[
  {
    "path": ".dockerignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\npnpm-debug.log*\nlerna-debug.log*\n\nnode_modules\n*.local\n\n# Editor directories and files\n.vscode/*\n!.vscode/extensions.json\n.idea\n.DS_Store\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n# model directories\n# public/models\n# public/assets\ndist/models\ndist/assets"
  },
  {
    "path": ".gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\npnpm-debug.log*\nlerna-debug.log*\n\nnode_modules\n*.local\n\n# Editor directories and files\n.vscode/*\n!.vscode/extensions.json\n.idea\n.DS_Store\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n# model directories\n# public/models\n# public/assets\ndist/models\ndist/assets\nexamples-demo"
  },
  {
    "path": ".npmignore",
    "content": "# Ignore directories\n.idea\n.vscode\ndocs/\nexamples-demo/\npublic/\nnode_modules/\nscripts/\nsrc/\ndist/models\ndist/assets\n\n\n# Ignore files\n*.html\n*.gif\n*.md\ntsconfig.json\ntsconfig.node.json\nvite.config.ts\n.gitignore"
  },
  {
    "path": ".vscode/extensions.json",
    "content": "{\n  \"recommendations\": [\"Vue.volar\"]\n}\n"
  },
  {
    "path": "Dockerfile",
    "content": "FROM node:latest as builder\n# create work dir\nWORKDIR /\n# copy pakcage.json and pakcage-lock.json\nCOPY package*.json /\n# npm i\nRUN npm i --registry=https://registry.npm.taobao.org\n# copy local dir to docker work dir\nCOPY . /\n# build production\nRUN npm run build:docker\n\nFROM nginx:latest\nLABEL maintainer=\"Tony Tao<king6180@gmail.com>\"\n# COPY nginx.conf /etc/nginx/\n# copy /examples-demo dir to nginx html dir\nCOPY --from=builder /examples-demo/ /usr/share/nginx/html/\n# port 8010\nEXPOSE 8010"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2024 Tony Tao\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": "dist/style.css",
    "content": ".viewer-container[data-v-e92274c2]{position:relative;width:100%;height:100%;margin:0;border:0;padding:0}.viewer-container div[data-v-e92274c2]{position:absolute!important;left:0px!important;opacity:1!important}.viewer-canvas[data-v-e92274c2]{width:100%;height:100%}\n"
  },
  {
    "path": "dist/types/3dLoader/vue3dLoader.vue.d.ts",
    "content": "import { Object3D, Vector2, Scene, Raycaster, WebGLRenderer, PerspectiveCamera, AnimationMixer, Clock, Light, AxesHelper, GridHelper } from \"three\";\nimport { OrbitControls } from \"three/examples/jsm/controls/OrbitControls\";\nexport interface coordinates {\n    x: number;\n    y: number;\n    z: number;\n}\nexport interface controlsValue {\n    min: number;\n    max: number;\n}\ndeclare type plyMaterial = 'MeshBasicMaterial' | 'MeshStandardMaterial';\ndeclare type encode = \"linear\" | \"sRGB\";\ndeclare const _default: import(\"vue\").DefineComponent<{\n    filePath: {\n        type: (StringConstructor | ArrayConstructor)[];\n        required: true;\n    };\n    fileType: {\n        type: (StringConstructor | ArrayConstructor)[];\n        required: false;\n    };\n    width: {\n        type: NumberConstructor;\n        required: false;\n    };\n    height: {\n        type: NumberConstructor;\n        required: false;\n    };\n    position: {\n        type: (ArrayConstructor | ObjectConstructor)[];\n        required: false;\n    };\n    rotation: {\n        type: (ArrayConstructor | ObjectConstructor)[];\n        required: false;\n    };\n    scale: {\n        type: (ArrayConstructor | ObjectConstructor)[];\n        required: false;\n    };\n    lights: {\n        type: ArrayConstructor;\n        required: false;\n        default: () => ({\n            type: string;\n            color: number;\n            position?: undefined;\n            intensity?: undefined;\n        } | {\n            type: string;\n            position: {\n                x: number;\n                y: number;\n                z: number;\n            };\n            color: number;\n            intensity: number;\n        })[];\n    };\n    cameraPosition: {\n        type: ObjectConstructor;\n        required: false;\n        default: () => {\n            x: number;\n            y: number;\n            z: number;\n        };\n    };\n    cameraRotation: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    cameraUp: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    cameraLookAt: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    backgroundColor: {\n        type: (StringConstructor | NumberConstructor)[];\n        required: false;\n        default: () => number;\n    };\n    backgroundAlpha: {\n        type: NumberConstructor;\n        required: false;\n        default: () => number;\n    };\n    controlsOptions: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    crossOrigin: {\n        type: StringConstructor;\n        required: false;\n        default: string;\n    };\n    requestHeader: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    outputEncoding: {\n        type: StringConstructor;\n        required: false;\n        default: () => string;\n    };\n    webGLRendererOptions: {\n        type: ObjectConstructor;\n        required: false;\n        default: () => {};\n    };\n    mtlPath: {\n        type: (StringConstructor | ArrayConstructor)[];\n        required: false;\n        default: string;\n    };\n    showFps: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    textureImage: {\n        type: (StringConstructor | ArrayConstructor)[];\n        required: false;\n        default: string;\n    };\n    clearScene: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    parallelLoad: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    labels: {\n        type: ArrayConstructor;\n        required: false;\n        default: () => never[];\n    };\n    autoPlay: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    enableDraco: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    dracoDir: {\n        type: StringConstructor;\n        required: false;\n    };\n    intersectRecursive: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    enableDamping: {\n        type: BooleanConstructor;\n        required: false;\n    };\n    dampingFactor: {\n        type: NumberConstructor;\n        required: false;\n    };\n    verticalCtrl: {\n        type: (ObjectConstructor | BooleanConstructor)[];\n        required: false;\n        default: boolean;\n    };\n    horizontalCtrl: {\n        type: (ObjectConstructor | BooleanConstructor)[];\n        required: false;\n        default: boolean;\n    };\n    plyMaterial: {\n        type: StringConstructor;\n        required: false;\n        default: string;\n    };\n    enableAxesHelper: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    axesHelperSize: {\n        type: NumberConstructor;\n        required: false;\n        default: number;\n    };\n    enableGridHelper: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    minDistance: {\n        type: NumberConstructor;\n        required: false;\n        default: number;\n    };\n    maxDistance: {\n        type: NumberConstructor;\n        required: false;\n        default: number;\n    };\n    pointLightFollowCamera: {\n        type: BooleanConstructor;\n        required: false;\n    };\n}, {\n    props: {\n        filePath: string | string[];\n        fileType?: string | string[] | undefined;\n        width?: number | undefined;\n        height?: number | undefined;\n        position?: coordinates | coordinates[] | undefined;\n        rotation?: coordinates | coordinates[] | undefined;\n        scale?: coordinates | coordinates[] | undefined;\n        lights: object[];\n        cameraPosition: coordinates;\n        cameraRotation?: coordinates | undefined;\n        cameraUp?: coordinates | undefined;\n        cameraLookAt?: coordinates | undefined;\n        backgroundColor: number | string;\n        backgroundAlpha: number;\n        controlsOptions?: object | undefined;\n        crossOrigin: string;\n        requestHeader?: object | undefined;\n        outputEncoding: encode;\n        webGLRendererOptions: object;\n        mtlPath: string | string[];\n        showFps: boolean;\n        textureImage: string | string[];\n        clearScene: boolean;\n        parallelLoad: boolean;\n        labels: object[];\n        autoPlay: boolean;\n        enableDraco: boolean;\n        dracoDir?: string | undefined;\n        intersectRecursive: boolean;\n        enableDamping?: boolean | undefined;\n        dampingFactor?: number | undefined;\n        verticalCtrl: boolean | controlsValue;\n        horizontalCtrl: boolean | controlsValue;\n        plyMaterial: plyMaterial;\n        enableAxesHelper: boolean;\n        axesHelperSize: number;\n        enableGridHelper: boolean;\n        minDistance: number;\n        maxDistance: number;\n        pointLightFollowCamera?: boolean | undefined;\n    };\n    object: any;\n    raycaster: Raycaster;\n    mouse: Vector2;\n    camera: PerspectiveCamera;\n    clock: Clock;\n    scene: Scene;\n    renderer: WebGLRenderer;\n    controls: OrbitControls;\n    allLights: Light[];\n    loader: any;\n    requestAnimationId: number;\n    stats: any;\n    mixers: AnimationMixer | AnimationMixer[];\n    textureLoader: any;\n    axesHelper: AxesHelper;\n    gridHelper: GridHelper;\n    size: import(\"vue\").Ref<{\n        width: number;\n        height: number;\n    }>;\n    loaderIndex: import(\"vue\").Ref<number>;\n    objectPositionHasSet: import(\"vue\").Ref<boolean>;\n    isMultipleModels: import(\"vue\").Ref<boolean>;\n    containerElement: import(\"vue\").Ref<null>;\n    canvasElement: import(\"vue\").Ref<null>;\n    emit: (event: \"mousedown\" | \"mousemove\" | \"mouseup\" | \"click\" | \"dblclick\" | \"load\" | \"process\" | \"error\", ...args: any[]) => void;\n    resetScene: () => void;\n    destroyScene: () => void;\n    init: () => void;\n    setContainerElementStyle: (el: any) => void;\n    enableMousemoveEvent: (enable: boolean) => void;\n    onResize: () => void;\n    onMouseDown: (event: MouseEvent) => void;\n    onMouseMove: (event: MouseEvent) => void;\n    onMouseUp: (event: MouseEvent) => void;\n    onClick: (event: MouseEvent) => void;\n    onDblclick: (event: MouseEvent) => void;\n    pick: (x: number, y: number) => import(\"three\").Intersection<Object3D<import(\"three\").Event>> | null;\n    update: () => void;\n    updateModel: () => void;\n    updateRenderer: () => void;\n    updateCamera: (isResize?: boolean) => void;\n    updateLights: () => void;\n    updateControls: () => void;\n    loadModelSelect: () => void;\n    load: (fileIndex?: number) => void;\n    loadFilePath: (filePath: string, getObject: any, index: number) => void;\n    loadMtl: (filePath: string, getObject: any, index: number) => void;\n    getObject: (object: any) => any;\n    addObject: (obj: Object3D, filePath: string) => void;\n    animate: () => void;\n    render: () => void;\n    updateStats: () => void;\n    onProcess: (xhr: ProgressEvent) => void;\n    addTexture: (object: Object3D, texture: any) => void;\n    clearScene: () => void;\n    setObjectAttribute: (type: string, val: any) => void;\n    getAllObject: () => any;\n    setSpriteLabel: () => void;\n    clearSprite: () => void;\n    generateCanvas: (text: string, style: any) => HTMLCanvasElement;\n    getObjectIndex: (object: any) => any;\n    playAnimations: () => void;\n    playSingleModel: (item: Object3D) => void;\n    playMultipleModels: (obj: Object3D) => void;\n    setVerticalHorizontalControls: () => void;\n    setAxesAndGridHelper: () => void;\n    setLightFollowCamera: () => void;\n}, unknown, {}, {}, import(\"vue\").ComponentOptionsMixin, import(\"vue\").ComponentOptionsMixin, (\"mousedown\" | \"mousemove\" | \"mouseup\" | \"click\" | \"dblclick\" | \"load\" | \"process\" | \"error\")[], \"mousedown\" | \"mousemove\" | \"mouseup\" | \"click\" | \"dblclick\" | \"load\" | \"process\" | \"error\", import(\"vue\").VNodeProps & import(\"vue\").AllowedComponentProps & import(\"vue\").ComponentCustomProps, Readonly<import(\"vue\").ExtractPropTypes<{\n    filePath: {\n        type: (StringConstructor | ArrayConstructor)[];\n        required: true;\n    };\n    fileType: {\n        type: (StringConstructor | ArrayConstructor)[];\n        required: false;\n    };\n    width: {\n        type: NumberConstructor;\n        required: false;\n    };\n    height: {\n        type: NumberConstructor;\n        required: false;\n    };\n    position: {\n        type: (ArrayConstructor | ObjectConstructor)[];\n        required: false;\n    };\n    rotation: {\n        type: (ArrayConstructor | ObjectConstructor)[];\n        required: false;\n    };\n    scale: {\n        type: (ArrayConstructor | ObjectConstructor)[];\n        required: false;\n    };\n    lights: {\n        type: ArrayConstructor;\n        required: false;\n        default: () => ({\n            type: string;\n            color: number;\n            position?: undefined;\n            intensity?: undefined;\n        } | {\n            type: string;\n            position: {\n                x: number;\n                y: number;\n                z: number;\n            };\n            color: number;\n            intensity: number;\n        })[];\n    };\n    cameraPosition: {\n        type: ObjectConstructor;\n        required: false;\n        default: () => {\n            x: number;\n            y: number;\n            z: number;\n        };\n    };\n    cameraRotation: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    cameraUp: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    cameraLookAt: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    backgroundColor: {\n        type: (StringConstructor | NumberConstructor)[];\n        required: false;\n        default: () => number;\n    };\n    backgroundAlpha: {\n        type: NumberConstructor;\n        required: false;\n        default: () => number;\n    };\n    controlsOptions: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    crossOrigin: {\n        type: StringConstructor;\n        required: false;\n        default: string;\n    };\n    requestHeader: {\n        type: ObjectConstructor;\n        required: false;\n    };\n    outputEncoding: {\n        type: StringConstructor;\n        required: false;\n        default: () => string;\n    };\n    webGLRendererOptions: {\n        type: ObjectConstructor;\n        required: false;\n        default: () => {};\n    };\n    mtlPath: {\n        type: (StringConstructor | ArrayConstructor)[];\n        required: false;\n        default: string;\n    };\n    showFps: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    textureImage: {\n        type: (StringConstructor | ArrayConstructor)[];\n        required: false;\n        default: string;\n    };\n    clearScene: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    parallelLoad: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    labels: {\n        type: ArrayConstructor;\n        required: false;\n        default: () => never[];\n    };\n    autoPlay: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    enableDraco: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    dracoDir: {\n        type: StringConstructor;\n        required: false;\n    };\n    intersectRecursive: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    enableDamping: {\n        type: BooleanConstructor;\n        required: false;\n    };\n    dampingFactor: {\n        type: NumberConstructor;\n        required: false;\n    };\n    verticalCtrl: {\n        type: (ObjectConstructor | BooleanConstructor)[];\n        required: false;\n        default: boolean;\n    };\n    horizontalCtrl: {\n        type: (ObjectConstructor | BooleanConstructor)[];\n        required: false;\n        default: boolean;\n    };\n    plyMaterial: {\n        type: StringConstructor;\n        required: false;\n        default: string;\n    };\n    enableAxesHelper: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    axesHelperSize: {\n        type: NumberConstructor;\n        required: false;\n        default: number;\n    };\n    enableGridHelper: {\n        type: BooleanConstructor;\n        required: false;\n        default: boolean;\n    };\n    minDistance: {\n        type: NumberConstructor;\n        required: false;\n        default: number;\n    };\n    maxDistance: {\n        type: NumberConstructor;\n        required: false;\n        default: number;\n    };\n    pointLightFollowCamera: {\n        type: BooleanConstructor;\n        required: false;\n    };\n}>> & {\n    onMousedown?: ((...args: any[]) => any) | undefined;\n    onMousemove?: ((...args: any[]) => any) | undefined;\n    onMouseup?: ((...args: any[]) => any) | undefined;\n    onClick?: ((...args: any[]) => any) | undefined;\n    onDblclick?: ((...args: any[]) => any) | undefined;\n    onLoad?: ((...args: any[]) => any) | undefined;\n    onProcess?: ((...args: any[]) => any) | undefined;\n    onError?: ((...args: any[]) => any) | undefined;\n}, {\n    lights: unknown[];\n    cameraPosition: Record<string, any>;\n    backgroundColor: string | number;\n    backgroundAlpha: number;\n    crossOrigin: string;\n    outputEncoding: string;\n    webGLRendererOptions: Record<string, any>;\n    mtlPath: string | unknown[];\n    showFps: boolean;\n    textureImage: string | unknown[];\n    clearScene: boolean;\n    parallelLoad: boolean;\n    labels: unknown[];\n    autoPlay: boolean;\n    enableDraco: boolean;\n    intersectRecursive: boolean;\n    enableDamping: boolean;\n    verticalCtrl: boolean | Record<string, any>;\n    horizontalCtrl: boolean | Record<string, any>;\n    plyMaterial: string;\n    enableAxesHelper: boolean;\n    axesHelperSize: number;\n    enableGridHelper: boolean;\n    minDistance: number;\n    maxDistance: number;\n    pointLightFollowCamera: boolean;\n}>;\nexport default _default;\n"
  },
  {
    "path": "dist/types/index.d.ts",
    "content": "import { App } from 'vue';\nimport * as Three from 'three';\nimport vue3dLoader from './3dLoader/vue3dLoader.vue';\nexport { Three };\ndeclare const _default: {\n    install: (app: App<any>) => void;\n    vue3dLoader: import(\"vue\").DefineComponent<{\n        filePath: {\n            type: (StringConstructor | ArrayConstructor)[];\n            required: true;\n        };\n        fileType: {\n            type: (StringConstructor | ArrayConstructor)[];\n            required: false;\n        };\n        width: {\n            type: NumberConstructor;\n            required: false;\n        };\n        height: {\n            type: NumberConstructor;\n            required: false;\n        };\n        position: {\n            type: (ArrayConstructor | ObjectConstructor)[];\n            required: false;\n        };\n        rotation: {\n            type: (ArrayConstructor | ObjectConstructor)[];\n            required: false;\n        };\n        scale: {\n            type: (ArrayConstructor | ObjectConstructor)[];\n            required: false;\n        };\n        lights: {\n            type: ArrayConstructor;\n            required: false;\n            default: () => ({\n                type: string;\n                color: number;\n                position?: undefined;\n                intensity?: undefined;\n            } | {\n                type: string;\n                position: {\n                    x: number;\n                    y: number;\n                    z: number;\n                };\n                color: number;\n                intensity: number;\n            })[];\n        };\n        cameraPosition: {\n            type: ObjectConstructor;\n            required: false;\n            default: () => {\n                x: number;\n                y: number;\n                z: number;\n            };\n        };\n        cameraRotation: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        cameraUp: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        cameraLookAt: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        backgroundColor: {\n            type: (StringConstructor | NumberConstructor)[];\n            required: false;\n            default: () => number;\n        };\n        backgroundAlpha: {\n            type: NumberConstructor;\n            required: false;\n            default: () => number;\n        };\n        controlsOptions: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        crossOrigin: {\n            type: StringConstructor;\n            required: false;\n            default: string;\n        };\n        requestHeader: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        outputEncoding: {\n            type: StringConstructor;\n            required: false;\n            default: () => string;\n        };\n        webGLRendererOptions: {\n            type: ObjectConstructor;\n            required: false;\n            default: () => {};\n        };\n        mtlPath: {\n            type: (StringConstructor | ArrayConstructor)[];\n            required: false;\n            default: string;\n        };\n        showFps: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        textureImage: {\n            type: (StringConstructor | ArrayConstructor)[];\n            required: false;\n            default: string;\n        };\n        clearScene: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        parallelLoad: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        labels: {\n            type: ArrayConstructor;\n            required: false;\n            default: () => never[];\n        };\n        autoPlay: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        enableDraco: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        dracoDir: {\n            type: StringConstructor;\n            required: false;\n        };\n        intersectRecursive: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        enableDamping: {\n            type: BooleanConstructor;\n            required: false;\n        };\n        dampingFactor: {\n            type: NumberConstructor;\n            required: false;\n        };\n        verticalCtrl: {\n            type: (ObjectConstructor | BooleanConstructor)[];\n            required: false;\n            default: boolean;\n        };\n        horizontalCtrl: {\n            type: (ObjectConstructor | BooleanConstructor)[];\n            required: false;\n            default: boolean;\n        };\n        plyMaterial: {\n            type: StringConstructor;\n            required: false;\n            default: string;\n        };\n        enableAxesHelper: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        axesHelperSize: {\n            type: NumberConstructor;\n            required: false;\n            default: number;\n        };\n        enableGridHelper: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        minDistance: {\n            type: NumberConstructor;\n            required: false;\n            default: number;\n        };\n        maxDistance: {\n            type: NumberConstructor;\n            required: false;\n            default: number;\n        };\n        pointLightFollowCamera: {\n            type: BooleanConstructor;\n            required: false;\n        };\n    }, {\n        props: {\n            filePath: string | string[];\n            fileType?: string | string[] | undefined;\n            width?: number | undefined;\n            height?: number | undefined;\n            position?: import(\"./3dLoader/vue3dLoader.vue\").coordinates | import(\"./3dLoader/vue3dLoader.vue\").coordinates[] | undefined;\n            rotation?: import(\"./3dLoader/vue3dLoader.vue\").coordinates | import(\"./3dLoader/vue3dLoader.vue\").coordinates[] | undefined;\n            scale?: import(\"./3dLoader/vue3dLoader.vue\").coordinates | import(\"./3dLoader/vue3dLoader.vue\").coordinates[] | undefined;\n            lights: object[];\n            cameraPosition: import(\"./3dLoader/vue3dLoader.vue\").coordinates;\n            cameraRotation?: import(\"./3dLoader/vue3dLoader.vue\").coordinates | undefined;\n            cameraUp?: import(\"./3dLoader/vue3dLoader.vue\").coordinates | undefined;\n            cameraLookAt?: import(\"./3dLoader/vue3dLoader.vue\").coordinates | undefined;\n            backgroundColor: string | number;\n            backgroundAlpha: number;\n            controlsOptions?: object | undefined;\n            crossOrigin: string;\n            requestHeader?: object | undefined;\n            outputEncoding: \"linear\" | \"sRGB\";\n            webGLRendererOptions: object;\n            mtlPath: string | string[];\n            showFps: boolean;\n            textureImage: string | string[];\n            clearScene: boolean;\n            parallelLoad: boolean;\n            labels: object[];\n            autoPlay: boolean;\n            enableDraco: boolean;\n            dracoDir?: string | undefined;\n            intersectRecursive: boolean;\n            enableDamping?: boolean | undefined;\n            dampingFactor?: number | undefined;\n            verticalCtrl: boolean | import(\"./3dLoader/vue3dLoader.vue\").controlsValue;\n            horizontalCtrl: boolean | import(\"./3dLoader/vue3dLoader.vue\").controlsValue;\n            plyMaterial: \"MeshStandardMaterial\" | \"MeshBasicMaterial\";\n            enableAxesHelper: boolean;\n            axesHelperSize: number;\n            enableGridHelper: boolean;\n            minDistance: number;\n            maxDistance: number;\n            pointLightFollowCamera?: boolean | undefined;\n        };\n        object: any;\n        raycaster: Three.Raycaster;\n        mouse: Three.Vector2;\n        camera: Three.PerspectiveCamera;\n        clock: Three.Clock;\n        scene: Three.Scene;\n        renderer: Three.WebGLRenderer;\n        controls: import(\"three/examples/jsm/controls/OrbitControls\").OrbitControls;\n        allLights: Three.Light[];\n        loader: any;\n        requestAnimationId: number;\n        stats: any;\n        mixers: Three.AnimationMixer | Three.AnimationMixer[];\n        textureLoader: any;\n        axesHelper: Three.AxesHelper;\n        gridHelper: Three.GridHelper;\n        size: import(\"vue\").Ref<{\n            width: number;\n            height: number;\n        }>;\n        loaderIndex: import(\"vue\").Ref<number>;\n        objectPositionHasSet: import(\"vue\").Ref<boolean>;\n        isMultipleModels: import(\"vue\").Ref<boolean>;\n        containerElement: import(\"vue\").Ref<null>;\n        canvasElement: import(\"vue\").Ref<null>;\n        emit: (event: \"mousedown\" | \"mousemove\" | \"mouseup\" | \"click\" | \"dblclick\" | \"load\" | \"process\" | \"error\", ...args: any[]) => void;\n        resetScene: () => void;\n        destroyScene: () => void;\n        init: () => void;\n        setContainerElementStyle: (el: any) => void;\n        enableMousemoveEvent: (enable: boolean) => void;\n        onResize: () => void;\n        onMouseDown: (event: MouseEvent) => void;\n        onMouseMove: (event: MouseEvent) => void;\n        onMouseUp: (event: MouseEvent) => void;\n        onClick: (event: MouseEvent) => void;\n        onDblclick: (event: MouseEvent) => void;\n        pick: (x: number, y: number) => Three.Intersection<Three.Object3D<Three.Event>> | null;\n        update: () => void;\n        updateModel: () => void;\n        updateRenderer: () => void;\n        updateCamera: (isResize?: boolean | undefined) => void;\n        updateLights: () => void;\n        updateControls: () => void;\n        loadModelSelect: () => void;\n        load: (fileIndex?: number | undefined) => void;\n        loadFilePath: (filePath: string, getObject: any, index: number) => void;\n        loadMtl: (filePath: string, getObject: any, index: number) => void;\n        getObject: (object: any) => any;\n        addObject: (obj: Three.Object3D<Three.Event>, filePath: string) => void;\n        animate: () => void;\n        render: () => void;\n        updateStats: () => void;\n        onProcess: (xhr: ProgressEvent<EventTarget>) => void;\n        addTexture: (object: Three.Object3D<Three.Event>, texture: any) => void;\n        clearScene: () => void;\n        setObjectAttribute: (type: string, val: any) => void;\n        getAllObject: () => any;\n        setSpriteLabel: () => void;\n        clearSprite: () => void;\n        generateCanvas: (text: string, style: any) => HTMLCanvasElement;\n        getObjectIndex: (object: any) => any;\n        playAnimations: () => void;\n        playSingleModel: (item: Three.Object3D<Three.Event>) => void;\n        playMultipleModels: (obj: Three.Object3D<Three.Event>) => void;\n        setVerticalHorizontalControls: () => void;\n        setAxesAndGridHelper: () => void;\n        setLightFollowCamera: () => void;\n    }, unknown, {}, {}, import(\"vue\").ComponentOptionsMixin, import(\"vue\").ComponentOptionsMixin, (\"mousedown\" | \"mousemove\" | \"mouseup\" | \"click\" | \"dblclick\" | \"load\" | \"process\" | \"error\")[], \"mousedown\" | \"mousemove\" | \"mouseup\" | \"click\" | \"dblclick\" | \"load\" | \"process\" | \"error\", import(\"vue\").VNodeProps & import(\"vue\").AllowedComponentProps & import(\"vue\").ComponentCustomProps, Readonly<import(\"vue\").ExtractPropTypes<{\n        filePath: {\n            type: (StringConstructor | ArrayConstructor)[];\n            required: true;\n        };\n        fileType: {\n            type: (StringConstructor | ArrayConstructor)[];\n            required: false;\n        };\n        width: {\n            type: NumberConstructor;\n            required: false;\n        };\n        height: {\n            type: NumberConstructor;\n            required: false;\n        };\n        position: {\n            type: (ArrayConstructor | ObjectConstructor)[];\n            required: false;\n        };\n        rotation: {\n            type: (ArrayConstructor | ObjectConstructor)[];\n            required: false;\n        };\n        scale: {\n            type: (ArrayConstructor | ObjectConstructor)[];\n            required: false;\n        };\n        lights: {\n            type: ArrayConstructor;\n            required: false;\n            default: () => ({\n                type: string;\n                color: number;\n                position?: undefined;\n                intensity?: undefined;\n            } | {\n                type: string;\n                position: {\n                    x: number;\n                    y: number;\n                    z: number;\n                };\n                color: number;\n                intensity: number;\n            })[];\n        };\n        cameraPosition: {\n            type: ObjectConstructor;\n            required: false;\n            default: () => {\n                x: number;\n                y: number;\n                z: number;\n            };\n        };\n        cameraRotation: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        cameraUp: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        cameraLookAt: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        backgroundColor: {\n            type: (StringConstructor | NumberConstructor)[];\n            required: false;\n            default: () => number;\n        };\n        backgroundAlpha: {\n            type: NumberConstructor;\n            required: false;\n            default: () => number;\n        };\n        controlsOptions: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        crossOrigin: {\n            type: StringConstructor;\n            required: false;\n            default: string;\n        };\n        requestHeader: {\n            type: ObjectConstructor;\n            required: false;\n        };\n        outputEncoding: {\n            type: StringConstructor;\n            required: false;\n            default: () => string;\n        };\n        webGLRendererOptions: {\n            type: ObjectConstructor;\n            required: false;\n            default: () => {};\n        };\n        mtlPath: {\n            type: (StringConstructor | ArrayConstructor)[];\n            required: false;\n            default: string;\n        };\n        showFps: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        textureImage: {\n            type: (StringConstructor | ArrayConstructor)[];\n            required: false;\n            default: string;\n        };\n        clearScene: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        parallelLoad: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        labels: {\n            type: ArrayConstructor;\n            required: false;\n            default: () => never[];\n        };\n        autoPlay: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        enableDraco: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        dracoDir: {\n            type: StringConstructor;\n            required: false;\n        };\n        intersectRecursive: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        enableDamping: {\n            type: BooleanConstructor;\n            required: false;\n        };\n        dampingFactor: {\n            type: NumberConstructor;\n            required: false;\n        };\n        verticalCtrl: {\n            type: (ObjectConstructor | BooleanConstructor)[];\n            required: false;\n            default: boolean;\n        };\n        horizontalCtrl: {\n            type: (ObjectConstructor | BooleanConstructor)[];\n            required: false;\n            default: boolean;\n        };\n        plyMaterial: {\n            type: StringConstructor;\n            required: false;\n            default: string;\n        };\n        enableAxesHelper: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        axesHelperSize: {\n            type: NumberConstructor;\n            required: false;\n            default: number;\n        };\n        enableGridHelper: {\n            type: BooleanConstructor;\n            required: false;\n            default: boolean;\n        };\n        minDistance: {\n            type: NumberConstructor;\n            required: false;\n            default: number;\n        };\n        maxDistance: {\n            type: NumberConstructor;\n            required: false;\n            default: number;\n        };\n        pointLightFollowCamera: {\n            type: BooleanConstructor;\n            required: false;\n        };\n    }>> & {\n        onMousedown?: ((...args: any[]) => any) | undefined;\n        onMousemove?: ((...args: any[]) => any) | undefined;\n        onMouseup?: ((...args: any[]) => any) | undefined;\n        onClick?: ((...args: any[]) => any) | undefined;\n        onDblclick?: ((...args: any[]) => any) | undefined;\n        onLoad?: ((...args: any[]) => any) | undefined;\n        onProcess?: ((...args: any[]) => any) | undefined;\n        onError?: ((...args: any[]) => any) | undefined;\n    }, {\n        lights: unknown[];\n        cameraPosition: Record<string, any>;\n        backgroundColor: string | number;\n        backgroundAlpha: number;\n        crossOrigin: string;\n        outputEncoding: string;\n        webGLRendererOptions: Record<string, any>;\n        mtlPath: string | unknown[];\n        showFps: boolean;\n        textureImage: string | unknown[];\n        clearScene: boolean;\n        parallelLoad: boolean;\n        labels: unknown[];\n        autoPlay: boolean;\n        enableDraco: boolean;\n        intersectRecursive: boolean;\n        enableDamping: boolean;\n        verticalCtrl: boolean | Record<string, any>;\n        horizontalCtrl: boolean | Record<string, any>;\n        plyMaterial: string;\n        enableAxesHelper: boolean;\n        axesHelperSize: number;\n        enableGridHelper: boolean;\n        minDistance: number;\n        maxDistance: number;\n        pointLightFollowCamera: boolean;\n    }>;\n};\nexport default _default;\nexport { vue3dLoader };\n"
  },
  {
    "path": "dist/vue-3d-loader.cjs.js",
    "content": "\"use strict\";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:\"Module\"}});var Et=require(\"vue\");/**\n * @license\n * Copyright 2010-2022 Three.js Authors\n * SPDX-License-Identifier: MIT\n */const ml=\"143\",ms={LEFT:0,MIDDLE:1,RIGHT:2,ROTATE:0,DOLLY:1,PAN:2},gs={ROTATE:0,PAN:1,DOLLY_PAN:2,DOLLY_ROTATE:3},hd=0,Cc=1,fd=2,tg=3,ng=0,wu=1,dd=2,mr=3,bi=0,kn=1,wi=2,pd=1,ig=2,_i=0,Ts=1,Lc=2,Rc=3,Ic=4,md=5,vs=100,gd=101,yd=102,Pc=103,Dc=104,xd=200,vd=201,_d=202,bd=203,Mu=204,Su=205,wd=206,Md=207,Sd=208,Td=209,Ad=210,Ed=0,Cd=1,Ld=2,il=3,Rd=4,Id=5,Pd=6,Dd=7,zo=0,Fd=1,Nd=2,Qn=0,kd=1,Od=2,Bd=3,zd=4,Ud=5,gl=300,Yi=301,Zi=302,br=303,wo=304,Gr=306,fn=1e3,Zt=1001,wr=1002,Gt=1003,Mo=1004,sg=1004,So=1005,rg=1005,Ft=1006,yl=1007,og=1007,oi=1008,ag=1008,Ki=1009,Gd=1010,Vd=1011,Tu=1012,Hd=1013,Hi=1014,xi=1015,Mr=1016,Wd=1017,qd=1018,As=1020,Xd=1021,jd=1022,An=1023,Yd=1024,Zd=1025,Xi=1026,Rs=1027,Kd=1028,Jd=1029,$d=1030,Qd=1031,ep=1033,fo=33776,Ya=33777,po=33778,mo=33779,Fc=35840,Nc=35841,kc=35842,Oc=35843,Au=36196,Bc=37492,zc=37496,Uc=37808,Gc=37809,Vc=37810,Hc=37811,Wc=37812,qc=37813,Xc=37814,jc=37815,Yc=37816,Zc=37817,Kc=37818,Jc=37819,$c=37820,Qc=37821,eu=36492,tp=2200,np=2201,ip=2202,Sr=2300,Is=2301,Za=2302,bs=2400,ws=2401,To=2402,xl=2500,Eu=2501,lg=0,sp=1,Cu=2,Mi=3e3,it=3001,rp=3200,op=3201,ns=0,ap=1,cg=\"\",Jn=\"srgb\",Wi=\"srgb-linear\",ug=0,Ka=7680,hg=7681,fg=7682,dg=7683,pg=34055,mg=34056,gg=5386,yg=512,xg=513,vg=514,_g=515,bg=516,wg=517,Mg=518,lp=519,Ao=35044,Sg=35048,Tg=35040,Ag=35045,Eg=35049,Cg=35041,Lg=35046,Rg=35050,Ig=35042,Pg=\"100\",tu=\"300 es\",sl=1035;class ai{addEventListener(e,t){this._listeners===void 0&&(this._listeners={});const n=this._listeners;n[e]===void 0&&(n[e]=[]),n[e].indexOf(t)===-1&&n[e].push(t)}hasEventListener(e,t){if(this._listeners===void 0)return!1;const n=this._listeners;return n[e]!==void 0&&n[e].indexOf(t)!==-1}removeEventListener(e,t){if(this._listeners===void 0)return;const i=this._listeners[e];if(i!==void 0){const s=i.indexOf(t);s!==-1&&i.splice(s,1)}}dispatchEvent(e){if(this._listeners===void 0)return;const n=this._listeners[e.type];if(n!==void 0){e.target=this;const i=n.slice(0);for(let s=0,r=i.length;s<r;s++)i[s].call(this,e);e.target=null}}}const on=[\"00\",\"01\",\"02\",\"03\",\"04\",\"05\",\"06\",\"07\",\"08\",\"09\",\"0a\",\"0b\",\"0c\",\"0d\",\"0e\",\"0f\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\",\"1a\",\"1b\",\"1c\",\"1d\",\"1e\",\"1f\",\"20\",\"21\",\"22\",\"23\",\"24\",\"25\",\"26\",\"27\",\"28\",\"29\",\"2a\",\"2b\",\"2c\",\"2d\",\"2e\",\"2f\",\"30\",\"31\",\"32\",\"33\",\"34\",\"35\",\"36\",\"37\",\"38\",\"39\",\"3a\",\"3b\",\"3c\",\"3d\",\"3e\",\"3f\",\"40\",\"41\",\"42\",\"43\",\"44\",\"45\",\"46\",\"47\",\"48\",\"49\",\"4a\",\"4b\",\"4c\",\"4d\",\"4e\",\"4f\",\"50\",\"51\",\"52\",\"53\",\"54\",\"55\",\"56\",\"57\",\"58\",\"59\",\"5a\",\"5b\",\"5c\",\"5d\",\"5e\",\"5f\",\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"67\",\"68\",\"69\",\"6a\",\"6b\",\"6c\",\"6d\",\"6e\",\"6f\",\"70\",\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\",\"79\",\"7a\",\"7b\",\"7c\",\"7d\",\"7e\",\"7f\",\"80\",\"81\",\"82\",\"83\",\"84\",\"85\",\"86\",\"87\",\"88\",\"89\",\"8a\",\"8b\",\"8c\",\"8d\",\"8e\",\"8f\",\"90\",\"91\",\"92\",\"93\",\"94\",\"95\",\"96\",\"97\",\"98\",\"99\",\"9a\",\"9b\",\"9c\",\"9d\",\"9e\",\"9f\",\"a0\",\"a1\",\"a2\",\"a3\",\"a4\",\"a5\",\"a6\",\"a7\",\"a8\",\"a9\",\"aa\",\"ab\",\"ac\",\"ad\",\"ae\",\"af\",\"b0\",\"b1\",\"b2\",\"b3\",\"b4\",\"b5\",\"b6\",\"b7\",\"b8\",\"b9\",\"ba\",\"bb\",\"bc\",\"bd\",\"be\",\"bf\",\"c0\",\"c1\",\"c2\",\"c3\",\"c4\",\"c5\",\"c6\",\"c7\",\"c8\",\"c9\",\"ca\",\"cb\",\"cc\",\"cd\",\"ce\",\"cf\",\"d0\",\"d1\",\"d2\",\"d3\",\"d4\",\"d5\",\"d6\",\"d7\",\"d8\",\"d9\",\"da\",\"db\",\"dc\",\"dd\",\"de\",\"df\",\"e0\",\"e1\",\"e2\",\"e3\",\"e4\",\"e5\",\"e6\",\"e7\",\"e8\",\"e9\",\"ea\",\"eb\",\"ec\",\"ed\",\"ee\",\"ef\",\"f0\",\"f1\",\"f2\",\"f3\",\"f4\",\"f5\",\"f6\",\"f7\",\"f8\",\"f9\",\"fa\",\"fb\",\"fc\",\"fd\",\"fe\",\"ff\"];let _h=1234567;const Es=Math.PI/180,Eo=180/Math.PI;function En(){const a=Math.random()*4294967295|0,e=Math.random()*4294967295|0,t=Math.random()*4294967295|0,n=Math.random()*4294967295|0;return(on[a&255]+on[a>>8&255]+on[a>>16&255]+on[a>>24&255]+\"-\"+on[e&255]+on[e>>8&255]+\"-\"+on[e>>16&15|64]+on[e>>24&255]+\"-\"+on[t&63|128]+on[t>>8&255]+\"-\"+on[t>>16&255]+on[t>>24&255]+on[n&255]+on[n>>8&255]+on[n>>16&255]+on[n>>24&255]).toLowerCase()}function Vt(a,e,t){return Math.max(e,Math.min(t,a))}function Lu(a,e){return(a%e+e)%e}function Dg(a,e,t,n,i){return n+(a-e)*(i-n)/(t-e)}function Fg(a,e,t){return a!==e?(t-a)/(e-a):0}function go(a,e,t){return(1-t)*a+t*e}function Ng(a,e,t,n){return go(a,e,1-Math.exp(-t*n))}function kg(a,e=1){return e-Math.abs(Lu(a,e*2)-e)}function Og(a,e,t){return a<=e?0:a>=t?1:(a=(a-e)/(t-e),a*a*(3-2*a))}function Bg(a,e,t){return a<=e?0:a>=t?1:(a=(a-e)/(t-e),a*a*a*(a*(a*6-15)+10))}function zg(a,e){return a+Math.floor(Math.random()*(e-a+1))}function Ug(a,e){return a+Math.random()*(e-a)}function Gg(a){return a*(.5-Math.random())}function Vg(a){a!==void 0&&(_h=a);let e=_h+=1831565813;return e=Math.imul(e^e>>>15,e|1),e^=e+Math.imul(e^e>>>7,e|61),((e^e>>>14)>>>0)/4294967296}function Hg(a){return a*Es}function Wg(a){return a*Eo}function nu(a){return(a&a-1)===0&&a!==0}function cp(a){return Math.pow(2,Math.ceil(Math.log(a)/Math.LN2))}function rl(a){return Math.pow(2,Math.floor(Math.log(a)/Math.LN2))}function qg(a,e,t,n,i){const s=Math.cos,r=Math.sin,o=s(t/2),l=r(t/2),c=s((e+n)/2),h=r((e+n)/2),u=s((e-n)/2),f=r((e-n)/2),d=s((n-e)/2),p=r((n-e)/2);switch(i){case\"XYX\":a.set(o*h,l*u,l*f,o*c);break;case\"YZY\":a.set(l*f,o*h,l*u,o*c);break;case\"ZXZ\":a.set(l*u,l*f,o*h,o*c);break;case\"XZX\":a.set(o*h,l*p,l*d,o*c);break;case\"YXY\":a.set(l*d,o*h,l*p,o*c);break;case\"ZYZ\":a.set(l*p,l*d,o*h,o*c);break;default:console.warn(\"THREE.MathUtils: .setQuaternionFromProperEuler() encountered an unknown order: \"+i)}}function Xg(a,e){switch(e.constructor){case Float32Array:return a;case Uint16Array:return a/65535;case Uint8Array:return a/255;case Int16Array:return Math.max(a/32767,-1);case Int8Array:return Math.max(a/127,-1);default:throw new Error(\"Invalid component type.\")}}function jg(a,e){switch(e.constructor){case Float32Array:return a;case Uint16Array:return Math.round(a*65535);case Uint8Array:return Math.round(a*255);case Int16Array:return Math.round(a*32767);case Int8Array:return Math.round(a*127);default:throw new Error(\"Invalid component type.\")}}var nn=Object.freeze({__proto__:null,DEG2RAD:Es,RAD2DEG:Eo,generateUUID:En,clamp:Vt,euclideanModulo:Lu,mapLinear:Dg,inverseLerp:Fg,lerp:go,damp:Ng,pingpong:kg,smoothstep:Og,smootherstep:Bg,randInt:zg,randFloat:Ug,randFloatSpread:Gg,seededRandom:Vg,degToRad:Hg,radToDeg:Wg,isPowerOfTwo:nu,ceilPowerOfTwo:cp,floorPowerOfTwo:rl,setQuaternionFromProperEuler:qg,normalize:jg,denormalize:Xg});class fe{constructor(e=0,t=0){fe.prototype.isVector2=!0,this.x=e,this.y=t}get width(){return this.x}set width(e){this.x=e}get height(){return this.y}set height(e){this.y=e}set(e,t){return this.x=e,this.y=t,this}setScalar(e){return this.x=e,this.y=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;default:throw new Error(\"index is out of range: \"+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;default:throw new Error(\"index is out of range: \"+e)}}clone(){return new this.constructor(this.x,this.y)}copy(e){return this.x=e.x,this.y=e.y,this}add(e){return this.x+=e.x,this.y+=e.y,this}addScalar(e){return this.x+=e,this.y+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this}subScalar(e){return this.x-=e,this.y-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this}multiply(e){return this.x*=e.x,this.y*=e.y,this}multiplyScalar(e){return this.x*=e,this.y*=e,this}divide(e){return this.x/=e.x,this.y/=e.y,this}divideScalar(e){return this.multiplyScalar(1/e)}applyMatrix3(e){const t=this.x,n=this.y,i=e.elements;return this.x=i[0]*t+i[3]*n+i[6],this.y=i[1]*t+i[4]*n+i[7],this}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this}clamp(e,t){return this.x=Math.max(e.x,Math.min(t.x,this.x)),this.y=Math.max(e.y,Math.min(t.y,this.y)),this}clampScalar(e,t){return this.x=Math.max(e,Math.min(t,this.x)),this.y=Math.max(e,Math.min(t,this.y)),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(e,Math.min(t,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this}negate(){return this.x=-this.x,this.y=-this.y,this}dot(e){return this.x*e.x+this.y*e.y}cross(e){return this.x*e.y-this.y*e.x}lengthSq(){return this.x*this.x+this.y*this.y}length(){return Math.sqrt(this.x*this.x+this.y*this.y)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)}normalize(){return this.divideScalar(this.length()||1)}angle(){return Math.atan2(-this.y,-this.x)+Math.PI}distanceTo(e){return Math.sqrt(this.distanceToSquared(e))}distanceToSquared(e){const t=this.x-e.x,n=this.y-e.y;return t*t+n*n}manhattanDistanceTo(e){return Math.abs(this.x-e.x)+Math.abs(this.y-e.y)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this}equals(e){return e.x===this.x&&e.y===this.y}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this}rotateAround(e,t){const n=Math.cos(t),i=Math.sin(t),s=this.x-e.x,r=this.y-e.y;return this.x=s*n-r*i+e.x,this.y=s*i+r*n+e.y,this}random(){return this.x=Math.random(),this.y=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y}}class dn{constructor(){dn.prototype.isMatrix3=!0,this.elements=[1,0,0,0,1,0,0,0,1]}set(e,t,n,i,s,r,o,l,c){const h=this.elements;return h[0]=e,h[1]=i,h[2]=o,h[3]=t,h[4]=s,h[5]=l,h[6]=n,h[7]=r,h[8]=c,this}identity(){return this.set(1,0,0,0,1,0,0,0,1),this}copy(e){const t=this.elements,n=e.elements;return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],this}extractBasis(e,t,n){return e.setFromMatrix3Column(this,0),t.setFromMatrix3Column(this,1),n.setFromMatrix3Column(this,2),this}setFromMatrix4(e){const t=e.elements;return this.set(t[0],t[4],t[8],t[1],t[5],t[9],t[2],t[6],t[10]),this}multiply(e){return this.multiplyMatrices(this,e)}premultiply(e){return this.multiplyMatrices(e,this)}multiplyMatrices(e,t){const n=e.elements,i=t.elements,s=this.elements,r=n[0],o=n[3],l=n[6],c=n[1],h=n[4],u=n[7],f=n[2],d=n[5],p=n[8],m=i[0],g=i[3],y=i[6],x=i[1],b=i[4],v=i[7],M=i[2],T=i[5],C=i[8];return s[0]=r*m+o*x+l*M,s[3]=r*g+o*b+l*T,s[6]=r*y+o*v+l*C,s[1]=c*m+h*x+u*M,s[4]=c*g+h*b+u*T,s[7]=c*y+h*v+u*C,s[2]=f*m+d*x+p*M,s[5]=f*g+d*b+p*T,s[8]=f*y+d*v+p*C,this}multiplyScalar(e){const t=this.elements;return t[0]*=e,t[3]*=e,t[6]*=e,t[1]*=e,t[4]*=e,t[7]*=e,t[2]*=e,t[5]*=e,t[8]*=e,this}determinant(){const e=this.elements,t=e[0],n=e[1],i=e[2],s=e[3],r=e[4],o=e[5],l=e[6],c=e[7],h=e[8];return t*r*h-t*o*c-n*s*h+n*o*l+i*s*c-i*r*l}invert(){const e=this.elements,t=e[0],n=e[1],i=e[2],s=e[3],r=e[4],o=e[5],l=e[6],c=e[7],h=e[8],u=h*r-o*c,f=o*l-h*s,d=c*s-r*l,p=t*u+n*f+i*d;if(p===0)return this.set(0,0,0,0,0,0,0,0,0);const m=1/p;return e[0]=u*m,e[1]=(i*c-h*n)*m,e[2]=(o*n-i*r)*m,e[3]=f*m,e[4]=(h*t-i*l)*m,e[5]=(i*s-o*t)*m,e[6]=d*m,e[7]=(n*l-c*t)*m,e[8]=(r*t-n*s)*m,this}transpose(){let e;const t=this.elements;return e=t[1],t[1]=t[3],t[3]=e,e=t[2],t[2]=t[6],t[6]=e,e=t[5],t[5]=t[7],t[7]=e,this}getNormalMatrix(e){return this.setFromMatrix4(e).invert().transpose()}transposeIntoArray(e){const t=this.elements;return e[0]=t[0],e[1]=t[3],e[2]=t[6],e[3]=t[1],e[4]=t[4],e[5]=t[7],e[6]=t[2],e[7]=t[5],e[8]=t[8],this}setUvTransform(e,t,n,i,s,r,o){const l=Math.cos(s),c=Math.sin(s);return this.set(n*l,n*c,-n*(l*r+c*o)+r+e,-i*c,i*l,-i*(-c*r+l*o)+o+t,0,0,1),this}scale(e,t){const n=this.elements;return n[0]*=e,n[3]*=e,n[6]*=e,n[1]*=t,n[4]*=t,n[7]*=t,this}rotate(e){const t=Math.cos(e),n=Math.sin(e),i=this.elements,s=i[0],r=i[3],o=i[6],l=i[1],c=i[4],h=i[7];return i[0]=t*s+n*l,i[3]=t*r+n*c,i[6]=t*o+n*h,i[1]=-n*s+t*l,i[4]=-n*r+t*c,i[7]=-n*o+t*h,this}translate(e,t){const n=this.elements;return n[0]+=e*n[2],n[3]+=e*n[5],n[6]+=e*n[8],n[1]+=t*n[2],n[4]+=t*n[5],n[7]+=t*n[8],this}equals(e){const t=this.elements,n=e.elements;for(let i=0;i<9;i++)if(t[i]!==n[i])return!1;return!0}fromArray(e,t=0){for(let n=0;n<9;n++)this.elements[n]=e[n+t];return this}toArray(e=[],t=0){const n=this.elements;return e[t]=n[0],e[t+1]=n[1],e[t+2]=n[2],e[t+3]=n[3],e[t+4]=n[4],e[t+5]=n[5],e[t+6]=n[6],e[t+7]=n[7],e[t+8]=n[8],e}clone(){return new this.constructor().fromArray(this.elements)}}function up(a){for(let e=a.length-1;e>=0;--e)if(a[e]>65535)return!0;return!1}const Yg={Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array};function gr(a,e){return new Yg[a](e)}function Co(a){return document.createElementNS(\"http://www.w3.org/1999/xhtml\",a)}function Cs(a){return a<.04045?a*.0773993808:Math.pow(a*.9478672986+.0521327014,2.4)}function Ja(a){return a<.0031308?a*12.92:1.055*Math.pow(a,.41666)-.055}const Ul={[Jn]:{[Wi]:Cs},[Wi]:{[Jn]:Ja}},In={legacyMode:!0,get workingColorSpace(){return Wi},set workingColorSpace(a){console.warn(\"THREE.ColorManagement: .workingColorSpace is readonly.\")},convert:function(a,e,t){if(this.legacyMode||e===t||!e||!t)return a;if(Ul[e]&&Ul[e][t]!==void 0){const n=Ul[e][t];return a.r=n(a.r),a.g=n(a.g),a.b=n(a.b),a}throw new Error(\"Unsupported color space conversion.\")},fromWorkingColorSpace:function(a,e){return this.convert(a,this.workingColorSpace,e)},toWorkingColorSpace:function(a,e){return this.convert(a,e,this.workingColorSpace)}},hp={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},Jt={r:0,g:0,b:0},Hn={h:0,s:0,l:0},ia={h:0,s:0,l:0};function Gl(a,e,t){return t<0&&(t+=1),t>1&&(t-=1),t<1/6?a+(e-a)*6*t:t<1/2?e:t<2/3?a+(e-a)*6*(2/3-t):a}function sa(a,e){return e.r=a.r,e.g=a.g,e.b=a.b,e}class we{constructor(e,t,n){return this.isColor=!0,this.r=1,this.g=1,this.b=1,t===void 0&&n===void 0?this.set(e):this.setRGB(e,t,n)}set(e){return e&&e.isColor?this.copy(e):typeof e==\"number\"?this.setHex(e):typeof e==\"string\"&&this.setStyle(e),this}setScalar(e){return this.r=e,this.g=e,this.b=e,this}setHex(e,t=Jn){return e=Math.floor(e),this.r=(e>>16&255)/255,this.g=(e>>8&255)/255,this.b=(e&255)/255,In.toWorkingColorSpace(this,t),this}setRGB(e,t,n,i=Wi){return this.r=e,this.g=t,this.b=n,In.toWorkingColorSpace(this,i),this}setHSL(e,t,n,i=Wi){if(e=Lu(e,1),t=Vt(t,0,1),n=Vt(n,0,1),t===0)this.r=this.g=this.b=n;else{const s=n<=.5?n*(1+t):n+t-n*t,r=2*n-s;this.r=Gl(r,s,e+1/3),this.g=Gl(r,s,e),this.b=Gl(r,s,e-1/3)}return In.toWorkingColorSpace(this,i),this}setStyle(e,t=Jn){function n(s){s!==void 0&&parseFloat(s)<1&&console.warn(\"THREE.Color: Alpha component of \"+e+\" will be ignored.\")}let i;if(i=/^((?:rgb|hsl)a?)\\(([^\\)]*)\\)/.exec(e)){let s;const r=i[1],o=i[2];switch(r){case\"rgb\":case\"rgba\":if(s=/^\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(o))return this.r=Math.min(255,parseInt(s[1],10))/255,this.g=Math.min(255,parseInt(s[2],10))/255,this.b=Math.min(255,parseInt(s[3],10))/255,In.toWorkingColorSpace(this,t),n(s[4]),this;if(s=/^\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(o))return this.r=Math.min(100,parseInt(s[1],10))/100,this.g=Math.min(100,parseInt(s[2],10))/100,this.b=Math.min(100,parseInt(s[3],10))/100,In.toWorkingColorSpace(this,t),n(s[4]),this;break;case\"hsl\":case\"hsla\":if(s=/^\\s*(\\d*\\.?\\d+)\\s*,\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(o)){const l=parseFloat(s[1])/360,c=parseInt(s[2],10)/100,h=parseInt(s[3],10)/100;return n(s[4]),this.setHSL(l,c,h,t)}break}}else if(i=/^\\#([A-Fa-f\\d]+)$/.exec(e)){const s=i[1],r=s.length;if(r===3)return this.r=parseInt(s.charAt(0)+s.charAt(0),16)/255,this.g=parseInt(s.charAt(1)+s.charAt(1),16)/255,this.b=parseInt(s.charAt(2)+s.charAt(2),16)/255,In.toWorkingColorSpace(this,t),this;if(r===6)return this.r=parseInt(s.charAt(0)+s.charAt(1),16)/255,this.g=parseInt(s.charAt(2)+s.charAt(3),16)/255,this.b=parseInt(s.charAt(4)+s.charAt(5),16)/255,In.toWorkingColorSpace(this,t),this}return e&&e.length>0?this.setColorName(e,t):this}setColorName(e,t=Jn){const n=hp[e.toLowerCase()];return n!==void 0?this.setHex(n,t):console.warn(\"THREE.Color: Unknown color \"+e),this}clone(){return new this.constructor(this.r,this.g,this.b)}copy(e){return this.r=e.r,this.g=e.g,this.b=e.b,this}copySRGBToLinear(e){return this.r=Cs(e.r),this.g=Cs(e.g),this.b=Cs(e.b),this}copyLinearToSRGB(e){return this.r=Ja(e.r),this.g=Ja(e.g),this.b=Ja(e.b),this}convertSRGBToLinear(){return this.copySRGBToLinear(this),this}convertLinearToSRGB(){return this.copyLinearToSRGB(this),this}getHex(e=Jn){return In.fromWorkingColorSpace(sa(this,Jt),e),Vt(Jt.r*255,0,255)<<16^Vt(Jt.g*255,0,255)<<8^Vt(Jt.b*255,0,255)<<0}getHexString(e=Jn){return(\"000000\"+this.getHex(e).toString(16)).slice(-6)}getHSL(e,t=Wi){In.fromWorkingColorSpace(sa(this,Jt),t);const n=Jt.r,i=Jt.g,s=Jt.b,r=Math.max(n,i,s),o=Math.min(n,i,s);let l,c;const h=(o+r)/2;if(o===r)l=0,c=0;else{const u=r-o;switch(c=h<=.5?u/(r+o):u/(2-r-o),r){case n:l=(i-s)/u+(i<s?6:0);break;case i:l=(s-n)/u+2;break;case s:l=(n-i)/u+4;break}l/=6}return e.h=l,e.s=c,e.l=h,e}getRGB(e,t=Wi){return In.fromWorkingColorSpace(sa(this,Jt),t),e.r=Jt.r,e.g=Jt.g,e.b=Jt.b,e}getStyle(e=Jn){return In.fromWorkingColorSpace(sa(this,Jt),e),e!==Jn?`color(${e} ${Jt.r} ${Jt.g} ${Jt.b})`:`rgb(${Jt.r*255|0},${Jt.g*255|0},${Jt.b*255|0})`}offsetHSL(e,t,n){return this.getHSL(Hn),Hn.h+=e,Hn.s+=t,Hn.l+=n,this.setHSL(Hn.h,Hn.s,Hn.l),this}add(e){return this.r+=e.r,this.g+=e.g,this.b+=e.b,this}addColors(e,t){return this.r=e.r+t.r,this.g=e.g+t.g,this.b=e.b+t.b,this}addScalar(e){return this.r+=e,this.g+=e,this.b+=e,this}sub(e){return this.r=Math.max(0,this.r-e.r),this.g=Math.max(0,this.g-e.g),this.b=Math.max(0,this.b-e.b),this}multiply(e){return this.r*=e.r,this.g*=e.g,this.b*=e.b,this}multiplyScalar(e){return this.r*=e,this.g*=e,this.b*=e,this}lerp(e,t){return this.r+=(e.r-this.r)*t,this.g+=(e.g-this.g)*t,this.b+=(e.b-this.b)*t,this}lerpColors(e,t,n){return this.r=e.r+(t.r-e.r)*n,this.g=e.g+(t.g-e.g)*n,this.b=e.b+(t.b-e.b)*n,this}lerpHSL(e,t){this.getHSL(Hn),e.getHSL(ia);const n=go(Hn.h,ia.h,t),i=go(Hn.s,ia.s,t),s=go(Hn.l,ia.l,t);return this.setHSL(n,i,s),this}equals(e){return e.r===this.r&&e.g===this.g&&e.b===this.b}fromArray(e,t=0){return this.r=e[t],this.g=e[t+1],this.b=e[t+2],this}toArray(e=[],t=0){return e[t]=this.r,e[t+1]=this.g,e[t+2]=this.b,e}fromBufferAttribute(e,t){return this.r=e.getX(t),this.g=e.getY(t),this.b=e.getZ(t),e.normalized===!0&&(this.r/=255,this.g/=255,this.b/=255),this}toJSON(){return this.getHex()}*[Symbol.iterator](){yield this.r,yield this.g,yield this.b}}we.NAMES=hp;let Ys;class Ru{static getDataURL(e){if(/^data:/i.test(e.src)||typeof HTMLCanvasElement==\"undefined\")return e.src;let t;if(e instanceof HTMLCanvasElement)t=e;else{Ys===void 0&&(Ys=Co(\"canvas\")),Ys.width=e.width,Ys.height=e.height;const n=Ys.getContext(\"2d\");e instanceof ImageData?n.putImageData(e,0,0):n.drawImage(e,0,0,e.width,e.height),t=Ys}return t.width>2048||t.height>2048?(console.warn(\"THREE.ImageUtils.getDataURL: Image converted to jpg for performance reasons\",e),t.toDataURL(\"image/jpeg\",.6)):t.toDataURL(\"image/png\")}static sRGBToLinear(e){if(typeof HTMLImageElement!=\"undefined\"&&e instanceof HTMLImageElement||typeof HTMLCanvasElement!=\"undefined\"&&e instanceof HTMLCanvasElement||typeof ImageBitmap!=\"undefined\"&&e instanceof ImageBitmap){const t=Co(\"canvas\");t.width=e.width,t.height=e.height;const n=t.getContext(\"2d\");n.drawImage(e,0,0,e.width,e.height);const i=n.getImageData(0,0,e.width,e.height),s=i.data;for(let r=0;r<s.length;r++)s[r]=Cs(s[r]/255)*255;return n.putImageData(i,0,0),t}else if(e.data){const t=e.data.slice(0);for(let n=0;n<t.length;n++)t instanceof Uint8Array||t instanceof Uint8ClampedArray?t[n]=Math.floor(Cs(t[n]/255)*255):t[n]=Cs(t[n]);return{data:t,width:e.width,height:e.height}}else return console.warn(\"THREE.ImageUtils.sRGBToLinear(): Unsupported image type. No color space conversion applied.\"),e}}class Ms{constructor(e=null){this.isSource=!0,this.uuid=En(),this.data=e,this.version=0}set needsUpdate(e){e===!0&&this.version++}toJSON(e){const t=e===void 0||typeof e==\"string\";if(!t&&e.images[this.uuid]!==void 0)return e.images[this.uuid];const n={uuid:this.uuid,url:\"\"},i=this.data;if(i!==null){let s;if(Array.isArray(i)){s=[];for(let r=0,o=i.length;r<o;r++)i[r].isDataTexture?s.push(Vl(i[r].image)):s.push(Vl(i[r]))}else s=Vl(i);n.url=s}return t||(e.images[this.uuid]=n),n}}function Vl(a){return typeof HTMLImageElement!=\"undefined\"&&a instanceof HTMLImageElement||typeof HTMLCanvasElement!=\"undefined\"&&a instanceof HTMLCanvasElement||typeof ImageBitmap!=\"undefined\"&&a instanceof ImageBitmap?Ru.getDataURL(a):a.data?{data:Array.from(a.data),width:a.width,height:a.height,type:a.data.constructor.name}:(console.warn(\"THREE.Texture: Unable to serialize Texture.\"),{})}let Zg=0;class It extends ai{constructor(e=It.DEFAULT_IMAGE,t=It.DEFAULT_MAPPING,n=Zt,i=Zt,s=Ft,r=oi,o=An,l=Ki,c=1,h=Mi){super(),this.isTexture=!0,Object.defineProperty(this,\"id\",{value:Zg++}),this.uuid=En(),this.name=\"\",this.source=new Ms(e),this.mipmaps=[],this.mapping=t,this.wrapS=n,this.wrapT=i,this.magFilter=s,this.minFilter=r,this.anisotropy=c,this.format=o,this.internalFormat=null,this.type=l,this.offset=new fe(0,0),this.repeat=new fe(1,1),this.center=new fe(0,0),this.rotation=0,this.matrixAutoUpdate=!0,this.matrix=new dn,this.generateMipmaps=!0,this.premultiplyAlpha=!1,this.flipY=!0,this.unpackAlignment=4,this.encoding=h,this.userData={},this.version=0,this.onUpdate=null,this.isRenderTargetTexture=!1,this.needsPMREMUpdate=!1}get image(){return this.source.data}set image(e){this.source.data=e}updateMatrix(){this.matrix.setUvTransform(this.offset.x,this.offset.y,this.repeat.x,this.repeat.y,this.rotation,this.center.x,this.center.y)}clone(){return new this.constructor().copy(this)}copy(e){return this.name=e.name,this.source=e.source,this.mipmaps=e.mipmaps.slice(0),this.mapping=e.mapping,this.wrapS=e.wrapS,this.wrapT=e.wrapT,this.magFilter=e.magFilter,this.minFilter=e.minFilter,this.anisotropy=e.anisotropy,this.format=e.format,this.internalFormat=e.internalFormat,this.type=e.type,this.offset.copy(e.offset),this.repeat.copy(e.repeat),this.center.copy(e.center),this.rotation=e.rotation,this.matrixAutoUpdate=e.matrixAutoUpdate,this.matrix.copy(e.matrix),this.generateMipmaps=e.generateMipmaps,this.premultiplyAlpha=e.premultiplyAlpha,this.flipY=e.flipY,this.unpackAlignment=e.unpackAlignment,this.encoding=e.encoding,this.userData=JSON.parse(JSON.stringify(e.userData)),this.needsUpdate=!0,this}toJSON(e){const t=e===void 0||typeof e==\"string\";if(!t&&e.textures[this.uuid]!==void 0)return e.textures[this.uuid];const n={metadata:{version:4.5,type:\"Texture\",generator:\"Texture.toJSON\"},uuid:this.uuid,name:this.name,image:this.source.toJSON(e).uuid,mapping:this.mapping,repeat:[this.repeat.x,this.repeat.y],offset:[this.offset.x,this.offset.y],center:[this.center.x,this.center.y],rotation:this.rotation,wrap:[this.wrapS,this.wrapT],format:this.format,type:this.type,encoding:this.encoding,minFilter:this.minFilter,magFilter:this.magFilter,anisotropy:this.anisotropy,flipY:this.flipY,premultiplyAlpha:this.premultiplyAlpha,unpackAlignment:this.unpackAlignment};return JSON.stringify(this.userData)!==\"{}\"&&(n.userData=this.userData),t||(e.textures[this.uuid]=n),n}dispose(){this.dispatchEvent({type:\"dispose\"})}transformUv(e){if(this.mapping!==gl)return e;if(e.applyMatrix3(this.matrix),e.x<0||e.x>1)switch(this.wrapS){case fn:e.x=e.x-Math.floor(e.x);break;case Zt:e.x=e.x<0?0:1;break;case wr:Math.abs(Math.floor(e.x)%2)===1?e.x=Math.ceil(e.x)-e.x:e.x=e.x-Math.floor(e.x);break}if(e.y<0||e.y>1)switch(this.wrapT){case fn:e.y=e.y-Math.floor(e.y);break;case Zt:e.y=e.y<0?0:1;break;case wr:Math.abs(Math.floor(e.y)%2)===1?e.y=Math.ceil(e.y)-e.y:e.y=e.y-Math.floor(e.y);break}return this.flipY&&(e.y=1-e.y),e}set needsUpdate(e){e===!0&&(this.version++,this.source.needsUpdate=!0)}}It.DEFAULT_IMAGE=null;It.DEFAULT_MAPPING=gl;class dt{constructor(e=0,t=0,n=0,i=1){dt.prototype.isVector4=!0,this.x=e,this.y=t,this.z=n,this.w=i}get width(){return this.z}set width(e){this.z=e}get height(){return this.w}set height(e){this.w=e}set(e,t,n,i){return this.x=e,this.y=t,this.z=n,this.w=i,this}setScalar(e){return this.x=e,this.y=e,this.z=e,this.w=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setZ(e){return this.z=e,this}setW(e){return this.w=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;case 2:this.z=t;break;case 3:this.w=t;break;default:throw new Error(\"index is out of range: \"+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw new Error(\"index is out of range: \"+e)}}clone(){return new this.constructor(this.x,this.y,this.z,this.w)}copy(e){return this.x=e.x,this.y=e.y,this.z=e.z,this.w=e.w!==void 0?e.w:1,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this.w+=e.w,this}addScalar(e){return this.x+=e,this.y+=e,this.z+=e,this.w+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this.z=e.z+t.z,this.w=e.w+t.w,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this.z+=e.z*t,this.w+=e.w*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this.w-=e.w,this}subScalar(e){return this.x-=e,this.y-=e,this.z-=e,this.w-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this.z=e.z-t.z,this.w=e.w-t.w,this}multiply(e){return this.x*=e.x,this.y*=e.y,this.z*=e.z,this.w*=e.w,this}multiplyScalar(e){return this.x*=e,this.y*=e,this.z*=e,this.w*=e,this}applyMatrix4(e){const t=this.x,n=this.y,i=this.z,s=this.w,r=e.elements;return this.x=r[0]*t+r[4]*n+r[8]*i+r[12]*s,this.y=r[1]*t+r[5]*n+r[9]*i+r[13]*s,this.z=r[2]*t+r[6]*n+r[10]*i+r[14]*s,this.w=r[3]*t+r[7]*n+r[11]*i+r[15]*s,this}divideScalar(e){return this.multiplyScalar(1/e)}setAxisAngleFromQuaternion(e){this.w=2*Math.acos(e.w);const t=Math.sqrt(1-e.w*e.w);return t<1e-4?(this.x=1,this.y=0,this.z=0):(this.x=e.x/t,this.y=e.y/t,this.z=e.z/t),this}setAxisAngleFromRotationMatrix(e){let t,n,i,s;const l=e.elements,c=l[0],h=l[4],u=l[8],f=l[1],d=l[5],p=l[9],m=l[2],g=l[6],y=l[10];if(Math.abs(h-f)<.01&&Math.abs(u-m)<.01&&Math.abs(p-g)<.01){if(Math.abs(h+f)<.1&&Math.abs(u+m)<.1&&Math.abs(p+g)<.1&&Math.abs(c+d+y-3)<.1)return this.set(1,0,0,0),this;t=Math.PI;const b=(c+1)/2,v=(d+1)/2,M=(y+1)/2,T=(h+f)/4,C=(u+m)/4,_=(p+g)/4;return b>v&&b>M?b<.01?(n=0,i=.707106781,s=.707106781):(n=Math.sqrt(b),i=T/n,s=C/n):v>M?v<.01?(n=.707106781,i=0,s=.707106781):(i=Math.sqrt(v),n=T/i,s=_/i):M<.01?(n=.707106781,i=.707106781,s=0):(s=Math.sqrt(M),n=C/s,i=_/s),this.set(n,i,s,t),this}let x=Math.sqrt((g-p)*(g-p)+(u-m)*(u-m)+(f-h)*(f-h));return Math.abs(x)<.001&&(x=1),this.x=(g-p)/x,this.y=(u-m)/x,this.z=(f-h)/x,this.w=Math.acos((c+d+y-1)/2),this}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this.z=Math.min(this.z,e.z),this.w=Math.min(this.w,e.w),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this.z=Math.max(this.z,e.z),this.w=Math.max(this.w,e.w),this}clamp(e,t){return this.x=Math.max(e.x,Math.min(t.x,this.x)),this.y=Math.max(e.y,Math.min(t.y,this.y)),this.z=Math.max(e.z,Math.min(t.z,this.z)),this.w=Math.max(e.w,Math.min(t.w,this.w)),this}clampScalar(e,t){return this.x=Math.max(e,Math.min(t,this.x)),this.y=Math.max(e,Math.min(t,this.y)),this.z=Math.max(e,Math.min(t,this.z)),this.w=Math.max(e,Math.min(t,this.w)),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(e,Math.min(t,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this.w=Math.floor(this.w),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this.w=Math.ceil(this.w),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this.w=Math.round(this.w),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this.z=this.z<0?Math.ceil(this.z):Math.floor(this.z),this.w=this.w<0?Math.ceil(this.w):Math.floor(this.w),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this.w=-this.w,this}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z+this.w*e.w}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)}normalize(){return this.divideScalar(this.length()||1)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this.z+=(e.z-this.z)*t,this.w+=(e.w-this.w)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this.z=e.z+(t.z-e.z)*n,this.w=e.w+(t.w-e.w)*n,this}equals(e){return e.x===this.x&&e.y===this.y&&e.z===this.z&&e.w===this.w}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this.z=e[t+2],this.w=e[t+3],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e[t+2]=this.z,e[t+3]=this.w,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this.z=e.getZ(t),this.w=e.getW(t),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this.w=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z,yield this.w}}class zn extends ai{constructor(e,t,n={}){super(),this.isWebGLRenderTarget=!0,this.width=e,this.height=t,this.depth=1,this.scissor=new dt(0,0,e,t),this.scissorTest=!1,this.viewport=new dt(0,0,e,t);const i={width:e,height:t,depth:1};this.texture=new It(i,n.mapping,n.wrapS,n.wrapT,n.magFilter,n.minFilter,n.format,n.type,n.anisotropy,n.encoding),this.texture.isRenderTargetTexture=!0,this.texture.flipY=!1,this.texture.generateMipmaps=n.generateMipmaps!==void 0?n.generateMipmaps:!1,this.texture.internalFormat=n.internalFormat!==void 0?n.internalFormat:null,this.texture.minFilter=n.minFilter!==void 0?n.minFilter:Ft,this.depthBuffer=n.depthBuffer!==void 0?n.depthBuffer:!0,this.stencilBuffer=n.stencilBuffer!==void 0?n.stencilBuffer:!1,this.depthTexture=n.depthTexture!==void 0?n.depthTexture:null,this.samples=n.samples!==void 0?n.samples:0}setSize(e,t,n=1){(this.width!==e||this.height!==t||this.depth!==n)&&(this.width=e,this.height=t,this.depth=n,this.texture.image.width=e,this.texture.image.height=t,this.texture.image.depth=n,this.dispose()),this.viewport.set(0,0,e,t),this.scissor.set(0,0,e,t)}clone(){return new this.constructor().copy(this)}copy(e){this.width=e.width,this.height=e.height,this.depth=e.depth,this.viewport.copy(e.viewport),this.texture=e.texture.clone(),this.texture.isRenderTargetTexture=!0;const t=Object.assign({},e.texture.image);return this.texture.source=new Ms(t),this.depthBuffer=e.depthBuffer,this.stencilBuffer=e.stencilBuffer,e.depthTexture!==null&&(this.depthTexture=e.depthTexture.clone()),this.samples=e.samples,this}dispose(){this.dispatchEvent({type:\"dispose\"})}}class Uo extends It{constructor(e=null,t=1,n=1,i=1){super(null),this.isDataArrayTexture=!0,this.image={data:e,width:t,height:n,depth:i},this.magFilter=Gt,this.minFilter=Gt,this.wrapR=Zt,this.generateMipmaps=!1,this.flipY=!1,this.unpackAlignment=1}}class Kg extends zn{constructor(e,t,n){super(e,t),this.isWebGLArrayRenderTarget=!0,this.depth=n,this.texture=new Uo(null,e,t,n),this.texture.isRenderTargetTexture=!0}}class vl extends It{constructor(e=null,t=1,n=1,i=1){super(null),this.isData3DTexture=!0,this.image={data:e,width:t,height:n,depth:i},this.magFilter=Gt,this.minFilter=Gt,this.wrapR=Zt,this.generateMipmaps=!1,this.flipY=!1,this.unpackAlignment=1}}class Jg extends zn{constructor(e,t,n){super(e,t),this.isWebGL3DRenderTarget=!0,this.depth=n,this.texture=new vl(null,e,t,n),this.texture.isRenderTargetTexture=!0}}class $g extends zn{constructor(e,t,n,i={}){super(e,t,i),this.isWebGLMultipleRenderTargets=!0;const s=this.texture;this.texture=[];for(let r=0;r<n;r++)this.texture[r]=s.clone(),this.texture[r].isRenderTargetTexture=!0}setSize(e,t,n=1){if(this.width!==e||this.height!==t||this.depth!==n){this.width=e,this.height=t,this.depth=n;for(let i=0,s=this.texture.length;i<s;i++)this.texture[i].image.width=e,this.texture[i].image.height=t,this.texture[i].image.depth=n;this.dispose()}return this.viewport.set(0,0,e,t),this.scissor.set(0,0,e,t),this}copy(e){this.dispose(),this.width=e.width,this.height=e.height,this.depth=e.depth,this.viewport.set(0,0,this.width,this.height),this.scissor.set(0,0,this.width,this.height),this.depthBuffer=e.depthBuffer,this.stencilBuffer=e.stencilBuffer,e.depthTexture!==null&&(this.depthTexture=e.depthTexture.clone()),this.texture.length=0;for(let t=0,n=e.texture.length;t<n;t++)this.texture[t]=e.texture[t].clone(),this.texture[t].isRenderTargetTexture=!0;return this}}class Bt{constructor(e=0,t=0,n=0,i=1){this.isQuaternion=!0,this._x=e,this._y=t,this._z=n,this._w=i}static slerpFlat(e,t,n,i,s,r,o){let l=n[i+0],c=n[i+1],h=n[i+2],u=n[i+3];const f=s[r+0],d=s[r+1],p=s[r+2],m=s[r+3];if(o===0){e[t+0]=l,e[t+1]=c,e[t+2]=h,e[t+3]=u;return}if(o===1){e[t+0]=f,e[t+1]=d,e[t+2]=p,e[t+3]=m;return}if(u!==m||l!==f||c!==d||h!==p){let g=1-o;const y=l*f+c*d+h*p+u*m,x=y>=0?1:-1,b=1-y*y;if(b>Number.EPSILON){const M=Math.sqrt(b),T=Math.atan2(M,y*x);g=Math.sin(g*T)/M,o=Math.sin(o*T)/M}const v=o*x;if(l=l*g+f*v,c=c*g+d*v,h=h*g+p*v,u=u*g+m*v,g===1-o){const M=1/Math.sqrt(l*l+c*c+h*h+u*u);l*=M,c*=M,h*=M,u*=M}}e[t]=l,e[t+1]=c,e[t+2]=h,e[t+3]=u}static multiplyQuaternionsFlat(e,t,n,i,s,r){const o=n[i],l=n[i+1],c=n[i+2],h=n[i+3],u=s[r],f=s[r+1],d=s[r+2],p=s[r+3];return e[t]=o*p+h*u+l*d-c*f,e[t+1]=l*p+h*f+c*u-o*d,e[t+2]=c*p+h*d+o*f-l*u,e[t+3]=h*p-o*u-l*f-c*d,e}get x(){return this._x}set x(e){this._x=e,this._onChangeCallback()}get y(){return this._y}set y(e){this._y=e,this._onChangeCallback()}get z(){return this._z}set z(e){this._z=e,this._onChangeCallback()}get w(){return this._w}set w(e){this._w=e,this._onChangeCallback()}set(e,t,n,i){return this._x=e,this._y=t,this._z=n,this._w=i,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._w)}copy(e){return this._x=e.x,this._y=e.y,this._z=e.z,this._w=e.w,this._onChangeCallback(),this}setFromEuler(e,t){if(!(e&&e.isEuler))throw new Error(\"THREE.Quaternion: .setFromEuler() now expects an Euler rotation rather than a Vector3 and order.\");const n=e._x,i=e._y,s=e._z,r=e._order,o=Math.cos,l=Math.sin,c=o(n/2),h=o(i/2),u=o(s/2),f=l(n/2),d=l(i/2),p=l(s/2);switch(r){case\"XYZ\":this._x=f*h*u+c*d*p,this._y=c*d*u-f*h*p,this._z=c*h*p+f*d*u,this._w=c*h*u-f*d*p;break;case\"YXZ\":this._x=f*h*u+c*d*p,this._y=c*d*u-f*h*p,this._z=c*h*p-f*d*u,this._w=c*h*u+f*d*p;break;case\"ZXY\":this._x=f*h*u-c*d*p,this._y=c*d*u+f*h*p,this._z=c*h*p+f*d*u,this._w=c*h*u-f*d*p;break;case\"ZYX\":this._x=f*h*u-c*d*p,this._y=c*d*u+f*h*p,this._z=c*h*p-f*d*u,this._w=c*h*u+f*d*p;break;case\"YZX\":this._x=f*h*u+c*d*p,this._y=c*d*u+f*h*p,this._z=c*h*p-f*d*u,this._w=c*h*u-f*d*p;break;case\"XZY\":this._x=f*h*u-c*d*p,this._y=c*d*u-f*h*p,this._z=c*h*p+f*d*u,this._w=c*h*u+f*d*p;break;default:console.warn(\"THREE.Quaternion: .setFromEuler() encountered an unknown order: \"+r)}return t!==!1&&this._onChangeCallback(),this}setFromAxisAngle(e,t){const n=t/2,i=Math.sin(n);return this._x=e.x*i,this._y=e.y*i,this._z=e.z*i,this._w=Math.cos(n),this._onChangeCallback(),this}setFromRotationMatrix(e){const t=e.elements,n=t[0],i=t[4],s=t[8],r=t[1],o=t[5],l=t[9],c=t[2],h=t[6],u=t[10],f=n+o+u;if(f>0){const d=.5/Math.sqrt(f+1);this._w=.25/d,this._x=(h-l)*d,this._y=(s-c)*d,this._z=(r-i)*d}else if(n>o&&n>u){const d=2*Math.sqrt(1+n-o-u);this._w=(h-l)/d,this._x=.25*d,this._y=(i+r)/d,this._z=(s+c)/d}else if(o>u){const d=2*Math.sqrt(1+o-n-u);this._w=(s-c)/d,this._x=(i+r)/d,this._y=.25*d,this._z=(l+h)/d}else{const d=2*Math.sqrt(1+u-n-o);this._w=(r-i)/d,this._x=(s+c)/d,this._y=(l+h)/d,this._z=.25*d}return this._onChangeCallback(),this}setFromUnitVectors(e,t){let n=e.dot(t)+1;return n<Number.EPSILON?(n=0,Math.abs(e.x)>Math.abs(e.z)?(this._x=-e.y,this._y=e.x,this._z=0,this._w=n):(this._x=0,this._y=-e.z,this._z=e.y,this._w=n)):(this._x=e.y*t.z-e.z*t.y,this._y=e.z*t.x-e.x*t.z,this._z=e.x*t.y-e.y*t.x,this._w=n),this.normalize()}angleTo(e){return 2*Math.acos(Math.abs(Vt(this.dot(e),-1,1)))}rotateTowards(e,t){const n=this.angleTo(e);if(n===0)return this;const i=Math.min(1,t/n);return this.slerp(e,i),this}identity(){return this.set(0,0,0,1)}invert(){return this.conjugate()}conjugate(){return this._x*=-1,this._y*=-1,this._z*=-1,this._onChangeCallback(),this}dot(e){return this._x*e._x+this._y*e._y+this._z*e._z+this._w*e._w}lengthSq(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w}length(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)}normalize(){let e=this.length();return e===0?(this._x=0,this._y=0,this._z=0,this._w=1):(e=1/e,this._x=this._x*e,this._y=this._y*e,this._z=this._z*e,this._w=this._w*e),this._onChangeCallback(),this}multiply(e){return this.multiplyQuaternions(this,e)}premultiply(e){return this.multiplyQuaternions(e,this)}multiplyQuaternions(e,t){const n=e._x,i=e._y,s=e._z,r=e._w,o=t._x,l=t._y,c=t._z,h=t._w;return this._x=n*h+r*o+i*c-s*l,this._y=i*h+r*l+s*o-n*c,this._z=s*h+r*c+n*l-i*o,this._w=r*h-n*o-i*l-s*c,this._onChangeCallback(),this}slerp(e,t){if(t===0)return this;if(t===1)return this.copy(e);const n=this._x,i=this._y,s=this._z,r=this._w;let o=r*e._w+n*e._x+i*e._y+s*e._z;if(o<0?(this._w=-e._w,this._x=-e._x,this._y=-e._y,this._z=-e._z,o=-o):this.copy(e),o>=1)return this._w=r,this._x=n,this._y=i,this._z=s,this;const l=1-o*o;if(l<=Number.EPSILON){const d=1-t;return this._w=d*r+t*this._w,this._x=d*n+t*this._x,this._y=d*i+t*this._y,this._z=d*s+t*this._z,this.normalize(),this._onChangeCallback(),this}const c=Math.sqrt(l),h=Math.atan2(c,o),u=Math.sin((1-t)*h)/c,f=Math.sin(t*h)/c;return this._w=r*u+this._w*f,this._x=n*u+this._x*f,this._y=i*u+this._y*f,this._z=s*u+this._z*f,this._onChangeCallback(),this}slerpQuaternions(e,t,n){return this.copy(e).slerp(t,n)}random(){const e=Math.random(),t=Math.sqrt(1-e),n=Math.sqrt(e),i=2*Math.PI*Math.random(),s=2*Math.PI*Math.random();return this.set(t*Math.cos(i),n*Math.sin(s),n*Math.cos(s),t*Math.sin(i))}equals(e){return e._x===this._x&&e._y===this._y&&e._z===this._z&&e._w===this._w}fromArray(e,t=0){return this._x=e[t],this._y=e[t+1],this._z=e[t+2],this._w=e[t+3],this._onChangeCallback(),this}toArray(e=[],t=0){return e[t]=this._x,e[t+1]=this._y,e[t+2]=this._z,e[t+3]=this._w,e}fromBufferAttribute(e,t){return this._x=e.getX(t),this._y=e.getY(t),this._z=e.getZ(t),this._w=e.getW(t),this}_onChange(e){return this._onChangeCallback=e,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._w}}class I{constructor(e=0,t=0,n=0){I.prototype.isVector3=!0,this.x=e,this.y=t,this.z=n}set(e,t,n){return n===void 0&&(n=this.z),this.x=e,this.y=t,this.z=n,this}setScalar(e){return this.x=e,this.y=e,this.z=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setZ(e){return this.z=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;case 2:this.z=t;break;default:throw new Error(\"index is out of range: \"+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw new Error(\"index is out of range: \"+e)}}clone(){return new this.constructor(this.x,this.y,this.z)}copy(e){return this.x=e.x,this.y=e.y,this.z=e.z,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this}addScalar(e){return this.x+=e,this.y+=e,this.z+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this.z=e.z+t.z,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this.z+=e.z*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this}subScalar(e){return this.x-=e,this.y-=e,this.z-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this.z=e.z-t.z,this}multiply(e){return this.x*=e.x,this.y*=e.y,this.z*=e.z,this}multiplyScalar(e){return this.x*=e,this.y*=e,this.z*=e,this}multiplyVectors(e,t){return this.x=e.x*t.x,this.y=e.y*t.y,this.z=e.z*t.z,this}applyEuler(e){return this.applyQuaternion(bh.setFromEuler(e))}applyAxisAngle(e,t){return this.applyQuaternion(bh.setFromAxisAngle(e,t))}applyMatrix3(e){const t=this.x,n=this.y,i=this.z,s=e.elements;return this.x=s[0]*t+s[3]*n+s[6]*i,this.y=s[1]*t+s[4]*n+s[7]*i,this.z=s[2]*t+s[5]*n+s[8]*i,this}applyNormalMatrix(e){return this.applyMatrix3(e).normalize()}applyMatrix4(e){const t=this.x,n=this.y,i=this.z,s=e.elements,r=1/(s[3]*t+s[7]*n+s[11]*i+s[15]);return this.x=(s[0]*t+s[4]*n+s[8]*i+s[12])*r,this.y=(s[1]*t+s[5]*n+s[9]*i+s[13])*r,this.z=(s[2]*t+s[6]*n+s[10]*i+s[14])*r,this}applyQuaternion(e){const t=this.x,n=this.y,i=this.z,s=e.x,r=e.y,o=e.z,l=e.w,c=l*t+r*i-o*n,h=l*n+o*t-s*i,u=l*i+s*n-r*t,f=-s*t-r*n-o*i;return this.x=c*l+f*-s+h*-o-u*-r,this.y=h*l+f*-r+u*-s-c*-o,this.z=u*l+f*-o+c*-r-h*-s,this}project(e){return this.applyMatrix4(e.matrixWorldInverse).applyMatrix4(e.projectionMatrix)}unproject(e){return this.applyMatrix4(e.projectionMatrixInverse).applyMatrix4(e.matrixWorld)}transformDirection(e){const t=this.x,n=this.y,i=this.z,s=e.elements;return this.x=s[0]*t+s[4]*n+s[8]*i,this.y=s[1]*t+s[5]*n+s[9]*i,this.z=s[2]*t+s[6]*n+s[10]*i,this.normalize()}divide(e){return this.x/=e.x,this.y/=e.y,this.z/=e.z,this}divideScalar(e){return this.multiplyScalar(1/e)}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this.z=Math.min(this.z,e.z),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this.z=Math.max(this.z,e.z),this}clamp(e,t){return this.x=Math.max(e.x,Math.min(t.x,this.x)),this.y=Math.max(e.y,Math.min(t.y,this.y)),this.z=Math.max(e.z,Math.min(t.z,this.z)),this}clampScalar(e,t){return this.x=Math.max(e,Math.min(t,this.x)),this.y=Math.max(e,Math.min(t,this.y)),this.z=Math.max(e,Math.min(t,this.z)),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(e,Math.min(t,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this.z=this.z<0?Math.ceil(this.z):Math.floor(this.z),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)}normalize(){return this.divideScalar(this.length()||1)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this.z+=(e.z-this.z)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this.z=e.z+(t.z-e.z)*n,this}cross(e){return this.crossVectors(this,e)}crossVectors(e,t){const n=e.x,i=e.y,s=e.z,r=t.x,o=t.y,l=t.z;return this.x=i*l-s*o,this.y=s*r-n*l,this.z=n*o-i*r,this}projectOnVector(e){const t=e.lengthSq();if(t===0)return this.set(0,0,0);const n=e.dot(this)/t;return this.copy(e).multiplyScalar(n)}projectOnPlane(e){return Hl.copy(this).projectOnVector(e),this.sub(Hl)}reflect(e){return this.sub(Hl.copy(e).multiplyScalar(2*this.dot(e)))}angleTo(e){const t=Math.sqrt(this.lengthSq()*e.lengthSq());if(t===0)return Math.PI/2;const n=this.dot(e)/t;return Math.acos(Vt(n,-1,1))}distanceTo(e){return Math.sqrt(this.distanceToSquared(e))}distanceToSquared(e){const t=this.x-e.x,n=this.y-e.y,i=this.z-e.z;return t*t+n*n+i*i}manhattanDistanceTo(e){return Math.abs(this.x-e.x)+Math.abs(this.y-e.y)+Math.abs(this.z-e.z)}setFromSpherical(e){return this.setFromSphericalCoords(e.radius,e.phi,e.theta)}setFromSphericalCoords(e,t,n){const i=Math.sin(t)*e;return this.x=i*Math.sin(n),this.y=Math.cos(t)*e,this.z=i*Math.cos(n),this}setFromCylindrical(e){return this.setFromCylindricalCoords(e.radius,e.theta,e.y)}setFromCylindricalCoords(e,t,n){return this.x=e*Math.sin(t),this.y=n,this.z=e*Math.cos(t),this}setFromMatrixPosition(e){const t=e.elements;return this.x=t[12],this.y=t[13],this.z=t[14],this}setFromMatrixScale(e){const t=this.setFromMatrixColumn(e,0).length(),n=this.setFromMatrixColumn(e,1).length(),i=this.setFromMatrixColumn(e,2).length();return this.x=t,this.y=n,this.z=i,this}setFromMatrixColumn(e,t){return this.fromArray(e.elements,t*4)}setFromMatrix3Column(e,t){return this.fromArray(e.elements,t*3)}setFromEuler(e){return this.x=e._x,this.y=e._y,this.z=e._z,this}equals(e){return e.x===this.x&&e.y===this.y&&e.z===this.z}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this.z=e[t+2],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e[t+2]=this.z,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this.z=e.getZ(t),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this}randomDirection(){const e=(Math.random()-.5)*2,t=Math.random()*Math.PI*2,n=Math.sqrt(1-e**2);return this.x=n*Math.cos(t),this.y=n*Math.sin(t),this.z=e,this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z}}const Hl=new I,bh=new Bt;class Li{constructor(e=new I(1/0,1/0,1/0),t=new I(-1/0,-1/0,-1/0)){this.isBox3=!0,this.min=e,this.max=t}set(e,t){return this.min.copy(e),this.max.copy(t),this}setFromArray(e){let t=1/0,n=1/0,i=1/0,s=-1/0,r=-1/0,o=-1/0;for(let l=0,c=e.length;l<c;l+=3){const h=e[l],u=e[l+1],f=e[l+2];h<t&&(t=h),u<n&&(n=u),f<i&&(i=f),h>s&&(s=h),u>r&&(r=u),f>o&&(o=f)}return this.min.set(t,n,i),this.max.set(s,r,o),this}setFromBufferAttribute(e){let t=1/0,n=1/0,i=1/0,s=-1/0,r=-1/0,o=-1/0;for(let l=0,c=e.count;l<c;l++){const h=e.getX(l),u=e.getY(l),f=e.getZ(l);h<t&&(t=h),u<n&&(n=u),f<i&&(i=f),h>s&&(s=h),u>r&&(r=u),f>o&&(o=f)}return this.min.set(t,n,i),this.max.set(s,r,o),this}setFromPoints(e){this.makeEmpty();for(let t=0,n=e.length;t<n;t++)this.expandByPoint(e[t]);return this}setFromCenterAndSize(e,t){const n=as.copy(t).multiplyScalar(.5);return this.min.copy(e).sub(n),this.max.copy(e).add(n),this}setFromObject(e,t=!1){return this.makeEmpty(),this.expandByObject(e,t)}clone(){return new this.constructor().copy(this)}copy(e){return this.min.copy(e.min),this.max.copy(e.max),this}makeEmpty(){return this.min.x=this.min.y=this.min.z=1/0,this.max.x=this.max.y=this.max.z=-1/0,this}isEmpty(){return this.max.x<this.min.x||this.max.y<this.min.y||this.max.z<this.min.z}getCenter(e){return this.isEmpty()?e.set(0,0,0):e.addVectors(this.min,this.max).multiplyScalar(.5)}getSize(e){return this.isEmpty()?e.set(0,0,0):e.subVectors(this.max,this.min)}expandByPoint(e){return this.min.min(e),this.max.max(e),this}expandByVector(e){return this.min.sub(e),this.max.add(e),this}expandByScalar(e){return this.min.addScalar(-e),this.max.addScalar(e),this}expandByObject(e,t=!1){e.updateWorldMatrix(!1,!1);const n=e.geometry;if(n!==void 0)if(t&&n.attributes!=null&&n.attributes.position!==void 0){const s=n.attributes.position;for(let r=0,o=s.count;r<o;r++)as.fromBufferAttribute(s,r).applyMatrix4(e.matrixWorld),this.expandByPoint(as)}else n.boundingBox===null&&n.computeBoundingBox(),Wl.copy(n.boundingBox),Wl.applyMatrix4(e.matrixWorld),this.union(Wl);const i=e.children;for(let s=0,r=i.length;s<r;s++)this.expandByObject(i[s],t);return this}containsPoint(e){return!(e.x<this.min.x||e.x>this.max.x||e.y<this.min.y||e.y>this.max.y||e.z<this.min.z||e.z>this.max.z)}containsBox(e){return this.min.x<=e.min.x&&e.max.x<=this.max.x&&this.min.y<=e.min.y&&e.max.y<=this.max.y&&this.min.z<=e.min.z&&e.max.z<=this.max.z}getParameter(e,t){return t.set((e.x-this.min.x)/(this.max.x-this.min.x),(e.y-this.min.y)/(this.max.y-this.min.y),(e.z-this.min.z)/(this.max.z-this.min.z))}intersectsBox(e){return!(e.max.x<this.min.x||e.min.x>this.max.x||e.max.y<this.min.y||e.min.y>this.max.y||e.max.z<this.min.z||e.min.z>this.max.z)}intersectsSphere(e){return this.clampPoint(e.center,as),as.distanceToSquared(e.center)<=e.radius*e.radius}intersectsPlane(e){let t,n;return e.normal.x>0?(t=e.normal.x*this.min.x,n=e.normal.x*this.max.x):(t=e.normal.x*this.max.x,n=e.normal.x*this.min.x),e.normal.y>0?(t+=e.normal.y*this.min.y,n+=e.normal.y*this.max.y):(t+=e.normal.y*this.max.y,n+=e.normal.y*this.min.y),e.normal.z>0?(t+=e.normal.z*this.min.z,n+=e.normal.z*this.max.z):(t+=e.normal.z*this.max.z,n+=e.normal.z*this.min.z),t<=-e.constant&&n>=-e.constant}intersectsTriangle(e){if(this.isEmpty())return!1;this.getCenter(to),ra.subVectors(this.max,to),Zs.subVectors(e.a,to),Ks.subVectors(e.b,to),Js.subVectors(e.c,to),Pi.subVectors(Ks,Zs),Di.subVectors(Js,Ks),ls.subVectors(Zs,Js);let t=[0,-Pi.z,Pi.y,0,-Di.z,Di.y,0,-ls.z,ls.y,Pi.z,0,-Pi.x,Di.z,0,-Di.x,ls.z,0,-ls.x,-Pi.y,Pi.x,0,-Di.y,Di.x,0,-ls.y,ls.x,0];return!ql(t,Zs,Ks,Js,ra)||(t=[1,0,0,0,1,0,0,0,1],!ql(t,Zs,Ks,Js,ra))?!1:(oa.crossVectors(Pi,Di),t=[oa.x,oa.y,oa.z],ql(t,Zs,Ks,Js,ra))}clampPoint(e,t){return t.copy(e).clamp(this.min,this.max)}distanceToPoint(e){return as.copy(e).clamp(this.min,this.max).sub(e).length()}getBoundingSphere(e){return this.getCenter(e.center),e.radius=this.getSize(as).length()*.5,e}intersect(e){return this.min.max(e.min),this.max.min(e.max),this.isEmpty()&&this.makeEmpty(),this}union(e){return this.min.min(e.min),this.max.max(e.max),this}applyMatrix4(e){return this.isEmpty()?this:(ui[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(e),ui[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(e),ui[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(e),ui[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(e),ui[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(e),ui[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(e),ui[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(e),ui[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(e),this.setFromPoints(ui),this)}translate(e){return this.min.add(e),this.max.add(e),this}equals(e){return e.min.equals(this.min)&&e.max.equals(this.max)}}const ui=[new I,new I,new I,new I,new I,new I,new I,new I],as=new I,Wl=new Li,Zs=new I,Ks=new I,Js=new I,Pi=new I,Di=new I,ls=new I,to=new I,ra=new I,oa=new I,cs=new I;function ql(a,e,t,n,i){for(let s=0,r=a.length-3;s<=r;s+=3){cs.fromArray(a,s);const o=i.x*Math.abs(cs.x)+i.y*Math.abs(cs.y)+i.z*Math.abs(cs.z),l=e.dot(cs),c=t.dot(cs),h=n.dot(cs);if(Math.max(-Math.max(l,c,h),Math.min(l,c,h))>o)return!1}return!0}const Qg=new Li,wh=new I,aa=new I,Xl=new I;class is{constructor(e=new I,t=-1){this.center=e,this.radius=t}set(e,t){return this.center.copy(e),this.radius=t,this}setFromPoints(e,t){const n=this.center;t!==void 0?n.copy(t):Qg.setFromPoints(e).getCenter(n);let i=0;for(let s=0,r=e.length;s<r;s++)i=Math.max(i,n.distanceToSquared(e[s]));return this.radius=Math.sqrt(i),this}copy(e){return this.center.copy(e.center),this.radius=e.radius,this}isEmpty(){return this.radius<0}makeEmpty(){return this.center.set(0,0,0),this.radius=-1,this}containsPoint(e){return e.distanceToSquared(this.center)<=this.radius*this.radius}distanceToPoint(e){return e.distanceTo(this.center)-this.radius}intersectsSphere(e){const t=this.radius+e.radius;return e.center.distanceToSquared(this.center)<=t*t}intersectsBox(e){return e.intersectsSphere(this)}intersectsPlane(e){return Math.abs(e.distanceToPoint(this.center))<=this.radius}clampPoint(e,t){const n=this.center.distanceToSquared(e);return t.copy(e),n>this.radius*this.radius&&(t.sub(this.center).normalize(),t.multiplyScalar(this.radius).add(this.center)),t}getBoundingBox(e){return this.isEmpty()?(e.makeEmpty(),e):(e.set(this.center,this.center),e.expandByScalar(this.radius),e)}applyMatrix4(e){return this.center.applyMatrix4(e),this.radius=this.radius*e.getMaxScaleOnAxis(),this}translate(e){return this.center.add(e),this}expandByPoint(e){Xl.subVectors(e,this.center);const t=Xl.lengthSq();if(t>this.radius*this.radius){const n=Math.sqrt(t),i=(n-this.radius)*.5;this.center.add(Xl.multiplyScalar(i/n)),this.radius+=i}return this}union(e){return this.center.equals(e.center)===!0?aa.set(0,0,1).multiplyScalar(e.radius):aa.subVectors(e.center,this.center).normalize().multiplyScalar(e.radius),this.expandByPoint(wh.copy(e.center).add(aa)),this.expandByPoint(wh.copy(e.center).sub(aa)),this}equals(e){return e.center.equals(this.center)&&e.radius===this.radius}clone(){return new this.constructor().copy(this)}}const hi=new I,jl=new I,la=new I,Fi=new I,Yl=new I,ca=new I,Zl=new I;class Go{constructor(e=new I,t=new I(0,0,-1)){this.origin=e,this.direction=t}set(e,t){return this.origin.copy(e),this.direction.copy(t),this}copy(e){return this.origin.copy(e.origin),this.direction.copy(e.direction),this}at(e,t){return t.copy(this.direction).multiplyScalar(e).add(this.origin)}lookAt(e){return this.direction.copy(e).sub(this.origin).normalize(),this}recast(e){return this.origin.copy(this.at(e,hi)),this}closestPointToPoint(e,t){t.subVectors(e,this.origin);const n=t.dot(this.direction);return n<0?t.copy(this.origin):t.copy(this.direction).multiplyScalar(n).add(this.origin)}distanceToPoint(e){return Math.sqrt(this.distanceSqToPoint(e))}distanceSqToPoint(e){const t=hi.subVectors(e,this.origin).dot(this.direction);return t<0?this.origin.distanceToSquared(e):(hi.copy(this.direction).multiplyScalar(t).add(this.origin),hi.distanceToSquared(e))}distanceSqToSegment(e,t,n,i){jl.copy(e).add(t).multiplyScalar(.5),la.copy(t).sub(e).normalize(),Fi.copy(this.origin).sub(jl);const s=e.distanceTo(t)*.5,r=-this.direction.dot(la),o=Fi.dot(this.direction),l=-Fi.dot(la),c=Fi.lengthSq(),h=Math.abs(1-r*r);let u,f,d,p;if(h>0)if(u=r*l-o,f=r*o-l,p=s*h,u>=0)if(f>=-p)if(f<=p){const m=1/h;u*=m,f*=m,d=u*(u+r*f+2*o)+f*(r*u+f+2*l)+c}else f=s,u=Math.max(0,-(r*f+o)),d=-u*u+f*(f+2*l)+c;else f=-s,u=Math.max(0,-(r*f+o)),d=-u*u+f*(f+2*l)+c;else f<=-p?(u=Math.max(0,-(-r*s+o)),f=u>0?-s:Math.min(Math.max(-s,-l),s),d=-u*u+f*(f+2*l)+c):f<=p?(u=0,f=Math.min(Math.max(-s,-l),s),d=f*(f+2*l)+c):(u=Math.max(0,-(r*s+o)),f=u>0?s:Math.min(Math.max(-s,-l),s),d=-u*u+f*(f+2*l)+c);else f=r>0?-s:s,u=Math.max(0,-(r*f+o)),d=-u*u+f*(f+2*l)+c;return n&&n.copy(this.direction).multiplyScalar(u).add(this.origin),i&&i.copy(la).multiplyScalar(f).add(jl),d}intersectSphere(e,t){hi.subVectors(e.center,this.origin);const n=hi.dot(this.direction),i=hi.dot(hi)-n*n,s=e.radius*e.radius;if(i>s)return null;const r=Math.sqrt(s-i),o=n-r,l=n+r;return o<0&&l<0?null:o<0?this.at(l,t):this.at(o,t)}intersectsSphere(e){return this.distanceSqToPoint(e.center)<=e.radius*e.radius}distanceToPlane(e){const t=e.normal.dot(this.direction);if(t===0)return e.distanceToPoint(this.origin)===0?0:null;const n=-(this.origin.dot(e.normal)+e.constant)/t;return n>=0?n:null}intersectPlane(e,t){const n=this.distanceToPlane(e);return n===null?null:this.at(n,t)}intersectsPlane(e){const t=e.distanceToPoint(this.origin);return t===0||e.normal.dot(this.direction)*t<0}intersectBox(e,t){let n,i,s,r,o,l;const c=1/this.direction.x,h=1/this.direction.y,u=1/this.direction.z,f=this.origin;return c>=0?(n=(e.min.x-f.x)*c,i=(e.max.x-f.x)*c):(n=(e.max.x-f.x)*c,i=(e.min.x-f.x)*c),h>=0?(s=(e.min.y-f.y)*h,r=(e.max.y-f.y)*h):(s=(e.max.y-f.y)*h,r=(e.min.y-f.y)*h),n>r||s>i||((s>n||n!==n)&&(n=s),(r<i||i!==i)&&(i=r),u>=0?(o=(e.min.z-f.z)*u,l=(e.max.z-f.z)*u):(o=(e.max.z-f.z)*u,l=(e.min.z-f.z)*u),n>l||o>i)||((o>n||n!==n)&&(n=o),(l<i||i!==i)&&(i=l),i<0)?null:this.at(n>=0?n:i,t)}intersectsBox(e){return this.intersectBox(e,hi)!==null}intersectTriangle(e,t,n,i,s){Yl.subVectors(t,e),ca.subVectors(n,e),Zl.crossVectors(Yl,ca);let r=this.direction.dot(Zl),o;if(r>0){if(i)return null;o=1}else if(r<0)o=-1,r=-r;else return null;Fi.subVectors(this.origin,e);const l=o*this.direction.dot(ca.crossVectors(Fi,ca));if(l<0)return null;const c=o*this.direction.dot(Yl.cross(Fi));if(c<0||l+c>r)return null;const h=-o*Fi.dot(Zl);return h<0?null:this.at(h/r,s)}applyMatrix4(e){return this.origin.applyMatrix4(e),this.direction.transformDirection(e),this}equals(e){return e.origin.equals(this.origin)&&e.direction.equals(this.direction)}clone(){return new this.constructor().copy(this)}}class Ne{constructor(){Ne.prototype.isMatrix4=!0,this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]}set(e,t,n,i,s,r,o,l,c,h,u,f,d,p,m,g){const y=this.elements;return y[0]=e,y[4]=t,y[8]=n,y[12]=i,y[1]=s,y[5]=r,y[9]=o,y[13]=l,y[2]=c,y[6]=h,y[10]=u,y[14]=f,y[3]=d,y[7]=p,y[11]=m,y[15]=g,this}identity(){return this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1),this}clone(){return new Ne().fromArray(this.elements)}copy(e){const t=this.elements,n=e.elements;return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],this}copyPosition(e){const t=this.elements,n=e.elements;return t[12]=n[12],t[13]=n[13],t[14]=n[14],this}setFromMatrix3(e){const t=e.elements;return this.set(t[0],t[3],t[6],0,t[1],t[4],t[7],0,t[2],t[5],t[8],0,0,0,0,1),this}extractBasis(e,t,n){return e.setFromMatrixColumn(this,0),t.setFromMatrixColumn(this,1),n.setFromMatrixColumn(this,2),this}makeBasis(e,t,n){return this.set(e.x,t.x,n.x,0,e.y,t.y,n.y,0,e.z,t.z,n.z,0,0,0,0,1),this}extractRotation(e){const t=this.elements,n=e.elements,i=1/$s.setFromMatrixColumn(e,0).length(),s=1/$s.setFromMatrixColumn(e,1).length(),r=1/$s.setFromMatrixColumn(e,2).length();return t[0]=n[0]*i,t[1]=n[1]*i,t[2]=n[2]*i,t[3]=0,t[4]=n[4]*s,t[5]=n[5]*s,t[6]=n[6]*s,t[7]=0,t[8]=n[8]*r,t[9]=n[9]*r,t[10]=n[10]*r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,this}makeRotationFromEuler(e){const t=this.elements,n=e.x,i=e.y,s=e.z,r=Math.cos(n),o=Math.sin(n),l=Math.cos(i),c=Math.sin(i),h=Math.cos(s),u=Math.sin(s);if(e.order===\"XYZ\"){const f=r*h,d=r*u,p=o*h,m=o*u;t[0]=l*h,t[4]=-l*u,t[8]=c,t[1]=d+p*c,t[5]=f-m*c,t[9]=-o*l,t[2]=m-f*c,t[6]=p+d*c,t[10]=r*l}else if(e.order===\"YXZ\"){const f=l*h,d=l*u,p=c*h,m=c*u;t[0]=f+m*o,t[4]=p*o-d,t[8]=r*c,t[1]=r*u,t[5]=r*h,t[9]=-o,t[2]=d*o-p,t[6]=m+f*o,t[10]=r*l}else if(e.order===\"ZXY\"){const f=l*h,d=l*u,p=c*h,m=c*u;t[0]=f-m*o,t[4]=-r*u,t[8]=p+d*o,t[1]=d+p*o,t[5]=r*h,t[9]=m-f*o,t[2]=-r*c,t[6]=o,t[10]=r*l}else if(e.order===\"ZYX\"){const f=r*h,d=r*u,p=o*h,m=o*u;t[0]=l*h,t[4]=p*c-d,t[8]=f*c+m,t[1]=l*u,t[5]=m*c+f,t[9]=d*c-p,t[2]=-c,t[6]=o*l,t[10]=r*l}else if(e.order===\"YZX\"){const f=r*l,d=r*c,p=o*l,m=o*c;t[0]=l*h,t[4]=m-f*u,t[8]=p*u+d,t[1]=u,t[5]=r*h,t[9]=-o*h,t[2]=-c*h,t[6]=d*u+p,t[10]=f-m*u}else if(e.order===\"XZY\"){const f=r*l,d=r*c,p=o*l,m=o*c;t[0]=l*h,t[4]=-u,t[8]=c*h,t[1]=f*u+m,t[5]=r*h,t[9]=d*u-p,t[2]=p*u-d,t[6]=o*h,t[10]=m*u+f}return t[3]=0,t[7]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,this}makeRotationFromQuaternion(e){return this.compose(e0,e,t0)}lookAt(e,t,n){const i=this.elements;return Sn.subVectors(e,t),Sn.lengthSq()===0&&(Sn.z=1),Sn.normalize(),Ni.crossVectors(n,Sn),Ni.lengthSq()===0&&(Math.abs(n.z)===1?Sn.x+=1e-4:Sn.z+=1e-4,Sn.normalize(),Ni.crossVectors(n,Sn)),Ni.normalize(),ua.crossVectors(Sn,Ni),i[0]=Ni.x,i[4]=ua.x,i[8]=Sn.x,i[1]=Ni.y,i[5]=ua.y,i[9]=Sn.y,i[2]=Ni.z,i[6]=ua.z,i[10]=Sn.z,this}multiply(e){return this.multiplyMatrices(this,e)}premultiply(e){return this.multiplyMatrices(e,this)}multiplyMatrices(e,t){const n=e.elements,i=t.elements,s=this.elements,r=n[0],o=n[4],l=n[8],c=n[12],h=n[1],u=n[5],f=n[9],d=n[13],p=n[2],m=n[6],g=n[10],y=n[14],x=n[3],b=n[7],v=n[11],M=n[15],T=i[0],C=i[4],_=i[8],E=i[12],F=i[1],U=i[5],q=i[9],K=i[13],G=i[2],X=i[6],O=i[10],j=i[14],Y=i[3],W=i[7],Z=i[11],ee=i[15];return s[0]=r*T+o*F+l*G+c*Y,s[4]=r*C+o*U+l*X+c*W,s[8]=r*_+o*q+l*O+c*Z,s[12]=r*E+o*K+l*j+c*ee,s[1]=h*T+u*F+f*G+d*Y,s[5]=h*C+u*U+f*X+d*W,s[9]=h*_+u*q+f*O+d*Z,s[13]=h*E+u*K+f*j+d*ee,s[2]=p*T+m*F+g*G+y*Y,s[6]=p*C+m*U+g*X+y*W,s[10]=p*_+m*q+g*O+y*Z,s[14]=p*E+m*K+g*j+y*ee,s[3]=x*T+b*F+v*G+M*Y,s[7]=x*C+b*U+v*X+M*W,s[11]=x*_+b*q+v*O+M*Z,s[15]=x*E+b*K+v*j+M*ee,this}multiplyScalar(e){const t=this.elements;return t[0]*=e,t[4]*=e,t[8]*=e,t[12]*=e,t[1]*=e,t[5]*=e,t[9]*=e,t[13]*=e,t[2]*=e,t[6]*=e,t[10]*=e,t[14]*=e,t[3]*=e,t[7]*=e,t[11]*=e,t[15]*=e,this}determinant(){const e=this.elements,t=e[0],n=e[4],i=e[8],s=e[12],r=e[1],o=e[5],l=e[9],c=e[13],h=e[2],u=e[6],f=e[10],d=e[14],p=e[3],m=e[7],g=e[11],y=e[15];return p*(+s*l*u-i*c*u-s*o*f+n*c*f+i*o*d-n*l*d)+m*(+t*l*d-t*c*f+s*r*f-i*r*d+i*c*h-s*l*h)+g*(+t*c*u-t*o*d-s*r*u+n*r*d+s*o*h-n*c*h)+y*(-i*o*h-t*l*u+t*o*f+i*r*u-n*r*f+n*l*h)}transpose(){const e=this.elements;let t;return t=e[1],e[1]=e[4],e[4]=t,t=e[2],e[2]=e[8],e[8]=t,t=e[6],e[6]=e[9],e[9]=t,t=e[3],e[3]=e[12],e[12]=t,t=e[7],e[7]=e[13],e[13]=t,t=e[11],e[11]=e[14],e[14]=t,this}setPosition(e,t,n){const i=this.elements;return e.isVector3?(i[12]=e.x,i[13]=e.y,i[14]=e.z):(i[12]=e,i[13]=t,i[14]=n),this}invert(){const e=this.elements,t=e[0],n=e[1],i=e[2],s=e[3],r=e[4],o=e[5],l=e[6],c=e[7],h=e[8],u=e[9],f=e[10],d=e[11],p=e[12],m=e[13],g=e[14],y=e[15],x=u*g*c-m*f*c+m*l*d-o*g*d-u*l*y+o*f*y,b=p*f*c-h*g*c-p*l*d+r*g*d+h*l*y-r*f*y,v=h*m*c-p*u*c+p*o*d-r*m*d-h*o*y+r*u*y,M=p*u*l-h*m*l-p*o*f+r*m*f+h*o*g-r*u*g,T=t*x+n*b+i*v+s*M;if(T===0)return this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);const C=1/T;return e[0]=x*C,e[1]=(m*f*s-u*g*s-m*i*d+n*g*d+u*i*y-n*f*y)*C,e[2]=(o*g*s-m*l*s+m*i*c-n*g*c-o*i*y+n*l*y)*C,e[3]=(u*l*s-o*f*s-u*i*c+n*f*c+o*i*d-n*l*d)*C,e[4]=b*C,e[5]=(h*g*s-p*f*s+p*i*d-t*g*d-h*i*y+t*f*y)*C,e[6]=(p*l*s-r*g*s-p*i*c+t*g*c+r*i*y-t*l*y)*C,e[7]=(r*f*s-h*l*s+h*i*c-t*f*c-r*i*d+t*l*d)*C,e[8]=v*C,e[9]=(p*u*s-h*m*s-p*n*d+t*m*d+h*n*y-t*u*y)*C,e[10]=(r*m*s-p*o*s+p*n*c-t*m*c-r*n*y+t*o*y)*C,e[11]=(h*o*s-r*u*s-h*n*c+t*u*c+r*n*d-t*o*d)*C,e[12]=M*C,e[13]=(h*m*i-p*u*i+p*n*f-t*m*f-h*n*g+t*u*g)*C,e[14]=(p*o*i-r*m*i-p*n*l+t*m*l+r*n*g-t*o*g)*C,e[15]=(r*u*i-h*o*i+h*n*l-t*u*l-r*n*f+t*o*f)*C,this}scale(e){const t=this.elements,n=e.x,i=e.y,s=e.z;return t[0]*=n,t[4]*=i,t[8]*=s,t[1]*=n,t[5]*=i,t[9]*=s,t[2]*=n,t[6]*=i,t[10]*=s,t[3]*=n,t[7]*=i,t[11]*=s,this}getMaxScaleOnAxis(){const e=this.elements,t=e[0]*e[0]+e[1]*e[1]+e[2]*e[2],n=e[4]*e[4]+e[5]*e[5]+e[6]*e[6],i=e[8]*e[8]+e[9]*e[9]+e[10]*e[10];return Math.sqrt(Math.max(t,n,i))}makeTranslation(e,t,n){return this.set(1,0,0,e,0,1,0,t,0,0,1,n,0,0,0,1),this}makeRotationX(e){const t=Math.cos(e),n=Math.sin(e);return this.set(1,0,0,0,0,t,-n,0,0,n,t,0,0,0,0,1),this}makeRotationY(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,0,n,0,0,1,0,0,-n,0,t,0,0,0,0,1),this}makeRotationZ(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,-n,0,0,n,t,0,0,0,0,1,0,0,0,0,1),this}makeRotationAxis(e,t){const n=Math.cos(t),i=Math.sin(t),s=1-n,r=e.x,o=e.y,l=e.z,c=s*r,h=s*o;return this.set(c*r+n,c*o-i*l,c*l+i*o,0,c*o+i*l,h*o+n,h*l-i*r,0,c*l-i*o,h*l+i*r,s*l*l+n,0,0,0,0,1),this}makeScale(e,t,n){return this.set(e,0,0,0,0,t,0,0,0,0,n,0,0,0,0,1),this}makeShear(e,t,n,i,s,r){return this.set(1,n,s,0,e,1,r,0,t,i,1,0,0,0,0,1),this}compose(e,t,n){const i=this.elements,s=t._x,r=t._y,o=t._z,l=t._w,c=s+s,h=r+r,u=o+o,f=s*c,d=s*h,p=s*u,m=r*h,g=r*u,y=o*u,x=l*c,b=l*h,v=l*u,M=n.x,T=n.y,C=n.z;return i[0]=(1-(m+y))*M,i[1]=(d+v)*M,i[2]=(p-b)*M,i[3]=0,i[4]=(d-v)*T,i[5]=(1-(f+y))*T,i[6]=(g+x)*T,i[7]=0,i[8]=(p+b)*C,i[9]=(g-x)*C,i[10]=(1-(f+m))*C,i[11]=0,i[12]=e.x,i[13]=e.y,i[14]=e.z,i[15]=1,this}decompose(e,t,n){const i=this.elements;let s=$s.set(i[0],i[1],i[2]).length();const r=$s.set(i[4],i[5],i[6]).length(),o=$s.set(i[8],i[9],i[10]).length();this.determinant()<0&&(s=-s),e.x=i[12],e.y=i[13],e.z=i[14],Wn.copy(this);const c=1/s,h=1/r,u=1/o;return Wn.elements[0]*=c,Wn.elements[1]*=c,Wn.elements[2]*=c,Wn.elements[4]*=h,Wn.elements[5]*=h,Wn.elements[6]*=h,Wn.elements[8]*=u,Wn.elements[9]*=u,Wn.elements[10]*=u,t.setFromRotationMatrix(Wn),n.x=s,n.y=r,n.z=o,this}makePerspective(e,t,n,i,s,r){const o=this.elements,l=2*s/(t-e),c=2*s/(n-i),h=(t+e)/(t-e),u=(n+i)/(n-i),f=-(r+s)/(r-s),d=-2*r*s/(r-s);return o[0]=l,o[4]=0,o[8]=h,o[12]=0,o[1]=0,o[5]=c,o[9]=u,o[13]=0,o[2]=0,o[6]=0,o[10]=f,o[14]=d,o[3]=0,o[7]=0,o[11]=-1,o[15]=0,this}makeOrthographic(e,t,n,i,s,r){const o=this.elements,l=1/(t-e),c=1/(n-i),h=1/(r-s),u=(t+e)*l,f=(n+i)*c,d=(r+s)*h;return o[0]=2*l,o[4]=0,o[8]=0,o[12]=-u,o[1]=0,o[5]=2*c,o[9]=0,o[13]=-f,o[2]=0,o[6]=0,o[10]=-2*h,o[14]=-d,o[3]=0,o[7]=0,o[11]=0,o[15]=1,this}equals(e){const t=this.elements,n=e.elements;for(let i=0;i<16;i++)if(t[i]!==n[i])return!1;return!0}fromArray(e,t=0){for(let n=0;n<16;n++)this.elements[n]=e[n+t];return this}toArray(e=[],t=0){const n=this.elements;return e[t]=n[0],e[t+1]=n[1],e[t+2]=n[2],e[t+3]=n[3],e[t+4]=n[4],e[t+5]=n[5],e[t+6]=n[6],e[t+7]=n[7],e[t+8]=n[8],e[t+9]=n[9],e[t+10]=n[10],e[t+11]=n[11],e[t+12]=n[12],e[t+13]=n[13],e[t+14]=n[14],e[t+15]=n[15],e}}const $s=new I,Wn=new Ne,e0=new I(0,0,0),t0=new I(1,1,1),Ni=new I,ua=new I,Sn=new I,Mh=new Ne,Sh=new Bt;class Nn{constructor(e=0,t=0,n=0,i=Nn.DefaultOrder){this.isEuler=!0,this._x=e,this._y=t,this._z=n,this._order=i}get x(){return this._x}set x(e){this._x=e,this._onChangeCallback()}get y(){return this._y}set y(e){this._y=e,this._onChangeCallback()}get z(){return this._z}set z(e){this._z=e,this._onChangeCallback()}get order(){return this._order}set order(e){this._order=e,this._onChangeCallback()}set(e,t,n,i=this._order){return this._x=e,this._y=t,this._z=n,this._order=i,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._order)}copy(e){return this._x=e._x,this._y=e._y,this._z=e._z,this._order=e._order,this._onChangeCallback(),this}setFromRotationMatrix(e,t=this._order,n=!0){const i=e.elements,s=i[0],r=i[4],o=i[8],l=i[1],c=i[5],h=i[9],u=i[2],f=i[6],d=i[10];switch(t){case\"XYZ\":this._y=Math.asin(Vt(o,-1,1)),Math.abs(o)<.9999999?(this._x=Math.atan2(-h,d),this._z=Math.atan2(-r,s)):(this._x=Math.atan2(f,c),this._z=0);break;case\"YXZ\":this._x=Math.asin(-Vt(h,-1,1)),Math.abs(h)<.9999999?(this._y=Math.atan2(o,d),this._z=Math.atan2(l,c)):(this._y=Math.atan2(-u,s),this._z=0);break;case\"ZXY\":this._x=Math.asin(Vt(f,-1,1)),Math.abs(f)<.9999999?(this._y=Math.atan2(-u,d),this._z=Math.atan2(-r,c)):(this._y=0,this._z=Math.atan2(l,s));break;case\"ZYX\":this._y=Math.asin(-Vt(u,-1,1)),Math.abs(u)<.9999999?(this._x=Math.atan2(f,d),this._z=Math.atan2(l,s)):(this._x=0,this._z=Math.atan2(-r,c));break;case\"YZX\":this._z=Math.asin(Vt(l,-1,1)),Math.abs(l)<.9999999?(this._x=Math.atan2(-h,c),this._y=Math.atan2(-u,s)):(this._x=0,this._y=Math.atan2(o,d));break;case\"XZY\":this._z=Math.asin(-Vt(r,-1,1)),Math.abs(r)<.9999999?(this._x=Math.atan2(f,c),this._y=Math.atan2(o,s)):(this._x=Math.atan2(-h,d),this._y=0);break;default:console.warn(\"THREE.Euler: .setFromRotationMatrix() encountered an unknown order: \"+t)}return this._order=t,n===!0&&this._onChangeCallback(),this}setFromQuaternion(e,t,n){return Mh.makeRotationFromQuaternion(e),this.setFromRotationMatrix(Mh,t,n)}setFromVector3(e,t=this._order){return this.set(e.x,e.y,e.z,t)}reorder(e){return Sh.setFromEuler(this),this.setFromQuaternion(Sh,e)}equals(e){return e._x===this._x&&e._y===this._y&&e._z===this._z&&e._order===this._order}fromArray(e){return this._x=e[0],this._y=e[1],this._z=e[2],e[3]!==void 0&&(this._order=e[3]),this._onChangeCallback(),this}toArray(e=[],t=0){return e[t]=this._x,e[t+1]=this._y,e[t+2]=this._z,e[t+3]=this._order,e}_onChange(e){return this._onChangeCallback=e,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._order}toVector3(){console.error(\"THREE.Euler: .toVector3() has been removed. Use Vector3.setFromEuler() instead\")}}Nn.DefaultOrder=\"XYZ\";Nn.RotationOrders=[\"XYZ\",\"YZX\",\"ZXY\",\"XZY\",\"YXZ\",\"ZYX\"];class _l{constructor(){this.mask=1}set(e){this.mask=(1<<e|0)>>>0}enable(e){this.mask|=1<<e|0}enableAll(){this.mask=-1}toggle(e){this.mask^=1<<e|0}disable(e){this.mask&=~(1<<e|0)}disableAll(){this.mask=0}test(e){return(this.mask&e.mask)!==0}isEnabled(e){return(this.mask&(1<<e|0))!==0}}let n0=0;const Th=new I,Qs=new Bt,fi=new Ne,ha=new I,no=new I,i0=new I,s0=new Bt,Ah=new I(1,0,0),Eh=new I(0,1,0),Ch=new I(0,0,1),r0={type:\"added\"},Lh={type:\"removed\"};class pt extends ai{constructor(){super(),this.isObject3D=!0,Object.defineProperty(this,\"id\",{value:n0++}),this.uuid=En(),this.name=\"\",this.type=\"Object3D\",this.parent=null,this.children=[],this.up=pt.DefaultUp.clone();const e=new I,t=new Nn,n=new Bt,i=new I(1,1,1);function s(){n.setFromEuler(t,!1)}function r(){t.setFromQuaternion(n,void 0,!1)}t._onChange(s),n._onChange(r),Object.defineProperties(this,{position:{configurable:!0,enumerable:!0,value:e},rotation:{configurable:!0,enumerable:!0,value:t},quaternion:{configurable:!0,enumerable:!0,value:n},scale:{configurable:!0,enumerable:!0,value:i},modelViewMatrix:{value:new Ne},normalMatrix:{value:new dn}}),this.matrix=new Ne,this.matrixWorld=new Ne,this.matrixAutoUpdate=pt.DefaultMatrixAutoUpdate,this.matrixWorldNeedsUpdate=!1,this.layers=new _l,this.visible=!0,this.castShadow=!1,this.receiveShadow=!1,this.frustumCulled=!0,this.renderOrder=0,this.animations=[],this.userData={}}onBeforeRender(){}onAfterRender(){}applyMatrix4(e){this.matrixAutoUpdate&&this.updateMatrix(),this.matrix.premultiply(e),this.matrix.decompose(this.position,this.quaternion,this.scale)}applyQuaternion(e){return this.quaternion.premultiply(e),this}setRotationFromAxisAngle(e,t){this.quaternion.setFromAxisAngle(e,t)}setRotationFromEuler(e){this.quaternion.setFromEuler(e,!0)}setRotationFromMatrix(e){this.quaternion.setFromRotationMatrix(e)}setRotationFromQuaternion(e){this.quaternion.copy(e)}rotateOnAxis(e,t){return Qs.setFromAxisAngle(e,t),this.quaternion.multiply(Qs),this}rotateOnWorldAxis(e,t){return Qs.setFromAxisAngle(e,t),this.quaternion.premultiply(Qs),this}rotateX(e){return this.rotateOnAxis(Ah,e)}rotateY(e){return this.rotateOnAxis(Eh,e)}rotateZ(e){return this.rotateOnAxis(Ch,e)}translateOnAxis(e,t){return Th.copy(e).applyQuaternion(this.quaternion),this.position.add(Th.multiplyScalar(t)),this}translateX(e){return this.translateOnAxis(Ah,e)}translateY(e){return this.translateOnAxis(Eh,e)}translateZ(e){return this.translateOnAxis(Ch,e)}localToWorld(e){return e.applyMatrix4(this.matrixWorld)}worldToLocal(e){return e.applyMatrix4(fi.copy(this.matrixWorld).invert())}lookAt(e,t,n){e.isVector3?ha.copy(e):ha.set(e,t,n);const i=this.parent;this.updateWorldMatrix(!0,!1),no.setFromMatrixPosition(this.matrixWorld),this.isCamera||this.isLight?fi.lookAt(no,ha,this.up):fi.lookAt(ha,no,this.up),this.quaternion.setFromRotationMatrix(fi),i&&(fi.extractRotation(i.matrixWorld),Qs.setFromRotationMatrix(fi),this.quaternion.premultiply(Qs.invert()))}add(e){if(arguments.length>1){for(let t=0;t<arguments.length;t++)this.add(arguments[t]);return this}return e===this?(console.error(\"THREE.Object3D.add: object can't be added as a child of itself.\",e),this):(e&&e.isObject3D?(e.parent!==null&&e.parent.remove(e),e.parent=this,this.children.push(e),e.dispatchEvent(r0)):console.error(\"THREE.Object3D.add: object not an instance of THREE.Object3D.\",e),this)}remove(e){if(arguments.length>1){for(let n=0;n<arguments.length;n++)this.remove(arguments[n]);return this}const t=this.children.indexOf(e);return t!==-1&&(e.parent=null,this.children.splice(t,1),e.dispatchEvent(Lh)),this}removeFromParent(){const e=this.parent;return e!==null&&e.remove(this),this}clear(){for(let e=0;e<this.children.length;e++){const t=this.children[e];t.parent=null,t.dispatchEvent(Lh)}return this.children.length=0,this}attach(e){return this.updateWorldMatrix(!0,!1),fi.copy(this.matrixWorld).invert(),e.parent!==null&&(e.parent.updateWorldMatrix(!0,!1),fi.multiply(e.parent.matrixWorld)),e.applyMatrix4(fi),this.add(e),e.updateWorldMatrix(!1,!0),this}getObjectById(e){return this.getObjectByProperty(\"id\",e)}getObjectByName(e){return this.getObjectByProperty(\"name\",e)}getObjectByProperty(e,t){if(this[e]===t)return this;for(let n=0,i=this.children.length;n<i;n++){const r=this.children[n].getObjectByProperty(e,t);if(r!==void 0)return r}}getWorldPosition(e){return this.updateWorldMatrix(!0,!1),e.setFromMatrixPosition(this.matrixWorld)}getWorldQuaternion(e){return this.updateWorldMatrix(!0,!1),this.matrixWorld.decompose(no,e,i0),e}getWorldScale(e){return this.updateWorldMatrix(!0,!1),this.matrixWorld.decompose(no,s0,e),e}getWorldDirection(e){this.updateWorldMatrix(!0,!1);const t=this.matrixWorld.elements;return e.set(t[8],t[9],t[10]).normalize()}raycast(){}traverse(e){e(this);const t=this.children;for(let n=0,i=t.length;n<i;n++)t[n].traverse(e)}traverseVisible(e){if(this.visible===!1)return;e(this);const t=this.children;for(let n=0,i=t.length;n<i;n++)t[n].traverseVisible(e)}traverseAncestors(e){const t=this.parent;t!==null&&(e(t),t.traverseAncestors(e))}updateMatrix(){this.matrix.compose(this.position,this.quaternion,this.scale),this.matrixWorldNeedsUpdate=!0}updateMatrixWorld(e){this.matrixAutoUpdate&&this.updateMatrix(),(this.matrixWorldNeedsUpdate||e)&&(this.parent===null?this.matrixWorld.copy(this.matrix):this.matrixWorld.multiplyMatrices(this.parent.matrixWorld,this.matrix),this.matrixWorldNeedsUpdate=!1,e=!0);const t=this.children;for(let n=0,i=t.length;n<i;n++)t[n].updateMatrixWorld(e)}updateWorldMatrix(e,t){const n=this.parent;if(e===!0&&n!==null&&n.updateWorldMatrix(!0,!1),this.matrixAutoUpdate&&this.updateMatrix(),this.parent===null?this.matrixWorld.copy(this.matrix):this.matrixWorld.multiplyMatrices(this.parent.matrixWorld,this.matrix),t===!0){const i=this.children;for(let s=0,r=i.length;s<r;s++)i[s].updateWorldMatrix(!1,!0)}}toJSON(e){const t=e===void 0||typeof e==\"string\",n={};t&&(e={geometries:{},materials:{},textures:{},images:{},shapes:{},skeletons:{},animations:{},nodes:{}},n.metadata={version:4.5,type:\"Object\",generator:\"Object3D.toJSON\"});const i={};i.uuid=this.uuid,i.type=this.type,this.name!==\"\"&&(i.name=this.name),this.castShadow===!0&&(i.castShadow=!0),this.receiveShadow===!0&&(i.receiveShadow=!0),this.visible===!1&&(i.visible=!1),this.frustumCulled===!1&&(i.frustumCulled=!1),this.renderOrder!==0&&(i.renderOrder=this.renderOrder),JSON.stringify(this.userData)!==\"{}\"&&(i.userData=this.userData),i.layers=this.layers.mask,i.matrix=this.matrix.toArray(),this.matrixAutoUpdate===!1&&(i.matrixAutoUpdate=!1),this.isInstancedMesh&&(i.type=\"InstancedMesh\",i.count=this.count,i.instanceMatrix=this.instanceMatrix.toJSON(),this.instanceColor!==null&&(i.instanceColor=this.instanceColor.toJSON()));function s(o,l){return o[l.uuid]===void 0&&(o[l.uuid]=l.toJSON(e)),l.uuid}if(this.isScene)this.background&&(this.background.isColor?i.background=this.background.toJSON():this.background.isTexture&&(i.background=this.background.toJSON(e).uuid)),this.environment&&this.environment.isTexture&&this.environment.isRenderTargetTexture!==!0&&(i.environment=this.environment.toJSON(e).uuid);else if(this.isMesh||this.isLine||this.isPoints){i.geometry=s(e.geometries,this.geometry);const o=this.geometry.parameters;if(o!==void 0&&o.shapes!==void 0){const l=o.shapes;if(Array.isArray(l))for(let c=0,h=l.length;c<h;c++){const u=l[c];s(e.shapes,u)}else s(e.shapes,l)}}if(this.isSkinnedMesh&&(i.bindMode=this.bindMode,i.bindMatrix=this.bindMatrix.toArray(),this.skeleton!==void 0&&(s(e.skeletons,this.skeleton),i.skeleton=this.skeleton.uuid)),this.material!==void 0)if(Array.isArray(this.material)){const o=[];for(let l=0,c=this.material.length;l<c;l++)o.push(s(e.materials,this.material[l]));i.material=o}else i.material=s(e.materials,this.material);if(this.children.length>0){i.children=[];for(let o=0;o<this.children.length;o++)i.children.push(this.children[o].toJSON(e).object)}if(this.animations.length>0){i.animations=[];for(let o=0;o<this.animations.length;o++){const l=this.animations[o];i.animations.push(s(e.animations,l))}}if(t){const o=r(e.geometries),l=r(e.materials),c=r(e.textures),h=r(e.images),u=r(e.shapes),f=r(e.skeletons),d=r(e.animations),p=r(e.nodes);o.length>0&&(n.geometries=o),l.length>0&&(n.materials=l),c.length>0&&(n.textures=c),h.length>0&&(n.images=h),u.length>0&&(n.shapes=u),f.length>0&&(n.skeletons=f),d.length>0&&(n.animations=d),p.length>0&&(n.nodes=p)}return n.object=i,n;function r(o){const l=[];for(const c in o){const h=o[c];delete h.metadata,l.push(h)}return l}}clone(e){return new this.constructor().copy(this,e)}copy(e,t=!0){if(this.name=e.name,this.up.copy(e.up),this.position.copy(e.position),this.rotation.order=e.rotation.order,this.quaternion.copy(e.quaternion),this.scale.copy(e.scale),this.matrix.copy(e.matrix),this.matrixWorld.copy(e.matrixWorld),this.matrixAutoUpdate=e.matrixAutoUpdate,this.matrixWorldNeedsUpdate=e.matrixWorldNeedsUpdate,this.layers.mask=e.layers.mask,this.visible=e.visible,this.castShadow=e.castShadow,this.receiveShadow=e.receiveShadow,this.frustumCulled=e.frustumCulled,this.renderOrder=e.renderOrder,this.userData=JSON.parse(JSON.stringify(e.userData)),t===!0)for(let n=0;n<e.children.length;n++){const i=e.children[n];this.add(i.clone())}return this}}pt.DefaultUp=new I(0,1,0);pt.DefaultMatrixAutoUpdate=!0;const qn=new I,di=new I,Kl=new I,pi=new I,er=new I,tr=new I,Rh=new I,Jl=new I,$l=new I,Ql=new I;class Fn{constructor(e=new I,t=new I,n=new I){this.a=e,this.b=t,this.c=n}static getNormal(e,t,n,i){i.subVectors(n,t),qn.subVectors(e,t),i.cross(qn);const s=i.lengthSq();return s>0?i.multiplyScalar(1/Math.sqrt(s)):i.set(0,0,0)}static getBarycoord(e,t,n,i,s){qn.subVectors(i,t),di.subVectors(n,t),Kl.subVectors(e,t);const r=qn.dot(qn),o=qn.dot(di),l=qn.dot(Kl),c=di.dot(di),h=di.dot(Kl),u=r*c-o*o;if(u===0)return s.set(-2,-1,-1);const f=1/u,d=(c*l-o*h)*f,p=(r*h-o*l)*f;return s.set(1-d-p,p,d)}static containsPoint(e,t,n,i){return this.getBarycoord(e,t,n,i,pi),pi.x>=0&&pi.y>=0&&pi.x+pi.y<=1}static getUV(e,t,n,i,s,r,o,l){return this.getBarycoord(e,t,n,i,pi),l.set(0,0),l.addScaledVector(s,pi.x),l.addScaledVector(r,pi.y),l.addScaledVector(o,pi.z),l}static isFrontFacing(e,t,n,i){return qn.subVectors(n,t),di.subVectors(e,t),qn.cross(di).dot(i)<0}set(e,t,n){return this.a.copy(e),this.b.copy(t),this.c.copy(n),this}setFromPointsAndIndices(e,t,n,i){return this.a.copy(e[t]),this.b.copy(e[n]),this.c.copy(e[i]),this}setFromAttributeAndIndices(e,t,n,i){return this.a.fromBufferAttribute(e,t),this.b.fromBufferAttribute(e,n),this.c.fromBufferAttribute(e,i),this}clone(){return new this.constructor().copy(this)}copy(e){return this.a.copy(e.a),this.b.copy(e.b),this.c.copy(e.c),this}getArea(){return qn.subVectors(this.c,this.b),di.subVectors(this.a,this.b),qn.cross(di).length()*.5}getMidpoint(e){return e.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)}getNormal(e){return Fn.getNormal(this.a,this.b,this.c,e)}getPlane(e){return e.setFromCoplanarPoints(this.a,this.b,this.c)}getBarycoord(e,t){return Fn.getBarycoord(e,this.a,this.b,this.c,t)}getUV(e,t,n,i,s){return Fn.getUV(e,this.a,this.b,this.c,t,n,i,s)}containsPoint(e){return Fn.containsPoint(e,this.a,this.b,this.c)}isFrontFacing(e){return Fn.isFrontFacing(this.a,this.b,this.c,e)}intersectsBox(e){return e.intersectsTriangle(this)}closestPointToPoint(e,t){const n=this.a,i=this.b,s=this.c;let r,o;er.subVectors(i,n),tr.subVectors(s,n),Jl.subVectors(e,n);const l=er.dot(Jl),c=tr.dot(Jl);if(l<=0&&c<=0)return t.copy(n);$l.subVectors(e,i);const h=er.dot($l),u=tr.dot($l);if(h>=0&&u<=h)return t.copy(i);const f=l*u-h*c;if(f<=0&&l>=0&&h<=0)return r=l/(l-h),t.copy(n).addScaledVector(er,r);Ql.subVectors(e,s);const d=er.dot(Ql),p=tr.dot(Ql);if(p>=0&&d<=p)return t.copy(s);const m=d*c-l*p;if(m<=0&&c>=0&&p<=0)return o=c/(c-p),t.copy(n).addScaledVector(tr,o);const g=h*p-d*u;if(g<=0&&u-h>=0&&d-p>=0)return Rh.subVectors(s,i),o=(u-h)/(u-h+(d-p)),t.copy(i).addScaledVector(Rh,o);const y=1/(g+m+f);return r=m*y,o=f*y,t.copy(n).addScaledVector(er,r).addScaledVector(tr,o)}equals(e){return e.a.equals(this.a)&&e.b.equals(this.b)&&e.c.equals(this.c)}}let o0=0;class Wt extends ai{constructor(){super(),this.isMaterial=!0,Object.defineProperty(this,\"id\",{value:o0++}),this.uuid=En(),this.name=\"\",this.type=\"Material\",this.blending=Ts,this.side=bi,this.vertexColors=!1,this.opacity=1,this.transparent=!1,this.blendSrc=Mu,this.blendDst=Su,this.blendEquation=vs,this.blendSrcAlpha=null,this.blendDstAlpha=null,this.blendEquationAlpha=null,this.depthFunc=il,this.depthTest=!0,this.depthWrite=!0,this.stencilWriteMask=255,this.stencilFunc=lp,this.stencilRef=0,this.stencilFuncMask=255,this.stencilFail=Ka,this.stencilZFail=Ka,this.stencilZPass=Ka,this.stencilWrite=!1,this.clippingPlanes=null,this.clipIntersection=!1,this.clipShadows=!1,this.shadowSide=null,this.colorWrite=!0,this.precision=null,this.polygonOffset=!1,this.polygonOffsetFactor=0,this.polygonOffsetUnits=0,this.dithering=!1,this.alphaToCoverage=!1,this.premultipliedAlpha=!1,this.visible=!0,this.toneMapped=!0,this.userData={},this.version=0,this._alphaTest=0}get alphaTest(){return this._alphaTest}set alphaTest(e){this._alphaTest>0!=e>0&&this.version++,this._alphaTest=e}onBuild(){}onBeforeRender(){}onBeforeCompile(){}customProgramCacheKey(){return this.onBeforeCompile.toString()}setValues(e){if(e!==void 0)for(const t in e){const n=e[t];if(n===void 0){console.warn(\"THREE.Material: '\"+t+\"' parameter is undefined.\");continue}if(t===\"shading\"){console.warn(\"THREE.\"+this.type+\": .shading has been removed. Use the boolean .flatShading instead.\"),this.flatShading=n===pd;continue}const i=this[t];if(i===void 0){console.warn(\"THREE.\"+this.type+\": '\"+t+\"' is not a property of this material.\");continue}i&&i.isColor?i.set(n):i&&i.isVector3&&n&&n.isVector3?i.copy(n):this[t]=n}}toJSON(e){const t=e===void 0||typeof e==\"string\";t&&(e={textures:{},images:{}});const n={metadata:{version:4.5,type:\"Material\",generator:\"Material.toJSON\"}};n.uuid=this.uuid,n.type=this.type,this.name!==\"\"&&(n.name=this.name),this.color&&this.color.isColor&&(n.color=this.color.getHex()),this.roughness!==void 0&&(n.roughness=this.roughness),this.metalness!==void 0&&(n.metalness=this.metalness),this.sheen!==void 0&&(n.sheen=this.sheen),this.sheenColor&&this.sheenColor.isColor&&(n.sheenColor=this.sheenColor.getHex()),this.sheenRoughness!==void 0&&(n.sheenRoughness=this.sheenRoughness),this.emissive&&this.emissive.isColor&&(n.emissive=this.emissive.getHex()),this.emissiveIntensity&&this.emissiveIntensity!==1&&(n.emissiveIntensity=this.emissiveIntensity),this.specular&&this.specular.isColor&&(n.specular=this.specular.getHex()),this.specularIntensity!==void 0&&(n.specularIntensity=this.specularIntensity),this.specularColor&&this.specularColor.isColor&&(n.specularColor=this.specularColor.getHex()),this.shininess!==void 0&&(n.shininess=this.shininess),this.clearcoat!==void 0&&(n.clearcoat=this.clearcoat),this.clearcoatRoughness!==void 0&&(n.clearcoatRoughness=this.clearcoatRoughness),this.clearcoatMap&&this.clearcoatMap.isTexture&&(n.clearcoatMap=this.clearcoatMap.toJSON(e).uuid),this.clearcoatRoughnessMap&&this.clearcoatRoughnessMap.isTexture&&(n.clearcoatRoughnessMap=this.clearcoatRoughnessMap.toJSON(e).uuid),this.clearcoatNormalMap&&this.clearcoatNormalMap.isTexture&&(n.clearcoatNormalMap=this.clearcoatNormalMap.toJSON(e).uuid,n.clearcoatNormalScale=this.clearcoatNormalScale.toArray()),this.iridescence!==void 0&&(n.iridescence=this.iridescence),this.iridescenceIOR!==void 0&&(n.iridescenceIOR=this.iridescenceIOR),this.iridescenceThicknessRange!==void 0&&(n.iridescenceThicknessRange=this.iridescenceThicknessRange),this.iridescenceMap&&this.iridescenceMap.isTexture&&(n.iridescenceMap=this.iridescenceMap.toJSON(e).uuid),this.iridescenceThicknessMap&&this.iridescenceThicknessMap.isTexture&&(n.iridescenceThicknessMap=this.iridescenceThicknessMap.toJSON(e).uuid),this.map&&this.map.isTexture&&(n.map=this.map.toJSON(e).uuid),this.matcap&&this.matcap.isTexture&&(n.matcap=this.matcap.toJSON(e).uuid),this.alphaMap&&this.alphaMap.isTexture&&(n.alphaMap=this.alphaMap.toJSON(e).uuid),this.lightMap&&this.lightMap.isTexture&&(n.lightMap=this.lightMap.toJSON(e).uuid,n.lightMapIntensity=this.lightMapIntensity),this.aoMap&&this.aoMap.isTexture&&(n.aoMap=this.aoMap.toJSON(e).uuid,n.aoMapIntensity=this.aoMapIntensity),this.bumpMap&&this.bumpMap.isTexture&&(n.bumpMap=this.bumpMap.toJSON(e).uuid,n.bumpScale=this.bumpScale),this.normalMap&&this.normalMap.isTexture&&(n.normalMap=this.normalMap.toJSON(e).uuid,n.normalMapType=this.normalMapType,n.normalScale=this.normalScale.toArray()),this.displacementMap&&this.displacementMap.isTexture&&(n.displacementMap=this.displacementMap.toJSON(e).uuid,n.displacementScale=this.displacementScale,n.displacementBias=this.displacementBias),this.roughnessMap&&this.roughnessMap.isTexture&&(n.roughnessMap=this.roughnessMap.toJSON(e).uuid),this.metalnessMap&&this.metalnessMap.isTexture&&(n.metalnessMap=this.metalnessMap.toJSON(e).uuid),this.emissiveMap&&this.emissiveMap.isTexture&&(n.emissiveMap=this.emissiveMap.toJSON(e).uuid),this.specularMap&&this.specularMap.isTexture&&(n.specularMap=this.specularMap.toJSON(e).uuid),this.specularIntensityMap&&this.specularIntensityMap.isTexture&&(n.specularIntensityMap=this.specularIntensityMap.toJSON(e).uuid),this.specularColorMap&&this.specularColorMap.isTexture&&(n.specularColorMap=this.specularColorMap.toJSON(e).uuid),this.envMap&&this.envMap.isTexture&&(n.envMap=this.envMap.toJSON(e).uuid,this.combine!==void 0&&(n.combine=this.combine)),this.envMapIntensity!==void 0&&(n.envMapIntensity=this.envMapIntensity),this.reflectivity!==void 0&&(n.reflectivity=this.reflectivity),this.refractionRatio!==void 0&&(n.refractionRatio=this.refractionRatio),this.gradientMap&&this.gradientMap.isTexture&&(n.gradientMap=this.gradientMap.toJSON(e).uuid),this.transmission!==void 0&&(n.transmission=this.transmission),this.transmissionMap&&this.transmissionMap.isTexture&&(n.transmissionMap=this.transmissionMap.toJSON(e).uuid),this.thickness!==void 0&&(n.thickness=this.thickness),this.thicknessMap&&this.thicknessMap.isTexture&&(n.thicknessMap=this.thicknessMap.toJSON(e).uuid),this.attenuationDistance!==void 0&&(n.attenuationDistance=this.attenuationDistance),this.attenuationColor!==void 0&&(n.attenuationColor=this.attenuationColor.getHex()),this.size!==void 0&&(n.size=this.size),this.shadowSide!==null&&(n.shadowSide=this.shadowSide),this.sizeAttenuation!==void 0&&(n.sizeAttenuation=this.sizeAttenuation),this.blending!==Ts&&(n.blending=this.blending),this.side!==bi&&(n.side=this.side),this.vertexColors&&(n.vertexColors=!0),this.opacity<1&&(n.opacity=this.opacity),this.transparent===!0&&(n.transparent=this.transparent),n.depthFunc=this.depthFunc,n.depthTest=this.depthTest,n.depthWrite=this.depthWrite,n.colorWrite=this.colorWrite,n.stencilWrite=this.stencilWrite,n.stencilWriteMask=this.stencilWriteMask,n.stencilFunc=this.stencilFunc,n.stencilRef=this.stencilRef,n.stencilFuncMask=this.stencilFuncMask,n.stencilFail=this.stencilFail,n.stencilZFail=this.stencilZFail,n.stencilZPass=this.stencilZPass,this.rotation!==void 0&&this.rotation!==0&&(n.rotation=this.rotation),this.polygonOffset===!0&&(n.polygonOffset=!0),this.polygonOffsetFactor!==0&&(n.polygonOffsetFactor=this.polygonOffsetFactor),this.polygonOffsetUnits!==0&&(n.polygonOffsetUnits=this.polygonOffsetUnits),this.linewidth!==void 0&&this.linewidth!==1&&(n.linewidth=this.linewidth),this.dashSize!==void 0&&(n.dashSize=this.dashSize),this.gapSize!==void 0&&(n.gapSize=this.gapSize),this.scale!==void 0&&(n.scale=this.scale),this.dithering===!0&&(n.dithering=!0),this.alphaTest>0&&(n.alphaTest=this.alphaTest),this.alphaToCoverage===!0&&(n.alphaToCoverage=this.alphaToCoverage),this.premultipliedAlpha===!0&&(n.premultipliedAlpha=this.premultipliedAlpha),this.wireframe===!0&&(n.wireframe=this.wireframe),this.wireframeLinewidth>1&&(n.wireframeLinewidth=this.wireframeLinewidth),this.wireframeLinecap!==\"round\"&&(n.wireframeLinecap=this.wireframeLinecap),this.wireframeLinejoin!==\"round\"&&(n.wireframeLinejoin=this.wireframeLinejoin),this.flatShading===!0&&(n.flatShading=this.flatShading),this.visible===!1&&(n.visible=!1),this.toneMapped===!1&&(n.toneMapped=!1),this.fog===!1&&(n.fog=!1),JSON.stringify(this.userData)!==\"{}\"&&(n.userData=this.userData);function i(s){const r=[];for(const o in s){const l=s[o];delete l.metadata,r.push(l)}return r}if(t){const s=i(e.textures),r=i(e.images);s.length>0&&(n.textures=s),r.length>0&&(n.images=r)}return n}clone(){return new this.constructor().copy(this)}copy(e){this.name=e.name,this.blending=e.blending,this.side=e.side,this.vertexColors=e.vertexColors,this.opacity=e.opacity,this.transparent=e.transparent,this.blendSrc=e.blendSrc,this.blendDst=e.blendDst,this.blendEquation=e.blendEquation,this.blendSrcAlpha=e.blendSrcAlpha,this.blendDstAlpha=e.blendDstAlpha,this.blendEquationAlpha=e.blendEquationAlpha,this.depthFunc=e.depthFunc,this.depthTest=e.depthTest,this.depthWrite=e.depthWrite,this.stencilWriteMask=e.stencilWriteMask,this.stencilFunc=e.stencilFunc,this.stencilRef=e.stencilRef,this.stencilFuncMask=e.stencilFuncMask,this.stencilFail=e.stencilFail,this.stencilZFail=e.stencilZFail,this.stencilZPass=e.stencilZPass,this.stencilWrite=e.stencilWrite;const t=e.clippingPlanes;let n=null;if(t!==null){const i=t.length;n=new Array(i);for(let s=0;s!==i;++s)n[s]=t[s].clone()}return this.clippingPlanes=n,this.clipIntersection=e.clipIntersection,this.clipShadows=e.clipShadows,this.shadowSide=e.shadowSide,this.colorWrite=e.colorWrite,this.precision=e.precision,this.polygonOffset=e.polygonOffset,this.polygonOffsetFactor=e.polygonOffsetFactor,this.polygonOffsetUnits=e.polygonOffsetUnits,this.dithering=e.dithering,this.alphaTest=e.alphaTest,this.alphaToCoverage=e.alphaToCoverage,this.premultipliedAlpha=e.premultipliedAlpha,this.visible=e.visible,this.toneMapped=e.toneMapped,this.userData=JSON.parse(JSON.stringify(e.userData)),this}dispose(){this.dispatchEvent({type:\"dispose\"})}set needsUpdate(e){e===!0&&this.version++}}class ln extends Wt{constructor(e){super(),this.isMeshBasicMaterial=!0,this.type=\"MeshBasicMaterial\",this.color=new we(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.combine=zo,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}const Yt=new I,fa=new fe;class mt{constructor(e,t,n){if(Array.isArray(e))throw new TypeError(\"THREE.BufferAttribute: array should be a Typed Array.\");this.isBufferAttribute=!0,this.name=\"\",this.array=e,this.itemSize=t,this.count=e!==void 0?e.length/t:0,this.normalized=n===!0,this.usage=Ao,this.updateRange={offset:0,count:-1},this.version=0}onUploadCallback(){}set needsUpdate(e){e===!0&&this.version++}setUsage(e){return this.usage=e,this}copy(e){return this.name=e.name,this.array=new e.array.constructor(e.array),this.itemSize=e.itemSize,this.count=e.count,this.normalized=e.normalized,this.usage=e.usage,this}copyAt(e,t,n){e*=this.itemSize,n*=t.itemSize;for(let i=0,s=this.itemSize;i<s;i++)this.array[e+i]=t.array[n+i];return this}copyArray(e){return this.array.set(e),this}copyColorsArray(e){const t=this.array;let n=0;for(let i=0,s=e.length;i<s;i++){let r=e[i];r===void 0&&(console.warn(\"THREE.BufferAttribute.copyColorsArray(): color is undefined\",i),r=new we),t[n++]=r.r,t[n++]=r.g,t[n++]=r.b}return this}copyVector2sArray(e){const t=this.array;let n=0;for(let i=0,s=e.length;i<s;i++){let r=e[i];r===void 0&&(console.warn(\"THREE.BufferAttribute.copyVector2sArray(): vector is undefined\",i),r=new fe),t[n++]=r.x,t[n++]=r.y}return this}copyVector3sArray(e){const t=this.array;let n=0;for(let i=0,s=e.length;i<s;i++){let r=e[i];r===void 0&&(console.warn(\"THREE.BufferAttribute.copyVector3sArray(): vector is undefined\",i),r=new I),t[n++]=r.x,t[n++]=r.y,t[n++]=r.z}return this}copyVector4sArray(e){const t=this.array;let n=0;for(let i=0,s=e.length;i<s;i++){let r=e[i];r===void 0&&(console.warn(\"THREE.BufferAttribute.copyVector4sArray(): vector is undefined\",i),r=new dt),t[n++]=r.x,t[n++]=r.y,t[n++]=r.z,t[n++]=r.w}return this}applyMatrix3(e){if(this.itemSize===2)for(let t=0,n=this.count;t<n;t++)fa.fromBufferAttribute(this,t),fa.applyMatrix3(e),this.setXY(t,fa.x,fa.y);else if(this.itemSize===3)for(let t=0,n=this.count;t<n;t++)Yt.fromBufferAttribute(this,t),Yt.applyMatrix3(e),this.setXYZ(t,Yt.x,Yt.y,Yt.z);return this}applyMatrix4(e){for(let t=0,n=this.count;t<n;t++)Yt.fromBufferAttribute(this,t),Yt.applyMatrix4(e),this.setXYZ(t,Yt.x,Yt.y,Yt.z);return this}applyNormalMatrix(e){for(let t=0,n=this.count;t<n;t++)Yt.fromBufferAttribute(this,t),Yt.applyNormalMatrix(e),this.setXYZ(t,Yt.x,Yt.y,Yt.z);return this}transformDirection(e){for(let t=0,n=this.count;t<n;t++)Yt.fromBufferAttribute(this,t),Yt.transformDirection(e),this.setXYZ(t,Yt.x,Yt.y,Yt.z);return this}set(e,t=0){return this.array.set(e,t),this}getX(e){return this.array[e*this.itemSize]}setX(e,t){return this.array[e*this.itemSize]=t,this}getY(e){return this.array[e*this.itemSize+1]}setY(e,t){return this.array[e*this.itemSize+1]=t,this}getZ(e){return this.array[e*this.itemSize+2]}setZ(e,t){return this.array[e*this.itemSize+2]=t,this}getW(e){return this.array[e*this.itemSize+3]}setW(e,t){return this.array[e*this.itemSize+3]=t,this}setXY(e,t,n){return e*=this.itemSize,this.array[e+0]=t,this.array[e+1]=n,this}setXYZ(e,t,n,i){return e*=this.itemSize,this.array[e+0]=t,this.array[e+1]=n,this.array[e+2]=i,this}setXYZW(e,t,n,i,s){return e*=this.itemSize,this.array[e+0]=t,this.array[e+1]=n,this.array[e+2]=i,this.array[e+3]=s,this}onUpload(e){return this.onUploadCallback=e,this}clone(){return new this.constructor(this.array,this.itemSize).copy(this)}toJSON(){const e={itemSize:this.itemSize,type:this.array.constructor.name,array:Array.from(this.array),normalized:this.normalized};return this.name!==\"\"&&(e.name=this.name),this.usage!==Ao&&(e.usage=this.usage),(this.updateRange.offset!==0||this.updateRange.count!==-1)&&(e.updateRange=this.updateRange),e}}class a0 extends mt{constructor(e,t,n){super(new Int8Array(e),t,n)}}class l0 extends mt{constructor(e,t,n){super(new Uint8Array(e),t,n)}}class c0 extends mt{constructor(e,t,n){super(new Uint8ClampedArray(e),t,n)}}class u0 extends mt{constructor(e,t,n){super(new Int16Array(e),t,n)}}class bl extends mt{constructor(e,t,n){super(new Uint16Array(e),t,n)}}class h0 extends mt{constructor(e,t,n){super(new Int32Array(e),t,n)}}class Iu extends mt{constructor(e,t,n){super(new Uint32Array(e),t,n)}}class f0 extends mt{constructor(e,t,n){super(new Uint16Array(e),t,n),this.isFloat16BufferAttribute=!0}}class Ce extends mt{constructor(e,t,n){super(new Float32Array(e),t,n)}}class d0 extends mt{constructor(e,t,n){super(new Float64Array(e),t,n)}}let p0=0;const Ln=new Ne,ec=new pt,nr=new I,Tn=new Li,io=new Li,en=new I;class Xe extends ai{constructor(){super(),this.isBufferGeometry=!0,Object.defineProperty(this,\"id\",{value:p0++}),this.uuid=En(),this.name=\"\",this.type=\"BufferGeometry\",this.index=null,this.attributes={},this.morphAttributes={},this.morphTargetsRelative=!1,this.groups=[],this.boundingBox=null,this.boundingSphere=null,this.drawRange={start:0,count:1/0},this.userData={}}getIndex(){return this.index}setIndex(e){return Array.isArray(e)?this.index=new(up(e)?Iu:bl)(e,1):this.index=e,this}getAttribute(e){return this.attributes[e]}setAttribute(e,t){return this.attributes[e]=t,this}deleteAttribute(e){return delete this.attributes[e],this}hasAttribute(e){return this.attributes[e]!==void 0}addGroup(e,t,n=0){this.groups.push({start:e,count:t,materialIndex:n})}clearGroups(){this.groups=[]}setDrawRange(e,t){this.drawRange.start=e,this.drawRange.count=t}applyMatrix4(e){const t=this.attributes.position;t!==void 0&&(t.applyMatrix4(e),t.needsUpdate=!0);const n=this.attributes.normal;if(n!==void 0){const s=new dn().getNormalMatrix(e);n.applyNormalMatrix(s),n.needsUpdate=!0}const i=this.attributes.tangent;return i!==void 0&&(i.transformDirection(e),i.needsUpdate=!0),this.boundingBox!==null&&this.computeBoundingBox(),this.boundingSphere!==null&&this.computeBoundingSphere(),this}applyQuaternion(e){return Ln.makeRotationFromQuaternion(e),this.applyMatrix4(Ln),this}rotateX(e){return Ln.makeRotationX(e),this.applyMatrix4(Ln),this}rotateY(e){return Ln.makeRotationY(e),this.applyMatrix4(Ln),this}rotateZ(e){return Ln.makeRotationZ(e),this.applyMatrix4(Ln),this}translate(e,t,n){return Ln.makeTranslation(e,t,n),this.applyMatrix4(Ln),this}scale(e,t,n){return Ln.makeScale(e,t,n),this.applyMatrix4(Ln),this}lookAt(e){return ec.lookAt(e),ec.updateMatrix(),this.applyMatrix4(ec.matrix),this}center(){return this.computeBoundingBox(),this.boundingBox.getCenter(nr).negate(),this.translate(nr.x,nr.y,nr.z),this}setFromPoints(e){const t=[];for(let n=0,i=e.length;n<i;n++){const s=e[n];t.push(s.x,s.y,s.z||0)}return this.setAttribute(\"position\",new Ce(t,3)),this}computeBoundingBox(){this.boundingBox===null&&(this.boundingBox=new Li);const e=this.attributes.position,t=this.morphAttributes.position;if(e&&e.isGLBufferAttribute){console.error('THREE.BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box. Alternatively set \"mesh.frustumCulled\" to \"false\".',this),this.boundingBox.set(new I(-1/0,-1/0,-1/0),new I(1/0,1/0,1/0));return}if(e!==void 0){if(this.boundingBox.setFromBufferAttribute(e),t)for(let n=0,i=t.length;n<i;n++){const s=t[n];Tn.setFromBufferAttribute(s),this.morphTargetsRelative?(en.addVectors(this.boundingBox.min,Tn.min),this.boundingBox.expandByPoint(en),en.addVectors(this.boundingBox.max,Tn.max),this.boundingBox.expandByPoint(en)):(this.boundingBox.expandByPoint(Tn.min),this.boundingBox.expandByPoint(Tn.max))}}else this.boundingBox.makeEmpty();(isNaN(this.boundingBox.min.x)||isNaN(this.boundingBox.min.y)||isNaN(this.boundingBox.min.z))&&console.error('THREE.BufferGeometry.computeBoundingBox(): Computed min/max have NaN values. The \"position\" attribute is likely to have NaN values.',this)}computeBoundingSphere(){this.boundingSphere===null&&(this.boundingSphere=new is);const e=this.attributes.position,t=this.morphAttributes.position;if(e&&e.isGLBufferAttribute){console.error('THREE.BufferGeometry.computeBoundingSphere(): GLBufferAttribute requires a manual bounding sphere. Alternatively set \"mesh.frustumCulled\" to \"false\".',this),this.boundingSphere.set(new I,1/0);return}if(e){const n=this.boundingSphere.center;if(Tn.setFromBufferAttribute(e),t)for(let s=0,r=t.length;s<r;s++){const o=t[s];io.setFromBufferAttribute(o),this.morphTargetsRelative?(en.addVectors(Tn.min,io.min),Tn.expandByPoint(en),en.addVectors(Tn.max,io.max),Tn.expandByPoint(en)):(Tn.expandByPoint(io.min),Tn.expandByPoint(io.max))}Tn.getCenter(n);let i=0;for(let s=0,r=e.count;s<r;s++)en.fromBufferAttribute(e,s),i=Math.max(i,n.distanceToSquared(en));if(t)for(let s=0,r=t.length;s<r;s++){const o=t[s],l=this.morphTargetsRelative;for(let c=0,h=o.count;c<h;c++)en.fromBufferAttribute(o,c),l&&(nr.fromBufferAttribute(e,c),en.add(nr)),i=Math.max(i,n.distanceToSquared(en))}this.boundingSphere.radius=Math.sqrt(i),isNaN(this.boundingSphere.radius)&&console.error('THREE.BufferGeometry.computeBoundingSphere(): Computed radius is NaN. The \"position\" attribute is likely to have NaN values.',this)}}computeTangents(){const e=this.index,t=this.attributes;if(e===null||t.position===void 0||t.normal===void 0||t.uv===void 0){console.error(\"THREE.BufferGeometry: .computeTangents() failed. Missing required attributes (index, position, normal or uv)\");return}const n=e.array,i=t.position.array,s=t.normal.array,r=t.uv.array,o=i.length/3;this.hasAttribute(\"tangent\")===!1&&this.setAttribute(\"tangent\",new mt(new Float32Array(4*o),4));const l=this.getAttribute(\"tangent\").array,c=[],h=[];for(let F=0;F<o;F++)c[F]=new I,h[F]=new I;const u=new I,f=new I,d=new I,p=new fe,m=new fe,g=new fe,y=new I,x=new I;function b(F,U,q){u.fromArray(i,F*3),f.fromArray(i,U*3),d.fromArray(i,q*3),p.fromArray(r,F*2),m.fromArray(r,U*2),g.fromArray(r,q*2),f.sub(u),d.sub(u),m.sub(p),g.sub(p);const K=1/(m.x*g.y-g.x*m.y);!isFinite(K)||(y.copy(f).multiplyScalar(g.y).addScaledVector(d,-m.y).multiplyScalar(K),x.copy(d).multiplyScalar(m.x).addScaledVector(f,-g.x).multiplyScalar(K),c[F].add(y),c[U].add(y),c[q].add(y),h[F].add(x),h[U].add(x),h[q].add(x))}let v=this.groups;v.length===0&&(v=[{start:0,count:n.length}]);for(let F=0,U=v.length;F<U;++F){const q=v[F],K=q.start,G=q.count;for(let X=K,O=K+G;X<O;X+=3)b(n[X+0],n[X+1],n[X+2])}const M=new I,T=new I,C=new I,_=new I;function E(F){C.fromArray(s,F*3),_.copy(C);const U=c[F];M.copy(U),M.sub(C.multiplyScalar(C.dot(U))).normalize(),T.crossVectors(_,U);const K=T.dot(h[F])<0?-1:1;l[F*4]=M.x,l[F*4+1]=M.y,l[F*4+2]=M.z,l[F*4+3]=K}for(let F=0,U=v.length;F<U;++F){const q=v[F],K=q.start,G=q.count;for(let X=K,O=K+G;X<O;X+=3)E(n[X+0]),E(n[X+1]),E(n[X+2])}}computeVertexNormals(){const e=this.index,t=this.getAttribute(\"position\");if(t!==void 0){let n=this.getAttribute(\"normal\");if(n===void 0)n=new mt(new Float32Array(t.count*3),3),this.setAttribute(\"normal\",n);else for(let f=0,d=n.count;f<d;f++)n.setXYZ(f,0,0,0);const i=new I,s=new I,r=new I,o=new I,l=new I,c=new I,h=new I,u=new I;if(e)for(let f=0,d=e.count;f<d;f+=3){const p=e.getX(f+0),m=e.getX(f+1),g=e.getX(f+2);i.fromBufferAttribute(t,p),s.fromBufferAttribute(t,m),r.fromBufferAttribute(t,g),h.subVectors(r,s),u.subVectors(i,s),h.cross(u),o.fromBufferAttribute(n,p),l.fromBufferAttribute(n,m),c.fromBufferAttribute(n,g),o.add(h),l.add(h),c.add(h),n.setXYZ(p,o.x,o.y,o.z),n.setXYZ(m,l.x,l.y,l.z),n.setXYZ(g,c.x,c.y,c.z)}else for(let f=0,d=t.count;f<d;f+=3)i.fromBufferAttribute(t,f+0),s.fromBufferAttribute(t,f+1),r.fromBufferAttribute(t,f+2),h.subVectors(r,s),u.subVectors(i,s),h.cross(u),n.setXYZ(f+0,h.x,h.y,h.z),n.setXYZ(f+1,h.x,h.y,h.z),n.setXYZ(f+2,h.x,h.y,h.z);this.normalizeNormals(),n.needsUpdate=!0}}merge(e,t){if(!(e&&e.isBufferGeometry)){console.error(\"THREE.BufferGeometry.merge(): geometry not an instance of THREE.BufferGeometry.\",e);return}t===void 0&&(t=0,console.warn(\"THREE.BufferGeometry.merge(): Overwriting original geometry, starting at offset=0. Use BufferGeometryUtils.mergeBufferGeometries() for lossless merge.\"));const n=this.attributes;for(const i in n){if(e.attributes[i]===void 0)continue;const r=n[i].array,o=e.attributes[i],l=o.array,c=o.itemSize*t,h=Math.min(l.length,r.length-c);for(let u=0,f=c;u<h;u++,f++)r[f]=l[u]}return this}normalizeNormals(){const e=this.attributes.normal;for(let t=0,n=e.count;t<n;t++)en.fromBufferAttribute(e,t),en.normalize(),e.setXYZ(t,en.x,en.y,en.z)}toNonIndexed(){function e(o,l){const c=o.array,h=o.itemSize,u=o.normalized,f=new c.constructor(l.length*h);let d=0,p=0;for(let m=0,g=l.length;m<g;m++){o.isInterleavedBufferAttribute?d=l[m]*o.data.stride+o.offset:d=l[m]*h;for(let y=0;y<h;y++)f[p++]=c[d++]}return new mt(f,h,u)}if(this.index===null)return console.warn(\"THREE.BufferGeometry.toNonIndexed(): BufferGeometry is already non-indexed.\"),this;const t=new Xe,n=this.index.array,i=this.attributes;for(const o in i){const l=i[o],c=e(l,n);t.setAttribute(o,c)}const s=this.morphAttributes;for(const o in s){const l=[],c=s[o];for(let h=0,u=c.length;h<u;h++){const f=c[h],d=e(f,n);l.push(d)}t.morphAttributes[o]=l}t.morphTargetsRelative=this.morphTargetsRelative;const r=this.groups;for(let o=0,l=r.length;o<l;o++){const c=r[o];t.addGroup(c.start,c.count,c.materialIndex)}return t}toJSON(){const e={metadata:{version:4.5,type:\"BufferGeometry\",generator:\"BufferGeometry.toJSON\"}};if(e.uuid=this.uuid,e.type=this.type,this.name!==\"\"&&(e.name=this.name),Object.keys(this.userData).length>0&&(e.userData=this.userData),this.parameters!==void 0){const l=this.parameters;for(const c in l)l[c]!==void 0&&(e[c]=l[c]);return e}e.data={attributes:{}};const t=this.index;t!==null&&(e.data.index={type:t.array.constructor.name,array:Array.prototype.slice.call(t.array)});const n=this.attributes;for(const l in n){const c=n[l];e.data.attributes[l]=c.toJSON(e.data)}const i={};let s=!1;for(const l in this.morphAttributes){const c=this.morphAttributes[l],h=[];for(let u=0,f=c.length;u<f;u++){const d=c[u];h.push(d.toJSON(e.data))}h.length>0&&(i[l]=h,s=!0)}s&&(e.data.morphAttributes=i,e.data.morphTargetsRelative=this.morphTargetsRelative);const r=this.groups;r.length>0&&(e.data.groups=JSON.parse(JSON.stringify(r)));const o=this.boundingSphere;return o!==null&&(e.data.boundingSphere={center:o.center.toArray(),radius:o.radius}),e}clone(){return new this.constructor().copy(this)}copy(e){this.index=null,this.attributes={},this.morphAttributes={},this.groups=[],this.boundingBox=null,this.boundingSphere=null;const t={};this.name=e.name;const n=e.index;n!==null&&this.setIndex(n.clone(t));const i=e.attributes;for(const c in i){const h=i[c];this.setAttribute(c,h.clone(t))}const s=e.morphAttributes;for(const c in s){const h=[],u=s[c];for(let f=0,d=u.length;f<d;f++)h.push(u[f].clone(t));this.morphAttributes[c]=h}this.morphTargetsRelative=e.morphTargetsRelative;const r=e.groups;for(let c=0,h=r.length;c<h;c++){const u=r[c];this.addGroup(u.start,u.count,u.materialIndex)}const o=e.boundingBox;o!==null&&(this.boundingBox=o.clone());const l=e.boundingSphere;return l!==null&&(this.boundingSphere=l.clone()),this.drawRange.start=e.drawRange.start,this.drawRange.count=e.drawRange.count,this.userData=e.userData,e.parameters!==void 0&&(this.parameters=Object.assign({},e.parameters)),this}dispose(){this.dispatchEvent({type:\"dispose\"})}}const Ih=new Ne,ir=new Go,tc=new is,ki=new I,Oi=new I,Bi=new I,nc=new I,ic=new I,sc=new I,da=new I,pa=new I,ma=new I,ga=new fe,ya=new fe,xa=new fe,rc=new I,va=new I;class Rt extends pt{constructor(e=new Xe,t=new ln){super(),this.isMesh=!0,this.type=\"Mesh\",this.geometry=e,this.material=t,this.updateMorphTargets()}copy(e,t){return super.copy(e,t),e.morphTargetInfluences!==void 0&&(this.morphTargetInfluences=e.morphTargetInfluences.slice()),e.morphTargetDictionary!==void 0&&(this.morphTargetDictionary=Object.assign({},e.morphTargetDictionary)),this.material=e.material,this.geometry=e.geometry,this}updateMorphTargets(){const t=this.geometry.morphAttributes,n=Object.keys(t);if(n.length>0){const i=t[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,r=i.length;s<r;s++){const o=i[s].name||String(s);this.morphTargetInfluences.push(0),this.morphTargetDictionary[o]=s}}}}raycast(e,t){const n=this.geometry,i=this.material,s=this.matrixWorld;if(i===void 0||(n.boundingSphere===null&&n.computeBoundingSphere(),tc.copy(n.boundingSphere),tc.applyMatrix4(s),e.ray.intersectsSphere(tc)===!1)||(Ih.copy(s).invert(),ir.copy(e.ray).applyMatrix4(Ih),n.boundingBox!==null&&ir.intersectsBox(n.boundingBox)===!1))return;let r;const o=n.index,l=n.attributes.position,c=n.morphAttributes.position,h=n.morphTargetsRelative,u=n.attributes.uv,f=n.attributes.uv2,d=n.groups,p=n.drawRange;if(o!==null)if(Array.isArray(i))for(let m=0,g=d.length;m<g;m++){const y=d[m],x=i[y.materialIndex],b=Math.max(y.start,p.start),v=Math.min(o.count,Math.min(y.start+y.count,p.start+p.count));for(let M=b,T=v;M<T;M+=3){const C=o.getX(M),_=o.getX(M+1),E=o.getX(M+2);r=_a(this,x,e,ir,l,c,h,u,f,C,_,E),r&&(r.faceIndex=Math.floor(M/3),r.face.materialIndex=y.materialIndex,t.push(r))}}else{const m=Math.max(0,p.start),g=Math.min(o.count,p.start+p.count);for(let y=m,x=g;y<x;y+=3){const b=o.getX(y),v=o.getX(y+1),M=o.getX(y+2);r=_a(this,i,e,ir,l,c,h,u,f,b,v,M),r&&(r.faceIndex=Math.floor(y/3),t.push(r))}}else if(l!==void 0)if(Array.isArray(i))for(let m=0,g=d.length;m<g;m++){const y=d[m],x=i[y.materialIndex],b=Math.max(y.start,p.start),v=Math.min(l.count,Math.min(y.start+y.count,p.start+p.count));for(let M=b,T=v;M<T;M+=3){const C=M,_=M+1,E=M+2;r=_a(this,x,e,ir,l,c,h,u,f,C,_,E),r&&(r.faceIndex=Math.floor(M/3),r.face.materialIndex=y.materialIndex,t.push(r))}}else{const m=Math.max(0,p.start),g=Math.min(l.count,p.start+p.count);for(let y=m,x=g;y<x;y+=3){const b=y,v=y+1,M=y+2;r=_a(this,i,e,ir,l,c,h,u,f,b,v,M),r&&(r.faceIndex=Math.floor(y/3),t.push(r))}}}}function m0(a,e,t,n,i,s,r,o){let l;if(e.side===kn?l=n.intersectTriangle(r,s,i,!0,o):l=n.intersectTriangle(i,s,r,e.side!==wi,o),l===null)return null;va.copy(o),va.applyMatrix4(a.matrixWorld);const c=t.ray.origin.distanceTo(va);return c<t.near||c>t.far?null:{distance:c,point:va.clone(),object:a}}function _a(a,e,t,n,i,s,r,o,l,c,h,u){ki.fromBufferAttribute(i,c),Oi.fromBufferAttribute(i,h),Bi.fromBufferAttribute(i,u);const f=a.morphTargetInfluences;if(s&&f){da.set(0,0,0),pa.set(0,0,0),ma.set(0,0,0);for(let p=0,m=s.length;p<m;p++){const g=f[p],y=s[p];g!==0&&(nc.fromBufferAttribute(y,c),ic.fromBufferAttribute(y,h),sc.fromBufferAttribute(y,u),r?(da.addScaledVector(nc,g),pa.addScaledVector(ic,g),ma.addScaledVector(sc,g)):(da.addScaledVector(nc.sub(ki),g),pa.addScaledVector(ic.sub(Oi),g),ma.addScaledVector(sc.sub(Bi),g)))}ki.add(da),Oi.add(pa),Bi.add(ma)}a.isSkinnedMesh&&(a.boneTransform(c,ki),a.boneTransform(h,Oi),a.boneTransform(u,Bi));const d=m0(a,e,t,n,ki,Oi,Bi,rc);if(d){o&&(ga.fromBufferAttribute(o,c),ya.fromBufferAttribute(o,h),xa.fromBufferAttribute(o,u),d.uv=Fn.getUV(rc,ki,Oi,Bi,ga,ya,xa,new fe)),l&&(ga.fromBufferAttribute(l,c),ya.fromBufferAttribute(l,h),xa.fromBufferAttribute(l,u),d.uv2=Fn.getUV(rc,ki,Oi,Bi,ga,ya,xa,new fe));const p={a:c,b:h,c:u,normal:new I,materialIndex:0};Fn.getNormal(ki,Oi,Bi,p.normal),d.face=p}return d}class Si extends Xe{constructor(e=1,t=1,n=1,i=1,s=1,r=1){super(),this.type=\"BoxGeometry\",this.parameters={width:e,height:t,depth:n,widthSegments:i,heightSegments:s,depthSegments:r};const o=this;i=Math.floor(i),s=Math.floor(s),r=Math.floor(r);const l=[],c=[],h=[],u=[];let f=0,d=0;p(\"z\",\"y\",\"x\",-1,-1,n,t,e,r,s,0),p(\"z\",\"y\",\"x\",1,-1,n,t,-e,r,s,1),p(\"x\",\"z\",\"y\",1,1,e,n,t,i,r,2),p(\"x\",\"z\",\"y\",1,-1,e,n,-t,i,r,3),p(\"x\",\"y\",\"z\",1,-1,e,t,n,i,s,4),p(\"x\",\"y\",\"z\",-1,-1,e,t,-n,i,s,5),this.setIndex(l),this.setAttribute(\"position\",new Ce(c,3)),this.setAttribute(\"normal\",new Ce(h,3)),this.setAttribute(\"uv\",new Ce(u,2));function p(m,g,y,x,b,v,M,T,C,_,E){const F=v/C,U=M/_,q=v/2,K=M/2,G=T/2,X=C+1,O=_+1;let j=0,Y=0;const W=new I;for(let Z=0;Z<O;Z++){const ee=Z*U-K;for(let Q=0;Q<X;Q++){const ie=Q*F-q;W[m]=ie*x,W[g]=ee*b,W[y]=G,c.push(W.x,W.y,W.z),W[m]=0,W[g]=0,W[y]=T>0?1:-1,h.push(W.x,W.y,W.z),u.push(Q/C),u.push(1-Z/_),j+=1}}for(let Z=0;Z<_;Z++)for(let ee=0;ee<C;ee++){const Q=f+ee+X*Z,ie=f+ee+X*(Z+1),ae=f+(ee+1)+X*(Z+1),re=f+(ee+1)+X*Z;l.push(Q,ie,re),l.push(ie,ae,re),Y+=6}o.addGroup(d,Y,E),d+=Y,f+=j}}static fromJSON(e){return new Si(e.width,e.height,e.depth,e.widthSegments,e.heightSegments,e.depthSegments)}}function Tr(a){const e={};for(const t in a){e[t]={};for(const n in a[t]){const i=a[t][n];i&&(i.isColor||i.isMatrix3||i.isMatrix4||i.isVector2||i.isVector3||i.isVector4||i.isTexture||i.isQuaternion)?e[t][n]=i.clone():Array.isArray(i)?e[t][n]=i.slice():e[t][n]=i}}return e}function an(a){const e={};for(let t=0;t<a.length;t++){const n=Tr(a[t]);for(const i in n)e[i]=n[i]}return e}function g0(a){const e=[];for(let t=0;t<a.length;t++)e.push(a[t].clone());return e}const fp={clone:Tr,merge:an};var y0=`void main() {\n\tgl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}`,x0=`void main() {\n\tgl_FragColor = vec4( 1.0, 0.0, 0.0, 1.0 );\n}`;class ni extends Wt{constructor(e){super(),this.isShaderMaterial=!0,this.type=\"ShaderMaterial\",this.defines={},this.uniforms={},this.uniformsGroups=[],this.vertexShader=y0,this.fragmentShader=x0,this.linewidth=1,this.wireframe=!1,this.wireframeLinewidth=1,this.fog=!1,this.lights=!1,this.clipping=!1,this.extensions={derivatives:!1,fragDepth:!1,drawBuffers:!1,shaderTextureLOD:!1},this.defaultAttributeValues={color:[1,1,1],uv:[0,0],uv2:[0,0]},this.index0AttributeName=void 0,this.uniformsNeedUpdate=!1,this.glslVersion=null,e!==void 0&&(e.attributes!==void 0&&console.error(\"THREE.ShaderMaterial: attributes should now be defined in THREE.BufferGeometry instead.\"),this.setValues(e))}copy(e){return super.copy(e),this.fragmentShader=e.fragmentShader,this.vertexShader=e.vertexShader,this.uniforms=Tr(e.uniforms),this.uniformsGroups=g0(e.uniformsGroups),this.defines=Object.assign({},e.defines),this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.fog=e.fog,this.lights=e.lights,this.clipping=e.clipping,this.extensions=Object.assign({},e.extensions),this.glslVersion=e.glslVersion,this}toJSON(e){const t=super.toJSON(e);t.glslVersion=this.glslVersion,t.uniforms={};for(const i in this.uniforms){const r=this.uniforms[i].value;r&&r.isTexture?t.uniforms[i]={type:\"t\",value:r.toJSON(e).uuid}:r&&r.isColor?t.uniforms[i]={type:\"c\",value:r.getHex()}:r&&r.isVector2?t.uniforms[i]={type:\"v2\",value:r.toArray()}:r&&r.isVector3?t.uniforms[i]={type:\"v3\",value:r.toArray()}:r&&r.isVector4?t.uniforms[i]={type:\"v4\",value:r.toArray()}:r&&r.isMatrix3?t.uniforms[i]={type:\"m3\",value:r.toArray()}:r&&r.isMatrix4?t.uniforms[i]={type:\"m4\",value:r.toArray()}:t.uniforms[i]={value:r}}Object.keys(this.defines).length>0&&(t.defines=this.defines),t.vertexShader=this.vertexShader,t.fragmentShader=this.fragmentShader;const n={};for(const i in this.extensions)this.extensions[i]===!0&&(n[i]=!0);return Object.keys(n).length>0&&(t.extensions=n),t}}class wl extends pt{constructor(){super(),this.isCamera=!0,this.type=\"Camera\",this.matrixWorldInverse=new Ne,this.projectionMatrix=new Ne,this.projectionMatrixInverse=new Ne}copy(e,t){return super.copy(e,t),this.matrixWorldInverse.copy(e.matrixWorldInverse),this.projectionMatrix.copy(e.projectionMatrix),this.projectionMatrixInverse.copy(e.projectionMatrixInverse),this}getWorldDirection(e){this.updateWorldMatrix(!0,!1);const t=this.matrixWorld.elements;return e.set(-t[8],-t[9],-t[10]).normalize()}updateMatrixWorld(e){super.updateMatrixWorld(e),this.matrixWorldInverse.copy(this.matrixWorld).invert()}updateWorldMatrix(e,t){super.updateWorldMatrix(e,t),this.matrixWorldInverse.copy(this.matrixWorld).invert()}clone(){return new this.constructor().copy(this)}}class Ot extends wl{constructor(e=50,t=1,n=.1,i=2e3){super(),this.isPerspectiveCamera=!0,this.type=\"PerspectiveCamera\",this.fov=e,this.zoom=1,this.near=n,this.far=i,this.focus=10,this.aspect=t,this.view=null,this.filmGauge=35,this.filmOffset=0,this.updateProjectionMatrix()}copy(e,t){return super.copy(e,t),this.fov=e.fov,this.zoom=e.zoom,this.near=e.near,this.far=e.far,this.focus=e.focus,this.aspect=e.aspect,this.view=e.view===null?null:Object.assign({},e.view),this.filmGauge=e.filmGauge,this.filmOffset=e.filmOffset,this}setFocalLength(e){const t=.5*this.getFilmHeight()/e;this.fov=Eo*2*Math.atan(t),this.updateProjectionMatrix()}getFocalLength(){const e=Math.tan(Es*.5*this.fov);return .5*this.getFilmHeight()/e}getEffectiveFOV(){return Eo*2*Math.atan(Math.tan(Es*.5*this.fov)/this.zoom)}getFilmWidth(){return this.filmGauge*Math.min(this.aspect,1)}getFilmHeight(){return this.filmGauge/Math.max(this.aspect,1)}setViewOffset(e,t,n,i,s,r){this.aspect=e/t,this.view===null&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=e,this.view.fullHeight=t,this.view.offsetX=n,this.view.offsetY=i,this.view.width=s,this.view.height=r,this.updateProjectionMatrix()}clearViewOffset(){this.view!==null&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const e=this.near;let t=e*Math.tan(Es*.5*this.fov)/this.zoom,n=2*t,i=this.aspect*n,s=-.5*i;const r=this.view;if(this.view!==null&&this.view.enabled){const l=r.fullWidth,c=r.fullHeight;s+=r.offsetX*i/l,t-=r.offsetY*n/c,i*=r.width/l,n*=r.height/c}const o=this.filmOffset;o!==0&&(s+=e*o/this.getFilmWidth()),this.projectionMatrix.makePerspective(s,s+i,t,t-n,e,this.far),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(e){const t=super.toJSON(e);return t.object.fov=this.fov,t.object.zoom=this.zoom,t.object.near=this.near,t.object.far=this.far,t.object.focus=this.focus,t.object.aspect=this.aspect,this.view!==null&&(t.object.view=Object.assign({},this.view)),t.object.filmGauge=this.filmGauge,t.object.filmOffset=this.filmOffset,t}}const sr=90,rr=1;class dp extends pt{constructor(e,t,n){if(super(),this.type=\"CubeCamera\",n.isWebGLCubeRenderTarget!==!0){console.error(\"THREE.CubeCamera: The constructor now expects an instance of WebGLCubeRenderTarget as third parameter.\");return}this.renderTarget=n;const i=new Ot(sr,rr,e,t);i.layers=this.layers,i.up.set(0,-1,0),i.lookAt(new I(1,0,0)),this.add(i);const s=new Ot(sr,rr,e,t);s.layers=this.layers,s.up.set(0,-1,0),s.lookAt(new I(-1,0,0)),this.add(s);const r=new Ot(sr,rr,e,t);r.layers=this.layers,r.up.set(0,0,1),r.lookAt(new I(0,1,0)),this.add(r);const o=new Ot(sr,rr,e,t);o.layers=this.layers,o.up.set(0,0,-1),o.lookAt(new I(0,-1,0)),this.add(o);const l=new Ot(sr,rr,e,t);l.layers=this.layers,l.up.set(0,-1,0),l.lookAt(new I(0,0,1)),this.add(l);const c=new Ot(sr,rr,e,t);c.layers=this.layers,c.up.set(0,-1,0),c.lookAt(new I(0,0,-1)),this.add(c)}update(e,t){this.parent===null&&this.updateMatrixWorld();const n=this.renderTarget,[i,s,r,o,l,c]=this.children,h=e.getRenderTarget(),u=e.toneMapping,f=e.xr.enabled;e.toneMapping=Qn,e.xr.enabled=!1;const d=n.texture.generateMipmaps;n.texture.generateMipmaps=!1,e.setRenderTarget(n,0),e.render(t,i),e.setRenderTarget(n,1),e.render(t,s),e.setRenderTarget(n,2),e.render(t,r),e.setRenderTarget(n,3),e.render(t,o),e.setRenderTarget(n,4),e.render(t,l),n.texture.generateMipmaps=d,e.setRenderTarget(n,5),e.render(t,c),e.setRenderTarget(h),e.toneMapping=u,e.xr.enabled=f,n.texture.needsPMREMUpdate=!0}}class Vo extends It{constructor(e,t,n,i,s,r,o,l,c,h){e=e!==void 0?e:[],t=t!==void 0?t:Yi,super(e,t,n,i,s,r,o,l,c,h),this.isCubeTexture=!0,this.flipY=!1}get images(){return this.image}set images(e){this.image=e}}class pp extends zn{constructor(e,t={}){super(e,e,t),this.isWebGLCubeRenderTarget=!0;const n={width:e,height:e,depth:1},i=[n,n,n,n,n,n];this.texture=new Vo(i,t.mapping,t.wrapS,t.wrapT,t.magFilter,t.minFilter,t.format,t.type,t.anisotropy,t.encoding),this.texture.isRenderTargetTexture=!0,this.texture.generateMipmaps=t.generateMipmaps!==void 0?t.generateMipmaps:!1,this.texture.minFilter=t.minFilter!==void 0?t.minFilter:Ft}fromEquirectangularTexture(e,t){this.texture.type=t.type,this.texture.encoding=t.encoding,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const n={uniforms:{tEquirect:{value:null}},vertexShader:`\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\tvec3 transformDirection( in vec3 dir, in mat4 matrix ) {\n\n\t\t\t\t\treturn normalize( ( matrix * vec4( dir, 0.0 ) ).xyz );\n\n\t\t\t\t}\n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvWorldDirection = transformDirection( position, modelMatrix );\n\n\t\t\t\t\t#include <begin_vertex>\n\t\t\t\t\t#include <project_vertex>\n\n\t\t\t\t}\n\t\t\t`,fragmentShader:`\n\n\t\t\t\tuniform sampler2D tEquirect;\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\t#include <common>\n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvec3 direction = normalize( vWorldDirection );\n\n\t\t\t\t\tvec2 sampleUV = equirectUv( direction );\n\n\t\t\t\t\tgl_FragColor = texture2D( tEquirect, sampleUV );\n\n\t\t\t\t}\n\t\t\t`},i=new Si(5,5,5),s=new ni({name:\"CubemapFromEquirect\",uniforms:Tr(n.uniforms),vertexShader:n.vertexShader,fragmentShader:n.fragmentShader,side:kn,blending:_i});s.uniforms.tEquirect.value=t;const r=new Rt(i,s),o=t.minFilter;return t.minFilter===oi&&(t.minFilter=Ft),new dp(1,10,this).update(e,r),t.minFilter=o,r.geometry.dispose(),r.material.dispose(),this}clear(e,t,n,i){const s=e.getRenderTarget();for(let r=0;r<6;r++)e.setRenderTarget(this,r),e.clear(t,n,i);e.setRenderTarget(s)}}const oc=new I,v0=new I,_0=new dn;class Vi{constructor(e=new I(1,0,0),t=0){this.isPlane=!0,this.normal=e,this.constant=t}set(e,t){return this.normal.copy(e),this.constant=t,this}setComponents(e,t,n,i){return this.normal.set(e,t,n),this.constant=i,this}setFromNormalAndCoplanarPoint(e,t){return this.normal.copy(e),this.constant=-t.dot(this.normal),this}setFromCoplanarPoints(e,t,n){const i=oc.subVectors(n,t).cross(v0.subVectors(e,t)).normalize();return this.setFromNormalAndCoplanarPoint(i,e),this}copy(e){return this.normal.copy(e.normal),this.constant=e.constant,this}normalize(){const e=1/this.normal.length();return this.normal.multiplyScalar(e),this.constant*=e,this}negate(){return this.constant*=-1,this.normal.negate(),this}distanceToPoint(e){return this.normal.dot(e)+this.constant}distanceToSphere(e){return this.distanceToPoint(e.center)-e.radius}projectPoint(e,t){return t.copy(this.normal).multiplyScalar(-this.distanceToPoint(e)).add(e)}intersectLine(e,t){const n=e.delta(oc),i=this.normal.dot(n);if(i===0)return this.distanceToPoint(e.start)===0?t.copy(e.start):null;const s=-(e.start.dot(this.normal)+this.constant)/i;return s<0||s>1?null:t.copy(n).multiplyScalar(s).add(e.start)}intersectsLine(e){const t=this.distanceToPoint(e.start),n=this.distanceToPoint(e.end);return t<0&&n>0||n<0&&t>0}intersectsBox(e){return e.intersectsPlane(this)}intersectsSphere(e){return e.intersectsPlane(this)}coplanarPoint(e){return e.copy(this.normal).multiplyScalar(-this.constant)}applyMatrix4(e,t){const n=t||_0.getNormalMatrix(e),i=this.coplanarPoint(oc).applyMatrix4(e),s=this.normal.applyMatrix3(n).normalize();return this.constant=-i.dot(s),this}translate(e){return this.constant-=e.dot(this.normal),this}equals(e){return e.normal.equals(this.normal)&&e.constant===this.constant}clone(){return new this.constructor().copy(this)}}const or=new is,ba=new I;class Ml{constructor(e=new Vi,t=new Vi,n=new Vi,i=new Vi,s=new Vi,r=new Vi){this.planes=[e,t,n,i,s,r]}set(e,t,n,i,s,r){const o=this.planes;return o[0].copy(e),o[1].copy(t),o[2].copy(n),o[3].copy(i),o[4].copy(s),o[5].copy(r),this}copy(e){const t=this.planes;for(let n=0;n<6;n++)t[n].copy(e.planes[n]);return this}setFromProjectionMatrix(e){const t=this.planes,n=e.elements,i=n[0],s=n[1],r=n[2],o=n[3],l=n[4],c=n[5],h=n[6],u=n[7],f=n[8],d=n[9],p=n[10],m=n[11],g=n[12],y=n[13],x=n[14],b=n[15];return t[0].setComponents(o-i,u-l,m-f,b-g).normalize(),t[1].setComponents(o+i,u+l,m+f,b+g).normalize(),t[2].setComponents(o+s,u+c,m+d,b+y).normalize(),t[3].setComponents(o-s,u-c,m-d,b-y).normalize(),t[4].setComponents(o-r,u-h,m-p,b-x).normalize(),t[5].setComponents(o+r,u+h,m+p,b+x).normalize(),this}intersectsObject(e){const t=e.geometry;return t.boundingSphere===null&&t.computeBoundingSphere(),or.copy(t.boundingSphere).applyMatrix4(e.matrixWorld),this.intersectsSphere(or)}intersectsSprite(e){return or.center.set(0,0,0),or.radius=.7071067811865476,or.applyMatrix4(e.matrixWorld),this.intersectsSphere(or)}intersectsSphere(e){const t=this.planes,n=e.center,i=-e.radius;for(let s=0;s<6;s++)if(t[s].distanceToPoint(n)<i)return!1;return!0}intersectsBox(e){const t=this.planes;for(let n=0;n<6;n++){const i=t[n];if(ba.x=i.normal.x>0?e.max.x:e.min.x,ba.y=i.normal.y>0?e.max.y:e.min.y,ba.z=i.normal.z>0?e.max.z:e.min.z,i.distanceToPoint(ba)<0)return!1}return!0}containsPoint(e){const t=this.planes;for(let n=0;n<6;n++)if(t[n].distanceToPoint(e)<0)return!1;return!0}clone(){return new this.constructor().copy(this)}}function mp(){let a=null,e=!1,t=null,n=null;function i(s,r){t(s,r),n=a.requestAnimationFrame(i)}return{start:function(){e!==!0&&t!==null&&(n=a.requestAnimationFrame(i),e=!0)},stop:function(){a.cancelAnimationFrame(n),e=!1},setAnimationLoop:function(s){t=s},setContext:function(s){a=s}}}function b0(a,e){const t=e.isWebGL2,n=new WeakMap;function i(c,h){const u=c.array,f=c.usage,d=a.createBuffer();a.bindBuffer(h,d),a.bufferData(h,u,f),c.onUploadCallback();let p;if(u instanceof Float32Array)p=5126;else if(u instanceof Uint16Array)if(c.isFloat16BufferAttribute)if(t)p=5131;else throw new Error(\"THREE.WebGLAttributes: Usage of Float16BufferAttribute requires WebGL2.\");else p=5123;else if(u instanceof Int16Array)p=5122;else if(u instanceof Uint32Array)p=5125;else if(u instanceof Int32Array)p=5124;else if(u instanceof Int8Array)p=5120;else if(u instanceof Uint8Array)p=5121;else if(u instanceof Uint8ClampedArray)p=5121;else throw new Error(\"THREE.WebGLAttributes: Unsupported buffer data format: \"+u);return{buffer:d,type:p,bytesPerElement:u.BYTES_PER_ELEMENT,version:c.version}}function s(c,h,u){const f=h.array,d=h.updateRange;a.bindBuffer(u,c),d.count===-1?a.bufferSubData(u,0,f):(t?a.bufferSubData(u,d.offset*f.BYTES_PER_ELEMENT,f,d.offset,d.count):a.bufferSubData(u,d.offset*f.BYTES_PER_ELEMENT,f.subarray(d.offset,d.offset+d.count)),d.count=-1)}function r(c){return c.isInterleavedBufferAttribute&&(c=c.data),n.get(c)}function o(c){c.isInterleavedBufferAttribute&&(c=c.data);const h=n.get(c);h&&(a.deleteBuffer(h.buffer),n.delete(c))}function l(c,h){if(c.isGLBufferAttribute){const f=n.get(c);(!f||f.version<c.version)&&n.set(c,{buffer:c.buffer,type:c.type,bytesPerElement:c.elementSize,version:c.version});return}c.isInterleavedBufferAttribute&&(c=c.data);const u=n.get(c);u===void 0?n.set(c,i(c,h)):u.version<c.version&&(s(u.buffer,c,h),u.version=c.version)}return{get:r,remove:o,update:l}}class Ps extends Xe{constructor(e=1,t=1,n=1,i=1){super(),this.type=\"PlaneGeometry\",this.parameters={width:e,height:t,widthSegments:n,heightSegments:i};const s=e/2,r=t/2,o=Math.floor(n),l=Math.floor(i),c=o+1,h=l+1,u=e/o,f=t/l,d=[],p=[],m=[],g=[];for(let y=0;y<h;y++){const x=y*f-r;for(let b=0;b<c;b++){const v=b*u-s;p.push(v,-x,0),m.push(0,0,1),g.push(b/o),g.push(1-y/l)}}for(let y=0;y<l;y++)for(let x=0;x<o;x++){const b=x+c*y,v=x+c*(y+1),M=x+1+c*(y+1),T=x+1+c*y;d.push(b,v,T),d.push(v,M,T)}this.setIndex(d),this.setAttribute(\"position\",new Ce(p,3)),this.setAttribute(\"normal\",new Ce(m,3)),this.setAttribute(\"uv\",new Ce(g,2))}static fromJSON(e){return new Ps(e.width,e.height,e.widthSegments,e.heightSegments)}}var w0=`#ifdef USE_ALPHAMAP\n\tdiffuseColor.a *= texture2D( alphaMap, vUv ).g;\n#endif`,M0=`#ifdef USE_ALPHAMAP\n\tuniform sampler2D alphaMap;\n#endif`,S0=`#ifdef USE_ALPHATEST\n\tif ( diffuseColor.a < alphaTest ) discard;\n#endif`,T0=`#ifdef USE_ALPHATEST\n\tuniform float alphaTest;\n#endif`,A0=`#ifdef USE_AOMAP\n\tfloat ambientOcclusion = ( texture2D( aoMap, vUv2 ).r - 1.0 ) * aoMapIntensity + 1.0;\n\treflectedLight.indirectDiffuse *= ambientOcclusion;\n\t#if defined( USE_ENVMAP ) && defined( STANDARD )\n\t\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\t\treflectedLight.indirectSpecular *= computeSpecularOcclusion( dotNV, ambientOcclusion, material.roughness );\n\t#endif\n#endif`,E0=`#ifdef USE_AOMAP\n\tuniform sampler2D aoMap;\n\tuniform float aoMapIntensity;\n#endif`,C0=\"vec3 transformed = vec3( position );\",L0=`vec3 objectNormal = vec3( normal );\n#ifdef USE_TANGENT\n\tvec3 objectTangent = vec3( tangent.xyz );\n#endif`,R0=`vec3 BRDF_Lambert( const in vec3 diffuseColor ) {\n\treturn RECIPROCAL_PI * diffuseColor;\n}\nvec3 F_Schlick( const in vec3 f0, const in float f90, const in float dotVH ) {\n\tfloat fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH );\n\treturn f0 * ( 1.0 - fresnel ) + ( f90 * fresnel );\n}\nfloat F_Schlick( const in float f0, const in float f90, const in float dotVH ) {\n\tfloat fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH );\n\treturn f0 * ( 1.0 - fresnel ) + ( f90 * fresnel );\n}\nvec3 Schlick_to_F0( const in vec3 f, const in float f90, const in float dotVH ) {\n    float x = clamp( 1.0 - dotVH, 0.0, 1.0 );\n    float x2 = x * x;\n    float x5 = clamp( x * x2 * x2, 0.0, 0.9999 );\n    return ( f - vec3( f90 ) * x5 ) / ( 1.0 - x5 );\n}\nfloat V_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\tfloat gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\treturn 0.5 / max( gv + gl, EPSILON );\n}\nfloat D_GGX( const in float alpha, const in float dotNH ) {\n\tfloat a2 = pow2( alpha );\n\tfloat denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0;\n\treturn RECIPROCAL_PI * a2 / pow2( denom );\n}\nvec3 BRDF_GGX( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 f0, const in float f90, const in float roughness ) {\n\tfloat alpha = pow2( roughness );\n\tvec3 halfDir = normalize( lightDir + viewDir );\n\tfloat dotNL = saturate( dot( normal, lightDir ) );\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\n\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\n\tvec3 F = F_Schlick( f0, f90, dotVH );\n\tfloat V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\tfloat D = D_GGX( alpha, dotNH );\n\treturn F * ( V * D );\n}\n#ifdef USE_IRIDESCENCE\n\tvec3 BRDF_GGX_Iridescence( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 f0, const in float f90, const in float iridescence, const in vec3 iridescenceFresnel, const in float roughness ) {\n\t\tfloat alpha = pow2( roughness );\n\t\tvec3 halfDir = normalize( lightDir + viewDir );\n\t\tfloat dotNL = saturate( dot( normal, lightDir ) );\n\t\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\t\tfloat dotNH = saturate( dot( normal, halfDir ) );\n\t\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\n\t\tvec3 F = mix( F_Schlick( f0, f90, dotVH ), iridescenceFresnel, iridescence );\n\t\tfloat V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\t\tfloat D = D_GGX( alpha, dotNH );\n\t\treturn F * ( V * D );\n\t}\n#endif\nvec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) {\n\tconst float LUT_SIZE = 64.0;\n\tconst float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE;\n\tconst float LUT_BIAS = 0.5 / LUT_SIZE;\n\tfloat dotNV = saturate( dot( N, V ) );\n\tvec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) );\n\tuv = uv * LUT_SCALE + LUT_BIAS;\n\treturn uv;\n}\nfloat LTC_ClippedSphereFormFactor( const in vec3 f ) {\n\tfloat l = length( f );\n\treturn max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 );\n}\nvec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) {\n\tfloat x = dot( v1, v2 );\n\tfloat y = abs( x );\n\tfloat a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y;\n\tfloat b = 3.4175940 + ( 4.1616724 + y ) * y;\n\tfloat v = a / b;\n\tfloat theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v;\n\treturn cross( v1, v2 ) * theta_sintheta;\n}\nvec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) {\n\tvec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ];\n\tvec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ];\n\tvec3 lightNormal = cross( v1, v2 );\n\tif( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 );\n\tvec3 T1, T2;\n\tT1 = normalize( V - N * dot( V, N ) );\n\tT2 = - cross( N, T1 );\n\tmat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) );\n\tvec3 coords[ 4 ];\n\tcoords[ 0 ] = mat * ( rectCoords[ 0 ] - P );\n\tcoords[ 1 ] = mat * ( rectCoords[ 1 ] - P );\n\tcoords[ 2 ] = mat * ( rectCoords[ 2 ] - P );\n\tcoords[ 3 ] = mat * ( rectCoords[ 3 ] - P );\n\tcoords[ 0 ] = normalize( coords[ 0 ] );\n\tcoords[ 1 ] = normalize( coords[ 1 ] );\n\tcoords[ 2 ] = normalize( coords[ 2 ] );\n\tcoords[ 3 ] = normalize( coords[ 3 ] );\n\tvec3 vectorFormFactor = vec3( 0.0 );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] );\n\tfloat result = LTC_ClippedSphereFormFactor( vectorFormFactor );\n\treturn vec3( result );\n}\nfloat G_BlinnPhong_Implicit( ) {\n\treturn 0.25;\n}\nfloat D_BlinnPhong( const in float shininess, const in float dotNH ) {\n\treturn RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess );\n}\nvec3 BRDF_BlinnPhong( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 specularColor, const in float shininess ) {\n\tvec3 halfDir = normalize( lightDir + viewDir );\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\n\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, 1.0, dotVH );\n\tfloat G = G_BlinnPhong_Implicit( );\n\tfloat D = D_BlinnPhong( shininess, dotNH );\n\treturn F * ( G * D );\n}\n#if defined( USE_SHEEN )\nfloat D_Charlie( float roughness, float dotNH ) {\n\tfloat alpha = pow2( roughness );\n\tfloat invAlpha = 1.0 / alpha;\n\tfloat cos2h = dotNH * dotNH;\n\tfloat sin2h = max( 1.0 - cos2h, 0.0078125 );\n\treturn ( 2.0 + invAlpha ) * pow( sin2h, invAlpha * 0.5 ) / ( 2.0 * PI );\n}\nfloat V_Neubelt( float dotNV, float dotNL ) {\n\treturn saturate( 1.0 / ( 4.0 * ( dotNL + dotNV - dotNL * dotNV ) ) );\n}\nvec3 BRDF_Sheen( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, vec3 sheenColor, const in float sheenRoughness ) {\n\tvec3 halfDir = normalize( lightDir + viewDir );\n\tfloat dotNL = saturate( dot( normal, lightDir ) );\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\n\tfloat D = D_Charlie( sheenRoughness, dotNH );\n\tfloat V = V_Neubelt( dotNV, dotNL );\n\treturn sheenColor * ( D * V );\n}\n#endif`,I0=`#ifdef USE_IRIDESCENCE\n\tconst mat3 XYZ_TO_REC709 = mat3(\n\t\t 3.2404542, -0.9692660,  0.0556434,\n\t\t-1.5371385,  1.8760108, -0.2040259,\n\t\t-0.4985314,  0.0415560,  1.0572252\n\t);\n\tvec3 Fresnel0ToIor( vec3 fresnel0 ) {\n\t\tvec3 sqrtF0 = sqrt( fresnel0 );\n\t\treturn ( vec3( 1.0 ) + sqrtF0 ) / ( vec3( 1.0 ) - sqrtF0 );\n\t}\n\tvec3 IorToFresnel0( vec3 transmittedIor, float incidentIor ) {\n\t\treturn pow2( ( transmittedIor - vec3( incidentIor ) ) / ( transmittedIor + vec3( incidentIor ) ) );\n\t}\n\tfloat IorToFresnel0( float transmittedIor, float incidentIor ) {\n\t\treturn pow2( ( transmittedIor - incidentIor ) / ( transmittedIor + incidentIor ));\n\t}\n\tvec3 evalSensitivity( float OPD, vec3 shift ) {\n\t\tfloat phase = 2.0 * PI * OPD * 1.0e-9;\n\t\tvec3 val = vec3( 5.4856e-13, 4.4201e-13, 5.2481e-13 );\n\t\tvec3 pos = vec3( 1.6810e+06, 1.7953e+06, 2.2084e+06 );\n\t\tvec3 var = vec3( 4.3278e+09, 9.3046e+09, 6.6121e+09 );\n\t\tvec3 xyz = val * sqrt( 2.0 * PI * var ) * cos( pos * phase + shift ) * exp( - pow2( phase ) * var );\n\t\txyz.x += 9.7470e-14 * sqrt( 2.0 * PI * 4.5282e+09 ) * cos( 2.2399e+06 * phase + shift[ 0 ] ) * exp( - 4.5282e+09 * pow2( phase ) );\n\t\txyz /= 1.0685e-7;\n\t\tvec3 rgb = XYZ_TO_REC709 * xyz;\n\t\treturn rgb;\n\t}\n\tvec3 evalIridescence( float outsideIOR, float eta2, float cosTheta1, float thinFilmThickness, vec3 baseF0 ) {\n\t\tvec3 I;\n\t\tfloat iridescenceIOR = mix( outsideIOR, eta2, smoothstep( 0.0, 0.03, thinFilmThickness ) );\n\t\tfloat sinTheta2Sq = pow2( outsideIOR / iridescenceIOR ) * ( 1.0 - pow2( cosTheta1 ) );\n\t\tfloat cosTheta2Sq = 1.0 - sinTheta2Sq;\n\t\tif ( cosTheta2Sq < 0.0 ) {\n\t\t\t return vec3( 1.0 );\n\t\t}\n\t\tfloat cosTheta2 = sqrt( cosTheta2Sq );\n\t\tfloat R0 = IorToFresnel0( iridescenceIOR, outsideIOR );\n\t\tfloat R12 = F_Schlick( R0, 1.0, cosTheta1 );\n\t\tfloat R21 = R12;\n\t\tfloat T121 = 1.0 - R12;\n\t\tfloat phi12 = 0.0;\n\t\tif ( iridescenceIOR < outsideIOR ) phi12 = PI;\n\t\tfloat phi21 = PI - phi12;\n\t\tvec3 baseIOR = Fresnel0ToIor( clamp( baseF0, 0.0, 0.9999 ) );\t\tvec3 R1 = IorToFresnel0( baseIOR, iridescenceIOR );\n\t\tvec3 R23 = F_Schlick( R1, 1.0, cosTheta2 );\n\t\tvec3 phi23 = vec3( 0.0 );\n\t\tif ( baseIOR[ 0 ] < iridescenceIOR ) phi23[ 0 ] = PI;\n\t\tif ( baseIOR[ 1 ] < iridescenceIOR ) phi23[ 1 ] = PI;\n\t\tif ( baseIOR[ 2 ] < iridescenceIOR ) phi23[ 2 ] = PI;\n\t\tfloat OPD = 2.0 * iridescenceIOR * thinFilmThickness * cosTheta2;\n\t\tvec3 phi = vec3( phi21 ) + phi23;\n\t\tvec3 R123 = clamp( R12 * R23, 1e-5, 0.9999 );\n\t\tvec3 r123 = sqrt( R123 );\n\t\tvec3 Rs = pow2( T121 ) * R23 / ( vec3( 1.0 ) - R123 );\n\t\tvec3 C0 = R12 + Rs;\n\t\tI = C0;\n\t\tvec3 Cm = Rs - T121;\n\t\tfor ( int m = 1; m <= 2; ++ m ) {\n\t\t\tCm *= r123;\n\t\t\tvec3 Sm = 2.0 * evalSensitivity( float( m ) * OPD, float( m ) * phi );\n\t\t\tI += Cm * Sm;\n\t\t}\n\t\treturn max( I, vec3( 0.0 ) );\n\t}\n#endif`,P0=`#ifdef USE_BUMPMAP\n\tuniform sampler2D bumpMap;\n\tuniform float bumpScale;\n\tvec2 dHdxy_fwd() {\n\t\tvec2 dSTdx = dFdx( vUv );\n\t\tvec2 dSTdy = dFdy( vUv );\n\t\tfloat Hll = bumpScale * texture2D( bumpMap, vUv ).x;\n\t\tfloat dBx = bumpScale * texture2D( bumpMap, vUv + dSTdx ).x - Hll;\n\t\tfloat dBy = bumpScale * texture2D( bumpMap, vUv + dSTdy ).x - Hll;\n\t\treturn vec2( dBx, dBy );\n\t}\n\tvec3 perturbNormalArb( vec3 surf_pos, vec3 surf_norm, vec2 dHdxy, float faceDirection ) {\n\t\tvec3 vSigmaX = dFdx( surf_pos.xyz );\n\t\tvec3 vSigmaY = dFdy( surf_pos.xyz );\n\t\tvec3 vN = surf_norm;\n\t\tvec3 R1 = cross( vSigmaY, vN );\n\t\tvec3 R2 = cross( vN, vSigmaX );\n\t\tfloat fDet = dot( vSigmaX, R1 ) * faceDirection;\n\t\tvec3 vGrad = sign( fDet ) * ( dHdxy.x * R1 + dHdxy.y * R2 );\n\t\treturn normalize( abs( fDet ) * surf_norm - vGrad );\n\t}\n#endif`,D0=`#if NUM_CLIPPING_PLANES > 0\n\tvec4 plane;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) {\n\t\tplane = clippingPlanes[ i ];\n\t\tif ( dot( vClipPosition, plane.xyz ) > plane.w ) discard;\n\t}\n\t#pragma unroll_loop_end\n\t#if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES\n\t\tbool clipped = true;\n\t\t#pragma unroll_loop_start\n\t\tfor ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) {\n\t\t\tplane = clippingPlanes[ i ];\n\t\t\tclipped = ( dot( vClipPosition, plane.xyz ) > plane.w ) && clipped;\n\t\t}\n\t\t#pragma unroll_loop_end\n\t\tif ( clipped ) discard;\n\t#endif\n#endif`,F0=`#if NUM_CLIPPING_PLANES > 0\n\tvarying vec3 vClipPosition;\n\tuniform vec4 clippingPlanes[ NUM_CLIPPING_PLANES ];\n#endif`,N0=`#if NUM_CLIPPING_PLANES > 0\n\tvarying vec3 vClipPosition;\n#endif`,k0=`#if NUM_CLIPPING_PLANES > 0\n\tvClipPosition = - mvPosition.xyz;\n#endif`,O0=`#if defined( USE_COLOR_ALPHA )\n\tdiffuseColor *= vColor;\n#elif defined( USE_COLOR )\n\tdiffuseColor.rgb *= vColor;\n#endif`,B0=`#if defined( USE_COLOR_ALPHA )\n\tvarying vec4 vColor;\n#elif defined( USE_COLOR )\n\tvarying vec3 vColor;\n#endif`,z0=`#if defined( USE_COLOR_ALPHA )\n\tvarying vec4 vColor;\n#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR )\n\tvarying vec3 vColor;\n#endif`,U0=`#if defined( USE_COLOR_ALPHA )\n\tvColor = vec4( 1.0 );\n#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR )\n\tvColor = vec3( 1.0 );\n#endif\n#ifdef USE_COLOR\n\tvColor *= color;\n#endif\n#ifdef USE_INSTANCING_COLOR\n\tvColor.xyz *= instanceColor.xyz;\n#endif`,G0=`#define PI 3.141592653589793\n#define PI2 6.283185307179586\n#define PI_HALF 1.5707963267948966\n#define RECIPROCAL_PI 0.3183098861837907\n#define RECIPROCAL_PI2 0.15915494309189535\n#define EPSILON 1e-6\n#ifndef saturate\n#define saturate( a ) clamp( a, 0.0, 1.0 )\n#endif\n#define whiteComplement( a ) ( 1.0 - saturate( a ) )\nfloat pow2( const in float x ) { return x*x; }\nvec3 pow2( const in vec3 x ) { return x*x; }\nfloat pow3( const in float x ) { return x*x*x; }\nfloat pow4( const in float x ) { float x2 = x*x; return x2*x2; }\nfloat max3( const in vec3 v ) { return max( max( v.x, v.y ), v.z ); }\nfloat average( const in vec3 v ) { return dot( v, vec3( 0.3333333 ) ); }\nhighp float rand( const in vec2 uv ) {\n\tconst highp float a = 12.9898, b = 78.233, c = 43758.5453;\n\thighp float dt = dot( uv.xy, vec2( a,b ) ), sn = mod( dt, PI );\n\treturn fract( sin( sn ) * c );\n}\n#ifdef HIGH_PRECISION\n\tfloat precisionSafeLength( vec3 v ) { return length( v ); }\n#else\n\tfloat precisionSafeLength( vec3 v ) {\n\t\tfloat maxComponent = max3( abs( v ) );\n\t\treturn length( v / maxComponent ) * maxComponent;\n\t}\n#endif\nstruct IncidentLight {\n\tvec3 color;\n\tvec3 direction;\n\tbool visible;\n};\nstruct ReflectedLight {\n\tvec3 directDiffuse;\n\tvec3 directSpecular;\n\tvec3 indirectDiffuse;\n\tvec3 indirectSpecular;\n};\nstruct GeometricContext {\n\tvec3 position;\n\tvec3 normal;\n\tvec3 viewDir;\n#ifdef USE_CLEARCOAT\n\tvec3 clearcoatNormal;\n#endif\n};\nvec3 transformDirection( in vec3 dir, in mat4 matrix ) {\n\treturn normalize( ( matrix * vec4( dir, 0.0 ) ).xyz );\n}\nvec3 inverseTransformDirection( in vec3 dir, in mat4 matrix ) {\n\treturn normalize( ( vec4( dir, 0.0 ) * matrix ).xyz );\n}\nmat3 transposeMat3( const in mat3 m ) {\n\tmat3 tmp;\n\ttmp[ 0 ] = vec3( m[ 0 ].x, m[ 1 ].x, m[ 2 ].x );\n\ttmp[ 1 ] = vec3( m[ 0 ].y, m[ 1 ].y, m[ 2 ].y );\n\ttmp[ 2 ] = vec3( m[ 0 ].z, m[ 1 ].z, m[ 2 ].z );\n\treturn tmp;\n}\nfloat luminance( const in vec3 rgb ) {\n\tconst vec3 weights = vec3( 0.2126729, 0.7151522, 0.0721750 );\n\treturn dot( weights, rgb );\n}\nbool isPerspectiveMatrix( mat4 m ) {\n\treturn m[ 2 ][ 3 ] == - 1.0;\n}\nvec2 equirectUv( in vec3 dir ) {\n\tfloat u = atan( dir.z, dir.x ) * RECIPROCAL_PI2 + 0.5;\n\tfloat v = asin( clamp( dir.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\n\treturn vec2( u, v );\n}`,V0=`#ifdef ENVMAP_TYPE_CUBE_UV\n\t#define cubeUV_minMipLevel 4.0\n\t#define cubeUV_minTileSize 16.0\n\tfloat getFace( vec3 direction ) {\n\t\tvec3 absDirection = abs( direction );\n\t\tfloat face = - 1.0;\n\t\tif ( absDirection.x > absDirection.z ) {\n\t\t\tif ( absDirection.x > absDirection.y )\n\t\t\t\tface = direction.x > 0.0 ? 0.0 : 3.0;\n\t\t\telse\n\t\t\t\tface = direction.y > 0.0 ? 1.0 : 4.0;\n\t\t} else {\n\t\t\tif ( absDirection.z > absDirection.y )\n\t\t\t\tface = direction.z > 0.0 ? 2.0 : 5.0;\n\t\t\telse\n\t\t\t\tface = direction.y > 0.0 ? 1.0 : 4.0;\n\t\t}\n\t\treturn face;\n\t}\n\tvec2 getUV( vec3 direction, float face ) {\n\t\tvec2 uv;\n\t\tif ( face == 0.0 ) {\n\t\t\tuv = vec2( direction.z, direction.y ) / abs( direction.x );\n\t\t} else if ( face == 1.0 ) {\n\t\t\tuv = vec2( - direction.x, - direction.z ) / abs( direction.y );\n\t\t} else if ( face == 2.0 ) {\n\t\t\tuv = vec2( - direction.x, direction.y ) / abs( direction.z );\n\t\t} else if ( face == 3.0 ) {\n\t\t\tuv = vec2( - direction.z, direction.y ) / abs( direction.x );\n\t\t} else if ( face == 4.0 ) {\n\t\t\tuv = vec2( - direction.x, direction.z ) / abs( direction.y );\n\t\t} else {\n\t\t\tuv = vec2( direction.x, direction.y ) / abs( direction.z );\n\t\t}\n\t\treturn 0.5 * ( uv + 1.0 );\n\t}\n\tvec3 bilinearCubeUV( sampler2D envMap, vec3 direction, float mipInt ) {\n\t\tfloat face = getFace( direction );\n\t\tfloat filterInt = max( cubeUV_minMipLevel - mipInt, 0.0 );\n\t\tmipInt = max( mipInt, cubeUV_minMipLevel );\n\t\tfloat faceSize = exp2( mipInt );\n\t\tvec2 uv = getUV( direction, face ) * ( faceSize - 2.0 ) + 1.0;\n\t\tif ( face > 2.0 ) {\n\t\t\tuv.y += faceSize;\n\t\t\tface -= 3.0;\n\t\t}\n\t\tuv.x += face * faceSize;\n\t\tuv.x += filterInt * 3.0 * cubeUV_minTileSize;\n\t\tuv.y += 4.0 * ( exp2( CUBEUV_MAX_MIP ) - faceSize );\n\t\tuv.x *= CUBEUV_TEXEL_WIDTH;\n\t\tuv.y *= CUBEUV_TEXEL_HEIGHT;\n\t\t#ifdef texture2DGradEXT\n\t\t\treturn texture2DGradEXT( envMap, uv, vec2( 0.0 ), vec2( 0.0 ) ).rgb;\n\t\t#else\n\t\t\treturn texture2D( envMap, uv ).rgb;\n\t\t#endif\n\t}\n\t#define r0 1.0\n\t#define v0 0.339\n\t#define m0 - 2.0\n\t#define r1 0.8\n\t#define v1 0.276\n\t#define m1 - 1.0\n\t#define r4 0.4\n\t#define v4 0.046\n\t#define m4 2.0\n\t#define r5 0.305\n\t#define v5 0.016\n\t#define m5 3.0\n\t#define r6 0.21\n\t#define v6 0.0038\n\t#define m6 4.0\n\tfloat roughnessToMip( float roughness ) {\n\t\tfloat mip = 0.0;\n\t\tif ( roughness >= r1 ) {\n\t\t\tmip = ( r0 - roughness ) * ( m1 - m0 ) / ( r0 - r1 ) + m0;\n\t\t} else if ( roughness >= r4 ) {\n\t\t\tmip = ( r1 - roughness ) * ( m4 - m1 ) / ( r1 - r4 ) + m1;\n\t\t} else if ( roughness >= r5 ) {\n\t\t\tmip = ( r4 - roughness ) * ( m5 - m4 ) / ( r4 - r5 ) + m4;\n\t\t} else if ( roughness >= r6 ) {\n\t\t\tmip = ( r5 - roughness ) * ( m6 - m5 ) / ( r5 - r6 ) + m5;\n\t\t} else {\n\t\t\tmip = - 2.0 * log2( 1.16 * roughness );\t\t}\n\t\treturn mip;\n\t}\n\tvec4 textureCubeUV( sampler2D envMap, vec3 sampleDir, float roughness ) {\n\t\tfloat mip = clamp( roughnessToMip( roughness ), m0, CUBEUV_MAX_MIP );\n\t\tfloat mipF = fract( mip );\n\t\tfloat mipInt = floor( mip );\n\t\tvec3 color0 = bilinearCubeUV( envMap, sampleDir, mipInt );\n\t\tif ( mipF == 0.0 ) {\n\t\t\treturn vec4( color0, 1.0 );\n\t\t} else {\n\t\t\tvec3 color1 = bilinearCubeUV( envMap, sampleDir, mipInt + 1.0 );\n\t\t\treturn vec4( mix( color0, color1, mipF ), 1.0 );\n\t\t}\n\t}\n#endif`,H0=`vec3 transformedNormal = objectNormal;\n#ifdef USE_INSTANCING\n\tmat3 m = mat3( instanceMatrix );\n\ttransformedNormal /= vec3( dot( m[ 0 ], m[ 0 ] ), dot( m[ 1 ], m[ 1 ] ), dot( m[ 2 ], m[ 2 ] ) );\n\ttransformedNormal = m * transformedNormal;\n#endif\ntransformedNormal = normalMatrix * transformedNormal;\n#ifdef FLIP_SIDED\n\ttransformedNormal = - transformedNormal;\n#endif\n#ifdef USE_TANGENT\n\tvec3 transformedTangent = ( modelViewMatrix * vec4( objectTangent, 0.0 ) ).xyz;\n\t#ifdef FLIP_SIDED\n\t\ttransformedTangent = - transformedTangent;\n\t#endif\n#endif`,W0=`#ifdef USE_DISPLACEMENTMAP\n\tuniform sampler2D displacementMap;\n\tuniform float displacementScale;\n\tuniform float displacementBias;\n#endif`,q0=`#ifdef USE_DISPLACEMENTMAP\n\ttransformed += normalize( objectNormal ) * ( texture2D( displacementMap, vUv ).x * displacementScale + displacementBias );\n#endif`,X0=`#ifdef USE_EMISSIVEMAP\n\tvec4 emissiveColor = texture2D( emissiveMap, vUv );\n\ttotalEmissiveRadiance *= emissiveColor.rgb;\n#endif`,j0=`#ifdef USE_EMISSIVEMAP\n\tuniform sampler2D emissiveMap;\n#endif`,Y0=\"gl_FragColor = linearToOutputTexel( gl_FragColor );\",Z0=`vec4 LinearToLinear( in vec4 value ) {\n\treturn value;\n}\nvec4 LinearTosRGB( in vec4 value ) {\n\treturn vec4( mix( pow( value.rgb, vec3( 0.41666 ) ) * 1.055 - vec3( 0.055 ), value.rgb * 12.92, vec3( lessThanEqual( value.rgb, vec3( 0.0031308 ) ) ) ), value.a );\n}`,K0=`#ifdef USE_ENVMAP\n\t#ifdef ENV_WORLDPOS\n\t\tvec3 cameraToFrag;\n\t\tif ( isOrthographic ) {\n\t\t\tcameraToFrag = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) );\n\t\t} else {\n\t\t\tcameraToFrag = normalize( vWorldPosition - cameraPosition );\n\t\t}\n\t\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\n\t\t#ifdef ENVMAP_MODE_REFLECTION\n\t\t\tvec3 reflectVec = reflect( cameraToFrag, worldNormal );\n\t\t#else\n\t\t\tvec3 reflectVec = refract( cameraToFrag, worldNormal, refractionRatio );\n\t\t#endif\n\t#else\n\t\tvec3 reflectVec = vReflect;\n\t#endif\n\t#ifdef ENVMAP_TYPE_CUBE\n\t\tvec4 envColor = textureCube( envMap, vec3( flipEnvMap * reflectVec.x, reflectVec.yz ) );\n\t#elif defined( ENVMAP_TYPE_CUBE_UV )\n\t\tvec4 envColor = textureCubeUV( envMap, reflectVec, 0.0 );\n\t#else\n\t\tvec4 envColor = vec4( 0.0 );\n\t#endif\n\t#ifdef ENVMAP_BLENDING_MULTIPLY\n\t\toutgoingLight = mix( outgoingLight, outgoingLight * envColor.xyz, specularStrength * reflectivity );\n\t#elif defined( ENVMAP_BLENDING_MIX )\n\t\toutgoingLight = mix( outgoingLight, envColor.xyz, specularStrength * reflectivity );\n\t#elif defined( ENVMAP_BLENDING_ADD )\n\t\toutgoingLight += envColor.xyz * specularStrength * reflectivity;\n\t#endif\n#endif`,J0=`#ifdef USE_ENVMAP\n\tuniform float envMapIntensity;\n\tuniform float flipEnvMap;\n\t#ifdef ENVMAP_TYPE_CUBE\n\t\tuniform samplerCube envMap;\n\t#else\n\t\tuniform sampler2D envMap;\n\t#endif\n\t\n#endif`,$0=`#ifdef USE_ENVMAP\n\tuniform float reflectivity;\n\t#if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG )\n\t\t#define ENV_WORLDPOS\n\t#endif\n\t#ifdef ENV_WORLDPOS\n\t\tvarying vec3 vWorldPosition;\n\t\tuniform float refractionRatio;\n\t#else\n\t\tvarying vec3 vReflect;\n\t#endif\n#endif`,Q0=`#ifdef USE_ENVMAP\n\t#if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) ||defined( PHONG )\n\t\t#define ENV_WORLDPOS\n\t#endif\n\t#ifdef ENV_WORLDPOS\n\t\t\n\t\tvarying vec3 vWorldPosition;\n\t#else\n\t\tvarying vec3 vReflect;\n\t\tuniform float refractionRatio;\n\t#endif\n#endif`,ey=`#ifdef USE_ENVMAP\n\t#ifdef ENV_WORLDPOS\n\t\tvWorldPosition = worldPosition.xyz;\n\t#else\n\t\tvec3 cameraToVertex;\n\t\tif ( isOrthographic ) {\n\t\t\tcameraToVertex = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) );\n\t\t} else {\n\t\t\tcameraToVertex = normalize( worldPosition.xyz - cameraPosition );\n\t\t}\n\t\tvec3 worldNormal = inverseTransformDirection( transformedNormal, viewMatrix );\n\t\t#ifdef ENVMAP_MODE_REFLECTION\n\t\t\tvReflect = reflect( cameraToVertex, worldNormal );\n\t\t#else\n\t\t\tvReflect = refract( cameraToVertex, worldNormal, refractionRatio );\n\t\t#endif\n\t#endif\n#endif`,ty=`#ifdef USE_FOG\n\tvFogDepth = - mvPosition.z;\n#endif`,ny=`#ifdef USE_FOG\n\tvarying float vFogDepth;\n#endif`,iy=`#ifdef USE_FOG\n\t#ifdef FOG_EXP2\n\t\tfloat fogFactor = 1.0 - exp( - fogDensity * fogDensity * vFogDepth * vFogDepth );\n\t#else\n\t\tfloat fogFactor = smoothstep( fogNear, fogFar, vFogDepth );\n\t#endif\n\tgl_FragColor.rgb = mix( gl_FragColor.rgb, fogColor, fogFactor );\n#endif`,sy=`#ifdef USE_FOG\n\tuniform vec3 fogColor;\n\tvarying float vFogDepth;\n\t#ifdef FOG_EXP2\n\t\tuniform float fogDensity;\n\t#else\n\t\tuniform float fogNear;\n\t\tuniform float fogFar;\n\t#endif\n#endif`,ry=`#ifdef USE_GRADIENTMAP\n\tuniform sampler2D gradientMap;\n#endif\nvec3 getGradientIrradiance( vec3 normal, vec3 lightDirection ) {\n\tfloat dotNL = dot( normal, lightDirection );\n\tvec2 coord = vec2( dotNL * 0.5 + 0.5, 0.0 );\n\t#ifdef USE_GRADIENTMAP\n\t\treturn vec3( texture2D( gradientMap, coord ).r );\n\t#else\n\t\treturn ( coord.x < 0.7 ) ? vec3( 0.7 ) : vec3( 1.0 );\n\t#endif\n}`,oy=`#ifdef USE_LIGHTMAP\n\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\n\tvec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity;\n\treflectedLight.indirectDiffuse += lightMapIrradiance;\n#endif`,ay=`#ifdef USE_LIGHTMAP\n\tuniform sampler2D lightMap;\n\tuniform float lightMapIntensity;\n#endif`,ly=`vec3 diffuse = vec3( 1.0 );\nGeometricContext geometry;\ngeometry.position = mvPosition.xyz;\ngeometry.normal = normalize( transformedNormal );\ngeometry.viewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( -mvPosition.xyz );\nGeometricContext backGeometry;\nbackGeometry.position = geometry.position;\nbackGeometry.normal = -geometry.normal;\nbackGeometry.viewDir = geometry.viewDir;\nvLightFront = vec3( 0.0 );\nvIndirectFront = vec3( 0.0 );\n#ifdef DOUBLE_SIDED\n\tvLightBack = vec3( 0.0 );\n\tvIndirectBack = vec3( 0.0 );\n#endif\nIncidentLight directLight;\nfloat dotNL;\nvec3 directLightColor_Diffuse;\nvIndirectFront += getAmbientLightIrradiance( ambientLightColor );\nvIndirectFront += getLightProbeIrradiance( lightProbe, geometry.normal );\n#ifdef DOUBLE_SIDED\n\tvIndirectBack += getAmbientLightIrradiance( ambientLightColor );\n\tvIndirectBack += getLightProbeIrradiance( lightProbe, backGeometry.normal );\n#endif\n#if NUM_POINT_LIGHTS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) {\n\t\tgetPointLightInfo( pointLights[ i ], geometry, directLight );\n\t\tdotNL = dot( geometry.normal, directLight.direction );\n\t\tdirectLightColor_Diffuse = directLight.color;\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\n\t\t#ifdef DOUBLE_SIDED\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\n\t\t#endif\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if NUM_SPOT_LIGHTS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) {\n\t\tgetSpotLightInfo( spotLights[ i ], geometry, directLight );\n\t\tdotNL = dot( geometry.normal, directLight.direction );\n\t\tdirectLightColor_Diffuse = directLight.color;\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\n\t\t#ifdef DOUBLE_SIDED\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\n\t\t#endif\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if NUM_DIR_LIGHTS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) {\n\t\tgetDirectionalLightInfo( directionalLights[ i ], geometry, directLight );\n\t\tdotNL = dot( geometry.normal, directLight.direction );\n\t\tdirectLightColor_Diffuse = directLight.color;\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\n\t\t#ifdef DOUBLE_SIDED\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\n\t\t#endif\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if NUM_HEMI_LIGHTS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) {\n\t\tvIndirectFront += getHemisphereLightIrradiance( hemisphereLights[ i ], geometry.normal );\n\t\t#ifdef DOUBLE_SIDED\n\t\t\tvIndirectBack += getHemisphereLightIrradiance( hemisphereLights[ i ], backGeometry.normal );\n\t\t#endif\n\t}\n\t#pragma unroll_loop_end\n#endif`,cy=`uniform bool receiveShadow;\nuniform vec3 ambientLightColor;\nuniform vec3 lightProbe[ 9 ];\nvec3 shGetIrradianceAt( in vec3 normal, in vec3 shCoefficients[ 9 ] ) {\n\tfloat x = normal.x, y = normal.y, z = normal.z;\n\tvec3 result = shCoefficients[ 0 ] * 0.886227;\n\tresult += shCoefficients[ 1 ] * 2.0 * 0.511664 * y;\n\tresult += shCoefficients[ 2 ] * 2.0 * 0.511664 * z;\n\tresult += shCoefficients[ 3 ] * 2.0 * 0.511664 * x;\n\tresult += shCoefficients[ 4 ] * 2.0 * 0.429043 * x * y;\n\tresult += shCoefficients[ 5 ] * 2.0 * 0.429043 * y * z;\n\tresult += shCoefficients[ 6 ] * ( 0.743125 * z * z - 0.247708 );\n\tresult += shCoefficients[ 7 ] * 2.0 * 0.429043 * x * z;\n\tresult += shCoefficients[ 8 ] * 0.429043 * ( x * x - y * y );\n\treturn result;\n}\nvec3 getLightProbeIrradiance( const in vec3 lightProbe[ 9 ], const in vec3 normal ) {\n\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\n\tvec3 irradiance = shGetIrradianceAt( worldNormal, lightProbe );\n\treturn irradiance;\n}\nvec3 getAmbientLightIrradiance( const in vec3 ambientLightColor ) {\n\tvec3 irradiance = ambientLightColor;\n\treturn irradiance;\n}\nfloat getDistanceAttenuation( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) {\n\t#if defined ( PHYSICALLY_CORRECT_LIGHTS )\n\t\tfloat distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 );\n\t\tif ( cutoffDistance > 0.0 ) {\n\t\t\tdistanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) );\n\t\t}\n\t\treturn distanceFalloff;\n\t#else\n\t\tif ( cutoffDistance > 0.0 && decayExponent > 0.0 ) {\n\t\t\treturn pow( saturate( - lightDistance / cutoffDistance + 1.0 ), decayExponent );\n\t\t}\n\t\treturn 1.0;\n\t#endif\n}\nfloat getSpotAttenuation( const in float coneCosine, const in float penumbraCosine, const in float angleCosine ) {\n\treturn smoothstep( coneCosine, penumbraCosine, angleCosine );\n}\n#if NUM_DIR_LIGHTS > 0\n\tstruct DirectionalLight {\n\t\tvec3 direction;\n\t\tvec3 color;\n\t};\n\tuniform DirectionalLight directionalLights[ NUM_DIR_LIGHTS ];\n\tvoid getDirectionalLightInfo( const in DirectionalLight directionalLight, const in GeometricContext geometry, out IncidentLight light ) {\n\t\tlight.color = directionalLight.color;\n\t\tlight.direction = directionalLight.direction;\n\t\tlight.visible = true;\n\t}\n#endif\n#if NUM_POINT_LIGHTS > 0\n\tstruct PointLight {\n\t\tvec3 position;\n\t\tvec3 color;\n\t\tfloat distance;\n\t\tfloat decay;\n\t};\n\tuniform PointLight pointLights[ NUM_POINT_LIGHTS ];\n\tvoid getPointLightInfo( const in PointLight pointLight, const in GeometricContext geometry, out IncidentLight light ) {\n\t\tvec3 lVector = pointLight.position - geometry.position;\n\t\tlight.direction = normalize( lVector );\n\t\tfloat lightDistance = length( lVector );\n\t\tlight.color = pointLight.color;\n\t\tlight.color *= getDistanceAttenuation( lightDistance, pointLight.distance, pointLight.decay );\n\t\tlight.visible = ( light.color != vec3( 0.0 ) );\n\t}\n#endif\n#if NUM_SPOT_LIGHTS > 0\n\tstruct SpotLight {\n\t\tvec3 position;\n\t\tvec3 direction;\n\t\tvec3 color;\n\t\tfloat distance;\n\t\tfloat decay;\n\t\tfloat coneCos;\n\t\tfloat penumbraCos;\n\t};\n\tuniform SpotLight spotLights[ NUM_SPOT_LIGHTS ];\n\tvoid getSpotLightInfo( const in SpotLight spotLight, const in GeometricContext geometry, out IncidentLight light ) {\n\t\tvec3 lVector = spotLight.position - geometry.position;\n\t\tlight.direction = normalize( lVector );\n\t\tfloat angleCos = dot( light.direction, spotLight.direction );\n\t\tfloat spotAttenuation = getSpotAttenuation( spotLight.coneCos, spotLight.penumbraCos, angleCos );\n\t\tif ( spotAttenuation > 0.0 ) {\n\t\t\tfloat lightDistance = length( lVector );\n\t\t\tlight.color = spotLight.color * spotAttenuation;\n\t\t\tlight.color *= getDistanceAttenuation( lightDistance, spotLight.distance, spotLight.decay );\n\t\t\tlight.visible = ( light.color != vec3( 0.0 ) );\n\t\t} else {\n\t\t\tlight.color = vec3( 0.0 );\n\t\t\tlight.visible = false;\n\t\t}\n\t}\n#endif\n#if NUM_RECT_AREA_LIGHTS > 0\n\tstruct RectAreaLight {\n\t\tvec3 color;\n\t\tvec3 position;\n\t\tvec3 halfWidth;\n\t\tvec3 halfHeight;\n\t};\n\tuniform sampler2D ltc_1;\tuniform sampler2D ltc_2;\n\tuniform RectAreaLight rectAreaLights[ NUM_RECT_AREA_LIGHTS ];\n#endif\n#if NUM_HEMI_LIGHTS > 0\n\tstruct HemisphereLight {\n\t\tvec3 direction;\n\t\tvec3 skyColor;\n\t\tvec3 groundColor;\n\t};\n\tuniform HemisphereLight hemisphereLights[ NUM_HEMI_LIGHTS ];\n\tvec3 getHemisphereLightIrradiance( const in HemisphereLight hemiLight, const in vec3 normal ) {\n\t\tfloat dotNL = dot( normal, hemiLight.direction );\n\t\tfloat hemiDiffuseWeight = 0.5 * dotNL + 0.5;\n\t\tvec3 irradiance = mix( hemiLight.groundColor, hemiLight.skyColor, hemiDiffuseWeight );\n\t\treturn irradiance;\n\t}\n#endif`,uy=`#if defined( USE_ENVMAP )\n\tvec3 getIBLIrradiance( const in vec3 normal ) {\n\t\t#if defined( ENVMAP_TYPE_CUBE_UV )\n\t\t\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\n\t\t\tvec4 envMapColor = textureCubeUV( envMap, worldNormal, 1.0 );\n\t\t\treturn PI * envMapColor.rgb * envMapIntensity;\n\t\t#else\n\t\t\treturn vec3( 0.0 );\n\t\t#endif\n\t}\n\tvec3 getIBLRadiance( const in vec3 viewDir, const in vec3 normal, const in float roughness ) {\n\t\t#if defined( ENVMAP_TYPE_CUBE_UV )\n\t\t\tvec3 reflectVec = reflect( - viewDir, normal );\n\t\t\treflectVec = normalize( mix( reflectVec, normal, roughness * roughness) );\n\t\t\treflectVec = inverseTransformDirection( reflectVec, viewMatrix );\n\t\t\tvec4 envMapColor = textureCubeUV( envMap, reflectVec, roughness );\n\t\t\treturn envMapColor.rgb * envMapIntensity;\n\t\t#else\n\t\t\treturn vec3( 0.0 );\n\t\t#endif\n\t}\n#endif`,hy=`ToonMaterial material;\nmaterial.diffuseColor = diffuseColor.rgb;`,fy=`varying vec3 vViewPosition;\nstruct ToonMaterial {\n\tvec3 diffuseColor;\n};\nvoid RE_Direct_Toon( const in IncidentLight directLight, const in GeometricContext geometry, const in ToonMaterial material, inout ReflectedLight reflectedLight ) {\n\tvec3 irradiance = getGradientIrradiance( geometry.normal, directLight.direction ) * directLight.color;\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\nvoid RE_IndirectDiffuse_Toon( const in vec3 irradiance, const in GeometricContext geometry, const in ToonMaterial material, inout ReflectedLight reflectedLight ) {\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\n#define RE_Direct\t\t\t\tRE_Direct_Toon\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_Toon\n#define Material_LightProbeLOD( material )\t(0)`,dy=`BlinnPhongMaterial material;\nmaterial.diffuseColor = diffuseColor.rgb;\nmaterial.specularColor = specular;\nmaterial.specularShininess = shininess;\nmaterial.specularStrength = specularStrength;`,py=`varying vec3 vViewPosition;\nstruct BlinnPhongMaterial {\n\tvec3 diffuseColor;\n\tvec3 specularColor;\n\tfloat specularShininess;\n\tfloat specularStrength;\n};\nvoid RE_Direct_BlinnPhong( const in IncidentLight directLight, const in GeometricContext geometry, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) {\n\tfloat dotNL = saturate( dot( geometry.normal, directLight.direction ) );\n\tvec3 irradiance = dotNL * directLight.color;\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n\treflectedLight.directSpecular += irradiance * BRDF_BlinnPhong( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularShininess ) * material.specularStrength;\n}\nvoid RE_IndirectDiffuse_BlinnPhong( const in vec3 irradiance, const in GeometricContext geometry, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) {\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\n#define RE_Direct\t\t\t\tRE_Direct_BlinnPhong\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_BlinnPhong\n#define Material_LightProbeLOD( material )\t(0)`,my=`PhysicalMaterial material;\nmaterial.diffuseColor = diffuseColor.rgb * ( 1.0 - metalnessFactor );\nvec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) );\nfloat geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z );\nmaterial.roughness = max( roughnessFactor, 0.0525 );material.roughness += geometryRoughness;\nmaterial.roughness = min( material.roughness, 1.0 );\n#ifdef IOR\n\t#ifdef SPECULAR\n\t\tfloat specularIntensityFactor = specularIntensity;\n\t\tvec3 specularColorFactor = specularColor;\n\t\t#ifdef USE_SPECULARINTENSITYMAP\n\t\t\tspecularIntensityFactor *= texture2D( specularIntensityMap, vUv ).a;\n\t\t#endif\n\t\t#ifdef USE_SPECULARCOLORMAP\n\t\t\tspecularColorFactor *= texture2D( specularColorMap, vUv ).rgb;\n\t\t#endif\n\t\tmaterial.specularF90 = mix( specularIntensityFactor, 1.0, metalnessFactor );\n\t#else\n\t\tfloat specularIntensityFactor = 1.0;\n\t\tvec3 specularColorFactor = vec3( 1.0 );\n\t\tmaterial.specularF90 = 1.0;\n\t#endif\n\tmaterial.specularColor = mix( min( pow2( ( ior - 1.0 ) / ( ior + 1.0 ) ) * specularColorFactor, vec3( 1.0 ) ) * specularIntensityFactor, diffuseColor.rgb, metalnessFactor );\n#else\n\tmaterial.specularColor = mix( vec3( 0.04 ), diffuseColor.rgb, metalnessFactor );\n\tmaterial.specularF90 = 1.0;\n#endif\n#ifdef USE_CLEARCOAT\n\tmaterial.clearcoat = clearcoat;\n\tmaterial.clearcoatRoughness = clearcoatRoughness;\n\tmaterial.clearcoatF0 = vec3( 0.04 );\n\tmaterial.clearcoatF90 = 1.0;\n\t#ifdef USE_CLEARCOATMAP\n\t\tmaterial.clearcoat *= texture2D( clearcoatMap, vUv ).x;\n\t#endif\n\t#ifdef USE_CLEARCOAT_ROUGHNESSMAP\n\t\tmaterial.clearcoatRoughness *= texture2D( clearcoatRoughnessMap, vUv ).y;\n\t#endif\n\tmaterial.clearcoat = saturate( material.clearcoat );\tmaterial.clearcoatRoughness = max( material.clearcoatRoughness, 0.0525 );\n\tmaterial.clearcoatRoughness += geometryRoughness;\n\tmaterial.clearcoatRoughness = min( material.clearcoatRoughness, 1.0 );\n#endif\n#ifdef USE_IRIDESCENCE\n\tmaterial.iridescence = iridescence;\n\tmaterial.iridescenceIOR = iridescenceIOR;\n\t#ifdef USE_IRIDESCENCEMAP\n\t\tmaterial.iridescence *= texture2D( iridescenceMap, vUv ).r;\n\t#endif\n\t#ifdef USE_IRIDESCENCE_THICKNESSMAP\n\t\tmaterial.iridescenceThickness = (iridescenceThicknessMaximum - iridescenceThicknessMinimum) * texture2D( iridescenceThicknessMap, vUv ).g + iridescenceThicknessMinimum;\n\t#else\n\t\tmaterial.iridescenceThickness = iridescenceThicknessMaximum;\n\t#endif\n#endif\n#ifdef USE_SHEEN\n\tmaterial.sheenColor = sheenColor;\n\t#ifdef USE_SHEENCOLORMAP\n\t\tmaterial.sheenColor *= texture2D( sheenColorMap, vUv ).rgb;\n\t#endif\n\tmaterial.sheenRoughness = clamp( sheenRoughness, 0.07, 1.0 );\n\t#ifdef USE_SHEENROUGHNESSMAP\n\t\tmaterial.sheenRoughness *= texture2D( sheenRoughnessMap, vUv ).a;\n\t#endif\n#endif`,gy=`struct PhysicalMaterial {\n\tvec3 diffuseColor;\n\tfloat roughness;\n\tvec3 specularColor;\n\tfloat specularF90;\n\t#ifdef USE_CLEARCOAT\n\t\tfloat clearcoat;\n\t\tfloat clearcoatRoughness;\n\t\tvec3 clearcoatF0;\n\t\tfloat clearcoatF90;\n\t#endif\n\t#ifdef USE_IRIDESCENCE\n\t\tfloat iridescence;\n\t\tfloat iridescenceIOR;\n\t\tfloat iridescenceThickness;\n\t\tvec3 iridescenceFresnel;\n\t\tvec3 iridescenceF0;\n\t#endif\n\t#ifdef USE_SHEEN\n\t\tvec3 sheenColor;\n\t\tfloat sheenRoughness;\n\t#endif\n};\nvec3 clearcoatSpecular = vec3( 0.0 );\nvec3 sheenSpecular = vec3( 0.0 );\nfloat IBLSheenBRDF( const in vec3 normal, const in vec3 viewDir, const in float roughness) {\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\tfloat r2 = roughness * roughness;\n\tfloat a = roughness < 0.25 ? -339.2 * r2 + 161.4 * roughness - 25.9 : -8.48 * r2 + 14.3 * roughness - 9.95;\n\tfloat b = roughness < 0.25 ? 44.0 * r2 - 23.7 * roughness + 3.26 : 1.97 * r2 - 3.27 * roughness + 0.72;\n\tfloat DG = exp( a * dotNV + b ) + ( roughness < 0.25 ? 0.0 : 0.1 * ( roughness - 0.25 ) );\n\treturn saturate( DG * RECIPROCAL_PI );\n}\nvec2 DFGApprox( const in vec3 normal, const in vec3 viewDir, const in float roughness ) {\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\tconst vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 );\n\tconst vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 );\n\tvec4 r = roughness * c0 + c1;\n\tfloat a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y;\n\tvec2 fab = vec2( - 1.04, 1.04 ) * a004 + r.zw;\n\treturn fab;\n}\nvec3 EnvironmentBRDF( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness ) {\n\tvec2 fab = DFGApprox( normal, viewDir, roughness );\n\treturn specularColor * fab.x + specularF90 * fab.y;\n}\n#ifdef USE_IRIDESCENCE\nvoid computeMultiscatteringIridescence( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float iridescence, const in vec3 iridescenceF0, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) {\n#else\nvoid computeMultiscattering( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) {\n#endif\n\tvec2 fab = DFGApprox( normal, viewDir, roughness );\n\t#ifdef USE_IRIDESCENCE\n\t\tvec3 Fr = mix( specularColor, iridescenceF0, iridescence );\n\t#else\n\t\tvec3 Fr = specularColor;\n\t#endif\n\tvec3 FssEss = Fr * fab.x + specularF90 * fab.y;\n\tfloat Ess = fab.x + fab.y;\n\tfloat Ems = 1.0 - Ess;\n\tvec3 Favg = Fr + ( 1.0 - Fr ) * 0.047619;\tvec3 Fms = FssEss * Favg / ( 1.0 - Ems * Favg );\n\tsingleScatter += FssEss;\n\tmultiScatter += Fms * Ems;\n}\n#if NUM_RECT_AREA_LIGHTS > 0\n\tvoid RE_Direct_RectArea_Physical( const in RectAreaLight rectAreaLight, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\n\t\tvec3 normal = geometry.normal;\n\t\tvec3 viewDir = geometry.viewDir;\n\t\tvec3 position = geometry.position;\n\t\tvec3 lightPos = rectAreaLight.position;\n\t\tvec3 halfWidth = rectAreaLight.halfWidth;\n\t\tvec3 halfHeight = rectAreaLight.halfHeight;\n\t\tvec3 lightColor = rectAreaLight.color;\n\t\tfloat roughness = material.roughness;\n\t\tvec3 rectCoords[ 4 ];\n\t\trectCoords[ 0 ] = lightPos + halfWidth - halfHeight;\t\trectCoords[ 1 ] = lightPos - halfWidth - halfHeight;\n\t\trectCoords[ 2 ] = lightPos - halfWidth + halfHeight;\n\t\trectCoords[ 3 ] = lightPos + halfWidth + halfHeight;\n\t\tvec2 uv = LTC_Uv( normal, viewDir, roughness );\n\t\tvec4 t1 = texture2D( ltc_1, uv );\n\t\tvec4 t2 = texture2D( ltc_2, uv );\n\t\tmat3 mInv = mat3(\n\t\t\tvec3( t1.x, 0, t1.y ),\n\t\t\tvec3(    0, 1,    0 ),\n\t\t\tvec3( t1.z, 0, t1.w )\n\t\t);\n\t\tvec3 fresnel = ( material.specularColor * t2.x + ( vec3( 1.0 ) - material.specularColor ) * t2.y );\n\t\treflectedLight.directSpecular += lightColor * fresnel * LTC_Evaluate( normal, viewDir, position, mInv, rectCoords );\n\t\treflectedLight.directDiffuse += lightColor * material.diffuseColor * LTC_Evaluate( normal, viewDir, position, mat3( 1.0 ), rectCoords );\n\t}\n#endif\nvoid RE_Direct_Physical( const in IncidentLight directLight, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\n\tfloat dotNL = saturate( dot( geometry.normal, directLight.direction ) );\n\tvec3 irradiance = dotNL * directLight.color;\n\t#ifdef USE_CLEARCOAT\n\t\tfloat dotNLcc = saturate( dot( geometry.clearcoatNormal, directLight.direction ) );\n\t\tvec3 ccIrradiance = dotNLcc * directLight.color;\n\t\tclearcoatSpecular += ccIrradiance * BRDF_GGX( directLight.direction, geometry.viewDir, geometry.clearcoatNormal, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness );\n\t#endif\n\t#ifdef USE_SHEEN\n\t\tsheenSpecular += irradiance * BRDF_Sheen( directLight.direction, geometry.viewDir, geometry.normal, material.sheenColor, material.sheenRoughness );\n\t#endif\n\t#ifdef USE_IRIDESCENCE\n\t\treflectedLight.directSpecular += irradiance * BRDF_GGX_Iridescence( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness );\n\t#else\n\t\treflectedLight.directSpecular += irradiance * BRDF_GGX( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularF90, material.roughness );\n\t#endif\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\nvoid RE_IndirectDiffuse_Physical( const in vec3 irradiance, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\nvoid RE_IndirectSpecular_Physical( const in vec3 radiance, const in vec3 irradiance, const in vec3 clearcoatRadiance, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight) {\n\t#ifdef USE_CLEARCOAT\n\t\tclearcoatSpecular += clearcoatRadiance * EnvironmentBRDF( geometry.clearcoatNormal, geometry.viewDir, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness );\n\t#endif\n\t#ifdef USE_SHEEN\n\t\tsheenSpecular += irradiance * material.sheenColor * IBLSheenBRDF( geometry.normal, geometry.viewDir, material.sheenRoughness );\n\t#endif\n\tvec3 singleScattering = vec3( 0.0 );\n\tvec3 multiScattering = vec3( 0.0 );\n\tvec3 cosineWeightedIrradiance = irradiance * RECIPROCAL_PI;\n\t#ifdef USE_IRIDESCENCE\n\t\tcomputeMultiscatteringIridescence( geometry.normal, geometry.viewDir, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness, singleScattering, multiScattering );\n\t#else\n\t\tcomputeMultiscattering( geometry.normal, geometry.viewDir, material.specularColor, material.specularF90, material.roughness, singleScattering, multiScattering );\n\t#endif\n\tvec3 totalScattering = singleScattering + multiScattering;\n\tvec3 diffuse = material.diffuseColor * ( 1.0 - max( max( totalScattering.r, totalScattering.g ), totalScattering.b ) );\n\treflectedLight.indirectSpecular += radiance * singleScattering;\n\treflectedLight.indirectSpecular += multiScattering * cosineWeightedIrradiance;\n\treflectedLight.indirectDiffuse += diffuse * cosineWeightedIrradiance;\n}\n#define RE_Direct\t\t\t\tRE_Direct_Physical\n#define RE_Direct_RectArea\t\tRE_Direct_RectArea_Physical\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_Physical\n#define RE_IndirectSpecular\t\tRE_IndirectSpecular_Physical\nfloat computeSpecularOcclusion( const in float dotNV, const in float ambientOcclusion, const in float roughness ) {\n\treturn saturate( pow( dotNV + ambientOcclusion, exp2( - 16.0 * roughness - 1.0 ) ) - 1.0 + ambientOcclusion );\n}`,yy=`\nGeometricContext geometry;\ngeometry.position = - vViewPosition;\ngeometry.normal = normal;\ngeometry.viewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( vViewPosition );\n#ifdef USE_CLEARCOAT\n\tgeometry.clearcoatNormal = clearcoatNormal;\n#endif\n#ifdef USE_IRIDESCENCE\n\tfloat dotNVi = saturate( dot( normal, geometry.viewDir ) );\n\tif ( material.iridescenceThickness == 0.0 ) {\n\t\tmaterial.iridescence = 0.0;\n\t} else {\n\t\tmaterial.iridescence = saturate( material.iridescence );\n\t}\n\tif ( material.iridescence > 0.0 ) {\n\t\tmaterial.iridescenceFresnel = evalIridescence( 1.0, material.iridescenceIOR, dotNVi, material.iridescenceThickness, material.specularColor );\n\t\tmaterial.iridescenceF0 = Schlick_to_F0( material.iridescenceFresnel, 1.0, dotNVi );\n\t}\n#endif\nIncidentLight directLight;\n#if ( NUM_POINT_LIGHTS > 0 ) && defined( RE_Direct )\n\tPointLight pointLight;\n\t#if defined( USE_SHADOWMAP ) && NUM_POINT_LIGHT_SHADOWS > 0\n\tPointLightShadow pointLightShadow;\n\t#endif\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) {\n\t\tpointLight = pointLights[ i ];\n\t\tgetPointLightInfo( pointLight, geometry, directLight );\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_POINT_LIGHT_SHADOWS )\n\t\tpointLightShadow = pointLightShadows[ i ];\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getPointShadow( pointShadowMap[ i ], pointLightShadow.shadowMapSize, pointLightShadow.shadowBias, pointLightShadow.shadowRadius, vPointShadowCoord[ i ], pointLightShadow.shadowCameraNear, pointLightShadow.shadowCameraFar ) : 1.0;\n\t\t#endif\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if ( NUM_SPOT_LIGHTS > 0 ) && defined( RE_Direct )\n\tSpotLight spotLight;\n\t#if defined( USE_SHADOWMAP ) && NUM_SPOT_LIGHT_SHADOWS > 0\n\tSpotLightShadow spotLightShadow;\n\t#endif\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) {\n\t\tspotLight = spotLights[ i ];\n\t\tgetSpotLightInfo( spotLight, geometry, directLight );\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS )\n\t\tspotLightShadow = spotLightShadows[ i ];\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getShadow( spotShadowMap[ i ], spotLightShadow.shadowMapSize, spotLightShadow.shadowBias, spotLightShadow.shadowRadius, vSpotShadowCoord[ i ] ) : 1.0;\n\t\t#endif\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if ( NUM_DIR_LIGHTS > 0 ) && defined( RE_Direct )\n\tDirectionalLight directionalLight;\n\t#if defined( USE_SHADOWMAP ) && NUM_DIR_LIGHT_SHADOWS > 0\n\tDirectionalLightShadow directionalLightShadow;\n\t#endif\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) {\n\t\tdirectionalLight = directionalLights[ i ];\n\t\tgetDirectionalLightInfo( directionalLight, geometry, directLight );\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_DIR_LIGHT_SHADOWS )\n\t\tdirectionalLightShadow = directionalLightShadows[ i ];\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getShadow( directionalShadowMap[ i ], directionalLightShadow.shadowMapSize, directionalLightShadow.shadowBias, directionalLightShadow.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0;\n\t\t#endif\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if ( NUM_RECT_AREA_LIGHTS > 0 ) && defined( RE_Direct_RectArea )\n\tRectAreaLight rectAreaLight;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_RECT_AREA_LIGHTS; i ++ ) {\n\t\trectAreaLight = rectAreaLights[ i ];\n\t\tRE_Direct_RectArea( rectAreaLight, geometry, material, reflectedLight );\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if defined( RE_IndirectDiffuse )\n\tvec3 iblIrradiance = vec3( 0.0 );\n\tvec3 irradiance = getAmbientLightIrradiance( ambientLightColor );\n\tirradiance += getLightProbeIrradiance( lightProbe, geometry.normal );\n\t#if ( NUM_HEMI_LIGHTS > 0 )\n\t\t#pragma unroll_loop_start\n\t\tfor ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) {\n\t\t\tirradiance += getHemisphereLightIrradiance( hemisphereLights[ i ], geometry.normal );\n\t\t}\n\t\t#pragma unroll_loop_end\n\t#endif\n#endif\n#if defined( RE_IndirectSpecular )\n\tvec3 radiance = vec3( 0.0 );\n\tvec3 clearcoatRadiance = vec3( 0.0 );\n#endif`,xy=`#if defined( RE_IndirectDiffuse )\n\t#ifdef USE_LIGHTMAP\n\t\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\n\t\tvec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity;\n\t\tirradiance += lightMapIrradiance;\n\t#endif\n\t#if defined( USE_ENVMAP ) && defined( STANDARD ) && defined( ENVMAP_TYPE_CUBE_UV )\n\t\tiblIrradiance += getIBLIrradiance( geometry.normal );\n\t#endif\n#endif\n#if defined( USE_ENVMAP ) && defined( RE_IndirectSpecular )\n\tradiance += getIBLRadiance( geometry.viewDir, geometry.normal, material.roughness );\n\t#ifdef USE_CLEARCOAT\n\t\tclearcoatRadiance += getIBLRadiance( geometry.viewDir, geometry.clearcoatNormal, material.clearcoatRoughness );\n\t#endif\n#endif`,vy=`#if defined( RE_IndirectDiffuse )\n\tRE_IndirectDiffuse( irradiance, geometry, material, reflectedLight );\n#endif\n#if defined( RE_IndirectSpecular )\n\tRE_IndirectSpecular( radiance, iblIrradiance, clearcoatRadiance, geometry, material, reflectedLight );\n#endif`,_y=`#if defined( USE_LOGDEPTHBUF ) && defined( USE_LOGDEPTHBUF_EXT )\n\tgl_FragDepthEXT = vIsPerspective == 0.0 ? gl_FragCoord.z : log2( vFragDepth ) * logDepthBufFC * 0.5;\n#endif`,by=`#if defined( USE_LOGDEPTHBUF ) && defined( USE_LOGDEPTHBUF_EXT )\n\tuniform float logDepthBufFC;\n\tvarying float vFragDepth;\n\tvarying float vIsPerspective;\n#endif`,wy=`#ifdef USE_LOGDEPTHBUF\n\t#ifdef USE_LOGDEPTHBUF_EXT\n\t\tvarying float vFragDepth;\n\t\tvarying float vIsPerspective;\n\t#else\n\t\tuniform float logDepthBufFC;\n\t#endif\n#endif`,My=`#ifdef USE_LOGDEPTHBUF\n\t#ifdef USE_LOGDEPTHBUF_EXT\n\t\tvFragDepth = 1.0 + gl_Position.w;\n\t\tvIsPerspective = float( isPerspectiveMatrix( projectionMatrix ) );\n\t#else\n\t\tif ( isPerspectiveMatrix( projectionMatrix ) ) {\n\t\t\tgl_Position.z = log2( max( EPSILON, gl_Position.w + 1.0 ) ) * logDepthBufFC - 1.0;\n\t\t\tgl_Position.z *= gl_Position.w;\n\t\t}\n\t#endif\n#endif`,Sy=`#ifdef USE_MAP\n\tvec4 sampledDiffuseColor = texture2D( map, vUv );\n\t#ifdef DECODE_VIDEO_TEXTURE\n\t\tsampledDiffuseColor = vec4( mix( pow( sampledDiffuseColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), sampledDiffuseColor.rgb * 0.0773993808, vec3( lessThanEqual( sampledDiffuseColor.rgb, vec3( 0.04045 ) ) ) ), sampledDiffuseColor.w );\n\t#endif\n\tdiffuseColor *= sampledDiffuseColor;\n#endif`,Ty=`#ifdef USE_MAP\n\tuniform sampler2D map;\n#endif`,Ay=`#if defined( USE_MAP ) || defined( USE_ALPHAMAP )\n\tvec2 uv = ( uvTransform * vec3( gl_PointCoord.x, 1.0 - gl_PointCoord.y, 1 ) ).xy;\n#endif\n#ifdef USE_MAP\n\tdiffuseColor *= texture2D( map, uv );\n#endif\n#ifdef USE_ALPHAMAP\n\tdiffuseColor.a *= texture2D( alphaMap, uv ).g;\n#endif`,Ey=`#if defined( USE_MAP ) || defined( USE_ALPHAMAP )\n\tuniform mat3 uvTransform;\n#endif\n#ifdef USE_MAP\n\tuniform sampler2D map;\n#endif\n#ifdef USE_ALPHAMAP\n\tuniform sampler2D alphaMap;\n#endif`,Cy=`float metalnessFactor = metalness;\n#ifdef USE_METALNESSMAP\n\tvec4 texelMetalness = texture2D( metalnessMap, vUv );\n\tmetalnessFactor *= texelMetalness.b;\n#endif`,Ly=`#ifdef USE_METALNESSMAP\n\tuniform sampler2D metalnessMap;\n#endif`,Ry=`#if defined( USE_MORPHCOLORS ) && defined( MORPHTARGETS_TEXTURE )\n\tvColor *= morphTargetBaseInfluence;\n\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\n\t\t#if defined( USE_COLOR_ALPHA )\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ) * morphTargetInfluences[ i ];\n\t\t#elif defined( USE_COLOR )\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ).rgb * morphTargetInfluences[ i ];\n\t\t#endif\n\t}\n#endif`,Iy=`#ifdef USE_MORPHNORMALS\n\tobjectNormal *= morphTargetBaseInfluence;\n\t#ifdef MORPHTARGETS_TEXTURE\n\t\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) objectNormal += getMorph( gl_VertexID, i, 1 ).xyz * morphTargetInfluences[ i ];\n\t\t}\n\t#else\n\t\tobjectNormal += morphNormal0 * morphTargetInfluences[ 0 ];\n\t\tobjectNormal += morphNormal1 * morphTargetInfluences[ 1 ];\n\t\tobjectNormal += morphNormal2 * morphTargetInfluences[ 2 ];\n\t\tobjectNormal += morphNormal3 * morphTargetInfluences[ 3 ];\n\t#endif\n#endif`,Py=`#ifdef USE_MORPHTARGETS\n\tuniform float morphTargetBaseInfluence;\n\t#ifdef MORPHTARGETS_TEXTURE\n\t\tuniform float morphTargetInfluences[ MORPHTARGETS_COUNT ];\n\t\tuniform sampler2DArray morphTargetsTexture;\n\t\tuniform ivec2 morphTargetsTextureSize;\n\t\tvec4 getMorph( const in int vertexIndex, const in int morphTargetIndex, const in int offset ) {\n\t\t\tint texelIndex = vertexIndex * MORPHTARGETS_TEXTURE_STRIDE + offset;\n\t\t\tint y = texelIndex / morphTargetsTextureSize.x;\n\t\t\tint x = texelIndex - y * morphTargetsTextureSize.x;\n\t\t\tivec3 morphUV = ivec3( x, y, morphTargetIndex );\n\t\t\treturn texelFetch( morphTargetsTexture, morphUV, 0 );\n\t\t}\n\t#else\n\t\t#ifndef USE_MORPHNORMALS\n\t\t\tuniform float morphTargetInfluences[ 8 ];\n\t\t#else\n\t\t\tuniform float morphTargetInfluences[ 4 ];\n\t\t#endif\n\t#endif\n#endif`,Dy=`#ifdef USE_MORPHTARGETS\n\ttransformed *= morphTargetBaseInfluence;\n\t#ifdef MORPHTARGETS_TEXTURE\n\t\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) transformed += getMorph( gl_VertexID, i, 0 ).xyz * morphTargetInfluences[ i ];\n\t\t}\n\t#else\n\t\ttransformed += morphTarget0 * morphTargetInfluences[ 0 ];\n\t\ttransformed += morphTarget1 * morphTargetInfluences[ 1 ];\n\t\ttransformed += morphTarget2 * morphTargetInfluences[ 2 ];\n\t\ttransformed += morphTarget3 * morphTargetInfluences[ 3 ];\n\t\t#ifndef USE_MORPHNORMALS\n\t\t\ttransformed += morphTarget4 * morphTargetInfluences[ 4 ];\n\t\t\ttransformed += morphTarget5 * morphTargetInfluences[ 5 ];\n\t\t\ttransformed += morphTarget6 * morphTargetInfluences[ 6 ];\n\t\t\ttransformed += morphTarget7 * morphTargetInfluences[ 7 ];\n\t\t#endif\n\t#endif\n#endif`,Fy=`float faceDirection = gl_FrontFacing ? 1.0 : - 1.0;\n#ifdef FLAT_SHADED\n\tvec3 fdx = vec3( dFdx( vViewPosition.x ), dFdx( vViewPosition.y ), dFdx( vViewPosition.z ) );\n\tvec3 fdy = vec3( dFdy( vViewPosition.x ), dFdy( vViewPosition.y ), dFdy( vViewPosition.z ) );\n\tvec3 normal = normalize( cross( fdx, fdy ) );\n#else\n\tvec3 normal = normalize( vNormal );\n\t#ifdef DOUBLE_SIDED\n\t\tnormal = normal * faceDirection;\n\t#endif\n\t#ifdef USE_TANGENT\n\t\tvec3 tangent = normalize( vTangent );\n\t\tvec3 bitangent = normalize( vBitangent );\n\t\t#ifdef DOUBLE_SIDED\n\t\t\ttangent = tangent * faceDirection;\n\t\t\tbitangent = bitangent * faceDirection;\n\t\t#endif\n\t\t#if defined( TANGENTSPACE_NORMALMAP ) || defined( USE_CLEARCOAT_NORMALMAP )\n\t\t\tmat3 vTBN = mat3( tangent, bitangent, normal );\n\t\t#endif\n\t#endif\n#endif\nvec3 geometryNormal = normal;`,Ny=`#ifdef OBJECTSPACE_NORMALMAP\n\tnormal = texture2D( normalMap, vUv ).xyz * 2.0 - 1.0;\n\t#ifdef FLIP_SIDED\n\t\tnormal = - normal;\n\t#endif\n\t#ifdef DOUBLE_SIDED\n\t\tnormal = normal * faceDirection;\n\t#endif\n\tnormal = normalize( normalMatrix * normal );\n#elif defined( TANGENTSPACE_NORMALMAP )\n\tvec3 mapN = texture2D( normalMap, vUv ).xyz * 2.0 - 1.0;\n\tmapN.xy *= normalScale;\n\t#ifdef USE_TANGENT\n\t\tnormal = normalize( vTBN * mapN );\n\t#else\n\t\tnormal = perturbNormal2Arb( - vViewPosition, normal, mapN, faceDirection );\n\t#endif\n#elif defined( USE_BUMPMAP )\n\tnormal = perturbNormalArb( - vViewPosition, normal, dHdxy_fwd(), faceDirection );\n#endif`,ky=`#ifndef FLAT_SHADED\n\tvarying vec3 vNormal;\n\t#ifdef USE_TANGENT\n\t\tvarying vec3 vTangent;\n\t\tvarying vec3 vBitangent;\n\t#endif\n#endif`,Oy=`#ifndef FLAT_SHADED\n\tvarying vec3 vNormal;\n\t#ifdef USE_TANGENT\n\t\tvarying vec3 vTangent;\n\t\tvarying vec3 vBitangent;\n\t#endif\n#endif`,By=`#ifndef FLAT_SHADED\n\tvNormal = normalize( transformedNormal );\n\t#ifdef USE_TANGENT\n\t\tvTangent = normalize( transformedTangent );\n\t\tvBitangent = normalize( cross( vNormal, vTangent ) * tangent.w );\n\t#endif\n#endif`,zy=`#ifdef USE_NORMALMAP\n\tuniform sampler2D normalMap;\n\tuniform vec2 normalScale;\n#endif\n#ifdef OBJECTSPACE_NORMALMAP\n\tuniform mat3 normalMatrix;\n#endif\n#if ! defined ( USE_TANGENT ) && ( defined ( TANGENTSPACE_NORMALMAP ) || defined ( USE_CLEARCOAT_NORMALMAP ) )\n\tvec3 perturbNormal2Arb( vec3 eye_pos, vec3 surf_norm, vec3 mapN, float faceDirection ) {\n\t\tvec3 q0 = dFdx( eye_pos.xyz );\n\t\tvec3 q1 = dFdy( eye_pos.xyz );\n\t\tvec2 st0 = dFdx( vUv.st );\n\t\tvec2 st1 = dFdy( vUv.st );\n\t\tvec3 N = surf_norm;\n\t\tvec3 q1perp = cross( q1, N );\n\t\tvec3 q0perp = cross( N, q0 );\n\t\tvec3 T = q1perp * st0.x + q0perp * st1.x;\n\t\tvec3 B = q1perp * st0.y + q0perp * st1.y;\n\t\tfloat det = max( dot( T, T ), dot( B, B ) );\n\t\tfloat scale = ( det == 0.0 ) ? 0.0 : faceDirection * inversesqrt( det );\n\t\treturn normalize( T * ( mapN.x * scale ) + B * ( mapN.y * scale ) + N * mapN.z );\n\t}\n#endif`,Uy=`#ifdef USE_CLEARCOAT\n\tvec3 clearcoatNormal = geometryNormal;\n#endif`,Gy=`#ifdef USE_CLEARCOAT_NORMALMAP\n\tvec3 clearcoatMapN = texture2D( clearcoatNormalMap, vUv ).xyz * 2.0 - 1.0;\n\tclearcoatMapN.xy *= clearcoatNormalScale;\n\t#ifdef USE_TANGENT\n\t\tclearcoatNormal = normalize( vTBN * clearcoatMapN );\n\t#else\n\t\tclearcoatNormal = perturbNormal2Arb( - vViewPosition, clearcoatNormal, clearcoatMapN, faceDirection );\n\t#endif\n#endif`,Vy=`#ifdef USE_CLEARCOATMAP\n\tuniform sampler2D clearcoatMap;\n#endif\n#ifdef USE_CLEARCOAT_ROUGHNESSMAP\n\tuniform sampler2D clearcoatRoughnessMap;\n#endif\n#ifdef USE_CLEARCOAT_NORMALMAP\n\tuniform sampler2D clearcoatNormalMap;\n\tuniform vec2 clearcoatNormalScale;\n#endif`,Hy=`#ifdef USE_IRIDESCENCEMAP\n\tuniform sampler2D iridescenceMap;\n#endif\n#ifdef USE_IRIDESCENCE_THICKNESSMAP\n\tuniform sampler2D iridescenceThicknessMap;\n#endif`,Wy=`#ifdef OPAQUE\ndiffuseColor.a = 1.0;\n#endif\n#ifdef USE_TRANSMISSION\ndiffuseColor.a *= transmissionAlpha + 0.1;\n#endif\ngl_FragColor = vec4( outgoingLight, diffuseColor.a );`,qy=`vec3 packNormalToRGB( const in vec3 normal ) {\n\treturn normalize( normal ) * 0.5 + 0.5;\n}\nvec3 unpackRGBToNormal( const in vec3 rgb ) {\n\treturn 2.0 * rgb.xyz - 1.0;\n}\nconst float PackUpscale = 256. / 255.;const float UnpackDownscale = 255. / 256.;\nconst vec3 PackFactors = vec3( 256. * 256. * 256., 256. * 256., 256. );\nconst vec4 UnpackFactors = UnpackDownscale / vec4( PackFactors, 1. );\nconst float ShiftRight8 = 1. / 256.;\nvec4 packDepthToRGBA( const in float v ) {\n\tvec4 r = vec4( fract( v * PackFactors ), v );\n\tr.yzw -= r.xyz * ShiftRight8;\treturn r * PackUpscale;\n}\nfloat unpackRGBAToDepth( const in vec4 v ) {\n\treturn dot( v, UnpackFactors );\n}\nvec4 pack2HalfToRGBA( vec2 v ) {\n\tvec4 r = vec4( v.x, fract( v.x * 255.0 ), v.y, fract( v.y * 255.0 ) );\n\treturn vec4( r.x - r.y / 255.0, r.y, r.z - r.w / 255.0, r.w );\n}\nvec2 unpackRGBATo2Half( vec4 v ) {\n\treturn vec2( v.x + ( v.y / 255.0 ), v.z + ( v.w / 255.0 ) );\n}\nfloat viewZToOrthographicDepth( const in float viewZ, const in float near, const in float far ) {\n\treturn ( viewZ + near ) / ( near - far );\n}\nfloat orthographicDepthToViewZ( const in float linearClipZ, const in float near, const in float far ) {\n\treturn linearClipZ * ( near - far ) - near;\n}\nfloat viewZToPerspectiveDepth( const in float viewZ, const in float near, const in float far ) {\n\treturn ( ( near + viewZ ) * far ) / ( ( far - near ) * viewZ );\n}\nfloat perspectiveDepthToViewZ( const in float invClipZ, const in float near, const in float far ) {\n\treturn ( near * far ) / ( ( far - near ) * invClipZ - far );\n}`,Xy=`#ifdef PREMULTIPLIED_ALPHA\n\tgl_FragColor.rgb *= gl_FragColor.a;\n#endif`,jy=`vec4 mvPosition = vec4( transformed, 1.0 );\n#ifdef USE_INSTANCING\n\tmvPosition = instanceMatrix * mvPosition;\n#endif\nmvPosition = modelViewMatrix * mvPosition;\ngl_Position = projectionMatrix * mvPosition;`,Yy=`#ifdef DITHERING\n\tgl_FragColor.rgb = dithering( gl_FragColor.rgb );\n#endif`,Zy=`#ifdef DITHERING\n\tvec3 dithering( vec3 color ) {\n\t\tfloat grid_position = rand( gl_FragCoord.xy );\n\t\tvec3 dither_shift_RGB = vec3( 0.25 / 255.0, -0.25 / 255.0, 0.25 / 255.0 );\n\t\tdither_shift_RGB = mix( 2.0 * dither_shift_RGB, -2.0 * dither_shift_RGB, grid_position );\n\t\treturn color + dither_shift_RGB;\n\t}\n#endif`,Ky=`float roughnessFactor = roughness;\n#ifdef USE_ROUGHNESSMAP\n\tvec4 texelRoughness = texture2D( roughnessMap, vUv );\n\troughnessFactor *= texelRoughness.g;\n#endif`,Jy=`#ifdef USE_ROUGHNESSMAP\n\tuniform sampler2D roughnessMap;\n#endif`,$y=`#ifdef USE_SHADOWMAP\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\n\t\tuniform sampler2D directionalShadowMap[ NUM_DIR_LIGHT_SHADOWS ];\n\t\tvarying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ];\n\t\tstruct DirectionalLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t};\n\t\tuniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ];\n\t#endif\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\n\t\tuniform sampler2D spotShadowMap[ NUM_SPOT_LIGHT_SHADOWS ];\n\t\tvarying vec4 vSpotShadowCoord[ NUM_SPOT_LIGHT_SHADOWS ];\n\t\tstruct SpotLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t};\n\t\tuniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ];\n\t#endif\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\n\t\tuniform sampler2D pointShadowMap[ NUM_POINT_LIGHT_SHADOWS ];\n\t\tvarying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ];\n\t\tstruct PointLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t\tfloat shadowCameraNear;\n\t\t\tfloat shadowCameraFar;\n\t\t};\n\t\tuniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ];\n\t#endif\n\tfloat texture2DCompare( sampler2D depths, vec2 uv, float compare ) {\n\t\treturn step( compare, unpackRGBAToDepth( texture2D( depths, uv ) ) );\n\t}\n\tvec2 texture2DDistribution( sampler2D shadow, vec2 uv ) {\n\t\treturn unpackRGBATo2Half( texture2D( shadow, uv ) );\n\t}\n\tfloat VSMShadow (sampler2D shadow, vec2 uv, float compare ){\n\t\tfloat occlusion = 1.0;\n\t\tvec2 distribution = texture2DDistribution( shadow, uv );\n\t\tfloat hard_shadow = step( compare , distribution.x );\n\t\tif (hard_shadow != 1.0 ) {\n\t\t\tfloat distance = compare - distribution.x ;\n\t\t\tfloat variance = max( 0.00000, distribution.y * distribution.y );\n\t\t\tfloat softness_probability = variance / (variance + distance * distance );\t\t\tsoftness_probability = clamp( ( softness_probability - 0.3 ) / ( 0.95 - 0.3 ), 0.0, 1.0 );\t\t\tocclusion = clamp( max( hard_shadow, softness_probability ), 0.0, 1.0 );\n\t\t}\n\t\treturn occlusion;\n\t}\n\tfloat getShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowBias, float shadowRadius, vec4 shadowCoord ) {\n\t\tfloat shadow = 1.0;\n\t\tshadowCoord.xyz /= shadowCoord.w;\n\t\tshadowCoord.z += shadowBias;\n\t\tbvec4 inFrustumVec = bvec4 ( shadowCoord.x >= 0.0, shadowCoord.x <= 1.0, shadowCoord.y >= 0.0, shadowCoord.y <= 1.0 );\n\t\tbool inFrustum = all( inFrustumVec );\n\t\tbvec2 frustumTestVec = bvec2( inFrustum, shadowCoord.z <= 1.0 );\n\t\tbool frustumTest = all( frustumTestVec );\n\t\tif ( frustumTest ) {\n\t\t#if defined( SHADOWMAP_TYPE_PCF )\n\t\t\tvec2 texelSize = vec2( 1.0 ) / shadowMapSize;\n\t\t\tfloat dx0 = - texelSize.x * shadowRadius;\n\t\t\tfloat dy0 = - texelSize.y * shadowRadius;\n\t\t\tfloat dx1 = + texelSize.x * shadowRadius;\n\t\t\tfloat dy1 = + texelSize.y * shadowRadius;\n\t\t\tfloat dx2 = dx0 / 2.0;\n\t\t\tfloat dy2 = dy0 / 2.0;\n\t\t\tfloat dx3 = dx1 / 2.0;\n\t\t\tfloat dy3 = dy1 / 2.0;\n\t\t\tshadow = (\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy2 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy2 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy2 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy3 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy3 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy3 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy1 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy1 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy1 ), shadowCoord.z )\n\t\t\t) * ( 1.0 / 17.0 );\n\t\t#elif defined( SHADOWMAP_TYPE_PCF_SOFT )\n\t\t\tvec2 texelSize = vec2( 1.0 ) / shadowMapSize;\n\t\t\tfloat dx = texelSize.x;\n\t\t\tfloat dy = texelSize.y;\n\t\t\tvec2 uv = shadowCoord.xy;\n\t\t\tvec2 f = fract( uv * shadowMapSize + 0.5 );\n\t\t\tuv -= f * texelSize;\n\t\t\tshadow = (\n\t\t\t\ttexture2DCompare( shadowMap, uv, shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, uv + vec2( dx, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, uv + vec2( 0.0, dy ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, uv + texelSize, shadowCoord.z ) +\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( -dx, 0.0 ), shadowCoord.z ), \n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 0.0 ), shadowCoord.z ),\n\t\t\t\t\t f.x ) +\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( -dx, dy ), shadowCoord.z ), \n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, dy ), shadowCoord.z ),\n\t\t\t\t\t f.x ) +\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( 0.0, -dy ), shadowCoord.z ), \n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 0.0, 2.0 * dy ), shadowCoord.z ),\n\t\t\t\t\t f.y ) +\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( dx, -dy ), shadowCoord.z ), \n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( dx, 2.0 * dy ), shadowCoord.z ),\n\t\t\t\t\t f.y ) +\n\t\t\t\tmix( mix( texture2DCompare( shadowMap, uv + vec2( -dx, -dy ), shadowCoord.z ), \n\t\t\t\t\t\t  texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, -dy ), shadowCoord.z ),\n\t\t\t\t\t\t  f.x ),\n\t\t\t\t\t mix( texture2DCompare( shadowMap, uv + vec2( -dx, 2.0 * dy ), shadowCoord.z ), \n\t\t\t\t\t\t  texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 2.0 * dy ), shadowCoord.z ),\n\t\t\t\t\t\t  f.x ),\n\t\t\t\t\t f.y )\n\t\t\t) * ( 1.0 / 9.0 );\n\t\t#elif defined( SHADOWMAP_TYPE_VSM )\n\t\t\tshadow = VSMShadow( shadowMap, shadowCoord.xy, shadowCoord.z );\n\t\t#else\n\t\t\tshadow = texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z );\n\t\t#endif\n\t\t}\n\t\treturn shadow;\n\t}\n\tvec2 cubeToUV( vec3 v, float texelSizeY ) {\n\t\tvec3 absV = abs( v );\n\t\tfloat scaleToCube = 1.0 / max( absV.x, max( absV.y, absV.z ) );\n\t\tabsV *= scaleToCube;\n\t\tv *= scaleToCube * ( 1.0 - 2.0 * texelSizeY );\n\t\tvec2 planar = v.xy;\n\t\tfloat almostATexel = 1.5 * texelSizeY;\n\t\tfloat almostOne = 1.0 - almostATexel;\n\t\tif ( absV.z >= almostOne ) {\n\t\t\tif ( v.z > 0.0 )\n\t\t\t\tplanar.x = 4.0 - v.x;\n\t\t} else if ( absV.x >= almostOne ) {\n\t\t\tfloat signX = sign( v.x );\n\t\t\tplanar.x = v.z * signX + 2.0 * signX;\n\t\t} else if ( absV.y >= almostOne ) {\n\t\t\tfloat signY = sign( v.y );\n\t\t\tplanar.x = v.x + 2.0 * signY + 2.0;\n\t\t\tplanar.y = v.z * signY - 2.0;\n\t\t}\n\t\treturn vec2( 0.125, 0.25 ) * planar + vec2( 0.375, 0.75 );\n\t}\n\tfloat getPointShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowBias, float shadowRadius, vec4 shadowCoord, float shadowCameraNear, float shadowCameraFar ) {\n\t\tvec2 texelSize = vec2( 1.0 ) / ( shadowMapSize * vec2( 4.0, 2.0 ) );\n\t\tvec3 lightToPosition = shadowCoord.xyz;\n\t\tfloat dp = ( length( lightToPosition ) - shadowCameraNear ) / ( shadowCameraFar - shadowCameraNear );\t\tdp += shadowBias;\n\t\tvec3 bd3D = normalize( lightToPosition );\n\t\t#if defined( SHADOWMAP_TYPE_PCF ) || defined( SHADOWMAP_TYPE_PCF_SOFT ) || defined( SHADOWMAP_TYPE_VSM )\n\t\t\tvec2 offset = vec2( - 1, 1 ) * shadowRadius * texelSize.y;\n\t\t\treturn (\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyy, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyy, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyx, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyx, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxy, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxy, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxx, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxx, texelSize.y ), dp )\n\t\t\t) * ( 1.0 / 9.0 );\n\t\t#else\n\t\t\treturn texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp );\n\t\t#endif\n\t}\n#endif`,Qy=`#ifdef USE_SHADOWMAP\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\n\t\tuniform mat4 directionalShadowMatrix[ NUM_DIR_LIGHT_SHADOWS ];\n\t\tvarying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ];\n\t\tstruct DirectionalLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t};\n\t\tuniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ];\n\t#endif\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\n\t\tuniform mat4 spotShadowMatrix[ NUM_SPOT_LIGHT_SHADOWS ];\n\t\tvarying vec4 vSpotShadowCoord[ NUM_SPOT_LIGHT_SHADOWS ];\n\t\tstruct SpotLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t};\n\t\tuniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ];\n\t#endif\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\n\t\tuniform mat4 pointShadowMatrix[ NUM_POINT_LIGHT_SHADOWS ];\n\t\tvarying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ];\n\t\tstruct PointLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t\tfloat shadowCameraNear;\n\t\t\tfloat shadowCameraFar;\n\t\t};\n\t\tuniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ];\n\t#endif\n#endif`,ex=`#ifdef USE_SHADOWMAP\n\t#if NUM_DIR_LIGHT_SHADOWS > 0 || NUM_SPOT_LIGHT_SHADOWS > 0 || NUM_POINT_LIGHT_SHADOWS > 0\n\t\tvec3 shadowWorldNormal = inverseTransformDirection( transformedNormal, viewMatrix );\n\t\tvec4 shadowWorldPosition;\n\t#endif\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) {\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * directionalLightShadows[ i ].shadowNormalBias, 0 );\n\t\tvDirectionalShadowCoord[ i ] = directionalShadowMatrix[ i ] * shadowWorldPosition;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) {\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * spotLightShadows[ i ].shadowNormalBias, 0 );\n\t\tvSpotShadowCoord[ i ] = spotShadowMatrix[ i ] * shadowWorldPosition;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) {\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * pointLightShadows[ i ].shadowNormalBias, 0 );\n\t\tvPointShadowCoord[ i ] = pointShadowMatrix[ i ] * shadowWorldPosition;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n#endif`,tx=`float getShadowMask() {\n\tfloat shadow = 1.0;\n\t#ifdef USE_SHADOWMAP\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\n\tDirectionalLightShadow directionalLight;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) {\n\t\tdirectionalLight = directionalLightShadows[ i ];\n\t\tshadow *= receiveShadow ? getShadow( directionalShadowMap[ i ], directionalLight.shadowMapSize, directionalLight.shadowBias, directionalLight.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\n\tSpotLightShadow spotLight;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) {\n\t\tspotLight = spotLightShadows[ i ];\n\t\tshadow *= receiveShadow ? getShadow( spotShadowMap[ i ], spotLight.shadowMapSize, spotLight.shadowBias, spotLight.shadowRadius, vSpotShadowCoord[ i ] ) : 1.0;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\n\tPointLightShadow pointLight;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) {\n\t\tpointLight = pointLightShadows[ i ];\n\t\tshadow *= receiveShadow ? getPointShadow( pointShadowMap[ i ], pointLight.shadowMapSize, pointLight.shadowBias, pointLight.shadowRadius, vPointShadowCoord[ i ], pointLight.shadowCameraNear, pointLight.shadowCameraFar ) : 1.0;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#endif\n\treturn shadow;\n}`,nx=`#ifdef USE_SKINNING\n\tmat4 boneMatX = getBoneMatrix( skinIndex.x );\n\tmat4 boneMatY = getBoneMatrix( skinIndex.y );\n\tmat4 boneMatZ = getBoneMatrix( skinIndex.z );\n\tmat4 boneMatW = getBoneMatrix( skinIndex.w );\n#endif`,ix=`#ifdef USE_SKINNING\n\tuniform mat4 bindMatrix;\n\tuniform mat4 bindMatrixInverse;\n\tuniform highp sampler2D boneTexture;\n\tuniform int boneTextureSize;\n\tmat4 getBoneMatrix( const in float i ) {\n\t\tfloat j = i * 4.0;\n\t\tfloat x = mod( j, float( boneTextureSize ) );\n\t\tfloat y = floor( j / float( boneTextureSize ) );\n\t\tfloat dx = 1.0 / float( boneTextureSize );\n\t\tfloat dy = 1.0 / float( boneTextureSize );\n\t\ty = dy * ( y + 0.5 );\n\t\tvec4 v1 = texture2D( boneTexture, vec2( dx * ( x + 0.5 ), y ) );\n\t\tvec4 v2 = texture2D( boneTexture, vec2( dx * ( x + 1.5 ), y ) );\n\t\tvec4 v3 = texture2D( boneTexture, vec2( dx * ( x + 2.5 ), y ) );\n\t\tvec4 v4 = texture2D( boneTexture, vec2( dx * ( x + 3.5 ), y ) );\n\t\tmat4 bone = mat4( v1, v2, v3, v4 );\n\t\treturn bone;\n\t}\n#endif`,sx=`#ifdef USE_SKINNING\n\tvec4 skinVertex = bindMatrix * vec4( transformed, 1.0 );\n\tvec4 skinned = vec4( 0.0 );\n\tskinned += boneMatX * skinVertex * skinWeight.x;\n\tskinned += boneMatY * skinVertex * skinWeight.y;\n\tskinned += boneMatZ * skinVertex * skinWeight.z;\n\tskinned += boneMatW * skinVertex * skinWeight.w;\n\ttransformed = ( bindMatrixInverse * skinned ).xyz;\n#endif`,rx=`#ifdef USE_SKINNING\n\tmat4 skinMatrix = mat4( 0.0 );\n\tskinMatrix += skinWeight.x * boneMatX;\n\tskinMatrix += skinWeight.y * boneMatY;\n\tskinMatrix += skinWeight.z * boneMatZ;\n\tskinMatrix += skinWeight.w * boneMatW;\n\tskinMatrix = bindMatrixInverse * skinMatrix * bindMatrix;\n\tobjectNormal = vec4( skinMatrix * vec4( objectNormal, 0.0 ) ).xyz;\n\t#ifdef USE_TANGENT\n\t\tobjectTangent = vec4( skinMatrix * vec4( objectTangent, 0.0 ) ).xyz;\n\t#endif\n#endif`,ox=`float specularStrength;\n#ifdef USE_SPECULARMAP\n\tvec4 texelSpecular = texture2D( specularMap, vUv );\n\tspecularStrength = texelSpecular.r;\n#else\n\tspecularStrength = 1.0;\n#endif`,ax=`#ifdef USE_SPECULARMAP\n\tuniform sampler2D specularMap;\n#endif`,lx=`#if defined( TONE_MAPPING )\n\tgl_FragColor.rgb = toneMapping( gl_FragColor.rgb );\n#endif`,cx=`#ifndef saturate\n#define saturate( a ) clamp( a, 0.0, 1.0 )\n#endif\nuniform float toneMappingExposure;\nvec3 LinearToneMapping( vec3 color ) {\n\treturn toneMappingExposure * color;\n}\nvec3 ReinhardToneMapping( vec3 color ) {\n\tcolor *= toneMappingExposure;\n\treturn saturate( color / ( vec3( 1.0 ) + color ) );\n}\nvec3 OptimizedCineonToneMapping( vec3 color ) {\n\tcolor *= toneMappingExposure;\n\tcolor = max( vec3( 0.0 ), color - 0.004 );\n\treturn pow( ( color * ( 6.2 * color + 0.5 ) ) / ( color * ( 6.2 * color + 1.7 ) + 0.06 ), vec3( 2.2 ) );\n}\nvec3 RRTAndODTFit( vec3 v ) {\n\tvec3 a = v * ( v + 0.0245786 ) - 0.000090537;\n\tvec3 b = v * ( 0.983729 * v + 0.4329510 ) + 0.238081;\n\treturn a / b;\n}\nvec3 ACESFilmicToneMapping( vec3 color ) {\n\tconst mat3 ACESInputMat = mat3(\n\t\tvec3( 0.59719, 0.07600, 0.02840 ),\t\tvec3( 0.35458, 0.90834, 0.13383 ),\n\t\tvec3( 0.04823, 0.01566, 0.83777 )\n\t);\n\tconst mat3 ACESOutputMat = mat3(\n\t\tvec3(  1.60475, -0.10208, -0.00327 ),\t\tvec3( -0.53108,  1.10813, -0.07276 ),\n\t\tvec3( -0.07367, -0.00605,  1.07602 )\n\t);\n\tcolor *= toneMappingExposure / 0.6;\n\tcolor = ACESInputMat * color;\n\tcolor = RRTAndODTFit( color );\n\tcolor = ACESOutputMat * color;\n\treturn saturate( color );\n}\nvec3 CustomToneMapping( vec3 color ) { return color; }`,ux=`#ifdef USE_TRANSMISSION\n\tfloat transmissionAlpha = 1.0;\n\tfloat transmissionFactor = transmission;\n\tfloat thicknessFactor = thickness;\n\t#ifdef USE_TRANSMISSIONMAP\n\t\ttransmissionFactor *= texture2D( transmissionMap, vUv ).r;\n\t#endif\n\t#ifdef USE_THICKNESSMAP\n\t\tthicknessFactor *= texture2D( thicknessMap, vUv ).g;\n\t#endif\n\tvec3 pos = vWorldPosition;\n\tvec3 v = normalize( cameraPosition - pos );\n\tvec3 n = inverseTransformDirection( normal, viewMatrix );\n\tvec4 transmission = getIBLVolumeRefraction(\n\t\tn, v, roughnessFactor, material.diffuseColor, material.specularColor, material.specularF90,\n\t\tpos, modelMatrix, viewMatrix, projectionMatrix, ior, thicknessFactor,\n\t\tattenuationColor, attenuationDistance );\n\ttotalDiffuse = mix( totalDiffuse, transmission.rgb, transmissionFactor );\n\ttransmissionAlpha = mix( transmissionAlpha, transmission.a, transmissionFactor );\n#endif`,hx=`#ifdef USE_TRANSMISSION\n\tuniform float transmission;\n\tuniform float thickness;\n\tuniform float attenuationDistance;\n\tuniform vec3 attenuationColor;\n\t#ifdef USE_TRANSMISSIONMAP\n\t\tuniform sampler2D transmissionMap;\n\t#endif\n\t#ifdef USE_THICKNESSMAP\n\t\tuniform sampler2D thicknessMap;\n\t#endif\n\tuniform vec2 transmissionSamplerSize;\n\tuniform sampler2D transmissionSamplerMap;\n\tuniform mat4 modelMatrix;\n\tuniform mat4 projectionMatrix;\n\tvarying vec3 vWorldPosition;\n\tvec3 getVolumeTransmissionRay( const in vec3 n, const in vec3 v, const in float thickness, const in float ior, const in mat4 modelMatrix ) {\n\t\tvec3 refractionVector = refract( - v, normalize( n ), 1.0 / ior );\n\t\tvec3 modelScale;\n\t\tmodelScale.x = length( vec3( modelMatrix[ 0 ].xyz ) );\n\t\tmodelScale.y = length( vec3( modelMatrix[ 1 ].xyz ) );\n\t\tmodelScale.z = length( vec3( modelMatrix[ 2 ].xyz ) );\n\t\treturn normalize( refractionVector ) * thickness * modelScale;\n\t}\n\tfloat applyIorToRoughness( const in float roughness, const in float ior ) {\n\t\treturn roughness * clamp( ior * 2.0 - 2.0, 0.0, 1.0 );\n\t}\n\tvec4 getTransmissionSample( const in vec2 fragCoord, const in float roughness, const in float ior ) {\n\t\tfloat framebufferLod = log2( transmissionSamplerSize.x ) * applyIorToRoughness( roughness, ior );\n\t\t#ifdef texture2DLodEXT\n\t\t\treturn texture2DLodEXT( transmissionSamplerMap, fragCoord.xy, framebufferLod );\n\t\t#else\n\t\t\treturn texture2D( transmissionSamplerMap, fragCoord.xy, framebufferLod );\n\t\t#endif\n\t}\n\tvec3 applyVolumeAttenuation( const in vec3 radiance, const in float transmissionDistance, const in vec3 attenuationColor, const in float attenuationDistance ) {\n\t\tif ( attenuationDistance == 0.0 ) {\n\t\t\treturn radiance;\n\t\t} else {\n\t\t\tvec3 attenuationCoefficient = -log( attenuationColor ) / attenuationDistance;\n\t\t\tvec3 transmittance = exp( - attenuationCoefficient * transmissionDistance );\t\t\treturn transmittance * radiance;\n\t\t}\n\t}\n\tvec4 getIBLVolumeRefraction( const in vec3 n, const in vec3 v, const in float roughness, const in vec3 diffuseColor,\n\t\tconst in vec3 specularColor, const in float specularF90, const in vec3 position, const in mat4 modelMatrix,\n\t\tconst in mat4 viewMatrix, const in mat4 projMatrix, const in float ior, const in float thickness,\n\t\tconst in vec3 attenuationColor, const in float attenuationDistance ) {\n\t\tvec3 transmissionRay = getVolumeTransmissionRay( n, v, thickness, ior, modelMatrix );\n\t\tvec3 refractedRayExit = position + transmissionRay;\n\t\tvec4 ndcPos = projMatrix * viewMatrix * vec4( refractedRayExit, 1.0 );\n\t\tvec2 refractionCoords = ndcPos.xy / ndcPos.w;\n\t\trefractionCoords += 1.0;\n\t\trefractionCoords /= 2.0;\n\t\tvec4 transmittedLight = getTransmissionSample( refractionCoords, roughness, ior );\n\t\tvec3 attenuatedColor = applyVolumeAttenuation( transmittedLight.rgb, length( transmissionRay ), attenuationColor, attenuationDistance );\n\t\tvec3 F = EnvironmentBRDF( n, v, specularColor, specularF90, roughness );\n\t\treturn vec4( ( 1.0 - F ) * attenuatedColor * diffuseColor, transmittedLight.a );\n\t}\n#endif`,fx=`#if ( defined( USE_UV ) && ! defined( UVS_VERTEX_ONLY ) )\n\tvarying vec2 vUv;\n#endif`,dx=`#ifdef USE_UV\n\t#ifdef UVS_VERTEX_ONLY\n\t\tvec2 vUv;\n\t#else\n\t\tvarying vec2 vUv;\n\t#endif\n\tuniform mat3 uvTransform;\n#endif`,px=`#ifdef USE_UV\n\tvUv = ( uvTransform * vec3( uv, 1 ) ).xy;\n#endif`,mx=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tvarying vec2 vUv2;\n#endif`,gx=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tattribute vec2 uv2;\n\tvarying vec2 vUv2;\n\tuniform mat3 uv2Transform;\n#endif`,yx=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tvUv2 = ( uv2Transform * vec3( uv2, 1 ) ).xy;\n#endif`,xx=`#if defined( USE_ENVMAP ) || defined( DISTANCE ) || defined ( USE_SHADOWMAP ) || defined ( USE_TRANSMISSION )\n\tvec4 worldPosition = vec4( transformed, 1.0 );\n\t#ifdef USE_INSTANCING\n\t\tworldPosition = instanceMatrix * worldPosition;\n\t#endif\n\tworldPosition = modelMatrix * worldPosition;\n#endif`;const vx=`varying vec2 vUv;\nuniform mat3 uvTransform;\nvoid main() {\n\tvUv = ( uvTransform * vec3( uv, 1 ) ).xy;\n\tgl_Position = vec4( position.xy, 1.0, 1.0 );\n}`,_x=`uniform sampler2D t2D;\nvarying vec2 vUv;\nvoid main() {\n\tgl_FragColor = texture2D( t2D, vUv );\n\t#ifdef DECODE_VIDEO_TEXTURE\n\t\tgl_FragColor = vec4( mix( pow( gl_FragColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), gl_FragColor.rgb * 0.0773993808, vec3( lessThanEqual( gl_FragColor.rgb, vec3( 0.04045 ) ) ) ), gl_FragColor.w );\n\t#endif\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n}`,bx=`varying vec3 vWorldDirection;\n#include <common>\nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include <begin_vertex>\n\t#include <project_vertex>\n\tgl_Position.z = gl_Position.w;\n}`,wx=`#include <envmap_common_pars_fragment>\nuniform float opacity;\nvarying vec3 vWorldDirection;\n#include <cube_uv_reflection_fragment>\nvoid main() {\n\tvec3 vReflect = vWorldDirection;\n\t#include <envmap_fragment>\n\tgl_FragColor = envColor;\n\tgl_FragColor.a *= opacity;\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n}`,Mx=`#include <common>\n#include <uv_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvarying vec2 vHighPrecisionZW;\nvoid main() {\n\t#include <uv_vertex>\n\t#include <skinbase_vertex>\n\t#ifdef USE_DISPLACEMENTMAP\n\t\t#include <beginnormal_vertex>\n\t\t#include <morphnormal_vertex>\n\t\t#include <skinnormal_vertex>\n\t#endif\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\tvHighPrecisionZW = gl_Position.zw;\n}`,Sx=`#if DEPTH_PACKING == 3200\n\tuniform float opacity;\n#endif\n#include <common>\n#include <packing>\n#include <uv_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvarying vec2 vHighPrecisionZW;\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( 1.0 );\n\t#if DEPTH_PACKING == 3200\n\t\tdiffuseColor.a = opacity;\n\t#endif\n\t#include <map_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <logdepthbuf_fragment>\n\tfloat fragCoordZ = 0.5 * vHighPrecisionZW[0] / vHighPrecisionZW[1] + 0.5;\n\t#if DEPTH_PACKING == 3200\n\t\tgl_FragColor = vec4( vec3( 1.0 - fragCoordZ ), opacity );\n\t#elif DEPTH_PACKING == 3201\n\t\tgl_FragColor = packDepthToRGBA( fragCoordZ );\n\t#endif\n}`,Tx=`#define DISTANCE\nvarying vec3 vWorldPosition;\n#include <common>\n#include <uv_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <skinbase_vertex>\n\t#ifdef USE_DISPLACEMENTMAP\n\t\t#include <beginnormal_vertex>\n\t\t#include <morphnormal_vertex>\n\t\t#include <skinnormal_vertex>\n\t#endif\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <worldpos_vertex>\n\t#include <clipping_planes_vertex>\n\tvWorldPosition = worldPosition.xyz;\n}`,Ax=`#define DISTANCE\nuniform vec3 referencePosition;\nuniform float nearDistance;\nuniform float farDistance;\nvarying vec3 vWorldPosition;\n#include <common>\n#include <packing>\n#include <uv_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main () {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( 1.0 );\n\t#include <map_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\tfloat dist = length( vWorldPosition - referencePosition );\n\tdist = ( dist - nearDistance ) / ( farDistance - nearDistance );\n\tdist = saturate( dist );\n\tgl_FragColor = packDepthToRGBA( dist );\n}`,Ex=`varying vec3 vWorldDirection;\n#include <common>\nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include <begin_vertex>\n\t#include <project_vertex>\n}`,Cx=`uniform sampler2D tEquirect;\nvarying vec3 vWorldDirection;\n#include <common>\nvoid main() {\n\tvec3 direction = normalize( vWorldDirection );\n\tvec2 sampleUV = equirectUv( direction );\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n}`,Lx=`uniform float scale;\nattribute float lineDistance;\nvarying float vLineDistance;\n#include <common>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\tvLineDistance = scale * lineDistance;\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <fog_vertex>\n}`,Rx=`uniform vec3 diffuse;\nuniform float opacity;\nuniform float dashSize;\nuniform float totalSize;\nvarying float vLineDistance;\n#include <common>\n#include <color_pars_fragment>\n#include <fog_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tif ( mod( vLineDistance, totalSize ) > dashSize ) {\n\t\tdiscard;\n\t}\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <color_fragment>\n\toutgoingLight = diffuseColor.rgb;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n}`,Ix=`#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <envmap_pars_vertex>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#if defined ( USE_ENVMAP ) || defined ( USE_SKINNING )\n\t\t#include <beginnormal_vertex>\n\t\t#include <morphnormal_vertex>\n\t\t#include <skinbase_vertex>\n\t\t#include <skinnormal_vertex>\n\t\t#include <defaultnormal_vertex>\n\t#endif\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <worldpos_vertex>\n\t#include <envmap_vertex>\n\t#include <fog_vertex>\n}`,Px=`uniform vec3 diffuse;\nuniform float opacity;\n#ifndef FLAT_SHADED\n\tvarying vec3 vNormal;\n#endif\n#include <common>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <envmap_common_pars_fragment>\n#include <envmap_pars_fragment>\n#include <cube_uv_reflection_fragment>\n#include <fog_pars_fragment>\n#include <specularmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <specularmap_fragment>\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\t#ifdef USE_LIGHTMAP\n\t\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\n\t\treflectedLight.indirectDiffuse += lightMapTexel.rgb * lightMapIntensity * RECIPROCAL_PI;\n\t#else\n\t\treflectedLight.indirectDiffuse += vec3( 1.0 );\n\t#endif\n\t#include <aomap_fragment>\n\treflectedLight.indirectDiffuse *= diffuseColor.rgb;\n\tvec3 outgoingLight = reflectedLight.indirectDiffuse;\n\t#include <envmap_fragment>\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,Dx=`#define LAMBERT\nvarying vec3 vLightFront;\nvarying vec3 vIndirectFront;\n#ifdef DOUBLE_SIDED\n\tvarying vec3 vLightBack;\n\tvarying vec3 vIndirectBack;\n#endif\n#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <envmap_pars_vertex>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <worldpos_vertex>\n\t#include <envmap_vertex>\n\t#include <lights_lambert_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n}`,Fx=`uniform vec3 diffuse;\nuniform vec3 emissive;\nuniform float opacity;\nvarying vec3 vLightFront;\nvarying vec3 vIndirectFront;\n#ifdef DOUBLE_SIDED\n\tvarying vec3 vLightBack;\n\tvarying vec3 vIndirectBack;\n#endif\n#include <common>\n#include <packing>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <emissivemap_pars_fragment>\n#include <envmap_common_pars_fragment>\n#include <envmap_pars_fragment>\n#include <cube_uv_reflection_fragment>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <fog_pars_fragment>\n#include <shadowmap_pars_fragment>\n#include <shadowmask_pars_fragment>\n#include <specularmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\tvec3 totalEmissiveRadiance = emissive;\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <specularmap_fragment>\n\t#include <emissivemap_fragment>\n\t#ifdef DOUBLE_SIDED\n\t\treflectedLight.indirectDiffuse += ( gl_FrontFacing ) ? vIndirectFront : vIndirectBack;\n\t#else\n\t\treflectedLight.indirectDiffuse += vIndirectFront;\n\t#endif\n\t#include <lightmap_fragment>\n\treflectedLight.indirectDiffuse *= BRDF_Lambert( diffuseColor.rgb );\n\t#ifdef DOUBLE_SIDED\n\t\treflectedLight.directDiffuse = ( gl_FrontFacing ) ? vLightFront : vLightBack;\n\t#else\n\t\treflectedLight.directDiffuse = vLightFront;\n\t#endif\n\treflectedLight.directDiffuse *= BRDF_Lambert( diffuseColor.rgb ) * getShadowMask();\n\t#include <aomap_fragment>\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance;\n\t#include <envmap_fragment>\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,Nx=`#define MATCAP\nvarying vec3 vViewPosition;\n#include <common>\n#include <uv_pars_vertex>\n#include <color_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <fog_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <fog_vertex>\n\tvViewPosition = - mvPosition.xyz;\n}`,kx=`#define MATCAP\nuniform vec3 diffuse;\nuniform float opacity;\nuniform sampler2D matcap;\nvarying vec3 vViewPosition;\n#include <common>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <fog_pars_fragment>\n#include <normal_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\tvec3 viewDir = normalize( vViewPosition );\n\tvec3 x = normalize( vec3( viewDir.z, 0.0, - viewDir.x ) );\n\tvec3 y = cross( viewDir, x );\n\tvec2 uv = vec2( dot( x, normal ), dot( y, normal ) ) * 0.495 + 0.5;\n\t#ifdef USE_MATCAP\n\t\tvec4 matcapColor = texture2D( matcap, uv );\n\t#else\n\t\tvec4 matcapColor = vec4( vec3( mix( 0.2, 0.8, uv.y ) ), 1.0 );\n\t#endif\n\tvec3 outgoingLight = diffuseColor.rgb * matcapColor.rgb;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,Ox=`#define NORMAL\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\n\tvarying vec3 vViewPosition;\n#endif\n#include <common>\n#include <uv_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\n\tvViewPosition = - mvPosition.xyz;\n#endif\n}`,Bx=`#define NORMAL\nuniform float opacity;\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\n\tvarying vec3 vViewPosition;\n#endif\n#include <packing>\n#include <uv_pars_fragment>\n#include <normal_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\t#include <logdepthbuf_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\tgl_FragColor = vec4( packNormalToRGB( normal ), opacity );\n\t#ifdef OPAQUE\n\t\tgl_FragColor.a = 1.0;\n\t#endif\n}`,zx=`#define PHONG\nvarying vec3 vViewPosition;\n#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <envmap_pars_vertex>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\tvViewPosition = - mvPosition.xyz;\n\t#include <worldpos_vertex>\n\t#include <envmap_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n}`,Ux=`#define PHONG\nuniform vec3 diffuse;\nuniform vec3 emissive;\nuniform vec3 specular;\nuniform float shininess;\nuniform float opacity;\n#include <common>\n#include <packing>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <emissivemap_pars_fragment>\n#include <envmap_common_pars_fragment>\n#include <envmap_pars_fragment>\n#include <cube_uv_reflection_fragment>\n#include <fog_pars_fragment>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <normal_pars_fragment>\n#include <lights_phong_pars_fragment>\n#include <shadowmap_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <specularmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\tvec3 totalEmissiveRadiance = emissive;\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <specularmap_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\t#include <emissivemap_fragment>\n\t#include <lights_phong_fragment>\n\t#include <lights_fragment_begin>\n\t#include <lights_fragment_maps>\n\t#include <lights_fragment_end>\n\t#include <aomap_fragment>\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + reflectedLight.directSpecular + reflectedLight.indirectSpecular + totalEmissiveRadiance;\n\t#include <envmap_fragment>\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,Gx=`#define STANDARD\nvarying vec3 vViewPosition;\n#ifdef USE_TRANSMISSION\n\tvarying vec3 vWorldPosition;\n#endif\n#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\tvViewPosition = - mvPosition.xyz;\n\t#include <worldpos_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n#ifdef USE_TRANSMISSION\n\tvWorldPosition = worldPosition.xyz;\n#endif\n}`,Vx=`#define STANDARD\n#ifdef PHYSICAL\n\t#define IOR\n\t#define SPECULAR\n#endif\nuniform vec3 diffuse;\nuniform vec3 emissive;\nuniform float roughness;\nuniform float metalness;\nuniform float opacity;\n#ifdef IOR\n\tuniform float ior;\n#endif\n#ifdef SPECULAR\n\tuniform float specularIntensity;\n\tuniform vec3 specularColor;\n\t#ifdef USE_SPECULARINTENSITYMAP\n\t\tuniform sampler2D specularIntensityMap;\n\t#endif\n\t#ifdef USE_SPECULARCOLORMAP\n\t\tuniform sampler2D specularColorMap;\n\t#endif\n#endif\n#ifdef USE_CLEARCOAT\n\tuniform float clearcoat;\n\tuniform float clearcoatRoughness;\n#endif\n#ifdef USE_IRIDESCENCE\n\tuniform float iridescence;\n\tuniform float iridescenceIOR;\n\tuniform float iridescenceThicknessMinimum;\n\tuniform float iridescenceThicknessMaximum;\n#endif\n#ifdef USE_SHEEN\n\tuniform vec3 sheenColor;\n\tuniform float sheenRoughness;\n\t#ifdef USE_SHEENCOLORMAP\n\t\tuniform sampler2D sheenColorMap;\n\t#endif\n\t#ifdef USE_SHEENROUGHNESSMAP\n\t\tuniform sampler2D sheenRoughnessMap;\n\t#endif\n#endif\nvarying vec3 vViewPosition;\n#include <common>\n#include <packing>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <emissivemap_pars_fragment>\n#include <bsdfs>\n#include <iridescence_fragment>\n#include <cube_uv_reflection_fragment>\n#include <envmap_common_pars_fragment>\n#include <envmap_physical_pars_fragment>\n#include <fog_pars_fragment>\n#include <lights_pars_begin>\n#include <normal_pars_fragment>\n#include <lights_physical_pars_fragment>\n#include <transmission_pars_fragment>\n#include <shadowmap_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <clearcoat_pars_fragment>\n#include <iridescence_pars_fragment>\n#include <roughnessmap_pars_fragment>\n#include <metalnessmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\tvec3 totalEmissiveRadiance = emissive;\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <roughnessmap_fragment>\n\t#include <metalnessmap_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\t#include <clearcoat_normal_fragment_begin>\n\t#include <clearcoat_normal_fragment_maps>\n\t#include <emissivemap_fragment>\n\t#include <lights_physical_fragment>\n\t#include <lights_fragment_begin>\n\t#include <lights_fragment_maps>\n\t#include <lights_fragment_end>\n\t#include <aomap_fragment>\n\tvec3 totalDiffuse = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse;\n\tvec3 totalSpecular = reflectedLight.directSpecular + reflectedLight.indirectSpecular;\n\t#include <transmission_fragment>\n\tvec3 outgoingLight = totalDiffuse + totalSpecular + totalEmissiveRadiance;\n\t#ifdef USE_SHEEN\n\t\tfloat sheenEnergyComp = 1.0 - 0.157 * max3( material.sheenColor );\n\t\toutgoingLight = outgoingLight * sheenEnergyComp + sheenSpecular;\n\t#endif\n\t#ifdef USE_CLEARCOAT\n\t\tfloat dotNVcc = saturate( dot( geometry.clearcoatNormal, geometry.viewDir ) );\n\t\tvec3 Fcc = F_Schlick( material.clearcoatF0, material.clearcoatF90, dotNVcc );\n\t\toutgoingLight = outgoingLight * ( 1.0 - material.clearcoat * Fcc ) + clearcoatSpecular * material.clearcoat;\n\t#endif\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,Hx=`#define TOON\nvarying vec3 vViewPosition;\n#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\tvViewPosition = - mvPosition.xyz;\n\t#include <worldpos_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n}`,Wx=`#define TOON\nuniform vec3 diffuse;\nuniform vec3 emissive;\nuniform float opacity;\n#include <common>\n#include <packing>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <emissivemap_pars_fragment>\n#include <gradientmap_pars_fragment>\n#include <fog_pars_fragment>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <normal_pars_fragment>\n#include <lights_toon_pars_fragment>\n#include <shadowmap_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\tvec3 totalEmissiveRadiance = emissive;\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\t#include <emissivemap_fragment>\n\t#include <lights_toon_fragment>\n\t#include <lights_fragment_begin>\n\t#include <lights_fragment_maps>\n\t#include <lights_fragment_end>\n\t#include <aomap_fragment>\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,qx=`uniform float size;\nuniform float scale;\n#include <common>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <project_vertex>\n\tgl_PointSize = size;\n\t#ifdef USE_SIZEATTENUATION\n\t\tbool isPerspective = isPerspectiveMatrix( projectionMatrix );\n\t\tif ( isPerspective ) gl_PointSize *= ( scale / - mvPosition.z );\n\t#endif\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <worldpos_vertex>\n\t#include <fog_vertex>\n}`,Xx=`uniform vec3 diffuse;\nuniform float opacity;\n#include <common>\n#include <color_pars_fragment>\n#include <map_particle_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <fog_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <map_particle_fragment>\n\t#include <color_fragment>\n\t#include <alphatest_fragment>\n\toutgoingLight = diffuseColor.rgb;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n}`,jx=`#include <common>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\nvoid main() {\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <project_vertex>\n\t#include <worldpos_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n}`,Yx=`uniform vec3 color;\nuniform float opacity;\n#include <common>\n#include <packing>\n#include <fog_pars_fragment>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <shadowmap_pars_fragment>\n#include <shadowmask_pars_fragment>\nvoid main() {\n\tgl_FragColor = vec4( color, opacity * ( 1.0 - getShadowMask() ) );\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n}`,Zx=`uniform float rotation;\nuniform vec2 center;\n#include <common>\n#include <uv_pars_vertex>\n#include <fog_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\tvec4 mvPosition = modelViewMatrix * vec4( 0.0, 0.0, 0.0, 1.0 );\n\tvec2 scale;\n\tscale.x = length( vec3( modelMatrix[ 0 ].x, modelMatrix[ 0 ].y, modelMatrix[ 0 ].z ) );\n\tscale.y = length( vec3( modelMatrix[ 1 ].x, modelMatrix[ 1 ].y, modelMatrix[ 1 ].z ) );\n\t#ifndef USE_SIZEATTENUATION\n\t\tbool isPerspective = isPerspectiveMatrix( projectionMatrix );\n\t\tif ( isPerspective ) scale *= - mvPosition.z;\n\t#endif\n\tvec2 alignedPosition = ( position.xy - ( center - vec2( 0.5 ) ) ) * scale;\n\tvec2 rotatedPosition;\n\trotatedPosition.x = cos( rotation ) * alignedPosition.x - sin( rotation ) * alignedPosition.y;\n\trotatedPosition.y = sin( rotation ) * alignedPosition.x + cos( rotation ) * alignedPosition.y;\n\tmvPosition.xy += rotatedPosition;\n\tgl_Position = projectionMatrix * mvPosition;\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <fog_vertex>\n}`,Kx=`uniform vec3 diffuse;\nuniform float opacity;\n#include <common>\n#include <uv_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <fog_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\toutgoingLight = diffuseColor.rgb;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n}`,st={alphamap_fragment:w0,alphamap_pars_fragment:M0,alphatest_fragment:S0,alphatest_pars_fragment:T0,aomap_fragment:A0,aomap_pars_fragment:E0,begin_vertex:C0,beginnormal_vertex:L0,bsdfs:R0,iridescence_fragment:I0,bumpmap_pars_fragment:P0,clipping_planes_fragment:D0,clipping_planes_pars_fragment:F0,clipping_planes_pars_vertex:N0,clipping_planes_vertex:k0,color_fragment:O0,color_pars_fragment:B0,color_pars_vertex:z0,color_vertex:U0,common:G0,cube_uv_reflection_fragment:V0,defaultnormal_vertex:H0,displacementmap_pars_vertex:W0,displacementmap_vertex:q0,emissivemap_fragment:X0,emissivemap_pars_fragment:j0,encodings_fragment:Y0,encodings_pars_fragment:Z0,envmap_fragment:K0,envmap_common_pars_fragment:J0,envmap_pars_fragment:$0,envmap_pars_vertex:Q0,envmap_physical_pars_fragment:uy,envmap_vertex:ey,fog_vertex:ty,fog_pars_vertex:ny,fog_fragment:iy,fog_pars_fragment:sy,gradientmap_pars_fragment:ry,lightmap_fragment:oy,lightmap_pars_fragment:ay,lights_lambert_vertex:ly,lights_pars_begin:cy,lights_toon_fragment:hy,lights_toon_pars_fragment:fy,lights_phong_fragment:dy,lights_phong_pars_fragment:py,lights_physical_fragment:my,lights_physical_pars_fragment:gy,lights_fragment_begin:yy,lights_fragment_maps:xy,lights_fragment_end:vy,logdepthbuf_fragment:_y,logdepthbuf_pars_fragment:by,logdepthbuf_pars_vertex:wy,logdepthbuf_vertex:My,map_fragment:Sy,map_pars_fragment:Ty,map_particle_fragment:Ay,map_particle_pars_fragment:Ey,metalnessmap_fragment:Cy,metalnessmap_pars_fragment:Ly,morphcolor_vertex:Ry,morphnormal_vertex:Iy,morphtarget_pars_vertex:Py,morphtarget_vertex:Dy,normal_fragment_begin:Fy,normal_fragment_maps:Ny,normal_pars_fragment:ky,normal_pars_vertex:Oy,normal_vertex:By,normalmap_pars_fragment:zy,clearcoat_normal_fragment_begin:Uy,clearcoat_normal_fragment_maps:Gy,clearcoat_pars_fragment:Vy,iridescence_pars_fragment:Hy,output_fragment:Wy,packing:qy,premultiplied_alpha_fragment:Xy,project_vertex:jy,dithering_fragment:Yy,dithering_pars_fragment:Zy,roughnessmap_fragment:Ky,roughnessmap_pars_fragment:Jy,shadowmap_pars_fragment:$y,shadowmap_pars_vertex:Qy,shadowmap_vertex:ex,shadowmask_pars_fragment:tx,skinbase_vertex:nx,skinning_pars_vertex:ix,skinning_vertex:sx,skinnormal_vertex:rx,specularmap_fragment:ox,specularmap_pars_fragment:ax,tonemapping_fragment:lx,tonemapping_pars_fragment:cx,transmission_fragment:ux,transmission_pars_fragment:hx,uv_pars_fragment:fx,uv_pars_vertex:dx,uv_vertex:px,uv2_pars_fragment:mx,uv2_pars_vertex:gx,uv2_vertex:yx,worldpos_vertex:xx,background_vert:vx,background_frag:_x,cube_vert:bx,cube_frag:wx,depth_vert:Mx,depth_frag:Sx,distanceRGBA_vert:Tx,distanceRGBA_frag:Ax,equirect_vert:Ex,equirect_frag:Cx,linedashed_vert:Lx,linedashed_frag:Rx,meshbasic_vert:Ix,meshbasic_frag:Px,meshlambert_vert:Dx,meshlambert_frag:Fx,meshmatcap_vert:Nx,meshmatcap_frag:kx,meshnormal_vert:Ox,meshnormal_frag:Bx,meshphong_vert:zx,meshphong_frag:Ux,meshphysical_vert:Gx,meshphysical_frag:Vx,meshtoon_vert:Hx,meshtoon_frag:Wx,points_vert:qx,points_frag:Xx,shadow_vert:jx,shadow_frag:Yx,sprite_vert:Zx,sprite_frag:Kx},De={common:{diffuse:{value:new we(16777215)},opacity:{value:1},map:{value:null},uvTransform:{value:new dn},uv2Transform:{value:new dn},alphaMap:{value:null},alphaTest:{value:0}},specularmap:{specularMap:{value:null}},envmap:{envMap:{value:null},flipEnvMap:{value:-1},reflectivity:{value:1},ior:{value:1.5},refractionRatio:{value:.98}},aomap:{aoMap:{value:null},aoMapIntensity:{value:1}},lightmap:{lightMap:{value:null},lightMapIntensity:{value:1}},emissivemap:{emissiveMap:{value:null}},bumpmap:{bumpMap:{value:null},bumpScale:{value:1}},normalmap:{normalMap:{value:null},normalScale:{value:new fe(1,1)}},displacementmap:{displacementMap:{value:null},displacementScale:{value:1},displacementBias:{value:0}},roughnessmap:{roughnessMap:{value:null}},metalnessmap:{metalnessMap:{value:null}},gradientmap:{gradientMap:{value:null}},fog:{fogDensity:{value:25e-5},fogNear:{value:1},fogFar:{value:2e3},fogColor:{value:new we(16777215)}},lights:{ambientLightColor:{value:[]},lightProbe:{value:[]},directionalLights:{value:[],properties:{direction:{},color:{}}},directionalLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},directionalShadowMap:{value:[]},directionalShadowMatrix:{value:[]},spotLights:{value:[],properties:{color:{},position:{},direction:{},distance:{},coneCos:{},penumbraCos:{},decay:{}}},spotLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},spotShadowMap:{value:[]},spotShadowMatrix:{value:[]},pointLights:{value:[],properties:{color:{},position:{},decay:{},distance:{}}},pointLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{},shadowCameraNear:{},shadowCameraFar:{}}},pointShadowMap:{value:[]},pointShadowMatrix:{value:[]},hemisphereLights:{value:[],properties:{direction:{},skyColor:{},groundColor:{}}},rectAreaLights:{value:[],properties:{color:{},position:{},width:{},height:{}}},ltc_1:{value:null},ltc_2:{value:null}},points:{diffuse:{value:new we(16777215)},opacity:{value:1},size:{value:1},scale:{value:1},map:{value:null},alphaMap:{value:null},alphaTest:{value:0},uvTransform:{value:new dn}},sprite:{diffuse:{value:new we(16777215)},opacity:{value:1},center:{value:new fe(.5,.5)},rotation:{value:0},map:{value:null},alphaMap:{value:null},alphaTest:{value:0},uvTransform:{value:new dn}}},Xn={basic:{uniforms:an([De.common,De.specularmap,De.envmap,De.aomap,De.lightmap,De.fog]),vertexShader:st.meshbasic_vert,fragmentShader:st.meshbasic_frag},lambert:{uniforms:an([De.common,De.specularmap,De.envmap,De.aomap,De.lightmap,De.emissivemap,De.fog,De.lights,{emissive:{value:new we(0)}}]),vertexShader:st.meshlambert_vert,fragmentShader:st.meshlambert_frag},phong:{uniforms:an([De.common,De.specularmap,De.envmap,De.aomap,De.lightmap,De.emissivemap,De.bumpmap,De.normalmap,De.displacementmap,De.fog,De.lights,{emissive:{value:new we(0)},specular:{value:new we(1118481)},shininess:{value:30}}]),vertexShader:st.meshphong_vert,fragmentShader:st.meshphong_frag},standard:{uniforms:an([De.common,De.envmap,De.aomap,De.lightmap,De.emissivemap,De.bumpmap,De.normalmap,De.displacementmap,De.roughnessmap,De.metalnessmap,De.fog,De.lights,{emissive:{value:new we(0)},roughness:{value:1},metalness:{value:0},envMapIntensity:{value:1}}]),vertexShader:st.meshphysical_vert,fragmentShader:st.meshphysical_frag},toon:{uniforms:an([De.common,De.aomap,De.lightmap,De.emissivemap,De.bumpmap,De.normalmap,De.displacementmap,De.gradientmap,De.fog,De.lights,{emissive:{value:new we(0)}}]),vertexShader:st.meshtoon_vert,fragmentShader:st.meshtoon_frag},matcap:{uniforms:an([De.common,De.bumpmap,De.normalmap,De.displacementmap,De.fog,{matcap:{value:null}}]),vertexShader:st.meshmatcap_vert,fragmentShader:st.meshmatcap_frag},points:{uniforms:an([De.points,De.fog]),vertexShader:st.points_vert,fragmentShader:st.points_frag},dashed:{uniforms:an([De.common,De.fog,{scale:{value:1},dashSize:{value:1},totalSize:{value:2}}]),vertexShader:st.linedashed_vert,fragmentShader:st.linedashed_frag},depth:{uniforms:an([De.common,De.displacementmap]),vertexShader:st.depth_vert,fragmentShader:st.depth_frag},normal:{uniforms:an([De.common,De.bumpmap,De.normalmap,De.displacementmap,{opacity:{value:1}}]),vertexShader:st.meshnormal_vert,fragmentShader:st.meshnormal_frag},sprite:{uniforms:an([De.sprite,De.fog]),vertexShader:st.sprite_vert,fragmentShader:st.sprite_frag},background:{uniforms:{uvTransform:{value:new dn},t2D:{value:null}},vertexShader:st.background_vert,fragmentShader:st.background_frag},cube:{uniforms:an([De.envmap,{opacity:{value:1}}]),vertexShader:st.cube_vert,fragmentShader:st.cube_frag},equirect:{uniforms:{tEquirect:{value:null}},vertexShader:st.equirect_vert,fragmentShader:st.equirect_frag},distanceRGBA:{uniforms:an([De.common,De.displacementmap,{referencePosition:{value:new I},nearDistance:{value:1},farDistance:{value:1e3}}]),vertexShader:st.distanceRGBA_vert,fragmentShader:st.distanceRGBA_frag},shadow:{uniforms:an([De.lights,De.fog,{color:{value:new we(0)},opacity:{value:1}}]),vertexShader:st.shadow_vert,fragmentShader:st.shadow_frag}};Xn.physical={uniforms:an([Xn.standard.uniforms,{clearcoat:{value:0},clearcoatMap:{value:null},clearcoatRoughness:{value:0},clearcoatRoughnessMap:{value:null},clearcoatNormalScale:{value:new fe(1,1)},clearcoatNormalMap:{value:null},iridescence:{value:0},iridescenceMap:{value:null},iridescenceIOR:{value:1.3},iridescenceThicknessMinimum:{value:100},iridescenceThicknessMaximum:{value:400},iridescenceThicknessMap:{value:null},sheen:{value:0},sheenColor:{value:new we(0)},sheenColorMap:{value:null},sheenRoughness:{value:1},sheenRoughnessMap:{value:null},transmission:{value:0},transmissionMap:{value:null},transmissionSamplerSize:{value:new fe},transmissionSamplerMap:{value:null},thickness:{value:0},thicknessMap:{value:null},attenuationDistance:{value:0},attenuationColor:{value:new we(0)},specularIntensity:{value:1},specularIntensityMap:{value:null},specularColor:{value:new we(1,1,1)},specularColorMap:{value:null}}]),vertexShader:st.meshphysical_vert,fragmentShader:st.meshphysical_frag};function Jx(a,e,t,n,i,s){const r=new we(0);let o=i===!0?0:1,l,c,h=null,u=0,f=null;function d(m,g){let y=!1,x=g.isScene===!0?g.background:null;x&&x.isTexture&&(x=e.get(x));const b=a.xr,v=b.getSession&&b.getSession();v&&v.environmentBlendMode===\"additive\"&&(x=null),x===null?p(r,o):x&&x.isColor&&(p(x,1),y=!0),(a.autoClear||y)&&a.clear(a.autoClearColor,a.autoClearDepth,a.autoClearStencil),x&&(x.isCubeTexture||x.mapping===Gr)?(c===void 0&&(c=new Rt(new Si(1,1,1),new ni({name:\"BackgroundCubeMaterial\",uniforms:Tr(Xn.cube.uniforms),vertexShader:Xn.cube.vertexShader,fragmentShader:Xn.cube.fragmentShader,side:kn,depthTest:!1,depthWrite:!1,fog:!1})),c.geometry.deleteAttribute(\"normal\"),c.geometry.deleteAttribute(\"uv\"),c.onBeforeRender=function(M,T,C){this.matrixWorld.copyPosition(C.matrixWorld)},Object.defineProperty(c.material,\"envMap\",{get:function(){return this.uniforms.envMap.value}}),n.update(c)),c.material.uniforms.envMap.value=x,c.material.uniforms.flipEnvMap.value=x.isCubeTexture&&x.isRenderTargetTexture===!1?-1:1,(h!==x||u!==x.version||f!==a.toneMapping)&&(c.material.needsUpdate=!0,h=x,u=x.version,f=a.toneMapping),c.layers.enableAll(),m.unshift(c,c.geometry,c.material,0,0,null)):x&&x.isTexture&&(l===void 0&&(l=new Rt(new Ps(2,2),new ni({name:\"BackgroundMaterial\",uniforms:Tr(Xn.background.uniforms),vertexShader:Xn.background.vertexShader,fragmentShader:Xn.background.fragmentShader,side:bi,depthTest:!1,depthWrite:!1,fog:!1})),l.geometry.deleteAttribute(\"normal\"),Object.defineProperty(l.material,\"map\",{get:function(){return this.uniforms.t2D.value}}),n.update(l)),l.material.uniforms.t2D.value=x,x.matrixAutoUpdate===!0&&x.updateMatrix(),l.material.uniforms.uvTransform.value.copy(x.matrix),(h!==x||u!==x.version||f!==a.toneMapping)&&(l.material.needsUpdate=!0,h=x,u=x.version,f=a.toneMapping),l.layers.enableAll(),m.unshift(l,l.geometry,l.material,0,0,null))}function p(m,g){t.buffers.color.setClear(m.r,m.g,m.b,g,s)}return{getClearColor:function(){return r},setClearColor:function(m,g=1){r.set(m),o=g,p(r,o)},getClearAlpha:function(){return o},setClearAlpha:function(m){o=m,p(r,o)},render:d}}function $x(a,e,t,n){const i=a.getParameter(34921),s=n.isWebGL2?null:e.get(\"OES_vertex_array_object\"),r=n.isWebGL2||s!==null,o={},l=g(null);let c=l,h=!1;function u(G,X,O,j,Y){let W=!1;if(r){const Z=m(j,O,X);c!==Z&&(c=Z,d(c.object)),W=y(G,j,O,Y),W&&x(G,j,O,Y)}else{const Z=X.wireframe===!0;(c.geometry!==j.id||c.program!==O.id||c.wireframe!==Z)&&(c.geometry=j.id,c.program=O.id,c.wireframe=Z,W=!0)}Y!==null&&t.update(Y,34963),(W||h)&&(h=!1,_(G,X,O,j),Y!==null&&a.bindBuffer(34963,t.get(Y).buffer))}function f(){return n.isWebGL2?a.createVertexArray():s.createVertexArrayOES()}function d(G){return n.isWebGL2?a.bindVertexArray(G):s.bindVertexArrayOES(G)}function p(G){return n.isWebGL2?a.deleteVertexArray(G):s.deleteVertexArrayOES(G)}function m(G,X,O){const j=O.wireframe===!0;let Y=o[G.id];Y===void 0&&(Y={},o[G.id]=Y);let W=Y[X.id];W===void 0&&(W={},Y[X.id]=W);let Z=W[j];return Z===void 0&&(Z=g(f()),W[j]=Z),Z}function g(G){const X=[],O=[],j=[];for(let Y=0;Y<i;Y++)X[Y]=0,O[Y]=0,j[Y]=0;return{geometry:null,program:null,wireframe:!1,newAttributes:X,enabledAttributes:O,attributeDivisors:j,object:G,attributes:{},index:null}}function y(G,X,O,j){const Y=c.attributes,W=X.attributes;let Z=0;const ee=O.getAttributes();for(const Q in ee)if(ee[Q].location>=0){const ae=Y[Q];let re=W[Q];if(re===void 0&&(Q===\"instanceMatrix\"&&G.instanceMatrix&&(re=G.instanceMatrix),Q===\"instanceColor\"&&G.instanceColor&&(re=G.instanceColor)),ae===void 0||ae.attribute!==re||re&&ae.data!==re.data)return!0;Z++}return c.attributesNum!==Z||c.index!==j}function x(G,X,O,j){const Y={},W=X.attributes;let Z=0;const ee=O.getAttributes();for(const Q in ee)if(ee[Q].location>=0){let ae=W[Q];ae===void 0&&(Q===\"instanceMatrix\"&&G.instanceMatrix&&(ae=G.instanceMatrix),Q===\"instanceColor\"&&G.instanceColor&&(ae=G.instanceColor));const re={};re.attribute=ae,ae&&ae.data&&(re.data=ae.data),Y[Q]=re,Z++}c.attributes=Y,c.attributesNum=Z,c.index=j}function b(){const G=c.newAttributes;for(let X=0,O=G.length;X<O;X++)G[X]=0}function v(G){M(G,0)}function M(G,X){const O=c.newAttributes,j=c.enabledAttributes,Y=c.attributeDivisors;O[G]=1,j[G]===0&&(a.enableVertexAttribArray(G),j[G]=1),Y[G]!==X&&((n.isWebGL2?a:e.get(\"ANGLE_instanced_arrays\"))[n.isWebGL2?\"vertexAttribDivisor\":\"vertexAttribDivisorANGLE\"](G,X),Y[G]=X)}function T(){const G=c.newAttributes,X=c.enabledAttributes;for(let O=0,j=X.length;O<j;O++)X[O]!==G[O]&&(a.disableVertexAttribArray(O),X[O]=0)}function C(G,X,O,j,Y,W){n.isWebGL2===!0&&(O===5124||O===5125)?a.vertexAttribIPointer(G,X,O,Y,W):a.vertexAttribPointer(G,X,O,j,Y,W)}function _(G,X,O,j){if(n.isWebGL2===!1&&(G.isInstancedMesh||j.isInstancedBufferGeometry)&&e.get(\"ANGLE_instanced_arrays\")===null)return;b();const Y=j.attributes,W=O.getAttributes(),Z=X.defaultAttributeValues;for(const ee in W){const Q=W[ee];if(Q.location>=0){let ie=Y[ee];if(ie===void 0&&(ee===\"instanceMatrix\"&&G.instanceMatrix&&(ie=G.instanceMatrix),ee===\"instanceColor\"&&G.instanceColor&&(ie=G.instanceColor)),ie!==void 0){const ae=ie.normalized,re=ie.itemSize,H=t.get(ie);if(H===void 0)continue;const ge=H.buffer,be=H.type,Fe=H.bytesPerElement;if(ie.isInterleavedBufferAttribute){const xe=ie.data,Ve=xe.stride,ue=ie.offset;if(xe.isInstancedInterleavedBuffer){for(let ce=0;ce<Q.locationSize;ce++)M(Q.location+ce,xe.meshPerAttribute);G.isInstancedMesh!==!0&&j._maxInstanceCount===void 0&&(j._maxInstanceCount=xe.meshPerAttribute*xe.count)}else for(let ce=0;ce<Q.locationSize;ce++)v(Q.location+ce);a.bindBuffer(34962,ge);for(let ce=0;ce<Q.locationSize;ce++)C(Q.location+ce,re/Q.locationSize,be,ae,Ve*Fe,(ue+re/Q.locationSize*ce)*Fe)}else{if(ie.isInstancedBufferAttribute){for(let xe=0;xe<Q.locationSize;xe++)M(Q.location+xe,ie.meshPerAttribute);G.isInstancedMesh!==!0&&j._maxInstanceCount===void 0&&(j._maxInstanceCount=ie.meshPerAttribute*ie.count)}else for(let xe=0;xe<Q.locationSize;xe++)v(Q.location+xe);a.bindBuffer(34962,ge);for(let xe=0;xe<Q.locationSize;xe++)C(Q.location+xe,re/Q.locationSize,be,ae,re*Fe,re/Q.locationSize*xe*Fe)}}else if(Z!==void 0){const ae=Z[ee];if(ae!==void 0)switch(ae.length){case 2:a.vertexAttrib2fv(Q.location,ae);break;case 3:a.vertexAttrib3fv(Q.location,ae);break;case 4:a.vertexAttrib4fv(Q.location,ae);break;default:a.vertexAttrib1fv(Q.location,ae)}}}}T()}function E(){q();for(const G in o){const X=o[G];for(const O in X){const j=X[O];for(const Y in j)p(j[Y].object),delete j[Y];delete X[O]}delete o[G]}}function F(G){if(o[G.id]===void 0)return;const X=o[G.id];for(const O in X){const j=X[O];for(const Y in j)p(j[Y].object),delete j[Y];delete X[O]}delete o[G.id]}function U(G){for(const X in o){const O=o[X];if(O[G.id]===void 0)continue;const j=O[G.id];for(const Y in j)p(j[Y].object),delete j[Y];delete O[G.id]}}function q(){K(),h=!0,c!==l&&(c=l,d(c.object))}function K(){l.geometry=null,l.program=null,l.wireframe=!1}return{setup:u,reset:q,resetDefaultState:K,dispose:E,releaseStatesOfGeometry:F,releaseStatesOfProgram:U,initAttributes:b,enableAttribute:v,disableUnusedAttributes:T}}function Qx(a,e,t,n){const i=n.isWebGL2;let s;function r(c){s=c}function o(c,h){a.drawArrays(s,c,h),t.update(h,s,1)}function l(c,h,u){if(u===0)return;let f,d;if(i)f=a,d=\"drawArraysInstanced\";else if(f=e.get(\"ANGLE_instanced_arrays\"),d=\"drawArraysInstancedANGLE\",f===null){console.error(\"THREE.WebGLBufferRenderer: using THREE.InstancedBufferGeometry but hardware does not support extension ANGLE_instanced_arrays.\");return}f[d](s,c,h,u),t.update(h,s,u)}this.setMode=r,this.render=o,this.renderInstances=l}function ev(a,e,t){let n;function i(){if(n!==void 0)return n;if(e.has(\"EXT_texture_filter_anisotropic\")===!0){const C=e.get(\"EXT_texture_filter_anisotropic\");n=a.getParameter(C.MAX_TEXTURE_MAX_ANISOTROPY_EXT)}else n=0;return n}function s(C){if(C===\"highp\"){if(a.getShaderPrecisionFormat(35633,36338).precision>0&&a.getShaderPrecisionFormat(35632,36338).precision>0)return\"highp\";C=\"mediump\"}return C===\"mediump\"&&a.getShaderPrecisionFormat(35633,36337).precision>0&&a.getShaderPrecisionFormat(35632,36337).precision>0?\"mediump\":\"lowp\"}const r=typeof WebGL2RenderingContext!=\"undefined\"&&a instanceof WebGL2RenderingContext||typeof WebGL2ComputeRenderingContext!=\"undefined\"&&a instanceof WebGL2ComputeRenderingContext;let o=t.precision!==void 0?t.precision:\"highp\";const l=s(o);l!==o&&(console.warn(\"THREE.WebGLRenderer:\",o,\"not supported, using\",l,\"instead.\"),o=l);const c=r||e.has(\"WEBGL_draw_buffers\"),h=t.logarithmicDepthBuffer===!0,u=a.getParameter(34930),f=a.getParameter(35660),d=a.getParameter(3379),p=a.getParameter(34076),m=a.getParameter(34921),g=a.getParameter(36347),y=a.getParameter(36348),x=a.getParameter(36349),b=f>0,v=r||e.has(\"OES_texture_float\"),M=b&&v,T=r?a.getParameter(36183):0;return{isWebGL2:r,drawBuffers:c,getMaxAnisotropy:i,getMaxPrecision:s,precision:o,logarithmicDepthBuffer:h,maxTextures:u,maxVertexTextures:f,maxTextureSize:d,maxCubemapSize:p,maxAttributes:m,maxVertexUniforms:g,maxVaryings:y,maxFragmentUniforms:x,vertexTextures:b,floatFragmentTextures:v,floatVertexTextures:M,maxSamples:T}}function tv(a){const e=this;let t=null,n=0,i=!1,s=!1;const r=new Vi,o=new dn,l={value:null,needsUpdate:!1};this.uniform=l,this.numPlanes=0,this.numIntersection=0,this.init=function(u,f,d){const p=u.length!==0||f||n!==0||i;return i=f,t=h(u,d,0),n=u.length,p},this.beginShadows=function(){s=!0,h(null)},this.endShadows=function(){s=!1,c()},this.setState=function(u,f,d){const p=u.clippingPlanes,m=u.clipIntersection,g=u.clipShadows,y=a.get(u);if(!i||p===null||p.length===0||s&&!g)s?h(null):c();else{const x=s?0:n,b=x*4;let v=y.clippingState||null;l.value=v,v=h(p,f,b,d);for(let M=0;M!==b;++M)v[M]=t[M];y.clippingState=v,this.numIntersection=m?this.numPlanes:0,this.numPlanes+=x}};function c(){l.value!==t&&(l.value=t,l.needsUpdate=n>0),e.numPlanes=n,e.numIntersection=0}function h(u,f,d,p){const m=u!==null?u.length:0;let g=null;if(m!==0){if(g=l.value,p!==!0||g===null){const y=d+m*4,x=f.matrixWorldInverse;o.getNormalMatrix(x),(g===null||g.length<y)&&(g=new Float32Array(y));for(let b=0,v=d;b!==m;++b,v+=4)r.copy(u[b]).applyMatrix4(x,o),r.normal.toArray(g,v),g[v+3]=r.constant}l.value=g,l.needsUpdate=!0}return e.numPlanes=m,e.numIntersection=0,g}}function nv(a){let e=new WeakMap;function t(r,o){return o===br?r.mapping=Yi:o===wo&&(r.mapping=Zi),r}function n(r){if(r&&r.isTexture&&r.isRenderTargetTexture===!1){const o=r.mapping;if(o===br||o===wo)if(e.has(r)){const l=e.get(r).texture;return t(l,r.mapping)}else{const l=r.image;if(l&&l.height>0){const c=new pp(l.height/2);return c.fromEquirectangularTexture(a,r),e.set(r,c),r.addEventListener(\"dispose\",i),t(c.texture,r.mapping)}else return null}}return r}function i(r){const o=r.target;o.removeEventListener(\"dispose\",i);const l=e.get(o);l!==void 0&&(e.delete(o),l.dispose())}function s(){e=new WeakMap}return{get:n,dispose:s}}class Us extends wl{constructor(e=-1,t=1,n=1,i=-1,s=.1,r=2e3){super(),this.isOrthographicCamera=!0,this.type=\"OrthographicCamera\",this.zoom=1,this.view=null,this.left=e,this.right=t,this.top=n,this.bottom=i,this.near=s,this.far=r,this.updateProjectionMatrix()}copy(e,t){return super.copy(e,t),this.left=e.left,this.right=e.right,this.top=e.top,this.bottom=e.bottom,this.near=e.near,this.far=e.far,this.zoom=e.zoom,this.view=e.view===null?null:Object.assign({},e.view),this}setViewOffset(e,t,n,i,s,r){this.view===null&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=e,this.view.fullHeight=t,this.view.offsetX=n,this.view.offsetY=i,this.view.width=s,this.view.height=r,this.updateProjectionMatrix()}clearViewOffset(){this.view!==null&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const e=(this.right-this.left)/(2*this.zoom),t=(this.top-this.bottom)/(2*this.zoom),n=(this.right+this.left)/2,i=(this.top+this.bottom)/2;let s=n-e,r=n+e,o=i+t,l=i-t;if(this.view!==null&&this.view.enabled){const c=(this.right-this.left)/this.view.fullWidth/this.zoom,h=(this.top-this.bottom)/this.view.fullHeight/this.zoom;s+=c*this.view.offsetX,r=s+c*this.view.width,o-=h*this.view.offsetY,l=o-h*this.view.height}this.projectionMatrix.makeOrthographic(s,r,o,l,this.near,this.far),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(e){const t=super.toJSON(e);return t.object.zoom=this.zoom,t.object.left=this.left,t.object.right=this.right,t.object.top=this.top,t.object.bottom=this.bottom,t.object.near=this.near,t.object.far=this.far,this.view!==null&&(t.object.view=Object.assign({},this.view)),t}}const yr=4,Ph=[.125,.215,.35,.446,.526,.582],_s=20,ac=new Us,Dh=new we;let lc=null;const ys=(1+Math.sqrt(5))/2,ar=1/ys,Fh=[new I(1,1,1),new I(-1,1,1),new I(1,1,-1),new I(-1,1,-1),new I(0,ys,ar),new I(0,ys,-ar),new I(ar,0,ys),new I(-ar,0,ys),new I(ys,ar,0),new I(-ys,ar,0)];class iu{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._lodPlanes=[],this._sizeLods=[],this._sigmas=[],this._blurMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._compileMaterial(this._blurMaterial)}fromScene(e,t=0,n=.1,i=100){lc=this._renderer.getRenderTarget(),this._setSize(256);const s=this._allocateTargets();return s.depthBuffer=!0,this._sceneToCubeUV(e,n,i,s),t>0&&this._blur(s,0,0,t),this._applyPMREM(s),this._cleanup(s),s}fromEquirectangular(e,t=null){return this._fromTexture(e,t)}fromCubemap(e,t=null){return this._fromTexture(e,t)}compileCubemapShader(){this._cubemapMaterial===null&&(this._cubemapMaterial=Oh(),this._compileMaterial(this._cubemapMaterial))}compileEquirectangularShader(){this._equirectMaterial===null&&(this._equirectMaterial=kh(),this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),this._cubemapMaterial!==null&&this._cubemapMaterial.dispose(),this._equirectMaterial!==null&&this._equirectMaterial.dispose()}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){this._blurMaterial!==null&&this._blurMaterial.dispose(),this._pingPongRenderTarget!==null&&this._pingPongRenderTarget.dispose();for(let e=0;e<this._lodPlanes.length;e++)this._lodPlanes[e].dispose()}_cleanup(e){this._renderer.setRenderTarget(lc),e.scissorTest=!1,wa(e,0,0,e.width,e.height)}_fromTexture(e,t){e.mapping===Yi||e.mapping===Zi?this._setSize(e.image.length===0?16:e.image[0].width||e.image[0].image.width):this._setSize(e.image.width/4),lc=this._renderer.getRenderTarget();const n=t||this._allocateTargets();return this._textureToCubeUV(e,n),this._applyPMREM(n),this._cleanup(n),n}_allocateTargets(){const e=3*Math.max(this._cubeSize,112),t=4*this._cubeSize,n={magFilter:Ft,minFilter:Ft,generateMipmaps:!1,type:Mr,format:An,encoding:Mi,depthBuffer:!1},i=Nh(e,t,n);if(this._pingPongRenderTarget===null||this._pingPongRenderTarget.width!==e){this._pingPongRenderTarget!==null&&this._dispose(),this._pingPongRenderTarget=Nh(e,t,n);const{_lodMax:s}=this;({sizeLods:this._sizeLods,lodPlanes:this._lodPlanes,sigmas:this._sigmas}=iv(s)),this._blurMaterial=sv(s,e,t)}return i}_compileMaterial(e){const t=new Rt(this._lodPlanes[0],e);this._renderer.compile(t,ac)}_sceneToCubeUV(e,t,n,i){const o=new Ot(90,1,t,n),l=[1,-1,1,1,1,1],c=[1,1,1,-1,-1,-1],h=this._renderer,u=h.autoClear,f=h.toneMapping;h.getClearColor(Dh),h.toneMapping=Qn,h.autoClear=!1;const d=new ln({name:\"PMREM.Background\",side:kn,depthWrite:!1,depthTest:!1}),p=new Rt(new Si,d);let m=!1;const g=e.background;g?g.isColor&&(d.color.copy(g),e.background=null,m=!0):(d.color.copy(Dh),m=!0);for(let y=0;y<6;y++){const x=y%3;x===0?(o.up.set(0,l[y],0),o.lookAt(c[y],0,0)):x===1?(o.up.set(0,0,l[y]),o.lookAt(0,c[y],0)):(o.up.set(0,l[y],0),o.lookAt(0,0,c[y]));const b=this._cubeSize;wa(i,x*b,y>2?b:0,b,b),h.setRenderTarget(i),m&&h.render(p,o),h.render(e,o)}p.geometry.dispose(),p.material.dispose(),h.toneMapping=f,h.autoClear=u,e.background=g}_textureToCubeUV(e,t){const n=this._renderer,i=e.mapping===Yi||e.mapping===Zi;i?(this._cubemapMaterial===null&&(this._cubemapMaterial=Oh()),this._cubemapMaterial.uniforms.flipEnvMap.value=e.isRenderTargetTexture===!1?-1:1):this._equirectMaterial===null&&(this._equirectMaterial=kh());const s=i?this._cubemapMaterial:this._equirectMaterial,r=new Rt(this._lodPlanes[0],s),o=s.uniforms;o.envMap.value=e;const l=this._cubeSize;wa(t,0,0,3*l,2*l),n.setRenderTarget(t),n.render(r,ac)}_applyPMREM(e){const t=this._renderer,n=t.autoClear;t.autoClear=!1;for(let i=1;i<this._lodPlanes.length;i++){const s=Math.sqrt(this._sigmas[i]*this._sigmas[i]-this._sigmas[i-1]*this._sigmas[i-1]),r=Fh[(i-1)%Fh.length];this._blur(e,i-1,i,s,r)}t.autoClear=n}_blur(e,t,n,i,s){const r=this._pingPongRenderTarget;this._halfBlur(e,r,t,n,i,\"latitudinal\",s),this._halfBlur(r,e,n,n,i,\"longitudinal\",s)}_halfBlur(e,t,n,i,s,r,o){const l=this._renderer,c=this._blurMaterial;r!==\"latitudinal\"&&r!==\"longitudinal\"&&console.error(\"blur direction must be either latitudinal or longitudinal!\");const h=3,u=new Rt(this._lodPlanes[i],c),f=c.uniforms,d=this._sizeLods[n]-1,p=isFinite(s)?Math.PI/(2*d):2*Math.PI/(2*_s-1),m=s/p,g=isFinite(s)?1+Math.floor(h*m):_s;g>_s&&console.warn(`sigmaRadians, ${s}, is too large and will clip, as it requested ${g} samples when the maximum is set to ${_s}`);const y=[];let x=0;for(let C=0;C<_s;++C){const _=C/m,E=Math.exp(-_*_/2);y.push(E),C===0?x+=E:C<g&&(x+=2*E)}for(let C=0;C<y.length;C++)y[C]=y[C]/x;f.envMap.value=e.texture,f.samples.value=g,f.weights.value=y,f.latitudinal.value=r===\"latitudinal\",o&&(f.poleAxis.value=o);const{_lodMax:b}=this;f.dTheta.value=p,f.mipInt.value=b-n;const v=this._sizeLods[i],M=3*v*(i>b-yr?i-b+yr:0),T=4*(this._cubeSize-v);wa(t,M,T,3*v,2*v),l.setRenderTarget(t),l.render(u,ac)}}function iv(a){const e=[],t=[],n=[];let i=a;const s=a-yr+1+Ph.length;for(let r=0;r<s;r++){const o=Math.pow(2,i);t.push(o);let l=1/o;r>a-yr?l=Ph[r-a+yr-1]:r===0&&(l=0),n.push(l);const c=1/(o-2),h=-c,u=1+c,f=[h,h,u,h,u,u,h,h,u,u,h,u],d=6,p=6,m=3,g=2,y=1,x=new Float32Array(m*p*d),b=new Float32Array(g*p*d),v=new Float32Array(y*p*d);for(let T=0;T<d;T++){const C=T%3*2/3-1,_=T>2?0:-1,E=[C,_,0,C+2/3,_,0,C+2/3,_+1,0,C,_,0,C+2/3,_+1,0,C,_+1,0];x.set(E,m*p*T),b.set(f,g*p*T);const F=[T,T,T,T,T,T];v.set(F,y*p*T)}const M=new Xe;M.setAttribute(\"position\",new mt(x,m)),M.setAttribute(\"uv\",new mt(b,g)),M.setAttribute(\"faceIndex\",new mt(v,y)),e.push(M),i>yr&&i--}return{lodPlanes:e,sizeLods:t,sigmas:n}}function Nh(a,e,t){const n=new zn(a,e,t);return n.texture.mapping=Gr,n.texture.name=\"PMREM.cubeUv\",n.scissorTest=!0,n}function wa(a,e,t,n,i){a.viewport.set(e,t,n,i),a.scissor.set(e,t,n,i)}function sv(a,e,t){const n=new Float32Array(_s),i=new I(0,1,0);return new ni({name:\"SphericalGaussianBlur\",defines:{n:_s,CUBEUV_TEXEL_WIDTH:1/e,CUBEUV_TEXEL_HEIGHT:1/t,CUBEUV_MAX_MIP:`${a}.0`},uniforms:{envMap:{value:null},samples:{value:1},weights:{value:n},latitudinal:{value:!1},dTheta:{value:0},mipInt:{value:0},poleAxis:{value:i}},vertexShader:Pu(),fragmentShader:`\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform sampler2D envMap;\n\t\t\tuniform int samples;\n\t\t\tuniform float weights[ n ];\n\t\t\tuniform bool latitudinal;\n\t\t\tuniform float dTheta;\n\t\t\tuniform float mipInt;\n\t\t\tuniform vec3 poleAxis;\n\n\t\t\t#define ENVMAP_TYPE_CUBE_UV\n\t\t\t#include <cube_uv_reflection_fragment>\n\n\t\t\tvec3 getSample( float theta, vec3 axis ) {\n\n\t\t\t\tfloat cosTheta = cos( theta );\n\t\t\t\t// Rodrigues' axis-angle rotation\n\t\t\t\tvec3 sampleDirection = vOutputDirection * cosTheta\n\t\t\t\t\t+ cross( axis, vOutputDirection ) * sin( theta )\n\t\t\t\t\t+ axis * dot( axis, vOutputDirection ) * ( 1.0 - cosTheta );\n\n\t\t\t\treturn bilinearCubeUV( envMap, sampleDirection, mipInt );\n\n\t\t\t}\n\n\t\t\tvoid main() {\n\n\t\t\t\tvec3 axis = latitudinal ? poleAxis : cross( poleAxis, vOutputDirection );\n\n\t\t\t\tif ( all( equal( axis, vec3( 0.0 ) ) ) ) {\n\n\t\t\t\t\taxis = vec3( vOutputDirection.z, 0.0, - vOutputDirection.x );\n\n\t\t\t\t}\n\n\t\t\t\taxis = normalize( axis );\n\n\t\t\t\tgl_FragColor = vec4( 0.0, 0.0, 0.0, 1.0 );\n\t\t\t\tgl_FragColor.rgb += weights[ 0 ] * getSample( 0.0, axis );\n\n\t\t\t\tfor ( int i = 1; i < n; i++ ) {\n\n\t\t\t\t\tif ( i >= samples ) {\n\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t}\n\n\t\t\t\t\tfloat theta = dTheta * float( i );\n\t\t\t\t\tgl_FragColor.rgb += weights[ i ] * getSample( -1.0 * theta, axis );\n\t\t\t\t\tgl_FragColor.rgb += weights[ i ] * getSample( theta, axis );\n\n\t\t\t\t}\n\n\t\t\t}\n\t\t`,blending:_i,depthTest:!1,depthWrite:!1})}function kh(){return new ni({name:\"EquirectangularToCubeUV\",uniforms:{envMap:{value:null}},vertexShader:Pu(),fragmentShader:`\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform sampler2D envMap;\n\n\t\t\t#include <common>\n\n\t\t\tvoid main() {\n\n\t\t\t\tvec3 outputDirection = normalize( vOutputDirection );\n\t\t\t\tvec2 uv = equirectUv( outputDirection );\n\n\t\t\t\tgl_FragColor = vec4( texture2D ( envMap, uv ).rgb, 1.0 );\n\n\t\t\t}\n\t\t`,blending:_i,depthTest:!1,depthWrite:!1})}function Oh(){return new ni({name:\"CubemapToCubeUV\",uniforms:{envMap:{value:null},flipEnvMap:{value:-1}},vertexShader:Pu(),fragmentShader:`\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tuniform float flipEnvMap;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform samplerCube envMap;\n\n\t\t\tvoid main() {\n\n\t\t\t\tgl_FragColor = textureCube( envMap, vec3( flipEnvMap * vOutputDirection.x, vOutputDirection.yz ) );\n\n\t\t\t}\n\t\t`,blending:_i,depthTest:!1,depthWrite:!1})}function Pu(){return`\n\n\t\tprecision mediump float;\n\t\tprecision mediump int;\n\n\t\tattribute float faceIndex;\n\n\t\tvarying vec3 vOutputDirection;\n\n\t\t// RH coordinate system; PMREM face-indexing convention\n\t\tvec3 getDirection( vec2 uv, float face ) {\n\n\t\t\tuv = 2.0 * uv - 1.0;\n\n\t\t\tvec3 direction = vec3( uv, 1.0 );\n\n\t\t\tif ( face == 0.0 ) {\n\n\t\t\t\tdirection = direction.zyx; // ( 1, v, u ) pos x\n\n\t\t\t} else if ( face == 1.0 ) {\n\n\t\t\t\tdirection = direction.xzy;\n\t\t\t\tdirection.xz *= -1.0; // ( -u, 1, -v ) pos y\n\n\t\t\t} else if ( face == 2.0 ) {\n\n\t\t\t\tdirection.x *= -1.0; // ( -u, v, 1 ) pos z\n\n\t\t\t} else if ( face == 3.0 ) {\n\n\t\t\t\tdirection = direction.zyx;\n\t\t\t\tdirection.xz *= -1.0; // ( -1, v, -u ) neg x\n\n\t\t\t} else if ( face == 4.0 ) {\n\n\t\t\t\tdirection = direction.xzy;\n\t\t\t\tdirection.xy *= -1.0; // ( -u, -1, v ) neg y\n\n\t\t\t} else if ( face == 5.0 ) {\n\n\t\t\t\tdirection.z *= -1.0; // ( u, v, -1 ) neg z\n\n\t\t\t}\n\n\t\t\treturn direction;\n\n\t\t}\n\n\t\tvoid main() {\n\n\t\t\tvOutputDirection = getDirection( uv, faceIndex );\n\t\t\tgl_Position = vec4( position, 1.0 );\n\n\t\t}\n\t`}function rv(a){let e=new WeakMap,t=null;function n(o){if(o&&o.isTexture){const l=o.mapping,c=l===br||l===wo,h=l===Yi||l===Zi;if(c||h)if(o.isRenderTargetTexture&&o.needsPMREMUpdate===!0){o.needsPMREMUpdate=!1;let u=e.get(o);return t===null&&(t=new iu(a)),u=c?t.fromEquirectangular(o,u):t.fromCubemap(o,u),e.set(o,u),u.texture}else{if(e.has(o))return e.get(o).texture;{const u=o.image;if(c&&u&&u.height>0||h&&u&&i(u)){t===null&&(t=new iu(a));const f=c?t.fromEquirectangular(o):t.fromCubemap(o);return e.set(o,f),o.addEventListener(\"dispose\",s),f.texture}else return null}}}return o}function i(o){let l=0;const c=6;for(let h=0;h<c;h++)o[h]!==void 0&&l++;return l===c}function s(o){const l=o.target;l.removeEventListener(\"dispose\",s);const c=e.get(l);c!==void 0&&(e.delete(l),c.dispose())}function r(){e=new WeakMap,t!==null&&(t.dispose(),t=null)}return{get:n,dispose:r}}function ov(a){const e={};function t(n){if(e[n]!==void 0)return e[n];let i;switch(n){case\"WEBGL_depth_texture\":i=a.getExtension(\"WEBGL_depth_texture\")||a.getExtension(\"MOZ_WEBGL_depth_texture\")||a.getExtension(\"WEBKIT_WEBGL_depth_texture\");break;case\"EXT_texture_filter_anisotropic\":i=a.getExtension(\"EXT_texture_filter_anisotropic\")||a.getExtension(\"MOZ_EXT_texture_filter_anisotropic\")||a.getExtension(\"WEBKIT_EXT_texture_filter_anisotropic\");break;case\"WEBGL_compressed_texture_s3tc\":i=a.getExtension(\"WEBGL_compressed_texture_s3tc\")||a.getExtension(\"MOZ_WEBGL_compressed_texture_s3tc\")||a.getExtension(\"WEBKIT_WEBGL_compressed_texture_s3tc\");break;case\"WEBGL_compressed_texture_pvrtc\":i=a.getExtension(\"WEBGL_compressed_texture_pvrtc\")||a.getExtension(\"WEBKIT_WEBGL_compressed_texture_pvrtc\");break;default:i=a.getExtension(n)}return e[n]=i,i}return{has:function(n){return t(n)!==null},init:function(n){n.isWebGL2?t(\"EXT_color_buffer_float\"):(t(\"WEBGL_depth_texture\"),t(\"OES_texture_float\"),t(\"OES_texture_half_float\"),t(\"OES_texture_half_float_linear\"),t(\"OES_standard_derivatives\"),t(\"OES_element_index_uint\"),t(\"OES_vertex_array_object\"),t(\"ANGLE_instanced_arrays\")),t(\"OES_texture_float_linear\"),t(\"EXT_color_buffer_half_float\"),t(\"WEBGL_multisampled_render_to_texture\")},get:function(n){const i=t(n);return i===null&&console.warn(\"THREE.WebGLRenderer: \"+n+\" extension not supported.\"),i}}}function av(a,e,t,n){const i={},s=new WeakMap;function r(u){const f=u.target;f.index!==null&&e.remove(f.index);for(const p in f.attributes)e.remove(f.attributes[p]);f.removeEventListener(\"dispose\",r),delete i[f.id];const d=s.get(f);d&&(e.remove(d),s.delete(f)),n.releaseStatesOfGeometry(f),f.isInstancedBufferGeometry===!0&&delete f._maxInstanceCount,t.memory.geometries--}function o(u,f){return i[f.id]===!0||(f.addEventListener(\"dispose\",r),i[f.id]=!0,t.memory.geometries++),f}function l(u){const f=u.attributes;for(const p in f)e.update(f[p],34962);const d=u.morphAttributes;for(const p in d){const m=d[p];for(let g=0,y=m.length;g<y;g++)e.update(m[g],34962)}}function c(u){const f=[],d=u.index,p=u.attributes.position;let m=0;if(d!==null){const x=d.array;m=d.version;for(let b=0,v=x.length;b<v;b+=3){const M=x[b+0],T=x[b+1],C=x[b+2];f.push(M,T,T,C,C,M)}}else{const x=p.array;m=p.version;for(let b=0,v=x.length/3-1;b<v;b+=3){const M=b+0,T=b+1,C=b+2;f.push(M,T,T,C,C,M)}}const g=new(up(f)?Iu:bl)(f,1);g.version=m;const y=s.get(u);y&&e.remove(y),s.set(u,g)}function h(u){const f=s.get(u);if(f){const d=u.index;d!==null&&f.version<d.version&&c(u)}else c(u);return s.get(u)}return{get:o,update:l,getWireframeAttribute:h}}function lv(a,e,t,n){const i=n.isWebGL2;let s;function r(f){s=f}let o,l;function c(f){o=f.type,l=f.bytesPerElement}function h(f,d){a.drawElements(s,d,o,f*l),t.update(d,s,1)}function u(f,d,p){if(p===0)return;let m,g;if(i)m=a,g=\"drawElementsInstanced\";else if(m=e.get(\"ANGLE_instanced_arrays\"),g=\"drawElementsInstancedANGLE\",m===null){console.error(\"THREE.WebGLIndexedBufferRenderer: using THREE.InstancedBufferGeometry but hardware does not support extension ANGLE_instanced_arrays.\");return}m[g](s,d,o,f*l,p),t.update(d,s,p)}this.setMode=r,this.setIndex=c,this.render=h,this.renderInstances=u}function cv(a){const e={geometries:0,textures:0},t={frame:0,calls:0,triangles:0,points:0,lines:0};function n(s,r,o){switch(t.calls++,r){case 4:t.triangles+=o*(s/3);break;case 1:t.lines+=o*(s/2);break;case 3:t.lines+=o*(s-1);break;case 2:t.lines+=o*s;break;case 0:t.points+=o*s;break;default:console.error(\"THREE.WebGLInfo: Unknown draw mode:\",r);break}}function i(){t.frame++,t.calls=0,t.triangles=0,t.points=0,t.lines=0}return{memory:e,render:t,programs:null,autoReset:!0,reset:i,update:n}}function uv(a,e){return a[0]-e[0]}function hv(a,e){return Math.abs(e[1])-Math.abs(a[1])}function cc(a,e){let t=1;const n=e.isInterleavedBufferAttribute?e.data.array:e.array;n instanceof Int8Array?t=127:n instanceof Uint8Array?t=255:n instanceof Uint16Array?t=65535:n instanceof Int16Array?t=32767:n instanceof Int32Array?t=2147483647:console.error(\"THREE.WebGLMorphtargets: Unsupported morph attribute data type: \",n),a.divideScalar(t)}function fv(a,e,t){const n={},i=new Float32Array(8),s=new WeakMap,r=new dt,o=[];for(let c=0;c<8;c++)o[c]=[c,0];function l(c,h,u,f){const d=c.morphTargetInfluences;if(e.isWebGL2===!0){const p=h.morphAttributes.position||h.morphAttributes.normal||h.morphAttributes.color,m=p!==void 0?p.length:0;let g=s.get(h);if(g===void 0||g.count!==m){let X=function(){K.dispose(),s.delete(h),h.removeEventListener(\"dispose\",X)};g!==void 0&&g.texture.dispose();const b=h.morphAttributes.position!==void 0,v=h.morphAttributes.normal!==void 0,M=h.morphAttributes.color!==void 0,T=h.morphAttributes.position||[],C=h.morphAttributes.normal||[],_=h.morphAttributes.color||[];let E=0;b===!0&&(E=1),v===!0&&(E=2),M===!0&&(E=3);let F=h.attributes.position.count*E,U=1;F>e.maxTextureSize&&(U=Math.ceil(F/e.maxTextureSize),F=e.maxTextureSize);const q=new Float32Array(F*U*4*m),K=new Uo(q,F,U,m);K.type=xi,K.needsUpdate=!0;const G=E*4;for(let O=0;O<m;O++){const j=T[O],Y=C[O],W=_[O],Z=F*U*4*O;for(let ee=0;ee<j.count;ee++){const Q=ee*G;b===!0&&(r.fromBufferAttribute(j,ee),j.normalized===!0&&cc(r,j),q[Z+Q+0]=r.x,q[Z+Q+1]=r.y,q[Z+Q+2]=r.z,q[Z+Q+3]=0),v===!0&&(r.fromBufferAttribute(Y,ee),Y.normalized===!0&&cc(r,Y),q[Z+Q+4]=r.x,q[Z+Q+5]=r.y,q[Z+Q+6]=r.z,q[Z+Q+7]=0),M===!0&&(r.fromBufferAttribute(W,ee),W.normalized===!0&&cc(r,W),q[Z+Q+8]=r.x,q[Z+Q+9]=r.y,q[Z+Q+10]=r.z,q[Z+Q+11]=W.itemSize===4?r.w:1)}}g={count:m,texture:K,size:new fe(F,U)},s.set(h,g),h.addEventListener(\"dispose\",X)}let y=0;for(let b=0;b<d.length;b++)y+=d[b];const x=h.morphTargetsRelative?1:1-y;f.getUniforms().setValue(a,\"morphTargetBaseInfluence\",x),f.getUniforms().setValue(a,\"morphTargetInfluences\",d),f.getUniforms().setValue(a,\"morphTargetsTexture\",g.texture,t),f.getUniforms().setValue(a,\"morphTargetsTextureSize\",g.size)}else{const p=d===void 0?0:d.length;let m=n[h.id];if(m===void 0||m.length!==p){m=[];for(let v=0;v<p;v++)m[v]=[v,0];n[h.id]=m}for(let v=0;v<p;v++){const M=m[v];M[0]=v,M[1]=d[v]}m.sort(hv);for(let v=0;v<8;v++)v<p&&m[v][1]?(o[v][0]=m[v][0],o[v][1]=m[v][1]):(o[v][0]=Number.MAX_SAFE_INTEGER,o[v][1]=0);o.sort(uv);const g=h.morphAttributes.position,y=h.morphAttributes.normal;let x=0;for(let v=0;v<8;v++){const M=o[v],T=M[0],C=M[1];T!==Number.MAX_SAFE_INTEGER&&C?(g&&h.getAttribute(\"morphTarget\"+v)!==g[T]&&h.setAttribute(\"morphTarget\"+v,g[T]),y&&h.getAttribute(\"morphNormal\"+v)!==y[T]&&h.setAttribute(\"morphNormal\"+v,y[T]),i[v]=C,x+=C):(g&&h.hasAttribute(\"morphTarget\"+v)===!0&&h.deleteAttribute(\"morphTarget\"+v),y&&h.hasAttribute(\"morphNormal\"+v)===!0&&h.deleteAttribute(\"morphNormal\"+v),i[v]=0)}const b=h.morphTargetsRelative?1:1-x;f.getUniforms().setValue(a,\"morphTargetBaseInfluence\",b),f.getUniforms().setValue(a,\"morphTargetInfluences\",i)}}return{update:l}}function dv(a,e,t,n){let i=new WeakMap;function s(l){const c=n.render.frame,h=l.geometry,u=e.get(l,h);return i.get(u)!==c&&(e.update(u),i.set(u,c)),l.isInstancedMesh&&(l.hasEventListener(\"dispose\",o)===!1&&l.addEventListener(\"dispose\",o),t.update(l.instanceMatrix,34962),l.instanceColor!==null&&t.update(l.instanceColor,34962)),u}function r(){i=new WeakMap}function o(l){const c=l.target;c.removeEventListener(\"dispose\",o),t.remove(c.instanceMatrix),c.instanceColor!==null&&t.remove(c.instanceColor)}return{update:s,dispose:r}}const gp=new It,yp=new Uo,xp=new vl,vp=new Vo,Bh=[],zh=[],Uh=new Float32Array(16),Gh=new Float32Array(9),Vh=new Float32Array(4);function Vr(a,e,t){const n=a[0];if(n<=0||n>0)return a;const i=e*t;let s=Bh[i];if(s===void 0&&(s=new Float32Array(i),Bh[i]=s),e!==0){n.toArray(s,0);for(let r=1,o=0;r!==e;++r)o+=t,a[r].toArray(s,o)}return s}function mn(a,e){if(a.length!==e.length)return!1;for(let t=0,n=a.length;t<n;t++)if(a[t]!==e[t])return!1;return!0}function gn(a,e){for(let t=0,n=e.length;t<n;t++)a[t]=e[t]}function Sl(a,e){let t=zh[e];t===void 0&&(t=new Int32Array(e),zh[e]=t);for(let n=0;n!==e;++n)t[n]=a.allocateTextureUnit();return t}function pv(a,e){const t=this.cache;t[0]!==e&&(a.uniform1f(this.addr,e),t[0]=e)}function mv(a,e){const t=this.cache;if(e.x!==void 0)(t[0]!==e.x||t[1]!==e.y)&&(a.uniform2f(this.addr,e.x,e.y),t[0]=e.x,t[1]=e.y);else{if(mn(t,e))return;a.uniform2fv(this.addr,e),gn(t,e)}}function gv(a,e){const t=this.cache;if(e.x!==void 0)(t[0]!==e.x||t[1]!==e.y||t[2]!==e.z)&&(a.uniform3f(this.addr,e.x,e.y,e.z),t[0]=e.x,t[1]=e.y,t[2]=e.z);else if(e.r!==void 0)(t[0]!==e.r||t[1]!==e.g||t[2]!==e.b)&&(a.uniform3f(this.addr,e.r,e.g,e.b),t[0]=e.r,t[1]=e.g,t[2]=e.b);else{if(mn(t,e))return;a.uniform3fv(this.addr,e),gn(t,e)}}function yv(a,e){const t=this.cache;if(e.x!==void 0)(t[0]!==e.x||t[1]!==e.y||t[2]!==e.z||t[3]!==e.w)&&(a.uniform4f(this.addr,e.x,e.y,e.z,e.w),t[0]=e.x,t[1]=e.y,t[2]=e.z,t[3]=e.w);else{if(mn(t,e))return;a.uniform4fv(this.addr,e),gn(t,e)}}function xv(a,e){const t=this.cache,n=e.elements;if(n===void 0){if(mn(t,e))return;a.uniformMatrix2fv(this.addr,!1,e),gn(t,e)}else{if(mn(t,n))return;Vh.set(n),a.uniformMatrix2fv(this.addr,!1,Vh),gn(t,n)}}function vv(a,e){const t=this.cache,n=e.elements;if(n===void 0){if(mn(t,e))return;a.uniformMatrix3fv(this.addr,!1,e),gn(t,e)}else{if(mn(t,n))return;Gh.set(n),a.uniformMatrix3fv(this.addr,!1,Gh),gn(t,n)}}function _v(a,e){const t=this.cache,n=e.elements;if(n===void 0){if(mn(t,e))return;a.uniformMatrix4fv(this.addr,!1,e),gn(t,e)}else{if(mn(t,n))return;Uh.set(n),a.uniformMatrix4fv(this.addr,!1,Uh),gn(t,n)}}function bv(a,e){const t=this.cache;t[0]!==e&&(a.uniform1i(this.addr,e),t[0]=e)}function wv(a,e){const t=this.cache;mn(t,e)||(a.uniform2iv(this.addr,e),gn(t,e))}function Mv(a,e){const t=this.cache;mn(t,e)||(a.uniform3iv(this.addr,e),gn(t,e))}function Sv(a,e){const t=this.cache;mn(t,e)||(a.uniform4iv(this.addr,e),gn(t,e))}function Tv(a,e){const t=this.cache;t[0]!==e&&(a.uniform1ui(this.addr,e),t[0]=e)}function Av(a,e){const t=this.cache;mn(t,e)||(a.uniform2uiv(this.addr,e),gn(t,e))}function Ev(a,e){const t=this.cache;mn(t,e)||(a.uniform3uiv(this.addr,e),gn(t,e))}function Cv(a,e){const t=this.cache;mn(t,e)||(a.uniform4uiv(this.addr,e),gn(t,e))}function Lv(a,e,t){const n=this.cache,i=t.allocateTextureUnit();n[0]!==i&&(a.uniform1i(this.addr,i),n[0]=i),t.setTexture2D(e||gp,i)}function Rv(a,e,t){const n=this.cache,i=t.allocateTextureUnit();n[0]!==i&&(a.uniform1i(this.addr,i),n[0]=i),t.setTexture3D(e||xp,i)}function Iv(a,e,t){const n=this.cache,i=t.allocateTextureUnit();n[0]!==i&&(a.uniform1i(this.addr,i),n[0]=i),t.setTextureCube(e||vp,i)}function Pv(a,e,t){const n=this.cache,i=t.allocateTextureUnit();n[0]!==i&&(a.uniform1i(this.addr,i),n[0]=i),t.setTexture2DArray(e||yp,i)}function Dv(a){switch(a){case 5126:return pv;case 35664:return mv;case 35665:return gv;case 35666:return yv;case 35674:return xv;case 35675:return vv;case 35676:return _v;case 5124:case 35670:return bv;case 35667:case 35671:return wv;case 35668:case 35672:return Mv;case 35669:case 35673:return Sv;case 5125:return Tv;case 36294:return Av;case 36295:return Ev;case 36296:return Cv;case 35678:case 36198:case 36298:case 36306:case 35682:return Lv;case 35679:case 36299:case 36307:return Rv;case 35680:case 36300:case 36308:case 36293:return Iv;case 36289:case 36303:case 36311:case 36292:return Pv}}function Fv(a,e){a.uniform1fv(this.addr,e)}function Nv(a,e){const t=Vr(e,this.size,2);a.uniform2fv(this.addr,t)}function kv(a,e){const t=Vr(e,this.size,3);a.uniform3fv(this.addr,t)}function Ov(a,e){const t=Vr(e,this.size,4);a.uniform4fv(this.addr,t)}function Bv(a,e){const t=Vr(e,this.size,4);a.uniformMatrix2fv(this.addr,!1,t)}function zv(a,e){const t=Vr(e,this.size,9);a.uniformMatrix3fv(this.addr,!1,t)}function Uv(a,e){const t=Vr(e,this.size,16);a.uniformMatrix4fv(this.addr,!1,t)}function Gv(a,e){a.uniform1iv(this.addr,e)}function Vv(a,e){a.uniform2iv(this.addr,e)}function Hv(a,e){a.uniform3iv(this.addr,e)}function Wv(a,e){a.uniform4iv(this.addr,e)}function qv(a,e){a.uniform1uiv(this.addr,e)}function Xv(a,e){a.uniform2uiv(this.addr,e)}function jv(a,e){a.uniform3uiv(this.addr,e)}function Yv(a,e){a.uniform4uiv(this.addr,e)}function Zv(a,e,t){const n=e.length,i=Sl(t,n);a.uniform1iv(this.addr,i);for(let s=0;s!==n;++s)t.setTexture2D(e[s]||gp,i[s])}function Kv(a,e,t){const n=e.length,i=Sl(t,n);a.uniform1iv(this.addr,i);for(let s=0;s!==n;++s)t.setTexture3D(e[s]||xp,i[s])}function Jv(a,e,t){const n=e.length,i=Sl(t,n);a.uniform1iv(this.addr,i);for(let s=0;s!==n;++s)t.setTextureCube(e[s]||vp,i[s])}function $v(a,e,t){const n=e.length,i=Sl(t,n);a.uniform1iv(this.addr,i);for(let s=0;s!==n;++s)t.setTexture2DArray(e[s]||yp,i[s])}function Qv(a){switch(a){case 5126:return Fv;case 35664:return Nv;case 35665:return kv;case 35666:return Ov;case 35674:return Bv;case 35675:return zv;case 35676:return Uv;case 5124:case 35670:return Gv;case 35667:case 35671:return Vv;case 35668:case 35672:return Hv;case 35669:case 35673:return Wv;case 5125:return qv;case 36294:return Xv;case 36295:return jv;case 36296:return Yv;case 35678:case 36198:case 36298:case 36306:case 35682:return Zv;case 35679:case 36299:case 36307:return Kv;case 35680:case 36300:case 36308:case 36293:return Jv;case 36289:case 36303:case 36311:case 36292:return $v}}class e_{constructor(e,t,n){this.id=e,this.addr=n,this.cache=[],this.setValue=Dv(t.type)}}class t_{constructor(e,t,n){this.id=e,this.addr=n,this.cache=[],this.size=t.size,this.setValue=Qv(t.type)}}class n_{constructor(e){this.id=e,this.seq=[],this.map={}}setValue(e,t,n){const i=this.seq;for(let s=0,r=i.length;s!==r;++s){const o=i[s];o.setValue(e,t[o.id],n)}}}const uc=/(\\w+)(\\])?(\\[|\\.)?/g;function Hh(a,e){a.seq.push(e),a.map[e.id]=e}function i_(a,e,t){const n=a.name,i=n.length;for(uc.lastIndex=0;;){const s=uc.exec(n),r=uc.lastIndex;let o=s[1];const l=s[2]===\"]\",c=s[3];if(l&&(o=o|0),c===void 0||c===\"[\"&&r+2===i){Hh(t,c===void 0?new e_(o,a,e):new t_(o,a,e));break}else{let u=t.map[o];u===void 0&&(u=new n_(o),Hh(t,u)),t=u}}}class $a{constructor(e,t){this.seq=[],this.map={};const n=e.getProgramParameter(t,35718);for(let i=0;i<n;++i){const s=e.getActiveUniform(t,i),r=e.getUniformLocation(t,s.name);i_(s,r,this)}}setValue(e,t,n,i){const s=this.map[t];s!==void 0&&s.setValue(e,n,i)}setOptional(e,t,n){const i=t[n];i!==void 0&&this.setValue(e,n,i)}static upload(e,t,n,i){for(let s=0,r=t.length;s!==r;++s){const o=t[s],l=n[o.id];l.needsUpdate!==!1&&o.setValue(e,l.value,i)}}static seqWithValue(e,t){const n=[];for(let i=0,s=e.length;i!==s;++i){const r=e[i];r.id in t&&n.push(r)}return n}}function Wh(a,e,t){const n=a.createShader(e);return a.shaderSource(n,t),a.compileShader(n),n}let s_=0;function r_(a,e){const t=a.split(`\n`),n=[],i=Math.max(e-6,0),s=Math.min(e+6,t.length);for(let r=i;r<s;r++){const o=r+1;n.push(`${o===e?\">\":\" \"} ${o}: ${t[r]}`)}return n.join(`\n`)}function o_(a){switch(a){case Mi:return[\"Linear\",\"( value )\"];case it:return[\"sRGB\",\"( value )\"];default:return console.warn(\"THREE.WebGLProgram: Unsupported encoding:\",a),[\"Linear\",\"( value )\"]}}function qh(a,e,t){const n=a.getShaderParameter(e,35713),i=a.getShaderInfoLog(e).trim();if(n&&i===\"\")return\"\";const s=/ERROR: 0:(\\d+)/.exec(i);if(s){const r=parseInt(s[1]);return t.toUpperCase()+`\n\n`+i+`\n\n`+r_(a.getShaderSource(e),r)}else return i}function a_(a,e){const t=o_(e);return\"vec4 \"+a+\"( vec4 value ) { return LinearTo\"+t[0]+t[1]+\"; }\"}function l_(a,e){let t;switch(e){case kd:t=\"Linear\";break;case Od:t=\"Reinhard\";break;case Bd:t=\"OptimizedCineon\";break;case zd:t=\"ACESFilmic\";break;case Ud:t=\"Custom\";break;default:console.warn(\"THREE.WebGLProgram: Unsupported toneMapping:\",e),t=\"Linear\"}return\"vec3 \"+a+\"( vec3 color ) { return \"+t+\"ToneMapping( color ); }\"}function c_(a){return[a.extensionDerivatives||!!a.envMapCubeUVHeight||a.bumpMap||a.tangentSpaceNormalMap||a.clearcoatNormalMap||a.flatShading||a.shaderID===\"physical\"?\"#extension GL_OES_standard_derivatives : enable\":\"\",(a.extensionFragDepth||a.logarithmicDepthBuffer)&&a.rendererExtensionFragDepth?\"#extension GL_EXT_frag_depth : enable\":\"\",a.extensionDrawBuffers&&a.rendererExtensionDrawBuffers?\"#extension GL_EXT_draw_buffers : require\":\"\",(a.extensionShaderTextureLOD||a.envMap||a.transmission)&&a.rendererExtensionShaderTextureLod?\"#extension GL_EXT_shader_texture_lod : enable\":\"\"].filter(ho).join(`\n`)}function u_(a){const e=[];for(const t in a){const n=a[t];n!==!1&&e.push(\"#define \"+t+\" \"+n)}return e.join(`\n`)}function h_(a,e){const t={},n=a.getProgramParameter(e,35721);for(let i=0;i<n;i++){const s=a.getActiveAttrib(e,i),r=s.name;let o=1;s.type===35674&&(o=2),s.type===35675&&(o=3),s.type===35676&&(o=4),t[r]={type:s.type,location:a.getAttribLocation(e,r),locationSize:o}}return t}function ho(a){return a!==\"\"}function Xh(a,e){return a.replace(/NUM_DIR_LIGHTS/g,e.numDirLights).replace(/NUM_SPOT_LIGHTS/g,e.numSpotLights).replace(/NUM_RECT_AREA_LIGHTS/g,e.numRectAreaLights).replace(/NUM_POINT_LIGHTS/g,e.numPointLights).replace(/NUM_HEMI_LIGHTS/g,e.numHemiLights).replace(/NUM_DIR_LIGHT_SHADOWS/g,e.numDirLightShadows).replace(/NUM_SPOT_LIGHT_SHADOWS/g,e.numSpotLightShadows).replace(/NUM_POINT_LIGHT_SHADOWS/g,e.numPointLightShadows)}function jh(a,e){return a.replace(/NUM_CLIPPING_PLANES/g,e.numClippingPlanes).replace(/UNION_CLIPPING_PLANES/g,e.numClippingPlanes-e.numClipIntersection)}const f_=/^[ \\t]*#include +<([\\w\\d./]+)>/gm;function su(a){return a.replace(f_,d_)}function d_(a,e){const t=st[e];if(t===void 0)throw new Error(\"Can not resolve #include <\"+e+\">\");return su(t)}const p_=/#pragma unroll_loop[\\s]+?for \\( int i \\= (\\d+)\\; i < (\\d+)\\; i \\+\\+ \\) \\{([\\s\\S]+?)(?=\\})\\}/g,m_=/#pragma unroll_loop_start\\s+for\\s*\\(\\s*int\\s+i\\s*=\\s*(\\d+)\\s*;\\s*i\\s*<\\s*(\\d+)\\s*;\\s*i\\s*\\+\\+\\s*\\)\\s*{([\\s\\S]+?)}\\s+#pragma unroll_loop_end/g;function Yh(a){return a.replace(m_,_p).replace(p_,g_)}function g_(a,e,t,n){return console.warn(\"WebGLProgram: #pragma unroll_loop shader syntax is deprecated. Please use #pragma unroll_loop_start syntax instead.\"),_p(a,e,t,n)}function _p(a,e,t,n){let i=\"\";for(let s=parseInt(e);s<parseInt(t);s++)i+=n.replace(/\\[\\s*i\\s*\\]/g,\"[ \"+s+\" ]\").replace(/UNROLLED_LOOP_INDEX/g,s);return i}function Zh(a){let e=\"precision \"+a.precision+` float;\nprecision `+a.precision+\" int;\";return a.precision===\"highp\"?e+=`\n#define HIGH_PRECISION`:a.precision===\"mediump\"?e+=`\n#define MEDIUM_PRECISION`:a.precision===\"lowp\"&&(e+=`\n#define LOW_PRECISION`),e}function y_(a){let e=\"SHADOWMAP_TYPE_BASIC\";return a.shadowMapType===wu?e=\"SHADOWMAP_TYPE_PCF\":a.shadowMapType===dd?e=\"SHADOWMAP_TYPE_PCF_SOFT\":a.shadowMapType===mr&&(e=\"SHADOWMAP_TYPE_VSM\"),e}function x_(a){let e=\"ENVMAP_TYPE_CUBE\";if(a.envMap)switch(a.envMapMode){case Yi:case Zi:e=\"ENVMAP_TYPE_CUBE\";break;case Gr:e=\"ENVMAP_TYPE_CUBE_UV\";break}return e}function v_(a){let e=\"ENVMAP_MODE_REFLECTION\";if(a.envMap)switch(a.envMapMode){case Zi:e=\"ENVMAP_MODE_REFRACTION\";break}return e}function __(a){let e=\"ENVMAP_BLENDING_NONE\";if(a.envMap)switch(a.combine){case zo:e=\"ENVMAP_BLENDING_MULTIPLY\";break;case Fd:e=\"ENVMAP_BLENDING_MIX\";break;case Nd:e=\"ENVMAP_BLENDING_ADD\";break}return e}function b_(a){const e=a.envMapCubeUVHeight;if(e===null)return null;const t=Math.log2(e)-2,n=1/e;return{texelWidth:1/(3*Math.max(Math.pow(2,t),7*16)),texelHeight:n,maxMip:t}}function w_(a,e,t,n){const i=a.getContext(),s=t.defines;let r=t.vertexShader,o=t.fragmentShader;const l=y_(t),c=x_(t),h=v_(t),u=__(t),f=b_(t),d=t.isWebGL2?\"\":c_(t),p=u_(s),m=i.createProgram();let g,y,x=t.glslVersion?\"#version \"+t.glslVersion+`\n`:\"\";t.isRawShaderMaterial?(g=[p].filter(ho).join(`\n`),g.length>0&&(g+=`\n`),y=[d,p].filter(ho).join(`\n`),y.length>0&&(y+=`\n`)):(g=[Zh(t),\"#define SHADER_NAME \"+t.shaderName,p,t.instancing?\"#define USE_INSTANCING\":\"\",t.instancingColor?\"#define USE_INSTANCING_COLOR\":\"\",t.supportsVertexTextures?\"#define VERTEX_TEXTURES\":\"\",t.useFog&&t.fog?\"#define USE_FOG\":\"\",t.useFog&&t.fogExp2?\"#define FOG_EXP2\":\"\",t.map?\"#define USE_MAP\":\"\",t.envMap?\"#define USE_ENVMAP\":\"\",t.envMap?\"#define \"+h:\"\",t.lightMap?\"#define USE_LIGHTMAP\":\"\",t.aoMap?\"#define USE_AOMAP\":\"\",t.emissiveMap?\"#define USE_EMISSIVEMAP\":\"\",t.bumpMap?\"#define USE_BUMPMAP\":\"\",t.normalMap?\"#define USE_NORMALMAP\":\"\",t.normalMap&&t.objectSpaceNormalMap?\"#define OBJECTSPACE_NORMALMAP\":\"\",t.normalMap&&t.tangentSpaceNormalMap?\"#define TANGENTSPACE_NORMALMAP\":\"\",t.clearcoatMap?\"#define USE_CLEARCOATMAP\":\"\",t.clearcoatRoughnessMap?\"#define USE_CLEARCOAT_ROUGHNESSMAP\":\"\",t.clearcoatNormalMap?\"#define USE_CLEARCOAT_NORMALMAP\":\"\",t.iridescenceMap?\"#define USE_IRIDESCENCEMAP\":\"\",t.iridescenceThicknessMap?\"#define USE_IRIDESCENCE_THICKNESSMAP\":\"\",t.displacementMap&&t.supportsVertexTextures?\"#define USE_DISPLACEMENTMAP\":\"\",t.specularMap?\"#define USE_SPECULARMAP\":\"\",t.specularIntensityMap?\"#define USE_SPECULARINTENSITYMAP\":\"\",t.specularColorMap?\"#define USE_SPECULARCOLORMAP\":\"\",t.roughnessMap?\"#define USE_ROUGHNESSMAP\":\"\",t.metalnessMap?\"#define USE_METALNESSMAP\":\"\",t.alphaMap?\"#define USE_ALPHAMAP\":\"\",t.transmission?\"#define USE_TRANSMISSION\":\"\",t.transmissionMap?\"#define USE_TRANSMISSIONMAP\":\"\",t.thicknessMap?\"#define USE_THICKNESSMAP\":\"\",t.sheenColorMap?\"#define USE_SHEENCOLORMAP\":\"\",t.sheenRoughnessMap?\"#define USE_SHEENROUGHNESSMAP\":\"\",t.vertexTangents?\"#define USE_TANGENT\":\"\",t.vertexColors?\"#define USE_COLOR\":\"\",t.vertexAlphas?\"#define USE_COLOR_ALPHA\":\"\",t.vertexUvs?\"#define USE_UV\":\"\",t.uvsVertexOnly?\"#define UVS_VERTEX_ONLY\":\"\",t.flatShading?\"#define FLAT_SHADED\":\"\",t.skinning?\"#define USE_SKINNING\":\"\",t.morphTargets?\"#define USE_MORPHTARGETS\":\"\",t.morphNormals&&t.flatShading===!1?\"#define USE_MORPHNORMALS\":\"\",t.morphColors&&t.isWebGL2?\"#define USE_MORPHCOLORS\":\"\",t.morphTargetsCount>0&&t.isWebGL2?\"#define MORPHTARGETS_TEXTURE\":\"\",t.morphTargetsCount>0&&t.isWebGL2?\"#define MORPHTARGETS_TEXTURE_STRIDE \"+t.morphTextureStride:\"\",t.morphTargetsCount>0&&t.isWebGL2?\"#define MORPHTARGETS_COUNT \"+t.morphTargetsCount:\"\",t.doubleSided?\"#define DOUBLE_SIDED\":\"\",t.flipSided?\"#define FLIP_SIDED\":\"\",t.shadowMapEnabled?\"#define USE_SHADOWMAP\":\"\",t.shadowMapEnabled?\"#define \"+l:\"\",t.sizeAttenuation?\"#define USE_SIZEATTENUATION\":\"\",t.logarithmicDepthBuffer?\"#define USE_LOGDEPTHBUF\":\"\",t.logarithmicDepthBuffer&&t.rendererExtensionFragDepth?\"#define USE_LOGDEPTHBUF_EXT\":\"\",\"uniform mat4 modelMatrix;\",\"uniform mat4 modelViewMatrix;\",\"uniform mat4 projectionMatrix;\",\"uniform mat4 viewMatrix;\",\"uniform mat3 normalMatrix;\",\"uniform vec3 cameraPosition;\",\"uniform bool isOrthographic;\",\"#ifdef USE_INSTANCING\",\"\tattribute mat4 instanceMatrix;\",\"#endif\",\"#ifdef USE_INSTANCING_COLOR\",\"\tattribute vec3 instanceColor;\",\"#endif\",\"attribute vec3 position;\",\"attribute vec3 normal;\",\"attribute vec2 uv;\",\"#ifdef USE_TANGENT\",\"\tattribute vec4 tangent;\",\"#endif\",\"#if defined( USE_COLOR_ALPHA )\",\"\tattribute vec4 color;\",\"#elif defined( USE_COLOR )\",\"\tattribute vec3 color;\",\"#endif\",\"#if ( defined( USE_MORPHTARGETS ) && ! defined( MORPHTARGETS_TEXTURE ) )\",\"\tattribute vec3 morphTarget0;\",\"\tattribute vec3 morphTarget1;\",\"\tattribute vec3 morphTarget2;\",\"\tattribute vec3 morphTarget3;\",\"\t#ifdef USE_MORPHNORMALS\",\"\t\tattribute vec3 morphNormal0;\",\"\t\tattribute vec3 morphNormal1;\",\"\t\tattribute vec3 morphNormal2;\",\"\t\tattribute vec3 morphNormal3;\",\"\t#else\",\"\t\tattribute vec3 morphTarget4;\",\"\t\tattribute vec3 morphTarget5;\",\"\t\tattribute vec3 morphTarget6;\",\"\t\tattribute vec3 morphTarget7;\",\"\t#endif\",\"#endif\",\"#ifdef USE_SKINNING\",\"\tattribute vec4 skinIndex;\",\"\tattribute vec4 skinWeight;\",\"#endif\",`\n`].filter(ho).join(`\n`),y=[d,Zh(t),\"#define SHADER_NAME \"+t.shaderName,p,t.useFog&&t.fog?\"#define USE_FOG\":\"\",t.useFog&&t.fogExp2?\"#define FOG_EXP2\":\"\",t.map?\"#define USE_MAP\":\"\",t.matcap?\"#define USE_MATCAP\":\"\",t.envMap?\"#define USE_ENVMAP\":\"\",t.envMap?\"#define \"+c:\"\",t.envMap?\"#define \"+h:\"\",t.envMap?\"#define \"+u:\"\",f?\"#define CUBEUV_TEXEL_WIDTH \"+f.texelWidth:\"\",f?\"#define CUBEUV_TEXEL_HEIGHT \"+f.texelHeight:\"\",f?\"#define CUBEUV_MAX_MIP \"+f.maxMip+\".0\":\"\",t.lightMap?\"#define USE_LIGHTMAP\":\"\",t.aoMap?\"#define USE_AOMAP\":\"\",t.emissiveMap?\"#define USE_EMISSIVEMAP\":\"\",t.bumpMap?\"#define USE_BUMPMAP\":\"\",t.normalMap?\"#define USE_NORMALMAP\":\"\",t.normalMap&&t.objectSpaceNormalMap?\"#define OBJECTSPACE_NORMALMAP\":\"\",t.normalMap&&t.tangentSpaceNormalMap?\"#define TANGENTSPACE_NORMALMAP\":\"\",t.clearcoat?\"#define USE_CLEARCOAT\":\"\",t.clearcoatMap?\"#define USE_CLEARCOATMAP\":\"\",t.clearcoatRoughnessMap?\"#define USE_CLEARCOAT_ROUGHNESSMAP\":\"\",t.clearcoatNormalMap?\"#define USE_CLEARCOAT_NORMALMAP\":\"\",t.iridescence?\"#define USE_IRIDESCENCE\":\"\",t.iridescenceMap?\"#define USE_IRIDESCENCEMAP\":\"\",t.iridescenceThicknessMap?\"#define USE_IRIDESCENCE_THICKNESSMAP\":\"\",t.specularMap?\"#define USE_SPECULARMAP\":\"\",t.specularIntensityMap?\"#define USE_SPECULARINTENSITYMAP\":\"\",t.specularColorMap?\"#define USE_SPECULARCOLORMAP\":\"\",t.roughnessMap?\"#define USE_ROUGHNESSMAP\":\"\",t.metalnessMap?\"#define USE_METALNESSMAP\":\"\",t.alphaMap?\"#define USE_ALPHAMAP\":\"\",t.alphaTest?\"#define USE_ALPHATEST\":\"\",t.sheen?\"#define USE_SHEEN\":\"\",t.sheenColorMap?\"#define USE_SHEENCOLORMAP\":\"\",t.sheenRoughnessMap?\"#define USE_SHEENROUGHNESSMAP\":\"\",t.transmission?\"#define USE_TRANSMISSION\":\"\",t.transmissionMap?\"#define USE_TRANSMISSIONMAP\":\"\",t.thicknessMap?\"#define USE_THICKNESSMAP\":\"\",t.decodeVideoTexture?\"#define DECODE_VIDEO_TEXTURE\":\"\",t.vertexTangents?\"#define USE_TANGENT\":\"\",t.vertexColors||t.instancingColor?\"#define USE_COLOR\":\"\",t.vertexAlphas?\"#define USE_COLOR_ALPHA\":\"\",t.vertexUvs?\"#define USE_UV\":\"\",t.uvsVertexOnly?\"#define UVS_VERTEX_ONLY\":\"\",t.gradientMap?\"#define USE_GRADIENTMAP\":\"\",t.flatShading?\"#define FLAT_SHADED\":\"\",t.doubleSided?\"#define DOUBLE_SIDED\":\"\",t.flipSided?\"#define FLIP_SIDED\":\"\",t.shadowMapEnabled?\"#define USE_SHADOWMAP\":\"\",t.shadowMapEnabled?\"#define \"+l:\"\",t.premultipliedAlpha?\"#define PREMULTIPLIED_ALPHA\":\"\",t.physicallyCorrectLights?\"#define PHYSICALLY_CORRECT_LIGHTS\":\"\",t.logarithmicDepthBuffer?\"#define USE_LOGDEPTHBUF\":\"\",t.logarithmicDepthBuffer&&t.rendererExtensionFragDepth?\"#define USE_LOGDEPTHBUF_EXT\":\"\",\"uniform mat4 viewMatrix;\",\"uniform vec3 cameraPosition;\",\"uniform bool isOrthographic;\",t.toneMapping!==Qn?\"#define TONE_MAPPING\":\"\",t.toneMapping!==Qn?st.tonemapping_pars_fragment:\"\",t.toneMapping!==Qn?l_(\"toneMapping\",t.toneMapping):\"\",t.dithering?\"#define DITHERING\":\"\",t.opaque?\"#define OPAQUE\":\"\",st.encodings_pars_fragment,a_(\"linearToOutputTexel\",t.outputEncoding),t.useDepthPacking?\"#define DEPTH_PACKING \"+t.depthPacking:\"\",`\n`].filter(ho).join(`\n`)),r=su(r),r=Xh(r,t),r=jh(r,t),o=su(o),o=Xh(o,t),o=jh(o,t),r=Yh(r),o=Yh(o),t.isWebGL2&&t.isRawShaderMaterial!==!0&&(x=`#version 300 es\n`,g=[\"precision mediump sampler2DArray;\",\"#define attribute in\",\"#define varying out\",\"#define texture2D texture\"].join(`\n`)+`\n`+g,y=[\"#define varying in\",t.glslVersion===tu?\"\":\"layout(location = 0) out highp vec4 pc_fragColor;\",t.glslVersion===tu?\"\":\"#define gl_FragColor pc_fragColor\",\"#define gl_FragDepthEXT gl_FragDepth\",\"#define texture2D texture\",\"#define textureCube texture\",\"#define texture2DProj textureProj\",\"#define texture2DLodEXT textureLod\",\"#define texture2DProjLodEXT textureProjLod\",\"#define textureCubeLodEXT textureLod\",\"#define texture2DGradEXT textureGrad\",\"#define texture2DProjGradEXT textureProjGrad\",\"#define textureCubeGradEXT textureGrad\"].join(`\n`)+`\n`+y);const b=x+g+r,v=x+y+o,M=Wh(i,35633,b),T=Wh(i,35632,v);if(i.attachShader(m,M),i.attachShader(m,T),t.index0AttributeName!==void 0?i.bindAttribLocation(m,0,t.index0AttributeName):t.morphTargets===!0&&i.bindAttribLocation(m,0,\"position\"),i.linkProgram(m),a.debug.checkShaderErrors){const E=i.getProgramInfoLog(m).trim(),F=i.getShaderInfoLog(M).trim(),U=i.getShaderInfoLog(T).trim();let q=!0,K=!0;if(i.getProgramParameter(m,35714)===!1){q=!1;const G=qh(i,M,\"vertex\"),X=qh(i,T,\"fragment\");console.error(\"THREE.WebGLProgram: Shader Error \"+i.getError()+\" - VALIDATE_STATUS \"+i.getProgramParameter(m,35715)+`\n\nProgram Info Log: `+E+`\n`+G+`\n`+X)}else E!==\"\"?console.warn(\"THREE.WebGLProgram: Program Info Log:\",E):(F===\"\"||U===\"\")&&(K=!1);K&&(this.diagnostics={runnable:q,programLog:E,vertexShader:{log:F,prefix:g},fragmentShader:{log:U,prefix:y}})}i.deleteShader(M),i.deleteShader(T);let C;this.getUniforms=function(){return C===void 0&&(C=new $a(i,m)),C};let _;return this.getAttributes=function(){return _===void 0&&(_=h_(i,m)),_},this.destroy=function(){n.releaseStatesOfProgram(this),i.deleteProgram(m),this.program=void 0},this.name=t.shaderName,this.id=s_++,this.cacheKey=e,this.usedTimes=1,this.program=m,this.vertexShader=M,this.fragmentShader=T,this}let M_=0;class S_{constructor(){this.shaderCache=new Map,this.materialCache=new Map}update(e){const t=e.vertexShader,n=e.fragmentShader,i=this._getShaderStage(t),s=this._getShaderStage(n),r=this._getShaderCacheForMaterial(e);return r.has(i)===!1&&(r.add(i),i.usedTimes++),r.has(s)===!1&&(r.add(s),s.usedTimes++),this}remove(e){const t=this.materialCache.get(e);for(const n of t)n.usedTimes--,n.usedTimes===0&&this.shaderCache.delete(n.code);return this.materialCache.delete(e),this}getVertexShaderID(e){return this._getShaderStage(e.vertexShader).id}getFragmentShaderID(e){return this._getShaderStage(e.fragmentShader).id}dispose(){this.shaderCache.clear(),this.materialCache.clear()}_getShaderCacheForMaterial(e){const t=this.materialCache;return t.has(e)===!1&&t.set(e,new Set),t.get(e)}_getShaderStage(e){const t=this.shaderCache;if(t.has(e)===!1){const n=new T_(e);t.set(e,n)}return t.get(e)}}class T_{constructor(e){this.id=M_++,this.code=e,this.usedTimes=0}}function A_(a,e,t,n,i,s,r){const o=new _l,l=new S_,c=[],h=i.isWebGL2,u=i.logarithmicDepthBuffer,f=i.vertexTextures;let d=i.precision;const p={MeshDepthMaterial:\"depth\",MeshDistanceMaterial:\"distanceRGBA\",MeshNormalMaterial:\"normal\",MeshBasicMaterial:\"basic\",MeshLambertMaterial:\"lambert\",MeshPhongMaterial:\"phong\",MeshToonMaterial:\"toon\",MeshStandardMaterial:\"physical\",MeshPhysicalMaterial:\"physical\",MeshMatcapMaterial:\"matcap\",LineBasicMaterial:\"basic\",LineDashedMaterial:\"dashed\",PointsMaterial:\"points\",ShadowMaterial:\"shadow\",SpriteMaterial:\"sprite\"};function m(_,E,F,U,q){const K=U.fog,G=q.geometry,X=_.isMeshStandardMaterial?U.environment:null,O=(_.isMeshStandardMaterial?t:e).get(_.envMap||X),j=!!O&&O.mapping===Gr?O.image.height:null,Y=p[_.type];_.precision!==null&&(d=i.getMaxPrecision(_.precision),d!==_.precision&&console.warn(\"THREE.WebGLProgram.getParameters:\",_.precision,\"not supported, using\",d,\"instead.\"));const W=G.morphAttributes.position||G.morphAttributes.normal||G.morphAttributes.color,Z=W!==void 0?W.length:0;let ee=0;G.morphAttributes.position!==void 0&&(ee=1),G.morphAttributes.normal!==void 0&&(ee=2),G.morphAttributes.color!==void 0&&(ee=3);let Q,ie,ae,re;if(Y){const Ve=Xn[Y];Q=Ve.vertexShader,ie=Ve.fragmentShader}else Q=_.vertexShader,ie=_.fragmentShader,l.update(_),ae=l.getVertexShaderID(_),re=l.getFragmentShaderID(_);const H=a.getRenderTarget(),ge=_.alphaTest>0,be=_.clearcoat>0,Fe=_.iridescence>0;return{isWebGL2:h,shaderID:Y,shaderName:_.type,vertexShader:Q,fragmentShader:ie,defines:_.defines,customVertexShaderID:ae,customFragmentShaderID:re,isRawShaderMaterial:_.isRawShaderMaterial===!0,glslVersion:_.glslVersion,precision:d,instancing:q.isInstancedMesh===!0,instancingColor:q.isInstancedMesh===!0&&q.instanceColor!==null,supportsVertexTextures:f,outputEncoding:H===null?a.outputEncoding:H.isXRRenderTarget===!0?H.texture.encoding:Mi,map:!!_.map,matcap:!!_.matcap,envMap:!!O,envMapMode:O&&O.mapping,envMapCubeUVHeight:j,lightMap:!!_.lightMap,aoMap:!!_.aoMap,emissiveMap:!!_.emissiveMap,bumpMap:!!_.bumpMap,normalMap:!!_.normalMap,objectSpaceNormalMap:_.normalMapType===ap,tangentSpaceNormalMap:_.normalMapType===ns,decodeVideoTexture:!!_.map&&_.map.isVideoTexture===!0&&_.map.encoding===it,clearcoat:be,clearcoatMap:be&&!!_.clearcoatMap,clearcoatRoughnessMap:be&&!!_.clearcoatRoughnessMap,clearcoatNormalMap:be&&!!_.clearcoatNormalMap,iridescence:Fe,iridescenceMap:Fe&&!!_.iridescenceMap,iridescenceThicknessMap:Fe&&!!_.iridescenceThicknessMap,displacementMap:!!_.displacementMap,roughnessMap:!!_.roughnessMap,metalnessMap:!!_.metalnessMap,specularMap:!!_.specularMap,specularIntensityMap:!!_.specularIntensityMap,specularColorMap:!!_.specularColorMap,opaque:_.transparent===!1&&_.blending===Ts,alphaMap:!!_.alphaMap,alphaTest:ge,gradientMap:!!_.gradientMap,sheen:_.sheen>0,sheenColorMap:!!_.sheenColorMap,sheenRoughnessMap:!!_.sheenRoughnessMap,transmission:_.transmission>0,transmissionMap:!!_.transmissionMap,thicknessMap:!!_.thicknessMap,combine:_.combine,vertexTangents:!!_.normalMap&&!!G.attributes.tangent,vertexColors:_.vertexColors,vertexAlphas:_.vertexColors===!0&&!!G.attributes.color&&G.attributes.color.itemSize===4,vertexUvs:!!_.map||!!_.bumpMap||!!_.normalMap||!!_.specularMap||!!_.alphaMap||!!_.emissiveMap||!!_.roughnessMap||!!_.metalnessMap||!!_.clearcoatMap||!!_.clearcoatRoughnessMap||!!_.clearcoatNormalMap||!!_.iridescenceMap||!!_.iridescenceThicknessMap||!!_.displacementMap||!!_.transmissionMap||!!_.thicknessMap||!!_.specularIntensityMap||!!_.specularColorMap||!!_.sheenColorMap||!!_.sheenRoughnessMap,uvsVertexOnly:!(!!_.map||!!_.bumpMap||!!_.normalMap||!!_.specularMap||!!_.alphaMap||!!_.emissiveMap||!!_.roughnessMap||!!_.metalnessMap||!!_.clearcoatNormalMap||!!_.iridescenceMap||!!_.iridescenceThicknessMap||_.transmission>0||!!_.transmissionMap||!!_.thicknessMap||!!_.specularIntensityMap||!!_.specularColorMap||_.sheen>0||!!_.sheenColorMap||!!_.sheenRoughnessMap)&&!!_.displacementMap,fog:!!K,useFog:_.fog===!0,fogExp2:K&&K.isFogExp2,flatShading:!!_.flatShading,sizeAttenuation:_.sizeAttenuation,logarithmicDepthBuffer:u,skinning:q.isSkinnedMesh===!0,morphTargets:G.morphAttributes.position!==void 0,morphNormals:G.morphAttributes.normal!==void 0,morphColors:G.morphAttributes.color!==void 0,morphTargetsCount:Z,morphTextureStride:ee,numDirLights:E.directional.length,numPointLights:E.point.length,numSpotLights:E.spot.length,numRectAreaLights:E.rectArea.length,numHemiLights:E.hemi.length,numDirLightShadows:E.directionalShadowMap.length,numPointLightShadows:E.pointShadowMap.length,numSpotLightShadows:E.spotShadowMap.length,numClippingPlanes:r.numPlanes,numClipIntersection:r.numIntersection,dithering:_.dithering,shadowMapEnabled:a.shadowMap.enabled&&F.length>0,shadowMapType:a.shadowMap.type,toneMapping:_.toneMapped?a.toneMapping:Qn,physicallyCorrectLights:a.physicallyCorrectLights,premultipliedAlpha:_.premultipliedAlpha,doubleSided:_.side===wi,flipSided:_.side===kn,useDepthPacking:!!_.depthPacking,depthPacking:_.depthPacking||0,index0AttributeName:_.index0AttributeName,extensionDerivatives:_.extensions&&_.extensions.derivatives,extensionFragDepth:_.extensions&&_.extensions.fragDepth,extensionDrawBuffers:_.extensions&&_.extensions.drawBuffers,extensionShaderTextureLOD:_.extensions&&_.extensions.shaderTextureLOD,rendererExtensionFragDepth:h||n.has(\"EXT_frag_depth\"),rendererExtensionDrawBuffers:h||n.has(\"WEBGL_draw_buffers\"),rendererExtensionShaderTextureLod:h||n.has(\"EXT_shader_texture_lod\"),customProgramCacheKey:_.customProgramCacheKey()}}function g(_){const E=[];if(_.shaderID?E.push(_.shaderID):(E.push(_.customVertexShaderID),E.push(_.customFragmentShaderID)),_.defines!==void 0)for(const F in _.defines)E.push(F),E.push(_.defines[F]);return _.isRawShaderMaterial===!1&&(y(E,_),x(E,_),E.push(a.outputEncoding)),E.push(_.customProgramCacheKey),E.join()}function y(_,E){_.push(E.precision),_.push(E.outputEncoding),_.push(E.envMapMode),_.push(E.envMapCubeUVHeight),_.push(E.combine),_.push(E.vertexUvs),_.push(E.fogExp2),_.push(E.sizeAttenuation),_.push(E.morphTargetsCount),_.push(E.morphAttributeCount),_.push(E.numDirLights),_.push(E.numPointLights),_.push(E.numSpotLights),_.push(E.numHemiLights),_.push(E.numRectAreaLights),_.push(E.numDirLightShadows),_.push(E.numPointLightShadows),_.push(E.numSpotLightShadows),_.push(E.shadowMapType),_.push(E.toneMapping),_.push(E.numClippingPlanes),_.push(E.numClipIntersection),_.push(E.depthPacking)}function x(_,E){o.disableAll(),E.isWebGL2&&o.enable(0),E.supportsVertexTextures&&o.enable(1),E.instancing&&o.enable(2),E.instancingColor&&o.enable(3),E.map&&o.enable(4),E.matcap&&o.enable(5),E.envMap&&o.enable(6),E.lightMap&&o.enable(7),E.aoMap&&o.enable(8),E.emissiveMap&&o.enable(9),E.bumpMap&&o.enable(10),E.normalMap&&o.enable(11),E.objectSpaceNormalMap&&o.enable(12),E.tangentSpaceNormalMap&&o.enable(13),E.clearcoat&&o.enable(14),E.clearcoatMap&&o.enable(15),E.clearcoatRoughnessMap&&o.enable(16),E.clearcoatNormalMap&&o.enable(17),E.iridescence&&o.enable(18),E.iridescenceMap&&o.enable(19),E.iridescenceThicknessMap&&o.enable(20),E.displacementMap&&o.enable(21),E.specularMap&&o.enable(22),E.roughnessMap&&o.enable(23),E.metalnessMap&&o.enable(24),E.gradientMap&&o.enable(25),E.alphaMap&&o.enable(26),E.alphaTest&&o.enable(27),E.vertexColors&&o.enable(28),E.vertexAlphas&&o.enable(29),E.vertexUvs&&o.enable(30),E.vertexTangents&&o.enable(31),E.uvsVertexOnly&&o.enable(32),E.fog&&o.enable(33),_.push(o.mask),o.disableAll(),E.useFog&&o.enable(0),E.flatShading&&o.enable(1),E.logarithmicDepthBuffer&&o.enable(2),E.skinning&&o.enable(3),E.morphTargets&&o.enable(4),E.morphNormals&&o.enable(5),E.morphColors&&o.enable(6),E.premultipliedAlpha&&o.enable(7),E.shadowMapEnabled&&o.enable(8),E.physicallyCorrectLights&&o.enable(9),E.doubleSided&&o.enable(10),E.flipSided&&o.enable(11),E.useDepthPacking&&o.enable(12),E.dithering&&o.enable(13),E.specularIntensityMap&&o.enable(14),E.specularColorMap&&o.enable(15),E.transmission&&o.enable(16),E.transmissionMap&&o.enable(17),E.thicknessMap&&o.enable(18),E.sheen&&o.enable(19),E.sheenColorMap&&o.enable(20),E.sheenRoughnessMap&&o.enable(21),E.decodeVideoTexture&&o.enable(22),E.opaque&&o.enable(23),_.push(o.mask)}function b(_){const E=p[_.type];let F;if(E){const U=Xn[E];F=fp.clone(U.uniforms)}else F=_.uniforms;return F}function v(_,E){let F;for(let U=0,q=c.length;U<q;U++){const K=c[U];if(K.cacheKey===E){F=K,++F.usedTimes;break}}return F===void 0&&(F=new w_(a,E,_,s),c.push(F)),F}function M(_){if(--_.usedTimes===0){const E=c.indexOf(_);c[E]=c[c.length-1],c.pop(),_.destroy()}}function T(_){l.remove(_)}function C(){l.dispose()}return{getParameters:m,getProgramCacheKey:g,getUniforms:b,acquireProgram:v,releaseProgram:M,releaseShaderCache:T,programs:c,dispose:C}}function E_(){let a=new WeakMap;function e(s){let r=a.get(s);return r===void 0&&(r={},a.set(s,r)),r}function t(s){a.delete(s)}function n(s,r,o){a.get(s)[r]=o}function i(){a=new WeakMap}return{get:e,remove:t,update:n,dispose:i}}function C_(a,e){return a.groupOrder!==e.groupOrder?a.groupOrder-e.groupOrder:a.renderOrder!==e.renderOrder?a.renderOrder-e.renderOrder:a.material.id!==e.material.id?a.material.id-e.material.id:a.z!==e.z?a.z-e.z:a.id-e.id}function Kh(a,e){return a.groupOrder!==e.groupOrder?a.groupOrder-e.groupOrder:a.renderOrder!==e.renderOrder?a.renderOrder-e.renderOrder:a.z!==e.z?e.z-a.z:a.id-e.id}function Jh(){const a=[];let e=0;const t=[],n=[],i=[];function s(){e=0,t.length=0,n.length=0,i.length=0}function r(u,f,d,p,m,g){let y=a[e];return y===void 0?(y={id:u.id,object:u,geometry:f,material:d,groupOrder:p,renderOrder:u.renderOrder,z:m,group:g},a[e]=y):(y.id=u.id,y.object=u,y.geometry=f,y.material=d,y.groupOrder=p,y.renderOrder=u.renderOrder,y.z=m,y.group=g),e++,y}function o(u,f,d,p,m,g){const y=r(u,f,d,p,m,g);d.transmission>0?n.push(y):d.transparent===!0?i.push(y):t.push(y)}function l(u,f,d,p,m,g){const y=r(u,f,d,p,m,g);d.transmission>0?n.unshift(y):d.transparent===!0?i.unshift(y):t.unshift(y)}function c(u,f){t.length>1&&t.sort(u||C_),n.length>1&&n.sort(f||Kh),i.length>1&&i.sort(f||Kh)}function h(){for(let u=e,f=a.length;u<f;u++){const d=a[u];if(d.id===null)break;d.id=null,d.object=null,d.geometry=null,d.material=null,d.group=null}}return{opaque:t,transmissive:n,transparent:i,init:s,push:o,unshift:l,finish:h,sort:c}}function L_(){let a=new WeakMap;function e(n,i){let s;return a.has(n)===!1?(s=new Jh,a.set(n,[s])):i>=a.get(n).length?(s=new Jh,a.get(n).push(s)):s=a.get(n)[i],s}function t(){a=new WeakMap}return{get:e,dispose:t}}function R_(){const a={};return{get:function(e){if(a[e.id]!==void 0)return a[e.id];let t;switch(e.type){case\"DirectionalLight\":t={direction:new I,color:new we};break;case\"SpotLight\":t={position:new I,direction:new I,color:new we,distance:0,coneCos:0,penumbraCos:0,decay:0};break;case\"PointLight\":t={position:new I,color:new we,distance:0,decay:0};break;case\"HemisphereLight\":t={direction:new I,skyColor:new we,groundColor:new we};break;case\"RectAreaLight\":t={color:new we,position:new I,halfWidth:new I,halfHeight:new I};break}return a[e.id]=t,t}}}function I_(){const a={};return{get:function(e){if(a[e.id]!==void 0)return a[e.id];let t;switch(e.type){case\"DirectionalLight\":t={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new fe};break;case\"SpotLight\":t={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new fe};break;case\"PointLight\":t={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new fe,shadowCameraNear:1,shadowCameraFar:1e3};break}return a[e.id]=t,t}}}let P_=0;function D_(a,e){return(e.castShadow?1:0)-(a.castShadow?1:0)}function F_(a,e){const t=new R_,n=I_(),i={version:0,hash:{directionalLength:-1,pointLength:-1,spotLength:-1,rectAreaLength:-1,hemiLength:-1,numDirectionalShadows:-1,numPointShadows:-1,numSpotShadows:-1},ambient:[0,0,0],probe:[],directional:[],directionalShadow:[],directionalShadowMap:[],directionalShadowMatrix:[],spot:[],spotShadow:[],spotShadowMap:[],spotShadowMatrix:[],rectArea:[],rectAreaLTC1:null,rectAreaLTC2:null,point:[],pointShadow:[],pointShadowMap:[],pointShadowMatrix:[],hemi:[]};for(let h=0;h<9;h++)i.probe.push(new I);const s=new I,r=new Ne,o=new Ne;function l(h,u){let f=0,d=0,p=0;for(let E=0;E<9;E++)i.probe[E].set(0,0,0);let m=0,g=0,y=0,x=0,b=0,v=0,M=0,T=0;h.sort(D_);const C=u!==!0?Math.PI:1;for(let E=0,F=h.length;E<F;E++){const U=h[E],q=U.color,K=U.intensity,G=U.distance,X=U.shadow&&U.shadow.map?U.shadow.map.texture:null;if(U.isAmbientLight)f+=q.r*K*C,d+=q.g*K*C,p+=q.b*K*C;else if(U.isLightProbe)for(let O=0;O<9;O++)i.probe[O].addScaledVector(U.sh.coefficients[O],K);else if(U.isDirectionalLight){const O=t.get(U);if(O.color.copy(U.color).multiplyScalar(U.intensity*C),U.castShadow){const j=U.shadow,Y=n.get(U);Y.shadowBias=j.bias,Y.shadowNormalBias=j.normalBias,Y.shadowRadius=j.radius,Y.shadowMapSize=j.mapSize,i.directionalShadow[m]=Y,i.directionalShadowMap[m]=X,i.directionalShadowMatrix[m]=U.shadow.matrix,v++}i.directional[m]=O,m++}else if(U.isSpotLight){const O=t.get(U);if(O.position.setFromMatrixPosition(U.matrixWorld),O.color.copy(q).multiplyScalar(K*C),O.distance=G,O.coneCos=Math.cos(U.angle),O.penumbraCos=Math.cos(U.angle*(1-U.penumbra)),O.decay=U.decay,U.castShadow){const j=U.shadow,Y=n.get(U);Y.shadowBias=j.bias,Y.shadowNormalBias=j.normalBias,Y.shadowRadius=j.radius,Y.shadowMapSize=j.mapSize,i.spotShadow[y]=Y,i.spotShadowMap[y]=X,i.spotShadowMatrix[y]=U.shadow.matrix,T++}i.spot[y]=O,y++}else if(U.isRectAreaLight){const O=t.get(U);O.color.copy(q).multiplyScalar(K),O.halfWidth.set(U.width*.5,0,0),O.halfHeight.set(0,U.height*.5,0),i.rectArea[x]=O,x++}else if(U.isPointLight){const O=t.get(U);if(O.color.copy(U.color).multiplyScalar(U.intensity*C),O.distance=U.distance,O.decay=U.decay,U.castShadow){const j=U.shadow,Y=n.get(U);Y.shadowBias=j.bias,Y.shadowNormalBias=j.normalBias,Y.shadowRadius=j.radius,Y.shadowMapSize=j.mapSize,Y.shadowCameraNear=j.camera.near,Y.shadowCameraFar=j.camera.far,i.pointShadow[g]=Y,i.pointShadowMap[g]=X,i.pointShadowMatrix[g]=U.shadow.matrix,M++}i.point[g]=O,g++}else if(U.isHemisphereLight){const O=t.get(U);O.skyColor.copy(U.color).multiplyScalar(K*C),O.groundColor.copy(U.groundColor).multiplyScalar(K*C),i.hemi[b]=O,b++}}x>0&&(e.isWebGL2||a.has(\"OES_texture_float_linear\")===!0?(i.rectAreaLTC1=De.LTC_FLOAT_1,i.rectAreaLTC2=De.LTC_FLOAT_2):a.has(\"OES_texture_half_float_linear\")===!0?(i.rectAreaLTC1=De.LTC_HALF_1,i.rectAreaLTC2=De.LTC_HALF_2):console.error(\"THREE.WebGLRenderer: Unable to use RectAreaLight. Missing WebGL extensions.\")),i.ambient[0]=f,i.ambient[1]=d,i.ambient[2]=p;const _=i.hash;(_.directionalLength!==m||_.pointLength!==g||_.spotLength!==y||_.rectAreaLength!==x||_.hemiLength!==b||_.numDirectionalShadows!==v||_.numPointShadows!==M||_.numSpotShadows!==T)&&(i.directional.length=m,i.spot.length=y,i.rectArea.length=x,i.point.length=g,i.hemi.length=b,i.directionalShadow.length=v,i.directionalShadowMap.length=v,i.pointShadow.length=M,i.pointShadowMap.length=M,i.spotShadow.length=T,i.spotShadowMap.length=T,i.directionalShadowMatrix.length=v,i.pointShadowMatrix.length=M,i.spotShadowMatrix.length=T,_.directionalLength=m,_.pointLength=g,_.spotLength=y,_.rectAreaLength=x,_.hemiLength=b,_.numDirectionalShadows=v,_.numPointShadows=M,_.numSpotShadows=T,i.version=P_++)}function c(h,u){let f=0,d=0,p=0,m=0,g=0;const y=u.matrixWorldInverse;for(let x=0,b=h.length;x<b;x++){const v=h[x];if(v.isDirectionalLight){const M=i.directional[f];M.direction.setFromMatrixPosition(v.matrixWorld),s.setFromMatrixPosition(v.target.matrixWorld),M.direction.sub(s),M.direction.transformDirection(y),f++}else if(v.isSpotLight){const M=i.spot[p];M.position.setFromMatrixPosition(v.matrixWorld),M.position.applyMatrix4(y),M.direction.setFromMatrixPosition(v.matrixWorld),s.setFromMatrixPosition(v.target.matrixWorld),M.direction.sub(s),M.direction.transformDirection(y),p++}else if(v.isRectAreaLight){const M=i.rectArea[m];M.position.setFromMatrixPosition(v.matrixWorld),M.position.applyMatrix4(y),o.identity(),r.copy(v.matrixWorld),r.premultiply(y),o.extractRotation(r),M.halfWidth.set(v.width*.5,0,0),M.halfHeight.set(0,v.height*.5,0),M.halfWidth.applyMatrix4(o),M.halfHeight.applyMatrix4(o),m++}else if(v.isPointLight){const M=i.point[d];M.position.setFromMatrixPosition(v.matrixWorld),M.position.applyMatrix4(y),d++}else if(v.isHemisphereLight){const M=i.hemi[g];M.direction.setFromMatrixPosition(v.matrixWorld),M.direction.transformDirection(y),g++}}}return{setup:l,setupView:c,state:i}}function $h(a,e){const t=new F_(a,e),n=[],i=[];function s(){n.length=0,i.length=0}function r(u){n.push(u)}function o(u){i.push(u)}function l(u){t.setup(n,u)}function c(u){t.setupView(n,u)}return{init:s,state:{lightsArray:n,shadowsArray:i,lights:t},setupLights:l,setupLightsView:c,pushLight:r,pushShadow:o}}function N_(a,e){let t=new WeakMap;function n(s,r=0){let o;return t.has(s)===!1?(o=new $h(a,e),t.set(s,[o])):r>=t.get(s).length?(o=new $h(a,e),t.get(s).push(o)):o=t.get(s)[r],o}function i(){t=new WeakMap}return{get:n,dispose:i}}class Du extends Wt{constructor(e){super(),this.isMeshDepthMaterial=!0,this.type=\"MeshDepthMaterial\",this.depthPacking=rp,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.setValues(e)}copy(e){return super.copy(e),this.depthPacking=e.depthPacking,this.map=e.map,this.alphaMap=e.alphaMap,this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this}}class Fu extends Wt{constructor(e){super(),this.isMeshDistanceMaterial=!0,this.type=\"MeshDistanceMaterial\",this.referencePosition=new I,this.nearDistance=1,this.farDistance=1e3,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.setValues(e)}copy(e){return super.copy(e),this.referencePosition.copy(e.referencePosition),this.nearDistance=e.nearDistance,this.farDistance=e.farDistance,this.map=e.map,this.alphaMap=e.alphaMap,this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this}}const k_=`void main() {\n\tgl_Position = vec4( position, 1.0 );\n}`,O_=`uniform sampler2D shadow_pass;\nuniform vec2 resolution;\nuniform float radius;\n#include <packing>\nvoid main() {\n\tconst float samples = float( VSM_SAMPLES );\n\tfloat mean = 0.0;\n\tfloat squared_mean = 0.0;\n\tfloat uvStride = samples <= 1.0 ? 0.0 : 2.0 / ( samples - 1.0 );\n\tfloat uvStart = samples <= 1.0 ? 0.0 : - 1.0;\n\tfor ( float i = 0.0; i < samples; i ++ ) {\n\t\tfloat uvOffset = uvStart + i * uvStride;\n\t\t#ifdef HORIZONTAL_PASS\n\t\t\tvec2 distribution = unpackRGBATo2Half( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( uvOffset, 0.0 ) * radius ) / resolution ) );\n\t\t\tmean += distribution.x;\n\t\t\tsquared_mean += distribution.y * distribution.y + distribution.x * distribution.x;\n\t\t#else\n\t\t\tfloat depth = unpackRGBAToDepth( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( 0.0, uvOffset ) * radius ) / resolution ) );\n\t\t\tmean += depth;\n\t\t\tsquared_mean += depth * depth;\n\t\t#endif\n\t}\n\tmean = mean / samples;\n\tsquared_mean = squared_mean / samples;\n\tfloat std_dev = sqrt( squared_mean - mean * mean );\n\tgl_FragColor = pack2HalfToRGBA( vec2( mean, std_dev ) );\n}`;function B_(a,e,t){let n=new Ml;const i=new fe,s=new fe,r=new dt,o=new Du({depthPacking:op}),l=new Fu,c={},h=t.maxTextureSize,u={0:kn,1:bi,2:wi},f=new ni({defines:{VSM_SAMPLES:8},uniforms:{shadow_pass:{value:null},resolution:{value:new fe},radius:{value:4}},vertexShader:k_,fragmentShader:O_}),d=f.clone();d.defines.HORIZONTAL_PASS=1;const p=new Xe;p.setAttribute(\"position\",new mt(new Float32Array([-1,-1,.5,3,-1,.5,-1,3,.5]),3));const m=new Rt(p,f),g=this;this.enabled=!1,this.autoUpdate=!0,this.needsUpdate=!1,this.type=wu,this.render=function(v,M,T){if(g.enabled===!1||g.autoUpdate===!1&&g.needsUpdate===!1||v.length===0)return;const C=a.getRenderTarget(),_=a.getActiveCubeFace(),E=a.getActiveMipmapLevel(),F=a.state;F.setBlending(_i),F.buffers.color.setClear(1,1,1,1),F.buffers.depth.setTest(!0),F.setScissorTest(!1);for(let U=0,q=v.length;U<q;U++){const K=v[U],G=K.shadow;if(G===void 0){console.warn(\"THREE.WebGLShadowMap:\",K,\"has no shadow.\");continue}if(G.autoUpdate===!1&&G.needsUpdate===!1)continue;i.copy(G.mapSize);const X=G.getFrameExtents();if(i.multiply(X),s.copy(G.mapSize),(i.x>h||i.y>h)&&(i.x>h&&(s.x=Math.floor(h/X.x),i.x=s.x*X.x,G.mapSize.x=s.x),i.y>h&&(s.y=Math.floor(h/X.y),i.y=s.y*X.y,G.mapSize.y=s.y)),G.map===null){const j=this.type!==mr?{minFilter:Gt,magFilter:Gt}:{};G.map=new zn(i.x,i.y,j),G.map.texture.name=K.name+\".shadowMap\",G.camera.updateProjectionMatrix()}a.setRenderTarget(G.map),a.clear();const O=G.getViewportCount();for(let j=0;j<O;j++){const Y=G.getViewport(j);r.set(s.x*Y.x,s.y*Y.y,s.x*Y.z,s.y*Y.w),F.viewport(r),G.updateMatrices(K,j),n=G.getFrustum(),b(M,T,G.camera,K,this.type)}G.isPointLightShadow!==!0&&this.type===mr&&y(G,T),G.needsUpdate=!1}g.needsUpdate=!1,a.setRenderTarget(C,_,E)};function y(v,M){const T=e.update(m);f.defines.VSM_SAMPLES!==v.blurSamples&&(f.defines.VSM_SAMPLES=v.blurSamples,d.defines.VSM_SAMPLES=v.blurSamples,f.needsUpdate=!0,d.needsUpdate=!0),v.mapPass===null&&(v.mapPass=new zn(i.x,i.y)),f.uniforms.shadow_pass.value=v.map.texture,f.uniforms.resolution.value=v.mapSize,f.uniforms.radius.value=v.radius,a.setRenderTarget(v.mapPass),a.clear(),a.renderBufferDirect(M,null,T,f,m,null),d.uniforms.shadow_pass.value=v.mapPass.texture,d.uniforms.resolution.value=v.mapSize,d.uniforms.radius.value=v.radius,a.setRenderTarget(v.map),a.clear(),a.renderBufferDirect(M,null,T,d,m,null)}function x(v,M,T,C,_,E){let F=null;const U=T.isPointLight===!0?v.customDistanceMaterial:v.customDepthMaterial;if(U!==void 0?F=U:F=T.isPointLight===!0?l:o,a.localClippingEnabled&&M.clipShadows===!0&&Array.isArray(M.clippingPlanes)&&M.clippingPlanes.length!==0||M.displacementMap&&M.displacementScale!==0||M.alphaMap&&M.alphaTest>0){const q=F.uuid,K=M.uuid;let G=c[q];G===void 0&&(G={},c[q]=G);let X=G[K];X===void 0&&(X=F.clone(),G[K]=X),F=X}return F.visible=M.visible,F.wireframe=M.wireframe,E===mr?F.side=M.shadowSide!==null?M.shadowSide:M.side:F.side=M.shadowSide!==null?M.shadowSide:u[M.side],F.alphaMap=M.alphaMap,F.alphaTest=M.alphaTest,F.clipShadows=M.clipShadows,F.clippingPlanes=M.clippingPlanes,F.clipIntersection=M.clipIntersection,F.displacementMap=M.displacementMap,F.displacementScale=M.displacementScale,F.displacementBias=M.displacementBias,F.wireframeLinewidth=M.wireframeLinewidth,F.linewidth=M.linewidth,T.isPointLight===!0&&F.isMeshDistanceMaterial===!0&&(F.referencePosition.setFromMatrixPosition(T.matrixWorld),F.nearDistance=C,F.farDistance=_),F}function b(v,M,T,C,_){if(v.visible===!1)return;if(v.layers.test(M.layers)&&(v.isMesh||v.isLine||v.isPoints)&&(v.castShadow||v.receiveShadow&&_===mr)&&(!v.frustumCulled||n.intersectsObject(v))){v.modelViewMatrix.multiplyMatrices(T.matrixWorldInverse,v.matrixWorld);const U=e.update(v),q=v.material;if(Array.isArray(q)){const K=U.groups;for(let G=0,X=K.length;G<X;G++){const O=K[G],j=q[O.materialIndex];if(j&&j.visible){const Y=x(v,j,C,T.near,T.far,_);a.renderBufferDirect(T,null,U,Y,v,O)}}}else if(q.visible){const K=x(v,q,C,T.near,T.far,_);a.renderBufferDirect(T,null,U,K,v,null)}}const F=v.children;for(let U=0,q=F.length;U<q;U++)b(F[U],M,T,C,_)}}function z_(a,e,t){const n=t.isWebGL2;function i(){let z=!1;const ye=new dt;let J=null;const Pe=new dt(0,0,0,0);return{setMask:function(Ae){J!==Ae&&!z&&(a.colorMask(Ae,Ae,Ae,Ae),J=Ae)},setLocked:function(Ae){z=Ae},setClear:function(Ae,$e,Tt,at,wt){wt===!0&&(Ae*=at,$e*=at,Tt*=at),ye.set(Ae,$e,Tt,at),Pe.equals(ye)===!1&&(a.clearColor(Ae,$e,Tt,at),Pe.copy(ye))},reset:function(){z=!1,J=null,Pe.set(-1,0,0,0)}}}function s(){let z=!1,ye=null,J=null,Pe=null;return{setTest:function(Ae){Ae?ge(2929):be(2929)},setMask:function(Ae){ye!==Ae&&!z&&(a.depthMask(Ae),ye=Ae)},setFunc:function(Ae){if(J!==Ae){if(Ae)switch(Ae){case Ed:a.depthFunc(512);break;case Cd:a.depthFunc(519);break;case Ld:a.depthFunc(513);break;case il:a.depthFunc(515);break;case Rd:a.depthFunc(514);break;case Id:a.depthFunc(518);break;case Pd:a.depthFunc(516);break;case Dd:a.depthFunc(517);break;default:a.depthFunc(515)}else a.depthFunc(515);J=Ae}},setLocked:function(Ae){z=Ae},setClear:function(Ae){Pe!==Ae&&(a.clearDepth(Ae),Pe=Ae)},reset:function(){z=!1,ye=null,J=null,Pe=null}}}function r(){let z=!1,ye=null,J=null,Pe=null,Ae=null,$e=null,Tt=null,at=null,wt=null;return{setTest:function(et){z||(et?ge(2960):be(2960))},setMask:function(et){ye!==et&&!z&&(a.stencilMask(et),ye=et)},setFunc:function(et,At,_t){(J!==et||Pe!==At||Ae!==_t)&&(a.stencilFunc(et,At,_t),J=et,Pe=At,Ae=_t)},setOp:function(et,At,_t){($e!==et||Tt!==At||at!==_t)&&(a.stencilOp(et,At,_t),$e=et,Tt=At,at=_t)},setLocked:function(et){z=et},setClear:function(et){wt!==et&&(a.clearStencil(et),wt=et)},reset:function(){z=!1,ye=null,J=null,Pe=null,Ae=null,$e=null,Tt=null,at=null,wt=null}}}const o=new i,l=new s,c=new r,h=new WeakMap,u=new WeakMap;let f={},d={},p=new WeakMap,m=[],g=null,y=!1,x=null,b=null,v=null,M=null,T=null,C=null,_=null,E=!1,F=null,U=null,q=null,K=null,G=null;const X=a.getParameter(35661);let O=!1,j=0;const Y=a.getParameter(7938);Y.indexOf(\"WebGL\")!==-1?(j=parseFloat(/^WebGL (\\d)/.exec(Y)[1]),O=j>=1):Y.indexOf(\"OpenGL ES\")!==-1&&(j=parseFloat(/^OpenGL ES (\\d)/.exec(Y)[1]),O=j>=2);let W=null,Z={};const ee=a.getParameter(3088),Q=a.getParameter(2978),ie=new dt().fromArray(ee),ae=new dt().fromArray(Q);function re(z,ye,J){const Pe=new Uint8Array(4),Ae=a.createTexture();a.bindTexture(z,Ae),a.texParameteri(z,10241,9728),a.texParameteri(z,10240,9728);for(let $e=0;$e<J;$e++)a.texImage2D(ye+$e,0,6408,1,1,0,6408,5121,Pe);return Ae}const H={};H[3553]=re(3553,3553,1),H[34067]=re(34067,34069,6),o.setClear(0,0,0,1),l.setClear(1),c.setClear(0),ge(2929),l.setFunc(il),Le(!1),Ze(Cc),ge(2884),ve(_i);function ge(z){f[z]!==!0&&(a.enable(z),f[z]=!0)}function be(z){f[z]!==!1&&(a.disable(z),f[z]=!1)}function Fe(z,ye){return d[z]!==ye?(a.bindFramebuffer(z,ye),d[z]=ye,n&&(z===36009&&(d[36160]=ye),z===36160&&(d[36009]=ye)),!0):!1}function xe(z,ye){let J=m,Pe=!1;if(z)if(J=p.get(ye),J===void 0&&(J=[],p.set(ye,J)),z.isWebGLMultipleRenderTargets){const Ae=z.texture;if(J.length!==Ae.length||J[0]!==36064){for(let $e=0,Tt=Ae.length;$e<Tt;$e++)J[$e]=36064+$e;J.length=Ae.length,Pe=!0}}else J[0]!==36064&&(J[0]=36064,Pe=!0);else J[0]!==1029&&(J[0]=1029,Pe=!0);Pe&&(t.isWebGL2?a.drawBuffers(J):e.get(\"WEBGL_draw_buffers\").drawBuffersWEBGL(J))}function Ve(z){return g!==z?(a.useProgram(z),g=z,!0):!1}const ue={[vs]:32774,[gd]:32778,[yd]:32779};if(n)ue[Pc]=32775,ue[Dc]=32776;else{const z=e.get(\"EXT_blend_minmax\");z!==null&&(ue[Pc]=z.MIN_EXT,ue[Dc]=z.MAX_EXT)}const ce={[xd]:0,[vd]:1,[_d]:768,[Mu]:770,[Ad]:776,[Sd]:774,[wd]:772,[bd]:769,[Su]:771,[Td]:775,[Md]:773};function ve(z,ye,J,Pe,Ae,$e,Tt,at){if(z===_i){y===!0&&(be(3042),y=!1);return}if(y===!1&&(ge(3042),y=!0),z!==md){if(z!==x||at!==E){if((b!==vs||T!==vs)&&(a.blendEquation(32774),b=vs,T=vs),at)switch(z){case Ts:a.blendFuncSeparate(1,771,1,771);break;case Lc:a.blendFunc(1,1);break;case Rc:a.blendFuncSeparate(0,769,0,1);break;case Ic:a.blendFuncSeparate(0,768,0,770);break;default:console.error(\"THREE.WebGLState: Invalid blending: \",z);break}else switch(z){case Ts:a.blendFuncSeparate(770,771,1,771);break;case Lc:a.blendFunc(770,1);break;case Rc:a.blendFuncSeparate(0,769,0,1);break;case Ic:a.blendFunc(0,768);break;default:console.error(\"THREE.WebGLState: Invalid blending: \",z);break}v=null,M=null,C=null,_=null,x=z,E=at}return}Ae=Ae||ye,$e=$e||J,Tt=Tt||Pe,(ye!==b||Ae!==T)&&(a.blendEquationSeparate(ue[ye],ue[Ae]),b=ye,T=Ae),(J!==v||Pe!==M||$e!==C||Tt!==_)&&(a.blendFuncSeparate(ce[J],ce[Pe],ce[$e],ce[Tt]),v=J,M=Pe,C=$e,_=Tt),x=z,E=null}function ke(z,ye){z.side===wi?be(2884):ge(2884);let J=z.side===kn;ye&&(J=!J),Le(J),z.blending===Ts&&z.transparent===!1?ve(_i):ve(z.blending,z.blendEquation,z.blendSrc,z.blendDst,z.blendEquationAlpha,z.blendSrcAlpha,z.blendDstAlpha,z.premultipliedAlpha),l.setFunc(z.depthFunc),l.setTest(z.depthTest),l.setMask(z.depthWrite),o.setMask(z.colorWrite);const Pe=z.stencilWrite;c.setTest(Pe),Pe&&(c.setMask(z.stencilWriteMask),c.setFunc(z.stencilFunc,z.stencilRef,z.stencilFuncMask),c.setOp(z.stencilFail,z.stencilZFail,z.stencilZPass)),Ue(z.polygonOffset,z.polygonOffsetFactor,z.polygonOffsetUnits),z.alphaToCoverage===!0?ge(32926):be(32926)}function Le(z){F!==z&&(z?a.frontFace(2304):a.frontFace(2305),F=z)}function Ze(z){z!==hd?(ge(2884),z!==U&&(z===Cc?a.cullFace(1029):z===fd?a.cullFace(1028):a.cullFace(1032))):be(2884),U=z}function He(z){z!==q&&(O&&a.lineWidth(z),q=z)}function Ue(z,ye,J){z?(ge(32823),(K!==ye||G!==J)&&(a.polygonOffset(ye,J),K=ye,G=J)):be(32823)}function gt(z){z?ge(3089):be(3089)}function ot(z){z===void 0&&(z=33984+X-1),W!==z&&(a.activeTexture(z),W=z)}function k(z,ye){W===null&&ot();let J=Z[W];J===void 0&&(J={type:void 0,texture:void 0},Z[W]=J),(J.type!==z||J.texture!==ye)&&(a.bindTexture(z,ye||H[z]),J.type=z,J.texture=ye)}function P(){const z=Z[W];z!==void 0&&z.type!==void 0&&(a.bindTexture(z.type,null),z.type=void 0,z.texture=void 0)}function oe(){try{a.compressedTexImage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function _e(){try{a.texSubImage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function Se(){try{a.texSubImage3D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function Ie(){try{a.compressedTexSubImage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function je(){try{a.texStorage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function D(){try{a.texStorage3D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function me(){try{a.texImage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function Te(){try{a.texImage3D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function V(z){ie.equals(z)===!1&&(a.scissor(z.x,z.y,z.z,z.w),ie.copy(z))}function B(z){ae.equals(z)===!1&&(a.viewport(z.x,z.y,z.z,z.w),ae.copy(z))}function ne(z,ye){let J=u.get(ye);J===void 0&&(J=new WeakMap,u.set(ye,J));let Pe=J.get(z);Pe===void 0&&(Pe=a.getUniformBlockIndex(ye,z.name),J.set(z,Pe))}function de(z,ye){const Pe=u.get(ye).get(z);h.get(z)!==Pe&&(a.uniformBlockBinding(ye,Pe,z.__bindingPointIndex),h.set(z,Pe))}function Ee(){a.disable(3042),a.disable(2884),a.disable(2929),a.disable(32823),a.disable(3089),a.disable(2960),a.disable(32926),a.blendEquation(32774),a.blendFunc(1,0),a.blendFuncSeparate(1,0,1,0),a.colorMask(!0,!0,!0,!0),a.clearColor(0,0,0,0),a.depthMask(!0),a.depthFunc(513),a.clearDepth(1),a.stencilMask(4294967295),a.stencilFunc(519,0,4294967295),a.stencilOp(7680,7680,7680),a.clearStencil(0),a.cullFace(1029),a.frontFace(2305),a.polygonOffset(0,0),a.activeTexture(33984),a.bindFramebuffer(36160,null),n===!0&&(a.bindFramebuffer(36009,null),a.bindFramebuffer(36008,null)),a.useProgram(null),a.lineWidth(1),a.scissor(0,0,a.canvas.width,a.canvas.height),a.viewport(0,0,a.canvas.width,a.canvas.height),f={},W=null,Z={},d={},p=new WeakMap,m=[],g=null,y=!1,x=null,b=null,v=null,M=null,T=null,C=null,_=null,E=!1,F=null,U=null,q=null,K=null,G=null,ie.set(0,0,a.canvas.width,a.canvas.height),ae.set(0,0,a.canvas.width,a.canvas.height),o.reset(),l.reset(),c.reset()}return{buffers:{color:o,depth:l,stencil:c},enable:ge,disable:be,bindFramebuffer:Fe,drawBuffers:xe,useProgram:Ve,setBlending:ve,setMaterial:ke,setFlipSided:Le,setCullFace:Ze,setLineWidth:He,setPolygonOffset:Ue,setScissorTest:gt,activeTexture:ot,bindTexture:k,unbindTexture:P,compressedTexImage2D:oe,texImage2D:me,texImage3D:Te,updateUBOMapping:ne,uniformBlockBinding:de,texStorage2D:je,texStorage3D:D,texSubImage2D:_e,texSubImage3D:Se,compressedTexSubImage2D:Ie,scissor:V,viewport:B,reset:Ee}}function U_(a,e,t,n,i,s,r){const o=i.isWebGL2,l=i.maxTextures,c=i.maxCubemapSize,h=i.maxTextureSize,u=i.maxSamples,f=e.has(\"WEBGL_multisampled_render_to_texture\")?e.get(\"WEBGL_multisampled_render_to_texture\"):null,d=/OculusBrowser/g.test(navigator.userAgent),p=new WeakMap;let m;const g=new WeakMap;let y=!1;try{y=typeof OffscreenCanvas!=\"undefined\"&&new OffscreenCanvas(1,1).getContext(\"2d\")!==null}catch{}function x(k,P){return y?new OffscreenCanvas(k,P):Co(\"canvas\")}function b(k,P,oe,_e){let Se=1;if((k.width>_e||k.height>_e)&&(Se=_e/Math.max(k.width,k.height)),Se<1||P===!0)if(typeof HTMLImageElement!=\"undefined\"&&k instanceof HTMLImageElement||typeof HTMLCanvasElement!=\"undefined\"&&k instanceof HTMLCanvasElement||typeof ImageBitmap!=\"undefined\"&&k instanceof ImageBitmap){const Ie=P?rl:Math.floor,je=Ie(Se*k.width),D=Ie(Se*k.height);m===void 0&&(m=x(je,D));const me=oe?x(je,D):m;return me.width=je,me.height=D,me.getContext(\"2d\").drawImage(k,0,0,je,D),console.warn(\"THREE.WebGLRenderer: Texture has been resized from (\"+k.width+\"x\"+k.height+\") to (\"+je+\"x\"+D+\").\"),me}else return\"data\"in k&&console.warn(\"THREE.WebGLRenderer: Image in DataTexture is too big (\"+k.width+\"x\"+k.height+\").\"),k;return k}function v(k){return nu(k.width)&&nu(k.height)}function M(k){return o?!1:k.wrapS!==Zt||k.wrapT!==Zt||k.minFilter!==Gt&&k.minFilter!==Ft}function T(k,P){return k.generateMipmaps&&P&&k.minFilter!==Gt&&k.minFilter!==Ft}function C(k){a.generateMipmap(k)}function _(k,P,oe,_e,Se=!1){if(o===!1)return P;if(k!==null){if(a[k]!==void 0)return a[k];console.warn(\"THREE.WebGLRenderer: Attempt to use non-existing WebGL internal format '\"+k+\"'\")}let Ie=P;return P===6403&&(oe===5126&&(Ie=33326),oe===5131&&(Ie=33325),oe===5121&&(Ie=33321)),P===33319&&(oe===5126&&(Ie=33328),oe===5131&&(Ie=33327),oe===5121&&(Ie=33323)),P===6408&&(oe===5126&&(Ie=34836),oe===5131&&(Ie=34842),oe===5121&&(Ie=_e===it&&Se===!1?35907:32856),oe===32819&&(Ie=32854),oe===32820&&(Ie=32855)),(Ie===33325||Ie===33326||Ie===33327||Ie===33328||Ie===34842||Ie===34836)&&e.get(\"EXT_color_buffer_float\"),Ie}function E(k,P,oe){return T(k,oe)===!0||k.isFramebufferTexture&&k.minFilter!==Gt&&k.minFilter!==Ft?Math.log2(Math.max(P.width,P.height))+1:k.mipmaps!==void 0&&k.mipmaps.length>0?k.mipmaps.length:k.isCompressedTexture&&Array.isArray(k.image)?P.mipmaps.length:1}function F(k){return k===Gt||k===Mo||k===So?9728:9729}function U(k){const P=k.target;P.removeEventListener(\"dispose\",U),K(P),P.isVideoTexture&&p.delete(P)}function q(k){const P=k.target;P.removeEventListener(\"dispose\",q),X(P)}function K(k){const P=n.get(k);if(P.__webglInit===void 0)return;const oe=k.source,_e=g.get(oe);if(_e){const Se=_e[P.__cacheKey];Se.usedTimes--,Se.usedTimes===0&&G(k),Object.keys(_e).length===0&&g.delete(oe)}n.remove(k)}function G(k){const P=n.get(k);a.deleteTexture(P.__webglTexture);const oe=k.source,_e=g.get(oe);delete _e[P.__cacheKey],r.memory.textures--}function X(k){const P=k.texture,oe=n.get(k),_e=n.get(P);if(_e.__webglTexture!==void 0&&(a.deleteTexture(_e.__webglTexture),r.memory.textures--),k.depthTexture&&k.depthTexture.dispose(),k.isWebGLCubeRenderTarget)for(let Se=0;Se<6;Se++)a.deleteFramebuffer(oe.__webglFramebuffer[Se]),oe.__webglDepthbuffer&&a.deleteRenderbuffer(oe.__webglDepthbuffer[Se]);else{if(a.deleteFramebuffer(oe.__webglFramebuffer),oe.__webglDepthbuffer&&a.deleteRenderbuffer(oe.__webglDepthbuffer),oe.__webglMultisampledFramebuffer&&a.deleteFramebuffer(oe.__webglMultisampledFramebuffer),oe.__webglColorRenderbuffer)for(let Se=0;Se<oe.__webglColorRenderbuffer.length;Se++)oe.__webglColorRenderbuffer[Se]&&a.deleteRenderbuffer(oe.__webglColorRenderbuffer[Se]);oe.__webglDepthRenderbuffer&&a.deleteRenderbuffer(oe.__webglDepthRenderbuffer)}if(k.isWebGLMultipleRenderTargets)for(let Se=0,Ie=P.length;Se<Ie;Se++){const je=n.get(P[Se]);je.__webglTexture&&(a.deleteTexture(je.__webglTexture),r.memory.textures--),n.remove(P[Se])}n.remove(P),n.remove(k)}let O=0;function j(){O=0}function Y(){const k=O;return k>=l&&console.warn(\"THREE.WebGLTextures: Trying to use \"+k+\" texture units while this GPU supports only \"+l),O+=1,k}function W(k){const P=[];return P.push(k.wrapS),P.push(k.wrapT),P.push(k.magFilter),P.push(k.minFilter),P.push(k.anisotropy),P.push(k.internalFormat),P.push(k.format),P.push(k.type),P.push(k.generateMipmaps),P.push(k.premultiplyAlpha),P.push(k.flipY),P.push(k.unpackAlignment),P.push(k.encoding),P.join()}function Z(k,P){const oe=n.get(k);if(k.isVideoTexture&&gt(k),k.isRenderTargetTexture===!1&&k.version>0&&oe.__version!==k.version){const _e=k.image;if(_e===null)console.warn(\"THREE.WebGLRenderer: Texture marked for update but no image data found.\");else if(_e.complete===!1)console.warn(\"THREE.WebGLRenderer: Texture marked for update but image is incomplete\");else{be(oe,k,P);return}}t.activeTexture(33984+P),t.bindTexture(3553,oe.__webglTexture)}function ee(k,P){const oe=n.get(k);if(k.version>0&&oe.__version!==k.version){be(oe,k,P);return}t.activeTexture(33984+P),t.bindTexture(35866,oe.__webglTexture)}function Q(k,P){const oe=n.get(k);if(k.version>0&&oe.__version!==k.version){be(oe,k,P);return}t.activeTexture(33984+P),t.bindTexture(32879,oe.__webglTexture)}function ie(k,P){const oe=n.get(k);if(k.version>0&&oe.__version!==k.version){Fe(oe,k,P);return}t.activeTexture(33984+P),t.bindTexture(34067,oe.__webglTexture)}const ae={[fn]:10497,[Zt]:33071,[wr]:33648},re={[Gt]:9728,[Mo]:9984,[So]:9986,[Ft]:9729,[yl]:9985,[oi]:9987};function H(k,P,oe){if(oe?(a.texParameteri(k,10242,ae[P.wrapS]),a.texParameteri(k,10243,ae[P.wrapT]),(k===32879||k===35866)&&a.texParameteri(k,32882,ae[P.wrapR]),a.texParameteri(k,10240,re[P.magFilter]),a.texParameteri(k,10241,re[P.minFilter])):(a.texParameteri(k,10242,33071),a.texParameteri(k,10243,33071),(k===32879||k===35866)&&a.texParameteri(k,32882,33071),(P.wrapS!==Zt||P.wrapT!==Zt)&&console.warn(\"THREE.WebGLRenderer: Texture is not power of two. Texture.wrapS and Texture.wrapT should be set to THREE.ClampToEdgeWrapping.\"),a.texParameteri(k,10240,F(P.magFilter)),a.texParameteri(k,10241,F(P.minFilter)),P.minFilter!==Gt&&P.minFilter!==Ft&&console.warn(\"THREE.WebGLRenderer: Texture is not power of two. Texture.minFilter should be set to THREE.NearestFilter or THREE.LinearFilter.\")),e.has(\"EXT_texture_filter_anisotropic\")===!0){const _e=e.get(\"EXT_texture_filter_anisotropic\");if(P.type===xi&&e.has(\"OES_texture_float_linear\")===!1||o===!1&&P.type===Mr&&e.has(\"OES_texture_half_float_linear\")===!1)return;(P.anisotropy>1||n.get(P).__currentAnisotropy)&&(a.texParameterf(k,_e.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(P.anisotropy,i.getMaxAnisotropy())),n.get(P).__currentAnisotropy=P.anisotropy)}}function ge(k,P){let oe=!1;k.__webglInit===void 0&&(k.__webglInit=!0,P.addEventListener(\"dispose\",U));const _e=P.source;let Se=g.get(_e);Se===void 0&&(Se={},g.set(_e,Se));const Ie=W(P);if(Ie!==k.__cacheKey){Se[Ie]===void 0&&(Se[Ie]={texture:a.createTexture(),usedTimes:0},r.memory.textures++,oe=!0),Se[Ie].usedTimes++;const je=Se[k.__cacheKey];je!==void 0&&(Se[k.__cacheKey].usedTimes--,je.usedTimes===0&&G(P)),k.__cacheKey=Ie,k.__webglTexture=Se[Ie].texture}return oe}function be(k,P,oe){let _e=3553;P.isDataArrayTexture&&(_e=35866),P.isData3DTexture&&(_e=32879);const Se=ge(k,P),Ie=P.source;if(t.activeTexture(33984+oe),t.bindTexture(_e,k.__webglTexture),Ie.version!==Ie.__currentVersion||Se===!0){a.pixelStorei(37440,P.flipY),a.pixelStorei(37441,P.premultiplyAlpha),a.pixelStorei(3317,P.unpackAlignment),a.pixelStorei(37443,0);const je=M(P)&&v(P.image)===!1;let D=b(P.image,je,!1,h);D=ot(P,D);const me=v(D)||o,Te=s.convert(P.format,P.encoding);let V=s.convert(P.type),B=_(P.internalFormat,Te,V,P.encoding,P.isVideoTexture);H(_e,P,me);let ne;const de=P.mipmaps,Ee=o&&P.isVideoTexture!==!0,z=Ie.__currentVersion===void 0||Se===!0,ye=E(P,D,me);if(P.isDepthTexture)B=6402,o?P.type===xi?B=36012:P.type===Hi?B=33190:P.type===As?B=35056:B=33189:P.type===xi&&console.error(\"WebGLRenderer: Floating point depth texture requires WebGL2.\"),P.format===Xi&&B===6402&&P.type!==Tu&&P.type!==Hi&&(console.warn(\"THREE.WebGLRenderer: Use UnsignedShortType or UnsignedIntType for DepthFormat DepthTexture.\"),P.type=Hi,V=s.convert(P.type)),P.format===Rs&&B===6402&&(B=34041,P.type!==As&&(console.warn(\"THREE.WebGLRenderer: Use UnsignedInt248Type for DepthStencilFormat DepthTexture.\"),P.type=As,V=s.convert(P.type))),z&&(Ee?t.texStorage2D(3553,1,B,D.width,D.height):t.texImage2D(3553,0,B,D.width,D.height,0,Te,V,null));else if(P.isDataTexture)if(de.length>0&&me){Ee&&z&&t.texStorage2D(3553,ye,B,de[0].width,de[0].height);for(let J=0,Pe=de.length;J<Pe;J++)ne=de[J],Ee?t.texSubImage2D(3553,J,0,0,ne.width,ne.height,Te,V,ne.data):t.texImage2D(3553,J,B,ne.width,ne.height,0,Te,V,ne.data);P.generateMipmaps=!1}else Ee?(z&&t.texStorage2D(3553,ye,B,D.width,D.height),t.texSubImage2D(3553,0,0,0,D.width,D.height,Te,V,D.data)):t.texImage2D(3553,0,B,D.width,D.height,0,Te,V,D.data);else if(P.isCompressedTexture){Ee&&z&&t.texStorage2D(3553,ye,B,de[0].width,de[0].height);for(let J=0,Pe=de.length;J<Pe;J++)ne=de[J],P.format!==An?Te!==null?Ee?t.compressedTexSubImage2D(3553,J,0,0,ne.width,ne.height,Te,ne.data):t.compressedTexImage2D(3553,J,B,ne.width,ne.height,0,ne.data):console.warn(\"THREE.WebGLRenderer: Attempt to load unsupported compressed texture format in .uploadTexture()\"):Ee?t.texSubImage2D(3553,J,0,0,ne.width,ne.height,Te,V,ne.data):t.texImage2D(3553,J,B,ne.width,ne.height,0,Te,V,ne.data)}else if(P.isDataArrayTexture)Ee?(z&&t.texStorage3D(35866,ye,B,D.width,D.height,D.depth),t.texSubImage3D(35866,0,0,0,0,D.width,D.height,D.depth,Te,V,D.data)):t.texImage3D(35866,0,B,D.width,D.height,D.depth,0,Te,V,D.data);else if(P.isData3DTexture)Ee?(z&&t.texStorage3D(32879,ye,B,D.width,D.height,D.depth),t.texSubImage3D(32879,0,0,0,0,D.width,D.height,D.depth,Te,V,D.data)):t.texImage3D(32879,0,B,D.width,D.height,D.depth,0,Te,V,D.data);else if(P.isFramebufferTexture){if(z)if(Ee)t.texStorage2D(3553,ye,B,D.width,D.height);else{let J=D.width,Pe=D.height;for(let Ae=0;Ae<ye;Ae++)t.texImage2D(3553,Ae,B,J,Pe,0,Te,V,null),J>>=1,Pe>>=1}}else if(de.length>0&&me){Ee&&z&&t.texStorage2D(3553,ye,B,de[0].width,de[0].height);for(let J=0,Pe=de.length;J<Pe;J++)ne=de[J],Ee?t.texSubImage2D(3553,J,0,0,Te,V,ne):t.texImage2D(3553,J,B,Te,V,ne);P.generateMipmaps=!1}else Ee?(z&&t.texStorage2D(3553,ye,B,D.width,D.height),t.texSubImage2D(3553,0,0,0,Te,V,D)):t.texImage2D(3553,0,B,Te,V,D);T(P,me)&&C(_e),Ie.__currentVersion=Ie.version,P.onUpdate&&P.onUpdate(P)}k.__version=P.version}function Fe(k,P,oe){if(P.image.length!==6)return;const _e=ge(k,P),Se=P.source;if(t.activeTexture(33984+oe),t.bindTexture(34067,k.__webglTexture),Se.version!==Se.__currentVersion||_e===!0){a.pixelStorei(37440,P.flipY),a.pixelStorei(37441,P.premultiplyAlpha),a.pixelStorei(3317,P.unpackAlignment),a.pixelStorei(37443,0);const Ie=P.isCompressedTexture||P.image[0].isCompressedTexture,je=P.image[0]&&P.image[0].isDataTexture,D=[];for(let J=0;J<6;J++)!Ie&&!je?D[J]=b(P.image[J],!1,!0,c):D[J]=je?P.image[J].image:P.image[J],D[J]=ot(P,D[J]);const me=D[0],Te=v(me)||o,V=s.convert(P.format,P.encoding),B=s.convert(P.type),ne=_(P.internalFormat,V,B,P.encoding),de=o&&P.isVideoTexture!==!0,Ee=Se.__currentVersion===void 0||_e===!0;let z=E(P,me,Te);H(34067,P,Te);let ye;if(Ie){de&&Ee&&t.texStorage2D(34067,z,ne,me.width,me.height);for(let J=0;J<6;J++){ye=D[J].mipmaps;for(let Pe=0;Pe<ye.length;Pe++){const Ae=ye[Pe];P.format!==An?V!==null?de?t.compressedTexSubImage2D(34069+J,Pe,0,0,Ae.width,Ae.height,V,Ae.data):t.compressedTexImage2D(34069+J,Pe,ne,Ae.width,Ae.height,0,Ae.data):console.warn(\"THREE.WebGLRenderer: Attempt to load unsupported compressed texture format in .setTextureCube()\"):de?t.texSubImage2D(34069+J,Pe,0,0,Ae.width,Ae.height,V,B,Ae.data):t.texImage2D(34069+J,Pe,ne,Ae.width,Ae.height,0,V,B,Ae.data)}}}else{ye=P.mipmaps,de&&Ee&&(ye.length>0&&z++,t.texStorage2D(34067,z,ne,D[0].width,D[0].height));for(let J=0;J<6;J++)if(je){de?t.texSubImage2D(34069+J,0,0,0,D[J].width,D[J].height,V,B,D[J].data):t.texImage2D(34069+J,0,ne,D[J].width,D[J].height,0,V,B,D[J].data);for(let Pe=0;Pe<ye.length;Pe++){const $e=ye[Pe].image[J].image;de?t.texSubImage2D(34069+J,Pe+1,0,0,$e.width,$e.height,V,B,$e.data):t.texImage2D(34069+J,Pe+1,ne,$e.width,$e.height,0,V,B,$e.data)}}else{de?t.texSubImage2D(34069+J,0,0,0,V,B,D[J]):t.texImage2D(34069+J,0,ne,V,B,D[J]);for(let Pe=0;Pe<ye.length;Pe++){const Ae=ye[Pe];de?t.texSubImage2D(34069+J,Pe+1,0,0,V,B,Ae.image[J]):t.texImage2D(34069+J,Pe+1,ne,V,B,Ae.image[J])}}}T(P,Te)&&C(34067),Se.__currentVersion=Se.version,P.onUpdate&&P.onUpdate(P)}k.__version=P.version}function xe(k,P,oe,_e,Se){const Ie=s.convert(oe.format,oe.encoding),je=s.convert(oe.type),D=_(oe.internalFormat,Ie,je,oe.encoding);n.get(P).__hasExternalTextures||(Se===32879||Se===35866?t.texImage3D(Se,0,D,P.width,P.height,P.depth,0,Ie,je,null):t.texImage2D(Se,0,D,P.width,P.height,0,Ie,je,null)),t.bindFramebuffer(36160,k),Ue(P)?f.framebufferTexture2DMultisampleEXT(36160,_e,Se,n.get(oe).__webglTexture,0,He(P)):a.framebufferTexture2D(36160,_e,Se,n.get(oe).__webglTexture,0),t.bindFramebuffer(36160,null)}function Ve(k,P,oe){if(a.bindRenderbuffer(36161,k),P.depthBuffer&&!P.stencilBuffer){let _e=33189;if(oe||Ue(P)){const Se=P.depthTexture;Se&&Se.isDepthTexture&&(Se.type===xi?_e=36012:Se.type===Hi&&(_e=33190));const Ie=He(P);Ue(P)?f.renderbufferStorageMultisampleEXT(36161,Ie,_e,P.width,P.height):a.renderbufferStorageMultisample(36161,Ie,_e,P.width,P.height)}else a.renderbufferStorage(36161,_e,P.width,P.height);a.framebufferRenderbuffer(36160,36096,36161,k)}else if(P.depthBuffer&&P.stencilBuffer){const _e=He(P);oe&&Ue(P)===!1?a.renderbufferStorageMultisample(36161,_e,35056,P.width,P.height):Ue(P)?f.renderbufferStorageMultisampleEXT(36161,_e,35056,P.width,P.height):a.renderbufferStorage(36161,34041,P.width,P.height),a.framebufferRenderbuffer(36160,33306,36161,k)}else{const _e=P.isWebGLMultipleRenderTargets===!0?P.texture:[P.texture];for(let Se=0;Se<_e.length;Se++){const Ie=_e[Se],je=s.convert(Ie.format,Ie.encoding),D=s.convert(Ie.type),me=_(Ie.internalFormat,je,D,Ie.encoding),Te=He(P);oe&&Ue(P)===!1?a.renderbufferStorageMultisample(36161,Te,me,P.width,P.height):Ue(P)?f.renderbufferStorageMultisampleEXT(36161,Te,me,P.width,P.height):a.renderbufferStorage(36161,me,P.width,P.height)}}a.bindRenderbuffer(36161,null)}function ue(k,P){if(P&&P.isWebGLCubeRenderTarget)throw new Error(\"Depth Texture with cube render targets is not supported\");if(t.bindFramebuffer(36160,k),!(P.depthTexture&&P.depthTexture.isDepthTexture))throw new Error(\"renderTarget.depthTexture must be an instance of THREE.DepthTexture\");(!n.get(P.depthTexture).__webglTexture||P.depthTexture.image.width!==P.width||P.depthTexture.image.height!==P.height)&&(P.depthTexture.image.width=P.width,P.depthTexture.image.height=P.height,P.depthTexture.needsUpdate=!0),Z(P.depthTexture,0);const _e=n.get(P.depthTexture).__webglTexture,Se=He(P);if(P.depthTexture.format===Xi)Ue(P)?f.framebufferTexture2DMultisampleEXT(36160,36096,3553,_e,0,Se):a.framebufferTexture2D(36160,36096,3553,_e,0);else if(P.depthTexture.format===Rs)Ue(P)?f.framebufferTexture2DMultisampleEXT(36160,33306,3553,_e,0,Se):a.framebufferTexture2D(36160,33306,3553,_e,0);else throw new Error(\"Unknown depthTexture format\")}function ce(k){const P=n.get(k),oe=k.isWebGLCubeRenderTarget===!0;if(k.depthTexture&&!P.__autoAllocateDepthBuffer){if(oe)throw new Error(\"target.depthTexture not supported in Cube render targets\");ue(P.__webglFramebuffer,k)}else if(oe){P.__webglDepthbuffer=[];for(let _e=0;_e<6;_e++)t.bindFramebuffer(36160,P.__webglFramebuffer[_e]),P.__webglDepthbuffer[_e]=a.createRenderbuffer(),Ve(P.__webglDepthbuffer[_e],k,!1)}else t.bindFramebuffer(36160,P.__webglFramebuffer),P.__webglDepthbuffer=a.createRenderbuffer(),Ve(P.__webglDepthbuffer,k,!1);t.bindFramebuffer(36160,null)}function ve(k,P,oe){const _e=n.get(k);P!==void 0&&xe(_e.__webglFramebuffer,k,k.texture,36064,3553),oe!==void 0&&ce(k)}function ke(k){const P=k.texture,oe=n.get(k),_e=n.get(P);k.addEventListener(\"dispose\",q),k.isWebGLMultipleRenderTargets!==!0&&(_e.__webglTexture===void 0&&(_e.__webglTexture=a.createTexture()),_e.__version=P.version,r.memory.textures++);const Se=k.isWebGLCubeRenderTarget===!0,Ie=k.isWebGLMultipleRenderTargets===!0,je=v(k)||o;if(Se){oe.__webglFramebuffer=[];for(let D=0;D<6;D++)oe.__webglFramebuffer[D]=a.createFramebuffer()}else{if(oe.__webglFramebuffer=a.createFramebuffer(),Ie)if(i.drawBuffers){const D=k.texture;for(let me=0,Te=D.length;me<Te;me++){const V=n.get(D[me]);V.__webglTexture===void 0&&(V.__webglTexture=a.createTexture(),r.memory.textures++)}}else console.warn(\"THREE.WebGLRenderer: WebGLMultipleRenderTargets can only be used with WebGL2 or WEBGL_draw_buffers extension.\");if(o&&k.samples>0&&Ue(k)===!1){const D=Ie?P:[P];oe.__webglMultisampledFramebuffer=a.createFramebuffer(),oe.__webglColorRenderbuffer=[],t.bindFramebuffer(36160,oe.__webglMultisampledFramebuffer);for(let me=0;me<D.length;me++){const Te=D[me];oe.__webglColorRenderbuffer[me]=a.createRenderbuffer(),a.bindRenderbuffer(36161,oe.__webglColorRenderbuffer[me]);const V=s.convert(Te.format,Te.encoding),B=s.convert(Te.type),ne=_(Te.internalFormat,V,B,Te.encoding),de=He(k);a.renderbufferStorageMultisample(36161,de,ne,k.width,k.height),a.framebufferRenderbuffer(36160,36064+me,36161,oe.__webglColorRenderbuffer[me])}a.bindRenderbuffer(36161,null),k.depthBuffer&&(oe.__webglDepthRenderbuffer=a.createRenderbuffer(),Ve(oe.__webglDepthRenderbuffer,k,!0)),t.bindFramebuffer(36160,null)}}if(Se){t.bindTexture(34067,_e.__webglTexture),H(34067,P,je);for(let D=0;D<6;D++)xe(oe.__webglFramebuffer[D],k,P,36064,34069+D);T(P,je)&&C(34067),t.unbindTexture()}else if(Ie){const D=k.texture;for(let me=0,Te=D.length;me<Te;me++){const V=D[me],B=n.get(V);t.bindTexture(3553,B.__webglTexture),H(3553,V,je),xe(oe.__webglFramebuffer,k,V,36064+me,3553),T(V,je)&&C(3553)}t.unbindTexture()}else{let D=3553;(k.isWebGL3DRenderTarget||k.isWebGLArrayRenderTarget)&&(o?D=k.isWebGL3DRenderTarget?32879:35866:console.error(\"THREE.WebGLTextures: THREE.Data3DTexture and THREE.DataArrayTexture only supported with WebGL2.\")),t.bindTexture(D,_e.__webglTexture),H(D,P,je),xe(oe.__webglFramebuffer,k,P,36064,D),T(P,je)&&C(D),t.unbindTexture()}k.depthBuffer&&ce(k)}function Le(k){const P=v(k)||o,oe=k.isWebGLMultipleRenderTargets===!0?k.texture:[k.texture];for(let _e=0,Se=oe.length;_e<Se;_e++){const Ie=oe[_e];if(T(Ie,P)){const je=k.isWebGLCubeRenderTarget?34067:3553,D=n.get(Ie).__webglTexture;t.bindTexture(je,D),C(je),t.unbindTexture()}}}function Ze(k){if(o&&k.samples>0&&Ue(k)===!1){const P=k.isWebGLMultipleRenderTargets?k.texture:[k.texture],oe=k.width,_e=k.height;let Se=16384;const Ie=[],je=k.stencilBuffer?33306:36096,D=n.get(k),me=k.isWebGLMultipleRenderTargets===!0;if(me)for(let Te=0;Te<P.length;Te++)t.bindFramebuffer(36160,D.__webglMultisampledFramebuffer),a.framebufferRenderbuffer(36160,36064+Te,36161,null),t.bindFramebuffer(36160,D.__webglFramebuffer),a.framebufferTexture2D(36009,36064+Te,3553,null,0);t.bindFramebuffer(36008,D.__webglMultisampledFramebuffer),t.bindFramebuffer(36009,D.__webglFramebuffer);for(let Te=0;Te<P.length;Te++){Ie.push(36064+Te),k.depthBuffer&&Ie.push(je);const V=D.__ignoreDepthValues!==void 0?D.__ignoreDepthValues:!1;if(V===!1&&(k.depthBuffer&&(Se|=256),k.stencilBuffer&&(Se|=1024)),me&&a.framebufferRenderbuffer(36008,36064,36161,D.__webglColorRenderbuffer[Te]),V===!0&&(a.invalidateFramebuffer(36008,[je]),a.invalidateFramebuffer(36009,[je])),me){const B=n.get(P[Te]).__webglTexture;a.framebufferTexture2D(36009,36064,3553,B,0)}a.blitFramebuffer(0,0,oe,_e,0,0,oe,_e,Se,9728),d&&a.invalidateFramebuffer(36008,Ie)}if(t.bindFramebuffer(36008,null),t.bindFramebuffer(36009,null),me)for(let Te=0;Te<P.length;Te++){t.bindFramebuffer(36160,D.__webglMultisampledFramebuffer),a.framebufferRenderbuffer(36160,36064+Te,36161,D.__webglColorRenderbuffer[Te]);const V=n.get(P[Te]).__webglTexture;t.bindFramebuffer(36160,D.__webglFramebuffer),a.framebufferTexture2D(36009,36064+Te,3553,V,0)}t.bindFramebuffer(36009,D.__webglMultisampledFramebuffer)}}function He(k){return Math.min(u,k.samples)}function Ue(k){const P=n.get(k);return o&&k.samples>0&&e.has(\"WEBGL_multisampled_render_to_texture\")===!0&&P.__useRenderToTexture!==!1}function gt(k){const P=r.render.frame;p.get(k)!==P&&(p.set(k,P),k.update())}function ot(k,P){const oe=k.encoding,_e=k.format,Se=k.type;return k.isCompressedTexture===!0||k.isVideoTexture===!0||k.format===sl||oe!==Mi&&(oe===it?o===!1?e.has(\"EXT_sRGB\")===!0&&_e===An?(k.format=sl,k.minFilter=Ft,k.generateMipmaps=!1):P=Ru.sRGBToLinear(P):(_e!==An||Se!==Ki)&&console.warn(\"THREE.WebGLTextures: sRGB encoded textures have to use RGBAFormat and UnsignedByteType.\"):console.error(\"THREE.WebGLTextures: Unsupported texture encoding:\",oe)),P}this.allocateTextureUnit=Y,this.resetTextureUnits=j,this.setTexture2D=Z,this.setTexture2DArray=ee,this.setTexture3D=Q,this.setTextureCube=ie,this.rebindTextures=ve,this.setupRenderTarget=ke,this.updateRenderTargetMipmap=Le,this.updateMultisampleRenderTarget=Ze,this.setupDepthRenderbuffer=ce,this.setupFrameBufferTexture=xe,this.useMultisampledRTT=Ue}function bp(a,e,t){const n=t.isWebGL2;function i(s,r=null){let o;if(s===Ki)return 5121;if(s===Wd)return 32819;if(s===qd)return 32820;if(s===Gd)return 5120;if(s===Vd)return 5122;if(s===Tu)return 5123;if(s===Hd)return 5124;if(s===Hi)return 5125;if(s===xi)return 5126;if(s===Mr)return n?5131:(o=e.get(\"OES_texture_half_float\"),o!==null?o.HALF_FLOAT_OES:null);if(s===Xd)return 6406;if(s===An)return 6408;if(s===Yd)return 6409;if(s===Zd)return 6410;if(s===Xi)return 6402;if(s===Rs)return 34041;if(s===Kd)return 6403;if(s===jd)return console.warn(\"THREE.WebGLRenderer: THREE.RGBFormat has been removed. Use THREE.RGBAFormat instead. https://github.com/mrdoob/three.js/pull/23228\"),6408;if(s===sl)return o=e.get(\"EXT_sRGB\"),o!==null?o.SRGB_ALPHA_EXT:null;if(s===Jd)return 36244;if(s===$d)return 33319;if(s===Qd)return 33320;if(s===ep)return 36249;if(s===fo||s===Ya||s===po||s===mo)if(r===it)if(o=e.get(\"WEBGL_compressed_texture_s3tc_srgb\"),o!==null){if(s===fo)return o.COMPRESSED_SRGB_S3TC_DXT1_EXT;if(s===Ya)return o.COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT;if(s===po)return o.COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT;if(s===mo)return o.COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT}else return null;else if(o=e.get(\"WEBGL_compressed_texture_s3tc\"),o!==null){if(s===fo)return o.COMPRESSED_RGB_S3TC_DXT1_EXT;if(s===Ya)return o.COMPRESSED_RGBA_S3TC_DXT1_EXT;if(s===po)return o.COMPRESSED_RGBA_S3TC_DXT3_EXT;if(s===mo)return o.COMPRESSED_RGBA_S3TC_DXT5_EXT}else return null;if(s===Fc||s===Nc||s===kc||s===Oc)if(o=e.get(\"WEBGL_compressed_texture_pvrtc\"),o!==null){if(s===Fc)return o.COMPRESSED_RGB_PVRTC_4BPPV1_IMG;if(s===Nc)return o.COMPRESSED_RGB_PVRTC_2BPPV1_IMG;if(s===kc)return o.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG;if(s===Oc)return o.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG}else return null;if(s===Au)return o=e.get(\"WEBGL_compressed_texture_etc1\"),o!==null?o.COMPRESSED_RGB_ETC1_WEBGL:null;if(s===Bc||s===zc)if(o=e.get(\"WEBGL_compressed_texture_etc\"),o!==null){if(s===Bc)return r===it?o.COMPRESSED_SRGB8_ETC2:o.COMPRESSED_RGB8_ETC2;if(s===zc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:o.COMPRESSED_RGBA8_ETC2_EAC}else return null;if(s===Uc||s===Gc||s===Vc||s===Hc||s===Wc||s===qc||s===Xc||s===jc||s===Yc||s===Zc||s===Kc||s===Jc||s===$c||s===Qc)if(o=e.get(\"WEBGL_compressed_texture_astc\"),o!==null){if(s===Uc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR:o.COMPRESSED_RGBA_ASTC_4x4_KHR;if(s===Gc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR:o.COMPRESSED_RGBA_ASTC_5x4_KHR;if(s===Vc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR:o.COMPRESSED_RGBA_ASTC_5x5_KHR;if(s===Hc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR:o.COMPRESSED_RGBA_ASTC_6x5_KHR;if(s===Wc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR:o.COMPRESSED_RGBA_ASTC_6x6_KHR;if(s===qc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR:o.COMPRESSED_RGBA_ASTC_8x5_KHR;if(s===Xc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR:o.COMPRESSED_RGBA_ASTC_8x6_KHR;if(s===jc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR:o.COMPRESSED_RGBA_ASTC_8x8_KHR;if(s===Yc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR:o.COMPRESSED_RGBA_ASTC_10x5_KHR;if(s===Zc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR:o.COMPRESSED_RGBA_ASTC_10x6_KHR;if(s===Kc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR:o.COMPRESSED_RGBA_ASTC_10x8_KHR;if(s===Jc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR:o.COMPRESSED_RGBA_ASTC_10x10_KHR;if(s===$c)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR:o.COMPRESSED_RGBA_ASTC_12x10_KHR;if(s===Qc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR:o.COMPRESSED_RGBA_ASTC_12x12_KHR}else return null;if(s===eu)if(o=e.get(\"EXT_texture_compression_bptc\"),o!==null){if(s===eu)return r===it?o.COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT:o.COMPRESSED_RGBA_BPTC_UNORM_EXT}else return null;return s===As?n?34042:(o=e.get(\"WEBGL_depth_texture\"),o!==null?o.UNSIGNED_INT_24_8_WEBGL:null):a[s]!==void 0?a[s]:null}return{convert:i}}class wp extends Ot{constructor(e=[]){super(),this.isArrayCamera=!0,this.cameras=e}}class pn extends pt{constructor(){super(),this.isGroup=!0,this.type=\"Group\"}}const G_={type:\"move\"};class hc{constructor(){this._targetRay=null,this._grip=null,this._hand=null}getHandSpace(){return this._hand===null&&(this._hand=new pn,this._hand.matrixAutoUpdate=!1,this._hand.visible=!1,this._hand.joints={},this._hand.inputState={pinching:!1}),this._hand}getTargetRaySpace(){return this._targetRay===null&&(this._targetRay=new pn,this._targetRay.matrixAutoUpdate=!1,this._targetRay.visible=!1,this._targetRay.hasLinearVelocity=!1,this._targetRay.linearVelocity=new I,this._targetRay.hasAngularVelocity=!1,this._targetRay.angularVelocity=new I),this._targetRay}getGripSpace(){return this._grip===null&&(this._grip=new pn,this._grip.matrixAutoUpdate=!1,this._grip.visible=!1,this._grip.hasLinearVelocity=!1,this._grip.linearVelocity=new I,this._grip.hasAngularVelocity=!1,this._grip.angularVelocity=new I),this._grip}dispatchEvent(e){return this._targetRay!==null&&this._targetRay.dispatchEvent(e),this._grip!==null&&this._grip.dispatchEvent(e),this._hand!==null&&this._hand.dispatchEvent(e),this}disconnect(e){return this.dispatchEvent({type:\"disconnected\",data:e}),this._targetRay!==null&&(this._targetRay.visible=!1),this._grip!==null&&(this._grip.visible=!1),this._hand!==null&&(this._hand.visible=!1),this}update(e,t,n){let i=null,s=null,r=null;const o=this._targetRay,l=this._grip,c=this._hand;if(e&&t.session.visibilityState!==\"visible-blurred\"){if(c&&e.hand){r=!0;for(const m of e.hand.values()){const g=t.getJointPose(m,n);if(c.joints[m.jointName]===void 0){const x=new pn;x.matrixAutoUpdate=!1,x.visible=!1,c.joints[m.jointName]=x,c.add(x)}const y=c.joints[m.jointName];g!==null&&(y.matrix.fromArray(g.transform.matrix),y.matrix.decompose(y.position,y.rotation,y.scale),y.jointRadius=g.radius),y.visible=g!==null}const h=c.joints[\"index-finger-tip\"],u=c.joints[\"thumb-tip\"],f=h.position.distanceTo(u.position),d=.02,p=.005;c.inputState.pinching&&f>d+p?(c.inputState.pinching=!1,this.dispatchEvent({type:\"pinchend\",handedness:e.handedness,target:this})):!c.inputState.pinching&&f<=d-p&&(c.inputState.pinching=!0,this.dispatchEvent({type:\"pinchstart\",handedness:e.handedness,target:this}))}else l!==null&&e.gripSpace&&(s=t.getPose(e.gripSpace,n),s!==null&&(l.matrix.fromArray(s.transform.matrix),l.matrix.decompose(l.position,l.rotation,l.scale),s.linearVelocity?(l.hasLinearVelocity=!0,l.linearVelocity.copy(s.linearVelocity)):l.hasLinearVelocity=!1,s.angularVelocity?(l.hasAngularVelocity=!0,l.angularVelocity.copy(s.angularVelocity)):l.hasAngularVelocity=!1));o!==null&&(i=t.getPose(e.targetRaySpace,n),i===null&&s!==null&&(i=s),i!==null&&(o.matrix.fromArray(i.transform.matrix),o.matrix.decompose(o.position,o.rotation,o.scale),i.linearVelocity?(o.hasLinearVelocity=!0,o.linearVelocity.copy(i.linearVelocity)):o.hasLinearVelocity=!1,i.angularVelocity?(o.hasAngularVelocity=!0,o.angularVelocity.copy(i.angularVelocity)):o.hasAngularVelocity=!1,this.dispatchEvent(G_)))}return o!==null&&(o.visible=i!==null),l!==null&&(l.visible=s!==null),c!==null&&(c.visible=r!==null),this}}class Mp extends It{constructor(e,t,n,i,s,r,o,l,c,h){if(h=h!==void 0?h:Xi,h!==Xi&&h!==Rs)throw new Error(\"DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat\");n===void 0&&h===Xi&&(n=Hi),n===void 0&&h===Rs&&(n=As),super(null,i,s,r,o,l,h,n,c),this.isDepthTexture=!0,this.image={width:e,height:t},this.magFilter=o!==void 0?o:Gt,this.minFilter=l!==void 0?l:Gt,this.flipY=!1,this.generateMipmaps=!1}}class V_ extends ai{constructor(e,t){super();const n=this;let i=null,s=1,r=null,o=\"local-floor\",l=null,c=null,h=null,u=null,f=null,d=null;const p=t.getContextAttributes();let m=null,g=null;const y=[],x=[],b=new Ot;b.layers.enable(1),b.viewport=new dt;const v=new Ot;v.layers.enable(2),v.viewport=new dt;const M=[b,v],T=new wp;T.layers.enable(1),T.layers.enable(2);let C=null,_=null;this.cameraAutoUpdate=!0,this.enabled=!1,this.isPresenting=!1,this.getController=function(W){let Z=y[W];return Z===void 0&&(Z=new hc,y[W]=Z),Z.getTargetRaySpace()},this.getControllerGrip=function(W){let Z=y[W];return Z===void 0&&(Z=new hc,y[W]=Z),Z.getGripSpace()},this.getHand=function(W){let Z=y[W];return Z===void 0&&(Z=new hc,y[W]=Z),Z.getHandSpace()};function E(W){const Z=x.indexOf(W.inputSource);if(Z===-1)return;const ee=y[Z];ee!==void 0&&ee.dispatchEvent({type:W.type,data:W.inputSource})}function F(){i.removeEventListener(\"select\",E),i.removeEventListener(\"selectstart\",E),i.removeEventListener(\"selectend\",E),i.removeEventListener(\"squeeze\",E),i.removeEventListener(\"squeezestart\",E),i.removeEventListener(\"squeezeend\",E),i.removeEventListener(\"end\",F),i.removeEventListener(\"inputsourceschange\",U);for(let W=0;W<y.length;W++){const Z=x[W];Z!==null&&(x[W]=null,y[W].disconnect(Z))}C=null,_=null,e.setRenderTarget(m),f=null,u=null,h=null,i=null,g=null,Y.stop(),n.isPresenting=!1,n.dispatchEvent({type:\"sessionend\"})}this.setFramebufferScaleFactor=function(W){s=W,n.isPresenting===!0&&console.warn(\"THREE.WebXRManager: Cannot change framebuffer scale while presenting.\")},this.setReferenceSpaceType=function(W){o=W,n.isPresenting===!0&&console.warn(\"THREE.WebXRManager: Cannot change reference space type while presenting.\")},this.getReferenceSpace=function(){return l||r},this.setReferenceSpace=function(W){l=W},this.getBaseLayer=function(){return u!==null?u:f},this.getBinding=function(){return h},this.getFrame=function(){return d},this.getSession=function(){return i},this.setSession=async function(W){if(i=W,i!==null){if(m=e.getRenderTarget(),i.addEventListener(\"select\",E),i.addEventListener(\"selectstart\",E),i.addEventListener(\"selectend\",E),i.addEventListener(\"squeeze\",E),i.addEventListener(\"squeezestart\",E),i.addEventListener(\"squeezeend\",E),i.addEventListener(\"end\",F),i.addEventListener(\"inputsourceschange\",U),p.xrCompatible!==!0&&await t.makeXRCompatible(),i.renderState.layers===void 0||e.capabilities.isWebGL2===!1){const Z={antialias:i.renderState.layers===void 0?p.antialias:!0,alpha:p.alpha,depth:p.depth,stencil:p.stencil,framebufferScaleFactor:s};f=new XRWebGLLayer(i,t,Z),i.updateRenderState({baseLayer:f}),g=new zn(f.framebufferWidth,f.framebufferHeight,{format:An,type:Ki,encoding:e.outputEncoding})}else{let Z=null,ee=null,Q=null;p.depth&&(Q=p.stencil?35056:33190,Z=p.stencil?Rs:Xi,ee=p.stencil?As:Hi);const ie={colorFormat:32856,depthFormat:Q,scaleFactor:s};h=new XRWebGLBinding(i,t),u=h.createProjectionLayer(ie),i.updateRenderState({layers:[u]}),g=new zn(u.textureWidth,u.textureHeight,{format:An,type:Ki,depthTexture:new Mp(u.textureWidth,u.textureHeight,ee,void 0,void 0,void 0,void 0,void 0,void 0,Z),stencilBuffer:p.stencil,encoding:e.outputEncoding,samples:p.antialias?4:0});const ae=e.properties.get(g);ae.__ignoreDepthValues=u.ignoreDepthValues}g.isXRRenderTarget=!0,this.setFoveation(1),l=null,r=await i.requestReferenceSpace(o),Y.setContext(i),Y.start(),n.isPresenting=!0,n.dispatchEvent({type:\"sessionstart\"})}};function U(W){for(let Z=0;Z<W.removed.length;Z++){const ee=W.removed[Z],Q=x.indexOf(ee);Q>=0&&(x[Q]=null,y[Q].dispatchEvent({type:\"disconnected\",data:ee}))}for(let Z=0;Z<W.added.length;Z++){const ee=W.added[Z];let Q=x.indexOf(ee);if(Q===-1){for(let ae=0;ae<y.length;ae++)if(ae>=x.length){x.push(ee),Q=ae;break}else if(x[ae]===null){x[ae]=ee,Q=ae;break}if(Q===-1)break}const ie=y[Q];ie&&ie.dispatchEvent({type:\"connected\",data:ee})}}const q=new I,K=new I;function G(W,Z,ee){q.setFromMatrixPosition(Z.matrixWorld),K.setFromMatrixPosition(ee.matrixWorld);const Q=q.distanceTo(K),ie=Z.projectionMatrix.elements,ae=ee.projectionMatrix.elements,re=ie[14]/(ie[10]-1),H=ie[14]/(ie[10]+1),ge=(ie[9]+1)/ie[5],be=(ie[9]-1)/ie[5],Fe=(ie[8]-1)/ie[0],xe=(ae[8]+1)/ae[0],Ve=re*Fe,ue=re*xe,ce=Q/(-Fe+xe),ve=ce*-Fe;Z.matrixWorld.decompose(W.position,W.quaternion,W.scale),W.translateX(ve),W.translateZ(ce),W.matrixWorld.compose(W.position,W.quaternion,W.scale),W.matrixWorldInverse.copy(W.matrixWorld).invert();const ke=re+ce,Le=H+ce,Ze=Ve-ve,He=ue+(Q-ve),Ue=ge*H/Le*ke,gt=be*H/Le*ke;W.projectionMatrix.makePerspective(Ze,He,Ue,gt,ke,Le)}function X(W,Z){Z===null?W.matrixWorld.copy(W.matrix):W.matrixWorld.multiplyMatrices(Z.matrixWorld,W.matrix),W.matrixWorldInverse.copy(W.matrixWorld).invert()}this.updateCamera=function(W){if(i===null)return;T.near=v.near=b.near=W.near,T.far=v.far=b.far=W.far,(C!==T.near||_!==T.far)&&(i.updateRenderState({depthNear:T.near,depthFar:T.far}),C=T.near,_=T.far);const Z=W.parent,ee=T.cameras;X(T,Z);for(let ie=0;ie<ee.length;ie++)X(ee[ie],Z);T.matrixWorld.decompose(T.position,T.quaternion,T.scale),W.position.copy(T.position),W.quaternion.copy(T.quaternion),W.scale.copy(T.scale),W.matrix.copy(T.matrix),W.matrixWorld.copy(T.matrixWorld);const Q=W.children;for(let ie=0,ae=Q.length;ie<ae;ie++)Q[ie].updateMatrixWorld(!0);ee.length===2?G(T,b,v):T.projectionMatrix.copy(b.projectionMatrix)},this.getCamera=function(){return T},this.getFoveation=function(){if(u!==null)return u.fixedFoveation;if(f!==null)return f.fixedFoveation},this.setFoveation=function(W){u!==null&&(u.fixedFoveation=W),f!==null&&f.fixedFoveation!==void 0&&(f.fixedFoveation=W)};let O=null;function j(W,Z){if(c=Z.getViewerPose(l||r),d=Z,c!==null){const ee=c.views;f!==null&&(e.setRenderTargetFramebuffer(g,f.framebuffer),e.setRenderTarget(g));let Q=!1;ee.length!==T.cameras.length&&(T.cameras.length=0,Q=!0);for(let ie=0;ie<ee.length;ie++){const ae=ee[ie];let re=null;if(f!==null)re=f.getViewport(ae);else{const ge=h.getViewSubImage(u,ae);re=ge.viewport,ie===0&&(e.setRenderTargetTextures(g,ge.colorTexture,u.ignoreDepthValues?void 0:ge.depthStencilTexture),e.setRenderTarget(g))}let H=M[ie];H===void 0&&(H=new Ot,H.layers.enable(ie),H.viewport=new dt,M[ie]=H),H.matrix.fromArray(ae.transform.matrix),H.projectionMatrix.fromArray(ae.projectionMatrix),H.viewport.set(re.x,re.y,re.width,re.height),ie===0&&T.matrix.copy(H.matrix),Q===!0&&T.cameras.push(H)}}for(let ee=0;ee<y.length;ee++){const Q=x[ee],ie=y[ee];Q!==null&&ie!==void 0&&ie.update(Q,Z,l||r)}O&&O(W,Z),d=null}const Y=new mp;Y.setAnimationLoop(j),this.setAnimationLoop=function(W){O=W},this.dispose=function(){}}}function H_(a,e){function t(m,g){m.fogColor.value.copy(g.color),g.isFog?(m.fogNear.value=g.near,m.fogFar.value=g.far):g.isFogExp2&&(m.fogDensity.value=g.density)}function n(m,g,y,x,b){g.isMeshBasicMaterial||g.isMeshLambertMaterial?i(m,g):g.isMeshToonMaterial?(i(m,g),h(m,g)):g.isMeshPhongMaterial?(i(m,g),c(m,g)):g.isMeshStandardMaterial?(i(m,g),u(m,g),g.isMeshPhysicalMaterial&&f(m,g,b)):g.isMeshMatcapMaterial?(i(m,g),d(m,g)):g.isMeshDepthMaterial?i(m,g):g.isMeshDistanceMaterial?(i(m,g),p(m,g)):g.isMeshNormalMaterial?i(m,g):g.isLineBasicMaterial?(s(m,g),g.isLineDashedMaterial&&r(m,g)):g.isPointsMaterial?o(m,g,y,x):g.isSpriteMaterial?l(m,g):g.isShadowMaterial?(m.color.value.copy(g.color),m.opacity.value=g.opacity):g.isShaderMaterial&&(g.uniformsNeedUpdate=!1)}function i(m,g){m.opacity.value=g.opacity,g.color&&m.diffuse.value.copy(g.color),g.emissive&&m.emissive.value.copy(g.emissive).multiplyScalar(g.emissiveIntensity),g.map&&(m.map.value=g.map),g.alphaMap&&(m.alphaMap.value=g.alphaMap),g.bumpMap&&(m.bumpMap.value=g.bumpMap,m.bumpScale.value=g.bumpScale,g.side===kn&&(m.bumpScale.value*=-1)),g.displacementMap&&(m.displacementMap.value=g.displacementMap,m.displacementScale.value=g.displacementScale,m.displacementBias.value=g.displacementBias),g.emissiveMap&&(m.emissiveMap.value=g.emissiveMap),g.normalMap&&(m.normalMap.value=g.normalMap,m.normalScale.value.copy(g.normalScale),g.side===kn&&m.normalScale.value.negate()),g.specularMap&&(m.specularMap.value=g.specularMap),g.alphaTest>0&&(m.alphaTest.value=g.alphaTest);const y=e.get(g).envMap;if(y&&(m.envMap.value=y,m.flipEnvMap.value=y.isCubeTexture&&y.isRenderTargetTexture===!1?-1:1,m.reflectivity.value=g.reflectivity,m.ior.value=g.ior,m.refractionRatio.value=g.refractionRatio),g.lightMap){m.lightMap.value=g.lightMap;const v=a.physicallyCorrectLights!==!0?Math.PI:1;m.lightMapIntensity.value=g.lightMapIntensity*v}g.aoMap&&(m.aoMap.value=g.aoMap,m.aoMapIntensity.value=g.aoMapIntensity);let x;g.map?x=g.map:g.specularMap?x=g.specularMap:g.displacementMap?x=g.displacementMap:g.normalMap?x=g.normalMap:g.bumpMap?x=g.bumpMap:g.roughnessMap?x=g.roughnessMap:g.metalnessMap?x=g.metalnessMap:g.alphaMap?x=g.alphaMap:g.emissiveMap?x=g.emissiveMap:g.clearcoatMap?x=g.clearcoatMap:g.clearcoatNormalMap?x=g.clearcoatNormalMap:g.clearcoatRoughnessMap?x=g.clearcoatRoughnessMap:g.iridescenceMap?x=g.iridescenceMap:g.iridescenceThicknessMap?x=g.iridescenceThicknessMap:g.specularIntensityMap?x=g.specularIntensityMap:g.specularColorMap?x=g.specularColorMap:g.transmissionMap?x=g.transmissionMap:g.thicknessMap?x=g.thicknessMap:g.sheenColorMap?x=g.sheenColorMap:g.sheenRoughnessMap&&(x=g.sheenRoughnessMap),x!==void 0&&(x.isWebGLRenderTarget&&(x=x.texture),x.matrixAutoUpdate===!0&&x.updateMatrix(),m.uvTransform.value.copy(x.matrix));let b;g.aoMap?b=g.aoMap:g.lightMap&&(b=g.lightMap),b!==void 0&&(b.isWebGLRenderTarget&&(b=b.texture),b.matrixAutoUpdate===!0&&b.updateMatrix(),m.uv2Transform.value.copy(b.matrix))}function s(m,g){m.diffuse.value.copy(g.color),m.opacity.value=g.opacity}function r(m,g){m.dashSize.value=g.dashSize,m.totalSize.value=g.dashSize+g.gapSize,m.scale.value=g.scale}function o(m,g,y,x){m.diffuse.value.copy(g.color),m.opacity.value=g.opacity,m.size.value=g.size*y,m.scale.value=x*.5,g.map&&(m.map.value=g.map),g.alphaMap&&(m.alphaMap.value=g.alphaMap),g.alphaTest>0&&(m.alphaTest.value=g.alphaTest);let b;g.map?b=g.map:g.alphaMap&&(b=g.alphaMap),b!==void 0&&(b.matrixAutoUpdate===!0&&b.updateMatrix(),m.uvTransform.value.copy(b.matrix))}function l(m,g){m.diffuse.value.copy(g.color),m.opacity.value=g.opacity,m.rotation.value=g.rotation,g.map&&(m.map.value=g.map),g.alphaMap&&(m.alphaMap.value=g.alphaMap),g.alphaTest>0&&(m.alphaTest.value=g.alphaTest);let y;g.map?y=g.map:g.alphaMap&&(y=g.alphaMap),y!==void 0&&(y.matrixAutoUpdate===!0&&y.updateMatrix(),m.uvTransform.value.copy(y.matrix))}function c(m,g){m.specular.value.copy(g.specular),m.shininess.value=Math.max(g.shininess,1e-4)}function h(m,g){g.gradientMap&&(m.gradientMap.value=g.gradientMap)}function u(m,g){m.roughness.value=g.roughness,m.metalness.value=g.metalness,g.roughnessMap&&(m.roughnessMap.value=g.roughnessMap),g.metalnessMap&&(m.metalnessMap.value=g.metalnessMap),e.get(g).envMap&&(m.envMapIntensity.value=g.envMapIntensity)}function f(m,g,y){m.ior.value=g.ior,g.sheen>0&&(m.sheenColor.value.copy(g.sheenColor).multiplyScalar(g.sheen),m.sheenRoughness.value=g.sheenRoughness,g.sheenColorMap&&(m.sheenColorMap.value=g.sheenColorMap),g.sheenRoughnessMap&&(m.sheenRoughnessMap.value=g.sheenRoughnessMap)),g.clearcoat>0&&(m.clearcoat.value=g.clearcoat,m.clearcoatRoughness.value=g.clearcoatRoughness,g.clearcoatMap&&(m.clearcoatMap.value=g.clearcoatMap),g.clearcoatRoughnessMap&&(m.clearcoatRoughnessMap.value=g.clearcoatRoughnessMap),g.clearcoatNormalMap&&(m.clearcoatNormalScale.value.copy(g.clearcoatNormalScale),m.clearcoatNormalMap.value=g.clearcoatNormalMap,g.side===kn&&m.clearcoatNormalScale.value.negate())),g.iridescence>0&&(m.iridescence.value=g.iridescence,m.iridescenceIOR.value=g.iridescenceIOR,m.iridescenceThicknessMinimum.value=g.iridescenceThicknessRange[0],m.iridescenceThicknessMaximum.value=g.iridescenceThicknessRange[1],g.iridescenceMap&&(m.iridescenceMap.value=g.iridescenceMap),g.iridescenceThicknessMap&&(m.iridescenceThicknessMap.value=g.iridescenceThicknessMap)),g.transmission>0&&(m.transmission.value=g.transmission,m.transmissionSamplerMap.value=y.texture,m.transmissionSamplerSize.value.set(y.width,y.height),g.transmissionMap&&(m.transmissionMap.value=g.transmissionMap),m.thickness.value=g.thickness,g.thicknessMap&&(m.thicknessMap.value=g.thicknessMap),m.attenuationDistance.value=g.attenuationDistance,m.attenuationColor.value.copy(g.attenuationColor)),m.specularIntensity.value=g.specularIntensity,m.specularColor.value.copy(g.specularColor),g.specularIntensityMap&&(m.specularIntensityMap.value=g.specularIntensityMap),g.specularColorMap&&(m.specularColorMap.value=g.specularColorMap)}function d(m,g){g.matcap&&(m.matcap.value=g.matcap)}function p(m,g){m.referencePosition.value.copy(g.referencePosition),m.nearDistance.value=g.nearDistance,m.farDistance.value=g.farDistance}return{refreshFogUniforms:t,refreshMaterialUniforms:n}}function W_(a,e,t,n){let i={},s={},r=[];const o=t.isWebGL2?a.getParameter(35375):0;function l(x,b){const v=b.program;n.uniformBlockBinding(x,v)}function c(x,b){let v=i[x.id];v===void 0&&(p(x),v=h(x),i[x.id]=v,x.addEventListener(\"dispose\",g));const M=b.program;n.updateUBOMapping(x,M);const T=e.render.frame;s[x.id]!==T&&(f(x),s[x.id]=T)}function h(x){const b=u();x.__bindingPointIndex=b;const v=a.createBuffer(),M=x.__size,T=x.usage;return a.bindBuffer(35345,v),a.bufferData(35345,M,T),a.bindBuffer(35345,null),a.bindBufferBase(35345,b,v),v}function u(){for(let x=0;x<o;x++)if(r.indexOf(x)===-1)return r.push(x),x;return console.error(\"THREE.WebGLRenderer: Maximum number of simultaneously usable uniforms groups reached.\"),0}function f(x){const b=i[x.id],v=x.uniforms,M=x.__cache;a.bindBuffer(35345,b);for(let T=0,C=v.length;T<C;T++){const _=v[T];if(d(_,T,M)===!0){const E=_.value,F=_.__offset;typeof E==\"number\"?(_.__data[0]=E,a.bufferSubData(35345,F,_.__data)):(_.value.isMatrix3?(_.__data[0]=_.value.elements[0],_.__data[1]=_.value.elements[1],_.__data[2]=_.value.elements[2],_.__data[3]=_.value.elements[0],_.__data[4]=_.value.elements[3],_.__data[5]=_.value.elements[4],_.__data[6]=_.value.elements[5],_.__data[7]=_.value.elements[0],_.__data[8]=_.value.elements[6],_.__data[9]=_.value.elements[7],_.__data[10]=_.value.elements[8],_.__data[11]=_.value.elements[0]):E.toArray(_.__data),a.bufferSubData(35345,F,_.__data))}}a.bindBuffer(35345,null)}function d(x,b,v){const M=x.value;if(v[b]===void 0)return typeof M==\"number\"?v[b]=M:v[b]=M.clone(),!0;if(typeof M==\"number\"){if(v[b]!==M)return v[b]=M,!0}else{const T=v[b];if(T.equals(M)===!1)return T.copy(M),!0}return!1}function p(x){const b=x.uniforms;let v=0;const M=16;let T=0;for(let C=0,_=b.length;C<_;C++){const E=b[C],F=m(E);if(E.__data=new Float32Array(F.storage/Float32Array.BYTES_PER_ELEMENT),E.__offset=v,C>0){T=v%M;const U=M-T;T!==0&&U-F.boundary<0&&(v+=M-T,E.__offset=v)}v+=F.storage}return T=v%M,T>0&&(v+=M-T),x.__size=v,x.__cache={},this}function m(x){const b=x.value,v={boundary:0,storage:0};return typeof b==\"number\"?(v.boundary=4,v.storage=4):b.isVector2?(v.boundary=8,v.storage=8):b.isVector3||b.isColor?(v.boundary=16,v.storage=12):b.isVector4?(v.boundary=16,v.storage=16):b.isMatrix3?(v.boundary=48,v.storage=48):b.isMatrix4?(v.boundary=64,v.storage=64):b.isTexture?console.warn(\"THREE.WebGLRenderer: Texture samplers can not be part of an uniforms group.\"):console.warn(\"THREE.WebGLRenderer: Unsupported uniform value type.\",b),v}function g(x){const b=x.target;b.removeEventListener(\"dispose\",g);const v=r.indexOf(b.__bindingPointIndex);r.splice(v,1),a.deleteBuffer(i[b.id]),delete i[b.id],delete s[b.id]}function y(){for(const x in i)a.deleteBuffer(i[x]);r=[],i={},s={}}return{bind:l,update:c,dispose:y}}function q_(){const a=Co(\"canvas\");return a.style.display=\"block\",a}function Nu(a={}){this.isWebGLRenderer=!0;const e=a.canvas!==void 0?a.canvas:q_(),t=a.context!==void 0?a.context:null,n=a.depth!==void 0?a.depth:!0,i=a.stencil!==void 0?a.stencil:!0,s=a.antialias!==void 0?a.antialias:!1,r=a.premultipliedAlpha!==void 0?a.premultipliedAlpha:!0,o=a.preserveDrawingBuffer!==void 0?a.preserveDrawingBuffer:!1,l=a.powerPreference!==void 0?a.powerPreference:\"default\",c=a.failIfMajorPerformanceCaveat!==void 0?a.failIfMajorPerformanceCaveat:!1;let h;t!==null?h=t.getContextAttributes().alpha:h=a.alpha!==void 0?a.alpha:!1;let u=null,f=null;const d=[],p=[];this.domElement=e,this.debug={checkShaderErrors:!0},this.autoClear=!0,this.autoClearColor=!0,this.autoClearDepth=!0,this.autoClearStencil=!0,this.sortObjects=!0,this.clippingPlanes=[],this.localClippingEnabled=!1,this.outputEncoding=Mi,this.physicallyCorrectLights=!1,this.toneMapping=Qn,this.toneMappingExposure=1,Object.defineProperties(this,{gammaFactor:{get:function(){return console.warn(\"THREE.WebGLRenderer: .gammaFactor has been removed.\"),2},set:function(){console.warn(\"THREE.WebGLRenderer: .gammaFactor has been removed.\")}}});const m=this;let g=!1,y=0,x=0,b=null,v=-1,M=null;const T=new dt,C=new dt;let _=null,E=e.width,F=e.height,U=1,q=null,K=null;const G=new dt(0,0,E,F),X=new dt(0,0,E,F);let O=!1;const j=new Ml;let Y=!1,W=!1,Z=null;const ee=new Ne,Q=new fe,ie=new I,ae={background:null,fog:null,environment:null,overrideMaterial:null,isScene:!0};function re(){return b===null?U:1}let H=t;function ge(N,$){for(let le=0;le<N.length;le++){const te=N[le],pe=e.getContext(te,$);if(pe!==null)return pe}return null}try{const N={alpha:!0,depth:n,stencil:i,antialias:s,premultipliedAlpha:r,preserveDrawingBuffer:o,powerPreference:l,failIfMajorPerformanceCaveat:c};if(\"setAttribute\"in e&&e.setAttribute(\"data-engine\",`three.js r${ml}`),e.addEventListener(\"webglcontextlost\",ne,!1),e.addEventListener(\"webglcontextrestored\",de,!1),e.addEventListener(\"webglcontextcreationerror\",Ee,!1),H===null){const $=[\"webgl2\",\"webgl\",\"experimental-webgl\"];if(m.isWebGL1Renderer===!0&&$.shift(),H=ge($,N),H===null)throw ge($)?new Error(\"Error creating WebGL context with your selected attributes.\"):new Error(\"Error creating WebGL context.\")}H.getShaderPrecisionFormat===void 0&&(H.getShaderPrecisionFormat=function(){return{rangeMin:1,rangeMax:1,precision:1}})}catch(N){throw console.error(\"THREE.WebGLRenderer: \"+N.message),N}let be,Fe,xe,Ve,ue,ce,ve,ke,Le,Ze,He,Ue,gt,ot,k,P,oe,_e,Se,Ie,je,D,me,Te;function V(){be=new ov(H),Fe=new ev(H,be,a),be.init(Fe),D=new bp(H,be,Fe),xe=new z_(H,be,Fe),Ve=new cv,ue=new E_,ce=new U_(H,be,xe,ue,Fe,D,Ve),ve=new nv(m),ke=new rv(m),Le=new b0(H,Fe),me=new $x(H,be,Le,Fe),Ze=new av(H,Le,Ve,me),He=new dv(H,Ze,Le,Ve),Se=new fv(H,Fe,ce),P=new tv(ue),Ue=new A_(m,ve,ke,be,Fe,me,P),gt=new H_(m,ue),ot=new L_,k=new N_(be,Fe),_e=new Jx(m,ve,xe,He,h,r),oe=new B_(m,He,Fe),Te=new W_(H,Ve,Fe,xe),Ie=new Qx(H,be,Ve,Fe),je=new lv(H,be,Ve,Fe),Ve.programs=Ue.programs,m.capabilities=Fe,m.extensions=be,m.properties=ue,m.renderLists=ot,m.shadowMap=oe,m.state=xe,m.info=Ve}V();const B=new V_(m,H);this.xr=B,this.getContext=function(){return H},this.getContextAttributes=function(){return H.getContextAttributes()},this.forceContextLoss=function(){const N=be.get(\"WEBGL_lose_context\");N&&N.loseContext()},this.forceContextRestore=function(){const N=be.get(\"WEBGL_lose_context\");N&&N.restoreContext()},this.getPixelRatio=function(){return U},this.setPixelRatio=function(N){N!==void 0&&(U=N,this.setSize(E,F,!1))},this.getSize=function(N){return N.set(E,F)},this.setSize=function(N,$,le){if(B.isPresenting){console.warn(\"THREE.WebGLRenderer: Can't change size while VR device is presenting.\");return}E=N,F=$,e.width=Math.floor(N*U),e.height=Math.floor($*U),le!==!1&&(e.style.width=N+\"px\",e.style.height=$+\"px\"),this.setViewport(0,0,N,$)},this.getDrawingBufferSize=function(N){return N.set(E*U,F*U).floor()},this.setDrawingBufferSize=function(N,$,le){E=N,F=$,U=le,e.width=Math.floor(N*le),e.height=Math.floor($*le),this.setViewport(0,0,N,$)},this.getCurrentViewport=function(N){return N.copy(T)},this.getViewport=function(N){return N.copy(G)},this.setViewport=function(N,$,le,te){N.isVector4?G.set(N.x,N.y,N.z,N.w):G.set(N,$,le,te),xe.viewport(T.copy(G).multiplyScalar(U).floor())},this.getScissor=function(N){return N.copy(X)},this.setScissor=function(N,$,le,te){N.isVector4?X.set(N.x,N.y,N.z,N.w):X.set(N,$,le,te),xe.scissor(C.copy(X).multiplyScalar(U).floor())},this.getScissorTest=function(){return O},this.setScissorTest=function(N){xe.setScissorTest(O=N)},this.setOpaqueSort=function(N){q=N},this.setTransparentSort=function(N){K=N},this.getClearColor=function(N){return N.copy(_e.getClearColor())},this.setClearColor=function(){_e.setClearColor.apply(_e,arguments)},this.getClearAlpha=function(){return _e.getClearAlpha()},this.setClearAlpha=function(){_e.setClearAlpha.apply(_e,arguments)},this.clear=function(N=!0,$=!0,le=!0){let te=0;N&&(te|=16384),$&&(te|=256),le&&(te|=1024),H.clear(te)},this.clearColor=function(){this.clear(!0,!1,!1)},this.clearDepth=function(){this.clear(!1,!0,!1)},this.clearStencil=function(){this.clear(!1,!1,!0)},this.dispose=function(){e.removeEventListener(\"webglcontextlost\",ne,!1),e.removeEventListener(\"webglcontextrestored\",de,!1),e.removeEventListener(\"webglcontextcreationerror\",Ee,!1),ot.dispose(),k.dispose(),ue.dispose(),ve.dispose(),ke.dispose(),He.dispose(),me.dispose(),Te.dispose(),Ue.dispose(),B.dispose(),B.removeEventListener(\"sessionstart\",$e),B.removeEventListener(\"sessionend\",Tt),Z&&(Z.dispose(),Z=null),at.stop()};function ne(N){N.preventDefault(),console.log(\"THREE.WebGLRenderer: Context Lost.\"),g=!0}function de(){console.log(\"THREE.WebGLRenderer: Context Restored.\"),g=!1;const N=Ve.autoReset,$=oe.enabled,le=oe.autoUpdate,te=oe.needsUpdate,pe=oe.type;V(),Ve.autoReset=N,oe.enabled=$,oe.autoUpdate=le,oe.needsUpdate=te,oe.type=pe}function Ee(N){console.error(\"THREE.WebGLRenderer: A WebGL context could not be created. Reason: \",N.statusMessage)}function z(N){const $=N.target;$.removeEventListener(\"dispose\",z),ye($)}function ye(N){J(N),ue.remove(N)}function J(N){const $=ue.get(N).programs;$!==void 0&&($.forEach(function(le){Ue.releaseProgram(le)}),N.isShaderMaterial&&Ue.releaseShaderCache(N))}this.renderBufferDirect=function(N,$,le,te,pe,Je){$===null&&($=ae);const Qe=pe.isMesh&&pe.matrixWorld.determinant()<0,nt=Nl(N,$,le,te,pe);xe.setMaterial(te,Qe);let tt=le.index;const bt=le.attributes.position;if(tt===null){if(bt===void 0||bt.count===0)return}else if(tt.count===0)return;let ht=1;te.wireframe===!0&&(tt=Ze.getWireframeAttribute(le),ht=2),me.setup(pe,te,nt,le,tt);let ft,Lt=Ie;tt!==null&&(ft=Le.get(tt),Lt=je,Lt.setIndex(ft));const li=tt!==null?tt.count:bt.count,jt=le.drawRange.start*ht,Mn=le.drawRange.count*ht,yn=Je!==null?Je.start*ht:0,yt=Je!==null?Je.count*ht:1/0,Ii=Math.max(jt,yn),Pt=Math.min(li,jt+Mn,yn+yt)-1,xn=Math.max(0,Pt-Ii+1);if(xn!==0){if(pe.isMesh)te.wireframe===!0?(xe.setLineWidth(te.wireframeLinewidth*re()),Lt.setMode(1)):Lt.setMode(4);else if(pe.isLine){let Zn=te.linewidth;Zn===void 0&&(Zn=1),xe.setLineWidth(Zn*re()),pe.isLineSegments?Lt.setMode(1):pe.isLineLoop?Lt.setMode(2):Lt.setMode(3)}else pe.isPoints?Lt.setMode(0):pe.isSprite&&Lt.setMode(4);if(pe.isInstancedMesh)Lt.renderInstances(Ii,xn,pe.count);else if(le.isInstancedBufferGeometry){const Zn=Math.min(le.instanceCount,le._maxInstanceCount);Lt.renderInstances(Ii,xn,Zn)}else Lt.render(Ii,xn)}},this.compile=function(N,$){f=k.get(N),f.init(),p.push(f),N.traverseVisible(function(le){le.isLight&&le.layers.test($.layers)&&(f.pushLight(le),le.castShadow&&f.pushShadow(le))}),f.setupLights(m.physicallyCorrectLights),N.traverse(function(le){const te=le.material;if(te)if(Array.isArray(te))for(let pe=0;pe<te.length;pe++){const Je=te[pe];cn(Je,N,le)}else cn(te,N,le)}),p.pop(),f=null};let Pe=null;function Ae(N){Pe&&Pe(N)}function $e(){at.stop()}function Tt(){at.start()}const at=new mp;at.setAnimationLoop(Ae),typeof self!=\"undefined\"&&at.setContext(self),this.setAnimationLoop=function(N){Pe=N,B.setAnimationLoop(N),N===null?at.stop():at.start()},B.addEventListener(\"sessionstart\",$e),B.addEventListener(\"sessionend\",Tt),this.render=function(N,$){if($!==void 0&&$.isCamera!==!0){console.error(\"THREE.WebGLRenderer.render: camera is not an instance of THREE.Camera.\");return}if(g===!0)return;N.autoUpdate===!0&&N.updateMatrixWorld(),$.parent===null&&$.updateMatrixWorld(),B.enabled===!0&&B.isPresenting===!0&&(B.cameraAutoUpdate===!0&&B.updateCamera($),$=B.getCamera()),N.isScene===!0&&N.onBeforeRender(m,N,$,b),f=k.get(N,p.length),f.init(),p.push(f),ee.multiplyMatrices($.projectionMatrix,$.matrixWorldInverse),j.setFromProjectionMatrix(ee),W=this.localClippingEnabled,Y=P.init(this.clippingPlanes,W,$),u=ot.get(N,d.length),u.init(),d.push(u),wt(N,$,0,m.sortObjects),u.finish(),m.sortObjects===!0&&u.sort(q,K),Y===!0&&P.beginShadows();const le=f.state.shadowsArray;if(oe.render(le,N,$),Y===!0&&P.endShadows(),this.info.autoReset===!0&&this.info.reset(),_e.render(u,N),f.setupLights(m.physicallyCorrectLights),$.isArrayCamera){const te=$.cameras;for(let pe=0,Je=te.length;pe<Je;pe++){const Qe=te[pe];et(u,N,Qe,Qe.viewport)}}else et(u,N,$);b!==null&&(ce.updateMultisampleRenderTarget(b),ce.updateRenderTargetMipmap(b)),N.isScene===!0&&N.onAfterRender(m,N,$),me.resetDefaultState(),v=-1,M=null,p.pop(),p.length>0?f=p[p.length-1]:f=null,d.pop(),d.length>0?u=d[d.length-1]:u=null};function wt(N,$,le,te){if(N.visible===!1)return;if(N.layers.test($.layers)){if(N.isGroup)le=N.renderOrder;else if(N.isLOD)N.autoUpdate===!0&&N.update($);else if(N.isLight)f.pushLight(N),N.castShadow&&f.pushShadow(N);else if(N.isSprite){if(!N.frustumCulled||j.intersectsSprite(N)){te&&ie.setFromMatrixPosition(N.matrixWorld).applyMatrix4(ee);const Qe=He.update(N),nt=N.material;nt.visible&&u.push(N,Qe,nt,le,ie.z,null)}}else if((N.isMesh||N.isLine||N.isPoints)&&(N.isSkinnedMesh&&N.skeleton.frame!==Ve.render.frame&&(N.skeleton.update(),N.skeleton.frame=Ve.render.frame),!N.frustumCulled||j.intersectsObject(N))){te&&ie.setFromMatrixPosition(N.matrixWorld).applyMatrix4(ee);const Qe=He.update(N),nt=N.material;if(Array.isArray(nt)){const tt=Qe.groups;for(let bt=0,ht=tt.length;bt<ht;bt++){const ft=tt[bt],Lt=nt[ft.materialIndex];Lt&&Lt.visible&&u.push(N,Qe,Lt,le,ie.z,ft)}}else nt.visible&&u.push(N,Qe,nt,le,ie.z,null)}}const Je=N.children;for(let Qe=0,nt=Je.length;Qe<nt;Qe++)wt(Je[Qe],$,le,te)}function et(N,$,le,te){const pe=N.opaque,Je=N.transmissive,Qe=N.transparent;f.setupLightsView(le),Je.length>0&&At(pe,$,le),te&&xe.viewport(T.copy(te)),pe.length>0&&_t(pe,$,le),Je.length>0&&_t(Je,$,le),Qe.length>0&&_t(Qe,$,le),xe.buffers.depth.setTest(!0),xe.buffers.depth.setMask(!0),xe.buffers.color.setMask(!0),xe.setPolygonOffset(!1)}function At(N,$,le){const te=Fe.isWebGL2;Z===null&&(Z=new zn(1,1,{generateMipmaps:!0,type:be.has(\"EXT_color_buffer_half_float\")?Mr:Ki,minFilter:oi,samples:te&&s===!0?4:0})),m.getDrawingBufferSize(Q),te?Z.setSize(Q.x,Q.y):Z.setSize(rl(Q.x),rl(Q.y));const pe=m.getRenderTarget();m.setRenderTarget(Z),m.clear();const Je=m.toneMapping;m.toneMapping=Qn,_t(N,$,le),m.toneMapping=Je,ce.updateMultisampleRenderTarget(Z),ce.updateRenderTargetMipmap(Z),m.setRenderTarget(pe)}function _t(N,$,le){const te=$.isScene===!0?$.overrideMaterial:null;for(let pe=0,Je=N.length;pe<Je;pe++){const Qe=N[pe],nt=Qe.object,tt=Qe.geometry,bt=te===null?Qe.material:te,ht=Qe.group;nt.layers.test(le.layers)&&Vn(nt,$,le,tt,bt,ht)}}function Vn(N,$,le,te,pe,Je){N.onBeforeRender(m,$,le,te,pe,Je),N.modelViewMatrix.multiplyMatrices(le.matrixWorldInverse,N.matrixWorld),N.normalMatrix.getNormalMatrix(N.modelViewMatrix),pe.onBeforeRender(m,$,le,te,N,Je),pe.transparent===!0&&pe.side===wi?(pe.side=kn,pe.needsUpdate=!0,m.renderBufferDirect(le,$,te,pe,N,Je),pe.side=bi,pe.needsUpdate=!0,m.renderBufferDirect(le,$,te,pe,N,Je),pe.side=wi):m.renderBufferDirect(le,$,te,pe,N,Je),N.onAfterRender(m,$,le,te,pe,Je)}function cn(N,$,le){$.isScene!==!0&&($=ae);const te=ue.get(N),pe=f.state.lights,Je=f.state.shadowsArray,Qe=pe.state.version,nt=Ue.getParameters(N,pe.state,Je,$,le),tt=Ue.getProgramCacheKey(nt);let bt=te.programs;te.environment=N.isMeshStandardMaterial?$.environment:null,te.fog=$.fog,te.envMap=(N.isMeshStandardMaterial?ke:ve).get(N.envMap||te.environment),bt===void 0&&(N.addEventListener(\"dispose\",z),bt=new Map,te.programs=bt);let ht=bt.get(tt);if(ht!==void 0){if(te.currentProgram===ht&&te.lightsStateVersion===Qe)return Jo(N,nt),ht}else nt.uniforms=Ue.getUniforms(N),N.onBuild(le,nt,m),N.onBeforeCompile(nt,m),ht=Ue.acquireProgram(nt,tt),bt.set(tt,ht),te.uniforms=nt.uniforms;const ft=te.uniforms;(!N.isShaderMaterial&&!N.isRawShaderMaterial||N.clipping===!0)&&(ft.clippingPlanes=P.uniform),Jo(N,nt),te.needsLights=Ol(N),te.lightsStateVersion=Qe,te.needsLights&&(ft.ambientLightColor.value=pe.state.ambient,ft.lightProbe.value=pe.state.probe,ft.directionalLights.value=pe.state.directional,ft.directionalLightShadows.value=pe.state.directionalShadow,ft.spotLights.value=pe.state.spot,ft.spotLightShadows.value=pe.state.spotShadow,ft.rectAreaLights.value=pe.state.rectArea,ft.ltc_1.value=pe.state.rectAreaLTC1,ft.ltc_2.value=pe.state.rectAreaLTC2,ft.pointLights.value=pe.state.point,ft.pointLightShadows.value=pe.state.pointShadow,ft.hemisphereLights.value=pe.state.hemi,ft.directionalShadowMap.value=pe.state.directionalShadowMap,ft.directionalShadowMatrix.value=pe.state.directionalShadowMatrix,ft.spotShadowMap.value=pe.state.spotShadowMap,ft.spotShadowMatrix.value=pe.state.spotShadowMatrix,ft.pointShadowMap.value=pe.state.pointShadowMap,ft.pointShadowMatrix.value=pe.state.pointShadowMatrix);const Lt=ht.getUniforms(),li=$a.seqWithValue(Lt.seq,ft);return te.currentProgram=ht,te.uniformsList=li,ht}function Jo(N,$){const le=ue.get(N);le.outputEncoding=$.outputEncoding,le.instancing=$.instancing,le.skinning=$.skinning,le.morphTargets=$.morphTargets,le.morphNormals=$.morphNormals,le.morphColors=$.morphColors,le.morphTargetsCount=$.morphTargetsCount,le.numClippingPlanes=$.numClippingPlanes,le.numIntersection=$.numClipIntersection,le.vertexAlphas=$.vertexAlphas,le.vertexTangents=$.vertexTangents,le.toneMapping=$.toneMapping}function Nl(N,$,le,te,pe){$.isScene!==!0&&($=ae),ce.resetTextureUnits();const Je=$.fog,Qe=te.isMeshStandardMaterial?$.environment:null,nt=b===null?m.outputEncoding:b.isXRRenderTarget===!0?b.texture.encoding:Mi,tt=(te.isMeshStandardMaterial?ke:ve).get(te.envMap||Qe),bt=te.vertexColors===!0&&!!le.attributes.color&&le.attributes.color.itemSize===4,ht=!!te.normalMap&&!!le.attributes.tangent,ft=!!le.morphAttributes.position,Lt=!!le.morphAttributes.normal,li=!!le.morphAttributes.color,jt=te.toneMapped?m.toneMapping:Qn,Mn=le.morphAttributes.position||le.morphAttributes.normal||le.morphAttributes.color,yn=Mn!==void 0?Mn.length:0,yt=ue.get(te),Ii=f.state.lights;if(Y===!0&&(W===!0||N!==M)){const rn=N===M&&te.id===v;P.setState(te,N,rn)}let Pt=!1;te.version===yt.__version?(yt.needsLights&&yt.lightsStateVersion!==Ii.state.version||yt.outputEncoding!==nt||pe.isInstancedMesh&&yt.instancing===!1||!pe.isInstancedMesh&&yt.instancing===!0||pe.isSkinnedMesh&&yt.skinning===!1||!pe.isSkinnedMesh&&yt.skinning===!0||yt.envMap!==tt||te.fog===!0&&yt.fog!==Je||yt.numClippingPlanes!==void 0&&(yt.numClippingPlanes!==P.numPlanes||yt.numIntersection!==P.numIntersection)||yt.vertexAlphas!==bt||yt.vertexTangents!==ht||yt.morphTargets!==ft||yt.morphNormals!==Lt||yt.morphColors!==li||yt.toneMapping!==jt||Fe.isWebGL2===!0&&yt.morphTargetsCount!==yn)&&(Pt=!0):(Pt=!0,yt.__version=te.version);let xn=yt.currentProgram;Pt===!0&&(xn=cn(te,$,pe));let Zn=!1,os=!1,Xs=!1;const Qt=xn.getUniforms(),Cn=yt.uniforms;if(xe.useProgram(xn.program)&&(Zn=!0,os=!0,Xs=!0),te.id!==v&&(v=te.id,os=!0),Zn||M!==N){if(Qt.setValue(H,\"projectionMatrix\",N.projectionMatrix),Fe.logarithmicDepthBuffer&&Qt.setValue(H,\"logDepthBufFC\",2/(Math.log(N.far+1)/Math.LN2)),M!==N&&(M=N,os=!0,Xs=!0),te.isShaderMaterial||te.isMeshPhongMaterial||te.isMeshToonMaterial||te.isMeshStandardMaterial||te.envMap){const rn=Qt.map.cameraPosition;rn!==void 0&&rn.setValue(H,ie.setFromMatrixPosition(N.matrixWorld))}(te.isMeshPhongMaterial||te.isMeshToonMaterial||te.isMeshLambertMaterial||te.isMeshBasicMaterial||te.isMeshStandardMaterial||te.isShaderMaterial)&&Qt.setValue(H,\"isOrthographic\",N.isOrthographicCamera===!0),(te.isMeshPhongMaterial||te.isMeshToonMaterial||te.isMeshLambertMaterial||te.isMeshBasicMaterial||te.isMeshStandardMaterial||te.isShaderMaterial||te.isShadowMaterial||pe.isSkinnedMesh)&&Qt.setValue(H,\"viewMatrix\",N.matrixWorldInverse)}if(pe.isSkinnedMesh){Qt.setOptional(H,pe,\"bindMatrix\"),Qt.setOptional(H,pe,\"bindMatrixInverse\");const rn=pe.skeleton;rn&&(Fe.floatVertexTextures?(rn.boneTexture===null&&rn.computeBoneTexture(),Qt.setValue(H,\"boneTexture\",rn.boneTexture,ce),Qt.setValue(H,\"boneTextureSize\",rn.boneTextureSize)):console.warn(\"THREE.WebGLRenderer: SkinnedMesh can only be used with WebGL 2. With WebGL 1 OES_texture_float and vertex textures support is required.\"))}const Qr=le.morphAttributes;if((Qr.position!==void 0||Qr.normal!==void 0||Qr.color!==void 0&&Fe.isWebGL2===!0)&&Se.update(pe,le,te,xn),(os||yt.receiveShadow!==pe.receiveShadow)&&(yt.receiveShadow=pe.receiveShadow,Qt.setValue(H,\"receiveShadow\",pe.receiveShadow)),os&&(Qt.setValue(H,\"toneMappingExposure\",m.toneMappingExposure),yt.needsLights&&kl(Cn,Xs),Je&&te.fog===!0&&gt.refreshFogUniforms(Cn,Je),gt.refreshMaterialUniforms(Cn,te,U,F,Z),$a.upload(H,yt.uniformsList,Cn,ce)),te.isShaderMaterial&&te.uniformsNeedUpdate===!0&&($a.upload(H,yt.uniformsList,Cn,ce),te.uniformsNeedUpdate=!1),te.isSpriteMaterial&&Qt.setValue(H,\"center\",pe.center),Qt.setValue(H,\"modelViewMatrix\",pe.modelViewMatrix),Qt.setValue(H,\"normalMatrix\",pe.normalMatrix),Qt.setValue(H,\"modelMatrix\",pe.matrixWorld),te.isShaderMaterial||te.isRawShaderMaterial){const rn=te.uniformsGroups;for(let eo=0,$o=rn.length;eo<$o;eo++)if(Fe.isWebGL2){const Qo=rn[eo];Te.update(Qo,xn),Te.bind(Qo,xn)}else console.warn(\"THREE.WebGLRenderer: Uniform Buffer Objects can only be used with WebGL 2.\")}return xn}function kl(N,$){N.ambientLightColor.needsUpdate=$,N.lightProbe.needsUpdate=$,N.directionalLights.needsUpdate=$,N.directionalLightShadows.needsUpdate=$,N.pointLights.needsUpdate=$,N.pointLightShadows.needsUpdate=$,N.spotLights.needsUpdate=$,N.spotLightShadows.needsUpdate=$,N.rectAreaLights.needsUpdate=$,N.hemisphereLights.needsUpdate=$}function Ol(N){return N.isMeshLambertMaterial||N.isMeshToonMaterial||N.isMeshPhongMaterial||N.isMeshStandardMaterial||N.isShadowMaterial||N.isShaderMaterial&&N.lights===!0}this.getActiveCubeFace=function(){return y},this.getActiveMipmapLevel=function(){return x},this.getRenderTarget=function(){return b},this.setRenderTargetTextures=function(N,$,le){ue.get(N.texture).__webglTexture=$,ue.get(N.depthTexture).__webglTexture=le;const te=ue.get(N);te.__hasExternalTextures=!0,te.__hasExternalTextures&&(te.__autoAllocateDepthBuffer=le===void 0,te.__autoAllocateDepthBuffer||be.has(\"WEBGL_multisampled_render_to_texture\")===!0&&(console.warn(\"THREE.WebGLRenderer: Render-to-texture extension was disabled because an external texture was provided\"),te.__useRenderToTexture=!1))},this.setRenderTargetFramebuffer=function(N,$){const le=ue.get(N);le.__webglFramebuffer=$,le.__useDefaultFramebuffer=$===void 0},this.setRenderTarget=function(N,$=0,le=0){b=N,y=$,x=le;let te=!0;if(N){const tt=ue.get(N);tt.__useDefaultFramebuffer!==void 0?(xe.bindFramebuffer(36160,null),te=!1):tt.__webglFramebuffer===void 0?ce.setupRenderTarget(N):tt.__hasExternalTextures&&ce.rebindTextures(N,ue.get(N.texture).__webglTexture,ue.get(N.depthTexture).__webglTexture)}let pe=null,Je=!1,Qe=!1;if(N){const tt=N.texture;(tt.isData3DTexture||tt.isDataArrayTexture)&&(Qe=!0);const bt=ue.get(N).__webglFramebuffer;N.isWebGLCubeRenderTarget?(pe=bt[$],Je=!0):Fe.isWebGL2&&N.samples>0&&ce.useMultisampledRTT(N)===!1?pe=ue.get(N).__webglMultisampledFramebuffer:pe=bt,T.copy(N.viewport),C.copy(N.scissor),_=N.scissorTest}else T.copy(G).multiplyScalar(U).floor(),C.copy(X).multiplyScalar(U).floor(),_=O;if(xe.bindFramebuffer(36160,pe)&&Fe.drawBuffers&&te&&xe.drawBuffers(N,pe),xe.viewport(T),xe.scissor(C),xe.setScissorTest(_),Je){const tt=ue.get(N.texture);H.framebufferTexture2D(36160,36064,34069+$,tt.__webglTexture,le)}else if(Qe){const tt=ue.get(N.texture),bt=$||0;H.framebufferTextureLayer(36160,36064,tt.__webglTexture,le||0,bt)}v=-1},this.readRenderTargetPixels=function(N,$,le,te,pe,Je,Qe){if(!(N&&N.isWebGLRenderTarget)){console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.\");return}let nt=ue.get(N).__webglFramebuffer;if(N.isWebGLCubeRenderTarget&&Qe!==void 0&&(nt=nt[Qe]),nt){xe.bindFramebuffer(36160,nt);try{const tt=N.texture,bt=tt.format,ht=tt.type;if(bt!==An&&D.convert(bt)!==H.getParameter(35739)){console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.\");return}const ft=ht===Mr&&(be.has(\"EXT_color_buffer_half_float\")||Fe.isWebGL2&&be.has(\"EXT_color_buffer_float\"));if(ht!==Ki&&D.convert(ht)!==H.getParameter(35738)&&!(ht===xi&&(Fe.isWebGL2||be.has(\"OES_texture_float\")||be.has(\"WEBGL_color_buffer_float\")))&&!ft){console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.\");return}$>=0&&$<=N.width-te&&le>=0&&le<=N.height-pe&&H.readPixels($,le,te,pe,D.convert(bt),D.convert(ht),Je)}finally{const tt=b!==null?ue.get(b).__webglFramebuffer:null;xe.bindFramebuffer(36160,tt)}}},this.copyFramebufferToTexture=function(N,$,le=0){const te=Math.pow(2,-le),pe=Math.floor($.image.width*te),Je=Math.floor($.image.height*te);ce.setTexture2D($,0),H.copyTexSubImage2D(3553,le,0,0,N.x,N.y,pe,Je),xe.unbindTexture()},this.copyTextureToTexture=function(N,$,le,te=0){const pe=$.image.width,Je=$.image.height,Qe=D.convert(le.format),nt=D.convert(le.type);ce.setTexture2D(le,0),H.pixelStorei(37440,le.flipY),H.pixelStorei(37441,le.premultiplyAlpha),H.pixelStorei(3317,le.unpackAlignment),$.isDataTexture?H.texSubImage2D(3553,te,N.x,N.y,pe,Je,Qe,nt,$.image.data):$.isCompressedTexture?H.compressedTexSubImage2D(3553,te,N.x,N.y,$.mipmaps[0].width,$.mipmaps[0].height,Qe,$.mipmaps[0].data):H.texSubImage2D(3553,te,N.x,N.y,Qe,nt,$.image),te===0&&le.generateMipmaps&&H.generateMipmap(3553),xe.unbindTexture()},this.copyTextureToTexture3D=function(N,$,le,te,pe=0){if(m.isWebGL1Renderer){console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: can only be used with WebGL2.\");return}const Je=N.max.x-N.min.x+1,Qe=N.max.y-N.min.y+1,nt=N.max.z-N.min.z+1,tt=D.convert(te.format),bt=D.convert(te.type);let ht;if(te.isData3DTexture)ce.setTexture3D(te,0),ht=32879;else if(te.isDataArrayTexture)ce.setTexture2DArray(te,0),ht=35866;else{console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: only supports THREE.DataTexture3D and THREE.DataTexture2DArray.\");return}H.pixelStorei(37440,te.flipY),H.pixelStorei(37441,te.premultiplyAlpha),H.pixelStorei(3317,te.unpackAlignment);const ft=H.getParameter(3314),Lt=H.getParameter(32878),li=H.getParameter(3316),jt=H.getParameter(3315),Mn=H.getParameter(32877),yn=le.isCompressedTexture?le.mipmaps[0]:le.image;H.pixelStorei(3314,yn.width),H.pixelStorei(32878,yn.height),H.pixelStorei(3316,N.min.x),H.pixelStorei(3315,N.min.y),H.pixelStorei(32877,N.min.z),le.isDataTexture||le.isData3DTexture?H.texSubImage3D(ht,pe,$.x,$.y,$.z,Je,Qe,nt,tt,bt,yn.data):le.isCompressedTexture?(console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: untested support for compressed srcTexture.\"),H.compressedTexSubImage3D(ht,pe,$.x,$.y,$.z,Je,Qe,nt,tt,yn.data)):H.texSubImage3D(ht,pe,$.x,$.y,$.z,Je,Qe,nt,tt,bt,yn),H.pixelStorei(3314,ft),H.pixelStorei(32878,Lt),H.pixelStorei(3316,li),H.pixelStorei(3315,jt),H.pixelStorei(32877,Mn),pe===0&&te.generateMipmaps&&H.generateMipmap(ht),xe.unbindTexture()},this.initTexture=function(N){N.isCubeTexture?ce.setTextureCube(N,0):N.isData3DTexture?ce.setTexture3D(N,0):N.isDataArrayTexture?ce.setTexture2DArray(N,0):ce.setTexture2D(N,0),xe.unbindTexture()},this.resetState=function(){y=0,x=0,b=null,xe.reset(),me.reset()},typeof __THREE_DEVTOOLS__!=\"undefined\"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"observe\",{detail:this}))}class Sp extends Nu{}Sp.prototype.isWebGL1Renderer=!0;class Tl{constructor(e,t=25e-5){this.isFogExp2=!0,this.name=\"\",this.color=new we(e),this.density=t}clone(){return new Tl(this.color,this.density)}toJSON(){return{type:\"FogExp2\",color:this.color.getHex(),density:this.density}}}class Al{constructor(e,t=1,n=1e3){this.isFog=!0,this.name=\"\",this.color=new we(e),this.near=t,this.far=n}clone(){return new Al(this.color,this.near,this.far)}toJSON(){return{type:\"Fog\",color:this.color.getHex(),near:this.near,far:this.far}}}class El extends pt{constructor(){super(),this.isScene=!0,this.type=\"Scene\",this.background=null,this.environment=null,this.fog=null,this.overrideMaterial=null,this.autoUpdate=!0,typeof __THREE_DEVTOOLS__!=\"undefined\"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"observe\",{detail:this}))}copy(e,t){return super.copy(e,t),e.background!==null&&(this.background=e.background.clone()),e.environment!==null&&(this.environment=e.environment.clone()),e.fog!==null&&(this.fog=e.fog.clone()),e.overrideMaterial!==null&&(this.overrideMaterial=e.overrideMaterial.clone()),this.autoUpdate=e.autoUpdate,this.matrixAutoUpdate=e.matrixAutoUpdate,this}toJSON(e){const t=super.toJSON(e);return this.fog!==null&&(t.object.fog=this.fog.toJSON()),t}}class Ho{constructor(e,t){this.isInterleavedBuffer=!0,this.array=e,this.stride=t,this.count=e!==void 0?e.length/t:0,this.usage=Ao,this.updateRange={offset:0,count:-1},this.version=0,this.uuid=En()}onUploadCallback(){}set needsUpdate(e){e===!0&&this.version++}setUsage(e){return this.usage=e,this}copy(e){return this.array=new e.array.constructor(e.array),this.count=e.count,this.stride=e.stride,this.usage=e.usage,this}copyAt(e,t,n){e*=this.stride,n*=t.stride;for(let i=0,s=this.stride;i<s;i++)this.array[e+i]=t.array[n+i];return this}set(e,t=0){return this.array.set(e,t),this}clone(e){e.arrayBuffers===void 0&&(e.arrayBuffers={}),this.array.buffer._uuid===void 0&&(this.array.buffer._uuid=En()),e.arrayBuffers[this.array.buffer._uuid]===void 0&&(e.arrayBuffers[this.array.buffer._uuid]=this.array.slice(0).buffer);const t=new this.array.constructor(e.arrayBuffers[this.array.buffer._uuid]),n=new this.constructor(t,this.stride);return n.setUsage(this.usage),n}onUpload(e){return this.onUploadCallback=e,this}toJSON(e){return e.arrayBuffers===void 0&&(e.arrayBuffers={}),this.array.buffer._uuid===void 0&&(this.array.buffer._uuid=En()),e.arrayBuffers[this.array.buffer._uuid]===void 0&&(e.arrayBuffers[this.array.buffer._uuid]=Array.from(new Uint32Array(this.array.buffer))),{uuid:this.uuid,buffer:this.array.buffer._uuid,type:this.array.constructor.name,stride:this.stride}}}const un=new I;class Ji{constructor(e,t,n,i=!1){this.isInterleavedBufferAttribute=!0,this.name=\"\",this.data=e,this.itemSize=t,this.offset=n,this.normalized=i===!0}get count(){return this.data.count}get array(){return this.data.array}set needsUpdate(e){this.data.needsUpdate=e}applyMatrix4(e){for(let t=0,n=this.data.count;t<n;t++)un.fromBufferAttribute(this,t),un.applyMatrix4(e),this.setXYZ(t,un.x,un.y,un.z);return this}applyNormalMatrix(e){for(let t=0,n=this.count;t<n;t++)un.fromBufferAttribute(this,t),un.applyNormalMatrix(e),this.setXYZ(t,un.x,un.y,un.z);return this}transformDirection(e){for(let t=0,n=this.count;t<n;t++)un.fromBufferAttribute(this,t),un.transformDirection(e),this.setXYZ(t,un.x,un.y,un.z);return this}setX(e,t){return this.data.array[e*this.data.stride+this.offset]=t,this}setY(e,t){return this.data.array[e*this.data.stride+this.offset+1]=t,this}setZ(e,t){return this.data.array[e*this.data.stride+this.offset+2]=t,this}setW(e,t){return this.data.array[e*this.data.stride+this.offset+3]=t,this}getX(e){return this.data.array[e*this.data.stride+this.offset]}getY(e){return this.data.array[e*this.data.stride+this.offset+1]}getZ(e){return this.data.array[e*this.data.stride+this.offset+2]}getW(e){return this.data.array[e*this.data.stride+this.offset+3]}setXY(e,t,n){return e=e*this.data.stride+this.offset,this.data.array[e+0]=t,this.data.array[e+1]=n,this}setXYZ(e,t,n,i){return e=e*this.data.stride+this.offset,this.data.array[e+0]=t,this.data.array[e+1]=n,this.data.array[e+2]=i,this}setXYZW(e,t,n,i,s){return e=e*this.data.stride+this.offset,this.data.array[e+0]=t,this.data.array[e+1]=n,this.data.array[e+2]=i,this.data.array[e+3]=s,this}clone(e){if(e===void 0){console.log(\"THREE.InterleavedBufferAttribute.clone(): Cloning an interleaved buffer attribute will deinterleave buffer data.\");const t=[];for(let n=0;n<this.count;n++){const i=n*this.data.stride+this.offset;for(let s=0;s<this.itemSize;s++)t.push(this.data.array[i+s])}return new mt(new this.array.constructor(t),this.itemSize,this.normalized)}else return e.interleavedBuffers===void 0&&(e.interleavedBuffers={}),e.interleavedBuffers[this.data.uuid]===void 0&&(e.interleavedBuffers[this.data.uuid]=this.data.clone(e)),new Ji(e.interleavedBuffers[this.data.uuid],this.itemSize,this.offset,this.normalized)}toJSON(e){if(e===void 0){console.log(\"THREE.InterleavedBufferAttribute.toJSON(): Serializing an interleaved buffer attribute will deinterleave buffer data.\");const t=[];for(let n=0;n<this.count;n++){const i=n*this.data.stride+this.offset;for(let s=0;s<this.itemSize;s++)t.push(this.data.array[i+s])}return{itemSize:this.itemSize,type:this.array.constructor.name,array:t,normalized:this.normalized}}else return e.interleavedBuffers===void 0&&(e.interleavedBuffers={}),e.interleavedBuffers[this.data.uuid]===void 0&&(e.interleavedBuffers[this.data.uuid]=this.data.toJSON(e)),{isInterleavedBufferAttribute:!0,itemSize:this.itemSize,data:this.data.uuid,offset:this.offset,normalized:this.normalized}}}class Cl extends Wt{constructor(e){super(),this.isSpriteMaterial=!0,this.type=\"SpriteMaterial\",this.color=new we(16777215),this.map=null,this.alphaMap=null,this.rotation=0,this.sizeAttenuation=!0,this.transparent=!0,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.alphaMap=e.alphaMap,this.rotation=e.rotation,this.sizeAttenuation=e.sizeAttenuation,this.fog=e.fog,this}}let lr;const so=new I,cr=new I,ur=new I,hr=new fe,ro=new fe,Tp=new Ne,Ma=new I,oo=new I,Sa=new I,Qh=new fe,fc=new fe,ef=new fe;class yo extends pt{constructor(e){if(super(),this.isSprite=!0,this.type=\"Sprite\",lr===void 0){lr=new Xe;const t=new Float32Array([-.5,-.5,0,0,0,.5,-.5,0,1,0,.5,.5,0,1,1,-.5,.5,0,0,1]),n=new Ho(t,5);lr.setIndex([0,1,2,0,2,3]),lr.setAttribute(\"position\",new Ji(n,3,0,!1)),lr.setAttribute(\"uv\",new Ji(n,2,3,!1))}this.geometry=lr,this.material=e!==void 0?e:new Cl,this.center=new fe(.5,.5)}raycast(e,t){e.camera===null&&console.error('THREE.Sprite: \"Raycaster.camera\" needs to be set in order to raycast against sprites.'),cr.setFromMatrixScale(this.matrixWorld),Tp.copy(e.camera.matrixWorld),this.modelViewMatrix.multiplyMatrices(e.camera.matrixWorldInverse,this.matrixWorld),ur.setFromMatrixPosition(this.modelViewMatrix),e.camera.isPerspectiveCamera&&this.material.sizeAttenuation===!1&&cr.multiplyScalar(-ur.z);const n=this.material.rotation;let i,s;n!==0&&(s=Math.cos(n),i=Math.sin(n));const r=this.center;Ta(Ma.set(-.5,-.5,0),ur,r,cr,i,s),Ta(oo.set(.5,-.5,0),ur,r,cr,i,s),Ta(Sa.set(.5,.5,0),ur,r,cr,i,s),Qh.set(0,0),fc.set(1,0),ef.set(1,1);let o=e.ray.intersectTriangle(Ma,oo,Sa,!1,so);if(o===null&&(Ta(oo.set(-.5,.5,0),ur,r,cr,i,s),fc.set(0,1),o=e.ray.intersectTriangle(Ma,Sa,oo,!1,so),o===null))return;const l=e.ray.origin.distanceTo(so);l<e.near||l>e.far||t.push({distance:l,point:so.clone(),uv:Fn.getUV(so,Ma,oo,Sa,Qh,fc,ef,new fe),face:null,object:this})}copy(e,t){return super.copy(e,t),e.center!==void 0&&this.center.copy(e.center),this.material=e.material,this}}function Ta(a,e,t,n,i,s){hr.subVectors(a,t).addScalar(.5).multiply(n),i!==void 0?(ro.x=s*hr.x-i*hr.y,ro.y=i*hr.x+s*hr.y):ro.copy(hr),a.copy(e),a.x+=ro.x,a.y+=ro.y,a.applyMatrix4(Tp)}const Aa=new I,tf=new I;class Ap extends pt{constructor(){super(),this._currentLevel=0,this.type=\"LOD\",Object.defineProperties(this,{levels:{enumerable:!0,value:[]},isLOD:{value:!0}}),this.autoUpdate=!0}copy(e){super.copy(e,!1);const t=e.levels;for(let n=0,i=t.length;n<i;n++){const s=t[n];this.addLevel(s.object.clone(),s.distance)}return this.autoUpdate=e.autoUpdate,this}addLevel(e,t=0){t=Math.abs(t);const n=this.levels;let i;for(i=0;i<n.length&&!(t<n[i].distance);i++);return n.splice(i,0,{distance:t,object:e}),this.add(e),this}getCurrentLevel(){return this._currentLevel}getObjectForDistance(e){const t=this.levels;if(t.length>0){let n,i;for(n=1,i=t.length;n<i&&!(e<t[n].distance);n++);return t[n-1].object}return null}raycast(e,t){if(this.levels.length>0){Aa.setFromMatrixPosition(this.matrixWorld);const i=e.ray.origin.distanceTo(Aa);this.getObjectForDistance(i).raycast(e,t)}}update(e){const t=this.levels;if(t.length>1){Aa.setFromMatrixPosition(e.matrixWorld),tf.setFromMatrixPosition(this.matrixWorld);const n=Aa.distanceTo(tf)/e.zoom;t[0].object.visible=!0;let i,s;for(i=1,s=t.length;i<s&&n>=t[i].distance;i++)t[i-1].object.visible=!1,t[i].object.visible=!0;for(this._currentLevel=i-1;i<s;i++)t[i].object.visible=!1}}toJSON(e){const t=super.toJSON(e);this.autoUpdate===!1&&(t.object.autoUpdate=!1),t.object.levels=[];const n=this.levels;for(let i=0,s=n.length;i<s;i++){const r=n[i];t.object.levels.push({object:r.object.uuid,distance:r.distance})}return t}}const nf=new I,sf=new dt,rf=new dt,X_=new I,of=new Ne;class Wo extends Rt{constructor(e,t){super(e,t),this.isSkinnedMesh=!0,this.type=\"SkinnedMesh\",this.bindMode=\"attached\",this.bindMatrix=new Ne,this.bindMatrixInverse=new Ne}copy(e,t){return super.copy(e,t),this.bindMode=e.bindMode,this.bindMatrix.copy(e.bindMatrix),this.bindMatrixInverse.copy(e.bindMatrixInverse),this.skeleton=e.skeleton,this}bind(e,t){this.skeleton=e,t===void 0&&(this.updateMatrixWorld(!0),this.skeleton.calculateInverses(),t=this.matrixWorld),this.bindMatrix.copy(t),this.bindMatrixInverse.copy(t).invert()}pose(){this.skeleton.pose()}normalizeSkinWeights(){const e=new dt,t=this.geometry.attributes.skinWeight;for(let n=0,i=t.count;n<i;n++){e.fromBufferAttribute(t,n);const s=1/e.manhattanLength();s!==1/0?e.multiplyScalar(s):e.set(1,0,0,0),t.setXYZW(n,e.x,e.y,e.z,e.w)}}updateMatrixWorld(e){super.updateMatrixWorld(e),this.bindMode===\"attached\"?this.bindMatrixInverse.copy(this.matrixWorld).invert():this.bindMode===\"detached\"?this.bindMatrixInverse.copy(this.bindMatrix).invert():console.warn(\"THREE.SkinnedMesh: Unrecognized bindMode: \"+this.bindMode)}boneTransform(e,t){const n=this.skeleton,i=this.geometry;sf.fromBufferAttribute(i.attributes.skinIndex,e),rf.fromBufferAttribute(i.attributes.skinWeight,e),nf.copy(t).applyMatrix4(this.bindMatrix),t.set(0,0,0);for(let s=0;s<4;s++){const r=rf.getComponent(s);if(r!==0){const o=sf.getComponent(s);of.multiplyMatrices(n.bones[o].matrixWorld,n.boneInverses[o]),t.addScaledVector(X_.copy(nf).applyMatrix4(of),r)}}return t.applyMatrix4(this.bindMatrixInverse)}}class Ds extends pt{constructor(){super(),this.isBone=!0,this.type=\"Bone\"}}class vr extends It{constructor(e=null,t=1,n=1,i,s,r,o,l,c=Gt,h=Gt,u,f){super(null,r,o,l,c,h,i,s,u,f),this.isDataTexture=!0,this.image={data:e,width:t,height:n},this.generateMipmaps=!1,this.flipY=!1,this.unpackAlignment=1}}const af=new Ne,j_=new Ne;class Gs{constructor(e=[],t=[]){this.uuid=En(),this.bones=e.slice(0),this.boneInverses=t,this.boneMatrices=null,this.boneTexture=null,this.boneTextureSize=0,this.frame=-1,this.init()}init(){const e=this.bones,t=this.boneInverses;if(this.boneMatrices=new Float32Array(e.length*16),t.length===0)this.calculateInverses();else if(e.length!==t.length){console.warn(\"THREE.Skeleton: Number of inverse bone matrices does not match amount of bones.\"),this.boneInverses=[];for(let n=0,i=this.bones.length;n<i;n++)this.boneInverses.push(new Ne)}}calculateInverses(){this.boneInverses.length=0;for(let e=0,t=this.bones.length;e<t;e++){const n=new Ne;this.bones[e]&&n.copy(this.bones[e].matrixWorld).invert(),this.boneInverses.push(n)}}pose(){for(let e=0,t=this.bones.length;e<t;e++){const n=this.bones[e];n&&n.matrixWorld.copy(this.boneInverses[e]).invert()}for(let e=0,t=this.bones.length;e<t;e++){const n=this.bones[e];n&&(n.parent&&n.parent.isBone?(n.matrix.copy(n.parent.matrixWorld).invert(),n.matrix.multiply(n.matrixWorld)):n.matrix.copy(n.matrixWorld),n.matrix.decompose(n.position,n.quaternion,n.scale))}}update(){const e=this.bones,t=this.boneInverses,n=this.boneMatrices,i=this.boneTexture;for(let s=0,r=e.length;s<r;s++){const o=e[s]?e[s].matrixWorld:j_;af.multiplyMatrices(o,t[s]),af.toArray(n,s*16)}i!==null&&(i.needsUpdate=!0)}clone(){return new Gs(this.bones,this.boneInverses)}computeBoneTexture(){let e=Math.sqrt(this.bones.length*4);e=cp(e),e=Math.max(e,4);const t=new Float32Array(e*e*4);t.set(this.boneMatrices);const n=new vr(t,e,e,An,xi);return n.needsUpdate=!0,this.boneMatrices=t,this.boneTexture=n,this.boneTextureSize=e,this}getBoneByName(e){for(let t=0,n=this.bones.length;t<n;t++){const i=this.bones[t];if(i.name===e)return i}}dispose(){this.boneTexture!==null&&(this.boneTexture.dispose(),this.boneTexture=null)}fromJSON(e,t){this.uuid=e.uuid;for(let n=0,i=e.bones.length;n<i;n++){const s=e.bones[n];let r=t[s];r===void 0&&(console.warn(\"THREE.Skeleton: No bone found with UUID:\",s),r=new Ds),this.bones.push(r),this.boneInverses.push(new Ne().fromArray(e.boneInverses[n]))}return this.init(),this}toJSON(){const e={metadata:{version:4.5,type:\"Skeleton\",generator:\"Skeleton.toJSON\"},bones:[],boneInverses:[]};e.uuid=this.uuid;const t=this.bones,n=this.boneInverses;for(let i=0,s=t.length;i<s;i++){const r=t[i];e.bones.push(r.uuid);const o=n[i];e.boneInverses.push(o.toArray())}return e}}class Ar extends mt{constructor(e,t,n,i=1){typeof n==\"number\"&&(i=n,n=!1,console.error(\"THREE.InstancedBufferAttribute: The constructor now expects normalized as the third argument.\")),super(e,t,n),this.isInstancedBufferAttribute=!0,this.meshPerAttribute=i}copy(e){return super.copy(e),this.meshPerAttribute=e.meshPerAttribute,this}toJSON(){const e=super.toJSON();return e.meshPerAttribute=this.meshPerAttribute,e.isInstancedBufferAttribute=!0,e}}const lf=new Ne,cf=new Ne,Ea=[],ao=new Rt;class Ep extends Rt{constructor(e,t,n){super(e,t),this.isInstancedMesh=!0,this.instanceMatrix=new Ar(new Float32Array(n*16),16),this.instanceColor=null,this.count=n,this.frustumCulled=!1}copy(e,t){return super.copy(e,t),this.instanceMatrix.copy(e.instanceMatrix),e.instanceColor!==null&&(this.instanceColor=e.instanceColor.clone()),this.count=e.count,this}getColorAt(e,t){t.fromArray(this.instanceColor.array,e*3)}getMatrixAt(e,t){t.fromArray(this.instanceMatrix.array,e*16)}raycast(e,t){const n=this.matrixWorld,i=this.count;if(ao.geometry=this.geometry,ao.material=this.material,ao.material!==void 0)for(let s=0;s<i;s++){this.getMatrixAt(s,lf),cf.multiplyMatrices(n,lf),ao.matrixWorld=cf,ao.raycast(e,Ea);for(let r=0,o=Ea.length;r<o;r++){const l=Ea[r];l.instanceId=s,l.object=this,t.push(l)}Ea.length=0}}setColorAt(e,t){this.instanceColor===null&&(this.instanceColor=new Ar(new Float32Array(this.instanceMatrix.count*3),3)),t.toArray(this.instanceColor.array,e*3)}setMatrixAt(e,t){t.toArray(this.instanceMatrix.array,e*16)}updateMorphTargets(){}dispose(){this.dispatchEvent({type:\"dispose\"})}}class qt extends Wt{constructor(e){super(),this.isLineBasicMaterial=!0,this.type=\"LineBasicMaterial\",this.color=new we(16777215),this.linewidth=1,this.linecap=\"round\",this.linejoin=\"round\",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.linewidth=e.linewidth,this.linecap=e.linecap,this.linejoin=e.linejoin,this.fog=e.fog,this}}const uf=new I,hf=new I,ff=new Ne,dc=new Go,Ca=new is;class jn extends pt{constructor(e=new Xe,t=new qt){super(),this.isLine=!0,this.type=\"Line\",this.geometry=e,this.material=t,this.updateMorphTargets()}copy(e,t){return super.copy(e,t),this.material=e.material,this.geometry=e.geometry,this}computeLineDistances(){const e=this.geometry;if(e.index===null){const t=e.attributes.position,n=[0];for(let i=1,s=t.count;i<s;i++)uf.fromBufferAttribute(t,i-1),hf.fromBufferAttribute(t,i),n[i]=n[i-1],n[i]+=uf.distanceTo(hf);e.setAttribute(\"lineDistance\",new Ce(n,1))}else console.warn(\"THREE.Line.computeLineDistances(): Computation only possible with non-indexed BufferGeometry.\");return this}raycast(e,t){const n=this.geometry,i=this.matrixWorld,s=e.params.Line.threshold,r=n.drawRange;if(n.boundingSphere===null&&n.computeBoundingSphere(),Ca.copy(n.boundingSphere),Ca.applyMatrix4(i),Ca.radius+=s,e.ray.intersectsSphere(Ca)===!1)return;ff.copy(i).invert(),dc.copy(e.ray).applyMatrix4(ff);const o=s/((this.scale.x+this.scale.y+this.scale.z)/3),l=o*o,c=new I,h=new I,u=new I,f=new I,d=this.isLineSegments?2:1,p=n.index,g=n.attributes.position;if(p!==null){const y=Math.max(0,r.start),x=Math.min(p.count,r.start+r.count);for(let b=y,v=x-1;b<v;b+=d){const M=p.getX(b),T=p.getX(b+1);if(c.fromBufferAttribute(g,M),h.fromBufferAttribute(g,T),dc.distanceSqToSegment(c,h,f,u)>l)continue;f.applyMatrix4(this.matrixWorld);const _=e.ray.origin.distanceTo(f);_<e.near||_>e.far||t.push({distance:_,point:u.clone().applyMatrix4(this.matrixWorld),index:b,face:null,faceIndex:null,object:this})}}else{const y=Math.max(0,r.start),x=Math.min(g.count,r.start+r.count);for(let b=y,v=x-1;b<v;b+=d){if(c.fromBufferAttribute(g,b),h.fromBufferAttribute(g,b+1),dc.distanceSqToSegment(c,h,f,u)>l)continue;f.applyMatrix4(this.matrixWorld);const T=e.ray.origin.distanceTo(f);T<e.near||T>e.far||t.push({distance:T,point:u.clone().applyMatrix4(this.matrixWorld),index:b,face:null,faceIndex:null,object:this})}}}updateMorphTargets(){const t=this.geometry.morphAttributes,n=Object.keys(t);if(n.length>0){const i=t[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,r=i.length;s<r;s++){const o=i[s].name||String(s);this.morphTargetInfluences.push(0),this.morphTargetDictionary[o]=s}}}}}const df=new I,pf=new I;class wn extends jn{constructor(e,t){super(e,t),this.isLineSegments=!0,this.type=\"LineSegments\"}computeLineDistances(){const e=this.geometry;if(e.index===null){const t=e.attributes.position,n=[];for(let i=0,s=t.count;i<s;i+=2)df.fromBufferAttribute(t,i),pf.fromBufferAttribute(t,i+1),n[i]=i===0?0:n[i-1],n[i+1]=n[i]+df.distanceTo(pf);e.setAttribute(\"lineDistance\",new Ce(n,1))}else console.warn(\"THREE.LineSegments.computeLineDistances(): Computation only possible with non-indexed BufferGeometry.\");return this}}class ku extends jn{constructor(e,t){super(e,t),this.isLineLoop=!0,this.type=\"LineLoop\"}}class qi extends Wt{constructor(e){super(),this.isPointsMaterial=!0,this.type=\"PointsMaterial\",this.color=new we(16777215),this.map=null,this.alphaMap=null,this.size=1,this.sizeAttenuation=!0,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.alphaMap=e.alphaMap,this.size=e.size,this.sizeAttenuation=e.sizeAttenuation,this.fog=e.fog,this}}const mf=new Ne,ru=new Go,La=new is,Ra=new I;class _r extends pt{constructor(e=new Xe,t=new qi){super(),this.isPoints=!0,this.type=\"Points\",this.geometry=e,this.material=t,this.updateMorphTargets()}copy(e,t){return super.copy(e,t),this.material=e.material,this.geometry=e.geometry,this}raycast(e,t){const n=this.geometry,i=this.matrixWorld,s=e.params.Points.threshold,r=n.drawRange;if(n.boundingSphere===null&&n.computeBoundingSphere(),La.copy(n.boundingSphere),La.applyMatrix4(i),La.radius+=s,e.ray.intersectsSphere(La)===!1)return;mf.copy(i).invert(),ru.copy(e.ray).applyMatrix4(mf);const o=s/((this.scale.x+this.scale.y+this.scale.z)/3),l=o*o,c=n.index,u=n.attributes.position;if(c!==null){const f=Math.max(0,r.start),d=Math.min(c.count,r.start+r.count);for(let p=f,m=d;p<m;p++){const g=c.getX(p);Ra.fromBufferAttribute(u,g),gf(Ra,g,l,i,e,t,this)}}else{const f=Math.max(0,r.start),d=Math.min(u.count,r.start+r.count);for(let p=f,m=d;p<m;p++)Ra.fromBufferAttribute(u,p),gf(Ra,p,l,i,e,t,this)}}updateMorphTargets(){const t=this.geometry.morphAttributes,n=Object.keys(t);if(n.length>0){const i=t[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,r=i.length;s<r;s++){const o=i[s].name||String(s);this.morphTargetInfluences.push(0),this.morphTargetDictionary[o]=s}}}}}function gf(a,e,t,n,i,s,r){const o=ru.distanceSqToPoint(a);if(o<t){const l=new I;ru.closestPointToPoint(a,l),l.applyMatrix4(n);const c=i.ray.origin.distanceTo(l);if(c<i.near||c>i.far)return;s.push({distance:c,distanceToRay:Math.sqrt(o),point:l,index:e,face:null,object:r})}}class Y_ extends It{constructor(e,t,n,i,s,r,o,l,c){super(e,t,n,i,s,r,o,l,c),this.isVideoTexture=!0,this.minFilter=r!==void 0?r:Ft,this.magFilter=s!==void 0?s:Ft,this.generateMipmaps=!1;const h=this;function u(){h.needsUpdate=!0,e.requestVideoFrameCallback(u)}\"requestVideoFrameCallback\"in e&&e.requestVideoFrameCallback(u)}clone(){return new this.constructor(this.image).copy(this)}update(){const e=this.image;\"requestVideoFrameCallback\"in e===!1&&e.readyState>=e.HAVE_CURRENT_DATA&&(this.needsUpdate=!0)}}class Z_ extends It{constructor(e,t,n){super({width:e,height:t}),this.isFramebufferTexture=!0,this.format=n,this.magFilter=Gt,this.minFilter=Gt,this.generateMipmaps=!1,this.needsUpdate=!0}}class Cp extends It{constructor(e,t,n,i,s,r,o,l,c,h,u,f){super(null,r,o,l,c,h,i,s,u,f),this.isCompressedTexture=!0,this.image={width:t,height:n},this.mipmaps=e,this.flipY=!1,this.generateMipmaps=!1}}class K_ extends It{constructor(e,t,n,i,s,r,o,l,c){super(e,t,n,i,s,r,o,l,c),this.isCanvasTexture=!0,this.needsUpdate=!0}}class Gn{constructor(){this.type=\"Curve\",this.arcLengthDivisions=200}getPoint(){return console.warn(\"THREE.Curve: .getPoint() not implemented.\"),null}getPointAt(e,t){const n=this.getUtoTmapping(e);return this.getPoint(n,t)}getPoints(e=5){const t=[];for(let n=0;n<=e;n++)t.push(this.getPoint(n/e));return t}getSpacedPoints(e=5){const t=[];for(let n=0;n<=e;n++)t.push(this.getPointAt(n/e));return t}getLength(){const e=this.getLengths();return e[e.length-1]}getLengths(e=this.arcLengthDivisions){if(this.cacheArcLengths&&this.cacheArcLengths.length===e+1&&!this.needsUpdate)return this.cacheArcLengths;this.needsUpdate=!1;const t=[];let n,i=this.getPoint(0),s=0;t.push(0);for(let r=1;r<=e;r++)n=this.getPoint(r/e),s+=n.distanceTo(i),t.push(s),i=n;return this.cacheArcLengths=t,t}updateArcLengths(){this.needsUpdate=!0,this.getLengths()}getUtoTmapping(e,t){const n=this.getLengths();let i=0;const s=n.length;let r;t?r=t:r=e*n[s-1];let o=0,l=s-1,c;for(;o<=l;)if(i=Math.floor(o+(l-o)/2),c=n[i]-r,c<0)o=i+1;else if(c>0)l=i-1;else{l=i;break}if(i=l,n[i]===r)return i/(s-1);const h=n[i],f=n[i+1]-h,d=(r-h)/f;return(i+d)/(s-1)}getTangent(e,t){let i=e-1e-4,s=e+1e-4;i<0&&(i=0),s>1&&(s=1);const r=this.getPoint(i),o=this.getPoint(s),l=t||(r.isVector2?new fe:new I);return l.copy(o).sub(r).normalize(),l}getTangentAt(e,t){const n=this.getUtoTmapping(e);return this.getTangent(n,t)}computeFrenetFrames(e,t){const n=new I,i=[],s=[],r=[],o=new I,l=new Ne;for(let d=0;d<=e;d++){const p=d/e;i[d]=this.getTangentAt(p,new I)}s[0]=new I,r[0]=new I;let c=Number.MAX_VALUE;const h=Math.abs(i[0].x),u=Math.abs(i[0].y),f=Math.abs(i[0].z);h<=c&&(c=h,n.set(1,0,0)),u<=c&&(c=u,n.set(0,1,0)),f<=c&&n.set(0,0,1),o.crossVectors(i[0],n).normalize(),s[0].crossVectors(i[0],o),r[0].crossVectors(i[0],s[0]);for(let d=1;d<=e;d++){if(s[d]=s[d-1].clone(),r[d]=r[d-1].clone(),o.crossVectors(i[d-1],i[d]),o.length()>Number.EPSILON){o.normalize();const p=Math.acos(Vt(i[d-1].dot(i[d]),-1,1));s[d].applyMatrix4(l.makeRotationAxis(o,p))}r[d].crossVectors(i[d],s[d])}if(t===!0){let d=Math.acos(Vt(s[0].dot(s[e]),-1,1));d/=e,i[0].dot(o.crossVectors(s[0],s[e]))>0&&(d=-d);for(let p=1;p<=e;p++)s[p].applyMatrix4(l.makeRotationAxis(i[p],d*p)),r[p].crossVectors(i[p],s[p])}return{tangents:i,normals:s,binormals:r}}clone(){return new this.constructor().copy(this)}copy(e){return this.arcLengthDivisions=e.arcLengthDivisions,this}toJSON(){const e={metadata:{version:4.5,type:\"Curve\",generator:\"Curve.toJSON\"}};return e.arcLengthDivisions=this.arcLengthDivisions,e.type=this.type,e}fromJSON(e){return this.arcLengthDivisions=e.arcLengthDivisions,this}}class Ll extends Gn{constructor(e=0,t=0,n=1,i=1,s=0,r=Math.PI*2,o=!1,l=0){super(),this.isEllipseCurve=!0,this.type=\"EllipseCurve\",this.aX=e,this.aY=t,this.xRadius=n,this.yRadius=i,this.aStartAngle=s,this.aEndAngle=r,this.aClockwise=o,this.aRotation=l}getPoint(e,t){const n=t||new fe,i=Math.PI*2;let s=this.aEndAngle-this.aStartAngle;const r=Math.abs(s)<Number.EPSILON;for(;s<0;)s+=i;for(;s>i;)s-=i;s<Number.EPSILON&&(r?s=0:s=i),this.aClockwise===!0&&!r&&(s===i?s=-i:s=s-i);const o=this.aStartAngle+e*s;let l=this.aX+this.xRadius*Math.cos(o),c=this.aY+this.yRadius*Math.sin(o);if(this.aRotation!==0){const h=Math.cos(this.aRotation),u=Math.sin(this.aRotation),f=l-this.aX,d=c-this.aY;l=f*h-d*u+this.aX,c=f*u+d*h+this.aY}return n.set(l,c)}copy(e){return super.copy(e),this.aX=e.aX,this.aY=e.aY,this.xRadius=e.xRadius,this.yRadius=e.yRadius,this.aStartAngle=e.aStartAngle,this.aEndAngle=e.aEndAngle,this.aClockwise=e.aClockwise,this.aRotation=e.aRotation,this}toJSON(){const e=super.toJSON();return e.aX=this.aX,e.aY=this.aY,e.xRadius=this.xRadius,e.yRadius=this.yRadius,e.aStartAngle=this.aStartAngle,e.aEndAngle=this.aEndAngle,e.aClockwise=this.aClockwise,e.aRotation=this.aRotation,e}fromJSON(e){return super.fromJSON(e),this.aX=e.aX,this.aY=e.aY,this.xRadius=e.xRadius,this.yRadius=e.yRadius,this.aStartAngle=e.aStartAngle,this.aEndAngle=e.aEndAngle,this.aClockwise=e.aClockwise,this.aRotation=e.aRotation,this}}class Lp extends Ll{constructor(e,t,n,i,s,r){super(e,t,n,n,i,s,r),this.isArcCurve=!0,this.type=\"ArcCurve\"}}function Ou(){let a=0,e=0,t=0,n=0;function i(s,r,o,l){a=s,e=o,t=-3*s+3*r-2*o-l,n=2*s-2*r+o+l}return{initCatmullRom:function(s,r,o,l,c){i(r,o,c*(o-s),c*(l-r))},initNonuniformCatmullRom:function(s,r,o,l,c,h,u){let f=(r-s)/c-(o-s)/(c+h)+(o-r)/h,d=(o-r)/h-(l-r)/(h+u)+(l-o)/u;f*=h,d*=h,i(r,o,f,d)},calc:function(s){const r=s*s,o=r*s;return a+e*s+t*r+n*o}}}const Ia=new I,pc=new Ou,mc=new Ou,gc=new Ou;class Rp extends Gn{constructor(e=[],t=!1,n=\"centripetal\",i=.5){super(),this.isCatmullRomCurve3=!0,this.type=\"CatmullRomCurve3\",this.points=e,this.closed=t,this.curveType=n,this.tension=i}getPoint(e,t=new I){const n=t,i=this.points,s=i.length,r=(s-(this.closed?0:1))*e;let o=Math.floor(r),l=r-o;this.closed?o+=o>0?0:(Math.floor(Math.abs(o)/s)+1)*s:l===0&&o===s-1&&(o=s-2,l=1);let c,h;this.closed||o>0?c=i[(o-1)%s]:(Ia.subVectors(i[0],i[1]).add(i[0]),c=Ia);const u=i[o%s],f=i[(o+1)%s];if(this.closed||o+2<s?h=i[(o+2)%s]:(Ia.subVectors(i[s-1],i[s-2]).add(i[s-1]),h=Ia),this.curveType===\"centripetal\"||this.curveType===\"chordal\"){const d=this.curveType===\"chordal\"?.5:.25;let p=Math.pow(c.distanceToSquared(u),d),m=Math.pow(u.distanceToSquared(f),d),g=Math.pow(f.distanceToSquared(h),d);m<1e-4&&(m=1),p<1e-4&&(p=m),g<1e-4&&(g=m),pc.initNonuniformCatmullRom(c.x,u.x,f.x,h.x,p,m,g),mc.initNonuniformCatmullRom(c.y,u.y,f.y,h.y,p,m,g),gc.initNonuniformCatmullRom(c.z,u.z,f.z,h.z,p,m,g)}else this.curveType===\"catmullrom\"&&(pc.initCatmullRom(c.x,u.x,f.x,h.x,this.tension),mc.initCatmullRom(c.y,u.y,f.y,h.y,this.tension),gc.initCatmullRom(c.z,u.z,f.z,h.z,this.tension));return n.set(pc.calc(l),mc.calc(l),gc.calc(l)),n}copy(e){super.copy(e),this.points=[];for(let t=0,n=e.points.length;t<n;t++){const i=e.points[t];this.points.push(i.clone())}return this.closed=e.closed,this.curveType=e.curveType,this.tension=e.tension,this}toJSON(){const e=super.toJSON();e.points=[];for(let t=0,n=this.points.length;t<n;t++){const i=this.points[t];e.points.push(i.toArray())}return e.closed=this.closed,e.curveType=this.curveType,e.tension=this.tension,e}fromJSON(e){super.fromJSON(e),this.points=[];for(let t=0,n=e.points.length;t<n;t++){const i=e.points[t];this.points.push(new I().fromArray(i))}return this.closed=e.closed,this.curveType=e.curveType,this.tension=e.tension,this}}function yf(a,e,t,n,i){const s=(n-e)*.5,r=(i-t)*.5,o=a*a,l=a*o;return(2*t-2*n+s+r)*l+(-3*t+3*n-2*s-r)*o+s*a+t}function J_(a,e){const t=1-a;return t*t*e}function $_(a,e){return 2*(1-a)*a*e}function Q_(a,e){return a*a*e}function xo(a,e,t,n){return J_(a,e)+$_(a,t)+Q_(a,n)}function eb(a,e){const t=1-a;return t*t*t*e}function tb(a,e){const t=1-a;return 3*t*t*a*e}function nb(a,e){return 3*(1-a)*a*a*e}function ib(a,e){return a*a*a*e}function vo(a,e,t,n,i){return eb(a,e)+tb(a,t)+nb(a,n)+ib(a,i)}class Bu extends Gn{constructor(e=new fe,t=new fe,n=new fe,i=new fe){super(),this.isCubicBezierCurve=!0,this.type=\"CubicBezierCurve\",this.v0=e,this.v1=t,this.v2=n,this.v3=i}getPoint(e,t=new fe){const n=t,i=this.v0,s=this.v1,r=this.v2,o=this.v3;return n.set(vo(e,i.x,s.x,r.x,o.x),vo(e,i.y,s.y,r.y,o.y)),n}copy(e){return super.copy(e),this.v0.copy(e.v0),this.v1.copy(e.v1),this.v2.copy(e.v2),this.v3.copy(e.v3),this}toJSON(){const e=super.toJSON();return e.v0=this.v0.toArray(),e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e.v3=this.v3.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v0.fromArray(e.v0),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this.v3.fromArray(e.v3),this}}class Ip extends Gn{constructor(e=new I,t=new I,n=new I,i=new I){super(),this.isCubicBezierCurve3=!0,this.type=\"CubicBezierCurve3\",this.v0=e,this.v1=t,this.v2=n,this.v3=i}getPoint(e,t=new I){const n=t,i=this.v0,s=this.v1,r=this.v2,o=this.v3;return n.set(vo(e,i.x,s.x,r.x,o.x),vo(e,i.y,s.y,r.y,o.y),vo(e,i.z,s.z,r.z,o.z)),n}copy(e){return super.copy(e),this.v0.copy(e.v0),this.v1.copy(e.v1),this.v2.copy(e.v2),this.v3.copy(e.v3),this}toJSON(){const e=super.toJSON();return e.v0=this.v0.toArray(),e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e.v3=this.v3.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v0.fromArray(e.v0),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this.v3.fromArray(e.v3),this}}class Rl extends Gn{constructor(e=new fe,t=new fe){super(),this.isLineCurve=!0,this.type=\"LineCurve\",this.v1=e,this.v2=t}getPoint(e,t=new fe){const n=t;return e===1?n.copy(this.v2):(n.copy(this.v2).sub(this.v1),n.multiplyScalar(e).add(this.v1)),n}getPointAt(e,t){return this.getPoint(e,t)}getTangent(e,t){const n=t||new fe;return n.copy(this.v2).sub(this.v1).normalize(),n}copy(e){return super.copy(e),this.v1.copy(e.v1),this.v2.copy(e.v2),this}toJSON(){const e=super.toJSON();return e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this}}class Pp extends Gn{constructor(e=new I,t=new I){super(),this.isLineCurve3=!0,this.type=\"LineCurve3\",this.v1=e,this.v2=t}getPoint(e,t=new I){const n=t;return e===1?n.copy(this.v2):(n.copy(this.v2).sub(this.v1),n.multiplyScalar(e).add(this.v1)),n}getPointAt(e,t){return this.getPoint(e,t)}copy(e){return super.copy(e),this.v1.copy(e.v1),this.v2.copy(e.v2),this}toJSON(){const e=super.toJSON();return e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this}}class zu extends Gn{constructor(e=new fe,t=new fe,n=new fe){super(),this.isQuadraticBezierCurve=!0,this.type=\"QuadraticBezierCurve\",this.v0=e,this.v1=t,this.v2=n}getPoint(e,t=new fe){const n=t,i=this.v0,s=this.v1,r=this.v2;return n.set(xo(e,i.x,s.x,r.x),xo(e,i.y,s.y,r.y)),n}copy(e){return super.copy(e),this.v0.copy(e.v0),this.v1.copy(e.v1),this.v2.copy(e.v2),this}toJSON(){const e=super.toJSON();return e.v0=this.v0.toArray(),e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v0.fromArray(e.v0),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this}}class Uu extends Gn{constructor(e=new I,t=new I,n=new I){super(),this.isQuadraticBezierCurve3=!0,this.type=\"QuadraticBezierCurve3\",this.v0=e,this.v1=t,this.v2=n}getPoint(e,t=new I){const n=t,i=this.v0,s=this.v1,r=this.v2;return n.set(xo(e,i.x,s.x,r.x),xo(e,i.y,s.y,r.y),xo(e,i.z,s.z,r.z)),n}copy(e){return super.copy(e),this.v0.copy(e.v0),this.v1.copy(e.v1),this.v2.copy(e.v2),this}toJSON(){const e=super.toJSON();return e.v0=this.v0.toArray(),e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v0.fromArray(e.v0),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this}}class Gu extends Gn{constructor(e=[]){super(),this.isSplineCurve=!0,this.type=\"SplineCurve\",this.points=e}getPoint(e,t=new fe){const n=t,i=this.points,s=(i.length-1)*e,r=Math.floor(s),o=s-r,l=i[r===0?r:r-1],c=i[r],h=i[r>i.length-2?i.length-1:r+1],u=i[r>i.length-3?i.length-1:r+2];return n.set(yf(o,l.x,c.x,h.x,u.x),yf(o,l.y,c.y,h.y,u.y)),n}copy(e){super.copy(e),this.points=[];for(let t=0,n=e.points.length;t<n;t++){const i=e.points[t];this.points.push(i.clone())}return this}toJSON(){const e=super.toJSON();e.points=[];for(let t=0,n=this.points.length;t<n;t++){const i=this.points[t];e.points.push(i.toArray())}return e}fromJSON(e){super.fromJSON(e),this.points=[];for(let t=0,n=e.points.length;t<n;t++){const i=e.points[t];this.points.push(new fe().fromArray(i))}return this}}var Vu=Object.freeze({__proto__:null,ArcCurve:Lp,CatmullRomCurve3:Rp,CubicBezierCurve:Bu,CubicBezierCurve3:Ip,EllipseCurve:Ll,LineCurve:Rl,LineCurve3:Pp,QuadraticBezierCurve:zu,QuadraticBezierCurve3:Uu,SplineCurve:Gu});class Dp extends Gn{constructor(){super(),this.type=\"CurvePath\",this.curves=[],this.autoClose=!1}add(e){this.curves.push(e)}closePath(){const e=this.curves[0].getPoint(0),t=this.curves[this.curves.length-1].getPoint(1);e.equals(t)||this.curves.push(new Rl(t,e))}getPoint(e,t){const n=e*this.getLength(),i=this.getCurveLengths();let s=0;for(;s<i.length;){if(i[s]>=n){const r=i[s]-n,o=this.curves[s],l=o.getLength(),c=l===0?0:1-r/l;return o.getPointAt(c,t)}s++}return null}getLength(){const e=this.getCurveLengths();return e[e.length-1]}updateArcLengths(){this.needsUpdate=!0,this.cacheLengths=null,this.getCurveLengths()}getCurveLengths(){if(this.cacheLengths&&this.cacheLengths.length===this.curves.length)return this.cacheLengths;const e=[];let t=0;for(let n=0,i=this.curves.length;n<i;n++)t+=this.curves[n].getLength(),e.push(t);return this.cacheLengths=e,e}getSpacedPoints(e=40){const t=[];for(let n=0;n<=e;n++)t.push(this.getPoint(n/e));return this.autoClose&&t.push(t[0]),t}getPoints(e=12){const t=[];let n;for(let i=0,s=this.curves;i<s.length;i++){const r=s[i],o=r.isEllipseCurve?e*2:r.isLineCurve||r.isLineCurve3?1:r.isSplineCurve?e*r.points.length:e,l=r.getPoints(o);for(let c=0;c<l.length;c++){const h=l[c];n&&n.equals(h)||(t.push(h),n=h)}}return this.autoClose&&t.length>1&&!t[t.length-1].equals(t[0])&&t.push(t[0]),t}copy(e){super.copy(e),this.curves=[];for(let t=0,n=e.curves.length;t<n;t++){const i=e.curves[t];this.curves.push(i.clone())}return this.autoClose=e.autoClose,this}toJSON(){const e=super.toJSON();e.autoClose=this.autoClose,e.curves=[];for(let t=0,n=this.curves.length;t<n;t++){const i=this.curves[t];e.curves.push(i.toJSON())}return e}fromJSON(e){super.fromJSON(e),this.autoClose=e.autoClose,this.curves=[];for(let t=0,n=e.curves.length;t<n;t++){const i=e.curves[t];this.curves.push(new Vu[i.type]().fromJSON(i))}return this}}class Lo extends Dp{constructor(e){super(),this.type=\"Path\",this.currentPoint=new fe,e&&this.setFromPoints(e)}setFromPoints(e){this.moveTo(e[0].x,e[0].y);for(let t=1,n=e.length;t<n;t++)this.lineTo(e[t].x,e[t].y);return this}moveTo(e,t){return this.currentPoint.set(e,t),this}lineTo(e,t){const n=new Rl(this.currentPoint.clone(),new fe(e,t));return this.curves.push(n),this.currentPoint.set(e,t),this}quadraticCurveTo(e,t,n,i){const s=new zu(this.currentPoint.clone(),new fe(e,t),new fe(n,i));return this.curves.push(s),this.currentPoint.set(n,i),this}bezierCurveTo(e,t,n,i,s,r){const o=new Bu(this.currentPoint.clone(),new fe(e,t),new fe(n,i),new fe(s,r));return this.curves.push(o),this.currentPoint.set(s,r),this}splineThru(e){const t=[this.currentPoint.clone()].concat(e),n=new Gu(t);return this.curves.push(n),this.currentPoint.copy(e[e.length-1]),this}arc(e,t,n,i,s,r){const o=this.currentPoint.x,l=this.currentPoint.y;return this.absarc(e+o,t+l,n,i,s,r),this}absarc(e,t,n,i,s,r){return this.absellipse(e,t,n,n,i,s,r),this}ellipse(e,t,n,i,s,r,o,l){const c=this.currentPoint.x,h=this.currentPoint.y;return this.absellipse(e+c,t+h,n,i,s,r,o,l),this}absellipse(e,t,n,i,s,r,o,l){const c=new Ll(e,t,n,i,s,r,o,l);if(this.curves.length>0){const u=c.getPoint(0);u.equals(this.currentPoint)||this.lineTo(u.x,u.y)}this.curves.push(c);const h=c.getPoint(1);return this.currentPoint.copy(h),this}copy(e){return super.copy(e),this.currentPoint.copy(e.currentPoint),this}toJSON(){const e=super.toJSON();return e.currentPoint=this.currentPoint.toArray(),e}fromJSON(e){return super.fromJSON(e),this.currentPoint.fromArray(e.currentPoint),this}}class Fs extends Xe{constructor(e=[new fe(0,-.5),new fe(.5,0),new fe(0,.5)],t=12,n=0,i=Math.PI*2){super(),this.type=\"LatheGeometry\",this.parameters={points:e,segments:t,phiStart:n,phiLength:i},t=Math.floor(t),i=Vt(i,0,Math.PI*2);const s=[],r=[],o=[],l=[],c=[],h=1/t,u=new I,f=new fe,d=new I,p=new I,m=new I;let g=0,y=0;for(let x=0;x<=e.length-1;x++)switch(x){case 0:g=e[x+1].x-e[x].x,y=e[x+1].y-e[x].y,d.x=y*1,d.y=-g,d.z=y*0,m.copy(d),d.normalize(),l.push(d.x,d.y,d.z);break;case e.length-1:l.push(m.x,m.y,m.z);break;default:g=e[x+1].x-e[x].x,y=e[x+1].y-e[x].y,d.x=y*1,d.y=-g,d.z=y*0,p.copy(d),d.x+=m.x,d.y+=m.y,d.z+=m.z,d.normalize(),l.push(d.x,d.y,d.z),m.copy(p)}for(let x=0;x<=t;x++){const b=n+x*h*i,v=Math.sin(b),M=Math.cos(b);for(let T=0;T<=e.length-1;T++){u.x=e[T].x*v,u.y=e[T].y,u.z=e[T].x*M,r.push(u.x,u.y,u.z),f.x=x/t,f.y=T/(e.length-1),o.push(f.x,f.y);const C=l[3*T+0]*v,_=l[3*T+1],E=l[3*T+0]*M;c.push(C,_,E)}}for(let x=0;x<t;x++)for(let b=0;b<e.length-1;b++){const v=b+x*e.length,M=v,T=v+e.length,C=v+e.length+1,_=v+1;s.push(M,T,_),s.push(C,_,T)}this.setIndex(s),this.setAttribute(\"position\",new Ce(r,3)),this.setAttribute(\"uv\",new Ce(o,2)),this.setAttribute(\"normal\",new Ce(c,3))}static fromJSON(e){return new Fs(e.points,e.segments,e.phiStart,e.phiLength)}}class Er extends Fs{constructor(e=1,t=1,n=4,i=8){const s=new Lo;s.absarc(0,-t/2,e,Math.PI*1.5,0),s.absarc(0,t/2,e,0,Math.PI*.5),super(s.getPoints(n),i),this.type=\"CapsuleGeometry\",this.parameters={radius:e,height:t,capSegments:n,radialSegments:i}}static fromJSON(e){return new Er(e.radius,e.length,e.capSegments,e.radialSegments)}}class Cr extends Xe{constructor(e=1,t=8,n=0,i=Math.PI*2){super(),this.type=\"CircleGeometry\",this.parameters={radius:e,segments:t,thetaStart:n,thetaLength:i},t=Math.max(3,t);const s=[],r=[],o=[],l=[],c=new I,h=new fe;r.push(0,0,0),o.push(0,0,1),l.push(.5,.5);for(let u=0,f=3;u<=t;u++,f+=3){const d=n+u/t*i;c.x=e*Math.cos(d),c.y=e*Math.sin(d),r.push(c.x,c.y,c.z),o.push(0,0,1),h.x=(r[f]/e+1)/2,h.y=(r[f+1]/e+1)/2,l.push(h.x,h.y)}for(let u=1;u<=t;u++)s.push(u,u+1,0);this.setIndex(s),this.setAttribute(\"position\",new Ce(r,3)),this.setAttribute(\"normal\",new Ce(o,3)),this.setAttribute(\"uv\",new Ce(l,2))}static fromJSON(e){return new Cr(e.radius,e.segments,e.thetaStart,e.thetaLength)}}class $i extends Xe{constructor(e=1,t=1,n=1,i=8,s=1,r=!1,o=0,l=Math.PI*2){super(),this.type=\"CylinderGeometry\",this.parameters={radiusTop:e,radiusBottom:t,height:n,radialSegments:i,heightSegments:s,openEnded:r,thetaStart:o,thetaLength:l};const c=this;i=Math.floor(i),s=Math.floor(s);const h=[],u=[],f=[],d=[];let p=0;const m=[],g=n/2;let y=0;x(),r===!1&&(e>0&&b(!0),t>0&&b(!1)),this.setIndex(h),this.setAttribute(\"position\",new Ce(u,3)),this.setAttribute(\"normal\",new Ce(f,3)),this.setAttribute(\"uv\",new Ce(d,2));function x(){const v=new I,M=new I;let T=0;const C=(t-e)/n;for(let _=0;_<=s;_++){const E=[],F=_/s,U=F*(t-e)+e;for(let q=0;q<=i;q++){const K=q/i,G=K*l+o,X=Math.sin(G),O=Math.cos(G);M.x=U*X,M.y=-F*n+g,M.z=U*O,u.push(M.x,M.y,M.z),v.set(X,C,O).normalize(),f.push(v.x,v.y,v.z),d.push(K,1-F),E.push(p++)}m.push(E)}for(let _=0;_<i;_++)for(let E=0;E<s;E++){const F=m[E][_],U=m[E+1][_],q=m[E+1][_+1],K=m[E][_+1];h.push(F,U,K),h.push(U,q,K),T+=6}c.addGroup(y,T,0),y+=T}function b(v){const M=p,T=new fe,C=new I;let _=0;const E=v===!0?e:t,F=v===!0?1:-1;for(let q=1;q<=i;q++)u.push(0,g*F,0),f.push(0,F,0),d.push(.5,.5),p++;const U=p;for(let q=0;q<=i;q++){const G=q/i*l+o,X=Math.cos(G),O=Math.sin(G);C.x=E*O,C.y=g*F,C.z=E*X,u.push(C.x,C.y,C.z),f.push(0,F,0),T.x=X*.5+.5,T.y=O*.5*F+.5,d.push(T.x,T.y),p++}for(let q=0;q<i;q++){const K=M+q,G=U+q;v===!0?h.push(G,G+1,K):h.push(G+1,G,K),_+=3}c.addGroup(y,_,v===!0?1:2),y+=_}}static fromJSON(e){return new $i(e.radiusTop,e.radiusBottom,e.height,e.radialSegments,e.heightSegments,e.openEnded,e.thetaStart,e.thetaLength)}}class Lr extends $i{constructor(e=1,t=1,n=8,i=1,s=!1,r=0,o=Math.PI*2){super(0,e,t,n,i,s,r,o),this.type=\"ConeGeometry\",this.parameters={radius:e,height:t,radialSegments:n,heightSegments:i,openEnded:s,thetaStart:r,thetaLength:o}}static fromJSON(e){return new Lr(e.radius,e.height,e.radialSegments,e.heightSegments,e.openEnded,e.thetaStart,e.thetaLength)}}class ii extends Xe{constructor(e=[],t=[],n=1,i=0){super(),this.type=\"PolyhedronGeometry\",this.parameters={vertices:e,indices:t,radius:n,detail:i};const s=[],r=[];o(i),c(n),h(),this.setAttribute(\"position\",new Ce(s,3)),this.setAttribute(\"normal\",new Ce(s.slice(),3)),this.setAttribute(\"uv\",new Ce(r,2)),i===0?this.computeVertexNormals():this.normalizeNormals();function o(x){const b=new I,v=new I,M=new I;for(let T=0;T<t.length;T+=3)d(t[T+0],b),d(t[T+1],v),d(t[T+2],M),l(b,v,M,x)}function l(x,b,v,M){const T=M+1,C=[];for(let _=0;_<=T;_++){C[_]=[];const E=x.clone().lerp(v,_/T),F=b.clone().lerp(v,_/T),U=T-_;for(let q=0;q<=U;q++)q===0&&_===T?C[_][q]=E:C[_][q]=E.clone().lerp(F,q/U)}for(let _=0;_<T;_++)for(let E=0;E<2*(T-_)-1;E++){const F=Math.floor(E/2);E%2===0?(f(C[_][F+1]),f(C[_+1][F]),f(C[_][F])):(f(C[_][F+1]),f(C[_+1][F+1]),f(C[_+1][F]))}}function c(x){const b=new I;for(let v=0;v<s.length;v+=3)b.x=s[v+0],b.y=s[v+1],b.z=s[v+2],b.normalize().multiplyScalar(x),s[v+0]=b.x,s[v+1]=b.y,s[v+2]=b.z}function h(){const x=new I;for(let b=0;b<s.length;b+=3){x.x=s[b+0],x.y=s[b+1],x.z=s[b+2];const v=g(x)/2/Math.PI+.5,M=y(x)/Math.PI+.5;r.push(v,1-M)}p(),u()}function u(){for(let x=0;x<r.length;x+=6){const b=r[x+0],v=r[x+2],M=r[x+4],T=Math.max(b,v,M),C=Math.min(b,v,M);T>.9&&C<.1&&(b<.2&&(r[x+0]+=1),v<.2&&(r[x+2]+=1),M<.2&&(r[x+4]+=1))}}function f(x){s.push(x.x,x.y,x.z)}function d(x,b){const v=x*3;b.x=e[v+0],b.y=e[v+1],b.z=e[v+2]}function p(){const x=new I,b=new I,v=new I,M=new I,T=new fe,C=new fe,_=new fe;for(let E=0,F=0;E<s.length;E+=9,F+=6){x.set(s[E+0],s[E+1],s[E+2]),b.set(s[E+3],s[E+4],s[E+5]),v.set(s[E+6],s[E+7],s[E+8]),T.set(r[F+0],r[F+1]),C.set(r[F+2],r[F+3]),_.set(r[F+4],r[F+5]),M.copy(x).add(b).add(v).divideScalar(3);const U=g(M);m(T,F+0,x,U),m(C,F+2,b,U),m(_,F+4,v,U)}}function m(x,b,v,M){M<0&&x.x===1&&(r[b]=x.x-1),v.x===0&&v.z===0&&(r[b]=M/2/Math.PI+.5)}function g(x){return Math.atan2(x.z,-x.x)}function y(x){return Math.atan2(-x.y,Math.sqrt(x.x*x.x+x.z*x.z))}}static fromJSON(e){return new ii(e.vertices,e.indices,e.radius,e.details)}}class Rr extends ii{constructor(e=1,t=0){const n=(1+Math.sqrt(5))/2,i=1/n,s=[-1,-1,-1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,-1,1,-1,1,1,1,-1,1,1,1,0,-i,-n,0,-i,n,0,i,-n,0,i,n,-i,-n,0,-i,n,0,i,-n,0,i,n,0,-n,0,-i,n,0,-i,-n,0,i,n,0,i],r=[3,11,7,3,7,15,3,15,13,7,19,17,7,17,6,7,6,15,17,4,8,17,8,10,17,10,6,8,0,16,8,16,2,8,2,10,0,12,1,0,1,18,0,18,16,6,10,2,6,2,13,6,13,15,2,16,18,2,18,3,2,3,13,18,1,9,18,9,11,18,11,3,4,14,12,4,12,0,4,0,8,11,9,5,11,5,19,11,19,7,19,5,14,19,14,4,19,4,17,1,12,14,1,14,5,1,5,9];super(s,r,e,t),this.type=\"DodecahedronGeometry\",this.parameters={radius:e,detail:t}}static fromJSON(e){return new Rr(e.radius,e.detail)}}const Pa=new I,Da=new I,yc=new I,Fa=new Fn;class Fp extends Xe{constructor(e=null,t=1){if(super(),this.type=\"EdgesGeometry\",this.parameters={geometry:e,thresholdAngle:t},e!==null){const i=Math.pow(10,4),s=Math.cos(Es*t),r=e.getIndex(),o=e.getAttribute(\"position\"),l=r?r.count:o.count,c=[0,0,0],h=[\"a\",\"b\",\"c\"],u=new Array(3),f={},d=[];for(let p=0;p<l;p+=3){r?(c[0]=r.getX(p),c[1]=r.getX(p+1),c[2]=r.getX(p+2)):(c[0]=p,c[1]=p+1,c[2]=p+2);const{a:m,b:g,c:y}=Fa;if(m.fromBufferAttribute(o,c[0]),g.fromBufferAttribute(o,c[1]),y.fromBufferAttribute(o,c[2]),Fa.getNormal(yc),u[0]=`${Math.round(m.x*i)},${Math.round(m.y*i)},${Math.round(m.z*i)}`,u[1]=`${Math.round(g.x*i)},${Math.round(g.y*i)},${Math.round(g.z*i)}`,u[2]=`${Math.round(y.x*i)},${Math.round(y.y*i)},${Math.round(y.z*i)}`,!(u[0]===u[1]||u[1]===u[2]||u[2]===u[0]))for(let x=0;x<3;x++){const b=(x+1)%3,v=u[x],M=u[b],T=Fa[h[x]],C=Fa[h[b]],_=`${v}_${M}`,E=`${M}_${v}`;E in f&&f[E]?(yc.dot(f[E].normal)<=s&&(d.push(T.x,T.y,T.z),d.push(C.x,C.y,C.z)),f[E]=null):_ in f||(f[_]={index0:c[x],index1:c[b],normal:yc.clone()})}}for(const p in f)if(f[p]){const{index0:m,index1:g}=f[p];Pa.fromBufferAttribute(o,m),Da.fromBufferAttribute(o,g),d.push(Pa.x,Pa.y,Pa.z),d.push(Da.x,Da.y,Da.z)}this.setAttribute(\"position\",new Ce(d,3))}}}class Ls extends Lo{constructor(e){super(e),this.uuid=En(),this.type=\"Shape\",this.holes=[]}getPointsHoles(e){const t=[];for(let n=0,i=this.holes.length;n<i;n++)t[n]=this.holes[n].getPoints(e);return t}extractPoints(e){return{shape:this.getPoints(e),holes:this.getPointsHoles(e)}}copy(e){super.copy(e),this.holes=[];for(let t=0,n=e.holes.length;t<n;t++){const i=e.holes[t];this.holes.push(i.clone())}return this}toJSON(){const e=super.toJSON();e.uuid=this.uuid,e.holes=[];for(let t=0,n=this.holes.length;t<n;t++){const i=this.holes[t];e.holes.push(i.toJSON())}return e}fromJSON(e){super.fromJSON(e),this.uuid=e.uuid,this.holes=[];for(let t=0,n=e.holes.length;t<n;t++){const i=e.holes[t];this.holes.push(new Lo().fromJSON(i))}return this}}const sb={triangulate:function(a,e,t=2){const n=e&&e.length,i=n?e[0]*t:a.length;let s=Np(a,0,i,t,!0);const r=[];if(!s||s.next===s.prev)return r;let o,l,c,h,u,f,d;if(n&&(s=cb(a,e,s,t)),a.length>80*t){o=c=a[0],l=h=a[1];for(let p=t;p<i;p+=t)u=a[p],f=a[p+1],u<o&&(o=u),f<l&&(l=f),u>c&&(c=u),f>h&&(h=f);d=Math.max(c-o,h-l),d=d!==0?1/d:0}return Ro(s,r,t,o,l,d),r}};function Np(a,e,t,n,i){let s,r;if(i===_b(a,e,t,n)>0)for(s=e;s<t;s+=n)r=xf(s,a[s],a[s+1],r);else for(s=t-n;s>=e;s-=n)r=xf(s,a[s],a[s+1],r);return r&&Il(r,r.next)&&(Po(r),r=r.next),r}function Qi(a,e){if(!a)return a;e||(e=a);let t=a,n;do if(n=!1,!t.steiner&&(Il(t,t.next)||Nt(t.prev,t,t.next)===0)){if(Po(t),t=e=t.prev,t===t.next)break;n=!0}else t=t.next;while(n||t!==e);return e}function Ro(a,e,t,n,i,s,r){if(!a)return;!r&&s&&pb(a,n,i,s);let o=a,l,c;for(;a.prev!==a.next;){if(l=a.prev,c=a.next,s?ob(a,n,i,s):rb(a)){e.push(l.i/t),e.push(a.i/t),e.push(c.i/t),Po(a),a=c.next,o=c.next;continue}if(a=c,a===o){r?r===1?(a=ab(Qi(a),e,t),Ro(a,e,t,n,i,s,2)):r===2&&lb(a,e,t,n,i,s):Ro(Qi(a),e,t,n,i,s,1);break}}}function rb(a){const e=a.prev,t=a,n=a.next;if(Nt(e,t,n)>=0)return!1;let i=a.next.next;for(;i!==a.prev;){if(xr(e.x,e.y,t.x,t.y,n.x,n.y,i.x,i.y)&&Nt(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function ob(a,e,t,n){const i=a.prev,s=a,r=a.next;if(Nt(i,s,r)>=0)return!1;const o=i.x<s.x?i.x<r.x?i.x:r.x:s.x<r.x?s.x:r.x,l=i.y<s.y?i.y<r.y?i.y:r.y:s.y<r.y?s.y:r.y,c=i.x>s.x?i.x>r.x?i.x:r.x:s.x>r.x?s.x:r.x,h=i.y>s.y?i.y>r.y?i.y:r.y:s.y>r.y?s.y:r.y,u=ou(o,l,e,t,n),f=ou(c,h,e,t,n);let d=a.prevZ,p=a.nextZ;for(;d&&d.z>=u&&p&&p.z<=f;){if(d!==a.prev&&d!==a.next&&xr(i.x,i.y,s.x,s.y,r.x,r.y,d.x,d.y)&&Nt(d.prev,d,d.next)>=0||(d=d.prevZ,p!==a.prev&&p!==a.next&&xr(i.x,i.y,s.x,s.y,r.x,r.y,p.x,p.y)&&Nt(p.prev,p,p.next)>=0))return!1;p=p.nextZ}for(;d&&d.z>=u;){if(d!==a.prev&&d!==a.next&&xr(i.x,i.y,s.x,s.y,r.x,r.y,d.x,d.y)&&Nt(d.prev,d,d.next)>=0)return!1;d=d.prevZ}for(;p&&p.z<=f;){if(p!==a.prev&&p!==a.next&&xr(i.x,i.y,s.x,s.y,r.x,r.y,p.x,p.y)&&Nt(p.prev,p,p.next)>=0)return!1;p=p.nextZ}return!0}function ab(a,e,t){let n=a;do{const i=n.prev,s=n.next.next;!Il(i,s)&&kp(i,n,n.next,s)&&Io(i,s)&&Io(s,i)&&(e.push(i.i/t),e.push(n.i/t),e.push(s.i/t),Po(n),Po(n.next),n=a=s),n=n.next}while(n!==a);return Qi(n)}function lb(a,e,t,n,i,s){let r=a;do{let o=r.next.next;for(;o!==r.prev;){if(r.i!==o.i&&yb(r,o)){let l=Op(r,o);r=Qi(r,r.next),l=Qi(l,l.next),Ro(r,e,t,n,i,s),Ro(l,e,t,n,i,s);return}o=o.next}r=r.next}while(r!==a)}function cb(a,e,t,n){const i=[];let s,r,o,l,c;for(s=0,r=e.length;s<r;s++)o=e[s]*n,l=s<r-1?e[s+1]*n:a.length,c=Np(a,o,l,n,!1),c===c.next&&(c.steiner=!0),i.push(gb(c));for(i.sort(ub),s=0;s<i.length;s++)hb(i[s],t),t=Qi(t,t.next);return t}function ub(a,e){return a.x-e.x}function hb(a,e){if(e=fb(a,e),e){const t=Op(e,a);Qi(e,e.next),Qi(t,t.next)}}function fb(a,e){let t=e;const n=a.x,i=a.y;let s=-1/0,r;do{if(i<=t.y&&i>=t.next.y&&t.next.y!==t.y){const f=t.x+(i-t.y)*(t.next.x-t.x)/(t.next.y-t.y);if(f<=n&&f>s){if(s=f,f===n){if(i===t.y)return t;if(i===t.next.y)return t.next}r=t.x<t.next.x?t:t.next}}t=t.next}while(t!==e);if(!r)return null;if(n===s)return r;const o=r,l=r.x,c=r.y;let h=1/0,u;t=r;do n>=t.x&&t.x>=l&&n!==t.x&&xr(i<c?n:s,i,l,c,i<c?s:n,i,t.x,t.y)&&(u=Math.abs(i-t.y)/(n-t.x),Io(t,a)&&(u<h||u===h&&(t.x>r.x||t.x===r.x&&db(r,t)))&&(r=t,h=u)),t=t.next;while(t!==o);return r}function db(a,e){return Nt(a.prev,a,e.prev)<0&&Nt(e.next,a,a.next)<0}function pb(a,e,t,n){let i=a;do i.z===null&&(i.z=ou(i.x,i.y,e,t,n)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next;while(i!==a);i.prevZ.nextZ=null,i.prevZ=null,mb(i)}function mb(a){let e,t,n,i,s,r,o,l,c=1;do{for(t=a,a=null,s=null,r=0;t;){for(r++,n=t,o=0,e=0;e<c&&(o++,n=n.nextZ,!!n);e++);for(l=c;o>0||l>0&&n;)o!==0&&(l===0||!n||t.z<=n.z)?(i=t,t=t.nextZ,o--):(i=n,n=n.nextZ,l--),s?s.nextZ=i:a=i,i.prevZ=s,s=i;t=n}s.nextZ=null,c*=2}while(r>1);return a}function ou(a,e,t,n,i){return a=32767*(a-t)*i,e=32767*(e-n)*i,a=(a|a<<8)&16711935,a=(a|a<<4)&252645135,a=(a|a<<2)&858993459,a=(a|a<<1)&1431655765,e=(e|e<<8)&16711935,e=(e|e<<4)&252645135,e=(e|e<<2)&858993459,e=(e|e<<1)&1431655765,a|e<<1}function gb(a){let e=a,t=a;do(e.x<t.x||e.x===t.x&&e.y<t.y)&&(t=e),e=e.next;while(e!==a);return t}function xr(a,e,t,n,i,s,r,o){return(i-r)*(e-o)-(a-r)*(s-o)>=0&&(a-r)*(n-o)-(t-r)*(e-o)>=0&&(t-r)*(s-o)-(i-r)*(n-o)>=0}function yb(a,e){return a.next.i!==e.i&&a.prev.i!==e.i&&!xb(a,e)&&(Io(a,e)&&Io(e,a)&&vb(a,e)&&(Nt(a.prev,a,e.prev)||Nt(a,e.prev,e))||Il(a,e)&&Nt(a.prev,a,a.next)>0&&Nt(e.prev,e,e.next)>0)}function Nt(a,e,t){return(e.y-a.y)*(t.x-e.x)-(e.x-a.x)*(t.y-e.y)}function Il(a,e){return a.x===e.x&&a.y===e.y}function kp(a,e,t,n){const i=ka(Nt(a,e,t)),s=ka(Nt(a,e,n)),r=ka(Nt(t,n,a)),o=ka(Nt(t,n,e));return!!(i!==s&&r!==o||i===0&&Na(a,t,e)||s===0&&Na(a,n,e)||r===0&&Na(t,a,n)||o===0&&Na(t,e,n))}function Na(a,e,t){return e.x<=Math.max(a.x,t.x)&&e.x>=Math.min(a.x,t.x)&&e.y<=Math.max(a.y,t.y)&&e.y>=Math.min(a.y,t.y)}function ka(a){return a>0?1:a<0?-1:0}function xb(a,e){let t=a;do{if(t.i!==a.i&&t.next.i!==a.i&&t.i!==e.i&&t.next.i!==e.i&&kp(t,t.next,a,e))return!0;t=t.next}while(t!==a);return!1}function Io(a,e){return Nt(a.prev,a,a.next)<0?Nt(a,e,a.next)>=0&&Nt(a,a.prev,e)>=0:Nt(a,e,a.prev)<0||Nt(a,a.next,e)<0}function vb(a,e){let t=a,n=!1;const i=(a.x+e.x)/2,s=(a.y+e.y)/2;do t.y>s!=t.next.y>s&&t.next.y!==t.y&&i<(t.next.x-t.x)*(s-t.y)/(t.next.y-t.y)+t.x&&(n=!n),t=t.next;while(t!==a);return n}function Op(a,e){const t=new au(a.i,a.x,a.y),n=new au(e.i,e.x,e.y),i=a.next,s=e.prev;return a.next=e,e.prev=a,t.next=i,i.prev=t,n.next=t,t.prev=n,s.next=n,n.prev=s,n}function xf(a,e,t,n){const i=new au(a,e,t);return n?(i.next=n.next,i.prev=n,n.next.prev=i,n.next=i):(i.prev=i,i.next=i),i}function Po(a){a.next.prev=a.prev,a.prev.next=a.next,a.prevZ&&(a.prevZ.nextZ=a.nextZ),a.nextZ&&(a.nextZ.prevZ=a.prevZ)}function au(a,e,t){this.i=a,this.x=e,this.y=t,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function _b(a,e,t,n){let i=0;for(let s=e,r=t-n;s<t;s+=n)i+=(a[r]-a[s])*(a[s+1]+a[r+1]),r=s;return i}class ei{static area(e){const t=e.length;let n=0;for(let i=t-1,s=0;s<t;i=s++)n+=e[i].x*e[s].y-e[s].x*e[i].y;return n*.5}static isClockWise(e){return ei.area(e)<0}static triangulateShape(e,t){const n=[],i=[],s=[];vf(e),_f(n,e);let r=e.length;t.forEach(vf);for(let l=0;l<t.length;l++)i.push(r),r+=t[l].length,_f(n,t[l]);const o=sb.triangulate(n,i);for(let l=0;l<o.length;l+=3)s.push(o.slice(l,l+3));return s}}function vf(a){const e=a.length;e>2&&a[e-1].equals(a[0])&&a.pop()}function _f(a,e){for(let t=0;t<e.length;t++)a.push(e[t].x),a.push(e[t].y)}class Ir extends Xe{constructor(e=new Ls([new fe(.5,.5),new fe(-.5,.5),new fe(-.5,-.5),new fe(.5,-.5)]),t={}){super(),this.type=\"ExtrudeGeometry\",this.parameters={shapes:e,options:t},e=Array.isArray(e)?e:[e];const n=this,i=[],s=[];for(let o=0,l=e.length;o<l;o++){const c=e[o];r(c)}this.setAttribute(\"position\",new Ce(i,3)),this.setAttribute(\"uv\",new Ce(s,2)),this.computeVertexNormals();function r(o){const l=[],c=t.curveSegments!==void 0?t.curveSegments:12,h=t.steps!==void 0?t.steps:1,u=t.depth!==void 0?t.depth:1;let f=t.bevelEnabled!==void 0?t.bevelEnabled:!0,d=t.bevelThickness!==void 0?t.bevelThickness:.2,p=t.bevelSize!==void 0?t.bevelSize:d-.1,m=t.bevelOffset!==void 0?t.bevelOffset:0,g=t.bevelSegments!==void 0?t.bevelSegments:3;const y=t.extrudePath,x=t.UVGenerator!==void 0?t.UVGenerator:bb;let b,v=!1,M,T,C,_;y&&(b=y.getSpacedPoints(h),v=!0,f=!1,M=y.computeFrenetFrames(h,!1),T=new I,C=new I,_=new I),f||(g=0,d=0,p=0,m=0);const E=o.extractPoints(c);let F=E.shape;const U=E.holes;if(!ei.isClockWise(F)){F=F.reverse();for(let ue=0,ce=U.length;ue<ce;ue++){const ve=U[ue];ei.isClockWise(ve)&&(U[ue]=ve.reverse())}}const K=ei.triangulateShape(F,U),G=F;for(let ue=0,ce=U.length;ue<ce;ue++){const ve=U[ue];F=F.concat(ve)}function X(ue,ce,ve){return ce||console.error(\"THREE.ExtrudeGeometry: vec does not exist\"),ce.clone().multiplyScalar(ve).add(ue)}const O=F.length,j=K.length;function Y(ue,ce,ve){let ke,Le,Ze;const He=ue.x-ce.x,Ue=ue.y-ce.y,gt=ve.x-ue.x,ot=ve.y-ue.y,k=He*He+Ue*Ue,P=He*ot-Ue*gt;if(Math.abs(P)>Number.EPSILON){const oe=Math.sqrt(k),_e=Math.sqrt(gt*gt+ot*ot),Se=ce.x-Ue/oe,Ie=ce.y+He/oe,je=ve.x-ot/_e,D=ve.y+gt/_e,me=((je-Se)*ot-(D-Ie)*gt)/(He*ot-Ue*gt);ke=Se+He*me-ue.x,Le=Ie+Ue*me-ue.y;const Te=ke*ke+Le*Le;if(Te<=2)return new fe(ke,Le);Ze=Math.sqrt(Te/2)}else{let oe=!1;He>Number.EPSILON?gt>Number.EPSILON&&(oe=!0):He<-Number.EPSILON?gt<-Number.EPSILON&&(oe=!0):Math.sign(Ue)===Math.sign(ot)&&(oe=!0),oe?(ke=-Ue,Le=He,Ze=Math.sqrt(k)):(ke=He,Le=Ue,Ze=Math.sqrt(k/2))}return new fe(ke/Ze,Le/Ze)}const W=[];for(let ue=0,ce=G.length,ve=ce-1,ke=ue+1;ue<ce;ue++,ve++,ke++)ve===ce&&(ve=0),ke===ce&&(ke=0),W[ue]=Y(G[ue],G[ve],G[ke]);const Z=[];let ee,Q=W.concat();for(let ue=0,ce=U.length;ue<ce;ue++){const ve=U[ue];ee=[];for(let ke=0,Le=ve.length,Ze=Le-1,He=ke+1;ke<Le;ke++,Ze++,He++)Ze===Le&&(Ze=0),He===Le&&(He=0),ee[ke]=Y(ve[ke],ve[Ze],ve[He]);Z.push(ee),Q=Q.concat(ee)}for(let ue=0;ue<g;ue++){const ce=ue/g,ve=d*Math.cos(ce*Math.PI/2),ke=p*Math.sin(ce*Math.PI/2)+m;for(let Le=0,Ze=G.length;Le<Ze;Le++){const He=X(G[Le],W[Le],ke);ge(He.x,He.y,-ve)}for(let Le=0,Ze=U.length;Le<Ze;Le++){const He=U[Le];ee=Z[Le];for(let Ue=0,gt=He.length;Ue<gt;Ue++){const ot=X(He[Ue],ee[Ue],ke);ge(ot.x,ot.y,-ve)}}}const ie=p+m;for(let ue=0;ue<O;ue++){const ce=f?X(F[ue],Q[ue],ie):F[ue];v?(C.copy(M.normals[0]).multiplyScalar(ce.x),T.copy(M.binormals[0]).multiplyScalar(ce.y),_.copy(b[0]).add(C).add(T),ge(_.x,_.y,_.z)):ge(ce.x,ce.y,0)}for(let ue=1;ue<=h;ue++)for(let ce=0;ce<O;ce++){const ve=f?X(F[ce],Q[ce],ie):F[ce];v?(C.copy(M.normals[ue]).multiplyScalar(ve.x),T.copy(M.binormals[ue]).multiplyScalar(ve.y),_.copy(b[ue]).add(C).add(T),ge(_.x,_.y,_.z)):ge(ve.x,ve.y,u/h*ue)}for(let ue=g-1;ue>=0;ue--){const ce=ue/g,ve=d*Math.cos(ce*Math.PI/2),ke=p*Math.sin(ce*Math.PI/2)+m;for(let Le=0,Ze=G.length;Le<Ze;Le++){const He=X(G[Le],W[Le],ke);ge(He.x,He.y,u+ve)}for(let Le=0,Ze=U.length;Le<Ze;Le++){const He=U[Le];ee=Z[Le];for(let Ue=0,gt=He.length;Ue<gt;Ue++){const ot=X(He[Ue],ee[Ue],ke);v?ge(ot.x,ot.y+b[h-1].y,b[h-1].x+ve):ge(ot.x,ot.y,u+ve)}}}ae(),re();function ae(){const ue=i.length/3;if(f){let ce=0,ve=O*ce;for(let ke=0;ke<j;ke++){const Le=K[ke];be(Le[2]+ve,Le[1]+ve,Le[0]+ve)}ce=h+g*2,ve=O*ce;for(let ke=0;ke<j;ke++){const Le=K[ke];be(Le[0]+ve,Le[1]+ve,Le[2]+ve)}}else{for(let ce=0;ce<j;ce++){const ve=K[ce];be(ve[2],ve[1],ve[0])}for(let ce=0;ce<j;ce++){const ve=K[ce];be(ve[0]+O*h,ve[1]+O*h,ve[2]+O*h)}}n.addGroup(ue,i.length/3-ue,0)}function re(){const ue=i.length/3;let ce=0;H(G,ce),ce+=G.length;for(let ve=0,ke=U.length;ve<ke;ve++){const Le=U[ve];H(Le,ce),ce+=Le.length}n.addGroup(ue,i.length/3-ue,1)}function H(ue,ce){let ve=ue.length;for(;--ve>=0;){const ke=ve;let Le=ve-1;Le<0&&(Le=ue.length-1);for(let Ze=0,He=h+g*2;Ze<He;Ze++){const Ue=O*Ze,gt=O*(Ze+1),ot=ce+ke+Ue,k=ce+Le+Ue,P=ce+Le+gt,oe=ce+ke+gt;Fe(ot,k,P,oe)}}}function ge(ue,ce,ve){l.push(ue),l.push(ce),l.push(ve)}function be(ue,ce,ve){xe(ue),xe(ce),xe(ve);const ke=i.length/3,Le=x.generateTopUV(n,i,ke-3,ke-2,ke-1);Ve(Le[0]),Ve(Le[1]),Ve(Le[2])}function Fe(ue,ce,ve,ke){xe(ue),xe(ce),xe(ke),xe(ce),xe(ve),xe(ke);const Le=i.length/3,Ze=x.generateSideWallUV(n,i,Le-6,Le-3,Le-2,Le-1);Ve(Ze[0]),Ve(Ze[1]),Ve(Ze[3]),Ve(Ze[1]),Ve(Ze[2]),Ve(Ze[3])}function xe(ue){i.push(l[ue*3+0]),i.push(l[ue*3+1]),i.push(l[ue*3+2])}function Ve(ue){s.push(ue.x),s.push(ue.y)}}}toJSON(){const e=super.toJSON(),t=this.parameters.shapes,n=this.parameters.options;return wb(t,n,e)}static fromJSON(e,t){const n=[];for(let s=0,r=e.shapes.length;s<r;s++){const o=t[e.shapes[s]];n.push(o)}const i=e.options.extrudePath;return i!==void 0&&(e.options.extrudePath=new Vu[i.type]().fromJSON(i)),new Ir(n,e.options)}}const bb={generateTopUV:function(a,e,t,n,i){const s=e[t*3],r=e[t*3+1],o=e[n*3],l=e[n*3+1],c=e[i*3],h=e[i*3+1];return[new fe(s,r),new fe(o,l),new fe(c,h)]},generateSideWallUV:function(a,e,t,n,i,s){const r=e[t*3],o=e[t*3+1],l=e[t*3+2],c=e[n*3],h=e[n*3+1],u=e[n*3+2],f=e[i*3],d=e[i*3+1],p=e[i*3+2],m=e[s*3],g=e[s*3+1],y=e[s*3+2];return Math.abs(o-h)<Math.abs(r-c)?[new fe(r,1-l),new fe(c,1-u),new fe(f,1-p),new fe(m,1-y)]:[new fe(o,1-l),new fe(h,1-u),new fe(d,1-p),new fe(g,1-y)]}};function wb(a,e,t){if(t.shapes=[],Array.isArray(a))for(let n=0,i=a.length;n<i;n++){const s=a[n];t.shapes.push(s.uuid)}else t.shapes.push(a.uuid);return t.options=Object.assign({},e),e.extrudePath!==void 0&&(t.options.extrudePath=e.extrudePath.toJSON()),t}class Pr extends ii{constructor(e=1,t=0){const n=(1+Math.sqrt(5))/2,i=[-1,n,0,1,n,0,-1,-n,0,1,-n,0,0,-1,n,0,1,n,0,-1,-n,0,1,-n,n,0,-1,n,0,1,-n,0,-1,-n,0,1],s=[0,11,5,0,5,1,0,1,7,0,7,10,0,10,11,1,5,9,5,11,4,11,10,2,10,7,6,7,1,8,3,9,4,3,4,2,3,2,6,3,6,8,3,8,9,4,9,5,2,4,11,6,2,10,8,6,7,9,8,1];super(i,s,e,t),this.type=\"IcosahedronGeometry\",this.parameters={radius:e,detail:t}}static fromJSON(e){return new Pr(e.radius,e.detail)}}class Ns extends ii{constructor(e=1,t=0){const n=[1,0,0,-1,0,0,0,1,0,0,-1,0,0,0,1,0,0,-1],i=[0,2,4,0,4,3,0,3,5,0,5,2,1,2,5,1,5,3,1,3,4,1,4,2];super(n,i,e,t),this.type=\"OctahedronGeometry\",this.parameters={radius:e,detail:t}}static fromJSON(e){return new Ns(e.radius,e.detail)}}class Dr extends Xe{constructor(e=.5,t=1,n=8,i=1,s=0,r=Math.PI*2){super(),this.type=\"RingGeometry\",this.parameters={innerRadius:e,outerRadius:t,thetaSegments:n,phiSegments:i,thetaStart:s,thetaLength:r},n=Math.max(3,n),i=Math.max(1,i);const o=[],l=[],c=[],h=[];let u=e;const f=(t-e)/i,d=new I,p=new fe;for(let m=0;m<=i;m++){for(let g=0;g<=n;g++){const y=s+g/n*r;d.x=u*Math.cos(y),d.y=u*Math.sin(y),l.push(d.x,d.y,d.z),c.push(0,0,1),p.x=(d.x/t+1)/2,p.y=(d.y/t+1)/2,h.push(p.x,p.y)}u+=f}for(let m=0;m<i;m++){const g=m*(n+1);for(let y=0;y<n;y++){const x=y+g,b=x,v=x+n+1,M=x+n+2,T=x+1;o.push(b,v,T),o.push(v,M,T)}}this.setIndex(o),this.setAttribute(\"position\",new Ce(l,3)),this.setAttribute(\"normal\",new Ce(c,3)),this.setAttribute(\"uv\",new Ce(h,2))}static fromJSON(e){return new Dr(e.innerRadius,e.outerRadius,e.thetaSegments,e.phiSegments,e.thetaStart,e.thetaLength)}}class Fr extends Xe{constructor(e=new Ls([new fe(0,.5),new fe(-.5,-.5),new fe(.5,-.5)]),t=12){super(),this.type=\"ShapeGeometry\",this.parameters={shapes:e,curveSegments:t};const n=[],i=[],s=[],r=[];let o=0,l=0;if(Array.isArray(e)===!1)c(e);else for(let h=0;h<e.length;h++)c(e[h]),this.addGroup(o,l,h),o+=l,l=0;this.setIndex(n),this.setAttribute(\"position\",new Ce(i,3)),this.setAttribute(\"normal\",new Ce(s,3)),this.setAttribute(\"uv\",new Ce(r,2));function c(h){const u=i.length/3,f=h.extractPoints(t);let d=f.shape;const p=f.holes;ei.isClockWise(d)===!1&&(d=d.reverse());for(let g=0,y=p.length;g<y;g++){const x=p[g];ei.isClockWise(x)===!0&&(p[g]=x.reverse())}const m=ei.triangulateShape(d,p);for(let g=0,y=p.length;g<y;g++){const x=p[g];d=d.concat(x)}for(let g=0,y=d.length;g<y;g++){const x=d[g];i.push(x.x,x.y,0),s.push(0,0,1),r.push(x.x,x.y)}for(let g=0,y=m.length;g<y;g++){const x=m[g],b=x[0]+u,v=x[1]+u,M=x[2]+u;n.push(b,v,M),l+=3}}}toJSON(){const e=super.toJSON(),t=this.parameters.shapes;return Mb(t,e)}static fromJSON(e,t){const n=[];for(let i=0,s=e.shapes.length;i<s;i++){const r=t[e.shapes[i]];n.push(r)}return new Fr(n,e.curveSegments)}}function Mb(a,e){if(e.shapes=[],Array.isArray(a))for(let t=0,n=a.length;t<n;t++){const i=a[t];e.shapes.push(i.uuid)}else e.shapes.push(a.uuid);return e}class ks extends Xe{constructor(e=1,t=32,n=16,i=0,s=Math.PI*2,r=0,o=Math.PI){super(),this.type=\"SphereGeometry\",this.parameters={radius:e,widthSegments:t,heightSegments:n,phiStart:i,phiLength:s,thetaStart:r,thetaLength:o},t=Math.max(3,Math.floor(t)),n=Math.max(2,Math.floor(n));const l=Math.min(r+o,Math.PI);let c=0;const h=[],u=new I,f=new I,d=[],p=[],m=[],g=[];for(let y=0;y<=n;y++){const x=[],b=y/n;let v=0;y==0&&r==0?v=.5/t:y==n&&l==Math.PI&&(v=-.5/t);for(let M=0;M<=t;M++){const T=M/t;u.x=-e*Math.cos(i+T*s)*Math.sin(r+b*o),u.y=e*Math.cos(r+b*o),u.z=e*Math.sin(i+T*s)*Math.sin(r+b*o),p.push(u.x,u.y,u.z),f.copy(u).normalize(),m.push(f.x,f.y,f.z),g.push(T+v,1-b),x.push(c++)}h.push(x)}for(let y=0;y<n;y++)for(let x=0;x<t;x++){const b=h[y][x+1],v=h[y][x],M=h[y+1][x],T=h[y+1][x+1];(y!==0||r>0)&&d.push(b,v,T),(y!==n-1||l<Math.PI)&&d.push(v,M,T)}this.setIndex(d),this.setAttribute(\"position\",new Ce(p,3)),this.setAttribute(\"normal\",new Ce(m,3)),this.setAttribute(\"uv\",new Ce(g,2))}static fromJSON(e){return new ks(e.radius,e.widthSegments,e.heightSegments,e.phiStart,e.phiLength,e.thetaStart,e.thetaLength)}}class Nr extends ii{constructor(e=1,t=0){const n=[1,1,1,-1,-1,1,-1,1,-1,1,-1,-1],i=[2,1,0,0,3,2,1,3,0,2,3,1];super(n,i,e,t),this.type=\"TetrahedronGeometry\",this.parameters={radius:e,detail:t}}static fromJSON(e){return new Nr(e.radius,e.detail)}}class kr extends Xe{constructor(e=1,t=.4,n=8,i=6,s=Math.PI*2){super(),this.type=\"TorusGeometry\",this.parameters={radius:e,tube:t,radialSegments:n,tubularSegments:i,arc:s},n=Math.floor(n),i=Math.floor(i);const r=[],o=[],l=[],c=[],h=new I,u=new I,f=new I;for(let d=0;d<=n;d++)for(let p=0;p<=i;p++){const m=p/i*s,g=d/n*Math.PI*2;u.x=(e+t*Math.cos(g))*Math.cos(m),u.y=(e+t*Math.cos(g))*Math.sin(m),u.z=t*Math.sin(g),o.push(u.x,u.y,u.z),h.x=e*Math.cos(m),h.y=e*Math.sin(m),f.subVectors(u,h).normalize(),l.push(f.x,f.y,f.z),c.push(p/i),c.push(d/n)}for(let d=1;d<=n;d++)for(let p=1;p<=i;p++){const m=(i+1)*d+p-1,g=(i+1)*(d-1)+p-1,y=(i+1)*(d-1)+p,x=(i+1)*d+p;r.push(m,g,x),r.push(g,y,x)}this.setIndex(r),this.setAttribute(\"position\",new Ce(o,3)),this.setAttribute(\"normal\",new Ce(l,3)),this.setAttribute(\"uv\",new Ce(c,2))}static fromJSON(e){return new kr(e.radius,e.tube,e.radialSegments,e.tubularSegments,e.arc)}}class Or extends Xe{constructor(e=1,t=.4,n=64,i=8,s=2,r=3){super(),this.type=\"TorusKnotGeometry\",this.parameters={radius:e,tube:t,tubularSegments:n,radialSegments:i,p:s,q:r},n=Math.floor(n),i=Math.floor(i);const o=[],l=[],c=[],h=[],u=new I,f=new I,d=new I,p=new I,m=new I,g=new I,y=new I;for(let b=0;b<=n;++b){const v=b/n*s*Math.PI*2;x(v,s,r,e,d),x(v+.01,s,r,e,p),g.subVectors(p,d),y.addVectors(p,d),m.crossVectors(g,y),y.crossVectors(m,g),m.normalize(),y.normalize();for(let M=0;M<=i;++M){const T=M/i*Math.PI*2,C=-t*Math.cos(T),_=t*Math.sin(T);u.x=d.x+(C*y.x+_*m.x),u.y=d.y+(C*y.y+_*m.y),u.z=d.z+(C*y.z+_*m.z),l.push(u.x,u.y,u.z),f.subVectors(u,d).normalize(),c.push(f.x,f.y,f.z),h.push(b/n),h.push(M/i)}}for(let b=1;b<=n;b++)for(let v=1;v<=i;v++){const M=(i+1)*(b-1)+(v-1),T=(i+1)*b+(v-1),C=(i+1)*b+v,_=(i+1)*(b-1)+v;o.push(M,T,_),o.push(T,C,_)}this.setIndex(o),this.setAttribute(\"position\",new Ce(l,3)),this.setAttribute(\"normal\",new Ce(c,3)),this.setAttribute(\"uv\",new Ce(h,2));function x(b,v,M,T,C){const _=Math.cos(b),E=Math.sin(b),F=M/v*b,U=Math.cos(F);C.x=T*(2+U)*.5*_,C.y=T*(2+U)*E*.5,C.z=T*Math.sin(F)*.5}}static fromJSON(e){return new Or(e.radius,e.tube,e.tubularSegments,e.radialSegments,e.p,e.q)}}class Br extends Xe{constructor(e=new Uu(new I(-1,-1,0),new I(-1,1,0),new I(1,1,0)),t=64,n=1,i=8,s=!1){super(),this.type=\"TubeGeometry\",this.parameters={path:e,tubularSegments:t,radius:n,radialSegments:i,closed:s};const r=e.computeFrenetFrames(t,s);this.tangents=r.tangents,this.normals=r.normals,this.binormals=r.binormals;const o=new I,l=new I,c=new fe;let h=new I;const u=[],f=[],d=[],p=[];m(),this.setIndex(p),this.setAttribute(\"position\",new Ce(u,3)),this.setAttribute(\"normal\",new Ce(f,3)),this.setAttribute(\"uv\",new Ce(d,2));function m(){for(let b=0;b<t;b++)g(b);g(s===!1?t:0),x(),y()}function g(b){h=e.getPointAt(b/t,h);const v=r.normals[b],M=r.binormals[b];for(let T=0;T<=i;T++){const C=T/i*Math.PI*2,_=Math.sin(C),E=-Math.cos(C);l.x=E*v.x+_*M.x,l.y=E*v.y+_*M.y,l.z=E*v.z+_*M.z,l.normalize(),f.push(l.x,l.y,l.z),o.x=h.x+n*l.x,o.y=h.y+n*l.y,o.z=h.z+n*l.z,u.push(o.x,o.y,o.z)}}function y(){for(let b=1;b<=t;b++)for(let v=1;v<=i;v++){const M=(i+1)*(b-1)+(v-1),T=(i+1)*b+(v-1),C=(i+1)*b+v,_=(i+1)*(b-1)+v;p.push(M,T,_),p.push(T,C,_)}}function x(){for(let b=0;b<=t;b++)for(let v=0;v<=i;v++)c.x=b/t,c.y=v/i,d.push(c.x,c.y)}}toJSON(){const e=super.toJSON();return e.path=this.parameters.path.toJSON(),e}static fromJSON(e){return new Br(new Vu[e.path.type]().fromJSON(e.path),e.tubularSegments,e.radius,e.radialSegments,e.closed)}}class Bp extends Xe{constructor(e=null){if(super(),this.type=\"WireframeGeometry\",this.parameters={geometry:e},e!==null){const t=[],n=new Set,i=new I,s=new I;if(e.index!==null){const r=e.attributes.position,o=e.index;let l=e.groups;l.length===0&&(l=[{start:0,count:o.count,materialIndex:0}]);for(let c=0,h=l.length;c<h;++c){const u=l[c],f=u.start,d=u.count;for(let p=f,m=f+d;p<m;p+=3)for(let g=0;g<3;g++){const y=o.getX(p+g),x=o.getX(p+(g+1)%3);i.fromBufferAttribute(r,y),s.fromBufferAttribute(r,x),bf(i,s,n)===!0&&(t.push(i.x,i.y,i.z),t.push(s.x,s.y,s.z))}}}else{const r=e.attributes.position;for(let o=0,l=r.count/3;o<l;o++)for(let c=0;c<3;c++){const h=3*o+c,u=3*o+(c+1)%3;i.fromBufferAttribute(r,h),s.fromBufferAttribute(r,u),bf(i,s,n)===!0&&(t.push(i.x,i.y,i.z),t.push(s.x,s.y,s.z))}}this.setAttribute(\"position\",new Ce(t,3))}}}function bf(a,e,t){const n=`${a.x},${a.y},${a.z}-${e.x},${e.y},${e.z}`,i=`${e.x},${e.y},${e.z}-${a.x},${a.y},${a.z}`;return t.has(n)===!0||t.has(i)===!0?!1:(t.add(n),t.add(i),!0)}var wf=Object.freeze({__proto__:null,BoxGeometry:Si,BoxBufferGeometry:Si,CapsuleGeometry:Er,CapsuleBufferGeometry:Er,CircleGeometry:Cr,CircleBufferGeometry:Cr,ConeGeometry:Lr,ConeBufferGeometry:Lr,CylinderGeometry:$i,CylinderBufferGeometry:$i,DodecahedronGeometry:Rr,DodecahedronBufferGeometry:Rr,EdgesGeometry:Fp,ExtrudeGeometry:Ir,ExtrudeBufferGeometry:Ir,IcosahedronGeometry:Pr,IcosahedronBufferGeometry:Pr,LatheGeometry:Fs,LatheBufferGeometry:Fs,OctahedronGeometry:Ns,OctahedronBufferGeometry:Ns,PlaneGeometry:Ps,PlaneBufferGeometry:Ps,PolyhedronGeometry:ii,PolyhedronBufferGeometry:ii,RingGeometry:Dr,RingBufferGeometry:Dr,ShapeGeometry:Fr,ShapeBufferGeometry:Fr,SphereGeometry:ks,SphereBufferGeometry:ks,TetrahedronGeometry:Nr,TetrahedronBufferGeometry:Nr,TorusGeometry:kr,TorusBufferGeometry:kr,TorusKnotGeometry:Or,TorusKnotBufferGeometry:Or,TubeGeometry:Br,TubeBufferGeometry:Br,WireframeGeometry:Bp});class zp extends Wt{constructor(e){super(),this.isShadowMaterial=!0,this.type=\"ShadowMaterial\",this.color=new we(0),this.transparent=!0,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.fog=e.fog,this}}class Up extends ni{constructor(e){super(e),this.isRawShaderMaterial=!0,this.type=\"RawShaderMaterial\"}}class Vs extends Wt{constructor(e){super(),this.isMeshStandardMaterial=!0,this.defines={STANDARD:\"\"},this.type=\"MeshStandardMaterial\",this.color=new we(16777215),this.roughness=1,this.metalness=0,this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new we(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ns,this.normalScale=new fe(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.roughnessMap=null,this.metalnessMap=null,this.alphaMap=null,this.envMap=null,this.envMapIntensity=1,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.defines={STANDARD:\"\"},this.color.copy(e.color),this.roughness=e.roughness,this.metalness=e.metalness,this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.roughnessMap=e.roughnessMap,this.metalnessMap=e.metalnessMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.envMapIntensity=e.envMapIntensity,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Ri extends Vs{constructor(e){super(),this.isMeshPhysicalMaterial=!0,this.defines={STANDARD:\"\",PHYSICAL:\"\"},this.type=\"MeshPhysicalMaterial\",this.clearcoatMap=null,this.clearcoatRoughness=0,this.clearcoatRoughnessMap=null,this.clearcoatNormalScale=new fe(1,1),this.clearcoatNormalMap=null,this.ior=1.5,Object.defineProperty(this,\"reflectivity\",{get:function(){return Vt(2.5*(this.ior-1)/(this.ior+1),0,1)},set:function(t){this.ior=(1+.4*t)/(1-.4*t)}}),this.iridescenceMap=null,this.iridescenceIOR=1.3,this.iridescenceThicknessRange=[100,400],this.iridescenceThicknessMap=null,this.sheenColor=new we(0),this.sheenColorMap=null,this.sheenRoughness=1,this.sheenRoughnessMap=null,this.transmissionMap=null,this.thickness=0,this.thicknessMap=null,this.attenuationDistance=0,this.attenuationColor=new we(1,1,1),this.specularIntensity=1,this.specularIntensityMap=null,this.specularColor=new we(1,1,1),this.specularColorMap=null,this._sheen=0,this._clearcoat=0,this._iridescence=0,this._transmission=0,this.setValues(e)}get sheen(){return this._sheen}set sheen(e){this._sheen>0!=e>0&&this.version++,this._sheen=e}get clearcoat(){return this._clearcoat}set clearcoat(e){this._clearcoat>0!=e>0&&this.version++,this._clearcoat=e}get iridescence(){return this._iridescence}set iridescence(e){this._iridescence>0!=e>0&&this.version++,this._iridescence=e}get transmission(){return this._transmission}set transmission(e){this._transmission>0!=e>0&&this.version++,this._transmission=e}copy(e){return super.copy(e),this.defines={STANDARD:\"\",PHYSICAL:\"\"},this.clearcoat=e.clearcoat,this.clearcoatMap=e.clearcoatMap,this.clearcoatRoughness=e.clearcoatRoughness,this.clearcoatRoughnessMap=e.clearcoatRoughnessMap,this.clearcoatNormalMap=e.clearcoatNormalMap,this.clearcoatNormalScale.copy(e.clearcoatNormalScale),this.ior=e.ior,this.iridescence=e.iridescence,this.iridescenceMap=e.iridescenceMap,this.iridescenceIOR=e.iridescenceIOR,this.iridescenceThicknessRange=[...e.iridescenceThicknessRange],this.iridescenceThicknessMap=e.iridescenceThicknessMap,this.sheen=e.sheen,this.sheenColor.copy(e.sheenColor),this.sheenColorMap=e.sheenColorMap,this.sheenRoughness=e.sheenRoughness,this.sheenRoughnessMap=e.sheenRoughnessMap,this.transmission=e.transmission,this.transmissionMap=e.transmissionMap,this.thickness=e.thickness,this.thicknessMap=e.thicknessMap,this.attenuationDistance=e.attenuationDistance,this.attenuationColor.copy(e.attenuationColor),this.specularIntensity=e.specularIntensity,this.specularIntensityMap=e.specularIntensityMap,this.specularColor.copy(e.specularColor),this.specularColorMap=e.specularColorMap,this}}class ti extends Wt{constructor(e){super(),this.isMeshPhongMaterial=!0,this.type=\"MeshPhongMaterial\",this.color=new we(16777215),this.specular=new we(1118481),this.shininess=30,this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new we(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ns,this.normalScale=new fe(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.combine=zo,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.specular.copy(e.specular),this.shininess=e.shininess,this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Gp extends Wt{constructor(e){super(),this.isMeshToonMaterial=!0,this.defines={TOON:\"\"},this.type=\"MeshToonMaterial\",this.color=new we(16777215),this.map=null,this.gradientMap=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new we(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ns,this.normalScale=new fe(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.gradientMap=e.gradientMap,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.alphaMap=e.alphaMap,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}class Vp extends Wt{constructor(e){super(),this.isMeshNormalMaterial=!0,this.type=\"MeshNormalMaterial\",this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ns,this.normalScale=new fe(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.flatShading=!1,this.setValues(e)}copy(e){return super.copy(e),this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.flatShading=e.flatShading,this}}class Pl extends Wt{constructor(e){super(),this.isMeshLambertMaterial=!0,this.type=\"MeshLambertMaterial\",this.color=new we(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new we(0),this.emissiveIntensity=1,this.emissiveMap=null,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.combine=zo,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}class Hp extends Wt{constructor(e){super(),this.isMeshMatcapMaterial=!0,this.defines={MATCAP:\"\"},this.type=\"MeshMatcapMaterial\",this.color=new we(16777215),this.matcap=null,this.map=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ns,this.normalScale=new fe(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.defines={MATCAP:\"\"},this.color.copy(e.color),this.matcap=e.matcap,this.map=e.map,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.alphaMap=e.alphaMap,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Wp extends qt{constructor(e){super(),this.isLineDashedMaterial=!0,this.type=\"LineDashedMaterial\",this.scale=1,this.dashSize=3,this.gapSize=1,this.setValues(e)}copy(e){return super.copy(e),this.scale=e.scale,this.dashSize=e.dashSize,this.gapSize=e.gapSize,this}}function Dn(a,e,t){return Hu(a)?new a.constructor(a.subarray(e,t!==void 0?t:a.length)):a.slice(e,t)}function Ss(a,e,t){return!a||!t&&a.constructor===e?a:typeof e.BYTES_PER_ELEMENT==\"number\"?new e(a):Array.prototype.slice.call(a)}function Hu(a){return ArrayBuffer.isView(a)&&!(a instanceof DataView)}function qp(a){function e(i,s){return a[i]-a[s]}const t=a.length,n=new Array(t);for(let i=0;i!==t;++i)n[i]=i;return n.sort(e),n}function lu(a,e,t){const n=a.length,i=new a.constructor(n);for(let s=0,r=0;r!==n;++s){const o=t[s]*e;for(let l=0;l!==e;++l)i[r++]=a[o+l]}return i}function Wu(a,e,t,n){let i=1,s=a[0];for(;s!==void 0&&s[n]===void 0;)s=a[i++];if(s===void 0)return;let r=s[n];if(r!==void 0)if(Array.isArray(r))do r=s[n],r!==void 0&&(e.push(s.time),t.push.apply(t,r)),s=a[i++];while(s!==void 0);else if(r.toArray!==void 0)do r=s[n],r!==void 0&&(e.push(s.time),r.toArray(t,t.length)),s=a[i++];while(s!==void 0);else do r=s[n],r!==void 0&&(e.push(s.time),t.push(r)),s=a[i++];while(s!==void 0)}function Sb(a,e,t,n,i=30){const s=a.clone();s.name=e;const r=[];for(let l=0;l<s.tracks.length;++l){const c=s.tracks[l],h=c.getValueSize(),u=[],f=[];for(let d=0;d<c.times.length;++d){const p=c.times[d]*i;if(!(p<t||p>=n)){u.push(c.times[d]);for(let m=0;m<h;++m)f.push(c.values[d*h+m])}}u.length!==0&&(c.times=Ss(u,c.times.constructor),c.values=Ss(f,c.values.constructor),r.push(c))}s.tracks=r;let o=1/0;for(let l=0;l<s.tracks.length;++l)o>s.tracks[l].times[0]&&(o=s.tracks[l].times[0]);for(let l=0;l<s.tracks.length;++l)s.tracks[l].shift(-1*o);return s.resetDuration(),s}function Tb(a,e=0,t=a,n=30){n<=0&&(n=30);const i=t.tracks.length,s=e/n;for(let r=0;r<i;++r){const o=t.tracks[r],l=o.ValueTypeName;if(l===\"bool\"||l===\"string\")continue;const c=a.tracks.find(function(y){return y.name===o.name&&y.ValueTypeName===l});if(c===void 0)continue;let h=0;const u=o.getValueSize();o.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline&&(h=u/3);let f=0;const d=c.getValueSize();c.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline&&(f=d/3);const p=o.times.length-1;let m;if(s<=o.times[0]){const y=h,x=u-h;m=Dn(o.values,y,x)}else if(s>=o.times[p]){const y=p*u+h,x=y+u-h;m=Dn(o.values,y,x)}else{const y=o.createInterpolant(),x=h,b=u-h;y.evaluate(s),m=Dn(y.resultBuffer,x,b)}l===\"quaternion\"&&new Bt().fromArray(m).normalize().conjugate().toArray(m);const g=c.times.length;for(let y=0;y<g;++y){const x=y*d+f;if(l===\"quaternion\")Bt.multiplyQuaternionsFlat(c.values,x,m,0,c.values,x);else{const b=d-f*2;for(let v=0;v<b;++v)c.values[x+v]-=m[v]}}}return a.blendMode=Eu,a}var Ab=Object.freeze({__proto__:null,arraySlice:Dn,convertArray:Ss,isTypedArray:Hu,getKeyframeOrder:qp,sortedArray:lu,flattenJSON:Wu,subclip:Sb,makeClipAdditive:Tb});class Hr{constructor(e,t,n,i){this.parameterPositions=e,this._cachedIndex=0,this.resultBuffer=i!==void 0?i:new t.constructor(n),this.sampleValues=t,this.valueSize=n,this.settings=null,this.DefaultSettings_={}}evaluate(e){const t=this.parameterPositions;let n=this._cachedIndex,i=t[n],s=t[n-1];e:{t:{let r;n:{i:if(!(e<i)){for(let o=n+2;;){if(i===void 0){if(e<s)break i;return n=t.length,this._cachedIndex=n,this.copySampleValue_(n-1)}if(n===o)break;if(s=i,i=t[++n],e<i)break t}r=t.length;break n}if(!(e>=s)){const o=t[1];e<o&&(n=2,s=o);for(let l=n-2;;){if(s===void 0)return this._cachedIndex=0,this.copySampleValue_(0);if(n===l)break;if(i=s,s=t[--n-1],e>=s)break t}r=n,n=0;break n}break e}for(;n<r;){const o=n+r>>>1;e<t[o]?r=o:n=o+1}if(i=t[n],s=t[n-1],s===void 0)return this._cachedIndex=0,this.copySampleValue_(0);if(i===void 0)return n=t.length,this._cachedIndex=n,this.copySampleValue_(n-1)}this._cachedIndex=n,this.intervalChanged_(n,s,i)}return this.interpolate_(n,s,e,i)}getSettings_(){return this.settings||this.DefaultSettings_}copySampleValue_(e){const t=this.resultBuffer,n=this.sampleValues,i=this.valueSize,s=e*i;for(let r=0;r!==i;++r)t[r]=n[s+r];return t}interpolate_(){throw new Error(\"call to abstract method\")}intervalChanged_(){}}class Xp extends Hr{constructor(e,t,n,i){super(e,t,n,i),this._weightPrev=-0,this._offsetPrev=-0,this._weightNext=-0,this._offsetNext=-0,this.DefaultSettings_={endingStart:bs,endingEnd:bs}}intervalChanged_(e,t,n){const i=this.parameterPositions;let s=e-2,r=e+1,o=i[s],l=i[r];if(o===void 0)switch(this.getSettings_().endingStart){case ws:s=e,o=2*t-n;break;case To:s=i.length-2,o=t+i[s]-i[s+1];break;default:s=e,o=n}if(l===void 0)switch(this.getSettings_().endingEnd){case ws:r=e,l=2*n-t;break;case To:r=1,l=n+i[1]-i[0];break;default:r=e-1,l=t}const c=(n-t)*.5,h=this.valueSize;this._weightPrev=c/(t-o),this._weightNext=c/(l-n),this._offsetPrev=s*h,this._offsetNext=r*h}interpolate_(e,t,n,i){const s=this.resultBuffer,r=this.sampleValues,o=this.valueSize,l=e*o,c=l-o,h=this._offsetPrev,u=this._offsetNext,f=this._weightPrev,d=this._weightNext,p=(n-t)/(i-t),m=p*p,g=m*p,y=-f*g+2*f*m-f*p,x=(1+f)*g+(-1.5-2*f)*m+(-.5+f)*p+1,b=(-1-d)*g+(1.5+d)*m+.5*p,v=d*g-d*m;for(let M=0;M!==o;++M)s[M]=y*r[h+M]+x*r[c+M]+b*r[l+M]+v*r[u+M];return s}}class qu extends Hr{constructor(e,t,n,i){super(e,t,n,i)}interpolate_(e,t,n,i){const s=this.resultBuffer,r=this.sampleValues,o=this.valueSize,l=e*o,c=l-o,h=(n-t)/(i-t),u=1-h;for(let f=0;f!==o;++f)s[f]=r[c+f]*u+r[l+f]*h;return s}}class jp extends Hr{constructor(e,t,n,i){super(e,t,n,i)}interpolate_(e){return this.copySampleValue_(e-1)}}class Yn{constructor(e,t,n,i){if(e===void 0)throw new Error(\"THREE.KeyframeTrack: track name is undefined\");if(t===void 0||t.length===0)throw new Error(\"THREE.KeyframeTrack: no keyframes in track named \"+e);this.name=e,this.times=Ss(t,this.TimeBufferType),this.values=Ss(n,this.ValueBufferType),this.setInterpolation(i||this.DefaultInterpolation)}static toJSON(e){const t=e.constructor;let n;if(t.toJSON!==this.toJSON)n=t.toJSON(e);else{n={name:e.name,times:Ss(e.times,Array),values:Ss(e.values,Array)};const i=e.getInterpolation();i!==e.DefaultInterpolation&&(n.interpolation=i)}return n.type=e.ValueTypeName,n}InterpolantFactoryMethodDiscrete(e){return new jp(this.times,this.values,this.getValueSize(),e)}InterpolantFactoryMethodLinear(e){return new qu(this.times,this.values,this.getValueSize(),e)}InterpolantFactoryMethodSmooth(e){return new Xp(this.times,this.values,this.getValueSize(),e)}setInterpolation(e){let t;switch(e){case Sr:t=this.InterpolantFactoryMethodDiscrete;break;case Is:t=this.InterpolantFactoryMethodLinear;break;case Za:t=this.InterpolantFactoryMethodSmooth;break}if(t===void 0){const n=\"unsupported interpolation for \"+this.ValueTypeName+\" keyframe track named \"+this.name;if(this.createInterpolant===void 0)if(e!==this.DefaultInterpolation)this.setInterpolation(this.DefaultInterpolation);else throw new Error(n);return console.warn(\"THREE.KeyframeTrack:\",n),this}return this.createInterpolant=t,this}getInterpolation(){switch(this.createInterpolant){case this.InterpolantFactoryMethodDiscrete:return Sr;case this.InterpolantFactoryMethodLinear:return Is;case this.InterpolantFactoryMethodSmooth:return Za}}getValueSize(){return this.values.length/this.times.length}shift(e){if(e!==0){const t=this.times;for(let n=0,i=t.length;n!==i;++n)t[n]+=e}return this}scale(e){if(e!==1){const t=this.times;for(let n=0,i=t.length;n!==i;++n)t[n]*=e}return this}trim(e,t){const n=this.times,i=n.length;let s=0,r=i-1;for(;s!==i&&n[s]<e;)++s;for(;r!==-1&&n[r]>t;)--r;if(++r,s!==0||r!==i){s>=r&&(r=Math.max(r,1),s=r-1);const o=this.getValueSize();this.times=Dn(n,s,r),this.values=Dn(this.values,s*o,r*o)}return this}validate(){let e=!0;const t=this.getValueSize();t-Math.floor(t)!==0&&(console.error(\"THREE.KeyframeTrack: Invalid value size in track.\",this),e=!1);const n=this.times,i=this.values,s=n.length;s===0&&(console.error(\"THREE.KeyframeTrack: Track is empty.\",this),e=!1);let r=null;for(let o=0;o!==s;o++){const l=n[o];if(typeof l==\"number\"&&isNaN(l)){console.error(\"THREE.KeyframeTrack: Time is not a valid number.\",this,o,l),e=!1;break}if(r!==null&&r>l){console.error(\"THREE.KeyframeTrack: Out of order keys.\",this,o,l,r),e=!1;break}r=l}if(i!==void 0&&Hu(i))for(let o=0,l=i.length;o!==l;++o){const c=i[o];if(isNaN(c)){console.error(\"THREE.KeyframeTrack: Value is not a valid number.\",this,o,c),e=!1;break}}return e}optimize(){const e=Dn(this.times),t=Dn(this.values),n=this.getValueSize(),i=this.getInterpolation()===Za,s=e.length-1;let r=1;for(let o=1;o<s;++o){let l=!1;const c=e[o],h=e[o+1];if(c!==h&&(o!==1||c!==e[0]))if(i)l=!0;else{const u=o*n,f=u-n,d=u+n;for(let p=0;p!==n;++p){const m=t[u+p];if(m!==t[f+p]||m!==t[d+p]){l=!0;break}}}if(l){if(o!==r){e[r]=e[o];const u=o*n,f=r*n;for(let d=0;d!==n;++d)t[f+d]=t[u+d]}++r}}if(s>0){e[r]=e[s];for(let o=s*n,l=r*n,c=0;c!==n;++c)t[l+c]=t[o+c];++r}return r!==e.length?(this.times=Dn(e,0,r),this.values=Dn(t,0,r*n)):(this.times=e,this.values=t),this}clone(){const e=Dn(this.times,0),t=Dn(this.values,0),n=this.constructor,i=new n(this.name,e,t);return i.createInterpolant=this.createInterpolant,i}}Yn.prototype.TimeBufferType=Float32Array;Yn.prototype.ValueBufferType=Float32Array;Yn.prototype.DefaultInterpolation=Is;class Hs extends Yn{}Hs.prototype.ValueTypeName=\"bool\";Hs.prototype.ValueBufferType=Array;Hs.prototype.DefaultInterpolation=Sr;Hs.prototype.InterpolantFactoryMethodLinear=void 0;Hs.prototype.InterpolantFactoryMethodSmooth=void 0;class Xu extends Yn{}Xu.prototype.ValueTypeName=\"color\";class Os extends Yn{}Os.prototype.ValueTypeName=\"number\";class Yp extends Hr{constructor(e,t,n,i){super(e,t,n,i)}interpolate_(e,t,n,i){const s=this.resultBuffer,r=this.sampleValues,o=this.valueSize,l=(n-t)/(i-t);let c=e*o;for(let h=c+o;c!==h;c+=4)Bt.slerpFlat(s,0,r,c-o,r,c,l);return s}}class si extends Yn{InterpolantFactoryMethodLinear(e){return new Yp(this.times,this.values,this.getValueSize(),e)}}si.prototype.ValueTypeName=\"quaternion\";si.prototype.DefaultInterpolation=Is;si.prototype.InterpolantFactoryMethodSmooth=void 0;class Ws extends Yn{}Ws.prototype.ValueTypeName=\"string\";Ws.prototype.ValueBufferType=Array;Ws.prototype.DefaultInterpolation=Sr;Ws.prototype.InterpolantFactoryMethodLinear=void 0;Ws.prototype.InterpolantFactoryMethodSmooth=void 0;class Ti extends Yn{}Ti.prototype.ValueTypeName=\"vector\";class Ai{constructor(e,t=-1,n,i=xl){this.name=e,this.tracks=n,this.duration=t,this.blendMode=i,this.uuid=En(),this.duration<0&&this.resetDuration()}static parse(e){const t=[],n=e.tracks,i=1/(e.fps||1);for(let r=0,o=n.length;r!==o;++r)t.push(Cb(n[r]).scale(i));const s=new this(e.name,e.duration,t,e.blendMode);return s.uuid=e.uuid,s}static toJSON(e){const t=[],n=e.tracks,i={name:e.name,duration:e.duration,tracks:t,uuid:e.uuid,blendMode:e.blendMode};for(let s=0,r=n.length;s!==r;++s)t.push(Yn.toJSON(n[s]));return i}static CreateFromMorphTargetSequence(e,t,n,i){const s=t.length,r=[];for(let o=0;o<s;o++){let l=[],c=[];l.push((o+s-1)%s,o,(o+1)%s),c.push(0,1,0);const h=qp(l);l=lu(l,1,h),c=lu(c,1,h),!i&&l[0]===0&&(l.push(s),c.push(c[0])),r.push(new Os(\".morphTargetInfluences[\"+t[o].name+\"]\",l,c).scale(1/n))}return new this(e,-1,r)}static findByName(e,t){let n=e;if(!Array.isArray(e)){const i=e;n=i.geometry&&i.geometry.animations||i.animations}for(let i=0;i<n.length;i++)if(n[i].name===t)return n[i];return null}static CreateClipsFromMorphTargetSequences(e,t,n){const i={},s=/^([\\w-]*?)([\\d]+)$/;for(let o=0,l=e.length;o<l;o++){const c=e[o],h=c.name.match(s);if(h&&h.length>1){const u=h[1];let f=i[u];f||(i[u]=f=[]),f.push(c)}}const r=[];for(const o in i)r.push(this.CreateFromMorphTargetSequence(o,i[o],t,n));return r}static parseAnimation(e,t){if(!e)return console.error(\"THREE.AnimationClip: No animation in JSONLoader data.\"),null;const n=function(u,f,d,p,m){if(d.length!==0){const g=[],y=[];Wu(d,g,y,p),g.length!==0&&m.push(new u(f,g,y))}},i=[],s=e.name||\"default\",r=e.fps||30,o=e.blendMode;let l=e.length||-1;const c=e.hierarchy||[];for(let u=0;u<c.length;u++){const f=c[u].keys;if(!(!f||f.length===0))if(f[0].morphTargets){const d={};let p;for(p=0;p<f.length;p++)if(f[p].morphTargets)for(let m=0;m<f[p].morphTargets.length;m++)d[f[p].morphTargets[m]]=-1;for(const m in d){const g=[],y=[];for(let x=0;x!==f[p].morphTargets.length;++x){const b=f[p];g.push(b.time),y.push(b.morphTarget===m?1:0)}i.push(new Os(\".morphTargetInfluence[\"+m+\"]\",g,y))}l=d.length*r}else{const d=\".bones[\"+t[u].name+\"]\";n(Ti,d+\".position\",f,\"pos\",i),n(si,d+\".quaternion\",f,\"rot\",i),n(Ti,d+\".scale\",f,\"scl\",i)}}return i.length===0?null:new this(s,l,i,o)}resetDuration(){const e=this.tracks;let t=0;for(let n=0,i=e.length;n!==i;++n){const s=this.tracks[n];t=Math.max(t,s.times[s.times.length-1])}return this.duration=t,this}trim(){for(let e=0;e<this.tracks.length;e++)this.tracks[e].trim(0,this.duration);return this}validate(){let e=!0;for(let t=0;t<this.tracks.length;t++)e=e&&this.tracks[t].validate();return e}optimize(){for(let e=0;e<this.tracks.length;e++)this.tracks[e].optimize();return this}clone(){const e=[];for(let t=0;t<this.tracks.length;t++)e.push(this.tracks[t].clone());return new this.constructor(this.name,this.duration,e,this.blendMode)}toJSON(){return this.constructor.toJSON(this)}}function Eb(a){switch(a.toLowerCase()){case\"scalar\":case\"double\":case\"float\":case\"number\":case\"integer\":return Os;case\"vector\":case\"vector2\":case\"vector3\":case\"vector4\":return Ti;case\"color\":return Xu;case\"quaternion\":return si;case\"bool\":case\"boolean\":return Hs;case\"string\":return Ws}throw new Error(\"THREE.KeyframeTrack: Unsupported typeName: \"+a)}function Cb(a){if(a.type===void 0)throw new Error(\"THREE.KeyframeTrack: track type undefined, can not parse\");const e=Eb(a.type);if(a.times===void 0){const t=[],n=[];Wu(a.keys,t,n,\"value\"),a.times=t,a.values=n}return e.parse!==void 0?e.parse(a):new e(a.name,a.times,a.values,a.interpolation)}const Bs={enabled:!1,files:{},add:function(a,e){this.enabled!==!1&&(this.files[a]=e)},get:function(a){if(this.enabled!==!1)return this.files[a]},remove:function(a){delete this.files[a]},clear:function(){this.files={}}};class ju{constructor(e,t,n){const i=this;let s=!1,r=0,o=0,l;const c=[];this.onStart=void 0,this.onLoad=e,this.onProgress=t,this.onError=n,this.itemStart=function(h){o++,s===!1&&i.onStart!==void 0&&i.onStart(h,r,o),s=!0},this.itemEnd=function(h){r++,i.onProgress!==void 0&&i.onProgress(h,r,o),r===o&&(s=!1,i.onLoad!==void 0&&i.onLoad())},this.itemError=function(h){i.onError!==void 0&&i.onError(h)},this.resolveURL=function(h){return l?l(h):h},this.setURLModifier=function(h){return l=h,this},this.addHandler=function(h,u){return c.push(h,u),this},this.removeHandler=function(h){const u=c.indexOf(h);return u!==-1&&c.splice(u,2),this},this.getHandler=function(h){for(let u=0,f=c.length;u<f;u+=2){const d=c[u],p=c[u+1];if(d.global&&(d.lastIndex=0),d.test(h))return p}return null}}}const Yu=new ju;class Xt{constructor(e){this.manager=e!==void 0?e:Yu,this.crossOrigin=\"anonymous\",this.withCredentials=!1,this.path=\"\",this.resourcePath=\"\",this.requestHeader={}}load(){}loadAsync(e,t){const n=this;return new Promise(function(i,s){n.load(e,i,t,s)})}parse(){}setCrossOrigin(e){return this.crossOrigin=e,this}setWithCredentials(e){return this.withCredentials=e,this}setPath(e){return this.path=e,this}setResourcePath(e){return this.resourcePath=e,this}setRequestHeader(e){return this.requestHeader=e,this}}const mi={};class Lb extends Error{constructor(e,t){super(e),this.response=t}}class $t extends Xt{constructor(e){super(e)}load(e,t,n,i){e===void 0&&(e=\"\"),this.path!==void 0&&(e=this.path+e),e=this.manager.resolveURL(e);const s=Bs.get(e);if(s!==void 0)return this.manager.itemStart(e),setTimeout(()=>{t&&t(s),this.manager.itemEnd(e)},0),s;if(mi[e]!==void 0){mi[e].push({onLoad:t,onProgress:n,onError:i});return}mi[e]=[],mi[e].push({onLoad:t,onProgress:n,onError:i});const r=new Request(e,{headers:new Headers(this.requestHeader),credentials:this.withCredentials?\"include\":\"same-origin\"}),o=this.mimeType,l=this.responseType;fetch(r).then(c=>{if(c.status===200||c.status===0){if(c.status===0&&console.warn(\"THREE.FileLoader: HTTP Status 0 received.\"),typeof ReadableStream==\"undefined\"||c.body===void 0||c.body.getReader===void 0)return c;const h=mi[e],u=c.body.getReader(),f=c.headers.get(\"Content-Length\"),d=f?parseInt(f):0,p=d!==0;let m=0;const g=new ReadableStream({start(y){x();function x(){u.read().then(({done:b,value:v})=>{if(b)y.close();else{m+=v.byteLength;const M=new ProgressEvent(\"progress\",{lengthComputable:p,loaded:m,total:d});for(let T=0,C=h.length;T<C;T++){const _=h[T];_.onProgress&&_.onProgress(M)}y.enqueue(v),x()}})}}});return new Response(g)}else throw new Lb(`fetch for \"${c.url}\" responded with ${c.status}: ${c.statusText}`,c)}).then(c=>{switch(l){case\"arraybuffer\":return c.arrayBuffer();case\"blob\":return c.blob();case\"document\":return c.text().then(h=>new DOMParser().parseFromString(h,o));case\"json\":return c.json();default:if(o===void 0)return c.text();{const u=/charset=\"?([^;\"\\s]*)\"?/i.exec(o),f=u&&u[1]?u[1].toLowerCase():void 0,d=new TextDecoder(f);return c.arrayBuffer().then(p=>d.decode(p))}}}).then(c=>{Bs.add(e,c);const h=mi[e];delete mi[e];for(let u=0,f=h.length;u<f;u++){const d=h[u];d.onLoad&&d.onLoad(c)}}).catch(c=>{const h=mi[e];if(h===void 0)throw this.manager.itemError(e),c;delete mi[e];for(let u=0,f=h.length;u<f;u++){const d=h[u];d.onError&&d.onError(c)}this.manager.itemError(e)}).finally(()=>{this.manager.itemEnd(e)}),this.manager.itemStart(e)}setResponseType(e){return this.responseType=e,this}setMimeType(e){return this.mimeType=e,this}}class Rb extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new $t(this.manager);r.setPath(this.path),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{t(s.parse(JSON.parse(o)))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}parse(e){const t=[];for(let n=0;n<e.length;n++){const i=Ai.parse(e[n]);t.push(i)}return t}}class Zp extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=[],o=new Cp,l=new $t(this.manager);l.setPath(this.path),l.setResponseType(\"arraybuffer\"),l.setRequestHeader(this.requestHeader),l.setWithCredentials(s.withCredentials);let c=0;function h(u){l.load(e[u],function(f){const d=s.parse(f,!0);r[u]={width:d.width,height:d.height,format:d.format,mipmaps:d.mipmaps},c+=1,c===6&&(d.mipmapCount===1&&(o.minFilter=Ft),o.image=r,o.format=d.format,o.needsUpdate=!0,t&&t(o))},n,i)}if(Array.isArray(e))for(let u=0,f=e.length;u<f;++u)h(u);else l.load(e,function(u){const f=s.parse(u,!0);if(f.isCubemap){const d=f.mipmaps.length/f.mipmapCount;for(let p=0;p<d;p++){r[p]={mipmaps:[]};for(let m=0;m<f.mipmapCount;m++)r[p].mipmaps.push(f.mipmaps[p*f.mipmapCount+m]),r[p].format=f.format,r[p].width=f.width,r[p].height=f.height}o.image=r}else o.image.width=f.width,o.image.height=f.height,o.mipmaps=f.mipmaps;f.mipmapCount===1&&(o.minFilter=Ft),o.format=f.format,o.needsUpdate=!0,t&&t(o)},n,i);return o}}class Do extends Xt{constructor(e){super(e)}load(e,t,n,i){this.path!==void 0&&(e=this.path+e),e=this.manager.resolveURL(e);const s=this,r=Bs.get(e);if(r!==void 0)return s.manager.itemStart(e),setTimeout(function(){t&&t(r),s.manager.itemEnd(e)},0),r;const o=Co(\"img\");function l(){h(),Bs.add(e,this),t&&t(this),s.manager.itemEnd(e)}function c(u){h(),i&&i(u),s.manager.itemError(e),s.manager.itemEnd(e)}function h(){o.removeEventListener(\"load\",l,!1),o.removeEventListener(\"error\",c,!1)}return o.addEventListener(\"load\",l,!1),o.addEventListener(\"error\",c,!1),e.slice(0,5)!==\"data:\"&&this.crossOrigin!==void 0&&(o.crossOrigin=this.crossOrigin),s.manager.itemStart(e),o.src=e,o}}class Ib extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=new Vo,r=new Do(this.manager);r.setCrossOrigin(this.crossOrigin),r.setPath(this.path);let o=0;function l(c){r.load(e[c],function(h){s.images[c]=h,o++,o===6&&(s.needsUpdate=!0,t&&t(s))},void 0,i)}for(let c=0;c<e.length;++c)l(c);return s}}class Kp extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new vr,o=new $t(this.manager);return o.setResponseType(\"arraybuffer\"),o.setRequestHeader(this.requestHeader),o.setPath(this.path),o.setWithCredentials(s.withCredentials),o.load(e,function(l){const c=s.parse(l);!c||(c.image!==void 0?r.image=c.image:c.data!==void 0&&(r.image.width=c.width,r.image.height=c.height,r.image.data=c.data),r.wrapS=c.wrapS!==void 0?c.wrapS:Zt,r.wrapT=c.wrapT!==void 0?c.wrapT:Zt,r.magFilter=c.magFilter!==void 0?c.magFilter:Ft,r.minFilter=c.minFilter!==void 0?c.minFilter:Ft,r.anisotropy=c.anisotropy!==void 0?c.anisotropy:1,c.encoding!==void 0&&(r.encoding=c.encoding),c.flipY!==void 0&&(r.flipY=c.flipY),c.format!==void 0&&(r.format=c.format),c.type!==void 0&&(r.type=c.type),c.mipmaps!==void 0&&(r.mipmaps=c.mipmaps,r.minFilter=oi),c.mipmapCount===1&&(r.minFilter=Ft),c.generateMipmaps!==void 0&&(r.generateMipmaps=c.generateMipmaps),r.needsUpdate=!0,t&&t(r,c))},n,i),r}}class zs extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=new It,r=new Do(this.manager);return r.setCrossOrigin(this.crossOrigin),r.setPath(this.path),r.load(e,function(o){s.image=o,s.needsUpdate=!0,t!==void 0&&t(s)},n,i),s}}class ss extends pt{constructor(e,t=1){super(),this.isLight=!0,this.type=\"Light\",this.color=new we(e),this.intensity=t}dispose(){}copy(e,t){return super.copy(e,t),this.color.copy(e.color),this.intensity=e.intensity,this}toJSON(e){const t=super.toJSON(e);return t.object.color=this.color.getHex(),t.object.intensity=this.intensity,this.groundColor!==void 0&&(t.object.groundColor=this.groundColor.getHex()),this.distance!==void 0&&(t.object.distance=this.distance),this.angle!==void 0&&(t.object.angle=this.angle),this.decay!==void 0&&(t.object.decay=this.decay),this.penumbra!==void 0&&(t.object.penumbra=this.penumbra),this.shadow!==void 0&&(t.object.shadow=this.shadow.toJSON()),t}}class Zu extends ss{constructor(e,t,n){super(e,n),this.isHemisphereLight=!0,this.type=\"HemisphereLight\",this.position.copy(pt.DefaultUp),this.updateMatrix(),this.groundColor=new we(t)}copy(e,t){return super.copy(e,t),this.groundColor.copy(e.groundColor),this}}const Mf=new Ne,Sf=new I,Tf=new I;class Ku{constructor(e){this.camera=e,this.bias=0,this.normalBias=0,this.radius=1,this.blurSamples=8,this.mapSize=new fe(512,512),this.map=null,this.mapPass=null,this.matrix=new Ne,this.autoUpdate=!0,this.needsUpdate=!1,this._frustum=new Ml,this._frameExtents=new fe(1,1),this._viewportCount=1,this._viewports=[new dt(0,0,1,1)]}getViewportCount(){return this._viewportCount}getFrustum(){return this._frustum}updateMatrices(e){const t=this.camera,n=this.matrix;Sf.setFromMatrixPosition(e.matrixWorld),t.position.copy(Sf),Tf.setFromMatrixPosition(e.target.matrixWorld),t.lookAt(Tf),t.updateMatrixWorld(),Mf.multiplyMatrices(t.projectionMatrix,t.matrixWorldInverse),this._frustum.setFromProjectionMatrix(Mf),n.set(.5,0,0,.5,0,.5,0,.5,0,0,.5,.5,0,0,0,1),n.multiply(t.projectionMatrix),n.multiply(t.matrixWorldInverse)}getViewport(e){return this._viewports[e]}getFrameExtents(){return this._frameExtents}dispose(){this.map&&this.map.dispose(),this.mapPass&&this.mapPass.dispose()}copy(e){return this.camera=e.camera.clone(),this.bias=e.bias,this.radius=e.radius,this.mapSize.copy(e.mapSize),this}clone(){return new this.constructor().copy(this)}toJSON(){const e={};return this.bias!==0&&(e.bias=this.bias),this.normalBias!==0&&(e.normalBias=this.normalBias),this.radius!==1&&(e.radius=this.radius),(this.mapSize.x!==512||this.mapSize.y!==512)&&(e.mapSize=this.mapSize.toArray()),e.camera=this.camera.toJSON(!1).object,delete e.camera.matrix,e}}class Pb extends Ku{constructor(){super(new Ot(50,1,.5,500)),this.isSpotLightShadow=!0,this.focus=1}updateMatrices(e){const t=this.camera,n=Eo*2*e.angle*this.focus,i=this.mapSize.width/this.mapSize.height,s=e.distance||t.far;(n!==t.fov||i!==t.aspect||s!==t.far)&&(t.fov=n,t.aspect=i,t.far=s,t.updateProjectionMatrix()),super.updateMatrices(e)}copy(e){return super.copy(e),this.focus=e.focus,this}}class qo extends ss{constructor(e,t,n=0,i=Math.PI/3,s=0,r=1){super(e,t),this.isSpotLight=!0,this.type=\"SpotLight\",this.position.copy(pt.DefaultUp),this.updateMatrix(),this.target=new pt,this.distance=n,this.angle=i,this.penumbra=s,this.decay=r,this.shadow=new Pb}get power(){return this.intensity*Math.PI}set power(e){this.intensity=e/Math.PI}dispose(){this.shadow.dispose()}copy(e,t){return super.copy(e,t),this.distance=e.distance,this.angle=e.angle,this.penumbra=e.penumbra,this.decay=e.decay,this.target=e.target.clone(),this.shadow=e.shadow.clone(),this}}const Af=new Ne,lo=new I,xc=new I;class Db extends Ku{constructor(){super(new Ot(90,1,.5,500)),this.isPointLightShadow=!0,this._frameExtents=new fe(4,2),this._viewportCount=6,this._viewports=[new dt(2,1,1,1),new dt(0,1,1,1),new dt(3,1,1,1),new dt(1,1,1,1),new dt(3,0,1,1),new dt(1,0,1,1)],this._cubeDirections=[new I(1,0,0),new I(-1,0,0),new I(0,0,1),new I(0,0,-1),new I(0,1,0),new I(0,-1,0)],this._cubeUps=[new I(0,1,0),new I(0,1,0),new I(0,1,0),new I(0,1,0),new I(0,0,1),new I(0,0,-1)]}updateMatrices(e,t=0){const n=this.camera,i=this.matrix,s=e.distance||n.far;s!==n.far&&(n.far=s,n.updateProjectionMatrix()),lo.setFromMatrixPosition(e.matrixWorld),n.position.copy(lo),xc.copy(n.position),xc.add(this._cubeDirections[t]),n.up.copy(this._cubeUps[t]),n.lookAt(xc),n.updateMatrixWorld(),i.makeTranslation(-lo.x,-lo.y,-lo.z),Af.multiplyMatrices(n.projectionMatrix,n.matrixWorldInverse),this._frustum.setFromProjectionMatrix(Af)}}class es extends ss{constructor(e,t,n=0,i=1){super(e,t),this.isPointLight=!0,this.type=\"PointLight\",this.distance=n,this.decay=i,this.shadow=new Db}get power(){return this.intensity*4*Math.PI}set power(e){this.intensity=e/(4*Math.PI)}dispose(){this.shadow.dispose()}copy(e,t){return super.copy(e,t),this.distance=e.distance,this.decay=e.decay,this.shadow=e.shadow.clone(),this}}class Fb extends Ku{constructor(){super(new Us(-5,5,5,-5,.5,500)),this.isDirectionalLightShadow=!0}}class Wr extends ss{constructor(e,t){super(e,t),this.isDirectionalLight=!0,this.type=\"DirectionalLight\",this.position.copy(pt.DefaultUp),this.updateMatrix(),this.target=new pt,this.shadow=new Fb}dispose(){this.shadow.dispose()}copy(e){return super.copy(e),this.target=e.target.clone(),this.shadow=e.shadow.clone(),this}}class Xo extends ss{constructor(e,t){super(e,t),this.isAmbientLight=!0,this.type=\"AmbientLight\"}}class Jp extends ss{constructor(e,t,n=10,i=10){super(e,t),this.isRectAreaLight=!0,this.type=\"RectAreaLight\",this.width=n,this.height=i}get power(){return this.intensity*this.width*this.height*Math.PI}set power(e){this.intensity=e/(this.width*this.height*Math.PI)}copy(e){return super.copy(e),this.width=e.width,this.height=e.height,this}toJSON(e){const t=super.toJSON(e);return t.object.width=this.width,t.object.height=this.height,t}}class $p{constructor(){this.isSphericalHarmonics3=!0,this.coefficients=[];for(let e=0;e<9;e++)this.coefficients.push(new I)}set(e){for(let t=0;t<9;t++)this.coefficients[t].copy(e[t]);return this}zero(){for(let e=0;e<9;e++)this.coefficients[e].set(0,0,0);return this}getAt(e,t){const n=e.x,i=e.y,s=e.z,r=this.coefficients;return t.copy(r[0]).multiplyScalar(.282095),t.addScaledVector(r[1],.488603*i),t.addScaledVector(r[2],.488603*s),t.addScaledVector(r[3],.488603*n),t.addScaledVector(r[4],1.092548*(n*i)),t.addScaledVector(r[5],1.092548*(i*s)),t.addScaledVector(r[6],.315392*(3*s*s-1)),t.addScaledVector(r[7],1.092548*(n*s)),t.addScaledVector(r[8],.546274*(n*n-i*i)),t}getIrradianceAt(e,t){const n=e.x,i=e.y,s=e.z,r=this.coefficients;return t.copy(r[0]).multiplyScalar(.886227),t.addScaledVector(r[1],2*.511664*i),t.addScaledVector(r[2],2*.511664*s),t.addScaledVector(r[3],2*.511664*n),t.addScaledVector(r[4],2*.429043*n*i),t.addScaledVector(r[5],2*.429043*i*s),t.addScaledVector(r[6],.743125*s*s-.247708),t.addScaledVector(r[7],2*.429043*n*s),t.addScaledVector(r[8],.429043*(n*n-i*i)),t}add(e){for(let t=0;t<9;t++)this.coefficients[t].add(e.coefficients[t]);return this}addScaledSH(e,t){for(let n=0;n<9;n++)this.coefficients[n].addScaledVector(e.coefficients[n],t);return this}scale(e){for(let t=0;t<9;t++)this.coefficients[t].multiplyScalar(e);return this}lerp(e,t){for(let n=0;n<9;n++)this.coefficients[n].lerp(e.coefficients[n],t);return this}equals(e){for(let t=0;t<9;t++)if(!this.coefficients[t].equals(e.coefficients[t]))return!1;return!0}copy(e){return this.set(e.coefficients)}clone(){return new this.constructor().copy(this)}fromArray(e,t=0){const n=this.coefficients;for(let i=0;i<9;i++)n[i].fromArray(e,t+i*3);return this}toArray(e=[],t=0){const n=this.coefficients;for(let i=0;i<9;i++)n[i].toArray(e,t+i*3);return e}static getBasisAt(e,t){const n=e.x,i=e.y,s=e.z;t[0]=.282095,t[1]=.488603*i,t[2]=.488603*s,t[3]=.488603*n,t[4]=1.092548*n*i,t[5]=1.092548*i*s,t[6]=.315392*(3*s*s-1),t[7]=1.092548*n*s,t[8]=.546274*(n*n-i*i)}}class Dl extends ss{constructor(e=new $p,t=1){super(void 0,t),this.isLightProbe=!0,this.sh=e}copy(e){return super.copy(e),this.sh.copy(e.sh),this}fromJSON(e){return this.intensity=e.intensity,this.sh.fromArray(e.sh),this}toJSON(e){const t=super.toJSON(e);return t.object.sh=this.sh.toArray(),t}}class Fl extends Xt{constructor(e){super(e),this.textures={}}load(e,t,n,i){const s=this,r=new $t(s.manager);r.setPath(s.path),r.setRequestHeader(s.requestHeader),r.setWithCredentials(s.withCredentials),r.load(e,function(o){try{t(s.parse(JSON.parse(o)))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}parse(e){const t=this.textures;function n(s){return t[s]===void 0&&console.warn(\"THREE.MaterialLoader: Undefined texture\",s),t[s]}const i=Fl.createMaterialFromType(e.type);if(e.uuid!==void 0&&(i.uuid=e.uuid),e.name!==void 0&&(i.name=e.name),e.color!==void 0&&i.color!==void 0&&i.color.setHex(e.color),e.roughness!==void 0&&(i.roughness=e.roughness),e.metalness!==void 0&&(i.metalness=e.metalness),e.sheen!==void 0&&(i.sheen=e.sheen),e.sheenColor!==void 0&&(i.sheenColor=new we().setHex(e.sheenColor)),e.sheenRoughness!==void 0&&(i.sheenRoughness=e.sheenRoughness),e.emissive!==void 0&&i.emissive!==void 0&&i.emissive.setHex(e.emissive),e.specular!==void 0&&i.specular!==void 0&&i.specular.setHex(e.specular),e.specularIntensity!==void 0&&(i.specularIntensity=e.specularIntensity),e.specularColor!==void 0&&i.specularColor!==void 0&&i.specularColor.setHex(e.specularColor),e.shininess!==void 0&&(i.shininess=e.shininess),e.clearcoat!==void 0&&(i.clearcoat=e.clearcoat),e.clearcoatRoughness!==void 0&&(i.clearcoatRoughness=e.clearcoatRoughness),e.iridescence!==void 0&&(i.iridescence=e.iridescence),e.iridescenceIOR!==void 0&&(i.iridescenceIOR=e.iridescenceIOR),e.iridescenceThicknessRange!==void 0&&(i.iridescenceThicknessRange=e.iridescenceThicknessRange),e.transmission!==void 0&&(i.transmission=e.transmission),e.thickness!==void 0&&(i.thickness=e.thickness),e.attenuationDistance!==void 0&&(i.attenuationDistance=e.attenuationDistance),e.attenuationColor!==void 0&&i.attenuationColor!==void 0&&i.attenuationColor.setHex(e.attenuationColor),e.fog!==void 0&&(i.fog=e.fog),e.flatShading!==void 0&&(i.flatShading=e.flatShading),e.blending!==void 0&&(i.blending=e.blending),e.combine!==void 0&&(i.combine=e.combine),e.side!==void 0&&(i.side=e.side),e.shadowSide!==void 0&&(i.shadowSide=e.shadowSide),e.opacity!==void 0&&(i.opacity=e.opacity),e.transparent!==void 0&&(i.transparent=e.transparent),e.alphaTest!==void 0&&(i.alphaTest=e.alphaTest),e.depthTest!==void 0&&(i.depthTest=e.depthTest),e.depthWrite!==void 0&&(i.depthWrite=e.depthWrite),e.colorWrite!==void 0&&(i.colorWrite=e.colorWrite),e.stencilWrite!==void 0&&(i.stencilWrite=e.stencilWrite),e.stencilWriteMask!==void 0&&(i.stencilWriteMask=e.stencilWriteMask),e.stencilFunc!==void 0&&(i.stencilFunc=e.stencilFunc),e.stencilRef!==void 0&&(i.stencilRef=e.stencilRef),e.stencilFuncMask!==void 0&&(i.stencilFuncMask=e.stencilFuncMask),e.stencilFail!==void 0&&(i.stencilFail=e.stencilFail),e.stencilZFail!==void 0&&(i.stencilZFail=e.stencilZFail),e.stencilZPass!==void 0&&(i.stencilZPass=e.stencilZPass),e.wireframe!==void 0&&(i.wireframe=e.wireframe),e.wireframeLinewidth!==void 0&&(i.wireframeLinewidth=e.wireframeLinewidth),e.wireframeLinecap!==void 0&&(i.wireframeLinecap=e.wireframeLinecap),e.wireframeLinejoin!==void 0&&(i.wireframeLinejoin=e.wireframeLinejoin),e.rotation!==void 0&&(i.rotation=e.rotation),e.linewidth!==1&&(i.linewidth=e.linewidth),e.dashSize!==void 0&&(i.dashSize=e.dashSize),e.gapSize!==void 0&&(i.gapSize=e.gapSize),e.scale!==void 0&&(i.scale=e.scale),e.polygonOffset!==void 0&&(i.polygonOffset=e.polygonOffset),e.polygonOffsetFactor!==void 0&&(i.polygonOffsetFactor=e.polygonOffsetFactor),e.polygonOffsetUnits!==void 0&&(i.polygonOffsetUnits=e.polygonOffsetUnits),e.dithering!==void 0&&(i.dithering=e.dithering),e.alphaToCoverage!==void 0&&(i.alphaToCoverage=e.alphaToCoverage),e.premultipliedAlpha!==void 0&&(i.premultipliedAlpha=e.premultipliedAlpha),e.visible!==void 0&&(i.visible=e.visible),e.toneMapped!==void 0&&(i.toneMapped=e.toneMapped),e.userData!==void 0&&(i.userData=e.userData),e.vertexColors!==void 0&&(typeof e.vertexColors==\"number\"?i.vertexColors=e.vertexColors>0:i.vertexColors=e.vertexColors),e.uniforms!==void 0)for(const s in e.uniforms){const r=e.uniforms[s];switch(i.uniforms[s]={},r.type){case\"t\":i.uniforms[s].value=n(r.value);break;case\"c\":i.uniforms[s].value=new we().setHex(r.value);break;case\"v2\":i.uniforms[s].value=new fe().fromArray(r.value);break;case\"v3\":i.uniforms[s].value=new I().fromArray(r.value);break;case\"v4\":i.uniforms[s].value=new dt().fromArray(r.value);break;case\"m3\":i.uniforms[s].value=new dn().fromArray(r.value);break;case\"m4\":i.uniforms[s].value=new Ne().fromArray(r.value);break;default:i.uniforms[s].value=r.value}}if(e.defines!==void 0&&(i.defines=e.defines),e.vertexShader!==void 0&&(i.vertexShader=e.vertexShader),e.fragmentShader!==void 0&&(i.fragmentShader=e.fragmentShader),e.extensions!==void 0)for(const s in e.extensions)i.extensions[s]=e.extensions[s];if(e.shading!==void 0&&(i.flatShading=e.shading===1),e.size!==void 0&&(i.size=e.size),e.sizeAttenuation!==void 0&&(i.sizeAttenuation=e.sizeAttenuation),e.map!==void 0&&(i.map=n(e.map)),e.matcap!==void 0&&(i.matcap=n(e.matcap)),e.alphaMap!==void 0&&(i.alphaMap=n(e.alphaMap)),e.bumpMap!==void 0&&(i.bumpMap=n(e.bumpMap)),e.bumpScale!==void 0&&(i.bumpScale=e.bumpScale),e.normalMap!==void 0&&(i.normalMap=n(e.normalMap)),e.normalMapType!==void 0&&(i.normalMapType=e.normalMapType),e.normalScale!==void 0){let s=e.normalScale;Array.isArray(s)===!1&&(s=[s,s]),i.normalScale=new fe().fromArray(s)}return e.displacementMap!==void 0&&(i.displacementMap=n(e.displacementMap)),e.displacementScale!==void 0&&(i.displacementScale=e.displacementScale),e.displacementBias!==void 0&&(i.displacementBias=e.displacementBias),e.roughnessMap!==void 0&&(i.roughnessMap=n(e.roughnessMap)),e.metalnessMap!==void 0&&(i.metalnessMap=n(e.metalnessMap)),e.emissiveMap!==void 0&&(i.emissiveMap=n(e.emissiveMap)),e.emissiveIntensity!==void 0&&(i.emissiveIntensity=e.emissiveIntensity),e.specularMap!==void 0&&(i.specularMap=n(e.specularMap)),e.specularIntensityMap!==void 0&&(i.specularIntensityMap=n(e.specularIntensityMap)),e.specularColorMap!==void 0&&(i.specularColorMap=n(e.specularColorMap)),e.envMap!==void 0&&(i.envMap=n(e.envMap)),e.envMapIntensity!==void 0&&(i.envMapIntensity=e.envMapIntensity),e.reflectivity!==void 0&&(i.reflectivity=e.reflectivity),e.refractionRatio!==void 0&&(i.refractionRatio=e.refractionRatio),e.lightMap!==void 0&&(i.lightMap=n(e.lightMap)),e.lightMapIntensity!==void 0&&(i.lightMapIntensity=e.lightMapIntensity),e.aoMap!==void 0&&(i.aoMap=n(e.aoMap)),e.aoMapIntensity!==void 0&&(i.aoMapIntensity=e.aoMapIntensity),e.gradientMap!==void 0&&(i.gradientMap=n(e.gradientMap)),e.clearcoatMap!==void 0&&(i.clearcoatMap=n(e.clearcoatMap)),e.clearcoatRoughnessMap!==void 0&&(i.clearcoatRoughnessMap=n(e.clearcoatRoughnessMap)),e.clearcoatNormalMap!==void 0&&(i.clearcoatNormalMap=n(e.clearcoatNormalMap)),e.clearcoatNormalScale!==void 0&&(i.clearcoatNormalScale=new fe().fromArray(e.clearcoatNormalScale)),e.iridescenceMap!==void 0&&(i.iridescenceMap=n(e.iridescenceMap)),e.iridescenceThicknessMap!==void 0&&(i.iridescenceThicknessMap=n(e.iridescenceThicknessMap)),e.transmissionMap!==void 0&&(i.transmissionMap=n(e.transmissionMap)),e.thicknessMap!==void 0&&(i.thicknessMap=n(e.thicknessMap)),e.sheenColorMap!==void 0&&(i.sheenColorMap=n(e.sheenColorMap)),e.sheenRoughnessMap!==void 0&&(i.sheenRoughnessMap=n(e.sheenRoughnessMap)),i}setTextures(e){return this.textures=e,this}static createMaterialFromType(e){const t={ShadowMaterial:zp,SpriteMaterial:Cl,RawShaderMaterial:Up,ShaderMaterial:ni,PointsMaterial:qi,MeshPhysicalMaterial:Ri,MeshStandardMaterial:Vs,MeshPhongMaterial:ti,MeshToonMaterial:Gp,MeshNormalMaterial:Vp,MeshLambertMaterial:Pl,MeshDepthMaterial:Du,MeshDistanceMaterial:Fu,MeshBasicMaterial:ln,MeshMatcapMaterial:Hp,LineDashedMaterial:Wp,LineBasicMaterial:qt,Material:Wt};return new t[e]}}class sn{static decodeText(e){if(typeof TextDecoder!=\"undefined\")return new TextDecoder().decode(e);let t=\"\";for(let n=0,i=e.length;n<i;n++)t+=String.fromCharCode(e[n]);try{return decodeURIComponent(escape(t))}catch{return t}}static extractUrlBase(e){const t=e.lastIndexOf(\"/\");return t===-1?\"./\":e.slice(0,t+1)}static resolveURL(e,t){return typeof e!=\"string\"||e===\"\"?\"\":(/^https?:\\/\\//i.test(t)&&/^\\//.test(e)&&(t=t.replace(/(^https?:\\/\\/[^\\/]+).*/i,\"$1\")),/^(https?:)?\\/\\//i.test(e)||/^data:.*,.*$/i.test(e)||/^blob:.*$/i.test(e)?e:t+e)}}class Qp extends Xe{constructor(){super(),this.isInstancedBufferGeometry=!0,this.type=\"InstancedBufferGeometry\",this.instanceCount=1/0}copy(e){return super.copy(e),this.instanceCount=e.instanceCount,this}clone(){return new this.constructor().copy(this)}toJSON(){const e=super.toJSON(this);return e.instanceCount=this.instanceCount,e.isInstancedBufferGeometry=!0,e}}class em extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new $t(s.manager);r.setPath(s.path),r.setRequestHeader(s.requestHeader),r.setWithCredentials(s.withCredentials),r.load(e,function(o){try{t(s.parse(JSON.parse(o)))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}parse(e){const t={},n={};function i(d,p){if(t[p]!==void 0)return t[p];const g=d.interleavedBuffers[p],y=s(d,g.buffer),x=gr(g.type,y),b=new Ho(x,g.stride);return b.uuid=g.uuid,t[p]=b,b}function s(d,p){if(n[p]!==void 0)return n[p];const g=d.arrayBuffers[p],y=new Uint32Array(g).buffer;return n[p]=y,y}const r=e.isInstancedBufferGeometry?new Qp:new Xe,o=e.data.index;if(o!==void 0){const d=gr(o.type,o.array);r.setIndex(new mt(d,1))}const l=e.data.attributes;for(const d in l){const p=l[d];let m;if(p.isInterleavedBufferAttribute){const g=i(e.data,p.data);m=new Ji(g,p.itemSize,p.offset,p.normalized)}else{const g=gr(p.type,p.array),y=p.isInstancedBufferAttribute?Ar:mt;m=new y(g,p.itemSize,p.normalized)}p.name!==void 0&&(m.name=p.name),p.usage!==void 0&&m.setUsage(p.usage),p.updateRange!==void 0&&(m.updateRange.offset=p.updateRange.offset,m.updateRange.count=p.updateRange.count),r.setAttribute(d,m)}const c=e.data.morphAttributes;if(c)for(const d in c){const p=c[d],m=[];for(let g=0,y=p.length;g<y;g++){const x=p[g];let b;if(x.isInterleavedBufferAttribute){const v=i(e.data,x.data);b=new Ji(v,x.itemSize,x.offset,x.normalized)}else{const v=gr(x.type,x.array);b=new mt(v,x.itemSize,x.normalized)}x.name!==void 0&&(b.name=x.name),m.push(b)}r.morphAttributes[d]=m}e.data.morphTargetsRelative&&(r.morphTargetsRelative=!0);const u=e.data.groups||e.data.drawcalls||e.data.offsets;if(u!==void 0)for(let d=0,p=u.length;d!==p;++d){const m=u[d];r.addGroup(m.start,m.count,m.materialIndex)}const f=e.data.boundingSphere;if(f!==void 0){const d=new I;f.center!==void 0&&d.fromArray(f.center),r.boundingSphere=new is(d,f.radius)}return e.name&&(r.name=e.name),e.userData&&(r.userData=e.userData),r}}class tm extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=this.path===\"\"?sn.extractUrlBase(e):this.path;this.resourcePath=this.resourcePath||r;const o=new $t(this.manager);o.setPath(this.path),o.setRequestHeader(this.requestHeader),o.setWithCredentials(this.withCredentials),o.load(e,function(l){let c=null;try{c=JSON.parse(l)}catch(u){i!==void 0&&i(u),console.error(\"THREE:ObjectLoader: Can't parse \"+e+\".\",u.message);return}const h=c.metadata;if(h===void 0||h.type===void 0||h.type.toLowerCase()===\"geometry\"){console.error(\"THREE.ObjectLoader: Can't load \"+e);return}s.parse(c,t)},n,i)}async loadAsync(e,t){const n=this,i=this.path===\"\"?sn.extractUrlBase(e):this.path;this.resourcePath=this.resourcePath||i;const s=new $t(this.manager);s.setPath(this.path),s.setRequestHeader(this.requestHeader),s.setWithCredentials(this.withCredentials);const r=await s.loadAsync(e,t),o=JSON.parse(r),l=o.metadata;if(l===void 0||l.type===void 0||l.type.toLowerCase()===\"geometry\")throw new Error(\"THREE.ObjectLoader: Can't load \"+e);return await n.parseAsync(o)}parse(e,t){const n=this.parseAnimations(e.animations),i=this.parseShapes(e.shapes),s=this.parseGeometries(e.geometries,i),r=this.parseImages(e.images,function(){t!==void 0&&t(c)}),o=this.parseTextures(e.textures,r),l=this.parseMaterials(e.materials,o),c=this.parseObject(e.object,s,l,o,n),h=this.parseSkeletons(e.skeletons,c);if(this.bindSkeletons(c,h),t!==void 0){let u=!1;for(const f in r)if(r[f].data instanceof HTMLImageElement){u=!0;break}u===!1&&t(c)}return c}async parseAsync(e){const t=this.parseAnimations(e.animations),n=this.parseShapes(e.shapes),i=this.parseGeometries(e.geometries,n),s=await this.parseImagesAsync(e.images),r=this.parseTextures(e.textures,s),o=this.parseMaterials(e.materials,r),l=this.parseObject(e.object,i,o,r,t),c=this.parseSkeletons(e.skeletons,l);return this.bindSkeletons(l,c),l}parseShapes(e){const t={};if(e!==void 0)for(let n=0,i=e.length;n<i;n++){const s=new Ls().fromJSON(e[n]);t[s.uuid]=s}return t}parseSkeletons(e,t){const n={},i={};if(t.traverse(function(s){s.isBone&&(i[s.uuid]=s)}),e!==void 0)for(let s=0,r=e.length;s<r;s++){const o=new Gs().fromJSON(e[s],i);n[o.uuid]=o}return n}parseGeometries(e,t){const n={};if(e!==void 0){const i=new em;for(let s=0,r=e.length;s<r;s++){let o;const l=e[s];switch(l.type){case\"BufferGeometry\":case\"InstancedBufferGeometry\":o=i.parse(l);break;case\"Geometry\":console.error(\"THREE.ObjectLoader: The legacy Geometry type is no longer supported.\");break;default:l.type in wf?o=wf[l.type].fromJSON(l,t):console.warn(`THREE.ObjectLoader: Unsupported geometry type \"${l.type}\"`)}o.uuid=l.uuid,l.name!==void 0&&(o.name=l.name),o.isBufferGeometry===!0&&l.userData!==void 0&&(o.userData=l.userData),n[l.uuid]=o}}return n}parseMaterials(e,t){const n={},i={};if(e!==void 0){const s=new Fl;s.setTextures(t);for(let r=0,o=e.length;r<o;r++){const l=e[r];if(l.type===\"MultiMaterial\"){const c=[];for(let h=0;h<l.materials.length;h++){const u=l.materials[h];n[u.uuid]===void 0&&(n[u.uuid]=s.parse(u)),c.push(n[u.uuid])}i[l.uuid]=c}else n[l.uuid]===void 0&&(n[l.uuid]=s.parse(l)),i[l.uuid]=n[l.uuid]}}return i}parseAnimations(e){const t={};if(e!==void 0)for(let n=0;n<e.length;n++){const i=e[n],s=Ai.parse(i);t[s.uuid]=s}return t}parseImages(e,t){const n=this,i={};let s;function r(l){return n.manager.itemStart(l),s.load(l,function(){n.manager.itemEnd(l)},void 0,function(){n.manager.itemError(l),n.manager.itemEnd(l)})}function o(l){if(typeof l==\"string\"){const c=l,h=/^(\\/\\/)|([a-z]+:(\\/\\/)?)/i.test(c)?c:n.resourcePath+c;return r(h)}else return l.data?{data:gr(l.type,l.data),width:l.width,height:l.height}:null}if(e!==void 0&&e.length>0){const l=new ju(t);s=new Do(l),s.setCrossOrigin(this.crossOrigin);for(let c=0,h=e.length;c<h;c++){const u=e[c],f=u.url;if(Array.isArray(f)){const d=[];for(let p=0,m=f.length;p<m;p++){const g=f[p],y=o(g);y!==null&&(y instanceof HTMLImageElement?d.push(y):d.push(new vr(y.data,y.width,y.height)))}i[u.uuid]=new Ms(d)}else{const d=o(u.url);i[u.uuid]=new Ms(d)}}}return i}async parseImagesAsync(e){const t=this,n={};let i;async function s(r){if(typeof r==\"string\"){const o=r,l=/^(\\/\\/)|([a-z]+:(\\/\\/)?)/i.test(o)?o:t.resourcePath+o;return await i.loadAsync(l)}else return r.data?{data:gr(r.type,r.data),width:r.width,height:r.height}:null}if(e!==void 0&&e.length>0){i=new Do(this.manager),i.setCrossOrigin(this.crossOrigin);for(let r=0,o=e.length;r<o;r++){const l=e[r],c=l.url;if(Array.isArray(c)){const h=[];for(let u=0,f=c.length;u<f;u++){const d=c[u],p=await s(d);p!==null&&(p instanceof HTMLImageElement?h.push(p):h.push(new vr(p.data,p.width,p.height)))}n[l.uuid]=new Ms(h)}else{const h=await s(l.url);n[l.uuid]=new Ms(h)}}}return n}parseTextures(e,t){function n(s,r){return typeof s==\"number\"?s:(console.warn(\"THREE.ObjectLoader.parseTexture: Constant should be in numeric form.\",s),r[s])}const i={};if(e!==void 0)for(let s=0,r=e.length;s<r;s++){const o=e[s];o.image===void 0&&console.warn('THREE.ObjectLoader: No \"image\" specified for',o.uuid),t[o.image]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined image\",o.image);const l=t[o.image],c=l.data;let h;Array.isArray(c)?(h=new Vo,c.length===6&&(h.needsUpdate=!0)):(c&&c.data?h=new vr:h=new It,c&&(h.needsUpdate=!0)),h.source=l,h.uuid=o.uuid,o.name!==void 0&&(h.name=o.name),o.mapping!==void 0&&(h.mapping=n(o.mapping,Nb)),o.offset!==void 0&&h.offset.fromArray(o.offset),o.repeat!==void 0&&h.repeat.fromArray(o.repeat),o.center!==void 0&&h.center.fromArray(o.center),o.rotation!==void 0&&(h.rotation=o.rotation),o.wrap!==void 0&&(h.wrapS=n(o.wrap[0],Ef),h.wrapT=n(o.wrap[1],Ef)),o.format!==void 0&&(h.format=o.format),o.type!==void 0&&(h.type=o.type),o.encoding!==void 0&&(h.encoding=o.encoding),o.minFilter!==void 0&&(h.minFilter=n(o.minFilter,Cf)),o.magFilter!==void 0&&(h.magFilter=n(o.magFilter,Cf)),o.anisotropy!==void 0&&(h.anisotropy=o.anisotropy),o.flipY!==void 0&&(h.flipY=o.flipY),o.premultiplyAlpha!==void 0&&(h.premultiplyAlpha=o.premultiplyAlpha),o.unpackAlignment!==void 0&&(h.unpackAlignment=o.unpackAlignment),o.userData!==void 0&&(h.userData=o.userData),i[o.uuid]=h}return i}parseObject(e,t,n,i,s){let r;function o(f){return t[f]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined geometry\",f),t[f]}function l(f){if(f!==void 0){if(Array.isArray(f)){const d=[];for(let p=0,m=f.length;p<m;p++){const g=f[p];n[g]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined material\",g),d.push(n[g])}return d}return n[f]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined material\",f),n[f]}}function c(f){return i[f]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined texture\",f),i[f]}let h,u;switch(e.type){case\"Scene\":r=new El,e.background!==void 0&&(Number.isInteger(e.background)?r.background=new we(e.background):r.background=c(e.background)),e.environment!==void 0&&(r.environment=c(e.environment)),e.fog!==void 0&&(e.fog.type===\"Fog\"?r.fog=new Al(e.fog.color,e.fog.near,e.fog.far):e.fog.type===\"FogExp2\"&&(r.fog=new Tl(e.fog.color,e.fog.density)));break;case\"PerspectiveCamera\":r=new Ot(e.fov,e.aspect,e.near,e.far),e.focus!==void 0&&(r.focus=e.focus),e.zoom!==void 0&&(r.zoom=e.zoom),e.filmGauge!==void 0&&(r.filmGauge=e.filmGauge),e.filmOffset!==void 0&&(r.filmOffset=e.filmOffset),e.view!==void 0&&(r.view=Object.assign({},e.view));break;case\"OrthographicCamera\":r=new Us(e.left,e.right,e.top,e.bottom,e.near,e.far),e.zoom!==void 0&&(r.zoom=e.zoom),e.view!==void 0&&(r.view=Object.assign({},e.view));break;case\"AmbientLight\":r=new Xo(e.color,e.intensity);break;case\"DirectionalLight\":r=new Wr(e.color,e.intensity);break;case\"PointLight\":r=new es(e.color,e.intensity,e.distance,e.decay);break;case\"RectAreaLight\":r=new Jp(e.color,e.intensity,e.width,e.height);break;case\"SpotLight\":r=new qo(e.color,e.intensity,e.distance,e.angle,e.penumbra,e.decay);break;case\"HemisphereLight\":r=new Zu(e.color,e.groundColor,e.intensity);break;case\"LightProbe\":r=new Dl().fromJSON(e);break;case\"SkinnedMesh\":h=o(e.geometry),u=l(e.material),r=new Wo(h,u),e.bindMode!==void 0&&(r.bindMode=e.bindMode),e.bindMatrix!==void 0&&r.bindMatrix.fromArray(e.bindMatrix),e.skeleton!==void 0&&(r.skeleton=e.skeleton);break;case\"Mesh\":h=o(e.geometry),u=l(e.material),r=new Rt(h,u);break;case\"InstancedMesh\":h=o(e.geometry),u=l(e.material);const f=e.count,d=e.instanceMatrix,p=e.instanceColor;r=new Ep(h,u,f),r.instanceMatrix=new Ar(new Float32Array(d.array),16),p!==void 0&&(r.instanceColor=new Ar(new Float32Array(p.array),p.itemSize));break;case\"LOD\":r=new Ap;break;case\"Line\":r=new jn(o(e.geometry),l(e.material));break;case\"LineLoop\":r=new ku(o(e.geometry),l(e.material));break;case\"LineSegments\":r=new wn(o(e.geometry),l(e.material));break;case\"PointCloud\":case\"Points\":r=new _r(o(e.geometry),l(e.material));break;case\"Sprite\":r=new yo(l(e.material));break;case\"Group\":r=new pn;break;case\"Bone\":r=new Ds;break;default:r=new pt}if(r.uuid=e.uuid,e.name!==void 0&&(r.name=e.name),e.matrix!==void 0?(r.matrix.fromArray(e.matrix),e.matrixAutoUpdate!==void 0&&(r.matrixAutoUpdate=e.matrixAutoUpdate),r.matrixAutoUpdate&&r.matrix.decompose(r.position,r.quaternion,r.scale)):(e.position!==void 0&&r.position.fromArray(e.position),e.rotation!==void 0&&r.rotation.fromArray(e.rotation),e.quaternion!==void 0&&r.quaternion.fromArray(e.quaternion),e.scale!==void 0&&r.scale.fromArray(e.scale)),e.castShadow!==void 0&&(r.castShadow=e.castShadow),e.receiveShadow!==void 0&&(r.receiveShadow=e.receiveShadow),e.shadow&&(e.shadow.bias!==void 0&&(r.shadow.bias=e.shadow.bias),e.shadow.normalBias!==void 0&&(r.shadow.normalBias=e.shadow.normalBias),e.shadow.radius!==void 0&&(r.shadow.radius=e.shadow.radius),e.shadow.mapSize!==void 0&&r.shadow.mapSize.fromArray(e.shadow.mapSize),e.shadow.camera!==void 0&&(r.shadow.camera=this.parseObject(e.shadow.camera))),e.visible!==void 0&&(r.visible=e.visible),e.frustumCulled!==void 0&&(r.frustumCulled=e.frustumCulled),e.renderOrder!==void 0&&(r.renderOrder=e.renderOrder),e.userData!==void 0&&(r.userData=e.userData),e.layers!==void 0&&(r.layers.mask=e.layers),e.children!==void 0){const f=e.children;for(let d=0;d<f.length;d++)r.add(this.parseObject(f[d],t,n,i,s))}if(e.animations!==void 0){const f=e.animations;for(let d=0;d<f.length;d++){const p=f[d];r.animations.push(s[p])}}if(e.type===\"LOD\"){e.autoUpdate!==void 0&&(r.autoUpdate=e.autoUpdate);const f=e.levels;for(let d=0;d<f.length;d++){const p=f[d],m=r.getObjectByProperty(\"uuid\",p.object);m!==void 0&&r.addLevel(m,p.distance)}}return r}bindSkeletons(e,t){Object.keys(t).length!==0&&e.traverse(function(n){if(n.isSkinnedMesh===!0&&n.skeleton!==void 0){const i=t[n.skeleton];i===void 0?console.warn(\"THREE.ObjectLoader: No skeleton found with UUID:\",n.skeleton):n.bind(i,n.bindMatrix)}})}}const Nb={UVMapping:gl,CubeReflectionMapping:Yi,CubeRefractionMapping:Zi,EquirectangularReflectionMapping:br,EquirectangularRefractionMapping:wo,CubeUVReflectionMapping:Gr},Ef={RepeatWrapping:fn,ClampToEdgeWrapping:Zt,MirroredRepeatWrapping:wr},Cf={NearestFilter:Gt,NearestMipmapNearestFilter:Mo,NearestMipmapLinearFilter:So,LinearFilter:Ft,LinearMipmapNearestFilter:yl,LinearMipmapLinearFilter:oi};class nm extends Xt{constructor(e){super(e),this.isImageBitmapLoader=!0,typeof createImageBitmap==\"undefined\"&&console.warn(\"THREE.ImageBitmapLoader: createImageBitmap() not supported.\"),typeof fetch==\"undefined\"&&console.warn(\"THREE.ImageBitmapLoader: fetch() not supported.\"),this.options={premultiplyAlpha:\"none\"}}setOptions(e){return this.options=e,this}load(e,t,n,i){e===void 0&&(e=\"\"),this.path!==void 0&&(e=this.path+e),e=this.manager.resolveURL(e);const s=this,r=Bs.get(e);if(r!==void 0)return s.manager.itemStart(e),setTimeout(function(){t&&t(r),s.manager.itemEnd(e)},0),r;const o={};o.credentials=this.crossOrigin===\"anonymous\"?\"same-origin\":\"include\",o.headers=this.requestHeader,fetch(e,o).then(function(l){return l.blob()}).then(function(l){return createImageBitmap(l,Object.assign(s.options,{colorSpaceConversion:\"none\"}))}).then(function(l){Bs.add(e,l),t&&t(l),s.manager.itemEnd(e)}).catch(function(l){i&&i(l),s.manager.itemError(e),s.manager.itemEnd(e)}),s.manager.itemStart(e)}}let Oa;const Ju={getContext:function(){return Oa===void 0&&(Oa=new(window.AudioContext||window.webkitAudioContext)),Oa},setContext:function(a){Oa=a}};class kb extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new $t(this.manager);r.setResponseType(\"arraybuffer\"),r.setPath(this.path),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{const l=o.slice(0);Ju.getContext().decodeAudioData(l,function(h){t(h)})}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}}class Ob extends Dl{constructor(e,t,n=1){super(void 0,n),this.isHemisphereLightProbe=!0;const i=new we().set(e),s=new we().set(t),r=new I(i.r,i.g,i.b),o=new I(s.r,s.g,s.b),l=Math.sqrt(Math.PI),c=l*Math.sqrt(.75);this.sh.coefficients[0].copy(r).add(o).multiplyScalar(l),this.sh.coefficients[1].copy(r).sub(o).multiplyScalar(c)}}class Bb extends Dl{constructor(e,t=1){super(void 0,t),this.isAmbientLightProbe=!0;const n=new we().set(e);this.sh.coefficients[0].set(n.r,n.g,n.b).multiplyScalar(2*Math.sqrt(Math.PI))}}const Lf=new Ne,Rf=new Ne,us=new Ne;class zb{constructor(){this.type=\"StereoCamera\",this.aspect=1,this.eyeSep=.064,this.cameraL=new Ot,this.cameraL.layers.enable(1),this.cameraL.matrixAutoUpdate=!1,this.cameraR=new Ot,this.cameraR.layers.enable(2),this.cameraR.matrixAutoUpdate=!1,this._cache={focus:null,fov:null,aspect:null,near:null,far:null,zoom:null,eyeSep:null}}update(e){const t=this._cache;if(t.focus!==e.focus||t.fov!==e.fov||t.aspect!==e.aspect*this.aspect||t.near!==e.near||t.far!==e.far||t.zoom!==e.zoom||t.eyeSep!==this.eyeSep){t.focus=e.focus,t.fov=e.fov,t.aspect=e.aspect*this.aspect,t.near=e.near,t.far=e.far,t.zoom=e.zoom,t.eyeSep=this.eyeSep,us.copy(e.projectionMatrix);const i=t.eyeSep/2,s=i*t.near/t.focus,r=t.near*Math.tan(Es*t.fov*.5)/t.zoom;let o,l;Rf.elements[12]=-i,Lf.elements[12]=i,o=-r*t.aspect+s,l=r*t.aspect+s,us.elements[0]=2*t.near/(l-o),us.elements[8]=(l+o)/(l-o),this.cameraL.projectionMatrix.copy(us),o=-r*t.aspect-s,l=r*t.aspect-s,us.elements[0]=2*t.near/(l-o),us.elements[8]=(l+o)/(l-o),this.cameraR.projectionMatrix.copy(us)}this.cameraL.matrixWorld.copy(e.matrixWorld).multiply(Rf),this.cameraR.matrixWorld.copy(e.matrixWorld).multiply(Lf)}}class $u{constructor(e=!0){this.autoStart=e,this.startTime=0,this.oldTime=0,this.elapsedTime=0,this.running=!1}start(){this.startTime=If(),this.oldTime=this.startTime,this.elapsedTime=0,this.running=!0}stop(){this.getElapsedTime(),this.running=!1,this.autoStart=!1}getElapsedTime(){return this.getDelta(),this.elapsedTime}getDelta(){let e=0;if(this.autoStart&&!this.running)return this.start(),0;if(this.running){const t=If();e=(t-this.oldTime)/1e3,this.oldTime=t,this.elapsedTime+=e}return e}}function If(){return(typeof performance==\"undefined\"?Date:performance).now()}const hs=new I,Pf=new Bt,Ub=new I,fs=new I;class Gb extends pt{constructor(){super(),this.type=\"AudioListener\",this.context=Ju.getContext(),this.gain=this.context.createGain(),this.gain.connect(this.context.destination),this.filter=null,this.timeDelta=0,this._clock=new $u}getInput(){return this.gain}removeFilter(){return this.filter!==null&&(this.gain.disconnect(this.filter),this.filter.disconnect(this.context.destination),this.gain.connect(this.context.destination),this.filter=null),this}getFilter(){return this.filter}setFilter(e){return this.filter!==null?(this.gain.disconnect(this.filter),this.filter.disconnect(this.context.destination)):this.gain.disconnect(this.context.destination),this.filter=e,this.gain.connect(this.filter),this.filter.connect(this.context.destination),this}getMasterVolume(){return this.gain.gain.value}setMasterVolume(e){return this.gain.gain.setTargetAtTime(e,this.context.currentTime,.01),this}updateMatrixWorld(e){super.updateMatrixWorld(e);const t=this.context.listener,n=this.up;if(this.timeDelta=this._clock.getDelta(),this.matrixWorld.decompose(hs,Pf,Ub),fs.set(0,0,-1).applyQuaternion(Pf),t.positionX){const i=this.context.currentTime+this.timeDelta;t.positionX.linearRampToValueAtTime(hs.x,i),t.positionY.linearRampToValueAtTime(hs.y,i),t.positionZ.linearRampToValueAtTime(hs.z,i),t.forwardX.linearRampToValueAtTime(fs.x,i),t.forwardY.linearRampToValueAtTime(fs.y,i),t.forwardZ.linearRampToValueAtTime(fs.z,i),t.upX.linearRampToValueAtTime(n.x,i),t.upY.linearRampToValueAtTime(n.y,i),t.upZ.linearRampToValueAtTime(n.z,i)}else t.setPosition(hs.x,hs.y,hs.z),t.setOrientation(fs.x,fs.y,fs.z,n.x,n.y,n.z)}}class im extends pt{constructor(e){super(),this.type=\"Audio\",this.listener=e,this.context=e.context,this.gain=this.context.createGain(),this.gain.connect(e.getInput()),this.autoplay=!1,this.buffer=null,this.detune=0,this.loop=!1,this.loopStart=0,this.loopEnd=0,this.offset=0,this.duration=void 0,this.playbackRate=1,this.isPlaying=!1,this.hasPlaybackControl=!0,this.source=null,this.sourceType=\"empty\",this._startedAt=0,this._progress=0,this._connected=!1,this.filters=[]}getOutput(){return this.gain}setNodeSource(e){return this.hasPlaybackControl=!1,this.sourceType=\"audioNode\",this.source=e,this.connect(),this}setMediaElementSource(e){return this.hasPlaybackControl=!1,this.sourceType=\"mediaNode\",this.source=this.context.createMediaElementSource(e),this.connect(),this}setMediaStreamSource(e){return this.hasPlaybackControl=!1,this.sourceType=\"mediaStreamNode\",this.source=this.context.createMediaStreamSource(e),this.connect(),this}setBuffer(e){return this.buffer=e,this.sourceType=\"buffer\",this.autoplay&&this.play(),this}play(e=0){if(this.isPlaying===!0){console.warn(\"THREE.Audio: Audio is already playing.\");return}if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}this._startedAt=this.context.currentTime+e;const t=this.context.createBufferSource();return t.buffer=this.buffer,t.loop=this.loop,t.loopStart=this.loopStart,t.loopEnd=this.loopEnd,t.onended=this.onEnded.bind(this),t.start(this._startedAt,this._progress+this.offset,this.duration),this.isPlaying=!0,this.source=t,this.setDetune(this.detune),this.setPlaybackRate(this.playbackRate),this.connect()}pause(){if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}return this.isPlaying===!0&&(this._progress+=Math.max(this.context.currentTime-this._startedAt,0)*this.playbackRate,this.loop===!0&&(this._progress=this._progress%(this.duration||this.buffer.duration)),this.source.stop(),this.source.onended=null,this.isPlaying=!1),this}stop(){if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}return this._progress=0,this.source.stop(),this.source.onended=null,this.isPlaying=!1,this}connect(){if(this.filters.length>0){this.source.connect(this.filters[0]);for(let e=1,t=this.filters.length;e<t;e++)this.filters[e-1].connect(this.filters[e]);this.filters[this.filters.length-1].connect(this.getOutput())}else this.source.connect(this.getOutput());return this._connected=!0,this}disconnect(){if(this.filters.length>0){this.source.disconnect(this.filters[0]);for(let e=1,t=this.filters.length;e<t;e++)this.filters[e-1].disconnect(this.filters[e]);this.filters[this.filters.length-1].disconnect(this.getOutput())}else this.source.disconnect(this.getOutput());return this._connected=!1,this}getFilters(){return this.filters}setFilters(e){return e||(e=[]),this._connected===!0?(this.disconnect(),this.filters=e.slice(),this.connect()):this.filters=e.slice(),this}setDetune(e){if(this.detune=e,this.source.detune!==void 0)return this.isPlaying===!0&&this.source.detune.setTargetAtTime(this.detune,this.context.currentTime,.01),this}getDetune(){return this.detune}getFilter(){return this.getFilters()[0]}setFilter(e){return this.setFilters(e?[e]:[])}setPlaybackRate(e){if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}return this.playbackRate=e,this.isPlaying===!0&&this.source.playbackRate.setTargetAtTime(this.playbackRate,this.context.currentTime,.01),this}getPlaybackRate(){return this.playbackRate}onEnded(){this.isPlaying=!1}getLoop(){return this.hasPlaybackControl===!1?(console.warn(\"THREE.Audio: this Audio has no playback control.\"),!1):this.loop}setLoop(e){if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}return this.loop=e,this.isPlaying===!0&&(this.source.loop=this.loop),this}setLoopStart(e){return this.loopStart=e,this}setLoopEnd(e){return this.loopEnd=e,this}getVolume(){return this.gain.gain.value}setVolume(e){return this.gain.gain.setTargetAtTime(e,this.context.currentTime,.01),this}}const ds=new I,Df=new Bt,Vb=new I,ps=new I;class Hb extends im{constructor(e){super(e),this.panner=this.context.createPanner(),this.panner.panningModel=\"HRTF\",this.panner.connect(this.gain)}disconnect(){super.disconnect(),this.panner.disconnect(this.gain)}getOutput(){return this.panner}getRefDistance(){return this.panner.refDistance}setRefDistance(e){return this.panner.refDistance=e,this}getRolloffFactor(){return this.panner.rolloffFactor}setRolloffFactor(e){return this.panner.rolloffFactor=e,this}getDistanceModel(){return this.panner.distanceModel}setDistanceModel(e){return this.panner.distanceModel=e,this}getMaxDistance(){return this.panner.maxDistance}setMaxDistance(e){return this.panner.maxDistance=e,this}setDirectionalCone(e,t,n){return this.panner.coneInnerAngle=e,this.panner.coneOuterAngle=t,this.panner.coneOuterGain=n,this}updateMatrixWorld(e){if(super.updateMatrixWorld(e),this.hasPlaybackControl===!0&&this.isPlaying===!1)return;this.matrixWorld.decompose(ds,Df,Vb),ps.set(0,0,1).applyQuaternion(Df);const t=this.panner;if(t.positionX){const n=this.context.currentTime+this.listener.timeDelta;t.positionX.linearRampToValueAtTime(ds.x,n),t.positionY.linearRampToValueAtTime(ds.y,n),t.positionZ.linearRampToValueAtTime(ds.z,n),t.orientationX.linearRampToValueAtTime(ps.x,n),t.orientationY.linearRampToValueAtTime(ps.y,n),t.orientationZ.linearRampToValueAtTime(ps.z,n)}else t.setPosition(ds.x,ds.y,ds.z),t.setOrientation(ps.x,ps.y,ps.z)}}class Wb{constructor(e,t=2048){this.analyser=e.context.createAnalyser(),this.analyser.fftSize=t,this.data=new Uint8Array(this.analyser.frequencyBinCount),e.getOutput().connect(this.analyser)}getFrequencyData(){return this.analyser.getByteFrequencyData(this.data),this.data}getAverageFrequency(){let e=0;const t=this.getFrequencyData();for(let n=0;n<t.length;n++)e+=t[n];return e/t.length}}class sm{constructor(e,t,n){this.binding=e,this.valueSize=n;let i,s,r;switch(t){case\"quaternion\":i=this._slerp,s=this._slerpAdditive,r=this._setAdditiveIdentityQuaternion,this.buffer=new Float64Array(n*6),this._workIndex=5;break;case\"string\":case\"bool\":i=this._select,s=this._select,r=this._setAdditiveIdentityOther,this.buffer=new Array(n*5);break;default:i=this._lerp,s=this._lerpAdditive,r=this._setAdditiveIdentityNumeric,this.buffer=new Float64Array(n*5)}this._mixBufferRegion=i,this._mixBufferRegionAdditive=s,this._setIdentity=r,this._origIndex=3,this._addIndex=4,this.cumulativeWeight=0,this.cumulativeWeightAdditive=0,this.useCount=0,this.referenceCount=0}accumulate(e,t){const n=this.buffer,i=this.valueSize,s=e*i+i;let r=this.cumulativeWeight;if(r===0){for(let o=0;o!==i;++o)n[s+o]=n[o];r=t}else{r+=t;const o=t/r;this._mixBufferRegion(n,s,0,o,i)}this.cumulativeWeight=r}accumulateAdditive(e){const t=this.buffer,n=this.valueSize,i=n*this._addIndex;this.cumulativeWeightAdditive===0&&this._setIdentity(),this._mixBufferRegionAdditive(t,i,0,e,n),this.cumulativeWeightAdditive+=e}apply(e){const t=this.valueSize,n=this.buffer,i=e*t+t,s=this.cumulativeWeight,r=this.cumulativeWeightAdditive,o=this.binding;if(this.cumulativeWeight=0,this.cumulativeWeightAdditive=0,s<1){const l=t*this._origIndex;this._mixBufferRegion(n,i,l,1-s,t)}r>0&&this._mixBufferRegionAdditive(n,i,this._addIndex*t,1,t);for(let l=t,c=t+t;l!==c;++l)if(n[l]!==n[l+t]){o.setValue(n,i);break}}saveOriginalState(){const e=this.binding,t=this.buffer,n=this.valueSize,i=n*this._origIndex;e.getValue(t,i);for(let s=n,r=i;s!==r;++s)t[s]=t[i+s%n];this._setIdentity(),this.cumulativeWeight=0,this.cumulativeWeightAdditive=0}restoreOriginalState(){const e=this.valueSize*3;this.binding.setValue(this.buffer,e)}_setAdditiveIdentityNumeric(){const e=this._addIndex*this.valueSize,t=e+this.valueSize;for(let n=e;n<t;n++)this.buffer[n]=0}_setAdditiveIdentityQuaternion(){this._setAdditiveIdentityNumeric(),this.buffer[this._addIndex*this.valueSize+3]=1}_setAdditiveIdentityOther(){const e=this._origIndex*this.valueSize,t=this._addIndex*this.valueSize;for(let n=0;n<this.valueSize;n++)this.buffer[t+n]=this.buffer[e+n]}_select(e,t,n,i,s){if(i>=.5)for(let r=0;r!==s;++r)e[t+r]=e[n+r]}_slerp(e,t,n,i){Bt.slerpFlat(e,t,e,t,e,n,i)}_slerpAdditive(e,t,n,i,s){const r=this._workIndex*s;Bt.multiplyQuaternionsFlat(e,r,e,t,e,n),Bt.slerpFlat(e,t,e,t,e,r,i)}_lerp(e,t,n,i,s){const r=1-i;for(let o=0;o!==s;++o){const l=t+o;e[l]=e[l]*r+e[n+o]*i}}_lerpAdditive(e,t,n,i,s){for(let r=0;r!==s;++r){const o=t+r;e[o]=e[o]+e[n+r]*i}}}const Qu=\"\\\\[\\\\]\\\\.:\\\\/\",qb=new RegExp(\"[\"+Qu+\"]\",\"g\"),eh=\"[^\"+Qu+\"]\",Xb=\"[^\"+Qu.replace(\"\\\\.\",\"\")+\"]\",jb=/((?:WC+[\\/:])*)/.source.replace(\"WC\",eh),Yb=/(WCOD+)?/.source.replace(\"WCOD\",Xb),Zb=/(?:\\.(WC+)(?:\\[(.+)\\])?)?/.source.replace(\"WC\",eh),Kb=/\\.(WC+)(?:\\[(.+)\\])?/.source.replace(\"WC\",eh),Jb=new RegExp(\"^\"+jb+Yb+Zb+Kb+\"$\"),$b=[\"material\",\"materials\",\"bones\"];class Qb{constructor(e,t,n){const i=n||rt.parseTrackName(t);this._targetGroup=e,this._bindings=e.subscribe_(t,i)}getValue(e,t){this.bind();const n=this._targetGroup.nCachedObjects_,i=this._bindings[n];i!==void 0&&i.getValue(e,t)}setValue(e,t){const n=this._bindings;for(let i=this._targetGroup.nCachedObjects_,s=n.length;i!==s;++i)n[i].setValue(e,t)}bind(){const e=this._bindings;for(let t=this._targetGroup.nCachedObjects_,n=e.length;t!==n;++t)e[t].bind()}unbind(){const e=this._bindings;for(let t=this._targetGroup.nCachedObjects_,n=e.length;t!==n;++t)e[t].unbind()}}class rt{constructor(e,t,n){this.path=t,this.parsedPath=n||rt.parseTrackName(t),this.node=rt.findNode(e,this.parsedPath.nodeName)||e,this.rootNode=e,this.getValue=this._getValue_unbound,this.setValue=this._setValue_unbound}static create(e,t,n){return e&&e.isAnimationObjectGroup?new rt.Composite(e,t,n):new rt(e,t,n)}static sanitizeNodeName(e){return e.replace(/\\s/g,\"_\").replace(qb,\"\")}static parseTrackName(e){const t=Jb.exec(e);if(t===null)throw new Error(\"PropertyBinding: Cannot parse trackName: \"+e);const n={nodeName:t[2],objectName:t[3],objectIndex:t[4],propertyName:t[5],propertyIndex:t[6]},i=n.nodeName&&n.nodeName.lastIndexOf(\".\");if(i!==void 0&&i!==-1){const s=n.nodeName.substring(i+1);$b.indexOf(s)!==-1&&(n.nodeName=n.nodeName.substring(0,i),n.objectName=s)}if(n.propertyName===null||n.propertyName.length===0)throw new Error(\"PropertyBinding: can not parse propertyName from trackName: \"+e);return n}static findNode(e,t){if(t===void 0||t===\"\"||t===\".\"||t===-1||t===e.name||t===e.uuid)return e;if(e.skeleton){const n=e.skeleton.getBoneByName(t);if(n!==void 0)return n}if(e.children){const n=function(s){for(let r=0;r<s.length;r++){const o=s[r];if(o.name===t||o.uuid===t)return o;const l=n(o.children);if(l)return l}return null},i=n(e.children);if(i)return i}return null}_getValue_unavailable(){}_setValue_unavailable(){}_getValue_direct(e,t){e[t]=this.targetObject[this.propertyName]}_getValue_array(e,t){const n=this.resolvedProperty;for(let i=0,s=n.length;i!==s;++i)e[t++]=n[i]}_getValue_arrayElement(e,t){e[t]=this.resolvedProperty[this.propertyIndex]}_getValue_toArray(e,t){this.resolvedProperty.toArray(e,t)}_setValue_direct(e,t){this.targetObject[this.propertyName]=e[t]}_setValue_direct_setNeedsUpdate(e,t){this.targetObject[this.propertyName]=e[t],this.targetObject.needsUpdate=!0}_setValue_direct_setMatrixWorldNeedsUpdate(e,t){this.targetObject[this.propertyName]=e[t],this.targetObject.matrixWorldNeedsUpdate=!0}_setValue_array(e,t){const n=this.resolvedProperty;for(let i=0,s=n.length;i!==s;++i)n[i]=e[t++]}_setValue_array_setNeedsUpdate(e,t){const n=this.resolvedProperty;for(let i=0,s=n.length;i!==s;++i)n[i]=e[t++];this.targetObject.needsUpdate=!0}_setValue_array_setMatrixWorldNeedsUpdate(e,t){const n=this.resolvedProperty;for(let i=0,s=n.length;i!==s;++i)n[i]=e[t++];this.targetObject.matrixWorldNeedsUpdate=!0}_setValue_arrayElement(e,t){this.resolvedProperty[this.propertyIndex]=e[t]}_setValue_arrayElement_setNeedsUpdate(e,t){this.resolvedProperty[this.propertyIndex]=e[t],this.targetObject.needsUpdate=!0}_setValue_arrayElement_setMatrixWorldNeedsUpdate(e,t){this.resolvedProperty[this.propertyIndex]=e[t],this.targetObject.matrixWorldNeedsUpdate=!0}_setValue_fromArray(e,t){this.resolvedProperty.fromArray(e,t)}_setValue_fromArray_setNeedsUpdate(e,t){this.resolvedProperty.fromArray(e,t),this.targetObject.needsUpdate=!0}_setValue_fromArray_setMatrixWorldNeedsUpdate(e,t){this.resolvedProperty.fromArray(e,t),this.targetObject.matrixWorldNeedsUpdate=!0}_getValue_unbound(e,t){this.bind(),this.getValue(e,t)}_setValue_unbound(e,t){this.bind(),this.setValue(e,t)}bind(){let e=this.node;const t=this.parsedPath,n=t.objectName,i=t.propertyName;let s=t.propertyIndex;if(e||(e=rt.findNode(this.rootNode,t.nodeName)||this.rootNode,this.node=e),this.getValue=this._getValue_unavailable,this.setValue=this._setValue_unavailable,!e){console.error(\"THREE.PropertyBinding: Trying to update node for track: \"+this.path+\" but it wasn't found.\");return}if(n){let c=t.objectIndex;switch(n){case\"materials\":if(!e.material){console.error(\"THREE.PropertyBinding: Can not bind to material as node does not have a material.\",this);return}if(!e.material.materials){console.error(\"THREE.PropertyBinding: Can not bind to material.materials as node.material does not have a materials array.\",this);return}e=e.material.materials;break;case\"bones\":if(!e.skeleton){console.error(\"THREE.PropertyBinding: Can not bind to bones as node does not have a skeleton.\",this);return}e=e.skeleton.bones;for(let h=0;h<e.length;h++)if(e[h].name===c){c=h;break}break;default:if(e[n]===void 0){console.error(\"THREE.PropertyBinding: Can not bind to objectName of node undefined.\",this);return}e=e[n]}if(c!==void 0){if(e[c]===void 0){console.error(\"THREE.PropertyBinding: Trying to bind to objectIndex of objectName, but is undefined.\",this,e);return}e=e[c]}}const r=e[i];if(r===void 0){const c=t.nodeName;console.error(\"THREE.PropertyBinding: Trying to update property for track: \"+c+\".\"+i+\" but it wasn't found.\",e);return}let o=this.Versioning.None;this.targetObject=e,e.needsUpdate!==void 0?o=this.Versioning.NeedsUpdate:e.matrixWorldNeedsUpdate!==void 0&&(o=this.Versioning.MatrixWorldNeedsUpdate);let l=this.BindingType.Direct;if(s!==void 0){if(i===\"morphTargetInfluences\"){if(!e.geometry){console.error(\"THREE.PropertyBinding: Can not bind to morphTargetInfluences because node does not have a geometry.\",this);return}if(!e.geometry.morphAttributes){console.error(\"THREE.PropertyBinding: Can not bind to morphTargetInfluences because node does not have a geometry.morphAttributes.\",this);return}e.morphTargetDictionary[s]!==void 0&&(s=e.morphTargetDictionary[s])}l=this.BindingType.ArrayElement,this.resolvedProperty=r,this.propertyIndex=s}else r.fromArray!==void 0&&r.toArray!==void 0?(l=this.BindingType.HasFromToArray,this.resolvedProperty=r):Array.isArray(r)?(l=this.BindingType.EntireArray,this.resolvedProperty=r):this.propertyName=i;this.getValue=this.GetterByBindingType[l],this.setValue=this.SetterByBindingTypeAndVersioning[l][o]}unbind(){this.node=null,this.getValue=this._getValue_unbound,this.setValue=this._setValue_unbound}}rt.Composite=Qb;rt.prototype.BindingType={Direct:0,EntireArray:1,ArrayElement:2,HasFromToArray:3};rt.prototype.Versioning={None:0,NeedsUpdate:1,MatrixWorldNeedsUpdate:2};rt.prototype.GetterByBindingType=[rt.prototype._getValue_direct,rt.prototype._getValue_array,rt.prototype._getValue_arrayElement,rt.prototype._getValue_toArray];rt.prototype.SetterByBindingTypeAndVersioning=[[rt.prototype._setValue_direct,rt.prototype._setValue_direct_setNeedsUpdate,rt.prototype._setValue_direct_setMatrixWorldNeedsUpdate],[rt.prototype._setValue_array,rt.prototype._setValue_array_setNeedsUpdate,rt.prototype._setValue_array_setMatrixWorldNeedsUpdate],[rt.prototype._setValue_arrayElement,rt.prototype._setValue_arrayElement_setNeedsUpdate,rt.prototype._setValue_arrayElement_setMatrixWorldNeedsUpdate],[rt.prototype._setValue_fromArray,rt.prototype._setValue_fromArray_setNeedsUpdate,rt.prototype._setValue_fromArray_setMatrixWorldNeedsUpdate]];class ew{constructor(){this.isAnimationObjectGroup=!0,this.uuid=En(),this._objects=Array.prototype.slice.call(arguments),this.nCachedObjects_=0;const e={};this._indicesByUUID=e;for(let n=0,i=arguments.length;n!==i;++n)e[arguments[n].uuid]=n;this._paths=[],this._parsedPaths=[],this._bindings=[],this._bindingsIndicesByPath={};const t=this;this.stats={objects:{get total(){return t._objects.length},get inUse(){return this.total-t.nCachedObjects_}},get bindingsPerObject(){return t._bindings.length}}}add(){const e=this._objects,t=this._indicesByUUID,n=this._paths,i=this._parsedPaths,s=this._bindings,r=s.length;let o,l=e.length,c=this.nCachedObjects_;for(let h=0,u=arguments.length;h!==u;++h){const f=arguments[h],d=f.uuid;let p=t[d];if(p===void 0){p=l++,t[d]=p,e.push(f);for(let m=0,g=r;m!==g;++m)s[m].push(new rt(f,n[m],i[m]))}else if(p<c){o=e[p];const m=--c,g=e[m];t[g.uuid]=p,e[p]=g,t[d]=m,e[m]=f;for(let y=0,x=r;y!==x;++y){const b=s[y],v=b[m];let M=b[p];b[p]=v,M===void 0&&(M=new rt(f,n[y],i[y])),b[m]=M}}else e[p]!==o&&console.error(\"THREE.AnimationObjectGroup: Different objects with the same UUID detected. Clean the caches or recreate your infrastructure when reloading scenes.\")}this.nCachedObjects_=c}remove(){const e=this._objects,t=this._indicesByUUID,n=this._bindings,i=n.length;let s=this.nCachedObjects_;for(let r=0,o=arguments.length;r!==o;++r){const l=arguments[r],c=l.uuid,h=t[c];if(h!==void 0&&h>=s){const u=s++,f=e[u];t[f.uuid]=h,e[h]=f,t[c]=u,e[u]=l;for(let d=0,p=i;d!==p;++d){const m=n[d],g=m[u],y=m[h];m[h]=g,m[u]=y}}}this.nCachedObjects_=s}uncache(){const e=this._objects,t=this._indicesByUUID,n=this._bindings,i=n.length;let s=this.nCachedObjects_,r=e.length;for(let o=0,l=arguments.length;o!==l;++o){const c=arguments[o],h=c.uuid,u=t[h];if(u!==void 0)if(delete t[h],u<s){const f=--s,d=e[f],p=--r,m=e[p];t[d.uuid]=u,e[u]=d,t[m.uuid]=f,e[f]=m,e.pop();for(let g=0,y=i;g!==y;++g){const x=n[g],b=x[f],v=x[p];x[u]=b,x[f]=v,x.pop()}}else{const f=--r,d=e[f];f>0&&(t[d.uuid]=u),e[u]=d,e.pop();for(let p=0,m=i;p!==m;++p){const g=n[p];g[u]=g[f],g.pop()}}}this.nCachedObjects_=s}subscribe_(e,t){const n=this._bindingsIndicesByPath;let i=n[e];const s=this._bindings;if(i!==void 0)return s[i];const r=this._paths,o=this._parsedPaths,l=this._objects,c=l.length,h=this.nCachedObjects_,u=new Array(c);i=s.length,n[e]=i,r.push(e),o.push(t),s.push(u);for(let f=h,d=l.length;f!==d;++f){const p=l[f];u[f]=new rt(p,e,t)}return u}unsubscribe_(e){const t=this._bindingsIndicesByPath,n=t[e];if(n!==void 0){const i=this._paths,s=this._parsedPaths,r=this._bindings,o=r.length-1,l=r[o],c=e[o];t[c]=n,r[n]=l,r.pop(),s[n]=s[o],s.pop(),i[n]=i[o],i.pop()}}}class tw{constructor(e,t,n=null,i=t.blendMode){this._mixer=e,this._clip=t,this._localRoot=n,this.blendMode=i;const s=t.tracks,r=s.length,o=new Array(r),l={endingStart:bs,endingEnd:bs};for(let c=0;c!==r;++c){const h=s[c].createInterpolant(null);o[c]=h,h.settings=l}this._interpolantSettings=l,this._interpolants=o,this._propertyBindings=new Array(r),this._cacheIndex=null,this._byClipCacheIndex=null,this._timeScaleInterpolant=null,this._weightInterpolant=null,this.loop=np,this._loopCount=-1,this._startTime=null,this.time=0,this.timeScale=1,this._effectiveTimeScale=1,this.weight=1,this._effectiveWeight=1,this.repetitions=1/0,this.paused=!1,this.enabled=!0,this.clampWhenFinished=!1,this.zeroSlopeAtStart=!0,this.zeroSlopeAtEnd=!0}play(){return this._mixer._activateAction(this),this}stop(){return this._mixer._deactivateAction(this),this.reset()}reset(){return this.paused=!1,this.enabled=!0,this.time=0,this._loopCount=-1,this._startTime=null,this.stopFading().stopWarping()}isRunning(){return this.enabled&&!this.paused&&this.timeScale!==0&&this._startTime===null&&this._mixer._isActiveAction(this)}isScheduled(){return this._mixer._isActiveAction(this)}startAt(e){return this._startTime=e,this}setLoop(e,t){return this.loop=e,this.repetitions=t,this}setEffectiveWeight(e){return this.weight=e,this._effectiveWeight=this.enabled?e:0,this.stopFading()}getEffectiveWeight(){return this._effectiveWeight}fadeIn(e){return this._scheduleFading(e,0,1)}fadeOut(e){return this._scheduleFading(e,1,0)}crossFadeFrom(e,t,n){if(e.fadeOut(t),this.fadeIn(t),n){const i=this._clip.duration,s=e._clip.duration,r=s/i,o=i/s;e.warp(1,r,t),this.warp(o,1,t)}return this}crossFadeTo(e,t,n){return e.crossFadeFrom(this,t,n)}stopFading(){const e=this._weightInterpolant;return e!==null&&(this._weightInterpolant=null,this._mixer._takeBackControlInterpolant(e)),this}setEffectiveTimeScale(e){return this.timeScale=e,this._effectiveTimeScale=this.paused?0:e,this.stopWarping()}getEffectiveTimeScale(){return this._effectiveTimeScale}setDuration(e){return this.timeScale=this._clip.duration/e,this.stopWarping()}syncWith(e){return this.time=e.time,this.timeScale=e.timeScale,this.stopWarping()}halt(e){return this.warp(this._effectiveTimeScale,0,e)}warp(e,t,n){const i=this._mixer,s=i.time,r=this.timeScale;let o=this._timeScaleInterpolant;o===null&&(o=i._lendControlInterpolant(),this._timeScaleInterpolant=o);const l=o.parameterPositions,c=o.sampleValues;return l[0]=s,l[1]=s+n,c[0]=e/r,c[1]=t/r,this}stopWarping(){const e=this._timeScaleInterpolant;return e!==null&&(this._timeScaleInterpolant=null,this._mixer._takeBackControlInterpolant(e)),this}getMixer(){return this._mixer}getClip(){return this._clip}getRoot(){return this._localRoot||this._mixer._root}_update(e,t,n,i){if(!this.enabled){this._updateWeight(e);return}const s=this._startTime;if(s!==null){const l=(e-s)*n;if(l<0||n===0)return;this._startTime=null,t=n*l}t*=this._updateTimeScale(e);const r=this._updateTime(t),o=this._updateWeight(e);if(o>0){const l=this._interpolants,c=this._propertyBindings;switch(this.blendMode){case Eu:for(let h=0,u=l.length;h!==u;++h)l[h].evaluate(r),c[h].accumulateAdditive(o);break;case xl:default:for(let h=0,u=l.length;h!==u;++h)l[h].evaluate(r),c[h].accumulate(i,o)}}}_updateWeight(e){let t=0;if(this.enabled){t=this.weight;const n=this._weightInterpolant;if(n!==null){const i=n.evaluate(e)[0];t*=i,e>n.parameterPositions[1]&&(this.stopFading(),i===0&&(this.enabled=!1))}}return this._effectiveWeight=t,t}_updateTimeScale(e){let t=0;if(!this.paused){t=this.timeScale;const n=this._timeScaleInterpolant;n!==null&&(t*=n.evaluate(e)[0],e>n.parameterPositions[1]&&(this.stopWarping(),t===0?this.paused=!0:this.timeScale=t))}return this._effectiveTimeScale=t,t}_updateTime(e){const t=this._clip.duration,n=this.loop;let i=this.time+e,s=this._loopCount;const r=n===ip;if(e===0)return s===-1?i:r&&(s&1)===1?t-i:i;if(n===tp){s===-1&&(this._loopCount=0,this._setEndings(!0,!0,!1));e:{if(i>=t)i=t;else if(i<0)i=0;else{this.time=i;break e}this.clampWhenFinished?this.paused=!0:this.enabled=!1,this.time=i,this._mixer.dispatchEvent({type:\"finished\",action:this,direction:e<0?-1:1})}}else{if(s===-1&&(e>=0?(s=0,this._setEndings(!0,this.repetitions===0,r)):this._setEndings(this.repetitions===0,!0,r)),i>=t||i<0){const o=Math.floor(i/t);i-=t*o,s+=Math.abs(o);const l=this.repetitions-s;if(l<=0)this.clampWhenFinished?this.paused=!0:this.enabled=!1,i=e>0?t:0,this.time=i,this._mixer.dispatchEvent({type:\"finished\",action:this,direction:e>0?1:-1});else{if(l===1){const c=e<0;this._setEndings(c,!c,r)}else this._setEndings(!1,!1,r);this._loopCount=s,this.time=i,this._mixer.dispatchEvent({type:\"loop\",action:this,loopDelta:o})}}else this.time=i;if(r&&(s&1)===1)return t-i}return i}_setEndings(e,t,n){const i=this._interpolantSettings;n?(i.endingStart=ws,i.endingEnd=ws):(e?i.endingStart=this.zeroSlopeAtStart?ws:bs:i.endingStart=To,t?i.endingEnd=this.zeroSlopeAtEnd?ws:bs:i.endingEnd=To)}_scheduleFading(e,t,n){const i=this._mixer,s=i.time;let r=this._weightInterpolant;r===null&&(r=i._lendControlInterpolant(),this._weightInterpolant=r);const o=r.parameterPositions,l=r.sampleValues;return o[0]=s,l[0]=t,o[1]=s+e,l[1]=n,this}}const nw=new Float32Array(1);class Qa extends ai{constructor(e){super(),this._root=e,this._initMemoryManager(),this._accuIndex=0,this.time=0,this.timeScale=1}_bindAction(e,t){const n=e._localRoot||this._root,i=e._clip.tracks,s=i.length,r=e._propertyBindings,o=e._interpolants,l=n.uuid,c=this._bindingsByRootAndName;let h=c[l];h===void 0&&(h={},c[l]=h);for(let u=0;u!==s;++u){const f=i[u],d=f.name;let p=h[d];if(p!==void 0)++p.referenceCount,r[u]=p;else{if(p=r[u],p!==void 0){p._cacheIndex===null&&(++p.referenceCount,this._addInactiveBinding(p,l,d));continue}const m=t&&t._propertyBindings[u].binding.parsedPath;p=new sm(rt.create(n,d,m),f.ValueTypeName,f.getValueSize()),++p.referenceCount,this._addInactiveBinding(p,l,d),r[u]=p}o[u].resultBuffer=p.buffer}}_activateAction(e){if(!this._isActiveAction(e)){if(e._cacheIndex===null){const n=(e._localRoot||this._root).uuid,i=e._clip.uuid,s=this._actionsByClip[i];this._bindAction(e,s&&s.knownActions[0]),this._addInactiveAction(e,i,n)}const t=e._propertyBindings;for(let n=0,i=t.length;n!==i;++n){const s=t[n];s.useCount++===0&&(this._lendBinding(s),s.saveOriginalState())}this._lendAction(e)}}_deactivateAction(e){if(this._isActiveAction(e)){const t=e._propertyBindings;for(let n=0,i=t.length;n!==i;++n){const s=t[n];--s.useCount===0&&(s.restoreOriginalState(),this._takeBackBinding(s))}this._takeBackAction(e)}}_initMemoryManager(){this._actions=[],this._nActiveActions=0,this._actionsByClip={},this._bindings=[],this._nActiveBindings=0,this._bindingsByRootAndName={},this._controlInterpolants=[],this._nActiveControlInterpolants=0;const e=this;this.stats={actions:{get total(){return e._actions.length},get inUse(){return e._nActiveActions}},bindings:{get total(){return e._bindings.length},get inUse(){return e._nActiveBindings}},controlInterpolants:{get total(){return e._controlInterpolants.length},get inUse(){return e._nActiveControlInterpolants}}}}_isActiveAction(e){const t=e._cacheIndex;return t!==null&&t<this._nActiveActions}_addInactiveAction(e,t,n){const i=this._actions,s=this._actionsByClip;let r=s[t];if(r===void 0)r={knownActions:[e],actionByRoot:{}},e._byClipCacheIndex=0,s[t]=r;else{const o=r.knownActions;e._byClipCacheIndex=o.length,o.push(e)}e._cacheIndex=i.length,i.push(e),r.actionByRoot[n]=e}_removeInactiveAction(e){const t=this._actions,n=t[t.length-1],i=e._cacheIndex;n._cacheIndex=i,t[i]=n,t.pop(),e._cacheIndex=null;const s=e._clip.uuid,r=this._actionsByClip,o=r[s],l=o.knownActions,c=l[l.length-1],h=e._byClipCacheIndex;c._byClipCacheIndex=h,l[h]=c,l.pop(),e._byClipCacheIndex=null;const u=o.actionByRoot,f=(e._localRoot||this._root).uuid;delete u[f],l.length===0&&delete r[s],this._removeInactiveBindingsForAction(e)}_removeInactiveBindingsForAction(e){const t=e._propertyBindings;for(let n=0,i=t.length;n!==i;++n){const s=t[n];--s.referenceCount===0&&this._removeInactiveBinding(s)}}_lendAction(e){const t=this._actions,n=e._cacheIndex,i=this._nActiveActions++,s=t[i];e._cacheIndex=i,t[i]=e,s._cacheIndex=n,t[n]=s}_takeBackAction(e){const t=this._actions,n=e._cacheIndex,i=--this._nActiveActions,s=t[i];e._cacheIndex=i,t[i]=e,s._cacheIndex=n,t[n]=s}_addInactiveBinding(e,t,n){const i=this._bindingsByRootAndName,s=this._bindings;let r=i[t];r===void 0&&(r={},i[t]=r),r[n]=e,e._cacheIndex=s.length,s.push(e)}_removeInactiveBinding(e){const t=this._bindings,n=e.binding,i=n.rootNode.uuid,s=n.path,r=this._bindingsByRootAndName,o=r[i],l=t[t.length-1],c=e._cacheIndex;l._cacheIndex=c,t[c]=l,t.pop(),delete o[s],Object.keys(o).length===0&&delete r[i]}_lendBinding(e){const t=this._bindings,n=e._cacheIndex,i=this._nActiveBindings++,s=t[i];e._cacheIndex=i,t[i]=e,s._cacheIndex=n,t[n]=s}_takeBackBinding(e){const t=this._bindings,n=e._cacheIndex,i=--this._nActiveBindings,s=t[i];e._cacheIndex=i,t[i]=e,s._cacheIndex=n,t[n]=s}_lendControlInterpolant(){const e=this._controlInterpolants,t=this._nActiveControlInterpolants++;let n=e[t];return n===void 0&&(n=new qu(new Float32Array(2),new Float32Array(2),1,nw),n.__cacheIndex=t,e[t]=n),n}_takeBackControlInterpolant(e){const t=this._controlInterpolants,n=e.__cacheIndex,i=--this._nActiveControlInterpolants,s=t[i];e.__cacheIndex=i,t[i]=e,s.__cacheIndex=n,t[n]=s}clipAction(e,t,n){const i=t||this._root,s=i.uuid;let r=typeof e==\"string\"?Ai.findByName(i,e):e;const o=r!==null?r.uuid:e,l=this._actionsByClip[o];let c=null;if(n===void 0&&(r!==null?n=r.blendMode:n=xl),l!==void 0){const u=l.actionByRoot[s];if(u!==void 0&&u.blendMode===n)return u;c=l.knownActions[0],r===null&&(r=c._clip)}if(r===null)return null;const h=new tw(this,r,t,n);return this._bindAction(h,c),this._addInactiveAction(h,o,s),h}existingAction(e,t){const n=t||this._root,i=n.uuid,s=typeof e==\"string\"?Ai.findByName(n,e):e,r=s?s.uuid:e,o=this._actionsByClip[r];return o!==void 0&&o.actionByRoot[i]||null}stopAllAction(){const e=this._actions,t=this._nActiveActions;for(let n=t-1;n>=0;--n)e[n].stop();return this}update(e){e*=this.timeScale;const t=this._actions,n=this._nActiveActions,i=this.time+=e,s=Math.sign(e),r=this._accuIndex^=1;for(let c=0;c!==n;++c)t[c]._update(i,e,s,r);const o=this._bindings,l=this._nActiveBindings;for(let c=0;c!==l;++c)o[c].apply(r);return this}setTime(e){this.time=0;for(let t=0;t<this._actions.length;t++)this._actions[t].time=0;return this.update(e)}getRoot(){return this._root}uncacheClip(e){const t=this._actions,n=e.uuid,i=this._actionsByClip,s=i[n];if(s!==void 0){const r=s.knownActions;for(let o=0,l=r.length;o!==l;++o){const c=r[o];this._deactivateAction(c);const h=c._cacheIndex,u=t[t.length-1];c._cacheIndex=null,c._byClipCacheIndex=null,u._cacheIndex=h,t[h]=u,t.pop(),this._removeInactiveBindingsForAction(c)}delete i[n]}}uncacheRoot(e){const t=e.uuid,n=this._actionsByClip;for(const r in n){const o=n[r].actionByRoot,l=o[t];l!==void 0&&(this._deactivateAction(l),this._removeInactiveAction(l))}const i=this._bindingsByRootAndName,s=i[t];if(s!==void 0)for(const r in s){const o=s[r];o.restoreOriginalState(),this._removeInactiveBinding(o)}}uncacheAction(e,t){const n=this.existingAction(e,t);n!==null&&(this._deactivateAction(n),this._removeInactiveAction(n))}}class th{constructor(e){typeof e==\"string\"&&(console.warn(\"THREE.Uniform: Type parameter is no longer needed.\"),e=arguments[1]),this.value=e}clone(){return new th(this.value.clone===void 0?this.value:this.value.clone())}}let iw=0;class sw extends ai{constructor(){super(),this.isUniformsGroup=!0,Object.defineProperty(this,\"id\",{value:iw++}),this.name=\"\",this.usage=Ao,this.uniforms=[]}add(e){return this.uniforms.push(e),this}remove(e){const t=this.uniforms.indexOf(e);return t!==-1&&this.uniforms.splice(t,1),this}setName(e){return this.name=e,this}setUsage(e){return this.usage=e,this}dispose(){return this.dispatchEvent({type:\"dispose\"}),this}copy(e){this.name=e.name,this.usage=e.usage;const t=e.uniforms;this.uniforms.length=0;for(let n=0,i=t.length;n<i;n++)this.uniforms.push(t[n].clone());return this}clone(){return new this.constructor().copy(this)}}class rw extends Ho{constructor(e,t,n=1){super(e,t),this.isInstancedInterleavedBuffer=!0,this.meshPerAttribute=n}copy(e){return super.copy(e),this.meshPerAttribute=e.meshPerAttribute,this}clone(e){const t=super.clone(e);return t.meshPerAttribute=this.meshPerAttribute,t}toJSON(e){const t=super.toJSON(e);return t.isInstancedInterleavedBuffer=!0,t.meshPerAttribute=this.meshPerAttribute,t}}class ow{constructor(e,t,n,i,s){this.isGLBufferAttribute=!0,this.buffer=e,this.type=t,this.itemSize=n,this.elementSize=i,this.count=s,this.version=0}set needsUpdate(e){e===!0&&this.version++}setBuffer(e){return this.buffer=e,this}setType(e,t){return this.type=e,this.elementSize=t,this}setItemSize(e){return this.itemSize=e,this}setCount(e){return this.count=e,this}}class rm{constructor(e,t,n=0,i=1/0){this.ray=new Go(e,t),this.near=n,this.far=i,this.camera=null,this.layers=new _l,this.params={Mesh:{},Line:{threshold:1},LOD:{},Points:{threshold:1},Sprite:{}}}set(e,t){this.ray.set(e,t)}setFromCamera(e,t){t.isPerspectiveCamera?(this.ray.origin.setFromMatrixPosition(t.matrixWorld),this.ray.direction.set(e.x,e.y,.5).unproject(t).sub(this.ray.origin).normalize(),this.camera=t):t.isOrthographicCamera?(this.ray.origin.set(e.x,e.y,(t.near+t.far)/(t.near-t.far)).unproject(t),this.ray.direction.set(0,0,-1).transformDirection(t.matrixWorld),this.camera=t):console.error(\"THREE.Raycaster: Unsupported camera type: \"+t.type)}intersectObject(e,t=!0,n=[]){return cu(e,this,n,t),n.sort(Ff),n}intersectObjects(e,t=!0,n=[]){for(let i=0,s=e.length;i<s;i++)cu(e[i],this,n,t);return n.sort(Ff),n}}function Ff(a,e){return a.distance-e.distance}function cu(a,e,t,n){if(a.layers.test(e.layers)&&a.raycast(e,t),n===!0){const i=a.children;for(let s=0,r=i.length;s<r;s++)cu(i[s],e,t,!0)}}class uu{constructor(e=1,t=0,n=0){return this.radius=e,this.phi=t,this.theta=n,this}set(e,t,n){return this.radius=e,this.phi=t,this.theta=n,this}copy(e){return this.radius=e.radius,this.phi=e.phi,this.theta=e.theta,this}makeSafe(){return this.phi=Math.max(1e-6,Math.min(Math.PI-1e-6,this.phi)),this}setFromVector3(e){return this.setFromCartesianCoords(e.x,e.y,e.z)}setFromCartesianCoords(e,t,n){return this.radius=Math.sqrt(e*e+t*t+n*n),this.radius===0?(this.theta=0,this.phi=0):(this.theta=Math.atan2(e,n),this.phi=Math.acos(Vt(t/this.radius,-1,1))),this}clone(){return new this.constructor().copy(this)}}class aw{constructor(e=1,t=0,n=0){return this.radius=e,this.theta=t,this.y=n,this}set(e,t,n){return this.radius=e,this.theta=t,this.y=n,this}copy(e){return this.radius=e.radius,this.theta=e.theta,this.y=e.y,this}setFromVector3(e){return this.setFromCartesianCoords(e.x,e.y,e.z)}setFromCartesianCoords(e,t,n){return this.radius=Math.sqrt(e*e+n*n),this.theta=Math.atan2(e,n),this.y=t,this}clone(){return new this.constructor().copy(this)}}const Nf=new fe;class lw{constructor(e=new fe(1/0,1/0),t=new fe(-1/0,-1/0)){this.isBox2=!0,this.min=e,this.max=t}set(e,t){return this.min.copy(e),this.max.copy(t),this}setFromPoints(e){this.makeEmpty();for(let t=0,n=e.length;t<n;t++)this.expandByPoint(e[t]);return this}setFromCenterAndSize(e,t){const n=Nf.copy(t).multiplyScalar(.5);return this.min.copy(e).sub(n),this.max.copy(e).add(n),this}clone(){return new this.constructor().copy(this)}copy(e){return this.min.copy(e.min),this.max.copy(e.max),this}makeEmpty(){return this.min.x=this.min.y=1/0,this.max.x=this.max.y=-1/0,this}isEmpty(){return this.max.x<this.min.x||this.max.y<this.min.y}getCenter(e){return this.isEmpty()?e.set(0,0):e.addVectors(this.min,this.max).multiplyScalar(.5)}getSize(e){return this.isEmpty()?e.set(0,0):e.subVectors(this.max,this.min)}expandByPoint(e){return this.min.min(e),this.max.max(e),this}expandByVector(e){return this.min.sub(e),this.max.add(e),this}expandByScalar(e){return this.min.addScalar(-e),this.max.addScalar(e),this}containsPoint(e){return!(e.x<this.min.x||e.x>this.max.x||e.y<this.min.y||e.y>this.max.y)}containsBox(e){return this.min.x<=e.min.x&&e.max.x<=this.max.x&&this.min.y<=e.min.y&&e.max.y<=this.max.y}getParameter(e,t){return t.set((e.x-this.min.x)/(this.max.x-this.min.x),(e.y-this.min.y)/(this.max.y-this.min.y))}intersectsBox(e){return!(e.max.x<this.min.x||e.min.x>this.max.x||e.max.y<this.min.y||e.min.y>this.max.y)}clampPoint(e,t){return t.copy(e).clamp(this.min,this.max)}distanceToPoint(e){return Nf.copy(e).clamp(this.min,this.max).sub(e).length()}intersect(e){return this.min.max(e.min),this.max.min(e.max),this}union(e){return this.min.min(e.min),this.max.max(e.max),this}translate(e){return this.min.add(e),this.max.add(e),this}equals(e){return e.min.equals(this.min)&&e.max.equals(this.max)}}const kf=new I,Ba=new I;class cw{constructor(e=new I,t=new I){this.start=e,this.end=t}set(e,t){return this.start.copy(e),this.end.copy(t),this}copy(e){return this.start.copy(e.start),this.end.copy(e.end),this}getCenter(e){return e.addVectors(this.start,this.end).multiplyScalar(.5)}delta(e){return e.subVectors(this.end,this.start)}distanceSq(){return this.start.distanceToSquared(this.end)}distance(){return this.start.distanceTo(this.end)}at(e,t){return this.delta(t).multiplyScalar(e).add(this.start)}closestPointToPointParameter(e,t){kf.subVectors(e,this.start),Ba.subVectors(this.end,this.start);const n=Ba.dot(Ba);let s=Ba.dot(kf)/n;return t&&(s=Vt(s,0,1)),s}closestPointToPoint(e,t,n){const i=this.closestPointToPointParameter(e,t);return this.delta(n).multiplyScalar(i).add(this.start)}applyMatrix4(e){return this.start.applyMatrix4(e),this.end.applyMatrix4(e),this}equals(e){return e.start.equals(this.start)&&e.end.equals(this.end)}clone(){return new this.constructor().copy(this)}}const Of=new I;class uw extends pt{constructor(e,t){super(),this.light=e,this.light.updateMatrixWorld(),this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1,this.color=t;const n=new Xe,i=[0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,-1,0,1,0,0,0,0,1,1,0,0,0,0,-1,1];for(let r=0,o=1,l=32;r<l;r++,o++){const c=r/l*Math.PI*2,h=o/l*Math.PI*2;i.push(Math.cos(c),Math.sin(c),1,Math.cos(h),Math.sin(h),1)}n.setAttribute(\"position\",new Ce(i,3));const s=new qt({fog:!1,toneMapped:!1});this.cone=new wn(n,s),this.add(this.cone),this.update()}dispose(){this.cone.geometry.dispose(),this.cone.material.dispose()}update(){this.light.updateMatrixWorld();const e=this.light.distance?this.light.distance:1e3,t=e*Math.tan(this.light.angle);this.cone.scale.set(t,t,e),Of.setFromMatrixPosition(this.light.target.matrixWorld),this.cone.lookAt(Of),this.color!==void 0?this.cone.material.color.set(this.color):this.cone.material.color.copy(this.light.color)}}const zi=new I,za=new Ne,vc=new Ne;class hw extends wn{constructor(e){const t=om(e),n=new Xe,i=[],s=[],r=new we(0,0,1),o=new we(0,1,0);for(let c=0;c<t.length;c++){const h=t[c];h.parent&&h.parent.isBone&&(i.push(0,0,0),i.push(0,0,0),s.push(r.r,r.g,r.b),s.push(o.r,o.g,o.b))}n.setAttribute(\"position\",new Ce(i,3)),n.setAttribute(\"color\",new Ce(s,3));const l=new qt({vertexColors:!0,depthTest:!1,depthWrite:!1,toneMapped:!1,transparent:!0});super(n,l),this.isSkeletonHelper=!0,this.type=\"SkeletonHelper\",this.root=e,this.bones=t,this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1}updateMatrixWorld(e){const t=this.bones,n=this.geometry,i=n.getAttribute(\"position\");vc.copy(this.root.matrixWorld).invert();for(let s=0,r=0;s<t.length;s++){const o=t[s];o.parent&&o.parent.isBone&&(za.multiplyMatrices(vc,o.matrixWorld),zi.setFromMatrixPosition(za),i.setXYZ(r,zi.x,zi.y,zi.z),za.multiplyMatrices(vc,o.parent.matrixWorld),zi.setFromMatrixPosition(za),i.setXYZ(r+1,zi.x,zi.y,zi.z),r+=2)}n.getAttribute(\"position\").needsUpdate=!0,super.updateMatrixWorld(e)}}function om(a){const e=[];a.isBone===!0&&e.push(a);for(let t=0;t<a.children.length;t++)e.push.apply(e,om(a.children[t]));return e}class fw extends Rt{constructor(e,t,n){const i=new ks(t,4,2),s=new ln({wireframe:!0,fog:!1,toneMapped:!1});super(i,s),this.light=e,this.light.updateMatrixWorld(),this.color=n,this.type=\"PointLightHelper\",this.matrix=this.light.matrixWorld,this.matrixAutoUpdate=!1,this.update()}dispose(){this.geometry.dispose(),this.material.dispose()}update(){this.color!==void 0?this.material.color.set(this.color):this.material.color.copy(this.light.color)}}const dw=new I,Bf=new we,zf=new we;class pw extends pt{constructor(e,t,n){super(),this.light=e,this.light.updateMatrixWorld(),this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1,this.color=n;const i=new Ns(t);i.rotateY(Math.PI*.5),this.material=new ln({wireframe:!0,fog:!1,toneMapped:!1}),this.color===void 0&&(this.material.vertexColors=!0);const s=i.getAttribute(\"position\"),r=new Float32Array(s.count*3);i.setAttribute(\"color\",new mt(r,3)),this.add(new Rt(i,this.material)),this.update()}dispose(){this.children[0].geometry.dispose(),this.children[0].material.dispose()}update(){const e=this.children[0];if(this.color!==void 0)this.material.color.set(this.color);else{const t=e.geometry.getAttribute(\"color\");Bf.copy(this.light.color),zf.copy(this.light.groundColor);for(let n=0,i=t.count;n<i;n++){const s=n<i/2?Bf:zf;t.setXYZ(n,s.r,s.g,s.b)}t.needsUpdate=!0}e.lookAt(dw.setFromMatrixPosition(this.light.matrixWorld).negate())}}class am extends wn{constructor(e=10,t=10,n=4473924,i=8947848){n=new we(n),i=new we(i);const s=t/2,r=e/t,o=e/2,l=[],c=[];for(let f=0,d=0,p=-o;f<=t;f++,p+=r){l.push(-o,0,p,o,0,p),l.push(p,0,-o,p,0,o);const m=f===s?n:i;m.toArray(c,d),d+=3,m.toArray(c,d),d+=3,m.toArray(c,d),d+=3,m.toArray(c,d),d+=3}const h=new Xe;h.setAttribute(\"position\",new Ce(l,3)),h.setAttribute(\"color\",new Ce(c,3));const u=new qt({vertexColors:!0,toneMapped:!1});super(h,u),this.type=\"GridHelper\"}}class mw extends wn{constructor(e=10,t=16,n=8,i=64,s=4473924,r=8947848){s=new we(s),r=new we(r);const o=[],l=[];for(let u=0;u<=t;u++){const f=u/t*(Math.PI*2),d=Math.sin(f)*e,p=Math.cos(f)*e;o.push(0,0,0),o.push(d,0,p);const m=u&1?s:r;l.push(m.r,m.g,m.b),l.push(m.r,m.g,m.b)}for(let u=0;u<=n;u++){const f=u&1?s:r,d=e-e/n*u;for(let p=0;p<i;p++){let m=p/i*(Math.PI*2),g=Math.sin(m)*d,y=Math.cos(m)*d;o.push(g,0,y),l.push(f.r,f.g,f.b),m=(p+1)/i*(Math.PI*2),g=Math.sin(m)*d,y=Math.cos(m)*d,o.push(g,0,y),l.push(f.r,f.g,f.b)}}const c=new Xe;c.setAttribute(\"position\",new Ce(o,3)),c.setAttribute(\"color\",new Ce(l,3));const h=new qt({vertexColors:!0,toneMapped:!1});super(c,h),this.type=\"PolarGridHelper\"}}const Uf=new I,Ua=new I,Gf=new I;class gw extends pt{constructor(e,t,n){super(),this.light=e,this.light.updateMatrixWorld(),this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1,this.color=n,t===void 0&&(t=1);let i=new Xe;i.setAttribute(\"position\",new Ce([-t,t,0,t,t,0,t,-t,0,-t,-t,0,-t,t,0],3));const s=new qt({fog:!1,toneMapped:!1});this.lightPlane=new jn(i,s),this.add(this.lightPlane),i=new Xe,i.setAttribute(\"position\",new Ce([0,0,0,0,0,1],3)),this.targetLine=new jn(i,s),this.add(this.targetLine),this.update()}dispose(){this.lightPlane.geometry.dispose(),this.lightPlane.material.dispose(),this.targetLine.geometry.dispose(),this.targetLine.material.dispose()}update(){Uf.setFromMatrixPosition(this.light.matrixWorld),Ua.setFromMatrixPosition(this.light.target.matrixWorld),Gf.subVectors(Ua,Uf),this.lightPlane.lookAt(Ua),this.color!==void 0?(this.lightPlane.material.color.set(this.color),this.targetLine.material.color.set(this.color)):(this.lightPlane.material.color.copy(this.light.color),this.targetLine.material.color.copy(this.light.color)),this.targetLine.lookAt(Ua),this.targetLine.scale.z=Gf.length()}}const Ga=new I,kt=new wl;class yw extends wn{constructor(e){const t=new Xe,n=new qt({color:16777215,vertexColors:!0,toneMapped:!1}),i=[],s=[],r={};o(\"n1\",\"n2\"),o(\"n2\",\"n4\"),o(\"n4\",\"n3\"),o(\"n3\",\"n1\"),o(\"f1\",\"f2\"),o(\"f2\",\"f4\"),o(\"f4\",\"f3\"),o(\"f3\",\"f1\"),o(\"n1\",\"f1\"),o(\"n2\",\"f2\"),o(\"n3\",\"f3\"),o(\"n4\",\"f4\"),o(\"p\",\"n1\"),o(\"p\",\"n2\"),o(\"p\",\"n3\"),o(\"p\",\"n4\"),o(\"u1\",\"u2\"),o(\"u2\",\"u3\"),o(\"u3\",\"u1\"),o(\"c\",\"t\"),o(\"p\",\"c\"),o(\"cn1\",\"cn2\"),o(\"cn3\",\"cn4\"),o(\"cf1\",\"cf2\"),o(\"cf3\",\"cf4\");function o(p,m){l(p),l(m)}function l(p){i.push(0,0,0),s.push(0,0,0),r[p]===void 0&&(r[p]=[]),r[p].push(i.length/3-1)}t.setAttribute(\"position\",new Ce(i,3)),t.setAttribute(\"color\",new Ce(s,3)),super(t,n),this.type=\"CameraHelper\",this.camera=e,this.camera.updateProjectionMatrix&&this.camera.updateProjectionMatrix(),this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1,this.pointMap=r,this.update();const c=new we(16755200),h=new we(16711680),u=new we(43775),f=new we(16777215),d=new we(3355443);this.setColors(c,h,u,f,d)}setColors(e,t,n,i,s){const o=this.geometry.getAttribute(\"color\");o.setXYZ(0,e.r,e.g,e.b),o.setXYZ(1,e.r,e.g,e.b),o.setXYZ(2,e.r,e.g,e.b),o.setXYZ(3,e.r,e.g,e.b),o.setXYZ(4,e.r,e.g,e.b),o.setXYZ(5,e.r,e.g,e.b),o.setXYZ(6,e.r,e.g,e.b),o.setXYZ(7,e.r,e.g,e.b),o.setXYZ(8,e.r,e.g,e.b),o.setXYZ(9,e.r,e.g,e.b),o.setXYZ(10,e.r,e.g,e.b),o.setXYZ(11,e.r,e.g,e.b),o.setXYZ(12,e.r,e.g,e.b),o.setXYZ(13,e.r,e.g,e.b),o.setXYZ(14,e.r,e.g,e.b),o.setXYZ(15,e.r,e.g,e.b),o.setXYZ(16,e.r,e.g,e.b),o.setXYZ(17,e.r,e.g,e.b),o.setXYZ(18,e.r,e.g,e.b),o.setXYZ(19,e.r,e.g,e.b),o.setXYZ(20,e.r,e.g,e.b),o.setXYZ(21,e.r,e.g,e.b),o.setXYZ(22,e.r,e.g,e.b),o.setXYZ(23,e.r,e.g,e.b),o.setXYZ(24,t.r,t.g,t.b),o.setXYZ(25,t.r,t.g,t.b),o.setXYZ(26,t.r,t.g,t.b),o.setXYZ(27,t.r,t.g,t.b),o.setXYZ(28,t.r,t.g,t.b),o.setXYZ(29,t.r,t.g,t.b),o.setXYZ(30,t.r,t.g,t.b),o.setXYZ(31,t.r,t.g,t.b),o.setXYZ(32,n.r,n.g,n.b),o.setXYZ(33,n.r,n.g,n.b),o.setXYZ(34,n.r,n.g,n.b),o.setXYZ(35,n.r,n.g,n.b),o.setXYZ(36,n.r,n.g,n.b),o.setXYZ(37,n.r,n.g,n.b),o.setXYZ(38,i.r,i.g,i.b),o.setXYZ(39,i.r,i.g,i.b),o.setXYZ(40,s.r,s.g,s.b),o.setXYZ(41,s.r,s.g,s.b),o.setXYZ(42,s.r,s.g,s.b),o.setXYZ(43,s.r,s.g,s.b),o.setXYZ(44,s.r,s.g,s.b),o.setXYZ(45,s.r,s.g,s.b),o.setXYZ(46,s.r,s.g,s.b),o.setXYZ(47,s.r,s.g,s.b),o.setXYZ(48,s.r,s.g,s.b),o.setXYZ(49,s.r,s.g,s.b),o.needsUpdate=!0}update(){const e=this.geometry,t=this.pointMap,n=1,i=1;kt.projectionMatrixInverse.copy(this.camera.projectionMatrixInverse),zt(\"c\",t,e,kt,0,0,-1),zt(\"t\",t,e,kt,0,0,1),zt(\"n1\",t,e,kt,-n,-i,-1),zt(\"n2\",t,e,kt,n,-i,-1),zt(\"n3\",t,e,kt,-n,i,-1),zt(\"n4\",t,e,kt,n,i,-1),zt(\"f1\",t,e,kt,-n,-i,1),zt(\"f2\",t,e,kt,n,-i,1),zt(\"f3\",t,e,kt,-n,i,1),zt(\"f4\",t,e,kt,n,i,1),zt(\"u1\",t,e,kt,n*.7,i*1.1,-1),zt(\"u2\",t,e,kt,-n*.7,i*1.1,-1),zt(\"u3\",t,e,kt,0,i*2,-1),zt(\"cf1\",t,e,kt,-n,0,1),zt(\"cf2\",t,e,kt,n,0,1),zt(\"cf3\",t,e,kt,0,-i,1),zt(\"cf4\",t,e,kt,0,i,1),zt(\"cn1\",t,e,kt,-n,0,-1),zt(\"cn2\",t,e,kt,n,0,-1),zt(\"cn3\",t,e,kt,0,-i,-1),zt(\"cn4\",t,e,kt,0,i,-1),e.getAttribute(\"position\").needsUpdate=!0}dispose(){this.geometry.dispose(),this.material.dispose()}}function zt(a,e,t,n,i,s,r){Ga.set(i,s,r).unproject(n);const o=e[a];if(o!==void 0){const l=t.getAttribute(\"position\");for(let c=0,h=o.length;c<h;c++)l.setXYZ(o[c],Ga.x,Ga.y,Ga.z)}}const Va=new Li;class xw extends wn{constructor(e,t=16776960){const n=new Uint16Array([0,1,1,2,2,3,3,0,4,5,5,6,6,7,7,4,0,4,1,5,2,6,3,7]),i=new Float32Array(8*3),s=new Xe;s.setIndex(new mt(n,1)),s.setAttribute(\"position\",new mt(i,3)),super(s,new qt({color:t,toneMapped:!1})),this.object=e,this.type=\"BoxHelper\",this.matrixAutoUpdate=!1,this.update()}update(e){if(e!==void 0&&console.warn(\"THREE.BoxHelper: .update() has no longer arguments.\"),this.object!==void 0&&Va.setFromObject(this.object),Va.isEmpty())return;const t=Va.min,n=Va.max,i=this.geometry.attributes.position,s=i.array;s[0]=n.x,s[1]=n.y,s[2]=n.z,s[3]=t.x,s[4]=n.y,s[5]=n.z,s[6]=t.x,s[7]=t.y,s[8]=n.z,s[9]=n.x,s[10]=t.y,s[11]=n.z,s[12]=n.x,s[13]=n.y,s[14]=t.z,s[15]=t.x,s[16]=n.y,s[17]=t.z,s[18]=t.x,s[19]=t.y,s[20]=t.z,s[21]=n.x,s[22]=t.y,s[23]=t.z,i.needsUpdate=!0,this.geometry.computeBoundingSphere()}setFromObject(e){return this.object=e,this.update(),this}copy(e,t){return super.copy(e,t),this.object=e.object,this}}class vw extends wn{constructor(e,t=16776960){const n=new Uint16Array([0,1,1,2,2,3,3,0,4,5,5,6,6,7,7,4,0,4,1,5,2,6,3,7]),i=[1,1,1,-1,1,1,-1,-1,1,1,-1,1,1,1,-1,-1,1,-1,-1,-1,-1,1,-1,-1],s=new Xe;s.setIndex(new mt(n,1)),s.setAttribute(\"position\",new Ce(i,3)),super(s,new qt({color:t,toneMapped:!1})),this.box=e,this.type=\"Box3Helper\",this.geometry.computeBoundingSphere()}updateMatrixWorld(e){const t=this.box;t.isEmpty()||(t.getCenter(this.position),t.getSize(this.scale),this.scale.multiplyScalar(.5),super.updateMatrixWorld(e))}}class _w extends jn{constructor(e,t=1,n=16776960){const i=n,s=[1,-1,0,-1,1,0,-1,-1,0,1,1,0,-1,1,0,-1,-1,0,1,-1,0,1,1,0],r=new Xe;r.setAttribute(\"position\",new Ce(s,3)),r.computeBoundingSphere(),super(r,new qt({color:i,toneMapped:!1})),this.type=\"PlaneHelper\",this.plane=e,this.size=t;const o=[1,1,0,-1,1,0,-1,-1,0,1,1,0,-1,-1,0,1,-1,0],l=new Xe;l.setAttribute(\"position\",new Ce(o,3)),l.computeBoundingSphere(),this.add(new Rt(l,new ln({color:i,opacity:.2,transparent:!0,depthWrite:!1,toneMapped:!1})))}updateMatrixWorld(e){this.position.set(0,0,0),this.scale.set(.5*this.size,.5*this.size,1),this.lookAt(this.plane.normal),this.translateZ(-this.plane.constant),super.updateMatrixWorld(e)}}const Vf=new I;let Ha,_c;class bw extends pt{constructor(e=new I(0,0,1),t=new I(0,0,0),n=1,i=16776960,s=n*.2,r=s*.2){super(),this.type=\"ArrowHelper\",Ha===void 0&&(Ha=new Xe,Ha.setAttribute(\"position\",new Ce([0,0,0,0,1,0],3)),_c=new $i(0,.5,1,5,1),_c.translate(0,-.5,0)),this.position.copy(t),this.line=new jn(Ha,new qt({color:i,toneMapped:!1})),this.line.matrixAutoUpdate=!1,this.add(this.line),this.cone=new Rt(_c,new ln({color:i,toneMapped:!1})),this.cone.matrixAutoUpdate=!1,this.add(this.cone),this.setDirection(e),this.setLength(n,s,r)}setDirection(e){if(e.y>.99999)this.quaternion.set(0,0,0,1);else if(e.y<-.99999)this.quaternion.set(1,0,0,0);else{Vf.set(e.z,0,-e.x).normalize();const t=Math.acos(e.y);this.quaternion.setFromAxisAngle(Vf,t)}}setLength(e,t=e*.2,n=t*.2){this.line.scale.set(1,Math.max(1e-4,e-t),1),this.line.updateMatrix(),this.cone.scale.set(n,t,n),this.cone.position.y=e,this.cone.updateMatrix()}setColor(e){this.line.material.color.set(e),this.cone.material.color.set(e)}copy(e){return super.copy(e,!1),this.line.copy(e.line),this.cone.copy(e.cone),this}}class lm extends wn{constructor(e=1){const t=[0,0,0,e,0,0,0,0,0,0,e,0,0,0,0,0,0,e],n=[1,0,0,1,.6,0,0,1,0,.6,1,0,0,0,1,0,.6,1],i=new Xe;i.setAttribute(\"position\",new Ce(t,3)),i.setAttribute(\"color\",new Ce(n,3));const s=new qt({vertexColors:!0,toneMapped:!1});super(i,s),this.type=\"AxesHelper\"}setColors(e,t,n){const i=new we,s=this.geometry.attributes.color.array;return i.set(e),i.toArray(s,0),i.toArray(s,3),i.set(t),i.toArray(s,6),i.toArray(s,9),i.set(n),i.toArray(s,12),i.toArray(s,15),this.geometry.attributes.color.needsUpdate=!0,this}dispose(){this.geometry.dispose(),this.material.dispose()}}class ww{constructor(){this.type=\"ShapePath\",this.color=new we,this.subPaths=[],this.currentPath=null}moveTo(e,t){return this.currentPath=new Lo,this.subPaths.push(this.currentPath),this.currentPath.moveTo(e,t),this}lineTo(e,t){return this.currentPath.lineTo(e,t),this}quadraticCurveTo(e,t,n,i){return this.currentPath.quadraticCurveTo(e,t,n,i),this}bezierCurveTo(e,t,n,i,s,r){return this.currentPath.bezierCurveTo(e,t,n,i,s,r),this}splineThru(e){return this.currentPath.splineThru(e),this}toShapes(e,t){function n(x){const b=[];for(let v=0,M=x.length;v<M;v++){const T=x[v],C=new Ls;C.curves=T.curves,b.push(C)}return b}function i(x,b){const v=b.length;let M=!1;for(let T=v-1,C=0;C<v;T=C++){let _=b[T],E=b[C],F=E.x-_.x,U=E.y-_.y;if(Math.abs(U)>Number.EPSILON){if(U<0&&(_=b[C],F=-F,E=b[T],U=-U),x.y<_.y||x.y>E.y)continue;if(x.y===_.y){if(x.x===_.x)return!0}else{const q=U*(x.x-_.x)-F*(x.y-_.y);if(q===0)return!0;if(q<0)continue;M=!M}}else{if(x.y!==_.y)continue;if(E.x<=x.x&&x.x<=_.x||_.x<=x.x&&x.x<=E.x)return!0}}return M}const s=ei.isClockWise,r=this.subPaths;if(r.length===0)return[];if(t===!0)return n(r);let o,l,c;const h=[];if(r.length===1)return l=r[0],c=new Ls,c.curves=l.curves,h.push(c),h;let u=!s(r[0].getPoints());u=e?!u:u;const f=[],d=[];let p=[],m=0,g;d[m]=void 0,p[m]=[];for(let x=0,b=r.length;x<b;x++)l=r[x],g=l.getPoints(),o=s(g),o=e?!o:o,o?(!u&&d[m]&&m++,d[m]={s:new Ls,p:g},d[m].s.curves=l.curves,u&&m++,p[m]=[]):p[m].push({h:l,p:g[0]});if(!d[0])return n(r);if(d.length>1){let x=!1,b=0;for(let v=0,M=d.length;v<M;v++)f[v]=[];for(let v=0,M=d.length;v<M;v++){const T=p[v];for(let C=0;C<T.length;C++){const _=T[C];let E=!0;for(let F=0;F<d.length;F++)i(_.p,d[F].p)&&(v!==F&&b++,E?(E=!1,f[F].push(_)):x=!0);E&&f[v].push(_)}}b>0&&x===!1&&(p=f)}let y;for(let x=0,b=d.length;x<b;x++){c=d[x].s,h.push(c),y=p[x];for(let v=0,M=y.length;v<M;v++)c.holes.push(y[v].h)}return h}}const yi=Mw();function Mw(){const a=new ArrayBuffer(4),e=new Float32Array(a),t=new Uint32Array(a),n=new Uint32Array(512),i=new Uint32Array(512);for(let l=0;l<256;++l){const c=l-127;c<-27?(n[l]=0,n[l|256]=32768,i[l]=24,i[l|256]=24):c<-14?(n[l]=1024>>-c-14,n[l|256]=1024>>-c-14|32768,i[l]=-c-1,i[l|256]=-c-1):c<=15?(n[l]=c+15<<10,n[l|256]=c+15<<10|32768,i[l]=13,i[l|256]=13):c<128?(n[l]=31744,n[l|256]=64512,i[l]=24,i[l|256]=24):(n[l]=31744,n[l|256]=64512,i[l]=13,i[l|256]=13)}const s=new Uint32Array(2048),r=new Uint32Array(64),o=new Uint32Array(64);for(let l=1;l<1024;++l){let c=l<<13,h=0;for(;(c&8388608)===0;)c<<=1,h-=8388608;c&=-8388609,h+=947912704,s[l]=c|h}for(let l=1024;l<2048;++l)s[l]=939524096+(l-1024<<13);for(let l=1;l<31;++l)r[l]=l<<23;r[31]=1199570944,r[32]=2147483648;for(let l=33;l<63;++l)r[l]=2147483648+(l-32<<23);r[63]=3347054592;for(let l=1;l<64;++l)l!==32&&(o[l]=1024);return{floatView:e,uint32View:t,baseTable:n,shiftTable:i,mantissaTable:s,exponentTable:r,offsetTable:o}}function Sw(a){Math.abs(a)>65504&&console.warn(\"THREE.DataUtils.toHalfFloat(): Value out of range.\"),a=Vt(a,-65504,65504),yi.floatView[0]=a;const e=yi.uint32View[0],t=e>>23&511;return yi.baseTable[t]+((e&8388607)>>yi.shiftTable[t])}function Tw(a){const e=a>>10;return yi.uint32View[0]=yi.mantissaTable[yi.offsetTable[e]+(a&1023)]+yi.exponentTable[e],yi.floatView[0]}var Aw=Object.freeze({__proto__:null,toHalfFloat:Sw,fromHalfFloat:Tw});class Ew extends Xe{constructor(){console.error(\"THREE.ParametricGeometry has been moved to /examples/jsm/geometries/ParametricGeometry.js\"),super()}}class Cw extends Xe{constructor(){console.error(\"THREE.TextGeometry has been moved to /examples/jsm/geometries/TextGeometry.js\"),super()}}function Lw(){console.error(\"THREE.FontLoader has been moved to /examples/jsm/loaders/FontLoader.js\")}function Rw(){console.error(\"THREE.Font has been moved to /examples/jsm/loaders/FontLoader.js\")}function Iw(){console.error(\"THREE.ImmediateRenderObject has been removed.\")}class Pw extends zn{constructor(e,t,n){console.error('THREE.WebGLMultisampleRenderTarget has been removed. Use a normal render target and set the \"samples\" property to greater 0 to enable multisampling.'),super(e,t,n),this.samples=4}}class Dw extends Uo{constructor(e,t,n,i){console.warn(\"THREE.DataTexture2DArray has been renamed to DataArrayTexture.\"),super(e,t,n,i)}}class Fw extends vl{constructor(e,t,n,i){console.warn(\"THREE.DataTexture3D has been renamed to Data3DTexture.\"),super(e,t,n,i)}}typeof __THREE_DEVTOOLS__!=\"undefined\"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"register\",{detail:{revision:ml}}));typeof window!=\"undefined\"&&(window.__THREE__?console.warn(\"WARNING: Multiple instances of Three.js being imported.\"):window.__THREE__=ml);var Nw=Object.freeze(Object.defineProperty({__proto__:null,ACESFilmicToneMapping:zd,AddEquation:vs,AddOperation:Nd,AdditiveAnimationBlendMode:Eu,AdditiveBlending:Lc,AlphaFormat:Xd,AlwaysDepth:Cd,AlwaysStencilFunc:lp,AmbientLight:Xo,AmbientLightProbe:Bb,AnimationClip:Ai,AnimationLoader:Rb,AnimationMixer:Qa,AnimationObjectGroup:ew,AnimationUtils:Ab,ArcCurve:Lp,ArrayCamera:wp,ArrowHelper:bw,Audio:im,AudioAnalyser:Wb,AudioContext:Ju,AudioListener:Gb,AudioLoader:kb,AxesHelper:lm,BackSide:kn,BasicDepthPacking:rp,BasicShadowMap:ng,Bone:Ds,BooleanKeyframeTrack:Hs,Box2:lw,Box3:Li,Box3Helper:vw,BoxBufferGeometry:Si,BoxGeometry:Si,BoxHelper:xw,BufferAttribute:mt,BufferGeometry:Xe,BufferGeometryLoader:em,ByteType:Gd,Cache:Bs,Camera:wl,CameraHelper:yw,CanvasTexture:K_,CapsuleBufferGeometry:Er,CapsuleGeometry:Er,CatmullRomCurve3:Rp,CineonToneMapping:Bd,CircleBufferGeometry:Cr,CircleGeometry:Cr,ClampToEdgeWrapping:Zt,Clock:$u,Color:we,ColorKeyframeTrack:Xu,ColorManagement:In,CompressedTexture:Cp,CompressedTextureLoader:Zp,ConeBufferGeometry:Lr,ConeGeometry:Lr,CubeCamera:dp,CubeReflectionMapping:Yi,CubeRefractionMapping:Zi,CubeTexture:Vo,CubeTextureLoader:Ib,CubeUVReflectionMapping:Gr,CubicBezierCurve:Bu,CubicBezierCurve3:Ip,CubicInterpolant:Xp,CullFaceBack:Cc,CullFaceFront:fd,CullFaceFrontBack:tg,CullFaceNone:hd,Curve:Gn,CurvePath:Dp,CustomBlending:md,CustomToneMapping:Ud,CylinderBufferGeometry:$i,CylinderGeometry:$i,Cylindrical:aw,Data3DTexture:vl,DataArrayTexture:Uo,DataTexture:vr,DataTexture2DArray:Dw,DataTexture3D:Fw,DataTextureLoader:Kp,DataUtils:Aw,DecrementStencilOp:dg,DecrementWrapStencilOp:mg,DefaultLoadingManager:Yu,DepthFormat:Xi,DepthStencilFormat:Rs,DepthTexture:Mp,DirectionalLight:Wr,DirectionalLightHelper:gw,DiscreteInterpolant:jp,DodecahedronBufferGeometry:Rr,DodecahedronGeometry:Rr,DoubleSide:wi,DstAlphaFactor:wd,DstColorFactor:Sd,DynamicCopyUsage:Rg,DynamicDrawUsage:Sg,DynamicReadUsage:Eg,EdgesGeometry:Fp,EllipseCurve:Ll,EqualDepth:Rd,EqualStencilFunc:vg,EquirectangularReflectionMapping:br,EquirectangularRefractionMapping:wo,Euler:Nn,EventDispatcher:ai,ExtrudeBufferGeometry:Ir,ExtrudeGeometry:Ir,FileLoader:$t,FlatShading:pd,Float16BufferAttribute:f0,Float32BufferAttribute:Ce,Float64BufferAttribute:d0,FloatType:xi,Fog:Al,FogExp2:Tl,Font:Rw,FontLoader:Lw,FramebufferTexture:Z_,FrontSide:bi,Frustum:Ml,GLBufferAttribute:ow,GLSL1:Pg,GLSL3:tu,GreaterDepth:Pd,GreaterEqualDepth:Id,GreaterEqualStencilFunc:Mg,GreaterStencilFunc:bg,GridHelper:am,Group:pn,HalfFloatType:Mr,HemisphereLight:Zu,HemisphereLightHelper:pw,HemisphereLightProbe:Ob,IcosahedronBufferGeometry:Pr,IcosahedronGeometry:Pr,ImageBitmapLoader:nm,ImageLoader:Do,ImageUtils:Ru,ImmediateRenderObject:Iw,IncrementStencilOp:fg,IncrementWrapStencilOp:pg,InstancedBufferAttribute:Ar,InstancedBufferGeometry:Qp,InstancedInterleavedBuffer:rw,InstancedMesh:Ep,Int16BufferAttribute:u0,Int32BufferAttribute:h0,Int8BufferAttribute:a0,IntType:Hd,InterleavedBuffer:Ho,InterleavedBufferAttribute:Ji,Interpolant:Hr,InterpolateDiscrete:Sr,InterpolateLinear:Is,InterpolateSmooth:Za,InvertStencilOp:gg,KeepStencilOp:Ka,KeyframeTrack:Yn,LOD:Ap,LatheBufferGeometry:Fs,LatheGeometry:Fs,Layers:_l,LessDepth:Ld,LessEqualDepth:il,LessEqualStencilFunc:_g,LessStencilFunc:xg,Light:ss,LightProbe:Dl,Line:jn,Line3:cw,LineBasicMaterial:qt,LineCurve:Rl,LineCurve3:Pp,LineDashedMaterial:Wp,LineLoop:ku,LineSegments:wn,LinearEncoding:Mi,LinearFilter:Ft,LinearInterpolant:qu,LinearMipMapLinearFilter:ag,LinearMipMapNearestFilter:og,LinearMipmapLinearFilter:oi,LinearMipmapNearestFilter:yl,LinearSRGBColorSpace:Wi,LinearToneMapping:kd,Loader:Xt,LoaderUtils:sn,LoadingManager:ju,LoopOnce:tp,LoopPingPong:ip,LoopRepeat:np,LuminanceAlphaFormat:Zd,LuminanceFormat:Yd,MOUSE:ms,Material:Wt,MaterialLoader:Fl,MathUtils:nn,Matrix3:dn,Matrix4:Ne,MaxEquation:Dc,Mesh:Rt,MeshBasicMaterial:ln,MeshDepthMaterial:Du,MeshDistanceMaterial:Fu,MeshLambertMaterial:Pl,MeshMatcapMaterial:Hp,MeshNormalMaterial:Vp,MeshPhongMaterial:ti,MeshPhysicalMaterial:Ri,MeshStandardMaterial:Vs,MeshToonMaterial:Gp,MinEquation:Pc,MirroredRepeatWrapping:wr,MixOperation:Fd,MultiplyBlending:Ic,MultiplyOperation:zo,NearestFilter:Gt,NearestMipMapLinearFilter:rg,NearestMipMapNearestFilter:sg,NearestMipmapLinearFilter:So,NearestMipmapNearestFilter:Mo,NeverDepth:Ed,NeverStencilFunc:yg,NoBlending:_i,NoColorSpace:cg,NoToneMapping:Qn,NormalAnimationBlendMode:xl,NormalBlending:Ts,NotEqualDepth:Dd,NotEqualStencilFunc:wg,NumberKeyframeTrack:Os,Object3D:pt,ObjectLoader:tm,ObjectSpaceNormalMap:ap,OctahedronBufferGeometry:Ns,OctahedronGeometry:Ns,OneFactor:vd,OneMinusDstAlphaFactor:Md,OneMinusDstColorFactor:Td,OneMinusSrcAlphaFactor:Su,OneMinusSrcColorFactor:bd,OrthographicCamera:Us,PCFShadowMap:wu,PCFSoftShadowMap:dd,PMREMGenerator:iu,ParametricGeometry:Ew,Path:Lo,PerspectiveCamera:Ot,Plane:Vi,PlaneBufferGeometry:Ps,PlaneGeometry:Ps,PlaneHelper:_w,PointLight:es,PointLightHelper:fw,Points:_r,PointsMaterial:qi,PolarGridHelper:mw,PolyhedronBufferGeometry:ii,PolyhedronGeometry:ii,PositionalAudio:Hb,PropertyBinding:rt,PropertyMixer:sm,QuadraticBezierCurve:zu,QuadraticBezierCurve3:Uu,Quaternion:Bt,QuaternionKeyframeTrack:si,QuaternionLinearInterpolant:Yp,REVISION:ml,RGBADepthPacking:op,RGBAFormat:An,RGBAIntegerFormat:ep,RGBA_ASTC_10x10_Format:Jc,RGBA_ASTC_10x5_Format:Yc,RGBA_ASTC_10x6_Format:Zc,RGBA_ASTC_10x8_Format:Kc,RGBA_ASTC_12x10_Format:$c,RGBA_ASTC_12x12_Format:Qc,RGBA_ASTC_4x4_Format:Uc,RGBA_ASTC_5x4_Format:Gc,RGBA_ASTC_5x5_Format:Vc,RGBA_ASTC_6x5_Format:Hc,RGBA_ASTC_6x6_Format:Wc,RGBA_ASTC_8x5_Format:qc,RGBA_ASTC_8x6_Format:Xc,RGBA_ASTC_8x8_Format:jc,RGBA_BPTC_Format:eu,RGBA_ETC2_EAC_Format:zc,RGBA_PVRTC_2BPPV1_Format:Oc,RGBA_PVRTC_4BPPV1_Format:kc,RGBA_S3TC_DXT1_Format:Ya,RGBA_S3TC_DXT3_Format:po,RGBA_S3TC_DXT5_Format:mo,RGBFormat:jd,RGB_ETC1_Format:Au,RGB_ETC2_Format:Bc,RGB_PVRTC_2BPPV1_Format:Nc,RGB_PVRTC_4BPPV1_Format:Fc,RGB_S3TC_DXT1_Format:fo,RGFormat:$d,RGIntegerFormat:Qd,RawShaderMaterial:Up,Ray:Go,Raycaster:rm,RectAreaLight:Jp,RedFormat:Kd,RedIntegerFormat:Jd,ReinhardToneMapping:Od,RepeatWrapping:fn,ReplaceStencilOp:hg,ReverseSubtractEquation:yd,RingBufferGeometry:Dr,RingGeometry:Dr,SRGBColorSpace:Jn,Scene:El,ShaderChunk:st,ShaderLib:Xn,ShaderMaterial:ni,ShadowMaterial:zp,Shape:Ls,ShapeBufferGeometry:Fr,ShapeGeometry:Fr,ShapePath:ww,ShapeUtils:ei,ShortType:Vd,Skeleton:Gs,SkeletonHelper:hw,SkinnedMesh:Wo,SmoothShading:ig,Source:Ms,Sphere:is,SphereBufferGeometry:ks,SphereGeometry:ks,Spherical:uu,SphericalHarmonics3:$p,SplineCurve:Gu,SpotLight:qo,SpotLightHelper:uw,Sprite:yo,SpriteMaterial:Cl,SrcAlphaFactor:Mu,SrcAlphaSaturateFactor:Ad,SrcColorFactor:_d,StaticCopyUsage:Lg,StaticDrawUsage:Ao,StaticReadUsage:Ag,StereoCamera:zb,StreamCopyUsage:Ig,StreamDrawUsage:Tg,StreamReadUsage:Cg,StringKeyframeTrack:Ws,SubtractEquation:gd,SubtractiveBlending:Rc,TOUCH:gs,TangentSpaceNormalMap:ns,TetrahedronBufferGeometry:Nr,TetrahedronGeometry:Nr,TextGeometry:Cw,Texture:It,TextureLoader:zs,TorusBufferGeometry:kr,TorusGeometry:kr,TorusKnotBufferGeometry:Or,TorusKnotGeometry:Or,Triangle:Fn,TriangleFanDrawMode:Cu,TriangleStripDrawMode:sp,TrianglesDrawMode:lg,TubeBufferGeometry:Br,TubeGeometry:Br,UVMapping:gl,Uint16BufferAttribute:bl,Uint32BufferAttribute:Iu,Uint8BufferAttribute:l0,Uint8ClampedBufferAttribute:c0,Uniform:th,UniformsGroup:sw,UniformsLib:De,UniformsUtils:fp,UnsignedByteType:Ki,UnsignedInt248Type:As,UnsignedIntType:Hi,UnsignedShort4444Type:Wd,UnsignedShort5551Type:qd,UnsignedShortType:Tu,VSMShadowMap:mr,Vector2:fe,Vector3:I,Vector4:dt,VectorKeyframeTrack:Ti,VideoTexture:Y_,WebGL1Renderer:Sp,WebGL3DRenderTarget:Jg,WebGLArrayRenderTarget:Kg,WebGLCubeRenderTarget:pp,WebGLMultipleRenderTargets:$g,WebGLMultisampleRenderTarget:Pw,WebGLRenderTarget:zn,WebGLRenderer:Nu,WebGLUtils:bp,WireframeGeometry:Bp,WrapAroundEnding:To,ZeroCurvatureEnding:bs,ZeroFactor:xd,ZeroSlopeEnding:ws,ZeroStencilOp:ug,_SRGBAFormat:sl,sRGBEncoding:it},Symbol.toStringTag,{value:\"Module\"}));const Hf={type:\"change\"},bc={type:\"start\"},Wf={type:\"end\"};class kw extends ai{constructor(e,t){super(),t===void 0&&console.warn('THREE.OrbitControls: The second parameter \"domElement\" is now mandatory.'),t===document&&console.error('THREE.OrbitControls: \"document\" should not be used as the target \"domElement\". Please use \"renderer.domElement\" instead.'),this.object=e,this.domElement=t,this.domElement.style.touchAction=\"none\",this.enabled=!0,this.target=new I,this.minDistance=0,this.maxDistance=1/0,this.minZoom=0,this.maxZoom=1/0,this.minPolarAngle=0,this.maxPolarAngle=Math.PI,this.minAzimuthAngle=-1/0,this.maxAzimuthAngle=1/0,this.enableDamping=!1,this.dampingFactor=.05,this.enableZoom=!0,this.zoomSpeed=1,this.enableRotate=!0,this.rotateSpeed=1,this.enablePan=!0,this.panSpeed=1,this.screenSpacePanning=!0,this.keyPanSpeed=7,this.autoRotate=!1,this.autoRotateSpeed=2,this.keys={LEFT:\"ArrowLeft\",UP:\"ArrowUp\",RIGHT:\"ArrowRight\",BOTTOM:\"ArrowDown\"},this.mouseButtons={LEFT:ms.ROTATE,MIDDLE:ms.DOLLY,RIGHT:ms.PAN},this.touches={ONE:gs.ROTATE,TWO:gs.DOLLY_PAN},this.target0=this.target.clone(),this.position0=this.object.position.clone(),this.zoom0=this.object.zoom,this._domElementKeyEvents=null,this.getPolarAngle=function(){return o.phi},this.getAzimuthalAngle=function(){return o.theta},this.getDistance=function(){return this.object.position.distanceTo(this.target)},this.listenToKeyEvents=function(D){D.addEventListener(\"keydown\",ot),this._domElementKeyEvents=D},this.saveState=function(){n.target0.copy(n.target),n.position0.copy(n.object.position),n.zoom0=n.object.zoom},this.reset=function(){n.target.copy(n.target0),n.object.position.copy(n.position0),n.object.zoom=n.zoom0,n.object.updateProjectionMatrix(),n.dispatchEvent(Hf),n.update(),s=i.NONE},this.update=function(){const D=new I,me=new Bt().setFromUnitVectors(e.up,new I(0,1,0)),Te=me.clone().invert(),V=new I,B=new Bt,ne=2*Math.PI;return function(){const Ee=n.object.position;D.copy(Ee).sub(n.target),D.applyQuaternion(me),o.setFromVector3(D),n.autoRotate&&s===i.NONE&&E(C()),n.enableDamping?(o.theta+=l.theta*n.dampingFactor,o.phi+=l.phi*n.dampingFactor):(o.theta+=l.theta,o.phi+=l.phi);let z=n.minAzimuthAngle,ye=n.maxAzimuthAngle;return isFinite(z)&&isFinite(ye)&&(z<-Math.PI?z+=ne:z>Math.PI&&(z-=ne),ye<-Math.PI?ye+=ne:ye>Math.PI&&(ye-=ne),z<=ye?o.theta=Math.max(z,Math.min(ye,o.theta)):o.theta=o.theta>(z+ye)/2?Math.max(z,o.theta):Math.min(ye,o.theta)),o.phi=Math.max(n.minPolarAngle,Math.min(n.maxPolarAngle,o.phi)),o.makeSafe(),o.radius*=c,o.radius=Math.max(n.minDistance,Math.min(n.maxDistance,o.radius)),n.enableDamping===!0?n.target.addScaledVector(h,n.dampingFactor):n.target.add(h),D.setFromSpherical(o),D.applyQuaternion(Te),Ee.copy(n.target).add(D),n.object.lookAt(n.target),n.enableDamping===!0?(l.theta*=1-n.dampingFactor,l.phi*=1-n.dampingFactor,h.multiplyScalar(1-n.dampingFactor)):(l.set(0,0,0),h.set(0,0,0)),c=1,u||V.distanceToSquared(n.object.position)>r||8*(1-B.dot(n.object.quaternion))>r?(n.dispatchEvent(Hf),V.copy(n.object.position),B.copy(n.object.quaternion),u=!1,!0):!1}}(),this.dispose=function(){n.domElement.removeEventListener(\"contextmenu\",oe),n.domElement.removeEventListener(\"pointerdown\",ve),n.domElement.removeEventListener(\"pointercancel\",Ze),n.domElement.removeEventListener(\"wheel\",gt),n.domElement.removeEventListener(\"pointermove\",ke),n.domElement.removeEventListener(\"pointerup\",Le),n._domElementKeyEvents!==null&&n._domElementKeyEvents.removeEventListener(\"keydown\",ot)};const n=this,i={NONE:-1,ROTATE:0,DOLLY:1,PAN:2,TOUCH_ROTATE:3,TOUCH_PAN:4,TOUCH_DOLLY_PAN:5,TOUCH_DOLLY_ROTATE:6};let s=i.NONE;const r=1e-6,o=new uu,l=new uu;let c=1;const h=new I;let u=!1;const f=new fe,d=new fe,p=new fe,m=new fe,g=new fe,y=new fe,x=new fe,b=new fe,v=new fe,M=[],T={};function C(){return 2*Math.PI/60/60*n.autoRotateSpeed}function _(){return Math.pow(.95,n.zoomSpeed)}function E(D){l.theta-=D}function F(D){l.phi-=D}const U=function(){const D=new I;return function(Te,V){D.setFromMatrixColumn(V,0),D.multiplyScalar(-Te),h.add(D)}}(),q=function(){const D=new I;return function(Te,V){n.screenSpacePanning===!0?D.setFromMatrixColumn(V,1):(D.setFromMatrixColumn(V,0),D.crossVectors(n.object.up,D)),D.multiplyScalar(Te),h.add(D)}}(),K=function(){const D=new I;return function(Te,V){const B=n.domElement;if(n.object.isPerspectiveCamera){const ne=n.object.position;D.copy(ne).sub(n.target);let de=D.length();de*=Math.tan(n.object.fov/2*Math.PI/180),U(2*Te*de/B.clientHeight,n.object.matrix),q(2*V*de/B.clientHeight,n.object.matrix)}else n.object.isOrthographicCamera?(U(Te*(n.object.right-n.object.left)/n.object.zoom/B.clientWidth,n.object.matrix),q(V*(n.object.top-n.object.bottom)/n.object.zoom/B.clientHeight,n.object.matrix)):(console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - pan disabled.\"),n.enablePan=!1)}}();function G(D){n.object.isPerspectiveCamera?c/=D:n.object.isOrthographicCamera?(n.object.zoom=Math.max(n.minZoom,Math.min(n.maxZoom,n.object.zoom*D)),n.object.updateProjectionMatrix(),u=!0):(console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled.\"),n.enableZoom=!1)}function X(D){n.object.isPerspectiveCamera?c*=D:n.object.isOrthographicCamera?(n.object.zoom=Math.max(n.minZoom,Math.min(n.maxZoom,n.object.zoom/D)),n.object.updateProjectionMatrix(),u=!0):(console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled.\"),n.enableZoom=!1)}function O(D){f.set(D.clientX,D.clientY)}function j(D){x.set(D.clientX,D.clientY)}function Y(D){m.set(D.clientX,D.clientY)}function W(D){d.set(D.clientX,D.clientY),p.subVectors(d,f).multiplyScalar(n.rotateSpeed);const me=n.domElement;E(2*Math.PI*p.x/me.clientHeight),F(2*Math.PI*p.y/me.clientHeight),f.copy(d),n.update()}function Z(D){b.set(D.clientX,D.clientY),v.subVectors(b,x),v.y>0?G(_()):v.y<0&&X(_()),x.copy(b),n.update()}function ee(D){g.set(D.clientX,D.clientY),y.subVectors(g,m).multiplyScalar(n.panSpeed),K(y.x,y.y),m.copy(g),n.update()}function Q(D){D.deltaY<0?X(_()):D.deltaY>0&&G(_()),n.update()}function ie(D){let me=!1;switch(D.code){case n.keys.UP:K(0,n.keyPanSpeed),me=!0;break;case n.keys.BOTTOM:K(0,-n.keyPanSpeed),me=!0;break;case n.keys.LEFT:K(n.keyPanSpeed,0),me=!0;break;case n.keys.RIGHT:K(-n.keyPanSpeed,0),me=!0;break}me&&(D.preventDefault(),n.update())}function ae(){if(M.length===1)f.set(M[0].pageX,M[0].pageY);else{const D=.5*(M[0].pageX+M[1].pageX),me=.5*(M[0].pageY+M[1].pageY);f.set(D,me)}}function re(){if(M.length===1)m.set(M[0].pageX,M[0].pageY);else{const D=.5*(M[0].pageX+M[1].pageX),me=.5*(M[0].pageY+M[1].pageY);m.set(D,me)}}function H(){const D=M[0].pageX-M[1].pageX,me=M[0].pageY-M[1].pageY,Te=Math.sqrt(D*D+me*me);x.set(0,Te)}function ge(){n.enableZoom&&H(),n.enablePan&&re()}function be(){n.enableZoom&&H(),n.enableRotate&&ae()}function Fe(D){if(M.length==1)d.set(D.pageX,D.pageY);else{const Te=je(D),V=.5*(D.pageX+Te.x),B=.5*(D.pageY+Te.y);d.set(V,B)}p.subVectors(d,f).multiplyScalar(n.rotateSpeed);const me=n.domElement;E(2*Math.PI*p.x/me.clientHeight),F(2*Math.PI*p.y/me.clientHeight),f.copy(d)}function xe(D){if(M.length===1)g.set(D.pageX,D.pageY);else{const me=je(D),Te=.5*(D.pageX+me.x),V=.5*(D.pageY+me.y);g.set(Te,V)}y.subVectors(g,m).multiplyScalar(n.panSpeed),K(y.x,y.y),m.copy(g)}function Ve(D){const me=je(D),Te=D.pageX-me.x,V=D.pageY-me.y,B=Math.sqrt(Te*Te+V*V);b.set(0,B),v.set(0,Math.pow(b.y/x.y,n.zoomSpeed)),G(v.y),x.copy(b)}function ue(D){n.enableZoom&&Ve(D),n.enablePan&&xe(D)}function ce(D){n.enableZoom&&Ve(D),n.enableRotate&&Fe(D)}function ve(D){n.enabled!==!1&&(M.length===0&&(n.domElement.setPointerCapture(D.pointerId),n.domElement.addEventListener(\"pointermove\",ke),n.domElement.addEventListener(\"pointerup\",Le)),_e(D),D.pointerType===\"touch\"?k(D):He(D))}function ke(D){n.enabled!==!1&&(D.pointerType===\"touch\"?P(D):Ue(D))}function Le(D){Se(D),M.length===0&&(n.domElement.releasePointerCapture(D.pointerId),n.domElement.removeEventListener(\"pointermove\",ke),n.domElement.removeEventListener(\"pointerup\",Le)),n.dispatchEvent(Wf),s=i.NONE}function Ze(D){Se(D)}function He(D){let me;switch(D.button){case 0:me=n.mouseButtons.LEFT;break;case 1:me=n.mouseButtons.MIDDLE;break;case 2:me=n.mouseButtons.RIGHT;break;default:me=-1}switch(me){case ms.DOLLY:if(n.enableZoom===!1)return;j(D),s=i.DOLLY;break;case ms.ROTATE:if(D.ctrlKey||D.metaKey||D.shiftKey){if(n.enablePan===!1)return;Y(D),s=i.PAN}else{if(n.enableRotate===!1)return;O(D),s=i.ROTATE}break;case ms.PAN:if(D.ctrlKey||D.metaKey||D.shiftKey){if(n.enableRotate===!1)return;O(D),s=i.ROTATE}else{if(n.enablePan===!1)return;Y(D),s=i.PAN}break;default:s=i.NONE}s!==i.NONE&&n.dispatchEvent(bc)}function Ue(D){switch(s){case i.ROTATE:if(n.enableRotate===!1)return;W(D);break;case i.DOLLY:if(n.enableZoom===!1)return;Z(D);break;case i.PAN:if(n.enablePan===!1)return;ee(D);break}}function gt(D){n.enabled===!1||n.enableZoom===!1||s!==i.NONE||(D.preventDefault(),n.dispatchEvent(bc),Q(D),n.dispatchEvent(Wf))}function ot(D){n.enabled===!1||n.enablePan===!1||ie(D)}function k(D){switch(Ie(D),M.length){case 1:switch(n.touches.ONE){case gs.ROTATE:if(n.enableRotate===!1)return;ae(),s=i.TOUCH_ROTATE;break;case gs.PAN:if(n.enablePan===!1)return;re(),s=i.TOUCH_PAN;break;default:s=i.NONE}break;case 2:switch(n.touches.TWO){case gs.DOLLY_PAN:if(n.enableZoom===!1&&n.enablePan===!1)return;ge(),s=i.TOUCH_DOLLY_PAN;break;case gs.DOLLY_ROTATE:if(n.enableZoom===!1&&n.enableRotate===!1)return;be(),s=i.TOUCH_DOLLY_ROTATE;break;default:s=i.NONE}break;default:s=i.NONE}s!==i.NONE&&n.dispatchEvent(bc)}function P(D){switch(Ie(D),s){case i.TOUCH_ROTATE:if(n.enableRotate===!1)return;Fe(D),n.update();break;case i.TOUCH_PAN:if(n.enablePan===!1)return;xe(D),n.update();break;case i.TOUCH_DOLLY_PAN:if(n.enableZoom===!1&&n.enablePan===!1)return;ue(D),n.update();break;case i.TOUCH_DOLLY_ROTATE:if(n.enableZoom===!1&&n.enableRotate===!1)return;ce(D),n.update();break;default:s=i.NONE}}function oe(D){n.enabled!==!1&&D.preventDefault()}function _e(D){M.push(D)}function Se(D){delete T[D.pointerId];for(let me=0;me<M.length;me++)if(M[me].pointerId==D.pointerId){M.splice(me,1);return}}function Ie(D){let me=T[D.pointerId];me===void 0&&(me=new fe,T[D.pointerId]=me),me.set(D.pageX,D.pageY)}function je(D){const me=D.pointerId===M[0].pointerId?M[1]:M[0];return T[me.pointerId]}n.domElement.addEventListener(\"contextmenu\",oe),n.domElement.addEventListener(\"pointerdown\",ve),n.domElement.addEventListener(\"pointercancel\",Ze),n.domElement.addEventListener(\"wheel\",gt,{passive:!1}),this.update()}}var _o=function(){var a=0,e=document.createElement(\"div\");e.style.cssText=\"position:fixed;top:0;left:0;cursor:pointer;opacity:0.9;z-index:10000\",e.addEventListener(\"click\",function(h){h.preventDefault(),n(++a%e.children.length)},!1);function t(h){return e.appendChild(h.dom),h}function n(h){for(var u=0;u<e.children.length;u++)e.children[u].style.display=u===h?\"block\":\"none\";a=h}var i=(performance||Date).now(),s=i,r=0,o=t(new _o.Panel(\"FPS\",\"#0ff\",\"#002\")),l=t(new _o.Panel(\"MS\",\"#0f0\",\"#020\"));if(self.performance&&self.performance.memory)var c=t(new _o.Panel(\"MB\",\"#f08\",\"#201\"));return n(0),{REVISION:16,dom:e,addPanel:t,showPanel:n,begin:function(){i=(performance||Date).now()},end:function(){r++;var h=(performance||Date).now();if(l.update(h-i,200),h>=s+1e3&&(o.update(r*1e3/(h-s),100),s=h,r=0,c)){var u=performance.memory;c.update(u.usedJSHeapSize/1048576,u.jsHeapSizeLimit/1048576)}return h},update:function(){i=this.end()},domElement:e,setMode:n}};_o.Panel=function(a,e,t){var n=1/0,i=0,s=Math.round,r=s(window.devicePixelRatio||1),o=80*r,l=48*r,c=3*r,h=2*r,u=3*r,f=15*r,d=74*r,p=30*r,m=document.createElement(\"canvas\");m.width=o,m.height=l,m.style.cssText=\"width:80px;height:48px\";var g=m.getContext(\"2d\");return g.font=\"bold \"+9*r+\"px Helvetica,Arial,sans-serif\",g.textBaseline=\"top\",g.fillStyle=t,g.fillRect(0,0,o,l),g.fillStyle=e,g.fillText(a,c,h),g.fillRect(u,f,d,p),g.fillStyle=t,g.globalAlpha=.9,g.fillRect(u,f,d,p),{dom:m,update:function(y,x){n=Math.min(n,y),i=Math.max(i,y),g.fillStyle=t,g.globalAlpha=1,g.fillRect(0,0,o,f),g.fillStyle=e,g.fillText(s(y)+\" \"+a+\" (\"+s(n)+\"-\"+s(i)+\")\",c,h),g.drawImage(m,u+r,f,d-r,p,u,f,d-r,p),g.fillRect(u+d-r,f,r,p),g.fillStyle=t,g.globalAlpha=.9,g.fillRect(u+d-r,f,r,s((1-y/x)*p))}}};/*!\nfflate - fast JavaScript compression/decompression\n<https://101arrowz.github.io/fflate>\nLicensed under MIT. https://github.com/101arrowz/fflate/blob/master/LICENSE\nversion 0.6.9\n*/var qf={},hu=function(a){return URL.createObjectURL(new Blob([a],{type:\"text/javascript\"}))},cm=function(a){return new Worker(a)};try{URL.revokeObjectURL(hu(\"\"))}catch{hu=function(e){return\"data:application/javascript;charset=UTF-8,\"+encodeURI(e)},cm=function(e){return new Worker(e,{type:\"module\"})}}var Ow=function(a,e,t,n,i){var s=cm(qf[e]||(qf[e]=hu(a)));return s.onerror=function(r){return i(r.error,null)},s.onmessage=function(r){return i(null,r.data)},s.postMessage(t,n),s},ut=Uint8Array,tn=Uint16Array,Ei=Uint32Array,qr=new ut([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0,0]),Xr=new ut([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,0,0]),Fo=new ut([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),um=function(a,e){for(var t=new tn(31),n=0;n<31;++n)t[n]=e+=1<<a[n-1];for(var i=new Ei(t[30]),n=1;n<30;++n)for(var s=t[n];s<t[n+1];++s)i[s]=s-t[n]<<5|n;return[t,i]},hm=um(qr,2),nh=hm[0],ol=hm[1];nh[28]=258,ol[258]=28;var fm=um(Xr,0),dm=fm[0],fu=fm[1],No=new tn(32768);for(var Ct=0;Ct<32768;++Ct){var Ui=(Ct&43690)>>>1|(Ct&21845)<<1;Ui=(Ui&52428)>>>2|(Ui&13107)<<2,Ui=(Ui&61680)>>>4|(Ui&3855)<<4,No[Ct]=((Ui&65280)>>>8|(Ui&255)<<8)>>>1}var On=function(a,e,t){for(var n=a.length,i=0,s=new tn(e);i<n;++i)++s[a[i]-1];var r=new tn(e);for(i=0;i<e;++i)r[i]=r[i-1]+s[i-1]<<1;var o;if(t){o=new tn(1<<e);var l=15-e;for(i=0;i<n;++i)if(a[i])for(var c=i<<4|a[i],h=e-a[i],u=r[a[i]-1]++<<h,f=u|(1<<h)-1;u<=f;++u)o[No[u]>>>l]=c}else for(o=new tn(n),i=0;i<n;++i)a[i]&&(o[i]=No[r[a[i]-1]++]>>>15-a[i]);return o},Ci=new ut(288);for(var Ct=0;Ct<144;++Ct)Ci[Ct]=8;for(var Ct=144;Ct<256;++Ct)Ci[Ct]=9;for(var Ct=256;Ct<280;++Ct)Ci[Ct]=7;for(var Ct=280;Ct<288;++Ct)Ci[Ct]=8;var zr=new ut(32);for(var Ct=0;Ct<32;++Ct)zr[Ct]=5;var pm=On(Ci,9,0),mm=On(Ci,9,1),gm=On(zr,5,0),ym=On(zr,5,1),el=function(a){for(var e=a[0],t=1;t<a.length;++t)a[t]>e&&(e=a[t]);return e},Pn=function(a,e,t){var n=e/8|0;return(a[n]|a[n+1]<<8)>>(e&7)&t},tl=function(a,e){var t=e/8|0;return(a[t]|a[t+1]<<8|a[t+2]<<16)>>(e&7)},jo=function(a){return(a/8|0)+(a&7&&1)},Bn=function(a,e,t){(e==null||e<0)&&(e=0),(t==null||t>a.length)&&(t=a.length);var n=new(a instanceof tn?tn:a instanceof Ei?Ei:ut)(t-e);return n.set(a.subarray(e,t)),n},Yo=function(a,e,t){var n=a.length;if(!n||t&&!t.l&&n<5)return e||new ut(0);var i=!e||t,s=!t||t.i;t||(t={}),e||(e=new ut(n*3));var r=function(H){var ge=e.length;if(H>ge){var be=new ut(Math.max(ge*2,H));be.set(e),e=be}},o=t.f||0,l=t.p||0,c=t.b||0,h=t.l,u=t.d,f=t.m,d=t.n,p=n*8;do{if(!h){t.f=o=Pn(a,l,1);var m=Pn(a,l+1,3);if(l+=3,m)if(m==1)h=mm,u=ym,f=9,d=5;else if(m==2){var b=Pn(a,l,31)+257,v=Pn(a,l+10,15)+4,M=b+Pn(a,l+5,31)+1;l+=14;for(var T=new ut(M),C=new ut(19),_=0;_<v;++_)C[Fo[_]]=Pn(a,l+_*3,7);l+=v*3;for(var E=el(C),F=(1<<E)-1,U=On(C,E,1),_=0;_<M;){var q=U[Pn(a,l,F)];l+=q&15;var g=q>>>4;if(g<16)T[_++]=g;else{var K=0,G=0;for(g==16?(G=3+Pn(a,l,3),l+=2,K=T[_-1]):g==17?(G=3+Pn(a,l,7),l+=3):g==18&&(G=11+Pn(a,l,127),l+=7);G--;)T[_++]=K}}var X=T.subarray(0,b),O=T.subarray(b);f=el(X),d=el(O),h=On(X,f,1),u=On(O,d,1)}else throw\"invalid block type\";else{var g=jo(l)+4,y=a[g-4]|a[g-3]<<8,x=g+y;if(x>n){if(s)throw\"unexpected EOF\";break}i&&r(c+y),e.set(a.subarray(g,x),c),t.b=c+=y,t.p=l=x*8;continue}if(l>p){if(s)throw\"unexpected EOF\";break}}i&&r(c+131072);for(var j=(1<<f)-1,Y=(1<<d)-1,W=l;;W=l){var K=h[tl(a,l)&j],Z=K>>>4;if(l+=K&15,l>p){if(s)throw\"unexpected EOF\";break}if(!K)throw\"invalid length/literal\";if(Z<256)e[c++]=Z;else if(Z==256){W=l,h=null;break}else{var ee=Z-254;if(Z>264){var _=Z-257,Q=qr[_];ee=Pn(a,l,(1<<Q)-1)+nh[_],l+=Q}var ie=u[tl(a,l)&Y],ae=ie>>>4;if(!ie)throw\"invalid distance\";l+=ie&15;var O=dm[ae];if(ae>3){var Q=Xr[ae];O+=tl(a,l)&(1<<Q)-1,l+=Q}if(l>p){if(s)throw\"unexpected EOF\";break}i&&r(c+131072);for(var re=c+ee;c<re;c+=4)e[c]=e[c-O],e[c+1]=e[c+1-O],e[c+2]=e[c+2-O],e[c+3]=e[c+3-O];c=re}}t.l=h,t.p=W,t.b=c,h&&(o=1,t.m=f,t.d=u,t.n=d)}while(!o);return c==e.length?e:Bn(e,0,c)},Kn=function(a,e,t){t<<=e&7;var n=e/8|0;a[n]|=t,a[n+1]|=t>>>8},dr=function(a,e,t){t<<=e&7;var n=e/8|0;a[n]|=t,a[n+1]|=t>>>8,a[n+2]|=t>>>16},nl=function(a,e){for(var t=[],n=0;n<a.length;++n)a[n]&&t.push({s:n,f:a[n]});var i=t.length,s=t.slice();if(!i)return[vi,0];if(i==1){var r=new ut(t[0].s+1);return r[t[0].s]=1,[r,1]}t.sort(function(M,T){return M.f-T.f}),t.push({s:-1,f:25001});var o=t[0],l=t[1],c=0,h=1,u=2;for(t[0]={s:-1,f:o.f+l.f,l:o,r:l};h!=i-1;)o=t[t[c].f<t[u].f?c++:u++],l=t[c!=h&&t[c].f<t[u].f?c++:u++],t[h++]={s:-1,f:o.f+l.f,l:o,r:l};for(var f=s[0].s,n=1;n<i;++n)s[n].s>f&&(f=s[n].s);var d=new tn(f+1),p=al(t[h-1],d,0);if(p>e){var n=0,m=0,g=p-e,y=1<<g;for(s.sort(function(T,C){return d[C.s]-d[T.s]||T.f-C.f});n<i;++n){var x=s[n].s;if(d[x]>e)m+=y-(1<<p-d[x]),d[x]=e;else break}for(m>>>=g;m>0;){var b=s[n].s;d[b]<e?m-=1<<e-d[b]++-1:++n}for(;n>=0&&m;--n){var v=s[n].s;d[v]==e&&(--d[v],++m)}p=e}return[new ut(d),p]},al=function(a,e,t){return a.s==-1?Math.max(al(a.l,e,t+1),al(a.r,e,t+1)):e[a.s]=t},du=function(a){for(var e=a.length;e&&!a[--e];);for(var t=new tn(++e),n=0,i=a[0],s=1,r=function(l){t[n++]=l},o=1;o<=e;++o)if(a[o]==i&&o!=e)++s;else{if(!i&&s>2){for(;s>138;s-=138)r(32754);s>2&&(r(s>10?s-11<<5|28690:s-3<<5|12305),s=0)}else if(s>3){for(r(i),--s;s>6;s-=6)r(8304);s>2&&(r(s-3<<5|8208),s=0)}for(;s--;)r(i);s=1,i=a[o]}return[t.subarray(0,n),e]},pr=function(a,e){for(var t=0,n=0;n<e.length;++n)t+=a[n]*e[n];return t},bo=function(a,e,t){var n=t.length,i=jo(e+2);a[i]=n&255,a[i+1]=n>>>8,a[i+2]=a[i]^255,a[i+3]=a[i+1]^255;for(var s=0;s<n;++s)a[i+s+4]=t[s];return(i+4+n)*8},pu=function(a,e,t,n,i,s,r,o,l,c,h){Kn(e,h++,t),++i[256];for(var u=nl(i,15),f=u[0],d=u[1],p=nl(s,15),m=p[0],g=p[1],y=du(f),x=y[0],b=y[1],v=du(m),M=v[0],T=v[1],C=new tn(19),_=0;_<x.length;++_)C[x[_]&31]++;for(var _=0;_<M.length;++_)C[M[_]&31]++;for(var E=nl(C,7),F=E[0],U=E[1],q=19;q>4&&!F[Fo[q-1]];--q);var K=c+5<<3,G=pr(i,Ci)+pr(s,zr)+r,X=pr(i,f)+pr(s,m)+r+14+3*q+pr(C,F)+(2*C[16]+3*C[17]+7*C[18]);if(K<=G&&K<=X)return bo(e,h,a.subarray(l,l+c));var O,j,Y,W;if(Kn(e,h,1+(X<G)),h+=2,X<G){O=On(f,d,0),j=f,Y=On(m,g,0),W=m;var Z=On(F,U,0);Kn(e,h,b-257),Kn(e,h+5,T-1),Kn(e,h+10,q-4),h+=14;for(var _=0;_<q;++_)Kn(e,h+3*_,F[Fo[_]]);h+=3*q;for(var ee=[x,M],Q=0;Q<2;++Q)for(var ie=ee[Q],_=0;_<ie.length;++_){var ae=ie[_]&31;Kn(e,h,Z[ae]),h+=F[ae],ae>15&&(Kn(e,h,ie[_]>>>5&127),h+=ie[_]>>>12)}}else O=pm,j=Ci,Y=gm,W=zr;for(var _=0;_<o;++_)if(n[_]>255){var ae=n[_]>>>18&31;dr(e,h,O[ae+257]),h+=j[ae+257],ae>7&&(Kn(e,h,n[_]>>>23&31),h+=qr[ae]);var re=n[_]&31;dr(e,h,Y[re]),h+=W[re],re>3&&(dr(e,h,n[_]>>>5&8191),h+=Xr[re])}else dr(e,h,O[n[_]]),h+=j[n[_]];return dr(e,h,O[256]),h+j[256]},xm=new Ei([65540,131080,131088,131104,262176,1048704,1048832,2114560,2117632]),vi=new ut(0),vm=function(a,e,t,n,i,s){var r=a.length,o=new ut(n+r+5*(1+Math.ceil(r/7e3))+i),l=o.subarray(n,o.length-i),c=0;if(!e||r<8)for(var h=0;h<=r;h+=65535){var u=h+65535;u<r?c=bo(l,c,a.subarray(h,u)):(l[h]=s,c=bo(l,c,a.subarray(h,r)))}else{for(var f=xm[e-1],d=f>>>13,p=f&8191,m=(1<<t)-1,g=new tn(32768),y=new tn(m+1),x=Math.ceil(t/3),b=2*x,v=function(ve){return(a[ve]^a[ve+1]<<x^a[ve+2]<<b)&m},M=new Ei(25e3),T=new tn(288),C=new tn(32),_=0,E=0,h=0,F=0,U=0,q=0;h<r;++h){var K=v(h),G=h&32767,X=y[K];if(g[G]=X,y[K]=G,U<=h){var O=r-h;if((_>7e3||F>24576)&&O>423){c=pu(a,l,0,M,T,C,E,F,q,h-q,c),F=_=E=0,q=h;for(var j=0;j<286;++j)T[j]=0;for(var j=0;j<30;++j)C[j]=0}var Y=2,W=0,Z=p,ee=G-X&32767;if(O>2&&K==v(h-ee))for(var Q=Math.min(d,O)-1,ie=Math.min(32767,h),ae=Math.min(258,O);ee<=ie&&--Z&&G!=X;){if(a[h+Y]==a[h+Y-ee]){for(var re=0;re<ae&&a[h+re]==a[h+re-ee];++re);if(re>Y){if(Y=re,W=ee,re>Q)break;for(var H=Math.min(ee,re-2),ge=0,j=0;j<H;++j){var be=h-ee+j+32768&32767,Fe=g[be],xe=be-Fe+32768&32767;xe>ge&&(ge=xe,X=be)}}}G=X,X=g[G],ee+=G-X+32768&32767}if(W){M[F++]=268435456|ol[Y]<<18|fu[W];var Ve=ol[Y]&31,ue=fu[W]&31;E+=qr[Ve]+Xr[ue],++T[257+Ve],++C[ue],U=h+Y,++_}else M[F++]=a[h],++T[a[h]]}}c=pu(a,l,s,M,T,C,E,F,q,h-q,c),!s&&c&7&&(c=bo(l,c+1,vi))}return Bn(o,0,n+jo(c)+i)},_m=function(){for(var a=new Ei(256),e=0;e<256;++e){for(var t=e,n=9;--n;)t=(t&1&&3988292384)^t>>>1;a[e]=t}return a}(),jr=function(){var a=-1;return{p:function(e){for(var t=a,n=0;n<e.length;++n)t=_m[t&255^e[n]]^t>>>8;a=t},d:function(){return~a}}},ih=function(){var a=1,e=0;return{p:function(t){for(var n=a,i=e,s=t.length,r=0;r!=s;){for(var o=Math.min(r+2655,s);r<o;++r)i+=n+=t[r];n=(n&65535)+15*(n>>16),i=(i&65535)+15*(i>>16)}a=n,e=i},d:function(){return a%=65521,e%=65521,(a&255)<<24|a>>>8<<16|(e&255)<<8|e>>>8}}},qs=function(a,e,t,n,i){return vm(a,e.level==null?6:e.level,e.mem==null?Math.ceil(Math.max(8,Math.min(13,Math.log(a.length)))*1.5):12+e.mem,t,n,!i)},Zo=function(a,e){var t={};for(var n in a)t[n]=a[n];for(var n in e)t[n]=e[n];return t},Xf=function(a,e,t){for(var n=a(),i=a.toString(),s=i.slice(i.indexOf(\"[\")+1,i.lastIndexOf(\"]\")).replace(/ /g,\"\").split(\",\"),r=0;r<n.length;++r){var o=n[r],l=s[r];if(typeof o==\"function\"){e+=\";\"+l+\"=\";var c=o.toString();if(o.prototype)if(c.indexOf(\"[native code]\")!=-1){var h=c.indexOf(\" \",8)+1;e+=c.slice(h,c.indexOf(\"(\",h))}else{e+=c;for(var u in o.prototype)e+=\";\"+l+\".prototype.\"+u+\"=\"+o.prototype[u].toString()}else e+=c}else t[l]=o}return[e,t]},Wa=[],Bw=function(a){var e=[];for(var t in a)(a[t]instanceof ut||a[t]instanceof tn||a[t]instanceof Ei)&&e.push((a[t]=new a[t].constructor(a[t])).buffer);return e},bm=function(a,e,t,n){var i;if(!Wa[t]){for(var s=\"\",r={},o=a.length-1,l=0;l<o;++l)i=Xf(a[l],s,r),s=i[0],r=i[1];Wa[t]=Xf(a[o],s,r)}var c=Zo({},Wa[t][1]);return Ow(Wa[t][0]+\";onmessage=function(e){for(var k in e.data)self[k]=e.data[k];onmessage=\"+e.toString()+\"}\",t,c,Bw(c),n)},Yr=function(){return[ut,tn,Ei,qr,Xr,Fo,nh,dm,mm,ym,No,On,el,Pn,tl,jo,Bn,Yo,$r,rs,sh]},Zr=function(){return[ut,tn,Ei,qr,Xr,Fo,ol,fu,pm,Ci,gm,zr,No,xm,vi,On,Kn,dr,nl,al,du,pr,bo,pu,jo,Bn,vm,qs,Ko,rs]},wm=function(){return[rh,ah,Mt,jr,_m]},Mm=function(){return[oh,Am]},Sm=function(){return[lh,Mt,ih]},Tm=function(){return[Em]},rs=function(a){return postMessage(a,[a.buffer])},sh=function(a){return a&&a.size&&new ut(a.size)},Kr=function(a,e,t,n,i,s){var r=bm(t,n,i,function(o,l){r.terminate(),s(o,l)});return r.postMessage([a,e],e.consume?[a.buffer]:[]),function(){r.terminate()}},Un=function(a){return a.ondata=function(e,t){return postMessage([e,t],[e.buffer])},function(e){return a.push(e.data[0],e.data[1])}},Jr=function(a,e,t,n,i){var s,r=bm(a,n,i,function(o,l){o?(r.terminate(),e.ondata.call(e,o)):(l[1]&&r.terminate(),e.ondata.call(e,o,l[0],l[1]))});r.postMessage(t),e.push=function(o,l){if(s)throw\"stream finished\";if(!e.ondata)throw\"no stream handler\";r.postMessage([o,s=l],[o.buffer])},e.terminate=function(){r.terminate()}},hn=function(a,e){return a[e]|a[e+1]<<8},Ht=function(a,e){return(a[e]|a[e+1]<<8|a[e+2]<<16|a[e+3]<<24)>>>0},wc=function(a,e){return Ht(a,e)+Ht(a,e+4)*4294967296},Mt=function(a,e,t){for(;t;++e)a[e]=t,t>>>=8},rh=function(a,e){var t=e.filename;if(a[0]=31,a[1]=139,a[2]=8,a[8]=e.level<2?4:e.level==9?2:0,a[9]=3,e.mtime!=0&&Mt(a,4,Math.floor(new Date(e.mtime||Date.now())/1e3)),t){a[3]=8;for(var n=0;n<=t.length;++n)a[n+10]=t.charCodeAt(n)}},oh=function(a){if(a[0]!=31||a[1]!=139||a[2]!=8)throw\"invalid gzip data\";var e=a[3],t=10;e&4&&(t+=a[10]|(a[11]<<8)+2);for(var n=(e>>3&1)+(e>>4&1);n>0;n-=!a[t++]);return t+(e&2)},Am=function(a){var e=a.length;return(a[e-4]|a[e-3]<<8|a[e-2]<<16|a[e-1]<<24)>>>0},ah=function(a){return 10+(a.filename&&a.filename.length+1||0)},lh=function(a,e){var t=e.level,n=t==0?0:t<6?1:t==9?3:2;a[0]=120,a[1]=n<<6|(n?32-2*n:1)},Em=function(a){if((a[0]&15)!=8||a[0]>>>4>7||(a[0]<<8|a[1])%31)throw\"invalid zlib data\";if(a[1]&32)throw\"invalid zlib data: preset dictionaries not supported\"};function ch(a,e){return!e&&typeof a==\"function\"&&(e=a,a={}),this.ondata=e,a}var ri=function(){function a(e,t){!t&&typeof e==\"function\"&&(t=e,e={}),this.ondata=t,this.o=e||{}}return a.prototype.p=function(e,t){this.ondata(qs(e,this.o,0,0,!t),t)},a.prototype.push=function(e,t){if(this.d)throw\"stream finished\";if(!this.ondata)throw\"no stream handler\";this.d=t,this.p(e,t||!1)},a}(),Cm=function(){function a(e,t){Jr([Zr,function(){return[Un,ri]}],this,ch.call(this,e,t),function(n){var i=new ri(n.data);onmessage=Un(i)},6)}return a}();function Lm(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Kr(a,e,[Zr],function(n){return rs(Ko(n.data[0],n.data[1]))},0,t)}function Ko(a,e){return qs(a,e||{},0,0)}var bn=function(){function a(e){this.s={},this.p=new ut(0),this.ondata=e}return a.prototype.e=function(e){if(this.d)throw\"stream finished\";if(!this.ondata)throw\"no stream handler\";var t=this.p.length,n=new ut(t+e.length);n.set(this.p),n.set(e,t),this.p=n},a.prototype.c=function(e){this.d=this.s.i=e||!1;var t=this.s.b,n=Yo(this.p,this.o,this.s);this.ondata(Bn(n,t,this.s.b),this.d),this.o=Bn(n,this.s.b-32768),this.s.b=this.o.length,this.p=Bn(this.p,this.s.p/8|0),this.s.p&=7},a.prototype.push=function(e,t){this.e(e),this.c(t)},a}(),uh=function(){function a(e){this.ondata=e,Jr([Yr,function(){return[Un,bn]}],this,0,function(){var t=new bn;onmessage=Un(t)},7)}return a}();function hh(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Kr(a,e,[Yr],function(n){return rs($r(n.data[0],sh(n.data[1])))},1,t)}function $r(a,e){return Yo(a,e)}var ll=function(){function a(e,t){this.c=jr(),this.l=0,this.v=1,ri.call(this,e,t)}return a.prototype.push=function(e,t){ri.prototype.push.call(this,e,t)},a.prototype.p=function(e,t){this.c.p(e),this.l+=e.length;var n=qs(e,this.o,this.v&&ah(this.o),t&&8,!t);this.v&&(rh(n,this.o),this.v=0),t&&(Mt(n,n.length-8,this.c.d()),Mt(n,n.length-4,this.l)),this.ondata(n,t)},a}(),jf=function(){function a(e,t){Jr([Zr,wm,function(){return[Un,ri,ll]}],this,ch.call(this,e,t),function(n){var i=new ll(n.data);onmessage=Un(i)},8)}return a}();function Yf(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Kr(a,e,[Zr,wm,function(){return[cl]}],function(n){return rs(cl(n.data[0],n.data[1]))},2,t)}function cl(a,e){e||(e={});var t=jr(),n=a.length;t.p(a);var i=qs(a,e,ah(e),8),s=i.length;return rh(i,e),Mt(i,s-8,t.d()),Mt(i,s-4,n),i}var ul=function(){function a(e){this.v=1,bn.call(this,e)}return a.prototype.push=function(e,t){if(bn.prototype.e.call(this,e),this.v){var n=this.p.length>3?oh(this.p):4;if(n>=this.p.length&&!t)return;this.p=this.p.subarray(n),this.v=0}if(t){if(this.p.length<8)throw\"invalid gzip stream\";this.p=this.p.subarray(0,-8)}bn.prototype.c.call(this,t)},a}(),Rm=function(){function a(e){this.ondata=e,Jr([Yr,Mm,function(){return[Un,bn,ul]}],this,0,function(){var t=new ul;onmessage=Un(t)},9)}return a}();function Im(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Kr(a,e,[Yr,Mm,function(){return[hl]}],function(n){return rs(hl(n.data[0]))},3,t)}function hl(a,e){return Yo(a.subarray(oh(a),-8),e||new ut(Am(a)))}var mu=function(){function a(e,t){this.c=ih(),this.v=1,ri.call(this,e,t)}return a.prototype.push=function(e,t){ri.prototype.push.call(this,e,t)},a.prototype.p=function(e,t){this.c.p(e);var n=qs(e,this.o,this.v&&2,t&&4,!t);this.v&&(lh(n,this.o),this.v=0),t&&Mt(n,n.length-4,this.c.d()),this.ondata(n,t)},a}(),zw=function(){function a(e,t){Jr([Zr,Sm,function(){return[Un,ri,mu]}],this,ch.call(this,e,t),function(n){var i=new mu(n.data);onmessage=Un(i)},10)}return a}();function Uw(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Kr(a,e,[Zr,Sm,function(){return[gu]}],function(n){return rs(gu(n.data[0],n.data[1]))},4,t)}function gu(a,e){e||(e={});var t=ih();t.p(a);var n=qs(a,e,2,4);return lh(n,e),Mt(n,n.length-4,t.d()),n}var fl=function(){function a(e){this.v=1,bn.call(this,e)}return a.prototype.push=function(e,t){if(bn.prototype.e.call(this,e),this.v){if(this.p.length<2&&!t)return;this.p=this.p.subarray(2),this.v=0}if(t){if(this.p.length<4)throw\"invalid zlib stream\";this.p=this.p.subarray(0,-4)}bn.prototype.c.call(this,t)},a}(),Pm=function(){function a(e){this.ondata=e,Jr([Yr,Tm,function(){return[Un,bn,fl]}],this,0,function(){var t=new fl;onmessage=Un(t)},11)}return a}();function Dm(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Kr(a,e,[Yr,Tm,function(){return[ko]}],function(n){return rs(ko(n.data[0],sh(n.data[1])))},5,t)}function ko(a,e){return Yo((Em(a),a.subarray(2,-4)),e)}var Fm=function(){function a(e){this.G=ul,this.I=bn,this.Z=fl,this.ondata=e}return a.prototype.push=function(e,t){if(!this.ondata)throw\"no stream handler\";if(this.s)this.s.push(e,t);else{if(this.p&&this.p.length){var n=new ut(this.p.length+e.length);n.set(this.p),n.set(e,this.p.length)}else this.p=e;if(this.p.length>2){var i=this,s=function(){i.ondata.apply(i,arguments)};this.s=this.p[0]==31&&this.p[1]==139&&this.p[2]==8?new this.G(s):(this.p[0]&15)!=8||this.p[0]>>4>7||(this.p[0]<<8|this.p[1])%31?new this.I(s):new this.Z(s),this.s.push(this.p,t),this.p=null}}},a}(),Gw=function(){function a(e){this.G=Rm,this.I=uh,this.Z=Pm,this.ondata=e}return a.prototype.push=function(e,t){Fm.prototype.push.call(this,e,t)},a}();function Vw(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return a[0]==31&&a[1]==139&&a[2]==8?Im(a,e,t):(a[0]&15)!=8||a[0]>>4>7||(a[0]<<8|a[1])%31?hh(a,e,t):Dm(a,e,t)}function Hw(a,e){return a[0]==31&&a[1]==139&&a[2]==8?hl(a,e):(a[0]&15)!=8||a[0]>>4>7||(a[0]<<8|a[1])%31?$r(a,e):ko(a,e)}var fh=function(a,e,t,n){for(var i in a){var s=a[i],r=e+i;s instanceof ut?t[r]=[s,n]:Array.isArray(s)?t[r]=[s[0],Zo(n,s[1])]:fh(s,r+\"/\",t,n)}},Zf=typeof TextEncoder!=\"undefined\"&&new TextEncoder,yu=typeof TextDecoder!=\"undefined\"&&new TextDecoder,Nm=0;try{yu.decode(vi,{stream:!0}),Nm=1}catch{}var km=function(a){for(var e=\"\",t=0;;){var n=a[t++],i=(n>127)+(n>223)+(n>239);if(t+i>a.length)return[e,Bn(a,t-1)];i?i==3?(n=((n&15)<<18|(a[t++]&63)<<12|(a[t++]&63)<<6|a[t++]&63)-65536,e+=String.fromCharCode(55296|n>>10,56320|n&1023)):i&1?e+=String.fromCharCode((n&31)<<6|a[t++]&63):e+=String.fromCharCode((n&15)<<12|(a[t++]&63)<<6|a[t++]&63):e+=String.fromCharCode(n)}},Ww=function(){function a(e){this.ondata=e,Nm?this.t=new TextDecoder:this.p=vi}return a.prototype.push=function(e,t){if(!this.ondata)throw\"no callback\";if(t=!!t,this.t){if(this.ondata(this.t.decode(e,{stream:!0}),t),t){if(this.t.decode().length)throw\"invalid utf-8 data\";this.t=null}return}if(!this.p)throw\"stream finished\";var n=new ut(this.p.length+e.length);n.set(this.p),n.set(e,this.p.length);var i=km(n),s=i[0],r=i[1];if(t){if(r.length)throw\"invalid utf-8 data\";this.p=null}else this.p=r;this.ondata(s,t)},a}(),qw=function(){function a(e){this.ondata=e}return a.prototype.push=function(e,t){if(!this.ondata)throw\"no callback\";if(this.d)throw\"stream finished\";this.ondata(ts(e),this.d=t||!1)},a}();function ts(a,e){if(e){for(var t=new ut(a.length),n=0;n<a.length;++n)t[n]=a.charCodeAt(n);return t}if(Zf)return Zf.encode(a);for(var i=a.length,s=new ut(a.length+(a.length>>1)),r=0,o=function(h){s[r++]=h},n=0;n<i;++n){if(r+5>s.length){var l=new ut(r+8+(i-n<<1));l.set(s),s=l}var c=a.charCodeAt(n);c<128||e?o(c):c<2048?(o(192|c>>6),o(128|c&63)):c>55295&&c<57344?(c=65536+(c&1023<<10)|a.charCodeAt(++n)&1023,o(240|c>>18),o(128|c>>12&63),o(128|c>>6&63),o(128|c&63)):(o(224|c>>12),o(128|c>>6&63),o(128|c&63))}return Bn(s,0,r)}function dh(a,e){if(e){for(var t=\"\",n=0;n<a.length;n+=16384)t+=String.fromCharCode.apply(null,a.subarray(n,n+16384));return t}else{if(yu)return yu.decode(a);var i=km(a),s=i[0],r=i[1];if(r.length)throw\"invalid utf-8 data\";return s}}var Om=function(a){return a==1?3:a<6?2:a==9?1:0},Bm=function(a,e){return e+30+hn(a,e+26)+hn(a,e+28)},zm=function(a,e,t){var n=hn(a,e+28),i=dh(a.subarray(e+46,e+46+n),!(hn(a,e+8)&2048)),s=e+46+n,r=Ht(a,e+20),o=t&&r==4294967295?Um(a,s):[r,Ht(a,e+24),Ht(a,e+42)],l=o[0],c=o[1],h=o[2];return[hn(a,e+10),l,c,i,s+hn(a,e+30)+hn(a,e+32),h]},Um=function(a,e){for(;hn(a,e)!=1;e+=4+hn(a,e+2));return[wc(a,e+12),wc(a,e+4),wc(a,e+20)]},ji=function(a){var e=0;if(a)for(var t in a){var n=a[t].length;if(n>65535)throw\"extra field too long\";e+=n+4}return e},Ur=function(a,e,t,n,i,s,r,o){var l=n.length,c=t.extra,h=o&&o.length,u=ji(c);Mt(a,e,r!=null?33639248:67324752),e+=4,r!=null&&(a[e++]=20,a[e++]=t.os),a[e]=20,e+=2,a[e++]=t.flag<<1|(s==null&&8),a[e++]=i&&8,a[e++]=t.compression&255,a[e++]=t.compression>>8;var f=new Date(t.mtime==null?Date.now():t.mtime),d=f.getFullYear()-1980;if(d<0||d>119)throw\"date not in range 1980-2099\";if(Mt(a,e,d<<25|f.getMonth()+1<<21|f.getDate()<<16|f.getHours()<<11|f.getMinutes()<<5|f.getSeconds()>>>1),e+=4,s!=null&&(Mt(a,e,t.crc),Mt(a,e+4,s),Mt(a,e+8,t.size)),Mt(a,e+12,l),Mt(a,e+14,u),e+=16,r!=null&&(Mt(a,e,h),Mt(a,e+6,t.attrs),Mt(a,e+10,r),e+=14),a.set(n,e),e+=l,u)for(var p in c){var m=c[p],g=m.length;Mt(a,e,+p),Mt(a,e+2,g),a.set(m,e+4),e+=4+g}return h&&(a.set(o,e),e+=h),e},ph=function(a,e,t,n,i){Mt(a,e,101010256),Mt(a,e+8,t),Mt(a,e+10,t),Mt(a,e+12,n),Mt(a,e+16,i)},Oo=function(){function a(e){this.filename=e,this.c=jr(),this.size=0,this.compression=0}return a.prototype.process=function(e,t){this.ondata(null,e,t)},a.prototype.push=function(e,t){if(!this.ondata)throw\"no callback - add to ZIP archive before pushing\";this.c.p(e),this.size+=e.length,t&&(this.crc=this.c.d()),this.process(e,t||!1)},a}(),Xw=function(){function a(e,t){var n=this;t||(t={}),Oo.call(this,e),this.d=new ri(t,function(i,s){n.ondata(null,i,s)}),this.compression=8,this.flag=Om(t.level)}return a.prototype.process=function(e,t){try{this.d.push(e,t)}catch(n){this.ondata(n,null,t)}},a.prototype.push=function(e,t){Oo.prototype.push.call(this,e,t)},a}(),jw=function(){function a(e,t){var n=this;t||(t={}),Oo.call(this,e),this.d=new Cm(t,function(i,s,r){n.ondata(i,s,r)}),this.compression=8,this.flag=Om(t.level),this.terminate=this.d.terminate}return a.prototype.process=function(e,t){this.d.push(e,t)},a.prototype.push=function(e,t){Oo.prototype.push.call(this,e,t)},a}(),Yw=function(){function a(e){this.ondata=e,this.u=[],this.d=1}return a.prototype.add=function(e){var t=this;if(this.d&2)throw\"stream finished\";var n=ts(e.filename),i=n.length,s=e.comment,r=s&&ts(s),o=i!=e.filename.length||r&&s.length!=r.length,l=i+ji(e.extra)+30;if(i>65535)throw\"filename too long\";var c=new ut(l);Ur(c,0,e,n,o);var h=[c],u=function(){for(var g=0,y=h;g<y.length;g++){var x=y[g];t.ondata(null,x,!1)}h=[]},f=this.d;this.d=0;var d=this.u.length,p=Zo(e,{f:n,u:o,o:r,t:function(){e.terminate&&e.terminate()},r:function(){if(u(),f){var g=t.u[d+1];g?g.r():t.d=1}f=1}}),m=0;e.ondata=function(g,y,x){if(g)t.ondata(g,y,x),t.terminate();else if(m+=y.length,h.push(y),x){var b=new ut(16);Mt(b,0,134695760),Mt(b,4,e.crc),Mt(b,8,m),Mt(b,12,e.size),h.push(b),p.c=m,p.b=l+m+16,p.crc=e.crc,p.size=e.size,f&&p.r(),f=1}else f&&u()},this.u.push(p)},a.prototype.end=function(){var e=this;if(this.d&2)throw this.d&1?\"stream finishing\":\"stream finished\";this.d?this.e():this.u.push({r:function(){!(e.d&1)||(e.u.splice(-1,1),e.e())},t:function(){}}),this.d=3},a.prototype.e=function(){for(var e=0,t=0,n=0,i=0,s=this.u;i<s.length;i++){var r=s[i];n+=46+r.f.length+ji(r.extra)+(r.o?r.o.length:0)}for(var o=new ut(n+22),l=0,c=this.u;l<c.length;l++){var r=c[l];Ur(o,e,r,r.f,r.u,r.c,t,r.o),e+=46+r.f.length+ji(r.extra)+(r.o?r.o.length:0),t+=r.b}ph(o,e,this.u.length,n,t),this.ondata(null,o,!0),this.d=2},a.prototype.terminate=function(){for(var e=0,t=this.u;e<t.length;e++){var n=t[e];n.t()}this.d=2},a}();function Zw(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";var n={};fh(a,\"\",n,e);var i=Object.keys(n),s=i.length,r=0,o=0,l=s,c=new Array(s),h=[],u=function(){for(var m=0;m<h.length;++m)h[m]()},f=function(){var m=new ut(o+22),g=r,y=o-r;o=0;for(var x=0;x<l;++x){var b=c[x];try{var v=b.c.length;Ur(m,o,b,b.f,b.u,v);var M=30+b.f.length+ji(b.extra),T=o+M;m.set(b.c,T),Ur(m,r,b,b.f,b.u,v,o,b.m),r+=16+M+(b.m?b.m.length:0),o=T+v}catch(C){return t(C,null)}}ph(m,r,c.length,y,g),t(null,m)};s||f();for(var d=function(m){var g=i[m],y=n[g],x=y[0],b=y[1],v=jr(),M=x.length;v.p(x);var T=ts(g),C=T.length,_=b.comment,E=_&&ts(_),F=E&&E.length,U=ji(b.extra),q=b.level==0?0:8,K=function(G,X){if(G)u(),t(G,null);else{var O=X.length;c[m]=Zo(b,{size:M,crc:v.d(),c:X,f:T,m:E,u:C!=g.length||E&&_.length!=F,compression:q}),r+=30+C+U+O,o+=76+2*(C+U)+(F||0)+O,--s||f()}};if(C>65535&&K(\"filename too long\",null),!q)K(null,x);else if(M<16e4)try{K(null,Ko(x,b))}catch(G){K(G,null)}else h.push(Lm(x,b,K))},p=0;p<l;++p)d(p);return u}function Kw(a,e){e||(e={});var t={},n=[];fh(a,\"\",t,e);var i=0,s=0;for(var r in t){var o=t[r],l=o[0],c=o[1],h=c.level==0?0:8,u=ts(r),f=u.length,d=c.comment,p=d&&ts(d),m=p&&p.length,g=ji(c.extra);if(f>65535)throw\"filename too long\";var y=h?Ko(l,c):l,x=y.length,b=jr();b.p(l),n.push(Zo(c,{size:l.length,crc:b.d(),c:y,f:u,m:p,u:f!=r.length||p&&d.length!=m,o:i,compression:h})),i+=30+f+g+x,s+=76+2*(f+g)+(m||0)+x}for(var v=new ut(s+22),M=i,T=s-i,C=0;C<n.length;++C){var u=n[C];Ur(v,u.o,u,u.f,u.u,u.c.length);var _=30+u.f.length+ji(u.extra);v.set(u.c,u.o+_),Ur(v,i,u,u.f,u.u,u.c.length,u.o,u.m),i+=16+_+(u.m?u.m.length:0)}return ph(v,i,n.length,T,M),v}var Gm=function(){function a(){}return a.prototype.push=function(e,t){this.ondata(null,e,t)},a.compression=0,a}(),Jw=function(){function a(){var e=this;this.i=new bn(function(t,n){e.ondata(null,t,n)})}return a.prototype.push=function(e,t){try{this.i.push(e,t)}catch(n){this.ondata(n,e,t)}},a.compression=8,a}(),$w=function(){function a(e,t){var n=this;t<32e4?this.i=new bn(function(i,s){n.ondata(null,i,s)}):(this.i=new uh(function(i,s,r){n.ondata(i,s,r)}),this.terminate=this.i.terminate)}return a.prototype.push=function(e,t){this.i.terminate&&(e=Bn(e,0)),this.i.push(e,t)},a.compression=8,a}(),Qw=function(){function a(e){this.onfile=e,this.k=[],this.o={0:Gm},this.p=vi}return a.prototype.push=function(e,t){var n=this;if(!this.onfile)throw\"no callback\";if(!this.p)throw\"stream finished\";if(this.c>0){var i=Math.min(this.c,e.length),s=e.subarray(0,i);if(this.c-=i,this.d?this.d.push(s,!this.c):this.k[0].push(s),e=e.subarray(i),e.length)return this.push(e,t)}else{var r=0,o=0,l=void 0,c=void 0;this.p.length?e.length?(c=new ut(this.p.length+e.length),c.set(this.p),c.set(e,this.p.length)):c=this.p:c=e;for(var h=c.length,u=this.c,f=u&&this.d,d=function(){var y,x=Ht(c,o);if(x==67324752){r=1,l=o,p.d=null,p.c=0;var b=hn(c,o+6),v=hn(c,o+8),M=b&2048,T=b&8,C=hn(c,o+26),_=hn(c,o+28);if(h>o+30+C+_){var E=[];p.k.unshift(E),r=2;var F=Ht(c,o+18),U=Ht(c,o+22),q=dh(c.subarray(o+30,o+=30+C),!M);F==4294967295?(y=T?[-2]:Um(c,o),F=y[0],U=y[1]):T&&(F=-1),o+=_,p.c=F;var K,G={name:q,compression:v,start:function(){if(!G.ondata)throw\"no callback\";if(!F)G.ondata(null,vi,!0);else{var X=n.o[v];if(!X)throw\"unknown compression type \"+v;K=F<0?new X(q):new X(q,F,U),K.ondata=function(W,Z,ee){G.ondata(W,Z,ee)};for(var O=0,j=E;O<j.length;O++){var Y=j[O];K.push(Y,!1)}n.k[0]==E&&n.c?n.d=K:K.push(vi,!0)}},terminate:function(){K&&K.terminate&&K.terminate()}};F>=0&&(G.size=F,G.originalSize=U),p.onfile(G)}return\"break\"}else if(u){if(x==134695760)return l=o+=12+(u==-2&&8),r=3,p.c=0,\"break\";if(x==33639248)return l=o-=4,r=3,p.c=0,\"break\"}},p=this;o<h-4;++o){var m=d();if(m===\"break\")break}if(this.p=vi,u<0){var g=r?c.subarray(0,l-12-(u==-2&&8)-(Ht(c,l-16)==134695760&&4)):c.subarray(0,o);f?f.push(g,!!r):this.k[+(r==2)].push(g)}if(r&2)return this.push(c.subarray(o),t);this.p=c.subarray(o)}if(t){if(this.c)throw\"invalid zip file\";this.p=null}},a.prototype.register=function(e){this.o[e.compression]=e},a}();function eM(a,e){if(typeof e!=\"function\")throw\"no callback\";for(var t=[],n=function(){for(var f=0;f<t.length;++f)t[f]()},i={},s=a.length-22;Ht(a,s)!=101010256;--s)if(!s||a.length-s>65558){e(\"invalid zip file\",null);return}var r=hn(a,s+8);r||e(null,{});var o=r,l=Ht(a,s+16),c=l==4294967295;if(c){if(s=Ht(a,s-12),Ht(a,s)!=101075792){e(\"invalid zip file\",null);return}o=r=Ht(a,s+32),l=Ht(a,s+48)}for(var h=function(f){var d=zm(a,l,c),p=d[0],m=d[1],g=d[2],y=d[3],x=d[4],b=d[5],v=Bm(a,b);l=x;var M=function(C,_){C?(n(),e(C,null)):(i[y]=_,--r||e(null,i))};if(!p)M(null,Bn(a,v,v+m));else if(p==8){var T=a.subarray(v,v+m);if(m<32e4)try{M(null,$r(T,new ut(g)))}catch(C){M(C,null)}else t.push(hh(T,{size:g},M))}else M(\"unknown compression type \"+p,null)},u=0;u<o;++u)h();return n}function tM(a){for(var e={},t=a.length-22;Ht(a,t)!=101010256;--t)if(!t||a.length-t>65558)throw\"invalid zip file\";var n=hn(a,t+8);if(!n)return{};var i=Ht(a,t+16),s=i==4294967295;if(s){if(t=Ht(a,t-12),Ht(a,t)!=101075792)throw\"invalid zip file\";n=Ht(a,t+32),i=Ht(a,t+48)}for(var r=0;r<n;++r){var o=zm(a,i,s),l=o[0],c=o[1],h=o[2],u=o[3],f=o[4],d=o[5],p=Bm(a,d);if(i=f,!l)e[u]=Bn(a,p,p+c);else if(l==8)e[u]=$r(a.subarray(p,p+c),new ut(h));else throw\"unknown compression type \"+l}return e}var nM=Object.freeze(Object.defineProperty({__proto__:null,Deflate:ri,AsyncDeflate:Cm,deflate:Lm,deflateSync:Ko,Inflate:bn,AsyncInflate:uh,inflate:hh,inflateSync:$r,Gzip:ll,AsyncGzip:jf,gzip:Yf,gzipSync:cl,Gunzip:ul,AsyncGunzip:Rm,gunzip:Im,gunzipSync:hl,Zlib:mu,AsyncZlib:zw,zlib:Uw,zlibSync:gu,Unzlib:fl,AsyncUnzlib:Pm,unzlib:Dm,unzlibSync:ko,compress:Yf,AsyncCompress:jf,compressSync:cl,Compress:ll,Decompress:Fm,AsyncDecompress:Gw,decompress:Vw,decompressSync:Hw,DecodeUTF8:Ww,EncodeUTF8:qw,strToU8:ts,strFromU8:dh,ZipPassThrough:Oo,ZipDeflate:Xw,AsyncZipDeflate:jw,Zip:Yw,zip:Zw,zipSync:Kw,UnzipPassThrough:Gm,UnzipInflate:Jw,AsyncUnzipInflate:$w,Unzip:Qw,unzip:eM,unzipSync:tM},Symbol.toStringTag,{value:\"Module\"}));function Vm(a,e,t){const n=t.length-a-1;if(e>=t[n])return n-1;if(e<=t[a])return a;let i=a,s=n,r=Math.floor((i+s)/2);for(;e<t[r]||e>=t[r+1];)e<t[r]?s=r:i=r,r=Math.floor((i+s)/2);return r}function iM(a,e,t,n){const i=[],s=[],r=[];i[0]=1;for(let o=1;o<=t;++o){s[o]=e-n[a+1-o],r[o]=n[a+o]-e;let l=0;for(let c=0;c<o;++c){const h=r[c+1],u=s[o-c],f=i[c]/(h+u);i[c]=l+h*f,l=u*f}i[o]=l}return i}function sM(a,e,t,n){const i=Vm(a,n,e),s=iM(i,n,a,e),r=new dt(0,0,0,0);for(let o=0;o<=a;++o){const l=t[i-a+o],c=s[o],h=l.w*c;r.x+=l.x*h,r.y+=l.y*h,r.z+=l.z*h,r.w+=l.w*c}return r}function rM(a,e,t,n,i){const s=[];for(let u=0;u<=t;++u)s[u]=0;const r=[];for(let u=0;u<=n;++u)r[u]=s.slice(0);const o=[];for(let u=0;u<=t;++u)o[u]=s.slice(0);o[0][0]=1;const l=s.slice(0),c=s.slice(0);for(let u=1;u<=t;++u){l[u]=e-i[a+1-u],c[u]=i[a+u]-e;let f=0;for(let d=0;d<u;++d){const p=c[d+1],m=l[u-d];o[u][d]=p+m;const g=o[d][u-1]/o[u][d];o[d][u]=f+p*g,f=m*g}o[u][u]=f}for(let u=0;u<=t;++u)r[0][u]=o[u][t];for(let u=0;u<=t;++u){let f=0,d=1;const p=[];for(let m=0;m<=t;++m)p[m]=s.slice(0);p[0][0]=1;for(let m=1;m<=n;++m){let g=0;const y=u-m,x=t-m;u>=m&&(p[d][0]=p[f][0]/o[x+1][y],g=p[d][0]*o[y][x]);const b=y>=-1?1:-y,v=u-1<=x?m-1:t-u;for(let T=b;T<=v;++T)p[d][T]=(p[f][T]-p[f][T-1])/o[x+1][y+T],g+=p[d][T]*o[y+T][x];u<=x&&(p[d][m]=-p[f][m-1]/o[x+1][u],g+=p[d][m]*o[u][x]),r[m][u]=g;const M=f;f=d,d=M}}let h=t;for(let u=1;u<=n;++u){for(let f=0;f<=t;++f)r[u][f]*=h;h*=t-u}return r}function oM(a,e,t,n,i){const s=i<a?i:a,r=[],o=Vm(a,n,e),l=rM(o,n,a,s,e),c=[];for(let h=0;h<t.length;++h){const u=t[h].clone(),f=u.w;u.x*=f,u.y*=f,u.z*=f,c[h]=u}for(let h=0;h<=s;++h){const u=c[o-a].clone().multiplyScalar(l[h][0]);for(let f=1;f<=a;++f)u.add(c[o-a+f].clone().multiplyScalar(l[h][f]));r[h]=u}for(let h=s+1;h<=i+1;++h)r[h]=new dt(0,0,0);return r}function aM(a,e){let t=1;for(let i=2;i<=a;++i)t*=i;let n=1;for(let i=2;i<=e;++i)n*=i;for(let i=2;i<=a-e;++i)n*=i;return t/n}function lM(a){const e=a.length,t=[],n=[];for(let s=0;s<e;++s){const r=a[s];t[s]=new I(r.x,r.y,r.z),n[s]=r.w}const i=[];for(let s=0;s<e;++s){const r=t[s].clone();for(let o=1;o<=s;++o)r.sub(i[s-o].clone().multiplyScalar(aM(s,o)*n[o]));i[s]=r.divideScalar(n[0])}return i}function cM(a,e,t,n,i){const s=oM(a,e,t,n,i);return lM(s)}class Kf extends Gn{constructor(e,t,n,i,s){super(),this.degree=e,this.knots=t,this.controlPoints=[],this.startKnot=i||0,this.endKnot=s||this.knots.length-1;for(let r=0;r<n.length;++r){const o=n[r];this.controlPoints[r]=new dt(o.x,o.y,o.z,o.w)}}getPoint(e,t=new I){const n=t,i=this.knots[this.startKnot]+e*(this.knots[this.endKnot]-this.knots[this.startKnot]),s=sM(this.degree,this.knots,this.controlPoints,i);return s.w!==1&&s.divideScalar(s.w),n.set(s.x,s.y,s.z)}getTangent(e,t=new I){const n=t,i=this.knots[0]+e*(this.knots[this.knots.length-1]-this.knots[0]),s=cM(this.degree,this.knots,this.controlPoints,i,1);return n.copy(s[1]).normalize(),n}}let lt,Ut,_n;class uM extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=s.path===\"\"?sn.extractUrlBase(e):s.path,o=new $t(this.manager);o.setPath(s.path),o.setResponseType(\"arraybuffer\"),o.setRequestHeader(s.requestHeader),o.setWithCredentials(s.withCredentials),o.load(e,function(l){try{t(s.parse(l,r))}catch(c){i?i(c):console.error(c),s.manager.itemError(e)}},n,i)}parse(e,t){if(gM(e))lt=new mM().parse(e);else{const i=Xm(e);if(!yM(i))throw new Error(\"THREE.FBXLoader: Unknown format.\");if($f(i)<7e3)throw new Error(\"THREE.FBXLoader: FBX version not supported, FileVersion: \"+$f(i));lt=new pM().parse(i)}const n=new zs(this.manager).setPath(this.resourcePath||t).setCrossOrigin(this.crossOrigin);return new hM(n,this.manager).parse(lt)}}class hM{constructor(e,t){this.textureLoader=e,this.manager=t}parse(){Ut=this.parseConnections();const e=this.parseImages(),t=this.parseTextures(e),n=this.parseMaterials(t),i=this.parseDeformers(),s=new fM().parse(i);return this.parseScene(i,s,n),_n}parseConnections(){const e=new Map;return\"Connections\"in lt&&lt.Connections.connections.forEach(function(n){const i=n[0],s=n[1],r=n[2];e.has(i)||e.set(i,{parents:[],children:[]});const o={ID:s,relationship:r};e.get(i).parents.push(o),e.has(s)||e.set(s,{parents:[],children:[]});const l={ID:i,relationship:r};e.get(s).children.push(l)}),e}parseImages(){const e={},t={};if(\"Video\"in lt.Objects){const n=lt.Objects.Video;for(const i in n){const s=n[i],r=parseInt(i);if(e[r]=s.RelativeFilename||s.Filename,\"Content\"in s){const o=s.Content instanceof ArrayBuffer&&s.Content.byteLength>0,l=typeof s.Content==\"string\"&&s.Content!==\"\";if(o||l){const c=this.parseImage(n[i]);t[s.RelativeFilename||s.Filename]=c}}}}for(const n in e){const i=e[n];t[i]!==void 0?e[n]=t[i]:e[n]=e[n].split(\"\\\\\").pop()}return e}parseImage(e){const t=e.Content,n=e.RelativeFilename||e.Filename,i=n.slice(n.lastIndexOf(\".\")+1).toLowerCase();let s;switch(i){case\"bmp\":s=\"image/bmp\";break;case\"jpg\":case\"jpeg\":s=\"image/jpeg\";break;case\"png\":s=\"image/png\";break;case\"tif\":s=\"image/tiff\";break;case\"tga\":this.manager.getHandler(\".tga\")===null&&console.warn(\"FBXLoader: TGA loader not found, skipping \",n),s=\"image/tga\";break;default:console.warn('FBXLoader: Image type \"'+i+'\" is not supported.');return}if(typeof t==\"string\")return\"data:\"+s+\";base64,\"+t;{const r=new Uint8Array(t);return window.URL.createObjectURL(new Blob([r],{type:s}))}}parseTextures(e){const t=new Map;if(\"Texture\"in lt.Objects){const n=lt.Objects.Texture;for(const i in n){const s=this.parseTexture(n[i],e);t.set(parseInt(i),s)}}return t}parseTexture(e,t){const n=this.loadTexture(e,t);n.ID=e.id,n.name=e.attrName;const i=e.WrapModeU,s=e.WrapModeV,r=i!==void 0?i.value:0,o=s!==void 0?s.value:0;if(n.wrapS=r===0?fn:Zt,n.wrapT=o===0?fn:Zt,\"Scaling\"in e){const l=e.Scaling.value;n.repeat.x=l[0],n.repeat.y=l[1]}if(\"Translation\"in e){const l=e.Translation.value;n.offset.x=l[0],n.offset.y=l[1]}return n}loadTexture(e,t){let n;const i=this.textureLoader.path,s=Ut.get(e.id).children;s!==void 0&&s.length>0&&t[s[0].ID]!==void 0&&(n=t[s[0].ID],(n.indexOf(\"blob:\")===0||n.indexOf(\"data:\")===0)&&this.textureLoader.setPath(void 0));let r;const o=e.FileName.slice(-3).toLowerCase();if(o===\"tga\"){const l=this.manager.getHandler(\".tga\");l===null?(console.warn(\"FBXLoader: TGA loader not found, creating placeholder texture for\",e.RelativeFilename),r=new It):(l.setPath(this.textureLoader.path),r=l.load(n))}else o===\"psd\"?(console.warn(\"FBXLoader: PSD textures are not supported, creating placeholder texture for\",e.RelativeFilename),r=new It):r=this.textureLoader.load(n);return this.textureLoader.setPath(i),r}parseMaterials(e){const t=new Map;if(\"Material\"in lt.Objects){const n=lt.Objects.Material;for(const i in n){const s=this.parseMaterial(n[i],e);s!==null&&t.set(parseInt(i),s)}}return t}parseMaterial(e,t){const n=e.id,i=e.attrName;let s=e.ShadingModel;if(typeof s==\"object\"&&(s=s.value),!Ut.has(n))return null;const r=this.parseParameters(e,t,n);let o;switch(s.toLowerCase()){case\"phong\":o=new ti;break;case\"lambert\":o=new Pl;break;default:console.warn('THREE.FBXLoader: unknown material type \"%s\". Defaulting to MeshPhongMaterial.',s),o=new ti;break}return o.setValues(r),o.name=i,o}parseParameters(e,t,n){const i={};e.BumpFactor&&(i.bumpScale=e.BumpFactor.value),e.Diffuse?i.color=new we().fromArray(e.Diffuse.value):e.DiffuseColor&&(e.DiffuseColor.type===\"Color\"||e.DiffuseColor.type===\"ColorRGB\")&&(i.color=new we().fromArray(e.DiffuseColor.value)),e.DisplacementFactor&&(i.displacementScale=e.DisplacementFactor.value),e.Emissive?i.emissive=new we().fromArray(e.Emissive.value):e.EmissiveColor&&(e.EmissiveColor.type===\"Color\"||e.EmissiveColor.type===\"ColorRGB\")&&(i.emissive=new we().fromArray(e.EmissiveColor.value)),e.EmissiveFactor&&(i.emissiveIntensity=parseFloat(e.EmissiveFactor.value)),e.Opacity&&(i.opacity=parseFloat(e.Opacity.value)),i.opacity<1&&(i.transparent=!0),e.ReflectionFactor&&(i.reflectivity=e.ReflectionFactor.value),e.Shininess&&(i.shininess=e.Shininess.value),e.Specular?i.specular=new we().fromArray(e.Specular.value):e.SpecularColor&&e.SpecularColor.type===\"Color\"&&(i.specular=new we().fromArray(e.SpecularColor.value));const s=this;return Ut.get(n).children.forEach(function(r){const o=r.relationship;switch(o){case\"Bump\":i.bumpMap=s.getTexture(t,r.ID);break;case\"Maya|TEX_ao_map\":i.aoMap=s.getTexture(t,r.ID);break;case\"DiffuseColor\":case\"Maya|TEX_color_map\":i.map=s.getTexture(t,r.ID),i.map!==void 0&&(i.map.encoding=it);break;case\"DisplacementColor\":i.displacementMap=s.getTexture(t,r.ID);break;case\"EmissiveColor\":i.emissiveMap=s.getTexture(t,r.ID),i.emissiveMap!==void 0&&(i.emissiveMap.encoding=it);break;case\"NormalMap\":case\"Maya|TEX_normal_map\":i.normalMap=s.getTexture(t,r.ID);break;case\"ReflectionColor\":i.envMap=s.getTexture(t,r.ID),i.envMap!==void 0&&(i.envMap.mapping=br,i.envMap.encoding=it);break;case\"SpecularColor\":i.specularMap=s.getTexture(t,r.ID),i.specularMap!==void 0&&(i.specularMap.encoding=it);break;case\"TransparentColor\":case\"TransparencyFactor\":i.alphaMap=s.getTexture(t,r.ID),i.transparent=!0;break;case\"AmbientColor\":case\"ShininessExponent\":case\"SpecularFactor\":case\"VectorDisplacementColor\":default:console.warn(\"THREE.FBXLoader: %s map is not supported in three.js, skipping texture.\",o);break}}),i}getTexture(e,t){return\"LayeredTexture\"in lt.Objects&&t in lt.Objects.LayeredTexture&&(console.warn(\"THREE.FBXLoader: layered textures are not supported in three.js. Discarding all but first layer.\"),t=Ut.get(t).children[0].ID),e.get(t)}parseDeformers(){const e={},t={};if(\"Deformer\"in lt.Objects){const n=lt.Objects.Deformer;for(const i in n){const s=n[i],r=Ut.get(parseInt(i));if(s.attrType===\"Skin\"){const o=this.parseSkeleton(r,n);o.ID=i,r.parents.length>1&&console.warn(\"THREE.FBXLoader: skeleton attached to more than one geometry is not supported.\"),o.geometryID=r.parents[0].ID,e[i]=o}else if(s.attrType===\"BlendShape\"){const o={id:i};o.rawTargets=this.parseMorphTargets(r,n),o.id=i,r.parents.length>1&&console.warn(\"THREE.FBXLoader: morph target attached to more than one geometry is not supported.\"),t[i]=o}}}return{skeletons:e,morphTargets:t}}parseSkeleton(e,t){const n=[];return e.children.forEach(function(i){const s=t[i.ID];if(s.attrType!==\"Cluster\")return;const r={ID:i.ID,indices:[],weights:[],transformLink:new Ne().fromArray(s.TransformLink.a)};\"Indexes\"in s&&(r.indices=s.Indexes.a,r.weights=s.Weights.a),n.push(r)}),{rawBones:n,bones:[]}}parseMorphTargets(e,t){const n=[];for(let i=0;i<e.children.length;i++){const s=e.children[i],r=t[s.ID],o={name:r.attrName,initialWeight:r.DeformPercent,id:r.id,fullWeights:r.FullWeights.a};if(r.attrType!==\"BlendShapeChannel\")return;o.geoID=Ut.get(parseInt(s.ID)).children.filter(function(l){return l.relationship===void 0})[0].ID,n.push(o)}return n}parseScene(e,t,n){_n=new pn;const i=this.parseModels(e.skeletons,t,n),s=lt.Objects.Model,r=this;i.forEach(function(l){const c=s[l.ID];r.setLookAtProperties(l,c),Ut.get(l.ID).parents.forEach(function(u){const f=i.get(u.ID);f!==void 0&&f.add(l)}),l.parent===null&&_n.add(l)}),this.bindSkeleton(e.skeletons,t,i),this.createAmbientLight(),_n.traverse(function(l){if(l.userData.transformData){l.parent&&(l.userData.transformData.parentMatrix=l.parent.matrix,l.userData.transformData.parentMatrixWorld=l.parent.matrixWorld);const c=Wm(l.userData.transformData);l.applyMatrix4(c),l.updateWorldMatrix()}});const o=new dM().parse();_n.children.length===1&&_n.children[0].isGroup&&(_n.children[0].animations=o,_n=_n.children[0]),_n.animations=o}parseModels(e,t,n){const i=new Map,s=lt.Objects.Model;for(const r in s){const o=parseInt(r),l=s[r],c=Ut.get(o);let h=this.buildSkeleton(c,e,o,l.attrName);if(!h){switch(l.attrType){case\"Camera\":h=this.createCamera(c);break;case\"Light\":h=this.createLight(c);break;case\"Mesh\":h=this.createMesh(c,t,n);break;case\"NurbsCurve\":h=this.createCurve(c,t);break;case\"LimbNode\":case\"Root\":h=new Ds;break;case\"Null\":default:h=new pn;break}h.name=l.attrName?rt.sanitizeNodeName(l.attrName):\"\",h.ID=o}this.getTransformData(h,l),i.set(o,h)}return i}buildSkeleton(e,t,n,i){let s=null;return e.parents.forEach(function(r){for(const o in t){const l=t[o];l.rawBones.forEach(function(c,h){if(c.ID===r.ID){const u=s;s=new Ds,s.matrixWorld.copy(c.transformLink),s.name=i?rt.sanitizeNodeName(i):\"\",s.ID=n,l.bones[h]=s,u!==null&&s.add(u)}})}}),s}createCamera(e){let t,n;if(e.children.forEach(function(i){const s=lt.Objects.NodeAttribute[i.ID];s!==void 0&&(n=s)}),n===void 0)t=new pt;else{let i=0;n.CameraProjectionType!==void 0&&n.CameraProjectionType.value===1&&(i=1);let s=1;n.NearPlane!==void 0&&(s=n.NearPlane.value/1e3);let r=1e3;n.FarPlane!==void 0&&(r=n.FarPlane.value/1e3);let o=window.innerWidth,l=window.innerHeight;n.AspectWidth!==void 0&&n.AspectHeight!==void 0&&(o=n.AspectWidth.value,l=n.AspectHeight.value);const c=o/l;let h=45;n.FieldOfView!==void 0&&(h=n.FieldOfView.value);const u=n.FocalLength?n.FocalLength.value:null;switch(i){case 0:t=new Ot(h,c,s,r),u!==null&&t.setFocalLength(u);break;case 1:t=new Us(-o/2,o/2,l/2,-l/2,s,r);break;default:console.warn(\"THREE.FBXLoader: Unknown camera type \"+i+\".\"),t=new pt;break}}return t}createLight(e){let t,n;if(e.children.forEach(function(i){const s=lt.Objects.NodeAttribute[i.ID];s!==void 0&&(n=s)}),n===void 0)t=new pt;else{let i;n.LightType===void 0?i=0:i=n.LightType.value;let s=16777215;n.Color!==void 0&&(s=new we().fromArray(n.Color.value));let r=n.Intensity===void 0?1:n.Intensity.value/100;n.CastLightOnObject!==void 0&&n.CastLightOnObject.value===0&&(r=0);let o=0;n.FarAttenuationEnd!==void 0&&(n.EnableFarAttenuation!==void 0&&n.EnableFarAttenuation.value===0?o=0:o=n.FarAttenuationEnd.value);const l=1;switch(i){case 0:t=new es(s,r,o,l);break;case 1:t=new Wr(s,r);break;case 2:let c=Math.PI/3;n.InnerAngle!==void 0&&(c=nn.degToRad(n.InnerAngle.value));let h=0;n.OuterAngle!==void 0&&(h=nn.degToRad(n.OuterAngle.value),h=Math.max(h,1)),t=new qo(s,r,o,c,h,l);break;default:console.warn(\"THREE.FBXLoader: Unknown light type \"+n.LightType.value+\", defaulting to a PointLight.\"),t=new es(s,r);break}n.CastShadows!==void 0&&n.CastShadows.value===1&&(t.castShadow=!0)}return t}createMesh(e,t,n){let i,s=null,r=null;const o=[];return e.children.forEach(function(l){t.has(l.ID)&&(s=t.get(l.ID)),n.has(l.ID)&&o.push(n.get(l.ID))}),o.length>1?r=o:o.length>0?r=o[0]:(r=new ti({color:13421772}),o.push(r)),\"color\"in s.attributes&&o.forEach(function(l){l.vertexColors=!0}),s.FBX_Deformer?(i=new Wo(s,r),i.normalizeSkinWeights()):i=new Rt(s,r),i}createCurve(e,t){const n=e.children.reduce(function(s,r){return t.has(r.ID)&&(s=t.get(r.ID)),s},null),i=new qt({color:3342591,linewidth:1});return new jn(n,i)}getTransformData(e,t){const n={};\"InheritType\"in t&&(n.inheritType=parseInt(t.InheritType.value)),\"RotationOrder\"in t?n.eulerOrder=qm(t.RotationOrder.value):n.eulerOrder=\"ZYX\",\"Lcl_Translation\"in t&&(n.translation=t.Lcl_Translation.value),\"PreRotation\"in t&&(n.preRotation=t.PreRotation.value),\"Lcl_Rotation\"in t&&(n.rotation=t.Lcl_Rotation.value),\"PostRotation\"in t&&(n.postRotation=t.PostRotation.value),\"Lcl_Scaling\"in t&&(n.scale=t.Lcl_Scaling.value),\"ScalingOffset\"in t&&(n.scalingOffset=t.ScalingOffset.value),\"ScalingPivot\"in t&&(n.scalingPivot=t.ScalingPivot.value),\"RotationOffset\"in t&&(n.rotationOffset=t.RotationOffset.value),\"RotationPivot\"in t&&(n.rotationPivot=t.RotationPivot.value),e.userData.transformData=n}setLookAtProperties(e,t){\"LookAtProperty\"in t&&Ut.get(e.ID).children.forEach(function(i){if(i.relationship===\"LookAtProperty\"){const s=lt.Objects.Model[i.ID];if(\"Lcl_Translation\"in s){const r=s.Lcl_Translation.value;e.target!==void 0?(e.target.position.fromArray(r),_n.add(e.target)):e.lookAt(new I().fromArray(r))}}})}bindSkeleton(e,t,n){const i=this.parsePoseNodes();for(const s in e){const r=e[s];Ut.get(parseInt(r.ID)).parents.forEach(function(l){if(t.has(l.ID)){const c=l.ID;Ut.get(c).parents.forEach(function(u){n.has(u.ID)&&n.get(u.ID).bind(new Gs(r.bones),i[u.ID])})}})}}parsePoseNodes(){const e={};if(\"Pose\"in lt.Objects){const t=lt.Objects.Pose;for(const n in t)if(t[n].attrType===\"BindPose\"&&t[n].NbPoseNodes>0){const i=t[n].PoseNode;Array.isArray(i)?i.forEach(function(s){e[s.Node]=new Ne().fromArray(s.Matrix.a)}):e[i.Node]=new Ne().fromArray(i.Matrix.a)}}return e}createAmbientLight(){if(\"GlobalSettings\"in lt&&\"AmbientColor\"in lt.GlobalSettings){const e=lt.GlobalSettings.AmbientColor.value,t=e[0],n=e[1],i=e[2];if(t!==0||n!==0||i!==0){const s=new we(t,n,i);_n.add(new Xo(s,1))}}}}class fM{parse(e){const t=new Map;if(\"Geometry\"in lt.Objects){const n=lt.Objects.Geometry;for(const i in n){const s=Ut.get(parseInt(i)),r=this.parseGeometry(s,n[i],e);t.set(parseInt(i),r)}}return t}parseGeometry(e,t,n){switch(t.attrType){case\"Mesh\":return this.parseMeshGeometry(e,t,n);case\"NurbsCurve\":return this.parseNurbsGeometry(t)}}parseMeshGeometry(e,t,n){const i=n.skeletons,s=[],r=e.parents.map(function(u){return lt.Objects.Model[u.ID]});if(r.length===0)return;const o=e.children.reduce(function(u,f){return i[f.ID]!==void 0&&(u=i[f.ID]),u},null);e.children.forEach(function(u){n.morphTargets[u.ID]!==void 0&&s.push(n.morphTargets[u.ID])});const l=r[0],c={};\"RotationOrder\"in l&&(c.eulerOrder=qm(l.RotationOrder.value)),\"InheritType\"in l&&(c.inheritType=parseInt(l.InheritType.value)),\"GeometricTranslation\"in l&&(c.translation=l.GeometricTranslation.value),\"GeometricRotation\"in l&&(c.rotation=l.GeometricRotation.value),\"GeometricScaling\"in l&&(c.scale=l.GeometricScaling.value);const h=Wm(c);return this.genGeometry(t,o,s,h)}genGeometry(e,t,n,i){const s=new Xe;e.attrName&&(s.name=e.attrName);const r=this.parseGeoNode(e,t),o=this.genBuffers(r),l=new Ce(o.vertex,3);if(l.applyMatrix4(i),s.setAttribute(\"position\",l),o.colors.length>0&&s.setAttribute(\"color\",new Ce(o.colors,3)),t&&(s.setAttribute(\"skinIndex\",new bl(o.weightsIndices,4)),s.setAttribute(\"skinWeight\",new Ce(o.vertexWeights,4)),s.FBX_Deformer=t),o.normal.length>0){const c=new dn().getNormalMatrix(i),h=new Ce(o.normal,3);h.applyNormalMatrix(c),s.setAttribute(\"normal\",h)}if(o.uvs.forEach(function(c,h){let u=\"uv\"+(h+1).toString();h===0&&(u=\"uv\"),s.setAttribute(u,new Ce(o.uvs[h],2))}),r.material&&r.material.mappingType!==\"AllSame\"){let c=o.materialIndex[0],h=0;if(o.materialIndex.forEach(function(u,f){u!==c&&(s.addGroup(h,f-h,c),c=u,h=f)}),s.groups.length>0){const u=s.groups[s.groups.length-1],f=u.start+u.count;f!==o.materialIndex.length&&s.addGroup(f,o.materialIndex.length-f,c)}s.groups.length===0&&s.addGroup(0,o.materialIndex.length,o.materialIndex[0])}return this.addMorphTargets(s,e,n,i),s}parseGeoNode(e,t){const n={};if(n.vertexPositions=e.Vertices!==void 0?e.Vertices.a:[],n.vertexIndices=e.PolygonVertexIndex!==void 0?e.PolygonVertexIndex.a:[],e.LayerElementColor&&(n.color=this.parseVertexColors(e.LayerElementColor[0])),e.LayerElementMaterial&&(n.material=this.parseMaterialIndices(e.LayerElementMaterial[0])),e.LayerElementNormal&&(n.normal=this.parseNormals(e.LayerElementNormal[0])),e.LayerElementUV){n.uv=[];let i=0;for(;e.LayerElementUV[i];)e.LayerElementUV[i].UV&&n.uv.push(this.parseUVs(e.LayerElementUV[i])),i++}return n.weightTable={},t!==null&&(n.skeleton=t,t.rawBones.forEach(function(i,s){i.indices.forEach(function(r,o){n.weightTable[r]===void 0&&(n.weightTable[r]=[]),n.weightTable[r].push({id:s,weight:i.weights[o]})})})),n}genBuffers(e){const t={vertex:[],normal:[],colors:[],uvs:[],materialIndex:[],vertexWeights:[],weightsIndices:[]};let n=0,i=0,s=!1,r=[],o=[],l=[],c=[],h=[],u=[];const f=this;return e.vertexIndices.forEach(function(d,p){let m,g=!1;d<0&&(d=d^-1,g=!0);let y=[],x=[];if(r.push(d*3,d*3+1,d*3+2),e.color){const b=qa(p,n,d,e.color);l.push(b[0],b[1],b[2])}if(e.skeleton){if(e.weightTable[d]!==void 0&&e.weightTable[d].forEach(function(b){x.push(b.weight),y.push(b.id)}),x.length>4){s||(console.warn(\"THREE.FBXLoader: Vertex has more than 4 skinning weights assigned to vertex. Deleting additional weights.\"),s=!0);const b=[0,0,0,0],v=[0,0,0,0];x.forEach(function(M,T){let C=M,_=y[T];v.forEach(function(E,F,U){if(C>E){U[F]=C,C=E;const q=b[F];b[F]=_,_=q}})}),y=b,x=v}for(;x.length<4;)x.push(0),y.push(0);for(let b=0;b<4;++b)h.push(x[b]),u.push(y[b])}if(e.normal){const b=qa(p,n,d,e.normal);o.push(b[0],b[1],b[2])}e.material&&e.material.mappingType!==\"AllSame\"&&(m=qa(p,n,d,e.material)[0]),e.uv&&e.uv.forEach(function(b,v){const M=qa(p,n,d,b);c[v]===void 0&&(c[v]=[]),c[v].push(M[0]),c[v].push(M[1])}),i++,g&&(f.genFace(t,e,r,m,o,l,c,h,u,i),n++,i=0,r=[],o=[],l=[],c=[],h=[],u=[])}),t}genFace(e,t,n,i,s,r,o,l,c,h){for(let u=2;u<h;u++)e.vertex.push(t.vertexPositions[n[0]]),e.vertex.push(t.vertexPositions[n[1]]),e.vertex.push(t.vertexPositions[n[2]]),e.vertex.push(t.vertexPositions[n[(u-1)*3]]),e.vertex.push(t.vertexPositions[n[(u-1)*3+1]]),e.vertex.push(t.vertexPositions[n[(u-1)*3+2]]),e.vertex.push(t.vertexPositions[n[u*3]]),e.vertex.push(t.vertexPositions[n[u*3+1]]),e.vertex.push(t.vertexPositions[n[u*3+2]]),t.skeleton&&(e.vertexWeights.push(l[0]),e.vertexWeights.push(l[1]),e.vertexWeights.push(l[2]),e.vertexWeights.push(l[3]),e.vertexWeights.push(l[(u-1)*4]),e.vertexWeights.push(l[(u-1)*4+1]),e.vertexWeights.push(l[(u-1)*4+2]),e.vertexWeights.push(l[(u-1)*4+3]),e.vertexWeights.push(l[u*4]),e.vertexWeights.push(l[u*4+1]),e.vertexWeights.push(l[u*4+2]),e.vertexWeights.push(l[u*4+3]),e.weightsIndices.push(c[0]),e.weightsIndices.push(c[1]),e.weightsIndices.push(c[2]),e.weightsIndices.push(c[3]),e.weightsIndices.push(c[(u-1)*4]),e.weightsIndices.push(c[(u-1)*4+1]),e.weightsIndices.push(c[(u-1)*4+2]),e.weightsIndices.push(c[(u-1)*4+3]),e.weightsIndices.push(c[u*4]),e.weightsIndices.push(c[u*4+1]),e.weightsIndices.push(c[u*4+2]),e.weightsIndices.push(c[u*4+3])),t.color&&(e.colors.push(r[0]),e.colors.push(r[1]),e.colors.push(r[2]),e.colors.push(r[(u-1)*3]),e.colors.push(r[(u-1)*3+1]),e.colors.push(r[(u-1)*3+2]),e.colors.push(r[u*3]),e.colors.push(r[u*3+1]),e.colors.push(r[u*3+2])),t.material&&t.material.mappingType!==\"AllSame\"&&(e.materialIndex.push(i),e.materialIndex.push(i),e.materialIndex.push(i)),t.normal&&(e.normal.push(s[0]),e.normal.push(s[1]),e.normal.push(s[2]),e.normal.push(s[(u-1)*3]),e.normal.push(s[(u-1)*3+1]),e.normal.push(s[(u-1)*3+2]),e.normal.push(s[u*3]),e.normal.push(s[u*3+1]),e.normal.push(s[u*3+2])),t.uv&&t.uv.forEach(function(f,d){e.uvs[d]===void 0&&(e.uvs[d]=[]),e.uvs[d].push(o[d][0]),e.uvs[d].push(o[d][1]),e.uvs[d].push(o[d][(u-1)*2]),e.uvs[d].push(o[d][(u-1)*2+1]),e.uvs[d].push(o[d][u*2]),e.uvs[d].push(o[d][u*2+1])})}addMorphTargets(e,t,n,i){if(n.length===0)return;e.morphTargetsRelative=!0,e.morphAttributes.position=[];const s=this;n.forEach(function(r){r.rawTargets.forEach(function(o){const l=lt.Objects.Geometry[o.geoID];l!==void 0&&s.genMorphGeometry(e,t,l,i,o.name)})})}genMorphGeometry(e,t,n,i,s){const r=t.PolygonVertexIndex!==void 0?t.PolygonVertexIndex.a:[],o=n.Vertices!==void 0?n.Vertices.a:[],l=n.Indexes!==void 0?n.Indexes.a:[],c=e.attributes.position.count*3,h=new Float32Array(c);for(let p=0;p<l.length;p++){const m=l[p]*3;h[m]=o[p*3],h[m+1]=o[p*3+1],h[m+2]=o[p*3+2]}const u={vertexIndices:r,vertexPositions:h},f=this.genBuffers(u),d=new Ce(f.vertex,3);d.name=s||n.attrName,d.applyMatrix4(i),e.morphAttributes.position.push(d)}parseNormals(e){const t=e.MappingInformationType,n=e.ReferenceInformationType,i=e.Normals.a;let s=[];return n===\"IndexToDirect\"&&(\"NormalIndex\"in e?s=e.NormalIndex.a:\"NormalsIndex\"in e&&(s=e.NormalsIndex.a)),{dataSize:3,buffer:i,indices:s,mappingType:t,referenceType:n}}parseUVs(e){const t=e.MappingInformationType,n=e.ReferenceInformationType,i=e.UV.a;let s=[];return n===\"IndexToDirect\"&&(s=e.UVIndex.a),{dataSize:2,buffer:i,indices:s,mappingType:t,referenceType:n}}parseVertexColors(e){const t=e.MappingInformationType,n=e.ReferenceInformationType,i=e.Colors.a;let s=[];return n===\"IndexToDirect\"&&(s=e.ColorIndex.a),{dataSize:4,buffer:i,indices:s,mappingType:t,referenceType:n}}parseMaterialIndices(e){const t=e.MappingInformationType,n=e.ReferenceInformationType;if(t===\"NoMappingInformation\")return{dataSize:1,buffer:[0],indices:[0],mappingType:\"AllSame\",referenceType:n};const i=e.Materials.a,s=[];for(let r=0;r<i.length;++r)s.push(r);return{dataSize:1,buffer:i,indices:s,mappingType:t,referenceType:n}}parseNurbsGeometry(e){if(Kf===void 0)return console.error(\"THREE.FBXLoader: The loader relies on NURBSCurve for any nurbs present in the model. Nurbs will show up as empty geometry.\"),new Xe;const t=parseInt(e.Order);if(isNaN(t))return console.error(\"THREE.FBXLoader: Invalid Order %s given for geometry ID: %s\",e.Order,e.id),new Xe;const n=t-1,i=e.KnotVector.a,s=[],r=e.Points.a;for(let u=0,f=r.length;u<f;u+=4)s.push(new dt().fromArray(r,u));let o,l;if(e.Form===\"Closed\")s.push(s[0]);else if(e.Form===\"Periodic\"){o=n,l=i.length-1-o;for(let u=0;u<n;++u)s.push(s[u])}const h=new Kf(n,i,s,o,l).getPoints(s.length*12);return new Xe().setFromPoints(h)}}class dM{parse(){const e=[],t=this.parseClips();if(t!==void 0)for(const n in t){const i=t[n],s=this.addClip(i);e.push(s)}return e}parseClips(){if(lt.Objects.AnimationCurve===void 0)return;const e=this.parseAnimationCurveNodes();this.parseAnimationCurves(e);const t=this.parseAnimationLayers(e);return this.parseAnimStacks(t)}parseAnimationCurveNodes(){const e=lt.Objects.AnimationCurveNode,t=new Map;for(const n in e){const i=e[n];if(i.attrName.match(/S|R|T|DeformPercent/)!==null){const s={id:i.id,attr:i.attrName,curves:{}};t.set(s.id,s)}}return t}parseAnimationCurves(e){const t=lt.Objects.AnimationCurve;for(const n in t){const i={id:t[n].id,times:t[n].KeyTime.a.map(xM),values:t[n].KeyValueFloat.a},s=Ut.get(i.id);if(s!==void 0){const r=s.parents[0].ID,o=s.parents[0].relationship;o.match(/X/)?e.get(r).curves.x=i:o.match(/Y/)?e.get(r).curves.y=i:o.match(/Z/)?e.get(r).curves.z=i:o.match(/d|DeformPercent/)&&e.has(r)&&(e.get(r).curves.morph=i)}}}parseAnimationLayers(e){const t=lt.Objects.AnimationLayer,n=new Map;for(const i in t){const s=[],r=Ut.get(parseInt(i));r!==void 0&&(r.children.forEach(function(l,c){if(e.has(l.ID)){const h=e.get(l.ID);if(h.curves.x!==void 0||h.curves.y!==void 0||h.curves.z!==void 0){if(s[c]===void 0){const u=Ut.get(l.ID).parents.filter(function(f){return f.relationship!==void 0})[0].ID;if(u!==void 0){const f=lt.Objects.Model[u.toString()];if(f===void 0){console.warn(\"THREE.FBXLoader: Encountered a unused curve.\",l);return}const d={modelName:f.attrName?rt.sanitizeNodeName(f.attrName):\"\",ID:f.id,initialPosition:[0,0,0],initialRotation:[0,0,0],initialScale:[1,1,1]};_n.traverse(function(p){p.ID===f.id&&(d.transform=p.matrix,p.userData.transformData&&(d.eulerOrder=p.userData.transformData.eulerOrder))}),d.transform||(d.transform=new Ne),\"PreRotation\"in f&&(d.preRotation=f.PreRotation.value),\"PostRotation\"in f&&(d.postRotation=f.PostRotation.value),s[c]=d}}s[c]&&(s[c][h.attr]=h)}else if(h.curves.morph!==void 0){if(s[c]===void 0){const u=Ut.get(l.ID).parents.filter(function(y){return y.relationship!==void 0})[0].ID,f=Ut.get(u).parents[0].ID,d=Ut.get(f).parents[0].ID,p=Ut.get(d).parents[0].ID,m=lt.Objects.Model[p],g={modelName:m.attrName?rt.sanitizeNodeName(m.attrName):\"\",morphName:lt.Objects.Deformer[u].attrName};s[c]=g}s[c][h.attr]=h}}}),n.set(parseInt(i),s))}return n}parseAnimStacks(e){const t=lt.Objects.AnimationStack,n={};for(const i in t){const s=Ut.get(parseInt(i)).children;s.length>1&&console.warn(\"THREE.FBXLoader: Encountered an animation stack with multiple layers, this is currently not supported. Ignoring subsequent layers.\");const r=e.get(s[0].ID);n[i]={name:t[i].attrName,layer:r}}return n}addClip(e){let t=[];const n=this;return e.layer.forEach(function(i){t=t.concat(n.generateTracks(i))}),new Ai(e.name,-1,t)}generateTracks(e){const t=[];let n=new I,i=new Bt,s=new I;if(e.transform&&e.transform.decompose(n,i,s),n=n.toArray(),i=new Nn().setFromQuaternion(i,e.eulerOrder).toArray(),s=s.toArray(),e.T!==void 0&&Object.keys(e.T.curves).length>0){const r=this.generateVectorTrack(e.modelName,e.T.curves,n,\"position\");r!==void 0&&t.push(r)}if(e.R!==void 0&&Object.keys(e.R.curves).length>0){const r=this.generateRotationTrack(e.modelName,e.R.curves,i,e.preRotation,e.postRotation,e.eulerOrder);r!==void 0&&t.push(r)}if(e.S!==void 0&&Object.keys(e.S.curves).length>0){const r=this.generateVectorTrack(e.modelName,e.S.curves,s,\"scale\");r!==void 0&&t.push(r)}if(e.DeformPercent!==void 0){const r=this.generateMorphTrack(e);r!==void 0&&t.push(r)}return t}generateVectorTrack(e,t,n,i){const s=this.getTimesForAllAxes(t),r=this.getKeyframeTrackValues(s,t,n);return new Ti(e+\".\"+i,s,r)}generateRotationTrack(e,t,n,i,s,r){t.x!==void 0&&(this.interpolateRotations(t.x),t.x.values=t.x.values.map(nn.degToRad)),t.y!==void 0&&(this.interpolateRotations(t.y),t.y.values=t.y.values.map(nn.degToRad)),t.z!==void 0&&(this.interpolateRotations(t.z),t.z.values=t.z.values.map(nn.degToRad));const o=this.getTimesForAllAxes(t),l=this.getKeyframeTrackValues(o,t,n);i!==void 0&&(i=i.map(nn.degToRad),i.push(r),i=new Nn().fromArray(i),i=new Bt().setFromEuler(i)),s!==void 0&&(s=s.map(nn.degToRad),s.push(r),s=new Nn().fromArray(s),s=new Bt().setFromEuler(s).invert());const c=new Bt,h=new Nn,u=[];for(let f=0;f<l.length;f+=3)h.set(l[f],l[f+1],l[f+2],r),c.setFromEuler(h),i!==void 0&&c.premultiply(i),s!==void 0&&c.multiply(s),c.toArray(u,f/3*4);return new si(e+\".quaternion\",o,u)}generateMorphTrack(e){const t=e.DeformPercent.curves.morph,n=t.values.map(function(s){return s/100}),i=_n.getObjectByName(e.modelName).morphTargetDictionary[e.morphName];return new Os(e.modelName+\".morphTargetInfluences[\"+i+\"]\",t.times,n)}getTimesForAllAxes(e){let t=[];if(e.x!==void 0&&(t=t.concat(e.x.times)),e.y!==void 0&&(t=t.concat(e.y.times)),e.z!==void 0&&(t=t.concat(e.z.times)),t=t.sort(function(n,i){return n-i}),t.length>1){let n=1,i=t[0];for(let s=1;s<t.length;s++){const r=t[s];r!==i&&(t[n]=r,i=r,n++)}t=t.slice(0,n)}return t}getKeyframeTrackValues(e,t,n){const i=n,s=[];let r=-1,o=-1,l=-1;return e.forEach(function(c){if(t.x&&(r=t.x.times.indexOf(c)),t.y&&(o=t.y.times.indexOf(c)),t.z&&(l=t.z.times.indexOf(c)),r!==-1){const h=t.x.values[r];s.push(h),i[0]=h}else s.push(i[0]);if(o!==-1){const h=t.y.values[o];s.push(h),i[1]=h}else s.push(i[1]);if(l!==-1){const h=t.z.values[l];s.push(h),i[2]=h}else s.push(i[2])}),s}interpolateRotations(e){for(let t=1;t<e.values.length;t++){const n=e.values[t-1],i=e.values[t]-n,s=Math.abs(i);if(s>=180){const r=s/180,o=i/r;let l=n+o;const c=e.times[t-1],u=(e.times[t]-c)/r;let f=c+u;const d=[],p=[];for(;f<e.times[t];)d.push(f),f+=u,p.push(l),l+=o;e.times=Qf(e.times,t,d),e.values=Qf(e.values,t,p)}}}}class pM{getPrevNode(){return this.nodeStack[this.currentIndent-2]}getCurrentNode(){return this.nodeStack[this.currentIndent-1]}getCurrentProp(){return this.currentProp}pushStack(e){this.nodeStack.push(e),this.currentIndent+=1}popStack(){this.nodeStack.pop(),this.currentIndent-=1}setCurrentProp(e,t){this.currentProp=e,this.currentPropName=t}parse(e){this.currentIndent=0,this.allNodes=new Hm,this.nodeStack=[],this.currentProp=[],this.currentPropName=\"\";const t=this,n=e.split(/[\\r\\n]+/);return n.forEach(function(i,s){const r=i.match(/^[\\s\\t]*;/),o=i.match(/^[\\s\\t]*$/);if(r||o)return;const l=i.match(\"^\\\\t{\"+t.currentIndent+\"}(\\\\w+):(.*){\",\"\"),c=i.match(\"^\\\\t{\"+t.currentIndent+\"}(\\\\w+):[\\\\s\\\\t\\\\r\\\\n](.*)\"),h=i.match(\"^\\\\t{\"+(t.currentIndent-1)+\"}}\");l?t.parseNodeBegin(i,l):c?t.parseNodeProperty(i,c,n[++s]):h?t.popStack():i.match(/^[^\\s\\t}]/)&&t.parseNodePropertyContinued(i)}),this.allNodes}parseNodeBegin(e,t){const n=t[1].trim().replace(/^\"/,\"\").replace(/\"$/,\"\"),i=t[2].split(\",\").map(function(l){return l.trim().replace(/^\"/,\"\").replace(/\"$/,\"\")}),s={name:n},r=this.parseNodeAttr(i),o=this.getCurrentNode();this.currentIndent===0?this.allNodes.add(n,s):n in o?(n===\"PoseNode\"?o.PoseNode.push(s):o[n].id!==void 0&&(o[n]={},o[n][o[n].id]=o[n]),r.id!==\"\"&&(o[n][r.id]=s)):typeof r.id==\"number\"?(o[n]={},o[n][r.id]=s):n!==\"Properties70\"&&(n===\"PoseNode\"?o[n]=[s]:o[n]=s),typeof r.id==\"number\"&&(s.id=r.id),r.name!==\"\"&&(s.attrName=r.name),r.type!==\"\"&&(s.attrType=r.type),this.pushStack(s)}parseNodeAttr(e){let t=e[0];e[0]!==\"\"&&(t=parseInt(e[0]),isNaN(t)&&(t=e[0]));let n=\"\",i=\"\";return e.length>1&&(n=e[1].replace(/^(\\w+)::/,\"\"),i=e[2]),{id:t,name:n,type:i}}parseNodeProperty(e,t,n){let i=t[1].replace(/^\"/,\"\").replace(/\"$/,\"\").trim(),s=t[2].replace(/^\"/,\"\").replace(/\"$/,\"\").trim();i===\"Content\"&&s===\",\"&&(s=n.replace(/\"/g,\"\").replace(/,$/,\"\").trim());const r=this.getCurrentNode();if(r.name===\"Properties70\"){this.parseNodeSpecialProperty(e,i,s);return}if(i===\"C\"){const l=s.split(\",\").slice(1),c=parseInt(l[0]),h=parseInt(l[1]);let u=s.split(\",\").slice(3);u=u.map(function(f){return f.trim().replace(/^\"/,\"\")}),i=\"connections\",s=[c,h],_M(s,u),r[i]===void 0&&(r[i]=[])}i===\"Node\"&&(r.id=s),i in r&&Array.isArray(r[i])?r[i].push(s):i!==\"a\"?r[i]=s:r.a=s,this.setCurrentProp(r,i),i===\"a\"&&s.slice(-1)!==\",\"&&(r.a=Sc(s))}parseNodePropertyContinued(e){const t=this.getCurrentNode();t.a+=e,e.slice(-1)!==\",\"&&(t.a=Sc(t.a))}parseNodeSpecialProperty(e,t,n){const i=n.split('\",').map(function(h){return h.trim().replace(/^\\\"/,\"\").replace(/\\s/,\"_\")}),s=i[0],r=i[1],o=i[2],l=i[3];let c=i[4];switch(r){case\"int\":case\"enum\":case\"bool\":case\"ULongLong\":case\"double\":case\"Number\":case\"FieldOfView\":c=parseFloat(c);break;case\"Color\":case\"ColorRGB\":case\"Vector3D\":case\"Lcl_Translation\":case\"Lcl_Rotation\":case\"Lcl_Scaling\":c=Sc(c);break}this.getPrevNode()[s]={type:r,type2:o,flag:l,value:c},this.setCurrentProp(this.getPrevNode(),s)}}class mM{parse(e){const t=new Jf(e);t.skip(23);const n=t.getUint32();if(n<6400)throw new Error(\"THREE.FBXLoader: FBX version not supported, FileVersion: \"+n);const i=new Hm;for(;!this.endOfContent(t);){const s=this.parseNode(t,n);s!==null&&i.add(s.name,s)}return i}endOfContent(e){return e.size()%16===0?(e.getOffset()+160+16&-16)>=e.size():e.getOffset()+160+16>=e.size()}parseNode(e,t){const n={},i=t>=7500?e.getUint64():e.getUint32(),s=t>=7500?e.getUint64():e.getUint32();t>=7500?e.getUint64():e.getUint32();const r=e.getUint8(),o=e.getString(r);if(i===0)return null;const l=[];for(let f=0;f<s;f++)l.push(this.parseProperty(e));const c=l.length>0?l[0]:\"\",h=l.length>1?l[1]:\"\",u=l.length>2?l[2]:\"\";for(n.singleProperty=s===1&&e.getOffset()===i;i>e.getOffset();){const f=this.parseNode(e,t);f!==null&&this.parseSubNode(o,n,f)}return n.propertyList=l,typeof c==\"number\"&&(n.id=c),h!==\"\"&&(n.attrName=h),u!==\"\"&&(n.attrType=u),o!==\"\"&&(n.name=o),n}parseSubNode(e,t,n){if(n.singleProperty===!0){const i=n.propertyList[0];Array.isArray(i)?(t[n.name]=n,n.a=i):t[n.name]=i}else if(e===\"Connections\"&&n.name===\"C\"){const i=[];n.propertyList.forEach(function(s,r){r!==0&&i.push(s)}),t.connections===void 0&&(t.connections=[]),t.connections.push(i)}else if(n.name===\"Properties70\")Object.keys(n).forEach(function(s){t[s]=n[s]});else if(e===\"Properties70\"&&n.name===\"P\"){let i=n.propertyList[0],s=n.propertyList[1];const r=n.propertyList[2],o=n.propertyList[3];let l;i.indexOf(\"Lcl \")===0&&(i=i.replace(\"Lcl \",\"Lcl_\")),s.indexOf(\"Lcl \")===0&&(s=s.replace(\"Lcl \",\"Lcl_\")),s===\"Color\"||s===\"ColorRGB\"||s===\"Vector\"||s===\"Vector3D\"||s.indexOf(\"Lcl_\")===0?l=[n.propertyList[4],n.propertyList[5],n.propertyList[6]]:l=n.propertyList[4],t[i]={type:s,type2:r,flag:o,value:l}}else t[n.name]===void 0?typeof n.id==\"number\"?(t[n.name]={},t[n.name][n.id]=n):t[n.name]=n:n.name===\"PoseNode\"?(Array.isArray(t[n.name])||(t[n.name]=[t[n.name]]),t[n.name].push(n)):t[n.name][n.id]===void 0&&(t[n.name][n.id]=n)}parseProperty(e){const t=e.getString(1);let n;switch(t){case\"C\":return e.getBoolean();case\"D\":return e.getFloat64();case\"F\":return e.getFloat32();case\"I\":return e.getInt32();case\"L\":return e.getInt64();case\"R\":return n=e.getUint32(),e.getArrayBuffer(n);case\"S\":return n=e.getUint32(),e.getString(n);case\"Y\":return e.getInt16();case\"b\":case\"c\":case\"d\":case\"f\":case\"i\":case\"l\":const i=e.getUint32(),s=e.getUint32(),r=e.getUint32();if(s===0)switch(t){case\"b\":case\"c\":return e.getBooleanArray(i);case\"d\":return e.getFloat64Array(i);case\"f\":return e.getFloat32Array(i);case\"i\":return e.getInt32Array(i);case\"l\":return e.getInt64Array(i)}typeof nM==\"undefined\"&&console.error(\"THREE.FBXLoader: External library fflate.min.js required.\");const o=ko(new Uint8Array(e.getArrayBuffer(r))),l=new Jf(o.buffer);switch(t){case\"b\":case\"c\":return l.getBooleanArray(i);case\"d\":return l.getFloat64Array(i);case\"f\":return l.getFloat32Array(i);case\"i\":return l.getInt32Array(i);case\"l\":return l.getInt64Array(i)}break;default:throw new Error(\"THREE.FBXLoader: Unknown property type \"+t)}}}class Jf{constructor(e,t){this.dv=new DataView(e),this.offset=0,this.littleEndian=t!==void 0?t:!0}getOffset(){return this.offset}size(){return this.dv.buffer.byteLength}skip(e){this.offset+=e}getBoolean(){return(this.getUint8()&1)===1}getBooleanArray(e){const t=[];for(let n=0;n<e;n++)t.push(this.getBoolean());return t}getUint8(){const e=this.dv.getUint8(this.offset);return this.offset+=1,e}getInt16(){const e=this.dv.getInt16(this.offset,this.littleEndian);return this.offset+=2,e}getInt32(){const e=this.dv.getInt32(this.offset,this.littleEndian);return this.offset+=4,e}getInt32Array(e){const t=[];for(let n=0;n<e;n++)t.push(this.getInt32());return t}getUint32(){const e=this.dv.getUint32(this.offset,this.littleEndian);return this.offset+=4,e}getInt64(){let e,t;return this.littleEndian?(e=this.getUint32(),t=this.getUint32()):(t=this.getUint32(),e=this.getUint32()),t&2147483648?(t=~t&4294967295,e=~e&4294967295,e===4294967295&&(t=t+1&4294967295),e=e+1&4294967295,-(t*4294967296+e)):t*4294967296+e}getInt64Array(e){const t=[];for(let n=0;n<e;n++)t.push(this.getInt64());return t}getUint64(){let e,t;return this.littleEndian?(e=this.getUint32(),t=this.getUint32()):(t=this.getUint32(),e=this.getUint32()),t*4294967296+e}getFloat32(){const e=this.dv.getFloat32(this.offset,this.littleEndian);return this.offset+=4,e}getFloat32Array(e){const t=[];for(let n=0;n<e;n++)t.push(this.getFloat32());return t}getFloat64(){const e=this.dv.getFloat64(this.offset,this.littleEndian);return this.offset+=8,e}getFloat64Array(e){const t=[];for(let n=0;n<e;n++)t.push(this.getFloat64());return t}getArrayBuffer(e){const t=this.dv.buffer.slice(this.offset,this.offset+e);return this.offset+=e,t}getString(e){let t=[];for(let i=0;i<e;i++)t[i]=this.getUint8();const n=t.indexOf(0);return n>=0&&(t=t.slice(0,n)),sn.decodeText(new Uint8Array(t))}}class Hm{add(e,t){this[e]=t}}function gM(a){const e=\"Kaydara FBX Binary  \\0\";return a.byteLength>=e.length&&e===Xm(a,0,e.length)}function yM(a){const e=[\"K\",\"a\",\"y\",\"d\",\"a\",\"r\",\"a\",\"\\\\\",\"F\",\"B\",\"X\",\"\\\\\",\"B\",\"i\",\"n\",\"a\",\"r\",\"y\",\"\\\\\",\"\\\\\"];let t=0;function n(i){const s=a[i-1];return a=a.slice(t+i),t++,s}for(let i=0;i<e.length;++i)if(n(1)===e[i])return!1;return!0}function $f(a){const e=/FBXVersion: (\\d+)/,t=a.match(e);if(t)return parseInt(t[1]);throw new Error(\"THREE.FBXLoader: Cannot find the version number for the file given.\")}function xM(a){return a/46186158e3}const vM=[];function qa(a,e,t,n){let i;switch(n.mappingType){case\"ByPolygonVertex\":i=a;break;case\"ByPolygon\":i=e;break;case\"ByVertice\":i=t;break;case\"AllSame\":i=n.indices[0];break;default:console.warn(\"THREE.FBXLoader: unknown attribute mapping type \"+n.mappingType)}n.referenceType===\"IndexToDirect\"&&(i=n.indices[i]);const s=i*n.dataSize,r=s+n.dataSize;return bM(vM,n.buffer,s,r)}const Mc=new Nn,fr=new I;function Wm(a){const e=new Ne,t=new Ne,n=new Ne,i=new Ne,s=new Ne,r=new Ne,o=new Ne,l=new Ne,c=new Ne,h=new Ne,u=new Ne,f=new Ne,d=a.inheritType?a.inheritType:0;if(a.translation&&e.setPosition(fr.fromArray(a.translation)),a.preRotation){const F=a.preRotation.map(nn.degToRad);F.push(a.eulerOrder),t.makeRotationFromEuler(Mc.fromArray(F))}if(a.rotation){const F=a.rotation.map(nn.degToRad);F.push(a.eulerOrder),n.makeRotationFromEuler(Mc.fromArray(F))}if(a.postRotation){const F=a.postRotation.map(nn.degToRad);F.push(a.eulerOrder),i.makeRotationFromEuler(Mc.fromArray(F)),i.invert()}a.scale&&s.scale(fr.fromArray(a.scale)),a.scalingOffset&&o.setPosition(fr.fromArray(a.scalingOffset)),a.scalingPivot&&r.setPosition(fr.fromArray(a.scalingPivot)),a.rotationOffset&&l.setPosition(fr.fromArray(a.rotationOffset)),a.rotationPivot&&c.setPosition(fr.fromArray(a.rotationPivot)),a.parentMatrixWorld&&(u.copy(a.parentMatrix),h.copy(a.parentMatrixWorld));const p=t.clone().multiply(n).multiply(i),m=new Ne;m.extractRotation(h);const g=new Ne;g.copyPosition(h);const y=g.clone().invert().multiply(h),x=m.clone().invert().multiply(y),b=s,v=new Ne;if(d===0)v.copy(m).multiply(p).multiply(x).multiply(b);else if(d===1)v.copy(m).multiply(x).multiply(p).multiply(b);else{const U=new Ne().scale(new I().setFromMatrixScale(u)).clone().invert(),q=x.clone().multiply(U);v.copy(m).multiply(p).multiply(q).multiply(b)}const M=c.clone().invert(),T=r.clone().invert();let C=e.clone().multiply(l).multiply(c).multiply(t).multiply(n).multiply(i).multiply(M).multiply(o).multiply(r).multiply(s).multiply(T);const _=new Ne().copyPosition(C),E=h.clone().multiply(_);return f.copyPosition(E),C=f.clone().multiply(v),C.premultiply(h.invert()),C}function qm(a){a=a||0;const e=[\"ZYX\",\"YZX\",\"XZY\",\"ZXY\",\"YXZ\",\"XYZ\"];return a===6?(console.warn(\"THREE.FBXLoader: unsupported Euler Order: Spherical XYZ. Animations and rotations may be incorrect.\"),e[0]):e[a]}function Sc(a){return a.split(\",\").map(function(t){return parseFloat(t)})}function Xm(a,e,t){return e===void 0&&(e=0),t===void 0&&(t=a.byteLength),sn.decodeText(new Uint8Array(a,e,t))}function _M(a,e){for(let t=0,n=a.length,i=e.length;t<i;t++,n++)a[n]=e[t]}function bM(a,e,t,n){for(let i=t,s=0;i<n;i++,s++)a[s]=e[i];return a}function Qf(a,e,t){return a.slice(0,e).concat(t).concat(a.slice(e))}class xu extends Kp{constructor(e){super(e)}parse(e){function t(O){switch(O.image_type){case f:case m:(O.colormap_length>256||O.colormap_size!==24||O.colormap_type!==1)&&console.error(\"THREE.TGALoader: Invalid type colormap data for indexed type.\");break;case d:case p:case g:case y:O.colormap_type&&console.error(\"THREE.TGALoader: Invalid type colormap data for colormap type.\");break;case u:console.error(\"THREE.TGALoader: No data.\");default:console.error('THREE.TGALoader: Invalid type \"%s\".',O.image_type)}(O.width<=0||O.height<=0)&&console.error(\"THREE.TGALoader: Invalid image size.\"),O.pixel_size!==8&&O.pixel_size!==16&&O.pixel_size!==24&&O.pixel_size!==32&&console.error('THREE.TGALoader: Invalid pixel size \"%s\".',O.pixel_size)}function n(O,j,Y,W,Z){let ee,Q;const ie=Y.pixel_size>>3,ae=Y.width*Y.height*ie;if(j&&(Q=Z.subarray(W,W+=Y.colormap_length*(Y.colormap_size>>3))),O){ee=new Uint8Array(ae);let re,H,ge,be=0;const Fe=new Uint8Array(ie);for(;be<ae;)if(re=Z[W++],H=(re&127)+1,re&128){for(ge=0;ge<ie;++ge)Fe[ge]=Z[W++];for(ge=0;ge<H;++ge)ee.set(Fe,be+ge*ie);be+=ie*H}else{for(H*=ie,ge=0;ge<H;++ge)ee[be+ge]=Z[W++];be+=H}}else ee=Z.subarray(W,W+=j?Y.width*Y.height:ae);return{pixel_data:ee,palettes:Q}}function i(O,j,Y,W,Z,ee,Q,ie,ae){const re=ae;let H,ge=0,be,Fe;const xe=F.width;for(Fe=j;Fe!==W;Fe+=Y)for(be=Z;be!==Q;be+=ee,ge++)H=ie[ge],O[(be+xe*Fe)*4+3]=255,O[(be+xe*Fe)*4+2]=re[H*3+0],O[(be+xe*Fe)*4+1]=re[H*3+1],O[(be+xe*Fe)*4+0]=re[H*3+2];return O}function s(O,j,Y,W,Z,ee,Q,ie){let ae,re=0,H,ge;const be=F.width;for(ge=j;ge!==W;ge+=Y)for(H=Z;H!==Q;H+=ee,re+=2)ae=ie[re+0]+(ie[re+1]<<8),O[(H+be*ge)*4+0]=(ae&31744)>>7,O[(H+be*ge)*4+1]=(ae&992)>>2,O[(H+be*ge)*4+2]=(ae&31)<<3,O[(H+be*ge)*4+3]=ae&32768?0:255;return O}function r(O,j,Y,W,Z,ee,Q,ie){let ae=0,re,H;const ge=F.width;for(H=j;H!==W;H+=Y)for(re=Z;re!==Q;re+=ee,ae+=3)O[(re+ge*H)*4+3]=255,O[(re+ge*H)*4+2]=ie[ae+0],O[(re+ge*H)*4+1]=ie[ae+1],O[(re+ge*H)*4+0]=ie[ae+2];return O}function o(O,j,Y,W,Z,ee,Q,ie){let ae=0,re,H;const ge=F.width;for(H=j;H!==W;H+=Y)for(re=Z;re!==Q;re+=ee,ae+=4)O[(re+ge*H)*4+2]=ie[ae+0],O[(re+ge*H)*4+1]=ie[ae+1],O[(re+ge*H)*4+0]=ie[ae+2],O[(re+ge*H)*4+3]=ie[ae+3];return O}function l(O,j,Y,W,Z,ee,Q,ie){let ae,re=0,H,ge;const be=F.width;for(ge=j;ge!==W;ge+=Y)for(H=Z;H!==Q;H+=ee,re++)ae=ie[re],O[(H+be*ge)*4+0]=ae,O[(H+be*ge)*4+1]=ae,O[(H+be*ge)*4+2]=ae,O[(H+be*ge)*4+3]=255;return O}function c(O,j,Y,W,Z,ee,Q,ie){let ae=0,re,H;const ge=F.width;for(H=j;H!==W;H+=Y)for(re=Z;re!==Q;re+=ee,ae+=2)O[(re+ge*H)*4+0]=ie[ae+0],O[(re+ge*H)*4+1]=ie[ae+0],O[(re+ge*H)*4+2]=ie[ae+0],O[(re+ge*H)*4+3]=ie[ae+1];return O}function h(O,j,Y,W,Z){let ee,Q,ie,ae,re,H;switch((F.flags&x)>>b){default:case T:ee=0,ie=1,re=j,Q=0,ae=1,H=Y;break;case v:ee=0,ie=1,re=j,Q=Y-1,ae=-1,H=-1;break;case C:ee=j-1,ie=-1,re=-1,Q=0,ae=1,H=Y;break;case M:ee=j-1,ie=-1,re=-1,Q=Y-1,ae=-1,H=-1;break}if(K)switch(F.pixel_size){case 8:l(O,Q,ae,H,ee,ie,re,W);break;case 16:c(O,Q,ae,H,ee,ie,re,W);break;default:console.error(\"THREE.TGALoader: Format not supported.\");break}else switch(F.pixel_size){case 8:i(O,Q,ae,H,ee,ie,re,W,Z);break;case 16:s(O,Q,ae,H,ee,ie,re,W);break;case 24:r(O,Q,ae,H,ee,ie,re,W);break;case 32:o(O,Q,ae,H,ee,ie,re,W);break;default:console.error(\"THREE.TGALoader: Format not supported.\");break}return O}const u=0,f=1,d=2,p=3,m=9,g=10,y=11,x=48,b=4,v=0,M=1,T=2,C=3;e.length<19&&console.error(\"THREE.TGALoader: Not enough data to contain header.\");let _=0;const E=new Uint8Array(e),F={id_length:E[_++],colormap_type:E[_++],image_type:E[_++],colormap_index:E[_++]|E[_++]<<8,colormap_length:E[_++]|E[_++]<<8,colormap_size:E[_++],origin:[E[_++]|E[_++]<<8,E[_++]|E[_++]<<8],width:E[_++]|E[_++]<<8,height:E[_++]|E[_++]<<8,pixel_size:E[_++],flags:E[_++]};t(F),F.id_length+_>e.length&&console.error(\"THREE.TGALoader: No data.\"),_+=F.id_length;let U=!1,q=!1,K=!1;switch(F.image_type){case m:U=!0,q=!0;break;case f:q=!0;break;case g:U=!0;break;case d:break;case y:U=!0,K=!0;break;case p:K=!0;break}const G=new Uint8Array(F.width*F.height*4),X=n(U,q,F,_,E);return h(G,F.width,F.height,X.pixel_data,X.palettes),{data:G,width:F.width,height:F.height,flipY:!0,generateMipmaps:!0,minFilter:oi}}}class wM extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=s.path===\"\"?sn.extractUrlBase(e):s.path,o=new $t(s.manager);o.setPath(s.path),o.setRequestHeader(s.requestHeader),o.setWithCredentials(s.withCredentials),o.load(e,function(l){try{t(s.parse(l,r))}catch(c){i?i(c):console.error(c),s.manager.itemError(e)}},n,i)}parse(e,t){function n(S,w){const L=[],A=S.childNodes;for(let R=0,se=A.length;R<se;R++){const he=A[R];he.nodeName===w&&L.push(he)}return L}function i(S){if(S.length===0)return[];const w=S.trim().split(/\\s+/),L=new Array(w.length);for(let A=0,R=w.length;A<R;A++)L[A]=w[A];return L}function s(S){if(S.length===0)return[];const w=S.trim().split(/\\s+/),L=new Array(w.length);for(let A=0,R=w.length;A<R;A++)L[A]=parseFloat(w[A]);return L}function r(S){if(S.length===0)return[];const w=S.trim().split(/\\s+/),L=new Array(w.length);for(let A=0,R=w.length;A<R;A++)L[A]=parseInt(w[A]);return L}function o(S){return S.substring(1)}function l(){return\"three_default_\"+Qm++}function c(S){return Object.keys(S).length===0}function h(S){return{unit:u(n(S,\"unit\")[0]),upAxis:f(n(S,\"up_axis\")[0])}}function u(S){return S!==void 0&&S.hasAttribute(\"meter\")===!0?parseFloat(S.getAttribute(\"meter\")):1}function f(S){return S!==void 0?S.textContent:\"Y_UP\"}function d(S,w,L,A){const R=n(S,w)[0];if(R!==void 0){const se=n(R,L);for(let he=0;he<se.length;he++)A(se[he])}}function p(S,w){for(const L in S){const A=S[L];A.build=w(S[L])}}function m(S,w){return S.build!==void 0||(S.build=w(S)),S.build}function g(S){const w={sources:{},samplers:{},channels:{}};let L=!1;for(let A=0,R=S.childNodes.length;A<R;A++){const se=S.childNodes[A];if(se.nodeType!==1)continue;let he;switch(se.nodeName){case\"source\":he=se.getAttribute(\"id\"),w.sources[he]=Ae(se);break;case\"sampler\":he=se.getAttribute(\"id\"),w.samplers[he]=y(se);break;case\"channel\":he=se.getAttribute(\"target\"),w.channels[he]=x(se);break;case\"animation\":g(se),L=!0;break;default:console.log(se)}}L===!1&&(Ke.animations[S.getAttribute(\"id\")||nn.generateUUID()]=w)}function y(S){const w={inputs:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"input\":const se=o(R.getAttribute(\"source\")),he=R.getAttribute(\"semantic\");w.inputs[he]=se;break}}return w}function x(S){const w={};let A=S.getAttribute(\"target\").split(\"/\");const R=A.shift();let se=A.shift();const he=se.indexOf(\"(\")!==-1,Oe=se.indexOf(\".\")!==-1;if(Oe)A=se.split(\".\"),se=A.shift(),w.member=A.shift();else if(he){const Re=se.split(\"(\");se=Re.shift();for(let Be=0;Be<Re.length;Be++)Re[Be]=parseInt(Re[Be].replace(/\\)/,\"\"));w.indices=Re}return w.id=R,w.sid=se,w.arraySyntax=he,w.memberSyntax=Oe,w.sampler=o(S.getAttribute(\"source\")),w}function b(S){const w=[],L=S.channels,A=S.samplers,R=S.sources;for(const se in L)if(L.hasOwnProperty(se)){const he=L[se],Oe=A[he.sampler],Re=Oe.inputs.INPUT,Be=Oe.inputs.OUTPUT,Ge=R[Re],Me=R[Be],qe=M(he,Ge,Me);F(qe,w)}return w}function v(S){return m(Ke.animations[S],b)}function M(S,w,L){const A=Ke.nodes[S.id],R=Cn(A.id),se=A.transforms[S.sid],he=A.matrix.clone().transpose();let Oe,Re,Be,Ge,Me,qe;const ze={};switch(se){case\"matrix\":for(Be=0,Ge=w.array.length;Be<Ge;Be++)if(Oe=w.array[Be],Re=Be*L.stride,ze[Oe]===void 0&&(ze[Oe]={}),S.arraySyntax===!0){const Dt=L.array[Re],St=S.indices[0]+4*S.indices[1];ze[Oe][St]=Dt}else for(Me=0,qe=L.stride;Me<qe;Me++)ze[Oe][Me]=L.array[Re+Me];break;case\"translate\":console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.',se);break;case\"rotate\":console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.',se);break;case\"scale\":console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.',se);break}const Ye=T(ze,he);return{name:R.uuid,keyframes:Ye}}function T(S,w){const L=[];for(const R in S)L.push({time:parseFloat(R),value:S[R]});L.sort(A);for(let R=0;R<16;R++)U(L,R,w.elements[R]);return L;function A(R,se){return R.time-se.time}}const C=new I,_=new I,E=new Bt;function F(S,w){const L=S.keyframes,A=S.name,R=[],se=[],he=[],Oe=[];for(let Re=0,Be=L.length;Re<Be;Re++){const Ge=L[Re],Me=Ge.time,qe=Ge.value;jt.fromArray(qe).transpose(),jt.decompose(C,E,_),R.push(Me),se.push(C.x,C.y,C.z),he.push(E.x,E.y,E.z,E.w),Oe.push(_.x,_.y,_.z)}return se.length>0&&w.push(new Ti(A+\".position\",R,se)),he.length>0&&w.push(new si(A+\".quaternion\",R,he)),Oe.length>0&&w.push(new Ti(A+\".scale\",R,Oe)),w}function U(S,w,L){let A,R=!0,se,he;for(se=0,he=S.length;se<he;se++)A=S[se],A.value[w]===void 0?A.value[w]=null:R=!1;if(R===!0)for(se=0,he=S.length;se<he;se++)A=S[se],A.value[w]=L;else q(S,w)}function q(S,w){let L,A;for(let R=0,se=S.length;R<se;R++){const he=S[R];if(he.value[w]===null){if(L=K(S,R,w),A=G(S,R,w),L===null){he.value[w]=A.value[w];continue}if(A===null){he.value[w]=L.value[w];continue}X(he,L,A,w)}}}function K(S,w,L){for(;w>=0;){const A=S[w];if(A.value[L]!==null)return A;w--}return null}function G(S,w,L){for(;w<S.length;){const A=S[w];if(A.value[L]!==null)return A;w++}return null}function X(S,w,L,A){if(L.time-w.time===0){S.value[A]=w.value[A];return}S.value[A]=(S.time-w.time)*(L.value[A]-w.value[A])/(L.time-w.time)+w.value[A]}function O(S){const w={name:S.getAttribute(\"id\")||\"default\",start:parseFloat(S.getAttribute(\"start\")||0),end:parseFloat(S.getAttribute(\"end\")||0),animations:[]};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"instance_animation\":w.animations.push(o(R.getAttribute(\"url\")));break}}Ke.clips[S.getAttribute(\"id\")]=w}function j(S){const w=[],L=S.name,A=S.end-S.start||-1,R=S.animations;for(let se=0,he=R.length;se<he;se++){const Oe=v(R[se]);for(let Re=0,Be=Oe.length;Re<Be;Re++)w.push(Oe[Re])}return new Ai(L,A,w)}function Y(S){return m(Ke.clips[S],j)}function W(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"skin\":w.id=o(R.getAttribute(\"source\")),w.skin=Z(R);break;case\"morph\":w.id=o(R.getAttribute(\"source\")),console.warn(\"THREE.ColladaLoader: Morph target animation not supported yet.\");break}}Ke.controllers[S.getAttribute(\"id\")]=w}function Z(S){const w={sources:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"bind_shape_matrix\":w.bindShapeMatrix=s(R.textContent);break;case\"source\":const se=R.getAttribute(\"id\");w.sources[se]=Ae(R);break;case\"joints\":w.joints=ee(R);break;case\"vertex_weights\":w.vertexWeights=Q(R);break}}return w}function ee(S){const w={inputs:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"input\":const se=R.getAttribute(\"semantic\"),he=o(R.getAttribute(\"source\"));w.inputs[se]=he;break}}return w}function Q(S){const w={inputs:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"input\":const se=R.getAttribute(\"semantic\"),he=o(R.getAttribute(\"source\")),Oe=parseInt(R.getAttribute(\"offset\"));w.inputs[se]={id:he,offset:Oe};break;case\"vcount\":w.vcount=r(R.textContent);break;case\"v\":w.v=r(R.textContent);break}}return w}function ie(S){const w={id:S.id},L=Ke.geometries[w.id];return S.skin!==void 0&&(w.skin=ae(S.skin),L.sources.skinIndices=w.skin.indices,L.sources.skinWeights=w.skin.weights),w}function ae(S){const L={joints:[],indices:{array:[],stride:4},weights:{array:[],stride:4}},A=S.sources,R=S.vertexWeights,se=R.vcount,he=R.v,Oe=R.inputs.JOINT.offset,Re=R.inputs.WEIGHT.offset,Be=S.sources[S.joints.inputs.JOINT],Ge=S.sources[S.joints.inputs.INV_BIND_MATRIX],Me=A[R.inputs.WEIGHT.id].array;let qe=0,ze,Ye,We;for(ze=0,We=se.length;ze<We;ze++){const St=se[ze],xt=[];for(Ye=0;Ye<St;Ye++){const vt=he[qe+Oe],ci=he[qe+Re],vn=Me[ci];xt.push({index:vt,weight:vn}),qe+=2}for(xt.sort(Dt),Ye=0;Ye<4;Ye++){const vt=xt[Ye];vt!==void 0?(L.indices.array.push(vt.index),L.weights.array.push(vt.weight)):(L.indices.array.push(0),L.weights.array.push(0))}}for(S.bindShapeMatrix?L.bindMatrix=new Ne().fromArray(S.bindShapeMatrix).transpose():L.bindMatrix=new Ne().identity(),ze=0,We=Be.array.length;ze<We;ze++){const St=Be.array[ze],xt=new Ne().fromArray(Ge.array,ze*Ge.stride).transpose();L.joints.push({name:St,boneInverse:xt})}return L;function Dt(St,xt){return xt.weight-St.weight}}function re(S){return m(Ke.controllers[S],ie)}function H(S){const w={init_from:n(S,\"init_from\")[0].textContent};Ke.images[S.getAttribute(\"id\")]=w}function ge(S){return S.build!==void 0?S.build:S.init_from}function be(S){const w=Ke.images[S];return w!==void 0?m(w,ge):(console.warn(\"THREE.ColladaLoader: Couldn't find image with ID:\",S),null)}function Fe(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"profile_COMMON\":w.profile=xe(R);break}}Ke.effects[S.getAttribute(\"id\")]=w}function xe(S){const w={surfaces:{},samplers:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"newparam\":Ve(R,w);break;case\"technique\":w.technique=ve(R);break;case\"extra\":w.extra=gt(R);break}}return w}function Ve(S,w){const L=S.getAttribute(\"sid\");for(let A=0,R=S.childNodes.length;A<R;A++){const se=S.childNodes[A];if(se.nodeType===1)switch(se.nodeName){case\"surface\":w.surfaces[L]=ue(se);break;case\"sampler2D\":w.samplers[L]=ce(se);break}}}function ue(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"init_from\":w.init_from=R.textContent;break}}return w}function ce(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"source\":w.source=R.textContent;break}}return w}function ve(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"constant\":case\"lambert\":case\"blinn\":case\"phong\":w.type=R.nodeName,w.parameters=ke(R);break;case\"extra\":w.extra=gt(R);break}}return w}function ke(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"emission\":case\"diffuse\":case\"specular\":case\"bump\":case\"ambient\":case\"shininess\":case\"transparency\":w[R.nodeName]=Le(R);break;case\"transparent\":w[R.nodeName]={opaque:R.hasAttribute(\"opaque\")?R.getAttribute(\"opaque\"):\"A_ONE\",data:Le(R)};break}}return w}function Le(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"color\":w[R.nodeName]=s(R.textContent);break;case\"float\":w[R.nodeName]=parseFloat(R.textContent);break;case\"texture\":w[R.nodeName]={id:R.getAttribute(\"texture\"),extra:Ze(R)};break}}return w}function Ze(S){const w={technique:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"extra\":He(R,w);break}}return w}function He(S,w){for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"technique\":Ue(R,w);break}}}function Ue(S,w){for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"repeatU\":case\"repeatV\":case\"offsetU\":case\"offsetV\":w.technique[R.nodeName]=parseFloat(R.textContent);break;case\"wrapU\":case\"wrapV\":R.textContent.toUpperCase()===\"TRUE\"?w.technique[R.nodeName]=1:R.textContent.toUpperCase()===\"FALSE\"?w.technique[R.nodeName]=0:w.technique[R.nodeName]=parseInt(R.textContent);break;case\"bump\":w[R.nodeName]=k(R);break}}}function gt(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"technique\":w.technique=ot(R);break}}return w}function ot(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"double_sided\":w[R.nodeName]=parseInt(R.textContent);break;case\"bump\":w[R.nodeName]=k(R);break}}return w}function k(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"texture\":w[R.nodeName]={id:R.getAttribute(\"texture\"),texcoord:R.getAttribute(\"texcoord\"),extra:Ze(R)};break}}return w}function P(S){return S}function oe(S){return m(Ke.effects[S],P)}function _e(S){const w={name:S.getAttribute(\"name\")};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"instance_effect\":w.url=o(R.getAttribute(\"url\"));break}}Ke.materials[S.getAttribute(\"id\")]=w}function Se(S){let w,L=S.slice((S.lastIndexOf(\".\")-1>>>0)+2);switch(L=L.toLowerCase(),L){case\"tga\":w=zl;break;default:w=yh}return w}function Ie(S){const w=oe(S.url),L=w.profile.technique;let A;switch(L.type){case\"phong\":case\"blinn\":A=new ti;break;case\"lambert\":A=new Pl;break;default:A=new ln;break}A.name=S.name||\"\";function R(Re,Be=null){const Ge=w.profile.samplers[Re.id];let Me=null;if(Ge!==void 0){const qe=w.profile.surfaces[Ge.source];Me=be(qe.init_from)}else console.warn(\"THREE.ColladaLoader: Undefined sampler. Access image directly (see #12530).\"),Me=be(Re.id);if(Me!==null){const qe=Se(Me);if(qe!==void 0){const ze=qe.load(Me),Ye=Re.extra;if(Ye!==void 0&&Ye.technique!==void 0&&c(Ye.technique)===!1){const We=Ye.technique;ze.wrapS=We.wrapU?fn:Zt,ze.wrapT=We.wrapV?fn:Zt,ze.offset.set(We.offsetU||0,We.offsetV||0),ze.repeat.set(We.repeatU||1,We.repeatV||1)}else ze.wrapS=fn,ze.wrapT=fn;return Be!==null&&(ze.encoding=Be),ze}else return console.warn(\"THREE.ColladaLoader: Loader for texture %s not found.\",Me),null}else return console.warn(\"THREE.ColladaLoader: Couldn't create texture with ID:\",Re.id),null}const se=L.parameters;for(const Re in se){const Be=se[Re];switch(Re){case\"diffuse\":Be.color&&A.color.fromArray(Be.color),Be.texture&&(A.map=R(Be.texture,it));break;case\"specular\":Be.color&&A.specular&&A.specular.fromArray(Be.color),Be.texture&&(A.specularMap=R(Be.texture));break;case\"bump\":Be.texture&&(A.normalMap=R(Be.texture));break;case\"ambient\":Be.texture&&(A.lightMap=R(Be.texture,it));break;case\"shininess\":Be.float&&A.shininess&&(A.shininess=Be.float);break;case\"emission\":Be.color&&A.emissive&&A.emissive.fromArray(Be.color),Be.texture&&(A.emissiveMap=R(Be.texture,it));break}}A.color.convertSRGBToLinear(),A.specular&&A.specular.convertSRGBToLinear(),A.emissive&&A.emissive.convertSRGBToLinear();let he=se.transparent,Oe=se.transparency;if(Oe===void 0&&he&&(Oe={float:1}),he===void 0&&Oe&&(he={opaque:\"A_ONE\",data:{color:[1,1,1,1]}}),he&&Oe)if(he.data.texture)A.transparent=!0;else{const Re=he.data.color;switch(he.opaque){case\"A_ONE\":A.opacity=Re[3]*Oe.float;break;case\"RGB_ZERO\":A.opacity=1-Re[0]*Oe.float;break;case\"A_ZERO\":A.opacity=1-Re[3]*Oe.float;break;case\"RGB_ONE\":A.opacity=Re[0]*Oe.float;break;default:console.warn('THREE.ColladaLoader: Invalid opaque type \"%s\" of transparent tag.',he.opaque)}A.opacity<1&&(A.transparent=!0)}if(L.extra!==void 0&&L.extra.technique!==void 0){const Re=L.extra.technique;for(const Be in Re){const Ge=Re[Be];switch(Be){case\"double_sided\":A.side=Ge===1?wi:bi;break;case\"bump\":A.normalMap=R(Ge.texture),A.normalScale=new fe(1,1);break}}}return A}function je(S){return m(Ke.materials[S],Ie)}function D(S){const w={name:S.getAttribute(\"name\")};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"optics\":w.optics=me(R);break}}Ke.cameras[S.getAttribute(\"id\")]=w}function me(S){for(let w=0;w<S.childNodes.length;w++){const L=S.childNodes[w];switch(L.nodeName){case\"technique_common\":return Te(L)}}return{}}function Te(S){const w={};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];switch(A.nodeName){case\"perspective\":case\"orthographic\":w.technique=A.nodeName,w.parameters=V(A);break}}return w}function V(S){const w={};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];switch(A.nodeName){case\"xfov\":case\"yfov\":case\"xmag\":case\"ymag\":case\"znear\":case\"zfar\":case\"aspect_ratio\":w[A.nodeName]=parseFloat(A.textContent);break}}return w}function B(S){let w;switch(S.optics.technique){case\"perspective\":w=new Ot(S.optics.parameters.yfov,S.optics.parameters.aspect_ratio,S.optics.parameters.znear,S.optics.parameters.zfar);break;case\"orthographic\":let L=S.optics.parameters.ymag,A=S.optics.parameters.xmag;const R=S.optics.parameters.aspect_ratio;A=A===void 0?L*R:A,L=L===void 0?A/R:L,A*=.5,L*=.5,w=new Us(-A,A,L,-L,S.optics.parameters.znear,S.optics.parameters.zfar);break;default:w=new Ot;break}return w.name=S.name||\"\",w}function ne(S){const w=Ke.cameras[S];return w!==void 0?m(w,B):(console.warn(\"THREE.ColladaLoader: Couldn't find camera with ID:\",S),null)}function de(S){let w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"technique_common\":w=Ee(R);break}}Ke.lights[S.getAttribute(\"id\")]=w}function Ee(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"directional\":case\"point\":case\"spot\":case\"ambient\":w.technique=R.nodeName,w.parameters=z(R)}}return w}function z(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"color\":const se=s(R.textContent);w.color=new we().fromArray(se).convertSRGBToLinear();break;case\"falloff_angle\":w.falloffAngle=parseFloat(R.textContent);break;case\"quadratic_attenuation\":const he=parseFloat(R.textContent);w.distance=he?Math.sqrt(1/he):0;break}}return w}function ye(S){let w;switch(S.technique){case\"directional\":w=new Wr;break;case\"point\":w=new es;break;case\"spot\":w=new qo;break;case\"ambient\":w=new Xo;break}return S.parameters.color&&w.color.copy(S.parameters.color),S.parameters.distance&&(w.distance=S.parameters.distance),w}function J(S){const w=Ke.lights[S];return w!==void 0?m(w,ye):(console.warn(\"THREE.ColladaLoader: Couldn't find light with ID:\",S),null)}function Pe(S){const w={name:S.getAttribute(\"name\"),sources:{},vertices:{},primitives:[]},L=n(S,\"mesh\")[0];if(L!==void 0){for(let A=0;A<L.childNodes.length;A++){const R=L.childNodes[A];if(R.nodeType!==1)continue;const se=R.getAttribute(\"id\");switch(R.nodeName){case\"source\":w.sources[se]=Ae(R);break;case\"vertices\":w.vertices=$e(R);break;case\"polygons\":console.warn(\"THREE.ColladaLoader: Unsupported primitive type: \",R.nodeName);break;case\"lines\":case\"linestrips\":case\"polylist\":case\"triangles\":w.primitives.push(Tt(R));break;default:console.log(R)}}Ke.geometries[S.getAttribute(\"id\")]=w}}function Ae(S){const w={array:[],stride:3};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"float_array\":w.array=s(A.textContent);break;case\"Name_array\":w.array=i(A.textContent);break;case\"technique_common\":const R=n(A,\"accessor\")[0];R!==void 0&&(w.stride=parseInt(R.getAttribute(\"stride\")));break}}return w}function $e(S){const w={};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];A.nodeType===1&&(w[A.getAttribute(\"semantic\")]=o(A.getAttribute(\"source\")))}return w}function Tt(S){const w={type:S.nodeName,material:S.getAttribute(\"material\"),count:parseInt(S.getAttribute(\"count\")),inputs:{},stride:0,hasUV:!1};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"input\":const se=o(R.getAttribute(\"source\")),he=R.getAttribute(\"semantic\"),Oe=parseInt(R.getAttribute(\"offset\")),Re=parseInt(R.getAttribute(\"set\")),Be=Re>0?he+Re:he;w.inputs[Be]={id:se,offset:Oe},w.stride=Math.max(w.stride,Oe+1),he===\"TEXCOORD\"&&(w.hasUV=!0);break;case\"vcount\":w.vcount=r(R.textContent);break;case\"p\":w.p=r(R.textContent);break}}return w}function at(S){const w={};for(let L=0;L<S.length;L++){const A=S[L];w[A.type]===void 0&&(w[A.type]=[]),w[A.type].push(A)}return w}function wt(S){let w=0;for(let L=0,A=S.length;L<A;L++)S[L].hasUV===!0&&w++;w>0&&w<S.length&&(S.uvsNeedsFix=!0)}function et(S){const w={},L=S.sources,A=S.vertices,R=S.primitives;if(R.length===0)return{};const se=at(R);for(const he in se){const Oe=se[he];wt(Oe),w[he]=At(Oe,L,A)}return w}function At(S,w,L){const A={},R={array:[],stride:0},se={array:[],stride:0},he={array:[],stride:0},Oe={array:[],stride:0},Re={array:[],stride:0},Be={array:[],stride:4},Ge={array:[],stride:4},Me=new Xe,qe=[];let ze=0;for(let Ye=0;Ye<S.length;Ye++){const We=S[Ye],Dt=We.inputs;let St=0;switch(We.type){case\"lines\":case\"linestrips\":St=We.count*2;break;case\"triangles\":St=We.count*3;break;case\"polylist\":for(let xt=0;xt<We.count;xt++){const vt=We.vcount[xt];switch(vt){case 3:St+=3;break;case 4:St+=6;break;default:St+=(vt-2)*3;break}}break;default:console.warn(\"THREE.ColladaLoader: Unknow primitive type:\",We.type)}Me.addGroup(ze,St,Ye),ze+=St,We.material&&qe.push(We.material);for(const xt in Dt){const vt=Dt[xt];switch(xt){case\"VERTEX\":for(const ci in L){const vn=L[ci];switch(ci){case\"POSITION\":const js=R.array.length;if(_t(We,w[vn],vt.offset,R.array),R.stride=w[vn].stride,w.skinWeights&&w.skinIndices&&(_t(We,w.skinIndices,vt.offset,Be.array),_t(We,w.skinWeights,vt.offset,Ge.array)),We.hasUV===!1&&S.uvsNeedsFix===!0){const eg=(R.array.length-js)/R.stride;for(let vh=0;vh<eg;vh++)he.array.push(0,0)}break;case\"NORMAL\":_t(We,w[vn],vt.offset,se.array),se.stride=w[vn].stride;break;case\"COLOR\":_t(We,w[vn],vt.offset,Re.array),Re.stride=w[vn].stride;break;case\"TEXCOORD\":_t(We,w[vn],vt.offset,he.array),he.stride=w[vn].stride;break;case\"TEXCOORD1\":_t(We,w[vn],vt.offset,Oe.array),he.stride=w[vn].stride;break;default:console.warn('THREE.ColladaLoader: Semantic \"%s\" not handled in geometry build process.',ci)}}break;case\"NORMAL\":_t(We,w[vt.id],vt.offset,se.array),se.stride=w[vt.id].stride;break;case\"COLOR\":_t(We,w[vt.id],vt.offset,Re.array,!0),Re.stride=w[vt.id].stride;break;case\"TEXCOORD\":_t(We,w[vt.id],vt.offset,he.array),he.stride=w[vt.id].stride;break;case\"TEXCOORD1\":_t(We,w[vt.id],vt.offset,Oe.array),Oe.stride=w[vt.id].stride;break}}}return R.array.length>0&&Me.setAttribute(\"position\",new Ce(R.array,R.stride)),se.array.length>0&&Me.setAttribute(\"normal\",new Ce(se.array,se.stride)),Re.array.length>0&&Me.setAttribute(\"color\",new Ce(Re.array,Re.stride)),he.array.length>0&&Me.setAttribute(\"uv\",new Ce(he.array,he.stride)),Oe.array.length>0&&Me.setAttribute(\"uv2\",new Ce(Oe.array,Oe.stride)),Be.array.length>0&&Me.setAttribute(\"skinIndex\",new Ce(Be.array,Be.stride)),Ge.array.length>0&&Me.setAttribute(\"skinWeight\",new Ce(Ge.array,Ge.stride)),A.data=Me,A.type=S[0].type,A.materialKeys=qe,A}function _t(S,w,L,A,R=!1){const se=S.p,he=S.stride,Oe=S.vcount;function Re(Me){let qe=se[Me+L]*Ge;const ze=qe+Ge;for(;qe<ze;qe++)A.push(Be[qe]);if(R){const Ye=A.length-Ge-1;ea.setRGB(A[Ye+0],A[Ye+1],A[Ye+2]).convertSRGBToLinear(),A[Ye+0]=ea.r,A[Ye+1]=ea.g,A[Ye+2]=ea.b}}const Be=w.array,Ge=w.stride;if(S.vcount!==void 0){let Me=0;for(let qe=0,ze=Oe.length;qe<ze;qe++){const Ye=Oe[qe];if(Ye===4){const We=Me+he*0,Dt=Me+he*1,St=Me+he*2,xt=Me+he*3;Re(We),Re(Dt),Re(xt),Re(Dt),Re(St),Re(xt)}else if(Ye===3){const We=Me+he*0,Dt=Me+he*1,St=Me+he*2;Re(We),Re(Dt),Re(St)}else if(Ye>4)for(let We=1,Dt=Ye-2;We<=Dt;We++){const St=Me+he*0,xt=Me+he*We,vt=Me+he*(We+1);Re(St),Re(xt),Re(vt)}Me+=he*Ye}}else for(let Me=0,qe=se.length;Me<qe;Me+=he)Re(Me)}function Vn(S){return m(Ke.geometries[S],et)}function cn(S){const w={name:S.getAttribute(\"name\")||\"\",joints:{},links:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"technique_common\":kl(A,w);break}}Ke.kinematicsModels[S.getAttribute(\"id\")]=w}function Jo(S){return S.build!==void 0?S.build:S}function Nl(S){return m(Ke.kinematicsModels[S],Jo)}function kl(S,w){for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"joint\":w.joints[A.getAttribute(\"sid\")]=Ol(A);break;case\"link\":w.links.push($(A));break}}}function Ol(S){let w;for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"prismatic\":case\"revolute\":w=N(A);break}}return w}function N(S){const w={sid:S.getAttribute(\"sid\"),name:S.getAttribute(\"name\")||\"\",axis:new I,limits:{min:0,max:0},type:S.nodeName,static:!1,zeroPosition:0,middlePosition:0};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"axis\":const R=s(A.textContent);w.axis.fromArray(R);break;case\"limits\":const se=A.getElementsByTagName(\"max\")[0],he=A.getElementsByTagName(\"min\")[0];w.limits.max=parseFloat(se.textContent),w.limits.min=parseFloat(he.textContent);break}}return w.limits.min>=w.limits.max&&(w.static=!0),w.middlePosition=(w.limits.min+w.limits.max)/2,w}function $(S){const w={sid:S.getAttribute(\"sid\"),name:S.getAttribute(\"name\")||\"\",attachments:[],transforms:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"attachment_full\":w.attachments.push(le(A));break;case\"matrix\":case\"translate\":case\"rotate\":w.transforms.push(te(A));break}}return w}function le(S){const w={joint:S.getAttribute(\"joint\").split(\"/\").pop(),transforms:[],links:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"link\":w.links.push($(A));break;case\"matrix\":case\"translate\":case\"rotate\":w.transforms.push(te(A));break}}return w}function te(S){const w={type:S.nodeName},L=s(S.textContent);switch(w.type){case\"matrix\":w.obj=new Ne,w.obj.fromArray(L).transpose();break;case\"translate\":w.obj=new I,w.obj.fromArray(L);break;case\"rotate\":w.obj=new I,w.obj.fromArray(L),w.angle=nn.degToRad(L[3]);break}return w}function pe(S){const w={name:S.getAttribute(\"name\")||\"\",rigidBodies:{}};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"rigid_body\":w.rigidBodies[A.getAttribute(\"name\")]={},Je(A,w.rigidBodies[A.getAttribute(\"name\")]);break}}Ke.physicsModels[S.getAttribute(\"id\")]=w}function Je(S,w){for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"technique_common\":Qe(A,w);break}}}function Qe(S,w){for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"inertia\":w.inertia=s(A.textContent);break;case\"mass\":w.mass=s(A.textContent)[0];break}}}function nt(S){const w={bindJointAxis:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"bind_joint_axis\":w.bindJointAxis.push(tt(A));break}}Ke.kinematicsScenes[o(S.getAttribute(\"url\"))]=w}function tt(S){const w={target:S.getAttribute(\"target\").split(\"/\").pop()};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"axis\":const R=A.getElementsByTagName(\"param\")[0];w.axis=R.textContent;const se=w.axis.split(\"inst_\").pop().split(\"axis\")[0];w.jointIndex=se.substring(0,se.length-1);break}}return w}function bt(S){return S.build!==void 0?S.build:S}function ht(S){return m(Ke.kinematicsScenes[S],bt)}function ft(){const S=Object.keys(Ke.kinematicsModels)[0],w=Object.keys(Ke.kinematicsScenes)[0],L=Object.keys(Ke.visualScenes)[0];if(S===void 0||w===void 0)return;const A=Nl(S),R=ht(w),se=$o(L),he=R.bindJointAxis,Oe={};for(let Ge=0,Me=he.length;Ge<Me;Ge++){const qe=he[Ge],ze=Kt.querySelector('[sid=\"'+qe.target+'\"]');if(ze){const Ye=ze.parentElement;Re(qe.jointIndex,Ye)}}function Re(Ge,Me){const qe=Me.getAttribute(\"name\"),ze=A.joints[Ge];se.traverse(function(Ye){Ye.name===qe&&(Oe[Ge]={object:Ye,transforms:Lt(Me),joint:ze,position:ze.zeroPosition})})}const Be=new Ne;xh={joints:A&&A.joints,getJointValue:function(Ge){const Me=Oe[Ge];if(Me)return Me.position;console.warn(\"THREE.ColladaLoader: Joint \"+Ge+\" doesn't exist.\")},setJointValue:function(Ge,Me){const qe=Oe[Ge];if(qe){const ze=qe.joint;if(Me>ze.limits.max||Me<ze.limits.min)console.warn(\"THREE.ColladaLoader: Joint \"+Ge+\" value \"+Me+\" outside of limits (min: \"+ze.limits.min+\", max: \"+ze.limits.max+\").\");else if(ze.static)console.warn(\"THREE.ColladaLoader: Joint \"+Ge+\" is static.\");else{const Ye=qe.object,We=ze.axis,Dt=qe.transforms;jt.identity();for(let St=0;St<Dt.length;St++){const xt=Dt[St];if(xt.sid&&xt.sid.indexOf(Ge)!==-1)switch(ze.type){case\"revolute\":jt.multiply(Be.makeRotationAxis(We,nn.degToRad(Me)));break;case\"prismatic\":jt.multiply(Be.makeTranslation(We.x*Me,We.y*Me,We.z*Me));break;default:console.warn(\"THREE.ColladaLoader: Unknown joint type: \"+ze.type);break}else switch(xt.type){case\"matrix\":jt.multiply(xt.obj);break;case\"translate\":jt.multiply(Be.makeTranslation(xt.obj.x,xt.obj.y,xt.obj.z));break;case\"scale\":jt.scale(xt.obj);break;case\"rotate\":jt.multiply(Be.makeRotationAxis(xt.obj,xt.angle));break}}Ye.matrix.copy(jt),Ye.matrix.decompose(Ye.position,Ye.quaternion,Ye.scale),Oe[Ge].position=Me}}else console.log(\"THREE.ColladaLoader: \"+Ge+\" does not exist.\")}}}function Lt(S){const w=[],L=Kt.querySelector('[id=\"'+S.id+'\"]');for(let A=0;A<L.childNodes.length;A++){const R=L.childNodes[A];if(R.nodeType!==1)continue;let se,he;switch(R.nodeName){case\"matrix\":se=s(R.textContent);const Oe=new Ne().fromArray(se).transpose();w.push({sid:R.getAttribute(\"sid\"),type:R.nodeName,obj:Oe});break;case\"translate\":case\"scale\":se=s(R.textContent),he=new I().fromArray(se),w.push({sid:R.getAttribute(\"sid\"),type:R.nodeName,obj:he});break;case\"rotate\":se=s(R.textContent),he=new I().fromArray(se);const Re=nn.degToRad(se[3]);w.push({sid:R.getAttribute(\"sid\"),type:R.nodeName,obj:he,angle:Re});break}}return w}function li(S){const w=S.getElementsByTagName(\"node\");for(let L=0;L<w.length;L++){const A=w[L];A.hasAttribute(\"id\")===!1&&A.setAttribute(\"id\",l())}}const jt=new Ne,Mn=new I;function yn(S){const w={name:S.getAttribute(\"name\")||\"\",type:S.getAttribute(\"type\"),id:S.getAttribute(\"id\"),sid:S.getAttribute(\"sid\"),matrix:new Ne,nodes:[],instanceCameras:[],instanceControllers:[],instanceLights:[],instanceGeometries:[],instanceNodes:[],transforms:{}};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType!==1)continue;let R;switch(A.nodeName){case\"node\":w.nodes.push(A.getAttribute(\"id\")),yn(A);break;case\"instance_camera\":w.instanceCameras.push(o(A.getAttribute(\"url\")));break;case\"instance_controller\":w.instanceControllers.push(yt(A));break;case\"instance_light\":w.instanceLights.push(o(A.getAttribute(\"url\")));break;case\"instance_geometry\":w.instanceGeometries.push(yt(A));break;case\"instance_node\":w.instanceNodes.push(o(A.getAttribute(\"url\")));break;case\"matrix\":R=s(A.textContent),w.matrix.multiply(jt.fromArray(R).transpose()),w.transforms[A.getAttribute(\"sid\")]=A.nodeName;break;case\"translate\":R=s(A.textContent),Mn.fromArray(R),w.matrix.multiply(jt.makeTranslation(Mn.x,Mn.y,Mn.z)),w.transforms[A.getAttribute(\"sid\")]=A.nodeName;break;case\"rotate\":R=s(A.textContent);const se=nn.degToRad(R[3]);w.matrix.multiply(jt.makeRotationAxis(Mn.fromArray(R),se)),w.transforms[A.getAttribute(\"sid\")]=A.nodeName;break;case\"scale\":R=s(A.textContent),w.matrix.scale(Mn.fromArray(R)),w.transforms[A.getAttribute(\"sid\")]=A.nodeName;break;case\"extra\":break;default:console.log(A)}}return Qt(w.id)?console.warn(\"THREE.ColladaLoader: There is already a node with ID %s. Exclude current node from further processing.\",w.id):Ke.nodes[w.id]=w,w}function yt(S){const w={id:o(S.getAttribute(\"url\")),materials:{},skeletons:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];switch(A.nodeName){case\"bind_material\":const R=A.getElementsByTagName(\"instance_material\");for(let se=0;se<R.length;se++){const he=R[se],Oe=he.getAttribute(\"symbol\"),Re=he.getAttribute(\"target\");w.materials[Oe]=o(Re)}break;case\"skeleton\":w.skeletons.push(o(A.textContent));break}}return w}function Ii(S,w){const L=[],A=[];let R,se,he;for(R=0;R<S.length;R++){const Be=S[R];let Ge;if(Qt(Be))Ge=Cn(Be),Pt(Ge,w,L);else if(eo(Be)){const qe=Ke.visualScenes[Be].children;for(let ze=0;ze<qe.length;ze++){const Ye=qe[ze];if(Ye.type===\"JOINT\"){const We=Cn(Ye.id);Pt(We,w,L)}}}else console.error(\"THREE.ColladaLoader: Unable to find root bone of skeleton with ID:\",Be)}for(R=0;R<w.length;R++)for(se=0;se<L.length;se++)if(he=L[se],he.bone.name===w[R].name){A[R]=he,he.processed=!0;break}for(R=0;R<L.length;R++)he=L[R],he.processed===!1&&(A.push(he),he.processed=!0);const Oe=[],Re=[];for(R=0;R<A.length;R++)he=A[R],Oe.push(he.bone),Re.push(he.boneInverse);return new Gs(Oe,Re)}function Pt(S,w,L){S.traverse(function(A){if(A.isBone===!0){let R;for(let se=0;se<w.length;se++){const he=w[se];if(he.name===A.name){R=he.boneInverse;break}}R===void 0&&(R=new Ne),L.push({bone:A,boneInverse:R,processed:!1})}})}function xn(S){const w=[],L=S.matrix,A=S.nodes,R=S.type,se=S.instanceCameras,he=S.instanceControllers,Oe=S.instanceLights,Re=S.instanceGeometries,Be=S.instanceNodes;for(let Me=0,qe=A.length;Me<qe;Me++)w.push(Cn(A[Me]));for(let Me=0,qe=se.length;Me<qe;Me++){const ze=ne(se[Me]);ze!==null&&w.push(ze.clone())}for(let Me=0,qe=he.length;Me<qe;Me++){const ze=he[Me],Ye=re(ze.id),We=Vn(Ye.id),Dt=Xs(We,ze.materials),St=ze.skeletons,xt=Ye.skin.joints,vt=Ii(St,xt);for(let ci=0,vn=Dt.length;ci<vn;ci++){const js=Dt[ci];js.isSkinnedMesh&&(js.bind(vt,Ye.skin.bindMatrix),js.normalizeSkinWeights()),w.push(js)}}for(let Me=0,qe=Oe.length;Me<qe;Me++){const ze=J(Oe[Me]);ze!==null&&w.push(ze.clone())}for(let Me=0,qe=Re.length;Me<qe;Me++){const ze=Re[Me],Ye=Vn(ze.id),We=Xs(Ye,ze.materials);for(let Dt=0,St=We.length;Dt<St;Dt++)w.push(We[Dt])}for(let Me=0,qe=Be.length;Me<qe;Me++)w.push(Cn(Be[Me]).clone());let Ge;if(A.length===0&&w.length===1)Ge=w[0];else{Ge=R===\"JOINT\"?new Ds:new pn;for(let Me=0;Me<w.length;Me++)Ge.add(w[Me])}return Ge.name=R===\"JOINT\"?S.sid:S.name,Ge.matrix.copy(L),Ge.matrix.decompose(Ge.position,Ge.quaternion,Ge.scale),Ge}const Zn=new ln({color:16711935});function os(S,w){const L=[];for(let A=0,R=S.length;A<R;A++){const se=w[S[A]];se===void 0?(console.warn(\"THREE.ColladaLoader: Material with key %s not found. Apply fallback material.\",S[A]),L.push(Zn)):L.push(je(se))}return L}function Xs(S,w){const L=[];for(const A in S){const R=S[A],se=os(R.materialKeys,w);se.length===0&&(A===\"lines\"||A===\"linestrips\"?se.push(new qt):se.push(new ti));const he=R.data.attributes.skinIndex!==void 0,Oe=se.length===1?se[0]:se;let Re;switch(A){case\"lines\":Re=new wn(R.data,Oe);break;case\"linestrips\":Re=new jn(R.data,Oe);break;case\"triangles\":case\"polylist\":he?Re=new Wo(R.data,Oe):Re=new Rt(R.data,Oe);break}L.push(Re)}return L}function Qt(S){return Ke.nodes[S]!==void 0}function Cn(S){return m(Ke.nodes[S],xn)}function Qr(S){const w={name:S.getAttribute(\"name\"),children:[]};li(S);const L=n(S,\"node\");for(let A=0;A<L.length;A++)w.children.push(yn(L[A]));Ke.visualScenes[S.getAttribute(\"id\")]=w}function rn(S){const w=new pn;w.name=S.name;const L=S.children;for(let A=0;A<L.length;A++){const R=L[A];w.add(Cn(R.id))}return w}function eo(S){return Ke.visualScenes[S]!==void 0}function $o(S){return m(Ke.visualScenes[S],rn)}function Qo(S){const w=n(S,\"instance_visual_scene\")[0];return $o(o(w.getAttribute(\"url\")))}function Km(){const S=Ke.clips;if(c(S)===!0){if(c(Ke.animations)===!1){const w=[];for(const L in Ke.animations){const A=v(L);for(let R=0,se=A.length;R<se;R++)w.push(A[R])}ta.push(new Ai(\"default\",-1,w))}}else for(const w in S)ta.push(Y(w))}function Jm(S){let w=\"\";const L=[S];for(;L.length;){const A=L.shift();A.nodeType===Node.TEXT_NODE?w+=A.textContent:(w+=`\n`,L.push.apply(L,A.childNodes))}return w.trim()}if(e.length===0)return{scene:new El};const mh=new DOMParser().parseFromString(e,\"application/xml\"),Kt=n(mh,\"COLLADA\")[0],Bl=mh.getElementsByTagName(\"parsererror\")[0];if(Bl!==void 0){const S=n(Bl,\"div\")[0];let w;return S?w=S.textContent:w=Jm(Bl),console.error(`THREE.ColladaLoader: Failed to parse collada file.\n`,w),null}const $m=Kt.getAttribute(\"version\");console.log(\"THREE.ColladaLoader: File version\",$m);const gh=h(n(Kt,\"asset\")[0]),yh=new zs(this.manager);yh.setPath(this.resourcePath||t).setCrossOrigin(this.crossOrigin);let zl;xu&&(zl=new xu(this.manager),zl.setPath(this.resourcePath||t));const ea=new we,ta=[];let xh={},Qm=0;const Ke={animations:{},clips:{},controllers:{},images:{},effects:{},materials:{},cameras:{},lights:{},geometries:{},nodes:{},visualScenes:{},kinematicsModels:{},physicsModels:{},kinematicsScenes:{}};d(Kt,\"library_animations\",\"animation\",g),d(Kt,\"library_animation_clips\",\"animation_clip\",O),d(Kt,\"library_controllers\",\"controller\",W),d(Kt,\"library_images\",\"image\",H),d(Kt,\"library_effects\",\"effect\",Fe),d(Kt,\"library_materials\",\"material\",_e),d(Kt,\"library_cameras\",\"camera\",D),d(Kt,\"library_lights\",\"light\",de),d(Kt,\"library_geometries\",\"geometry\",Pe),d(Kt,\"library_nodes\",\"node\",yn),d(Kt,\"library_visual_scenes\",\"visual_scene\",Qr),d(Kt,\"library_kinematics_models\",\"kinematics_model\",cn),d(Kt,\"library_physics_models\",\"physics_model\",pe),d(Kt,\"scene\",\"instance_kinematics_scene\",nt),p(Ke.animations,b),p(Ke.clips,j),p(Ke.controllers,ie),p(Ke.images,ge),p(Ke.effects,P),p(Ke.materials,Ie),p(Ke.cameras,B),p(Ke.lights,ye),p(Ke.geometries,et),p(Ke.visualScenes,rn),Km(),ft();const na=Qo(n(Kt,\"scene\")[0]);return na.animations=ta,gh.upAxis===\"Z_UP\"&&(console.warn(\"THREE.ColladaLoader: You are loading an asset with a Z-UP coordinate system. The loader just rotates the asset to transform it into Y-UP. The vertex data are not converted, see #24289.\"),na.quaternion.setFromEuler(new Nn(-Math.PI/2,0,0))),na.scale.multiplyScalar(gh.unit),{get animations(){return console.warn(\"THREE.ColladaLoader: Please access animations over scene.animations now.\"),ta},kinematics:xh,library:Ke,scene:na}}}class MM extends Xt{constructor(e){super(e),this.dracoLoader=null,this.ktx2Loader=null,this.meshoptDecoder=null,this.pluginCallbacks=[],this.register(function(t){return new CM(t)}),this.register(function(t){return new NM(t)}),this.register(function(t){return new kM(t)}),this.register(function(t){return new RM(t)}),this.register(function(t){return new IM(t)}),this.register(function(t){return new PM(t)}),this.register(function(t){return new DM(t)}),this.register(function(t){return new EM(t)}),this.register(function(t){return new FM(t)}),this.register(function(t){return new LM(t)}),this.register(function(t){return new TM(t)}),this.register(function(t){return new OM(t)})}load(e,t,n,i){const s=this;let r;this.resourcePath!==\"\"?r=this.resourcePath:this.path!==\"\"?r=this.path:r=sn.extractUrlBase(e),this.manager.itemStart(e);const o=function(c){i?i(c):console.error(c),s.manager.itemError(e),s.manager.itemEnd(e)},l=new $t(this.manager);l.setPath(this.path),l.setResponseType(\"arraybuffer\"),l.setRequestHeader(this.requestHeader),l.setWithCredentials(this.withCredentials),l.load(e,function(c){try{s.parse(c,r,function(h){t(h),s.manager.itemEnd(e)},o)}catch(h){o(h)}},n,o)}setDRACOLoader(e){return this.dracoLoader=e,this}setDDSLoader(){throw new Error('THREE.GLTFLoader: \"MSFT_texture_dds\" no longer supported. Please update to \"KHR_texture_basisu\".')}setKTX2Loader(e){return this.ktx2Loader=e,this}setMeshoptDecoder(e){return this.meshoptDecoder=e,this}register(e){return this.pluginCallbacks.indexOf(e)===-1&&this.pluginCallbacks.push(e),this}unregister(e){return this.pluginCallbacks.indexOf(e)!==-1&&this.pluginCallbacks.splice(this.pluginCallbacks.indexOf(e),1),this}parse(e,t,n,i){let s;const r={},o={};if(typeof e==\"string\")s=e;else if(sn.decodeText(new Uint8Array(e,0,4))===jm){try{r[ct.KHR_BINARY_GLTF]=new BM(e)}catch(u){i&&i(u);return}s=r[ct.KHR_BINARY_GLTF].content}else s=sn.decodeText(new Uint8Array(e));const l=JSON.parse(s);if(l.asset===void 0||l.asset.version[0]<2){i&&i(new Error(\"THREE.GLTFLoader: Unsupported asset. glTF versions >=2.0 are supported.\"));return}const c=new JM(l,{path:t||this.resourcePath||\"\",crossOrigin:this.crossOrigin,requestHeader:this.requestHeader,manager:this.manager,ktx2Loader:this.ktx2Loader,meshoptDecoder:this.meshoptDecoder});c.fileLoader.setRequestHeader(this.requestHeader);for(let h=0;h<this.pluginCallbacks.length;h++){const u=this.pluginCallbacks[h](c);o[u.name]=u,r[u.name]=!0}if(l.extensionsUsed)for(let h=0;h<l.extensionsUsed.length;++h){const u=l.extensionsUsed[h],f=l.extensionsRequired||[];switch(u){case ct.KHR_MATERIALS_UNLIT:r[u]=new AM;break;case ct.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS:r[u]=new GM;break;case ct.KHR_DRACO_MESH_COMPRESSION:r[u]=new zM(l,this.dracoLoader);break;case ct.KHR_TEXTURE_TRANSFORM:r[u]=new UM;break;case ct.KHR_MESH_QUANTIZATION:r[u]=new VM;break;default:f.indexOf(u)>=0&&o[u]===void 0&&console.warn('THREE.GLTFLoader: Unknown extension \"'+u+'\".')}}c.setExtensions(r),c.setPlugins(o),c.parse(n,i)}parseAsync(e,t){const n=this;return new Promise(function(i,s){n.parse(e,t,i,s)})}}function SM(){let a={};return{get:function(e){return a[e]},add:function(e,t){a[e]=t},remove:function(e){delete a[e]},removeAll:function(){a={}}}}const ct={KHR_BINARY_GLTF:\"KHR_binary_glTF\",KHR_DRACO_MESH_COMPRESSION:\"KHR_draco_mesh_compression\",KHR_LIGHTS_PUNCTUAL:\"KHR_lights_punctual\",KHR_MATERIALS_CLEARCOAT:\"KHR_materials_clearcoat\",KHR_MATERIALS_IOR:\"KHR_materials_ior\",KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS:\"KHR_materials_pbrSpecularGlossiness\",KHR_MATERIALS_SHEEN:\"KHR_materials_sheen\",KHR_MATERIALS_SPECULAR:\"KHR_materials_specular\",KHR_MATERIALS_TRANSMISSION:\"KHR_materials_transmission\",KHR_MATERIALS_IRIDESCENCE:\"KHR_materials_iridescence\",KHR_MATERIALS_UNLIT:\"KHR_materials_unlit\",KHR_MATERIALS_VOLUME:\"KHR_materials_volume\",KHR_TEXTURE_BASISU:\"KHR_texture_basisu\",KHR_TEXTURE_TRANSFORM:\"KHR_texture_transform\",KHR_MESH_QUANTIZATION:\"KHR_mesh_quantization\",KHR_MATERIALS_EMISSIVE_STRENGTH:\"KHR_materials_emissive_strength\",EXT_TEXTURE_WEBP:\"EXT_texture_webp\",EXT_MESHOPT_COMPRESSION:\"EXT_meshopt_compression\"};class TM{constructor(e){this.parser=e,this.name=ct.KHR_LIGHTS_PUNCTUAL,this.cache={refs:{},uses:{}}}_markDefs(){const e=this.parser,t=this.parser.json.nodes||[];for(let n=0,i=t.length;n<i;n++){const s=t[n];s.extensions&&s.extensions[this.name]&&s.extensions[this.name].light!==void 0&&e._addNodeRef(this.cache,s.extensions[this.name].light)}}_loadLight(e){const t=this.parser,n=\"light:\"+e;let i=t.cache.get(n);if(i)return i;const s=t.json,l=((s.extensions&&s.extensions[this.name]||{}).lights||[])[e];let c;const h=new we(16777215);l.color!==void 0&&h.fromArray(l.color);const u=l.range!==void 0?l.range:0;switch(l.type){case\"directional\":c=new Wr(h),c.target.position.set(0,0,-1),c.add(c.target);break;case\"point\":c=new es(h),c.distance=u;break;case\"spot\":c=new qo(h),c.distance=u,l.spot=l.spot||{},l.spot.innerConeAngle=l.spot.innerConeAngle!==void 0?l.spot.innerConeAngle:0,l.spot.outerConeAngle=l.spot.outerConeAngle!==void 0?l.spot.outerConeAngle:Math.PI/4,c.angle=l.spot.outerConeAngle,c.penumbra=1-l.spot.innerConeAngle/l.spot.outerConeAngle,c.target.position.set(0,0,-1),c.add(c.target);break;default:throw new Error(\"THREE.GLTFLoader: Unexpected light type: \"+l.type)}return c.position.set(0,0,0),c.decay=2,l.intensity!==void 0&&(c.intensity=l.intensity),c.name=t.createUniqueName(l.name||\"light_\"+e),i=Promise.resolve(c),t.cache.add(n,i),i}createNodeAttachment(e){const t=this,n=this.parser,s=n.json.nodes[e],o=(s.extensions&&s.extensions[this.name]||{}).light;return o===void 0?null:this._loadLight(o).then(function(l){return n._getNodeRef(t.cache,o,l)})}}class AM{constructor(){this.name=ct.KHR_MATERIALS_UNLIT}getMaterialType(){return ln}extendParams(e,t,n){const i=[];e.color=new we(1,1,1),e.opacity=1;const s=t.pbrMetallicRoughness;if(s){if(Array.isArray(s.baseColorFactor)){const r=s.baseColorFactor;e.color.fromArray(r),e.opacity=r[3]}s.baseColorTexture!==void 0&&i.push(n.assignTexture(e,\"map\",s.baseColorTexture,it))}return Promise.all(i)}}class EM{constructor(e){this.parser=e,this.name=ct.KHR_MATERIALS_EMISSIVE_STRENGTH}extendMaterialParams(e,t){const i=this.parser.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=i.extensions[this.name].emissiveStrength;return s!==void 0&&(t.emissiveIntensity=s),Promise.resolve()}}class CM{constructor(e){this.parser=e,this.name=ct.KHR_MATERIALS_CLEARCOAT}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:Ri}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];if(r.clearcoatFactor!==void 0&&(t.clearcoat=r.clearcoatFactor),r.clearcoatTexture!==void 0&&s.push(n.assignTexture(t,\"clearcoatMap\",r.clearcoatTexture)),r.clearcoatRoughnessFactor!==void 0&&(t.clearcoatRoughness=r.clearcoatRoughnessFactor),r.clearcoatRoughnessTexture!==void 0&&s.push(n.assignTexture(t,\"clearcoatRoughnessMap\",r.clearcoatRoughnessTexture)),r.clearcoatNormalTexture!==void 0&&(s.push(n.assignTexture(t,\"clearcoatNormalMap\",r.clearcoatNormalTexture)),r.clearcoatNormalTexture.scale!==void 0)){const o=r.clearcoatNormalTexture.scale;t.clearcoatNormalScale=new fe(o,o)}return Promise.all(s)}}class LM{constructor(e){this.parser=e,this.name=ct.KHR_MATERIALS_IRIDESCENCE}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:Ri}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];return r.iridescenceFactor!==void 0&&(t.iridescence=r.iridescenceFactor),r.iridescenceTexture!==void 0&&s.push(n.assignTexture(t,\"iridescenceMap\",r.iridescenceTexture)),r.iridescenceIor!==void 0&&(t.iridescenceIOR=r.iridescenceIor),t.iridescenceThicknessRange===void 0&&(t.iridescenceThicknessRange=[100,400]),r.iridescenceThicknessMinimum!==void 0&&(t.iridescenceThicknessRange[0]=r.iridescenceThicknessMinimum),r.iridescenceThicknessMaximum!==void 0&&(t.iridescenceThicknessRange[1]=r.iridescenceThicknessMaximum),r.iridescenceThicknessTexture!==void 0&&s.push(n.assignTexture(t,\"iridescenceThicknessMap\",r.iridescenceThicknessTexture)),Promise.all(s)}}class RM{constructor(e){this.parser=e,this.name=ct.KHR_MATERIALS_SHEEN}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:Ri}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[];t.sheenColor=new we(0,0,0),t.sheenRoughness=0,t.sheen=1;const r=i.extensions[this.name];return r.sheenColorFactor!==void 0&&t.sheenColor.fromArray(r.sheenColorFactor),r.sheenRoughnessFactor!==void 0&&(t.sheenRoughness=r.sheenRoughnessFactor),r.sheenColorTexture!==void 0&&s.push(n.assignTexture(t,\"sheenColorMap\",r.sheenColorTexture,it)),r.sheenRoughnessTexture!==void 0&&s.push(n.assignTexture(t,\"sheenRoughnessMap\",r.sheenRoughnessTexture)),Promise.all(s)}}class IM{constructor(e){this.parser=e,this.name=ct.KHR_MATERIALS_TRANSMISSION}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:Ri}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];return r.transmissionFactor!==void 0&&(t.transmission=r.transmissionFactor),r.transmissionTexture!==void 0&&s.push(n.assignTexture(t,\"transmissionMap\",r.transmissionTexture)),Promise.all(s)}}class PM{constructor(e){this.parser=e,this.name=ct.KHR_MATERIALS_VOLUME}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:Ri}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];t.thickness=r.thicknessFactor!==void 0?r.thicknessFactor:0,r.thicknessTexture!==void 0&&s.push(n.assignTexture(t,\"thicknessMap\",r.thicknessTexture)),t.attenuationDistance=r.attenuationDistance||0;const o=r.attenuationColor||[1,1,1];return t.attenuationColor=new we(o[0],o[1],o[2]),Promise.all(s)}}class DM{constructor(e){this.parser=e,this.name=ct.KHR_MATERIALS_IOR}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:Ri}extendMaterialParams(e,t){const i=this.parser.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=i.extensions[this.name];return t.ior=s.ior!==void 0?s.ior:1.5,Promise.resolve()}}class FM{constructor(e){this.parser=e,this.name=ct.KHR_MATERIALS_SPECULAR}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:Ri}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];t.specularIntensity=r.specularFactor!==void 0?r.specularFactor:1,r.specularTexture!==void 0&&s.push(n.assignTexture(t,\"specularIntensityMap\",r.specularTexture));const o=r.specularColorFactor||[1,1,1];return t.specularColor=new we(o[0],o[1],o[2]),r.specularColorTexture!==void 0&&s.push(n.assignTexture(t,\"specularColorMap\",r.specularColorTexture,it)),Promise.all(s)}}class NM{constructor(e){this.parser=e,this.name=ct.KHR_TEXTURE_BASISU}loadTexture(e){const t=this.parser,n=t.json,i=n.textures[e];if(!i.extensions||!i.extensions[this.name])return null;const s=i.extensions[this.name],r=t.options.ktx2Loader;if(!r){if(n.extensionsRequired&&n.extensionsRequired.indexOf(this.name)>=0)throw new Error(\"THREE.GLTFLoader: setKTX2Loader must be called before loading KTX2 textures\");return null}return t.loadTextureImage(e,s.source,r)}}class kM{constructor(e){this.parser=e,this.name=ct.EXT_TEXTURE_WEBP,this.isSupported=null}loadTexture(e){const t=this.name,n=this.parser,i=n.json,s=i.textures[e];if(!s.extensions||!s.extensions[t])return null;const r=s.extensions[t],o=i.images[r.source];let l=n.textureLoader;if(o.uri){const c=n.options.manager.getHandler(o.uri);c!==null&&(l=c)}return this.detectSupport().then(function(c){if(c)return n.loadTextureImage(e,r.source,l);if(i.extensionsRequired&&i.extensionsRequired.indexOf(t)>=0)throw new Error(\"THREE.GLTFLoader: WebP required by asset but unsupported.\");return n.loadTexture(e)})}detectSupport(){return this.isSupported||(this.isSupported=new Promise(function(e){const t=new Image;t.src=\"data:image/webp;base64,UklGRiIAAABXRUJQVlA4IBYAAAAwAQCdASoBAAEADsD+JaQAA3AAAAAA\",t.onload=t.onerror=function(){e(t.height===1)}})),this.isSupported}}class OM{constructor(e){this.name=ct.EXT_MESHOPT_COMPRESSION,this.parser=e}loadBufferView(e){const t=this.parser.json,n=t.bufferViews[e];if(n.extensions&&n.extensions[this.name]){const i=n.extensions[this.name],s=this.parser.getDependency(\"buffer\",i.buffer),r=this.parser.options.meshoptDecoder;if(!r||!r.supported){if(t.extensionsRequired&&t.extensionsRequired.indexOf(this.name)>=0)throw new Error(\"THREE.GLTFLoader: setMeshoptDecoder must be called before loading compressed files\");return null}return Promise.all([s,r.ready]).then(function(o){const l=i.byteOffset||0,c=i.byteLength||0,h=i.count,u=i.byteStride,f=new ArrayBuffer(h*u),d=new Uint8Array(o[0],l,c);return r.decodeGltfBuffer(new Uint8Array(f),h,u,d,i.mode,i.filter),f})}else return null}}const jm=\"glTF\",co=12,ed={JSON:1313821514,BIN:5130562};class BM{constructor(e){this.name=ct.KHR_BINARY_GLTF,this.content=null,this.body=null;const t=new DataView(e,0,co);if(this.header={magic:sn.decodeText(new Uint8Array(e.slice(0,4))),version:t.getUint32(4,!0),length:t.getUint32(8,!0)},this.header.magic!==jm)throw new Error(\"THREE.GLTFLoader: Unsupported glTF-Binary header.\");if(this.header.version<2)throw new Error(\"THREE.GLTFLoader: Legacy binary file detected.\");const n=this.header.length-co,i=new DataView(e,co);let s=0;for(;s<n;){const r=i.getUint32(s,!0);s+=4;const o=i.getUint32(s,!0);if(s+=4,o===ed.JSON){const l=new Uint8Array(e,co+s,r);this.content=sn.decodeText(l)}else if(o===ed.BIN){const l=co+s;this.body=e.slice(l,l+r)}s+=r}if(this.content===null)throw new Error(\"THREE.GLTFLoader: JSON content not found.\")}}class zM{constructor(e,t){if(!t)throw new Error(\"THREE.GLTFLoader: No DRACOLoader instance provided.\");this.name=ct.KHR_DRACO_MESH_COMPRESSION,this.json=e,this.dracoLoader=t,this.dracoLoader.preload()}decodePrimitive(e,t){const n=this.json,i=this.dracoLoader,s=e.extensions[this.name].bufferView,r=e.extensions[this.name].attributes,o={},l={},c={};for(const h in r){const u=_u[h]||h.toLowerCase();o[u]=r[h]}for(const h in e.attributes){const u=_u[h]||h.toLowerCase();if(r[h]!==void 0){const f=n.accessors[e.attributes[h]],d=Bo[f.componentType];c[u]=d,l[u]=f.normalized===!0}}return t.getDependency(\"bufferView\",s).then(function(h){return new Promise(function(u){i.decodeDracoFile(h,function(f){for(const d in f.attributes){const p=f.attributes[d],m=l[d];m!==void 0&&(p.normalized=m)}u(f)},o,c)})})}}class UM{constructor(){this.name=ct.KHR_TEXTURE_TRANSFORM}extendTexture(e,t){return t.texCoord!==void 0&&console.warn('THREE.GLTFLoader: Custom UV sets in \"'+this.name+'\" extension not yet supported.'),t.offset===void 0&&t.rotation===void 0&&t.scale===void 0||(e=e.clone(),t.offset!==void 0&&e.offset.fromArray(t.offset),t.rotation!==void 0&&(e.rotation=t.rotation),t.scale!==void 0&&e.repeat.fromArray(t.scale),e.needsUpdate=!0),e}}class vu extends Vs{constructor(e){super(),this.isGLTFSpecularGlossinessMaterial=!0;const t=[\"#ifdef USE_SPECULARMAP\",\"\tuniform sampler2D specularMap;\",\"#endif\"].join(`\n`),n=[\"#ifdef USE_GLOSSINESSMAP\",\"\tuniform sampler2D glossinessMap;\",\"#endif\"].join(`\n`),i=[\"vec3 specularFactor = specular;\",\"#ifdef USE_SPECULARMAP\",\"\tvec4 texelSpecular = texture2D( specularMap, vUv );\",\"\t// reads channel RGB, compatible with a glTF Specular-Glossiness (RGBA) texture\",\"\tspecularFactor *= texelSpecular.rgb;\",\"#endif\"].join(`\n`),s=[\"float glossinessFactor = glossiness;\",\"#ifdef USE_GLOSSINESSMAP\",\"\tvec4 texelGlossiness = texture2D( glossinessMap, vUv );\",\"\t// reads channel A, compatible with a glTF Specular-Glossiness (RGBA) texture\",\"\tglossinessFactor *= texelGlossiness.a;\",\"#endif\"].join(`\n`),r=[\"PhysicalMaterial material;\",\"material.diffuseColor = diffuseColor.rgb * ( 1. - max( specularFactor.r, max( specularFactor.g, specularFactor.b ) ) );\",\"vec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) );\",\"float geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z );\",\"material.roughness = max( 1.0 - glossinessFactor, 0.0525 ); // 0.0525 corresponds to the base mip of a 256 cubemap.\",\"material.roughness += geometryRoughness;\",\"material.roughness = min( material.roughness, 1.0 );\",\"material.specularColor = specularFactor;\"].join(`\n`),o={specular:{value:new we().setHex(16777215)},glossiness:{value:1},specularMap:{value:null},glossinessMap:{value:null}};this._extraUniforms=o,this.onBeforeCompile=function(l){for(const c in o)l.uniforms[c]=o[c];l.fragmentShader=l.fragmentShader.replace(\"uniform float roughness;\",\"uniform vec3 specular;\").replace(\"uniform float metalness;\",\"uniform float glossiness;\").replace(\"#include <roughnessmap_pars_fragment>\",t).replace(\"#include <metalnessmap_pars_fragment>\",n).replace(\"#include <roughnessmap_fragment>\",i).replace(\"#include <metalnessmap_fragment>\",s).replace(\"#include <lights_physical_fragment>\",r)},Object.defineProperties(this,{specular:{get:function(){return o.specular.value},set:function(l){o.specular.value=l}},specularMap:{get:function(){return o.specularMap.value},set:function(l){o.specularMap.value=l,l?this.defines.USE_SPECULARMAP=\"\":delete this.defines.USE_SPECULARMAP}},glossiness:{get:function(){return o.glossiness.value},set:function(l){o.glossiness.value=l}},glossinessMap:{get:function(){return o.glossinessMap.value},set:function(l){o.glossinessMap.value=l,l?(this.defines.USE_GLOSSINESSMAP=\"\",this.defines.USE_UV=\"\"):(delete this.defines.USE_GLOSSINESSMAP,delete this.defines.USE_UV)}}}),delete this.metalness,delete this.roughness,delete this.metalnessMap,delete this.roughnessMap,this.setValues(e)}copy(e){return super.copy(e),this.specularMap=e.specularMap,this.specular.copy(e.specular),this.glossinessMap=e.glossinessMap,this.glossiness=e.glossiness,delete this.metalness,delete this.roughness,delete this.metalnessMap,delete this.roughnessMap,this}}class GM{constructor(){this.name=ct.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS,this.specularGlossinessParams=[\"color\",\"map\",\"lightMap\",\"lightMapIntensity\",\"aoMap\",\"aoMapIntensity\",\"emissive\",\"emissiveIntensity\",\"emissiveMap\",\"bumpMap\",\"bumpScale\",\"normalMap\",\"normalMapType\",\"displacementMap\",\"displacementScale\",\"displacementBias\",\"specularMap\",\"specular\",\"glossinessMap\",\"glossiness\",\"alphaMap\",\"envMap\",\"envMapIntensity\"]}getMaterialType(){return vu}extendParams(e,t,n){const i=t.extensions[this.name];e.color=new we(1,1,1),e.opacity=1;const s=[];if(Array.isArray(i.diffuseFactor)){const r=i.diffuseFactor;e.color.fromArray(r),e.opacity=r[3]}if(i.diffuseTexture!==void 0&&s.push(n.assignTexture(e,\"map\",i.diffuseTexture,it)),e.emissive=new we(0,0,0),e.glossiness=i.glossinessFactor!==void 0?i.glossinessFactor:1,e.specular=new we(1,1,1),Array.isArray(i.specularFactor)&&e.specular.fromArray(i.specularFactor),i.specularGlossinessTexture!==void 0){const r=i.specularGlossinessTexture;s.push(n.assignTexture(e,\"glossinessMap\",r)),s.push(n.assignTexture(e,\"specularMap\",r,it))}return Promise.all(s)}createMaterial(e){const t=new vu(e);return t.fog=!0,t.color=e.color,t.map=e.map===void 0?null:e.map,t.lightMap=null,t.lightMapIntensity=1,t.aoMap=e.aoMap===void 0?null:e.aoMap,t.aoMapIntensity=1,t.emissive=e.emissive,t.emissiveIntensity=e.emissiveIntensity===void 0?1:e.emissiveIntensity,t.emissiveMap=e.emissiveMap===void 0?null:e.emissiveMap,t.bumpMap=e.bumpMap===void 0?null:e.bumpMap,t.bumpScale=1,t.normalMap=e.normalMap===void 0?null:e.normalMap,t.normalMapType=ns,e.normalScale&&(t.normalScale=e.normalScale),t.displacementMap=null,t.displacementScale=1,t.displacementBias=0,t.specularMap=e.specularMap===void 0?null:e.specularMap,t.specular=e.specular,t.glossinessMap=e.glossinessMap===void 0?null:e.glossinessMap,t.glossiness=e.glossiness,t.alphaMap=null,t.envMap=e.envMap===void 0?null:e.envMap,t.envMapIntensity=1,t}}class VM{constructor(){this.name=ct.KHR_MESH_QUANTIZATION}}class Ym extends Hr{constructor(e,t,n,i){super(e,t,n,i)}copySampleValue_(e){const t=this.resultBuffer,n=this.sampleValues,i=this.valueSize,s=e*i*3+i;for(let r=0;r!==i;r++)t[r]=n[s+r];return t}interpolate_(e,t,n,i){const s=this.resultBuffer,r=this.sampleValues,o=this.valueSize,l=o*2,c=o*3,h=i-t,u=(n-t)/h,f=u*u,d=f*u,p=e*c,m=p-c,g=-2*d+3*f,y=d-f,x=1-g,b=y-f+u;for(let v=0;v!==o;v++){const M=r[m+v+o],T=r[m+v+l]*h,C=r[p+v+o],_=r[p+v]*h;s[v]=x*M+b*T+g*C+y*_}return s}}const HM=new Bt;class WM extends Ym{interpolate_(e,t,n,i){const s=super.interpolate_(e,t,n,i);return HM.fromArray(s).normalize().toArray(s),s}}const gi={FLOAT:5126,FLOAT_MAT3:35675,FLOAT_MAT4:35676,FLOAT_VEC2:35664,FLOAT_VEC3:35665,FLOAT_VEC4:35666,LINEAR:9729,REPEAT:10497,SAMPLER_2D:35678,POINTS:0,LINES:1,LINE_LOOP:2,LINE_STRIP:3,TRIANGLES:4,TRIANGLE_STRIP:5,TRIANGLE_FAN:6,UNSIGNED_BYTE:5121,UNSIGNED_SHORT:5123},Bo={5120:Int8Array,5121:Uint8Array,5122:Int16Array,5123:Uint16Array,5125:Uint32Array,5126:Float32Array},td={9728:Gt,9729:Ft,9984:Mo,9985:yl,9986:So,9987:oi},nd={33071:Zt,33648:wr,10497:fn},id={SCALAR:1,VEC2:2,VEC3:3,VEC4:4,MAT2:4,MAT3:9,MAT4:16},_u={POSITION:\"position\",NORMAL:\"normal\",TANGENT:\"tangent\",TEXCOORD_0:\"uv\",TEXCOORD_1:\"uv2\",COLOR_0:\"color\",WEIGHTS_0:\"skinWeight\",JOINTS_0:\"skinIndex\"},Gi={scale:\"scale\",translation:\"position\",rotation:\"quaternion\",weights:\"morphTargetInfluences\"},qM={CUBICSPLINE:void 0,LINEAR:Is,STEP:Sr},Tc={OPAQUE:\"OPAQUE\",MASK:\"MASK\",BLEND:\"BLEND\"};function XM(a){return a.DefaultMaterial===void 0&&(a.DefaultMaterial=new Vs({color:16777215,emissive:0,metalness:1,roughness:1,transparent:!1,depthTest:!0,side:bi})),a.DefaultMaterial}function uo(a,e,t){for(const n in t.extensions)a[n]===void 0&&(e.userData.gltfExtensions=e.userData.gltfExtensions||{},e.userData.gltfExtensions[n]=t.extensions[n])}function xs(a,e){e.extras!==void 0&&(typeof e.extras==\"object\"?Object.assign(a.userData,e.extras):console.warn(\"THREE.GLTFLoader: Ignoring primitive type .extras, \"+e.extras))}function jM(a,e,t){let n=!1,i=!1,s=!1;for(let c=0,h=e.length;c<h;c++){const u=e[c];if(u.POSITION!==void 0&&(n=!0),u.NORMAL!==void 0&&(i=!0),u.COLOR_0!==void 0&&(s=!0),n&&i&&s)break}if(!n&&!i&&!s)return Promise.resolve(a);const r=[],o=[],l=[];for(let c=0,h=e.length;c<h;c++){const u=e[c];if(n){const f=u.POSITION!==void 0?t.getDependency(\"accessor\",u.POSITION):a.attributes.position;r.push(f)}if(i){const f=u.NORMAL!==void 0?t.getDependency(\"accessor\",u.NORMAL):a.attributes.normal;o.push(f)}if(s){const f=u.COLOR_0!==void 0?t.getDependency(\"accessor\",u.COLOR_0):a.attributes.color;l.push(f)}}return Promise.all([Promise.all(r),Promise.all(o),Promise.all(l)]).then(function(c){const h=c[0],u=c[1],f=c[2];return n&&(a.morphAttributes.position=h),i&&(a.morphAttributes.normal=u),s&&(a.morphAttributes.color=f),a.morphTargetsRelative=!0,a})}function YM(a,e){if(a.updateMorphTargets(),e.weights!==void 0)for(let t=0,n=e.weights.length;t<n;t++)a.morphTargetInfluences[t]=e.weights[t];if(e.extras&&Array.isArray(e.extras.targetNames)){const t=e.extras.targetNames;if(a.morphTargetInfluences.length===t.length){a.morphTargetDictionary={};for(let n=0,i=t.length;n<i;n++)a.morphTargetDictionary[t[n]]=n}else console.warn(\"THREE.GLTFLoader: Invalid extras.targetNames length. Ignoring names.\")}}function ZM(a){const e=a.extensions&&a.extensions[ct.KHR_DRACO_MESH_COMPRESSION];let t;return e?t=\"draco:\"+e.bufferView+\":\"+e.indices+\":\"+sd(e.attributes):t=a.indices+\":\"+sd(a.attributes)+\":\"+a.mode,t}function sd(a){let e=\"\";const t=Object.keys(a).sort();for(let n=0,i=t.length;n<i;n++)e+=t[n]+\":\"+a[t[n]]+\";\";return e}function bu(a){switch(a){case Int8Array:return 1/127;case Uint8Array:return 1/255;case Int16Array:return 1/32767;case Uint16Array:return 1/65535;default:throw new Error(\"THREE.GLTFLoader: Unsupported normalized accessor component type.\")}}function KM(a){return a.search(/\\.jpe?g($|\\?)/i)>0||a.search(/^data\\:image\\/jpeg/)===0?\"image/jpeg\":a.search(/\\.webp($|\\?)/i)>0||a.search(/^data\\:image\\/webp/)===0?\"image/webp\":\"image/png\"}class JM{constructor(e={},t={}){this.json=e,this.extensions={},this.plugins={},this.options=t,this.cache=new SM,this.associations=new Map,this.primitiveCache={},this.meshCache={refs:{},uses:{}},this.cameraCache={refs:{},uses:{}},this.lightCache={refs:{},uses:{}},this.sourceCache={},this.textureCache={},this.nodeNamesUsed={};const n=/^((?!chrome|android).)*safari/i.test(navigator.userAgent)===!0,i=navigator.userAgent.indexOf(\"Firefox\")>-1,s=i?navigator.userAgent.match(/Firefox\\/([0-9]+)\\./)[1]:-1;typeof createImageBitmap==\"undefined\"||n||i&&s<98?this.textureLoader=new zs(this.options.manager):this.textureLoader=new nm(this.options.manager),this.textureLoader.setCrossOrigin(this.options.crossOrigin),this.textureLoader.setRequestHeader(this.options.requestHeader),this.fileLoader=new $t(this.options.manager),this.fileLoader.setResponseType(\"arraybuffer\"),this.options.crossOrigin===\"use-credentials\"&&this.fileLoader.setWithCredentials(!0)}setExtensions(e){this.extensions=e}setPlugins(e){this.plugins=e}parse(e,t){const n=this,i=this.json,s=this.extensions;this.cache.removeAll(),this._invokeAll(function(r){return r._markDefs&&r._markDefs()}),Promise.all(this._invokeAll(function(r){return r.beforeRoot&&r.beforeRoot()})).then(function(){return Promise.all([n.getDependencies(\"scene\"),n.getDependencies(\"animation\"),n.getDependencies(\"camera\")])}).then(function(r){const o={scene:r[0][i.scene||0],scenes:r[0],animations:r[1],cameras:r[2],asset:i.asset,parser:n,userData:{}};uo(s,o,i),xs(o,i),Promise.all(n._invokeAll(function(l){return l.afterRoot&&l.afterRoot(o)})).then(function(){e(o)})}).catch(t)}_markDefs(){const e=this.json.nodes||[],t=this.json.skins||[],n=this.json.meshes||[];for(let i=0,s=t.length;i<s;i++){const r=t[i].joints;for(let o=0,l=r.length;o<l;o++)e[r[o]].isBone=!0}for(let i=0,s=e.length;i<s;i++){const r=e[i];r.mesh!==void 0&&(this._addNodeRef(this.meshCache,r.mesh),r.skin!==void 0&&(n[r.mesh].isSkinnedMesh=!0)),r.camera!==void 0&&this._addNodeRef(this.cameraCache,r.camera)}}_addNodeRef(e,t){t!==void 0&&(e.refs[t]===void 0&&(e.refs[t]=e.uses[t]=0),e.refs[t]++)}_getNodeRef(e,t,n){if(e.refs[t]<=1)return n;const i=n.clone(),s=(r,o)=>{const l=this.associations.get(r);l!=null&&this.associations.set(o,l);for(const[c,h]of r.children.entries())s(h,o.children[c])};return s(n,i),i.name+=\"_instance_\"+e.uses[t]++,i}_invokeOne(e){const t=Object.values(this.plugins);t.push(this);for(let n=0;n<t.length;n++){const i=e(t[n]);if(i)return i}return null}_invokeAll(e){const t=Object.values(this.plugins);t.unshift(this);const n=[];for(let i=0;i<t.length;i++){const s=e(t[i]);s&&n.push(s)}return n}getDependency(e,t){const n=e+\":\"+t;let i=this.cache.get(n);if(!i){switch(e){case\"scene\":i=this.loadScene(t);break;case\"node\":i=this.loadNode(t);break;case\"mesh\":i=this._invokeOne(function(s){return s.loadMesh&&s.loadMesh(t)});break;case\"accessor\":i=this.loadAccessor(t);break;case\"bufferView\":i=this._invokeOne(function(s){return s.loadBufferView&&s.loadBufferView(t)});break;case\"buffer\":i=this.loadBuffer(t);break;case\"material\":i=this._invokeOne(function(s){return s.loadMaterial&&s.loadMaterial(t)});break;case\"texture\":i=this._invokeOne(function(s){return s.loadTexture&&s.loadTexture(t)});break;case\"skin\":i=this.loadSkin(t);break;case\"animation\":i=this._invokeOne(function(s){return s.loadAnimation&&s.loadAnimation(t)});break;case\"camera\":i=this.loadCamera(t);break;default:throw new Error(\"Unknown type: \"+e)}this.cache.add(n,i)}return i}getDependencies(e){let t=this.cache.get(e);if(!t){const n=this,i=this.json[e+(e===\"mesh\"?\"es\":\"s\")]||[];t=Promise.all(i.map(function(s,r){return n.getDependency(e,r)})),this.cache.add(e,t)}return t}loadBuffer(e){const t=this.json.buffers[e],n=this.fileLoader;if(t.type&&t.type!==\"arraybuffer\")throw new Error(\"THREE.GLTFLoader: \"+t.type+\" buffer type is not supported.\");if(t.uri===void 0&&e===0)return Promise.resolve(this.extensions[ct.KHR_BINARY_GLTF].body);const i=this.options;return new Promise(function(s,r){n.load(sn.resolveURL(t.uri,i.path),s,void 0,function(){r(new Error('THREE.GLTFLoader: Failed to load buffer \"'+t.uri+'\".'))})})}loadBufferView(e){const t=this.json.bufferViews[e];return this.getDependency(\"buffer\",t.buffer).then(function(n){const i=t.byteLength||0,s=t.byteOffset||0;return n.slice(s,s+i)})}loadAccessor(e){const t=this,n=this.json,i=this.json.accessors[e];if(i.bufferView===void 0&&i.sparse===void 0)return Promise.resolve(null);const s=[];return i.bufferView!==void 0?s.push(this.getDependency(\"bufferView\",i.bufferView)):s.push(null),i.sparse!==void 0&&(s.push(this.getDependency(\"bufferView\",i.sparse.indices.bufferView)),s.push(this.getDependency(\"bufferView\",i.sparse.values.bufferView))),Promise.all(s).then(function(r){const o=r[0],l=id[i.type],c=Bo[i.componentType],h=c.BYTES_PER_ELEMENT,u=h*l,f=i.byteOffset||0,d=i.bufferView!==void 0?n.bufferViews[i.bufferView].byteStride:void 0,p=i.normalized===!0;let m,g;if(d&&d!==u){const y=Math.floor(f/d),x=\"InterleavedBuffer:\"+i.bufferView+\":\"+i.componentType+\":\"+y+\":\"+i.count;let b=t.cache.get(x);b||(m=new c(o,y*d,i.count*d/h),b=new Ho(m,d/h),t.cache.add(x,b)),g=new Ji(b,l,f%d/h,p)}else o===null?m=new c(i.count*l):m=new c(o,f,i.count*l),g=new mt(m,l,p);if(i.sparse!==void 0){const y=id.SCALAR,x=Bo[i.sparse.indices.componentType],b=i.sparse.indices.byteOffset||0,v=i.sparse.values.byteOffset||0,M=new x(r[1],b,i.sparse.count*y),T=new c(r[2],v,i.sparse.count*l);o!==null&&(g=new mt(g.array.slice(),g.itemSize,g.normalized));for(let C=0,_=M.length;C<_;C++){const E=M[C];if(g.setX(E,T[C*l]),l>=2&&g.setY(E,T[C*l+1]),l>=3&&g.setZ(E,T[C*l+2]),l>=4&&g.setW(E,T[C*l+3]),l>=5)throw new Error(\"THREE.GLTFLoader: Unsupported itemSize in sparse BufferAttribute.\")}}return g})}loadTexture(e){const t=this.json,n=this.options,s=t.textures[e].source,r=t.images[s];let o=this.textureLoader;if(r.uri){const l=n.manager.getHandler(r.uri);l!==null&&(o=l)}return this.loadTextureImage(e,s,o)}loadTextureImage(e,t,n){const i=this,s=this.json,r=s.textures[e],o=s.images[t],l=(o.uri||o.bufferView)+\":\"+r.sampler;if(this.textureCache[l])return this.textureCache[l];const c=this.loadImageSource(t,n).then(function(h){h.flipY=!1,r.name&&(h.name=r.name);const f=(s.samplers||{})[r.sampler]||{};return h.magFilter=td[f.magFilter]||Ft,h.minFilter=td[f.minFilter]||oi,h.wrapS=nd[f.wrapS]||fn,h.wrapT=nd[f.wrapT]||fn,i.associations.set(h,{textures:e}),h}).catch(function(){return null});return this.textureCache[l]=c,c}loadImageSource(e,t){const n=this,i=this.json,s=this.options;if(this.sourceCache[e]!==void 0)return this.sourceCache[e].then(u=>u.clone());const r=i.images[e],o=self.URL||self.webkitURL;let l=r.uri||\"\",c=!1;if(r.bufferView!==void 0)l=n.getDependency(\"bufferView\",r.bufferView).then(function(u){c=!0;const f=new Blob([u],{type:r.mimeType});return l=o.createObjectURL(f),l});else if(r.uri===void 0)throw new Error(\"THREE.GLTFLoader: Image \"+e+\" is missing URI and bufferView\");const h=Promise.resolve(l).then(function(u){return new Promise(function(f,d){let p=f;t.isImageBitmapLoader===!0&&(p=function(m){const g=new It(m);g.needsUpdate=!0,f(g)}),t.load(sn.resolveURL(u,s.path),p,void 0,d)})}).then(function(u){return c===!0&&o.revokeObjectURL(l),u.userData.mimeType=r.mimeType||KM(r.uri),u}).catch(function(u){throw console.error(\"THREE.GLTFLoader: Couldn't load texture\",l),u});return this.sourceCache[e]=h,h}assignTexture(e,t,n,i){const s=this;return this.getDependency(\"texture\",n.index).then(function(r){if(n.texCoord!==void 0&&n.texCoord!=0&&!(t===\"aoMap\"&&n.texCoord==1)&&console.warn(\"THREE.GLTFLoader: Custom UV set \"+n.texCoord+\" for texture \"+t+\" not yet supported.\"),s.extensions[ct.KHR_TEXTURE_TRANSFORM]){const o=n.extensions!==void 0?n.extensions[ct.KHR_TEXTURE_TRANSFORM]:void 0;if(o){const l=s.associations.get(r);r=s.extensions[ct.KHR_TEXTURE_TRANSFORM].extendTexture(r,o),s.associations.set(r,l)}}return i!==void 0&&(r.encoding=i),e[t]=r,r})}assignFinalMaterial(e){const t=e.geometry;let n=e.material;const i=t.attributes.tangent===void 0,s=t.attributes.color!==void 0,r=t.attributes.normal===void 0;if(e.isPoints){const o=\"PointsMaterial:\"+n.uuid;let l=this.cache.get(o);l||(l=new qi,Wt.prototype.copy.call(l,n),l.color.copy(n.color),l.map=n.map,l.sizeAttenuation=!1,this.cache.add(o,l)),n=l}else if(e.isLine){const o=\"LineBasicMaterial:\"+n.uuid;let l=this.cache.get(o);l||(l=new qt,Wt.prototype.copy.call(l,n),l.color.copy(n.color),this.cache.add(o,l)),n=l}if(i||s||r){let o=\"ClonedMaterial:\"+n.uuid+\":\";n.isGLTFSpecularGlossinessMaterial&&(o+=\"specular-glossiness:\"),i&&(o+=\"derivative-tangents:\"),s&&(o+=\"vertex-colors:\"),r&&(o+=\"flat-shading:\");let l=this.cache.get(o);l||(l=n.clone(),s&&(l.vertexColors=!0),r&&(l.flatShading=!0),i&&(l.normalScale&&(l.normalScale.y*=-1),l.clearcoatNormalScale&&(l.clearcoatNormalScale.y*=-1)),this.cache.add(o,l),this.associations.set(l,this.associations.get(n))),n=l}n.aoMap&&t.attributes.uv2===void 0&&t.attributes.uv!==void 0&&t.setAttribute(\"uv2\",t.attributes.uv),e.material=n}getMaterialType(){return Vs}loadMaterial(e){const t=this,n=this.json,i=this.extensions,s=n.materials[e];let r;const o={},l=s.extensions||{},c=[];if(l[ct.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS]){const u=i[ct.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS];r=u.getMaterialType(),c.push(u.extendParams(o,s,t))}else if(l[ct.KHR_MATERIALS_UNLIT]){const u=i[ct.KHR_MATERIALS_UNLIT];r=u.getMaterialType(),c.push(u.extendParams(o,s,t))}else{const u=s.pbrMetallicRoughness||{};if(o.color=new we(1,1,1),o.opacity=1,Array.isArray(u.baseColorFactor)){const f=u.baseColorFactor;o.color.fromArray(f),o.opacity=f[3]}u.baseColorTexture!==void 0&&c.push(t.assignTexture(o,\"map\",u.baseColorTexture,it)),o.metalness=u.metallicFactor!==void 0?u.metallicFactor:1,o.roughness=u.roughnessFactor!==void 0?u.roughnessFactor:1,u.metallicRoughnessTexture!==void 0&&(c.push(t.assignTexture(o,\"metalnessMap\",u.metallicRoughnessTexture)),c.push(t.assignTexture(o,\"roughnessMap\",u.metallicRoughnessTexture))),r=this._invokeOne(function(f){return f.getMaterialType&&f.getMaterialType(e)}),c.push(Promise.all(this._invokeAll(function(f){return f.extendMaterialParams&&f.extendMaterialParams(e,o)})))}s.doubleSided===!0&&(o.side=wi);const h=s.alphaMode||Tc.OPAQUE;if(h===Tc.BLEND?(o.transparent=!0,o.depthWrite=!1):(o.transparent=!1,h===Tc.MASK&&(o.alphaTest=s.alphaCutoff!==void 0?s.alphaCutoff:.5)),s.normalTexture!==void 0&&r!==ln&&(c.push(t.assignTexture(o,\"normalMap\",s.normalTexture)),o.normalScale=new fe(1,1),s.normalTexture.scale!==void 0)){const u=s.normalTexture.scale;o.normalScale.set(u,u)}return s.occlusionTexture!==void 0&&r!==ln&&(c.push(t.assignTexture(o,\"aoMap\",s.occlusionTexture)),s.occlusionTexture.strength!==void 0&&(o.aoMapIntensity=s.occlusionTexture.strength)),s.emissiveFactor!==void 0&&r!==ln&&(o.emissive=new we().fromArray(s.emissiveFactor)),s.emissiveTexture!==void 0&&r!==ln&&c.push(t.assignTexture(o,\"emissiveMap\",s.emissiveTexture,it)),Promise.all(c).then(function(){let u;return r===vu?u=i[ct.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS].createMaterial(o):u=new r(o),s.name&&(u.name=s.name),xs(u,s),t.associations.set(u,{materials:e}),s.extensions&&uo(i,u,s),u})}createUniqueName(e){const t=rt.sanitizeNodeName(e||\"\");let n=t;for(let i=1;this.nodeNamesUsed[n];++i)n=t+\"_\"+i;return this.nodeNamesUsed[n]=!0,n}loadGeometries(e){const t=this,n=this.extensions,i=this.primitiveCache;function s(o){return n[ct.KHR_DRACO_MESH_COMPRESSION].decodePrimitive(o,t).then(function(l){return rd(l,o,t)})}const r=[];for(let o=0,l=e.length;o<l;o++){const c=e[o],h=ZM(c),u=i[h];if(u)r.push(u.promise);else{let f;c.extensions&&c.extensions[ct.KHR_DRACO_MESH_COMPRESSION]?f=s(c):f=rd(new Xe,c,t),i[h]={primitive:c,promise:f},r.push(f)}}return Promise.all(r)}loadMesh(e){const t=this,n=this.json,i=this.extensions,s=n.meshes[e],r=s.primitives,o=[];for(let l=0,c=r.length;l<c;l++){const h=r[l].material===void 0?XM(this.cache):this.getDependency(\"material\",r[l].material);o.push(h)}return o.push(t.loadGeometries(r)),Promise.all(o).then(function(l){const c=l.slice(0,l.length-1),h=l[l.length-1],u=[];for(let d=0,p=h.length;d<p;d++){const m=h[d],g=r[d];let y;const x=c[d];if(g.mode===gi.TRIANGLES||g.mode===gi.TRIANGLE_STRIP||g.mode===gi.TRIANGLE_FAN||g.mode===void 0)y=s.isSkinnedMesh===!0?new Wo(m,x):new Rt(m,x),y.isSkinnedMesh===!0&&!y.geometry.attributes.skinWeight.normalized&&y.normalizeSkinWeights(),g.mode===gi.TRIANGLE_STRIP?y.geometry=od(y.geometry,sp):g.mode===gi.TRIANGLE_FAN&&(y.geometry=od(y.geometry,Cu));else if(g.mode===gi.LINES)y=new wn(m,x);else if(g.mode===gi.LINE_STRIP)y=new jn(m,x);else if(g.mode===gi.LINE_LOOP)y=new ku(m,x);else if(g.mode===gi.POINTS)y=new _r(m,x);else throw new Error(\"THREE.GLTFLoader: Primitive mode unsupported: \"+g.mode);Object.keys(y.geometry.morphAttributes).length>0&&YM(y,s),y.name=t.createUniqueName(s.name||\"mesh_\"+e),xs(y,s),g.extensions&&uo(i,y,g),t.assignFinalMaterial(y),u.push(y)}for(let d=0,p=u.length;d<p;d++)t.associations.set(u[d],{meshes:e,primitives:d});if(u.length===1)return u[0];const f=new pn;t.associations.set(f,{meshes:e});for(let d=0,p=u.length;d<p;d++)f.add(u[d]);return f})}loadCamera(e){let t;const n=this.json.cameras[e],i=n[n.type];if(!i){console.warn(\"THREE.GLTFLoader: Missing camera parameters.\");return}return n.type===\"perspective\"?t=new Ot(nn.radToDeg(i.yfov),i.aspectRatio||1,i.znear||1,i.zfar||2e6):n.type===\"orthographic\"&&(t=new Us(-i.xmag,i.xmag,i.ymag,-i.ymag,i.znear,i.zfar)),n.name&&(t.name=this.createUniqueName(n.name)),xs(t,n),Promise.resolve(t)}loadSkin(e){const t=this.json.skins[e],n={joints:t.joints};return t.inverseBindMatrices===void 0?Promise.resolve(n):this.getDependency(\"accessor\",t.inverseBindMatrices).then(function(i){return n.inverseBindMatrices=i,n})}loadAnimation(e){const n=this.json.animations[e],i=[],s=[],r=[],o=[],l=[];for(let c=0,h=n.channels.length;c<h;c++){const u=n.channels[c],f=n.samplers[u.sampler],d=u.target,p=d.node!==void 0?d.node:d.id,m=n.parameters!==void 0?n.parameters[f.input]:f.input,g=n.parameters!==void 0?n.parameters[f.output]:f.output;i.push(this.getDependency(\"node\",p)),s.push(this.getDependency(\"accessor\",m)),r.push(this.getDependency(\"accessor\",g)),o.push(f),l.push(d)}return Promise.all([Promise.all(i),Promise.all(s),Promise.all(r),Promise.all(o),Promise.all(l)]).then(function(c){const h=c[0],u=c[1],f=c[2],d=c[3],p=c[4],m=[];for(let y=0,x=h.length;y<x;y++){const b=h[y],v=u[y],M=f[y],T=d[y],C=p[y];if(b===void 0)continue;b.updateMatrix();let _;switch(Gi[C.path]){case Gi.weights:_=Os;break;case Gi.rotation:_=si;break;case Gi.position:case Gi.scale:default:_=Ti;break}const E=b.name?b.name:b.uuid,F=T.interpolation!==void 0?qM[T.interpolation]:Is,U=[];Gi[C.path]===Gi.weights?b.traverse(function(K){K.morphTargetInfluences&&U.push(K.name?K.name:K.uuid)}):U.push(E);let q=M.array;if(M.normalized){const K=bu(q.constructor),G=new Float32Array(q.length);for(let X=0,O=q.length;X<O;X++)G[X]=q[X]*K;q=G}for(let K=0,G=U.length;K<G;K++){const X=new _(U[K]+\".\"+Gi[C.path],v.array,q,F);T.interpolation===\"CUBICSPLINE\"&&(X.createInterpolant=function(j){const Y=this instanceof si?WM:Ym;return new Y(this.times,this.values,this.getValueSize()/3,j)},X.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline=!0),m.push(X)}}const g=n.name?n.name:\"animation_\"+e;return new Ai(g,void 0,m)})}createNodeMesh(e){const t=this.json,n=this,i=t.nodes[e];return i.mesh===void 0?null:n.getDependency(\"mesh\",i.mesh).then(function(s){const r=n._getNodeRef(n.meshCache,i.mesh,s);return i.weights!==void 0&&r.traverse(function(o){if(!!o.isMesh)for(let l=0,c=i.weights.length;l<c;l++)o.morphTargetInfluences[l]=i.weights[l]}),r})}loadNode(e){const t=this.json,n=this.extensions,i=this,s=t.nodes[e],r=s.name?i.createUniqueName(s.name):\"\";return function(){const o=[],l=i._invokeOne(function(c){return c.createNodeMesh&&c.createNodeMesh(e)});return l&&o.push(l),s.camera!==void 0&&o.push(i.getDependency(\"camera\",s.camera).then(function(c){return i._getNodeRef(i.cameraCache,s.camera,c)})),i._invokeAll(function(c){return c.createNodeAttachment&&c.createNodeAttachment(e)}).forEach(function(c){o.push(c)}),Promise.all(o)}().then(function(o){let l;if(s.isBone===!0?l=new Ds:o.length>1?l=new pn:o.length===1?l=o[0]:l=new pt,l!==o[0])for(let c=0,h=o.length;c<h;c++)l.add(o[c]);if(s.name&&(l.userData.name=s.name,l.name=r),xs(l,s),s.extensions&&uo(n,l,s),s.matrix!==void 0){const c=new Ne;c.fromArray(s.matrix),l.applyMatrix4(c)}else s.translation!==void 0&&l.position.fromArray(s.translation),s.rotation!==void 0&&l.quaternion.fromArray(s.rotation),s.scale!==void 0&&l.scale.fromArray(s.scale);return i.associations.has(l)||i.associations.set(l,{}),i.associations.get(l).nodes=e,l})}loadScene(e){const t=this.json,n=this.extensions,i=this.json.scenes[e],s=this,r=new pn;i.name&&(r.name=s.createUniqueName(i.name)),xs(r,i),i.extensions&&uo(n,r,i);const o=i.nodes||[],l=[];for(let c=0,h=o.length;c<h;c++)l.push(Zm(o[c],r,t,s));return Promise.all(l).then(function(){const c=h=>{const u=new Map;for(const[f,d]of s.associations)(f instanceof Wt||f instanceof It)&&u.set(f,d);return h.traverse(f=>{const d=s.associations.get(f);d!=null&&u.set(f,d)}),u};return s.associations=c(r),r})}}function Zm(a,e,t,n){const i=t.nodes[a];return n.getDependency(\"node\",a).then(function(s){if(i.skin===void 0)return s;let r;return n.getDependency(\"skin\",i.skin).then(function(o){r=o;const l=[];for(let c=0,h=r.joints.length;c<h;c++)l.push(n.getDependency(\"node\",r.joints[c]));return Promise.all(l)}).then(function(o){return s.traverse(function(l){if(!l.isMesh)return;const c=[],h=[];for(let u=0,f=o.length;u<f;u++){const d=o[u];if(d){c.push(d);const p=new Ne;r.inverseBindMatrices!==void 0&&p.fromArray(r.inverseBindMatrices.array,u*16),h.push(p)}else console.warn('THREE.GLTFLoader: Joint \"%s\" could not be found.',r.joints[u])}l.bind(new Gs(c,h),l.matrixWorld)}),s})}).then(function(s){e.add(s);const r=[];if(i.children){const o=i.children;for(let l=0,c=o.length;l<c;l++){const h=o[l];r.push(Zm(h,s,t,n))}}return Promise.all(r)})}function $M(a,e,t){const n=e.attributes,i=new Li;if(n.POSITION!==void 0){const o=t.json.accessors[n.POSITION],l=o.min,c=o.max;if(l!==void 0&&c!==void 0){if(i.set(new I(l[0],l[1],l[2]),new I(c[0],c[1],c[2])),o.normalized){const h=bu(Bo[o.componentType]);i.min.multiplyScalar(h),i.max.multiplyScalar(h)}}else{console.warn(\"THREE.GLTFLoader: Missing min/max properties for accessor POSITION.\");return}}else return;const s=e.targets;if(s!==void 0){const o=new I,l=new I;for(let c=0,h=s.length;c<h;c++){const u=s[c];if(u.POSITION!==void 0){const f=t.json.accessors[u.POSITION],d=f.min,p=f.max;if(d!==void 0&&p!==void 0){if(l.setX(Math.max(Math.abs(d[0]),Math.abs(p[0]))),l.setY(Math.max(Math.abs(d[1]),Math.abs(p[1]))),l.setZ(Math.max(Math.abs(d[2]),Math.abs(p[2]))),f.normalized){const m=bu(Bo[f.componentType]);l.multiplyScalar(m)}o.max(l)}else console.warn(\"THREE.GLTFLoader: Missing min/max properties for accessor POSITION.\")}}i.expandByVector(o)}a.boundingBox=i;const r=new is;i.getCenter(r.center),r.radius=i.min.distanceTo(i.max)/2,a.boundingSphere=r}function rd(a,e,t){const n=e.attributes,i=[];function s(r,o){return t.getDependency(\"accessor\",r).then(function(l){a.setAttribute(o,l)})}for(const r in n){const o=_u[r]||r.toLowerCase();o in a.attributes||i.push(s(n[r],o))}if(e.indices!==void 0&&!a.index){const r=t.getDependency(\"accessor\",e.indices).then(function(o){a.setIndex(o)});i.push(r)}return xs(a,e),$M(a,e,t),Promise.all(i).then(function(){return e.targets!==void 0?jM(a,e.targets,t):a})}function od(a,e){let t=a.getIndex();if(t===null){const r=[],o=a.getAttribute(\"position\");if(o!==void 0){for(let l=0;l<o.count;l++)r.push(l);a.setIndex(r),t=a.getIndex()}else return console.error(\"THREE.GLTFLoader.toTrianglesDrawMode(): Undefined position attribute. Processing not possible.\"),a}const n=t.count-2,i=[];if(e===Cu)for(let r=1;r<=n;r++)i.push(t.getX(0)),i.push(t.getX(r)),i.push(t.getX(r+1));else for(let r=0;r<n;r++)r%2===0?(i.push(t.getX(r)),i.push(t.getX(r+1)),i.push(t.getX(r+2))):(i.push(t.getX(r+2)),i.push(t.getX(r+1)),i.push(t.getX(r)));i.length/3!==n&&console.error(\"THREE.GLTFLoader.toTrianglesDrawMode(): Unable to generate correct amount of triangles.\");const s=a.clone();return s.setIndex(i),s}const QM=/^[og]\\s*(.+)?/,e1=/^mtllib /,t1=/^usemtl /,n1=/^usemap /,ad=/\\s+/,ld=new I,Ac=new I,cd=new I,ud=new I,Rn=new I,Xa=new we;function i1(){const a={objects:[],object:{},vertices:[],normals:[],colors:[],uvs:[],materials:{},materialLibraries:[],startObject:function(e,t){if(this.object&&this.object.fromDeclaration===!1){this.object.name=e,this.object.fromDeclaration=t!==!1;return}const n=this.object&&typeof this.object.currentMaterial==\"function\"?this.object.currentMaterial():void 0;if(this.object&&typeof this.object._finalize==\"function\"&&this.object._finalize(!0),this.object={name:e||\"\",fromDeclaration:t!==!1,geometry:{vertices:[],normals:[],colors:[],uvs:[],hasUVIndices:!1},materials:[],smooth:!0,startMaterial:function(i,s){const r=this._finalize(!1);r&&(r.inherited||r.groupCount<=0)&&this.materials.splice(r.index,1);const o={index:this.materials.length,name:i||\"\",mtllib:Array.isArray(s)&&s.length>0?s[s.length-1]:\"\",smooth:r!==void 0?r.smooth:this.smooth,groupStart:r!==void 0?r.groupEnd:0,groupEnd:-1,groupCount:-1,inherited:!1,clone:function(l){const c={index:typeof l==\"number\"?l:this.index,name:this.name,mtllib:this.mtllib,smooth:this.smooth,groupStart:0,groupEnd:-1,groupCount:-1,inherited:!1};return c.clone=this.clone.bind(c),c}};return this.materials.push(o),o},currentMaterial:function(){if(this.materials.length>0)return this.materials[this.materials.length-1]},_finalize:function(i){const s=this.currentMaterial();if(s&&s.groupEnd===-1&&(s.groupEnd=this.geometry.vertices.length/3,s.groupCount=s.groupEnd-s.groupStart,s.inherited=!1),i&&this.materials.length>1)for(let r=this.materials.length-1;r>=0;r--)this.materials[r].groupCount<=0&&this.materials.splice(r,1);return i&&this.materials.length===0&&this.materials.push({name:\"\",smooth:this.smooth}),s}},n&&n.name&&typeof n.clone==\"function\"){const i=n.clone(0);i.inherited=!0,this.object.materials.push(i)}this.objects.push(this.object)},finalize:function(){this.object&&typeof this.object._finalize==\"function\"&&this.object._finalize(!0)},parseVertexIndex:function(e,t){const n=parseInt(e,10);return(n>=0?n-1:n+t/3)*3},parseNormalIndex:function(e,t){const n=parseInt(e,10);return(n>=0?n-1:n+t/3)*3},parseUVIndex:function(e,t){const n=parseInt(e,10);return(n>=0?n-1:n+t/2)*2},addVertex:function(e,t,n){const i=this.vertices,s=this.object.geometry.vertices;s.push(i[e+0],i[e+1],i[e+2]),s.push(i[t+0],i[t+1],i[t+2]),s.push(i[n+0],i[n+1],i[n+2])},addVertexPoint:function(e){const t=this.vertices;this.object.geometry.vertices.push(t[e+0],t[e+1],t[e+2])},addVertexLine:function(e){const t=this.vertices;this.object.geometry.vertices.push(t[e+0],t[e+1],t[e+2])},addNormal:function(e,t,n){const i=this.normals,s=this.object.geometry.normals;s.push(i[e+0],i[e+1],i[e+2]),s.push(i[t+0],i[t+1],i[t+2]),s.push(i[n+0],i[n+1],i[n+2])},addFaceNormal:function(e,t,n){const i=this.vertices,s=this.object.geometry.normals;ld.fromArray(i,e),Ac.fromArray(i,t),cd.fromArray(i,n),Rn.subVectors(cd,Ac),ud.subVectors(ld,Ac),Rn.cross(ud),Rn.normalize(),s.push(Rn.x,Rn.y,Rn.z),s.push(Rn.x,Rn.y,Rn.z),s.push(Rn.x,Rn.y,Rn.z)},addColor:function(e,t,n){const i=this.colors,s=this.object.geometry.colors;i[e]!==void 0&&s.push(i[e+0],i[e+1],i[e+2]),i[t]!==void 0&&s.push(i[t+0],i[t+1],i[t+2]),i[n]!==void 0&&s.push(i[n+0],i[n+1],i[n+2])},addUV:function(e,t,n){const i=this.uvs,s=this.object.geometry.uvs;s.push(i[e+0],i[e+1]),s.push(i[t+0],i[t+1]),s.push(i[n+0],i[n+1])},addDefaultUV:function(){const e=this.object.geometry.uvs;e.push(0,0),e.push(0,0),e.push(0,0)},addUVLine:function(e){const t=this.uvs;this.object.geometry.uvs.push(t[e+0],t[e+1])},addFace:function(e,t,n,i,s,r,o,l,c){const h=this.vertices.length;let u=this.parseVertexIndex(e,h),f=this.parseVertexIndex(t,h),d=this.parseVertexIndex(n,h);if(this.addVertex(u,f,d),this.addColor(u,f,d),o!==void 0&&o!==\"\"){const p=this.normals.length;u=this.parseNormalIndex(o,p),f=this.parseNormalIndex(l,p),d=this.parseNormalIndex(c,p),this.addNormal(u,f,d)}else this.addFaceNormal(u,f,d);if(i!==void 0&&i!==\"\"){const p=this.uvs.length;u=this.parseUVIndex(i,p),f=this.parseUVIndex(s,p),d=this.parseUVIndex(r,p),this.addUV(u,f,d),this.object.geometry.hasUVIndices=!0}else this.addDefaultUV()},addPointGeometry:function(e){this.object.geometry.type=\"Points\";const t=this.vertices.length;for(let n=0,i=e.length;n<i;n++){const s=this.parseVertexIndex(e[n],t);this.addVertexPoint(s),this.addColor(s)}},addLineGeometry:function(e,t){this.object.geometry.type=\"Line\";const n=this.vertices.length,i=this.uvs.length;for(let s=0,r=e.length;s<r;s++)this.addVertexLine(this.parseVertexIndex(e[s],n));for(let s=0,r=t.length;s<r;s++)this.addUVLine(this.parseUVIndex(t[s],i))}};return a.startObject(\"\",!1),a}class s1 extends Xt{constructor(e){super(e),this.materials=null}load(e,t,n,i){const s=this,r=new $t(this.manager);r.setPath(this.path),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{t(s.parse(o))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}setMaterials(e){return this.materials=e,this}parse(e){const t=new i1;e.indexOf(`\\r\n`)!==-1&&(e=e.replace(/\\r\\n/g,`\n`)),e.indexOf(`\\\\\n`)!==-1&&(e=e.replace(/\\\\\\n/g,\"\"));const n=e.split(`\n`);let i=[];for(let o=0,l=n.length;o<l;o++){const c=n[o].trimStart();if(c.length===0)continue;const h=c.charAt(0);if(h!==\"#\")if(h===\"v\"){const u=c.split(ad);switch(u[0]){case\"v\":t.vertices.push(parseFloat(u[1]),parseFloat(u[2]),parseFloat(u[3])),u.length>=7?(Xa.setRGB(parseFloat(u[4]),parseFloat(u[5]),parseFloat(u[6])).convertSRGBToLinear(),t.colors.push(Xa.r,Xa.g,Xa.b)):t.colors.push(void 0,void 0,void 0);break;case\"vn\":t.normals.push(parseFloat(u[1]),parseFloat(u[2]),parseFloat(u[3]));break;case\"vt\":t.uvs.push(parseFloat(u[1]),parseFloat(u[2]));break}}else if(h===\"f\"){const f=c.slice(1).trim().split(ad),d=[];for(let m=0,g=f.length;m<g;m++){const y=f[m];if(y.length>0){const x=y.split(\"/\");d.push(x)}}const p=d[0];for(let m=1,g=d.length-1;m<g;m++){const y=d[m],x=d[m+1];t.addFace(p[0],y[0],x[0],p[1],y[1],x[1],p[2],y[2],x[2])}}else if(h===\"l\"){const u=c.substring(1).trim().split(\" \");let f=[];const d=[];if(c.indexOf(\"/\")===-1)f=u;else for(let p=0,m=u.length;p<m;p++){const g=u[p].split(\"/\");g[0]!==\"\"&&f.push(g[0]),g[1]!==\"\"&&d.push(g[1])}t.addLineGeometry(f,d)}else if(h===\"p\"){const f=c.slice(1).trim().split(\" \");t.addPointGeometry(f)}else if((i=QM.exec(c))!==null){const u=(\" \"+i[0].slice(1).trim()).slice(1);t.startObject(u)}else if(t1.test(c))t.object.startMaterial(c.substring(7).trim(),t.materialLibraries);else if(e1.test(c))t.materialLibraries.push(c.substring(7).trim());else if(n1.test(c))console.warn('THREE.OBJLoader: Rendering identifier \"usemap\" not supported. Textures must be defined in MTL files.');else if(h===\"s\"){if(i=c.split(\" \"),i.length>1){const f=i[1].trim().toLowerCase();t.object.smooth=f!==\"0\"&&f!==\"off\"}else t.object.smooth=!0;const u=t.object.currentMaterial();u&&(u.smooth=t.object.smooth)}else{if(c===\"\\0\")continue;console.warn('THREE.OBJLoader: Unexpected line: \"'+c+'\"')}}t.finalize();const s=new pn;if(s.materialLibraries=[].concat(t.materialLibraries),!(t.objects.length===1&&t.objects[0].geometry.vertices.length===0)===!0)for(let o=0,l=t.objects.length;o<l;o++){const c=t.objects[o],h=c.geometry,u=c.materials,f=h.type===\"Line\",d=h.type===\"Points\";let p=!1;if(h.vertices.length===0)continue;const m=new Xe;m.setAttribute(\"position\",new Ce(h.vertices,3)),h.normals.length>0&&m.setAttribute(\"normal\",new Ce(h.normals,3)),h.colors.length>0&&(p=!0,m.setAttribute(\"color\",new Ce(h.colors,3))),h.hasUVIndices===!0&&m.setAttribute(\"uv\",new Ce(h.uvs,2));const g=[];for(let x=0,b=u.length;x<b;x++){const v=u[x],M=v.name+\"_\"+v.smooth+\"_\"+p;let T=t.materials[M];if(this.materials!==null){if(T=this.materials.create(v.name),f&&T&&!(T instanceof qt)){const C=new qt;Wt.prototype.copy.call(C,T),C.color.copy(T.color),T=C}else if(d&&T&&!(T instanceof qi)){const C=new qi({size:10,sizeAttenuation:!1});Wt.prototype.copy.call(C,T),C.color.copy(T.color),C.map=T.map,T=C}}T===void 0&&(f?T=new qt:d?T=new qi({size:1,sizeAttenuation:!1}):T=new ti,T.name=v.name,T.flatShading=!v.smooth,T.vertexColors=p,t.materials[M]=T),g.push(T)}let y;if(g.length>1){for(let x=0,b=u.length;x<b;x++){const v=u[x];m.addGroup(v.groupStart,v.groupCount,x)}f?y=new wn(m,g):d?y=new _r(m,g):y=new Rt(m,g)}else f?y=new wn(m,g[0]):d?y=new _r(m,g[0]):y=new Rt(m,g[0]);y.name=c.name,s.add(y)}else if(t.vertices.length>0){const o=new qi({size:1,sizeAttenuation:!1}),l=new Xe;l.setAttribute(\"position\",new Ce(t.vertices,3)),t.colors.length>0&&t.colors[0]!==void 0&&(l.setAttribute(\"color\",new Ce(t.colors,3)),o.vertexColors=!0);const c=new _r(l,o);s.add(c)}return s}}class r1 extends Zp{constructor(e){super(e)}parse(e,t){const n={mipmaps:[],width:0,height:0,format:null,mipmapCount:1},i=542327876,s=131072,r=512,o=1024,l=2048,c=4096,h=8192,u=16384,f=32768;function d(re){return re.charCodeAt(0)+(re.charCodeAt(1)<<8)+(re.charCodeAt(2)<<16)+(re.charCodeAt(3)<<24)}function p(re){return String.fromCharCode(re&255,re>>8&255,re>>16&255,re>>24&255)}function m(re,H,ge,be){const Fe=ge*be*4,xe=new Uint8Array(re,H,Fe),Ve=new Uint8Array(Fe);let ue=0,ce=0;for(let ve=0;ve<be;ve++)for(let ke=0;ke<ge;ke++){const Le=xe[ce];ce++;const Ze=xe[ce];ce++;const He=xe[ce];ce++;const Ue=xe[ce];ce++,Ve[ue]=He,ue++,Ve[ue]=Ze,ue++,Ve[ue]=Le,ue++,Ve[ue]=Ue,ue++}return Ve}const g=d(\"DXT1\"),y=d(\"DXT3\"),x=d(\"DXT5\"),b=d(\"ETC1\"),v=31,M=0,T=1,C=2,_=3,E=4,F=7,U=21,q=22,K=23,G=24,X=25,O=26,j=28,Y=new Int32Array(e,0,v);if(Y[M]!==i)return console.error(\"THREE.DDSLoader.parse: Invalid magic number in DDS header.\"),n;let W;const Z=Y[U];let ee=!1;switch(Z){case g:W=8,n.format=fo;break;case y:W=16,n.format=po;break;case x:W=16,n.format=mo;break;case b:W=8,n.format=Au;break;default:if(Y[q]===32&&Y[K]&16711680&&Y[G]&65280&&Y[X]&255&&Y[O]&4278190080)ee=!0,W=64,n.format=An;else return console.error(\"THREE.DDSLoader.parse: Unsupported FourCC code \",p(Z)),n}n.mipmapCount=1,Y[C]&s&&t!==!1&&(n.mipmapCount=Math.max(1,Y[F]));const Q=Y[j];if(n.isCubemap=!!(Q&r),n.isCubemap&&(!(Q&o)||!(Q&l)||!(Q&c)||!(Q&h)||!(Q&u)||!(Q&f)))return console.error(\"THREE.DDSLoader.parse: Incomplete cubemap faces\"),n;n.width=Y[E],n.height=Y[_];let ie=Y[T]+4;const ae=n.isCubemap?6:1;for(let re=0;re<ae;re++){let H=n.width,ge=n.height;for(let be=0;be<n.mipmapCount;be++){let Fe,xe;ee?(Fe=m(e,ie,H,ge),xe=Fe.length):(xe=Math.max(4,H)/4*Math.max(4,ge)/4*W,Fe=new Uint8Array(e,ie,xe));const Ve={data:Fe,width:H,height:ge};n.mipmaps.push(Ve),ie+=xe,H=Math.max(H>>1,1),ge=Math.max(ge>>1,1)}}return n}}class o1{constructor(e,t,n){const i=this;let s=!1,r=0,o=0,l;const c=[];this.onStart=void 0,this.onLoad=e,this.onProgress=t,this.onError=n,this.itemStart=function(h){o++,s===!1&&i.onStart!==void 0&&i.onStart(h,r,o),s=!0},this.itemEnd=function(h){r++,i.onProgress!==void 0&&i.onProgress(h,r,o),r===o&&(s=!1,i.onLoad!==void 0&&i.onLoad())},this.itemError=function(h){i.onError!==void 0&&i.onError(h)},this.resolveURL=function(h){return l?l(h):h},this.setURLModifier=function(h){return l=h,this},this.addHandler=function(h,u){return c.push(h,u),this},this.removeHandler=function(h){const u=c.indexOf(h);return u!==-1&&c.splice(u,2),this},this.getHandler=function(h){for(let u=0,f=c.length;u<f;u+=2){const d=c[u],p=c[u+1];if(d.global&&(d.lastIndex=0),d.test(h))return p}return null}}}const ja=new we;class a1 extends Xt{constructor(e){super(e),this.propertyNameMapping={}}load(e,t,n,i){const s=this,r=new $t(this.manager);r.setPath(this.path),r.setResponseType(\"arraybuffer\"),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{t(s.parse(o))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}setPropertyNameMapping(e){this.propertyNameMapping=e}parse(e){function t(d){const p=/^ply([\\s\\S]*)end_header(\\r\\n|\\r|\\n)/;let m=\"\",g=0;const y=p.exec(d);y!==null&&(m=y[1],g=new Blob([y[0]]).size);const x={comments:[],elements:[],headerLength:g,objInfo:\"\"},b=m.split(/\\r\\n|\\r|\\n/);let v;function M(T,C){const _={type:T[0]};return _.type===\"list\"?(_.name=T[3],_.countType=T[1],_.itemType=T[2]):_.name=T[1],_.name in C&&(_.name=C[_.name]),_}for(let T=0;T<b.length;T++){let C=b[T];if(C=C.trim(),C===\"\")continue;const _=C.split(/\\s+/),E=_.shift();switch(C=_.join(\" \"),E){case\"format\":x.format=_[0],x.version=_[1];break;case\"comment\":x.comments.push(C);break;case\"element\":v!==void 0&&x.elements.push(v),v={},v.name=_[0],v.count=parseInt(_[1]),v.properties=[];break;case\"property\":v.properties.push(M(_,f.propertyNameMapping));break;case\"obj_info\":x.objInfo=C;break;default:console.log(\"unhandled\",E,_)}}return v!==void 0&&x.elements.push(v),x}function n(d,p){switch(p){case\"char\":case\"uchar\":case\"short\":case\"ushort\":case\"int\":case\"uint\":case\"int8\":case\"uint8\":case\"int16\":case\"uint16\":case\"int32\":case\"uint32\":return parseInt(d);case\"float\":case\"double\":case\"float32\":case\"float64\":return parseFloat(d)}}function i(d,p){const m=p.split(/\\s+/),g={};for(let y=0;y<d.length;y++)if(d[y].type===\"list\"){const x=[],b=n(m.shift(),d[y].countType);for(let v=0;v<b;v++)x.push(n(m.shift(),d[y].itemType));g[d[y].name]=x}else g[d[y].name]=n(m.shift(),d[y].type);return g}function s(d,p){const m={indices:[],vertices:[],normals:[],uvs:[],faceVertexUvs:[],colors:[]};let g;const y=/end_header\\s([\\s\\S]*)$/;let x=\"\";(g=y.exec(d))!==null&&(x=g[1]);const b=x.split(/\\r\\n|\\r|\\n/);let v=0,M=0;for(let T=0;T<b.length;T++){let C=b[T];if(C=C.trim(),C===\"\")continue;M>=p.elements[v].count&&(v++,M=0);const _=i(p.elements[v].properties,C);o(m,p.elements[v].name,_),M++}return r(m)}function r(d){let p=new Xe;return d.indices.length>0&&p.setIndex(d.indices),p.setAttribute(\"position\",new Ce(d.vertices,3)),d.normals.length>0&&p.setAttribute(\"normal\",new Ce(d.normals,3)),d.uvs.length>0&&p.setAttribute(\"uv\",new Ce(d.uvs,2)),d.colors.length>0&&p.setAttribute(\"color\",new Ce(d.colors,3)),d.faceVertexUvs.length>0&&(p=p.toNonIndexed(),p.setAttribute(\"uv\",new Ce(d.faceVertexUvs,2))),p.computeBoundingSphere(),p}function o(d,p,m){function g(q){for(let K=0,G=q.length;K<G;K++){const X=q[K];if(X in m)return X}return null}const y=g([\"x\",\"px\",\"posx\"])||\"x\",x=g([\"y\",\"py\",\"posy\"])||\"y\",b=g([\"z\",\"pz\",\"posz\"])||\"z\",v=g([\"nx\",\"normalx\"]),M=g([\"ny\",\"normaly\"]),T=g([\"nz\",\"normalz\"]),C=g([\"s\",\"u\",\"texture_u\",\"tx\"]),_=g([\"t\",\"v\",\"texture_v\",\"ty\"]),E=g([\"red\",\"diffuse_red\",\"r\",\"diffuse_r\"]),F=g([\"green\",\"diffuse_green\",\"g\",\"diffuse_g\"]),U=g([\"blue\",\"diffuse_blue\",\"b\",\"diffuse_b\"]);if(p===\"vertex\")d.vertices.push(m[y],m[x],m[b]),v!==null&&M!==null&&T!==null&&d.normals.push(m[v],m[M],m[T]),C!==null&&_!==null&&d.uvs.push(m[C],m[_]),E!==null&&F!==null&&U!==null&&(ja.setRGB(m[E]/255,m[F]/255,m[U]/255).convertSRGBToLinear(),d.colors.push(ja.r,ja.g,ja.b));else if(p===\"face\"){const q=m.vertex_indices||m.vertex_index,K=m.texcoord;q.length===3?(d.indices.push(q[0],q[1],q[2]),K&&K.length===6&&(d.faceVertexUvs.push(K[0],K[1]),d.faceVertexUvs.push(K[2],K[3]),d.faceVertexUvs.push(K[4],K[5]))):q.length===4&&(d.indices.push(q[0],q[1],q[3]),d.indices.push(q[1],q[2],q[3]))}}function l(d,p,m,g){switch(m){case\"int8\":case\"char\":return[d.getInt8(p),1];case\"uint8\":case\"uchar\":return[d.getUint8(p),1];case\"int16\":case\"short\":return[d.getInt16(p,g),2];case\"uint16\":case\"ushort\":return[d.getUint16(p,g),2];case\"int32\":case\"int\":return[d.getInt32(p,g),4];case\"uint32\":case\"uint\":return[d.getUint32(p,g),4];case\"float32\":case\"float\":return[d.getFloat32(p,g),4];case\"float64\":case\"double\":return[d.getFloat64(p,g),8]}}function c(d,p,m,g){const y={};let x,b=0;for(let v=0;v<m.length;v++)if(m[v].type===\"list\"){const M=[];x=l(d,p+b,m[v].countType,g);const T=x[0];b+=x[1];for(let C=0;C<T;C++)x=l(d,p+b,m[v].itemType,g),M.push(x[0]),b+=x[1];y[m[v].name]=M}else x=l(d,p+b,m[v].type,g),y[m[v].name]=x[0],b+=x[1];return[y,b]}function h(d,p){const m={indices:[],vertices:[],normals:[],uvs:[],faceVertexUvs:[],colors:[]},g=p.format===\"binary_little_endian\",y=new DataView(d,p.headerLength);let x,b=0;for(let v=0;v<p.elements.length;v++)for(let M=0;M<p.elements[v].count;M++){x=c(y,b,p.elements[v].properties,g),b+=x[1];const T=x[0];o(m,p.elements[v].name,T)}return r(m)}let u;const f=this;if(e instanceof ArrayBuffer){const d=sn.decodeText(new Uint8Array(e)),p=t(d);u=p.format===\"ascii\"?s(d,p):h(e,p)}else u=s(e,t(e));return u}}class l1 extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new $t(this.manager);r.setPath(this.path),r.setResponseType(\"arraybuffer\"),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{t(s.parse(o))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}parse(e){function t(c){const h=new DataView(c),u=32/8*3+32/8*3*3+16/8,f=h.getUint32(80,!0);if(80+32/8+f*u===h.byteLength)return!0;const p=[115,111,108,105,100];for(let m=0;m<5;m++)if(n(p,h,m))return!1;return!0}function n(c,h,u){for(let f=0,d=c.length;f<d;f++)if(c[f]!==h.getUint8(u+f))return!1;return!0}function i(c){const h=new DataView(c),u=h.getUint32(80,!0);let f,d,p,m=!1,g,y,x,b,v;for(let F=0;F<80-10;F++)h.getUint32(F,!1)==1129270351&&h.getUint8(F+4)==82&&h.getUint8(F+5)==61&&(m=!0,g=new Float32Array(u*3*3),y=h.getUint8(F+6)/255,x=h.getUint8(F+7)/255,b=h.getUint8(F+8)/255,v=h.getUint8(F+9)/255);const M=84,T=12*4+2,C=new Xe,_=new Float32Array(u*3*3),E=new Float32Array(u*3*3);for(let F=0;F<u;F++){const U=M+F*T,q=h.getFloat32(U,!0),K=h.getFloat32(U+4,!0),G=h.getFloat32(U+8,!0);if(m){const X=h.getUint16(U+48,!0);(X&32768)===0?(f=(X&31)/31,d=(X>>5&31)/31,p=(X>>10&31)/31):(f=y,d=x,p=b)}for(let X=1;X<=3;X++){const O=U+X*12,j=F*3*3+(X-1)*3;_[j]=h.getFloat32(O,!0),_[j+1]=h.getFloat32(O+4,!0),_[j+2]=h.getFloat32(O+8,!0),E[j]=q,E[j+1]=K,E[j+2]=G,m&&(g[j]=f,g[j+1]=d,g[j+2]=p)}}return C.setAttribute(\"position\",new mt(_,3)),C.setAttribute(\"normal\",new mt(E,3)),m&&(C.setAttribute(\"color\",new mt(g,3)),C.hasColors=!0,C.alpha=v),C}function s(c){const h=new Xe,u=/solid([\\s\\S]*?)endsolid/g,f=/facet([\\s\\S]*?)endfacet/g;let d=0;const p=/[\\s]+([+-]?(?:\\d*)(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)/.source,m=new RegExp(\"vertex\"+p+p+p,\"g\"),g=new RegExp(\"normal\"+p+p+p,\"g\"),y=[],x=[],b=new I;let v,M=0,T=0,C=0;for(;(v=u.exec(c))!==null;){T=C;const _=v[0];for(;(v=f.exec(_))!==null;){let U=0,q=0;const K=v[0];for(;(v=g.exec(K))!==null;)b.x=parseFloat(v[1]),b.y=parseFloat(v[2]),b.z=parseFloat(v[3]),q++;for(;(v=m.exec(K))!==null;)y.push(parseFloat(v[1]),parseFloat(v[2]),parseFloat(v[3])),x.push(b.x,b.y,b.z),U++,C++;q!==1&&console.error(\"THREE.STLLoader: Something isn't right with the normal of face number \"+d),U!==3&&console.error(\"THREE.STLLoader: Something isn't right with the vertices of face number \"+d),d++}const E=T,F=C-T;h.addGroup(E,F,M),M++}return h.setAttribute(\"position\",new Ce(y,3)),h.setAttribute(\"normal\",new Ce(x,3)),h}function r(c){return typeof c!=\"string\"?sn.decodeText(new Uint8Array(c)):c}function o(c){if(typeof c==\"string\"){const h=new Uint8Array(c.length);for(let u=0;u<c.length;u++)h[u]=c.charCodeAt(u)&255;return h.buffer||h}else return c}const l=o(e);return t(l)?i(l):s(r(e))}}class c1 extends Xt{constructor(e){super(e)}load(e,t,n,i){const s=this,r=this.path===\"\"?sn.extractUrlBase(e):this.path,o=new $t(this.manager);o.setPath(this.path),o.setRequestHeader(this.requestHeader),o.setWithCredentials(this.withCredentials),o.load(e,function(l){try{t(s.parse(l,r))}catch(c){i?i(c):console.error(c),s.manager.itemError(e)}},n,i)}setMaterialOptions(e){return this.materialOptions=e,this}parse(e,t){const n=e.split(`\n`);let i={};const s=/\\s+/,r={};for(let l=0;l<n.length;l++){let c=n[l];if(c=c.trim(),c.length===0||c.charAt(0)===\"#\")continue;const h=c.indexOf(\" \");let u=h>=0?c.substring(0,h):c;u=u.toLowerCase();let f=h>=0?c.substring(h+1):\"\";if(f=f.trim(),u===\"newmtl\")i={name:f},r[f]=i;else if(u===\"ka\"||u===\"kd\"||u===\"ks\"||u===\"ke\"){const d=f.split(s,3);i[u]=[parseFloat(d[0]),parseFloat(d[1]),parseFloat(d[2])]}else i[u]=f}const o=new u1(this.resourcePath||t,this.materialOptions);return o.setCrossOrigin(this.crossOrigin),o.setManager(this.manager),o.setMaterials(r),o}}class u1{constructor(e=\"\",t={}){this.baseUrl=e,this.options=t,this.materialsInfo={},this.materials={},this.materialsArray=[],this.nameLookup={},this.crossOrigin=\"anonymous\",this.side=this.options.side!==void 0?this.options.side:bi,this.wrap=this.options.wrap!==void 0?this.options.wrap:fn}setCrossOrigin(e){return this.crossOrigin=e,this}setManager(e){this.manager=e}setMaterials(e){this.materialsInfo=this.convert(e),this.materials={},this.materialsArray=[],this.nameLookup={}}convert(e){if(!this.options)return e;const t={};for(const n in e){const i=e[n],s={};t[n]=s;for(const r in i){let o=!0,l=i[r];const c=r.toLowerCase();switch(c){case\"kd\":case\"ka\":case\"ks\":this.options&&this.options.normalizeRGB&&(l=[l[0]/255,l[1]/255,l[2]/255]),this.options&&this.options.ignoreZeroRGBs&&l[0]===0&&l[1]===0&&l[2]===0&&(o=!1);break}o&&(s[c]=l)}}return t}preload(){for(const e in this.materialsInfo)this.create(e)}getIndex(e){return this.nameLookup[e]}getAsArray(){let e=0;for(const t in this.materialsInfo)this.materialsArray[e]=this.create(t),this.nameLookup[t]=e,e++;return this.materialsArray}create(e){return this.materials[e]===void 0&&this.createMaterial_(e),this.materials[e]}createMaterial_(e){const t=this,n=this.materialsInfo[e],i={name:e,side:this.side};function s(o,l){return typeof l!=\"string\"||l===\"\"?\"\":/^https?:\\/\\//i.test(l)?l:o+l}function r(o,l){if(i[o])return;const c=t.getTextureParams(l,i),h=t.loadTexture(s(t.baseUrl,c.url));h.repeat.copy(c.scale),h.offset.copy(c.offset),h.wrapS=t.wrap,h.wrapT=t.wrap,(o===\"map\"||o===\"emissiveMap\")&&(h.encoding=it),i[o]=h}for(const o in n){const l=n[o];let c;if(l!==\"\")switch(o.toLowerCase()){case\"kd\":i.color=new we().fromArray(l).convertSRGBToLinear();break;case\"ks\":i.specular=new we().fromArray(l).convertSRGBToLinear();break;case\"ke\":i.emissive=new we().fromArray(l).convertSRGBToLinear();break;case\"map_kd\":r(\"map\",l);break;case\"map_ks\":r(\"specularMap\",l);break;case\"map_ke\":r(\"emissiveMap\",l);break;case\"norm\":r(\"normalMap\",l);break;case\"map_bump\":case\"bump\":r(\"bumpMap\",l);break;case\"map_d\":r(\"alphaMap\",l),i.transparent=!0;break;case\"ns\":i.shininess=parseFloat(l);break;case\"d\":c=parseFloat(l),c<1&&(i.opacity=c,i.transparent=!0);break;case\"tr\":c=parseFloat(l),this.options&&this.options.invertTrProperty&&(c=1-c),c>0&&(i.opacity=1-c,i.transparent=!0);break}}return this.materials[e]=new ti(i),this.materials[e]}getTextureParams(e,t){const n={scale:new fe(1,1),offset:new fe(0,0)},i=e.split(/\\s+/);let s;return s=i.indexOf(\"-bm\"),s>=0&&(t.bumpScale=parseFloat(i[s+1]),i.splice(s,2)),s=i.indexOf(\"-s\"),s>=0&&(n.scale.set(parseFloat(i[s+1]),parseFloat(i[s+2])),i.splice(s,4)),s=i.indexOf(\"-o\"),s>=0&&(n.offset.set(parseFloat(i[s+1]),parseFloat(i[s+2])),i.splice(s,4)),n.url=i.join(\" \").trim(),n}loadTexture(e,t,n,i,s){const r=this.manager!==void 0?this.manager:Yu;let o=r.getHandler(e);o===null&&(o=new zs(r)),o.setCrossOrigin&&o.setCrossOrigin(this.crossOrigin);const l=o.load(e,n,i,s);return t!==void 0&&(l.mapping=t),l}}const Ec=new WeakMap;class h1 extends Xt{constructor(e){super(e),this.decoderPath=\"\",this.decoderConfig={},this.decoderBinary=null,this.decoderPending=null,this.workerLimit=4,this.workerPool=[],this.workerNextTaskID=1,this.workerSourceURL=\"\",this.defaultAttributeIDs={position:\"POSITION\",normal:\"NORMAL\",color:\"COLOR\",uv:\"TEX_COORD\"},this.defaultAttributeTypes={position:\"Float32Array\",normal:\"Float32Array\",color:\"Float32Array\",uv:\"Float32Array\"}}setDecoderPath(e){return this.decoderPath=e,this}setDecoderConfig(e){return this.decoderConfig=e,this}setWorkerLimit(e){return this.workerLimit=e,this}load(e,t,n,i){const s=new $t(this.manager);s.setPath(this.path),s.setResponseType(\"arraybuffer\"),s.setRequestHeader(this.requestHeader),s.setWithCredentials(this.withCredentials),s.load(e,r=>{const o={attributeIDs:this.defaultAttributeIDs,attributeTypes:this.defaultAttributeTypes,useUniqueIDs:!1};this.decodeGeometry(r,o).then(t).catch(i)},n,i)}decodeDracoFile(e,t,n,i){const s={attributeIDs:n||this.defaultAttributeIDs,attributeTypes:i||this.defaultAttributeTypes,useUniqueIDs:!!n};this.decodeGeometry(e,s).then(t)}decodeGeometry(e,t){for(const l in t.attributeTypes){const c=t.attributeTypes[l];c.BYTES_PER_ELEMENT!==void 0&&(t.attributeTypes[l]=c.name)}const n=JSON.stringify(t);if(Ec.has(e)){const l=Ec.get(e);if(l.key===n)return l.promise;if(e.byteLength===0)throw new Error(\"THREE.DRACOLoader: Unable to re-decode a buffer with different settings. Buffer has already been transferred.\")}let i;const s=this.workerNextTaskID++,r=e.byteLength,o=this._getWorker(s,r).then(l=>(i=l,new Promise((c,h)=>{i._callbacks[s]={resolve:c,reject:h},i.postMessage({type:\"decode\",id:s,taskConfig:t,buffer:e},[e])}))).then(l=>this._createGeometry(l.geometry));return o.catch(()=>!0).then(()=>{i&&s&&this._releaseTask(i,s)}),Ec.set(e,{key:n,promise:o}),o}_createGeometry(e){const t=new Xe;e.index&&t.setIndex(new mt(e.index.array,1));for(let n=0;n<e.attributes.length;n++){const i=e.attributes[n],s=i.name,r=i.array,o=i.itemSize;t.setAttribute(s,new mt(r,o))}return t}_loadLibrary(e,t){const n=new $t(this.manager);return n.setPath(this.decoderPath),n.setResponseType(t),n.setWithCredentials(this.withCredentials),new Promise((i,s)=>{n.load(e,i,void 0,s)})}preload(){return this._initDecoder(),this}_initDecoder(){if(this.decoderPending)return this.decoderPending;const e=typeof WebAssembly!=\"object\"||this.decoderConfig.type===\"js\",t=[];return e?t.push(this._loadLibrary(\"draco_decoder.js\",\"text\")):(t.push(this._loadLibrary(\"draco_wasm_wrapper.js\",\"text\")),t.push(this._loadLibrary(\"draco_decoder.wasm\",\"arraybuffer\"))),this.decoderPending=Promise.all(t).then(n=>{const i=n[0];e||(this.decoderConfig.wasmBinary=n[1]);const s=f1.toString(),r=[\"/* draco decoder */\",i,\"\",\"/* worker */\",s.substring(s.indexOf(\"{\")+1,s.lastIndexOf(\"}\"))].join(`\n`);this.workerSourceURL=URL.createObjectURL(new Blob([r]))}),this.decoderPending}_getWorker(e,t){return this._initDecoder().then(()=>{if(this.workerPool.length<this.workerLimit){const i=new Worker(this.workerSourceURL);i._callbacks={},i._taskCosts={},i._taskLoad=0,i.postMessage({type:\"init\",decoderConfig:this.decoderConfig}),i.onmessage=function(s){const r=s.data;switch(r.type){case\"decode\":i._callbacks[r.id].resolve(r);break;case\"error\":i._callbacks[r.id].reject(r);break;default:console.error('THREE.DRACOLoader: Unexpected message, \"'+r.type+'\"')}},this.workerPool.push(i)}else this.workerPool.sort(function(i,s){return i._taskLoad>s._taskLoad?-1:1});const n=this.workerPool[this.workerPool.length-1];return n._taskCosts[e]=t,n._taskLoad+=t,n})}_releaseTask(e,t){e._taskLoad-=e._taskCosts[t],delete e._callbacks[t],delete e._taskCosts[t]}debug(){console.log(\"Task load: \",this.workerPool.map(e=>e._taskLoad))}dispose(){for(let e=0;e<this.workerPool.length;++e)this.workerPool[e].terminate();return this.workerPool.length=0,this}}function f1(){let a,e;onmessage=function(r){const o=r.data;switch(o.type){case\"init\":a=o.decoderConfig,e=new Promise(function(h){a.onModuleLoaded=function(u){h({draco:u})},DracoDecoderModule(a)});break;case\"decode\":const l=o.buffer,c=o.taskConfig;e.then(h=>{const u=h.draco,f=new u.Decoder,d=new u.DecoderBuffer;d.Init(new Int8Array(l),l.byteLength);try{const p=t(u,f,d,c),m=p.attributes.map(g=>g.array.buffer);p.index&&m.push(p.index.array.buffer),self.postMessage({type:\"decode\",id:o.id,geometry:p},m)}catch(p){console.error(p),self.postMessage({type:\"error\",id:o.id,error:p.message})}finally{u.destroy(d),u.destroy(f)}});break}};function t(r,o,l,c){const h=c.attributeIDs,u=c.attributeTypes;let f,d;const p=o.GetEncodedGeometryType(l);if(p===r.TRIANGULAR_MESH)f=new r.Mesh,d=o.DecodeBufferToMesh(l,f);else if(p===r.POINT_CLOUD)f=new r.PointCloud,d=o.DecodeBufferToPointCloud(l,f);else throw new Error(\"THREE.DRACOLoader: Unexpected geometry type.\");if(!d.ok()||f.ptr===0)throw new Error(\"THREE.DRACOLoader: Decoding failed: \"+d.error_msg());const m={index:null,attributes:[]};for(const g in h){const y=self[u[g]];let x,b;if(c.useUniqueIDs)b=h[g],x=o.GetAttributeByUniqueId(f,b);else{if(b=o.GetAttributeId(f,r[h[g]]),b===-1)continue;x=o.GetAttribute(f,b)}m.attributes.push(i(r,o,f,g,y,x))}return p===r.TRIANGULAR_MESH&&(m.index=n(r,o,f)),r.destroy(f),m}function n(r,o,l){const h=l.num_faces()*3,u=h*4,f=r._malloc(u);o.GetTrianglesUInt32Array(l,u,f);const d=new Uint32Array(r.HEAPF32.buffer,f,h).slice();return r._free(f),{array:d,itemSize:1}}function i(r,o,l,c,h,u){const f=u.num_components(),p=l.num_points()*f,m=p*h.BYTES_PER_ELEMENT,g=s(r,h),y=r._malloc(m);o.GetAttributeDataArrayForAllPoints(l,u,g,m,y);const x=new h(r.HEAPF32.buffer,y,p).slice();return r._free(y),{name:c,array:x,itemSize:f}}function s(r,o){switch(o){case Float32Array:return r.DT_FLOAT32;case Int8Array:return r.DT_INT8;case Int16Array:return r.DT_INT16;case Int32Array:return r.DT_INT32;case Uint8Array:return r.DT_UINT8;case Uint16Array:return r.DT_UINT16;case Uint32Array:return r.DT_UINT32}}}const dl=new Li,$n=new o1;$n.addHandler(/\\.dds$/i,new r1);$n.addHandler(/\\.tga$/i,new xu);function d1(a){return dl.setFromObject(a),dl.getSize(new I)}function p1(a){return dl.setFromObject(a),dl.getCenter(new I)}function m1(a){const e=a.split(\".\");if(e.length<=1)return\"\";{let t=e.pop();return t=t.toLowerCase(),t}}function g1(a,e,t,n,i){let s;e?s=e:s=m1(a),s===\"glb\"&&(s=\"gltf\");let r={loader:null,getObject:null};switch(s){case\"dae\":r={loader:new wM($n),getObject:o=>o.scene};break;case\"fbx\":r={loader:new uM($n)};break;case\"gltf\":r={loader:new MM($n),getObject:o=>{const l=o.scene;return o.animations&&(l.animations=o.animations),l}},x1(t,r,i);break;case\"obj\":r={loader:new s1($n)};break;case\"ply\":r={loader:new a1($n),getObject:o=>(o.computeVertexNormals(),new Rt(o,n===\"MeshStandardMaterial\"?new Vs:new ln({vertexColors:!0})))};break;case\"stl\":r={loader:new l1($n),getObject:o=>new Rt(o,new ti)};break;case\"json\":r={loader:new tm($n)};break}return r}function y1(){return new c1($n)}function x1(a,e,t){if(a){const n=new h1;n.setDecoderPath(t||\"assets/draco/gltf/\"),n.setDecoderConfig({type:\"js\"}),e.loader.setDRACOLoader(n)}}var v1=(a,e)=>{const t=a.__vccOpts||a;for(const[n,i]of e)t[n]=i;return t};const _1=Et.defineComponent({name:\"vue3dLoader\"}),b1=Et.defineComponent({..._1,props:{filePath:null,fileType:null,width:null,height:null,position:null,rotation:null,scale:null,lights:{default:()=>[{type:\"AmbientLight\",color:11184810},{type:\"DirectionalLight\",position:{x:1,y:1,z:1},color:16777215,intensity:.8}]},cameraPosition:{default:()=>({x:0,y:0,z:0})},cameraRotation:null,cameraUp:null,cameraLookAt:null,backgroundColor:{default:()=>16777215},backgroundAlpha:{default:()=>1},controlsOptions:null,crossOrigin:{default:\"anonymous\"},requestHeader:null,outputEncoding:{default:()=>\"linear\"},webGLRendererOptions:{default:()=>({})},mtlPath:{default:\"\"},showFps:{type:Boolean,default:!1},textureImage:{default:\"\"},clearScene:{type:Boolean,default:!1},parallelLoad:{type:Boolean,default:!1},labels:{default:()=>[]},autoPlay:{type:Boolean,default:!0},enableDraco:{type:Boolean,default:!1},dracoDir:null,intersectRecursive:{type:Boolean,default:!1},enableDamping:{type:Boolean},dampingFactor:null,verticalCtrl:{type:[Boolean,Object],default:!1},horizontalCtrl:{type:[Boolean,Object],default:!1},plyMaterial:{default:\"MeshStandardMaterial\"},enableAxesHelper:{type:Boolean,default:!1},axesHelperSize:{default:100},enableGridHelper:{type:Boolean,default:!1},minDistance:{default:0},maxDistance:{default:1/0},pointLightFollowCamera:{type:Boolean}},emits:[\"mousedown\",\"mousemove\",\"mouseup\",\"click\",\"dblclick\",\"load\",\"process\",\"error\"],setup(a,{expose:e,emit:t}){const n=a;let i=null;const s=new rm,r=new fe,o=new Ot(45,1,.1,1e5),l=new $u;let c=new El,h=null,u={},f=[],d=null,p=0,m=null,g=null,y=null,x=null,b=null;const v=Et.ref({width:n.width||0,height:n.height||0}),M=Et.ref(0),T=Et.ref(!1),C=Et.ref(!1),_=Et.ref(null),E=Et.ref(null);Et.onMounted(()=>{q()}),Et.onBeforeUnmount(()=>{U()}),Et.watch([()=>n.autoPlay],()=>{Se()}),Et.watch([()=>n.width,()=>n.height],()=>{v.value={width:n.width||0,height:n.height||0}}),Et.watch([()=>n.enableAxesHelper,()=>n.axesHelperSize,()=>n.enableGridHelper],()=>{me()}),Et.watch([()=>n.minDistance,()=>n.maxDistance],()=>{D()}),Et.watch([()=>n.filePath,()=>n.fileType,()=>n.mtlPath,()=>n.clearScene,()=>n.backgroundAlpha,()=>n.backgroundColor],V=>{(V[0]||V[1])&&F(),V[2]&&be(),V[3]&&Ue(),(V[4]||V[5])&&ae()},{deep:!0}),Et.watch([()=>n.rotation,()=>n.position,()=>n.scale,()=>n.lights],V=>{const B=[\"rotation\",\"position\",\"scale\"];V.forEach((ne,de)=>{de<3&&ne?gt(B[de],ne):H()})},{deep:!0}),Et.watch([()=>v],()=>{re(!0),ae()},{deep:!0}),Et.watch([()=>n.controlsOptions],()=>{ge()},{deep:!0}),Et.watch([()=>n.cameraRotation,()=>n.cameraPosition],()=>{re()},{deep:!0}),Et.watch([()=>n.labels],()=>{k()},{deep:!0});function F(){U(),q()}function U(){p&&cancelAnimationFrame(p),h&&h.dispose(),u&&Object.keys(u).length>0&&(u.dispose(),u={});const V=_.value;V.removeEventListener(\"mousedown\",O,!1),V.removeEventListener(\"mousemove\",j,!1),V.removeEventListener(\"mouseup\",Y,!1),V.removeEventListener(\"click\",W,!1),V.removeEventListener(\"dblclick\",Z,!1),window.removeEventListener(\"resize\",X,!1),i=null,c&&c.clear()}function q(){const{filePath:V,outputEncoding:B,webGLRendererOptions:ne,showFps:de,enableDamping:Ee,dampingFactor:z,labels:ye}=n;V&&typeof V==\"object\"&&(C.value=!0);const J=_.value;K(J),X();const Ae=Object.assign({},{antialias:!0,alpha:!0},ne,{canvas:E.value});if(!h){h=new Nu(Ae),h.shadowMap.enabled=!0;const $e=B===\"linear\"?Mi:it;h.outputEncoding=$e}(!u||Object.keys(u).length<=0)&&(u=new kw(o,J),Ee&&(u.enableDamping=!0,z!=null&&(u.dampingFactor=z))),D(),me(),be(),Q(),G(!0),J.addEventListener(\"mousedown\",O,!1),J.addEventListener(\"mouseup\",Y,!1),J.addEventListener(\"click\",W,!1),J.addEventListener(\"dblclick\",Z,!1),window.addEventListener(\"resize\",X,!1),de&&(m=_o(),J.appendChild(m.dom)),ve(),ye&&ye.length>0&&k()}function K(V){const{width:B,height:ne}=n;B&&(V.style.width=`${B}px`),ne&&(V.style.height=`${ne}px`)}function G(V){const B=_.value;V?B.addEventListener(\"mousemove\",j,!1):B.removeEventListener(\"mousemove\",j,!1)}function X(){const{width:V,height:B}=n;(!V||!B)&&Et.nextTick(()=>{const ne=_.value;v.value={width:V||ne.offsetWidth,height:B||ne.offsetHeight}})}function O(V){G(!1);const B=ee(V.clientX,V.clientY);t(\"mousedown\",V,B)}function j(V){const B=ee(V.clientX,V.clientY);t(\"mousemove\",V,B)}function Y(V){const B=ee(V.clientX,V.clientY);t(\"mouseup\",V,B),G(!0)}function W(V){const B=ee(V.clientX,V.clientY);t(\"click\",V,B)}function Z(V){const B=ee(V.clientX,V.clientY);t(\"dblclick\",V,B)}function ee(V,B){const ne=ot();if(!ne||!_.value)return null;const de=_.value.getBoundingClientRect();V-=de.left,B-=de.top,r.x=V/v.value.width*2-1,r.y=-(B/v.value.height)*2+1,s.setFromCamera(r,o);const Ee=s.intersectObject(ne,n.intersectRecursive);return(Ee&&Ee.length)>0?Ee[0]:null}function Q(){ae(),re(),H(),ge()}function ie(){if(!i)return;const V=C.value?_e(i):null,{position:B,rotation:ne,scale:de}=n;B&&(B instanceof Array?V!=null?i.position.set(B[V].x,B[V].y,B[V].z):i.position.set(0,0,0):i.position.set(B.x,B.y,B.z)),ne&&(ne instanceof Array?V!=null?i.rotation.set(ne[V].x,ne[V].y,ne[V].z):i.rotation.set(0,0,0):i.rotation.set(ne.x,ne.y,ne.z)),de&&(de instanceof Array?V!=null?i.scale.set(de[V].x,de[V].y,de[V].z):i.scale.set(1,1,1):i.scale.set(de.x,de.y,de.z))}function ae(){const{backgroundColor:V,backgroundAlpha:B}=n;h.setSize(v.value.width,v.value.height),h.setPixelRatio(window.devicePixelRatio||1),h.setClearColor(new we(V).getHex()),h.setClearAlpha(B)}function re(V){const{cameraPosition:B,cameraRotation:ne,cameraUp:de,cameraLookAt:Ee}=n;if(o.aspect=v.value.width/v.value.height,o.updateProjectionMatrix(),!V)if(!Ee||!de){if(!i)return;const z=d1(i).length();o.position.set(B.x,B.y,B.z),ne&&o.rotation.set(ne.x,ne.y,ne.z),B.x===0&&B.y===0&&B.z===0&&(o.position.z=z),o.lookAt(new I)}else o.position.set(B.x,B.y,B.z),ne&&o.rotation.set(ne.x,ne.y,ne.z),o.up.set(de.x,de.y,de.z),o.lookAt(new I(Ee.x,Ee.y,Ee.z))}function H(){const{lights:V}=n;c.remove(...f),f=[],V.forEach(B=>{if(!B.type)return;const ne=B.type.toLowerCase();let de=null;if(ne===\"ambient\"||ne===\"ambientlight\"){const Ee=B.color===0?B.color:B.color||4210752,z=B.intensity===0?B.intensity:B.intensity||1;de=new Xo(Ee,z)}if(ne===\"point\"||ne===\"pointlight\"){const Ee=B.color===0?B.color:B.color||16777215,z=B.intensity===0?B.intensity:B.intensity||1,ye=B.distance||0,J=B.decay===0?B.decay:B.decay||1;de=new es(Ee,z,ye,J),B.position&&de.position.copy(B.position)}if(ne===\"directional\"||ne===\"directionallight\"){const Ee=B.color===0?B.color:B.color||16777215,z=B.intensity===0?B.intensity:B.intensity||1;de=new Wr(Ee,z),B.position&&de.position.copy(B.position),B.target&&de.target.copy(B.target)}if(ne===\"hemisphere\"||ne===\"hemispherelight\"){const Ee=B.skyColor===0?B.skyColor:B.skyColor||16777215,z=B.groundColor===0?B.groundColor:B.groundColor||16777215,ye=B.intensity===0?B.intensity:B.intensity||1;de=new Zu(Ee,z,ye),B.position&&de.position.copy(B.position)}de&&(f.push(de),c.add(de))})}function ge(){const{controlsOptions:V}=n;V&&Object.assign(u,V)}function be(){const{filePath:V,parallelLoad:B}=n;B&&C?V.forEach((ne,de)=>{Fe(de)}):Fe()}function Fe(V){const{filePath:B,fileType:ne,crossOrigin:de,requestHeader:Ee,mtlPath:z,enableDraco:ye,dracoDir:J,plyMaterial:Pe}=n;if(!B)return;const Ae=V||M.value,$e=C.value?B[Ae]:B,Tt=typeof ne==\"string\"?ne:ne?ne[Ae]:\"\",at=g1($e,Tt,ye,Pe,J);d=at.loader;const wt=at.getObject?at.getObject:ue;if(i&&Ae===0&&c.remove(i),Ee&&d.setRequestHeader(Ee),de&&d.setCrossOrigin(de),z)if(!(typeof z==\"object\"))Ve($e,wt,Ae);else{if(!z[Ae]){xe($e,wt,Ae);return}Ve($e,wt,Ae)}else xe($e,wt,Ae)}function xe(V,B,ne){const{textureImage:de,parallelLoad:Ee}=n;d.load(V,(...z)=>{if(i=B(...z),ce(i,V),de){const J=typeof de==\"string\"?de:de[ne];J&&He(i,J)}t(\"load\",c)},z=>{Ee||Ze(z);const ye=M.value+1;t(\"process\",z,ye)},z=>{t(\"error\",z)})}function Ve(V,B,ne){const{crossOrigin:de,requestHeader:Ee,mtlPath:z}=n,ye=y1();de&&ye.setCrossOrigin(de),Ee&&ye.setRequestHeader(Ee);const J=typeof z==\"string\"?z:z[ne],Pe=/^(.*\\/)([^/]*)$/.exec(J),Ae=Pe[1],$e=Pe[2];ye.setPath(Ae).load($e,Tt=>{Tt.preload(),d.setMaterials(Tt),xe(V,B,ne)})}function ue(V){return V}function ce(V,B){const ne=p1(i);T.value||(c.position.copy(ne.negate()),T.value=!0),i=V;let de=B.split(\"/\");de=de[de.length-1],i.fileName=de,c.add(i),re(),ie(),Se()}function ve(){p=requestAnimationFrame(ve),Le();const V=l.getDelta();g&&g instanceof Qa&&g.update(V),g&&g instanceof Array&&g.forEach(B=>{B.update(V)}),u&&u.update(),ke()}function ke(){const{pointLightFollowCamera:V}=n;V&&Te(),h.render(c,o)}function Le(){const{showFps:V}=n;V&&m.update()}function Ze(V){const{filePath:B}=n;Math.floor(V.loaded/V.total*100)===100&&(C.value&&B.length>M.value?Et.nextTick(()=>{if(M.value++,M.value===B.length){M.value=0;return}Fe()}):M.value=0)}function He(V,B){y||(y=new zs),V.traverse(ne=>{ne.isMesh&&y.load(B,de=>{ne.material.map=de,ne.material.needsUpdate=!0},()=>{},de=>{t(\"error\",de)})})}function Ue(){c.clear()}function gt(V,B){const ne=ot();if(!!ne){if(C.value){ne.children.forEach(de=>{const Ee=_e(de),z=V===\"scale\"?1:0;B[Ee]?de[V].set(B[Ee].x,B[Ee].y,B[Ee].z):de[V].set(z,z,z)});return}ne[V].set(B.x,B.y,B.z)}}function ot(){return C.value?c:i}function k(){const{labels:V}=n;if(!V||V.length<=0)return;P();const B=C.value?c:i,ne=Ee=>(y||(y=new zs),y.load(Ee)),de=(Ee,z)=>{const ye=oe(Ee,z),J=new It(ye);return J.needsUpdate=!0,J};V.forEach(Ee=>{const z=Ee.image?ne(Ee.image):de(Ee.text,Ee.textStyle||{}),ye=new Cl({map:z,color:Ee.spriteMaterialColor||16777215}),J=new yo(ye);Ee.scale?J.scale.set(Ee.scale.x||1,Ee.scale.y||1,Ee.scale.z||0):J.scale.set(1,1,0),Ee.position&&J.position.set(Ee.position.x,Ee.position.y,Ee.position.z),Ee.sid&&(J.sid=Ee.sid),B.add(J)})}function P(){const V=c.children;for(let B=V.length-1;B>=0;B--){const ne=V[B];ne&&(ne instanceof pn&&ne.children&&(c.children[B].children=ne.children.map(de=>de instanceof yo?null:de).filter(de=>de)),ne instanceof yo&&c.remove(ne))}}function oe(V,B){const ne=(wt,et,At,_t,Vn,cn)=>{wt.beginPath(),wt.moveTo(et+cn,At),wt.lineTo(et+_t-cn,At),wt.quadraticCurveTo(et+_t,At,et+_t,At+cn),wt.lineTo(et+_t,At+Vn-cn),wt.quadraticCurveTo(et+_t,At+Vn,et+_t-cn,At+Vn),wt.lineTo(et+cn,At+Vn),wt.quadraticCurveTo(et,At+Vn,et,At+Vn-cn),wt.lineTo(et,At+cn),wt.quadraticCurveTo(et,At,et+cn,At),wt.closePath(),wt.fill(),wt.stroke()},de=B.fontFamily||\"Arial\",Ee=B.fontSize===0||B.fontSize?B.fontSize:18,z=B.color||\"#ffffff\",ye=B.fontWeight||\"normal\",J=B.borderWidth===0||B.borderWidth?B.borderWidth:4,Pe=B.borderColor||\"rgba(0,0,0,1)\",Ae=B.borderRadius===0||B.borderRadius?B.borderRadius:4,$e=B.backgroundColor||\"rgba(255, 255, 255, 1)\",Tt=document.createElement(\"canvas\"),at=Tt.getContext(\"2d\");if(at){at.font=`${ye} ${Ee}px ${de}`;const et=at.measureText(V).width;at.fillStyle=$e,at.strokeStyle=Pe,at.lineWidth=J,ne(at,J/2,J/2,et+J,Ee*1.4+J,Ae),at.fillStyle=z,at.fillText(V,J,Ee+J)}return Tt}function _e(V){const{filePath:B}=n;let ne;return B instanceof Array&&(ne=B.map((de,Ee)=>{if(de.indexOf(V.fileName)>-1)return Ee}).filter(de=>de!=null)[0]),ne}function Se(){const V=ot();if(!!V){if(C.value){je(V);return}Ie(V)}}function Ie(V){const{autoPlay:B}=n;g=new Qa(V),V.animations&&V.animations.length>0&&V.animations.forEach(ne=>{if(ne){const de=g.clipAction(ne);B?de.play():de.stop()}})}function je(V){const{autoPlay:B}=n;g=[],V.children.forEach((ne,de)=>{g.push(new Qa(ne)),ne.animations&&ne.animations.length>0&&ne.animations.forEach(Ee=>{if(Ee){const z=g[de].clipAction(Ee);B?z.play():z.stop()}})})}function D(){if(!u)return;const{verticalCtrl:V,horizontalCtrl:B,minDistance:ne,maxDistance:de}=n;V&&typeof V==\"boolean\"&&(u.minAzimuthAngle=-2*Math.PI,u.maxAzimuthAngle=-2*Math.PI),V&&typeof V==\"object\"&&(u.minAzimuthAngle=V.min,u.maxAzimuthAngle=V.max),B&&typeof B==\"boolean\"&&(u.minPolarAngle=1,u.maxPolarAngle=1),B&&typeof B==\"object\"&&(u.minPolarAngle=B.min,u.maxPolarAngle=B.max),ne!=0&&typeof ne==\"number\"&&(u.minDistance=ne),de!=1/0&&typeof de==\"number\"&&(u.maxDistance=de)}function me(){const{enableAxesHelper:V,enableGridHelper:B,axesHelperSize:ne}=n;V?(x=new lm(ne),c.add(x)):x&&c.remove(x),B?(b=new am(2e3,100),c.add(b)):b&&c.remove(b)}function Te(){const V=o.position.clone();c.children.forEach(B=>{B instanceof es&&B.position.set(V.x,V.y,V.z)})}return e({camera:o,scene:c}),(V,B)=>(Et.openBlock(),Et.createElementBlock(\"div\",{ref_key:\"containerElement\",ref:_,class:\"viewer-container\"},[Et.createElementVNode(\"canvas\",{ref_key:\"canvasElement\",ref:E,class:\"viewer-canvas\"},null,512)],512))}});var pl=v1(b1,[[\"__scopeId\",\"data-v-e92274c2\"]]);const w1=a=>{a.component(pl.name,pl)};var M1={install:w1,vue3dLoader:pl};exports.Three=Nw;exports.default=M1;exports.vue3dLoader=pl;\n"
  },
  {
    "path": "dist/vue-3d-loader.esm.js",
    "content": "import { defineComponent, ref, onMounted, onBeforeUnmount, watch, nextTick, openBlock, createElementBlock, createElementVNode } from \"vue\";\n/**\n * @license\n * Copyright 2010-2022 Three.js Authors\n * SPDX-License-Identifier: MIT\n */\nconst REVISION = \"143\";\nconst MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };\nconst TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };\nconst CullFaceNone = 0;\nconst CullFaceBack = 1;\nconst CullFaceFront = 2;\nconst CullFaceFrontBack = 3;\nconst BasicShadowMap = 0;\nconst PCFShadowMap = 1;\nconst PCFSoftShadowMap = 2;\nconst VSMShadowMap = 3;\nconst FrontSide = 0;\nconst BackSide = 1;\nconst DoubleSide = 2;\nconst FlatShading = 1;\nconst SmoothShading = 2;\nconst NoBlending = 0;\nconst NormalBlending = 1;\nconst AdditiveBlending = 2;\nconst SubtractiveBlending = 3;\nconst MultiplyBlending = 4;\nconst CustomBlending = 5;\nconst AddEquation = 100;\nconst SubtractEquation = 101;\nconst ReverseSubtractEquation = 102;\nconst MinEquation = 103;\nconst MaxEquation = 104;\nconst ZeroFactor = 200;\nconst OneFactor = 201;\nconst SrcColorFactor = 202;\nconst OneMinusSrcColorFactor = 203;\nconst SrcAlphaFactor = 204;\nconst OneMinusSrcAlphaFactor = 205;\nconst DstAlphaFactor = 206;\nconst OneMinusDstAlphaFactor = 207;\nconst DstColorFactor = 208;\nconst OneMinusDstColorFactor = 209;\nconst SrcAlphaSaturateFactor = 210;\nconst NeverDepth = 0;\nconst AlwaysDepth = 1;\nconst LessDepth = 2;\nconst LessEqualDepth = 3;\nconst EqualDepth = 4;\nconst GreaterEqualDepth = 5;\nconst GreaterDepth = 6;\nconst NotEqualDepth = 7;\nconst MultiplyOperation = 0;\nconst MixOperation = 1;\nconst AddOperation = 2;\nconst NoToneMapping = 0;\nconst LinearToneMapping = 1;\nconst ReinhardToneMapping = 2;\nconst CineonToneMapping = 3;\nconst ACESFilmicToneMapping = 4;\nconst CustomToneMapping = 5;\nconst UVMapping = 300;\nconst CubeReflectionMapping = 301;\nconst CubeRefractionMapping = 302;\nconst EquirectangularReflectionMapping = 303;\nconst EquirectangularRefractionMapping = 304;\nconst CubeUVReflectionMapping = 306;\nconst RepeatWrapping = 1e3;\nconst ClampToEdgeWrapping = 1001;\nconst MirroredRepeatWrapping = 1002;\nconst NearestFilter = 1003;\nconst NearestMipmapNearestFilter = 1004;\nconst NearestMipMapNearestFilter = 1004;\nconst NearestMipmapLinearFilter = 1005;\nconst NearestMipMapLinearFilter = 1005;\nconst LinearFilter = 1006;\nconst LinearMipmapNearestFilter = 1007;\nconst LinearMipMapNearestFilter = 1007;\nconst LinearMipmapLinearFilter = 1008;\nconst LinearMipMapLinearFilter = 1008;\nconst UnsignedByteType = 1009;\nconst ByteType = 1010;\nconst ShortType = 1011;\nconst UnsignedShortType = 1012;\nconst IntType = 1013;\nconst UnsignedIntType = 1014;\nconst FloatType = 1015;\nconst HalfFloatType = 1016;\nconst UnsignedShort4444Type = 1017;\nconst UnsignedShort5551Type = 1018;\nconst UnsignedInt248Type = 1020;\nconst AlphaFormat = 1021;\nconst RGBFormat = 1022;\nconst RGBAFormat = 1023;\nconst LuminanceFormat = 1024;\nconst LuminanceAlphaFormat = 1025;\nconst DepthFormat = 1026;\nconst DepthStencilFormat = 1027;\nconst RedFormat = 1028;\nconst RedIntegerFormat = 1029;\nconst RGFormat = 1030;\nconst RGIntegerFormat = 1031;\nconst RGBAIntegerFormat = 1033;\nconst RGB_S3TC_DXT1_Format = 33776;\nconst RGBA_S3TC_DXT1_Format = 33777;\nconst RGBA_S3TC_DXT3_Format = 33778;\nconst RGBA_S3TC_DXT5_Format = 33779;\nconst RGB_PVRTC_4BPPV1_Format = 35840;\nconst RGB_PVRTC_2BPPV1_Format = 35841;\nconst RGBA_PVRTC_4BPPV1_Format = 35842;\nconst RGBA_PVRTC_2BPPV1_Format = 35843;\nconst RGB_ETC1_Format = 36196;\nconst RGB_ETC2_Format = 37492;\nconst RGBA_ETC2_EAC_Format = 37496;\nconst RGBA_ASTC_4x4_Format = 37808;\nconst RGBA_ASTC_5x4_Format = 37809;\nconst RGBA_ASTC_5x5_Format = 37810;\nconst RGBA_ASTC_6x5_Format = 37811;\nconst RGBA_ASTC_6x6_Format = 37812;\nconst RGBA_ASTC_8x5_Format = 37813;\nconst RGBA_ASTC_8x6_Format = 37814;\nconst RGBA_ASTC_8x8_Format = 37815;\nconst RGBA_ASTC_10x5_Format = 37816;\nconst RGBA_ASTC_10x6_Format = 37817;\nconst RGBA_ASTC_10x8_Format = 37818;\nconst RGBA_ASTC_10x10_Format = 37819;\nconst RGBA_ASTC_12x10_Format = 37820;\nconst RGBA_ASTC_12x12_Format = 37821;\nconst RGBA_BPTC_Format = 36492;\nconst LoopOnce = 2200;\nconst LoopRepeat = 2201;\nconst LoopPingPong = 2202;\nconst InterpolateDiscrete = 2300;\nconst InterpolateLinear = 2301;\nconst InterpolateSmooth = 2302;\nconst ZeroCurvatureEnding = 2400;\nconst ZeroSlopeEnding = 2401;\nconst WrapAroundEnding = 2402;\nconst NormalAnimationBlendMode = 2500;\nconst AdditiveAnimationBlendMode = 2501;\nconst TrianglesDrawMode = 0;\nconst TriangleStripDrawMode = 1;\nconst TriangleFanDrawMode = 2;\nconst LinearEncoding = 3e3;\nconst sRGBEncoding = 3001;\nconst BasicDepthPacking = 3200;\nconst RGBADepthPacking = 3201;\nconst TangentSpaceNormalMap = 0;\nconst ObjectSpaceNormalMap = 1;\nconst NoColorSpace = \"\";\nconst SRGBColorSpace = \"srgb\";\nconst LinearSRGBColorSpace = \"srgb-linear\";\nconst ZeroStencilOp = 0;\nconst KeepStencilOp = 7680;\nconst ReplaceStencilOp = 7681;\nconst IncrementStencilOp = 7682;\nconst DecrementStencilOp = 7683;\nconst IncrementWrapStencilOp = 34055;\nconst DecrementWrapStencilOp = 34056;\nconst InvertStencilOp = 5386;\nconst NeverStencilFunc = 512;\nconst LessStencilFunc = 513;\nconst EqualStencilFunc = 514;\nconst LessEqualStencilFunc = 515;\nconst GreaterStencilFunc = 516;\nconst NotEqualStencilFunc = 517;\nconst GreaterEqualStencilFunc = 518;\nconst AlwaysStencilFunc = 519;\nconst StaticDrawUsage = 35044;\nconst DynamicDrawUsage = 35048;\nconst StreamDrawUsage = 35040;\nconst StaticReadUsage = 35045;\nconst DynamicReadUsage = 35049;\nconst StreamReadUsage = 35041;\nconst StaticCopyUsage = 35046;\nconst DynamicCopyUsage = 35050;\nconst StreamCopyUsage = 35042;\nconst GLSL1 = \"100\";\nconst GLSL3 = \"300 es\";\nconst _SRGBAFormat = 1035;\nclass EventDispatcher {\n  addEventListener(type, listener) {\n    if (this._listeners === void 0)\n      this._listeners = {};\n    const listeners = this._listeners;\n    if (listeners[type] === void 0) {\n      listeners[type] = [];\n    }\n    if (listeners[type].indexOf(listener) === -1) {\n      listeners[type].push(listener);\n    }\n  }\n  hasEventListener(type, listener) {\n    if (this._listeners === void 0)\n      return false;\n    const listeners = this._listeners;\n    return listeners[type] !== void 0 && listeners[type].indexOf(listener) !== -1;\n  }\n  removeEventListener(type, listener) {\n    if (this._listeners === void 0)\n      return;\n    const listeners = this._listeners;\n    const listenerArray = listeners[type];\n    if (listenerArray !== void 0) {\n      const index2 = listenerArray.indexOf(listener);\n      if (index2 !== -1) {\n        listenerArray.splice(index2, 1);\n      }\n    }\n  }\n  dispatchEvent(event) {\n    if (this._listeners === void 0)\n      return;\n    const listeners = this._listeners;\n    const listenerArray = listeners[event.type];\n    if (listenerArray !== void 0) {\n      event.target = this;\n      const array = listenerArray.slice(0);\n      for (let i = 0, l = array.length; i < l; i++) {\n        array[i].call(this, event);\n      }\n      event.target = null;\n    }\n  }\n}\nconst _lut = [\"00\", \"01\", \"02\", \"03\", \"04\", \"05\", \"06\", \"07\", \"08\", \"09\", \"0a\", \"0b\", \"0c\", \"0d\", \"0e\", \"0f\", \"10\", \"11\", \"12\", \"13\", \"14\", \"15\", \"16\", \"17\", \"18\", \"19\", \"1a\", \"1b\", \"1c\", \"1d\", \"1e\", \"1f\", \"20\", \"21\", \"22\", \"23\", \"24\", \"25\", \"26\", \"27\", \"28\", \"29\", \"2a\", \"2b\", \"2c\", \"2d\", \"2e\", \"2f\", \"30\", \"31\", \"32\", \"33\", \"34\", \"35\", \"36\", \"37\", \"38\", \"39\", \"3a\", \"3b\", \"3c\", \"3d\", \"3e\", \"3f\", \"40\", \"41\", \"42\", \"43\", \"44\", \"45\", \"46\", \"47\", \"48\", \"49\", \"4a\", \"4b\", \"4c\", \"4d\", \"4e\", \"4f\", \"50\", \"51\", \"52\", \"53\", \"54\", \"55\", \"56\", \"57\", \"58\", \"59\", \"5a\", \"5b\", \"5c\", \"5d\", \"5e\", \"5f\", \"60\", \"61\", \"62\", \"63\", \"64\", \"65\", \"66\", \"67\", \"68\", \"69\", \"6a\", \"6b\", \"6c\", \"6d\", \"6e\", \"6f\", \"70\", \"71\", \"72\", \"73\", \"74\", \"75\", \"76\", \"77\", \"78\", \"79\", \"7a\", \"7b\", \"7c\", \"7d\", \"7e\", \"7f\", \"80\", \"81\", \"82\", \"83\", \"84\", \"85\", \"86\", \"87\", \"88\", \"89\", \"8a\", \"8b\", \"8c\", \"8d\", \"8e\", \"8f\", \"90\", \"91\", \"92\", \"93\", \"94\", \"95\", \"96\", \"97\", \"98\", \"99\", \"9a\", \"9b\", \"9c\", \"9d\", \"9e\", \"9f\", \"a0\", \"a1\", \"a2\", \"a3\", \"a4\", \"a5\", \"a6\", \"a7\", \"a8\", \"a9\", \"aa\", \"ab\", \"ac\", \"ad\", \"ae\", \"af\", \"b0\", \"b1\", \"b2\", \"b3\", \"b4\", \"b5\", \"b6\", \"b7\", \"b8\", \"b9\", \"ba\", \"bb\", \"bc\", \"bd\", \"be\", \"bf\", \"c0\", \"c1\", \"c2\", \"c3\", \"c4\", \"c5\", \"c6\", \"c7\", \"c8\", \"c9\", \"ca\", \"cb\", \"cc\", \"cd\", \"ce\", \"cf\", \"d0\", \"d1\", \"d2\", \"d3\", \"d4\", \"d5\", \"d6\", \"d7\", \"d8\", \"d9\", \"da\", \"db\", \"dc\", \"dd\", \"de\", \"df\", \"e0\", \"e1\", \"e2\", \"e3\", \"e4\", \"e5\", \"e6\", \"e7\", \"e8\", \"e9\", \"ea\", \"eb\", \"ec\", \"ed\", \"ee\", \"ef\", \"f0\", \"f1\", \"f2\", \"f3\", \"f4\", \"f5\", \"f6\", \"f7\", \"f8\", \"f9\", \"fa\", \"fb\", \"fc\", \"fd\", \"fe\", \"ff\"];\nlet _seed = 1234567;\nconst DEG2RAD = Math.PI / 180;\nconst RAD2DEG = 180 / Math.PI;\nfunction generateUUID() {\n  const d0 = Math.random() * 4294967295 | 0;\n  const d1 = Math.random() * 4294967295 | 0;\n  const d2 = Math.random() * 4294967295 | 0;\n  const d3 = Math.random() * 4294967295 | 0;\n  const uuid = _lut[d0 & 255] + _lut[d0 >> 8 & 255] + _lut[d0 >> 16 & 255] + _lut[d0 >> 24 & 255] + \"-\" + _lut[d1 & 255] + _lut[d1 >> 8 & 255] + \"-\" + _lut[d1 >> 16 & 15 | 64] + _lut[d1 >> 24 & 255] + \"-\" + _lut[d2 & 63 | 128] + _lut[d2 >> 8 & 255] + \"-\" + _lut[d2 >> 16 & 255] + _lut[d2 >> 24 & 255] + _lut[d3 & 255] + _lut[d3 >> 8 & 255] + _lut[d3 >> 16 & 255] + _lut[d3 >> 24 & 255];\n  return uuid.toLowerCase();\n}\nfunction clamp(value, min, max2) {\n  return Math.max(min, Math.min(max2, value));\n}\nfunction euclideanModulo(n, m) {\n  return (n % m + m) % m;\n}\nfunction mapLinear(x, a1, a2, b1, b22) {\n  return b1 + (x - a1) * (b22 - b1) / (a2 - a1);\n}\nfunction inverseLerp(x, y, value) {\n  if (x !== y) {\n    return (value - x) / (y - x);\n  } else {\n    return 0;\n  }\n}\nfunction lerp(x, y, t) {\n  return (1 - t) * x + t * y;\n}\nfunction damp(x, y, lambda, dt) {\n  return lerp(x, y, 1 - Math.exp(-lambda * dt));\n}\nfunction pingpong(x, length = 1) {\n  return length - Math.abs(euclideanModulo(x, length * 2) - length);\n}\nfunction smoothstep(x, min, max2) {\n  if (x <= min)\n    return 0;\n  if (x >= max2)\n    return 1;\n  x = (x - min) / (max2 - min);\n  return x * x * (3 - 2 * x);\n}\nfunction smootherstep(x, min, max2) {\n  if (x <= min)\n    return 0;\n  if (x >= max2)\n    return 1;\n  x = (x - min) / (max2 - min);\n  return x * x * x * (x * (x * 6 - 15) + 10);\n}\nfunction randInt(low, high) {\n  return low + Math.floor(Math.random() * (high - low + 1));\n}\nfunction randFloat(low, high) {\n  return low + Math.random() * (high - low);\n}\nfunction randFloatSpread(range) {\n  return range * (0.5 - Math.random());\n}\nfunction seededRandom(s) {\n  if (s !== void 0)\n    _seed = s;\n  let t = _seed += 1831565813;\n  t = Math.imul(t ^ t >>> 15, t | 1);\n  t ^= t + Math.imul(t ^ t >>> 7, t | 61);\n  return ((t ^ t >>> 14) >>> 0) / 4294967296;\n}\nfunction degToRad(degrees) {\n  return degrees * DEG2RAD;\n}\nfunction radToDeg(radians) {\n  return radians * RAD2DEG;\n}\nfunction isPowerOfTwo(value) {\n  return (value & value - 1) === 0 && value !== 0;\n}\nfunction ceilPowerOfTwo(value) {\n  return Math.pow(2, Math.ceil(Math.log(value) / Math.LN2));\n}\nfunction floorPowerOfTwo(value) {\n  return Math.pow(2, Math.floor(Math.log(value) / Math.LN2));\n}\nfunction setQuaternionFromProperEuler(q, a, b, c, order) {\n  const cos = Math.cos;\n  const sin = Math.sin;\n  const c2 = cos(b / 2);\n  const s2 = sin(b / 2);\n  const c13 = cos((a + c) / 2);\n  const s13 = sin((a + c) / 2);\n  const c1_3 = cos((a - c) / 2);\n  const s1_3 = sin((a - c) / 2);\n  const c3_1 = cos((c - a) / 2);\n  const s3_1 = sin((c - a) / 2);\n  switch (order) {\n    case \"XYX\":\n      q.set(c2 * s13, s2 * c1_3, s2 * s1_3, c2 * c13);\n      break;\n    case \"YZY\":\n      q.set(s2 * s1_3, c2 * s13, s2 * c1_3, c2 * c13);\n      break;\n    case \"ZXZ\":\n      q.set(s2 * c1_3, s2 * s1_3, c2 * s13, c2 * c13);\n      break;\n    case \"XZX\":\n      q.set(c2 * s13, s2 * s3_1, s2 * c3_1, c2 * c13);\n      break;\n    case \"YXY\":\n      q.set(s2 * c3_1, c2 * s13, s2 * s3_1, c2 * c13);\n      break;\n    case \"ZYZ\":\n      q.set(s2 * s3_1, s2 * c3_1, c2 * s13, c2 * c13);\n      break;\n    default:\n      console.warn(\"THREE.MathUtils: .setQuaternionFromProperEuler() encountered an unknown order: \" + order);\n  }\n}\nfunction denormalize$1(value, array) {\n  switch (array.constructor) {\n    case Float32Array:\n      return value;\n    case Uint16Array:\n      return value / 65535;\n    case Uint8Array:\n      return value / 255;\n    case Int16Array:\n      return Math.max(value / 32767, -1);\n    case Int8Array:\n      return Math.max(value / 127, -1);\n    default:\n      throw new Error(\"Invalid component type.\");\n  }\n}\nfunction normalize(value, array) {\n  switch (array.constructor) {\n    case Float32Array:\n      return value;\n    case Uint16Array:\n      return Math.round(value * 65535);\n    case Uint8Array:\n      return Math.round(value * 255);\n    case Int16Array:\n      return Math.round(value * 32767);\n    case Int8Array:\n      return Math.round(value * 127);\n    default:\n      throw new Error(\"Invalid component type.\");\n  }\n}\nvar MathUtils = /* @__PURE__ */ Object.freeze({\n  __proto__: null,\n  DEG2RAD,\n  RAD2DEG,\n  generateUUID,\n  clamp,\n  euclideanModulo,\n  mapLinear,\n  inverseLerp,\n  lerp,\n  damp,\n  pingpong,\n  smoothstep,\n  smootherstep,\n  randInt,\n  randFloat,\n  randFloatSpread,\n  seededRandom,\n  degToRad,\n  radToDeg,\n  isPowerOfTwo,\n  ceilPowerOfTwo,\n  floorPowerOfTwo,\n  setQuaternionFromProperEuler,\n  normalize,\n  denormalize: denormalize$1\n});\nclass Vector2 {\n  constructor(x = 0, y = 0) {\n    Vector2.prototype.isVector2 = true;\n    this.x = x;\n    this.y = y;\n  }\n  get width() {\n    return this.x;\n  }\n  set width(value) {\n    this.x = value;\n  }\n  get height() {\n    return this.y;\n  }\n  set height(value) {\n    this.y = value;\n  }\n  set(x, y) {\n    this.x = x;\n    this.y = y;\n    return this;\n  }\n  setScalar(scalar) {\n    this.x = scalar;\n    this.y = scalar;\n    return this;\n  }\n  setX(x) {\n    this.x = x;\n    return this;\n  }\n  setY(y) {\n    this.y = y;\n    return this;\n  }\n  setComponent(index2, value) {\n    switch (index2) {\n      case 0:\n        this.x = value;\n        break;\n      case 1:\n        this.y = value;\n        break;\n      default:\n        throw new Error(\"index is out of range: \" + index2);\n    }\n    return this;\n  }\n  getComponent(index2) {\n    switch (index2) {\n      case 0:\n        return this.x;\n      case 1:\n        return this.y;\n      default:\n        throw new Error(\"index is out of range: \" + index2);\n    }\n  }\n  clone() {\n    return new this.constructor(this.x, this.y);\n  }\n  copy(v) {\n    this.x = v.x;\n    this.y = v.y;\n    return this;\n  }\n  add(v) {\n    this.x += v.x;\n    this.y += v.y;\n    return this;\n  }\n  addScalar(s) {\n    this.x += s;\n    this.y += s;\n    return this;\n  }\n  addVectors(a, b) {\n    this.x = a.x + b.x;\n    this.y = a.y + b.y;\n    return this;\n  }\n  addScaledVector(v, s) {\n    this.x += v.x * s;\n    this.y += v.y * s;\n    return this;\n  }\n  sub(v) {\n    this.x -= v.x;\n    this.y -= v.y;\n    return this;\n  }\n  subScalar(s) {\n    this.x -= s;\n    this.y -= s;\n    return this;\n  }\n  subVectors(a, b) {\n    this.x = a.x - b.x;\n    this.y = a.y - b.y;\n    return this;\n  }\n  multiply(v) {\n    this.x *= v.x;\n    this.y *= v.y;\n    return this;\n  }\n  multiplyScalar(scalar) {\n    this.x *= scalar;\n    this.y *= scalar;\n    return this;\n  }\n  divide(v) {\n    this.x /= v.x;\n    this.y /= v.y;\n    return this;\n  }\n  divideScalar(scalar) {\n    return this.multiplyScalar(1 / scalar);\n  }\n  applyMatrix3(m) {\n    const x = this.x, y = this.y;\n    const e = m.elements;\n    this.x = e[0] * x + e[3] * y + e[6];\n    this.y = e[1] * x + e[4] * y + e[7];\n    return this;\n  }\n  min(v) {\n    this.x = Math.min(this.x, v.x);\n    this.y = Math.min(this.y, v.y);\n    return this;\n  }\n  max(v) {\n    this.x = Math.max(this.x, v.x);\n    this.y = Math.max(this.y, v.y);\n    return this;\n  }\n  clamp(min, max2) {\n    this.x = Math.max(min.x, Math.min(max2.x, this.x));\n    this.y = Math.max(min.y, Math.min(max2.y, this.y));\n    return this;\n  }\n  clampScalar(minVal, maxVal) {\n    this.x = Math.max(minVal, Math.min(maxVal, this.x));\n    this.y = Math.max(minVal, Math.min(maxVal, this.y));\n    return this;\n  }\n  clampLength(min, max2) {\n    const length = this.length();\n    return this.divideScalar(length || 1).multiplyScalar(Math.max(min, Math.min(max2, length)));\n  }\n  floor() {\n    this.x = Math.floor(this.x);\n    this.y = Math.floor(this.y);\n    return this;\n  }\n  ceil() {\n    this.x = Math.ceil(this.x);\n    this.y = Math.ceil(this.y);\n    return this;\n  }\n  round() {\n    this.x = Math.round(this.x);\n    this.y = Math.round(this.y);\n    return this;\n  }\n  roundToZero() {\n    this.x = this.x < 0 ? Math.ceil(this.x) : Math.floor(this.x);\n    this.y = this.y < 0 ? Math.ceil(this.y) : Math.floor(this.y);\n    return this;\n  }\n  negate() {\n    this.x = -this.x;\n    this.y = -this.y;\n    return this;\n  }\n  dot(v) {\n    return this.x * v.x + this.y * v.y;\n  }\n  cross(v) {\n    return this.x * v.y - this.y * v.x;\n  }\n  lengthSq() {\n    return this.x * this.x + this.y * this.y;\n  }\n  length() {\n    return Math.sqrt(this.x * this.x + this.y * this.y);\n  }\n  manhattanLength() {\n    return Math.abs(this.x) + Math.abs(this.y);\n  }\n  normalize() {\n    return this.divideScalar(this.length() || 1);\n  }\n  angle() {\n    const angle = Math.atan2(-this.y, -this.x) + Math.PI;\n    return angle;\n  }\n  distanceTo(v) {\n    return Math.sqrt(this.distanceToSquared(v));\n  }\n  distanceToSquared(v) {\n    const dx = this.x - v.x, dy = this.y - v.y;\n    return dx * dx + dy * dy;\n  }\n  manhattanDistanceTo(v) {\n    return Math.abs(this.x - v.x) + Math.abs(this.y - v.y);\n  }\n  setLength(length) {\n    return this.normalize().multiplyScalar(length);\n  }\n  lerp(v, alpha) {\n    this.x += (v.x - this.x) * alpha;\n    this.y += (v.y - this.y) * alpha;\n    return this;\n  }\n  lerpVectors(v1, v2, alpha) {\n    this.x = v1.x + (v2.x - v1.x) * alpha;\n    this.y = v1.y + (v2.y - v1.y) * alpha;\n    return this;\n  }\n  equals(v) {\n    return v.x === this.x && v.y === this.y;\n  }\n  fromArray(array, offset = 0) {\n    this.x = array[offset];\n    this.y = array[offset + 1];\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    array[offset] = this.x;\n    array[offset + 1] = this.y;\n    return array;\n  }\n  fromBufferAttribute(attribute, index2) {\n    this.x = attribute.getX(index2);\n    this.y = attribute.getY(index2);\n    return this;\n  }\n  rotateAround(center, angle) {\n    const c = Math.cos(angle), s = Math.sin(angle);\n    const x = this.x - center.x;\n    const y = this.y - center.y;\n    this.x = x * c - y * s + center.x;\n    this.y = x * s + y * c + center.y;\n    return this;\n  }\n  random() {\n    this.x = Math.random();\n    this.y = Math.random();\n    return this;\n  }\n  *[Symbol.iterator]() {\n    yield this.x;\n    yield this.y;\n  }\n}\nclass Matrix3 {\n  constructor() {\n    Matrix3.prototype.isMatrix3 = true;\n    this.elements = [\n      1,\n      0,\n      0,\n      0,\n      1,\n      0,\n      0,\n      0,\n      1\n    ];\n  }\n  set(n11, n12, n13, n21, n22, n23, n31, n32, n33) {\n    const te2 = this.elements;\n    te2[0] = n11;\n    te2[1] = n21;\n    te2[2] = n31;\n    te2[3] = n12;\n    te2[4] = n22;\n    te2[5] = n32;\n    te2[6] = n13;\n    te2[7] = n23;\n    te2[8] = n33;\n    return this;\n  }\n  identity() {\n    this.set(1, 0, 0, 0, 1, 0, 0, 0, 1);\n    return this;\n  }\n  copy(m) {\n    const te2 = this.elements;\n    const me = m.elements;\n    te2[0] = me[0];\n    te2[1] = me[1];\n    te2[2] = me[2];\n    te2[3] = me[3];\n    te2[4] = me[4];\n    te2[5] = me[5];\n    te2[6] = me[6];\n    te2[7] = me[7];\n    te2[8] = me[8];\n    return this;\n  }\n  extractBasis(xAxis, yAxis, zAxis) {\n    xAxis.setFromMatrix3Column(this, 0);\n    yAxis.setFromMatrix3Column(this, 1);\n    zAxis.setFromMatrix3Column(this, 2);\n    return this;\n  }\n  setFromMatrix4(m) {\n    const me = m.elements;\n    this.set(me[0], me[4], me[8], me[1], me[5], me[9], me[2], me[6], me[10]);\n    return this;\n  }\n  multiply(m) {\n    return this.multiplyMatrices(this, m);\n  }\n  premultiply(m) {\n    return this.multiplyMatrices(m, this);\n  }\n  multiplyMatrices(a, b) {\n    const ae = a.elements;\n    const be = b.elements;\n    const te2 = this.elements;\n    const a11 = ae[0], a12 = ae[3], a13 = ae[6];\n    const a21 = ae[1], a22 = ae[4], a23 = ae[7];\n    const a31 = ae[2], a32 = ae[5], a33 = ae[8];\n    const b11 = be[0], b12 = be[3], b13 = be[6];\n    const b21 = be[1], b22 = be[4], b23 = be[7];\n    const b31 = be[2], b32 = be[5], b33 = be[8];\n    te2[0] = a11 * b11 + a12 * b21 + a13 * b31;\n    te2[3] = a11 * b12 + a12 * b22 + a13 * b32;\n    te2[6] = a11 * b13 + a12 * b23 + a13 * b33;\n    te2[1] = a21 * b11 + a22 * b21 + a23 * b31;\n    te2[4] = a21 * b12 + a22 * b22 + a23 * b32;\n    te2[7] = a21 * b13 + a22 * b23 + a23 * b33;\n    te2[2] = a31 * b11 + a32 * b21 + a33 * b31;\n    te2[5] = a31 * b12 + a32 * b22 + a33 * b32;\n    te2[8] = a31 * b13 + a32 * b23 + a33 * b33;\n    return this;\n  }\n  multiplyScalar(s) {\n    const te2 = this.elements;\n    te2[0] *= s;\n    te2[3] *= s;\n    te2[6] *= s;\n    te2[1] *= s;\n    te2[4] *= s;\n    te2[7] *= s;\n    te2[2] *= s;\n    te2[5] *= s;\n    te2[8] *= s;\n    return this;\n  }\n  determinant() {\n    const te2 = this.elements;\n    const a = te2[0], b = te2[1], c = te2[2], d = te2[3], e = te2[4], f = te2[5], g = te2[6], h = te2[7], i = te2[8];\n    return a * e * i - a * f * h - b * d * i + b * f * g + c * d * h - c * e * g;\n  }\n  invert() {\n    const te2 = this.elements, n11 = te2[0], n21 = te2[1], n31 = te2[2], n12 = te2[3], n22 = te2[4], n32 = te2[5], n13 = te2[6], n23 = te2[7], n33 = te2[8], t11 = n33 * n22 - n32 * n23, t12 = n32 * n13 - n33 * n12, t13 = n23 * n12 - n22 * n13, det = n11 * t11 + n21 * t12 + n31 * t13;\n    if (det === 0)\n      return this.set(0, 0, 0, 0, 0, 0, 0, 0, 0);\n    const detInv = 1 / det;\n    te2[0] = t11 * detInv;\n    te2[1] = (n31 * n23 - n33 * n21) * detInv;\n    te2[2] = (n32 * n21 - n31 * n22) * detInv;\n    te2[3] = t12 * detInv;\n    te2[4] = (n33 * n11 - n31 * n13) * detInv;\n    te2[5] = (n31 * n12 - n32 * n11) * detInv;\n    te2[6] = t13 * detInv;\n    te2[7] = (n21 * n13 - n23 * n11) * detInv;\n    te2[8] = (n22 * n11 - n21 * n12) * detInv;\n    return this;\n  }\n  transpose() {\n    let tmp2;\n    const m = this.elements;\n    tmp2 = m[1];\n    m[1] = m[3];\n    m[3] = tmp2;\n    tmp2 = m[2];\n    m[2] = m[6];\n    m[6] = tmp2;\n    tmp2 = m[5];\n    m[5] = m[7];\n    m[7] = tmp2;\n    return this;\n  }\n  getNormalMatrix(matrix4) {\n    return this.setFromMatrix4(matrix4).invert().transpose();\n  }\n  transposeIntoArray(r) {\n    const m = this.elements;\n    r[0] = m[0];\n    r[1] = m[3];\n    r[2] = m[6];\n    r[3] = m[1];\n    r[4] = m[4];\n    r[5] = m[7];\n    r[6] = m[2];\n    r[7] = m[5];\n    r[8] = m[8];\n    return this;\n  }\n  setUvTransform(tx, ty, sx, sy, rotation, cx, cy) {\n    const c = Math.cos(rotation);\n    const s = Math.sin(rotation);\n    this.set(sx * c, sx * s, -sx * (c * cx + s * cy) + cx + tx, -sy * s, sy * c, -sy * (-s * cx + c * cy) + cy + ty, 0, 0, 1);\n    return this;\n  }\n  scale(sx, sy) {\n    const te2 = this.elements;\n    te2[0] *= sx;\n    te2[3] *= sx;\n    te2[6] *= sx;\n    te2[1] *= sy;\n    te2[4] *= sy;\n    te2[7] *= sy;\n    return this;\n  }\n  rotate(theta) {\n    const c = Math.cos(theta);\n    const s = Math.sin(theta);\n    const te2 = this.elements;\n    const a11 = te2[0], a12 = te2[3], a13 = te2[6];\n    const a21 = te2[1], a22 = te2[4], a23 = te2[7];\n    te2[0] = c * a11 + s * a21;\n    te2[3] = c * a12 + s * a22;\n    te2[6] = c * a13 + s * a23;\n    te2[1] = -s * a11 + c * a21;\n    te2[4] = -s * a12 + c * a22;\n    te2[7] = -s * a13 + c * a23;\n    return this;\n  }\n  translate(tx, ty) {\n    const te2 = this.elements;\n    te2[0] += tx * te2[2];\n    te2[3] += tx * te2[5];\n    te2[6] += tx * te2[8];\n    te2[1] += ty * te2[2];\n    te2[4] += ty * te2[5];\n    te2[7] += ty * te2[8];\n    return this;\n  }\n  equals(matrix) {\n    const te2 = this.elements;\n    const me = matrix.elements;\n    for (let i = 0; i < 9; i++) {\n      if (te2[i] !== me[i])\n        return false;\n    }\n    return true;\n  }\n  fromArray(array, offset = 0) {\n    for (let i = 0; i < 9; i++) {\n      this.elements[i] = array[i + offset];\n    }\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    const te2 = this.elements;\n    array[offset] = te2[0];\n    array[offset + 1] = te2[1];\n    array[offset + 2] = te2[2];\n    array[offset + 3] = te2[3];\n    array[offset + 4] = te2[4];\n    array[offset + 5] = te2[5];\n    array[offset + 6] = te2[6];\n    array[offset + 7] = te2[7];\n    array[offset + 8] = te2[8];\n    return array;\n  }\n  clone() {\n    return new this.constructor().fromArray(this.elements);\n  }\n}\nfunction arrayNeedsUint32(array) {\n  for (let i = array.length - 1; i >= 0; --i) {\n    if (array[i] > 65535)\n      return true;\n  }\n  return false;\n}\nconst TYPED_ARRAYS = {\n  Int8Array,\n  Uint8Array,\n  Uint8ClampedArray,\n  Int16Array,\n  Uint16Array,\n  Int32Array,\n  Uint32Array,\n  Float32Array,\n  Float64Array\n};\nfunction getTypedArray(type, buffer) {\n  return new TYPED_ARRAYS[type](buffer);\n}\nfunction createElementNS(name) {\n  return document.createElementNS(\"http://www.w3.org/1999/xhtml\", name);\n}\nfunction SRGBToLinear(c) {\n  return c < 0.04045 ? c * 0.0773993808 : Math.pow(c * 0.9478672986 + 0.0521327014, 2.4);\n}\nfunction LinearToSRGB(c) {\n  return c < 31308e-7 ? c * 12.92 : 1.055 * Math.pow(c, 0.41666) - 0.055;\n}\nconst FN = {\n  [SRGBColorSpace]: { [LinearSRGBColorSpace]: SRGBToLinear },\n  [LinearSRGBColorSpace]: { [SRGBColorSpace]: LinearToSRGB }\n};\nconst ColorManagement = {\n  legacyMode: true,\n  get workingColorSpace() {\n    return LinearSRGBColorSpace;\n  },\n  set workingColorSpace(colorSpace) {\n    console.warn(\"THREE.ColorManagement: .workingColorSpace is readonly.\");\n  },\n  convert: function(color, sourceColorSpace, targetColorSpace) {\n    if (this.legacyMode || sourceColorSpace === targetColorSpace || !sourceColorSpace || !targetColorSpace) {\n      return color;\n    }\n    if (FN[sourceColorSpace] && FN[sourceColorSpace][targetColorSpace] !== void 0) {\n      const fn = FN[sourceColorSpace][targetColorSpace];\n      color.r = fn(color.r);\n      color.g = fn(color.g);\n      color.b = fn(color.b);\n      return color;\n    }\n    throw new Error(\"Unsupported color space conversion.\");\n  },\n  fromWorkingColorSpace: function(color, targetColorSpace) {\n    return this.convert(color, this.workingColorSpace, targetColorSpace);\n  },\n  toWorkingColorSpace: function(color, sourceColorSpace) {\n    return this.convert(color, sourceColorSpace, this.workingColorSpace);\n  }\n};\nconst _colorKeywords = {\n  \"aliceblue\": 15792383,\n  \"antiquewhite\": 16444375,\n  \"aqua\": 65535,\n  \"aquamarine\": 8388564,\n  \"azure\": 15794175,\n  \"beige\": 16119260,\n  \"bisque\": 16770244,\n  \"black\": 0,\n  \"blanchedalmond\": 16772045,\n  \"blue\": 255,\n  \"blueviolet\": 9055202,\n  \"brown\": 10824234,\n  \"burlywood\": 14596231,\n  \"cadetblue\": 6266528,\n  \"chartreuse\": 8388352,\n  \"chocolate\": 13789470,\n  \"coral\": 16744272,\n  \"cornflowerblue\": 6591981,\n  \"cornsilk\": 16775388,\n  \"crimson\": 14423100,\n  \"cyan\": 65535,\n  \"darkblue\": 139,\n  \"darkcyan\": 35723,\n  \"darkgoldenrod\": 12092939,\n  \"darkgray\": 11119017,\n  \"darkgreen\": 25600,\n  \"darkgrey\": 11119017,\n  \"darkkhaki\": 12433259,\n  \"darkmagenta\": 9109643,\n  \"darkolivegreen\": 5597999,\n  \"darkorange\": 16747520,\n  \"darkorchid\": 10040012,\n  \"darkred\": 9109504,\n  \"darksalmon\": 15308410,\n  \"darkseagreen\": 9419919,\n  \"darkslateblue\": 4734347,\n  \"darkslategray\": 3100495,\n  \"darkslategrey\": 3100495,\n  \"darkturquoise\": 52945,\n  \"darkviolet\": 9699539,\n  \"deeppink\": 16716947,\n  \"deepskyblue\": 49151,\n  \"dimgray\": 6908265,\n  \"dimgrey\": 6908265,\n  \"dodgerblue\": 2003199,\n  \"firebrick\": 11674146,\n  \"floralwhite\": 16775920,\n  \"forestgreen\": 2263842,\n  \"fuchsia\": 16711935,\n  \"gainsboro\": 14474460,\n  \"ghostwhite\": 16316671,\n  \"gold\": 16766720,\n  \"goldenrod\": 14329120,\n  \"gray\": 8421504,\n  \"green\": 32768,\n  \"greenyellow\": 11403055,\n  \"grey\": 8421504,\n  \"honeydew\": 15794160,\n  \"hotpink\": 16738740,\n  \"indianred\": 13458524,\n  \"indigo\": 4915330,\n  \"ivory\": 16777200,\n  \"khaki\": 15787660,\n  \"lavender\": 15132410,\n  \"lavenderblush\": 16773365,\n  \"lawngreen\": 8190976,\n  \"lemonchiffon\": 16775885,\n  \"lightblue\": 11393254,\n  \"lightcoral\": 15761536,\n  \"lightcyan\": 14745599,\n  \"lightgoldenrodyellow\": 16448210,\n  \"lightgray\": 13882323,\n  \"lightgreen\": 9498256,\n  \"lightgrey\": 13882323,\n  \"lightpink\": 16758465,\n  \"lightsalmon\": 16752762,\n  \"lightseagreen\": 2142890,\n  \"lightskyblue\": 8900346,\n  \"lightslategray\": 7833753,\n  \"lightslategrey\": 7833753,\n  \"lightsteelblue\": 11584734,\n  \"lightyellow\": 16777184,\n  \"lime\": 65280,\n  \"limegreen\": 3329330,\n  \"linen\": 16445670,\n  \"magenta\": 16711935,\n  \"maroon\": 8388608,\n  \"mediumaquamarine\": 6737322,\n  \"mediumblue\": 205,\n  \"mediumorchid\": 12211667,\n  \"mediumpurple\": 9662683,\n  \"mediumseagreen\": 3978097,\n  \"mediumslateblue\": 8087790,\n  \"mediumspringgreen\": 64154,\n  \"mediumturquoise\": 4772300,\n  \"mediumvioletred\": 13047173,\n  \"midnightblue\": 1644912,\n  \"mintcream\": 16121850,\n  \"mistyrose\": 16770273,\n  \"moccasin\": 16770229,\n  \"navajowhite\": 16768685,\n  \"navy\": 128,\n  \"oldlace\": 16643558,\n  \"olive\": 8421376,\n  \"olivedrab\": 7048739,\n  \"orange\": 16753920,\n  \"orangered\": 16729344,\n  \"orchid\": 14315734,\n  \"palegoldenrod\": 15657130,\n  \"palegreen\": 10025880,\n  \"paleturquoise\": 11529966,\n  \"palevioletred\": 14381203,\n  \"papayawhip\": 16773077,\n  \"peachpuff\": 16767673,\n  \"peru\": 13468991,\n  \"pink\": 16761035,\n  \"plum\": 14524637,\n  \"powderblue\": 11591910,\n  \"purple\": 8388736,\n  \"rebeccapurple\": 6697881,\n  \"red\": 16711680,\n  \"rosybrown\": 12357519,\n  \"royalblue\": 4286945,\n  \"saddlebrown\": 9127187,\n  \"salmon\": 16416882,\n  \"sandybrown\": 16032864,\n  \"seagreen\": 3050327,\n  \"seashell\": 16774638,\n  \"sienna\": 10506797,\n  \"silver\": 12632256,\n  \"skyblue\": 8900331,\n  \"slateblue\": 6970061,\n  \"slategray\": 7372944,\n  \"slategrey\": 7372944,\n  \"snow\": 16775930,\n  \"springgreen\": 65407,\n  \"steelblue\": 4620980,\n  \"tan\": 13808780,\n  \"teal\": 32896,\n  \"thistle\": 14204888,\n  \"tomato\": 16737095,\n  \"turquoise\": 4251856,\n  \"violet\": 15631086,\n  \"wheat\": 16113331,\n  \"white\": 16777215,\n  \"whitesmoke\": 16119285,\n  \"yellow\": 16776960,\n  \"yellowgreen\": 10145074\n};\nconst _rgb = { r: 0, g: 0, b: 0 };\nconst _hslA = { h: 0, s: 0, l: 0 };\nconst _hslB = { h: 0, s: 0, l: 0 };\nfunction hue2rgb(p, q, t) {\n  if (t < 0)\n    t += 1;\n  if (t > 1)\n    t -= 1;\n  if (t < 1 / 6)\n    return p + (q - p) * 6 * t;\n  if (t < 1 / 2)\n    return q;\n  if (t < 2 / 3)\n    return p + (q - p) * 6 * (2 / 3 - t);\n  return p;\n}\nfunction toComponents(source, target) {\n  target.r = source.r;\n  target.g = source.g;\n  target.b = source.b;\n  return target;\n}\nclass Color {\n  constructor(r, g, b) {\n    this.isColor = true;\n    this.r = 1;\n    this.g = 1;\n    this.b = 1;\n    if (g === void 0 && b === void 0) {\n      return this.set(r);\n    }\n    return this.setRGB(r, g, b);\n  }\n  set(value) {\n    if (value && value.isColor) {\n      this.copy(value);\n    } else if (typeof value === \"number\") {\n      this.setHex(value);\n    } else if (typeof value === \"string\") {\n      this.setStyle(value);\n    }\n    return this;\n  }\n  setScalar(scalar) {\n    this.r = scalar;\n    this.g = scalar;\n    this.b = scalar;\n    return this;\n  }\n  setHex(hex, colorSpace = SRGBColorSpace) {\n    hex = Math.floor(hex);\n    this.r = (hex >> 16 & 255) / 255;\n    this.g = (hex >> 8 & 255) / 255;\n    this.b = (hex & 255) / 255;\n    ColorManagement.toWorkingColorSpace(this, colorSpace);\n    return this;\n  }\n  setRGB(r, g, b, colorSpace = LinearSRGBColorSpace) {\n    this.r = r;\n    this.g = g;\n    this.b = b;\n    ColorManagement.toWorkingColorSpace(this, colorSpace);\n    return this;\n  }\n  setHSL(h, s, l, colorSpace = LinearSRGBColorSpace) {\n    h = euclideanModulo(h, 1);\n    s = clamp(s, 0, 1);\n    l = clamp(l, 0, 1);\n    if (s === 0) {\n      this.r = this.g = this.b = l;\n    } else {\n      const p = l <= 0.5 ? l * (1 + s) : l + s - l * s;\n      const q = 2 * l - p;\n      this.r = hue2rgb(q, p, h + 1 / 3);\n      this.g = hue2rgb(q, p, h);\n      this.b = hue2rgb(q, p, h - 1 / 3);\n    }\n    ColorManagement.toWorkingColorSpace(this, colorSpace);\n    return this;\n  }\n  setStyle(style, colorSpace = SRGBColorSpace) {\n    function handleAlpha(string) {\n      if (string === void 0)\n        return;\n      if (parseFloat(string) < 1) {\n        console.warn(\"THREE.Color: Alpha component of \" + style + \" will be ignored.\");\n      }\n    }\n    let m;\n    if (m = /^((?:rgb|hsl)a?)\\(([^\\)]*)\\)/.exec(style)) {\n      let color;\n      const name = m[1];\n      const components = m[2];\n      switch (name) {\n        case \"rgb\":\n        case \"rgba\":\n          if (color = /^\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(components)) {\n            this.r = Math.min(255, parseInt(color[1], 10)) / 255;\n            this.g = Math.min(255, parseInt(color[2], 10)) / 255;\n            this.b = Math.min(255, parseInt(color[3], 10)) / 255;\n            ColorManagement.toWorkingColorSpace(this, colorSpace);\n            handleAlpha(color[4]);\n            return this;\n          }\n          if (color = /^\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(components)) {\n            this.r = Math.min(100, parseInt(color[1], 10)) / 100;\n            this.g = Math.min(100, parseInt(color[2], 10)) / 100;\n            this.b = Math.min(100, parseInt(color[3], 10)) / 100;\n            ColorManagement.toWorkingColorSpace(this, colorSpace);\n            handleAlpha(color[4]);\n            return this;\n          }\n          break;\n        case \"hsl\":\n        case \"hsla\":\n          if (color = /^\\s*(\\d*\\.?\\d+)\\s*,\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(components)) {\n            const h = parseFloat(color[1]) / 360;\n            const s = parseInt(color[2], 10) / 100;\n            const l = parseInt(color[3], 10) / 100;\n            handleAlpha(color[4]);\n            return this.setHSL(h, s, l, colorSpace);\n          }\n          break;\n      }\n    } else if (m = /^\\#([A-Fa-f\\d]+)$/.exec(style)) {\n      const hex = m[1];\n      const size = hex.length;\n      if (size === 3) {\n        this.r = parseInt(hex.charAt(0) + hex.charAt(0), 16) / 255;\n        this.g = parseInt(hex.charAt(1) + hex.charAt(1), 16) / 255;\n        this.b = parseInt(hex.charAt(2) + hex.charAt(2), 16) / 255;\n        ColorManagement.toWorkingColorSpace(this, colorSpace);\n        return this;\n      } else if (size === 6) {\n        this.r = parseInt(hex.charAt(0) + hex.charAt(1), 16) / 255;\n        this.g = parseInt(hex.charAt(2) + hex.charAt(3), 16) / 255;\n        this.b = parseInt(hex.charAt(4) + hex.charAt(5), 16) / 255;\n        ColorManagement.toWorkingColorSpace(this, colorSpace);\n        return this;\n      }\n    }\n    if (style && style.length > 0) {\n      return this.setColorName(style, colorSpace);\n    }\n    return this;\n  }\n  setColorName(style, colorSpace = SRGBColorSpace) {\n    const hex = _colorKeywords[style.toLowerCase()];\n    if (hex !== void 0) {\n      this.setHex(hex, colorSpace);\n    } else {\n      console.warn(\"THREE.Color: Unknown color \" + style);\n    }\n    return this;\n  }\n  clone() {\n    return new this.constructor(this.r, this.g, this.b);\n  }\n  copy(color) {\n    this.r = color.r;\n    this.g = color.g;\n    this.b = color.b;\n    return this;\n  }\n  copySRGBToLinear(color) {\n    this.r = SRGBToLinear(color.r);\n    this.g = SRGBToLinear(color.g);\n    this.b = SRGBToLinear(color.b);\n    return this;\n  }\n  copyLinearToSRGB(color) {\n    this.r = LinearToSRGB(color.r);\n    this.g = LinearToSRGB(color.g);\n    this.b = LinearToSRGB(color.b);\n    return this;\n  }\n  convertSRGBToLinear() {\n    this.copySRGBToLinear(this);\n    return this;\n  }\n  convertLinearToSRGB() {\n    this.copyLinearToSRGB(this);\n    return this;\n  }\n  getHex(colorSpace = SRGBColorSpace) {\n    ColorManagement.fromWorkingColorSpace(toComponents(this, _rgb), colorSpace);\n    return clamp(_rgb.r * 255, 0, 255) << 16 ^ clamp(_rgb.g * 255, 0, 255) << 8 ^ clamp(_rgb.b * 255, 0, 255) << 0;\n  }\n  getHexString(colorSpace = SRGBColorSpace) {\n    return (\"000000\" + this.getHex(colorSpace).toString(16)).slice(-6);\n  }\n  getHSL(target, colorSpace = LinearSRGBColorSpace) {\n    ColorManagement.fromWorkingColorSpace(toComponents(this, _rgb), colorSpace);\n    const r = _rgb.r, g = _rgb.g, b = _rgb.b;\n    const max2 = Math.max(r, g, b);\n    const min = Math.min(r, g, b);\n    let hue, saturation;\n    const lightness = (min + max2) / 2;\n    if (min === max2) {\n      hue = 0;\n      saturation = 0;\n    } else {\n      const delta = max2 - min;\n      saturation = lightness <= 0.5 ? delta / (max2 + min) : delta / (2 - max2 - min);\n      switch (max2) {\n        case r:\n          hue = (g - b) / delta + (g < b ? 6 : 0);\n          break;\n        case g:\n          hue = (b - r) / delta + 2;\n          break;\n        case b:\n          hue = (r - g) / delta + 4;\n          break;\n      }\n      hue /= 6;\n    }\n    target.h = hue;\n    target.s = saturation;\n    target.l = lightness;\n    return target;\n  }\n  getRGB(target, colorSpace = LinearSRGBColorSpace) {\n    ColorManagement.fromWorkingColorSpace(toComponents(this, _rgb), colorSpace);\n    target.r = _rgb.r;\n    target.g = _rgb.g;\n    target.b = _rgb.b;\n    return target;\n  }\n  getStyle(colorSpace = SRGBColorSpace) {\n    ColorManagement.fromWorkingColorSpace(toComponents(this, _rgb), colorSpace);\n    if (colorSpace !== SRGBColorSpace) {\n      return `color(${colorSpace} ${_rgb.r} ${_rgb.g} ${_rgb.b})`;\n    }\n    return `rgb(${_rgb.r * 255 | 0},${_rgb.g * 255 | 0},${_rgb.b * 255 | 0})`;\n  }\n  offsetHSL(h, s, l) {\n    this.getHSL(_hslA);\n    _hslA.h += h;\n    _hslA.s += s;\n    _hslA.l += l;\n    this.setHSL(_hslA.h, _hslA.s, _hslA.l);\n    return this;\n  }\n  add(color) {\n    this.r += color.r;\n    this.g += color.g;\n    this.b += color.b;\n    return this;\n  }\n  addColors(color1, color2) {\n    this.r = color1.r + color2.r;\n    this.g = color1.g + color2.g;\n    this.b = color1.b + color2.b;\n    return this;\n  }\n  addScalar(s) {\n    this.r += s;\n    this.g += s;\n    this.b += s;\n    return this;\n  }\n  sub(color) {\n    this.r = Math.max(0, this.r - color.r);\n    this.g = Math.max(0, this.g - color.g);\n    this.b = Math.max(0, this.b - color.b);\n    return this;\n  }\n  multiply(color) {\n    this.r *= color.r;\n    this.g *= color.g;\n    this.b *= color.b;\n    return this;\n  }\n  multiplyScalar(s) {\n    this.r *= s;\n    this.g *= s;\n    this.b *= s;\n    return this;\n  }\n  lerp(color, alpha) {\n    this.r += (color.r - this.r) * alpha;\n    this.g += (color.g - this.g) * alpha;\n    this.b += (color.b - this.b) * alpha;\n    return this;\n  }\n  lerpColors(color1, color2, alpha) {\n    this.r = color1.r + (color2.r - color1.r) * alpha;\n    this.g = color1.g + (color2.g - color1.g) * alpha;\n    this.b = color1.b + (color2.b - color1.b) * alpha;\n    return this;\n  }\n  lerpHSL(color, alpha) {\n    this.getHSL(_hslA);\n    color.getHSL(_hslB);\n    const h = lerp(_hslA.h, _hslB.h, alpha);\n    const s = lerp(_hslA.s, _hslB.s, alpha);\n    const l = lerp(_hslA.l, _hslB.l, alpha);\n    this.setHSL(h, s, l);\n    return this;\n  }\n  equals(c) {\n    return c.r === this.r && c.g === this.g && c.b === this.b;\n  }\n  fromArray(array, offset = 0) {\n    this.r = array[offset];\n    this.g = array[offset + 1];\n    this.b = array[offset + 2];\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    array[offset] = this.r;\n    array[offset + 1] = this.g;\n    array[offset + 2] = this.b;\n    return array;\n  }\n  fromBufferAttribute(attribute, index2) {\n    this.r = attribute.getX(index2);\n    this.g = attribute.getY(index2);\n    this.b = attribute.getZ(index2);\n    if (attribute.normalized === true) {\n      this.r /= 255;\n      this.g /= 255;\n      this.b /= 255;\n    }\n    return this;\n  }\n  toJSON() {\n    return this.getHex();\n  }\n  *[Symbol.iterator]() {\n    yield this.r;\n    yield this.g;\n    yield this.b;\n  }\n}\nColor.NAMES = _colorKeywords;\nlet _canvas;\nclass ImageUtils {\n  static getDataURL(image) {\n    if (/^data:/i.test(image.src)) {\n      return image.src;\n    }\n    if (typeof HTMLCanvasElement == \"undefined\") {\n      return image.src;\n    }\n    let canvas;\n    if (image instanceof HTMLCanvasElement) {\n      canvas = image;\n    } else {\n      if (_canvas === void 0)\n        _canvas = createElementNS(\"canvas\");\n      _canvas.width = image.width;\n      _canvas.height = image.height;\n      const context = _canvas.getContext(\"2d\");\n      if (image instanceof ImageData) {\n        context.putImageData(image, 0, 0);\n      } else {\n        context.drawImage(image, 0, 0, image.width, image.height);\n      }\n      canvas = _canvas;\n    }\n    if (canvas.width > 2048 || canvas.height > 2048) {\n      console.warn(\"THREE.ImageUtils.getDataURL: Image converted to jpg for performance reasons\", image);\n      return canvas.toDataURL(\"image/jpeg\", 0.6);\n    } else {\n      return canvas.toDataURL(\"image/png\");\n    }\n  }\n  static sRGBToLinear(image) {\n    if (typeof HTMLImageElement !== \"undefined\" && image instanceof HTMLImageElement || typeof HTMLCanvasElement !== \"undefined\" && image instanceof HTMLCanvasElement || typeof ImageBitmap !== \"undefined\" && image instanceof ImageBitmap) {\n      const canvas = createElementNS(\"canvas\");\n      canvas.width = image.width;\n      canvas.height = image.height;\n      const context = canvas.getContext(\"2d\");\n      context.drawImage(image, 0, 0, image.width, image.height);\n      const imageData = context.getImageData(0, 0, image.width, image.height);\n      const data = imageData.data;\n      for (let i = 0; i < data.length; i++) {\n        data[i] = SRGBToLinear(data[i] / 255) * 255;\n      }\n      context.putImageData(imageData, 0, 0);\n      return canvas;\n    } else if (image.data) {\n      const data = image.data.slice(0);\n      for (let i = 0; i < data.length; i++) {\n        if (data instanceof Uint8Array || data instanceof Uint8ClampedArray) {\n          data[i] = Math.floor(SRGBToLinear(data[i] / 255) * 255);\n        } else {\n          data[i] = SRGBToLinear(data[i]);\n        }\n      }\n      return {\n        data,\n        width: image.width,\n        height: image.height\n      };\n    } else {\n      console.warn(\"THREE.ImageUtils.sRGBToLinear(): Unsupported image type. No color space conversion applied.\");\n      return image;\n    }\n  }\n}\nclass Source {\n  constructor(data = null) {\n    this.isSource = true;\n    this.uuid = generateUUID();\n    this.data = data;\n    this.version = 0;\n  }\n  set needsUpdate(value) {\n    if (value === true)\n      this.version++;\n  }\n  toJSON(meta) {\n    const isRootObject = meta === void 0 || typeof meta === \"string\";\n    if (!isRootObject && meta.images[this.uuid] !== void 0) {\n      return meta.images[this.uuid];\n    }\n    const output = {\n      uuid: this.uuid,\n      url: \"\"\n    };\n    const data = this.data;\n    if (data !== null) {\n      let url;\n      if (Array.isArray(data)) {\n        url = [];\n        for (let i = 0, l = data.length; i < l; i++) {\n          if (data[i].isDataTexture) {\n            url.push(serializeImage(data[i].image));\n          } else {\n            url.push(serializeImage(data[i]));\n          }\n        }\n      } else {\n        url = serializeImage(data);\n      }\n      output.url = url;\n    }\n    if (!isRootObject) {\n      meta.images[this.uuid] = output;\n    }\n    return output;\n  }\n}\nfunction serializeImage(image) {\n  if (typeof HTMLImageElement !== \"undefined\" && image instanceof HTMLImageElement || typeof HTMLCanvasElement !== \"undefined\" && image instanceof HTMLCanvasElement || typeof ImageBitmap !== \"undefined\" && image instanceof ImageBitmap) {\n    return ImageUtils.getDataURL(image);\n  } else {\n    if (image.data) {\n      return {\n        data: Array.from(image.data),\n        width: image.width,\n        height: image.height,\n        type: image.data.constructor.name\n      };\n    } else {\n      console.warn(\"THREE.Texture: Unable to serialize Texture.\");\n      return {};\n    }\n  }\n}\nlet textureId = 0;\nclass Texture extends EventDispatcher {\n  constructor(image = Texture.DEFAULT_IMAGE, mapping = Texture.DEFAULT_MAPPING, wrapS = ClampToEdgeWrapping, wrapT = ClampToEdgeWrapping, magFilter = LinearFilter, minFilter = LinearMipmapLinearFilter, format = RGBAFormat, type = UnsignedByteType, anisotropy = 1, encoding = LinearEncoding) {\n    super();\n    this.isTexture = true;\n    Object.defineProperty(this, \"id\", { value: textureId++ });\n    this.uuid = generateUUID();\n    this.name = \"\";\n    this.source = new Source(image);\n    this.mipmaps = [];\n    this.mapping = mapping;\n    this.wrapS = wrapS;\n    this.wrapT = wrapT;\n    this.magFilter = magFilter;\n    this.minFilter = minFilter;\n    this.anisotropy = anisotropy;\n    this.format = format;\n    this.internalFormat = null;\n    this.type = type;\n    this.offset = new Vector2(0, 0);\n    this.repeat = new Vector2(1, 1);\n    this.center = new Vector2(0, 0);\n    this.rotation = 0;\n    this.matrixAutoUpdate = true;\n    this.matrix = new Matrix3();\n    this.generateMipmaps = true;\n    this.premultiplyAlpha = false;\n    this.flipY = true;\n    this.unpackAlignment = 4;\n    this.encoding = encoding;\n    this.userData = {};\n    this.version = 0;\n    this.onUpdate = null;\n    this.isRenderTargetTexture = false;\n    this.needsPMREMUpdate = false;\n  }\n  get image() {\n    return this.source.data;\n  }\n  set image(value) {\n    this.source.data = value;\n  }\n  updateMatrix() {\n    this.matrix.setUvTransform(this.offset.x, this.offset.y, this.repeat.x, this.repeat.y, this.rotation, this.center.x, this.center.y);\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  copy(source) {\n    this.name = source.name;\n    this.source = source.source;\n    this.mipmaps = source.mipmaps.slice(0);\n    this.mapping = source.mapping;\n    this.wrapS = source.wrapS;\n    this.wrapT = source.wrapT;\n    this.magFilter = source.magFilter;\n    this.minFilter = source.minFilter;\n    this.anisotropy = source.anisotropy;\n    this.format = source.format;\n    this.internalFormat = source.internalFormat;\n    this.type = source.type;\n    this.offset.copy(source.offset);\n    this.repeat.copy(source.repeat);\n    this.center.copy(source.center);\n    this.rotation = source.rotation;\n    this.matrixAutoUpdate = source.matrixAutoUpdate;\n    this.matrix.copy(source.matrix);\n    this.generateMipmaps = source.generateMipmaps;\n    this.premultiplyAlpha = source.premultiplyAlpha;\n    this.flipY = source.flipY;\n    this.unpackAlignment = source.unpackAlignment;\n    this.encoding = source.encoding;\n    this.userData = JSON.parse(JSON.stringify(source.userData));\n    this.needsUpdate = true;\n    return this;\n  }\n  toJSON(meta) {\n    const isRootObject = meta === void 0 || typeof meta === \"string\";\n    if (!isRootObject && meta.textures[this.uuid] !== void 0) {\n      return meta.textures[this.uuid];\n    }\n    const output = {\n      metadata: {\n        version: 4.5,\n        type: \"Texture\",\n        generator: \"Texture.toJSON\"\n      },\n      uuid: this.uuid,\n      name: this.name,\n      image: this.source.toJSON(meta).uuid,\n      mapping: this.mapping,\n      repeat: [this.repeat.x, this.repeat.y],\n      offset: [this.offset.x, this.offset.y],\n      center: [this.center.x, this.center.y],\n      rotation: this.rotation,\n      wrap: [this.wrapS, this.wrapT],\n      format: this.format,\n      type: this.type,\n      encoding: this.encoding,\n      minFilter: this.minFilter,\n      magFilter: this.magFilter,\n      anisotropy: this.anisotropy,\n      flipY: this.flipY,\n      premultiplyAlpha: this.premultiplyAlpha,\n      unpackAlignment: this.unpackAlignment\n    };\n    if (JSON.stringify(this.userData) !== \"{}\")\n      output.userData = this.userData;\n    if (!isRootObject) {\n      meta.textures[this.uuid] = output;\n    }\n    return output;\n  }\n  dispose() {\n    this.dispatchEvent({ type: \"dispose\" });\n  }\n  transformUv(uv) {\n    if (this.mapping !== UVMapping)\n      return uv;\n    uv.applyMatrix3(this.matrix);\n    if (uv.x < 0 || uv.x > 1) {\n      switch (this.wrapS) {\n        case RepeatWrapping:\n          uv.x = uv.x - Math.floor(uv.x);\n          break;\n        case ClampToEdgeWrapping:\n          uv.x = uv.x < 0 ? 0 : 1;\n          break;\n        case MirroredRepeatWrapping:\n          if (Math.abs(Math.floor(uv.x) % 2) === 1) {\n            uv.x = Math.ceil(uv.x) - uv.x;\n          } else {\n            uv.x = uv.x - Math.floor(uv.x);\n          }\n          break;\n      }\n    }\n    if (uv.y < 0 || uv.y > 1) {\n      switch (this.wrapT) {\n        case RepeatWrapping:\n          uv.y = uv.y - Math.floor(uv.y);\n          break;\n        case ClampToEdgeWrapping:\n          uv.y = uv.y < 0 ? 0 : 1;\n          break;\n        case MirroredRepeatWrapping:\n          if (Math.abs(Math.floor(uv.y) % 2) === 1) {\n            uv.y = Math.ceil(uv.y) - uv.y;\n          } else {\n            uv.y = uv.y - Math.floor(uv.y);\n          }\n          break;\n      }\n    }\n    if (this.flipY) {\n      uv.y = 1 - uv.y;\n    }\n    return uv;\n  }\n  set needsUpdate(value) {\n    if (value === true) {\n      this.version++;\n      this.source.needsUpdate = true;\n    }\n  }\n}\nTexture.DEFAULT_IMAGE = null;\nTexture.DEFAULT_MAPPING = UVMapping;\nclass Vector4 {\n  constructor(x = 0, y = 0, z = 0, w = 1) {\n    Vector4.prototype.isVector4 = true;\n    this.x = x;\n    this.y = y;\n    this.z = z;\n    this.w = w;\n  }\n  get width() {\n    return this.z;\n  }\n  set width(value) {\n    this.z = value;\n  }\n  get height() {\n    return this.w;\n  }\n  set height(value) {\n    this.w = value;\n  }\n  set(x, y, z, w) {\n    this.x = x;\n    this.y = y;\n    this.z = z;\n    this.w = w;\n    return this;\n  }\n  setScalar(scalar) {\n    this.x = scalar;\n    this.y = scalar;\n    this.z = scalar;\n    this.w = scalar;\n    return this;\n  }\n  setX(x) {\n    this.x = x;\n    return this;\n  }\n  setY(y) {\n    this.y = y;\n    return this;\n  }\n  setZ(z) {\n    this.z = z;\n    return this;\n  }\n  setW(w) {\n    this.w = w;\n    return this;\n  }\n  setComponent(index2, value) {\n    switch (index2) {\n      case 0:\n        this.x = value;\n        break;\n      case 1:\n        this.y = value;\n        break;\n      case 2:\n        this.z = value;\n        break;\n      case 3:\n        this.w = value;\n        break;\n      default:\n        throw new Error(\"index is out of range: \" + index2);\n    }\n    return this;\n  }\n  getComponent(index2) {\n    switch (index2) {\n      case 0:\n        return this.x;\n      case 1:\n        return this.y;\n      case 2:\n        return this.z;\n      case 3:\n        return this.w;\n      default:\n        throw new Error(\"index is out of range: \" + index2);\n    }\n  }\n  clone() {\n    return new this.constructor(this.x, this.y, this.z, this.w);\n  }\n  copy(v) {\n    this.x = v.x;\n    this.y = v.y;\n    this.z = v.z;\n    this.w = v.w !== void 0 ? v.w : 1;\n    return this;\n  }\n  add(v) {\n    this.x += v.x;\n    this.y += v.y;\n    this.z += v.z;\n    this.w += v.w;\n    return this;\n  }\n  addScalar(s) {\n    this.x += s;\n    this.y += s;\n    this.z += s;\n    this.w += s;\n    return this;\n  }\n  addVectors(a, b) {\n    this.x = a.x + b.x;\n    this.y = a.y + b.y;\n    this.z = a.z + b.z;\n    this.w = a.w + b.w;\n    return this;\n  }\n  addScaledVector(v, s) {\n    this.x += v.x * s;\n    this.y += v.y * s;\n    this.z += v.z * s;\n    this.w += v.w * s;\n    return this;\n  }\n  sub(v) {\n    this.x -= v.x;\n    this.y -= v.y;\n    this.z -= v.z;\n    this.w -= v.w;\n    return this;\n  }\n  subScalar(s) {\n    this.x -= s;\n    this.y -= s;\n    this.z -= s;\n    this.w -= s;\n    return this;\n  }\n  subVectors(a, b) {\n    this.x = a.x - b.x;\n    this.y = a.y - b.y;\n    this.z = a.z - b.z;\n    this.w = a.w - b.w;\n    return this;\n  }\n  multiply(v) {\n    this.x *= v.x;\n    this.y *= v.y;\n    this.z *= v.z;\n    this.w *= v.w;\n    return this;\n  }\n  multiplyScalar(scalar) {\n    this.x *= scalar;\n    this.y *= scalar;\n    this.z *= scalar;\n    this.w *= scalar;\n    return this;\n  }\n  applyMatrix4(m) {\n    const x = this.x, y = this.y, z = this.z, w = this.w;\n    const e = m.elements;\n    this.x = e[0] * x + e[4] * y + e[8] * z + e[12] * w;\n    this.y = e[1] * x + e[5] * y + e[9] * z + e[13] * w;\n    this.z = e[2] * x + e[6] * y + e[10] * z + e[14] * w;\n    this.w = e[3] * x + e[7] * y + e[11] * z + e[15] * w;\n    return this;\n  }\n  divideScalar(scalar) {\n    return this.multiplyScalar(1 / scalar);\n  }\n  setAxisAngleFromQuaternion(q) {\n    this.w = 2 * Math.acos(q.w);\n    const s = Math.sqrt(1 - q.w * q.w);\n    if (s < 1e-4) {\n      this.x = 1;\n      this.y = 0;\n      this.z = 0;\n    } else {\n      this.x = q.x / s;\n      this.y = q.y / s;\n      this.z = q.z / s;\n    }\n    return this;\n  }\n  setAxisAngleFromRotationMatrix(m) {\n    let angle, x, y, z;\n    const epsilon = 0.01, epsilon2 = 0.1, te2 = m.elements, m11 = te2[0], m12 = te2[4], m13 = te2[8], m21 = te2[1], m22 = te2[5], m23 = te2[9], m31 = te2[2], m32 = te2[6], m33 = te2[10];\n    if (Math.abs(m12 - m21) < epsilon && Math.abs(m13 - m31) < epsilon && Math.abs(m23 - m32) < epsilon) {\n      if (Math.abs(m12 + m21) < epsilon2 && Math.abs(m13 + m31) < epsilon2 && Math.abs(m23 + m32) < epsilon2 && Math.abs(m11 + m22 + m33 - 3) < epsilon2) {\n        this.set(1, 0, 0, 0);\n        return this;\n      }\n      angle = Math.PI;\n      const xx = (m11 + 1) / 2;\n      const yy = (m22 + 1) / 2;\n      const zz = (m33 + 1) / 2;\n      const xy = (m12 + m21) / 4;\n      const xz = (m13 + m31) / 4;\n      const yz = (m23 + m32) / 4;\n      if (xx > yy && xx > zz) {\n        if (xx < epsilon) {\n          x = 0;\n          y = 0.707106781;\n          z = 0.707106781;\n        } else {\n          x = Math.sqrt(xx);\n          y = xy / x;\n          z = xz / x;\n        }\n      } else if (yy > zz) {\n        if (yy < epsilon) {\n          x = 0.707106781;\n          y = 0;\n          z = 0.707106781;\n        } else {\n          y = Math.sqrt(yy);\n          x = xy / y;\n          z = yz / y;\n        }\n      } else {\n        if (zz < epsilon) {\n          x = 0.707106781;\n          y = 0.707106781;\n          z = 0;\n        } else {\n          z = Math.sqrt(zz);\n          x = xz / z;\n          y = yz / z;\n        }\n      }\n      this.set(x, y, z, angle);\n      return this;\n    }\n    let s = Math.sqrt((m32 - m23) * (m32 - m23) + (m13 - m31) * (m13 - m31) + (m21 - m12) * (m21 - m12));\n    if (Math.abs(s) < 1e-3)\n      s = 1;\n    this.x = (m32 - m23) / s;\n    this.y = (m13 - m31) / s;\n    this.z = (m21 - m12) / s;\n    this.w = Math.acos((m11 + m22 + m33 - 1) / 2);\n    return this;\n  }\n  min(v) {\n    this.x = Math.min(this.x, v.x);\n    this.y = Math.min(this.y, v.y);\n    this.z = Math.min(this.z, v.z);\n    this.w = Math.min(this.w, v.w);\n    return this;\n  }\n  max(v) {\n    this.x = Math.max(this.x, v.x);\n    this.y = Math.max(this.y, v.y);\n    this.z = Math.max(this.z, v.z);\n    this.w = Math.max(this.w, v.w);\n    return this;\n  }\n  clamp(min, max2) {\n    this.x = Math.max(min.x, Math.min(max2.x, this.x));\n    this.y = Math.max(min.y, Math.min(max2.y, this.y));\n    this.z = Math.max(min.z, Math.min(max2.z, this.z));\n    this.w = Math.max(min.w, Math.min(max2.w, this.w));\n    return this;\n  }\n  clampScalar(minVal, maxVal) {\n    this.x = Math.max(minVal, Math.min(maxVal, this.x));\n    this.y = Math.max(minVal, Math.min(maxVal, this.y));\n    this.z = Math.max(minVal, Math.min(maxVal, this.z));\n    this.w = Math.max(minVal, Math.min(maxVal, this.w));\n    return this;\n  }\n  clampLength(min, max2) {\n    const length = this.length();\n    return this.divideScalar(length || 1).multiplyScalar(Math.max(min, Math.min(max2, length)));\n  }\n  floor() {\n    this.x = Math.floor(this.x);\n    this.y = Math.floor(this.y);\n    this.z = Math.floor(this.z);\n    this.w = Math.floor(this.w);\n    return this;\n  }\n  ceil() {\n    this.x = Math.ceil(this.x);\n    this.y = Math.ceil(this.y);\n    this.z = Math.ceil(this.z);\n    this.w = Math.ceil(this.w);\n    return this;\n  }\n  round() {\n    this.x = Math.round(this.x);\n    this.y = Math.round(this.y);\n    this.z = Math.round(this.z);\n    this.w = Math.round(this.w);\n    return this;\n  }\n  roundToZero() {\n    this.x = this.x < 0 ? Math.ceil(this.x) : Math.floor(this.x);\n    this.y = this.y < 0 ? Math.ceil(this.y) : Math.floor(this.y);\n    this.z = this.z < 0 ? Math.ceil(this.z) : Math.floor(this.z);\n    this.w = this.w < 0 ? Math.ceil(this.w) : Math.floor(this.w);\n    return this;\n  }\n  negate() {\n    this.x = -this.x;\n    this.y = -this.y;\n    this.z = -this.z;\n    this.w = -this.w;\n    return this;\n  }\n  dot(v) {\n    return this.x * v.x + this.y * v.y + this.z * v.z + this.w * v.w;\n  }\n  lengthSq() {\n    return this.x * this.x + this.y * this.y + this.z * this.z + this.w * this.w;\n  }\n  length() {\n    return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z + this.w * this.w);\n  }\n  manhattanLength() {\n    return Math.abs(this.x) + Math.abs(this.y) + Math.abs(this.z) + Math.abs(this.w);\n  }\n  normalize() {\n    return this.divideScalar(this.length() || 1);\n  }\n  setLength(length) {\n    return this.normalize().multiplyScalar(length);\n  }\n  lerp(v, alpha) {\n    this.x += (v.x - this.x) * alpha;\n    this.y += (v.y - this.y) * alpha;\n    this.z += (v.z - this.z) * alpha;\n    this.w += (v.w - this.w) * alpha;\n    return this;\n  }\n  lerpVectors(v1, v2, alpha) {\n    this.x = v1.x + (v2.x - v1.x) * alpha;\n    this.y = v1.y + (v2.y - v1.y) * alpha;\n    this.z = v1.z + (v2.z - v1.z) * alpha;\n    this.w = v1.w + (v2.w - v1.w) * alpha;\n    return this;\n  }\n  equals(v) {\n    return v.x === this.x && v.y === this.y && v.z === this.z && v.w === this.w;\n  }\n  fromArray(array, offset = 0) {\n    this.x = array[offset];\n    this.y = array[offset + 1];\n    this.z = array[offset + 2];\n    this.w = array[offset + 3];\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    array[offset] = this.x;\n    array[offset + 1] = this.y;\n    array[offset + 2] = this.z;\n    array[offset + 3] = this.w;\n    return array;\n  }\n  fromBufferAttribute(attribute, index2) {\n    this.x = attribute.getX(index2);\n    this.y = attribute.getY(index2);\n    this.z = attribute.getZ(index2);\n    this.w = attribute.getW(index2);\n    return this;\n  }\n  random() {\n    this.x = Math.random();\n    this.y = Math.random();\n    this.z = Math.random();\n    this.w = Math.random();\n    return this;\n  }\n  *[Symbol.iterator]() {\n    yield this.x;\n    yield this.y;\n    yield this.z;\n    yield this.w;\n  }\n}\nclass WebGLRenderTarget extends EventDispatcher {\n  constructor(width, height, options = {}) {\n    super();\n    this.isWebGLRenderTarget = true;\n    this.width = width;\n    this.height = height;\n    this.depth = 1;\n    this.scissor = new Vector4(0, 0, width, height);\n    this.scissorTest = false;\n    this.viewport = new Vector4(0, 0, width, height);\n    const image = { width, height, depth: 1 };\n    this.texture = new Texture(image, options.mapping, options.wrapS, options.wrapT, options.magFilter, options.minFilter, options.format, options.type, options.anisotropy, options.encoding);\n    this.texture.isRenderTargetTexture = true;\n    this.texture.flipY = false;\n    this.texture.generateMipmaps = options.generateMipmaps !== void 0 ? options.generateMipmaps : false;\n    this.texture.internalFormat = options.internalFormat !== void 0 ? options.internalFormat : null;\n    this.texture.minFilter = options.minFilter !== void 0 ? options.minFilter : LinearFilter;\n    this.depthBuffer = options.depthBuffer !== void 0 ? options.depthBuffer : true;\n    this.stencilBuffer = options.stencilBuffer !== void 0 ? options.stencilBuffer : false;\n    this.depthTexture = options.depthTexture !== void 0 ? options.depthTexture : null;\n    this.samples = options.samples !== void 0 ? options.samples : 0;\n  }\n  setSize(width, height, depth = 1) {\n    if (this.width !== width || this.height !== height || this.depth !== depth) {\n      this.width = width;\n      this.height = height;\n      this.depth = depth;\n      this.texture.image.width = width;\n      this.texture.image.height = height;\n      this.texture.image.depth = depth;\n      this.dispose();\n    }\n    this.viewport.set(0, 0, width, height);\n    this.scissor.set(0, 0, width, height);\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  copy(source) {\n    this.width = source.width;\n    this.height = source.height;\n    this.depth = source.depth;\n    this.viewport.copy(source.viewport);\n    this.texture = source.texture.clone();\n    this.texture.isRenderTargetTexture = true;\n    const image = Object.assign({}, source.texture.image);\n    this.texture.source = new Source(image);\n    this.depthBuffer = source.depthBuffer;\n    this.stencilBuffer = source.stencilBuffer;\n    if (source.depthTexture !== null)\n      this.depthTexture = source.depthTexture.clone();\n    this.samples = source.samples;\n    return this;\n  }\n  dispose() {\n    this.dispatchEvent({ type: \"dispose\" });\n  }\n}\nclass DataArrayTexture extends Texture {\n  constructor(data = null, width = 1, height = 1, depth = 1) {\n    super(null);\n    this.isDataArrayTexture = true;\n    this.image = { data, width, height, depth };\n    this.magFilter = NearestFilter;\n    this.minFilter = NearestFilter;\n    this.wrapR = ClampToEdgeWrapping;\n    this.generateMipmaps = false;\n    this.flipY = false;\n    this.unpackAlignment = 1;\n  }\n}\nclass WebGLArrayRenderTarget extends WebGLRenderTarget {\n  constructor(width, height, depth) {\n    super(width, height);\n    this.isWebGLArrayRenderTarget = true;\n    this.depth = depth;\n    this.texture = new DataArrayTexture(null, width, height, depth);\n    this.texture.isRenderTargetTexture = true;\n  }\n}\nclass Data3DTexture extends Texture {\n  constructor(data = null, width = 1, height = 1, depth = 1) {\n    super(null);\n    this.isData3DTexture = true;\n    this.image = { data, width, height, depth };\n    this.magFilter = NearestFilter;\n    this.minFilter = NearestFilter;\n    this.wrapR = ClampToEdgeWrapping;\n    this.generateMipmaps = false;\n    this.flipY = false;\n    this.unpackAlignment = 1;\n  }\n}\nclass WebGL3DRenderTarget extends WebGLRenderTarget {\n  constructor(width, height, depth) {\n    super(width, height);\n    this.isWebGL3DRenderTarget = true;\n    this.depth = depth;\n    this.texture = new Data3DTexture(null, width, height, depth);\n    this.texture.isRenderTargetTexture = true;\n  }\n}\nclass WebGLMultipleRenderTargets extends WebGLRenderTarget {\n  constructor(width, height, count, options = {}) {\n    super(width, height, options);\n    this.isWebGLMultipleRenderTargets = true;\n    const texture = this.texture;\n    this.texture = [];\n    for (let i = 0; i < count; i++) {\n      this.texture[i] = texture.clone();\n      this.texture[i].isRenderTargetTexture = true;\n    }\n  }\n  setSize(width, height, depth = 1) {\n    if (this.width !== width || this.height !== height || this.depth !== depth) {\n      this.width = width;\n      this.height = height;\n      this.depth = depth;\n      for (let i = 0, il = this.texture.length; i < il; i++) {\n        this.texture[i].image.width = width;\n        this.texture[i].image.height = height;\n        this.texture[i].image.depth = depth;\n      }\n      this.dispose();\n    }\n    this.viewport.set(0, 0, width, height);\n    this.scissor.set(0, 0, width, height);\n    return this;\n  }\n  copy(source) {\n    this.dispose();\n    this.width = source.width;\n    this.height = source.height;\n    this.depth = source.depth;\n    this.viewport.set(0, 0, this.width, this.height);\n    this.scissor.set(0, 0, this.width, this.height);\n    this.depthBuffer = source.depthBuffer;\n    this.stencilBuffer = source.stencilBuffer;\n    if (source.depthTexture !== null)\n      this.depthTexture = source.depthTexture.clone();\n    this.texture.length = 0;\n    for (let i = 0, il = source.texture.length; i < il; i++) {\n      this.texture[i] = source.texture[i].clone();\n      this.texture[i].isRenderTargetTexture = true;\n    }\n    return this;\n  }\n}\nclass Quaternion {\n  constructor(x = 0, y = 0, z = 0, w = 1) {\n    this.isQuaternion = true;\n    this._x = x;\n    this._y = y;\n    this._z = z;\n    this._w = w;\n  }\n  static slerpFlat(dst, dstOffset, src0, srcOffset0, src1, srcOffset1, t) {\n    let x0 = src0[srcOffset0 + 0], y0 = src0[srcOffset0 + 1], z0 = src0[srcOffset0 + 2], w0 = src0[srcOffset0 + 3];\n    const x1 = src1[srcOffset1 + 0], y1 = src1[srcOffset1 + 1], z1 = src1[srcOffset1 + 2], w1 = src1[srcOffset1 + 3];\n    if (t === 0) {\n      dst[dstOffset + 0] = x0;\n      dst[dstOffset + 1] = y0;\n      dst[dstOffset + 2] = z0;\n      dst[dstOffset + 3] = w0;\n      return;\n    }\n    if (t === 1) {\n      dst[dstOffset + 0] = x1;\n      dst[dstOffset + 1] = y1;\n      dst[dstOffset + 2] = z1;\n      dst[dstOffset + 3] = w1;\n      return;\n    }\n    if (w0 !== w1 || x0 !== x1 || y0 !== y1 || z0 !== z1) {\n      let s = 1 - t;\n      const cos = x0 * x1 + y0 * y1 + z0 * z1 + w0 * w1, dir = cos >= 0 ? 1 : -1, sqrSin = 1 - cos * cos;\n      if (sqrSin > Number.EPSILON) {\n        const sin = Math.sqrt(sqrSin), len = Math.atan2(sin, cos * dir);\n        s = Math.sin(s * len) / sin;\n        t = Math.sin(t * len) / sin;\n      }\n      const tDir = t * dir;\n      x0 = x0 * s + x1 * tDir;\n      y0 = y0 * s + y1 * tDir;\n      z0 = z0 * s + z1 * tDir;\n      w0 = w0 * s + w1 * tDir;\n      if (s === 1 - t) {\n        const f = 1 / Math.sqrt(x0 * x0 + y0 * y0 + z0 * z0 + w0 * w0);\n        x0 *= f;\n        y0 *= f;\n        z0 *= f;\n        w0 *= f;\n      }\n    }\n    dst[dstOffset] = x0;\n    dst[dstOffset + 1] = y0;\n    dst[dstOffset + 2] = z0;\n    dst[dstOffset + 3] = w0;\n  }\n  static multiplyQuaternionsFlat(dst, dstOffset, src0, srcOffset0, src1, srcOffset1) {\n    const x0 = src0[srcOffset0];\n    const y0 = src0[srcOffset0 + 1];\n    const z0 = src0[srcOffset0 + 2];\n    const w0 = src0[srcOffset0 + 3];\n    const x1 = src1[srcOffset1];\n    const y1 = src1[srcOffset1 + 1];\n    const z1 = src1[srcOffset1 + 2];\n    const w1 = src1[srcOffset1 + 3];\n    dst[dstOffset] = x0 * w1 + w0 * x1 + y0 * z1 - z0 * y1;\n    dst[dstOffset + 1] = y0 * w1 + w0 * y1 + z0 * x1 - x0 * z1;\n    dst[dstOffset + 2] = z0 * w1 + w0 * z1 + x0 * y1 - y0 * x1;\n    dst[dstOffset + 3] = w0 * w1 - x0 * x1 - y0 * y1 - z0 * z1;\n    return dst;\n  }\n  get x() {\n    return this._x;\n  }\n  set x(value) {\n    this._x = value;\n    this._onChangeCallback();\n  }\n  get y() {\n    return this._y;\n  }\n  set y(value) {\n    this._y = value;\n    this._onChangeCallback();\n  }\n  get z() {\n    return this._z;\n  }\n  set z(value) {\n    this._z = value;\n    this._onChangeCallback();\n  }\n  get w() {\n    return this._w;\n  }\n  set w(value) {\n    this._w = value;\n    this._onChangeCallback();\n  }\n  set(x, y, z, w) {\n    this._x = x;\n    this._y = y;\n    this._z = z;\n    this._w = w;\n    this._onChangeCallback();\n    return this;\n  }\n  clone() {\n    return new this.constructor(this._x, this._y, this._z, this._w);\n  }\n  copy(quaternion) {\n    this._x = quaternion.x;\n    this._y = quaternion.y;\n    this._z = quaternion.z;\n    this._w = quaternion.w;\n    this._onChangeCallback();\n    return this;\n  }\n  setFromEuler(euler, update) {\n    if (!(euler && euler.isEuler)) {\n      throw new Error(\"THREE.Quaternion: .setFromEuler() now expects an Euler rotation rather than a Vector3 and order.\");\n    }\n    const x = euler._x, y = euler._y, z = euler._z, order = euler._order;\n    const cos = Math.cos;\n    const sin = Math.sin;\n    const c1 = cos(x / 2);\n    const c2 = cos(y / 2);\n    const c3 = cos(z / 2);\n    const s1 = sin(x / 2);\n    const s2 = sin(y / 2);\n    const s3 = sin(z / 2);\n    switch (order) {\n      case \"XYZ\":\n        this._x = s1 * c2 * c3 + c1 * s2 * s3;\n        this._y = c1 * s2 * c3 - s1 * c2 * s3;\n        this._z = c1 * c2 * s3 + s1 * s2 * c3;\n        this._w = c1 * c2 * c3 - s1 * s2 * s3;\n        break;\n      case \"YXZ\":\n        this._x = s1 * c2 * c3 + c1 * s2 * s3;\n        this._y = c1 * s2 * c3 - s1 * c2 * s3;\n        this._z = c1 * c2 * s3 - s1 * s2 * c3;\n        this._w = c1 * c2 * c3 + s1 * s2 * s3;\n        break;\n      case \"ZXY\":\n        this._x = s1 * c2 * c3 - c1 * s2 * s3;\n        this._y = c1 * s2 * c3 + s1 * c2 * s3;\n        this._z = c1 * c2 * s3 + s1 * s2 * c3;\n        this._w = c1 * c2 * c3 - s1 * s2 * s3;\n        break;\n      case \"ZYX\":\n        this._x = s1 * c2 * c3 - c1 * s2 * s3;\n        this._y = c1 * s2 * c3 + s1 * c2 * s3;\n        this._z = c1 * c2 * s3 - s1 * s2 * c3;\n        this._w = c1 * c2 * c3 + s1 * s2 * s3;\n        break;\n      case \"YZX\":\n        this._x = s1 * c2 * c3 + c1 * s2 * s3;\n        this._y = c1 * s2 * c3 + s1 * c2 * s3;\n        this._z = c1 * c2 * s3 - s1 * s2 * c3;\n        this._w = c1 * c2 * c3 - s1 * s2 * s3;\n        break;\n      case \"XZY\":\n        this._x = s1 * c2 * c3 - c1 * s2 * s3;\n        this._y = c1 * s2 * c3 - s1 * c2 * s3;\n        this._z = c1 * c2 * s3 + s1 * s2 * c3;\n        this._w = c1 * c2 * c3 + s1 * s2 * s3;\n        break;\n      default:\n        console.warn(\"THREE.Quaternion: .setFromEuler() encountered an unknown order: \" + order);\n    }\n    if (update !== false)\n      this._onChangeCallback();\n    return this;\n  }\n  setFromAxisAngle(axis, angle) {\n    const halfAngle = angle / 2, s = Math.sin(halfAngle);\n    this._x = axis.x * s;\n    this._y = axis.y * s;\n    this._z = axis.z * s;\n    this._w = Math.cos(halfAngle);\n    this._onChangeCallback();\n    return this;\n  }\n  setFromRotationMatrix(m) {\n    const te2 = m.elements, m11 = te2[0], m12 = te2[4], m13 = te2[8], m21 = te2[1], m22 = te2[5], m23 = te2[9], m31 = te2[2], m32 = te2[6], m33 = te2[10], trace = m11 + m22 + m33;\n    if (trace > 0) {\n      const s = 0.5 / Math.sqrt(trace + 1);\n      this._w = 0.25 / s;\n      this._x = (m32 - m23) * s;\n      this._y = (m13 - m31) * s;\n      this._z = (m21 - m12) * s;\n    } else if (m11 > m22 && m11 > m33) {\n      const s = 2 * Math.sqrt(1 + m11 - m22 - m33);\n      this._w = (m32 - m23) / s;\n      this._x = 0.25 * s;\n      this._y = (m12 + m21) / s;\n      this._z = (m13 + m31) / s;\n    } else if (m22 > m33) {\n      const s = 2 * Math.sqrt(1 + m22 - m11 - m33);\n      this._w = (m13 - m31) / s;\n      this._x = (m12 + m21) / s;\n      this._y = 0.25 * s;\n      this._z = (m23 + m32) / s;\n    } else {\n      const s = 2 * Math.sqrt(1 + m33 - m11 - m22);\n      this._w = (m21 - m12) / s;\n      this._x = (m13 + m31) / s;\n      this._y = (m23 + m32) / s;\n      this._z = 0.25 * s;\n    }\n    this._onChangeCallback();\n    return this;\n  }\n  setFromUnitVectors(vFrom, vTo) {\n    let r = vFrom.dot(vTo) + 1;\n    if (r < Number.EPSILON) {\n      r = 0;\n      if (Math.abs(vFrom.x) > Math.abs(vFrom.z)) {\n        this._x = -vFrom.y;\n        this._y = vFrom.x;\n        this._z = 0;\n        this._w = r;\n      } else {\n        this._x = 0;\n        this._y = -vFrom.z;\n        this._z = vFrom.y;\n        this._w = r;\n      }\n    } else {\n      this._x = vFrom.y * vTo.z - vFrom.z * vTo.y;\n      this._y = vFrom.z * vTo.x - vFrom.x * vTo.z;\n      this._z = vFrom.x * vTo.y - vFrom.y * vTo.x;\n      this._w = r;\n    }\n    return this.normalize();\n  }\n  angleTo(q) {\n    return 2 * Math.acos(Math.abs(clamp(this.dot(q), -1, 1)));\n  }\n  rotateTowards(q, step) {\n    const angle = this.angleTo(q);\n    if (angle === 0)\n      return this;\n    const t = Math.min(1, step / angle);\n    this.slerp(q, t);\n    return this;\n  }\n  identity() {\n    return this.set(0, 0, 0, 1);\n  }\n  invert() {\n    return this.conjugate();\n  }\n  conjugate() {\n    this._x *= -1;\n    this._y *= -1;\n    this._z *= -1;\n    this._onChangeCallback();\n    return this;\n  }\n  dot(v) {\n    return this._x * v._x + this._y * v._y + this._z * v._z + this._w * v._w;\n  }\n  lengthSq() {\n    return this._x * this._x + this._y * this._y + this._z * this._z + this._w * this._w;\n  }\n  length() {\n    return Math.sqrt(this._x * this._x + this._y * this._y + this._z * this._z + this._w * this._w);\n  }\n  normalize() {\n    let l = this.length();\n    if (l === 0) {\n      this._x = 0;\n      this._y = 0;\n      this._z = 0;\n      this._w = 1;\n    } else {\n      l = 1 / l;\n      this._x = this._x * l;\n      this._y = this._y * l;\n      this._z = this._z * l;\n      this._w = this._w * l;\n    }\n    this._onChangeCallback();\n    return this;\n  }\n  multiply(q) {\n    return this.multiplyQuaternions(this, q);\n  }\n  premultiply(q) {\n    return this.multiplyQuaternions(q, this);\n  }\n  multiplyQuaternions(a, b) {\n    const qax = a._x, qay = a._y, qaz = a._z, qaw = a._w;\n    const qbx = b._x, qby = b._y, qbz = b._z, qbw = b._w;\n    this._x = qax * qbw + qaw * qbx + qay * qbz - qaz * qby;\n    this._y = qay * qbw + qaw * qby + qaz * qbx - qax * qbz;\n    this._z = qaz * qbw + qaw * qbz + qax * qby - qay * qbx;\n    this._w = qaw * qbw - qax * qbx - qay * qby - qaz * qbz;\n    this._onChangeCallback();\n    return this;\n  }\n  slerp(qb, t) {\n    if (t === 0)\n      return this;\n    if (t === 1)\n      return this.copy(qb);\n    const x = this._x, y = this._y, z = this._z, w = this._w;\n    let cosHalfTheta = w * qb._w + x * qb._x + y * qb._y + z * qb._z;\n    if (cosHalfTheta < 0) {\n      this._w = -qb._w;\n      this._x = -qb._x;\n      this._y = -qb._y;\n      this._z = -qb._z;\n      cosHalfTheta = -cosHalfTheta;\n    } else {\n      this.copy(qb);\n    }\n    if (cosHalfTheta >= 1) {\n      this._w = w;\n      this._x = x;\n      this._y = y;\n      this._z = z;\n      return this;\n    }\n    const sqrSinHalfTheta = 1 - cosHalfTheta * cosHalfTheta;\n    if (sqrSinHalfTheta <= Number.EPSILON) {\n      const s = 1 - t;\n      this._w = s * w + t * this._w;\n      this._x = s * x + t * this._x;\n      this._y = s * y + t * this._y;\n      this._z = s * z + t * this._z;\n      this.normalize();\n      this._onChangeCallback();\n      return this;\n    }\n    const sinHalfTheta = Math.sqrt(sqrSinHalfTheta);\n    const halfTheta = Math.atan2(sinHalfTheta, cosHalfTheta);\n    const ratioA = Math.sin((1 - t) * halfTheta) / sinHalfTheta, ratioB = Math.sin(t * halfTheta) / sinHalfTheta;\n    this._w = w * ratioA + this._w * ratioB;\n    this._x = x * ratioA + this._x * ratioB;\n    this._y = y * ratioA + this._y * ratioB;\n    this._z = z * ratioA + this._z * ratioB;\n    this._onChangeCallback();\n    return this;\n  }\n  slerpQuaternions(qa, qb, t) {\n    return this.copy(qa).slerp(qb, t);\n  }\n  random() {\n    const u1 = Math.random();\n    const sqrt1u1 = Math.sqrt(1 - u1);\n    const sqrtu1 = Math.sqrt(u1);\n    const u2 = 2 * Math.PI * Math.random();\n    const u3 = 2 * Math.PI * Math.random();\n    return this.set(sqrt1u1 * Math.cos(u2), sqrtu1 * Math.sin(u3), sqrtu1 * Math.cos(u3), sqrt1u1 * Math.sin(u2));\n  }\n  equals(quaternion) {\n    return quaternion._x === this._x && quaternion._y === this._y && quaternion._z === this._z && quaternion._w === this._w;\n  }\n  fromArray(array, offset = 0) {\n    this._x = array[offset];\n    this._y = array[offset + 1];\n    this._z = array[offset + 2];\n    this._w = array[offset + 3];\n    this._onChangeCallback();\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    array[offset] = this._x;\n    array[offset + 1] = this._y;\n    array[offset + 2] = this._z;\n    array[offset + 3] = this._w;\n    return array;\n  }\n  fromBufferAttribute(attribute, index2) {\n    this._x = attribute.getX(index2);\n    this._y = attribute.getY(index2);\n    this._z = attribute.getZ(index2);\n    this._w = attribute.getW(index2);\n    return this;\n  }\n  _onChange(callback) {\n    this._onChangeCallback = callback;\n    return this;\n  }\n  _onChangeCallback() {\n  }\n  *[Symbol.iterator]() {\n    yield this._x;\n    yield this._y;\n    yield this._z;\n    yield this._w;\n  }\n}\nclass Vector3 {\n  constructor(x = 0, y = 0, z = 0) {\n    Vector3.prototype.isVector3 = true;\n    this.x = x;\n    this.y = y;\n    this.z = z;\n  }\n  set(x, y, z) {\n    if (z === void 0)\n      z = this.z;\n    this.x = x;\n    this.y = y;\n    this.z = z;\n    return this;\n  }\n  setScalar(scalar) {\n    this.x = scalar;\n    this.y = scalar;\n    this.z = scalar;\n    return this;\n  }\n  setX(x) {\n    this.x = x;\n    return this;\n  }\n  setY(y) {\n    this.y = y;\n    return this;\n  }\n  setZ(z) {\n    this.z = z;\n    return this;\n  }\n  setComponent(index2, value) {\n    switch (index2) {\n      case 0:\n        this.x = value;\n        break;\n      case 1:\n        this.y = value;\n        break;\n      case 2:\n        this.z = value;\n        break;\n      default:\n        throw new Error(\"index is out of range: \" + index2);\n    }\n    return this;\n  }\n  getComponent(index2) {\n    switch (index2) {\n      case 0:\n        return this.x;\n      case 1:\n        return this.y;\n      case 2:\n        return this.z;\n      default:\n        throw new Error(\"index is out of range: \" + index2);\n    }\n  }\n  clone() {\n    return new this.constructor(this.x, this.y, this.z);\n  }\n  copy(v) {\n    this.x = v.x;\n    this.y = v.y;\n    this.z = v.z;\n    return this;\n  }\n  add(v) {\n    this.x += v.x;\n    this.y += v.y;\n    this.z += v.z;\n    return this;\n  }\n  addScalar(s) {\n    this.x += s;\n    this.y += s;\n    this.z += s;\n    return this;\n  }\n  addVectors(a, b) {\n    this.x = a.x + b.x;\n    this.y = a.y + b.y;\n    this.z = a.z + b.z;\n    return this;\n  }\n  addScaledVector(v, s) {\n    this.x += v.x * s;\n    this.y += v.y * s;\n    this.z += v.z * s;\n    return this;\n  }\n  sub(v) {\n    this.x -= v.x;\n    this.y -= v.y;\n    this.z -= v.z;\n    return this;\n  }\n  subScalar(s) {\n    this.x -= s;\n    this.y -= s;\n    this.z -= s;\n    return this;\n  }\n  subVectors(a, b) {\n    this.x = a.x - b.x;\n    this.y = a.y - b.y;\n    this.z = a.z - b.z;\n    return this;\n  }\n  multiply(v) {\n    this.x *= v.x;\n    this.y *= v.y;\n    this.z *= v.z;\n    return this;\n  }\n  multiplyScalar(scalar) {\n    this.x *= scalar;\n    this.y *= scalar;\n    this.z *= scalar;\n    return this;\n  }\n  multiplyVectors(a, b) {\n    this.x = a.x * b.x;\n    this.y = a.y * b.y;\n    this.z = a.z * b.z;\n    return this;\n  }\n  applyEuler(euler) {\n    return this.applyQuaternion(_quaternion$4.setFromEuler(euler));\n  }\n  applyAxisAngle(axis, angle) {\n    return this.applyQuaternion(_quaternion$4.setFromAxisAngle(axis, angle));\n  }\n  applyMatrix3(m) {\n    const x = this.x, y = this.y, z = this.z;\n    const e = m.elements;\n    this.x = e[0] * x + e[3] * y + e[6] * z;\n    this.y = e[1] * x + e[4] * y + e[7] * z;\n    this.z = e[2] * x + e[5] * y + e[8] * z;\n    return this;\n  }\n  applyNormalMatrix(m) {\n    return this.applyMatrix3(m).normalize();\n  }\n  applyMatrix4(m) {\n    const x = this.x, y = this.y, z = this.z;\n    const e = m.elements;\n    const w = 1 / (e[3] * x + e[7] * y + e[11] * z + e[15]);\n    this.x = (e[0] * x + e[4] * y + e[8] * z + e[12]) * w;\n    this.y = (e[1] * x + e[5] * y + e[9] * z + e[13]) * w;\n    this.z = (e[2] * x + e[6] * y + e[10] * z + e[14]) * w;\n    return this;\n  }\n  applyQuaternion(q) {\n    const x = this.x, y = this.y, z = this.z;\n    const qx = q.x, qy = q.y, qz = q.z, qw = q.w;\n    const ix = qw * x + qy * z - qz * y;\n    const iy = qw * y + qz * x - qx * z;\n    const iz = qw * z + qx * y - qy * x;\n    const iw = -qx * x - qy * y - qz * z;\n    this.x = ix * qw + iw * -qx + iy * -qz - iz * -qy;\n    this.y = iy * qw + iw * -qy + iz * -qx - ix * -qz;\n    this.z = iz * qw + iw * -qz + ix * -qy - iy * -qx;\n    return this;\n  }\n  project(camera) {\n    return this.applyMatrix4(camera.matrixWorldInverse).applyMatrix4(camera.projectionMatrix);\n  }\n  unproject(camera) {\n    return this.applyMatrix4(camera.projectionMatrixInverse).applyMatrix4(camera.matrixWorld);\n  }\n  transformDirection(m) {\n    const x = this.x, y = this.y, z = this.z;\n    const e = m.elements;\n    this.x = e[0] * x + e[4] * y + e[8] * z;\n    this.y = e[1] * x + e[5] * y + e[9] * z;\n    this.z = e[2] * x + e[6] * y + e[10] * z;\n    return this.normalize();\n  }\n  divide(v) {\n    this.x /= v.x;\n    this.y /= v.y;\n    this.z /= v.z;\n    return this;\n  }\n  divideScalar(scalar) {\n    return this.multiplyScalar(1 / scalar);\n  }\n  min(v) {\n    this.x = Math.min(this.x, v.x);\n    this.y = Math.min(this.y, v.y);\n    this.z = Math.min(this.z, v.z);\n    return this;\n  }\n  max(v) {\n    this.x = Math.max(this.x, v.x);\n    this.y = Math.max(this.y, v.y);\n    this.z = Math.max(this.z, v.z);\n    return this;\n  }\n  clamp(min, max2) {\n    this.x = Math.max(min.x, Math.min(max2.x, this.x));\n    this.y = Math.max(min.y, Math.min(max2.y, this.y));\n    this.z = Math.max(min.z, Math.min(max2.z, this.z));\n    return this;\n  }\n  clampScalar(minVal, maxVal) {\n    this.x = Math.max(minVal, Math.min(maxVal, this.x));\n    this.y = Math.max(minVal, Math.min(maxVal, this.y));\n    this.z = Math.max(minVal, Math.min(maxVal, this.z));\n    return this;\n  }\n  clampLength(min, max2) {\n    const length = this.length();\n    return this.divideScalar(length || 1).multiplyScalar(Math.max(min, Math.min(max2, length)));\n  }\n  floor() {\n    this.x = Math.floor(this.x);\n    this.y = Math.floor(this.y);\n    this.z = Math.floor(this.z);\n    return this;\n  }\n  ceil() {\n    this.x = Math.ceil(this.x);\n    this.y = Math.ceil(this.y);\n    this.z = Math.ceil(this.z);\n    return this;\n  }\n  round() {\n    this.x = Math.round(this.x);\n    this.y = Math.round(this.y);\n    this.z = Math.round(this.z);\n    return this;\n  }\n  roundToZero() {\n    this.x = this.x < 0 ? Math.ceil(this.x) : Math.floor(this.x);\n    this.y = this.y < 0 ? Math.ceil(this.y) : Math.floor(this.y);\n    this.z = this.z < 0 ? Math.ceil(this.z) : Math.floor(this.z);\n    return this;\n  }\n  negate() {\n    this.x = -this.x;\n    this.y = -this.y;\n    this.z = -this.z;\n    return this;\n  }\n  dot(v) {\n    return this.x * v.x + this.y * v.y + this.z * v.z;\n  }\n  lengthSq() {\n    return this.x * this.x + this.y * this.y + this.z * this.z;\n  }\n  length() {\n    return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z);\n  }\n  manhattanLength() {\n    return Math.abs(this.x) + Math.abs(this.y) + Math.abs(this.z);\n  }\n  normalize() {\n    return this.divideScalar(this.length() || 1);\n  }\n  setLength(length) {\n    return this.normalize().multiplyScalar(length);\n  }\n  lerp(v, alpha) {\n    this.x += (v.x - this.x) * alpha;\n    this.y += (v.y - this.y) * alpha;\n    this.z += (v.z - this.z) * alpha;\n    return this;\n  }\n  lerpVectors(v1, v2, alpha) {\n    this.x = v1.x + (v2.x - v1.x) * alpha;\n    this.y = v1.y + (v2.y - v1.y) * alpha;\n    this.z = v1.z + (v2.z - v1.z) * alpha;\n    return this;\n  }\n  cross(v) {\n    return this.crossVectors(this, v);\n  }\n  crossVectors(a, b) {\n    const ax = a.x, ay = a.y, az = a.z;\n    const bx = b.x, by = b.y, bz = b.z;\n    this.x = ay * bz - az * by;\n    this.y = az * bx - ax * bz;\n    this.z = ax * by - ay * bx;\n    return this;\n  }\n  projectOnVector(v) {\n    const denominator = v.lengthSq();\n    if (denominator === 0)\n      return this.set(0, 0, 0);\n    const scalar = v.dot(this) / denominator;\n    return this.copy(v).multiplyScalar(scalar);\n  }\n  projectOnPlane(planeNormal) {\n    _vector$c.copy(this).projectOnVector(planeNormal);\n    return this.sub(_vector$c);\n  }\n  reflect(normal) {\n    return this.sub(_vector$c.copy(normal).multiplyScalar(2 * this.dot(normal)));\n  }\n  angleTo(v) {\n    const denominator = Math.sqrt(this.lengthSq() * v.lengthSq());\n    if (denominator === 0)\n      return Math.PI / 2;\n    const theta = this.dot(v) / denominator;\n    return Math.acos(clamp(theta, -1, 1));\n  }\n  distanceTo(v) {\n    return Math.sqrt(this.distanceToSquared(v));\n  }\n  distanceToSquared(v) {\n    const dx = this.x - v.x, dy = this.y - v.y, dz = this.z - v.z;\n    return dx * dx + dy * dy + dz * dz;\n  }\n  manhattanDistanceTo(v) {\n    return Math.abs(this.x - v.x) + Math.abs(this.y - v.y) + Math.abs(this.z - v.z);\n  }\n  setFromSpherical(s) {\n    return this.setFromSphericalCoords(s.radius, s.phi, s.theta);\n  }\n  setFromSphericalCoords(radius, phi, theta) {\n    const sinPhiRadius = Math.sin(phi) * radius;\n    this.x = sinPhiRadius * Math.sin(theta);\n    this.y = Math.cos(phi) * radius;\n    this.z = sinPhiRadius * Math.cos(theta);\n    return this;\n  }\n  setFromCylindrical(c) {\n    return this.setFromCylindricalCoords(c.radius, c.theta, c.y);\n  }\n  setFromCylindricalCoords(radius, theta, y) {\n    this.x = radius * Math.sin(theta);\n    this.y = y;\n    this.z = radius * Math.cos(theta);\n    return this;\n  }\n  setFromMatrixPosition(m) {\n    const e = m.elements;\n    this.x = e[12];\n    this.y = e[13];\n    this.z = e[14];\n    return this;\n  }\n  setFromMatrixScale(m) {\n    const sx = this.setFromMatrixColumn(m, 0).length();\n    const sy = this.setFromMatrixColumn(m, 1).length();\n    const sz = this.setFromMatrixColumn(m, 2).length();\n    this.x = sx;\n    this.y = sy;\n    this.z = sz;\n    return this;\n  }\n  setFromMatrixColumn(m, index2) {\n    return this.fromArray(m.elements, index2 * 4);\n  }\n  setFromMatrix3Column(m, index2) {\n    return this.fromArray(m.elements, index2 * 3);\n  }\n  setFromEuler(e) {\n    this.x = e._x;\n    this.y = e._y;\n    this.z = e._z;\n    return this;\n  }\n  equals(v) {\n    return v.x === this.x && v.y === this.y && v.z === this.z;\n  }\n  fromArray(array, offset = 0) {\n    this.x = array[offset];\n    this.y = array[offset + 1];\n    this.z = array[offset + 2];\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    array[offset] = this.x;\n    array[offset + 1] = this.y;\n    array[offset + 2] = this.z;\n    return array;\n  }\n  fromBufferAttribute(attribute, index2) {\n    this.x = attribute.getX(index2);\n    this.y = attribute.getY(index2);\n    this.z = attribute.getZ(index2);\n    return this;\n  }\n  random() {\n    this.x = Math.random();\n    this.y = Math.random();\n    this.z = Math.random();\n    return this;\n  }\n  randomDirection() {\n    const u = (Math.random() - 0.5) * 2;\n    const t = Math.random() * Math.PI * 2;\n    const f = Math.sqrt(1 - u ** 2);\n    this.x = f * Math.cos(t);\n    this.y = f * Math.sin(t);\n    this.z = u;\n    return this;\n  }\n  *[Symbol.iterator]() {\n    yield this.x;\n    yield this.y;\n    yield this.z;\n  }\n}\nconst _vector$c = /* @__PURE__ */ new Vector3();\nconst _quaternion$4 = /* @__PURE__ */ new Quaternion();\nclass Box3 {\n  constructor(min = new Vector3(Infinity, Infinity, Infinity), max2 = new Vector3(-Infinity, -Infinity, -Infinity)) {\n    this.isBox3 = true;\n    this.min = min;\n    this.max = max2;\n  }\n  set(min, max2) {\n    this.min.copy(min);\n    this.max.copy(max2);\n    return this;\n  }\n  setFromArray(array) {\n    let minX = Infinity;\n    let minY = Infinity;\n    let minZ = Infinity;\n    let maxX = -Infinity;\n    let maxY = -Infinity;\n    let maxZ = -Infinity;\n    for (let i = 0, l = array.length; i < l; i += 3) {\n      const x = array[i];\n      const y = array[i + 1];\n      const z = array[i + 2];\n      if (x < minX)\n        minX = x;\n      if (y < minY)\n        minY = y;\n      if (z < minZ)\n        minZ = z;\n      if (x > maxX)\n        maxX = x;\n      if (y > maxY)\n        maxY = y;\n      if (z > maxZ)\n        maxZ = z;\n    }\n    this.min.set(minX, minY, minZ);\n    this.max.set(maxX, maxY, maxZ);\n    return this;\n  }\n  setFromBufferAttribute(attribute) {\n    let minX = Infinity;\n    let minY = Infinity;\n    let minZ = Infinity;\n    let maxX = -Infinity;\n    let maxY = -Infinity;\n    let maxZ = -Infinity;\n    for (let i = 0, l = attribute.count; i < l; i++) {\n      const x = attribute.getX(i);\n      const y = attribute.getY(i);\n      const z = attribute.getZ(i);\n      if (x < minX)\n        minX = x;\n      if (y < minY)\n        minY = y;\n      if (z < minZ)\n        minZ = z;\n      if (x > maxX)\n        maxX = x;\n      if (y > maxY)\n        maxY = y;\n      if (z > maxZ)\n        maxZ = z;\n    }\n    this.min.set(minX, minY, minZ);\n    this.max.set(maxX, maxY, maxZ);\n    return this;\n  }\n  setFromPoints(points) {\n    this.makeEmpty();\n    for (let i = 0, il = points.length; i < il; i++) {\n      this.expandByPoint(points[i]);\n    }\n    return this;\n  }\n  setFromCenterAndSize(center, size) {\n    const halfSize = _vector$b.copy(size).multiplyScalar(0.5);\n    this.min.copy(center).sub(halfSize);\n    this.max.copy(center).add(halfSize);\n    return this;\n  }\n  setFromObject(object, precise = false) {\n    this.makeEmpty();\n    return this.expandByObject(object, precise);\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  copy(box2) {\n    this.min.copy(box2.min);\n    this.max.copy(box2.max);\n    return this;\n  }\n  makeEmpty() {\n    this.min.x = this.min.y = this.min.z = Infinity;\n    this.max.x = this.max.y = this.max.z = -Infinity;\n    return this;\n  }\n  isEmpty() {\n    return this.max.x < this.min.x || this.max.y < this.min.y || this.max.z < this.min.z;\n  }\n  getCenter(target) {\n    return this.isEmpty() ? target.set(0, 0, 0) : target.addVectors(this.min, this.max).multiplyScalar(0.5);\n  }\n  getSize(target) {\n    return this.isEmpty() ? target.set(0, 0, 0) : target.subVectors(this.max, this.min);\n  }\n  expandByPoint(point) {\n    this.min.min(point);\n    this.max.max(point);\n    return this;\n  }\n  expandByVector(vector) {\n    this.min.sub(vector);\n    this.max.add(vector);\n    return this;\n  }\n  expandByScalar(scalar) {\n    this.min.addScalar(-scalar);\n    this.max.addScalar(scalar);\n    return this;\n  }\n  expandByObject(object, precise = false) {\n    object.updateWorldMatrix(false, false);\n    const geometry = object.geometry;\n    if (geometry !== void 0) {\n      if (precise && geometry.attributes != void 0 && geometry.attributes.position !== void 0) {\n        const position = geometry.attributes.position;\n        for (let i = 0, l = position.count; i < l; i++) {\n          _vector$b.fromBufferAttribute(position, i).applyMatrix4(object.matrixWorld);\n          this.expandByPoint(_vector$b);\n        }\n      } else {\n        if (geometry.boundingBox === null) {\n          geometry.computeBoundingBox();\n        }\n        _box$3.copy(geometry.boundingBox);\n        _box$3.applyMatrix4(object.matrixWorld);\n        this.union(_box$3);\n      }\n    }\n    const children = object.children;\n    for (let i = 0, l = children.length; i < l; i++) {\n      this.expandByObject(children[i], precise);\n    }\n    return this;\n  }\n  containsPoint(point) {\n    return point.x < this.min.x || point.x > this.max.x || point.y < this.min.y || point.y > this.max.y || point.z < this.min.z || point.z > this.max.z ? false : true;\n  }\n  containsBox(box2) {\n    return this.min.x <= box2.min.x && box2.max.x <= this.max.x && this.min.y <= box2.min.y && box2.max.y <= this.max.y && this.min.z <= box2.min.z && box2.max.z <= this.max.z;\n  }\n  getParameter(point, target) {\n    return target.set((point.x - this.min.x) / (this.max.x - this.min.x), (point.y - this.min.y) / (this.max.y - this.min.y), (point.z - this.min.z) / (this.max.z - this.min.z));\n  }\n  intersectsBox(box2) {\n    return box2.max.x < this.min.x || box2.min.x > this.max.x || box2.max.y < this.min.y || box2.min.y > this.max.y || box2.max.z < this.min.z || box2.min.z > this.max.z ? false : true;\n  }\n  intersectsSphere(sphere) {\n    this.clampPoint(sphere.center, _vector$b);\n    return _vector$b.distanceToSquared(sphere.center) <= sphere.radius * sphere.radius;\n  }\n  intersectsPlane(plane) {\n    let min, max2;\n    if (plane.normal.x > 0) {\n      min = plane.normal.x * this.min.x;\n      max2 = plane.normal.x * this.max.x;\n    } else {\n      min = plane.normal.x * this.max.x;\n      max2 = plane.normal.x * this.min.x;\n    }\n    if (plane.normal.y > 0) {\n      min += plane.normal.y * this.min.y;\n      max2 += plane.normal.y * this.max.y;\n    } else {\n      min += plane.normal.y * this.max.y;\n      max2 += plane.normal.y * this.min.y;\n    }\n    if (plane.normal.z > 0) {\n      min += plane.normal.z * this.min.z;\n      max2 += plane.normal.z * this.max.z;\n    } else {\n      min += plane.normal.z * this.max.z;\n      max2 += plane.normal.z * this.min.z;\n    }\n    return min <= -plane.constant && max2 >= -plane.constant;\n  }\n  intersectsTriangle(triangle) {\n    if (this.isEmpty()) {\n      return false;\n    }\n    this.getCenter(_center);\n    _extents.subVectors(this.max, _center);\n    _v0$2.subVectors(triangle.a, _center);\n    _v1$7.subVectors(triangle.b, _center);\n    _v2$3.subVectors(triangle.c, _center);\n    _f0.subVectors(_v1$7, _v0$2);\n    _f1.subVectors(_v2$3, _v1$7);\n    _f2.subVectors(_v0$2, _v2$3);\n    let axes = [\n      0,\n      -_f0.z,\n      _f0.y,\n      0,\n      -_f1.z,\n      _f1.y,\n      0,\n      -_f2.z,\n      _f2.y,\n      _f0.z,\n      0,\n      -_f0.x,\n      _f1.z,\n      0,\n      -_f1.x,\n      _f2.z,\n      0,\n      -_f2.x,\n      -_f0.y,\n      _f0.x,\n      0,\n      -_f1.y,\n      _f1.x,\n      0,\n      -_f2.y,\n      _f2.x,\n      0\n    ];\n    if (!satForAxes(axes, _v0$2, _v1$7, _v2$3, _extents)) {\n      return false;\n    }\n    axes = [1, 0, 0, 0, 1, 0, 0, 0, 1];\n    if (!satForAxes(axes, _v0$2, _v1$7, _v2$3, _extents)) {\n      return false;\n    }\n    _triangleNormal.crossVectors(_f0, _f1);\n    axes = [_triangleNormal.x, _triangleNormal.y, _triangleNormal.z];\n    return satForAxes(axes, _v0$2, _v1$7, _v2$3, _extents);\n  }\n  clampPoint(point, target) {\n    return target.copy(point).clamp(this.min, this.max);\n  }\n  distanceToPoint(point) {\n    const clampedPoint = _vector$b.copy(point).clamp(this.min, this.max);\n    return clampedPoint.sub(point).length();\n  }\n  getBoundingSphere(target) {\n    this.getCenter(target.center);\n    target.radius = this.getSize(_vector$b).length() * 0.5;\n    return target;\n  }\n  intersect(box2) {\n    this.min.max(box2.min);\n    this.max.min(box2.max);\n    if (this.isEmpty())\n      this.makeEmpty();\n    return this;\n  }\n  union(box2) {\n    this.min.min(box2.min);\n    this.max.max(box2.max);\n    return this;\n  }\n  applyMatrix4(matrix) {\n    if (this.isEmpty())\n      return this;\n    _points[0].set(this.min.x, this.min.y, this.min.z).applyMatrix4(matrix);\n    _points[1].set(this.min.x, this.min.y, this.max.z).applyMatrix4(matrix);\n    _points[2].set(this.min.x, this.max.y, this.min.z).applyMatrix4(matrix);\n    _points[3].set(this.min.x, this.max.y, this.max.z).applyMatrix4(matrix);\n    _points[4].set(this.max.x, this.min.y, this.min.z).applyMatrix4(matrix);\n    _points[5].set(this.max.x, this.min.y, this.max.z).applyMatrix4(matrix);\n    _points[6].set(this.max.x, this.max.y, this.min.z).applyMatrix4(matrix);\n    _points[7].set(this.max.x, this.max.y, this.max.z).applyMatrix4(matrix);\n    this.setFromPoints(_points);\n    return this;\n  }\n  translate(offset) {\n    this.min.add(offset);\n    this.max.add(offset);\n    return this;\n  }\n  equals(box2) {\n    return box2.min.equals(this.min) && box2.max.equals(this.max);\n  }\n}\nconst _points = [\n  /* @__PURE__ */ new Vector3(),\n  /* @__PURE__ */ new Vector3(),\n  /* @__PURE__ */ new Vector3(),\n  /* @__PURE__ */ new Vector3(),\n  /* @__PURE__ */ new Vector3(),\n  /* @__PURE__ */ new Vector3(),\n  /* @__PURE__ */ new Vector3(),\n  /* @__PURE__ */ new Vector3()\n];\nconst _vector$b = /* @__PURE__ */ new Vector3();\nconst _box$3 = /* @__PURE__ */ new Box3();\nconst _v0$2 = /* @__PURE__ */ new Vector3();\nconst _v1$7 = /* @__PURE__ */ new Vector3();\nconst _v2$3 = /* @__PURE__ */ new Vector3();\nconst _f0 = /* @__PURE__ */ new Vector3();\nconst _f1 = /* @__PURE__ */ new Vector3();\nconst _f2 = /* @__PURE__ */ new Vector3();\nconst _center = /* @__PURE__ */ new Vector3();\nconst _extents = /* @__PURE__ */ new Vector3();\nconst _triangleNormal = /* @__PURE__ */ new Vector3();\nconst _testAxis = /* @__PURE__ */ new Vector3();\nfunction satForAxes(axes, v0, v1, v2, extents) {\n  for (let i = 0, j = axes.length - 3; i <= j; i += 3) {\n    _testAxis.fromArray(axes, i);\n    const r = extents.x * Math.abs(_testAxis.x) + extents.y * Math.abs(_testAxis.y) + extents.z * Math.abs(_testAxis.z);\n    const p0 = v0.dot(_testAxis);\n    const p1 = v1.dot(_testAxis);\n    const p2 = v2.dot(_testAxis);\n    if (Math.max(-Math.max(p0, p1, p2), Math.min(p0, p1, p2)) > r) {\n      return false;\n    }\n  }\n  return true;\n}\nconst _box$2 = /* @__PURE__ */ new Box3();\nconst _v1$6 = /* @__PURE__ */ new Vector3();\nconst _toFarthestPoint = /* @__PURE__ */ new Vector3();\nconst _toPoint = /* @__PURE__ */ new Vector3();\nclass Sphere {\n  constructor(center = new Vector3(), radius = -1) {\n    this.center = center;\n    this.radius = radius;\n  }\n  set(center, radius) {\n    this.center.copy(center);\n    this.radius = radius;\n    return this;\n  }\n  setFromPoints(points, optionalCenter) {\n    const center = this.center;\n    if (optionalCenter !== void 0) {\n      center.copy(optionalCenter);\n    } else {\n      _box$2.setFromPoints(points).getCenter(center);\n    }\n    let maxRadiusSq = 0;\n    for (let i = 0, il = points.length; i < il; i++) {\n      maxRadiusSq = Math.max(maxRadiusSq, center.distanceToSquared(points[i]));\n    }\n    this.radius = Math.sqrt(maxRadiusSq);\n    return this;\n  }\n  copy(sphere) {\n    this.center.copy(sphere.center);\n    this.radius = sphere.radius;\n    return this;\n  }\n  isEmpty() {\n    return this.radius < 0;\n  }\n  makeEmpty() {\n    this.center.set(0, 0, 0);\n    this.radius = -1;\n    return this;\n  }\n  containsPoint(point) {\n    return point.distanceToSquared(this.center) <= this.radius * this.radius;\n  }\n  distanceToPoint(point) {\n    return point.distanceTo(this.center) - this.radius;\n  }\n  intersectsSphere(sphere) {\n    const radiusSum = this.radius + sphere.radius;\n    return sphere.center.distanceToSquared(this.center) <= radiusSum * radiusSum;\n  }\n  intersectsBox(box2) {\n    return box2.intersectsSphere(this);\n  }\n  intersectsPlane(plane) {\n    return Math.abs(plane.distanceToPoint(this.center)) <= this.radius;\n  }\n  clampPoint(point, target) {\n    const deltaLengthSq = this.center.distanceToSquared(point);\n    target.copy(point);\n    if (deltaLengthSq > this.radius * this.radius) {\n      target.sub(this.center).normalize();\n      target.multiplyScalar(this.radius).add(this.center);\n    }\n    return target;\n  }\n  getBoundingBox(target) {\n    if (this.isEmpty()) {\n      target.makeEmpty();\n      return target;\n    }\n    target.set(this.center, this.center);\n    target.expandByScalar(this.radius);\n    return target;\n  }\n  applyMatrix4(matrix) {\n    this.center.applyMatrix4(matrix);\n    this.radius = this.radius * matrix.getMaxScaleOnAxis();\n    return this;\n  }\n  translate(offset) {\n    this.center.add(offset);\n    return this;\n  }\n  expandByPoint(point) {\n    _toPoint.subVectors(point, this.center);\n    const lengthSq = _toPoint.lengthSq();\n    if (lengthSq > this.radius * this.radius) {\n      const length = Math.sqrt(lengthSq);\n      const missingRadiusHalf = (length - this.radius) * 0.5;\n      this.center.add(_toPoint.multiplyScalar(missingRadiusHalf / length));\n      this.radius += missingRadiusHalf;\n    }\n    return this;\n  }\n  union(sphere) {\n    if (this.center.equals(sphere.center) === true) {\n      _toFarthestPoint.set(0, 0, 1).multiplyScalar(sphere.radius);\n    } else {\n      _toFarthestPoint.subVectors(sphere.center, this.center).normalize().multiplyScalar(sphere.radius);\n    }\n    this.expandByPoint(_v1$6.copy(sphere.center).add(_toFarthestPoint));\n    this.expandByPoint(_v1$6.copy(sphere.center).sub(_toFarthestPoint));\n    return this;\n  }\n  equals(sphere) {\n    return sphere.center.equals(this.center) && sphere.radius === this.radius;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nconst _vector$a = /* @__PURE__ */ new Vector3();\nconst _segCenter = /* @__PURE__ */ new Vector3();\nconst _segDir = /* @__PURE__ */ new Vector3();\nconst _diff = /* @__PURE__ */ new Vector3();\nconst _edge1 = /* @__PURE__ */ new Vector3();\nconst _edge2 = /* @__PURE__ */ new Vector3();\nconst _normal$1 = /* @__PURE__ */ new Vector3();\nclass Ray {\n  constructor(origin = new Vector3(), direction = new Vector3(0, 0, -1)) {\n    this.origin = origin;\n    this.direction = direction;\n  }\n  set(origin, direction) {\n    this.origin.copy(origin);\n    this.direction.copy(direction);\n    return this;\n  }\n  copy(ray) {\n    this.origin.copy(ray.origin);\n    this.direction.copy(ray.direction);\n    return this;\n  }\n  at(t, target) {\n    return target.copy(this.direction).multiplyScalar(t).add(this.origin);\n  }\n  lookAt(v) {\n    this.direction.copy(v).sub(this.origin).normalize();\n    return this;\n  }\n  recast(t) {\n    this.origin.copy(this.at(t, _vector$a));\n    return this;\n  }\n  closestPointToPoint(point, target) {\n    target.subVectors(point, this.origin);\n    const directionDistance = target.dot(this.direction);\n    if (directionDistance < 0) {\n      return target.copy(this.origin);\n    }\n    return target.copy(this.direction).multiplyScalar(directionDistance).add(this.origin);\n  }\n  distanceToPoint(point) {\n    return Math.sqrt(this.distanceSqToPoint(point));\n  }\n  distanceSqToPoint(point) {\n    const directionDistance = _vector$a.subVectors(point, this.origin).dot(this.direction);\n    if (directionDistance < 0) {\n      return this.origin.distanceToSquared(point);\n    }\n    _vector$a.copy(this.direction).multiplyScalar(directionDistance).add(this.origin);\n    return _vector$a.distanceToSquared(point);\n  }\n  distanceSqToSegment(v0, v1, optionalPointOnRay, optionalPointOnSegment) {\n    _segCenter.copy(v0).add(v1).multiplyScalar(0.5);\n    _segDir.copy(v1).sub(v0).normalize();\n    _diff.copy(this.origin).sub(_segCenter);\n    const segExtent = v0.distanceTo(v1) * 0.5;\n    const a01 = -this.direction.dot(_segDir);\n    const b0 = _diff.dot(this.direction);\n    const b1 = -_diff.dot(_segDir);\n    const c = _diff.lengthSq();\n    const det = Math.abs(1 - a01 * a01);\n    let s0, s1, sqrDist, extDet;\n    if (det > 0) {\n      s0 = a01 * b1 - b0;\n      s1 = a01 * b0 - b1;\n      extDet = segExtent * det;\n      if (s0 >= 0) {\n        if (s1 >= -extDet) {\n          if (s1 <= extDet) {\n            const invDet = 1 / det;\n            s0 *= invDet;\n            s1 *= invDet;\n            sqrDist = s0 * (s0 + a01 * s1 + 2 * b0) + s1 * (a01 * s0 + s1 + 2 * b1) + c;\n          } else {\n            s1 = segExtent;\n            s0 = Math.max(0, -(a01 * s1 + b0));\n            sqrDist = -s0 * s0 + s1 * (s1 + 2 * b1) + c;\n          }\n        } else {\n          s1 = -segExtent;\n          s0 = Math.max(0, -(a01 * s1 + b0));\n          sqrDist = -s0 * s0 + s1 * (s1 + 2 * b1) + c;\n        }\n      } else {\n        if (s1 <= -extDet) {\n          s0 = Math.max(0, -(-a01 * segExtent + b0));\n          s1 = s0 > 0 ? -segExtent : Math.min(Math.max(-segExtent, -b1), segExtent);\n          sqrDist = -s0 * s0 + s1 * (s1 + 2 * b1) + c;\n        } else if (s1 <= extDet) {\n          s0 = 0;\n          s1 = Math.min(Math.max(-segExtent, -b1), segExtent);\n          sqrDist = s1 * (s1 + 2 * b1) + c;\n        } else {\n          s0 = Math.max(0, -(a01 * segExtent + b0));\n          s1 = s0 > 0 ? segExtent : Math.min(Math.max(-segExtent, -b1), segExtent);\n          sqrDist = -s0 * s0 + s1 * (s1 + 2 * b1) + c;\n        }\n      }\n    } else {\n      s1 = a01 > 0 ? -segExtent : segExtent;\n      s0 = Math.max(0, -(a01 * s1 + b0));\n      sqrDist = -s0 * s0 + s1 * (s1 + 2 * b1) + c;\n    }\n    if (optionalPointOnRay) {\n      optionalPointOnRay.copy(this.direction).multiplyScalar(s0).add(this.origin);\n    }\n    if (optionalPointOnSegment) {\n      optionalPointOnSegment.copy(_segDir).multiplyScalar(s1).add(_segCenter);\n    }\n    return sqrDist;\n  }\n  intersectSphere(sphere, target) {\n    _vector$a.subVectors(sphere.center, this.origin);\n    const tca = _vector$a.dot(this.direction);\n    const d2 = _vector$a.dot(_vector$a) - tca * tca;\n    const radius2 = sphere.radius * sphere.radius;\n    if (d2 > radius2)\n      return null;\n    const thc = Math.sqrt(radius2 - d2);\n    const t0 = tca - thc;\n    const t1 = tca + thc;\n    if (t0 < 0 && t1 < 0)\n      return null;\n    if (t0 < 0)\n      return this.at(t1, target);\n    return this.at(t0, target);\n  }\n  intersectsSphere(sphere) {\n    return this.distanceSqToPoint(sphere.center) <= sphere.radius * sphere.radius;\n  }\n  distanceToPlane(plane) {\n    const denominator = plane.normal.dot(this.direction);\n    if (denominator === 0) {\n      if (plane.distanceToPoint(this.origin) === 0) {\n        return 0;\n      }\n      return null;\n    }\n    const t = -(this.origin.dot(plane.normal) + plane.constant) / denominator;\n    return t >= 0 ? t : null;\n  }\n  intersectPlane(plane, target) {\n    const t = this.distanceToPlane(plane);\n    if (t === null) {\n      return null;\n    }\n    return this.at(t, target);\n  }\n  intersectsPlane(plane) {\n    const distToPoint = plane.distanceToPoint(this.origin);\n    if (distToPoint === 0) {\n      return true;\n    }\n    const denominator = plane.normal.dot(this.direction);\n    if (denominator * distToPoint < 0) {\n      return true;\n    }\n    return false;\n  }\n  intersectBox(box2, target) {\n    let tmin, tmax, tymin, tymax, tzmin, tzmax;\n    const invdirx = 1 / this.direction.x, invdiry = 1 / this.direction.y, invdirz = 1 / this.direction.z;\n    const origin = this.origin;\n    if (invdirx >= 0) {\n      tmin = (box2.min.x - origin.x) * invdirx;\n      tmax = (box2.max.x - origin.x) * invdirx;\n    } else {\n      tmin = (box2.max.x - origin.x) * invdirx;\n      tmax = (box2.min.x - origin.x) * invdirx;\n    }\n    if (invdiry >= 0) {\n      tymin = (box2.min.y - origin.y) * invdiry;\n      tymax = (box2.max.y - origin.y) * invdiry;\n    } else {\n      tymin = (box2.max.y - origin.y) * invdiry;\n      tymax = (box2.min.y - origin.y) * invdiry;\n    }\n    if (tmin > tymax || tymin > tmax)\n      return null;\n    if (tymin > tmin || tmin !== tmin)\n      tmin = tymin;\n    if (tymax < tmax || tmax !== tmax)\n      tmax = tymax;\n    if (invdirz >= 0) {\n      tzmin = (box2.min.z - origin.z) * invdirz;\n      tzmax = (box2.max.z - origin.z) * invdirz;\n    } else {\n      tzmin = (box2.max.z - origin.z) * invdirz;\n      tzmax = (box2.min.z - origin.z) * invdirz;\n    }\n    if (tmin > tzmax || tzmin > tmax)\n      return null;\n    if (tzmin > tmin || tmin !== tmin)\n      tmin = tzmin;\n    if (tzmax < tmax || tmax !== tmax)\n      tmax = tzmax;\n    if (tmax < 0)\n      return null;\n    return this.at(tmin >= 0 ? tmin : tmax, target);\n  }\n  intersectsBox(box2) {\n    return this.intersectBox(box2, _vector$a) !== null;\n  }\n  intersectTriangle(a, b, c, backfaceCulling, target) {\n    _edge1.subVectors(b, a);\n    _edge2.subVectors(c, a);\n    _normal$1.crossVectors(_edge1, _edge2);\n    let DdN = this.direction.dot(_normal$1);\n    let sign2;\n    if (DdN > 0) {\n      if (backfaceCulling)\n        return null;\n      sign2 = 1;\n    } else if (DdN < 0) {\n      sign2 = -1;\n      DdN = -DdN;\n    } else {\n      return null;\n    }\n    _diff.subVectors(this.origin, a);\n    const DdQxE2 = sign2 * this.direction.dot(_edge2.crossVectors(_diff, _edge2));\n    if (DdQxE2 < 0) {\n      return null;\n    }\n    const DdE1xQ = sign2 * this.direction.dot(_edge1.cross(_diff));\n    if (DdE1xQ < 0) {\n      return null;\n    }\n    if (DdQxE2 + DdE1xQ > DdN) {\n      return null;\n    }\n    const QdN = -sign2 * _diff.dot(_normal$1);\n    if (QdN < 0) {\n      return null;\n    }\n    return this.at(QdN / DdN, target);\n  }\n  applyMatrix4(matrix4) {\n    this.origin.applyMatrix4(matrix4);\n    this.direction.transformDirection(matrix4);\n    return this;\n  }\n  equals(ray) {\n    return ray.origin.equals(this.origin) && ray.direction.equals(this.direction);\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nclass Matrix4 {\n  constructor() {\n    Matrix4.prototype.isMatrix4 = true;\n    this.elements = [\n      1,\n      0,\n      0,\n      0,\n      0,\n      1,\n      0,\n      0,\n      0,\n      0,\n      1,\n      0,\n      0,\n      0,\n      0,\n      1\n    ];\n  }\n  set(n11, n12, n13, n14, n21, n22, n23, n24, n31, n32, n33, n34, n41, n42, n43, n44) {\n    const te2 = this.elements;\n    te2[0] = n11;\n    te2[4] = n12;\n    te2[8] = n13;\n    te2[12] = n14;\n    te2[1] = n21;\n    te2[5] = n22;\n    te2[9] = n23;\n    te2[13] = n24;\n    te2[2] = n31;\n    te2[6] = n32;\n    te2[10] = n33;\n    te2[14] = n34;\n    te2[3] = n41;\n    te2[7] = n42;\n    te2[11] = n43;\n    te2[15] = n44;\n    return this;\n  }\n  identity() {\n    this.set(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);\n    return this;\n  }\n  clone() {\n    return new Matrix4().fromArray(this.elements);\n  }\n  copy(m) {\n    const te2 = this.elements;\n    const me = m.elements;\n    te2[0] = me[0];\n    te2[1] = me[1];\n    te2[2] = me[2];\n    te2[3] = me[3];\n    te2[4] = me[4];\n    te2[5] = me[5];\n    te2[6] = me[6];\n    te2[7] = me[7];\n    te2[8] = me[8];\n    te2[9] = me[9];\n    te2[10] = me[10];\n    te2[11] = me[11];\n    te2[12] = me[12];\n    te2[13] = me[13];\n    te2[14] = me[14];\n    te2[15] = me[15];\n    return this;\n  }\n  copyPosition(m) {\n    const te2 = this.elements, me = m.elements;\n    te2[12] = me[12];\n    te2[13] = me[13];\n    te2[14] = me[14];\n    return this;\n  }\n  setFromMatrix3(m) {\n    const me = m.elements;\n    this.set(me[0], me[3], me[6], 0, me[1], me[4], me[7], 0, me[2], me[5], me[8], 0, 0, 0, 0, 1);\n    return this;\n  }\n  extractBasis(xAxis, yAxis, zAxis) {\n    xAxis.setFromMatrixColumn(this, 0);\n    yAxis.setFromMatrixColumn(this, 1);\n    zAxis.setFromMatrixColumn(this, 2);\n    return this;\n  }\n  makeBasis(xAxis, yAxis, zAxis) {\n    this.set(xAxis.x, yAxis.x, zAxis.x, 0, xAxis.y, yAxis.y, zAxis.y, 0, xAxis.z, yAxis.z, zAxis.z, 0, 0, 0, 0, 1);\n    return this;\n  }\n  extractRotation(m) {\n    const te2 = this.elements;\n    const me = m.elements;\n    const scaleX = 1 / _v1$5.setFromMatrixColumn(m, 0).length();\n    const scaleY = 1 / _v1$5.setFromMatrixColumn(m, 1).length();\n    const scaleZ = 1 / _v1$5.setFromMatrixColumn(m, 2).length();\n    te2[0] = me[0] * scaleX;\n    te2[1] = me[1] * scaleX;\n    te2[2] = me[2] * scaleX;\n    te2[3] = 0;\n    te2[4] = me[4] * scaleY;\n    te2[5] = me[5] * scaleY;\n    te2[6] = me[6] * scaleY;\n    te2[7] = 0;\n    te2[8] = me[8] * scaleZ;\n    te2[9] = me[9] * scaleZ;\n    te2[10] = me[10] * scaleZ;\n    te2[11] = 0;\n    te2[12] = 0;\n    te2[13] = 0;\n    te2[14] = 0;\n    te2[15] = 1;\n    return this;\n  }\n  makeRotationFromEuler(euler) {\n    const te2 = this.elements;\n    const x = euler.x, y = euler.y, z = euler.z;\n    const a = Math.cos(x), b = Math.sin(x);\n    const c = Math.cos(y), d = Math.sin(y);\n    const e = Math.cos(z), f = Math.sin(z);\n    if (euler.order === \"XYZ\") {\n      const ae = a * e, af = a * f, be = b * e, bf = b * f;\n      te2[0] = c * e;\n      te2[4] = -c * f;\n      te2[8] = d;\n      te2[1] = af + be * d;\n      te2[5] = ae - bf * d;\n      te2[9] = -b * c;\n      te2[2] = bf - ae * d;\n      te2[6] = be + af * d;\n      te2[10] = a * c;\n    } else if (euler.order === \"YXZ\") {\n      const ce = c * e, cf = c * f, de = d * e, df = d * f;\n      te2[0] = ce + df * b;\n      te2[4] = de * b - cf;\n      te2[8] = a * d;\n      te2[1] = a * f;\n      te2[5] = a * e;\n      te2[9] = -b;\n      te2[2] = cf * b - de;\n      te2[6] = df + ce * b;\n      te2[10] = a * c;\n    } else if (euler.order === \"ZXY\") {\n      const ce = c * e, cf = c * f, de = d * e, df = d * f;\n      te2[0] = ce - df * b;\n      te2[4] = -a * f;\n      te2[8] = de + cf * b;\n      te2[1] = cf + de * b;\n      te2[5] = a * e;\n      te2[9] = df - ce * b;\n      te2[2] = -a * d;\n      te2[6] = b;\n      te2[10] = a * c;\n    } else if (euler.order === \"ZYX\") {\n      const ae = a * e, af = a * f, be = b * e, bf = b * f;\n      te2[0] = c * e;\n      te2[4] = be * d - af;\n      te2[8] = ae * d + bf;\n      te2[1] = c * f;\n      te2[5] = bf * d + ae;\n      te2[9] = af * d - be;\n      te2[2] = -d;\n      te2[6] = b * c;\n      te2[10] = a * c;\n    } else if (euler.order === \"YZX\") {\n      const ac = a * c, ad = a * d, bc = b * c, bd = b * d;\n      te2[0] = c * e;\n      te2[4] = bd - ac * f;\n      te2[8] = bc * f + ad;\n      te2[1] = f;\n      te2[5] = a * e;\n      te2[9] = -b * e;\n      te2[2] = -d * e;\n      te2[6] = ad * f + bc;\n      te2[10] = ac - bd * f;\n    } else if (euler.order === \"XZY\") {\n      const ac = a * c, ad = a * d, bc = b * c, bd = b * d;\n      te2[0] = c * e;\n      te2[4] = -f;\n      te2[8] = d * e;\n      te2[1] = ac * f + bd;\n      te2[5] = a * e;\n      te2[9] = ad * f - bc;\n      te2[2] = bc * f - ad;\n      te2[6] = b * e;\n      te2[10] = bd * f + ac;\n    }\n    te2[3] = 0;\n    te2[7] = 0;\n    te2[11] = 0;\n    te2[12] = 0;\n    te2[13] = 0;\n    te2[14] = 0;\n    te2[15] = 1;\n    return this;\n  }\n  makeRotationFromQuaternion(q) {\n    return this.compose(_zero, q, _one);\n  }\n  lookAt(eye, target, up) {\n    const te2 = this.elements;\n    _z.subVectors(eye, target);\n    if (_z.lengthSq() === 0) {\n      _z.z = 1;\n    }\n    _z.normalize();\n    _x.crossVectors(up, _z);\n    if (_x.lengthSq() === 0) {\n      if (Math.abs(up.z) === 1) {\n        _z.x += 1e-4;\n      } else {\n        _z.z += 1e-4;\n      }\n      _z.normalize();\n      _x.crossVectors(up, _z);\n    }\n    _x.normalize();\n    _y.crossVectors(_z, _x);\n    te2[0] = _x.x;\n    te2[4] = _y.x;\n    te2[8] = _z.x;\n    te2[1] = _x.y;\n    te2[5] = _y.y;\n    te2[9] = _z.y;\n    te2[2] = _x.z;\n    te2[6] = _y.z;\n    te2[10] = _z.z;\n    return this;\n  }\n  multiply(m) {\n    return this.multiplyMatrices(this, m);\n  }\n  premultiply(m) {\n    return this.multiplyMatrices(m, this);\n  }\n  multiplyMatrices(a, b) {\n    const ae = a.elements;\n    const be = b.elements;\n    const te2 = this.elements;\n    const a11 = ae[0], a12 = ae[4], a13 = ae[8], a14 = ae[12];\n    const a21 = ae[1], a22 = ae[5], a23 = ae[9], a24 = ae[13];\n    const a31 = ae[2], a32 = ae[6], a33 = ae[10], a34 = ae[14];\n    const a41 = ae[3], a42 = ae[7], a43 = ae[11], a44 = ae[15];\n    const b11 = be[0], b12 = be[4], b13 = be[8], b14 = be[12];\n    const b21 = be[1], b22 = be[5], b23 = be[9], b24 = be[13];\n    const b31 = be[2], b32 = be[6], b33 = be[10], b34 = be[14];\n    const b41 = be[3], b42 = be[7], b43 = be[11], b44 = be[15];\n    te2[0] = a11 * b11 + a12 * b21 + a13 * b31 + a14 * b41;\n    te2[4] = a11 * b12 + a12 * b22 + a13 * b32 + a14 * b42;\n    te2[8] = a11 * b13 + a12 * b23 + a13 * b33 + a14 * b43;\n    te2[12] = a11 * b14 + a12 * b24 + a13 * b34 + a14 * b44;\n    te2[1] = a21 * b11 + a22 * b21 + a23 * b31 + a24 * b41;\n    te2[5] = a21 * b12 + a22 * b22 + a23 * b32 + a24 * b42;\n    te2[9] = a21 * b13 + a22 * b23 + a23 * b33 + a24 * b43;\n    te2[13] = a21 * b14 + a22 * b24 + a23 * b34 + a24 * b44;\n    te2[2] = a31 * b11 + a32 * b21 + a33 * b31 + a34 * b41;\n    te2[6] = a31 * b12 + a32 * b22 + a33 * b32 + a34 * b42;\n    te2[10] = a31 * b13 + a32 * b23 + a33 * b33 + a34 * b43;\n    te2[14] = a31 * b14 + a32 * b24 + a33 * b34 + a34 * b44;\n    te2[3] = a41 * b11 + a42 * b21 + a43 * b31 + a44 * b41;\n    te2[7] = a41 * b12 + a42 * b22 + a43 * b32 + a44 * b42;\n    te2[11] = a41 * b13 + a42 * b23 + a43 * b33 + a44 * b43;\n    te2[15] = a41 * b14 + a42 * b24 + a43 * b34 + a44 * b44;\n    return this;\n  }\n  multiplyScalar(s) {\n    const te2 = this.elements;\n    te2[0] *= s;\n    te2[4] *= s;\n    te2[8] *= s;\n    te2[12] *= s;\n    te2[1] *= s;\n    te2[5] *= s;\n    te2[9] *= s;\n    te2[13] *= s;\n    te2[2] *= s;\n    te2[6] *= s;\n    te2[10] *= s;\n    te2[14] *= s;\n    te2[3] *= s;\n    te2[7] *= s;\n    te2[11] *= s;\n    te2[15] *= s;\n    return this;\n  }\n  determinant() {\n    const te2 = this.elements;\n    const n11 = te2[0], n12 = te2[4], n13 = te2[8], n14 = te2[12];\n    const n21 = te2[1], n22 = te2[5], n23 = te2[9], n24 = te2[13];\n    const n31 = te2[2], n32 = te2[6], n33 = te2[10], n34 = te2[14];\n    const n41 = te2[3], n42 = te2[7], n43 = te2[11], n44 = te2[15];\n    return n41 * (+n14 * n23 * n32 - n13 * n24 * n32 - n14 * n22 * n33 + n12 * n24 * n33 + n13 * n22 * n34 - n12 * n23 * n34) + n42 * (+n11 * n23 * n34 - n11 * n24 * n33 + n14 * n21 * n33 - n13 * n21 * n34 + n13 * n24 * n31 - n14 * n23 * n31) + n43 * (+n11 * n24 * n32 - n11 * n22 * n34 - n14 * n21 * n32 + n12 * n21 * n34 + n14 * n22 * n31 - n12 * n24 * n31) + n44 * (-n13 * n22 * n31 - n11 * n23 * n32 + n11 * n22 * n33 + n13 * n21 * n32 - n12 * n21 * n33 + n12 * n23 * n31);\n  }\n  transpose() {\n    const te2 = this.elements;\n    let tmp2;\n    tmp2 = te2[1];\n    te2[1] = te2[4];\n    te2[4] = tmp2;\n    tmp2 = te2[2];\n    te2[2] = te2[8];\n    te2[8] = tmp2;\n    tmp2 = te2[6];\n    te2[6] = te2[9];\n    te2[9] = tmp2;\n    tmp2 = te2[3];\n    te2[3] = te2[12];\n    te2[12] = tmp2;\n    tmp2 = te2[7];\n    te2[7] = te2[13];\n    te2[13] = tmp2;\n    tmp2 = te2[11];\n    te2[11] = te2[14];\n    te2[14] = tmp2;\n    return this;\n  }\n  setPosition(x, y, z) {\n    const te2 = this.elements;\n    if (x.isVector3) {\n      te2[12] = x.x;\n      te2[13] = x.y;\n      te2[14] = x.z;\n    } else {\n      te2[12] = x;\n      te2[13] = y;\n      te2[14] = z;\n    }\n    return this;\n  }\n  invert() {\n    const te2 = this.elements, n11 = te2[0], n21 = te2[1], n31 = te2[2], n41 = te2[3], n12 = te2[4], n22 = te2[5], n32 = te2[6], n42 = te2[7], n13 = te2[8], n23 = te2[9], n33 = te2[10], n43 = te2[11], n14 = te2[12], n24 = te2[13], n34 = te2[14], n44 = te2[15], t11 = n23 * n34 * n42 - n24 * n33 * n42 + n24 * n32 * n43 - n22 * n34 * n43 - n23 * n32 * n44 + n22 * n33 * n44, t12 = n14 * n33 * n42 - n13 * n34 * n42 - n14 * n32 * n43 + n12 * n34 * n43 + n13 * n32 * n44 - n12 * n33 * n44, t13 = n13 * n24 * n42 - n14 * n23 * n42 + n14 * n22 * n43 - n12 * n24 * n43 - n13 * n22 * n44 + n12 * n23 * n44, t14 = n14 * n23 * n32 - n13 * n24 * n32 - n14 * n22 * n33 + n12 * n24 * n33 + n13 * n22 * n34 - n12 * n23 * n34;\n    const det = n11 * t11 + n21 * t12 + n31 * t13 + n41 * t14;\n    if (det === 0)\n      return this.set(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);\n    const detInv = 1 / det;\n    te2[0] = t11 * detInv;\n    te2[1] = (n24 * n33 * n41 - n23 * n34 * n41 - n24 * n31 * n43 + n21 * n34 * n43 + n23 * n31 * n44 - n21 * n33 * n44) * detInv;\n    te2[2] = (n22 * n34 * n41 - n24 * n32 * n41 + n24 * n31 * n42 - n21 * n34 * n42 - n22 * n31 * n44 + n21 * n32 * n44) * detInv;\n    te2[3] = (n23 * n32 * n41 - n22 * n33 * n41 - n23 * n31 * n42 + n21 * n33 * n42 + n22 * n31 * n43 - n21 * n32 * n43) * detInv;\n    te2[4] = t12 * detInv;\n    te2[5] = (n13 * n34 * n41 - n14 * n33 * n41 + n14 * n31 * n43 - n11 * n34 * n43 - n13 * n31 * n44 + n11 * n33 * n44) * detInv;\n    te2[6] = (n14 * n32 * n41 - n12 * n34 * n41 - n14 * n31 * n42 + n11 * n34 * n42 + n12 * n31 * n44 - n11 * n32 * n44) * detInv;\n    te2[7] = (n12 * n33 * n41 - n13 * n32 * n41 + n13 * n31 * n42 - n11 * n33 * n42 - n12 * n31 * n43 + n11 * n32 * n43) * detInv;\n    te2[8] = t13 * detInv;\n    te2[9] = (n14 * n23 * n41 - n13 * n24 * n41 - n14 * n21 * n43 + n11 * n24 * n43 + n13 * n21 * n44 - n11 * n23 * n44) * detInv;\n    te2[10] = (n12 * n24 * n41 - n14 * n22 * n41 + n14 * n21 * n42 - n11 * n24 * n42 - n12 * n21 * n44 + n11 * n22 * n44) * detInv;\n    te2[11] = (n13 * n22 * n41 - n12 * n23 * n41 - n13 * n21 * n42 + n11 * n23 * n42 + n12 * n21 * n43 - n11 * n22 * n43) * detInv;\n    te2[12] = t14 * detInv;\n    te2[13] = (n13 * n24 * n31 - n14 * n23 * n31 + n14 * n21 * n33 - n11 * n24 * n33 - n13 * n21 * n34 + n11 * n23 * n34) * detInv;\n    te2[14] = (n14 * n22 * n31 - n12 * n24 * n31 - n14 * n21 * n32 + n11 * n24 * n32 + n12 * n21 * n34 - n11 * n22 * n34) * detInv;\n    te2[15] = (n12 * n23 * n31 - n13 * n22 * n31 + n13 * n21 * n32 - n11 * n23 * n32 - n12 * n21 * n33 + n11 * n22 * n33) * detInv;\n    return this;\n  }\n  scale(v) {\n    const te2 = this.elements;\n    const x = v.x, y = v.y, z = v.z;\n    te2[0] *= x;\n    te2[4] *= y;\n    te2[8] *= z;\n    te2[1] *= x;\n    te2[5] *= y;\n    te2[9] *= z;\n    te2[2] *= x;\n    te2[6] *= y;\n    te2[10] *= z;\n    te2[3] *= x;\n    te2[7] *= y;\n    te2[11] *= z;\n    return this;\n  }\n  getMaxScaleOnAxis() {\n    const te2 = this.elements;\n    const scaleXSq = te2[0] * te2[0] + te2[1] * te2[1] + te2[2] * te2[2];\n    const scaleYSq = te2[4] * te2[4] + te2[5] * te2[5] + te2[6] * te2[6];\n    const scaleZSq = te2[8] * te2[8] + te2[9] * te2[9] + te2[10] * te2[10];\n    return Math.sqrt(Math.max(scaleXSq, scaleYSq, scaleZSq));\n  }\n  makeTranslation(x, y, z) {\n    this.set(1, 0, 0, x, 0, 1, 0, y, 0, 0, 1, z, 0, 0, 0, 1);\n    return this;\n  }\n  makeRotationX(theta) {\n    const c = Math.cos(theta), s = Math.sin(theta);\n    this.set(1, 0, 0, 0, 0, c, -s, 0, 0, s, c, 0, 0, 0, 0, 1);\n    return this;\n  }\n  makeRotationY(theta) {\n    const c = Math.cos(theta), s = Math.sin(theta);\n    this.set(c, 0, s, 0, 0, 1, 0, 0, -s, 0, c, 0, 0, 0, 0, 1);\n    return this;\n  }\n  makeRotationZ(theta) {\n    const c = Math.cos(theta), s = Math.sin(theta);\n    this.set(c, -s, 0, 0, s, c, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);\n    return this;\n  }\n  makeRotationAxis(axis, angle) {\n    const c = Math.cos(angle);\n    const s = Math.sin(angle);\n    const t = 1 - c;\n    const x = axis.x, y = axis.y, z = axis.z;\n    const tx = t * x, ty = t * y;\n    this.set(tx * x + c, tx * y - s * z, tx * z + s * y, 0, tx * y + s * z, ty * y + c, ty * z - s * x, 0, tx * z - s * y, ty * z + s * x, t * z * z + c, 0, 0, 0, 0, 1);\n    return this;\n  }\n  makeScale(x, y, z) {\n    this.set(x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1);\n    return this;\n  }\n  makeShear(xy, xz, yx, yz, zx, zy) {\n    this.set(1, yx, zx, 0, xy, 1, zy, 0, xz, yz, 1, 0, 0, 0, 0, 1);\n    return this;\n  }\n  compose(position, quaternion, scale) {\n    const te2 = this.elements;\n    const x = quaternion._x, y = quaternion._y, z = quaternion._z, w = quaternion._w;\n    const x2 = x + x, y2 = y + y, z2 = z + z;\n    const xx = x * x2, xy = x * y2, xz = x * z2;\n    const yy = y * y2, yz = y * z2, zz = z * z2;\n    const wx = w * x2, wy = w * y2, wz = w * z2;\n    const sx = scale.x, sy = scale.y, sz = scale.z;\n    te2[0] = (1 - (yy + zz)) * sx;\n    te2[1] = (xy + wz) * sx;\n    te2[2] = (xz - wy) * sx;\n    te2[3] = 0;\n    te2[4] = (xy - wz) * sy;\n    te2[5] = (1 - (xx + zz)) * sy;\n    te2[6] = (yz + wx) * sy;\n    te2[7] = 0;\n    te2[8] = (xz + wy) * sz;\n    te2[9] = (yz - wx) * sz;\n    te2[10] = (1 - (xx + yy)) * sz;\n    te2[11] = 0;\n    te2[12] = position.x;\n    te2[13] = position.y;\n    te2[14] = position.z;\n    te2[15] = 1;\n    return this;\n  }\n  decompose(position, quaternion, scale) {\n    const te2 = this.elements;\n    let sx = _v1$5.set(te2[0], te2[1], te2[2]).length();\n    const sy = _v1$5.set(te2[4], te2[5], te2[6]).length();\n    const sz = _v1$5.set(te2[8], te2[9], te2[10]).length();\n    const det = this.determinant();\n    if (det < 0)\n      sx = -sx;\n    position.x = te2[12];\n    position.y = te2[13];\n    position.z = te2[14];\n    _m1$2.copy(this);\n    const invSX = 1 / sx;\n    const invSY = 1 / sy;\n    const invSZ = 1 / sz;\n    _m1$2.elements[0] *= invSX;\n    _m1$2.elements[1] *= invSX;\n    _m1$2.elements[2] *= invSX;\n    _m1$2.elements[4] *= invSY;\n    _m1$2.elements[5] *= invSY;\n    _m1$2.elements[6] *= invSY;\n    _m1$2.elements[8] *= invSZ;\n    _m1$2.elements[9] *= invSZ;\n    _m1$2.elements[10] *= invSZ;\n    quaternion.setFromRotationMatrix(_m1$2);\n    scale.x = sx;\n    scale.y = sy;\n    scale.z = sz;\n    return this;\n  }\n  makePerspective(left, right, top, bottom, near, far) {\n    const te2 = this.elements;\n    const x = 2 * near / (right - left);\n    const y = 2 * near / (top - bottom);\n    const a = (right + left) / (right - left);\n    const b = (top + bottom) / (top - bottom);\n    const c = -(far + near) / (far - near);\n    const d = -2 * far * near / (far - near);\n    te2[0] = x;\n    te2[4] = 0;\n    te2[8] = a;\n    te2[12] = 0;\n    te2[1] = 0;\n    te2[5] = y;\n    te2[9] = b;\n    te2[13] = 0;\n    te2[2] = 0;\n    te2[6] = 0;\n    te2[10] = c;\n    te2[14] = d;\n    te2[3] = 0;\n    te2[7] = 0;\n    te2[11] = -1;\n    te2[15] = 0;\n    return this;\n  }\n  makeOrthographic(left, right, top, bottom, near, far) {\n    const te2 = this.elements;\n    const w = 1 / (right - left);\n    const h = 1 / (top - bottom);\n    const p = 1 / (far - near);\n    const x = (right + left) * w;\n    const y = (top + bottom) * h;\n    const z = (far + near) * p;\n    te2[0] = 2 * w;\n    te2[4] = 0;\n    te2[8] = 0;\n    te2[12] = -x;\n    te2[1] = 0;\n    te2[5] = 2 * h;\n    te2[9] = 0;\n    te2[13] = -y;\n    te2[2] = 0;\n    te2[6] = 0;\n    te2[10] = -2 * p;\n    te2[14] = -z;\n    te2[3] = 0;\n    te2[7] = 0;\n    te2[11] = 0;\n    te2[15] = 1;\n    return this;\n  }\n  equals(matrix) {\n    const te2 = this.elements;\n    const me = matrix.elements;\n    for (let i = 0; i < 16; i++) {\n      if (te2[i] !== me[i])\n        return false;\n    }\n    return true;\n  }\n  fromArray(array, offset = 0) {\n    for (let i = 0; i < 16; i++) {\n      this.elements[i] = array[i + offset];\n    }\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    const te2 = this.elements;\n    array[offset] = te2[0];\n    array[offset + 1] = te2[1];\n    array[offset + 2] = te2[2];\n    array[offset + 3] = te2[3];\n    array[offset + 4] = te2[4];\n    array[offset + 5] = te2[5];\n    array[offset + 6] = te2[6];\n    array[offset + 7] = te2[7];\n    array[offset + 8] = te2[8];\n    array[offset + 9] = te2[9];\n    array[offset + 10] = te2[10];\n    array[offset + 11] = te2[11];\n    array[offset + 12] = te2[12];\n    array[offset + 13] = te2[13];\n    array[offset + 14] = te2[14];\n    array[offset + 15] = te2[15];\n    return array;\n  }\n}\nconst _v1$5 = /* @__PURE__ */ new Vector3();\nconst _m1$2 = /* @__PURE__ */ new Matrix4();\nconst _zero = /* @__PURE__ */ new Vector3(0, 0, 0);\nconst _one = /* @__PURE__ */ new Vector3(1, 1, 1);\nconst _x = /* @__PURE__ */ new Vector3();\nconst _y = /* @__PURE__ */ new Vector3();\nconst _z = /* @__PURE__ */ new Vector3();\nconst _matrix$1 = /* @__PURE__ */ new Matrix4();\nconst _quaternion$3 = /* @__PURE__ */ new Quaternion();\nclass Euler {\n  constructor(x = 0, y = 0, z = 0, order = Euler.DefaultOrder) {\n    this.isEuler = true;\n    this._x = x;\n    this._y = y;\n    this._z = z;\n    this._order = order;\n  }\n  get x() {\n    return this._x;\n  }\n  set x(value) {\n    this._x = value;\n    this._onChangeCallback();\n  }\n  get y() {\n    return this._y;\n  }\n  set y(value) {\n    this._y = value;\n    this._onChangeCallback();\n  }\n  get z() {\n    return this._z;\n  }\n  set z(value) {\n    this._z = value;\n    this._onChangeCallback();\n  }\n  get order() {\n    return this._order;\n  }\n  set order(value) {\n    this._order = value;\n    this._onChangeCallback();\n  }\n  set(x, y, z, order = this._order) {\n    this._x = x;\n    this._y = y;\n    this._z = z;\n    this._order = order;\n    this._onChangeCallback();\n    return this;\n  }\n  clone() {\n    return new this.constructor(this._x, this._y, this._z, this._order);\n  }\n  copy(euler) {\n    this._x = euler._x;\n    this._y = euler._y;\n    this._z = euler._z;\n    this._order = euler._order;\n    this._onChangeCallback();\n    return this;\n  }\n  setFromRotationMatrix(m, order = this._order, update = true) {\n    const te2 = m.elements;\n    const m11 = te2[0], m12 = te2[4], m13 = te2[8];\n    const m21 = te2[1], m22 = te2[5], m23 = te2[9];\n    const m31 = te2[2], m32 = te2[6], m33 = te2[10];\n    switch (order) {\n      case \"XYZ\":\n        this._y = Math.asin(clamp(m13, -1, 1));\n        if (Math.abs(m13) < 0.9999999) {\n          this._x = Math.atan2(-m23, m33);\n          this._z = Math.atan2(-m12, m11);\n        } else {\n          this._x = Math.atan2(m32, m22);\n          this._z = 0;\n        }\n        break;\n      case \"YXZ\":\n        this._x = Math.asin(-clamp(m23, -1, 1));\n        if (Math.abs(m23) < 0.9999999) {\n          this._y = Math.atan2(m13, m33);\n          this._z = Math.atan2(m21, m22);\n        } else {\n          this._y = Math.atan2(-m31, m11);\n          this._z = 0;\n        }\n        break;\n      case \"ZXY\":\n        this._x = Math.asin(clamp(m32, -1, 1));\n        if (Math.abs(m32) < 0.9999999) {\n          this._y = Math.atan2(-m31, m33);\n          this._z = Math.atan2(-m12, m22);\n        } else {\n          this._y = 0;\n          this._z = Math.atan2(m21, m11);\n        }\n        break;\n      case \"ZYX\":\n        this._y = Math.asin(-clamp(m31, -1, 1));\n        if (Math.abs(m31) < 0.9999999) {\n          this._x = Math.atan2(m32, m33);\n          this._z = Math.atan2(m21, m11);\n        } else {\n          this._x = 0;\n          this._z = Math.atan2(-m12, m22);\n        }\n        break;\n      case \"YZX\":\n        this._z = Math.asin(clamp(m21, -1, 1));\n        if (Math.abs(m21) < 0.9999999) {\n          this._x = Math.atan2(-m23, m22);\n          this._y = Math.atan2(-m31, m11);\n        } else {\n          this._x = 0;\n          this._y = Math.atan2(m13, m33);\n        }\n        break;\n      case \"XZY\":\n        this._z = Math.asin(-clamp(m12, -1, 1));\n        if (Math.abs(m12) < 0.9999999) {\n          this._x = Math.atan2(m32, m22);\n          this._y = Math.atan2(m13, m11);\n        } else {\n          this._x = Math.atan2(-m23, m33);\n          this._y = 0;\n        }\n        break;\n      default:\n        console.warn(\"THREE.Euler: .setFromRotationMatrix() encountered an unknown order: \" + order);\n    }\n    this._order = order;\n    if (update === true)\n      this._onChangeCallback();\n    return this;\n  }\n  setFromQuaternion(q, order, update) {\n    _matrix$1.makeRotationFromQuaternion(q);\n    return this.setFromRotationMatrix(_matrix$1, order, update);\n  }\n  setFromVector3(v, order = this._order) {\n    return this.set(v.x, v.y, v.z, order);\n  }\n  reorder(newOrder) {\n    _quaternion$3.setFromEuler(this);\n    return this.setFromQuaternion(_quaternion$3, newOrder);\n  }\n  equals(euler) {\n    return euler._x === this._x && euler._y === this._y && euler._z === this._z && euler._order === this._order;\n  }\n  fromArray(array) {\n    this._x = array[0];\n    this._y = array[1];\n    this._z = array[2];\n    if (array[3] !== void 0)\n      this._order = array[3];\n    this._onChangeCallback();\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    array[offset] = this._x;\n    array[offset + 1] = this._y;\n    array[offset + 2] = this._z;\n    array[offset + 3] = this._order;\n    return array;\n  }\n  _onChange(callback) {\n    this._onChangeCallback = callback;\n    return this;\n  }\n  _onChangeCallback() {\n  }\n  *[Symbol.iterator]() {\n    yield this._x;\n    yield this._y;\n    yield this._z;\n    yield this._order;\n  }\n  toVector3() {\n    console.error(\"THREE.Euler: .toVector3() has been removed. Use Vector3.setFromEuler() instead\");\n  }\n}\nEuler.DefaultOrder = \"XYZ\";\nEuler.RotationOrders = [\"XYZ\", \"YZX\", \"ZXY\", \"XZY\", \"YXZ\", \"ZYX\"];\nclass Layers {\n  constructor() {\n    this.mask = 1 | 0;\n  }\n  set(channel) {\n    this.mask = (1 << channel | 0) >>> 0;\n  }\n  enable(channel) {\n    this.mask |= 1 << channel | 0;\n  }\n  enableAll() {\n    this.mask = 4294967295 | 0;\n  }\n  toggle(channel) {\n    this.mask ^= 1 << channel | 0;\n  }\n  disable(channel) {\n    this.mask &= ~(1 << channel | 0);\n  }\n  disableAll() {\n    this.mask = 0;\n  }\n  test(layers) {\n    return (this.mask & layers.mask) !== 0;\n  }\n  isEnabled(channel) {\n    return (this.mask & (1 << channel | 0)) !== 0;\n  }\n}\nlet _object3DId = 0;\nconst _v1$4 = /* @__PURE__ */ new Vector3();\nconst _q1 = /* @__PURE__ */ new Quaternion();\nconst _m1$1 = /* @__PURE__ */ new Matrix4();\nconst _target = /* @__PURE__ */ new Vector3();\nconst _position$3 = /* @__PURE__ */ new Vector3();\nconst _scale$2 = /* @__PURE__ */ new Vector3();\nconst _quaternion$2 = /* @__PURE__ */ new Quaternion();\nconst _xAxis = /* @__PURE__ */ new Vector3(1, 0, 0);\nconst _yAxis = /* @__PURE__ */ new Vector3(0, 1, 0);\nconst _zAxis = /* @__PURE__ */ new Vector3(0, 0, 1);\nconst _addedEvent = { type: \"added\" };\nconst _removedEvent = { type: \"removed\" };\nclass Object3D extends EventDispatcher {\n  constructor() {\n    super();\n    this.isObject3D = true;\n    Object.defineProperty(this, \"id\", { value: _object3DId++ });\n    this.uuid = generateUUID();\n    this.name = \"\";\n    this.type = \"Object3D\";\n    this.parent = null;\n    this.children = [];\n    this.up = Object3D.DefaultUp.clone();\n    const position = new Vector3();\n    const rotation = new Euler();\n    const quaternion = new Quaternion();\n    const scale = new Vector3(1, 1, 1);\n    function onRotationChange() {\n      quaternion.setFromEuler(rotation, false);\n    }\n    function onQuaternionChange() {\n      rotation.setFromQuaternion(quaternion, void 0, false);\n    }\n    rotation._onChange(onRotationChange);\n    quaternion._onChange(onQuaternionChange);\n    Object.defineProperties(this, {\n      position: {\n        configurable: true,\n        enumerable: true,\n        value: position\n      },\n      rotation: {\n        configurable: true,\n        enumerable: true,\n        value: rotation\n      },\n      quaternion: {\n        configurable: true,\n        enumerable: true,\n        value: quaternion\n      },\n      scale: {\n        configurable: true,\n        enumerable: true,\n        value: scale\n      },\n      modelViewMatrix: {\n        value: new Matrix4()\n      },\n      normalMatrix: {\n        value: new Matrix3()\n      }\n    });\n    this.matrix = new Matrix4();\n    this.matrixWorld = new Matrix4();\n    this.matrixAutoUpdate = Object3D.DefaultMatrixAutoUpdate;\n    this.matrixWorldNeedsUpdate = false;\n    this.layers = new Layers();\n    this.visible = true;\n    this.castShadow = false;\n    this.receiveShadow = false;\n    this.frustumCulled = true;\n    this.renderOrder = 0;\n    this.animations = [];\n    this.userData = {};\n  }\n  onBeforeRender() {\n  }\n  onAfterRender() {\n  }\n  applyMatrix4(matrix) {\n    if (this.matrixAutoUpdate)\n      this.updateMatrix();\n    this.matrix.premultiply(matrix);\n    this.matrix.decompose(this.position, this.quaternion, this.scale);\n  }\n  applyQuaternion(q) {\n    this.quaternion.premultiply(q);\n    return this;\n  }\n  setRotationFromAxisAngle(axis, angle) {\n    this.quaternion.setFromAxisAngle(axis, angle);\n  }\n  setRotationFromEuler(euler) {\n    this.quaternion.setFromEuler(euler, true);\n  }\n  setRotationFromMatrix(m) {\n    this.quaternion.setFromRotationMatrix(m);\n  }\n  setRotationFromQuaternion(q) {\n    this.quaternion.copy(q);\n  }\n  rotateOnAxis(axis, angle) {\n    _q1.setFromAxisAngle(axis, angle);\n    this.quaternion.multiply(_q1);\n    return this;\n  }\n  rotateOnWorldAxis(axis, angle) {\n    _q1.setFromAxisAngle(axis, angle);\n    this.quaternion.premultiply(_q1);\n    return this;\n  }\n  rotateX(angle) {\n    return this.rotateOnAxis(_xAxis, angle);\n  }\n  rotateY(angle) {\n    return this.rotateOnAxis(_yAxis, angle);\n  }\n  rotateZ(angle) {\n    return this.rotateOnAxis(_zAxis, angle);\n  }\n  translateOnAxis(axis, distance) {\n    _v1$4.copy(axis).applyQuaternion(this.quaternion);\n    this.position.add(_v1$4.multiplyScalar(distance));\n    return this;\n  }\n  translateX(distance) {\n    return this.translateOnAxis(_xAxis, distance);\n  }\n  translateY(distance) {\n    return this.translateOnAxis(_yAxis, distance);\n  }\n  translateZ(distance) {\n    return this.translateOnAxis(_zAxis, distance);\n  }\n  localToWorld(vector) {\n    return vector.applyMatrix4(this.matrixWorld);\n  }\n  worldToLocal(vector) {\n    return vector.applyMatrix4(_m1$1.copy(this.matrixWorld).invert());\n  }\n  lookAt(x, y, z) {\n    if (x.isVector3) {\n      _target.copy(x);\n    } else {\n      _target.set(x, y, z);\n    }\n    const parent = this.parent;\n    this.updateWorldMatrix(true, false);\n    _position$3.setFromMatrixPosition(this.matrixWorld);\n    if (this.isCamera || this.isLight) {\n      _m1$1.lookAt(_position$3, _target, this.up);\n    } else {\n      _m1$1.lookAt(_target, _position$3, this.up);\n    }\n    this.quaternion.setFromRotationMatrix(_m1$1);\n    if (parent) {\n      _m1$1.extractRotation(parent.matrixWorld);\n      _q1.setFromRotationMatrix(_m1$1);\n      this.quaternion.premultiply(_q1.invert());\n    }\n  }\n  add(object) {\n    if (arguments.length > 1) {\n      for (let i = 0; i < arguments.length; i++) {\n        this.add(arguments[i]);\n      }\n      return this;\n    }\n    if (object === this) {\n      console.error(\"THREE.Object3D.add: object can't be added as a child of itself.\", object);\n      return this;\n    }\n    if (object && object.isObject3D) {\n      if (object.parent !== null) {\n        object.parent.remove(object);\n      }\n      object.parent = this;\n      this.children.push(object);\n      object.dispatchEvent(_addedEvent);\n    } else {\n      console.error(\"THREE.Object3D.add: object not an instance of THREE.Object3D.\", object);\n    }\n    return this;\n  }\n  remove(object) {\n    if (arguments.length > 1) {\n      for (let i = 0; i < arguments.length; i++) {\n        this.remove(arguments[i]);\n      }\n      return this;\n    }\n    const index2 = this.children.indexOf(object);\n    if (index2 !== -1) {\n      object.parent = null;\n      this.children.splice(index2, 1);\n      object.dispatchEvent(_removedEvent);\n    }\n    return this;\n  }\n  removeFromParent() {\n    const parent = this.parent;\n    if (parent !== null) {\n      parent.remove(this);\n    }\n    return this;\n  }\n  clear() {\n    for (let i = 0; i < this.children.length; i++) {\n      const object = this.children[i];\n      object.parent = null;\n      object.dispatchEvent(_removedEvent);\n    }\n    this.children.length = 0;\n    return this;\n  }\n  attach(object) {\n    this.updateWorldMatrix(true, false);\n    _m1$1.copy(this.matrixWorld).invert();\n    if (object.parent !== null) {\n      object.parent.updateWorldMatrix(true, false);\n      _m1$1.multiply(object.parent.matrixWorld);\n    }\n    object.applyMatrix4(_m1$1);\n    this.add(object);\n    object.updateWorldMatrix(false, true);\n    return this;\n  }\n  getObjectById(id2) {\n    return this.getObjectByProperty(\"id\", id2);\n  }\n  getObjectByName(name) {\n    return this.getObjectByProperty(\"name\", name);\n  }\n  getObjectByProperty(name, value) {\n    if (this[name] === value)\n      return this;\n    for (let i = 0, l = this.children.length; i < l; i++) {\n      const child = this.children[i];\n      const object = child.getObjectByProperty(name, value);\n      if (object !== void 0) {\n        return object;\n      }\n    }\n    return void 0;\n  }\n  getWorldPosition(target) {\n    this.updateWorldMatrix(true, false);\n    return target.setFromMatrixPosition(this.matrixWorld);\n  }\n  getWorldQuaternion(target) {\n    this.updateWorldMatrix(true, false);\n    this.matrixWorld.decompose(_position$3, target, _scale$2);\n    return target;\n  }\n  getWorldScale(target) {\n    this.updateWorldMatrix(true, false);\n    this.matrixWorld.decompose(_position$3, _quaternion$2, target);\n    return target;\n  }\n  getWorldDirection(target) {\n    this.updateWorldMatrix(true, false);\n    const e = this.matrixWorld.elements;\n    return target.set(e[8], e[9], e[10]).normalize();\n  }\n  raycast() {\n  }\n  traverse(callback) {\n    callback(this);\n    const children = this.children;\n    for (let i = 0, l = children.length; i < l; i++) {\n      children[i].traverse(callback);\n    }\n  }\n  traverseVisible(callback) {\n    if (this.visible === false)\n      return;\n    callback(this);\n    const children = this.children;\n    for (let i = 0, l = children.length; i < l; i++) {\n      children[i].traverseVisible(callback);\n    }\n  }\n  traverseAncestors(callback) {\n    const parent = this.parent;\n    if (parent !== null) {\n      callback(parent);\n      parent.traverseAncestors(callback);\n    }\n  }\n  updateMatrix() {\n    this.matrix.compose(this.position, this.quaternion, this.scale);\n    this.matrixWorldNeedsUpdate = true;\n  }\n  updateMatrixWorld(force) {\n    if (this.matrixAutoUpdate)\n      this.updateMatrix();\n    if (this.matrixWorldNeedsUpdate || force) {\n      if (this.parent === null) {\n        this.matrixWorld.copy(this.matrix);\n      } else {\n        this.matrixWorld.multiplyMatrices(this.parent.matrixWorld, this.matrix);\n      }\n      this.matrixWorldNeedsUpdate = false;\n      force = true;\n    }\n    const children = this.children;\n    for (let i = 0, l = children.length; i < l; i++) {\n      children[i].updateMatrixWorld(force);\n    }\n  }\n  updateWorldMatrix(updateParents, updateChildren) {\n    const parent = this.parent;\n    if (updateParents === true && parent !== null) {\n      parent.updateWorldMatrix(true, false);\n    }\n    if (this.matrixAutoUpdate)\n      this.updateMatrix();\n    if (this.parent === null) {\n      this.matrixWorld.copy(this.matrix);\n    } else {\n      this.matrixWorld.multiplyMatrices(this.parent.matrixWorld, this.matrix);\n    }\n    if (updateChildren === true) {\n      const children = this.children;\n      for (let i = 0, l = children.length; i < l; i++) {\n        children[i].updateWorldMatrix(false, true);\n      }\n    }\n  }\n  toJSON(meta) {\n    const isRootObject = meta === void 0 || typeof meta === \"string\";\n    const output = {};\n    if (isRootObject) {\n      meta = {\n        geometries: {},\n        materials: {},\n        textures: {},\n        images: {},\n        shapes: {},\n        skeletons: {},\n        animations: {},\n        nodes: {}\n      };\n      output.metadata = {\n        version: 4.5,\n        type: \"Object\",\n        generator: \"Object3D.toJSON\"\n      };\n    }\n    const object = {};\n    object.uuid = this.uuid;\n    object.type = this.type;\n    if (this.name !== \"\")\n      object.name = this.name;\n    if (this.castShadow === true)\n      object.castShadow = true;\n    if (this.receiveShadow === true)\n      object.receiveShadow = true;\n    if (this.visible === false)\n      object.visible = false;\n    if (this.frustumCulled === false)\n      object.frustumCulled = false;\n    if (this.renderOrder !== 0)\n      object.renderOrder = this.renderOrder;\n    if (JSON.stringify(this.userData) !== \"{}\")\n      object.userData = this.userData;\n    object.layers = this.layers.mask;\n    object.matrix = this.matrix.toArray();\n    if (this.matrixAutoUpdate === false)\n      object.matrixAutoUpdate = false;\n    if (this.isInstancedMesh) {\n      object.type = \"InstancedMesh\";\n      object.count = this.count;\n      object.instanceMatrix = this.instanceMatrix.toJSON();\n      if (this.instanceColor !== null)\n        object.instanceColor = this.instanceColor.toJSON();\n    }\n    function serialize(library, element) {\n      if (library[element.uuid] === void 0) {\n        library[element.uuid] = element.toJSON(meta);\n      }\n      return element.uuid;\n    }\n    if (this.isScene) {\n      if (this.background) {\n        if (this.background.isColor) {\n          object.background = this.background.toJSON();\n        } else if (this.background.isTexture) {\n          object.background = this.background.toJSON(meta).uuid;\n        }\n      }\n      if (this.environment && this.environment.isTexture && this.environment.isRenderTargetTexture !== true) {\n        object.environment = this.environment.toJSON(meta).uuid;\n      }\n    } else if (this.isMesh || this.isLine || this.isPoints) {\n      object.geometry = serialize(meta.geometries, this.geometry);\n      const parameters = this.geometry.parameters;\n      if (parameters !== void 0 && parameters.shapes !== void 0) {\n        const shapes = parameters.shapes;\n        if (Array.isArray(shapes)) {\n          for (let i = 0, l = shapes.length; i < l; i++) {\n            const shape = shapes[i];\n            serialize(meta.shapes, shape);\n          }\n        } else {\n          serialize(meta.shapes, shapes);\n        }\n      }\n    }\n    if (this.isSkinnedMesh) {\n      object.bindMode = this.bindMode;\n      object.bindMatrix = this.bindMatrix.toArray();\n      if (this.skeleton !== void 0) {\n        serialize(meta.skeletons, this.skeleton);\n        object.skeleton = this.skeleton.uuid;\n      }\n    }\n    if (this.material !== void 0) {\n      if (Array.isArray(this.material)) {\n        const uuids = [];\n        for (let i = 0, l = this.material.length; i < l; i++) {\n          uuids.push(serialize(meta.materials, this.material[i]));\n        }\n        object.material = uuids;\n      } else {\n        object.material = serialize(meta.materials, this.material);\n      }\n    }\n    if (this.children.length > 0) {\n      object.children = [];\n      for (let i = 0; i < this.children.length; i++) {\n        object.children.push(this.children[i].toJSON(meta).object);\n      }\n    }\n    if (this.animations.length > 0) {\n      object.animations = [];\n      for (let i = 0; i < this.animations.length; i++) {\n        const animation = this.animations[i];\n        object.animations.push(serialize(meta.animations, animation));\n      }\n    }\n    if (isRootObject) {\n      const geometries = extractFromCache(meta.geometries);\n      const materials = extractFromCache(meta.materials);\n      const textures = extractFromCache(meta.textures);\n      const images = extractFromCache(meta.images);\n      const shapes = extractFromCache(meta.shapes);\n      const skeletons = extractFromCache(meta.skeletons);\n      const animations = extractFromCache(meta.animations);\n      const nodes = extractFromCache(meta.nodes);\n      if (geometries.length > 0)\n        output.geometries = geometries;\n      if (materials.length > 0)\n        output.materials = materials;\n      if (textures.length > 0)\n        output.textures = textures;\n      if (images.length > 0)\n        output.images = images;\n      if (shapes.length > 0)\n        output.shapes = shapes;\n      if (skeletons.length > 0)\n        output.skeletons = skeletons;\n      if (animations.length > 0)\n        output.animations = animations;\n      if (nodes.length > 0)\n        output.nodes = nodes;\n    }\n    output.object = object;\n    return output;\n    function extractFromCache(cache) {\n      const values = [];\n      for (const key in cache) {\n        const data = cache[key];\n        delete data.metadata;\n        values.push(data);\n      }\n      return values;\n    }\n  }\n  clone(recursive) {\n    return new this.constructor().copy(this, recursive);\n  }\n  copy(source, recursive = true) {\n    this.name = source.name;\n    this.up.copy(source.up);\n    this.position.copy(source.position);\n    this.rotation.order = source.rotation.order;\n    this.quaternion.copy(source.quaternion);\n    this.scale.copy(source.scale);\n    this.matrix.copy(source.matrix);\n    this.matrixWorld.copy(source.matrixWorld);\n    this.matrixAutoUpdate = source.matrixAutoUpdate;\n    this.matrixWorldNeedsUpdate = source.matrixWorldNeedsUpdate;\n    this.layers.mask = source.layers.mask;\n    this.visible = source.visible;\n    this.castShadow = source.castShadow;\n    this.receiveShadow = source.receiveShadow;\n    this.frustumCulled = source.frustumCulled;\n    this.renderOrder = source.renderOrder;\n    this.userData = JSON.parse(JSON.stringify(source.userData));\n    if (recursive === true) {\n      for (let i = 0; i < source.children.length; i++) {\n        const child = source.children[i];\n        this.add(child.clone());\n      }\n    }\n    return this;\n  }\n}\nObject3D.DefaultUp = /* @__PURE__ */ new Vector3(0, 1, 0);\nObject3D.DefaultMatrixAutoUpdate = true;\nconst _v0$1 = /* @__PURE__ */ new Vector3();\nconst _v1$3 = /* @__PURE__ */ new Vector3();\nconst _v2$2 = /* @__PURE__ */ new Vector3();\nconst _v3$1 = /* @__PURE__ */ new Vector3();\nconst _vab = /* @__PURE__ */ new Vector3();\nconst _vac = /* @__PURE__ */ new Vector3();\nconst _vbc = /* @__PURE__ */ new Vector3();\nconst _vap = /* @__PURE__ */ new Vector3();\nconst _vbp = /* @__PURE__ */ new Vector3();\nconst _vcp = /* @__PURE__ */ new Vector3();\nclass Triangle {\n  constructor(a = new Vector3(), b = new Vector3(), c = new Vector3()) {\n    this.a = a;\n    this.b = b;\n    this.c = c;\n  }\n  static getNormal(a, b, c, target) {\n    target.subVectors(c, b);\n    _v0$1.subVectors(a, b);\n    target.cross(_v0$1);\n    const targetLengthSq = target.lengthSq();\n    if (targetLengthSq > 0) {\n      return target.multiplyScalar(1 / Math.sqrt(targetLengthSq));\n    }\n    return target.set(0, 0, 0);\n  }\n  static getBarycoord(point, a, b, c, target) {\n    _v0$1.subVectors(c, a);\n    _v1$3.subVectors(b, a);\n    _v2$2.subVectors(point, a);\n    const dot00 = _v0$1.dot(_v0$1);\n    const dot01 = _v0$1.dot(_v1$3);\n    const dot02 = _v0$1.dot(_v2$2);\n    const dot11 = _v1$3.dot(_v1$3);\n    const dot12 = _v1$3.dot(_v2$2);\n    const denom = dot00 * dot11 - dot01 * dot01;\n    if (denom === 0) {\n      return target.set(-2, -1, -1);\n    }\n    const invDenom = 1 / denom;\n    const u = (dot11 * dot02 - dot01 * dot12) * invDenom;\n    const v = (dot00 * dot12 - dot01 * dot02) * invDenom;\n    return target.set(1 - u - v, v, u);\n  }\n  static containsPoint(point, a, b, c) {\n    this.getBarycoord(point, a, b, c, _v3$1);\n    return _v3$1.x >= 0 && _v3$1.y >= 0 && _v3$1.x + _v3$1.y <= 1;\n  }\n  static getUV(point, p1, p2, p3, uv1, uv2, uv3, target) {\n    this.getBarycoord(point, p1, p2, p3, _v3$1);\n    target.set(0, 0);\n    target.addScaledVector(uv1, _v3$1.x);\n    target.addScaledVector(uv2, _v3$1.y);\n    target.addScaledVector(uv3, _v3$1.z);\n    return target;\n  }\n  static isFrontFacing(a, b, c, direction) {\n    _v0$1.subVectors(c, b);\n    _v1$3.subVectors(a, b);\n    return _v0$1.cross(_v1$3).dot(direction) < 0 ? true : false;\n  }\n  set(a, b, c) {\n    this.a.copy(a);\n    this.b.copy(b);\n    this.c.copy(c);\n    return this;\n  }\n  setFromPointsAndIndices(points, i0, i1, i2) {\n    this.a.copy(points[i0]);\n    this.b.copy(points[i1]);\n    this.c.copy(points[i2]);\n    return this;\n  }\n  setFromAttributeAndIndices(attribute, i0, i1, i2) {\n    this.a.fromBufferAttribute(attribute, i0);\n    this.b.fromBufferAttribute(attribute, i1);\n    this.c.fromBufferAttribute(attribute, i2);\n    return this;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  copy(triangle) {\n    this.a.copy(triangle.a);\n    this.b.copy(triangle.b);\n    this.c.copy(triangle.c);\n    return this;\n  }\n  getArea() {\n    _v0$1.subVectors(this.c, this.b);\n    _v1$3.subVectors(this.a, this.b);\n    return _v0$1.cross(_v1$3).length() * 0.5;\n  }\n  getMidpoint(target) {\n    return target.addVectors(this.a, this.b).add(this.c).multiplyScalar(1 / 3);\n  }\n  getNormal(target) {\n    return Triangle.getNormal(this.a, this.b, this.c, target);\n  }\n  getPlane(target) {\n    return target.setFromCoplanarPoints(this.a, this.b, this.c);\n  }\n  getBarycoord(point, target) {\n    return Triangle.getBarycoord(point, this.a, this.b, this.c, target);\n  }\n  getUV(point, uv1, uv2, uv3, target) {\n    return Triangle.getUV(point, this.a, this.b, this.c, uv1, uv2, uv3, target);\n  }\n  containsPoint(point) {\n    return Triangle.containsPoint(point, this.a, this.b, this.c);\n  }\n  isFrontFacing(direction) {\n    return Triangle.isFrontFacing(this.a, this.b, this.c, direction);\n  }\n  intersectsBox(box2) {\n    return box2.intersectsTriangle(this);\n  }\n  closestPointToPoint(p, target) {\n    const a = this.a, b = this.b, c = this.c;\n    let v, w;\n    _vab.subVectors(b, a);\n    _vac.subVectors(c, a);\n    _vap.subVectors(p, a);\n    const d1 = _vab.dot(_vap);\n    const d2 = _vac.dot(_vap);\n    if (d1 <= 0 && d2 <= 0) {\n      return target.copy(a);\n    }\n    _vbp.subVectors(p, b);\n    const d3 = _vab.dot(_vbp);\n    const d4 = _vac.dot(_vbp);\n    if (d3 >= 0 && d4 <= d3) {\n      return target.copy(b);\n    }\n    const vc = d1 * d4 - d3 * d2;\n    if (vc <= 0 && d1 >= 0 && d3 <= 0) {\n      v = d1 / (d1 - d3);\n      return target.copy(a).addScaledVector(_vab, v);\n    }\n    _vcp.subVectors(p, c);\n    const d5 = _vab.dot(_vcp);\n    const d6 = _vac.dot(_vcp);\n    if (d6 >= 0 && d5 <= d6) {\n      return target.copy(c);\n    }\n    const vb = d5 * d2 - d1 * d6;\n    if (vb <= 0 && d2 >= 0 && d6 <= 0) {\n      w = d2 / (d2 - d6);\n      return target.copy(a).addScaledVector(_vac, w);\n    }\n    const va = d3 * d6 - d5 * d4;\n    if (va <= 0 && d4 - d3 >= 0 && d5 - d6 >= 0) {\n      _vbc.subVectors(c, b);\n      w = (d4 - d3) / (d4 - d3 + (d5 - d6));\n      return target.copy(b).addScaledVector(_vbc, w);\n    }\n    const denom = 1 / (va + vb + vc);\n    v = vb * denom;\n    w = vc * denom;\n    return target.copy(a).addScaledVector(_vab, v).addScaledVector(_vac, w);\n  }\n  equals(triangle) {\n    return triangle.a.equals(this.a) && triangle.b.equals(this.b) && triangle.c.equals(this.c);\n  }\n}\nlet materialId = 0;\nclass Material extends EventDispatcher {\n  constructor() {\n    super();\n    this.isMaterial = true;\n    Object.defineProperty(this, \"id\", { value: materialId++ });\n    this.uuid = generateUUID();\n    this.name = \"\";\n    this.type = \"Material\";\n    this.blending = NormalBlending;\n    this.side = FrontSide;\n    this.vertexColors = false;\n    this.opacity = 1;\n    this.transparent = false;\n    this.blendSrc = SrcAlphaFactor;\n    this.blendDst = OneMinusSrcAlphaFactor;\n    this.blendEquation = AddEquation;\n    this.blendSrcAlpha = null;\n    this.blendDstAlpha = null;\n    this.blendEquationAlpha = null;\n    this.depthFunc = LessEqualDepth;\n    this.depthTest = true;\n    this.depthWrite = true;\n    this.stencilWriteMask = 255;\n    this.stencilFunc = AlwaysStencilFunc;\n    this.stencilRef = 0;\n    this.stencilFuncMask = 255;\n    this.stencilFail = KeepStencilOp;\n    this.stencilZFail = KeepStencilOp;\n    this.stencilZPass = KeepStencilOp;\n    this.stencilWrite = false;\n    this.clippingPlanes = null;\n    this.clipIntersection = false;\n    this.clipShadows = false;\n    this.shadowSide = null;\n    this.colorWrite = true;\n    this.precision = null;\n    this.polygonOffset = false;\n    this.polygonOffsetFactor = 0;\n    this.polygonOffsetUnits = 0;\n    this.dithering = false;\n    this.alphaToCoverage = false;\n    this.premultipliedAlpha = false;\n    this.visible = true;\n    this.toneMapped = true;\n    this.userData = {};\n    this.version = 0;\n    this._alphaTest = 0;\n  }\n  get alphaTest() {\n    return this._alphaTest;\n  }\n  set alphaTest(value) {\n    if (this._alphaTest > 0 !== value > 0) {\n      this.version++;\n    }\n    this._alphaTest = value;\n  }\n  onBuild() {\n  }\n  onBeforeRender() {\n  }\n  onBeforeCompile() {\n  }\n  customProgramCacheKey() {\n    return this.onBeforeCompile.toString();\n  }\n  setValues(values) {\n    if (values === void 0)\n      return;\n    for (const key in values) {\n      const newValue = values[key];\n      if (newValue === void 0) {\n        console.warn(\"THREE.Material: '\" + key + \"' parameter is undefined.\");\n        continue;\n      }\n      if (key === \"shading\") {\n        console.warn(\"THREE.\" + this.type + \": .shading has been removed. Use the boolean .flatShading instead.\");\n        this.flatShading = newValue === FlatShading ? true : false;\n        continue;\n      }\n      const currentValue = this[key];\n      if (currentValue === void 0) {\n        console.warn(\"THREE.\" + this.type + \": '\" + key + \"' is not a property of this material.\");\n        continue;\n      }\n      if (currentValue && currentValue.isColor) {\n        currentValue.set(newValue);\n      } else if (currentValue && currentValue.isVector3 && (newValue && newValue.isVector3)) {\n        currentValue.copy(newValue);\n      } else {\n        this[key] = newValue;\n      }\n    }\n  }\n  toJSON(meta) {\n    const isRootObject = meta === void 0 || typeof meta === \"string\";\n    if (isRootObject) {\n      meta = {\n        textures: {},\n        images: {}\n      };\n    }\n    const data = {\n      metadata: {\n        version: 4.5,\n        type: \"Material\",\n        generator: \"Material.toJSON\"\n      }\n    };\n    data.uuid = this.uuid;\n    data.type = this.type;\n    if (this.name !== \"\")\n      data.name = this.name;\n    if (this.color && this.color.isColor)\n      data.color = this.color.getHex();\n    if (this.roughness !== void 0)\n      data.roughness = this.roughness;\n    if (this.metalness !== void 0)\n      data.metalness = this.metalness;\n    if (this.sheen !== void 0)\n      data.sheen = this.sheen;\n    if (this.sheenColor && this.sheenColor.isColor)\n      data.sheenColor = this.sheenColor.getHex();\n    if (this.sheenRoughness !== void 0)\n      data.sheenRoughness = this.sheenRoughness;\n    if (this.emissive && this.emissive.isColor)\n      data.emissive = this.emissive.getHex();\n    if (this.emissiveIntensity && this.emissiveIntensity !== 1)\n      data.emissiveIntensity = this.emissiveIntensity;\n    if (this.specular && this.specular.isColor)\n      data.specular = this.specular.getHex();\n    if (this.specularIntensity !== void 0)\n      data.specularIntensity = this.specularIntensity;\n    if (this.specularColor && this.specularColor.isColor)\n      data.specularColor = this.specularColor.getHex();\n    if (this.shininess !== void 0)\n      data.shininess = this.shininess;\n    if (this.clearcoat !== void 0)\n      data.clearcoat = this.clearcoat;\n    if (this.clearcoatRoughness !== void 0)\n      data.clearcoatRoughness = this.clearcoatRoughness;\n    if (this.clearcoatMap && this.clearcoatMap.isTexture) {\n      data.clearcoatMap = this.clearcoatMap.toJSON(meta).uuid;\n    }\n    if (this.clearcoatRoughnessMap && this.clearcoatRoughnessMap.isTexture) {\n      data.clearcoatRoughnessMap = this.clearcoatRoughnessMap.toJSON(meta).uuid;\n    }\n    if (this.clearcoatNormalMap && this.clearcoatNormalMap.isTexture) {\n      data.clearcoatNormalMap = this.clearcoatNormalMap.toJSON(meta).uuid;\n      data.clearcoatNormalScale = this.clearcoatNormalScale.toArray();\n    }\n    if (this.iridescence !== void 0)\n      data.iridescence = this.iridescence;\n    if (this.iridescenceIOR !== void 0)\n      data.iridescenceIOR = this.iridescenceIOR;\n    if (this.iridescenceThicknessRange !== void 0)\n      data.iridescenceThicknessRange = this.iridescenceThicknessRange;\n    if (this.iridescenceMap && this.iridescenceMap.isTexture) {\n      data.iridescenceMap = this.iridescenceMap.toJSON(meta).uuid;\n    }\n    if (this.iridescenceThicknessMap && this.iridescenceThicknessMap.isTexture) {\n      data.iridescenceThicknessMap = this.iridescenceThicknessMap.toJSON(meta).uuid;\n    }\n    if (this.map && this.map.isTexture)\n      data.map = this.map.toJSON(meta).uuid;\n    if (this.matcap && this.matcap.isTexture)\n      data.matcap = this.matcap.toJSON(meta).uuid;\n    if (this.alphaMap && this.alphaMap.isTexture)\n      data.alphaMap = this.alphaMap.toJSON(meta).uuid;\n    if (this.lightMap && this.lightMap.isTexture) {\n      data.lightMap = this.lightMap.toJSON(meta).uuid;\n      data.lightMapIntensity = this.lightMapIntensity;\n    }\n    if (this.aoMap && this.aoMap.isTexture) {\n      data.aoMap = this.aoMap.toJSON(meta).uuid;\n      data.aoMapIntensity = this.aoMapIntensity;\n    }\n    if (this.bumpMap && this.bumpMap.isTexture) {\n      data.bumpMap = this.bumpMap.toJSON(meta).uuid;\n      data.bumpScale = this.bumpScale;\n    }\n    if (this.normalMap && this.normalMap.isTexture) {\n      data.normalMap = this.normalMap.toJSON(meta).uuid;\n      data.normalMapType = this.normalMapType;\n      data.normalScale = this.normalScale.toArray();\n    }\n    if (this.displacementMap && this.displacementMap.isTexture) {\n      data.displacementMap = this.displacementMap.toJSON(meta).uuid;\n      data.displacementScale = this.displacementScale;\n      data.displacementBias = this.displacementBias;\n    }\n    if (this.roughnessMap && this.roughnessMap.isTexture)\n      data.roughnessMap = this.roughnessMap.toJSON(meta).uuid;\n    if (this.metalnessMap && this.metalnessMap.isTexture)\n      data.metalnessMap = this.metalnessMap.toJSON(meta).uuid;\n    if (this.emissiveMap && this.emissiveMap.isTexture)\n      data.emissiveMap = this.emissiveMap.toJSON(meta).uuid;\n    if (this.specularMap && this.specularMap.isTexture)\n      data.specularMap = this.specularMap.toJSON(meta).uuid;\n    if (this.specularIntensityMap && this.specularIntensityMap.isTexture)\n      data.specularIntensityMap = this.specularIntensityMap.toJSON(meta).uuid;\n    if (this.specularColorMap && this.specularColorMap.isTexture)\n      data.specularColorMap = this.specularColorMap.toJSON(meta).uuid;\n    if (this.envMap && this.envMap.isTexture) {\n      data.envMap = this.envMap.toJSON(meta).uuid;\n      if (this.combine !== void 0)\n        data.combine = this.combine;\n    }\n    if (this.envMapIntensity !== void 0)\n      data.envMapIntensity = this.envMapIntensity;\n    if (this.reflectivity !== void 0)\n      data.reflectivity = this.reflectivity;\n    if (this.refractionRatio !== void 0)\n      data.refractionRatio = this.refractionRatio;\n    if (this.gradientMap && this.gradientMap.isTexture) {\n      data.gradientMap = this.gradientMap.toJSON(meta).uuid;\n    }\n    if (this.transmission !== void 0)\n      data.transmission = this.transmission;\n    if (this.transmissionMap && this.transmissionMap.isTexture)\n      data.transmissionMap = this.transmissionMap.toJSON(meta).uuid;\n    if (this.thickness !== void 0)\n      data.thickness = this.thickness;\n    if (this.thicknessMap && this.thicknessMap.isTexture)\n      data.thicknessMap = this.thicknessMap.toJSON(meta).uuid;\n    if (this.attenuationDistance !== void 0)\n      data.attenuationDistance = this.attenuationDistance;\n    if (this.attenuationColor !== void 0)\n      data.attenuationColor = this.attenuationColor.getHex();\n    if (this.size !== void 0)\n      data.size = this.size;\n    if (this.shadowSide !== null)\n      data.shadowSide = this.shadowSide;\n    if (this.sizeAttenuation !== void 0)\n      data.sizeAttenuation = this.sizeAttenuation;\n    if (this.blending !== NormalBlending)\n      data.blending = this.blending;\n    if (this.side !== FrontSide)\n      data.side = this.side;\n    if (this.vertexColors)\n      data.vertexColors = true;\n    if (this.opacity < 1)\n      data.opacity = this.opacity;\n    if (this.transparent === true)\n      data.transparent = this.transparent;\n    data.depthFunc = this.depthFunc;\n    data.depthTest = this.depthTest;\n    data.depthWrite = this.depthWrite;\n    data.colorWrite = this.colorWrite;\n    data.stencilWrite = this.stencilWrite;\n    data.stencilWriteMask = this.stencilWriteMask;\n    data.stencilFunc = this.stencilFunc;\n    data.stencilRef = this.stencilRef;\n    data.stencilFuncMask = this.stencilFuncMask;\n    data.stencilFail = this.stencilFail;\n    data.stencilZFail = this.stencilZFail;\n    data.stencilZPass = this.stencilZPass;\n    if (this.rotation !== void 0 && this.rotation !== 0)\n      data.rotation = this.rotation;\n    if (this.polygonOffset === true)\n      data.polygonOffset = true;\n    if (this.polygonOffsetFactor !== 0)\n      data.polygonOffsetFactor = this.polygonOffsetFactor;\n    if (this.polygonOffsetUnits !== 0)\n      data.polygonOffsetUnits = this.polygonOffsetUnits;\n    if (this.linewidth !== void 0 && this.linewidth !== 1)\n      data.linewidth = this.linewidth;\n    if (this.dashSize !== void 0)\n      data.dashSize = this.dashSize;\n    if (this.gapSize !== void 0)\n      data.gapSize = this.gapSize;\n    if (this.scale !== void 0)\n      data.scale = this.scale;\n    if (this.dithering === true)\n      data.dithering = true;\n    if (this.alphaTest > 0)\n      data.alphaTest = this.alphaTest;\n    if (this.alphaToCoverage === true)\n      data.alphaToCoverage = this.alphaToCoverage;\n    if (this.premultipliedAlpha === true)\n      data.premultipliedAlpha = this.premultipliedAlpha;\n    if (this.wireframe === true)\n      data.wireframe = this.wireframe;\n    if (this.wireframeLinewidth > 1)\n      data.wireframeLinewidth = this.wireframeLinewidth;\n    if (this.wireframeLinecap !== \"round\")\n      data.wireframeLinecap = this.wireframeLinecap;\n    if (this.wireframeLinejoin !== \"round\")\n      data.wireframeLinejoin = this.wireframeLinejoin;\n    if (this.flatShading === true)\n      data.flatShading = this.flatShading;\n    if (this.visible === false)\n      data.visible = false;\n    if (this.toneMapped === false)\n      data.toneMapped = false;\n    if (this.fog === false)\n      data.fog = false;\n    if (JSON.stringify(this.userData) !== \"{}\")\n      data.userData = this.userData;\n    function extractFromCache(cache) {\n      const values = [];\n      for (const key in cache) {\n        const data2 = cache[key];\n        delete data2.metadata;\n        values.push(data2);\n      }\n      return values;\n    }\n    if (isRootObject) {\n      const textures = extractFromCache(meta.textures);\n      const images = extractFromCache(meta.images);\n      if (textures.length > 0)\n        data.textures = textures;\n      if (images.length > 0)\n        data.images = images;\n    }\n    return data;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  copy(source) {\n    this.name = source.name;\n    this.blending = source.blending;\n    this.side = source.side;\n    this.vertexColors = source.vertexColors;\n    this.opacity = source.opacity;\n    this.transparent = source.transparent;\n    this.blendSrc = source.blendSrc;\n    this.blendDst = source.blendDst;\n    this.blendEquation = source.blendEquation;\n    this.blendSrcAlpha = source.blendSrcAlpha;\n    this.blendDstAlpha = source.blendDstAlpha;\n    this.blendEquationAlpha = source.blendEquationAlpha;\n    this.depthFunc = source.depthFunc;\n    this.depthTest = source.depthTest;\n    this.depthWrite = source.depthWrite;\n    this.stencilWriteMask = source.stencilWriteMask;\n    this.stencilFunc = source.stencilFunc;\n    this.stencilRef = source.stencilRef;\n    this.stencilFuncMask = source.stencilFuncMask;\n    this.stencilFail = source.stencilFail;\n    this.stencilZFail = source.stencilZFail;\n    this.stencilZPass = source.stencilZPass;\n    this.stencilWrite = source.stencilWrite;\n    const srcPlanes = source.clippingPlanes;\n    let dstPlanes = null;\n    if (srcPlanes !== null) {\n      const n = srcPlanes.length;\n      dstPlanes = new Array(n);\n      for (let i = 0; i !== n; ++i) {\n        dstPlanes[i] = srcPlanes[i].clone();\n      }\n    }\n    this.clippingPlanes = dstPlanes;\n    this.clipIntersection = source.clipIntersection;\n    this.clipShadows = source.clipShadows;\n    this.shadowSide = source.shadowSide;\n    this.colorWrite = source.colorWrite;\n    this.precision = source.precision;\n    this.polygonOffset = source.polygonOffset;\n    this.polygonOffsetFactor = source.polygonOffsetFactor;\n    this.polygonOffsetUnits = source.polygonOffsetUnits;\n    this.dithering = source.dithering;\n    this.alphaTest = source.alphaTest;\n    this.alphaToCoverage = source.alphaToCoverage;\n    this.premultipliedAlpha = source.premultipliedAlpha;\n    this.visible = source.visible;\n    this.toneMapped = source.toneMapped;\n    this.userData = JSON.parse(JSON.stringify(source.userData));\n    return this;\n  }\n  dispose() {\n    this.dispatchEvent({ type: \"dispose\" });\n  }\n  set needsUpdate(value) {\n    if (value === true)\n      this.version++;\n  }\n}\nclass MeshBasicMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshBasicMaterial = true;\n    this.type = \"MeshBasicMaterial\";\n    this.color = new Color(16777215);\n    this.map = null;\n    this.lightMap = null;\n    this.lightMapIntensity = 1;\n    this.aoMap = null;\n    this.aoMapIntensity = 1;\n    this.specularMap = null;\n    this.alphaMap = null;\n    this.envMap = null;\n    this.combine = MultiplyOperation;\n    this.reflectivity = 1;\n    this.refractionRatio = 0.98;\n    this.wireframe = false;\n    this.wireframeLinewidth = 1;\n    this.wireframeLinecap = \"round\";\n    this.wireframeLinejoin = \"round\";\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.color.copy(source.color);\n    this.map = source.map;\n    this.lightMap = source.lightMap;\n    this.lightMapIntensity = source.lightMapIntensity;\n    this.aoMap = source.aoMap;\n    this.aoMapIntensity = source.aoMapIntensity;\n    this.specularMap = source.specularMap;\n    this.alphaMap = source.alphaMap;\n    this.envMap = source.envMap;\n    this.combine = source.combine;\n    this.reflectivity = source.reflectivity;\n    this.refractionRatio = source.refractionRatio;\n    this.wireframe = source.wireframe;\n    this.wireframeLinewidth = source.wireframeLinewidth;\n    this.wireframeLinecap = source.wireframeLinecap;\n    this.wireframeLinejoin = source.wireframeLinejoin;\n    this.fog = source.fog;\n    return this;\n  }\n}\nconst _vector$9 = /* @__PURE__ */ new Vector3();\nconst _vector2$1 = /* @__PURE__ */ new Vector2();\nclass BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    if (Array.isArray(array)) {\n      throw new TypeError(\"THREE.BufferAttribute: array should be a Typed Array.\");\n    }\n    this.isBufferAttribute = true;\n    this.name = \"\";\n    this.array = array;\n    this.itemSize = itemSize;\n    this.count = array !== void 0 ? array.length / itemSize : 0;\n    this.normalized = normalized === true;\n    this.usage = StaticDrawUsage;\n    this.updateRange = { offset: 0, count: -1 };\n    this.version = 0;\n  }\n  onUploadCallback() {\n  }\n  set needsUpdate(value) {\n    if (value === true)\n      this.version++;\n  }\n  setUsage(value) {\n    this.usage = value;\n    return this;\n  }\n  copy(source) {\n    this.name = source.name;\n    this.array = new source.array.constructor(source.array);\n    this.itemSize = source.itemSize;\n    this.count = source.count;\n    this.normalized = source.normalized;\n    this.usage = source.usage;\n    return this;\n  }\n  copyAt(index1, attribute, index2) {\n    index1 *= this.itemSize;\n    index2 *= attribute.itemSize;\n    for (let i = 0, l = this.itemSize; i < l; i++) {\n      this.array[index1 + i] = attribute.array[index2 + i];\n    }\n    return this;\n  }\n  copyArray(array) {\n    this.array.set(array);\n    return this;\n  }\n  copyColorsArray(colors) {\n    const array = this.array;\n    let offset = 0;\n    for (let i = 0, l = colors.length; i < l; i++) {\n      let color = colors[i];\n      if (color === void 0) {\n        console.warn(\"THREE.BufferAttribute.copyColorsArray(): color is undefined\", i);\n        color = new Color();\n      }\n      array[offset++] = color.r;\n      array[offset++] = color.g;\n      array[offset++] = color.b;\n    }\n    return this;\n  }\n  copyVector2sArray(vectors) {\n    const array = this.array;\n    let offset = 0;\n    for (let i = 0, l = vectors.length; i < l; i++) {\n      let vector = vectors[i];\n      if (vector === void 0) {\n        console.warn(\"THREE.BufferAttribute.copyVector2sArray(): vector is undefined\", i);\n        vector = new Vector2();\n      }\n      array[offset++] = vector.x;\n      array[offset++] = vector.y;\n    }\n    return this;\n  }\n  copyVector3sArray(vectors) {\n    const array = this.array;\n    let offset = 0;\n    for (let i = 0, l = vectors.length; i < l; i++) {\n      let vector = vectors[i];\n      if (vector === void 0) {\n        console.warn(\"THREE.BufferAttribute.copyVector3sArray(): vector is undefined\", i);\n        vector = new Vector3();\n      }\n      array[offset++] = vector.x;\n      array[offset++] = vector.y;\n      array[offset++] = vector.z;\n    }\n    return this;\n  }\n  copyVector4sArray(vectors) {\n    const array = this.array;\n    let offset = 0;\n    for (let i = 0, l = vectors.length; i < l; i++) {\n      let vector = vectors[i];\n      if (vector === void 0) {\n        console.warn(\"THREE.BufferAttribute.copyVector4sArray(): vector is undefined\", i);\n        vector = new Vector4();\n      }\n      array[offset++] = vector.x;\n      array[offset++] = vector.y;\n      array[offset++] = vector.z;\n      array[offset++] = vector.w;\n    }\n    return this;\n  }\n  applyMatrix3(m) {\n    if (this.itemSize === 2) {\n      for (let i = 0, l = this.count; i < l; i++) {\n        _vector2$1.fromBufferAttribute(this, i);\n        _vector2$1.applyMatrix3(m);\n        this.setXY(i, _vector2$1.x, _vector2$1.y);\n      }\n    } else if (this.itemSize === 3) {\n      for (let i = 0, l = this.count; i < l; i++) {\n        _vector$9.fromBufferAttribute(this, i);\n        _vector$9.applyMatrix3(m);\n        this.setXYZ(i, _vector$9.x, _vector$9.y, _vector$9.z);\n      }\n    }\n    return this;\n  }\n  applyMatrix4(m) {\n    for (let i = 0, l = this.count; i < l; i++) {\n      _vector$9.fromBufferAttribute(this, i);\n      _vector$9.applyMatrix4(m);\n      this.setXYZ(i, _vector$9.x, _vector$9.y, _vector$9.z);\n    }\n    return this;\n  }\n  applyNormalMatrix(m) {\n    for (let i = 0, l = this.count; i < l; i++) {\n      _vector$9.fromBufferAttribute(this, i);\n      _vector$9.applyNormalMatrix(m);\n      this.setXYZ(i, _vector$9.x, _vector$9.y, _vector$9.z);\n    }\n    return this;\n  }\n  transformDirection(m) {\n    for (let i = 0, l = this.count; i < l; i++) {\n      _vector$9.fromBufferAttribute(this, i);\n      _vector$9.transformDirection(m);\n      this.setXYZ(i, _vector$9.x, _vector$9.y, _vector$9.z);\n    }\n    return this;\n  }\n  set(value, offset = 0) {\n    this.array.set(value, offset);\n    return this;\n  }\n  getX(index2) {\n    return this.array[index2 * this.itemSize];\n  }\n  setX(index2, x) {\n    this.array[index2 * this.itemSize] = x;\n    return this;\n  }\n  getY(index2) {\n    return this.array[index2 * this.itemSize + 1];\n  }\n  setY(index2, y) {\n    this.array[index2 * this.itemSize + 1] = y;\n    return this;\n  }\n  getZ(index2) {\n    return this.array[index2 * this.itemSize + 2];\n  }\n  setZ(index2, z) {\n    this.array[index2 * this.itemSize + 2] = z;\n    return this;\n  }\n  getW(index2) {\n    return this.array[index2 * this.itemSize + 3];\n  }\n  setW(index2, w) {\n    this.array[index2 * this.itemSize + 3] = w;\n    return this;\n  }\n  setXY(index2, x, y) {\n    index2 *= this.itemSize;\n    this.array[index2 + 0] = x;\n    this.array[index2 + 1] = y;\n    return this;\n  }\n  setXYZ(index2, x, y, z) {\n    index2 *= this.itemSize;\n    this.array[index2 + 0] = x;\n    this.array[index2 + 1] = y;\n    this.array[index2 + 2] = z;\n    return this;\n  }\n  setXYZW(index2, x, y, z, w) {\n    index2 *= this.itemSize;\n    this.array[index2 + 0] = x;\n    this.array[index2 + 1] = y;\n    this.array[index2 + 2] = z;\n    this.array[index2 + 3] = w;\n    return this;\n  }\n  onUpload(callback) {\n    this.onUploadCallback = callback;\n    return this;\n  }\n  clone() {\n    return new this.constructor(this.array, this.itemSize).copy(this);\n  }\n  toJSON() {\n    const data = {\n      itemSize: this.itemSize,\n      type: this.array.constructor.name,\n      array: Array.from(this.array),\n      normalized: this.normalized\n    };\n    if (this.name !== \"\")\n      data.name = this.name;\n    if (this.usage !== StaticDrawUsage)\n      data.usage = this.usage;\n    if (this.updateRange.offset !== 0 || this.updateRange.count !== -1)\n      data.updateRange = this.updateRange;\n    return data;\n  }\n}\nclass Int8BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Int8Array(array), itemSize, normalized);\n  }\n}\nclass Uint8BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Uint8Array(array), itemSize, normalized);\n  }\n}\nclass Uint8ClampedBufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Uint8ClampedArray(array), itemSize, normalized);\n  }\n}\nclass Int16BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Int16Array(array), itemSize, normalized);\n  }\n}\nclass Uint16BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Uint16Array(array), itemSize, normalized);\n  }\n}\nclass Int32BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Int32Array(array), itemSize, normalized);\n  }\n}\nclass Uint32BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Uint32Array(array), itemSize, normalized);\n  }\n}\nclass Float16BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Uint16Array(array), itemSize, normalized);\n    this.isFloat16BufferAttribute = true;\n  }\n}\nclass Float32BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Float32Array(array), itemSize, normalized);\n  }\n}\nclass Float64BufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized) {\n    super(new Float64Array(array), itemSize, normalized);\n  }\n}\nlet _id$1 = 0;\nconst _m1 = /* @__PURE__ */ new Matrix4();\nconst _obj = /* @__PURE__ */ new Object3D();\nconst _offset = /* @__PURE__ */ new Vector3();\nconst _box$1 = /* @__PURE__ */ new Box3();\nconst _boxMorphTargets = /* @__PURE__ */ new Box3();\nconst _vector$8 = /* @__PURE__ */ new Vector3();\nclass BufferGeometry extends EventDispatcher {\n  constructor() {\n    super();\n    this.isBufferGeometry = true;\n    Object.defineProperty(this, \"id\", { value: _id$1++ });\n    this.uuid = generateUUID();\n    this.name = \"\";\n    this.type = \"BufferGeometry\";\n    this.index = null;\n    this.attributes = {};\n    this.morphAttributes = {};\n    this.morphTargetsRelative = false;\n    this.groups = [];\n    this.boundingBox = null;\n    this.boundingSphere = null;\n    this.drawRange = { start: 0, count: Infinity };\n    this.userData = {};\n  }\n  getIndex() {\n    return this.index;\n  }\n  setIndex(index2) {\n    if (Array.isArray(index2)) {\n      this.index = new (arrayNeedsUint32(index2) ? Uint32BufferAttribute : Uint16BufferAttribute)(index2, 1);\n    } else {\n      this.index = index2;\n    }\n    return this;\n  }\n  getAttribute(name) {\n    return this.attributes[name];\n  }\n  setAttribute(name, attribute) {\n    this.attributes[name] = attribute;\n    return this;\n  }\n  deleteAttribute(name) {\n    delete this.attributes[name];\n    return this;\n  }\n  hasAttribute(name) {\n    return this.attributes[name] !== void 0;\n  }\n  addGroup(start, count, materialIndex = 0) {\n    this.groups.push({\n      start,\n      count,\n      materialIndex\n    });\n  }\n  clearGroups() {\n    this.groups = [];\n  }\n  setDrawRange(start, count) {\n    this.drawRange.start = start;\n    this.drawRange.count = count;\n  }\n  applyMatrix4(matrix) {\n    const position = this.attributes.position;\n    if (position !== void 0) {\n      position.applyMatrix4(matrix);\n      position.needsUpdate = true;\n    }\n    const normal = this.attributes.normal;\n    if (normal !== void 0) {\n      const normalMatrix = new Matrix3().getNormalMatrix(matrix);\n      normal.applyNormalMatrix(normalMatrix);\n      normal.needsUpdate = true;\n    }\n    const tangent = this.attributes.tangent;\n    if (tangent !== void 0) {\n      tangent.transformDirection(matrix);\n      tangent.needsUpdate = true;\n    }\n    if (this.boundingBox !== null) {\n      this.computeBoundingBox();\n    }\n    if (this.boundingSphere !== null) {\n      this.computeBoundingSphere();\n    }\n    return this;\n  }\n  applyQuaternion(q) {\n    _m1.makeRotationFromQuaternion(q);\n    this.applyMatrix4(_m1);\n    return this;\n  }\n  rotateX(angle) {\n    _m1.makeRotationX(angle);\n    this.applyMatrix4(_m1);\n    return this;\n  }\n  rotateY(angle) {\n    _m1.makeRotationY(angle);\n    this.applyMatrix4(_m1);\n    return this;\n  }\n  rotateZ(angle) {\n    _m1.makeRotationZ(angle);\n    this.applyMatrix4(_m1);\n    return this;\n  }\n  translate(x, y, z) {\n    _m1.makeTranslation(x, y, z);\n    this.applyMatrix4(_m1);\n    return this;\n  }\n  scale(x, y, z) {\n    _m1.makeScale(x, y, z);\n    this.applyMatrix4(_m1);\n    return this;\n  }\n  lookAt(vector) {\n    _obj.lookAt(vector);\n    _obj.updateMatrix();\n    this.applyMatrix4(_obj.matrix);\n    return this;\n  }\n  center() {\n    this.computeBoundingBox();\n    this.boundingBox.getCenter(_offset).negate();\n    this.translate(_offset.x, _offset.y, _offset.z);\n    return this;\n  }\n  setFromPoints(points) {\n    const position = [];\n    for (let i = 0, l = points.length; i < l; i++) {\n      const point = points[i];\n      position.push(point.x, point.y, point.z || 0);\n    }\n    this.setAttribute(\"position\", new Float32BufferAttribute(position, 3));\n    return this;\n  }\n  computeBoundingBox() {\n    if (this.boundingBox === null) {\n      this.boundingBox = new Box3();\n    }\n    const position = this.attributes.position;\n    const morphAttributesPosition = this.morphAttributes.position;\n    if (position && position.isGLBufferAttribute) {\n      console.error('THREE.BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box. Alternatively set \"mesh.frustumCulled\" to \"false\".', this);\n      this.boundingBox.set(new Vector3(-Infinity, -Infinity, -Infinity), new Vector3(Infinity, Infinity, Infinity));\n      return;\n    }\n    if (position !== void 0) {\n      this.boundingBox.setFromBufferAttribute(position);\n      if (morphAttributesPosition) {\n        for (let i = 0, il = morphAttributesPosition.length; i < il; i++) {\n          const morphAttribute = morphAttributesPosition[i];\n          _box$1.setFromBufferAttribute(morphAttribute);\n          if (this.morphTargetsRelative) {\n            _vector$8.addVectors(this.boundingBox.min, _box$1.min);\n            this.boundingBox.expandByPoint(_vector$8);\n            _vector$8.addVectors(this.boundingBox.max, _box$1.max);\n            this.boundingBox.expandByPoint(_vector$8);\n          } else {\n            this.boundingBox.expandByPoint(_box$1.min);\n            this.boundingBox.expandByPoint(_box$1.max);\n          }\n        }\n      }\n    } else {\n      this.boundingBox.makeEmpty();\n    }\n    if (isNaN(this.boundingBox.min.x) || isNaN(this.boundingBox.min.y) || isNaN(this.boundingBox.min.z)) {\n      console.error('THREE.BufferGeometry.computeBoundingBox(): Computed min/max have NaN values. The \"position\" attribute is likely to have NaN values.', this);\n    }\n  }\n  computeBoundingSphere() {\n    if (this.boundingSphere === null) {\n      this.boundingSphere = new Sphere();\n    }\n    const position = this.attributes.position;\n    const morphAttributesPosition = this.morphAttributes.position;\n    if (position && position.isGLBufferAttribute) {\n      console.error('THREE.BufferGeometry.computeBoundingSphere(): GLBufferAttribute requires a manual bounding sphere. Alternatively set \"mesh.frustumCulled\" to \"false\".', this);\n      this.boundingSphere.set(new Vector3(), Infinity);\n      return;\n    }\n    if (position) {\n      const center = this.boundingSphere.center;\n      _box$1.setFromBufferAttribute(position);\n      if (morphAttributesPosition) {\n        for (let i = 0, il = morphAttributesPosition.length; i < il; i++) {\n          const morphAttribute = morphAttributesPosition[i];\n          _boxMorphTargets.setFromBufferAttribute(morphAttribute);\n          if (this.morphTargetsRelative) {\n            _vector$8.addVectors(_box$1.min, _boxMorphTargets.min);\n            _box$1.expandByPoint(_vector$8);\n            _vector$8.addVectors(_box$1.max, _boxMorphTargets.max);\n            _box$1.expandByPoint(_vector$8);\n          } else {\n            _box$1.expandByPoint(_boxMorphTargets.min);\n            _box$1.expandByPoint(_boxMorphTargets.max);\n          }\n        }\n      }\n      _box$1.getCenter(center);\n      let maxRadiusSq = 0;\n      for (let i = 0, il = position.count; i < il; i++) {\n        _vector$8.fromBufferAttribute(position, i);\n        maxRadiusSq = Math.max(maxRadiusSq, center.distanceToSquared(_vector$8));\n      }\n      if (morphAttributesPosition) {\n        for (let i = 0, il = morphAttributesPosition.length; i < il; i++) {\n          const morphAttribute = morphAttributesPosition[i];\n          const morphTargetsRelative = this.morphTargetsRelative;\n          for (let j = 0, jl = morphAttribute.count; j < jl; j++) {\n            _vector$8.fromBufferAttribute(morphAttribute, j);\n            if (morphTargetsRelative) {\n              _offset.fromBufferAttribute(position, j);\n              _vector$8.add(_offset);\n            }\n            maxRadiusSq = Math.max(maxRadiusSq, center.distanceToSquared(_vector$8));\n          }\n        }\n      }\n      this.boundingSphere.radius = Math.sqrt(maxRadiusSq);\n      if (isNaN(this.boundingSphere.radius)) {\n        console.error('THREE.BufferGeometry.computeBoundingSphere(): Computed radius is NaN. The \"position\" attribute is likely to have NaN values.', this);\n      }\n    }\n  }\n  computeTangents() {\n    const index2 = this.index;\n    const attributes = this.attributes;\n    if (index2 === null || attributes.position === void 0 || attributes.normal === void 0 || attributes.uv === void 0) {\n      console.error(\"THREE.BufferGeometry: .computeTangents() failed. Missing required attributes (index, position, normal or uv)\");\n      return;\n    }\n    const indices = index2.array;\n    const positions = attributes.position.array;\n    const normals = attributes.normal.array;\n    const uvs = attributes.uv.array;\n    const nVertices = positions.length / 3;\n    if (this.hasAttribute(\"tangent\") === false) {\n      this.setAttribute(\"tangent\", new BufferAttribute(new Float32Array(4 * nVertices), 4));\n    }\n    const tangents = this.getAttribute(\"tangent\").array;\n    const tan1 = [], tan2 = [];\n    for (let i = 0; i < nVertices; i++) {\n      tan1[i] = new Vector3();\n      tan2[i] = new Vector3();\n    }\n    const vA = new Vector3(), vB = new Vector3(), vC = new Vector3(), uvA = new Vector2(), uvB = new Vector2(), uvC = new Vector2(), sdir = new Vector3(), tdir = new Vector3();\n    function handleTriangle(a, b, c) {\n      vA.fromArray(positions, a * 3);\n      vB.fromArray(positions, b * 3);\n      vC.fromArray(positions, c * 3);\n      uvA.fromArray(uvs, a * 2);\n      uvB.fromArray(uvs, b * 2);\n      uvC.fromArray(uvs, c * 2);\n      vB.sub(vA);\n      vC.sub(vA);\n      uvB.sub(uvA);\n      uvC.sub(uvA);\n      const r = 1 / (uvB.x * uvC.y - uvC.x * uvB.y);\n      if (!isFinite(r))\n        return;\n      sdir.copy(vB).multiplyScalar(uvC.y).addScaledVector(vC, -uvB.y).multiplyScalar(r);\n      tdir.copy(vC).multiplyScalar(uvB.x).addScaledVector(vB, -uvC.x).multiplyScalar(r);\n      tan1[a].add(sdir);\n      tan1[b].add(sdir);\n      tan1[c].add(sdir);\n      tan2[a].add(tdir);\n      tan2[b].add(tdir);\n      tan2[c].add(tdir);\n    }\n    let groups = this.groups;\n    if (groups.length === 0) {\n      groups = [{\n        start: 0,\n        count: indices.length\n      }];\n    }\n    for (let i = 0, il = groups.length; i < il; ++i) {\n      const group = groups[i];\n      const start = group.start;\n      const count = group.count;\n      for (let j = start, jl = start + count; j < jl; j += 3) {\n        handleTriangle(indices[j + 0], indices[j + 1], indices[j + 2]);\n      }\n    }\n    const tmp2 = new Vector3(), tmp22 = new Vector3();\n    const n = new Vector3(), n2 = new Vector3();\n    function handleVertex(v) {\n      n.fromArray(normals, v * 3);\n      n2.copy(n);\n      const t = tan1[v];\n      tmp2.copy(t);\n      tmp2.sub(n.multiplyScalar(n.dot(t))).normalize();\n      tmp22.crossVectors(n2, t);\n      const test = tmp22.dot(tan2[v]);\n      const w = test < 0 ? -1 : 1;\n      tangents[v * 4] = tmp2.x;\n      tangents[v * 4 + 1] = tmp2.y;\n      tangents[v * 4 + 2] = tmp2.z;\n      tangents[v * 4 + 3] = w;\n    }\n    for (let i = 0, il = groups.length; i < il; ++i) {\n      const group = groups[i];\n      const start = group.start;\n      const count = group.count;\n      for (let j = start, jl = start + count; j < jl; j += 3) {\n        handleVertex(indices[j + 0]);\n        handleVertex(indices[j + 1]);\n        handleVertex(indices[j + 2]);\n      }\n    }\n  }\n  computeVertexNormals() {\n    const index2 = this.index;\n    const positionAttribute = this.getAttribute(\"position\");\n    if (positionAttribute !== void 0) {\n      let normalAttribute = this.getAttribute(\"normal\");\n      if (normalAttribute === void 0) {\n        normalAttribute = new BufferAttribute(new Float32Array(positionAttribute.count * 3), 3);\n        this.setAttribute(\"normal\", normalAttribute);\n      } else {\n        for (let i = 0, il = normalAttribute.count; i < il; i++) {\n          normalAttribute.setXYZ(i, 0, 0, 0);\n        }\n      }\n      const pA = new Vector3(), pB = new Vector3(), pC = new Vector3();\n      const nA = new Vector3(), nB = new Vector3(), nC = new Vector3();\n      const cb = new Vector3(), ab = new Vector3();\n      if (index2) {\n        for (let i = 0, il = index2.count; i < il; i += 3) {\n          const vA = index2.getX(i + 0);\n          const vB = index2.getX(i + 1);\n          const vC = index2.getX(i + 2);\n          pA.fromBufferAttribute(positionAttribute, vA);\n          pB.fromBufferAttribute(positionAttribute, vB);\n          pC.fromBufferAttribute(positionAttribute, vC);\n          cb.subVectors(pC, pB);\n          ab.subVectors(pA, pB);\n          cb.cross(ab);\n          nA.fromBufferAttribute(normalAttribute, vA);\n          nB.fromBufferAttribute(normalAttribute, vB);\n          nC.fromBufferAttribute(normalAttribute, vC);\n          nA.add(cb);\n          nB.add(cb);\n          nC.add(cb);\n          normalAttribute.setXYZ(vA, nA.x, nA.y, nA.z);\n          normalAttribute.setXYZ(vB, nB.x, nB.y, nB.z);\n          normalAttribute.setXYZ(vC, nC.x, nC.y, nC.z);\n        }\n      } else {\n        for (let i = 0, il = positionAttribute.count; i < il; i += 3) {\n          pA.fromBufferAttribute(positionAttribute, i + 0);\n          pB.fromBufferAttribute(positionAttribute, i + 1);\n          pC.fromBufferAttribute(positionAttribute, i + 2);\n          cb.subVectors(pC, pB);\n          ab.subVectors(pA, pB);\n          cb.cross(ab);\n          normalAttribute.setXYZ(i + 0, cb.x, cb.y, cb.z);\n          normalAttribute.setXYZ(i + 1, cb.x, cb.y, cb.z);\n          normalAttribute.setXYZ(i + 2, cb.x, cb.y, cb.z);\n        }\n      }\n      this.normalizeNormals();\n      normalAttribute.needsUpdate = true;\n    }\n  }\n  merge(geometry, offset) {\n    if (!(geometry && geometry.isBufferGeometry)) {\n      console.error(\"THREE.BufferGeometry.merge(): geometry not an instance of THREE.BufferGeometry.\", geometry);\n      return;\n    }\n    if (offset === void 0) {\n      offset = 0;\n      console.warn(\"THREE.BufferGeometry.merge(): Overwriting original geometry, starting at offset=0. Use BufferGeometryUtils.mergeBufferGeometries() for lossless merge.\");\n    }\n    const attributes = this.attributes;\n    for (const key in attributes) {\n      if (geometry.attributes[key] === void 0)\n        continue;\n      const attribute1 = attributes[key];\n      const attributeArray1 = attribute1.array;\n      const attribute2 = geometry.attributes[key];\n      const attributeArray2 = attribute2.array;\n      const attributeOffset = attribute2.itemSize * offset;\n      const length = Math.min(attributeArray2.length, attributeArray1.length - attributeOffset);\n      for (let i = 0, j = attributeOffset; i < length; i++, j++) {\n        attributeArray1[j] = attributeArray2[i];\n      }\n    }\n    return this;\n  }\n  normalizeNormals() {\n    const normals = this.attributes.normal;\n    for (let i = 0, il = normals.count; i < il; i++) {\n      _vector$8.fromBufferAttribute(normals, i);\n      _vector$8.normalize();\n      normals.setXYZ(i, _vector$8.x, _vector$8.y, _vector$8.z);\n    }\n  }\n  toNonIndexed() {\n    function convertBufferAttribute(attribute, indices2) {\n      const array = attribute.array;\n      const itemSize = attribute.itemSize;\n      const normalized = attribute.normalized;\n      const array2 = new array.constructor(indices2.length * itemSize);\n      let index2 = 0, index22 = 0;\n      for (let i = 0, l = indices2.length; i < l; i++) {\n        if (attribute.isInterleavedBufferAttribute) {\n          index2 = indices2[i] * attribute.data.stride + attribute.offset;\n        } else {\n          index2 = indices2[i] * itemSize;\n        }\n        for (let j = 0; j < itemSize; j++) {\n          array2[index22++] = array[index2++];\n        }\n      }\n      return new BufferAttribute(array2, itemSize, normalized);\n    }\n    if (this.index === null) {\n      console.warn(\"THREE.BufferGeometry.toNonIndexed(): BufferGeometry is already non-indexed.\");\n      return this;\n    }\n    const geometry2 = new BufferGeometry();\n    const indices = this.index.array;\n    const attributes = this.attributes;\n    for (const name in attributes) {\n      const attribute = attributes[name];\n      const newAttribute = convertBufferAttribute(attribute, indices);\n      geometry2.setAttribute(name, newAttribute);\n    }\n    const morphAttributes = this.morphAttributes;\n    for (const name in morphAttributes) {\n      const morphArray = [];\n      const morphAttribute = morphAttributes[name];\n      for (let i = 0, il = morphAttribute.length; i < il; i++) {\n        const attribute = morphAttribute[i];\n        const newAttribute = convertBufferAttribute(attribute, indices);\n        morphArray.push(newAttribute);\n      }\n      geometry2.morphAttributes[name] = morphArray;\n    }\n    geometry2.morphTargetsRelative = this.morphTargetsRelative;\n    const groups = this.groups;\n    for (let i = 0, l = groups.length; i < l; i++) {\n      const group = groups[i];\n      geometry2.addGroup(group.start, group.count, group.materialIndex);\n    }\n    return geometry2;\n  }\n  toJSON() {\n    const data = {\n      metadata: {\n        version: 4.5,\n        type: \"BufferGeometry\",\n        generator: \"BufferGeometry.toJSON\"\n      }\n    };\n    data.uuid = this.uuid;\n    data.type = this.type;\n    if (this.name !== \"\")\n      data.name = this.name;\n    if (Object.keys(this.userData).length > 0)\n      data.userData = this.userData;\n    if (this.parameters !== void 0) {\n      const parameters = this.parameters;\n      for (const key in parameters) {\n        if (parameters[key] !== void 0)\n          data[key] = parameters[key];\n      }\n      return data;\n    }\n    data.data = { attributes: {} };\n    const index2 = this.index;\n    if (index2 !== null) {\n      data.data.index = {\n        type: index2.array.constructor.name,\n        array: Array.prototype.slice.call(index2.array)\n      };\n    }\n    const attributes = this.attributes;\n    for (const key in attributes) {\n      const attribute = attributes[key];\n      data.data.attributes[key] = attribute.toJSON(data.data);\n    }\n    const morphAttributes = {};\n    let hasMorphAttributes = false;\n    for (const key in this.morphAttributes) {\n      const attributeArray = this.morphAttributes[key];\n      const array = [];\n      for (let i = 0, il = attributeArray.length; i < il; i++) {\n        const attribute = attributeArray[i];\n        array.push(attribute.toJSON(data.data));\n      }\n      if (array.length > 0) {\n        morphAttributes[key] = array;\n        hasMorphAttributes = true;\n      }\n    }\n    if (hasMorphAttributes) {\n      data.data.morphAttributes = morphAttributes;\n      data.data.morphTargetsRelative = this.morphTargetsRelative;\n    }\n    const groups = this.groups;\n    if (groups.length > 0) {\n      data.data.groups = JSON.parse(JSON.stringify(groups));\n    }\n    const boundingSphere = this.boundingSphere;\n    if (boundingSphere !== null) {\n      data.data.boundingSphere = {\n        center: boundingSphere.center.toArray(),\n        radius: boundingSphere.radius\n      };\n    }\n    return data;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  copy(source) {\n    this.index = null;\n    this.attributes = {};\n    this.morphAttributes = {};\n    this.groups = [];\n    this.boundingBox = null;\n    this.boundingSphere = null;\n    const data = {};\n    this.name = source.name;\n    const index2 = source.index;\n    if (index2 !== null) {\n      this.setIndex(index2.clone(data));\n    }\n    const attributes = source.attributes;\n    for (const name in attributes) {\n      const attribute = attributes[name];\n      this.setAttribute(name, attribute.clone(data));\n    }\n    const morphAttributes = source.morphAttributes;\n    for (const name in morphAttributes) {\n      const array = [];\n      const morphAttribute = morphAttributes[name];\n      for (let i = 0, l = morphAttribute.length; i < l; i++) {\n        array.push(morphAttribute[i].clone(data));\n      }\n      this.morphAttributes[name] = array;\n    }\n    this.morphTargetsRelative = source.morphTargetsRelative;\n    const groups = source.groups;\n    for (let i = 0, l = groups.length; i < l; i++) {\n      const group = groups[i];\n      this.addGroup(group.start, group.count, group.materialIndex);\n    }\n    const boundingBox = source.boundingBox;\n    if (boundingBox !== null) {\n      this.boundingBox = boundingBox.clone();\n    }\n    const boundingSphere = source.boundingSphere;\n    if (boundingSphere !== null) {\n      this.boundingSphere = boundingSphere.clone();\n    }\n    this.drawRange.start = source.drawRange.start;\n    this.drawRange.count = source.drawRange.count;\n    this.userData = source.userData;\n    if (source.parameters !== void 0)\n      this.parameters = Object.assign({}, source.parameters);\n    return this;\n  }\n  dispose() {\n    this.dispatchEvent({ type: \"dispose\" });\n  }\n}\nconst _inverseMatrix$2 = /* @__PURE__ */ new Matrix4();\nconst _ray$2 = /* @__PURE__ */ new Ray();\nconst _sphere$3 = /* @__PURE__ */ new Sphere();\nconst _vA$1 = /* @__PURE__ */ new Vector3();\nconst _vB$1 = /* @__PURE__ */ new Vector3();\nconst _vC$1 = /* @__PURE__ */ new Vector3();\nconst _tempA = /* @__PURE__ */ new Vector3();\nconst _tempB = /* @__PURE__ */ new Vector3();\nconst _tempC = /* @__PURE__ */ new Vector3();\nconst _morphA = /* @__PURE__ */ new Vector3();\nconst _morphB = /* @__PURE__ */ new Vector3();\nconst _morphC = /* @__PURE__ */ new Vector3();\nconst _uvA$1 = /* @__PURE__ */ new Vector2();\nconst _uvB$1 = /* @__PURE__ */ new Vector2();\nconst _uvC$1 = /* @__PURE__ */ new Vector2();\nconst _intersectionPoint = /* @__PURE__ */ new Vector3();\nconst _intersectionPointWorld = /* @__PURE__ */ new Vector3();\nclass Mesh extends Object3D {\n  constructor(geometry = new BufferGeometry(), material = new MeshBasicMaterial()) {\n    super();\n    this.isMesh = true;\n    this.type = \"Mesh\";\n    this.geometry = geometry;\n    this.material = material;\n    this.updateMorphTargets();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    if (source.morphTargetInfluences !== void 0) {\n      this.morphTargetInfluences = source.morphTargetInfluences.slice();\n    }\n    if (source.morphTargetDictionary !== void 0) {\n      this.morphTargetDictionary = Object.assign({}, source.morphTargetDictionary);\n    }\n    this.material = source.material;\n    this.geometry = source.geometry;\n    return this;\n  }\n  updateMorphTargets() {\n    const geometry = this.geometry;\n    const morphAttributes = geometry.morphAttributes;\n    const keys = Object.keys(morphAttributes);\n    if (keys.length > 0) {\n      const morphAttribute = morphAttributes[keys[0]];\n      if (morphAttribute !== void 0) {\n        this.morphTargetInfluences = [];\n        this.morphTargetDictionary = {};\n        for (let m = 0, ml = morphAttribute.length; m < ml; m++) {\n          const name = morphAttribute[m].name || String(m);\n          this.morphTargetInfluences.push(0);\n          this.morphTargetDictionary[name] = m;\n        }\n      }\n    }\n  }\n  raycast(raycaster, intersects2) {\n    const geometry = this.geometry;\n    const material = this.material;\n    const matrixWorld = this.matrixWorld;\n    if (material === void 0)\n      return;\n    if (geometry.boundingSphere === null)\n      geometry.computeBoundingSphere();\n    _sphere$3.copy(geometry.boundingSphere);\n    _sphere$3.applyMatrix4(matrixWorld);\n    if (raycaster.ray.intersectsSphere(_sphere$3) === false)\n      return;\n    _inverseMatrix$2.copy(matrixWorld).invert();\n    _ray$2.copy(raycaster.ray).applyMatrix4(_inverseMatrix$2);\n    if (geometry.boundingBox !== null) {\n      if (_ray$2.intersectsBox(geometry.boundingBox) === false)\n        return;\n    }\n    let intersection;\n    const index2 = geometry.index;\n    const position = geometry.attributes.position;\n    const morphPosition = geometry.morphAttributes.position;\n    const morphTargetsRelative = geometry.morphTargetsRelative;\n    const uv = geometry.attributes.uv;\n    const uv2 = geometry.attributes.uv2;\n    const groups = geometry.groups;\n    const drawRange = geometry.drawRange;\n    if (index2 !== null) {\n      if (Array.isArray(material)) {\n        for (let i = 0, il = groups.length; i < il; i++) {\n          const group = groups[i];\n          const groupMaterial = material[group.materialIndex];\n          const start = Math.max(group.start, drawRange.start);\n          const end = Math.min(index2.count, Math.min(group.start + group.count, drawRange.start + drawRange.count));\n          for (let j = start, jl = end; j < jl; j += 3) {\n            const a = index2.getX(j);\n            const b = index2.getX(j + 1);\n            const c = index2.getX(j + 2);\n            intersection = checkBufferGeometryIntersection(this, groupMaterial, raycaster, _ray$2, position, morphPosition, morphTargetsRelative, uv, uv2, a, b, c);\n            if (intersection) {\n              intersection.faceIndex = Math.floor(j / 3);\n              intersection.face.materialIndex = group.materialIndex;\n              intersects2.push(intersection);\n            }\n          }\n        }\n      } else {\n        const start = Math.max(0, drawRange.start);\n        const end = Math.min(index2.count, drawRange.start + drawRange.count);\n        for (let i = start, il = end; i < il; i += 3) {\n          const a = index2.getX(i);\n          const b = index2.getX(i + 1);\n          const c = index2.getX(i + 2);\n          intersection = checkBufferGeometryIntersection(this, material, raycaster, _ray$2, position, morphPosition, morphTargetsRelative, uv, uv2, a, b, c);\n          if (intersection) {\n            intersection.faceIndex = Math.floor(i / 3);\n            intersects2.push(intersection);\n          }\n        }\n      }\n    } else if (position !== void 0) {\n      if (Array.isArray(material)) {\n        for (let i = 0, il = groups.length; i < il; i++) {\n          const group = groups[i];\n          const groupMaterial = material[group.materialIndex];\n          const start = Math.max(group.start, drawRange.start);\n          const end = Math.min(position.count, Math.min(group.start + group.count, drawRange.start + drawRange.count));\n          for (let j = start, jl = end; j < jl; j += 3) {\n            const a = j;\n            const b = j + 1;\n            const c = j + 2;\n            intersection = checkBufferGeometryIntersection(this, groupMaterial, raycaster, _ray$2, position, morphPosition, morphTargetsRelative, uv, uv2, a, b, c);\n            if (intersection) {\n              intersection.faceIndex = Math.floor(j / 3);\n              intersection.face.materialIndex = group.materialIndex;\n              intersects2.push(intersection);\n            }\n          }\n        }\n      } else {\n        const start = Math.max(0, drawRange.start);\n        const end = Math.min(position.count, drawRange.start + drawRange.count);\n        for (let i = start, il = end; i < il; i += 3) {\n          const a = i;\n          const b = i + 1;\n          const c = i + 2;\n          intersection = checkBufferGeometryIntersection(this, material, raycaster, _ray$2, position, morphPosition, morphTargetsRelative, uv, uv2, a, b, c);\n          if (intersection) {\n            intersection.faceIndex = Math.floor(i / 3);\n            intersects2.push(intersection);\n          }\n        }\n      }\n    }\n  }\n}\nfunction checkIntersection(object, material, raycaster, ray, pA, pB, pC, point) {\n  let intersect;\n  if (material.side === BackSide) {\n    intersect = ray.intersectTriangle(pC, pB, pA, true, point);\n  } else {\n    intersect = ray.intersectTriangle(pA, pB, pC, material.side !== DoubleSide, point);\n  }\n  if (intersect === null)\n    return null;\n  _intersectionPointWorld.copy(point);\n  _intersectionPointWorld.applyMatrix4(object.matrixWorld);\n  const distance = raycaster.ray.origin.distanceTo(_intersectionPointWorld);\n  if (distance < raycaster.near || distance > raycaster.far)\n    return null;\n  return {\n    distance,\n    point: _intersectionPointWorld.clone(),\n    object\n  };\n}\nfunction checkBufferGeometryIntersection(object, material, raycaster, ray, position, morphPosition, morphTargetsRelative, uv, uv2, a, b, c) {\n  _vA$1.fromBufferAttribute(position, a);\n  _vB$1.fromBufferAttribute(position, b);\n  _vC$1.fromBufferAttribute(position, c);\n  const morphInfluences = object.morphTargetInfluences;\n  if (morphPosition && morphInfluences) {\n    _morphA.set(0, 0, 0);\n    _morphB.set(0, 0, 0);\n    _morphC.set(0, 0, 0);\n    for (let i = 0, il = morphPosition.length; i < il; i++) {\n      const influence = morphInfluences[i];\n      const morphAttribute = morphPosition[i];\n      if (influence === 0)\n        continue;\n      _tempA.fromBufferAttribute(morphAttribute, a);\n      _tempB.fromBufferAttribute(morphAttribute, b);\n      _tempC.fromBufferAttribute(morphAttribute, c);\n      if (morphTargetsRelative) {\n        _morphA.addScaledVector(_tempA, influence);\n        _morphB.addScaledVector(_tempB, influence);\n        _morphC.addScaledVector(_tempC, influence);\n      } else {\n        _morphA.addScaledVector(_tempA.sub(_vA$1), influence);\n        _morphB.addScaledVector(_tempB.sub(_vB$1), influence);\n        _morphC.addScaledVector(_tempC.sub(_vC$1), influence);\n      }\n    }\n    _vA$1.add(_morphA);\n    _vB$1.add(_morphB);\n    _vC$1.add(_morphC);\n  }\n  if (object.isSkinnedMesh) {\n    object.boneTransform(a, _vA$1);\n    object.boneTransform(b, _vB$1);\n    object.boneTransform(c, _vC$1);\n  }\n  const intersection = checkIntersection(object, material, raycaster, ray, _vA$1, _vB$1, _vC$1, _intersectionPoint);\n  if (intersection) {\n    if (uv) {\n      _uvA$1.fromBufferAttribute(uv, a);\n      _uvB$1.fromBufferAttribute(uv, b);\n      _uvC$1.fromBufferAttribute(uv, c);\n      intersection.uv = Triangle.getUV(_intersectionPoint, _vA$1, _vB$1, _vC$1, _uvA$1, _uvB$1, _uvC$1, new Vector2());\n    }\n    if (uv2) {\n      _uvA$1.fromBufferAttribute(uv2, a);\n      _uvB$1.fromBufferAttribute(uv2, b);\n      _uvC$1.fromBufferAttribute(uv2, c);\n      intersection.uv2 = Triangle.getUV(_intersectionPoint, _vA$1, _vB$1, _vC$1, _uvA$1, _uvB$1, _uvC$1, new Vector2());\n    }\n    const face = {\n      a,\n      b,\n      c,\n      normal: new Vector3(),\n      materialIndex: 0\n    };\n    Triangle.getNormal(_vA$1, _vB$1, _vC$1, face.normal);\n    intersection.face = face;\n  }\n  return intersection;\n}\nclass BoxGeometry extends BufferGeometry {\n  constructor(width = 1, height = 1, depth = 1, widthSegments = 1, heightSegments = 1, depthSegments = 1) {\n    super();\n    this.type = \"BoxGeometry\";\n    this.parameters = {\n      width,\n      height,\n      depth,\n      widthSegments,\n      heightSegments,\n      depthSegments\n    };\n    const scope = this;\n    widthSegments = Math.floor(widthSegments);\n    heightSegments = Math.floor(heightSegments);\n    depthSegments = Math.floor(depthSegments);\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    let numberOfVertices = 0;\n    let groupStart = 0;\n    buildPlane(\"z\", \"y\", \"x\", -1, -1, depth, height, width, depthSegments, heightSegments, 0);\n    buildPlane(\"z\", \"y\", \"x\", 1, -1, depth, height, -width, depthSegments, heightSegments, 1);\n    buildPlane(\"x\", \"z\", \"y\", 1, 1, width, depth, height, widthSegments, depthSegments, 2);\n    buildPlane(\"x\", \"z\", \"y\", 1, -1, width, depth, -height, widthSegments, depthSegments, 3);\n    buildPlane(\"x\", \"y\", \"z\", 1, -1, width, height, depth, widthSegments, heightSegments, 4);\n    buildPlane(\"x\", \"y\", \"z\", -1, -1, width, height, -depth, widthSegments, heightSegments, 5);\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n    function buildPlane(u, v, w, udir, vdir, width2, height2, depth2, gridX, gridY, materialIndex) {\n      const segmentWidth = width2 / gridX;\n      const segmentHeight = height2 / gridY;\n      const widthHalf = width2 / 2;\n      const heightHalf = height2 / 2;\n      const depthHalf = depth2 / 2;\n      const gridX1 = gridX + 1;\n      const gridY1 = gridY + 1;\n      let vertexCounter = 0;\n      let groupCount = 0;\n      const vector = new Vector3();\n      for (let iy = 0; iy < gridY1; iy++) {\n        const y = iy * segmentHeight - heightHalf;\n        for (let ix = 0; ix < gridX1; ix++) {\n          const x = ix * segmentWidth - widthHalf;\n          vector[u] = x * udir;\n          vector[v] = y * vdir;\n          vector[w] = depthHalf;\n          vertices.push(vector.x, vector.y, vector.z);\n          vector[u] = 0;\n          vector[v] = 0;\n          vector[w] = depth2 > 0 ? 1 : -1;\n          normals.push(vector.x, vector.y, vector.z);\n          uvs.push(ix / gridX);\n          uvs.push(1 - iy / gridY);\n          vertexCounter += 1;\n        }\n      }\n      for (let iy = 0; iy < gridY; iy++) {\n        for (let ix = 0; ix < gridX; ix++) {\n          const a = numberOfVertices + ix + gridX1 * iy;\n          const b = numberOfVertices + ix + gridX1 * (iy + 1);\n          const c = numberOfVertices + (ix + 1) + gridX1 * (iy + 1);\n          const d = numberOfVertices + (ix + 1) + gridX1 * iy;\n          indices.push(a, b, d);\n          indices.push(b, c, d);\n          groupCount += 6;\n        }\n      }\n      scope.addGroup(groupStart, groupCount, materialIndex);\n      groupStart += groupCount;\n      numberOfVertices += vertexCounter;\n    }\n  }\n  static fromJSON(data) {\n    return new BoxGeometry(data.width, data.height, data.depth, data.widthSegments, data.heightSegments, data.depthSegments);\n  }\n}\nfunction cloneUniforms(src) {\n  const dst = {};\n  for (const u in src) {\n    dst[u] = {};\n    for (const p in src[u]) {\n      const property = src[u][p];\n      if (property && (property.isColor || property.isMatrix3 || property.isMatrix4 || property.isVector2 || property.isVector3 || property.isVector4 || property.isTexture || property.isQuaternion)) {\n        dst[u][p] = property.clone();\n      } else if (Array.isArray(property)) {\n        dst[u][p] = property.slice();\n      } else {\n        dst[u][p] = property;\n      }\n    }\n  }\n  return dst;\n}\nfunction mergeUniforms(uniforms) {\n  const merged = {};\n  for (let u = 0; u < uniforms.length; u++) {\n    const tmp2 = cloneUniforms(uniforms[u]);\n    for (const p in tmp2) {\n      merged[p] = tmp2[p];\n    }\n  }\n  return merged;\n}\nfunction cloneUniformsGroups(src) {\n  const dst = [];\n  for (let u = 0; u < src.length; u++) {\n    dst.push(src[u].clone());\n  }\n  return dst;\n}\nconst UniformsUtils = { clone: cloneUniforms, merge: mergeUniforms };\nvar default_vertex = \"void main() {\\n\tgl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\\n}\";\nvar default_fragment = \"void main() {\\n\tgl_FragColor = vec4( 1.0, 0.0, 0.0, 1.0 );\\n}\";\nclass ShaderMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isShaderMaterial = true;\n    this.type = \"ShaderMaterial\";\n    this.defines = {};\n    this.uniforms = {};\n    this.uniformsGroups = [];\n    this.vertexShader = default_vertex;\n    this.fragmentShader = default_fragment;\n    this.linewidth = 1;\n    this.wireframe = false;\n    this.wireframeLinewidth = 1;\n    this.fog = false;\n    this.lights = false;\n    this.clipping = false;\n    this.extensions = {\n      derivatives: false,\n      fragDepth: false,\n      drawBuffers: false,\n      shaderTextureLOD: false\n    };\n    this.defaultAttributeValues = {\n      \"color\": [1, 1, 1],\n      \"uv\": [0, 0],\n      \"uv2\": [0, 0]\n    };\n    this.index0AttributeName = void 0;\n    this.uniformsNeedUpdate = false;\n    this.glslVersion = null;\n    if (parameters !== void 0) {\n      if (parameters.attributes !== void 0) {\n        console.error(\"THREE.ShaderMaterial: attributes should now be defined in THREE.BufferGeometry instead.\");\n      }\n      this.setValues(parameters);\n    }\n  }\n  copy(source) {\n    super.copy(source);\n    this.fragmentShader = source.fragmentShader;\n    this.vertexShader = source.vertexShader;\n    this.uniforms = cloneUniforms(source.uniforms);\n    this.uniformsGroups = cloneUniformsGroups(source.uniformsGroups);\n    this.defines = Object.assign({}, source.defines);\n    this.wireframe = source.wireframe;\n    this.wireframeLinewidth = source.wireframeLinewidth;\n    this.fog = source.fog;\n    this.lights = source.lights;\n    this.clipping = source.clipping;\n    this.extensions = Object.assign({}, source.extensions);\n    this.glslVersion = source.glslVersion;\n    return this;\n  }\n  toJSON(meta) {\n    const data = super.toJSON(meta);\n    data.glslVersion = this.glslVersion;\n    data.uniforms = {};\n    for (const name in this.uniforms) {\n      const uniform = this.uniforms[name];\n      const value = uniform.value;\n      if (value && value.isTexture) {\n        data.uniforms[name] = {\n          type: \"t\",\n          value: value.toJSON(meta).uuid\n        };\n      } else if (value && value.isColor) {\n        data.uniforms[name] = {\n          type: \"c\",\n          value: value.getHex()\n        };\n      } else if (value && value.isVector2) {\n        data.uniforms[name] = {\n          type: \"v2\",\n          value: value.toArray()\n        };\n      } else if (value && value.isVector3) {\n        data.uniforms[name] = {\n          type: \"v3\",\n          value: value.toArray()\n        };\n      } else if (value && value.isVector4) {\n        data.uniforms[name] = {\n          type: \"v4\",\n          value: value.toArray()\n        };\n      } else if (value && value.isMatrix3) {\n        data.uniforms[name] = {\n          type: \"m3\",\n          value: value.toArray()\n        };\n      } else if (value && value.isMatrix4) {\n        data.uniforms[name] = {\n          type: \"m4\",\n          value: value.toArray()\n        };\n      } else {\n        data.uniforms[name] = {\n          value\n        };\n      }\n    }\n    if (Object.keys(this.defines).length > 0)\n      data.defines = this.defines;\n    data.vertexShader = this.vertexShader;\n    data.fragmentShader = this.fragmentShader;\n    const extensions = {};\n    for (const key in this.extensions) {\n      if (this.extensions[key] === true)\n        extensions[key] = true;\n    }\n    if (Object.keys(extensions).length > 0)\n      data.extensions = extensions;\n    return data;\n  }\n}\nclass Camera extends Object3D {\n  constructor() {\n    super();\n    this.isCamera = true;\n    this.type = \"Camera\";\n    this.matrixWorldInverse = new Matrix4();\n    this.projectionMatrix = new Matrix4();\n    this.projectionMatrixInverse = new Matrix4();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.matrixWorldInverse.copy(source.matrixWorldInverse);\n    this.projectionMatrix.copy(source.projectionMatrix);\n    this.projectionMatrixInverse.copy(source.projectionMatrixInverse);\n    return this;\n  }\n  getWorldDirection(target) {\n    this.updateWorldMatrix(true, false);\n    const e = this.matrixWorld.elements;\n    return target.set(-e[8], -e[9], -e[10]).normalize();\n  }\n  updateMatrixWorld(force) {\n    super.updateMatrixWorld(force);\n    this.matrixWorldInverse.copy(this.matrixWorld).invert();\n  }\n  updateWorldMatrix(updateParents, updateChildren) {\n    super.updateWorldMatrix(updateParents, updateChildren);\n    this.matrixWorldInverse.copy(this.matrixWorld).invert();\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nclass PerspectiveCamera extends Camera {\n  constructor(fov2 = 50, aspect2 = 1, near = 0.1, far = 2e3) {\n    super();\n    this.isPerspectiveCamera = true;\n    this.type = \"PerspectiveCamera\";\n    this.fov = fov2;\n    this.zoom = 1;\n    this.near = near;\n    this.far = far;\n    this.focus = 10;\n    this.aspect = aspect2;\n    this.view = null;\n    this.filmGauge = 35;\n    this.filmOffset = 0;\n    this.updateProjectionMatrix();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.fov = source.fov;\n    this.zoom = source.zoom;\n    this.near = source.near;\n    this.far = source.far;\n    this.focus = source.focus;\n    this.aspect = source.aspect;\n    this.view = source.view === null ? null : Object.assign({}, source.view);\n    this.filmGauge = source.filmGauge;\n    this.filmOffset = source.filmOffset;\n    return this;\n  }\n  setFocalLength(focalLength) {\n    const vExtentSlope = 0.5 * this.getFilmHeight() / focalLength;\n    this.fov = RAD2DEG * 2 * Math.atan(vExtentSlope);\n    this.updateProjectionMatrix();\n  }\n  getFocalLength() {\n    const vExtentSlope = Math.tan(DEG2RAD * 0.5 * this.fov);\n    return 0.5 * this.getFilmHeight() / vExtentSlope;\n  }\n  getEffectiveFOV() {\n    return RAD2DEG * 2 * Math.atan(Math.tan(DEG2RAD * 0.5 * this.fov) / this.zoom);\n  }\n  getFilmWidth() {\n    return this.filmGauge * Math.min(this.aspect, 1);\n  }\n  getFilmHeight() {\n    return this.filmGauge / Math.max(this.aspect, 1);\n  }\n  setViewOffset(fullWidth, fullHeight, x, y, width, height) {\n    this.aspect = fullWidth / fullHeight;\n    if (this.view === null) {\n      this.view = {\n        enabled: true,\n        fullWidth: 1,\n        fullHeight: 1,\n        offsetX: 0,\n        offsetY: 0,\n        width: 1,\n        height: 1\n      };\n    }\n    this.view.enabled = true;\n    this.view.fullWidth = fullWidth;\n    this.view.fullHeight = fullHeight;\n    this.view.offsetX = x;\n    this.view.offsetY = y;\n    this.view.width = width;\n    this.view.height = height;\n    this.updateProjectionMatrix();\n  }\n  clearViewOffset() {\n    if (this.view !== null) {\n      this.view.enabled = false;\n    }\n    this.updateProjectionMatrix();\n  }\n  updateProjectionMatrix() {\n    const near = this.near;\n    let top = near * Math.tan(DEG2RAD * 0.5 * this.fov) / this.zoom;\n    let height = 2 * top;\n    let width = this.aspect * height;\n    let left = -0.5 * width;\n    const view = this.view;\n    if (this.view !== null && this.view.enabled) {\n      const fullWidth = view.fullWidth, fullHeight = view.fullHeight;\n      left += view.offsetX * width / fullWidth;\n      top -= view.offsetY * height / fullHeight;\n      width *= view.width / fullWidth;\n      height *= view.height / fullHeight;\n    }\n    const skew = this.filmOffset;\n    if (skew !== 0)\n      left += near * skew / this.getFilmWidth();\n    this.projectionMatrix.makePerspective(left, left + width, top, top - height, near, this.far);\n    this.projectionMatrixInverse.copy(this.projectionMatrix).invert();\n  }\n  toJSON(meta) {\n    const data = super.toJSON(meta);\n    data.object.fov = this.fov;\n    data.object.zoom = this.zoom;\n    data.object.near = this.near;\n    data.object.far = this.far;\n    data.object.focus = this.focus;\n    data.object.aspect = this.aspect;\n    if (this.view !== null)\n      data.object.view = Object.assign({}, this.view);\n    data.object.filmGauge = this.filmGauge;\n    data.object.filmOffset = this.filmOffset;\n    return data;\n  }\n}\nconst fov = 90, aspect = 1;\nclass CubeCamera extends Object3D {\n  constructor(near, far, renderTarget) {\n    super();\n    this.type = \"CubeCamera\";\n    if (renderTarget.isWebGLCubeRenderTarget !== true) {\n      console.error(\"THREE.CubeCamera: The constructor now expects an instance of WebGLCubeRenderTarget as third parameter.\");\n      return;\n    }\n    this.renderTarget = renderTarget;\n    const cameraPX = new PerspectiveCamera(fov, aspect, near, far);\n    cameraPX.layers = this.layers;\n    cameraPX.up.set(0, -1, 0);\n    cameraPX.lookAt(new Vector3(1, 0, 0));\n    this.add(cameraPX);\n    const cameraNX = new PerspectiveCamera(fov, aspect, near, far);\n    cameraNX.layers = this.layers;\n    cameraNX.up.set(0, -1, 0);\n    cameraNX.lookAt(new Vector3(-1, 0, 0));\n    this.add(cameraNX);\n    const cameraPY = new PerspectiveCamera(fov, aspect, near, far);\n    cameraPY.layers = this.layers;\n    cameraPY.up.set(0, 0, 1);\n    cameraPY.lookAt(new Vector3(0, 1, 0));\n    this.add(cameraPY);\n    const cameraNY = new PerspectiveCamera(fov, aspect, near, far);\n    cameraNY.layers = this.layers;\n    cameraNY.up.set(0, 0, -1);\n    cameraNY.lookAt(new Vector3(0, -1, 0));\n    this.add(cameraNY);\n    const cameraPZ = new PerspectiveCamera(fov, aspect, near, far);\n    cameraPZ.layers = this.layers;\n    cameraPZ.up.set(0, -1, 0);\n    cameraPZ.lookAt(new Vector3(0, 0, 1));\n    this.add(cameraPZ);\n    const cameraNZ = new PerspectiveCamera(fov, aspect, near, far);\n    cameraNZ.layers = this.layers;\n    cameraNZ.up.set(0, -1, 0);\n    cameraNZ.lookAt(new Vector3(0, 0, -1));\n    this.add(cameraNZ);\n  }\n  update(renderer, scene) {\n    if (this.parent === null)\n      this.updateMatrixWorld();\n    const renderTarget = this.renderTarget;\n    const [cameraPX, cameraNX, cameraPY, cameraNY, cameraPZ, cameraNZ] = this.children;\n    const currentRenderTarget = renderer.getRenderTarget();\n    const currentToneMapping = renderer.toneMapping;\n    const currentXrEnabled = renderer.xr.enabled;\n    renderer.toneMapping = NoToneMapping;\n    renderer.xr.enabled = false;\n    const generateMipmaps = renderTarget.texture.generateMipmaps;\n    renderTarget.texture.generateMipmaps = false;\n    renderer.setRenderTarget(renderTarget, 0);\n    renderer.render(scene, cameraPX);\n    renderer.setRenderTarget(renderTarget, 1);\n    renderer.render(scene, cameraNX);\n    renderer.setRenderTarget(renderTarget, 2);\n    renderer.render(scene, cameraPY);\n    renderer.setRenderTarget(renderTarget, 3);\n    renderer.render(scene, cameraNY);\n    renderer.setRenderTarget(renderTarget, 4);\n    renderer.render(scene, cameraPZ);\n    renderTarget.texture.generateMipmaps = generateMipmaps;\n    renderer.setRenderTarget(renderTarget, 5);\n    renderer.render(scene, cameraNZ);\n    renderer.setRenderTarget(currentRenderTarget);\n    renderer.toneMapping = currentToneMapping;\n    renderer.xr.enabled = currentXrEnabled;\n    renderTarget.texture.needsPMREMUpdate = true;\n  }\n}\nclass CubeTexture extends Texture {\n  constructor(images, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy, encoding) {\n    images = images !== void 0 ? images : [];\n    mapping = mapping !== void 0 ? mapping : CubeReflectionMapping;\n    super(images, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy, encoding);\n    this.isCubeTexture = true;\n    this.flipY = false;\n  }\n  get images() {\n    return this.image;\n  }\n  set images(value) {\n    this.image = value;\n  }\n}\nclass WebGLCubeRenderTarget extends WebGLRenderTarget {\n  constructor(size, options = {}) {\n    super(size, size, options);\n    this.isWebGLCubeRenderTarget = true;\n    const image = { width: size, height: size, depth: 1 };\n    const images = [image, image, image, image, image, image];\n    this.texture = new CubeTexture(images, options.mapping, options.wrapS, options.wrapT, options.magFilter, options.minFilter, options.format, options.type, options.anisotropy, options.encoding);\n    this.texture.isRenderTargetTexture = true;\n    this.texture.generateMipmaps = options.generateMipmaps !== void 0 ? options.generateMipmaps : false;\n    this.texture.minFilter = options.minFilter !== void 0 ? options.minFilter : LinearFilter;\n  }\n  fromEquirectangularTexture(renderer, texture) {\n    this.texture.type = texture.type;\n    this.texture.encoding = texture.encoding;\n    this.texture.generateMipmaps = texture.generateMipmaps;\n    this.texture.minFilter = texture.minFilter;\n    this.texture.magFilter = texture.magFilter;\n    const shader = {\n      uniforms: {\n        tEquirect: { value: null }\n      },\n      vertexShader: `\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\tvec3 transformDirection( in vec3 dir, in mat4 matrix ) {\n\n\t\t\t\t\treturn normalize( ( matrix * vec4( dir, 0.0 ) ).xyz );\n\n\t\t\t\t}\n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvWorldDirection = transformDirection( position, modelMatrix );\n\n\t\t\t\t\t#include <begin_vertex>\n\t\t\t\t\t#include <project_vertex>\n\n\t\t\t\t}\n\t\t\t`,\n      fragmentShader: `\n\n\t\t\t\tuniform sampler2D tEquirect;\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\t#include <common>\n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvec3 direction = normalize( vWorldDirection );\n\n\t\t\t\t\tvec2 sampleUV = equirectUv( direction );\n\n\t\t\t\t\tgl_FragColor = texture2D( tEquirect, sampleUV );\n\n\t\t\t\t}\n\t\t\t`\n    };\n    const geometry = new BoxGeometry(5, 5, 5);\n    const material = new ShaderMaterial({\n      name: \"CubemapFromEquirect\",\n      uniforms: cloneUniforms(shader.uniforms),\n      vertexShader: shader.vertexShader,\n      fragmentShader: shader.fragmentShader,\n      side: BackSide,\n      blending: NoBlending\n    });\n    material.uniforms.tEquirect.value = texture;\n    const mesh = new Mesh(geometry, material);\n    const currentMinFilter = texture.minFilter;\n    if (texture.minFilter === LinearMipmapLinearFilter)\n      texture.minFilter = LinearFilter;\n    const camera = new CubeCamera(1, 10, this);\n    camera.update(renderer, mesh);\n    texture.minFilter = currentMinFilter;\n    mesh.geometry.dispose();\n    mesh.material.dispose();\n    return this;\n  }\n  clear(renderer, color, depth, stencil) {\n    const currentRenderTarget = renderer.getRenderTarget();\n    for (let i = 0; i < 6; i++) {\n      renderer.setRenderTarget(this, i);\n      renderer.clear(color, depth, stencil);\n    }\n    renderer.setRenderTarget(currentRenderTarget);\n  }\n}\nconst _vector1 = /* @__PURE__ */ new Vector3();\nconst _vector2 = /* @__PURE__ */ new Vector3();\nconst _normalMatrix = /* @__PURE__ */ new Matrix3();\nclass Plane {\n  constructor(normal = new Vector3(1, 0, 0), constant = 0) {\n    this.isPlane = true;\n    this.normal = normal;\n    this.constant = constant;\n  }\n  set(normal, constant) {\n    this.normal.copy(normal);\n    this.constant = constant;\n    return this;\n  }\n  setComponents(x, y, z, w) {\n    this.normal.set(x, y, z);\n    this.constant = w;\n    return this;\n  }\n  setFromNormalAndCoplanarPoint(normal, point) {\n    this.normal.copy(normal);\n    this.constant = -point.dot(this.normal);\n    return this;\n  }\n  setFromCoplanarPoints(a, b, c) {\n    const normal = _vector1.subVectors(c, b).cross(_vector2.subVectors(a, b)).normalize();\n    this.setFromNormalAndCoplanarPoint(normal, a);\n    return this;\n  }\n  copy(plane) {\n    this.normal.copy(plane.normal);\n    this.constant = plane.constant;\n    return this;\n  }\n  normalize() {\n    const inverseNormalLength = 1 / this.normal.length();\n    this.normal.multiplyScalar(inverseNormalLength);\n    this.constant *= inverseNormalLength;\n    return this;\n  }\n  negate() {\n    this.constant *= -1;\n    this.normal.negate();\n    return this;\n  }\n  distanceToPoint(point) {\n    return this.normal.dot(point) + this.constant;\n  }\n  distanceToSphere(sphere) {\n    return this.distanceToPoint(sphere.center) - sphere.radius;\n  }\n  projectPoint(point, target) {\n    return target.copy(this.normal).multiplyScalar(-this.distanceToPoint(point)).add(point);\n  }\n  intersectLine(line, target) {\n    const direction = line.delta(_vector1);\n    const denominator = this.normal.dot(direction);\n    if (denominator === 0) {\n      if (this.distanceToPoint(line.start) === 0) {\n        return target.copy(line.start);\n      }\n      return null;\n    }\n    const t = -(line.start.dot(this.normal) + this.constant) / denominator;\n    if (t < 0 || t > 1) {\n      return null;\n    }\n    return target.copy(direction).multiplyScalar(t).add(line.start);\n  }\n  intersectsLine(line) {\n    const startSign = this.distanceToPoint(line.start);\n    const endSign = this.distanceToPoint(line.end);\n    return startSign < 0 && endSign > 0 || endSign < 0 && startSign > 0;\n  }\n  intersectsBox(box2) {\n    return box2.intersectsPlane(this);\n  }\n  intersectsSphere(sphere) {\n    return sphere.intersectsPlane(this);\n  }\n  coplanarPoint(target) {\n    return target.copy(this.normal).multiplyScalar(-this.constant);\n  }\n  applyMatrix4(matrix, optionalNormalMatrix) {\n    const normalMatrix = optionalNormalMatrix || _normalMatrix.getNormalMatrix(matrix);\n    const referencePoint = this.coplanarPoint(_vector1).applyMatrix4(matrix);\n    const normal = this.normal.applyMatrix3(normalMatrix).normalize();\n    this.constant = -referencePoint.dot(normal);\n    return this;\n  }\n  translate(offset) {\n    this.constant -= offset.dot(this.normal);\n    return this;\n  }\n  equals(plane) {\n    return plane.normal.equals(this.normal) && plane.constant === this.constant;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nconst _sphere$2 = /* @__PURE__ */ new Sphere();\nconst _vector$7 = /* @__PURE__ */ new Vector3();\nclass Frustum {\n  constructor(p0 = new Plane(), p1 = new Plane(), p2 = new Plane(), p3 = new Plane(), p4 = new Plane(), p5 = new Plane()) {\n    this.planes = [p0, p1, p2, p3, p4, p5];\n  }\n  set(p0, p1, p2, p3, p4, p5) {\n    const planes = this.planes;\n    planes[0].copy(p0);\n    planes[1].copy(p1);\n    planes[2].copy(p2);\n    planes[3].copy(p3);\n    planes[4].copy(p4);\n    planes[5].copy(p5);\n    return this;\n  }\n  copy(frustum) {\n    const planes = this.planes;\n    for (let i = 0; i < 6; i++) {\n      planes[i].copy(frustum.planes[i]);\n    }\n    return this;\n  }\n  setFromProjectionMatrix(m) {\n    const planes = this.planes;\n    const me = m.elements;\n    const me0 = me[0], me1 = me[1], me2 = me[2], me3 = me[3];\n    const me4 = me[4], me5 = me[5], me6 = me[6], me7 = me[7];\n    const me8 = me[8], me9 = me[9], me10 = me[10], me11 = me[11];\n    const me12 = me[12], me13 = me[13], me14 = me[14], me15 = me[15];\n    planes[0].setComponents(me3 - me0, me7 - me4, me11 - me8, me15 - me12).normalize();\n    planes[1].setComponents(me3 + me0, me7 + me4, me11 + me8, me15 + me12).normalize();\n    planes[2].setComponents(me3 + me1, me7 + me5, me11 + me9, me15 + me13).normalize();\n    planes[3].setComponents(me3 - me1, me7 - me5, me11 - me9, me15 - me13).normalize();\n    planes[4].setComponents(me3 - me2, me7 - me6, me11 - me10, me15 - me14).normalize();\n    planes[5].setComponents(me3 + me2, me7 + me6, me11 + me10, me15 + me14).normalize();\n    return this;\n  }\n  intersectsObject(object) {\n    const geometry = object.geometry;\n    if (geometry.boundingSphere === null)\n      geometry.computeBoundingSphere();\n    _sphere$2.copy(geometry.boundingSphere).applyMatrix4(object.matrixWorld);\n    return this.intersectsSphere(_sphere$2);\n  }\n  intersectsSprite(sprite) {\n    _sphere$2.center.set(0, 0, 0);\n    _sphere$2.radius = 0.7071067811865476;\n    _sphere$2.applyMatrix4(sprite.matrixWorld);\n    return this.intersectsSphere(_sphere$2);\n  }\n  intersectsSphere(sphere) {\n    const planes = this.planes;\n    const center = sphere.center;\n    const negRadius = -sphere.radius;\n    for (let i = 0; i < 6; i++) {\n      const distance = planes[i].distanceToPoint(center);\n      if (distance < negRadius) {\n        return false;\n      }\n    }\n    return true;\n  }\n  intersectsBox(box2) {\n    const planes = this.planes;\n    for (let i = 0; i < 6; i++) {\n      const plane = planes[i];\n      _vector$7.x = plane.normal.x > 0 ? box2.max.x : box2.min.x;\n      _vector$7.y = plane.normal.y > 0 ? box2.max.y : box2.min.y;\n      _vector$7.z = plane.normal.z > 0 ? box2.max.z : box2.min.z;\n      if (plane.distanceToPoint(_vector$7) < 0) {\n        return false;\n      }\n    }\n    return true;\n  }\n  containsPoint(point) {\n    const planes = this.planes;\n    for (let i = 0; i < 6; i++) {\n      if (planes[i].distanceToPoint(point) < 0) {\n        return false;\n      }\n    }\n    return true;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nfunction WebGLAnimation() {\n  let context = null;\n  let isAnimating = false;\n  let animationLoop = null;\n  let requestId = null;\n  function onAnimationFrame(time, frame) {\n    animationLoop(time, frame);\n    requestId = context.requestAnimationFrame(onAnimationFrame);\n  }\n  return {\n    start: function() {\n      if (isAnimating === true)\n        return;\n      if (animationLoop === null)\n        return;\n      requestId = context.requestAnimationFrame(onAnimationFrame);\n      isAnimating = true;\n    },\n    stop: function() {\n      context.cancelAnimationFrame(requestId);\n      isAnimating = false;\n    },\n    setAnimationLoop: function(callback) {\n      animationLoop = callback;\n    },\n    setContext: function(value) {\n      context = value;\n    }\n  };\n}\nfunction WebGLAttributes(gl, capabilities) {\n  const isWebGL2 = capabilities.isWebGL2;\n  const buffers = /* @__PURE__ */ new WeakMap();\n  function createBuffer(attribute, bufferType) {\n    const array = attribute.array;\n    const usage = attribute.usage;\n    const buffer = gl.createBuffer();\n    gl.bindBuffer(bufferType, buffer);\n    gl.bufferData(bufferType, array, usage);\n    attribute.onUploadCallback();\n    let type;\n    if (array instanceof Float32Array) {\n      type = 5126;\n    } else if (array instanceof Uint16Array) {\n      if (attribute.isFloat16BufferAttribute) {\n        if (isWebGL2) {\n          type = 5131;\n        } else {\n          throw new Error(\"THREE.WebGLAttributes: Usage of Float16BufferAttribute requires WebGL2.\");\n        }\n      } else {\n        type = 5123;\n      }\n    } else if (array instanceof Int16Array) {\n      type = 5122;\n    } else if (array instanceof Uint32Array) {\n      type = 5125;\n    } else if (array instanceof Int32Array) {\n      type = 5124;\n    } else if (array instanceof Int8Array) {\n      type = 5120;\n    } else if (array instanceof Uint8Array) {\n      type = 5121;\n    } else if (array instanceof Uint8ClampedArray) {\n      type = 5121;\n    } else {\n      throw new Error(\"THREE.WebGLAttributes: Unsupported buffer data format: \" + array);\n    }\n    return {\n      buffer,\n      type,\n      bytesPerElement: array.BYTES_PER_ELEMENT,\n      version: attribute.version\n    };\n  }\n  function updateBuffer(buffer, attribute, bufferType) {\n    const array = attribute.array;\n    const updateRange = attribute.updateRange;\n    gl.bindBuffer(bufferType, buffer);\n    if (updateRange.count === -1) {\n      gl.bufferSubData(bufferType, 0, array);\n    } else {\n      if (isWebGL2) {\n        gl.bufferSubData(bufferType, updateRange.offset * array.BYTES_PER_ELEMENT, array, updateRange.offset, updateRange.count);\n      } else {\n        gl.bufferSubData(bufferType, updateRange.offset * array.BYTES_PER_ELEMENT, array.subarray(updateRange.offset, updateRange.offset + updateRange.count));\n      }\n      updateRange.count = -1;\n    }\n  }\n  function get(attribute) {\n    if (attribute.isInterleavedBufferAttribute)\n      attribute = attribute.data;\n    return buffers.get(attribute);\n  }\n  function remove(attribute) {\n    if (attribute.isInterleavedBufferAttribute)\n      attribute = attribute.data;\n    const data = buffers.get(attribute);\n    if (data) {\n      gl.deleteBuffer(data.buffer);\n      buffers.delete(attribute);\n    }\n  }\n  function update(attribute, bufferType) {\n    if (attribute.isGLBufferAttribute) {\n      const cached = buffers.get(attribute);\n      if (!cached || cached.version < attribute.version) {\n        buffers.set(attribute, {\n          buffer: attribute.buffer,\n          type: attribute.type,\n          bytesPerElement: attribute.elementSize,\n          version: attribute.version\n        });\n      }\n      return;\n    }\n    if (attribute.isInterleavedBufferAttribute)\n      attribute = attribute.data;\n    const data = buffers.get(attribute);\n    if (data === void 0) {\n      buffers.set(attribute, createBuffer(attribute, bufferType));\n    } else if (data.version < attribute.version) {\n      updateBuffer(data.buffer, attribute, bufferType);\n      data.version = attribute.version;\n    }\n  }\n  return {\n    get,\n    remove,\n    update\n  };\n}\nclass PlaneGeometry extends BufferGeometry {\n  constructor(width = 1, height = 1, widthSegments = 1, heightSegments = 1) {\n    super();\n    this.type = \"PlaneGeometry\";\n    this.parameters = {\n      width,\n      height,\n      widthSegments,\n      heightSegments\n    };\n    const width_half = width / 2;\n    const height_half = height / 2;\n    const gridX = Math.floor(widthSegments);\n    const gridY = Math.floor(heightSegments);\n    const gridX1 = gridX + 1;\n    const gridY1 = gridY + 1;\n    const segment_width = width / gridX;\n    const segment_height = height / gridY;\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    for (let iy = 0; iy < gridY1; iy++) {\n      const y = iy * segment_height - height_half;\n      for (let ix = 0; ix < gridX1; ix++) {\n        const x = ix * segment_width - width_half;\n        vertices.push(x, -y, 0);\n        normals.push(0, 0, 1);\n        uvs.push(ix / gridX);\n        uvs.push(1 - iy / gridY);\n      }\n    }\n    for (let iy = 0; iy < gridY; iy++) {\n      for (let ix = 0; ix < gridX; ix++) {\n        const a = ix + gridX1 * iy;\n        const b = ix + gridX1 * (iy + 1);\n        const c = ix + 1 + gridX1 * (iy + 1);\n        const d = ix + 1 + gridX1 * iy;\n        indices.push(a, b, d);\n        indices.push(b, c, d);\n      }\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n  }\n  static fromJSON(data) {\n    return new PlaneGeometry(data.width, data.height, data.widthSegments, data.heightSegments);\n  }\n}\nvar alphamap_fragment = \"#ifdef USE_ALPHAMAP\\n\tdiffuseColor.a *= texture2D( alphaMap, vUv ).g;\\n#endif\";\nvar alphamap_pars_fragment = \"#ifdef USE_ALPHAMAP\\n\tuniform sampler2D alphaMap;\\n#endif\";\nvar alphatest_fragment = \"#ifdef USE_ALPHATEST\\n\tif ( diffuseColor.a < alphaTest ) discard;\\n#endif\";\nvar alphatest_pars_fragment = \"#ifdef USE_ALPHATEST\\n\tuniform float alphaTest;\\n#endif\";\nvar aomap_fragment = \"#ifdef USE_AOMAP\\n\tfloat ambientOcclusion = ( texture2D( aoMap, vUv2 ).r - 1.0 ) * aoMapIntensity + 1.0;\\n\treflectedLight.indirectDiffuse *= ambientOcclusion;\\n\t#if defined( USE_ENVMAP ) && defined( STANDARD )\\n\t\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\\n\t\treflectedLight.indirectSpecular *= computeSpecularOcclusion( dotNV, ambientOcclusion, material.roughness );\\n\t#endif\\n#endif\";\nvar aomap_pars_fragment = \"#ifdef USE_AOMAP\\n\tuniform sampler2D aoMap;\\n\tuniform float aoMapIntensity;\\n#endif\";\nvar begin_vertex = \"vec3 transformed = vec3( position );\";\nvar beginnormal_vertex = \"vec3 objectNormal = vec3( normal );\\n#ifdef USE_TANGENT\\n\tvec3 objectTangent = vec3( tangent.xyz );\\n#endif\";\nvar bsdfs = \"vec3 BRDF_Lambert( const in vec3 diffuseColor ) {\\n\treturn RECIPROCAL_PI * diffuseColor;\\n}\\nvec3 F_Schlick( const in vec3 f0, const in float f90, const in float dotVH ) {\\n\tfloat fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH );\\n\treturn f0 * ( 1.0 - fresnel ) + ( f90 * fresnel );\\n}\\nfloat F_Schlick( const in float f0, const in float f90, const in float dotVH ) {\\n\tfloat fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH );\\n\treturn f0 * ( 1.0 - fresnel ) + ( f90 * fresnel );\\n}\\nvec3 Schlick_to_F0( const in vec3 f, const in float f90, const in float dotVH ) {\\n    float x = clamp( 1.0 - dotVH, 0.0, 1.0 );\\n    float x2 = x * x;\\n    float x5 = clamp( x * x2 * x2, 0.0, 0.9999 );\\n    return ( f - vec3( f90 ) * x5 ) / ( 1.0 - x5 );\\n}\\nfloat V_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) {\\n\tfloat a2 = pow2( alpha );\\n\tfloat gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\\n\tfloat gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\\n\treturn 0.5 / max( gv + gl, EPSILON );\\n}\\nfloat D_GGX( const in float alpha, const in float dotNH ) {\\n\tfloat a2 = pow2( alpha );\\n\tfloat denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0;\\n\treturn RECIPROCAL_PI * a2 / pow2( denom );\\n}\\nvec3 BRDF_GGX( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 f0, const in float f90, const in float roughness ) {\\n\tfloat alpha = pow2( roughness );\\n\tvec3 halfDir = normalize( lightDir + viewDir );\\n\tfloat dotNL = saturate( dot( normal, lightDir ) );\\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\\n\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\\n\tvec3 F = F_Schlick( f0, f90, dotVH );\\n\tfloat V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV );\\n\tfloat D = D_GGX( alpha, dotNH );\\n\treturn F * ( V * D );\\n}\\n#ifdef USE_IRIDESCENCE\\n\tvec3 BRDF_GGX_Iridescence( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 f0, const in float f90, const in float iridescence, const in vec3 iridescenceFresnel, const in float roughness ) {\\n\t\tfloat alpha = pow2( roughness );\\n\t\tvec3 halfDir = normalize( lightDir + viewDir );\\n\t\tfloat dotNL = saturate( dot( normal, lightDir ) );\\n\t\tfloat dotNV = saturate( dot( normal, viewDir ) );\\n\t\tfloat dotNH = saturate( dot( normal, halfDir ) );\\n\t\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\\n\t\tvec3 F = mix( F_Schlick( f0, f90, dotVH ), iridescenceFresnel, iridescence );\\n\t\tfloat V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV );\\n\t\tfloat D = D_GGX( alpha, dotNH );\\n\t\treturn F * ( V * D );\\n\t}\\n#endif\\nvec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) {\\n\tconst float LUT_SIZE = 64.0;\\n\tconst float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE;\\n\tconst float LUT_BIAS = 0.5 / LUT_SIZE;\\n\tfloat dotNV = saturate( dot( N, V ) );\\n\tvec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) );\\n\tuv = uv * LUT_SCALE + LUT_BIAS;\\n\treturn uv;\\n}\\nfloat LTC_ClippedSphereFormFactor( const in vec3 f ) {\\n\tfloat l = length( f );\\n\treturn max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 );\\n}\\nvec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) {\\n\tfloat x = dot( v1, v2 );\\n\tfloat y = abs( x );\\n\tfloat a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y;\\n\tfloat b = 3.4175940 + ( 4.1616724 + y ) * y;\\n\tfloat v = a / b;\\n\tfloat theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v;\\n\treturn cross( v1, v2 ) * theta_sintheta;\\n}\\nvec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) {\\n\tvec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ];\\n\tvec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ];\\n\tvec3 lightNormal = cross( v1, v2 );\\n\tif( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 );\\n\tvec3 T1, T2;\\n\tT1 = normalize( V - N * dot( V, N ) );\\n\tT2 = - cross( N, T1 );\\n\tmat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) );\\n\tvec3 coords[ 4 ];\\n\tcoords[ 0 ] = mat * ( rectCoords[ 0 ] - P );\\n\tcoords[ 1 ] = mat * ( rectCoords[ 1 ] - P );\\n\tcoords[ 2 ] = mat * ( rectCoords[ 2 ] - P );\\n\tcoords[ 3 ] = mat * ( rectCoords[ 3 ] - P );\\n\tcoords[ 0 ] = normalize( coords[ 0 ] );\\n\tcoords[ 1 ] = normalize( coords[ 1 ] );\\n\tcoords[ 2 ] = normalize( coords[ 2 ] );\\n\tcoords[ 3 ] = normalize( coords[ 3 ] );\\n\tvec3 vectorFormFactor = vec3( 0.0 );\\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] );\\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] );\\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] );\\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] );\\n\tfloat result = LTC_ClippedSphereFormFactor( vectorFormFactor );\\n\treturn vec3( result );\\n}\\nfloat G_BlinnPhong_Implicit( ) {\\n\treturn 0.25;\\n}\\nfloat D_BlinnPhong( const in float shininess, const in float dotNH ) {\\n\treturn RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess );\\n}\\nvec3 BRDF_BlinnPhong( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 specularColor, const in float shininess ) {\\n\tvec3 halfDir = normalize( lightDir + viewDir );\\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\\n\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\\n\tvec3 F = F_Schlick( specularColor, 1.0, dotVH );\\n\tfloat G = G_BlinnPhong_Implicit( );\\n\tfloat D = D_BlinnPhong( shininess, dotNH );\\n\treturn F * ( G * D );\\n}\\n#if defined( USE_SHEEN )\\nfloat D_Charlie( float roughness, float dotNH ) {\\n\tfloat alpha = pow2( roughness );\\n\tfloat invAlpha = 1.0 / alpha;\\n\tfloat cos2h = dotNH * dotNH;\\n\tfloat sin2h = max( 1.0 - cos2h, 0.0078125 );\\n\treturn ( 2.0 + invAlpha ) * pow( sin2h, invAlpha * 0.5 ) / ( 2.0 * PI );\\n}\\nfloat V_Neubelt( float dotNV, float dotNL ) {\\n\treturn saturate( 1.0 / ( 4.0 * ( dotNL + dotNV - dotNL * dotNV ) ) );\\n}\\nvec3 BRDF_Sheen( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, vec3 sheenColor, const in float sheenRoughness ) {\\n\tvec3 halfDir = normalize( lightDir + viewDir );\\n\tfloat dotNL = saturate( dot( normal, lightDir ) );\\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\\n\tfloat D = D_Charlie( sheenRoughness, dotNH );\\n\tfloat V = V_Neubelt( dotNV, dotNL );\\n\treturn sheenColor * ( D * V );\\n}\\n#endif\";\nvar iridescence_fragment = \"#ifdef USE_IRIDESCENCE\\n\tconst mat3 XYZ_TO_REC709 = mat3(\\n\t\t 3.2404542, -0.9692660,  0.0556434,\\n\t\t-1.5371385,  1.8760108, -0.2040259,\\n\t\t-0.4985314,  0.0415560,  1.0572252\\n\t);\\n\tvec3 Fresnel0ToIor( vec3 fresnel0 ) {\\n\t\tvec3 sqrtF0 = sqrt( fresnel0 );\\n\t\treturn ( vec3( 1.0 ) + sqrtF0 ) / ( vec3( 1.0 ) - sqrtF0 );\\n\t}\\n\tvec3 IorToFresnel0( vec3 transmittedIor, float incidentIor ) {\\n\t\treturn pow2( ( transmittedIor - vec3( incidentIor ) ) / ( transmittedIor + vec3( incidentIor ) ) );\\n\t}\\n\tfloat IorToFresnel0( float transmittedIor, float incidentIor ) {\\n\t\treturn pow2( ( transmittedIor - incidentIor ) / ( transmittedIor + incidentIor ));\\n\t}\\n\tvec3 evalSensitivity( float OPD, vec3 shift ) {\\n\t\tfloat phase = 2.0 * PI * OPD * 1.0e-9;\\n\t\tvec3 val = vec3( 5.4856e-13, 4.4201e-13, 5.2481e-13 );\\n\t\tvec3 pos = vec3( 1.6810e+06, 1.7953e+06, 2.2084e+06 );\\n\t\tvec3 var = vec3( 4.3278e+09, 9.3046e+09, 6.6121e+09 );\\n\t\tvec3 xyz = val * sqrt( 2.0 * PI * var ) * cos( pos * phase + shift ) * exp( - pow2( phase ) * var );\\n\t\txyz.x += 9.7470e-14 * sqrt( 2.0 * PI * 4.5282e+09 ) * cos( 2.2399e+06 * phase + shift[ 0 ] ) * exp( - 4.5282e+09 * pow2( phase ) );\\n\t\txyz /= 1.0685e-7;\\n\t\tvec3 rgb = XYZ_TO_REC709 * xyz;\\n\t\treturn rgb;\\n\t}\\n\tvec3 evalIridescence( float outsideIOR, float eta2, float cosTheta1, float thinFilmThickness, vec3 baseF0 ) {\\n\t\tvec3 I;\\n\t\tfloat iridescenceIOR = mix( outsideIOR, eta2, smoothstep( 0.0, 0.03, thinFilmThickness ) );\\n\t\tfloat sinTheta2Sq = pow2( outsideIOR / iridescenceIOR ) * ( 1.0 - pow2( cosTheta1 ) );\\n\t\tfloat cosTheta2Sq = 1.0 - sinTheta2Sq;\\n\t\tif ( cosTheta2Sq < 0.0 ) {\\n\t\t\t return vec3( 1.0 );\\n\t\t}\\n\t\tfloat cosTheta2 = sqrt( cosTheta2Sq );\\n\t\tfloat R0 = IorToFresnel0( iridescenceIOR, outsideIOR );\\n\t\tfloat R12 = F_Schlick( R0, 1.0, cosTheta1 );\\n\t\tfloat R21 = R12;\\n\t\tfloat T121 = 1.0 - R12;\\n\t\tfloat phi12 = 0.0;\\n\t\tif ( iridescenceIOR < outsideIOR ) phi12 = PI;\\n\t\tfloat phi21 = PI - phi12;\\n\t\tvec3 baseIOR = Fresnel0ToIor( clamp( baseF0, 0.0, 0.9999 ) );\t\tvec3 R1 = IorToFresnel0( baseIOR, iridescenceIOR );\\n\t\tvec3 R23 = F_Schlick( R1, 1.0, cosTheta2 );\\n\t\tvec3 phi23 = vec3( 0.0 );\\n\t\tif ( baseIOR[ 0 ] < iridescenceIOR ) phi23[ 0 ] = PI;\\n\t\tif ( baseIOR[ 1 ] < iridescenceIOR ) phi23[ 1 ] = PI;\\n\t\tif ( baseIOR[ 2 ] < iridescenceIOR ) phi23[ 2 ] = PI;\\n\t\tfloat OPD = 2.0 * iridescenceIOR * thinFilmThickness * cosTheta2;\\n\t\tvec3 phi = vec3( phi21 ) + phi23;\\n\t\tvec3 R123 = clamp( R12 * R23, 1e-5, 0.9999 );\\n\t\tvec3 r123 = sqrt( R123 );\\n\t\tvec3 Rs = pow2( T121 ) * R23 / ( vec3( 1.0 ) - R123 );\\n\t\tvec3 C0 = R12 + Rs;\\n\t\tI = C0;\\n\t\tvec3 Cm = Rs - T121;\\n\t\tfor ( int m = 1; m <= 2; ++ m ) {\\n\t\t\tCm *= r123;\\n\t\t\tvec3 Sm = 2.0 * evalSensitivity( float( m ) * OPD, float( m ) * phi );\\n\t\t\tI += Cm * Sm;\\n\t\t}\\n\t\treturn max( I, vec3( 0.0 ) );\\n\t}\\n#endif\";\nvar bumpmap_pars_fragment = \"#ifdef USE_BUMPMAP\\n\tuniform sampler2D bumpMap;\\n\tuniform float bumpScale;\\n\tvec2 dHdxy_fwd() {\\n\t\tvec2 dSTdx = dFdx( vUv );\\n\t\tvec2 dSTdy = dFdy( vUv );\\n\t\tfloat Hll = bumpScale * texture2D( bumpMap, vUv ).x;\\n\t\tfloat dBx = bumpScale * texture2D( bumpMap, vUv + dSTdx ).x - Hll;\\n\t\tfloat dBy = bumpScale * texture2D( bumpMap, vUv + dSTdy ).x - Hll;\\n\t\treturn vec2( dBx, dBy );\\n\t}\\n\tvec3 perturbNormalArb( vec3 surf_pos, vec3 surf_norm, vec2 dHdxy, float faceDirection ) {\\n\t\tvec3 vSigmaX = dFdx( surf_pos.xyz );\\n\t\tvec3 vSigmaY = dFdy( surf_pos.xyz );\\n\t\tvec3 vN = surf_norm;\\n\t\tvec3 R1 = cross( vSigmaY, vN );\\n\t\tvec3 R2 = cross( vN, vSigmaX );\\n\t\tfloat fDet = dot( vSigmaX, R1 ) * faceDirection;\\n\t\tvec3 vGrad = sign( fDet ) * ( dHdxy.x * R1 + dHdxy.y * R2 );\\n\t\treturn normalize( abs( fDet ) * surf_norm - vGrad );\\n\t}\\n#endif\";\nvar clipping_planes_fragment = \"#if NUM_CLIPPING_PLANES > 0\\n\tvec4 plane;\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) {\\n\t\tplane = clippingPlanes[ i ];\\n\t\tif ( dot( vClipPosition, plane.xyz ) > plane.w ) discard;\\n\t}\\n\t#pragma unroll_loop_end\\n\t#if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES\\n\t\tbool clipped = true;\\n\t\t#pragma unroll_loop_start\\n\t\tfor ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) {\\n\t\t\tplane = clippingPlanes[ i ];\\n\t\t\tclipped = ( dot( vClipPosition, plane.xyz ) > plane.w ) && clipped;\\n\t\t}\\n\t\t#pragma unroll_loop_end\\n\t\tif ( clipped ) discard;\\n\t#endif\\n#endif\";\nvar clipping_planes_pars_fragment = \"#if NUM_CLIPPING_PLANES > 0\\n\tvarying vec3 vClipPosition;\\n\tuniform vec4 clippingPlanes[ NUM_CLIPPING_PLANES ];\\n#endif\";\nvar clipping_planes_pars_vertex = \"#if NUM_CLIPPING_PLANES > 0\\n\tvarying vec3 vClipPosition;\\n#endif\";\nvar clipping_planes_vertex = \"#if NUM_CLIPPING_PLANES > 0\\n\tvClipPosition = - mvPosition.xyz;\\n#endif\";\nvar color_fragment = \"#if defined( USE_COLOR_ALPHA )\\n\tdiffuseColor *= vColor;\\n#elif defined( USE_COLOR )\\n\tdiffuseColor.rgb *= vColor;\\n#endif\";\nvar color_pars_fragment = \"#if defined( USE_COLOR_ALPHA )\\n\tvarying vec4 vColor;\\n#elif defined( USE_COLOR )\\n\tvarying vec3 vColor;\\n#endif\";\nvar color_pars_vertex = \"#if defined( USE_COLOR_ALPHA )\\n\tvarying vec4 vColor;\\n#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR )\\n\tvarying vec3 vColor;\\n#endif\";\nvar color_vertex = \"#if defined( USE_COLOR_ALPHA )\\n\tvColor = vec4( 1.0 );\\n#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR )\\n\tvColor = vec3( 1.0 );\\n#endif\\n#ifdef USE_COLOR\\n\tvColor *= color;\\n#endif\\n#ifdef USE_INSTANCING_COLOR\\n\tvColor.xyz *= instanceColor.xyz;\\n#endif\";\nvar common = \"#define PI 3.141592653589793\\n#define PI2 6.283185307179586\\n#define PI_HALF 1.5707963267948966\\n#define RECIPROCAL_PI 0.3183098861837907\\n#define RECIPROCAL_PI2 0.15915494309189535\\n#define EPSILON 1e-6\\n#ifndef saturate\\n#define saturate( a ) clamp( a, 0.0, 1.0 )\\n#endif\\n#define whiteComplement( a ) ( 1.0 - saturate( a ) )\\nfloat pow2( const in float x ) { return x*x; }\\nvec3 pow2( const in vec3 x ) { return x*x; }\\nfloat pow3( const in float x ) { return x*x*x; }\\nfloat pow4( const in float x ) { float x2 = x*x; return x2*x2; }\\nfloat max3( const in vec3 v ) { return max( max( v.x, v.y ), v.z ); }\\nfloat average( const in vec3 v ) { return dot( v, vec3( 0.3333333 ) ); }\\nhighp float rand( const in vec2 uv ) {\\n\tconst highp float a = 12.9898, b = 78.233, c = 43758.5453;\\n\thighp float dt = dot( uv.xy, vec2( a,b ) ), sn = mod( dt, PI );\\n\treturn fract( sin( sn ) * c );\\n}\\n#ifdef HIGH_PRECISION\\n\tfloat precisionSafeLength( vec3 v ) { return length( v ); }\\n#else\\n\tfloat precisionSafeLength( vec3 v ) {\\n\t\tfloat maxComponent = max3( abs( v ) );\\n\t\treturn length( v / maxComponent ) * maxComponent;\\n\t}\\n#endif\\nstruct IncidentLight {\\n\tvec3 color;\\n\tvec3 direction;\\n\tbool visible;\\n};\\nstruct ReflectedLight {\\n\tvec3 directDiffuse;\\n\tvec3 directSpecular;\\n\tvec3 indirectDiffuse;\\n\tvec3 indirectSpecular;\\n};\\nstruct GeometricContext {\\n\tvec3 position;\\n\tvec3 normal;\\n\tvec3 viewDir;\\n#ifdef USE_CLEARCOAT\\n\tvec3 clearcoatNormal;\\n#endif\\n};\\nvec3 transformDirection( in vec3 dir, in mat4 matrix ) {\\n\treturn normalize( ( matrix * vec4( dir, 0.0 ) ).xyz );\\n}\\nvec3 inverseTransformDirection( in vec3 dir, in mat4 matrix ) {\\n\treturn normalize( ( vec4( dir, 0.0 ) * matrix ).xyz );\\n}\\nmat3 transposeMat3( const in mat3 m ) {\\n\tmat3 tmp;\\n\ttmp[ 0 ] = vec3( m[ 0 ].x, m[ 1 ].x, m[ 2 ].x );\\n\ttmp[ 1 ] = vec3( m[ 0 ].y, m[ 1 ].y, m[ 2 ].y );\\n\ttmp[ 2 ] = vec3( m[ 0 ].z, m[ 1 ].z, m[ 2 ].z );\\n\treturn tmp;\\n}\\nfloat luminance( const in vec3 rgb ) {\\n\tconst vec3 weights = vec3( 0.2126729, 0.7151522, 0.0721750 );\\n\treturn dot( weights, rgb );\\n}\\nbool isPerspectiveMatrix( mat4 m ) {\\n\treturn m[ 2 ][ 3 ] == - 1.0;\\n}\\nvec2 equirectUv( in vec3 dir ) {\\n\tfloat u = atan( dir.z, dir.x ) * RECIPROCAL_PI2 + 0.5;\\n\tfloat v = asin( clamp( dir.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\\n\treturn vec2( u, v );\\n}\";\nvar cube_uv_reflection_fragment = \"#ifdef ENVMAP_TYPE_CUBE_UV\\n\t#define cubeUV_minMipLevel 4.0\\n\t#define cubeUV_minTileSize 16.0\\n\tfloat getFace( vec3 direction ) {\\n\t\tvec3 absDirection = abs( direction );\\n\t\tfloat face = - 1.0;\\n\t\tif ( absDirection.x > absDirection.z ) {\\n\t\t\tif ( absDirection.x > absDirection.y )\\n\t\t\t\tface = direction.x > 0.0 ? 0.0 : 3.0;\\n\t\t\telse\\n\t\t\t\tface = direction.y > 0.0 ? 1.0 : 4.0;\\n\t\t} else {\\n\t\t\tif ( absDirection.z > absDirection.y )\\n\t\t\t\tface = direction.z > 0.0 ? 2.0 : 5.0;\\n\t\t\telse\\n\t\t\t\tface = direction.y > 0.0 ? 1.0 : 4.0;\\n\t\t}\\n\t\treturn face;\\n\t}\\n\tvec2 getUV( vec3 direction, float face ) {\\n\t\tvec2 uv;\\n\t\tif ( face == 0.0 ) {\\n\t\t\tuv = vec2( direction.z, direction.y ) / abs( direction.x );\\n\t\t} else if ( face == 1.0 ) {\\n\t\t\tuv = vec2( - direction.x, - direction.z ) / abs( direction.y );\\n\t\t} else if ( face == 2.0 ) {\\n\t\t\tuv = vec2( - direction.x, direction.y ) / abs( direction.z );\\n\t\t} else if ( face == 3.0 ) {\\n\t\t\tuv = vec2( - direction.z, direction.y ) / abs( direction.x );\\n\t\t} else if ( face == 4.0 ) {\\n\t\t\tuv = vec2( - direction.x, direction.z ) / abs( direction.y );\\n\t\t} else {\\n\t\t\tuv = vec2( direction.x, direction.y ) / abs( direction.z );\\n\t\t}\\n\t\treturn 0.5 * ( uv + 1.0 );\\n\t}\\n\tvec3 bilinearCubeUV( sampler2D envMap, vec3 direction, float mipInt ) {\\n\t\tfloat face = getFace( direction );\\n\t\tfloat filterInt = max( cubeUV_minMipLevel - mipInt, 0.0 );\\n\t\tmipInt = max( mipInt, cubeUV_minMipLevel );\\n\t\tfloat faceSize = exp2( mipInt );\\n\t\tvec2 uv = getUV( direction, face ) * ( faceSize - 2.0 ) + 1.0;\\n\t\tif ( face > 2.0 ) {\\n\t\t\tuv.y += faceSize;\\n\t\t\tface -= 3.0;\\n\t\t}\\n\t\tuv.x += face * faceSize;\\n\t\tuv.x += filterInt * 3.0 * cubeUV_minTileSize;\\n\t\tuv.y += 4.0 * ( exp2( CUBEUV_MAX_MIP ) - faceSize );\\n\t\tuv.x *= CUBEUV_TEXEL_WIDTH;\\n\t\tuv.y *= CUBEUV_TEXEL_HEIGHT;\\n\t\t#ifdef texture2DGradEXT\\n\t\t\treturn texture2DGradEXT( envMap, uv, vec2( 0.0 ), vec2( 0.0 ) ).rgb;\\n\t\t#else\\n\t\t\treturn texture2D( envMap, uv ).rgb;\\n\t\t#endif\\n\t}\\n\t#define r0 1.0\\n\t#define v0 0.339\\n\t#define m0 - 2.0\\n\t#define r1 0.8\\n\t#define v1 0.276\\n\t#define m1 - 1.0\\n\t#define r4 0.4\\n\t#define v4 0.046\\n\t#define m4 2.0\\n\t#define r5 0.305\\n\t#define v5 0.016\\n\t#define m5 3.0\\n\t#define r6 0.21\\n\t#define v6 0.0038\\n\t#define m6 4.0\\n\tfloat roughnessToMip( float roughness ) {\\n\t\tfloat mip = 0.0;\\n\t\tif ( roughness >= r1 ) {\\n\t\t\tmip = ( r0 - roughness ) * ( m1 - m0 ) / ( r0 - r1 ) + m0;\\n\t\t} else if ( roughness >= r4 ) {\\n\t\t\tmip = ( r1 - roughness ) * ( m4 - m1 ) / ( r1 - r4 ) + m1;\\n\t\t} else if ( roughness >= r5 ) {\\n\t\t\tmip = ( r4 - roughness ) * ( m5 - m4 ) / ( r4 - r5 ) + m4;\\n\t\t} else if ( roughness >= r6 ) {\\n\t\t\tmip = ( r5 - roughness ) * ( m6 - m5 ) / ( r5 - r6 ) + m5;\\n\t\t} else {\\n\t\t\tmip = - 2.0 * log2( 1.16 * roughness );\t\t}\\n\t\treturn mip;\\n\t}\\n\tvec4 textureCubeUV( sampler2D envMap, vec3 sampleDir, float roughness ) {\\n\t\tfloat mip = clamp( roughnessToMip( roughness ), m0, CUBEUV_MAX_MIP );\\n\t\tfloat mipF = fract( mip );\\n\t\tfloat mipInt = floor( mip );\\n\t\tvec3 color0 = bilinearCubeUV( envMap, sampleDir, mipInt );\\n\t\tif ( mipF == 0.0 ) {\\n\t\t\treturn vec4( color0, 1.0 );\\n\t\t} else {\\n\t\t\tvec3 color1 = bilinearCubeUV( envMap, sampleDir, mipInt + 1.0 );\\n\t\t\treturn vec4( mix( color0, color1, mipF ), 1.0 );\\n\t\t}\\n\t}\\n#endif\";\nvar defaultnormal_vertex = \"vec3 transformedNormal = objectNormal;\\n#ifdef USE_INSTANCING\\n\tmat3 m = mat3( instanceMatrix );\\n\ttransformedNormal /= vec3( dot( m[ 0 ], m[ 0 ] ), dot( m[ 1 ], m[ 1 ] ), dot( m[ 2 ], m[ 2 ] ) );\\n\ttransformedNormal = m * transformedNormal;\\n#endif\\ntransformedNormal = normalMatrix * transformedNormal;\\n#ifdef FLIP_SIDED\\n\ttransformedNormal = - transformedNormal;\\n#endif\\n#ifdef USE_TANGENT\\n\tvec3 transformedTangent = ( modelViewMatrix * vec4( objectTangent, 0.0 ) ).xyz;\\n\t#ifdef FLIP_SIDED\\n\t\ttransformedTangent = - transformedTangent;\\n\t#endif\\n#endif\";\nvar displacementmap_pars_vertex = \"#ifdef USE_DISPLACEMENTMAP\\n\tuniform sampler2D displacementMap;\\n\tuniform float displacementScale;\\n\tuniform float displacementBias;\\n#endif\";\nvar displacementmap_vertex = \"#ifdef USE_DISPLACEMENTMAP\\n\ttransformed += normalize( objectNormal ) * ( texture2D( displacementMap, vUv ).x * displacementScale + displacementBias );\\n#endif\";\nvar emissivemap_fragment = \"#ifdef USE_EMISSIVEMAP\\n\tvec4 emissiveColor = texture2D( emissiveMap, vUv );\\n\ttotalEmissiveRadiance *= emissiveColor.rgb;\\n#endif\";\nvar emissivemap_pars_fragment = \"#ifdef USE_EMISSIVEMAP\\n\tuniform sampler2D emissiveMap;\\n#endif\";\nvar encodings_fragment = \"gl_FragColor = linearToOutputTexel( gl_FragColor );\";\nvar encodings_pars_fragment = \"vec4 LinearToLinear( in vec4 value ) {\\n\treturn value;\\n}\\nvec4 LinearTosRGB( in vec4 value ) {\\n\treturn vec4( mix( pow( value.rgb, vec3( 0.41666 ) ) * 1.055 - vec3( 0.055 ), value.rgb * 12.92, vec3( lessThanEqual( value.rgb, vec3( 0.0031308 ) ) ) ), value.a );\\n}\";\nvar envmap_fragment = \"#ifdef USE_ENVMAP\\n\t#ifdef ENV_WORLDPOS\\n\t\tvec3 cameraToFrag;\\n\t\tif ( isOrthographic ) {\\n\t\t\tcameraToFrag = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) );\\n\t\t} else {\\n\t\t\tcameraToFrag = normalize( vWorldPosition - cameraPosition );\\n\t\t}\\n\t\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\\n\t\t#ifdef ENVMAP_MODE_REFLECTION\\n\t\t\tvec3 reflectVec = reflect( cameraToFrag, worldNormal );\\n\t\t#else\\n\t\t\tvec3 reflectVec = refract( cameraToFrag, worldNormal, refractionRatio );\\n\t\t#endif\\n\t#else\\n\t\tvec3 reflectVec = vReflect;\\n\t#endif\\n\t#ifdef ENVMAP_TYPE_CUBE\\n\t\tvec4 envColor = textureCube( envMap, vec3( flipEnvMap * reflectVec.x, reflectVec.yz ) );\\n\t#elif defined( ENVMAP_TYPE_CUBE_UV )\\n\t\tvec4 envColor = textureCubeUV( envMap, reflectVec, 0.0 );\\n\t#else\\n\t\tvec4 envColor = vec4( 0.0 );\\n\t#endif\\n\t#ifdef ENVMAP_BLENDING_MULTIPLY\\n\t\toutgoingLight = mix( outgoingLight, outgoingLight * envColor.xyz, specularStrength * reflectivity );\\n\t#elif defined( ENVMAP_BLENDING_MIX )\\n\t\toutgoingLight = mix( outgoingLight, envColor.xyz, specularStrength * reflectivity );\\n\t#elif defined( ENVMAP_BLENDING_ADD )\\n\t\toutgoingLight += envColor.xyz * specularStrength * reflectivity;\\n\t#endif\\n#endif\";\nvar envmap_common_pars_fragment = \"#ifdef USE_ENVMAP\\n\tuniform float envMapIntensity;\\n\tuniform float flipEnvMap;\\n\t#ifdef ENVMAP_TYPE_CUBE\\n\t\tuniform samplerCube envMap;\\n\t#else\\n\t\tuniform sampler2D envMap;\\n\t#endif\\n\t\\n#endif\";\nvar envmap_pars_fragment = \"#ifdef USE_ENVMAP\\n\tuniform float reflectivity;\\n\t#if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG )\\n\t\t#define ENV_WORLDPOS\\n\t#endif\\n\t#ifdef ENV_WORLDPOS\\n\t\tvarying vec3 vWorldPosition;\\n\t\tuniform float refractionRatio;\\n\t#else\\n\t\tvarying vec3 vReflect;\\n\t#endif\\n#endif\";\nvar envmap_pars_vertex = \"#ifdef USE_ENVMAP\\n\t#if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) ||defined( PHONG )\\n\t\t#define ENV_WORLDPOS\\n\t#endif\\n\t#ifdef ENV_WORLDPOS\\n\t\t\\n\t\tvarying vec3 vWorldPosition;\\n\t#else\\n\t\tvarying vec3 vReflect;\\n\t\tuniform float refractionRatio;\\n\t#endif\\n#endif\";\nvar envmap_vertex = \"#ifdef USE_ENVMAP\\n\t#ifdef ENV_WORLDPOS\\n\t\tvWorldPosition = worldPosition.xyz;\\n\t#else\\n\t\tvec3 cameraToVertex;\\n\t\tif ( isOrthographic ) {\\n\t\t\tcameraToVertex = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) );\\n\t\t} else {\\n\t\t\tcameraToVertex = normalize( worldPosition.xyz - cameraPosition );\\n\t\t}\\n\t\tvec3 worldNormal = inverseTransformDirection( transformedNormal, viewMatrix );\\n\t\t#ifdef ENVMAP_MODE_REFLECTION\\n\t\t\tvReflect = reflect( cameraToVertex, worldNormal );\\n\t\t#else\\n\t\t\tvReflect = refract( cameraToVertex, worldNormal, refractionRatio );\\n\t\t#endif\\n\t#endif\\n#endif\";\nvar fog_vertex = \"#ifdef USE_FOG\\n\tvFogDepth = - mvPosition.z;\\n#endif\";\nvar fog_pars_vertex = \"#ifdef USE_FOG\\n\tvarying float vFogDepth;\\n#endif\";\nvar fog_fragment = \"#ifdef USE_FOG\\n\t#ifdef FOG_EXP2\\n\t\tfloat fogFactor = 1.0 - exp( - fogDensity * fogDensity * vFogDepth * vFogDepth );\\n\t#else\\n\t\tfloat fogFactor = smoothstep( fogNear, fogFar, vFogDepth );\\n\t#endif\\n\tgl_FragColor.rgb = mix( gl_FragColor.rgb, fogColor, fogFactor );\\n#endif\";\nvar fog_pars_fragment = \"#ifdef USE_FOG\\n\tuniform vec3 fogColor;\\n\tvarying float vFogDepth;\\n\t#ifdef FOG_EXP2\\n\t\tuniform float fogDensity;\\n\t#else\\n\t\tuniform float fogNear;\\n\t\tuniform float fogFar;\\n\t#endif\\n#endif\";\nvar gradientmap_pars_fragment = \"#ifdef USE_GRADIENTMAP\\n\tuniform sampler2D gradientMap;\\n#endif\\nvec3 getGradientIrradiance( vec3 normal, vec3 lightDirection ) {\\n\tfloat dotNL = dot( normal, lightDirection );\\n\tvec2 coord = vec2( dotNL * 0.5 + 0.5, 0.0 );\\n\t#ifdef USE_GRADIENTMAP\\n\t\treturn vec3( texture2D( gradientMap, coord ).r );\\n\t#else\\n\t\treturn ( coord.x < 0.7 ) ? vec3( 0.7 ) : vec3( 1.0 );\\n\t#endif\\n}\";\nvar lightmap_fragment = \"#ifdef USE_LIGHTMAP\\n\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\\n\tvec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity;\\n\treflectedLight.indirectDiffuse += lightMapIrradiance;\\n#endif\";\nvar lightmap_pars_fragment = \"#ifdef USE_LIGHTMAP\\n\tuniform sampler2D lightMap;\\n\tuniform float lightMapIntensity;\\n#endif\";\nvar lights_lambert_vertex = \"vec3 diffuse = vec3( 1.0 );\\nGeometricContext geometry;\\ngeometry.position = mvPosition.xyz;\\ngeometry.normal = normalize( transformedNormal );\\ngeometry.viewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( -mvPosition.xyz );\\nGeometricContext backGeometry;\\nbackGeometry.position = geometry.position;\\nbackGeometry.normal = -geometry.normal;\\nbackGeometry.viewDir = geometry.viewDir;\\nvLightFront = vec3( 0.0 );\\nvIndirectFront = vec3( 0.0 );\\n#ifdef DOUBLE_SIDED\\n\tvLightBack = vec3( 0.0 );\\n\tvIndirectBack = vec3( 0.0 );\\n#endif\\nIncidentLight directLight;\\nfloat dotNL;\\nvec3 directLightColor_Diffuse;\\nvIndirectFront += getAmbientLightIrradiance( ambientLightColor );\\nvIndirectFront += getLightProbeIrradiance( lightProbe, geometry.normal );\\n#ifdef DOUBLE_SIDED\\n\tvIndirectBack += getAmbientLightIrradiance( ambientLightColor );\\n\tvIndirectBack += getLightProbeIrradiance( lightProbe, backGeometry.normal );\\n#endif\\n#if NUM_POINT_LIGHTS > 0\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) {\\n\t\tgetPointLightInfo( pointLights[ i ], geometry, directLight );\\n\t\tdotNL = dot( geometry.normal, directLight.direction );\\n\t\tdirectLightColor_Diffuse = directLight.color;\\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\\n\t\t#ifdef DOUBLE_SIDED\\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\\n\t\t#endif\\n\t}\\n\t#pragma unroll_loop_end\\n#endif\\n#if NUM_SPOT_LIGHTS > 0\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) {\\n\t\tgetSpotLightInfo( spotLights[ i ], geometry, directLight );\\n\t\tdotNL = dot( geometry.normal, directLight.direction );\\n\t\tdirectLightColor_Diffuse = directLight.color;\\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\\n\t\t#ifdef DOUBLE_SIDED\\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\\n\t\t#endif\\n\t}\\n\t#pragma unroll_loop_end\\n#endif\\n#if NUM_DIR_LIGHTS > 0\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) {\\n\t\tgetDirectionalLightInfo( directionalLights[ i ], geometry, directLight );\\n\t\tdotNL = dot( geometry.normal, directLight.direction );\\n\t\tdirectLightColor_Diffuse = directLight.color;\\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\\n\t\t#ifdef DOUBLE_SIDED\\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\\n\t\t#endif\\n\t}\\n\t#pragma unroll_loop_end\\n#endif\\n#if NUM_HEMI_LIGHTS > 0\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) {\\n\t\tvIndirectFront += getHemisphereLightIrradiance( hemisphereLights[ i ], geometry.normal );\\n\t\t#ifdef DOUBLE_SIDED\\n\t\t\tvIndirectBack += getHemisphereLightIrradiance( hemisphereLights[ i ], backGeometry.normal );\\n\t\t#endif\\n\t}\\n\t#pragma unroll_loop_end\\n#endif\";\nvar lights_pars_begin = \"uniform bool receiveShadow;\\nuniform vec3 ambientLightColor;\\nuniform vec3 lightProbe[ 9 ];\\nvec3 shGetIrradianceAt( in vec3 normal, in vec3 shCoefficients[ 9 ] ) {\\n\tfloat x = normal.x, y = normal.y, z = normal.z;\\n\tvec3 result = shCoefficients[ 0 ] * 0.886227;\\n\tresult += shCoefficients[ 1 ] * 2.0 * 0.511664 * y;\\n\tresult += shCoefficients[ 2 ] * 2.0 * 0.511664 * z;\\n\tresult += shCoefficients[ 3 ] * 2.0 * 0.511664 * x;\\n\tresult += shCoefficients[ 4 ] * 2.0 * 0.429043 * x * y;\\n\tresult += shCoefficients[ 5 ] * 2.0 * 0.429043 * y * z;\\n\tresult += shCoefficients[ 6 ] * ( 0.743125 * z * z - 0.247708 );\\n\tresult += shCoefficients[ 7 ] * 2.0 * 0.429043 * x * z;\\n\tresult += shCoefficients[ 8 ] * 0.429043 * ( x * x - y * y );\\n\treturn result;\\n}\\nvec3 getLightProbeIrradiance( const in vec3 lightProbe[ 9 ], const in vec3 normal ) {\\n\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\\n\tvec3 irradiance = shGetIrradianceAt( worldNormal, lightProbe );\\n\treturn irradiance;\\n}\\nvec3 getAmbientLightIrradiance( const in vec3 ambientLightColor ) {\\n\tvec3 irradiance = ambientLightColor;\\n\treturn irradiance;\\n}\\nfloat getDistanceAttenuation( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) {\\n\t#if defined ( PHYSICALLY_CORRECT_LIGHTS )\\n\t\tfloat distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 );\\n\t\tif ( cutoffDistance > 0.0 ) {\\n\t\t\tdistanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) );\\n\t\t}\\n\t\treturn distanceFalloff;\\n\t#else\\n\t\tif ( cutoffDistance > 0.0 && decayExponent > 0.0 ) {\\n\t\t\treturn pow( saturate( - lightDistance / cutoffDistance + 1.0 ), decayExponent );\\n\t\t}\\n\t\treturn 1.0;\\n\t#endif\\n}\\nfloat getSpotAttenuation( const in float coneCosine, const in float penumbraCosine, const in float angleCosine ) {\\n\treturn smoothstep( coneCosine, penumbraCosine, angleCosine );\\n}\\n#if NUM_DIR_LIGHTS > 0\\n\tstruct DirectionalLight {\\n\t\tvec3 direction;\\n\t\tvec3 color;\\n\t};\\n\tuniform DirectionalLight directionalLights[ NUM_DIR_LIGHTS ];\\n\tvoid getDirectionalLightInfo( const in DirectionalLight directionalLight, const in GeometricContext geometry, out IncidentLight light ) {\\n\t\tlight.color = directionalLight.color;\\n\t\tlight.direction = directionalLight.direction;\\n\t\tlight.visible = true;\\n\t}\\n#endif\\n#if NUM_POINT_LIGHTS > 0\\n\tstruct PointLight {\\n\t\tvec3 position;\\n\t\tvec3 color;\\n\t\tfloat distance;\\n\t\tfloat decay;\\n\t};\\n\tuniform PointLight pointLights[ NUM_POINT_LIGHTS ];\\n\tvoid getPointLightInfo( const in PointLight pointLight, const in GeometricContext geometry, out IncidentLight light ) {\\n\t\tvec3 lVector = pointLight.position - geometry.position;\\n\t\tlight.direction = normalize( lVector );\\n\t\tfloat lightDistance = length( lVector );\\n\t\tlight.color = pointLight.color;\\n\t\tlight.color *= getDistanceAttenuation( lightDistance, pointLight.distance, pointLight.decay );\\n\t\tlight.visible = ( light.color != vec3( 0.0 ) );\\n\t}\\n#endif\\n#if NUM_SPOT_LIGHTS > 0\\n\tstruct SpotLight {\\n\t\tvec3 position;\\n\t\tvec3 direction;\\n\t\tvec3 color;\\n\t\tfloat distance;\\n\t\tfloat decay;\\n\t\tfloat coneCos;\\n\t\tfloat penumbraCos;\\n\t};\\n\tuniform SpotLight spotLights[ NUM_SPOT_LIGHTS ];\\n\tvoid getSpotLightInfo( const in SpotLight spotLight, const in GeometricContext geometry, out IncidentLight light ) {\\n\t\tvec3 lVector = spotLight.position - geometry.position;\\n\t\tlight.direction = normalize( lVector );\\n\t\tfloat angleCos = dot( light.direction, spotLight.direction );\\n\t\tfloat spotAttenuation = getSpotAttenuation( spotLight.coneCos, spotLight.penumbraCos, angleCos );\\n\t\tif ( spotAttenuation > 0.0 ) {\\n\t\t\tfloat lightDistance = length( lVector );\\n\t\t\tlight.color = spotLight.color * spotAttenuation;\\n\t\t\tlight.color *= getDistanceAttenuation( lightDistance, spotLight.distance, spotLight.decay );\\n\t\t\tlight.visible = ( light.color != vec3( 0.0 ) );\\n\t\t} else {\\n\t\t\tlight.color = vec3( 0.0 );\\n\t\t\tlight.visible = false;\\n\t\t}\\n\t}\\n#endif\\n#if NUM_RECT_AREA_LIGHTS > 0\\n\tstruct RectAreaLight {\\n\t\tvec3 color;\\n\t\tvec3 position;\\n\t\tvec3 halfWidth;\\n\t\tvec3 halfHeight;\\n\t};\\n\tuniform sampler2D ltc_1;\tuniform sampler2D ltc_2;\\n\tuniform RectAreaLight rectAreaLights[ NUM_RECT_AREA_LIGHTS ];\\n#endif\\n#if NUM_HEMI_LIGHTS > 0\\n\tstruct HemisphereLight {\\n\t\tvec3 direction;\\n\t\tvec3 skyColor;\\n\t\tvec3 groundColor;\\n\t};\\n\tuniform HemisphereLight hemisphereLights[ NUM_HEMI_LIGHTS ];\\n\tvec3 getHemisphereLightIrradiance( const in HemisphereLight hemiLight, const in vec3 normal ) {\\n\t\tfloat dotNL = dot( normal, hemiLight.direction );\\n\t\tfloat hemiDiffuseWeight = 0.5 * dotNL + 0.5;\\n\t\tvec3 irradiance = mix( hemiLight.groundColor, hemiLight.skyColor, hemiDiffuseWeight );\\n\t\treturn irradiance;\\n\t}\\n#endif\";\nvar envmap_physical_pars_fragment = \"#if defined( USE_ENVMAP )\\n\tvec3 getIBLIrradiance( const in vec3 normal ) {\\n\t\t#if defined( ENVMAP_TYPE_CUBE_UV )\\n\t\t\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\\n\t\t\tvec4 envMapColor = textureCubeUV( envMap, worldNormal, 1.0 );\\n\t\t\treturn PI * envMapColor.rgb * envMapIntensity;\\n\t\t#else\\n\t\t\treturn vec3( 0.0 );\\n\t\t#endif\\n\t}\\n\tvec3 getIBLRadiance( const in vec3 viewDir, const in vec3 normal, const in float roughness ) {\\n\t\t#if defined( ENVMAP_TYPE_CUBE_UV )\\n\t\t\tvec3 reflectVec = reflect( - viewDir, normal );\\n\t\t\treflectVec = normalize( mix( reflectVec, normal, roughness * roughness) );\\n\t\t\treflectVec = inverseTransformDirection( reflectVec, viewMatrix );\\n\t\t\tvec4 envMapColor = textureCubeUV( envMap, reflectVec, roughness );\\n\t\t\treturn envMapColor.rgb * envMapIntensity;\\n\t\t#else\\n\t\t\treturn vec3( 0.0 );\\n\t\t#endif\\n\t}\\n#endif\";\nvar lights_toon_fragment = \"ToonMaterial material;\\nmaterial.diffuseColor = diffuseColor.rgb;\";\nvar lights_toon_pars_fragment = \"varying vec3 vViewPosition;\\nstruct ToonMaterial {\\n\tvec3 diffuseColor;\\n};\\nvoid RE_Direct_Toon( const in IncidentLight directLight, const in GeometricContext geometry, const in ToonMaterial material, inout ReflectedLight reflectedLight ) {\\n\tvec3 irradiance = getGradientIrradiance( geometry.normal, directLight.direction ) * directLight.color;\\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\\n}\\nvoid RE_IndirectDiffuse_Toon( const in vec3 irradiance, const in GeometricContext geometry, const in ToonMaterial material, inout ReflectedLight reflectedLight ) {\\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\\n}\\n#define RE_Direct\t\t\t\tRE_Direct_Toon\\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_Toon\\n#define Material_LightProbeLOD( material )\t(0)\";\nvar lights_phong_fragment = \"BlinnPhongMaterial material;\\nmaterial.diffuseColor = diffuseColor.rgb;\\nmaterial.specularColor = specular;\\nmaterial.specularShininess = shininess;\\nmaterial.specularStrength = specularStrength;\";\nvar lights_phong_pars_fragment = \"varying vec3 vViewPosition;\\nstruct BlinnPhongMaterial {\\n\tvec3 diffuseColor;\\n\tvec3 specularColor;\\n\tfloat specularShininess;\\n\tfloat specularStrength;\\n};\\nvoid RE_Direct_BlinnPhong( const in IncidentLight directLight, const in GeometricContext geometry, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) {\\n\tfloat dotNL = saturate( dot( geometry.normal, directLight.direction ) );\\n\tvec3 irradiance = dotNL * directLight.color;\\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\\n\treflectedLight.directSpecular += irradiance * BRDF_BlinnPhong( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularShininess ) * material.specularStrength;\\n}\\nvoid RE_IndirectDiffuse_BlinnPhong( const in vec3 irradiance, const in GeometricContext geometry, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) {\\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\\n}\\n#define RE_Direct\t\t\t\tRE_Direct_BlinnPhong\\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_BlinnPhong\\n#define Material_LightProbeLOD( material )\t(0)\";\nvar lights_physical_fragment = \"PhysicalMaterial material;\\nmaterial.diffuseColor = diffuseColor.rgb * ( 1.0 - metalnessFactor );\\nvec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) );\\nfloat geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z );\\nmaterial.roughness = max( roughnessFactor, 0.0525 );material.roughness += geometryRoughness;\\nmaterial.roughness = min( material.roughness, 1.0 );\\n#ifdef IOR\\n\t#ifdef SPECULAR\\n\t\tfloat specularIntensityFactor = specularIntensity;\\n\t\tvec3 specularColorFactor = specularColor;\\n\t\t#ifdef USE_SPECULARINTENSITYMAP\\n\t\t\tspecularIntensityFactor *= texture2D( specularIntensityMap, vUv ).a;\\n\t\t#endif\\n\t\t#ifdef USE_SPECULARCOLORMAP\\n\t\t\tspecularColorFactor *= texture2D( specularColorMap, vUv ).rgb;\\n\t\t#endif\\n\t\tmaterial.specularF90 = mix( specularIntensityFactor, 1.0, metalnessFactor );\\n\t#else\\n\t\tfloat specularIntensityFactor = 1.0;\\n\t\tvec3 specularColorFactor = vec3( 1.0 );\\n\t\tmaterial.specularF90 = 1.0;\\n\t#endif\\n\tmaterial.specularColor = mix( min( pow2( ( ior - 1.0 ) / ( ior + 1.0 ) ) * specularColorFactor, vec3( 1.0 ) ) * specularIntensityFactor, diffuseColor.rgb, metalnessFactor );\\n#else\\n\tmaterial.specularColor = mix( vec3( 0.04 ), diffuseColor.rgb, metalnessFactor );\\n\tmaterial.specularF90 = 1.0;\\n#endif\\n#ifdef USE_CLEARCOAT\\n\tmaterial.clearcoat = clearcoat;\\n\tmaterial.clearcoatRoughness = clearcoatRoughness;\\n\tmaterial.clearcoatF0 = vec3( 0.04 );\\n\tmaterial.clearcoatF90 = 1.0;\\n\t#ifdef USE_CLEARCOATMAP\\n\t\tmaterial.clearcoat *= texture2D( clearcoatMap, vUv ).x;\\n\t#endif\\n\t#ifdef USE_CLEARCOAT_ROUGHNESSMAP\\n\t\tmaterial.clearcoatRoughness *= texture2D( clearcoatRoughnessMap, vUv ).y;\\n\t#endif\\n\tmaterial.clearcoat = saturate( material.clearcoat );\tmaterial.clearcoatRoughness = max( material.clearcoatRoughness, 0.0525 );\\n\tmaterial.clearcoatRoughness += geometryRoughness;\\n\tmaterial.clearcoatRoughness = min( material.clearcoatRoughness, 1.0 );\\n#endif\\n#ifdef USE_IRIDESCENCE\\n\tmaterial.iridescence = iridescence;\\n\tmaterial.iridescenceIOR = iridescenceIOR;\\n\t#ifdef USE_IRIDESCENCEMAP\\n\t\tmaterial.iridescence *= texture2D( iridescenceMap, vUv ).r;\\n\t#endif\\n\t#ifdef USE_IRIDESCENCE_THICKNESSMAP\\n\t\tmaterial.iridescenceThickness = (iridescenceThicknessMaximum - iridescenceThicknessMinimum) * texture2D( iridescenceThicknessMap, vUv ).g + iridescenceThicknessMinimum;\\n\t#else\\n\t\tmaterial.iridescenceThickness = iridescenceThicknessMaximum;\\n\t#endif\\n#endif\\n#ifdef USE_SHEEN\\n\tmaterial.sheenColor = sheenColor;\\n\t#ifdef USE_SHEENCOLORMAP\\n\t\tmaterial.sheenColor *= texture2D( sheenColorMap, vUv ).rgb;\\n\t#endif\\n\tmaterial.sheenRoughness = clamp( sheenRoughness, 0.07, 1.0 );\\n\t#ifdef USE_SHEENROUGHNESSMAP\\n\t\tmaterial.sheenRoughness *= texture2D( sheenRoughnessMap, vUv ).a;\\n\t#endif\\n#endif\";\nvar lights_physical_pars_fragment = \"struct PhysicalMaterial {\\n\tvec3 diffuseColor;\\n\tfloat roughness;\\n\tvec3 specularColor;\\n\tfloat specularF90;\\n\t#ifdef USE_CLEARCOAT\\n\t\tfloat clearcoat;\\n\t\tfloat clearcoatRoughness;\\n\t\tvec3 clearcoatF0;\\n\t\tfloat clearcoatF90;\\n\t#endif\\n\t#ifdef USE_IRIDESCENCE\\n\t\tfloat iridescence;\\n\t\tfloat iridescenceIOR;\\n\t\tfloat iridescenceThickness;\\n\t\tvec3 iridescenceFresnel;\\n\t\tvec3 iridescenceF0;\\n\t#endif\\n\t#ifdef USE_SHEEN\\n\t\tvec3 sheenColor;\\n\t\tfloat sheenRoughness;\\n\t#endif\\n};\\nvec3 clearcoatSpecular = vec3( 0.0 );\\nvec3 sheenSpecular = vec3( 0.0 );\\nfloat IBLSheenBRDF( const in vec3 normal, const in vec3 viewDir, const in float roughness) {\\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\\n\tfloat r2 = roughness * roughness;\\n\tfloat a = roughness < 0.25 ? -339.2 * r2 + 161.4 * roughness - 25.9 : -8.48 * r2 + 14.3 * roughness - 9.95;\\n\tfloat b = roughness < 0.25 ? 44.0 * r2 - 23.7 * roughness + 3.26 : 1.97 * r2 - 3.27 * roughness + 0.72;\\n\tfloat DG = exp( a * dotNV + b ) + ( roughness < 0.25 ? 0.0 : 0.1 * ( roughness - 0.25 ) );\\n\treturn saturate( DG * RECIPROCAL_PI );\\n}\\nvec2 DFGApprox( const in vec3 normal, const in vec3 viewDir, const in float roughness ) {\\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\\n\tconst vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 );\\n\tconst vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 );\\n\tvec4 r = roughness * c0 + c1;\\n\tfloat a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y;\\n\tvec2 fab = vec2( - 1.04, 1.04 ) * a004 + r.zw;\\n\treturn fab;\\n}\\nvec3 EnvironmentBRDF( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness ) {\\n\tvec2 fab = DFGApprox( normal, viewDir, roughness );\\n\treturn specularColor * fab.x + specularF90 * fab.y;\\n}\\n#ifdef USE_IRIDESCENCE\\nvoid computeMultiscatteringIridescence( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float iridescence, const in vec3 iridescenceF0, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) {\\n#else\\nvoid computeMultiscattering( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) {\\n#endif\\n\tvec2 fab = DFGApprox( normal, viewDir, roughness );\\n\t#ifdef USE_IRIDESCENCE\\n\t\tvec3 Fr = mix( specularColor, iridescenceF0, iridescence );\\n\t#else\\n\t\tvec3 Fr = specularColor;\\n\t#endif\\n\tvec3 FssEss = Fr * fab.x + specularF90 * fab.y;\\n\tfloat Ess = fab.x + fab.y;\\n\tfloat Ems = 1.0 - Ess;\\n\tvec3 Favg = Fr + ( 1.0 - Fr ) * 0.047619;\tvec3 Fms = FssEss * Favg / ( 1.0 - Ems * Favg );\\n\tsingleScatter += FssEss;\\n\tmultiScatter += Fms * Ems;\\n}\\n#if NUM_RECT_AREA_LIGHTS > 0\\n\tvoid RE_Direct_RectArea_Physical( const in RectAreaLight rectAreaLight, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\\n\t\tvec3 normal = geometry.normal;\\n\t\tvec3 viewDir = geometry.viewDir;\\n\t\tvec3 position = geometry.position;\\n\t\tvec3 lightPos = rectAreaLight.position;\\n\t\tvec3 halfWidth = rectAreaLight.halfWidth;\\n\t\tvec3 halfHeight = rectAreaLight.halfHeight;\\n\t\tvec3 lightColor = rectAreaLight.color;\\n\t\tfloat roughness = material.roughness;\\n\t\tvec3 rectCoords[ 4 ];\\n\t\trectCoords[ 0 ] = lightPos + halfWidth - halfHeight;\t\trectCoords[ 1 ] = lightPos - halfWidth - halfHeight;\\n\t\trectCoords[ 2 ] = lightPos - halfWidth + halfHeight;\\n\t\trectCoords[ 3 ] = lightPos + halfWidth + halfHeight;\\n\t\tvec2 uv = LTC_Uv( normal, viewDir, roughness );\\n\t\tvec4 t1 = texture2D( ltc_1, uv );\\n\t\tvec4 t2 = texture2D( ltc_2, uv );\\n\t\tmat3 mInv = mat3(\\n\t\t\tvec3( t1.x, 0, t1.y ),\\n\t\t\tvec3(    0, 1,    0 ),\\n\t\t\tvec3( t1.z, 0, t1.w )\\n\t\t);\\n\t\tvec3 fresnel = ( material.specularColor * t2.x + ( vec3( 1.0 ) - material.specularColor ) * t2.y );\\n\t\treflectedLight.directSpecular += lightColor * fresnel * LTC_Evaluate( normal, viewDir, position, mInv, rectCoords );\\n\t\treflectedLight.directDiffuse += lightColor * material.diffuseColor * LTC_Evaluate( normal, viewDir, position, mat3( 1.0 ), rectCoords );\\n\t}\\n#endif\\nvoid RE_Direct_Physical( const in IncidentLight directLight, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\\n\tfloat dotNL = saturate( dot( geometry.normal, directLight.direction ) );\\n\tvec3 irradiance = dotNL * directLight.color;\\n\t#ifdef USE_CLEARCOAT\\n\t\tfloat dotNLcc = saturate( dot( geometry.clearcoatNormal, directLight.direction ) );\\n\t\tvec3 ccIrradiance = dotNLcc * directLight.color;\\n\t\tclearcoatSpecular += ccIrradiance * BRDF_GGX( directLight.direction, geometry.viewDir, geometry.clearcoatNormal, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness );\\n\t#endif\\n\t#ifdef USE_SHEEN\\n\t\tsheenSpecular += irradiance * BRDF_Sheen( directLight.direction, geometry.viewDir, geometry.normal, material.sheenColor, material.sheenRoughness );\\n\t#endif\\n\t#ifdef USE_IRIDESCENCE\\n\t\treflectedLight.directSpecular += irradiance * BRDF_GGX_Iridescence( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness );\\n\t#else\\n\t\treflectedLight.directSpecular += irradiance * BRDF_GGX( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularF90, material.roughness );\\n\t#endif\\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\\n}\\nvoid RE_IndirectDiffuse_Physical( const in vec3 irradiance, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\\n}\\nvoid RE_IndirectSpecular_Physical( const in vec3 radiance, const in vec3 irradiance, const in vec3 clearcoatRadiance, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight) {\\n\t#ifdef USE_CLEARCOAT\\n\t\tclearcoatSpecular += clearcoatRadiance * EnvironmentBRDF( geometry.clearcoatNormal, geometry.viewDir, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness );\\n\t#endif\\n\t#ifdef USE_SHEEN\\n\t\tsheenSpecular += irradiance * material.sheenColor * IBLSheenBRDF( geometry.normal, geometry.viewDir, material.sheenRoughness );\\n\t#endif\\n\tvec3 singleScattering = vec3( 0.0 );\\n\tvec3 multiScattering = vec3( 0.0 );\\n\tvec3 cosineWeightedIrradiance = irradiance * RECIPROCAL_PI;\\n\t#ifdef USE_IRIDESCENCE\\n\t\tcomputeMultiscatteringIridescence( geometry.normal, geometry.viewDir, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness, singleScattering, multiScattering );\\n\t#else\\n\t\tcomputeMultiscattering( geometry.normal, geometry.viewDir, material.specularColor, material.specularF90, material.roughness, singleScattering, multiScattering );\\n\t#endif\\n\tvec3 totalScattering = singleScattering + multiScattering;\\n\tvec3 diffuse = material.diffuseColor * ( 1.0 - max( max( totalScattering.r, totalScattering.g ), totalScattering.b ) );\\n\treflectedLight.indirectSpecular += radiance * singleScattering;\\n\treflectedLight.indirectSpecular += multiScattering * cosineWeightedIrradiance;\\n\treflectedLight.indirectDiffuse += diffuse * cosineWeightedIrradiance;\\n}\\n#define RE_Direct\t\t\t\tRE_Direct_Physical\\n#define RE_Direct_RectArea\t\tRE_Direct_RectArea_Physical\\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_Physical\\n#define RE_IndirectSpecular\t\tRE_IndirectSpecular_Physical\\nfloat computeSpecularOcclusion( const in float dotNV, const in float ambientOcclusion, const in float roughness ) {\\n\treturn saturate( pow( dotNV + ambientOcclusion, exp2( - 16.0 * roughness - 1.0 ) ) - 1.0 + ambientOcclusion );\\n}\";\nvar lights_fragment_begin = \"\\nGeometricContext geometry;\\ngeometry.position = - vViewPosition;\\ngeometry.normal = normal;\\ngeometry.viewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( vViewPosition );\\n#ifdef USE_CLEARCOAT\\n\tgeometry.clearcoatNormal = clearcoatNormal;\\n#endif\\n#ifdef USE_IRIDESCENCE\\n\tfloat dotNVi = saturate( dot( normal, geometry.viewDir ) );\\n\tif ( material.iridescenceThickness == 0.0 ) {\\n\t\tmaterial.iridescence = 0.0;\\n\t} else {\\n\t\tmaterial.iridescence = saturate( material.iridescence );\\n\t}\\n\tif ( material.iridescence > 0.0 ) {\\n\t\tmaterial.iridescenceFresnel = evalIridescence( 1.0, material.iridescenceIOR, dotNVi, material.iridescenceThickness, material.specularColor );\\n\t\tmaterial.iridescenceF0 = Schlick_to_F0( material.iridescenceFresnel, 1.0, dotNVi );\\n\t}\\n#endif\\nIncidentLight directLight;\\n#if ( NUM_POINT_LIGHTS > 0 ) && defined( RE_Direct )\\n\tPointLight pointLight;\\n\t#if defined( USE_SHADOWMAP ) && NUM_POINT_LIGHT_SHADOWS > 0\\n\tPointLightShadow pointLightShadow;\\n\t#endif\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) {\\n\t\tpointLight = pointLights[ i ];\\n\t\tgetPointLightInfo( pointLight, geometry, directLight );\\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_POINT_LIGHT_SHADOWS )\\n\t\tpointLightShadow = pointLightShadows[ i ];\\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getPointShadow( pointShadowMap[ i ], pointLightShadow.shadowMapSize, pointLightShadow.shadowBias, pointLightShadow.shadowRadius, vPointShadowCoord[ i ], pointLightShadow.shadowCameraNear, pointLightShadow.shadowCameraFar ) : 1.0;\\n\t\t#endif\\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\\n\t}\\n\t#pragma unroll_loop_end\\n#endif\\n#if ( NUM_SPOT_LIGHTS > 0 ) && defined( RE_Direct )\\n\tSpotLight spotLight;\\n\t#if defined( USE_SHADOWMAP ) && NUM_SPOT_LIGHT_SHADOWS > 0\\n\tSpotLightShadow spotLightShadow;\\n\t#endif\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) {\\n\t\tspotLight = spotLights[ i ];\\n\t\tgetSpotLightInfo( spotLight, geometry, directLight );\\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS )\\n\t\tspotLightShadow = spotLightShadows[ i ];\\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getShadow( spotShadowMap[ i ], spotLightShadow.shadowMapSize, spotLightShadow.shadowBias, spotLightShadow.shadowRadius, vSpotShadowCoord[ i ] ) : 1.0;\\n\t\t#endif\\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\\n\t}\\n\t#pragma unroll_loop_end\\n#endif\\n#if ( NUM_DIR_LIGHTS > 0 ) && defined( RE_Direct )\\n\tDirectionalLight directionalLight;\\n\t#if defined( USE_SHADOWMAP ) && NUM_DIR_LIGHT_SHADOWS > 0\\n\tDirectionalLightShadow directionalLightShadow;\\n\t#endif\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) {\\n\t\tdirectionalLight = directionalLights[ i ];\\n\t\tgetDirectionalLightInfo( directionalLight, geometry, directLight );\\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_DIR_LIGHT_SHADOWS )\\n\t\tdirectionalLightShadow = directionalLightShadows[ i ];\\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getShadow( directionalShadowMap[ i ], directionalLightShadow.shadowMapSize, directionalLightShadow.shadowBias, directionalLightShadow.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0;\\n\t\t#endif\\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\\n\t}\\n\t#pragma unroll_loop_end\\n#endif\\n#if ( NUM_RECT_AREA_LIGHTS > 0 ) && defined( RE_Direct_RectArea )\\n\tRectAreaLight rectAreaLight;\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_RECT_AREA_LIGHTS; i ++ ) {\\n\t\trectAreaLight = rectAreaLights[ i ];\\n\t\tRE_Direct_RectArea( rectAreaLight, geometry, material, reflectedLight );\\n\t}\\n\t#pragma unroll_loop_end\\n#endif\\n#if defined( RE_IndirectDiffuse )\\n\tvec3 iblIrradiance = vec3( 0.0 );\\n\tvec3 irradiance = getAmbientLightIrradiance( ambientLightColor );\\n\tirradiance += getLightProbeIrradiance( lightProbe, geometry.normal );\\n\t#if ( NUM_HEMI_LIGHTS > 0 )\\n\t\t#pragma unroll_loop_start\\n\t\tfor ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) {\\n\t\t\tirradiance += getHemisphereLightIrradiance( hemisphereLights[ i ], geometry.normal );\\n\t\t}\\n\t\t#pragma unroll_loop_end\\n\t#endif\\n#endif\\n#if defined( RE_IndirectSpecular )\\n\tvec3 radiance = vec3( 0.0 );\\n\tvec3 clearcoatRadiance = vec3( 0.0 );\\n#endif\";\nvar lights_fragment_maps = \"#if defined( RE_IndirectDiffuse )\\n\t#ifdef USE_LIGHTMAP\\n\t\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\\n\t\tvec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity;\\n\t\tirradiance += lightMapIrradiance;\\n\t#endif\\n\t#if defined( USE_ENVMAP ) && defined( STANDARD ) && defined( ENVMAP_TYPE_CUBE_UV )\\n\t\tiblIrradiance += getIBLIrradiance( geometry.normal );\\n\t#endif\\n#endif\\n#if defined( USE_ENVMAP ) && defined( RE_IndirectSpecular )\\n\tradiance += getIBLRadiance( geometry.viewDir, geometry.normal, material.roughness );\\n\t#ifdef USE_CLEARCOAT\\n\t\tclearcoatRadiance += getIBLRadiance( geometry.viewDir, geometry.clearcoatNormal, material.clearcoatRoughness );\\n\t#endif\\n#endif\";\nvar lights_fragment_end = \"#if defined( RE_IndirectDiffuse )\\n\tRE_IndirectDiffuse( irradiance, geometry, material, reflectedLight );\\n#endif\\n#if defined( RE_IndirectSpecular )\\n\tRE_IndirectSpecular( radiance, iblIrradiance, clearcoatRadiance, geometry, material, reflectedLight );\\n#endif\";\nvar logdepthbuf_fragment = \"#if defined( USE_LOGDEPTHBUF ) && defined( USE_LOGDEPTHBUF_EXT )\\n\tgl_FragDepthEXT = vIsPerspective == 0.0 ? gl_FragCoord.z : log2( vFragDepth ) * logDepthBufFC * 0.5;\\n#endif\";\nvar logdepthbuf_pars_fragment = \"#if defined( USE_LOGDEPTHBUF ) && defined( USE_LOGDEPTHBUF_EXT )\\n\tuniform float logDepthBufFC;\\n\tvarying float vFragDepth;\\n\tvarying float vIsPerspective;\\n#endif\";\nvar logdepthbuf_pars_vertex = \"#ifdef USE_LOGDEPTHBUF\\n\t#ifdef USE_LOGDEPTHBUF_EXT\\n\t\tvarying float vFragDepth;\\n\t\tvarying float vIsPerspective;\\n\t#else\\n\t\tuniform float logDepthBufFC;\\n\t#endif\\n#endif\";\nvar logdepthbuf_vertex = \"#ifdef USE_LOGDEPTHBUF\\n\t#ifdef USE_LOGDEPTHBUF_EXT\\n\t\tvFragDepth = 1.0 + gl_Position.w;\\n\t\tvIsPerspective = float( isPerspectiveMatrix( projectionMatrix ) );\\n\t#else\\n\t\tif ( isPerspectiveMatrix( projectionMatrix ) ) {\\n\t\t\tgl_Position.z = log2( max( EPSILON, gl_Position.w + 1.0 ) ) * logDepthBufFC - 1.0;\\n\t\t\tgl_Position.z *= gl_Position.w;\\n\t\t}\\n\t#endif\\n#endif\";\nvar map_fragment = \"#ifdef USE_MAP\\n\tvec4 sampledDiffuseColor = texture2D( map, vUv );\\n\t#ifdef DECODE_VIDEO_TEXTURE\\n\t\tsampledDiffuseColor = vec4( mix( pow( sampledDiffuseColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), sampledDiffuseColor.rgb * 0.0773993808, vec3( lessThanEqual( sampledDiffuseColor.rgb, vec3( 0.04045 ) ) ) ), sampledDiffuseColor.w );\\n\t#endif\\n\tdiffuseColor *= sampledDiffuseColor;\\n#endif\";\nvar map_pars_fragment = \"#ifdef USE_MAP\\n\tuniform sampler2D map;\\n#endif\";\nvar map_particle_fragment = \"#if defined( USE_MAP ) || defined( USE_ALPHAMAP )\\n\tvec2 uv = ( uvTransform * vec3( gl_PointCoord.x, 1.0 - gl_PointCoord.y, 1 ) ).xy;\\n#endif\\n#ifdef USE_MAP\\n\tdiffuseColor *= texture2D( map, uv );\\n#endif\\n#ifdef USE_ALPHAMAP\\n\tdiffuseColor.a *= texture2D( alphaMap, uv ).g;\\n#endif\";\nvar map_particle_pars_fragment = \"#if defined( USE_MAP ) || defined( USE_ALPHAMAP )\\n\tuniform mat3 uvTransform;\\n#endif\\n#ifdef USE_MAP\\n\tuniform sampler2D map;\\n#endif\\n#ifdef USE_ALPHAMAP\\n\tuniform sampler2D alphaMap;\\n#endif\";\nvar metalnessmap_fragment = \"float metalnessFactor = metalness;\\n#ifdef USE_METALNESSMAP\\n\tvec4 texelMetalness = texture2D( metalnessMap, vUv );\\n\tmetalnessFactor *= texelMetalness.b;\\n#endif\";\nvar metalnessmap_pars_fragment = \"#ifdef USE_METALNESSMAP\\n\tuniform sampler2D metalnessMap;\\n#endif\";\nvar morphcolor_vertex = \"#if defined( USE_MORPHCOLORS ) && defined( MORPHTARGETS_TEXTURE )\\n\tvColor *= morphTargetBaseInfluence;\\n\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\\n\t\t#if defined( USE_COLOR_ALPHA )\\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ) * morphTargetInfluences[ i ];\\n\t\t#elif defined( USE_COLOR )\\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ).rgb * morphTargetInfluences[ i ];\\n\t\t#endif\\n\t}\\n#endif\";\nvar morphnormal_vertex = \"#ifdef USE_MORPHNORMALS\\n\tobjectNormal *= morphTargetBaseInfluence;\\n\t#ifdef MORPHTARGETS_TEXTURE\\n\t\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) objectNormal += getMorph( gl_VertexID, i, 1 ).xyz * morphTargetInfluences[ i ];\\n\t\t}\\n\t#else\\n\t\tobjectNormal += morphNormal0 * morphTargetInfluences[ 0 ];\\n\t\tobjectNormal += morphNormal1 * morphTargetInfluences[ 1 ];\\n\t\tobjectNormal += morphNormal2 * morphTargetInfluences[ 2 ];\\n\t\tobjectNormal += morphNormal3 * morphTargetInfluences[ 3 ];\\n\t#endif\\n#endif\";\nvar morphtarget_pars_vertex = \"#ifdef USE_MORPHTARGETS\\n\tuniform float morphTargetBaseInfluence;\\n\t#ifdef MORPHTARGETS_TEXTURE\\n\t\tuniform float morphTargetInfluences[ MORPHTARGETS_COUNT ];\\n\t\tuniform sampler2DArray morphTargetsTexture;\\n\t\tuniform ivec2 morphTargetsTextureSize;\\n\t\tvec4 getMorph( const in int vertexIndex, const in int morphTargetIndex, const in int offset ) {\\n\t\t\tint texelIndex = vertexIndex * MORPHTARGETS_TEXTURE_STRIDE + offset;\\n\t\t\tint y = texelIndex / morphTargetsTextureSize.x;\\n\t\t\tint x = texelIndex - y * morphTargetsTextureSize.x;\\n\t\t\tivec3 morphUV = ivec3( x, y, morphTargetIndex );\\n\t\t\treturn texelFetch( morphTargetsTexture, morphUV, 0 );\\n\t\t}\\n\t#else\\n\t\t#ifndef USE_MORPHNORMALS\\n\t\t\tuniform float morphTargetInfluences[ 8 ];\\n\t\t#else\\n\t\t\tuniform float morphTargetInfluences[ 4 ];\\n\t\t#endif\\n\t#endif\\n#endif\";\nvar morphtarget_vertex = \"#ifdef USE_MORPHTARGETS\\n\ttransformed *= morphTargetBaseInfluence;\\n\t#ifdef MORPHTARGETS_TEXTURE\\n\t\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) transformed += getMorph( gl_VertexID, i, 0 ).xyz * morphTargetInfluences[ i ];\\n\t\t}\\n\t#else\\n\t\ttransformed += morphTarget0 * morphTargetInfluences[ 0 ];\\n\t\ttransformed += morphTarget1 * morphTargetInfluences[ 1 ];\\n\t\ttransformed += morphTarget2 * morphTargetInfluences[ 2 ];\\n\t\ttransformed += morphTarget3 * morphTargetInfluences[ 3 ];\\n\t\t#ifndef USE_MORPHNORMALS\\n\t\t\ttransformed += morphTarget4 * morphTargetInfluences[ 4 ];\\n\t\t\ttransformed += morphTarget5 * morphTargetInfluences[ 5 ];\\n\t\t\ttransformed += morphTarget6 * morphTargetInfluences[ 6 ];\\n\t\t\ttransformed += morphTarget7 * morphTargetInfluences[ 7 ];\\n\t\t#endif\\n\t#endif\\n#endif\";\nvar normal_fragment_begin = \"float faceDirection = gl_FrontFacing ? 1.0 : - 1.0;\\n#ifdef FLAT_SHADED\\n\tvec3 fdx = vec3( dFdx( vViewPosition.x ), dFdx( vViewPosition.y ), dFdx( vViewPosition.z ) );\\n\tvec3 fdy = vec3( dFdy( vViewPosition.x ), dFdy( vViewPosition.y ), dFdy( vViewPosition.z ) );\\n\tvec3 normal = normalize( cross( fdx, fdy ) );\\n#else\\n\tvec3 normal = normalize( vNormal );\\n\t#ifdef DOUBLE_SIDED\\n\t\tnormal = normal * faceDirection;\\n\t#endif\\n\t#ifdef USE_TANGENT\\n\t\tvec3 tangent = normalize( vTangent );\\n\t\tvec3 bitangent = normalize( vBitangent );\\n\t\t#ifdef DOUBLE_SIDED\\n\t\t\ttangent = tangent * faceDirection;\\n\t\t\tbitangent = bitangent * faceDirection;\\n\t\t#endif\\n\t\t#if defined( TANGENTSPACE_NORMALMAP ) || defined( USE_CLEARCOAT_NORMALMAP )\\n\t\t\tmat3 vTBN = mat3( tangent, bitangent, normal );\\n\t\t#endif\\n\t#endif\\n#endif\\nvec3 geometryNormal = normal;\";\nvar normal_fragment_maps = \"#ifdef OBJECTSPACE_NORMALMAP\\n\tnormal = texture2D( normalMap, vUv ).xyz * 2.0 - 1.0;\\n\t#ifdef FLIP_SIDED\\n\t\tnormal = - normal;\\n\t#endif\\n\t#ifdef DOUBLE_SIDED\\n\t\tnormal = normal * faceDirection;\\n\t#endif\\n\tnormal = normalize( normalMatrix * normal );\\n#elif defined( TANGENTSPACE_NORMALMAP )\\n\tvec3 mapN = texture2D( normalMap, vUv ).xyz * 2.0 - 1.0;\\n\tmapN.xy *= normalScale;\\n\t#ifdef USE_TANGENT\\n\t\tnormal = normalize( vTBN * mapN );\\n\t#else\\n\t\tnormal = perturbNormal2Arb( - vViewPosition, normal, mapN, faceDirection );\\n\t#endif\\n#elif defined( USE_BUMPMAP )\\n\tnormal = perturbNormalArb( - vViewPosition, normal, dHdxy_fwd(), faceDirection );\\n#endif\";\nvar normal_pars_fragment = \"#ifndef FLAT_SHADED\\n\tvarying vec3 vNormal;\\n\t#ifdef USE_TANGENT\\n\t\tvarying vec3 vTangent;\\n\t\tvarying vec3 vBitangent;\\n\t#endif\\n#endif\";\nvar normal_pars_vertex = \"#ifndef FLAT_SHADED\\n\tvarying vec3 vNormal;\\n\t#ifdef USE_TANGENT\\n\t\tvarying vec3 vTangent;\\n\t\tvarying vec3 vBitangent;\\n\t#endif\\n#endif\";\nvar normal_vertex = \"#ifndef FLAT_SHADED\\n\tvNormal = normalize( transformedNormal );\\n\t#ifdef USE_TANGENT\\n\t\tvTangent = normalize( transformedTangent );\\n\t\tvBitangent = normalize( cross( vNormal, vTangent ) * tangent.w );\\n\t#endif\\n#endif\";\nvar normalmap_pars_fragment = \"#ifdef USE_NORMALMAP\\n\tuniform sampler2D normalMap;\\n\tuniform vec2 normalScale;\\n#endif\\n#ifdef OBJECTSPACE_NORMALMAP\\n\tuniform mat3 normalMatrix;\\n#endif\\n#if ! defined ( USE_TANGENT ) && ( defined ( TANGENTSPACE_NORMALMAP ) || defined ( USE_CLEARCOAT_NORMALMAP ) )\\n\tvec3 perturbNormal2Arb( vec3 eye_pos, vec3 surf_norm, vec3 mapN, float faceDirection ) {\\n\t\tvec3 q0 = dFdx( eye_pos.xyz );\\n\t\tvec3 q1 = dFdy( eye_pos.xyz );\\n\t\tvec2 st0 = dFdx( vUv.st );\\n\t\tvec2 st1 = dFdy( vUv.st );\\n\t\tvec3 N = surf_norm;\\n\t\tvec3 q1perp = cross( q1, N );\\n\t\tvec3 q0perp = cross( N, q0 );\\n\t\tvec3 T = q1perp * st0.x + q0perp * st1.x;\\n\t\tvec3 B = q1perp * st0.y + q0perp * st1.y;\\n\t\tfloat det = max( dot( T, T ), dot( B, B ) );\\n\t\tfloat scale = ( det == 0.0 ) ? 0.0 : faceDirection * inversesqrt( det );\\n\t\treturn normalize( T * ( mapN.x * scale ) + B * ( mapN.y * scale ) + N * mapN.z );\\n\t}\\n#endif\";\nvar clearcoat_normal_fragment_begin = \"#ifdef USE_CLEARCOAT\\n\tvec3 clearcoatNormal = geometryNormal;\\n#endif\";\nvar clearcoat_normal_fragment_maps = \"#ifdef USE_CLEARCOAT_NORMALMAP\\n\tvec3 clearcoatMapN = texture2D( clearcoatNormalMap, vUv ).xyz * 2.0 - 1.0;\\n\tclearcoatMapN.xy *= clearcoatNormalScale;\\n\t#ifdef USE_TANGENT\\n\t\tclearcoatNormal = normalize( vTBN * clearcoatMapN );\\n\t#else\\n\t\tclearcoatNormal = perturbNormal2Arb( - vViewPosition, clearcoatNormal, clearcoatMapN, faceDirection );\\n\t#endif\\n#endif\";\nvar clearcoat_pars_fragment = \"#ifdef USE_CLEARCOATMAP\\n\tuniform sampler2D clearcoatMap;\\n#endif\\n#ifdef USE_CLEARCOAT_ROUGHNESSMAP\\n\tuniform sampler2D clearcoatRoughnessMap;\\n#endif\\n#ifdef USE_CLEARCOAT_NORMALMAP\\n\tuniform sampler2D clearcoatNormalMap;\\n\tuniform vec2 clearcoatNormalScale;\\n#endif\";\nvar iridescence_pars_fragment = \"#ifdef USE_IRIDESCENCEMAP\\n\tuniform sampler2D iridescenceMap;\\n#endif\\n#ifdef USE_IRIDESCENCE_THICKNESSMAP\\n\tuniform sampler2D iridescenceThicknessMap;\\n#endif\";\nvar output_fragment = \"#ifdef OPAQUE\\ndiffuseColor.a = 1.0;\\n#endif\\n#ifdef USE_TRANSMISSION\\ndiffuseColor.a *= transmissionAlpha + 0.1;\\n#endif\\ngl_FragColor = vec4( outgoingLight, diffuseColor.a );\";\nvar packing = \"vec3 packNormalToRGB( const in vec3 normal ) {\\n\treturn normalize( normal ) * 0.5 + 0.5;\\n}\\nvec3 unpackRGBToNormal( const in vec3 rgb ) {\\n\treturn 2.0 * rgb.xyz - 1.0;\\n}\\nconst float PackUpscale = 256. / 255.;const float UnpackDownscale = 255. / 256.;\\nconst vec3 PackFactors = vec3( 256. * 256. * 256., 256. * 256., 256. );\\nconst vec4 UnpackFactors = UnpackDownscale / vec4( PackFactors, 1. );\\nconst float ShiftRight8 = 1. / 256.;\\nvec4 packDepthToRGBA( const in float v ) {\\n\tvec4 r = vec4( fract( v * PackFactors ), v );\\n\tr.yzw -= r.xyz * ShiftRight8;\treturn r * PackUpscale;\\n}\\nfloat unpackRGBAToDepth( const in vec4 v ) {\\n\treturn dot( v, UnpackFactors );\\n}\\nvec4 pack2HalfToRGBA( vec2 v ) {\\n\tvec4 r = vec4( v.x, fract( v.x * 255.0 ), v.y, fract( v.y * 255.0 ) );\\n\treturn vec4( r.x - r.y / 255.0, r.y, r.z - r.w / 255.0, r.w );\\n}\\nvec2 unpackRGBATo2Half( vec4 v ) {\\n\treturn vec2( v.x + ( v.y / 255.0 ), v.z + ( v.w / 255.0 ) );\\n}\\nfloat viewZToOrthographicDepth( const in float viewZ, const in float near, const in float far ) {\\n\treturn ( viewZ + near ) / ( near - far );\\n}\\nfloat orthographicDepthToViewZ( const in float linearClipZ, const in float near, const in float far ) {\\n\treturn linearClipZ * ( near - far ) - near;\\n}\\nfloat viewZToPerspectiveDepth( const in float viewZ, const in float near, const in float far ) {\\n\treturn ( ( near + viewZ ) * far ) / ( ( far - near ) * viewZ );\\n}\\nfloat perspectiveDepthToViewZ( const in float invClipZ, const in float near, const in float far ) {\\n\treturn ( near * far ) / ( ( far - near ) * invClipZ - far );\\n}\";\nvar premultiplied_alpha_fragment = \"#ifdef PREMULTIPLIED_ALPHA\\n\tgl_FragColor.rgb *= gl_FragColor.a;\\n#endif\";\nvar project_vertex = \"vec4 mvPosition = vec4( transformed, 1.0 );\\n#ifdef USE_INSTANCING\\n\tmvPosition = instanceMatrix * mvPosition;\\n#endif\\nmvPosition = modelViewMatrix * mvPosition;\\ngl_Position = projectionMatrix * mvPosition;\";\nvar dithering_fragment = \"#ifdef DITHERING\\n\tgl_FragColor.rgb = dithering( gl_FragColor.rgb );\\n#endif\";\nvar dithering_pars_fragment = \"#ifdef DITHERING\\n\tvec3 dithering( vec3 color ) {\\n\t\tfloat grid_position = rand( gl_FragCoord.xy );\\n\t\tvec3 dither_shift_RGB = vec3( 0.25 / 255.0, -0.25 / 255.0, 0.25 / 255.0 );\\n\t\tdither_shift_RGB = mix( 2.0 * dither_shift_RGB, -2.0 * dither_shift_RGB, grid_position );\\n\t\treturn color + dither_shift_RGB;\\n\t}\\n#endif\";\nvar roughnessmap_fragment = \"float roughnessFactor = roughness;\\n#ifdef USE_ROUGHNESSMAP\\n\tvec4 texelRoughness = texture2D( roughnessMap, vUv );\\n\troughnessFactor *= texelRoughness.g;\\n#endif\";\nvar roughnessmap_pars_fragment = \"#ifdef USE_ROUGHNESSMAP\\n\tuniform sampler2D roughnessMap;\\n#endif\";\nvar shadowmap_pars_fragment = \"#ifdef USE_SHADOWMAP\\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\\n\t\tuniform sampler2D directionalShadowMap[ NUM_DIR_LIGHT_SHADOWS ];\\n\t\tvarying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ];\\n\t\tstruct DirectionalLightShadow {\\n\t\t\tfloat shadowBias;\\n\t\t\tfloat shadowNormalBias;\\n\t\t\tfloat shadowRadius;\\n\t\t\tvec2 shadowMapSize;\\n\t\t};\\n\t\tuniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ];\\n\t#endif\\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\\n\t\tuniform sampler2D spotShadowMap[ NUM_SPOT_LIGHT_SHADOWS ];\\n\t\tvarying vec4 vSpotShadowCoord[ NUM_SPOT_LIGHT_SHADOWS ];\\n\t\tstruct SpotLightShadow {\\n\t\t\tfloat shadowBias;\\n\t\t\tfloat shadowNormalBias;\\n\t\t\tfloat shadowRadius;\\n\t\t\tvec2 shadowMapSize;\\n\t\t};\\n\t\tuniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ];\\n\t#endif\\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\\n\t\tuniform sampler2D pointShadowMap[ NUM_POINT_LIGHT_SHADOWS ];\\n\t\tvarying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ];\\n\t\tstruct PointLightShadow {\\n\t\t\tfloat shadowBias;\\n\t\t\tfloat shadowNormalBias;\\n\t\t\tfloat shadowRadius;\\n\t\t\tvec2 shadowMapSize;\\n\t\t\tfloat shadowCameraNear;\\n\t\t\tfloat shadowCameraFar;\\n\t\t};\\n\t\tuniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ];\\n\t#endif\\n\tfloat texture2DCompare( sampler2D depths, vec2 uv, float compare ) {\\n\t\treturn step( compare, unpackRGBAToDepth( texture2D( depths, uv ) ) );\\n\t}\\n\tvec2 texture2DDistribution( sampler2D shadow, vec2 uv ) {\\n\t\treturn unpackRGBATo2Half( texture2D( shadow, uv ) );\\n\t}\\n\tfloat VSMShadow (sampler2D shadow, vec2 uv, float compare ){\\n\t\tfloat occlusion = 1.0;\\n\t\tvec2 distribution = texture2DDistribution( shadow, uv );\\n\t\tfloat hard_shadow = step( compare , distribution.x );\\n\t\tif (hard_shadow != 1.0 ) {\\n\t\t\tfloat distance = compare - distribution.x ;\\n\t\t\tfloat variance = max( 0.00000, distribution.y * distribution.y );\\n\t\t\tfloat softness_probability = variance / (variance + distance * distance );\t\t\tsoftness_probability = clamp( ( softness_probability - 0.3 ) / ( 0.95 - 0.3 ), 0.0, 1.0 );\t\t\tocclusion = clamp( max( hard_shadow, softness_probability ), 0.0, 1.0 );\\n\t\t}\\n\t\treturn occlusion;\\n\t}\\n\tfloat getShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowBias, float shadowRadius, vec4 shadowCoord ) {\\n\t\tfloat shadow = 1.0;\\n\t\tshadowCoord.xyz /= shadowCoord.w;\\n\t\tshadowCoord.z += shadowBias;\\n\t\tbvec4 inFrustumVec = bvec4 ( shadowCoord.x >= 0.0, shadowCoord.x <= 1.0, shadowCoord.y >= 0.0, shadowCoord.y <= 1.0 );\\n\t\tbool inFrustum = all( inFrustumVec );\\n\t\tbvec2 frustumTestVec = bvec2( inFrustum, shadowCoord.z <= 1.0 );\\n\t\tbool frustumTest = all( frustumTestVec );\\n\t\tif ( frustumTest ) {\\n\t\t#if defined( SHADOWMAP_TYPE_PCF )\\n\t\t\tvec2 texelSize = vec2( 1.0 ) / shadowMapSize;\\n\t\t\tfloat dx0 = - texelSize.x * shadowRadius;\\n\t\t\tfloat dy0 = - texelSize.y * shadowRadius;\\n\t\t\tfloat dx1 = + texelSize.x * shadowRadius;\\n\t\t\tfloat dy1 = + texelSize.y * shadowRadius;\\n\t\t\tfloat dx2 = dx0 / 2.0;\\n\t\t\tfloat dy2 = dy0 / 2.0;\\n\t\t\tfloat dx3 = dx1 / 2.0;\\n\t\t\tfloat dy3 = dy1 / 2.0;\\n\t\t\tshadow = (\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy0 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy0 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy0 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy2 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy2 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy2 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, 0.0 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, 0.0 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, 0.0 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, 0.0 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy3 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy3 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy3 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy1 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy1 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy1 ), shadowCoord.z )\\n\t\t\t) * ( 1.0 / 17.0 );\\n\t\t#elif defined( SHADOWMAP_TYPE_PCF_SOFT )\\n\t\t\tvec2 texelSize = vec2( 1.0 ) / shadowMapSize;\\n\t\t\tfloat dx = texelSize.x;\\n\t\t\tfloat dy = texelSize.y;\\n\t\t\tvec2 uv = shadowCoord.xy;\\n\t\t\tvec2 f = fract( uv * shadowMapSize + 0.5 );\\n\t\t\tuv -= f * texelSize;\\n\t\t\tshadow = (\\n\t\t\t\ttexture2DCompare( shadowMap, uv, shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, uv + vec2( dx, 0.0 ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, uv + vec2( 0.0, dy ), shadowCoord.z ) +\\n\t\t\t\ttexture2DCompare( shadowMap, uv + texelSize, shadowCoord.z ) +\\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( -dx, 0.0 ), shadowCoord.z ), \\n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 0.0 ), shadowCoord.z ),\\n\t\t\t\t\t f.x ) +\\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( -dx, dy ), shadowCoord.z ), \\n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, dy ), shadowCoord.z ),\\n\t\t\t\t\t f.x ) +\\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( 0.0, -dy ), shadowCoord.z ), \\n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 0.0, 2.0 * dy ), shadowCoord.z ),\\n\t\t\t\t\t f.y ) +\\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( dx, -dy ), shadowCoord.z ), \\n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( dx, 2.0 * dy ), shadowCoord.z ),\\n\t\t\t\t\t f.y ) +\\n\t\t\t\tmix( mix( texture2DCompare( shadowMap, uv + vec2( -dx, -dy ), shadowCoord.z ), \\n\t\t\t\t\t\t  texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, -dy ), shadowCoord.z ),\\n\t\t\t\t\t\t  f.x ),\\n\t\t\t\t\t mix( texture2DCompare( shadowMap, uv + vec2( -dx, 2.0 * dy ), shadowCoord.z ), \\n\t\t\t\t\t\t  texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 2.0 * dy ), shadowCoord.z ),\\n\t\t\t\t\t\t  f.x ),\\n\t\t\t\t\t f.y )\\n\t\t\t) * ( 1.0 / 9.0 );\\n\t\t#elif defined( SHADOWMAP_TYPE_VSM )\\n\t\t\tshadow = VSMShadow( shadowMap, shadowCoord.xy, shadowCoord.z );\\n\t\t#else\\n\t\t\tshadow = texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z );\\n\t\t#endif\\n\t\t}\\n\t\treturn shadow;\\n\t}\\n\tvec2 cubeToUV( vec3 v, float texelSizeY ) {\\n\t\tvec3 absV = abs( v );\\n\t\tfloat scaleToCube = 1.0 / max( absV.x, max( absV.y, absV.z ) );\\n\t\tabsV *= scaleToCube;\\n\t\tv *= scaleToCube * ( 1.0 - 2.0 * texelSizeY );\\n\t\tvec2 planar = v.xy;\\n\t\tfloat almostATexel = 1.5 * texelSizeY;\\n\t\tfloat almostOne = 1.0 - almostATexel;\\n\t\tif ( absV.z >= almostOne ) {\\n\t\t\tif ( v.z > 0.0 )\\n\t\t\t\tplanar.x = 4.0 - v.x;\\n\t\t} else if ( absV.x >= almostOne ) {\\n\t\t\tfloat signX = sign( v.x );\\n\t\t\tplanar.x = v.z * signX + 2.0 * signX;\\n\t\t} else if ( absV.y >= almostOne ) {\\n\t\t\tfloat signY = sign( v.y );\\n\t\t\tplanar.x = v.x + 2.0 * signY + 2.0;\\n\t\t\tplanar.y = v.z * signY - 2.0;\\n\t\t}\\n\t\treturn vec2( 0.125, 0.25 ) * planar + vec2( 0.375, 0.75 );\\n\t}\\n\tfloat getPointShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowBias, float shadowRadius, vec4 shadowCoord, float shadowCameraNear, float shadowCameraFar ) {\\n\t\tvec2 texelSize = vec2( 1.0 ) / ( shadowMapSize * vec2( 4.0, 2.0 ) );\\n\t\tvec3 lightToPosition = shadowCoord.xyz;\\n\t\tfloat dp = ( length( lightToPosition ) - shadowCameraNear ) / ( shadowCameraFar - shadowCameraNear );\t\tdp += shadowBias;\\n\t\tvec3 bd3D = normalize( lightToPosition );\\n\t\t#if defined( SHADOWMAP_TYPE_PCF ) || defined( SHADOWMAP_TYPE_PCF_SOFT ) || defined( SHADOWMAP_TYPE_VSM )\\n\t\t\tvec2 offset = vec2( - 1, 1 ) * shadowRadius * texelSize.y;\\n\t\t\treturn (\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyy, texelSize.y ), dp ) +\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyy, texelSize.y ), dp ) +\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyx, texelSize.y ), dp ) +\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyx, texelSize.y ), dp ) +\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ) +\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxy, texelSize.y ), dp ) +\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxy, texelSize.y ), dp ) +\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxx, texelSize.y ), dp ) +\\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxx, texelSize.y ), dp )\\n\t\t\t) * ( 1.0 / 9.0 );\\n\t\t#else\\n\t\t\treturn texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp );\\n\t\t#endif\\n\t}\\n#endif\";\nvar shadowmap_pars_vertex = \"#ifdef USE_SHADOWMAP\\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\\n\t\tuniform mat4 directionalShadowMatrix[ NUM_DIR_LIGHT_SHADOWS ];\\n\t\tvarying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ];\\n\t\tstruct DirectionalLightShadow {\\n\t\t\tfloat shadowBias;\\n\t\t\tfloat shadowNormalBias;\\n\t\t\tfloat shadowRadius;\\n\t\t\tvec2 shadowMapSize;\\n\t\t};\\n\t\tuniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ];\\n\t#endif\\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\\n\t\tuniform mat4 spotShadowMatrix[ NUM_SPOT_LIGHT_SHADOWS ];\\n\t\tvarying vec4 vSpotShadowCoord[ NUM_SPOT_LIGHT_SHADOWS ];\\n\t\tstruct SpotLightShadow {\\n\t\t\tfloat shadowBias;\\n\t\t\tfloat shadowNormalBias;\\n\t\t\tfloat shadowRadius;\\n\t\t\tvec2 shadowMapSize;\\n\t\t};\\n\t\tuniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ];\\n\t#endif\\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\\n\t\tuniform mat4 pointShadowMatrix[ NUM_POINT_LIGHT_SHADOWS ];\\n\t\tvarying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ];\\n\t\tstruct PointLightShadow {\\n\t\t\tfloat shadowBias;\\n\t\t\tfloat shadowNormalBias;\\n\t\t\tfloat shadowRadius;\\n\t\t\tvec2 shadowMapSize;\\n\t\t\tfloat shadowCameraNear;\\n\t\t\tfloat shadowCameraFar;\\n\t\t};\\n\t\tuniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ];\\n\t#endif\\n#endif\";\nvar shadowmap_vertex = \"#ifdef USE_SHADOWMAP\\n\t#if NUM_DIR_LIGHT_SHADOWS > 0 || NUM_SPOT_LIGHT_SHADOWS > 0 || NUM_POINT_LIGHT_SHADOWS > 0\\n\t\tvec3 shadowWorldNormal = inverseTransformDirection( transformedNormal, viewMatrix );\\n\t\tvec4 shadowWorldPosition;\\n\t#endif\\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) {\\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * directionalLightShadows[ i ].shadowNormalBias, 0 );\\n\t\tvDirectionalShadowCoord[ i ] = directionalShadowMatrix[ i ] * shadowWorldPosition;\\n\t}\\n\t#pragma unroll_loop_end\\n\t#endif\\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) {\\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * spotLightShadows[ i ].shadowNormalBias, 0 );\\n\t\tvSpotShadowCoord[ i ] = spotShadowMatrix[ i ] * shadowWorldPosition;\\n\t}\\n\t#pragma unroll_loop_end\\n\t#endif\\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) {\\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * pointLightShadows[ i ].shadowNormalBias, 0 );\\n\t\tvPointShadowCoord[ i ] = pointShadowMatrix[ i ] * shadowWorldPosition;\\n\t}\\n\t#pragma unroll_loop_end\\n\t#endif\\n#endif\";\nvar shadowmask_pars_fragment = \"float getShadowMask() {\\n\tfloat shadow = 1.0;\\n\t#ifdef USE_SHADOWMAP\\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\\n\tDirectionalLightShadow directionalLight;\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) {\\n\t\tdirectionalLight = directionalLightShadows[ i ];\\n\t\tshadow *= receiveShadow ? getShadow( directionalShadowMap[ i ], directionalLight.shadowMapSize, directionalLight.shadowBias, directionalLight.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0;\\n\t}\\n\t#pragma unroll_loop_end\\n\t#endif\\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\\n\tSpotLightShadow spotLight;\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) {\\n\t\tspotLight = spotLightShadows[ i ];\\n\t\tshadow *= receiveShadow ? getShadow( spotShadowMap[ i ], spotLight.shadowMapSize, spotLight.shadowBias, spotLight.shadowRadius, vSpotShadowCoord[ i ] ) : 1.0;\\n\t}\\n\t#pragma unroll_loop_end\\n\t#endif\\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\\n\tPointLightShadow pointLight;\\n\t#pragma unroll_loop_start\\n\tfor ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) {\\n\t\tpointLight = pointLightShadows[ i ];\\n\t\tshadow *= receiveShadow ? getPointShadow( pointShadowMap[ i ], pointLight.shadowMapSize, pointLight.shadowBias, pointLight.shadowRadius, vPointShadowCoord[ i ], pointLight.shadowCameraNear, pointLight.shadowCameraFar ) : 1.0;\\n\t}\\n\t#pragma unroll_loop_end\\n\t#endif\\n\t#endif\\n\treturn shadow;\\n}\";\nvar skinbase_vertex = \"#ifdef USE_SKINNING\\n\tmat4 boneMatX = getBoneMatrix( skinIndex.x );\\n\tmat4 boneMatY = getBoneMatrix( skinIndex.y );\\n\tmat4 boneMatZ = getBoneMatrix( skinIndex.z );\\n\tmat4 boneMatW = getBoneMatrix( skinIndex.w );\\n#endif\";\nvar skinning_pars_vertex = \"#ifdef USE_SKINNING\\n\tuniform mat4 bindMatrix;\\n\tuniform mat4 bindMatrixInverse;\\n\tuniform highp sampler2D boneTexture;\\n\tuniform int boneTextureSize;\\n\tmat4 getBoneMatrix( const in float i ) {\\n\t\tfloat j = i * 4.0;\\n\t\tfloat x = mod( j, float( boneTextureSize ) );\\n\t\tfloat y = floor( j / float( boneTextureSize ) );\\n\t\tfloat dx = 1.0 / float( boneTextureSize );\\n\t\tfloat dy = 1.0 / float( boneTextureSize );\\n\t\ty = dy * ( y + 0.5 );\\n\t\tvec4 v1 = texture2D( boneTexture, vec2( dx * ( x + 0.5 ), y ) );\\n\t\tvec4 v2 = texture2D( boneTexture, vec2( dx * ( x + 1.5 ), y ) );\\n\t\tvec4 v3 = texture2D( boneTexture, vec2( dx * ( x + 2.5 ), y ) );\\n\t\tvec4 v4 = texture2D( boneTexture, vec2( dx * ( x + 3.5 ), y ) );\\n\t\tmat4 bone = mat4( v1, v2, v3, v4 );\\n\t\treturn bone;\\n\t}\\n#endif\";\nvar skinning_vertex = \"#ifdef USE_SKINNING\\n\tvec4 skinVertex = bindMatrix * vec4( transformed, 1.0 );\\n\tvec4 skinned = vec4( 0.0 );\\n\tskinned += boneMatX * skinVertex * skinWeight.x;\\n\tskinned += boneMatY * skinVertex * skinWeight.y;\\n\tskinned += boneMatZ * skinVertex * skinWeight.z;\\n\tskinned += boneMatW * skinVertex * skinWeight.w;\\n\ttransformed = ( bindMatrixInverse * skinned ).xyz;\\n#endif\";\nvar skinnormal_vertex = \"#ifdef USE_SKINNING\\n\tmat4 skinMatrix = mat4( 0.0 );\\n\tskinMatrix += skinWeight.x * boneMatX;\\n\tskinMatrix += skinWeight.y * boneMatY;\\n\tskinMatrix += skinWeight.z * boneMatZ;\\n\tskinMatrix += skinWeight.w * boneMatW;\\n\tskinMatrix = bindMatrixInverse * skinMatrix * bindMatrix;\\n\tobjectNormal = vec4( skinMatrix * vec4( objectNormal, 0.0 ) ).xyz;\\n\t#ifdef USE_TANGENT\\n\t\tobjectTangent = vec4( skinMatrix * vec4( objectTangent, 0.0 ) ).xyz;\\n\t#endif\\n#endif\";\nvar specularmap_fragment = \"float specularStrength;\\n#ifdef USE_SPECULARMAP\\n\tvec4 texelSpecular = texture2D( specularMap, vUv );\\n\tspecularStrength = texelSpecular.r;\\n#else\\n\tspecularStrength = 1.0;\\n#endif\";\nvar specularmap_pars_fragment = \"#ifdef USE_SPECULARMAP\\n\tuniform sampler2D specularMap;\\n#endif\";\nvar tonemapping_fragment = \"#if defined( TONE_MAPPING )\\n\tgl_FragColor.rgb = toneMapping( gl_FragColor.rgb );\\n#endif\";\nvar tonemapping_pars_fragment = \"#ifndef saturate\\n#define saturate( a ) clamp( a, 0.0, 1.0 )\\n#endif\\nuniform float toneMappingExposure;\\nvec3 LinearToneMapping( vec3 color ) {\\n\treturn toneMappingExposure * color;\\n}\\nvec3 ReinhardToneMapping( vec3 color ) {\\n\tcolor *= toneMappingExposure;\\n\treturn saturate( color / ( vec3( 1.0 ) + color ) );\\n}\\nvec3 OptimizedCineonToneMapping( vec3 color ) {\\n\tcolor *= toneMappingExposure;\\n\tcolor = max( vec3( 0.0 ), color - 0.004 );\\n\treturn pow( ( color * ( 6.2 * color + 0.5 ) ) / ( color * ( 6.2 * color + 1.7 ) + 0.06 ), vec3( 2.2 ) );\\n}\\nvec3 RRTAndODTFit( vec3 v ) {\\n\tvec3 a = v * ( v + 0.0245786 ) - 0.000090537;\\n\tvec3 b = v * ( 0.983729 * v + 0.4329510 ) + 0.238081;\\n\treturn a / b;\\n}\\nvec3 ACESFilmicToneMapping( vec3 color ) {\\n\tconst mat3 ACESInputMat = mat3(\\n\t\tvec3( 0.59719, 0.07600, 0.02840 ),\t\tvec3( 0.35458, 0.90834, 0.13383 ),\\n\t\tvec3( 0.04823, 0.01566, 0.83777 )\\n\t);\\n\tconst mat3 ACESOutputMat = mat3(\\n\t\tvec3(  1.60475, -0.10208, -0.00327 ),\t\tvec3( -0.53108,  1.10813, -0.07276 ),\\n\t\tvec3( -0.07367, -0.00605,  1.07602 )\\n\t);\\n\tcolor *= toneMappingExposure / 0.6;\\n\tcolor = ACESInputMat * color;\\n\tcolor = RRTAndODTFit( color );\\n\tcolor = ACESOutputMat * color;\\n\treturn saturate( color );\\n}\\nvec3 CustomToneMapping( vec3 color ) { return color; }\";\nvar transmission_fragment = \"#ifdef USE_TRANSMISSION\\n\tfloat transmissionAlpha = 1.0;\\n\tfloat transmissionFactor = transmission;\\n\tfloat thicknessFactor = thickness;\\n\t#ifdef USE_TRANSMISSIONMAP\\n\t\ttransmissionFactor *= texture2D( transmissionMap, vUv ).r;\\n\t#endif\\n\t#ifdef USE_THICKNESSMAP\\n\t\tthicknessFactor *= texture2D( thicknessMap, vUv ).g;\\n\t#endif\\n\tvec3 pos = vWorldPosition;\\n\tvec3 v = normalize( cameraPosition - pos );\\n\tvec3 n = inverseTransformDirection( normal, viewMatrix );\\n\tvec4 transmission = getIBLVolumeRefraction(\\n\t\tn, v, roughnessFactor, material.diffuseColor, material.specularColor, material.specularF90,\\n\t\tpos, modelMatrix, viewMatrix, projectionMatrix, ior, thicknessFactor,\\n\t\tattenuationColor, attenuationDistance );\\n\ttotalDiffuse = mix( totalDiffuse, transmission.rgb, transmissionFactor );\\n\ttransmissionAlpha = mix( transmissionAlpha, transmission.a, transmissionFactor );\\n#endif\";\nvar transmission_pars_fragment = \"#ifdef USE_TRANSMISSION\\n\tuniform float transmission;\\n\tuniform float thickness;\\n\tuniform float attenuationDistance;\\n\tuniform vec3 attenuationColor;\\n\t#ifdef USE_TRANSMISSIONMAP\\n\t\tuniform sampler2D transmissionMap;\\n\t#endif\\n\t#ifdef USE_THICKNESSMAP\\n\t\tuniform sampler2D thicknessMap;\\n\t#endif\\n\tuniform vec2 transmissionSamplerSize;\\n\tuniform sampler2D transmissionSamplerMap;\\n\tuniform mat4 modelMatrix;\\n\tuniform mat4 projectionMatrix;\\n\tvarying vec3 vWorldPosition;\\n\tvec3 getVolumeTransmissionRay( const in vec3 n, const in vec3 v, const in float thickness, const in float ior, const in mat4 modelMatrix ) {\\n\t\tvec3 refractionVector = refract( - v, normalize( n ), 1.0 / ior );\\n\t\tvec3 modelScale;\\n\t\tmodelScale.x = length( vec3( modelMatrix[ 0 ].xyz ) );\\n\t\tmodelScale.y = length( vec3( modelMatrix[ 1 ].xyz ) );\\n\t\tmodelScale.z = length( vec3( modelMatrix[ 2 ].xyz ) );\\n\t\treturn normalize( refractionVector ) * thickness * modelScale;\\n\t}\\n\tfloat applyIorToRoughness( const in float roughness, const in float ior ) {\\n\t\treturn roughness * clamp( ior * 2.0 - 2.0, 0.0, 1.0 );\\n\t}\\n\tvec4 getTransmissionSample( const in vec2 fragCoord, const in float roughness, const in float ior ) {\\n\t\tfloat framebufferLod = log2( transmissionSamplerSize.x ) * applyIorToRoughness( roughness, ior );\\n\t\t#ifdef texture2DLodEXT\\n\t\t\treturn texture2DLodEXT( transmissionSamplerMap, fragCoord.xy, framebufferLod );\\n\t\t#else\\n\t\t\treturn texture2D( transmissionSamplerMap, fragCoord.xy, framebufferLod );\\n\t\t#endif\\n\t}\\n\tvec3 applyVolumeAttenuation( const in vec3 radiance, const in float transmissionDistance, const in vec3 attenuationColor, const in float attenuationDistance ) {\\n\t\tif ( attenuationDistance == 0.0 ) {\\n\t\t\treturn radiance;\\n\t\t} else {\\n\t\t\tvec3 attenuationCoefficient = -log( attenuationColor ) / attenuationDistance;\\n\t\t\tvec3 transmittance = exp( - attenuationCoefficient * transmissionDistance );\t\t\treturn transmittance * radiance;\\n\t\t}\\n\t}\\n\tvec4 getIBLVolumeRefraction( const in vec3 n, const in vec3 v, const in float roughness, const in vec3 diffuseColor,\\n\t\tconst in vec3 specularColor, const in float specularF90, const in vec3 position, const in mat4 modelMatrix,\\n\t\tconst in mat4 viewMatrix, const in mat4 projMatrix, const in float ior, const in float thickness,\\n\t\tconst in vec3 attenuationColor, const in float attenuationDistance ) {\\n\t\tvec3 transmissionRay = getVolumeTransmissionRay( n, v, thickness, ior, modelMatrix );\\n\t\tvec3 refractedRayExit = position + transmissionRay;\\n\t\tvec4 ndcPos = projMatrix * viewMatrix * vec4( refractedRayExit, 1.0 );\\n\t\tvec2 refractionCoords = ndcPos.xy / ndcPos.w;\\n\t\trefractionCoords += 1.0;\\n\t\trefractionCoords /= 2.0;\\n\t\tvec4 transmittedLight = getTransmissionSample( refractionCoords, roughness, ior );\\n\t\tvec3 attenuatedColor = applyVolumeAttenuation( transmittedLight.rgb, length( transmissionRay ), attenuationColor, attenuationDistance );\\n\t\tvec3 F = EnvironmentBRDF( n, v, specularColor, specularF90, roughness );\\n\t\treturn vec4( ( 1.0 - F ) * attenuatedColor * diffuseColor, transmittedLight.a );\\n\t}\\n#endif\";\nvar uv_pars_fragment = \"#if ( defined( USE_UV ) && ! defined( UVS_VERTEX_ONLY ) )\\n\tvarying vec2 vUv;\\n#endif\";\nvar uv_pars_vertex = \"#ifdef USE_UV\\n\t#ifdef UVS_VERTEX_ONLY\\n\t\tvec2 vUv;\\n\t#else\\n\t\tvarying vec2 vUv;\\n\t#endif\\n\tuniform mat3 uvTransform;\\n#endif\";\nvar uv_vertex = \"#ifdef USE_UV\\n\tvUv = ( uvTransform * vec3( uv, 1 ) ).xy;\\n#endif\";\nvar uv2_pars_fragment = \"#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\\n\tvarying vec2 vUv2;\\n#endif\";\nvar uv2_pars_vertex = \"#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\\n\tattribute vec2 uv2;\\n\tvarying vec2 vUv2;\\n\tuniform mat3 uv2Transform;\\n#endif\";\nvar uv2_vertex = \"#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\\n\tvUv2 = ( uv2Transform * vec3( uv2, 1 ) ).xy;\\n#endif\";\nvar worldpos_vertex = \"#if defined( USE_ENVMAP ) || defined( DISTANCE ) || defined ( USE_SHADOWMAP ) || defined ( USE_TRANSMISSION )\\n\tvec4 worldPosition = vec4( transformed, 1.0 );\\n\t#ifdef USE_INSTANCING\\n\t\tworldPosition = instanceMatrix * worldPosition;\\n\t#endif\\n\tworldPosition = modelMatrix * worldPosition;\\n#endif\";\nconst vertex$g = \"varying vec2 vUv;\\nuniform mat3 uvTransform;\\nvoid main() {\\n\tvUv = ( uvTransform * vec3( uv, 1 ) ).xy;\\n\tgl_Position = vec4( position.xy, 1.0, 1.0 );\\n}\";\nconst fragment$g = \"uniform sampler2D t2D;\\nvarying vec2 vUv;\\nvoid main() {\\n\tgl_FragColor = texture2D( t2D, vUv );\\n\t#ifdef DECODE_VIDEO_TEXTURE\\n\t\tgl_FragColor = vec4( mix( pow( gl_FragColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), gl_FragColor.rgb * 0.0773993808, vec3( lessThanEqual( gl_FragColor.rgb, vec3( 0.04045 ) ) ) ), gl_FragColor.w );\\n\t#endif\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n}\";\nconst vertex$f = \"varying vec3 vWorldDirection;\\n#include <common>\\nvoid main() {\\n\tvWorldDirection = transformDirection( position, modelMatrix );\\n\t#include <begin_vertex>\\n\t#include <project_vertex>\\n\tgl_Position.z = gl_Position.w;\\n}\";\nconst fragment$f = \"#include <envmap_common_pars_fragment>\\nuniform float opacity;\\nvarying vec3 vWorldDirection;\\n#include <cube_uv_reflection_fragment>\\nvoid main() {\\n\tvec3 vReflect = vWorldDirection;\\n\t#include <envmap_fragment>\\n\tgl_FragColor = envColor;\\n\tgl_FragColor.a *= opacity;\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n}\";\nconst vertex$e = \"#include <common>\\n#include <uv_pars_vertex>\\n#include <displacementmap_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvarying vec2 vHighPrecisionZW;\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <skinbase_vertex>\\n\t#ifdef USE_DISPLACEMENTMAP\\n\t\t#include <beginnormal_vertex>\\n\t\t#include <morphnormal_vertex>\\n\t\t#include <skinnormal_vertex>\\n\t#endif\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <displacementmap_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\tvHighPrecisionZW = gl_Position.zw;\\n}\";\nconst fragment$e = \"#if DEPTH_PACKING == 3200\\n\tuniform float opacity;\\n#endif\\n#include <common>\\n#include <packing>\\n#include <uv_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvarying vec2 vHighPrecisionZW;\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec4 diffuseColor = vec4( 1.0 );\\n\t#if DEPTH_PACKING == 3200\\n\t\tdiffuseColor.a = opacity;\\n\t#endif\\n\t#include <map_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\t#include <logdepthbuf_fragment>\\n\tfloat fragCoordZ = 0.5 * vHighPrecisionZW[0] / vHighPrecisionZW[1] + 0.5;\\n\t#if DEPTH_PACKING == 3200\\n\t\tgl_FragColor = vec4( vec3( 1.0 - fragCoordZ ), opacity );\\n\t#elif DEPTH_PACKING == 3201\\n\t\tgl_FragColor = packDepthToRGBA( fragCoordZ );\\n\t#endif\\n}\";\nconst vertex$d = \"#define DISTANCE\\nvarying vec3 vWorldPosition;\\n#include <common>\\n#include <uv_pars_vertex>\\n#include <displacementmap_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <skinbase_vertex>\\n\t#ifdef USE_DISPLACEMENTMAP\\n\t\t#include <beginnormal_vertex>\\n\t\t#include <morphnormal_vertex>\\n\t\t#include <skinnormal_vertex>\\n\t#endif\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <displacementmap_vertex>\\n\t#include <project_vertex>\\n\t#include <worldpos_vertex>\\n\t#include <clipping_planes_vertex>\\n\tvWorldPosition = worldPosition.xyz;\\n}\";\nconst fragment$d = \"#define DISTANCE\\nuniform vec3 referencePosition;\\nuniform float nearDistance;\\nuniform float farDistance;\\nvarying vec3 vWorldPosition;\\n#include <common>\\n#include <packing>\\n#include <uv_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main () {\\n\t#include <clipping_planes_fragment>\\n\tvec4 diffuseColor = vec4( 1.0 );\\n\t#include <map_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\tfloat dist = length( vWorldPosition - referencePosition );\\n\tdist = ( dist - nearDistance ) / ( farDistance - nearDistance );\\n\tdist = saturate( dist );\\n\tgl_FragColor = packDepthToRGBA( dist );\\n}\";\nconst vertex$c = \"varying vec3 vWorldDirection;\\n#include <common>\\nvoid main() {\\n\tvWorldDirection = transformDirection( position, modelMatrix );\\n\t#include <begin_vertex>\\n\t#include <project_vertex>\\n}\";\nconst fragment$c = \"uniform sampler2D tEquirect;\\nvarying vec3 vWorldDirection;\\n#include <common>\\nvoid main() {\\n\tvec3 direction = normalize( vWorldDirection );\\n\tvec2 sampleUV = equirectUv( direction );\\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n}\";\nconst vertex$b = \"uniform float scale;\\nattribute float lineDistance;\\nvarying float vLineDistance;\\n#include <common>\\n#include <color_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\tvLineDistance = scale * lineDistance;\\n\t#include <color_vertex>\\n\t#include <morphcolor_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\t#include <fog_vertex>\\n}\";\nconst fragment$b = \"uniform vec3 diffuse;\\nuniform float opacity;\\nuniform float dashSize;\\nuniform float totalSize;\\nvarying float vLineDistance;\\n#include <common>\\n#include <color_pars_fragment>\\n#include <fog_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tif ( mod( vLineDistance, totalSize ) > dashSize ) {\\n\t\tdiscard;\\n\t}\\n\tvec3 outgoingLight = vec3( 0.0 );\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\t#include <logdepthbuf_fragment>\\n\t#include <color_fragment>\\n\toutgoingLight = diffuseColor.rgb;\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n\t#include <premultiplied_alpha_fragment>\\n}\";\nconst vertex$a = \"#include <common>\\n#include <uv_pars_vertex>\\n#include <uv2_pars_vertex>\\n#include <envmap_pars_vertex>\\n#include <color_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <uv2_vertex>\\n\t#include <color_vertex>\\n\t#include <morphcolor_vertex>\\n\t#if defined ( USE_ENVMAP ) || defined ( USE_SKINNING )\\n\t\t#include <beginnormal_vertex>\\n\t\t#include <morphnormal_vertex>\\n\t\t#include <skinbase_vertex>\\n\t\t#include <skinnormal_vertex>\\n\t\t#include <defaultnormal_vertex>\\n\t#endif\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\t#include <worldpos_vertex>\\n\t#include <envmap_vertex>\\n\t#include <fog_vertex>\\n}\";\nconst fragment$a = \"uniform vec3 diffuse;\\nuniform float opacity;\\n#ifndef FLAT_SHADED\\n\tvarying vec3 vNormal;\\n#endif\\n#include <common>\\n#include <dithering_pars_fragment>\\n#include <color_pars_fragment>\\n#include <uv_pars_fragment>\\n#include <uv2_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <aomap_pars_fragment>\\n#include <lightmap_pars_fragment>\\n#include <envmap_common_pars_fragment>\\n#include <envmap_pars_fragment>\\n#include <cube_uv_reflection_fragment>\\n#include <fog_pars_fragment>\\n#include <specularmap_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\t#include <logdepthbuf_fragment>\\n\t#include <map_fragment>\\n\t#include <color_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\t#include <specularmap_fragment>\\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\\n\t#ifdef USE_LIGHTMAP\\n\t\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\\n\t\treflectedLight.indirectDiffuse += lightMapTexel.rgb * lightMapIntensity * RECIPROCAL_PI;\\n\t#else\\n\t\treflectedLight.indirectDiffuse += vec3( 1.0 );\\n\t#endif\\n\t#include <aomap_fragment>\\n\treflectedLight.indirectDiffuse *= diffuseColor.rgb;\\n\tvec3 outgoingLight = reflectedLight.indirectDiffuse;\\n\t#include <envmap_fragment>\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n\t#include <premultiplied_alpha_fragment>\\n\t#include <dithering_fragment>\\n}\";\nconst vertex$9 = \"#define LAMBERT\\nvarying vec3 vLightFront;\\nvarying vec3 vIndirectFront;\\n#ifdef DOUBLE_SIDED\\n\tvarying vec3 vLightBack;\\n\tvarying vec3 vIndirectBack;\\n#endif\\n#include <common>\\n#include <uv_pars_vertex>\\n#include <uv2_pars_vertex>\\n#include <envmap_pars_vertex>\\n#include <bsdfs>\\n#include <lights_pars_begin>\\n#include <color_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <shadowmap_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <uv2_vertex>\\n\t#include <color_vertex>\\n\t#include <morphcolor_vertex>\\n\t#include <beginnormal_vertex>\\n\t#include <morphnormal_vertex>\\n\t#include <skinbase_vertex>\\n\t#include <skinnormal_vertex>\\n\t#include <defaultnormal_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\t#include <worldpos_vertex>\\n\t#include <envmap_vertex>\\n\t#include <lights_lambert_vertex>\\n\t#include <shadowmap_vertex>\\n\t#include <fog_vertex>\\n}\";\nconst fragment$9 = \"uniform vec3 diffuse;\\nuniform vec3 emissive;\\nuniform float opacity;\\nvarying vec3 vLightFront;\\nvarying vec3 vIndirectFront;\\n#ifdef DOUBLE_SIDED\\n\tvarying vec3 vLightBack;\\n\tvarying vec3 vIndirectBack;\\n#endif\\n#include <common>\\n#include <packing>\\n#include <dithering_pars_fragment>\\n#include <color_pars_fragment>\\n#include <uv_pars_fragment>\\n#include <uv2_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <aomap_pars_fragment>\\n#include <lightmap_pars_fragment>\\n#include <emissivemap_pars_fragment>\\n#include <envmap_common_pars_fragment>\\n#include <envmap_pars_fragment>\\n#include <cube_uv_reflection_fragment>\\n#include <bsdfs>\\n#include <lights_pars_begin>\\n#include <fog_pars_fragment>\\n#include <shadowmap_pars_fragment>\\n#include <shadowmask_pars_fragment>\\n#include <specularmap_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\\n\tvec3 totalEmissiveRadiance = emissive;\\n\t#include <logdepthbuf_fragment>\\n\t#include <map_fragment>\\n\t#include <color_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\t#include <specularmap_fragment>\\n\t#include <emissivemap_fragment>\\n\t#ifdef DOUBLE_SIDED\\n\t\treflectedLight.indirectDiffuse += ( gl_FrontFacing ) ? vIndirectFront : vIndirectBack;\\n\t#else\\n\t\treflectedLight.indirectDiffuse += vIndirectFront;\\n\t#endif\\n\t#include <lightmap_fragment>\\n\treflectedLight.indirectDiffuse *= BRDF_Lambert( diffuseColor.rgb );\\n\t#ifdef DOUBLE_SIDED\\n\t\treflectedLight.directDiffuse = ( gl_FrontFacing ) ? vLightFront : vLightBack;\\n\t#else\\n\t\treflectedLight.directDiffuse = vLightFront;\\n\t#endif\\n\treflectedLight.directDiffuse *= BRDF_Lambert( diffuseColor.rgb ) * getShadowMask();\\n\t#include <aomap_fragment>\\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance;\\n\t#include <envmap_fragment>\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n\t#include <premultiplied_alpha_fragment>\\n\t#include <dithering_fragment>\\n}\";\nconst vertex$8 = \"#define MATCAP\\nvarying vec3 vViewPosition;\\n#include <common>\\n#include <uv_pars_vertex>\\n#include <color_pars_vertex>\\n#include <displacementmap_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <normal_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <color_vertex>\\n\t#include <morphcolor_vertex>\\n\t#include <beginnormal_vertex>\\n\t#include <morphnormal_vertex>\\n\t#include <skinbase_vertex>\\n\t#include <skinnormal_vertex>\\n\t#include <defaultnormal_vertex>\\n\t#include <normal_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <displacementmap_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\t#include <fog_vertex>\\n\tvViewPosition = - mvPosition.xyz;\\n}\";\nconst fragment$8 = \"#define MATCAP\\nuniform vec3 diffuse;\\nuniform float opacity;\\nuniform sampler2D matcap;\\nvarying vec3 vViewPosition;\\n#include <common>\\n#include <dithering_pars_fragment>\\n#include <color_pars_fragment>\\n#include <uv_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <fog_pars_fragment>\\n#include <normal_pars_fragment>\\n#include <bumpmap_pars_fragment>\\n#include <normalmap_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\t#include <logdepthbuf_fragment>\\n\t#include <map_fragment>\\n\t#include <color_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\t#include <normal_fragment_begin>\\n\t#include <normal_fragment_maps>\\n\tvec3 viewDir = normalize( vViewPosition );\\n\tvec3 x = normalize( vec3( viewDir.z, 0.0, - viewDir.x ) );\\n\tvec3 y = cross( viewDir, x );\\n\tvec2 uv = vec2( dot( x, normal ), dot( y, normal ) ) * 0.495 + 0.5;\\n\t#ifdef USE_MATCAP\\n\t\tvec4 matcapColor = texture2D( matcap, uv );\\n\t#else\\n\t\tvec4 matcapColor = vec4( vec3( mix( 0.2, 0.8, uv.y ) ), 1.0 );\\n\t#endif\\n\tvec3 outgoingLight = diffuseColor.rgb * matcapColor.rgb;\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n\t#include <premultiplied_alpha_fragment>\\n\t#include <dithering_fragment>\\n}\";\nconst vertex$7 = \"#define NORMAL\\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\\n\tvarying vec3 vViewPosition;\\n#endif\\n#include <common>\\n#include <uv_pars_vertex>\\n#include <displacementmap_pars_vertex>\\n#include <normal_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <beginnormal_vertex>\\n\t#include <morphnormal_vertex>\\n\t#include <skinbase_vertex>\\n\t#include <skinnormal_vertex>\\n\t#include <defaultnormal_vertex>\\n\t#include <normal_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <displacementmap_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\\n\tvViewPosition = - mvPosition.xyz;\\n#endif\\n}\";\nconst fragment$7 = \"#define NORMAL\\nuniform float opacity;\\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\\n\tvarying vec3 vViewPosition;\\n#endif\\n#include <packing>\\n#include <uv_pars_fragment>\\n#include <normal_pars_fragment>\\n#include <bumpmap_pars_fragment>\\n#include <normalmap_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\t#include <logdepthbuf_fragment>\\n\t#include <normal_fragment_begin>\\n\t#include <normal_fragment_maps>\\n\tgl_FragColor = vec4( packNormalToRGB( normal ), opacity );\\n\t#ifdef OPAQUE\\n\t\tgl_FragColor.a = 1.0;\\n\t#endif\\n}\";\nconst vertex$6 = \"#define PHONG\\nvarying vec3 vViewPosition;\\n#include <common>\\n#include <uv_pars_vertex>\\n#include <uv2_pars_vertex>\\n#include <displacementmap_pars_vertex>\\n#include <envmap_pars_vertex>\\n#include <color_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <normal_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <shadowmap_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <uv2_vertex>\\n\t#include <color_vertex>\\n\t#include <morphcolor_vertex>\\n\t#include <beginnormal_vertex>\\n\t#include <morphnormal_vertex>\\n\t#include <skinbase_vertex>\\n\t#include <skinnormal_vertex>\\n\t#include <defaultnormal_vertex>\\n\t#include <normal_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <displacementmap_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\tvViewPosition = - mvPosition.xyz;\\n\t#include <worldpos_vertex>\\n\t#include <envmap_vertex>\\n\t#include <shadowmap_vertex>\\n\t#include <fog_vertex>\\n}\";\nconst fragment$6 = \"#define PHONG\\nuniform vec3 diffuse;\\nuniform vec3 emissive;\\nuniform vec3 specular;\\nuniform float shininess;\\nuniform float opacity;\\n#include <common>\\n#include <packing>\\n#include <dithering_pars_fragment>\\n#include <color_pars_fragment>\\n#include <uv_pars_fragment>\\n#include <uv2_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <aomap_pars_fragment>\\n#include <lightmap_pars_fragment>\\n#include <emissivemap_pars_fragment>\\n#include <envmap_common_pars_fragment>\\n#include <envmap_pars_fragment>\\n#include <cube_uv_reflection_fragment>\\n#include <fog_pars_fragment>\\n#include <bsdfs>\\n#include <lights_pars_begin>\\n#include <normal_pars_fragment>\\n#include <lights_phong_pars_fragment>\\n#include <shadowmap_pars_fragment>\\n#include <bumpmap_pars_fragment>\\n#include <normalmap_pars_fragment>\\n#include <specularmap_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\\n\tvec3 totalEmissiveRadiance = emissive;\\n\t#include <logdepthbuf_fragment>\\n\t#include <map_fragment>\\n\t#include <color_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\t#include <specularmap_fragment>\\n\t#include <normal_fragment_begin>\\n\t#include <normal_fragment_maps>\\n\t#include <emissivemap_fragment>\\n\t#include <lights_phong_fragment>\\n\t#include <lights_fragment_begin>\\n\t#include <lights_fragment_maps>\\n\t#include <lights_fragment_end>\\n\t#include <aomap_fragment>\\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + reflectedLight.directSpecular + reflectedLight.indirectSpecular + totalEmissiveRadiance;\\n\t#include <envmap_fragment>\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n\t#include <premultiplied_alpha_fragment>\\n\t#include <dithering_fragment>\\n}\";\nconst vertex$5 = \"#define STANDARD\\nvarying vec3 vViewPosition;\\n#ifdef USE_TRANSMISSION\\n\tvarying vec3 vWorldPosition;\\n#endif\\n#include <common>\\n#include <uv_pars_vertex>\\n#include <uv2_pars_vertex>\\n#include <displacementmap_pars_vertex>\\n#include <color_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <normal_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <shadowmap_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <uv2_vertex>\\n\t#include <color_vertex>\\n\t#include <morphcolor_vertex>\\n\t#include <beginnormal_vertex>\\n\t#include <morphnormal_vertex>\\n\t#include <skinbase_vertex>\\n\t#include <skinnormal_vertex>\\n\t#include <defaultnormal_vertex>\\n\t#include <normal_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <displacementmap_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\tvViewPosition = - mvPosition.xyz;\\n\t#include <worldpos_vertex>\\n\t#include <shadowmap_vertex>\\n\t#include <fog_vertex>\\n#ifdef USE_TRANSMISSION\\n\tvWorldPosition = worldPosition.xyz;\\n#endif\\n}\";\nconst fragment$5 = \"#define STANDARD\\n#ifdef PHYSICAL\\n\t#define IOR\\n\t#define SPECULAR\\n#endif\\nuniform vec3 diffuse;\\nuniform vec3 emissive;\\nuniform float roughness;\\nuniform float metalness;\\nuniform float opacity;\\n#ifdef IOR\\n\tuniform float ior;\\n#endif\\n#ifdef SPECULAR\\n\tuniform float specularIntensity;\\n\tuniform vec3 specularColor;\\n\t#ifdef USE_SPECULARINTENSITYMAP\\n\t\tuniform sampler2D specularIntensityMap;\\n\t#endif\\n\t#ifdef USE_SPECULARCOLORMAP\\n\t\tuniform sampler2D specularColorMap;\\n\t#endif\\n#endif\\n#ifdef USE_CLEARCOAT\\n\tuniform float clearcoat;\\n\tuniform float clearcoatRoughness;\\n#endif\\n#ifdef USE_IRIDESCENCE\\n\tuniform float iridescence;\\n\tuniform float iridescenceIOR;\\n\tuniform float iridescenceThicknessMinimum;\\n\tuniform float iridescenceThicknessMaximum;\\n#endif\\n#ifdef USE_SHEEN\\n\tuniform vec3 sheenColor;\\n\tuniform float sheenRoughness;\\n\t#ifdef USE_SHEENCOLORMAP\\n\t\tuniform sampler2D sheenColorMap;\\n\t#endif\\n\t#ifdef USE_SHEENROUGHNESSMAP\\n\t\tuniform sampler2D sheenRoughnessMap;\\n\t#endif\\n#endif\\nvarying vec3 vViewPosition;\\n#include <common>\\n#include <packing>\\n#include <dithering_pars_fragment>\\n#include <color_pars_fragment>\\n#include <uv_pars_fragment>\\n#include <uv2_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <aomap_pars_fragment>\\n#include <lightmap_pars_fragment>\\n#include <emissivemap_pars_fragment>\\n#include <bsdfs>\\n#include <iridescence_fragment>\\n#include <cube_uv_reflection_fragment>\\n#include <envmap_common_pars_fragment>\\n#include <envmap_physical_pars_fragment>\\n#include <fog_pars_fragment>\\n#include <lights_pars_begin>\\n#include <normal_pars_fragment>\\n#include <lights_physical_pars_fragment>\\n#include <transmission_pars_fragment>\\n#include <shadowmap_pars_fragment>\\n#include <bumpmap_pars_fragment>\\n#include <normalmap_pars_fragment>\\n#include <clearcoat_pars_fragment>\\n#include <iridescence_pars_fragment>\\n#include <roughnessmap_pars_fragment>\\n#include <metalnessmap_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\\n\tvec3 totalEmissiveRadiance = emissive;\\n\t#include <logdepthbuf_fragment>\\n\t#include <map_fragment>\\n\t#include <color_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\t#include <roughnessmap_fragment>\\n\t#include <metalnessmap_fragment>\\n\t#include <normal_fragment_begin>\\n\t#include <normal_fragment_maps>\\n\t#include <clearcoat_normal_fragment_begin>\\n\t#include <clearcoat_normal_fragment_maps>\\n\t#include <emissivemap_fragment>\\n\t#include <lights_physical_fragment>\\n\t#include <lights_fragment_begin>\\n\t#include <lights_fragment_maps>\\n\t#include <lights_fragment_end>\\n\t#include <aomap_fragment>\\n\tvec3 totalDiffuse = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse;\\n\tvec3 totalSpecular = reflectedLight.directSpecular + reflectedLight.indirectSpecular;\\n\t#include <transmission_fragment>\\n\tvec3 outgoingLight = totalDiffuse + totalSpecular + totalEmissiveRadiance;\\n\t#ifdef USE_SHEEN\\n\t\tfloat sheenEnergyComp = 1.0 - 0.157 * max3( material.sheenColor );\\n\t\toutgoingLight = outgoingLight * sheenEnergyComp + sheenSpecular;\\n\t#endif\\n\t#ifdef USE_CLEARCOAT\\n\t\tfloat dotNVcc = saturate( dot( geometry.clearcoatNormal, geometry.viewDir ) );\\n\t\tvec3 Fcc = F_Schlick( material.clearcoatF0, material.clearcoatF90, dotNVcc );\\n\t\toutgoingLight = outgoingLight * ( 1.0 - material.clearcoat * Fcc ) + clearcoatSpecular * material.clearcoat;\\n\t#endif\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n\t#include <premultiplied_alpha_fragment>\\n\t#include <dithering_fragment>\\n}\";\nconst vertex$4 = \"#define TOON\\nvarying vec3 vViewPosition;\\n#include <common>\\n#include <uv_pars_vertex>\\n#include <uv2_pars_vertex>\\n#include <displacementmap_pars_vertex>\\n#include <color_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <normal_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <shadowmap_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\t#include <uv2_vertex>\\n\t#include <color_vertex>\\n\t#include <morphcolor_vertex>\\n\t#include <beginnormal_vertex>\\n\t#include <morphnormal_vertex>\\n\t#include <skinbase_vertex>\\n\t#include <skinnormal_vertex>\\n\t#include <defaultnormal_vertex>\\n\t#include <normal_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <displacementmap_vertex>\\n\t#include <project_vertex>\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\tvViewPosition = - mvPosition.xyz;\\n\t#include <worldpos_vertex>\\n\t#include <shadowmap_vertex>\\n\t#include <fog_vertex>\\n}\";\nconst fragment$4 = \"#define TOON\\nuniform vec3 diffuse;\\nuniform vec3 emissive;\\nuniform float opacity;\\n#include <common>\\n#include <packing>\\n#include <dithering_pars_fragment>\\n#include <color_pars_fragment>\\n#include <uv_pars_fragment>\\n#include <uv2_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <aomap_pars_fragment>\\n#include <lightmap_pars_fragment>\\n#include <emissivemap_pars_fragment>\\n#include <gradientmap_pars_fragment>\\n#include <fog_pars_fragment>\\n#include <bsdfs>\\n#include <lights_pars_begin>\\n#include <normal_pars_fragment>\\n#include <lights_toon_pars_fragment>\\n#include <shadowmap_pars_fragment>\\n#include <bumpmap_pars_fragment>\\n#include <normalmap_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\\n\tvec3 totalEmissiveRadiance = emissive;\\n\t#include <logdepthbuf_fragment>\\n\t#include <map_fragment>\\n\t#include <color_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\t#include <normal_fragment_begin>\\n\t#include <normal_fragment_maps>\\n\t#include <emissivemap_fragment>\\n\t#include <lights_toon_fragment>\\n\t#include <lights_fragment_begin>\\n\t#include <lights_fragment_maps>\\n\t#include <lights_fragment_end>\\n\t#include <aomap_fragment>\\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance;\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n\t#include <premultiplied_alpha_fragment>\\n\t#include <dithering_fragment>\\n}\";\nconst vertex$3 = \"uniform float size;\\nuniform float scale;\\n#include <common>\\n#include <color_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <color_vertex>\\n\t#include <morphcolor_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <project_vertex>\\n\tgl_PointSize = size;\\n\t#ifdef USE_SIZEATTENUATION\\n\t\tbool isPerspective = isPerspectiveMatrix( projectionMatrix );\\n\t\tif ( isPerspective ) gl_PointSize *= ( scale / - mvPosition.z );\\n\t#endif\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\t#include <worldpos_vertex>\\n\t#include <fog_vertex>\\n}\";\nconst fragment$3 = \"uniform vec3 diffuse;\\nuniform float opacity;\\n#include <common>\\n#include <color_pars_fragment>\\n#include <map_particle_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <fog_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec3 outgoingLight = vec3( 0.0 );\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\t#include <logdepthbuf_fragment>\\n\t#include <map_particle_fragment>\\n\t#include <color_fragment>\\n\t#include <alphatest_fragment>\\n\toutgoingLight = diffuseColor.rgb;\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n\t#include <premultiplied_alpha_fragment>\\n}\";\nconst vertex$2 = \"#include <common>\\n#include <fog_pars_vertex>\\n#include <morphtarget_pars_vertex>\\n#include <skinning_pars_vertex>\\n#include <shadowmap_pars_vertex>\\nvoid main() {\\n\t#include <beginnormal_vertex>\\n\t#include <morphnormal_vertex>\\n\t#include <skinbase_vertex>\\n\t#include <skinnormal_vertex>\\n\t#include <defaultnormal_vertex>\\n\t#include <begin_vertex>\\n\t#include <morphtarget_vertex>\\n\t#include <skinning_vertex>\\n\t#include <project_vertex>\\n\t#include <worldpos_vertex>\\n\t#include <shadowmap_vertex>\\n\t#include <fog_vertex>\\n}\";\nconst fragment$2 = \"uniform vec3 color;\\nuniform float opacity;\\n#include <common>\\n#include <packing>\\n#include <fog_pars_fragment>\\n#include <bsdfs>\\n#include <lights_pars_begin>\\n#include <shadowmap_pars_fragment>\\n#include <shadowmask_pars_fragment>\\nvoid main() {\\n\tgl_FragColor = vec4( color, opacity * ( 1.0 - getShadowMask() ) );\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n}\";\nconst vertex$1 = \"uniform float rotation;\\nuniform vec2 center;\\n#include <common>\\n#include <uv_pars_vertex>\\n#include <fog_pars_vertex>\\n#include <logdepthbuf_pars_vertex>\\n#include <clipping_planes_pars_vertex>\\nvoid main() {\\n\t#include <uv_vertex>\\n\tvec4 mvPosition = modelViewMatrix * vec4( 0.0, 0.0, 0.0, 1.0 );\\n\tvec2 scale;\\n\tscale.x = length( vec3( modelMatrix[ 0 ].x, modelMatrix[ 0 ].y, modelMatrix[ 0 ].z ) );\\n\tscale.y = length( vec3( modelMatrix[ 1 ].x, modelMatrix[ 1 ].y, modelMatrix[ 1 ].z ) );\\n\t#ifndef USE_SIZEATTENUATION\\n\t\tbool isPerspective = isPerspectiveMatrix( projectionMatrix );\\n\t\tif ( isPerspective ) scale *= - mvPosition.z;\\n\t#endif\\n\tvec2 alignedPosition = ( position.xy - ( center - vec2( 0.5 ) ) ) * scale;\\n\tvec2 rotatedPosition;\\n\trotatedPosition.x = cos( rotation ) * alignedPosition.x - sin( rotation ) * alignedPosition.y;\\n\trotatedPosition.y = sin( rotation ) * alignedPosition.x + cos( rotation ) * alignedPosition.y;\\n\tmvPosition.xy += rotatedPosition;\\n\tgl_Position = projectionMatrix * mvPosition;\\n\t#include <logdepthbuf_vertex>\\n\t#include <clipping_planes_vertex>\\n\t#include <fog_vertex>\\n}\";\nconst fragment$1 = \"uniform vec3 diffuse;\\nuniform float opacity;\\n#include <common>\\n#include <uv_pars_fragment>\\n#include <map_pars_fragment>\\n#include <alphamap_pars_fragment>\\n#include <alphatest_pars_fragment>\\n#include <fog_pars_fragment>\\n#include <logdepthbuf_pars_fragment>\\n#include <clipping_planes_pars_fragment>\\nvoid main() {\\n\t#include <clipping_planes_fragment>\\n\tvec3 outgoingLight = vec3( 0.0 );\\n\tvec4 diffuseColor = vec4( diffuse, opacity );\\n\t#include <logdepthbuf_fragment>\\n\t#include <map_fragment>\\n\t#include <alphamap_fragment>\\n\t#include <alphatest_fragment>\\n\toutgoingLight = diffuseColor.rgb;\\n\t#include <output_fragment>\\n\t#include <tonemapping_fragment>\\n\t#include <encodings_fragment>\\n\t#include <fog_fragment>\\n}\";\nconst ShaderChunk = {\n  alphamap_fragment,\n  alphamap_pars_fragment,\n  alphatest_fragment,\n  alphatest_pars_fragment,\n  aomap_fragment,\n  aomap_pars_fragment,\n  begin_vertex,\n  beginnormal_vertex,\n  bsdfs,\n  iridescence_fragment,\n  bumpmap_pars_fragment,\n  clipping_planes_fragment,\n  clipping_planes_pars_fragment,\n  clipping_planes_pars_vertex,\n  clipping_planes_vertex,\n  color_fragment,\n  color_pars_fragment,\n  color_pars_vertex,\n  color_vertex,\n  common,\n  cube_uv_reflection_fragment,\n  defaultnormal_vertex,\n  displacementmap_pars_vertex,\n  displacementmap_vertex,\n  emissivemap_fragment,\n  emissivemap_pars_fragment,\n  encodings_fragment,\n  encodings_pars_fragment,\n  envmap_fragment,\n  envmap_common_pars_fragment,\n  envmap_pars_fragment,\n  envmap_pars_vertex,\n  envmap_physical_pars_fragment,\n  envmap_vertex,\n  fog_vertex,\n  fog_pars_vertex,\n  fog_fragment,\n  fog_pars_fragment,\n  gradientmap_pars_fragment,\n  lightmap_fragment,\n  lightmap_pars_fragment,\n  lights_lambert_vertex,\n  lights_pars_begin,\n  lights_toon_fragment,\n  lights_toon_pars_fragment,\n  lights_phong_fragment,\n  lights_phong_pars_fragment,\n  lights_physical_fragment,\n  lights_physical_pars_fragment,\n  lights_fragment_begin,\n  lights_fragment_maps,\n  lights_fragment_end,\n  logdepthbuf_fragment,\n  logdepthbuf_pars_fragment,\n  logdepthbuf_pars_vertex,\n  logdepthbuf_vertex,\n  map_fragment,\n  map_pars_fragment,\n  map_particle_fragment,\n  map_particle_pars_fragment,\n  metalnessmap_fragment,\n  metalnessmap_pars_fragment,\n  morphcolor_vertex,\n  morphnormal_vertex,\n  morphtarget_pars_vertex,\n  morphtarget_vertex,\n  normal_fragment_begin,\n  normal_fragment_maps,\n  normal_pars_fragment,\n  normal_pars_vertex,\n  normal_vertex,\n  normalmap_pars_fragment,\n  clearcoat_normal_fragment_begin,\n  clearcoat_normal_fragment_maps,\n  clearcoat_pars_fragment,\n  iridescence_pars_fragment,\n  output_fragment,\n  packing,\n  premultiplied_alpha_fragment,\n  project_vertex,\n  dithering_fragment,\n  dithering_pars_fragment,\n  roughnessmap_fragment,\n  roughnessmap_pars_fragment,\n  shadowmap_pars_fragment,\n  shadowmap_pars_vertex,\n  shadowmap_vertex,\n  shadowmask_pars_fragment,\n  skinbase_vertex,\n  skinning_pars_vertex,\n  skinning_vertex,\n  skinnormal_vertex,\n  specularmap_fragment,\n  specularmap_pars_fragment,\n  tonemapping_fragment,\n  tonemapping_pars_fragment,\n  transmission_fragment,\n  transmission_pars_fragment,\n  uv_pars_fragment,\n  uv_pars_vertex,\n  uv_vertex,\n  uv2_pars_fragment,\n  uv2_pars_vertex,\n  uv2_vertex,\n  worldpos_vertex,\n  background_vert: vertex$g,\n  background_frag: fragment$g,\n  cube_vert: vertex$f,\n  cube_frag: fragment$f,\n  depth_vert: vertex$e,\n  depth_frag: fragment$e,\n  distanceRGBA_vert: vertex$d,\n  distanceRGBA_frag: fragment$d,\n  equirect_vert: vertex$c,\n  equirect_frag: fragment$c,\n  linedashed_vert: vertex$b,\n  linedashed_frag: fragment$b,\n  meshbasic_vert: vertex$a,\n  meshbasic_frag: fragment$a,\n  meshlambert_vert: vertex$9,\n  meshlambert_frag: fragment$9,\n  meshmatcap_vert: vertex$8,\n  meshmatcap_frag: fragment$8,\n  meshnormal_vert: vertex$7,\n  meshnormal_frag: fragment$7,\n  meshphong_vert: vertex$6,\n  meshphong_frag: fragment$6,\n  meshphysical_vert: vertex$5,\n  meshphysical_frag: fragment$5,\n  meshtoon_vert: vertex$4,\n  meshtoon_frag: fragment$4,\n  points_vert: vertex$3,\n  points_frag: fragment$3,\n  shadow_vert: vertex$2,\n  shadow_frag: fragment$2,\n  sprite_vert: vertex$1,\n  sprite_frag: fragment$1\n};\nconst UniformsLib = {\n  common: {\n    diffuse: { value: /* @__PURE__ */ new Color(16777215) },\n    opacity: { value: 1 },\n    map: { value: null },\n    uvTransform: { value: /* @__PURE__ */ new Matrix3() },\n    uv2Transform: { value: /* @__PURE__ */ new Matrix3() },\n    alphaMap: { value: null },\n    alphaTest: { value: 0 }\n  },\n  specularmap: {\n    specularMap: { value: null }\n  },\n  envmap: {\n    envMap: { value: null },\n    flipEnvMap: { value: -1 },\n    reflectivity: { value: 1 },\n    ior: { value: 1.5 },\n    refractionRatio: { value: 0.98 }\n  },\n  aomap: {\n    aoMap: { value: null },\n    aoMapIntensity: { value: 1 }\n  },\n  lightmap: {\n    lightMap: { value: null },\n    lightMapIntensity: { value: 1 }\n  },\n  emissivemap: {\n    emissiveMap: { value: null }\n  },\n  bumpmap: {\n    bumpMap: { value: null },\n    bumpScale: { value: 1 }\n  },\n  normalmap: {\n    normalMap: { value: null },\n    normalScale: { value: /* @__PURE__ */ new Vector2(1, 1) }\n  },\n  displacementmap: {\n    displacementMap: { value: null },\n    displacementScale: { value: 1 },\n    displacementBias: { value: 0 }\n  },\n  roughnessmap: {\n    roughnessMap: { value: null }\n  },\n  metalnessmap: {\n    metalnessMap: { value: null }\n  },\n  gradientmap: {\n    gradientMap: { value: null }\n  },\n  fog: {\n    fogDensity: { value: 25e-5 },\n    fogNear: { value: 1 },\n    fogFar: { value: 2e3 },\n    fogColor: { value: /* @__PURE__ */ new Color(16777215) }\n  },\n  lights: {\n    ambientLightColor: { value: [] },\n    lightProbe: { value: [] },\n    directionalLights: { value: [], properties: {\n      direction: {},\n      color: {}\n    } },\n    directionalLightShadows: { value: [], properties: {\n      shadowBias: {},\n      shadowNormalBias: {},\n      shadowRadius: {},\n      shadowMapSize: {}\n    } },\n    directionalShadowMap: { value: [] },\n    directionalShadowMatrix: { value: [] },\n    spotLights: { value: [], properties: {\n      color: {},\n      position: {},\n      direction: {},\n      distance: {},\n      coneCos: {},\n      penumbraCos: {},\n      decay: {}\n    } },\n    spotLightShadows: { value: [], properties: {\n      shadowBias: {},\n      shadowNormalBias: {},\n      shadowRadius: {},\n      shadowMapSize: {}\n    } },\n    spotShadowMap: { value: [] },\n    spotShadowMatrix: { value: [] },\n    pointLights: { value: [], properties: {\n      color: {},\n      position: {},\n      decay: {},\n      distance: {}\n    } },\n    pointLightShadows: { value: [], properties: {\n      shadowBias: {},\n      shadowNormalBias: {},\n      shadowRadius: {},\n      shadowMapSize: {},\n      shadowCameraNear: {},\n      shadowCameraFar: {}\n    } },\n    pointShadowMap: { value: [] },\n    pointShadowMatrix: { value: [] },\n    hemisphereLights: { value: [], properties: {\n      direction: {},\n      skyColor: {},\n      groundColor: {}\n    } },\n    rectAreaLights: { value: [], properties: {\n      color: {},\n      position: {},\n      width: {},\n      height: {}\n    } },\n    ltc_1: { value: null },\n    ltc_2: { value: null }\n  },\n  points: {\n    diffuse: { value: /* @__PURE__ */ new Color(16777215) },\n    opacity: { value: 1 },\n    size: { value: 1 },\n    scale: { value: 1 },\n    map: { value: null },\n    alphaMap: { value: null },\n    alphaTest: { value: 0 },\n    uvTransform: { value: /* @__PURE__ */ new Matrix3() }\n  },\n  sprite: {\n    diffuse: { value: /* @__PURE__ */ new Color(16777215) },\n    opacity: { value: 1 },\n    center: { value: /* @__PURE__ */ new Vector2(0.5, 0.5) },\n    rotation: { value: 0 },\n    map: { value: null },\n    alphaMap: { value: null },\n    alphaTest: { value: 0 },\n    uvTransform: { value: /* @__PURE__ */ new Matrix3() }\n  }\n};\nconst ShaderLib = {\n  basic: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.specularmap,\n      UniformsLib.envmap,\n      UniformsLib.aomap,\n      UniformsLib.lightmap,\n      UniformsLib.fog\n    ]),\n    vertexShader: ShaderChunk.meshbasic_vert,\n    fragmentShader: ShaderChunk.meshbasic_frag\n  },\n  lambert: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.specularmap,\n      UniformsLib.envmap,\n      UniformsLib.aomap,\n      UniformsLib.lightmap,\n      UniformsLib.emissivemap,\n      UniformsLib.fog,\n      UniformsLib.lights,\n      {\n        emissive: { value: /* @__PURE__ */ new Color(0) }\n      }\n    ]),\n    vertexShader: ShaderChunk.meshlambert_vert,\n    fragmentShader: ShaderChunk.meshlambert_frag\n  },\n  phong: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.specularmap,\n      UniformsLib.envmap,\n      UniformsLib.aomap,\n      UniformsLib.lightmap,\n      UniformsLib.emissivemap,\n      UniformsLib.bumpmap,\n      UniformsLib.normalmap,\n      UniformsLib.displacementmap,\n      UniformsLib.fog,\n      UniformsLib.lights,\n      {\n        emissive: { value: /* @__PURE__ */ new Color(0) },\n        specular: { value: /* @__PURE__ */ new Color(1118481) },\n        shininess: { value: 30 }\n      }\n    ]),\n    vertexShader: ShaderChunk.meshphong_vert,\n    fragmentShader: ShaderChunk.meshphong_frag\n  },\n  standard: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.envmap,\n      UniformsLib.aomap,\n      UniformsLib.lightmap,\n      UniformsLib.emissivemap,\n      UniformsLib.bumpmap,\n      UniformsLib.normalmap,\n      UniformsLib.displacementmap,\n      UniformsLib.roughnessmap,\n      UniformsLib.metalnessmap,\n      UniformsLib.fog,\n      UniformsLib.lights,\n      {\n        emissive: { value: /* @__PURE__ */ new Color(0) },\n        roughness: { value: 1 },\n        metalness: { value: 0 },\n        envMapIntensity: { value: 1 }\n      }\n    ]),\n    vertexShader: ShaderChunk.meshphysical_vert,\n    fragmentShader: ShaderChunk.meshphysical_frag\n  },\n  toon: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.aomap,\n      UniformsLib.lightmap,\n      UniformsLib.emissivemap,\n      UniformsLib.bumpmap,\n      UniformsLib.normalmap,\n      UniformsLib.displacementmap,\n      UniformsLib.gradientmap,\n      UniformsLib.fog,\n      UniformsLib.lights,\n      {\n        emissive: { value: /* @__PURE__ */ new Color(0) }\n      }\n    ]),\n    vertexShader: ShaderChunk.meshtoon_vert,\n    fragmentShader: ShaderChunk.meshtoon_frag\n  },\n  matcap: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.bumpmap,\n      UniformsLib.normalmap,\n      UniformsLib.displacementmap,\n      UniformsLib.fog,\n      {\n        matcap: { value: null }\n      }\n    ]),\n    vertexShader: ShaderChunk.meshmatcap_vert,\n    fragmentShader: ShaderChunk.meshmatcap_frag\n  },\n  points: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.points,\n      UniformsLib.fog\n    ]),\n    vertexShader: ShaderChunk.points_vert,\n    fragmentShader: ShaderChunk.points_frag\n  },\n  dashed: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.fog,\n      {\n        scale: { value: 1 },\n        dashSize: { value: 1 },\n        totalSize: { value: 2 }\n      }\n    ]),\n    vertexShader: ShaderChunk.linedashed_vert,\n    fragmentShader: ShaderChunk.linedashed_frag\n  },\n  depth: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.displacementmap\n    ]),\n    vertexShader: ShaderChunk.depth_vert,\n    fragmentShader: ShaderChunk.depth_frag\n  },\n  normal: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.bumpmap,\n      UniformsLib.normalmap,\n      UniformsLib.displacementmap,\n      {\n        opacity: { value: 1 }\n      }\n    ]),\n    vertexShader: ShaderChunk.meshnormal_vert,\n    fragmentShader: ShaderChunk.meshnormal_frag\n  },\n  sprite: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.sprite,\n      UniformsLib.fog\n    ]),\n    vertexShader: ShaderChunk.sprite_vert,\n    fragmentShader: ShaderChunk.sprite_frag\n  },\n  background: {\n    uniforms: {\n      uvTransform: { value: /* @__PURE__ */ new Matrix3() },\n      t2D: { value: null }\n    },\n    vertexShader: ShaderChunk.background_vert,\n    fragmentShader: ShaderChunk.background_frag\n  },\n  cube: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.envmap,\n      {\n        opacity: { value: 1 }\n      }\n    ]),\n    vertexShader: ShaderChunk.cube_vert,\n    fragmentShader: ShaderChunk.cube_frag\n  },\n  equirect: {\n    uniforms: {\n      tEquirect: { value: null }\n    },\n    vertexShader: ShaderChunk.equirect_vert,\n    fragmentShader: ShaderChunk.equirect_frag\n  },\n  distanceRGBA: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.common,\n      UniformsLib.displacementmap,\n      {\n        referencePosition: { value: /* @__PURE__ */ new Vector3() },\n        nearDistance: { value: 1 },\n        farDistance: { value: 1e3 }\n      }\n    ]),\n    vertexShader: ShaderChunk.distanceRGBA_vert,\n    fragmentShader: ShaderChunk.distanceRGBA_frag\n  },\n  shadow: {\n    uniforms: /* @__PURE__ */ mergeUniforms([\n      UniformsLib.lights,\n      UniformsLib.fog,\n      {\n        color: { value: /* @__PURE__ */ new Color(0) },\n        opacity: { value: 1 }\n      }\n    ]),\n    vertexShader: ShaderChunk.shadow_vert,\n    fragmentShader: ShaderChunk.shadow_frag\n  }\n};\nShaderLib.physical = {\n  uniforms: /* @__PURE__ */ mergeUniforms([\n    ShaderLib.standard.uniforms,\n    {\n      clearcoat: { value: 0 },\n      clearcoatMap: { value: null },\n      clearcoatRoughness: { value: 0 },\n      clearcoatRoughnessMap: { value: null },\n      clearcoatNormalScale: { value: /* @__PURE__ */ new Vector2(1, 1) },\n      clearcoatNormalMap: { value: null },\n      iridescence: { value: 0 },\n      iridescenceMap: { value: null },\n      iridescenceIOR: { value: 1.3 },\n      iridescenceThicknessMinimum: { value: 100 },\n      iridescenceThicknessMaximum: { value: 400 },\n      iridescenceThicknessMap: { value: null },\n      sheen: { value: 0 },\n      sheenColor: { value: /* @__PURE__ */ new Color(0) },\n      sheenColorMap: { value: null },\n      sheenRoughness: { value: 1 },\n      sheenRoughnessMap: { value: null },\n      transmission: { value: 0 },\n      transmissionMap: { value: null },\n      transmissionSamplerSize: { value: /* @__PURE__ */ new Vector2() },\n      transmissionSamplerMap: { value: null },\n      thickness: { value: 0 },\n      thicknessMap: { value: null },\n      attenuationDistance: { value: 0 },\n      attenuationColor: { value: /* @__PURE__ */ new Color(0) },\n      specularIntensity: { value: 1 },\n      specularIntensityMap: { value: null },\n      specularColor: { value: /* @__PURE__ */ new Color(1, 1, 1) },\n      specularColorMap: { value: null }\n    }\n  ]),\n  vertexShader: ShaderChunk.meshphysical_vert,\n  fragmentShader: ShaderChunk.meshphysical_frag\n};\nfunction WebGLBackground(renderer, cubemaps, state, objects, alpha, premultipliedAlpha) {\n  const clearColor = new Color(0);\n  let clearAlpha = alpha === true ? 0 : 1;\n  let planeMesh;\n  let boxMesh;\n  let currentBackground = null;\n  let currentBackgroundVersion = 0;\n  let currentTonemapping = null;\n  function render(renderList, scene) {\n    let forceClear = false;\n    let background = scene.isScene === true ? scene.background : null;\n    if (background && background.isTexture) {\n      background = cubemaps.get(background);\n    }\n    const xr = renderer.xr;\n    const session = xr.getSession && xr.getSession();\n    if (session && session.environmentBlendMode === \"additive\") {\n      background = null;\n    }\n    if (background === null) {\n      setClear(clearColor, clearAlpha);\n    } else if (background && background.isColor) {\n      setClear(background, 1);\n      forceClear = true;\n    }\n    if (renderer.autoClear || forceClear) {\n      renderer.clear(renderer.autoClearColor, renderer.autoClearDepth, renderer.autoClearStencil);\n    }\n    if (background && (background.isCubeTexture || background.mapping === CubeUVReflectionMapping)) {\n      if (boxMesh === void 0) {\n        boxMesh = new Mesh(new BoxGeometry(1, 1, 1), new ShaderMaterial({\n          name: \"BackgroundCubeMaterial\",\n          uniforms: cloneUniforms(ShaderLib.cube.uniforms),\n          vertexShader: ShaderLib.cube.vertexShader,\n          fragmentShader: ShaderLib.cube.fragmentShader,\n          side: BackSide,\n          depthTest: false,\n          depthWrite: false,\n          fog: false\n        }));\n        boxMesh.geometry.deleteAttribute(\"normal\");\n        boxMesh.geometry.deleteAttribute(\"uv\");\n        boxMesh.onBeforeRender = function(renderer2, scene2, camera) {\n          this.matrixWorld.copyPosition(camera.matrixWorld);\n        };\n        Object.defineProperty(boxMesh.material, \"envMap\", {\n          get: function() {\n            return this.uniforms.envMap.value;\n          }\n        });\n        objects.update(boxMesh);\n      }\n      boxMesh.material.uniforms.envMap.value = background;\n      boxMesh.material.uniforms.flipEnvMap.value = background.isCubeTexture && background.isRenderTargetTexture === false ? -1 : 1;\n      if (currentBackground !== background || currentBackgroundVersion !== background.version || currentTonemapping !== renderer.toneMapping) {\n        boxMesh.material.needsUpdate = true;\n        currentBackground = background;\n        currentBackgroundVersion = background.version;\n        currentTonemapping = renderer.toneMapping;\n      }\n      boxMesh.layers.enableAll();\n      renderList.unshift(boxMesh, boxMesh.geometry, boxMesh.material, 0, 0, null);\n    } else if (background && background.isTexture) {\n      if (planeMesh === void 0) {\n        planeMesh = new Mesh(new PlaneGeometry(2, 2), new ShaderMaterial({\n          name: \"BackgroundMaterial\",\n          uniforms: cloneUniforms(ShaderLib.background.uniforms),\n          vertexShader: ShaderLib.background.vertexShader,\n          fragmentShader: ShaderLib.background.fragmentShader,\n          side: FrontSide,\n          depthTest: false,\n          depthWrite: false,\n          fog: false\n        }));\n        planeMesh.geometry.deleteAttribute(\"normal\");\n        Object.defineProperty(planeMesh.material, \"map\", {\n          get: function() {\n            return this.uniforms.t2D.value;\n          }\n        });\n        objects.update(planeMesh);\n      }\n      planeMesh.material.uniforms.t2D.value = background;\n      if (background.matrixAutoUpdate === true) {\n        background.updateMatrix();\n      }\n      planeMesh.material.uniforms.uvTransform.value.copy(background.matrix);\n      if (currentBackground !== background || currentBackgroundVersion !== background.version || currentTonemapping !== renderer.toneMapping) {\n        planeMesh.material.needsUpdate = true;\n        currentBackground = background;\n        currentBackgroundVersion = background.version;\n        currentTonemapping = renderer.toneMapping;\n      }\n      planeMesh.layers.enableAll();\n      renderList.unshift(planeMesh, planeMesh.geometry, planeMesh.material, 0, 0, null);\n    }\n  }\n  function setClear(color, alpha2) {\n    state.buffers.color.setClear(color.r, color.g, color.b, alpha2, premultipliedAlpha);\n  }\n  return {\n    getClearColor: function() {\n      return clearColor;\n    },\n    setClearColor: function(color, alpha2 = 1) {\n      clearColor.set(color);\n      clearAlpha = alpha2;\n      setClear(clearColor, clearAlpha);\n    },\n    getClearAlpha: function() {\n      return clearAlpha;\n    },\n    setClearAlpha: function(alpha2) {\n      clearAlpha = alpha2;\n      setClear(clearColor, clearAlpha);\n    },\n    render\n  };\n}\nfunction WebGLBindingStates(gl, extensions, attributes, capabilities) {\n  const maxVertexAttributes = gl.getParameter(34921);\n  const extension = capabilities.isWebGL2 ? null : extensions.get(\"OES_vertex_array_object\");\n  const vaoAvailable = capabilities.isWebGL2 || extension !== null;\n  const bindingStates = {};\n  const defaultState = createBindingState(null);\n  let currentState = defaultState;\n  let forceUpdate = false;\n  function setup(object, material, program, geometry, index2) {\n    let updateBuffers = false;\n    if (vaoAvailable) {\n      const state = getBindingState(geometry, program, material);\n      if (currentState !== state) {\n        currentState = state;\n        bindVertexArrayObject(currentState.object);\n      }\n      updateBuffers = needsUpdate(object, geometry, program, index2);\n      if (updateBuffers)\n        saveCache(object, geometry, program, index2);\n    } else {\n      const wireframe = material.wireframe === true;\n      if (currentState.geometry !== geometry.id || currentState.program !== program.id || currentState.wireframe !== wireframe) {\n        currentState.geometry = geometry.id;\n        currentState.program = program.id;\n        currentState.wireframe = wireframe;\n        updateBuffers = true;\n      }\n    }\n    if (index2 !== null) {\n      attributes.update(index2, 34963);\n    }\n    if (updateBuffers || forceUpdate) {\n      forceUpdate = false;\n      setupVertexAttributes(object, material, program, geometry);\n      if (index2 !== null) {\n        gl.bindBuffer(34963, attributes.get(index2).buffer);\n      }\n    }\n  }\n  function createVertexArrayObject() {\n    if (capabilities.isWebGL2)\n      return gl.createVertexArray();\n    return extension.createVertexArrayOES();\n  }\n  function bindVertexArrayObject(vao) {\n    if (capabilities.isWebGL2)\n      return gl.bindVertexArray(vao);\n    return extension.bindVertexArrayOES(vao);\n  }\n  function deleteVertexArrayObject(vao) {\n    if (capabilities.isWebGL2)\n      return gl.deleteVertexArray(vao);\n    return extension.deleteVertexArrayOES(vao);\n  }\n  function getBindingState(geometry, program, material) {\n    const wireframe = material.wireframe === true;\n    let programMap = bindingStates[geometry.id];\n    if (programMap === void 0) {\n      programMap = {};\n      bindingStates[geometry.id] = programMap;\n    }\n    let stateMap = programMap[program.id];\n    if (stateMap === void 0) {\n      stateMap = {};\n      programMap[program.id] = stateMap;\n    }\n    let state = stateMap[wireframe];\n    if (state === void 0) {\n      state = createBindingState(createVertexArrayObject());\n      stateMap[wireframe] = state;\n    }\n    return state;\n  }\n  function createBindingState(vao) {\n    const newAttributes = [];\n    const enabledAttributes = [];\n    const attributeDivisors = [];\n    for (let i = 0; i < maxVertexAttributes; i++) {\n      newAttributes[i] = 0;\n      enabledAttributes[i] = 0;\n      attributeDivisors[i] = 0;\n    }\n    return {\n      geometry: null,\n      program: null,\n      wireframe: false,\n      newAttributes,\n      enabledAttributes,\n      attributeDivisors,\n      object: vao,\n      attributes: {},\n      index: null\n    };\n  }\n  function needsUpdate(object, geometry, program, index2) {\n    const cachedAttributes = currentState.attributes;\n    const geometryAttributes = geometry.attributes;\n    let attributesNum = 0;\n    const programAttributes = program.getAttributes();\n    for (const name in programAttributes) {\n      const programAttribute = programAttributes[name];\n      if (programAttribute.location >= 0) {\n        const cachedAttribute = cachedAttributes[name];\n        let geometryAttribute = geometryAttributes[name];\n        if (geometryAttribute === void 0) {\n          if (name === \"instanceMatrix\" && object.instanceMatrix)\n            geometryAttribute = object.instanceMatrix;\n          if (name === \"instanceColor\" && object.instanceColor)\n            geometryAttribute = object.instanceColor;\n        }\n        if (cachedAttribute === void 0)\n          return true;\n        if (cachedAttribute.attribute !== geometryAttribute)\n          return true;\n        if (geometryAttribute && cachedAttribute.data !== geometryAttribute.data)\n          return true;\n        attributesNum++;\n      }\n    }\n    if (currentState.attributesNum !== attributesNum)\n      return true;\n    if (currentState.index !== index2)\n      return true;\n    return false;\n  }\n  function saveCache(object, geometry, program, index2) {\n    const cache = {};\n    const attributes2 = geometry.attributes;\n    let attributesNum = 0;\n    const programAttributes = program.getAttributes();\n    for (const name in programAttributes) {\n      const programAttribute = programAttributes[name];\n      if (programAttribute.location >= 0) {\n        let attribute = attributes2[name];\n        if (attribute === void 0) {\n          if (name === \"instanceMatrix\" && object.instanceMatrix)\n            attribute = object.instanceMatrix;\n          if (name === \"instanceColor\" && object.instanceColor)\n            attribute = object.instanceColor;\n        }\n        const data = {};\n        data.attribute = attribute;\n        if (attribute && attribute.data) {\n          data.data = attribute.data;\n        }\n        cache[name] = data;\n        attributesNum++;\n      }\n    }\n    currentState.attributes = cache;\n    currentState.attributesNum = attributesNum;\n    currentState.index = index2;\n  }\n  function initAttributes() {\n    const newAttributes = currentState.newAttributes;\n    for (let i = 0, il = newAttributes.length; i < il; i++) {\n      newAttributes[i] = 0;\n    }\n  }\n  function enableAttribute(attribute) {\n    enableAttributeAndDivisor(attribute, 0);\n  }\n  function enableAttributeAndDivisor(attribute, meshPerAttribute) {\n    const newAttributes = currentState.newAttributes;\n    const enabledAttributes = currentState.enabledAttributes;\n    const attributeDivisors = currentState.attributeDivisors;\n    newAttributes[attribute] = 1;\n    if (enabledAttributes[attribute] === 0) {\n      gl.enableVertexAttribArray(attribute);\n      enabledAttributes[attribute] = 1;\n    }\n    if (attributeDivisors[attribute] !== meshPerAttribute) {\n      const extension2 = capabilities.isWebGL2 ? gl : extensions.get(\"ANGLE_instanced_arrays\");\n      extension2[capabilities.isWebGL2 ? \"vertexAttribDivisor\" : \"vertexAttribDivisorANGLE\"](attribute, meshPerAttribute);\n      attributeDivisors[attribute] = meshPerAttribute;\n    }\n  }\n  function disableUnusedAttributes() {\n    const newAttributes = currentState.newAttributes;\n    const enabledAttributes = currentState.enabledAttributes;\n    for (let i = 0, il = enabledAttributes.length; i < il; i++) {\n      if (enabledAttributes[i] !== newAttributes[i]) {\n        gl.disableVertexAttribArray(i);\n        enabledAttributes[i] = 0;\n      }\n    }\n  }\n  function vertexAttribPointer(index2, size, type, normalized, stride, offset) {\n    if (capabilities.isWebGL2 === true && (type === 5124 || type === 5125)) {\n      gl.vertexAttribIPointer(index2, size, type, stride, offset);\n    } else {\n      gl.vertexAttribPointer(index2, size, type, normalized, stride, offset);\n    }\n  }\n  function setupVertexAttributes(object, material, program, geometry) {\n    if (capabilities.isWebGL2 === false && (object.isInstancedMesh || geometry.isInstancedBufferGeometry)) {\n      if (extensions.get(\"ANGLE_instanced_arrays\") === null)\n        return;\n    }\n    initAttributes();\n    const geometryAttributes = geometry.attributes;\n    const programAttributes = program.getAttributes();\n    const materialDefaultAttributeValues = material.defaultAttributeValues;\n    for (const name in programAttributes) {\n      const programAttribute = programAttributes[name];\n      if (programAttribute.location >= 0) {\n        let geometryAttribute = geometryAttributes[name];\n        if (geometryAttribute === void 0) {\n          if (name === \"instanceMatrix\" && object.instanceMatrix)\n            geometryAttribute = object.instanceMatrix;\n          if (name === \"instanceColor\" && object.instanceColor)\n            geometryAttribute = object.instanceColor;\n        }\n        if (geometryAttribute !== void 0) {\n          const normalized = geometryAttribute.normalized;\n          const size = geometryAttribute.itemSize;\n          const attribute = attributes.get(geometryAttribute);\n          if (attribute === void 0)\n            continue;\n          const buffer = attribute.buffer;\n          const type = attribute.type;\n          const bytesPerElement = attribute.bytesPerElement;\n          if (geometryAttribute.isInterleavedBufferAttribute) {\n            const data = geometryAttribute.data;\n            const stride = data.stride;\n            const offset = geometryAttribute.offset;\n            if (data.isInstancedInterleavedBuffer) {\n              for (let i = 0; i < programAttribute.locationSize; i++) {\n                enableAttributeAndDivisor(programAttribute.location + i, data.meshPerAttribute);\n              }\n              if (object.isInstancedMesh !== true && geometry._maxInstanceCount === void 0) {\n                geometry._maxInstanceCount = data.meshPerAttribute * data.count;\n              }\n            } else {\n              for (let i = 0; i < programAttribute.locationSize; i++) {\n                enableAttribute(programAttribute.location + i);\n              }\n            }\n            gl.bindBuffer(34962, buffer);\n            for (let i = 0; i < programAttribute.locationSize; i++) {\n              vertexAttribPointer(programAttribute.location + i, size / programAttribute.locationSize, type, normalized, stride * bytesPerElement, (offset + size / programAttribute.locationSize * i) * bytesPerElement);\n            }\n          } else {\n            if (geometryAttribute.isInstancedBufferAttribute) {\n              for (let i = 0; i < programAttribute.locationSize; i++) {\n                enableAttributeAndDivisor(programAttribute.location + i, geometryAttribute.meshPerAttribute);\n              }\n              if (object.isInstancedMesh !== true && geometry._maxInstanceCount === void 0) {\n                geometry._maxInstanceCount = geometryAttribute.meshPerAttribute * geometryAttribute.count;\n              }\n            } else {\n              for (let i = 0; i < programAttribute.locationSize; i++) {\n                enableAttribute(programAttribute.location + i);\n              }\n            }\n            gl.bindBuffer(34962, buffer);\n            for (let i = 0; i < programAttribute.locationSize; i++) {\n              vertexAttribPointer(programAttribute.location + i, size / programAttribute.locationSize, type, normalized, size * bytesPerElement, size / programAttribute.locationSize * i * bytesPerElement);\n            }\n          }\n        } else if (materialDefaultAttributeValues !== void 0) {\n          const value = materialDefaultAttributeValues[name];\n          if (value !== void 0) {\n            switch (value.length) {\n              case 2:\n                gl.vertexAttrib2fv(programAttribute.location, value);\n                break;\n              case 3:\n                gl.vertexAttrib3fv(programAttribute.location, value);\n                break;\n              case 4:\n                gl.vertexAttrib4fv(programAttribute.location, value);\n                break;\n              default:\n                gl.vertexAttrib1fv(programAttribute.location, value);\n            }\n          }\n        }\n      }\n    }\n    disableUnusedAttributes();\n  }\n  function dispose() {\n    reset();\n    for (const geometryId in bindingStates) {\n      const programMap = bindingStates[geometryId];\n      for (const programId in programMap) {\n        const stateMap = programMap[programId];\n        for (const wireframe in stateMap) {\n          deleteVertexArrayObject(stateMap[wireframe].object);\n          delete stateMap[wireframe];\n        }\n        delete programMap[programId];\n      }\n      delete bindingStates[geometryId];\n    }\n  }\n  function releaseStatesOfGeometry(geometry) {\n    if (bindingStates[geometry.id] === void 0)\n      return;\n    const programMap = bindingStates[geometry.id];\n    for (const programId in programMap) {\n      const stateMap = programMap[programId];\n      for (const wireframe in stateMap) {\n        deleteVertexArrayObject(stateMap[wireframe].object);\n        delete stateMap[wireframe];\n      }\n      delete programMap[programId];\n    }\n    delete bindingStates[geometry.id];\n  }\n  function releaseStatesOfProgram(program) {\n    for (const geometryId in bindingStates) {\n      const programMap = bindingStates[geometryId];\n      if (programMap[program.id] === void 0)\n        continue;\n      const stateMap = programMap[program.id];\n      for (const wireframe in stateMap) {\n        deleteVertexArrayObject(stateMap[wireframe].object);\n        delete stateMap[wireframe];\n      }\n      delete programMap[program.id];\n    }\n  }\n  function reset() {\n    resetDefaultState();\n    forceUpdate = true;\n    if (currentState === defaultState)\n      return;\n    currentState = defaultState;\n    bindVertexArrayObject(currentState.object);\n  }\n  function resetDefaultState() {\n    defaultState.geometry = null;\n    defaultState.program = null;\n    defaultState.wireframe = false;\n  }\n  return {\n    setup,\n    reset,\n    resetDefaultState,\n    dispose,\n    releaseStatesOfGeometry,\n    releaseStatesOfProgram,\n    initAttributes,\n    enableAttribute,\n    disableUnusedAttributes\n  };\n}\nfunction WebGLBufferRenderer(gl, extensions, info, capabilities) {\n  const isWebGL2 = capabilities.isWebGL2;\n  let mode;\n  function setMode(value) {\n    mode = value;\n  }\n  function render(start, count) {\n    gl.drawArrays(mode, start, count);\n    info.update(count, mode, 1);\n  }\n  function renderInstances(start, count, primcount) {\n    if (primcount === 0)\n      return;\n    let extension, methodName;\n    if (isWebGL2) {\n      extension = gl;\n      methodName = \"drawArraysInstanced\";\n    } else {\n      extension = extensions.get(\"ANGLE_instanced_arrays\");\n      methodName = \"drawArraysInstancedANGLE\";\n      if (extension === null) {\n        console.error(\"THREE.WebGLBufferRenderer: using THREE.InstancedBufferGeometry but hardware does not support extension ANGLE_instanced_arrays.\");\n        return;\n      }\n    }\n    extension[methodName](mode, start, count, primcount);\n    info.update(count, mode, primcount);\n  }\n  this.setMode = setMode;\n  this.render = render;\n  this.renderInstances = renderInstances;\n}\nfunction WebGLCapabilities(gl, extensions, parameters) {\n  let maxAnisotropy;\n  function getMaxAnisotropy() {\n    if (maxAnisotropy !== void 0)\n      return maxAnisotropy;\n    if (extensions.has(\"EXT_texture_filter_anisotropic\") === true) {\n      const extension = extensions.get(\"EXT_texture_filter_anisotropic\");\n      maxAnisotropy = gl.getParameter(extension.MAX_TEXTURE_MAX_ANISOTROPY_EXT);\n    } else {\n      maxAnisotropy = 0;\n    }\n    return maxAnisotropy;\n  }\n  function getMaxPrecision(precision2) {\n    if (precision2 === \"highp\") {\n      if (gl.getShaderPrecisionFormat(35633, 36338).precision > 0 && gl.getShaderPrecisionFormat(35632, 36338).precision > 0) {\n        return \"highp\";\n      }\n      precision2 = \"mediump\";\n    }\n    if (precision2 === \"mediump\") {\n      if (gl.getShaderPrecisionFormat(35633, 36337).precision > 0 && gl.getShaderPrecisionFormat(35632, 36337).precision > 0) {\n        return \"mediump\";\n      }\n    }\n    return \"lowp\";\n  }\n  const isWebGL2 = typeof WebGL2RenderingContext !== \"undefined\" && gl instanceof WebGL2RenderingContext || typeof WebGL2ComputeRenderingContext !== \"undefined\" && gl instanceof WebGL2ComputeRenderingContext;\n  let precision = parameters.precision !== void 0 ? parameters.precision : \"highp\";\n  const maxPrecision = getMaxPrecision(precision);\n  if (maxPrecision !== precision) {\n    console.warn(\"THREE.WebGLRenderer:\", precision, \"not supported, using\", maxPrecision, \"instead.\");\n    precision = maxPrecision;\n  }\n  const drawBuffers = isWebGL2 || extensions.has(\"WEBGL_draw_buffers\");\n  const logarithmicDepthBuffer = parameters.logarithmicDepthBuffer === true;\n  const maxTextures = gl.getParameter(34930);\n  const maxVertexTextures = gl.getParameter(35660);\n  const maxTextureSize = gl.getParameter(3379);\n  const maxCubemapSize = gl.getParameter(34076);\n  const maxAttributes = gl.getParameter(34921);\n  const maxVertexUniforms = gl.getParameter(36347);\n  const maxVaryings = gl.getParameter(36348);\n  const maxFragmentUniforms = gl.getParameter(36349);\n  const vertexTextures = maxVertexTextures > 0;\n  const floatFragmentTextures = isWebGL2 || extensions.has(\"OES_texture_float\");\n  const floatVertexTextures = vertexTextures && floatFragmentTextures;\n  const maxSamples = isWebGL2 ? gl.getParameter(36183) : 0;\n  return {\n    isWebGL2,\n    drawBuffers,\n    getMaxAnisotropy,\n    getMaxPrecision,\n    precision,\n    logarithmicDepthBuffer,\n    maxTextures,\n    maxVertexTextures,\n    maxTextureSize,\n    maxCubemapSize,\n    maxAttributes,\n    maxVertexUniforms,\n    maxVaryings,\n    maxFragmentUniforms,\n    vertexTextures,\n    floatFragmentTextures,\n    floatVertexTextures,\n    maxSamples\n  };\n}\nfunction WebGLClipping(properties) {\n  const scope = this;\n  let globalState = null, numGlobalPlanes = 0, localClippingEnabled = false, renderingShadows = false;\n  const plane = new Plane(), viewNormalMatrix = new Matrix3(), uniform = { value: null, needsUpdate: false };\n  this.uniform = uniform;\n  this.numPlanes = 0;\n  this.numIntersection = 0;\n  this.init = function(planes, enableLocalClipping, camera) {\n    const enabled = planes.length !== 0 || enableLocalClipping || numGlobalPlanes !== 0 || localClippingEnabled;\n    localClippingEnabled = enableLocalClipping;\n    globalState = projectPlanes(planes, camera, 0);\n    numGlobalPlanes = planes.length;\n    return enabled;\n  };\n  this.beginShadows = function() {\n    renderingShadows = true;\n    projectPlanes(null);\n  };\n  this.endShadows = function() {\n    renderingShadows = false;\n    resetGlobalState();\n  };\n  this.setState = function(material, camera, useCache) {\n    const planes = material.clippingPlanes, clipIntersection = material.clipIntersection, clipShadows = material.clipShadows;\n    const materialProperties = properties.get(material);\n    if (!localClippingEnabled || planes === null || planes.length === 0 || renderingShadows && !clipShadows) {\n      if (renderingShadows) {\n        projectPlanes(null);\n      } else {\n        resetGlobalState();\n      }\n    } else {\n      const nGlobal = renderingShadows ? 0 : numGlobalPlanes, lGlobal = nGlobal * 4;\n      let dstArray = materialProperties.clippingState || null;\n      uniform.value = dstArray;\n      dstArray = projectPlanes(planes, camera, lGlobal, useCache);\n      for (let i = 0; i !== lGlobal; ++i) {\n        dstArray[i] = globalState[i];\n      }\n      materialProperties.clippingState = dstArray;\n      this.numIntersection = clipIntersection ? this.numPlanes : 0;\n      this.numPlanes += nGlobal;\n    }\n  };\n  function resetGlobalState() {\n    if (uniform.value !== globalState) {\n      uniform.value = globalState;\n      uniform.needsUpdate = numGlobalPlanes > 0;\n    }\n    scope.numPlanes = numGlobalPlanes;\n    scope.numIntersection = 0;\n  }\n  function projectPlanes(planes, camera, dstOffset, skipTransform) {\n    const nPlanes = planes !== null ? planes.length : 0;\n    let dstArray = null;\n    if (nPlanes !== 0) {\n      dstArray = uniform.value;\n      if (skipTransform !== true || dstArray === null) {\n        const flatSize = dstOffset + nPlanes * 4, viewMatrix = camera.matrixWorldInverse;\n        viewNormalMatrix.getNormalMatrix(viewMatrix);\n        if (dstArray === null || dstArray.length < flatSize) {\n          dstArray = new Float32Array(flatSize);\n        }\n        for (let i = 0, i4 = dstOffset; i !== nPlanes; ++i, i4 += 4) {\n          plane.copy(planes[i]).applyMatrix4(viewMatrix, viewNormalMatrix);\n          plane.normal.toArray(dstArray, i4);\n          dstArray[i4 + 3] = plane.constant;\n        }\n      }\n      uniform.value = dstArray;\n      uniform.needsUpdate = true;\n    }\n    scope.numPlanes = nPlanes;\n    scope.numIntersection = 0;\n    return dstArray;\n  }\n}\nfunction WebGLCubeMaps(renderer) {\n  let cubemaps = /* @__PURE__ */ new WeakMap();\n  function mapTextureMapping(texture, mapping) {\n    if (mapping === EquirectangularReflectionMapping) {\n      texture.mapping = CubeReflectionMapping;\n    } else if (mapping === EquirectangularRefractionMapping) {\n      texture.mapping = CubeRefractionMapping;\n    }\n    return texture;\n  }\n  function get(texture) {\n    if (texture && texture.isTexture && texture.isRenderTargetTexture === false) {\n      const mapping = texture.mapping;\n      if (mapping === EquirectangularReflectionMapping || mapping === EquirectangularRefractionMapping) {\n        if (cubemaps.has(texture)) {\n          const cubemap = cubemaps.get(texture).texture;\n          return mapTextureMapping(cubemap, texture.mapping);\n        } else {\n          const image = texture.image;\n          if (image && image.height > 0) {\n            const renderTarget = new WebGLCubeRenderTarget(image.height / 2);\n            renderTarget.fromEquirectangularTexture(renderer, texture);\n            cubemaps.set(texture, renderTarget);\n            texture.addEventListener(\"dispose\", onTextureDispose);\n            return mapTextureMapping(renderTarget.texture, texture.mapping);\n          } else {\n            return null;\n          }\n        }\n      }\n    }\n    return texture;\n  }\n  function onTextureDispose(event) {\n    const texture = event.target;\n    texture.removeEventListener(\"dispose\", onTextureDispose);\n    const cubemap = cubemaps.get(texture);\n    if (cubemap !== void 0) {\n      cubemaps.delete(texture);\n      cubemap.dispose();\n    }\n  }\n  function dispose() {\n    cubemaps = /* @__PURE__ */ new WeakMap();\n  }\n  return {\n    get,\n    dispose\n  };\n}\nclass OrthographicCamera extends Camera {\n  constructor(left = -1, right = 1, top = 1, bottom = -1, near = 0.1, far = 2e3) {\n    super();\n    this.isOrthographicCamera = true;\n    this.type = \"OrthographicCamera\";\n    this.zoom = 1;\n    this.view = null;\n    this.left = left;\n    this.right = right;\n    this.top = top;\n    this.bottom = bottom;\n    this.near = near;\n    this.far = far;\n    this.updateProjectionMatrix();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.left = source.left;\n    this.right = source.right;\n    this.top = source.top;\n    this.bottom = source.bottom;\n    this.near = source.near;\n    this.far = source.far;\n    this.zoom = source.zoom;\n    this.view = source.view === null ? null : Object.assign({}, source.view);\n    return this;\n  }\n  setViewOffset(fullWidth, fullHeight, x, y, width, height) {\n    if (this.view === null) {\n      this.view = {\n        enabled: true,\n        fullWidth: 1,\n        fullHeight: 1,\n        offsetX: 0,\n        offsetY: 0,\n        width: 1,\n        height: 1\n      };\n    }\n    this.view.enabled = true;\n    this.view.fullWidth = fullWidth;\n    this.view.fullHeight = fullHeight;\n    this.view.offsetX = x;\n    this.view.offsetY = y;\n    this.view.width = width;\n    this.view.height = height;\n    this.updateProjectionMatrix();\n  }\n  clearViewOffset() {\n    if (this.view !== null) {\n      this.view.enabled = false;\n    }\n    this.updateProjectionMatrix();\n  }\n  updateProjectionMatrix() {\n    const dx = (this.right - this.left) / (2 * this.zoom);\n    const dy = (this.top - this.bottom) / (2 * this.zoom);\n    const cx = (this.right + this.left) / 2;\n    const cy = (this.top + this.bottom) / 2;\n    let left = cx - dx;\n    let right = cx + dx;\n    let top = cy + dy;\n    let bottom = cy - dy;\n    if (this.view !== null && this.view.enabled) {\n      const scaleW = (this.right - this.left) / this.view.fullWidth / this.zoom;\n      const scaleH = (this.top - this.bottom) / this.view.fullHeight / this.zoom;\n      left += scaleW * this.view.offsetX;\n      right = left + scaleW * this.view.width;\n      top -= scaleH * this.view.offsetY;\n      bottom = top - scaleH * this.view.height;\n    }\n    this.projectionMatrix.makeOrthographic(left, right, top, bottom, this.near, this.far);\n    this.projectionMatrixInverse.copy(this.projectionMatrix).invert();\n  }\n  toJSON(meta) {\n    const data = super.toJSON(meta);\n    data.object.zoom = this.zoom;\n    data.object.left = this.left;\n    data.object.right = this.right;\n    data.object.top = this.top;\n    data.object.bottom = this.bottom;\n    data.object.near = this.near;\n    data.object.far = this.far;\n    if (this.view !== null)\n      data.object.view = Object.assign({}, this.view);\n    return data;\n  }\n}\nconst LOD_MIN = 4;\nconst EXTRA_LOD_SIGMA = [0.125, 0.215, 0.35, 0.446, 0.526, 0.582];\nconst MAX_SAMPLES = 20;\nconst _flatCamera = /* @__PURE__ */ new OrthographicCamera();\nconst _clearColor = /* @__PURE__ */ new Color();\nlet _oldTarget = null;\nconst PHI = (1 + Math.sqrt(5)) / 2;\nconst INV_PHI = 1 / PHI;\nconst _axisDirections = [\n  /* @__PURE__ */ new Vector3(1, 1, 1),\n  /* @__PURE__ */ new Vector3(-1, 1, 1),\n  /* @__PURE__ */ new Vector3(1, 1, -1),\n  /* @__PURE__ */ new Vector3(-1, 1, -1),\n  /* @__PURE__ */ new Vector3(0, PHI, INV_PHI),\n  /* @__PURE__ */ new Vector3(0, PHI, -INV_PHI),\n  /* @__PURE__ */ new Vector3(INV_PHI, 0, PHI),\n  /* @__PURE__ */ new Vector3(-INV_PHI, 0, PHI),\n  /* @__PURE__ */ new Vector3(PHI, INV_PHI, 0),\n  /* @__PURE__ */ new Vector3(-PHI, INV_PHI, 0)\n];\nclass PMREMGenerator {\n  constructor(renderer) {\n    this._renderer = renderer;\n    this._pingPongRenderTarget = null;\n    this._lodMax = 0;\n    this._cubeSize = 0;\n    this._lodPlanes = [];\n    this._sizeLods = [];\n    this._sigmas = [];\n    this._blurMaterial = null;\n    this._cubemapMaterial = null;\n    this._equirectMaterial = null;\n    this._compileMaterial(this._blurMaterial);\n  }\n  fromScene(scene, sigma = 0, near = 0.1, far = 100) {\n    _oldTarget = this._renderer.getRenderTarget();\n    this._setSize(256);\n    const cubeUVRenderTarget = this._allocateTargets();\n    cubeUVRenderTarget.depthBuffer = true;\n    this._sceneToCubeUV(scene, near, far, cubeUVRenderTarget);\n    if (sigma > 0) {\n      this._blur(cubeUVRenderTarget, 0, 0, sigma);\n    }\n    this._applyPMREM(cubeUVRenderTarget);\n    this._cleanup(cubeUVRenderTarget);\n    return cubeUVRenderTarget;\n  }\n  fromEquirectangular(equirectangular, renderTarget = null) {\n    return this._fromTexture(equirectangular, renderTarget);\n  }\n  fromCubemap(cubemap, renderTarget = null) {\n    return this._fromTexture(cubemap, renderTarget);\n  }\n  compileCubemapShader() {\n    if (this._cubemapMaterial === null) {\n      this._cubemapMaterial = _getCubemapMaterial();\n      this._compileMaterial(this._cubemapMaterial);\n    }\n  }\n  compileEquirectangularShader() {\n    if (this._equirectMaterial === null) {\n      this._equirectMaterial = _getEquirectMaterial();\n      this._compileMaterial(this._equirectMaterial);\n    }\n  }\n  dispose() {\n    this._dispose();\n    if (this._cubemapMaterial !== null)\n      this._cubemapMaterial.dispose();\n    if (this._equirectMaterial !== null)\n      this._equirectMaterial.dispose();\n  }\n  _setSize(cubeSize) {\n    this._lodMax = Math.floor(Math.log2(cubeSize));\n    this._cubeSize = Math.pow(2, this._lodMax);\n  }\n  _dispose() {\n    if (this._blurMaterial !== null)\n      this._blurMaterial.dispose();\n    if (this._pingPongRenderTarget !== null)\n      this._pingPongRenderTarget.dispose();\n    for (let i = 0; i < this._lodPlanes.length; i++) {\n      this._lodPlanes[i].dispose();\n    }\n  }\n  _cleanup(outputTarget) {\n    this._renderer.setRenderTarget(_oldTarget);\n    outputTarget.scissorTest = false;\n    _setViewport(outputTarget, 0, 0, outputTarget.width, outputTarget.height);\n  }\n  _fromTexture(texture, renderTarget) {\n    if (texture.mapping === CubeReflectionMapping || texture.mapping === CubeRefractionMapping) {\n      this._setSize(texture.image.length === 0 ? 16 : texture.image[0].width || texture.image[0].image.width);\n    } else {\n      this._setSize(texture.image.width / 4);\n    }\n    _oldTarget = this._renderer.getRenderTarget();\n    const cubeUVRenderTarget = renderTarget || this._allocateTargets();\n    this._textureToCubeUV(texture, cubeUVRenderTarget);\n    this._applyPMREM(cubeUVRenderTarget);\n    this._cleanup(cubeUVRenderTarget);\n    return cubeUVRenderTarget;\n  }\n  _allocateTargets() {\n    const width = 3 * Math.max(this._cubeSize, 16 * 7);\n    const height = 4 * this._cubeSize;\n    const params = {\n      magFilter: LinearFilter,\n      minFilter: LinearFilter,\n      generateMipmaps: false,\n      type: HalfFloatType,\n      format: RGBAFormat,\n      encoding: LinearEncoding,\n      depthBuffer: false\n    };\n    const cubeUVRenderTarget = _createRenderTarget(width, height, params);\n    if (this._pingPongRenderTarget === null || this._pingPongRenderTarget.width !== width) {\n      if (this._pingPongRenderTarget !== null) {\n        this._dispose();\n      }\n      this._pingPongRenderTarget = _createRenderTarget(width, height, params);\n      const { _lodMax } = this;\n      ({ sizeLods: this._sizeLods, lodPlanes: this._lodPlanes, sigmas: this._sigmas } = _createPlanes(_lodMax));\n      this._blurMaterial = _getBlurShader(_lodMax, width, height);\n    }\n    return cubeUVRenderTarget;\n  }\n  _compileMaterial(material) {\n    const tmpMesh = new Mesh(this._lodPlanes[0], material);\n    this._renderer.compile(tmpMesh, _flatCamera);\n  }\n  _sceneToCubeUV(scene, near, far, cubeUVRenderTarget) {\n    const fov2 = 90;\n    const aspect2 = 1;\n    const cubeCamera = new PerspectiveCamera(fov2, aspect2, near, far);\n    const upSign = [1, -1, 1, 1, 1, 1];\n    const forwardSign = [1, 1, 1, -1, -1, -1];\n    const renderer = this._renderer;\n    const originalAutoClear = renderer.autoClear;\n    const toneMapping = renderer.toneMapping;\n    renderer.getClearColor(_clearColor);\n    renderer.toneMapping = NoToneMapping;\n    renderer.autoClear = false;\n    const backgroundMaterial = new MeshBasicMaterial({\n      name: \"PMREM.Background\",\n      side: BackSide,\n      depthWrite: false,\n      depthTest: false\n    });\n    const backgroundBox = new Mesh(new BoxGeometry(), backgroundMaterial);\n    let useSolidColor = false;\n    const background = scene.background;\n    if (background) {\n      if (background.isColor) {\n        backgroundMaterial.color.copy(background);\n        scene.background = null;\n        useSolidColor = true;\n      }\n    } else {\n      backgroundMaterial.color.copy(_clearColor);\n      useSolidColor = true;\n    }\n    for (let i = 0; i < 6; i++) {\n      const col = i % 3;\n      if (col === 0) {\n        cubeCamera.up.set(0, upSign[i], 0);\n        cubeCamera.lookAt(forwardSign[i], 0, 0);\n      } else if (col === 1) {\n        cubeCamera.up.set(0, 0, upSign[i]);\n        cubeCamera.lookAt(0, forwardSign[i], 0);\n      } else {\n        cubeCamera.up.set(0, upSign[i], 0);\n        cubeCamera.lookAt(0, 0, forwardSign[i]);\n      }\n      const size = this._cubeSize;\n      _setViewport(cubeUVRenderTarget, col * size, i > 2 ? size : 0, size, size);\n      renderer.setRenderTarget(cubeUVRenderTarget);\n      if (useSolidColor) {\n        renderer.render(backgroundBox, cubeCamera);\n      }\n      renderer.render(scene, cubeCamera);\n    }\n    backgroundBox.geometry.dispose();\n    backgroundBox.material.dispose();\n    renderer.toneMapping = toneMapping;\n    renderer.autoClear = originalAutoClear;\n    scene.background = background;\n  }\n  _textureToCubeUV(texture, cubeUVRenderTarget) {\n    const renderer = this._renderer;\n    const isCubeTexture = texture.mapping === CubeReflectionMapping || texture.mapping === CubeRefractionMapping;\n    if (isCubeTexture) {\n      if (this._cubemapMaterial === null) {\n        this._cubemapMaterial = _getCubemapMaterial();\n      }\n      this._cubemapMaterial.uniforms.flipEnvMap.value = texture.isRenderTargetTexture === false ? -1 : 1;\n    } else {\n      if (this._equirectMaterial === null) {\n        this._equirectMaterial = _getEquirectMaterial();\n      }\n    }\n    const material = isCubeTexture ? this._cubemapMaterial : this._equirectMaterial;\n    const mesh = new Mesh(this._lodPlanes[0], material);\n    const uniforms = material.uniforms;\n    uniforms[\"envMap\"].value = texture;\n    const size = this._cubeSize;\n    _setViewport(cubeUVRenderTarget, 0, 0, 3 * size, 2 * size);\n    renderer.setRenderTarget(cubeUVRenderTarget);\n    renderer.render(mesh, _flatCamera);\n  }\n  _applyPMREM(cubeUVRenderTarget) {\n    const renderer = this._renderer;\n    const autoClear = renderer.autoClear;\n    renderer.autoClear = false;\n    for (let i = 1; i < this._lodPlanes.length; i++) {\n      const sigma = Math.sqrt(this._sigmas[i] * this._sigmas[i] - this._sigmas[i - 1] * this._sigmas[i - 1]);\n      const poleAxis = _axisDirections[(i - 1) % _axisDirections.length];\n      this._blur(cubeUVRenderTarget, i - 1, i, sigma, poleAxis);\n    }\n    renderer.autoClear = autoClear;\n  }\n  _blur(cubeUVRenderTarget, lodIn, lodOut, sigma, poleAxis) {\n    const pingPongRenderTarget = this._pingPongRenderTarget;\n    this._halfBlur(cubeUVRenderTarget, pingPongRenderTarget, lodIn, lodOut, sigma, \"latitudinal\", poleAxis);\n    this._halfBlur(pingPongRenderTarget, cubeUVRenderTarget, lodOut, lodOut, sigma, \"longitudinal\", poleAxis);\n  }\n  _halfBlur(targetIn, targetOut, lodIn, lodOut, sigmaRadians, direction, poleAxis) {\n    const renderer = this._renderer;\n    const blurMaterial = this._blurMaterial;\n    if (direction !== \"latitudinal\" && direction !== \"longitudinal\") {\n      console.error(\"blur direction must be either latitudinal or longitudinal!\");\n    }\n    const STANDARD_DEVIATIONS = 3;\n    const blurMesh = new Mesh(this._lodPlanes[lodOut], blurMaterial);\n    const blurUniforms = blurMaterial.uniforms;\n    const pixels = this._sizeLods[lodIn] - 1;\n    const radiansPerPixel = isFinite(sigmaRadians) ? Math.PI / (2 * pixels) : 2 * Math.PI / (2 * MAX_SAMPLES - 1);\n    const sigmaPixels = sigmaRadians / radiansPerPixel;\n    const samples = isFinite(sigmaRadians) ? 1 + Math.floor(STANDARD_DEVIATIONS * sigmaPixels) : MAX_SAMPLES;\n    if (samples > MAX_SAMPLES) {\n      console.warn(`sigmaRadians, ${sigmaRadians}, is too large and will clip, as it requested ${samples} samples when the maximum is set to ${MAX_SAMPLES}`);\n    }\n    const weights = [];\n    let sum = 0;\n    for (let i = 0; i < MAX_SAMPLES; ++i) {\n      const x2 = i / sigmaPixels;\n      const weight = Math.exp(-x2 * x2 / 2);\n      weights.push(weight);\n      if (i === 0) {\n        sum += weight;\n      } else if (i < samples) {\n        sum += 2 * weight;\n      }\n    }\n    for (let i = 0; i < weights.length; i++) {\n      weights[i] = weights[i] / sum;\n    }\n    blurUniforms[\"envMap\"].value = targetIn.texture;\n    blurUniforms[\"samples\"].value = samples;\n    blurUniforms[\"weights\"].value = weights;\n    blurUniforms[\"latitudinal\"].value = direction === \"latitudinal\";\n    if (poleAxis) {\n      blurUniforms[\"poleAxis\"].value = poleAxis;\n    }\n    const { _lodMax } = this;\n    blurUniforms[\"dTheta\"].value = radiansPerPixel;\n    blurUniforms[\"mipInt\"].value = _lodMax - lodIn;\n    const outputSize = this._sizeLods[lodOut];\n    const x = 3 * outputSize * (lodOut > _lodMax - LOD_MIN ? lodOut - _lodMax + LOD_MIN : 0);\n    const y = 4 * (this._cubeSize - outputSize);\n    _setViewport(targetOut, x, y, 3 * outputSize, 2 * outputSize);\n    renderer.setRenderTarget(targetOut);\n    renderer.render(blurMesh, _flatCamera);\n  }\n}\nfunction _createPlanes(lodMax) {\n  const lodPlanes = [];\n  const sizeLods = [];\n  const sigmas = [];\n  let lod = lodMax;\n  const totalLods = lodMax - LOD_MIN + 1 + EXTRA_LOD_SIGMA.length;\n  for (let i = 0; i < totalLods; i++) {\n    const sizeLod = Math.pow(2, lod);\n    sizeLods.push(sizeLod);\n    let sigma = 1 / sizeLod;\n    if (i > lodMax - LOD_MIN) {\n      sigma = EXTRA_LOD_SIGMA[i - lodMax + LOD_MIN - 1];\n    } else if (i === 0) {\n      sigma = 0;\n    }\n    sigmas.push(sigma);\n    const texelSize = 1 / (sizeLod - 2);\n    const min = -texelSize;\n    const max2 = 1 + texelSize;\n    const uv1 = [min, min, max2, min, max2, max2, min, min, max2, max2, min, max2];\n    const cubeFaces = 6;\n    const vertices = 6;\n    const positionSize = 3;\n    const uvSize = 2;\n    const faceIndexSize = 1;\n    const position = new Float32Array(positionSize * vertices * cubeFaces);\n    const uv = new Float32Array(uvSize * vertices * cubeFaces);\n    const faceIndex = new Float32Array(faceIndexSize * vertices * cubeFaces);\n    for (let face = 0; face < cubeFaces; face++) {\n      const x = face % 3 * 2 / 3 - 1;\n      const y = face > 2 ? 0 : -1;\n      const coordinates = [\n        x,\n        y,\n        0,\n        x + 2 / 3,\n        y,\n        0,\n        x + 2 / 3,\n        y + 1,\n        0,\n        x,\n        y,\n        0,\n        x + 2 / 3,\n        y + 1,\n        0,\n        x,\n        y + 1,\n        0\n      ];\n      position.set(coordinates, positionSize * vertices * face);\n      uv.set(uv1, uvSize * vertices * face);\n      const fill = [face, face, face, face, face, face];\n      faceIndex.set(fill, faceIndexSize * vertices * face);\n    }\n    const planes = new BufferGeometry();\n    planes.setAttribute(\"position\", new BufferAttribute(position, positionSize));\n    planes.setAttribute(\"uv\", new BufferAttribute(uv, uvSize));\n    planes.setAttribute(\"faceIndex\", new BufferAttribute(faceIndex, faceIndexSize));\n    lodPlanes.push(planes);\n    if (lod > LOD_MIN) {\n      lod--;\n    }\n  }\n  return { lodPlanes, sizeLods, sigmas };\n}\nfunction _createRenderTarget(width, height, params) {\n  const cubeUVRenderTarget = new WebGLRenderTarget(width, height, params);\n  cubeUVRenderTarget.texture.mapping = CubeUVReflectionMapping;\n  cubeUVRenderTarget.texture.name = \"PMREM.cubeUv\";\n  cubeUVRenderTarget.scissorTest = true;\n  return cubeUVRenderTarget;\n}\nfunction _setViewport(target, x, y, width, height) {\n  target.viewport.set(x, y, width, height);\n  target.scissor.set(x, y, width, height);\n}\nfunction _getBlurShader(lodMax, width, height) {\n  const weights = new Float32Array(MAX_SAMPLES);\n  const poleAxis = new Vector3(0, 1, 0);\n  const shaderMaterial = new ShaderMaterial({\n    name: \"SphericalGaussianBlur\",\n    defines: {\n      \"n\": MAX_SAMPLES,\n      \"CUBEUV_TEXEL_WIDTH\": 1 / width,\n      \"CUBEUV_TEXEL_HEIGHT\": 1 / height,\n      \"CUBEUV_MAX_MIP\": `${lodMax}.0`\n    },\n    uniforms: {\n      \"envMap\": { value: null },\n      \"samples\": { value: 1 },\n      \"weights\": { value: weights },\n      \"latitudinal\": { value: false },\n      \"dTheta\": { value: 0 },\n      \"mipInt\": { value: 0 },\n      \"poleAxis\": { value: poleAxis }\n    },\n    vertexShader: _getCommonVertexShader(),\n    fragmentShader: `\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform sampler2D envMap;\n\t\t\tuniform int samples;\n\t\t\tuniform float weights[ n ];\n\t\t\tuniform bool latitudinal;\n\t\t\tuniform float dTheta;\n\t\t\tuniform float mipInt;\n\t\t\tuniform vec3 poleAxis;\n\n\t\t\t#define ENVMAP_TYPE_CUBE_UV\n\t\t\t#include <cube_uv_reflection_fragment>\n\n\t\t\tvec3 getSample( float theta, vec3 axis ) {\n\n\t\t\t\tfloat cosTheta = cos( theta );\n\t\t\t\t// Rodrigues' axis-angle rotation\n\t\t\t\tvec3 sampleDirection = vOutputDirection * cosTheta\n\t\t\t\t\t+ cross( axis, vOutputDirection ) * sin( theta )\n\t\t\t\t\t+ axis * dot( axis, vOutputDirection ) * ( 1.0 - cosTheta );\n\n\t\t\t\treturn bilinearCubeUV( envMap, sampleDirection, mipInt );\n\n\t\t\t}\n\n\t\t\tvoid main() {\n\n\t\t\t\tvec3 axis = latitudinal ? poleAxis : cross( poleAxis, vOutputDirection );\n\n\t\t\t\tif ( all( equal( axis, vec3( 0.0 ) ) ) ) {\n\n\t\t\t\t\taxis = vec3( vOutputDirection.z, 0.0, - vOutputDirection.x );\n\n\t\t\t\t}\n\n\t\t\t\taxis = normalize( axis );\n\n\t\t\t\tgl_FragColor = vec4( 0.0, 0.0, 0.0, 1.0 );\n\t\t\t\tgl_FragColor.rgb += weights[ 0 ] * getSample( 0.0, axis );\n\n\t\t\t\tfor ( int i = 1; i < n; i++ ) {\n\n\t\t\t\t\tif ( i >= samples ) {\n\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t}\n\n\t\t\t\t\tfloat theta = dTheta * float( i );\n\t\t\t\t\tgl_FragColor.rgb += weights[ i ] * getSample( -1.0 * theta, axis );\n\t\t\t\t\tgl_FragColor.rgb += weights[ i ] * getSample( theta, axis );\n\n\t\t\t\t}\n\n\t\t\t}\n\t\t`,\n    blending: NoBlending,\n    depthTest: false,\n    depthWrite: false\n  });\n  return shaderMaterial;\n}\nfunction _getEquirectMaterial() {\n  return new ShaderMaterial({\n    name: \"EquirectangularToCubeUV\",\n    uniforms: {\n      \"envMap\": { value: null }\n    },\n    vertexShader: _getCommonVertexShader(),\n    fragmentShader: `\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform sampler2D envMap;\n\n\t\t\t#include <common>\n\n\t\t\tvoid main() {\n\n\t\t\t\tvec3 outputDirection = normalize( vOutputDirection );\n\t\t\t\tvec2 uv = equirectUv( outputDirection );\n\n\t\t\t\tgl_FragColor = vec4( texture2D ( envMap, uv ).rgb, 1.0 );\n\n\t\t\t}\n\t\t`,\n    blending: NoBlending,\n    depthTest: false,\n    depthWrite: false\n  });\n}\nfunction _getCubemapMaterial() {\n  return new ShaderMaterial({\n    name: \"CubemapToCubeUV\",\n    uniforms: {\n      \"envMap\": { value: null },\n      \"flipEnvMap\": { value: -1 }\n    },\n    vertexShader: _getCommonVertexShader(),\n    fragmentShader: `\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tuniform float flipEnvMap;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform samplerCube envMap;\n\n\t\t\tvoid main() {\n\n\t\t\t\tgl_FragColor = textureCube( envMap, vec3( flipEnvMap * vOutputDirection.x, vOutputDirection.yz ) );\n\n\t\t\t}\n\t\t`,\n    blending: NoBlending,\n    depthTest: false,\n    depthWrite: false\n  });\n}\nfunction _getCommonVertexShader() {\n  return `\n\n\t\tprecision mediump float;\n\t\tprecision mediump int;\n\n\t\tattribute float faceIndex;\n\n\t\tvarying vec3 vOutputDirection;\n\n\t\t// RH coordinate system; PMREM face-indexing convention\n\t\tvec3 getDirection( vec2 uv, float face ) {\n\n\t\t\tuv = 2.0 * uv - 1.0;\n\n\t\t\tvec3 direction = vec3( uv, 1.0 );\n\n\t\t\tif ( face == 0.0 ) {\n\n\t\t\t\tdirection = direction.zyx; // ( 1, v, u ) pos x\n\n\t\t\t} else if ( face == 1.0 ) {\n\n\t\t\t\tdirection = direction.xzy;\n\t\t\t\tdirection.xz *= -1.0; // ( -u, 1, -v ) pos y\n\n\t\t\t} else if ( face == 2.0 ) {\n\n\t\t\t\tdirection.x *= -1.0; // ( -u, v, 1 ) pos z\n\n\t\t\t} else if ( face == 3.0 ) {\n\n\t\t\t\tdirection = direction.zyx;\n\t\t\t\tdirection.xz *= -1.0; // ( -1, v, -u ) neg x\n\n\t\t\t} else if ( face == 4.0 ) {\n\n\t\t\t\tdirection = direction.xzy;\n\t\t\t\tdirection.xy *= -1.0; // ( -u, -1, v ) neg y\n\n\t\t\t} else if ( face == 5.0 ) {\n\n\t\t\t\tdirection.z *= -1.0; // ( u, v, -1 ) neg z\n\n\t\t\t}\n\n\t\t\treturn direction;\n\n\t\t}\n\n\t\tvoid main() {\n\n\t\t\tvOutputDirection = getDirection( uv, faceIndex );\n\t\t\tgl_Position = vec4( position, 1.0 );\n\n\t\t}\n\t`;\n}\nfunction WebGLCubeUVMaps(renderer) {\n  let cubeUVmaps = /* @__PURE__ */ new WeakMap();\n  let pmremGenerator = null;\n  function get(texture) {\n    if (texture && texture.isTexture) {\n      const mapping = texture.mapping;\n      const isEquirectMap = mapping === EquirectangularReflectionMapping || mapping === EquirectangularRefractionMapping;\n      const isCubeMap = mapping === CubeReflectionMapping || mapping === CubeRefractionMapping;\n      if (isEquirectMap || isCubeMap) {\n        if (texture.isRenderTargetTexture && texture.needsPMREMUpdate === true) {\n          texture.needsPMREMUpdate = false;\n          let renderTarget = cubeUVmaps.get(texture);\n          if (pmremGenerator === null)\n            pmremGenerator = new PMREMGenerator(renderer);\n          renderTarget = isEquirectMap ? pmremGenerator.fromEquirectangular(texture, renderTarget) : pmremGenerator.fromCubemap(texture, renderTarget);\n          cubeUVmaps.set(texture, renderTarget);\n          return renderTarget.texture;\n        } else {\n          if (cubeUVmaps.has(texture)) {\n            return cubeUVmaps.get(texture).texture;\n          } else {\n            const image = texture.image;\n            if (isEquirectMap && image && image.height > 0 || isCubeMap && image && isCubeTextureComplete(image)) {\n              if (pmremGenerator === null)\n                pmremGenerator = new PMREMGenerator(renderer);\n              const renderTarget = isEquirectMap ? pmremGenerator.fromEquirectangular(texture) : pmremGenerator.fromCubemap(texture);\n              cubeUVmaps.set(texture, renderTarget);\n              texture.addEventListener(\"dispose\", onTextureDispose);\n              return renderTarget.texture;\n            } else {\n              return null;\n            }\n          }\n        }\n      }\n    }\n    return texture;\n  }\n  function isCubeTextureComplete(image) {\n    let count = 0;\n    const length = 6;\n    for (let i = 0; i < length; i++) {\n      if (image[i] !== void 0)\n        count++;\n    }\n    return count === length;\n  }\n  function onTextureDispose(event) {\n    const texture = event.target;\n    texture.removeEventListener(\"dispose\", onTextureDispose);\n    const cubemapUV = cubeUVmaps.get(texture);\n    if (cubemapUV !== void 0) {\n      cubeUVmaps.delete(texture);\n      cubemapUV.dispose();\n    }\n  }\n  function dispose() {\n    cubeUVmaps = /* @__PURE__ */ new WeakMap();\n    if (pmremGenerator !== null) {\n      pmremGenerator.dispose();\n      pmremGenerator = null;\n    }\n  }\n  return {\n    get,\n    dispose\n  };\n}\nfunction WebGLExtensions(gl) {\n  const extensions = {};\n  function getExtension2(name) {\n    if (extensions[name] !== void 0) {\n      return extensions[name];\n    }\n    let extension;\n    switch (name) {\n      case \"WEBGL_depth_texture\":\n        extension = gl.getExtension(\"WEBGL_depth_texture\") || gl.getExtension(\"MOZ_WEBGL_depth_texture\") || gl.getExtension(\"WEBKIT_WEBGL_depth_texture\");\n        break;\n      case \"EXT_texture_filter_anisotropic\":\n        extension = gl.getExtension(\"EXT_texture_filter_anisotropic\") || gl.getExtension(\"MOZ_EXT_texture_filter_anisotropic\") || gl.getExtension(\"WEBKIT_EXT_texture_filter_anisotropic\");\n        break;\n      case \"WEBGL_compressed_texture_s3tc\":\n        extension = gl.getExtension(\"WEBGL_compressed_texture_s3tc\") || gl.getExtension(\"MOZ_WEBGL_compressed_texture_s3tc\") || gl.getExtension(\"WEBKIT_WEBGL_compressed_texture_s3tc\");\n        break;\n      case \"WEBGL_compressed_texture_pvrtc\":\n        extension = gl.getExtension(\"WEBGL_compressed_texture_pvrtc\") || gl.getExtension(\"WEBKIT_WEBGL_compressed_texture_pvrtc\");\n        break;\n      default:\n        extension = gl.getExtension(name);\n    }\n    extensions[name] = extension;\n    return extension;\n  }\n  return {\n    has: function(name) {\n      return getExtension2(name) !== null;\n    },\n    init: function(capabilities) {\n      if (capabilities.isWebGL2) {\n        getExtension2(\"EXT_color_buffer_float\");\n      } else {\n        getExtension2(\"WEBGL_depth_texture\");\n        getExtension2(\"OES_texture_float\");\n        getExtension2(\"OES_texture_half_float\");\n        getExtension2(\"OES_texture_half_float_linear\");\n        getExtension2(\"OES_standard_derivatives\");\n        getExtension2(\"OES_element_index_uint\");\n        getExtension2(\"OES_vertex_array_object\");\n        getExtension2(\"ANGLE_instanced_arrays\");\n      }\n      getExtension2(\"OES_texture_float_linear\");\n      getExtension2(\"EXT_color_buffer_half_float\");\n      getExtension2(\"WEBGL_multisampled_render_to_texture\");\n    },\n    get: function(name) {\n      const extension = getExtension2(name);\n      if (extension === null) {\n        console.warn(\"THREE.WebGLRenderer: \" + name + \" extension not supported.\");\n      }\n      return extension;\n    }\n  };\n}\nfunction WebGLGeometries(gl, attributes, info, bindingStates) {\n  const geometries = {};\n  const wireframeAttributes = /* @__PURE__ */ new WeakMap();\n  function onGeometryDispose(event) {\n    const geometry = event.target;\n    if (geometry.index !== null) {\n      attributes.remove(geometry.index);\n    }\n    for (const name in geometry.attributes) {\n      attributes.remove(geometry.attributes[name]);\n    }\n    geometry.removeEventListener(\"dispose\", onGeometryDispose);\n    delete geometries[geometry.id];\n    const attribute = wireframeAttributes.get(geometry);\n    if (attribute) {\n      attributes.remove(attribute);\n      wireframeAttributes.delete(geometry);\n    }\n    bindingStates.releaseStatesOfGeometry(geometry);\n    if (geometry.isInstancedBufferGeometry === true) {\n      delete geometry._maxInstanceCount;\n    }\n    info.memory.geometries--;\n  }\n  function get(object, geometry) {\n    if (geometries[geometry.id] === true)\n      return geometry;\n    geometry.addEventListener(\"dispose\", onGeometryDispose);\n    geometries[geometry.id] = true;\n    info.memory.geometries++;\n    return geometry;\n  }\n  function update(geometry) {\n    const geometryAttributes = geometry.attributes;\n    for (const name in geometryAttributes) {\n      attributes.update(geometryAttributes[name], 34962);\n    }\n    const morphAttributes = geometry.morphAttributes;\n    for (const name in morphAttributes) {\n      const array = morphAttributes[name];\n      for (let i = 0, l = array.length; i < l; i++) {\n        attributes.update(array[i], 34962);\n      }\n    }\n  }\n  function updateWireframeAttribute(geometry) {\n    const indices = [];\n    const geometryIndex = geometry.index;\n    const geometryPosition = geometry.attributes.position;\n    let version = 0;\n    if (geometryIndex !== null) {\n      const array = geometryIndex.array;\n      version = geometryIndex.version;\n      for (let i = 0, l = array.length; i < l; i += 3) {\n        const a = array[i + 0];\n        const b = array[i + 1];\n        const c = array[i + 2];\n        indices.push(a, b, b, c, c, a);\n      }\n    } else {\n      const array = geometryPosition.array;\n      version = geometryPosition.version;\n      for (let i = 0, l = array.length / 3 - 1; i < l; i += 3) {\n        const a = i + 0;\n        const b = i + 1;\n        const c = i + 2;\n        indices.push(a, b, b, c, c, a);\n      }\n    }\n    const attribute = new (arrayNeedsUint32(indices) ? Uint32BufferAttribute : Uint16BufferAttribute)(indices, 1);\n    attribute.version = version;\n    const previousAttribute = wireframeAttributes.get(geometry);\n    if (previousAttribute)\n      attributes.remove(previousAttribute);\n    wireframeAttributes.set(geometry, attribute);\n  }\n  function getWireframeAttribute(geometry) {\n    const currentAttribute = wireframeAttributes.get(geometry);\n    if (currentAttribute) {\n      const geometryIndex = geometry.index;\n      if (geometryIndex !== null) {\n        if (currentAttribute.version < geometryIndex.version) {\n          updateWireframeAttribute(geometry);\n        }\n      }\n    } else {\n      updateWireframeAttribute(geometry);\n    }\n    return wireframeAttributes.get(geometry);\n  }\n  return {\n    get,\n    update,\n    getWireframeAttribute\n  };\n}\nfunction WebGLIndexedBufferRenderer(gl, extensions, info, capabilities) {\n  const isWebGL2 = capabilities.isWebGL2;\n  let mode;\n  function setMode(value) {\n    mode = value;\n  }\n  let type, bytesPerElement;\n  function setIndex(value) {\n    type = value.type;\n    bytesPerElement = value.bytesPerElement;\n  }\n  function render(start, count) {\n    gl.drawElements(mode, count, type, start * bytesPerElement);\n    info.update(count, mode, 1);\n  }\n  function renderInstances(start, count, primcount) {\n    if (primcount === 0)\n      return;\n    let extension, methodName;\n    if (isWebGL2) {\n      extension = gl;\n      methodName = \"drawElementsInstanced\";\n    } else {\n      extension = extensions.get(\"ANGLE_instanced_arrays\");\n      methodName = \"drawElementsInstancedANGLE\";\n      if (extension === null) {\n        console.error(\"THREE.WebGLIndexedBufferRenderer: using THREE.InstancedBufferGeometry but hardware does not support extension ANGLE_instanced_arrays.\");\n        return;\n      }\n    }\n    extension[methodName](mode, count, type, start * bytesPerElement, primcount);\n    info.update(count, mode, primcount);\n  }\n  this.setMode = setMode;\n  this.setIndex = setIndex;\n  this.render = render;\n  this.renderInstances = renderInstances;\n}\nfunction WebGLInfo(gl) {\n  const memory = {\n    geometries: 0,\n    textures: 0\n  };\n  const render = {\n    frame: 0,\n    calls: 0,\n    triangles: 0,\n    points: 0,\n    lines: 0\n  };\n  function update(count, mode, instanceCount) {\n    render.calls++;\n    switch (mode) {\n      case 4:\n        render.triangles += instanceCount * (count / 3);\n        break;\n      case 1:\n        render.lines += instanceCount * (count / 2);\n        break;\n      case 3:\n        render.lines += instanceCount * (count - 1);\n        break;\n      case 2:\n        render.lines += instanceCount * count;\n        break;\n      case 0:\n        render.points += instanceCount * count;\n        break;\n      default:\n        console.error(\"THREE.WebGLInfo: Unknown draw mode:\", mode);\n        break;\n    }\n  }\n  function reset() {\n    render.frame++;\n    render.calls = 0;\n    render.triangles = 0;\n    render.points = 0;\n    render.lines = 0;\n  }\n  return {\n    memory,\n    render,\n    programs: null,\n    autoReset: true,\n    reset,\n    update\n  };\n}\nfunction numericalSort(a, b) {\n  return a[0] - b[0];\n}\nfunction absNumericalSort(a, b) {\n  return Math.abs(b[1]) - Math.abs(a[1]);\n}\nfunction denormalize(morph, attribute) {\n  let denominator = 1;\n  const array = attribute.isInterleavedBufferAttribute ? attribute.data.array : attribute.array;\n  if (array instanceof Int8Array)\n    denominator = 127;\n  else if (array instanceof Uint8Array)\n    denominator = 255;\n  else if (array instanceof Uint16Array)\n    denominator = 65535;\n  else if (array instanceof Int16Array)\n    denominator = 32767;\n  else if (array instanceof Int32Array)\n    denominator = 2147483647;\n  else\n    console.error(\"THREE.WebGLMorphtargets: Unsupported morph attribute data type: \", array);\n  morph.divideScalar(denominator);\n}\nfunction WebGLMorphtargets(gl, capabilities, textures) {\n  const influencesList = {};\n  const morphInfluences = new Float32Array(8);\n  const morphTextures = /* @__PURE__ */ new WeakMap();\n  const morph = new Vector4();\n  const workInfluences = [];\n  for (let i = 0; i < 8; i++) {\n    workInfluences[i] = [i, 0];\n  }\n  function update(object, geometry, material, program) {\n    const objectInfluences = object.morphTargetInfluences;\n    if (capabilities.isWebGL2 === true) {\n      const morphAttribute = geometry.morphAttributes.position || geometry.morphAttributes.normal || geometry.morphAttributes.color;\n      const morphTargetsCount = morphAttribute !== void 0 ? morphAttribute.length : 0;\n      let entry = morphTextures.get(geometry);\n      if (entry === void 0 || entry.count !== morphTargetsCount) {\n        let disposeTexture = function() {\n          texture.dispose();\n          morphTextures.delete(geometry);\n          geometry.removeEventListener(\"dispose\", disposeTexture);\n        };\n        if (entry !== void 0)\n          entry.texture.dispose();\n        const hasMorphPosition = geometry.morphAttributes.position !== void 0;\n        const hasMorphNormals = geometry.morphAttributes.normal !== void 0;\n        const hasMorphColors = geometry.morphAttributes.color !== void 0;\n        const morphTargets = geometry.morphAttributes.position || [];\n        const morphNormals = geometry.morphAttributes.normal || [];\n        const morphColors = geometry.morphAttributes.color || [];\n        let vertexDataCount = 0;\n        if (hasMorphPosition === true)\n          vertexDataCount = 1;\n        if (hasMorphNormals === true)\n          vertexDataCount = 2;\n        if (hasMorphColors === true)\n          vertexDataCount = 3;\n        let width = geometry.attributes.position.count * vertexDataCount;\n        let height = 1;\n        if (width > capabilities.maxTextureSize) {\n          height = Math.ceil(width / capabilities.maxTextureSize);\n          width = capabilities.maxTextureSize;\n        }\n        const buffer = new Float32Array(width * height * 4 * morphTargetsCount);\n        const texture = new DataArrayTexture(buffer, width, height, morphTargetsCount);\n        texture.type = FloatType;\n        texture.needsUpdate = true;\n        const vertexDataStride = vertexDataCount * 4;\n        for (let i = 0; i < morphTargetsCount; i++) {\n          const morphTarget = morphTargets[i];\n          const morphNormal = morphNormals[i];\n          const morphColor = morphColors[i];\n          const offset = width * height * 4 * i;\n          for (let j = 0; j < morphTarget.count; j++) {\n            const stride = j * vertexDataStride;\n            if (hasMorphPosition === true) {\n              morph.fromBufferAttribute(morphTarget, j);\n              if (morphTarget.normalized === true)\n                denormalize(morph, morphTarget);\n              buffer[offset + stride + 0] = morph.x;\n              buffer[offset + stride + 1] = morph.y;\n              buffer[offset + stride + 2] = morph.z;\n              buffer[offset + stride + 3] = 0;\n            }\n            if (hasMorphNormals === true) {\n              morph.fromBufferAttribute(morphNormal, j);\n              if (morphNormal.normalized === true)\n                denormalize(morph, morphNormal);\n              buffer[offset + stride + 4] = morph.x;\n              buffer[offset + stride + 5] = morph.y;\n              buffer[offset + stride + 6] = morph.z;\n              buffer[offset + stride + 7] = 0;\n            }\n            if (hasMorphColors === true) {\n              morph.fromBufferAttribute(morphColor, j);\n              if (morphColor.normalized === true)\n                denormalize(morph, morphColor);\n              buffer[offset + stride + 8] = morph.x;\n              buffer[offset + stride + 9] = morph.y;\n              buffer[offset + stride + 10] = morph.z;\n              buffer[offset + stride + 11] = morphColor.itemSize === 4 ? morph.w : 1;\n            }\n          }\n        }\n        entry = {\n          count: morphTargetsCount,\n          texture,\n          size: new Vector2(width, height)\n        };\n        morphTextures.set(geometry, entry);\n        geometry.addEventListener(\"dispose\", disposeTexture);\n      }\n      let morphInfluencesSum = 0;\n      for (let i = 0; i < objectInfluences.length; i++) {\n        morphInfluencesSum += objectInfluences[i];\n      }\n      const morphBaseInfluence = geometry.morphTargetsRelative ? 1 : 1 - morphInfluencesSum;\n      program.getUniforms().setValue(gl, \"morphTargetBaseInfluence\", morphBaseInfluence);\n      program.getUniforms().setValue(gl, \"morphTargetInfluences\", objectInfluences);\n      program.getUniforms().setValue(gl, \"morphTargetsTexture\", entry.texture, textures);\n      program.getUniforms().setValue(gl, \"morphTargetsTextureSize\", entry.size);\n    } else {\n      const length = objectInfluences === void 0 ? 0 : objectInfluences.length;\n      let influences = influencesList[geometry.id];\n      if (influences === void 0 || influences.length !== length) {\n        influences = [];\n        for (let i = 0; i < length; i++) {\n          influences[i] = [i, 0];\n        }\n        influencesList[geometry.id] = influences;\n      }\n      for (let i = 0; i < length; i++) {\n        const influence = influences[i];\n        influence[0] = i;\n        influence[1] = objectInfluences[i];\n      }\n      influences.sort(absNumericalSort);\n      for (let i = 0; i < 8; i++) {\n        if (i < length && influences[i][1]) {\n          workInfluences[i][0] = influences[i][0];\n          workInfluences[i][1] = influences[i][1];\n        } else {\n          workInfluences[i][0] = Number.MAX_SAFE_INTEGER;\n          workInfluences[i][1] = 0;\n        }\n      }\n      workInfluences.sort(numericalSort);\n      const morphTargets = geometry.morphAttributes.position;\n      const morphNormals = geometry.morphAttributes.normal;\n      let morphInfluencesSum = 0;\n      for (let i = 0; i < 8; i++) {\n        const influence = workInfluences[i];\n        const index2 = influence[0];\n        const value = influence[1];\n        if (index2 !== Number.MAX_SAFE_INTEGER && value) {\n          if (morphTargets && geometry.getAttribute(\"morphTarget\" + i) !== morphTargets[index2]) {\n            geometry.setAttribute(\"morphTarget\" + i, morphTargets[index2]);\n          }\n          if (morphNormals && geometry.getAttribute(\"morphNormal\" + i) !== morphNormals[index2]) {\n            geometry.setAttribute(\"morphNormal\" + i, morphNormals[index2]);\n          }\n          morphInfluences[i] = value;\n          morphInfluencesSum += value;\n        } else {\n          if (morphTargets && geometry.hasAttribute(\"morphTarget\" + i) === true) {\n            geometry.deleteAttribute(\"morphTarget\" + i);\n          }\n          if (morphNormals && geometry.hasAttribute(\"morphNormal\" + i) === true) {\n            geometry.deleteAttribute(\"morphNormal\" + i);\n          }\n          morphInfluences[i] = 0;\n        }\n      }\n      const morphBaseInfluence = geometry.morphTargetsRelative ? 1 : 1 - morphInfluencesSum;\n      program.getUniforms().setValue(gl, \"morphTargetBaseInfluence\", morphBaseInfluence);\n      program.getUniforms().setValue(gl, \"morphTargetInfluences\", morphInfluences);\n    }\n  }\n  return {\n    update\n  };\n}\nfunction WebGLObjects(gl, geometries, attributes, info) {\n  let updateMap = /* @__PURE__ */ new WeakMap();\n  function update(object) {\n    const frame = info.render.frame;\n    const geometry = object.geometry;\n    const buffergeometry = geometries.get(object, geometry);\n    if (updateMap.get(buffergeometry) !== frame) {\n      geometries.update(buffergeometry);\n      updateMap.set(buffergeometry, frame);\n    }\n    if (object.isInstancedMesh) {\n      if (object.hasEventListener(\"dispose\", onInstancedMeshDispose) === false) {\n        object.addEventListener(\"dispose\", onInstancedMeshDispose);\n      }\n      attributes.update(object.instanceMatrix, 34962);\n      if (object.instanceColor !== null) {\n        attributes.update(object.instanceColor, 34962);\n      }\n    }\n    return buffergeometry;\n  }\n  function dispose() {\n    updateMap = /* @__PURE__ */ new WeakMap();\n  }\n  function onInstancedMeshDispose(event) {\n    const instancedMesh = event.target;\n    instancedMesh.removeEventListener(\"dispose\", onInstancedMeshDispose);\n    attributes.remove(instancedMesh.instanceMatrix);\n    if (instancedMesh.instanceColor !== null)\n      attributes.remove(instancedMesh.instanceColor);\n  }\n  return {\n    update,\n    dispose\n  };\n}\nconst emptyTexture = /* @__PURE__ */ new Texture();\nconst emptyArrayTexture = /* @__PURE__ */ new DataArrayTexture();\nconst empty3dTexture = /* @__PURE__ */ new Data3DTexture();\nconst emptyCubeTexture = /* @__PURE__ */ new CubeTexture();\nconst arrayCacheF32 = [];\nconst arrayCacheI32 = [];\nconst mat4array = new Float32Array(16);\nconst mat3array = new Float32Array(9);\nconst mat2array = new Float32Array(4);\nfunction flatten(array, nBlocks, blockSize) {\n  const firstElem = array[0];\n  if (firstElem <= 0 || firstElem > 0)\n    return array;\n  const n = nBlocks * blockSize;\n  let r = arrayCacheF32[n];\n  if (r === void 0) {\n    r = new Float32Array(n);\n    arrayCacheF32[n] = r;\n  }\n  if (nBlocks !== 0) {\n    firstElem.toArray(r, 0);\n    for (let i = 1, offset = 0; i !== nBlocks; ++i) {\n      offset += blockSize;\n      array[i].toArray(r, offset);\n    }\n  }\n  return r;\n}\nfunction arraysEqual(a, b) {\n  if (a.length !== b.length)\n    return false;\n  for (let i = 0, l = a.length; i < l; i++) {\n    if (a[i] !== b[i])\n      return false;\n  }\n  return true;\n}\nfunction copyArray(a, b) {\n  for (let i = 0, l = b.length; i < l; i++) {\n    a[i] = b[i];\n  }\n}\nfunction allocTexUnits(textures, n) {\n  let r = arrayCacheI32[n];\n  if (r === void 0) {\n    r = new Int32Array(n);\n    arrayCacheI32[n] = r;\n  }\n  for (let i = 0; i !== n; ++i) {\n    r[i] = textures.allocateTextureUnit();\n  }\n  return r;\n}\nfunction setValueV1f(gl, v) {\n  const cache = this.cache;\n  if (cache[0] === v)\n    return;\n  gl.uniform1f(this.addr, v);\n  cache[0] = v;\n}\nfunction setValueV2f(gl, v) {\n  const cache = this.cache;\n  if (v.x !== void 0) {\n    if (cache[0] !== v.x || cache[1] !== v.y) {\n      gl.uniform2f(this.addr, v.x, v.y);\n      cache[0] = v.x;\n      cache[1] = v.y;\n    }\n  } else {\n    if (arraysEqual(cache, v))\n      return;\n    gl.uniform2fv(this.addr, v);\n    copyArray(cache, v);\n  }\n}\nfunction setValueV3f(gl, v) {\n  const cache = this.cache;\n  if (v.x !== void 0) {\n    if (cache[0] !== v.x || cache[1] !== v.y || cache[2] !== v.z) {\n      gl.uniform3f(this.addr, v.x, v.y, v.z);\n      cache[0] = v.x;\n      cache[1] = v.y;\n      cache[2] = v.z;\n    }\n  } else if (v.r !== void 0) {\n    if (cache[0] !== v.r || cache[1] !== v.g || cache[2] !== v.b) {\n      gl.uniform3f(this.addr, v.r, v.g, v.b);\n      cache[0] = v.r;\n      cache[1] = v.g;\n      cache[2] = v.b;\n    }\n  } else {\n    if (arraysEqual(cache, v))\n      return;\n    gl.uniform3fv(this.addr, v);\n    copyArray(cache, v);\n  }\n}\nfunction setValueV4f(gl, v) {\n  const cache = this.cache;\n  if (v.x !== void 0) {\n    if (cache[0] !== v.x || cache[1] !== v.y || cache[2] !== v.z || cache[3] !== v.w) {\n      gl.uniform4f(this.addr, v.x, v.y, v.z, v.w);\n      cache[0] = v.x;\n      cache[1] = v.y;\n      cache[2] = v.z;\n      cache[3] = v.w;\n    }\n  } else {\n    if (arraysEqual(cache, v))\n      return;\n    gl.uniform4fv(this.addr, v);\n    copyArray(cache, v);\n  }\n}\nfunction setValueM2(gl, v) {\n  const cache = this.cache;\n  const elements = v.elements;\n  if (elements === void 0) {\n    if (arraysEqual(cache, v))\n      return;\n    gl.uniformMatrix2fv(this.addr, false, v);\n    copyArray(cache, v);\n  } else {\n    if (arraysEqual(cache, elements))\n      return;\n    mat2array.set(elements);\n    gl.uniformMatrix2fv(this.addr, false, mat2array);\n    copyArray(cache, elements);\n  }\n}\nfunction setValueM3(gl, v) {\n  const cache = this.cache;\n  const elements = v.elements;\n  if (elements === void 0) {\n    if (arraysEqual(cache, v))\n      return;\n    gl.uniformMatrix3fv(this.addr, false, v);\n    copyArray(cache, v);\n  } else {\n    if (arraysEqual(cache, elements))\n      return;\n    mat3array.set(elements);\n    gl.uniformMatrix3fv(this.addr, false, mat3array);\n    copyArray(cache, elements);\n  }\n}\nfunction setValueM4(gl, v) {\n  const cache = this.cache;\n  const elements = v.elements;\n  if (elements === void 0) {\n    if (arraysEqual(cache, v))\n      return;\n    gl.uniformMatrix4fv(this.addr, false, v);\n    copyArray(cache, v);\n  } else {\n    if (arraysEqual(cache, elements))\n      return;\n    mat4array.set(elements);\n    gl.uniformMatrix4fv(this.addr, false, mat4array);\n    copyArray(cache, elements);\n  }\n}\nfunction setValueV1i(gl, v) {\n  const cache = this.cache;\n  if (cache[0] === v)\n    return;\n  gl.uniform1i(this.addr, v);\n  cache[0] = v;\n}\nfunction setValueV2i(gl, v) {\n  const cache = this.cache;\n  if (arraysEqual(cache, v))\n    return;\n  gl.uniform2iv(this.addr, v);\n  copyArray(cache, v);\n}\nfunction setValueV3i(gl, v) {\n  const cache = this.cache;\n  if (arraysEqual(cache, v))\n    return;\n  gl.uniform3iv(this.addr, v);\n  copyArray(cache, v);\n}\nfunction setValueV4i(gl, v) {\n  const cache = this.cache;\n  if (arraysEqual(cache, v))\n    return;\n  gl.uniform4iv(this.addr, v);\n  copyArray(cache, v);\n}\nfunction setValueV1ui(gl, v) {\n  const cache = this.cache;\n  if (cache[0] === v)\n    return;\n  gl.uniform1ui(this.addr, v);\n  cache[0] = v;\n}\nfunction setValueV2ui(gl, v) {\n  const cache = this.cache;\n  if (arraysEqual(cache, v))\n    return;\n  gl.uniform2uiv(this.addr, v);\n  copyArray(cache, v);\n}\nfunction setValueV3ui(gl, v) {\n  const cache = this.cache;\n  if (arraysEqual(cache, v))\n    return;\n  gl.uniform3uiv(this.addr, v);\n  copyArray(cache, v);\n}\nfunction setValueV4ui(gl, v) {\n  const cache = this.cache;\n  if (arraysEqual(cache, v))\n    return;\n  gl.uniform4uiv(this.addr, v);\n  copyArray(cache, v);\n}\nfunction setValueT1(gl, v, textures) {\n  const cache = this.cache;\n  const unit = textures.allocateTextureUnit();\n  if (cache[0] !== unit) {\n    gl.uniform1i(this.addr, unit);\n    cache[0] = unit;\n  }\n  textures.setTexture2D(v || emptyTexture, unit);\n}\nfunction setValueT3D1(gl, v, textures) {\n  const cache = this.cache;\n  const unit = textures.allocateTextureUnit();\n  if (cache[0] !== unit) {\n    gl.uniform1i(this.addr, unit);\n    cache[0] = unit;\n  }\n  textures.setTexture3D(v || empty3dTexture, unit);\n}\nfunction setValueT6(gl, v, textures) {\n  const cache = this.cache;\n  const unit = textures.allocateTextureUnit();\n  if (cache[0] !== unit) {\n    gl.uniform1i(this.addr, unit);\n    cache[0] = unit;\n  }\n  textures.setTextureCube(v || emptyCubeTexture, unit);\n}\nfunction setValueT2DArray1(gl, v, textures) {\n  const cache = this.cache;\n  const unit = textures.allocateTextureUnit();\n  if (cache[0] !== unit) {\n    gl.uniform1i(this.addr, unit);\n    cache[0] = unit;\n  }\n  textures.setTexture2DArray(v || emptyArrayTexture, unit);\n}\nfunction getSingularSetter(type) {\n  switch (type) {\n    case 5126:\n      return setValueV1f;\n    case 35664:\n      return setValueV2f;\n    case 35665:\n      return setValueV3f;\n    case 35666:\n      return setValueV4f;\n    case 35674:\n      return setValueM2;\n    case 35675:\n      return setValueM3;\n    case 35676:\n      return setValueM4;\n    case 5124:\n    case 35670:\n      return setValueV1i;\n    case 35667:\n    case 35671:\n      return setValueV2i;\n    case 35668:\n    case 35672:\n      return setValueV3i;\n    case 35669:\n    case 35673:\n      return setValueV4i;\n    case 5125:\n      return setValueV1ui;\n    case 36294:\n      return setValueV2ui;\n    case 36295:\n      return setValueV3ui;\n    case 36296:\n      return setValueV4ui;\n    case 35678:\n    case 36198:\n    case 36298:\n    case 36306:\n    case 35682:\n      return setValueT1;\n    case 35679:\n    case 36299:\n    case 36307:\n      return setValueT3D1;\n    case 35680:\n    case 36300:\n    case 36308:\n    case 36293:\n      return setValueT6;\n    case 36289:\n    case 36303:\n    case 36311:\n    case 36292:\n      return setValueT2DArray1;\n  }\n}\nfunction setValueV1fArray(gl, v) {\n  gl.uniform1fv(this.addr, v);\n}\nfunction setValueV2fArray(gl, v) {\n  const data = flatten(v, this.size, 2);\n  gl.uniform2fv(this.addr, data);\n}\nfunction setValueV3fArray(gl, v) {\n  const data = flatten(v, this.size, 3);\n  gl.uniform3fv(this.addr, data);\n}\nfunction setValueV4fArray(gl, v) {\n  const data = flatten(v, this.size, 4);\n  gl.uniform4fv(this.addr, data);\n}\nfunction setValueM2Array(gl, v) {\n  const data = flatten(v, this.size, 4);\n  gl.uniformMatrix2fv(this.addr, false, data);\n}\nfunction setValueM3Array(gl, v) {\n  const data = flatten(v, this.size, 9);\n  gl.uniformMatrix3fv(this.addr, false, data);\n}\nfunction setValueM4Array(gl, v) {\n  const data = flatten(v, this.size, 16);\n  gl.uniformMatrix4fv(this.addr, false, data);\n}\nfunction setValueV1iArray(gl, v) {\n  gl.uniform1iv(this.addr, v);\n}\nfunction setValueV2iArray(gl, v) {\n  gl.uniform2iv(this.addr, v);\n}\nfunction setValueV3iArray(gl, v) {\n  gl.uniform3iv(this.addr, v);\n}\nfunction setValueV4iArray(gl, v) {\n  gl.uniform4iv(this.addr, v);\n}\nfunction setValueV1uiArray(gl, v) {\n  gl.uniform1uiv(this.addr, v);\n}\nfunction setValueV2uiArray(gl, v) {\n  gl.uniform2uiv(this.addr, v);\n}\nfunction setValueV3uiArray(gl, v) {\n  gl.uniform3uiv(this.addr, v);\n}\nfunction setValueV4uiArray(gl, v) {\n  gl.uniform4uiv(this.addr, v);\n}\nfunction setValueT1Array(gl, v, textures) {\n  const n = v.length;\n  const units = allocTexUnits(textures, n);\n  gl.uniform1iv(this.addr, units);\n  for (let i = 0; i !== n; ++i) {\n    textures.setTexture2D(v[i] || emptyTexture, units[i]);\n  }\n}\nfunction setValueT3DArray(gl, v, textures) {\n  const n = v.length;\n  const units = allocTexUnits(textures, n);\n  gl.uniform1iv(this.addr, units);\n  for (let i = 0; i !== n; ++i) {\n    textures.setTexture3D(v[i] || empty3dTexture, units[i]);\n  }\n}\nfunction setValueT6Array(gl, v, textures) {\n  const n = v.length;\n  const units = allocTexUnits(textures, n);\n  gl.uniform1iv(this.addr, units);\n  for (let i = 0; i !== n; ++i) {\n    textures.setTextureCube(v[i] || emptyCubeTexture, units[i]);\n  }\n}\nfunction setValueT2DArrayArray(gl, v, textures) {\n  const n = v.length;\n  const units = allocTexUnits(textures, n);\n  gl.uniform1iv(this.addr, units);\n  for (let i = 0; i !== n; ++i) {\n    textures.setTexture2DArray(v[i] || emptyArrayTexture, units[i]);\n  }\n}\nfunction getPureArraySetter(type) {\n  switch (type) {\n    case 5126:\n      return setValueV1fArray;\n    case 35664:\n      return setValueV2fArray;\n    case 35665:\n      return setValueV3fArray;\n    case 35666:\n      return setValueV4fArray;\n    case 35674:\n      return setValueM2Array;\n    case 35675:\n      return setValueM3Array;\n    case 35676:\n      return setValueM4Array;\n    case 5124:\n    case 35670:\n      return setValueV1iArray;\n    case 35667:\n    case 35671:\n      return setValueV2iArray;\n    case 35668:\n    case 35672:\n      return setValueV3iArray;\n    case 35669:\n    case 35673:\n      return setValueV4iArray;\n    case 5125:\n      return setValueV1uiArray;\n    case 36294:\n      return setValueV2uiArray;\n    case 36295:\n      return setValueV3uiArray;\n    case 36296:\n      return setValueV4uiArray;\n    case 35678:\n    case 36198:\n    case 36298:\n    case 36306:\n    case 35682:\n      return setValueT1Array;\n    case 35679:\n    case 36299:\n    case 36307:\n      return setValueT3DArray;\n    case 35680:\n    case 36300:\n    case 36308:\n    case 36293:\n      return setValueT6Array;\n    case 36289:\n    case 36303:\n    case 36311:\n    case 36292:\n      return setValueT2DArrayArray;\n  }\n}\nclass SingleUniform {\n  constructor(id2, activeInfo, addr) {\n    this.id = id2;\n    this.addr = addr;\n    this.cache = [];\n    this.setValue = getSingularSetter(activeInfo.type);\n  }\n}\nclass PureArrayUniform {\n  constructor(id2, activeInfo, addr) {\n    this.id = id2;\n    this.addr = addr;\n    this.cache = [];\n    this.size = activeInfo.size;\n    this.setValue = getPureArraySetter(activeInfo.type);\n  }\n}\nclass StructuredUniform {\n  constructor(id2) {\n    this.id = id2;\n    this.seq = [];\n    this.map = {};\n  }\n  setValue(gl, value, textures) {\n    const seq = this.seq;\n    for (let i = 0, n = seq.length; i !== n; ++i) {\n      const u = seq[i];\n      u.setValue(gl, value[u.id], textures);\n    }\n  }\n}\nconst RePathPart = /(\\w+)(\\])?(\\[|\\.)?/g;\nfunction addUniform(container, uniformObject) {\n  container.seq.push(uniformObject);\n  container.map[uniformObject.id] = uniformObject;\n}\nfunction parseUniform(activeInfo, addr, container) {\n  const path = activeInfo.name, pathLength = path.length;\n  RePathPart.lastIndex = 0;\n  while (true) {\n    const match = RePathPart.exec(path), matchEnd = RePathPart.lastIndex;\n    let id2 = match[1];\n    const idIsIndex = match[2] === \"]\", subscript = match[3];\n    if (idIsIndex)\n      id2 = id2 | 0;\n    if (subscript === void 0 || subscript === \"[\" && matchEnd + 2 === pathLength) {\n      addUniform(container, subscript === void 0 ? new SingleUniform(id2, activeInfo, addr) : new PureArrayUniform(id2, activeInfo, addr));\n      break;\n    } else {\n      const map = container.map;\n      let next = map[id2];\n      if (next === void 0) {\n        next = new StructuredUniform(id2);\n        addUniform(container, next);\n      }\n      container = next;\n    }\n  }\n}\nclass WebGLUniforms {\n  constructor(gl, program) {\n    this.seq = [];\n    this.map = {};\n    const n = gl.getProgramParameter(program, 35718);\n    for (let i = 0; i < n; ++i) {\n      const info = gl.getActiveUniform(program, i), addr = gl.getUniformLocation(program, info.name);\n      parseUniform(info, addr, this);\n    }\n  }\n  setValue(gl, name, value, textures) {\n    const u = this.map[name];\n    if (u !== void 0)\n      u.setValue(gl, value, textures);\n  }\n  setOptional(gl, object, name) {\n    const v = object[name];\n    if (v !== void 0)\n      this.setValue(gl, name, v);\n  }\n  static upload(gl, seq, values, textures) {\n    for (let i = 0, n = seq.length; i !== n; ++i) {\n      const u = seq[i], v = values[u.id];\n      if (v.needsUpdate !== false) {\n        u.setValue(gl, v.value, textures);\n      }\n    }\n  }\n  static seqWithValue(seq, values) {\n    const r = [];\n    for (let i = 0, n = seq.length; i !== n; ++i) {\n      const u = seq[i];\n      if (u.id in values)\n        r.push(u);\n    }\n    return r;\n  }\n}\nfunction WebGLShader(gl, type, string) {\n  const shader = gl.createShader(type);\n  gl.shaderSource(shader, string);\n  gl.compileShader(shader);\n  return shader;\n}\nlet programIdCount = 0;\nfunction handleSource(string, errorLine) {\n  const lines = string.split(\"\\n\");\n  const lines2 = [];\n  const from = Math.max(errorLine - 6, 0);\n  const to = Math.min(errorLine + 6, lines.length);\n  for (let i = from; i < to; i++) {\n    const line = i + 1;\n    lines2.push(`${line === errorLine ? \">\" : \" \"} ${line}: ${lines[i]}`);\n  }\n  return lines2.join(\"\\n\");\n}\nfunction getEncodingComponents(encoding) {\n  switch (encoding) {\n    case LinearEncoding:\n      return [\"Linear\", \"( value )\"];\n    case sRGBEncoding:\n      return [\"sRGB\", \"( value )\"];\n    default:\n      console.warn(\"THREE.WebGLProgram: Unsupported encoding:\", encoding);\n      return [\"Linear\", \"( value )\"];\n  }\n}\nfunction getShaderErrors(gl, shader, type) {\n  const status = gl.getShaderParameter(shader, 35713);\n  const errors = gl.getShaderInfoLog(shader).trim();\n  if (status && errors === \"\")\n    return \"\";\n  const errorMatches = /ERROR: 0:(\\d+)/.exec(errors);\n  if (errorMatches) {\n    const errorLine = parseInt(errorMatches[1]);\n    return type.toUpperCase() + \"\\n\\n\" + errors + \"\\n\\n\" + handleSource(gl.getShaderSource(shader), errorLine);\n  } else {\n    return errors;\n  }\n}\nfunction getTexelEncodingFunction(functionName, encoding) {\n  const components = getEncodingComponents(encoding);\n  return \"vec4 \" + functionName + \"( vec4 value ) { return LinearTo\" + components[0] + components[1] + \"; }\";\n}\nfunction getToneMappingFunction(functionName, toneMapping) {\n  let toneMappingName;\n  switch (toneMapping) {\n    case LinearToneMapping:\n      toneMappingName = \"Linear\";\n      break;\n    case ReinhardToneMapping:\n      toneMappingName = \"Reinhard\";\n      break;\n    case CineonToneMapping:\n      toneMappingName = \"OptimizedCineon\";\n      break;\n    case ACESFilmicToneMapping:\n      toneMappingName = \"ACESFilmic\";\n      break;\n    case CustomToneMapping:\n      toneMappingName = \"Custom\";\n      break;\n    default:\n      console.warn(\"THREE.WebGLProgram: Unsupported toneMapping:\", toneMapping);\n      toneMappingName = \"Linear\";\n  }\n  return \"vec3 \" + functionName + \"( vec3 color ) { return \" + toneMappingName + \"ToneMapping( color ); }\";\n}\nfunction generateExtensions(parameters) {\n  const chunks = [\n    parameters.extensionDerivatives || !!parameters.envMapCubeUVHeight || parameters.bumpMap || parameters.tangentSpaceNormalMap || parameters.clearcoatNormalMap || parameters.flatShading || parameters.shaderID === \"physical\" ? \"#extension GL_OES_standard_derivatives : enable\" : \"\",\n    (parameters.extensionFragDepth || parameters.logarithmicDepthBuffer) && parameters.rendererExtensionFragDepth ? \"#extension GL_EXT_frag_depth : enable\" : \"\",\n    parameters.extensionDrawBuffers && parameters.rendererExtensionDrawBuffers ? \"#extension GL_EXT_draw_buffers : require\" : \"\",\n    (parameters.extensionShaderTextureLOD || parameters.envMap || parameters.transmission) && parameters.rendererExtensionShaderTextureLod ? \"#extension GL_EXT_shader_texture_lod : enable\" : \"\"\n  ];\n  return chunks.filter(filterEmptyLine).join(\"\\n\");\n}\nfunction generateDefines(defines) {\n  const chunks = [];\n  for (const name in defines) {\n    const value = defines[name];\n    if (value === false)\n      continue;\n    chunks.push(\"#define \" + name + \" \" + value);\n  }\n  return chunks.join(\"\\n\");\n}\nfunction fetchAttributeLocations(gl, program) {\n  const attributes = {};\n  const n = gl.getProgramParameter(program, 35721);\n  for (let i = 0; i < n; i++) {\n    const info = gl.getActiveAttrib(program, i);\n    const name = info.name;\n    let locationSize = 1;\n    if (info.type === 35674)\n      locationSize = 2;\n    if (info.type === 35675)\n      locationSize = 3;\n    if (info.type === 35676)\n      locationSize = 4;\n    attributes[name] = {\n      type: info.type,\n      location: gl.getAttribLocation(program, name),\n      locationSize\n    };\n  }\n  return attributes;\n}\nfunction filterEmptyLine(string) {\n  return string !== \"\";\n}\nfunction replaceLightNums(string, parameters) {\n  return string.replace(/NUM_DIR_LIGHTS/g, parameters.numDirLights).replace(/NUM_SPOT_LIGHTS/g, parameters.numSpotLights).replace(/NUM_RECT_AREA_LIGHTS/g, parameters.numRectAreaLights).replace(/NUM_POINT_LIGHTS/g, parameters.numPointLights).replace(/NUM_HEMI_LIGHTS/g, parameters.numHemiLights).replace(/NUM_DIR_LIGHT_SHADOWS/g, parameters.numDirLightShadows).replace(/NUM_SPOT_LIGHT_SHADOWS/g, parameters.numSpotLightShadows).replace(/NUM_POINT_LIGHT_SHADOWS/g, parameters.numPointLightShadows);\n}\nfunction replaceClippingPlaneNums(string, parameters) {\n  return string.replace(/NUM_CLIPPING_PLANES/g, parameters.numClippingPlanes).replace(/UNION_CLIPPING_PLANES/g, parameters.numClippingPlanes - parameters.numClipIntersection);\n}\nconst includePattern = /^[ \\t]*#include +<([\\w\\d./]+)>/gm;\nfunction resolveIncludes(string) {\n  return string.replace(includePattern, includeReplacer);\n}\nfunction includeReplacer(match, include) {\n  const string = ShaderChunk[include];\n  if (string === void 0) {\n    throw new Error(\"Can not resolve #include <\" + include + \">\");\n  }\n  return resolveIncludes(string);\n}\nconst deprecatedUnrollLoopPattern = /#pragma unroll_loop[\\s]+?for \\( int i \\= (\\d+)\\; i < (\\d+)\\; i \\+\\+ \\) \\{([\\s\\S]+?)(?=\\})\\}/g;\nconst unrollLoopPattern = /#pragma unroll_loop_start\\s+for\\s*\\(\\s*int\\s+i\\s*=\\s*(\\d+)\\s*;\\s*i\\s*<\\s*(\\d+)\\s*;\\s*i\\s*\\+\\+\\s*\\)\\s*{([\\s\\S]+?)}\\s+#pragma unroll_loop_end/g;\nfunction unrollLoops(string) {\n  return string.replace(unrollLoopPattern, loopReplacer).replace(deprecatedUnrollLoopPattern, deprecatedLoopReplacer);\n}\nfunction deprecatedLoopReplacer(match, start, end, snippet) {\n  console.warn(\"WebGLProgram: #pragma unroll_loop shader syntax is deprecated. Please use #pragma unroll_loop_start syntax instead.\");\n  return loopReplacer(match, start, end, snippet);\n}\nfunction loopReplacer(match, start, end, snippet) {\n  let string = \"\";\n  for (let i = parseInt(start); i < parseInt(end); i++) {\n    string += snippet.replace(/\\[\\s*i\\s*\\]/g, \"[ \" + i + \" ]\").replace(/UNROLLED_LOOP_INDEX/g, i);\n  }\n  return string;\n}\nfunction generatePrecision(parameters) {\n  let precisionstring = \"precision \" + parameters.precision + \" float;\\nprecision \" + parameters.precision + \" int;\";\n  if (parameters.precision === \"highp\") {\n    precisionstring += \"\\n#define HIGH_PRECISION\";\n  } else if (parameters.precision === \"mediump\") {\n    precisionstring += \"\\n#define MEDIUM_PRECISION\";\n  } else if (parameters.precision === \"lowp\") {\n    precisionstring += \"\\n#define LOW_PRECISION\";\n  }\n  return precisionstring;\n}\nfunction generateShadowMapTypeDefine(parameters) {\n  let shadowMapTypeDefine = \"SHADOWMAP_TYPE_BASIC\";\n  if (parameters.shadowMapType === PCFShadowMap) {\n    shadowMapTypeDefine = \"SHADOWMAP_TYPE_PCF\";\n  } else if (parameters.shadowMapType === PCFSoftShadowMap) {\n    shadowMapTypeDefine = \"SHADOWMAP_TYPE_PCF_SOFT\";\n  } else if (parameters.shadowMapType === VSMShadowMap) {\n    shadowMapTypeDefine = \"SHADOWMAP_TYPE_VSM\";\n  }\n  return shadowMapTypeDefine;\n}\nfunction generateEnvMapTypeDefine(parameters) {\n  let envMapTypeDefine = \"ENVMAP_TYPE_CUBE\";\n  if (parameters.envMap) {\n    switch (parameters.envMapMode) {\n      case CubeReflectionMapping:\n      case CubeRefractionMapping:\n        envMapTypeDefine = \"ENVMAP_TYPE_CUBE\";\n        break;\n      case CubeUVReflectionMapping:\n        envMapTypeDefine = \"ENVMAP_TYPE_CUBE_UV\";\n        break;\n    }\n  }\n  return envMapTypeDefine;\n}\nfunction generateEnvMapModeDefine(parameters) {\n  let envMapModeDefine = \"ENVMAP_MODE_REFLECTION\";\n  if (parameters.envMap) {\n    switch (parameters.envMapMode) {\n      case CubeRefractionMapping:\n        envMapModeDefine = \"ENVMAP_MODE_REFRACTION\";\n        break;\n    }\n  }\n  return envMapModeDefine;\n}\nfunction generateEnvMapBlendingDefine(parameters) {\n  let envMapBlendingDefine = \"ENVMAP_BLENDING_NONE\";\n  if (parameters.envMap) {\n    switch (parameters.combine) {\n      case MultiplyOperation:\n        envMapBlendingDefine = \"ENVMAP_BLENDING_MULTIPLY\";\n        break;\n      case MixOperation:\n        envMapBlendingDefine = \"ENVMAP_BLENDING_MIX\";\n        break;\n      case AddOperation:\n        envMapBlendingDefine = \"ENVMAP_BLENDING_ADD\";\n        break;\n    }\n  }\n  return envMapBlendingDefine;\n}\nfunction generateCubeUVSize(parameters) {\n  const imageHeight = parameters.envMapCubeUVHeight;\n  if (imageHeight === null)\n    return null;\n  const maxMip = Math.log2(imageHeight) - 2;\n  const texelHeight = 1 / imageHeight;\n  const texelWidth = 1 / (3 * Math.max(Math.pow(2, maxMip), 7 * 16));\n  return { texelWidth, texelHeight, maxMip };\n}\nfunction WebGLProgram(renderer, cacheKey, parameters, bindingStates) {\n  const gl = renderer.getContext();\n  const defines = parameters.defines;\n  let vertexShader = parameters.vertexShader;\n  let fragmentShader = parameters.fragmentShader;\n  const shadowMapTypeDefine = generateShadowMapTypeDefine(parameters);\n  const envMapTypeDefine = generateEnvMapTypeDefine(parameters);\n  const envMapModeDefine = generateEnvMapModeDefine(parameters);\n  const envMapBlendingDefine = generateEnvMapBlendingDefine(parameters);\n  const envMapCubeUVSize = generateCubeUVSize(parameters);\n  const customExtensions = parameters.isWebGL2 ? \"\" : generateExtensions(parameters);\n  const customDefines = generateDefines(defines);\n  const program = gl.createProgram();\n  let prefixVertex, prefixFragment;\n  let versionString = parameters.glslVersion ? \"#version \" + parameters.glslVersion + \"\\n\" : \"\";\n  if (parameters.isRawShaderMaterial) {\n    prefixVertex = [\n      customDefines\n    ].filter(filterEmptyLine).join(\"\\n\");\n    if (prefixVertex.length > 0) {\n      prefixVertex += \"\\n\";\n    }\n    prefixFragment = [\n      customExtensions,\n      customDefines\n    ].filter(filterEmptyLine).join(\"\\n\");\n    if (prefixFragment.length > 0) {\n      prefixFragment += \"\\n\";\n    }\n  } else {\n    prefixVertex = [\n      generatePrecision(parameters),\n      \"#define SHADER_NAME \" + parameters.shaderName,\n      customDefines,\n      parameters.instancing ? \"#define USE_INSTANCING\" : \"\",\n      parameters.instancingColor ? \"#define USE_INSTANCING_COLOR\" : \"\",\n      parameters.supportsVertexTextures ? \"#define VERTEX_TEXTURES\" : \"\",\n      parameters.useFog && parameters.fog ? \"#define USE_FOG\" : \"\",\n      parameters.useFog && parameters.fogExp2 ? \"#define FOG_EXP2\" : \"\",\n      parameters.map ? \"#define USE_MAP\" : \"\",\n      parameters.envMap ? \"#define USE_ENVMAP\" : \"\",\n      parameters.envMap ? \"#define \" + envMapModeDefine : \"\",\n      parameters.lightMap ? \"#define USE_LIGHTMAP\" : \"\",\n      parameters.aoMap ? \"#define USE_AOMAP\" : \"\",\n      parameters.emissiveMap ? \"#define USE_EMISSIVEMAP\" : \"\",\n      parameters.bumpMap ? \"#define USE_BUMPMAP\" : \"\",\n      parameters.normalMap ? \"#define USE_NORMALMAP\" : \"\",\n      parameters.normalMap && parameters.objectSpaceNormalMap ? \"#define OBJECTSPACE_NORMALMAP\" : \"\",\n      parameters.normalMap && parameters.tangentSpaceNormalMap ? \"#define TANGENTSPACE_NORMALMAP\" : \"\",\n      parameters.clearcoatMap ? \"#define USE_CLEARCOATMAP\" : \"\",\n      parameters.clearcoatRoughnessMap ? \"#define USE_CLEARCOAT_ROUGHNESSMAP\" : \"\",\n      parameters.clearcoatNormalMap ? \"#define USE_CLEARCOAT_NORMALMAP\" : \"\",\n      parameters.iridescenceMap ? \"#define USE_IRIDESCENCEMAP\" : \"\",\n      parameters.iridescenceThicknessMap ? \"#define USE_IRIDESCENCE_THICKNESSMAP\" : \"\",\n      parameters.displacementMap && parameters.supportsVertexTextures ? \"#define USE_DISPLACEMENTMAP\" : \"\",\n      parameters.specularMap ? \"#define USE_SPECULARMAP\" : \"\",\n      parameters.specularIntensityMap ? \"#define USE_SPECULARINTENSITYMAP\" : \"\",\n      parameters.specularColorMap ? \"#define USE_SPECULARCOLORMAP\" : \"\",\n      parameters.roughnessMap ? \"#define USE_ROUGHNESSMAP\" : \"\",\n      parameters.metalnessMap ? \"#define USE_METALNESSMAP\" : \"\",\n      parameters.alphaMap ? \"#define USE_ALPHAMAP\" : \"\",\n      parameters.transmission ? \"#define USE_TRANSMISSION\" : \"\",\n      parameters.transmissionMap ? \"#define USE_TRANSMISSIONMAP\" : \"\",\n      parameters.thicknessMap ? \"#define USE_THICKNESSMAP\" : \"\",\n      parameters.sheenColorMap ? \"#define USE_SHEENCOLORMAP\" : \"\",\n      parameters.sheenRoughnessMap ? \"#define USE_SHEENROUGHNESSMAP\" : \"\",\n      parameters.vertexTangents ? \"#define USE_TANGENT\" : \"\",\n      parameters.vertexColors ? \"#define USE_COLOR\" : \"\",\n      parameters.vertexAlphas ? \"#define USE_COLOR_ALPHA\" : \"\",\n      parameters.vertexUvs ? \"#define USE_UV\" : \"\",\n      parameters.uvsVertexOnly ? \"#define UVS_VERTEX_ONLY\" : \"\",\n      parameters.flatShading ? \"#define FLAT_SHADED\" : \"\",\n      parameters.skinning ? \"#define USE_SKINNING\" : \"\",\n      parameters.morphTargets ? \"#define USE_MORPHTARGETS\" : \"\",\n      parameters.morphNormals && parameters.flatShading === false ? \"#define USE_MORPHNORMALS\" : \"\",\n      parameters.morphColors && parameters.isWebGL2 ? \"#define USE_MORPHCOLORS\" : \"\",\n      parameters.morphTargetsCount > 0 && parameters.isWebGL2 ? \"#define MORPHTARGETS_TEXTURE\" : \"\",\n      parameters.morphTargetsCount > 0 && parameters.isWebGL2 ? \"#define MORPHTARGETS_TEXTURE_STRIDE \" + parameters.morphTextureStride : \"\",\n      parameters.morphTargetsCount > 0 && parameters.isWebGL2 ? \"#define MORPHTARGETS_COUNT \" + parameters.morphTargetsCount : \"\",\n      parameters.doubleSided ? \"#define DOUBLE_SIDED\" : \"\",\n      parameters.flipSided ? \"#define FLIP_SIDED\" : \"\",\n      parameters.shadowMapEnabled ? \"#define USE_SHADOWMAP\" : \"\",\n      parameters.shadowMapEnabled ? \"#define \" + shadowMapTypeDefine : \"\",\n      parameters.sizeAttenuation ? \"#define USE_SIZEATTENUATION\" : \"\",\n      parameters.logarithmicDepthBuffer ? \"#define USE_LOGDEPTHBUF\" : \"\",\n      parameters.logarithmicDepthBuffer && parameters.rendererExtensionFragDepth ? \"#define USE_LOGDEPTHBUF_EXT\" : \"\",\n      \"uniform mat4 modelMatrix;\",\n      \"uniform mat4 modelViewMatrix;\",\n      \"uniform mat4 projectionMatrix;\",\n      \"uniform mat4 viewMatrix;\",\n      \"uniform mat3 normalMatrix;\",\n      \"uniform vec3 cameraPosition;\",\n      \"uniform bool isOrthographic;\",\n      \"#ifdef USE_INSTANCING\",\n      \"\tattribute mat4 instanceMatrix;\",\n      \"#endif\",\n      \"#ifdef USE_INSTANCING_COLOR\",\n      \"\tattribute vec3 instanceColor;\",\n      \"#endif\",\n      \"attribute vec3 position;\",\n      \"attribute vec3 normal;\",\n      \"attribute vec2 uv;\",\n      \"#ifdef USE_TANGENT\",\n      \"\tattribute vec4 tangent;\",\n      \"#endif\",\n      \"#if defined( USE_COLOR_ALPHA )\",\n      \"\tattribute vec4 color;\",\n      \"#elif defined( USE_COLOR )\",\n      \"\tattribute vec3 color;\",\n      \"#endif\",\n      \"#if ( defined( USE_MORPHTARGETS ) && ! defined( MORPHTARGETS_TEXTURE ) )\",\n      \"\tattribute vec3 morphTarget0;\",\n      \"\tattribute vec3 morphTarget1;\",\n      \"\tattribute vec3 morphTarget2;\",\n      \"\tattribute vec3 morphTarget3;\",\n      \"\t#ifdef USE_MORPHNORMALS\",\n      \"\t\tattribute vec3 morphNormal0;\",\n      \"\t\tattribute vec3 morphNormal1;\",\n      \"\t\tattribute vec3 morphNormal2;\",\n      \"\t\tattribute vec3 morphNormal3;\",\n      \"\t#else\",\n      \"\t\tattribute vec3 morphTarget4;\",\n      \"\t\tattribute vec3 morphTarget5;\",\n      \"\t\tattribute vec3 morphTarget6;\",\n      \"\t\tattribute vec3 morphTarget7;\",\n      \"\t#endif\",\n      \"#endif\",\n      \"#ifdef USE_SKINNING\",\n      \"\tattribute vec4 skinIndex;\",\n      \"\tattribute vec4 skinWeight;\",\n      \"#endif\",\n      \"\\n\"\n    ].filter(filterEmptyLine).join(\"\\n\");\n    prefixFragment = [\n      customExtensions,\n      generatePrecision(parameters),\n      \"#define SHADER_NAME \" + parameters.shaderName,\n      customDefines,\n      parameters.useFog && parameters.fog ? \"#define USE_FOG\" : \"\",\n      parameters.useFog && parameters.fogExp2 ? \"#define FOG_EXP2\" : \"\",\n      parameters.map ? \"#define USE_MAP\" : \"\",\n      parameters.matcap ? \"#define USE_MATCAP\" : \"\",\n      parameters.envMap ? \"#define USE_ENVMAP\" : \"\",\n      parameters.envMap ? \"#define \" + envMapTypeDefine : \"\",\n      parameters.envMap ? \"#define \" + envMapModeDefine : \"\",\n      parameters.envMap ? \"#define \" + envMapBlendingDefine : \"\",\n      envMapCubeUVSize ? \"#define CUBEUV_TEXEL_WIDTH \" + envMapCubeUVSize.texelWidth : \"\",\n      envMapCubeUVSize ? \"#define CUBEUV_TEXEL_HEIGHT \" + envMapCubeUVSize.texelHeight : \"\",\n      envMapCubeUVSize ? \"#define CUBEUV_MAX_MIP \" + envMapCubeUVSize.maxMip + \".0\" : \"\",\n      parameters.lightMap ? \"#define USE_LIGHTMAP\" : \"\",\n      parameters.aoMap ? \"#define USE_AOMAP\" : \"\",\n      parameters.emissiveMap ? \"#define USE_EMISSIVEMAP\" : \"\",\n      parameters.bumpMap ? \"#define USE_BUMPMAP\" : \"\",\n      parameters.normalMap ? \"#define USE_NORMALMAP\" : \"\",\n      parameters.normalMap && parameters.objectSpaceNormalMap ? \"#define OBJECTSPACE_NORMALMAP\" : \"\",\n      parameters.normalMap && parameters.tangentSpaceNormalMap ? \"#define TANGENTSPACE_NORMALMAP\" : \"\",\n      parameters.clearcoat ? \"#define USE_CLEARCOAT\" : \"\",\n      parameters.clearcoatMap ? \"#define USE_CLEARCOATMAP\" : \"\",\n      parameters.clearcoatRoughnessMap ? \"#define USE_CLEARCOAT_ROUGHNESSMAP\" : \"\",\n      parameters.clearcoatNormalMap ? \"#define USE_CLEARCOAT_NORMALMAP\" : \"\",\n      parameters.iridescence ? \"#define USE_IRIDESCENCE\" : \"\",\n      parameters.iridescenceMap ? \"#define USE_IRIDESCENCEMAP\" : \"\",\n      parameters.iridescenceThicknessMap ? \"#define USE_IRIDESCENCE_THICKNESSMAP\" : \"\",\n      parameters.specularMap ? \"#define USE_SPECULARMAP\" : \"\",\n      parameters.specularIntensityMap ? \"#define USE_SPECULARINTENSITYMAP\" : \"\",\n      parameters.specularColorMap ? \"#define USE_SPECULARCOLORMAP\" : \"\",\n      parameters.roughnessMap ? \"#define USE_ROUGHNESSMAP\" : \"\",\n      parameters.metalnessMap ? \"#define USE_METALNESSMAP\" : \"\",\n      parameters.alphaMap ? \"#define USE_ALPHAMAP\" : \"\",\n      parameters.alphaTest ? \"#define USE_ALPHATEST\" : \"\",\n      parameters.sheen ? \"#define USE_SHEEN\" : \"\",\n      parameters.sheenColorMap ? \"#define USE_SHEENCOLORMAP\" : \"\",\n      parameters.sheenRoughnessMap ? \"#define USE_SHEENROUGHNESSMAP\" : \"\",\n      parameters.transmission ? \"#define USE_TRANSMISSION\" : \"\",\n      parameters.transmissionMap ? \"#define USE_TRANSMISSIONMAP\" : \"\",\n      parameters.thicknessMap ? \"#define USE_THICKNESSMAP\" : \"\",\n      parameters.decodeVideoTexture ? \"#define DECODE_VIDEO_TEXTURE\" : \"\",\n      parameters.vertexTangents ? \"#define USE_TANGENT\" : \"\",\n      parameters.vertexColors || parameters.instancingColor ? \"#define USE_COLOR\" : \"\",\n      parameters.vertexAlphas ? \"#define USE_COLOR_ALPHA\" : \"\",\n      parameters.vertexUvs ? \"#define USE_UV\" : \"\",\n      parameters.uvsVertexOnly ? \"#define UVS_VERTEX_ONLY\" : \"\",\n      parameters.gradientMap ? \"#define USE_GRADIENTMAP\" : \"\",\n      parameters.flatShading ? \"#define FLAT_SHADED\" : \"\",\n      parameters.doubleSided ? \"#define DOUBLE_SIDED\" : \"\",\n      parameters.flipSided ? \"#define FLIP_SIDED\" : \"\",\n      parameters.shadowMapEnabled ? \"#define USE_SHADOWMAP\" : \"\",\n      parameters.shadowMapEnabled ? \"#define \" + shadowMapTypeDefine : \"\",\n      parameters.premultipliedAlpha ? \"#define PREMULTIPLIED_ALPHA\" : \"\",\n      parameters.physicallyCorrectLights ? \"#define PHYSICALLY_CORRECT_LIGHTS\" : \"\",\n      parameters.logarithmicDepthBuffer ? \"#define USE_LOGDEPTHBUF\" : \"\",\n      parameters.logarithmicDepthBuffer && parameters.rendererExtensionFragDepth ? \"#define USE_LOGDEPTHBUF_EXT\" : \"\",\n      \"uniform mat4 viewMatrix;\",\n      \"uniform vec3 cameraPosition;\",\n      \"uniform bool isOrthographic;\",\n      parameters.toneMapping !== NoToneMapping ? \"#define TONE_MAPPING\" : \"\",\n      parameters.toneMapping !== NoToneMapping ? ShaderChunk[\"tonemapping_pars_fragment\"] : \"\",\n      parameters.toneMapping !== NoToneMapping ? getToneMappingFunction(\"toneMapping\", parameters.toneMapping) : \"\",\n      parameters.dithering ? \"#define DITHERING\" : \"\",\n      parameters.opaque ? \"#define OPAQUE\" : \"\",\n      ShaderChunk[\"encodings_pars_fragment\"],\n      getTexelEncodingFunction(\"linearToOutputTexel\", parameters.outputEncoding),\n      parameters.useDepthPacking ? \"#define DEPTH_PACKING \" + parameters.depthPacking : \"\",\n      \"\\n\"\n    ].filter(filterEmptyLine).join(\"\\n\");\n  }\n  vertexShader = resolveIncludes(vertexShader);\n  vertexShader = replaceLightNums(vertexShader, parameters);\n  vertexShader = replaceClippingPlaneNums(vertexShader, parameters);\n  fragmentShader = resolveIncludes(fragmentShader);\n  fragmentShader = replaceLightNums(fragmentShader, parameters);\n  fragmentShader = replaceClippingPlaneNums(fragmentShader, parameters);\n  vertexShader = unrollLoops(vertexShader);\n  fragmentShader = unrollLoops(fragmentShader);\n  if (parameters.isWebGL2 && parameters.isRawShaderMaterial !== true) {\n    versionString = \"#version 300 es\\n\";\n    prefixVertex = [\n      \"precision mediump sampler2DArray;\",\n      \"#define attribute in\",\n      \"#define varying out\",\n      \"#define texture2D texture\"\n    ].join(\"\\n\") + \"\\n\" + prefixVertex;\n    prefixFragment = [\n      \"#define varying in\",\n      parameters.glslVersion === GLSL3 ? \"\" : \"layout(location = 0) out highp vec4 pc_fragColor;\",\n      parameters.glslVersion === GLSL3 ? \"\" : \"#define gl_FragColor pc_fragColor\",\n      \"#define gl_FragDepthEXT gl_FragDepth\",\n      \"#define texture2D texture\",\n      \"#define textureCube texture\",\n      \"#define texture2DProj textureProj\",\n      \"#define texture2DLodEXT textureLod\",\n      \"#define texture2DProjLodEXT textureProjLod\",\n      \"#define textureCubeLodEXT textureLod\",\n      \"#define texture2DGradEXT textureGrad\",\n      \"#define texture2DProjGradEXT textureProjGrad\",\n      \"#define textureCubeGradEXT textureGrad\"\n    ].join(\"\\n\") + \"\\n\" + prefixFragment;\n  }\n  const vertexGlsl = versionString + prefixVertex + vertexShader;\n  const fragmentGlsl = versionString + prefixFragment + fragmentShader;\n  const glVertexShader = WebGLShader(gl, 35633, vertexGlsl);\n  const glFragmentShader = WebGLShader(gl, 35632, fragmentGlsl);\n  gl.attachShader(program, glVertexShader);\n  gl.attachShader(program, glFragmentShader);\n  if (parameters.index0AttributeName !== void 0) {\n    gl.bindAttribLocation(program, 0, parameters.index0AttributeName);\n  } else if (parameters.morphTargets === true) {\n    gl.bindAttribLocation(program, 0, \"position\");\n  }\n  gl.linkProgram(program);\n  if (renderer.debug.checkShaderErrors) {\n    const programLog = gl.getProgramInfoLog(program).trim();\n    const vertexLog = gl.getShaderInfoLog(glVertexShader).trim();\n    const fragmentLog = gl.getShaderInfoLog(glFragmentShader).trim();\n    let runnable = true;\n    let haveDiagnostics = true;\n    if (gl.getProgramParameter(program, 35714) === false) {\n      runnable = false;\n      const vertexErrors = getShaderErrors(gl, glVertexShader, \"vertex\");\n      const fragmentErrors = getShaderErrors(gl, glFragmentShader, \"fragment\");\n      console.error(\"THREE.WebGLProgram: Shader Error \" + gl.getError() + \" - VALIDATE_STATUS \" + gl.getProgramParameter(program, 35715) + \"\\n\\nProgram Info Log: \" + programLog + \"\\n\" + vertexErrors + \"\\n\" + fragmentErrors);\n    } else if (programLog !== \"\") {\n      console.warn(\"THREE.WebGLProgram: Program Info Log:\", programLog);\n    } else if (vertexLog === \"\" || fragmentLog === \"\") {\n      haveDiagnostics = false;\n    }\n    if (haveDiagnostics) {\n      this.diagnostics = {\n        runnable,\n        programLog,\n        vertexShader: {\n          log: vertexLog,\n          prefix: prefixVertex\n        },\n        fragmentShader: {\n          log: fragmentLog,\n          prefix: prefixFragment\n        }\n      };\n    }\n  }\n  gl.deleteShader(glVertexShader);\n  gl.deleteShader(glFragmentShader);\n  let cachedUniforms;\n  this.getUniforms = function() {\n    if (cachedUniforms === void 0) {\n      cachedUniforms = new WebGLUniforms(gl, program);\n    }\n    return cachedUniforms;\n  };\n  let cachedAttributes;\n  this.getAttributes = function() {\n    if (cachedAttributes === void 0) {\n      cachedAttributes = fetchAttributeLocations(gl, program);\n    }\n    return cachedAttributes;\n  };\n  this.destroy = function() {\n    bindingStates.releaseStatesOfProgram(this);\n    gl.deleteProgram(program);\n    this.program = void 0;\n  };\n  this.name = parameters.shaderName;\n  this.id = programIdCount++;\n  this.cacheKey = cacheKey;\n  this.usedTimes = 1;\n  this.program = program;\n  this.vertexShader = glVertexShader;\n  this.fragmentShader = glFragmentShader;\n  return this;\n}\nlet _id = 0;\nclass WebGLShaderCache {\n  constructor() {\n    this.shaderCache = /* @__PURE__ */ new Map();\n    this.materialCache = /* @__PURE__ */ new Map();\n  }\n  update(material) {\n    const vertexShader = material.vertexShader;\n    const fragmentShader = material.fragmentShader;\n    const vertexShaderStage = this._getShaderStage(vertexShader);\n    const fragmentShaderStage = this._getShaderStage(fragmentShader);\n    const materialShaders = this._getShaderCacheForMaterial(material);\n    if (materialShaders.has(vertexShaderStage) === false) {\n      materialShaders.add(vertexShaderStage);\n      vertexShaderStage.usedTimes++;\n    }\n    if (materialShaders.has(fragmentShaderStage) === false) {\n      materialShaders.add(fragmentShaderStage);\n      fragmentShaderStage.usedTimes++;\n    }\n    return this;\n  }\n  remove(material) {\n    const materialShaders = this.materialCache.get(material);\n    for (const shaderStage of materialShaders) {\n      shaderStage.usedTimes--;\n      if (shaderStage.usedTimes === 0)\n        this.shaderCache.delete(shaderStage.code);\n    }\n    this.materialCache.delete(material);\n    return this;\n  }\n  getVertexShaderID(material) {\n    return this._getShaderStage(material.vertexShader).id;\n  }\n  getFragmentShaderID(material) {\n    return this._getShaderStage(material.fragmentShader).id;\n  }\n  dispose() {\n    this.shaderCache.clear();\n    this.materialCache.clear();\n  }\n  _getShaderCacheForMaterial(material) {\n    const cache = this.materialCache;\n    if (cache.has(material) === false) {\n      cache.set(material, /* @__PURE__ */ new Set());\n    }\n    return cache.get(material);\n  }\n  _getShaderStage(code) {\n    const cache = this.shaderCache;\n    if (cache.has(code) === false) {\n      const stage = new WebGLShaderStage(code);\n      cache.set(code, stage);\n    }\n    return cache.get(code);\n  }\n}\nclass WebGLShaderStage {\n  constructor(code) {\n    this.id = _id++;\n    this.code = code;\n    this.usedTimes = 0;\n  }\n}\nfunction WebGLPrograms(renderer, cubemaps, cubeuvmaps, extensions, capabilities, bindingStates, clipping) {\n  const _programLayers = new Layers();\n  const _customShaders = new WebGLShaderCache();\n  const programs = [];\n  const isWebGL2 = capabilities.isWebGL2;\n  const logarithmicDepthBuffer = capabilities.logarithmicDepthBuffer;\n  const vertexTextures = capabilities.vertexTextures;\n  let precision = capabilities.precision;\n  const shaderIDs = {\n    MeshDepthMaterial: \"depth\",\n    MeshDistanceMaterial: \"distanceRGBA\",\n    MeshNormalMaterial: \"normal\",\n    MeshBasicMaterial: \"basic\",\n    MeshLambertMaterial: \"lambert\",\n    MeshPhongMaterial: \"phong\",\n    MeshToonMaterial: \"toon\",\n    MeshStandardMaterial: \"physical\",\n    MeshPhysicalMaterial: \"physical\",\n    MeshMatcapMaterial: \"matcap\",\n    LineBasicMaterial: \"basic\",\n    LineDashedMaterial: \"dashed\",\n    PointsMaterial: \"points\",\n    ShadowMaterial: \"shadow\",\n    SpriteMaterial: \"sprite\"\n  };\n  function getParameters(material, lights, shadows, scene, object) {\n    const fog = scene.fog;\n    const geometry = object.geometry;\n    const environment = material.isMeshStandardMaterial ? scene.environment : null;\n    const envMap = (material.isMeshStandardMaterial ? cubeuvmaps : cubemaps).get(material.envMap || environment);\n    const envMapCubeUVHeight = !!envMap && envMap.mapping === CubeUVReflectionMapping ? envMap.image.height : null;\n    const shaderID = shaderIDs[material.type];\n    if (material.precision !== null) {\n      precision = capabilities.getMaxPrecision(material.precision);\n      if (precision !== material.precision) {\n        console.warn(\"THREE.WebGLProgram.getParameters:\", material.precision, \"not supported, using\", precision, \"instead.\");\n      }\n    }\n    const morphAttribute = geometry.morphAttributes.position || geometry.morphAttributes.normal || geometry.morphAttributes.color;\n    const morphTargetsCount = morphAttribute !== void 0 ? morphAttribute.length : 0;\n    let morphTextureStride = 0;\n    if (geometry.morphAttributes.position !== void 0)\n      morphTextureStride = 1;\n    if (geometry.morphAttributes.normal !== void 0)\n      morphTextureStride = 2;\n    if (geometry.morphAttributes.color !== void 0)\n      morphTextureStride = 3;\n    let vertexShader, fragmentShader;\n    let customVertexShaderID, customFragmentShaderID;\n    if (shaderID) {\n      const shader = ShaderLib[shaderID];\n      vertexShader = shader.vertexShader;\n      fragmentShader = shader.fragmentShader;\n    } else {\n      vertexShader = material.vertexShader;\n      fragmentShader = material.fragmentShader;\n      _customShaders.update(material);\n      customVertexShaderID = _customShaders.getVertexShaderID(material);\n      customFragmentShaderID = _customShaders.getFragmentShaderID(material);\n    }\n    const currentRenderTarget = renderer.getRenderTarget();\n    const useAlphaTest = material.alphaTest > 0;\n    const useClearcoat = material.clearcoat > 0;\n    const useIridescence = material.iridescence > 0;\n    const parameters = {\n      isWebGL2,\n      shaderID,\n      shaderName: material.type,\n      vertexShader,\n      fragmentShader,\n      defines: material.defines,\n      customVertexShaderID,\n      customFragmentShaderID,\n      isRawShaderMaterial: material.isRawShaderMaterial === true,\n      glslVersion: material.glslVersion,\n      precision,\n      instancing: object.isInstancedMesh === true,\n      instancingColor: object.isInstancedMesh === true && object.instanceColor !== null,\n      supportsVertexTextures: vertexTextures,\n      outputEncoding: currentRenderTarget === null ? renderer.outputEncoding : currentRenderTarget.isXRRenderTarget === true ? currentRenderTarget.texture.encoding : LinearEncoding,\n      map: !!material.map,\n      matcap: !!material.matcap,\n      envMap: !!envMap,\n      envMapMode: envMap && envMap.mapping,\n      envMapCubeUVHeight,\n      lightMap: !!material.lightMap,\n      aoMap: !!material.aoMap,\n      emissiveMap: !!material.emissiveMap,\n      bumpMap: !!material.bumpMap,\n      normalMap: !!material.normalMap,\n      objectSpaceNormalMap: material.normalMapType === ObjectSpaceNormalMap,\n      tangentSpaceNormalMap: material.normalMapType === TangentSpaceNormalMap,\n      decodeVideoTexture: !!material.map && material.map.isVideoTexture === true && material.map.encoding === sRGBEncoding,\n      clearcoat: useClearcoat,\n      clearcoatMap: useClearcoat && !!material.clearcoatMap,\n      clearcoatRoughnessMap: useClearcoat && !!material.clearcoatRoughnessMap,\n      clearcoatNormalMap: useClearcoat && !!material.clearcoatNormalMap,\n      iridescence: useIridescence,\n      iridescenceMap: useIridescence && !!material.iridescenceMap,\n      iridescenceThicknessMap: useIridescence && !!material.iridescenceThicknessMap,\n      displacementMap: !!material.displacementMap,\n      roughnessMap: !!material.roughnessMap,\n      metalnessMap: !!material.metalnessMap,\n      specularMap: !!material.specularMap,\n      specularIntensityMap: !!material.specularIntensityMap,\n      specularColorMap: !!material.specularColorMap,\n      opaque: material.transparent === false && material.blending === NormalBlending,\n      alphaMap: !!material.alphaMap,\n      alphaTest: useAlphaTest,\n      gradientMap: !!material.gradientMap,\n      sheen: material.sheen > 0,\n      sheenColorMap: !!material.sheenColorMap,\n      sheenRoughnessMap: !!material.sheenRoughnessMap,\n      transmission: material.transmission > 0,\n      transmissionMap: !!material.transmissionMap,\n      thicknessMap: !!material.thicknessMap,\n      combine: material.combine,\n      vertexTangents: !!material.normalMap && !!geometry.attributes.tangent,\n      vertexColors: material.vertexColors,\n      vertexAlphas: material.vertexColors === true && !!geometry.attributes.color && geometry.attributes.color.itemSize === 4,\n      vertexUvs: !!material.map || !!material.bumpMap || !!material.normalMap || !!material.specularMap || !!material.alphaMap || !!material.emissiveMap || !!material.roughnessMap || !!material.metalnessMap || !!material.clearcoatMap || !!material.clearcoatRoughnessMap || !!material.clearcoatNormalMap || !!material.iridescenceMap || !!material.iridescenceThicknessMap || !!material.displacementMap || !!material.transmissionMap || !!material.thicknessMap || !!material.specularIntensityMap || !!material.specularColorMap || !!material.sheenColorMap || !!material.sheenRoughnessMap,\n      uvsVertexOnly: !(!!material.map || !!material.bumpMap || !!material.normalMap || !!material.specularMap || !!material.alphaMap || !!material.emissiveMap || !!material.roughnessMap || !!material.metalnessMap || !!material.clearcoatNormalMap || !!material.iridescenceMap || !!material.iridescenceThicknessMap || material.transmission > 0 || !!material.transmissionMap || !!material.thicknessMap || !!material.specularIntensityMap || !!material.specularColorMap || material.sheen > 0 || !!material.sheenColorMap || !!material.sheenRoughnessMap) && !!material.displacementMap,\n      fog: !!fog,\n      useFog: material.fog === true,\n      fogExp2: fog && fog.isFogExp2,\n      flatShading: !!material.flatShading,\n      sizeAttenuation: material.sizeAttenuation,\n      logarithmicDepthBuffer,\n      skinning: object.isSkinnedMesh === true,\n      morphTargets: geometry.morphAttributes.position !== void 0,\n      morphNormals: geometry.morphAttributes.normal !== void 0,\n      morphColors: geometry.morphAttributes.color !== void 0,\n      morphTargetsCount,\n      morphTextureStride,\n      numDirLights: lights.directional.length,\n      numPointLights: lights.point.length,\n      numSpotLights: lights.spot.length,\n      numRectAreaLights: lights.rectArea.length,\n      numHemiLights: lights.hemi.length,\n      numDirLightShadows: lights.directionalShadowMap.length,\n      numPointLightShadows: lights.pointShadowMap.length,\n      numSpotLightShadows: lights.spotShadowMap.length,\n      numClippingPlanes: clipping.numPlanes,\n      numClipIntersection: clipping.numIntersection,\n      dithering: material.dithering,\n      shadowMapEnabled: renderer.shadowMap.enabled && shadows.length > 0,\n      shadowMapType: renderer.shadowMap.type,\n      toneMapping: material.toneMapped ? renderer.toneMapping : NoToneMapping,\n      physicallyCorrectLights: renderer.physicallyCorrectLights,\n      premultipliedAlpha: material.premultipliedAlpha,\n      doubleSided: material.side === DoubleSide,\n      flipSided: material.side === BackSide,\n      useDepthPacking: !!material.depthPacking,\n      depthPacking: material.depthPacking || 0,\n      index0AttributeName: material.index0AttributeName,\n      extensionDerivatives: material.extensions && material.extensions.derivatives,\n      extensionFragDepth: material.extensions && material.extensions.fragDepth,\n      extensionDrawBuffers: material.extensions && material.extensions.drawBuffers,\n      extensionShaderTextureLOD: material.extensions && material.extensions.shaderTextureLOD,\n      rendererExtensionFragDepth: isWebGL2 || extensions.has(\"EXT_frag_depth\"),\n      rendererExtensionDrawBuffers: isWebGL2 || extensions.has(\"WEBGL_draw_buffers\"),\n      rendererExtensionShaderTextureLod: isWebGL2 || extensions.has(\"EXT_shader_texture_lod\"),\n      customProgramCacheKey: material.customProgramCacheKey()\n    };\n    return parameters;\n  }\n  function getProgramCacheKey(parameters) {\n    const array = [];\n    if (parameters.shaderID) {\n      array.push(parameters.shaderID);\n    } else {\n      array.push(parameters.customVertexShaderID);\n      array.push(parameters.customFragmentShaderID);\n    }\n    if (parameters.defines !== void 0) {\n      for (const name in parameters.defines) {\n        array.push(name);\n        array.push(parameters.defines[name]);\n      }\n    }\n    if (parameters.isRawShaderMaterial === false) {\n      getProgramCacheKeyParameters(array, parameters);\n      getProgramCacheKeyBooleans(array, parameters);\n      array.push(renderer.outputEncoding);\n    }\n    array.push(parameters.customProgramCacheKey);\n    return array.join();\n  }\n  function getProgramCacheKeyParameters(array, parameters) {\n    array.push(parameters.precision);\n    array.push(parameters.outputEncoding);\n    array.push(parameters.envMapMode);\n    array.push(parameters.envMapCubeUVHeight);\n    array.push(parameters.combine);\n    array.push(parameters.vertexUvs);\n    array.push(parameters.fogExp2);\n    array.push(parameters.sizeAttenuation);\n    array.push(parameters.morphTargetsCount);\n    array.push(parameters.morphAttributeCount);\n    array.push(parameters.numDirLights);\n    array.push(parameters.numPointLights);\n    array.push(parameters.numSpotLights);\n    array.push(parameters.numHemiLights);\n    array.push(parameters.numRectAreaLights);\n    array.push(parameters.numDirLightShadows);\n    array.push(parameters.numPointLightShadows);\n    array.push(parameters.numSpotLightShadows);\n    array.push(parameters.shadowMapType);\n    array.push(parameters.toneMapping);\n    array.push(parameters.numClippingPlanes);\n    array.push(parameters.numClipIntersection);\n    array.push(parameters.depthPacking);\n  }\n  function getProgramCacheKeyBooleans(array, parameters) {\n    _programLayers.disableAll();\n    if (parameters.isWebGL2)\n      _programLayers.enable(0);\n    if (parameters.supportsVertexTextures)\n      _programLayers.enable(1);\n    if (parameters.instancing)\n      _programLayers.enable(2);\n    if (parameters.instancingColor)\n      _programLayers.enable(3);\n    if (parameters.map)\n      _programLayers.enable(4);\n    if (parameters.matcap)\n      _programLayers.enable(5);\n    if (parameters.envMap)\n      _programLayers.enable(6);\n    if (parameters.lightMap)\n      _programLayers.enable(7);\n    if (parameters.aoMap)\n      _programLayers.enable(8);\n    if (parameters.emissiveMap)\n      _programLayers.enable(9);\n    if (parameters.bumpMap)\n      _programLayers.enable(10);\n    if (parameters.normalMap)\n      _programLayers.enable(11);\n    if (parameters.objectSpaceNormalMap)\n      _programLayers.enable(12);\n    if (parameters.tangentSpaceNormalMap)\n      _programLayers.enable(13);\n    if (parameters.clearcoat)\n      _programLayers.enable(14);\n    if (parameters.clearcoatMap)\n      _programLayers.enable(15);\n    if (parameters.clearcoatRoughnessMap)\n      _programLayers.enable(16);\n    if (parameters.clearcoatNormalMap)\n      _programLayers.enable(17);\n    if (parameters.iridescence)\n      _programLayers.enable(18);\n    if (parameters.iridescenceMap)\n      _programLayers.enable(19);\n    if (parameters.iridescenceThicknessMap)\n      _programLayers.enable(20);\n    if (parameters.displacementMap)\n      _programLayers.enable(21);\n    if (parameters.specularMap)\n      _programLayers.enable(22);\n    if (parameters.roughnessMap)\n      _programLayers.enable(23);\n    if (parameters.metalnessMap)\n      _programLayers.enable(24);\n    if (parameters.gradientMap)\n      _programLayers.enable(25);\n    if (parameters.alphaMap)\n      _programLayers.enable(26);\n    if (parameters.alphaTest)\n      _programLayers.enable(27);\n    if (parameters.vertexColors)\n      _programLayers.enable(28);\n    if (parameters.vertexAlphas)\n      _programLayers.enable(29);\n    if (parameters.vertexUvs)\n      _programLayers.enable(30);\n    if (parameters.vertexTangents)\n      _programLayers.enable(31);\n    if (parameters.uvsVertexOnly)\n      _programLayers.enable(32);\n    if (parameters.fog)\n      _programLayers.enable(33);\n    array.push(_programLayers.mask);\n    _programLayers.disableAll();\n    if (parameters.useFog)\n      _programLayers.enable(0);\n    if (parameters.flatShading)\n      _programLayers.enable(1);\n    if (parameters.logarithmicDepthBuffer)\n      _programLayers.enable(2);\n    if (parameters.skinning)\n      _programLayers.enable(3);\n    if (parameters.morphTargets)\n      _programLayers.enable(4);\n    if (parameters.morphNormals)\n      _programLayers.enable(5);\n    if (parameters.morphColors)\n      _programLayers.enable(6);\n    if (parameters.premultipliedAlpha)\n      _programLayers.enable(7);\n    if (parameters.shadowMapEnabled)\n      _programLayers.enable(8);\n    if (parameters.physicallyCorrectLights)\n      _programLayers.enable(9);\n    if (parameters.doubleSided)\n      _programLayers.enable(10);\n    if (parameters.flipSided)\n      _programLayers.enable(11);\n    if (parameters.useDepthPacking)\n      _programLayers.enable(12);\n    if (parameters.dithering)\n      _programLayers.enable(13);\n    if (parameters.specularIntensityMap)\n      _programLayers.enable(14);\n    if (parameters.specularColorMap)\n      _programLayers.enable(15);\n    if (parameters.transmission)\n      _programLayers.enable(16);\n    if (parameters.transmissionMap)\n      _programLayers.enable(17);\n    if (parameters.thicknessMap)\n      _programLayers.enable(18);\n    if (parameters.sheen)\n      _programLayers.enable(19);\n    if (parameters.sheenColorMap)\n      _programLayers.enable(20);\n    if (parameters.sheenRoughnessMap)\n      _programLayers.enable(21);\n    if (parameters.decodeVideoTexture)\n      _programLayers.enable(22);\n    if (parameters.opaque)\n      _programLayers.enable(23);\n    array.push(_programLayers.mask);\n  }\n  function getUniforms(material) {\n    const shaderID = shaderIDs[material.type];\n    let uniforms;\n    if (shaderID) {\n      const shader = ShaderLib[shaderID];\n      uniforms = UniformsUtils.clone(shader.uniforms);\n    } else {\n      uniforms = material.uniforms;\n    }\n    return uniforms;\n  }\n  function acquireProgram(parameters, cacheKey) {\n    let program;\n    for (let p = 0, pl = programs.length; p < pl; p++) {\n      const preexistingProgram = programs[p];\n      if (preexistingProgram.cacheKey === cacheKey) {\n        program = preexistingProgram;\n        ++program.usedTimes;\n        break;\n      }\n    }\n    if (program === void 0) {\n      program = new WebGLProgram(renderer, cacheKey, parameters, bindingStates);\n      programs.push(program);\n    }\n    return program;\n  }\n  function releaseProgram(program) {\n    if (--program.usedTimes === 0) {\n      const i = programs.indexOf(program);\n      programs[i] = programs[programs.length - 1];\n      programs.pop();\n      program.destroy();\n    }\n  }\n  function releaseShaderCache(material) {\n    _customShaders.remove(material);\n  }\n  function dispose() {\n    _customShaders.dispose();\n  }\n  return {\n    getParameters,\n    getProgramCacheKey,\n    getUniforms,\n    acquireProgram,\n    releaseProgram,\n    releaseShaderCache,\n    programs,\n    dispose\n  };\n}\nfunction WebGLProperties() {\n  let properties = /* @__PURE__ */ new WeakMap();\n  function get(object) {\n    let map = properties.get(object);\n    if (map === void 0) {\n      map = {};\n      properties.set(object, map);\n    }\n    return map;\n  }\n  function remove(object) {\n    properties.delete(object);\n  }\n  function update(object, key, value) {\n    properties.get(object)[key] = value;\n  }\n  function dispose() {\n    properties = /* @__PURE__ */ new WeakMap();\n  }\n  return {\n    get,\n    remove,\n    update,\n    dispose\n  };\n}\nfunction painterSortStable(a, b) {\n  if (a.groupOrder !== b.groupOrder) {\n    return a.groupOrder - b.groupOrder;\n  } else if (a.renderOrder !== b.renderOrder) {\n    return a.renderOrder - b.renderOrder;\n  } else if (a.material.id !== b.material.id) {\n    return a.material.id - b.material.id;\n  } else if (a.z !== b.z) {\n    return a.z - b.z;\n  } else {\n    return a.id - b.id;\n  }\n}\nfunction reversePainterSortStable(a, b) {\n  if (a.groupOrder !== b.groupOrder) {\n    return a.groupOrder - b.groupOrder;\n  } else if (a.renderOrder !== b.renderOrder) {\n    return a.renderOrder - b.renderOrder;\n  } else if (a.z !== b.z) {\n    return b.z - a.z;\n  } else {\n    return a.id - b.id;\n  }\n}\nfunction WebGLRenderList() {\n  const renderItems = [];\n  let renderItemsIndex = 0;\n  const opaque = [];\n  const transmissive = [];\n  const transparent = [];\n  function init() {\n    renderItemsIndex = 0;\n    opaque.length = 0;\n    transmissive.length = 0;\n    transparent.length = 0;\n  }\n  function getNextRenderItem(object, geometry, material, groupOrder, z, group) {\n    let renderItem = renderItems[renderItemsIndex];\n    if (renderItem === void 0) {\n      renderItem = {\n        id: object.id,\n        object,\n        geometry,\n        material,\n        groupOrder,\n        renderOrder: object.renderOrder,\n        z,\n        group\n      };\n      renderItems[renderItemsIndex] = renderItem;\n    } else {\n      renderItem.id = object.id;\n      renderItem.object = object;\n      renderItem.geometry = geometry;\n      renderItem.material = material;\n      renderItem.groupOrder = groupOrder;\n      renderItem.renderOrder = object.renderOrder;\n      renderItem.z = z;\n      renderItem.group = group;\n    }\n    renderItemsIndex++;\n    return renderItem;\n  }\n  function push(object, geometry, material, groupOrder, z, group) {\n    const renderItem = getNextRenderItem(object, geometry, material, groupOrder, z, group);\n    if (material.transmission > 0) {\n      transmissive.push(renderItem);\n    } else if (material.transparent === true) {\n      transparent.push(renderItem);\n    } else {\n      opaque.push(renderItem);\n    }\n  }\n  function unshift(object, geometry, material, groupOrder, z, group) {\n    const renderItem = getNextRenderItem(object, geometry, material, groupOrder, z, group);\n    if (material.transmission > 0) {\n      transmissive.unshift(renderItem);\n    } else if (material.transparent === true) {\n      transparent.unshift(renderItem);\n    } else {\n      opaque.unshift(renderItem);\n    }\n  }\n  function sort(customOpaqueSort, customTransparentSort) {\n    if (opaque.length > 1)\n      opaque.sort(customOpaqueSort || painterSortStable);\n    if (transmissive.length > 1)\n      transmissive.sort(customTransparentSort || reversePainterSortStable);\n    if (transparent.length > 1)\n      transparent.sort(customTransparentSort || reversePainterSortStable);\n  }\n  function finish() {\n    for (let i = renderItemsIndex, il = renderItems.length; i < il; i++) {\n      const renderItem = renderItems[i];\n      if (renderItem.id === null)\n        break;\n      renderItem.id = null;\n      renderItem.object = null;\n      renderItem.geometry = null;\n      renderItem.material = null;\n      renderItem.group = null;\n    }\n  }\n  return {\n    opaque,\n    transmissive,\n    transparent,\n    init,\n    push,\n    unshift,\n    finish,\n    sort\n  };\n}\nfunction WebGLRenderLists() {\n  let lists = /* @__PURE__ */ new WeakMap();\n  function get(scene, renderCallDepth) {\n    let list;\n    if (lists.has(scene) === false) {\n      list = new WebGLRenderList();\n      lists.set(scene, [list]);\n    } else {\n      if (renderCallDepth >= lists.get(scene).length) {\n        list = new WebGLRenderList();\n        lists.get(scene).push(list);\n      } else {\n        list = lists.get(scene)[renderCallDepth];\n      }\n    }\n    return list;\n  }\n  function dispose() {\n    lists = /* @__PURE__ */ new WeakMap();\n  }\n  return {\n    get,\n    dispose\n  };\n}\nfunction UniformsCache() {\n  const lights = {};\n  return {\n    get: function(light) {\n      if (lights[light.id] !== void 0) {\n        return lights[light.id];\n      }\n      let uniforms;\n      switch (light.type) {\n        case \"DirectionalLight\":\n          uniforms = {\n            direction: new Vector3(),\n            color: new Color()\n          };\n          break;\n        case \"SpotLight\":\n          uniforms = {\n            position: new Vector3(),\n            direction: new Vector3(),\n            color: new Color(),\n            distance: 0,\n            coneCos: 0,\n            penumbraCos: 0,\n            decay: 0\n          };\n          break;\n        case \"PointLight\":\n          uniforms = {\n            position: new Vector3(),\n            color: new Color(),\n            distance: 0,\n            decay: 0\n          };\n          break;\n        case \"HemisphereLight\":\n          uniforms = {\n            direction: new Vector3(),\n            skyColor: new Color(),\n            groundColor: new Color()\n          };\n          break;\n        case \"RectAreaLight\":\n          uniforms = {\n            color: new Color(),\n            position: new Vector3(),\n            halfWidth: new Vector3(),\n            halfHeight: new Vector3()\n          };\n          break;\n      }\n      lights[light.id] = uniforms;\n      return uniforms;\n    }\n  };\n}\nfunction ShadowUniformsCache() {\n  const lights = {};\n  return {\n    get: function(light) {\n      if (lights[light.id] !== void 0) {\n        return lights[light.id];\n      }\n      let uniforms;\n      switch (light.type) {\n        case \"DirectionalLight\":\n          uniforms = {\n            shadowBias: 0,\n            shadowNormalBias: 0,\n            shadowRadius: 1,\n            shadowMapSize: new Vector2()\n          };\n          break;\n        case \"SpotLight\":\n          uniforms = {\n            shadowBias: 0,\n            shadowNormalBias: 0,\n            shadowRadius: 1,\n            shadowMapSize: new Vector2()\n          };\n          break;\n        case \"PointLight\":\n          uniforms = {\n            shadowBias: 0,\n            shadowNormalBias: 0,\n            shadowRadius: 1,\n            shadowMapSize: new Vector2(),\n            shadowCameraNear: 1,\n            shadowCameraFar: 1e3\n          };\n          break;\n      }\n      lights[light.id] = uniforms;\n      return uniforms;\n    }\n  };\n}\nlet nextVersion = 0;\nfunction shadowCastingLightsFirst(lightA, lightB) {\n  return (lightB.castShadow ? 1 : 0) - (lightA.castShadow ? 1 : 0);\n}\nfunction WebGLLights(extensions, capabilities) {\n  const cache = new UniformsCache();\n  const shadowCache = ShadowUniformsCache();\n  const state = {\n    version: 0,\n    hash: {\n      directionalLength: -1,\n      pointLength: -1,\n      spotLength: -1,\n      rectAreaLength: -1,\n      hemiLength: -1,\n      numDirectionalShadows: -1,\n      numPointShadows: -1,\n      numSpotShadows: -1\n    },\n    ambient: [0, 0, 0],\n    probe: [],\n    directional: [],\n    directionalShadow: [],\n    directionalShadowMap: [],\n    directionalShadowMatrix: [],\n    spot: [],\n    spotShadow: [],\n    spotShadowMap: [],\n    spotShadowMatrix: [],\n    rectArea: [],\n    rectAreaLTC1: null,\n    rectAreaLTC2: null,\n    point: [],\n    pointShadow: [],\n    pointShadowMap: [],\n    pointShadowMatrix: [],\n    hemi: []\n  };\n  for (let i = 0; i < 9; i++)\n    state.probe.push(new Vector3());\n  const vector3 = new Vector3();\n  const matrix4 = new Matrix4();\n  const matrix42 = new Matrix4();\n  function setup(lights, physicallyCorrectLights) {\n    let r = 0, g = 0, b = 0;\n    for (let i = 0; i < 9; i++)\n      state.probe[i].set(0, 0, 0);\n    let directionalLength = 0;\n    let pointLength = 0;\n    let spotLength = 0;\n    let rectAreaLength = 0;\n    let hemiLength = 0;\n    let numDirectionalShadows = 0;\n    let numPointShadows = 0;\n    let numSpotShadows = 0;\n    lights.sort(shadowCastingLightsFirst);\n    const scaleFactor = physicallyCorrectLights !== true ? Math.PI : 1;\n    for (let i = 0, l = lights.length; i < l; i++) {\n      const light = lights[i];\n      const color = light.color;\n      const intensity = light.intensity;\n      const distance = light.distance;\n      const shadowMap = light.shadow && light.shadow.map ? light.shadow.map.texture : null;\n      if (light.isAmbientLight) {\n        r += color.r * intensity * scaleFactor;\n        g += color.g * intensity * scaleFactor;\n        b += color.b * intensity * scaleFactor;\n      } else if (light.isLightProbe) {\n        for (let j = 0; j < 9; j++) {\n          state.probe[j].addScaledVector(light.sh.coefficients[j], intensity);\n        }\n      } else if (light.isDirectionalLight) {\n        const uniforms = cache.get(light);\n        uniforms.color.copy(light.color).multiplyScalar(light.intensity * scaleFactor);\n        if (light.castShadow) {\n          const shadow = light.shadow;\n          const shadowUniforms = shadowCache.get(light);\n          shadowUniforms.shadowBias = shadow.bias;\n          shadowUniforms.shadowNormalBias = shadow.normalBias;\n          shadowUniforms.shadowRadius = shadow.radius;\n          shadowUniforms.shadowMapSize = shadow.mapSize;\n          state.directionalShadow[directionalLength] = shadowUniforms;\n          state.directionalShadowMap[directionalLength] = shadowMap;\n          state.directionalShadowMatrix[directionalLength] = light.shadow.matrix;\n          numDirectionalShadows++;\n        }\n        state.directional[directionalLength] = uniforms;\n        directionalLength++;\n      } else if (light.isSpotLight) {\n        const uniforms = cache.get(light);\n        uniforms.position.setFromMatrixPosition(light.matrixWorld);\n        uniforms.color.copy(color).multiplyScalar(intensity * scaleFactor);\n        uniforms.distance = distance;\n        uniforms.coneCos = Math.cos(light.angle);\n        uniforms.penumbraCos = Math.cos(light.angle * (1 - light.penumbra));\n        uniforms.decay = light.decay;\n        if (light.castShadow) {\n          const shadow = light.shadow;\n          const shadowUniforms = shadowCache.get(light);\n          shadowUniforms.shadowBias = shadow.bias;\n          shadowUniforms.shadowNormalBias = shadow.normalBias;\n          shadowUniforms.shadowRadius = shadow.radius;\n          shadowUniforms.shadowMapSize = shadow.mapSize;\n          state.spotShadow[spotLength] = shadowUniforms;\n          state.spotShadowMap[spotLength] = shadowMap;\n          state.spotShadowMatrix[spotLength] = light.shadow.matrix;\n          numSpotShadows++;\n        }\n        state.spot[spotLength] = uniforms;\n        spotLength++;\n      } else if (light.isRectAreaLight) {\n        const uniforms = cache.get(light);\n        uniforms.color.copy(color).multiplyScalar(intensity);\n        uniforms.halfWidth.set(light.width * 0.5, 0, 0);\n        uniforms.halfHeight.set(0, light.height * 0.5, 0);\n        state.rectArea[rectAreaLength] = uniforms;\n        rectAreaLength++;\n      } else if (light.isPointLight) {\n        const uniforms = cache.get(light);\n        uniforms.color.copy(light.color).multiplyScalar(light.intensity * scaleFactor);\n        uniforms.distance = light.distance;\n        uniforms.decay = light.decay;\n        if (light.castShadow) {\n          const shadow = light.shadow;\n          const shadowUniforms = shadowCache.get(light);\n          shadowUniforms.shadowBias = shadow.bias;\n          shadowUniforms.shadowNormalBias = shadow.normalBias;\n          shadowUniforms.shadowRadius = shadow.radius;\n          shadowUniforms.shadowMapSize = shadow.mapSize;\n          shadowUniforms.shadowCameraNear = shadow.camera.near;\n          shadowUniforms.shadowCameraFar = shadow.camera.far;\n          state.pointShadow[pointLength] = shadowUniforms;\n          state.pointShadowMap[pointLength] = shadowMap;\n          state.pointShadowMatrix[pointLength] = light.shadow.matrix;\n          numPointShadows++;\n        }\n        state.point[pointLength] = uniforms;\n        pointLength++;\n      } else if (light.isHemisphereLight) {\n        const uniforms = cache.get(light);\n        uniforms.skyColor.copy(light.color).multiplyScalar(intensity * scaleFactor);\n        uniforms.groundColor.copy(light.groundColor).multiplyScalar(intensity * scaleFactor);\n        state.hemi[hemiLength] = uniforms;\n        hemiLength++;\n      }\n    }\n    if (rectAreaLength > 0) {\n      if (capabilities.isWebGL2) {\n        state.rectAreaLTC1 = UniformsLib.LTC_FLOAT_1;\n        state.rectAreaLTC2 = UniformsLib.LTC_FLOAT_2;\n      } else {\n        if (extensions.has(\"OES_texture_float_linear\") === true) {\n          state.rectAreaLTC1 = UniformsLib.LTC_FLOAT_1;\n          state.rectAreaLTC2 = UniformsLib.LTC_FLOAT_2;\n        } else if (extensions.has(\"OES_texture_half_float_linear\") === true) {\n          state.rectAreaLTC1 = UniformsLib.LTC_HALF_1;\n          state.rectAreaLTC2 = UniformsLib.LTC_HALF_2;\n        } else {\n          console.error(\"THREE.WebGLRenderer: Unable to use RectAreaLight. Missing WebGL extensions.\");\n        }\n      }\n    }\n    state.ambient[0] = r;\n    state.ambient[1] = g;\n    state.ambient[2] = b;\n    const hash = state.hash;\n    if (hash.directionalLength !== directionalLength || hash.pointLength !== pointLength || hash.spotLength !== spotLength || hash.rectAreaLength !== rectAreaLength || hash.hemiLength !== hemiLength || hash.numDirectionalShadows !== numDirectionalShadows || hash.numPointShadows !== numPointShadows || hash.numSpotShadows !== numSpotShadows) {\n      state.directional.length = directionalLength;\n      state.spot.length = spotLength;\n      state.rectArea.length = rectAreaLength;\n      state.point.length = pointLength;\n      state.hemi.length = hemiLength;\n      state.directionalShadow.length = numDirectionalShadows;\n      state.directionalShadowMap.length = numDirectionalShadows;\n      state.pointShadow.length = numPointShadows;\n      state.pointShadowMap.length = numPointShadows;\n      state.spotShadow.length = numSpotShadows;\n      state.spotShadowMap.length = numSpotShadows;\n      state.directionalShadowMatrix.length = numDirectionalShadows;\n      state.pointShadowMatrix.length = numPointShadows;\n      state.spotShadowMatrix.length = numSpotShadows;\n      hash.directionalLength = directionalLength;\n      hash.pointLength = pointLength;\n      hash.spotLength = spotLength;\n      hash.rectAreaLength = rectAreaLength;\n      hash.hemiLength = hemiLength;\n      hash.numDirectionalShadows = numDirectionalShadows;\n      hash.numPointShadows = numPointShadows;\n      hash.numSpotShadows = numSpotShadows;\n      state.version = nextVersion++;\n    }\n  }\n  function setupView(lights, camera) {\n    let directionalLength = 0;\n    let pointLength = 0;\n    let spotLength = 0;\n    let rectAreaLength = 0;\n    let hemiLength = 0;\n    const viewMatrix = camera.matrixWorldInverse;\n    for (let i = 0, l = lights.length; i < l; i++) {\n      const light = lights[i];\n      if (light.isDirectionalLight) {\n        const uniforms = state.directional[directionalLength];\n        uniforms.direction.setFromMatrixPosition(light.matrixWorld);\n        vector3.setFromMatrixPosition(light.target.matrixWorld);\n        uniforms.direction.sub(vector3);\n        uniforms.direction.transformDirection(viewMatrix);\n        directionalLength++;\n      } else if (light.isSpotLight) {\n        const uniforms = state.spot[spotLength];\n        uniforms.position.setFromMatrixPosition(light.matrixWorld);\n        uniforms.position.applyMatrix4(viewMatrix);\n        uniforms.direction.setFromMatrixPosition(light.matrixWorld);\n        vector3.setFromMatrixPosition(light.target.matrixWorld);\n        uniforms.direction.sub(vector3);\n        uniforms.direction.transformDirection(viewMatrix);\n        spotLength++;\n      } else if (light.isRectAreaLight) {\n        const uniforms = state.rectArea[rectAreaLength];\n        uniforms.position.setFromMatrixPosition(light.matrixWorld);\n        uniforms.position.applyMatrix4(viewMatrix);\n        matrix42.identity();\n        matrix4.copy(light.matrixWorld);\n        matrix4.premultiply(viewMatrix);\n        matrix42.extractRotation(matrix4);\n        uniforms.halfWidth.set(light.width * 0.5, 0, 0);\n        uniforms.halfHeight.set(0, light.height * 0.5, 0);\n        uniforms.halfWidth.applyMatrix4(matrix42);\n        uniforms.halfHeight.applyMatrix4(matrix42);\n        rectAreaLength++;\n      } else if (light.isPointLight) {\n        const uniforms = state.point[pointLength];\n        uniforms.position.setFromMatrixPosition(light.matrixWorld);\n        uniforms.position.applyMatrix4(viewMatrix);\n        pointLength++;\n      } else if (light.isHemisphereLight) {\n        const uniforms = state.hemi[hemiLength];\n        uniforms.direction.setFromMatrixPosition(light.matrixWorld);\n        uniforms.direction.transformDirection(viewMatrix);\n        hemiLength++;\n      }\n    }\n  }\n  return {\n    setup,\n    setupView,\n    state\n  };\n}\nfunction WebGLRenderState(extensions, capabilities) {\n  const lights = new WebGLLights(extensions, capabilities);\n  const lightsArray = [];\n  const shadowsArray = [];\n  function init() {\n    lightsArray.length = 0;\n    shadowsArray.length = 0;\n  }\n  function pushLight(light) {\n    lightsArray.push(light);\n  }\n  function pushShadow(shadowLight) {\n    shadowsArray.push(shadowLight);\n  }\n  function setupLights(physicallyCorrectLights) {\n    lights.setup(lightsArray, physicallyCorrectLights);\n  }\n  function setupLightsView(camera) {\n    lights.setupView(lightsArray, camera);\n  }\n  const state = {\n    lightsArray,\n    shadowsArray,\n    lights\n  };\n  return {\n    init,\n    state,\n    setupLights,\n    setupLightsView,\n    pushLight,\n    pushShadow\n  };\n}\nfunction WebGLRenderStates(extensions, capabilities) {\n  let renderStates = /* @__PURE__ */ new WeakMap();\n  function get(scene, renderCallDepth = 0) {\n    let renderState;\n    if (renderStates.has(scene) === false) {\n      renderState = new WebGLRenderState(extensions, capabilities);\n      renderStates.set(scene, [renderState]);\n    } else {\n      if (renderCallDepth >= renderStates.get(scene).length) {\n        renderState = new WebGLRenderState(extensions, capabilities);\n        renderStates.get(scene).push(renderState);\n      } else {\n        renderState = renderStates.get(scene)[renderCallDepth];\n      }\n    }\n    return renderState;\n  }\n  function dispose() {\n    renderStates = /* @__PURE__ */ new WeakMap();\n  }\n  return {\n    get,\n    dispose\n  };\n}\nclass MeshDepthMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshDepthMaterial = true;\n    this.type = \"MeshDepthMaterial\";\n    this.depthPacking = BasicDepthPacking;\n    this.map = null;\n    this.alphaMap = null;\n    this.displacementMap = null;\n    this.displacementScale = 1;\n    this.displacementBias = 0;\n    this.wireframe = false;\n    this.wireframeLinewidth = 1;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.depthPacking = source.depthPacking;\n    this.map = source.map;\n    this.alphaMap = source.alphaMap;\n    this.displacementMap = source.displacementMap;\n    this.displacementScale = source.displacementScale;\n    this.displacementBias = source.displacementBias;\n    this.wireframe = source.wireframe;\n    this.wireframeLinewidth = source.wireframeLinewidth;\n    return this;\n  }\n}\nclass MeshDistanceMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshDistanceMaterial = true;\n    this.type = \"MeshDistanceMaterial\";\n    this.referencePosition = new Vector3();\n    this.nearDistance = 1;\n    this.farDistance = 1e3;\n    this.map = null;\n    this.alphaMap = null;\n    this.displacementMap = null;\n    this.displacementScale = 1;\n    this.displacementBias = 0;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.referencePosition.copy(source.referencePosition);\n    this.nearDistance = source.nearDistance;\n    this.farDistance = source.farDistance;\n    this.map = source.map;\n    this.alphaMap = source.alphaMap;\n    this.displacementMap = source.displacementMap;\n    this.displacementScale = source.displacementScale;\n    this.displacementBias = source.displacementBias;\n    return this;\n  }\n}\nconst vertex = \"void main() {\\n\tgl_Position = vec4( position, 1.0 );\\n}\";\nconst fragment = \"uniform sampler2D shadow_pass;\\nuniform vec2 resolution;\\nuniform float radius;\\n#include <packing>\\nvoid main() {\\n\tconst float samples = float( VSM_SAMPLES );\\n\tfloat mean = 0.0;\\n\tfloat squared_mean = 0.0;\\n\tfloat uvStride = samples <= 1.0 ? 0.0 : 2.0 / ( samples - 1.0 );\\n\tfloat uvStart = samples <= 1.0 ? 0.0 : - 1.0;\\n\tfor ( float i = 0.0; i < samples; i ++ ) {\\n\t\tfloat uvOffset = uvStart + i * uvStride;\\n\t\t#ifdef HORIZONTAL_PASS\\n\t\t\tvec2 distribution = unpackRGBATo2Half( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( uvOffset, 0.0 ) * radius ) / resolution ) );\\n\t\t\tmean += distribution.x;\\n\t\t\tsquared_mean += distribution.y * distribution.y + distribution.x * distribution.x;\\n\t\t#else\\n\t\t\tfloat depth = unpackRGBAToDepth( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( 0.0, uvOffset ) * radius ) / resolution ) );\\n\t\t\tmean += depth;\\n\t\t\tsquared_mean += depth * depth;\\n\t\t#endif\\n\t}\\n\tmean = mean / samples;\\n\tsquared_mean = squared_mean / samples;\\n\tfloat std_dev = sqrt( squared_mean - mean * mean );\\n\tgl_FragColor = pack2HalfToRGBA( vec2( mean, std_dev ) );\\n}\";\nfunction WebGLShadowMap(_renderer, _objects, _capabilities) {\n  let _frustum = new Frustum();\n  const _shadowMapSize = new Vector2(), _viewportSize = new Vector2(), _viewport = new Vector4(), _depthMaterial = new MeshDepthMaterial({ depthPacking: RGBADepthPacking }), _distanceMaterial = new MeshDistanceMaterial(), _materialCache = {}, _maxTextureSize = _capabilities.maxTextureSize;\n  const shadowSide = { 0: BackSide, 1: FrontSide, 2: DoubleSide };\n  const shadowMaterialVertical = new ShaderMaterial({\n    defines: {\n      VSM_SAMPLES: 8\n    },\n    uniforms: {\n      shadow_pass: { value: null },\n      resolution: { value: new Vector2() },\n      radius: { value: 4 }\n    },\n    vertexShader: vertex,\n    fragmentShader: fragment\n  });\n  const shadowMaterialHorizontal = shadowMaterialVertical.clone();\n  shadowMaterialHorizontal.defines.HORIZONTAL_PASS = 1;\n  const fullScreenTri = new BufferGeometry();\n  fullScreenTri.setAttribute(\"position\", new BufferAttribute(new Float32Array([-1, -1, 0.5, 3, -1, 0.5, -1, 3, 0.5]), 3));\n  const fullScreenMesh = new Mesh(fullScreenTri, shadowMaterialVertical);\n  const scope = this;\n  this.enabled = false;\n  this.autoUpdate = true;\n  this.needsUpdate = false;\n  this.type = PCFShadowMap;\n  this.render = function(lights, scene, camera) {\n    if (scope.enabled === false)\n      return;\n    if (scope.autoUpdate === false && scope.needsUpdate === false)\n      return;\n    if (lights.length === 0)\n      return;\n    const currentRenderTarget = _renderer.getRenderTarget();\n    const activeCubeFace = _renderer.getActiveCubeFace();\n    const activeMipmapLevel = _renderer.getActiveMipmapLevel();\n    const _state = _renderer.state;\n    _state.setBlending(NoBlending);\n    _state.buffers.color.setClear(1, 1, 1, 1);\n    _state.buffers.depth.setTest(true);\n    _state.setScissorTest(false);\n    for (let i = 0, il = lights.length; i < il; i++) {\n      const light = lights[i];\n      const shadow = light.shadow;\n      if (shadow === void 0) {\n        console.warn(\"THREE.WebGLShadowMap:\", light, \"has no shadow.\");\n        continue;\n      }\n      if (shadow.autoUpdate === false && shadow.needsUpdate === false)\n        continue;\n      _shadowMapSize.copy(shadow.mapSize);\n      const shadowFrameExtents = shadow.getFrameExtents();\n      _shadowMapSize.multiply(shadowFrameExtents);\n      _viewportSize.copy(shadow.mapSize);\n      if (_shadowMapSize.x > _maxTextureSize || _shadowMapSize.y > _maxTextureSize) {\n        if (_shadowMapSize.x > _maxTextureSize) {\n          _viewportSize.x = Math.floor(_maxTextureSize / shadowFrameExtents.x);\n          _shadowMapSize.x = _viewportSize.x * shadowFrameExtents.x;\n          shadow.mapSize.x = _viewportSize.x;\n        }\n        if (_shadowMapSize.y > _maxTextureSize) {\n          _viewportSize.y = Math.floor(_maxTextureSize / shadowFrameExtents.y);\n          _shadowMapSize.y = _viewportSize.y * shadowFrameExtents.y;\n          shadow.mapSize.y = _viewportSize.y;\n        }\n      }\n      if (shadow.map === null) {\n        const pars = this.type !== VSMShadowMap ? { minFilter: NearestFilter, magFilter: NearestFilter } : {};\n        shadow.map = new WebGLRenderTarget(_shadowMapSize.x, _shadowMapSize.y, pars);\n        shadow.map.texture.name = light.name + \".shadowMap\";\n        shadow.camera.updateProjectionMatrix();\n      }\n      _renderer.setRenderTarget(shadow.map);\n      _renderer.clear();\n      const viewportCount = shadow.getViewportCount();\n      for (let vp = 0; vp < viewportCount; vp++) {\n        const viewport = shadow.getViewport(vp);\n        _viewport.set(_viewportSize.x * viewport.x, _viewportSize.y * viewport.y, _viewportSize.x * viewport.z, _viewportSize.y * viewport.w);\n        _state.viewport(_viewport);\n        shadow.updateMatrices(light, vp);\n        _frustum = shadow.getFrustum();\n        renderObject(scene, camera, shadow.camera, light, this.type);\n      }\n      if (shadow.isPointLightShadow !== true && this.type === VSMShadowMap) {\n        VSMPass(shadow, camera);\n      }\n      shadow.needsUpdate = false;\n    }\n    scope.needsUpdate = false;\n    _renderer.setRenderTarget(currentRenderTarget, activeCubeFace, activeMipmapLevel);\n  };\n  function VSMPass(shadow, camera) {\n    const geometry = _objects.update(fullScreenMesh);\n    if (shadowMaterialVertical.defines.VSM_SAMPLES !== shadow.blurSamples) {\n      shadowMaterialVertical.defines.VSM_SAMPLES = shadow.blurSamples;\n      shadowMaterialHorizontal.defines.VSM_SAMPLES = shadow.blurSamples;\n      shadowMaterialVertical.needsUpdate = true;\n      shadowMaterialHorizontal.needsUpdate = true;\n    }\n    if (shadow.mapPass === null) {\n      shadow.mapPass = new WebGLRenderTarget(_shadowMapSize.x, _shadowMapSize.y);\n    }\n    shadowMaterialVertical.uniforms.shadow_pass.value = shadow.map.texture;\n    shadowMaterialVertical.uniforms.resolution.value = shadow.mapSize;\n    shadowMaterialVertical.uniforms.radius.value = shadow.radius;\n    _renderer.setRenderTarget(shadow.mapPass);\n    _renderer.clear();\n    _renderer.renderBufferDirect(camera, null, geometry, shadowMaterialVertical, fullScreenMesh, null);\n    shadowMaterialHorizontal.uniforms.shadow_pass.value = shadow.mapPass.texture;\n    shadowMaterialHorizontal.uniforms.resolution.value = shadow.mapSize;\n    shadowMaterialHorizontal.uniforms.radius.value = shadow.radius;\n    _renderer.setRenderTarget(shadow.map);\n    _renderer.clear();\n    _renderer.renderBufferDirect(camera, null, geometry, shadowMaterialHorizontal, fullScreenMesh, null);\n  }\n  function getDepthMaterial(object, material, light, shadowCameraNear, shadowCameraFar, type) {\n    let result = null;\n    const customMaterial = light.isPointLight === true ? object.customDistanceMaterial : object.customDepthMaterial;\n    if (customMaterial !== void 0) {\n      result = customMaterial;\n    } else {\n      result = light.isPointLight === true ? _distanceMaterial : _depthMaterial;\n    }\n    if (_renderer.localClippingEnabled && material.clipShadows === true && Array.isArray(material.clippingPlanes) && material.clippingPlanes.length !== 0 || material.displacementMap && material.displacementScale !== 0 || material.alphaMap && material.alphaTest > 0) {\n      const keyA = result.uuid, keyB = material.uuid;\n      let materialsForVariant = _materialCache[keyA];\n      if (materialsForVariant === void 0) {\n        materialsForVariant = {};\n        _materialCache[keyA] = materialsForVariant;\n      }\n      let cachedMaterial = materialsForVariant[keyB];\n      if (cachedMaterial === void 0) {\n        cachedMaterial = result.clone();\n        materialsForVariant[keyB] = cachedMaterial;\n      }\n      result = cachedMaterial;\n    }\n    result.visible = material.visible;\n    result.wireframe = material.wireframe;\n    if (type === VSMShadowMap) {\n      result.side = material.shadowSide !== null ? material.shadowSide : material.side;\n    } else {\n      result.side = material.shadowSide !== null ? material.shadowSide : shadowSide[material.side];\n    }\n    result.alphaMap = material.alphaMap;\n    result.alphaTest = material.alphaTest;\n    result.clipShadows = material.clipShadows;\n    result.clippingPlanes = material.clippingPlanes;\n    result.clipIntersection = material.clipIntersection;\n    result.displacementMap = material.displacementMap;\n    result.displacementScale = material.displacementScale;\n    result.displacementBias = material.displacementBias;\n    result.wireframeLinewidth = material.wireframeLinewidth;\n    result.linewidth = material.linewidth;\n    if (light.isPointLight === true && result.isMeshDistanceMaterial === true) {\n      result.referencePosition.setFromMatrixPosition(light.matrixWorld);\n      result.nearDistance = shadowCameraNear;\n      result.farDistance = shadowCameraFar;\n    }\n    return result;\n  }\n  function renderObject(object, camera, shadowCamera, light, type) {\n    if (object.visible === false)\n      return;\n    const visible = object.layers.test(camera.layers);\n    if (visible && (object.isMesh || object.isLine || object.isPoints)) {\n      if ((object.castShadow || object.receiveShadow && type === VSMShadowMap) && (!object.frustumCulled || _frustum.intersectsObject(object))) {\n        object.modelViewMatrix.multiplyMatrices(shadowCamera.matrixWorldInverse, object.matrixWorld);\n        const geometry = _objects.update(object);\n        const material = object.material;\n        if (Array.isArray(material)) {\n          const groups = geometry.groups;\n          for (let k = 0, kl = groups.length; k < kl; k++) {\n            const group = groups[k];\n            const groupMaterial = material[group.materialIndex];\n            if (groupMaterial && groupMaterial.visible) {\n              const depthMaterial = getDepthMaterial(object, groupMaterial, light, shadowCamera.near, shadowCamera.far, type);\n              _renderer.renderBufferDirect(shadowCamera, null, geometry, depthMaterial, object, group);\n            }\n          }\n        } else if (material.visible) {\n          const depthMaterial = getDepthMaterial(object, material, light, shadowCamera.near, shadowCamera.far, type);\n          _renderer.renderBufferDirect(shadowCamera, null, geometry, depthMaterial, object, null);\n        }\n      }\n    }\n    const children = object.children;\n    for (let i = 0, l = children.length; i < l; i++) {\n      renderObject(children[i], camera, shadowCamera, light, type);\n    }\n  }\n}\nfunction WebGLState(gl, extensions, capabilities) {\n  const isWebGL2 = capabilities.isWebGL2;\n  function ColorBuffer() {\n    let locked = false;\n    const color = new Vector4();\n    let currentColorMask = null;\n    const currentColorClear = new Vector4(0, 0, 0, 0);\n    return {\n      setMask: function(colorMask) {\n        if (currentColorMask !== colorMask && !locked) {\n          gl.colorMask(colorMask, colorMask, colorMask, colorMask);\n          currentColorMask = colorMask;\n        }\n      },\n      setLocked: function(lock) {\n        locked = lock;\n      },\n      setClear: function(r, g, b, a, premultipliedAlpha) {\n        if (premultipliedAlpha === true) {\n          r *= a;\n          g *= a;\n          b *= a;\n        }\n        color.set(r, g, b, a);\n        if (currentColorClear.equals(color) === false) {\n          gl.clearColor(r, g, b, a);\n          currentColorClear.copy(color);\n        }\n      },\n      reset: function() {\n        locked = false;\n        currentColorMask = null;\n        currentColorClear.set(-1, 0, 0, 0);\n      }\n    };\n  }\n  function DepthBuffer() {\n    let locked = false;\n    let currentDepthMask = null;\n    let currentDepthFunc = null;\n    let currentDepthClear = null;\n    return {\n      setTest: function(depthTest) {\n        if (depthTest) {\n          enable(2929);\n        } else {\n          disable(2929);\n        }\n      },\n      setMask: function(depthMask) {\n        if (currentDepthMask !== depthMask && !locked) {\n          gl.depthMask(depthMask);\n          currentDepthMask = depthMask;\n        }\n      },\n      setFunc: function(depthFunc) {\n        if (currentDepthFunc !== depthFunc) {\n          if (depthFunc) {\n            switch (depthFunc) {\n              case NeverDepth:\n                gl.depthFunc(512);\n                break;\n              case AlwaysDepth:\n                gl.depthFunc(519);\n                break;\n              case LessDepth:\n                gl.depthFunc(513);\n                break;\n              case LessEqualDepth:\n                gl.depthFunc(515);\n                break;\n              case EqualDepth:\n                gl.depthFunc(514);\n                break;\n              case GreaterEqualDepth:\n                gl.depthFunc(518);\n                break;\n              case GreaterDepth:\n                gl.depthFunc(516);\n                break;\n              case NotEqualDepth:\n                gl.depthFunc(517);\n                break;\n              default:\n                gl.depthFunc(515);\n            }\n          } else {\n            gl.depthFunc(515);\n          }\n          currentDepthFunc = depthFunc;\n        }\n      },\n      setLocked: function(lock) {\n        locked = lock;\n      },\n      setClear: function(depth) {\n        if (currentDepthClear !== depth) {\n          gl.clearDepth(depth);\n          currentDepthClear = depth;\n        }\n      },\n      reset: function() {\n        locked = false;\n        currentDepthMask = null;\n        currentDepthFunc = null;\n        currentDepthClear = null;\n      }\n    };\n  }\n  function StencilBuffer() {\n    let locked = false;\n    let currentStencilMask = null;\n    let currentStencilFunc = null;\n    let currentStencilRef = null;\n    let currentStencilFuncMask = null;\n    let currentStencilFail = null;\n    let currentStencilZFail = null;\n    let currentStencilZPass = null;\n    let currentStencilClear = null;\n    return {\n      setTest: function(stencilTest) {\n        if (!locked) {\n          if (stencilTest) {\n            enable(2960);\n          } else {\n            disable(2960);\n          }\n        }\n      },\n      setMask: function(stencilMask) {\n        if (currentStencilMask !== stencilMask && !locked) {\n          gl.stencilMask(stencilMask);\n          currentStencilMask = stencilMask;\n        }\n      },\n      setFunc: function(stencilFunc, stencilRef, stencilMask) {\n        if (currentStencilFunc !== stencilFunc || currentStencilRef !== stencilRef || currentStencilFuncMask !== stencilMask) {\n          gl.stencilFunc(stencilFunc, stencilRef, stencilMask);\n          currentStencilFunc = stencilFunc;\n          currentStencilRef = stencilRef;\n          currentStencilFuncMask = stencilMask;\n        }\n      },\n      setOp: function(stencilFail, stencilZFail, stencilZPass) {\n        if (currentStencilFail !== stencilFail || currentStencilZFail !== stencilZFail || currentStencilZPass !== stencilZPass) {\n          gl.stencilOp(stencilFail, stencilZFail, stencilZPass);\n          currentStencilFail = stencilFail;\n          currentStencilZFail = stencilZFail;\n          currentStencilZPass = stencilZPass;\n        }\n      },\n      setLocked: function(lock) {\n        locked = lock;\n      },\n      setClear: function(stencil) {\n        if (currentStencilClear !== stencil) {\n          gl.clearStencil(stencil);\n          currentStencilClear = stencil;\n        }\n      },\n      reset: function() {\n        locked = false;\n        currentStencilMask = null;\n        currentStencilFunc = null;\n        currentStencilRef = null;\n        currentStencilFuncMask = null;\n        currentStencilFail = null;\n        currentStencilZFail = null;\n        currentStencilZPass = null;\n        currentStencilClear = null;\n      }\n    };\n  }\n  const colorBuffer = new ColorBuffer();\n  const depthBuffer = new DepthBuffer();\n  const stencilBuffer = new StencilBuffer();\n  const uboBindings = /* @__PURE__ */ new WeakMap();\n  const uboProgamMap = /* @__PURE__ */ new WeakMap();\n  let enabledCapabilities = {};\n  let currentBoundFramebuffers = {};\n  let currentDrawbuffers = /* @__PURE__ */ new WeakMap();\n  let defaultDrawbuffers = [];\n  let currentProgram = null;\n  let currentBlendingEnabled = false;\n  let currentBlending = null;\n  let currentBlendEquation = null;\n  let currentBlendSrc = null;\n  let currentBlendDst = null;\n  let currentBlendEquationAlpha = null;\n  let currentBlendSrcAlpha = null;\n  let currentBlendDstAlpha = null;\n  let currentPremultipledAlpha = false;\n  let currentFlipSided = null;\n  let currentCullFace = null;\n  let currentLineWidth = null;\n  let currentPolygonOffsetFactor = null;\n  let currentPolygonOffsetUnits = null;\n  const maxTextures = gl.getParameter(35661);\n  let lineWidthAvailable = false;\n  let version = 0;\n  const glVersion = gl.getParameter(7938);\n  if (glVersion.indexOf(\"WebGL\") !== -1) {\n    version = parseFloat(/^WebGL (\\d)/.exec(glVersion)[1]);\n    lineWidthAvailable = version >= 1;\n  } else if (glVersion.indexOf(\"OpenGL ES\") !== -1) {\n    version = parseFloat(/^OpenGL ES (\\d)/.exec(glVersion)[1]);\n    lineWidthAvailable = version >= 2;\n  }\n  let currentTextureSlot = null;\n  let currentBoundTextures = {};\n  const scissorParam = gl.getParameter(3088);\n  const viewportParam = gl.getParameter(2978);\n  const currentScissor = new Vector4().fromArray(scissorParam);\n  const currentViewport = new Vector4().fromArray(viewportParam);\n  function createTexture(type, target, count) {\n    const data = new Uint8Array(4);\n    const texture = gl.createTexture();\n    gl.bindTexture(type, texture);\n    gl.texParameteri(type, 10241, 9728);\n    gl.texParameteri(type, 10240, 9728);\n    for (let i = 0; i < count; i++) {\n      gl.texImage2D(target + i, 0, 6408, 1, 1, 0, 6408, 5121, data);\n    }\n    return texture;\n  }\n  const emptyTextures = {};\n  emptyTextures[3553] = createTexture(3553, 3553, 1);\n  emptyTextures[34067] = createTexture(34067, 34069, 6);\n  colorBuffer.setClear(0, 0, 0, 1);\n  depthBuffer.setClear(1);\n  stencilBuffer.setClear(0);\n  enable(2929);\n  depthBuffer.setFunc(LessEqualDepth);\n  setFlipSided(false);\n  setCullFace(CullFaceBack);\n  enable(2884);\n  setBlending(NoBlending);\n  function enable(id2) {\n    if (enabledCapabilities[id2] !== true) {\n      gl.enable(id2);\n      enabledCapabilities[id2] = true;\n    }\n  }\n  function disable(id2) {\n    if (enabledCapabilities[id2] !== false) {\n      gl.disable(id2);\n      enabledCapabilities[id2] = false;\n    }\n  }\n  function bindFramebuffer(target, framebuffer) {\n    if (currentBoundFramebuffers[target] !== framebuffer) {\n      gl.bindFramebuffer(target, framebuffer);\n      currentBoundFramebuffers[target] = framebuffer;\n      if (isWebGL2) {\n        if (target === 36009) {\n          currentBoundFramebuffers[36160] = framebuffer;\n        }\n        if (target === 36160) {\n          currentBoundFramebuffers[36009] = framebuffer;\n        }\n      }\n      return true;\n    }\n    return false;\n  }\n  function drawBuffers(renderTarget, framebuffer) {\n    let drawBuffers2 = defaultDrawbuffers;\n    let needsUpdate = false;\n    if (renderTarget) {\n      drawBuffers2 = currentDrawbuffers.get(framebuffer);\n      if (drawBuffers2 === void 0) {\n        drawBuffers2 = [];\n        currentDrawbuffers.set(framebuffer, drawBuffers2);\n      }\n      if (renderTarget.isWebGLMultipleRenderTargets) {\n        const textures = renderTarget.texture;\n        if (drawBuffers2.length !== textures.length || drawBuffers2[0] !== 36064) {\n          for (let i = 0, il = textures.length; i < il; i++) {\n            drawBuffers2[i] = 36064 + i;\n          }\n          drawBuffers2.length = textures.length;\n          needsUpdate = true;\n        }\n      } else {\n        if (drawBuffers2[0] !== 36064) {\n          drawBuffers2[0] = 36064;\n          needsUpdate = true;\n        }\n      }\n    } else {\n      if (drawBuffers2[0] !== 1029) {\n        drawBuffers2[0] = 1029;\n        needsUpdate = true;\n      }\n    }\n    if (needsUpdate) {\n      if (capabilities.isWebGL2) {\n        gl.drawBuffers(drawBuffers2);\n      } else {\n        extensions.get(\"WEBGL_draw_buffers\").drawBuffersWEBGL(drawBuffers2);\n      }\n    }\n  }\n  function useProgram(program) {\n    if (currentProgram !== program) {\n      gl.useProgram(program);\n      currentProgram = program;\n      return true;\n    }\n    return false;\n  }\n  const equationToGL = {\n    [AddEquation]: 32774,\n    [SubtractEquation]: 32778,\n    [ReverseSubtractEquation]: 32779\n  };\n  if (isWebGL2) {\n    equationToGL[MinEquation] = 32775;\n    equationToGL[MaxEquation] = 32776;\n  } else {\n    const extension = extensions.get(\"EXT_blend_minmax\");\n    if (extension !== null) {\n      equationToGL[MinEquation] = extension.MIN_EXT;\n      equationToGL[MaxEquation] = extension.MAX_EXT;\n    }\n  }\n  const factorToGL = {\n    [ZeroFactor]: 0,\n    [OneFactor]: 1,\n    [SrcColorFactor]: 768,\n    [SrcAlphaFactor]: 770,\n    [SrcAlphaSaturateFactor]: 776,\n    [DstColorFactor]: 774,\n    [DstAlphaFactor]: 772,\n    [OneMinusSrcColorFactor]: 769,\n    [OneMinusSrcAlphaFactor]: 771,\n    [OneMinusDstColorFactor]: 775,\n    [OneMinusDstAlphaFactor]: 773\n  };\n  function setBlending(blending, blendEquation, blendSrc, blendDst, blendEquationAlpha, blendSrcAlpha, blendDstAlpha, premultipliedAlpha) {\n    if (blending === NoBlending) {\n      if (currentBlendingEnabled === true) {\n        disable(3042);\n        currentBlendingEnabled = false;\n      }\n      return;\n    }\n    if (currentBlendingEnabled === false) {\n      enable(3042);\n      currentBlendingEnabled = true;\n    }\n    if (blending !== CustomBlending) {\n      if (blending !== currentBlending || premultipliedAlpha !== currentPremultipledAlpha) {\n        if (currentBlendEquation !== AddEquation || currentBlendEquationAlpha !== AddEquation) {\n          gl.blendEquation(32774);\n          currentBlendEquation = AddEquation;\n          currentBlendEquationAlpha = AddEquation;\n        }\n        if (premultipliedAlpha) {\n          switch (blending) {\n            case NormalBlending:\n              gl.blendFuncSeparate(1, 771, 1, 771);\n              break;\n            case AdditiveBlending:\n              gl.blendFunc(1, 1);\n              break;\n            case SubtractiveBlending:\n              gl.blendFuncSeparate(0, 769, 0, 1);\n              break;\n            case MultiplyBlending:\n              gl.blendFuncSeparate(0, 768, 0, 770);\n              break;\n            default:\n              console.error(\"THREE.WebGLState: Invalid blending: \", blending);\n              break;\n          }\n        } else {\n          switch (blending) {\n            case NormalBlending:\n              gl.blendFuncSeparate(770, 771, 1, 771);\n              break;\n            case AdditiveBlending:\n              gl.blendFunc(770, 1);\n              break;\n            case SubtractiveBlending:\n              gl.blendFuncSeparate(0, 769, 0, 1);\n              break;\n            case MultiplyBlending:\n              gl.blendFunc(0, 768);\n              break;\n            default:\n              console.error(\"THREE.WebGLState: Invalid blending: \", blending);\n              break;\n          }\n        }\n        currentBlendSrc = null;\n        currentBlendDst = null;\n        currentBlendSrcAlpha = null;\n        currentBlendDstAlpha = null;\n        currentBlending = blending;\n        currentPremultipledAlpha = premultipliedAlpha;\n      }\n      return;\n    }\n    blendEquationAlpha = blendEquationAlpha || blendEquation;\n    blendSrcAlpha = blendSrcAlpha || blendSrc;\n    blendDstAlpha = blendDstAlpha || blendDst;\n    if (blendEquation !== currentBlendEquation || blendEquationAlpha !== currentBlendEquationAlpha) {\n      gl.blendEquationSeparate(equationToGL[blendEquation], equationToGL[blendEquationAlpha]);\n      currentBlendEquation = blendEquation;\n      currentBlendEquationAlpha = blendEquationAlpha;\n    }\n    if (blendSrc !== currentBlendSrc || blendDst !== currentBlendDst || blendSrcAlpha !== currentBlendSrcAlpha || blendDstAlpha !== currentBlendDstAlpha) {\n      gl.blendFuncSeparate(factorToGL[blendSrc], factorToGL[blendDst], factorToGL[blendSrcAlpha], factorToGL[blendDstAlpha]);\n      currentBlendSrc = blendSrc;\n      currentBlendDst = blendDst;\n      currentBlendSrcAlpha = blendSrcAlpha;\n      currentBlendDstAlpha = blendDstAlpha;\n    }\n    currentBlending = blending;\n    currentPremultipledAlpha = null;\n  }\n  function setMaterial(material, frontFaceCW) {\n    material.side === DoubleSide ? disable(2884) : enable(2884);\n    let flipSided = material.side === BackSide;\n    if (frontFaceCW)\n      flipSided = !flipSided;\n    setFlipSided(flipSided);\n    material.blending === NormalBlending && material.transparent === false ? setBlending(NoBlending) : setBlending(material.blending, material.blendEquation, material.blendSrc, material.blendDst, material.blendEquationAlpha, material.blendSrcAlpha, material.blendDstAlpha, material.premultipliedAlpha);\n    depthBuffer.setFunc(material.depthFunc);\n    depthBuffer.setTest(material.depthTest);\n    depthBuffer.setMask(material.depthWrite);\n    colorBuffer.setMask(material.colorWrite);\n    const stencilWrite = material.stencilWrite;\n    stencilBuffer.setTest(stencilWrite);\n    if (stencilWrite) {\n      stencilBuffer.setMask(material.stencilWriteMask);\n      stencilBuffer.setFunc(material.stencilFunc, material.stencilRef, material.stencilFuncMask);\n      stencilBuffer.setOp(material.stencilFail, material.stencilZFail, material.stencilZPass);\n    }\n    setPolygonOffset(material.polygonOffset, material.polygonOffsetFactor, material.polygonOffsetUnits);\n    material.alphaToCoverage === true ? enable(32926) : disable(32926);\n  }\n  function setFlipSided(flipSided) {\n    if (currentFlipSided !== flipSided) {\n      if (flipSided) {\n        gl.frontFace(2304);\n      } else {\n        gl.frontFace(2305);\n      }\n      currentFlipSided = flipSided;\n    }\n  }\n  function setCullFace(cullFace) {\n    if (cullFace !== CullFaceNone) {\n      enable(2884);\n      if (cullFace !== currentCullFace) {\n        if (cullFace === CullFaceBack) {\n          gl.cullFace(1029);\n        } else if (cullFace === CullFaceFront) {\n          gl.cullFace(1028);\n        } else {\n          gl.cullFace(1032);\n        }\n      }\n    } else {\n      disable(2884);\n    }\n    currentCullFace = cullFace;\n  }\n  function setLineWidth(width) {\n    if (width !== currentLineWidth) {\n      if (lineWidthAvailable)\n        gl.lineWidth(width);\n      currentLineWidth = width;\n    }\n  }\n  function setPolygonOffset(polygonOffset, factor, units) {\n    if (polygonOffset) {\n      enable(32823);\n      if (currentPolygonOffsetFactor !== factor || currentPolygonOffsetUnits !== units) {\n        gl.polygonOffset(factor, units);\n        currentPolygonOffsetFactor = factor;\n        currentPolygonOffsetUnits = units;\n      }\n    } else {\n      disable(32823);\n    }\n  }\n  function setScissorTest(scissorTest) {\n    if (scissorTest) {\n      enable(3089);\n    } else {\n      disable(3089);\n    }\n  }\n  function activeTexture(webglSlot) {\n    if (webglSlot === void 0)\n      webglSlot = 33984 + maxTextures - 1;\n    if (currentTextureSlot !== webglSlot) {\n      gl.activeTexture(webglSlot);\n      currentTextureSlot = webglSlot;\n    }\n  }\n  function bindTexture(webglType, webglTexture) {\n    if (currentTextureSlot === null) {\n      activeTexture();\n    }\n    let boundTexture = currentBoundTextures[currentTextureSlot];\n    if (boundTexture === void 0) {\n      boundTexture = { type: void 0, texture: void 0 };\n      currentBoundTextures[currentTextureSlot] = boundTexture;\n    }\n    if (boundTexture.type !== webglType || boundTexture.texture !== webglTexture) {\n      gl.bindTexture(webglType, webglTexture || emptyTextures[webglType]);\n      boundTexture.type = webglType;\n      boundTexture.texture = webglTexture;\n    }\n  }\n  function unbindTexture() {\n    const boundTexture = currentBoundTextures[currentTextureSlot];\n    if (boundTexture !== void 0 && boundTexture.type !== void 0) {\n      gl.bindTexture(boundTexture.type, null);\n      boundTexture.type = void 0;\n      boundTexture.texture = void 0;\n    }\n  }\n  function compressedTexImage2D() {\n    try {\n      gl.compressedTexImage2D.apply(gl, arguments);\n    } catch (error) {\n      console.error(\"THREE.WebGLState:\", error);\n    }\n  }\n  function texSubImage2D() {\n    try {\n      gl.texSubImage2D.apply(gl, arguments);\n    } catch (error) {\n      console.error(\"THREE.WebGLState:\", error);\n    }\n  }\n  function texSubImage3D() {\n    try {\n      gl.texSubImage3D.apply(gl, arguments);\n    } catch (error) {\n      console.error(\"THREE.WebGLState:\", error);\n    }\n  }\n  function compressedTexSubImage2D() {\n    try {\n      gl.compressedTexSubImage2D.apply(gl, arguments);\n    } catch (error) {\n      console.error(\"THREE.WebGLState:\", error);\n    }\n  }\n  function texStorage2D() {\n    try {\n      gl.texStorage2D.apply(gl, arguments);\n    } catch (error) {\n      console.error(\"THREE.WebGLState:\", error);\n    }\n  }\n  function texStorage3D() {\n    try {\n      gl.texStorage3D.apply(gl, arguments);\n    } catch (error) {\n      console.error(\"THREE.WebGLState:\", error);\n    }\n  }\n  function texImage2D() {\n    try {\n      gl.texImage2D.apply(gl, arguments);\n    } catch (error) {\n      console.error(\"THREE.WebGLState:\", error);\n    }\n  }\n  function texImage3D() {\n    try {\n      gl.texImage3D.apply(gl, arguments);\n    } catch (error) {\n      console.error(\"THREE.WebGLState:\", error);\n    }\n  }\n  function scissor(scissor2) {\n    if (currentScissor.equals(scissor2) === false) {\n      gl.scissor(scissor2.x, scissor2.y, scissor2.z, scissor2.w);\n      currentScissor.copy(scissor2);\n    }\n  }\n  function viewport(viewport2) {\n    if (currentViewport.equals(viewport2) === false) {\n      gl.viewport(viewport2.x, viewport2.y, viewport2.z, viewport2.w);\n      currentViewport.copy(viewport2);\n    }\n  }\n  function updateUBOMapping(uniformsGroup, program) {\n    let mapping = uboProgamMap.get(program);\n    if (mapping === void 0) {\n      mapping = /* @__PURE__ */ new WeakMap();\n      uboProgamMap.set(program, mapping);\n    }\n    let blockIndex = mapping.get(uniformsGroup);\n    if (blockIndex === void 0) {\n      blockIndex = gl.getUniformBlockIndex(program, uniformsGroup.name);\n      mapping.set(uniformsGroup, blockIndex);\n    }\n  }\n  function uniformBlockBinding(uniformsGroup, program) {\n    const mapping = uboProgamMap.get(program);\n    const blockIndex = mapping.get(uniformsGroup);\n    if (uboBindings.get(uniformsGroup) !== blockIndex) {\n      gl.uniformBlockBinding(program, blockIndex, uniformsGroup.__bindingPointIndex);\n      uboBindings.set(uniformsGroup, blockIndex);\n    }\n  }\n  function reset() {\n    gl.disable(3042);\n    gl.disable(2884);\n    gl.disable(2929);\n    gl.disable(32823);\n    gl.disable(3089);\n    gl.disable(2960);\n    gl.disable(32926);\n    gl.blendEquation(32774);\n    gl.blendFunc(1, 0);\n    gl.blendFuncSeparate(1, 0, 1, 0);\n    gl.colorMask(true, true, true, true);\n    gl.clearColor(0, 0, 0, 0);\n    gl.depthMask(true);\n    gl.depthFunc(513);\n    gl.clearDepth(1);\n    gl.stencilMask(4294967295);\n    gl.stencilFunc(519, 0, 4294967295);\n    gl.stencilOp(7680, 7680, 7680);\n    gl.clearStencil(0);\n    gl.cullFace(1029);\n    gl.frontFace(2305);\n    gl.polygonOffset(0, 0);\n    gl.activeTexture(33984);\n    gl.bindFramebuffer(36160, null);\n    if (isWebGL2 === true) {\n      gl.bindFramebuffer(36009, null);\n      gl.bindFramebuffer(36008, null);\n    }\n    gl.useProgram(null);\n    gl.lineWidth(1);\n    gl.scissor(0, 0, gl.canvas.width, gl.canvas.height);\n    gl.viewport(0, 0, gl.canvas.width, gl.canvas.height);\n    enabledCapabilities = {};\n    currentTextureSlot = null;\n    currentBoundTextures = {};\n    currentBoundFramebuffers = {};\n    currentDrawbuffers = /* @__PURE__ */ new WeakMap();\n    defaultDrawbuffers = [];\n    currentProgram = null;\n    currentBlendingEnabled = false;\n    currentBlending = null;\n    currentBlendEquation = null;\n    currentBlendSrc = null;\n    currentBlendDst = null;\n    currentBlendEquationAlpha = null;\n    currentBlendSrcAlpha = null;\n    currentBlendDstAlpha = null;\n    currentPremultipledAlpha = false;\n    currentFlipSided = null;\n    currentCullFace = null;\n    currentLineWidth = null;\n    currentPolygonOffsetFactor = null;\n    currentPolygonOffsetUnits = null;\n    currentScissor.set(0, 0, gl.canvas.width, gl.canvas.height);\n    currentViewport.set(0, 0, gl.canvas.width, gl.canvas.height);\n    colorBuffer.reset();\n    depthBuffer.reset();\n    stencilBuffer.reset();\n  }\n  return {\n    buffers: {\n      color: colorBuffer,\n      depth: depthBuffer,\n      stencil: stencilBuffer\n    },\n    enable,\n    disable,\n    bindFramebuffer,\n    drawBuffers,\n    useProgram,\n    setBlending,\n    setMaterial,\n    setFlipSided,\n    setCullFace,\n    setLineWidth,\n    setPolygonOffset,\n    setScissorTest,\n    activeTexture,\n    bindTexture,\n    unbindTexture,\n    compressedTexImage2D,\n    texImage2D,\n    texImage3D,\n    updateUBOMapping,\n    uniformBlockBinding,\n    texStorage2D,\n    texStorage3D,\n    texSubImage2D,\n    texSubImage3D,\n    compressedTexSubImage2D,\n    scissor,\n    viewport,\n    reset\n  };\n}\nfunction WebGLTextures(_gl, extensions, state, properties, capabilities, utils, info) {\n  const isWebGL2 = capabilities.isWebGL2;\n  const maxTextures = capabilities.maxTextures;\n  const maxCubemapSize = capabilities.maxCubemapSize;\n  const maxTextureSize = capabilities.maxTextureSize;\n  const maxSamples = capabilities.maxSamples;\n  const multisampledRTTExt = extensions.has(\"WEBGL_multisampled_render_to_texture\") ? extensions.get(\"WEBGL_multisampled_render_to_texture\") : null;\n  const supportsInvalidateFramebuffer = /OculusBrowser/g.test(navigator.userAgent);\n  const _videoTextures = /* @__PURE__ */ new WeakMap();\n  let _canvas2;\n  const _sources = /* @__PURE__ */ new WeakMap();\n  let useOffscreenCanvas = false;\n  try {\n    useOffscreenCanvas = typeof OffscreenCanvas !== \"undefined\" && new OffscreenCanvas(1, 1).getContext(\"2d\") !== null;\n  } catch (err) {\n  }\n  function createCanvas(width, height) {\n    return useOffscreenCanvas ? new OffscreenCanvas(width, height) : createElementNS(\"canvas\");\n  }\n  function resizeImage(image, needsPowerOfTwo, needsNewCanvas, maxSize) {\n    let scale = 1;\n    if (image.width > maxSize || image.height > maxSize) {\n      scale = maxSize / Math.max(image.width, image.height);\n    }\n    if (scale < 1 || needsPowerOfTwo === true) {\n      if (typeof HTMLImageElement !== \"undefined\" && image instanceof HTMLImageElement || typeof HTMLCanvasElement !== \"undefined\" && image instanceof HTMLCanvasElement || typeof ImageBitmap !== \"undefined\" && image instanceof ImageBitmap) {\n        const floor = needsPowerOfTwo ? floorPowerOfTwo : Math.floor;\n        const width = floor(scale * image.width);\n        const height = floor(scale * image.height);\n        if (_canvas2 === void 0)\n          _canvas2 = createCanvas(width, height);\n        const canvas = needsNewCanvas ? createCanvas(width, height) : _canvas2;\n        canvas.width = width;\n        canvas.height = height;\n        const context = canvas.getContext(\"2d\");\n        context.drawImage(image, 0, 0, width, height);\n        console.warn(\"THREE.WebGLRenderer: Texture has been resized from (\" + image.width + \"x\" + image.height + \") to (\" + width + \"x\" + height + \").\");\n        return canvas;\n      } else {\n        if (\"data\" in image) {\n          console.warn(\"THREE.WebGLRenderer: Image in DataTexture is too big (\" + image.width + \"x\" + image.height + \").\");\n        }\n        return image;\n      }\n    }\n    return image;\n  }\n  function isPowerOfTwo$1(image) {\n    return isPowerOfTwo(image.width) && isPowerOfTwo(image.height);\n  }\n  function textureNeedsPowerOfTwo(texture) {\n    if (isWebGL2)\n      return false;\n    return texture.wrapS !== ClampToEdgeWrapping || texture.wrapT !== ClampToEdgeWrapping || texture.minFilter !== NearestFilter && texture.minFilter !== LinearFilter;\n  }\n  function textureNeedsGenerateMipmaps(texture, supportsMips) {\n    return texture.generateMipmaps && supportsMips && texture.minFilter !== NearestFilter && texture.minFilter !== LinearFilter;\n  }\n  function generateMipmap(target) {\n    _gl.generateMipmap(target);\n  }\n  function getInternalFormat(internalFormatName, glFormat, glType, encoding, isVideoTexture = false) {\n    if (isWebGL2 === false)\n      return glFormat;\n    if (internalFormatName !== null) {\n      if (_gl[internalFormatName] !== void 0)\n        return _gl[internalFormatName];\n      console.warn(\"THREE.WebGLRenderer: Attempt to use non-existing WebGL internal format '\" + internalFormatName + \"'\");\n    }\n    let internalFormat = glFormat;\n    if (glFormat === 6403) {\n      if (glType === 5126)\n        internalFormat = 33326;\n      if (glType === 5131)\n        internalFormat = 33325;\n      if (glType === 5121)\n        internalFormat = 33321;\n    }\n    if (glFormat === 33319) {\n      if (glType === 5126)\n        internalFormat = 33328;\n      if (glType === 5131)\n        internalFormat = 33327;\n      if (glType === 5121)\n        internalFormat = 33323;\n    }\n    if (glFormat === 6408) {\n      if (glType === 5126)\n        internalFormat = 34836;\n      if (glType === 5131)\n        internalFormat = 34842;\n      if (glType === 5121)\n        internalFormat = encoding === sRGBEncoding && isVideoTexture === false ? 35907 : 32856;\n      if (glType === 32819)\n        internalFormat = 32854;\n      if (glType === 32820)\n        internalFormat = 32855;\n    }\n    if (internalFormat === 33325 || internalFormat === 33326 || internalFormat === 33327 || internalFormat === 33328 || internalFormat === 34842 || internalFormat === 34836) {\n      extensions.get(\"EXT_color_buffer_float\");\n    }\n    return internalFormat;\n  }\n  function getMipLevels(texture, image, supportsMips) {\n    if (textureNeedsGenerateMipmaps(texture, supportsMips) === true || texture.isFramebufferTexture && texture.minFilter !== NearestFilter && texture.minFilter !== LinearFilter) {\n      return Math.log2(Math.max(image.width, image.height)) + 1;\n    } else if (texture.mipmaps !== void 0 && texture.mipmaps.length > 0) {\n      return texture.mipmaps.length;\n    } else if (texture.isCompressedTexture && Array.isArray(texture.image)) {\n      return image.mipmaps.length;\n    } else {\n      return 1;\n    }\n  }\n  function filterFallback(f) {\n    if (f === NearestFilter || f === NearestMipmapNearestFilter || f === NearestMipmapLinearFilter) {\n      return 9728;\n    }\n    return 9729;\n  }\n  function onTextureDispose(event) {\n    const texture = event.target;\n    texture.removeEventListener(\"dispose\", onTextureDispose);\n    deallocateTexture(texture);\n    if (texture.isVideoTexture) {\n      _videoTextures.delete(texture);\n    }\n  }\n  function onRenderTargetDispose(event) {\n    const renderTarget = event.target;\n    renderTarget.removeEventListener(\"dispose\", onRenderTargetDispose);\n    deallocateRenderTarget(renderTarget);\n  }\n  function deallocateTexture(texture) {\n    const textureProperties = properties.get(texture);\n    if (textureProperties.__webglInit === void 0)\n      return;\n    const source = texture.source;\n    const webglTextures = _sources.get(source);\n    if (webglTextures) {\n      const webglTexture = webglTextures[textureProperties.__cacheKey];\n      webglTexture.usedTimes--;\n      if (webglTexture.usedTimes === 0) {\n        deleteTexture(texture);\n      }\n      if (Object.keys(webglTextures).length === 0) {\n        _sources.delete(source);\n      }\n    }\n    properties.remove(texture);\n  }\n  function deleteTexture(texture) {\n    const textureProperties = properties.get(texture);\n    _gl.deleteTexture(textureProperties.__webglTexture);\n    const source = texture.source;\n    const webglTextures = _sources.get(source);\n    delete webglTextures[textureProperties.__cacheKey];\n    info.memory.textures--;\n  }\n  function deallocateRenderTarget(renderTarget) {\n    const texture = renderTarget.texture;\n    const renderTargetProperties = properties.get(renderTarget);\n    const textureProperties = properties.get(texture);\n    if (textureProperties.__webglTexture !== void 0) {\n      _gl.deleteTexture(textureProperties.__webglTexture);\n      info.memory.textures--;\n    }\n    if (renderTarget.depthTexture) {\n      renderTarget.depthTexture.dispose();\n    }\n    if (renderTarget.isWebGLCubeRenderTarget) {\n      for (let i = 0; i < 6; i++) {\n        _gl.deleteFramebuffer(renderTargetProperties.__webglFramebuffer[i]);\n        if (renderTargetProperties.__webglDepthbuffer)\n          _gl.deleteRenderbuffer(renderTargetProperties.__webglDepthbuffer[i]);\n      }\n    } else {\n      _gl.deleteFramebuffer(renderTargetProperties.__webglFramebuffer);\n      if (renderTargetProperties.__webglDepthbuffer)\n        _gl.deleteRenderbuffer(renderTargetProperties.__webglDepthbuffer);\n      if (renderTargetProperties.__webglMultisampledFramebuffer)\n        _gl.deleteFramebuffer(renderTargetProperties.__webglMultisampledFramebuffer);\n      if (renderTargetProperties.__webglColorRenderbuffer) {\n        for (let i = 0; i < renderTargetProperties.__webglColorRenderbuffer.length; i++) {\n          if (renderTargetProperties.__webglColorRenderbuffer[i])\n            _gl.deleteRenderbuffer(renderTargetProperties.__webglColorRenderbuffer[i]);\n        }\n      }\n      if (renderTargetProperties.__webglDepthRenderbuffer)\n        _gl.deleteRenderbuffer(renderTargetProperties.__webglDepthRenderbuffer);\n    }\n    if (renderTarget.isWebGLMultipleRenderTargets) {\n      for (let i = 0, il = texture.length; i < il; i++) {\n        const attachmentProperties = properties.get(texture[i]);\n        if (attachmentProperties.__webglTexture) {\n          _gl.deleteTexture(attachmentProperties.__webglTexture);\n          info.memory.textures--;\n        }\n        properties.remove(texture[i]);\n      }\n    }\n    properties.remove(texture);\n    properties.remove(renderTarget);\n  }\n  let textureUnits = 0;\n  function resetTextureUnits() {\n    textureUnits = 0;\n  }\n  function allocateTextureUnit() {\n    const textureUnit = textureUnits;\n    if (textureUnit >= maxTextures) {\n      console.warn(\"THREE.WebGLTextures: Trying to use \" + textureUnit + \" texture units while this GPU supports only \" + maxTextures);\n    }\n    textureUnits += 1;\n    return textureUnit;\n  }\n  function getTextureCacheKey(texture) {\n    const array = [];\n    array.push(texture.wrapS);\n    array.push(texture.wrapT);\n    array.push(texture.magFilter);\n    array.push(texture.minFilter);\n    array.push(texture.anisotropy);\n    array.push(texture.internalFormat);\n    array.push(texture.format);\n    array.push(texture.type);\n    array.push(texture.generateMipmaps);\n    array.push(texture.premultiplyAlpha);\n    array.push(texture.flipY);\n    array.push(texture.unpackAlignment);\n    array.push(texture.encoding);\n    return array.join();\n  }\n  function setTexture2D(texture, slot) {\n    const textureProperties = properties.get(texture);\n    if (texture.isVideoTexture)\n      updateVideoTexture(texture);\n    if (texture.isRenderTargetTexture === false && texture.version > 0 && textureProperties.__version !== texture.version) {\n      const image = texture.image;\n      if (image === null) {\n        console.warn(\"THREE.WebGLRenderer: Texture marked for update but no image data found.\");\n      } else if (image.complete === false) {\n        console.warn(\"THREE.WebGLRenderer: Texture marked for update but image is incomplete\");\n      } else {\n        uploadTexture(textureProperties, texture, slot);\n        return;\n      }\n    }\n    state.activeTexture(33984 + slot);\n    state.bindTexture(3553, textureProperties.__webglTexture);\n  }\n  function setTexture2DArray(texture, slot) {\n    const textureProperties = properties.get(texture);\n    if (texture.version > 0 && textureProperties.__version !== texture.version) {\n      uploadTexture(textureProperties, texture, slot);\n      return;\n    }\n    state.activeTexture(33984 + slot);\n    state.bindTexture(35866, textureProperties.__webglTexture);\n  }\n  function setTexture3D(texture, slot) {\n    const textureProperties = properties.get(texture);\n    if (texture.version > 0 && textureProperties.__version !== texture.version) {\n      uploadTexture(textureProperties, texture, slot);\n      return;\n    }\n    state.activeTexture(33984 + slot);\n    state.bindTexture(32879, textureProperties.__webglTexture);\n  }\n  function setTextureCube(texture, slot) {\n    const textureProperties = properties.get(texture);\n    if (texture.version > 0 && textureProperties.__version !== texture.version) {\n      uploadCubeTexture(textureProperties, texture, slot);\n      return;\n    }\n    state.activeTexture(33984 + slot);\n    state.bindTexture(34067, textureProperties.__webglTexture);\n  }\n  const wrappingToGL = {\n    [RepeatWrapping]: 10497,\n    [ClampToEdgeWrapping]: 33071,\n    [MirroredRepeatWrapping]: 33648\n  };\n  const filterToGL = {\n    [NearestFilter]: 9728,\n    [NearestMipmapNearestFilter]: 9984,\n    [NearestMipmapLinearFilter]: 9986,\n    [LinearFilter]: 9729,\n    [LinearMipmapNearestFilter]: 9985,\n    [LinearMipmapLinearFilter]: 9987\n  };\n  function setTextureParameters(textureType, texture, supportsMips) {\n    if (supportsMips) {\n      _gl.texParameteri(textureType, 10242, wrappingToGL[texture.wrapS]);\n      _gl.texParameteri(textureType, 10243, wrappingToGL[texture.wrapT]);\n      if (textureType === 32879 || textureType === 35866) {\n        _gl.texParameteri(textureType, 32882, wrappingToGL[texture.wrapR]);\n      }\n      _gl.texParameteri(textureType, 10240, filterToGL[texture.magFilter]);\n      _gl.texParameteri(textureType, 10241, filterToGL[texture.minFilter]);\n    } else {\n      _gl.texParameteri(textureType, 10242, 33071);\n      _gl.texParameteri(textureType, 10243, 33071);\n      if (textureType === 32879 || textureType === 35866) {\n        _gl.texParameteri(textureType, 32882, 33071);\n      }\n      if (texture.wrapS !== ClampToEdgeWrapping || texture.wrapT !== ClampToEdgeWrapping) {\n        console.warn(\"THREE.WebGLRenderer: Texture is not power of two. Texture.wrapS and Texture.wrapT should be set to THREE.ClampToEdgeWrapping.\");\n      }\n      _gl.texParameteri(textureType, 10240, filterFallback(texture.magFilter));\n      _gl.texParameteri(textureType, 10241, filterFallback(texture.minFilter));\n      if (texture.minFilter !== NearestFilter && texture.minFilter !== LinearFilter) {\n        console.warn(\"THREE.WebGLRenderer: Texture is not power of two. Texture.minFilter should be set to THREE.NearestFilter or THREE.LinearFilter.\");\n      }\n    }\n    if (extensions.has(\"EXT_texture_filter_anisotropic\") === true) {\n      const extension = extensions.get(\"EXT_texture_filter_anisotropic\");\n      if (texture.type === FloatType && extensions.has(\"OES_texture_float_linear\") === false)\n        return;\n      if (isWebGL2 === false && (texture.type === HalfFloatType && extensions.has(\"OES_texture_half_float_linear\") === false))\n        return;\n      if (texture.anisotropy > 1 || properties.get(texture).__currentAnisotropy) {\n        _gl.texParameterf(textureType, extension.TEXTURE_MAX_ANISOTROPY_EXT, Math.min(texture.anisotropy, capabilities.getMaxAnisotropy()));\n        properties.get(texture).__currentAnisotropy = texture.anisotropy;\n      }\n    }\n  }\n  function initTexture(textureProperties, texture) {\n    let forceUpload = false;\n    if (textureProperties.__webglInit === void 0) {\n      textureProperties.__webglInit = true;\n      texture.addEventListener(\"dispose\", onTextureDispose);\n    }\n    const source = texture.source;\n    let webglTextures = _sources.get(source);\n    if (webglTextures === void 0) {\n      webglTextures = {};\n      _sources.set(source, webglTextures);\n    }\n    const textureCacheKey = getTextureCacheKey(texture);\n    if (textureCacheKey !== textureProperties.__cacheKey) {\n      if (webglTextures[textureCacheKey] === void 0) {\n        webglTextures[textureCacheKey] = {\n          texture: _gl.createTexture(),\n          usedTimes: 0\n        };\n        info.memory.textures++;\n        forceUpload = true;\n      }\n      webglTextures[textureCacheKey].usedTimes++;\n      const webglTexture = webglTextures[textureProperties.__cacheKey];\n      if (webglTexture !== void 0) {\n        webglTextures[textureProperties.__cacheKey].usedTimes--;\n        if (webglTexture.usedTimes === 0) {\n          deleteTexture(texture);\n        }\n      }\n      textureProperties.__cacheKey = textureCacheKey;\n      textureProperties.__webglTexture = webglTextures[textureCacheKey].texture;\n    }\n    return forceUpload;\n  }\n  function uploadTexture(textureProperties, texture, slot) {\n    let textureType = 3553;\n    if (texture.isDataArrayTexture)\n      textureType = 35866;\n    if (texture.isData3DTexture)\n      textureType = 32879;\n    const forceUpload = initTexture(textureProperties, texture);\n    const source = texture.source;\n    state.activeTexture(33984 + slot);\n    state.bindTexture(textureType, textureProperties.__webglTexture);\n    if (source.version !== source.__currentVersion || forceUpload === true) {\n      _gl.pixelStorei(37440, texture.flipY);\n      _gl.pixelStorei(37441, texture.premultiplyAlpha);\n      _gl.pixelStorei(3317, texture.unpackAlignment);\n      _gl.pixelStorei(37443, 0);\n      const needsPowerOfTwo = textureNeedsPowerOfTwo(texture) && isPowerOfTwo$1(texture.image) === false;\n      let image = resizeImage(texture.image, needsPowerOfTwo, false, maxTextureSize);\n      image = verifyColorSpace(texture, image);\n      const supportsMips = isPowerOfTwo$1(image) || isWebGL2, glFormat = utils.convert(texture.format, texture.encoding);\n      let glType = utils.convert(texture.type), glInternalFormat = getInternalFormat(texture.internalFormat, glFormat, glType, texture.encoding, texture.isVideoTexture);\n      setTextureParameters(textureType, texture, supportsMips);\n      let mipmap;\n      const mipmaps = texture.mipmaps;\n      const useTexStorage = isWebGL2 && texture.isVideoTexture !== true;\n      const allocateMemory = source.__currentVersion === void 0 || forceUpload === true;\n      const levels = getMipLevels(texture, image, supportsMips);\n      if (texture.isDepthTexture) {\n        glInternalFormat = 6402;\n        if (isWebGL2) {\n          if (texture.type === FloatType) {\n            glInternalFormat = 36012;\n          } else if (texture.type === UnsignedIntType) {\n            glInternalFormat = 33190;\n          } else if (texture.type === UnsignedInt248Type) {\n            glInternalFormat = 35056;\n          } else {\n            glInternalFormat = 33189;\n          }\n        } else {\n          if (texture.type === FloatType) {\n            console.error(\"WebGLRenderer: Floating point depth texture requires WebGL2.\");\n          }\n        }\n        if (texture.format === DepthFormat && glInternalFormat === 6402) {\n          if (texture.type !== UnsignedShortType && texture.type !== UnsignedIntType) {\n            console.warn(\"THREE.WebGLRenderer: Use UnsignedShortType or UnsignedIntType for DepthFormat DepthTexture.\");\n            texture.type = UnsignedIntType;\n            glType = utils.convert(texture.type);\n          }\n        }\n        if (texture.format === DepthStencilFormat && glInternalFormat === 6402) {\n          glInternalFormat = 34041;\n          if (texture.type !== UnsignedInt248Type) {\n            console.warn(\"THREE.WebGLRenderer: Use UnsignedInt248Type for DepthStencilFormat DepthTexture.\");\n            texture.type = UnsignedInt248Type;\n            glType = utils.convert(texture.type);\n          }\n        }\n        if (allocateMemory) {\n          if (useTexStorage) {\n            state.texStorage2D(3553, 1, glInternalFormat, image.width, image.height);\n          } else {\n            state.texImage2D(3553, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, null);\n          }\n        }\n      } else if (texture.isDataTexture) {\n        if (mipmaps.length > 0 && supportsMips) {\n          if (useTexStorage && allocateMemory) {\n            state.texStorage2D(3553, levels, glInternalFormat, mipmaps[0].width, mipmaps[0].height);\n          }\n          for (let i = 0, il = mipmaps.length; i < il; i++) {\n            mipmap = mipmaps[i];\n            if (useTexStorage) {\n              state.texSubImage2D(3553, i, 0, 0, mipmap.width, mipmap.height, glFormat, glType, mipmap.data);\n            } else {\n              state.texImage2D(3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data);\n            }\n          }\n          texture.generateMipmaps = false;\n        } else {\n          if (useTexStorage) {\n            if (allocateMemory) {\n              state.texStorage2D(3553, levels, glInternalFormat, image.width, image.height);\n            }\n            state.texSubImage2D(3553, 0, 0, 0, image.width, image.height, glFormat, glType, image.data);\n          } else {\n            state.texImage2D(3553, 0, glInternalFormat, image.width, image.height, 0, glFormat, glType, image.data);\n          }\n        }\n      } else if (texture.isCompressedTexture) {\n        if (useTexStorage && allocateMemory) {\n          state.texStorage2D(3553, levels, glInternalFormat, mipmaps[0].width, mipmaps[0].height);\n        }\n        for (let i = 0, il = mipmaps.length; i < il; i++) {\n          mipmap = mipmaps[i];\n          if (texture.format !== RGBAFormat) {\n            if (glFormat !== null) {\n              if (useTexStorage) {\n                state.compressedTexSubImage2D(3553, i, 0, 0, mipmap.width, mipmap.height, glFormat, mipmap.data);\n              } else {\n                state.compressedTexImage2D(3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data);\n              }\n            } else {\n              console.warn(\"THREE.WebGLRenderer: Attempt to load unsupported compressed texture format in .uploadTexture()\");\n            }\n          } else {\n            if (useTexStorage) {\n              state.texSubImage2D(3553, i, 0, 0, mipmap.width, mipmap.height, glFormat, glType, mipmap.data);\n            } else {\n              state.texImage2D(3553, i, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data);\n            }\n          }\n        }\n      } else if (texture.isDataArrayTexture) {\n        if (useTexStorage) {\n          if (allocateMemory) {\n            state.texStorage3D(35866, levels, glInternalFormat, image.width, image.height, image.depth);\n          }\n          state.texSubImage3D(35866, 0, 0, 0, 0, image.width, image.height, image.depth, glFormat, glType, image.data);\n        } else {\n          state.texImage3D(35866, 0, glInternalFormat, image.width, image.height, image.depth, 0, glFormat, glType, image.data);\n        }\n      } else if (texture.isData3DTexture) {\n        if (useTexStorage) {\n          if (allocateMemory) {\n            state.texStorage3D(32879, levels, glInternalFormat, image.width, image.height, image.depth);\n          }\n          state.texSubImage3D(32879, 0, 0, 0, 0, image.width, image.height, image.depth, glFormat, glType, image.data);\n        } else {\n          state.texImage3D(32879, 0, glInternalFormat, image.width, image.height, image.depth, 0, glFormat, glType, image.data);\n        }\n      } else if (texture.isFramebufferTexture) {\n        if (allocateMemory) {\n          if (useTexStorage) {\n            state.texStorage2D(3553, levels, glInternalFormat, image.width, image.height);\n          } else {\n            let width = image.width, height = image.height;\n            for (let i = 0; i < levels; i++) {\n              state.texImage2D(3553, i, glInternalFormat, width, height, 0, glFormat, glType, null);\n              width >>= 1;\n              height >>= 1;\n            }\n          }\n        }\n      } else {\n        if (mipmaps.length > 0 && supportsMips) {\n          if (useTexStorage && allocateMemory) {\n            state.texStorage2D(3553, levels, glInternalFormat, mipmaps[0].width, mipmaps[0].height);\n          }\n          for (let i = 0, il = mipmaps.length; i < il; i++) {\n            mipmap = mipmaps[i];\n            if (useTexStorage) {\n              state.texSubImage2D(3553, i, 0, 0, glFormat, glType, mipmap);\n            } else {\n              state.texImage2D(3553, i, glInternalFormat, glFormat, glType, mipmap);\n            }\n          }\n          texture.generateMipmaps = false;\n        } else {\n          if (useTexStorage) {\n            if (allocateMemory) {\n              state.texStorage2D(3553, levels, glInternalFormat, image.width, image.height);\n            }\n            state.texSubImage2D(3553, 0, 0, 0, glFormat, glType, image);\n          } else {\n            state.texImage2D(3553, 0, glInternalFormat, glFormat, glType, image);\n          }\n        }\n      }\n      if (textureNeedsGenerateMipmaps(texture, supportsMips)) {\n        generateMipmap(textureType);\n      }\n      source.__currentVersion = source.version;\n      if (texture.onUpdate)\n        texture.onUpdate(texture);\n    }\n    textureProperties.__version = texture.version;\n  }\n  function uploadCubeTexture(textureProperties, texture, slot) {\n    if (texture.image.length !== 6)\n      return;\n    const forceUpload = initTexture(textureProperties, texture);\n    const source = texture.source;\n    state.activeTexture(33984 + slot);\n    state.bindTexture(34067, textureProperties.__webglTexture);\n    if (source.version !== source.__currentVersion || forceUpload === true) {\n      _gl.pixelStorei(37440, texture.flipY);\n      _gl.pixelStorei(37441, texture.premultiplyAlpha);\n      _gl.pixelStorei(3317, texture.unpackAlignment);\n      _gl.pixelStorei(37443, 0);\n      const isCompressed = texture.isCompressedTexture || texture.image[0].isCompressedTexture;\n      const isDataTexture = texture.image[0] && texture.image[0].isDataTexture;\n      const cubeImage = [];\n      for (let i = 0; i < 6; i++) {\n        if (!isCompressed && !isDataTexture) {\n          cubeImage[i] = resizeImage(texture.image[i], false, true, maxCubemapSize);\n        } else {\n          cubeImage[i] = isDataTexture ? texture.image[i].image : texture.image[i];\n        }\n        cubeImage[i] = verifyColorSpace(texture, cubeImage[i]);\n      }\n      const image = cubeImage[0], supportsMips = isPowerOfTwo$1(image) || isWebGL2, glFormat = utils.convert(texture.format, texture.encoding), glType = utils.convert(texture.type), glInternalFormat = getInternalFormat(texture.internalFormat, glFormat, glType, texture.encoding);\n      const useTexStorage = isWebGL2 && texture.isVideoTexture !== true;\n      const allocateMemory = source.__currentVersion === void 0 || forceUpload === true;\n      let levels = getMipLevels(texture, image, supportsMips);\n      setTextureParameters(34067, texture, supportsMips);\n      let mipmaps;\n      if (isCompressed) {\n        if (useTexStorage && allocateMemory) {\n          state.texStorage2D(34067, levels, glInternalFormat, image.width, image.height);\n        }\n        for (let i = 0; i < 6; i++) {\n          mipmaps = cubeImage[i].mipmaps;\n          for (let j = 0; j < mipmaps.length; j++) {\n            const mipmap = mipmaps[j];\n            if (texture.format !== RGBAFormat) {\n              if (glFormat !== null) {\n                if (useTexStorage) {\n                  state.compressedTexSubImage2D(34069 + i, j, 0, 0, mipmap.width, mipmap.height, glFormat, mipmap.data);\n                } else {\n                  state.compressedTexImage2D(34069 + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, mipmap.data);\n                }\n              } else {\n                console.warn(\"THREE.WebGLRenderer: Attempt to load unsupported compressed texture format in .setTextureCube()\");\n              }\n            } else {\n              if (useTexStorage) {\n                state.texSubImage2D(34069 + i, j, 0, 0, mipmap.width, mipmap.height, glFormat, glType, mipmap.data);\n              } else {\n                state.texImage2D(34069 + i, j, glInternalFormat, mipmap.width, mipmap.height, 0, glFormat, glType, mipmap.data);\n              }\n            }\n          }\n        }\n      } else {\n        mipmaps = texture.mipmaps;\n        if (useTexStorage && allocateMemory) {\n          if (mipmaps.length > 0)\n            levels++;\n          state.texStorage2D(34067, levels, glInternalFormat, cubeImage[0].width, cubeImage[0].height);\n        }\n        for (let i = 0; i < 6; i++) {\n          if (isDataTexture) {\n            if (useTexStorage) {\n              state.texSubImage2D(34069 + i, 0, 0, 0, cubeImage[i].width, cubeImage[i].height, glFormat, glType, cubeImage[i].data);\n            } else {\n              state.texImage2D(34069 + i, 0, glInternalFormat, cubeImage[i].width, cubeImage[i].height, 0, glFormat, glType, cubeImage[i].data);\n            }\n            for (let j = 0; j < mipmaps.length; j++) {\n              const mipmap = mipmaps[j];\n              const mipmapImage = mipmap.image[i].image;\n              if (useTexStorage) {\n                state.texSubImage2D(34069 + i, j + 1, 0, 0, mipmapImage.width, mipmapImage.height, glFormat, glType, mipmapImage.data);\n              } else {\n                state.texImage2D(34069 + i, j + 1, glInternalFormat, mipmapImage.width, mipmapImage.height, 0, glFormat, glType, mipmapImage.data);\n              }\n            }\n          } else {\n            if (useTexStorage) {\n              state.texSubImage2D(34069 + i, 0, 0, 0, glFormat, glType, cubeImage[i]);\n            } else {\n              state.texImage2D(34069 + i, 0, glInternalFormat, glFormat, glType, cubeImage[i]);\n            }\n            for (let j = 0; j < mipmaps.length; j++) {\n              const mipmap = mipmaps[j];\n              if (useTexStorage) {\n                state.texSubImage2D(34069 + i, j + 1, 0, 0, glFormat, glType, mipmap.image[i]);\n              } else {\n                state.texImage2D(34069 + i, j + 1, glInternalFormat, glFormat, glType, mipmap.image[i]);\n              }\n            }\n          }\n        }\n      }\n      if (textureNeedsGenerateMipmaps(texture, supportsMips)) {\n        generateMipmap(34067);\n      }\n      source.__currentVersion = source.version;\n      if (texture.onUpdate)\n        texture.onUpdate(texture);\n    }\n    textureProperties.__version = texture.version;\n  }\n  function setupFrameBufferTexture(framebuffer, renderTarget, texture, attachment, textureTarget) {\n    const glFormat = utils.convert(texture.format, texture.encoding);\n    const glType = utils.convert(texture.type);\n    const glInternalFormat = getInternalFormat(texture.internalFormat, glFormat, glType, texture.encoding);\n    const renderTargetProperties = properties.get(renderTarget);\n    if (!renderTargetProperties.__hasExternalTextures) {\n      if (textureTarget === 32879 || textureTarget === 35866) {\n        state.texImage3D(textureTarget, 0, glInternalFormat, renderTarget.width, renderTarget.height, renderTarget.depth, 0, glFormat, glType, null);\n      } else {\n        state.texImage2D(textureTarget, 0, glInternalFormat, renderTarget.width, renderTarget.height, 0, glFormat, glType, null);\n      }\n    }\n    state.bindFramebuffer(36160, framebuffer);\n    if (useMultisampledRTT(renderTarget)) {\n      multisampledRTTExt.framebufferTexture2DMultisampleEXT(36160, attachment, textureTarget, properties.get(texture).__webglTexture, 0, getRenderTargetSamples(renderTarget));\n    } else {\n      _gl.framebufferTexture2D(36160, attachment, textureTarget, properties.get(texture).__webglTexture, 0);\n    }\n    state.bindFramebuffer(36160, null);\n  }\n  function setupRenderBufferStorage(renderbuffer, renderTarget, isMultisample) {\n    _gl.bindRenderbuffer(36161, renderbuffer);\n    if (renderTarget.depthBuffer && !renderTarget.stencilBuffer) {\n      let glInternalFormat = 33189;\n      if (isMultisample || useMultisampledRTT(renderTarget)) {\n        const depthTexture = renderTarget.depthTexture;\n        if (depthTexture && depthTexture.isDepthTexture) {\n          if (depthTexture.type === FloatType) {\n            glInternalFormat = 36012;\n          } else if (depthTexture.type === UnsignedIntType) {\n            glInternalFormat = 33190;\n          }\n        }\n        const samples = getRenderTargetSamples(renderTarget);\n        if (useMultisampledRTT(renderTarget)) {\n          multisampledRTTExt.renderbufferStorageMultisampleEXT(36161, samples, glInternalFormat, renderTarget.width, renderTarget.height);\n        } else {\n          _gl.renderbufferStorageMultisample(36161, samples, glInternalFormat, renderTarget.width, renderTarget.height);\n        }\n      } else {\n        _gl.renderbufferStorage(36161, glInternalFormat, renderTarget.width, renderTarget.height);\n      }\n      _gl.framebufferRenderbuffer(36160, 36096, 36161, renderbuffer);\n    } else if (renderTarget.depthBuffer && renderTarget.stencilBuffer) {\n      const samples = getRenderTargetSamples(renderTarget);\n      if (isMultisample && useMultisampledRTT(renderTarget) === false) {\n        _gl.renderbufferStorageMultisample(36161, samples, 35056, renderTarget.width, renderTarget.height);\n      } else if (useMultisampledRTT(renderTarget)) {\n        multisampledRTTExt.renderbufferStorageMultisampleEXT(36161, samples, 35056, renderTarget.width, renderTarget.height);\n      } else {\n        _gl.renderbufferStorage(36161, 34041, renderTarget.width, renderTarget.height);\n      }\n      _gl.framebufferRenderbuffer(36160, 33306, 36161, renderbuffer);\n    } else {\n      const textures = renderTarget.isWebGLMultipleRenderTargets === true ? renderTarget.texture : [renderTarget.texture];\n      for (let i = 0; i < textures.length; i++) {\n        const texture = textures[i];\n        const glFormat = utils.convert(texture.format, texture.encoding);\n        const glType = utils.convert(texture.type);\n        const glInternalFormat = getInternalFormat(texture.internalFormat, glFormat, glType, texture.encoding);\n        const samples = getRenderTargetSamples(renderTarget);\n        if (isMultisample && useMultisampledRTT(renderTarget) === false) {\n          _gl.renderbufferStorageMultisample(36161, samples, glInternalFormat, renderTarget.width, renderTarget.height);\n        } else if (useMultisampledRTT(renderTarget)) {\n          multisampledRTTExt.renderbufferStorageMultisampleEXT(36161, samples, glInternalFormat, renderTarget.width, renderTarget.height);\n        } else {\n          _gl.renderbufferStorage(36161, glInternalFormat, renderTarget.width, renderTarget.height);\n        }\n      }\n    }\n    _gl.bindRenderbuffer(36161, null);\n  }\n  function setupDepthTexture(framebuffer, renderTarget) {\n    const isCube = renderTarget && renderTarget.isWebGLCubeRenderTarget;\n    if (isCube)\n      throw new Error(\"Depth Texture with cube render targets is not supported\");\n    state.bindFramebuffer(36160, framebuffer);\n    if (!(renderTarget.depthTexture && renderTarget.depthTexture.isDepthTexture)) {\n      throw new Error(\"renderTarget.depthTexture must be an instance of THREE.DepthTexture\");\n    }\n    if (!properties.get(renderTarget.depthTexture).__webglTexture || renderTarget.depthTexture.image.width !== renderTarget.width || renderTarget.depthTexture.image.height !== renderTarget.height) {\n      renderTarget.depthTexture.image.width = renderTarget.width;\n      renderTarget.depthTexture.image.height = renderTarget.height;\n      renderTarget.depthTexture.needsUpdate = true;\n    }\n    setTexture2D(renderTarget.depthTexture, 0);\n    const webglDepthTexture = properties.get(renderTarget.depthTexture).__webglTexture;\n    const samples = getRenderTargetSamples(renderTarget);\n    if (renderTarget.depthTexture.format === DepthFormat) {\n      if (useMultisampledRTT(renderTarget)) {\n        multisampledRTTExt.framebufferTexture2DMultisampleEXT(36160, 36096, 3553, webglDepthTexture, 0, samples);\n      } else {\n        _gl.framebufferTexture2D(36160, 36096, 3553, webglDepthTexture, 0);\n      }\n    } else if (renderTarget.depthTexture.format === DepthStencilFormat) {\n      if (useMultisampledRTT(renderTarget)) {\n        multisampledRTTExt.framebufferTexture2DMultisampleEXT(36160, 33306, 3553, webglDepthTexture, 0, samples);\n      } else {\n        _gl.framebufferTexture2D(36160, 33306, 3553, webglDepthTexture, 0);\n      }\n    } else {\n      throw new Error(\"Unknown depthTexture format\");\n    }\n  }\n  function setupDepthRenderbuffer(renderTarget) {\n    const renderTargetProperties = properties.get(renderTarget);\n    const isCube = renderTarget.isWebGLCubeRenderTarget === true;\n    if (renderTarget.depthTexture && !renderTargetProperties.__autoAllocateDepthBuffer) {\n      if (isCube)\n        throw new Error(\"target.depthTexture not supported in Cube render targets\");\n      setupDepthTexture(renderTargetProperties.__webglFramebuffer, renderTarget);\n    } else {\n      if (isCube) {\n        renderTargetProperties.__webglDepthbuffer = [];\n        for (let i = 0; i < 6; i++) {\n          state.bindFramebuffer(36160, renderTargetProperties.__webglFramebuffer[i]);\n          renderTargetProperties.__webglDepthbuffer[i] = _gl.createRenderbuffer();\n          setupRenderBufferStorage(renderTargetProperties.__webglDepthbuffer[i], renderTarget, false);\n        }\n      } else {\n        state.bindFramebuffer(36160, renderTargetProperties.__webglFramebuffer);\n        renderTargetProperties.__webglDepthbuffer = _gl.createRenderbuffer();\n        setupRenderBufferStorage(renderTargetProperties.__webglDepthbuffer, renderTarget, false);\n      }\n    }\n    state.bindFramebuffer(36160, null);\n  }\n  function rebindTextures(renderTarget, colorTexture, depthTexture) {\n    const renderTargetProperties = properties.get(renderTarget);\n    if (colorTexture !== void 0) {\n      setupFrameBufferTexture(renderTargetProperties.__webglFramebuffer, renderTarget, renderTarget.texture, 36064, 3553);\n    }\n    if (depthTexture !== void 0) {\n      setupDepthRenderbuffer(renderTarget);\n    }\n  }\n  function setupRenderTarget(renderTarget) {\n    const texture = renderTarget.texture;\n    const renderTargetProperties = properties.get(renderTarget);\n    const textureProperties = properties.get(texture);\n    renderTarget.addEventListener(\"dispose\", onRenderTargetDispose);\n    if (renderTarget.isWebGLMultipleRenderTargets !== true) {\n      if (textureProperties.__webglTexture === void 0) {\n        textureProperties.__webglTexture = _gl.createTexture();\n      }\n      textureProperties.__version = texture.version;\n      info.memory.textures++;\n    }\n    const isCube = renderTarget.isWebGLCubeRenderTarget === true;\n    const isMultipleRenderTargets = renderTarget.isWebGLMultipleRenderTargets === true;\n    const supportsMips = isPowerOfTwo$1(renderTarget) || isWebGL2;\n    if (isCube) {\n      renderTargetProperties.__webglFramebuffer = [];\n      for (let i = 0; i < 6; i++) {\n        renderTargetProperties.__webglFramebuffer[i] = _gl.createFramebuffer();\n      }\n    } else {\n      renderTargetProperties.__webglFramebuffer = _gl.createFramebuffer();\n      if (isMultipleRenderTargets) {\n        if (capabilities.drawBuffers) {\n          const textures = renderTarget.texture;\n          for (let i = 0, il = textures.length; i < il; i++) {\n            const attachmentProperties = properties.get(textures[i]);\n            if (attachmentProperties.__webglTexture === void 0) {\n              attachmentProperties.__webglTexture = _gl.createTexture();\n              info.memory.textures++;\n            }\n          }\n        } else {\n          console.warn(\"THREE.WebGLRenderer: WebGLMultipleRenderTargets can only be used with WebGL2 or WEBGL_draw_buffers extension.\");\n        }\n      }\n      if (isWebGL2 && renderTarget.samples > 0 && useMultisampledRTT(renderTarget) === false) {\n        const textures = isMultipleRenderTargets ? texture : [texture];\n        renderTargetProperties.__webglMultisampledFramebuffer = _gl.createFramebuffer();\n        renderTargetProperties.__webglColorRenderbuffer = [];\n        state.bindFramebuffer(36160, renderTargetProperties.__webglMultisampledFramebuffer);\n        for (let i = 0; i < textures.length; i++) {\n          const texture2 = textures[i];\n          renderTargetProperties.__webglColorRenderbuffer[i] = _gl.createRenderbuffer();\n          _gl.bindRenderbuffer(36161, renderTargetProperties.__webglColorRenderbuffer[i]);\n          const glFormat = utils.convert(texture2.format, texture2.encoding);\n          const glType = utils.convert(texture2.type);\n          const glInternalFormat = getInternalFormat(texture2.internalFormat, glFormat, glType, texture2.encoding);\n          const samples = getRenderTargetSamples(renderTarget);\n          _gl.renderbufferStorageMultisample(36161, samples, glInternalFormat, renderTarget.width, renderTarget.height);\n          _gl.framebufferRenderbuffer(36160, 36064 + i, 36161, renderTargetProperties.__webglColorRenderbuffer[i]);\n        }\n        _gl.bindRenderbuffer(36161, null);\n        if (renderTarget.depthBuffer) {\n          renderTargetProperties.__webglDepthRenderbuffer = _gl.createRenderbuffer();\n          setupRenderBufferStorage(renderTargetProperties.__webglDepthRenderbuffer, renderTarget, true);\n        }\n        state.bindFramebuffer(36160, null);\n      }\n    }\n    if (isCube) {\n      state.bindTexture(34067, textureProperties.__webglTexture);\n      setTextureParameters(34067, texture, supportsMips);\n      for (let i = 0; i < 6; i++) {\n        setupFrameBufferTexture(renderTargetProperties.__webglFramebuffer[i], renderTarget, texture, 36064, 34069 + i);\n      }\n      if (textureNeedsGenerateMipmaps(texture, supportsMips)) {\n        generateMipmap(34067);\n      }\n      state.unbindTexture();\n    } else if (isMultipleRenderTargets) {\n      const textures = renderTarget.texture;\n      for (let i = 0, il = textures.length; i < il; i++) {\n        const attachment = textures[i];\n        const attachmentProperties = properties.get(attachment);\n        state.bindTexture(3553, attachmentProperties.__webglTexture);\n        setTextureParameters(3553, attachment, supportsMips);\n        setupFrameBufferTexture(renderTargetProperties.__webglFramebuffer, renderTarget, attachment, 36064 + i, 3553);\n        if (textureNeedsGenerateMipmaps(attachment, supportsMips)) {\n          generateMipmap(3553);\n        }\n      }\n      state.unbindTexture();\n    } else {\n      let glTextureType = 3553;\n      if (renderTarget.isWebGL3DRenderTarget || renderTarget.isWebGLArrayRenderTarget) {\n        if (isWebGL2) {\n          glTextureType = renderTarget.isWebGL3DRenderTarget ? 32879 : 35866;\n        } else {\n          console.error(\"THREE.WebGLTextures: THREE.Data3DTexture and THREE.DataArrayTexture only supported with WebGL2.\");\n        }\n      }\n      state.bindTexture(glTextureType, textureProperties.__webglTexture);\n      setTextureParameters(glTextureType, texture, supportsMips);\n      setupFrameBufferTexture(renderTargetProperties.__webglFramebuffer, renderTarget, texture, 36064, glTextureType);\n      if (textureNeedsGenerateMipmaps(texture, supportsMips)) {\n        generateMipmap(glTextureType);\n      }\n      state.unbindTexture();\n    }\n    if (renderTarget.depthBuffer) {\n      setupDepthRenderbuffer(renderTarget);\n    }\n  }\n  function updateRenderTargetMipmap(renderTarget) {\n    const supportsMips = isPowerOfTwo$1(renderTarget) || isWebGL2;\n    const textures = renderTarget.isWebGLMultipleRenderTargets === true ? renderTarget.texture : [renderTarget.texture];\n    for (let i = 0, il = textures.length; i < il; i++) {\n      const texture = textures[i];\n      if (textureNeedsGenerateMipmaps(texture, supportsMips)) {\n        const target = renderTarget.isWebGLCubeRenderTarget ? 34067 : 3553;\n        const webglTexture = properties.get(texture).__webglTexture;\n        state.bindTexture(target, webglTexture);\n        generateMipmap(target);\n        state.unbindTexture();\n      }\n    }\n  }\n  function updateMultisampleRenderTarget(renderTarget) {\n    if (isWebGL2 && renderTarget.samples > 0 && useMultisampledRTT(renderTarget) === false) {\n      const textures = renderTarget.isWebGLMultipleRenderTargets ? renderTarget.texture : [renderTarget.texture];\n      const width = renderTarget.width;\n      const height = renderTarget.height;\n      let mask = 16384;\n      const invalidationArray = [];\n      const depthStyle = renderTarget.stencilBuffer ? 33306 : 36096;\n      const renderTargetProperties = properties.get(renderTarget);\n      const isMultipleRenderTargets = renderTarget.isWebGLMultipleRenderTargets === true;\n      if (isMultipleRenderTargets) {\n        for (let i = 0; i < textures.length; i++) {\n          state.bindFramebuffer(36160, renderTargetProperties.__webglMultisampledFramebuffer);\n          _gl.framebufferRenderbuffer(36160, 36064 + i, 36161, null);\n          state.bindFramebuffer(36160, renderTargetProperties.__webglFramebuffer);\n          _gl.framebufferTexture2D(36009, 36064 + i, 3553, null, 0);\n        }\n      }\n      state.bindFramebuffer(36008, renderTargetProperties.__webglMultisampledFramebuffer);\n      state.bindFramebuffer(36009, renderTargetProperties.__webglFramebuffer);\n      for (let i = 0; i < textures.length; i++) {\n        invalidationArray.push(36064 + i);\n        if (renderTarget.depthBuffer) {\n          invalidationArray.push(depthStyle);\n        }\n        const ignoreDepthValues = renderTargetProperties.__ignoreDepthValues !== void 0 ? renderTargetProperties.__ignoreDepthValues : false;\n        if (ignoreDepthValues === false) {\n          if (renderTarget.depthBuffer)\n            mask |= 256;\n          if (renderTarget.stencilBuffer)\n            mask |= 1024;\n        }\n        if (isMultipleRenderTargets) {\n          _gl.framebufferRenderbuffer(36008, 36064, 36161, renderTargetProperties.__webglColorRenderbuffer[i]);\n        }\n        if (ignoreDepthValues === true) {\n          _gl.invalidateFramebuffer(36008, [depthStyle]);\n          _gl.invalidateFramebuffer(36009, [depthStyle]);\n        }\n        if (isMultipleRenderTargets) {\n          const webglTexture = properties.get(textures[i]).__webglTexture;\n          _gl.framebufferTexture2D(36009, 36064, 3553, webglTexture, 0);\n        }\n        _gl.blitFramebuffer(0, 0, width, height, 0, 0, width, height, mask, 9728);\n        if (supportsInvalidateFramebuffer) {\n          _gl.invalidateFramebuffer(36008, invalidationArray);\n        }\n      }\n      state.bindFramebuffer(36008, null);\n      state.bindFramebuffer(36009, null);\n      if (isMultipleRenderTargets) {\n        for (let i = 0; i < textures.length; i++) {\n          state.bindFramebuffer(36160, renderTargetProperties.__webglMultisampledFramebuffer);\n          _gl.framebufferRenderbuffer(36160, 36064 + i, 36161, renderTargetProperties.__webglColorRenderbuffer[i]);\n          const webglTexture = properties.get(textures[i]).__webglTexture;\n          state.bindFramebuffer(36160, renderTargetProperties.__webglFramebuffer);\n          _gl.framebufferTexture2D(36009, 36064 + i, 3553, webglTexture, 0);\n        }\n      }\n      state.bindFramebuffer(36009, renderTargetProperties.__webglMultisampledFramebuffer);\n    }\n  }\n  function getRenderTargetSamples(renderTarget) {\n    return Math.min(maxSamples, renderTarget.samples);\n  }\n  function useMultisampledRTT(renderTarget) {\n    const renderTargetProperties = properties.get(renderTarget);\n    return isWebGL2 && renderTarget.samples > 0 && extensions.has(\"WEBGL_multisampled_render_to_texture\") === true && renderTargetProperties.__useRenderToTexture !== false;\n  }\n  function updateVideoTexture(texture) {\n    const frame = info.render.frame;\n    if (_videoTextures.get(texture) !== frame) {\n      _videoTextures.set(texture, frame);\n      texture.update();\n    }\n  }\n  function verifyColorSpace(texture, image) {\n    const encoding = texture.encoding;\n    const format = texture.format;\n    const type = texture.type;\n    if (texture.isCompressedTexture === true || texture.isVideoTexture === true || texture.format === _SRGBAFormat)\n      return image;\n    if (encoding !== LinearEncoding) {\n      if (encoding === sRGBEncoding) {\n        if (isWebGL2 === false) {\n          if (extensions.has(\"EXT_sRGB\") === true && format === RGBAFormat) {\n            texture.format = _SRGBAFormat;\n            texture.minFilter = LinearFilter;\n            texture.generateMipmaps = false;\n          } else {\n            image = ImageUtils.sRGBToLinear(image);\n          }\n        } else {\n          if (format !== RGBAFormat || type !== UnsignedByteType) {\n            console.warn(\"THREE.WebGLTextures: sRGB encoded textures have to use RGBAFormat and UnsignedByteType.\");\n          }\n        }\n      } else {\n        console.error(\"THREE.WebGLTextures: Unsupported texture encoding:\", encoding);\n      }\n    }\n    return image;\n  }\n  this.allocateTextureUnit = allocateTextureUnit;\n  this.resetTextureUnits = resetTextureUnits;\n  this.setTexture2D = setTexture2D;\n  this.setTexture2DArray = setTexture2DArray;\n  this.setTexture3D = setTexture3D;\n  this.setTextureCube = setTextureCube;\n  this.rebindTextures = rebindTextures;\n  this.setupRenderTarget = setupRenderTarget;\n  this.updateRenderTargetMipmap = updateRenderTargetMipmap;\n  this.updateMultisampleRenderTarget = updateMultisampleRenderTarget;\n  this.setupDepthRenderbuffer = setupDepthRenderbuffer;\n  this.setupFrameBufferTexture = setupFrameBufferTexture;\n  this.useMultisampledRTT = useMultisampledRTT;\n}\nfunction WebGLUtils(gl, extensions, capabilities) {\n  const isWebGL2 = capabilities.isWebGL2;\n  function convert(p, encoding = null) {\n    let extension;\n    if (p === UnsignedByteType)\n      return 5121;\n    if (p === UnsignedShort4444Type)\n      return 32819;\n    if (p === UnsignedShort5551Type)\n      return 32820;\n    if (p === ByteType)\n      return 5120;\n    if (p === ShortType)\n      return 5122;\n    if (p === UnsignedShortType)\n      return 5123;\n    if (p === IntType)\n      return 5124;\n    if (p === UnsignedIntType)\n      return 5125;\n    if (p === FloatType)\n      return 5126;\n    if (p === HalfFloatType) {\n      if (isWebGL2)\n        return 5131;\n      extension = extensions.get(\"OES_texture_half_float\");\n      if (extension !== null) {\n        return extension.HALF_FLOAT_OES;\n      } else {\n        return null;\n      }\n    }\n    if (p === AlphaFormat)\n      return 6406;\n    if (p === RGBAFormat)\n      return 6408;\n    if (p === LuminanceFormat)\n      return 6409;\n    if (p === LuminanceAlphaFormat)\n      return 6410;\n    if (p === DepthFormat)\n      return 6402;\n    if (p === DepthStencilFormat)\n      return 34041;\n    if (p === RedFormat)\n      return 6403;\n    if (p === RGBFormat) {\n      console.warn(\"THREE.WebGLRenderer: THREE.RGBFormat has been removed. Use THREE.RGBAFormat instead. https://github.com/mrdoob/three.js/pull/23228\");\n      return 6408;\n    }\n    if (p === _SRGBAFormat) {\n      extension = extensions.get(\"EXT_sRGB\");\n      if (extension !== null) {\n        return extension.SRGB_ALPHA_EXT;\n      } else {\n        return null;\n      }\n    }\n    if (p === RedIntegerFormat)\n      return 36244;\n    if (p === RGFormat)\n      return 33319;\n    if (p === RGIntegerFormat)\n      return 33320;\n    if (p === RGBAIntegerFormat)\n      return 36249;\n    if (p === RGB_S3TC_DXT1_Format || p === RGBA_S3TC_DXT1_Format || p === RGBA_S3TC_DXT3_Format || p === RGBA_S3TC_DXT5_Format) {\n      if (encoding === sRGBEncoding) {\n        extension = extensions.get(\"WEBGL_compressed_texture_s3tc_srgb\");\n        if (extension !== null) {\n          if (p === RGB_S3TC_DXT1_Format)\n            return extension.COMPRESSED_SRGB_S3TC_DXT1_EXT;\n          if (p === RGBA_S3TC_DXT1_Format)\n            return extension.COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT;\n          if (p === RGBA_S3TC_DXT3_Format)\n            return extension.COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT;\n          if (p === RGBA_S3TC_DXT5_Format)\n            return extension.COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT;\n        } else {\n          return null;\n        }\n      } else {\n        extension = extensions.get(\"WEBGL_compressed_texture_s3tc\");\n        if (extension !== null) {\n          if (p === RGB_S3TC_DXT1_Format)\n            return extension.COMPRESSED_RGB_S3TC_DXT1_EXT;\n          if (p === RGBA_S3TC_DXT1_Format)\n            return extension.COMPRESSED_RGBA_S3TC_DXT1_EXT;\n          if (p === RGBA_S3TC_DXT3_Format)\n            return extension.COMPRESSED_RGBA_S3TC_DXT3_EXT;\n          if (p === RGBA_S3TC_DXT5_Format)\n            return extension.COMPRESSED_RGBA_S3TC_DXT5_EXT;\n        } else {\n          return null;\n        }\n      }\n    }\n    if (p === RGB_PVRTC_4BPPV1_Format || p === RGB_PVRTC_2BPPV1_Format || p === RGBA_PVRTC_4BPPV1_Format || p === RGBA_PVRTC_2BPPV1_Format) {\n      extension = extensions.get(\"WEBGL_compressed_texture_pvrtc\");\n      if (extension !== null) {\n        if (p === RGB_PVRTC_4BPPV1_Format)\n          return extension.COMPRESSED_RGB_PVRTC_4BPPV1_IMG;\n        if (p === RGB_PVRTC_2BPPV1_Format)\n          return extension.COMPRESSED_RGB_PVRTC_2BPPV1_IMG;\n        if (p === RGBA_PVRTC_4BPPV1_Format)\n          return extension.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG;\n        if (p === RGBA_PVRTC_2BPPV1_Format)\n          return extension.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG;\n      } else {\n        return null;\n      }\n    }\n    if (p === RGB_ETC1_Format) {\n      extension = extensions.get(\"WEBGL_compressed_texture_etc1\");\n      if (extension !== null) {\n        return extension.COMPRESSED_RGB_ETC1_WEBGL;\n      } else {\n        return null;\n      }\n    }\n    if (p === RGB_ETC2_Format || p === RGBA_ETC2_EAC_Format) {\n      extension = extensions.get(\"WEBGL_compressed_texture_etc\");\n      if (extension !== null) {\n        if (p === RGB_ETC2_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ETC2 : extension.COMPRESSED_RGB8_ETC2;\n        if (p === RGBA_ETC2_EAC_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ETC2_EAC : extension.COMPRESSED_RGBA8_ETC2_EAC;\n      } else {\n        return null;\n      }\n    }\n    if (p === RGBA_ASTC_4x4_Format || p === RGBA_ASTC_5x4_Format || p === RGBA_ASTC_5x5_Format || p === RGBA_ASTC_6x5_Format || p === RGBA_ASTC_6x6_Format || p === RGBA_ASTC_8x5_Format || p === RGBA_ASTC_8x6_Format || p === RGBA_ASTC_8x8_Format || p === RGBA_ASTC_10x5_Format || p === RGBA_ASTC_10x6_Format || p === RGBA_ASTC_10x8_Format || p === RGBA_ASTC_10x10_Format || p === RGBA_ASTC_12x10_Format || p === RGBA_ASTC_12x12_Format) {\n      extension = extensions.get(\"WEBGL_compressed_texture_astc\");\n      if (extension !== null) {\n        if (p === RGBA_ASTC_4x4_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR : extension.COMPRESSED_RGBA_ASTC_4x4_KHR;\n        if (p === RGBA_ASTC_5x4_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR : extension.COMPRESSED_RGBA_ASTC_5x4_KHR;\n        if (p === RGBA_ASTC_5x5_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR : extension.COMPRESSED_RGBA_ASTC_5x5_KHR;\n        if (p === RGBA_ASTC_6x5_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR : extension.COMPRESSED_RGBA_ASTC_6x5_KHR;\n        if (p === RGBA_ASTC_6x6_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR : extension.COMPRESSED_RGBA_ASTC_6x6_KHR;\n        if (p === RGBA_ASTC_8x5_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR : extension.COMPRESSED_RGBA_ASTC_8x5_KHR;\n        if (p === RGBA_ASTC_8x6_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR : extension.COMPRESSED_RGBA_ASTC_8x6_KHR;\n        if (p === RGBA_ASTC_8x8_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR : extension.COMPRESSED_RGBA_ASTC_8x8_KHR;\n        if (p === RGBA_ASTC_10x5_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR : extension.COMPRESSED_RGBA_ASTC_10x5_KHR;\n        if (p === RGBA_ASTC_10x6_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR : extension.COMPRESSED_RGBA_ASTC_10x6_KHR;\n        if (p === RGBA_ASTC_10x8_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR : extension.COMPRESSED_RGBA_ASTC_10x8_KHR;\n        if (p === RGBA_ASTC_10x10_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR : extension.COMPRESSED_RGBA_ASTC_10x10_KHR;\n        if (p === RGBA_ASTC_12x10_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR : extension.COMPRESSED_RGBA_ASTC_12x10_KHR;\n        if (p === RGBA_ASTC_12x12_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR : extension.COMPRESSED_RGBA_ASTC_12x12_KHR;\n      } else {\n        return null;\n      }\n    }\n    if (p === RGBA_BPTC_Format) {\n      extension = extensions.get(\"EXT_texture_compression_bptc\");\n      if (extension !== null) {\n        if (p === RGBA_BPTC_Format)\n          return encoding === sRGBEncoding ? extension.COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT : extension.COMPRESSED_RGBA_BPTC_UNORM_EXT;\n      } else {\n        return null;\n      }\n    }\n    if (p === UnsignedInt248Type) {\n      if (isWebGL2)\n        return 34042;\n      extension = extensions.get(\"WEBGL_depth_texture\");\n      if (extension !== null) {\n        return extension.UNSIGNED_INT_24_8_WEBGL;\n      } else {\n        return null;\n      }\n    }\n    return gl[p] !== void 0 ? gl[p] : null;\n  }\n  return { convert };\n}\nclass ArrayCamera extends PerspectiveCamera {\n  constructor(array = []) {\n    super();\n    this.isArrayCamera = true;\n    this.cameras = array;\n  }\n}\nclass Group extends Object3D {\n  constructor() {\n    super();\n    this.isGroup = true;\n    this.type = \"Group\";\n  }\n}\nconst _moveEvent = { type: \"move\" };\nclass WebXRController {\n  constructor() {\n    this._targetRay = null;\n    this._grip = null;\n    this._hand = null;\n  }\n  getHandSpace() {\n    if (this._hand === null) {\n      this._hand = new Group();\n      this._hand.matrixAutoUpdate = false;\n      this._hand.visible = false;\n      this._hand.joints = {};\n      this._hand.inputState = { pinching: false };\n    }\n    return this._hand;\n  }\n  getTargetRaySpace() {\n    if (this._targetRay === null) {\n      this._targetRay = new Group();\n      this._targetRay.matrixAutoUpdate = false;\n      this._targetRay.visible = false;\n      this._targetRay.hasLinearVelocity = false;\n      this._targetRay.linearVelocity = new Vector3();\n      this._targetRay.hasAngularVelocity = false;\n      this._targetRay.angularVelocity = new Vector3();\n    }\n    return this._targetRay;\n  }\n  getGripSpace() {\n    if (this._grip === null) {\n      this._grip = new Group();\n      this._grip.matrixAutoUpdate = false;\n      this._grip.visible = false;\n      this._grip.hasLinearVelocity = false;\n      this._grip.linearVelocity = new Vector3();\n      this._grip.hasAngularVelocity = false;\n      this._grip.angularVelocity = new Vector3();\n    }\n    return this._grip;\n  }\n  dispatchEvent(event) {\n    if (this._targetRay !== null) {\n      this._targetRay.dispatchEvent(event);\n    }\n    if (this._grip !== null) {\n      this._grip.dispatchEvent(event);\n    }\n    if (this._hand !== null) {\n      this._hand.dispatchEvent(event);\n    }\n    return this;\n  }\n  disconnect(inputSource) {\n    this.dispatchEvent({ type: \"disconnected\", data: inputSource });\n    if (this._targetRay !== null) {\n      this._targetRay.visible = false;\n    }\n    if (this._grip !== null) {\n      this._grip.visible = false;\n    }\n    if (this._hand !== null) {\n      this._hand.visible = false;\n    }\n    return this;\n  }\n  update(inputSource, frame, referenceSpace) {\n    let inputPose = null;\n    let gripPose = null;\n    let handPose = null;\n    const targetRay = this._targetRay;\n    const grip = this._grip;\n    const hand = this._hand;\n    if (inputSource && frame.session.visibilityState !== \"visible-blurred\") {\n      if (hand && inputSource.hand) {\n        handPose = true;\n        for (const inputjoint of inputSource.hand.values()) {\n          const jointPose = frame.getJointPose(inputjoint, referenceSpace);\n          if (hand.joints[inputjoint.jointName] === void 0) {\n            const joint2 = new Group();\n            joint2.matrixAutoUpdate = false;\n            joint2.visible = false;\n            hand.joints[inputjoint.jointName] = joint2;\n            hand.add(joint2);\n          }\n          const joint = hand.joints[inputjoint.jointName];\n          if (jointPose !== null) {\n            joint.matrix.fromArray(jointPose.transform.matrix);\n            joint.matrix.decompose(joint.position, joint.rotation, joint.scale);\n            joint.jointRadius = jointPose.radius;\n          }\n          joint.visible = jointPose !== null;\n        }\n        const indexTip = hand.joints[\"index-finger-tip\"];\n        const thumbTip = hand.joints[\"thumb-tip\"];\n        const distance = indexTip.position.distanceTo(thumbTip.position);\n        const distanceToPinch = 0.02;\n        const threshold = 5e-3;\n        if (hand.inputState.pinching && distance > distanceToPinch + threshold) {\n          hand.inputState.pinching = false;\n          this.dispatchEvent({\n            type: \"pinchend\",\n            handedness: inputSource.handedness,\n            target: this\n          });\n        } else if (!hand.inputState.pinching && distance <= distanceToPinch - threshold) {\n          hand.inputState.pinching = true;\n          this.dispatchEvent({\n            type: \"pinchstart\",\n            handedness: inputSource.handedness,\n            target: this\n          });\n        }\n      } else {\n        if (grip !== null && inputSource.gripSpace) {\n          gripPose = frame.getPose(inputSource.gripSpace, referenceSpace);\n          if (gripPose !== null) {\n            grip.matrix.fromArray(gripPose.transform.matrix);\n            grip.matrix.decompose(grip.position, grip.rotation, grip.scale);\n            if (gripPose.linearVelocity) {\n              grip.hasLinearVelocity = true;\n              grip.linearVelocity.copy(gripPose.linearVelocity);\n            } else {\n              grip.hasLinearVelocity = false;\n            }\n            if (gripPose.angularVelocity) {\n              grip.hasAngularVelocity = true;\n              grip.angularVelocity.copy(gripPose.angularVelocity);\n            } else {\n              grip.hasAngularVelocity = false;\n            }\n          }\n        }\n      }\n      if (targetRay !== null) {\n        inputPose = frame.getPose(inputSource.targetRaySpace, referenceSpace);\n        if (inputPose === null && gripPose !== null) {\n          inputPose = gripPose;\n        }\n        if (inputPose !== null) {\n          targetRay.matrix.fromArray(inputPose.transform.matrix);\n          targetRay.matrix.decompose(targetRay.position, targetRay.rotation, targetRay.scale);\n          if (inputPose.linearVelocity) {\n            targetRay.hasLinearVelocity = true;\n            targetRay.linearVelocity.copy(inputPose.linearVelocity);\n          } else {\n            targetRay.hasLinearVelocity = false;\n          }\n          if (inputPose.angularVelocity) {\n            targetRay.hasAngularVelocity = true;\n            targetRay.angularVelocity.copy(inputPose.angularVelocity);\n          } else {\n            targetRay.hasAngularVelocity = false;\n          }\n          this.dispatchEvent(_moveEvent);\n        }\n      }\n    }\n    if (targetRay !== null) {\n      targetRay.visible = inputPose !== null;\n    }\n    if (grip !== null) {\n      grip.visible = gripPose !== null;\n    }\n    if (hand !== null) {\n      hand.visible = handPose !== null;\n    }\n    return this;\n  }\n}\nclass DepthTexture extends Texture {\n  constructor(width, height, type, mapping, wrapS, wrapT, magFilter, minFilter, anisotropy, format) {\n    format = format !== void 0 ? format : DepthFormat;\n    if (format !== DepthFormat && format !== DepthStencilFormat) {\n      throw new Error(\"DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat\");\n    }\n    if (type === void 0 && format === DepthFormat)\n      type = UnsignedIntType;\n    if (type === void 0 && format === DepthStencilFormat)\n      type = UnsignedInt248Type;\n    super(null, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy);\n    this.isDepthTexture = true;\n    this.image = { width, height };\n    this.magFilter = magFilter !== void 0 ? magFilter : NearestFilter;\n    this.minFilter = minFilter !== void 0 ? minFilter : NearestFilter;\n    this.flipY = false;\n    this.generateMipmaps = false;\n  }\n}\nclass WebXRManager extends EventDispatcher {\n  constructor(renderer, gl) {\n    super();\n    const scope = this;\n    let session = null;\n    let framebufferScaleFactor = 1;\n    let referenceSpace = null;\n    let referenceSpaceType = \"local-floor\";\n    let customReferenceSpace = null;\n    let pose = null;\n    let glBinding = null;\n    let glProjLayer = null;\n    let glBaseLayer = null;\n    let xrFrame = null;\n    const attributes = gl.getContextAttributes();\n    let initialRenderTarget = null;\n    let newRenderTarget = null;\n    const controllers = [];\n    const controllerInputSources = [];\n    const cameraL = new PerspectiveCamera();\n    cameraL.layers.enable(1);\n    cameraL.viewport = new Vector4();\n    const cameraR = new PerspectiveCamera();\n    cameraR.layers.enable(2);\n    cameraR.viewport = new Vector4();\n    const cameras = [cameraL, cameraR];\n    const cameraVR = new ArrayCamera();\n    cameraVR.layers.enable(1);\n    cameraVR.layers.enable(2);\n    let _currentDepthNear = null;\n    let _currentDepthFar = null;\n    this.cameraAutoUpdate = true;\n    this.enabled = false;\n    this.isPresenting = false;\n    this.getController = function(index2) {\n      let controller = controllers[index2];\n      if (controller === void 0) {\n        controller = new WebXRController();\n        controllers[index2] = controller;\n      }\n      return controller.getTargetRaySpace();\n    };\n    this.getControllerGrip = function(index2) {\n      let controller = controllers[index2];\n      if (controller === void 0) {\n        controller = new WebXRController();\n        controllers[index2] = controller;\n      }\n      return controller.getGripSpace();\n    };\n    this.getHand = function(index2) {\n      let controller = controllers[index2];\n      if (controller === void 0) {\n        controller = new WebXRController();\n        controllers[index2] = controller;\n      }\n      return controller.getHandSpace();\n    };\n    function onSessionEvent(event) {\n      const controllerIndex = controllerInputSources.indexOf(event.inputSource);\n      if (controllerIndex === -1) {\n        return;\n      }\n      const controller = controllers[controllerIndex];\n      if (controller !== void 0) {\n        controller.dispatchEvent({ type: event.type, data: event.inputSource });\n      }\n    }\n    function onSessionEnd() {\n      session.removeEventListener(\"select\", onSessionEvent);\n      session.removeEventListener(\"selectstart\", onSessionEvent);\n      session.removeEventListener(\"selectend\", onSessionEvent);\n      session.removeEventListener(\"squeeze\", onSessionEvent);\n      session.removeEventListener(\"squeezestart\", onSessionEvent);\n      session.removeEventListener(\"squeezeend\", onSessionEvent);\n      session.removeEventListener(\"end\", onSessionEnd);\n      session.removeEventListener(\"inputsourceschange\", onInputSourcesChange);\n      for (let i = 0; i < controllers.length; i++) {\n        const inputSource = controllerInputSources[i];\n        if (inputSource === null)\n          continue;\n        controllerInputSources[i] = null;\n        controllers[i].disconnect(inputSource);\n      }\n      _currentDepthNear = null;\n      _currentDepthFar = null;\n      renderer.setRenderTarget(initialRenderTarget);\n      glBaseLayer = null;\n      glProjLayer = null;\n      glBinding = null;\n      session = null;\n      newRenderTarget = null;\n      animation.stop();\n      scope.isPresenting = false;\n      scope.dispatchEvent({ type: \"sessionend\" });\n    }\n    this.setFramebufferScaleFactor = function(value) {\n      framebufferScaleFactor = value;\n      if (scope.isPresenting === true) {\n        console.warn(\"THREE.WebXRManager: Cannot change framebuffer scale while presenting.\");\n      }\n    };\n    this.setReferenceSpaceType = function(value) {\n      referenceSpaceType = value;\n      if (scope.isPresenting === true) {\n        console.warn(\"THREE.WebXRManager: Cannot change reference space type while presenting.\");\n      }\n    };\n    this.getReferenceSpace = function() {\n      return customReferenceSpace || referenceSpace;\n    };\n    this.setReferenceSpace = function(space) {\n      customReferenceSpace = space;\n    };\n    this.getBaseLayer = function() {\n      return glProjLayer !== null ? glProjLayer : glBaseLayer;\n    };\n    this.getBinding = function() {\n      return glBinding;\n    };\n    this.getFrame = function() {\n      return xrFrame;\n    };\n    this.getSession = function() {\n      return session;\n    };\n    this.setSession = async function(value) {\n      session = value;\n      if (session !== null) {\n        initialRenderTarget = renderer.getRenderTarget();\n        session.addEventListener(\"select\", onSessionEvent);\n        session.addEventListener(\"selectstart\", onSessionEvent);\n        session.addEventListener(\"selectend\", onSessionEvent);\n        session.addEventListener(\"squeeze\", onSessionEvent);\n        session.addEventListener(\"squeezestart\", onSessionEvent);\n        session.addEventListener(\"squeezeend\", onSessionEvent);\n        session.addEventListener(\"end\", onSessionEnd);\n        session.addEventListener(\"inputsourceschange\", onInputSourcesChange);\n        if (attributes.xrCompatible !== true) {\n          await gl.makeXRCompatible();\n        }\n        if (session.renderState.layers === void 0 || renderer.capabilities.isWebGL2 === false) {\n          const layerInit = {\n            antialias: session.renderState.layers === void 0 ? attributes.antialias : true,\n            alpha: attributes.alpha,\n            depth: attributes.depth,\n            stencil: attributes.stencil,\n            framebufferScaleFactor\n          };\n          glBaseLayer = new XRWebGLLayer(session, gl, layerInit);\n          session.updateRenderState({ baseLayer: glBaseLayer });\n          newRenderTarget = new WebGLRenderTarget(glBaseLayer.framebufferWidth, glBaseLayer.framebufferHeight, {\n            format: RGBAFormat,\n            type: UnsignedByteType,\n            encoding: renderer.outputEncoding\n          });\n        } else {\n          let depthFormat = null;\n          let depthType = null;\n          let glDepthFormat = null;\n          if (attributes.depth) {\n            glDepthFormat = attributes.stencil ? 35056 : 33190;\n            depthFormat = attributes.stencil ? DepthStencilFormat : DepthFormat;\n            depthType = attributes.stencil ? UnsignedInt248Type : UnsignedIntType;\n          }\n          const projectionlayerInit = {\n            colorFormat: 32856,\n            depthFormat: glDepthFormat,\n            scaleFactor: framebufferScaleFactor\n          };\n          glBinding = new XRWebGLBinding(session, gl);\n          glProjLayer = glBinding.createProjectionLayer(projectionlayerInit);\n          session.updateRenderState({ layers: [glProjLayer] });\n          newRenderTarget = new WebGLRenderTarget(glProjLayer.textureWidth, glProjLayer.textureHeight, {\n            format: RGBAFormat,\n            type: UnsignedByteType,\n            depthTexture: new DepthTexture(glProjLayer.textureWidth, glProjLayer.textureHeight, depthType, void 0, void 0, void 0, void 0, void 0, void 0, depthFormat),\n            stencilBuffer: attributes.stencil,\n            encoding: renderer.outputEncoding,\n            samples: attributes.antialias ? 4 : 0\n          });\n          const renderTargetProperties = renderer.properties.get(newRenderTarget);\n          renderTargetProperties.__ignoreDepthValues = glProjLayer.ignoreDepthValues;\n        }\n        newRenderTarget.isXRRenderTarget = true;\n        this.setFoveation(1);\n        customReferenceSpace = null;\n        referenceSpace = await session.requestReferenceSpace(referenceSpaceType);\n        animation.setContext(session);\n        animation.start();\n        scope.isPresenting = true;\n        scope.dispatchEvent({ type: \"sessionstart\" });\n      }\n    };\n    function onInputSourcesChange(event) {\n      for (let i = 0; i < event.removed.length; i++) {\n        const inputSource = event.removed[i];\n        const index2 = controllerInputSources.indexOf(inputSource);\n        if (index2 >= 0) {\n          controllerInputSources[index2] = null;\n          controllers[index2].dispatchEvent({ type: \"disconnected\", data: inputSource });\n        }\n      }\n      for (let i = 0; i < event.added.length; i++) {\n        const inputSource = event.added[i];\n        let controllerIndex = controllerInputSources.indexOf(inputSource);\n        if (controllerIndex === -1) {\n          for (let i2 = 0; i2 < controllers.length; i2++) {\n            if (i2 >= controllerInputSources.length) {\n              controllerInputSources.push(inputSource);\n              controllerIndex = i2;\n              break;\n            } else if (controllerInputSources[i2] === null) {\n              controllerInputSources[i2] = inputSource;\n              controllerIndex = i2;\n              break;\n            }\n          }\n          if (controllerIndex === -1)\n            break;\n        }\n        const controller = controllers[controllerIndex];\n        if (controller) {\n          controller.dispatchEvent({ type: \"connected\", data: inputSource });\n        }\n      }\n    }\n    const cameraLPos = new Vector3();\n    const cameraRPos = new Vector3();\n    function setProjectionFromUnion(camera, cameraL2, cameraR2) {\n      cameraLPos.setFromMatrixPosition(cameraL2.matrixWorld);\n      cameraRPos.setFromMatrixPosition(cameraR2.matrixWorld);\n      const ipd = cameraLPos.distanceTo(cameraRPos);\n      const projL = cameraL2.projectionMatrix.elements;\n      const projR = cameraR2.projectionMatrix.elements;\n      const near = projL[14] / (projL[10] - 1);\n      const far = projL[14] / (projL[10] + 1);\n      const topFov = (projL[9] + 1) / projL[5];\n      const bottomFov = (projL[9] - 1) / projL[5];\n      const leftFov = (projL[8] - 1) / projL[0];\n      const rightFov = (projR[8] + 1) / projR[0];\n      const left = near * leftFov;\n      const right = near * rightFov;\n      const zOffset = ipd / (-leftFov + rightFov);\n      const xOffset = zOffset * -leftFov;\n      cameraL2.matrixWorld.decompose(camera.position, camera.quaternion, camera.scale);\n      camera.translateX(xOffset);\n      camera.translateZ(zOffset);\n      camera.matrixWorld.compose(camera.position, camera.quaternion, camera.scale);\n      camera.matrixWorldInverse.copy(camera.matrixWorld).invert();\n      const near2 = near + zOffset;\n      const far2 = far + zOffset;\n      const left2 = left - xOffset;\n      const right2 = right + (ipd - xOffset);\n      const top2 = topFov * far / far2 * near2;\n      const bottom2 = bottomFov * far / far2 * near2;\n      camera.projectionMatrix.makePerspective(left2, right2, top2, bottom2, near2, far2);\n    }\n    function updateCamera(camera, parent) {\n      if (parent === null) {\n        camera.matrixWorld.copy(camera.matrix);\n      } else {\n        camera.matrixWorld.multiplyMatrices(parent.matrixWorld, camera.matrix);\n      }\n      camera.matrixWorldInverse.copy(camera.matrixWorld).invert();\n    }\n    this.updateCamera = function(camera) {\n      if (session === null)\n        return;\n      cameraVR.near = cameraR.near = cameraL.near = camera.near;\n      cameraVR.far = cameraR.far = cameraL.far = camera.far;\n      if (_currentDepthNear !== cameraVR.near || _currentDepthFar !== cameraVR.far) {\n        session.updateRenderState({\n          depthNear: cameraVR.near,\n          depthFar: cameraVR.far\n        });\n        _currentDepthNear = cameraVR.near;\n        _currentDepthFar = cameraVR.far;\n      }\n      const parent = camera.parent;\n      const cameras2 = cameraVR.cameras;\n      updateCamera(cameraVR, parent);\n      for (let i = 0; i < cameras2.length; i++) {\n        updateCamera(cameras2[i], parent);\n      }\n      cameraVR.matrixWorld.decompose(cameraVR.position, cameraVR.quaternion, cameraVR.scale);\n      camera.position.copy(cameraVR.position);\n      camera.quaternion.copy(cameraVR.quaternion);\n      camera.scale.copy(cameraVR.scale);\n      camera.matrix.copy(cameraVR.matrix);\n      camera.matrixWorld.copy(cameraVR.matrixWorld);\n      const children = camera.children;\n      for (let i = 0, l = children.length; i < l; i++) {\n        children[i].updateMatrixWorld(true);\n      }\n      if (cameras2.length === 2) {\n        setProjectionFromUnion(cameraVR, cameraL, cameraR);\n      } else {\n        cameraVR.projectionMatrix.copy(cameraL.projectionMatrix);\n      }\n    };\n    this.getCamera = function() {\n      return cameraVR;\n    };\n    this.getFoveation = function() {\n      if (glProjLayer !== null) {\n        return glProjLayer.fixedFoveation;\n      }\n      if (glBaseLayer !== null) {\n        return glBaseLayer.fixedFoveation;\n      }\n      return void 0;\n    };\n    this.setFoveation = function(foveation) {\n      if (glProjLayer !== null) {\n        glProjLayer.fixedFoveation = foveation;\n      }\n      if (glBaseLayer !== null && glBaseLayer.fixedFoveation !== void 0) {\n        glBaseLayer.fixedFoveation = foveation;\n      }\n    };\n    let onAnimationFrameCallback = null;\n    function onAnimationFrame(time, frame) {\n      pose = frame.getViewerPose(customReferenceSpace || referenceSpace);\n      xrFrame = frame;\n      if (pose !== null) {\n        const views = pose.views;\n        if (glBaseLayer !== null) {\n          renderer.setRenderTargetFramebuffer(newRenderTarget, glBaseLayer.framebuffer);\n          renderer.setRenderTarget(newRenderTarget);\n        }\n        let cameraVRNeedsUpdate = false;\n        if (views.length !== cameraVR.cameras.length) {\n          cameraVR.cameras.length = 0;\n          cameraVRNeedsUpdate = true;\n        }\n        for (let i = 0; i < views.length; i++) {\n          const view = views[i];\n          let viewport = null;\n          if (glBaseLayer !== null) {\n            viewport = glBaseLayer.getViewport(view);\n          } else {\n            const glSubImage = glBinding.getViewSubImage(glProjLayer, view);\n            viewport = glSubImage.viewport;\n            if (i === 0) {\n              renderer.setRenderTargetTextures(newRenderTarget, glSubImage.colorTexture, glProjLayer.ignoreDepthValues ? void 0 : glSubImage.depthStencilTexture);\n              renderer.setRenderTarget(newRenderTarget);\n            }\n          }\n          let camera = cameras[i];\n          if (camera === void 0) {\n            camera = new PerspectiveCamera();\n            camera.layers.enable(i);\n            camera.viewport = new Vector4();\n            cameras[i] = camera;\n          }\n          camera.matrix.fromArray(view.transform.matrix);\n          camera.projectionMatrix.fromArray(view.projectionMatrix);\n          camera.viewport.set(viewport.x, viewport.y, viewport.width, viewport.height);\n          if (i === 0) {\n            cameraVR.matrix.copy(camera.matrix);\n          }\n          if (cameraVRNeedsUpdate === true) {\n            cameraVR.cameras.push(camera);\n          }\n        }\n      }\n      for (let i = 0; i < controllers.length; i++) {\n        const inputSource = controllerInputSources[i];\n        const controller = controllers[i];\n        if (inputSource !== null && controller !== void 0) {\n          controller.update(inputSource, frame, customReferenceSpace || referenceSpace);\n        }\n      }\n      if (onAnimationFrameCallback)\n        onAnimationFrameCallback(time, frame);\n      xrFrame = null;\n    }\n    const animation = new WebGLAnimation();\n    animation.setAnimationLoop(onAnimationFrame);\n    this.setAnimationLoop = function(callback) {\n      onAnimationFrameCallback = callback;\n    };\n    this.dispose = function() {\n    };\n  }\n}\nfunction WebGLMaterials(renderer, properties) {\n  function refreshFogUniforms(uniforms, fog) {\n    uniforms.fogColor.value.copy(fog.color);\n    if (fog.isFog) {\n      uniforms.fogNear.value = fog.near;\n      uniforms.fogFar.value = fog.far;\n    } else if (fog.isFogExp2) {\n      uniforms.fogDensity.value = fog.density;\n    }\n  }\n  function refreshMaterialUniforms(uniforms, material, pixelRatio, height, transmissionRenderTarget) {\n    if (material.isMeshBasicMaterial) {\n      refreshUniformsCommon(uniforms, material);\n    } else if (material.isMeshLambertMaterial) {\n      refreshUniformsCommon(uniforms, material);\n    } else if (material.isMeshToonMaterial) {\n      refreshUniformsCommon(uniforms, material);\n      refreshUniformsToon(uniforms, material);\n    } else if (material.isMeshPhongMaterial) {\n      refreshUniformsCommon(uniforms, material);\n      refreshUniformsPhong(uniforms, material);\n    } else if (material.isMeshStandardMaterial) {\n      refreshUniformsCommon(uniforms, material);\n      refreshUniformsStandard(uniforms, material);\n      if (material.isMeshPhysicalMaterial) {\n        refreshUniformsPhysical(uniforms, material, transmissionRenderTarget);\n      }\n    } else if (material.isMeshMatcapMaterial) {\n      refreshUniformsCommon(uniforms, material);\n      refreshUniformsMatcap(uniforms, material);\n    } else if (material.isMeshDepthMaterial) {\n      refreshUniformsCommon(uniforms, material);\n    } else if (material.isMeshDistanceMaterial) {\n      refreshUniformsCommon(uniforms, material);\n      refreshUniformsDistance(uniforms, material);\n    } else if (material.isMeshNormalMaterial) {\n      refreshUniformsCommon(uniforms, material);\n    } else if (material.isLineBasicMaterial) {\n      refreshUniformsLine(uniforms, material);\n      if (material.isLineDashedMaterial) {\n        refreshUniformsDash(uniforms, material);\n      }\n    } else if (material.isPointsMaterial) {\n      refreshUniformsPoints(uniforms, material, pixelRatio, height);\n    } else if (material.isSpriteMaterial) {\n      refreshUniformsSprites(uniforms, material);\n    } else if (material.isShadowMaterial) {\n      uniforms.color.value.copy(material.color);\n      uniforms.opacity.value = material.opacity;\n    } else if (material.isShaderMaterial) {\n      material.uniformsNeedUpdate = false;\n    }\n  }\n  function refreshUniformsCommon(uniforms, material) {\n    uniforms.opacity.value = material.opacity;\n    if (material.color) {\n      uniforms.diffuse.value.copy(material.color);\n    }\n    if (material.emissive) {\n      uniforms.emissive.value.copy(material.emissive).multiplyScalar(material.emissiveIntensity);\n    }\n    if (material.map) {\n      uniforms.map.value = material.map;\n    }\n    if (material.alphaMap) {\n      uniforms.alphaMap.value = material.alphaMap;\n    }\n    if (material.bumpMap) {\n      uniforms.bumpMap.value = material.bumpMap;\n      uniforms.bumpScale.value = material.bumpScale;\n      if (material.side === BackSide)\n        uniforms.bumpScale.value *= -1;\n    }\n    if (material.displacementMap) {\n      uniforms.displacementMap.value = material.displacementMap;\n      uniforms.displacementScale.value = material.displacementScale;\n      uniforms.displacementBias.value = material.displacementBias;\n    }\n    if (material.emissiveMap) {\n      uniforms.emissiveMap.value = material.emissiveMap;\n    }\n    if (material.normalMap) {\n      uniforms.normalMap.value = material.normalMap;\n      uniforms.normalScale.value.copy(material.normalScale);\n      if (material.side === BackSide)\n        uniforms.normalScale.value.negate();\n    }\n    if (material.specularMap) {\n      uniforms.specularMap.value = material.specularMap;\n    }\n    if (material.alphaTest > 0) {\n      uniforms.alphaTest.value = material.alphaTest;\n    }\n    const envMap = properties.get(material).envMap;\n    if (envMap) {\n      uniforms.envMap.value = envMap;\n      uniforms.flipEnvMap.value = envMap.isCubeTexture && envMap.isRenderTargetTexture === false ? -1 : 1;\n      uniforms.reflectivity.value = material.reflectivity;\n      uniforms.ior.value = material.ior;\n      uniforms.refractionRatio.value = material.refractionRatio;\n    }\n    if (material.lightMap) {\n      uniforms.lightMap.value = material.lightMap;\n      const scaleFactor = renderer.physicallyCorrectLights !== true ? Math.PI : 1;\n      uniforms.lightMapIntensity.value = material.lightMapIntensity * scaleFactor;\n    }\n    if (material.aoMap) {\n      uniforms.aoMap.value = material.aoMap;\n      uniforms.aoMapIntensity.value = material.aoMapIntensity;\n    }\n    let uvScaleMap;\n    if (material.map) {\n      uvScaleMap = material.map;\n    } else if (material.specularMap) {\n      uvScaleMap = material.specularMap;\n    } else if (material.displacementMap) {\n      uvScaleMap = material.displacementMap;\n    } else if (material.normalMap) {\n      uvScaleMap = material.normalMap;\n    } else if (material.bumpMap) {\n      uvScaleMap = material.bumpMap;\n    } else if (material.roughnessMap) {\n      uvScaleMap = material.roughnessMap;\n    } else if (material.metalnessMap) {\n      uvScaleMap = material.metalnessMap;\n    } else if (material.alphaMap) {\n      uvScaleMap = material.alphaMap;\n    } else if (material.emissiveMap) {\n      uvScaleMap = material.emissiveMap;\n    } else if (material.clearcoatMap) {\n      uvScaleMap = material.clearcoatMap;\n    } else if (material.clearcoatNormalMap) {\n      uvScaleMap = material.clearcoatNormalMap;\n    } else if (material.clearcoatRoughnessMap) {\n      uvScaleMap = material.clearcoatRoughnessMap;\n    } else if (material.iridescenceMap) {\n      uvScaleMap = material.iridescenceMap;\n    } else if (material.iridescenceThicknessMap) {\n      uvScaleMap = material.iridescenceThicknessMap;\n    } else if (material.specularIntensityMap) {\n      uvScaleMap = material.specularIntensityMap;\n    } else if (material.specularColorMap) {\n      uvScaleMap = material.specularColorMap;\n    } else if (material.transmissionMap) {\n      uvScaleMap = material.transmissionMap;\n    } else if (material.thicknessMap) {\n      uvScaleMap = material.thicknessMap;\n    } else if (material.sheenColorMap) {\n      uvScaleMap = material.sheenColorMap;\n    } else if (material.sheenRoughnessMap) {\n      uvScaleMap = material.sheenRoughnessMap;\n    }\n    if (uvScaleMap !== void 0) {\n      if (uvScaleMap.isWebGLRenderTarget) {\n        uvScaleMap = uvScaleMap.texture;\n      }\n      if (uvScaleMap.matrixAutoUpdate === true) {\n        uvScaleMap.updateMatrix();\n      }\n      uniforms.uvTransform.value.copy(uvScaleMap.matrix);\n    }\n    let uv2ScaleMap;\n    if (material.aoMap) {\n      uv2ScaleMap = material.aoMap;\n    } else if (material.lightMap) {\n      uv2ScaleMap = material.lightMap;\n    }\n    if (uv2ScaleMap !== void 0) {\n      if (uv2ScaleMap.isWebGLRenderTarget) {\n        uv2ScaleMap = uv2ScaleMap.texture;\n      }\n      if (uv2ScaleMap.matrixAutoUpdate === true) {\n        uv2ScaleMap.updateMatrix();\n      }\n      uniforms.uv2Transform.value.copy(uv2ScaleMap.matrix);\n    }\n  }\n  function refreshUniformsLine(uniforms, material) {\n    uniforms.diffuse.value.copy(material.color);\n    uniforms.opacity.value = material.opacity;\n  }\n  function refreshUniformsDash(uniforms, material) {\n    uniforms.dashSize.value = material.dashSize;\n    uniforms.totalSize.value = material.dashSize + material.gapSize;\n    uniforms.scale.value = material.scale;\n  }\n  function refreshUniformsPoints(uniforms, material, pixelRatio, height) {\n    uniforms.diffuse.value.copy(material.color);\n    uniforms.opacity.value = material.opacity;\n    uniforms.size.value = material.size * pixelRatio;\n    uniforms.scale.value = height * 0.5;\n    if (material.map) {\n      uniforms.map.value = material.map;\n    }\n    if (material.alphaMap) {\n      uniforms.alphaMap.value = material.alphaMap;\n    }\n    if (material.alphaTest > 0) {\n      uniforms.alphaTest.value = material.alphaTest;\n    }\n    let uvScaleMap;\n    if (material.map) {\n      uvScaleMap = material.map;\n    } else if (material.alphaMap) {\n      uvScaleMap = material.alphaMap;\n    }\n    if (uvScaleMap !== void 0) {\n      if (uvScaleMap.matrixAutoUpdate === true) {\n        uvScaleMap.updateMatrix();\n      }\n      uniforms.uvTransform.value.copy(uvScaleMap.matrix);\n    }\n  }\n  function refreshUniformsSprites(uniforms, material) {\n    uniforms.diffuse.value.copy(material.color);\n    uniforms.opacity.value = material.opacity;\n    uniforms.rotation.value = material.rotation;\n    if (material.map) {\n      uniforms.map.value = material.map;\n    }\n    if (material.alphaMap) {\n      uniforms.alphaMap.value = material.alphaMap;\n    }\n    if (material.alphaTest > 0) {\n      uniforms.alphaTest.value = material.alphaTest;\n    }\n    let uvScaleMap;\n    if (material.map) {\n      uvScaleMap = material.map;\n    } else if (material.alphaMap) {\n      uvScaleMap = material.alphaMap;\n    }\n    if (uvScaleMap !== void 0) {\n      if (uvScaleMap.matrixAutoUpdate === true) {\n        uvScaleMap.updateMatrix();\n      }\n      uniforms.uvTransform.value.copy(uvScaleMap.matrix);\n    }\n  }\n  function refreshUniformsPhong(uniforms, material) {\n    uniforms.specular.value.copy(material.specular);\n    uniforms.shininess.value = Math.max(material.shininess, 1e-4);\n  }\n  function refreshUniformsToon(uniforms, material) {\n    if (material.gradientMap) {\n      uniforms.gradientMap.value = material.gradientMap;\n    }\n  }\n  function refreshUniformsStandard(uniforms, material) {\n    uniforms.roughness.value = material.roughness;\n    uniforms.metalness.value = material.metalness;\n    if (material.roughnessMap) {\n      uniforms.roughnessMap.value = material.roughnessMap;\n    }\n    if (material.metalnessMap) {\n      uniforms.metalnessMap.value = material.metalnessMap;\n    }\n    const envMap = properties.get(material).envMap;\n    if (envMap) {\n      uniforms.envMapIntensity.value = material.envMapIntensity;\n    }\n  }\n  function refreshUniformsPhysical(uniforms, material, transmissionRenderTarget) {\n    uniforms.ior.value = material.ior;\n    if (material.sheen > 0) {\n      uniforms.sheenColor.value.copy(material.sheenColor).multiplyScalar(material.sheen);\n      uniforms.sheenRoughness.value = material.sheenRoughness;\n      if (material.sheenColorMap) {\n        uniforms.sheenColorMap.value = material.sheenColorMap;\n      }\n      if (material.sheenRoughnessMap) {\n        uniforms.sheenRoughnessMap.value = material.sheenRoughnessMap;\n      }\n    }\n    if (material.clearcoat > 0) {\n      uniforms.clearcoat.value = material.clearcoat;\n      uniforms.clearcoatRoughness.value = material.clearcoatRoughness;\n      if (material.clearcoatMap) {\n        uniforms.clearcoatMap.value = material.clearcoatMap;\n      }\n      if (material.clearcoatRoughnessMap) {\n        uniforms.clearcoatRoughnessMap.value = material.clearcoatRoughnessMap;\n      }\n      if (material.clearcoatNormalMap) {\n        uniforms.clearcoatNormalScale.value.copy(material.clearcoatNormalScale);\n        uniforms.clearcoatNormalMap.value = material.clearcoatNormalMap;\n        if (material.side === BackSide) {\n          uniforms.clearcoatNormalScale.value.negate();\n        }\n      }\n    }\n    if (material.iridescence > 0) {\n      uniforms.iridescence.value = material.iridescence;\n      uniforms.iridescenceIOR.value = material.iridescenceIOR;\n      uniforms.iridescenceThicknessMinimum.value = material.iridescenceThicknessRange[0];\n      uniforms.iridescenceThicknessMaximum.value = material.iridescenceThicknessRange[1];\n      if (material.iridescenceMap) {\n        uniforms.iridescenceMap.value = material.iridescenceMap;\n      }\n      if (material.iridescenceThicknessMap) {\n        uniforms.iridescenceThicknessMap.value = material.iridescenceThicknessMap;\n      }\n    }\n    if (material.transmission > 0) {\n      uniforms.transmission.value = material.transmission;\n      uniforms.transmissionSamplerMap.value = transmissionRenderTarget.texture;\n      uniforms.transmissionSamplerSize.value.set(transmissionRenderTarget.width, transmissionRenderTarget.height);\n      if (material.transmissionMap) {\n        uniforms.transmissionMap.value = material.transmissionMap;\n      }\n      uniforms.thickness.value = material.thickness;\n      if (material.thicknessMap) {\n        uniforms.thicknessMap.value = material.thicknessMap;\n      }\n      uniforms.attenuationDistance.value = material.attenuationDistance;\n      uniforms.attenuationColor.value.copy(material.attenuationColor);\n    }\n    uniforms.specularIntensity.value = material.specularIntensity;\n    uniforms.specularColor.value.copy(material.specularColor);\n    if (material.specularIntensityMap) {\n      uniforms.specularIntensityMap.value = material.specularIntensityMap;\n    }\n    if (material.specularColorMap) {\n      uniforms.specularColorMap.value = material.specularColorMap;\n    }\n  }\n  function refreshUniformsMatcap(uniforms, material) {\n    if (material.matcap) {\n      uniforms.matcap.value = material.matcap;\n    }\n  }\n  function refreshUniformsDistance(uniforms, material) {\n    uniforms.referencePosition.value.copy(material.referencePosition);\n    uniforms.nearDistance.value = material.nearDistance;\n    uniforms.farDistance.value = material.farDistance;\n  }\n  return {\n    refreshFogUniforms,\n    refreshMaterialUniforms\n  };\n}\nfunction WebGLUniformsGroups(gl, info, capabilities, state) {\n  let buffers = {};\n  let updateList = {};\n  let allocatedBindingPoints = [];\n  const maxBindingPoints = capabilities.isWebGL2 ? gl.getParameter(35375) : 0;\n  function bind(uniformsGroup, program) {\n    const webglProgram = program.program;\n    state.uniformBlockBinding(uniformsGroup, webglProgram);\n  }\n  function update(uniformsGroup, program) {\n    let buffer = buffers[uniformsGroup.id];\n    if (buffer === void 0) {\n      prepareUniformsGroup(uniformsGroup);\n      buffer = createBuffer(uniformsGroup);\n      buffers[uniformsGroup.id] = buffer;\n      uniformsGroup.addEventListener(\"dispose\", onUniformsGroupsDispose);\n    }\n    const webglProgram = program.program;\n    state.updateUBOMapping(uniformsGroup, webglProgram);\n    const frame = info.render.frame;\n    if (updateList[uniformsGroup.id] !== frame) {\n      updateBufferData(uniformsGroup);\n      updateList[uniformsGroup.id] = frame;\n    }\n  }\n  function createBuffer(uniformsGroup) {\n    const bindingPointIndex = allocateBindingPointIndex();\n    uniformsGroup.__bindingPointIndex = bindingPointIndex;\n    const buffer = gl.createBuffer();\n    const size = uniformsGroup.__size;\n    const usage = uniformsGroup.usage;\n    gl.bindBuffer(35345, buffer);\n    gl.bufferData(35345, size, usage);\n    gl.bindBuffer(35345, null);\n    gl.bindBufferBase(35345, bindingPointIndex, buffer);\n    return buffer;\n  }\n  function allocateBindingPointIndex() {\n    for (let i = 0; i < maxBindingPoints; i++) {\n      if (allocatedBindingPoints.indexOf(i) === -1) {\n        allocatedBindingPoints.push(i);\n        return i;\n      }\n    }\n    console.error(\"THREE.WebGLRenderer: Maximum number of simultaneously usable uniforms groups reached.\");\n    return 0;\n  }\n  function updateBufferData(uniformsGroup) {\n    const buffer = buffers[uniformsGroup.id];\n    const uniforms = uniformsGroup.uniforms;\n    const cache = uniformsGroup.__cache;\n    gl.bindBuffer(35345, buffer);\n    for (let i = 0, il = uniforms.length; i < il; i++) {\n      const uniform = uniforms[i];\n      if (hasUniformChanged(uniform, i, cache) === true) {\n        const value = uniform.value;\n        const offset = uniform.__offset;\n        if (typeof value === \"number\") {\n          uniform.__data[0] = value;\n          gl.bufferSubData(35345, offset, uniform.__data);\n        } else {\n          if (uniform.value.isMatrix3) {\n            uniform.__data[0] = uniform.value.elements[0];\n            uniform.__data[1] = uniform.value.elements[1];\n            uniform.__data[2] = uniform.value.elements[2];\n            uniform.__data[3] = uniform.value.elements[0];\n            uniform.__data[4] = uniform.value.elements[3];\n            uniform.__data[5] = uniform.value.elements[4];\n            uniform.__data[6] = uniform.value.elements[5];\n            uniform.__data[7] = uniform.value.elements[0];\n            uniform.__data[8] = uniform.value.elements[6];\n            uniform.__data[9] = uniform.value.elements[7];\n            uniform.__data[10] = uniform.value.elements[8];\n            uniform.__data[11] = uniform.value.elements[0];\n          } else {\n            value.toArray(uniform.__data);\n          }\n          gl.bufferSubData(35345, offset, uniform.__data);\n        }\n      }\n    }\n    gl.bindBuffer(35345, null);\n  }\n  function hasUniformChanged(uniform, index2, cache) {\n    const value = uniform.value;\n    if (cache[index2] === void 0) {\n      if (typeof value === \"number\") {\n        cache[index2] = value;\n      } else {\n        cache[index2] = value.clone();\n      }\n      return true;\n    } else {\n      if (typeof value === \"number\") {\n        if (cache[index2] !== value) {\n          cache[index2] = value;\n          return true;\n        }\n      } else {\n        const cachedObject = cache[index2];\n        if (cachedObject.equals(value) === false) {\n          cachedObject.copy(value);\n          return true;\n        }\n      }\n    }\n    return false;\n  }\n  function prepareUniformsGroup(uniformsGroup) {\n    const uniforms = uniformsGroup.uniforms;\n    let offset = 0;\n    const chunkSize = 16;\n    let chunkOffset = 0;\n    for (let i = 0, l = uniforms.length; i < l; i++) {\n      const uniform = uniforms[i];\n      const info2 = getUniformSize(uniform);\n      uniform.__data = new Float32Array(info2.storage / Float32Array.BYTES_PER_ELEMENT);\n      uniform.__offset = offset;\n      if (i > 0) {\n        chunkOffset = offset % chunkSize;\n        const remainingSizeInChunk = chunkSize - chunkOffset;\n        if (chunkOffset !== 0 && remainingSizeInChunk - info2.boundary < 0) {\n          offset += chunkSize - chunkOffset;\n          uniform.__offset = offset;\n        }\n      }\n      offset += info2.storage;\n    }\n    chunkOffset = offset % chunkSize;\n    if (chunkOffset > 0)\n      offset += chunkSize - chunkOffset;\n    uniformsGroup.__size = offset;\n    uniformsGroup.__cache = {};\n    return this;\n  }\n  function getUniformSize(uniform) {\n    const value = uniform.value;\n    const info2 = {\n      boundary: 0,\n      storage: 0\n    };\n    if (typeof value === \"number\") {\n      info2.boundary = 4;\n      info2.storage = 4;\n    } else if (value.isVector2) {\n      info2.boundary = 8;\n      info2.storage = 8;\n    } else if (value.isVector3 || value.isColor) {\n      info2.boundary = 16;\n      info2.storage = 12;\n    } else if (value.isVector4) {\n      info2.boundary = 16;\n      info2.storage = 16;\n    } else if (value.isMatrix3) {\n      info2.boundary = 48;\n      info2.storage = 48;\n    } else if (value.isMatrix4) {\n      info2.boundary = 64;\n      info2.storage = 64;\n    } else if (value.isTexture) {\n      console.warn(\"THREE.WebGLRenderer: Texture samplers can not be part of an uniforms group.\");\n    } else {\n      console.warn(\"THREE.WebGLRenderer: Unsupported uniform value type.\", value);\n    }\n    return info2;\n  }\n  function onUniformsGroupsDispose(event) {\n    const uniformsGroup = event.target;\n    uniformsGroup.removeEventListener(\"dispose\", onUniformsGroupsDispose);\n    const index2 = allocatedBindingPoints.indexOf(uniformsGroup.__bindingPointIndex);\n    allocatedBindingPoints.splice(index2, 1);\n    gl.deleteBuffer(buffers[uniformsGroup.id]);\n    delete buffers[uniformsGroup.id];\n    delete updateList[uniformsGroup.id];\n  }\n  function dispose() {\n    for (const id2 in buffers) {\n      gl.deleteBuffer(buffers[id2]);\n    }\n    allocatedBindingPoints = [];\n    buffers = {};\n    updateList = {};\n  }\n  return {\n    bind,\n    update,\n    dispose\n  };\n}\nfunction createCanvasElement() {\n  const canvas = createElementNS(\"canvas\");\n  canvas.style.display = \"block\";\n  return canvas;\n}\nfunction WebGLRenderer(parameters = {}) {\n  this.isWebGLRenderer = true;\n  const _canvas2 = parameters.canvas !== void 0 ? parameters.canvas : createCanvasElement(), _context2 = parameters.context !== void 0 ? parameters.context : null, _depth = parameters.depth !== void 0 ? parameters.depth : true, _stencil = parameters.stencil !== void 0 ? parameters.stencil : true, _antialias = parameters.antialias !== void 0 ? parameters.antialias : false, _premultipliedAlpha = parameters.premultipliedAlpha !== void 0 ? parameters.premultipliedAlpha : true, _preserveDrawingBuffer = parameters.preserveDrawingBuffer !== void 0 ? parameters.preserveDrawingBuffer : false, _powerPreference = parameters.powerPreference !== void 0 ? parameters.powerPreference : \"default\", _failIfMajorPerformanceCaveat = parameters.failIfMajorPerformanceCaveat !== void 0 ? parameters.failIfMajorPerformanceCaveat : false;\n  let _alpha;\n  if (_context2 !== null) {\n    _alpha = _context2.getContextAttributes().alpha;\n  } else {\n    _alpha = parameters.alpha !== void 0 ? parameters.alpha : false;\n  }\n  let currentRenderList = null;\n  let currentRenderState = null;\n  const renderListStack = [];\n  const renderStateStack = [];\n  this.domElement = _canvas2;\n  this.debug = {\n    checkShaderErrors: true\n  };\n  this.autoClear = true;\n  this.autoClearColor = true;\n  this.autoClearDepth = true;\n  this.autoClearStencil = true;\n  this.sortObjects = true;\n  this.clippingPlanes = [];\n  this.localClippingEnabled = false;\n  this.outputEncoding = LinearEncoding;\n  this.physicallyCorrectLights = false;\n  this.toneMapping = NoToneMapping;\n  this.toneMappingExposure = 1;\n  Object.defineProperties(this, {\n    gammaFactor: {\n      get: function() {\n        console.warn(\"THREE.WebGLRenderer: .gammaFactor has been removed.\");\n        return 2;\n      },\n      set: function() {\n        console.warn(\"THREE.WebGLRenderer: .gammaFactor has been removed.\");\n      }\n    }\n  });\n  const _this = this;\n  let _isContextLost = false;\n  let _currentActiveCubeFace = 0;\n  let _currentActiveMipmapLevel = 0;\n  let _currentRenderTarget = null;\n  let _currentMaterialId = -1;\n  let _currentCamera = null;\n  const _currentViewport = new Vector4();\n  const _currentScissor = new Vector4();\n  let _currentScissorTest = null;\n  let _width = _canvas2.width;\n  let _height = _canvas2.height;\n  let _pixelRatio = 1;\n  let _opaqueSort = null;\n  let _transparentSort = null;\n  const _viewport = new Vector4(0, 0, _width, _height);\n  const _scissor = new Vector4(0, 0, _width, _height);\n  let _scissorTest = false;\n  const _frustum = new Frustum();\n  let _clippingEnabled = false;\n  let _localClippingEnabled = false;\n  let _transmissionRenderTarget = null;\n  const _projScreenMatrix2 = new Matrix4();\n  const _vector22 = new Vector2();\n  const _vector3 = new Vector3();\n  const _emptyScene = { background: null, fog: null, environment: null, overrideMaterial: null, isScene: true };\n  function getTargetPixelRatio() {\n    return _currentRenderTarget === null ? _pixelRatio : 1;\n  }\n  let _gl = _context2;\n  function getContext(contextNames, contextAttributes) {\n    for (let i = 0; i < contextNames.length; i++) {\n      const contextName = contextNames[i];\n      const context = _canvas2.getContext(contextName, contextAttributes);\n      if (context !== null)\n        return context;\n    }\n    return null;\n  }\n  try {\n    const contextAttributes = {\n      alpha: true,\n      depth: _depth,\n      stencil: _stencil,\n      antialias: _antialias,\n      premultipliedAlpha: _premultipliedAlpha,\n      preserveDrawingBuffer: _preserveDrawingBuffer,\n      powerPreference: _powerPreference,\n      failIfMajorPerformanceCaveat: _failIfMajorPerformanceCaveat\n    };\n    if (\"setAttribute\" in _canvas2)\n      _canvas2.setAttribute(\"data-engine\", `three.js r${REVISION}`);\n    _canvas2.addEventListener(\"webglcontextlost\", onContextLost, false);\n    _canvas2.addEventListener(\"webglcontextrestored\", onContextRestore, false);\n    _canvas2.addEventListener(\"webglcontextcreationerror\", onContextCreationError, false);\n    if (_gl === null) {\n      const contextNames = [\"webgl2\", \"webgl\", \"experimental-webgl\"];\n      if (_this.isWebGL1Renderer === true) {\n        contextNames.shift();\n      }\n      _gl = getContext(contextNames, contextAttributes);\n      if (_gl === null) {\n        if (getContext(contextNames)) {\n          throw new Error(\"Error creating WebGL context with your selected attributes.\");\n        } else {\n          throw new Error(\"Error creating WebGL context.\");\n        }\n      }\n    }\n    if (_gl.getShaderPrecisionFormat === void 0) {\n      _gl.getShaderPrecisionFormat = function() {\n        return { \"rangeMin\": 1, \"rangeMax\": 1, \"precision\": 1 };\n      };\n    }\n  } catch (error) {\n    console.error(\"THREE.WebGLRenderer: \" + error.message);\n    throw error;\n  }\n  let extensions, capabilities, state, info;\n  let properties, textures, cubemaps, cubeuvmaps, attributes, geometries, objects;\n  let programCache, materials, renderLists, renderStates, clipping, shadowMap;\n  let background, morphtargets, bufferRenderer, indexedBufferRenderer;\n  let utils, bindingStates, uniformsGroups;\n  function initGLContext() {\n    extensions = new WebGLExtensions(_gl);\n    capabilities = new WebGLCapabilities(_gl, extensions, parameters);\n    extensions.init(capabilities);\n    utils = new WebGLUtils(_gl, extensions, capabilities);\n    state = new WebGLState(_gl, extensions, capabilities);\n    info = new WebGLInfo();\n    properties = new WebGLProperties();\n    textures = new WebGLTextures(_gl, extensions, state, properties, capabilities, utils, info);\n    cubemaps = new WebGLCubeMaps(_this);\n    cubeuvmaps = new WebGLCubeUVMaps(_this);\n    attributes = new WebGLAttributes(_gl, capabilities);\n    bindingStates = new WebGLBindingStates(_gl, extensions, attributes, capabilities);\n    geometries = new WebGLGeometries(_gl, attributes, info, bindingStates);\n    objects = new WebGLObjects(_gl, geometries, attributes, info);\n    morphtargets = new WebGLMorphtargets(_gl, capabilities, textures);\n    clipping = new WebGLClipping(properties);\n    programCache = new WebGLPrograms(_this, cubemaps, cubeuvmaps, extensions, capabilities, bindingStates, clipping);\n    materials = new WebGLMaterials(_this, properties);\n    renderLists = new WebGLRenderLists();\n    renderStates = new WebGLRenderStates(extensions, capabilities);\n    background = new WebGLBackground(_this, cubemaps, state, objects, _alpha, _premultipliedAlpha);\n    shadowMap = new WebGLShadowMap(_this, objects, capabilities);\n    uniformsGroups = new WebGLUniformsGroups(_gl, info, capabilities, state);\n    bufferRenderer = new WebGLBufferRenderer(_gl, extensions, info, capabilities);\n    indexedBufferRenderer = new WebGLIndexedBufferRenderer(_gl, extensions, info, capabilities);\n    info.programs = programCache.programs;\n    _this.capabilities = capabilities;\n    _this.extensions = extensions;\n    _this.properties = properties;\n    _this.renderLists = renderLists;\n    _this.shadowMap = shadowMap;\n    _this.state = state;\n    _this.info = info;\n  }\n  initGLContext();\n  const xr = new WebXRManager(_this, _gl);\n  this.xr = xr;\n  this.getContext = function() {\n    return _gl;\n  };\n  this.getContextAttributes = function() {\n    return _gl.getContextAttributes();\n  };\n  this.forceContextLoss = function() {\n    const extension = extensions.get(\"WEBGL_lose_context\");\n    if (extension)\n      extension.loseContext();\n  };\n  this.forceContextRestore = function() {\n    const extension = extensions.get(\"WEBGL_lose_context\");\n    if (extension)\n      extension.restoreContext();\n  };\n  this.getPixelRatio = function() {\n    return _pixelRatio;\n  };\n  this.setPixelRatio = function(value) {\n    if (value === void 0)\n      return;\n    _pixelRatio = value;\n    this.setSize(_width, _height, false);\n  };\n  this.getSize = function(target) {\n    return target.set(_width, _height);\n  };\n  this.setSize = function(width, height, updateStyle) {\n    if (xr.isPresenting) {\n      console.warn(\"THREE.WebGLRenderer: Can't change size while VR device is presenting.\");\n      return;\n    }\n    _width = width;\n    _height = height;\n    _canvas2.width = Math.floor(width * _pixelRatio);\n    _canvas2.height = Math.floor(height * _pixelRatio);\n    if (updateStyle !== false) {\n      _canvas2.style.width = width + \"px\";\n      _canvas2.style.height = height + \"px\";\n    }\n    this.setViewport(0, 0, width, height);\n  };\n  this.getDrawingBufferSize = function(target) {\n    return target.set(_width * _pixelRatio, _height * _pixelRatio).floor();\n  };\n  this.setDrawingBufferSize = function(width, height, pixelRatio) {\n    _width = width;\n    _height = height;\n    _pixelRatio = pixelRatio;\n    _canvas2.width = Math.floor(width * pixelRatio);\n    _canvas2.height = Math.floor(height * pixelRatio);\n    this.setViewport(0, 0, width, height);\n  };\n  this.getCurrentViewport = function(target) {\n    return target.copy(_currentViewport);\n  };\n  this.getViewport = function(target) {\n    return target.copy(_viewport);\n  };\n  this.setViewport = function(x, y, width, height) {\n    if (x.isVector4) {\n      _viewport.set(x.x, x.y, x.z, x.w);\n    } else {\n      _viewport.set(x, y, width, height);\n    }\n    state.viewport(_currentViewport.copy(_viewport).multiplyScalar(_pixelRatio).floor());\n  };\n  this.getScissor = function(target) {\n    return target.copy(_scissor);\n  };\n  this.setScissor = function(x, y, width, height) {\n    if (x.isVector4) {\n      _scissor.set(x.x, x.y, x.z, x.w);\n    } else {\n      _scissor.set(x, y, width, height);\n    }\n    state.scissor(_currentScissor.copy(_scissor).multiplyScalar(_pixelRatio).floor());\n  };\n  this.getScissorTest = function() {\n    return _scissorTest;\n  };\n  this.setScissorTest = function(boolean) {\n    state.setScissorTest(_scissorTest = boolean);\n  };\n  this.setOpaqueSort = function(method) {\n    _opaqueSort = method;\n  };\n  this.setTransparentSort = function(method) {\n    _transparentSort = method;\n  };\n  this.getClearColor = function(target) {\n    return target.copy(background.getClearColor());\n  };\n  this.setClearColor = function() {\n    background.setClearColor.apply(background, arguments);\n  };\n  this.getClearAlpha = function() {\n    return background.getClearAlpha();\n  };\n  this.setClearAlpha = function() {\n    background.setClearAlpha.apply(background, arguments);\n  };\n  this.clear = function(color = true, depth = true, stencil = true) {\n    let bits2 = 0;\n    if (color)\n      bits2 |= 16384;\n    if (depth)\n      bits2 |= 256;\n    if (stencil)\n      bits2 |= 1024;\n    _gl.clear(bits2);\n  };\n  this.clearColor = function() {\n    this.clear(true, false, false);\n  };\n  this.clearDepth = function() {\n    this.clear(false, true, false);\n  };\n  this.clearStencil = function() {\n    this.clear(false, false, true);\n  };\n  this.dispose = function() {\n    _canvas2.removeEventListener(\"webglcontextlost\", onContextLost, false);\n    _canvas2.removeEventListener(\"webglcontextrestored\", onContextRestore, false);\n    _canvas2.removeEventListener(\"webglcontextcreationerror\", onContextCreationError, false);\n    renderLists.dispose();\n    renderStates.dispose();\n    properties.dispose();\n    cubemaps.dispose();\n    cubeuvmaps.dispose();\n    objects.dispose();\n    bindingStates.dispose();\n    uniformsGroups.dispose();\n    programCache.dispose();\n    xr.dispose();\n    xr.removeEventListener(\"sessionstart\", onXRSessionStart);\n    xr.removeEventListener(\"sessionend\", onXRSessionEnd);\n    if (_transmissionRenderTarget) {\n      _transmissionRenderTarget.dispose();\n      _transmissionRenderTarget = null;\n    }\n    animation.stop();\n  };\n  function onContextLost(event) {\n    event.preventDefault();\n    console.log(\"THREE.WebGLRenderer: Context Lost.\");\n    _isContextLost = true;\n  }\n  function onContextRestore() {\n    console.log(\"THREE.WebGLRenderer: Context Restored.\");\n    _isContextLost = false;\n    const infoAutoReset = info.autoReset;\n    const shadowMapEnabled = shadowMap.enabled;\n    const shadowMapAutoUpdate = shadowMap.autoUpdate;\n    const shadowMapNeedsUpdate = shadowMap.needsUpdate;\n    const shadowMapType = shadowMap.type;\n    initGLContext();\n    info.autoReset = infoAutoReset;\n    shadowMap.enabled = shadowMapEnabled;\n    shadowMap.autoUpdate = shadowMapAutoUpdate;\n    shadowMap.needsUpdate = shadowMapNeedsUpdate;\n    shadowMap.type = shadowMapType;\n  }\n  function onContextCreationError(event) {\n    console.error(\"THREE.WebGLRenderer: A WebGL context could not be created. Reason: \", event.statusMessage);\n  }\n  function onMaterialDispose(event) {\n    const material = event.target;\n    material.removeEventListener(\"dispose\", onMaterialDispose);\n    deallocateMaterial(material);\n  }\n  function deallocateMaterial(material) {\n    releaseMaterialProgramReferences(material);\n    properties.remove(material);\n  }\n  function releaseMaterialProgramReferences(material) {\n    const programs = properties.get(material).programs;\n    if (programs !== void 0) {\n      programs.forEach(function(program) {\n        programCache.releaseProgram(program);\n      });\n      if (material.isShaderMaterial) {\n        programCache.releaseShaderCache(material);\n      }\n    }\n  }\n  this.renderBufferDirect = function(camera, scene, geometry, material, object, group) {\n    if (scene === null)\n      scene = _emptyScene;\n    const frontFaceCW = object.isMesh && object.matrixWorld.determinant() < 0;\n    const program = setProgram(camera, scene, geometry, material, object);\n    state.setMaterial(material, frontFaceCW);\n    let index2 = geometry.index;\n    const position = geometry.attributes.position;\n    if (index2 === null) {\n      if (position === void 0 || position.count === 0)\n        return;\n    } else if (index2.count === 0) {\n      return;\n    }\n    let rangeFactor = 1;\n    if (material.wireframe === true) {\n      index2 = geometries.getWireframeAttribute(geometry);\n      rangeFactor = 2;\n    }\n    bindingStates.setup(object, material, program, geometry, index2);\n    let attribute;\n    let renderer = bufferRenderer;\n    if (index2 !== null) {\n      attribute = attributes.get(index2);\n      renderer = indexedBufferRenderer;\n      renderer.setIndex(attribute);\n    }\n    const dataCount = index2 !== null ? index2.count : position.count;\n    const rangeStart = geometry.drawRange.start * rangeFactor;\n    const rangeCount = geometry.drawRange.count * rangeFactor;\n    const groupStart = group !== null ? group.start * rangeFactor : 0;\n    const groupCount = group !== null ? group.count * rangeFactor : Infinity;\n    const drawStart = Math.max(rangeStart, groupStart);\n    const drawEnd = Math.min(dataCount, rangeStart + rangeCount, groupStart + groupCount) - 1;\n    const drawCount = Math.max(0, drawEnd - drawStart + 1);\n    if (drawCount === 0)\n      return;\n    if (object.isMesh) {\n      if (material.wireframe === true) {\n        state.setLineWidth(material.wireframeLinewidth * getTargetPixelRatio());\n        renderer.setMode(1);\n      } else {\n        renderer.setMode(4);\n      }\n    } else if (object.isLine) {\n      let lineWidth = material.linewidth;\n      if (lineWidth === void 0)\n        lineWidth = 1;\n      state.setLineWidth(lineWidth * getTargetPixelRatio());\n      if (object.isLineSegments) {\n        renderer.setMode(1);\n      } else if (object.isLineLoop) {\n        renderer.setMode(2);\n      } else {\n        renderer.setMode(3);\n      }\n    } else if (object.isPoints) {\n      renderer.setMode(0);\n    } else if (object.isSprite) {\n      renderer.setMode(4);\n    }\n    if (object.isInstancedMesh) {\n      renderer.renderInstances(drawStart, drawCount, object.count);\n    } else if (geometry.isInstancedBufferGeometry) {\n      const instanceCount = Math.min(geometry.instanceCount, geometry._maxInstanceCount);\n      renderer.renderInstances(drawStart, drawCount, instanceCount);\n    } else {\n      renderer.render(drawStart, drawCount);\n    }\n  };\n  this.compile = function(scene, camera) {\n    currentRenderState = renderStates.get(scene);\n    currentRenderState.init();\n    renderStateStack.push(currentRenderState);\n    scene.traverseVisible(function(object) {\n      if (object.isLight && object.layers.test(camera.layers)) {\n        currentRenderState.pushLight(object);\n        if (object.castShadow) {\n          currentRenderState.pushShadow(object);\n        }\n      }\n    });\n    currentRenderState.setupLights(_this.physicallyCorrectLights);\n    scene.traverse(function(object) {\n      const material = object.material;\n      if (material) {\n        if (Array.isArray(material)) {\n          for (let i = 0; i < material.length; i++) {\n            const material2 = material[i];\n            getProgram(material2, scene, object);\n          }\n        } else {\n          getProgram(material, scene, object);\n        }\n      }\n    });\n    renderStateStack.pop();\n    currentRenderState = null;\n  };\n  let onAnimationFrameCallback = null;\n  function onAnimationFrame(time) {\n    if (onAnimationFrameCallback)\n      onAnimationFrameCallback(time);\n  }\n  function onXRSessionStart() {\n    animation.stop();\n  }\n  function onXRSessionEnd() {\n    animation.start();\n  }\n  const animation = new WebGLAnimation();\n  animation.setAnimationLoop(onAnimationFrame);\n  if (typeof self !== \"undefined\")\n    animation.setContext(self);\n  this.setAnimationLoop = function(callback) {\n    onAnimationFrameCallback = callback;\n    xr.setAnimationLoop(callback);\n    callback === null ? animation.stop() : animation.start();\n  };\n  xr.addEventListener(\"sessionstart\", onXRSessionStart);\n  xr.addEventListener(\"sessionend\", onXRSessionEnd);\n  this.render = function(scene, camera) {\n    if (camera !== void 0 && camera.isCamera !== true) {\n      console.error(\"THREE.WebGLRenderer.render: camera is not an instance of THREE.Camera.\");\n      return;\n    }\n    if (_isContextLost === true)\n      return;\n    if (scene.autoUpdate === true)\n      scene.updateMatrixWorld();\n    if (camera.parent === null)\n      camera.updateMatrixWorld();\n    if (xr.enabled === true && xr.isPresenting === true) {\n      if (xr.cameraAutoUpdate === true)\n        xr.updateCamera(camera);\n      camera = xr.getCamera();\n    }\n    if (scene.isScene === true)\n      scene.onBeforeRender(_this, scene, camera, _currentRenderTarget);\n    currentRenderState = renderStates.get(scene, renderStateStack.length);\n    currentRenderState.init();\n    renderStateStack.push(currentRenderState);\n    _projScreenMatrix2.multiplyMatrices(camera.projectionMatrix, camera.matrixWorldInverse);\n    _frustum.setFromProjectionMatrix(_projScreenMatrix2);\n    _localClippingEnabled = this.localClippingEnabled;\n    _clippingEnabled = clipping.init(this.clippingPlanes, _localClippingEnabled, camera);\n    currentRenderList = renderLists.get(scene, renderListStack.length);\n    currentRenderList.init();\n    renderListStack.push(currentRenderList);\n    projectObject(scene, camera, 0, _this.sortObjects);\n    currentRenderList.finish();\n    if (_this.sortObjects === true) {\n      currentRenderList.sort(_opaqueSort, _transparentSort);\n    }\n    if (_clippingEnabled === true)\n      clipping.beginShadows();\n    const shadowsArray = currentRenderState.state.shadowsArray;\n    shadowMap.render(shadowsArray, scene, camera);\n    if (_clippingEnabled === true)\n      clipping.endShadows();\n    if (this.info.autoReset === true)\n      this.info.reset();\n    background.render(currentRenderList, scene);\n    currentRenderState.setupLights(_this.physicallyCorrectLights);\n    if (camera.isArrayCamera) {\n      const cameras = camera.cameras;\n      for (let i = 0, l = cameras.length; i < l; i++) {\n        const camera2 = cameras[i];\n        renderScene(currentRenderList, scene, camera2, camera2.viewport);\n      }\n    } else {\n      renderScene(currentRenderList, scene, camera);\n    }\n    if (_currentRenderTarget !== null) {\n      textures.updateMultisampleRenderTarget(_currentRenderTarget);\n      textures.updateRenderTargetMipmap(_currentRenderTarget);\n    }\n    if (scene.isScene === true)\n      scene.onAfterRender(_this, scene, camera);\n    bindingStates.resetDefaultState();\n    _currentMaterialId = -1;\n    _currentCamera = null;\n    renderStateStack.pop();\n    if (renderStateStack.length > 0) {\n      currentRenderState = renderStateStack[renderStateStack.length - 1];\n    } else {\n      currentRenderState = null;\n    }\n    renderListStack.pop();\n    if (renderListStack.length > 0) {\n      currentRenderList = renderListStack[renderListStack.length - 1];\n    } else {\n      currentRenderList = null;\n    }\n  };\n  function projectObject(object, camera, groupOrder, sortObjects) {\n    if (object.visible === false)\n      return;\n    const visible = object.layers.test(camera.layers);\n    if (visible) {\n      if (object.isGroup) {\n        groupOrder = object.renderOrder;\n      } else if (object.isLOD) {\n        if (object.autoUpdate === true)\n          object.update(camera);\n      } else if (object.isLight) {\n        currentRenderState.pushLight(object);\n        if (object.castShadow) {\n          currentRenderState.pushShadow(object);\n        }\n      } else if (object.isSprite) {\n        if (!object.frustumCulled || _frustum.intersectsSprite(object)) {\n          if (sortObjects) {\n            _vector3.setFromMatrixPosition(object.matrixWorld).applyMatrix4(_projScreenMatrix2);\n          }\n          const geometry = objects.update(object);\n          const material = object.material;\n          if (material.visible) {\n            currentRenderList.push(object, geometry, material, groupOrder, _vector3.z, null);\n          }\n        }\n      } else if (object.isMesh || object.isLine || object.isPoints) {\n        if (object.isSkinnedMesh) {\n          if (object.skeleton.frame !== info.render.frame) {\n            object.skeleton.update();\n            object.skeleton.frame = info.render.frame;\n          }\n        }\n        if (!object.frustumCulled || _frustum.intersectsObject(object)) {\n          if (sortObjects) {\n            _vector3.setFromMatrixPosition(object.matrixWorld).applyMatrix4(_projScreenMatrix2);\n          }\n          const geometry = objects.update(object);\n          const material = object.material;\n          if (Array.isArray(material)) {\n            const groups = geometry.groups;\n            for (let i = 0, l = groups.length; i < l; i++) {\n              const group = groups[i];\n              const groupMaterial = material[group.materialIndex];\n              if (groupMaterial && groupMaterial.visible) {\n                currentRenderList.push(object, geometry, groupMaterial, groupOrder, _vector3.z, group);\n              }\n            }\n          } else if (material.visible) {\n            currentRenderList.push(object, geometry, material, groupOrder, _vector3.z, null);\n          }\n        }\n      }\n    }\n    const children = object.children;\n    for (let i = 0, l = children.length; i < l; i++) {\n      projectObject(children[i], camera, groupOrder, sortObjects);\n    }\n  }\n  function renderScene(currentRenderList2, scene, camera, viewport) {\n    const opaqueObjects = currentRenderList2.opaque;\n    const transmissiveObjects = currentRenderList2.transmissive;\n    const transparentObjects = currentRenderList2.transparent;\n    currentRenderState.setupLightsView(camera);\n    if (transmissiveObjects.length > 0)\n      renderTransmissionPass(opaqueObjects, scene, camera);\n    if (viewport)\n      state.viewport(_currentViewport.copy(viewport));\n    if (opaqueObjects.length > 0)\n      renderObjects(opaqueObjects, scene, camera);\n    if (transmissiveObjects.length > 0)\n      renderObjects(transmissiveObjects, scene, camera);\n    if (transparentObjects.length > 0)\n      renderObjects(transparentObjects, scene, camera);\n    state.buffers.depth.setTest(true);\n    state.buffers.depth.setMask(true);\n    state.buffers.color.setMask(true);\n    state.setPolygonOffset(false);\n  }\n  function renderTransmissionPass(opaqueObjects, scene, camera) {\n    const isWebGL2 = capabilities.isWebGL2;\n    if (_transmissionRenderTarget === null) {\n      _transmissionRenderTarget = new WebGLRenderTarget(1, 1, {\n        generateMipmaps: true,\n        type: extensions.has(\"EXT_color_buffer_half_float\") ? HalfFloatType : UnsignedByteType,\n        minFilter: LinearMipmapLinearFilter,\n        samples: isWebGL2 && _antialias === true ? 4 : 0\n      });\n    }\n    _this.getDrawingBufferSize(_vector22);\n    if (isWebGL2) {\n      _transmissionRenderTarget.setSize(_vector22.x, _vector22.y);\n    } else {\n      _transmissionRenderTarget.setSize(floorPowerOfTwo(_vector22.x), floorPowerOfTwo(_vector22.y));\n    }\n    const currentRenderTarget = _this.getRenderTarget();\n    _this.setRenderTarget(_transmissionRenderTarget);\n    _this.clear();\n    const currentToneMapping = _this.toneMapping;\n    _this.toneMapping = NoToneMapping;\n    renderObjects(opaqueObjects, scene, camera);\n    _this.toneMapping = currentToneMapping;\n    textures.updateMultisampleRenderTarget(_transmissionRenderTarget);\n    textures.updateRenderTargetMipmap(_transmissionRenderTarget);\n    _this.setRenderTarget(currentRenderTarget);\n  }\n  function renderObjects(renderList, scene, camera) {\n    const overrideMaterial = scene.isScene === true ? scene.overrideMaterial : null;\n    for (let i = 0, l = renderList.length; i < l; i++) {\n      const renderItem = renderList[i];\n      const object = renderItem.object;\n      const geometry = renderItem.geometry;\n      const material = overrideMaterial === null ? renderItem.material : overrideMaterial;\n      const group = renderItem.group;\n      if (object.layers.test(camera.layers)) {\n        renderObject(object, scene, camera, geometry, material, group);\n      }\n    }\n  }\n  function renderObject(object, scene, camera, geometry, material, group) {\n    object.onBeforeRender(_this, scene, camera, geometry, material, group);\n    object.modelViewMatrix.multiplyMatrices(camera.matrixWorldInverse, object.matrixWorld);\n    object.normalMatrix.getNormalMatrix(object.modelViewMatrix);\n    material.onBeforeRender(_this, scene, camera, geometry, object, group);\n    if (material.transparent === true && material.side === DoubleSide) {\n      material.side = BackSide;\n      material.needsUpdate = true;\n      _this.renderBufferDirect(camera, scene, geometry, material, object, group);\n      material.side = FrontSide;\n      material.needsUpdate = true;\n      _this.renderBufferDirect(camera, scene, geometry, material, object, group);\n      material.side = DoubleSide;\n    } else {\n      _this.renderBufferDirect(camera, scene, geometry, material, object, group);\n    }\n    object.onAfterRender(_this, scene, camera, geometry, material, group);\n  }\n  function getProgram(material, scene, object) {\n    if (scene.isScene !== true)\n      scene = _emptyScene;\n    const materialProperties = properties.get(material);\n    const lights = currentRenderState.state.lights;\n    const shadowsArray = currentRenderState.state.shadowsArray;\n    const lightsStateVersion = lights.state.version;\n    const parameters2 = programCache.getParameters(material, lights.state, shadowsArray, scene, object);\n    const programCacheKey = programCache.getProgramCacheKey(parameters2);\n    let programs = materialProperties.programs;\n    materialProperties.environment = material.isMeshStandardMaterial ? scene.environment : null;\n    materialProperties.fog = scene.fog;\n    materialProperties.envMap = (material.isMeshStandardMaterial ? cubeuvmaps : cubemaps).get(material.envMap || materialProperties.environment);\n    if (programs === void 0) {\n      material.addEventListener(\"dispose\", onMaterialDispose);\n      programs = /* @__PURE__ */ new Map();\n      materialProperties.programs = programs;\n    }\n    let program = programs.get(programCacheKey);\n    if (program !== void 0) {\n      if (materialProperties.currentProgram === program && materialProperties.lightsStateVersion === lightsStateVersion) {\n        updateCommonMaterialProperties(material, parameters2);\n        return program;\n      }\n    } else {\n      parameters2.uniforms = programCache.getUniforms(material);\n      material.onBuild(object, parameters2, _this);\n      material.onBeforeCompile(parameters2, _this);\n      program = programCache.acquireProgram(parameters2, programCacheKey);\n      programs.set(programCacheKey, program);\n      materialProperties.uniforms = parameters2.uniforms;\n    }\n    const uniforms = materialProperties.uniforms;\n    if (!material.isShaderMaterial && !material.isRawShaderMaterial || material.clipping === true) {\n      uniforms.clippingPlanes = clipping.uniform;\n    }\n    updateCommonMaterialProperties(material, parameters2);\n    materialProperties.needsLights = materialNeedsLights(material);\n    materialProperties.lightsStateVersion = lightsStateVersion;\n    if (materialProperties.needsLights) {\n      uniforms.ambientLightColor.value = lights.state.ambient;\n      uniforms.lightProbe.value = lights.state.probe;\n      uniforms.directionalLights.value = lights.state.directional;\n      uniforms.directionalLightShadows.value = lights.state.directionalShadow;\n      uniforms.spotLights.value = lights.state.spot;\n      uniforms.spotLightShadows.value = lights.state.spotShadow;\n      uniforms.rectAreaLights.value = lights.state.rectArea;\n      uniforms.ltc_1.value = lights.state.rectAreaLTC1;\n      uniforms.ltc_2.value = lights.state.rectAreaLTC2;\n      uniforms.pointLights.value = lights.state.point;\n      uniforms.pointLightShadows.value = lights.state.pointShadow;\n      uniforms.hemisphereLights.value = lights.state.hemi;\n      uniforms.directionalShadowMap.value = lights.state.directionalShadowMap;\n      uniforms.directionalShadowMatrix.value = lights.state.directionalShadowMatrix;\n      uniforms.spotShadowMap.value = lights.state.spotShadowMap;\n      uniforms.spotShadowMatrix.value = lights.state.spotShadowMatrix;\n      uniforms.pointShadowMap.value = lights.state.pointShadowMap;\n      uniforms.pointShadowMatrix.value = lights.state.pointShadowMatrix;\n    }\n    const progUniforms = program.getUniforms();\n    const uniformsList = WebGLUniforms.seqWithValue(progUniforms.seq, uniforms);\n    materialProperties.currentProgram = program;\n    materialProperties.uniformsList = uniformsList;\n    return program;\n  }\n  function updateCommonMaterialProperties(material, parameters2) {\n    const materialProperties = properties.get(material);\n    materialProperties.outputEncoding = parameters2.outputEncoding;\n    materialProperties.instancing = parameters2.instancing;\n    materialProperties.skinning = parameters2.skinning;\n    materialProperties.morphTargets = parameters2.morphTargets;\n    materialProperties.morphNormals = parameters2.morphNormals;\n    materialProperties.morphColors = parameters2.morphColors;\n    materialProperties.morphTargetsCount = parameters2.morphTargetsCount;\n    materialProperties.numClippingPlanes = parameters2.numClippingPlanes;\n    materialProperties.numIntersection = parameters2.numClipIntersection;\n    materialProperties.vertexAlphas = parameters2.vertexAlphas;\n    materialProperties.vertexTangents = parameters2.vertexTangents;\n    materialProperties.toneMapping = parameters2.toneMapping;\n  }\n  function setProgram(camera, scene, geometry, material, object) {\n    if (scene.isScene !== true)\n      scene = _emptyScene;\n    textures.resetTextureUnits();\n    const fog = scene.fog;\n    const environment = material.isMeshStandardMaterial ? scene.environment : null;\n    const encoding = _currentRenderTarget === null ? _this.outputEncoding : _currentRenderTarget.isXRRenderTarget === true ? _currentRenderTarget.texture.encoding : LinearEncoding;\n    const envMap = (material.isMeshStandardMaterial ? cubeuvmaps : cubemaps).get(material.envMap || environment);\n    const vertexAlphas = material.vertexColors === true && !!geometry.attributes.color && geometry.attributes.color.itemSize === 4;\n    const vertexTangents = !!material.normalMap && !!geometry.attributes.tangent;\n    const morphTargets = !!geometry.morphAttributes.position;\n    const morphNormals = !!geometry.morphAttributes.normal;\n    const morphColors = !!geometry.morphAttributes.color;\n    const toneMapping = material.toneMapped ? _this.toneMapping : NoToneMapping;\n    const morphAttribute = geometry.morphAttributes.position || geometry.morphAttributes.normal || geometry.morphAttributes.color;\n    const morphTargetsCount = morphAttribute !== void 0 ? morphAttribute.length : 0;\n    const materialProperties = properties.get(material);\n    const lights = currentRenderState.state.lights;\n    if (_clippingEnabled === true) {\n      if (_localClippingEnabled === true || camera !== _currentCamera) {\n        const useCache = camera === _currentCamera && material.id === _currentMaterialId;\n        clipping.setState(material, camera, useCache);\n      }\n    }\n    let needsProgramChange = false;\n    if (material.version === materialProperties.__version) {\n      if (materialProperties.needsLights && materialProperties.lightsStateVersion !== lights.state.version) {\n        needsProgramChange = true;\n      } else if (materialProperties.outputEncoding !== encoding) {\n        needsProgramChange = true;\n      } else if (object.isInstancedMesh && materialProperties.instancing === false) {\n        needsProgramChange = true;\n      } else if (!object.isInstancedMesh && materialProperties.instancing === true) {\n        needsProgramChange = true;\n      } else if (object.isSkinnedMesh && materialProperties.skinning === false) {\n        needsProgramChange = true;\n      } else if (!object.isSkinnedMesh && materialProperties.skinning === true) {\n        needsProgramChange = true;\n      } else if (materialProperties.envMap !== envMap) {\n        needsProgramChange = true;\n      } else if (material.fog === true && materialProperties.fog !== fog) {\n        needsProgramChange = true;\n      } else if (materialProperties.numClippingPlanes !== void 0 && (materialProperties.numClippingPlanes !== clipping.numPlanes || materialProperties.numIntersection !== clipping.numIntersection)) {\n        needsProgramChange = true;\n      } else if (materialProperties.vertexAlphas !== vertexAlphas) {\n        needsProgramChange = true;\n      } else if (materialProperties.vertexTangents !== vertexTangents) {\n        needsProgramChange = true;\n      } else if (materialProperties.morphTargets !== morphTargets) {\n        needsProgramChange = true;\n      } else if (materialProperties.morphNormals !== morphNormals) {\n        needsProgramChange = true;\n      } else if (materialProperties.morphColors !== morphColors) {\n        needsProgramChange = true;\n      } else if (materialProperties.toneMapping !== toneMapping) {\n        needsProgramChange = true;\n      } else if (capabilities.isWebGL2 === true && materialProperties.morphTargetsCount !== morphTargetsCount) {\n        needsProgramChange = true;\n      }\n    } else {\n      needsProgramChange = true;\n      materialProperties.__version = material.version;\n    }\n    let program = materialProperties.currentProgram;\n    if (needsProgramChange === true) {\n      program = getProgram(material, scene, object);\n    }\n    let refreshProgram = false;\n    let refreshMaterial = false;\n    let refreshLights = false;\n    const p_uniforms = program.getUniforms(), m_uniforms = materialProperties.uniforms;\n    if (state.useProgram(program.program)) {\n      refreshProgram = true;\n      refreshMaterial = true;\n      refreshLights = true;\n    }\n    if (material.id !== _currentMaterialId) {\n      _currentMaterialId = material.id;\n      refreshMaterial = true;\n    }\n    if (refreshProgram || _currentCamera !== camera) {\n      p_uniforms.setValue(_gl, \"projectionMatrix\", camera.projectionMatrix);\n      if (capabilities.logarithmicDepthBuffer) {\n        p_uniforms.setValue(_gl, \"logDepthBufFC\", 2 / (Math.log(camera.far + 1) / Math.LN2));\n      }\n      if (_currentCamera !== camera) {\n        _currentCamera = camera;\n        refreshMaterial = true;\n        refreshLights = true;\n      }\n      if (material.isShaderMaterial || material.isMeshPhongMaterial || material.isMeshToonMaterial || material.isMeshStandardMaterial || material.envMap) {\n        const uCamPos = p_uniforms.map.cameraPosition;\n        if (uCamPos !== void 0) {\n          uCamPos.setValue(_gl, _vector3.setFromMatrixPosition(camera.matrixWorld));\n        }\n      }\n      if (material.isMeshPhongMaterial || material.isMeshToonMaterial || material.isMeshLambertMaterial || material.isMeshBasicMaterial || material.isMeshStandardMaterial || material.isShaderMaterial) {\n        p_uniforms.setValue(_gl, \"isOrthographic\", camera.isOrthographicCamera === true);\n      }\n      if (material.isMeshPhongMaterial || material.isMeshToonMaterial || material.isMeshLambertMaterial || material.isMeshBasicMaterial || material.isMeshStandardMaterial || material.isShaderMaterial || material.isShadowMaterial || object.isSkinnedMesh) {\n        p_uniforms.setValue(_gl, \"viewMatrix\", camera.matrixWorldInverse);\n      }\n    }\n    if (object.isSkinnedMesh) {\n      p_uniforms.setOptional(_gl, object, \"bindMatrix\");\n      p_uniforms.setOptional(_gl, object, \"bindMatrixInverse\");\n      const skeleton = object.skeleton;\n      if (skeleton) {\n        if (capabilities.floatVertexTextures) {\n          if (skeleton.boneTexture === null)\n            skeleton.computeBoneTexture();\n          p_uniforms.setValue(_gl, \"boneTexture\", skeleton.boneTexture, textures);\n          p_uniforms.setValue(_gl, \"boneTextureSize\", skeleton.boneTextureSize);\n        } else {\n          console.warn(\"THREE.WebGLRenderer: SkinnedMesh can only be used with WebGL 2. With WebGL 1 OES_texture_float and vertex textures support is required.\");\n        }\n      }\n    }\n    const morphAttributes = geometry.morphAttributes;\n    if (morphAttributes.position !== void 0 || morphAttributes.normal !== void 0 || morphAttributes.color !== void 0 && capabilities.isWebGL2 === true) {\n      morphtargets.update(object, geometry, material, program);\n    }\n    if (refreshMaterial || materialProperties.receiveShadow !== object.receiveShadow) {\n      materialProperties.receiveShadow = object.receiveShadow;\n      p_uniforms.setValue(_gl, \"receiveShadow\", object.receiveShadow);\n    }\n    if (refreshMaterial) {\n      p_uniforms.setValue(_gl, \"toneMappingExposure\", _this.toneMappingExposure);\n      if (materialProperties.needsLights) {\n        markUniformsLightsNeedsUpdate(m_uniforms, refreshLights);\n      }\n      if (fog && material.fog === true) {\n        materials.refreshFogUniforms(m_uniforms, fog);\n      }\n      materials.refreshMaterialUniforms(m_uniforms, material, _pixelRatio, _height, _transmissionRenderTarget);\n      WebGLUniforms.upload(_gl, materialProperties.uniformsList, m_uniforms, textures);\n    }\n    if (material.isShaderMaterial && material.uniformsNeedUpdate === true) {\n      WebGLUniforms.upload(_gl, materialProperties.uniformsList, m_uniforms, textures);\n      material.uniformsNeedUpdate = false;\n    }\n    if (material.isSpriteMaterial) {\n      p_uniforms.setValue(_gl, \"center\", object.center);\n    }\n    p_uniforms.setValue(_gl, \"modelViewMatrix\", object.modelViewMatrix);\n    p_uniforms.setValue(_gl, \"normalMatrix\", object.normalMatrix);\n    p_uniforms.setValue(_gl, \"modelMatrix\", object.matrixWorld);\n    if (material.isShaderMaterial || material.isRawShaderMaterial) {\n      const groups = material.uniformsGroups;\n      for (let i = 0, l = groups.length; i < l; i++) {\n        if (capabilities.isWebGL2) {\n          const group = groups[i];\n          uniformsGroups.update(group, program);\n          uniformsGroups.bind(group, program);\n        } else {\n          console.warn(\"THREE.WebGLRenderer: Uniform Buffer Objects can only be used with WebGL 2.\");\n        }\n      }\n    }\n    return program;\n  }\n  function markUniformsLightsNeedsUpdate(uniforms, value) {\n    uniforms.ambientLightColor.needsUpdate = value;\n    uniforms.lightProbe.needsUpdate = value;\n    uniforms.directionalLights.needsUpdate = value;\n    uniforms.directionalLightShadows.needsUpdate = value;\n    uniforms.pointLights.needsUpdate = value;\n    uniforms.pointLightShadows.needsUpdate = value;\n    uniforms.spotLights.needsUpdate = value;\n    uniforms.spotLightShadows.needsUpdate = value;\n    uniforms.rectAreaLights.needsUpdate = value;\n    uniforms.hemisphereLights.needsUpdate = value;\n  }\n  function materialNeedsLights(material) {\n    return material.isMeshLambertMaterial || material.isMeshToonMaterial || material.isMeshPhongMaterial || material.isMeshStandardMaterial || material.isShadowMaterial || material.isShaderMaterial && material.lights === true;\n  }\n  this.getActiveCubeFace = function() {\n    return _currentActiveCubeFace;\n  };\n  this.getActiveMipmapLevel = function() {\n    return _currentActiveMipmapLevel;\n  };\n  this.getRenderTarget = function() {\n    return _currentRenderTarget;\n  };\n  this.setRenderTargetTextures = function(renderTarget, colorTexture, depthTexture) {\n    properties.get(renderTarget.texture).__webglTexture = colorTexture;\n    properties.get(renderTarget.depthTexture).__webglTexture = depthTexture;\n    const renderTargetProperties = properties.get(renderTarget);\n    renderTargetProperties.__hasExternalTextures = true;\n    if (renderTargetProperties.__hasExternalTextures) {\n      renderTargetProperties.__autoAllocateDepthBuffer = depthTexture === void 0;\n      if (!renderTargetProperties.__autoAllocateDepthBuffer) {\n        if (extensions.has(\"WEBGL_multisampled_render_to_texture\") === true) {\n          console.warn(\"THREE.WebGLRenderer: Render-to-texture extension was disabled because an external texture was provided\");\n          renderTargetProperties.__useRenderToTexture = false;\n        }\n      }\n    }\n  };\n  this.setRenderTargetFramebuffer = function(renderTarget, defaultFramebuffer) {\n    const renderTargetProperties = properties.get(renderTarget);\n    renderTargetProperties.__webglFramebuffer = defaultFramebuffer;\n    renderTargetProperties.__useDefaultFramebuffer = defaultFramebuffer === void 0;\n  };\n  this.setRenderTarget = function(renderTarget, activeCubeFace = 0, activeMipmapLevel = 0) {\n    _currentRenderTarget = renderTarget;\n    _currentActiveCubeFace = activeCubeFace;\n    _currentActiveMipmapLevel = activeMipmapLevel;\n    let useDefaultFramebuffer = true;\n    if (renderTarget) {\n      const renderTargetProperties = properties.get(renderTarget);\n      if (renderTargetProperties.__useDefaultFramebuffer !== void 0) {\n        state.bindFramebuffer(36160, null);\n        useDefaultFramebuffer = false;\n      } else if (renderTargetProperties.__webglFramebuffer === void 0) {\n        textures.setupRenderTarget(renderTarget);\n      } else if (renderTargetProperties.__hasExternalTextures) {\n        textures.rebindTextures(renderTarget, properties.get(renderTarget.texture).__webglTexture, properties.get(renderTarget.depthTexture).__webglTexture);\n      }\n    }\n    let framebuffer = null;\n    let isCube = false;\n    let isRenderTarget3D = false;\n    if (renderTarget) {\n      const texture = renderTarget.texture;\n      if (texture.isData3DTexture || texture.isDataArrayTexture) {\n        isRenderTarget3D = true;\n      }\n      const __webglFramebuffer = properties.get(renderTarget).__webglFramebuffer;\n      if (renderTarget.isWebGLCubeRenderTarget) {\n        framebuffer = __webglFramebuffer[activeCubeFace];\n        isCube = true;\n      } else if (capabilities.isWebGL2 && renderTarget.samples > 0 && textures.useMultisampledRTT(renderTarget) === false) {\n        framebuffer = properties.get(renderTarget).__webglMultisampledFramebuffer;\n      } else {\n        framebuffer = __webglFramebuffer;\n      }\n      _currentViewport.copy(renderTarget.viewport);\n      _currentScissor.copy(renderTarget.scissor);\n      _currentScissorTest = renderTarget.scissorTest;\n    } else {\n      _currentViewport.copy(_viewport).multiplyScalar(_pixelRatio).floor();\n      _currentScissor.copy(_scissor).multiplyScalar(_pixelRatio).floor();\n      _currentScissorTest = _scissorTest;\n    }\n    const framebufferBound = state.bindFramebuffer(36160, framebuffer);\n    if (framebufferBound && capabilities.drawBuffers && useDefaultFramebuffer) {\n      state.drawBuffers(renderTarget, framebuffer);\n    }\n    state.viewport(_currentViewport);\n    state.scissor(_currentScissor);\n    state.setScissorTest(_currentScissorTest);\n    if (isCube) {\n      const textureProperties = properties.get(renderTarget.texture);\n      _gl.framebufferTexture2D(36160, 36064, 34069 + activeCubeFace, textureProperties.__webglTexture, activeMipmapLevel);\n    } else if (isRenderTarget3D) {\n      const textureProperties = properties.get(renderTarget.texture);\n      const layer = activeCubeFace || 0;\n      _gl.framebufferTextureLayer(36160, 36064, textureProperties.__webglTexture, activeMipmapLevel || 0, layer);\n    }\n    _currentMaterialId = -1;\n  };\n  this.readRenderTargetPixels = function(renderTarget, x, y, width, height, buffer, activeCubeFaceIndex) {\n    if (!(renderTarget && renderTarget.isWebGLRenderTarget)) {\n      console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.\");\n      return;\n    }\n    let framebuffer = properties.get(renderTarget).__webglFramebuffer;\n    if (renderTarget.isWebGLCubeRenderTarget && activeCubeFaceIndex !== void 0) {\n      framebuffer = framebuffer[activeCubeFaceIndex];\n    }\n    if (framebuffer) {\n      state.bindFramebuffer(36160, framebuffer);\n      try {\n        const texture = renderTarget.texture;\n        const textureFormat = texture.format;\n        const textureType = texture.type;\n        if (textureFormat !== RGBAFormat && utils.convert(textureFormat) !== _gl.getParameter(35739)) {\n          console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.\");\n          return;\n        }\n        const halfFloatSupportedByExt = textureType === HalfFloatType && (extensions.has(\"EXT_color_buffer_half_float\") || capabilities.isWebGL2 && extensions.has(\"EXT_color_buffer_float\"));\n        if (textureType !== UnsignedByteType && utils.convert(textureType) !== _gl.getParameter(35738) && !(textureType === FloatType && (capabilities.isWebGL2 || extensions.has(\"OES_texture_float\") || extensions.has(\"WEBGL_color_buffer_float\"))) && !halfFloatSupportedByExt) {\n          console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.\");\n          return;\n        }\n        if (x >= 0 && x <= renderTarget.width - width && (y >= 0 && y <= renderTarget.height - height)) {\n          _gl.readPixels(x, y, width, height, utils.convert(textureFormat), utils.convert(textureType), buffer);\n        }\n      } finally {\n        const framebuffer2 = _currentRenderTarget !== null ? properties.get(_currentRenderTarget).__webglFramebuffer : null;\n        state.bindFramebuffer(36160, framebuffer2);\n      }\n    }\n  };\n  this.copyFramebufferToTexture = function(position, texture, level = 0) {\n    const levelScale = Math.pow(2, -level);\n    const width = Math.floor(texture.image.width * levelScale);\n    const height = Math.floor(texture.image.height * levelScale);\n    textures.setTexture2D(texture, 0);\n    _gl.copyTexSubImage2D(3553, level, 0, 0, position.x, position.y, width, height);\n    state.unbindTexture();\n  };\n  this.copyTextureToTexture = function(position, srcTexture, dstTexture, level = 0) {\n    const width = srcTexture.image.width;\n    const height = srcTexture.image.height;\n    const glFormat = utils.convert(dstTexture.format);\n    const glType = utils.convert(dstTexture.type);\n    textures.setTexture2D(dstTexture, 0);\n    _gl.pixelStorei(37440, dstTexture.flipY);\n    _gl.pixelStorei(37441, dstTexture.premultiplyAlpha);\n    _gl.pixelStorei(3317, dstTexture.unpackAlignment);\n    if (srcTexture.isDataTexture) {\n      _gl.texSubImage2D(3553, level, position.x, position.y, width, height, glFormat, glType, srcTexture.image.data);\n    } else {\n      if (srcTexture.isCompressedTexture) {\n        _gl.compressedTexSubImage2D(3553, level, position.x, position.y, srcTexture.mipmaps[0].width, srcTexture.mipmaps[0].height, glFormat, srcTexture.mipmaps[0].data);\n      } else {\n        _gl.texSubImage2D(3553, level, position.x, position.y, glFormat, glType, srcTexture.image);\n      }\n    }\n    if (level === 0 && dstTexture.generateMipmaps)\n      _gl.generateMipmap(3553);\n    state.unbindTexture();\n  };\n  this.copyTextureToTexture3D = function(sourceBox, position, srcTexture, dstTexture, level = 0) {\n    if (_this.isWebGL1Renderer) {\n      console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: can only be used with WebGL2.\");\n      return;\n    }\n    const width = sourceBox.max.x - sourceBox.min.x + 1;\n    const height = sourceBox.max.y - sourceBox.min.y + 1;\n    const depth = sourceBox.max.z - sourceBox.min.z + 1;\n    const glFormat = utils.convert(dstTexture.format);\n    const glType = utils.convert(dstTexture.type);\n    let glTarget;\n    if (dstTexture.isData3DTexture) {\n      textures.setTexture3D(dstTexture, 0);\n      glTarget = 32879;\n    } else if (dstTexture.isDataArrayTexture) {\n      textures.setTexture2DArray(dstTexture, 0);\n      glTarget = 35866;\n    } else {\n      console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: only supports THREE.DataTexture3D and THREE.DataTexture2DArray.\");\n      return;\n    }\n    _gl.pixelStorei(37440, dstTexture.flipY);\n    _gl.pixelStorei(37441, dstTexture.premultiplyAlpha);\n    _gl.pixelStorei(3317, dstTexture.unpackAlignment);\n    const unpackRowLen = _gl.getParameter(3314);\n    const unpackImageHeight = _gl.getParameter(32878);\n    const unpackSkipPixels = _gl.getParameter(3316);\n    const unpackSkipRows = _gl.getParameter(3315);\n    const unpackSkipImages = _gl.getParameter(32877);\n    const image = srcTexture.isCompressedTexture ? srcTexture.mipmaps[0] : srcTexture.image;\n    _gl.pixelStorei(3314, image.width);\n    _gl.pixelStorei(32878, image.height);\n    _gl.pixelStorei(3316, sourceBox.min.x);\n    _gl.pixelStorei(3315, sourceBox.min.y);\n    _gl.pixelStorei(32877, sourceBox.min.z);\n    if (srcTexture.isDataTexture || srcTexture.isData3DTexture) {\n      _gl.texSubImage3D(glTarget, level, position.x, position.y, position.z, width, height, depth, glFormat, glType, image.data);\n    } else {\n      if (srcTexture.isCompressedTexture) {\n        console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: untested support for compressed srcTexture.\");\n        _gl.compressedTexSubImage3D(glTarget, level, position.x, position.y, position.z, width, height, depth, glFormat, image.data);\n      } else {\n        _gl.texSubImage3D(glTarget, level, position.x, position.y, position.z, width, height, depth, glFormat, glType, image);\n      }\n    }\n    _gl.pixelStorei(3314, unpackRowLen);\n    _gl.pixelStorei(32878, unpackImageHeight);\n    _gl.pixelStorei(3316, unpackSkipPixels);\n    _gl.pixelStorei(3315, unpackSkipRows);\n    _gl.pixelStorei(32877, unpackSkipImages);\n    if (level === 0 && dstTexture.generateMipmaps)\n      _gl.generateMipmap(glTarget);\n    state.unbindTexture();\n  };\n  this.initTexture = function(texture) {\n    if (texture.isCubeTexture) {\n      textures.setTextureCube(texture, 0);\n    } else if (texture.isData3DTexture) {\n      textures.setTexture3D(texture, 0);\n    } else if (texture.isDataArrayTexture) {\n      textures.setTexture2DArray(texture, 0);\n    } else {\n      textures.setTexture2D(texture, 0);\n    }\n    state.unbindTexture();\n  };\n  this.resetState = function() {\n    _currentActiveCubeFace = 0;\n    _currentActiveMipmapLevel = 0;\n    _currentRenderTarget = null;\n    state.reset();\n    bindingStates.reset();\n  };\n  if (typeof __THREE_DEVTOOLS__ !== \"undefined\") {\n    __THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"observe\", { detail: this }));\n  }\n}\nclass WebGL1Renderer extends WebGLRenderer {\n}\nWebGL1Renderer.prototype.isWebGL1Renderer = true;\nclass FogExp2 {\n  constructor(color, density = 25e-5) {\n    this.isFogExp2 = true;\n    this.name = \"\";\n    this.color = new Color(color);\n    this.density = density;\n  }\n  clone() {\n    return new FogExp2(this.color, this.density);\n  }\n  toJSON() {\n    return {\n      type: \"FogExp2\",\n      color: this.color.getHex(),\n      density: this.density\n    };\n  }\n}\nclass Fog {\n  constructor(color, near = 1, far = 1e3) {\n    this.isFog = true;\n    this.name = \"\";\n    this.color = new Color(color);\n    this.near = near;\n    this.far = far;\n  }\n  clone() {\n    return new Fog(this.color, this.near, this.far);\n  }\n  toJSON() {\n    return {\n      type: \"Fog\",\n      color: this.color.getHex(),\n      near: this.near,\n      far: this.far\n    };\n  }\n}\nclass Scene extends Object3D {\n  constructor() {\n    super();\n    this.isScene = true;\n    this.type = \"Scene\";\n    this.background = null;\n    this.environment = null;\n    this.fog = null;\n    this.overrideMaterial = null;\n    this.autoUpdate = true;\n    if (typeof __THREE_DEVTOOLS__ !== \"undefined\") {\n      __THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"observe\", { detail: this }));\n    }\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    if (source.background !== null)\n      this.background = source.background.clone();\n    if (source.environment !== null)\n      this.environment = source.environment.clone();\n    if (source.fog !== null)\n      this.fog = source.fog.clone();\n    if (source.overrideMaterial !== null)\n      this.overrideMaterial = source.overrideMaterial.clone();\n    this.autoUpdate = source.autoUpdate;\n    this.matrixAutoUpdate = source.matrixAutoUpdate;\n    return this;\n  }\n  toJSON(meta) {\n    const data = super.toJSON(meta);\n    if (this.fog !== null)\n      data.object.fog = this.fog.toJSON();\n    return data;\n  }\n}\nclass InterleavedBuffer {\n  constructor(array, stride) {\n    this.isInterleavedBuffer = true;\n    this.array = array;\n    this.stride = stride;\n    this.count = array !== void 0 ? array.length / stride : 0;\n    this.usage = StaticDrawUsage;\n    this.updateRange = { offset: 0, count: -1 };\n    this.version = 0;\n    this.uuid = generateUUID();\n  }\n  onUploadCallback() {\n  }\n  set needsUpdate(value) {\n    if (value === true)\n      this.version++;\n  }\n  setUsage(value) {\n    this.usage = value;\n    return this;\n  }\n  copy(source) {\n    this.array = new source.array.constructor(source.array);\n    this.count = source.count;\n    this.stride = source.stride;\n    this.usage = source.usage;\n    return this;\n  }\n  copyAt(index1, attribute, index2) {\n    index1 *= this.stride;\n    index2 *= attribute.stride;\n    for (let i = 0, l = this.stride; i < l; i++) {\n      this.array[index1 + i] = attribute.array[index2 + i];\n    }\n    return this;\n  }\n  set(value, offset = 0) {\n    this.array.set(value, offset);\n    return this;\n  }\n  clone(data) {\n    if (data.arrayBuffers === void 0) {\n      data.arrayBuffers = {};\n    }\n    if (this.array.buffer._uuid === void 0) {\n      this.array.buffer._uuid = generateUUID();\n    }\n    if (data.arrayBuffers[this.array.buffer._uuid] === void 0) {\n      data.arrayBuffers[this.array.buffer._uuid] = this.array.slice(0).buffer;\n    }\n    const array = new this.array.constructor(data.arrayBuffers[this.array.buffer._uuid]);\n    const ib = new this.constructor(array, this.stride);\n    ib.setUsage(this.usage);\n    return ib;\n  }\n  onUpload(callback) {\n    this.onUploadCallback = callback;\n    return this;\n  }\n  toJSON(data) {\n    if (data.arrayBuffers === void 0) {\n      data.arrayBuffers = {};\n    }\n    if (this.array.buffer._uuid === void 0) {\n      this.array.buffer._uuid = generateUUID();\n    }\n    if (data.arrayBuffers[this.array.buffer._uuid] === void 0) {\n      data.arrayBuffers[this.array.buffer._uuid] = Array.from(new Uint32Array(this.array.buffer));\n    }\n    return {\n      uuid: this.uuid,\n      buffer: this.array.buffer._uuid,\n      type: this.array.constructor.name,\n      stride: this.stride\n    };\n  }\n}\nconst _vector$6 = /* @__PURE__ */ new Vector3();\nclass InterleavedBufferAttribute {\n  constructor(interleavedBuffer, itemSize, offset, normalized = false) {\n    this.isInterleavedBufferAttribute = true;\n    this.name = \"\";\n    this.data = interleavedBuffer;\n    this.itemSize = itemSize;\n    this.offset = offset;\n    this.normalized = normalized === true;\n  }\n  get count() {\n    return this.data.count;\n  }\n  get array() {\n    return this.data.array;\n  }\n  set needsUpdate(value) {\n    this.data.needsUpdate = value;\n  }\n  applyMatrix4(m) {\n    for (let i = 0, l = this.data.count; i < l; i++) {\n      _vector$6.fromBufferAttribute(this, i);\n      _vector$6.applyMatrix4(m);\n      this.setXYZ(i, _vector$6.x, _vector$6.y, _vector$6.z);\n    }\n    return this;\n  }\n  applyNormalMatrix(m) {\n    for (let i = 0, l = this.count; i < l; i++) {\n      _vector$6.fromBufferAttribute(this, i);\n      _vector$6.applyNormalMatrix(m);\n      this.setXYZ(i, _vector$6.x, _vector$6.y, _vector$6.z);\n    }\n    return this;\n  }\n  transformDirection(m) {\n    for (let i = 0, l = this.count; i < l; i++) {\n      _vector$6.fromBufferAttribute(this, i);\n      _vector$6.transformDirection(m);\n      this.setXYZ(i, _vector$6.x, _vector$6.y, _vector$6.z);\n    }\n    return this;\n  }\n  setX(index2, x) {\n    this.data.array[index2 * this.data.stride + this.offset] = x;\n    return this;\n  }\n  setY(index2, y) {\n    this.data.array[index2 * this.data.stride + this.offset + 1] = y;\n    return this;\n  }\n  setZ(index2, z) {\n    this.data.array[index2 * this.data.stride + this.offset + 2] = z;\n    return this;\n  }\n  setW(index2, w) {\n    this.data.array[index2 * this.data.stride + this.offset + 3] = w;\n    return this;\n  }\n  getX(index2) {\n    return this.data.array[index2 * this.data.stride + this.offset];\n  }\n  getY(index2) {\n    return this.data.array[index2 * this.data.stride + this.offset + 1];\n  }\n  getZ(index2) {\n    return this.data.array[index2 * this.data.stride + this.offset + 2];\n  }\n  getW(index2) {\n    return this.data.array[index2 * this.data.stride + this.offset + 3];\n  }\n  setXY(index2, x, y) {\n    index2 = index2 * this.data.stride + this.offset;\n    this.data.array[index2 + 0] = x;\n    this.data.array[index2 + 1] = y;\n    return this;\n  }\n  setXYZ(index2, x, y, z) {\n    index2 = index2 * this.data.stride + this.offset;\n    this.data.array[index2 + 0] = x;\n    this.data.array[index2 + 1] = y;\n    this.data.array[index2 + 2] = z;\n    return this;\n  }\n  setXYZW(index2, x, y, z, w) {\n    index2 = index2 * this.data.stride + this.offset;\n    this.data.array[index2 + 0] = x;\n    this.data.array[index2 + 1] = y;\n    this.data.array[index2 + 2] = z;\n    this.data.array[index2 + 3] = w;\n    return this;\n  }\n  clone(data) {\n    if (data === void 0) {\n      console.log(\"THREE.InterleavedBufferAttribute.clone(): Cloning an interleaved buffer attribute will deinterleave buffer data.\");\n      const array = [];\n      for (let i = 0; i < this.count; i++) {\n        const index2 = i * this.data.stride + this.offset;\n        for (let j = 0; j < this.itemSize; j++) {\n          array.push(this.data.array[index2 + j]);\n        }\n      }\n      return new BufferAttribute(new this.array.constructor(array), this.itemSize, this.normalized);\n    } else {\n      if (data.interleavedBuffers === void 0) {\n        data.interleavedBuffers = {};\n      }\n      if (data.interleavedBuffers[this.data.uuid] === void 0) {\n        data.interleavedBuffers[this.data.uuid] = this.data.clone(data);\n      }\n      return new InterleavedBufferAttribute(data.interleavedBuffers[this.data.uuid], this.itemSize, this.offset, this.normalized);\n    }\n  }\n  toJSON(data) {\n    if (data === void 0) {\n      console.log(\"THREE.InterleavedBufferAttribute.toJSON(): Serializing an interleaved buffer attribute will deinterleave buffer data.\");\n      const array = [];\n      for (let i = 0; i < this.count; i++) {\n        const index2 = i * this.data.stride + this.offset;\n        for (let j = 0; j < this.itemSize; j++) {\n          array.push(this.data.array[index2 + j]);\n        }\n      }\n      return {\n        itemSize: this.itemSize,\n        type: this.array.constructor.name,\n        array,\n        normalized: this.normalized\n      };\n    } else {\n      if (data.interleavedBuffers === void 0) {\n        data.interleavedBuffers = {};\n      }\n      if (data.interleavedBuffers[this.data.uuid] === void 0) {\n        data.interleavedBuffers[this.data.uuid] = this.data.toJSON(data);\n      }\n      return {\n        isInterleavedBufferAttribute: true,\n        itemSize: this.itemSize,\n        data: this.data.uuid,\n        offset: this.offset,\n        normalized: this.normalized\n      };\n    }\n  }\n}\nclass SpriteMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isSpriteMaterial = true;\n    this.type = \"SpriteMaterial\";\n    this.color = new Color(16777215);\n    this.map = null;\n    this.alphaMap = null;\n    this.rotation = 0;\n    this.sizeAttenuation = true;\n    this.transparent = true;\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.color.copy(source.color);\n    this.map = source.map;\n    this.alphaMap = source.alphaMap;\n    this.rotation = source.rotation;\n    this.sizeAttenuation = source.sizeAttenuation;\n    this.fog = source.fog;\n    return this;\n  }\n}\nlet _geometry;\nconst _intersectPoint = /* @__PURE__ */ new Vector3();\nconst _worldScale = /* @__PURE__ */ new Vector3();\nconst _mvPosition = /* @__PURE__ */ new Vector3();\nconst _alignedPosition = /* @__PURE__ */ new Vector2();\nconst _rotatedPosition = /* @__PURE__ */ new Vector2();\nconst _viewWorldMatrix = /* @__PURE__ */ new Matrix4();\nconst _vA$2 = /* @__PURE__ */ new Vector3();\nconst _vB$2 = /* @__PURE__ */ new Vector3();\nconst _vC$2 = /* @__PURE__ */ new Vector3();\nconst _uvA = /* @__PURE__ */ new Vector2();\nconst _uvB = /* @__PURE__ */ new Vector2();\nconst _uvC = /* @__PURE__ */ new Vector2();\nclass Sprite extends Object3D {\n  constructor(material) {\n    super();\n    this.isSprite = true;\n    this.type = \"Sprite\";\n    if (_geometry === void 0) {\n      _geometry = new BufferGeometry();\n      const float32Array = new Float32Array([\n        -0.5,\n        -0.5,\n        0,\n        0,\n        0,\n        0.5,\n        -0.5,\n        0,\n        1,\n        0,\n        0.5,\n        0.5,\n        0,\n        1,\n        1,\n        -0.5,\n        0.5,\n        0,\n        0,\n        1\n      ]);\n      const interleavedBuffer = new InterleavedBuffer(float32Array, 5);\n      _geometry.setIndex([0, 1, 2, 0, 2, 3]);\n      _geometry.setAttribute(\"position\", new InterleavedBufferAttribute(interleavedBuffer, 3, 0, false));\n      _geometry.setAttribute(\"uv\", new InterleavedBufferAttribute(interleavedBuffer, 2, 3, false));\n    }\n    this.geometry = _geometry;\n    this.material = material !== void 0 ? material : new SpriteMaterial();\n    this.center = new Vector2(0.5, 0.5);\n  }\n  raycast(raycaster, intersects2) {\n    if (raycaster.camera === null) {\n      console.error('THREE.Sprite: \"Raycaster.camera\" needs to be set in order to raycast against sprites.');\n    }\n    _worldScale.setFromMatrixScale(this.matrixWorld);\n    _viewWorldMatrix.copy(raycaster.camera.matrixWorld);\n    this.modelViewMatrix.multiplyMatrices(raycaster.camera.matrixWorldInverse, this.matrixWorld);\n    _mvPosition.setFromMatrixPosition(this.modelViewMatrix);\n    if (raycaster.camera.isPerspectiveCamera && this.material.sizeAttenuation === false) {\n      _worldScale.multiplyScalar(-_mvPosition.z);\n    }\n    const rotation = this.material.rotation;\n    let sin, cos;\n    if (rotation !== 0) {\n      cos = Math.cos(rotation);\n      sin = Math.sin(rotation);\n    }\n    const center = this.center;\n    transformVertex(_vA$2.set(-0.5, -0.5, 0), _mvPosition, center, _worldScale, sin, cos);\n    transformVertex(_vB$2.set(0.5, -0.5, 0), _mvPosition, center, _worldScale, sin, cos);\n    transformVertex(_vC$2.set(0.5, 0.5, 0), _mvPosition, center, _worldScale, sin, cos);\n    _uvA.set(0, 0);\n    _uvB.set(1, 0);\n    _uvC.set(1, 1);\n    let intersect = raycaster.ray.intersectTriangle(_vA$2, _vB$2, _vC$2, false, _intersectPoint);\n    if (intersect === null) {\n      transformVertex(_vB$2.set(-0.5, 0.5, 0), _mvPosition, center, _worldScale, sin, cos);\n      _uvB.set(0, 1);\n      intersect = raycaster.ray.intersectTriangle(_vA$2, _vC$2, _vB$2, false, _intersectPoint);\n      if (intersect === null) {\n        return;\n      }\n    }\n    const distance = raycaster.ray.origin.distanceTo(_intersectPoint);\n    if (distance < raycaster.near || distance > raycaster.far)\n      return;\n    intersects2.push({\n      distance,\n      point: _intersectPoint.clone(),\n      uv: Triangle.getUV(_intersectPoint, _vA$2, _vB$2, _vC$2, _uvA, _uvB, _uvC, new Vector2()),\n      face: null,\n      object: this\n    });\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    if (source.center !== void 0)\n      this.center.copy(source.center);\n    this.material = source.material;\n    return this;\n  }\n}\nfunction transformVertex(vertexPosition, mvPosition, center, scale, sin, cos) {\n  _alignedPosition.subVectors(vertexPosition, center).addScalar(0.5).multiply(scale);\n  if (sin !== void 0) {\n    _rotatedPosition.x = cos * _alignedPosition.x - sin * _alignedPosition.y;\n    _rotatedPosition.y = sin * _alignedPosition.x + cos * _alignedPosition.y;\n  } else {\n    _rotatedPosition.copy(_alignedPosition);\n  }\n  vertexPosition.copy(mvPosition);\n  vertexPosition.x += _rotatedPosition.x;\n  vertexPosition.y += _rotatedPosition.y;\n  vertexPosition.applyMatrix4(_viewWorldMatrix);\n}\nconst _v1$2 = /* @__PURE__ */ new Vector3();\nconst _v2$1 = /* @__PURE__ */ new Vector3();\nclass LOD extends Object3D {\n  constructor() {\n    super();\n    this._currentLevel = 0;\n    this.type = \"LOD\";\n    Object.defineProperties(this, {\n      levels: {\n        enumerable: true,\n        value: []\n      },\n      isLOD: {\n        value: true\n      }\n    });\n    this.autoUpdate = true;\n  }\n  copy(source) {\n    super.copy(source, false);\n    const levels = source.levels;\n    for (let i = 0, l = levels.length; i < l; i++) {\n      const level = levels[i];\n      this.addLevel(level.object.clone(), level.distance);\n    }\n    this.autoUpdate = source.autoUpdate;\n    return this;\n  }\n  addLevel(object, distance = 0) {\n    distance = Math.abs(distance);\n    const levels = this.levels;\n    let l;\n    for (l = 0; l < levels.length; l++) {\n      if (distance < levels[l].distance) {\n        break;\n      }\n    }\n    levels.splice(l, 0, { distance, object });\n    this.add(object);\n    return this;\n  }\n  getCurrentLevel() {\n    return this._currentLevel;\n  }\n  getObjectForDistance(distance) {\n    const levels = this.levels;\n    if (levels.length > 0) {\n      let i, l;\n      for (i = 1, l = levels.length; i < l; i++) {\n        if (distance < levels[i].distance) {\n          break;\n        }\n      }\n      return levels[i - 1].object;\n    }\n    return null;\n  }\n  raycast(raycaster, intersects2) {\n    const levels = this.levels;\n    if (levels.length > 0) {\n      _v1$2.setFromMatrixPosition(this.matrixWorld);\n      const distance = raycaster.ray.origin.distanceTo(_v1$2);\n      this.getObjectForDistance(distance).raycast(raycaster, intersects2);\n    }\n  }\n  update(camera) {\n    const levels = this.levels;\n    if (levels.length > 1) {\n      _v1$2.setFromMatrixPosition(camera.matrixWorld);\n      _v2$1.setFromMatrixPosition(this.matrixWorld);\n      const distance = _v1$2.distanceTo(_v2$1) / camera.zoom;\n      levels[0].object.visible = true;\n      let i, l;\n      for (i = 1, l = levels.length; i < l; i++) {\n        if (distance >= levels[i].distance) {\n          levels[i - 1].object.visible = false;\n          levels[i].object.visible = true;\n        } else {\n          break;\n        }\n      }\n      this._currentLevel = i - 1;\n      for (; i < l; i++) {\n        levels[i].object.visible = false;\n      }\n    }\n  }\n  toJSON(meta) {\n    const data = super.toJSON(meta);\n    if (this.autoUpdate === false)\n      data.object.autoUpdate = false;\n    data.object.levels = [];\n    const levels = this.levels;\n    for (let i = 0, l = levels.length; i < l; i++) {\n      const level = levels[i];\n      data.object.levels.push({\n        object: level.object.uuid,\n        distance: level.distance\n      });\n    }\n    return data;\n  }\n}\nconst _basePosition = /* @__PURE__ */ new Vector3();\nconst _skinIndex = /* @__PURE__ */ new Vector4();\nconst _skinWeight = /* @__PURE__ */ new Vector4();\nconst _vector$5 = /* @__PURE__ */ new Vector3();\nconst _matrix = /* @__PURE__ */ new Matrix4();\nclass SkinnedMesh extends Mesh {\n  constructor(geometry, material) {\n    super(geometry, material);\n    this.isSkinnedMesh = true;\n    this.type = \"SkinnedMesh\";\n    this.bindMode = \"attached\";\n    this.bindMatrix = new Matrix4();\n    this.bindMatrixInverse = new Matrix4();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.bindMode = source.bindMode;\n    this.bindMatrix.copy(source.bindMatrix);\n    this.bindMatrixInverse.copy(source.bindMatrixInverse);\n    this.skeleton = source.skeleton;\n    return this;\n  }\n  bind(skeleton, bindMatrix) {\n    this.skeleton = skeleton;\n    if (bindMatrix === void 0) {\n      this.updateMatrixWorld(true);\n      this.skeleton.calculateInverses();\n      bindMatrix = this.matrixWorld;\n    }\n    this.bindMatrix.copy(bindMatrix);\n    this.bindMatrixInverse.copy(bindMatrix).invert();\n  }\n  pose() {\n    this.skeleton.pose();\n  }\n  normalizeSkinWeights() {\n    const vector = new Vector4();\n    const skinWeight = this.geometry.attributes.skinWeight;\n    for (let i = 0, l = skinWeight.count; i < l; i++) {\n      vector.fromBufferAttribute(skinWeight, i);\n      const scale = 1 / vector.manhattanLength();\n      if (scale !== Infinity) {\n        vector.multiplyScalar(scale);\n      } else {\n        vector.set(1, 0, 0, 0);\n      }\n      skinWeight.setXYZW(i, vector.x, vector.y, vector.z, vector.w);\n    }\n  }\n  updateMatrixWorld(force) {\n    super.updateMatrixWorld(force);\n    if (this.bindMode === \"attached\") {\n      this.bindMatrixInverse.copy(this.matrixWorld).invert();\n    } else if (this.bindMode === \"detached\") {\n      this.bindMatrixInverse.copy(this.bindMatrix).invert();\n    } else {\n      console.warn(\"THREE.SkinnedMesh: Unrecognized bindMode: \" + this.bindMode);\n    }\n  }\n  boneTransform(index2, target) {\n    const skeleton = this.skeleton;\n    const geometry = this.geometry;\n    _skinIndex.fromBufferAttribute(geometry.attributes.skinIndex, index2);\n    _skinWeight.fromBufferAttribute(geometry.attributes.skinWeight, index2);\n    _basePosition.copy(target).applyMatrix4(this.bindMatrix);\n    target.set(0, 0, 0);\n    for (let i = 0; i < 4; i++) {\n      const weight = _skinWeight.getComponent(i);\n      if (weight !== 0) {\n        const boneIndex = _skinIndex.getComponent(i);\n        _matrix.multiplyMatrices(skeleton.bones[boneIndex].matrixWorld, skeleton.boneInverses[boneIndex]);\n        target.addScaledVector(_vector$5.copy(_basePosition).applyMatrix4(_matrix), weight);\n      }\n    }\n    return target.applyMatrix4(this.bindMatrixInverse);\n  }\n}\nclass Bone extends Object3D {\n  constructor() {\n    super();\n    this.isBone = true;\n    this.type = \"Bone\";\n  }\n}\nclass DataTexture extends Texture {\n  constructor(data = null, width = 1, height = 1, format, type, mapping, wrapS, wrapT, magFilter = NearestFilter, minFilter = NearestFilter, anisotropy, encoding) {\n    super(null, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy, encoding);\n    this.isDataTexture = true;\n    this.image = { data, width, height };\n    this.generateMipmaps = false;\n    this.flipY = false;\n    this.unpackAlignment = 1;\n  }\n}\nconst _offsetMatrix = /* @__PURE__ */ new Matrix4();\nconst _identityMatrix = /* @__PURE__ */ new Matrix4();\nclass Skeleton {\n  constructor(bones = [], boneInverses = []) {\n    this.uuid = generateUUID();\n    this.bones = bones.slice(0);\n    this.boneInverses = boneInverses;\n    this.boneMatrices = null;\n    this.boneTexture = null;\n    this.boneTextureSize = 0;\n    this.frame = -1;\n    this.init();\n  }\n  init() {\n    const bones = this.bones;\n    const boneInverses = this.boneInverses;\n    this.boneMatrices = new Float32Array(bones.length * 16);\n    if (boneInverses.length === 0) {\n      this.calculateInverses();\n    } else {\n      if (bones.length !== boneInverses.length) {\n        console.warn(\"THREE.Skeleton: Number of inverse bone matrices does not match amount of bones.\");\n        this.boneInverses = [];\n        for (let i = 0, il = this.bones.length; i < il; i++) {\n          this.boneInverses.push(new Matrix4());\n        }\n      }\n    }\n  }\n  calculateInverses() {\n    this.boneInverses.length = 0;\n    for (let i = 0, il = this.bones.length; i < il; i++) {\n      const inverse = new Matrix4();\n      if (this.bones[i]) {\n        inverse.copy(this.bones[i].matrixWorld).invert();\n      }\n      this.boneInverses.push(inverse);\n    }\n  }\n  pose() {\n    for (let i = 0, il = this.bones.length; i < il; i++) {\n      const bone = this.bones[i];\n      if (bone) {\n        bone.matrixWorld.copy(this.boneInverses[i]).invert();\n      }\n    }\n    for (let i = 0, il = this.bones.length; i < il; i++) {\n      const bone = this.bones[i];\n      if (bone) {\n        if (bone.parent && bone.parent.isBone) {\n          bone.matrix.copy(bone.parent.matrixWorld).invert();\n          bone.matrix.multiply(bone.matrixWorld);\n        } else {\n          bone.matrix.copy(bone.matrixWorld);\n        }\n        bone.matrix.decompose(bone.position, bone.quaternion, bone.scale);\n      }\n    }\n  }\n  update() {\n    const bones = this.bones;\n    const boneInverses = this.boneInverses;\n    const boneMatrices = this.boneMatrices;\n    const boneTexture = this.boneTexture;\n    for (let i = 0, il = bones.length; i < il; i++) {\n      const matrix = bones[i] ? bones[i].matrixWorld : _identityMatrix;\n      _offsetMatrix.multiplyMatrices(matrix, boneInverses[i]);\n      _offsetMatrix.toArray(boneMatrices, i * 16);\n    }\n    if (boneTexture !== null) {\n      boneTexture.needsUpdate = true;\n    }\n  }\n  clone() {\n    return new Skeleton(this.bones, this.boneInverses);\n  }\n  computeBoneTexture() {\n    let size = Math.sqrt(this.bones.length * 4);\n    size = ceilPowerOfTwo(size);\n    size = Math.max(size, 4);\n    const boneMatrices = new Float32Array(size * size * 4);\n    boneMatrices.set(this.boneMatrices);\n    const boneTexture = new DataTexture(boneMatrices, size, size, RGBAFormat, FloatType);\n    boneTexture.needsUpdate = true;\n    this.boneMatrices = boneMatrices;\n    this.boneTexture = boneTexture;\n    this.boneTextureSize = size;\n    return this;\n  }\n  getBoneByName(name) {\n    for (let i = 0, il = this.bones.length; i < il; i++) {\n      const bone = this.bones[i];\n      if (bone.name === name) {\n        return bone;\n      }\n    }\n    return void 0;\n  }\n  dispose() {\n    if (this.boneTexture !== null) {\n      this.boneTexture.dispose();\n      this.boneTexture = null;\n    }\n  }\n  fromJSON(json, bones) {\n    this.uuid = json.uuid;\n    for (let i = 0, l = json.bones.length; i < l; i++) {\n      const uuid = json.bones[i];\n      let bone = bones[uuid];\n      if (bone === void 0) {\n        console.warn(\"THREE.Skeleton: No bone found with UUID:\", uuid);\n        bone = new Bone();\n      }\n      this.bones.push(bone);\n      this.boneInverses.push(new Matrix4().fromArray(json.boneInverses[i]));\n    }\n    this.init();\n    return this;\n  }\n  toJSON() {\n    const data = {\n      metadata: {\n        version: 4.5,\n        type: \"Skeleton\",\n        generator: \"Skeleton.toJSON\"\n      },\n      bones: [],\n      boneInverses: []\n    };\n    data.uuid = this.uuid;\n    const bones = this.bones;\n    const boneInverses = this.boneInverses;\n    for (let i = 0, l = bones.length; i < l; i++) {\n      const bone = bones[i];\n      data.bones.push(bone.uuid);\n      const boneInverse = boneInverses[i];\n      data.boneInverses.push(boneInverse.toArray());\n    }\n    return data;\n  }\n}\nclass InstancedBufferAttribute extends BufferAttribute {\n  constructor(array, itemSize, normalized, meshPerAttribute = 1) {\n    if (typeof normalized === \"number\") {\n      meshPerAttribute = normalized;\n      normalized = false;\n      console.error(\"THREE.InstancedBufferAttribute: The constructor now expects normalized as the third argument.\");\n    }\n    super(array, itemSize, normalized);\n    this.isInstancedBufferAttribute = true;\n    this.meshPerAttribute = meshPerAttribute;\n  }\n  copy(source) {\n    super.copy(source);\n    this.meshPerAttribute = source.meshPerAttribute;\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.meshPerAttribute = this.meshPerAttribute;\n    data.isInstancedBufferAttribute = true;\n    return data;\n  }\n}\nconst _instanceLocalMatrix = /* @__PURE__ */ new Matrix4();\nconst _instanceWorldMatrix = /* @__PURE__ */ new Matrix4();\nconst _instanceIntersects = [];\nconst _mesh = /* @__PURE__ */ new Mesh();\nclass InstancedMesh extends Mesh {\n  constructor(geometry, material, count) {\n    super(geometry, material);\n    this.isInstancedMesh = true;\n    this.instanceMatrix = new InstancedBufferAttribute(new Float32Array(count * 16), 16);\n    this.instanceColor = null;\n    this.count = count;\n    this.frustumCulled = false;\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.instanceMatrix.copy(source.instanceMatrix);\n    if (source.instanceColor !== null)\n      this.instanceColor = source.instanceColor.clone();\n    this.count = source.count;\n    return this;\n  }\n  getColorAt(index2, color) {\n    color.fromArray(this.instanceColor.array, index2 * 3);\n  }\n  getMatrixAt(index2, matrix) {\n    matrix.fromArray(this.instanceMatrix.array, index2 * 16);\n  }\n  raycast(raycaster, intersects2) {\n    const matrixWorld = this.matrixWorld;\n    const raycastTimes = this.count;\n    _mesh.geometry = this.geometry;\n    _mesh.material = this.material;\n    if (_mesh.material === void 0)\n      return;\n    for (let instanceId = 0; instanceId < raycastTimes; instanceId++) {\n      this.getMatrixAt(instanceId, _instanceLocalMatrix);\n      _instanceWorldMatrix.multiplyMatrices(matrixWorld, _instanceLocalMatrix);\n      _mesh.matrixWorld = _instanceWorldMatrix;\n      _mesh.raycast(raycaster, _instanceIntersects);\n      for (let i = 0, l = _instanceIntersects.length; i < l; i++) {\n        const intersect = _instanceIntersects[i];\n        intersect.instanceId = instanceId;\n        intersect.object = this;\n        intersects2.push(intersect);\n      }\n      _instanceIntersects.length = 0;\n    }\n  }\n  setColorAt(index2, color) {\n    if (this.instanceColor === null) {\n      this.instanceColor = new InstancedBufferAttribute(new Float32Array(this.instanceMatrix.count * 3), 3);\n    }\n    color.toArray(this.instanceColor.array, index2 * 3);\n  }\n  setMatrixAt(index2, matrix) {\n    matrix.toArray(this.instanceMatrix.array, index2 * 16);\n  }\n  updateMorphTargets() {\n  }\n  dispose() {\n    this.dispatchEvent({ type: \"dispose\" });\n  }\n}\nclass LineBasicMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isLineBasicMaterial = true;\n    this.type = \"LineBasicMaterial\";\n    this.color = new Color(16777215);\n    this.linewidth = 1;\n    this.linecap = \"round\";\n    this.linejoin = \"round\";\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.color.copy(source.color);\n    this.linewidth = source.linewidth;\n    this.linecap = source.linecap;\n    this.linejoin = source.linejoin;\n    this.fog = source.fog;\n    return this;\n  }\n}\nconst _start$1 = /* @__PURE__ */ new Vector3();\nconst _end$1 = /* @__PURE__ */ new Vector3();\nconst _inverseMatrix$1 = /* @__PURE__ */ new Matrix4();\nconst _ray$1 = /* @__PURE__ */ new Ray();\nconst _sphere$1 = /* @__PURE__ */ new Sphere();\nclass Line extends Object3D {\n  constructor(geometry = new BufferGeometry(), material = new LineBasicMaterial()) {\n    super();\n    this.isLine = true;\n    this.type = \"Line\";\n    this.geometry = geometry;\n    this.material = material;\n    this.updateMorphTargets();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.material = source.material;\n    this.geometry = source.geometry;\n    return this;\n  }\n  computeLineDistances() {\n    const geometry = this.geometry;\n    if (geometry.index === null) {\n      const positionAttribute = geometry.attributes.position;\n      const lineDistances = [0];\n      for (let i = 1, l = positionAttribute.count; i < l; i++) {\n        _start$1.fromBufferAttribute(positionAttribute, i - 1);\n        _end$1.fromBufferAttribute(positionAttribute, i);\n        lineDistances[i] = lineDistances[i - 1];\n        lineDistances[i] += _start$1.distanceTo(_end$1);\n      }\n      geometry.setAttribute(\"lineDistance\", new Float32BufferAttribute(lineDistances, 1));\n    } else {\n      console.warn(\"THREE.Line.computeLineDistances(): Computation only possible with non-indexed BufferGeometry.\");\n    }\n    return this;\n  }\n  raycast(raycaster, intersects2) {\n    const geometry = this.geometry;\n    const matrixWorld = this.matrixWorld;\n    const threshold = raycaster.params.Line.threshold;\n    const drawRange = geometry.drawRange;\n    if (geometry.boundingSphere === null)\n      geometry.computeBoundingSphere();\n    _sphere$1.copy(geometry.boundingSphere);\n    _sphere$1.applyMatrix4(matrixWorld);\n    _sphere$1.radius += threshold;\n    if (raycaster.ray.intersectsSphere(_sphere$1) === false)\n      return;\n    _inverseMatrix$1.copy(matrixWorld).invert();\n    _ray$1.copy(raycaster.ray).applyMatrix4(_inverseMatrix$1);\n    const localThreshold = threshold / ((this.scale.x + this.scale.y + this.scale.z) / 3);\n    const localThresholdSq = localThreshold * localThreshold;\n    const vStart = new Vector3();\n    const vEnd = new Vector3();\n    const interSegment = new Vector3();\n    const interRay = new Vector3();\n    const step = this.isLineSegments ? 2 : 1;\n    const index2 = geometry.index;\n    const attributes = geometry.attributes;\n    const positionAttribute = attributes.position;\n    if (index2 !== null) {\n      const start = Math.max(0, drawRange.start);\n      const end = Math.min(index2.count, drawRange.start + drawRange.count);\n      for (let i = start, l = end - 1; i < l; i += step) {\n        const a = index2.getX(i);\n        const b = index2.getX(i + 1);\n        vStart.fromBufferAttribute(positionAttribute, a);\n        vEnd.fromBufferAttribute(positionAttribute, b);\n        const distSq = _ray$1.distanceSqToSegment(vStart, vEnd, interRay, interSegment);\n        if (distSq > localThresholdSq)\n          continue;\n        interRay.applyMatrix4(this.matrixWorld);\n        const distance = raycaster.ray.origin.distanceTo(interRay);\n        if (distance < raycaster.near || distance > raycaster.far)\n          continue;\n        intersects2.push({\n          distance,\n          point: interSegment.clone().applyMatrix4(this.matrixWorld),\n          index: i,\n          face: null,\n          faceIndex: null,\n          object: this\n        });\n      }\n    } else {\n      const start = Math.max(0, drawRange.start);\n      const end = Math.min(positionAttribute.count, drawRange.start + drawRange.count);\n      for (let i = start, l = end - 1; i < l; i += step) {\n        vStart.fromBufferAttribute(positionAttribute, i);\n        vEnd.fromBufferAttribute(positionAttribute, i + 1);\n        const distSq = _ray$1.distanceSqToSegment(vStart, vEnd, interRay, interSegment);\n        if (distSq > localThresholdSq)\n          continue;\n        interRay.applyMatrix4(this.matrixWorld);\n        const distance = raycaster.ray.origin.distanceTo(interRay);\n        if (distance < raycaster.near || distance > raycaster.far)\n          continue;\n        intersects2.push({\n          distance,\n          point: interSegment.clone().applyMatrix4(this.matrixWorld),\n          index: i,\n          face: null,\n          faceIndex: null,\n          object: this\n        });\n      }\n    }\n  }\n  updateMorphTargets() {\n    const geometry = this.geometry;\n    const morphAttributes = geometry.morphAttributes;\n    const keys = Object.keys(morphAttributes);\n    if (keys.length > 0) {\n      const morphAttribute = morphAttributes[keys[0]];\n      if (morphAttribute !== void 0) {\n        this.morphTargetInfluences = [];\n        this.morphTargetDictionary = {};\n        for (let m = 0, ml = morphAttribute.length; m < ml; m++) {\n          const name = morphAttribute[m].name || String(m);\n          this.morphTargetInfluences.push(0);\n          this.morphTargetDictionary[name] = m;\n        }\n      }\n    }\n  }\n}\nconst _start = /* @__PURE__ */ new Vector3();\nconst _end = /* @__PURE__ */ new Vector3();\nclass LineSegments extends Line {\n  constructor(geometry, material) {\n    super(geometry, material);\n    this.isLineSegments = true;\n    this.type = \"LineSegments\";\n  }\n  computeLineDistances() {\n    const geometry = this.geometry;\n    if (geometry.index === null) {\n      const positionAttribute = geometry.attributes.position;\n      const lineDistances = [];\n      for (let i = 0, l = positionAttribute.count; i < l; i += 2) {\n        _start.fromBufferAttribute(positionAttribute, i);\n        _end.fromBufferAttribute(positionAttribute, i + 1);\n        lineDistances[i] = i === 0 ? 0 : lineDistances[i - 1];\n        lineDistances[i + 1] = lineDistances[i] + _start.distanceTo(_end);\n      }\n      geometry.setAttribute(\"lineDistance\", new Float32BufferAttribute(lineDistances, 1));\n    } else {\n      console.warn(\"THREE.LineSegments.computeLineDistances(): Computation only possible with non-indexed BufferGeometry.\");\n    }\n    return this;\n  }\n}\nclass LineLoop extends Line {\n  constructor(geometry, material) {\n    super(geometry, material);\n    this.isLineLoop = true;\n    this.type = \"LineLoop\";\n  }\n}\nclass PointsMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isPointsMaterial = true;\n    this.type = \"PointsMaterial\";\n    this.color = new Color(16777215);\n    this.map = null;\n    this.alphaMap = null;\n    this.size = 1;\n    this.sizeAttenuation = true;\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.color.copy(source.color);\n    this.map = source.map;\n    this.alphaMap = source.alphaMap;\n    this.size = source.size;\n    this.sizeAttenuation = source.sizeAttenuation;\n    this.fog = source.fog;\n    return this;\n  }\n}\nconst _inverseMatrix = /* @__PURE__ */ new Matrix4();\nconst _ray = /* @__PURE__ */ new Ray();\nconst _sphere = /* @__PURE__ */ new Sphere();\nconst _position$2 = /* @__PURE__ */ new Vector3();\nclass Points extends Object3D {\n  constructor(geometry = new BufferGeometry(), material = new PointsMaterial()) {\n    super();\n    this.isPoints = true;\n    this.type = \"Points\";\n    this.geometry = geometry;\n    this.material = material;\n    this.updateMorphTargets();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.material = source.material;\n    this.geometry = source.geometry;\n    return this;\n  }\n  raycast(raycaster, intersects2) {\n    const geometry = this.geometry;\n    const matrixWorld = this.matrixWorld;\n    const threshold = raycaster.params.Points.threshold;\n    const drawRange = geometry.drawRange;\n    if (geometry.boundingSphere === null)\n      geometry.computeBoundingSphere();\n    _sphere.copy(geometry.boundingSphere);\n    _sphere.applyMatrix4(matrixWorld);\n    _sphere.radius += threshold;\n    if (raycaster.ray.intersectsSphere(_sphere) === false)\n      return;\n    _inverseMatrix.copy(matrixWorld).invert();\n    _ray.copy(raycaster.ray).applyMatrix4(_inverseMatrix);\n    const localThreshold = threshold / ((this.scale.x + this.scale.y + this.scale.z) / 3);\n    const localThresholdSq = localThreshold * localThreshold;\n    const index2 = geometry.index;\n    const attributes = geometry.attributes;\n    const positionAttribute = attributes.position;\n    if (index2 !== null) {\n      const start = Math.max(0, drawRange.start);\n      const end = Math.min(index2.count, drawRange.start + drawRange.count);\n      for (let i = start, il = end; i < il; i++) {\n        const a = index2.getX(i);\n        _position$2.fromBufferAttribute(positionAttribute, a);\n        testPoint(_position$2, a, localThresholdSq, matrixWorld, raycaster, intersects2, this);\n      }\n    } else {\n      const start = Math.max(0, drawRange.start);\n      const end = Math.min(positionAttribute.count, drawRange.start + drawRange.count);\n      for (let i = start, l = end; i < l; i++) {\n        _position$2.fromBufferAttribute(positionAttribute, i);\n        testPoint(_position$2, i, localThresholdSq, matrixWorld, raycaster, intersects2, this);\n      }\n    }\n  }\n  updateMorphTargets() {\n    const geometry = this.geometry;\n    const morphAttributes = geometry.morphAttributes;\n    const keys = Object.keys(morphAttributes);\n    if (keys.length > 0) {\n      const morphAttribute = morphAttributes[keys[0]];\n      if (morphAttribute !== void 0) {\n        this.morphTargetInfluences = [];\n        this.morphTargetDictionary = {};\n        for (let m = 0, ml = morphAttribute.length; m < ml; m++) {\n          const name = morphAttribute[m].name || String(m);\n          this.morphTargetInfluences.push(0);\n          this.morphTargetDictionary[name] = m;\n        }\n      }\n    }\n  }\n}\nfunction testPoint(point, index2, localThresholdSq, matrixWorld, raycaster, intersects2, object) {\n  const rayPointDistanceSq = _ray.distanceSqToPoint(point);\n  if (rayPointDistanceSq < localThresholdSq) {\n    const intersectPoint = new Vector3();\n    _ray.closestPointToPoint(point, intersectPoint);\n    intersectPoint.applyMatrix4(matrixWorld);\n    const distance = raycaster.ray.origin.distanceTo(intersectPoint);\n    if (distance < raycaster.near || distance > raycaster.far)\n      return;\n    intersects2.push({\n      distance,\n      distanceToRay: Math.sqrt(rayPointDistanceSq),\n      point: intersectPoint,\n      index: index2,\n      face: null,\n      object\n    });\n  }\n}\nclass VideoTexture extends Texture {\n  constructor(video, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy) {\n    super(video, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy);\n    this.isVideoTexture = true;\n    this.minFilter = minFilter !== void 0 ? minFilter : LinearFilter;\n    this.magFilter = magFilter !== void 0 ? magFilter : LinearFilter;\n    this.generateMipmaps = false;\n    const scope = this;\n    function updateVideo() {\n      scope.needsUpdate = true;\n      video.requestVideoFrameCallback(updateVideo);\n    }\n    if (\"requestVideoFrameCallback\" in video) {\n      video.requestVideoFrameCallback(updateVideo);\n    }\n  }\n  clone() {\n    return new this.constructor(this.image).copy(this);\n  }\n  update() {\n    const video = this.image;\n    const hasVideoFrameCallback = \"requestVideoFrameCallback\" in video;\n    if (hasVideoFrameCallback === false && video.readyState >= video.HAVE_CURRENT_DATA) {\n      this.needsUpdate = true;\n    }\n  }\n}\nclass FramebufferTexture extends Texture {\n  constructor(width, height, format) {\n    super({ width, height });\n    this.isFramebufferTexture = true;\n    this.format = format;\n    this.magFilter = NearestFilter;\n    this.minFilter = NearestFilter;\n    this.generateMipmaps = false;\n    this.needsUpdate = true;\n  }\n}\nclass CompressedTexture extends Texture {\n  constructor(mipmaps, width, height, format, type, mapping, wrapS, wrapT, magFilter, minFilter, anisotropy, encoding) {\n    super(null, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy, encoding);\n    this.isCompressedTexture = true;\n    this.image = { width, height };\n    this.mipmaps = mipmaps;\n    this.flipY = false;\n    this.generateMipmaps = false;\n  }\n}\nclass CanvasTexture extends Texture {\n  constructor(canvas, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy) {\n    super(canvas, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy);\n    this.isCanvasTexture = true;\n    this.needsUpdate = true;\n  }\n}\nclass Curve {\n  constructor() {\n    this.type = \"Curve\";\n    this.arcLengthDivisions = 200;\n  }\n  getPoint() {\n    console.warn(\"THREE.Curve: .getPoint() not implemented.\");\n    return null;\n  }\n  getPointAt(u, optionalTarget) {\n    const t = this.getUtoTmapping(u);\n    return this.getPoint(t, optionalTarget);\n  }\n  getPoints(divisions = 5) {\n    const points = [];\n    for (let d = 0; d <= divisions; d++) {\n      points.push(this.getPoint(d / divisions));\n    }\n    return points;\n  }\n  getSpacedPoints(divisions = 5) {\n    const points = [];\n    for (let d = 0; d <= divisions; d++) {\n      points.push(this.getPointAt(d / divisions));\n    }\n    return points;\n  }\n  getLength() {\n    const lengths = this.getLengths();\n    return lengths[lengths.length - 1];\n  }\n  getLengths(divisions = this.arcLengthDivisions) {\n    if (this.cacheArcLengths && this.cacheArcLengths.length === divisions + 1 && !this.needsUpdate) {\n      return this.cacheArcLengths;\n    }\n    this.needsUpdate = false;\n    const cache = [];\n    let current, last = this.getPoint(0);\n    let sum = 0;\n    cache.push(0);\n    for (let p = 1; p <= divisions; p++) {\n      current = this.getPoint(p / divisions);\n      sum += current.distanceTo(last);\n      cache.push(sum);\n      last = current;\n    }\n    this.cacheArcLengths = cache;\n    return cache;\n  }\n  updateArcLengths() {\n    this.needsUpdate = true;\n    this.getLengths();\n  }\n  getUtoTmapping(u, distance) {\n    const arcLengths = this.getLengths();\n    let i = 0;\n    const il = arcLengths.length;\n    let targetArcLength;\n    if (distance) {\n      targetArcLength = distance;\n    } else {\n      targetArcLength = u * arcLengths[il - 1];\n    }\n    let low = 0, high = il - 1, comparison;\n    while (low <= high) {\n      i = Math.floor(low + (high - low) / 2);\n      comparison = arcLengths[i] - targetArcLength;\n      if (comparison < 0) {\n        low = i + 1;\n      } else if (comparison > 0) {\n        high = i - 1;\n      } else {\n        high = i;\n        break;\n      }\n    }\n    i = high;\n    if (arcLengths[i] === targetArcLength) {\n      return i / (il - 1);\n    }\n    const lengthBefore = arcLengths[i];\n    const lengthAfter = arcLengths[i + 1];\n    const segmentLength = lengthAfter - lengthBefore;\n    const segmentFraction = (targetArcLength - lengthBefore) / segmentLength;\n    const t = (i + segmentFraction) / (il - 1);\n    return t;\n  }\n  getTangent(t, optionalTarget) {\n    const delta = 1e-4;\n    let t1 = t - delta;\n    let t2 = t + delta;\n    if (t1 < 0)\n      t1 = 0;\n    if (t2 > 1)\n      t2 = 1;\n    const pt1 = this.getPoint(t1);\n    const pt2 = this.getPoint(t2);\n    const tangent = optionalTarget || (pt1.isVector2 ? new Vector2() : new Vector3());\n    tangent.copy(pt2).sub(pt1).normalize();\n    return tangent;\n  }\n  getTangentAt(u, optionalTarget) {\n    const t = this.getUtoTmapping(u);\n    return this.getTangent(t, optionalTarget);\n  }\n  computeFrenetFrames(segments, closed) {\n    const normal = new Vector3();\n    const tangents = [];\n    const normals = [];\n    const binormals = [];\n    const vec = new Vector3();\n    const mat = new Matrix4();\n    for (let i = 0; i <= segments; i++) {\n      const u = i / segments;\n      tangents[i] = this.getTangentAt(u, new Vector3());\n    }\n    normals[0] = new Vector3();\n    binormals[0] = new Vector3();\n    let min = Number.MAX_VALUE;\n    const tx = Math.abs(tangents[0].x);\n    const ty = Math.abs(tangents[0].y);\n    const tz = Math.abs(tangents[0].z);\n    if (tx <= min) {\n      min = tx;\n      normal.set(1, 0, 0);\n    }\n    if (ty <= min) {\n      min = ty;\n      normal.set(0, 1, 0);\n    }\n    if (tz <= min) {\n      normal.set(0, 0, 1);\n    }\n    vec.crossVectors(tangents[0], normal).normalize();\n    normals[0].crossVectors(tangents[0], vec);\n    binormals[0].crossVectors(tangents[0], normals[0]);\n    for (let i = 1; i <= segments; i++) {\n      normals[i] = normals[i - 1].clone();\n      binormals[i] = binormals[i - 1].clone();\n      vec.crossVectors(tangents[i - 1], tangents[i]);\n      if (vec.length() > Number.EPSILON) {\n        vec.normalize();\n        const theta = Math.acos(clamp(tangents[i - 1].dot(tangents[i]), -1, 1));\n        normals[i].applyMatrix4(mat.makeRotationAxis(vec, theta));\n      }\n      binormals[i].crossVectors(tangents[i], normals[i]);\n    }\n    if (closed === true) {\n      let theta = Math.acos(clamp(normals[0].dot(normals[segments]), -1, 1));\n      theta /= segments;\n      if (tangents[0].dot(vec.crossVectors(normals[0], normals[segments])) > 0) {\n        theta = -theta;\n      }\n      for (let i = 1; i <= segments; i++) {\n        normals[i].applyMatrix4(mat.makeRotationAxis(tangents[i], theta * i));\n        binormals[i].crossVectors(tangents[i], normals[i]);\n      }\n    }\n    return {\n      tangents,\n      normals,\n      binormals\n    };\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  copy(source) {\n    this.arcLengthDivisions = source.arcLengthDivisions;\n    return this;\n  }\n  toJSON() {\n    const data = {\n      metadata: {\n        version: 4.5,\n        type: \"Curve\",\n        generator: \"Curve.toJSON\"\n      }\n    };\n    data.arcLengthDivisions = this.arcLengthDivisions;\n    data.type = this.type;\n    return data;\n  }\n  fromJSON(json) {\n    this.arcLengthDivisions = json.arcLengthDivisions;\n    return this;\n  }\n}\nclass EllipseCurve extends Curve {\n  constructor(aX = 0, aY = 0, xRadius = 1, yRadius = 1, aStartAngle = 0, aEndAngle = Math.PI * 2, aClockwise = false, aRotation = 0) {\n    super();\n    this.isEllipseCurve = true;\n    this.type = \"EllipseCurve\";\n    this.aX = aX;\n    this.aY = aY;\n    this.xRadius = xRadius;\n    this.yRadius = yRadius;\n    this.aStartAngle = aStartAngle;\n    this.aEndAngle = aEndAngle;\n    this.aClockwise = aClockwise;\n    this.aRotation = aRotation;\n  }\n  getPoint(t, optionalTarget) {\n    const point = optionalTarget || new Vector2();\n    const twoPi = Math.PI * 2;\n    let deltaAngle = this.aEndAngle - this.aStartAngle;\n    const samePoints = Math.abs(deltaAngle) < Number.EPSILON;\n    while (deltaAngle < 0)\n      deltaAngle += twoPi;\n    while (deltaAngle > twoPi)\n      deltaAngle -= twoPi;\n    if (deltaAngle < Number.EPSILON) {\n      if (samePoints) {\n        deltaAngle = 0;\n      } else {\n        deltaAngle = twoPi;\n      }\n    }\n    if (this.aClockwise === true && !samePoints) {\n      if (deltaAngle === twoPi) {\n        deltaAngle = -twoPi;\n      } else {\n        deltaAngle = deltaAngle - twoPi;\n      }\n    }\n    const angle = this.aStartAngle + t * deltaAngle;\n    let x = this.aX + this.xRadius * Math.cos(angle);\n    let y = this.aY + this.yRadius * Math.sin(angle);\n    if (this.aRotation !== 0) {\n      const cos = Math.cos(this.aRotation);\n      const sin = Math.sin(this.aRotation);\n      const tx = x - this.aX;\n      const ty = y - this.aY;\n      x = tx * cos - ty * sin + this.aX;\n      y = tx * sin + ty * cos + this.aY;\n    }\n    return point.set(x, y);\n  }\n  copy(source) {\n    super.copy(source);\n    this.aX = source.aX;\n    this.aY = source.aY;\n    this.xRadius = source.xRadius;\n    this.yRadius = source.yRadius;\n    this.aStartAngle = source.aStartAngle;\n    this.aEndAngle = source.aEndAngle;\n    this.aClockwise = source.aClockwise;\n    this.aRotation = source.aRotation;\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.aX = this.aX;\n    data.aY = this.aY;\n    data.xRadius = this.xRadius;\n    data.yRadius = this.yRadius;\n    data.aStartAngle = this.aStartAngle;\n    data.aEndAngle = this.aEndAngle;\n    data.aClockwise = this.aClockwise;\n    data.aRotation = this.aRotation;\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.aX = json.aX;\n    this.aY = json.aY;\n    this.xRadius = json.xRadius;\n    this.yRadius = json.yRadius;\n    this.aStartAngle = json.aStartAngle;\n    this.aEndAngle = json.aEndAngle;\n    this.aClockwise = json.aClockwise;\n    this.aRotation = json.aRotation;\n    return this;\n  }\n}\nclass ArcCurve extends EllipseCurve {\n  constructor(aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise) {\n    super(aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise);\n    this.isArcCurve = true;\n    this.type = \"ArcCurve\";\n  }\n}\nfunction CubicPoly() {\n  let c0 = 0, c1 = 0, c2 = 0, c3 = 0;\n  function init(x0, x1, t0, t1) {\n    c0 = x0;\n    c1 = t0;\n    c2 = -3 * x0 + 3 * x1 - 2 * t0 - t1;\n    c3 = 2 * x0 - 2 * x1 + t0 + t1;\n  }\n  return {\n    initCatmullRom: function(x0, x1, x2, x3, tension) {\n      init(x1, x2, tension * (x2 - x0), tension * (x3 - x1));\n    },\n    initNonuniformCatmullRom: function(x0, x1, x2, x3, dt0, dt1, dt2) {\n      let t1 = (x1 - x0) / dt0 - (x2 - x0) / (dt0 + dt1) + (x2 - x1) / dt1;\n      let t2 = (x2 - x1) / dt1 - (x3 - x1) / (dt1 + dt2) + (x3 - x2) / dt2;\n      t1 *= dt1;\n      t2 *= dt1;\n      init(x1, x2, t1, t2);\n    },\n    calc: function(t) {\n      const t2 = t * t;\n      const t3 = t2 * t;\n      return c0 + c1 * t + c2 * t2 + c3 * t3;\n    }\n  };\n}\nconst tmp = /* @__PURE__ */ new Vector3();\nconst px = /* @__PURE__ */ new CubicPoly();\nconst py = /* @__PURE__ */ new CubicPoly();\nconst pz = /* @__PURE__ */ new CubicPoly();\nclass CatmullRomCurve3 extends Curve {\n  constructor(points = [], closed = false, curveType = \"centripetal\", tension = 0.5) {\n    super();\n    this.isCatmullRomCurve3 = true;\n    this.type = \"CatmullRomCurve3\";\n    this.points = points;\n    this.closed = closed;\n    this.curveType = curveType;\n    this.tension = tension;\n  }\n  getPoint(t, optionalTarget = new Vector3()) {\n    const point = optionalTarget;\n    const points = this.points;\n    const l = points.length;\n    const p = (l - (this.closed ? 0 : 1)) * t;\n    let intPoint = Math.floor(p);\n    let weight = p - intPoint;\n    if (this.closed) {\n      intPoint += intPoint > 0 ? 0 : (Math.floor(Math.abs(intPoint) / l) + 1) * l;\n    } else if (weight === 0 && intPoint === l - 1) {\n      intPoint = l - 2;\n      weight = 1;\n    }\n    let p0, p3;\n    if (this.closed || intPoint > 0) {\n      p0 = points[(intPoint - 1) % l];\n    } else {\n      tmp.subVectors(points[0], points[1]).add(points[0]);\n      p0 = tmp;\n    }\n    const p1 = points[intPoint % l];\n    const p2 = points[(intPoint + 1) % l];\n    if (this.closed || intPoint + 2 < l) {\n      p3 = points[(intPoint + 2) % l];\n    } else {\n      tmp.subVectors(points[l - 1], points[l - 2]).add(points[l - 1]);\n      p3 = tmp;\n    }\n    if (this.curveType === \"centripetal\" || this.curveType === \"chordal\") {\n      const pow = this.curveType === \"chordal\" ? 0.5 : 0.25;\n      let dt0 = Math.pow(p0.distanceToSquared(p1), pow);\n      let dt1 = Math.pow(p1.distanceToSquared(p2), pow);\n      let dt2 = Math.pow(p2.distanceToSquared(p3), pow);\n      if (dt1 < 1e-4)\n        dt1 = 1;\n      if (dt0 < 1e-4)\n        dt0 = dt1;\n      if (dt2 < 1e-4)\n        dt2 = dt1;\n      px.initNonuniformCatmullRom(p0.x, p1.x, p2.x, p3.x, dt0, dt1, dt2);\n      py.initNonuniformCatmullRom(p0.y, p1.y, p2.y, p3.y, dt0, dt1, dt2);\n      pz.initNonuniformCatmullRom(p0.z, p1.z, p2.z, p3.z, dt0, dt1, dt2);\n    } else if (this.curveType === \"catmullrom\") {\n      px.initCatmullRom(p0.x, p1.x, p2.x, p3.x, this.tension);\n      py.initCatmullRom(p0.y, p1.y, p2.y, p3.y, this.tension);\n      pz.initCatmullRom(p0.z, p1.z, p2.z, p3.z, this.tension);\n    }\n    point.set(px.calc(weight), py.calc(weight), pz.calc(weight));\n    return point;\n  }\n  copy(source) {\n    super.copy(source);\n    this.points = [];\n    for (let i = 0, l = source.points.length; i < l; i++) {\n      const point = source.points[i];\n      this.points.push(point.clone());\n    }\n    this.closed = source.closed;\n    this.curveType = source.curveType;\n    this.tension = source.tension;\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.points = [];\n    for (let i = 0, l = this.points.length; i < l; i++) {\n      const point = this.points[i];\n      data.points.push(point.toArray());\n    }\n    data.closed = this.closed;\n    data.curveType = this.curveType;\n    data.tension = this.tension;\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.points = [];\n    for (let i = 0, l = json.points.length; i < l; i++) {\n      const point = json.points[i];\n      this.points.push(new Vector3().fromArray(point));\n    }\n    this.closed = json.closed;\n    this.curveType = json.curveType;\n    this.tension = json.tension;\n    return this;\n  }\n}\nfunction CatmullRom(t, p0, p1, p2, p3) {\n  const v0 = (p2 - p0) * 0.5;\n  const v1 = (p3 - p1) * 0.5;\n  const t2 = t * t;\n  const t3 = t * t2;\n  return (2 * p1 - 2 * p2 + v0 + v1) * t3 + (-3 * p1 + 3 * p2 - 2 * v0 - v1) * t2 + v0 * t + p1;\n}\nfunction QuadraticBezierP0(t, p) {\n  const k = 1 - t;\n  return k * k * p;\n}\nfunction QuadraticBezierP1(t, p) {\n  return 2 * (1 - t) * t * p;\n}\nfunction QuadraticBezierP2(t, p) {\n  return t * t * p;\n}\nfunction QuadraticBezier(t, p0, p1, p2) {\n  return QuadraticBezierP0(t, p0) + QuadraticBezierP1(t, p1) + QuadraticBezierP2(t, p2);\n}\nfunction CubicBezierP0(t, p) {\n  const k = 1 - t;\n  return k * k * k * p;\n}\nfunction CubicBezierP1(t, p) {\n  const k = 1 - t;\n  return 3 * k * k * t * p;\n}\nfunction CubicBezierP2(t, p) {\n  return 3 * (1 - t) * t * t * p;\n}\nfunction CubicBezierP3(t, p) {\n  return t * t * t * p;\n}\nfunction CubicBezier(t, p0, p1, p2, p3) {\n  return CubicBezierP0(t, p0) + CubicBezierP1(t, p1) + CubicBezierP2(t, p2) + CubicBezierP3(t, p3);\n}\nclass CubicBezierCurve extends Curve {\n  constructor(v0 = new Vector2(), v1 = new Vector2(), v2 = new Vector2(), v3 = new Vector2()) {\n    super();\n    this.isCubicBezierCurve = true;\n    this.type = \"CubicBezierCurve\";\n    this.v0 = v0;\n    this.v1 = v1;\n    this.v2 = v2;\n    this.v3 = v3;\n  }\n  getPoint(t, optionalTarget = new Vector2()) {\n    const point = optionalTarget;\n    const v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3;\n    point.set(CubicBezier(t, v0.x, v1.x, v2.x, v3.x), CubicBezier(t, v0.y, v1.y, v2.y, v3.y));\n    return point;\n  }\n  copy(source) {\n    super.copy(source);\n    this.v0.copy(source.v0);\n    this.v1.copy(source.v1);\n    this.v2.copy(source.v2);\n    this.v3.copy(source.v3);\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.v0 = this.v0.toArray();\n    data.v1 = this.v1.toArray();\n    data.v2 = this.v2.toArray();\n    data.v3 = this.v3.toArray();\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.v0.fromArray(json.v0);\n    this.v1.fromArray(json.v1);\n    this.v2.fromArray(json.v2);\n    this.v3.fromArray(json.v3);\n    return this;\n  }\n}\nclass CubicBezierCurve3 extends Curve {\n  constructor(v0 = new Vector3(), v1 = new Vector3(), v2 = new Vector3(), v3 = new Vector3()) {\n    super();\n    this.isCubicBezierCurve3 = true;\n    this.type = \"CubicBezierCurve3\";\n    this.v0 = v0;\n    this.v1 = v1;\n    this.v2 = v2;\n    this.v3 = v3;\n  }\n  getPoint(t, optionalTarget = new Vector3()) {\n    const point = optionalTarget;\n    const v0 = this.v0, v1 = this.v1, v2 = this.v2, v3 = this.v3;\n    point.set(CubicBezier(t, v0.x, v1.x, v2.x, v3.x), CubicBezier(t, v0.y, v1.y, v2.y, v3.y), CubicBezier(t, v0.z, v1.z, v2.z, v3.z));\n    return point;\n  }\n  copy(source) {\n    super.copy(source);\n    this.v0.copy(source.v0);\n    this.v1.copy(source.v1);\n    this.v2.copy(source.v2);\n    this.v3.copy(source.v3);\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.v0 = this.v0.toArray();\n    data.v1 = this.v1.toArray();\n    data.v2 = this.v2.toArray();\n    data.v3 = this.v3.toArray();\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.v0.fromArray(json.v0);\n    this.v1.fromArray(json.v1);\n    this.v2.fromArray(json.v2);\n    this.v3.fromArray(json.v3);\n    return this;\n  }\n}\nclass LineCurve extends Curve {\n  constructor(v1 = new Vector2(), v2 = new Vector2()) {\n    super();\n    this.isLineCurve = true;\n    this.type = \"LineCurve\";\n    this.v1 = v1;\n    this.v2 = v2;\n  }\n  getPoint(t, optionalTarget = new Vector2()) {\n    const point = optionalTarget;\n    if (t === 1) {\n      point.copy(this.v2);\n    } else {\n      point.copy(this.v2).sub(this.v1);\n      point.multiplyScalar(t).add(this.v1);\n    }\n    return point;\n  }\n  getPointAt(u, optionalTarget) {\n    return this.getPoint(u, optionalTarget);\n  }\n  getTangent(t, optionalTarget) {\n    const tangent = optionalTarget || new Vector2();\n    tangent.copy(this.v2).sub(this.v1).normalize();\n    return tangent;\n  }\n  copy(source) {\n    super.copy(source);\n    this.v1.copy(source.v1);\n    this.v2.copy(source.v2);\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.v1 = this.v1.toArray();\n    data.v2 = this.v2.toArray();\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.v1.fromArray(json.v1);\n    this.v2.fromArray(json.v2);\n    return this;\n  }\n}\nclass LineCurve3 extends Curve {\n  constructor(v1 = new Vector3(), v2 = new Vector3()) {\n    super();\n    this.isLineCurve3 = true;\n    this.type = \"LineCurve3\";\n    this.v1 = v1;\n    this.v2 = v2;\n  }\n  getPoint(t, optionalTarget = new Vector3()) {\n    const point = optionalTarget;\n    if (t === 1) {\n      point.copy(this.v2);\n    } else {\n      point.copy(this.v2).sub(this.v1);\n      point.multiplyScalar(t).add(this.v1);\n    }\n    return point;\n  }\n  getPointAt(u, optionalTarget) {\n    return this.getPoint(u, optionalTarget);\n  }\n  copy(source) {\n    super.copy(source);\n    this.v1.copy(source.v1);\n    this.v2.copy(source.v2);\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.v1 = this.v1.toArray();\n    data.v2 = this.v2.toArray();\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.v1.fromArray(json.v1);\n    this.v2.fromArray(json.v2);\n    return this;\n  }\n}\nclass QuadraticBezierCurve extends Curve {\n  constructor(v0 = new Vector2(), v1 = new Vector2(), v2 = new Vector2()) {\n    super();\n    this.isQuadraticBezierCurve = true;\n    this.type = \"QuadraticBezierCurve\";\n    this.v0 = v0;\n    this.v1 = v1;\n    this.v2 = v2;\n  }\n  getPoint(t, optionalTarget = new Vector2()) {\n    const point = optionalTarget;\n    const v0 = this.v0, v1 = this.v1, v2 = this.v2;\n    point.set(QuadraticBezier(t, v0.x, v1.x, v2.x), QuadraticBezier(t, v0.y, v1.y, v2.y));\n    return point;\n  }\n  copy(source) {\n    super.copy(source);\n    this.v0.copy(source.v0);\n    this.v1.copy(source.v1);\n    this.v2.copy(source.v2);\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.v0 = this.v0.toArray();\n    data.v1 = this.v1.toArray();\n    data.v2 = this.v2.toArray();\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.v0.fromArray(json.v0);\n    this.v1.fromArray(json.v1);\n    this.v2.fromArray(json.v2);\n    return this;\n  }\n}\nclass QuadraticBezierCurve3 extends Curve {\n  constructor(v0 = new Vector3(), v1 = new Vector3(), v2 = new Vector3()) {\n    super();\n    this.isQuadraticBezierCurve3 = true;\n    this.type = \"QuadraticBezierCurve3\";\n    this.v0 = v0;\n    this.v1 = v1;\n    this.v2 = v2;\n  }\n  getPoint(t, optionalTarget = new Vector3()) {\n    const point = optionalTarget;\n    const v0 = this.v0, v1 = this.v1, v2 = this.v2;\n    point.set(QuadraticBezier(t, v0.x, v1.x, v2.x), QuadraticBezier(t, v0.y, v1.y, v2.y), QuadraticBezier(t, v0.z, v1.z, v2.z));\n    return point;\n  }\n  copy(source) {\n    super.copy(source);\n    this.v0.copy(source.v0);\n    this.v1.copy(source.v1);\n    this.v2.copy(source.v2);\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.v0 = this.v0.toArray();\n    data.v1 = this.v1.toArray();\n    data.v2 = this.v2.toArray();\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.v0.fromArray(json.v0);\n    this.v1.fromArray(json.v1);\n    this.v2.fromArray(json.v2);\n    return this;\n  }\n}\nclass SplineCurve extends Curve {\n  constructor(points = []) {\n    super();\n    this.isSplineCurve = true;\n    this.type = \"SplineCurve\";\n    this.points = points;\n  }\n  getPoint(t, optionalTarget = new Vector2()) {\n    const point = optionalTarget;\n    const points = this.points;\n    const p = (points.length - 1) * t;\n    const intPoint = Math.floor(p);\n    const weight = p - intPoint;\n    const p0 = points[intPoint === 0 ? intPoint : intPoint - 1];\n    const p1 = points[intPoint];\n    const p2 = points[intPoint > points.length - 2 ? points.length - 1 : intPoint + 1];\n    const p3 = points[intPoint > points.length - 3 ? points.length - 1 : intPoint + 2];\n    point.set(CatmullRom(weight, p0.x, p1.x, p2.x, p3.x), CatmullRom(weight, p0.y, p1.y, p2.y, p3.y));\n    return point;\n  }\n  copy(source) {\n    super.copy(source);\n    this.points = [];\n    for (let i = 0, l = source.points.length; i < l; i++) {\n      const point = source.points[i];\n      this.points.push(point.clone());\n    }\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.points = [];\n    for (let i = 0, l = this.points.length; i < l; i++) {\n      const point = this.points[i];\n      data.points.push(point.toArray());\n    }\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.points = [];\n    for (let i = 0, l = json.points.length; i < l; i++) {\n      const point = json.points[i];\n      this.points.push(new Vector2().fromArray(point));\n    }\n    return this;\n  }\n}\nvar Curves = /* @__PURE__ */ Object.freeze({\n  __proto__: null,\n  ArcCurve,\n  CatmullRomCurve3,\n  CubicBezierCurve,\n  CubicBezierCurve3,\n  EllipseCurve,\n  LineCurve,\n  LineCurve3,\n  QuadraticBezierCurve,\n  QuadraticBezierCurve3,\n  SplineCurve\n});\nclass CurvePath extends Curve {\n  constructor() {\n    super();\n    this.type = \"CurvePath\";\n    this.curves = [];\n    this.autoClose = false;\n  }\n  add(curve) {\n    this.curves.push(curve);\n  }\n  closePath() {\n    const startPoint = this.curves[0].getPoint(0);\n    const endPoint = this.curves[this.curves.length - 1].getPoint(1);\n    if (!startPoint.equals(endPoint)) {\n      this.curves.push(new LineCurve(endPoint, startPoint));\n    }\n  }\n  getPoint(t, optionalTarget) {\n    const d = t * this.getLength();\n    const curveLengths = this.getCurveLengths();\n    let i = 0;\n    while (i < curveLengths.length) {\n      if (curveLengths[i] >= d) {\n        const diff = curveLengths[i] - d;\n        const curve = this.curves[i];\n        const segmentLength = curve.getLength();\n        const u = segmentLength === 0 ? 0 : 1 - diff / segmentLength;\n        return curve.getPointAt(u, optionalTarget);\n      }\n      i++;\n    }\n    return null;\n  }\n  getLength() {\n    const lens = this.getCurveLengths();\n    return lens[lens.length - 1];\n  }\n  updateArcLengths() {\n    this.needsUpdate = true;\n    this.cacheLengths = null;\n    this.getCurveLengths();\n  }\n  getCurveLengths() {\n    if (this.cacheLengths && this.cacheLengths.length === this.curves.length) {\n      return this.cacheLengths;\n    }\n    const lengths = [];\n    let sums = 0;\n    for (let i = 0, l = this.curves.length; i < l; i++) {\n      sums += this.curves[i].getLength();\n      lengths.push(sums);\n    }\n    this.cacheLengths = lengths;\n    return lengths;\n  }\n  getSpacedPoints(divisions = 40) {\n    const points = [];\n    for (let i = 0; i <= divisions; i++) {\n      points.push(this.getPoint(i / divisions));\n    }\n    if (this.autoClose) {\n      points.push(points[0]);\n    }\n    return points;\n  }\n  getPoints(divisions = 12) {\n    const points = [];\n    let last;\n    for (let i = 0, curves = this.curves; i < curves.length; i++) {\n      const curve = curves[i];\n      const resolution = curve.isEllipseCurve ? divisions * 2 : curve.isLineCurve || curve.isLineCurve3 ? 1 : curve.isSplineCurve ? divisions * curve.points.length : divisions;\n      const pts = curve.getPoints(resolution);\n      for (let j = 0; j < pts.length; j++) {\n        const point = pts[j];\n        if (last && last.equals(point))\n          continue;\n        points.push(point);\n        last = point;\n      }\n    }\n    if (this.autoClose && points.length > 1 && !points[points.length - 1].equals(points[0])) {\n      points.push(points[0]);\n    }\n    return points;\n  }\n  copy(source) {\n    super.copy(source);\n    this.curves = [];\n    for (let i = 0, l = source.curves.length; i < l; i++) {\n      const curve = source.curves[i];\n      this.curves.push(curve.clone());\n    }\n    this.autoClose = source.autoClose;\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.autoClose = this.autoClose;\n    data.curves = [];\n    for (let i = 0, l = this.curves.length; i < l; i++) {\n      const curve = this.curves[i];\n      data.curves.push(curve.toJSON());\n    }\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.autoClose = json.autoClose;\n    this.curves = [];\n    for (let i = 0, l = json.curves.length; i < l; i++) {\n      const curve = json.curves[i];\n      this.curves.push(new Curves[curve.type]().fromJSON(curve));\n    }\n    return this;\n  }\n}\nclass Path extends CurvePath {\n  constructor(points) {\n    super();\n    this.type = \"Path\";\n    this.currentPoint = new Vector2();\n    if (points) {\n      this.setFromPoints(points);\n    }\n  }\n  setFromPoints(points) {\n    this.moveTo(points[0].x, points[0].y);\n    for (let i = 1, l = points.length; i < l; i++) {\n      this.lineTo(points[i].x, points[i].y);\n    }\n    return this;\n  }\n  moveTo(x, y) {\n    this.currentPoint.set(x, y);\n    return this;\n  }\n  lineTo(x, y) {\n    const curve = new LineCurve(this.currentPoint.clone(), new Vector2(x, y));\n    this.curves.push(curve);\n    this.currentPoint.set(x, y);\n    return this;\n  }\n  quadraticCurveTo(aCPx, aCPy, aX, aY) {\n    const curve = new QuadraticBezierCurve(this.currentPoint.clone(), new Vector2(aCPx, aCPy), new Vector2(aX, aY));\n    this.curves.push(curve);\n    this.currentPoint.set(aX, aY);\n    return this;\n  }\n  bezierCurveTo(aCP1x, aCP1y, aCP2x, aCP2y, aX, aY) {\n    const curve = new CubicBezierCurve(this.currentPoint.clone(), new Vector2(aCP1x, aCP1y), new Vector2(aCP2x, aCP2y), new Vector2(aX, aY));\n    this.curves.push(curve);\n    this.currentPoint.set(aX, aY);\n    return this;\n  }\n  splineThru(pts) {\n    const npts = [this.currentPoint.clone()].concat(pts);\n    const curve = new SplineCurve(npts);\n    this.curves.push(curve);\n    this.currentPoint.copy(pts[pts.length - 1]);\n    return this;\n  }\n  arc(aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise) {\n    const x0 = this.currentPoint.x;\n    const y0 = this.currentPoint.y;\n    this.absarc(aX + x0, aY + y0, aRadius, aStartAngle, aEndAngle, aClockwise);\n    return this;\n  }\n  absarc(aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise) {\n    this.absellipse(aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise);\n    return this;\n  }\n  ellipse(aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation) {\n    const x0 = this.currentPoint.x;\n    const y0 = this.currentPoint.y;\n    this.absellipse(aX + x0, aY + y0, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation);\n    return this;\n  }\n  absellipse(aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation) {\n    const curve = new EllipseCurve(aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation);\n    if (this.curves.length > 0) {\n      const firstPoint = curve.getPoint(0);\n      if (!firstPoint.equals(this.currentPoint)) {\n        this.lineTo(firstPoint.x, firstPoint.y);\n      }\n    }\n    this.curves.push(curve);\n    const lastPoint = curve.getPoint(1);\n    this.currentPoint.copy(lastPoint);\n    return this;\n  }\n  copy(source) {\n    super.copy(source);\n    this.currentPoint.copy(source.currentPoint);\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.currentPoint = this.currentPoint.toArray();\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.currentPoint.fromArray(json.currentPoint);\n    return this;\n  }\n}\nclass LatheGeometry extends BufferGeometry {\n  constructor(points = [new Vector2(0, -0.5), new Vector2(0.5, 0), new Vector2(0, 0.5)], segments = 12, phiStart = 0, phiLength = Math.PI * 2) {\n    super();\n    this.type = \"LatheGeometry\";\n    this.parameters = {\n      points,\n      segments,\n      phiStart,\n      phiLength\n    };\n    segments = Math.floor(segments);\n    phiLength = clamp(phiLength, 0, Math.PI * 2);\n    const indices = [];\n    const vertices = [];\n    const uvs = [];\n    const initNormals = [];\n    const normals = [];\n    const inverseSegments = 1 / segments;\n    const vertex2 = new Vector3();\n    const uv = new Vector2();\n    const normal = new Vector3();\n    const curNormal = new Vector3();\n    const prevNormal = new Vector3();\n    let dx = 0;\n    let dy = 0;\n    for (let j = 0; j <= points.length - 1; j++) {\n      switch (j) {\n        case 0:\n          dx = points[j + 1].x - points[j].x;\n          dy = points[j + 1].y - points[j].y;\n          normal.x = dy * 1;\n          normal.y = -dx;\n          normal.z = dy * 0;\n          prevNormal.copy(normal);\n          normal.normalize();\n          initNormals.push(normal.x, normal.y, normal.z);\n          break;\n        case points.length - 1:\n          initNormals.push(prevNormal.x, prevNormal.y, prevNormal.z);\n          break;\n        default:\n          dx = points[j + 1].x - points[j].x;\n          dy = points[j + 1].y - points[j].y;\n          normal.x = dy * 1;\n          normal.y = -dx;\n          normal.z = dy * 0;\n          curNormal.copy(normal);\n          normal.x += prevNormal.x;\n          normal.y += prevNormal.y;\n          normal.z += prevNormal.z;\n          normal.normalize();\n          initNormals.push(normal.x, normal.y, normal.z);\n          prevNormal.copy(curNormal);\n      }\n    }\n    for (let i = 0; i <= segments; i++) {\n      const phi = phiStart + i * inverseSegments * phiLength;\n      const sin = Math.sin(phi);\n      const cos = Math.cos(phi);\n      for (let j = 0; j <= points.length - 1; j++) {\n        vertex2.x = points[j].x * sin;\n        vertex2.y = points[j].y;\n        vertex2.z = points[j].x * cos;\n        vertices.push(vertex2.x, vertex2.y, vertex2.z);\n        uv.x = i / segments;\n        uv.y = j / (points.length - 1);\n        uvs.push(uv.x, uv.y);\n        const x = initNormals[3 * j + 0] * sin;\n        const y = initNormals[3 * j + 1];\n        const z = initNormals[3 * j + 0] * cos;\n        normals.push(x, y, z);\n      }\n    }\n    for (let i = 0; i < segments; i++) {\n      for (let j = 0; j < points.length - 1; j++) {\n        const base = j + i * points.length;\n        const a = base;\n        const b = base + points.length;\n        const c = base + points.length + 1;\n        const d = base + 1;\n        indices.push(a, b, d);\n        indices.push(c, d, b);\n      }\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n  }\n  static fromJSON(data) {\n    return new LatheGeometry(data.points, data.segments, data.phiStart, data.phiLength);\n  }\n}\nclass CapsuleGeometry extends LatheGeometry {\n  constructor(radius = 1, length = 1, capSegments = 4, radialSegments = 8) {\n    const path = new Path();\n    path.absarc(0, -length / 2, radius, Math.PI * 1.5, 0);\n    path.absarc(0, length / 2, radius, 0, Math.PI * 0.5);\n    super(path.getPoints(capSegments), radialSegments);\n    this.type = \"CapsuleGeometry\";\n    this.parameters = {\n      radius,\n      height: length,\n      capSegments,\n      radialSegments\n    };\n  }\n  static fromJSON(data) {\n    return new CapsuleGeometry(data.radius, data.length, data.capSegments, data.radialSegments);\n  }\n}\nclass CircleGeometry extends BufferGeometry {\n  constructor(radius = 1, segments = 8, thetaStart = 0, thetaLength = Math.PI * 2) {\n    super();\n    this.type = \"CircleGeometry\";\n    this.parameters = {\n      radius,\n      segments,\n      thetaStart,\n      thetaLength\n    };\n    segments = Math.max(3, segments);\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    const vertex2 = new Vector3();\n    const uv = new Vector2();\n    vertices.push(0, 0, 0);\n    normals.push(0, 0, 1);\n    uvs.push(0.5, 0.5);\n    for (let s = 0, i = 3; s <= segments; s++, i += 3) {\n      const segment = thetaStart + s / segments * thetaLength;\n      vertex2.x = radius * Math.cos(segment);\n      vertex2.y = radius * Math.sin(segment);\n      vertices.push(vertex2.x, vertex2.y, vertex2.z);\n      normals.push(0, 0, 1);\n      uv.x = (vertices[i] / radius + 1) / 2;\n      uv.y = (vertices[i + 1] / radius + 1) / 2;\n      uvs.push(uv.x, uv.y);\n    }\n    for (let i = 1; i <= segments; i++) {\n      indices.push(i, i + 1, 0);\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n  }\n  static fromJSON(data) {\n    return new CircleGeometry(data.radius, data.segments, data.thetaStart, data.thetaLength);\n  }\n}\nclass CylinderGeometry extends BufferGeometry {\n  constructor(radiusTop = 1, radiusBottom = 1, height = 1, radialSegments = 8, heightSegments = 1, openEnded = false, thetaStart = 0, thetaLength = Math.PI * 2) {\n    super();\n    this.type = \"CylinderGeometry\";\n    this.parameters = {\n      radiusTop,\n      radiusBottom,\n      height,\n      radialSegments,\n      heightSegments,\n      openEnded,\n      thetaStart,\n      thetaLength\n    };\n    const scope = this;\n    radialSegments = Math.floor(radialSegments);\n    heightSegments = Math.floor(heightSegments);\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    let index2 = 0;\n    const indexArray = [];\n    const halfHeight = height / 2;\n    let groupStart = 0;\n    generateTorso();\n    if (openEnded === false) {\n      if (radiusTop > 0)\n        generateCap(true);\n      if (radiusBottom > 0)\n        generateCap(false);\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n    function generateTorso() {\n      const normal = new Vector3();\n      const vertex2 = new Vector3();\n      let groupCount = 0;\n      const slope = (radiusBottom - radiusTop) / height;\n      for (let y = 0; y <= heightSegments; y++) {\n        const indexRow = [];\n        const v = y / heightSegments;\n        const radius = v * (radiusBottom - radiusTop) + radiusTop;\n        for (let x = 0; x <= radialSegments; x++) {\n          const u = x / radialSegments;\n          const theta = u * thetaLength + thetaStart;\n          const sinTheta = Math.sin(theta);\n          const cosTheta = Math.cos(theta);\n          vertex2.x = radius * sinTheta;\n          vertex2.y = -v * height + halfHeight;\n          vertex2.z = radius * cosTheta;\n          vertices.push(vertex2.x, vertex2.y, vertex2.z);\n          normal.set(sinTheta, slope, cosTheta).normalize();\n          normals.push(normal.x, normal.y, normal.z);\n          uvs.push(u, 1 - v);\n          indexRow.push(index2++);\n        }\n        indexArray.push(indexRow);\n      }\n      for (let x = 0; x < radialSegments; x++) {\n        for (let y = 0; y < heightSegments; y++) {\n          const a = indexArray[y][x];\n          const b = indexArray[y + 1][x];\n          const c = indexArray[y + 1][x + 1];\n          const d = indexArray[y][x + 1];\n          indices.push(a, b, d);\n          indices.push(b, c, d);\n          groupCount += 6;\n        }\n      }\n      scope.addGroup(groupStart, groupCount, 0);\n      groupStart += groupCount;\n    }\n    function generateCap(top) {\n      const centerIndexStart = index2;\n      const uv = new Vector2();\n      const vertex2 = new Vector3();\n      let groupCount = 0;\n      const radius = top === true ? radiusTop : radiusBottom;\n      const sign2 = top === true ? 1 : -1;\n      for (let x = 1; x <= radialSegments; x++) {\n        vertices.push(0, halfHeight * sign2, 0);\n        normals.push(0, sign2, 0);\n        uvs.push(0.5, 0.5);\n        index2++;\n      }\n      const centerIndexEnd = index2;\n      for (let x = 0; x <= radialSegments; x++) {\n        const u = x / radialSegments;\n        const theta = u * thetaLength + thetaStart;\n        const cosTheta = Math.cos(theta);\n        const sinTheta = Math.sin(theta);\n        vertex2.x = radius * sinTheta;\n        vertex2.y = halfHeight * sign2;\n        vertex2.z = radius * cosTheta;\n        vertices.push(vertex2.x, vertex2.y, vertex2.z);\n        normals.push(0, sign2, 0);\n        uv.x = cosTheta * 0.5 + 0.5;\n        uv.y = sinTheta * 0.5 * sign2 + 0.5;\n        uvs.push(uv.x, uv.y);\n        index2++;\n      }\n      for (let x = 0; x < radialSegments; x++) {\n        const c = centerIndexStart + x;\n        const i = centerIndexEnd + x;\n        if (top === true) {\n          indices.push(i, i + 1, c);\n        } else {\n          indices.push(i + 1, i, c);\n        }\n        groupCount += 3;\n      }\n      scope.addGroup(groupStart, groupCount, top === true ? 1 : 2);\n      groupStart += groupCount;\n    }\n  }\n  static fromJSON(data) {\n    return new CylinderGeometry(data.radiusTop, data.radiusBottom, data.height, data.radialSegments, data.heightSegments, data.openEnded, data.thetaStart, data.thetaLength);\n  }\n}\nclass ConeGeometry extends CylinderGeometry {\n  constructor(radius = 1, height = 1, radialSegments = 8, heightSegments = 1, openEnded = false, thetaStart = 0, thetaLength = Math.PI * 2) {\n    super(0, radius, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength);\n    this.type = \"ConeGeometry\";\n    this.parameters = {\n      radius,\n      height,\n      radialSegments,\n      heightSegments,\n      openEnded,\n      thetaStart,\n      thetaLength\n    };\n  }\n  static fromJSON(data) {\n    return new ConeGeometry(data.radius, data.height, data.radialSegments, data.heightSegments, data.openEnded, data.thetaStart, data.thetaLength);\n  }\n}\nclass PolyhedronGeometry extends BufferGeometry {\n  constructor(vertices = [], indices = [], radius = 1, detail = 0) {\n    super();\n    this.type = \"PolyhedronGeometry\";\n    this.parameters = {\n      vertices,\n      indices,\n      radius,\n      detail\n    };\n    const vertexBuffer = [];\n    const uvBuffer = [];\n    subdivide(detail);\n    applyRadius(radius);\n    generateUVs();\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertexBuffer, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(vertexBuffer.slice(), 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvBuffer, 2));\n    if (detail === 0) {\n      this.computeVertexNormals();\n    } else {\n      this.normalizeNormals();\n    }\n    function subdivide(detail2) {\n      const a = new Vector3();\n      const b = new Vector3();\n      const c = new Vector3();\n      for (let i = 0; i < indices.length; i += 3) {\n        getVertexByIndex(indices[i + 0], a);\n        getVertexByIndex(indices[i + 1], b);\n        getVertexByIndex(indices[i + 2], c);\n        subdivideFace(a, b, c, detail2);\n      }\n    }\n    function subdivideFace(a, b, c, detail2) {\n      const cols = detail2 + 1;\n      const v = [];\n      for (let i = 0; i <= cols; i++) {\n        v[i] = [];\n        const aj = a.clone().lerp(c, i / cols);\n        const bj = b.clone().lerp(c, i / cols);\n        const rows = cols - i;\n        for (let j = 0; j <= rows; j++) {\n          if (j === 0 && i === cols) {\n            v[i][j] = aj;\n          } else {\n            v[i][j] = aj.clone().lerp(bj, j / rows);\n          }\n        }\n      }\n      for (let i = 0; i < cols; i++) {\n        for (let j = 0; j < 2 * (cols - i) - 1; j++) {\n          const k = Math.floor(j / 2);\n          if (j % 2 === 0) {\n            pushVertex(v[i][k + 1]);\n            pushVertex(v[i + 1][k]);\n            pushVertex(v[i][k]);\n          } else {\n            pushVertex(v[i][k + 1]);\n            pushVertex(v[i + 1][k + 1]);\n            pushVertex(v[i + 1][k]);\n          }\n        }\n      }\n    }\n    function applyRadius(radius2) {\n      const vertex2 = new Vector3();\n      for (let i = 0; i < vertexBuffer.length; i += 3) {\n        vertex2.x = vertexBuffer[i + 0];\n        vertex2.y = vertexBuffer[i + 1];\n        vertex2.z = vertexBuffer[i + 2];\n        vertex2.normalize().multiplyScalar(radius2);\n        vertexBuffer[i + 0] = vertex2.x;\n        vertexBuffer[i + 1] = vertex2.y;\n        vertexBuffer[i + 2] = vertex2.z;\n      }\n    }\n    function generateUVs() {\n      const vertex2 = new Vector3();\n      for (let i = 0; i < vertexBuffer.length; i += 3) {\n        vertex2.x = vertexBuffer[i + 0];\n        vertex2.y = vertexBuffer[i + 1];\n        vertex2.z = vertexBuffer[i + 2];\n        const u = azimuth(vertex2) / 2 / Math.PI + 0.5;\n        const v = inclination(vertex2) / Math.PI + 0.5;\n        uvBuffer.push(u, 1 - v);\n      }\n      correctUVs();\n      correctSeam();\n    }\n    function correctSeam() {\n      for (let i = 0; i < uvBuffer.length; i += 6) {\n        const x0 = uvBuffer[i + 0];\n        const x1 = uvBuffer[i + 2];\n        const x2 = uvBuffer[i + 4];\n        const max2 = Math.max(x0, x1, x2);\n        const min = Math.min(x0, x1, x2);\n        if (max2 > 0.9 && min < 0.1) {\n          if (x0 < 0.2)\n            uvBuffer[i + 0] += 1;\n          if (x1 < 0.2)\n            uvBuffer[i + 2] += 1;\n          if (x2 < 0.2)\n            uvBuffer[i + 4] += 1;\n        }\n      }\n    }\n    function pushVertex(vertex2) {\n      vertexBuffer.push(vertex2.x, vertex2.y, vertex2.z);\n    }\n    function getVertexByIndex(index2, vertex2) {\n      const stride = index2 * 3;\n      vertex2.x = vertices[stride + 0];\n      vertex2.y = vertices[stride + 1];\n      vertex2.z = vertices[stride + 2];\n    }\n    function correctUVs() {\n      const a = new Vector3();\n      const b = new Vector3();\n      const c = new Vector3();\n      const centroid = new Vector3();\n      const uvA = new Vector2();\n      const uvB = new Vector2();\n      const uvC = new Vector2();\n      for (let i = 0, j = 0; i < vertexBuffer.length; i += 9, j += 6) {\n        a.set(vertexBuffer[i + 0], vertexBuffer[i + 1], vertexBuffer[i + 2]);\n        b.set(vertexBuffer[i + 3], vertexBuffer[i + 4], vertexBuffer[i + 5]);\n        c.set(vertexBuffer[i + 6], vertexBuffer[i + 7], vertexBuffer[i + 8]);\n        uvA.set(uvBuffer[j + 0], uvBuffer[j + 1]);\n        uvB.set(uvBuffer[j + 2], uvBuffer[j + 3]);\n        uvC.set(uvBuffer[j + 4], uvBuffer[j + 5]);\n        centroid.copy(a).add(b).add(c).divideScalar(3);\n        const azi = azimuth(centroid);\n        correctUV(uvA, j + 0, a, azi);\n        correctUV(uvB, j + 2, b, azi);\n        correctUV(uvC, j + 4, c, azi);\n      }\n    }\n    function correctUV(uv, stride, vector, azimuth2) {\n      if (azimuth2 < 0 && uv.x === 1) {\n        uvBuffer[stride] = uv.x - 1;\n      }\n      if (vector.x === 0 && vector.z === 0) {\n        uvBuffer[stride] = azimuth2 / 2 / Math.PI + 0.5;\n      }\n    }\n    function azimuth(vector) {\n      return Math.atan2(vector.z, -vector.x);\n    }\n    function inclination(vector) {\n      return Math.atan2(-vector.y, Math.sqrt(vector.x * vector.x + vector.z * vector.z));\n    }\n  }\n  static fromJSON(data) {\n    return new PolyhedronGeometry(data.vertices, data.indices, data.radius, data.details);\n  }\n}\nclass DodecahedronGeometry extends PolyhedronGeometry {\n  constructor(radius = 1, detail = 0) {\n    const t = (1 + Math.sqrt(5)) / 2;\n    const r = 1 / t;\n    const vertices = [\n      -1,\n      -1,\n      -1,\n      -1,\n      -1,\n      1,\n      -1,\n      1,\n      -1,\n      -1,\n      1,\n      1,\n      1,\n      -1,\n      -1,\n      1,\n      -1,\n      1,\n      1,\n      1,\n      -1,\n      1,\n      1,\n      1,\n      0,\n      -r,\n      -t,\n      0,\n      -r,\n      t,\n      0,\n      r,\n      -t,\n      0,\n      r,\n      t,\n      -r,\n      -t,\n      0,\n      -r,\n      t,\n      0,\n      r,\n      -t,\n      0,\n      r,\n      t,\n      0,\n      -t,\n      0,\n      -r,\n      t,\n      0,\n      -r,\n      -t,\n      0,\n      r,\n      t,\n      0,\n      r\n    ];\n    const indices = [\n      3,\n      11,\n      7,\n      3,\n      7,\n      15,\n      3,\n      15,\n      13,\n      7,\n      19,\n      17,\n      7,\n      17,\n      6,\n      7,\n      6,\n      15,\n      17,\n      4,\n      8,\n      17,\n      8,\n      10,\n      17,\n      10,\n      6,\n      8,\n      0,\n      16,\n      8,\n      16,\n      2,\n      8,\n      2,\n      10,\n      0,\n      12,\n      1,\n      0,\n      1,\n      18,\n      0,\n      18,\n      16,\n      6,\n      10,\n      2,\n      6,\n      2,\n      13,\n      6,\n      13,\n      15,\n      2,\n      16,\n      18,\n      2,\n      18,\n      3,\n      2,\n      3,\n      13,\n      18,\n      1,\n      9,\n      18,\n      9,\n      11,\n      18,\n      11,\n      3,\n      4,\n      14,\n      12,\n      4,\n      12,\n      0,\n      4,\n      0,\n      8,\n      11,\n      9,\n      5,\n      11,\n      5,\n      19,\n      11,\n      19,\n      7,\n      19,\n      5,\n      14,\n      19,\n      14,\n      4,\n      19,\n      4,\n      17,\n      1,\n      12,\n      14,\n      1,\n      14,\n      5,\n      1,\n      5,\n      9\n    ];\n    super(vertices, indices, radius, detail);\n    this.type = \"DodecahedronGeometry\";\n    this.parameters = {\n      radius,\n      detail\n    };\n  }\n  static fromJSON(data) {\n    return new DodecahedronGeometry(data.radius, data.detail);\n  }\n}\nconst _v0 = /* @__PURE__ */ new Vector3();\nconst _v1$1 = /* @__PURE__ */ new Vector3();\nconst _normal = /* @__PURE__ */ new Vector3();\nconst _triangle = /* @__PURE__ */ new Triangle();\nclass EdgesGeometry extends BufferGeometry {\n  constructor(geometry = null, thresholdAngle = 1) {\n    super();\n    this.type = \"EdgesGeometry\";\n    this.parameters = {\n      geometry,\n      thresholdAngle\n    };\n    if (geometry !== null) {\n      const precisionPoints = 4;\n      const precision = Math.pow(10, precisionPoints);\n      const thresholdDot = Math.cos(DEG2RAD * thresholdAngle);\n      const indexAttr = geometry.getIndex();\n      const positionAttr = geometry.getAttribute(\"position\");\n      const indexCount = indexAttr ? indexAttr.count : positionAttr.count;\n      const indexArr = [0, 0, 0];\n      const vertKeys = [\"a\", \"b\", \"c\"];\n      const hashes = new Array(3);\n      const edgeData = {};\n      const vertices = [];\n      for (let i = 0; i < indexCount; i += 3) {\n        if (indexAttr) {\n          indexArr[0] = indexAttr.getX(i);\n          indexArr[1] = indexAttr.getX(i + 1);\n          indexArr[2] = indexAttr.getX(i + 2);\n        } else {\n          indexArr[0] = i;\n          indexArr[1] = i + 1;\n          indexArr[2] = i + 2;\n        }\n        const { a, b, c } = _triangle;\n        a.fromBufferAttribute(positionAttr, indexArr[0]);\n        b.fromBufferAttribute(positionAttr, indexArr[1]);\n        c.fromBufferAttribute(positionAttr, indexArr[2]);\n        _triangle.getNormal(_normal);\n        hashes[0] = `${Math.round(a.x * precision)},${Math.round(a.y * precision)},${Math.round(a.z * precision)}`;\n        hashes[1] = `${Math.round(b.x * precision)},${Math.round(b.y * precision)},${Math.round(b.z * precision)}`;\n        hashes[2] = `${Math.round(c.x * precision)},${Math.round(c.y * precision)},${Math.round(c.z * precision)}`;\n        if (hashes[0] === hashes[1] || hashes[1] === hashes[2] || hashes[2] === hashes[0]) {\n          continue;\n        }\n        for (let j = 0; j < 3; j++) {\n          const jNext = (j + 1) % 3;\n          const vecHash0 = hashes[j];\n          const vecHash1 = hashes[jNext];\n          const v0 = _triangle[vertKeys[j]];\n          const v1 = _triangle[vertKeys[jNext]];\n          const hash = `${vecHash0}_${vecHash1}`;\n          const reverseHash = `${vecHash1}_${vecHash0}`;\n          if (reverseHash in edgeData && edgeData[reverseHash]) {\n            if (_normal.dot(edgeData[reverseHash].normal) <= thresholdDot) {\n              vertices.push(v0.x, v0.y, v0.z);\n              vertices.push(v1.x, v1.y, v1.z);\n            }\n            edgeData[reverseHash] = null;\n          } else if (!(hash in edgeData)) {\n            edgeData[hash] = {\n              index0: indexArr[j],\n              index1: indexArr[jNext],\n              normal: _normal.clone()\n            };\n          }\n        }\n      }\n      for (const key in edgeData) {\n        if (edgeData[key]) {\n          const { index0, index1 } = edgeData[key];\n          _v0.fromBufferAttribute(positionAttr, index0);\n          _v1$1.fromBufferAttribute(positionAttr, index1);\n          vertices.push(_v0.x, _v0.y, _v0.z);\n          vertices.push(_v1$1.x, _v1$1.y, _v1$1.z);\n        }\n      }\n      this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    }\n  }\n}\nclass Shape extends Path {\n  constructor(points) {\n    super(points);\n    this.uuid = generateUUID();\n    this.type = \"Shape\";\n    this.holes = [];\n  }\n  getPointsHoles(divisions) {\n    const holesPts = [];\n    for (let i = 0, l = this.holes.length; i < l; i++) {\n      holesPts[i] = this.holes[i].getPoints(divisions);\n    }\n    return holesPts;\n  }\n  extractPoints(divisions) {\n    return {\n      shape: this.getPoints(divisions),\n      holes: this.getPointsHoles(divisions)\n    };\n  }\n  copy(source) {\n    super.copy(source);\n    this.holes = [];\n    for (let i = 0, l = source.holes.length; i < l; i++) {\n      const hole = source.holes[i];\n      this.holes.push(hole.clone());\n    }\n    return this;\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.uuid = this.uuid;\n    data.holes = [];\n    for (let i = 0, l = this.holes.length; i < l; i++) {\n      const hole = this.holes[i];\n      data.holes.push(hole.toJSON());\n    }\n    return data;\n  }\n  fromJSON(json) {\n    super.fromJSON(json);\n    this.uuid = json.uuid;\n    this.holes = [];\n    for (let i = 0, l = json.holes.length; i < l; i++) {\n      const hole = json.holes[i];\n      this.holes.push(new Path().fromJSON(hole));\n    }\n    return this;\n  }\n}\nconst Earcut = {\n  triangulate: function(data, holeIndices, dim = 2) {\n    const hasHoles = holeIndices && holeIndices.length;\n    const outerLen = hasHoles ? holeIndices[0] * dim : data.length;\n    let outerNode = linkedList(data, 0, outerLen, dim, true);\n    const triangles = [];\n    if (!outerNode || outerNode.next === outerNode.prev)\n      return triangles;\n    let minX, minY, maxX, maxY, x, y, invSize;\n    if (hasHoles)\n      outerNode = eliminateHoles(data, holeIndices, outerNode, dim);\n    if (data.length > 80 * dim) {\n      minX = maxX = data[0];\n      minY = maxY = data[1];\n      for (let i = dim; i < outerLen; i += dim) {\n        x = data[i];\n        y = data[i + 1];\n        if (x < minX)\n          minX = x;\n        if (y < minY)\n          minY = y;\n        if (x > maxX)\n          maxX = x;\n        if (y > maxY)\n          maxY = y;\n      }\n      invSize = Math.max(maxX - minX, maxY - minY);\n      invSize = invSize !== 0 ? 1 / invSize : 0;\n    }\n    earcutLinked(outerNode, triangles, dim, minX, minY, invSize);\n    return triangles;\n  }\n};\nfunction linkedList(data, start, end, dim, clockwise) {\n  let i, last;\n  if (clockwise === signedArea(data, start, end, dim) > 0) {\n    for (i = start; i < end; i += dim)\n      last = insertNode(i, data[i], data[i + 1], last);\n  } else {\n    for (i = end - dim; i >= start; i -= dim)\n      last = insertNode(i, data[i], data[i + 1], last);\n  }\n  if (last && equals(last, last.next)) {\n    removeNode(last);\n    last = last.next;\n  }\n  return last;\n}\nfunction filterPoints(start, end) {\n  if (!start)\n    return start;\n  if (!end)\n    end = start;\n  let p = start, again;\n  do {\n    again = false;\n    if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) {\n      removeNode(p);\n      p = end = p.prev;\n      if (p === p.next)\n        break;\n      again = true;\n    } else {\n      p = p.next;\n    }\n  } while (again || p !== end);\n  return end;\n}\nfunction earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) {\n  if (!ear)\n    return;\n  if (!pass && invSize)\n    indexCurve(ear, minX, minY, invSize);\n  let stop = ear, prev, next;\n  while (ear.prev !== ear.next) {\n    prev = ear.prev;\n    next = ear.next;\n    if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) {\n      triangles.push(prev.i / dim);\n      triangles.push(ear.i / dim);\n      triangles.push(next.i / dim);\n      removeNode(ear);\n      ear = next.next;\n      stop = next.next;\n      continue;\n    }\n    ear = next;\n    if (ear === stop) {\n      if (!pass) {\n        earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1);\n      } else if (pass === 1) {\n        ear = cureLocalIntersections(filterPoints(ear), triangles, dim);\n        earcutLinked(ear, triangles, dim, minX, minY, invSize, 2);\n      } else if (pass === 2) {\n        splitEarcut(ear, triangles, dim, minX, minY, invSize);\n      }\n      break;\n    }\n  }\n}\nfunction isEar(ear) {\n  const a = ear.prev, b = ear, c = ear.next;\n  if (area(a, b, c) >= 0)\n    return false;\n  let p = ear.next.next;\n  while (p !== ear.prev) {\n    if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && area(p.prev, p, p.next) >= 0)\n      return false;\n    p = p.next;\n  }\n  return true;\n}\nfunction isEarHashed(ear, minX, minY, invSize) {\n  const a = ear.prev, b = ear, c = ear.next;\n  if (area(a, b, c) >= 0)\n    return false;\n  const minTX = a.x < b.x ? a.x < c.x ? a.x : c.x : b.x < c.x ? b.x : c.x, minTY = a.y < b.y ? a.y < c.y ? a.y : c.y : b.y < c.y ? b.y : c.y, maxTX = a.x > b.x ? a.x > c.x ? a.x : c.x : b.x > c.x ? b.x : c.x, maxTY = a.y > b.y ? a.y > c.y ? a.y : c.y : b.y > c.y ? b.y : c.y;\n  const minZ = zOrder(minTX, minTY, minX, minY, invSize), maxZ = zOrder(maxTX, maxTY, minX, minY, invSize);\n  let p = ear.prevZ, n = ear.nextZ;\n  while (p && p.z >= minZ && n && n.z <= maxZ) {\n    if (p !== ear.prev && p !== ear.next && pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && area(p.prev, p, p.next) >= 0)\n      return false;\n    p = p.prevZ;\n    if (n !== ear.prev && n !== ear.next && pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && area(n.prev, n, n.next) >= 0)\n      return false;\n    n = n.nextZ;\n  }\n  while (p && p.z >= minZ) {\n    if (p !== ear.prev && p !== ear.next && pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && area(p.prev, p, p.next) >= 0)\n      return false;\n    p = p.prevZ;\n  }\n  while (n && n.z <= maxZ) {\n    if (n !== ear.prev && n !== ear.next && pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && area(n.prev, n, n.next) >= 0)\n      return false;\n    n = n.nextZ;\n  }\n  return true;\n}\nfunction cureLocalIntersections(start, triangles, dim) {\n  let p = start;\n  do {\n    const a = p.prev, b = p.next.next;\n    if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) {\n      triangles.push(a.i / dim);\n      triangles.push(p.i / dim);\n      triangles.push(b.i / dim);\n      removeNode(p);\n      removeNode(p.next);\n      p = start = b;\n    }\n    p = p.next;\n  } while (p !== start);\n  return filterPoints(p);\n}\nfunction splitEarcut(start, triangles, dim, minX, minY, invSize) {\n  let a = start;\n  do {\n    let b = a.next.next;\n    while (b !== a.prev) {\n      if (a.i !== b.i && isValidDiagonal(a, b)) {\n        let c = splitPolygon(a, b);\n        a = filterPoints(a, a.next);\n        c = filterPoints(c, c.next);\n        earcutLinked(a, triangles, dim, minX, minY, invSize);\n        earcutLinked(c, triangles, dim, minX, minY, invSize);\n        return;\n      }\n      b = b.next;\n    }\n    a = a.next;\n  } while (a !== start);\n}\nfunction eliminateHoles(data, holeIndices, outerNode, dim) {\n  const queue = [];\n  let i, len, start, end, list;\n  for (i = 0, len = holeIndices.length; i < len; i++) {\n    start = holeIndices[i] * dim;\n    end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n    list = linkedList(data, start, end, dim, false);\n    if (list === list.next)\n      list.steiner = true;\n    queue.push(getLeftmost(list));\n  }\n  queue.sort(compareX);\n  for (i = 0; i < queue.length; i++) {\n    eliminateHole(queue[i], outerNode);\n    outerNode = filterPoints(outerNode, outerNode.next);\n  }\n  return outerNode;\n}\nfunction compareX(a, b) {\n  return a.x - b.x;\n}\nfunction eliminateHole(hole, outerNode) {\n  outerNode = findHoleBridge(hole, outerNode);\n  if (outerNode) {\n    const b = splitPolygon(outerNode, hole);\n    filterPoints(outerNode, outerNode.next);\n    filterPoints(b, b.next);\n  }\n}\nfunction findHoleBridge(hole, outerNode) {\n  let p = outerNode;\n  const hx = hole.x;\n  const hy = hole.y;\n  let qx = -Infinity, m;\n  do {\n    if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) {\n      const x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y);\n      if (x <= hx && x > qx) {\n        qx = x;\n        if (x === hx) {\n          if (hy === p.y)\n            return p;\n          if (hy === p.next.y)\n            return p.next;\n        }\n        m = p.x < p.next.x ? p : p.next;\n      }\n    }\n    p = p.next;\n  } while (p !== outerNode);\n  if (!m)\n    return null;\n  if (hx === qx)\n    return m;\n  const stop = m, mx = m.x, my = m.y;\n  let tanMin = Infinity, tan;\n  p = m;\n  do {\n    if (hx >= p.x && p.x >= mx && hx !== p.x && pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) {\n      tan = Math.abs(hy - p.y) / (hx - p.x);\n      if (locallyInside(p, hole) && (tan < tanMin || tan === tanMin && (p.x > m.x || p.x === m.x && sectorContainsSector(m, p)))) {\n        m = p;\n        tanMin = tan;\n      }\n    }\n    p = p.next;\n  } while (p !== stop);\n  return m;\n}\nfunction sectorContainsSector(m, p) {\n  return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0;\n}\nfunction indexCurve(start, minX, minY, invSize) {\n  let p = start;\n  do {\n    if (p.z === null)\n      p.z = zOrder(p.x, p.y, minX, minY, invSize);\n    p.prevZ = p.prev;\n    p.nextZ = p.next;\n    p = p.next;\n  } while (p !== start);\n  p.prevZ.nextZ = null;\n  p.prevZ = null;\n  sortLinked(p);\n}\nfunction sortLinked(list) {\n  let i, p, q, e, tail, numMerges, pSize, qSize, inSize = 1;\n  do {\n    p = list;\n    list = null;\n    tail = null;\n    numMerges = 0;\n    while (p) {\n      numMerges++;\n      q = p;\n      pSize = 0;\n      for (i = 0; i < inSize; i++) {\n        pSize++;\n        q = q.nextZ;\n        if (!q)\n          break;\n      }\n      qSize = inSize;\n      while (pSize > 0 || qSize > 0 && q) {\n        if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) {\n          e = p;\n          p = p.nextZ;\n          pSize--;\n        } else {\n          e = q;\n          q = q.nextZ;\n          qSize--;\n        }\n        if (tail)\n          tail.nextZ = e;\n        else\n          list = e;\n        e.prevZ = tail;\n        tail = e;\n      }\n      p = q;\n    }\n    tail.nextZ = null;\n    inSize *= 2;\n  } while (numMerges > 1);\n  return list;\n}\nfunction zOrder(x, y, minX, minY, invSize) {\n  x = 32767 * (x - minX) * invSize;\n  y = 32767 * (y - minY) * invSize;\n  x = (x | x << 8) & 16711935;\n  x = (x | x << 4) & 252645135;\n  x = (x | x << 2) & 858993459;\n  x = (x | x << 1) & 1431655765;\n  y = (y | y << 8) & 16711935;\n  y = (y | y << 4) & 252645135;\n  y = (y | y << 2) & 858993459;\n  y = (y | y << 1) & 1431655765;\n  return x | y << 1;\n}\nfunction getLeftmost(start) {\n  let p = start, leftmost = start;\n  do {\n    if (p.x < leftmost.x || p.x === leftmost.x && p.y < leftmost.y)\n      leftmost = p;\n    p = p.next;\n  } while (p !== start);\n  return leftmost;\n}\nfunction pointInTriangle(ax, ay, bx, by, cx, cy, px2, py2) {\n  return (cx - px2) * (ay - py2) - (ax - px2) * (cy - py2) >= 0 && (ax - px2) * (by - py2) - (bx - px2) * (ay - py2) >= 0 && (bx - px2) * (cy - py2) - (cx - px2) * (by - py2) >= 0;\n}\nfunction isValidDiagonal(a, b) {\n  return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && (area(a.prev, a, b.prev) || area(a, b.prev, b)) || equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0);\n}\nfunction area(p, q, r) {\n  return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y);\n}\nfunction equals(p1, p2) {\n  return p1.x === p2.x && p1.y === p2.y;\n}\nfunction intersects(p1, q1, p2, q2) {\n  const o1 = sign(area(p1, q1, p2));\n  const o2 = sign(area(p1, q1, q2));\n  const o3 = sign(area(p2, q2, p1));\n  const o4 = sign(area(p2, q2, q1));\n  if (o1 !== o2 && o3 !== o4)\n    return true;\n  if (o1 === 0 && onSegment(p1, p2, q1))\n    return true;\n  if (o2 === 0 && onSegment(p1, q2, q1))\n    return true;\n  if (o3 === 0 && onSegment(p2, p1, q2))\n    return true;\n  if (o4 === 0 && onSegment(p2, q1, q2))\n    return true;\n  return false;\n}\nfunction onSegment(p, q, r) {\n  return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y);\n}\nfunction sign(num) {\n  return num > 0 ? 1 : num < 0 ? -1 : 0;\n}\nfunction intersectsPolygon(a, b) {\n  let p = a;\n  do {\n    if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && intersects(p, p.next, a, b))\n      return true;\n    p = p.next;\n  } while (p !== a);\n  return false;\n}\nfunction locallyInside(a, b) {\n  return area(a.prev, a, a.next) < 0 ? area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : area(a, b, a.prev) < 0 || area(a, a.next, b) < 0;\n}\nfunction middleInside(a, b) {\n  let p = a, inside = false;\n  const px2 = (a.x + b.x) / 2, py2 = (a.y + b.y) / 2;\n  do {\n    if (p.y > py2 !== p.next.y > py2 && p.next.y !== p.y && px2 < (p.next.x - p.x) * (py2 - p.y) / (p.next.y - p.y) + p.x)\n      inside = !inside;\n    p = p.next;\n  } while (p !== a);\n  return inside;\n}\nfunction splitPolygon(a, b) {\n  const a2 = new Node$1(a.i, a.x, a.y), b22 = new Node$1(b.i, b.x, b.y), an = a.next, bp = b.prev;\n  a.next = b;\n  b.prev = a;\n  a2.next = an;\n  an.prev = a2;\n  b22.next = a2;\n  a2.prev = b22;\n  bp.next = b22;\n  b22.prev = bp;\n  return b22;\n}\nfunction insertNode(i, x, y, last) {\n  const p = new Node$1(i, x, y);\n  if (!last) {\n    p.prev = p;\n    p.next = p;\n  } else {\n    p.next = last.next;\n    p.prev = last;\n    last.next.prev = p;\n    last.next = p;\n  }\n  return p;\n}\nfunction removeNode(p) {\n  p.next.prev = p.prev;\n  p.prev.next = p.next;\n  if (p.prevZ)\n    p.prevZ.nextZ = p.nextZ;\n  if (p.nextZ)\n    p.nextZ.prevZ = p.prevZ;\n}\nfunction Node$1(i, x, y) {\n  this.i = i;\n  this.x = x;\n  this.y = y;\n  this.prev = null;\n  this.next = null;\n  this.z = null;\n  this.prevZ = null;\n  this.nextZ = null;\n  this.steiner = false;\n}\nfunction signedArea(data, start, end, dim) {\n  let sum = 0;\n  for (let i = start, j = end - dim; i < end; i += dim) {\n    sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]);\n    j = i;\n  }\n  return sum;\n}\nclass ShapeUtils {\n  static area(contour) {\n    const n = contour.length;\n    let a = 0;\n    for (let p = n - 1, q = 0; q < n; p = q++) {\n      a += contour[p].x * contour[q].y - contour[q].x * contour[p].y;\n    }\n    return a * 0.5;\n  }\n  static isClockWise(pts) {\n    return ShapeUtils.area(pts) < 0;\n  }\n  static triangulateShape(contour, holes) {\n    const vertices = [];\n    const holeIndices = [];\n    const faces = [];\n    removeDupEndPts(contour);\n    addContour(vertices, contour);\n    let holeIndex = contour.length;\n    holes.forEach(removeDupEndPts);\n    for (let i = 0; i < holes.length; i++) {\n      holeIndices.push(holeIndex);\n      holeIndex += holes[i].length;\n      addContour(vertices, holes[i]);\n    }\n    const triangles = Earcut.triangulate(vertices, holeIndices);\n    for (let i = 0; i < triangles.length; i += 3) {\n      faces.push(triangles.slice(i, i + 3));\n    }\n    return faces;\n  }\n}\nfunction removeDupEndPts(points) {\n  const l = points.length;\n  if (l > 2 && points[l - 1].equals(points[0])) {\n    points.pop();\n  }\n}\nfunction addContour(vertices, contour) {\n  for (let i = 0; i < contour.length; i++) {\n    vertices.push(contour[i].x);\n    vertices.push(contour[i].y);\n  }\n}\nclass ExtrudeGeometry extends BufferGeometry {\n  constructor(shapes = new Shape([new Vector2(0.5, 0.5), new Vector2(-0.5, 0.5), new Vector2(-0.5, -0.5), new Vector2(0.5, -0.5)]), options = {}) {\n    super();\n    this.type = \"ExtrudeGeometry\";\n    this.parameters = {\n      shapes,\n      options\n    };\n    shapes = Array.isArray(shapes) ? shapes : [shapes];\n    const scope = this;\n    const verticesArray = [];\n    const uvArray = [];\n    for (let i = 0, l = shapes.length; i < l; i++) {\n      const shape = shapes[i];\n      addShape(shape);\n    }\n    this.setAttribute(\"position\", new Float32BufferAttribute(verticesArray, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvArray, 2));\n    this.computeVertexNormals();\n    function addShape(shape) {\n      const placeholder = [];\n      const curveSegments = options.curveSegments !== void 0 ? options.curveSegments : 12;\n      const steps = options.steps !== void 0 ? options.steps : 1;\n      const depth = options.depth !== void 0 ? options.depth : 1;\n      let bevelEnabled = options.bevelEnabled !== void 0 ? options.bevelEnabled : true;\n      let bevelThickness = options.bevelThickness !== void 0 ? options.bevelThickness : 0.2;\n      let bevelSize = options.bevelSize !== void 0 ? options.bevelSize : bevelThickness - 0.1;\n      let bevelOffset = options.bevelOffset !== void 0 ? options.bevelOffset : 0;\n      let bevelSegments = options.bevelSegments !== void 0 ? options.bevelSegments : 3;\n      const extrudePath = options.extrudePath;\n      const uvgen = options.UVGenerator !== void 0 ? options.UVGenerator : WorldUVGenerator;\n      let extrudePts, extrudeByPath = false;\n      let splineTube, binormal, normal, position2;\n      if (extrudePath) {\n        extrudePts = extrudePath.getSpacedPoints(steps);\n        extrudeByPath = true;\n        bevelEnabled = false;\n        splineTube = extrudePath.computeFrenetFrames(steps, false);\n        binormal = new Vector3();\n        normal = new Vector3();\n        position2 = new Vector3();\n      }\n      if (!bevelEnabled) {\n        bevelSegments = 0;\n        bevelThickness = 0;\n        bevelSize = 0;\n        bevelOffset = 0;\n      }\n      const shapePoints = shape.extractPoints(curveSegments);\n      let vertices = shapePoints.shape;\n      const holes = shapePoints.holes;\n      const reverse = !ShapeUtils.isClockWise(vertices);\n      if (reverse) {\n        vertices = vertices.reverse();\n        for (let h = 0, hl = holes.length; h < hl; h++) {\n          const ahole = holes[h];\n          if (ShapeUtils.isClockWise(ahole)) {\n            holes[h] = ahole.reverse();\n          }\n        }\n      }\n      const faces = ShapeUtils.triangulateShape(vertices, holes);\n      const contour = vertices;\n      for (let h = 0, hl = holes.length; h < hl; h++) {\n        const ahole = holes[h];\n        vertices = vertices.concat(ahole);\n      }\n      function scalePt2(pt, vec, size) {\n        if (!vec)\n          console.error(\"THREE.ExtrudeGeometry: vec does not exist\");\n        return vec.clone().multiplyScalar(size).add(pt);\n      }\n      const vlen = vertices.length, flen = faces.length;\n      function getBevelVec(inPt, inPrev, inNext) {\n        let v_trans_x, v_trans_y, shrink_by;\n        const v_prev_x = inPt.x - inPrev.x, v_prev_y = inPt.y - inPrev.y;\n        const v_next_x = inNext.x - inPt.x, v_next_y = inNext.y - inPt.y;\n        const v_prev_lensq = v_prev_x * v_prev_x + v_prev_y * v_prev_y;\n        const collinear0 = v_prev_x * v_next_y - v_prev_y * v_next_x;\n        if (Math.abs(collinear0) > Number.EPSILON) {\n          const v_prev_len = Math.sqrt(v_prev_lensq);\n          const v_next_len = Math.sqrt(v_next_x * v_next_x + v_next_y * v_next_y);\n          const ptPrevShift_x = inPrev.x - v_prev_y / v_prev_len;\n          const ptPrevShift_y = inPrev.y + v_prev_x / v_prev_len;\n          const ptNextShift_x = inNext.x - v_next_y / v_next_len;\n          const ptNextShift_y = inNext.y + v_next_x / v_next_len;\n          const sf = ((ptNextShift_x - ptPrevShift_x) * v_next_y - (ptNextShift_y - ptPrevShift_y) * v_next_x) / (v_prev_x * v_next_y - v_prev_y * v_next_x);\n          v_trans_x = ptPrevShift_x + v_prev_x * sf - inPt.x;\n          v_trans_y = ptPrevShift_y + v_prev_y * sf - inPt.y;\n          const v_trans_lensq = v_trans_x * v_trans_x + v_trans_y * v_trans_y;\n          if (v_trans_lensq <= 2) {\n            return new Vector2(v_trans_x, v_trans_y);\n          } else {\n            shrink_by = Math.sqrt(v_trans_lensq / 2);\n          }\n        } else {\n          let direction_eq = false;\n          if (v_prev_x > Number.EPSILON) {\n            if (v_next_x > Number.EPSILON) {\n              direction_eq = true;\n            }\n          } else {\n            if (v_prev_x < -Number.EPSILON) {\n              if (v_next_x < -Number.EPSILON) {\n                direction_eq = true;\n              }\n            } else {\n              if (Math.sign(v_prev_y) === Math.sign(v_next_y)) {\n                direction_eq = true;\n              }\n            }\n          }\n          if (direction_eq) {\n            v_trans_x = -v_prev_y;\n            v_trans_y = v_prev_x;\n            shrink_by = Math.sqrt(v_prev_lensq);\n          } else {\n            v_trans_x = v_prev_x;\n            v_trans_y = v_prev_y;\n            shrink_by = Math.sqrt(v_prev_lensq / 2);\n          }\n        }\n        return new Vector2(v_trans_x / shrink_by, v_trans_y / shrink_by);\n      }\n      const contourMovements = [];\n      for (let i = 0, il = contour.length, j = il - 1, k = i + 1; i < il; i++, j++, k++) {\n        if (j === il)\n          j = 0;\n        if (k === il)\n          k = 0;\n        contourMovements[i] = getBevelVec(contour[i], contour[j], contour[k]);\n      }\n      const holesMovements = [];\n      let oneHoleMovements, verticesMovements = contourMovements.concat();\n      for (let h = 0, hl = holes.length; h < hl; h++) {\n        const ahole = holes[h];\n        oneHoleMovements = [];\n        for (let i = 0, il = ahole.length, j = il - 1, k = i + 1; i < il; i++, j++, k++) {\n          if (j === il)\n            j = 0;\n          if (k === il)\n            k = 0;\n          oneHoleMovements[i] = getBevelVec(ahole[i], ahole[j], ahole[k]);\n        }\n        holesMovements.push(oneHoleMovements);\n        verticesMovements = verticesMovements.concat(oneHoleMovements);\n      }\n      for (let b = 0; b < bevelSegments; b++) {\n        const t = b / bevelSegments;\n        const z = bevelThickness * Math.cos(t * Math.PI / 2);\n        const bs2 = bevelSize * Math.sin(t * Math.PI / 2) + bevelOffset;\n        for (let i = 0, il = contour.length; i < il; i++) {\n          const vert = scalePt2(contour[i], contourMovements[i], bs2);\n          v(vert.x, vert.y, -z);\n        }\n        for (let h = 0, hl = holes.length; h < hl; h++) {\n          const ahole = holes[h];\n          oneHoleMovements = holesMovements[h];\n          for (let i = 0, il = ahole.length; i < il; i++) {\n            const vert = scalePt2(ahole[i], oneHoleMovements[i], bs2);\n            v(vert.x, vert.y, -z);\n          }\n        }\n      }\n      const bs = bevelSize + bevelOffset;\n      for (let i = 0; i < vlen; i++) {\n        const vert = bevelEnabled ? scalePt2(vertices[i], verticesMovements[i], bs) : vertices[i];\n        if (!extrudeByPath) {\n          v(vert.x, vert.y, 0);\n        } else {\n          normal.copy(splineTube.normals[0]).multiplyScalar(vert.x);\n          binormal.copy(splineTube.binormals[0]).multiplyScalar(vert.y);\n          position2.copy(extrudePts[0]).add(normal).add(binormal);\n          v(position2.x, position2.y, position2.z);\n        }\n      }\n      for (let s = 1; s <= steps; s++) {\n        for (let i = 0; i < vlen; i++) {\n          const vert = bevelEnabled ? scalePt2(vertices[i], verticesMovements[i], bs) : vertices[i];\n          if (!extrudeByPath) {\n            v(vert.x, vert.y, depth / steps * s);\n          } else {\n            normal.copy(splineTube.normals[s]).multiplyScalar(vert.x);\n            binormal.copy(splineTube.binormals[s]).multiplyScalar(vert.y);\n            position2.copy(extrudePts[s]).add(normal).add(binormal);\n            v(position2.x, position2.y, position2.z);\n          }\n        }\n      }\n      for (let b = bevelSegments - 1; b >= 0; b--) {\n        const t = b / bevelSegments;\n        const z = bevelThickness * Math.cos(t * Math.PI / 2);\n        const bs2 = bevelSize * Math.sin(t * Math.PI / 2) + bevelOffset;\n        for (let i = 0, il = contour.length; i < il; i++) {\n          const vert = scalePt2(contour[i], contourMovements[i], bs2);\n          v(vert.x, vert.y, depth + z);\n        }\n        for (let h = 0, hl = holes.length; h < hl; h++) {\n          const ahole = holes[h];\n          oneHoleMovements = holesMovements[h];\n          for (let i = 0, il = ahole.length; i < il; i++) {\n            const vert = scalePt2(ahole[i], oneHoleMovements[i], bs2);\n            if (!extrudeByPath) {\n              v(vert.x, vert.y, depth + z);\n            } else {\n              v(vert.x, vert.y + extrudePts[steps - 1].y, extrudePts[steps - 1].x + z);\n            }\n          }\n        }\n      }\n      buildLidFaces();\n      buildSideFaces();\n      function buildLidFaces() {\n        const start = verticesArray.length / 3;\n        if (bevelEnabled) {\n          let layer = 0;\n          let offset = vlen * layer;\n          for (let i = 0; i < flen; i++) {\n            const face = faces[i];\n            f3(face[2] + offset, face[1] + offset, face[0] + offset);\n          }\n          layer = steps + bevelSegments * 2;\n          offset = vlen * layer;\n          for (let i = 0; i < flen; i++) {\n            const face = faces[i];\n            f3(face[0] + offset, face[1] + offset, face[2] + offset);\n          }\n        } else {\n          for (let i = 0; i < flen; i++) {\n            const face = faces[i];\n            f3(face[2], face[1], face[0]);\n          }\n          for (let i = 0; i < flen; i++) {\n            const face = faces[i];\n            f3(face[0] + vlen * steps, face[1] + vlen * steps, face[2] + vlen * steps);\n          }\n        }\n        scope.addGroup(start, verticesArray.length / 3 - start, 0);\n      }\n      function buildSideFaces() {\n        const start = verticesArray.length / 3;\n        let layeroffset = 0;\n        sidewalls(contour, layeroffset);\n        layeroffset += contour.length;\n        for (let h = 0, hl = holes.length; h < hl; h++) {\n          const ahole = holes[h];\n          sidewalls(ahole, layeroffset);\n          layeroffset += ahole.length;\n        }\n        scope.addGroup(start, verticesArray.length / 3 - start, 1);\n      }\n      function sidewalls(contour2, layeroffset) {\n        let i = contour2.length;\n        while (--i >= 0) {\n          const j = i;\n          let k = i - 1;\n          if (k < 0)\n            k = contour2.length - 1;\n          for (let s = 0, sl = steps + bevelSegments * 2; s < sl; s++) {\n            const slen1 = vlen * s;\n            const slen2 = vlen * (s + 1);\n            const a = layeroffset + j + slen1, b = layeroffset + k + slen1, c = layeroffset + k + slen2, d = layeroffset + j + slen2;\n            f4(a, b, c, d);\n          }\n        }\n      }\n      function v(x, y, z) {\n        placeholder.push(x);\n        placeholder.push(y);\n        placeholder.push(z);\n      }\n      function f3(a, b, c) {\n        addVertex(a);\n        addVertex(b);\n        addVertex(c);\n        const nextIndex = verticesArray.length / 3;\n        const uvs = uvgen.generateTopUV(scope, verticesArray, nextIndex - 3, nextIndex - 2, nextIndex - 1);\n        addUV(uvs[0]);\n        addUV(uvs[1]);\n        addUV(uvs[2]);\n      }\n      function f4(a, b, c, d) {\n        addVertex(a);\n        addVertex(b);\n        addVertex(d);\n        addVertex(b);\n        addVertex(c);\n        addVertex(d);\n        const nextIndex = verticesArray.length / 3;\n        const uvs = uvgen.generateSideWallUV(scope, verticesArray, nextIndex - 6, nextIndex - 3, nextIndex - 2, nextIndex - 1);\n        addUV(uvs[0]);\n        addUV(uvs[1]);\n        addUV(uvs[3]);\n        addUV(uvs[1]);\n        addUV(uvs[2]);\n        addUV(uvs[3]);\n      }\n      function addVertex(index2) {\n        verticesArray.push(placeholder[index2 * 3 + 0]);\n        verticesArray.push(placeholder[index2 * 3 + 1]);\n        verticesArray.push(placeholder[index2 * 3 + 2]);\n      }\n      function addUV(vector2) {\n        uvArray.push(vector2.x);\n        uvArray.push(vector2.y);\n      }\n    }\n  }\n  toJSON() {\n    const data = super.toJSON();\n    const shapes = this.parameters.shapes;\n    const options = this.parameters.options;\n    return toJSON$1(shapes, options, data);\n  }\n  static fromJSON(data, shapes) {\n    const geometryShapes = [];\n    for (let j = 0, jl = data.shapes.length; j < jl; j++) {\n      const shape = shapes[data.shapes[j]];\n      geometryShapes.push(shape);\n    }\n    const extrudePath = data.options.extrudePath;\n    if (extrudePath !== void 0) {\n      data.options.extrudePath = new Curves[extrudePath.type]().fromJSON(extrudePath);\n    }\n    return new ExtrudeGeometry(geometryShapes, data.options);\n  }\n}\nconst WorldUVGenerator = {\n  generateTopUV: function(geometry, vertices, indexA, indexB, indexC) {\n    const a_x = vertices[indexA * 3];\n    const a_y = vertices[indexA * 3 + 1];\n    const b_x = vertices[indexB * 3];\n    const b_y = vertices[indexB * 3 + 1];\n    const c_x = vertices[indexC * 3];\n    const c_y = vertices[indexC * 3 + 1];\n    return [\n      new Vector2(a_x, a_y),\n      new Vector2(b_x, b_y),\n      new Vector2(c_x, c_y)\n    ];\n  },\n  generateSideWallUV: function(geometry, vertices, indexA, indexB, indexC, indexD) {\n    const a_x = vertices[indexA * 3];\n    const a_y = vertices[indexA * 3 + 1];\n    const a_z = vertices[indexA * 3 + 2];\n    const b_x = vertices[indexB * 3];\n    const b_y = vertices[indexB * 3 + 1];\n    const b_z = vertices[indexB * 3 + 2];\n    const c_x = vertices[indexC * 3];\n    const c_y = vertices[indexC * 3 + 1];\n    const c_z = vertices[indexC * 3 + 2];\n    const d_x = vertices[indexD * 3];\n    const d_y = vertices[indexD * 3 + 1];\n    const d_z = vertices[indexD * 3 + 2];\n    if (Math.abs(a_y - b_y) < Math.abs(a_x - b_x)) {\n      return [\n        new Vector2(a_x, 1 - a_z),\n        new Vector2(b_x, 1 - b_z),\n        new Vector2(c_x, 1 - c_z),\n        new Vector2(d_x, 1 - d_z)\n      ];\n    } else {\n      return [\n        new Vector2(a_y, 1 - a_z),\n        new Vector2(b_y, 1 - b_z),\n        new Vector2(c_y, 1 - c_z),\n        new Vector2(d_y, 1 - d_z)\n      ];\n    }\n  }\n};\nfunction toJSON$1(shapes, options, data) {\n  data.shapes = [];\n  if (Array.isArray(shapes)) {\n    for (let i = 0, l = shapes.length; i < l; i++) {\n      const shape = shapes[i];\n      data.shapes.push(shape.uuid);\n    }\n  } else {\n    data.shapes.push(shapes.uuid);\n  }\n  data.options = Object.assign({}, options);\n  if (options.extrudePath !== void 0)\n    data.options.extrudePath = options.extrudePath.toJSON();\n  return data;\n}\nclass IcosahedronGeometry extends PolyhedronGeometry {\n  constructor(radius = 1, detail = 0) {\n    const t = (1 + Math.sqrt(5)) / 2;\n    const vertices = [\n      -1,\n      t,\n      0,\n      1,\n      t,\n      0,\n      -1,\n      -t,\n      0,\n      1,\n      -t,\n      0,\n      0,\n      -1,\n      t,\n      0,\n      1,\n      t,\n      0,\n      -1,\n      -t,\n      0,\n      1,\n      -t,\n      t,\n      0,\n      -1,\n      t,\n      0,\n      1,\n      -t,\n      0,\n      -1,\n      -t,\n      0,\n      1\n    ];\n    const indices = [\n      0,\n      11,\n      5,\n      0,\n      5,\n      1,\n      0,\n      1,\n      7,\n      0,\n      7,\n      10,\n      0,\n      10,\n      11,\n      1,\n      5,\n      9,\n      5,\n      11,\n      4,\n      11,\n      10,\n      2,\n      10,\n      7,\n      6,\n      7,\n      1,\n      8,\n      3,\n      9,\n      4,\n      3,\n      4,\n      2,\n      3,\n      2,\n      6,\n      3,\n      6,\n      8,\n      3,\n      8,\n      9,\n      4,\n      9,\n      5,\n      2,\n      4,\n      11,\n      6,\n      2,\n      10,\n      8,\n      6,\n      7,\n      9,\n      8,\n      1\n    ];\n    super(vertices, indices, radius, detail);\n    this.type = \"IcosahedronGeometry\";\n    this.parameters = {\n      radius,\n      detail\n    };\n  }\n  static fromJSON(data) {\n    return new IcosahedronGeometry(data.radius, data.detail);\n  }\n}\nclass OctahedronGeometry extends PolyhedronGeometry {\n  constructor(radius = 1, detail = 0) {\n    const vertices = [\n      1,\n      0,\n      0,\n      -1,\n      0,\n      0,\n      0,\n      1,\n      0,\n      0,\n      -1,\n      0,\n      0,\n      0,\n      1,\n      0,\n      0,\n      -1\n    ];\n    const indices = [\n      0,\n      2,\n      4,\n      0,\n      4,\n      3,\n      0,\n      3,\n      5,\n      0,\n      5,\n      2,\n      1,\n      2,\n      5,\n      1,\n      5,\n      3,\n      1,\n      3,\n      4,\n      1,\n      4,\n      2\n    ];\n    super(vertices, indices, radius, detail);\n    this.type = \"OctahedronGeometry\";\n    this.parameters = {\n      radius,\n      detail\n    };\n  }\n  static fromJSON(data) {\n    return new OctahedronGeometry(data.radius, data.detail);\n  }\n}\nclass RingGeometry extends BufferGeometry {\n  constructor(innerRadius = 0.5, outerRadius = 1, thetaSegments = 8, phiSegments = 1, thetaStart = 0, thetaLength = Math.PI * 2) {\n    super();\n    this.type = \"RingGeometry\";\n    this.parameters = {\n      innerRadius,\n      outerRadius,\n      thetaSegments,\n      phiSegments,\n      thetaStart,\n      thetaLength\n    };\n    thetaSegments = Math.max(3, thetaSegments);\n    phiSegments = Math.max(1, phiSegments);\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    let radius = innerRadius;\n    const radiusStep = (outerRadius - innerRadius) / phiSegments;\n    const vertex2 = new Vector3();\n    const uv = new Vector2();\n    for (let j = 0; j <= phiSegments; j++) {\n      for (let i = 0; i <= thetaSegments; i++) {\n        const segment = thetaStart + i / thetaSegments * thetaLength;\n        vertex2.x = radius * Math.cos(segment);\n        vertex2.y = radius * Math.sin(segment);\n        vertices.push(vertex2.x, vertex2.y, vertex2.z);\n        normals.push(0, 0, 1);\n        uv.x = (vertex2.x / outerRadius + 1) / 2;\n        uv.y = (vertex2.y / outerRadius + 1) / 2;\n        uvs.push(uv.x, uv.y);\n      }\n      radius += radiusStep;\n    }\n    for (let j = 0; j < phiSegments; j++) {\n      const thetaSegmentLevel = j * (thetaSegments + 1);\n      for (let i = 0; i < thetaSegments; i++) {\n        const segment = i + thetaSegmentLevel;\n        const a = segment;\n        const b = segment + thetaSegments + 1;\n        const c = segment + thetaSegments + 2;\n        const d = segment + 1;\n        indices.push(a, b, d);\n        indices.push(b, c, d);\n      }\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n  }\n  static fromJSON(data) {\n    return new RingGeometry(data.innerRadius, data.outerRadius, data.thetaSegments, data.phiSegments, data.thetaStart, data.thetaLength);\n  }\n}\nclass ShapeGeometry extends BufferGeometry {\n  constructor(shapes = new Shape([new Vector2(0, 0.5), new Vector2(-0.5, -0.5), new Vector2(0.5, -0.5)]), curveSegments = 12) {\n    super();\n    this.type = \"ShapeGeometry\";\n    this.parameters = {\n      shapes,\n      curveSegments\n    };\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    let groupStart = 0;\n    let groupCount = 0;\n    if (Array.isArray(shapes) === false) {\n      addShape(shapes);\n    } else {\n      for (let i = 0; i < shapes.length; i++) {\n        addShape(shapes[i]);\n        this.addGroup(groupStart, groupCount, i);\n        groupStart += groupCount;\n        groupCount = 0;\n      }\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n    function addShape(shape) {\n      const indexOffset = vertices.length / 3;\n      const points = shape.extractPoints(curveSegments);\n      let shapeVertices = points.shape;\n      const shapeHoles = points.holes;\n      if (ShapeUtils.isClockWise(shapeVertices) === false) {\n        shapeVertices = shapeVertices.reverse();\n      }\n      for (let i = 0, l = shapeHoles.length; i < l; i++) {\n        const shapeHole = shapeHoles[i];\n        if (ShapeUtils.isClockWise(shapeHole) === true) {\n          shapeHoles[i] = shapeHole.reverse();\n        }\n      }\n      const faces = ShapeUtils.triangulateShape(shapeVertices, shapeHoles);\n      for (let i = 0, l = shapeHoles.length; i < l; i++) {\n        const shapeHole = shapeHoles[i];\n        shapeVertices = shapeVertices.concat(shapeHole);\n      }\n      for (let i = 0, l = shapeVertices.length; i < l; i++) {\n        const vertex2 = shapeVertices[i];\n        vertices.push(vertex2.x, vertex2.y, 0);\n        normals.push(0, 0, 1);\n        uvs.push(vertex2.x, vertex2.y);\n      }\n      for (let i = 0, l = faces.length; i < l; i++) {\n        const face = faces[i];\n        const a = face[0] + indexOffset;\n        const b = face[1] + indexOffset;\n        const c = face[2] + indexOffset;\n        indices.push(a, b, c);\n        groupCount += 3;\n      }\n    }\n  }\n  toJSON() {\n    const data = super.toJSON();\n    const shapes = this.parameters.shapes;\n    return toJSON(shapes, data);\n  }\n  static fromJSON(data, shapes) {\n    const geometryShapes = [];\n    for (let j = 0, jl = data.shapes.length; j < jl; j++) {\n      const shape = shapes[data.shapes[j]];\n      geometryShapes.push(shape);\n    }\n    return new ShapeGeometry(geometryShapes, data.curveSegments);\n  }\n}\nfunction toJSON(shapes, data) {\n  data.shapes = [];\n  if (Array.isArray(shapes)) {\n    for (let i = 0, l = shapes.length; i < l; i++) {\n      const shape = shapes[i];\n      data.shapes.push(shape.uuid);\n    }\n  } else {\n    data.shapes.push(shapes.uuid);\n  }\n  return data;\n}\nclass SphereGeometry extends BufferGeometry {\n  constructor(radius = 1, widthSegments = 32, heightSegments = 16, phiStart = 0, phiLength = Math.PI * 2, thetaStart = 0, thetaLength = Math.PI) {\n    super();\n    this.type = \"SphereGeometry\";\n    this.parameters = {\n      radius,\n      widthSegments,\n      heightSegments,\n      phiStart,\n      phiLength,\n      thetaStart,\n      thetaLength\n    };\n    widthSegments = Math.max(3, Math.floor(widthSegments));\n    heightSegments = Math.max(2, Math.floor(heightSegments));\n    const thetaEnd = Math.min(thetaStart + thetaLength, Math.PI);\n    let index2 = 0;\n    const grid = [];\n    const vertex2 = new Vector3();\n    const normal = new Vector3();\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    for (let iy = 0; iy <= heightSegments; iy++) {\n      const verticesRow = [];\n      const v = iy / heightSegments;\n      let uOffset = 0;\n      if (iy == 0 && thetaStart == 0) {\n        uOffset = 0.5 / widthSegments;\n      } else if (iy == heightSegments && thetaEnd == Math.PI) {\n        uOffset = -0.5 / widthSegments;\n      }\n      for (let ix = 0; ix <= widthSegments; ix++) {\n        const u = ix / widthSegments;\n        vertex2.x = -radius * Math.cos(phiStart + u * phiLength) * Math.sin(thetaStart + v * thetaLength);\n        vertex2.y = radius * Math.cos(thetaStart + v * thetaLength);\n        vertex2.z = radius * Math.sin(phiStart + u * phiLength) * Math.sin(thetaStart + v * thetaLength);\n        vertices.push(vertex2.x, vertex2.y, vertex2.z);\n        normal.copy(vertex2).normalize();\n        normals.push(normal.x, normal.y, normal.z);\n        uvs.push(u + uOffset, 1 - v);\n        verticesRow.push(index2++);\n      }\n      grid.push(verticesRow);\n    }\n    for (let iy = 0; iy < heightSegments; iy++) {\n      for (let ix = 0; ix < widthSegments; ix++) {\n        const a = grid[iy][ix + 1];\n        const b = grid[iy][ix];\n        const c = grid[iy + 1][ix];\n        const d = grid[iy + 1][ix + 1];\n        if (iy !== 0 || thetaStart > 0)\n          indices.push(a, b, d);\n        if (iy !== heightSegments - 1 || thetaEnd < Math.PI)\n          indices.push(b, c, d);\n      }\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n  }\n  static fromJSON(data) {\n    return new SphereGeometry(data.radius, data.widthSegments, data.heightSegments, data.phiStart, data.phiLength, data.thetaStart, data.thetaLength);\n  }\n}\nclass TetrahedronGeometry extends PolyhedronGeometry {\n  constructor(radius = 1, detail = 0) {\n    const vertices = [\n      1,\n      1,\n      1,\n      -1,\n      -1,\n      1,\n      -1,\n      1,\n      -1,\n      1,\n      -1,\n      -1\n    ];\n    const indices = [\n      2,\n      1,\n      0,\n      0,\n      3,\n      2,\n      1,\n      3,\n      0,\n      2,\n      3,\n      1\n    ];\n    super(vertices, indices, radius, detail);\n    this.type = \"TetrahedronGeometry\";\n    this.parameters = {\n      radius,\n      detail\n    };\n  }\n  static fromJSON(data) {\n    return new TetrahedronGeometry(data.radius, data.detail);\n  }\n}\nclass TorusGeometry extends BufferGeometry {\n  constructor(radius = 1, tube = 0.4, radialSegments = 8, tubularSegments = 6, arc = Math.PI * 2) {\n    super();\n    this.type = \"TorusGeometry\";\n    this.parameters = {\n      radius,\n      tube,\n      radialSegments,\n      tubularSegments,\n      arc\n    };\n    radialSegments = Math.floor(radialSegments);\n    tubularSegments = Math.floor(tubularSegments);\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    const center = new Vector3();\n    const vertex2 = new Vector3();\n    const normal = new Vector3();\n    for (let j = 0; j <= radialSegments; j++) {\n      for (let i = 0; i <= tubularSegments; i++) {\n        const u = i / tubularSegments * arc;\n        const v = j / radialSegments * Math.PI * 2;\n        vertex2.x = (radius + tube * Math.cos(v)) * Math.cos(u);\n        vertex2.y = (radius + tube * Math.cos(v)) * Math.sin(u);\n        vertex2.z = tube * Math.sin(v);\n        vertices.push(vertex2.x, vertex2.y, vertex2.z);\n        center.x = radius * Math.cos(u);\n        center.y = radius * Math.sin(u);\n        normal.subVectors(vertex2, center).normalize();\n        normals.push(normal.x, normal.y, normal.z);\n        uvs.push(i / tubularSegments);\n        uvs.push(j / radialSegments);\n      }\n    }\n    for (let j = 1; j <= radialSegments; j++) {\n      for (let i = 1; i <= tubularSegments; i++) {\n        const a = (tubularSegments + 1) * j + i - 1;\n        const b = (tubularSegments + 1) * (j - 1) + i - 1;\n        const c = (tubularSegments + 1) * (j - 1) + i;\n        const d = (tubularSegments + 1) * j + i;\n        indices.push(a, b, d);\n        indices.push(b, c, d);\n      }\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n  }\n  static fromJSON(data) {\n    return new TorusGeometry(data.radius, data.tube, data.radialSegments, data.tubularSegments, data.arc);\n  }\n}\nclass TorusKnotGeometry extends BufferGeometry {\n  constructor(radius = 1, tube = 0.4, tubularSegments = 64, radialSegments = 8, p = 2, q = 3) {\n    super();\n    this.type = \"TorusKnotGeometry\";\n    this.parameters = {\n      radius,\n      tube,\n      tubularSegments,\n      radialSegments,\n      p,\n      q\n    };\n    tubularSegments = Math.floor(tubularSegments);\n    radialSegments = Math.floor(radialSegments);\n    const indices = [];\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    const vertex2 = new Vector3();\n    const normal = new Vector3();\n    const P1 = new Vector3();\n    const P2 = new Vector3();\n    const B = new Vector3();\n    const T = new Vector3();\n    const N = new Vector3();\n    for (let i = 0; i <= tubularSegments; ++i) {\n      const u = i / tubularSegments * p * Math.PI * 2;\n      calculatePositionOnCurve(u, p, q, radius, P1);\n      calculatePositionOnCurve(u + 0.01, p, q, radius, P2);\n      T.subVectors(P2, P1);\n      N.addVectors(P2, P1);\n      B.crossVectors(T, N);\n      N.crossVectors(B, T);\n      B.normalize();\n      N.normalize();\n      for (let j = 0; j <= radialSegments; ++j) {\n        const v = j / radialSegments * Math.PI * 2;\n        const cx = -tube * Math.cos(v);\n        const cy = tube * Math.sin(v);\n        vertex2.x = P1.x + (cx * N.x + cy * B.x);\n        vertex2.y = P1.y + (cx * N.y + cy * B.y);\n        vertex2.z = P1.z + (cx * N.z + cy * B.z);\n        vertices.push(vertex2.x, vertex2.y, vertex2.z);\n        normal.subVectors(vertex2, P1).normalize();\n        normals.push(normal.x, normal.y, normal.z);\n        uvs.push(i / tubularSegments);\n        uvs.push(j / radialSegments);\n      }\n    }\n    for (let j = 1; j <= tubularSegments; j++) {\n      for (let i = 1; i <= radialSegments; i++) {\n        const a = (radialSegments + 1) * (j - 1) + (i - 1);\n        const b = (radialSegments + 1) * j + (i - 1);\n        const c = (radialSegments + 1) * j + i;\n        const d = (radialSegments + 1) * (j - 1) + i;\n        indices.push(a, b, d);\n        indices.push(b, c, d);\n      }\n    }\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n    function calculatePositionOnCurve(u, p2, q2, radius2, position) {\n      const cu = Math.cos(u);\n      const su = Math.sin(u);\n      const quOverP = q2 / p2 * u;\n      const cs = Math.cos(quOverP);\n      position.x = radius2 * (2 + cs) * 0.5 * cu;\n      position.y = radius2 * (2 + cs) * su * 0.5;\n      position.z = radius2 * Math.sin(quOverP) * 0.5;\n    }\n  }\n  static fromJSON(data) {\n    return new TorusKnotGeometry(data.radius, data.tube, data.tubularSegments, data.radialSegments, data.p, data.q);\n  }\n}\nclass TubeGeometry extends BufferGeometry {\n  constructor(path = new QuadraticBezierCurve3(new Vector3(-1, -1, 0), new Vector3(-1, 1, 0), new Vector3(1, 1, 0)), tubularSegments = 64, radius = 1, radialSegments = 8, closed = false) {\n    super();\n    this.type = \"TubeGeometry\";\n    this.parameters = {\n      path,\n      tubularSegments,\n      radius,\n      radialSegments,\n      closed\n    };\n    const frames = path.computeFrenetFrames(tubularSegments, closed);\n    this.tangents = frames.tangents;\n    this.normals = frames.normals;\n    this.binormals = frames.binormals;\n    const vertex2 = new Vector3();\n    const normal = new Vector3();\n    const uv = new Vector2();\n    let P = new Vector3();\n    const vertices = [];\n    const normals = [];\n    const uvs = [];\n    const indices = [];\n    generateBufferData();\n    this.setIndex(indices);\n    this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    this.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n    this.setAttribute(\"uv\", new Float32BufferAttribute(uvs, 2));\n    function generateBufferData() {\n      for (let i = 0; i < tubularSegments; i++) {\n        generateSegment(i);\n      }\n      generateSegment(closed === false ? tubularSegments : 0);\n      generateUVs();\n      generateIndices();\n    }\n    function generateSegment(i) {\n      P = path.getPointAt(i / tubularSegments, P);\n      const N = frames.normals[i];\n      const B = frames.binormals[i];\n      for (let j = 0; j <= radialSegments; j++) {\n        const v = j / radialSegments * Math.PI * 2;\n        const sin = Math.sin(v);\n        const cos = -Math.cos(v);\n        normal.x = cos * N.x + sin * B.x;\n        normal.y = cos * N.y + sin * B.y;\n        normal.z = cos * N.z + sin * B.z;\n        normal.normalize();\n        normals.push(normal.x, normal.y, normal.z);\n        vertex2.x = P.x + radius * normal.x;\n        vertex2.y = P.y + radius * normal.y;\n        vertex2.z = P.z + radius * normal.z;\n        vertices.push(vertex2.x, vertex2.y, vertex2.z);\n      }\n    }\n    function generateIndices() {\n      for (let j = 1; j <= tubularSegments; j++) {\n        for (let i = 1; i <= radialSegments; i++) {\n          const a = (radialSegments + 1) * (j - 1) + (i - 1);\n          const b = (radialSegments + 1) * j + (i - 1);\n          const c = (radialSegments + 1) * j + i;\n          const d = (radialSegments + 1) * (j - 1) + i;\n          indices.push(a, b, d);\n          indices.push(b, c, d);\n        }\n      }\n    }\n    function generateUVs() {\n      for (let i = 0; i <= tubularSegments; i++) {\n        for (let j = 0; j <= radialSegments; j++) {\n          uv.x = i / tubularSegments;\n          uv.y = j / radialSegments;\n          uvs.push(uv.x, uv.y);\n        }\n      }\n    }\n  }\n  toJSON() {\n    const data = super.toJSON();\n    data.path = this.parameters.path.toJSON();\n    return data;\n  }\n  static fromJSON(data) {\n    return new TubeGeometry(new Curves[data.path.type]().fromJSON(data.path), data.tubularSegments, data.radius, data.radialSegments, data.closed);\n  }\n}\nclass WireframeGeometry extends BufferGeometry {\n  constructor(geometry = null) {\n    super();\n    this.type = \"WireframeGeometry\";\n    this.parameters = {\n      geometry\n    };\n    if (geometry !== null) {\n      const vertices = [];\n      const edges = /* @__PURE__ */ new Set();\n      const start = new Vector3();\n      const end = new Vector3();\n      if (geometry.index !== null) {\n        const position = geometry.attributes.position;\n        const indices = geometry.index;\n        let groups = geometry.groups;\n        if (groups.length === 0) {\n          groups = [{ start: 0, count: indices.count, materialIndex: 0 }];\n        }\n        for (let o = 0, ol = groups.length; o < ol; ++o) {\n          const group = groups[o];\n          const groupStart = group.start;\n          const groupCount = group.count;\n          for (let i = groupStart, l = groupStart + groupCount; i < l; i += 3) {\n            for (let j = 0; j < 3; j++) {\n              const index1 = indices.getX(i + j);\n              const index2 = indices.getX(i + (j + 1) % 3);\n              start.fromBufferAttribute(position, index1);\n              end.fromBufferAttribute(position, index2);\n              if (isUniqueEdge(start, end, edges) === true) {\n                vertices.push(start.x, start.y, start.z);\n                vertices.push(end.x, end.y, end.z);\n              }\n            }\n          }\n        }\n      } else {\n        const position = geometry.attributes.position;\n        for (let i = 0, l = position.count / 3; i < l; i++) {\n          for (let j = 0; j < 3; j++) {\n            const index1 = 3 * i + j;\n            const index2 = 3 * i + (j + 1) % 3;\n            start.fromBufferAttribute(position, index1);\n            end.fromBufferAttribute(position, index2);\n            if (isUniqueEdge(start, end, edges) === true) {\n              vertices.push(start.x, start.y, start.z);\n              vertices.push(end.x, end.y, end.z);\n            }\n          }\n        }\n      }\n      this.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    }\n  }\n}\nfunction isUniqueEdge(start, end, edges) {\n  const hash1 = `${start.x},${start.y},${start.z}-${end.x},${end.y},${end.z}`;\n  const hash2 = `${end.x},${end.y},${end.z}-${start.x},${start.y},${start.z}`;\n  if (edges.has(hash1) === true || edges.has(hash2) === true) {\n    return false;\n  } else {\n    edges.add(hash1);\n    edges.add(hash2);\n    return true;\n  }\n}\nvar Geometries = /* @__PURE__ */ Object.freeze({\n  __proto__: null,\n  BoxGeometry,\n  BoxBufferGeometry: BoxGeometry,\n  CapsuleGeometry,\n  CapsuleBufferGeometry: CapsuleGeometry,\n  CircleGeometry,\n  CircleBufferGeometry: CircleGeometry,\n  ConeGeometry,\n  ConeBufferGeometry: ConeGeometry,\n  CylinderGeometry,\n  CylinderBufferGeometry: CylinderGeometry,\n  DodecahedronGeometry,\n  DodecahedronBufferGeometry: DodecahedronGeometry,\n  EdgesGeometry,\n  ExtrudeGeometry,\n  ExtrudeBufferGeometry: ExtrudeGeometry,\n  IcosahedronGeometry,\n  IcosahedronBufferGeometry: IcosahedronGeometry,\n  LatheGeometry,\n  LatheBufferGeometry: LatheGeometry,\n  OctahedronGeometry,\n  OctahedronBufferGeometry: OctahedronGeometry,\n  PlaneGeometry,\n  PlaneBufferGeometry: PlaneGeometry,\n  PolyhedronGeometry,\n  PolyhedronBufferGeometry: PolyhedronGeometry,\n  RingGeometry,\n  RingBufferGeometry: RingGeometry,\n  ShapeGeometry,\n  ShapeBufferGeometry: ShapeGeometry,\n  SphereGeometry,\n  SphereBufferGeometry: SphereGeometry,\n  TetrahedronGeometry,\n  TetrahedronBufferGeometry: TetrahedronGeometry,\n  TorusGeometry,\n  TorusBufferGeometry: TorusGeometry,\n  TorusKnotGeometry,\n  TorusKnotBufferGeometry: TorusKnotGeometry,\n  TubeGeometry,\n  TubeBufferGeometry: TubeGeometry,\n  WireframeGeometry\n});\nclass ShadowMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isShadowMaterial = true;\n    this.type = \"ShadowMaterial\";\n    this.color = new Color(0);\n    this.transparent = true;\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.color.copy(source.color);\n    this.fog = source.fog;\n    return this;\n  }\n}\nclass RawShaderMaterial extends ShaderMaterial {\n  constructor(parameters) {\n    super(parameters);\n    this.isRawShaderMaterial = true;\n    this.type = \"RawShaderMaterial\";\n  }\n}\nclass MeshStandardMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshStandardMaterial = true;\n    this.defines = { \"STANDARD\": \"\" };\n    this.type = \"MeshStandardMaterial\";\n    this.color = new Color(16777215);\n    this.roughness = 1;\n    this.metalness = 0;\n    this.map = null;\n    this.lightMap = null;\n    this.lightMapIntensity = 1;\n    this.aoMap = null;\n    this.aoMapIntensity = 1;\n    this.emissive = new Color(0);\n    this.emissiveIntensity = 1;\n    this.emissiveMap = null;\n    this.bumpMap = null;\n    this.bumpScale = 1;\n    this.normalMap = null;\n    this.normalMapType = TangentSpaceNormalMap;\n    this.normalScale = new Vector2(1, 1);\n    this.displacementMap = null;\n    this.displacementScale = 1;\n    this.displacementBias = 0;\n    this.roughnessMap = null;\n    this.metalnessMap = null;\n    this.alphaMap = null;\n    this.envMap = null;\n    this.envMapIntensity = 1;\n    this.wireframe = false;\n    this.wireframeLinewidth = 1;\n    this.wireframeLinecap = \"round\";\n    this.wireframeLinejoin = \"round\";\n    this.flatShading = false;\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.defines = { \"STANDARD\": \"\" };\n    this.color.copy(source.color);\n    this.roughness = source.roughness;\n    this.metalness = source.metalness;\n    this.map = source.map;\n    this.lightMap = source.lightMap;\n    this.lightMapIntensity = source.lightMapIntensity;\n    this.aoMap = source.aoMap;\n    this.aoMapIntensity = source.aoMapIntensity;\n    this.emissive.copy(source.emissive);\n    this.emissiveMap = source.emissiveMap;\n    this.emissiveIntensity = source.emissiveIntensity;\n    this.bumpMap = source.bumpMap;\n    this.bumpScale = source.bumpScale;\n    this.normalMap = source.normalMap;\n    this.normalMapType = source.normalMapType;\n    this.normalScale.copy(source.normalScale);\n    this.displacementMap = source.displacementMap;\n    this.displacementScale = source.displacementScale;\n    this.displacementBias = source.displacementBias;\n    this.roughnessMap = source.roughnessMap;\n    this.metalnessMap = source.metalnessMap;\n    this.alphaMap = source.alphaMap;\n    this.envMap = source.envMap;\n    this.envMapIntensity = source.envMapIntensity;\n    this.wireframe = source.wireframe;\n    this.wireframeLinewidth = source.wireframeLinewidth;\n    this.wireframeLinecap = source.wireframeLinecap;\n    this.wireframeLinejoin = source.wireframeLinejoin;\n    this.flatShading = source.flatShading;\n    this.fog = source.fog;\n    return this;\n  }\n}\nclass MeshPhysicalMaterial extends MeshStandardMaterial {\n  constructor(parameters) {\n    super();\n    this.isMeshPhysicalMaterial = true;\n    this.defines = {\n      \"STANDARD\": \"\",\n      \"PHYSICAL\": \"\"\n    };\n    this.type = \"MeshPhysicalMaterial\";\n    this.clearcoatMap = null;\n    this.clearcoatRoughness = 0;\n    this.clearcoatRoughnessMap = null;\n    this.clearcoatNormalScale = new Vector2(1, 1);\n    this.clearcoatNormalMap = null;\n    this.ior = 1.5;\n    Object.defineProperty(this, \"reflectivity\", {\n      get: function() {\n        return clamp(2.5 * (this.ior - 1) / (this.ior + 1), 0, 1);\n      },\n      set: function(reflectivity) {\n        this.ior = (1 + 0.4 * reflectivity) / (1 - 0.4 * reflectivity);\n      }\n    });\n    this.iridescenceMap = null;\n    this.iridescenceIOR = 1.3;\n    this.iridescenceThicknessRange = [100, 400];\n    this.iridescenceThicknessMap = null;\n    this.sheenColor = new Color(0);\n    this.sheenColorMap = null;\n    this.sheenRoughness = 1;\n    this.sheenRoughnessMap = null;\n    this.transmissionMap = null;\n    this.thickness = 0;\n    this.thicknessMap = null;\n    this.attenuationDistance = 0;\n    this.attenuationColor = new Color(1, 1, 1);\n    this.specularIntensity = 1;\n    this.specularIntensityMap = null;\n    this.specularColor = new Color(1, 1, 1);\n    this.specularColorMap = null;\n    this._sheen = 0;\n    this._clearcoat = 0;\n    this._iridescence = 0;\n    this._transmission = 0;\n    this.setValues(parameters);\n  }\n  get sheen() {\n    return this._sheen;\n  }\n  set sheen(value) {\n    if (this._sheen > 0 !== value > 0) {\n      this.version++;\n    }\n    this._sheen = value;\n  }\n  get clearcoat() {\n    return this._clearcoat;\n  }\n  set clearcoat(value) {\n    if (this._clearcoat > 0 !== value > 0) {\n      this.version++;\n    }\n    this._clearcoat = value;\n  }\n  get iridescence() {\n    return this._iridescence;\n  }\n  set iridescence(value) {\n    if (this._iridescence > 0 !== value > 0) {\n      this.version++;\n    }\n    this._iridescence = value;\n  }\n  get transmission() {\n    return this._transmission;\n  }\n  set transmission(value) {\n    if (this._transmission > 0 !== value > 0) {\n      this.version++;\n    }\n    this._transmission = value;\n  }\n  copy(source) {\n    super.copy(source);\n    this.defines = {\n      \"STANDARD\": \"\",\n      \"PHYSICAL\": \"\"\n    };\n    this.clearcoat = source.clearcoat;\n    this.clearcoatMap = source.clearcoatMap;\n    this.clearcoatRoughness = source.clearcoatRoughness;\n    this.clearcoatRoughnessMap = source.clearcoatRoughnessMap;\n    this.clearcoatNormalMap = source.clearcoatNormalMap;\n    this.clearcoatNormalScale.copy(source.clearcoatNormalScale);\n    this.ior = source.ior;\n    this.iridescence = source.iridescence;\n    this.iridescenceMap = source.iridescenceMap;\n    this.iridescenceIOR = source.iridescenceIOR;\n    this.iridescenceThicknessRange = [...source.iridescenceThicknessRange];\n    this.iridescenceThicknessMap = source.iridescenceThicknessMap;\n    this.sheen = source.sheen;\n    this.sheenColor.copy(source.sheenColor);\n    this.sheenColorMap = source.sheenColorMap;\n    this.sheenRoughness = source.sheenRoughness;\n    this.sheenRoughnessMap = source.sheenRoughnessMap;\n    this.transmission = source.transmission;\n    this.transmissionMap = source.transmissionMap;\n    this.thickness = source.thickness;\n    this.thicknessMap = source.thicknessMap;\n    this.attenuationDistance = source.attenuationDistance;\n    this.attenuationColor.copy(source.attenuationColor);\n    this.specularIntensity = source.specularIntensity;\n    this.specularIntensityMap = source.specularIntensityMap;\n    this.specularColor.copy(source.specularColor);\n    this.specularColorMap = source.specularColorMap;\n    return this;\n  }\n}\nclass MeshPhongMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshPhongMaterial = true;\n    this.type = \"MeshPhongMaterial\";\n    this.color = new Color(16777215);\n    this.specular = new Color(1118481);\n    this.shininess = 30;\n    this.map = null;\n    this.lightMap = null;\n    this.lightMapIntensity = 1;\n    this.aoMap = null;\n    this.aoMapIntensity = 1;\n    this.emissive = new Color(0);\n    this.emissiveIntensity = 1;\n    this.emissiveMap = null;\n    this.bumpMap = null;\n    this.bumpScale = 1;\n    this.normalMap = null;\n    this.normalMapType = TangentSpaceNormalMap;\n    this.normalScale = new Vector2(1, 1);\n    this.displacementMap = null;\n    this.displacementScale = 1;\n    this.displacementBias = 0;\n    this.specularMap = null;\n    this.alphaMap = null;\n    this.envMap = null;\n    this.combine = MultiplyOperation;\n    this.reflectivity = 1;\n    this.refractionRatio = 0.98;\n    this.wireframe = false;\n    this.wireframeLinewidth = 1;\n    this.wireframeLinecap = \"round\";\n    this.wireframeLinejoin = \"round\";\n    this.flatShading = false;\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.color.copy(source.color);\n    this.specular.copy(source.specular);\n    this.shininess = source.shininess;\n    this.map = source.map;\n    this.lightMap = source.lightMap;\n    this.lightMapIntensity = source.lightMapIntensity;\n    this.aoMap = source.aoMap;\n    this.aoMapIntensity = source.aoMapIntensity;\n    this.emissive.copy(source.emissive);\n    this.emissiveMap = source.emissiveMap;\n    this.emissiveIntensity = source.emissiveIntensity;\n    this.bumpMap = source.bumpMap;\n    this.bumpScale = source.bumpScale;\n    this.normalMap = source.normalMap;\n    this.normalMapType = source.normalMapType;\n    this.normalScale.copy(source.normalScale);\n    this.displacementMap = source.displacementMap;\n    this.displacementScale = source.displacementScale;\n    this.displacementBias = source.displacementBias;\n    this.specularMap = source.specularMap;\n    this.alphaMap = source.alphaMap;\n    this.envMap = source.envMap;\n    this.combine = source.combine;\n    this.reflectivity = source.reflectivity;\n    this.refractionRatio = source.refractionRatio;\n    this.wireframe = source.wireframe;\n    this.wireframeLinewidth = source.wireframeLinewidth;\n    this.wireframeLinecap = source.wireframeLinecap;\n    this.wireframeLinejoin = source.wireframeLinejoin;\n    this.flatShading = source.flatShading;\n    this.fog = source.fog;\n    return this;\n  }\n}\nclass MeshToonMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshToonMaterial = true;\n    this.defines = { \"TOON\": \"\" };\n    this.type = \"MeshToonMaterial\";\n    this.color = new Color(16777215);\n    this.map = null;\n    this.gradientMap = null;\n    this.lightMap = null;\n    this.lightMapIntensity = 1;\n    this.aoMap = null;\n    this.aoMapIntensity = 1;\n    this.emissive = new Color(0);\n    this.emissiveIntensity = 1;\n    this.emissiveMap = null;\n    this.bumpMap = null;\n    this.bumpScale = 1;\n    this.normalMap = null;\n    this.normalMapType = TangentSpaceNormalMap;\n    this.normalScale = new Vector2(1, 1);\n    this.displacementMap = null;\n    this.displacementScale = 1;\n    this.displacementBias = 0;\n    this.alphaMap = null;\n    this.wireframe = false;\n    this.wireframeLinewidth = 1;\n    this.wireframeLinecap = \"round\";\n    this.wireframeLinejoin = \"round\";\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.color.copy(source.color);\n    this.map = source.map;\n    this.gradientMap = source.gradientMap;\n    this.lightMap = source.lightMap;\n    this.lightMapIntensity = source.lightMapIntensity;\n    this.aoMap = source.aoMap;\n    this.aoMapIntensity = source.aoMapIntensity;\n    this.emissive.copy(source.emissive);\n    this.emissiveMap = source.emissiveMap;\n    this.emissiveIntensity = source.emissiveIntensity;\n    this.bumpMap = source.bumpMap;\n    this.bumpScale = source.bumpScale;\n    this.normalMap = source.normalMap;\n    this.normalMapType = source.normalMapType;\n    this.normalScale.copy(source.normalScale);\n    this.displacementMap = source.displacementMap;\n    this.displacementScale = source.displacementScale;\n    this.displacementBias = source.displacementBias;\n    this.alphaMap = source.alphaMap;\n    this.wireframe = source.wireframe;\n    this.wireframeLinewidth = source.wireframeLinewidth;\n    this.wireframeLinecap = source.wireframeLinecap;\n    this.wireframeLinejoin = source.wireframeLinejoin;\n    this.fog = source.fog;\n    return this;\n  }\n}\nclass MeshNormalMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshNormalMaterial = true;\n    this.type = \"MeshNormalMaterial\";\n    this.bumpMap = null;\n    this.bumpScale = 1;\n    this.normalMap = null;\n    this.normalMapType = TangentSpaceNormalMap;\n    this.normalScale = new Vector2(1, 1);\n    this.displacementMap = null;\n    this.displacementScale = 1;\n    this.displacementBias = 0;\n    this.wireframe = false;\n    this.wireframeLinewidth = 1;\n    this.flatShading = false;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.bumpMap = source.bumpMap;\n    this.bumpScale = source.bumpScale;\n    this.normalMap = source.normalMap;\n    this.normalMapType = source.normalMapType;\n    this.normalScale.copy(source.normalScale);\n    this.displacementMap = source.displacementMap;\n    this.displacementScale = source.displacementScale;\n    this.displacementBias = source.displacementBias;\n    this.wireframe = source.wireframe;\n    this.wireframeLinewidth = source.wireframeLinewidth;\n    this.flatShading = source.flatShading;\n    return this;\n  }\n}\nclass MeshLambertMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshLambertMaterial = true;\n    this.type = \"MeshLambertMaterial\";\n    this.color = new Color(16777215);\n    this.map = null;\n    this.lightMap = null;\n    this.lightMapIntensity = 1;\n    this.aoMap = null;\n    this.aoMapIntensity = 1;\n    this.emissive = new Color(0);\n    this.emissiveIntensity = 1;\n    this.emissiveMap = null;\n    this.specularMap = null;\n    this.alphaMap = null;\n    this.envMap = null;\n    this.combine = MultiplyOperation;\n    this.reflectivity = 1;\n    this.refractionRatio = 0.98;\n    this.wireframe = false;\n    this.wireframeLinewidth = 1;\n    this.wireframeLinecap = \"round\";\n    this.wireframeLinejoin = \"round\";\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.color.copy(source.color);\n    this.map = source.map;\n    this.lightMap = source.lightMap;\n    this.lightMapIntensity = source.lightMapIntensity;\n    this.aoMap = source.aoMap;\n    this.aoMapIntensity = source.aoMapIntensity;\n    this.emissive.copy(source.emissive);\n    this.emissiveMap = source.emissiveMap;\n    this.emissiveIntensity = source.emissiveIntensity;\n    this.specularMap = source.specularMap;\n    this.alphaMap = source.alphaMap;\n    this.envMap = source.envMap;\n    this.combine = source.combine;\n    this.reflectivity = source.reflectivity;\n    this.refractionRatio = source.refractionRatio;\n    this.wireframe = source.wireframe;\n    this.wireframeLinewidth = source.wireframeLinewidth;\n    this.wireframeLinecap = source.wireframeLinecap;\n    this.wireframeLinejoin = source.wireframeLinejoin;\n    this.fog = source.fog;\n    return this;\n  }\n}\nclass MeshMatcapMaterial extends Material {\n  constructor(parameters) {\n    super();\n    this.isMeshMatcapMaterial = true;\n    this.defines = { \"MATCAP\": \"\" };\n    this.type = \"MeshMatcapMaterial\";\n    this.color = new Color(16777215);\n    this.matcap = null;\n    this.map = null;\n    this.bumpMap = null;\n    this.bumpScale = 1;\n    this.normalMap = null;\n    this.normalMapType = TangentSpaceNormalMap;\n    this.normalScale = new Vector2(1, 1);\n    this.displacementMap = null;\n    this.displacementScale = 1;\n    this.displacementBias = 0;\n    this.alphaMap = null;\n    this.flatShading = false;\n    this.fog = true;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.defines = { \"MATCAP\": \"\" };\n    this.color.copy(source.color);\n    this.matcap = source.matcap;\n    this.map = source.map;\n    this.bumpMap = source.bumpMap;\n    this.bumpScale = source.bumpScale;\n    this.normalMap = source.normalMap;\n    this.normalMapType = source.normalMapType;\n    this.normalScale.copy(source.normalScale);\n    this.displacementMap = source.displacementMap;\n    this.displacementScale = source.displacementScale;\n    this.displacementBias = source.displacementBias;\n    this.alphaMap = source.alphaMap;\n    this.flatShading = source.flatShading;\n    this.fog = source.fog;\n    return this;\n  }\n}\nclass LineDashedMaterial extends LineBasicMaterial {\n  constructor(parameters) {\n    super();\n    this.isLineDashedMaterial = true;\n    this.type = \"LineDashedMaterial\";\n    this.scale = 1;\n    this.dashSize = 3;\n    this.gapSize = 1;\n    this.setValues(parameters);\n  }\n  copy(source) {\n    super.copy(source);\n    this.scale = source.scale;\n    this.dashSize = source.dashSize;\n    this.gapSize = source.gapSize;\n    return this;\n  }\n}\nfunction arraySlice(array, from, to) {\n  if (isTypedArray(array)) {\n    return new array.constructor(array.subarray(from, to !== void 0 ? to : array.length));\n  }\n  return array.slice(from, to);\n}\nfunction convertArray(array, type, forceClone) {\n  if (!array || !forceClone && array.constructor === type)\n    return array;\n  if (typeof type.BYTES_PER_ELEMENT === \"number\") {\n    return new type(array);\n  }\n  return Array.prototype.slice.call(array);\n}\nfunction isTypedArray(object) {\n  return ArrayBuffer.isView(object) && !(object instanceof DataView);\n}\nfunction getKeyframeOrder(times) {\n  function compareTime(i, j) {\n    return times[i] - times[j];\n  }\n  const n = times.length;\n  const result = new Array(n);\n  for (let i = 0; i !== n; ++i)\n    result[i] = i;\n  result.sort(compareTime);\n  return result;\n}\nfunction sortedArray(values, stride, order) {\n  const nValues = values.length;\n  const result = new values.constructor(nValues);\n  for (let i = 0, dstOffset = 0; dstOffset !== nValues; ++i) {\n    const srcOffset = order[i] * stride;\n    for (let j = 0; j !== stride; ++j) {\n      result[dstOffset++] = values[srcOffset + j];\n    }\n  }\n  return result;\n}\nfunction flattenJSON(jsonKeys, times, values, valuePropertyName) {\n  let i = 1, key = jsonKeys[0];\n  while (key !== void 0 && key[valuePropertyName] === void 0) {\n    key = jsonKeys[i++];\n  }\n  if (key === void 0)\n    return;\n  let value = key[valuePropertyName];\n  if (value === void 0)\n    return;\n  if (Array.isArray(value)) {\n    do {\n      value = key[valuePropertyName];\n      if (value !== void 0) {\n        times.push(key.time);\n        values.push.apply(values, value);\n      }\n      key = jsonKeys[i++];\n    } while (key !== void 0);\n  } else if (value.toArray !== void 0) {\n    do {\n      value = key[valuePropertyName];\n      if (value !== void 0) {\n        times.push(key.time);\n        value.toArray(values, values.length);\n      }\n      key = jsonKeys[i++];\n    } while (key !== void 0);\n  } else {\n    do {\n      value = key[valuePropertyName];\n      if (value !== void 0) {\n        times.push(key.time);\n        values.push(value);\n      }\n      key = jsonKeys[i++];\n    } while (key !== void 0);\n  }\n}\nfunction subclip(sourceClip, name, startFrame, endFrame, fps = 30) {\n  const clip = sourceClip.clone();\n  clip.name = name;\n  const tracks = [];\n  for (let i = 0; i < clip.tracks.length; ++i) {\n    const track = clip.tracks[i];\n    const valueSize = track.getValueSize();\n    const times = [];\n    const values = [];\n    for (let j = 0; j < track.times.length; ++j) {\n      const frame = track.times[j] * fps;\n      if (frame < startFrame || frame >= endFrame)\n        continue;\n      times.push(track.times[j]);\n      for (let k = 0; k < valueSize; ++k) {\n        values.push(track.values[j * valueSize + k]);\n      }\n    }\n    if (times.length === 0)\n      continue;\n    track.times = convertArray(times, track.times.constructor);\n    track.values = convertArray(values, track.values.constructor);\n    tracks.push(track);\n  }\n  clip.tracks = tracks;\n  let minStartTime = Infinity;\n  for (let i = 0; i < clip.tracks.length; ++i) {\n    if (minStartTime > clip.tracks[i].times[0]) {\n      minStartTime = clip.tracks[i].times[0];\n    }\n  }\n  for (let i = 0; i < clip.tracks.length; ++i) {\n    clip.tracks[i].shift(-1 * minStartTime);\n  }\n  clip.resetDuration();\n  return clip;\n}\nfunction makeClipAdditive(targetClip, referenceFrame = 0, referenceClip = targetClip, fps = 30) {\n  if (fps <= 0)\n    fps = 30;\n  const numTracks = referenceClip.tracks.length;\n  const referenceTime = referenceFrame / fps;\n  for (let i = 0; i < numTracks; ++i) {\n    const referenceTrack = referenceClip.tracks[i];\n    const referenceTrackType = referenceTrack.ValueTypeName;\n    if (referenceTrackType === \"bool\" || referenceTrackType === \"string\")\n      continue;\n    const targetTrack = targetClip.tracks.find(function(track) {\n      return track.name === referenceTrack.name && track.ValueTypeName === referenceTrackType;\n    });\n    if (targetTrack === void 0)\n      continue;\n    let referenceOffset = 0;\n    const referenceValueSize = referenceTrack.getValueSize();\n    if (referenceTrack.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline) {\n      referenceOffset = referenceValueSize / 3;\n    }\n    let targetOffset = 0;\n    const targetValueSize = targetTrack.getValueSize();\n    if (targetTrack.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline) {\n      targetOffset = targetValueSize / 3;\n    }\n    const lastIndex = referenceTrack.times.length - 1;\n    let referenceValue;\n    if (referenceTime <= referenceTrack.times[0]) {\n      const startIndex = referenceOffset;\n      const endIndex = referenceValueSize - referenceOffset;\n      referenceValue = arraySlice(referenceTrack.values, startIndex, endIndex);\n    } else if (referenceTime >= referenceTrack.times[lastIndex]) {\n      const startIndex = lastIndex * referenceValueSize + referenceOffset;\n      const endIndex = startIndex + referenceValueSize - referenceOffset;\n      referenceValue = arraySlice(referenceTrack.values, startIndex, endIndex);\n    } else {\n      const interpolant = referenceTrack.createInterpolant();\n      const startIndex = referenceOffset;\n      const endIndex = referenceValueSize - referenceOffset;\n      interpolant.evaluate(referenceTime);\n      referenceValue = arraySlice(interpolant.resultBuffer, startIndex, endIndex);\n    }\n    if (referenceTrackType === \"quaternion\") {\n      const referenceQuat = new Quaternion().fromArray(referenceValue).normalize().conjugate();\n      referenceQuat.toArray(referenceValue);\n    }\n    const numTimes = targetTrack.times.length;\n    for (let j = 0; j < numTimes; ++j) {\n      const valueStart = j * targetValueSize + targetOffset;\n      if (referenceTrackType === \"quaternion\") {\n        Quaternion.multiplyQuaternionsFlat(targetTrack.values, valueStart, referenceValue, 0, targetTrack.values, valueStart);\n      } else {\n        const valueEnd = targetValueSize - targetOffset * 2;\n        for (let k = 0; k < valueEnd; ++k) {\n          targetTrack.values[valueStart + k] -= referenceValue[k];\n        }\n      }\n    }\n  }\n  targetClip.blendMode = AdditiveAnimationBlendMode;\n  return targetClip;\n}\nvar AnimationUtils = /* @__PURE__ */ Object.freeze({\n  __proto__: null,\n  arraySlice,\n  convertArray,\n  isTypedArray,\n  getKeyframeOrder,\n  sortedArray,\n  flattenJSON,\n  subclip,\n  makeClipAdditive\n});\nclass Interpolant {\n  constructor(parameterPositions, sampleValues, sampleSize, resultBuffer) {\n    this.parameterPositions = parameterPositions;\n    this._cachedIndex = 0;\n    this.resultBuffer = resultBuffer !== void 0 ? resultBuffer : new sampleValues.constructor(sampleSize);\n    this.sampleValues = sampleValues;\n    this.valueSize = sampleSize;\n    this.settings = null;\n    this.DefaultSettings_ = {};\n  }\n  evaluate(t) {\n    const pp = this.parameterPositions;\n    let i1 = this._cachedIndex, t1 = pp[i1], t0 = pp[i1 - 1];\n    validate_interval: {\n      seek: {\n        let right;\n        linear_scan: {\n          forward_scan:\n            if (!(t < t1)) {\n              for (let giveUpAt = i1 + 2; ; ) {\n                if (t1 === void 0) {\n                  if (t < t0)\n                    break forward_scan;\n                  i1 = pp.length;\n                  this._cachedIndex = i1;\n                  return this.copySampleValue_(i1 - 1);\n                }\n                if (i1 === giveUpAt)\n                  break;\n                t0 = t1;\n                t1 = pp[++i1];\n                if (t < t1) {\n                  break seek;\n                }\n              }\n              right = pp.length;\n              break linear_scan;\n            }\n          if (!(t >= t0)) {\n            const t1global = pp[1];\n            if (t < t1global) {\n              i1 = 2;\n              t0 = t1global;\n            }\n            for (let giveUpAt = i1 - 2; ; ) {\n              if (t0 === void 0) {\n                this._cachedIndex = 0;\n                return this.copySampleValue_(0);\n              }\n              if (i1 === giveUpAt)\n                break;\n              t1 = t0;\n              t0 = pp[--i1 - 1];\n              if (t >= t0) {\n                break seek;\n              }\n            }\n            right = i1;\n            i1 = 0;\n            break linear_scan;\n          }\n          break validate_interval;\n        }\n        while (i1 < right) {\n          const mid = i1 + right >>> 1;\n          if (t < pp[mid]) {\n            right = mid;\n          } else {\n            i1 = mid + 1;\n          }\n        }\n        t1 = pp[i1];\n        t0 = pp[i1 - 1];\n        if (t0 === void 0) {\n          this._cachedIndex = 0;\n          return this.copySampleValue_(0);\n        }\n        if (t1 === void 0) {\n          i1 = pp.length;\n          this._cachedIndex = i1;\n          return this.copySampleValue_(i1 - 1);\n        }\n      }\n      this._cachedIndex = i1;\n      this.intervalChanged_(i1, t0, t1);\n    }\n    return this.interpolate_(i1, t0, t, t1);\n  }\n  getSettings_() {\n    return this.settings || this.DefaultSettings_;\n  }\n  copySampleValue_(index2) {\n    const result = this.resultBuffer, values = this.sampleValues, stride = this.valueSize, offset = index2 * stride;\n    for (let i = 0; i !== stride; ++i) {\n      result[i] = values[offset + i];\n    }\n    return result;\n  }\n  interpolate_() {\n    throw new Error(\"call to abstract method\");\n  }\n  intervalChanged_() {\n  }\n}\nclass CubicInterpolant extends Interpolant {\n  constructor(parameterPositions, sampleValues, sampleSize, resultBuffer) {\n    super(parameterPositions, sampleValues, sampleSize, resultBuffer);\n    this._weightPrev = -0;\n    this._offsetPrev = -0;\n    this._weightNext = -0;\n    this._offsetNext = -0;\n    this.DefaultSettings_ = {\n      endingStart: ZeroCurvatureEnding,\n      endingEnd: ZeroCurvatureEnding\n    };\n  }\n  intervalChanged_(i1, t0, t1) {\n    const pp = this.parameterPositions;\n    let iPrev = i1 - 2, iNext = i1 + 1, tPrev = pp[iPrev], tNext = pp[iNext];\n    if (tPrev === void 0) {\n      switch (this.getSettings_().endingStart) {\n        case ZeroSlopeEnding:\n          iPrev = i1;\n          tPrev = 2 * t0 - t1;\n          break;\n        case WrapAroundEnding:\n          iPrev = pp.length - 2;\n          tPrev = t0 + pp[iPrev] - pp[iPrev + 1];\n          break;\n        default:\n          iPrev = i1;\n          tPrev = t1;\n      }\n    }\n    if (tNext === void 0) {\n      switch (this.getSettings_().endingEnd) {\n        case ZeroSlopeEnding:\n          iNext = i1;\n          tNext = 2 * t1 - t0;\n          break;\n        case WrapAroundEnding:\n          iNext = 1;\n          tNext = t1 + pp[1] - pp[0];\n          break;\n        default:\n          iNext = i1 - 1;\n          tNext = t0;\n      }\n    }\n    const halfDt = (t1 - t0) * 0.5, stride = this.valueSize;\n    this._weightPrev = halfDt / (t0 - tPrev);\n    this._weightNext = halfDt / (tNext - t1);\n    this._offsetPrev = iPrev * stride;\n    this._offsetNext = iNext * stride;\n  }\n  interpolate_(i1, t0, t, t1) {\n    const result = this.resultBuffer, values = this.sampleValues, stride = this.valueSize, o1 = i1 * stride, o0 = o1 - stride, oP = this._offsetPrev, oN = this._offsetNext, wP = this._weightPrev, wN = this._weightNext, p = (t - t0) / (t1 - t0), pp = p * p, ppp = pp * p;\n    const sP = -wP * ppp + 2 * wP * pp - wP * p;\n    const s0 = (1 + wP) * ppp + (-1.5 - 2 * wP) * pp + (-0.5 + wP) * p + 1;\n    const s1 = (-1 - wN) * ppp + (1.5 + wN) * pp + 0.5 * p;\n    const sN = wN * ppp - wN * pp;\n    for (let i = 0; i !== stride; ++i) {\n      result[i] = sP * values[oP + i] + s0 * values[o0 + i] + s1 * values[o1 + i] + sN * values[oN + i];\n    }\n    return result;\n  }\n}\nclass LinearInterpolant extends Interpolant {\n  constructor(parameterPositions, sampleValues, sampleSize, resultBuffer) {\n    super(parameterPositions, sampleValues, sampleSize, resultBuffer);\n  }\n  interpolate_(i1, t0, t, t1) {\n    const result = this.resultBuffer, values = this.sampleValues, stride = this.valueSize, offset1 = i1 * stride, offset0 = offset1 - stride, weight1 = (t - t0) / (t1 - t0), weight0 = 1 - weight1;\n    for (let i = 0; i !== stride; ++i) {\n      result[i] = values[offset0 + i] * weight0 + values[offset1 + i] * weight1;\n    }\n    return result;\n  }\n}\nclass DiscreteInterpolant extends Interpolant {\n  constructor(parameterPositions, sampleValues, sampleSize, resultBuffer) {\n    super(parameterPositions, sampleValues, sampleSize, resultBuffer);\n  }\n  interpolate_(i1) {\n    return this.copySampleValue_(i1 - 1);\n  }\n}\nclass KeyframeTrack {\n  constructor(name, times, values, interpolation) {\n    if (name === void 0)\n      throw new Error(\"THREE.KeyframeTrack: track name is undefined\");\n    if (times === void 0 || times.length === 0)\n      throw new Error(\"THREE.KeyframeTrack: no keyframes in track named \" + name);\n    this.name = name;\n    this.times = convertArray(times, this.TimeBufferType);\n    this.values = convertArray(values, this.ValueBufferType);\n    this.setInterpolation(interpolation || this.DefaultInterpolation);\n  }\n  static toJSON(track) {\n    const trackType = track.constructor;\n    let json;\n    if (trackType.toJSON !== this.toJSON) {\n      json = trackType.toJSON(track);\n    } else {\n      json = {\n        \"name\": track.name,\n        \"times\": convertArray(track.times, Array),\n        \"values\": convertArray(track.values, Array)\n      };\n      const interpolation = track.getInterpolation();\n      if (interpolation !== track.DefaultInterpolation) {\n        json.interpolation = interpolation;\n      }\n    }\n    json.type = track.ValueTypeName;\n    return json;\n  }\n  InterpolantFactoryMethodDiscrete(result) {\n    return new DiscreteInterpolant(this.times, this.values, this.getValueSize(), result);\n  }\n  InterpolantFactoryMethodLinear(result) {\n    return new LinearInterpolant(this.times, this.values, this.getValueSize(), result);\n  }\n  InterpolantFactoryMethodSmooth(result) {\n    return new CubicInterpolant(this.times, this.values, this.getValueSize(), result);\n  }\n  setInterpolation(interpolation) {\n    let factoryMethod;\n    switch (interpolation) {\n      case InterpolateDiscrete:\n        factoryMethod = this.InterpolantFactoryMethodDiscrete;\n        break;\n      case InterpolateLinear:\n        factoryMethod = this.InterpolantFactoryMethodLinear;\n        break;\n      case InterpolateSmooth:\n        factoryMethod = this.InterpolantFactoryMethodSmooth;\n        break;\n    }\n    if (factoryMethod === void 0) {\n      const message = \"unsupported interpolation for \" + this.ValueTypeName + \" keyframe track named \" + this.name;\n      if (this.createInterpolant === void 0) {\n        if (interpolation !== this.DefaultInterpolation) {\n          this.setInterpolation(this.DefaultInterpolation);\n        } else {\n          throw new Error(message);\n        }\n      }\n      console.warn(\"THREE.KeyframeTrack:\", message);\n      return this;\n    }\n    this.createInterpolant = factoryMethod;\n    return this;\n  }\n  getInterpolation() {\n    switch (this.createInterpolant) {\n      case this.InterpolantFactoryMethodDiscrete:\n        return InterpolateDiscrete;\n      case this.InterpolantFactoryMethodLinear:\n        return InterpolateLinear;\n      case this.InterpolantFactoryMethodSmooth:\n        return InterpolateSmooth;\n    }\n  }\n  getValueSize() {\n    return this.values.length / this.times.length;\n  }\n  shift(timeOffset) {\n    if (timeOffset !== 0) {\n      const times = this.times;\n      for (let i = 0, n = times.length; i !== n; ++i) {\n        times[i] += timeOffset;\n      }\n    }\n    return this;\n  }\n  scale(timeScale) {\n    if (timeScale !== 1) {\n      const times = this.times;\n      for (let i = 0, n = times.length; i !== n; ++i) {\n        times[i] *= timeScale;\n      }\n    }\n    return this;\n  }\n  trim(startTime, endTime) {\n    const times = this.times, nKeys = times.length;\n    let from = 0, to = nKeys - 1;\n    while (from !== nKeys && times[from] < startTime) {\n      ++from;\n    }\n    while (to !== -1 && times[to] > endTime) {\n      --to;\n    }\n    ++to;\n    if (from !== 0 || to !== nKeys) {\n      if (from >= to) {\n        to = Math.max(to, 1);\n        from = to - 1;\n      }\n      const stride = this.getValueSize();\n      this.times = arraySlice(times, from, to);\n      this.values = arraySlice(this.values, from * stride, to * stride);\n    }\n    return this;\n  }\n  validate() {\n    let valid = true;\n    const valueSize = this.getValueSize();\n    if (valueSize - Math.floor(valueSize) !== 0) {\n      console.error(\"THREE.KeyframeTrack: Invalid value size in track.\", this);\n      valid = false;\n    }\n    const times = this.times, values = this.values, nKeys = times.length;\n    if (nKeys === 0) {\n      console.error(\"THREE.KeyframeTrack: Track is empty.\", this);\n      valid = false;\n    }\n    let prevTime = null;\n    for (let i = 0; i !== nKeys; i++) {\n      const currTime = times[i];\n      if (typeof currTime === \"number\" && isNaN(currTime)) {\n        console.error(\"THREE.KeyframeTrack: Time is not a valid number.\", this, i, currTime);\n        valid = false;\n        break;\n      }\n      if (prevTime !== null && prevTime > currTime) {\n        console.error(\"THREE.KeyframeTrack: Out of order keys.\", this, i, currTime, prevTime);\n        valid = false;\n        break;\n      }\n      prevTime = currTime;\n    }\n    if (values !== void 0) {\n      if (isTypedArray(values)) {\n        for (let i = 0, n = values.length; i !== n; ++i) {\n          const value = values[i];\n          if (isNaN(value)) {\n            console.error(\"THREE.KeyframeTrack: Value is not a valid number.\", this, i, value);\n            valid = false;\n            break;\n          }\n        }\n      }\n    }\n    return valid;\n  }\n  optimize() {\n    const times = arraySlice(this.times), values = arraySlice(this.values), stride = this.getValueSize(), smoothInterpolation = this.getInterpolation() === InterpolateSmooth, lastIndex = times.length - 1;\n    let writeIndex = 1;\n    for (let i = 1; i < lastIndex; ++i) {\n      let keep = false;\n      const time = times[i];\n      const timeNext = times[i + 1];\n      if (time !== timeNext && (i !== 1 || time !== times[0])) {\n        if (!smoothInterpolation) {\n          const offset = i * stride, offsetP = offset - stride, offsetN = offset + stride;\n          for (let j = 0; j !== stride; ++j) {\n            const value = values[offset + j];\n            if (value !== values[offsetP + j] || value !== values[offsetN + j]) {\n              keep = true;\n              break;\n            }\n          }\n        } else {\n          keep = true;\n        }\n      }\n      if (keep) {\n        if (i !== writeIndex) {\n          times[writeIndex] = times[i];\n          const readOffset = i * stride, writeOffset = writeIndex * stride;\n          for (let j = 0; j !== stride; ++j) {\n            values[writeOffset + j] = values[readOffset + j];\n          }\n        }\n        ++writeIndex;\n      }\n    }\n    if (lastIndex > 0) {\n      times[writeIndex] = times[lastIndex];\n      for (let readOffset = lastIndex * stride, writeOffset = writeIndex * stride, j = 0; j !== stride; ++j) {\n        values[writeOffset + j] = values[readOffset + j];\n      }\n      ++writeIndex;\n    }\n    if (writeIndex !== times.length) {\n      this.times = arraySlice(times, 0, writeIndex);\n      this.values = arraySlice(values, 0, writeIndex * stride);\n    } else {\n      this.times = times;\n      this.values = values;\n    }\n    return this;\n  }\n  clone() {\n    const times = arraySlice(this.times, 0);\n    const values = arraySlice(this.values, 0);\n    const TypedKeyframeTrack = this.constructor;\n    const track = new TypedKeyframeTrack(this.name, times, values);\n    track.createInterpolant = this.createInterpolant;\n    return track;\n  }\n}\nKeyframeTrack.prototype.TimeBufferType = Float32Array;\nKeyframeTrack.prototype.ValueBufferType = Float32Array;\nKeyframeTrack.prototype.DefaultInterpolation = InterpolateLinear;\nclass BooleanKeyframeTrack extends KeyframeTrack {\n}\nBooleanKeyframeTrack.prototype.ValueTypeName = \"bool\";\nBooleanKeyframeTrack.prototype.ValueBufferType = Array;\nBooleanKeyframeTrack.prototype.DefaultInterpolation = InterpolateDiscrete;\nBooleanKeyframeTrack.prototype.InterpolantFactoryMethodLinear = void 0;\nBooleanKeyframeTrack.prototype.InterpolantFactoryMethodSmooth = void 0;\nclass ColorKeyframeTrack extends KeyframeTrack {\n}\nColorKeyframeTrack.prototype.ValueTypeName = \"color\";\nclass NumberKeyframeTrack extends KeyframeTrack {\n}\nNumberKeyframeTrack.prototype.ValueTypeName = \"number\";\nclass QuaternionLinearInterpolant extends Interpolant {\n  constructor(parameterPositions, sampleValues, sampleSize, resultBuffer) {\n    super(parameterPositions, sampleValues, sampleSize, resultBuffer);\n  }\n  interpolate_(i1, t0, t, t1) {\n    const result = this.resultBuffer, values = this.sampleValues, stride = this.valueSize, alpha = (t - t0) / (t1 - t0);\n    let offset = i1 * stride;\n    for (let end = offset + stride; offset !== end; offset += 4) {\n      Quaternion.slerpFlat(result, 0, values, offset - stride, values, offset, alpha);\n    }\n    return result;\n  }\n}\nclass QuaternionKeyframeTrack extends KeyframeTrack {\n  InterpolantFactoryMethodLinear(result) {\n    return new QuaternionLinearInterpolant(this.times, this.values, this.getValueSize(), result);\n  }\n}\nQuaternionKeyframeTrack.prototype.ValueTypeName = \"quaternion\";\nQuaternionKeyframeTrack.prototype.DefaultInterpolation = InterpolateLinear;\nQuaternionKeyframeTrack.prototype.InterpolantFactoryMethodSmooth = void 0;\nclass StringKeyframeTrack extends KeyframeTrack {\n}\nStringKeyframeTrack.prototype.ValueTypeName = \"string\";\nStringKeyframeTrack.prototype.ValueBufferType = Array;\nStringKeyframeTrack.prototype.DefaultInterpolation = InterpolateDiscrete;\nStringKeyframeTrack.prototype.InterpolantFactoryMethodLinear = void 0;\nStringKeyframeTrack.prototype.InterpolantFactoryMethodSmooth = void 0;\nclass VectorKeyframeTrack extends KeyframeTrack {\n}\nVectorKeyframeTrack.prototype.ValueTypeName = \"vector\";\nclass AnimationClip {\n  constructor(name, duration = -1, tracks, blendMode = NormalAnimationBlendMode) {\n    this.name = name;\n    this.tracks = tracks;\n    this.duration = duration;\n    this.blendMode = blendMode;\n    this.uuid = generateUUID();\n    if (this.duration < 0) {\n      this.resetDuration();\n    }\n  }\n  static parse(json) {\n    const tracks = [], jsonTracks = json.tracks, frameTime = 1 / (json.fps || 1);\n    for (let i = 0, n = jsonTracks.length; i !== n; ++i) {\n      tracks.push(parseKeyframeTrack(jsonTracks[i]).scale(frameTime));\n    }\n    const clip = new this(json.name, json.duration, tracks, json.blendMode);\n    clip.uuid = json.uuid;\n    return clip;\n  }\n  static toJSON(clip) {\n    const tracks = [], clipTracks = clip.tracks;\n    const json = {\n      \"name\": clip.name,\n      \"duration\": clip.duration,\n      \"tracks\": tracks,\n      \"uuid\": clip.uuid,\n      \"blendMode\": clip.blendMode\n    };\n    for (let i = 0, n = clipTracks.length; i !== n; ++i) {\n      tracks.push(KeyframeTrack.toJSON(clipTracks[i]));\n    }\n    return json;\n  }\n  static CreateFromMorphTargetSequence(name, morphTargetSequence, fps, noLoop) {\n    const numMorphTargets = morphTargetSequence.length;\n    const tracks = [];\n    for (let i = 0; i < numMorphTargets; i++) {\n      let times = [];\n      let values = [];\n      times.push((i + numMorphTargets - 1) % numMorphTargets, i, (i + 1) % numMorphTargets);\n      values.push(0, 1, 0);\n      const order = getKeyframeOrder(times);\n      times = sortedArray(times, 1, order);\n      values = sortedArray(values, 1, order);\n      if (!noLoop && times[0] === 0) {\n        times.push(numMorphTargets);\n        values.push(values[0]);\n      }\n      tracks.push(new NumberKeyframeTrack(\".morphTargetInfluences[\" + morphTargetSequence[i].name + \"]\", times, values).scale(1 / fps));\n    }\n    return new this(name, -1, tracks);\n  }\n  static findByName(objectOrClipArray, name) {\n    let clipArray = objectOrClipArray;\n    if (!Array.isArray(objectOrClipArray)) {\n      const o = objectOrClipArray;\n      clipArray = o.geometry && o.geometry.animations || o.animations;\n    }\n    for (let i = 0; i < clipArray.length; i++) {\n      if (clipArray[i].name === name) {\n        return clipArray[i];\n      }\n    }\n    return null;\n  }\n  static CreateClipsFromMorphTargetSequences(morphTargets, fps, noLoop) {\n    const animationToMorphTargets = {};\n    const pattern = /^([\\w-]*?)([\\d]+)$/;\n    for (let i = 0, il = morphTargets.length; i < il; i++) {\n      const morphTarget = morphTargets[i];\n      const parts = morphTarget.name.match(pattern);\n      if (parts && parts.length > 1) {\n        const name = parts[1];\n        let animationMorphTargets = animationToMorphTargets[name];\n        if (!animationMorphTargets) {\n          animationToMorphTargets[name] = animationMorphTargets = [];\n        }\n        animationMorphTargets.push(morphTarget);\n      }\n    }\n    const clips = [];\n    for (const name in animationToMorphTargets) {\n      clips.push(this.CreateFromMorphTargetSequence(name, animationToMorphTargets[name], fps, noLoop));\n    }\n    return clips;\n  }\n  static parseAnimation(animation, bones) {\n    if (!animation) {\n      console.error(\"THREE.AnimationClip: No animation in JSONLoader data.\");\n      return null;\n    }\n    const addNonemptyTrack = function(trackType, trackName, animationKeys, propertyName, destTracks) {\n      if (animationKeys.length !== 0) {\n        const times = [];\n        const values = [];\n        flattenJSON(animationKeys, times, values, propertyName);\n        if (times.length !== 0) {\n          destTracks.push(new trackType(trackName, times, values));\n        }\n      }\n    };\n    const tracks = [];\n    const clipName = animation.name || \"default\";\n    const fps = animation.fps || 30;\n    const blendMode = animation.blendMode;\n    let duration = animation.length || -1;\n    const hierarchyTracks = animation.hierarchy || [];\n    for (let h = 0; h < hierarchyTracks.length; h++) {\n      const animationKeys = hierarchyTracks[h].keys;\n      if (!animationKeys || animationKeys.length === 0)\n        continue;\n      if (animationKeys[0].morphTargets) {\n        const morphTargetNames = {};\n        let k;\n        for (k = 0; k < animationKeys.length; k++) {\n          if (animationKeys[k].morphTargets) {\n            for (let m = 0; m < animationKeys[k].morphTargets.length; m++) {\n              morphTargetNames[animationKeys[k].morphTargets[m]] = -1;\n            }\n          }\n        }\n        for (const morphTargetName in morphTargetNames) {\n          const times = [];\n          const values = [];\n          for (let m = 0; m !== animationKeys[k].morphTargets.length; ++m) {\n            const animationKey = animationKeys[k];\n            times.push(animationKey.time);\n            values.push(animationKey.morphTarget === morphTargetName ? 1 : 0);\n          }\n          tracks.push(new NumberKeyframeTrack(\".morphTargetInfluence[\" + morphTargetName + \"]\", times, values));\n        }\n        duration = morphTargetNames.length * fps;\n      } else {\n        const boneName = \".bones[\" + bones[h].name + \"]\";\n        addNonemptyTrack(VectorKeyframeTrack, boneName + \".position\", animationKeys, \"pos\", tracks);\n        addNonemptyTrack(QuaternionKeyframeTrack, boneName + \".quaternion\", animationKeys, \"rot\", tracks);\n        addNonemptyTrack(VectorKeyframeTrack, boneName + \".scale\", animationKeys, \"scl\", tracks);\n      }\n    }\n    if (tracks.length === 0) {\n      return null;\n    }\n    const clip = new this(clipName, duration, tracks, blendMode);\n    return clip;\n  }\n  resetDuration() {\n    const tracks = this.tracks;\n    let duration = 0;\n    for (let i = 0, n = tracks.length; i !== n; ++i) {\n      const track = this.tracks[i];\n      duration = Math.max(duration, track.times[track.times.length - 1]);\n    }\n    this.duration = duration;\n    return this;\n  }\n  trim() {\n    for (let i = 0; i < this.tracks.length; i++) {\n      this.tracks[i].trim(0, this.duration);\n    }\n    return this;\n  }\n  validate() {\n    let valid = true;\n    for (let i = 0; i < this.tracks.length; i++) {\n      valid = valid && this.tracks[i].validate();\n    }\n    return valid;\n  }\n  optimize() {\n    for (let i = 0; i < this.tracks.length; i++) {\n      this.tracks[i].optimize();\n    }\n    return this;\n  }\n  clone() {\n    const tracks = [];\n    for (let i = 0; i < this.tracks.length; i++) {\n      tracks.push(this.tracks[i].clone());\n    }\n    return new this.constructor(this.name, this.duration, tracks, this.blendMode);\n  }\n  toJSON() {\n    return this.constructor.toJSON(this);\n  }\n}\nfunction getTrackTypeForValueTypeName(typeName) {\n  switch (typeName.toLowerCase()) {\n    case \"scalar\":\n    case \"double\":\n    case \"float\":\n    case \"number\":\n    case \"integer\":\n      return NumberKeyframeTrack;\n    case \"vector\":\n    case \"vector2\":\n    case \"vector3\":\n    case \"vector4\":\n      return VectorKeyframeTrack;\n    case \"color\":\n      return ColorKeyframeTrack;\n    case \"quaternion\":\n      return QuaternionKeyframeTrack;\n    case \"bool\":\n    case \"boolean\":\n      return BooleanKeyframeTrack;\n    case \"string\":\n      return StringKeyframeTrack;\n  }\n  throw new Error(\"THREE.KeyframeTrack: Unsupported typeName: \" + typeName);\n}\nfunction parseKeyframeTrack(json) {\n  if (json.type === void 0) {\n    throw new Error(\"THREE.KeyframeTrack: track type undefined, can not parse\");\n  }\n  const trackType = getTrackTypeForValueTypeName(json.type);\n  if (json.times === void 0) {\n    const times = [], values = [];\n    flattenJSON(json.keys, times, values, \"value\");\n    json.times = times;\n    json.values = values;\n  }\n  if (trackType.parse !== void 0) {\n    return trackType.parse(json);\n  } else {\n    return new trackType(json.name, json.times, json.values, json.interpolation);\n  }\n}\nconst Cache = {\n  enabled: false,\n  files: {},\n  add: function(key, file) {\n    if (this.enabled === false)\n      return;\n    this.files[key] = file;\n  },\n  get: function(key) {\n    if (this.enabled === false)\n      return;\n    return this.files[key];\n  },\n  remove: function(key) {\n    delete this.files[key];\n  },\n  clear: function() {\n    this.files = {};\n  }\n};\nclass LoadingManager$1 {\n  constructor(onLoad, onProgress, onError) {\n    const scope = this;\n    let isLoading = false;\n    let itemsLoaded = 0;\n    let itemsTotal = 0;\n    let urlModifier = void 0;\n    const handlers = [];\n    this.onStart = void 0;\n    this.onLoad = onLoad;\n    this.onProgress = onProgress;\n    this.onError = onError;\n    this.itemStart = function(url) {\n      itemsTotal++;\n      if (isLoading === false) {\n        if (scope.onStart !== void 0) {\n          scope.onStart(url, itemsLoaded, itemsTotal);\n        }\n      }\n      isLoading = true;\n    };\n    this.itemEnd = function(url) {\n      itemsLoaded++;\n      if (scope.onProgress !== void 0) {\n        scope.onProgress(url, itemsLoaded, itemsTotal);\n      }\n      if (itemsLoaded === itemsTotal) {\n        isLoading = false;\n        if (scope.onLoad !== void 0) {\n          scope.onLoad();\n        }\n      }\n    };\n    this.itemError = function(url) {\n      if (scope.onError !== void 0) {\n        scope.onError(url);\n      }\n    };\n    this.resolveURL = function(url) {\n      if (urlModifier) {\n        return urlModifier(url);\n      }\n      return url;\n    };\n    this.setURLModifier = function(transform) {\n      urlModifier = transform;\n      return this;\n    };\n    this.addHandler = function(regex, loader) {\n      handlers.push(regex, loader);\n      return this;\n    };\n    this.removeHandler = function(regex) {\n      const index2 = handlers.indexOf(regex);\n      if (index2 !== -1) {\n        handlers.splice(index2, 2);\n      }\n      return this;\n    };\n    this.getHandler = function(file) {\n      for (let i = 0, l = handlers.length; i < l; i += 2) {\n        const regex = handlers[i];\n        const loader = handlers[i + 1];\n        if (regex.global)\n          regex.lastIndex = 0;\n        if (regex.test(file)) {\n          return loader;\n        }\n      }\n      return null;\n    };\n  }\n}\nconst DefaultLoadingManager = /* @__PURE__ */ new LoadingManager$1();\nclass Loader {\n  constructor(manager2) {\n    this.manager = manager2 !== void 0 ? manager2 : DefaultLoadingManager;\n    this.crossOrigin = \"anonymous\";\n    this.withCredentials = false;\n    this.path = \"\";\n    this.resourcePath = \"\";\n    this.requestHeader = {};\n  }\n  load() {\n  }\n  loadAsync(url, onProgress) {\n    const scope = this;\n    return new Promise(function(resolve, reject) {\n      scope.load(url, resolve, onProgress, reject);\n    });\n  }\n  parse() {\n  }\n  setCrossOrigin(crossOrigin) {\n    this.crossOrigin = crossOrigin;\n    return this;\n  }\n  setWithCredentials(value) {\n    this.withCredentials = value;\n    return this;\n  }\n  setPath(path) {\n    this.path = path;\n    return this;\n  }\n  setResourcePath(resourcePath) {\n    this.resourcePath = resourcePath;\n    return this;\n  }\n  setRequestHeader(requestHeader) {\n    this.requestHeader = requestHeader;\n    return this;\n  }\n}\nconst loading = {};\nclass HttpError extends Error {\n  constructor(message, response) {\n    super(message);\n    this.response = response;\n  }\n}\nclass FileLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    if (url === void 0)\n      url = \"\";\n    if (this.path !== void 0)\n      url = this.path + url;\n    url = this.manager.resolveURL(url);\n    const cached = Cache.get(url);\n    if (cached !== void 0) {\n      this.manager.itemStart(url);\n      setTimeout(() => {\n        if (onLoad)\n          onLoad(cached);\n        this.manager.itemEnd(url);\n      }, 0);\n      return cached;\n    }\n    if (loading[url] !== void 0) {\n      loading[url].push({\n        onLoad,\n        onProgress,\n        onError\n      });\n      return;\n    }\n    loading[url] = [];\n    loading[url].push({\n      onLoad,\n      onProgress,\n      onError\n    });\n    const req = new Request(url, {\n      headers: new Headers(this.requestHeader),\n      credentials: this.withCredentials ? \"include\" : \"same-origin\"\n    });\n    const mimeType = this.mimeType;\n    const responseType = this.responseType;\n    fetch(req).then((response) => {\n      if (response.status === 200 || response.status === 0) {\n        if (response.status === 0) {\n          console.warn(\"THREE.FileLoader: HTTP Status 0 received.\");\n        }\n        if (typeof ReadableStream === \"undefined\" || response.body === void 0 || response.body.getReader === void 0) {\n          return response;\n        }\n        const callbacks = loading[url];\n        const reader = response.body.getReader();\n        const contentLength = response.headers.get(\"Content-Length\");\n        const total = contentLength ? parseInt(contentLength) : 0;\n        const lengthComputable = total !== 0;\n        let loaded = 0;\n        const stream = new ReadableStream({\n          start(controller) {\n            readData();\n            function readData() {\n              reader.read().then(({ done, value }) => {\n                if (done) {\n                  controller.close();\n                } else {\n                  loaded += value.byteLength;\n                  const event = new ProgressEvent(\"progress\", { lengthComputable, loaded, total });\n                  for (let i = 0, il = callbacks.length; i < il; i++) {\n                    const callback = callbacks[i];\n                    if (callback.onProgress)\n                      callback.onProgress(event);\n                  }\n                  controller.enqueue(value);\n                  readData();\n                }\n              });\n            }\n          }\n        });\n        return new Response(stream);\n      } else {\n        throw new HttpError(`fetch for \"${response.url}\" responded with ${response.status}: ${response.statusText}`, response);\n      }\n    }).then((response) => {\n      switch (responseType) {\n        case \"arraybuffer\":\n          return response.arrayBuffer();\n        case \"blob\":\n          return response.blob();\n        case \"document\":\n          return response.text().then((text) => {\n            const parser = new DOMParser();\n            return parser.parseFromString(text, mimeType);\n          });\n        case \"json\":\n          return response.json();\n        default:\n          if (mimeType === void 0) {\n            return response.text();\n          } else {\n            const re = /charset=\"?([^;\"\\s]*)\"?/i;\n            const exec = re.exec(mimeType);\n            const label = exec && exec[1] ? exec[1].toLowerCase() : void 0;\n            const decoder = new TextDecoder(label);\n            return response.arrayBuffer().then((ab) => decoder.decode(ab));\n          }\n      }\n    }).then((data) => {\n      Cache.add(url, data);\n      const callbacks = loading[url];\n      delete loading[url];\n      for (let i = 0, il = callbacks.length; i < il; i++) {\n        const callback = callbacks[i];\n        if (callback.onLoad)\n          callback.onLoad(data);\n      }\n    }).catch((err) => {\n      const callbacks = loading[url];\n      if (callbacks === void 0) {\n        this.manager.itemError(url);\n        throw err;\n      }\n      delete loading[url];\n      for (let i = 0, il = callbacks.length; i < il; i++) {\n        const callback = callbacks[i];\n        if (callback.onError)\n          callback.onError(err);\n      }\n      this.manager.itemError(url);\n    }).finally(() => {\n      this.manager.itemEnd(url);\n    });\n    this.manager.itemStart(url);\n  }\n  setResponseType(value) {\n    this.responseType = value;\n    return this;\n  }\n  setMimeType(value) {\n    this.mimeType = value;\n    return this;\n  }\n}\nclass AnimationLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, function(text) {\n      try {\n        onLoad(scope.parse(JSON.parse(text)));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  parse(json) {\n    const animations = [];\n    for (let i = 0; i < json.length; i++) {\n      const clip = AnimationClip.parse(json[i]);\n      animations.push(clip);\n    }\n    return animations;\n  }\n}\nclass CompressedTextureLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const images = [];\n    const texture = new CompressedTexture();\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setResponseType(\"arraybuffer\");\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(scope.withCredentials);\n    let loaded = 0;\n    function loadTexture(i) {\n      loader.load(url[i], function(buffer) {\n        const texDatas = scope.parse(buffer, true);\n        images[i] = {\n          width: texDatas.width,\n          height: texDatas.height,\n          format: texDatas.format,\n          mipmaps: texDatas.mipmaps\n        };\n        loaded += 1;\n        if (loaded === 6) {\n          if (texDatas.mipmapCount === 1)\n            texture.minFilter = LinearFilter;\n          texture.image = images;\n          texture.format = texDatas.format;\n          texture.needsUpdate = true;\n          if (onLoad)\n            onLoad(texture);\n        }\n      }, onProgress, onError);\n    }\n    if (Array.isArray(url)) {\n      for (let i = 0, il = url.length; i < il; ++i) {\n        loadTexture(i);\n      }\n    } else {\n      loader.load(url, function(buffer) {\n        const texDatas = scope.parse(buffer, true);\n        if (texDatas.isCubemap) {\n          const faces = texDatas.mipmaps.length / texDatas.mipmapCount;\n          for (let f = 0; f < faces; f++) {\n            images[f] = { mipmaps: [] };\n            for (let i = 0; i < texDatas.mipmapCount; i++) {\n              images[f].mipmaps.push(texDatas.mipmaps[f * texDatas.mipmapCount + i]);\n              images[f].format = texDatas.format;\n              images[f].width = texDatas.width;\n              images[f].height = texDatas.height;\n            }\n          }\n          texture.image = images;\n        } else {\n          texture.image.width = texDatas.width;\n          texture.image.height = texDatas.height;\n          texture.mipmaps = texDatas.mipmaps;\n        }\n        if (texDatas.mipmapCount === 1) {\n          texture.minFilter = LinearFilter;\n        }\n        texture.format = texDatas.format;\n        texture.needsUpdate = true;\n        if (onLoad)\n          onLoad(texture);\n      }, onProgress, onError);\n    }\n    return texture;\n  }\n}\nclass ImageLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    if (this.path !== void 0)\n      url = this.path + url;\n    url = this.manager.resolveURL(url);\n    const scope = this;\n    const cached = Cache.get(url);\n    if (cached !== void 0) {\n      scope.manager.itemStart(url);\n      setTimeout(function() {\n        if (onLoad)\n          onLoad(cached);\n        scope.manager.itemEnd(url);\n      }, 0);\n      return cached;\n    }\n    const image = createElementNS(\"img\");\n    function onImageLoad() {\n      removeEventListeners();\n      Cache.add(url, this);\n      if (onLoad)\n        onLoad(this);\n      scope.manager.itemEnd(url);\n    }\n    function onImageError(event) {\n      removeEventListeners();\n      if (onError)\n        onError(event);\n      scope.manager.itemError(url);\n      scope.manager.itemEnd(url);\n    }\n    function removeEventListeners() {\n      image.removeEventListener(\"load\", onImageLoad, false);\n      image.removeEventListener(\"error\", onImageError, false);\n    }\n    image.addEventListener(\"load\", onImageLoad, false);\n    image.addEventListener(\"error\", onImageError, false);\n    if (url.slice(0, 5) !== \"data:\") {\n      if (this.crossOrigin !== void 0)\n        image.crossOrigin = this.crossOrigin;\n    }\n    scope.manager.itemStart(url);\n    image.src = url;\n    return image;\n  }\n}\nclass CubeTextureLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(urls, onLoad, onProgress, onError) {\n    const texture = new CubeTexture();\n    const loader = new ImageLoader(this.manager);\n    loader.setCrossOrigin(this.crossOrigin);\n    loader.setPath(this.path);\n    let loaded = 0;\n    function loadTexture(i) {\n      loader.load(urls[i], function(image) {\n        texture.images[i] = image;\n        loaded++;\n        if (loaded === 6) {\n          texture.needsUpdate = true;\n          if (onLoad)\n            onLoad(texture);\n        }\n      }, void 0, onError);\n    }\n    for (let i = 0; i < urls.length; ++i) {\n      loadTexture(i);\n    }\n    return texture;\n  }\n}\nclass DataTextureLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const texture = new DataTexture();\n    const loader = new FileLoader(this.manager);\n    loader.setResponseType(\"arraybuffer\");\n    loader.setRequestHeader(this.requestHeader);\n    loader.setPath(this.path);\n    loader.setWithCredentials(scope.withCredentials);\n    loader.load(url, function(buffer) {\n      const texData = scope.parse(buffer);\n      if (!texData)\n        return;\n      if (texData.image !== void 0) {\n        texture.image = texData.image;\n      } else if (texData.data !== void 0) {\n        texture.image.width = texData.width;\n        texture.image.height = texData.height;\n        texture.image.data = texData.data;\n      }\n      texture.wrapS = texData.wrapS !== void 0 ? texData.wrapS : ClampToEdgeWrapping;\n      texture.wrapT = texData.wrapT !== void 0 ? texData.wrapT : ClampToEdgeWrapping;\n      texture.magFilter = texData.magFilter !== void 0 ? texData.magFilter : LinearFilter;\n      texture.minFilter = texData.minFilter !== void 0 ? texData.minFilter : LinearFilter;\n      texture.anisotropy = texData.anisotropy !== void 0 ? texData.anisotropy : 1;\n      if (texData.encoding !== void 0) {\n        texture.encoding = texData.encoding;\n      }\n      if (texData.flipY !== void 0) {\n        texture.flipY = texData.flipY;\n      }\n      if (texData.format !== void 0) {\n        texture.format = texData.format;\n      }\n      if (texData.type !== void 0) {\n        texture.type = texData.type;\n      }\n      if (texData.mipmaps !== void 0) {\n        texture.mipmaps = texData.mipmaps;\n        texture.minFilter = LinearMipmapLinearFilter;\n      }\n      if (texData.mipmapCount === 1) {\n        texture.minFilter = LinearFilter;\n      }\n      if (texData.generateMipmaps !== void 0) {\n        texture.generateMipmaps = texData.generateMipmaps;\n      }\n      texture.needsUpdate = true;\n      if (onLoad)\n        onLoad(texture, texData);\n    }, onProgress, onError);\n    return texture;\n  }\n}\nclass TextureLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const texture = new Texture();\n    const loader = new ImageLoader(this.manager);\n    loader.setCrossOrigin(this.crossOrigin);\n    loader.setPath(this.path);\n    loader.load(url, function(image) {\n      texture.image = image;\n      texture.needsUpdate = true;\n      if (onLoad !== void 0) {\n        onLoad(texture);\n      }\n    }, onProgress, onError);\n    return texture;\n  }\n}\nclass Light extends Object3D {\n  constructor(color, intensity = 1) {\n    super();\n    this.isLight = true;\n    this.type = \"Light\";\n    this.color = new Color(color);\n    this.intensity = intensity;\n  }\n  dispose() {\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.color.copy(source.color);\n    this.intensity = source.intensity;\n    return this;\n  }\n  toJSON(meta) {\n    const data = super.toJSON(meta);\n    data.object.color = this.color.getHex();\n    data.object.intensity = this.intensity;\n    if (this.groundColor !== void 0)\n      data.object.groundColor = this.groundColor.getHex();\n    if (this.distance !== void 0)\n      data.object.distance = this.distance;\n    if (this.angle !== void 0)\n      data.object.angle = this.angle;\n    if (this.decay !== void 0)\n      data.object.decay = this.decay;\n    if (this.penumbra !== void 0)\n      data.object.penumbra = this.penumbra;\n    if (this.shadow !== void 0)\n      data.object.shadow = this.shadow.toJSON();\n    return data;\n  }\n}\nclass HemisphereLight extends Light {\n  constructor(skyColor, groundColor, intensity) {\n    super(skyColor, intensity);\n    this.isHemisphereLight = true;\n    this.type = \"HemisphereLight\";\n    this.position.copy(Object3D.DefaultUp);\n    this.updateMatrix();\n    this.groundColor = new Color(groundColor);\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.groundColor.copy(source.groundColor);\n    return this;\n  }\n}\nconst _projScreenMatrix$1 = /* @__PURE__ */ new Matrix4();\nconst _lightPositionWorld$1 = /* @__PURE__ */ new Vector3();\nconst _lookTarget$1 = /* @__PURE__ */ new Vector3();\nclass LightShadow {\n  constructor(camera) {\n    this.camera = camera;\n    this.bias = 0;\n    this.normalBias = 0;\n    this.radius = 1;\n    this.blurSamples = 8;\n    this.mapSize = new Vector2(512, 512);\n    this.map = null;\n    this.mapPass = null;\n    this.matrix = new Matrix4();\n    this.autoUpdate = true;\n    this.needsUpdate = false;\n    this._frustum = new Frustum();\n    this._frameExtents = new Vector2(1, 1);\n    this._viewportCount = 1;\n    this._viewports = [\n      new Vector4(0, 0, 1, 1)\n    ];\n  }\n  getViewportCount() {\n    return this._viewportCount;\n  }\n  getFrustum() {\n    return this._frustum;\n  }\n  updateMatrices(light) {\n    const shadowCamera = this.camera;\n    const shadowMatrix = this.matrix;\n    _lightPositionWorld$1.setFromMatrixPosition(light.matrixWorld);\n    shadowCamera.position.copy(_lightPositionWorld$1);\n    _lookTarget$1.setFromMatrixPosition(light.target.matrixWorld);\n    shadowCamera.lookAt(_lookTarget$1);\n    shadowCamera.updateMatrixWorld();\n    _projScreenMatrix$1.multiplyMatrices(shadowCamera.projectionMatrix, shadowCamera.matrixWorldInverse);\n    this._frustum.setFromProjectionMatrix(_projScreenMatrix$1);\n    shadowMatrix.set(0.5, 0, 0, 0.5, 0, 0.5, 0, 0.5, 0, 0, 0.5, 0.5, 0, 0, 0, 1);\n    shadowMatrix.multiply(shadowCamera.projectionMatrix);\n    shadowMatrix.multiply(shadowCamera.matrixWorldInverse);\n  }\n  getViewport(viewportIndex) {\n    return this._viewports[viewportIndex];\n  }\n  getFrameExtents() {\n    return this._frameExtents;\n  }\n  dispose() {\n    if (this.map) {\n      this.map.dispose();\n    }\n    if (this.mapPass) {\n      this.mapPass.dispose();\n    }\n  }\n  copy(source) {\n    this.camera = source.camera.clone();\n    this.bias = source.bias;\n    this.radius = source.radius;\n    this.mapSize.copy(source.mapSize);\n    return this;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  toJSON() {\n    const object = {};\n    if (this.bias !== 0)\n      object.bias = this.bias;\n    if (this.normalBias !== 0)\n      object.normalBias = this.normalBias;\n    if (this.radius !== 1)\n      object.radius = this.radius;\n    if (this.mapSize.x !== 512 || this.mapSize.y !== 512)\n      object.mapSize = this.mapSize.toArray();\n    object.camera = this.camera.toJSON(false).object;\n    delete object.camera.matrix;\n    return object;\n  }\n}\nclass SpotLightShadow extends LightShadow {\n  constructor() {\n    super(new PerspectiveCamera(50, 1, 0.5, 500));\n    this.isSpotLightShadow = true;\n    this.focus = 1;\n  }\n  updateMatrices(light) {\n    const camera = this.camera;\n    const fov2 = RAD2DEG * 2 * light.angle * this.focus;\n    const aspect2 = this.mapSize.width / this.mapSize.height;\n    const far = light.distance || camera.far;\n    if (fov2 !== camera.fov || aspect2 !== camera.aspect || far !== camera.far) {\n      camera.fov = fov2;\n      camera.aspect = aspect2;\n      camera.far = far;\n      camera.updateProjectionMatrix();\n    }\n    super.updateMatrices(light);\n  }\n  copy(source) {\n    super.copy(source);\n    this.focus = source.focus;\n    return this;\n  }\n}\nclass SpotLight extends Light {\n  constructor(color, intensity, distance = 0, angle = Math.PI / 3, penumbra = 0, decay = 1) {\n    super(color, intensity);\n    this.isSpotLight = true;\n    this.type = \"SpotLight\";\n    this.position.copy(Object3D.DefaultUp);\n    this.updateMatrix();\n    this.target = new Object3D();\n    this.distance = distance;\n    this.angle = angle;\n    this.penumbra = penumbra;\n    this.decay = decay;\n    this.shadow = new SpotLightShadow();\n  }\n  get power() {\n    return this.intensity * Math.PI;\n  }\n  set power(power) {\n    this.intensity = power / Math.PI;\n  }\n  dispose() {\n    this.shadow.dispose();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.distance = source.distance;\n    this.angle = source.angle;\n    this.penumbra = source.penumbra;\n    this.decay = source.decay;\n    this.target = source.target.clone();\n    this.shadow = source.shadow.clone();\n    return this;\n  }\n}\nconst _projScreenMatrix = /* @__PURE__ */ new Matrix4();\nconst _lightPositionWorld = /* @__PURE__ */ new Vector3();\nconst _lookTarget = /* @__PURE__ */ new Vector3();\nclass PointLightShadow extends LightShadow {\n  constructor() {\n    super(new PerspectiveCamera(90, 1, 0.5, 500));\n    this.isPointLightShadow = true;\n    this._frameExtents = new Vector2(4, 2);\n    this._viewportCount = 6;\n    this._viewports = [\n      new Vector4(2, 1, 1, 1),\n      new Vector4(0, 1, 1, 1),\n      new Vector4(3, 1, 1, 1),\n      new Vector4(1, 1, 1, 1),\n      new Vector4(3, 0, 1, 1),\n      new Vector4(1, 0, 1, 1)\n    ];\n    this._cubeDirections = [\n      new Vector3(1, 0, 0),\n      new Vector3(-1, 0, 0),\n      new Vector3(0, 0, 1),\n      new Vector3(0, 0, -1),\n      new Vector3(0, 1, 0),\n      new Vector3(0, -1, 0)\n    ];\n    this._cubeUps = [\n      new Vector3(0, 1, 0),\n      new Vector3(0, 1, 0),\n      new Vector3(0, 1, 0),\n      new Vector3(0, 1, 0),\n      new Vector3(0, 0, 1),\n      new Vector3(0, 0, -1)\n    ];\n  }\n  updateMatrices(light, viewportIndex = 0) {\n    const camera = this.camera;\n    const shadowMatrix = this.matrix;\n    const far = light.distance || camera.far;\n    if (far !== camera.far) {\n      camera.far = far;\n      camera.updateProjectionMatrix();\n    }\n    _lightPositionWorld.setFromMatrixPosition(light.matrixWorld);\n    camera.position.copy(_lightPositionWorld);\n    _lookTarget.copy(camera.position);\n    _lookTarget.add(this._cubeDirections[viewportIndex]);\n    camera.up.copy(this._cubeUps[viewportIndex]);\n    camera.lookAt(_lookTarget);\n    camera.updateMatrixWorld();\n    shadowMatrix.makeTranslation(-_lightPositionWorld.x, -_lightPositionWorld.y, -_lightPositionWorld.z);\n    _projScreenMatrix.multiplyMatrices(camera.projectionMatrix, camera.matrixWorldInverse);\n    this._frustum.setFromProjectionMatrix(_projScreenMatrix);\n  }\n}\nclass PointLight extends Light {\n  constructor(color, intensity, distance = 0, decay = 1) {\n    super(color, intensity);\n    this.isPointLight = true;\n    this.type = \"PointLight\";\n    this.distance = distance;\n    this.decay = decay;\n    this.shadow = new PointLightShadow();\n  }\n  get power() {\n    return this.intensity * 4 * Math.PI;\n  }\n  set power(power) {\n    this.intensity = power / (4 * Math.PI);\n  }\n  dispose() {\n    this.shadow.dispose();\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.distance = source.distance;\n    this.decay = source.decay;\n    this.shadow = source.shadow.clone();\n    return this;\n  }\n}\nclass DirectionalLightShadow extends LightShadow {\n  constructor() {\n    super(new OrthographicCamera(-5, 5, 5, -5, 0.5, 500));\n    this.isDirectionalLightShadow = true;\n  }\n}\nclass DirectionalLight extends Light {\n  constructor(color, intensity) {\n    super(color, intensity);\n    this.isDirectionalLight = true;\n    this.type = \"DirectionalLight\";\n    this.position.copy(Object3D.DefaultUp);\n    this.updateMatrix();\n    this.target = new Object3D();\n    this.shadow = new DirectionalLightShadow();\n  }\n  dispose() {\n    this.shadow.dispose();\n  }\n  copy(source) {\n    super.copy(source);\n    this.target = source.target.clone();\n    this.shadow = source.shadow.clone();\n    return this;\n  }\n}\nclass AmbientLight extends Light {\n  constructor(color, intensity) {\n    super(color, intensity);\n    this.isAmbientLight = true;\n    this.type = \"AmbientLight\";\n  }\n}\nclass RectAreaLight extends Light {\n  constructor(color, intensity, width = 10, height = 10) {\n    super(color, intensity);\n    this.isRectAreaLight = true;\n    this.type = \"RectAreaLight\";\n    this.width = width;\n    this.height = height;\n  }\n  get power() {\n    return this.intensity * this.width * this.height * Math.PI;\n  }\n  set power(power) {\n    this.intensity = power / (this.width * this.height * Math.PI);\n  }\n  copy(source) {\n    super.copy(source);\n    this.width = source.width;\n    this.height = source.height;\n    return this;\n  }\n  toJSON(meta) {\n    const data = super.toJSON(meta);\n    data.object.width = this.width;\n    data.object.height = this.height;\n    return data;\n  }\n}\nclass SphericalHarmonics3 {\n  constructor() {\n    this.isSphericalHarmonics3 = true;\n    this.coefficients = [];\n    for (let i = 0; i < 9; i++) {\n      this.coefficients.push(new Vector3());\n    }\n  }\n  set(coefficients) {\n    for (let i = 0; i < 9; i++) {\n      this.coefficients[i].copy(coefficients[i]);\n    }\n    return this;\n  }\n  zero() {\n    for (let i = 0; i < 9; i++) {\n      this.coefficients[i].set(0, 0, 0);\n    }\n    return this;\n  }\n  getAt(normal, target) {\n    const x = normal.x, y = normal.y, z = normal.z;\n    const coeff = this.coefficients;\n    target.copy(coeff[0]).multiplyScalar(0.282095);\n    target.addScaledVector(coeff[1], 0.488603 * y);\n    target.addScaledVector(coeff[2], 0.488603 * z);\n    target.addScaledVector(coeff[3], 0.488603 * x);\n    target.addScaledVector(coeff[4], 1.092548 * (x * y));\n    target.addScaledVector(coeff[5], 1.092548 * (y * z));\n    target.addScaledVector(coeff[6], 0.315392 * (3 * z * z - 1));\n    target.addScaledVector(coeff[7], 1.092548 * (x * z));\n    target.addScaledVector(coeff[8], 0.546274 * (x * x - y * y));\n    return target;\n  }\n  getIrradianceAt(normal, target) {\n    const x = normal.x, y = normal.y, z = normal.z;\n    const coeff = this.coefficients;\n    target.copy(coeff[0]).multiplyScalar(0.886227);\n    target.addScaledVector(coeff[1], 2 * 0.511664 * y);\n    target.addScaledVector(coeff[2], 2 * 0.511664 * z);\n    target.addScaledVector(coeff[3], 2 * 0.511664 * x);\n    target.addScaledVector(coeff[4], 2 * 0.429043 * x * y);\n    target.addScaledVector(coeff[5], 2 * 0.429043 * y * z);\n    target.addScaledVector(coeff[6], 0.743125 * z * z - 0.247708);\n    target.addScaledVector(coeff[7], 2 * 0.429043 * x * z);\n    target.addScaledVector(coeff[8], 0.429043 * (x * x - y * y));\n    return target;\n  }\n  add(sh) {\n    for (let i = 0; i < 9; i++) {\n      this.coefficients[i].add(sh.coefficients[i]);\n    }\n    return this;\n  }\n  addScaledSH(sh, s) {\n    for (let i = 0; i < 9; i++) {\n      this.coefficients[i].addScaledVector(sh.coefficients[i], s);\n    }\n    return this;\n  }\n  scale(s) {\n    for (let i = 0; i < 9; i++) {\n      this.coefficients[i].multiplyScalar(s);\n    }\n    return this;\n  }\n  lerp(sh, alpha) {\n    for (let i = 0; i < 9; i++) {\n      this.coefficients[i].lerp(sh.coefficients[i], alpha);\n    }\n    return this;\n  }\n  equals(sh) {\n    for (let i = 0; i < 9; i++) {\n      if (!this.coefficients[i].equals(sh.coefficients[i])) {\n        return false;\n      }\n    }\n    return true;\n  }\n  copy(sh) {\n    return this.set(sh.coefficients);\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  fromArray(array, offset = 0) {\n    const coefficients = this.coefficients;\n    for (let i = 0; i < 9; i++) {\n      coefficients[i].fromArray(array, offset + i * 3);\n    }\n    return this;\n  }\n  toArray(array = [], offset = 0) {\n    const coefficients = this.coefficients;\n    for (let i = 0; i < 9; i++) {\n      coefficients[i].toArray(array, offset + i * 3);\n    }\n    return array;\n  }\n  static getBasisAt(normal, shBasis) {\n    const x = normal.x, y = normal.y, z = normal.z;\n    shBasis[0] = 0.282095;\n    shBasis[1] = 0.488603 * y;\n    shBasis[2] = 0.488603 * z;\n    shBasis[3] = 0.488603 * x;\n    shBasis[4] = 1.092548 * x * y;\n    shBasis[5] = 1.092548 * y * z;\n    shBasis[6] = 0.315392 * (3 * z * z - 1);\n    shBasis[7] = 1.092548 * x * z;\n    shBasis[8] = 0.546274 * (x * x - y * y);\n  }\n}\nclass LightProbe extends Light {\n  constructor(sh = new SphericalHarmonics3(), intensity = 1) {\n    super(void 0, intensity);\n    this.isLightProbe = true;\n    this.sh = sh;\n  }\n  copy(source) {\n    super.copy(source);\n    this.sh.copy(source.sh);\n    return this;\n  }\n  fromJSON(json) {\n    this.intensity = json.intensity;\n    this.sh.fromArray(json.sh);\n    return this;\n  }\n  toJSON(meta) {\n    const data = super.toJSON(meta);\n    data.object.sh = this.sh.toArray();\n    return data;\n  }\n}\nclass MaterialLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n    this.textures = {};\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const loader = new FileLoader(scope.manager);\n    loader.setPath(scope.path);\n    loader.setRequestHeader(scope.requestHeader);\n    loader.setWithCredentials(scope.withCredentials);\n    loader.load(url, function(text) {\n      try {\n        onLoad(scope.parse(JSON.parse(text)));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  parse(json) {\n    const textures = this.textures;\n    function getTexture(name) {\n      if (textures[name] === void 0) {\n        console.warn(\"THREE.MaterialLoader: Undefined texture\", name);\n      }\n      return textures[name];\n    }\n    const material = MaterialLoader.createMaterialFromType(json.type);\n    if (json.uuid !== void 0)\n      material.uuid = json.uuid;\n    if (json.name !== void 0)\n      material.name = json.name;\n    if (json.color !== void 0 && material.color !== void 0)\n      material.color.setHex(json.color);\n    if (json.roughness !== void 0)\n      material.roughness = json.roughness;\n    if (json.metalness !== void 0)\n      material.metalness = json.metalness;\n    if (json.sheen !== void 0)\n      material.sheen = json.sheen;\n    if (json.sheenColor !== void 0)\n      material.sheenColor = new Color().setHex(json.sheenColor);\n    if (json.sheenRoughness !== void 0)\n      material.sheenRoughness = json.sheenRoughness;\n    if (json.emissive !== void 0 && material.emissive !== void 0)\n      material.emissive.setHex(json.emissive);\n    if (json.specular !== void 0 && material.specular !== void 0)\n      material.specular.setHex(json.specular);\n    if (json.specularIntensity !== void 0)\n      material.specularIntensity = json.specularIntensity;\n    if (json.specularColor !== void 0 && material.specularColor !== void 0)\n      material.specularColor.setHex(json.specularColor);\n    if (json.shininess !== void 0)\n      material.shininess = json.shininess;\n    if (json.clearcoat !== void 0)\n      material.clearcoat = json.clearcoat;\n    if (json.clearcoatRoughness !== void 0)\n      material.clearcoatRoughness = json.clearcoatRoughness;\n    if (json.iridescence !== void 0)\n      material.iridescence = json.iridescence;\n    if (json.iridescenceIOR !== void 0)\n      material.iridescenceIOR = json.iridescenceIOR;\n    if (json.iridescenceThicknessRange !== void 0)\n      material.iridescenceThicknessRange = json.iridescenceThicknessRange;\n    if (json.transmission !== void 0)\n      material.transmission = json.transmission;\n    if (json.thickness !== void 0)\n      material.thickness = json.thickness;\n    if (json.attenuationDistance !== void 0)\n      material.attenuationDistance = json.attenuationDistance;\n    if (json.attenuationColor !== void 0 && material.attenuationColor !== void 0)\n      material.attenuationColor.setHex(json.attenuationColor);\n    if (json.fog !== void 0)\n      material.fog = json.fog;\n    if (json.flatShading !== void 0)\n      material.flatShading = json.flatShading;\n    if (json.blending !== void 0)\n      material.blending = json.blending;\n    if (json.combine !== void 0)\n      material.combine = json.combine;\n    if (json.side !== void 0)\n      material.side = json.side;\n    if (json.shadowSide !== void 0)\n      material.shadowSide = json.shadowSide;\n    if (json.opacity !== void 0)\n      material.opacity = json.opacity;\n    if (json.transparent !== void 0)\n      material.transparent = json.transparent;\n    if (json.alphaTest !== void 0)\n      material.alphaTest = json.alphaTest;\n    if (json.depthTest !== void 0)\n      material.depthTest = json.depthTest;\n    if (json.depthWrite !== void 0)\n      material.depthWrite = json.depthWrite;\n    if (json.colorWrite !== void 0)\n      material.colorWrite = json.colorWrite;\n    if (json.stencilWrite !== void 0)\n      material.stencilWrite = json.stencilWrite;\n    if (json.stencilWriteMask !== void 0)\n      material.stencilWriteMask = json.stencilWriteMask;\n    if (json.stencilFunc !== void 0)\n      material.stencilFunc = json.stencilFunc;\n    if (json.stencilRef !== void 0)\n      material.stencilRef = json.stencilRef;\n    if (json.stencilFuncMask !== void 0)\n      material.stencilFuncMask = json.stencilFuncMask;\n    if (json.stencilFail !== void 0)\n      material.stencilFail = json.stencilFail;\n    if (json.stencilZFail !== void 0)\n      material.stencilZFail = json.stencilZFail;\n    if (json.stencilZPass !== void 0)\n      material.stencilZPass = json.stencilZPass;\n    if (json.wireframe !== void 0)\n      material.wireframe = json.wireframe;\n    if (json.wireframeLinewidth !== void 0)\n      material.wireframeLinewidth = json.wireframeLinewidth;\n    if (json.wireframeLinecap !== void 0)\n      material.wireframeLinecap = json.wireframeLinecap;\n    if (json.wireframeLinejoin !== void 0)\n      material.wireframeLinejoin = json.wireframeLinejoin;\n    if (json.rotation !== void 0)\n      material.rotation = json.rotation;\n    if (json.linewidth !== 1)\n      material.linewidth = json.linewidth;\n    if (json.dashSize !== void 0)\n      material.dashSize = json.dashSize;\n    if (json.gapSize !== void 0)\n      material.gapSize = json.gapSize;\n    if (json.scale !== void 0)\n      material.scale = json.scale;\n    if (json.polygonOffset !== void 0)\n      material.polygonOffset = json.polygonOffset;\n    if (json.polygonOffsetFactor !== void 0)\n      material.polygonOffsetFactor = json.polygonOffsetFactor;\n    if (json.polygonOffsetUnits !== void 0)\n      material.polygonOffsetUnits = json.polygonOffsetUnits;\n    if (json.dithering !== void 0)\n      material.dithering = json.dithering;\n    if (json.alphaToCoverage !== void 0)\n      material.alphaToCoverage = json.alphaToCoverage;\n    if (json.premultipliedAlpha !== void 0)\n      material.premultipliedAlpha = json.premultipliedAlpha;\n    if (json.visible !== void 0)\n      material.visible = json.visible;\n    if (json.toneMapped !== void 0)\n      material.toneMapped = json.toneMapped;\n    if (json.userData !== void 0)\n      material.userData = json.userData;\n    if (json.vertexColors !== void 0) {\n      if (typeof json.vertexColors === \"number\") {\n        material.vertexColors = json.vertexColors > 0 ? true : false;\n      } else {\n        material.vertexColors = json.vertexColors;\n      }\n    }\n    if (json.uniforms !== void 0) {\n      for (const name in json.uniforms) {\n        const uniform = json.uniforms[name];\n        material.uniforms[name] = {};\n        switch (uniform.type) {\n          case \"t\":\n            material.uniforms[name].value = getTexture(uniform.value);\n            break;\n          case \"c\":\n            material.uniforms[name].value = new Color().setHex(uniform.value);\n            break;\n          case \"v2\":\n            material.uniforms[name].value = new Vector2().fromArray(uniform.value);\n            break;\n          case \"v3\":\n            material.uniforms[name].value = new Vector3().fromArray(uniform.value);\n            break;\n          case \"v4\":\n            material.uniforms[name].value = new Vector4().fromArray(uniform.value);\n            break;\n          case \"m3\":\n            material.uniforms[name].value = new Matrix3().fromArray(uniform.value);\n            break;\n          case \"m4\":\n            material.uniforms[name].value = new Matrix4().fromArray(uniform.value);\n            break;\n          default:\n            material.uniforms[name].value = uniform.value;\n        }\n      }\n    }\n    if (json.defines !== void 0)\n      material.defines = json.defines;\n    if (json.vertexShader !== void 0)\n      material.vertexShader = json.vertexShader;\n    if (json.fragmentShader !== void 0)\n      material.fragmentShader = json.fragmentShader;\n    if (json.extensions !== void 0) {\n      for (const key in json.extensions) {\n        material.extensions[key] = json.extensions[key];\n      }\n    }\n    if (json.shading !== void 0)\n      material.flatShading = json.shading === 1;\n    if (json.size !== void 0)\n      material.size = json.size;\n    if (json.sizeAttenuation !== void 0)\n      material.sizeAttenuation = json.sizeAttenuation;\n    if (json.map !== void 0)\n      material.map = getTexture(json.map);\n    if (json.matcap !== void 0)\n      material.matcap = getTexture(json.matcap);\n    if (json.alphaMap !== void 0)\n      material.alphaMap = getTexture(json.alphaMap);\n    if (json.bumpMap !== void 0)\n      material.bumpMap = getTexture(json.bumpMap);\n    if (json.bumpScale !== void 0)\n      material.bumpScale = json.bumpScale;\n    if (json.normalMap !== void 0)\n      material.normalMap = getTexture(json.normalMap);\n    if (json.normalMapType !== void 0)\n      material.normalMapType = json.normalMapType;\n    if (json.normalScale !== void 0) {\n      let normalScale = json.normalScale;\n      if (Array.isArray(normalScale) === false) {\n        normalScale = [normalScale, normalScale];\n      }\n      material.normalScale = new Vector2().fromArray(normalScale);\n    }\n    if (json.displacementMap !== void 0)\n      material.displacementMap = getTexture(json.displacementMap);\n    if (json.displacementScale !== void 0)\n      material.displacementScale = json.displacementScale;\n    if (json.displacementBias !== void 0)\n      material.displacementBias = json.displacementBias;\n    if (json.roughnessMap !== void 0)\n      material.roughnessMap = getTexture(json.roughnessMap);\n    if (json.metalnessMap !== void 0)\n      material.metalnessMap = getTexture(json.metalnessMap);\n    if (json.emissiveMap !== void 0)\n      material.emissiveMap = getTexture(json.emissiveMap);\n    if (json.emissiveIntensity !== void 0)\n      material.emissiveIntensity = json.emissiveIntensity;\n    if (json.specularMap !== void 0)\n      material.specularMap = getTexture(json.specularMap);\n    if (json.specularIntensityMap !== void 0)\n      material.specularIntensityMap = getTexture(json.specularIntensityMap);\n    if (json.specularColorMap !== void 0)\n      material.specularColorMap = getTexture(json.specularColorMap);\n    if (json.envMap !== void 0)\n      material.envMap = getTexture(json.envMap);\n    if (json.envMapIntensity !== void 0)\n      material.envMapIntensity = json.envMapIntensity;\n    if (json.reflectivity !== void 0)\n      material.reflectivity = json.reflectivity;\n    if (json.refractionRatio !== void 0)\n      material.refractionRatio = json.refractionRatio;\n    if (json.lightMap !== void 0)\n      material.lightMap = getTexture(json.lightMap);\n    if (json.lightMapIntensity !== void 0)\n      material.lightMapIntensity = json.lightMapIntensity;\n    if (json.aoMap !== void 0)\n      material.aoMap = getTexture(json.aoMap);\n    if (json.aoMapIntensity !== void 0)\n      material.aoMapIntensity = json.aoMapIntensity;\n    if (json.gradientMap !== void 0)\n      material.gradientMap = getTexture(json.gradientMap);\n    if (json.clearcoatMap !== void 0)\n      material.clearcoatMap = getTexture(json.clearcoatMap);\n    if (json.clearcoatRoughnessMap !== void 0)\n      material.clearcoatRoughnessMap = getTexture(json.clearcoatRoughnessMap);\n    if (json.clearcoatNormalMap !== void 0)\n      material.clearcoatNormalMap = getTexture(json.clearcoatNormalMap);\n    if (json.clearcoatNormalScale !== void 0)\n      material.clearcoatNormalScale = new Vector2().fromArray(json.clearcoatNormalScale);\n    if (json.iridescenceMap !== void 0)\n      material.iridescenceMap = getTexture(json.iridescenceMap);\n    if (json.iridescenceThicknessMap !== void 0)\n      material.iridescenceThicknessMap = getTexture(json.iridescenceThicknessMap);\n    if (json.transmissionMap !== void 0)\n      material.transmissionMap = getTexture(json.transmissionMap);\n    if (json.thicknessMap !== void 0)\n      material.thicknessMap = getTexture(json.thicknessMap);\n    if (json.sheenColorMap !== void 0)\n      material.sheenColorMap = getTexture(json.sheenColorMap);\n    if (json.sheenRoughnessMap !== void 0)\n      material.sheenRoughnessMap = getTexture(json.sheenRoughnessMap);\n    return material;\n  }\n  setTextures(value) {\n    this.textures = value;\n    return this;\n  }\n  static createMaterialFromType(type) {\n    const materialLib = {\n      ShadowMaterial,\n      SpriteMaterial,\n      RawShaderMaterial,\n      ShaderMaterial,\n      PointsMaterial,\n      MeshPhysicalMaterial,\n      MeshStandardMaterial,\n      MeshPhongMaterial,\n      MeshToonMaterial,\n      MeshNormalMaterial,\n      MeshLambertMaterial,\n      MeshDepthMaterial,\n      MeshDistanceMaterial,\n      MeshBasicMaterial,\n      MeshMatcapMaterial,\n      LineDashedMaterial,\n      LineBasicMaterial,\n      Material\n    };\n    return new materialLib[type]();\n  }\n}\nclass LoaderUtils {\n  static decodeText(array) {\n    if (typeof TextDecoder !== \"undefined\") {\n      return new TextDecoder().decode(array);\n    }\n    let s = \"\";\n    for (let i = 0, il = array.length; i < il; i++) {\n      s += String.fromCharCode(array[i]);\n    }\n    try {\n      return decodeURIComponent(escape(s));\n    } catch (e) {\n      return s;\n    }\n  }\n  static extractUrlBase(url) {\n    const index2 = url.lastIndexOf(\"/\");\n    if (index2 === -1)\n      return \"./\";\n    return url.slice(0, index2 + 1);\n  }\n  static resolveURL(url, path) {\n    if (typeof url !== \"string\" || url === \"\")\n      return \"\";\n    if (/^https?:\\/\\//i.test(path) && /^\\//.test(url)) {\n      path = path.replace(/(^https?:\\/\\/[^\\/]+).*/i, \"$1\");\n    }\n    if (/^(https?:)?\\/\\//i.test(url))\n      return url;\n    if (/^data:.*,.*$/i.test(url))\n      return url;\n    if (/^blob:.*$/i.test(url))\n      return url;\n    return path + url;\n  }\n}\nclass InstancedBufferGeometry extends BufferGeometry {\n  constructor() {\n    super();\n    this.isInstancedBufferGeometry = true;\n    this.type = \"InstancedBufferGeometry\";\n    this.instanceCount = Infinity;\n  }\n  copy(source) {\n    super.copy(source);\n    this.instanceCount = source.instanceCount;\n    return this;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  toJSON() {\n    const data = super.toJSON(this);\n    data.instanceCount = this.instanceCount;\n    data.isInstancedBufferGeometry = true;\n    return data;\n  }\n}\nclass BufferGeometryLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const loader = new FileLoader(scope.manager);\n    loader.setPath(scope.path);\n    loader.setRequestHeader(scope.requestHeader);\n    loader.setWithCredentials(scope.withCredentials);\n    loader.load(url, function(text) {\n      try {\n        onLoad(scope.parse(JSON.parse(text)));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  parse(json) {\n    const interleavedBufferMap = {};\n    const arrayBufferMap = {};\n    function getInterleavedBuffer(json2, uuid) {\n      if (interleavedBufferMap[uuid] !== void 0)\n        return interleavedBufferMap[uuid];\n      const interleavedBuffers = json2.interleavedBuffers;\n      const interleavedBuffer = interleavedBuffers[uuid];\n      const buffer = getArrayBuffer(json2, interleavedBuffer.buffer);\n      const array = getTypedArray(interleavedBuffer.type, buffer);\n      const ib = new InterleavedBuffer(array, interleavedBuffer.stride);\n      ib.uuid = interleavedBuffer.uuid;\n      interleavedBufferMap[uuid] = ib;\n      return ib;\n    }\n    function getArrayBuffer(json2, uuid) {\n      if (arrayBufferMap[uuid] !== void 0)\n        return arrayBufferMap[uuid];\n      const arrayBuffers = json2.arrayBuffers;\n      const arrayBuffer = arrayBuffers[uuid];\n      const ab = new Uint32Array(arrayBuffer).buffer;\n      arrayBufferMap[uuid] = ab;\n      return ab;\n    }\n    const geometry = json.isInstancedBufferGeometry ? new InstancedBufferGeometry() : new BufferGeometry();\n    const index2 = json.data.index;\n    if (index2 !== void 0) {\n      const typedArray = getTypedArray(index2.type, index2.array);\n      geometry.setIndex(new BufferAttribute(typedArray, 1));\n    }\n    const attributes = json.data.attributes;\n    for (const key in attributes) {\n      const attribute = attributes[key];\n      let bufferAttribute;\n      if (attribute.isInterleavedBufferAttribute) {\n        const interleavedBuffer = getInterleavedBuffer(json.data, attribute.data);\n        bufferAttribute = new InterleavedBufferAttribute(interleavedBuffer, attribute.itemSize, attribute.offset, attribute.normalized);\n      } else {\n        const typedArray = getTypedArray(attribute.type, attribute.array);\n        const bufferAttributeConstr = attribute.isInstancedBufferAttribute ? InstancedBufferAttribute : BufferAttribute;\n        bufferAttribute = new bufferAttributeConstr(typedArray, attribute.itemSize, attribute.normalized);\n      }\n      if (attribute.name !== void 0)\n        bufferAttribute.name = attribute.name;\n      if (attribute.usage !== void 0)\n        bufferAttribute.setUsage(attribute.usage);\n      if (attribute.updateRange !== void 0) {\n        bufferAttribute.updateRange.offset = attribute.updateRange.offset;\n        bufferAttribute.updateRange.count = attribute.updateRange.count;\n      }\n      geometry.setAttribute(key, bufferAttribute);\n    }\n    const morphAttributes = json.data.morphAttributes;\n    if (morphAttributes) {\n      for (const key in morphAttributes) {\n        const attributeArray = morphAttributes[key];\n        const array = [];\n        for (let i = 0, il = attributeArray.length; i < il; i++) {\n          const attribute = attributeArray[i];\n          let bufferAttribute;\n          if (attribute.isInterleavedBufferAttribute) {\n            const interleavedBuffer = getInterleavedBuffer(json.data, attribute.data);\n            bufferAttribute = new InterleavedBufferAttribute(interleavedBuffer, attribute.itemSize, attribute.offset, attribute.normalized);\n          } else {\n            const typedArray = getTypedArray(attribute.type, attribute.array);\n            bufferAttribute = new BufferAttribute(typedArray, attribute.itemSize, attribute.normalized);\n          }\n          if (attribute.name !== void 0)\n            bufferAttribute.name = attribute.name;\n          array.push(bufferAttribute);\n        }\n        geometry.morphAttributes[key] = array;\n      }\n    }\n    const morphTargetsRelative = json.data.morphTargetsRelative;\n    if (morphTargetsRelative) {\n      geometry.morphTargetsRelative = true;\n    }\n    const groups = json.data.groups || json.data.drawcalls || json.data.offsets;\n    if (groups !== void 0) {\n      for (let i = 0, n = groups.length; i !== n; ++i) {\n        const group = groups[i];\n        geometry.addGroup(group.start, group.count, group.materialIndex);\n      }\n    }\n    const boundingSphere = json.data.boundingSphere;\n    if (boundingSphere !== void 0) {\n      const center = new Vector3();\n      if (boundingSphere.center !== void 0) {\n        center.fromArray(boundingSphere.center);\n      }\n      geometry.boundingSphere = new Sphere(center, boundingSphere.radius);\n    }\n    if (json.name)\n      geometry.name = json.name;\n    if (json.userData)\n      geometry.userData = json.userData;\n    return geometry;\n  }\n}\nclass ObjectLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const path = this.path === \"\" ? LoaderUtils.extractUrlBase(url) : this.path;\n    this.resourcePath = this.resourcePath || path;\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, function(text) {\n      let json = null;\n      try {\n        json = JSON.parse(text);\n      } catch (error) {\n        if (onError !== void 0)\n          onError(error);\n        console.error(\"THREE:ObjectLoader: Can't parse \" + url + \".\", error.message);\n        return;\n      }\n      const metadata = json.metadata;\n      if (metadata === void 0 || metadata.type === void 0 || metadata.type.toLowerCase() === \"geometry\") {\n        console.error(\"THREE.ObjectLoader: Can't load \" + url);\n        return;\n      }\n      scope.parse(json, onLoad);\n    }, onProgress, onError);\n  }\n  async loadAsync(url, onProgress) {\n    const scope = this;\n    const path = this.path === \"\" ? LoaderUtils.extractUrlBase(url) : this.path;\n    this.resourcePath = this.resourcePath || path;\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    const text = await loader.loadAsync(url, onProgress);\n    const json = JSON.parse(text);\n    const metadata = json.metadata;\n    if (metadata === void 0 || metadata.type === void 0 || metadata.type.toLowerCase() === \"geometry\") {\n      throw new Error(\"THREE.ObjectLoader: Can't load \" + url);\n    }\n    return await scope.parseAsync(json);\n  }\n  parse(json, onLoad) {\n    const animations = this.parseAnimations(json.animations);\n    const shapes = this.parseShapes(json.shapes);\n    const geometries = this.parseGeometries(json.geometries, shapes);\n    const images = this.parseImages(json.images, function() {\n      if (onLoad !== void 0)\n        onLoad(object);\n    });\n    const textures = this.parseTextures(json.textures, images);\n    const materials = this.parseMaterials(json.materials, textures);\n    const object = this.parseObject(json.object, geometries, materials, textures, animations);\n    const skeletons = this.parseSkeletons(json.skeletons, object);\n    this.bindSkeletons(object, skeletons);\n    if (onLoad !== void 0) {\n      let hasImages = false;\n      for (const uuid in images) {\n        if (images[uuid].data instanceof HTMLImageElement) {\n          hasImages = true;\n          break;\n        }\n      }\n      if (hasImages === false)\n        onLoad(object);\n    }\n    return object;\n  }\n  async parseAsync(json) {\n    const animations = this.parseAnimations(json.animations);\n    const shapes = this.parseShapes(json.shapes);\n    const geometries = this.parseGeometries(json.geometries, shapes);\n    const images = await this.parseImagesAsync(json.images);\n    const textures = this.parseTextures(json.textures, images);\n    const materials = this.parseMaterials(json.materials, textures);\n    const object = this.parseObject(json.object, geometries, materials, textures, animations);\n    const skeletons = this.parseSkeletons(json.skeletons, object);\n    this.bindSkeletons(object, skeletons);\n    return object;\n  }\n  parseShapes(json) {\n    const shapes = {};\n    if (json !== void 0) {\n      for (let i = 0, l = json.length; i < l; i++) {\n        const shape = new Shape().fromJSON(json[i]);\n        shapes[shape.uuid] = shape;\n      }\n    }\n    return shapes;\n  }\n  parseSkeletons(json, object) {\n    const skeletons = {};\n    const bones = {};\n    object.traverse(function(child) {\n      if (child.isBone)\n        bones[child.uuid] = child;\n    });\n    if (json !== void 0) {\n      for (let i = 0, l = json.length; i < l; i++) {\n        const skeleton = new Skeleton().fromJSON(json[i], bones);\n        skeletons[skeleton.uuid] = skeleton;\n      }\n    }\n    return skeletons;\n  }\n  parseGeometries(json, shapes) {\n    const geometries = {};\n    if (json !== void 0) {\n      const bufferGeometryLoader = new BufferGeometryLoader();\n      for (let i = 0, l = json.length; i < l; i++) {\n        let geometry;\n        const data = json[i];\n        switch (data.type) {\n          case \"BufferGeometry\":\n          case \"InstancedBufferGeometry\":\n            geometry = bufferGeometryLoader.parse(data);\n            break;\n          case \"Geometry\":\n            console.error(\"THREE.ObjectLoader: The legacy Geometry type is no longer supported.\");\n            break;\n          default:\n            if (data.type in Geometries) {\n              geometry = Geometries[data.type].fromJSON(data, shapes);\n            } else {\n              console.warn(`THREE.ObjectLoader: Unsupported geometry type \"${data.type}\"`);\n            }\n        }\n        geometry.uuid = data.uuid;\n        if (data.name !== void 0)\n          geometry.name = data.name;\n        if (geometry.isBufferGeometry === true && data.userData !== void 0)\n          geometry.userData = data.userData;\n        geometries[data.uuid] = geometry;\n      }\n    }\n    return geometries;\n  }\n  parseMaterials(json, textures) {\n    const cache = {};\n    const materials = {};\n    if (json !== void 0) {\n      const loader = new MaterialLoader();\n      loader.setTextures(textures);\n      for (let i = 0, l = json.length; i < l; i++) {\n        const data = json[i];\n        if (data.type === \"MultiMaterial\") {\n          const array = [];\n          for (let j = 0; j < data.materials.length; j++) {\n            const material = data.materials[j];\n            if (cache[material.uuid] === void 0) {\n              cache[material.uuid] = loader.parse(material);\n            }\n            array.push(cache[material.uuid]);\n          }\n          materials[data.uuid] = array;\n        } else {\n          if (cache[data.uuid] === void 0) {\n            cache[data.uuid] = loader.parse(data);\n          }\n          materials[data.uuid] = cache[data.uuid];\n        }\n      }\n    }\n    return materials;\n  }\n  parseAnimations(json) {\n    const animations = {};\n    if (json !== void 0) {\n      for (let i = 0; i < json.length; i++) {\n        const data = json[i];\n        const clip = AnimationClip.parse(data);\n        animations[clip.uuid] = clip;\n      }\n    }\n    return animations;\n  }\n  parseImages(json, onLoad) {\n    const scope = this;\n    const images = {};\n    let loader;\n    function loadImage(url) {\n      scope.manager.itemStart(url);\n      return loader.load(url, function() {\n        scope.manager.itemEnd(url);\n      }, void 0, function() {\n        scope.manager.itemError(url);\n        scope.manager.itemEnd(url);\n      });\n    }\n    function deserializeImage(image) {\n      if (typeof image === \"string\") {\n        const url = image;\n        const path = /^(\\/\\/)|([a-z]+:(\\/\\/)?)/i.test(url) ? url : scope.resourcePath + url;\n        return loadImage(path);\n      } else {\n        if (image.data) {\n          return {\n            data: getTypedArray(image.type, image.data),\n            width: image.width,\n            height: image.height\n          };\n        } else {\n          return null;\n        }\n      }\n    }\n    if (json !== void 0 && json.length > 0) {\n      const manager2 = new LoadingManager$1(onLoad);\n      loader = new ImageLoader(manager2);\n      loader.setCrossOrigin(this.crossOrigin);\n      for (let i = 0, il = json.length; i < il; i++) {\n        const image = json[i];\n        const url = image.url;\n        if (Array.isArray(url)) {\n          const imageArray = [];\n          for (let j = 0, jl = url.length; j < jl; j++) {\n            const currentUrl = url[j];\n            const deserializedImage = deserializeImage(currentUrl);\n            if (deserializedImage !== null) {\n              if (deserializedImage instanceof HTMLImageElement) {\n                imageArray.push(deserializedImage);\n              } else {\n                imageArray.push(new DataTexture(deserializedImage.data, deserializedImage.width, deserializedImage.height));\n              }\n            }\n          }\n          images[image.uuid] = new Source(imageArray);\n        } else {\n          const deserializedImage = deserializeImage(image.url);\n          images[image.uuid] = new Source(deserializedImage);\n        }\n      }\n    }\n    return images;\n  }\n  async parseImagesAsync(json) {\n    const scope = this;\n    const images = {};\n    let loader;\n    async function deserializeImage(image) {\n      if (typeof image === \"string\") {\n        const url = image;\n        const path = /^(\\/\\/)|([a-z]+:(\\/\\/)?)/i.test(url) ? url : scope.resourcePath + url;\n        return await loader.loadAsync(path);\n      } else {\n        if (image.data) {\n          return {\n            data: getTypedArray(image.type, image.data),\n            width: image.width,\n            height: image.height\n          };\n        } else {\n          return null;\n        }\n      }\n    }\n    if (json !== void 0 && json.length > 0) {\n      loader = new ImageLoader(this.manager);\n      loader.setCrossOrigin(this.crossOrigin);\n      for (let i = 0, il = json.length; i < il; i++) {\n        const image = json[i];\n        const url = image.url;\n        if (Array.isArray(url)) {\n          const imageArray = [];\n          for (let j = 0, jl = url.length; j < jl; j++) {\n            const currentUrl = url[j];\n            const deserializedImage = await deserializeImage(currentUrl);\n            if (deserializedImage !== null) {\n              if (deserializedImage instanceof HTMLImageElement) {\n                imageArray.push(deserializedImage);\n              } else {\n                imageArray.push(new DataTexture(deserializedImage.data, deserializedImage.width, deserializedImage.height));\n              }\n            }\n          }\n          images[image.uuid] = new Source(imageArray);\n        } else {\n          const deserializedImage = await deserializeImage(image.url);\n          images[image.uuid] = new Source(deserializedImage);\n        }\n      }\n    }\n    return images;\n  }\n  parseTextures(json, images) {\n    function parseConstant(value, type) {\n      if (typeof value === \"number\")\n        return value;\n      console.warn(\"THREE.ObjectLoader.parseTexture: Constant should be in numeric form.\", value);\n      return type[value];\n    }\n    const textures = {};\n    if (json !== void 0) {\n      for (let i = 0, l = json.length; i < l; i++) {\n        const data = json[i];\n        if (data.image === void 0) {\n          console.warn('THREE.ObjectLoader: No \"image\" specified for', data.uuid);\n        }\n        if (images[data.image] === void 0) {\n          console.warn(\"THREE.ObjectLoader: Undefined image\", data.image);\n        }\n        const source = images[data.image];\n        const image = source.data;\n        let texture;\n        if (Array.isArray(image)) {\n          texture = new CubeTexture();\n          if (image.length === 6)\n            texture.needsUpdate = true;\n        } else {\n          if (image && image.data) {\n            texture = new DataTexture();\n          } else {\n            texture = new Texture();\n          }\n          if (image)\n            texture.needsUpdate = true;\n        }\n        texture.source = source;\n        texture.uuid = data.uuid;\n        if (data.name !== void 0)\n          texture.name = data.name;\n        if (data.mapping !== void 0)\n          texture.mapping = parseConstant(data.mapping, TEXTURE_MAPPING);\n        if (data.offset !== void 0)\n          texture.offset.fromArray(data.offset);\n        if (data.repeat !== void 0)\n          texture.repeat.fromArray(data.repeat);\n        if (data.center !== void 0)\n          texture.center.fromArray(data.center);\n        if (data.rotation !== void 0)\n          texture.rotation = data.rotation;\n        if (data.wrap !== void 0) {\n          texture.wrapS = parseConstant(data.wrap[0], TEXTURE_WRAPPING);\n          texture.wrapT = parseConstant(data.wrap[1], TEXTURE_WRAPPING);\n        }\n        if (data.format !== void 0)\n          texture.format = data.format;\n        if (data.type !== void 0)\n          texture.type = data.type;\n        if (data.encoding !== void 0)\n          texture.encoding = data.encoding;\n        if (data.minFilter !== void 0)\n          texture.minFilter = parseConstant(data.minFilter, TEXTURE_FILTER);\n        if (data.magFilter !== void 0)\n          texture.magFilter = parseConstant(data.magFilter, TEXTURE_FILTER);\n        if (data.anisotropy !== void 0)\n          texture.anisotropy = data.anisotropy;\n        if (data.flipY !== void 0)\n          texture.flipY = data.flipY;\n        if (data.premultiplyAlpha !== void 0)\n          texture.premultiplyAlpha = data.premultiplyAlpha;\n        if (data.unpackAlignment !== void 0)\n          texture.unpackAlignment = data.unpackAlignment;\n        if (data.userData !== void 0)\n          texture.userData = data.userData;\n        textures[data.uuid] = texture;\n      }\n    }\n    return textures;\n  }\n  parseObject(data, geometries, materials, textures, animations) {\n    let object;\n    function getGeometry(name) {\n      if (geometries[name] === void 0) {\n        console.warn(\"THREE.ObjectLoader: Undefined geometry\", name);\n      }\n      return geometries[name];\n    }\n    function getMaterial(name) {\n      if (name === void 0)\n        return void 0;\n      if (Array.isArray(name)) {\n        const array = [];\n        for (let i = 0, l = name.length; i < l; i++) {\n          const uuid = name[i];\n          if (materials[uuid] === void 0) {\n            console.warn(\"THREE.ObjectLoader: Undefined material\", uuid);\n          }\n          array.push(materials[uuid]);\n        }\n        return array;\n      }\n      if (materials[name] === void 0) {\n        console.warn(\"THREE.ObjectLoader: Undefined material\", name);\n      }\n      return materials[name];\n    }\n    function getTexture(uuid) {\n      if (textures[uuid] === void 0) {\n        console.warn(\"THREE.ObjectLoader: Undefined texture\", uuid);\n      }\n      return textures[uuid];\n    }\n    let geometry, material;\n    switch (data.type) {\n      case \"Scene\":\n        object = new Scene();\n        if (data.background !== void 0) {\n          if (Number.isInteger(data.background)) {\n            object.background = new Color(data.background);\n          } else {\n            object.background = getTexture(data.background);\n          }\n        }\n        if (data.environment !== void 0) {\n          object.environment = getTexture(data.environment);\n        }\n        if (data.fog !== void 0) {\n          if (data.fog.type === \"Fog\") {\n            object.fog = new Fog(data.fog.color, data.fog.near, data.fog.far);\n          } else if (data.fog.type === \"FogExp2\") {\n            object.fog = new FogExp2(data.fog.color, data.fog.density);\n          }\n        }\n        break;\n      case \"PerspectiveCamera\":\n        object = new PerspectiveCamera(data.fov, data.aspect, data.near, data.far);\n        if (data.focus !== void 0)\n          object.focus = data.focus;\n        if (data.zoom !== void 0)\n          object.zoom = data.zoom;\n        if (data.filmGauge !== void 0)\n          object.filmGauge = data.filmGauge;\n        if (data.filmOffset !== void 0)\n          object.filmOffset = data.filmOffset;\n        if (data.view !== void 0)\n          object.view = Object.assign({}, data.view);\n        break;\n      case \"OrthographicCamera\":\n        object = new OrthographicCamera(data.left, data.right, data.top, data.bottom, data.near, data.far);\n        if (data.zoom !== void 0)\n          object.zoom = data.zoom;\n        if (data.view !== void 0)\n          object.view = Object.assign({}, data.view);\n        break;\n      case \"AmbientLight\":\n        object = new AmbientLight(data.color, data.intensity);\n        break;\n      case \"DirectionalLight\":\n        object = new DirectionalLight(data.color, data.intensity);\n        break;\n      case \"PointLight\":\n        object = new PointLight(data.color, data.intensity, data.distance, data.decay);\n        break;\n      case \"RectAreaLight\":\n        object = new RectAreaLight(data.color, data.intensity, data.width, data.height);\n        break;\n      case \"SpotLight\":\n        object = new SpotLight(data.color, data.intensity, data.distance, data.angle, data.penumbra, data.decay);\n        break;\n      case \"HemisphereLight\":\n        object = new HemisphereLight(data.color, data.groundColor, data.intensity);\n        break;\n      case \"LightProbe\":\n        object = new LightProbe().fromJSON(data);\n        break;\n      case \"SkinnedMesh\":\n        geometry = getGeometry(data.geometry);\n        material = getMaterial(data.material);\n        object = new SkinnedMesh(geometry, material);\n        if (data.bindMode !== void 0)\n          object.bindMode = data.bindMode;\n        if (data.bindMatrix !== void 0)\n          object.bindMatrix.fromArray(data.bindMatrix);\n        if (data.skeleton !== void 0)\n          object.skeleton = data.skeleton;\n        break;\n      case \"Mesh\":\n        geometry = getGeometry(data.geometry);\n        material = getMaterial(data.material);\n        object = new Mesh(geometry, material);\n        break;\n      case \"InstancedMesh\":\n        geometry = getGeometry(data.geometry);\n        material = getMaterial(data.material);\n        const count = data.count;\n        const instanceMatrix = data.instanceMatrix;\n        const instanceColor = data.instanceColor;\n        object = new InstancedMesh(geometry, material, count);\n        object.instanceMatrix = new InstancedBufferAttribute(new Float32Array(instanceMatrix.array), 16);\n        if (instanceColor !== void 0)\n          object.instanceColor = new InstancedBufferAttribute(new Float32Array(instanceColor.array), instanceColor.itemSize);\n        break;\n      case \"LOD\":\n        object = new LOD();\n        break;\n      case \"Line\":\n        object = new Line(getGeometry(data.geometry), getMaterial(data.material));\n        break;\n      case \"LineLoop\":\n        object = new LineLoop(getGeometry(data.geometry), getMaterial(data.material));\n        break;\n      case \"LineSegments\":\n        object = new LineSegments(getGeometry(data.geometry), getMaterial(data.material));\n        break;\n      case \"PointCloud\":\n      case \"Points\":\n        object = new Points(getGeometry(data.geometry), getMaterial(data.material));\n        break;\n      case \"Sprite\":\n        object = new Sprite(getMaterial(data.material));\n        break;\n      case \"Group\":\n        object = new Group();\n        break;\n      case \"Bone\":\n        object = new Bone();\n        break;\n      default:\n        object = new Object3D();\n    }\n    object.uuid = data.uuid;\n    if (data.name !== void 0)\n      object.name = data.name;\n    if (data.matrix !== void 0) {\n      object.matrix.fromArray(data.matrix);\n      if (data.matrixAutoUpdate !== void 0)\n        object.matrixAutoUpdate = data.matrixAutoUpdate;\n      if (object.matrixAutoUpdate)\n        object.matrix.decompose(object.position, object.quaternion, object.scale);\n    } else {\n      if (data.position !== void 0)\n        object.position.fromArray(data.position);\n      if (data.rotation !== void 0)\n        object.rotation.fromArray(data.rotation);\n      if (data.quaternion !== void 0)\n        object.quaternion.fromArray(data.quaternion);\n      if (data.scale !== void 0)\n        object.scale.fromArray(data.scale);\n    }\n    if (data.castShadow !== void 0)\n      object.castShadow = data.castShadow;\n    if (data.receiveShadow !== void 0)\n      object.receiveShadow = data.receiveShadow;\n    if (data.shadow) {\n      if (data.shadow.bias !== void 0)\n        object.shadow.bias = data.shadow.bias;\n      if (data.shadow.normalBias !== void 0)\n        object.shadow.normalBias = data.shadow.normalBias;\n      if (data.shadow.radius !== void 0)\n        object.shadow.radius = data.shadow.radius;\n      if (data.shadow.mapSize !== void 0)\n        object.shadow.mapSize.fromArray(data.shadow.mapSize);\n      if (data.shadow.camera !== void 0)\n        object.shadow.camera = this.parseObject(data.shadow.camera);\n    }\n    if (data.visible !== void 0)\n      object.visible = data.visible;\n    if (data.frustumCulled !== void 0)\n      object.frustumCulled = data.frustumCulled;\n    if (data.renderOrder !== void 0)\n      object.renderOrder = data.renderOrder;\n    if (data.userData !== void 0)\n      object.userData = data.userData;\n    if (data.layers !== void 0)\n      object.layers.mask = data.layers;\n    if (data.children !== void 0) {\n      const children = data.children;\n      for (let i = 0; i < children.length; i++) {\n        object.add(this.parseObject(children[i], geometries, materials, textures, animations));\n      }\n    }\n    if (data.animations !== void 0) {\n      const objectAnimations = data.animations;\n      for (let i = 0; i < objectAnimations.length; i++) {\n        const uuid = objectAnimations[i];\n        object.animations.push(animations[uuid]);\n      }\n    }\n    if (data.type === \"LOD\") {\n      if (data.autoUpdate !== void 0)\n        object.autoUpdate = data.autoUpdate;\n      const levels = data.levels;\n      for (let l = 0; l < levels.length; l++) {\n        const level = levels[l];\n        const child = object.getObjectByProperty(\"uuid\", level.object);\n        if (child !== void 0) {\n          object.addLevel(child, level.distance);\n        }\n      }\n    }\n    return object;\n  }\n  bindSkeletons(object, skeletons) {\n    if (Object.keys(skeletons).length === 0)\n      return;\n    object.traverse(function(child) {\n      if (child.isSkinnedMesh === true && child.skeleton !== void 0) {\n        const skeleton = skeletons[child.skeleton];\n        if (skeleton === void 0) {\n          console.warn(\"THREE.ObjectLoader: No skeleton found with UUID:\", child.skeleton);\n        } else {\n          child.bind(skeleton, child.bindMatrix);\n        }\n      }\n    });\n  }\n}\nconst TEXTURE_MAPPING = {\n  UVMapping,\n  CubeReflectionMapping,\n  CubeRefractionMapping,\n  EquirectangularReflectionMapping,\n  EquirectangularRefractionMapping,\n  CubeUVReflectionMapping\n};\nconst TEXTURE_WRAPPING = {\n  RepeatWrapping,\n  ClampToEdgeWrapping,\n  MirroredRepeatWrapping\n};\nconst TEXTURE_FILTER = {\n  NearestFilter,\n  NearestMipmapNearestFilter,\n  NearestMipmapLinearFilter,\n  LinearFilter,\n  LinearMipmapNearestFilter,\n  LinearMipmapLinearFilter\n};\nclass ImageBitmapLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n    this.isImageBitmapLoader = true;\n    if (typeof createImageBitmap === \"undefined\") {\n      console.warn(\"THREE.ImageBitmapLoader: createImageBitmap() not supported.\");\n    }\n    if (typeof fetch === \"undefined\") {\n      console.warn(\"THREE.ImageBitmapLoader: fetch() not supported.\");\n    }\n    this.options = { premultiplyAlpha: \"none\" };\n  }\n  setOptions(options) {\n    this.options = options;\n    return this;\n  }\n  load(url, onLoad, onProgress, onError) {\n    if (url === void 0)\n      url = \"\";\n    if (this.path !== void 0)\n      url = this.path + url;\n    url = this.manager.resolveURL(url);\n    const scope = this;\n    const cached = Cache.get(url);\n    if (cached !== void 0) {\n      scope.manager.itemStart(url);\n      setTimeout(function() {\n        if (onLoad)\n          onLoad(cached);\n        scope.manager.itemEnd(url);\n      }, 0);\n      return cached;\n    }\n    const fetchOptions = {};\n    fetchOptions.credentials = this.crossOrigin === \"anonymous\" ? \"same-origin\" : \"include\";\n    fetchOptions.headers = this.requestHeader;\n    fetch(url, fetchOptions).then(function(res) {\n      return res.blob();\n    }).then(function(blob) {\n      return createImageBitmap(blob, Object.assign(scope.options, { colorSpaceConversion: \"none\" }));\n    }).then(function(imageBitmap) {\n      Cache.add(url, imageBitmap);\n      if (onLoad)\n        onLoad(imageBitmap);\n      scope.manager.itemEnd(url);\n    }).catch(function(e) {\n      if (onError)\n        onError(e);\n      scope.manager.itemError(url);\n      scope.manager.itemEnd(url);\n    });\n    scope.manager.itemStart(url);\n  }\n}\nlet _context;\nconst AudioContext = {\n  getContext: function() {\n    if (_context === void 0) {\n      _context = new (window.AudioContext || window.webkitAudioContext)();\n    }\n    return _context;\n  },\n  setContext: function(value) {\n    _context = value;\n  }\n};\nclass AudioLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const loader = new FileLoader(this.manager);\n    loader.setResponseType(\"arraybuffer\");\n    loader.setPath(this.path);\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, function(buffer) {\n      try {\n        const bufferCopy = buffer.slice(0);\n        const context = AudioContext.getContext();\n        context.decodeAudioData(bufferCopy, function(audioBuffer) {\n          onLoad(audioBuffer);\n        });\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n}\nclass HemisphereLightProbe extends LightProbe {\n  constructor(skyColor, groundColor, intensity = 1) {\n    super(void 0, intensity);\n    this.isHemisphereLightProbe = true;\n    const color1 = new Color().set(skyColor);\n    const color2 = new Color().set(groundColor);\n    const sky = new Vector3(color1.r, color1.g, color1.b);\n    const ground = new Vector3(color2.r, color2.g, color2.b);\n    const c0 = Math.sqrt(Math.PI);\n    const c1 = c0 * Math.sqrt(0.75);\n    this.sh.coefficients[0].copy(sky).add(ground).multiplyScalar(c0);\n    this.sh.coefficients[1].copy(sky).sub(ground).multiplyScalar(c1);\n  }\n}\nclass AmbientLightProbe extends LightProbe {\n  constructor(color, intensity = 1) {\n    super(void 0, intensity);\n    this.isAmbientLightProbe = true;\n    const color1 = new Color().set(color);\n    this.sh.coefficients[0].set(color1.r, color1.g, color1.b).multiplyScalar(2 * Math.sqrt(Math.PI));\n  }\n}\nconst _eyeRight = /* @__PURE__ */ new Matrix4();\nconst _eyeLeft = /* @__PURE__ */ new Matrix4();\nconst _projectionMatrix = /* @__PURE__ */ new Matrix4();\nclass StereoCamera {\n  constructor() {\n    this.type = \"StereoCamera\";\n    this.aspect = 1;\n    this.eyeSep = 0.064;\n    this.cameraL = new PerspectiveCamera();\n    this.cameraL.layers.enable(1);\n    this.cameraL.matrixAutoUpdate = false;\n    this.cameraR = new PerspectiveCamera();\n    this.cameraR.layers.enable(2);\n    this.cameraR.matrixAutoUpdate = false;\n    this._cache = {\n      focus: null,\n      fov: null,\n      aspect: null,\n      near: null,\n      far: null,\n      zoom: null,\n      eyeSep: null\n    };\n  }\n  update(camera) {\n    const cache = this._cache;\n    const needsUpdate = cache.focus !== camera.focus || cache.fov !== camera.fov || cache.aspect !== camera.aspect * this.aspect || cache.near !== camera.near || cache.far !== camera.far || cache.zoom !== camera.zoom || cache.eyeSep !== this.eyeSep;\n    if (needsUpdate) {\n      cache.focus = camera.focus;\n      cache.fov = camera.fov;\n      cache.aspect = camera.aspect * this.aspect;\n      cache.near = camera.near;\n      cache.far = camera.far;\n      cache.zoom = camera.zoom;\n      cache.eyeSep = this.eyeSep;\n      _projectionMatrix.copy(camera.projectionMatrix);\n      const eyeSepHalf = cache.eyeSep / 2;\n      const eyeSepOnProjection = eyeSepHalf * cache.near / cache.focus;\n      const ymax = cache.near * Math.tan(DEG2RAD * cache.fov * 0.5) / cache.zoom;\n      let xmin, xmax;\n      _eyeLeft.elements[12] = -eyeSepHalf;\n      _eyeRight.elements[12] = eyeSepHalf;\n      xmin = -ymax * cache.aspect + eyeSepOnProjection;\n      xmax = ymax * cache.aspect + eyeSepOnProjection;\n      _projectionMatrix.elements[0] = 2 * cache.near / (xmax - xmin);\n      _projectionMatrix.elements[8] = (xmax + xmin) / (xmax - xmin);\n      this.cameraL.projectionMatrix.copy(_projectionMatrix);\n      xmin = -ymax * cache.aspect - eyeSepOnProjection;\n      xmax = ymax * cache.aspect - eyeSepOnProjection;\n      _projectionMatrix.elements[0] = 2 * cache.near / (xmax - xmin);\n      _projectionMatrix.elements[8] = (xmax + xmin) / (xmax - xmin);\n      this.cameraR.projectionMatrix.copy(_projectionMatrix);\n    }\n    this.cameraL.matrixWorld.copy(camera.matrixWorld).multiply(_eyeLeft);\n    this.cameraR.matrixWorld.copy(camera.matrixWorld).multiply(_eyeRight);\n  }\n}\nclass Clock {\n  constructor(autoStart = true) {\n    this.autoStart = autoStart;\n    this.startTime = 0;\n    this.oldTime = 0;\n    this.elapsedTime = 0;\n    this.running = false;\n  }\n  start() {\n    this.startTime = now();\n    this.oldTime = this.startTime;\n    this.elapsedTime = 0;\n    this.running = true;\n  }\n  stop() {\n    this.getElapsedTime();\n    this.running = false;\n    this.autoStart = false;\n  }\n  getElapsedTime() {\n    this.getDelta();\n    return this.elapsedTime;\n  }\n  getDelta() {\n    let diff = 0;\n    if (this.autoStart && !this.running) {\n      this.start();\n      return 0;\n    }\n    if (this.running) {\n      const newTime = now();\n      diff = (newTime - this.oldTime) / 1e3;\n      this.oldTime = newTime;\n      this.elapsedTime += diff;\n    }\n    return diff;\n  }\n}\nfunction now() {\n  return (typeof performance === \"undefined\" ? Date : performance).now();\n}\nconst _position$1 = /* @__PURE__ */ new Vector3();\nconst _quaternion$1 = /* @__PURE__ */ new Quaternion();\nconst _scale$1 = /* @__PURE__ */ new Vector3();\nconst _orientation$1 = /* @__PURE__ */ new Vector3();\nclass AudioListener extends Object3D {\n  constructor() {\n    super();\n    this.type = \"AudioListener\";\n    this.context = AudioContext.getContext();\n    this.gain = this.context.createGain();\n    this.gain.connect(this.context.destination);\n    this.filter = null;\n    this.timeDelta = 0;\n    this._clock = new Clock();\n  }\n  getInput() {\n    return this.gain;\n  }\n  removeFilter() {\n    if (this.filter !== null) {\n      this.gain.disconnect(this.filter);\n      this.filter.disconnect(this.context.destination);\n      this.gain.connect(this.context.destination);\n      this.filter = null;\n    }\n    return this;\n  }\n  getFilter() {\n    return this.filter;\n  }\n  setFilter(value) {\n    if (this.filter !== null) {\n      this.gain.disconnect(this.filter);\n      this.filter.disconnect(this.context.destination);\n    } else {\n      this.gain.disconnect(this.context.destination);\n    }\n    this.filter = value;\n    this.gain.connect(this.filter);\n    this.filter.connect(this.context.destination);\n    return this;\n  }\n  getMasterVolume() {\n    return this.gain.gain.value;\n  }\n  setMasterVolume(value) {\n    this.gain.gain.setTargetAtTime(value, this.context.currentTime, 0.01);\n    return this;\n  }\n  updateMatrixWorld(force) {\n    super.updateMatrixWorld(force);\n    const listener = this.context.listener;\n    const up = this.up;\n    this.timeDelta = this._clock.getDelta();\n    this.matrixWorld.decompose(_position$1, _quaternion$1, _scale$1);\n    _orientation$1.set(0, 0, -1).applyQuaternion(_quaternion$1);\n    if (listener.positionX) {\n      const endTime = this.context.currentTime + this.timeDelta;\n      listener.positionX.linearRampToValueAtTime(_position$1.x, endTime);\n      listener.positionY.linearRampToValueAtTime(_position$1.y, endTime);\n      listener.positionZ.linearRampToValueAtTime(_position$1.z, endTime);\n      listener.forwardX.linearRampToValueAtTime(_orientation$1.x, endTime);\n      listener.forwardY.linearRampToValueAtTime(_orientation$1.y, endTime);\n      listener.forwardZ.linearRampToValueAtTime(_orientation$1.z, endTime);\n      listener.upX.linearRampToValueAtTime(up.x, endTime);\n      listener.upY.linearRampToValueAtTime(up.y, endTime);\n      listener.upZ.linearRampToValueAtTime(up.z, endTime);\n    } else {\n      listener.setPosition(_position$1.x, _position$1.y, _position$1.z);\n      listener.setOrientation(_orientation$1.x, _orientation$1.y, _orientation$1.z, up.x, up.y, up.z);\n    }\n  }\n}\nclass Audio extends Object3D {\n  constructor(listener) {\n    super();\n    this.type = \"Audio\";\n    this.listener = listener;\n    this.context = listener.context;\n    this.gain = this.context.createGain();\n    this.gain.connect(listener.getInput());\n    this.autoplay = false;\n    this.buffer = null;\n    this.detune = 0;\n    this.loop = false;\n    this.loopStart = 0;\n    this.loopEnd = 0;\n    this.offset = 0;\n    this.duration = void 0;\n    this.playbackRate = 1;\n    this.isPlaying = false;\n    this.hasPlaybackControl = true;\n    this.source = null;\n    this.sourceType = \"empty\";\n    this._startedAt = 0;\n    this._progress = 0;\n    this._connected = false;\n    this.filters = [];\n  }\n  getOutput() {\n    return this.gain;\n  }\n  setNodeSource(audioNode) {\n    this.hasPlaybackControl = false;\n    this.sourceType = \"audioNode\";\n    this.source = audioNode;\n    this.connect();\n    return this;\n  }\n  setMediaElementSource(mediaElement) {\n    this.hasPlaybackControl = false;\n    this.sourceType = \"mediaNode\";\n    this.source = this.context.createMediaElementSource(mediaElement);\n    this.connect();\n    return this;\n  }\n  setMediaStreamSource(mediaStream) {\n    this.hasPlaybackControl = false;\n    this.sourceType = \"mediaStreamNode\";\n    this.source = this.context.createMediaStreamSource(mediaStream);\n    this.connect();\n    return this;\n  }\n  setBuffer(audioBuffer) {\n    this.buffer = audioBuffer;\n    this.sourceType = \"buffer\";\n    if (this.autoplay)\n      this.play();\n    return this;\n  }\n  play(delay = 0) {\n    if (this.isPlaying === true) {\n      console.warn(\"THREE.Audio: Audio is already playing.\");\n      return;\n    }\n    if (this.hasPlaybackControl === false) {\n      console.warn(\"THREE.Audio: this Audio has no playback control.\");\n      return;\n    }\n    this._startedAt = this.context.currentTime + delay;\n    const source = this.context.createBufferSource();\n    source.buffer = this.buffer;\n    source.loop = this.loop;\n    source.loopStart = this.loopStart;\n    source.loopEnd = this.loopEnd;\n    source.onended = this.onEnded.bind(this);\n    source.start(this._startedAt, this._progress + this.offset, this.duration);\n    this.isPlaying = true;\n    this.source = source;\n    this.setDetune(this.detune);\n    this.setPlaybackRate(this.playbackRate);\n    return this.connect();\n  }\n  pause() {\n    if (this.hasPlaybackControl === false) {\n      console.warn(\"THREE.Audio: this Audio has no playback control.\");\n      return;\n    }\n    if (this.isPlaying === true) {\n      this._progress += Math.max(this.context.currentTime - this._startedAt, 0) * this.playbackRate;\n      if (this.loop === true) {\n        this._progress = this._progress % (this.duration || this.buffer.duration);\n      }\n      this.source.stop();\n      this.source.onended = null;\n      this.isPlaying = false;\n    }\n    return this;\n  }\n  stop() {\n    if (this.hasPlaybackControl === false) {\n      console.warn(\"THREE.Audio: this Audio has no playback control.\");\n      return;\n    }\n    this._progress = 0;\n    this.source.stop();\n    this.source.onended = null;\n    this.isPlaying = false;\n    return this;\n  }\n  connect() {\n    if (this.filters.length > 0) {\n      this.source.connect(this.filters[0]);\n      for (let i = 1, l = this.filters.length; i < l; i++) {\n        this.filters[i - 1].connect(this.filters[i]);\n      }\n      this.filters[this.filters.length - 1].connect(this.getOutput());\n    } else {\n      this.source.connect(this.getOutput());\n    }\n    this._connected = true;\n    return this;\n  }\n  disconnect() {\n    if (this.filters.length > 0) {\n      this.source.disconnect(this.filters[0]);\n      for (let i = 1, l = this.filters.length; i < l; i++) {\n        this.filters[i - 1].disconnect(this.filters[i]);\n      }\n      this.filters[this.filters.length - 1].disconnect(this.getOutput());\n    } else {\n      this.source.disconnect(this.getOutput());\n    }\n    this._connected = false;\n    return this;\n  }\n  getFilters() {\n    return this.filters;\n  }\n  setFilters(value) {\n    if (!value)\n      value = [];\n    if (this._connected === true) {\n      this.disconnect();\n      this.filters = value.slice();\n      this.connect();\n    } else {\n      this.filters = value.slice();\n    }\n    return this;\n  }\n  setDetune(value) {\n    this.detune = value;\n    if (this.source.detune === void 0)\n      return;\n    if (this.isPlaying === true) {\n      this.source.detune.setTargetAtTime(this.detune, this.context.currentTime, 0.01);\n    }\n    return this;\n  }\n  getDetune() {\n    return this.detune;\n  }\n  getFilter() {\n    return this.getFilters()[0];\n  }\n  setFilter(filter) {\n    return this.setFilters(filter ? [filter] : []);\n  }\n  setPlaybackRate(value) {\n    if (this.hasPlaybackControl === false) {\n      console.warn(\"THREE.Audio: this Audio has no playback control.\");\n      return;\n    }\n    this.playbackRate = value;\n    if (this.isPlaying === true) {\n      this.source.playbackRate.setTargetAtTime(this.playbackRate, this.context.currentTime, 0.01);\n    }\n    return this;\n  }\n  getPlaybackRate() {\n    return this.playbackRate;\n  }\n  onEnded() {\n    this.isPlaying = false;\n  }\n  getLoop() {\n    if (this.hasPlaybackControl === false) {\n      console.warn(\"THREE.Audio: this Audio has no playback control.\");\n      return false;\n    }\n    return this.loop;\n  }\n  setLoop(value) {\n    if (this.hasPlaybackControl === false) {\n      console.warn(\"THREE.Audio: this Audio has no playback control.\");\n      return;\n    }\n    this.loop = value;\n    if (this.isPlaying === true) {\n      this.source.loop = this.loop;\n    }\n    return this;\n  }\n  setLoopStart(value) {\n    this.loopStart = value;\n    return this;\n  }\n  setLoopEnd(value) {\n    this.loopEnd = value;\n    return this;\n  }\n  getVolume() {\n    return this.gain.gain.value;\n  }\n  setVolume(value) {\n    this.gain.gain.setTargetAtTime(value, this.context.currentTime, 0.01);\n    return this;\n  }\n}\nconst _position = /* @__PURE__ */ new Vector3();\nconst _quaternion = /* @__PURE__ */ new Quaternion();\nconst _scale = /* @__PURE__ */ new Vector3();\nconst _orientation = /* @__PURE__ */ new Vector3();\nclass PositionalAudio extends Audio {\n  constructor(listener) {\n    super(listener);\n    this.panner = this.context.createPanner();\n    this.panner.panningModel = \"HRTF\";\n    this.panner.connect(this.gain);\n  }\n  disconnect() {\n    super.disconnect();\n    this.panner.disconnect(this.gain);\n  }\n  getOutput() {\n    return this.panner;\n  }\n  getRefDistance() {\n    return this.panner.refDistance;\n  }\n  setRefDistance(value) {\n    this.panner.refDistance = value;\n    return this;\n  }\n  getRolloffFactor() {\n    return this.panner.rolloffFactor;\n  }\n  setRolloffFactor(value) {\n    this.panner.rolloffFactor = value;\n    return this;\n  }\n  getDistanceModel() {\n    return this.panner.distanceModel;\n  }\n  setDistanceModel(value) {\n    this.panner.distanceModel = value;\n    return this;\n  }\n  getMaxDistance() {\n    return this.panner.maxDistance;\n  }\n  setMaxDistance(value) {\n    this.panner.maxDistance = value;\n    return this;\n  }\n  setDirectionalCone(coneInnerAngle, coneOuterAngle, coneOuterGain) {\n    this.panner.coneInnerAngle = coneInnerAngle;\n    this.panner.coneOuterAngle = coneOuterAngle;\n    this.panner.coneOuterGain = coneOuterGain;\n    return this;\n  }\n  updateMatrixWorld(force) {\n    super.updateMatrixWorld(force);\n    if (this.hasPlaybackControl === true && this.isPlaying === false)\n      return;\n    this.matrixWorld.decompose(_position, _quaternion, _scale);\n    _orientation.set(0, 0, 1).applyQuaternion(_quaternion);\n    const panner = this.panner;\n    if (panner.positionX) {\n      const endTime = this.context.currentTime + this.listener.timeDelta;\n      panner.positionX.linearRampToValueAtTime(_position.x, endTime);\n      panner.positionY.linearRampToValueAtTime(_position.y, endTime);\n      panner.positionZ.linearRampToValueAtTime(_position.z, endTime);\n      panner.orientationX.linearRampToValueAtTime(_orientation.x, endTime);\n      panner.orientationY.linearRampToValueAtTime(_orientation.y, endTime);\n      panner.orientationZ.linearRampToValueAtTime(_orientation.z, endTime);\n    } else {\n      panner.setPosition(_position.x, _position.y, _position.z);\n      panner.setOrientation(_orientation.x, _orientation.y, _orientation.z);\n    }\n  }\n}\nclass AudioAnalyser {\n  constructor(audio, fftSize = 2048) {\n    this.analyser = audio.context.createAnalyser();\n    this.analyser.fftSize = fftSize;\n    this.data = new Uint8Array(this.analyser.frequencyBinCount);\n    audio.getOutput().connect(this.analyser);\n  }\n  getFrequencyData() {\n    this.analyser.getByteFrequencyData(this.data);\n    return this.data;\n  }\n  getAverageFrequency() {\n    let value = 0;\n    const data = this.getFrequencyData();\n    for (let i = 0; i < data.length; i++) {\n      value += data[i];\n    }\n    return value / data.length;\n  }\n}\nclass PropertyMixer {\n  constructor(binding, typeName, valueSize) {\n    this.binding = binding;\n    this.valueSize = valueSize;\n    let mixFunction, mixFunctionAdditive, setIdentity;\n    switch (typeName) {\n      case \"quaternion\":\n        mixFunction = this._slerp;\n        mixFunctionAdditive = this._slerpAdditive;\n        setIdentity = this._setAdditiveIdentityQuaternion;\n        this.buffer = new Float64Array(valueSize * 6);\n        this._workIndex = 5;\n        break;\n      case \"string\":\n      case \"bool\":\n        mixFunction = this._select;\n        mixFunctionAdditive = this._select;\n        setIdentity = this._setAdditiveIdentityOther;\n        this.buffer = new Array(valueSize * 5);\n        break;\n      default:\n        mixFunction = this._lerp;\n        mixFunctionAdditive = this._lerpAdditive;\n        setIdentity = this._setAdditiveIdentityNumeric;\n        this.buffer = new Float64Array(valueSize * 5);\n    }\n    this._mixBufferRegion = mixFunction;\n    this._mixBufferRegionAdditive = mixFunctionAdditive;\n    this._setIdentity = setIdentity;\n    this._origIndex = 3;\n    this._addIndex = 4;\n    this.cumulativeWeight = 0;\n    this.cumulativeWeightAdditive = 0;\n    this.useCount = 0;\n    this.referenceCount = 0;\n  }\n  accumulate(accuIndex, weight) {\n    const buffer = this.buffer, stride = this.valueSize, offset = accuIndex * stride + stride;\n    let currentWeight = this.cumulativeWeight;\n    if (currentWeight === 0) {\n      for (let i = 0; i !== stride; ++i) {\n        buffer[offset + i] = buffer[i];\n      }\n      currentWeight = weight;\n    } else {\n      currentWeight += weight;\n      const mix = weight / currentWeight;\n      this._mixBufferRegion(buffer, offset, 0, mix, stride);\n    }\n    this.cumulativeWeight = currentWeight;\n  }\n  accumulateAdditive(weight) {\n    const buffer = this.buffer, stride = this.valueSize, offset = stride * this._addIndex;\n    if (this.cumulativeWeightAdditive === 0) {\n      this._setIdentity();\n    }\n    this._mixBufferRegionAdditive(buffer, offset, 0, weight, stride);\n    this.cumulativeWeightAdditive += weight;\n  }\n  apply(accuIndex) {\n    const stride = this.valueSize, buffer = this.buffer, offset = accuIndex * stride + stride, weight = this.cumulativeWeight, weightAdditive = this.cumulativeWeightAdditive, binding = this.binding;\n    this.cumulativeWeight = 0;\n    this.cumulativeWeightAdditive = 0;\n    if (weight < 1) {\n      const originalValueOffset = stride * this._origIndex;\n      this._mixBufferRegion(buffer, offset, originalValueOffset, 1 - weight, stride);\n    }\n    if (weightAdditive > 0) {\n      this._mixBufferRegionAdditive(buffer, offset, this._addIndex * stride, 1, stride);\n    }\n    for (let i = stride, e = stride + stride; i !== e; ++i) {\n      if (buffer[i] !== buffer[i + stride]) {\n        binding.setValue(buffer, offset);\n        break;\n      }\n    }\n  }\n  saveOriginalState() {\n    const binding = this.binding;\n    const buffer = this.buffer, stride = this.valueSize, originalValueOffset = stride * this._origIndex;\n    binding.getValue(buffer, originalValueOffset);\n    for (let i = stride, e = originalValueOffset; i !== e; ++i) {\n      buffer[i] = buffer[originalValueOffset + i % stride];\n    }\n    this._setIdentity();\n    this.cumulativeWeight = 0;\n    this.cumulativeWeightAdditive = 0;\n  }\n  restoreOriginalState() {\n    const originalValueOffset = this.valueSize * 3;\n    this.binding.setValue(this.buffer, originalValueOffset);\n  }\n  _setAdditiveIdentityNumeric() {\n    const startIndex = this._addIndex * this.valueSize;\n    const endIndex = startIndex + this.valueSize;\n    for (let i = startIndex; i < endIndex; i++) {\n      this.buffer[i] = 0;\n    }\n  }\n  _setAdditiveIdentityQuaternion() {\n    this._setAdditiveIdentityNumeric();\n    this.buffer[this._addIndex * this.valueSize + 3] = 1;\n  }\n  _setAdditiveIdentityOther() {\n    const startIndex = this._origIndex * this.valueSize;\n    const targetIndex = this._addIndex * this.valueSize;\n    for (let i = 0; i < this.valueSize; i++) {\n      this.buffer[targetIndex + i] = this.buffer[startIndex + i];\n    }\n  }\n  _select(buffer, dstOffset, srcOffset, t, stride) {\n    if (t >= 0.5) {\n      for (let i = 0; i !== stride; ++i) {\n        buffer[dstOffset + i] = buffer[srcOffset + i];\n      }\n    }\n  }\n  _slerp(buffer, dstOffset, srcOffset, t) {\n    Quaternion.slerpFlat(buffer, dstOffset, buffer, dstOffset, buffer, srcOffset, t);\n  }\n  _slerpAdditive(buffer, dstOffset, srcOffset, t, stride) {\n    const workOffset = this._workIndex * stride;\n    Quaternion.multiplyQuaternionsFlat(buffer, workOffset, buffer, dstOffset, buffer, srcOffset);\n    Quaternion.slerpFlat(buffer, dstOffset, buffer, dstOffset, buffer, workOffset, t);\n  }\n  _lerp(buffer, dstOffset, srcOffset, t, stride) {\n    const s = 1 - t;\n    for (let i = 0; i !== stride; ++i) {\n      const j = dstOffset + i;\n      buffer[j] = buffer[j] * s + buffer[srcOffset + i] * t;\n    }\n  }\n  _lerpAdditive(buffer, dstOffset, srcOffset, t, stride) {\n    for (let i = 0; i !== stride; ++i) {\n      const j = dstOffset + i;\n      buffer[j] = buffer[j] + buffer[srcOffset + i] * t;\n    }\n  }\n}\nconst _RESERVED_CHARS_RE = \"\\\\[\\\\]\\\\.:\\\\/\";\nconst _reservedRe = new RegExp(\"[\" + _RESERVED_CHARS_RE + \"]\", \"g\");\nconst _wordChar = \"[^\" + _RESERVED_CHARS_RE + \"]\";\nconst _wordCharOrDot = \"[^\" + _RESERVED_CHARS_RE.replace(\"\\\\.\", \"\") + \"]\";\nconst _directoryRe = /* @__PURE__ */ /((?:WC+[\\/:])*)/.source.replace(\"WC\", _wordChar);\nconst _nodeRe = /* @__PURE__ */ /(WCOD+)?/.source.replace(\"WCOD\", _wordCharOrDot);\nconst _objectRe = /* @__PURE__ */ /(?:\\.(WC+)(?:\\[(.+)\\])?)?/.source.replace(\"WC\", _wordChar);\nconst _propertyRe = /* @__PURE__ */ /\\.(WC+)(?:\\[(.+)\\])?/.source.replace(\"WC\", _wordChar);\nconst _trackRe = new RegExp(\"^\" + _directoryRe + _nodeRe + _objectRe + _propertyRe + \"$\");\nconst _supportedObjectNames = [\"material\", \"materials\", \"bones\"];\nclass Composite {\n  constructor(targetGroup, path, optionalParsedPath) {\n    const parsedPath = optionalParsedPath || PropertyBinding.parseTrackName(path);\n    this._targetGroup = targetGroup;\n    this._bindings = targetGroup.subscribe_(path, parsedPath);\n  }\n  getValue(array, offset) {\n    this.bind();\n    const firstValidIndex = this._targetGroup.nCachedObjects_, binding = this._bindings[firstValidIndex];\n    if (binding !== void 0)\n      binding.getValue(array, offset);\n  }\n  setValue(array, offset) {\n    const bindings = this._bindings;\n    for (let i = this._targetGroup.nCachedObjects_, n = bindings.length; i !== n; ++i) {\n      bindings[i].setValue(array, offset);\n    }\n  }\n  bind() {\n    const bindings = this._bindings;\n    for (let i = this._targetGroup.nCachedObjects_, n = bindings.length; i !== n; ++i) {\n      bindings[i].bind();\n    }\n  }\n  unbind() {\n    const bindings = this._bindings;\n    for (let i = this._targetGroup.nCachedObjects_, n = bindings.length; i !== n; ++i) {\n      bindings[i].unbind();\n    }\n  }\n}\nclass PropertyBinding {\n  constructor(rootNode, path, parsedPath) {\n    this.path = path;\n    this.parsedPath = parsedPath || PropertyBinding.parseTrackName(path);\n    this.node = PropertyBinding.findNode(rootNode, this.parsedPath.nodeName) || rootNode;\n    this.rootNode = rootNode;\n    this.getValue = this._getValue_unbound;\n    this.setValue = this._setValue_unbound;\n  }\n  static create(root, path, parsedPath) {\n    if (!(root && root.isAnimationObjectGroup)) {\n      return new PropertyBinding(root, path, parsedPath);\n    } else {\n      return new PropertyBinding.Composite(root, path, parsedPath);\n    }\n  }\n  static sanitizeNodeName(name) {\n    return name.replace(/\\s/g, \"_\").replace(_reservedRe, \"\");\n  }\n  static parseTrackName(trackName) {\n    const matches = _trackRe.exec(trackName);\n    if (matches === null) {\n      throw new Error(\"PropertyBinding: Cannot parse trackName: \" + trackName);\n    }\n    const results = {\n      nodeName: matches[2],\n      objectName: matches[3],\n      objectIndex: matches[4],\n      propertyName: matches[5],\n      propertyIndex: matches[6]\n    };\n    const lastDot = results.nodeName && results.nodeName.lastIndexOf(\".\");\n    if (lastDot !== void 0 && lastDot !== -1) {\n      const objectName = results.nodeName.substring(lastDot + 1);\n      if (_supportedObjectNames.indexOf(objectName) !== -1) {\n        results.nodeName = results.nodeName.substring(0, lastDot);\n        results.objectName = objectName;\n      }\n    }\n    if (results.propertyName === null || results.propertyName.length === 0) {\n      throw new Error(\"PropertyBinding: can not parse propertyName from trackName: \" + trackName);\n    }\n    return results;\n  }\n  static findNode(root, nodeName) {\n    if (nodeName === void 0 || nodeName === \"\" || nodeName === \".\" || nodeName === -1 || nodeName === root.name || nodeName === root.uuid) {\n      return root;\n    }\n    if (root.skeleton) {\n      const bone = root.skeleton.getBoneByName(nodeName);\n      if (bone !== void 0) {\n        return bone;\n      }\n    }\n    if (root.children) {\n      const searchNodeSubtree = function(children) {\n        for (let i = 0; i < children.length; i++) {\n          const childNode = children[i];\n          if (childNode.name === nodeName || childNode.uuid === nodeName) {\n            return childNode;\n          }\n          const result = searchNodeSubtree(childNode.children);\n          if (result)\n            return result;\n        }\n        return null;\n      };\n      const subTreeNode = searchNodeSubtree(root.children);\n      if (subTreeNode) {\n        return subTreeNode;\n      }\n    }\n    return null;\n  }\n  _getValue_unavailable() {\n  }\n  _setValue_unavailable() {\n  }\n  _getValue_direct(buffer, offset) {\n    buffer[offset] = this.targetObject[this.propertyName];\n  }\n  _getValue_array(buffer, offset) {\n    const source = this.resolvedProperty;\n    for (let i = 0, n = source.length; i !== n; ++i) {\n      buffer[offset++] = source[i];\n    }\n  }\n  _getValue_arrayElement(buffer, offset) {\n    buffer[offset] = this.resolvedProperty[this.propertyIndex];\n  }\n  _getValue_toArray(buffer, offset) {\n    this.resolvedProperty.toArray(buffer, offset);\n  }\n  _setValue_direct(buffer, offset) {\n    this.targetObject[this.propertyName] = buffer[offset];\n  }\n  _setValue_direct_setNeedsUpdate(buffer, offset) {\n    this.targetObject[this.propertyName] = buffer[offset];\n    this.targetObject.needsUpdate = true;\n  }\n  _setValue_direct_setMatrixWorldNeedsUpdate(buffer, offset) {\n    this.targetObject[this.propertyName] = buffer[offset];\n    this.targetObject.matrixWorldNeedsUpdate = true;\n  }\n  _setValue_array(buffer, offset) {\n    const dest = this.resolvedProperty;\n    for (let i = 0, n = dest.length; i !== n; ++i) {\n      dest[i] = buffer[offset++];\n    }\n  }\n  _setValue_array_setNeedsUpdate(buffer, offset) {\n    const dest = this.resolvedProperty;\n    for (let i = 0, n = dest.length; i !== n; ++i) {\n      dest[i] = buffer[offset++];\n    }\n    this.targetObject.needsUpdate = true;\n  }\n  _setValue_array_setMatrixWorldNeedsUpdate(buffer, offset) {\n    const dest = this.resolvedProperty;\n    for (let i = 0, n = dest.length; i !== n; ++i) {\n      dest[i] = buffer[offset++];\n    }\n    this.targetObject.matrixWorldNeedsUpdate = true;\n  }\n  _setValue_arrayElement(buffer, offset) {\n    this.resolvedProperty[this.propertyIndex] = buffer[offset];\n  }\n  _setValue_arrayElement_setNeedsUpdate(buffer, offset) {\n    this.resolvedProperty[this.propertyIndex] = buffer[offset];\n    this.targetObject.needsUpdate = true;\n  }\n  _setValue_arrayElement_setMatrixWorldNeedsUpdate(buffer, offset) {\n    this.resolvedProperty[this.propertyIndex] = buffer[offset];\n    this.targetObject.matrixWorldNeedsUpdate = true;\n  }\n  _setValue_fromArray(buffer, offset) {\n    this.resolvedProperty.fromArray(buffer, offset);\n  }\n  _setValue_fromArray_setNeedsUpdate(buffer, offset) {\n    this.resolvedProperty.fromArray(buffer, offset);\n    this.targetObject.needsUpdate = true;\n  }\n  _setValue_fromArray_setMatrixWorldNeedsUpdate(buffer, offset) {\n    this.resolvedProperty.fromArray(buffer, offset);\n    this.targetObject.matrixWorldNeedsUpdate = true;\n  }\n  _getValue_unbound(targetArray, offset) {\n    this.bind();\n    this.getValue(targetArray, offset);\n  }\n  _setValue_unbound(sourceArray, offset) {\n    this.bind();\n    this.setValue(sourceArray, offset);\n  }\n  bind() {\n    let targetObject = this.node;\n    const parsedPath = this.parsedPath;\n    const objectName = parsedPath.objectName;\n    const propertyName = parsedPath.propertyName;\n    let propertyIndex = parsedPath.propertyIndex;\n    if (!targetObject) {\n      targetObject = PropertyBinding.findNode(this.rootNode, parsedPath.nodeName) || this.rootNode;\n      this.node = targetObject;\n    }\n    this.getValue = this._getValue_unavailable;\n    this.setValue = this._setValue_unavailable;\n    if (!targetObject) {\n      console.error(\"THREE.PropertyBinding: Trying to update node for track: \" + this.path + \" but it wasn't found.\");\n      return;\n    }\n    if (objectName) {\n      let objectIndex = parsedPath.objectIndex;\n      switch (objectName) {\n        case \"materials\":\n          if (!targetObject.material) {\n            console.error(\"THREE.PropertyBinding: Can not bind to material as node does not have a material.\", this);\n            return;\n          }\n          if (!targetObject.material.materials) {\n            console.error(\"THREE.PropertyBinding: Can not bind to material.materials as node.material does not have a materials array.\", this);\n            return;\n          }\n          targetObject = targetObject.material.materials;\n          break;\n        case \"bones\":\n          if (!targetObject.skeleton) {\n            console.error(\"THREE.PropertyBinding: Can not bind to bones as node does not have a skeleton.\", this);\n            return;\n          }\n          targetObject = targetObject.skeleton.bones;\n          for (let i = 0; i < targetObject.length; i++) {\n            if (targetObject[i].name === objectIndex) {\n              objectIndex = i;\n              break;\n            }\n          }\n          break;\n        default:\n          if (targetObject[objectName] === void 0) {\n            console.error(\"THREE.PropertyBinding: Can not bind to objectName of node undefined.\", this);\n            return;\n          }\n          targetObject = targetObject[objectName];\n      }\n      if (objectIndex !== void 0) {\n        if (targetObject[objectIndex] === void 0) {\n          console.error(\"THREE.PropertyBinding: Trying to bind to objectIndex of objectName, but is undefined.\", this, targetObject);\n          return;\n        }\n        targetObject = targetObject[objectIndex];\n      }\n    }\n    const nodeProperty = targetObject[propertyName];\n    if (nodeProperty === void 0) {\n      const nodeName = parsedPath.nodeName;\n      console.error(\"THREE.PropertyBinding: Trying to update property for track: \" + nodeName + \".\" + propertyName + \" but it wasn't found.\", targetObject);\n      return;\n    }\n    let versioning = this.Versioning.None;\n    this.targetObject = targetObject;\n    if (targetObject.needsUpdate !== void 0) {\n      versioning = this.Versioning.NeedsUpdate;\n    } else if (targetObject.matrixWorldNeedsUpdate !== void 0) {\n      versioning = this.Versioning.MatrixWorldNeedsUpdate;\n    }\n    let bindingType = this.BindingType.Direct;\n    if (propertyIndex !== void 0) {\n      if (propertyName === \"morphTargetInfluences\") {\n        if (!targetObject.geometry) {\n          console.error(\"THREE.PropertyBinding: Can not bind to morphTargetInfluences because node does not have a geometry.\", this);\n          return;\n        }\n        if (!targetObject.geometry.morphAttributes) {\n          console.error(\"THREE.PropertyBinding: Can not bind to morphTargetInfluences because node does not have a geometry.morphAttributes.\", this);\n          return;\n        }\n        if (targetObject.morphTargetDictionary[propertyIndex] !== void 0) {\n          propertyIndex = targetObject.morphTargetDictionary[propertyIndex];\n        }\n      }\n      bindingType = this.BindingType.ArrayElement;\n      this.resolvedProperty = nodeProperty;\n      this.propertyIndex = propertyIndex;\n    } else if (nodeProperty.fromArray !== void 0 && nodeProperty.toArray !== void 0) {\n      bindingType = this.BindingType.HasFromToArray;\n      this.resolvedProperty = nodeProperty;\n    } else if (Array.isArray(nodeProperty)) {\n      bindingType = this.BindingType.EntireArray;\n      this.resolvedProperty = nodeProperty;\n    } else {\n      this.propertyName = propertyName;\n    }\n    this.getValue = this.GetterByBindingType[bindingType];\n    this.setValue = this.SetterByBindingTypeAndVersioning[bindingType][versioning];\n  }\n  unbind() {\n    this.node = null;\n    this.getValue = this._getValue_unbound;\n    this.setValue = this._setValue_unbound;\n  }\n}\nPropertyBinding.Composite = Composite;\nPropertyBinding.prototype.BindingType = {\n  Direct: 0,\n  EntireArray: 1,\n  ArrayElement: 2,\n  HasFromToArray: 3\n};\nPropertyBinding.prototype.Versioning = {\n  None: 0,\n  NeedsUpdate: 1,\n  MatrixWorldNeedsUpdate: 2\n};\nPropertyBinding.prototype.GetterByBindingType = [\n  PropertyBinding.prototype._getValue_direct,\n  PropertyBinding.prototype._getValue_array,\n  PropertyBinding.prototype._getValue_arrayElement,\n  PropertyBinding.prototype._getValue_toArray\n];\nPropertyBinding.prototype.SetterByBindingTypeAndVersioning = [\n  [\n    PropertyBinding.prototype._setValue_direct,\n    PropertyBinding.prototype._setValue_direct_setNeedsUpdate,\n    PropertyBinding.prototype._setValue_direct_setMatrixWorldNeedsUpdate\n  ],\n  [\n    PropertyBinding.prototype._setValue_array,\n    PropertyBinding.prototype._setValue_array_setNeedsUpdate,\n    PropertyBinding.prototype._setValue_array_setMatrixWorldNeedsUpdate\n  ],\n  [\n    PropertyBinding.prototype._setValue_arrayElement,\n    PropertyBinding.prototype._setValue_arrayElement_setNeedsUpdate,\n    PropertyBinding.prototype._setValue_arrayElement_setMatrixWorldNeedsUpdate\n  ],\n  [\n    PropertyBinding.prototype._setValue_fromArray,\n    PropertyBinding.prototype._setValue_fromArray_setNeedsUpdate,\n    PropertyBinding.prototype._setValue_fromArray_setMatrixWorldNeedsUpdate\n  ]\n];\nclass AnimationObjectGroup {\n  constructor() {\n    this.isAnimationObjectGroup = true;\n    this.uuid = generateUUID();\n    this._objects = Array.prototype.slice.call(arguments);\n    this.nCachedObjects_ = 0;\n    const indices = {};\n    this._indicesByUUID = indices;\n    for (let i = 0, n = arguments.length; i !== n; ++i) {\n      indices[arguments[i].uuid] = i;\n    }\n    this._paths = [];\n    this._parsedPaths = [];\n    this._bindings = [];\n    this._bindingsIndicesByPath = {};\n    const scope = this;\n    this.stats = {\n      objects: {\n        get total() {\n          return scope._objects.length;\n        },\n        get inUse() {\n          return this.total - scope.nCachedObjects_;\n        }\n      },\n      get bindingsPerObject() {\n        return scope._bindings.length;\n      }\n    };\n  }\n  add() {\n    const objects = this._objects, indicesByUUID = this._indicesByUUID, paths = this._paths, parsedPaths = this._parsedPaths, bindings = this._bindings, nBindings = bindings.length;\n    let knownObject = void 0, nObjects = objects.length, nCachedObjects = this.nCachedObjects_;\n    for (let i = 0, n = arguments.length; i !== n; ++i) {\n      const object = arguments[i], uuid = object.uuid;\n      let index2 = indicesByUUID[uuid];\n      if (index2 === void 0) {\n        index2 = nObjects++;\n        indicesByUUID[uuid] = index2;\n        objects.push(object);\n        for (let j = 0, m = nBindings; j !== m; ++j) {\n          bindings[j].push(new PropertyBinding(object, paths[j], parsedPaths[j]));\n        }\n      } else if (index2 < nCachedObjects) {\n        knownObject = objects[index2];\n        const firstActiveIndex = --nCachedObjects, lastCachedObject = objects[firstActiveIndex];\n        indicesByUUID[lastCachedObject.uuid] = index2;\n        objects[index2] = lastCachedObject;\n        indicesByUUID[uuid] = firstActiveIndex;\n        objects[firstActiveIndex] = object;\n        for (let j = 0, m = nBindings; j !== m; ++j) {\n          const bindingsForPath = bindings[j], lastCached = bindingsForPath[firstActiveIndex];\n          let binding = bindingsForPath[index2];\n          bindingsForPath[index2] = lastCached;\n          if (binding === void 0) {\n            binding = new PropertyBinding(object, paths[j], parsedPaths[j]);\n          }\n          bindingsForPath[firstActiveIndex] = binding;\n        }\n      } else if (objects[index2] !== knownObject) {\n        console.error(\"THREE.AnimationObjectGroup: Different objects with the same UUID detected. Clean the caches or recreate your infrastructure when reloading scenes.\");\n      }\n    }\n    this.nCachedObjects_ = nCachedObjects;\n  }\n  remove() {\n    const objects = this._objects, indicesByUUID = this._indicesByUUID, bindings = this._bindings, nBindings = bindings.length;\n    let nCachedObjects = this.nCachedObjects_;\n    for (let i = 0, n = arguments.length; i !== n; ++i) {\n      const object = arguments[i], uuid = object.uuid, index2 = indicesByUUID[uuid];\n      if (index2 !== void 0 && index2 >= nCachedObjects) {\n        const lastCachedIndex = nCachedObjects++, firstActiveObject = objects[lastCachedIndex];\n        indicesByUUID[firstActiveObject.uuid] = index2;\n        objects[index2] = firstActiveObject;\n        indicesByUUID[uuid] = lastCachedIndex;\n        objects[lastCachedIndex] = object;\n        for (let j = 0, m = nBindings; j !== m; ++j) {\n          const bindingsForPath = bindings[j], firstActive = bindingsForPath[lastCachedIndex], binding = bindingsForPath[index2];\n          bindingsForPath[index2] = firstActive;\n          bindingsForPath[lastCachedIndex] = binding;\n        }\n      }\n    }\n    this.nCachedObjects_ = nCachedObjects;\n  }\n  uncache() {\n    const objects = this._objects, indicesByUUID = this._indicesByUUID, bindings = this._bindings, nBindings = bindings.length;\n    let nCachedObjects = this.nCachedObjects_, nObjects = objects.length;\n    for (let i = 0, n = arguments.length; i !== n; ++i) {\n      const object = arguments[i], uuid = object.uuid, index2 = indicesByUUID[uuid];\n      if (index2 !== void 0) {\n        delete indicesByUUID[uuid];\n        if (index2 < nCachedObjects) {\n          const firstActiveIndex = --nCachedObjects, lastCachedObject = objects[firstActiveIndex], lastIndex = --nObjects, lastObject = objects[lastIndex];\n          indicesByUUID[lastCachedObject.uuid] = index2;\n          objects[index2] = lastCachedObject;\n          indicesByUUID[lastObject.uuid] = firstActiveIndex;\n          objects[firstActiveIndex] = lastObject;\n          objects.pop();\n          for (let j = 0, m = nBindings; j !== m; ++j) {\n            const bindingsForPath = bindings[j], lastCached = bindingsForPath[firstActiveIndex], last = bindingsForPath[lastIndex];\n            bindingsForPath[index2] = lastCached;\n            bindingsForPath[firstActiveIndex] = last;\n            bindingsForPath.pop();\n          }\n        } else {\n          const lastIndex = --nObjects, lastObject = objects[lastIndex];\n          if (lastIndex > 0) {\n            indicesByUUID[lastObject.uuid] = index2;\n          }\n          objects[index2] = lastObject;\n          objects.pop();\n          for (let j = 0, m = nBindings; j !== m; ++j) {\n            const bindingsForPath = bindings[j];\n            bindingsForPath[index2] = bindingsForPath[lastIndex];\n            bindingsForPath.pop();\n          }\n        }\n      }\n    }\n    this.nCachedObjects_ = nCachedObjects;\n  }\n  subscribe_(path, parsedPath) {\n    const indicesByPath = this._bindingsIndicesByPath;\n    let index2 = indicesByPath[path];\n    const bindings = this._bindings;\n    if (index2 !== void 0)\n      return bindings[index2];\n    const paths = this._paths, parsedPaths = this._parsedPaths, objects = this._objects, nObjects = objects.length, nCachedObjects = this.nCachedObjects_, bindingsForPath = new Array(nObjects);\n    index2 = bindings.length;\n    indicesByPath[path] = index2;\n    paths.push(path);\n    parsedPaths.push(parsedPath);\n    bindings.push(bindingsForPath);\n    for (let i = nCachedObjects, n = objects.length; i !== n; ++i) {\n      const object = objects[i];\n      bindingsForPath[i] = new PropertyBinding(object, path, parsedPath);\n    }\n    return bindingsForPath;\n  }\n  unsubscribe_(path) {\n    const indicesByPath = this._bindingsIndicesByPath, index2 = indicesByPath[path];\n    if (index2 !== void 0) {\n      const paths = this._paths, parsedPaths = this._parsedPaths, bindings = this._bindings, lastBindingsIndex = bindings.length - 1, lastBindings = bindings[lastBindingsIndex], lastBindingsPath = path[lastBindingsIndex];\n      indicesByPath[lastBindingsPath] = index2;\n      bindings[index2] = lastBindings;\n      bindings.pop();\n      parsedPaths[index2] = parsedPaths[lastBindingsIndex];\n      parsedPaths.pop();\n      paths[index2] = paths[lastBindingsIndex];\n      paths.pop();\n    }\n  }\n}\nclass AnimationAction {\n  constructor(mixer, clip, localRoot = null, blendMode = clip.blendMode) {\n    this._mixer = mixer;\n    this._clip = clip;\n    this._localRoot = localRoot;\n    this.blendMode = blendMode;\n    const tracks = clip.tracks, nTracks = tracks.length, interpolants = new Array(nTracks);\n    const interpolantSettings = {\n      endingStart: ZeroCurvatureEnding,\n      endingEnd: ZeroCurvatureEnding\n    };\n    for (let i = 0; i !== nTracks; ++i) {\n      const interpolant = tracks[i].createInterpolant(null);\n      interpolants[i] = interpolant;\n      interpolant.settings = interpolantSettings;\n    }\n    this._interpolantSettings = interpolantSettings;\n    this._interpolants = interpolants;\n    this._propertyBindings = new Array(nTracks);\n    this._cacheIndex = null;\n    this._byClipCacheIndex = null;\n    this._timeScaleInterpolant = null;\n    this._weightInterpolant = null;\n    this.loop = LoopRepeat;\n    this._loopCount = -1;\n    this._startTime = null;\n    this.time = 0;\n    this.timeScale = 1;\n    this._effectiveTimeScale = 1;\n    this.weight = 1;\n    this._effectiveWeight = 1;\n    this.repetitions = Infinity;\n    this.paused = false;\n    this.enabled = true;\n    this.clampWhenFinished = false;\n    this.zeroSlopeAtStart = true;\n    this.zeroSlopeAtEnd = true;\n  }\n  play() {\n    this._mixer._activateAction(this);\n    return this;\n  }\n  stop() {\n    this._mixer._deactivateAction(this);\n    return this.reset();\n  }\n  reset() {\n    this.paused = false;\n    this.enabled = true;\n    this.time = 0;\n    this._loopCount = -1;\n    this._startTime = null;\n    return this.stopFading().stopWarping();\n  }\n  isRunning() {\n    return this.enabled && !this.paused && this.timeScale !== 0 && this._startTime === null && this._mixer._isActiveAction(this);\n  }\n  isScheduled() {\n    return this._mixer._isActiveAction(this);\n  }\n  startAt(time) {\n    this._startTime = time;\n    return this;\n  }\n  setLoop(mode, repetitions) {\n    this.loop = mode;\n    this.repetitions = repetitions;\n    return this;\n  }\n  setEffectiveWeight(weight) {\n    this.weight = weight;\n    this._effectiveWeight = this.enabled ? weight : 0;\n    return this.stopFading();\n  }\n  getEffectiveWeight() {\n    return this._effectiveWeight;\n  }\n  fadeIn(duration) {\n    return this._scheduleFading(duration, 0, 1);\n  }\n  fadeOut(duration) {\n    return this._scheduleFading(duration, 1, 0);\n  }\n  crossFadeFrom(fadeOutAction, duration, warp) {\n    fadeOutAction.fadeOut(duration);\n    this.fadeIn(duration);\n    if (warp) {\n      const fadeInDuration = this._clip.duration, fadeOutDuration = fadeOutAction._clip.duration, startEndRatio = fadeOutDuration / fadeInDuration, endStartRatio = fadeInDuration / fadeOutDuration;\n      fadeOutAction.warp(1, startEndRatio, duration);\n      this.warp(endStartRatio, 1, duration);\n    }\n    return this;\n  }\n  crossFadeTo(fadeInAction, duration, warp) {\n    return fadeInAction.crossFadeFrom(this, duration, warp);\n  }\n  stopFading() {\n    const weightInterpolant = this._weightInterpolant;\n    if (weightInterpolant !== null) {\n      this._weightInterpolant = null;\n      this._mixer._takeBackControlInterpolant(weightInterpolant);\n    }\n    return this;\n  }\n  setEffectiveTimeScale(timeScale) {\n    this.timeScale = timeScale;\n    this._effectiveTimeScale = this.paused ? 0 : timeScale;\n    return this.stopWarping();\n  }\n  getEffectiveTimeScale() {\n    return this._effectiveTimeScale;\n  }\n  setDuration(duration) {\n    this.timeScale = this._clip.duration / duration;\n    return this.stopWarping();\n  }\n  syncWith(action) {\n    this.time = action.time;\n    this.timeScale = action.timeScale;\n    return this.stopWarping();\n  }\n  halt(duration) {\n    return this.warp(this._effectiveTimeScale, 0, duration);\n  }\n  warp(startTimeScale, endTimeScale, duration) {\n    const mixer = this._mixer, now2 = mixer.time, timeScale = this.timeScale;\n    let interpolant = this._timeScaleInterpolant;\n    if (interpolant === null) {\n      interpolant = mixer._lendControlInterpolant();\n      this._timeScaleInterpolant = interpolant;\n    }\n    const times = interpolant.parameterPositions, values = interpolant.sampleValues;\n    times[0] = now2;\n    times[1] = now2 + duration;\n    values[0] = startTimeScale / timeScale;\n    values[1] = endTimeScale / timeScale;\n    return this;\n  }\n  stopWarping() {\n    const timeScaleInterpolant = this._timeScaleInterpolant;\n    if (timeScaleInterpolant !== null) {\n      this._timeScaleInterpolant = null;\n      this._mixer._takeBackControlInterpolant(timeScaleInterpolant);\n    }\n    return this;\n  }\n  getMixer() {\n    return this._mixer;\n  }\n  getClip() {\n    return this._clip;\n  }\n  getRoot() {\n    return this._localRoot || this._mixer._root;\n  }\n  _update(time, deltaTime, timeDirection, accuIndex) {\n    if (!this.enabled) {\n      this._updateWeight(time);\n      return;\n    }\n    const startTime = this._startTime;\n    if (startTime !== null) {\n      const timeRunning = (time - startTime) * timeDirection;\n      if (timeRunning < 0 || timeDirection === 0) {\n        return;\n      }\n      this._startTime = null;\n      deltaTime = timeDirection * timeRunning;\n    }\n    deltaTime *= this._updateTimeScale(time);\n    const clipTime = this._updateTime(deltaTime);\n    const weight = this._updateWeight(time);\n    if (weight > 0) {\n      const interpolants = this._interpolants;\n      const propertyMixers = this._propertyBindings;\n      switch (this.blendMode) {\n        case AdditiveAnimationBlendMode:\n          for (let j = 0, m = interpolants.length; j !== m; ++j) {\n            interpolants[j].evaluate(clipTime);\n            propertyMixers[j].accumulateAdditive(weight);\n          }\n          break;\n        case NormalAnimationBlendMode:\n        default:\n          for (let j = 0, m = interpolants.length; j !== m; ++j) {\n            interpolants[j].evaluate(clipTime);\n            propertyMixers[j].accumulate(accuIndex, weight);\n          }\n      }\n    }\n  }\n  _updateWeight(time) {\n    let weight = 0;\n    if (this.enabled) {\n      weight = this.weight;\n      const interpolant = this._weightInterpolant;\n      if (interpolant !== null) {\n        const interpolantValue = interpolant.evaluate(time)[0];\n        weight *= interpolantValue;\n        if (time > interpolant.parameterPositions[1]) {\n          this.stopFading();\n          if (interpolantValue === 0) {\n            this.enabled = false;\n          }\n        }\n      }\n    }\n    this._effectiveWeight = weight;\n    return weight;\n  }\n  _updateTimeScale(time) {\n    let timeScale = 0;\n    if (!this.paused) {\n      timeScale = this.timeScale;\n      const interpolant = this._timeScaleInterpolant;\n      if (interpolant !== null) {\n        const interpolantValue = interpolant.evaluate(time)[0];\n        timeScale *= interpolantValue;\n        if (time > interpolant.parameterPositions[1]) {\n          this.stopWarping();\n          if (timeScale === 0) {\n            this.paused = true;\n          } else {\n            this.timeScale = timeScale;\n          }\n        }\n      }\n    }\n    this._effectiveTimeScale = timeScale;\n    return timeScale;\n  }\n  _updateTime(deltaTime) {\n    const duration = this._clip.duration;\n    const loop = this.loop;\n    let time = this.time + deltaTime;\n    let loopCount = this._loopCount;\n    const pingPong = loop === LoopPingPong;\n    if (deltaTime === 0) {\n      if (loopCount === -1)\n        return time;\n      return pingPong && (loopCount & 1) === 1 ? duration - time : time;\n    }\n    if (loop === LoopOnce) {\n      if (loopCount === -1) {\n        this._loopCount = 0;\n        this._setEndings(true, true, false);\n      }\n      handle_stop: {\n        if (time >= duration) {\n          time = duration;\n        } else if (time < 0) {\n          time = 0;\n        } else {\n          this.time = time;\n          break handle_stop;\n        }\n        if (this.clampWhenFinished)\n          this.paused = true;\n        else\n          this.enabled = false;\n        this.time = time;\n        this._mixer.dispatchEvent({\n          type: \"finished\",\n          action: this,\n          direction: deltaTime < 0 ? -1 : 1\n        });\n      }\n    } else {\n      if (loopCount === -1) {\n        if (deltaTime >= 0) {\n          loopCount = 0;\n          this._setEndings(true, this.repetitions === 0, pingPong);\n        } else {\n          this._setEndings(this.repetitions === 0, true, pingPong);\n        }\n      }\n      if (time >= duration || time < 0) {\n        const loopDelta = Math.floor(time / duration);\n        time -= duration * loopDelta;\n        loopCount += Math.abs(loopDelta);\n        const pending = this.repetitions - loopCount;\n        if (pending <= 0) {\n          if (this.clampWhenFinished)\n            this.paused = true;\n          else\n            this.enabled = false;\n          time = deltaTime > 0 ? duration : 0;\n          this.time = time;\n          this._mixer.dispatchEvent({\n            type: \"finished\",\n            action: this,\n            direction: deltaTime > 0 ? 1 : -1\n          });\n        } else {\n          if (pending === 1) {\n            const atStart = deltaTime < 0;\n            this._setEndings(atStart, !atStart, pingPong);\n          } else {\n            this._setEndings(false, false, pingPong);\n          }\n          this._loopCount = loopCount;\n          this.time = time;\n          this._mixer.dispatchEvent({\n            type: \"loop\",\n            action: this,\n            loopDelta\n          });\n        }\n      } else {\n        this.time = time;\n      }\n      if (pingPong && (loopCount & 1) === 1) {\n        return duration - time;\n      }\n    }\n    return time;\n  }\n  _setEndings(atStart, atEnd, pingPong) {\n    const settings = this._interpolantSettings;\n    if (pingPong) {\n      settings.endingStart = ZeroSlopeEnding;\n      settings.endingEnd = ZeroSlopeEnding;\n    } else {\n      if (atStart) {\n        settings.endingStart = this.zeroSlopeAtStart ? ZeroSlopeEnding : ZeroCurvatureEnding;\n      } else {\n        settings.endingStart = WrapAroundEnding;\n      }\n      if (atEnd) {\n        settings.endingEnd = this.zeroSlopeAtEnd ? ZeroSlopeEnding : ZeroCurvatureEnding;\n      } else {\n        settings.endingEnd = WrapAroundEnding;\n      }\n    }\n  }\n  _scheduleFading(duration, weightNow, weightThen) {\n    const mixer = this._mixer, now2 = mixer.time;\n    let interpolant = this._weightInterpolant;\n    if (interpolant === null) {\n      interpolant = mixer._lendControlInterpolant();\n      this._weightInterpolant = interpolant;\n    }\n    const times = interpolant.parameterPositions, values = interpolant.sampleValues;\n    times[0] = now2;\n    values[0] = weightNow;\n    times[1] = now2 + duration;\n    values[1] = weightThen;\n    return this;\n  }\n}\nconst _controlInterpolantsResultBuffer = new Float32Array(1);\nclass AnimationMixer extends EventDispatcher {\n  constructor(root) {\n    super();\n    this._root = root;\n    this._initMemoryManager();\n    this._accuIndex = 0;\n    this.time = 0;\n    this.timeScale = 1;\n  }\n  _bindAction(action, prototypeAction) {\n    const root = action._localRoot || this._root, tracks = action._clip.tracks, nTracks = tracks.length, bindings = action._propertyBindings, interpolants = action._interpolants, rootUuid = root.uuid, bindingsByRoot = this._bindingsByRootAndName;\n    let bindingsByName = bindingsByRoot[rootUuid];\n    if (bindingsByName === void 0) {\n      bindingsByName = {};\n      bindingsByRoot[rootUuid] = bindingsByName;\n    }\n    for (let i = 0; i !== nTracks; ++i) {\n      const track = tracks[i], trackName = track.name;\n      let binding = bindingsByName[trackName];\n      if (binding !== void 0) {\n        ++binding.referenceCount;\n        bindings[i] = binding;\n      } else {\n        binding = bindings[i];\n        if (binding !== void 0) {\n          if (binding._cacheIndex === null) {\n            ++binding.referenceCount;\n            this._addInactiveBinding(binding, rootUuid, trackName);\n          }\n          continue;\n        }\n        const path = prototypeAction && prototypeAction._propertyBindings[i].binding.parsedPath;\n        binding = new PropertyMixer(PropertyBinding.create(root, trackName, path), track.ValueTypeName, track.getValueSize());\n        ++binding.referenceCount;\n        this._addInactiveBinding(binding, rootUuid, trackName);\n        bindings[i] = binding;\n      }\n      interpolants[i].resultBuffer = binding.buffer;\n    }\n  }\n  _activateAction(action) {\n    if (!this._isActiveAction(action)) {\n      if (action._cacheIndex === null) {\n        const rootUuid = (action._localRoot || this._root).uuid, clipUuid = action._clip.uuid, actionsForClip = this._actionsByClip[clipUuid];\n        this._bindAction(action, actionsForClip && actionsForClip.knownActions[0]);\n        this._addInactiveAction(action, clipUuid, rootUuid);\n      }\n      const bindings = action._propertyBindings;\n      for (let i = 0, n = bindings.length; i !== n; ++i) {\n        const binding = bindings[i];\n        if (binding.useCount++ === 0) {\n          this._lendBinding(binding);\n          binding.saveOriginalState();\n        }\n      }\n      this._lendAction(action);\n    }\n  }\n  _deactivateAction(action) {\n    if (this._isActiveAction(action)) {\n      const bindings = action._propertyBindings;\n      for (let i = 0, n = bindings.length; i !== n; ++i) {\n        const binding = bindings[i];\n        if (--binding.useCount === 0) {\n          binding.restoreOriginalState();\n          this._takeBackBinding(binding);\n        }\n      }\n      this._takeBackAction(action);\n    }\n  }\n  _initMemoryManager() {\n    this._actions = [];\n    this._nActiveActions = 0;\n    this._actionsByClip = {};\n    this._bindings = [];\n    this._nActiveBindings = 0;\n    this._bindingsByRootAndName = {};\n    this._controlInterpolants = [];\n    this._nActiveControlInterpolants = 0;\n    const scope = this;\n    this.stats = {\n      actions: {\n        get total() {\n          return scope._actions.length;\n        },\n        get inUse() {\n          return scope._nActiveActions;\n        }\n      },\n      bindings: {\n        get total() {\n          return scope._bindings.length;\n        },\n        get inUse() {\n          return scope._nActiveBindings;\n        }\n      },\n      controlInterpolants: {\n        get total() {\n          return scope._controlInterpolants.length;\n        },\n        get inUse() {\n          return scope._nActiveControlInterpolants;\n        }\n      }\n    };\n  }\n  _isActiveAction(action) {\n    const index2 = action._cacheIndex;\n    return index2 !== null && index2 < this._nActiveActions;\n  }\n  _addInactiveAction(action, clipUuid, rootUuid) {\n    const actions = this._actions, actionsByClip = this._actionsByClip;\n    let actionsForClip = actionsByClip[clipUuid];\n    if (actionsForClip === void 0) {\n      actionsForClip = {\n        knownActions: [action],\n        actionByRoot: {}\n      };\n      action._byClipCacheIndex = 0;\n      actionsByClip[clipUuid] = actionsForClip;\n    } else {\n      const knownActions = actionsForClip.knownActions;\n      action._byClipCacheIndex = knownActions.length;\n      knownActions.push(action);\n    }\n    action._cacheIndex = actions.length;\n    actions.push(action);\n    actionsForClip.actionByRoot[rootUuid] = action;\n  }\n  _removeInactiveAction(action) {\n    const actions = this._actions, lastInactiveAction = actions[actions.length - 1], cacheIndex = action._cacheIndex;\n    lastInactiveAction._cacheIndex = cacheIndex;\n    actions[cacheIndex] = lastInactiveAction;\n    actions.pop();\n    action._cacheIndex = null;\n    const clipUuid = action._clip.uuid, actionsByClip = this._actionsByClip, actionsForClip = actionsByClip[clipUuid], knownActionsForClip = actionsForClip.knownActions, lastKnownAction = knownActionsForClip[knownActionsForClip.length - 1], byClipCacheIndex = action._byClipCacheIndex;\n    lastKnownAction._byClipCacheIndex = byClipCacheIndex;\n    knownActionsForClip[byClipCacheIndex] = lastKnownAction;\n    knownActionsForClip.pop();\n    action._byClipCacheIndex = null;\n    const actionByRoot = actionsForClip.actionByRoot, rootUuid = (action._localRoot || this._root).uuid;\n    delete actionByRoot[rootUuid];\n    if (knownActionsForClip.length === 0) {\n      delete actionsByClip[clipUuid];\n    }\n    this._removeInactiveBindingsForAction(action);\n  }\n  _removeInactiveBindingsForAction(action) {\n    const bindings = action._propertyBindings;\n    for (let i = 0, n = bindings.length; i !== n; ++i) {\n      const binding = bindings[i];\n      if (--binding.referenceCount === 0) {\n        this._removeInactiveBinding(binding);\n      }\n    }\n  }\n  _lendAction(action) {\n    const actions = this._actions, prevIndex = action._cacheIndex, lastActiveIndex = this._nActiveActions++, firstInactiveAction = actions[lastActiveIndex];\n    action._cacheIndex = lastActiveIndex;\n    actions[lastActiveIndex] = action;\n    firstInactiveAction._cacheIndex = prevIndex;\n    actions[prevIndex] = firstInactiveAction;\n  }\n  _takeBackAction(action) {\n    const actions = this._actions, prevIndex = action._cacheIndex, firstInactiveIndex = --this._nActiveActions, lastActiveAction = actions[firstInactiveIndex];\n    action._cacheIndex = firstInactiveIndex;\n    actions[firstInactiveIndex] = action;\n    lastActiveAction._cacheIndex = prevIndex;\n    actions[prevIndex] = lastActiveAction;\n  }\n  _addInactiveBinding(binding, rootUuid, trackName) {\n    const bindingsByRoot = this._bindingsByRootAndName, bindings = this._bindings;\n    let bindingByName = bindingsByRoot[rootUuid];\n    if (bindingByName === void 0) {\n      bindingByName = {};\n      bindingsByRoot[rootUuid] = bindingByName;\n    }\n    bindingByName[trackName] = binding;\n    binding._cacheIndex = bindings.length;\n    bindings.push(binding);\n  }\n  _removeInactiveBinding(binding) {\n    const bindings = this._bindings, propBinding = binding.binding, rootUuid = propBinding.rootNode.uuid, trackName = propBinding.path, bindingsByRoot = this._bindingsByRootAndName, bindingByName = bindingsByRoot[rootUuid], lastInactiveBinding = bindings[bindings.length - 1], cacheIndex = binding._cacheIndex;\n    lastInactiveBinding._cacheIndex = cacheIndex;\n    bindings[cacheIndex] = lastInactiveBinding;\n    bindings.pop();\n    delete bindingByName[trackName];\n    if (Object.keys(bindingByName).length === 0) {\n      delete bindingsByRoot[rootUuid];\n    }\n  }\n  _lendBinding(binding) {\n    const bindings = this._bindings, prevIndex = binding._cacheIndex, lastActiveIndex = this._nActiveBindings++, firstInactiveBinding = bindings[lastActiveIndex];\n    binding._cacheIndex = lastActiveIndex;\n    bindings[lastActiveIndex] = binding;\n    firstInactiveBinding._cacheIndex = prevIndex;\n    bindings[prevIndex] = firstInactiveBinding;\n  }\n  _takeBackBinding(binding) {\n    const bindings = this._bindings, prevIndex = binding._cacheIndex, firstInactiveIndex = --this._nActiveBindings, lastActiveBinding = bindings[firstInactiveIndex];\n    binding._cacheIndex = firstInactiveIndex;\n    bindings[firstInactiveIndex] = binding;\n    lastActiveBinding._cacheIndex = prevIndex;\n    bindings[prevIndex] = lastActiveBinding;\n  }\n  _lendControlInterpolant() {\n    const interpolants = this._controlInterpolants, lastActiveIndex = this._nActiveControlInterpolants++;\n    let interpolant = interpolants[lastActiveIndex];\n    if (interpolant === void 0) {\n      interpolant = new LinearInterpolant(new Float32Array(2), new Float32Array(2), 1, _controlInterpolantsResultBuffer);\n      interpolant.__cacheIndex = lastActiveIndex;\n      interpolants[lastActiveIndex] = interpolant;\n    }\n    return interpolant;\n  }\n  _takeBackControlInterpolant(interpolant) {\n    const interpolants = this._controlInterpolants, prevIndex = interpolant.__cacheIndex, firstInactiveIndex = --this._nActiveControlInterpolants, lastActiveInterpolant = interpolants[firstInactiveIndex];\n    interpolant.__cacheIndex = firstInactiveIndex;\n    interpolants[firstInactiveIndex] = interpolant;\n    lastActiveInterpolant.__cacheIndex = prevIndex;\n    interpolants[prevIndex] = lastActiveInterpolant;\n  }\n  clipAction(clip, optionalRoot, blendMode) {\n    const root = optionalRoot || this._root, rootUuid = root.uuid;\n    let clipObject = typeof clip === \"string\" ? AnimationClip.findByName(root, clip) : clip;\n    const clipUuid = clipObject !== null ? clipObject.uuid : clip;\n    const actionsForClip = this._actionsByClip[clipUuid];\n    let prototypeAction = null;\n    if (blendMode === void 0) {\n      if (clipObject !== null) {\n        blendMode = clipObject.blendMode;\n      } else {\n        blendMode = NormalAnimationBlendMode;\n      }\n    }\n    if (actionsForClip !== void 0) {\n      const existingAction = actionsForClip.actionByRoot[rootUuid];\n      if (existingAction !== void 0 && existingAction.blendMode === blendMode) {\n        return existingAction;\n      }\n      prototypeAction = actionsForClip.knownActions[0];\n      if (clipObject === null)\n        clipObject = prototypeAction._clip;\n    }\n    if (clipObject === null)\n      return null;\n    const newAction = new AnimationAction(this, clipObject, optionalRoot, blendMode);\n    this._bindAction(newAction, prototypeAction);\n    this._addInactiveAction(newAction, clipUuid, rootUuid);\n    return newAction;\n  }\n  existingAction(clip, optionalRoot) {\n    const root = optionalRoot || this._root, rootUuid = root.uuid, clipObject = typeof clip === \"string\" ? AnimationClip.findByName(root, clip) : clip, clipUuid = clipObject ? clipObject.uuid : clip, actionsForClip = this._actionsByClip[clipUuid];\n    if (actionsForClip !== void 0) {\n      return actionsForClip.actionByRoot[rootUuid] || null;\n    }\n    return null;\n  }\n  stopAllAction() {\n    const actions = this._actions, nActions = this._nActiveActions;\n    for (let i = nActions - 1; i >= 0; --i) {\n      actions[i].stop();\n    }\n    return this;\n  }\n  update(deltaTime) {\n    deltaTime *= this.timeScale;\n    const actions = this._actions, nActions = this._nActiveActions, time = this.time += deltaTime, timeDirection = Math.sign(deltaTime), accuIndex = this._accuIndex ^= 1;\n    for (let i = 0; i !== nActions; ++i) {\n      const action = actions[i];\n      action._update(time, deltaTime, timeDirection, accuIndex);\n    }\n    const bindings = this._bindings, nBindings = this._nActiveBindings;\n    for (let i = 0; i !== nBindings; ++i) {\n      bindings[i].apply(accuIndex);\n    }\n    return this;\n  }\n  setTime(timeInSeconds) {\n    this.time = 0;\n    for (let i = 0; i < this._actions.length; i++) {\n      this._actions[i].time = 0;\n    }\n    return this.update(timeInSeconds);\n  }\n  getRoot() {\n    return this._root;\n  }\n  uncacheClip(clip) {\n    const actions = this._actions, clipUuid = clip.uuid, actionsByClip = this._actionsByClip, actionsForClip = actionsByClip[clipUuid];\n    if (actionsForClip !== void 0) {\n      const actionsToRemove = actionsForClip.knownActions;\n      for (let i = 0, n = actionsToRemove.length; i !== n; ++i) {\n        const action = actionsToRemove[i];\n        this._deactivateAction(action);\n        const cacheIndex = action._cacheIndex, lastInactiveAction = actions[actions.length - 1];\n        action._cacheIndex = null;\n        action._byClipCacheIndex = null;\n        lastInactiveAction._cacheIndex = cacheIndex;\n        actions[cacheIndex] = lastInactiveAction;\n        actions.pop();\n        this._removeInactiveBindingsForAction(action);\n      }\n      delete actionsByClip[clipUuid];\n    }\n  }\n  uncacheRoot(root) {\n    const rootUuid = root.uuid, actionsByClip = this._actionsByClip;\n    for (const clipUuid in actionsByClip) {\n      const actionByRoot = actionsByClip[clipUuid].actionByRoot, action = actionByRoot[rootUuid];\n      if (action !== void 0) {\n        this._deactivateAction(action);\n        this._removeInactiveAction(action);\n      }\n    }\n    const bindingsByRoot = this._bindingsByRootAndName, bindingByName = bindingsByRoot[rootUuid];\n    if (bindingByName !== void 0) {\n      for (const trackName in bindingByName) {\n        const binding = bindingByName[trackName];\n        binding.restoreOriginalState();\n        this._removeInactiveBinding(binding);\n      }\n    }\n  }\n  uncacheAction(clip, optionalRoot) {\n    const action = this.existingAction(clip, optionalRoot);\n    if (action !== null) {\n      this._deactivateAction(action);\n      this._removeInactiveAction(action);\n    }\n  }\n}\nclass Uniform {\n  constructor(value) {\n    if (typeof value === \"string\") {\n      console.warn(\"THREE.Uniform: Type parameter is no longer needed.\");\n      value = arguments[1];\n    }\n    this.value = value;\n  }\n  clone() {\n    return new Uniform(this.value.clone === void 0 ? this.value : this.value.clone());\n  }\n}\nlet id = 0;\nclass UniformsGroup extends EventDispatcher {\n  constructor() {\n    super();\n    this.isUniformsGroup = true;\n    Object.defineProperty(this, \"id\", { value: id++ });\n    this.name = \"\";\n    this.usage = StaticDrawUsage;\n    this.uniforms = [];\n  }\n  add(uniform) {\n    this.uniforms.push(uniform);\n    return this;\n  }\n  remove(uniform) {\n    const index2 = this.uniforms.indexOf(uniform);\n    if (index2 !== -1)\n      this.uniforms.splice(index2, 1);\n    return this;\n  }\n  setName(name) {\n    this.name = name;\n    return this;\n  }\n  setUsage(value) {\n    this.usage = value;\n    return this;\n  }\n  dispose() {\n    this.dispatchEvent({ type: \"dispose\" });\n    return this;\n  }\n  copy(source) {\n    this.name = source.name;\n    this.usage = source.usage;\n    const uniformsSource = source.uniforms;\n    this.uniforms.length = 0;\n    for (let i = 0, l = uniformsSource.length; i < l; i++) {\n      this.uniforms.push(uniformsSource[i].clone());\n    }\n    return this;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nclass InstancedInterleavedBuffer extends InterleavedBuffer {\n  constructor(array, stride, meshPerAttribute = 1) {\n    super(array, stride);\n    this.isInstancedInterleavedBuffer = true;\n    this.meshPerAttribute = meshPerAttribute;\n  }\n  copy(source) {\n    super.copy(source);\n    this.meshPerAttribute = source.meshPerAttribute;\n    return this;\n  }\n  clone(data) {\n    const ib = super.clone(data);\n    ib.meshPerAttribute = this.meshPerAttribute;\n    return ib;\n  }\n  toJSON(data) {\n    const json = super.toJSON(data);\n    json.isInstancedInterleavedBuffer = true;\n    json.meshPerAttribute = this.meshPerAttribute;\n    return json;\n  }\n}\nclass GLBufferAttribute {\n  constructor(buffer, type, itemSize, elementSize, count) {\n    this.isGLBufferAttribute = true;\n    this.buffer = buffer;\n    this.type = type;\n    this.itemSize = itemSize;\n    this.elementSize = elementSize;\n    this.count = count;\n    this.version = 0;\n  }\n  set needsUpdate(value) {\n    if (value === true)\n      this.version++;\n  }\n  setBuffer(buffer) {\n    this.buffer = buffer;\n    return this;\n  }\n  setType(type, elementSize) {\n    this.type = type;\n    this.elementSize = elementSize;\n    return this;\n  }\n  setItemSize(itemSize) {\n    this.itemSize = itemSize;\n    return this;\n  }\n  setCount(count) {\n    this.count = count;\n    return this;\n  }\n}\nclass Raycaster {\n  constructor(origin, direction, near = 0, far = Infinity) {\n    this.ray = new Ray(origin, direction);\n    this.near = near;\n    this.far = far;\n    this.camera = null;\n    this.layers = new Layers();\n    this.params = {\n      Mesh: {},\n      Line: { threshold: 1 },\n      LOD: {},\n      Points: { threshold: 1 },\n      Sprite: {}\n    };\n  }\n  set(origin, direction) {\n    this.ray.set(origin, direction);\n  }\n  setFromCamera(coords, camera) {\n    if (camera.isPerspectiveCamera) {\n      this.ray.origin.setFromMatrixPosition(camera.matrixWorld);\n      this.ray.direction.set(coords.x, coords.y, 0.5).unproject(camera).sub(this.ray.origin).normalize();\n      this.camera = camera;\n    } else if (camera.isOrthographicCamera) {\n      this.ray.origin.set(coords.x, coords.y, (camera.near + camera.far) / (camera.near - camera.far)).unproject(camera);\n      this.ray.direction.set(0, 0, -1).transformDirection(camera.matrixWorld);\n      this.camera = camera;\n    } else {\n      console.error(\"THREE.Raycaster: Unsupported camera type: \" + camera.type);\n    }\n  }\n  intersectObject(object, recursive = true, intersects2 = []) {\n    intersectObject(object, this, intersects2, recursive);\n    intersects2.sort(ascSort);\n    return intersects2;\n  }\n  intersectObjects(objects, recursive = true, intersects2 = []) {\n    for (let i = 0, l = objects.length; i < l; i++) {\n      intersectObject(objects[i], this, intersects2, recursive);\n    }\n    intersects2.sort(ascSort);\n    return intersects2;\n  }\n}\nfunction ascSort(a, b) {\n  return a.distance - b.distance;\n}\nfunction intersectObject(object, raycaster, intersects2, recursive) {\n  if (object.layers.test(raycaster.layers)) {\n    object.raycast(raycaster, intersects2);\n  }\n  if (recursive === true) {\n    const children = object.children;\n    for (let i = 0, l = children.length; i < l; i++) {\n      intersectObject(children[i], raycaster, intersects2, true);\n    }\n  }\n}\nclass Spherical {\n  constructor(radius = 1, phi = 0, theta = 0) {\n    this.radius = radius;\n    this.phi = phi;\n    this.theta = theta;\n    return this;\n  }\n  set(radius, phi, theta) {\n    this.radius = radius;\n    this.phi = phi;\n    this.theta = theta;\n    return this;\n  }\n  copy(other) {\n    this.radius = other.radius;\n    this.phi = other.phi;\n    this.theta = other.theta;\n    return this;\n  }\n  makeSafe() {\n    const EPS = 1e-6;\n    this.phi = Math.max(EPS, Math.min(Math.PI - EPS, this.phi));\n    return this;\n  }\n  setFromVector3(v) {\n    return this.setFromCartesianCoords(v.x, v.y, v.z);\n  }\n  setFromCartesianCoords(x, y, z) {\n    this.radius = Math.sqrt(x * x + y * y + z * z);\n    if (this.radius === 0) {\n      this.theta = 0;\n      this.phi = 0;\n    } else {\n      this.theta = Math.atan2(x, z);\n      this.phi = Math.acos(clamp(y / this.radius, -1, 1));\n    }\n    return this;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nclass Cylindrical {\n  constructor(radius = 1, theta = 0, y = 0) {\n    this.radius = radius;\n    this.theta = theta;\n    this.y = y;\n    return this;\n  }\n  set(radius, theta, y) {\n    this.radius = radius;\n    this.theta = theta;\n    this.y = y;\n    return this;\n  }\n  copy(other) {\n    this.radius = other.radius;\n    this.theta = other.theta;\n    this.y = other.y;\n    return this;\n  }\n  setFromVector3(v) {\n    return this.setFromCartesianCoords(v.x, v.y, v.z);\n  }\n  setFromCartesianCoords(x, y, z) {\n    this.radius = Math.sqrt(x * x + z * z);\n    this.theta = Math.atan2(x, z);\n    this.y = y;\n    return this;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nconst _vector$4 = /* @__PURE__ */ new Vector2();\nclass Box2 {\n  constructor(min = new Vector2(Infinity, Infinity), max2 = new Vector2(-Infinity, -Infinity)) {\n    this.isBox2 = true;\n    this.min = min;\n    this.max = max2;\n  }\n  set(min, max2) {\n    this.min.copy(min);\n    this.max.copy(max2);\n    return this;\n  }\n  setFromPoints(points) {\n    this.makeEmpty();\n    for (let i = 0, il = points.length; i < il; i++) {\n      this.expandByPoint(points[i]);\n    }\n    return this;\n  }\n  setFromCenterAndSize(center, size) {\n    const halfSize = _vector$4.copy(size).multiplyScalar(0.5);\n    this.min.copy(center).sub(halfSize);\n    this.max.copy(center).add(halfSize);\n    return this;\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n  copy(box2) {\n    this.min.copy(box2.min);\n    this.max.copy(box2.max);\n    return this;\n  }\n  makeEmpty() {\n    this.min.x = this.min.y = Infinity;\n    this.max.x = this.max.y = -Infinity;\n    return this;\n  }\n  isEmpty() {\n    return this.max.x < this.min.x || this.max.y < this.min.y;\n  }\n  getCenter(target) {\n    return this.isEmpty() ? target.set(0, 0) : target.addVectors(this.min, this.max).multiplyScalar(0.5);\n  }\n  getSize(target) {\n    return this.isEmpty() ? target.set(0, 0) : target.subVectors(this.max, this.min);\n  }\n  expandByPoint(point) {\n    this.min.min(point);\n    this.max.max(point);\n    return this;\n  }\n  expandByVector(vector) {\n    this.min.sub(vector);\n    this.max.add(vector);\n    return this;\n  }\n  expandByScalar(scalar) {\n    this.min.addScalar(-scalar);\n    this.max.addScalar(scalar);\n    return this;\n  }\n  containsPoint(point) {\n    return point.x < this.min.x || point.x > this.max.x || point.y < this.min.y || point.y > this.max.y ? false : true;\n  }\n  containsBox(box2) {\n    return this.min.x <= box2.min.x && box2.max.x <= this.max.x && this.min.y <= box2.min.y && box2.max.y <= this.max.y;\n  }\n  getParameter(point, target) {\n    return target.set((point.x - this.min.x) / (this.max.x - this.min.x), (point.y - this.min.y) / (this.max.y - this.min.y));\n  }\n  intersectsBox(box2) {\n    return box2.max.x < this.min.x || box2.min.x > this.max.x || box2.max.y < this.min.y || box2.min.y > this.max.y ? false : true;\n  }\n  clampPoint(point, target) {\n    return target.copy(point).clamp(this.min, this.max);\n  }\n  distanceToPoint(point) {\n    const clampedPoint = _vector$4.copy(point).clamp(this.min, this.max);\n    return clampedPoint.sub(point).length();\n  }\n  intersect(box2) {\n    this.min.max(box2.min);\n    this.max.min(box2.max);\n    return this;\n  }\n  union(box2) {\n    this.min.min(box2.min);\n    this.max.max(box2.max);\n    return this;\n  }\n  translate(offset) {\n    this.min.add(offset);\n    this.max.add(offset);\n    return this;\n  }\n  equals(box2) {\n    return box2.min.equals(this.min) && box2.max.equals(this.max);\n  }\n}\nconst _startP = /* @__PURE__ */ new Vector3();\nconst _startEnd = /* @__PURE__ */ new Vector3();\nclass Line3 {\n  constructor(start = new Vector3(), end = new Vector3()) {\n    this.start = start;\n    this.end = end;\n  }\n  set(start, end) {\n    this.start.copy(start);\n    this.end.copy(end);\n    return this;\n  }\n  copy(line) {\n    this.start.copy(line.start);\n    this.end.copy(line.end);\n    return this;\n  }\n  getCenter(target) {\n    return target.addVectors(this.start, this.end).multiplyScalar(0.5);\n  }\n  delta(target) {\n    return target.subVectors(this.end, this.start);\n  }\n  distanceSq() {\n    return this.start.distanceToSquared(this.end);\n  }\n  distance() {\n    return this.start.distanceTo(this.end);\n  }\n  at(t, target) {\n    return this.delta(target).multiplyScalar(t).add(this.start);\n  }\n  closestPointToPointParameter(point, clampToLine) {\n    _startP.subVectors(point, this.start);\n    _startEnd.subVectors(this.end, this.start);\n    const startEnd2 = _startEnd.dot(_startEnd);\n    const startEnd_startP = _startEnd.dot(_startP);\n    let t = startEnd_startP / startEnd2;\n    if (clampToLine) {\n      t = clamp(t, 0, 1);\n    }\n    return t;\n  }\n  closestPointToPoint(point, clampToLine, target) {\n    const t = this.closestPointToPointParameter(point, clampToLine);\n    return this.delta(target).multiplyScalar(t).add(this.start);\n  }\n  applyMatrix4(matrix) {\n    this.start.applyMatrix4(matrix);\n    this.end.applyMatrix4(matrix);\n    return this;\n  }\n  equals(line) {\n    return line.start.equals(this.start) && line.end.equals(this.end);\n  }\n  clone() {\n    return new this.constructor().copy(this);\n  }\n}\nconst _vector$3 = /* @__PURE__ */ new Vector3();\nclass SpotLightHelper extends Object3D {\n  constructor(light, color) {\n    super();\n    this.light = light;\n    this.light.updateMatrixWorld();\n    this.matrix = light.matrixWorld;\n    this.matrixAutoUpdate = false;\n    this.color = color;\n    const geometry = new BufferGeometry();\n    const positions = [\n      0,\n      0,\n      0,\n      0,\n      0,\n      1,\n      0,\n      0,\n      0,\n      1,\n      0,\n      1,\n      0,\n      0,\n      0,\n      -1,\n      0,\n      1,\n      0,\n      0,\n      0,\n      0,\n      1,\n      1,\n      0,\n      0,\n      0,\n      0,\n      -1,\n      1\n    ];\n    for (let i = 0, j = 1, l = 32; i < l; i++, j++) {\n      const p1 = i / l * Math.PI * 2;\n      const p2 = j / l * Math.PI * 2;\n      positions.push(Math.cos(p1), Math.sin(p1), 1, Math.cos(p2), Math.sin(p2), 1);\n    }\n    geometry.setAttribute(\"position\", new Float32BufferAttribute(positions, 3));\n    const material = new LineBasicMaterial({ fog: false, toneMapped: false });\n    this.cone = new LineSegments(geometry, material);\n    this.add(this.cone);\n    this.update();\n  }\n  dispose() {\n    this.cone.geometry.dispose();\n    this.cone.material.dispose();\n  }\n  update() {\n    this.light.updateMatrixWorld();\n    const coneLength = this.light.distance ? this.light.distance : 1e3;\n    const coneWidth = coneLength * Math.tan(this.light.angle);\n    this.cone.scale.set(coneWidth, coneWidth, coneLength);\n    _vector$3.setFromMatrixPosition(this.light.target.matrixWorld);\n    this.cone.lookAt(_vector$3);\n    if (this.color !== void 0) {\n      this.cone.material.color.set(this.color);\n    } else {\n      this.cone.material.color.copy(this.light.color);\n    }\n  }\n}\nconst _vector$2 = /* @__PURE__ */ new Vector3();\nconst _boneMatrix = /* @__PURE__ */ new Matrix4();\nconst _matrixWorldInv = /* @__PURE__ */ new Matrix4();\nclass SkeletonHelper extends LineSegments {\n  constructor(object) {\n    const bones = getBoneList(object);\n    const geometry = new BufferGeometry();\n    const vertices = [];\n    const colors = [];\n    const color1 = new Color(0, 0, 1);\n    const color2 = new Color(0, 1, 0);\n    for (let i = 0; i < bones.length; i++) {\n      const bone = bones[i];\n      if (bone.parent && bone.parent.isBone) {\n        vertices.push(0, 0, 0);\n        vertices.push(0, 0, 0);\n        colors.push(color1.r, color1.g, color1.b);\n        colors.push(color2.r, color2.g, color2.b);\n      }\n    }\n    geometry.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    geometry.setAttribute(\"color\", new Float32BufferAttribute(colors, 3));\n    const material = new LineBasicMaterial({ vertexColors: true, depthTest: false, depthWrite: false, toneMapped: false, transparent: true });\n    super(geometry, material);\n    this.isSkeletonHelper = true;\n    this.type = \"SkeletonHelper\";\n    this.root = object;\n    this.bones = bones;\n    this.matrix = object.matrixWorld;\n    this.matrixAutoUpdate = false;\n  }\n  updateMatrixWorld(force) {\n    const bones = this.bones;\n    const geometry = this.geometry;\n    const position = geometry.getAttribute(\"position\");\n    _matrixWorldInv.copy(this.root.matrixWorld).invert();\n    for (let i = 0, j = 0; i < bones.length; i++) {\n      const bone = bones[i];\n      if (bone.parent && bone.parent.isBone) {\n        _boneMatrix.multiplyMatrices(_matrixWorldInv, bone.matrixWorld);\n        _vector$2.setFromMatrixPosition(_boneMatrix);\n        position.setXYZ(j, _vector$2.x, _vector$2.y, _vector$2.z);\n        _boneMatrix.multiplyMatrices(_matrixWorldInv, bone.parent.matrixWorld);\n        _vector$2.setFromMatrixPosition(_boneMatrix);\n        position.setXYZ(j + 1, _vector$2.x, _vector$2.y, _vector$2.z);\n        j += 2;\n      }\n    }\n    geometry.getAttribute(\"position\").needsUpdate = true;\n    super.updateMatrixWorld(force);\n  }\n}\nfunction getBoneList(object) {\n  const boneList = [];\n  if (object.isBone === true) {\n    boneList.push(object);\n  }\n  for (let i = 0; i < object.children.length; i++) {\n    boneList.push.apply(boneList, getBoneList(object.children[i]));\n  }\n  return boneList;\n}\nclass PointLightHelper extends Mesh {\n  constructor(light, sphereSize, color) {\n    const geometry = new SphereGeometry(sphereSize, 4, 2);\n    const material = new MeshBasicMaterial({ wireframe: true, fog: false, toneMapped: false });\n    super(geometry, material);\n    this.light = light;\n    this.light.updateMatrixWorld();\n    this.color = color;\n    this.type = \"PointLightHelper\";\n    this.matrix = this.light.matrixWorld;\n    this.matrixAutoUpdate = false;\n    this.update();\n  }\n  dispose() {\n    this.geometry.dispose();\n    this.material.dispose();\n  }\n  update() {\n    if (this.color !== void 0) {\n      this.material.color.set(this.color);\n    } else {\n      this.material.color.copy(this.light.color);\n    }\n  }\n}\nconst _vector$1 = /* @__PURE__ */ new Vector3();\nconst _color1 = /* @__PURE__ */ new Color();\nconst _color2 = /* @__PURE__ */ new Color();\nclass HemisphereLightHelper extends Object3D {\n  constructor(light, size, color) {\n    super();\n    this.light = light;\n    this.light.updateMatrixWorld();\n    this.matrix = light.matrixWorld;\n    this.matrixAutoUpdate = false;\n    this.color = color;\n    const geometry = new OctahedronGeometry(size);\n    geometry.rotateY(Math.PI * 0.5);\n    this.material = new MeshBasicMaterial({ wireframe: true, fog: false, toneMapped: false });\n    if (this.color === void 0)\n      this.material.vertexColors = true;\n    const position = geometry.getAttribute(\"position\");\n    const colors = new Float32Array(position.count * 3);\n    geometry.setAttribute(\"color\", new BufferAttribute(colors, 3));\n    this.add(new Mesh(geometry, this.material));\n    this.update();\n  }\n  dispose() {\n    this.children[0].geometry.dispose();\n    this.children[0].material.dispose();\n  }\n  update() {\n    const mesh = this.children[0];\n    if (this.color !== void 0) {\n      this.material.color.set(this.color);\n    } else {\n      const colors = mesh.geometry.getAttribute(\"color\");\n      _color1.copy(this.light.color);\n      _color2.copy(this.light.groundColor);\n      for (let i = 0, l = colors.count; i < l; i++) {\n        const color = i < l / 2 ? _color1 : _color2;\n        colors.setXYZ(i, color.r, color.g, color.b);\n      }\n      colors.needsUpdate = true;\n    }\n    mesh.lookAt(_vector$1.setFromMatrixPosition(this.light.matrixWorld).negate());\n  }\n}\nclass GridHelper extends LineSegments {\n  constructor(size = 10, divisions = 10, color1 = 4473924, color2 = 8947848) {\n    color1 = new Color(color1);\n    color2 = new Color(color2);\n    const center = divisions / 2;\n    const step = size / divisions;\n    const halfSize = size / 2;\n    const vertices = [], colors = [];\n    for (let i = 0, j = 0, k = -halfSize; i <= divisions; i++, k += step) {\n      vertices.push(-halfSize, 0, k, halfSize, 0, k);\n      vertices.push(k, 0, -halfSize, k, 0, halfSize);\n      const color = i === center ? color1 : color2;\n      color.toArray(colors, j);\n      j += 3;\n      color.toArray(colors, j);\n      j += 3;\n      color.toArray(colors, j);\n      j += 3;\n      color.toArray(colors, j);\n      j += 3;\n    }\n    const geometry = new BufferGeometry();\n    geometry.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    geometry.setAttribute(\"color\", new Float32BufferAttribute(colors, 3));\n    const material = new LineBasicMaterial({ vertexColors: true, toneMapped: false });\n    super(geometry, material);\n    this.type = \"GridHelper\";\n  }\n}\nclass PolarGridHelper extends LineSegments {\n  constructor(radius = 10, radials = 16, circles = 8, divisions = 64, color1 = 4473924, color2 = 8947848) {\n    color1 = new Color(color1);\n    color2 = new Color(color2);\n    const vertices = [];\n    const colors = [];\n    for (let i = 0; i <= radials; i++) {\n      const v = i / radials * (Math.PI * 2);\n      const x = Math.sin(v) * radius;\n      const z = Math.cos(v) * radius;\n      vertices.push(0, 0, 0);\n      vertices.push(x, 0, z);\n      const color = i & 1 ? color1 : color2;\n      colors.push(color.r, color.g, color.b);\n      colors.push(color.r, color.g, color.b);\n    }\n    for (let i = 0; i <= circles; i++) {\n      const color = i & 1 ? color1 : color2;\n      const r = radius - radius / circles * i;\n      for (let j = 0; j < divisions; j++) {\n        let v = j / divisions * (Math.PI * 2);\n        let x = Math.sin(v) * r;\n        let z = Math.cos(v) * r;\n        vertices.push(x, 0, z);\n        colors.push(color.r, color.g, color.b);\n        v = (j + 1) / divisions * (Math.PI * 2);\n        x = Math.sin(v) * r;\n        z = Math.cos(v) * r;\n        vertices.push(x, 0, z);\n        colors.push(color.r, color.g, color.b);\n      }\n    }\n    const geometry = new BufferGeometry();\n    geometry.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    geometry.setAttribute(\"color\", new Float32BufferAttribute(colors, 3));\n    const material = new LineBasicMaterial({ vertexColors: true, toneMapped: false });\n    super(geometry, material);\n    this.type = \"PolarGridHelper\";\n  }\n}\nconst _v1 = /* @__PURE__ */ new Vector3();\nconst _v2 = /* @__PURE__ */ new Vector3();\nconst _v3 = /* @__PURE__ */ new Vector3();\nclass DirectionalLightHelper extends Object3D {\n  constructor(light, size, color) {\n    super();\n    this.light = light;\n    this.light.updateMatrixWorld();\n    this.matrix = light.matrixWorld;\n    this.matrixAutoUpdate = false;\n    this.color = color;\n    if (size === void 0)\n      size = 1;\n    let geometry = new BufferGeometry();\n    geometry.setAttribute(\"position\", new Float32BufferAttribute([\n      -size,\n      size,\n      0,\n      size,\n      size,\n      0,\n      size,\n      -size,\n      0,\n      -size,\n      -size,\n      0,\n      -size,\n      size,\n      0\n    ], 3));\n    const material = new LineBasicMaterial({ fog: false, toneMapped: false });\n    this.lightPlane = new Line(geometry, material);\n    this.add(this.lightPlane);\n    geometry = new BufferGeometry();\n    geometry.setAttribute(\"position\", new Float32BufferAttribute([0, 0, 0, 0, 0, 1], 3));\n    this.targetLine = new Line(geometry, material);\n    this.add(this.targetLine);\n    this.update();\n  }\n  dispose() {\n    this.lightPlane.geometry.dispose();\n    this.lightPlane.material.dispose();\n    this.targetLine.geometry.dispose();\n    this.targetLine.material.dispose();\n  }\n  update() {\n    _v1.setFromMatrixPosition(this.light.matrixWorld);\n    _v2.setFromMatrixPosition(this.light.target.matrixWorld);\n    _v3.subVectors(_v2, _v1);\n    this.lightPlane.lookAt(_v2);\n    if (this.color !== void 0) {\n      this.lightPlane.material.color.set(this.color);\n      this.targetLine.material.color.set(this.color);\n    } else {\n      this.lightPlane.material.color.copy(this.light.color);\n      this.targetLine.material.color.copy(this.light.color);\n    }\n    this.targetLine.lookAt(_v2);\n    this.targetLine.scale.z = _v3.length();\n  }\n}\nconst _vector = /* @__PURE__ */ new Vector3();\nconst _camera = /* @__PURE__ */ new Camera();\nclass CameraHelper extends LineSegments {\n  constructor(camera) {\n    const geometry = new BufferGeometry();\n    const material = new LineBasicMaterial({ color: 16777215, vertexColors: true, toneMapped: false });\n    const vertices = [];\n    const colors = [];\n    const pointMap = {};\n    addLine(\"n1\", \"n2\");\n    addLine(\"n2\", \"n4\");\n    addLine(\"n4\", \"n3\");\n    addLine(\"n3\", \"n1\");\n    addLine(\"f1\", \"f2\");\n    addLine(\"f2\", \"f4\");\n    addLine(\"f4\", \"f3\");\n    addLine(\"f3\", \"f1\");\n    addLine(\"n1\", \"f1\");\n    addLine(\"n2\", \"f2\");\n    addLine(\"n3\", \"f3\");\n    addLine(\"n4\", \"f4\");\n    addLine(\"p\", \"n1\");\n    addLine(\"p\", \"n2\");\n    addLine(\"p\", \"n3\");\n    addLine(\"p\", \"n4\");\n    addLine(\"u1\", \"u2\");\n    addLine(\"u2\", \"u3\");\n    addLine(\"u3\", \"u1\");\n    addLine(\"c\", \"t\");\n    addLine(\"p\", \"c\");\n    addLine(\"cn1\", \"cn2\");\n    addLine(\"cn3\", \"cn4\");\n    addLine(\"cf1\", \"cf2\");\n    addLine(\"cf3\", \"cf4\");\n    function addLine(a, b) {\n      addPoint(a);\n      addPoint(b);\n    }\n    function addPoint(id2) {\n      vertices.push(0, 0, 0);\n      colors.push(0, 0, 0);\n      if (pointMap[id2] === void 0) {\n        pointMap[id2] = [];\n      }\n      pointMap[id2].push(vertices.length / 3 - 1);\n    }\n    geometry.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    geometry.setAttribute(\"color\", new Float32BufferAttribute(colors, 3));\n    super(geometry, material);\n    this.type = \"CameraHelper\";\n    this.camera = camera;\n    if (this.camera.updateProjectionMatrix)\n      this.camera.updateProjectionMatrix();\n    this.matrix = camera.matrixWorld;\n    this.matrixAutoUpdate = false;\n    this.pointMap = pointMap;\n    this.update();\n    const colorFrustum = new Color(16755200);\n    const colorCone = new Color(16711680);\n    const colorUp = new Color(43775);\n    const colorTarget = new Color(16777215);\n    const colorCross = new Color(3355443);\n    this.setColors(colorFrustum, colorCone, colorUp, colorTarget, colorCross);\n  }\n  setColors(frustum, cone, up, target, cross) {\n    const geometry = this.geometry;\n    const colorAttribute = geometry.getAttribute(\"color\");\n    colorAttribute.setXYZ(0, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(1, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(2, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(3, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(4, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(5, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(6, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(7, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(8, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(9, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(10, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(11, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(12, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(13, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(14, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(15, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(16, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(17, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(18, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(19, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(20, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(21, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(22, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(23, frustum.r, frustum.g, frustum.b);\n    colorAttribute.setXYZ(24, cone.r, cone.g, cone.b);\n    colorAttribute.setXYZ(25, cone.r, cone.g, cone.b);\n    colorAttribute.setXYZ(26, cone.r, cone.g, cone.b);\n    colorAttribute.setXYZ(27, cone.r, cone.g, cone.b);\n    colorAttribute.setXYZ(28, cone.r, cone.g, cone.b);\n    colorAttribute.setXYZ(29, cone.r, cone.g, cone.b);\n    colorAttribute.setXYZ(30, cone.r, cone.g, cone.b);\n    colorAttribute.setXYZ(31, cone.r, cone.g, cone.b);\n    colorAttribute.setXYZ(32, up.r, up.g, up.b);\n    colorAttribute.setXYZ(33, up.r, up.g, up.b);\n    colorAttribute.setXYZ(34, up.r, up.g, up.b);\n    colorAttribute.setXYZ(35, up.r, up.g, up.b);\n    colorAttribute.setXYZ(36, up.r, up.g, up.b);\n    colorAttribute.setXYZ(37, up.r, up.g, up.b);\n    colorAttribute.setXYZ(38, target.r, target.g, target.b);\n    colorAttribute.setXYZ(39, target.r, target.g, target.b);\n    colorAttribute.setXYZ(40, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(41, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(42, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(43, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(44, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(45, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(46, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(47, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(48, cross.r, cross.g, cross.b);\n    colorAttribute.setXYZ(49, cross.r, cross.g, cross.b);\n    colorAttribute.needsUpdate = true;\n  }\n  update() {\n    const geometry = this.geometry;\n    const pointMap = this.pointMap;\n    const w = 1, h = 1;\n    _camera.projectionMatrixInverse.copy(this.camera.projectionMatrixInverse);\n    setPoint(\"c\", pointMap, geometry, _camera, 0, 0, -1);\n    setPoint(\"t\", pointMap, geometry, _camera, 0, 0, 1);\n    setPoint(\"n1\", pointMap, geometry, _camera, -w, -h, -1);\n    setPoint(\"n2\", pointMap, geometry, _camera, w, -h, -1);\n    setPoint(\"n3\", pointMap, geometry, _camera, -w, h, -1);\n    setPoint(\"n4\", pointMap, geometry, _camera, w, h, -1);\n    setPoint(\"f1\", pointMap, geometry, _camera, -w, -h, 1);\n    setPoint(\"f2\", pointMap, geometry, _camera, w, -h, 1);\n    setPoint(\"f3\", pointMap, geometry, _camera, -w, h, 1);\n    setPoint(\"f4\", pointMap, geometry, _camera, w, h, 1);\n    setPoint(\"u1\", pointMap, geometry, _camera, w * 0.7, h * 1.1, -1);\n    setPoint(\"u2\", pointMap, geometry, _camera, -w * 0.7, h * 1.1, -1);\n    setPoint(\"u3\", pointMap, geometry, _camera, 0, h * 2, -1);\n    setPoint(\"cf1\", pointMap, geometry, _camera, -w, 0, 1);\n    setPoint(\"cf2\", pointMap, geometry, _camera, w, 0, 1);\n    setPoint(\"cf3\", pointMap, geometry, _camera, 0, -h, 1);\n    setPoint(\"cf4\", pointMap, geometry, _camera, 0, h, 1);\n    setPoint(\"cn1\", pointMap, geometry, _camera, -w, 0, -1);\n    setPoint(\"cn2\", pointMap, geometry, _camera, w, 0, -1);\n    setPoint(\"cn3\", pointMap, geometry, _camera, 0, -h, -1);\n    setPoint(\"cn4\", pointMap, geometry, _camera, 0, h, -1);\n    geometry.getAttribute(\"position\").needsUpdate = true;\n  }\n  dispose() {\n    this.geometry.dispose();\n    this.material.dispose();\n  }\n}\nfunction setPoint(point, pointMap, geometry, camera, x, y, z) {\n  _vector.set(x, y, z).unproject(camera);\n  const points = pointMap[point];\n  if (points !== void 0) {\n    const position = geometry.getAttribute(\"position\");\n    for (let i = 0, l = points.length; i < l; i++) {\n      position.setXYZ(points[i], _vector.x, _vector.y, _vector.z);\n    }\n  }\n}\nconst _box = /* @__PURE__ */ new Box3();\nclass BoxHelper extends LineSegments {\n  constructor(object, color = 16776960) {\n    const indices = new Uint16Array([0, 1, 1, 2, 2, 3, 3, 0, 4, 5, 5, 6, 6, 7, 7, 4, 0, 4, 1, 5, 2, 6, 3, 7]);\n    const positions = new Float32Array(8 * 3);\n    const geometry = new BufferGeometry();\n    geometry.setIndex(new BufferAttribute(indices, 1));\n    geometry.setAttribute(\"position\", new BufferAttribute(positions, 3));\n    super(geometry, new LineBasicMaterial({ color, toneMapped: false }));\n    this.object = object;\n    this.type = \"BoxHelper\";\n    this.matrixAutoUpdate = false;\n    this.update();\n  }\n  update(object) {\n    if (object !== void 0) {\n      console.warn(\"THREE.BoxHelper: .update() has no longer arguments.\");\n    }\n    if (this.object !== void 0) {\n      _box.setFromObject(this.object);\n    }\n    if (_box.isEmpty())\n      return;\n    const min = _box.min;\n    const max2 = _box.max;\n    const position = this.geometry.attributes.position;\n    const array = position.array;\n    array[0] = max2.x;\n    array[1] = max2.y;\n    array[2] = max2.z;\n    array[3] = min.x;\n    array[4] = max2.y;\n    array[5] = max2.z;\n    array[6] = min.x;\n    array[7] = min.y;\n    array[8] = max2.z;\n    array[9] = max2.x;\n    array[10] = min.y;\n    array[11] = max2.z;\n    array[12] = max2.x;\n    array[13] = max2.y;\n    array[14] = min.z;\n    array[15] = min.x;\n    array[16] = max2.y;\n    array[17] = min.z;\n    array[18] = min.x;\n    array[19] = min.y;\n    array[20] = min.z;\n    array[21] = max2.x;\n    array[22] = min.y;\n    array[23] = min.z;\n    position.needsUpdate = true;\n    this.geometry.computeBoundingSphere();\n  }\n  setFromObject(object) {\n    this.object = object;\n    this.update();\n    return this;\n  }\n  copy(source, recursive) {\n    super.copy(source, recursive);\n    this.object = source.object;\n    return this;\n  }\n}\nclass Box3Helper extends LineSegments {\n  constructor(box2, color = 16776960) {\n    const indices = new Uint16Array([0, 1, 1, 2, 2, 3, 3, 0, 4, 5, 5, 6, 6, 7, 7, 4, 0, 4, 1, 5, 2, 6, 3, 7]);\n    const positions = [1, 1, 1, -1, 1, 1, -1, -1, 1, 1, -1, 1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1];\n    const geometry = new BufferGeometry();\n    geometry.setIndex(new BufferAttribute(indices, 1));\n    geometry.setAttribute(\"position\", new Float32BufferAttribute(positions, 3));\n    super(geometry, new LineBasicMaterial({ color, toneMapped: false }));\n    this.box = box2;\n    this.type = \"Box3Helper\";\n    this.geometry.computeBoundingSphere();\n  }\n  updateMatrixWorld(force) {\n    const box2 = this.box;\n    if (box2.isEmpty())\n      return;\n    box2.getCenter(this.position);\n    box2.getSize(this.scale);\n    this.scale.multiplyScalar(0.5);\n    super.updateMatrixWorld(force);\n  }\n}\nclass PlaneHelper extends Line {\n  constructor(plane, size = 1, hex = 16776960) {\n    const color = hex;\n    const positions = [1, -1, 0, -1, 1, 0, -1, -1, 0, 1, 1, 0, -1, 1, 0, -1, -1, 0, 1, -1, 0, 1, 1, 0];\n    const geometry = new BufferGeometry();\n    geometry.setAttribute(\"position\", new Float32BufferAttribute(positions, 3));\n    geometry.computeBoundingSphere();\n    super(geometry, new LineBasicMaterial({ color, toneMapped: false }));\n    this.type = \"PlaneHelper\";\n    this.plane = plane;\n    this.size = size;\n    const positions2 = [1, 1, 0, -1, 1, 0, -1, -1, 0, 1, 1, 0, -1, -1, 0, 1, -1, 0];\n    const geometry2 = new BufferGeometry();\n    geometry2.setAttribute(\"position\", new Float32BufferAttribute(positions2, 3));\n    geometry2.computeBoundingSphere();\n    this.add(new Mesh(geometry2, new MeshBasicMaterial({ color, opacity: 0.2, transparent: true, depthWrite: false, toneMapped: false })));\n  }\n  updateMatrixWorld(force) {\n    this.position.set(0, 0, 0);\n    this.scale.set(0.5 * this.size, 0.5 * this.size, 1);\n    this.lookAt(this.plane.normal);\n    this.translateZ(-this.plane.constant);\n    super.updateMatrixWorld(force);\n  }\n}\nconst _axis = /* @__PURE__ */ new Vector3();\nlet _lineGeometry, _coneGeometry;\nclass ArrowHelper extends Object3D {\n  constructor(dir = new Vector3(0, 0, 1), origin = new Vector3(0, 0, 0), length = 1, color = 16776960, headLength = length * 0.2, headWidth = headLength * 0.2) {\n    super();\n    this.type = \"ArrowHelper\";\n    if (_lineGeometry === void 0) {\n      _lineGeometry = new BufferGeometry();\n      _lineGeometry.setAttribute(\"position\", new Float32BufferAttribute([0, 0, 0, 0, 1, 0], 3));\n      _coneGeometry = new CylinderGeometry(0, 0.5, 1, 5, 1);\n      _coneGeometry.translate(0, -0.5, 0);\n    }\n    this.position.copy(origin);\n    this.line = new Line(_lineGeometry, new LineBasicMaterial({ color, toneMapped: false }));\n    this.line.matrixAutoUpdate = false;\n    this.add(this.line);\n    this.cone = new Mesh(_coneGeometry, new MeshBasicMaterial({ color, toneMapped: false }));\n    this.cone.matrixAutoUpdate = false;\n    this.add(this.cone);\n    this.setDirection(dir);\n    this.setLength(length, headLength, headWidth);\n  }\n  setDirection(dir) {\n    if (dir.y > 0.99999) {\n      this.quaternion.set(0, 0, 0, 1);\n    } else if (dir.y < -0.99999) {\n      this.quaternion.set(1, 0, 0, 0);\n    } else {\n      _axis.set(dir.z, 0, -dir.x).normalize();\n      const radians = Math.acos(dir.y);\n      this.quaternion.setFromAxisAngle(_axis, radians);\n    }\n  }\n  setLength(length, headLength = length * 0.2, headWidth = headLength * 0.2) {\n    this.line.scale.set(1, Math.max(1e-4, length - headLength), 1);\n    this.line.updateMatrix();\n    this.cone.scale.set(headWidth, headLength, headWidth);\n    this.cone.position.y = length;\n    this.cone.updateMatrix();\n  }\n  setColor(color) {\n    this.line.material.color.set(color);\n    this.cone.material.color.set(color);\n  }\n  copy(source) {\n    super.copy(source, false);\n    this.line.copy(source.line);\n    this.cone.copy(source.cone);\n    return this;\n  }\n}\nclass AxesHelper extends LineSegments {\n  constructor(size = 1) {\n    const vertices = [\n      0,\n      0,\n      0,\n      size,\n      0,\n      0,\n      0,\n      0,\n      0,\n      0,\n      size,\n      0,\n      0,\n      0,\n      0,\n      0,\n      0,\n      size\n    ];\n    const colors = [\n      1,\n      0,\n      0,\n      1,\n      0.6,\n      0,\n      0,\n      1,\n      0,\n      0.6,\n      1,\n      0,\n      0,\n      0,\n      1,\n      0,\n      0.6,\n      1\n    ];\n    const geometry = new BufferGeometry();\n    geometry.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n    geometry.setAttribute(\"color\", new Float32BufferAttribute(colors, 3));\n    const material = new LineBasicMaterial({ vertexColors: true, toneMapped: false });\n    super(geometry, material);\n    this.type = \"AxesHelper\";\n  }\n  setColors(xAxisColor, yAxisColor, zAxisColor) {\n    const color = new Color();\n    const array = this.geometry.attributes.color.array;\n    color.set(xAxisColor);\n    color.toArray(array, 0);\n    color.toArray(array, 3);\n    color.set(yAxisColor);\n    color.toArray(array, 6);\n    color.toArray(array, 9);\n    color.set(zAxisColor);\n    color.toArray(array, 12);\n    color.toArray(array, 15);\n    this.geometry.attributes.color.needsUpdate = true;\n    return this;\n  }\n  dispose() {\n    this.geometry.dispose();\n    this.material.dispose();\n  }\n}\nclass ShapePath {\n  constructor() {\n    this.type = \"ShapePath\";\n    this.color = new Color();\n    this.subPaths = [];\n    this.currentPath = null;\n  }\n  moveTo(x, y) {\n    this.currentPath = new Path();\n    this.subPaths.push(this.currentPath);\n    this.currentPath.moveTo(x, y);\n    return this;\n  }\n  lineTo(x, y) {\n    this.currentPath.lineTo(x, y);\n    return this;\n  }\n  quadraticCurveTo(aCPx, aCPy, aX, aY) {\n    this.currentPath.quadraticCurveTo(aCPx, aCPy, aX, aY);\n    return this;\n  }\n  bezierCurveTo(aCP1x, aCP1y, aCP2x, aCP2y, aX, aY) {\n    this.currentPath.bezierCurveTo(aCP1x, aCP1y, aCP2x, aCP2y, aX, aY);\n    return this;\n  }\n  splineThru(pts) {\n    this.currentPath.splineThru(pts);\n    return this;\n  }\n  toShapes(isCCW, noHoles) {\n    function toShapesNoHoles(inSubpaths) {\n      const shapes2 = [];\n      for (let i = 0, l = inSubpaths.length; i < l; i++) {\n        const tmpPath2 = inSubpaths[i];\n        const tmpShape2 = new Shape();\n        tmpShape2.curves = tmpPath2.curves;\n        shapes2.push(tmpShape2);\n      }\n      return shapes2;\n    }\n    function isPointInsidePolygon(inPt, inPolygon) {\n      const polyLen = inPolygon.length;\n      let inside = false;\n      for (let p = polyLen - 1, q = 0; q < polyLen; p = q++) {\n        let edgeLowPt = inPolygon[p];\n        let edgeHighPt = inPolygon[q];\n        let edgeDx = edgeHighPt.x - edgeLowPt.x;\n        let edgeDy = edgeHighPt.y - edgeLowPt.y;\n        if (Math.abs(edgeDy) > Number.EPSILON) {\n          if (edgeDy < 0) {\n            edgeLowPt = inPolygon[q];\n            edgeDx = -edgeDx;\n            edgeHighPt = inPolygon[p];\n            edgeDy = -edgeDy;\n          }\n          if (inPt.y < edgeLowPt.y || inPt.y > edgeHighPt.y)\n            continue;\n          if (inPt.y === edgeLowPt.y) {\n            if (inPt.x === edgeLowPt.x)\n              return true;\n          } else {\n            const perpEdge = edgeDy * (inPt.x - edgeLowPt.x) - edgeDx * (inPt.y - edgeLowPt.y);\n            if (perpEdge === 0)\n              return true;\n            if (perpEdge < 0)\n              continue;\n            inside = !inside;\n          }\n        } else {\n          if (inPt.y !== edgeLowPt.y)\n            continue;\n          if (edgeHighPt.x <= inPt.x && inPt.x <= edgeLowPt.x || edgeLowPt.x <= inPt.x && inPt.x <= edgeHighPt.x)\n            return true;\n        }\n      }\n      return inside;\n    }\n    const isClockWise = ShapeUtils.isClockWise;\n    const subPaths = this.subPaths;\n    if (subPaths.length === 0)\n      return [];\n    if (noHoles === true)\n      return toShapesNoHoles(subPaths);\n    let solid, tmpPath, tmpShape;\n    const shapes = [];\n    if (subPaths.length === 1) {\n      tmpPath = subPaths[0];\n      tmpShape = new Shape();\n      tmpShape.curves = tmpPath.curves;\n      shapes.push(tmpShape);\n      return shapes;\n    }\n    let holesFirst = !isClockWise(subPaths[0].getPoints());\n    holesFirst = isCCW ? !holesFirst : holesFirst;\n    const betterShapeHoles = [];\n    const newShapes = [];\n    let newShapeHoles = [];\n    let mainIdx = 0;\n    let tmpPoints;\n    newShapes[mainIdx] = void 0;\n    newShapeHoles[mainIdx] = [];\n    for (let i = 0, l = subPaths.length; i < l; i++) {\n      tmpPath = subPaths[i];\n      tmpPoints = tmpPath.getPoints();\n      solid = isClockWise(tmpPoints);\n      solid = isCCW ? !solid : solid;\n      if (solid) {\n        if (!holesFirst && newShapes[mainIdx])\n          mainIdx++;\n        newShapes[mainIdx] = { s: new Shape(), p: tmpPoints };\n        newShapes[mainIdx].s.curves = tmpPath.curves;\n        if (holesFirst)\n          mainIdx++;\n        newShapeHoles[mainIdx] = [];\n      } else {\n        newShapeHoles[mainIdx].push({ h: tmpPath, p: tmpPoints[0] });\n      }\n    }\n    if (!newShapes[0])\n      return toShapesNoHoles(subPaths);\n    if (newShapes.length > 1) {\n      let ambiguous = false;\n      let toChange = 0;\n      for (let sIdx = 0, sLen = newShapes.length; sIdx < sLen; sIdx++) {\n        betterShapeHoles[sIdx] = [];\n      }\n      for (let sIdx = 0, sLen = newShapes.length; sIdx < sLen; sIdx++) {\n        const sho = newShapeHoles[sIdx];\n        for (let hIdx = 0; hIdx < sho.length; hIdx++) {\n          const ho = sho[hIdx];\n          let hole_unassigned = true;\n          for (let s2Idx = 0; s2Idx < newShapes.length; s2Idx++) {\n            if (isPointInsidePolygon(ho.p, newShapes[s2Idx].p)) {\n              if (sIdx !== s2Idx)\n                toChange++;\n              if (hole_unassigned) {\n                hole_unassigned = false;\n                betterShapeHoles[s2Idx].push(ho);\n              } else {\n                ambiguous = true;\n              }\n            }\n          }\n          if (hole_unassigned) {\n            betterShapeHoles[sIdx].push(ho);\n          }\n        }\n      }\n      if (toChange > 0 && ambiguous === false) {\n        newShapeHoles = betterShapeHoles;\n      }\n    }\n    let tmpHoles;\n    for (let i = 0, il = newShapes.length; i < il; i++) {\n      tmpShape = newShapes[i].s;\n      shapes.push(tmpShape);\n      tmpHoles = newShapeHoles[i];\n      for (let j = 0, jl = tmpHoles.length; j < jl; j++) {\n        tmpShape.holes.push(tmpHoles[j].h);\n      }\n    }\n    return shapes;\n  }\n}\nconst _tables = /* @__PURE__ */ _generateTables();\nfunction _generateTables() {\n  const buffer = new ArrayBuffer(4);\n  const floatView = new Float32Array(buffer);\n  const uint32View = new Uint32Array(buffer);\n  const baseTable = new Uint32Array(512);\n  const shiftTable = new Uint32Array(512);\n  for (let i = 0; i < 256; ++i) {\n    const e = i - 127;\n    if (e < -27) {\n      baseTable[i] = 0;\n      baseTable[i | 256] = 32768;\n      shiftTable[i] = 24;\n      shiftTable[i | 256] = 24;\n    } else if (e < -14) {\n      baseTable[i] = 1024 >> -e - 14;\n      baseTable[i | 256] = 1024 >> -e - 14 | 32768;\n      shiftTable[i] = -e - 1;\n      shiftTable[i | 256] = -e - 1;\n    } else if (e <= 15) {\n      baseTable[i] = e + 15 << 10;\n      baseTable[i | 256] = e + 15 << 10 | 32768;\n      shiftTable[i] = 13;\n      shiftTable[i | 256] = 13;\n    } else if (e < 128) {\n      baseTable[i] = 31744;\n      baseTable[i | 256] = 64512;\n      shiftTable[i] = 24;\n      shiftTable[i | 256] = 24;\n    } else {\n      baseTable[i] = 31744;\n      baseTable[i | 256] = 64512;\n      shiftTable[i] = 13;\n      shiftTable[i | 256] = 13;\n    }\n  }\n  const mantissaTable = new Uint32Array(2048);\n  const exponentTable = new Uint32Array(64);\n  const offsetTable = new Uint32Array(64);\n  for (let i = 1; i < 1024; ++i) {\n    let m = i << 13;\n    let e = 0;\n    while ((m & 8388608) === 0) {\n      m <<= 1;\n      e -= 8388608;\n    }\n    m &= ~8388608;\n    e += 947912704;\n    mantissaTable[i] = m | e;\n  }\n  for (let i = 1024; i < 2048; ++i) {\n    mantissaTable[i] = 939524096 + (i - 1024 << 13);\n  }\n  for (let i = 1; i < 31; ++i) {\n    exponentTable[i] = i << 23;\n  }\n  exponentTable[31] = 1199570944;\n  exponentTable[32] = 2147483648;\n  for (let i = 33; i < 63; ++i) {\n    exponentTable[i] = 2147483648 + (i - 32 << 23);\n  }\n  exponentTable[63] = 3347054592;\n  for (let i = 1; i < 64; ++i) {\n    if (i !== 32) {\n      offsetTable[i] = 1024;\n    }\n  }\n  return {\n    floatView,\n    uint32View,\n    baseTable,\n    shiftTable,\n    mantissaTable,\n    exponentTable,\n    offsetTable\n  };\n}\nfunction toHalfFloat(val) {\n  if (Math.abs(val) > 65504)\n    console.warn(\"THREE.DataUtils.toHalfFloat(): Value out of range.\");\n  val = clamp(val, -65504, 65504);\n  _tables.floatView[0] = val;\n  const f = _tables.uint32View[0];\n  const e = f >> 23 & 511;\n  return _tables.baseTable[e] + ((f & 8388607) >> _tables.shiftTable[e]);\n}\nfunction fromHalfFloat(val) {\n  const m = val >> 10;\n  _tables.uint32View[0] = _tables.mantissaTable[_tables.offsetTable[m] + (val & 1023)] + _tables.exponentTable[m];\n  return _tables.floatView[0];\n}\nvar DataUtils = /* @__PURE__ */ Object.freeze({\n  __proto__: null,\n  toHalfFloat,\n  fromHalfFloat\n});\nclass ParametricGeometry extends BufferGeometry {\n  constructor() {\n    console.error(\"THREE.ParametricGeometry has been moved to /examples/jsm/geometries/ParametricGeometry.js\");\n    super();\n  }\n}\nclass TextGeometry extends BufferGeometry {\n  constructor() {\n    console.error(\"THREE.TextGeometry has been moved to /examples/jsm/geometries/TextGeometry.js\");\n    super();\n  }\n}\nfunction FontLoader() {\n  console.error(\"THREE.FontLoader has been moved to /examples/jsm/loaders/FontLoader.js\");\n}\nfunction Font() {\n  console.error(\"THREE.Font has been moved to /examples/jsm/loaders/FontLoader.js\");\n}\nfunction ImmediateRenderObject() {\n  console.error(\"THREE.ImmediateRenderObject has been removed.\");\n}\nclass WebGLMultisampleRenderTarget extends WebGLRenderTarget {\n  constructor(width, height, options) {\n    console.error('THREE.WebGLMultisampleRenderTarget has been removed. Use a normal render target and set the \"samples\" property to greater 0 to enable multisampling.');\n    super(width, height, options);\n    this.samples = 4;\n  }\n}\nclass DataTexture2DArray extends DataArrayTexture {\n  constructor(data, width, height, depth) {\n    console.warn(\"THREE.DataTexture2DArray has been renamed to DataArrayTexture.\");\n    super(data, width, height, depth);\n  }\n}\nclass DataTexture3D extends Data3DTexture {\n  constructor(data, width, height, depth) {\n    console.warn(\"THREE.DataTexture3D has been renamed to Data3DTexture.\");\n    super(data, width, height, depth);\n  }\n}\nif (typeof __THREE_DEVTOOLS__ !== \"undefined\") {\n  __THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"register\", { detail: {\n    revision: REVISION\n  } }));\n}\nif (typeof window !== \"undefined\") {\n  if (window.__THREE__) {\n    console.warn(\"WARNING: Multiple instances of Three.js being imported.\");\n  } else {\n    window.__THREE__ = REVISION;\n  }\n}\nvar three_module = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({\n  __proto__: null,\n  ACESFilmicToneMapping,\n  AddEquation,\n  AddOperation,\n  AdditiveAnimationBlendMode,\n  AdditiveBlending,\n  AlphaFormat,\n  AlwaysDepth,\n  AlwaysStencilFunc,\n  AmbientLight,\n  AmbientLightProbe,\n  AnimationClip,\n  AnimationLoader,\n  AnimationMixer,\n  AnimationObjectGroup,\n  AnimationUtils,\n  ArcCurve,\n  ArrayCamera,\n  ArrowHelper,\n  Audio,\n  AudioAnalyser,\n  AudioContext,\n  AudioListener,\n  AudioLoader,\n  AxesHelper,\n  BackSide,\n  BasicDepthPacking,\n  BasicShadowMap,\n  Bone,\n  BooleanKeyframeTrack,\n  Box2,\n  Box3,\n  Box3Helper,\n  BoxBufferGeometry: BoxGeometry,\n  BoxGeometry,\n  BoxHelper,\n  BufferAttribute,\n  BufferGeometry,\n  BufferGeometryLoader,\n  ByteType,\n  Cache,\n  Camera,\n  CameraHelper,\n  CanvasTexture,\n  CapsuleBufferGeometry: CapsuleGeometry,\n  CapsuleGeometry,\n  CatmullRomCurve3,\n  CineonToneMapping,\n  CircleBufferGeometry: CircleGeometry,\n  CircleGeometry,\n  ClampToEdgeWrapping,\n  Clock,\n  Color,\n  ColorKeyframeTrack,\n  ColorManagement,\n  CompressedTexture,\n  CompressedTextureLoader,\n  ConeBufferGeometry: ConeGeometry,\n  ConeGeometry,\n  CubeCamera,\n  CubeReflectionMapping,\n  CubeRefractionMapping,\n  CubeTexture,\n  CubeTextureLoader,\n  CubeUVReflectionMapping,\n  CubicBezierCurve,\n  CubicBezierCurve3,\n  CubicInterpolant,\n  CullFaceBack,\n  CullFaceFront,\n  CullFaceFrontBack,\n  CullFaceNone,\n  Curve,\n  CurvePath,\n  CustomBlending,\n  CustomToneMapping,\n  CylinderBufferGeometry: CylinderGeometry,\n  CylinderGeometry,\n  Cylindrical,\n  Data3DTexture,\n  DataArrayTexture,\n  DataTexture,\n  DataTexture2DArray,\n  DataTexture3D,\n  DataTextureLoader,\n  DataUtils,\n  DecrementStencilOp,\n  DecrementWrapStencilOp,\n  DefaultLoadingManager,\n  DepthFormat,\n  DepthStencilFormat,\n  DepthTexture,\n  DirectionalLight,\n  DirectionalLightHelper,\n  DiscreteInterpolant,\n  DodecahedronBufferGeometry: DodecahedronGeometry,\n  DodecahedronGeometry,\n  DoubleSide,\n  DstAlphaFactor,\n  DstColorFactor,\n  DynamicCopyUsage,\n  DynamicDrawUsage,\n  DynamicReadUsage,\n  EdgesGeometry,\n  EllipseCurve,\n  EqualDepth,\n  EqualStencilFunc,\n  EquirectangularReflectionMapping,\n  EquirectangularRefractionMapping,\n  Euler,\n  EventDispatcher,\n  ExtrudeBufferGeometry: ExtrudeGeometry,\n  ExtrudeGeometry,\n  FileLoader,\n  FlatShading,\n  Float16BufferAttribute,\n  Float32BufferAttribute,\n  Float64BufferAttribute,\n  FloatType,\n  Fog,\n  FogExp2,\n  Font,\n  FontLoader,\n  FramebufferTexture,\n  FrontSide,\n  Frustum,\n  GLBufferAttribute,\n  GLSL1,\n  GLSL3,\n  GreaterDepth,\n  GreaterEqualDepth,\n  GreaterEqualStencilFunc,\n  GreaterStencilFunc,\n  GridHelper,\n  Group,\n  HalfFloatType,\n  HemisphereLight,\n  HemisphereLightHelper,\n  HemisphereLightProbe,\n  IcosahedronBufferGeometry: IcosahedronGeometry,\n  IcosahedronGeometry,\n  ImageBitmapLoader,\n  ImageLoader,\n  ImageUtils,\n  ImmediateRenderObject,\n  IncrementStencilOp,\n  IncrementWrapStencilOp,\n  InstancedBufferAttribute,\n  InstancedBufferGeometry,\n  InstancedInterleavedBuffer,\n  InstancedMesh,\n  Int16BufferAttribute,\n  Int32BufferAttribute,\n  Int8BufferAttribute,\n  IntType,\n  InterleavedBuffer,\n  InterleavedBufferAttribute,\n  Interpolant,\n  InterpolateDiscrete,\n  InterpolateLinear,\n  InterpolateSmooth,\n  InvertStencilOp,\n  KeepStencilOp,\n  KeyframeTrack,\n  LOD,\n  LatheBufferGeometry: LatheGeometry,\n  LatheGeometry,\n  Layers,\n  LessDepth,\n  LessEqualDepth,\n  LessEqualStencilFunc,\n  LessStencilFunc,\n  Light,\n  LightProbe,\n  Line,\n  Line3,\n  LineBasicMaterial,\n  LineCurve,\n  LineCurve3,\n  LineDashedMaterial,\n  LineLoop,\n  LineSegments,\n  LinearEncoding,\n  LinearFilter,\n  LinearInterpolant,\n  LinearMipMapLinearFilter,\n  LinearMipMapNearestFilter,\n  LinearMipmapLinearFilter,\n  LinearMipmapNearestFilter,\n  LinearSRGBColorSpace,\n  LinearToneMapping,\n  Loader,\n  LoaderUtils,\n  LoadingManager: LoadingManager$1,\n  LoopOnce,\n  LoopPingPong,\n  LoopRepeat,\n  LuminanceAlphaFormat,\n  LuminanceFormat,\n  MOUSE,\n  Material,\n  MaterialLoader,\n  MathUtils,\n  Matrix3,\n  Matrix4,\n  MaxEquation,\n  Mesh,\n  MeshBasicMaterial,\n  MeshDepthMaterial,\n  MeshDistanceMaterial,\n  MeshLambertMaterial,\n  MeshMatcapMaterial,\n  MeshNormalMaterial,\n  MeshPhongMaterial,\n  MeshPhysicalMaterial,\n  MeshStandardMaterial,\n  MeshToonMaterial,\n  MinEquation,\n  MirroredRepeatWrapping,\n  MixOperation,\n  MultiplyBlending,\n  MultiplyOperation,\n  NearestFilter,\n  NearestMipMapLinearFilter,\n  NearestMipMapNearestFilter,\n  NearestMipmapLinearFilter,\n  NearestMipmapNearestFilter,\n  NeverDepth,\n  NeverStencilFunc,\n  NoBlending,\n  NoColorSpace,\n  NoToneMapping,\n  NormalAnimationBlendMode,\n  NormalBlending,\n  NotEqualDepth,\n  NotEqualStencilFunc,\n  NumberKeyframeTrack,\n  Object3D,\n  ObjectLoader,\n  ObjectSpaceNormalMap,\n  OctahedronBufferGeometry: OctahedronGeometry,\n  OctahedronGeometry,\n  OneFactor,\n  OneMinusDstAlphaFactor,\n  OneMinusDstColorFactor,\n  OneMinusSrcAlphaFactor,\n  OneMinusSrcColorFactor,\n  OrthographicCamera,\n  PCFShadowMap,\n  PCFSoftShadowMap,\n  PMREMGenerator,\n  ParametricGeometry,\n  Path,\n  PerspectiveCamera,\n  Plane,\n  PlaneBufferGeometry: PlaneGeometry,\n  PlaneGeometry,\n  PlaneHelper,\n  PointLight,\n  PointLightHelper,\n  Points,\n  PointsMaterial,\n  PolarGridHelper,\n  PolyhedronBufferGeometry: PolyhedronGeometry,\n  PolyhedronGeometry,\n  PositionalAudio,\n  PropertyBinding,\n  PropertyMixer,\n  QuadraticBezierCurve,\n  QuadraticBezierCurve3,\n  Quaternion,\n  QuaternionKeyframeTrack,\n  QuaternionLinearInterpolant,\n  REVISION,\n  RGBADepthPacking,\n  RGBAFormat,\n  RGBAIntegerFormat,\n  RGBA_ASTC_10x10_Format,\n  RGBA_ASTC_10x5_Format,\n  RGBA_ASTC_10x6_Format,\n  RGBA_ASTC_10x8_Format,\n  RGBA_ASTC_12x10_Format,\n  RGBA_ASTC_12x12_Format,\n  RGBA_ASTC_4x4_Format,\n  RGBA_ASTC_5x4_Format,\n  RGBA_ASTC_5x5_Format,\n  RGBA_ASTC_6x5_Format,\n  RGBA_ASTC_6x6_Format,\n  RGBA_ASTC_8x5_Format,\n  RGBA_ASTC_8x6_Format,\n  RGBA_ASTC_8x8_Format,\n  RGBA_BPTC_Format,\n  RGBA_ETC2_EAC_Format,\n  RGBA_PVRTC_2BPPV1_Format,\n  RGBA_PVRTC_4BPPV1_Format,\n  RGBA_S3TC_DXT1_Format,\n  RGBA_S3TC_DXT3_Format,\n  RGBA_S3TC_DXT5_Format,\n  RGBFormat,\n  RGB_ETC1_Format,\n  RGB_ETC2_Format,\n  RGB_PVRTC_2BPPV1_Format,\n  RGB_PVRTC_4BPPV1_Format,\n  RGB_S3TC_DXT1_Format,\n  RGFormat,\n  RGIntegerFormat,\n  RawShaderMaterial,\n  Ray,\n  Raycaster,\n  RectAreaLight,\n  RedFormat,\n  RedIntegerFormat,\n  ReinhardToneMapping,\n  RepeatWrapping,\n  ReplaceStencilOp,\n  ReverseSubtractEquation,\n  RingBufferGeometry: RingGeometry,\n  RingGeometry,\n  SRGBColorSpace,\n  Scene,\n  ShaderChunk,\n  ShaderLib,\n  ShaderMaterial,\n  ShadowMaterial,\n  Shape,\n  ShapeBufferGeometry: ShapeGeometry,\n  ShapeGeometry,\n  ShapePath,\n  ShapeUtils,\n  ShortType,\n  Skeleton,\n  SkeletonHelper,\n  SkinnedMesh,\n  SmoothShading,\n  Source,\n  Sphere,\n  SphereBufferGeometry: SphereGeometry,\n  SphereGeometry,\n  Spherical,\n  SphericalHarmonics3,\n  SplineCurve,\n  SpotLight,\n  SpotLightHelper,\n  Sprite,\n  SpriteMaterial,\n  SrcAlphaFactor,\n  SrcAlphaSaturateFactor,\n  SrcColorFactor,\n  StaticCopyUsage,\n  StaticDrawUsage,\n  StaticReadUsage,\n  StereoCamera,\n  StreamCopyUsage,\n  StreamDrawUsage,\n  StreamReadUsage,\n  StringKeyframeTrack,\n  SubtractEquation,\n  SubtractiveBlending,\n  TOUCH,\n  TangentSpaceNormalMap,\n  TetrahedronBufferGeometry: TetrahedronGeometry,\n  TetrahedronGeometry,\n  TextGeometry,\n  Texture,\n  TextureLoader,\n  TorusBufferGeometry: TorusGeometry,\n  TorusGeometry,\n  TorusKnotBufferGeometry: TorusKnotGeometry,\n  TorusKnotGeometry,\n  Triangle,\n  TriangleFanDrawMode,\n  TriangleStripDrawMode,\n  TrianglesDrawMode,\n  TubeBufferGeometry: TubeGeometry,\n  TubeGeometry,\n  UVMapping,\n  Uint16BufferAttribute,\n  Uint32BufferAttribute,\n  Uint8BufferAttribute,\n  Uint8ClampedBufferAttribute,\n  Uniform,\n  UniformsGroup,\n  UniformsLib,\n  UniformsUtils,\n  UnsignedByteType,\n  UnsignedInt248Type,\n  UnsignedIntType,\n  UnsignedShort4444Type,\n  UnsignedShort5551Type,\n  UnsignedShortType,\n  VSMShadowMap,\n  Vector2,\n  Vector3,\n  Vector4,\n  VectorKeyframeTrack,\n  VideoTexture,\n  WebGL1Renderer,\n  WebGL3DRenderTarget,\n  WebGLArrayRenderTarget,\n  WebGLCubeRenderTarget,\n  WebGLMultipleRenderTargets,\n  WebGLMultisampleRenderTarget,\n  WebGLRenderTarget,\n  WebGLRenderer,\n  WebGLUtils,\n  WireframeGeometry,\n  WrapAroundEnding,\n  ZeroCurvatureEnding,\n  ZeroFactor,\n  ZeroSlopeEnding,\n  ZeroStencilOp,\n  _SRGBAFormat,\n  sRGBEncoding\n}, Symbol.toStringTag, { value: \"Module\" }));\nconst _changeEvent = { type: \"change\" };\nconst _startEvent = { type: \"start\" };\nconst _endEvent = { type: \"end\" };\nclass OrbitControls extends EventDispatcher {\n  constructor(object, domElement) {\n    super();\n    if (domElement === void 0)\n      console.warn('THREE.OrbitControls: The second parameter \"domElement\" is now mandatory.');\n    if (domElement === document)\n      console.error('THREE.OrbitControls: \"document\" should not be used as the target \"domElement\". Please use \"renderer.domElement\" instead.');\n    this.object = object;\n    this.domElement = domElement;\n    this.domElement.style.touchAction = \"none\";\n    this.enabled = true;\n    this.target = new Vector3();\n    this.minDistance = 0;\n    this.maxDistance = Infinity;\n    this.minZoom = 0;\n    this.maxZoom = Infinity;\n    this.minPolarAngle = 0;\n    this.maxPolarAngle = Math.PI;\n    this.minAzimuthAngle = -Infinity;\n    this.maxAzimuthAngle = Infinity;\n    this.enableDamping = false;\n    this.dampingFactor = 0.05;\n    this.enableZoom = true;\n    this.zoomSpeed = 1;\n    this.enableRotate = true;\n    this.rotateSpeed = 1;\n    this.enablePan = true;\n    this.panSpeed = 1;\n    this.screenSpacePanning = true;\n    this.keyPanSpeed = 7;\n    this.autoRotate = false;\n    this.autoRotateSpeed = 2;\n    this.keys = { LEFT: \"ArrowLeft\", UP: \"ArrowUp\", RIGHT: \"ArrowRight\", BOTTOM: \"ArrowDown\" };\n    this.mouseButtons = { LEFT: MOUSE.ROTATE, MIDDLE: MOUSE.DOLLY, RIGHT: MOUSE.PAN };\n    this.touches = { ONE: TOUCH.ROTATE, TWO: TOUCH.DOLLY_PAN };\n    this.target0 = this.target.clone();\n    this.position0 = this.object.position.clone();\n    this.zoom0 = this.object.zoom;\n    this._domElementKeyEvents = null;\n    this.getPolarAngle = function() {\n      return spherical.phi;\n    };\n    this.getAzimuthalAngle = function() {\n      return spherical.theta;\n    };\n    this.getDistance = function() {\n      return this.object.position.distanceTo(this.target);\n    };\n    this.listenToKeyEvents = function(domElement2) {\n      domElement2.addEventListener(\"keydown\", onKeyDown);\n      this._domElementKeyEvents = domElement2;\n    };\n    this.saveState = function() {\n      scope.target0.copy(scope.target);\n      scope.position0.copy(scope.object.position);\n      scope.zoom0 = scope.object.zoom;\n    };\n    this.reset = function() {\n      scope.target.copy(scope.target0);\n      scope.object.position.copy(scope.position0);\n      scope.object.zoom = scope.zoom0;\n      scope.object.updateProjectionMatrix();\n      scope.dispatchEvent(_changeEvent);\n      scope.update();\n      state = STATE.NONE;\n    };\n    this.update = function() {\n      const offset = new Vector3();\n      const quat = new Quaternion().setFromUnitVectors(object.up, new Vector3(0, 1, 0));\n      const quatInverse = quat.clone().invert();\n      const lastPosition = new Vector3();\n      const lastQuaternion = new Quaternion();\n      const twoPI = 2 * Math.PI;\n      return function update() {\n        const position = scope.object.position;\n        offset.copy(position).sub(scope.target);\n        offset.applyQuaternion(quat);\n        spherical.setFromVector3(offset);\n        if (scope.autoRotate && state === STATE.NONE) {\n          rotateLeft(getAutoRotationAngle());\n        }\n        if (scope.enableDamping) {\n          spherical.theta += sphericalDelta.theta * scope.dampingFactor;\n          spherical.phi += sphericalDelta.phi * scope.dampingFactor;\n        } else {\n          spherical.theta += sphericalDelta.theta;\n          spherical.phi += sphericalDelta.phi;\n        }\n        let min = scope.minAzimuthAngle;\n        let max2 = scope.maxAzimuthAngle;\n        if (isFinite(min) && isFinite(max2)) {\n          if (min < -Math.PI)\n            min += twoPI;\n          else if (min > Math.PI)\n            min -= twoPI;\n          if (max2 < -Math.PI)\n            max2 += twoPI;\n          else if (max2 > Math.PI)\n            max2 -= twoPI;\n          if (min <= max2) {\n            spherical.theta = Math.max(min, Math.min(max2, spherical.theta));\n          } else {\n            spherical.theta = spherical.theta > (min + max2) / 2 ? Math.max(min, spherical.theta) : Math.min(max2, spherical.theta);\n          }\n        }\n        spherical.phi = Math.max(scope.minPolarAngle, Math.min(scope.maxPolarAngle, spherical.phi));\n        spherical.makeSafe();\n        spherical.radius *= scale;\n        spherical.radius = Math.max(scope.minDistance, Math.min(scope.maxDistance, spherical.radius));\n        if (scope.enableDamping === true) {\n          scope.target.addScaledVector(panOffset, scope.dampingFactor);\n        } else {\n          scope.target.add(panOffset);\n        }\n        offset.setFromSpherical(spherical);\n        offset.applyQuaternion(quatInverse);\n        position.copy(scope.target).add(offset);\n        scope.object.lookAt(scope.target);\n        if (scope.enableDamping === true) {\n          sphericalDelta.theta *= 1 - scope.dampingFactor;\n          sphericalDelta.phi *= 1 - scope.dampingFactor;\n          panOffset.multiplyScalar(1 - scope.dampingFactor);\n        } else {\n          sphericalDelta.set(0, 0, 0);\n          panOffset.set(0, 0, 0);\n        }\n        scale = 1;\n        if (zoomChanged || lastPosition.distanceToSquared(scope.object.position) > EPS || 8 * (1 - lastQuaternion.dot(scope.object.quaternion)) > EPS) {\n          scope.dispatchEvent(_changeEvent);\n          lastPosition.copy(scope.object.position);\n          lastQuaternion.copy(scope.object.quaternion);\n          zoomChanged = false;\n          return true;\n        }\n        return false;\n      };\n    }();\n    this.dispose = function() {\n      scope.domElement.removeEventListener(\"contextmenu\", onContextMenu);\n      scope.domElement.removeEventListener(\"pointerdown\", onPointerDown);\n      scope.domElement.removeEventListener(\"pointercancel\", onPointerCancel);\n      scope.domElement.removeEventListener(\"wheel\", onMouseWheel);\n      scope.domElement.removeEventListener(\"pointermove\", onPointerMove);\n      scope.domElement.removeEventListener(\"pointerup\", onPointerUp);\n      if (scope._domElementKeyEvents !== null) {\n        scope._domElementKeyEvents.removeEventListener(\"keydown\", onKeyDown);\n      }\n    };\n    const scope = this;\n    const STATE = {\n      NONE: -1,\n      ROTATE: 0,\n      DOLLY: 1,\n      PAN: 2,\n      TOUCH_ROTATE: 3,\n      TOUCH_PAN: 4,\n      TOUCH_DOLLY_PAN: 5,\n      TOUCH_DOLLY_ROTATE: 6\n    };\n    let state = STATE.NONE;\n    const EPS = 1e-6;\n    const spherical = new Spherical();\n    const sphericalDelta = new Spherical();\n    let scale = 1;\n    const panOffset = new Vector3();\n    let zoomChanged = false;\n    const rotateStart = new Vector2();\n    const rotateEnd = new Vector2();\n    const rotateDelta = new Vector2();\n    const panStart = new Vector2();\n    const panEnd = new Vector2();\n    const panDelta = new Vector2();\n    const dollyStart = new Vector2();\n    const dollyEnd = new Vector2();\n    const dollyDelta = new Vector2();\n    const pointers = [];\n    const pointerPositions = {};\n    function getAutoRotationAngle() {\n      return 2 * Math.PI / 60 / 60 * scope.autoRotateSpeed;\n    }\n    function getZoomScale() {\n      return Math.pow(0.95, scope.zoomSpeed);\n    }\n    function rotateLeft(angle) {\n      sphericalDelta.theta -= angle;\n    }\n    function rotateUp(angle) {\n      sphericalDelta.phi -= angle;\n    }\n    const panLeft = function() {\n      const v = new Vector3();\n      return function panLeft2(distance, objectMatrix) {\n        v.setFromMatrixColumn(objectMatrix, 0);\n        v.multiplyScalar(-distance);\n        panOffset.add(v);\n      };\n    }();\n    const panUp = function() {\n      const v = new Vector3();\n      return function panUp2(distance, objectMatrix) {\n        if (scope.screenSpacePanning === true) {\n          v.setFromMatrixColumn(objectMatrix, 1);\n        } else {\n          v.setFromMatrixColumn(objectMatrix, 0);\n          v.crossVectors(scope.object.up, v);\n        }\n        v.multiplyScalar(distance);\n        panOffset.add(v);\n      };\n    }();\n    const pan = function() {\n      const offset = new Vector3();\n      return function pan2(deltaX, deltaY) {\n        const element = scope.domElement;\n        if (scope.object.isPerspectiveCamera) {\n          const position = scope.object.position;\n          offset.copy(position).sub(scope.target);\n          let targetDistance = offset.length();\n          targetDistance *= Math.tan(scope.object.fov / 2 * Math.PI / 180);\n          panLeft(2 * deltaX * targetDistance / element.clientHeight, scope.object.matrix);\n          panUp(2 * deltaY * targetDistance / element.clientHeight, scope.object.matrix);\n        } else if (scope.object.isOrthographicCamera) {\n          panLeft(deltaX * (scope.object.right - scope.object.left) / scope.object.zoom / element.clientWidth, scope.object.matrix);\n          panUp(deltaY * (scope.object.top - scope.object.bottom) / scope.object.zoom / element.clientHeight, scope.object.matrix);\n        } else {\n          console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - pan disabled.\");\n          scope.enablePan = false;\n        }\n      };\n    }();\n    function dollyOut(dollyScale) {\n      if (scope.object.isPerspectiveCamera) {\n        scale /= dollyScale;\n      } else if (scope.object.isOrthographicCamera) {\n        scope.object.zoom = Math.max(scope.minZoom, Math.min(scope.maxZoom, scope.object.zoom * dollyScale));\n        scope.object.updateProjectionMatrix();\n        zoomChanged = true;\n      } else {\n        console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled.\");\n        scope.enableZoom = false;\n      }\n    }\n    function dollyIn(dollyScale) {\n      if (scope.object.isPerspectiveCamera) {\n        scale *= dollyScale;\n      } else if (scope.object.isOrthographicCamera) {\n        scope.object.zoom = Math.max(scope.minZoom, Math.min(scope.maxZoom, scope.object.zoom / dollyScale));\n        scope.object.updateProjectionMatrix();\n        zoomChanged = true;\n      } else {\n        console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled.\");\n        scope.enableZoom = false;\n      }\n    }\n    function handleMouseDownRotate(event) {\n      rotateStart.set(event.clientX, event.clientY);\n    }\n    function handleMouseDownDolly(event) {\n      dollyStart.set(event.clientX, event.clientY);\n    }\n    function handleMouseDownPan(event) {\n      panStart.set(event.clientX, event.clientY);\n    }\n    function handleMouseMoveRotate(event) {\n      rotateEnd.set(event.clientX, event.clientY);\n      rotateDelta.subVectors(rotateEnd, rotateStart).multiplyScalar(scope.rotateSpeed);\n      const element = scope.domElement;\n      rotateLeft(2 * Math.PI * rotateDelta.x / element.clientHeight);\n      rotateUp(2 * Math.PI * rotateDelta.y / element.clientHeight);\n      rotateStart.copy(rotateEnd);\n      scope.update();\n    }\n    function handleMouseMoveDolly(event) {\n      dollyEnd.set(event.clientX, event.clientY);\n      dollyDelta.subVectors(dollyEnd, dollyStart);\n      if (dollyDelta.y > 0) {\n        dollyOut(getZoomScale());\n      } else if (dollyDelta.y < 0) {\n        dollyIn(getZoomScale());\n      }\n      dollyStart.copy(dollyEnd);\n      scope.update();\n    }\n    function handleMouseMovePan(event) {\n      panEnd.set(event.clientX, event.clientY);\n      panDelta.subVectors(panEnd, panStart).multiplyScalar(scope.panSpeed);\n      pan(panDelta.x, panDelta.y);\n      panStart.copy(panEnd);\n      scope.update();\n    }\n    function handleMouseWheel(event) {\n      if (event.deltaY < 0) {\n        dollyIn(getZoomScale());\n      } else if (event.deltaY > 0) {\n        dollyOut(getZoomScale());\n      }\n      scope.update();\n    }\n    function handleKeyDown(event) {\n      let needsUpdate = false;\n      switch (event.code) {\n        case scope.keys.UP:\n          pan(0, scope.keyPanSpeed);\n          needsUpdate = true;\n          break;\n        case scope.keys.BOTTOM:\n          pan(0, -scope.keyPanSpeed);\n          needsUpdate = true;\n          break;\n        case scope.keys.LEFT:\n          pan(scope.keyPanSpeed, 0);\n          needsUpdate = true;\n          break;\n        case scope.keys.RIGHT:\n          pan(-scope.keyPanSpeed, 0);\n          needsUpdate = true;\n          break;\n      }\n      if (needsUpdate) {\n        event.preventDefault();\n        scope.update();\n      }\n    }\n    function handleTouchStartRotate() {\n      if (pointers.length === 1) {\n        rotateStart.set(pointers[0].pageX, pointers[0].pageY);\n      } else {\n        const x = 0.5 * (pointers[0].pageX + pointers[1].pageX);\n        const y = 0.5 * (pointers[0].pageY + pointers[1].pageY);\n        rotateStart.set(x, y);\n      }\n    }\n    function handleTouchStartPan() {\n      if (pointers.length === 1) {\n        panStart.set(pointers[0].pageX, pointers[0].pageY);\n      } else {\n        const x = 0.5 * (pointers[0].pageX + pointers[1].pageX);\n        const y = 0.5 * (pointers[0].pageY + pointers[1].pageY);\n        panStart.set(x, y);\n      }\n    }\n    function handleTouchStartDolly() {\n      const dx = pointers[0].pageX - pointers[1].pageX;\n      const dy = pointers[0].pageY - pointers[1].pageY;\n      const distance = Math.sqrt(dx * dx + dy * dy);\n      dollyStart.set(0, distance);\n    }\n    function handleTouchStartDollyPan() {\n      if (scope.enableZoom)\n        handleTouchStartDolly();\n      if (scope.enablePan)\n        handleTouchStartPan();\n    }\n    function handleTouchStartDollyRotate() {\n      if (scope.enableZoom)\n        handleTouchStartDolly();\n      if (scope.enableRotate)\n        handleTouchStartRotate();\n    }\n    function handleTouchMoveRotate(event) {\n      if (pointers.length == 1) {\n        rotateEnd.set(event.pageX, event.pageY);\n      } else {\n        const position = getSecondPointerPosition(event);\n        const x = 0.5 * (event.pageX + position.x);\n        const y = 0.5 * (event.pageY + position.y);\n        rotateEnd.set(x, y);\n      }\n      rotateDelta.subVectors(rotateEnd, rotateStart).multiplyScalar(scope.rotateSpeed);\n      const element = scope.domElement;\n      rotateLeft(2 * Math.PI * rotateDelta.x / element.clientHeight);\n      rotateUp(2 * Math.PI * rotateDelta.y / element.clientHeight);\n      rotateStart.copy(rotateEnd);\n    }\n    function handleTouchMovePan(event) {\n      if (pointers.length === 1) {\n        panEnd.set(event.pageX, event.pageY);\n      } else {\n        const position = getSecondPointerPosition(event);\n        const x = 0.5 * (event.pageX + position.x);\n        const y = 0.5 * (event.pageY + position.y);\n        panEnd.set(x, y);\n      }\n      panDelta.subVectors(panEnd, panStart).multiplyScalar(scope.panSpeed);\n      pan(panDelta.x, panDelta.y);\n      panStart.copy(panEnd);\n    }\n    function handleTouchMoveDolly(event) {\n      const position = getSecondPointerPosition(event);\n      const dx = event.pageX - position.x;\n      const dy = event.pageY - position.y;\n      const distance = Math.sqrt(dx * dx + dy * dy);\n      dollyEnd.set(0, distance);\n      dollyDelta.set(0, Math.pow(dollyEnd.y / dollyStart.y, scope.zoomSpeed));\n      dollyOut(dollyDelta.y);\n      dollyStart.copy(dollyEnd);\n    }\n    function handleTouchMoveDollyPan(event) {\n      if (scope.enableZoom)\n        handleTouchMoveDolly(event);\n      if (scope.enablePan)\n        handleTouchMovePan(event);\n    }\n    function handleTouchMoveDollyRotate(event) {\n      if (scope.enableZoom)\n        handleTouchMoveDolly(event);\n      if (scope.enableRotate)\n        handleTouchMoveRotate(event);\n    }\n    function onPointerDown(event) {\n      if (scope.enabled === false)\n        return;\n      if (pointers.length === 0) {\n        scope.domElement.setPointerCapture(event.pointerId);\n        scope.domElement.addEventListener(\"pointermove\", onPointerMove);\n        scope.domElement.addEventListener(\"pointerup\", onPointerUp);\n      }\n      addPointer(event);\n      if (event.pointerType === \"touch\") {\n        onTouchStart(event);\n      } else {\n        onMouseDown(event);\n      }\n    }\n    function onPointerMove(event) {\n      if (scope.enabled === false)\n        return;\n      if (event.pointerType === \"touch\") {\n        onTouchMove(event);\n      } else {\n        onMouseMove(event);\n      }\n    }\n    function onPointerUp(event) {\n      removePointer(event);\n      if (pointers.length === 0) {\n        scope.domElement.releasePointerCapture(event.pointerId);\n        scope.domElement.removeEventListener(\"pointermove\", onPointerMove);\n        scope.domElement.removeEventListener(\"pointerup\", onPointerUp);\n      }\n      scope.dispatchEvent(_endEvent);\n      state = STATE.NONE;\n    }\n    function onPointerCancel(event) {\n      removePointer(event);\n    }\n    function onMouseDown(event) {\n      let mouseAction;\n      switch (event.button) {\n        case 0:\n          mouseAction = scope.mouseButtons.LEFT;\n          break;\n        case 1:\n          mouseAction = scope.mouseButtons.MIDDLE;\n          break;\n        case 2:\n          mouseAction = scope.mouseButtons.RIGHT;\n          break;\n        default:\n          mouseAction = -1;\n      }\n      switch (mouseAction) {\n        case MOUSE.DOLLY:\n          if (scope.enableZoom === false)\n            return;\n          handleMouseDownDolly(event);\n          state = STATE.DOLLY;\n          break;\n        case MOUSE.ROTATE:\n          if (event.ctrlKey || event.metaKey || event.shiftKey) {\n            if (scope.enablePan === false)\n              return;\n            handleMouseDownPan(event);\n            state = STATE.PAN;\n          } else {\n            if (scope.enableRotate === false)\n              return;\n            handleMouseDownRotate(event);\n            state = STATE.ROTATE;\n          }\n          break;\n        case MOUSE.PAN:\n          if (event.ctrlKey || event.metaKey || event.shiftKey) {\n            if (scope.enableRotate === false)\n              return;\n            handleMouseDownRotate(event);\n            state = STATE.ROTATE;\n          } else {\n            if (scope.enablePan === false)\n              return;\n            handleMouseDownPan(event);\n            state = STATE.PAN;\n          }\n          break;\n        default:\n          state = STATE.NONE;\n      }\n      if (state !== STATE.NONE) {\n        scope.dispatchEvent(_startEvent);\n      }\n    }\n    function onMouseMove(event) {\n      switch (state) {\n        case STATE.ROTATE:\n          if (scope.enableRotate === false)\n            return;\n          handleMouseMoveRotate(event);\n          break;\n        case STATE.DOLLY:\n          if (scope.enableZoom === false)\n            return;\n          handleMouseMoveDolly(event);\n          break;\n        case STATE.PAN:\n          if (scope.enablePan === false)\n            return;\n          handleMouseMovePan(event);\n          break;\n      }\n    }\n    function onMouseWheel(event) {\n      if (scope.enabled === false || scope.enableZoom === false || state !== STATE.NONE)\n        return;\n      event.preventDefault();\n      scope.dispatchEvent(_startEvent);\n      handleMouseWheel(event);\n      scope.dispatchEvent(_endEvent);\n    }\n    function onKeyDown(event) {\n      if (scope.enabled === false || scope.enablePan === false)\n        return;\n      handleKeyDown(event);\n    }\n    function onTouchStart(event) {\n      trackPointer(event);\n      switch (pointers.length) {\n        case 1:\n          switch (scope.touches.ONE) {\n            case TOUCH.ROTATE:\n              if (scope.enableRotate === false)\n                return;\n              handleTouchStartRotate();\n              state = STATE.TOUCH_ROTATE;\n              break;\n            case TOUCH.PAN:\n              if (scope.enablePan === false)\n                return;\n              handleTouchStartPan();\n              state = STATE.TOUCH_PAN;\n              break;\n            default:\n              state = STATE.NONE;\n          }\n          break;\n        case 2:\n          switch (scope.touches.TWO) {\n            case TOUCH.DOLLY_PAN:\n              if (scope.enableZoom === false && scope.enablePan === false)\n                return;\n              handleTouchStartDollyPan();\n              state = STATE.TOUCH_DOLLY_PAN;\n              break;\n            case TOUCH.DOLLY_ROTATE:\n              if (scope.enableZoom === false && scope.enableRotate === false)\n                return;\n              handleTouchStartDollyRotate();\n              state = STATE.TOUCH_DOLLY_ROTATE;\n              break;\n            default:\n              state = STATE.NONE;\n          }\n          break;\n        default:\n          state = STATE.NONE;\n      }\n      if (state !== STATE.NONE) {\n        scope.dispatchEvent(_startEvent);\n      }\n    }\n    function onTouchMove(event) {\n      trackPointer(event);\n      switch (state) {\n        case STATE.TOUCH_ROTATE:\n          if (scope.enableRotate === false)\n            return;\n          handleTouchMoveRotate(event);\n          scope.update();\n          break;\n        case STATE.TOUCH_PAN:\n          if (scope.enablePan === false)\n            return;\n          handleTouchMovePan(event);\n          scope.update();\n          break;\n        case STATE.TOUCH_DOLLY_PAN:\n          if (scope.enableZoom === false && scope.enablePan === false)\n            return;\n          handleTouchMoveDollyPan(event);\n          scope.update();\n          break;\n        case STATE.TOUCH_DOLLY_ROTATE:\n          if (scope.enableZoom === false && scope.enableRotate === false)\n            return;\n          handleTouchMoveDollyRotate(event);\n          scope.update();\n          break;\n        default:\n          state = STATE.NONE;\n      }\n    }\n    function onContextMenu(event) {\n      if (scope.enabled === false)\n        return;\n      event.preventDefault();\n    }\n    function addPointer(event) {\n      pointers.push(event);\n    }\n    function removePointer(event) {\n      delete pointerPositions[event.pointerId];\n      for (let i = 0; i < pointers.length; i++) {\n        if (pointers[i].pointerId == event.pointerId) {\n          pointers.splice(i, 1);\n          return;\n        }\n      }\n    }\n    function trackPointer(event) {\n      let position = pointerPositions[event.pointerId];\n      if (position === void 0) {\n        position = new Vector2();\n        pointerPositions[event.pointerId] = position;\n      }\n      position.set(event.pageX, event.pageY);\n    }\n    function getSecondPointerPosition(event) {\n      const pointer = event.pointerId === pointers[0].pointerId ? pointers[1] : pointers[0];\n      return pointerPositions[pointer.pointerId];\n    }\n    scope.domElement.addEventListener(\"contextmenu\", onContextMenu);\n    scope.domElement.addEventListener(\"pointerdown\", onPointerDown);\n    scope.domElement.addEventListener(\"pointercancel\", onPointerCancel);\n    scope.domElement.addEventListener(\"wheel\", onMouseWheel, { passive: false });\n    this.update();\n  }\n}\nvar Stats = function() {\n  var mode = 0;\n  var container = document.createElement(\"div\");\n  container.style.cssText = \"position:fixed;top:0;left:0;cursor:pointer;opacity:0.9;z-index:10000\";\n  container.addEventListener(\"click\", function(event) {\n    event.preventDefault();\n    showPanel(++mode % container.children.length);\n  }, false);\n  function addPanel(panel) {\n    container.appendChild(panel.dom);\n    return panel;\n  }\n  function showPanel(id2) {\n    for (var i = 0; i < container.children.length; i++) {\n      container.children[i].style.display = i === id2 ? \"block\" : \"none\";\n    }\n    mode = id2;\n  }\n  var beginTime = (performance || Date).now(), prevTime = beginTime, frames = 0;\n  var fpsPanel = addPanel(new Stats.Panel(\"FPS\", \"#0ff\", \"#002\"));\n  var msPanel = addPanel(new Stats.Panel(\"MS\", \"#0f0\", \"#020\"));\n  if (self.performance && self.performance.memory) {\n    var memPanel = addPanel(new Stats.Panel(\"MB\", \"#f08\", \"#201\"));\n  }\n  showPanel(0);\n  return {\n    REVISION: 16,\n    dom: container,\n    addPanel,\n    showPanel,\n    begin: function() {\n      beginTime = (performance || Date).now();\n    },\n    end: function() {\n      frames++;\n      var time = (performance || Date).now();\n      msPanel.update(time - beginTime, 200);\n      if (time >= prevTime + 1e3) {\n        fpsPanel.update(frames * 1e3 / (time - prevTime), 100);\n        prevTime = time;\n        frames = 0;\n        if (memPanel) {\n          var memory = performance.memory;\n          memPanel.update(memory.usedJSHeapSize / 1048576, memory.jsHeapSizeLimit / 1048576);\n        }\n      }\n      return time;\n    },\n    update: function() {\n      beginTime = this.end();\n    },\n    domElement: container,\n    setMode: showPanel\n  };\n};\nStats.Panel = function(name, fg, bg) {\n  var min = Infinity, max2 = 0, round = Math.round;\n  var PR = round(window.devicePixelRatio || 1);\n  var WIDTH = 80 * PR, HEIGHT = 48 * PR, TEXT_X = 3 * PR, TEXT_Y = 2 * PR, GRAPH_X = 3 * PR, GRAPH_Y = 15 * PR, GRAPH_WIDTH = 74 * PR, GRAPH_HEIGHT = 30 * PR;\n  var canvas = document.createElement(\"canvas\");\n  canvas.width = WIDTH;\n  canvas.height = HEIGHT;\n  canvas.style.cssText = \"width:80px;height:48px\";\n  var context = canvas.getContext(\"2d\");\n  context.font = \"bold \" + 9 * PR + \"px Helvetica,Arial,sans-serif\";\n  context.textBaseline = \"top\";\n  context.fillStyle = bg;\n  context.fillRect(0, 0, WIDTH, HEIGHT);\n  context.fillStyle = fg;\n  context.fillText(name, TEXT_X, TEXT_Y);\n  context.fillRect(GRAPH_X, GRAPH_Y, GRAPH_WIDTH, GRAPH_HEIGHT);\n  context.fillStyle = bg;\n  context.globalAlpha = 0.9;\n  context.fillRect(GRAPH_X, GRAPH_Y, GRAPH_WIDTH, GRAPH_HEIGHT);\n  return {\n    dom: canvas,\n    update: function(value, maxValue) {\n      min = Math.min(min, value);\n      max2 = Math.max(max2, value);\n      context.fillStyle = bg;\n      context.globalAlpha = 1;\n      context.fillRect(0, 0, WIDTH, GRAPH_Y);\n      context.fillStyle = fg;\n      context.fillText(round(value) + \" \" + name + \" (\" + round(min) + \"-\" + round(max2) + \")\", TEXT_X, TEXT_Y);\n      context.drawImage(canvas, GRAPH_X + PR, GRAPH_Y, GRAPH_WIDTH - PR, GRAPH_HEIGHT, GRAPH_X, GRAPH_Y, GRAPH_WIDTH - PR, GRAPH_HEIGHT);\n      context.fillRect(GRAPH_X + GRAPH_WIDTH - PR, GRAPH_Y, PR, GRAPH_HEIGHT);\n      context.fillStyle = bg;\n      context.globalAlpha = 0.9;\n      context.fillRect(GRAPH_X + GRAPH_WIDTH - PR, GRAPH_Y, PR, round((1 - value / maxValue) * GRAPH_HEIGHT));\n    }\n  };\n};\n/*!\nfflate - fast JavaScript compression/decompression\n<https://101arrowz.github.io/fflate>\nLicensed under MIT. https://github.com/101arrowz/fflate/blob/master/LICENSE\nversion 0.6.9\n*/\nvar ch2 = {};\nvar durl = function(c) {\n  return URL.createObjectURL(new Blob([c], { type: \"text/javascript\" }));\n};\nvar cwk = function(u) {\n  return new Worker(u);\n};\ntry {\n  URL.revokeObjectURL(durl(\"\"));\n} catch (e) {\n  durl = function(c) {\n    return \"data:application/javascript;charset=UTF-8,\" + encodeURI(c);\n  };\n  cwk = function(u) {\n    return new Worker(u, { type: \"module\" });\n  };\n}\nvar wk = function(c, id2, msg, transfer, cb) {\n  var w = cwk(ch2[id2] || (ch2[id2] = durl(c)));\n  w.onerror = function(e) {\n    return cb(e.error, null);\n  };\n  w.onmessage = function(e) {\n    return cb(null, e.data);\n  };\n  w.postMessage(msg, transfer);\n  return w;\n};\nvar u8 = Uint8Array, u16 = Uint16Array, u32 = Uint32Array;\nvar fleb = new u8([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 0, 0, 0]);\nvar fdeb = new u8([0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 0, 0]);\nvar clim = new u8([16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15]);\nvar freb = function(eb, start) {\n  var b = new u16(31);\n  for (var i = 0; i < 31; ++i) {\n    b[i] = start += 1 << eb[i - 1];\n  }\n  var r = new u32(b[30]);\n  for (var i = 1; i < 30; ++i) {\n    for (var j = b[i]; j < b[i + 1]; ++j) {\n      r[j] = j - b[i] << 5 | i;\n    }\n  }\n  return [b, r];\n};\nvar _a = freb(fleb, 2), fl = _a[0], revfl = _a[1];\nfl[28] = 258, revfl[258] = 28;\nvar _b = freb(fdeb, 0), fd = _b[0], revfd = _b[1];\nvar rev = new u16(32768);\nfor (var i = 0; i < 32768; ++i) {\n  var x = (i & 43690) >>> 1 | (i & 21845) << 1;\n  x = (x & 52428) >>> 2 | (x & 13107) << 2;\n  x = (x & 61680) >>> 4 | (x & 3855) << 4;\n  rev[i] = ((x & 65280) >>> 8 | (x & 255) << 8) >>> 1;\n}\nvar hMap = function(cd, mb, r) {\n  var s = cd.length;\n  var i = 0;\n  var l = new u16(mb);\n  for (; i < s; ++i)\n    ++l[cd[i] - 1];\n  var le = new u16(mb);\n  for (i = 0; i < mb; ++i) {\n    le[i] = le[i - 1] + l[i - 1] << 1;\n  }\n  var co;\n  if (r) {\n    co = new u16(1 << mb);\n    var rvb = 15 - mb;\n    for (i = 0; i < s; ++i) {\n      if (cd[i]) {\n        var sv = i << 4 | cd[i];\n        var r_1 = mb - cd[i];\n        var v = le[cd[i] - 1]++ << r_1;\n        for (var m = v | (1 << r_1) - 1; v <= m; ++v) {\n          co[rev[v] >>> rvb] = sv;\n        }\n      }\n    }\n  } else {\n    co = new u16(s);\n    for (i = 0; i < s; ++i) {\n      if (cd[i]) {\n        co[i] = rev[le[cd[i] - 1]++] >>> 15 - cd[i];\n      }\n    }\n  }\n  return co;\n};\nvar flt = new u8(288);\nfor (var i = 0; i < 144; ++i)\n  flt[i] = 8;\nfor (var i = 144; i < 256; ++i)\n  flt[i] = 9;\nfor (var i = 256; i < 280; ++i)\n  flt[i] = 7;\nfor (var i = 280; i < 288; ++i)\n  flt[i] = 8;\nvar fdt = new u8(32);\nfor (var i = 0; i < 32; ++i)\n  fdt[i] = 5;\nvar flm = /* @__PURE__ */ hMap(flt, 9, 0), flrm = /* @__PURE__ */ hMap(flt, 9, 1);\nvar fdm = /* @__PURE__ */ hMap(fdt, 5, 0), fdrm = /* @__PURE__ */ hMap(fdt, 5, 1);\nvar max = function(a) {\n  var m = a[0];\n  for (var i = 1; i < a.length; ++i) {\n    if (a[i] > m)\n      m = a[i];\n  }\n  return m;\n};\nvar bits = function(d, p, m) {\n  var o = p / 8 | 0;\n  return (d[o] | d[o + 1] << 8) >> (p & 7) & m;\n};\nvar bits16 = function(d, p) {\n  var o = p / 8 | 0;\n  return (d[o] | d[o + 1] << 8 | d[o + 2] << 16) >> (p & 7);\n};\nvar shft = function(p) {\n  return (p / 8 | 0) + (p & 7 && 1);\n};\nvar slc = function(v, s, e) {\n  if (s == null || s < 0)\n    s = 0;\n  if (e == null || e > v.length)\n    e = v.length;\n  var n = new (v instanceof u16 ? u16 : v instanceof u32 ? u32 : u8)(e - s);\n  n.set(v.subarray(s, e));\n  return n;\n};\nvar inflt = function(dat, buf, st) {\n  var sl = dat.length;\n  if (!sl || st && !st.l && sl < 5)\n    return buf || new u8(0);\n  var noBuf = !buf || st;\n  var noSt = !st || st.i;\n  if (!st)\n    st = {};\n  if (!buf)\n    buf = new u8(sl * 3);\n  var cbuf = function(l2) {\n    var bl = buf.length;\n    if (l2 > bl) {\n      var nbuf = new u8(Math.max(bl * 2, l2));\n      nbuf.set(buf);\n      buf = nbuf;\n    }\n  };\n  var final = st.f || 0, pos = st.p || 0, bt = st.b || 0, lm = st.l, dm = st.d, lbt = st.m, dbt = st.n;\n  var tbts = sl * 8;\n  do {\n    if (!lm) {\n      st.f = final = bits(dat, pos, 1);\n      var type = bits(dat, pos + 1, 3);\n      pos += 3;\n      if (!type) {\n        var s = shft(pos) + 4, l = dat[s - 4] | dat[s - 3] << 8, t = s + l;\n        if (t > sl) {\n          if (noSt)\n            throw \"unexpected EOF\";\n          break;\n        }\n        if (noBuf)\n          cbuf(bt + l);\n        buf.set(dat.subarray(s, t), bt);\n        st.b = bt += l, st.p = pos = t * 8;\n        continue;\n      } else if (type == 1)\n        lm = flrm, dm = fdrm, lbt = 9, dbt = 5;\n      else if (type == 2) {\n        var hLit = bits(dat, pos, 31) + 257, hcLen = bits(dat, pos + 10, 15) + 4;\n        var tl = hLit + bits(dat, pos + 5, 31) + 1;\n        pos += 14;\n        var ldt = new u8(tl);\n        var clt = new u8(19);\n        for (var i = 0; i < hcLen; ++i) {\n          clt[clim[i]] = bits(dat, pos + i * 3, 7);\n        }\n        pos += hcLen * 3;\n        var clb = max(clt), clbmsk = (1 << clb) - 1;\n        var clm = hMap(clt, clb, 1);\n        for (var i = 0; i < tl; ) {\n          var r = clm[bits(dat, pos, clbmsk)];\n          pos += r & 15;\n          var s = r >>> 4;\n          if (s < 16) {\n            ldt[i++] = s;\n          } else {\n            var c = 0, n = 0;\n            if (s == 16)\n              n = 3 + bits(dat, pos, 3), pos += 2, c = ldt[i - 1];\n            else if (s == 17)\n              n = 3 + bits(dat, pos, 7), pos += 3;\n            else if (s == 18)\n              n = 11 + bits(dat, pos, 127), pos += 7;\n            while (n--)\n              ldt[i++] = c;\n          }\n        }\n        var lt = ldt.subarray(0, hLit), dt = ldt.subarray(hLit);\n        lbt = max(lt);\n        dbt = max(dt);\n        lm = hMap(lt, lbt, 1);\n        dm = hMap(dt, dbt, 1);\n      } else\n        throw \"invalid block type\";\n      if (pos > tbts) {\n        if (noSt)\n          throw \"unexpected EOF\";\n        break;\n      }\n    }\n    if (noBuf)\n      cbuf(bt + 131072);\n    var lms = (1 << lbt) - 1, dms = (1 << dbt) - 1;\n    var lpos = pos;\n    for (; ; lpos = pos) {\n      var c = lm[bits16(dat, pos) & lms], sym = c >>> 4;\n      pos += c & 15;\n      if (pos > tbts) {\n        if (noSt)\n          throw \"unexpected EOF\";\n        break;\n      }\n      if (!c)\n        throw \"invalid length/literal\";\n      if (sym < 256)\n        buf[bt++] = sym;\n      else if (sym == 256) {\n        lpos = pos, lm = null;\n        break;\n      } else {\n        var add = sym - 254;\n        if (sym > 264) {\n          var i = sym - 257, b = fleb[i];\n          add = bits(dat, pos, (1 << b) - 1) + fl[i];\n          pos += b;\n        }\n        var d = dm[bits16(dat, pos) & dms], dsym = d >>> 4;\n        if (!d)\n          throw \"invalid distance\";\n        pos += d & 15;\n        var dt = fd[dsym];\n        if (dsym > 3) {\n          var b = fdeb[dsym];\n          dt += bits16(dat, pos) & (1 << b) - 1, pos += b;\n        }\n        if (pos > tbts) {\n          if (noSt)\n            throw \"unexpected EOF\";\n          break;\n        }\n        if (noBuf)\n          cbuf(bt + 131072);\n        var end = bt + add;\n        for (; bt < end; bt += 4) {\n          buf[bt] = buf[bt - dt];\n          buf[bt + 1] = buf[bt + 1 - dt];\n          buf[bt + 2] = buf[bt + 2 - dt];\n          buf[bt + 3] = buf[bt + 3 - dt];\n        }\n        bt = end;\n      }\n    }\n    st.l = lm, st.p = lpos, st.b = bt;\n    if (lm)\n      final = 1, st.m = lbt, st.d = dm, st.n = dbt;\n  } while (!final);\n  return bt == buf.length ? buf : slc(buf, 0, bt);\n};\nvar wbits = function(d, p, v) {\n  v <<= p & 7;\n  var o = p / 8 | 0;\n  d[o] |= v;\n  d[o + 1] |= v >>> 8;\n};\nvar wbits16 = function(d, p, v) {\n  v <<= p & 7;\n  var o = p / 8 | 0;\n  d[o] |= v;\n  d[o + 1] |= v >>> 8;\n  d[o + 2] |= v >>> 16;\n};\nvar hTree = function(d, mb) {\n  var t = [];\n  for (var i = 0; i < d.length; ++i) {\n    if (d[i])\n      t.push({ s: i, f: d[i] });\n  }\n  var s = t.length;\n  var t2 = t.slice();\n  if (!s)\n    return [et, 0];\n  if (s == 1) {\n    var v = new u8(t[0].s + 1);\n    v[t[0].s] = 1;\n    return [v, 1];\n  }\n  t.sort(function(a, b) {\n    return a.f - b.f;\n  });\n  t.push({ s: -1, f: 25001 });\n  var l = t[0], r = t[1], i0 = 0, i1 = 1, i2 = 2;\n  t[0] = { s: -1, f: l.f + r.f, l, r };\n  while (i1 != s - 1) {\n    l = t[t[i0].f < t[i2].f ? i0++ : i2++];\n    r = t[i0 != i1 && t[i0].f < t[i2].f ? i0++ : i2++];\n    t[i1++] = { s: -1, f: l.f + r.f, l, r };\n  }\n  var maxSym = t2[0].s;\n  for (var i = 1; i < s; ++i) {\n    if (t2[i].s > maxSym)\n      maxSym = t2[i].s;\n  }\n  var tr = new u16(maxSym + 1);\n  var mbt = ln(t[i1 - 1], tr, 0);\n  if (mbt > mb) {\n    var i = 0, dt = 0;\n    var lft = mbt - mb, cst = 1 << lft;\n    t2.sort(function(a, b) {\n      return tr[b.s] - tr[a.s] || a.f - b.f;\n    });\n    for (; i < s; ++i) {\n      var i2_1 = t2[i].s;\n      if (tr[i2_1] > mb) {\n        dt += cst - (1 << mbt - tr[i2_1]);\n        tr[i2_1] = mb;\n      } else\n        break;\n    }\n    dt >>>= lft;\n    while (dt > 0) {\n      var i2_2 = t2[i].s;\n      if (tr[i2_2] < mb)\n        dt -= 1 << mb - tr[i2_2]++ - 1;\n      else\n        ++i;\n    }\n    for (; i >= 0 && dt; --i) {\n      var i2_3 = t2[i].s;\n      if (tr[i2_3] == mb) {\n        --tr[i2_3];\n        ++dt;\n      }\n    }\n    mbt = mb;\n  }\n  return [new u8(tr), mbt];\n};\nvar ln = function(n, l, d) {\n  return n.s == -1 ? Math.max(ln(n.l, l, d + 1), ln(n.r, l, d + 1)) : l[n.s] = d;\n};\nvar lc = function(c) {\n  var s = c.length;\n  while (s && !c[--s])\n    ;\n  var cl = new u16(++s);\n  var cli = 0, cln = c[0], cls = 1;\n  var w = function(v) {\n    cl[cli++] = v;\n  };\n  for (var i = 1; i <= s; ++i) {\n    if (c[i] == cln && i != s)\n      ++cls;\n    else {\n      if (!cln && cls > 2) {\n        for (; cls > 138; cls -= 138)\n          w(32754);\n        if (cls > 2) {\n          w(cls > 10 ? cls - 11 << 5 | 28690 : cls - 3 << 5 | 12305);\n          cls = 0;\n        }\n      } else if (cls > 3) {\n        w(cln), --cls;\n        for (; cls > 6; cls -= 6)\n          w(8304);\n        if (cls > 2)\n          w(cls - 3 << 5 | 8208), cls = 0;\n      }\n      while (cls--)\n        w(cln);\n      cls = 1;\n      cln = c[i];\n    }\n  }\n  return [cl.subarray(0, cli), s];\n};\nvar clen = function(cf, cl) {\n  var l = 0;\n  for (var i = 0; i < cl.length; ++i)\n    l += cf[i] * cl[i];\n  return l;\n};\nvar wfblk = function(out, pos, dat) {\n  var s = dat.length;\n  var o = shft(pos + 2);\n  out[o] = s & 255;\n  out[o + 1] = s >>> 8;\n  out[o + 2] = out[o] ^ 255;\n  out[o + 3] = out[o + 1] ^ 255;\n  for (var i = 0; i < s; ++i)\n    out[o + i + 4] = dat[i];\n  return (o + 4 + s) * 8;\n};\nvar wblk = function(dat, out, final, syms, lf, df, eb, li, bs, bl, p) {\n  wbits(out, p++, final);\n  ++lf[256];\n  var _a2 = hTree(lf, 15), dlt = _a2[0], mlb = _a2[1];\n  var _b2 = hTree(df, 15), ddt = _b2[0], mdb = _b2[1];\n  var _c = lc(dlt), lclt = _c[0], nlc = _c[1];\n  var _d = lc(ddt), lcdt = _d[0], ndc = _d[1];\n  var lcfreq = new u16(19);\n  for (var i = 0; i < lclt.length; ++i)\n    lcfreq[lclt[i] & 31]++;\n  for (var i = 0; i < lcdt.length; ++i)\n    lcfreq[lcdt[i] & 31]++;\n  var _e = hTree(lcfreq, 7), lct = _e[0], mlcb = _e[1];\n  var nlcc = 19;\n  for (; nlcc > 4 && !lct[clim[nlcc - 1]]; --nlcc)\n    ;\n  var flen = bl + 5 << 3;\n  var ftlen = clen(lf, flt) + clen(df, fdt) + eb;\n  var dtlen = clen(lf, dlt) + clen(df, ddt) + eb + 14 + 3 * nlcc + clen(lcfreq, lct) + (2 * lcfreq[16] + 3 * lcfreq[17] + 7 * lcfreq[18]);\n  if (flen <= ftlen && flen <= dtlen)\n    return wfblk(out, p, dat.subarray(bs, bs + bl));\n  var lm, ll, dm, dl;\n  wbits(out, p, 1 + (dtlen < ftlen)), p += 2;\n  if (dtlen < ftlen) {\n    lm = hMap(dlt, mlb, 0), ll = dlt, dm = hMap(ddt, mdb, 0), dl = ddt;\n    var llm = hMap(lct, mlcb, 0);\n    wbits(out, p, nlc - 257);\n    wbits(out, p + 5, ndc - 1);\n    wbits(out, p + 10, nlcc - 4);\n    p += 14;\n    for (var i = 0; i < nlcc; ++i)\n      wbits(out, p + 3 * i, lct[clim[i]]);\n    p += 3 * nlcc;\n    var lcts = [lclt, lcdt];\n    for (var it = 0; it < 2; ++it) {\n      var clct = lcts[it];\n      for (var i = 0; i < clct.length; ++i) {\n        var len = clct[i] & 31;\n        wbits(out, p, llm[len]), p += lct[len];\n        if (len > 15)\n          wbits(out, p, clct[i] >>> 5 & 127), p += clct[i] >>> 12;\n      }\n    }\n  } else {\n    lm = flm, ll = flt, dm = fdm, dl = fdt;\n  }\n  for (var i = 0; i < li; ++i) {\n    if (syms[i] > 255) {\n      var len = syms[i] >>> 18 & 31;\n      wbits16(out, p, lm[len + 257]), p += ll[len + 257];\n      if (len > 7)\n        wbits(out, p, syms[i] >>> 23 & 31), p += fleb[len];\n      var dst = syms[i] & 31;\n      wbits16(out, p, dm[dst]), p += dl[dst];\n      if (dst > 3)\n        wbits16(out, p, syms[i] >>> 5 & 8191), p += fdeb[dst];\n    } else {\n      wbits16(out, p, lm[syms[i]]), p += ll[syms[i]];\n    }\n  }\n  wbits16(out, p, lm[256]);\n  return p + ll[256];\n};\nvar deo = /* @__PURE__ */ new u32([65540, 131080, 131088, 131104, 262176, 1048704, 1048832, 2114560, 2117632]);\nvar et = /* @__PURE__ */ new u8(0);\nvar dflt = function(dat, lvl, plvl, pre, post, lst) {\n  var s = dat.length;\n  var o = new u8(pre + s + 5 * (1 + Math.ceil(s / 7e3)) + post);\n  var w = o.subarray(pre, o.length - post);\n  var pos = 0;\n  if (!lvl || s < 8) {\n    for (var i = 0; i <= s; i += 65535) {\n      var e = i + 65535;\n      if (e < s) {\n        pos = wfblk(w, pos, dat.subarray(i, e));\n      } else {\n        w[i] = lst;\n        pos = wfblk(w, pos, dat.subarray(i, s));\n      }\n    }\n  } else {\n    var opt = deo[lvl - 1];\n    var n = opt >>> 13, c = opt & 8191;\n    var msk_1 = (1 << plvl) - 1;\n    var prev = new u16(32768), head = new u16(msk_1 + 1);\n    var bs1_1 = Math.ceil(plvl / 3), bs2_1 = 2 * bs1_1;\n    var hsh = function(i2) {\n      return (dat[i2] ^ dat[i2 + 1] << bs1_1 ^ dat[i2 + 2] << bs2_1) & msk_1;\n    };\n    var syms = new u32(25e3);\n    var lf = new u16(288), df = new u16(32);\n    var lc_1 = 0, eb = 0, i = 0, li = 0, wi = 0, bs = 0;\n    for (; i < s; ++i) {\n      var hv = hsh(i);\n      var imod = i & 32767, pimod = head[hv];\n      prev[imod] = pimod;\n      head[hv] = imod;\n      if (wi <= i) {\n        var rem = s - i;\n        if ((lc_1 > 7e3 || li > 24576) && rem > 423) {\n          pos = wblk(dat, w, 0, syms, lf, df, eb, li, bs, i - bs, pos);\n          li = lc_1 = eb = 0, bs = i;\n          for (var j = 0; j < 286; ++j)\n            lf[j] = 0;\n          for (var j = 0; j < 30; ++j)\n            df[j] = 0;\n        }\n        var l = 2, d = 0, ch_1 = c, dif = imod - pimod & 32767;\n        if (rem > 2 && hv == hsh(i - dif)) {\n          var maxn = Math.min(n, rem) - 1;\n          var maxd = Math.min(32767, i);\n          var ml = Math.min(258, rem);\n          while (dif <= maxd && --ch_1 && imod != pimod) {\n            if (dat[i + l] == dat[i + l - dif]) {\n              var nl = 0;\n              for (; nl < ml && dat[i + nl] == dat[i + nl - dif]; ++nl)\n                ;\n              if (nl > l) {\n                l = nl, d = dif;\n                if (nl > maxn)\n                  break;\n                var mmd = Math.min(dif, nl - 2);\n                var md = 0;\n                for (var j = 0; j < mmd; ++j) {\n                  var ti = i - dif + j + 32768 & 32767;\n                  var pti = prev[ti];\n                  var cd = ti - pti + 32768 & 32767;\n                  if (cd > md)\n                    md = cd, pimod = ti;\n                }\n              }\n            }\n            imod = pimod, pimod = prev[imod];\n            dif += imod - pimod + 32768 & 32767;\n          }\n        }\n        if (d) {\n          syms[li++] = 268435456 | revfl[l] << 18 | revfd[d];\n          var lin = revfl[l] & 31, din = revfd[d] & 31;\n          eb += fleb[lin] + fdeb[din];\n          ++lf[257 + lin];\n          ++df[din];\n          wi = i + l;\n          ++lc_1;\n        } else {\n          syms[li++] = dat[i];\n          ++lf[dat[i]];\n        }\n      }\n    }\n    pos = wblk(dat, w, lst, syms, lf, df, eb, li, bs, i - bs, pos);\n    if (!lst && pos & 7)\n      pos = wfblk(w, pos + 1, et);\n  }\n  return slc(o, 0, pre + shft(pos) + post);\n};\nvar crct = /* @__PURE__ */ function() {\n  var t = new u32(256);\n  for (var i = 0; i < 256; ++i) {\n    var c = i, k = 9;\n    while (--k)\n      c = (c & 1 && 3988292384) ^ c >>> 1;\n    t[i] = c;\n  }\n  return t;\n}();\nvar crc = function() {\n  var c = -1;\n  return {\n    p: function(d) {\n      var cr = c;\n      for (var i = 0; i < d.length; ++i)\n        cr = crct[cr & 255 ^ d[i]] ^ cr >>> 8;\n      c = cr;\n    },\n    d: function() {\n      return ~c;\n    }\n  };\n};\nvar adler = function() {\n  var a = 1, b = 0;\n  return {\n    p: function(d) {\n      var n = a, m = b;\n      var l = d.length;\n      for (var i = 0; i != l; ) {\n        var e = Math.min(i + 2655, l);\n        for (; i < e; ++i)\n          m += n += d[i];\n        n = (n & 65535) + 15 * (n >> 16), m = (m & 65535) + 15 * (m >> 16);\n      }\n      a = n, b = m;\n    },\n    d: function() {\n      a %= 65521, b %= 65521;\n      return (a & 255) << 24 | a >>> 8 << 16 | (b & 255) << 8 | b >>> 8;\n    }\n  };\n};\nvar dopt = function(dat, opt, pre, post, st) {\n  return dflt(dat, opt.level == null ? 6 : opt.level, opt.mem == null ? Math.ceil(Math.max(8, Math.min(13, Math.log(dat.length))) * 1.5) : 12 + opt.mem, pre, post, !st);\n};\nvar mrg = function(a, b) {\n  var o = {};\n  for (var k in a)\n    o[k] = a[k];\n  for (var k in b)\n    o[k] = b[k];\n  return o;\n};\nvar wcln = function(fn, fnStr, td2) {\n  var dt = fn();\n  var st = fn.toString();\n  var ks = st.slice(st.indexOf(\"[\") + 1, st.lastIndexOf(\"]\")).replace(/ /g, \"\").split(\",\");\n  for (var i = 0; i < dt.length; ++i) {\n    var v = dt[i], k = ks[i];\n    if (typeof v == \"function\") {\n      fnStr += \";\" + k + \"=\";\n      var st_1 = v.toString();\n      if (v.prototype) {\n        if (st_1.indexOf(\"[native code]\") != -1) {\n          var spInd = st_1.indexOf(\" \", 8) + 1;\n          fnStr += st_1.slice(spInd, st_1.indexOf(\"(\", spInd));\n        } else {\n          fnStr += st_1;\n          for (var t in v.prototype)\n            fnStr += \";\" + k + \".prototype.\" + t + \"=\" + v.prototype[t].toString();\n        }\n      } else\n        fnStr += st_1;\n    } else\n      td2[k] = v;\n  }\n  return [fnStr, td2];\n};\nvar ch = [];\nvar cbfs = function(v) {\n  var tl = [];\n  for (var k in v) {\n    if (v[k] instanceof u8 || v[k] instanceof u16 || v[k] instanceof u32)\n      tl.push((v[k] = new v[k].constructor(v[k])).buffer);\n  }\n  return tl;\n};\nvar wrkr = function(fns, init, id2, cb) {\n  var _a2;\n  if (!ch[id2]) {\n    var fnStr = \"\", td_1 = {}, m = fns.length - 1;\n    for (var i = 0; i < m; ++i)\n      _a2 = wcln(fns[i], fnStr, td_1), fnStr = _a2[0], td_1 = _a2[1];\n    ch[id2] = wcln(fns[m], fnStr, td_1);\n  }\n  var td2 = mrg({}, ch[id2][1]);\n  return wk(ch[id2][0] + \";onmessage=function(e){for(var k in e.data)self[k]=e.data[k];onmessage=\" + init.toString() + \"}\", id2, td2, cbfs(td2), cb);\n};\nvar bInflt = function() {\n  return [u8, u16, u32, fleb, fdeb, clim, fl, fd, flrm, fdrm, rev, hMap, max, bits, bits16, shft, slc, inflt, inflateSync, pbf, gu8];\n};\nvar bDflt = function() {\n  return [u8, u16, u32, fleb, fdeb, clim, revfl, revfd, flm, flt, fdm, fdt, rev, deo, et, hMap, wbits, wbits16, hTree, ln, lc, clen, wfblk, wblk, shft, slc, dflt, dopt, deflateSync, pbf];\n};\nvar gze = function() {\n  return [gzh, gzhl, wbytes, crc, crct];\n};\nvar guze = function() {\n  return [gzs, gzl];\n};\nvar zle = function() {\n  return [zlh, wbytes, adler];\n};\nvar zule = function() {\n  return [zlv];\n};\nvar pbf = function(msg) {\n  return postMessage(msg, [msg.buffer]);\n};\nvar gu8 = function(o) {\n  return o && o.size && new u8(o.size);\n};\nvar cbify = function(dat, opts, fns, init, id2, cb) {\n  var w = wrkr(fns, init, id2, function(err, dat2) {\n    w.terminate();\n    cb(err, dat2);\n  });\n  w.postMessage([dat, opts], opts.consume ? [dat.buffer] : []);\n  return function() {\n    w.terminate();\n  };\n};\nvar astrm = function(strm) {\n  strm.ondata = function(dat, final) {\n    return postMessage([dat, final], [dat.buffer]);\n  };\n  return function(ev) {\n    return strm.push(ev.data[0], ev.data[1]);\n  };\n};\nvar astrmify = function(fns, strm, opts, init, id2) {\n  var t;\n  var w = wrkr(fns, init, id2, function(err, dat) {\n    if (err)\n      w.terminate(), strm.ondata.call(strm, err);\n    else {\n      if (dat[1])\n        w.terminate();\n      strm.ondata.call(strm, err, dat[0], dat[1]);\n    }\n  });\n  w.postMessage(opts);\n  strm.push = function(d, f) {\n    if (t)\n      throw \"stream finished\";\n    if (!strm.ondata)\n      throw \"no stream handler\";\n    w.postMessage([d, t = f], [d.buffer]);\n  };\n  strm.terminate = function() {\n    w.terminate();\n  };\n};\nvar b2 = function(d, b) {\n  return d[b] | d[b + 1] << 8;\n};\nvar b4 = function(d, b) {\n  return (d[b] | d[b + 1] << 8 | d[b + 2] << 16 | d[b + 3] << 24) >>> 0;\n};\nvar b8 = function(d, b) {\n  return b4(d, b) + b4(d, b + 4) * 4294967296;\n};\nvar wbytes = function(d, b, v) {\n  for (; v; ++b)\n    d[b] = v, v >>>= 8;\n};\nvar gzh = function(c, o) {\n  var fn = o.filename;\n  c[0] = 31, c[1] = 139, c[2] = 8, c[8] = o.level < 2 ? 4 : o.level == 9 ? 2 : 0, c[9] = 3;\n  if (o.mtime != 0)\n    wbytes(c, 4, Math.floor(new Date(o.mtime || Date.now()) / 1e3));\n  if (fn) {\n    c[3] = 8;\n    for (var i = 0; i <= fn.length; ++i)\n      c[i + 10] = fn.charCodeAt(i);\n  }\n};\nvar gzs = function(d) {\n  if (d[0] != 31 || d[1] != 139 || d[2] != 8)\n    throw \"invalid gzip data\";\n  var flg = d[3];\n  var st = 10;\n  if (flg & 4)\n    st += d[10] | (d[11] << 8) + 2;\n  for (var zs = (flg >> 3 & 1) + (flg >> 4 & 1); zs > 0; zs -= !d[st++])\n    ;\n  return st + (flg & 2);\n};\nvar gzl = function(d) {\n  var l = d.length;\n  return (d[l - 4] | d[l - 3] << 8 | d[l - 2] << 16 | d[l - 1] << 24) >>> 0;\n};\nvar gzhl = function(o) {\n  return 10 + (o.filename && o.filename.length + 1 || 0);\n};\nvar zlh = function(c, o) {\n  var lv = o.level, fl2 = lv == 0 ? 0 : lv < 6 ? 1 : lv == 9 ? 3 : 2;\n  c[0] = 120, c[1] = fl2 << 6 | (fl2 ? 32 - 2 * fl2 : 1);\n};\nvar zlv = function(d) {\n  if ((d[0] & 15) != 8 || d[0] >>> 4 > 7 || (d[0] << 8 | d[1]) % 31)\n    throw \"invalid zlib data\";\n  if (d[1] & 32)\n    throw \"invalid zlib data: preset dictionaries not supported\";\n};\nfunction AsyncCmpStrm(opts, cb) {\n  if (!cb && typeof opts == \"function\")\n    cb = opts, opts = {};\n  this.ondata = cb;\n  return opts;\n}\nvar Deflate = /* @__PURE__ */ function() {\n  function Deflate2(opts, cb) {\n    if (!cb && typeof opts == \"function\")\n      cb = opts, opts = {};\n    this.ondata = cb;\n    this.o = opts || {};\n  }\n  Deflate2.prototype.p = function(c, f) {\n    this.ondata(dopt(c, this.o, 0, 0, !f), f);\n  };\n  Deflate2.prototype.push = function(chunk, final) {\n    if (this.d)\n      throw \"stream finished\";\n    if (!this.ondata)\n      throw \"no stream handler\";\n    this.d = final;\n    this.p(chunk, final || false);\n  };\n  return Deflate2;\n}();\nvar AsyncDeflate = /* @__PURE__ */ function() {\n  function AsyncDeflate2(opts, cb) {\n    astrmify([\n      bDflt,\n      function() {\n        return [astrm, Deflate];\n      }\n    ], this, AsyncCmpStrm.call(this, opts, cb), function(ev) {\n      var strm = new Deflate(ev.data);\n      onmessage = astrm(strm);\n    }, 6);\n  }\n  return AsyncDeflate2;\n}();\nfunction deflate(data, opts, cb) {\n  if (!cb)\n    cb = opts, opts = {};\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  return cbify(data, opts, [\n    bDflt\n  ], function(ev) {\n    return pbf(deflateSync(ev.data[0], ev.data[1]));\n  }, 0, cb);\n}\nfunction deflateSync(data, opts) {\n  return dopt(data, opts || {}, 0, 0);\n}\nvar Inflate = /* @__PURE__ */ function() {\n  function Inflate2(cb) {\n    this.s = {};\n    this.p = new u8(0);\n    this.ondata = cb;\n  }\n  Inflate2.prototype.e = function(c) {\n    if (this.d)\n      throw \"stream finished\";\n    if (!this.ondata)\n      throw \"no stream handler\";\n    var l = this.p.length;\n    var n = new u8(l + c.length);\n    n.set(this.p), n.set(c, l), this.p = n;\n  };\n  Inflate2.prototype.c = function(final) {\n    this.d = this.s.i = final || false;\n    var bts = this.s.b;\n    var dt = inflt(this.p, this.o, this.s);\n    this.ondata(slc(dt, bts, this.s.b), this.d);\n    this.o = slc(dt, this.s.b - 32768), this.s.b = this.o.length;\n    this.p = slc(this.p, this.s.p / 8 | 0), this.s.p &= 7;\n  };\n  Inflate2.prototype.push = function(chunk, final) {\n    this.e(chunk), this.c(final);\n  };\n  return Inflate2;\n}();\nvar AsyncInflate = /* @__PURE__ */ function() {\n  function AsyncInflate2(cb) {\n    this.ondata = cb;\n    astrmify([\n      bInflt,\n      function() {\n        return [astrm, Inflate];\n      }\n    ], this, 0, function() {\n      var strm = new Inflate();\n      onmessage = astrm(strm);\n    }, 7);\n  }\n  return AsyncInflate2;\n}();\nfunction inflate(data, opts, cb) {\n  if (!cb)\n    cb = opts, opts = {};\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  return cbify(data, opts, [\n    bInflt\n  ], function(ev) {\n    return pbf(inflateSync(ev.data[0], gu8(ev.data[1])));\n  }, 1, cb);\n}\nfunction inflateSync(data, out) {\n  return inflt(data, out);\n}\nvar Gzip = /* @__PURE__ */ function() {\n  function Gzip2(opts, cb) {\n    this.c = crc();\n    this.l = 0;\n    this.v = 1;\n    Deflate.call(this, opts, cb);\n  }\n  Gzip2.prototype.push = function(chunk, final) {\n    Deflate.prototype.push.call(this, chunk, final);\n  };\n  Gzip2.prototype.p = function(c, f) {\n    this.c.p(c);\n    this.l += c.length;\n    var raw = dopt(c, this.o, this.v && gzhl(this.o), f && 8, !f);\n    if (this.v)\n      gzh(raw, this.o), this.v = 0;\n    if (f)\n      wbytes(raw, raw.length - 8, this.c.d()), wbytes(raw, raw.length - 4, this.l);\n    this.ondata(raw, f);\n  };\n  return Gzip2;\n}();\nvar AsyncGzip = /* @__PURE__ */ function() {\n  function AsyncGzip2(opts, cb) {\n    astrmify([\n      bDflt,\n      gze,\n      function() {\n        return [astrm, Deflate, Gzip];\n      }\n    ], this, AsyncCmpStrm.call(this, opts, cb), function(ev) {\n      var strm = new Gzip(ev.data);\n      onmessage = astrm(strm);\n    }, 8);\n  }\n  return AsyncGzip2;\n}();\nfunction gzip(data, opts, cb) {\n  if (!cb)\n    cb = opts, opts = {};\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  return cbify(data, opts, [\n    bDflt,\n    gze,\n    function() {\n      return [gzipSync];\n    }\n  ], function(ev) {\n    return pbf(gzipSync(ev.data[0], ev.data[1]));\n  }, 2, cb);\n}\nfunction gzipSync(data, opts) {\n  if (!opts)\n    opts = {};\n  var c = crc(), l = data.length;\n  c.p(data);\n  var d = dopt(data, opts, gzhl(opts), 8), s = d.length;\n  return gzh(d, opts), wbytes(d, s - 8, c.d()), wbytes(d, s - 4, l), d;\n}\nvar Gunzip = /* @__PURE__ */ function() {\n  function Gunzip2(cb) {\n    this.v = 1;\n    Inflate.call(this, cb);\n  }\n  Gunzip2.prototype.push = function(chunk, final) {\n    Inflate.prototype.e.call(this, chunk);\n    if (this.v) {\n      var s = this.p.length > 3 ? gzs(this.p) : 4;\n      if (s >= this.p.length && !final)\n        return;\n      this.p = this.p.subarray(s), this.v = 0;\n    }\n    if (final) {\n      if (this.p.length < 8)\n        throw \"invalid gzip stream\";\n      this.p = this.p.subarray(0, -8);\n    }\n    Inflate.prototype.c.call(this, final);\n  };\n  return Gunzip2;\n}();\nvar AsyncGunzip = /* @__PURE__ */ function() {\n  function AsyncGunzip2(cb) {\n    this.ondata = cb;\n    astrmify([\n      bInflt,\n      guze,\n      function() {\n        return [astrm, Inflate, Gunzip];\n      }\n    ], this, 0, function() {\n      var strm = new Gunzip();\n      onmessage = astrm(strm);\n    }, 9);\n  }\n  return AsyncGunzip2;\n}();\nfunction gunzip(data, opts, cb) {\n  if (!cb)\n    cb = opts, opts = {};\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  return cbify(data, opts, [\n    bInflt,\n    guze,\n    function() {\n      return [gunzipSync];\n    }\n  ], function(ev) {\n    return pbf(gunzipSync(ev.data[0]));\n  }, 3, cb);\n}\nfunction gunzipSync(data, out) {\n  return inflt(data.subarray(gzs(data), -8), out || new u8(gzl(data)));\n}\nvar Zlib = /* @__PURE__ */ function() {\n  function Zlib2(opts, cb) {\n    this.c = adler();\n    this.v = 1;\n    Deflate.call(this, opts, cb);\n  }\n  Zlib2.prototype.push = function(chunk, final) {\n    Deflate.prototype.push.call(this, chunk, final);\n  };\n  Zlib2.prototype.p = function(c, f) {\n    this.c.p(c);\n    var raw = dopt(c, this.o, this.v && 2, f && 4, !f);\n    if (this.v)\n      zlh(raw, this.o), this.v = 0;\n    if (f)\n      wbytes(raw, raw.length - 4, this.c.d());\n    this.ondata(raw, f);\n  };\n  return Zlib2;\n}();\nvar AsyncZlib = /* @__PURE__ */ function() {\n  function AsyncZlib2(opts, cb) {\n    astrmify([\n      bDflt,\n      zle,\n      function() {\n        return [astrm, Deflate, Zlib];\n      }\n    ], this, AsyncCmpStrm.call(this, opts, cb), function(ev) {\n      var strm = new Zlib(ev.data);\n      onmessage = astrm(strm);\n    }, 10);\n  }\n  return AsyncZlib2;\n}();\nfunction zlib(data, opts, cb) {\n  if (!cb)\n    cb = opts, opts = {};\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  return cbify(data, opts, [\n    bDflt,\n    zle,\n    function() {\n      return [zlibSync];\n    }\n  ], function(ev) {\n    return pbf(zlibSync(ev.data[0], ev.data[1]));\n  }, 4, cb);\n}\nfunction zlibSync(data, opts) {\n  if (!opts)\n    opts = {};\n  var a = adler();\n  a.p(data);\n  var d = dopt(data, opts, 2, 4);\n  return zlh(d, opts), wbytes(d, d.length - 4, a.d()), d;\n}\nvar Unzlib = /* @__PURE__ */ function() {\n  function Unzlib2(cb) {\n    this.v = 1;\n    Inflate.call(this, cb);\n  }\n  Unzlib2.prototype.push = function(chunk, final) {\n    Inflate.prototype.e.call(this, chunk);\n    if (this.v) {\n      if (this.p.length < 2 && !final)\n        return;\n      this.p = this.p.subarray(2), this.v = 0;\n    }\n    if (final) {\n      if (this.p.length < 4)\n        throw \"invalid zlib stream\";\n      this.p = this.p.subarray(0, -4);\n    }\n    Inflate.prototype.c.call(this, final);\n  };\n  return Unzlib2;\n}();\nvar AsyncUnzlib = /* @__PURE__ */ function() {\n  function AsyncUnzlib2(cb) {\n    this.ondata = cb;\n    astrmify([\n      bInflt,\n      zule,\n      function() {\n        return [astrm, Inflate, Unzlib];\n      }\n    ], this, 0, function() {\n      var strm = new Unzlib();\n      onmessage = astrm(strm);\n    }, 11);\n  }\n  return AsyncUnzlib2;\n}();\nfunction unzlib(data, opts, cb) {\n  if (!cb)\n    cb = opts, opts = {};\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  return cbify(data, opts, [\n    bInflt,\n    zule,\n    function() {\n      return [unzlibSync];\n    }\n  ], function(ev) {\n    return pbf(unzlibSync(ev.data[0], gu8(ev.data[1])));\n  }, 5, cb);\n}\nfunction unzlibSync(data, out) {\n  return inflt((zlv(data), data.subarray(2, -4)), out);\n}\nvar Decompress = /* @__PURE__ */ function() {\n  function Decompress2(cb) {\n    this.G = Gunzip;\n    this.I = Inflate;\n    this.Z = Unzlib;\n    this.ondata = cb;\n  }\n  Decompress2.prototype.push = function(chunk, final) {\n    if (!this.ondata)\n      throw \"no stream handler\";\n    if (!this.s) {\n      if (this.p && this.p.length) {\n        var n = new u8(this.p.length + chunk.length);\n        n.set(this.p), n.set(chunk, this.p.length);\n      } else\n        this.p = chunk;\n      if (this.p.length > 2) {\n        var _this_1 = this;\n        var cb = function() {\n          _this_1.ondata.apply(_this_1, arguments);\n        };\n        this.s = this.p[0] == 31 && this.p[1] == 139 && this.p[2] == 8 ? new this.G(cb) : (this.p[0] & 15) != 8 || this.p[0] >> 4 > 7 || (this.p[0] << 8 | this.p[1]) % 31 ? new this.I(cb) : new this.Z(cb);\n        this.s.push(this.p, final);\n        this.p = null;\n      }\n    } else\n      this.s.push(chunk, final);\n  };\n  return Decompress2;\n}();\nvar AsyncDecompress = /* @__PURE__ */ function() {\n  function AsyncDecompress2(cb) {\n    this.G = AsyncGunzip;\n    this.I = AsyncInflate;\n    this.Z = AsyncUnzlib;\n    this.ondata = cb;\n  }\n  AsyncDecompress2.prototype.push = function(chunk, final) {\n    Decompress.prototype.push.call(this, chunk, final);\n  };\n  return AsyncDecompress2;\n}();\nfunction decompress(data, opts, cb) {\n  if (!cb)\n    cb = opts, opts = {};\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  return data[0] == 31 && data[1] == 139 && data[2] == 8 ? gunzip(data, opts, cb) : (data[0] & 15) != 8 || data[0] >> 4 > 7 || (data[0] << 8 | data[1]) % 31 ? inflate(data, opts, cb) : unzlib(data, opts, cb);\n}\nfunction decompressSync(data, out) {\n  return data[0] == 31 && data[1] == 139 && data[2] == 8 ? gunzipSync(data, out) : (data[0] & 15) != 8 || data[0] >> 4 > 7 || (data[0] << 8 | data[1]) % 31 ? inflateSync(data, out) : unzlibSync(data, out);\n}\nvar fltn = function(d, p, t, o) {\n  for (var k in d) {\n    var val = d[k], n = p + k;\n    if (val instanceof u8)\n      t[n] = [val, o];\n    else if (Array.isArray(val))\n      t[n] = [val[0], mrg(o, val[1])];\n    else\n      fltn(val, n + \"/\", t, o);\n  }\n};\nvar te = typeof TextEncoder != \"undefined\" && /* @__PURE__ */ new TextEncoder();\nvar td = typeof TextDecoder != \"undefined\" && /* @__PURE__ */ new TextDecoder();\nvar tds = 0;\ntry {\n  td.decode(et, { stream: true });\n  tds = 1;\n} catch (e) {\n}\nvar dutf8 = function(d) {\n  for (var r = \"\", i = 0; ; ) {\n    var c = d[i++];\n    var eb = (c > 127) + (c > 223) + (c > 239);\n    if (i + eb > d.length)\n      return [r, slc(d, i - 1)];\n    if (!eb)\n      r += String.fromCharCode(c);\n    else if (eb == 3) {\n      c = ((c & 15) << 18 | (d[i++] & 63) << 12 | (d[i++] & 63) << 6 | d[i++] & 63) - 65536, r += String.fromCharCode(55296 | c >> 10, 56320 | c & 1023);\n    } else if (eb & 1)\n      r += String.fromCharCode((c & 31) << 6 | d[i++] & 63);\n    else\n      r += String.fromCharCode((c & 15) << 12 | (d[i++] & 63) << 6 | d[i++] & 63);\n  }\n};\nvar DecodeUTF8 = /* @__PURE__ */ function() {\n  function DecodeUTF82(cb) {\n    this.ondata = cb;\n    if (tds)\n      this.t = new TextDecoder();\n    else\n      this.p = et;\n  }\n  DecodeUTF82.prototype.push = function(chunk, final) {\n    if (!this.ondata)\n      throw \"no callback\";\n    final = !!final;\n    if (this.t) {\n      this.ondata(this.t.decode(chunk, { stream: true }), final);\n      if (final) {\n        if (this.t.decode().length)\n          throw \"invalid utf-8 data\";\n        this.t = null;\n      }\n      return;\n    }\n    if (!this.p)\n      throw \"stream finished\";\n    var dat = new u8(this.p.length + chunk.length);\n    dat.set(this.p);\n    dat.set(chunk, this.p.length);\n    var _a2 = dutf8(dat), ch3 = _a2[0], np = _a2[1];\n    if (final) {\n      if (np.length)\n        throw \"invalid utf-8 data\";\n      this.p = null;\n    } else\n      this.p = np;\n    this.ondata(ch3, final);\n  };\n  return DecodeUTF82;\n}();\nvar EncodeUTF8 = /* @__PURE__ */ function() {\n  function EncodeUTF82(cb) {\n    this.ondata = cb;\n  }\n  EncodeUTF82.prototype.push = function(chunk, final) {\n    if (!this.ondata)\n      throw \"no callback\";\n    if (this.d)\n      throw \"stream finished\";\n    this.ondata(strToU8(chunk), this.d = final || false);\n  };\n  return EncodeUTF82;\n}();\nfunction strToU8(str, latin1) {\n  if (latin1) {\n    var ar_1 = new u8(str.length);\n    for (var i = 0; i < str.length; ++i)\n      ar_1[i] = str.charCodeAt(i);\n    return ar_1;\n  }\n  if (te)\n    return te.encode(str);\n  var l = str.length;\n  var ar = new u8(str.length + (str.length >> 1));\n  var ai = 0;\n  var w = function(v) {\n    ar[ai++] = v;\n  };\n  for (var i = 0; i < l; ++i) {\n    if (ai + 5 > ar.length) {\n      var n = new u8(ai + 8 + (l - i << 1));\n      n.set(ar);\n      ar = n;\n    }\n    var c = str.charCodeAt(i);\n    if (c < 128 || latin1)\n      w(c);\n    else if (c < 2048)\n      w(192 | c >> 6), w(128 | c & 63);\n    else if (c > 55295 && c < 57344)\n      c = 65536 + (c & 1023 << 10) | str.charCodeAt(++i) & 1023, w(240 | c >> 18), w(128 | c >> 12 & 63), w(128 | c >> 6 & 63), w(128 | c & 63);\n    else\n      w(224 | c >> 12), w(128 | c >> 6 & 63), w(128 | c & 63);\n  }\n  return slc(ar, 0, ai);\n}\nfunction strFromU8(dat, latin1) {\n  if (latin1) {\n    var r = \"\";\n    for (var i = 0; i < dat.length; i += 16384)\n      r += String.fromCharCode.apply(null, dat.subarray(i, i + 16384));\n    return r;\n  } else if (td)\n    return td.decode(dat);\n  else {\n    var _a2 = dutf8(dat), out = _a2[0], ext = _a2[1];\n    if (ext.length)\n      throw \"invalid utf-8 data\";\n    return out;\n  }\n}\nvar dbf = function(l) {\n  return l == 1 ? 3 : l < 6 ? 2 : l == 9 ? 1 : 0;\n};\nvar slzh = function(d, b) {\n  return b + 30 + b2(d, b + 26) + b2(d, b + 28);\n};\nvar zh = function(d, b, z) {\n  var fnl = b2(d, b + 28), fn = strFromU8(d.subarray(b + 46, b + 46 + fnl), !(b2(d, b + 8) & 2048)), es = b + 46 + fnl, bs = b4(d, b + 20);\n  var _a2 = z && bs == 4294967295 ? z64e(d, es) : [bs, b4(d, b + 24), b4(d, b + 42)], sc = _a2[0], su = _a2[1], off = _a2[2];\n  return [b2(d, b + 10), sc, su, fn, es + b2(d, b + 30) + b2(d, b + 32), off];\n};\nvar z64e = function(d, b) {\n  for (; b2(d, b) != 1; b += 4 + b2(d, b + 2))\n    ;\n  return [b8(d, b + 12), b8(d, b + 4), b8(d, b + 20)];\n};\nvar exfl = function(ex) {\n  var le = 0;\n  if (ex) {\n    for (var k in ex) {\n      var l = ex[k].length;\n      if (l > 65535)\n        throw \"extra field too long\";\n      le += l + 4;\n    }\n  }\n  return le;\n};\nvar wzh = function(d, b, f, fn, u, c, ce, co) {\n  var fl2 = fn.length, ex = f.extra, col = co && co.length;\n  var exl = exfl(ex);\n  wbytes(d, b, ce != null ? 33639248 : 67324752), b += 4;\n  if (ce != null)\n    d[b++] = 20, d[b++] = f.os;\n  d[b] = 20, b += 2;\n  d[b++] = f.flag << 1 | (c == null && 8), d[b++] = u && 8;\n  d[b++] = f.compression & 255, d[b++] = f.compression >> 8;\n  var dt = new Date(f.mtime == null ? Date.now() : f.mtime), y = dt.getFullYear() - 1980;\n  if (y < 0 || y > 119)\n    throw \"date not in range 1980-2099\";\n  wbytes(d, b, y << 25 | dt.getMonth() + 1 << 21 | dt.getDate() << 16 | dt.getHours() << 11 | dt.getMinutes() << 5 | dt.getSeconds() >>> 1), b += 4;\n  if (c != null) {\n    wbytes(d, b, f.crc);\n    wbytes(d, b + 4, c);\n    wbytes(d, b + 8, f.size);\n  }\n  wbytes(d, b + 12, fl2);\n  wbytes(d, b + 14, exl), b += 16;\n  if (ce != null) {\n    wbytes(d, b, col);\n    wbytes(d, b + 6, f.attrs);\n    wbytes(d, b + 10, ce), b += 14;\n  }\n  d.set(fn, b);\n  b += fl2;\n  if (exl) {\n    for (var k in ex) {\n      var exf = ex[k], l = exf.length;\n      wbytes(d, b, +k);\n      wbytes(d, b + 2, l);\n      d.set(exf, b + 4), b += 4 + l;\n    }\n  }\n  if (col)\n    d.set(co, b), b += col;\n  return b;\n};\nvar wzf = function(o, b, c, d, e) {\n  wbytes(o, b, 101010256);\n  wbytes(o, b + 8, c);\n  wbytes(o, b + 10, c);\n  wbytes(o, b + 12, d);\n  wbytes(o, b + 16, e);\n};\nvar ZipPassThrough = /* @__PURE__ */ function() {\n  function ZipPassThrough2(filename) {\n    this.filename = filename;\n    this.c = crc();\n    this.size = 0;\n    this.compression = 0;\n  }\n  ZipPassThrough2.prototype.process = function(chunk, final) {\n    this.ondata(null, chunk, final);\n  };\n  ZipPassThrough2.prototype.push = function(chunk, final) {\n    if (!this.ondata)\n      throw \"no callback - add to ZIP archive before pushing\";\n    this.c.p(chunk);\n    this.size += chunk.length;\n    if (final)\n      this.crc = this.c.d();\n    this.process(chunk, final || false);\n  };\n  return ZipPassThrough2;\n}();\nvar ZipDeflate = /* @__PURE__ */ function() {\n  function ZipDeflate2(filename, opts) {\n    var _this_1 = this;\n    if (!opts)\n      opts = {};\n    ZipPassThrough.call(this, filename);\n    this.d = new Deflate(opts, function(dat, final) {\n      _this_1.ondata(null, dat, final);\n    });\n    this.compression = 8;\n    this.flag = dbf(opts.level);\n  }\n  ZipDeflate2.prototype.process = function(chunk, final) {\n    try {\n      this.d.push(chunk, final);\n    } catch (e) {\n      this.ondata(e, null, final);\n    }\n  };\n  ZipDeflate2.prototype.push = function(chunk, final) {\n    ZipPassThrough.prototype.push.call(this, chunk, final);\n  };\n  return ZipDeflate2;\n}();\nvar AsyncZipDeflate = /* @__PURE__ */ function() {\n  function AsyncZipDeflate2(filename, opts) {\n    var _this_1 = this;\n    if (!opts)\n      opts = {};\n    ZipPassThrough.call(this, filename);\n    this.d = new AsyncDeflate(opts, function(err, dat, final) {\n      _this_1.ondata(err, dat, final);\n    });\n    this.compression = 8;\n    this.flag = dbf(opts.level);\n    this.terminate = this.d.terminate;\n  }\n  AsyncZipDeflate2.prototype.process = function(chunk, final) {\n    this.d.push(chunk, final);\n  };\n  AsyncZipDeflate2.prototype.push = function(chunk, final) {\n    ZipPassThrough.prototype.push.call(this, chunk, final);\n  };\n  return AsyncZipDeflate2;\n}();\nvar Zip = /* @__PURE__ */ function() {\n  function Zip2(cb) {\n    this.ondata = cb;\n    this.u = [];\n    this.d = 1;\n  }\n  Zip2.prototype.add = function(file) {\n    var _this_1 = this;\n    if (this.d & 2)\n      throw \"stream finished\";\n    var f = strToU8(file.filename), fl2 = f.length;\n    var com = file.comment, o = com && strToU8(com);\n    var u = fl2 != file.filename.length || o && com.length != o.length;\n    var hl = fl2 + exfl(file.extra) + 30;\n    if (fl2 > 65535)\n      throw \"filename too long\";\n    var header = new u8(hl);\n    wzh(header, 0, file, f, u);\n    var chks = [header];\n    var pAll = function() {\n      for (var _i = 0, chks_1 = chks; _i < chks_1.length; _i++) {\n        var chk = chks_1[_i];\n        _this_1.ondata(null, chk, false);\n      }\n      chks = [];\n    };\n    var tr = this.d;\n    this.d = 0;\n    var ind = this.u.length;\n    var uf = mrg(file, {\n      f,\n      u,\n      o,\n      t: function() {\n        if (file.terminate)\n          file.terminate();\n      },\n      r: function() {\n        pAll();\n        if (tr) {\n          var nxt = _this_1.u[ind + 1];\n          if (nxt)\n            nxt.r();\n          else\n            _this_1.d = 1;\n        }\n        tr = 1;\n      }\n    });\n    var cl = 0;\n    file.ondata = function(err, dat, final) {\n      if (err) {\n        _this_1.ondata(err, dat, final);\n        _this_1.terminate();\n      } else {\n        cl += dat.length;\n        chks.push(dat);\n        if (final) {\n          var dd = new u8(16);\n          wbytes(dd, 0, 134695760);\n          wbytes(dd, 4, file.crc);\n          wbytes(dd, 8, cl);\n          wbytes(dd, 12, file.size);\n          chks.push(dd);\n          uf.c = cl, uf.b = hl + cl + 16, uf.crc = file.crc, uf.size = file.size;\n          if (tr)\n            uf.r();\n          tr = 1;\n        } else if (tr)\n          pAll();\n      }\n    };\n    this.u.push(uf);\n  };\n  Zip2.prototype.end = function() {\n    var _this_1 = this;\n    if (this.d & 2) {\n      if (this.d & 1)\n        throw \"stream finishing\";\n      throw \"stream finished\";\n    }\n    if (this.d)\n      this.e();\n    else\n      this.u.push({\n        r: function() {\n          if (!(_this_1.d & 1))\n            return;\n          _this_1.u.splice(-1, 1);\n          _this_1.e();\n        },\n        t: function() {\n        }\n      });\n    this.d = 3;\n  };\n  Zip2.prototype.e = function() {\n    var bt = 0, l = 0, tl = 0;\n    for (var _i = 0, _a2 = this.u; _i < _a2.length; _i++) {\n      var f = _a2[_i];\n      tl += 46 + f.f.length + exfl(f.extra) + (f.o ? f.o.length : 0);\n    }\n    var out = new u8(tl + 22);\n    for (var _b2 = 0, _c = this.u; _b2 < _c.length; _b2++) {\n      var f = _c[_b2];\n      wzh(out, bt, f, f.f, f.u, f.c, l, f.o);\n      bt += 46 + f.f.length + exfl(f.extra) + (f.o ? f.o.length : 0), l += f.b;\n    }\n    wzf(out, bt, this.u.length, tl, l);\n    this.ondata(null, out, true);\n    this.d = 2;\n  };\n  Zip2.prototype.terminate = function() {\n    for (var _i = 0, _a2 = this.u; _i < _a2.length; _i++) {\n      var f = _a2[_i];\n      f.t();\n    }\n    this.d = 2;\n  };\n  return Zip2;\n}();\nfunction zip(data, opts, cb) {\n  if (!cb)\n    cb = opts, opts = {};\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  var r = {};\n  fltn(data, \"\", r, opts);\n  var k = Object.keys(r);\n  var lft = k.length, o = 0, tot = 0;\n  var slft = lft, files = new Array(lft);\n  var term = [];\n  var tAll = function() {\n    for (var i2 = 0; i2 < term.length; ++i2)\n      term[i2]();\n  };\n  var cbf = function() {\n    var out = new u8(tot + 22), oe = o, cdl = tot - o;\n    tot = 0;\n    for (var i2 = 0; i2 < slft; ++i2) {\n      var f = files[i2];\n      try {\n        var l = f.c.length;\n        wzh(out, tot, f, f.f, f.u, l);\n        var badd = 30 + f.f.length + exfl(f.extra);\n        var loc = tot + badd;\n        out.set(f.c, loc);\n        wzh(out, o, f, f.f, f.u, l, tot, f.m), o += 16 + badd + (f.m ? f.m.length : 0), tot = loc + l;\n      } catch (e) {\n        return cb(e, null);\n      }\n    }\n    wzf(out, o, files.length, cdl, oe);\n    cb(null, out);\n  };\n  if (!lft)\n    cbf();\n  var _loop_1 = function(i2) {\n    var fn = k[i2];\n    var _a2 = r[fn], file = _a2[0], p = _a2[1];\n    var c = crc(), size = file.length;\n    c.p(file);\n    var f = strToU8(fn), s = f.length;\n    var com = p.comment, m = com && strToU8(com), ms = m && m.length;\n    var exl = exfl(p.extra);\n    var compression = p.level == 0 ? 0 : 8;\n    var cbl = function(e, d) {\n      if (e) {\n        tAll();\n        cb(e, null);\n      } else {\n        var l = d.length;\n        files[i2] = mrg(p, {\n          size,\n          crc: c.d(),\n          c: d,\n          f,\n          m,\n          u: s != fn.length || m && com.length != ms,\n          compression\n        });\n        o += 30 + s + exl + l;\n        tot += 76 + 2 * (s + exl) + (ms || 0) + l;\n        if (!--lft)\n          cbf();\n      }\n    };\n    if (s > 65535)\n      cbl(\"filename too long\", null);\n    if (!compression)\n      cbl(null, file);\n    else if (size < 16e4) {\n      try {\n        cbl(null, deflateSync(file, p));\n      } catch (e) {\n        cbl(e, null);\n      }\n    } else\n      term.push(deflate(file, p, cbl));\n  };\n  for (var i = 0; i < slft; ++i) {\n    _loop_1(i);\n  }\n  return tAll;\n}\nfunction zipSync(data, opts) {\n  if (!opts)\n    opts = {};\n  var r = {};\n  var files = [];\n  fltn(data, \"\", r, opts);\n  var o = 0;\n  var tot = 0;\n  for (var fn in r) {\n    var _a2 = r[fn], file = _a2[0], p = _a2[1];\n    var compression = p.level == 0 ? 0 : 8;\n    var f = strToU8(fn), s = f.length;\n    var com = p.comment, m = com && strToU8(com), ms = m && m.length;\n    var exl = exfl(p.extra);\n    if (s > 65535)\n      throw \"filename too long\";\n    var d = compression ? deflateSync(file, p) : file, l = d.length;\n    var c = crc();\n    c.p(file);\n    files.push(mrg(p, {\n      size: file.length,\n      crc: c.d(),\n      c: d,\n      f,\n      m,\n      u: s != fn.length || m && com.length != ms,\n      o,\n      compression\n    }));\n    o += 30 + s + exl + l;\n    tot += 76 + 2 * (s + exl) + (ms || 0) + l;\n  }\n  var out = new u8(tot + 22), oe = o, cdl = tot - o;\n  for (var i = 0; i < files.length; ++i) {\n    var f = files[i];\n    wzh(out, f.o, f, f.f, f.u, f.c.length);\n    var badd = 30 + f.f.length + exfl(f.extra);\n    out.set(f.c, f.o + badd);\n    wzh(out, o, f, f.f, f.u, f.c.length, f.o, f.m), o += 16 + badd + (f.m ? f.m.length : 0);\n  }\n  wzf(out, o, files.length, cdl, oe);\n  return out;\n}\nvar UnzipPassThrough = /* @__PURE__ */ function() {\n  function UnzipPassThrough2() {\n  }\n  UnzipPassThrough2.prototype.push = function(data, final) {\n    this.ondata(null, data, final);\n  };\n  UnzipPassThrough2.compression = 0;\n  return UnzipPassThrough2;\n}();\nvar UnzipInflate = /* @__PURE__ */ function() {\n  function UnzipInflate2() {\n    var _this_1 = this;\n    this.i = new Inflate(function(dat, final) {\n      _this_1.ondata(null, dat, final);\n    });\n  }\n  UnzipInflate2.prototype.push = function(data, final) {\n    try {\n      this.i.push(data, final);\n    } catch (e) {\n      this.ondata(e, data, final);\n    }\n  };\n  UnzipInflate2.compression = 8;\n  return UnzipInflate2;\n}();\nvar AsyncUnzipInflate = /* @__PURE__ */ function() {\n  function AsyncUnzipInflate2(_, sz) {\n    var _this_1 = this;\n    if (sz < 32e4) {\n      this.i = new Inflate(function(dat, final) {\n        _this_1.ondata(null, dat, final);\n      });\n    } else {\n      this.i = new AsyncInflate(function(err, dat, final) {\n        _this_1.ondata(err, dat, final);\n      });\n      this.terminate = this.i.terminate;\n    }\n  }\n  AsyncUnzipInflate2.prototype.push = function(data, final) {\n    if (this.i.terminate)\n      data = slc(data, 0);\n    this.i.push(data, final);\n  };\n  AsyncUnzipInflate2.compression = 8;\n  return AsyncUnzipInflate2;\n}();\nvar Unzip = /* @__PURE__ */ function() {\n  function Unzip2(cb) {\n    this.onfile = cb;\n    this.k = [];\n    this.o = {\n      0: UnzipPassThrough\n    };\n    this.p = et;\n  }\n  Unzip2.prototype.push = function(chunk, final) {\n    var _this_1 = this;\n    if (!this.onfile)\n      throw \"no callback\";\n    if (!this.p)\n      throw \"stream finished\";\n    if (this.c > 0) {\n      var len = Math.min(this.c, chunk.length);\n      var toAdd = chunk.subarray(0, len);\n      this.c -= len;\n      if (this.d)\n        this.d.push(toAdd, !this.c);\n      else\n        this.k[0].push(toAdd);\n      chunk = chunk.subarray(len);\n      if (chunk.length)\n        return this.push(chunk, final);\n    } else {\n      var f = 0, i = 0, is = void 0, buf = void 0;\n      if (!this.p.length)\n        buf = chunk;\n      else if (!chunk.length)\n        buf = this.p;\n      else {\n        buf = new u8(this.p.length + chunk.length);\n        buf.set(this.p), buf.set(chunk, this.p.length);\n      }\n      var l = buf.length, oc = this.c, add = oc && this.d;\n      var _loop_2 = function() {\n        var _a2;\n        var sig = b4(buf, i);\n        if (sig == 67324752) {\n          f = 1, is = i;\n          this_1.d = null;\n          this_1.c = 0;\n          var bf = b2(buf, i + 6), cmp_1 = b2(buf, i + 8), u = bf & 2048, dd = bf & 8, fnl = b2(buf, i + 26), es = b2(buf, i + 28);\n          if (l > i + 30 + fnl + es) {\n            var chks_2 = [];\n            this_1.k.unshift(chks_2);\n            f = 2;\n            var sc_1 = b4(buf, i + 18), su_1 = b4(buf, i + 22);\n            var fn_1 = strFromU8(buf.subarray(i + 30, i += 30 + fnl), !u);\n            if (sc_1 == 4294967295) {\n              _a2 = dd ? [-2] : z64e(buf, i), sc_1 = _a2[0], su_1 = _a2[1];\n            } else if (dd)\n              sc_1 = -1;\n            i += es;\n            this_1.c = sc_1;\n            var d_1;\n            var file_1 = {\n              name: fn_1,\n              compression: cmp_1,\n              start: function() {\n                if (!file_1.ondata)\n                  throw \"no callback\";\n                if (!sc_1)\n                  file_1.ondata(null, et, true);\n                else {\n                  var ctr = _this_1.o[cmp_1];\n                  if (!ctr)\n                    throw \"unknown compression type \" + cmp_1;\n                  d_1 = sc_1 < 0 ? new ctr(fn_1) : new ctr(fn_1, sc_1, su_1);\n                  d_1.ondata = function(err, dat3, final2) {\n                    file_1.ondata(err, dat3, final2);\n                  };\n                  for (var _i = 0, chks_3 = chks_2; _i < chks_3.length; _i++) {\n                    var dat2 = chks_3[_i];\n                    d_1.push(dat2, false);\n                  }\n                  if (_this_1.k[0] == chks_2 && _this_1.c)\n                    _this_1.d = d_1;\n                  else\n                    d_1.push(et, true);\n                }\n              },\n              terminate: function() {\n                if (d_1 && d_1.terminate)\n                  d_1.terminate();\n              }\n            };\n            if (sc_1 >= 0)\n              file_1.size = sc_1, file_1.originalSize = su_1;\n            this_1.onfile(file_1);\n          }\n          return \"break\";\n        } else if (oc) {\n          if (sig == 134695760) {\n            is = i += 12 + (oc == -2 && 8), f = 3, this_1.c = 0;\n            return \"break\";\n          } else if (sig == 33639248) {\n            is = i -= 4, f = 3, this_1.c = 0;\n            return \"break\";\n          }\n        }\n      };\n      var this_1 = this;\n      for (; i < l - 4; ++i) {\n        var state_1 = _loop_2();\n        if (state_1 === \"break\")\n          break;\n      }\n      this.p = et;\n      if (oc < 0) {\n        var dat = f ? buf.subarray(0, is - 12 - (oc == -2 && 8) - (b4(buf, is - 16) == 134695760 && 4)) : buf.subarray(0, i);\n        if (add)\n          add.push(dat, !!f);\n        else\n          this.k[+(f == 2)].push(dat);\n      }\n      if (f & 2)\n        return this.push(buf.subarray(i), final);\n      this.p = buf.subarray(i);\n    }\n    if (final) {\n      if (this.c)\n        throw \"invalid zip file\";\n      this.p = null;\n    }\n  };\n  Unzip2.prototype.register = function(decoder) {\n    this.o[decoder.compression] = decoder;\n  };\n  return Unzip2;\n}();\nfunction unzip(data, cb) {\n  if (typeof cb != \"function\")\n    throw \"no callback\";\n  var term = [];\n  var tAll = function() {\n    for (var i2 = 0; i2 < term.length; ++i2)\n      term[i2]();\n  };\n  var files = {};\n  var e = data.length - 22;\n  for (; b4(data, e) != 101010256; --e) {\n    if (!e || data.length - e > 65558) {\n      cb(\"invalid zip file\", null);\n      return;\n    }\n  }\n  var lft = b2(data, e + 8);\n  if (!lft)\n    cb(null, {});\n  var c = lft;\n  var o = b4(data, e + 16);\n  var z = o == 4294967295;\n  if (z) {\n    e = b4(data, e - 12);\n    if (b4(data, e) != 101075792) {\n      cb(\"invalid zip file\", null);\n      return;\n    }\n    c = lft = b4(data, e + 32);\n    o = b4(data, e + 48);\n  }\n  var _loop_3 = function(i2) {\n    var _a2 = zh(data, o, z), c_1 = _a2[0], sc = _a2[1], su = _a2[2], fn = _a2[3], no = _a2[4], off = _a2[5], b = slzh(data, off);\n    o = no;\n    var cbl = function(e2, d) {\n      if (e2) {\n        tAll();\n        cb(e2, null);\n      } else {\n        files[fn] = d;\n        if (!--lft)\n          cb(null, files);\n      }\n    };\n    if (!c_1)\n      cbl(null, slc(data, b, b + sc));\n    else if (c_1 == 8) {\n      var infl = data.subarray(b, b + sc);\n      if (sc < 32e4) {\n        try {\n          cbl(null, inflateSync(infl, new u8(su)));\n        } catch (e2) {\n          cbl(e2, null);\n        }\n      } else\n        term.push(inflate(infl, { size: su }, cbl));\n    } else\n      cbl(\"unknown compression type \" + c_1, null);\n  };\n  for (var i = 0; i < c; ++i) {\n    _loop_3();\n  }\n  return tAll;\n}\nfunction unzipSync(data) {\n  var files = {};\n  var e = data.length - 22;\n  for (; b4(data, e) != 101010256; --e) {\n    if (!e || data.length - e > 65558)\n      throw \"invalid zip file\";\n  }\n  var c = b2(data, e + 8);\n  if (!c)\n    return {};\n  var o = b4(data, e + 16);\n  var z = o == 4294967295;\n  if (z) {\n    e = b4(data, e - 12);\n    if (b4(data, e) != 101075792)\n      throw \"invalid zip file\";\n    c = b4(data, e + 32);\n    o = b4(data, e + 48);\n  }\n  for (var i = 0; i < c; ++i) {\n    var _a2 = zh(data, o, z), c_2 = _a2[0], sc = _a2[1], su = _a2[2], fn = _a2[3], no = _a2[4], off = _a2[5], b = slzh(data, off);\n    o = no;\n    if (!c_2)\n      files[fn] = slc(data, b, b + sc);\n    else if (c_2 == 8)\n      files[fn] = inflateSync(data.subarray(b, b + sc), new u8(su));\n    else\n      throw \"unknown compression type \" + c_2;\n  }\n  return files;\n}\nvar fflate = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({\n  __proto__: null,\n  Deflate,\n  AsyncDeflate,\n  deflate,\n  deflateSync,\n  Inflate,\n  AsyncInflate,\n  inflate,\n  inflateSync,\n  Gzip,\n  AsyncGzip,\n  gzip,\n  gzipSync,\n  Gunzip,\n  AsyncGunzip,\n  gunzip,\n  gunzipSync,\n  Zlib,\n  AsyncZlib,\n  zlib,\n  zlibSync,\n  Unzlib,\n  AsyncUnzlib,\n  unzlib,\n  unzlibSync,\n  compress: gzip,\n  AsyncCompress: AsyncGzip,\n  compressSync: gzipSync,\n  Compress: Gzip,\n  Decompress,\n  AsyncDecompress,\n  decompress,\n  decompressSync,\n  DecodeUTF8,\n  EncodeUTF8,\n  strToU8,\n  strFromU8,\n  ZipPassThrough,\n  ZipDeflate,\n  AsyncZipDeflate,\n  Zip,\n  zip,\n  zipSync,\n  UnzipPassThrough,\n  UnzipInflate,\n  AsyncUnzipInflate,\n  Unzip,\n  unzip,\n  unzipSync\n}, Symbol.toStringTag, { value: \"Module\" }));\nfunction findSpan(p, u, U) {\n  const n = U.length - p - 1;\n  if (u >= U[n]) {\n    return n - 1;\n  }\n  if (u <= U[p]) {\n    return p;\n  }\n  let low = p;\n  let high = n;\n  let mid = Math.floor((low + high) / 2);\n  while (u < U[mid] || u >= U[mid + 1]) {\n    if (u < U[mid]) {\n      high = mid;\n    } else {\n      low = mid;\n    }\n    mid = Math.floor((low + high) / 2);\n  }\n  return mid;\n}\nfunction calcBasisFunctions(span, u, p, U) {\n  const N = [];\n  const left = [];\n  const right = [];\n  N[0] = 1;\n  for (let j = 1; j <= p; ++j) {\n    left[j] = u - U[span + 1 - j];\n    right[j] = U[span + j] - u;\n    let saved = 0;\n    for (let r = 0; r < j; ++r) {\n      const rv = right[r + 1];\n      const lv = left[j - r];\n      const temp = N[r] / (rv + lv);\n      N[r] = saved + rv * temp;\n      saved = lv * temp;\n    }\n    N[j] = saved;\n  }\n  return N;\n}\nfunction calcBSplinePoint(p, U, P, u) {\n  const span = findSpan(p, u, U);\n  const N = calcBasisFunctions(span, u, p, U);\n  const C = new Vector4(0, 0, 0, 0);\n  for (let j = 0; j <= p; ++j) {\n    const point = P[span - p + j];\n    const Nj = N[j];\n    const wNj = point.w * Nj;\n    C.x += point.x * wNj;\n    C.y += point.y * wNj;\n    C.z += point.z * wNj;\n    C.w += point.w * Nj;\n  }\n  return C;\n}\nfunction calcBasisFunctionDerivatives(span, u, p, n, U) {\n  const zeroArr = [];\n  for (let i = 0; i <= p; ++i)\n    zeroArr[i] = 0;\n  const ders = [];\n  for (let i = 0; i <= n; ++i)\n    ders[i] = zeroArr.slice(0);\n  const ndu = [];\n  for (let i = 0; i <= p; ++i)\n    ndu[i] = zeroArr.slice(0);\n  ndu[0][0] = 1;\n  const left = zeroArr.slice(0);\n  const right = zeroArr.slice(0);\n  for (let j = 1; j <= p; ++j) {\n    left[j] = u - U[span + 1 - j];\n    right[j] = U[span + j] - u;\n    let saved = 0;\n    for (let r2 = 0; r2 < j; ++r2) {\n      const rv = right[r2 + 1];\n      const lv = left[j - r2];\n      ndu[j][r2] = rv + lv;\n      const temp = ndu[r2][j - 1] / ndu[j][r2];\n      ndu[r2][j] = saved + rv * temp;\n      saved = lv * temp;\n    }\n    ndu[j][j] = saved;\n  }\n  for (let j = 0; j <= p; ++j) {\n    ders[0][j] = ndu[j][p];\n  }\n  for (let r2 = 0; r2 <= p; ++r2) {\n    let s1 = 0;\n    let s2 = 1;\n    const a = [];\n    for (let i = 0; i <= p; ++i) {\n      a[i] = zeroArr.slice(0);\n    }\n    a[0][0] = 1;\n    for (let k = 1; k <= n; ++k) {\n      let d = 0;\n      const rk = r2 - k;\n      const pk = p - k;\n      if (r2 >= k) {\n        a[s2][0] = a[s1][0] / ndu[pk + 1][rk];\n        d = a[s2][0] * ndu[rk][pk];\n      }\n      const j1 = rk >= -1 ? 1 : -rk;\n      const j2 = r2 - 1 <= pk ? k - 1 : p - r2;\n      for (let j3 = j1; j3 <= j2; ++j3) {\n        a[s2][j3] = (a[s1][j3] - a[s1][j3 - 1]) / ndu[pk + 1][rk + j3];\n        d += a[s2][j3] * ndu[rk + j3][pk];\n      }\n      if (r2 <= pk) {\n        a[s2][k] = -a[s1][k - 1] / ndu[pk + 1][r2];\n        d += a[s2][k] * ndu[r2][pk];\n      }\n      ders[k][r2] = d;\n      const j = s1;\n      s1 = s2;\n      s2 = j;\n    }\n  }\n  let r = p;\n  for (let k = 1; k <= n; ++k) {\n    for (let j = 0; j <= p; ++j) {\n      ders[k][j] *= r;\n    }\n    r *= p - k;\n  }\n  return ders;\n}\nfunction calcBSplineDerivatives(p, U, P, u, nd) {\n  const du = nd < p ? nd : p;\n  const CK = [];\n  const span = findSpan(p, u, U);\n  const nders = calcBasisFunctionDerivatives(span, u, p, du, U);\n  const Pw = [];\n  for (let i = 0; i < P.length; ++i) {\n    const point = P[i].clone();\n    const w = point.w;\n    point.x *= w;\n    point.y *= w;\n    point.z *= w;\n    Pw[i] = point;\n  }\n  for (let k = 0; k <= du; ++k) {\n    const point = Pw[span - p].clone().multiplyScalar(nders[k][0]);\n    for (let j = 1; j <= p; ++j) {\n      point.add(Pw[span - p + j].clone().multiplyScalar(nders[k][j]));\n    }\n    CK[k] = point;\n  }\n  for (let k = du + 1; k <= nd + 1; ++k) {\n    CK[k] = new Vector4(0, 0, 0);\n  }\n  return CK;\n}\nfunction calcKoverI(k, i) {\n  let nom = 1;\n  for (let j = 2; j <= k; ++j) {\n    nom *= j;\n  }\n  let denom = 1;\n  for (let j = 2; j <= i; ++j) {\n    denom *= j;\n  }\n  for (let j = 2; j <= k - i; ++j) {\n    denom *= j;\n  }\n  return nom / denom;\n}\nfunction calcRationalCurveDerivatives(Pders) {\n  const nd = Pders.length;\n  const Aders = [];\n  const wders = [];\n  for (let i = 0; i < nd; ++i) {\n    const point = Pders[i];\n    Aders[i] = new Vector3(point.x, point.y, point.z);\n    wders[i] = point.w;\n  }\n  const CK = [];\n  for (let k = 0; k < nd; ++k) {\n    const v = Aders[k].clone();\n    for (let i = 1; i <= k; ++i) {\n      v.sub(CK[k - i].clone().multiplyScalar(calcKoverI(k, i) * wders[i]));\n    }\n    CK[k] = v.divideScalar(wders[0]);\n  }\n  return CK;\n}\nfunction calcNURBSDerivatives(p, U, P, u, nd) {\n  const Pders = calcBSplineDerivatives(p, U, P, u, nd);\n  return calcRationalCurveDerivatives(Pders);\n}\nclass NURBSCurve extends Curve {\n  constructor(degree, knots, controlPoints, startKnot, endKnot) {\n    super();\n    this.degree = degree;\n    this.knots = knots;\n    this.controlPoints = [];\n    this.startKnot = startKnot || 0;\n    this.endKnot = endKnot || this.knots.length - 1;\n    for (let i = 0; i < controlPoints.length; ++i) {\n      const point = controlPoints[i];\n      this.controlPoints[i] = new Vector4(point.x, point.y, point.z, point.w);\n    }\n  }\n  getPoint(t, optionalTarget = new Vector3()) {\n    const point = optionalTarget;\n    const u = this.knots[this.startKnot] + t * (this.knots[this.endKnot] - this.knots[this.startKnot]);\n    const hpoint = calcBSplinePoint(this.degree, this.knots, this.controlPoints, u);\n    if (hpoint.w !== 1) {\n      hpoint.divideScalar(hpoint.w);\n    }\n    return point.set(hpoint.x, hpoint.y, hpoint.z);\n  }\n  getTangent(t, optionalTarget = new Vector3()) {\n    const tangent = optionalTarget;\n    const u = this.knots[0] + t * (this.knots[this.knots.length - 1] - this.knots[0]);\n    const ders = calcNURBSDerivatives(this.degree, this.knots, this.controlPoints, u, 1);\n    tangent.copy(ders[1]).normalize();\n    return tangent;\n  }\n}\nlet fbxTree;\nlet connections;\nlet sceneGraph;\nclass FBXLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const path = scope.path === \"\" ? LoaderUtils.extractUrlBase(url) : scope.path;\n    const loader = new FileLoader(this.manager);\n    loader.setPath(scope.path);\n    loader.setResponseType(\"arraybuffer\");\n    loader.setRequestHeader(scope.requestHeader);\n    loader.setWithCredentials(scope.withCredentials);\n    loader.load(url, function(buffer) {\n      try {\n        onLoad(scope.parse(buffer, path));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  parse(FBXBuffer, path) {\n    if (isFbxFormatBinary(FBXBuffer)) {\n      fbxTree = new BinaryParser().parse(FBXBuffer);\n    } else {\n      const FBXText = convertArrayBufferToString(FBXBuffer);\n      if (!isFbxFormatASCII(FBXText)) {\n        throw new Error(\"THREE.FBXLoader: Unknown format.\");\n      }\n      if (getFbxVersion(FBXText) < 7e3) {\n        throw new Error(\"THREE.FBXLoader: FBX version not supported, FileVersion: \" + getFbxVersion(FBXText));\n      }\n      fbxTree = new TextParser().parse(FBXText);\n    }\n    const textureLoader = new TextureLoader(this.manager).setPath(this.resourcePath || path).setCrossOrigin(this.crossOrigin);\n    return new FBXTreeParser(textureLoader, this.manager).parse(fbxTree);\n  }\n}\nclass FBXTreeParser {\n  constructor(textureLoader, manager2) {\n    this.textureLoader = textureLoader;\n    this.manager = manager2;\n  }\n  parse() {\n    connections = this.parseConnections();\n    const images = this.parseImages();\n    const textures = this.parseTextures(images);\n    const materials = this.parseMaterials(textures);\n    const deformers = this.parseDeformers();\n    const geometryMap = new GeometryParser().parse(deformers);\n    this.parseScene(deformers, geometryMap, materials);\n    return sceneGraph;\n  }\n  parseConnections() {\n    const connectionMap = /* @__PURE__ */ new Map();\n    if (\"Connections\" in fbxTree) {\n      const rawConnections = fbxTree.Connections.connections;\n      rawConnections.forEach(function(rawConnection) {\n        const fromID = rawConnection[0];\n        const toID = rawConnection[1];\n        const relationship = rawConnection[2];\n        if (!connectionMap.has(fromID)) {\n          connectionMap.set(fromID, {\n            parents: [],\n            children: []\n          });\n        }\n        const parentRelationship = { ID: toID, relationship };\n        connectionMap.get(fromID).parents.push(parentRelationship);\n        if (!connectionMap.has(toID)) {\n          connectionMap.set(toID, {\n            parents: [],\n            children: []\n          });\n        }\n        const childRelationship = { ID: fromID, relationship };\n        connectionMap.get(toID).children.push(childRelationship);\n      });\n    }\n    return connectionMap;\n  }\n  parseImages() {\n    const images = {};\n    const blobs = {};\n    if (\"Video\" in fbxTree.Objects) {\n      const videoNodes = fbxTree.Objects.Video;\n      for (const nodeID in videoNodes) {\n        const videoNode = videoNodes[nodeID];\n        const id2 = parseInt(nodeID);\n        images[id2] = videoNode.RelativeFilename || videoNode.Filename;\n        if (\"Content\" in videoNode) {\n          const arrayBufferContent = videoNode.Content instanceof ArrayBuffer && videoNode.Content.byteLength > 0;\n          const base64Content = typeof videoNode.Content === \"string\" && videoNode.Content !== \"\";\n          if (arrayBufferContent || base64Content) {\n            const image = this.parseImage(videoNodes[nodeID]);\n            blobs[videoNode.RelativeFilename || videoNode.Filename] = image;\n          }\n        }\n      }\n    }\n    for (const id2 in images) {\n      const filename = images[id2];\n      if (blobs[filename] !== void 0)\n        images[id2] = blobs[filename];\n      else\n        images[id2] = images[id2].split(\"\\\\\").pop();\n    }\n    return images;\n  }\n  parseImage(videoNode) {\n    const content = videoNode.Content;\n    const fileName = videoNode.RelativeFilename || videoNode.Filename;\n    const extension = fileName.slice(fileName.lastIndexOf(\".\") + 1).toLowerCase();\n    let type;\n    switch (extension) {\n      case \"bmp\":\n        type = \"image/bmp\";\n        break;\n      case \"jpg\":\n      case \"jpeg\":\n        type = \"image/jpeg\";\n        break;\n      case \"png\":\n        type = \"image/png\";\n        break;\n      case \"tif\":\n        type = \"image/tiff\";\n        break;\n      case \"tga\":\n        if (this.manager.getHandler(\".tga\") === null) {\n          console.warn(\"FBXLoader: TGA loader not found, skipping \", fileName);\n        }\n        type = \"image/tga\";\n        break;\n      default:\n        console.warn('FBXLoader: Image type \"' + extension + '\" is not supported.');\n        return;\n    }\n    if (typeof content === \"string\") {\n      return \"data:\" + type + \";base64,\" + content;\n    } else {\n      const array = new Uint8Array(content);\n      return window.URL.createObjectURL(new Blob([array], { type }));\n    }\n  }\n  parseTextures(images) {\n    const textureMap = /* @__PURE__ */ new Map();\n    if (\"Texture\" in fbxTree.Objects) {\n      const textureNodes = fbxTree.Objects.Texture;\n      for (const nodeID in textureNodes) {\n        const texture = this.parseTexture(textureNodes[nodeID], images);\n        textureMap.set(parseInt(nodeID), texture);\n      }\n    }\n    return textureMap;\n  }\n  parseTexture(textureNode, images) {\n    const texture = this.loadTexture(textureNode, images);\n    texture.ID = textureNode.id;\n    texture.name = textureNode.attrName;\n    const wrapModeU = textureNode.WrapModeU;\n    const wrapModeV = textureNode.WrapModeV;\n    const valueU = wrapModeU !== void 0 ? wrapModeU.value : 0;\n    const valueV = wrapModeV !== void 0 ? wrapModeV.value : 0;\n    texture.wrapS = valueU === 0 ? RepeatWrapping : ClampToEdgeWrapping;\n    texture.wrapT = valueV === 0 ? RepeatWrapping : ClampToEdgeWrapping;\n    if (\"Scaling\" in textureNode) {\n      const values = textureNode.Scaling.value;\n      texture.repeat.x = values[0];\n      texture.repeat.y = values[1];\n    }\n    if (\"Translation\" in textureNode) {\n      const values = textureNode.Translation.value;\n      texture.offset.x = values[0];\n      texture.offset.y = values[1];\n    }\n    return texture;\n  }\n  loadTexture(textureNode, images) {\n    let fileName;\n    const currentPath = this.textureLoader.path;\n    const children = connections.get(textureNode.id).children;\n    if (children !== void 0 && children.length > 0 && images[children[0].ID] !== void 0) {\n      fileName = images[children[0].ID];\n      if (fileName.indexOf(\"blob:\") === 0 || fileName.indexOf(\"data:\") === 0) {\n        this.textureLoader.setPath(void 0);\n      }\n    }\n    let texture;\n    const extension = textureNode.FileName.slice(-3).toLowerCase();\n    if (extension === \"tga\") {\n      const loader = this.manager.getHandler(\".tga\");\n      if (loader === null) {\n        console.warn(\"FBXLoader: TGA loader not found, creating placeholder texture for\", textureNode.RelativeFilename);\n        texture = new Texture();\n      } else {\n        loader.setPath(this.textureLoader.path);\n        texture = loader.load(fileName);\n      }\n    } else if (extension === \"psd\") {\n      console.warn(\"FBXLoader: PSD textures are not supported, creating placeholder texture for\", textureNode.RelativeFilename);\n      texture = new Texture();\n    } else {\n      texture = this.textureLoader.load(fileName);\n    }\n    this.textureLoader.setPath(currentPath);\n    return texture;\n  }\n  parseMaterials(textureMap) {\n    const materialMap = /* @__PURE__ */ new Map();\n    if (\"Material\" in fbxTree.Objects) {\n      const materialNodes = fbxTree.Objects.Material;\n      for (const nodeID in materialNodes) {\n        const material = this.parseMaterial(materialNodes[nodeID], textureMap);\n        if (material !== null)\n          materialMap.set(parseInt(nodeID), material);\n      }\n    }\n    return materialMap;\n  }\n  parseMaterial(materialNode, textureMap) {\n    const ID = materialNode.id;\n    const name = materialNode.attrName;\n    let type = materialNode.ShadingModel;\n    if (typeof type === \"object\") {\n      type = type.value;\n    }\n    if (!connections.has(ID))\n      return null;\n    const parameters = this.parseParameters(materialNode, textureMap, ID);\n    let material;\n    switch (type.toLowerCase()) {\n      case \"phong\":\n        material = new MeshPhongMaterial();\n        break;\n      case \"lambert\":\n        material = new MeshLambertMaterial();\n        break;\n      default:\n        console.warn('THREE.FBXLoader: unknown material type \"%s\". Defaulting to MeshPhongMaterial.', type);\n        material = new MeshPhongMaterial();\n        break;\n    }\n    material.setValues(parameters);\n    material.name = name;\n    return material;\n  }\n  parseParameters(materialNode, textureMap, ID) {\n    const parameters = {};\n    if (materialNode.BumpFactor) {\n      parameters.bumpScale = materialNode.BumpFactor.value;\n    }\n    if (materialNode.Diffuse) {\n      parameters.color = new Color().fromArray(materialNode.Diffuse.value);\n    } else if (materialNode.DiffuseColor && (materialNode.DiffuseColor.type === \"Color\" || materialNode.DiffuseColor.type === \"ColorRGB\")) {\n      parameters.color = new Color().fromArray(materialNode.DiffuseColor.value);\n    }\n    if (materialNode.DisplacementFactor) {\n      parameters.displacementScale = materialNode.DisplacementFactor.value;\n    }\n    if (materialNode.Emissive) {\n      parameters.emissive = new Color().fromArray(materialNode.Emissive.value);\n    } else if (materialNode.EmissiveColor && (materialNode.EmissiveColor.type === \"Color\" || materialNode.EmissiveColor.type === \"ColorRGB\")) {\n      parameters.emissive = new Color().fromArray(materialNode.EmissiveColor.value);\n    }\n    if (materialNode.EmissiveFactor) {\n      parameters.emissiveIntensity = parseFloat(materialNode.EmissiveFactor.value);\n    }\n    if (materialNode.Opacity) {\n      parameters.opacity = parseFloat(materialNode.Opacity.value);\n    }\n    if (parameters.opacity < 1) {\n      parameters.transparent = true;\n    }\n    if (materialNode.ReflectionFactor) {\n      parameters.reflectivity = materialNode.ReflectionFactor.value;\n    }\n    if (materialNode.Shininess) {\n      parameters.shininess = materialNode.Shininess.value;\n    }\n    if (materialNode.Specular) {\n      parameters.specular = new Color().fromArray(materialNode.Specular.value);\n    } else if (materialNode.SpecularColor && materialNode.SpecularColor.type === \"Color\") {\n      parameters.specular = new Color().fromArray(materialNode.SpecularColor.value);\n    }\n    const scope = this;\n    connections.get(ID).children.forEach(function(child) {\n      const type = child.relationship;\n      switch (type) {\n        case \"Bump\":\n          parameters.bumpMap = scope.getTexture(textureMap, child.ID);\n          break;\n        case \"Maya|TEX_ao_map\":\n          parameters.aoMap = scope.getTexture(textureMap, child.ID);\n          break;\n        case \"DiffuseColor\":\n        case \"Maya|TEX_color_map\":\n          parameters.map = scope.getTexture(textureMap, child.ID);\n          if (parameters.map !== void 0) {\n            parameters.map.encoding = sRGBEncoding;\n          }\n          break;\n        case \"DisplacementColor\":\n          parameters.displacementMap = scope.getTexture(textureMap, child.ID);\n          break;\n        case \"EmissiveColor\":\n          parameters.emissiveMap = scope.getTexture(textureMap, child.ID);\n          if (parameters.emissiveMap !== void 0) {\n            parameters.emissiveMap.encoding = sRGBEncoding;\n          }\n          break;\n        case \"NormalMap\":\n        case \"Maya|TEX_normal_map\":\n          parameters.normalMap = scope.getTexture(textureMap, child.ID);\n          break;\n        case \"ReflectionColor\":\n          parameters.envMap = scope.getTexture(textureMap, child.ID);\n          if (parameters.envMap !== void 0) {\n            parameters.envMap.mapping = EquirectangularReflectionMapping;\n            parameters.envMap.encoding = sRGBEncoding;\n          }\n          break;\n        case \"SpecularColor\":\n          parameters.specularMap = scope.getTexture(textureMap, child.ID);\n          if (parameters.specularMap !== void 0) {\n            parameters.specularMap.encoding = sRGBEncoding;\n          }\n          break;\n        case \"TransparentColor\":\n        case \"TransparencyFactor\":\n          parameters.alphaMap = scope.getTexture(textureMap, child.ID);\n          parameters.transparent = true;\n          break;\n        case \"AmbientColor\":\n        case \"ShininessExponent\":\n        case \"SpecularFactor\":\n        case \"VectorDisplacementColor\":\n        default:\n          console.warn(\"THREE.FBXLoader: %s map is not supported in three.js, skipping texture.\", type);\n          break;\n      }\n    });\n    return parameters;\n  }\n  getTexture(textureMap, id2) {\n    if (\"LayeredTexture\" in fbxTree.Objects && id2 in fbxTree.Objects.LayeredTexture) {\n      console.warn(\"THREE.FBXLoader: layered textures are not supported in three.js. Discarding all but first layer.\");\n      id2 = connections.get(id2).children[0].ID;\n    }\n    return textureMap.get(id2);\n  }\n  parseDeformers() {\n    const skeletons = {};\n    const morphTargets = {};\n    if (\"Deformer\" in fbxTree.Objects) {\n      const DeformerNodes = fbxTree.Objects.Deformer;\n      for (const nodeID in DeformerNodes) {\n        const deformerNode = DeformerNodes[nodeID];\n        const relationships = connections.get(parseInt(nodeID));\n        if (deformerNode.attrType === \"Skin\") {\n          const skeleton = this.parseSkeleton(relationships, DeformerNodes);\n          skeleton.ID = nodeID;\n          if (relationships.parents.length > 1)\n            console.warn(\"THREE.FBXLoader: skeleton attached to more than one geometry is not supported.\");\n          skeleton.geometryID = relationships.parents[0].ID;\n          skeletons[nodeID] = skeleton;\n        } else if (deformerNode.attrType === \"BlendShape\") {\n          const morphTarget = {\n            id: nodeID\n          };\n          morphTarget.rawTargets = this.parseMorphTargets(relationships, DeformerNodes);\n          morphTarget.id = nodeID;\n          if (relationships.parents.length > 1)\n            console.warn(\"THREE.FBXLoader: morph target attached to more than one geometry is not supported.\");\n          morphTargets[nodeID] = morphTarget;\n        }\n      }\n    }\n    return {\n      skeletons,\n      morphTargets\n    };\n  }\n  parseSkeleton(relationships, deformerNodes) {\n    const rawBones = [];\n    relationships.children.forEach(function(child) {\n      const boneNode = deformerNodes[child.ID];\n      if (boneNode.attrType !== \"Cluster\")\n        return;\n      const rawBone = {\n        ID: child.ID,\n        indices: [],\n        weights: [],\n        transformLink: new Matrix4().fromArray(boneNode.TransformLink.a)\n      };\n      if (\"Indexes\" in boneNode) {\n        rawBone.indices = boneNode.Indexes.a;\n        rawBone.weights = boneNode.Weights.a;\n      }\n      rawBones.push(rawBone);\n    });\n    return {\n      rawBones,\n      bones: []\n    };\n  }\n  parseMorphTargets(relationships, deformerNodes) {\n    const rawMorphTargets = [];\n    for (let i = 0; i < relationships.children.length; i++) {\n      const child = relationships.children[i];\n      const morphTargetNode = deformerNodes[child.ID];\n      const rawMorphTarget = {\n        name: morphTargetNode.attrName,\n        initialWeight: morphTargetNode.DeformPercent,\n        id: morphTargetNode.id,\n        fullWeights: morphTargetNode.FullWeights.a\n      };\n      if (morphTargetNode.attrType !== \"BlendShapeChannel\")\n        return;\n      rawMorphTarget.geoID = connections.get(parseInt(child.ID)).children.filter(function(child2) {\n        return child2.relationship === void 0;\n      })[0].ID;\n      rawMorphTargets.push(rawMorphTarget);\n    }\n    return rawMorphTargets;\n  }\n  parseScene(deformers, geometryMap, materialMap) {\n    sceneGraph = new Group();\n    const modelMap = this.parseModels(deformers.skeletons, geometryMap, materialMap);\n    const modelNodes = fbxTree.Objects.Model;\n    const scope = this;\n    modelMap.forEach(function(model) {\n      const modelNode = modelNodes[model.ID];\n      scope.setLookAtProperties(model, modelNode);\n      const parentConnections = connections.get(model.ID).parents;\n      parentConnections.forEach(function(connection) {\n        const parent = modelMap.get(connection.ID);\n        if (parent !== void 0)\n          parent.add(model);\n      });\n      if (model.parent === null) {\n        sceneGraph.add(model);\n      }\n    });\n    this.bindSkeleton(deformers.skeletons, geometryMap, modelMap);\n    this.createAmbientLight();\n    sceneGraph.traverse(function(node) {\n      if (node.userData.transformData) {\n        if (node.parent) {\n          node.userData.transformData.parentMatrix = node.parent.matrix;\n          node.userData.transformData.parentMatrixWorld = node.parent.matrixWorld;\n        }\n        const transform = generateTransform(node.userData.transformData);\n        node.applyMatrix4(transform);\n        node.updateWorldMatrix();\n      }\n    });\n    const animations = new AnimationParser().parse();\n    if (sceneGraph.children.length === 1 && sceneGraph.children[0].isGroup) {\n      sceneGraph.children[0].animations = animations;\n      sceneGraph = sceneGraph.children[0];\n    }\n    sceneGraph.animations = animations;\n  }\n  parseModels(skeletons, geometryMap, materialMap) {\n    const modelMap = /* @__PURE__ */ new Map();\n    const modelNodes = fbxTree.Objects.Model;\n    for (const nodeID in modelNodes) {\n      const id2 = parseInt(nodeID);\n      const node = modelNodes[nodeID];\n      const relationships = connections.get(id2);\n      let model = this.buildSkeleton(relationships, skeletons, id2, node.attrName);\n      if (!model) {\n        switch (node.attrType) {\n          case \"Camera\":\n            model = this.createCamera(relationships);\n            break;\n          case \"Light\":\n            model = this.createLight(relationships);\n            break;\n          case \"Mesh\":\n            model = this.createMesh(relationships, geometryMap, materialMap);\n            break;\n          case \"NurbsCurve\":\n            model = this.createCurve(relationships, geometryMap);\n            break;\n          case \"LimbNode\":\n          case \"Root\":\n            model = new Bone();\n            break;\n          case \"Null\":\n          default:\n            model = new Group();\n            break;\n        }\n        model.name = node.attrName ? PropertyBinding.sanitizeNodeName(node.attrName) : \"\";\n        model.ID = id2;\n      }\n      this.getTransformData(model, node);\n      modelMap.set(id2, model);\n    }\n    return modelMap;\n  }\n  buildSkeleton(relationships, skeletons, id2, name) {\n    let bone = null;\n    relationships.parents.forEach(function(parent) {\n      for (const ID in skeletons) {\n        const skeleton = skeletons[ID];\n        skeleton.rawBones.forEach(function(rawBone, i) {\n          if (rawBone.ID === parent.ID) {\n            const subBone = bone;\n            bone = new Bone();\n            bone.matrixWorld.copy(rawBone.transformLink);\n            bone.name = name ? PropertyBinding.sanitizeNodeName(name) : \"\";\n            bone.ID = id2;\n            skeleton.bones[i] = bone;\n            if (subBone !== null) {\n              bone.add(subBone);\n            }\n          }\n        });\n      }\n    });\n    return bone;\n  }\n  createCamera(relationships) {\n    let model;\n    let cameraAttribute;\n    relationships.children.forEach(function(child) {\n      const attr = fbxTree.Objects.NodeAttribute[child.ID];\n      if (attr !== void 0) {\n        cameraAttribute = attr;\n      }\n    });\n    if (cameraAttribute === void 0) {\n      model = new Object3D();\n    } else {\n      let type = 0;\n      if (cameraAttribute.CameraProjectionType !== void 0 && cameraAttribute.CameraProjectionType.value === 1) {\n        type = 1;\n      }\n      let nearClippingPlane = 1;\n      if (cameraAttribute.NearPlane !== void 0) {\n        nearClippingPlane = cameraAttribute.NearPlane.value / 1e3;\n      }\n      let farClippingPlane = 1e3;\n      if (cameraAttribute.FarPlane !== void 0) {\n        farClippingPlane = cameraAttribute.FarPlane.value / 1e3;\n      }\n      let width = window.innerWidth;\n      let height = window.innerHeight;\n      if (cameraAttribute.AspectWidth !== void 0 && cameraAttribute.AspectHeight !== void 0) {\n        width = cameraAttribute.AspectWidth.value;\n        height = cameraAttribute.AspectHeight.value;\n      }\n      const aspect2 = width / height;\n      let fov2 = 45;\n      if (cameraAttribute.FieldOfView !== void 0) {\n        fov2 = cameraAttribute.FieldOfView.value;\n      }\n      const focalLength = cameraAttribute.FocalLength ? cameraAttribute.FocalLength.value : null;\n      switch (type) {\n        case 0:\n          model = new PerspectiveCamera(fov2, aspect2, nearClippingPlane, farClippingPlane);\n          if (focalLength !== null)\n            model.setFocalLength(focalLength);\n          break;\n        case 1:\n          model = new OrthographicCamera(-width / 2, width / 2, height / 2, -height / 2, nearClippingPlane, farClippingPlane);\n          break;\n        default:\n          console.warn(\"THREE.FBXLoader: Unknown camera type \" + type + \".\");\n          model = new Object3D();\n          break;\n      }\n    }\n    return model;\n  }\n  createLight(relationships) {\n    let model;\n    let lightAttribute;\n    relationships.children.forEach(function(child) {\n      const attr = fbxTree.Objects.NodeAttribute[child.ID];\n      if (attr !== void 0) {\n        lightAttribute = attr;\n      }\n    });\n    if (lightAttribute === void 0) {\n      model = new Object3D();\n    } else {\n      let type;\n      if (lightAttribute.LightType === void 0) {\n        type = 0;\n      } else {\n        type = lightAttribute.LightType.value;\n      }\n      let color = 16777215;\n      if (lightAttribute.Color !== void 0) {\n        color = new Color().fromArray(lightAttribute.Color.value);\n      }\n      let intensity = lightAttribute.Intensity === void 0 ? 1 : lightAttribute.Intensity.value / 100;\n      if (lightAttribute.CastLightOnObject !== void 0 && lightAttribute.CastLightOnObject.value === 0) {\n        intensity = 0;\n      }\n      let distance = 0;\n      if (lightAttribute.FarAttenuationEnd !== void 0) {\n        if (lightAttribute.EnableFarAttenuation !== void 0 && lightAttribute.EnableFarAttenuation.value === 0) {\n          distance = 0;\n        } else {\n          distance = lightAttribute.FarAttenuationEnd.value;\n        }\n      }\n      const decay = 1;\n      switch (type) {\n        case 0:\n          model = new PointLight(color, intensity, distance, decay);\n          break;\n        case 1:\n          model = new DirectionalLight(color, intensity);\n          break;\n        case 2:\n          let angle = Math.PI / 3;\n          if (lightAttribute.InnerAngle !== void 0) {\n            angle = MathUtils.degToRad(lightAttribute.InnerAngle.value);\n          }\n          let penumbra = 0;\n          if (lightAttribute.OuterAngle !== void 0) {\n            penumbra = MathUtils.degToRad(lightAttribute.OuterAngle.value);\n            penumbra = Math.max(penumbra, 1);\n          }\n          model = new SpotLight(color, intensity, distance, angle, penumbra, decay);\n          break;\n        default:\n          console.warn(\"THREE.FBXLoader: Unknown light type \" + lightAttribute.LightType.value + \", defaulting to a PointLight.\");\n          model = new PointLight(color, intensity);\n          break;\n      }\n      if (lightAttribute.CastShadows !== void 0 && lightAttribute.CastShadows.value === 1) {\n        model.castShadow = true;\n      }\n    }\n    return model;\n  }\n  createMesh(relationships, geometryMap, materialMap) {\n    let model;\n    let geometry = null;\n    let material = null;\n    const materials = [];\n    relationships.children.forEach(function(child) {\n      if (geometryMap.has(child.ID)) {\n        geometry = geometryMap.get(child.ID);\n      }\n      if (materialMap.has(child.ID)) {\n        materials.push(materialMap.get(child.ID));\n      }\n    });\n    if (materials.length > 1) {\n      material = materials;\n    } else if (materials.length > 0) {\n      material = materials[0];\n    } else {\n      material = new MeshPhongMaterial({ color: 13421772 });\n      materials.push(material);\n    }\n    if (\"color\" in geometry.attributes) {\n      materials.forEach(function(material2) {\n        material2.vertexColors = true;\n      });\n    }\n    if (geometry.FBX_Deformer) {\n      model = new SkinnedMesh(geometry, material);\n      model.normalizeSkinWeights();\n    } else {\n      model = new Mesh(geometry, material);\n    }\n    return model;\n  }\n  createCurve(relationships, geometryMap) {\n    const geometry = relationships.children.reduce(function(geo, child) {\n      if (geometryMap.has(child.ID))\n        geo = geometryMap.get(child.ID);\n      return geo;\n    }, null);\n    const material = new LineBasicMaterial({ color: 3342591, linewidth: 1 });\n    return new Line(geometry, material);\n  }\n  getTransformData(model, modelNode) {\n    const transformData = {};\n    if (\"InheritType\" in modelNode)\n      transformData.inheritType = parseInt(modelNode.InheritType.value);\n    if (\"RotationOrder\" in modelNode)\n      transformData.eulerOrder = getEulerOrder(modelNode.RotationOrder.value);\n    else\n      transformData.eulerOrder = \"ZYX\";\n    if (\"Lcl_Translation\" in modelNode)\n      transformData.translation = modelNode.Lcl_Translation.value;\n    if (\"PreRotation\" in modelNode)\n      transformData.preRotation = modelNode.PreRotation.value;\n    if (\"Lcl_Rotation\" in modelNode)\n      transformData.rotation = modelNode.Lcl_Rotation.value;\n    if (\"PostRotation\" in modelNode)\n      transformData.postRotation = modelNode.PostRotation.value;\n    if (\"Lcl_Scaling\" in modelNode)\n      transformData.scale = modelNode.Lcl_Scaling.value;\n    if (\"ScalingOffset\" in modelNode)\n      transformData.scalingOffset = modelNode.ScalingOffset.value;\n    if (\"ScalingPivot\" in modelNode)\n      transformData.scalingPivot = modelNode.ScalingPivot.value;\n    if (\"RotationOffset\" in modelNode)\n      transformData.rotationOffset = modelNode.RotationOffset.value;\n    if (\"RotationPivot\" in modelNode)\n      transformData.rotationPivot = modelNode.RotationPivot.value;\n    model.userData.transformData = transformData;\n  }\n  setLookAtProperties(model, modelNode) {\n    if (\"LookAtProperty\" in modelNode) {\n      const children = connections.get(model.ID).children;\n      children.forEach(function(child) {\n        if (child.relationship === \"LookAtProperty\") {\n          const lookAtTarget = fbxTree.Objects.Model[child.ID];\n          if (\"Lcl_Translation\" in lookAtTarget) {\n            const pos = lookAtTarget.Lcl_Translation.value;\n            if (model.target !== void 0) {\n              model.target.position.fromArray(pos);\n              sceneGraph.add(model.target);\n            } else {\n              model.lookAt(new Vector3().fromArray(pos));\n            }\n          }\n        }\n      });\n    }\n  }\n  bindSkeleton(skeletons, geometryMap, modelMap) {\n    const bindMatrices = this.parsePoseNodes();\n    for (const ID in skeletons) {\n      const skeleton = skeletons[ID];\n      const parents = connections.get(parseInt(skeleton.ID)).parents;\n      parents.forEach(function(parent) {\n        if (geometryMap.has(parent.ID)) {\n          const geoID = parent.ID;\n          const geoRelationships = connections.get(geoID);\n          geoRelationships.parents.forEach(function(geoConnParent) {\n            if (modelMap.has(geoConnParent.ID)) {\n              const model = modelMap.get(geoConnParent.ID);\n              model.bind(new Skeleton(skeleton.bones), bindMatrices[geoConnParent.ID]);\n            }\n          });\n        }\n      });\n    }\n  }\n  parsePoseNodes() {\n    const bindMatrices = {};\n    if (\"Pose\" in fbxTree.Objects) {\n      const BindPoseNode = fbxTree.Objects.Pose;\n      for (const nodeID in BindPoseNode) {\n        if (BindPoseNode[nodeID].attrType === \"BindPose\" && BindPoseNode[nodeID].NbPoseNodes > 0) {\n          const poseNodes = BindPoseNode[nodeID].PoseNode;\n          if (Array.isArray(poseNodes)) {\n            poseNodes.forEach(function(poseNode) {\n              bindMatrices[poseNode.Node] = new Matrix4().fromArray(poseNode.Matrix.a);\n            });\n          } else {\n            bindMatrices[poseNodes.Node] = new Matrix4().fromArray(poseNodes.Matrix.a);\n          }\n        }\n      }\n    }\n    return bindMatrices;\n  }\n  createAmbientLight() {\n    if (\"GlobalSettings\" in fbxTree && \"AmbientColor\" in fbxTree.GlobalSettings) {\n      const ambientColor = fbxTree.GlobalSettings.AmbientColor.value;\n      const r = ambientColor[0];\n      const g = ambientColor[1];\n      const b = ambientColor[2];\n      if (r !== 0 || g !== 0 || b !== 0) {\n        const color = new Color(r, g, b);\n        sceneGraph.add(new AmbientLight(color, 1));\n      }\n    }\n  }\n}\nclass GeometryParser {\n  parse(deformers) {\n    const geometryMap = /* @__PURE__ */ new Map();\n    if (\"Geometry\" in fbxTree.Objects) {\n      const geoNodes = fbxTree.Objects.Geometry;\n      for (const nodeID in geoNodes) {\n        const relationships = connections.get(parseInt(nodeID));\n        const geo = this.parseGeometry(relationships, geoNodes[nodeID], deformers);\n        geometryMap.set(parseInt(nodeID), geo);\n      }\n    }\n    return geometryMap;\n  }\n  parseGeometry(relationships, geoNode, deformers) {\n    switch (geoNode.attrType) {\n      case \"Mesh\":\n        return this.parseMeshGeometry(relationships, geoNode, deformers);\n      case \"NurbsCurve\":\n        return this.parseNurbsGeometry(geoNode);\n    }\n  }\n  parseMeshGeometry(relationships, geoNode, deformers) {\n    const skeletons = deformers.skeletons;\n    const morphTargets = [];\n    const modelNodes = relationships.parents.map(function(parent) {\n      return fbxTree.Objects.Model[parent.ID];\n    });\n    if (modelNodes.length === 0)\n      return;\n    const skeleton = relationships.children.reduce(function(skeleton2, child) {\n      if (skeletons[child.ID] !== void 0)\n        skeleton2 = skeletons[child.ID];\n      return skeleton2;\n    }, null);\n    relationships.children.forEach(function(child) {\n      if (deformers.morphTargets[child.ID] !== void 0) {\n        morphTargets.push(deformers.morphTargets[child.ID]);\n      }\n    });\n    const modelNode = modelNodes[0];\n    const transformData = {};\n    if (\"RotationOrder\" in modelNode)\n      transformData.eulerOrder = getEulerOrder(modelNode.RotationOrder.value);\n    if (\"InheritType\" in modelNode)\n      transformData.inheritType = parseInt(modelNode.InheritType.value);\n    if (\"GeometricTranslation\" in modelNode)\n      transformData.translation = modelNode.GeometricTranslation.value;\n    if (\"GeometricRotation\" in modelNode)\n      transformData.rotation = modelNode.GeometricRotation.value;\n    if (\"GeometricScaling\" in modelNode)\n      transformData.scale = modelNode.GeometricScaling.value;\n    const transform = generateTransform(transformData);\n    return this.genGeometry(geoNode, skeleton, morphTargets, transform);\n  }\n  genGeometry(geoNode, skeleton, morphTargets, preTransform) {\n    const geo = new BufferGeometry();\n    if (geoNode.attrName)\n      geo.name = geoNode.attrName;\n    const geoInfo = this.parseGeoNode(geoNode, skeleton);\n    const buffers = this.genBuffers(geoInfo);\n    const positionAttribute = new Float32BufferAttribute(buffers.vertex, 3);\n    positionAttribute.applyMatrix4(preTransform);\n    geo.setAttribute(\"position\", positionAttribute);\n    if (buffers.colors.length > 0) {\n      geo.setAttribute(\"color\", new Float32BufferAttribute(buffers.colors, 3));\n    }\n    if (skeleton) {\n      geo.setAttribute(\"skinIndex\", new Uint16BufferAttribute(buffers.weightsIndices, 4));\n      geo.setAttribute(\"skinWeight\", new Float32BufferAttribute(buffers.vertexWeights, 4));\n      geo.FBX_Deformer = skeleton;\n    }\n    if (buffers.normal.length > 0) {\n      const normalMatrix = new Matrix3().getNormalMatrix(preTransform);\n      const normalAttribute = new Float32BufferAttribute(buffers.normal, 3);\n      normalAttribute.applyNormalMatrix(normalMatrix);\n      geo.setAttribute(\"normal\", normalAttribute);\n    }\n    buffers.uvs.forEach(function(uvBuffer, i) {\n      let name = \"uv\" + (i + 1).toString();\n      if (i === 0) {\n        name = \"uv\";\n      }\n      geo.setAttribute(name, new Float32BufferAttribute(buffers.uvs[i], 2));\n    });\n    if (geoInfo.material && geoInfo.material.mappingType !== \"AllSame\") {\n      let prevMaterialIndex = buffers.materialIndex[0];\n      let startIndex = 0;\n      buffers.materialIndex.forEach(function(currentIndex, i) {\n        if (currentIndex !== prevMaterialIndex) {\n          geo.addGroup(startIndex, i - startIndex, prevMaterialIndex);\n          prevMaterialIndex = currentIndex;\n          startIndex = i;\n        }\n      });\n      if (geo.groups.length > 0) {\n        const lastGroup = geo.groups[geo.groups.length - 1];\n        const lastIndex = lastGroup.start + lastGroup.count;\n        if (lastIndex !== buffers.materialIndex.length) {\n          geo.addGroup(lastIndex, buffers.materialIndex.length - lastIndex, prevMaterialIndex);\n        }\n      }\n      if (geo.groups.length === 0) {\n        geo.addGroup(0, buffers.materialIndex.length, buffers.materialIndex[0]);\n      }\n    }\n    this.addMorphTargets(geo, geoNode, morphTargets, preTransform);\n    return geo;\n  }\n  parseGeoNode(geoNode, skeleton) {\n    const geoInfo = {};\n    geoInfo.vertexPositions = geoNode.Vertices !== void 0 ? geoNode.Vertices.a : [];\n    geoInfo.vertexIndices = geoNode.PolygonVertexIndex !== void 0 ? geoNode.PolygonVertexIndex.a : [];\n    if (geoNode.LayerElementColor) {\n      geoInfo.color = this.parseVertexColors(geoNode.LayerElementColor[0]);\n    }\n    if (geoNode.LayerElementMaterial) {\n      geoInfo.material = this.parseMaterialIndices(geoNode.LayerElementMaterial[0]);\n    }\n    if (geoNode.LayerElementNormal) {\n      geoInfo.normal = this.parseNormals(geoNode.LayerElementNormal[0]);\n    }\n    if (geoNode.LayerElementUV) {\n      geoInfo.uv = [];\n      let i = 0;\n      while (geoNode.LayerElementUV[i]) {\n        if (geoNode.LayerElementUV[i].UV) {\n          geoInfo.uv.push(this.parseUVs(geoNode.LayerElementUV[i]));\n        }\n        i++;\n      }\n    }\n    geoInfo.weightTable = {};\n    if (skeleton !== null) {\n      geoInfo.skeleton = skeleton;\n      skeleton.rawBones.forEach(function(rawBone, i) {\n        rawBone.indices.forEach(function(index2, j) {\n          if (geoInfo.weightTable[index2] === void 0)\n            geoInfo.weightTable[index2] = [];\n          geoInfo.weightTable[index2].push({\n            id: i,\n            weight: rawBone.weights[j]\n          });\n        });\n      });\n    }\n    return geoInfo;\n  }\n  genBuffers(geoInfo) {\n    const buffers = {\n      vertex: [],\n      normal: [],\n      colors: [],\n      uvs: [],\n      materialIndex: [],\n      vertexWeights: [],\n      weightsIndices: []\n    };\n    let polygonIndex = 0;\n    let faceLength = 0;\n    let displayedWeightsWarning = false;\n    let facePositionIndexes = [];\n    let faceNormals = [];\n    let faceColors = [];\n    let faceUVs = [];\n    let faceWeights = [];\n    let faceWeightIndices = [];\n    const scope = this;\n    geoInfo.vertexIndices.forEach(function(vertexIndex, polygonVertexIndex) {\n      let materialIndex;\n      let endOfFace = false;\n      if (vertexIndex < 0) {\n        vertexIndex = vertexIndex ^ -1;\n        endOfFace = true;\n      }\n      let weightIndices = [];\n      let weights = [];\n      facePositionIndexes.push(vertexIndex * 3, vertexIndex * 3 + 1, vertexIndex * 3 + 2);\n      if (geoInfo.color) {\n        const data = getData(polygonVertexIndex, polygonIndex, vertexIndex, geoInfo.color);\n        faceColors.push(data[0], data[1], data[2]);\n      }\n      if (geoInfo.skeleton) {\n        if (geoInfo.weightTable[vertexIndex] !== void 0) {\n          geoInfo.weightTable[vertexIndex].forEach(function(wt) {\n            weights.push(wt.weight);\n            weightIndices.push(wt.id);\n          });\n        }\n        if (weights.length > 4) {\n          if (!displayedWeightsWarning) {\n            console.warn(\"THREE.FBXLoader: Vertex has more than 4 skinning weights assigned to vertex. Deleting additional weights.\");\n            displayedWeightsWarning = true;\n          }\n          const wIndex = [0, 0, 0, 0];\n          const Weight = [0, 0, 0, 0];\n          weights.forEach(function(weight, weightIndex) {\n            let currentWeight = weight;\n            let currentIndex = weightIndices[weightIndex];\n            Weight.forEach(function(comparedWeight, comparedWeightIndex, comparedWeightArray) {\n              if (currentWeight > comparedWeight) {\n                comparedWeightArray[comparedWeightIndex] = currentWeight;\n                currentWeight = comparedWeight;\n                const tmp2 = wIndex[comparedWeightIndex];\n                wIndex[comparedWeightIndex] = currentIndex;\n                currentIndex = tmp2;\n              }\n            });\n          });\n          weightIndices = wIndex;\n          weights = Weight;\n        }\n        while (weights.length < 4) {\n          weights.push(0);\n          weightIndices.push(0);\n        }\n        for (let i = 0; i < 4; ++i) {\n          faceWeights.push(weights[i]);\n          faceWeightIndices.push(weightIndices[i]);\n        }\n      }\n      if (geoInfo.normal) {\n        const data = getData(polygonVertexIndex, polygonIndex, vertexIndex, geoInfo.normal);\n        faceNormals.push(data[0], data[1], data[2]);\n      }\n      if (geoInfo.material && geoInfo.material.mappingType !== \"AllSame\") {\n        materialIndex = getData(polygonVertexIndex, polygonIndex, vertexIndex, geoInfo.material)[0];\n      }\n      if (geoInfo.uv) {\n        geoInfo.uv.forEach(function(uv, i) {\n          const data = getData(polygonVertexIndex, polygonIndex, vertexIndex, uv);\n          if (faceUVs[i] === void 0) {\n            faceUVs[i] = [];\n          }\n          faceUVs[i].push(data[0]);\n          faceUVs[i].push(data[1]);\n        });\n      }\n      faceLength++;\n      if (endOfFace) {\n        scope.genFace(buffers, geoInfo, facePositionIndexes, materialIndex, faceNormals, faceColors, faceUVs, faceWeights, faceWeightIndices, faceLength);\n        polygonIndex++;\n        faceLength = 0;\n        facePositionIndexes = [];\n        faceNormals = [];\n        faceColors = [];\n        faceUVs = [];\n        faceWeights = [];\n        faceWeightIndices = [];\n      }\n    });\n    return buffers;\n  }\n  genFace(buffers, geoInfo, facePositionIndexes, materialIndex, faceNormals, faceColors, faceUVs, faceWeights, faceWeightIndices, faceLength) {\n    for (let i = 2; i < faceLength; i++) {\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[0]]);\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[1]]);\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[2]]);\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[(i - 1) * 3]]);\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[(i - 1) * 3 + 1]]);\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[(i - 1) * 3 + 2]]);\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[i * 3]]);\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[i * 3 + 1]]);\n      buffers.vertex.push(geoInfo.vertexPositions[facePositionIndexes[i * 3 + 2]]);\n      if (geoInfo.skeleton) {\n        buffers.vertexWeights.push(faceWeights[0]);\n        buffers.vertexWeights.push(faceWeights[1]);\n        buffers.vertexWeights.push(faceWeights[2]);\n        buffers.vertexWeights.push(faceWeights[3]);\n        buffers.vertexWeights.push(faceWeights[(i - 1) * 4]);\n        buffers.vertexWeights.push(faceWeights[(i - 1) * 4 + 1]);\n        buffers.vertexWeights.push(faceWeights[(i - 1) * 4 + 2]);\n        buffers.vertexWeights.push(faceWeights[(i - 1) * 4 + 3]);\n        buffers.vertexWeights.push(faceWeights[i * 4]);\n        buffers.vertexWeights.push(faceWeights[i * 4 + 1]);\n        buffers.vertexWeights.push(faceWeights[i * 4 + 2]);\n        buffers.vertexWeights.push(faceWeights[i * 4 + 3]);\n        buffers.weightsIndices.push(faceWeightIndices[0]);\n        buffers.weightsIndices.push(faceWeightIndices[1]);\n        buffers.weightsIndices.push(faceWeightIndices[2]);\n        buffers.weightsIndices.push(faceWeightIndices[3]);\n        buffers.weightsIndices.push(faceWeightIndices[(i - 1) * 4]);\n        buffers.weightsIndices.push(faceWeightIndices[(i - 1) * 4 + 1]);\n        buffers.weightsIndices.push(faceWeightIndices[(i - 1) * 4 + 2]);\n        buffers.weightsIndices.push(faceWeightIndices[(i - 1) * 4 + 3]);\n        buffers.weightsIndices.push(faceWeightIndices[i * 4]);\n        buffers.weightsIndices.push(faceWeightIndices[i * 4 + 1]);\n        buffers.weightsIndices.push(faceWeightIndices[i * 4 + 2]);\n        buffers.weightsIndices.push(faceWeightIndices[i * 4 + 3]);\n      }\n      if (geoInfo.color) {\n        buffers.colors.push(faceColors[0]);\n        buffers.colors.push(faceColors[1]);\n        buffers.colors.push(faceColors[2]);\n        buffers.colors.push(faceColors[(i - 1) * 3]);\n        buffers.colors.push(faceColors[(i - 1) * 3 + 1]);\n        buffers.colors.push(faceColors[(i - 1) * 3 + 2]);\n        buffers.colors.push(faceColors[i * 3]);\n        buffers.colors.push(faceColors[i * 3 + 1]);\n        buffers.colors.push(faceColors[i * 3 + 2]);\n      }\n      if (geoInfo.material && geoInfo.material.mappingType !== \"AllSame\") {\n        buffers.materialIndex.push(materialIndex);\n        buffers.materialIndex.push(materialIndex);\n        buffers.materialIndex.push(materialIndex);\n      }\n      if (geoInfo.normal) {\n        buffers.normal.push(faceNormals[0]);\n        buffers.normal.push(faceNormals[1]);\n        buffers.normal.push(faceNormals[2]);\n        buffers.normal.push(faceNormals[(i - 1) * 3]);\n        buffers.normal.push(faceNormals[(i - 1) * 3 + 1]);\n        buffers.normal.push(faceNormals[(i - 1) * 3 + 2]);\n        buffers.normal.push(faceNormals[i * 3]);\n        buffers.normal.push(faceNormals[i * 3 + 1]);\n        buffers.normal.push(faceNormals[i * 3 + 2]);\n      }\n      if (geoInfo.uv) {\n        geoInfo.uv.forEach(function(uv, j) {\n          if (buffers.uvs[j] === void 0)\n            buffers.uvs[j] = [];\n          buffers.uvs[j].push(faceUVs[j][0]);\n          buffers.uvs[j].push(faceUVs[j][1]);\n          buffers.uvs[j].push(faceUVs[j][(i - 1) * 2]);\n          buffers.uvs[j].push(faceUVs[j][(i - 1) * 2 + 1]);\n          buffers.uvs[j].push(faceUVs[j][i * 2]);\n          buffers.uvs[j].push(faceUVs[j][i * 2 + 1]);\n        });\n      }\n    }\n  }\n  addMorphTargets(parentGeo, parentGeoNode, morphTargets, preTransform) {\n    if (morphTargets.length === 0)\n      return;\n    parentGeo.morphTargetsRelative = true;\n    parentGeo.morphAttributes.position = [];\n    const scope = this;\n    morphTargets.forEach(function(morphTarget) {\n      morphTarget.rawTargets.forEach(function(rawTarget) {\n        const morphGeoNode = fbxTree.Objects.Geometry[rawTarget.geoID];\n        if (morphGeoNode !== void 0) {\n          scope.genMorphGeometry(parentGeo, parentGeoNode, morphGeoNode, preTransform, rawTarget.name);\n        }\n      });\n    });\n  }\n  genMorphGeometry(parentGeo, parentGeoNode, morphGeoNode, preTransform, name) {\n    const vertexIndices = parentGeoNode.PolygonVertexIndex !== void 0 ? parentGeoNode.PolygonVertexIndex.a : [];\n    const morphPositionsSparse = morphGeoNode.Vertices !== void 0 ? morphGeoNode.Vertices.a : [];\n    const indices = morphGeoNode.Indexes !== void 0 ? morphGeoNode.Indexes.a : [];\n    const length = parentGeo.attributes.position.count * 3;\n    const morphPositions = new Float32Array(length);\n    for (let i = 0; i < indices.length; i++) {\n      const morphIndex = indices[i] * 3;\n      morphPositions[morphIndex] = morphPositionsSparse[i * 3];\n      morphPositions[morphIndex + 1] = morphPositionsSparse[i * 3 + 1];\n      morphPositions[morphIndex + 2] = morphPositionsSparse[i * 3 + 2];\n    }\n    const morphGeoInfo = {\n      vertexIndices,\n      vertexPositions: morphPositions\n    };\n    const morphBuffers = this.genBuffers(morphGeoInfo);\n    const positionAttribute = new Float32BufferAttribute(morphBuffers.vertex, 3);\n    positionAttribute.name = name || morphGeoNode.attrName;\n    positionAttribute.applyMatrix4(preTransform);\n    parentGeo.morphAttributes.position.push(positionAttribute);\n  }\n  parseNormals(NormalNode) {\n    const mappingType = NormalNode.MappingInformationType;\n    const referenceType = NormalNode.ReferenceInformationType;\n    const buffer = NormalNode.Normals.a;\n    let indexBuffer = [];\n    if (referenceType === \"IndexToDirect\") {\n      if (\"NormalIndex\" in NormalNode) {\n        indexBuffer = NormalNode.NormalIndex.a;\n      } else if (\"NormalsIndex\" in NormalNode) {\n        indexBuffer = NormalNode.NormalsIndex.a;\n      }\n    }\n    return {\n      dataSize: 3,\n      buffer,\n      indices: indexBuffer,\n      mappingType,\n      referenceType\n    };\n  }\n  parseUVs(UVNode) {\n    const mappingType = UVNode.MappingInformationType;\n    const referenceType = UVNode.ReferenceInformationType;\n    const buffer = UVNode.UV.a;\n    let indexBuffer = [];\n    if (referenceType === \"IndexToDirect\") {\n      indexBuffer = UVNode.UVIndex.a;\n    }\n    return {\n      dataSize: 2,\n      buffer,\n      indices: indexBuffer,\n      mappingType,\n      referenceType\n    };\n  }\n  parseVertexColors(ColorNode) {\n    const mappingType = ColorNode.MappingInformationType;\n    const referenceType = ColorNode.ReferenceInformationType;\n    const buffer = ColorNode.Colors.a;\n    let indexBuffer = [];\n    if (referenceType === \"IndexToDirect\") {\n      indexBuffer = ColorNode.ColorIndex.a;\n    }\n    return {\n      dataSize: 4,\n      buffer,\n      indices: indexBuffer,\n      mappingType,\n      referenceType\n    };\n  }\n  parseMaterialIndices(MaterialNode) {\n    const mappingType = MaterialNode.MappingInformationType;\n    const referenceType = MaterialNode.ReferenceInformationType;\n    if (mappingType === \"NoMappingInformation\") {\n      return {\n        dataSize: 1,\n        buffer: [0],\n        indices: [0],\n        mappingType: \"AllSame\",\n        referenceType\n      };\n    }\n    const materialIndexBuffer = MaterialNode.Materials.a;\n    const materialIndices = [];\n    for (let i = 0; i < materialIndexBuffer.length; ++i) {\n      materialIndices.push(i);\n    }\n    return {\n      dataSize: 1,\n      buffer: materialIndexBuffer,\n      indices: materialIndices,\n      mappingType,\n      referenceType\n    };\n  }\n  parseNurbsGeometry(geoNode) {\n    if (NURBSCurve === void 0) {\n      console.error(\"THREE.FBXLoader: The loader relies on NURBSCurve for any nurbs present in the model. Nurbs will show up as empty geometry.\");\n      return new BufferGeometry();\n    }\n    const order = parseInt(geoNode.Order);\n    if (isNaN(order)) {\n      console.error(\"THREE.FBXLoader: Invalid Order %s given for geometry ID: %s\", geoNode.Order, geoNode.id);\n      return new BufferGeometry();\n    }\n    const degree = order - 1;\n    const knots = geoNode.KnotVector.a;\n    const controlPoints = [];\n    const pointsValues = geoNode.Points.a;\n    for (let i = 0, l = pointsValues.length; i < l; i += 4) {\n      controlPoints.push(new Vector4().fromArray(pointsValues, i));\n    }\n    let startKnot, endKnot;\n    if (geoNode.Form === \"Closed\") {\n      controlPoints.push(controlPoints[0]);\n    } else if (geoNode.Form === \"Periodic\") {\n      startKnot = degree;\n      endKnot = knots.length - 1 - startKnot;\n      for (let i = 0; i < degree; ++i) {\n        controlPoints.push(controlPoints[i]);\n      }\n    }\n    const curve = new NURBSCurve(degree, knots, controlPoints, startKnot, endKnot);\n    const points = curve.getPoints(controlPoints.length * 12);\n    return new BufferGeometry().setFromPoints(points);\n  }\n}\nclass AnimationParser {\n  parse() {\n    const animationClips = [];\n    const rawClips = this.parseClips();\n    if (rawClips !== void 0) {\n      for (const key in rawClips) {\n        const rawClip = rawClips[key];\n        const clip = this.addClip(rawClip);\n        animationClips.push(clip);\n      }\n    }\n    return animationClips;\n  }\n  parseClips() {\n    if (fbxTree.Objects.AnimationCurve === void 0)\n      return void 0;\n    const curveNodesMap = this.parseAnimationCurveNodes();\n    this.parseAnimationCurves(curveNodesMap);\n    const layersMap = this.parseAnimationLayers(curveNodesMap);\n    const rawClips = this.parseAnimStacks(layersMap);\n    return rawClips;\n  }\n  parseAnimationCurveNodes() {\n    const rawCurveNodes = fbxTree.Objects.AnimationCurveNode;\n    const curveNodesMap = /* @__PURE__ */ new Map();\n    for (const nodeID in rawCurveNodes) {\n      const rawCurveNode = rawCurveNodes[nodeID];\n      if (rawCurveNode.attrName.match(/S|R|T|DeformPercent/) !== null) {\n        const curveNode = {\n          id: rawCurveNode.id,\n          attr: rawCurveNode.attrName,\n          curves: {}\n        };\n        curveNodesMap.set(curveNode.id, curveNode);\n      }\n    }\n    return curveNodesMap;\n  }\n  parseAnimationCurves(curveNodesMap) {\n    const rawCurves = fbxTree.Objects.AnimationCurve;\n    for (const nodeID in rawCurves) {\n      const animationCurve = {\n        id: rawCurves[nodeID].id,\n        times: rawCurves[nodeID].KeyTime.a.map(convertFBXTimeToSeconds),\n        values: rawCurves[nodeID].KeyValueFloat.a\n      };\n      const relationships = connections.get(animationCurve.id);\n      if (relationships !== void 0) {\n        const animationCurveID = relationships.parents[0].ID;\n        const animationCurveRelationship = relationships.parents[0].relationship;\n        if (animationCurveRelationship.match(/X/)) {\n          curveNodesMap.get(animationCurveID).curves[\"x\"] = animationCurve;\n        } else if (animationCurveRelationship.match(/Y/)) {\n          curveNodesMap.get(animationCurveID).curves[\"y\"] = animationCurve;\n        } else if (animationCurveRelationship.match(/Z/)) {\n          curveNodesMap.get(animationCurveID).curves[\"z\"] = animationCurve;\n        } else if (animationCurveRelationship.match(/d|DeformPercent/) && curveNodesMap.has(animationCurveID)) {\n          curveNodesMap.get(animationCurveID).curves[\"morph\"] = animationCurve;\n        }\n      }\n    }\n  }\n  parseAnimationLayers(curveNodesMap) {\n    const rawLayers = fbxTree.Objects.AnimationLayer;\n    const layersMap = /* @__PURE__ */ new Map();\n    for (const nodeID in rawLayers) {\n      const layerCurveNodes = [];\n      const connection = connections.get(parseInt(nodeID));\n      if (connection !== void 0) {\n        const children = connection.children;\n        children.forEach(function(child, i) {\n          if (curveNodesMap.has(child.ID)) {\n            const curveNode = curveNodesMap.get(child.ID);\n            if (curveNode.curves.x !== void 0 || curveNode.curves.y !== void 0 || curveNode.curves.z !== void 0) {\n              if (layerCurveNodes[i] === void 0) {\n                const modelID = connections.get(child.ID).parents.filter(function(parent) {\n                  return parent.relationship !== void 0;\n                })[0].ID;\n                if (modelID !== void 0) {\n                  const rawModel = fbxTree.Objects.Model[modelID.toString()];\n                  if (rawModel === void 0) {\n                    console.warn(\"THREE.FBXLoader: Encountered a unused curve.\", child);\n                    return;\n                  }\n                  const node = {\n                    modelName: rawModel.attrName ? PropertyBinding.sanitizeNodeName(rawModel.attrName) : \"\",\n                    ID: rawModel.id,\n                    initialPosition: [0, 0, 0],\n                    initialRotation: [0, 0, 0],\n                    initialScale: [1, 1, 1]\n                  };\n                  sceneGraph.traverse(function(child2) {\n                    if (child2.ID === rawModel.id) {\n                      node.transform = child2.matrix;\n                      if (child2.userData.transformData)\n                        node.eulerOrder = child2.userData.transformData.eulerOrder;\n                    }\n                  });\n                  if (!node.transform)\n                    node.transform = new Matrix4();\n                  if (\"PreRotation\" in rawModel)\n                    node.preRotation = rawModel.PreRotation.value;\n                  if (\"PostRotation\" in rawModel)\n                    node.postRotation = rawModel.PostRotation.value;\n                  layerCurveNodes[i] = node;\n                }\n              }\n              if (layerCurveNodes[i])\n                layerCurveNodes[i][curveNode.attr] = curveNode;\n            } else if (curveNode.curves.morph !== void 0) {\n              if (layerCurveNodes[i] === void 0) {\n                const deformerID = connections.get(child.ID).parents.filter(function(parent) {\n                  return parent.relationship !== void 0;\n                })[0].ID;\n                const morpherID = connections.get(deformerID).parents[0].ID;\n                const geoID = connections.get(morpherID).parents[0].ID;\n                const modelID = connections.get(geoID).parents[0].ID;\n                const rawModel = fbxTree.Objects.Model[modelID];\n                const node = {\n                  modelName: rawModel.attrName ? PropertyBinding.sanitizeNodeName(rawModel.attrName) : \"\",\n                  morphName: fbxTree.Objects.Deformer[deformerID].attrName\n                };\n                layerCurveNodes[i] = node;\n              }\n              layerCurveNodes[i][curveNode.attr] = curveNode;\n            }\n          }\n        });\n        layersMap.set(parseInt(nodeID), layerCurveNodes);\n      }\n    }\n    return layersMap;\n  }\n  parseAnimStacks(layersMap) {\n    const rawStacks = fbxTree.Objects.AnimationStack;\n    const rawClips = {};\n    for (const nodeID in rawStacks) {\n      const children = connections.get(parseInt(nodeID)).children;\n      if (children.length > 1) {\n        console.warn(\"THREE.FBXLoader: Encountered an animation stack with multiple layers, this is currently not supported. Ignoring subsequent layers.\");\n      }\n      const layer = layersMap.get(children[0].ID);\n      rawClips[nodeID] = {\n        name: rawStacks[nodeID].attrName,\n        layer\n      };\n    }\n    return rawClips;\n  }\n  addClip(rawClip) {\n    let tracks = [];\n    const scope = this;\n    rawClip.layer.forEach(function(rawTracks) {\n      tracks = tracks.concat(scope.generateTracks(rawTracks));\n    });\n    return new AnimationClip(rawClip.name, -1, tracks);\n  }\n  generateTracks(rawTracks) {\n    const tracks = [];\n    let initialPosition = new Vector3();\n    let initialRotation = new Quaternion();\n    let initialScale = new Vector3();\n    if (rawTracks.transform)\n      rawTracks.transform.decompose(initialPosition, initialRotation, initialScale);\n    initialPosition = initialPosition.toArray();\n    initialRotation = new Euler().setFromQuaternion(initialRotation, rawTracks.eulerOrder).toArray();\n    initialScale = initialScale.toArray();\n    if (rawTracks.T !== void 0 && Object.keys(rawTracks.T.curves).length > 0) {\n      const positionTrack = this.generateVectorTrack(rawTracks.modelName, rawTracks.T.curves, initialPosition, \"position\");\n      if (positionTrack !== void 0)\n        tracks.push(positionTrack);\n    }\n    if (rawTracks.R !== void 0 && Object.keys(rawTracks.R.curves).length > 0) {\n      const rotationTrack = this.generateRotationTrack(rawTracks.modelName, rawTracks.R.curves, initialRotation, rawTracks.preRotation, rawTracks.postRotation, rawTracks.eulerOrder);\n      if (rotationTrack !== void 0)\n        tracks.push(rotationTrack);\n    }\n    if (rawTracks.S !== void 0 && Object.keys(rawTracks.S.curves).length > 0) {\n      const scaleTrack = this.generateVectorTrack(rawTracks.modelName, rawTracks.S.curves, initialScale, \"scale\");\n      if (scaleTrack !== void 0)\n        tracks.push(scaleTrack);\n    }\n    if (rawTracks.DeformPercent !== void 0) {\n      const morphTrack = this.generateMorphTrack(rawTracks);\n      if (morphTrack !== void 0)\n        tracks.push(morphTrack);\n    }\n    return tracks;\n  }\n  generateVectorTrack(modelName, curves, initialValue, type) {\n    const times = this.getTimesForAllAxes(curves);\n    const values = this.getKeyframeTrackValues(times, curves, initialValue);\n    return new VectorKeyframeTrack(modelName + \".\" + type, times, values);\n  }\n  generateRotationTrack(modelName, curves, initialValue, preRotation, postRotation, eulerOrder) {\n    if (curves.x !== void 0) {\n      this.interpolateRotations(curves.x);\n      curves.x.values = curves.x.values.map(MathUtils.degToRad);\n    }\n    if (curves.y !== void 0) {\n      this.interpolateRotations(curves.y);\n      curves.y.values = curves.y.values.map(MathUtils.degToRad);\n    }\n    if (curves.z !== void 0) {\n      this.interpolateRotations(curves.z);\n      curves.z.values = curves.z.values.map(MathUtils.degToRad);\n    }\n    const times = this.getTimesForAllAxes(curves);\n    const values = this.getKeyframeTrackValues(times, curves, initialValue);\n    if (preRotation !== void 0) {\n      preRotation = preRotation.map(MathUtils.degToRad);\n      preRotation.push(eulerOrder);\n      preRotation = new Euler().fromArray(preRotation);\n      preRotation = new Quaternion().setFromEuler(preRotation);\n    }\n    if (postRotation !== void 0) {\n      postRotation = postRotation.map(MathUtils.degToRad);\n      postRotation.push(eulerOrder);\n      postRotation = new Euler().fromArray(postRotation);\n      postRotation = new Quaternion().setFromEuler(postRotation).invert();\n    }\n    const quaternion = new Quaternion();\n    const euler = new Euler();\n    const quaternionValues = [];\n    for (let i = 0; i < values.length; i += 3) {\n      euler.set(values[i], values[i + 1], values[i + 2], eulerOrder);\n      quaternion.setFromEuler(euler);\n      if (preRotation !== void 0)\n        quaternion.premultiply(preRotation);\n      if (postRotation !== void 0)\n        quaternion.multiply(postRotation);\n      quaternion.toArray(quaternionValues, i / 3 * 4);\n    }\n    return new QuaternionKeyframeTrack(modelName + \".quaternion\", times, quaternionValues);\n  }\n  generateMorphTrack(rawTracks) {\n    const curves = rawTracks.DeformPercent.curves.morph;\n    const values = curves.values.map(function(val) {\n      return val / 100;\n    });\n    const morphNum = sceneGraph.getObjectByName(rawTracks.modelName).morphTargetDictionary[rawTracks.morphName];\n    return new NumberKeyframeTrack(rawTracks.modelName + \".morphTargetInfluences[\" + morphNum + \"]\", curves.times, values);\n  }\n  getTimesForAllAxes(curves) {\n    let times = [];\n    if (curves.x !== void 0)\n      times = times.concat(curves.x.times);\n    if (curves.y !== void 0)\n      times = times.concat(curves.y.times);\n    if (curves.z !== void 0)\n      times = times.concat(curves.z.times);\n    times = times.sort(function(a, b) {\n      return a - b;\n    });\n    if (times.length > 1) {\n      let targetIndex = 1;\n      let lastValue = times[0];\n      for (let i = 1; i < times.length; i++) {\n        const currentValue = times[i];\n        if (currentValue !== lastValue) {\n          times[targetIndex] = currentValue;\n          lastValue = currentValue;\n          targetIndex++;\n        }\n      }\n      times = times.slice(0, targetIndex);\n    }\n    return times;\n  }\n  getKeyframeTrackValues(times, curves, initialValue) {\n    const prevValue = initialValue;\n    const values = [];\n    let xIndex = -1;\n    let yIndex = -1;\n    let zIndex = -1;\n    times.forEach(function(time) {\n      if (curves.x)\n        xIndex = curves.x.times.indexOf(time);\n      if (curves.y)\n        yIndex = curves.y.times.indexOf(time);\n      if (curves.z)\n        zIndex = curves.z.times.indexOf(time);\n      if (xIndex !== -1) {\n        const xValue = curves.x.values[xIndex];\n        values.push(xValue);\n        prevValue[0] = xValue;\n      } else {\n        values.push(prevValue[0]);\n      }\n      if (yIndex !== -1) {\n        const yValue = curves.y.values[yIndex];\n        values.push(yValue);\n        prevValue[1] = yValue;\n      } else {\n        values.push(prevValue[1]);\n      }\n      if (zIndex !== -1) {\n        const zValue = curves.z.values[zIndex];\n        values.push(zValue);\n        prevValue[2] = zValue;\n      } else {\n        values.push(prevValue[2]);\n      }\n    });\n    return values;\n  }\n  interpolateRotations(curve) {\n    for (let i = 1; i < curve.values.length; i++) {\n      const initialValue = curve.values[i - 1];\n      const valuesSpan = curve.values[i] - initialValue;\n      const absoluteSpan = Math.abs(valuesSpan);\n      if (absoluteSpan >= 180) {\n        const numSubIntervals = absoluteSpan / 180;\n        const step = valuesSpan / numSubIntervals;\n        let nextValue = initialValue + step;\n        const initialTime = curve.times[i - 1];\n        const timeSpan = curve.times[i] - initialTime;\n        const interval = timeSpan / numSubIntervals;\n        let nextTime = initialTime + interval;\n        const interpolatedTimes = [];\n        const interpolatedValues = [];\n        while (nextTime < curve.times[i]) {\n          interpolatedTimes.push(nextTime);\n          nextTime += interval;\n          interpolatedValues.push(nextValue);\n          nextValue += step;\n        }\n        curve.times = inject(curve.times, i, interpolatedTimes);\n        curve.values = inject(curve.values, i, interpolatedValues);\n      }\n    }\n  }\n}\nclass TextParser {\n  getPrevNode() {\n    return this.nodeStack[this.currentIndent - 2];\n  }\n  getCurrentNode() {\n    return this.nodeStack[this.currentIndent - 1];\n  }\n  getCurrentProp() {\n    return this.currentProp;\n  }\n  pushStack(node) {\n    this.nodeStack.push(node);\n    this.currentIndent += 1;\n  }\n  popStack() {\n    this.nodeStack.pop();\n    this.currentIndent -= 1;\n  }\n  setCurrentProp(val, name) {\n    this.currentProp = val;\n    this.currentPropName = name;\n  }\n  parse(text) {\n    this.currentIndent = 0;\n    this.allNodes = new FBXTree();\n    this.nodeStack = [];\n    this.currentProp = [];\n    this.currentPropName = \"\";\n    const scope = this;\n    const split = text.split(/[\\r\\n]+/);\n    split.forEach(function(line, i) {\n      const matchComment = line.match(/^[\\s\\t]*;/);\n      const matchEmpty = line.match(/^[\\s\\t]*$/);\n      if (matchComment || matchEmpty)\n        return;\n      const matchBeginning = line.match(\"^\\\\t{\" + scope.currentIndent + \"}(\\\\w+):(.*){\", \"\");\n      const matchProperty = line.match(\"^\\\\t{\" + scope.currentIndent + \"}(\\\\w+):[\\\\s\\\\t\\\\r\\\\n](.*)\");\n      const matchEnd = line.match(\"^\\\\t{\" + (scope.currentIndent - 1) + \"}}\");\n      if (matchBeginning) {\n        scope.parseNodeBegin(line, matchBeginning);\n      } else if (matchProperty) {\n        scope.parseNodeProperty(line, matchProperty, split[++i]);\n      } else if (matchEnd) {\n        scope.popStack();\n      } else if (line.match(/^[^\\s\\t}]/)) {\n        scope.parseNodePropertyContinued(line);\n      }\n    });\n    return this.allNodes;\n  }\n  parseNodeBegin(line, property) {\n    const nodeName = property[1].trim().replace(/^\"/, \"\").replace(/\"$/, \"\");\n    const nodeAttrs = property[2].split(\",\").map(function(attr) {\n      return attr.trim().replace(/^\"/, \"\").replace(/\"$/, \"\");\n    });\n    const node = { name: nodeName };\n    const attrs = this.parseNodeAttr(nodeAttrs);\n    const currentNode = this.getCurrentNode();\n    if (this.currentIndent === 0) {\n      this.allNodes.add(nodeName, node);\n    } else {\n      if (nodeName in currentNode) {\n        if (nodeName === \"PoseNode\") {\n          currentNode.PoseNode.push(node);\n        } else if (currentNode[nodeName].id !== void 0) {\n          currentNode[nodeName] = {};\n          currentNode[nodeName][currentNode[nodeName].id] = currentNode[nodeName];\n        }\n        if (attrs.id !== \"\")\n          currentNode[nodeName][attrs.id] = node;\n      } else if (typeof attrs.id === \"number\") {\n        currentNode[nodeName] = {};\n        currentNode[nodeName][attrs.id] = node;\n      } else if (nodeName !== \"Properties70\") {\n        if (nodeName === \"PoseNode\")\n          currentNode[nodeName] = [node];\n        else\n          currentNode[nodeName] = node;\n      }\n    }\n    if (typeof attrs.id === \"number\")\n      node.id = attrs.id;\n    if (attrs.name !== \"\")\n      node.attrName = attrs.name;\n    if (attrs.type !== \"\")\n      node.attrType = attrs.type;\n    this.pushStack(node);\n  }\n  parseNodeAttr(attrs) {\n    let id2 = attrs[0];\n    if (attrs[0] !== \"\") {\n      id2 = parseInt(attrs[0]);\n      if (isNaN(id2)) {\n        id2 = attrs[0];\n      }\n    }\n    let name = \"\", type = \"\";\n    if (attrs.length > 1) {\n      name = attrs[1].replace(/^(\\w+)::/, \"\");\n      type = attrs[2];\n    }\n    return { id: id2, name, type };\n  }\n  parseNodeProperty(line, property, contentLine) {\n    let propName = property[1].replace(/^\"/, \"\").replace(/\"$/, \"\").trim();\n    let propValue = property[2].replace(/^\"/, \"\").replace(/\"$/, \"\").trim();\n    if (propName === \"Content\" && propValue === \",\") {\n      propValue = contentLine.replace(/\"/g, \"\").replace(/,$/, \"\").trim();\n    }\n    const currentNode = this.getCurrentNode();\n    const parentName = currentNode.name;\n    if (parentName === \"Properties70\") {\n      this.parseNodeSpecialProperty(line, propName, propValue);\n      return;\n    }\n    if (propName === \"C\") {\n      const connProps = propValue.split(\",\").slice(1);\n      const from = parseInt(connProps[0]);\n      const to = parseInt(connProps[1]);\n      let rest = propValue.split(\",\").slice(3);\n      rest = rest.map(function(elem) {\n        return elem.trim().replace(/^\"/, \"\");\n      });\n      propName = \"connections\";\n      propValue = [from, to];\n      append(propValue, rest);\n      if (currentNode[propName] === void 0) {\n        currentNode[propName] = [];\n      }\n    }\n    if (propName === \"Node\")\n      currentNode.id = propValue;\n    if (propName in currentNode && Array.isArray(currentNode[propName])) {\n      currentNode[propName].push(propValue);\n    } else {\n      if (propName !== \"a\")\n        currentNode[propName] = propValue;\n      else\n        currentNode.a = propValue;\n    }\n    this.setCurrentProp(currentNode, propName);\n    if (propName === \"a\" && propValue.slice(-1) !== \",\") {\n      currentNode.a = parseNumberArray(propValue);\n    }\n  }\n  parseNodePropertyContinued(line) {\n    const currentNode = this.getCurrentNode();\n    currentNode.a += line;\n    if (line.slice(-1) !== \",\") {\n      currentNode.a = parseNumberArray(currentNode.a);\n    }\n  }\n  parseNodeSpecialProperty(line, propName, propValue) {\n    const props = propValue.split('\",').map(function(prop) {\n      return prop.trim().replace(/^\\\"/, \"\").replace(/\\s/, \"_\");\n    });\n    const innerPropName = props[0];\n    const innerPropType1 = props[1];\n    const innerPropType2 = props[2];\n    const innerPropFlag = props[3];\n    let innerPropValue = props[4];\n    switch (innerPropType1) {\n      case \"int\":\n      case \"enum\":\n      case \"bool\":\n      case \"ULongLong\":\n      case \"double\":\n      case \"Number\":\n      case \"FieldOfView\":\n        innerPropValue = parseFloat(innerPropValue);\n        break;\n      case \"Color\":\n      case \"ColorRGB\":\n      case \"Vector3D\":\n      case \"Lcl_Translation\":\n      case \"Lcl_Rotation\":\n      case \"Lcl_Scaling\":\n        innerPropValue = parseNumberArray(innerPropValue);\n        break;\n    }\n    this.getPrevNode()[innerPropName] = {\n      \"type\": innerPropType1,\n      \"type2\": innerPropType2,\n      \"flag\": innerPropFlag,\n      \"value\": innerPropValue\n    };\n    this.setCurrentProp(this.getPrevNode(), innerPropName);\n  }\n}\nclass BinaryParser {\n  parse(buffer) {\n    const reader = new BinaryReader(buffer);\n    reader.skip(23);\n    const version = reader.getUint32();\n    if (version < 6400) {\n      throw new Error(\"THREE.FBXLoader: FBX version not supported, FileVersion: \" + version);\n    }\n    const allNodes = new FBXTree();\n    while (!this.endOfContent(reader)) {\n      const node = this.parseNode(reader, version);\n      if (node !== null)\n        allNodes.add(node.name, node);\n    }\n    return allNodes;\n  }\n  endOfContent(reader) {\n    if (reader.size() % 16 === 0) {\n      return (reader.getOffset() + 160 + 16 & ~15) >= reader.size();\n    } else {\n      return reader.getOffset() + 160 + 16 >= reader.size();\n    }\n  }\n  parseNode(reader, version) {\n    const node = {};\n    const endOffset = version >= 7500 ? reader.getUint64() : reader.getUint32();\n    const numProperties = version >= 7500 ? reader.getUint64() : reader.getUint32();\n    version >= 7500 ? reader.getUint64() : reader.getUint32();\n    const nameLen = reader.getUint8();\n    const name = reader.getString(nameLen);\n    if (endOffset === 0)\n      return null;\n    const propertyList = [];\n    for (let i = 0; i < numProperties; i++) {\n      propertyList.push(this.parseProperty(reader));\n    }\n    const id2 = propertyList.length > 0 ? propertyList[0] : \"\";\n    const attrName = propertyList.length > 1 ? propertyList[1] : \"\";\n    const attrType = propertyList.length > 2 ? propertyList[2] : \"\";\n    node.singleProperty = numProperties === 1 && reader.getOffset() === endOffset ? true : false;\n    while (endOffset > reader.getOffset()) {\n      const subNode = this.parseNode(reader, version);\n      if (subNode !== null)\n        this.parseSubNode(name, node, subNode);\n    }\n    node.propertyList = propertyList;\n    if (typeof id2 === \"number\")\n      node.id = id2;\n    if (attrName !== \"\")\n      node.attrName = attrName;\n    if (attrType !== \"\")\n      node.attrType = attrType;\n    if (name !== \"\")\n      node.name = name;\n    return node;\n  }\n  parseSubNode(name, node, subNode) {\n    if (subNode.singleProperty === true) {\n      const value = subNode.propertyList[0];\n      if (Array.isArray(value)) {\n        node[subNode.name] = subNode;\n        subNode.a = value;\n      } else {\n        node[subNode.name] = value;\n      }\n    } else if (name === \"Connections\" && subNode.name === \"C\") {\n      const array = [];\n      subNode.propertyList.forEach(function(property, i) {\n        if (i !== 0)\n          array.push(property);\n      });\n      if (node.connections === void 0) {\n        node.connections = [];\n      }\n      node.connections.push(array);\n    } else if (subNode.name === \"Properties70\") {\n      const keys = Object.keys(subNode);\n      keys.forEach(function(key) {\n        node[key] = subNode[key];\n      });\n    } else if (name === \"Properties70\" && subNode.name === \"P\") {\n      let innerPropName = subNode.propertyList[0];\n      let innerPropType1 = subNode.propertyList[1];\n      const innerPropType2 = subNode.propertyList[2];\n      const innerPropFlag = subNode.propertyList[3];\n      let innerPropValue;\n      if (innerPropName.indexOf(\"Lcl \") === 0)\n        innerPropName = innerPropName.replace(\"Lcl \", \"Lcl_\");\n      if (innerPropType1.indexOf(\"Lcl \") === 0)\n        innerPropType1 = innerPropType1.replace(\"Lcl \", \"Lcl_\");\n      if (innerPropType1 === \"Color\" || innerPropType1 === \"ColorRGB\" || innerPropType1 === \"Vector\" || innerPropType1 === \"Vector3D\" || innerPropType1.indexOf(\"Lcl_\") === 0) {\n        innerPropValue = [\n          subNode.propertyList[4],\n          subNode.propertyList[5],\n          subNode.propertyList[6]\n        ];\n      } else {\n        innerPropValue = subNode.propertyList[4];\n      }\n      node[innerPropName] = {\n        \"type\": innerPropType1,\n        \"type2\": innerPropType2,\n        \"flag\": innerPropFlag,\n        \"value\": innerPropValue\n      };\n    } else if (node[subNode.name] === void 0) {\n      if (typeof subNode.id === \"number\") {\n        node[subNode.name] = {};\n        node[subNode.name][subNode.id] = subNode;\n      } else {\n        node[subNode.name] = subNode;\n      }\n    } else {\n      if (subNode.name === \"PoseNode\") {\n        if (!Array.isArray(node[subNode.name])) {\n          node[subNode.name] = [node[subNode.name]];\n        }\n        node[subNode.name].push(subNode);\n      } else if (node[subNode.name][subNode.id] === void 0) {\n        node[subNode.name][subNode.id] = subNode;\n      }\n    }\n  }\n  parseProperty(reader) {\n    const type = reader.getString(1);\n    let length;\n    switch (type) {\n      case \"C\":\n        return reader.getBoolean();\n      case \"D\":\n        return reader.getFloat64();\n      case \"F\":\n        return reader.getFloat32();\n      case \"I\":\n        return reader.getInt32();\n      case \"L\":\n        return reader.getInt64();\n      case \"R\":\n        length = reader.getUint32();\n        return reader.getArrayBuffer(length);\n      case \"S\":\n        length = reader.getUint32();\n        return reader.getString(length);\n      case \"Y\":\n        return reader.getInt16();\n      case \"b\":\n      case \"c\":\n      case \"d\":\n      case \"f\":\n      case \"i\":\n      case \"l\":\n        const arrayLength = reader.getUint32();\n        const encoding = reader.getUint32();\n        const compressedLength = reader.getUint32();\n        if (encoding === 0) {\n          switch (type) {\n            case \"b\":\n            case \"c\":\n              return reader.getBooleanArray(arrayLength);\n            case \"d\":\n              return reader.getFloat64Array(arrayLength);\n            case \"f\":\n              return reader.getFloat32Array(arrayLength);\n            case \"i\":\n              return reader.getInt32Array(arrayLength);\n            case \"l\":\n              return reader.getInt64Array(arrayLength);\n          }\n        }\n        if (typeof fflate === \"undefined\") {\n          console.error(\"THREE.FBXLoader: External library fflate.min.js required.\");\n        }\n        const data = unzlibSync(new Uint8Array(reader.getArrayBuffer(compressedLength)));\n        const reader2 = new BinaryReader(data.buffer);\n        switch (type) {\n          case \"b\":\n          case \"c\":\n            return reader2.getBooleanArray(arrayLength);\n          case \"d\":\n            return reader2.getFloat64Array(arrayLength);\n          case \"f\":\n            return reader2.getFloat32Array(arrayLength);\n          case \"i\":\n            return reader2.getInt32Array(arrayLength);\n          case \"l\":\n            return reader2.getInt64Array(arrayLength);\n        }\n        break;\n      default:\n        throw new Error(\"THREE.FBXLoader: Unknown property type \" + type);\n    }\n  }\n}\nclass BinaryReader {\n  constructor(buffer, littleEndian) {\n    this.dv = new DataView(buffer);\n    this.offset = 0;\n    this.littleEndian = littleEndian !== void 0 ? littleEndian : true;\n  }\n  getOffset() {\n    return this.offset;\n  }\n  size() {\n    return this.dv.buffer.byteLength;\n  }\n  skip(length) {\n    this.offset += length;\n  }\n  getBoolean() {\n    return (this.getUint8() & 1) === 1;\n  }\n  getBooleanArray(size) {\n    const a = [];\n    for (let i = 0; i < size; i++) {\n      a.push(this.getBoolean());\n    }\n    return a;\n  }\n  getUint8() {\n    const value = this.dv.getUint8(this.offset);\n    this.offset += 1;\n    return value;\n  }\n  getInt16() {\n    const value = this.dv.getInt16(this.offset, this.littleEndian);\n    this.offset += 2;\n    return value;\n  }\n  getInt32() {\n    const value = this.dv.getInt32(this.offset, this.littleEndian);\n    this.offset += 4;\n    return value;\n  }\n  getInt32Array(size) {\n    const a = [];\n    for (let i = 0; i < size; i++) {\n      a.push(this.getInt32());\n    }\n    return a;\n  }\n  getUint32() {\n    const value = this.dv.getUint32(this.offset, this.littleEndian);\n    this.offset += 4;\n    return value;\n  }\n  getInt64() {\n    let low, high;\n    if (this.littleEndian) {\n      low = this.getUint32();\n      high = this.getUint32();\n    } else {\n      high = this.getUint32();\n      low = this.getUint32();\n    }\n    if (high & 2147483648) {\n      high = ~high & 4294967295;\n      low = ~low & 4294967295;\n      if (low === 4294967295)\n        high = high + 1 & 4294967295;\n      low = low + 1 & 4294967295;\n      return -(high * 4294967296 + low);\n    }\n    return high * 4294967296 + low;\n  }\n  getInt64Array(size) {\n    const a = [];\n    for (let i = 0; i < size; i++) {\n      a.push(this.getInt64());\n    }\n    return a;\n  }\n  getUint64() {\n    let low, high;\n    if (this.littleEndian) {\n      low = this.getUint32();\n      high = this.getUint32();\n    } else {\n      high = this.getUint32();\n      low = this.getUint32();\n    }\n    return high * 4294967296 + low;\n  }\n  getFloat32() {\n    const value = this.dv.getFloat32(this.offset, this.littleEndian);\n    this.offset += 4;\n    return value;\n  }\n  getFloat32Array(size) {\n    const a = [];\n    for (let i = 0; i < size; i++) {\n      a.push(this.getFloat32());\n    }\n    return a;\n  }\n  getFloat64() {\n    const value = this.dv.getFloat64(this.offset, this.littleEndian);\n    this.offset += 8;\n    return value;\n  }\n  getFloat64Array(size) {\n    const a = [];\n    for (let i = 0; i < size; i++) {\n      a.push(this.getFloat64());\n    }\n    return a;\n  }\n  getArrayBuffer(size) {\n    const value = this.dv.buffer.slice(this.offset, this.offset + size);\n    this.offset += size;\n    return value;\n  }\n  getString(size) {\n    let a = [];\n    for (let i = 0; i < size; i++) {\n      a[i] = this.getUint8();\n    }\n    const nullByte = a.indexOf(0);\n    if (nullByte >= 0)\n      a = a.slice(0, nullByte);\n    return LoaderUtils.decodeText(new Uint8Array(a));\n  }\n}\nclass FBXTree {\n  add(key, val) {\n    this[key] = val;\n  }\n}\nfunction isFbxFormatBinary(buffer) {\n  const CORRECT = \"Kaydara FBX Binary  \\0\";\n  return buffer.byteLength >= CORRECT.length && CORRECT === convertArrayBufferToString(buffer, 0, CORRECT.length);\n}\nfunction isFbxFormatASCII(text) {\n  const CORRECT = [\"K\", \"a\", \"y\", \"d\", \"a\", \"r\", \"a\", \"\\\\\", \"F\", \"B\", \"X\", \"\\\\\", \"B\", \"i\", \"n\", \"a\", \"r\", \"y\", \"\\\\\", \"\\\\\"];\n  let cursor = 0;\n  function read(offset) {\n    const result = text[offset - 1];\n    text = text.slice(cursor + offset);\n    cursor++;\n    return result;\n  }\n  for (let i = 0; i < CORRECT.length; ++i) {\n    const num = read(1);\n    if (num === CORRECT[i]) {\n      return false;\n    }\n  }\n  return true;\n}\nfunction getFbxVersion(text) {\n  const versionRegExp = /FBXVersion: (\\d+)/;\n  const match = text.match(versionRegExp);\n  if (match) {\n    const version = parseInt(match[1]);\n    return version;\n  }\n  throw new Error(\"THREE.FBXLoader: Cannot find the version number for the file given.\");\n}\nfunction convertFBXTimeToSeconds(time) {\n  return time / 46186158e3;\n}\nconst dataArray = [];\nfunction getData(polygonVertexIndex, polygonIndex, vertexIndex, infoObject) {\n  let index2;\n  switch (infoObject.mappingType) {\n    case \"ByPolygonVertex\":\n      index2 = polygonVertexIndex;\n      break;\n    case \"ByPolygon\":\n      index2 = polygonIndex;\n      break;\n    case \"ByVertice\":\n      index2 = vertexIndex;\n      break;\n    case \"AllSame\":\n      index2 = infoObject.indices[0];\n      break;\n    default:\n      console.warn(\"THREE.FBXLoader: unknown attribute mapping type \" + infoObject.mappingType);\n  }\n  if (infoObject.referenceType === \"IndexToDirect\")\n    index2 = infoObject.indices[index2];\n  const from = index2 * infoObject.dataSize;\n  const to = from + infoObject.dataSize;\n  return slice(dataArray, infoObject.buffer, from, to);\n}\nconst tempEuler = new Euler();\nconst tempVec = new Vector3();\nfunction generateTransform(transformData) {\n  const lTranslationM = new Matrix4();\n  const lPreRotationM = new Matrix4();\n  const lRotationM = new Matrix4();\n  const lPostRotationM = new Matrix4();\n  const lScalingM = new Matrix4();\n  const lScalingPivotM = new Matrix4();\n  const lScalingOffsetM = new Matrix4();\n  const lRotationOffsetM = new Matrix4();\n  const lRotationPivotM = new Matrix4();\n  const lParentGX = new Matrix4();\n  const lParentLX = new Matrix4();\n  const lGlobalT = new Matrix4();\n  const inheritType = transformData.inheritType ? transformData.inheritType : 0;\n  if (transformData.translation)\n    lTranslationM.setPosition(tempVec.fromArray(transformData.translation));\n  if (transformData.preRotation) {\n    const array = transformData.preRotation.map(MathUtils.degToRad);\n    array.push(transformData.eulerOrder);\n    lPreRotationM.makeRotationFromEuler(tempEuler.fromArray(array));\n  }\n  if (transformData.rotation) {\n    const array = transformData.rotation.map(MathUtils.degToRad);\n    array.push(transformData.eulerOrder);\n    lRotationM.makeRotationFromEuler(tempEuler.fromArray(array));\n  }\n  if (transformData.postRotation) {\n    const array = transformData.postRotation.map(MathUtils.degToRad);\n    array.push(transformData.eulerOrder);\n    lPostRotationM.makeRotationFromEuler(tempEuler.fromArray(array));\n    lPostRotationM.invert();\n  }\n  if (transformData.scale)\n    lScalingM.scale(tempVec.fromArray(transformData.scale));\n  if (transformData.scalingOffset)\n    lScalingOffsetM.setPosition(tempVec.fromArray(transformData.scalingOffset));\n  if (transformData.scalingPivot)\n    lScalingPivotM.setPosition(tempVec.fromArray(transformData.scalingPivot));\n  if (transformData.rotationOffset)\n    lRotationOffsetM.setPosition(tempVec.fromArray(transformData.rotationOffset));\n  if (transformData.rotationPivot)\n    lRotationPivotM.setPosition(tempVec.fromArray(transformData.rotationPivot));\n  if (transformData.parentMatrixWorld) {\n    lParentLX.copy(transformData.parentMatrix);\n    lParentGX.copy(transformData.parentMatrixWorld);\n  }\n  const lLRM = lPreRotationM.clone().multiply(lRotationM).multiply(lPostRotationM);\n  const lParentGRM = new Matrix4();\n  lParentGRM.extractRotation(lParentGX);\n  const lParentTM = new Matrix4();\n  lParentTM.copyPosition(lParentGX);\n  const lParentGRSM = lParentTM.clone().invert().multiply(lParentGX);\n  const lParentGSM = lParentGRM.clone().invert().multiply(lParentGRSM);\n  const lLSM = lScalingM;\n  const lGlobalRS = new Matrix4();\n  if (inheritType === 0) {\n    lGlobalRS.copy(lParentGRM).multiply(lLRM).multiply(lParentGSM).multiply(lLSM);\n  } else if (inheritType === 1) {\n    lGlobalRS.copy(lParentGRM).multiply(lParentGSM).multiply(lLRM).multiply(lLSM);\n  } else {\n    const lParentLSM = new Matrix4().scale(new Vector3().setFromMatrixScale(lParentLX));\n    const lParentLSM_inv = lParentLSM.clone().invert();\n    const lParentGSM_noLocal = lParentGSM.clone().multiply(lParentLSM_inv);\n    lGlobalRS.copy(lParentGRM).multiply(lLRM).multiply(lParentGSM_noLocal).multiply(lLSM);\n  }\n  const lRotationPivotM_inv = lRotationPivotM.clone().invert();\n  const lScalingPivotM_inv = lScalingPivotM.clone().invert();\n  let lTransform = lTranslationM.clone().multiply(lRotationOffsetM).multiply(lRotationPivotM).multiply(lPreRotationM).multiply(lRotationM).multiply(lPostRotationM).multiply(lRotationPivotM_inv).multiply(lScalingOffsetM).multiply(lScalingPivotM).multiply(lScalingM).multiply(lScalingPivotM_inv);\n  const lLocalTWithAllPivotAndOffsetInfo = new Matrix4().copyPosition(lTransform);\n  const lGlobalTranslation = lParentGX.clone().multiply(lLocalTWithAllPivotAndOffsetInfo);\n  lGlobalT.copyPosition(lGlobalTranslation);\n  lTransform = lGlobalT.clone().multiply(lGlobalRS);\n  lTransform.premultiply(lParentGX.invert());\n  return lTransform;\n}\nfunction getEulerOrder(order) {\n  order = order || 0;\n  const enums = [\n    \"ZYX\",\n    \"YZX\",\n    \"XZY\",\n    \"ZXY\",\n    \"YXZ\",\n    \"XYZ\"\n  ];\n  if (order === 6) {\n    console.warn(\"THREE.FBXLoader: unsupported Euler Order: Spherical XYZ. Animations and rotations may be incorrect.\");\n    return enums[0];\n  }\n  return enums[order];\n}\nfunction parseNumberArray(value) {\n  const array = value.split(\",\").map(function(val) {\n    return parseFloat(val);\n  });\n  return array;\n}\nfunction convertArrayBufferToString(buffer, from, to) {\n  if (from === void 0)\n    from = 0;\n  if (to === void 0)\n    to = buffer.byteLength;\n  return LoaderUtils.decodeText(new Uint8Array(buffer, from, to));\n}\nfunction append(a, b) {\n  for (let i = 0, j = a.length, l = b.length; i < l; i++, j++) {\n    a[j] = b[i];\n  }\n}\nfunction slice(a, b, from, to) {\n  for (let i = from, j = 0; i < to; i++, j++) {\n    a[j] = b[i];\n  }\n  return a;\n}\nfunction inject(a1, index2, a2) {\n  return a1.slice(0, index2).concat(a2).concat(a1.slice(index2));\n}\nclass TGALoader extends DataTextureLoader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  parse(buffer) {\n    function tgaCheckHeader(header2) {\n      switch (header2.image_type) {\n        case TGA_TYPE_INDEXED:\n        case TGA_TYPE_RLE_INDEXED:\n          if (header2.colormap_length > 256 || header2.colormap_size !== 24 || header2.colormap_type !== 1) {\n            console.error(\"THREE.TGALoader: Invalid type colormap data for indexed type.\");\n          }\n          break;\n        case TGA_TYPE_RGB:\n        case TGA_TYPE_GREY:\n        case TGA_TYPE_RLE_RGB:\n        case TGA_TYPE_RLE_GREY:\n          if (header2.colormap_type) {\n            console.error(\"THREE.TGALoader: Invalid type colormap data for colormap type.\");\n          }\n          break;\n        case TGA_TYPE_NO_DATA:\n          console.error(\"THREE.TGALoader: No data.\");\n        default:\n          console.error('THREE.TGALoader: Invalid type \"%s\".', header2.image_type);\n      }\n      if (header2.width <= 0 || header2.height <= 0) {\n        console.error(\"THREE.TGALoader: Invalid image size.\");\n      }\n      if (header2.pixel_size !== 8 && header2.pixel_size !== 16 && header2.pixel_size !== 24 && header2.pixel_size !== 32) {\n        console.error('THREE.TGALoader: Invalid pixel size \"%s\".', header2.pixel_size);\n      }\n    }\n    function tgaParse(use_rle2, use_pal2, header2, offset2, data) {\n      let pixel_data, palettes;\n      const pixel_size = header2.pixel_size >> 3;\n      const pixel_total = header2.width * header2.height * pixel_size;\n      if (use_pal2) {\n        palettes = data.subarray(offset2, offset2 += header2.colormap_length * (header2.colormap_size >> 3));\n      }\n      if (use_rle2) {\n        pixel_data = new Uint8Array(pixel_total);\n        let c, count, i;\n        let shift = 0;\n        const pixels = new Uint8Array(pixel_size);\n        while (shift < pixel_total) {\n          c = data[offset2++];\n          count = (c & 127) + 1;\n          if (c & 128) {\n            for (i = 0; i < pixel_size; ++i) {\n              pixels[i] = data[offset2++];\n            }\n            for (i = 0; i < count; ++i) {\n              pixel_data.set(pixels, shift + i * pixel_size);\n            }\n            shift += pixel_size * count;\n          } else {\n            count *= pixel_size;\n            for (i = 0; i < count; ++i) {\n              pixel_data[shift + i] = data[offset2++];\n            }\n            shift += count;\n          }\n        }\n      } else {\n        pixel_data = data.subarray(offset2, offset2 += use_pal2 ? header2.width * header2.height : pixel_total);\n      }\n      return {\n        pixel_data,\n        palettes\n      };\n    }\n    function tgaGetImageData8bits(imageData2, y_start, y_step, y_end, x_start, x_step, x_end, image, palettes) {\n      const colormap = palettes;\n      let color, i = 0, x, y;\n      const width = header.width;\n      for (y = y_start; y !== y_end; y += y_step) {\n        for (x = x_start; x !== x_end; x += x_step, i++) {\n          color = image[i];\n          imageData2[(x + width * y) * 4 + 3] = 255;\n          imageData2[(x + width * y) * 4 + 2] = colormap[color * 3 + 0];\n          imageData2[(x + width * y) * 4 + 1] = colormap[color * 3 + 1];\n          imageData2[(x + width * y) * 4 + 0] = colormap[color * 3 + 2];\n        }\n      }\n      return imageData2;\n    }\n    function tgaGetImageData16bits(imageData2, y_start, y_step, y_end, x_start, x_step, x_end, image) {\n      let color, i = 0, x, y;\n      const width = header.width;\n      for (y = y_start; y !== y_end; y += y_step) {\n        for (x = x_start; x !== x_end; x += x_step, i += 2) {\n          color = image[i + 0] + (image[i + 1] << 8);\n          imageData2[(x + width * y) * 4 + 0] = (color & 31744) >> 7;\n          imageData2[(x + width * y) * 4 + 1] = (color & 992) >> 2;\n          imageData2[(x + width * y) * 4 + 2] = (color & 31) << 3;\n          imageData2[(x + width * y) * 4 + 3] = color & 32768 ? 0 : 255;\n        }\n      }\n      return imageData2;\n    }\n    function tgaGetImageData24bits(imageData2, y_start, y_step, y_end, x_start, x_step, x_end, image) {\n      let i = 0, x, y;\n      const width = header.width;\n      for (y = y_start; y !== y_end; y += y_step) {\n        for (x = x_start; x !== x_end; x += x_step, i += 3) {\n          imageData2[(x + width * y) * 4 + 3] = 255;\n          imageData2[(x + width * y) * 4 + 2] = image[i + 0];\n          imageData2[(x + width * y) * 4 + 1] = image[i + 1];\n          imageData2[(x + width * y) * 4 + 0] = image[i + 2];\n        }\n      }\n      return imageData2;\n    }\n    function tgaGetImageData32bits(imageData2, y_start, y_step, y_end, x_start, x_step, x_end, image) {\n      let i = 0, x, y;\n      const width = header.width;\n      for (y = y_start; y !== y_end; y += y_step) {\n        for (x = x_start; x !== x_end; x += x_step, i += 4) {\n          imageData2[(x + width * y) * 4 + 2] = image[i + 0];\n          imageData2[(x + width * y) * 4 + 1] = image[i + 1];\n          imageData2[(x + width * y) * 4 + 0] = image[i + 2];\n          imageData2[(x + width * y) * 4 + 3] = image[i + 3];\n        }\n      }\n      return imageData2;\n    }\n    function tgaGetImageDataGrey8bits(imageData2, y_start, y_step, y_end, x_start, x_step, x_end, image) {\n      let color, i = 0, x, y;\n      const width = header.width;\n      for (y = y_start; y !== y_end; y += y_step) {\n        for (x = x_start; x !== x_end; x += x_step, i++) {\n          color = image[i];\n          imageData2[(x + width * y) * 4 + 0] = color;\n          imageData2[(x + width * y) * 4 + 1] = color;\n          imageData2[(x + width * y) * 4 + 2] = color;\n          imageData2[(x + width * y) * 4 + 3] = 255;\n        }\n      }\n      return imageData2;\n    }\n    function tgaGetImageDataGrey16bits(imageData2, y_start, y_step, y_end, x_start, x_step, x_end, image) {\n      let i = 0, x, y;\n      const width = header.width;\n      for (y = y_start; y !== y_end; y += y_step) {\n        for (x = x_start; x !== x_end; x += x_step, i += 2) {\n          imageData2[(x + width * y) * 4 + 0] = image[i + 0];\n          imageData2[(x + width * y) * 4 + 1] = image[i + 0];\n          imageData2[(x + width * y) * 4 + 2] = image[i + 0];\n          imageData2[(x + width * y) * 4 + 3] = image[i + 1];\n        }\n      }\n      return imageData2;\n    }\n    function getTgaRGBA(data, width, height, image, palette) {\n      let x_start, y_start, x_step, y_step, x_end, y_end;\n      switch ((header.flags & TGA_ORIGIN_MASK) >> TGA_ORIGIN_SHIFT) {\n        default:\n        case TGA_ORIGIN_UL:\n          x_start = 0;\n          x_step = 1;\n          x_end = width;\n          y_start = 0;\n          y_step = 1;\n          y_end = height;\n          break;\n        case TGA_ORIGIN_BL:\n          x_start = 0;\n          x_step = 1;\n          x_end = width;\n          y_start = height - 1;\n          y_step = -1;\n          y_end = -1;\n          break;\n        case TGA_ORIGIN_UR:\n          x_start = width - 1;\n          x_step = -1;\n          x_end = -1;\n          y_start = 0;\n          y_step = 1;\n          y_end = height;\n          break;\n        case TGA_ORIGIN_BR:\n          x_start = width - 1;\n          x_step = -1;\n          x_end = -1;\n          y_start = height - 1;\n          y_step = -1;\n          y_end = -1;\n          break;\n      }\n      if (use_grey) {\n        switch (header.pixel_size) {\n          case 8:\n            tgaGetImageDataGrey8bits(data, y_start, y_step, y_end, x_start, x_step, x_end, image);\n            break;\n          case 16:\n            tgaGetImageDataGrey16bits(data, y_start, y_step, y_end, x_start, x_step, x_end, image);\n            break;\n          default:\n            console.error(\"THREE.TGALoader: Format not supported.\");\n            break;\n        }\n      } else {\n        switch (header.pixel_size) {\n          case 8:\n            tgaGetImageData8bits(data, y_start, y_step, y_end, x_start, x_step, x_end, image, palette);\n            break;\n          case 16:\n            tgaGetImageData16bits(data, y_start, y_step, y_end, x_start, x_step, x_end, image);\n            break;\n          case 24:\n            tgaGetImageData24bits(data, y_start, y_step, y_end, x_start, x_step, x_end, image);\n            break;\n          case 32:\n            tgaGetImageData32bits(data, y_start, y_step, y_end, x_start, x_step, x_end, image);\n            break;\n          default:\n            console.error(\"THREE.TGALoader: Format not supported.\");\n            break;\n        }\n      }\n      return data;\n    }\n    const TGA_TYPE_NO_DATA = 0, TGA_TYPE_INDEXED = 1, TGA_TYPE_RGB = 2, TGA_TYPE_GREY = 3, TGA_TYPE_RLE_INDEXED = 9, TGA_TYPE_RLE_RGB = 10, TGA_TYPE_RLE_GREY = 11, TGA_ORIGIN_MASK = 48, TGA_ORIGIN_SHIFT = 4, TGA_ORIGIN_BL = 0, TGA_ORIGIN_BR = 1, TGA_ORIGIN_UL = 2, TGA_ORIGIN_UR = 3;\n    if (buffer.length < 19)\n      console.error(\"THREE.TGALoader: Not enough data to contain header.\");\n    let offset = 0;\n    const content = new Uint8Array(buffer), header = {\n      id_length: content[offset++],\n      colormap_type: content[offset++],\n      image_type: content[offset++],\n      colormap_index: content[offset++] | content[offset++] << 8,\n      colormap_length: content[offset++] | content[offset++] << 8,\n      colormap_size: content[offset++],\n      origin: [\n        content[offset++] | content[offset++] << 8,\n        content[offset++] | content[offset++] << 8\n      ],\n      width: content[offset++] | content[offset++] << 8,\n      height: content[offset++] | content[offset++] << 8,\n      pixel_size: content[offset++],\n      flags: content[offset++]\n    };\n    tgaCheckHeader(header);\n    if (header.id_length + offset > buffer.length) {\n      console.error(\"THREE.TGALoader: No data.\");\n    }\n    offset += header.id_length;\n    let use_rle = false, use_pal = false, use_grey = false;\n    switch (header.image_type) {\n      case TGA_TYPE_RLE_INDEXED:\n        use_rle = true;\n        use_pal = true;\n        break;\n      case TGA_TYPE_INDEXED:\n        use_pal = true;\n        break;\n      case TGA_TYPE_RLE_RGB:\n        use_rle = true;\n        break;\n      case TGA_TYPE_RGB:\n        break;\n      case TGA_TYPE_RLE_GREY:\n        use_rle = true;\n        use_grey = true;\n        break;\n      case TGA_TYPE_GREY:\n        use_grey = true;\n        break;\n    }\n    const imageData = new Uint8Array(header.width * header.height * 4);\n    const result = tgaParse(use_rle, use_pal, header, offset, content);\n    getTgaRGBA(imageData, header.width, header.height, result.pixel_data, result.palettes);\n    return {\n      data: imageData,\n      width: header.width,\n      height: header.height,\n      flipY: true,\n      generateMipmaps: true,\n      minFilter: LinearMipmapLinearFilter\n    };\n  }\n}\nclass ColladaLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const path = scope.path === \"\" ? LoaderUtils.extractUrlBase(url) : scope.path;\n    const loader = new FileLoader(scope.manager);\n    loader.setPath(scope.path);\n    loader.setRequestHeader(scope.requestHeader);\n    loader.setWithCredentials(scope.withCredentials);\n    loader.load(url, function(text) {\n      try {\n        onLoad(scope.parse(text, path));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  parse(text, path) {\n    function getElementsByTagName(xml2, name) {\n      const array = [];\n      const childNodes = xml2.childNodes;\n      for (let i = 0, l = childNodes.length; i < l; i++) {\n        const child = childNodes[i];\n        if (child.nodeName === name) {\n          array.push(child);\n        }\n      }\n      return array;\n    }\n    function parseStrings(text2) {\n      if (text2.length === 0)\n        return [];\n      const parts = text2.trim().split(/\\s+/);\n      const array = new Array(parts.length);\n      for (let i = 0, l = parts.length; i < l; i++) {\n        array[i] = parts[i];\n      }\n      return array;\n    }\n    function parseFloats(text2) {\n      if (text2.length === 0)\n        return [];\n      const parts = text2.trim().split(/\\s+/);\n      const array = new Array(parts.length);\n      for (let i = 0, l = parts.length; i < l; i++) {\n        array[i] = parseFloat(parts[i]);\n      }\n      return array;\n    }\n    function parseInts(text2) {\n      if (text2.length === 0)\n        return [];\n      const parts = text2.trim().split(/\\s+/);\n      const array = new Array(parts.length);\n      for (let i = 0, l = parts.length; i < l; i++) {\n        array[i] = parseInt(parts[i]);\n      }\n      return array;\n    }\n    function parseId(text2) {\n      return text2.substring(1);\n    }\n    function generateId() {\n      return \"three_default_\" + count++;\n    }\n    function isEmpty(object) {\n      return Object.keys(object).length === 0;\n    }\n    function parseAsset(xml2) {\n      return {\n        unit: parseAssetUnit(getElementsByTagName(xml2, \"unit\")[0]),\n        upAxis: parseAssetUpAxis(getElementsByTagName(xml2, \"up_axis\")[0])\n      };\n    }\n    function parseAssetUnit(xml2) {\n      if (xml2 !== void 0 && xml2.hasAttribute(\"meter\") === true) {\n        return parseFloat(xml2.getAttribute(\"meter\"));\n      } else {\n        return 1;\n      }\n    }\n    function parseAssetUpAxis(xml2) {\n      return xml2 !== void 0 ? xml2.textContent : \"Y_UP\";\n    }\n    function parseLibrary(xml2, libraryName, nodeName, parser) {\n      const library2 = getElementsByTagName(xml2, libraryName)[0];\n      if (library2 !== void 0) {\n        const elements = getElementsByTagName(library2, nodeName);\n        for (let i = 0; i < elements.length; i++) {\n          parser(elements[i]);\n        }\n      }\n    }\n    function buildLibrary(data, builder) {\n      for (const name in data) {\n        const object = data[name];\n        object.build = builder(data[name]);\n      }\n    }\n    function getBuild(data, builder) {\n      if (data.build !== void 0)\n        return data.build;\n      data.build = builder(data);\n      return data.build;\n    }\n    function parseAnimation(xml2) {\n      const data = {\n        sources: {},\n        samplers: {},\n        channels: {}\n      };\n      let hasChildren = false;\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        let id2;\n        switch (child.nodeName) {\n          case \"source\":\n            id2 = child.getAttribute(\"id\");\n            data.sources[id2] = parseSource(child);\n            break;\n          case \"sampler\":\n            id2 = child.getAttribute(\"id\");\n            data.samplers[id2] = parseAnimationSampler(child);\n            break;\n          case \"channel\":\n            id2 = child.getAttribute(\"target\");\n            data.channels[id2] = parseAnimationChannel(child);\n            break;\n          case \"animation\":\n            parseAnimation(child);\n            hasChildren = true;\n            break;\n          default:\n            console.log(child);\n        }\n      }\n      if (hasChildren === false) {\n        library.animations[xml2.getAttribute(\"id\") || MathUtils.generateUUID()] = data;\n      }\n    }\n    function parseAnimationSampler(xml2) {\n      const data = {\n        inputs: {}\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"input\":\n            const id2 = parseId(child.getAttribute(\"source\"));\n            const semantic = child.getAttribute(\"semantic\");\n            data.inputs[semantic] = id2;\n            break;\n        }\n      }\n      return data;\n    }\n    function parseAnimationChannel(xml2) {\n      const data = {};\n      const target = xml2.getAttribute(\"target\");\n      let parts = target.split(\"/\");\n      const id2 = parts.shift();\n      let sid = parts.shift();\n      const arraySyntax = sid.indexOf(\"(\") !== -1;\n      const memberSyntax = sid.indexOf(\".\") !== -1;\n      if (memberSyntax) {\n        parts = sid.split(\".\");\n        sid = parts.shift();\n        data.member = parts.shift();\n      } else if (arraySyntax) {\n        const indices = sid.split(\"(\");\n        sid = indices.shift();\n        for (let i = 0; i < indices.length; i++) {\n          indices[i] = parseInt(indices[i].replace(/\\)/, \"\"));\n        }\n        data.indices = indices;\n      }\n      data.id = id2;\n      data.sid = sid;\n      data.arraySyntax = arraySyntax;\n      data.memberSyntax = memberSyntax;\n      data.sampler = parseId(xml2.getAttribute(\"source\"));\n      return data;\n    }\n    function buildAnimation(data) {\n      const tracks = [];\n      const channels = data.channels;\n      const samplers = data.samplers;\n      const sources = data.sources;\n      for (const target in channels) {\n        if (channels.hasOwnProperty(target)) {\n          const channel = channels[target];\n          const sampler = samplers[channel.sampler];\n          const inputId = sampler.inputs.INPUT;\n          const outputId = sampler.inputs.OUTPUT;\n          const inputSource = sources[inputId];\n          const outputSource = sources[outputId];\n          const animation = buildAnimationChannel(channel, inputSource, outputSource);\n          createKeyframeTracks(animation, tracks);\n        }\n      }\n      return tracks;\n    }\n    function getAnimation(id2) {\n      return getBuild(library.animations[id2], buildAnimation);\n    }\n    function buildAnimationChannel(channel, inputSource, outputSource) {\n      const node = library.nodes[channel.id];\n      const object3D = getNode(node.id);\n      const transform = node.transforms[channel.sid];\n      const defaultMatrix = node.matrix.clone().transpose();\n      let time, stride;\n      let i, il, j, jl;\n      const data = {};\n      switch (transform) {\n        case \"matrix\":\n          for (i = 0, il = inputSource.array.length; i < il; i++) {\n            time = inputSource.array[i];\n            stride = i * outputSource.stride;\n            if (data[time] === void 0)\n              data[time] = {};\n            if (channel.arraySyntax === true) {\n              const value = outputSource.array[stride];\n              const index2 = channel.indices[0] + 4 * channel.indices[1];\n              data[time][index2] = value;\n            } else {\n              for (j = 0, jl = outputSource.stride; j < jl; j++) {\n                data[time][j] = outputSource.array[stride + j];\n              }\n            }\n          }\n          break;\n        case \"translate\":\n          console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.', transform);\n          break;\n        case \"rotate\":\n          console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.', transform);\n          break;\n        case \"scale\":\n          console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.', transform);\n          break;\n      }\n      const keyframes = prepareAnimationData(data, defaultMatrix);\n      const animation = {\n        name: object3D.uuid,\n        keyframes\n      };\n      return animation;\n    }\n    function prepareAnimationData(data, defaultMatrix) {\n      const keyframes = [];\n      for (const time in data) {\n        keyframes.push({ time: parseFloat(time), value: data[time] });\n      }\n      keyframes.sort(ascending);\n      for (let i = 0; i < 16; i++) {\n        transformAnimationData(keyframes, i, defaultMatrix.elements[i]);\n      }\n      return keyframes;\n      function ascending(a, b) {\n        return a.time - b.time;\n      }\n    }\n    const position = new Vector3();\n    const scale = new Vector3();\n    const quaternion = new Quaternion();\n    function createKeyframeTracks(animation, tracks) {\n      const keyframes = animation.keyframes;\n      const name = animation.name;\n      const times = [];\n      const positionData = [];\n      const quaternionData = [];\n      const scaleData = [];\n      for (let i = 0, l = keyframes.length; i < l; i++) {\n        const keyframe = keyframes[i];\n        const time = keyframe.time;\n        const value = keyframe.value;\n        matrix.fromArray(value).transpose();\n        matrix.decompose(position, quaternion, scale);\n        times.push(time);\n        positionData.push(position.x, position.y, position.z);\n        quaternionData.push(quaternion.x, quaternion.y, quaternion.z, quaternion.w);\n        scaleData.push(scale.x, scale.y, scale.z);\n      }\n      if (positionData.length > 0)\n        tracks.push(new VectorKeyframeTrack(name + \".position\", times, positionData));\n      if (quaternionData.length > 0)\n        tracks.push(new QuaternionKeyframeTrack(name + \".quaternion\", times, quaternionData));\n      if (scaleData.length > 0)\n        tracks.push(new VectorKeyframeTrack(name + \".scale\", times, scaleData));\n      return tracks;\n    }\n    function transformAnimationData(keyframes, property, defaultValue) {\n      let keyframe;\n      let empty = true;\n      let i, l;\n      for (i = 0, l = keyframes.length; i < l; i++) {\n        keyframe = keyframes[i];\n        if (keyframe.value[property] === void 0) {\n          keyframe.value[property] = null;\n        } else {\n          empty = false;\n        }\n      }\n      if (empty === true) {\n        for (i = 0, l = keyframes.length; i < l; i++) {\n          keyframe = keyframes[i];\n          keyframe.value[property] = defaultValue;\n        }\n      } else {\n        createMissingKeyframes(keyframes, property);\n      }\n    }\n    function createMissingKeyframes(keyframes, property) {\n      let prev, next;\n      for (let i = 0, l = keyframes.length; i < l; i++) {\n        const keyframe = keyframes[i];\n        if (keyframe.value[property] === null) {\n          prev = getPrev(keyframes, i, property);\n          next = getNext(keyframes, i, property);\n          if (prev === null) {\n            keyframe.value[property] = next.value[property];\n            continue;\n          }\n          if (next === null) {\n            keyframe.value[property] = prev.value[property];\n            continue;\n          }\n          interpolate(keyframe, prev, next, property);\n        }\n      }\n    }\n    function getPrev(keyframes, i, property) {\n      while (i >= 0) {\n        const keyframe = keyframes[i];\n        if (keyframe.value[property] !== null)\n          return keyframe;\n        i--;\n      }\n      return null;\n    }\n    function getNext(keyframes, i, property) {\n      while (i < keyframes.length) {\n        const keyframe = keyframes[i];\n        if (keyframe.value[property] !== null)\n          return keyframe;\n        i++;\n      }\n      return null;\n    }\n    function interpolate(key, prev, next, property) {\n      if (next.time - prev.time === 0) {\n        key.value[property] = prev.value[property];\n        return;\n      }\n      key.value[property] = (key.time - prev.time) * (next.value[property] - prev.value[property]) / (next.time - prev.time) + prev.value[property];\n    }\n    function parseAnimationClip(xml2) {\n      const data = {\n        name: xml2.getAttribute(\"id\") || \"default\",\n        start: parseFloat(xml2.getAttribute(\"start\") || 0),\n        end: parseFloat(xml2.getAttribute(\"end\") || 0),\n        animations: []\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"instance_animation\":\n            data.animations.push(parseId(child.getAttribute(\"url\")));\n            break;\n        }\n      }\n      library.clips[xml2.getAttribute(\"id\")] = data;\n    }\n    function buildAnimationClip(data) {\n      const tracks = [];\n      const name = data.name;\n      const duration = data.end - data.start || -1;\n      const animations2 = data.animations;\n      for (let i = 0, il = animations2.length; i < il; i++) {\n        const animationTracks = getAnimation(animations2[i]);\n        for (let j = 0, jl = animationTracks.length; j < jl; j++) {\n          tracks.push(animationTracks[j]);\n        }\n      }\n      return new AnimationClip(name, duration, tracks);\n    }\n    function getAnimationClip(id2) {\n      return getBuild(library.clips[id2], buildAnimationClip);\n    }\n    function parseController(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"skin\":\n            data.id = parseId(child.getAttribute(\"source\"));\n            data.skin = parseSkin(child);\n            break;\n          case \"morph\":\n            data.id = parseId(child.getAttribute(\"source\"));\n            console.warn(\"THREE.ColladaLoader: Morph target animation not supported yet.\");\n            break;\n        }\n      }\n      library.controllers[xml2.getAttribute(\"id\")] = data;\n    }\n    function parseSkin(xml2) {\n      const data = {\n        sources: {}\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"bind_shape_matrix\":\n            data.bindShapeMatrix = parseFloats(child.textContent);\n            break;\n          case \"source\":\n            const id2 = child.getAttribute(\"id\");\n            data.sources[id2] = parseSource(child);\n            break;\n          case \"joints\":\n            data.joints = parseJoints(child);\n            break;\n          case \"vertex_weights\":\n            data.vertexWeights = parseVertexWeights(child);\n            break;\n        }\n      }\n      return data;\n    }\n    function parseJoints(xml2) {\n      const data = {\n        inputs: {}\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"input\":\n            const semantic = child.getAttribute(\"semantic\");\n            const id2 = parseId(child.getAttribute(\"source\"));\n            data.inputs[semantic] = id2;\n            break;\n        }\n      }\n      return data;\n    }\n    function parseVertexWeights(xml2) {\n      const data = {\n        inputs: {}\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"input\":\n            const semantic = child.getAttribute(\"semantic\");\n            const id2 = parseId(child.getAttribute(\"source\"));\n            const offset = parseInt(child.getAttribute(\"offset\"));\n            data.inputs[semantic] = { id: id2, offset };\n            break;\n          case \"vcount\":\n            data.vcount = parseInts(child.textContent);\n            break;\n          case \"v\":\n            data.v = parseInts(child.textContent);\n            break;\n        }\n      }\n      return data;\n    }\n    function buildController(data) {\n      const build = {\n        id: data.id\n      };\n      const geometry = library.geometries[build.id];\n      if (data.skin !== void 0) {\n        build.skin = buildSkin(data.skin);\n        geometry.sources.skinIndices = build.skin.indices;\n        geometry.sources.skinWeights = build.skin.weights;\n      }\n      return build;\n    }\n    function buildSkin(data) {\n      const BONE_LIMIT = 4;\n      const build = {\n        joints: [],\n        indices: {\n          array: [],\n          stride: BONE_LIMIT\n        },\n        weights: {\n          array: [],\n          stride: BONE_LIMIT\n        }\n      };\n      const sources = data.sources;\n      const vertexWeights = data.vertexWeights;\n      const vcount = vertexWeights.vcount;\n      const v = vertexWeights.v;\n      const jointOffset = vertexWeights.inputs.JOINT.offset;\n      const weightOffset = vertexWeights.inputs.WEIGHT.offset;\n      const jointSource = data.sources[data.joints.inputs.JOINT];\n      const inverseSource = data.sources[data.joints.inputs.INV_BIND_MATRIX];\n      const weights = sources[vertexWeights.inputs.WEIGHT.id].array;\n      let stride = 0;\n      let i, j, l;\n      for (i = 0, l = vcount.length; i < l; i++) {\n        const jointCount = vcount[i];\n        const vertexSkinData = [];\n        for (j = 0; j < jointCount; j++) {\n          const skinIndex = v[stride + jointOffset];\n          const weightId = v[stride + weightOffset];\n          const skinWeight = weights[weightId];\n          vertexSkinData.push({ index: skinIndex, weight: skinWeight });\n          stride += 2;\n        }\n        vertexSkinData.sort(descending);\n        for (j = 0; j < BONE_LIMIT; j++) {\n          const d = vertexSkinData[j];\n          if (d !== void 0) {\n            build.indices.array.push(d.index);\n            build.weights.array.push(d.weight);\n          } else {\n            build.indices.array.push(0);\n            build.weights.array.push(0);\n          }\n        }\n      }\n      if (data.bindShapeMatrix) {\n        build.bindMatrix = new Matrix4().fromArray(data.bindShapeMatrix).transpose();\n      } else {\n        build.bindMatrix = new Matrix4().identity();\n      }\n      for (i = 0, l = jointSource.array.length; i < l; i++) {\n        const name = jointSource.array[i];\n        const boneInverse = new Matrix4().fromArray(inverseSource.array, i * inverseSource.stride).transpose();\n        build.joints.push({ name, boneInverse });\n      }\n      return build;\n      function descending(a, b) {\n        return b.weight - a.weight;\n      }\n    }\n    function getController(id2) {\n      return getBuild(library.controllers[id2], buildController);\n    }\n    function parseImage(xml2) {\n      const data = {\n        init_from: getElementsByTagName(xml2, \"init_from\")[0].textContent\n      };\n      library.images[xml2.getAttribute(\"id\")] = data;\n    }\n    function buildImage(data) {\n      if (data.build !== void 0)\n        return data.build;\n      return data.init_from;\n    }\n    function getImage(id2) {\n      const data = library.images[id2];\n      if (data !== void 0) {\n        return getBuild(data, buildImage);\n      }\n      console.warn(\"THREE.ColladaLoader: Couldn't find image with ID:\", id2);\n      return null;\n    }\n    function parseEffect(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"profile_COMMON\":\n            data.profile = parseEffectProfileCOMMON(child);\n            break;\n        }\n      }\n      library.effects[xml2.getAttribute(\"id\")] = data;\n    }\n    function parseEffectProfileCOMMON(xml2) {\n      const data = {\n        surfaces: {},\n        samplers: {}\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"newparam\":\n            parseEffectNewparam(child, data);\n            break;\n          case \"technique\":\n            data.technique = parseEffectTechnique(child);\n            break;\n          case \"extra\":\n            data.extra = parseEffectExtra(child);\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectNewparam(xml2, data) {\n      const sid = xml2.getAttribute(\"sid\");\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"surface\":\n            data.surfaces[sid] = parseEffectSurface(child);\n            break;\n          case \"sampler2D\":\n            data.samplers[sid] = parseEffectSampler(child);\n            break;\n        }\n      }\n    }\n    function parseEffectSurface(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"init_from\":\n            data.init_from = child.textContent;\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectSampler(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"source\":\n            data.source = child.textContent;\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectTechnique(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"constant\":\n          case \"lambert\":\n          case \"blinn\":\n          case \"phong\":\n            data.type = child.nodeName;\n            data.parameters = parseEffectParameters(child);\n            break;\n          case \"extra\":\n            data.extra = parseEffectExtra(child);\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectParameters(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"emission\":\n          case \"diffuse\":\n          case \"specular\":\n          case \"bump\":\n          case \"ambient\":\n          case \"shininess\":\n          case \"transparency\":\n            data[child.nodeName] = parseEffectParameter(child);\n            break;\n          case \"transparent\":\n            data[child.nodeName] = {\n              opaque: child.hasAttribute(\"opaque\") ? child.getAttribute(\"opaque\") : \"A_ONE\",\n              data: parseEffectParameter(child)\n            };\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectParameter(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"color\":\n            data[child.nodeName] = parseFloats(child.textContent);\n            break;\n          case \"float\":\n            data[child.nodeName] = parseFloat(child.textContent);\n            break;\n          case \"texture\":\n            data[child.nodeName] = { id: child.getAttribute(\"texture\"), extra: parseEffectParameterTexture(child) };\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectParameterTexture(xml2) {\n      const data = {\n        technique: {}\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"extra\":\n            parseEffectParameterTextureExtra(child, data);\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectParameterTextureExtra(xml2, data) {\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"technique\":\n            parseEffectParameterTextureExtraTechnique(child, data);\n            break;\n        }\n      }\n    }\n    function parseEffectParameterTextureExtraTechnique(xml2, data) {\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"repeatU\":\n          case \"repeatV\":\n          case \"offsetU\":\n          case \"offsetV\":\n            data.technique[child.nodeName] = parseFloat(child.textContent);\n            break;\n          case \"wrapU\":\n          case \"wrapV\":\n            if (child.textContent.toUpperCase() === \"TRUE\") {\n              data.technique[child.nodeName] = 1;\n            } else if (child.textContent.toUpperCase() === \"FALSE\") {\n              data.technique[child.nodeName] = 0;\n            } else {\n              data.technique[child.nodeName] = parseInt(child.textContent);\n            }\n            break;\n          case \"bump\":\n            data[child.nodeName] = parseEffectExtraTechniqueBump(child);\n            break;\n        }\n      }\n    }\n    function parseEffectExtra(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"technique\":\n            data.technique = parseEffectExtraTechnique(child);\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectExtraTechnique(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"double_sided\":\n            data[child.nodeName] = parseInt(child.textContent);\n            break;\n          case \"bump\":\n            data[child.nodeName] = parseEffectExtraTechniqueBump(child);\n            break;\n        }\n      }\n      return data;\n    }\n    function parseEffectExtraTechniqueBump(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"texture\":\n            data[child.nodeName] = { id: child.getAttribute(\"texture\"), texcoord: child.getAttribute(\"texcoord\"), extra: parseEffectParameterTexture(child) };\n            break;\n        }\n      }\n      return data;\n    }\n    function buildEffect(data) {\n      return data;\n    }\n    function getEffect(id2) {\n      return getBuild(library.effects[id2], buildEffect);\n    }\n    function parseMaterial(xml2) {\n      const data = {\n        name: xml2.getAttribute(\"name\")\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"instance_effect\":\n            data.url = parseId(child.getAttribute(\"url\"));\n            break;\n        }\n      }\n      library.materials[xml2.getAttribute(\"id\")] = data;\n    }\n    function getTextureLoader(image) {\n      let loader;\n      let extension = image.slice((image.lastIndexOf(\".\") - 1 >>> 0) + 2);\n      extension = extension.toLowerCase();\n      switch (extension) {\n        case \"tga\":\n          loader = tgaLoader;\n          break;\n        default:\n          loader = textureLoader;\n      }\n      return loader;\n    }\n    function buildMaterial(data) {\n      const effect = getEffect(data.url);\n      const technique = effect.profile.technique;\n      let material;\n      switch (technique.type) {\n        case \"phong\":\n        case \"blinn\":\n          material = new MeshPhongMaterial();\n          break;\n        case \"lambert\":\n          material = new MeshLambertMaterial();\n          break;\n        default:\n          material = new MeshBasicMaterial();\n          break;\n      }\n      material.name = data.name || \"\";\n      function getTexture(textureObject, encoding = null) {\n        const sampler = effect.profile.samplers[textureObject.id];\n        let image = null;\n        if (sampler !== void 0) {\n          const surface = effect.profile.surfaces[sampler.source];\n          image = getImage(surface.init_from);\n        } else {\n          console.warn(\"THREE.ColladaLoader: Undefined sampler. Access image directly (see #12530).\");\n          image = getImage(textureObject.id);\n        }\n        if (image !== null) {\n          const loader = getTextureLoader(image);\n          if (loader !== void 0) {\n            const texture = loader.load(image);\n            const extra = textureObject.extra;\n            if (extra !== void 0 && extra.technique !== void 0 && isEmpty(extra.technique) === false) {\n              const technique2 = extra.technique;\n              texture.wrapS = technique2.wrapU ? RepeatWrapping : ClampToEdgeWrapping;\n              texture.wrapT = technique2.wrapV ? RepeatWrapping : ClampToEdgeWrapping;\n              texture.offset.set(technique2.offsetU || 0, technique2.offsetV || 0);\n              texture.repeat.set(technique2.repeatU || 1, technique2.repeatV || 1);\n            } else {\n              texture.wrapS = RepeatWrapping;\n              texture.wrapT = RepeatWrapping;\n            }\n            if (encoding !== null) {\n              texture.encoding = encoding;\n            }\n            return texture;\n          } else {\n            console.warn(\"THREE.ColladaLoader: Loader for texture %s not found.\", image);\n            return null;\n          }\n        } else {\n          console.warn(\"THREE.ColladaLoader: Couldn't create texture with ID:\", textureObject.id);\n          return null;\n        }\n      }\n      const parameters = technique.parameters;\n      for (const key in parameters) {\n        const parameter = parameters[key];\n        switch (key) {\n          case \"diffuse\":\n            if (parameter.color)\n              material.color.fromArray(parameter.color);\n            if (parameter.texture)\n              material.map = getTexture(parameter.texture, sRGBEncoding);\n            break;\n          case \"specular\":\n            if (parameter.color && material.specular)\n              material.specular.fromArray(parameter.color);\n            if (parameter.texture)\n              material.specularMap = getTexture(parameter.texture);\n            break;\n          case \"bump\":\n            if (parameter.texture)\n              material.normalMap = getTexture(parameter.texture);\n            break;\n          case \"ambient\":\n            if (parameter.texture)\n              material.lightMap = getTexture(parameter.texture, sRGBEncoding);\n            break;\n          case \"shininess\":\n            if (parameter.float && material.shininess)\n              material.shininess = parameter.float;\n            break;\n          case \"emission\":\n            if (parameter.color && material.emissive)\n              material.emissive.fromArray(parameter.color);\n            if (parameter.texture)\n              material.emissiveMap = getTexture(parameter.texture, sRGBEncoding);\n            break;\n        }\n      }\n      material.color.convertSRGBToLinear();\n      if (material.specular)\n        material.specular.convertSRGBToLinear();\n      if (material.emissive)\n        material.emissive.convertSRGBToLinear();\n      let transparent = parameters[\"transparent\"];\n      let transparency = parameters[\"transparency\"];\n      if (transparency === void 0 && transparent) {\n        transparency = {\n          float: 1\n        };\n      }\n      if (transparent === void 0 && transparency) {\n        transparent = {\n          opaque: \"A_ONE\",\n          data: {\n            color: [1, 1, 1, 1]\n          }\n        };\n      }\n      if (transparent && transparency) {\n        if (transparent.data.texture) {\n          material.transparent = true;\n        } else {\n          const color = transparent.data.color;\n          switch (transparent.opaque) {\n            case \"A_ONE\":\n              material.opacity = color[3] * transparency.float;\n              break;\n            case \"RGB_ZERO\":\n              material.opacity = 1 - color[0] * transparency.float;\n              break;\n            case \"A_ZERO\":\n              material.opacity = 1 - color[3] * transparency.float;\n              break;\n            case \"RGB_ONE\":\n              material.opacity = color[0] * transparency.float;\n              break;\n            default:\n              console.warn('THREE.ColladaLoader: Invalid opaque type \"%s\" of transparent tag.', transparent.opaque);\n          }\n          if (material.opacity < 1)\n            material.transparent = true;\n        }\n      }\n      if (technique.extra !== void 0 && technique.extra.technique !== void 0) {\n        const techniques = technique.extra.technique;\n        for (const k in techniques) {\n          const v = techniques[k];\n          switch (k) {\n            case \"double_sided\":\n              material.side = v === 1 ? DoubleSide : FrontSide;\n              break;\n            case \"bump\":\n              material.normalMap = getTexture(v.texture);\n              material.normalScale = new Vector2(1, 1);\n              break;\n          }\n        }\n      }\n      return material;\n    }\n    function getMaterial(id2) {\n      return getBuild(library.materials[id2], buildMaterial);\n    }\n    function parseCamera(xml2) {\n      const data = {\n        name: xml2.getAttribute(\"name\")\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"optics\":\n            data.optics = parseCameraOptics(child);\n            break;\n        }\n      }\n      library.cameras[xml2.getAttribute(\"id\")] = data;\n    }\n    function parseCameraOptics(xml2) {\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        switch (child.nodeName) {\n          case \"technique_common\":\n            return parseCameraTechnique(child);\n        }\n      }\n      return {};\n    }\n    function parseCameraTechnique(xml2) {\n      const data = {};\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        switch (child.nodeName) {\n          case \"perspective\":\n          case \"orthographic\":\n            data.technique = child.nodeName;\n            data.parameters = parseCameraParameters(child);\n            break;\n        }\n      }\n      return data;\n    }\n    function parseCameraParameters(xml2) {\n      const data = {};\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        switch (child.nodeName) {\n          case \"xfov\":\n          case \"yfov\":\n          case \"xmag\":\n          case \"ymag\":\n          case \"znear\":\n          case \"zfar\":\n          case \"aspect_ratio\":\n            data[child.nodeName] = parseFloat(child.textContent);\n            break;\n        }\n      }\n      return data;\n    }\n    function buildCamera(data) {\n      let camera;\n      switch (data.optics.technique) {\n        case \"perspective\":\n          camera = new PerspectiveCamera(data.optics.parameters.yfov, data.optics.parameters.aspect_ratio, data.optics.parameters.znear, data.optics.parameters.zfar);\n          break;\n        case \"orthographic\":\n          let ymag = data.optics.parameters.ymag;\n          let xmag = data.optics.parameters.xmag;\n          const aspectRatio = data.optics.parameters.aspect_ratio;\n          xmag = xmag === void 0 ? ymag * aspectRatio : xmag;\n          ymag = ymag === void 0 ? xmag / aspectRatio : ymag;\n          xmag *= 0.5;\n          ymag *= 0.5;\n          camera = new OrthographicCamera(-xmag, xmag, ymag, -ymag, data.optics.parameters.znear, data.optics.parameters.zfar);\n          break;\n        default:\n          camera = new PerspectiveCamera();\n          break;\n      }\n      camera.name = data.name || \"\";\n      return camera;\n    }\n    function getCamera(id2) {\n      const data = library.cameras[id2];\n      if (data !== void 0) {\n        return getBuild(data, buildCamera);\n      }\n      console.warn(\"THREE.ColladaLoader: Couldn't find camera with ID:\", id2);\n      return null;\n    }\n    function parseLight(xml2) {\n      let data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"technique_common\":\n            data = parseLightTechnique(child);\n            break;\n        }\n      }\n      library.lights[xml2.getAttribute(\"id\")] = data;\n    }\n    function parseLightTechnique(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"directional\":\n          case \"point\":\n          case \"spot\":\n          case \"ambient\":\n            data.technique = child.nodeName;\n            data.parameters = parseLightParameters(child);\n        }\n      }\n      return data;\n    }\n    function parseLightParameters(xml2) {\n      const data = {};\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"color\":\n            const array = parseFloats(child.textContent);\n            data.color = new Color().fromArray(array).convertSRGBToLinear();\n            break;\n          case \"falloff_angle\":\n            data.falloffAngle = parseFloat(child.textContent);\n            break;\n          case \"quadratic_attenuation\":\n            const f = parseFloat(child.textContent);\n            data.distance = f ? Math.sqrt(1 / f) : 0;\n            break;\n        }\n      }\n      return data;\n    }\n    function buildLight(data) {\n      let light;\n      switch (data.technique) {\n        case \"directional\":\n          light = new DirectionalLight();\n          break;\n        case \"point\":\n          light = new PointLight();\n          break;\n        case \"spot\":\n          light = new SpotLight();\n          break;\n        case \"ambient\":\n          light = new AmbientLight();\n          break;\n      }\n      if (data.parameters.color)\n        light.color.copy(data.parameters.color);\n      if (data.parameters.distance)\n        light.distance = data.parameters.distance;\n      return light;\n    }\n    function getLight(id2) {\n      const data = library.lights[id2];\n      if (data !== void 0) {\n        return getBuild(data, buildLight);\n      }\n      console.warn(\"THREE.ColladaLoader: Couldn't find light with ID:\", id2);\n      return null;\n    }\n    function parseGeometry(xml2) {\n      const data = {\n        name: xml2.getAttribute(\"name\"),\n        sources: {},\n        vertices: {},\n        primitives: []\n      };\n      const mesh = getElementsByTagName(xml2, \"mesh\")[0];\n      if (mesh === void 0)\n        return;\n      for (let i = 0; i < mesh.childNodes.length; i++) {\n        const child = mesh.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        const id2 = child.getAttribute(\"id\");\n        switch (child.nodeName) {\n          case \"source\":\n            data.sources[id2] = parseSource(child);\n            break;\n          case \"vertices\":\n            data.vertices = parseGeometryVertices(child);\n            break;\n          case \"polygons\":\n            console.warn(\"THREE.ColladaLoader: Unsupported primitive type: \", child.nodeName);\n            break;\n          case \"lines\":\n          case \"linestrips\":\n          case \"polylist\":\n          case \"triangles\":\n            data.primitives.push(parseGeometryPrimitive(child));\n            break;\n          default:\n            console.log(child);\n        }\n      }\n      library.geometries[xml2.getAttribute(\"id\")] = data;\n    }\n    function parseSource(xml2) {\n      const data = {\n        array: [],\n        stride: 3\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"float_array\":\n            data.array = parseFloats(child.textContent);\n            break;\n          case \"Name_array\":\n            data.array = parseStrings(child.textContent);\n            break;\n          case \"technique_common\":\n            const accessor = getElementsByTagName(child, \"accessor\")[0];\n            if (accessor !== void 0) {\n              data.stride = parseInt(accessor.getAttribute(\"stride\"));\n            }\n            break;\n        }\n      }\n      return data;\n    }\n    function parseGeometryVertices(xml2) {\n      const data = {};\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        data[child.getAttribute(\"semantic\")] = parseId(child.getAttribute(\"source\"));\n      }\n      return data;\n    }\n    function parseGeometryPrimitive(xml2) {\n      const primitive = {\n        type: xml2.nodeName,\n        material: xml2.getAttribute(\"material\"),\n        count: parseInt(xml2.getAttribute(\"count\")),\n        inputs: {},\n        stride: 0,\n        hasUV: false\n      };\n      for (let i = 0, l = xml2.childNodes.length; i < l; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"input\":\n            const id2 = parseId(child.getAttribute(\"source\"));\n            const semantic = child.getAttribute(\"semantic\");\n            const offset = parseInt(child.getAttribute(\"offset\"));\n            const set = parseInt(child.getAttribute(\"set\"));\n            const inputname = set > 0 ? semantic + set : semantic;\n            primitive.inputs[inputname] = { id: id2, offset };\n            primitive.stride = Math.max(primitive.stride, offset + 1);\n            if (semantic === \"TEXCOORD\")\n              primitive.hasUV = true;\n            break;\n          case \"vcount\":\n            primitive.vcount = parseInts(child.textContent);\n            break;\n          case \"p\":\n            primitive.p = parseInts(child.textContent);\n            break;\n        }\n      }\n      return primitive;\n    }\n    function groupPrimitives(primitives) {\n      const build = {};\n      for (let i = 0; i < primitives.length; i++) {\n        const primitive = primitives[i];\n        if (build[primitive.type] === void 0)\n          build[primitive.type] = [];\n        build[primitive.type].push(primitive);\n      }\n      return build;\n    }\n    function checkUVCoordinates(primitives) {\n      let count2 = 0;\n      for (let i = 0, l = primitives.length; i < l; i++) {\n        const primitive = primitives[i];\n        if (primitive.hasUV === true) {\n          count2++;\n        }\n      }\n      if (count2 > 0 && count2 < primitives.length) {\n        primitives.uvsNeedsFix = true;\n      }\n    }\n    function buildGeometry(data) {\n      const build = {};\n      const sources = data.sources;\n      const vertices = data.vertices;\n      const primitives = data.primitives;\n      if (primitives.length === 0)\n        return {};\n      const groupedPrimitives = groupPrimitives(primitives);\n      for (const type in groupedPrimitives) {\n        const primitiveType = groupedPrimitives[type];\n        checkUVCoordinates(primitiveType);\n        build[type] = buildGeometryType(primitiveType, sources, vertices);\n      }\n      return build;\n    }\n    function buildGeometryType(primitives, sources, vertices) {\n      const build = {};\n      const position2 = { array: [], stride: 0 };\n      const normal = { array: [], stride: 0 };\n      const uv = { array: [], stride: 0 };\n      const uv2 = { array: [], stride: 0 };\n      const color = { array: [], stride: 0 };\n      const skinIndex = { array: [], stride: 4 };\n      const skinWeight = { array: [], stride: 4 };\n      const geometry = new BufferGeometry();\n      const materialKeys = [];\n      let start = 0;\n      for (let p = 0; p < primitives.length; p++) {\n        const primitive = primitives[p];\n        const inputs = primitive.inputs;\n        let count2 = 0;\n        switch (primitive.type) {\n          case \"lines\":\n          case \"linestrips\":\n            count2 = primitive.count * 2;\n            break;\n          case \"triangles\":\n            count2 = primitive.count * 3;\n            break;\n          case \"polylist\":\n            for (let g = 0; g < primitive.count; g++) {\n              const vc = primitive.vcount[g];\n              switch (vc) {\n                case 3:\n                  count2 += 3;\n                  break;\n                case 4:\n                  count2 += 6;\n                  break;\n                default:\n                  count2 += (vc - 2) * 3;\n                  break;\n              }\n            }\n            break;\n          default:\n            console.warn(\"THREE.ColladaLoader: Unknow primitive type:\", primitive.type);\n        }\n        geometry.addGroup(start, count2, p);\n        start += count2;\n        if (primitive.material) {\n          materialKeys.push(primitive.material);\n        }\n        for (const name in inputs) {\n          const input = inputs[name];\n          switch (name) {\n            case \"VERTEX\":\n              for (const key in vertices) {\n                const id2 = vertices[key];\n                switch (key) {\n                  case \"POSITION\":\n                    const prevLength = position2.array.length;\n                    buildGeometryData(primitive, sources[id2], input.offset, position2.array);\n                    position2.stride = sources[id2].stride;\n                    if (sources.skinWeights && sources.skinIndices) {\n                      buildGeometryData(primitive, sources.skinIndices, input.offset, skinIndex.array);\n                      buildGeometryData(primitive, sources.skinWeights, input.offset, skinWeight.array);\n                    }\n                    if (primitive.hasUV === false && primitives.uvsNeedsFix === true) {\n                      const count3 = (position2.array.length - prevLength) / position2.stride;\n                      for (let i = 0; i < count3; i++) {\n                        uv.array.push(0, 0);\n                      }\n                    }\n                    break;\n                  case \"NORMAL\":\n                    buildGeometryData(primitive, sources[id2], input.offset, normal.array);\n                    normal.stride = sources[id2].stride;\n                    break;\n                  case \"COLOR\":\n                    buildGeometryData(primitive, sources[id2], input.offset, color.array);\n                    color.stride = sources[id2].stride;\n                    break;\n                  case \"TEXCOORD\":\n                    buildGeometryData(primitive, sources[id2], input.offset, uv.array);\n                    uv.stride = sources[id2].stride;\n                    break;\n                  case \"TEXCOORD1\":\n                    buildGeometryData(primitive, sources[id2], input.offset, uv2.array);\n                    uv.stride = sources[id2].stride;\n                    break;\n                  default:\n                    console.warn('THREE.ColladaLoader: Semantic \"%s\" not handled in geometry build process.', key);\n                }\n              }\n              break;\n            case \"NORMAL\":\n              buildGeometryData(primitive, sources[input.id], input.offset, normal.array);\n              normal.stride = sources[input.id].stride;\n              break;\n            case \"COLOR\":\n              buildGeometryData(primitive, sources[input.id], input.offset, color.array, true);\n              color.stride = sources[input.id].stride;\n              break;\n            case \"TEXCOORD\":\n              buildGeometryData(primitive, sources[input.id], input.offset, uv.array);\n              uv.stride = sources[input.id].stride;\n              break;\n            case \"TEXCOORD1\":\n              buildGeometryData(primitive, sources[input.id], input.offset, uv2.array);\n              uv2.stride = sources[input.id].stride;\n              break;\n          }\n        }\n      }\n      if (position2.array.length > 0)\n        geometry.setAttribute(\"position\", new Float32BufferAttribute(position2.array, position2.stride));\n      if (normal.array.length > 0)\n        geometry.setAttribute(\"normal\", new Float32BufferAttribute(normal.array, normal.stride));\n      if (color.array.length > 0)\n        geometry.setAttribute(\"color\", new Float32BufferAttribute(color.array, color.stride));\n      if (uv.array.length > 0)\n        geometry.setAttribute(\"uv\", new Float32BufferAttribute(uv.array, uv.stride));\n      if (uv2.array.length > 0)\n        geometry.setAttribute(\"uv2\", new Float32BufferAttribute(uv2.array, uv2.stride));\n      if (skinIndex.array.length > 0)\n        geometry.setAttribute(\"skinIndex\", new Float32BufferAttribute(skinIndex.array, skinIndex.stride));\n      if (skinWeight.array.length > 0)\n        geometry.setAttribute(\"skinWeight\", new Float32BufferAttribute(skinWeight.array, skinWeight.stride));\n      build.data = geometry;\n      build.type = primitives[0].type;\n      build.materialKeys = materialKeys;\n      return build;\n    }\n    function buildGeometryData(primitive, source, offset, array, isColor = false) {\n      const indices = primitive.p;\n      const stride = primitive.stride;\n      const vcount = primitive.vcount;\n      function pushVector(i) {\n        let index2 = indices[i + offset] * sourceStride;\n        const length = index2 + sourceStride;\n        for (; index2 < length; index2++) {\n          array.push(sourceArray[index2]);\n        }\n        if (isColor) {\n          const startIndex = array.length - sourceStride - 1;\n          tempColor.setRGB(array[startIndex + 0], array[startIndex + 1], array[startIndex + 2]).convertSRGBToLinear();\n          array[startIndex + 0] = tempColor.r;\n          array[startIndex + 1] = tempColor.g;\n          array[startIndex + 2] = tempColor.b;\n        }\n      }\n      const sourceArray = source.array;\n      const sourceStride = source.stride;\n      if (primitive.vcount !== void 0) {\n        let index2 = 0;\n        for (let i = 0, l = vcount.length; i < l; i++) {\n          const count2 = vcount[i];\n          if (count2 === 4) {\n            const a = index2 + stride * 0;\n            const b = index2 + stride * 1;\n            const c = index2 + stride * 2;\n            const d = index2 + stride * 3;\n            pushVector(a);\n            pushVector(b);\n            pushVector(d);\n            pushVector(b);\n            pushVector(c);\n            pushVector(d);\n          } else if (count2 === 3) {\n            const a = index2 + stride * 0;\n            const b = index2 + stride * 1;\n            const c = index2 + stride * 2;\n            pushVector(a);\n            pushVector(b);\n            pushVector(c);\n          } else if (count2 > 4) {\n            for (let k = 1, kl = count2 - 2; k <= kl; k++) {\n              const a = index2 + stride * 0;\n              const b = index2 + stride * k;\n              const c = index2 + stride * (k + 1);\n              pushVector(a);\n              pushVector(b);\n              pushVector(c);\n            }\n          }\n          index2 += stride * count2;\n        }\n      } else {\n        for (let i = 0, l = indices.length; i < l; i += stride) {\n          pushVector(i);\n        }\n      }\n    }\n    function getGeometry(id2) {\n      return getBuild(library.geometries[id2], buildGeometry);\n    }\n    function parseKinematicsModel(xml2) {\n      const data = {\n        name: xml2.getAttribute(\"name\") || \"\",\n        joints: {},\n        links: []\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"technique_common\":\n            parseKinematicsTechniqueCommon(child, data);\n            break;\n        }\n      }\n      library.kinematicsModels[xml2.getAttribute(\"id\")] = data;\n    }\n    function buildKinematicsModel(data) {\n      if (data.build !== void 0)\n        return data.build;\n      return data;\n    }\n    function getKinematicsModel(id2) {\n      return getBuild(library.kinematicsModels[id2], buildKinematicsModel);\n    }\n    function parseKinematicsTechniqueCommon(xml2, data) {\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"joint\":\n            data.joints[child.getAttribute(\"sid\")] = parseKinematicsJoint(child);\n            break;\n          case \"link\":\n            data.links.push(parseKinematicsLink(child));\n            break;\n        }\n      }\n    }\n    function parseKinematicsJoint(xml2) {\n      let data;\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"prismatic\":\n          case \"revolute\":\n            data = parseKinematicsJointParameter(child);\n            break;\n        }\n      }\n      return data;\n    }\n    function parseKinematicsJointParameter(xml2) {\n      const data = {\n        sid: xml2.getAttribute(\"sid\"),\n        name: xml2.getAttribute(\"name\") || \"\",\n        axis: new Vector3(),\n        limits: {\n          min: 0,\n          max: 0\n        },\n        type: xml2.nodeName,\n        static: false,\n        zeroPosition: 0,\n        middlePosition: 0\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"axis\":\n            const array = parseFloats(child.textContent);\n            data.axis.fromArray(array);\n            break;\n          case \"limits\":\n            const max2 = child.getElementsByTagName(\"max\")[0];\n            const min = child.getElementsByTagName(\"min\")[0];\n            data.limits.max = parseFloat(max2.textContent);\n            data.limits.min = parseFloat(min.textContent);\n            break;\n        }\n      }\n      if (data.limits.min >= data.limits.max) {\n        data.static = true;\n      }\n      data.middlePosition = (data.limits.min + data.limits.max) / 2;\n      return data;\n    }\n    function parseKinematicsLink(xml2) {\n      const data = {\n        sid: xml2.getAttribute(\"sid\"),\n        name: xml2.getAttribute(\"name\") || \"\",\n        attachments: [],\n        transforms: []\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"attachment_full\":\n            data.attachments.push(parseKinematicsAttachment(child));\n            break;\n          case \"matrix\":\n          case \"translate\":\n          case \"rotate\":\n            data.transforms.push(parseKinematicsTransform(child));\n            break;\n        }\n      }\n      return data;\n    }\n    function parseKinematicsAttachment(xml2) {\n      const data = {\n        joint: xml2.getAttribute(\"joint\").split(\"/\").pop(),\n        transforms: [],\n        links: []\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"link\":\n            data.links.push(parseKinematicsLink(child));\n            break;\n          case \"matrix\":\n          case \"translate\":\n          case \"rotate\":\n            data.transforms.push(parseKinematicsTransform(child));\n            break;\n        }\n      }\n      return data;\n    }\n    function parseKinematicsTransform(xml2) {\n      const data = {\n        type: xml2.nodeName\n      };\n      const array = parseFloats(xml2.textContent);\n      switch (data.type) {\n        case \"matrix\":\n          data.obj = new Matrix4();\n          data.obj.fromArray(array).transpose();\n          break;\n        case \"translate\":\n          data.obj = new Vector3();\n          data.obj.fromArray(array);\n          break;\n        case \"rotate\":\n          data.obj = new Vector3();\n          data.obj.fromArray(array);\n          data.angle = MathUtils.degToRad(array[3]);\n          break;\n      }\n      return data;\n    }\n    function parsePhysicsModel(xml2) {\n      const data = {\n        name: xml2.getAttribute(\"name\") || \"\",\n        rigidBodies: {}\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"rigid_body\":\n            data.rigidBodies[child.getAttribute(\"name\")] = {};\n            parsePhysicsRigidBody(child, data.rigidBodies[child.getAttribute(\"name\")]);\n            break;\n        }\n      }\n      library.physicsModels[xml2.getAttribute(\"id\")] = data;\n    }\n    function parsePhysicsRigidBody(xml2, data) {\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"technique_common\":\n            parsePhysicsTechniqueCommon(child, data);\n            break;\n        }\n      }\n    }\n    function parsePhysicsTechniqueCommon(xml2, data) {\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"inertia\":\n            data.inertia = parseFloats(child.textContent);\n            break;\n          case \"mass\":\n            data.mass = parseFloats(child.textContent)[0];\n            break;\n        }\n      }\n    }\n    function parseKinematicsScene(xml2) {\n      const data = {\n        bindJointAxis: []\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"bind_joint_axis\":\n            data.bindJointAxis.push(parseKinematicsBindJointAxis(child));\n            break;\n        }\n      }\n      library.kinematicsScenes[parseId(xml2.getAttribute(\"url\"))] = data;\n    }\n    function parseKinematicsBindJointAxis(xml2) {\n      const data = {\n        target: xml2.getAttribute(\"target\").split(\"/\").pop()\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        switch (child.nodeName) {\n          case \"axis\":\n            const param = child.getElementsByTagName(\"param\")[0];\n            data.axis = param.textContent;\n            const tmpJointIndex = data.axis.split(\"inst_\").pop().split(\"axis\")[0];\n            data.jointIndex = tmpJointIndex.substring(0, tmpJointIndex.length - 1);\n            break;\n        }\n      }\n      return data;\n    }\n    function buildKinematicsScene(data) {\n      if (data.build !== void 0)\n        return data.build;\n      return data;\n    }\n    function getKinematicsScene(id2) {\n      return getBuild(library.kinematicsScenes[id2], buildKinematicsScene);\n    }\n    function setupKinematics() {\n      const kinematicsModelId = Object.keys(library.kinematicsModels)[0];\n      const kinematicsSceneId = Object.keys(library.kinematicsScenes)[0];\n      const visualSceneId = Object.keys(library.visualScenes)[0];\n      if (kinematicsModelId === void 0 || kinematicsSceneId === void 0)\n        return;\n      const kinematicsModel = getKinematicsModel(kinematicsModelId);\n      const kinematicsScene = getKinematicsScene(kinematicsSceneId);\n      const visualScene = getVisualScene(visualSceneId);\n      const bindJointAxis = kinematicsScene.bindJointAxis;\n      const jointMap = {};\n      for (let i = 0, l = bindJointAxis.length; i < l; i++) {\n        const axis = bindJointAxis[i];\n        const targetElement = collada.querySelector('[sid=\"' + axis.target + '\"]');\n        if (targetElement) {\n          const parentVisualElement = targetElement.parentElement;\n          connect(axis.jointIndex, parentVisualElement);\n        }\n      }\n      function connect(jointIndex, visualElement) {\n        const visualElementName = visualElement.getAttribute(\"name\");\n        const joint = kinematicsModel.joints[jointIndex];\n        visualScene.traverse(function(object) {\n          if (object.name === visualElementName) {\n            jointMap[jointIndex] = {\n              object,\n              transforms: buildTransformList(visualElement),\n              joint,\n              position: joint.zeroPosition\n            };\n          }\n        });\n      }\n      const m0 = new Matrix4();\n      kinematics = {\n        joints: kinematicsModel && kinematicsModel.joints,\n        getJointValue: function(jointIndex) {\n          const jointData = jointMap[jointIndex];\n          if (jointData) {\n            return jointData.position;\n          } else {\n            console.warn(\"THREE.ColladaLoader: Joint \" + jointIndex + \" doesn't exist.\");\n          }\n        },\n        setJointValue: function(jointIndex, value) {\n          const jointData = jointMap[jointIndex];\n          if (jointData) {\n            const joint = jointData.joint;\n            if (value > joint.limits.max || value < joint.limits.min) {\n              console.warn(\"THREE.ColladaLoader: Joint \" + jointIndex + \" value \" + value + \" outside of limits (min: \" + joint.limits.min + \", max: \" + joint.limits.max + \").\");\n            } else if (joint.static) {\n              console.warn(\"THREE.ColladaLoader: Joint \" + jointIndex + \" is static.\");\n            } else {\n              const object = jointData.object;\n              const axis = joint.axis;\n              const transforms = jointData.transforms;\n              matrix.identity();\n              for (let i = 0; i < transforms.length; i++) {\n                const transform = transforms[i];\n                if (transform.sid && transform.sid.indexOf(jointIndex) !== -1) {\n                  switch (joint.type) {\n                    case \"revolute\":\n                      matrix.multiply(m0.makeRotationAxis(axis, MathUtils.degToRad(value)));\n                      break;\n                    case \"prismatic\":\n                      matrix.multiply(m0.makeTranslation(axis.x * value, axis.y * value, axis.z * value));\n                      break;\n                    default:\n                      console.warn(\"THREE.ColladaLoader: Unknown joint type: \" + joint.type);\n                      break;\n                  }\n                } else {\n                  switch (transform.type) {\n                    case \"matrix\":\n                      matrix.multiply(transform.obj);\n                      break;\n                    case \"translate\":\n                      matrix.multiply(m0.makeTranslation(transform.obj.x, transform.obj.y, transform.obj.z));\n                      break;\n                    case \"scale\":\n                      matrix.scale(transform.obj);\n                      break;\n                    case \"rotate\":\n                      matrix.multiply(m0.makeRotationAxis(transform.obj, transform.angle));\n                      break;\n                  }\n                }\n              }\n              object.matrix.copy(matrix);\n              object.matrix.decompose(object.position, object.quaternion, object.scale);\n              jointMap[jointIndex].position = value;\n            }\n          } else {\n            console.log(\"THREE.ColladaLoader: \" + jointIndex + \" does not exist.\");\n          }\n        }\n      };\n    }\n    function buildTransformList(node) {\n      const transforms = [];\n      const xml2 = collada.querySelector('[id=\"' + node.id + '\"]');\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        let array, vector2;\n        switch (child.nodeName) {\n          case \"matrix\":\n            array = parseFloats(child.textContent);\n            const matrix2 = new Matrix4().fromArray(array).transpose();\n            transforms.push({\n              sid: child.getAttribute(\"sid\"),\n              type: child.nodeName,\n              obj: matrix2\n            });\n            break;\n          case \"translate\":\n          case \"scale\":\n            array = parseFloats(child.textContent);\n            vector2 = new Vector3().fromArray(array);\n            transforms.push({\n              sid: child.getAttribute(\"sid\"),\n              type: child.nodeName,\n              obj: vector2\n            });\n            break;\n          case \"rotate\":\n            array = parseFloats(child.textContent);\n            vector2 = new Vector3().fromArray(array);\n            const angle = MathUtils.degToRad(array[3]);\n            transforms.push({\n              sid: child.getAttribute(\"sid\"),\n              type: child.nodeName,\n              obj: vector2,\n              angle\n            });\n            break;\n        }\n      }\n      return transforms;\n    }\n    function prepareNodes(xml2) {\n      const elements = xml2.getElementsByTagName(\"node\");\n      for (let i = 0; i < elements.length; i++) {\n        const element = elements[i];\n        if (element.hasAttribute(\"id\") === false) {\n          element.setAttribute(\"id\", generateId());\n        }\n      }\n    }\n    const matrix = new Matrix4();\n    const vector = new Vector3();\n    function parseNode(xml2) {\n      const data = {\n        name: xml2.getAttribute(\"name\") || \"\",\n        type: xml2.getAttribute(\"type\"),\n        id: xml2.getAttribute(\"id\"),\n        sid: xml2.getAttribute(\"sid\"),\n        matrix: new Matrix4(),\n        nodes: [],\n        instanceCameras: [],\n        instanceControllers: [],\n        instanceLights: [],\n        instanceGeometries: [],\n        instanceNodes: [],\n        transforms: {}\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        if (child.nodeType !== 1)\n          continue;\n        let array;\n        switch (child.nodeName) {\n          case \"node\":\n            data.nodes.push(child.getAttribute(\"id\"));\n            parseNode(child);\n            break;\n          case \"instance_camera\":\n            data.instanceCameras.push(parseId(child.getAttribute(\"url\")));\n            break;\n          case \"instance_controller\":\n            data.instanceControllers.push(parseNodeInstance(child));\n            break;\n          case \"instance_light\":\n            data.instanceLights.push(parseId(child.getAttribute(\"url\")));\n            break;\n          case \"instance_geometry\":\n            data.instanceGeometries.push(parseNodeInstance(child));\n            break;\n          case \"instance_node\":\n            data.instanceNodes.push(parseId(child.getAttribute(\"url\")));\n            break;\n          case \"matrix\":\n            array = parseFloats(child.textContent);\n            data.matrix.multiply(matrix.fromArray(array).transpose());\n            data.transforms[child.getAttribute(\"sid\")] = child.nodeName;\n            break;\n          case \"translate\":\n            array = parseFloats(child.textContent);\n            vector.fromArray(array);\n            data.matrix.multiply(matrix.makeTranslation(vector.x, vector.y, vector.z));\n            data.transforms[child.getAttribute(\"sid\")] = child.nodeName;\n            break;\n          case \"rotate\":\n            array = parseFloats(child.textContent);\n            const angle = MathUtils.degToRad(array[3]);\n            data.matrix.multiply(matrix.makeRotationAxis(vector.fromArray(array), angle));\n            data.transforms[child.getAttribute(\"sid\")] = child.nodeName;\n            break;\n          case \"scale\":\n            array = parseFloats(child.textContent);\n            data.matrix.scale(vector.fromArray(array));\n            data.transforms[child.getAttribute(\"sid\")] = child.nodeName;\n            break;\n          case \"extra\":\n            break;\n          default:\n            console.log(child);\n        }\n      }\n      if (hasNode(data.id)) {\n        console.warn(\"THREE.ColladaLoader: There is already a node with ID %s. Exclude current node from further processing.\", data.id);\n      } else {\n        library.nodes[data.id] = data;\n      }\n      return data;\n    }\n    function parseNodeInstance(xml2) {\n      const data = {\n        id: parseId(xml2.getAttribute(\"url\")),\n        materials: {},\n        skeletons: []\n      };\n      for (let i = 0; i < xml2.childNodes.length; i++) {\n        const child = xml2.childNodes[i];\n        switch (child.nodeName) {\n          case \"bind_material\":\n            const instances = child.getElementsByTagName(\"instance_material\");\n            for (let j = 0; j < instances.length; j++) {\n              const instance = instances[j];\n              const symbol = instance.getAttribute(\"symbol\");\n              const target = instance.getAttribute(\"target\");\n              data.materials[symbol] = parseId(target);\n            }\n            break;\n          case \"skeleton\":\n            data.skeletons.push(parseId(child.textContent));\n            break;\n        }\n      }\n      return data;\n    }\n    function buildSkeleton(skeletons, joints) {\n      const boneData = [];\n      const sortedBoneData = [];\n      let i, j, data;\n      for (i = 0; i < skeletons.length; i++) {\n        const skeleton = skeletons[i];\n        let root;\n        if (hasNode(skeleton)) {\n          root = getNode(skeleton);\n          buildBoneHierarchy(root, joints, boneData);\n        } else if (hasVisualScene(skeleton)) {\n          const visualScene = library.visualScenes[skeleton];\n          const children = visualScene.children;\n          for (let j2 = 0; j2 < children.length; j2++) {\n            const child = children[j2];\n            if (child.type === \"JOINT\") {\n              const root2 = getNode(child.id);\n              buildBoneHierarchy(root2, joints, boneData);\n            }\n          }\n        } else {\n          console.error(\"THREE.ColladaLoader: Unable to find root bone of skeleton with ID:\", skeleton);\n        }\n      }\n      for (i = 0; i < joints.length; i++) {\n        for (j = 0; j < boneData.length; j++) {\n          data = boneData[j];\n          if (data.bone.name === joints[i].name) {\n            sortedBoneData[i] = data;\n            data.processed = true;\n            break;\n          }\n        }\n      }\n      for (i = 0; i < boneData.length; i++) {\n        data = boneData[i];\n        if (data.processed === false) {\n          sortedBoneData.push(data);\n          data.processed = true;\n        }\n      }\n      const bones = [];\n      const boneInverses = [];\n      for (i = 0; i < sortedBoneData.length; i++) {\n        data = sortedBoneData[i];\n        bones.push(data.bone);\n        boneInverses.push(data.boneInverse);\n      }\n      return new Skeleton(bones, boneInverses);\n    }\n    function buildBoneHierarchy(root, joints, boneData) {\n      root.traverse(function(object) {\n        if (object.isBone === true) {\n          let boneInverse;\n          for (let i = 0; i < joints.length; i++) {\n            const joint = joints[i];\n            if (joint.name === object.name) {\n              boneInverse = joint.boneInverse;\n              break;\n            }\n          }\n          if (boneInverse === void 0) {\n            boneInverse = new Matrix4();\n          }\n          boneData.push({ bone: object, boneInverse, processed: false });\n        }\n      });\n    }\n    function buildNode(data) {\n      const objects = [];\n      const matrix2 = data.matrix;\n      const nodes = data.nodes;\n      const type = data.type;\n      const instanceCameras = data.instanceCameras;\n      const instanceControllers = data.instanceControllers;\n      const instanceLights = data.instanceLights;\n      const instanceGeometries = data.instanceGeometries;\n      const instanceNodes = data.instanceNodes;\n      for (let i = 0, l = nodes.length; i < l; i++) {\n        objects.push(getNode(nodes[i]));\n      }\n      for (let i = 0, l = instanceCameras.length; i < l; i++) {\n        const instanceCamera = getCamera(instanceCameras[i]);\n        if (instanceCamera !== null) {\n          objects.push(instanceCamera.clone());\n        }\n      }\n      for (let i = 0, l = instanceControllers.length; i < l; i++) {\n        const instance = instanceControllers[i];\n        const controller = getController(instance.id);\n        const geometries = getGeometry(controller.id);\n        const newObjects = buildObjects(geometries, instance.materials);\n        const skeletons = instance.skeletons;\n        const joints = controller.skin.joints;\n        const skeleton = buildSkeleton(skeletons, joints);\n        for (let j = 0, jl = newObjects.length; j < jl; j++) {\n          const object2 = newObjects[j];\n          if (object2.isSkinnedMesh) {\n            object2.bind(skeleton, controller.skin.bindMatrix);\n            object2.normalizeSkinWeights();\n          }\n          objects.push(object2);\n        }\n      }\n      for (let i = 0, l = instanceLights.length; i < l; i++) {\n        const instanceLight = getLight(instanceLights[i]);\n        if (instanceLight !== null) {\n          objects.push(instanceLight.clone());\n        }\n      }\n      for (let i = 0, l = instanceGeometries.length; i < l; i++) {\n        const instance = instanceGeometries[i];\n        const geometries = getGeometry(instance.id);\n        const newObjects = buildObjects(geometries, instance.materials);\n        for (let j = 0, jl = newObjects.length; j < jl; j++) {\n          objects.push(newObjects[j]);\n        }\n      }\n      for (let i = 0, l = instanceNodes.length; i < l; i++) {\n        objects.push(getNode(instanceNodes[i]).clone());\n      }\n      let object;\n      if (nodes.length === 0 && objects.length === 1) {\n        object = objects[0];\n      } else {\n        object = type === \"JOINT\" ? new Bone() : new Group();\n        for (let i = 0; i < objects.length; i++) {\n          object.add(objects[i]);\n        }\n      }\n      object.name = type === \"JOINT\" ? data.sid : data.name;\n      object.matrix.copy(matrix2);\n      object.matrix.decompose(object.position, object.quaternion, object.scale);\n      return object;\n    }\n    const fallbackMaterial = new MeshBasicMaterial({ color: 16711935 });\n    function resolveMaterialBinding(keys, instanceMaterials) {\n      const materials = [];\n      for (let i = 0, l = keys.length; i < l; i++) {\n        const id2 = instanceMaterials[keys[i]];\n        if (id2 === void 0) {\n          console.warn(\"THREE.ColladaLoader: Material with key %s not found. Apply fallback material.\", keys[i]);\n          materials.push(fallbackMaterial);\n        } else {\n          materials.push(getMaterial(id2));\n        }\n      }\n      return materials;\n    }\n    function buildObjects(geometries, instanceMaterials) {\n      const objects = [];\n      for (const type in geometries) {\n        const geometry = geometries[type];\n        const materials = resolveMaterialBinding(geometry.materialKeys, instanceMaterials);\n        if (materials.length === 0) {\n          if (type === \"lines\" || type === \"linestrips\") {\n            materials.push(new LineBasicMaterial());\n          } else {\n            materials.push(new MeshPhongMaterial());\n          }\n        }\n        const skinning = geometry.data.attributes.skinIndex !== void 0;\n        const material = materials.length === 1 ? materials[0] : materials;\n        let object;\n        switch (type) {\n          case \"lines\":\n            object = new LineSegments(geometry.data, material);\n            break;\n          case \"linestrips\":\n            object = new Line(geometry.data, material);\n            break;\n          case \"triangles\":\n          case \"polylist\":\n            if (skinning) {\n              object = new SkinnedMesh(geometry.data, material);\n            } else {\n              object = new Mesh(geometry.data, material);\n            }\n            break;\n        }\n        objects.push(object);\n      }\n      return objects;\n    }\n    function hasNode(id2) {\n      return library.nodes[id2] !== void 0;\n    }\n    function getNode(id2) {\n      return getBuild(library.nodes[id2], buildNode);\n    }\n    function parseVisualScene(xml2) {\n      const data = {\n        name: xml2.getAttribute(\"name\"),\n        children: []\n      };\n      prepareNodes(xml2);\n      const elements = getElementsByTagName(xml2, \"node\");\n      for (let i = 0; i < elements.length; i++) {\n        data.children.push(parseNode(elements[i]));\n      }\n      library.visualScenes[xml2.getAttribute(\"id\")] = data;\n    }\n    function buildVisualScene(data) {\n      const group = new Group();\n      group.name = data.name;\n      const children = data.children;\n      for (let i = 0; i < children.length; i++) {\n        const child = children[i];\n        group.add(getNode(child.id));\n      }\n      return group;\n    }\n    function hasVisualScene(id2) {\n      return library.visualScenes[id2] !== void 0;\n    }\n    function getVisualScene(id2) {\n      return getBuild(library.visualScenes[id2], buildVisualScene);\n    }\n    function parseScene(xml2) {\n      const instance = getElementsByTagName(xml2, \"instance_visual_scene\")[0];\n      return getVisualScene(parseId(instance.getAttribute(\"url\")));\n    }\n    function setupAnimations() {\n      const clips = library.clips;\n      if (isEmpty(clips) === true) {\n        if (isEmpty(library.animations) === false) {\n          const tracks = [];\n          for (const id2 in library.animations) {\n            const animationTracks = getAnimation(id2);\n            for (let i = 0, l = animationTracks.length; i < l; i++) {\n              tracks.push(animationTracks[i]);\n            }\n          }\n          animations.push(new AnimationClip(\"default\", -1, tracks));\n        }\n      } else {\n        for (const id2 in clips) {\n          animations.push(getAnimationClip(id2));\n        }\n      }\n    }\n    function parserErrorToText(parserError2) {\n      let result = \"\";\n      const stack = [parserError2];\n      while (stack.length) {\n        const node = stack.shift();\n        if (node.nodeType === Node.TEXT_NODE) {\n          result += node.textContent;\n        } else {\n          result += \"\\n\";\n          stack.push.apply(stack, node.childNodes);\n        }\n      }\n      return result.trim();\n    }\n    if (text.length === 0) {\n      return { scene: new Scene() };\n    }\n    const xml = new DOMParser().parseFromString(text, \"application/xml\");\n    const collada = getElementsByTagName(xml, \"COLLADA\")[0];\n    const parserError = xml.getElementsByTagName(\"parsererror\")[0];\n    if (parserError !== void 0) {\n      const errorElement = getElementsByTagName(parserError, \"div\")[0];\n      let errorText;\n      if (errorElement) {\n        errorText = errorElement.textContent;\n      } else {\n        errorText = parserErrorToText(parserError);\n      }\n      console.error(\"THREE.ColladaLoader: Failed to parse collada file.\\n\", errorText);\n      return null;\n    }\n    const version = collada.getAttribute(\"version\");\n    console.log(\"THREE.ColladaLoader: File version\", version);\n    const asset = parseAsset(getElementsByTagName(collada, \"asset\")[0]);\n    const textureLoader = new TextureLoader(this.manager);\n    textureLoader.setPath(this.resourcePath || path).setCrossOrigin(this.crossOrigin);\n    let tgaLoader;\n    if (TGALoader) {\n      tgaLoader = new TGALoader(this.manager);\n      tgaLoader.setPath(this.resourcePath || path);\n    }\n    const tempColor = new Color();\n    const animations = [];\n    let kinematics = {};\n    let count = 0;\n    const library = {\n      animations: {},\n      clips: {},\n      controllers: {},\n      images: {},\n      effects: {},\n      materials: {},\n      cameras: {},\n      lights: {},\n      geometries: {},\n      nodes: {},\n      visualScenes: {},\n      kinematicsModels: {},\n      physicsModels: {},\n      kinematicsScenes: {}\n    };\n    parseLibrary(collada, \"library_animations\", \"animation\", parseAnimation);\n    parseLibrary(collada, \"library_animation_clips\", \"animation_clip\", parseAnimationClip);\n    parseLibrary(collada, \"library_controllers\", \"controller\", parseController);\n    parseLibrary(collada, \"library_images\", \"image\", parseImage);\n    parseLibrary(collada, \"library_effects\", \"effect\", parseEffect);\n    parseLibrary(collada, \"library_materials\", \"material\", parseMaterial);\n    parseLibrary(collada, \"library_cameras\", \"camera\", parseCamera);\n    parseLibrary(collada, \"library_lights\", \"light\", parseLight);\n    parseLibrary(collada, \"library_geometries\", \"geometry\", parseGeometry);\n    parseLibrary(collada, \"library_nodes\", \"node\", parseNode);\n    parseLibrary(collada, \"library_visual_scenes\", \"visual_scene\", parseVisualScene);\n    parseLibrary(collada, \"library_kinematics_models\", \"kinematics_model\", parseKinematicsModel);\n    parseLibrary(collada, \"library_physics_models\", \"physics_model\", parsePhysicsModel);\n    parseLibrary(collada, \"scene\", \"instance_kinematics_scene\", parseKinematicsScene);\n    buildLibrary(library.animations, buildAnimation);\n    buildLibrary(library.clips, buildAnimationClip);\n    buildLibrary(library.controllers, buildController);\n    buildLibrary(library.images, buildImage);\n    buildLibrary(library.effects, buildEffect);\n    buildLibrary(library.materials, buildMaterial);\n    buildLibrary(library.cameras, buildCamera);\n    buildLibrary(library.lights, buildLight);\n    buildLibrary(library.geometries, buildGeometry);\n    buildLibrary(library.visualScenes, buildVisualScene);\n    setupAnimations();\n    setupKinematics();\n    const scene = parseScene(getElementsByTagName(collada, \"scene\")[0]);\n    scene.animations = animations;\n    if (asset.upAxis === \"Z_UP\") {\n      console.warn(\"THREE.ColladaLoader: You are loading an asset with a Z-UP coordinate system. The loader just rotates the asset to transform it into Y-UP. The vertex data are not converted, see #24289.\");\n      scene.quaternion.setFromEuler(new Euler(-Math.PI / 2, 0, 0));\n    }\n    scene.scale.multiplyScalar(asset.unit);\n    return {\n      get animations() {\n        console.warn(\"THREE.ColladaLoader: Please access animations over scene.animations now.\");\n        return animations;\n      },\n      kinematics,\n      library,\n      scene\n    };\n  }\n}\nclass GLTFLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n    this.dracoLoader = null;\n    this.ktx2Loader = null;\n    this.meshoptDecoder = null;\n    this.pluginCallbacks = [];\n    this.register(function(parser) {\n      return new GLTFMaterialsClearcoatExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFTextureBasisUExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFTextureWebPExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFMaterialsSheenExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFMaterialsTransmissionExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFMaterialsVolumeExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFMaterialsIorExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFMaterialsEmissiveStrengthExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFMaterialsSpecularExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFMaterialsIridescenceExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFLightsExtension(parser);\n    });\n    this.register(function(parser) {\n      return new GLTFMeshoptCompression(parser);\n    });\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    let resourcePath;\n    if (this.resourcePath !== \"\") {\n      resourcePath = this.resourcePath;\n    } else if (this.path !== \"\") {\n      resourcePath = this.path;\n    } else {\n      resourcePath = LoaderUtils.extractUrlBase(url);\n    }\n    this.manager.itemStart(url);\n    const _onError = function(e) {\n      if (onError) {\n        onError(e);\n      } else {\n        console.error(e);\n      }\n      scope.manager.itemError(url);\n      scope.manager.itemEnd(url);\n    };\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setResponseType(\"arraybuffer\");\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, function(data) {\n      try {\n        scope.parse(data, resourcePath, function(gltf) {\n          onLoad(gltf);\n          scope.manager.itemEnd(url);\n        }, _onError);\n      } catch (e) {\n        _onError(e);\n      }\n    }, onProgress, _onError);\n  }\n  setDRACOLoader(dracoLoader) {\n    this.dracoLoader = dracoLoader;\n    return this;\n  }\n  setDDSLoader() {\n    throw new Error('THREE.GLTFLoader: \"MSFT_texture_dds\" no longer supported. Please update to \"KHR_texture_basisu\".');\n  }\n  setKTX2Loader(ktx2Loader) {\n    this.ktx2Loader = ktx2Loader;\n    return this;\n  }\n  setMeshoptDecoder(meshoptDecoder) {\n    this.meshoptDecoder = meshoptDecoder;\n    return this;\n  }\n  register(callback) {\n    if (this.pluginCallbacks.indexOf(callback) === -1) {\n      this.pluginCallbacks.push(callback);\n    }\n    return this;\n  }\n  unregister(callback) {\n    if (this.pluginCallbacks.indexOf(callback) !== -1) {\n      this.pluginCallbacks.splice(this.pluginCallbacks.indexOf(callback), 1);\n    }\n    return this;\n  }\n  parse(data, path, onLoad, onError) {\n    let content;\n    const extensions = {};\n    const plugins = {};\n    if (typeof data === \"string\") {\n      content = data;\n    } else {\n      const magic = LoaderUtils.decodeText(new Uint8Array(data, 0, 4));\n      if (magic === BINARY_EXTENSION_HEADER_MAGIC) {\n        try {\n          extensions[EXTENSIONS.KHR_BINARY_GLTF] = new GLTFBinaryExtension(data);\n        } catch (error) {\n          if (onError)\n            onError(error);\n          return;\n        }\n        content = extensions[EXTENSIONS.KHR_BINARY_GLTF].content;\n      } else {\n        content = LoaderUtils.decodeText(new Uint8Array(data));\n      }\n    }\n    const json = JSON.parse(content);\n    if (json.asset === void 0 || json.asset.version[0] < 2) {\n      if (onError)\n        onError(new Error(\"THREE.GLTFLoader: Unsupported asset. glTF versions >=2.0 are supported.\"));\n      return;\n    }\n    const parser = new GLTFParser(json, {\n      path: path || this.resourcePath || \"\",\n      crossOrigin: this.crossOrigin,\n      requestHeader: this.requestHeader,\n      manager: this.manager,\n      ktx2Loader: this.ktx2Loader,\n      meshoptDecoder: this.meshoptDecoder\n    });\n    parser.fileLoader.setRequestHeader(this.requestHeader);\n    for (let i = 0; i < this.pluginCallbacks.length; i++) {\n      const plugin = this.pluginCallbacks[i](parser);\n      plugins[plugin.name] = plugin;\n      extensions[plugin.name] = true;\n    }\n    if (json.extensionsUsed) {\n      for (let i = 0; i < json.extensionsUsed.length; ++i) {\n        const extensionName = json.extensionsUsed[i];\n        const extensionsRequired = json.extensionsRequired || [];\n        switch (extensionName) {\n          case EXTENSIONS.KHR_MATERIALS_UNLIT:\n            extensions[extensionName] = new GLTFMaterialsUnlitExtension();\n            break;\n          case EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS:\n            extensions[extensionName] = new GLTFMaterialsPbrSpecularGlossinessExtension();\n            break;\n          case EXTENSIONS.KHR_DRACO_MESH_COMPRESSION:\n            extensions[extensionName] = new GLTFDracoMeshCompressionExtension(json, this.dracoLoader);\n            break;\n          case EXTENSIONS.KHR_TEXTURE_TRANSFORM:\n            extensions[extensionName] = new GLTFTextureTransformExtension();\n            break;\n          case EXTENSIONS.KHR_MESH_QUANTIZATION:\n            extensions[extensionName] = new GLTFMeshQuantizationExtension();\n            break;\n          default:\n            if (extensionsRequired.indexOf(extensionName) >= 0 && plugins[extensionName] === void 0) {\n              console.warn('THREE.GLTFLoader: Unknown extension \"' + extensionName + '\".');\n            }\n        }\n      }\n    }\n    parser.setExtensions(extensions);\n    parser.setPlugins(plugins);\n    parser.parse(onLoad, onError);\n  }\n  parseAsync(data, path) {\n    const scope = this;\n    return new Promise(function(resolve, reject) {\n      scope.parse(data, path, resolve, reject);\n    });\n  }\n}\nfunction GLTFRegistry() {\n  let objects = {};\n  return {\n    get: function(key) {\n      return objects[key];\n    },\n    add: function(key, object) {\n      objects[key] = object;\n    },\n    remove: function(key) {\n      delete objects[key];\n    },\n    removeAll: function() {\n      objects = {};\n    }\n  };\n}\nconst EXTENSIONS = {\n  KHR_BINARY_GLTF: \"KHR_binary_glTF\",\n  KHR_DRACO_MESH_COMPRESSION: \"KHR_draco_mesh_compression\",\n  KHR_LIGHTS_PUNCTUAL: \"KHR_lights_punctual\",\n  KHR_MATERIALS_CLEARCOAT: \"KHR_materials_clearcoat\",\n  KHR_MATERIALS_IOR: \"KHR_materials_ior\",\n  KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS: \"KHR_materials_pbrSpecularGlossiness\",\n  KHR_MATERIALS_SHEEN: \"KHR_materials_sheen\",\n  KHR_MATERIALS_SPECULAR: \"KHR_materials_specular\",\n  KHR_MATERIALS_TRANSMISSION: \"KHR_materials_transmission\",\n  KHR_MATERIALS_IRIDESCENCE: \"KHR_materials_iridescence\",\n  KHR_MATERIALS_UNLIT: \"KHR_materials_unlit\",\n  KHR_MATERIALS_VOLUME: \"KHR_materials_volume\",\n  KHR_TEXTURE_BASISU: \"KHR_texture_basisu\",\n  KHR_TEXTURE_TRANSFORM: \"KHR_texture_transform\",\n  KHR_MESH_QUANTIZATION: \"KHR_mesh_quantization\",\n  KHR_MATERIALS_EMISSIVE_STRENGTH: \"KHR_materials_emissive_strength\",\n  EXT_TEXTURE_WEBP: \"EXT_texture_webp\",\n  EXT_MESHOPT_COMPRESSION: \"EXT_meshopt_compression\"\n};\nclass GLTFLightsExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_LIGHTS_PUNCTUAL;\n    this.cache = { refs: {}, uses: {} };\n  }\n  _markDefs() {\n    const parser = this.parser;\n    const nodeDefs = this.parser.json.nodes || [];\n    for (let nodeIndex = 0, nodeLength = nodeDefs.length; nodeIndex < nodeLength; nodeIndex++) {\n      const nodeDef = nodeDefs[nodeIndex];\n      if (nodeDef.extensions && nodeDef.extensions[this.name] && nodeDef.extensions[this.name].light !== void 0) {\n        parser._addNodeRef(this.cache, nodeDef.extensions[this.name].light);\n      }\n    }\n  }\n  _loadLight(lightIndex) {\n    const parser = this.parser;\n    const cacheKey = \"light:\" + lightIndex;\n    let dependency = parser.cache.get(cacheKey);\n    if (dependency)\n      return dependency;\n    const json = parser.json;\n    const extensions = json.extensions && json.extensions[this.name] || {};\n    const lightDefs = extensions.lights || [];\n    const lightDef = lightDefs[lightIndex];\n    let lightNode;\n    const color = new Color(16777215);\n    if (lightDef.color !== void 0)\n      color.fromArray(lightDef.color);\n    const range = lightDef.range !== void 0 ? lightDef.range : 0;\n    switch (lightDef.type) {\n      case \"directional\":\n        lightNode = new DirectionalLight(color);\n        lightNode.target.position.set(0, 0, -1);\n        lightNode.add(lightNode.target);\n        break;\n      case \"point\":\n        lightNode = new PointLight(color);\n        lightNode.distance = range;\n        break;\n      case \"spot\":\n        lightNode = new SpotLight(color);\n        lightNode.distance = range;\n        lightDef.spot = lightDef.spot || {};\n        lightDef.spot.innerConeAngle = lightDef.spot.innerConeAngle !== void 0 ? lightDef.spot.innerConeAngle : 0;\n        lightDef.spot.outerConeAngle = lightDef.spot.outerConeAngle !== void 0 ? lightDef.spot.outerConeAngle : Math.PI / 4;\n        lightNode.angle = lightDef.spot.outerConeAngle;\n        lightNode.penumbra = 1 - lightDef.spot.innerConeAngle / lightDef.spot.outerConeAngle;\n        lightNode.target.position.set(0, 0, -1);\n        lightNode.add(lightNode.target);\n        break;\n      default:\n        throw new Error(\"THREE.GLTFLoader: Unexpected light type: \" + lightDef.type);\n    }\n    lightNode.position.set(0, 0, 0);\n    lightNode.decay = 2;\n    if (lightDef.intensity !== void 0)\n      lightNode.intensity = lightDef.intensity;\n    lightNode.name = parser.createUniqueName(lightDef.name || \"light_\" + lightIndex);\n    dependency = Promise.resolve(lightNode);\n    parser.cache.add(cacheKey, dependency);\n    return dependency;\n  }\n  createNodeAttachment(nodeIndex) {\n    const self2 = this;\n    const parser = this.parser;\n    const json = parser.json;\n    const nodeDef = json.nodes[nodeIndex];\n    const lightDef = nodeDef.extensions && nodeDef.extensions[this.name] || {};\n    const lightIndex = lightDef.light;\n    if (lightIndex === void 0)\n      return null;\n    return this._loadLight(lightIndex).then(function(light) {\n      return parser._getNodeRef(self2.cache, lightIndex, light);\n    });\n  }\n}\nclass GLTFMaterialsUnlitExtension {\n  constructor() {\n    this.name = EXTENSIONS.KHR_MATERIALS_UNLIT;\n  }\n  getMaterialType() {\n    return MeshBasicMaterial;\n  }\n  extendParams(materialParams, materialDef, parser) {\n    const pending = [];\n    materialParams.color = new Color(1, 1, 1);\n    materialParams.opacity = 1;\n    const metallicRoughness = materialDef.pbrMetallicRoughness;\n    if (metallicRoughness) {\n      if (Array.isArray(metallicRoughness.baseColorFactor)) {\n        const array = metallicRoughness.baseColorFactor;\n        materialParams.color.fromArray(array);\n        materialParams.opacity = array[3];\n      }\n      if (metallicRoughness.baseColorTexture !== void 0) {\n        pending.push(parser.assignTexture(materialParams, \"map\", metallicRoughness.baseColorTexture, sRGBEncoding));\n      }\n    }\n    return Promise.all(pending);\n  }\n}\nclass GLTFMaterialsEmissiveStrengthExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_MATERIALS_EMISSIVE_STRENGTH;\n  }\n  extendMaterialParams(materialIndex, materialParams) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name]) {\n      return Promise.resolve();\n    }\n    const emissiveStrength = materialDef.extensions[this.name].emissiveStrength;\n    if (emissiveStrength !== void 0) {\n      materialParams.emissiveIntensity = emissiveStrength;\n    }\n    return Promise.resolve();\n  }\n}\nclass GLTFMaterialsClearcoatExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_MATERIALS_CLEARCOAT;\n  }\n  getMaterialType(materialIndex) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name])\n      return null;\n    return MeshPhysicalMaterial;\n  }\n  extendMaterialParams(materialIndex, materialParams) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name]) {\n      return Promise.resolve();\n    }\n    const pending = [];\n    const extension = materialDef.extensions[this.name];\n    if (extension.clearcoatFactor !== void 0) {\n      materialParams.clearcoat = extension.clearcoatFactor;\n    }\n    if (extension.clearcoatTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"clearcoatMap\", extension.clearcoatTexture));\n    }\n    if (extension.clearcoatRoughnessFactor !== void 0) {\n      materialParams.clearcoatRoughness = extension.clearcoatRoughnessFactor;\n    }\n    if (extension.clearcoatRoughnessTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"clearcoatRoughnessMap\", extension.clearcoatRoughnessTexture));\n    }\n    if (extension.clearcoatNormalTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"clearcoatNormalMap\", extension.clearcoatNormalTexture));\n      if (extension.clearcoatNormalTexture.scale !== void 0) {\n        const scale = extension.clearcoatNormalTexture.scale;\n        materialParams.clearcoatNormalScale = new Vector2(scale, scale);\n      }\n    }\n    return Promise.all(pending);\n  }\n}\nclass GLTFMaterialsIridescenceExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_MATERIALS_IRIDESCENCE;\n  }\n  getMaterialType(materialIndex) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name])\n      return null;\n    return MeshPhysicalMaterial;\n  }\n  extendMaterialParams(materialIndex, materialParams) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name]) {\n      return Promise.resolve();\n    }\n    const pending = [];\n    const extension = materialDef.extensions[this.name];\n    if (extension.iridescenceFactor !== void 0) {\n      materialParams.iridescence = extension.iridescenceFactor;\n    }\n    if (extension.iridescenceTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"iridescenceMap\", extension.iridescenceTexture));\n    }\n    if (extension.iridescenceIor !== void 0) {\n      materialParams.iridescenceIOR = extension.iridescenceIor;\n    }\n    if (materialParams.iridescenceThicknessRange === void 0) {\n      materialParams.iridescenceThicknessRange = [100, 400];\n    }\n    if (extension.iridescenceThicknessMinimum !== void 0) {\n      materialParams.iridescenceThicknessRange[0] = extension.iridescenceThicknessMinimum;\n    }\n    if (extension.iridescenceThicknessMaximum !== void 0) {\n      materialParams.iridescenceThicknessRange[1] = extension.iridescenceThicknessMaximum;\n    }\n    if (extension.iridescenceThicknessTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"iridescenceThicknessMap\", extension.iridescenceThicknessTexture));\n    }\n    return Promise.all(pending);\n  }\n}\nclass GLTFMaterialsSheenExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_MATERIALS_SHEEN;\n  }\n  getMaterialType(materialIndex) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name])\n      return null;\n    return MeshPhysicalMaterial;\n  }\n  extendMaterialParams(materialIndex, materialParams) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name]) {\n      return Promise.resolve();\n    }\n    const pending = [];\n    materialParams.sheenColor = new Color(0, 0, 0);\n    materialParams.sheenRoughness = 0;\n    materialParams.sheen = 1;\n    const extension = materialDef.extensions[this.name];\n    if (extension.sheenColorFactor !== void 0) {\n      materialParams.sheenColor.fromArray(extension.sheenColorFactor);\n    }\n    if (extension.sheenRoughnessFactor !== void 0) {\n      materialParams.sheenRoughness = extension.sheenRoughnessFactor;\n    }\n    if (extension.sheenColorTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"sheenColorMap\", extension.sheenColorTexture, sRGBEncoding));\n    }\n    if (extension.sheenRoughnessTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"sheenRoughnessMap\", extension.sheenRoughnessTexture));\n    }\n    return Promise.all(pending);\n  }\n}\nclass GLTFMaterialsTransmissionExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_MATERIALS_TRANSMISSION;\n  }\n  getMaterialType(materialIndex) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name])\n      return null;\n    return MeshPhysicalMaterial;\n  }\n  extendMaterialParams(materialIndex, materialParams) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name]) {\n      return Promise.resolve();\n    }\n    const pending = [];\n    const extension = materialDef.extensions[this.name];\n    if (extension.transmissionFactor !== void 0) {\n      materialParams.transmission = extension.transmissionFactor;\n    }\n    if (extension.transmissionTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"transmissionMap\", extension.transmissionTexture));\n    }\n    return Promise.all(pending);\n  }\n}\nclass GLTFMaterialsVolumeExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_MATERIALS_VOLUME;\n  }\n  getMaterialType(materialIndex) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name])\n      return null;\n    return MeshPhysicalMaterial;\n  }\n  extendMaterialParams(materialIndex, materialParams) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name]) {\n      return Promise.resolve();\n    }\n    const pending = [];\n    const extension = materialDef.extensions[this.name];\n    materialParams.thickness = extension.thicknessFactor !== void 0 ? extension.thicknessFactor : 0;\n    if (extension.thicknessTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"thicknessMap\", extension.thicknessTexture));\n    }\n    materialParams.attenuationDistance = extension.attenuationDistance || 0;\n    const colorArray = extension.attenuationColor || [1, 1, 1];\n    materialParams.attenuationColor = new Color(colorArray[0], colorArray[1], colorArray[2]);\n    return Promise.all(pending);\n  }\n}\nclass GLTFMaterialsIorExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_MATERIALS_IOR;\n  }\n  getMaterialType(materialIndex) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name])\n      return null;\n    return MeshPhysicalMaterial;\n  }\n  extendMaterialParams(materialIndex, materialParams) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name]) {\n      return Promise.resolve();\n    }\n    const extension = materialDef.extensions[this.name];\n    materialParams.ior = extension.ior !== void 0 ? extension.ior : 1.5;\n    return Promise.resolve();\n  }\n}\nclass GLTFMaterialsSpecularExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_MATERIALS_SPECULAR;\n  }\n  getMaterialType(materialIndex) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name])\n      return null;\n    return MeshPhysicalMaterial;\n  }\n  extendMaterialParams(materialIndex, materialParams) {\n    const parser = this.parser;\n    const materialDef = parser.json.materials[materialIndex];\n    if (!materialDef.extensions || !materialDef.extensions[this.name]) {\n      return Promise.resolve();\n    }\n    const pending = [];\n    const extension = materialDef.extensions[this.name];\n    materialParams.specularIntensity = extension.specularFactor !== void 0 ? extension.specularFactor : 1;\n    if (extension.specularTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"specularIntensityMap\", extension.specularTexture));\n    }\n    const colorArray = extension.specularColorFactor || [1, 1, 1];\n    materialParams.specularColor = new Color(colorArray[0], colorArray[1], colorArray[2]);\n    if (extension.specularColorTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"specularColorMap\", extension.specularColorTexture, sRGBEncoding));\n    }\n    return Promise.all(pending);\n  }\n}\nclass GLTFTextureBasisUExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.KHR_TEXTURE_BASISU;\n  }\n  loadTexture(textureIndex) {\n    const parser = this.parser;\n    const json = parser.json;\n    const textureDef = json.textures[textureIndex];\n    if (!textureDef.extensions || !textureDef.extensions[this.name]) {\n      return null;\n    }\n    const extension = textureDef.extensions[this.name];\n    const loader = parser.options.ktx2Loader;\n    if (!loader) {\n      if (json.extensionsRequired && json.extensionsRequired.indexOf(this.name) >= 0) {\n        throw new Error(\"THREE.GLTFLoader: setKTX2Loader must be called before loading KTX2 textures\");\n      } else {\n        return null;\n      }\n    }\n    return parser.loadTextureImage(textureIndex, extension.source, loader);\n  }\n}\nclass GLTFTextureWebPExtension {\n  constructor(parser) {\n    this.parser = parser;\n    this.name = EXTENSIONS.EXT_TEXTURE_WEBP;\n    this.isSupported = null;\n  }\n  loadTexture(textureIndex) {\n    const name = this.name;\n    const parser = this.parser;\n    const json = parser.json;\n    const textureDef = json.textures[textureIndex];\n    if (!textureDef.extensions || !textureDef.extensions[name]) {\n      return null;\n    }\n    const extension = textureDef.extensions[name];\n    const source = json.images[extension.source];\n    let loader = parser.textureLoader;\n    if (source.uri) {\n      const handler = parser.options.manager.getHandler(source.uri);\n      if (handler !== null)\n        loader = handler;\n    }\n    return this.detectSupport().then(function(isSupported) {\n      if (isSupported)\n        return parser.loadTextureImage(textureIndex, extension.source, loader);\n      if (json.extensionsRequired && json.extensionsRequired.indexOf(name) >= 0) {\n        throw new Error(\"THREE.GLTFLoader: WebP required by asset but unsupported.\");\n      }\n      return parser.loadTexture(textureIndex);\n    });\n  }\n  detectSupport() {\n    if (!this.isSupported) {\n      this.isSupported = new Promise(function(resolve) {\n        const image = new Image();\n        image.src = \"data:image/webp;base64,UklGRiIAAABXRUJQVlA4IBYAAAAwAQCdASoBAAEADsD+JaQAA3AAAAAA\";\n        image.onload = image.onerror = function() {\n          resolve(image.height === 1);\n        };\n      });\n    }\n    return this.isSupported;\n  }\n}\nclass GLTFMeshoptCompression {\n  constructor(parser) {\n    this.name = EXTENSIONS.EXT_MESHOPT_COMPRESSION;\n    this.parser = parser;\n  }\n  loadBufferView(index2) {\n    const json = this.parser.json;\n    const bufferView = json.bufferViews[index2];\n    if (bufferView.extensions && bufferView.extensions[this.name]) {\n      const extensionDef = bufferView.extensions[this.name];\n      const buffer = this.parser.getDependency(\"buffer\", extensionDef.buffer);\n      const decoder = this.parser.options.meshoptDecoder;\n      if (!decoder || !decoder.supported) {\n        if (json.extensionsRequired && json.extensionsRequired.indexOf(this.name) >= 0) {\n          throw new Error(\"THREE.GLTFLoader: setMeshoptDecoder must be called before loading compressed files\");\n        } else {\n          return null;\n        }\n      }\n      return Promise.all([buffer, decoder.ready]).then(function(res) {\n        const byteOffset = extensionDef.byteOffset || 0;\n        const byteLength = extensionDef.byteLength || 0;\n        const count = extensionDef.count;\n        const stride = extensionDef.byteStride;\n        const result = new ArrayBuffer(count * stride);\n        const source = new Uint8Array(res[0], byteOffset, byteLength);\n        decoder.decodeGltfBuffer(new Uint8Array(result), count, stride, source, extensionDef.mode, extensionDef.filter);\n        return result;\n      });\n    } else {\n      return null;\n    }\n  }\n}\nconst BINARY_EXTENSION_HEADER_MAGIC = \"glTF\";\nconst BINARY_EXTENSION_HEADER_LENGTH = 12;\nconst BINARY_EXTENSION_CHUNK_TYPES = { JSON: 1313821514, BIN: 5130562 };\nclass GLTFBinaryExtension {\n  constructor(data) {\n    this.name = EXTENSIONS.KHR_BINARY_GLTF;\n    this.content = null;\n    this.body = null;\n    const headerView = new DataView(data, 0, BINARY_EXTENSION_HEADER_LENGTH);\n    this.header = {\n      magic: LoaderUtils.decodeText(new Uint8Array(data.slice(0, 4))),\n      version: headerView.getUint32(4, true),\n      length: headerView.getUint32(8, true)\n    };\n    if (this.header.magic !== BINARY_EXTENSION_HEADER_MAGIC) {\n      throw new Error(\"THREE.GLTFLoader: Unsupported glTF-Binary header.\");\n    } else if (this.header.version < 2) {\n      throw new Error(\"THREE.GLTFLoader: Legacy binary file detected.\");\n    }\n    const chunkContentsLength = this.header.length - BINARY_EXTENSION_HEADER_LENGTH;\n    const chunkView = new DataView(data, BINARY_EXTENSION_HEADER_LENGTH);\n    let chunkIndex = 0;\n    while (chunkIndex < chunkContentsLength) {\n      const chunkLength = chunkView.getUint32(chunkIndex, true);\n      chunkIndex += 4;\n      const chunkType = chunkView.getUint32(chunkIndex, true);\n      chunkIndex += 4;\n      if (chunkType === BINARY_EXTENSION_CHUNK_TYPES.JSON) {\n        const contentArray = new Uint8Array(data, BINARY_EXTENSION_HEADER_LENGTH + chunkIndex, chunkLength);\n        this.content = LoaderUtils.decodeText(contentArray);\n      } else if (chunkType === BINARY_EXTENSION_CHUNK_TYPES.BIN) {\n        const byteOffset = BINARY_EXTENSION_HEADER_LENGTH + chunkIndex;\n        this.body = data.slice(byteOffset, byteOffset + chunkLength);\n      }\n      chunkIndex += chunkLength;\n    }\n    if (this.content === null) {\n      throw new Error(\"THREE.GLTFLoader: JSON content not found.\");\n    }\n  }\n}\nclass GLTFDracoMeshCompressionExtension {\n  constructor(json, dracoLoader) {\n    if (!dracoLoader) {\n      throw new Error(\"THREE.GLTFLoader: No DRACOLoader instance provided.\");\n    }\n    this.name = EXTENSIONS.KHR_DRACO_MESH_COMPRESSION;\n    this.json = json;\n    this.dracoLoader = dracoLoader;\n    this.dracoLoader.preload();\n  }\n  decodePrimitive(primitive, parser) {\n    const json = this.json;\n    const dracoLoader = this.dracoLoader;\n    const bufferViewIndex = primitive.extensions[this.name].bufferView;\n    const gltfAttributeMap = primitive.extensions[this.name].attributes;\n    const threeAttributeMap = {};\n    const attributeNormalizedMap = {};\n    const attributeTypeMap = {};\n    for (const attributeName in gltfAttributeMap) {\n      const threeAttributeName = ATTRIBUTES[attributeName] || attributeName.toLowerCase();\n      threeAttributeMap[threeAttributeName] = gltfAttributeMap[attributeName];\n    }\n    for (const attributeName in primitive.attributes) {\n      const threeAttributeName = ATTRIBUTES[attributeName] || attributeName.toLowerCase();\n      if (gltfAttributeMap[attributeName] !== void 0) {\n        const accessorDef = json.accessors[primitive.attributes[attributeName]];\n        const componentType = WEBGL_COMPONENT_TYPES[accessorDef.componentType];\n        attributeTypeMap[threeAttributeName] = componentType;\n        attributeNormalizedMap[threeAttributeName] = accessorDef.normalized === true;\n      }\n    }\n    return parser.getDependency(\"bufferView\", bufferViewIndex).then(function(bufferView) {\n      return new Promise(function(resolve) {\n        dracoLoader.decodeDracoFile(bufferView, function(geometry) {\n          for (const attributeName in geometry.attributes) {\n            const attribute = geometry.attributes[attributeName];\n            const normalized = attributeNormalizedMap[attributeName];\n            if (normalized !== void 0)\n              attribute.normalized = normalized;\n          }\n          resolve(geometry);\n        }, threeAttributeMap, attributeTypeMap);\n      });\n    });\n  }\n}\nclass GLTFTextureTransformExtension {\n  constructor() {\n    this.name = EXTENSIONS.KHR_TEXTURE_TRANSFORM;\n  }\n  extendTexture(texture, transform) {\n    if (transform.texCoord !== void 0) {\n      console.warn('THREE.GLTFLoader: Custom UV sets in \"' + this.name + '\" extension not yet supported.');\n    }\n    if (transform.offset === void 0 && transform.rotation === void 0 && transform.scale === void 0) {\n      return texture;\n    }\n    texture = texture.clone();\n    if (transform.offset !== void 0) {\n      texture.offset.fromArray(transform.offset);\n    }\n    if (transform.rotation !== void 0) {\n      texture.rotation = transform.rotation;\n    }\n    if (transform.scale !== void 0) {\n      texture.repeat.fromArray(transform.scale);\n    }\n    texture.needsUpdate = true;\n    return texture;\n  }\n}\nclass GLTFMeshStandardSGMaterial extends MeshStandardMaterial {\n  constructor(params) {\n    super();\n    this.isGLTFSpecularGlossinessMaterial = true;\n    const specularMapParsFragmentChunk = [\n      \"#ifdef USE_SPECULARMAP\",\n      \"\tuniform sampler2D specularMap;\",\n      \"#endif\"\n    ].join(\"\\n\");\n    const glossinessMapParsFragmentChunk = [\n      \"#ifdef USE_GLOSSINESSMAP\",\n      \"\tuniform sampler2D glossinessMap;\",\n      \"#endif\"\n    ].join(\"\\n\");\n    const specularMapFragmentChunk = [\n      \"vec3 specularFactor = specular;\",\n      \"#ifdef USE_SPECULARMAP\",\n      \"\tvec4 texelSpecular = texture2D( specularMap, vUv );\",\n      \"\t// reads channel RGB, compatible with a glTF Specular-Glossiness (RGBA) texture\",\n      \"\tspecularFactor *= texelSpecular.rgb;\",\n      \"#endif\"\n    ].join(\"\\n\");\n    const glossinessMapFragmentChunk = [\n      \"float glossinessFactor = glossiness;\",\n      \"#ifdef USE_GLOSSINESSMAP\",\n      \"\tvec4 texelGlossiness = texture2D( glossinessMap, vUv );\",\n      \"\t// reads channel A, compatible with a glTF Specular-Glossiness (RGBA) texture\",\n      \"\tglossinessFactor *= texelGlossiness.a;\",\n      \"#endif\"\n    ].join(\"\\n\");\n    const lightPhysicalFragmentChunk = [\n      \"PhysicalMaterial material;\",\n      \"material.diffuseColor = diffuseColor.rgb * ( 1. - max( specularFactor.r, max( specularFactor.g, specularFactor.b ) ) );\",\n      \"vec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) );\",\n      \"float geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z );\",\n      \"material.roughness = max( 1.0 - glossinessFactor, 0.0525 ); // 0.0525 corresponds to the base mip of a 256 cubemap.\",\n      \"material.roughness += geometryRoughness;\",\n      \"material.roughness = min( material.roughness, 1.0 );\",\n      \"material.specularColor = specularFactor;\"\n    ].join(\"\\n\");\n    const uniforms = {\n      specular: { value: new Color().setHex(16777215) },\n      glossiness: { value: 1 },\n      specularMap: { value: null },\n      glossinessMap: { value: null }\n    };\n    this._extraUniforms = uniforms;\n    this.onBeforeCompile = function(shader) {\n      for (const uniformName in uniforms) {\n        shader.uniforms[uniformName] = uniforms[uniformName];\n      }\n      shader.fragmentShader = shader.fragmentShader.replace(\"uniform float roughness;\", \"uniform vec3 specular;\").replace(\"uniform float metalness;\", \"uniform float glossiness;\").replace(\"#include <roughnessmap_pars_fragment>\", specularMapParsFragmentChunk).replace(\"#include <metalnessmap_pars_fragment>\", glossinessMapParsFragmentChunk).replace(\"#include <roughnessmap_fragment>\", specularMapFragmentChunk).replace(\"#include <metalnessmap_fragment>\", glossinessMapFragmentChunk).replace(\"#include <lights_physical_fragment>\", lightPhysicalFragmentChunk);\n    };\n    Object.defineProperties(this, {\n      specular: {\n        get: function() {\n          return uniforms.specular.value;\n        },\n        set: function(v) {\n          uniforms.specular.value = v;\n        }\n      },\n      specularMap: {\n        get: function() {\n          return uniforms.specularMap.value;\n        },\n        set: function(v) {\n          uniforms.specularMap.value = v;\n          if (v) {\n            this.defines.USE_SPECULARMAP = \"\";\n          } else {\n            delete this.defines.USE_SPECULARMAP;\n          }\n        }\n      },\n      glossiness: {\n        get: function() {\n          return uniforms.glossiness.value;\n        },\n        set: function(v) {\n          uniforms.glossiness.value = v;\n        }\n      },\n      glossinessMap: {\n        get: function() {\n          return uniforms.glossinessMap.value;\n        },\n        set: function(v) {\n          uniforms.glossinessMap.value = v;\n          if (v) {\n            this.defines.USE_GLOSSINESSMAP = \"\";\n            this.defines.USE_UV = \"\";\n          } else {\n            delete this.defines.USE_GLOSSINESSMAP;\n            delete this.defines.USE_UV;\n          }\n        }\n      }\n    });\n    delete this.metalness;\n    delete this.roughness;\n    delete this.metalnessMap;\n    delete this.roughnessMap;\n    this.setValues(params);\n  }\n  copy(source) {\n    super.copy(source);\n    this.specularMap = source.specularMap;\n    this.specular.copy(source.specular);\n    this.glossinessMap = source.glossinessMap;\n    this.glossiness = source.glossiness;\n    delete this.metalness;\n    delete this.roughness;\n    delete this.metalnessMap;\n    delete this.roughnessMap;\n    return this;\n  }\n}\nclass GLTFMaterialsPbrSpecularGlossinessExtension {\n  constructor() {\n    this.name = EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS;\n    this.specularGlossinessParams = [\n      \"color\",\n      \"map\",\n      \"lightMap\",\n      \"lightMapIntensity\",\n      \"aoMap\",\n      \"aoMapIntensity\",\n      \"emissive\",\n      \"emissiveIntensity\",\n      \"emissiveMap\",\n      \"bumpMap\",\n      \"bumpScale\",\n      \"normalMap\",\n      \"normalMapType\",\n      \"displacementMap\",\n      \"displacementScale\",\n      \"displacementBias\",\n      \"specularMap\",\n      \"specular\",\n      \"glossinessMap\",\n      \"glossiness\",\n      \"alphaMap\",\n      \"envMap\",\n      \"envMapIntensity\"\n    ];\n  }\n  getMaterialType() {\n    return GLTFMeshStandardSGMaterial;\n  }\n  extendParams(materialParams, materialDef, parser) {\n    const pbrSpecularGlossiness = materialDef.extensions[this.name];\n    materialParams.color = new Color(1, 1, 1);\n    materialParams.opacity = 1;\n    const pending = [];\n    if (Array.isArray(pbrSpecularGlossiness.diffuseFactor)) {\n      const array = pbrSpecularGlossiness.diffuseFactor;\n      materialParams.color.fromArray(array);\n      materialParams.opacity = array[3];\n    }\n    if (pbrSpecularGlossiness.diffuseTexture !== void 0) {\n      pending.push(parser.assignTexture(materialParams, \"map\", pbrSpecularGlossiness.diffuseTexture, sRGBEncoding));\n    }\n    materialParams.emissive = new Color(0, 0, 0);\n    materialParams.glossiness = pbrSpecularGlossiness.glossinessFactor !== void 0 ? pbrSpecularGlossiness.glossinessFactor : 1;\n    materialParams.specular = new Color(1, 1, 1);\n    if (Array.isArray(pbrSpecularGlossiness.specularFactor)) {\n      materialParams.specular.fromArray(pbrSpecularGlossiness.specularFactor);\n    }\n    if (pbrSpecularGlossiness.specularGlossinessTexture !== void 0) {\n      const specGlossMapDef = pbrSpecularGlossiness.specularGlossinessTexture;\n      pending.push(parser.assignTexture(materialParams, \"glossinessMap\", specGlossMapDef));\n      pending.push(parser.assignTexture(materialParams, \"specularMap\", specGlossMapDef, sRGBEncoding));\n    }\n    return Promise.all(pending);\n  }\n  createMaterial(materialParams) {\n    const material = new GLTFMeshStandardSGMaterial(materialParams);\n    material.fog = true;\n    material.color = materialParams.color;\n    material.map = materialParams.map === void 0 ? null : materialParams.map;\n    material.lightMap = null;\n    material.lightMapIntensity = 1;\n    material.aoMap = materialParams.aoMap === void 0 ? null : materialParams.aoMap;\n    material.aoMapIntensity = 1;\n    material.emissive = materialParams.emissive;\n    material.emissiveIntensity = materialParams.emissiveIntensity === void 0 ? 1 : materialParams.emissiveIntensity;\n    material.emissiveMap = materialParams.emissiveMap === void 0 ? null : materialParams.emissiveMap;\n    material.bumpMap = materialParams.bumpMap === void 0 ? null : materialParams.bumpMap;\n    material.bumpScale = 1;\n    material.normalMap = materialParams.normalMap === void 0 ? null : materialParams.normalMap;\n    material.normalMapType = TangentSpaceNormalMap;\n    if (materialParams.normalScale)\n      material.normalScale = materialParams.normalScale;\n    material.displacementMap = null;\n    material.displacementScale = 1;\n    material.displacementBias = 0;\n    material.specularMap = materialParams.specularMap === void 0 ? null : materialParams.specularMap;\n    material.specular = materialParams.specular;\n    material.glossinessMap = materialParams.glossinessMap === void 0 ? null : materialParams.glossinessMap;\n    material.glossiness = materialParams.glossiness;\n    material.alphaMap = null;\n    material.envMap = materialParams.envMap === void 0 ? null : materialParams.envMap;\n    material.envMapIntensity = 1;\n    return material;\n  }\n}\nclass GLTFMeshQuantizationExtension {\n  constructor() {\n    this.name = EXTENSIONS.KHR_MESH_QUANTIZATION;\n  }\n}\nclass GLTFCubicSplineInterpolant extends Interpolant {\n  constructor(parameterPositions, sampleValues, sampleSize, resultBuffer) {\n    super(parameterPositions, sampleValues, sampleSize, resultBuffer);\n  }\n  copySampleValue_(index2) {\n    const result = this.resultBuffer, values = this.sampleValues, valueSize = this.valueSize, offset = index2 * valueSize * 3 + valueSize;\n    for (let i = 0; i !== valueSize; i++) {\n      result[i] = values[offset + i];\n    }\n    return result;\n  }\n  interpolate_(i1, t0, t, t1) {\n    const result = this.resultBuffer;\n    const values = this.sampleValues;\n    const stride = this.valueSize;\n    const stride2 = stride * 2;\n    const stride3 = stride * 3;\n    const td2 = t1 - t0;\n    const p = (t - t0) / td2;\n    const pp = p * p;\n    const ppp = pp * p;\n    const offset1 = i1 * stride3;\n    const offset0 = offset1 - stride3;\n    const s2 = -2 * ppp + 3 * pp;\n    const s3 = ppp - pp;\n    const s0 = 1 - s2;\n    const s1 = s3 - pp + p;\n    for (let i = 0; i !== stride; i++) {\n      const p0 = values[offset0 + i + stride];\n      const m0 = values[offset0 + i + stride2] * td2;\n      const p1 = values[offset1 + i + stride];\n      const m1 = values[offset1 + i] * td2;\n      result[i] = s0 * p0 + s1 * m0 + s2 * p1 + s3 * m1;\n    }\n    return result;\n  }\n}\nconst _q = new Quaternion();\nclass GLTFCubicSplineQuaternionInterpolant extends GLTFCubicSplineInterpolant {\n  interpolate_(i1, t0, t, t1) {\n    const result = super.interpolate_(i1, t0, t, t1);\n    _q.fromArray(result).normalize().toArray(result);\n    return result;\n  }\n}\nconst WEBGL_CONSTANTS = {\n  FLOAT: 5126,\n  FLOAT_MAT3: 35675,\n  FLOAT_MAT4: 35676,\n  FLOAT_VEC2: 35664,\n  FLOAT_VEC3: 35665,\n  FLOAT_VEC4: 35666,\n  LINEAR: 9729,\n  REPEAT: 10497,\n  SAMPLER_2D: 35678,\n  POINTS: 0,\n  LINES: 1,\n  LINE_LOOP: 2,\n  LINE_STRIP: 3,\n  TRIANGLES: 4,\n  TRIANGLE_STRIP: 5,\n  TRIANGLE_FAN: 6,\n  UNSIGNED_BYTE: 5121,\n  UNSIGNED_SHORT: 5123\n};\nconst WEBGL_COMPONENT_TYPES = {\n  5120: Int8Array,\n  5121: Uint8Array,\n  5122: Int16Array,\n  5123: Uint16Array,\n  5125: Uint32Array,\n  5126: Float32Array\n};\nconst WEBGL_FILTERS = {\n  9728: NearestFilter,\n  9729: LinearFilter,\n  9984: NearestMipmapNearestFilter,\n  9985: LinearMipmapNearestFilter,\n  9986: NearestMipmapLinearFilter,\n  9987: LinearMipmapLinearFilter\n};\nconst WEBGL_WRAPPINGS = {\n  33071: ClampToEdgeWrapping,\n  33648: MirroredRepeatWrapping,\n  10497: RepeatWrapping\n};\nconst WEBGL_TYPE_SIZES = {\n  \"SCALAR\": 1,\n  \"VEC2\": 2,\n  \"VEC3\": 3,\n  \"VEC4\": 4,\n  \"MAT2\": 4,\n  \"MAT3\": 9,\n  \"MAT4\": 16\n};\nconst ATTRIBUTES = {\n  POSITION: \"position\",\n  NORMAL: \"normal\",\n  TANGENT: \"tangent\",\n  TEXCOORD_0: \"uv\",\n  TEXCOORD_1: \"uv2\",\n  COLOR_0: \"color\",\n  WEIGHTS_0: \"skinWeight\",\n  JOINTS_0: \"skinIndex\"\n};\nconst PATH_PROPERTIES = {\n  scale: \"scale\",\n  translation: \"position\",\n  rotation: \"quaternion\",\n  weights: \"morphTargetInfluences\"\n};\nconst INTERPOLATION = {\n  CUBICSPLINE: void 0,\n  LINEAR: InterpolateLinear,\n  STEP: InterpolateDiscrete\n};\nconst ALPHA_MODES = {\n  OPAQUE: \"OPAQUE\",\n  MASK: \"MASK\",\n  BLEND: \"BLEND\"\n};\nfunction createDefaultMaterial(cache) {\n  if (cache[\"DefaultMaterial\"] === void 0) {\n    cache[\"DefaultMaterial\"] = new MeshStandardMaterial({\n      color: 16777215,\n      emissive: 0,\n      metalness: 1,\n      roughness: 1,\n      transparent: false,\n      depthTest: true,\n      side: FrontSide\n    });\n  }\n  return cache[\"DefaultMaterial\"];\n}\nfunction addUnknownExtensionsToUserData(knownExtensions, object, objectDef) {\n  for (const name in objectDef.extensions) {\n    if (knownExtensions[name] === void 0) {\n      object.userData.gltfExtensions = object.userData.gltfExtensions || {};\n      object.userData.gltfExtensions[name] = objectDef.extensions[name];\n    }\n  }\n}\nfunction assignExtrasToUserData(object, gltfDef) {\n  if (gltfDef.extras !== void 0) {\n    if (typeof gltfDef.extras === \"object\") {\n      Object.assign(object.userData, gltfDef.extras);\n    } else {\n      console.warn(\"THREE.GLTFLoader: Ignoring primitive type .extras, \" + gltfDef.extras);\n    }\n  }\n}\nfunction addMorphTargets(geometry, targets, parser) {\n  let hasMorphPosition = false;\n  let hasMorphNormal = false;\n  let hasMorphColor = false;\n  for (let i = 0, il = targets.length; i < il; i++) {\n    const target = targets[i];\n    if (target.POSITION !== void 0)\n      hasMorphPosition = true;\n    if (target.NORMAL !== void 0)\n      hasMorphNormal = true;\n    if (target.COLOR_0 !== void 0)\n      hasMorphColor = true;\n    if (hasMorphPosition && hasMorphNormal && hasMorphColor)\n      break;\n  }\n  if (!hasMorphPosition && !hasMorphNormal && !hasMorphColor)\n    return Promise.resolve(geometry);\n  const pendingPositionAccessors = [];\n  const pendingNormalAccessors = [];\n  const pendingColorAccessors = [];\n  for (let i = 0, il = targets.length; i < il; i++) {\n    const target = targets[i];\n    if (hasMorphPosition) {\n      const pendingAccessor = target.POSITION !== void 0 ? parser.getDependency(\"accessor\", target.POSITION) : geometry.attributes.position;\n      pendingPositionAccessors.push(pendingAccessor);\n    }\n    if (hasMorphNormal) {\n      const pendingAccessor = target.NORMAL !== void 0 ? parser.getDependency(\"accessor\", target.NORMAL) : geometry.attributes.normal;\n      pendingNormalAccessors.push(pendingAccessor);\n    }\n    if (hasMorphColor) {\n      const pendingAccessor = target.COLOR_0 !== void 0 ? parser.getDependency(\"accessor\", target.COLOR_0) : geometry.attributes.color;\n      pendingColorAccessors.push(pendingAccessor);\n    }\n  }\n  return Promise.all([\n    Promise.all(pendingPositionAccessors),\n    Promise.all(pendingNormalAccessors),\n    Promise.all(pendingColorAccessors)\n  ]).then(function(accessors) {\n    const morphPositions = accessors[0];\n    const morphNormals = accessors[1];\n    const morphColors = accessors[2];\n    if (hasMorphPosition)\n      geometry.morphAttributes.position = morphPositions;\n    if (hasMorphNormal)\n      geometry.morphAttributes.normal = morphNormals;\n    if (hasMorphColor)\n      geometry.morphAttributes.color = morphColors;\n    geometry.morphTargetsRelative = true;\n    return geometry;\n  });\n}\nfunction updateMorphTargets(mesh, meshDef) {\n  mesh.updateMorphTargets();\n  if (meshDef.weights !== void 0) {\n    for (let i = 0, il = meshDef.weights.length; i < il; i++) {\n      mesh.morphTargetInfluences[i] = meshDef.weights[i];\n    }\n  }\n  if (meshDef.extras && Array.isArray(meshDef.extras.targetNames)) {\n    const targetNames = meshDef.extras.targetNames;\n    if (mesh.morphTargetInfluences.length === targetNames.length) {\n      mesh.morphTargetDictionary = {};\n      for (let i = 0, il = targetNames.length; i < il; i++) {\n        mesh.morphTargetDictionary[targetNames[i]] = i;\n      }\n    } else {\n      console.warn(\"THREE.GLTFLoader: Invalid extras.targetNames length. Ignoring names.\");\n    }\n  }\n}\nfunction createPrimitiveKey(primitiveDef) {\n  const dracoExtension = primitiveDef.extensions && primitiveDef.extensions[EXTENSIONS.KHR_DRACO_MESH_COMPRESSION];\n  let geometryKey;\n  if (dracoExtension) {\n    geometryKey = \"draco:\" + dracoExtension.bufferView + \":\" + dracoExtension.indices + \":\" + createAttributesKey(dracoExtension.attributes);\n  } else {\n    geometryKey = primitiveDef.indices + \":\" + createAttributesKey(primitiveDef.attributes) + \":\" + primitiveDef.mode;\n  }\n  return geometryKey;\n}\nfunction createAttributesKey(attributes) {\n  let attributesKey = \"\";\n  const keys = Object.keys(attributes).sort();\n  for (let i = 0, il = keys.length; i < il; i++) {\n    attributesKey += keys[i] + \":\" + attributes[keys[i]] + \";\";\n  }\n  return attributesKey;\n}\nfunction getNormalizedComponentScale(constructor) {\n  switch (constructor) {\n    case Int8Array:\n      return 1 / 127;\n    case Uint8Array:\n      return 1 / 255;\n    case Int16Array:\n      return 1 / 32767;\n    case Uint16Array:\n      return 1 / 65535;\n    default:\n      throw new Error(\"THREE.GLTFLoader: Unsupported normalized accessor component type.\");\n  }\n}\nfunction getImageURIMimeType(uri) {\n  if (uri.search(/\\.jpe?g($|\\?)/i) > 0 || uri.search(/^data\\:image\\/jpeg/) === 0)\n    return \"image/jpeg\";\n  if (uri.search(/\\.webp($|\\?)/i) > 0 || uri.search(/^data\\:image\\/webp/) === 0)\n    return \"image/webp\";\n  return \"image/png\";\n}\nclass GLTFParser {\n  constructor(json = {}, options = {}) {\n    this.json = json;\n    this.extensions = {};\n    this.plugins = {};\n    this.options = options;\n    this.cache = new GLTFRegistry();\n    this.associations = /* @__PURE__ */ new Map();\n    this.primitiveCache = {};\n    this.meshCache = { refs: {}, uses: {} };\n    this.cameraCache = { refs: {}, uses: {} };\n    this.lightCache = { refs: {}, uses: {} };\n    this.sourceCache = {};\n    this.textureCache = {};\n    this.nodeNamesUsed = {};\n    const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent) === true;\n    const isFirefox = navigator.userAgent.indexOf(\"Firefox\") > -1;\n    const firefoxVersion = isFirefox ? navigator.userAgent.match(/Firefox\\/([0-9]+)\\./)[1] : -1;\n    if (typeof createImageBitmap === \"undefined\" || isSafari || isFirefox && firefoxVersion < 98) {\n      this.textureLoader = new TextureLoader(this.options.manager);\n    } else {\n      this.textureLoader = new ImageBitmapLoader(this.options.manager);\n    }\n    this.textureLoader.setCrossOrigin(this.options.crossOrigin);\n    this.textureLoader.setRequestHeader(this.options.requestHeader);\n    this.fileLoader = new FileLoader(this.options.manager);\n    this.fileLoader.setResponseType(\"arraybuffer\");\n    if (this.options.crossOrigin === \"use-credentials\") {\n      this.fileLoader.setWithCredentials(true);\n    }\n  }\n  setExtensions(extensions) {\n    this.extensions = extensions;\n  }\n  setPlugins(plugins) {\n    this.plugins = plugins;\n  }\n  parse(onLoad, onError) {\n    const parser = this;\n    const json = this.json;\n    const extensions = this.extensions;\n    this.cache.removeAll();\n    this._invokeAll(function(ext) {\n      return ext._markDefs && ext._markDefs();\n    });\n    Promise.all(this._invokeAll(function(ext) {\n      return ext.beforeRoot && ext.beforeRoot();\n    })).then(function() {\n      return Promise.all([\n        parser.getDependencies(\"scene\"),\n        parser.getDependencies(\"animation\"),\n        parser.getDependencies(\"camera\")\n      ]);\n    }).then(function(dependencies) {\n      const result = {\n        scene: dependencies[0][json.scene || 0],\n        scenes: dependencies[0],\n        animations: dependencies[1],\n        cameras: dependencies[2],\n        asset: json.asset,\n        parser,\n        userData: {}\n      };\n      addUnknownExtensionsToUserData(extensions, result, json);\n      assignExtrasToUserData(result, json);\n      Promise.all(parser._invokeAll(function(ext) {\n        return ext.afterRoot && ext.afterRoot(result);\n      })).then(function() {\n        onLoad(result);\n      });\n    }).catch(onError);\n  }\n  _markDefs() {\n    const nodeDefs = this.json.nodes || [];\n    const skinDefs = this.json.skins || [];\n    const meshDefs = this.json.meshes || [];\n    for (let skinIndex = 0, skinLength = skinDefs.length; skinIndex < skinLength; skinIndex++) {\n      const joints = skinDefs[skinIndex].joints;\n      for (let i = 0, il = joints.length; i < il; i++) {\n        nodeDefs[joints[i]].isBone = true;\n      }\n    }\n    for (let nodeIndex = 0, nodeLength = nodeDefs.length; nodeIndex < nodeLength; nodeIndex++) {\n      const nodeDef = nodeDefs[nodeIndex];\n      if (nodeDef.mesh !== void 0) {\n        this._addNodeRef(this.meshCache, nodeDef.mesh);\n        if (nodeDef.skin !== void 0) {\n          meshDefs[nodeDef.mesh].isSkinnedMesh = true;\n        }\n      }\n      if (nodeDef.camera !== void 0) {\n        this._addNodeRef(this.cameraCache, nodeDef.camera);\n      }\n    }\n  }\n  _addNodeRef(cache, index2) {\n    if (index2 === void 0)\n      return;\n    if (cache.refs[index2] === void 0) {\n      cache.refs[index2] = cache.uses[index2] = 0;\n    }\n    cache.refs[index2]++;\n  }\n  _getNodeRef(cache, index2, object) {\n    if (cache.refs[index2] <= 1)\n      return object;\n    const ref2 = object.clone();\n    const updateMappings = (original, clone) => {\n      const mappings = this.associations.get(original);\n      if (mappings != null) {\n        this.associations.set(clone, mappings);\n      }\n      for (const [i, child] of original.children.entries()) {\n        updateMappings(child, clone.children[i]);\n      }\n    };\n    updateMappings(object, ref2);\n    ref2.name += \"_instance_\" + cache.uses[index2]++;\n    return ref2;\n  }\n  _invokeOne(func) {\n    const extensions = Object.values(this.plugins);\n    extensions.push(this);\n    for (let i = 0; i < extensions.length; i++) {\n      const result = func(extensions[i]);\n      if (result)\n        return result;\n    }\n    return null;\n  }\n  _invokeAll(func) {\n    const extensions = Object.values(this.plugins);\n    extensions.unshift(this);\n    const pending = [];\n    for (let i = 0; i < extensions.length; i++) {\n      const result = func(extensions[i]);\n      if (result)\n        pending.push(result);\n    }\n    return pending;\n  }\n  getDependency(type, index2) {\n    const cacheKey = type + \":\" + index2;\n    let dependency = this.cache.get(cacheKey);\n    if (!dependency) {\n      switch (type) {\n        case \"scene\":\n          dependency = this.loadScene(index2);\n          break;\n        case \"node\":\n          dependency = this.loadNode(index2);\n          break;\n        case \"mesh\":\n          dependency = this._invokeOne(function(ext) {\n            return ext.loadMesh && ext.loadMesh(index2);\n          });\n          break;\n        case \"accessor\":\n          dependency = this.loadAccessor(index2);\n          break;\n        case \"bufferView\":\n          dependency = this._invokeOne(function(ext) {\n            return ext.loadBufferView && ext.loadBufferView(index2);\n          });\n          break;\n        case \"buffer\":\n          dependency = this.loadBuffer(index2);\n          break;\n        case \"material\":\n          dependency = this._invokeOne(function(ext) {\n            return ext.loadMaterial && ext.loadMaterial(index2);\n          });\n          break;\n        case \"texture\":\n          dependency = this._invokeOne(function(ext) {\n            return ext.loadTexture && ext.loadTexture(index2);\n          });\n          break;\n        case \"skin\":\n          dependency = this.loadSkin(index2);\n          break;\n        case \"animation\":\n          dependency = this._invokeOne(function(ext) {\n            return ext.loadAnimation && ext.loadAnimation(index2);\n          });\n          break;\n        case \"camera\":\n          dependency = this.loadCamera(index2);\n          break;\n        default:\n          throw new Error(\"Unknown type: \" + type);\n      }\n      this.cache.add(cacheKey, dependency);\n    }\n    return dependency;\n  }\n  getDependencies(type) {\n    let dependencies = this.cache.get(type);\n    if (!dependencies) {\n      const parser = this;\n      const defs = this.json[type + (type === \"mesh\" ? \"es\" : \"s\")] || [];\n      dependencies = Promise.all(defs.map(function(def, index2) {\n        return parser.getDependency(type, index2);\n      }));\n      this.cache.add(type, dependencies);\n    }\n    return dependencies;\n  }\n  loadBuffer(bufferIndex) {\n    const bufferDef = this.json.buffers[bufferIndex];\n    const loader = this.fileLoader;\n    if (bufferDef.type && bufferDef.type !== \"arraybuffer\") {\n      throw new Error(\"THREE.GLTFLoader: \" + bufferDef.type + \" buffer type is not supported.\");\n    }\n    if (bufferDef.uri === void 0 && bufferIndex === 0) {\n      return Promise.resolve(this.extensions[EXTENSIONS.KHR_BINARY_GLTF].body);\n    }\n    const options = this.options;\n    return new Promise(function(resolve, reject) {\n      loader.load(LoaderUtils.resolveURL(bufferDef.uri, options.path), resolve, void 0, function() {\n        reject(new Error('THREE.GLTFLoader: Failed to load buffer \"' + bufferDef.uri + '\".'));\n      });\n    });\n  }\n  loadBufferView(bufferViewIndex) {\n    const bufferViewDef = this.json.bufferViews[bufferViewIndex];\n    return this.getDependency(\"buffer\", bufferViewDef.buffer).then(function(buffer) {\n      const byteLength = bufferViewDef.byteLength || 0;\n      const byteOffset = bufferViewDef.byteOffset || 0;\n      return buffer.slice(byteOffset, byteOffset + byteLength);\n    });\n  }\n  loadAccessor(accessorIndex) {\n    const parser = this;\n    const json = this.json;\n    const accessorDef = this.json.accessors[accessorIndex];\n    if (accessorDef.bufferView === void 0 && accessorDef.sparse === void 0) {\n      return Promise.resolve(null);\n    }\n    const pendingBufferViews = [];\n    if (accessorDef.bufferView !== void 0) {\n      pendingBufferViews.push(this.getDependency(\"bufferView\", accessorDef.bufferView));\n    } else {\n      pendingBufferViews.push(null);\n    }\n    if (accessorDef.sparse !== void 0) {\n      pendingBufferViews.push(this.getDependency(\"bufferView\", accessorDef.sparse.indices.bufferView));\n      pendingBufferViews.push(this.getDependency(\"bufferView\", accessorDef.sparse.values.bufferView));\n    }\n    return Promise.all(pendingBufferViews).then(function(bufferViews) {\n      const bufferView = bufferViews[0];\n      const itemSize = WEBGL_TYPE_SIZES[accessorDef.type];\n      const TypedArray = WEBGL_COMPONENT_TYPES[accessorDef.componentType];\n      const elementBytes = TypedArray.BYTES_PER_ELEMENT;\n      const itemBytes = elementBytes * itemSize;\n      const byteOffset = accessorDef.byteOffset || 0;\n      const byteStride = accessorDef.bufferView !== void 0 ? json.bufferViews[accessorDef.bufferView].byteStride : void 0;\n      const normalized = accessorDef.normalized === true;\n      let array, bufferAttribute;\n      if (byteStride && byteStride !== itemBytes) {\n        const ibSlice = Math.floor(byteOffset / byteStride);\n        const ibCacheKey = \"InterleavedBuffer:\" + accessorDef.bufferView + \":\" + accessorDef.componentType + \":\" + ibSlice + \":\" + accessorDef.count;\n        let ib = parser.cache.get(ibCacheKey);\n        if (!ib) {\n          array = new TypedArray(bufferView, ibSlice * byteStride, accessorDef.count * byteStride / elementBytes);\n          ib = new InterleavedBuffer(array, byteStride / elementBytes);\n          parser.cache.add(ibCacheKey, ib);\n        }\n        bufferAttribute = new InterleavedBufferAttribute(ib, itemSize, byteOffset % byteStride / elementBytes, normalized);\n      } else {\n        if (bufferView === null) {\n          array = new TypedArray(accessorDef.count * itemSize);\n        } else {\n          array = new TypedArray(bufferView, byteOffset, accessorDef.count * itemSize);\n        }\n        bufferAttribute = new BufferAttribute(array, itemSize, normalized);\n      }\n      if (accessorDef.sparse !== void 0) {\n        const itemSizeIndices = WEBGL_TYPE_SIZES.SCALAR;\n        const TypedArrayIndices = WEBGL_COMPONENT_TYPES[accessorDef.sparse.indices.componentType];\n        const byteOffsetIndices = accessorDef.sparse.indices.byteOffset || 0;\n        const byteOffsetValues = accessorDef.sparse.values.byteOffset || 0;\n        const sparseIndices = new TypedArrayIndices(bufferViews[1], byteOffsetIndices, accessorDef.sparse.count * itemSizeIndices);\n        const sparseValues = new TypedArray(bufferViews[2], byteOffsetValues, accessorDef.sparse.count * itemSize);\n        if (bufferView !== null) {\n          bufferAttribute = new BufferAttribute(bufferAttribute.array.slice(), bufferAttribute.itemSize, bufferAttribute.normalized);\n        }\n        for (let i = 0, il = sparseIndices.length; i < il; i++) {\n          const index2 = sparseIndices[i];\n          bufferAttribute.setX(index2, sparseValues[i * itemSize]);\n          if (itemSize >= 2)\n            bufferAttribute.setY(index2, sparseValues[i * itemSize + 1]);\n          if (itemSize >= 3)\n            bufferAttribute.setZ(index2, sparseValues[i * itemSize + 2]);\n          if (itemSize >= 4)\n            bufferAttribute.setW(index2, sparseValues[i * itemSize + 3]);\n          if (itemSize >= 5)\n            throw new Error(\"THREE.GLTFLoader: Unsupported itemSize in sparse BufferAttribute.\");\n        }\n      }\n      return bufferAttribute;\n    });\n  }\n  loadTexture(textureIndex) {\n    const json = this.json;\n    const options = this.options;\n    const textureDef = json.textures[textureIndex];\n    const sourceIndex = textureDef.source;\n    const sourceDef = json.images[sourceIndex];\n    let loader = this.textureLoader;\n    if (sourceDef.uri) {\n      const handler = options.manager.getHandler(sourceDef.uri);\n      if (handler !== null)\n        loader = handler;\n    }\n    return this.loadTextureImage(textureIndex, sourceIndex, loader);\n  }\n  loadTextureImage(textureIndex, sourceIndex, loader) {\n    const parser = this;\n    const json = this.json;\n    const textureDef = json.textures[textureIndex];\n    const sourceDef = json.images[sourceIndex];\n    const cacheKey = (sourceDef.uri || sourceDef.bufferView) + \":\" + textureDef.sampler;\n    if (this.textureCache[cacheKey]) {\n      return this.textureCache[cacheKey];\n    }\n    const promise = this.loadImageSource(sourceIndex, loader).then(function(texture) {\n      texture.flipY = false;\n      if (textureDef.name)\n        texture.name = textureDef.name;\n      const samplers = json.samplers || {};\n      const sampler = samplers[textureDef.sampler] || {};\n      texture.magFilter = WEBGL_FILTERS[sampler.magFilter] || LinearFilter;\n      texture.minFilter = WEBGL_FILTERS[sampler.minFilter] || LinearMipmapLinearFilter;\n      texture.wrapS = WEBGL_WRAPPINGS[sampler.wrapS] || RepeatWrapping;\n      texture.wrapT = WEBGL_WRAPPINGS[sampler.wrapT] || RepeatWrapping;\n      parser.associations.set(texture, { textures: textureIndex });\n      return texture;\n    }).catch(function() {\n      return null;\n    });\n    this.textureCache[cacheKey] = promise;\n    return promise;\n  }\n  loadImageSource(sourceIndex, loader) {\n    const parser = this;\n    const json = this.json;\n    const options = this.options;\n    if (this.sourceCache[sourceIndex] !== void 0) {\n      return this.sourceCache[sourceIndex].then((texture) => texture.clone());\n    }\n    const sourceDef = json.images[sourceIndex];\n    const URL2 = self.URL || self.webkitURL;\n    let sourceURI = sourceDef.uri || \"\";\n    let isObjectURL = false;\n    if (sourceDef.bufferView !== void 0) {\n      sourceURI = parser.getDependency(\"bufferView\", sourceDef.bufferView).then(function(bufferView) {\n        isObjectURL = true;\n        const blob = new Blob([bufferView], { type: sourceDef.mimeType });\n        sourceURI = URL2.createObjectURL(blob);\n        return sourceURI;\n      });\n    } else if (sourceDef.uri === void 0) {\n      throw new Error(\"THREE.GLTFLoader: Image \" + sourceIndex + \" is missing URI and bufferView\");\n    }\n    const promise = Promise.resolve(sourceURI).then(function(sourceURI2) {\n      return new Promise(function(resolve, reject) {\n        let onLoad = resolve;\n        if (loader.isImageBitmapLoader === true) {\n          onLoad = function(imageBitmap) {\n            const texture = new Texture(imageBitmap);\n            texture.needsUpdate = true;\n            resolve(texture);\n          };\n        }\n        loader.load(LoaderUtils.resolveURL(sourceURI2, options.path), onLoad, void 0, reject);\n      });\n    }).then(function(texture) {\n      if (isObjectURL === true) {\n        URL2.revokeObjectURL(sourceURI);\n      }\n      texture.userData.mimeType = sourceDef.mimeType || getImageURIMimeType(sourceDef.uri);\n      return texture;\n    }).catch(function(error) {\n      console.error(\"THREE.GLTFLoader: Couldn't load texture\", sourceURI);\n      throw error;\n    });\n    this.sourceCache[sourceIndex] = promise;\n    return promise;\n  }\n  assignTexture(materialParams, mapName, mapDef, encoding) {\n    const parser = this;\n    return this.getDependency(\"texture\", mapDef.index).then(function(texture) {\n      if (mapDef.texCoord !== void 0 && mapDef.texCoord != 0 && !(mapName === \"aoMap\" && mapDef.texCoord == 1)) {\n        console.warn(\"THREE.GLTFLoader: Custom UV set \" + mapDef.texCoord + \" for texture \" + mapName + \" not yet supported.\");\n      }\n      if (parser.extensions[EXTENSIONS.KHR_TEXTURE_TRANSFORM]) {\n        const transform = mapDef.extensions !== void 0 ? mapDef.extensions[EXTENSIONS.KHR_TEXTURE_TRANSFORM] : void 0;\n        if (transform) {\n          const gltfReference = parser.associations.get(texture);\n          texture = parser.extensions[EXTENSIONS.KHR_TEXTURE_TRANSFORM].extendTexture(texture, transform);\n          parser.associations.set(texture, gltfReference);\n        }\n      }\n      if (encoding !== void 0) {\n        texture.encoding = encoding;\n      }\n      materialParams[mapName] = texture;\n      return texture;\n    });\n  }\n  assignFinalMaterial(mesh) {\n    const geometry = mesh.geometry;\n    let material = mesh.material;\n    const useDerivativeTangents = geometry.attributes.tangent === void 0;\n    const useVertexColors = geometry.attributes.color !== void 0;\n    const useFlatShading = geometry.attributes.normal === void 0;\n    if (mesh.isPoints) {\n      const cacheKey = \"PointsMaterial:\" + material.uuid;\n      let pointsMaterial = this.cache.get(cacheKey);\n      if (!pointsMaterial) {\n        pointsMaterial = new PointsMaterial();\n        Material.prototype.copy.call(pointsMaterial, material);\n        pointsMaterial.color.copy(material.color);\n        pointsMaterial.map = material.map;\n        pointsMaterial.sizeAttenuation = false;\n        this.cache.add(cacheKey, pointsMaterial);\n      }\n      material = pointsMaterial;\n    } else if (mesh.isLine) {\n      const cacheKey = \"LineBasicMaterial:\" + material.uuid;\n      let lineMaterial = this.cache.get(cacheKey);\n      if (!lineMaterial) {\n        lineMaterial = new LineBasicMaterial();\n        Material.prototype.copy.call(lineMaterial, material);\n        lineMaterial.color.copy(material.color);\n        this.cache.add(cacheKey, lineMaterial);\n      }\n      material = lineMaterial;\n    }\n    if (useDerivativeTangents || useVertexColors || useFlatShading) {\n      let cacheKey = \"ClonedMaterial:\" + material.uuid + \":\";\n      if (material.isGLTFSpecularGlossinessMaterial)\n        cacheKey += \"specular-glossiness:\";\n      if (useDerivativeTangents)\n        cacheKey += \"derivative-tangents:\";\n      if (useVertexColors)\n        cacheKey += \"vertex-colors:\";\n      if (useFlatShading)\n        cacheKey += \"flat-shading:\";\n      let cachedMaterial = this.cache.get(cacheKey);\n      if (!cachedMaterial) {\n        cachedMaterial = material.clone();\n        if (useVertexColors)\n          cachedMaterial.vertexColors = true;\n        if (useFlatShading)\n          cachedMaterial.flatShading = true;\n        if (useDerivativeTangents) {\n          if (cachedMaterial.normalScale)\n            cachedMaterial.normalScale.y *= -1;\n          if (cachedMaterial.clearcoatNormalScale)\n            cachedMaterial.clearcoatNormalScale.y *= -1;\n        }\n        this.cache.add(cacheKey, cachedMaterial);\n        this.associations.set(cachedMaterial, this.associations.get(material));\n      }\n      material = cachedMaterial;\n    }\n    if (material.aoMap && geometry.attributes.uv2 === void 0 && geometry.attributes.uv !== void 0) {\n      geometry.setAttribute(\"uv2\", geometry.attributes.uv);\n    }\n    mesh.material = material;\n  }\n  getMaterialType() {\n    return MeshStandardMaterial;\n  }\n  loadMaterial(materialIndex) {\n    const parser = this;\n    const json = this.json;\n    const extensions = this.extensions;\n    const materialDef = json.materials[materialIndex];\n    let materialType;\n    const materialParams = {};\n    const materialExtensions = materialDef.extensions || {};\n    const pending = [];\n    if (materialExtensions[EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS]) {\n      const sgExtension = extensions[EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS];\n      materialType = sgExtension.getMaterialType();\n      pending.push(sgExtension.extendParams(materialParams, materialDef, parser));\n    } else if (materialExtensions[EXTENSIONS.KHR_MATERIALS_UNLIT]) {\n      const kmuExtension = extensions[EXTENSIONS.KHR_MATERIALS_UNLIT];\n      materialType = kmuExtension.getMaterialType();\n      pending.push(kmuExtension.extendParams(materialParams, materialDef, parser));\n    } else {\n      const metallicRoughness = materialDef.pbrMetallicRoughness || {};\n      materialParams.color = new Color(1, 1, 1);\n      materialParams.opacity = 1;\n      if (Array.isArray(metallicRoughness.baseColorFactor)) {\n        const array = metallicRoughness.baseColorFactor;\n        materialParams.color.fromArray(array);\n        materialParams.opacity = array[3];\n      }\n      if (metallicRoughness.baseColorTexture !== void 0) {\n        pending.push(parser.assignTexture(materialParams, \"map\", metallicRoughness.baseColorTexture, sRGBEncoding));\n      }\n      materialParams.metalness = metallicRoughness.metallicFactor !== void 0 ? metallicRoughness.metallicFactor : 1;\n      materialParams.roughness = metallicRoughness.roughnessFactor !== void 0 ? metallicRoughness.roughnessFactor : 1;\n      if (metallicRoughness.metallicRoughnessTexture !== void 0) {\n        pending.push(parser.assignTexture(materialParams, \"metalnessMap\", metallicRoughness.metallicRoughnessTexture));\n        pending.push(parser.assignTexture(materialParams, \"roughnessMap\", metallicRoughness.metallicRoughnessTexture));\n      }\n      materialType = this._invokeOne(function(ext) {\n        return ext.getMaterialType && ext.getMaterialType(materialIndex);\n      });\n      pending.push(Promise.all(this._invokeAll(function(ext) {\n        return ext.extendMaterialParams && ext.extendMaterialParams(materialIndex, materialParams);\n      })));\n    }\n    if (materialDef.doubleSided === true) {\n      materialParams.side = DoubleSide;\n    }\n    const alphaMode = materialDef.alphaMode || ALPHA_MODES.OPAQUE;\n    if (alphaMode === ALPHA_MODES.BLEND) {\n      materialParams.transparent = true;\n      materialParams.depthWrite = false;\n    } else {\n      materialParams.transparent = false;\n      if (alphaMode === ALPHA_MODES.MASK) {\n        materialParams.alphaTest = materialDef.alphaCutoff !== void 0 ? materialDef.alphaCutoff : 0.5;\n      }\n    }\n    if (materialDef.normalTexture !== void 0 && materialType !== MeshBasicMaterial) {\n      pending.push(parser.assignTexture(materialParams, \"normalMap\", materialDef.normalTexture));\n      materialParams.normalScale = new Vector2(1, 1);\n      if (materialDef.normalTexture.scale !== void 0) {\n        const scale = materialDef.normalTexture.scale;\n        materialParams.normalScale.set(scale, scale);\n      }\n    }\n    if (materialDef.occlusionTexture !== void 0 && materialType !== MeshBasicMaterial) {\n      pending.push(parser.assignTexture(materialParams, \"aoMap\", materialDef.occlusionTexture));\n      if (materialDef.occlusionTexture.strength !== void 0) {\n        materialParams.aoMapIntensity = materialDef.occlusionTexture.strength;\n      }\n    }\n    if (materialDef.emissiveFactor !== void 0 && materialType !== MeshBasicMaterial) {\n      materialParams.emissive = new Color().fromArray(materialDef.emissiveFactor);\n    }\n    if (materialDef.emissiveTexture !== void 0 && materialType !== MeshBasicMaterial) {\n      pending.push(parser.assignTexture(materialParams, \"emissiveMap\", materialDef.emissiveTexture, sRGBEncoding));\n    }\n    return Promise.all(pending).then(function() {\n      let material;\n      if (materialType === GLTFMeshStandardSGMaterial) {\n        material = extensions[EXTENSIONS.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS].createMaterial(materialParams);\n      } else {\n        material = new materialType(materialParams);\n      }\n      if (materialDef.name)\n        material.name = materialDef.name;\n      assignExtrasToUserData(material, materialDef);\n      parser.associations.set(material, { materials: materialIndex });\n      if (materialDef.extensions)\n        addUnknownExtensionsToUserData(extensions, material, materialDef);\n      return material;\n    });\n  }\n  createUniqueName(originalName) {\n    const sanitizedName = PropertyBinding.sanitizeNodeName(originalName || \"\");\n    let name = sanitizedName;\n    for (let i = 1; this.nodeNamesUsed[name]; ++i) {\n      name = sanitizedName + \"_\" + i;\n    }\n    this.nodeNamesUsed[name] = true;\n    return name;\n  }\n  loadGeometries(primitives) {\n    const parser = this;\n    const extensions = this.extensions;\n    const cache = this.primitiveCache;\n    function createDracoPrimitive(primitive) {\n      return extensions[EXTENSIONS.KHR_DRACO_MESH_COMPRESSION].decodePrimitive(primitive, parser).then(function(geometry) {\n        return addPrimitiveAttributes(geometry, primitive, parser);\n      });\n    }\n    const pending = [];\n    for (let i = 0, il = primitives.length; i < il; i++) {\n      const primitive = primitives[i];\n      const cacheKey = createPrimitiveKey(primitive);\n      const cached = cache[cacheKey];\n      if (cached) {\n        pending.push(cached.promise);\n      } else {\n        let geometryPromise;\n        if (primitive.extensions && primitive.extensions[EXTENSIONS.KHR_DRACO_MESH_COMPRESSION]) {\n          geometryPromise = createDracoPrimitive(primitive);\n        } else {\n          geometryPromise = addPrimitiveAttributes(new BufferGeometry(), primitive, parser);\n        }\n        cache[cacheKey] = { primitive, promise: geometryPromise };\n        pending.push(geometryPromise);\n      }\n    }\n    return Promise.all(pending);\n  }\n  loadMesh(meshIndex) {\n    const parser = this;\n    const json = this.json;\n    const extensions = this.extensions;\n    const meshDef = json.meshes[meshIndex];\n    const primitives = meshDef.primitives;\n    const pending = [];\n    for (let i = 0, il = primitives.length; i < il; i++) {\n      const material = primitives[i].material === void 0 ? createDefaultMaterial(this.cache) : this.getDependency(\"material\", primitives[i].material);\n      pending.push(material);\n    }\n    pending.push(parser.loadGeometries(primitives));\n    return Promise.all(pending).then(function(results) {\n      const materials = results.slice(0, results.length - 1);\n      const geometries = results[results.length - 1];\n      const meshes = [];\n      for (let i = 0, il = geometries.length; i < il; i++) {\n        const geometry = geometries[i];\n        const primitive = primitives[i];\n        let mesh;\n        const material = materials[i];\n        if (primitive.mode === WEBGL_CONSTANTS.TRIANGLES || primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP || primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN || primitive.mode === void 0) {\n          mesh = meshDef.isSkinnedMesh === true ? new SkinnedMesh(geometry, material) : new Mesh(geometry, material);\n          if (mesh.isSkinnedMesh === true && !mesh.geometry.attributes.skinWeight.normalized) {\n            mesh.normalizeSkinWeights();\n          }\n          if (primitive.mode === WEBGL_CONSTANTS.TRIANGLE_STRIP) {\n            mesh.geometry = toTrianglesDrawMode(mesh.geometry, TriangleStripDrawMode);\n          } else if (primitive.mode === WEBGL_CONSTANTS.TRIANGLE_FAN) {\n            mesh.geometry = toTrianglesDrawMode(mesh.geometry, TriangleFanDrawMode);\n          }\n        } else if (primitive.mode === WEBGL_CONSTANTS.LINES) {\n          mesh = new LineSegments(geometry, material);\n        } else if (primitive.mode === WEBGL_CONSTANTS.LINE_STRIP) {\n          mesh = new Line(geometry, material);\n        } else if (primitive.mode === WEBGL_CONSTANTS.LINE_LOOP) {\n          mesh = new LineLoop(geometry, material);\n        } else if (primitive.mode === WEBGL_CONSTANTS.POINTS) {\n          mesh = new Points(geometry, material);\n        } else {\n          throw new Error(\"THREE.GLTFLoader: Primitive mode unsupported: \" + primitive.mode);\n        }\n        if (Object.keys(mesh.geometry.morphAttributes).length > 0) {\n          updateMorphTargets(mesh, meshDef);\n        }\n        mesh.name = parser.createUniqueName(meshDef.name || \"mesh_\" + meshIndex);\n        assignExtrasToUserData(mesh, meshDef);\n        if (primitive.extensions)\n          addUnknownExtensionsToUserData(extensions, mesh, primitive);\n        parser.assignFinalMaterial(mesh);\n        meshes.push(mesh);\n      }\n      for (let i = 0, il = meshes.length; i < il; i++) {\n        parser.associations.set(meshes[i], {\n          meshes: meshIndex,\n          primitives: i\n        });\n      }\n      if (meshes.length === 1) {\n        return meshes[0];\n      }\n      const group = new Group();\n      parser.associations.set(group, { meshes: meshIndex });\n      for (let i = 0, il = meshes.length; i < il; i++) {\n        group.add(meshes[i]);\n      }\n      return group;\n    });\n  }\n  loadCamera(cameraIndex) {\n    let camera;\n    const cameraDef = this.json.cameras[cameraIndex];\n    const params = cameraDef[cameraDef.type];\n    if (!params) {\n      console.warn(\"THREE.GLTFLoader: Missing camera parameters.\");\n      return;\n    }\n    if (cameraDef.type === \"perspective\") {\n      camera = new PerspectiveCamera(MathUtils.radToDeg(params.yfov), params.aspectRatio || 1, params.znear || 1, params.zfar || 2e6);\n    } else if (cameraDef.type === \"orthographic\") {\n      camera = new OrthographicCamera(-params.xmag, params.xmag, params.ymag, -params.ymag, params.znear, params.zfar);\n    }\n    if (cameraDef.name)\n      camera.name = this.createUniqueName(cameraDef.name);\n    assignExtrasToUserData(camera, cameraDef);\n    return Promise.resolve(camera);\n  }\n  loadSkin(skinIndex) {\n    const skinDef = this.json.skins[skinIndex];\n    const skinEntry = { joints: skinDef.joints };\n    if (skinDef.inverseBindMatrices === void 0) {\n      return Promise.resolve(skinEntry);\n    }\n    return this.getDependency(\"accessor\", skinDef.inverseBindMatrices).then(function(accessor) {\n      skinEntry.inverseBindMatrices = accessor;\n      return skinEntry;\n    });\n  }\n  loadAnimation(animationIndex) {\n    const json = this.json;\n    const animationDef = json.animations[animationIndex];\n    const pendingNodes = [];\n    const pendingInputAccessors = [];\n    const pendingOutputAccessors = [];\n    const pendingSamplers = [];\n    const pendingTargets = [];\n    for (let i = 0, il = animationDef.channels.length; i < il; i++) {\n      const channel = animationDef.channels[i];\n      const sampler = animationDef.samplers[channel.sampler];\n      const target = channel.target;\n      const name = target.node !== void 0 ? target.node : target.id;\n      const input = animationDef.parameters !== void 0 ? animationDef.parameters[sampler.input] : sampler.input;\n      const output = animationDef.parameters !== void 0 ? animationDef.parameters[sampler.output] : sampler.output;\n      pendingNodes.push(this.getDependency(\"node\", name));\n      pendingInputAccessors.push(this.getDependency(\"accessor\", input));\n      pendingOutputAccessors.push(this.getDependency(\"accessor\", output));\n      pendingSamplers.push(sampler);\n      pendingTargets.push(target);\n    }\n    return Promise.all([\n      Promise.all(pendingNodes),\n      Promise.all(pendingInputAccessors),\n      Promise.all(pendingOutputAccessors),\n      Promise.all(pendingSamplers),\n      Promise.all(pendingTargets)\n    ]).then(function(dependencies) {\n      const nodes = dependencies[0];\n      const inputAccessors = dependencies[1];\n      const outputAccessors = dependencies[2];\n      const samplers = dependencies[3];\n      const targets = dependencies[4];\n      const tracks = [];\n      for (let i = 0, il = nodes.length; i < il; i++) {\n        const node = nodes[i];\n        const inputAccessor = inputAccessors[i];\n        const outputAccessor = outputAccessors[i];\n        const sampler = samplers[i];\n        const target = targets[i];\n        if (node === void 0)\n          continue;\n        node.updateMatrix();\n        let TypedKeyframeTrack;\n        switch (PATH_PROPERTIES[target.path]) {\n          case PATH_PROPERTIES.weights:\n            TypedKeyframeTrack = NumberKeyframeTrack;\n            break;\n          case PATH_PROPERTIES.rotation:\n            TypedKeyframeTrack = QuaternionKeyframeTrack;\n            break;\n          case PATH_PROPERTIES.position:\n          case PATH_PROPERTIES.scale:\n          default:\n            TypedKeyframeTrack = VectorKeyframeTrack;\n            break;\n        }\n        const targetName = node.name ? node.name : node.uuid;\n        const interpolation = sampler.interpolation !== void 0 ? INTERPOLATION[sampler.interpolation] : InterpolateLinear;\n        const targetNames = [];\n        if (PATH_PROPERTIES[target.path] === PATH_PROPERTIES.weights) {\n          node.traverse(function(object) {\n            if (object.morphTargetInfluences) {\n              targetNames.push(object.name ? object.name : object.uuid);\n            }\n          });\n        } else {\n          targetNames.push(targetName);\n        }\n        let outputArray = outputAccessor.array;\n        if (outputAccessor.normalized) {\n          const scale = getNormalizedComponentScale(outputArray.constructor);\n          const scaled = new Float32Array(outputArray.length);\n          for (let j = 0, jl = outputArray.length; j < jl; j++) {\n            scaled[j] = outputArray[j] * scale;\n          }\n          outputArray = scaled;\n        }\n        for (let j = 0, jl = targetNames.length; j < jl; j++) {\n          const track = new TypedKeyframeTrack(targetNames[j] + \".\" + PATH_PROPERTIES[target.path], inputAccessor.array, outputArray, interpolation);\n          if (sampler.interpolation === \"CUBICSPLINE\") {\n            track.createInterpolant = function InterpolantFactoryMethodGLTFCubicSpline(result) {\n              const interpolantType = this instanceof QuaternionKeyframeTrack ? GLTFCubicSplineQuaternionInterpolant : GLTFCubicSplineInterpolant;\n              return new interpolantType(this.times, this.values, this.getValueSize() / 3, result);\n            };\n            track.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline = true;\n          }\n          tracks.push(track);\n        }\n      }\n      const name = animationDef.name ? animationDef.name : \"animation_\" + animationIndex;\n      return new AnimationClip(name, void 0, tracks);\n    });\n  }\n  createNodeMesh(nodeIndex) {\n    const json = this.json;\n    const parser = this;\n    const nodeDef = json.nodes[nodeIndex];\n    if (nodeDef.mesh === void 0)\n      return null;\n    return parser.getDependency(\"mesh\", nodeDef.mesh).then(function(mesh) {\n      const node = parser._getNodeRef(parser.meshCache, nodeDef.mesh, mesh);\n      if (nodeDef.weights !== void 0) {\n        node.traverse(function(o) {\n          if (!o.isMesh)\n            return;\n          for (let i = 0, il = nodeDef.weights.length; i < il; i++) {\n            o.morphTargetInfluences[i] = nodeDef.weights[i];\n          }\n        });\n      }\n      return node;\n    });\n  }\n  loadNode(nodeIndex) {\n    const json = this.json;\n    const extensions = this.extensions;\n    const parser = this;\n    const nodeDef = json.nodes[nodeIndex];\n    const nodeName = nodeDef.name ? parser.createUniqueName(nodeDef.name) : \"\";\n    return function() {\n      const pending = [];\n      const meshPromise = parser._invokeOne(function(ext) {\n        return ext.createNodeMesh && ext.createNodeMesh(nodeIndex);\n      });\n      if (meshPromise) {\n        pending.push(meshPromise);\n      }\n      if (nodeDef.camera !== void 0) {\n        pending.push(parser.getDependency(\"camera\", nodeDef.camera).then(function(camera) {\n          return parser._getNodeRef(parser.cameraCache, nodeDef.camera, camera);\n        }));\n      }\n      parser._invokeAll(function(ext) {\n        return ext.createNodeAttachment && ext.createNodeAttachment(nodeIndex);\n      }).forEach(function(promise) {\n        pending.push(promise);\n      });\n      return Promise.all(pending);\n    }().then(function(objects) {\n      let node;\n      if (nodeDef.isBone === true) {\n        node = new Bone();\n      } else if (objects.length > 1) {\n        node = new Group();\n      } else if (objects.length === 1) {\n        node = objects[0];\n      } else {\n        node = new Object3D();\n      }\n      if (node !== objects[0]) {\n        for (let i = 0, il = objects.length; i < il; i++) {\n          node.add(objects[i]);\n        }\n      }\n      if (nodeDef.name) {\n        node.userData.name = nodeDef.name;\n        node.name = nodeName;\n      }\n      assignExtrasToUserData(node, nodeDef);\n      if (nodeDef.extensions)\n        addUnknownExtensionsToUserData(extensions, node, nodeDef);\n      if (nodeDef.matrix !== void 0) {\n        const matrix = new Matrix4();\n        matrix.fromArray(nodeDef.matrix);\n        node.applyMatrix4(matrix);\n      } else {\n        if (nodeDef.translation !== void 0) {\n          node.position.fromArray(nodeDef.translation);\n        }\n        if (nodeDef.rotation !== void 0) {\n          node.quaternion.fromArray(nodeDef.rotation);\n        }\n        if (nodeDef.scale !== void 0) {\n          node.scale.fromArray(nodeDef.scale);\n        }\n      }\n      if (!parser.associations.has(node)) {\n        parser.associations.set(node, {});\n      }\n      parser.associations.get(node).nodes = nodeIndex;\n      return node;\n    });\n  }\n  loadScene(sceneIndex) {\n    const json = this.json;\n    const extensions = this.extensions;\n    const sceneDef = this.json.scenes[sceneIndex];\n    const parser = this;\n    const scene = new Group();\n    if (sceneDef.name)\n      scene.name = parser.createUniqueName(sceneDef.name);\n    assignExtrasToUserData(scene, sceneDef);\n    if (sceneDef.extensions)\n      addUnknownExtensionsToUserData(extensions, scene, sceneDef);\n    const nodeIds = sceneDef.nodes || [];\n    const pending = [];\n    for (let i = 0, il = nodeIds.length; i < il; i++) {\n      pending.push(buildNodeHierarchy(nodeIds[i], scene, json, parser));\n    }\n    return Promise.all(pending).then(function() {\n      const reduceAssociations = (node) => {\n        const reducedAssociations = /* @__PURE__ */ new Map();\n        for (const [key, value] of parser.associations) {\n          if (key instanceof Material || key instanceof Texture) {\n            reducedAssociations.set(key, value);\n          }\n        }\n        node.traverse((node2) => {\n          const mappings = parser.associations.get(node2);\n          if (mappings != null) {\n            reducedAssociations.set(node2, mappings);\n          }\n        });\n        return reducedAssociations;\n      };\n      parser.associations = reduceAssociations(scene);\n      return scene;\n    });\n  }\n}\nfunction buildNodeHierarchy(nodeId, parentObject, json, parser) {\n  const nodeDef = json.nodes[nodeId];\n  return parser.getDependency(\"node\", nodeId).then(function(node) {\n    if (nodeDef.skin === void 0)\n      return node;\n    let skinEntry;\n    return parser.getDependency(\"skin\", nodeDef.skin).then(function(skin) {\n      skinEntry = skin;\n      const pendingJoints = [];\n      for (let i = 0, il = skinEntry.joints.length; i < il; i++) {\n        pendingJoints.push(parser.getDependency(\"node\", skinEntry.joints[i]));\n      }\n      return Promise.all(pendingJoints);\n    }).then(function(jointNodes) {\n      node.traverse(function(mesh) {\n        if (!mesh.isMesh)\n          return;\n        const bones = [];\n        const boneInverses = [];\n        for (let j = 0, jl = jointNodes.length; j < jl; j++) {\n          const jointNode = jointNodes[j];\n          if (jointNode) {\n            bones.push(jointNode);\n            const mat = new Matrix4();\n            if (skinEntry.inverseBindMatrices !== void 0) {\n              mat.fromArray(skinEntry.inverseBindMatrices.array, j * 16);\n            }\n            boneInverses.push(mat);\n          } else {\n            console.warn('THREE.GLTFLoader: Joint \"%s\" could not be found.', skinEntry.joints[j]);\n          }\n        }\n        mesh.bind(new Skeleton(bones, boneInverses), mesh.matrixWorld);\n      });\n      return node;\n    });\n  }).then(function(node) {\n    parentObject.add(node);\n    const pending = [];\n    if (nodeDef.children) {\n      const children = nodeDef.children;\n      for (let i = 0, il = children.length; i < il; i++) {\n        const child = children[i];\n        pending.push(buildNodeHierarchy(child, node, json, parser));\n      }\n    }\n    return Promise.all(pending);\n  });\n}\nfunction computeBounds(geometry, primitiveDef, parser) {\n  const attributes = primitiveDef.attributes;\n  const box2 = new Box3();\n  if (attributes.POSITION !== void 0) {\n    const accessor = parser.json.accessors[attributes.POSITION];\n    const min = accessor.min;\n    const max2 = accessor.max;\n    if (min !== void 0 && max2 !== void 0) {\n      box2.set(new Vector3(min[0], min[1], min[2]), new Vector3(max2[0], max2[1], max2[2]));\n      if (accessor.normalized) {\n        const boxScale = getNormalizedComponentScale(WEBGL_COMPONENT_TYPES[accessor.componentType]);\n        box2.min.multiplyScalar(boxScale);\n        box2.max.multiplyScalar(boxScale);\n      }\n    } else {\n      console.warn(\"THREE.GLTFLoader: Missing min/max properties for accessor POSITION.\");\n      return;\n    }\n  } else {\n    return;\n  }\n  const targets = primitiveDef.targets;\n  if (targets !== void 0) {\n    const maxDisplacement = new Vector3();\n    const vector = new Vector3();\n    for (let i = 0, il = targets.length; i < il; i++) {\n      const target = targets[i];\n      if (target.POSITION !== void 0) {\n        const accessor = parser.json.accessors[target.POSITION];\n        const min = accessor.min;\n        const max2 = accessor.max;\n        if (min !== void 0 && max2 !== void 0) {\n          vector.setX(Math.max(Math.abs(min[0]), Math.abs(max2[0])));\n          vector.setY(Math.max(Math.abs(min[1]), Math.abs(max2[1])));\n          vector.setZ(Math.max(Math.abs(min[2]), Math.abs(max2[2])));\n          if (accessor.normalized) {\n            const boxScale = getNormalizedComponentScale(WEBGL_COMPONENT_TYPES[accessor.componentType]);\n            vector.multiplyScalar(boxScale);\n          }\n          maxDisplacement.max(vector);\n        } else {\n          console.warn(\"THREE.GLTFLoader: Missing min/max properties for accessor POSITION.\");\n        }\n      }\n    }\n    box2.expandByVector(maxDisplacement);\n  }\n  geometry.boundingBox = box2;\n  const sphere = new Sphere();\n  box2.getCenter(sphere.center);\n  sphere.radius = box2.min.distanceTo(box2.max) / 2;\n  geometry.boundingSphere = sphere;\n}\nfunction addPrimitiveAttributes(geometry, primitiveDef, parser) {\n  const attributes = primitiveDef.attributes;\n  const pending = [];\n  function assignAttributeAccessor(accessorIndex, attributeName) {\n    return parser.getDependency(\"accessor\", accessorIndex).then(function(accessor) {\n      geometry.setAttribute(attributeName, accessor);\n    });\n  }\n  for (const gltfAttributeName in attributes) {\n    const threeAttributeName = ATTRIBUTES[gltfAttributeName] || gltfAttributeName.toLowerCase();\n    if (threeAttributeName in geometry.attributes)\n      continue;\n    pending.push(assignAttributeAccessor(attributes[gltfAttributeName], threeAttributeName));\n  }\n  if (primitiveDef.indices !== void 0 && !geometry.index) {\n    const accessor = parser.getDependency(\"accessor\", primitiveDef.indices).then(function(accessor2) {\n      geometry.setIndex(accessor2);\n    });\n    pending.push(accessor);\n  }\n  assignExtrasToUserData(geometry, primitiveDef);\n  computeBounds(geometry, primitiveDef, parser);\n  return Promise.all(pending).then(function() {\n    return primitiveDef.targets !== void 0 ? addMorphTargets(geometry, primitiveDef.targets, parser) : geometry;\n  });\n}\nfunction toTrianglesDrawMode(geometry, drawMode) {\n  let index2 = geometry.getIndex();\n  if (index2 === null) {\n    const indices = [];\n    const position = geometry.getAttribute(\"position\");\n    if (position !== void 0) {\n      for (let i = 0; i < position.count; i++) {\n        indices.push(i);\n      }\n      geometry.setIndex(indices);\n      index2 = geometry.getIndex();\n    } else {\n      console.error(\"THREE.GLTFLoader.toTrianglesDrawMode(): Undefined position attribute. Processing not possible.\");\n      return geometry;\n    }\n  }\n  const numberOfTriangles = index2.count - 2;\n  const newIndices = [];\n  if (drawMode === TriangleFanDrawMode) {\n    for (let i = 1; i <= numberOfTriangles; i++) {\n      newIndices.push(index2.getX(0));\n      newIndices.push(index2.getX(i));\n      newIndices.push(index2.getX(i + 1));\n    }\n  } else {\n    for (let i = 0; i < numberOfTriangles; i++) {\n      if (i % 2 === 0) {\n        newIndices.push(index2.getX(i));\n        newIndices.push(index2.getX(i + 1));\n        newIndices.push(index2.getX(i + 2));\n      } else {\n        newIndices.push(index2.getX(i + 2));\n        newIndices.push(index2.getX(i + 1));\n        newIndices.push(index2.getX(i));\n      }\n    }\n  }\n  if (newIndices.length / 3 !== numberOfTriangles) {\n    console.error(\"THREE.GLTFLoader.toTrianglesDrawMode(): Unable to generate correct amount of triangles.\");\n  }\n  const newGeometry = geometry.clone();\n  newGeometry.setIndex(newIndices);\n  return newGeometry;\n}\nconst _object_pattern = /^[og]\\s*(.+)?/;\nconst _material_library_pattern = /^mtllib /;\nconst _material_use_pattern = /^usemtl /;\nconst _map_use_pattern = /^usemap /;\nconst _face_vertex_data_separator_pattern = /\\s+/;\nconst _vA = new Vector3();\nconst _vB = new Vector3();\nconst _vC = new Vector3();\nconst _ab = new Vector3();\nconst _cb = new Vector3();\nconst _color$1 = new Color();\nfunction ParserState() {\n  const state = {\n    objects: [],\n    object: {},\n    vertices: [],\n    normals: [],\n    colors: [],\n    uvs: [],\n    materials: {},\n    materialLibraries: [],\n    startObject: function(name, fromDeclaration) {\n      if (this.object && this.object.fromDeclaration === false) {\n        this.object.name = name;\n        this.object.fromDeclaration = fromDeclaration !== false;\n        return;\n      }\n      const previousMaterial = this.object && typeof this.object.currentMaterial === \"function\" ? this.object.currentMaterial() : void 0;\n      if (this.object && typeof this.object._finalize === \"function\") {\n        this.object._finalize(true);\n      }\n      this.object = {\n        name: name || \"\",\n        fromDeclaration: fromDeclaration !== false,\n        geometry: {\n          vertices: [],\n          normals: [],\n          colors: [],\n          uvs: [],\n          hasUVIndices: false\n        },\n        materials: [],\n        smooth: true,\n        startMaterial: function(name2, libraries) {\n          const previous = this._finalize(false);\n          if (previous && (previous.inherited || previous.groupCount <= 0)) {\n            this.materials.splice(previous.index, 1);\n          }\n          const material = {\n            index: this.materials.length,\n            name: name2 || \"\",\n            mtllib: Array.isArray(libraries) && libraries.length > 0 ? libraries[libraries.length - 1] : \"\",\n            smooth: previous !== void 0 ? previous.smooth : this.smooth,\n            groupStart: previous !== void 0 ? previous.groupEnd : 0,\n            groupEnd: -1,\n            groupCount: -1,\n            inherited: false,\n            clone: function(index2) {\n              const cloned = {\n                index: typeof index2 === \"number\" ? index2 : this.index,\n                name: this.name,\n                mtllib: this.mtllib,\n                smooth: this.smooth,\n                groupStart: 0,\n                groupEnd: -1,\n                groupCount: -1,\n                inherited: false\n              };\n              cloned.clone = this.clone.bind(cloned);\n              return cloned;\n            }\n          };\n          this.materials.push(material);\n          return material;\n        },\n        currentMaterial: function() {\n          if (this.materials.length > 0) {\n            return this.materials[this.materials.length - 1];\n          }\n          return void 0;\n        },\n        _finalize: function(end) {\n          const lastMultiMaterial = this.currentMaterial();\n          if (lastMultiMaterial && lastMultiMaterial.groupEnd === -1) {\n            lastMultiMaterial.groupEnd = this.geometry.vertices.length / 3;\n            lastMultiMaterial.groupCount = lastMultiMaterial.groupEnd - lastMultiMaterial.groupStart;\n            lastMultiMaterial.inherited = false;\n          }\n          if (end && this.materials.length > 1) {\n            for (let mi = this.materials.length - 1; mi >= 0; mi--) {\n              if (this.materials[mi].groupCount <= 0) {\n                this.materials.splice(mi, 1);\n              }\n            }\n          }\n          if (end && this.materials.length === 0) {\n            this.materials.push({\n              name: \"\",\n              smooth: this.smooth\n            });\n          }\n          return lastMultiMaterial;\n        }\n      };\n      if (previousMaterial && previousMaterial.name && typeof previousMaterial.clone === \"function\") {\n        const declared = previousMaterial.clone(0);\n        declared.inherited = true;\n        this.object.materials.push(declared);\n      }\n      this.objects.push(this.object);\n    },\n    finalize: function() {\n      if (this.object && typeof this.object._finalize === \"function\") {\n        this.object._finalize(true);\n      }\n    },\n    parseVertexIndex: function(value, len) {\n      const index2 = parseInt(value, 10);\n      return (index2 >= 0 ? index2 - 1 : index2 + len / 3) * 3;\n    },\n    parseNormalIndex: function(value, len) {\n      const index2 = parseInt(value, 10);\n      return (index2 >= 0 ? index2 - 1 : index2 + len / 3) * 3;\n    },\n    parseUVIndex: function(value, len) {\n      const index2 = parseInt(value, 10);\n      return (index2 >= 0 ? index2 - 1 : index2 + len / 2) * 2;\n    },\n    addVertex: function(a, b, c) {\n      const src = this.vertices;\n      const dst = this.object.geometry.vertices;\n      dst.push(src[a + 0], src[a + 1], src[a + 2]);\n      dst.push(src[b + 0], src[b + 1], src[b + 2]);\n      dst.push(src[c + 0], src[c + 1], src[c + 2]);\n    },\n    addVertexPoint: function(a) {\n      const src = this.vertices;\n      const dst = this.object.geometry.vertices;\n      dst.push(src[a + 0], src[a + 1], src[a + 2]);\n    },\n    addVertexLine: function(a) {\n      const src = this.vertices;\n      const dst = this.object.geometry.vertices;\n      dst.push(src[a + 0], src[a + 1], src[a + 2]);\n    },\n    addNormal: function(a, b, c) {\n      const src = this.normals;\n      const dst = this.object.geometry.normals;\n      dst.push(src[a + 0], src[a + 1], src[a + 2]);\n      dst.push(src[b + 0], src[b + 1], src[b + 2]);\n      dst.push(src[c + 0], src[c + 1], src[c + 2]);\n    },\n    addFaceNormal: function(a, b, c) {\n      const src = this.vertices;\n      const dst = this.object.geometry.normals;\n      _vA.fromArray(src, a);\n      _vB.fromArray(src, b);\n      _vC.fromArray(src, c);\n      _cb.subVectors(_vC, _vB);\n      _ab.subVectors(_vA, _vB);\n      _cb.cross(_ab);\n      _cb.normalize();\n      dst.push(_cb.x, _cb.y, _cb.z);\n      dst.push(_cb.x, _cb.y, _cb.z);\n      dst.push(_cb.x, _cb.y, _cb.z);\n    },\n    addColor: function(a, b, c) {\n      const src = this.colors;\n      const dst = this.object.geometry.colors;\n      if (src[a] !== void 0)\n        dst.push(src[a + 0], src[a + 1], src[a + 2]);\n      if (src[b] !== void 0)\n        dst.push(src[b + 0], src[b + 1], src[b + 2]);\n      if (src[c] !== void 0)\n        dst.push(src[c + 0], src[c + 1], src[c + 2]);\n    },\n    addUV: function(a, b, c) {\n      const src = this.uvs;\n      const dst = this.object.geometry.uvs;\n      dst.push(src[a + 0], src[a + 1]);\n      dst.push(src[b + 0], src[b + 1]);\n      dst.push(src[c + 0], src[c + 1]);\n    },\n    addDefaultUV: function() {\n      const dst = this.object.geometry.uvs;\n      dst.push(0, 0);\n      dst.push(0, 0);\n      dst.push(0, 0);\n    },\n    addUVLine: function(a) {\n      const src = this.uvs;\n      const dst = this.object.geometry.uvs;\n      dst.push(src[a + 0], src[a + 1]);\n    },\n    addFace: function(a, b, c, ua, ub, uc, na, nb, nc) {\n      const vLen = this.vertices.length;\n      let ia = this.parseVertexIndex(a, vLen);\n      let ib = this.parseVertexIndex(b, vLen);\n      let ic = this.parseVertexIndex(c, vLen);\n      this.addVertex(ia, ib, ic);\n      this.addColor(ia, ib, ic);\n      if (na !== void 0 && na !== \"\") {\n        const nLen = this.normals.length;\n        ia = this.parseNormalIndex(na, nLen);\n        ib = this.parseNormalIndex(nb, nLen);\n        ic = this.parseNormalIndex(nc, nLen);\n        this.addNormal(ia, ib, ic);\n      } else {\n        this.addFaceNormal(ia, ib, ic);\n      }\n      if (ua !== void 0 && ua !== \"\") {\n        const uvLen = this.uvs.length;\n        ia = this.parseUVIndex(ua, uvLen);\n        ib = this.parseUVIndex(ub, uvLen);\n        ic = this.parseUVIndex(uc, uvLen);\n        this.addUV(ia, ib, ic);\n        this.object.geometry.hasUVIndices = true;\n      } else {\n        this.addDefaultUV();\n      }\n    },\n    addPointGeometry: function(vertices) {\n      this.object.geometry.type = \"Points\";\n      const vLen = this.vertices.length;\n      for (let vi = 0, l = vertices.length; vi < l; vi++) {\n        const index2 = this.parseVertexIndex(vertices[vi], vLen);\n        this.addVertexPoint(index2);\n        this.addColor(index2);\n      }\n    },\n    addLineGeometry: function(vertices, uvs) {\n      this.object.geometry.type = \"Line\";\n      const vLen = this.vertices.length;\n      const uvLen = this.uvs.length;\n      for (let vi = 0, l = vertices.length; vi < l; vi++) {\n        this.addVertexLine(this.parseVertexIndex(vertices[vi], vLen));\n      }\n      for (let uvi = 0, l = uvs.length; uvi < l; uvi++) {\n        this.addUVLine(this.parseUVIndex(uvs[uvi], uvLen));\n      }\n    }\n  };\n  state.startObject(\"\", false);\n  return state;\n}\nclass OBJLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n    this.materials = null;\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, function(text) {\n      try {\n        onLoad(scope.parse(text));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  setMaterials(materials) {\n    this.materials = materials;\n    return this;\n  }\n  parse(text) {\n    const state = new ParserState();\n    if (text.indexOf(\"\\r\\n\") !== -1) {\n      text = text.replace(/\\r\\n/g, \"\\n\");\n    }\n    if (text.indexOf(\"\\\\\\n\") !== -1) {\n      text = text.replace(/\\\\\\n/g, \"\");\n    }\n    const lines = text.split(\"\\n\");\n    let result = [];\n    for (let i = 0, l = lines.length; i < l; i++) {\n      const line = lines[i].trimStart();\n      if (line.length === 0)\n        continue;\n      const lineFirstChar = line.charAt(0);\n      if (lineFirstChar === \"#\")\n        continue;\n      if (lineFirstChar === \"v\") {\n        const data = line.split(_face_vertex_data_separator_pattern);\n        switch (data[0]) {\n          case \"v\":\n            state.vertices.push(parseFloat(data[1]), parseFloat(data[2]), parseFloat(data[3]));\n            if (data.length >= 7) {\n              _color$1.setRGB(parseFloat(data[4]), parseFloat(data[5]), parseFloat(data[6])).convertSRGBToLinear();\n              state.colors.push(_color$1.r, _color$1.g, _color$1.b);\n            } else {\n              state.colors.push(void 0, void 0, void 0);\n            }\n            break;\n          case \"vn\":\n            state.normals.push(parseFloat(data[1]), parseFloat(data[2]), parseFloat(data[3]));\n            break;\n          case \"vt\":\n            state.uvs.push(parseFloat(data[1]), parseFloat(data[2]));\n            break;\n        }\n      } else if (lineFirstChar === \"f\") {\n        const lineData = line.slice(1).trim();\n        const vertexData = lineData.split(_face_vertex_data_separator_pattern);\n        const faceVertices = [];\n        for (let j = 0, jl = vertexData.length; j < jl; j++) {\n          const vertex2 = vertexData[j];\n          if (vertex2.length > 0) {\n            const vertexParts = vertex2.split(\"/\");\n            faceVertices.push(vertexParts);\n          }\n        }\n        const v1 = faceVertices[0];\n        for (let j = 1, jl = faceVertices.length - 1; j < jl; j++) {\n          const v2 = faceVertices[j];\n          const v3 = faceVertices[j + 1];\n          state.addFace(v1[0], v2[0], v3[0], v1[1], v2[1], v3[1], v1[2], v2[2], v3[2]);\n        }\n      } else if (lineFirstChar === \"l\") {\n        const lineParts = line.substring(1).trim().split(\" \");\n        let lineVertices = [];\n        const lineUVs = [];\n        if (line.indexOf(\"/\") === -1) {\n          lineVertices = lineParts;\n        } else {\n          for (let li = 0, llen = lineParts.length; li < llen; li++) {\n            const parts = lineParts[li].split(\"/\");\n            if (parts[0] !== \"\")\n              lineVertices.push(parts[0]);\n            if (parts[1] !== \"\")\n              lineUVs.push(parts[1]);\n          }\n        }\n        state.addLineGeometry(lineVertices, lineUVs);\n      } else if (lineFirstChar === \"p\") {\n        const lineData = line.slice(1).trim();\n        const pointData = lineData.split(\" \");\n        state.addPointGeometry(pointData);\n      } else if ((result = _object_pattern.exec(line)) !== null) {\n        const name = (\" \" + result[0].slice(1).trim()).slice(1);\n        state.startObject(name);\n      } else if (_material_use_pattern.test(line)) {\n        state.object.startMaterial(line.substring(7).trim(), state.materialLibraries);\n      } else if (_material_library_pattern.test(line)) {\n        state.materialLibraries.push(line.substring(7).trim());\n      } else if (_map_use_pattern.test(line)) {\n        console.warn('THREE.OBJLoader: Rendering identifier \"usemap\" not supported. Textures must be defined in MTL files.');\n      } else if (lineFirstChar === \"s\") {\n        result = line.split(\" \");\n        if (result.length > 1) {\n          const value = result[1].trim().toLowerCase();\n          state.object.smooth = value !== \"0\" && value !== \"off\";\n        } else {\n          state.object.smooth = true;\n        }\n        const material = state.object.currentMaterial();\n        if (material)\n          material.smooth = state.object.smooth;\n      } else {\n        if (line === \"\\0\")\n          continue;\n        console.warn('THREE.OBJLoader: Unexpected line: \"' + line + '\"');\n      }\n    }\n    state.finalize();\n    const container = new Group();\n    container.materialLibraries = [].concat(state.materialLibraries);\n    const hasPrimitives = !(state.objects.length === 1 && state.objects[0].geometry.vertices.length === 0);\n    if (hasPrimitives === true) {\n      for (let i = 0, l = state.objects.length; i < l; i++) {\n        const object = state.objects[i];\n        const geometry = object.geometry;\n        const materials = object.materials;\n        const isLine = geometry.type === \"Line\";\n        const isPoints = geometry.type === \"Points\";\n        let hasVertexColors = false;\n        if (geometry.vertices.length === 0)\n          continue;\n        const buffergeometry = new BufferGeometry();\n        buffergeometry.setAttribute(\"position\", new Float32BufferAttribute(geometry.vertices, 3));\n        if (geometry.normals.length > 0) {\n          buffergeometry.setAttribute(\"normal\", new Float32BufferAttribute(geometry.normals, 3));\n        }\n        if (geometry.colors.length > 0) {\n          hasVertexColors = true;\n          buffergeometry.setAttribute(\"color\", new Float32BufferAttribute(geometry.colors, 3));\n        }\n        if (geometry.hasUVIndices === true) {\n          buffergeometry.setAttribute(\"uv\", new Float32BufferAttribute(geometry.uvs, 2));\n        }\n        const createdMaterials = [];\n        for (let mi = 0, miLen = materials.length; mi < miLen; mi++) {\n          const sourceMaterial = materials[mi];\n          const materialHash = sourceMaterial.name + \"_\" + sourceMaterial.smooth + \"_\" + hasVertexColors;\n          let material = state.materials[materialHash];\n          if (this.materials !== null) {\n            material = this.materials.create(sourceMaterial.name);\n            if (isLine && material && !(material instanceof LineBasicMaterial)) {\n              const materialLine = new LineBasicMaterial();\n              Material.prototype.copy.call(materialLine, material);\n              materialLine.color.copy(material.color);\n              material = materialLine;\n            } else if (isPoints && material && !(material instanceof PointsMaterial)) {\n              const materialPoints = new PointsMaterial({ size: 10, sizeAttenuation: false });\n              Material.prototype.copy.call(materialPoints, material);\n              materialPoints.color.copy(material.color);\n              materialPoints.map = material.map;\n              material = materialPoints;\n            }\n          }\n          if (material === void 0) {\n            if (isLine) {\n              material = new LineBasicMaterial();\n            } else if (isPoints) {\n              material = new PointsMaterial({ size: 1, sizeAttenuation: false });\n            } else {\n              material = new MeshPhongMaterial();\n            }\n            material.name = sourceMaterial.name;\n            material.flatShading = sourceMaterial.smooth ? false : true;\n            material.vertexColors = hasVertexColors;\n            state.materials[materialHash] = material;\n          }\n          createdMaterials.push(material);\n        }\n        let mesh;\n        if (createdMaterials.length > 1) {\n          for (let mi = 0, miLen = materials.length; mi < miLen; mi++) {\n            const sourceMaterial = materials[mi];\n            buffergeometry.addGroup(sourceMaterial.groupStart, sourceMaterial.groupCount, mi);\n          }\n          if (isLine) {\n            mesh = new LineSegments(buffergeometry, createdMaterials);\n          } else if (isPoints) {\n            mesh = new Points(buffergeometry, createdMaterials);\n          } else {\n            mesh = new Mesh(buffergeometry, createdMaterials);\n          }\n        } else {\n          if (isLine) {\n            mesh = new LineSegments(buffergeometry, createdMaterials[0]);\n          } else if (isPoints) {\n            mesh = new Points(buffergeometry, createdMaterials[0]);\n          } else {\n            mesh = new Mesh(buffergeometry, createdMaterials[0]);\n          }\n        }\n        mesh.name = object.name;\n        container.add(mesh);\n      }\n    } else {\n      if (state.vertices.length > 0) {\n        const material = new PointsMaterial({ size: 1, sizeAttenuation: false });\n        const buffergeometry = new BufferGeometry();\n        buffergeometry.setAttribute(\"position\", new Float32BufferAttribute(state.vertices, 3));\n        if (state.colors.length > 0 && state.colors[0] !== void 0) {\n          buffergeometry.setAttribute(\"color\", new Float32BufferAttribute(state.colors, 3));\n          material.vertexColors = true;\n        }\n        const points = new Points(buffergeometry, material);\n        container.add(points);\n      }\n    }\n    return container;\n  }\n}\nclass DDSLoader extends CompressedTextureLoader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  parse(buffer, loadMipmaps) {\n    const dds = { mipmaps: [], width: 0, height: 0, format: null, mipmapCount: 1 };\n    const DDS_MAGIC = 542327876;\n    const DDSD_MIPMAPCOUNT = 131072;\n    const DDSCAPS2_CUBEMAP = 512;\n    const DDSCAPS2_CUBEMAP_POSITIVEX = 1024;\n    const DDSCAPS2_CUBEMAP_NEGATIVEX = 2048;\n    const DDSCAPS2_CUBEMAP_POSITIVEY = 4096;\n    const DDSCAPS2_CUBEMAP_NEGATIVEY = 8192;\n    const DDSCAPS2_CUBEMAP_POSITIVEZ = 16384;\n    const DDSCAPS2_CUBEMAP_NEGATIVEZ = 32768;\n    function fourCCToInt32(value) {\n      return value.charCodeAt(0) + (value.charCodeAt(1) << 8) + (value.charCodeAt(2) << 16) + (value.charCodeAt(3) << 24);\n    }\n    function int32ToFourCC(value) {\n      return String.fromCharCode(value & 255, value >> 8 & 255, value >> 16 & 255, value >> 24 & 255);\n    }\n    function loadARGBMip(buffer2, dataOffset2, width, height) {\n      const dataLength = width * height * 4;\n      const srcBuffer = new Uint8Array(buffer2, dataOffset2, dataLength);\n      const byteArray = new Uint8Array(dataLength);\n      let dst = 0;\n      let src = 0;\n      for (let y = 0; y < height; y++) {\n        for (let x = 0; x < width; x++) {\n          const b = srcBuffer[src];\n          src++;\n          const g = srcBuffer[src];\n          src++;\n          const r = srcBuffer[src];\n          src++;\n          const a = srcBuffer[src];\n          src++;\n          byteArray[dst] = r;\n          dst++;\n          byteArray[dst] = g;\n          dst++;\n          byteArray[dst] = b;\n          dst++;\n          byteArray[dst] = a;\n          dst++;\n        }\n      }\n      return byteArray;\n    }\n    const FOURCC_DXT1 = fourCCToInt32(\"DXT1\");\n    const FOURCC_DXT3 = fourCCToInt32(\"DXT3\");\n    const FOURCC_DXT5 = fourCCToInt32(\"DXT5\");\n    const FOURCC_ETC1 = fourCCToInt32(\"ETC1\");\n    const headerLengthInt = 31;\n    const off_magic = 0;\n    const off_size = 1;\n    const off_flags = 2;\n    const off_height = 3;\n    const off_width = 4;\n    const off_mipmapCount = 7;\n    const off_pfFourCC = 21;\n    const off_RGBBitCount = 22;\n    const off_RBitMask = 23;\n    const off_GBitMask = 24;\n    const off_BBitMask = 25;\n    const off_ABitMask = 26;\n    const off_caps2 = 28;\n    const header = new Int32Array(buffer, 0, headerLengthInt);\n    if (header[off_magic] !== DDS_MAGIC) {\n      console.error(\"THREE.DDSLoader.parse: Invalid magic number in DDS header.\");\n      return dds;\n    }\n    let blockBytes;\n    const fourCC = header[off_pfFourCC];\n    let isRGBAUncompressed = false;\n    switch (fourCC) {\n      case FOURCC_DXT1:\n        blockBytes = 8;\n        dds.format = RGB_S3TC_DXT1_Format;\n        break;\n      case FOURCC_DXT3:\n        blockBytes = 16;\n        dds.format = RGBA_S3TC_DXT3_Format;\n        break;\n      case FOURCC_DXT5:\n        blockBytes = 16;\n        dds.format = RGBA_S3TC_DXT5_Format;\n        break;\n      case FOURCC_ETC1:\n        blockBytes = 8;\n        dds.format = RGB_ETC1_Format;\n        break;\n      default:\n        if (header[off_RGBBitCount] === 32 && header[off_RBitMask] & 16711680 && header[off_GBitMask] & 65280 && header[off_BBitMask] & 255 && header[off_ABitMask] & 4278190080) {\n          isRGBAUncompressed = true;\n          blockBytes = 64;\n          dds.format = RGBAFormat;\n        } else {\n          console.error(\"THREE.DDSLoader.parse: Unsupported FourCC code \", int32ToFourCC(fourCC));\n          return dds;\n        }\n    }\n    dds.mipmapCount = 1;\n    if (header[off_flags] & DDSD_MIPMAPCOUNT && loadMipmaps !== false) {\n      dds.mipmapCount = Math.max(1, header[off_mipmapCount]);\n    }\n    const caps2 = header[off_caps2];\n    dds.isCubemap = caps2 & DDSCAPS2_CUBEMAP ? true : false;\n    if (dds.isCubemap && (!(caps2 & DDSCAPS2_CUBEMAP_POSITIVEX) || !(caps2 & DDSCAPS2_CUBEMAP_NEGATIVEX) || !(caps2 & DDSCAPS2_CUBEMAP_POSITIVEY) || !(caps2 & DDSCAPS2_CUBEMAP_NEGATIVEY) || !(caps2 & DDSCAPS2_CUBEMAP_POSITIVEZ) || !(caps2 & DDSCAPS2_CUBEMAP_NEGATIVEZ))) {\n      console.error(\"THREE.DDSLoader.parse: Incomplete cubemap faces\");\n      return dds;\n    }\n    dds.width = header[off_width];\n    dds.height = header[off_height];\n    let dataOffset = header[off_size] + 4;\n    const faces = dds.isCubemap ? 6 : 1;\n    for (let face = 0; face < faces; face++) {\n      let width = dds.width;\n      let height = dds.height;\n      for (let i = 0; i < dds.mipmapCount; i++) {\n        let byteArray, dataLength;\n        if (isRGBAUncompressed) {\n          byteArray = loadARGBMip(buffer, dataOffset, width, height);\n          dataLength = byteArray.length;\n        } else {\n          dataLength = Math.max(4, width) / 4 * Math.max(4, height) / 4 * blockBytes;\n          byteArray = new Uint8Array(buffer, dataOffset, dataLength);\n        }\n        const mipmap = { \"data\": byteArray, \"width\": width, \"height\": height };\n        dds.mipmaps.push(mipmap);\n        dataOffset += dataLength;\n        width = Math.max(width >> 1, 1);\n        height = Math.max(height >> 1, 1);\n      }\n    }\n    return dds;\n  }\n}\nclass LoadingManager {\n  constructor(onLoad, onProgress, onError) {\n    const scope = this;\n    let isLoading = false;\n    let itemsLoaded = 0;\n    let itemsTotal = 0;\n    let urlModifier = void 0;\n    const handlers = [];\n    this.onStart = void 0;\n    this.onLoad = onLoad;\n    this.onProgress = onProgress;\n    this.onError = onError;\n    this.itemStart = function(url) {\n      itemsTotal++;\n      if (isLoading === false) {\n        if (scope.onStart !== void 0) {\n          scope.onStart(url, itemsLoaded, itemsTotal);\n        }\n      }\n      isLoading = true;\n    };\n    this.itemEnd = function(url) {\n      itemsLoaded++;\n      if (scope.onProgress !== void 0) {\n        scope.onProgress(url, itemsLoaded, itemsTotal);\n      }\n      if (itemsLoaded === itemsTotal) {\n        isLoading = false;\n        if (scope.onLoad !== void 0) {\n          scope.onLoad();\n        }\n      }\n    };\n    this.itemError = function(url) {\n      if (scope.onError !== void 0) {\n        scope.onError(url);\n      }\n    };\n    this.resolveURL = function(url) {\n      if (urlModifier) {\n        return urlModifier(url);\n      }\n      return url;\n    };\n    this.setURLModifier = function(transform) {\n      urlModifier = transform;\n      return this;\n    };\n    this.addHandler = function(regex, loader) {\n      handlers.push(regex, loader);\n      return this;\n    };\n    this.removeHandler = function(regex) {\n      const index2 = handlers.indexOf(regex);\n      if (index2 !== -1) {\n        handlers.splice(index2, 2);\n      }\n      return this;\n    };\n    this.getHandler = function(file) {\n      for (let i = 0, l = handlers.length; i < l; i += 2) {\n        const regex = handlers[i];\n        const loader = handlers[i + 1];\n        if (regex.global)\n          regex.lastIndex = 0;\n        if (regex.test(file)) {\n          return loader;\n        }\n      }\n      return null;\n    };\n  }\n}\nconst _color = new Color();\nclass PLYLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n    this.propertyNameMapping = {};\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setResponseType(\"arraybuffer\");\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, function(text) {\n      try {\n        onLoad(scope.parse(text));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  setPropertyNameMapping(mapping) {\n    this.propertyNameMapping = mapping;\n  }\n  parse(data) {\n    function parseHeader(data2) {\n      const patternHeader = /^ply([\\s\\S]*)end_header(\\r\\n|\\r|\\n)/;\n      let headerText = \"\";\n      let headerLength = 0;\n      const result = patternHeader.exec(data2);\n      if (result !== null) {\n        headerText = result[1];\n        headerLength = new Blob([result[0]]).size;\n      }\n      const header = {\n        comments: [],\n        elements: [],\n        headerLength,\n        objInfo: \"\"\n      };\n      const lines = headerText.split(/\\r\\n|\\r|\\n/);\n      let currentElement;\n      function make_ply_element_property(propertValues, propertyNameMapping) {\n        const property = { type: propertValues[0] };\n        if (property.type === \"list\") {\n          property.name = propertValues[3];\n          property.countType = propertValues[1];\n          property.itemType = propertValues[2];\n        } else {\n          property.name = propertValues[1];\n        }\n        if (property.name in propertyNameMapping) {\n          property.name = propertyNameMapping[property.name];\n        }\n        return property;\n      }\n      for (let i = 0; i < lines.length; i++) {\n        let line = lines[i];\n        line = line.trim();\n        if (line === \"\")\n          continue;\n        const lineValues = line.split(/\\s+/);\n        const lineType = lineValues.shift();\n        line = lineValues.join(\" \");\n        switch (lineType) {\n          case \"format\":\n            header.format = lineValues[0];\n            header.version = lineValues[1];\n            break;\n          case \"comment\":\n            header.comments.push(line);\n            break;\n          case \"element\":\n            if (currentElement !== void 0) {\n              header.elements.push(currentElement);\n            }\n            currentElement = {};\n            currentElement.name = lineValues[0];\n            currentElement.count = parseInt(lineValues[1]);\n            currentElement.properties = [];\n            break;\n          case \"property\":\n            currentElement.properties.push(make_ply_element_property(lineValues, scope.propertyNameMapping));\n            break;\n          case \"obj_info\":\n            header.objInfo = line;\n            break;\n          default:\n            console.log(\"unhandled\", lineType, lineValues);\n        }\n      }\n      if (currentElement !== void 0) {\n        header.elements.push(currentElement);\n      }\n      return header;\n    }\n    function parseASCIINumber(n, type) {\n      switch (type) {\n        case \"char\":\n        case \"uchar\":\n        case \"short\":\n        case \"ushort\":\n        case \"int\":\n        case \"uint\":\n        case \"int8\":\n        case \"uint8\":\n        case \"int16\":\n        case \"uint16\":\n        case \"int32\":\n        case \"uint32\":\n          return parseInt(n);\n        case \"float\":\n        case \"double\":\n        case \"float32\":\n        case \"float64\":\n          return parseFloat(n);\n      }\n    }\n    function parseASCIIElement(properties, line) {\n      const values = line.split(/\\s+/);\n      const element = {};\n      for (let i = 0; i < properties.length; i++) {\n        if (properties[i].type === \"list\") {\n          const list = [];\n          const n = parseASCIINumber(values.shift(), properties[i].countType);\n          for (let j = 0; j < n; j++) {\n            list.push(parseASCIINumber(values.shift(), properties[i].itemType));\n          }\n          element[properties[i].name] = list;\n        } else {\n          element[properties[i].name] = parseASCIINumber(values.shift(), properties[i].type);\n        }\n      }\n      return element;\n    }\n    function parseASCII(data2, header) {\n      const buffer = {\n        indices: [],\n        vertices: [],\n        normals: [],\n        uvs: [],\n        faceVertexUvs: [],\n        colors: []\n      };\n      let result;\n      const patternBody = /end_header\\s([\\s\\S]*)$/;\n      let body = \"\";\n      if ((result = patternBody.exec(data2)) !== null) {\n        body = result[1];\n      }\n      const lines = body.split(/\\r\\n|\\r|\\n/);\n      let currentElement = 0;\n      let currentElementCount = 0;\n      for (let i = 0; i < lines.length; i++) {\n        let line = lines[i];\n        line = line.trim();\n        if (line === \"\") {\n          continue;\n        }\n        if (currentElementCount >= header.elements[currentElement].count) {\n          currentElement++;\n          currentElementCount = 0;\n        }\n        const element = parseASCIIElement(header.elements[currentElement].properties, line);\n        handleElement(buffer, header.elements[currentElement].name, element);\n        currentElementCount++;\n      }\n      return postProcess(buffer);\n    }\n    function postProcess(buffer) {\n      let geometry2 = new BufferGeometry();\n      if (buffer.indices.length > 0) {\n        geometry2.setIndex(buffer.indices);\n      }\n      geometry2.setAttribute(\"position\", new Float32BufferAttribute(buffer.vertices, 3));\n      if (buffer.normals.length > 0) {\n        geometry2.setAttribute(\"normal\", new Float32BufferAttribute(buffer.normals, 3));\n      }\n      if (buffer.uvs.length > 0) {\n        geometry2.setAttribute(\"uv\", new Float32BufferAttribute(buffer.uvs, 2));\n      }\n      if (buffer.colors.length > 0) {\n        geometry2.setAttribute(\"color\", new Float32BufferAttribute(buffer.colors, 3));\n      }\n      if (buffer.faceVertexUvs.length > 0) {\n        geometry2 = geometry2.toNonIndexed();\n        geometry2.setAttribute(\"uv\", new Float32BufferAttribute(buffer.faceVertexUvs, 2));\n      }\n      geometry2.computeBoundingSphere();\n      return geometry2;\n    }\n    function handleElement(buffer, elementName, element) {\n      function findAttrName(names) {\n        for (let i = 0, l = names.length; i < l; i++) {\n          const name = names[i];\n          if (name in element)\n            return name;\n        }\n        return null;\n      }\n      const attrX = findAttrName([\"x\", \"px\", \"posx\"]) || \"x\";\n      const attrY = findAttrName([\"y\", \"py\", \"posy\"]) || \"y\";\n      const attrZ = findAttrName([\"z\", \"pz\", \"posz\"]) || \"z\";\n      const attrNX = findAttrName([\"nx\", \"normalx\"]);\n      const attrNY = findAttrName([\"ny\", \"normaly\"]);\n      const attrNZ = findAttrName([\"nz\", \"normalz\"]);\n      const attrS = findAttrName([\"s\", \"u\", \"texture_u\", \"tx\"]);\n      const attrT = findAttrName([\"t\", \"v\", \"texture_v\", \"ty\"]);\n      const attrR = findAttrName([\"red\", \"diffuse_red\", \"r\", \"diffuse_r\"]);\n      const attrG = findAttrName([\"green\", \"diffuse_green\", \"g\", \"diffuse_g\"]);\n      const attrB = findAttrName([\"blue\", \"diffuse_blue\", \"b\", \"diffuse_b\"]);\n      if (elementName === \"vertex\") {\n        buffer.vertices.push(element[attrX], element[attrY], element[attrZ]);\n        if (attrNX !== null && attrNY !== null && attrNZ !== null) {\n          buffer.normals.push(element[attrNX], element[attrNY], element[attrNZ]);\n        }\n        if (attrS !== null && attrT !== null) {\n          buffer.uvs.push(element[attrS], element[attrT]);\n        }\n        if (attrR !== null && attrG !== null && attrB !== null) {\n          _color.setRGB(element[attrR] / 255, element[attrG] / 255, element[attrB] / 255).convertSRGBToLinear();\n          buffer.colors.push(_color.r, _color.g, _color.b);\n        }\n      } else if (elementName === \"face\") {\n        const vertex_indices = element.vertex_indices || element.vertex_index;\n        const texcoord = element.texcoord;\n        if (vertex_indices.length === 3) {\n          buffer.indices.push(vertex_indices[0], vertex_indices[1], vertex_indices[2]);\n          if (texcoord && texcoord.length === 6) {\n            buffer.faceVertexUvs.push(texcoord[0], texcoord[1]);\n            buffer.faceVertexUvs.push(texcoord[2], texcoord[3]);\n            buffer.faceVertexUvs.push(texcoord[4], texcoord[5]);\n          }\n        } else if (vertex_indices.length === 4) {\n          buffer.indices.push(vertex_indices[0], vertex_indices[1], vertex_indices[3]);\n          buffer.indices.push(vertex_indices[1], vertex_indices[2], vertex_indices[3]);\n        }\n      }\n    }\n    function binaryRead(dataview, at, type, little_endian) {\n      switch (type) {\n        case \"int8\":\n        case \"char\":\n          return [dataview.getInt8(at), 1];\n        case \"uint8\":\n        case \"uchar\":\n          return [dataview.getUint8(at), 1];\n        case \"int16\":\n        case \"short\":\n          return [dataview.getInt16(at, little_endian), 2];\n        case \"uint16\":\n        case \"ushort\":\n          return [dataview.getUint16(at, little_endian), 2];\n        case \"int32\":\n        case \"int\":\n          return [dataview.getInt32(at, little_endian), 4];\n        case \"uint32\":\n        case \"uint\":\n          return [dataview.getUint32(at, little_endian), 4];\n        case \"float32\":\n        case \"float\":\n          return [dataview.getFloat32(at, little_endian), 4];\n        case \"float64\":\n        case \"double\":\n          return [dataview.getFloat64(at, little_endian), 8];\n      }\n    }\n    function binaryReadElement(dataview, at, properties, little_endian) {\n      const element = {};\n      let result, read = 0;\n      for (let i = 0; i < properties.length; i++) {\n        if (properties[i].type === \"list\") {\n          const list = [];\n          result = binaryRead(dataview, at + read, properties[i].countType, little_endian);\n          const n = result[0];\n          read += result[1];\n          for (let j = 0; j < n; j++) {\n            result = binaryRead(dataview, at + read, properties[i].itemType, little_endian);\n            list.push(result[0]);\n            read += result[1];\n          }\n          element[properties[i].name] = list;\n        } else {\n          result = binaryRead(dataview, at + read, properties[i].type, little_endian);\n          element[properties[i].name] = result[0];\n          read += result[1];\n        }\n      }\n      return [element, read];\n    }\n    function parseBinary(data2, header) {\n      const buffer = {\n        indices: [],\n        vertices: [],\n        normals: [],\n        uvs: [],\n        faceVertexUvs: [],\n        colors: []\n      };\n      const little_endian = header.format === \"binary_little_endian\";\n      const body = new DataView(data2, header.headerLength);\n      let result, loc = 0;\n      for (let currentElement = 0; currentElement < header.elements.length; currentElement++) {\n        for (let currentElementCount = 0; currentElementCount < header.elements[currentElement].count; currentElementCount++) {\n          result = binaryReadElement(body, loc, header.elements[currentElement].properties, little_endian);\n          loc += result[1];\n          const element = result[0];\n          handleElement(buffer, header.elements[currentElement].name, element);\n        }\n      }\n      return postProcess(buffer);\n    }\n    let geometry;\n    const scope = this;\n    if (data instanceof ArrayBuffer) {\n      const text = LoaderUtils.decodeText(new Uint8Array(data));\n      const header = parseHeader(text);\n      geometry = header.format === \"ascii\" ? parseASCII(text, header) : parseBinary(data, header);\n    } else {\n      geometry = parseASCII(data, parseHeader(data));\n    }\n    return geometry;\n  }\n}\nclass STLLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setResponseType(\"arraybuffer\");\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, function(text) {\n      try {\n        onLoad(scope.parse(text));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  parse(data) {\n    function isBinary(data2) {\n      const reader = new DataView(data2);\n      const face_size = 32 / 8 * 3 + 32 / 8 * 3 * 3 + 16 / 8;\n      const n_faces = reader.getUint32(80, true);\n      const expect = 80 + 32 / 8 + n_faces * face_size;\n      if (expect === reader.byteLength) {\n        return true;\n      }\n      const solid = [115, 111, 108, 105, 100];\n      for (let off = 0; off < 5; off++) {\n        if (matchDataViewAt(solid, reader, off))\n          return false;\n      }\n      return true;\n    }\n    function matchDataViewAt(query, reader, offset) {\n      for (let i = 0, il = query.length; i < il; i++) {\n        if (query[i] !== reader.getUint8(offset + i))\n          return false;\n      }\n      return true;\n    }\n    function parseBinary(data2) {\n      const reader = new DataView(data2);\n      const faces = reader.getUint32(80, true);\n      let r, g, b, hasColors = false, colors;\n      let defaultR, defaultG, defaultB, alpha;\n      for (let index2 = 0; index2 < 80 - 10; index2++) {\n        if (reader.getUint32(index2, false) == 1129270351 && reader.getUint8(index2 + 4) == 82 && reader.getUint8(index2 + 5) == 61) {\n          hasColors = true;\n          colors = new Float32Array(faces * 3 * 3);\n          defaultR = reader.getUint8(index2 + 6) / 255;\n          defaultG = reader.getUint8(index2 + 7) / 255;\n          defaultB = reader.getUint8(index2 + 8) / 255;\n          alpha = reader.getUint8(index2 + 9) / 255;\n        }\n      }\n      const dataOffset = 84;\n      const faceLength = 12 * 4 + 2;\n      const geometry = new BufferGeometry();\n      const vertices = new Float32Array(faces * 3 * 3);\n      const normals = new Float32Array(faces * 3 * 3);\n      for (let face = 0; face < faces; face++) {\n        const start = dataOffset + face * faceLength;\n        const normalX = reader.getFloat32(start, true);\n        const normalY = reader.getFloat32(start + 4, true);\n        const normalZ = reader.getFloat32(start + 8, true);\n        if (hasColors) {\n          const packedColor = reader.getUint16(start + 48, true);\n          if ((packedColor & 32768) === 0) {\n            r = (packedColor & 31) / 31;\n            g = (packedColor >> 5 & 31) / 31;\n            b = (packedColor >> 10 & 31) / 31;\n          } else {\n            r = defaultR;\n            g = defaultG;\n            b = defaultB;\n          }\n        }\n        for (let i = 1; i <= 3; i++) {\n          const vertexstart = start + i * 12;\n          const componentIdx = face * 3 * 3 + (i - 1) * 3;\n          vertices[componentIdx] = reader.getFloat32(vertexstart, true);\n          vertices[componentIdx + 1] = reader.getFloat32(vertexstart + 4, true);\n          vertices[componentIdx + 2] = reader.getFloat32(vertexstart + 8, true);\n          normals[componentIdx] = normalX;\n          normals[componentIdx + 1] = normalY;\n          normals[componentIdx + 2] = normalZ;\n          if (hasColors) {\n            colors[componentIdx] = r;\n            colors[componentIdx + 1] = g;\n            colors[componentIdx + 2] = b;\n          }\n        }\n      }\n      geometry.setAttribute(\"position\", new BufferAttribute(vertices, 3));\n      geometry.setAttribute(\"normal\", new BufferAttribute(normals, 3));\n      if (hasColors) {\n        geometry.setAttribute(\"color\", new BufferAttribute(colors, 3));\n        geometry.hasColors = true;\n        geometry.alpha = alpha;\n      }\n      return geometry;\n    }\n    function parseASCII(data2) {\n      const geometry = new BufferGeometry();\n      const patternSolid = /solid([\\s\\S]*?)endsolid/g;\n      const patternFace = /facet([\\s\\S]*?)endfacet/g;\n      let faceCounter = 0;\n      const patternFloat = /[\\s]+([+-]?(?:\\d*)(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)/.source;\n      const patternVertex = new RegExp(\"vertex\" + patternFloat + patternFloat + patternFloat, \"g\");\n      const patternNormal = new RegExp(\"normal\" + patternFloat + patternFloat + patternFloat, \"g\");\n      const vertices = [];\n      const normals = [];\n      const normal = new Vector3();\n      let result;\n      let groupCount = 0;\n      let startVertex = 0;\n      let endVertex = 0;\n      while ((result = patternSolid.exec(data2)) !== null) {\n        startVertex = endVertex;\n        const solid = result[0];\n        while ((result = patternFace.exec(solid)) !== null) {\n          let vertexCountPerFace = 0;\n          let normalCountPerFace = 0;\n          const text = result[0];\n          while ((result = patternNormal.exec(text)) !== null) {\n            normal.x = parseFloat(result[1]);\n            normal.y = parseFloat(result[2]);\n            normal.z = parseFloat(result[3]);\n            normalCountPerFace++;\n          }\n          while ((result = patternVertex.exec(text)) !== null) {\n            vertices.push(parseFloat(result[1]), parseFloat(result[2]), parseFloat(result[3]));\n            normals.push(normal.x, normal.y, normal.z);\n            vertexCountPerFace++;\n            endVertex++;\n          }\n          if (normalCountPerFace !== 1) {\n            console.error(\"THREE.STLLoader: Something isn't right with the normal of face number \" + faceCounter);\n          }\n          if (vertexCountPerFace !== 3) {\n            console.error(\"THREE.STLLoader: Something isn't right with the vertices of face number \" + faceCounter);\n          }\n          faceCounter++;\n        }\n        const start = startVertex;\n        const count = endVertex - startVertex;\n        geometry.addGroup(start, count, groupCount);\n        groupCount++;\n      }\n      geometry.setAttribute(\"position\", new Float32BufferAttribute(vertices, 3));\n      geometry.setAttribute(\"normal\", new Float32BufferAttribute(normals, 3));\n      return geometry;\n    }\n    function ensureString(buffer) {\n      if (typeof buffer !== \"string\") {\n        return LoaderUtils.decodeText(new Uint8Array(buffer));\n      }\n      return buffer;\n    }\n    function ensureBinary(buffer) {\n      if (typeof buffer === \"string\") {\n        const array_buffer = new Uint8Array(buffer.length);\n        for (let i = 0; i < buffer.length; i++) {\n          array_buffer[i] = buffer.charCodeAt(i) & 255;\n        }\n        return array_buffer.buffer || array_buffer;\n      } else {\n        return buffer;\n      }\n    }\n    const binData = ensureBinary(data);\n    return isBinary(binData) ? parseBinary(binData) : parseASCII(ensureString(data));\n  }\n}\nclass MTLLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n  }\n  load(url, onLoad, onProgress, onError) {\n    const scope = this;\n    const path = this.path === \"\" ? LoaderUtils.extractUrlBase(url) : this.path;\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, function(text) {\n      try {\n        onLoad(scope.parse(text, path));\n      } catch (e) {\n        if (onError) {\n          onError(e);\n        } else {\n          console.error(e);\n        }\n        scope.manager.itemError(url);\n      }\n    }, onProgress, onError);\n  }\n  setMaterialOptions(value) {\n    this.materialOptions = value;\n    return this;\n  }\n  parse(text, path) {\n    const lines = text.split(\"\\n\");\n    let info = {};\n    const delimiter_pattern = /\\s+/;\n    const materialsInfo = {};\n    for (let i = 0; i < lines.length; i++) {\n      let line = lines[i];\n      line = line.trim();\n      if (line.length === 0 || line.charAt(0) === \"#\") {\n        continue;\n      }\n      const pos = line.indexOf(\" \");\n      let key = pos >= 0 ? line.substring(0, pos) : line;\n      key = key.toLowerCase();\n      let value = pos >= 0 ? line.substring(pos + 1) : \"\";\n      value = value.trim();\n      if (key === \"newmtl\") {\n        info = { name: value };\n        materialsInfo[value] = info;\n      } else {\n        if (key === \"ka\" || key === \"kd\" || key === \"ks\" || key === \"ke\") {\n          const ss = value.split(delimiter_pattern, 3);\n          info[key] = [parseFloat(ss[0]), parseFloat(ss[1]), parseFloat(ss[2])];\n        } else {\n          info[key] = value;\n        }\n      }\n    }\n    const materialCreator = new MaterialCreator(this.resourcePath || path, this.materialOptions);\n    materialCreator.setCrossOrigin(this.crossOrigin);\n    materialCreator.setManager(this.manager);\n    materialCreator.setMaterials(materialsInfo);\n    return materialCreator;\n  }\n}\nclass MaterialCreator {\n  constructor(baseUrl = \"\", options = {}) {\n    this.baseUrl = baseUrl;\n    this.options = options;\n    this.materialsInfo = {};\n    this.materials = {};\n    this.materialsArray = [];\n    this.nameLookup = {};\n    this.crossOrigin = \"anonymous\";\n    this.side = this.options.side !== void 0 ? this.options.side : FrontSide;\n    this.wrap = this.options.wrap !== void 0 ? this.options.wrap : RepeatWrapping;\n  }\n  setCrossOrigin(value) {\n    this.crossOrigin = value;\n    return this;\n  }\n  setManager(value) {\n    this.manager = value;\n  }\n  setMaterials(materialsInfo) {\n    this.materialsInfo = this.convert(materialsInfo);\n    this.materials = {};\n    this.materialsArray = [];\n    this.nameLookup = {};\n  }\n  convert(materialsInfo) {\n    if (!this.options)\n      return materialsInfo;\n    const converted = {};\n    for (const mn in materialsInfo) {\n      const mat = materialsInfo[mn];\n      const covmat = {};\n      converted[mn] = covmat;\n      for (const prop in mat) {\n        let save = true;\n        let value = mat[prop];\n        const lprop = prop.toLowerCase();\n        switch (lprop) {\n          case \"kd\":\n          case \"ka\":\n          case \"ks\":\n            if (this.options && this.options.normalizeRGB) {\n              value = [value[0] / 255, value[1] / 255, value[2] / 255];\n            }\n            if (this.options && this.options.ignoreZeroRGBs) {\n              if (value[0] === 0 && value[1] === 0 && value[2] === 0) {\n                save = false;\n              }\n            }\n            break;\n        }\n        if (save) {\n          covmat[lprop] = value;\n        }\n      }\n    }\n    return converted;\n  }\n  preload() {\n    for (const mn in this.materialsInfo) {\n      this.create(mn);\n    }\n  }\n  getIndex(materialName) {\n    return this.nameLookup[materialName];\n  }\n  getAsArray() {\n    let index2 = 0;\n    for (const mn in this.materialsInfo) {\n      this.materialsArray[index2] = this.create(mn);\n      this.nameLookup[mn] = index2;\n      index2++;\n    }\n    return this.materialsArray;\n  }\n  create(materialName) {\n    if (this.materials[materialName] === void 0) {\n      this.createMaterial_(materialName);\n    }\n    return this.materials[materialName];\n  }\n  createMaterial_(materialName) {\n    const scope = this;\n    const mat = this.materialsInfo[materialName];\n    const params = {\n      name: materialName,\n      side: this.side\n    };\n    function resolveURL(baseUrl, url) {\n      if (typeof url !== \"string\" || url === \"\")\n        return \"\";\n      if (/^https?:\\/\\//i.test(url))\n        return url;\n      return baseUrl + url;\n    }\n    function setMapForType(mapType, value) {\n      if (params[mapType])\n        return;\n      const texParams = scope.getTextureParams(value, params);\n      const map = scope.loadTexture(resolveURL(scope.baseUrl, texParams.url));\n      map.repeat.copy(texParams.scale);\n      map.offset.copy(texParams.offset);\n      map.wrapS = scope.wrap;\n      map.wrapT = scope.wrap;\n      if (mapType === \"map\" || mapType === \"emissiveMap\") {\n        map.encoding = sRGBEncoding;\n      }\n      params[mapType] = map;\n    }\n    for (const prop in mat) {\n      const value = mat[prop];\n      let n;\n      if (value === \"\")\n        continue;\n      switch (prop.toLowerCase()) {\n        case \"kd\":\n          params.color = new Color().fromArray(value).convertSRGBToLinear();\n          break;\n        case \"ks\":\n          params.specular = new Color().fromArray(value).convertSRGBToLinear();\n          break;\n        case \"ke\":\n          params.emissive = new Color().fromArray(value).convertSRGBToLinear();\n          break;\n        case \"map_kd\":\n          setMapForType(\"map\", value);\n          break;\n        case \"map_ks\":\n          setMapForType(\"specularMap\", value);\n          break;\n        case \"map_ke\":\n          setMapForType(\"emissiveMap\", value);\n          break;\n        case \"norm\":\n          setMapForType(\"normalMap\", value);\n          break;\n        case \"map_bump\":\n        case \"bump\":\n          setMapForType(\"bumpMap\", value);\n          break;\n        case \"map_d\":\n          setMapForType(\"alphaMap\", value);\n          params.transparent = true;\n          break;\n        case \"ns\":\n          params.shininess = parseFloat(value);\n          break;\n        case \"d\":\n          n = parseFloat(value);\n          if (n < 1) {\n            params.opacity = n;\n            params.transparent = true;\n          }\n          break;\n        case \"tr\":\n          n = parseFloat(value);\n          if (this.options && this.options.invertTrProperty)\n            n = 1 - n;\n          if (n > 0) {\n            params.opacity = 1 - n;\n            params.transparent = true;\n          }\n          break;\n      }\n    }\n    this.materials[materialName] = new MeshPhongMaterial(params);\n    return this.materials[materialName];\n  }\n  getTextureParams(value, matParams) {\n    const texParams = {\n      scale: new Vector2(1, 1),\n      offset: new Vector2(0, 0)\n    };\n    const items = value.split(/\\s+/);\n    let pos;\n    pos = items.indexOf(\"-bm\");\n    if (pos >= 0) {\n      matParams.bumpScale = parseFloat(items[pos + 1]);\n      items.splice(pos, 2);\n    }\n    pos = items.indexOf(\"-s\");\n    if (pos >= 0) {\n      texParams.scale.set(parseFloat(items[pos + 1]), parseFloat(items[pos + 2]));\n      items.splice(pos, 4);\n    }\n    pos = items.indexOf(\"-o\");\n    if (pos >= 0) {\n      texParams.offset.set(parseFloat(items[pos + 1]), parseFloat(items[pos + 2]));\n      items.splice(pos, 4);\n    }\n    texParams.url = items.join(\" \").trim();\n    return texParams;\n  }\n  loadTexture(url, mapping, onLoad, onProgress, onError) {\n    const manager2 = this.manager !== void 0 ? this.manager : DefaultLoadingManager;\n    let loader = manager2.getHandler(url);\n    if (loader === null) {\n      loader = new TextureLoader(manager2);\n    }\n    if (loader.setCrossOrigin)\n      loader.setCrossOrigin(this.crossOrigin);\n    const texture = loader.load(url, onLoad, onProgress, onError);\n    if (mapping !== void 0)\n      texture.mapping = mapping;\n    return texture;\n  }\n}\nconst _taskCache = /* @__PURE__ */ new WeakMap();\nclass DRACOLoader extends Loader {\n  constructor(manager2) {\n    super(manager2);\n    this.decoderPath = \"\";\n    this.decoderConfig = {};\n    this.decoderBinary = null;\n    this.decoderPending = null;\n    this.workerLimit = 4;\n    this.workerPool = [];\n    this.workerNextTaskID = 1;\n    this.workerSourceURL = \"\";\n    this.defaultAttributeIDs = {\n      position: \"POSITION\",\n      normal: \"NORMAL\",\n      color: \"COLOR\",\n      uv: \"TEX_COORD\"\n    };\n    this.defaultAttributeTypes = {\n      position: \"Float32Array\",\n      normal: \"Float32Array\",\n      color: \"Float32Array\",\n      uv: \"Float32Array\"\n    };\n  }\n  setDecoderPath(path) {\n    this.decoderPath = path;\n    return this;\n  }\n  setDecoderConfig(config) {\n    this.decoderConfig = config;\n    return this;\n  }\n  setWorkerLimit(workerLimit) {\n    this.workerLimit = workerLimit;\n    return this;\n  }\n  load(url, onLoad, onProgress, onError) {\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.path);\n    loader.setResponseType(\"arraybuffer\");\n    loader.setRequestHeader(this.requestHeader);\n    loader.setWithCredentials(this.withCredentials);\n    loader.load(url, (buffer) => {\n      const taskConfig = {\n        attributeIDs: this.defaultAttributeIDs,\n        attributeTypes: this.defaultAttributeTypes,\n        useUniqueIDs: false\n      };\n      this.decodeGeometry(buffer, taskConfig).then(onLoad).catch(onError);\n    }, onProgress, onError);\n  }\n  decodeDracoFile(buffer, callback, attributeIDs, attributeTypes) {\n    const taskConfig = {\n      attributeIDs: attributeIDs || this.defaultAttributeIDs,\n      attributeTypes: attributeTypes || this.defaultAttributeTypes,\n      useUniqueIDs: !!attributeIDs\n    };\n    this.decodeGeometry(buffer, taskConfig).then(callback);\n  }\n  decodeGeometry(buffer, taskConfig) {\n    for (const attribute in taskConfig.attributeTypes) {\n      const type = taskConfig.attributeTypes[attribute];\n      if (type.BYTES_PER_ELEMENT !== void 0) {\n        taskConfig.attributeTypes[attribute] = type.name;\n      }\n    }\n    const taskKey = JSON.stringify(taskConfig);\n    if (_taskCache.has(buffer)) {\n      const cachedTask = _taskCache.get(buffer);\n      if (cachedTask.key === taskKey) {\n        return cachedTask.promise;\n      } else if (buffer.byteLength === 0) {\n        throw new Error(\"THREE.DRACOLoader: Unable to re-decode a buffer with different settings. Buffer has already been transferred.\");\n      }\n    }\n    let worker;\n    const taskID = this.workerNextTaskID++;\n    const taskCost = buffer.byteLength;\n    const geometryPending = this._getWorker(taskID, taskCost).then((_worker) => {\n      worker = _worker;\n      return new Promise((resolve, reject) => {\n        worker._callbacks[taskID] = { resolve, reject };\n        worker.postMessage({ type: \"decode\", id: taskID, taskConfig, buffer }, [buffer]);\n      });\n    }).then((message) => this._createGeometry(message.geometry));\n    geometryPending.catch(() => true).then(() => {\n      if (worker && taskID) {\n        this._releaseTask(worker, taskID);\n      }\n    });\n    _taskCache.set(buffer, {\n      key: taskKey,\n      promise: geometryPending\n    });\n    return geometryPending;\n  }\n  _createGeometry(geometryData) {\n    const geometry = new BufferGeometry();\n    if (geometryData.index) {\n      geometry.setIndex(new BufferAttribute(geometryData.index.array, 1));\n    }\n    for (let i = 0; i < geometryData.attributes.length; i++) {\n      const attribute = geometryData.attributes[i];\n      const name = attribute.name;\n      const array = attribute.array;\n      const itemSize = attribute.itemSize;\n      geometry.setAttribute(name, new BufferAttribute(array, itemSize));\n    }\n    return geometry;\n  }\n  _loadLibrary(url, responseType) {\n    const loader = new FileLoader(this.manager);\n    loader.setPath(this.decoderPath);\n    loader.setResponseType(responseType);\n    loader.setWithCredentials(this.withCredentials);\n    return new Promise((resolve, reject) => {\n      loader.load(url, resolve, void 0, reject);\n    });\n  }\n  preload() {\n    this._initDecoder();\n    return this;\n  }\n  _initDecoder() {\n    if (this.decoderPending)\n      return this.decoderPending;\n    const useJS = typeof WebAssembly !== \"object\" || this.decoderConfig.type === \"js\";\n    const librariesPending = [];\n    if (useJS) {\n      librariesPending.push(this._loadLibrary(\"draco_decoder.js\", \"text\"));\n    } else {\n      librariesPending.push(this._loadLibrary(\"draco_wasm_wrapper.js\", \"text\"));\n      librariesPending.push(this._loadLibrary(\"draco_decoder.wasm\", \"arraybuffer\"));\n    }\n    this.decoderPending = Promise.all(librariesPending).then((libraries) => {\n      const jsContent = libraries[0];\n      if (!useJS) {\n        this.decoderConfig.wasmBinary = libraries[1];\n      }\n      const fn = DRACOWorker.toString();\n      const body = [\n        \"/* draco decoder */\",\n        jsContent,\n        \"\",\n        \"/* worker */\",\n        fn.substring(fn.indexOf(\"{\") + 1, fn.lastIndexOf(\"}\"))\n      ].join(\"\\n\");\n      this.workerSourceURL = URL.createObjectURL(new Blob([body]));\n    });\n    return this.decoderPending;\n  }\n  _getWorker(taskID, taskCost) {\n    return this._initDecoder().then(() => {\n      if (this.workerPool.length < this.workerLimit) {\n        const worker2 = new Worker(this.workerSourceURL);\n        worker2._callbacks = {};\n        worker2._taskCosts = {};\n        worker2._taskLoad = 0;\n        worker2.postMessage({ type: \"init\", decoderConfig: this.decoderConfig });\n        worker2.onmessage = function(e) {\n          const message = e.data;\n          switch (message.type) {\n            case \"decode\":\n              worker2._callbacks[message.id].resolve(message);\n              break;\n            case \"error\":\n              worker2._callbacks[message.id].reject(message);\n              break;\n            default:\n              console.error('THREE.DRACOLoader: Unexpected message, \"' + message.type + '\"');\n          }\n        };\n        this.workerPool.push(worker2);\n      } else {\n        this.workerPool.sort(function(a, b) {\n          return a._taskLoad > b._taskLoad ? -1 : 1;\n        });\n      }\n      const worker = this.workerPool[this.workerPool.length - 1];\n      worker._taskCosts[taskID] = taskCost;\n      worker._taskLoad += taskCost;\n      return worker;\n    });\n  }\n  _releaseTask(worker, taskID) {\n    worker._taskLoad -= worker._taskCosts[taskID];\n    delete worker._callbacks[taskID];\n    delete worker._taskCosts[taskID];\n  }\n  debug() {\n    console.log(\"Task load: \", this.workerPool.map((worker) => worker._taskLoad));\n  }\n  dispose() {\n    for (let i = 0; i < this.workerPool.length; ++i) {\n      this.workerPool[i].terminate();\n    }\n    this.workerPool.length = 0;\n    return this;\n  }\n}\nfunction DRACOWorker() {\n  let decoderConfig;\n  let decoderPending;\n  onmessage = function(e) {\n    const message = e.data;\n    switch (message.type) {\n      case \"init\":\n        decoderConfig = message.decoderConfig;\n        decoderPending = new Promise(function(resolve) {\n          decoderConfig.onModuleLoaded = function(draco) {\n            resolve({ draco });\n          };\n          DracoDecoderModule(decoderConfig);\n        });\n        break;\n      case \"decode\":\n        const buffer = message.buffer;\n        const taskConfig = message.taskConfig;\n        decoderPending.then((module) => {\n          const draco = module.draco;\n          const decoder = new draco.Decoder();\n          const decoderBuffer = new draco.DecoderBuffer();\n          decoderBuffer.Init(new Int8Array(buffer), buffer.byteLength);\n          try {\n            const geometry = decodeGeometry(draco, decoder, decoderBuffer, taskConfig);\n            const buffers = geometry.attributes.map((attr) => attr.array.buffer);\n            if (geometry.index)\n              buffers.push(geometry.index.array.buffer);\n            self.postMessage({ type: \"decode\", id: message.id, geometry }, buffers);\n          } catch (error) {\n            console.error(error);\n            self.postMessage({ type: \"error\", id: message.id, error: error.message });\n          } finally {\n            draco.destroy(decoderBuffer);\n            draco.destroy(decoder);\n          }\n        });\n        break;\n    }\n  };\n  function decodeGeometry(draco, decoder, decoderBuffer, taskConfig) {\n    const attributeIDs = taskConfig.attributeIDs;\n    const attributeTypes = taskConfig.attributeTypes;\n    let dracoGeometry;\n    let decodingStatus;\n    const geometryType = decoder.GetEncodedGeometryType(decoderBuffer);\n    if (geometryType === draco.TRIANGULAR_MESH) {\n      dracoGeometry = new draco.Mesh();\n      decodingStatus = decoder.DecodeBufferToMesh(decoderBuffer, dracoGeometry);\n    } else if (geometryType === draco.POINT_CLOUD) {\n      dracoGeometry = new draco.PointCloud();\n      decodingStatus = decoder.DecodeBufferToPointCloud(decoderBuffer, dracoGeometry);\n    } else {\n      throw new Error(\"THREE.DRACOLoader: Unexpected geometry type.\");\n    }\n    if (!decodingStatus.ok() || dracoGeometry.ptr === 0) {\n      throw new Error(\"THREE.DRACOLoader: Decoding failed: \" + decodingStatus.error_msg());\n    }\n    const geometry = { index: null, attributes: [] };\n    for (const attributeName in attributeIDs) {\n      const attributeType = self[attributeTypes[attributeName]];\n      let attribute;\n      let attributeID;\n      if (taskConfig.useUniqueIDs) {\n        attributeID = attributeIDs[attributeName];\n        attribute = decoder.GetAttributeByUniqueId(dracoGeometry, attributeID);\n      } else {\n        attributeID = decoder.GetAttributeId(dracoGeometry, draco[attributeIDs[attributeName]]);\n        if (attributeID === -1)\n          continue;\n        attribute = decoder.GetAttribute(dracoGeometry, attributeID);\n      }\n      geometry.attributes.push(decodeAttribute(draco, decoder, dracoGeometry, attributeName, attributeType, attribute));\n    }\n    if (geometryType === draco.TRIANGULAR_MESH) {\n      geometry.index = decodeIndex(draco, decoder, dracoGeometry);\n    }\n    draco.destroy(dracoGeometry);\n    return geometry;\n  }\n  function decodeIndex(draco, decoder, dracoGeometry) {\n    const numFaces = dracoGeometry.num_faces();\n    const numIndices = numFaces * 3;\n    const byteLength = numIndices * 4;\n    const ptr = draco._malloc(byteLength);\n    decoder.GetTrianglesUInt32Array(dracoGeometry, byteLength, ptr);\n    const index2 = new Uint32Array(draco.HEAPF32.buffer, ptr, numIndices).slice();\n    draco._free(ptr);\n    return { array: index2, itemSize: 1 };\n  }\n  function decodeAttribute(draco, decoder, dracoGeometry, attributeName, attributeType, attribute) {\n    const numComponents = attribute.num_components();\n    const numPoints = dracoGeometry.num_points();\n    const numValues = numPoints * numComponents;\n    const byteLength = numValues * attributeType.BYTES_PER_ELEMENT;\n    const dataType = getDracoDataType(draco, attributeType);\n    const ptr = draco._malloc(byteLength);\n    decoder.GetAttributeDataArrayForAllPoints(dracoGeometry, attribute, dataType, byteLength, ptr);\n    const array = new attributeType(draco.HEAPF32.buffer, ptr, numValues).slice();\n    draco._free(ptr);\n    return {\n      name: attributeName,\n      array,\n      itemSize: numComponents\n    };\n  }\n  function getDracoDataType(draco, attributeType) {\n    switch (attributeType) {\n      case Float32Array:\n        return draco.DT_FLOAT32;\n      case Int8Array:\n        return draco.DT_INT8;\n      case Int16Array:\n        return draco.DT_INT16;\n      case Int32Array:\n        return draco.DT_INT32;\n      case Uint8Array:\n        return draco.DT_UINT8;\n      case Uint16Array:\n        return draco.DT_UINT16;\n      case Uint32Array:\n        return draco.DT_UINT32;\n    }\n  }\n}\nconst box = new Box3();\nconst manager = new LoadingManager();\nmanager.addHandler(/\\.dds$/i, new DDSLoader());\nmanager.addHandler(/\\.tga$/i, new TGALoader());\nfunction getSize(obj) {\n  box.setFromObject(obj);\n  return box.getSize(new Vector3());\n}\nfunction getCenter(obj) {\n  box.setFromObject(obj);\n  return box.getCenter(new Vector3());\n}\nfunction getExtension(str) {\n  const pathSplit = str.split(\".\");\n  if (pathSplit.length <= 1) {\n    return \"\";\n  } else {\n    let extension = pathSplit.pop();\n    extension = extension.toLowerCase();\n    return extension;\n  }\n}\nfunction getLoader(filePath, fileType, isDraco, plyMaterial, dracoDir) {\n  let fileExtension;\n  if (fileType) {\n    fileExtension = fileType;\n  } else {\n    fileExtension = getExtension(filePath);\n  }\n  if (fileExtension === \"glb\") {\n    fileExtension = \"gltf\";\n  }\n  let obj = {\n    loader: null,\n    getObject: null\n  };\n  switch (fileExtension) {\n    case \"dae\":\n      obj = {\n        loader: new ColladaLoader(manager),\n        getObject: (collada) => {\n          return collada.scene;\n        }\n      };\n      break;\n    case \"fbx\":\n      obj = {\n        loader: new FBXLoader(manager)\n      };\n      break;\n    case \"gltf\":\n      obj = {\n        loader: new GLTFLoader(manager),\n        getObject: (gltf) => {\n          const object = gltf.scene;\n          if (gltf.animations) {\n            object.animations = gltf.animations;\n          }\n          return object;\n        }\n      };\n      enableDraco(isDraco, obj, dracoDir);\n      break;\n    case \"obj\":\n      obj = {\n        loader: new OBJLoader(manager)\n      };\n      break;\n    case \"ply\":\n      obj = {\n        loader: new PLYLoader(manager),\n        getObject: (geometry) => {\n          geometry.computeVertexNormals();\n          return new Mesh(geometry, plyMaterial === \"MeshStandardMaterial\" ? new MeshStandardMaterial() : new MeshBasicMaterial({ vertexColors: true }));\n        }\n      };\n      break;\n    case \"stl\":\n      obj = {\n        loader: new STLLoader(manager),\n        getObject: (geometry) => {\n          return new Mesh(geometry, new MeshPhongMaterial());\n        }\n      };\n      break;\n    case \"json\":\n      obj = {\n        loader: new ObjectLoader(manager)\n      };\n      break;\n  }\n  return obj;\n}\nfunction getMTLLoader() {\n  const mtlLoader = new MTLLoader(manager);\n  return mtlLoader;\n}\nfunction enableDraco(isDraco, obj, dir) {\n  if (isDraco) {\n    const dracoLoader = new DRACOLoader();\n    dracoLoader.setDecoderPath(dir || \"assets/draco/gltf/\");\n    dracoLoader.setDecoderConfig({ type: \"js\" });\n    obj.loader.setDRACOLoader(dracoLoader);\n  }\n}\nvar vue3dLoader_vue_vue_type_style_index_0_scoped_true_lang = \"\";\nvar _export_sfc = (sfc, props) => {\n  const target = sfc.__vccOpts || sfc;\n  for (const [key, val] of props) {\n    target[key] = val;\n  }\n  return target;\n};\nconst __default__ = defineComponent({\n  name: \"vue3dLoader\"\n});\nconst _sfc_main = defineComponent({\n  ...__default__,\n  props: {\n    filePath: null,\n    fileType: null,\n    width: null,\n    height: null,\n    position: null,\n    rotation: null,\n    scale: null,\n    lights: { default: () => {\n      return [\n        {\n          type: \"AmbientLight\",\n          color: 11184810\n        },\n        {\n          type: \"DirectionalLight\",\n          position: { x: 1, y: 1, z: 1 },\n          color: 16777215,\n          intensity: 0.8\n        }\n      ];\n    } },\n    cameraPosition: { default: () => {\n      return { x: 0, y: 0, z: 0 };\n    } },\n    cameraRotation: null,\n    cameraUp: null,\n    cameraLookAt: null,\n    backgroundColor: { default: () => {\n      return 16777215;\n    } },\n    backgroundAlpha: { default: () => {\n      return 1;\n    } },\n    controlsOptions: null,\n    crossOrigin: { default: \"anonymous\" },\n    requestHeader: null,\n    outputEncoding: { default: () => {\n      return \"linear\";\n    } },\n    webGLRendererOptions: { default: () => {\n      return {};\n    } },\n    mtlPath: { default: \"\" },\n    showFps: { type: Boolean, default: false },\n    textureImage: { default: \"\" },\n    clearScene: { type: Boolean, default: false },\n    parallelLoad: { type: Boolean, default: false },\n    labels: { default: () => {\n      return [];\n    } },\n    autoPlay: { type: Boolean, default: true },\n    enableDraco: { type: Boolean, default: false },\n    dracoDir: null,\n    intersectRecursive: { type: Boolean, default: false },\n    enableDamping: { type: Boolean },\n    dampingFactor: null,\n    verticalCtrl: { type: [Boolean, Object], default: false },\n    horizontalCtrl: { type: [Boolean, Object], default: false },\n    plyMaterial: { default: \"MeshStandardMaterial\" },\n    enableAxesHelper: { type: Boolean, default: false },\n    axesHelperSize: { default: 100 },\n    enableGridHelper: { type: Boolean, default: false },\n    minDistance: { default: 0 },\n    maxDistance: { default: Infinity },\n    pointLightFollowCamera: { type: Boolean }\n  },\n  emits: [\n    \"mousedown\",\n    \"mousemove\",\n    \"mouseup\",\n    \"click\",\n    \"dblclick\",\n    \"load\",\n    \"process\",\n    \"error\"\n  ],\n  setup(__props, { expose, emit }) {\n    const props = __props;\n    let object = null;\n    const raycaster = new Raycaster();\n    const mouse = new Vector2();\n    const camera = new PerspectiveCamera(45, 1, 0.1, 1e5);\n    const clock = new Clock();\n    let scene = new Scene();\n    let renderer = null;\n    let controls = {};\n    let allLights = [];\n    let loader = null;\n    let requestAnimationId = 0;\n    let stats = null;\n    let mixers = null;\n    let textureLoader = null;\n    let axesHelper = null;\n    let gridHelper = null;\n    const size = ref({ width: props.width || 0, height: props.height || 0 });\n    const loaderIndex = ref(0);\n    const objectPositionHasSet = ref(false);\n    const isMultipleModels = ref(false);\n    const containerElement = ref(null);\n    const canvasElement = ref(null);\n    onMounted(() => {\n      init();\n    });\n    onBeforeUnmount(() => {\n      destroyScene();\n    });\n    watch([() => props.autoPlay], () => {\n      playAnimations();\n    });\n    watch([() => props.width, () => props.height], () => {\n      size.value = {\n        width: props.width || 0,\n        height: props.height || 0\n      };\n    });\n    watch([\n      () => props.enableAxesHelper,\n      () => props.axesHelperSize,\n      () => props.enableGridHelper\n    ], () => {\n      setAxesAndGridHelper();\n    });\n    watch([() => props.minDistance, () => props.maxDistance], () => {\n      setVerticalHorizontalControls();\n    });\n    watch([\n      () => props.filePath,\n      () => props.fileType,\n      () => props.mtlPath,\n      () => props.clearScene,\n      () => props.backgroundAlpha,\n      () => props.backgroundColor\n    ], (valueArray) => {\n      if (valueArray[0] || valueArray[1]) {\n        resetScene();\n      }\n      if (valueArray[2]) {\n        loadModelSelect();\n      }\n      if (valueArray[3]) {\n        clearScene();\n      }\n      if (valueArray[4] || valueArray[5]) {\n        updateRenderer();\n      }\n    }, { deep: true });\n    watch([\n      () => props.rotation,\n      () => props.position,\n      () => props.scale,\n      () => props.lights\n    ], (valueArray) => {\n      const attr = [\"rotation\", \"position\", \"scale\"];\n      valueArray.forEach((item, index2) => {\n        if (index2 < 3 && item) {\n          setObjectAttribute(attr[index2], item);\n        } else {\n          updateLights();\n        }\n      });\n    }, { deep: true });\n    watch([() => size], () => {\n      updateCamera(true);\n      updateRenderer();\n    }, { deep: true });\n    watch([() => props.controlsOptions], () => {\n      updateControls();\n    }, { deep: true });\n    watch([() => props.cameraRotation, () => props.cameraPosition], () => {\n      updateCamera();\n    }, { deep: true });\n    watch([() => props.labels], () => {\n      setSpriteLabel();\n    }, { deep: true });\n    function resetScene() {\n      destroyScene();\n      init();\n    }\n    function destroyScene() {\n      if (requestAnimationId) {\n        cancelAnimationFrame(requestAnimationId);\n      }\n      if (renderer) {\n        renderer.dispose();\n      }\n      if (controls && Object.keys(controls).length > 0) {\n        controls.dispose();\n        controls = {};\n      }\n      const el = containerElement.value;\n      el.removeEventListener(\"mousedown\", onMouseDown, false);\n      el.removeEventListener(\"mousemove\", onMouseMove, false);\n      el.removeEventListener(\"mouseup\", onMouseUp, false);\n      el.removeEventListener(\"click\", onClick, false);\n      el.removeEventListener(\"dblclick\", onDblclick, false);\n      window.removeEventListener(\"resize\", onResize, false);\n      object = null;\n      if (scene) {\n        scene.clear();\n      }\n    }\n    function init() {\n      const {\n        filePath,\n        outputEncoding,\n        webGLRendererOptions,\n        showFps,\n        enableDamping,\n        dampingFactor,\n        labels\n      } = props;\n      if (filePath && typeof filePath === \"object\") {\n        isMultipleModels.value = true;\n      }\n      const el = containerElement.value;\n      setContainerElementStyle(el);\n      onResize();\n      const WEB_GL_OPTIONS = { antialias: true, alpha: true };\n      const options = Object.assign({}, WEB_GL_OPTIONS, webGLRendererOptions, {\n        canvas: canvasElement.value\n      });\n      if (!renderer) {\n        renderer = new WebGLRenderer(options);\n        renderer.shadowMap.enabled = true;\n        const encoding = outputEncoding === \"linear\" ? LinearEncoding : sRGBEncoding;\n        renderer.outputEncoding = encoding;\n      }\n      if (!controls || Object.keys(controls).length <= 0) {\n        controls = new OrbitControls(camera, el);\n        if (enableDamping) {\n          controls.enableDamping = true;\n          if (dampingFactor != void 0) {\n            controls.dampingFactor = dampingFactor;\n          }\n        }\n      }\n      setVerticalHorizontalControls();\n      setAxesAndGridHelper();\n      loadModelSelect();\n      update();\n      enableMousemoveEvent(true);\n      el.addEventListener(\"mousedown\", onMouseDown, false);\n      el.addEventListener(\"mouseup\", onMouseUp, false);\n      el.addEventListener(\"click\", onClick, false);\n      el.addEventListener(\"dblclick\", onDblclick, false);\n      window.addEventListener(\"resize\", onResize, false);\n      if (showFps) {\n        stats = Stats();\n        el.appendChild(stats.dom);\n      }\n      animate();\n      if (labels && labels.length > 0) {\n        setSpriteLabel();\n      }\n    }\n    function setContainerElementStyle(el) {\n      const { width, height } = props;\n      if (width) {\n        el.style.width = `${width}px`;\n      }\n      if (height) {\n        el.style.height = `${height}px`;\n      }\n    }\n    function enableMousemoveEvent(enable) {\n      const el = containerElement.value;\n      if (enable) {\n        el.addEventListener(\"mousemove\", onMouseMove, false);\n      } else {\n        el.removeEventListener(\"mousemove\", onMouseMove, false);\n      }\n    }\n    function onResize() {\n      const { width, height } = props;\n      if (!width || !height) {\n        nextTick(() => {\n          const el = containerElement.value;\n          size.value = {\n            width: width || el.offsetWidth,\n            height: height || el.offsetHeight\n          };\n        });\n      }\n    }\n    function onMouseDown(event) {\n      enableMousemoveEvent(false);\n      const intersected = pick(event.clientX, event.clientY);\n      emit(\"mousedown\", event, intersected);\n    }\n    function onMouseMove(event) {\n      const intersected = pick(event.clientX, event.clientY);\n      emit(\"mousemove\", event, intersected);\n    }\n    function onMouseUp(event) {\n      const intersected = pick(event.clientX, event.clientY);\n      emit(\"mouseup\", event, intersected);\n      enableMousemoveEvent(true);\n    }\n    function onClick(event) {\n      const intersected = pick(event.clientX, event.clientY);\n      emit(\"click\", event, intersected);\n    }\n    function onDblclick(event) {\n      const intersected = pick(event.clientX, event.clientY);\n      emit(\"dblclick\", event, intersected);\n    }\n    function pick(x, y) {\n      const obj = getAllObject();\n      if (!obj || !containerElement.value)\n        return null;\n      const rect = containerElement.value.getBoundingClientRect();\n      x -= rect.left;\n      y -= rect.top;\n      mouse.x = x / size.value.width * 2 - 1;\n      mouse.y = -(y / size.value.height) * 2 + 1;\n      raycaster.setFromCamera(mouse, camera);\n      const intersects2 = raycaster.intersectObject(obj, props.intersectRecursive);\n      return (intersects2 && intersects2.length) > 0 ? intersects2[0] : null;\n    }\n    function update() {\n      updateRenderer();\n      updateCamera();\n      updateLights();\n      updateControls();\n    }\n    function updateModel() {\n      if (!object)\n        return;\n      const index2 = isMultipleModels.value ? getObjectIndex(object) : null;\n      const { position, rotation, scale } = props;\n      if (position) {\n        position instanceof Array ? index2 != null ? object.position.set(position[index2].x, position[index2].y, position[index2].z) : object.position.set(0, 0, 0) : object.position.set(position.x, position.y, position.z);\n      }\n      if (rotation) {\n        rotation instanceof Array ? index2 != null ? object.rotation.set(rotation[index2].x, rotation[index2].y, rotation[index2].z) : object.rotation.set(0, 0, 0) : object.rotation.set(rotation.x, rotation.y, rotation.z);\n      }\n      if (scale) {\n        scale instanceof Array ? index2 != null ? object.scale.set(scale[index2].x, scale[index2].y, scale[index2].z) : object.scale.set(1, 1, 1) : object.scale.set(scale.x, scale.y, scale.z);\n      }\n    }\n    function updateRenderer() {\n      const { backgroundColor, backgroundAlpha } = props;\n      renderer.setSize(size.value.width, size.value.height);\n      renderer.setPixelRatio(window.devicePixelRatio || 1);\n      renderer.setClearColor(new Color(backgroundColor).getHex());\n      renderer.setClearAlpha(backgroundAlpha);\n    }\n    function updateCamera(isResize) {\n      const { cameraPosition, cameraRotation, cameraUp, cameraLookAt } = props;\n      camera.aspect = size.value.width / size.value.height;\n      camera.updateProjectionMatrix();\n      if (isResize)\n        return;\n      if (!cameraLookAt || !cameraUp) {\n        if (!object)\n          return;\n        const distance = getSize(object).length();\n        camera.position.set(cameraPosition.x, cameraPosition.y, cameraPosition.z);\n        if (cameraRotation) {\n          camera.rotation.set(cameraRotation.x, cameraRotation.y, cameraRotation.z);\n        }\n        if (cameraPosition.x === 0 && cameraPosition.y === 0 && cameraPosition.z === 0) {\n          camera.position.z = distance;\n        }\n        camera.lookAt(new Vector3());\n      } else {\n        camera.position.set(cameraPosition.x, cameraPosition.y, cameraPosition.z);\n        if (cameraRotation) {\n          camera.rotation.set(cameraRotation.x, cameraRotation.y, cameraRotation.z);\n        }\n        camera.up.set(cameraUp.x, cameraUp.y, cameraUp.z);\n        camera.lookAt(new Vector3(cameraLookAt.x, cameraLookAt.y, cameraLookAt.z));\n      }\n    }\n    function updateLights() {\n      const { lights } = props;\n      scene.remove(...allLights);\n      allLights = [];\n      lights.forEach((item) => {\n        if (!item.type)\n          return;\n        const type = item.type.toLowerCase();\n        let light = null;\n        if (type === \"ambient\" || type === \"ambientlight\") {\n          const color = item.color === 0 ? item.color : item.color || 4210752;\n          const intensity = item.intensity === 0 ? item.intensity : item.intensity || 1;\n          light = new AmbientLight(color, intensity);\n        }\n        if (type === \"point\" || type === \"pointlight\") {\n          const color = item.color === 0 ? item.color : item.color || 16777215;\n          const intensity = item.intensity === 0 ? item.intensity : item.intensity || 1;\n          const distance = item.distance || 0;\n          const decay = item.decay === 0 ? item.decay : item.decay || 1;\n          light = new PointLight(color, intensity, distance, decay);\n          if (item.position) {\n            light.position.copy(item.position);\n          }\n        }\n        if (type === \"directional\" || type === \"directionallight\") {\n          const color = item.color === 0 ? item.color : item.color || 16777215;\n          const intensity = item.intensity === 0 ? item.intensity : item.intensity || 1;\n          light = new DirectionalLight(color, intensity);\n          if (item.position) {\n            light.position.copy(item.position);\n          }\n          if (item.target) {\n            light.target.copy(item.target);\n          }\n        }\n        if (type === \"hemisphere\" || type === \"hemispherelight\") {\n          const skyColor = item.skyColor === 0 ? item.skyColor : item.skyColor || 16777215;\n          const groundColor = item.groundColor === 0 ? item.groundColor : item.groundColor || 16777215;\n          const intensity = item.intensity === 0 ? item.intensity : item.intensity || 1;\n          light = new HemisphereLight(skyColor, groundColor, intensity);\n          if (item.position) {\n            light.position.copy(item.position);\n          }\n        }\n        if (light) {\n          allLights.push(light);\n          scene.add(light);\n        }\n      });\n    }\n    function updateControls() {\n      const { controlsOptions } = props;\n      if (controlsOptions) {\n        Object.assign(controls, controlsOptions);\n      }\n    }\n    function loadModelSelect() {\n      const { filePath, parallelLoad } = props;\n      if (parallelLoad && isMultipleModels) {\n        filePath.forEach((path, index2) => {\n          load(index2);\n        });\n      } else {\n        load();\n      }\n    }\n    function load(fileIndex) {\n      const {\n        filePath,\n        fileType,\n        crossOrigin,\n        requestHeader,\n        mtlPath,\n        enableDraco: enableDraco2,\n        dracoDir,\n        plyMaterial\n      } = props;\n      if (!filePath)\n        return;\n      const index2 = fileIndex || loaderIndex.value;\n      const filePathString = !isMultipleModels.value ? filePath : filePath[index2];\n      const fileTypeString = typeof fileType === \"string\" ? fileType : fileType ? fileType[index2] : \"\";\n      const loaderObject3d = getLoader(filePathString, fileTypeString, enableDraco2, plyMaterial, dracoDir);\n      loader = loaderObject3d.loader;\n      const getObjectFun = loaderObject3d.getObject ? loaderObject3d.getObject : getObject;\n      if (object && index2 === 0) {\n        scene.remove(object);\n      }\n      if (requestHeader) {\n        loader.setRequestHeader(requestHeader);\n      }\n      if (crossOrigin) {\n        loader.setCrossOrigin(crossOrigin);\n      }\n      if (mtlPath) {\n        const isMultipleMTL = typeof mtlPath === \"object\";\n        if (!isMultipleMTL) {\n          loadMtl(filePathString, getObjectFun, index2);\n        } else {\n          if (!mtlPath[index2]) {\n            loadFilePath(filePathString, getObjectFun, index2);\n            return;\n          }\n          loadMtl(filePathString, getObjectFun, index2);\n        }\n      } else {\n        loadFilePath(filePathString, getObjectFun, index2);\n      }\n    }\n    function loadFilePath(filePath, getObject2, index2) {\n      const { textureImage, parallelLoad } = props;\n      loader.load(filePath, (...args) => {\n        const obj = getObject2(...args);\n        object = obj;\n        addObject(object, filePath);\n        if (textureImage) {\n          const _texture = typeof textureImage === \"string\" ? textureImage : textureImage[index2];\n          if (_texture) {\n            addTexture(object, _texture);\n          }\n        }\n        emit(\"load\", scene);\n      }, (event) => {\n        if (!parallelLoad) {\n          onProcess(event);\n        }\n        const modelIndex = loaderIndex.value + 1;\n        emit(\"process\", event, modelIndex);\n      }, (error) => {\n        emit(\"error\", error);\n      });\n    }\n    function loadMtl(filePath, getObject2, index2) {\n      const { crossOrigin, requestHeader, mtlPath } = props;\n      const mtlLoader = getMTLLoader();\n      if (crossOrigin) {\n        mtlLoader.setCrossOrigin(crossOrigin);\n      }\n      if (requestHeader) {\n        mtlLoader.setRequestHeader(requestHeader);\n      }\n      const mtl = typeof mtlPath === \"string\" ? mtlPath : mtlPath[index2];\n      const mtlPathArray = /^(.*\\/)([^/]*)$/.exec(mtl);\n      const path = mtlPathArray[1];\n      const file = mtlPathArray[2];\n      mtlLoader.setPath(path).load(file, (materials) => {\n        materials.preload();\n        loader.setMaterials(materials);\n        loadFilePath(filePath, getObject2, index2);\n      });\n    }\n    function getObject(object2) {\n      return object2;\n    }\n    function addObject(obj, filePath) {\n      const center = getCenter(object);\n      if (!objectPositionHasSet.value) {\n        scene.position.copy(center.negate());\n        objectPositionHasSet.value = true;\n      }\n      object = obj;\n      let fileName = filePath.split(\"/\");\n      fileName = fileName[fileName.length - 1];\n      object.fileName = fileName;\n      scene.add(object);\n      updateCamera();\n      updateModel();\n      playAnimations();\n    }\n    function animate() {\n      requestAnimationId = requestAnimationFrame(animate);\n      updateStats();\n      const delta = clock.getDelta();\n      if (mixers && mixers instanceof AnimationMixer) {\n        mixers.update(delta);\n      }\n      if (mixers && mixers instanceof Array) {\n        mixers.forEach((m) => {\n          m.update(delta);\n        });\n      }\n      if (controls) {\n        controls.update();\n      }\n      render();\n    }\n    function render() {\n      const { pointLightFollowCamera } = props;\n      if (pointLightFollowCamera) {\n        setLightFollowCamera();\n      }\n      renderer.render(scene, camera);\n    }\n    function updateStats() {\n      const { showFps } = props;\n      if (showFps) {\n        stats.update();\n      }\n    }\n    function onProcess(xhr) {\n      const { filePath } = props;\n      let process = Math.floor(xhr.loaded / xhr.total * 100);\n      if (process === 100) {\n        if (isMultipleModels.value && filePath.length > loaderIndex.value) {\n          nextTick(() => {\n            loaderIndex.value++;\n            if (loaderIndex.value === filePath.length) {\n              loaderIndex.value = 0;\n              return;\n            }\n            load();\n          });\n        } else {\n          loaderIndex.value = 0;\n        }\n      }\n    }\n    function addTexture(object2, texture) {\n      if (!textureLoader) {\n        textureLoader = new TextureLoader();\n      }\n      object2.traverse((child) => {\n        if (child.isMesh) {\n          textureLoader.load(texture, (_texture) => {\n            child.material.map = _texture;\n            child.material.needsUpdate = true;\n          }, () => {\n          }, (err) => {\n            emit(\"error\", err);\n          });\n        }\n      });\n    }\n    function clearScene() {\n      scene.clear();\n    }\n    function setObjectAttribute(type, val) {\n      const obj = getAllObject();\n      if (!obj)\n        return;\n      if (isMultipleModels.value) {\n        obj.children.forEach((item) => {\n          const index2 = getObjectIndex(item);\n          const v = type === \"scale\" ? 1 : 0;\n          val[index2] ? item[type].set(val[index2].x, val[index2].y, val[index2].z) : item[type].set(v, v, v);\n        });\n        return;\n      }\n      obj[type].set(val.x, val.y, val.z);\n    }\n    function getAllObject() {\n      return isMultipleModels.value ? scene : object;\n    }\n    function setSpriteLabel() {\n      const { labels } = props;\n      if (!labels || labels.length <= 0)\n        return;\n      clearSprite();\n      const obj = isMultipleModels.value ? scene : object;\n      const spriteImageLabel = (image) => {\n        if (!textureLoader) {\n          textureLoader = new TextureLoader();\n        }\n        const imageTexture = textureLoader.load(image);\n        return imageTexture;\n      };\n      const spriteTextLabel = (text, style) => {\n        const canvas = generateCanvas(text, style);\n        const texture = new Texture(canvas);\n        texture.needsUpdate = true;\n        return texture;\n      };\n      labels.forEach((item) => {\n        const spriteMap = item.image ? spriteImageLabel(item.image) : spriteTextLabel(item.text, item.textStyle || {});\n        const spriteMaterial = new SpriteMaterial({\n          map: spriteMap,\n          color: item.spriteMaterialColor || 16777215\n        });\n        const sprite = new Sprite(spriteMaterial);\n        if (item.scale) {\n          sprite.scale.set(item.scale.x || 1, item.scale.y || 1, item.scale.z || 0);\n        } else {\n          sprite.scale.set(1, 1, 0);\n        }\n        if (item.position) {\n          sprite.position.set(item.position.x, item.position.y, item.position.z);\n        }\n        if (item.sid) {\n          sprite.sid = item.sid;\n        }\n        obj.add(sprite);\n      });\n    }\n    function clearSprite() {\n      const sceneChildren = scene.children;\n      for (let i = sceneChildren.length - 1; i >= 0; i--) {\n        const item = sceneChildren[i];\n        if (item) {\n          if (item instanceof Group && item.children) {\n            scene.children[i].children = item.children.map((_item) => {\n              if (_item instanceof Sprite) {\n                return null;\n              }\n              return _item;\n            }).filter((item2) => item2);\n          }\n          if (item instanceof Sprite) {\n            scene.remove(item);\n          }\n        }\n      }\n    }\n    function generateCanvas(text, style) {\n      const roundRect = (ctx, x, y, w, h, r) => {\n        ctx.beginPath();\n        ctx.moveTo(x + r, y);\n        ctx.lineTo(x + w - r, y);\n        ctx.quadraticCurveTo(x + w, y, x + w, y + r);\n        ctx.lineTo(x + w, y + h - r);\n        ctx.quadraticCurveTo(x + w, y + h, x + w - r, y + h);\n        ctx.lineTo(x + r, y + h);\n        ctx.quadraticCurveTo(x, y + h, x, y + h - r);\n        ctx.lineTo(x, y + r);\n        ctx.quadraticCurveTo(x, y, x + r, y);\n        ctx.closePath();\n        ctx.fill();\n        ctx.stroke();\n      };\n      const fontFamily = style.fontFamily || \"Arial\";\n      const fontSize = style.fontSize === 0 || style.fontSize ? style.fontSize : 18;\n      const fontColor = style.color || \"#ffffff\";\n      const fontWeight = style.fontWeight || \"normal\";\n      const borderWidth = style.borderWidth === 0 || style.borderWidth ? style.borderWidth : 4;\n      const borderColor = style.borderColor || \"rgba(0,0,0,1)\";\n      const borderRadius = style.borderRadius === 0 || style.borderRadius ? style.borderRadius : 4;\n      const backgroundColor = style.backgroundColor || \"rgba(255, 255, 255, 1)\";\n      const canvas = document.createElement(\"canvas\");\n      const context = canvas.getContext(\"2d\");\n      if (context) {\n        context.font = `${fontWeight} ${fontSize}px ${fontFamily}`;\n        const metrics = context.measureText(text);\n        const textWidth = metrics.width;\n        context.fillStyle = backgroundColor;\n        context.strokeStyle = borderColor;\n        context.lineWidth = borderWidth;\n        roundRect(context, borderWidth / 2, borderWidth / 2, textWidth + borderWidth, fontSize * 1.4 + borderWidth, borderRadius);\n        context.fillStyle = fontColor;\n        context.fillText(text, borderWidth, fontSize + borderWidth);\n      }\n      return canvas;\n    }\n    function getObjectIndex(object2) {\n      const { filePath } = props;\n      let objIndex;\n      if (filePath instanceof Array) {\n        objIndex = filePath.map((item, index2) => {\n          if (item.indexOf(object2.fileName) > -1) {\n            return index2;\n          }\n        }).filter((i) => i != void 0)[0];\n      }\n      return objIndex;\n    }\n    function playAnimations() {\n      const obj = getAllObject();\n      if (!obj)\n        return;\n      if (isMultipleModels.value) {\n        playMultipleModels(obj);\n        return;\n      }\n      playSingleModel(obj);\n    }\n    function playSingleModel(item) {\n      const { autoPlay } = props;\n      mixers = new AnimationMixer(item);\n      if (item.animations && item.animations.length > 0) {\n        item.animations.forEach((clip) => {\n          if (clip) {\n            const action = mixers.clipAction(clip);\n            if (autoPlay) {\n              action.play();\n            } else {\n              action.stop();\n            }\n          }\n        });\n      }\n    }\n    function playMultipleModels(obj) {\n      const { autoPlay } = props;\n      mixers = [];\n      obj.children.forEach((item, index2) => {\n        mixers.push(new AnimationMixer(item));\n        if (item.animations && item.animations.length > 0) {\n          item.animations.forEach((clip) => {\n            if (clip) {\n              const action = mixers[index2].clipAction(clip);\n              if (autoPlay) {\n                action.play();\n              } else {\n                action.stop();\n              }\n            }\n          });\n        }\n      });\n    }\n    function setVerticalHorizontalControls() {\n      if (!controls) {\n        return;\n      }\n      const { verticalCtrl, horizontalCtrl, minDistance, maxDistance } = props;\n      if (verticalCtrl && typeof verticalCtrl === \"boolean\") {\n        controls.minAzimuthAngle = -2 * Math.PI;\n        controls.maxAzimuthAngle = -2 * Math.PI;\n      }\n      if (verticalCtrl && typeof verticalCtrl === \"object\") {\n        controls.minAzimuthAngle = verticalCtrl.min;\n        controls.maxAzimuthAngle = verticalCtrl.max;\n      }\n      if (horizontalCtrl && typeof horizontalCtrl === \"boolean\") {\n        controls.minPolarAngle = 1;\n        controls.maxPolarAngle = 1;\n      }\n      if (horizontalCtrl && typeof horizontalCtrl === \"object\") {\n        controls.minPolarAngle = horizontalCtrl.min;\n        controls.maxPolarAngle = horizontalCtrl.max;\n      }\n      if (minDistance != 0 && typeof minDistance === \"number\") {\n        controls.minDistance = minDistance;\n      }\n      if (maxDistance != Infinity && typeof maxDistance === \"number\") {\n        controls.maxDistance = maxDistance;\n      }\n    }\n    function setAxesAndGridHelper() {\n      const { enableAxesHelper, enableGridHelper, axesHelperSize } = props;\n      if (enableAxesHelper) {\n        axesHelper = new AxesHelper(axesHelperSize);\n        scene.add(axesHelper);\n      } else {\n        if (axesHelper) {\n          scene.remove(axesHelper);\n        }\n      }\n      if (enableGridHelper) {\n        gridHelper = new GridHelper(2e3, 100);\n        scene.add(gridHelper);\n      } else {\n        if (gridHelper) {\n          scene.remove(gridHelper);\n        }\n      }\n    }\n    function setLightFollowCamera() {\n      const vector = camera.position.clone();\n      scene.children.forEach((item) => {\n        if (item instanceof PointLight) {\n          item.position.set(vector.x, vector.y, vector.z);\n        }\n      });\n    }\n    expose({\n      camera,\n      scene\n    });\n    return (_ctx, _cache) => {\n      return openBlock(), createElementBlock(\"div\", {\n        ref_key: \"containerElement\",\n        ref: containerElement,\n        class: \"viewer-container\"\n      }, [\n        createElementVNode(\"canvas\", {\n          ref_key: \"canvasElement\",\n          ref: canvasElement,\n          class: \"viewer-canvas\"\n        }, null, 512)\n      ], 512);\n    };\n  }\n});\nvar vue3dLoader = /* @__PURE__ */ _export_sfc(_sfc_main, [[\"__scopeId\", \"data-v-e92274c2\"]]);\nconst install = (app) => {\n  app.component(vue3dLoader.name, vue3dLoader);\n};\nvar index = { install, vue3dLoader };\nexport { three_module as Three, index as default, vue3dLoader };\n"
  },
  {
    "path": "dist/vue-3d-loader.global.js",
    "content": "var vue3dLoader=function(Qr,At){\"use strict\";/**\n * @license\n * Copyright 2010-2022 Three.js Authors\n * SPDX-License-Identifier: MIT\n */const $o=\"143\",os={LEFT:0,MIDDLE:1,RIGHT:2,ROTATE:0,DOLLY:1,PAN:2},as={ROTATE:0,PAN:1,DOLLY_PAN:2,DOLLY_ROTATE:3},gh=0,kl=1,yh=2,Jm=3,$m=0,Ol=1,xh=2,Xs=3,li=0,Cn=1,ci=2,vh=1,Qm=2,ui=0,ls=1,Bl=2,zl=3,Ul=4,_h=5,cs=100,bh=101,wh=102,Gl=103,Vl=104,Mh=200,Sh=201,Th=202,Ah=203,Hl=204,Wl=205,Eh=206,Ch=207,Lh=208,Rh=209,Ih=210,Ph=0,Dh=1,Fh=2,Qo=3,Nh=4,kh=5,Oh=6,Bh=7,eo=0,zh=1,Uh=2,Zn=0,Gh=1,Vh=2,Hh=3,Wh=4,qh=5,ea=300,Ii=301,Pi=302,js=303,to=304,Ys=306,cn=1e3,jt=1001,Zs=1002,zt=1003,no=1004,eg=1004,io=1005,tg=1005,Pt=1006,ta=1007,ng=1007,Kn=1008,ig=1008,Di=1009,Xh=1010,jh=1011,ql=1012,Yh=1013,Fi=1014,hi=1015,Ks=1016,Zh=1017,Kh=1018,us=1020,Jh=1021,$h=1022,Mn=1023,Qh=1024,ef=1025,Ni=1026,hs=1027,tf=1028,nf=1029,sf=1030,rf=1031,of=1033,so=33776,na=33777,ro=33778,oo=33779,Xl=35840,jl=35841,Yl=35842,Zl=35843,Kl=36196,Jl=37492,$l=37496,Ql=37808,ec=37809,tc=37810,nc=37811,ic=37812,sc=37813,rc=37814,oc=37815,ac=37816,lc=37817,cc=37818,uc=37819,hc=37820,fc=37821,dc=36492,af=2200,lf=2201,cf=2202,Js=2300,fs=2301,ia=2302,ds=2400,ps=2401,ao=2402,sa=2500,pc=2501,sg=0,uf=1,mc=2,fi=3e3,it=3001,hf=3200,ff=3201,ki=0,df=1,rg=\"\",Jn=\"srgb\",Oi=\"srgb-linear\",og=0,ra=7680,ag=7681,lg=7682,cg=7683,ug=34055,hg=34056,fg=5386,dg=512,pg=513,mg=514,gg=515,yg=516,xg=517,vg=518,pf=519,lo=35044,_g=35048,bg=35040,wg=35045,Mg=35049,Sg=35041,Tg=35046,Ag=35050,Eg=35042,Cg=\"100\",gc=\"300 es\",oa=1035;class $n{addEventListener(e,t){this._listeners===void 0&&(this._listeners={});const n=this._listeners;n[e]===void 0&&(n[e]=[]),n[e].indexOf(t)===-1&&n[e].push(t)}hasEventListener(e,t){if(this._listeners===void 0)return!1;const n=this._listeners;return n[e]!==void 0&&n[e].indexOf(t)!==-1}removeEventListener(e,t){if(this._listeners===void 0)return;const i=this._listeners[e];if(i!==void 0){const s=i.indexOf(t);s!==-1&&i.splice(s,1)}}dispatchEvent(e){if(this._listeners===void 0)return;const n=this._listeners[e.type];if(n!==void 0){e.target=this;const i=n.slice(0);for(let s=0,r=i.length;s<r;s++)i[s].call(this,e);e.target=null}}}const rn=[\"00\",\"01\",\"02\",\"03\",\"04\",\"05\",\"06\",\"07\",\"08\",\"09\",\"0a\",\"0b\",\"0c\",\"0d\",\"0e\",\"0f\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\",\"1a\",\"1b\",\"1c\",\"1d\",\"1e\",\"1f\",\"20\",\"21\",\"22\",\"23\",\"24\",\"25\",\"26\",\"27\",\"28\",\"29\",\"2a\",\"2b\",\"2c\",\"2d\",\"2e\",\"2f\",\"30\",\"31\",\"32\",\"33\",\"34\",\"35\",\"36\",\"37\",\"38\",\"39\",\"3a\",\"3b\",\"3c\",\"3d\",\"3e\",\"3f\",\"40\",\"41\",\"42\",\"43\",\"44\",\"45\",\"46\",\"47\",\"48\",\"49\",\"4a\",\"4b\",\"4c\",\"4d\",\"4e\",\"4f\",\"50\",\"51\",\"52\",\"53\",\"54\",\"55\",\"56\",\"57\",\"58\",\"59\",\"5a\",\"5b\",\"5c\",\"5d\",\"5e\",\"5f\",\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"67\",\"68\",\"69\",\"6a\",\"6b\",\"6c\",\"6d\",\"6e\",\"6f\",\"70\",\"71\",\"72\",\"73\",\"74\",\"75\",\"76\",\"77\",\"78\",\"79\",\"7a\",\"7b\",\"7c\",\"7d\",\"7e\",\"7f\",\"80\",\"81\",\"82\",\"83\",\"84\",\"85\",\"86\",\"87\",\"88\",\"89\",\"8a\",\"8b\",\"8c\",\"8d\",\"8e\",\"8f\",\"90\",\"91\",\"92\",\"93\",\"94\",\"95\",\"96\",\"97\",\"98\",\"99\",\"9a\",\"9b\",\"9c\",\"9d\",\"9e\",\"9f\",\"a0\",\"a1\",\"a2\",\"a3\",\"a4\",\"a5\",\"a6\",\"a7\",\"a8\",\"a9\",\"aa\",\"ab\",\"ac\",\"ad\",\"ae\",\"af\",\"b0\",\"b1\",\"b2\",\"b3\",\"b4\",\"b5\",\"b6\",\"b7\",\"b8\",\"b9\",\"ba\",\"bb\",\"bc\",\"bd\",\"be\",\"bf\",\"c0\",\"c1\",\"c2\",\"c3\",\"c4\",\"c5\",\"c6\",\"c7\",\"c8\",\"c9\",\"ca\",\"cb\",\"cc\",\"cd\",\"ce\",\"cf\",\"d0\",\"d1\",\"d2\",\"d3\",\"d4\",\"d5\",\"d6\",\"d7\",\"d8\",\"d9\",\"da\",\"db\",\"dc\",\"dd\",\"de\",\"df\",\"e0\",\"e1\",\"e2\",\"e3\",\"e4\",\"e5\",\"e6\",\"e7\",\"e8\",\"e9\",\"ea\",\"eb\",\"ec\",\"ed\",\"ee\",\"ef\",\"f0\",\"f1\",\"f2\",\"f3\",\"f4\",\"f5\",\"f6\",\"f7\",\"f8\",\"f9\",\"fa\",\"fb\",\"fc\",\"fd\",\"fe\",\"ff\"];let mf=1234567;const ms=Math.PI/180,co=180/Math.PI;function Sn(){const a=Math.random()*4294967295|0,e=Math.random()*4294967295|0,t=Math.random()*4294967295|0,n=Math.random()*4294967295|0;return(rn[a&255]+rn[a>>8&255]+rn[a>>16&255]+rn[a>>24&255]+\"-\"+rn[e&255]+rn[e>>8&255]+\"-\"+rn[e>>16&15|64]+rn[e>>24&255]+\"-\"+rn[t&63|128]+rn[t>>8&255]+\"-\"+rn[t>>16&255]+rn[t>>24&255]+rn[n&255]+rn[n>>8&255]+rn[n>>16&255]+rn[n>>24&255]).toLowerCase()}function Ut(a,e,t){return Math.max(e,Math.min(t,a))}function yc(a,e){return(a%e+e)%e}function Lg(a,e,t,n,i){return n+(a-e)*(i-n)/(t-e)}function Rg(a,e,t){return a!==e?(t-a)/(e-a):0}function uo(a,e,t){return(1-t)*a+t*e}function Ig(a,e,t,n){return uo(a,e,1-Math.exp(-t*n))}function Pg(a,e=1){return e-Math.abs(yc(a,e*2)-e)}function Dg(a,e,t){return a<=e?0:a>=t?1:(a=(a-e)/(t-e),a*a*(3-2*a))}function Fg(a,e,t){return a<=e?0:a>=t?1:(a=(a-e)/(t-e),a*a*a*(a*(a*6-15)+10))}function Ng(a,e){return a+Math.floor(Math.random()*(e-a+1))}function kg(a,e){return a+Math.random()*(e-a)}function Og(a){return a*(.5-Math.random())}function Bg(a){a!==void 0&&(mf=a);let e=mf+=1831565813;return e=Math.imul(e^e>>>15,e|1),e^=e+Math.imul(e^e>>>7,e|61),((e^e>>>14)>>>0)/4294967296}function zg(a){return a*ms}function Ug(a){return a*co}function xc(a){return(a&a-1)===0&&a!==0}function gf(a){return Math.pow(2,Math.ceil(Math.log(a)/Math.LN2))}function aa(a){return Math.pow(2,Math.floor(Math.log(a)/Math.LN2))}function Gg(a,e,t,n,i){const s=Math.cos,r=Math.sin,o=s(t/2),l=r(t/2),c=s((e+n)/2),h=r((e+n)/2),u=s((e-n)/2),f=r((e-n)/2),d=s((n-e)/2),p=r((n-e)/2);switch(i){case\"XYX\":a.set(o*h,l*u,l*f,o*c);break;case\"YZY\":a.set(l*f,o*h,l*u,o*c);break;case\"ZXZ\":a.set(l*u,l*f,o*h,o*c);break;case\"XZX\":a.set(o*h,l*p,l*d,o*c);break;case\"YXY\":a.set(l*d,o*h,l*p,o*c);break;case\"ZYZ\":a.set(l*p,l*d,o*h,o*c);break;default:console.warn(\"THREE.MathUtils: .setQuaternionFromProperEuler() encountered an unknown order: \"+i)}}function Vg(a,e){switch(e.constructor){case Float32Array:return a;case Uint16Array:return a/65535;case Uint8Array:return a/255;case Int16Array:return Math.max(a/32767,-1);case Int8Array:return Math.max(a/127,-1);default:throw new Error(\"Invalid component type.\")}}function Hg(a,e){switch(e.constructor){case Float32Array:return a;case Uint16Array:return Math.round(a*65535);case Uint8Array:return Math.round(a*255);case Int16Array:return Math.round(a*32767);case Int8Array:return Math.round(a*127);default:throw new Error(\"Invalid component type.\")}}var nn=Object.freeze({__proto__:null,DEG2RAD:ms,RAD2DEG:co,generateUUID:Sn,clamp:Ut,euclideanModulo:yc,mapLinear:Lg,inverseLerp:Rg,lerp:uo,damp:Ig,pingpong:Pg,smoothstep:Dg,smootherstep:Fg,randInt:Ng,randFloat:kg,randFloatSpread:Og,seededRandom:Bg,degToRad:zg,radToDeg:Ug,isPowerOfTwo:xc,ceilPowerOfTwo:gf,floorPowerOfTwo:aa,setQuaternionFromProperEuler:Gg,normalize:Hg,denormalize:Vg});class he{constructor(e=0,t=0){he.prototype.isVector2=!0,this.x=e,this.y=t}get width(){return this.x}set width(e){this.x=e}get height(){return this.y}set height(e){this.y=e}set(e,t){return this.x=e,this.y=t,this}setScalar(e){return this.x=e,this.y=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;default:throw new Error(\"index is out of range: \"+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;default:throw new Error(\"index is out of range: \"+e)}}clone(){return new this.constructor(this.x,this.y)}copy(e){return this.x=e.x,this.y=e.y,this}add(e){return this.x+=e.x,this.y+=e.y,this}addScalar(e){return this.x+=e,this.y+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this}subScalar(e){return this.x-=e,this.y-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this}multiply(e){return this.x*=e.x,this.y*=e.y,this}multiplyScalar(e){return this.x*=e,this.y*=e,this}divide(e){return this.x/=e.x,this.y/=e.y,this}divideScalar(e){return this.multiplyScalar(1/e)}applyMatrix3(e){const t=this.x,n=this.y,i=e.elements;return this.x=i[0]*t+i[3]*n+i[6],this.y=i[1]*t+i[4]*n+i[7],this}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this}clamp(e,t){return this.x=Math.max(e.x,Math.min(t.x,this.x)),this.y=Math.max(e.y,Math.min(t.y,this.y)),this}clampScalar(e,t){return this.x=Math.max(e,Math.min(t,this.x)),this.y=Math.max(e,Math.min(t,this.y)),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(e,Math.min(t,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this}negate(){return this.x=-this.x,this.y=-this.y,this}dot(e){return this.x*e.x+this.y*e.y}cross(e){return this.x*e.y-this.y*e.x}lengthSq(){return this.x*this.x+this.y*this.y}length(){return Math.sqrt(this.x*this.x+this.y*this.y)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)}normalize(){return this.divideScalar(this.length()||1)}angle(){return Math.atan2(-this.y,-this.x)+Math.PI}distanceTo(e){return Math.sqrt(this.distanceToSquared(e))}distanceToSquared(e){const t=this.x-e.x,n=this.y-e.y;return t*t+n*n}manhattanDistanceTo(e){return Math.abs(this.x-e.x)+Math.abs(this.y-e.y)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this}equals(e){return e.x===this.x&&e.y===this.y}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this}rotateAround(e,t){const n=Math.cos(t),i=Math.sin(t),s=this.x-e.x,r=this.y-e.y;return this.x=s*n-r*i+e.x,this.y=s*i+r*n+e.y,this}random(){return this.x=Math.random(),this.y=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y}}class un{constructor(){un.prototype.isMatrix3=!0,this.elements=[1,0,0,0,1,0,0,0,1]}set(e,t,n,i,s,r,o,l,c){const h=this.elements;return h[0]=e,h[1]=i,h[2]=o,h[3]=t,h[4]=s,h[5]=l,h[6]=n,h[7]=r,h[8]=c,this}identity(){return this.set(1,0,0,0,1,0,0,0,1),this}copy(e){const t=this.elements,n=e.elements;return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],this}extractBasis(e,t,n){return e.setFromMatrix3Column(this,0),t.setFromMatrix3Column(this,1),n.setFromMatrix3Column(this,2),this}setFromMatrix4(e){const t=e.elements;return this.set(t[0],t[4],t[8],t[1],t[5],t[9],t[2],t[6],t[10]),this}multiply(e){return this.multiplyMatrices(this,e)}premultiply(e){return this.multiplyMatrices(e,this)}multiplyMatrices(e,t){const n=e.elements,i=t.elements,s=this.elements,r=n[0],o=n[3],l=n[6],c=n[1],h=n[4],u=n[7],f=n[2],d=n[5],p=n[8],m=i[0],g=i[3],y=i[6],x=i[1],b=i[4],v=i[7],M=i[2],T=i[5],C=i[8];return s[0]=r*m+o*x+l*M,s[3]=r*g+o*b+l*T,s[6]=r*y+o*v+l*C,s[1]=c*m+h*x+u*M,s[4]=c*g+h*b+u*T,s[7]=c*y+h*v+u*C,s[2]=f*m+d*x+p*M,s[5]=f*g+d*b+p*T,s[8]=f*y+d*v+p*C,this}multiplyScalar(e){const t=this.elements;return t[0]*=e,t[3]*=e,t[6]*=e,t[1]*=e,t[4]*=e,t[7]*=e,t[2]*=e,t[5]*=e,t[8]*=e,this}determinant(){const e=this.elements,t=e[0],n=e[1],i=e[2],s=e[3],r=e[4],o=e[5],l=e[6],c=e[7],h=e[8];return t*r*h-t*o*c-n*s*h+n*o*l+i*s*c-i*r*l}invert(){const e=this.elements,t=e[0],n=e[1],i=e[2],s=e[3],r=e[4],o=e[5],l=e[6],c=e[7],h=e[8],u=h*r-o*c,f=o*l-h*s,d=c*s-r*l,p=t*u+n*f+i*d;if(p===0)return this.set(0,0,0,0,0,0,0,0,0);const m=1/p;return e[0]=u*m,e[1]=(i*c-h*n)*m,e[2]=(o*n-i*r)*m,e[3]=f*m,e[4]=(h*t-i*l)*m,e[5]=(i*s-o*t)*m,e[6]=d*m,e[7]=(n*l-c*t)*m,e[8]=(r*t-n*s)*m,this}transpose(){let e;const t=this.elements;return e=t[1],t[1]=t[3],t[3]=e,e=t[2],t[2]=t[6],t[6]=e,e=t[5],t[5]=t[7],t[7]=e,this}getNormalMatrix(e){return this.setFromMatrix4(e).invert().transpose()}transposeIntoArray(e){const t=this.elements;return e[0]=t[0],e[1]=t[3],e[2]=t[6],e[3]=t[1],e[4]=t[4],e[5]=t[7],e[6]=t[2],e[7]=t[5],e[8]=t[8],this}setUvTransform(e,t,n,i,s,r,o){const l=Math.cos(s),c=Math.sin(s);return this.set(n*l,n*c,-n*(l*r+c*o)+r+e,-i*c,i*l,-i*(-c*r+l*o)+o+t,0,0,1),this}scale(e,t){const n=this.elements;return n[0]*=e,n[3]*=e,n[6]*=e,n[1]*=t,n[4]*=t,n[7]*=t,this}rotate(e){const t=Math.cos(e),n=Math.sin(e),i=this.elements,s=i[0],r=i[3],o=i[6],l=i[1],c=i[4],h=i[7];return i[0]=t*s+n*l,i[3]=t*r+n*c,i[6]=t*o+n*h,i[1]=-n*s+t*l,i[4]=-n*r+t*c,i[7]=-n*o+t*h,this}translate(e,t){const n=this.elements;return n[0]+=e*n[2],n[3]+=e*n[5],n[6]+=e*n[8],n[1]+=t*n[2],n[4]+=t*n[5],n[7]+=t*n[8],this}equals(e){const t=this.elements,n=e.elements;for(let i=0;i<9;i++)if(t[i]!==n[i])return!1;return!0}fromArray(e,t=0){for(let n=0;n<9;n++)this.elements[n]=e[n+t];return this}toArray(e=[],t=0){const n=this.elements;return e[t]=n[0],e[t+1]=n[1],e[t+2]=n[2],e[t+3]=n[3],e[t+4]=n[4],e[t+5]=n[5],e[t+6]=n[6],e[t+7]=n[7],e[t+8]=n[8],e}clone(){return new this.constructor().fromArray(this.elements)}}function yf(a){for(let e=a.length-1;e>=0;--e)if(a[e]>65535)return!0;return!1}const Wg={Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array};function $s(a,e){return new Wg[a](e)}function ho(a){return document.createElementNS(\"http://www.w3.org/1999/xhtml\",a)}function gs(a){return a<.04045?a*.0773993808:Math.pow(a*.9478672986+.0521327014,2.4)}function la(a){return a<.0031308?a*12.92:1.055*Math.pow(a,.41666)-.055}const vc={[Jn]:{[Oi]:gs},[Oi]:{[Jn]:la}},Ln={legacyMode:!0,get workingColorSpace(){return Oi},set workingColorSpace(a){console.warn(\"THREE.ColorManagement: .workingColorSpace is readonly.\")},convert:function(a,e,t){if(this.legacyMode||e===t||!e||!t)return a;if(vc[e]&&vc[e][t]!==void 0){const n=vc[e][t];return a.r=n(a.r),a.g=n(a.g),a.b=n(a.b),a}throw new Error(\"Unsupported color space conversion.\")},fromWorkingColorSpace:function(a,e){return this.convert(a,this.workingColorSpace,e)},toWorkingColorSpace:function(a,e){return this.convert(a,e,this.workingColorSpace)}},xf={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},Kt={r:0,g:0,b:0},Vn={h:0,s:0,l:0},ca={h:0,s:0,l:0};function _c(a,e,t){return t<0&&(t+=1),t>1&&(t-=1),t<.16666666666666666?a+(e-a)*6*t:t<.5?e:t<.6666666666666666?a+(e-a)*6*(.6666666666666666-t):a}function ua(a,e){return e.r=a.r,e.g=a.g,e.b=a.b,e}class be{constructor(e,t,n){return this.isColor=!0,this.r=1,this.g=1,this.b=1,t===void 0&&n===void 0?this.set(e):this.setRGB(e,t,n)}set(e){return e&&e.isColor?this.copy(e):typeof e==\"number\"?this.setHex(e):typeof e==\"string\"&&this.setStyle(e),this}setScalar(e){return this.r=e,this.g=e,this.b=e,this}setHex(e,t=Jn){return e=Math.floor(e),this.r=(e>>16&255)/255,this.g=(e>>8&255)/255,this.b=(e&255)/255,Ln.toWorkingColorSpace(this,t),this}setRGB(e,t,n,i=Oi){return this.r=e,this.g=t,this.b=n,Ln.toWorkingColorSpace(this,i),this}setHSL(e,t,n,i=Oi){if(e=yc(e,1),t=Ut(t,0,1),n=Ut(n,0,1),t===0)this.r=this.g=this.b=n;else{const s=n<=.5?n*(1+t):n+t-n*t,r=2*n-s;this.r=_c(r,s,e+.3333333333333333),this.g=_c(r,s,e),this.b=_c(r,s,e-.3333333333333333)}return Ln.toWorkingColorSpace(this,i),this}setStyle(e,t=Jn){function n(s){s!==void 0&&parseFloat(s)<1&&console.warn(\"THREE.Color: Alpha component of \"+e+\" will be ignored.\")}let i;if(i=/^((?:rgb|hsl)a?)\\(([^\\)]*)\\)/.exec(e)){let s;const r=i[1],o=i[2];switch(r){case\"rgb\":case\"rgba\":if(s=/^\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(o))return this.r=Math.min(255,parseInt(s[1],10))/255,this.g=Math.min(255,parseInt(s[2],10))/255,this.b=Math.min(255,parseInt(s[3],10))/255,Ln.toWorkingColorSpace(this,t),n(s[4]),this;if(s=/^\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(o))return this.r=Math.min(100,parseInt(s[1],10))/100,this.g=Math.min(100,parseInt(s[2],10))/100,this.b=Math.min(100,parseInt(s[3],10))/100,Ln.toWorkingColorSpace(this,t),n(s[4]),this;break;case\"hsl\":case\"hsla\":if(s=/^\\s*(\\d*\\.?\\d+)\\s*,\\s*(\\d+)\\%\\s*,\\s*(\\d+)\\%\\s*(?:,\\s*(\\d*\\.?\\d+)\\s*)?$/.exec(o)){const l=parseFloat(s[1])/360,c=parseInt(s[2],10)/100,h=parseInt(s[3],10)/100;return n(s[4]),this.setHSL(l,c,h,t)}break}}else if(i=/^\\#([A-Fa-f\\d]+)$/.exec(e)){const s=i[1],r=s.length;if(r===3)return this.r=parseInt(s.charAt(0)+s.charAt(0),16)/255,this.g=parseInt(s.charAt(1)+s.charAt(1),16)/255,this.b=parseInt(s.charAt(2)+s.charAt(2),16)/255,Ln.toWorkingColorSpace(this,t),this;if(r===6)return this.r=parseInt(s.charAt(0)+s.charAt(1),16)/255,this.g=parseInt(s.charAt(2)+s.charAt(3),16)/255,this.b=parseInt(s.charAt(4)+s.charAt(5),16)/255,Ln.toWorkingColorSpace(this,t),this}return e&&e.length>0?this.setColorName(e,t):this}setColorName(e,t=Jn){const n=xf[e.toLowerCase()];return n!==void 0?this.setHex(n,t):console.warn(\"THREE.Color: Unknown color \"+e),this}clone(){return new this.constructor(this.r,this.g,this.b)}copy(e){return this.r=e.r,this.g=e.g,this.b=e.b,this}copySRGBToLinear(e){return this.r=gs(e.r),this.g=gs(e.g),this.b=gs(e.b),this}copyLinearToSRGB(e){return this.r=la(e.r),this.g=la(e.g),this.b=la(e.b),this}convertSRGBToLinear(){return this.copySRGBToLinear(this),this}convertLinearToSRGB(){return this.copyLinearToSRGB(this),this}getHex(e=Jn){return Ln.fromWorkingColorSpace(ua(this,Kt),e),Ut(Kt.r*255,0,255)<<16^Ut(Kt.g*255,0,255)<<8^Ut(Kt.b*255,0,255)<<0}getHexString(e=Jn){return(\"000000\"+this.getHex(e).toString(16)).slice(-6)}getHSL(e,t=Oi){Ln.fromWorkingColorSpace(ua(this,Kt),t);const n=Kt.r,i=Kt.g,s=Kt.b,r=Math.max(n,i,s),o=Math.min(n,i,s);let l,c;const h=(o+r)/2;if(o===r)l=0,c=0;else{const u=r-o;switch(c=h<=.5?u/(r+o):u/(2-r-o),r){case n:l=(i-s)/u+(i<s?6:0);break;case i:l=(s-n)/u+2;break;case s:l=(n-i)/u+4;break}l/=6}return e.h=l,e.s=c,e.l=h,e}getRGB(e,t=Oi){return Ln.fromWorkingColorSpace(ua(this,Kt),t),e.r=Kt.r,e.g=Kt.g,e.b=Kt.b,e}getStyle(e=Jn){return Ln.fromWorkingColorSpace(ua(this,Kt),e),e!==Jn?`color(${e} ${Kt.r} ${Kt.g} ${Kt.b})`:`rgb(${Kt.r*255|0},${Kt.g*255|0},${Kt.b*255|0})`}offsetHSL(e,t,n){return this.getHSL(Vn),Vn.h+=e,Vn.s+=t,Vn.l+=n,this.setHSL(Vn.h,Vn.s,Vn.l),this}add(e){return this.r+=e.r,this.g+=e.g,this.b+=e.b,this}addColors(e,t){return this.r=e.r+t.r,this.g=e.g+t.g,this.b=e.b+t.b,this}addScalar(e){return this.r+=e,this.g+=e,this.b+=e,this}sub(e){return this.r=Math.max(0,this.r-e.r),this.g=Math.max(0,this.g-e.g),this.b=Math.max(0,this.b-e.b),this}multiply(e){return this.r*=e.r,this.g*=e.g,this.b*=e.b,this}multiplyScalar(e){return this.r*=e,this.g*=e,this.b*=e,this}lerp(e,t){return this.r+=(e.r-this.r)*t,this.g+=(e.g-this.g)*t,this.b+=(e.b-this.b)*t,this}lerpColors(e,t,n){return this.r=e.r+(t.r-e.r)*n,this.g=e.g+(t.g-e.g)*n,this.b=e.b+(t.b-e.b)*n,this}lerpHSL(e,t){this.getHSL(Vn),e.getHSL(ca);const n=uo(Vn.h,ca.h,t),i=uo(Vn.s,ca.s,t),s=uo(Vn.l,ca.l,t);return this.setHSL(n,i,s),this}equals(e){return e.r===this.r&&e.g===this.g&&e.b===this.b}fromArray(e,t=0){return this.r=e[t],this.g=e[t+1],this.b=e[t+2],this}toArray(e=[],t=0){return e[t]=this.r,e[t+1]=this.g,e[t+2]=this.b,e}fromBufferAttribute(e,t){return this.r=e.getX(t),this.g=e.getY(t),this.b=e.getZ(t),e.normalized===!0&&(this.r/=255,this.g/=255,this.b/=255),this}toJSON(){return this.getHex()}*[Symbol.iterator](){yield this.r,yield this.g,yield this.b}}be.NAMES=xf;let Qs;class bc{static getDataURL(e){if(/^data:/i.test(e.src)||typeof HTMLCanvasElement==\"undefined\")return e.src;let t;if(e instanceof HTMLCanvasElement)t=e;else{Qs===void 0&&(Qs=ho(\"canvas\")),Qs.width=e.width,Qs.height=e.height;const n=Qs.getContext(\"2d\");e instanceof ImageData?n.putImageData(e,0,0):n.drawImage(e,0,0,e.width,e.height),t=Qs}return t.width>2048||t.height>2048?(console.warn(\"THREE.ImageUtils.getDataURL: Image converted to jpg for performance reasons\",e),t.toDataURL(\"image/jpeg\",.6)):t.toDataURL(\"image/png\")}static sRGBToLinear(e){if(typeof HTMLImageElement!=\"undefined\"&&e instanceof HTMLImageElement||typeof HTMLCanvasElement!=\"undefined\"&&e instanceof HTMLCanvasElement||typeof ImageBitmap!=\"undefined\"&&e instanceof ImageBitmap){const t=ho(\"canvas\");t.width=e.width,t.height=e.height;const n=t.getContext(\"2d\");n.drawImage(e,0,0,e.width,e.height);const i=n.getImageData(0,0,e.width,e.height),s=i.data;for(let r=0;r<s.length;r++)s[r]=gs(s[r]/255)*255;return n.putImageData(i,0,0),t}else if(e.data){const t=e.data.slice(0);for(let n=0;n<t.length;n++)t instanceof Uint8Array||t instanceof Uint8ClampedArray?t[n]=Math.floor(gs(t[n]/255)*255):t[n]=gs(t[n]);return{data:t,width:e.width,height:e.height}}else return console.warn(\"THREE.ImageUtils.sRGBToLinear(): Unsupported image type. No color space conversion applied.\"),e}}class ys{constructor(e=null){this.isSource=!0,this.uuid=Sn(),this.data=e,this.version=0}set needsUpdate(e){e===!0&&this.version++}toJSON(e){const t=e===void 0||typeof e==\"string\";if(!t&&e.images[this.uuid]!==void 0)return e.images[this.uuid];const n={uuid:this.uuid,url:\"\"},i=this.data;if(i!==null){let s;if(Array.isArray(i)){s=[];for(let r=0,o=i.length;r<o;r++)i[r].isDataTexture?s.push(wc(i[r].image)):s.push(wc(i[r]))}else s=wc(i);n.url=s}return t||(e.images[this.uuid]=n),n}}function wc(a){return typeof HTMLImageElement!=\"undefined\"&&a instanceof HTMLImageElement||typeof HTMLCanvasElement!=\"undefined\"&&a instanceof HTMLCanvasElement||typeof ImageBitmap!=\"undefined\"&&a instanceof ImageBitmap?bc.getDataURL(a):a.data?{data:Array.from(a.data),width:a.width,height:a.height,type:a.data.constructor.name}:(console.warn(\"THREE.Texture: Unable to serialize Texture.\"),{})}let qg=0;class Lt extends $n{constructor(e=Lt.DEFAULT_IMAGE,t=Lt.DEFAULT_MAPPING,n=jt,i=jt,s=Pt,r=Kn,o=Mn,l=Di,c=1,h=fi){super(),this.isTexture=!0,Object.defineProperty(this,\"id\",{value:qg++}),this.uuid=Sn(),this.name=\"\",this.source=new ys(e),this.mipmaps=[],this.mapping=t,this.wrapS=n,this.wrapT=i,this.magFilter=s,this.minFilter=r,this.anisotropy=c,this.format=o,this.internalFormat=null,this.type=l,this.offset=new he(0,0),this.repeat=new he(1,1),this.center=new he(0,0),this.rotation=0,this.matrixAutoUpdate=!0,this.matrix=new un,this.generateMipmaps=!0,this.premultiplyAlpha=!1,this.flipY=!0,this.unpackAlignment=4,this.encoding=h,this.userData={},this.version=0,this.onUpdate=null,this.isRenderTargetTexture=!1,this.needsPMREMUpdate=!1}get image(){return this.source.data}set image(e){this.source.data=e}updateMatrix(){this.matrix.setUvTransform(this.offset.x,this.offset.y,this.repeat.x,this.repeat.y,this.rotation,this.center.x,this.center.y)}clone(){return new this.constructor().copy(this)}copy(e){return this.name=e.name,this.source=e.source,this.mipmaps=e.mipmaps.slice(0),this.mapping=e.mapping,this.wrapS=e.wrapS,this.wrapT=e.wrapT,this.magFilter=e.magFilter,this.minFilter=e.minFilter,this.anisotropy=e.anisotropy,this.format=e.format,this.internalFormat=e.internalFormat,this.type=e.type,this.offset.copy(e.offset),this.repeat.copy(e.repeat),this.center.copy(e.center),this.rotation=e.rotation,this.matrixAutoUpdate=e.matrixAutoUpdate,this.matrix.copy(e.matrix),this.generateMipmaps=e.generateMipmaps,this.premultiplyAlpha=e.premultiplyAlpha,this.flipY=e.flipY,this.unpackAlignment=e.unpackAlignment,this.encoding=e.encoding,this.userData=JSON.parse(JSON.stringify(e.userData)),this.needsUpdate=!0,this}toJSON(e){const t=e===void 0||typeof e==\"string\";if(!t&&e.textures[this.uuid]!==void 0)return e.textures[this.uuid];const n={metadata:{version:4.5,type:\"Texture\",generator:\"Texture.toJSON\"},uuid:this.uuid,name:this.name,image:this.source.toJSON(e).uuid,mapping:this.mapping,repeat:[this.repeat.x,this.repeat.y],offset:[this.offset.x,this.offset.y],center:[this.center.x,this.center.y],rotation:this.rotation,wrap:[this.wrapS,this.wrapT],format:this.format,type:this.type,encoding:this.encoding,minFilter:this.minFilter,magFilter:this.magFilter,anisotropy:this.anisotropy,flipY:this.flipY,premultiplyAlpha:this.premultiplyAlpha,unpackAlignment:this.unpackAlignment};return JSON.stringify(this.userData)!==\"{}\"&&(n.userData=this.userData),t||(e.textures[this.uuid]=n),n}dispose(){this.dispatchEvent({type:\"dispose\"})}transformUv(e){if(this.mapping!==ea)return e;if(e.applyMatrix3(this.matrix),e.x<0||e.x>1)switch(this.wrapS){case cn:e.x=e.x-Math.floor(e.x);break;case jt:e.x=e.x<0?0:1;break;case Zs:Math.abs(Math.floor(e.x)%2)===1?e.x=Math.ceil(e.x)-e.x:e.x=e.x-Math.floor(e.x);break}if(e.y<0||e.y>1)switch(this.wrapT){case cn:e.y=e.y-Math.floor(e.y);break;case jt:e.y=e.y<0?0:1;break;case Zs:Math.abs(Math.floor(e.y)%2)===1?e.y=Math.ceil(e.y)-e.y:e.y=e.y-Math.floor(e.y);break}return this.flipY&&(e.y=1-e.y),e}set needsUpdate(e){e===!0&&(this.version++,this.source.needsUpdate=!0)}}Lt.DEFAULT_IMAGE=null,Lt.DEFAULT_MAPPING=ea;class ft{constructor(e=0,t=0,n=0,i=1){ft.prototype.isVector4=!0,this.x=e,this.y=t,this.z=n,this.w=i}get width(){return this.z}set width(e){this.z=e}get height(){return this.w}set height(e){this.w=e}set(e,t,n,i){return this.x=e,this.y=t,this.z=n,this.w=i,this}setScalar(e){return this.x=e,this.y=e,this.z=e,this.w=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setZ(e){return this.z=e,this}setW(e){return this.w=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;case 2:this.z=t;break;case 3:this.w=t;break;default:throw new Error(\"index is out of range: \"+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw new Error(\"index is out of range: \"+e)}}clone(){return new this.constructor(this.x,this.y,this.z,this.w)}copy(e){return this.x=e.x,this.y=e.y,this.z=e.z,this.w=e.w!==void 0?e.w:1,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this.w+=e.w,this}addScalar(e){return this.x+=e,this.y+=e,this.z+=e,this.w+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this.z=e.z+t.z,this.w=e.w+t.w,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this.z+=e.z*t,this.w+=e.w*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this.w-=e.w,this}subScalar(e){return this.x-=e,this.y-=e,this.z-=e,this.w-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this.z=e.z-t.z,this.w=e.w-t.w,this}multiply(e){return this.x*=e.x,this.y*=e.y,this.z*=e.z,this.w*=e.w,this}multiplyScalar(e){return this.x*=e,this.y*=e,this.z*=e,this.w*=e,this}applyMatrix4(e){const t=this.x,n=this.y,i=this.z,s=this.w,r=e.elements;return this.x=r[0]*t+r[4]*n+r[8]*i+r[12]*s,this.y=r[1]*t+r[5]*n+r[9]*i+r[13]*s,this.z=r[2]*t+r[6]*n+r[10]*i+r[14]*s,this.w=r[3]*t+r[7]*n+r[11]*i+r[15]*s,this}divideScalar(e){return this.multiplyScalar(1/e)}setAxisAngleFromQuaternion(e){this.w=2*Math.acos(e.w);const t=Math.sqrt(1-e.w*e.w);return t<1e-4?(this.x=1,this.y=0,this.z=0):(this.x=e.x/t,this.y=e.y/t,this.z=e.z/t),this}setAxisAngleFromRotationMatrix(e){let t,n,i,s;const l=e.elements,c=l[0],h=l[4],u=l[8],f=l[1],d=l[5],p=l[9],m=l[2],g=l[6],y=l[10];if(Math.abs(h-f)<.01&&Math.abs(u-m)<.01&&Math.abs(p-g)<.01){if(Math.abs(h+f)<.1&&Math.abs(u+m)<.1&&Math.abs(p+g)<.1&&Math.abs(c+d+y-3)<.1)return this.set(1,0,0,0),this;t=Math.PI;const b=(c+1)/2,v=(d+1)/2,M=(y+1)/2,T=(h+f)/4,C=(u+m)/4,_=(p+g)/4;return b>v&&b>M?b<.01?(n=0,i=.707106781,s=.707106781):(n=Math.sqrt(b),i=T/n,s=C/n):v>M?v<.01?(n=.707106781,i=0,s=.707106781):(i=Math.sqrt(v),n=T/i,s=_/i):M<.01?(n=.707106781,i=.707106781,s=0):(s=Math.sqrt(M),n=C/s,i=_/s),this.set(n,i,s,t),this}let x=Math.sqrt((g-p)*(g-p)+(u-m)*(u-m)+(f-h)*(f-h));return Math.abs(x)<.001&&(x=1),this.x=(g-p)/x,this.y=(u-m)/x,this.z=(f-h)/x,this.w=Math.acos((c+d+y-1)/2),this}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this.z=Math.min(this.z,e.z),this.w=Math.min(this.w,e.w),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this.z=Math.max(this.z,e.z),this.w=Math.max(this.w,e.w),this}clamp(e,t){return this.x=Math.max(e.x,Math.min(t.x,this.x)),this.y=Math.max(e.y,Math.min(t.y,this.y)),this.z=Math.max(e.z,Math.min(t.z,this.z)),this.w=Math.max(e.w,Math.min(t.w,this.w)),this}clampScalar(e,t){return this.x=Math.max(e,Math.min(t,this.x)),this.y=Math.max(e,Math.min(t,this.y)),this.z=Math.max(e,Math.min(t,this.z)),this.w=Math.max(e,Math.min(t,this.w)),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(e,Math.min(t,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this.w=Math.floor(this.w),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this.w=Math.ceil(this.w),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this.w=Math.round(this.w),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this.z=this.z<0?Math.ceil(this.z):Math.floor(this.z),this.w=this.w<0?Math.ceil(this.w):Math.floor(this.w),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this.w=-this.w,this}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z+this.w*e.w}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)}normalize(){return this.divideScalar(this.length()||1)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this.z+=(e.z-this.z)*t,this.w+=(e.w-this.w)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this.z=e.z+(t.z-e.z)*n,this.w=e.w+(t.w-e.w)*n,this}equals(e){return e.x===this.x&&e.y===this.y&&e.z===this.z&&e.w===this.w}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this.z=e[t+2],this.w=e[t+3],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e[t+2]=this.z,e[t+3]=this.w,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this.z=e.getZ(t),this.w=e.getW(t),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this.w=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z,yield this.w}}class Rn extends $n{constructor(e,t,n={}){super(),this.isWebGLRenderTarget=!0,this.width=e,this.height=t,this.depth=1,this.scissor=new ft(0,0,e,t),this.scissorTest=!1,this.viewport=new ft(0,0,e,t);const i={width:e,height:t,depth:1};this.texture=new Lt(i,n.mapping,n.wrapS,n.wrapT,n.magFilter,n.minFilter,n.format,n.type,n.anisotropy,n.encoding),this.texture.isRenderTargetTexture=!0,this.texture.flipY=!1,this.texture.generateMipmaps=n.generateMipmaps!==void 0?n.generateMipmaps:!1,this.texture.internalFormat=n.internalFormat!==void 0?n.internalFormat:null,this.texture.minFilter=n.minFilter!==void 0?n.minFilter:Pt,this.depthBuffer=n.depthBuffer!==void 0?n.depthBuffer:!0,this.stencilBuffer=n.stencilBuffer!==void 0?n.stencilBuffer:!1,this.depthTexture=n.depthTexture!==void 0?n.depthTexture:null,this.samples=n.samples!==void 0?n.samples:0}setSize(e,t,n=1){(this.width!==e||this.height!==t||this.depth!==n)&&(this.width=e,this.height=t,this.depth=n,this.texture.image.width=e,this.texture.image.height=t,this.texture.image.depth=n,this.dispose()),this.viewport.set(0,0,e,t),this.scissor.set(0,0,e,t)}clone(){return new this.constructor().copy(this)}copy(e){this.width=e.width,this.height=e.height,this.depth=e.depth,this.viewport.copy(e.viewport),this.texture=e.texture.clone(),this.texture.isRenderTargetTexture=!0;const t=Object.assign({},e.texture.image);return this.texture.source=new ys(t),this.depthBuffer=e.depthBuffer,this.stencilBuffer=e.stencilBuffer,e.depthTexture!==null&&(this.depthTexture=e.depthTexture.clone()),this.samples=e.samples,this}dispose(){this.dispatchEvent({type:\"dispose\"})}}class fo extends Lt{constructor(e=null,t=1,n=1,i=1){super(null),this.isDataArrayTexture=!0,this.image={data:e,width:t,height:n,depth:i},this.magFilter=zt,this.minFilter=zt,this.wrapR=jt,this.generateMipmaps=!1,this.flipY=!1,this.unpackAlignment=1}}class Xg extends Rn{constructor(e,t,n){super(e,t),this.isWebGLArrayRenderTarget=!0,this.depth=n,this.texture=new fo(null,e,t,n),this.texture.isRenderTargetTexture=!0}}class ha extends Lt{constructor(e=null,t=1,n=1,i=1){super(null),this.isData3DTexture=!0,this.image={data:e,width:t,height:n,depth:i},this.magFilter=zt,this.minFilter=zt,this.wrapR=jt,this.generateMipmaps=!1,this.flipY=!1,this.unpackAlignment=1}}class jg extends Rn{constructor(e,t,n){super(e,t),this.isWebGL3DRenderTarget=!0,this.depth=n,this.texture=new ha(null,e,t,n),this.texture.isRenderTargetTexture=!0}}class Yg extends Rn{constructor(e,t,n,i={}){super(e,t,i),this.isWebGLMultipleRenderTargets=!0;const s=this.texture;this.texture=[];for(let r=0;r<n;r++)this.texture[r]=s.clone(),this.texture[r].isRenderTargetTexture=!0}setSize(e,t,n=1){if(this.width!==e||this.height!==t||this.depth!==n){this.width=e,this.height=t,this.depth=n;for(let i=0,s=this.texture.length;i<s;i++)this.texture[i].image.width=e,this.texture[i].image.height=t,this.texture[i].image.depth=n;this.dispose()}return this.viewport.set(0,0,e,t),this.scissor.set(0,0,e,t),this}copy(e){this.dispose(),this.width=e.width,this.height=e.height,this.depth=e.depth,this.viewport.set(0,0,this.width,this.height),this.scissor.set(0,0,this.width,this.height),this.depthBuffer=e.depthBuffer,this.stencilBuffer=e.stencilBuffer,e.depthTexture!==null&&(this.depthTexture=e.depthTexture.clone()),this.texture.length=0;for(let t=0,n=e.texture.length;t<n;t++)this.texture[t]=e.texture[t].clone(),this.texture[t].isRenderTargetTexture=!0;return this}}class kt{constructor(e=0,t=0,n=0,i=1){this.isQuaternion=!0,this._x=e,this._y=t,this._z=n,this._w=i}static slerpFlat(e,t,n,i,s,r,o){let l=n[i+0],c=n[i+1],h=n[i+2],u=n[i+3];const f=s[r+0],d=s[r+1],p=s[r+2],m=s[r+3];if(o===0){e[t+0]=l,e[t+1]=c,e[t+2]=h,e[t+3]=u;return}if(o===1){e[t+0]=f,e[t+1]=d,e[t+2]=p,e[t+3]=m;return}if(u!==m||l!==f||c!==d||h!==p){let g=1-o;const y=l*f+c*d+h*p+u*m,x=y>=0?1:-1,b=1-y*y;if(b>Number.EPSILON){const M=Math.sqrt(b),T=Math.atan2(M,y*x);g=Math.sin(g*T)/M,o=Math.sin(o*T)/M}const v=o*x;if(l=l*g+f*v,c=c*g+d*v,h=h*g+p*v,u=u*g+m*v,g===1-o){const M=1/Math.sqrt(l*l+c*c+h*h+u*u);l*=M,c*=M,h*=M,u*=M}}e[t]=l,e[t+1]=c,e[t+2]=h,e[t+3]=u}static multiplyQuaternionsFlat(e,t,n,i,s,r){const o=n[i],l=n[i+1],c=n[i+2],h=n[i+3],u=s[r],f=s[r+1],d=s[r+2],p=s[r+3];return e[t]=o*p+h*u+l*d-c*f,e[t+1]=l*p+h*f+c*u-o*d,e[t+2]=c*p+h*d+o*f-l*u,e[t+3]=h*p-o*u-l*f-c*d,e}get x(){return this._x}set x(e){this._x=e,this._onChangeCallback()}get y(){return this._y}set y(e){this._y=e,this._onChangeCallback()}get z(){return this._z}set z(e){this._z=e,this._onChangeCallback()}get w(){return this._w}set w(e){this._w=e,this._onChangeCallback()}set(e,t,n,i){return this._x=e,this._y=t,this._z=n,this._w=i,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._w)}copy(e){return this._x=e.x,this._y=e.y,this._z=e.z,this._w=e.w,this._onChangeCallback(),this}setFromEuler(e,t){if(!(e&&e.isEuler))throw new Error(\"THREE.Quaternion: .setFromEuler() now expects an Euler rotation rather than a Vector3 and order.\");const n=e._x,i=e._y,s=e._z,r=e._order,o=Math.cos,l=Math.sin,c=o(n/2),h=o(i/2),u=o(s/2),f=l(n/2),d=l(i/2),p=l(s/2);switch(r){case\"XYZ\":this._x=f*h*u+c*d*p,this._y=c*d*u-f*h*p,this._z=c*h*p+f*d*u,this._w=c*h*u-f*d*p;break;case\"YXZ\":this._x=f*h*u+c*d*p,this._y=c*d*u-f*h*p,this._z=c*h*p-f*d*u,this._w=c*h*u+f*d*p;break;case\"ZXY\":this._x=f*h*u-c*d*p,this._y=c*d*u+f*h*p,this._z=c*h*p+f*d*u,this._w=c*h*u-f*d*p;break;case\"ZYX\":this._x=f*h*u-c*d*p,this._y=c*d*u+f*h*p,this._z=c*h*p-f*d*u,this._w=c*h*u+f*d*p;break;case\"YZX\":this._x=f*h*u+c*d*p,this._y=c*d*u+f*h*p,this._z=c*h*p-f*d*u,this._w=c*h*u-f*d*p;break;case\"XZY\":this._x=f*h*u-c*d*p,this._y=c*d*u-f*h*p,this._z=c*h*p+f*d*u,this._w=c*h*u+f*d*p;break;default:console.warn(\"THREE.Quaternion: .setFromEuler() encountered an unknown order: \"+r)}return t!==!1&&this._onChangeCallback(),this}setFromAxisAngle(e,t){const n=t/2,i=Math.sin(n);return this._x=e.x*i,this._y=e.y*i,this._z=e.z*i,this._w=Math.cos(n),this._onChangeCallback(),this}setFromRotationMatrix(e){const t=e.elements,n=t[0],i=t[4],s=t[8],r=t[1],o=t[5],l=t[9],c=t[2],h=t[6],u=t[10],f=n+o+u;if(f>0){const d=.5/Math.sqrt(f+1);this._w=.25/d,this._x=(h-l)*d,this._y=(s-c)*d,this._z=(r-i)*d}else if(n>o&&n>u){const d=2*Math.sqrt(1+n-o-u);this._w=(h-l)/d,this._x=.25*d,this._y=(i+r)/d,this._z=(s+c)/d}else if(o>u){const d=2*Math.sqrt(1+o-n-u);this._w=(s-c)/d,this._x=(i+r)/d,this._y=.25*d,this._z=(l+h)/d}else{const d=2*Math.sqrt(1+u-n-o);this._w=(r-i)/d,this._x=(s+c)/d,this._y=(l+h)/d,this._z=.25*d}return this._onChangeCallback(),this}setFromUnitVectors(e,t){let n=e.dot(t)+1;return n<Number.EPSILON?(n=0,Math.abs(e.x)>Math.abs(e.z)?(this._x=-e.y,this._y=e.x,this._z=0,this._w=n):(this._x=0,this._y=-e.z,this._z=e.y,this._w=n)):(this._x=e.y*t.z-e.z*t.y,this._y=e.z*t.x-e.x*t.z,this._z=e.x*t.y-e.y*t.x,this._w=n),this.normalize()}angleTo(e){return 2*Math.acos(Math.abs(Ut(this.dot(e),-1,1)))}rotateTowards(e,t){const n=this.angleTo(e);if(n===0)return this;const i=Math.min(1,t/n);return this.slerp(e,i),this}identity(){return this.set(0,0,0,1)}invert(){return this.conjugate()}conjugate(){return this._x*=-1,this._y*=-1,this._z*=-1,this._onChangeCallback(),this}dot(e){return this._x*e._x+this._y*e._y+this._z*e._z+this._w*e._w}lengthSq(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w}length(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)}normalize(){let e=this.length();return e===0?(this._x=0,this._y=0,this._z=0,this._w=1):(e=1/e,this._x=this._x*e,this._y=this._y*e,this._z=this._z*e,this._w=this._w*e),this._onChangeCallback(),this}multiply(e){return this.multiplyQuaternions(this,e)}premultiply(e){return this.multiplyQuaternions(e,this)}multiplyQuaternions(e,t){const n=e._x,i=e._y,s=e._z,r=e._w,o=t._x,l=t._y,c=t._z,h=t._w;return this._x=n*h+r*o+i*c-s*l,this._y=i*h+r*l+s*o-n*c,this._z=s*h+r*c+n*l-i*o,this._w=r*h-n*o-i*l-s*c,this._onChangeCallback(),this}slerp(e,t){if(t===0)return this;if(t===1)return this.copy(e);const n=this._x,i=this._y,s=this._z,r=this._w;let o=r*e._w+n*e._x+i*e._y+s*e._z;if(o<0?(this._w=-e._w,this._x=-e._x,this._y=-e._y,this._z=-e._z,o=-o):this.copy(e),o>=1)return this._w=r,this._x=n,this._y=i,this._z=s,this;const l=1-o*o;if(l<=Number.EPSILON){const d=1-t;return this._w=d*r+t*this._w,this._x=d*n+t*this._x,this._y=d*i+t*this._y,this._z=d*s+t*this._z,this.normalize(),this._onChangeCallback(),this}const c=Math.sqrt(l),h=Math.atan2(c,o),u=Math.sin((1-t)*h)/c,f=Math.sin(t*h)/c;return this._w=r*u+this._w*f,this._x=n*u+this._x*f,this._y=i*u+this._y*f,this._z=s*u+this._z*f,this._onChangeCallback(),this}slerpQuaternions(e,t,n){return this.copy(e).slerp(t,n)}random(){const e=Math.random(),t=Math.sqrt(1-e),n=Math.sqrt(e),i=2*Math.PI*Math.random(),s=2*Math.PI*Math.random();return this.set(t*Math.cos(i),n*Math.sin(s),n*Math.cos(s),t*Math.sin(i))}equals(e){return e._x===this._x&&e._y===this._y&&e._z===this._z&&e._w===this._w}fromArray(e,t=0){return this._x=e[t],this._y=e[t+1],this._z=e[t+2],this._w=e[t+3],this._onChangeCallback(),this}toArray(e=[],t=0){return e[t]=this._x,e[t+1]=this._y,e[t+2]=this._z,e[t+3]=this._w,e}fromBufferAttribute(e,t){return this._x=e.getX(t),this._y=e.getY(t),this._z=e.getZ(t),this._w=e.getW(t),this}_onChange(e){return this._onChangeCallback=e,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._w}}class I{constructor(e=0,t=0,n=0){I.prototype.isVector3=!0,this.x=e,this.y=t,this.z=n}set(e,t,n){return n===void 0&&(n=this.z),this.x=e,this.y=t,this.z=n,this}setScalar(e){return this.x=e,this.y=e,this.z=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setZ(e){return this.z=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;case 2:this.z=t;break;default:throw new Error(\"index is out of range: \"+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw new Error(\"index is out of range: \"+e)}}clone(){return new this.constructor(this.x,this.y,this.z)}copy(e){return this.x=e.x,this.y=e.y,this.z=e.z,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this}addScalar(e){return this.x+=e,this.y+=e,this.z+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this.z=e.z+t.z,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this.z+=e.z*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this}subScalar(e){return this.x-=e,this.y-=e,this.z-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this.z=e.z-t.z,this}multiply(e){return this.x*=e.x,this.y*=e.y,this.z*=e.z,this}multiplyScalar(e){return this.x*=e,this.y*=e,this.z*=e,this}multiplyVectors(e,t){return this.x=e.x*t.x,this.y=e.y*t.y,this.z=e.z*t.z,this}applyEuler(e){return this.applyQuaternion(vf.setFromEuler(e))}applyAxisAngle(e,t){return this.applyQuaternion(vf.setFromAxisAngle(e,t))}applyMatrix3(e){const t=this.x,n=this.y,i=this.z,s=e.elements;return this.x=s[0]*t+s[3]*n+s[6]*i,this.y=s[1]*t+s[4]*n+s[7]*i,this.z=s[2]*t+s[5]*n+s[8]*i,this}applyNormalMatrix(e){return this.applyMatrix3(e).normalize()}applyMatrix4(e){const t=this.x,n=this.y,i=this.z,s=e.elements,r=1/(s[3]*t+s[7]*n+s[11]*i+s[15]);return this.x=(s[0]*t+s[4]*n+s[8]*i+s[12])*r,this.y=(s[1]*t+s[5]*n+s[9]*i+s[13])*r,this.z=(s[2]*t+s[6]*n+s[10]*i+s[14])*r,this}applyQuaternion(e){const t=this.x,n=this.y,i=this.z,s=e.x,r=e.y,o=e.z,l=e.w,c=l*t+r*i-o*n,h=l*n+o*t-s*i,u=l*i+s*n-r*t,f=-s*t-r*n-o*i;return this.x=c*l+f*-s+h*-o-u*-r,this.y=h*l+f*-r+u*-s-c*-o,this.z=u*l+f*-o+c*-r-h*-s,this}project(e){return this.applyMatrix4(e.matrixWorldInverse).applyMatrix4(e.projectionMatrix)}unproject(e){return this.applyMatrix4(e.projectionMatrixInverse).applyMatrix4(e.matrixWorld)}transformDirection(e){const t=this.x,n=this.y,i=this.z,s=e.elements;return this.x=s[0]*t+s[4]*n+s[8]*i,this.y=s[1]*t+s[5]*n+s[9]*i,this.z=s[2]*t+s[6]*n+s[10]*i,this.normalize()}divide(e){return this.x/=e.x,this.y/=e.y,this.z/=e.z,this}divideScalar(e){return this.multiplyScalar(1/e)}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this.z=Math.min(this.z,e.z),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this.z=Math.max(this.z,e.z),this}clamp(e,t){return this.x=Math.max(e.x,Math.min(t.x,this.x)),this.y=Math.max(e.y,Math.min(t.y,this.y)),this.z=Math.max(e.z,Math.min(t.z,this.z)),this}clampScalar(e,t){return this.x=Math.max(e,Math.min(t,this.x)),this.y=Math.max(e,Math.min(t,this.y)),this.z=Math.max(e,Math.min(t,this.z)),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(Math.max(e,Math.min(t,n)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this}roundToZero(){return this.x=this.x<0?Math.ceil(this.x):Math.floor(this.x),this.y=this.y<0?Math.ceil(this.y):Math.floor(this.y),this.z=this.z<0?Math.ceil(this.z):Math.floor(this.z),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)}normalize(){return this.divideScalar(this.length()||1)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this.z+=(e.z-this.z)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this.z=e.z+(t.z-e.z)*n,this}cross(e){return this.crossVectors(this,e)}crossVectors(e,t){const n=e.x,i=e.y,s=e.z,r=t.x,o=t.y,l=t.z;return this.x=i*l-s*o,this.y=s*r-n*l,this.z=n*o-i*r,this}projectOnVector(e){const t=e.lengthSq();if(t===0)return this.set(0,0,0);const n=e.dot(this)/t;return this.copy(e).multiplyScalar(n)}projectOnPlane(e){return Mc.copy(this).projectOnVector(e),this.sub(Mc)}reflect(e){return this.sub(Mc.copy(e).multiplyScalar(2*this.dot(e)))}angleTo(e){const t=Math.sqrt(this.lengthSq()*e.lengthSq());if(t===0)return Math.PI/2;const n=this.dot(e)/t;return Math.acos(Ut(n,-1,1))}distanceTo(e){return Math.sqrt(this.distanceToSquared(e))}distanceToSquared(e){const t=this.x-e.x,n=this.y-e.y,i=this.z-e.z;return t*t+n*n+i*i}manhattanDistanceTo(e){return Math.abs(this.x-e.x)+Math.abs(this.y-e.y)+Math.abs(this.z-e.z)}setFromSpherical(e){return this.setFromSphericalCoords(e.radius,e.phi,e.theta)}setFromSphericalCoords(e,t,n){const i=Math.sin(t)*e;return this.x=i*Math.sin(n),this.y=Math.cos(t)*e,this.z=i*Math.cos(n),this}setFromCylindrical(e){return this.setFromCylindricalCoords(e.radius,e.theta,e.y)}setFromCylindricalCoords(e,t,n){return this.x=e*Math.sin(t),this.y=n,this.z=e*Math.cos(t),this}setFromMatrixPosition(e){const t=e.elements;return this.x=t[12],this.y=t[13],this.z=t[14],this}setFromMatrixScale(e){const t=this.setFromMatrixColumn(e,0).length(),n=this.setFromMatrixColumn(e,1).length(),i=this.setFromMatrixColumn(e,2).length();return this.x=t,this.y=n,this.z=i,this}setFromMatrixColumn(e,t){return this.fromArray(e.elements,t*4)}setFromMatrix3Column(e,t){return this.fromArray(e.elements,t*3)}setFromEuler(e){return this.x=e._x,this.y=e._y,this.z=e._z,this}equals(e){return e.x===this.x&&e.y===this.y&&e.z===this.z}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this.z=e[t+2],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e[t+2]=this.z,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this.z=e.getZ(t),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this}randomDirection(){const e=(Math.random()-.5)*2,t=Math.random()*Math.PI*2,n=Math.sqrt(1-e**2);return this.x=n*Math.cos(t),this.y=n*Math.sin(t),this.z=e,this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z}}const Mc=new I,vf=new kt;class di{constructor(e=new I(1/0,1/0,1/0),t=new I(-1/0,-1/0,-1/0)){this.isBox3=!0,this.min=e,this.max=t}set(e,t){return this.min.copy(e),this.max.copy(t),this}setFromArray(e){let t=1/0,n=1/0,i=1/0,s=-1/0,r=-1/0,o=-1/0;for(let l=0,c=e.length;l<c;l+=3){const h=e[l],u=e[l+1],f=e[l+2];h<t&&(t=h),u<n&&(n=u),f<i&&(i=f),h>s&&(s=h),u>r&&(r=u),f>o&&(o=f)}return this.min.set(t,n,i),this.max.set(s,r,o),this}setFromBufferAttribute(e){let t=1/0,n=1/0,i=1/0,s=-1/0,r=-1/0,o=-1/0;for(let l=0,c=e.count;l<c;l++){const h=e.getX(l),u=e.getY(l),f=e.getZ(l);h<t&&(t=h),u<n&&(n=u),f<i&&(i=f),h>s&&(s=h),u>r&&(r=u),f>o&&(o=f)}return this.min.set(t,n,i),this.max.set(s,r,o),this}setFromPoints(e){this.makeEmpty();for(let t=0,n=e.length;t<n;t++)this.expandByPoint(e[t]);return this}setFromCenterAndSize(e,t){const n=xs.copy(t).multiplyScalar(.5);return this.min.copy(e).sub(n),this.max.copy(e).add(n),this}setFromObject(e,t=!1){return this.makeEmpty(),this.expandByObject(e,t)}clone(){return new this.constructor().copy(this)}copy(e){return this.min.copy(e.min),this.max.copy(e.max),this}makeEmpty(){return this.min.x=this.min.y=this.min.z=1/0,this.max.x=this.max.y=this.max.z=-1/0,this}isEmpty(){return this.max.x<this.min.x||this.max.y<this.min.y||this.max.z<this.min.z}getCenter(e){return this.isEmpty()?e.set(0,0,0):e.addVectors(this.min,this.max).multiplyScalar(.5)}getSize(e){return this.isEmpty()?e.set(0,0,0):e.subVectors(this.max,this.min)}expandByPoint(e){return this.min.min(e),this.max.max(e),this}expandByVector(e){return this.min.sub(e),this.max.add(e),this}expandByScalar(e){return this.min.addScalar(-e),this.max.addScalar(e),this}expandByObject(e,t=!1){e.updateWorldMatrix(!1,!1);const n=e.geometry;if(n!==void 0)if(t&&n.attributes!=null&&n.attributes.position!==void 0){const s=n.attributes.position;for(let r=0,o=s.count;r<o;r++)xs.fromBufferAttribute(s,r).applyMatrix4(e.matrixWorld),this.expandByPoint(xs)}else n.boundingBox===null&&n.computeBoundingBox(),Sc.copy(n.boundingBox),Sc.applyMatrix4(e.matrixWorld),this.union(Sc);const i=e.children;for(let s=0,r=i.length;s<r;s++)this.expandByObject(i[s],t);return this}containsPoint(e){return!(e.x<this.min.x||e.x>this.max.x||e.y<this.min.y||e.y>this.max.y||e.z<this.min.z||e.z>this.max.z)}containsBox(e){return this.min.x<=e.min.x&&e.max.x<=this.max.x&&this.min.y<=e.min.y&&e.max.y<=this.max.y&&this.min.z<=e.min.z&&e.max.z<=this.max.z}getParameter(e,t){return t.set((e.x-this.min.x)/(this.max.x-this.min.x),(e.y-this.min.y)/(this.max.y-this.min.y),(e.z-this.min.z)/(this.max.z-this.min.z))}intersectsBox(e){return!(e.max.x<this.min.x||e.min.x>this.max.x||e.max.y<this.min.y||e.min.y>this.max.y||e.max.z<this.min.z||e.min.z>this.max.z)}intersectsSphere(e){return this.clampPoint(e.center,xs),xs.distanceToSquared(e.center)<=e.radius*e.radius}intersectsPlane(e){let t,n;return e.normal.x>0?(t=e.normal.x*this.min.x,n=e.normal.x*this.max.x):(t=e.normal.x*this.max.x,n=e.normal.x*this.min.x),e.normal.y>0?(t+=e.normal.y*this.min.y,n+=e.normal.y*this.max.y):(t+=e.normal.y*this.max.y,n+=e.normal.y*this.min.y),e.normal.z>0?(t+=e.normal.z*this.min.z,n+=e.normal.z*this.max.z):(t+=e.normal.z*this.max.z,n+=e.normal.z*this.min.z),t<=-e.constant&&n>=-e.constant}intersectsTriangle(e){if(this.isEmpty())return!1;this.getCenter(po),fa.subVectors(this.max,po),er.subVectors(e.a,po),tr.subVectors(e.b,po),nr.subVectors(e.c,po),Bi.subVectors(tr,er),zi.subVectors(nr,tr),vs.subVectors(er,nr);let t=[0,-Bi.z,Bi.y,0,-zi.z,zi.y,0,-vs.z,vs.y,Bi.z,0,-Bi.x,zi.z,0,-zi.x,vs.z,0,-vs.x,-Bi.y,Bi.x,0,-zi.y,zi.x,0,-vs.y,vs.x,0];return!Tc(t,er,tr,nr,fa)||(t=[1,0,0,0,1,0,0,0,1],!Tc(t,er,tr,nr,fa))?!1:(da.crossVectors(Bi,zi),t=[da.x,da.y,da.z],Tc(t,er,tr,nr,fa))}clampPoint(e,t){return t.copy(e).clamp(this.min,this.max)}distanceToPoint(e){return xs.copy(e).clamp(this.min,this.max).sub(e).length()}getBoundingSphere(e){return this.getCenter(e.center),e.radius=this.getSize(xs).length()*.5,e}intersect(e){return this.min.max(e.min),this.max.min(e.max),this.isEmpty()&&this.makeEmpty(),this}union(e){return this.min.min(e.min),this.max.max(e.max),this}applyMatrix4(e){return this.isEmpty()?this:(pi[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(e),pi[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(e),pi[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(e),pi[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(e),pi[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(e),pi[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(e),pi[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(e),pi[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(e),this.setFromPoints(pi),this)}translate(e){return this.min.add(e),this.max.add(e),this}equals(e){return e.min.equals(this.min)&&e.max.equals(this.max)}}const pi=[new I,new I,new I,new I,new I,new I,new I,new I],xs=new I,Sc=new di,er=new I,tr=new I,nr=new I,Bi=new I,zi=new I,vs=new I,po=new I,fa=new I,da=new I,_s=new I;function Tc(a,e,t,n,i){for(let s=0,r=a.length-3;s<=r;s+=3){_s.fromArray(a,s);const o=i.x*Math.abs(_s.x)+i.y*Math.abs(_s.y)+i.z*Math.abs(_s.z),l=e.dot(_s),c=t.dot(_s),h=n.dot(_s);if(Math.max(-Math.max(l,c,h),Math.min(l,c,h))>o)return!1}return!0}const Zg=new di,_f=new I,pa=new I,Ac=new I;class Ui{constructor(e=new I,t=-1){this.center=e,this.radius=t}set(e,t){return this.center.copy(e),this.radius=t,this}setFromPoints(e,t){const n=this.center;t!==void 0?n.copy(t):Zg.setFromPoints(e).getCenter(n);let i=0;for(let s=0,r=e.length;s<r;s++)i=Math.max(i,n.distanceToSquared(e[s]));return this.radius=Math.sqrt(i),this}copy(e){return this.center.copy(e.center),this.radius=e.radius,this}isEmpty(){return this.radius<0}makeEmpty(){return this.center.set(0,0,0),this.radius=-1,this}containsPoint(e){return e.distanceToSquared(this.center)<=this.radius*this.radius}distanceToPoint(e){return e.distanceTo(this.center)-this.radius}intersectsSphere(e){const t=this.radius+e.radius;return e.center.distanceToSquared(this.center)<=t*t}intersectsBox(e){return e.intersectsSphere(this)}intersectsPlane(e){return Math.abs(e.distanceToPoint(this.center))<=this.radius}clampPoint(e,t){const n=this.center.distanceToSquared(e);return t.copy(e),n>this.radius*this.radius&&(t.sub(this.center).normalize(),t.multiplyScalar(this.radius).add(this.center)),t}getBoundingBox(e){return this.isEmpty()?(e.makeEmpty(),e):(e.set(this.center,this.center),e.expandByScalar(this.radius),e)}applyMatrix4(e){return this.center.applyMatrix4(e),this.radius=this.radius*e.getMaxScaleOnAxis(),this}translate(e){return this.center.add(e),this}expandByPoint(e){Ac.subVectors(e,this.center);const t=Ac.lengthSq();if(t>this.radius*this.radius){const n=Math.sqrt(t),i=(n-this.radius)*.5;this.center.add(Ac.multiplyScalar(i/n)),this.radius+=i}return this}union(e){return this.center.equals(e.center)===!0?pa.set(0,0,1).multiplyScalar(e.radius):pa.subVectors(e.center,this.center).normalize().multiplyScalar(e.radius),this.expandByPoint(_f.copy(e.center).add(pa)),this.expandByPoint(_f.copy(e.center).sub(pa)),this}equals(e){return e.center.equals(this.center)&&e.radius===this.radius}clone(){return new this.constructor().copy(this)}}const mi=new I,Ec=new I,ma=new I,Gi=new I,Cc=new I,ga=new I,Lc=new I;class mo{constructor(e=new I,t=new I(0,0,-1)){this.origin=e,this.direction=t}set(e,t){return this.origin.copy(e),this.direction.copy(t),this}copy(e){return this.origin.copy(e.origin),this.direction.copy(e.direction),this}at(e,t){return t.copy(this.direction).multiplyScalar(e).add(this.origin)}lookAt(e){return this.direction.copy(e).sub(this.origin).normalize(),this}recast(e){return this.origin.copy(this.at(e,mi)),this}closestPointToPoint(e,t){t.subVectors(e,this.origin);const n=t.dot(this.direction);return n<0?t.copy(this.origin):t.copy(this.direction).multiplyScalar(n).add(this.origin)}distanceToPoint(e){return Math.sqrt(this.distanceSqToPoint(e))}distanceSqToPoint(e){const t=mi.subVectors(e,this.origin).dot(this.direction);return t<0?this.origin.distanceToSquared(e):(mi.copy(this.direction).multiplyScalar(t).add(this.origin),mi.distanceToSquared(e))}distanceSqToSegment(e,t,n,i){Ec.copy(e).add(t).multiplyScalar(.5),ma.copy(t).sub(e).normalize(),Gi.copy(this.origin).sub(Ec);const s=e.distanceTo(t)*.5,r=-this.direction.dot(ma),o=Gi.dot(this.direction),l=-Gi.dot(ma),c=Gi.lengthSq(),h=Math.abs(1-r*r);let u,f,d,p;if(h>0)if(u=r*l-o,f=r*o-l,p=s*h,u>=0)if(f>=-p)if(f<=p){const m=1/h;u*=m,f*=m,d=u*(u+r*f+2*o)+f*(r*u+f+2*l)+c}else f=s,u=Math.max(0,-(r*f+o)),d=-u*u+f*(f+2*l)+c;else f=-s,u=Math.max(0,-(r*f+o)),d=-u*u+f*(f+2*l)+c;else f<=-p?(u=Math.max(0,-(-r*s+o)),f=u>0?-s:Math.min(Math.max(-s,-l),s),d=-u*u+f*(f+2*l)+c):f<=p?(u=0,f=Math.min(Math.max(-s,-l),s),d=f*(f+2*l)+c):(u=Math.max(0,-(r*s+o)),f=u>0?s:Math.min(Math.max(-s,-l),s),d=-u*u+f*(f+2*l)+c);else f=r>0?-s:s,u=Math.max(0,-(r*f+o)),d=-u*u+f*(f+2*l)+c;return n&&n.copy(this.direction).multiplyScalar(u).add(this.origin),i&&i.copy(ma).multiplyScalar(f).add(Ec),d}intersectSphere(e,t){mi.subVectors(e.center,this.origin);const n=mi.dot(this.direction),i=mi.dot(mi)-n*n,s=e.radius*e.radius;if(i>s)return null;const r=Math.sqrt(s-i),o=n-r,l=n+r;return o<0&&l<0?null:o<0?this.at(l,t):this.at(o,t)}intersectsSphere(e){return this.distanceSqToPoint(e.center)<=e.radius*e.radius}distanceToPlane(e){const t=e.normal.dot(this.direction);if(t===0)return e.distanceToPoint(this.origin)===0?0:null;const n=-(this.origin.dot(e.normal)+e.constant)/t;return n>=0?n:null}intersectPlane(e,t){const n=this.distanceToPlane(e);return n===null?null:this.at(n,t)}intersectsPlane(e){const t=e.distanceToPoint(this.origin);return t===0||e.normal.dot(this.direction)*t<0}intersectBox(e,t){let n,i,s,r,o,l;const c=1/this.direction.x,h=1/this.direction.y,u=1/this.direction.z,f=this.origin;return c>=0?(n=(e.min.x-f.x)*c,i=(e.max.x-f.x)*c):(n=(e.max.x-f.x)*c,i=(e.min.x-f.x)*c),h>=0?(s=(e.min.y-f.y)*h,r=(e.max.y-f.y)*h):(s=(e.max.y-f.y)*h,r=(e.min.y-f.y)*h),n>r||s>i||((s>n||n!==n)&&(n=s),(r<i||i!==i)&&(i=r),u>=0?(o=(e.min.z-f.z)*u,l=(e.max.z-f.z)*u):(o=(e.max.z-f.z)*u,l=(e.min.z-f.z)*u),n>l||o>i)||((o>n||n!==n)&&(n=o),(l<i||i!==i)&&(i=l),i<0)?null:this.at(n>=0?n:i,t)}intersectsBox(e){return this.intersectBox(e,mi)!==null}intersectTriangle(e,t,n,i,s){Cc.subVectors(t,e),ga.subVectors(n,e),Lc.crossVectors(Cc,ga);let r=this.direction.dot(Lc),o;if(r>0){if(i)return null;o=1}else if(r<0)o=-1,r=-r;else return null;Gi.subVectors(this.origin,e);const l=o*this.direction.dot(ga.crossVectors(Gi,ga));if(l<0)return null;const c=o*this.direction.dot(Cc.cross(Gi));if(c<0||l+c>r)return null;const h=-o*Gi.dot(Lc);return h<0?null:this.at(h/r,s)}applyMatrix4(e){return this.origin.applyMatrix4(e),this.direction.transformDirection(e),this}equals(e){return e.origin.equals(this.origin)&&e.direction.equals(this.direction)}clone(){return new this.constructor().copy(this)}}class Ne{constructor(){Ne.prototype.isMatrix4=!0,this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]}set(e,t,n,i,s,r,o,l,c,h,u,f,d,p,m,g){const y=this.elements;return y[0]=e,y[4]=t,y[8]=n,y[12]=i,y[1]=s,y[5]=r,y[9]=o,y[13]=l,y[2]=c,y[6]=h,y[10]=u,y[14]=f,y[3]=d,y[7]=p,y[11]=m,y[15]=g,this}identity(){return this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1),this}clone(){return new Ne().fromArray(this.elements)}copy(e){const t=this.elements,n=e.elements;return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],this}copyPosition(e){const t=this.elements,n=e.elements;return t[12]=n[12],t[13]=n[13],t[14]=n[14],this}setFromMatrix3(e){const t=e.elements;return this.set(t[0],t[3],t[6],0,t[1],t[4],t[7],0,t[2],t[5],t[8],0,0,0,0,1),this}extractBasis(e,t,n){return e.setFromMatrixColumn(this,0),t.setFromMatrixColumn(this,1),n.setFromMatrixColumn(this,2),this}makeBasis(e,t,n){return this.set(e.x,t.x,n.x,0,e.y,t.y,n.y,0,e.z,t.z,n.z,0,0,0,0,1),this}extractRotation(e){const t=this.elements,n=e.elements,i=1/ir.setFromMatrixColumn(e,0).length(),s=1/ir.setFromMatrixColumn(e,1).length(),r=1/ir.setFromMatrixColumn(e,2).length();return t[0]=n[0]*i,t[1]=n[1]*i,t[2]=n[2]*i,t[3]=0,t[4]=n[4]*s,t[5]=n[5]*s,t[6]=n[6]*s,t[7]=0,t[8]=n[8]*r,t[9]=n[9]*r,t[10]=n[10]*r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,this}makeRotationFromEuler(e){const t=this.elements,n=e.x,i=e.y,s=e.z,r=Math.cos(n),o=Math.sin(n),l=Math.cos(i),c=Math.sin(i),h=Math.cos(s),u=Math.sin(s);if(e.order===\"XYZ\"){const f=r*h,d=r*u,p=o*h,m=o*u;t[0]=l*h,t[4]=-l*u,t[8]=c,t[1]=d+p*c,t[5]=f-m*c,t[9]=-o*l,t[2]=m-f*c,t[6]=p+d*c,t[10]=r*l}else if(e.order===\"YXZ\"){const f=l*h,d=l*u,p=c*h,m=c*u;t[0]=f+m*o,t[4]=p*o-d,t[8]=r*c,t[1]=r*u,t[5]=r*h,t[9]=-o,t[2]=d*o-p,t[6]=m+f*o,t[10]=r*l}else if(e.order===\"ZXY\"){const f=l*h,d=l*u,p=c*h,m=c*u;t[0]=f-m*o,t[4]=-r*u,t[8]=p+d*o,t[1]=d+p*o,t[5]=r*h,t[9]=m-f*o,t[2]=-r*c,t[6]=o,t[10]=r*l}else if(e.order===\"ZYX\"){const f=r*h,d=r*u,p=o*h,m=o*u;t[0]=l*h,t[4]=p*c-d,t[8]=f*c+m,t[1]=l*u,t[5]=m*c+f,t[9]=d*c-p,t[2]=-c,t[6]=o*l,t[10]=r*l}else if(e.order===\"YZX\"){const f=r*l,d=r*c,p=o*l,m=o*c;t[0]=l*h,t[4]=m-f*u,t[8]=p*u+d,t[1]=u,t[5]=r*h,t[9]=-o*h,t[2]=-c*h,t[6]=d*u+p,t[10]=f-m*u}else if(e.order===\"XZY\"){const f=r*l,d=r*c,p=o*l,m=o*c;t[0]=l*h,t[4]=-u,t[8]=c*h,t[1]=f*u+m,t[5]=r*h,t[9]=d*u-p,t[2]=p*u-d,t[6]=o*h,t[10]=m*u+f}return t[3]=0,t[7]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,this}makeRotationFromQuaternion(e){return this.compose(Kg,e,Jg)}lookAt(e,t,n){const i=this.elements;return Tn.subVectors(e,t),Tn.lengthSq()===0&&(Tn.z=1),Tn.normalize(),Vi.crossVectors(n,Tn),Vi.lengthSq()===0&&(Math.abs(n.z)===1?Tn.x+=1e-4:Tn.z+=1e-4,Tn.normalize(),Vi.crossVectors(n,Tn)),Vi.normalize(),ya.crossVectors(Tn,Vi),i[0]=Vi.x,i[4]=ya.x,i[8]=Tn.x,i[1]=Vi.y,i[5]=ya.y,i[9]=Tn.y,i[2]=Vi.z,i[6]=ya.z,i[10]=Tn.z,this}multiply(e){return this.multiplyMatrices(this,e)}premultiply(e){return this.multiplyMatrices(e,this)}multiplyMatrices(e,t){const n=e.elements,i=t.elements,s=this.elements,r=n[0],o=n[4],l=n[8],c=n[12],h=n[1],u=n[5],f=n[9],d=n[13],p=n[2],m=n[6],g=n[10],y=n[14],x=n[3],b=n[7],v=n[11],M=n[15],T=i[0],C=i[4],_=i[8],E=i[12],F=i[1],U=i[5],q=i[9],K=i[13],G=i[2],X=i[6],O=i[10],j=i[14],Y=i[3],W=i[7],Z=i[11],ee=i[15];return s[0]=r*T+o*F+l*G+c*Y,s[4]=r*C+o*U+l*X+c*W,s[8]=r*_+o*q+l*O+c*Z,s[12]=r*E+o*K+l*j+c*ee,s[1]=h*T+u*F+f*G+d*Y,s[5]=h*C+u*U+f*X+d*W,s[9]=h*_+u*q+f*O+d*Z,s[13]=h*E+u*K+f*j+d*ee,s[2]=p*T+m*F+g*G+y*Y,s[6]=p*C+m*U+g*X+y*W,s[10]=p*_+m*q+g*O+y*Z,s[14]=p*E+m*K+g*j+y*ee,s[3]=x*T+b*F+v*G+M*Y,s[7]=x*C+b*U+v*X+M*W,s[11]=x*_+b*q+v*O+M*Z,s[15]=x*E+b*K+v*j+M*ee,this}multiplyScalar(e){const t=this.elements;return t[0]*=e,t[4]*=e,t[8]*=e,t[12]*=e,t[1]*=e,t[5]*=e,t[9]*=e,t[13]*=e,t[2]*=e,t[6]*=e,t[10]*=e,t[14]*=e,t[3]*=e,t[7]*=e,t[11]*=e,t[15]*=e,this}determinant(){const e=this.elements,t=e[0],n=e[4],i=e[8],s=e[12],r=e[1],o=e[5],l=e[9],c=e[13],h=e[2],u=e[6],f=e[10],d=e[14],p=e[3],m=e[7],g=e[11],y=e[15];return p*(+s*l*u-i*c*u-s*o*f+n*c*f+i*o*d-n*l*d)+m*(+t*l*d-t*c*f+s*r*f-i*r*d+i*c*h-s*l*h)+g*(+t*c*u-t*o*d-s*r*u+n*r*d+s*o*h-n*c*h)+y*(-i*o*h-t*l*u+t*o*f+i*r*u-n*r*f+n*l*h)}transpose(){const e=this.elements;let t;return t=e[1],e[1]=e[4],e[4]=t,t=e[2],e[2]=e[8],e[8]=t,t=e[6],e[6]=e[9],e[9]=t,t=e[3],e[3]=e[12],e[12]=t,t=e[7],e[7]=e[13],e[13]=t,t=e[11],e[11]=e[14],e[14]=t,this}setPosition(e,t,n){const i=this.elements;return e.isVector3?(i[12]=e.x,i[13]=e.y,i[14]=e.z):(i[12]=e,i[13]=t,i[14]=n),this}invert(){const e=this.elements,t=e[0],n=e[1],i=e[2],s=e[3],r=e[4],o=e[5],l=e[6],c=e[7],h=e[8],u=e[9],f=e[10],d=e[11],p=e[12],m=e[13],g=e[14],y=e[15],x=u*g*c-m*f*c+m*l*d-o*g*d-u*l*y+o*f*y,b=p*f*c-h*g*c-p*l*d+r*g*d+h*l*y-r*f*y,v=h*m*c-p*u*c+p*o*d-r*m*d-h*o*y+r*u*y,M=p*u*l-h*m*l-p*o*f+r*m*f+h*o*g-r*u*g,T=t*x+n*b+i*v+s*M;if(T===0)return this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);const C=1/T;return e[0]=x*C,e[1]=(m*f*s-u*g*s-m*i*d+n*g*d+u*i*y-n*f*y)*C,e[2]=(o*g*s-m*l*s+m*i*c-n*g*c-o*i*y+n*l*y)*C,e[3]=(u*l*s-o*f*s-u*i*c+n*f*c+o*i*d-n*l*d)*C,e[4]=b*C,e[5]=(h*g*s-p*f*s+p*i*d-t*g*d-h*i*y+t*f*y)*C,e[6]=(p*l*s-r*g*s-p*i*c+t*g*c+r*i*y-t*l*y)*C,e[7]=(r*f*s-h*l*s+h*i*c-t*f*c-r*i*d+t*l*d)*C,e[8]=v*C,e[9]=(p*u*s-h*m*s-p*n*d+t*m*d+h*n*y-t*u*y)*C,e[10]=(r*m*s-p*o*s+p*n*c-t*m*c-r*n*y+t*o*y)*C,e[11]=(h*o*s-r*u*s-h*n*c+t*u*c+r*n*d-t*o*d)*C,e[12]=M*C,e[13]=(h*m*i-p*u*i+p*n*f-t*m*f-h*n*g+t*u*g)*C,e[14]=(p*o*i-r*m*i-p*n*l+t*m*l+r*n*g-t*o*g)*C,e[15]=(r*u*i-h*o*i+h*n*l-t*u*l-r*n*f+t*o*f)*C,this}scale(e){const t=this.elements,n=e.x,i=e.y,s=e.z;return t[0]*=n,t[4]*=i,t[8]*=s,t[1]*=n,t[5]*=i,t[9]*=s,t[2]*=n,t[6]*=i,t[10]*=s,t[3]*=n,t[7]*=i,t[11]*=s,this}getMaxScaleOnAxis(){const e=this.elements,t=e[0]*e[0]+e[1]*e[1]+e[2]*e[2],n=e[4]*e[4]+e[5]*e[5]+e[6]*e[6],i=e[8]*e[8]+e[9]*e[9]+e[10]*e[10];return Math.sqrt(Math.max(t,n,i))}makeTranslation(e,t,n){return this.set(1,0,0,e,0,1,0,t,0,0,1,n,0,0,0,1),this}makeRotationX(e){const t=Math.cos(e),n=Math.sin(e);return this.set(1,0,0,0,0,t,-n,0,0,n,t,0,0,0,0,1),this}makeRotationY(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,0,n,0,0,1,0,0,-n,0,t,0,0,0,0,1),this}makeRotationZ(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,-n,0,0,n,t,0,0,0,0,1,0,0,0,0,1),this}makeRotationAxis(e,t){const n=Math.cos(t),i=Math.sin(t),s=1-n,r=e.x,o=e.y,l=e.z,c=s*r,h=s*o;return this.set(c*r+n,c*o-i*l,c*l+i*o,0,c*o+i*l,h*o+n,h*l-i*r,0,c*l-i*o,h*l+i*r,s*l*l+n,0,0,0,0,1),this}makeScale(e,t,n){return this.set(e,0,0,0,0,t,0,0,0,0,n,0,0,0,0,1),this}makeShear(e,t,n,i,s,r){return this.set(1,n,s,0,e,1,r,0,t,i,1,0,0,0,0,1),this}compose(e,t,n){const i=this.elements,s=t._x,r=t._y,o=t._z,l=t._w,c=s+s,h=r+r,u=o+o,f=s*c,d=s*h,p=s*u,m=r*h,g=r*u,y=o*u,x=l*c,b=l*h,v=l*u,M=n.x,T=n.y,C=n.z;return i[0]=(1-(m+y))*M,i[1]=(d+v)*M,i[2]=(p-b)*M,i[3]=0,i[4]=(d-v)*T,i[5]=(1-(f+y))*T,i[6]=(g+x)*T,i[7]=0,i[8]=(p+b)*C,i[9]=(g-x)*C,i[10]=(1-(f+m))*C,i[11]=0,i[12]=e.x,i[13]=e.y,i[14]=e.z,i[15]=1,this}decompose(e,t,n){const i=this.elements;let s=ir.set(i[0],i[1],i[2]).length();const r=ir.set(i[4],i[5],i[6]).length(),o=ir.set(i[8],i[9],i[10]).length();this.determinant()<0&&(s=-s),e.x=i[12],e.y=i[13],e.z=i[14],Hn.copy(this);const c=1/s,h=1/r,u=1/o;return Hn.elements[0]*=c,Hn.elements[1]*=c,Hn.elements[2]*=c,Hn.elements[4]*=h,Hn.elements[5]*=h,Hn.elements[6]*=h,Hn.elements[8]*=u,Hn.elements[9]*=u,Hn.elements[10]*=u,t.setFromRotationMatrix(Hn),n.x=s,n.y=r,n.z=o,this}makePerspective(e,t,n,i,s,r){const o=this.elements,l=2*s/(t-e),c=2*s/(n-i),h=(t+e)/(t-e),u=(n+i)/(n-i),f=-(r+s)/(r-s),d=-2*r*s/(r-s);return o[0]=l,o[4]=0,o[8]=h,o[12]=0,o[1]=0,o[5]=c,o[9]=u,o[13]=0,o[2]=0,o[6]=0,o[10]=f,o[14]=d,o[3]=0,o[7]=0,o[11]=-1,o[15]=0,this}makeOrthographic(e,t,n,i,s,r){const o=this.elements,l=1/(t-e),c=1/(n-i),h=1/(r-s),u=(t+e)*l,f=(n+i)*c,d=(r+s)*h;return o[0]=2*l,o[4]=0,o[8]=0,o[12]=-u,o[1]=0,o[5]=2*c,o[9]=0,o[13]=-f,o[2]=0,o[6]=0,o[10]=-2*h,o[14]=-d,o[3]=0,o[7]=0,o[11]=0,o[15]=1,this}equals(e){const t=this.elements,n=e.elements;for(let i=0;i<16;i++)if(t[i]!==n[i])return!1;return!0}fromArray(e,t=0){for(let n=0;n<16;n++)this.elements[n]=e[n+t];return this}toArray(e=[],t=0){const n=this.elements;return e[t]=n[0],e[t+1]=n[1],e[t+2]=n[2],e[t+3]=n[3],e[t+4]=n[4],e[t+5]=n[5],e[t+6]=n[6],e[t+7]=n[7],e[t+8]=n[8],e[t+9]=n[9],e[t+10]=n[10],e[t+11]=n[11],e[t+12]=n[12],e[t+13]=n[13],e[t+14]=n[14],e[t+15]=n[15],e}}const ir=new I,Hn=new Ne,Kg=new I(0,0,0),Jg=new I(1,1,1),Vi=new I,ya=new I,Tn=new I,bf=new Ne,wf=new kt;class In{constructor(e=0,t=0,n=0,i=In.DefaultOrder){this.isEuler=!0,this._x=e,this._y=t,this._z=n,this._order=i}get x(){return this._x}set x(e){this._x=e,this._onChangeCallback()}get y(){return this._y}set y(e){this._y=e,this._onChangeCallback()}get z(){return this._z}set z(e){this._z=e,this._onChangeCallback()}get order(){return this._order}set order(e){this._order=e,this._onChangeCallback()}set(e,t,n,i=this._order){return this._x=e,this._y=t,this._z=n,this._order=i,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._order)}copy(e){return this._x=e._x,this._y=e._y,this._z=e._z,this._order=e._order,this._onChangeCallback(),this}setFromRotationMatrix(e,t=this._order,n=!0){const i=e.elements,s=i[0],r=i[4],o=i[8],l=i[1],c=i[5],h=i[9],u=i[2],f=i[6],d=i[10];switch(t){case\"XYZ\":this._y=Math.asin(Ut(o,-1,1)),Math.abs(o)<.9999999?(this._x=Math.atan2(-h,d),this._z=Math.atan2(-r,s)):(this._x=Math.atan2(f,c),this._z=0);break;case\"YXZ\":this._x=Math.asin(-Ut(h,-1,1)),Math.abs(h)<.9999999?(this._y=Math.atan2(o,d),this._z=Math.atan2(l,c)):(this._y=Math.atan2(-u,s),this._z=0);break;case\"ZXY\":this._x=Math.asin(Ut(f,-1,1)),Math.abs(f)<.9999999?(this._y=Math.atan2(-u,d),this._z=Math.atan2(-r,c)):(this._y=0,this._z=Math.atan2(l,s));break;case\"ZYX\":this._y=Math.asin(-Ut(u,-1,1)),Math.abs(u)<.9999999?(this._x=Math.atan2(f,d),this._z=Math.atan2(l,s)):(this._x=0,this._z=Math.atan2(-r,c));break;case\"YZX\":this._z=Math.asin(Ut(l,-1,1)),Math.abs(l)<.9999999?(this._x=Math.atan2(-h,c),this._y=Math.atan2(-u,s)):(this._x=0,this._y=Math.atan2(o,d));break;case\"XZY\":this._z=Math.asin(-Ut(r,-1,1)),Math.abs(r)<.9999999?(this._x=Math.atan2(f,c),this._y=Math.atan2(o,s)):(this._x=Math.atan2(-h,d),this._y=0);break;default:console.warn(\"THREE.Euler: .setFromRotationMatrix() encountered an unknown order: \"+t)}return this._order=t,n===!0&&this._onChangeCallback(),this}setFromQuaternion(e,t,n){return bf.makeRotationFromQuaternion(e),this.setFromRotationMatrix(bf,t,n)}setFromVector3(e,t=this._order){return this.set(e.x,e.y,e.z,t)}reorder(e){return wf.setFromEuler(this),this.setFromQuaternion(wf,e)}equals(e){return e._x===this._x&&e._y===this._y&&e._z===this._z&&e._order===this._order}fromArray(e){return this._x=e[0],this._y=e[1],this._z=e[2],e[3]!==void 0&&(this._order=e[3]),this._onChangeCallback(),this}toArray(e=[],t=0){return e[t]=this._x,e[t+1]=this._y,e[t+2]=this._z,e[t+3]=this._order,e}_onChange(e){return this._onChangeCallback=e,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._order}toVector3(){console.error(\"THREE.Euler: .toVector3() has been removed. Use Vector3.setFromEuler() instead\")}}In.DefaultOrder=\"XYZ\",In.RotationOrders=[\"XYZ\",\"YZX\",\"ZXY\",\"XZY\",\"YXZ\",\"ZYX\"];class xa{constructor(){this.mask=1}set(e){this.mask=(1<<e|0)>>>0}enable(e){this.mask|=1<<e|0}enableAll(){this.mask=-1}toggle(e){this.mask^=1<<e|0}disable(e){this.mask&=~(1<<e|0)}disableAll(){this.mask=0}test(e){return(this.mask&e.mask)!==0}isEnabled(e){return(this.mask&(1<<e|0))!==0}}let $g=0;const Mf=new I,sr=new kt,gi=new Ne,va=new I,go=new I,Qg=new I,e0=new kt,Sf=new I(1,0,0),Tf=new I(0,1,0),Af=new I(0,0,1),t0={type:\"added\"},Ef={type:\"removed\"};class dt extends $n{constructor(){super(),this.isObject3D=!0,Object.defineProperty(this,\"id\",{value:$g++}),this.uuid=Sn(),this.name=\"\",this.type=\"Object3D\",this.parent=null,this.children=[],this.up=dt.DefaultUp.clone();const e=new I,t=new In,n=new kt,i=new I(1,1,1);function s(){n.setFromEuler(t,!1)}function r(){t.setFromQuaternion(n,void 0,!1)}t._onChange(s),n._onChange(r),Object.defineProperties(this,{position:{configurable:!0,enumerable:!0,value:e},rotation:{configurable:!0,enumerable:!0,value:t},quaternion:{configurable:!0,enumerable:!0,value:n},scale:{configurable:!0,enumerable:!0,value:i},modelViewMatrix:{value:new Ne},normalMatrix:{value:new un}}),this.matrix=new Ne,this.matrixWorld=new Ne,this.matrixAutoUpdate=dt.DefaultMatrixAutoUpdate,this.matrixWorldNeedsUpdate=!1,this.layers=new xa,this.visible=!0,this.castShadow=!1,this.receiveShadow=!1,this.frustumCulled=!0,this.renderOrder=0,this.animations=[],this.userData={}}onBeforeRender(){}onAfterRender(){}applyMatrix4(e){this.matrixAutoUpdate&&this.updateMatrix(),this.matrix.premultiply(e),this.matrix.decompose(this.position,this.quaternion,this.scale)}applyQuaternion(e){return this.quaternion.premultiply(e),this}setRotationFromAxisAngle(e,t){this.quaternion.setFromAxisAngle(e,t)}setRotationFromEuler(e){this.quaternion.setFromEuler(e,!0)}setRotationFromMatrix(e){this.quaternion.setFromRotationMatrix(e)}setRotationFromQuaternion(e){this.quaternion.copy(e)}rotateOnAxis(e,t){return sr.setFromAxisAngle(e,t),this.quaternion.multiply(sr),this}rotateOnWorldAxis(e,t){return sr.setFromAxisAngle(e,t),this.quaternion.premultiply(sr),this}rotateX(e){return this.rotateOnAxis(Sf,e)}rotateY(e){return this.rotateOnAxis(Tf,e)}rotateZ(e){return this.rotateOnAxis(Af,e)}translateOnAxis(e,t){return Mf.copy(e).applyQuaternion(this.quaternion),this.position.add(Mf.multiplyScalar(t)),this}translateX(e){return this.translateOnAxis(Sf,e)}translateY(e){return this.translateOnAxis(Tf,e)}translateZ(e){return this.translateOnAxis(Af,e)}localToWorld(e){return e.applyMatrix4(this.matrixWorld)}worldToLocal(e){return e.applyMatrix4(gi.copy(this.matrixWorld).invert())}lookAt(e,t,n){e.isVector3?va.copy(e):va.set(e,t,n);const i=this.parent;this.updateWorldMatrix(!0,!1),go.setFromMatrixPosition(this.matrixWorld),this.isCamera||this.isLight?gi.lookAt(go,va,this.up):gi.lookAt(va,go,this.up),this.quaternion.setFromRotationMatrix(gi),i&&(gi.extractRotation(i.matrixWorld),sr.setFromRotationMatrix(gi),this.quaternion.premultiply(sr.invert()))}add(e){if(arguments.length>1){for(let t=0;t<arguments.length;t++)this.add(arguments[t]);return this}return e===this?(console.error(\"THREE.Object3D.add: object can't be added as a child of itself.\",e),this):(e&&e.isObject3D?(e.parent!==null&&e.parent.remove(e),e.parent=this,this.children.push(e),e.dispatchEvent(t0)):console.error(\"THREE.Object3D.add: object not an instance of THREE.Object3D.\",e),this)}remove(e){if(arguments.length>1){for(let n=0;n<arguments.length;n++)this.remove(arguments[n]);return this}const t=this.children.indexOf(e);return t!==-1&&(e.parent=null,this.children.splice(t,1),e.dispatchEvent(Ef)),this}removeFromParent(){const e=this.parent;return e!==null&&e.remove(this),this}clear(){for(let e=0;e<this.children.length;e++){const t=this.children[e];t.parent=null,t.dispatchEvent(Ef)}return this.children.length=0,this}attach(e){return this.updateWorldMatrix(!0,!1),gi.copy(this.matrixWorld).invert(),e.parent!==null&&(e.parent.updateWorldMatrix(!0,!1),gi.multiply(e.parent.matrixWorld)),e.applyMatrix4(gi),this.add(e),e.updateWorldMatrix(!1,!0),this}getObjectById(e){return this.getObjectByProperty(\"id\",e)}getObjectByName(e){return this.getObjectByProperty(\"name\",e)}getObjectByProperty(e,t){if(this[e]===t)return this;for(let n=0,i=this.children.length;n<i;n++){const r=this.children[n].getObjectByProperty(e,t);if(r!==void 0)return r}}getWorldPosition(e){return this.updateWorldMatrix(!0,!1),e.setFromMatrixPosition(this.matrixWorld)}getWorldQuaternion(e){return this.updateWorldMatrix(!0,!1),this.matrixWorld.decompose(go,e,Qg),e}getWorldScale(e){return this.updateWorldMatrix(!0,!1),this.matrixWorld.decompose(go,e0,e),e}getWorldDirection(e){this.updateWorldMatrix(!0,!1);const t=this.matrixWorld.elements;return e.set(t[8],t[9],t[10]).normalize()}raycast(){}traverse(e){e(this);const t=this.children;for(let n=0,i=t.length;n<i;n++)t[n].traverse(e)}traverseVisible(e){if(this.visible===!1)return;e(this);const t=this.children;for(let n=0,i=t.length;n<i;n++)t[n].traverseVisible(e)}traverseAncestors(e){const t=this.parent;t!==null&&(e(t),t.traverseAncestors(e))}updateMatrix(){this.matrix.compose(this.position,this.quaternion,this.scale),this.matrixWorldNeedsUpdate=!0}updateMatrixWorld(e){this.matrixAutoUpdate&&this.updateMatrix(),(this.matrixWorldNeedsUpdate||e)&&(this.parent===null?this.matrixWorld.copy(this.matrix):this.matrixWorld.multiplyMatrices(this.parent.matrixWorld,this.matrix),this.matrixWorldNeedsUpdate=!1,e=!0);const t=this.children;for(let n=0,i=t.length;n<i;n++)t[n].updateMatrixWorld(e)}updateWorldMatrix(e,t){const n=this.parent;if(e===!0&&n!==null&&n.updateWorldMatrix(!0,!1),this.matrixAutoUpdate&&this.updateMatrix(),this.parent===null?this.matrixWorld.copy(this.matrix):this.matrixWorld.multiplyMatrices(this.parent.matrixWorld,this.matrix),t===!0){const i=this.children;for(let s=0,r=i.length;s<r;s++)i[s].updateWorldMatrix(!1,!0)}}toJSON(e){const t=e===void 0||typeof e==\"string\",n={};t&&(e={geometries:{},materials:{},textures:{},images:{},shapes:{},skeletons:{},animations:{},nodes:{}},n.metadata={version:4.5,type:\"Object\",generator:\"Object3D.toJSON\"});const i={};i.uuid=this.uuid,i.type=this.type,this.name!==\"\"&&(i.name=this.name),this.castShadow===!0&&(i.castShadow=!0),this.receiveShadow===!0&&(i.receiveShadow=!0),this.visible===!1&&(i.visible=!1),this.frustumCulled===!1&&(i.frustumCulled=!1),this.renderOrder!==0&&(i.renderOrder=this.renderOrder),JSON.stringify(this.userData)!==\"{}\"&&(i.userData=this.userData),i.layers=this.layers.mask,i.matrix=this.matrix.toArray(),this.matrixAutoUpdate===!1&&(i.matrixAutoUpdate=!1),this.isInstancedMesh&&(i.type=\"InstancedMesh\",i.count=this.count,i.instanceMatrix=this.instanceMatrix.toJSON(),this.instanceColor!==null&&(i.instanceColor=this.instanceColor.toJSON()));function s(o,l){return o[l.uuid]===void 0&&(o[l.uuid]=l.toJSON(e)),l.uuid}if(this.isScene)this.background&&(this.background.isColor?i.background=this.background.toJSON():this.background.isTexture&&(i.background=this.background.toJSON(e).uuid)),this.environment&&this.environment.isTexture&&this.environment.isRenderTargetTexture!==!0&&(i.environment=this.environment.toJSON(e).uuid);else if(this.isMesh||this.isLine||this.isPoints){i.geometry=s(e.geometries,this.geometry);const o=this.geometry.parameters;if(o!==void 0&&o.shapes!==void 0){const l=o.shapes;if(Array.isArray(l))for(let c=0,h=l.length;c<h;c++){const u=l[c];s(e.shapes,u)}else s(e.shapes,l)}}if(this.isSkinnedMesh&&(i.bindMode=this.bindMode,i.bindMatrix=this.bindMatrix.toArray(),this.skeleton!==void 0&&(s(e.skeletons,this.skeleton),i.skeleton=this.skeleton.uuid)),this.material!==void 0)if(Array.isArray(this.material)){const o=[];for(let l=0,c=this.material.length;l<c;l++)o.push(s(e.materials,this.material[l]));i.material=o}else i.material=s(e.materials,this.material);if(this.children.length>0){i.children=[];for(let o=0;o<this.children.length;o++)i.children.push(this.children[o].toJSON(e).object)}if(this.animations.length>0){i.animations=[];for(let o=0;o<this.animations.length;o++){const l=this.animations[o];i.animations.push(s(e.animations,l))}}if(t){const o=r(e.geometries),l=r(e.materials),c=r(e.textures),h=r(e.images),u=r(e.shapes),f=r(e.skeletons),d=r(e.animations),p=r(e.nodes);o.length>0&&(n.geometries=o),l.length>0&&(n.materials=l),c.length>0&&(n.textures=c),h.length>0&&(n.images=h),u.length>0&&(n.shapes=u),f.length>0&&(n.skeletons=f),d.length>0&&(n.animations=d),p.length>0&&(n.nodes=p)}return n.object=i,n;function r(o){const l=[];for(const c in o){const h=o[c];delete h.metadata,l.push(h)}return l}}clone(e){return new this.constructor().copy(this,e)}copy(e,t=!0){if(this.name=e.name,this.up.copy(e.up),this.position.copy(e.position),this.rotation.order=e.rotation.order,this.quaternion.copy(e.quaternion),this.scale.copy(e.scale),this.matrix.copy(e.matrix),this.matrixWorld.copy(e.matrixWorld),this.matrixAutoUpdate=e.matrixAutoUpdate,this.matrixWorldNeedsUpdate=e.matrixWorldNeedsUpdate,this.layers.mask=e.layers.mask,this.visible=e.visible,this.castShadow=e.castShadow,this.receiveShadow=e.receiveShadow,this.frustumCulled=e.frustumCulled,this.renderOrder=e.renderOrder,this.userData=JSON.parse(JSON.stringify(e.userData)),t===!0)for(let n=0;n<e.children.length;n++){const i=e.children[n];this.add(i.clone())}return this}}dt.DefaultUp=new I(0,1,0),dt.DefaultMatrixAutoUpdate=!0;const Wn=new I,yi=new I,Rc=new I,xi=new I,rr=new I,or=new I,Cf=new I,Ic=new I,Pc=new I,Dc=new I;class Pn{constructor(e=new I,t=new I,n=new I){this.a=e,this.b=t,this.c=n}static getNormal(e,t,n,i){i.subVectors(n,t),Wn.subVectors(e,t),i.cross(Wn);const s=i.lengthSq();return s>0?i.multiplyScalar(1/Math.sqrt(s)):i.set(0,0,0)}static getBarycoord(e,t,n,i,s){Wn.subVectors(i,t),yi.subVectors(n,t),Rc.subVectors(e,t);const r=Wn.dot(Wn),o=Wn.dot(yi),l=Wn.dot(Rc),c=yi.dot(yi),h=yi.dot(Rc),u=r*c-o*o;if(u===0)return s.set(-2,-1,-1);const f=1/u,d=(c*l-o*h)*f,p=(r*h-o*l)*f;return s.set(1-d-p,p,d)}static containsPoint(e,t,n,i){return this.getBarycoord(e,t,n,i,xi),xi.x>=0&&xi.y>=0&&xi.x+xi.y<=1}static getUV(e,t,n,i,s,r,o,l){return this.getBarycoord(e,t,n,i,xi),l.set(0,0),l.addScaledVector(s,xi.x),l.addScaledVector(r,xi.y),l.addScaledVector(o,xi.z),l}static isFrontFacing(e,t,n,i){return Wn.subVectors(n,t),yi.subVectors(e,t),Wn.cross(yi).dot(i)<0}set(e,t,n){return this.a.copy(e),this.b.copy(t),this.c.copy(n),this}setFromPointsAndIndices(e,t,n,i){return this.a.copy(e[t]),this.b.copy(e[n]),this.c.copy(e[i]),this}setFromAttributeAndIndices(e,t,n,i){return this.a.fromBufferAttribute(e,t),this.b.fromBufferAttribute(e,n),this.c.fromBufferAttribute(e,i),this}clone(){return new this.constructor().copy(this)}copy(e){return this.a.copy(e.a),this.b.copy(e.b),this.c.copy(e.c),this}getArea(){return Wn.subVectors(this.c,this.b),yi.subVectors(this.a,this.b),Wn.cross(yi).length()*.5}getMidpoint(e){return e.addVectors(this.a,this.b).add(this.c).multiplyScalar(.3333333333333333)}getNormal(e){return Pn.getNormal(this.a,this.b,this.c,e)}getPlane(e){return e.setFromCoplanarPoints(this.a,this.b,this.c)}getBarycoord(e,t){return Pn.getBarycoord(e,this.a,this.b,this.c,t)}getUV(e,t,n,i,s){return Pn.getUV(e,this.a,this.b,this.c,t,n,i,s)}containsPoint(e){return Pn.containsPoint(e,this.a,this.b,this.c)}isFrontFacing(e){return Pn.isFrontFacing(this.a,this.b,this.c,e)}intersectsBox(e){return e.intersectsTriangle(this)}closestPointToPoint(e,t){const n=this.a,i=this.b,s=this.c;let r,o;rr.subVectors(i,n),or.subVectors(s,n),Ic.subVectors(e,n);const l=rr.dot(Ic),c=or.dot(Ic);if(l<=0&&c<=0)return t.copy(n);Pc.subVectors(e,i);const h=rr.dot(Pc),u=or.dot(Pc);if(h>=0&&u<=h)return t.copy(i);const f=l*u-h*c;if(f<=0&&l>=0&&h<=0)return r=l/(l-h),t.copy(n).addScaledVector(rr,r);Dc.subVectors(e,s);const d=rr.dot(Dc),p=or.dot(Dc);if(p>=0&&d<=p)return t.copy(s);const m=d*c-l*p;if(m<=0&&c>=0&&p<=0)return o=c/(c-p),t.copy(n).addScaledVector(or,o);const g=h*p-d*u;if(g<=0&&u-h>=0&&d-p>=0)return Cf.subVectors(s,i),o=(u-h)/(u-h+(d-p)),t.copy(i).addScaledVector(Cf,o);const y=1/(g+m+f);return r=m*y,o=f*y,t.copy(n).addScaledVector(rr,r).addScaledVector(or,o)}equals(e){return e.a.equals(this.a)&&e.b.equals(this.b)&&e.c.equals(this.c)}}let n0=0;class Gt extends $n{constructor(){super(),this.isMaterial=!0,Object.defineProperty(this,\"id\",{value:n0++}),this.uuid=Sn(),this.name=\"\",this.type=\"Material\",this.blending=ls,this.side=li,this.vertexColors=!1,this.opacity=1,this.transparent=!1,this.blendSrc=Hl,this.blendDst=Wl,this.blendEquation=cs,this.blendSrcAlpha=null,this.blendDstAlpha=null,this.blendEquationAlpha=null,this.depthFunc=Qo,this.depthTest=!0,this.depthWrite=!0,this.stencilWriteMask=255,this.stencilFunc=pf,this.stencilRef=0,this.stencilFuncMask=255,this.stencilFail=ra,this.stencilZFail=ra,this.stencilZPass=ra,this.stencilWrite=!1,this.clippingPlanes=null,this.clipIntersection=!1,this.clipShadows=!1,this.shadowSide=null,this.colorWrite=!0,this.precision=null,this.polygonOffset=!1,this.polygonOffsetFactor=0,this.polygonOffsetUnits=0,this.dithering=!1,this.alphaToCoverage=!1,this.premultipliedAlpha=!1,this.visible=!0,this.toneMapped=!0,this.userData={},this.version=0,this._alphaTest=0}get alphaTest(){return this._alphaTest}set alphaTest(e){this._alphaTest>0!=e>0&&this.version++,this._alphaTest=e}onBuild(){}onBeforeRender(){}onBeforeCompile(){}customProgramCacheKey(){return this.onBeforeCompile.toString()}setValues(e){if(e!==void 0)for(const t in e){const n=e[t];if(n===void 0){console.warn(\"THREE.Material: '\"+t+\"' parameter is undefined.\");continue}if(t===\"shading\"){console.warn(\"THREE.\"+this.type+\": .shading has been removed. Use the boolean .flatShading instead.\"),this.flatShading=n===vh;continue}const i=this[t];if(i===void 0){console.warn(\"THREE.\"+this.type+\": '\"+t+\"' is not a property of this material.\");continue}i&&i.isColor?i.set(n):i&&i.isVector3&&n&&n.isVector3?i.copy(n):this[t]=n}}toJSON(e){const t=e===void 0||typeof e==\"string\";t&&(e={textures:{},images:{}});const n={metadata:{version:4.5,type:\"Material\",generator:\"Material.toJSON\"}};n.uuid=this.uuid,n.type=this.type,this.name!==\"\"&&(n.name=this.name),this.color&&this.color.isColor&&(n.color=this.color.getHex()),this.roughness!==void 0&&(n.roughness=this.roughness),this.metalness!==void 0&&(n.metalness=this.metalness),this.sheen!==void 0&&(n.sheen=this.sheen),this.sheenColor&&this.sheenColor.isColor&&(n.sheenColor=this.sheenColor.getHex()),this.sheenRoughness!==void 0&&(n.sheenRoughness=this.sheenRoughness),this.emissive&&this.emissive.isColor&&(n.emissive=this.emissive.getHex()),this.emissiveIntensity&&this.emissiveIntensity!==1&&(n.emissiveIntensity=this.emissiveIntensity),this.specular&&this.specular.isColor&&(n.specular=this.specular.getHex()),this.specularIntensity!==void 0&&(n.specularIntensity=this.specularIntensity),this.specularColor&&this.specularColor.isColor&&(n.specularColor=this.specularColor.getHex()),this.shininess!==void 0&&(n.shininess=this.shininess),this.clearcoat!==void 0&&(n.clearcoat=this.clearcoat),this.clearcoatRoughness!==void 0&&(n.clearcoatRoughness=this.clearcoatRoughness),this.clearcoatMap&&this.clearcoatMap.isTexture&&(n.clearcoatMap=this.clearcoatMap.toJSON(e).uuid),this.clearcoatRoughnessMap&&this.clearcoatRoughnessMap.isTexture&&(n.clearcoatRoughnessMap=this.clearcoatRoughnessMap.toJSON(e).uuid),this.clearcoatNormalMap&&this.clearcoatNormalMap.isTexture&&(n.clearcoatNormalMap=this.clearcoatNormalMap.toJSON(e).uuid,n.clearcoatNormalScale=this.clearcoatNormalScale.toArray()),this.iridescence!==void 0&&(n.iridescence=this.iridescence),this.iridescenceIOR!==void 0&&(n.iridescenceIOR=this.iridescenceIOR),this.iridescenceThicknessRange!==void 0&&(n.iridescenceThicknessRange=this.iridescenceThicknessRange),this.iridescenceMap&&this.iridescenceMap.isTexture&&(n.iridescenceMap=this.iridescenceMap.toJSON(e).uuid),this.iridescenceThicknessMap&&this.iridescenceThicknessMap.isTexture&&(n.iridescenceThicknessMap=this.iridescenceThicknessMap.toJSON(e).uuid),this.map&&this.map.isTexture&&(n.map=this.map.toJSON(e).uuid),this.matcap&&this.matcap.isTexture&&(n.matcap=this.matcap.toJSON(e).uuid),this.alphaMap&&this.alphaMap.isTexture&&(n.alphaMap=this.alphaMap.toJSON(e).uuid),this.lightMap&&this.lightMap.isTexture&&(n.lightMap=this.lightMap.toJSON(e).uuid,n.lightMapIntensity=this.lightMapIntensity),this.aoMap&&this.aoMap.isTexture&&(n.aoMap=this.aoMap.toJSON(e).uuid,n.aoMapIntensity=this.aoMapIntensity),this.bumpMap&&this.bumpMap.isTexture&&(n.bumpMap=this.bumpMap.toJSON(e).uuid,n.bumpScale=this.bumpScale),this.normalMap&&this.normalMap.isTexture&&(n.normalMap=this.normalMap.toJSON(e).uuid,n.normalMapType=this.normalMapType,n.normalScale=this.normalScale.toArray()),this.displacementMap&&this.displacementMap.isTexture&&(n.displacementMap=this.displacementMap.toJSON(e).uuid,n.displacementScale=this.displacementScale,n.displacementBias=this.displacementBias),this.roughnessMap&&this.roughnessMap.isTexture&&(n.roughnessMap=this.roughnessMap.toJSON(e).uuid),this.metalnessMap&&this.metalnessMap.isTexture&&(n.metalnessMap=this.metalnessMap.toJSON(e).uuid),this.emissiveMap&&this.emissiveMap.isTexture&&(n.emissiveMap=this.emissiveMap.toJSON(e).uuid),this.specularMap&&this.specularMap.isTexture&&(n.specularMap=this.specularMap.toJSON(e).uuid),this.specularIntensityMap&&this.specularIntensityMap.isTexture&&(n.specularIntensityMap=this.specularIntensityMap.toJSON(e).uuid),this.specularColorMap&&this.specularColorMap.isTexture&&(n.specularColorMap=this.specularColorMap.toJSON(e).uuid),this.envMap&&this.envMap.isTexture&&(n.envMap=this.envMap.toJSON(e).uuid,this.combine!==void 0&&(n.combine=this.combine)),this.envMapIntensity!==void 0&&(n.envMapIntensity=this.envMapIntensity),this.reflectivity!==void 0&&(n.reflectivity=this.reflectivity),this.refractionRatio!==void 0&&(n.refractionRatio=this.refractionRatio),this.gradientMap&&this.gradientMap.isTexture&&(n.gradientMap=this.gradientMap.toJSON(e).uuid),this.transmission!==void 0&&(n.transmission=this.transmission),this.transmissionMap&&this.transmissionMap.isTexture&&(n.transmissionMap=this.transmissionMap.toJSON(e).uuid),this.thickness!==void 0&&(n.thickness=this.thickness),this.thicknessMap&&this.thicknessMap.isTexture&&(n.thicknessMap=this.thicknessMap.toJSON(e).uuid),this.attenuationDistance!==void 0&&(n.attenuationDistance=this.attenuationDistance),this.attenuationColor!==void 0&&(n.attenuationColor=this.attenuationColor.getHex()),this.size!==void 0&&(n.size=this.size),this.shadowSide!==null&&(n.shadowSide=this.shadowSide),this.sizeAttenuation!==void 0&&(n.sizeAttenuation=this.sizeAttenuation),this.blending!==ls&&(n.blending=this.blending),this.side!==li&&(n.side=this.side),this.vertexColors&&(n.vertexColors=!0),this.opacity<1&&(n.opacity=this.opacity),this.transparent===!0&&(n.transparent=this.transparent),n.depthFunc=this.depthFunc,n.depthTest=this.depthTest,n.depthWrite=this.depthWrite,n.colorWrite=this.colorWrite,n.stencilWrite=this.stencilWrite,n.stencilWriteMask=this.stencilWriteMask,n.stencilFunc=this.stencilFunc,n.stencilRef=this.stencilRef,n.stencilFuncMask=this.stencilFuncMask,n.stencilFail=this.stencilFail,n.stencilZFail=this.stencilZFail,n.stencilZPass=this.stencilZPass,this.rotation!==void 0&&this.rotation!==0&&(n.rotation=this.rotation),this.polygonOffset===!0&&(n.polygonOffset=!0),this.polygonOffsetFactor!==0&&(n.polygonOffsetFactor=this.polygonOffsetFactor),this.polygonOffsetUnits!==0&&(n.polygonOffsetUnits=this.polygonOffsetUnits),this.linewidth!==void 0&&this.linewidth!==1&&(n.linewidth=this.linewidth),this.dashSize!==void 0&&(n.dashSize=this.dashSize),this.gapSize!==void 0&&(n.gapSize=this.gapSize),this.scale!==void 0&&(n.scale=this.scale),this.dithering===!0&&(n.dithering=!0),this.alphaTest>0&&(n.alphaTest=this.alphaTest),this.alphaToCoverage===!0&&(n.alphaToCoverage=this.alphaToCoverage),this.premultipliedAlpha===!0&&(n.premultipliedAlpha=this.premultipliedAlpha),this.wireframe===!0&&(n.wireframe=this.wireframe),this.wireframeLinewidth>1&&(n.wireframeLinewidth=this.wireframeLinewidth),this.wireframeLinecap!==\"round\"&&(n.wireframeLinecap=this.wireframeLinecap),this.wireframeLinejoin!==\"round\"&&(n.wireframeLinejoin=this.wireframeLinejoin),this.flatShading===!0&&(n.flatShading=this.flatShading),this.visible===!1&&(n.visible=!1),this.toneMapped===!1&&(n.toneMapped=!1),this.fog===!1&&(n.fog=!1),JSON.stringify(this.userData)!==\"{}\"&&(n.userData=this.userData);function i(s){const r=[];for(const o in s){const l=s[o];delete l.metadata,r.push(l)}return r}if(t){const s=i(e.textures),r=i(e.images);s.length>0&&(n.textures=s),r.length>0&&(n.images=r)}return n}clone(){return new this.constructor().copy(this)}copy(e){this.name=e.name,this.blending=e.blending,this.side=e.side,this.vertexColors=e.vertexColors,this.opacity=e.opacity,this.transparent=e.transparent,this.blendSrc=e.blendSrc,this.blendDst=e.blendDst,this.blendEquation=e.blendEquation,this.blendSrcAlpha=e.blendSrcAlpha,this.blendDstAlpha=e.blendDstAlpha,this.blendEquationAlpha=e.blendEquationAlpha,this.depthFunc=e.depthFunc,this.depthTest=e.depthTest,this.depthWrite=e.depthWrite,this.stencilWriteMask=e.stencilWriteMask,this.stencilFunc=e.stencilFunc,this.stencilRef=e.stencilRef,this.stencilFuncMask=e.stencilFuncMask,this.stencilFail=e.stencilFail,this.stencilZFail=e.stencilZFail,this.stencilZPass=e.stencilZPass,this.stencilWrite=e.stencilWrite;const t=e.clippingPlanes;let n=null;if(t!==null){const i=t.length;n=new Array(i);for(let s=0;s!==i;++s)n[s]=t[s].clone()}return this.clippingPlanes=n,this.clipIntersection=e.clipIntersection,this.clipShadows=e.clipShadows,this.shadowSide=e.shadowSide,this.colorWrite=e.colorWrite,this.precision=e.precision,this.polygonOffset=e.polygonOffset,this.polygonOffsetFactor=e.polygonOffsetFactor,this.polygonOffsetUnits=e.polygonOffsetUnits,this.dithering=e.dithering,this.alphaTest=e.alphaTest,this.alphaToCoverage=e.alphaToCoverage,this.premultipliedAlpha=e.premultipliedAlpha,this.visible=e.visible,this.toneMapped=e.toneMapped,this.userData=JSON.parse(JSON.stringify(e.userData)),this}dispose(){this.dispatchEvent({type:\"dispose\"})}set needsUpdate(e){e===!0&&this.version++}}class on extends Gt{constructor(e){super(),this.isMeshBasicMaterial=!0,this.type=\"MeshBasicMaterial\",this.color=new be(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.combine=eo,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}const Yt=new I,_a=new he;class pt{constructor(e,t,n){if(Array.isArray(e))throw new TypeError(\"THREE.BufferAttribute: array should be a Typed Array.\");this.isBufferAttribute=!0,this.name=\"\",this.array=e,this.itemSize=t,this.count=e!==void 0?e.length/t:0,this.normalized=n===!0,this.usage=lo,this.updateRange={offset:0,count:-1},this.version=0}onUploadCallback(){}set needsUpdate(e){e===!0&&this.version++}setUsage(e){return this.usage=e,this}copy(e){return this.name=e.name,this.array=new e.array.constructor(e.array),this.itemSize=e.itemSize,this.count=e.count,this.normalized=e.normalized,this.usage=e.usage,this}copyAt(e,t,n){e*=this.itemSize,n*=t.itemSize;for(let i=0,s=this.itemSize;i<s;i++)this.array[e+i]=t.array[n+i];return this}copyArray(e){return this.array.set(e),this}copyColorsArray(e){const t=this.array;let n=0;for(let i=0,s=e.length;i<s;i++){let r=e[i];r===void 0&&(console.warn(\"THREE.BufferAttribute.copyColorsArray(): color is undefined\",i),r=new be),t[n++]=r.r,t[n++]=r.g,t[n++]=r.b}return this}copyVector2sArray(e){const t=this.array;let n=0;for(let i=0,s=e.length;i<s;i++){let r=e[i];r===void 0&&(console.warn(\"THREE.BufferAttribute.copyVector2sArray(): vector is undefined\",i),r=new he),t[n++]=r.x,t[n++]=r.y}return this}copyVector3sArray(e){const t=this.array;let n=0;for(let i=0,s=e.length;i<s;i++){let r=e[i];r===void 0&&(console.warn(\"THREE.BufferAttribute.copyVector3sArray(): vector is undefined\",i),r=new I),t[n++]=r.x,t[n++]=r.y,t[n++]=r.z}return this}copyVector4sArray(e){const t=this.array;let n=0;for(let i=0,s=e.length;i<s;i++){let r=e[i];r===void 0&&(console.warn(\"THREE.BufferAttribute.copyVector4sArray(): vector is undefined\",i),r=new ft),t[n++]=r.x,t[n++]=r.y,t[n++]=r.z,t[n++]=r.w}return this}applyMatrix3(e){if(this.itemSize===2)for(let t=0,n=this.count;t<n;t++)_a.fromBufferAttribute(this,t),_a.applyMatrix3(e),this.setXY(t,_a.x,_a.y);else if(this.itemSize===3)for(let t=0,n=this.count;t<n;t++)Yt.fromBufferAttribute(this,t),Yt.applyMatrix3(e),this.setXYZ(t,Yt.x,Yt.y,Yt.z);return this}applyMatrix4(e){for(let t=0,n=this.count;t<n;t++)Yt.fromBufferAttribute(this,t),Yt.applyMatrix4(e),this.setXYZ(t,Yt.x,Yt.y,Yt.z);return this}applyNormalMatrix(e){for(let t=0,n=this.count;t<n;t++)Yt.fromBufferAttribute(this,t),Yt.applyNormalMatrix(e),this.setXYZ(t,Yt.x,Yt.y,Yt.z);return this}transformDirection(e){for(let t=0,n=this.count;t<n;t++)Yt.fromBufferAttribute(this,t),Yt.transformDirection(e),this.setXYZ(t,Yt.x,Yt.y,Yt.z);return this}set(e,t=0){return this.array.set(e,t),this}getX(e){return this.array[e*this.itemSize]}setX(e,t){return this.array[e*this.itemSize]=t,this}getY(e){return this.array[e*this.itemSize+1]}setY(e,t){return this.array[e*this.itemSize+1]=t,this}getZ(e){return this.array[e*this.itemSize+2]}setZ(e,t){return this.array[e*this.itemSize+2]=t,this}getW(e){return this.array[e*this.itemSize+3]}setW(e,t){return this.array[e*this.itemSize+3]=t,this}setXY(e,t,n){return e*=this.itemSize,this.array[e+0]=t,this.array[e+1]=n,this}setXYZ(e,t,n,i){return e*=this.itemSize,this.array[e+0]=t,this.array[e+1]=n,this.array[e+2]=i,this}setXYZW(e,t,n,i,s){return e*=this.itemSize,this.array[e+0]=t,this.array[e+1]=n,this.array[e+2]=i,this.array[e+3]=s,this}onUpload(e){return this.onUploadCallback=e,this}clone(){return new this.constructor(this.array,this.itemSize).copy(this)}toJSON(){const e={itemSize:this.itemSize,type:this.array.constructor.name,array:Array.from(this.array),normalized:this.normalized};return this.name!==\"\"&&(e.name=this.name),this.usage!==lo&&(e.usage=this.usage),(this.updateRange.offset!==0||this.updateRange.count!==-1)&&(e.updateRange=this.updateRange),e}}class i0 extends pt{constructor(e,t,n){super(new Int8Array(e),t,n)}}class s0 extends pt{constructor(e,t,n){super(new Uint8Array(e),t,n)}}class r0 extends pt{constructor(e,t,n){super(new Uint8ClampedArray(e),t,n)}}class o0 extends pt{constructor(e,t,n){super(new Int16Array(e),t,n)}}class ba extends pt{constructor(e,t,n){super(new Uint16Array(e),t,n)}}class a0 extends pt{constructor(e,t,n){super(new Int32Array(e),t,n)}}class Fc extends pt{constructor(e,t,n){super(new Uint32Array(e),t,n)}}class l0 extends pt{constructor(e,t,n){super(new Uint16Array(e),t,n),this.isFloat16BufferAttribute=!0}}class Ee extends pt{constructor(e,t,n){super(new Float32Array(e),t,n)}}class c0 extends pt{constructor(e,t,n){super(new Float64Array(e),t,n)}}let u0=0;const Dn=new Ne,Nc=new dt,ar=new I,An=new di,yo=new di,Qt=new I;class Xe extends $n{constructor(){super(),this.isBufferGeometry=!0,Object.defineProperty(this,\"id\",{value:u0++}),this.uuid=Sn(),this.name=\"\",this.type=\"BufferGeometry\",this.index=null,this.attributes={},this.morphAttributes={},this.morphTargetsRelative=!1,this.groups=[],this.boundingBox=null,this.boundingSphere=null,this.drawRange={start:0,count:1/0},this.userData={}}getIndex(){return this.index}setIndex(e){return Array.isArray(e)?this.index=new(yf(e)?Fc:ba)(e,1):this.index=e,this}getAttribute(e){return this.attributes[e]}setAttribute(e,t){return this.attributes[e]=t,this}deleteAttribute(e){return delete this.attributes[e],this}hasAttribute(e){return this.attributes[e]!==void 0}addGroup(e,t,n=0){this.groups.push({start:e,count:t,materialIndex:n})}clearGroups(){this.groups=[]}setDrawRange(e,t){this.drawRange.start=e,this.drawRange.count=t}applyMatrix4(e){const t=this.attributes.position;t!==void 0&&(t.applyMatrix4(e),t.needsUpdate=!0);const n=this.attributes.normal;if(n!==void 0){const s=new un().getNormalMatrix(e);n.applyNormalMatrix(s),n.needsUpdate=!0}const i=this.attributes.tangent;return i!==void 0&&(i.transformDirection(e),i.needsUpdate=!0),this.boundingBox!==null&&this.computeBoundingBox(),this.boundingSphere!==null&&this.computeBoundingSphere(),this}applyQuaternion(e){return Dn.makeRotationFromQuaternion(e),this.applyMatrix4(Dn),this}rotateX(e){return Dn.makeRotationX(e),this.applyMatrix4(Dn),this}rotateY(e){return Dn.makeRotationY(e),this.applyMatrix4(Dn),this}rotateZ(e){return Dn.makeRotationZ(e),this.applyMatrix4(Dn),this}translate(e,t,n){return Dn.makeTranslation(e,t,n),this.applyMatrix4(Dn),this}scale(e,t,n){return Dn.makeScale(e,t,n),this.applyMatrix4(Dn),this}lookAt(e){return Nc.lookAt(e),Nc.updateMatrix(),this.applyMatrix4(Nc.matrix),this}center(){return this.computeBoundingBox(),this.boundingBox.getCenter(ar).negate(),this.translate(ar.x,ar.y,ar.z),this}setFromPoints(e){const t=[];for(let n=0,i=e.length;n<i;n++){const s=e[n];t.push(s.x,s.y,s.z||0)}return this.setAttribute(\"position\",new Ee(t,3)),this}computeBoundingBox(){this.boundingBox===null&&(this.boundingBox=new di);const e=this.attributes.position,t=this.morphAttributes.position;if(e&&e.isGLBufferAttribute){console.error('THREE.BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box. Alternatively set \"mesh.frustumCulled\" to \"false\".',this),this.boundingBox.set(new I(-1/0,-1/0,-1/0),new I(1/0,1/0,1/0));return}if(e!==void 0){if(this.boundingBox.setFromBufferAttribute(e),t)for(let n=0,i=t.length;n<i;n++){const s=t[n];An.setFromBufferAttribute(s),this.morphTargetsRelative?(Qt.addVectors(this.boundingBox.min,An.min),this.boundingBox.expandByPoint(Qt),Qt.addVectors(this.boundingBox.max,An.max),this.boundingBox.expandByPoint(Qt)):(this.boundingBox.expandByPoint(An.min),this.boundingBox.expandByPoint(An.max))}}else this.boundingBox.makeEmpty();(isNaN(this.boundingBox.min.x)||isNaN(this.boundingBox.min.y)||isNaN(this.boundingBox.min.z))&&console.error('THREE.BufferGeometry.computeBoundingBox(): Computed min/max have NaN values. The \"position\" attribute is likely to have NaN values.',this)}computeBoundingSphere(){this.boundingSphere===null&&(this.boundingSphere=new Ui);const e=this.attributes.position,t=this.morphAttributes.position;if(e&&e.isGLBufferAttribute){console.error('THREE.BufferGeometry.computeBoundingSphere(): GLBufferAttribute requires a manual bounding sphere. Alternatively set \"mesh.frustumCulled\" to \"false\".',this),this.boundingSphere.set(new I,1/0);return}if(e){const n=this.boundingSphere.center;if(An.setFromBufferAttribute(e),t)for(let s=0,r=t.length;s<r;s++){const o=t[s];yo.setFromBufferAttribute(o),this.morphTargetsRelative?(Qt.addVectors(An.min,yo.min),An.expandByPoint(Qt),Qt.addVectors(An.max,yo.max),An.expandByPoint(Qt)):(An.expandByPoint(yo.min),An.expandByPoint(yo.max))}An.getCenter(n);let i=0;for(let s=0,r=e.count;s<r;s++)Qt.fromBufferAttribute(e,s),i=Math.max(i,n.distanceToSquared(Qt));if(t)for(let s=0,r=t.length;s<r;s++){const o=t[s],l=this.morphTargetsRelative;for(let c=0,h=o.count;c<h;c++)Qt.fromBufferAttribute(o,c),l&&(ar.fromBufferAttribute(e,c),Qt.add(ar)),i=Math.max(i,n.distanceToSquared(Qt))}this.boundingSphere.radius=Math.sqrt(i),isNaN(this.boundingSphere.radius)&&console.error('THREE.BufferGeometry.computeBoundingSphere(): Computed radius is NaN. The \"position\" attribute is likely to have NaN values.',this)}}computeTangents(){const e=this.index,t=this.attributes;if(e===null||t.position===void 0||t.normal===void 0||t.uv===void 0){console.error(\"THREE.BufferGeometry: .computeTangents() failed. Missing required attributes (index, position, normal or uv)\");return}const n=e.array,i=t.position.array,s=t.normal.array,r=t.uv.array,o=i.length/3;this.hasAttribute(\"tangent\")===!1&&this.setAttribute(\"tangent\",new pt(new Float32Array(4*o),4));const l=this.getAttribute(\"tangent\").array,c=[],h=[];for(let F=0;F<o;F++)c[F]=new I,h[F]=new I;const u=new I,f=new I,d=new I,p=new he,m=new he,g=new he,y=new I,x=new I;function b(F,U,q){u.fromArray(i,F*3),f.fromArray(i,U*3),d.fromArray(i,q*3),p.fromArray(r,F*2),m.fromArray(r,U*2),g.fromArray(r,q*2),f.sub(u),d.sub(u),m.sub(p),g.sub(p);const K=1/(m.x*g.y-g.x*m.y);!isFinite(K)||(y.copy(f).multiplyScalar(g.y).addScaledVector(d,-m.y).multiplyScalar(K),x.copy(d).multiplyScalar(m.x).addScaledVector(f,-g.x).multiplyScalar(K),c[F].add(y),c[U].add(y),c[q].add(y),h[F].add(x),h[U].add(x),h[q].add(x))}let v=this.groups;v.length===0&&(v=[{start:0,count:n.length}]);for(let F=0,U=v.length;F<U;++F){const q=v[F],K=q.start,G=q.count;for(let X=K,O=K+G;X<O;X+=3)b(n[X+0],n[X+1],n[X+2])}const M=new I,T=new I,C=new I,_=new I;function E(F){C.fromArray(s,F*3),_.copy(C);const U=c[F];M.copy(U),M.sub(C.multiplyScalar(C.dot(U))).normalize(),T.crossVectors(_,U);const K=T.dot(h[F])<0?-1:1;l[F*4]=M.x,l[F*4+1]=M.y,l[F*4+2]=M.z,l[F*4+3]=K}for(let F=0,U=v.length;F<U;++F){const q=v[F],K=q.start,G=q.count;for(let X=K,O=K+G;X<O;X+=3)E(n[X+0]),E(n[X+1]),E(n[X+2])}}computeVertexNormals(){const e=this.index,t=this.getAttribute(\"position\");if(t!==void 0){let n=this.getAttribute(\"normal\");if(n===void 0)n=new pt(new Float32Array(t.count*3),3),this.setAttribute(\"normal\",n);else for(let f=0,d=n.count;f<d;f++)n.setXYZ(f,0,0,0);const i=new I,s=new I,r=new I,o=new I,l=new I,c=new I,h=new I,u=new I;if(e)for(let f=0,d=e.count;f<d;f+=3){const p=e.getX(f+0),m=e.getX(f+1),g=e.getX(f+2);i.fromBufferAttribute(t,p),s.fromBufferAttribute(t,m),r.fromBufferAttribute(t,g),h.subVectors(r,s),u.subVectors(i,s),h.cross(u),o.fromBufferAttribute(n,p),l.fromBufferAttribute(n,m),c.fromBufferAttribute(n,g),o.add(h),l.add(h),c.add(h),n.setXYZ(p,o.x,o.y,o.z),n.setXYZ(m,l.x,l.y,l.z),n.setXYZ(g,c.x,c.y,c.z)}else for(let f=0,d=t.count;f<d;f+=3)i.fromBufferAttribute(t,f+0),s.fromBufferAttribute(t,f+1),r.fromBufferAttribute(t,f+2),h.subVectors(r,s),u.subVectors(i,s),h.cross(u),n.setXYZ(f+0,h.x,h.y,h.z),n.setXYZ(f+1,h.x,h.y,h.z),n.setXYZ(f+2,h.x,h.y,h.z);this.normalizeNormals(),n.needsUpdate=!0}}merge(e,t){if(!(e&&e.isBufferGeometry)){console.error(\"THREE.BufferGeometry.merge(): geometry not an instance of THREE.BufferGeometry.\",e);return}t===void 0&&(t=0,console.warn(\"THREE.BufferGeometry.merge(): Overwriting original geometry, starting at offset=0. Use BufferGeometryUtils.mergeBufferGeometries() for lossless merge.\"));const n=this.attributes;for(const i in n){if(e.attributes[i]===void 0)continue;const r=n[i].array,o=e.attributes[i],l=o.array,c=o.itemSize*t,h=Math.min(l.length,r.length-c);for(let u=0,f=c;u<h;u++,f++)r[f]=l[u]}return this}normalizeNormals(){const e=this.attributes.normal;for(let t=0,n=e.count;t<n;t++)Qt.fromBufferAttribute(e,t),Qt.normalize(),e.setXYZ(t,Qt.x,Qt.y,Qt.z)}toNonIndexed(){function e(o,l){const c=o.array,h=o.itemSize,u=o.normalized,f=new c.constructor(l.length*h);let d=0,p=0;for(let m=0,g=l.length;m<g;m++){o.isInterleavedBufferAttribute?d=l[m]*o.data.stride+o.offset:d=l[m]*h;for(let y=0;y<h;y++)f[p++]=c[d++]}return new pt(f,h,u)}if(this.index===null)return console.warn(\"THREE.BufferGeometry.toNonIndexed(): BufferGeometry is already non-indexed.\"),this;const t=new Xe,n=this.index.array,i=this.attributes;for(const o in i){const l=i[o],c=e(l,n);t.setAttribute(o,c)}const s=this.morphAttributes;for(const o in s){const l=[],c=s[o];for(let h=0,u=c.length;h<u;h++){const f=c[h],d=e(f,n);l.push(d)}t.morphAttributes[o]=l}t.morphTargetsRelative=this.morphTargetsRelative;const r=this.groups;for(let o=0,l=r.length;o<l;o++){const c=r[o];t.addGroup(c.start,c.count,c.materialIndex)}return t}toJSON(){const e={metadata:{version:4.5,type:\"BufferGeometry\",generator:\"BufferGeometry.toJSON\"}};if(e.uuid=this.uuid,e.type=this.type,this.name!==\"\"&&(e.name=this.name),Object.keys(this.userData).length>0&&(e.userData=this.userData),this.parameters!==void 0){const l=this.parameters;for(const c in l)l[c]!==void 0&&(e[c]=l[c]);return e}e.data={attributes:{}};const t=this.index;t!==null&&(e.data.index={type:t.array.constructor.name,array:Array.prototype.slice.call(t.array)});const n=this.attributes;for(const l in n){const c=n[l];e.data.attributes[l]=c.toJSON(e.data)}const i={};let s=!1;for(const l in this.morphAttributes){const c=this.morphAttributes[l],h=[];for(let u=0,f=c.length;u<f;u++){const d=c[u];h.push(d.toJSON(e.data))}h.length>0&&(i[l]=h,s=!0)}s&&(e.data.morphAttributes=i,e.data.morphTargetsRelative=this.morphTargetsRelative);const r=this.groups;r.length>0&&(e.data.groups=JSON.parse(JSON.stringify(r)));const o=this.boundingSphere;return o!==null&&(e.data.boundingSphere={center:o.center.toArray(),radius:o.radius}),e}clone(){return new this.constructor().copy(this)}copy(e){this.index=null,this.attributes={},this.morphAttributes={},this.groups=[],this.boundingBox=null,this.boundingSphere=null;const t={};this.name=e.name;const n=e.index;n!==null&&this.setIndex(n.clone(t));const i=e.attributes;for(const c in i){const h=i[c];this.setAttribute(c,h.clone(t))}const s=e.morphAttributes;for(const c in s){const h=[],u=s[c];for(let f=0,d=u.length;f<d;f++)h.push(u[f].clone(t));this.morphAttributes[c]=h}this.morphTargetsRelative=e.morphTargetsRelative;const r=e.groups;for(let c=0,h=r.length;c<h;c++){const u=r[c];this.addGroup(u.start,u.count,u.materialIndex)}const o=e.boundingBox;o!==null&&(this.boundingBox=o.clone());const l=e.boundingSphere;return l!==null&&(this.boundingSphere=l.clone()),this.drawRange.start=e.drawRange.start,this.drawRange.count=e.drawRange.count,this.userData=e.userData,e.parameters!==void 0&&(this.parameters=Object.assign({},e.parameters)),this}dispose(){this.dispatchEvent({type:\"dispose\"})}}const Lf=new Ne,lr=new mo,kc=new Ui,Hi=new I,Wi=new I,qi=new I,Oc=new I,Bc=new I,zc=new I,wa=new I,Ma=new I,Sa=new I,Ta=new he,Aa=new he,Ea=new he,Uc=new I,Ca=new I;class Rt extends dt{constructor(e=new Xe,t=new on){super(),this.isMesh=!0,this.type=\"Mesh\",this.geometry=e,this.material=t,this.updateMorphTargets()}copy(e,t){return super.copy(e,t),e.morphTargetInfluences!==void 0&&(this.morphTargetInfluences=e.morphTargetInfluences.slice()),e.morphTargetDictionary!==void 0&&(this.morphTargetDictionary=Object.assign({},e.morphTargetDictionary)),this.material=e.material,this.geometry=e.geometry,this}updateMorphTargets(){const t=this.geometry.morphAttributes,n=Object.keys(t);if(n.length>0){const i=t[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,r=i.length;s<r;s++){const o=i[s].name||String(s);this.morphTargetInfluences.push(0),this.morphTargetDictionary[o]=s}}}}raycast(e,t){const n=this.geometry,i=this.material,s=this.matrixWorld;if(i===void 0||(n.boundingSphere===null&&n.computeBoundingSphere(),kc.copy(n.boundingSphere),kc.applyMatrix4(s),e.ray.intersectsSphere(kc)===!1)||(Lf.copy(s).invert(),lr.copy(e.ray).applyMatrix4(Lf),n.boundingBox!==null&&lr.intersectsBox(n.boundingBox)===!1))return;let r;const o=n.index,l=n.attributes.position,c=n.morphAttributes.position,h=n.morphTargetsRelative,u=n.attributes.uv,f=n.attributes.uv2,d=n.groups,p=n.drawRange;if(o!==null)if(Array.isArray(i))for(let m=0,g=d.length;m<g;m++){const y=d[m],x=i[y.materialIndex],b=Math.max(y.start,p.start),v=Math.min(o.count,Math.min(y.start+y.count,p.start+p.count));for(let M=b,T=v;M<T;M+=3){const C=o.getX(M),_=o.getX(M+1),E=o.getX(M+2);r=La(this,x,e,lr,l,c,h,u,f,C,_,E),r&&(r.faceIndex=Math.floor(M/3),r.face.materialIndex=y.materialIndex,t.push(r))}}else{const m=Math.max(0,p.start),g=Math.min(o.count,p.start+p.count);for(let y=m,x=g;y<x;y+=3){const b=o.getX(y),v=o.getX(y+1),M=o.getX(y+2);r=La(this,i,e,lr,l,c,h,u,f,b,v,M),r&&(r.faceIndex=Math.floor(y/3),t.push(r))}}else if(l!==void 0)if(Array.isArray(i))for(let m=0,g=d.length;m<g;m++){const y=d[m],x=i[y.materialIndex],b=Math.max(y.start,p.start),v=Math.min(l.count,Math.min(y.start+y.count,p.start+p.count));for(let M=b,T=v;M<T;M+=3){const C=M,_=M+1,E=M+2;r=La(this,x,e,lr,l,c,h,u,f,C,_,E),r&&(r.faceIndex=Math.floor(M/3),r.face.materialIndex=y.materialIndex,t.push(r))}}else{const m=Math.max(0,p.start),g=Math.min(l.count,p.start+p.count);for(let y=m,x=g;y<x;y+=3){const b=y,v=y+1,M=y+2;r=La(this,i,e,lr,l,c,h,u,f,b,v,M),r&&(r.faceIndex=Math.floor(y/3),t.push(r))}}}}function h0(a,e,t,n,i,s,r,o){let l;if(e.side===Cn?l=n.intersectTriangle(r,s,i,!0,o):l=n.intersectTriangle(i,s,r,e.side!==ci,o),l===null)return null;Ca.copy(o),Ca.applyMatrix4(a.matrixWorld);const c=t.ray.origin.distanceTo(Ca);return c<t.near||c>t.far?null:{distance:c,point:Ca.clone(),object:a}}function La(a,e,t,n,i,s,r,o,l,c,h,u){Hi.fromBufferAttribute(i,c),Wi.fromBufferAttribute(i,h),qi.fromBufferAttribute(i,u);const f=a.morphTargetInfluences;if(s&&f){wa.set(0,0,0),Ma.set(0,0,0),Sa.set(0,0,0);for(let p=0,m=s.length;p<m;p++){const g=f[p],y=s[p];g!==0&&(Oc.fromBufferAttribute(y,c),Bc.fromBufferAttribute(y,h),zc.fromBufferAttribute(y,u),r?(wa.addScaledVector(Oc,g),Ma.addScaledVector(Bc,g),Sa.addScaledVector(zc,g)):(wa.addScaledVector(Oc.sub(Hi),g),Ma.addScaledVector(Bc.sub(Wi),g),Sa.addScaledVector(zc.sub(qi),g)))}Hi.add(wa),Wi.add(Ma),qi.add(Sa)}a.isSkinnedMesh&&(a.boneTransform(c,Hi),a.boneTransform(h,Wi),a.boneTransform(u,qi));const d=h0(a,e,t,n,Hi,Wi,qi,Uc);if(d){o&&(Ta.fromBufferAttribute(o,c),Aa.fromBufferAttribute(o,h),Ea.fromBufferAttribute(o,u),d.uv=Pn.getUV(Uc,Hi,Wi,qi,Ta,Aa,Ea,new he)),l&&(Ta.fromBufferAttribute(l,c),Aa.fromBufferAttribute(l,h),Ea.fromBufferAttribute(l,u),d.uv2=Pn.getUV(Uc,Hi,Wi,qi,Ta,Aa,Ea,new he));const p={a:c,b:h,c:u,normal:new I,materialIndex:0};Pn.getNormal(Hi,Wi,qi,p.normal),d.face=p}return d}class vi extends Xe{constructor(e=1,t=1,n=1,i=1,s=1,r=1){super(),this.type=\"BoxGeometry\",this.parameters={width:e,height:t,depth:n,widthSegments:i,heightSegments:s,depthSegments:r};const o=this;i=Math.floor(i),s=Math.floor(s),r=Math.floor(r);const l=[],c=[],h=[],u=[];let f=0,d=0;p(\"z\",\"y\",\"x\",-1,-1,n,t,e,r,s,0),p(\"z\",\"y\",\"x\",1,-1,n,t,-e,r,s,1),p(\"x\",\"z\",\"y\",1,1,e,n,t,i,r,2),p(\"x\",\"z\",\"y\",1,-1,e,n,-t,i,r,3),p(\"x\",\"y\",\"z\",1,-1,e,t,n,i,s,4),p(\"x\",\"y\",\"z\",-1,-1,e,t,-n,i,s,5),this.setIndex(l),this.setAttribute(\"position\",new Ee(c,3)),this.setAttribute(\"normal\",new Ee(h,3)),this.setAttribute(\"uv\",new Ee(u,2));function p(m,g,y,x,b,v,M,T,C,_,E){const F=v/C,U=M/_,q=v/2,K=M/2,G=T/2,X=C+1,O=_+1;let j=0,Y=0;const W=new I;for(let Z=0;Z<O;Z++){const ee=Z*U-K;for(let Q=0;Q<X;Q++){const ie=Q*F-q;W[m]=ie*x,W[g]=ee*b,W[y]=G,c.push(W.x,W.y,W.z),W[m]=0,W[g]=0,W[y]=T>0?1:-1,h.push(W.x,W.y,W.z),u.push(Q/C),u.push(1-Z/_),j+=1}}for(let Z=0;Z<_;Z++)for(let ee=0;ee<C;ee++){const Q=f+ee+X*Z,ie=f+ee+X*(Z+1),ae=f+(ee+1)+X*(Z+1),re=f+(ee+1)+X*Z;l.push(Q,ie,re),l.push(ie,ae,re),Y+=6}o.addGroup(d,Y,E),d+=Y,f+=j}}static fromJSON(e){return new vi(e.width,e.height,e.depth,e.widthSegments,e.heightSegments,e.depthSegments)}}function cr(a){const e={};for(const t in a){e[t]={};for(const n in a[t]){const i=a[t][n];i&&(i.isColor||i.isMatrix3||i.isMatrix4||i.isVector2||i.isVector3||i.isVector4||i.isTexture||i.isQuaternion)?e[t][n]=i.clone():Array.isArray(i)?e[t][n]=i.slice():e[t][n]=i}}return e}function an(a){const e={};for(let t=0;t<a.length;t++){const n=cr(a[t]);for(const i in n)e[i]=n[i]}return e}function f0(a){const e=[];for(let t=0;t<a.length;t++)e.push(a[t].clone());return e}const Rf={clone:cr,merge:an};var d0=`void main() {\n\tgl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}`,p0=`void main() {\n\tgl_FragColor = vec4( 1.0, 0.0, 0.0, 1.0 );\n}`;class Qn extends Gt{constructor(e){super(),this.isShaderMaterial=!0,this.type=\"ShaderMaterial\",this.defines={},this.uniforms={},this.uniformsGroups=[],this.vertexShader=d0,this.fragmentShader=p0,this.linewidth=1,this.wireframe=!1,this.wireframeLinewidth=1,this.fog=!1,this.lights=!1,this.clipping=!1,this.extensions={derivatives:!1,fragDepth:!1,drawBuffers:!1,shaderTextureLOD:!1},this.defaultAttributeValues={color:[1,1,1],uv:[0,0],uv2:[0,0]},this.index0AttributeName=void 0,this.uniformsNeedUpdate=!1,this.glslVersion=null,e!==void 0&&(e.attributes!==void 0&&console.error(\"THREE.ShaderMaterial: attributes should now be defined in THREE.BufferGeometry instead.\"),this.setValues(e))}copy(e){return super.copy(e),this.fragmentShader=e.fragmentShader,this.vertexShader=e.vertexShader,this.uniforms=cr(e.uniforms),this.uniformsGroups=f0(e.uniformsGroups),this.defines=Object.assign({},e.defines),this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.fog=e.fog,this.lights=e.lights,this.clipping=e.clipping,this.extensions=Object.assign({},e.extensions),this.glslVersion=e.glslVersion,this}toJSON(e){const t=super.toJSON(e);t.glslVersion=this.glslVersion,t.uniforms={};for(const i in this.uniforms){const r=this.uniforms[i].value;r&&r.isTexture?t.uniforms[i]={type:\"t\",value:r.toJSON(e).uuid}:r&&r.isColor?t.uniforms[i]={type:\"c\",value:r.getHex()}:r&&r.isVector2?t.uniforms[i]={type:\"v2\",value:r.toArray()}:r&&r.isVector3?t.uniforms[i]={type:\"v3\",value:r.toArray()}:r&&r.isVector4?t.uniforms[i]={type:\"v4\",value:r.toArray()}:r&&r.isMatrix3?t.uniforms[i]={type:\"m3\",value:r.toArray()}:r&&r.isMatrix4?t.uniforms[i]={type:\"m4\",value:r.toArray()}:t.uniforms[i]={value:r}}Object.keys(this.defines).length>0&&(t.defines=this.defines),t.vertexShader=this.vertexShader,t.fragmentShader=this.fragmentShader;const n={};for(const i in this.extensions)this.extensions[i]===!0&&(n[i]=!0);return Object.keys(n).length>0&&(t.extensions=n),t}}class Ra extends dt{constructor(){super(),this.isCamera=!0,this.type=\"Camera\",this.matrixWorldInverse=new Ne,this.projectionMatrix=new Ne,this.projectionMatrixInverse=new Ne}copy(e,t){return super.copy(e,t),this.matrixWorldInverse.copy(e.matrixWorldInverse),this.projectionMatrix.copy(e.projectionMatrix),this.projectionMatrixInverse.copy(e.projectionMatrixInverse),this}getWorldDirection(e){this.updateWorldMatrix(!0,!1);const t=this.matrixWorld.elements;return e.set(-t[8],-t[9],-t[10]).normalize()}updateMatrixWorld(e){super.updateMatrixWorld(e),this.matrixWorldInverse.copy(this.matrixWorld).invert()}updateWorldMatrix(e,t){super.updateWorldMatrix(e,t),this.matrixWorldInverse.copy(this.matrixWorld).invert()}clone(){return new this.constructor().copy(this)}}class Ot extends Ra{constructor(e=50,t=1,n=.1,i=2e3){super(),this.isPerspectiveCamera=!0,this.type=\"PerspectiveCamera\",this.fov=e,this.zoom=1,this.near=n,this.far=i,this.focus=10,this.aspect=t,this.view=null,this.filmGauge=35,this.filmOffset=0,this.updateProjectionMatrix()}copy(e,t){return super.copy(e,t),this.fov=e.fov,this.zoom=e.zoom,this.near=e.near,this.far=e.far,this.focus=e.focus,this.aspect=e.aspect,this.view=e.view===null?null:Object.assign({},e.view),this.filmGauge=e.filmGauge,this.filmOffset=e.filmOffset,this}setFocalLength(e){const t=.5*this.getFilmHeight()/e;this.fov=co*2*Math.atan(t),this.updateProjectionMatrix()}getFocalLength(){const e=Math.tan(ms*.5*this.fov);return .5*this.getFilmHeight()/e}getEffectiveFOV(){return co*2*Math.atan(Math.tan(ms*.5*this.fov)/this.zoom)}getFilmWidth(){return this.filmGauge*Math.min(this.aspect,1)}getFilmHeight(){return this.filmGauge/Math.max(this.aspect,1)}setViewOffset(e,t,n,i,s,r){this.aspect=e/t,this.view===null&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=e,this.view.fullHeight=t,this.view.offsetX=n,this.view.offsetY=i,this.view.width=s,this.view.height=r,this.updateProjectionMatrix()}clearViewOffset(){this.view!==null&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const e=this.near;let t=e*Math.tan(ms*.5*this.fov)/this.zoom,n=2*t,i=this.aspect*n,s=-.5*i;const r=this.view;if(this.view!==null&&this.view.enabled){const l=r.fullWidth,c=r.fullHeight;s+=r.offsetX*i/l,t-=r.offsetY*n/c,i*=r.width/l,n*=r.height/c}const o=this.filmOffset;o!==0&&(s+=e*o/this.getFilmWidth()),this.projectionMatrix.makePerspective(s,s+i,t,t-n,e,this.far),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(e){const t=super.toJSON(e);return t.object.fov=this.fov,t.object.zoom=this.zoom,t.object.near=this.near,t.object.far=this.far,t.object.focus=this.focus,t.object.aspect=this.aspect,this.view!==null&&(t.object.view=Object.assign({},this.view)),t.object.filmGauge=this.filmGauge,t.object.filmOffset=this.filmOffset,t}}const ur=90,hr=1;class If extends dt{constructor(e,t,n){if(super(),this.type=\"CubeCamera\",n.isWebGLCubeRenderTarget!==!0){console.error(\"THREE.CubeCamera: The constructor now expects an instance of WebGLCubeRenderTarget as third parameter.\");return}this.renderTarget=n;const i=new Ot(ur,hr,e,t);i.layers=this.layers,i.up.set(0,-1,0),i.lookAt(new I(1,0,0)),this.add(i);const s=new Ot(ur,hr,e,t);s.layers=this.layers,s.up.set(0,-1,0),s.lookAt(new I(-1,0,0)),this.add(s);const r=new Ot(ur,hr,e,t);r.layers=this.layers,r.up.set(0,0,1),r.lookAt(new I(0,1,0)),this.add(r);const o=new Ot(ur,hr,e,t);o.layers=this.layers,o.up.set(0,0,-1),o.lookAt(new I(0,-1,0)),this.add(o);const l=new Ot(ur,hr,e,t);l.layers=this.layers,l.up.set(0,-1,0),l.lookAt(new I(0,0,1)),this.add(l);const c=new Ot(ur,hr,e,t);c.layers=this.layers,c.up.set(0,-1,0),c.lookAt(new I(0,0,-1)),this.add(c)}update(e,t){this.parent===null&&this.updateMatrixWorld();const n=this.renderTarget,[i,s,r,o,l,c]=this.children,h=e.getRenderTarget(),u=e.toneMapping,f=e.xr.enabled;e.toneMapping=Zn,e.xr.enabled=!1;const d=n.texture.generateMipmaps;n.texture.generateMipmaps=!1,e.setRenderTarget(n,0),e.render(t,i),e.setRenderTarget(n,1),e.render(t,s),e.setRenderTarget(n,2),e.render(t,r),e.setRenderTarget(n,3),e.render(t,o),e.setRenderTarget(n,4),e.render(t,l),n.texture.generateMipmaps=d,e.setRenderTarget(n,5),e.render(t,c),e.setRenderTarget(h),e.toneMapping=u,e.xr.enabled=f,n.texture.needsPMREMUpdate=!0}}class xo extends Lt{constructor(e,t,n,i,s,r,o,l,c,h){e=e!==void 0?e:[],t=t!==void 0?t:Ii,super(e,t,n,i,s,r,o,l,c,h),this.isCubeTexture=!0,this.flipY=!1}get images(){return this.image}set images(e){this.image=e}}class Pf extends Rn{constructor(e,t={}){super(e,e,t),this.isWebGLCubeRenderTarget=!0;const n={width:e,height:e,depth:1},i=[n,n,n,n,n,n];this.texture=new xo(i,t.mapping,t.wrapS,t.wrapT,t.magFilter,t.minFilter,t.format,t.type,t.anisotropy,t.encoding),this.texture.isRenderTargetTexture=!0,this.texture.generateMipmaps=t.generateMipmaps!==void 0?t.generateMipmaps:!1,this.texture.minFilter=t.minFilter!==void 0?t.minFilter:Pt}fromEquirectangularTexture(e,t){this.texture.type=t.type,this.texture.encoding=t.encoding,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const n={uniforms:{tEquirect:{value:null}},vertexShader:`\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\tvec3 transformDirection( in vec3 dir, in mat4 matrix ) {\n\n\t\t\t\t\treturn normalize( ( matrix * vec4( dir, 0.0 ) ).xyz );\n\n\t\t\t\t}\n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvWorldDirection = transformDirection( position, modelMatrix );\n\n\t\t\t\t\t#include <begin_vertex>\n\t\t\t\t\t#include <project_vertex>\n\n\t\t\t\t}\n\t\t\t`,fragmentShader:`\n\n\t\t\t\tuniform sampler2D tEquirect;\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\t#include <common>\n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvec3 direction = normalize( vWorldDirection );\n\n\t\t\t\t\tvec2 sampleUV = equirectUv( direction );\n\n\t\t\t\t\tgl_FragColor = texture2D( tEquirect, sampleUV );\n\n\t\t\t\t}\n\t\t\t`},i=new vi(5,5,5),s=new Qn({name:\"CubemapFromEquirect\",uniforms:cr(n.uniforms),vertexShader:n.vertexShader,fragmentShader:n.fragmentShader,side:Cn,blending:ui});s.uniforms.tEquirect.value=t;const r=new Rt(i,s),o=t.minFilter;return t.minFilter===Kn&&(t.minFilter=Pt),new If(1,10,this).update(e,r),t.minFilter=o,r.geometry.dispose(),r.material.dispose(),this}clear(e,t,n,i){const s=e.getRenderTarget();for(let r=0;r<6;r++)e.setRenderTarget(this,r),e.clear(t,n,i);e.setRenderTarget(s)}}const Gc=new I,m0=new I,g0=new un;class Xi{constructor(e=new I(1,0,0),t=0){this.isPlane=!0,this.normal=e,this.constant=t}set(e,t){return this.normal.copy(e),this.constant=t,this}setComponents(e,t,n,i){return this.normal.set(e,t,n),this.constant=i,this}setFromNormalAndCoplanarPoint(e,t){return this.normal.copy(e),this.constant=-t.dot(this.normal),this}setFromCoplanarPoints(e,t,n){const i=Gc.subVectors(n,t).cross(m0.subVectors(e,t)).normalize();return this.setFromNormalAndCoplanarPoint(i,e),this}copy(e){return this.normal.copy(e.normal),this.constant=e.constant,this}normalize(){const e=1/this.normal.length();return this.normal.multiplyScalar(e),this.constant*=e,this}negate(){return this.constant*=-1,this.normal.negate(),this}distanceToPoint(e){return this.normal.dot(e)+this.constant}distanceToSphere(e){return this.distanceToPoint(e.center)-e.radius}projectPoint(e,t){return t.copy(this.normal).multiplyScalar(-this.distanceToPoint(e)).add(e)}intersectLine(e,t){const n=e.delta(Gc),i=this.normal.dot(n);if(i===0)return this.distanceToPoint(e.start)===0?t.copy(e.start):null;const s=-(e.start.dot(this.normal)+this.constant)/i;return s<0||s>1?null:t.copy(n).multiplyScalar(s).add(e.start)}intersectsLine(e){const t=this.distanceToPoint(e.start),n=this.distanceToPoint(e.end);return t<0&&n>0||n<0&&t>0}intersectsBox(e){return e.intersectsPlane(this)}intersectsSphere(e){return e.intersectsPlane(this)}coplanarPoint(e){return e.copy(this.normal).multiplyScalar(-this.constant)}applyMatrix4(e,t){const n=t||g0.getNormalMatrix(e),i=this.coplanarPoint(Gc).applyMatrix4(e),s=this.normal.applyMatrix3(n).normalize();return this.constant=-i.dot(s),this}translate(e){return this.constant-=e.dot(this.normal),this}equals(e){return e.normal.equals(this.normal)&&e.constant===this.constant}clone(){return new this.constructor().copy(this)}}const fr=new Ui,Ia=new I;class Pa{constructor(e=new Xi,t=new Xi,n=new Xi,i=new Xi,s=new Xi,r=new Xi){this.planes=[e,t,n,i,s,r]}set(e,t,n,i,s,r){const o=this.planes;return o[0].copy(e),o[1].copy(t),o[2].copy(n),o[3].copy(i),o[4].copy(s),o[5].copy(r),this}copy(e){const t=this.planes;for(let n=0;n<6;n++)t[n].copy(e.planes[n]);return this}setFromProjectionMatrix(e){const t=this.planes,n=e.elements,i=n[0],s=n[1],r=n[2],o=n[3],l=n[4],c=n[5],h=n[6],u=n[7],f=n[8],d=n[9],p=n[10],m=n[11],g=n[12],y=n[13],x=n[14],b=n[15];return t[0].setComponents(o-i,u-l,m-f,b-g).normalize(),t[1].setComponents(o+i,u+l,m+f,b+g).normalize(),t[2].setComponents(o+s,u+c,m+d,b+y).normalize(),t[3].setComponents(o-s,u-c,m-d,b-y).normalize(),t[4].setComponents(o-r,u-h,m-p,b-x).normalize(),t[5].setComponents(o+r,u+h,m+p,b+x).normalize(),this}intersectsObject(e){const t=e.geometry;return t.boundingSphere===null&&t.computeBoundingSphere(),fr.copy(t.boundingSphere).applyMatrix4(e.matrixWorld),this.intersectsSphere(fr)}intersectsSprite(e){return fr.center.set(0,0,0),fr.radius=.7071067811865476,fr.applyMatrix4(e.matrixWorld),this.intersectsSphere(fr)}intersectsSphere(e){const t=this.planes,n=e.center,i=-e.radius;for(let s=0;s<6;s++)if(t[s].distanceToPoint(n)<i)return!1;return!0}intersectsBox(e){const t=this.planes;for(let n=0;n<6;n++){const i=t[n];if(Ia.x=i.normal.x>0?e.max.x:e.min.x,Ia.y=i.normal.y>0?e.max.y:e.min.y,Ia.z=i.normal.z>0?e.max.z:e.min.z,i.distanceToPoint(Ia)<0)return!1}return!0}containsPoint(e){const t=this.planes;for(let n=0;n<6;n++)if(t[n].distanceToPoint(e)<0)return!1;return!0}clone(){return new this.constructor().copy(this)}}function Df(){let a=null,e=!1,t=null,n=null;function i(s,r){t(s,r),n=a.requestAnimationFrame(i)}return{start:function(){e!==!0&&t!==null&&(n=a.requestAnimationFrame(i),e=!0)},stop:function(){a.cancelAnimationFrame(n),e=!1},setAnimationLoop:function(s){t=s},setContext:function(s){a=s}}}function y0(a,e){const t=e.isWebGL2,n=new WeakMap;function i(c,h){const u=c.array,f=c.usage,d=a.createBuffer();a.bindBuffer(h,d),a.bufferData(h,u,f),c.onUploadCallback();let p;if(u instanceof Float32Array)p=5126;else if(u instanceof Uint16Array)if(c.isFloat16BufferAttribute)if(t)p=5131;else throw new Error(\"THREE.WebGLAttributes: Usage of Float16BufferAttribute requires WebGL2.\");else p=5123;else if(u instanceof Int16Array)p=5122;else if(u instanceof Uint32Array)p=5125;else if(u instanceof Int32Array)p=5124;else if(u instanceof Int8Array)p=5120;else if(u instanceof Uint8Array)p=5121;else if(u instanceof Uint8ClampedArray)p=5121;else throw new Error(\"THREE.WebGLAttributes: Unsupported buffer data format: \"+u);return{buffer:d,type:p,bytesPerElement:u.BYTES_PER_ELEMENT,version:c.version}}function s(c,h,u){const f=h.array,d=h.updateRange;a.bindBuffer(u,c),d.count===-1?a.bufferSubData(u,0,f):(t?a.bufferSubData(u,d.offset*f.BYTES_PER_ELEMENT,f,d.offset,d.count):a.bufferSubData(u,d.offset*f.BYTES_PER_ELEMENT,f.subarray(d.offset,d.offset+d.count)),d.count=-1)}function r(c){return c.isInterleavedBufferAttribute&&(c=c.data),n.get(c)}function o(c){c.isInterleavedBufferAttribute&&(c=c.data);const h=n.get(c);h&&(a.deleteBuffer(h.buffer),n.delete(c))}function l(c,h){if(c.isGLBufferAttribute){const f=n.get(c);(!f||f.version<c.version)&&n.set(c,{buffer:c.buffer,type:c.type,bytesPerElement:c.elementSize,version:c.version});return}c.isInterleavedBufferAttribute&&(c=c.data);const u=n.get(c);u===void 0?n.set(c,i(c,h)):u.version<c.version&&(s(u.buffer,c,h),u.version=c.version)}return{get:r,remove:o,update:l}}class bs extends Xe{constructor(e=1,t=1,n=1,i=1){super(),this.type=\"PlaneGeometry\",this.parameters={width:e,height:t,widthSegments:n,heightSegments:i};const s=e/2,r=t/2,o=Math.floor(n),l=Math.floor(i),c=o+1,h=l+1,u=e/o,f=t/l,d=[],p=[],m=[],g=[];for(let y=0;y<h;y++){const x=y*f-r;for(let b=0;b<c;b++){const v=b*u-s;p.push(v,-x,0),m.push(0,0,1),g.push(b/o),g.push(1-y/l)}}for(let y=0;y<l;y++)for(let x=0;x<o;x++){const b=x+c*y,v=x+c*(y+1),M=x+1+c*(y+1),T=x+1+c*y;d.push(b,v,T),d.push(v,M,T)}this.setIndex(d),this.setAttribute(\"position\",new Ee(p,3)),this.setAttribute(\"normal\",new Ee(m,3)),this.setAttribute(\"uv\",new Ee(g,2))}static fromJSON(e){return new bs(e.width,e.height,e.widthSegments,e.heightSegments)}}var x0=`#ifdef USE_ALPHAMAP\n\tdiffuseColor.a *= texture2D( alphaMap, vUv ).g;\n#endif`,v0=`#ifdef USE_ALPHAMAP\n\tuniform sampler2D alphaMap;\n#endif`,_0=`#ifdef USE_ALPHATEST\n\tif ( diffuseColor.a < alphaTest ) discard;\n#endif`,b0=`#ifdef USE_ALPHATEST\n\tuniform float alphaTest;\n#endif`,w0=`#ifdef USE_AOMAP\n\tfloat ambientOcclusion = ( texture2D( aoMap, vUv2 ).r - 1.0 ) * aoMapIntensity + 1.0;\n\treflectedLight.indirectDiffuse *= ambientOcclusion;\n\t#if defined( USE_ENVMAP ) && defined( STANDARD )\n\t\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\t\treflectedLight.indirectSpecular *= computeSpecularOcclusion( dotNV, ambientOcclusion, material.roughness );\n\t#endif\n#endif`,M0=`#ifdef USE_AOMAP\n\tuniform sampler2D aoMap;\n\tuniform float aoMapIntensity;\n#endif`,S0=\"vec3 transformed = vec3( position );\",T0=`vec3 objectNormal = vec3( normal );\n#ifdef USE_TANGENT\n\tvec3 objectTangent = vec3( tangent.xyz );\n#endif`,A0=`vec3 BRDF_Lambert( const in vec3 diffuseColor ) {\n\treturn RECIPROCAL_PI * diffuseColor;\n}\nvec3 F_Schlick( const in vec3 f0, const in float f90, const in float dotVH ) {\n\tfloat fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH );\n\treturn f0 * ( 1.0 - fresnel ) + ( f90 * fresnel );\n}\nfloat F_Schlick( const in float f0, const in float f90, const in float dotVH ) {\n\tfloat fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH );\n\treturn f0 * ( 1.0 - fresnel ) + ( f90 * fresnel );\n}\nvec3 Schlick_to_F0( const in vec3 f, const in float f90, const in float dotVH ) {\n    float x = clamp( 1.0 - dotVH, 0.0, 1.0 );\n    float x2 = x * x;\n    float x5 = clamp( x * x2 * x2, 0.0, 0.9999 );\n    return ( f - vec3( f90 ) * x5 ) / ( 1.0 - x5 );\n}\nfloat V_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\tfloat gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\treturn 0.5 / max( gv + gl, EPSILON );\n}\nfloat D_GGX( const in float alpha, const in float dotNH ) {\n\tfloat a2 = pow2( alpha );\n\tfloat denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0;\n\treturn RECIPROCAL_PI * a2 / pow2( denom );\n}\nvec3 BRDF_GGX( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 f0, const in float f90, const in float roughness ) {\n\tfloat alpha = pow2( roughness );\n\tvec3 halfDir = normalize( lightDir + viewDir );\n\tfloat dotNL = saturate( dot( normal, lightDir ) );\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\n\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\n\tvec3 F = F_Schlick( f0, f90, dotVH );\n\tfloat V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\tfloat D = D_GGX( alpha, dotNH );\n\treturn F * ( V * D );\n}\n#ifdef USE_IRIDESCENCE\n\tvec3 BRDF_GGX_Iridescence( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 f0, const in float f90, const in float iridescence, const in vec3 iridescenceFresnel, const in float roughness ) {\n\t\tfloat alpha = pow2( roughness );\n\t\tvec3 halfDir = normalize( lightDir + viewDir );\n\t\tfloat dotNL = saturate( dot( normal, lightDir ) );\n\t\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\t\tfloat dotNH = saturate( dot( normal, halfDir ) );\n\t\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\n\t\tvec3 F = mix( F_Schlick( f0, f90, dotVH ), iridescenceFresnel, iridescence );\n\t\tfloat V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\t\tfloat D = D_GGX( alpha, dotNH );\n\t\treturn F * ( V * D );\n\t}\n#endif\nvec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) {\n\tconst float LUT_SIZE = 64.0;\n\tconst float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE;\n\tconst float LUT_BIAS = 0.5 / LUT_SIZE;\n\tfloat dotNV = saturate( dot( N, V ) );\n\tvec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) );\n\tuv = uv * LUT_SCALE + LUT_BIAS;\n\treturn uv;\n}\nfloat LTC_ClippedSphereFormFactor( const in vec3 f ) {\n\tfloat l = length( f );\n\treturn max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 );\n}\nvec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) {\n\tfloat x = dot( v1, v2 );\n\tfloat y = abs( x );\n\tfloat a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y;\n\tfloat b = 3.4175940 + ( 4.1616724 + y ) * y;\n\tfloat v = a / b;\n\tfloat theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v;\n\treturn cross( v1, v2 ) * theta_sintheta;\n}\nvec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) {\n\tvec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ];\n\tvec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ];\n\tvec3 lightNormal = cross( v1, v2 );\n\tif( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 );\n\tvec3 T1, T2;\n\tT1 = normalize( V - N * dot( V, N ) );\n\tT2 = - cross( N, T1 );\n\tmat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) );\n\tvec3 coords[ 4 ];\n\tcoords[ 0 ] = mat * ( rectCoords[ 0 ] - P );\n\tcoords[ 1 ] = mat * ( rectCoords[ 1 ] - P );\n\tcoords[ 2 ] = mat * ( rectCoords[ 2 ] - P );\n\tcoords[ 3 ] = mat * ( rectCoords[ 3 ] - P );\n\tcoords[ 0 ] = normalize( coords[ 0 ] );\n\tcoords[ 1 ] = normalize( coords[ 1 ] );\n\tcoords[ 2 ] = normalize( coords[ 2 ] );\n\tcoords[ 3 ] = normalize( coords[ 3 ] );\n\tvec3 vectorFormFactor = vec3( 0.0 );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] );\n\tvectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] );\n\tfloat result = LTC_ClippedSphereFormFactor( vectorFormFactor );\n\treturn vec3( result );\n}\nfloat G_BlinnPhong_Implicit( ) {\n\treturn 0.25;\n}\nfloat D_BlinnPhong( const in float shininess, const in float dotNH ) {\n\treturn RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess );\n}\nvec3 BRDF_BlinnPhong( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in vec3 specularColor, const in float shininess ) {\n\tvec3 halfDir = normalize( lightDir + viewDir );\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\n\tfloat dotVH = saturate( dot( viewDir, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, 1.0, dotVH );\n\tfloat G = G_BlinnPhong_Implicit( );\n\tfloat D = D_BlinnPhong( shininess, dotNH );\n\treturn F * ( G * D );\n}\n#if defined( USE_SHEEN )\nfloat D_Charlie( float roughness, float dotNH ) {\n\tfloat alpha = pow2( roughness );\n\tfloat invAlpha = 1.0 / alpha;\n\tfloat cos2h = dotNH * dotNH;\n\tfloat sin2h = max( 1.0 - cos2h, 0.0078125 );\n\treturn ( 2.0 + invAlpha ) * pow( sin2h, invAlpha * 0.5 ) / ( 2.0 * PI );\n}\nfloat V_Neubelt( float dotNV, float dotNL ) {\n\treturn saturate( 1.0 / ( 4.0 * ( dotNL + dotNV - dotNL * dotNV ) ) );\n}\nvec3 BRDF_Sheen( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, vec3 sheenColor, const in float sheenRoughness ) {\n\tvec3 halfDir = normalize( lightDir + viewDir );\n\tfloat dotNL = saturate( dot( normal, lightDir ) );\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\tfloat dotNH = saturate( dot( normal, halfDir ) );\n\tfloat D = D_Charlie( sheenRoughness, dotNH );\n\tfloat V = V_Neubelt( dotNV, dotNL );\n\treturn sheenColor * ( D * V );\n}\n#endif`,E0=`#ifdef USE_IRIDESCENCE\n\tconst mat3 XYZ_TO_REC709 = mat3(\n\t\t 3.2404542, -0.9692660,  0.0556434,\n\t\t-1.5371385,  1.8760108, -0.2040259,\n\t\t-0.4985314,  0.0415560,  1.0572252\n\t);\n\tvec3 Fresnel0ToIor( vec3 fresnel0 ) {\n\t\tvec3 sqrtF0 = sqrt( fresnel0 );\n\t\treturn ( vec3( 1.0 ) + sqrtF0 ) / ( vec3( 1.0 ) - sqrtF0 );\n\t}\n\tvec3 IorToFresnel0( vec3 transmittedIor, float incidentIor ) {\n\t\treturn pow2( ( transmittedIor - vec3( incidentIor ) ) / ( transmittedIor + vec3( incidentIor ) ) );\n\t}\n\tfloat IorToFresnel0( float transmittedIor, float incidentIor ) {\n\t\treturn pow2( ( transmittedIor - incidentIor ) / ( transmittedIor + incidentIor ));\n\t}\n\tvec3 evalSensitivity( float OPD, vec3 shift ) {\n\t\tfloat phase = 2.0 * PI * OPD * 1.0e-9;\n\t\tvec3 val = vec3( 5.4856e-13, 4.4201e-13, 5.2481e-13 );\n\t\tvec3 pos = vec3( 1.6810e+06, 1.7953e+06, 2.2084e+06 );\n\t\tvec3 var = vec3( 4.3278e+09, 9.3046e+09, 6.6121e+09 );\n\t\tvec3 xyz = val * sqrt( 2.0 * PI * var ) * cos( pos * phase + shift ) * exp( - pow2( phase ) * var );\n\t\txyz.x += 9.7470e-14 * sqrt( 2.0 * PI * 4.5282e+09 ) * cos( 2.2399e+06 * phase + shift[ 0 ] ) * exp( - 4.5282e+09 * pow2( phase ) );\n\t\txyz /= 1.0685e-7;\n\t\tvec3 rgb = XYZ_TO_REC709 * xyz;\n\t\treturn rgb;\n\t}\n\tvec3 evalIridescence( float outsideIOR, float eta2, float cosTheta1, float thinFilmThickness, vec3 baseF0 ) {\n\t\tvec3 I;\n\t\tfloat iridescenceIOR = mix( outsideIOR, eta2, smoothstep( 0.0, 0.03, thinFilmThickness ) );\n\t\tfloat sinTheta2Sq = pow2( outsideIOR / iridescenceIOR ) * ( 1.0 - pow2( cosTheta1 ) );\n\t\tfloat cosTheta2Sq = 1.0 - sinTheta2Sq;\n\t\tif ( cosTheta2Sq < 0.0 ) {\n\t\t\t return vec3( 1.0 );\n\t\t}\n\t\tfloat cosTheta2 = sqrt( cosTheta2Sq );\n\t\tfloat R0 = IorToFresnel0( iridescenceIOR, outsideIOR );\n\t\tfloat R12 = F_Schlick( R0, 1.0, cosTheta1 );\n\t\tfloat R21 = R12;\n\t\tfloat T121 = 1.0 - R12;\n\t\tfloat phi12 = 0.0;\n\t\tif ( iridescenceIOR < outsideIOR ) phi12 = PI;\n\t\tfloat phi21 = PI - phi12;\n\t\tvec3 baseIOR = Fresnel0ToIor( clamp( baseF0, 0.0, 0.9999 ) );\t\tvec3 R1 = IorToFresnel0( baseIOR, iridescenceIOR );\n\t\tvec3 R23 = F_Schlick( R1, 1.0, cosTheta2 );\n\t\tvec3 phi23 = vec3( 0.0 );\n\t\tif ( baseIOR[ 0 ] < iridescenceIOR ) phi23[ 0 ] = PI;\n\t\tif ( baseIOR[ 1 ] < iridescenceIOR ) phi23[ 1 ] = PI;\n\t\tif ( baseIOR[ 2 ] < iridescenceIOR ) phi23[ 2 ] = PI;\n\t\tfloat OPD = 2.0 * iridescenceIOR * thinFilmThickness * cosTheta2;\n\t\tvec3 phi = vec3( phi21 ) + phi23;\n\t\tvec3 R123 = clamp( R12 * R23, 1e-5, 0.9999 );\n\t\tvec3 r123 = sqrt( R123 );\n\t\tvec3 Rs = pow2( T121 ) * R23 / ( vec3( 1.0 ) - R123 );\n\t\tvec3 C0 = R12 + Rs;\n\t\tI = C0;\n\t\tvec3 Cm = Rs - T121;\n\t\tfor ( int m = 1; m <= 2; ++ m ) {\n\t\t\tCm *= r123;\n\t\t\tvec3 Sm = 2.0 * evalSensitivity( float( m ) * OPD, float( m ) * phi );\n\t\t\tI += Cm * Sm;\n\t\t}\n\t\treturn max( I, vec3( 0.0 ) );\n\t}\n#endif`,C0=`#ifdef USE_BUMPMAP\n\tuniform sampler2D bumpMap;\n\tuniform float bumpScale;\n\tvec2 dHdxy_fwd() {\n\t\tvec2 dSTdx = dFdx( vUv );\n\t\tvec2 dSTdy = dFdy( vUv );\n\t\tfloat Hll = bumpScale * texture2D( bumpMap, vUv ).x;\n\t\tfloat dBx = bumpScale * texture2D( bumpMap, vUv + dSTdx ).x - Hll;\n\t\tfloat dBy = bumpScale * texture2D( bumpMap, vUv + dSTdy ).x - Hll;\n\t\treturn vec2( dBx, dBy );\n\t}\n\tvec3 perturbNormalArb( vec3 surf_pos, vec3 surf_norm, vec2 dHdxy, float faceDirection ) {\n\t\tvec3 vSigmaX = dFdx( surf_pos.xyz );\n\t\tvec3 vSigmaY = dFdy( surf_pos.xyz );\n\t\tvec3 vN = surf_norm;\n\t\tvec3 R1 = cross( vSigmaY, vN );\n\t\tvec3 R2 = cross( vN, vSigmaX );\n\t\tfloat fDet = dot( vSigmaX, R1 ) * faceDirection;\n\t\tvec3 vGrad = sign( fDet ) * ( dHdxy.x * R1 + dHdxy.y * R2 );\n\t\treturn normalize( abs( fDet ) * surf_norm - vGrad );\n\t}\n#endif`,L0=`#if NUM_CLIPPING_PLANES > 0\n\tvec4 plane;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) {\n\t\tplane = clippingPlanes[ i ];\n\t\tif ( dot( vClipPosition, plane.xyz ) > plane.w ) discard;\n\t}\n\t#pragma unroll_loop_end\n\t#if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES\n\t\tbool clipped = true;\n\t\t#pragma unroll_loop_start\n\t\tfor ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) {\n\t\t\tplane = clippingPlanes[ i ];\n\t\t\tclipped = ( dot( vClipPosition, plane.xyz ) > plane.w ) && clipped;\n\t\t}\n\t\t#pragma unroll_loop_end\n\t\tif ( clipped ) discard;\n\t#endif\n#endif`,R0=`#if NUM_CLIPPING_PLANES > 0\n\tvarying vec3 vClipPosition;\n\tuniform vec4 clippingPlanes[ NUM_CLIPPING_PLANES ];\n#endif`,I0=`#if NUM_CLIPPING_PLANES > 0\n\tvarying vec3 vClipPosition;\n#endif`,P0=`#if NUM_CLIPPING_PLANES > 0\n\tvClipPosition = - mvPosition.xyz;\n#endif`,D0=`#if defined( USE_COLOR_ALPHA )\n\tdiffuseColor *= vColor;\n#elif defined( USE_COLOR )\n\tdiffuseColor.rgb *= vColor;\n#endif`,F0=`#if defined( USE_COLOR_ALPHA )\n\tvarying vec4 vColor;\n#elif defined( USE_COLOR )\n\tvarying vec3 vColor;\n#endif`,N0=`#if defined( USE_COLOR_ALPHA )\n\tvarying vec4 vColor;\n#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR )\n\tvarying vec3 vColor;\n#endif`,k0=`#if defined( USE_COLOR_ALPHA )\n\tvColor = vec4( 1.0 );\n#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR )\n\tvColor = vec3( 1.0 );\n#endif\n#ifdef USE_COLOR\n\tvColor *= color;\n#endif\n#ifdef USE_INSTANCING_COLOR\n\tvColor.xyz *= instanceColor.xyz;\n#endif`,O0=`#define PI 3.141592653589793\n#define PI2 6.283185307179586\n#define PI_HALF 1.5707963267948966\n#define RECIPROCAL_PI 0.3183098861837907\n#define RECIPROCAL_PI2 0.15915494309189535\n#define EPSILON 1e-6\n#ifndef saturate\n#define saturate( a ) clamp( a, 0.0, 1.0 )\n#endif\n#define whiteComplement( a ) ( 1.0 - saturate( a ) )\nfloat pow2( const in float x ) { return x*x; }\nvec3 pow2( const in vec3 x ) { return x*x; }\nfloat pow3( const in float x ) { return x*x*x; }\nfloat pow4( const in float x ) { float x2 = x*x; return x2*x2; }\nfloat max3( const in vec3 v ) { return max( max( v.x, v.y ), v.z ); }\nfloat average( const in vec3 v ) { return dot( v, vec3( 0.3333333 ) ); }\nhighp float rand( const in vec2 uv ) {\n\tconst highp float a = 12.9898, b = 78.233, c = 43758.5453;\n\thighp float dt = dot( uv.xy, vec2( a,b ) ), sn = mod( dt, PI );\n\treturn fract( sin( sn ) * c );\n}\n#ifdef HIGH_PRECISION\n\tfloat precisionSafeLength( vec3 v ) { return length( v ); }\n#else\n\tfloat precisionSafeLength( vec3 v ) {\n\t\tfloat maxComponent = max3( abs( v ) );\n\t\treturn length( v / maxComponent ) * maxComponent;\n\t}\n#endif\nstruct IncidentLight {\n\tvec3 color;\n\tvec3 direction;\n\tbool visible;\n};\nstruct ReflectedLight {\n\tvec3 directDiffuse;\n\tvec3 directSpecular;\n\tvec3 indirectDiffuse;\n\tvec3 indirectSpecular;\n};\nstruct GeometricContext {\n\tvec3 position;\n\tvec3 normal;\n\tvec3 viewDir;\n#ifdef USE_CLEARCOAT\n\tvec3 clearcoatNormal;\n#endif\n};\nvec3 transformDirection( in vec3 dir, in mat4 matrix ) {\n\treturn normalize( ( matrix * vec4( dir, 0.0 ) ).xyz );\n}\nvec3 inverseTransformDirection( in vec3 dir, in mat4 matrix ) {\n\treturn normalize( ( vec4( dir, 0.0 ) * matrix ).xyz );\n}\nmat3 transposeMat3( const in mat3 m ) {\n\tmat3 tmp;\n\ttmp[ 0 ] = vec3( m[ 0 ].x, m[ 1 ].x, m[ 2 ].x );\n\ttmp[ 1 ] = vec3( m[ 0 ].y, m[ 1 ].y, m[ 2 ].y );\n\ttmp[ 2 ] = vec3( m[ 0 ].z, m[ 1 ].z, m[ 2 ].z );\n\treturn tmp;\n}\nfloat luminance( const in vec3 rgb ) {\n\tconst vec3 weights = vec3( 0.2126729, 0.7151522, 0.0721750 );\n\treturn dot( weights, rgb );\n}\nbool isPerspectiveMatrix( mat4 m ) {\n\treturn m[ 2 ][ 3 ] == - 1.0;\n}\nvec2 equirectUv( in vec3 dir ) {\n\tfloat u = atan( dir.z, dir.x ) * RECIPROCAL_PI2 + 0.5;\n\tfloat v = asin( clamp( dir.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;\n\treturn vec2( u, v );\n}`,B0=`#ifdef ENVMAP_TYPE_CUBE_UV\n\t#define cubeUV_minMipLevel 4.0\n\t#define cubeUV_minTileSize 16.0\n\tfloat getFace( vec3 direction ) {\n\t\tvec3 absDirection = abs( direction );\n\t\tfloat face = - 1.0;\n\t\tif ( absDirection.x > absDirection.z ) {\n\t\t\tif ( absDirection.x > absDirection.y )\n\t\t\t\tface = direction.x > 0.0 ? 0.0 : 3.0;\n\t\t\telse\n\t\t\t\tface = direction.y > 0.0 ? 1.0 : 4.0;\n\t\t} else {\n\t\t\tif ( absDirection.z > absDirection.y )\n\t\t\t\tface = direction.z > 0.0 ? 2.0 : 5.0;\n\t\t\telse\n\t\t\t\tface = direction.y > 0.0 ? 1.0 : 4.0;\n\t\t}\n\t\treturn face;\n\t}\n\tvec2 getUV( vec3 direction, float face ) {\n\t\tvec2 uv;\n\t\tif ( face == 0.0 ) {\n\t\t\tuv = vec2( direction.z, direction.y ) / abs( direction.x );\n\t\t} else if ( face == 1.0 ) {\n\t\t\tuv = vec2( - direction.x, - direction.z ) / abs( direction.y );\n\t\t} else if ( face == 2.0 ) {\n\t\t\tuv = vec2( - direction.x, direction.y ) / abs( direction.z );\n\t\t} else if ( face == 3.0 ) {\n\t\t\tuv = vec2( - direction.z, direction.y ) / abs( direction.x );\n\t\t} else if ( face == 4.0 ) {\n\t\t\tuv = vec2( - direction.x, direction.z ) / abs( direction.y );\n\t\t} else {\n\t\t\tuv = vec2( direction.x, direction.y ) / abs( direction.z );\n\t\t}\n\t\treturn 0.5 * ( uv + 1.0 );\n\t}\n\tvec3 bilinearCubeUV( sampler2D envMap, vec3 direction, float mipInt ) {\n\t\tfloat face = getFace( direction );\n\t\tfloat filterInt = max( cubeUV_minMipLevel - mipInt, 0.0 );\n\t\tmipInt = max( mipInt, cubeUV_minMipLevel );\n\t\tfloat faceSize = exp2( mipInt );\n\t\tvec2 uv = getUV( direction, face ) * ( faceSize - 2.0 ) + 1.0;\n\t\tif ( face > 2.0 ) {\n\t\t\tuv.y += faceSize;\n\t\t\tface -= 3.0;\n\t\t}\n\t\tuv.x += face * faceSize;\n\t\tuv.x += filterInt * 3.0 * cubeUV_minTileSize;\n\t\tuv.y += 4.0 * ( exp2( CUBEUV_MAX_MIP ) - faceSize );\n\t\tuv.x *= CUBEUV_TEXEL_WIDTH;\n\t\tuv.y *= CUBEUV_TEXEL_HEIGHT;\n\t\t#ifdef texture2DGradEXT\n\t\t\treturn texture2DGradEXT( envMap, uv, vec2( 0.0 ), vec2( 0.0 ) ).rgb;\n\t\t#else\n\t\t\treturn texture2D( envMap, uv ).rgb;\n\t\t#endif\n\t}\n\t#define r0 1.0\n\t#define v0 0.339\n\t#define m0 - 2.0\n\t#define r1 0.8\n\t#define v1 0.276\n\t#define m1 - 1.0\n\t#define r4 0.4\n\t#define v4 0.046\n\t#define m4 2.0\n\t#define r5 0.305\n\t#define v5 0.016\n\t#define m5 3.0\n\t#define r6 0.21\n\t#define v6 0.0038\n\t#define m6 4.0\n\tfloat roughnessToMip( float roughness ) {\n\t\tfloat mip = 0.0;\n\t\tif ( roughness >= r1 ) {\n\t\t\tmip = ( r0 - roughness ) * ( m1 - m0 ) / ( r0 - r1 ) + m0;\n\t\t} else if ( roughness >= r4 ) {\n\t\t\tmip = ( r1 - roughness ) * ( m4 - m1 ) / ( r1 - r4 ) + m1;\n\t\t} else if ( roughness >= r5 ) {\n\t\t\tmip = ( r4 - roughness ) * ( m5 - m4 ) / ( r4 - r5 ) + m4;\n\t\t} else if ( roughness >= r6 ) {\n\t\t\tmip = ( r5 - roughness ) * ( m6 - m5 ) / ( r5 - r6 ) + m5;\n\t\t} else {\n\t\t\tmip = - 2.0 * log2( 1.16 * roughness );\t\t}\n\t\treturn mip;\n\t}\n\tvec4 textureCubeUV( sampler2D envMap, vec3 sampleDir, float roughness ) {\n\t\tfloat mip = clamp( roughnessToMip( roughness ), m0, CUBEUV_MAX_MIP );\n\t\tfloat mipF = fract( mip );\n\t\tfloat mipInt = floor( mip );\n\t\tvec3 color0 = bilinearCubeUV( envMap, sampleDir, mipInt );\n\t\tif ( mipF == 0.0 ) {\n\t\t\treturn vec4( color0, 1.0 );\n\t\t} else {\n\t\t\tvec3 color1 = bilinearCubeUV( envMap, sampleDir, mipInt + 1.0 );\n\t\t\treturn vec4( mix( color0, color1, mipF ), 1.0 );\n\t\t}\n\t}\n#endif`,z0=`vec3 transformedNormal = objectNormal;\n#ifdef USE_INSTANCING\n\tmat3 m = mat3( instanceMatrix );\n\ttransformedNormal /= vec3( dot( m[ 0 ], m[ 0 ] ), dot( m[ 1 ], m[ 1 ] ), dot( m[ 2 ], m[ 2 ] ) );\n\ttransformedNormal = m * transformedNormal;\n#endif\ntransformedNormal = normalMatrix * transformedNormal;\n#ifdef FLIP_SIDED\n\ttransformedNormal = - transformedNormal;\n#endif\n#ifdef USE_TANGENT\n\tvec3 transformedTangent = ( modelViewMatrix * vec4( objectTangent, 0.0 ) ).xyz;\n\t#ifdef FLIP_SIDED\n\t\ttransformedTangent = - transformedTangent;\n\t#endif\n#endif`,U0=`#ifdef USE_DISPLACEMENTMAP\n\tuniform sampler2D displacementMap;\n\tuniform float displacementScale;\n\tuniform float displacementBias;\n#endif`,G0=`#ifdef USE_DISPLACEMENTMAP\n\ttransformed += normalize( objectNormal ) * ( texture2D( displacementMap, vUv ).x * displacementScale + displacementBias );\n#endif`,V0=`#ifdef USE_EMISSIVEMAP\n\tvec4 emissiveColor = texture2D( emissiveMap, vUv );\n\ttotalEmissiveRadiance *= emissiveColor.rgb;\n#endif`,H0=`#ifdef USE_EMISSIVEMAP\n\tuniform sampler2D emissiveMap;\n#endif`,W0=\"gl_FragColor = linearToOutputTexel( gl_FragColor );\",q0=`vec4 LinearToLinear( in vec4 value ) {\n\treturn value;\n}\nvec4 LinearTosRGB( in vec4 value ) {\n\treturn vec4( mix( pow( value.rgb, vec3( 0.41666 ) ) * 1.055 - vec3( 0.055 ), value.rgb * 12.92, vec3( lessThanEqual( value.rgb, vec3( 0.0031308 ) ) ) ), value.a );\n}`,X0=`#ifdef USE_ENVMAP\n\t#ifdef ENV_WORLDPOS\n\t\tvec3 cameraToFrag;\n\t\tif ( isOrthographic ) {\n\t\t\tcameraToFrag = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) );\n\t\t} else {\n\t\t\tcameraToFrag = normalize( vWorldPosition - cameraPosition );\n\t\t}\n\t\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\n\t\t#ifdef ENVMAP_MODE_REFLECTION\n\t\t\tvec3 reflectVec = reflect( cameraToFrag, worldNormal );\n\t\t#else\n\t\t\tvec3 reflectVec = refract( cameraToFrag, worldNormal, refractionRatio );\n\t\t#endif\n\t#else\n\t\tvec3 reflectVec = vReflect;\n\t#endif\n\t#ifdef ENVMAP_TYPE_CUBE\n\t\tvec4 envColor = textureCube( envMap, vec3( flipEnvMap * reflectVec.x, reflectVec.yz ) );\n\t#elif defined( ENVMAP_TYPE_CUBE_UV )\n\t\tvec4 envColor = textureCubeUV( envMap, reflectVec, 0.0 );\n\t#else\n\t\tvec4 envColor = vec4( 0.0 );\n\t#endif\n\t#ifdef ENVMAP_BLENDING_MULTIPLY\n\t\toutgoingLight = mix( outgoingLight, outgoingLight * envColor.xyz, specularStrength * reflectivity );\n\t#elif defined( ENVMAP_BLENDING_MIX )\n\t\toutgoingLight = mix( outgoingLight, envColor.xyz, specularStrength * reflectivity );\n\t#elif defined( ENVMAP_BLENDING_ADD )\n\t\toutgoingLight += envColor.xyz * specularStrength * reflectivity;\n\t#endif\n#endif`,j0=`#ifdef USE_ENVMAP\n\tuniform float envMapIntensity;\n\tuniform float flipEnvMap;\n\t#ifdef ENVMAP_TYPE_CUBE\n\t\tuniform samplerCube envMap;\n\t#else\n\t\tuniform sampler2D envMap;\n\t#endif\n\t\n#endif`,Y0=`#ifdef USE_ENVMAP\n\tuniform float reflectivity;\n\t#if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG )\n\t\t#define ENV_WORLDPOS\n\t#endif\n\t#ifdef ENV_WORLDPOS\n\t\tvarying vec3 vWorldPosition;\n\t\tuniform float refractionRatio;\n\t#else\n\t\tvarying vec3 vReflect;\n\t#endif\n#endif`,Z0=`#ifdef USE_ENVMAP\n\t#if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) ||defined( PHONG )\n\t\t#define ENV_WORLDPOS\n\t#endif\n\t#ifdef ENV_WORLDPOS\n\t\t\n\t\tvarying vec3 vWorldPosition;\n\t#else\n\t\tvarying vec3 vReflect;\n\t\tuniform float refractionRatio;\n\t#endif\n#endif`,K0=`#ifdef USE_ENVMAP\n\t#ifdef ENV_WORLDPOS\n\t\tvWorldPosition = worldPosition.xyz;\n\t#else\n\t\tvec3 cameraToVertex;\n\t\tif ( isOrthographic ) {\n\t\t\tcameraToVertex = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) );\n\t\t} else {\n\t\t\tcameraToVertex = normalize( worldPosition.xyz - cameraPosition );\n\t\t}\n\t\tvec3 worldNormal = inverseTransformDirection( transformedNormal, viewMatrix );\n\t\t#ifdef ENVMAP_MODE_REFLECTION\n\t\t\tvReflect = reflect( cameraToVertex, worldNormal );\n\t\t#else\n\t\t\tvReflect = refract( cameraToVertex, worldNormal, refractionRatio );\n\t\t#endif\n\t#endif\n#endif`,J0=`#ifdef USE_FOG\n\tvFogDepth = - mvPosition.z;\n#endif`,$0=`#ifdef USE_FOG\n\tvarying float vFogDepth;\n#endif`,Q0=`#ifdef USE_FOG\n\t#ifdef FOG_EXP2\n\t\tfloat fogFactor = 1.0 - exp( - fogDensity * fogDensity * vFogDepth * vFogDepth );\n\t#else\n\t\tfloat fogFactor = smoothstep( fogNear, fogFar, vFogDepth );\n\t#endif\n\tgl_FragColor.rgb = mix( gl_FragColor.rgb, fogColor, fogFactor );\n#endif`,ey=`#ifdef USE_FOG\n\tuniform vec3 fogColor;\n\tvarying float vFogDepth;\n\t#ifdef FOG_EXP2\n\t\tuniform float fogDensity;\n\t#else\n\t\tuniform float fogNear;\n\t\tuniform float fogFar;\n\t#endif\n#endif`,ty=`#ifdef USE_GRADIENTMAP\n\tuniform sampler2D gradientMap;\n#endif\nvec3 getGradientIrradiance( vec3 normal, vec3 lightDirection ) {\n\tfloat dotNL = dot( normal, lightDirection );\n\tvec2 coord = vec2( dotNL * 0.5 + 0.5, 0.0 );\n\t#ifdef USE_GRADIENTMAP\n\t\treturn vec3( texture2D( gradientMap, coord ).r );\n\t#else\n\t\treturn ( coord.x < 0.7 ) ? vec3( 0.7 ) : vec3( 1.0 );\n\t#endif\n}`,ny=`#ifdef USE_LIGHTMAP\n\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\n\tvec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity;\n\treflectedLight.indirectDiffuse += lightMapIrradiance;\n#endif`,iy=`#ifdef USE_LIGHTMAP\n\tuniform sampler2D lightMap;\n\tuniform float lightMapIntensity;\n#endif`,sy=`vec3 diffuse = vec3( 1.0 );\nGeometricContext geometry;\ngeometry.position = mvPosition.xyz;\ngeometry.normal = normalize( transformedNormal );\ngeometry.viewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( -mvPosition.xyz );\nGeometricContext backGeometry;\nbackGeometry.position = geometry.position;\nbackGeometry.normal = -geometry.normal;\nbackGeometry.viewDir = geometry.viewDir;\nvLightFront = vec3( 0.0 );\nvIndirectFront = vec3( 0.0 );\n#ifdef DOUBLE_SIDED\n\tvLightBack = vec3( 0.0 );\n\tvIndirectBack = vec3( 0.0 );\n#endif\nIncidentLight directLight;\nfloat dotNL;\nvec3 directLightColor_Diffuse;\nvIndirectFront += getAmbientLightIrradiance( ambientLightColor );\nvIndirectFront += getLightProbeIrradiance( lightProbe, geometry.normal );\n#ifdef DOUBLE_SIDED\n\tvIndirectBack += getAmbientLightIrradiance( ambientLightColor );\n\tvIndirectBack += getLightProbeIrradiance( lightProbe, backGeometry.normal );\n#endif\n#if NUM_POINT_LIGHTS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) {\n\t\tgetPointLightInfo( pointLights[ i ], geometry, directLight );\n\t\tdotNL = dot( geometry.normal, directLight.direction );\n\t\tdirectLightColor_Diffuse = directLight.color;\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\n\t\t#ifdef DOUBLE_SIDED\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\n\t\t#endif\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if NUM_SPOT_LIGHTS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) {\n\t\tgetSpotLightInfo( spotLights[ i ], geometry, directLight );\n\t\tdotNL = dot( geometry.normal, directLight.direction );\n\t\tdirectLightColor_Diffuse = directLight.color;\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\n\t\t#ifdef DOUBLE_SIDED\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\n\t\t#endif\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if NUM_DIR_LIGHTS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) {\n\t\tgetDirectionalLightInfo( directionalLights[ i ], geometry, directLight );\n\t\tdotNL = dot( geometry.normal, directLight.direction );\n\t\tdirectLightColor_Diffuse = directLight.color;\n\t\tvLightFront += saturate( dotNL ) * directLightColor_Diffuse;\n\t\t#ifdef DOUBLE_SIDED\n\t\t\tvLightBack += saturate( - dotNL ) * directLightColor_Diffuse;\n\t\t#endif\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if NUM_HEMI_LIGHTS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) {\n\t\tvIndirectFront += getHemisphereLightIrradiance( hemisphereLights[ i ], geometry.normal );\n\t\t#ifdef DOUBLE_SIDED\n\t\t\tvIndirectBack += getHemisphereLightIrradiance( hemisphereLights[ i ], backGeometry.normal );\n\t\t#endif\n\t}\n\t#pragma unroll_loop_end\n#endif`,ry=`uniform bool receiveShadow;\nuniform vec3 ambientLightColor;\nuniform vec3 lightProbe[ 9 ];\nvec3 shGetIrradianceAt( in vec3 normal, in vec3 shCoefficients[ 9 ] ) {\n\tfloat x = normal.x, y = normal.y, z = normal.z;\n\tvec3 result = shCoefficients[ 0 ] * 0.886227;\n\tresult += shCoefficients[ 1 ] * 2.0 * 0.511664 * y;\n\tresult += shCoefficients[ 2 ] * 2.0 * 0.511664 * z;\n\tresult += shCoefficients[ 3 ] * 2.0 * 0.511664 * x;\n\tresult += shCoefficients[ 4 ] * 2.0 * 0.429043 * x * y;\n\tresult += shCoefficients[ 5 ] * 2.0 * 0.429043 * y * z;\n\tresult += shCoefficients[ 6 ] * ( 0.743125 * z * z - 0.247708 );\n\tresult += shCoefficients[ 7 ] * 2.0 * 0.429043 * x * z;\n\tresult += shCoefficients[ 8 ] * 0.429043 * ( x * x - y * y );\n\treturn result;\n}\nvec3 getLightProbeIrradiance( const in vec3 lightProbe[ 9 ], const in vec3 normal ) {\n\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\n\tvec3 irradiance = shGetIrradianceAt( worldNormal, lightProbe );\n\treturn irradiance;\n}\nvec3 getAmbientLightIrradiance( const in vec3 ambientLightColor ) {\n\tvec3 irradiance = ambientLightColor;\n\treturn irradiance;\n}\nfloat getDistanceAttenuation( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) {\n\t#if defined ( PHYSICALLY_CORRECT_LIGHTS )\n\t\tfloat distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 );\n\t\tif ( cutoffDistance > 0.0 ) {\n\t\t\tdistanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) );\n\t\t}\n\t\treturn distanceFalloff;\n\t#else\n\t\tif ( cutoffDistance > 0.0 && decayExponent > 0.0 ) {\n\t\t\treturn pow( saturate( - lightDistance / cutoffDistance + 1.0 ), decayExponent );\n\t\t}\n\t\treturn 1.0;\n\t#endif\n}\nfloat getSpotAttenuation( const in float coneCosine, const in float penumbraCosine, const in float angleCosine ) {\n\treturn smoothstep( coneCosine, penumbraCosine, angleCosine );\n}\n#if NUM_DIR_LIGHTS > 0\n\tstruct DirectionalLight {\n\t\tvec3 direction;\n\t\tvec3 color;\n\t};\n\tuniform DirectionalLight directionalLights[ NUM_DIR_LIGHTS ];\n\tvoid getDirectionalLightInfo( const in DirectionalLight directionalLight, const in GeometricContext geometry, out IncidentLight light ) {\n\t\tlight.color = directionalLight.color;\n\t\tlight.direction = directionalLight.direction;\n\t\tlight.visible = true;\n\t}\n#endif\n#if NUM_POINT_LIGHTS > 0\n\tstruct PointLight {\n\t\tvec3 position;\n\t\tvec3 color;\n\t\tfloat distance;\n\t\tfloat decay;\n\t};\n\tuniform PointLight pointLights[ NUM_POINT_LIGHTS ];\n\tvoid getPointLightInfo( const in PointLight pointLight, const in GeometricContext geometry, out IncidentLight light ) {\n\t\tvec3 lVector = pointLight.position - geometry.position;\n\t\tlight.direction = normalize( lVector );\n\t\tfloat lightDistance = length( lVector );\n\t\tlight.color = pointLight.color;\n\t\tlight.color *= getDistanceAttenuation( lightDistance, pointLight.distance, pointLight.decay );\n\t\tlight.visible = ( light.color != vec3( 0.0 ) );\n\t}\n#endif\n#if NUM_SPOT_LIGHTS > 0\n\tstruct SpotLight {\n\t\tvec3 position;\n\t\tvec3 direction;\n\t\tvec3 color;\n\t\tfloat distance;\n\t\tfloat decay;\n\t\tfloat coneCos;\n\t\tfloat penumbraCos;\n\t};\n\tuniform SpotLight spotLights[ NUM_SPOT_LIGHTS ];\n\tvoid getSpotLightInfo( const in SpotLight spotLight, const in GeometricContext geometry, out IncidentLight light ) {\n\t\tvec3 lVector = spotLight.position - geometry.position;\n\t\tlight.direction = normalize( lVector );\n\t\tfloat angleCos = dot( light.direction, spotLight.direction );\n\t\tfloat spotAttenuation = getSpotAttenuation( spotLight.coneCos, spotLight.penumbraCos, angleCos );\n\t\tif ( spotAttenuation > 0.0 ) {\n\t\t\tfloat lightDistance = length( lVector );\n\t\t\tlight.color = spotLight.color * spotAttenuation;\n\t\t\tlight.color *= getDistanceAttenuation( lightDistance, spotLight.distance, spotLight.decay );\n\t\t\tlight.visible = ( light.color != vec3( 0.0 ) );\n\t\t} else {\n\t\t\tlight.color = vec3( 0.0 );\n\t\t\tlight.visible = false;\n\t\t}\n\t}\n#endif\n#if NUM_RECT_AREA_LIGHTS > 0\n\tstruct RectAreaLight {\n\t\tvec3 color;\n\t\tvec3 position;\n\t\tvec3 halfWidth;\n\t\tvec3 halfHeight;\n\t};\n\tuniform sampler2D ltc_1;\tuniform sampler2D ltc_2;\n\tuniform RectAreaLight rectAreaLights[ NUM_RECT_AREA_LIGHTS ];\n#endif\n#if NUM_HEMI_LIGHTS > 0\n\tstruct HemisphereLight {\n\t\tvec3 direction;\n\t\tvec3 skyColor;\n\t\tvec3 groundColor;\n\t};\n\tuniform HemisphereLight hemisphereLights[ NUM_HEMI_LIGHTS ];\n\tvec3 getHemisphereLightIrradiance( const in HemisphereLight hemiLight, const in vec3 normal ) {\n\t\tfloat dotNL = dot( normal, hemiLight.direction );\n\t\tfloat hemiDiffuseWeight = 0.5 * dotNL + 0.5;\n\t\tvec3 irradiance = mix( hemiLight.groundColor, hemiLight.skyColor, hemiDiffuseWeight );\n\t\treturn irradiance;\n\t}\n#endif`,oy=`#if defined( USE_ENVMAP )\n\tvec3 getIBLIrradiance( const in vec3 normal ) {\n\t\t#if defined( ENVMAP_TYPE_CUBE_UV )\n\t\t\tvec3 worldNormal = inverseTransformDirection( normal, viewMatrix );\n\t\t\tvec4 envMapColor = textureCubeUV( envMap, worldNormal, 1.0 );\n\t\t\treturn PI * envMapColor.rgb * envMapIntensity;\n\t\t#else\n\t\t\treturn vec3( 0.0 );\n\t\t#endif\n\t}\n\tvec3 getIBLRadiance( const in vec3 viewDir, const in vec3 normal, const in float roughness ) {\n\t\t#if defined( ENVMAP_TYPE_CUBE_UV )\n\t\t\tvec3 reflectVec = reflect( - viewDir, normal );\n\t\t\treflectVec = normalize( mix( reflectVec, normal, roughness * roughness) );\n\t\t\treflectVec = inverseTransformDirection( reflectVec, viewMatrix );\n\t\t\tvec4 envMapColor = textureCubeUV( envMap, reflectVec, roughness );\n\t\t\treturn envMapColor.rgb * envMapIntensity;\n\t\t#else\n\t\t\treturn vec3( 0.0 );\n\t\t#endif\n\t}\n#endif`,ay=`ToonMaterial material;\nmaterial.diffuseColor = diffuseColor.rgb;`,ly=`varying vec3 vViewPosition;\nstruct ToonMaterial {\n\tvec3 diffuseColor;\n};\nvoid RE_Direct_Toon( const in IncidentLight directLight, const in GeometricContext geometry, const in ToonMaterial material, inout ReflectedLight reflectedLight ) {\n\tvec3 irradiance = getGradientIrradiance( geometry.normal, directLight.direction ) * directLight.color;\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\nvoid RE_IndirectDiffuse_Toon( const in vec3 irradiance, const in GeometricContext geometry, const in ToonMaterial material, inout ReflectedLight reflectedLight ) {\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\n#define RE_Direct\t\t\t\tRE_Direct_Toon\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_Toon\n#define Material_LightProbeLOD( material )\t(0)`,cy=`BlinnPhongMaterial material;\nmaterial.diffuseColor = diffuseColor.rgb;\nmaterial.specularColor = specular;\nmaterial.specularShininess = shininess;\nmaterial.specularStrength = specularStrength;`,uy=`varying vec3 vViewPosition;\nstruct BlinnPhongMaterial {\n\tvec3 diffuseColor;\n\tvec3 specularColor;\n\tfloat specularShininess;\n\tfloat specularStrength;\n};\nvoid RE_Direct_BlinnPhong( const in IncidentLight directLight, const in GeometricContext geometry, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) {\n\tfloat dotNL = saturate( dot( geometry.normal, directLight.direction ) );\n\tvec3 irradiance = dotNL * directLight.color;\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n\treflectedLight.directSpecular += irradiance * BRDF_BlinnPhong( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularShininess ) * material.specularStrength;\n}\nvoid RE_IndirectDiffuse_BlinnPhong( const in vec3 irradiance, const in GeometricContext geometry, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) {\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\n#define RE_Direct\t\t\t\tRE_Direct_BlinnPhong\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_BlinnPhong\n#define Material_LightProbeLOD( material )\t(0)`,hy=`PhysicalMaterial material;\nmaterial.diffuseColor = diffuseColor.rgb * ( 1.0 - metalnessFactor );\nvec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) );\nfloat geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z );\nmaterial.roughness = max( roughnessFactor, 0.0525 );material.roughness += geometryRoughness;\nmaterial.roughness = min( material.roughness, 1.0 );\n#ifdef IOR\n\t#ifdef SPECULAR\n\t\tfloat specularIntensityFactor = specularIntensity;\n\t\tvec3 specularColorFactor = specularColor;\n\t\t#ifdef USE_SPECULARINTENSITYMAP\n\t\t\tspecularIntensityFactor *= texture2D( specularIntensityMap, vUv ).a;\n\t\t#endif\n\t\t#ifdef USE_SPECULARCOLORMAP\n\t\t\tspecularColorFactor *= texture2D( specularColorMap, vUv ).rgb;\n\t\t#endif\n\t\tmaterial.specularF90 = mix( specularIntensityFactor, 1.0, metalnessFactor );\n\t#else\n\t\tfloat specularIntensityFactor = 1.0;\n\t\tvec3 specularColorFactor = vec3( 1.0 );\n\t\tmaterial.specularF90 = 1.0;\n\t#endif\n\tmaterial.specularColor = mix( min( pow2( ( ior - 1.0 ) / ( ior + 1.0 ) ) * specularColorFactor, vec3( 1.0 ) ) * specularIntensityFactor, diffuseColor.rgb, metalnessFactor );\n#else\n\tmaterial.specularColor = mix( vec3( 0.04 ), diffuseColor.rgb, metalnessFactor );\n\tmaterial.specularF90 = 1.0;\n#endif\n#ifdef USE_CLEARCOAT\n\tmaterial.clearcoat = clearcoat;\n\tmaterial.clearcoatRoughness = clearcoatRoughness;\n\tmaterial.clearcoatF0 = vec3( 0.04 );\n\tmaterial.clearcoatF90 = 1.0;\n\t#ifdef USE_CLEARCOATMAP\n\t\tmaterial.clearcoat *= texture2D( clearcoatMap, vUv ).x;\n\t#endif\n\t#ifdef USE_CLEARCOAT_ROUGHNESSMAP\n\t\tmaterial.clearcoatRoughness *= texture2D( clearcoatRoughnessMap, vUv ).y;\n\t#endif\n\tmaterial.clearcoat = saturate( material.clearcoat );\tmaterial.clearcoatRoughness = max( material.clearcoatRoughness, 0.0525 );\n\tmaterial.clearcoatRoughness += geometryRoughness;\n\tmaterial.clearcoatRoughness = min( material.clearcoatRoughness, 1.0 );\n#endif\n#ifdef USE_IRIDESCENCE\n\tmaterial.iridescence = iridescence;\n\tmaterial.iridescenceIOR = iridescenceIOR;\n\t#ifdef USE_IRIDESCENCEMAP\n\t\tmaterial.iridescence *= texture2D( iridescenceMap, vUv ).r;\n\t#endif\n\t#ifdef USE_IRIDESCENCE_THICKNESSMAP\n\t\tmaterial.iridescenceThickness = (iridescenceThicknessMaximum - iridescenceThicknessMinimum) * texture2D( iridescenceThicknessMap, vUv ).g + iridescenceThicknessMinimum;\n\t#else\n\t\tmaterial.iridescenceThickness = iridescenceThicknessMaximum;\n\t#endif\n#endif\n#ifdef USE_SHEEN\n\tmaterial.sheenColor = sheenColor;\n\t#ifdef USE_SHEENCOLORMAP\n\t\tmaterial.sheenColor *= texture2D( sheenColorMap, vUv ).rgb;\n\t#endif\n\tmaterial.sheenRoughness = clamp( sheenRoughness, 0.07, 1.0 );\n\t#ifdef USE_SHEENROUGHNESSMAP\n\t\tmaterial.sheenRoughness *= texture2D( sheenRoughnessMap, vUv ).a;\n\t#endif\n#endif`,fy=`struct PhysicalMaterial {\n\tvec3 diffuseColor;\n\tfloat roughness;\n\tvec3 specularColor;\n\tfloat specularF90;\n\t#ifdef USE_CLEARCOAT\n\t\tfloat clearcoat;\n\t\tfloat clearcoatRoughness;\n\t\tvec3 clearcoatF0;\n\t\tfloat clearcoatF90;\n\t#endif\n\t#ifdef USE_IRIDESCENCE\n\t\tfloat iridescence;\n\t\tfloat iridescenceIOR;\n\t\tfloat iridescenceThickness;\n\t\tvec3 iridescenceFresnel;\n\t\tvec3 iridescenceF0;\n\t#endif\n\t#ifdef USE_SHEEN\n\t\tvec3 sheenColor;\n\t\tfloat sheenRoughness;\n\t#endif\n};\nvec3 clearcoatSpecular = vec3( 0.0 );\nvec3 sheenSpecular = vec3( 0.0 );\nfloat IBLSheenBRDF( const in vec3 normal, const in vec3 viewDir, const in float roughness) {\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\tfloat r2 = roughness * roughness;\n\tfloat a = roughness < 0.25 ? -339.2 * r2 + 161.4 * roughness - 25.9 : -8.48 * r2 + 14.3 * roughness - 9.95;\n\tfloat b = roughness < 0.25 ? 44.0 * r2 - 23.7 * roughness + 3.26 : 1.97 * r2 - 3.27 * roughness + 0.72;\n\tfloat DG = exp( a * dotNV + b ) + ( roughness < 0.25 ? 0.0 : 0.1 * ( roughness - 0.25 ) );\n\treturn saturate( DG * RECIPROCAL_PI );\n}\nvec2 DFGApprox( const in vec3 normal, const in vec3 viewDir, const in float roughness ) {\n\tfloat dotNV = saturate( dot( normal, viewDir ) );\n\tconst vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 );\n\tconst vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 );\n\tvec4 r = roughness * c0 + c1;\n\tfloat a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y;\n\tvec2 fab = vec2( - 1.04, 1.04 ) * a004 + r.zw;\n\treturn fab;\n}\nvec3 EnvironmentBRDF( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness ) {\n\tvec2 fab = DFGApprox( normal, viewDir, roughness );\n\treturn specularColor * fab.x + specularF90 * fab.y;\n}\n#ifdef USE_IRIDESCENCE\nvoid computeMultiscatteringIridescence( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float iridescence, const in vec3 iridescenceF0, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) {\n#else\nvoid computeMultiscattering( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) {\n#endif\n\tvec2 fab = DFGApprox( normal, viewDir, roughness );\n\t#ifdef USE_IRIDESCENCE\n\t\tvec3 Fr = mix( specularColor, iridescenceF0, iridescence );\n\t#else\n\t\tvec3 Fr = specularColor;\n\t#endif\n\tvec3 FssEss = Fr * fab.x + specularF90 * fab.y;\n\tfloat Ess = fab.x + fab.y;\n\tfloat Ems = 1.0 - Ess;\n\tvec3 Favg = Fr + ( 1.0 - Fr ) * 0.047619;\tvec3 Fms = FssEss * Favg / ( 1.0 - Ems * Favg );\n\tsingleScatter += FssEss;\n\tmultiScatter += Fms * Ems;\n}\n#if NUM_RECT_AREA_LIGHTS > 0\n\tvoid RE_Direct_RectArea_Physical( const in RectAreaLight rectAreaLight, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\n\t\tvec3 normal = geometry.normal;\n\t\tvec3 viewDir = geometry.viewDir;\n\t\tvec3 position = geometry.position;\n\t\tvec3 lightPos = rectAreaLight.position;\n\t\tvec3 halfWidth = rectAreaLight.halfWidth;\n\t\tvec3 halfHeight = rectAreaLight.halfHeight;\n\t\tvec3 lightColor = rectAreaLight.color;\n\t\tfloat roughness = material.roughness;\n\t\tvec3 rectCoords[ 4 ];\n\t\trectCoords[ 0 ] = lightPos + halfWidth - halfHeight;\t\trectCoords[ 1 ] = lightPos - halfWidth - halfHeight;\n\t\trectCoords[ 2 ] = lightPos - halfWidth + halfHeight;\n\t\trectCoords[ 3 ] = lightPos + halfWidth + halfHeight;\n\t\tvec2 uv = LTC_Uv( normal, viewDir, roughness );\n\t\tvec4 t1 = texture2D( ltc_1, uv );\n\t\tvec4 t2 = texture2D( ltc_2, uv );\n\t\tmat3 mInv = mat3(\n\t\t\tvec3( t1.x, 0, t1.y ),\n\t\t\tvec3(    0, 1,    0 ),\n\t\t\tvec3( t1.z, 0, t1.w )\n\t\t);\n\t\tvec3 fresnel = ( material.specularColor * t2.x + ( vec3( 1.0 ) - material.specularColor ) * t2.y );\n\t\treflectedLight.directSpecular += lightColor * fresnel * LTC_Evaluate( normal, viewDir, position, mInv, rectCoords );\n\t\treflectedLight.directDiffuse += lightColor * material.diffuseColor * LTC_Evaluate( normal, viewDir, position, mat3( 1.0 ), rectCoords );\n\t}\n#endif\nvoid RE_Direct_Physical( const in IncidentLight directLight, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\n\tfloat dotNL = saturate( dot( geometry.normal, directLight.direction ) );\n\tvec3 irradiance = dotNL * directLight.color;\n\t#ifdef USE_CLEARCOAT\n\t\tfloat dotNLcc = saturate( dot( geometry.clearcoatNormal, directLight.direction ) );\n\t\tvec3 ccIrradiance = dotNLcc * directLight.color;\n\t\tclearcoatSpecular += ccIrradiance * BRDF_GGX( directLight.direction, geometry.viewDir, geometry.clearcoatNormal, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness );\n\t#endif\n\t#ifdef USE_SHEEN\n\t\tsheenSpecular += irradiance * BRDF_Sheen( directLight.direction, geometry.viewDir, geometry.normal, material.sheenColor, material.sheenRoughness );\n\t#endif\n\t#ifdef USE_IRIDESCENCE\n\t\treflectedLight.directSpecular += irradiance * BRDF_GGX_Iridescence( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness );\n\t#else\n\t\treflectedLight.directSpecular += irradiance * BRDF_GGX( directLight.direction, geometry.viewDir, geometry.normal, material.specularColor, material.specularF90, material.roughness );\n\t#endif\n\treflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\nvoid RE_IndirectDiffuse_Physical( const in vec3 irradiance, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) {\n\treflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor );\n}\nvoid RE_IndirectSpecular_Physical( const in vec3 radiance, const in vec3 irradiance, const in vec3 clearcoatRadiance, const in GeometricContext geometry, const in PhysicalMaterial material, inout ReflectedLight reflectedLight) {\n\t#ifdef USE_CLEARCOAT\n\t\tclearcoatSpecular += clearcoatRadiance * EnvironmentBRDF( geometry.clearcoatNormal, geometry.viewDir, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness );\n\t#endif\n\t#ifdef USE_SHEEN\n\t\tsheenSpecular += irradiance * material.sheenColor * IBLSheenBRDF( geometry.normal, geometry.viewDir, material.sheenRoughness );\n\t#endif\n\tvec3 singleScattering = vec3( 0.0 );\n\tvec3 multiScattering = vec3( 0.0 );\n\tvec3 cosineWeightedIrradiance = irradiance * RECIPROCAL_PI;\n\t#ifdef USE_IRIDESCENCE\n\t\tcomputeMultiscatteringIridescence( geometry.normal, geometry.viewDir, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness, singleScattering, multiScattering );\n\t#else\n\t\tcomputeMultiscattering( geometry.normal, geometry.viewDir, material.specularColor, material.specularF90, material.roughness, singleScattering, multiScattering );\n\t#endif\n\tvec3 totalScattering = singleScattering + multiScattering;\n\tvec3 diffuse = material.diffuseColor * ( 1.0 - max( max( totalScattering.r, totalScattering.g ), totalScattering.b ) );\n\treflectedLight.indirectSpecular += radiance * singleScattering;\n\treflectedLight.indirectSpecular += multiScattering * cosineWeightedIrradiance;\n\treflectedLight.indirectDiffuse += diffuse * cosineWeightedIrradiance;\n}\n#define RE_Direct\t\t\t\tRE_Direct_Physical\n#define RE_Direct_RectArea\t\tRE_Direct_RectArea_Physical\n#define RE_IndirectDiffuse\t\tRE_IndirectDiffuse_Physical\n#define RE_IndirectSpecular\t\tRE_IndirectSpecular_Physical\nfloat computeSpecularOcclusion( const in float dotNV, const in float ambientOcclusion, const in float roughness ) {\n\treturn saturate( pow( dotNV + ambientOcclusion, exp2( - 16.0 * roughness - 1.0 ) ) - 1.0 + ambientOcclusion );\n}`,dy=`\nGeometricContext geometry;\ngeometry.position = - vViewPosition;\ngeometry.normal = normal;\ngeometry.viewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( vViewPosition );\n#ifdef USE_CLEARCOAT\n\tgeometry.clearcoatNormal = clearcoatNormal;\n#endif\n#ifdef USE_IRIDESCENCE\n\tfloat dotNVi = saturate( dot( normal, geometry.viewDir ) );\n\tif ( material.iridescenceThickness == 0.0 ) {\n\t\tmaterial.iridescence = 0.0;\n\t} else {\n\t\tmaterial.iridescence = saturate( material.iridescence );\n\t}\n\tif ( material.iridescence > 0.0 ) {\n\t\tmaterial.iridescenceFresnel = evalIridescence( 1.0, material.iridescenceIOR, dotNVi, material.iridescenceThickness, material.specularColor );\n\t\tmaterial.iridescenceF0 = Schlick_to_F0( material.iridescenceFresnel, 1.0, dotNVi );\n\t}\n#endif\nIncidentLight directLight;\n#if ( NUM_POINT_LIGHTS > 0 ) && defined( RE_Direct )\n\tPointLight pointLight;\n\t#if defined( USE_SHADOWMAP ) && NUM_POINT_LIGHT_SHADOWS > 0\n\tPointLightShadow pointLightShadow;\n\t#endif\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) {\n\t\tpointLight = pointLights[ i ];\n\t\tgetPointLightInfo( pointLight, geometry, directLight );\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_POINT_LIGHT_SHADOWS )\n\t\tpointLightShadow = pointLightShadows[ i ];\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getPointShadow( pointShadowMap[ i ], pointLightShadow.shadowMapSize, pointLightShadow.shadowBias, pointLightShadow.shadowRadius, vPointShadowCoord[ i ], pointLightShadow.shadowCameraNear, pointLightShadow.shadowCameraFar ) : 1.0;\n\t\t#endif\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if ( NUM_SPOT_LIGHTS > 0 ) && defined( RE_Direct )\n\tSpotLight spotLight;\n\t#if defined( USE_SHADOWMAP ) && NUM_SPOT_LIGHT_SHADOWS > 0\n\tSpotLightShadow spotLightShadow;\n\t#endif\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) {\n\t\tspotLight = spotLights[ i ];\n\t\tgetSpotLightInfo( spotLight, geometry, directLight );\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS )\n\t\tspotLightShadow = spotLightShadows[ i ];\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getShadow( spotShadowMap[ i ], spotLightShadow.shadowMapSize, spotLightShadow.shadowBias, spotLightShadow.shadowRadius, vSpotShadowCoord[ i ] ) : 1.0;\n\t\t#endif\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if ( NUM_DIR_LIGHTS > 0 ) && defined( RE_Direct )\n\tDirectionalLight directionalLight;\n\t#if defined( USE_SHADOWMAP ) && NUM_DIR_LIGHT_SHADOWS > 0\n\tDirectionalLightShadow directionalLightShadow;\n\t#endif\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) {\n\t\tdirectionalLight = directionalLights[ i ];\n\t\tgetDirectionalLightInfo( directionalLight, geometry, directLight );\n\t\t#if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_DIR_LIGHT_SHADOWS )\n\t\tdirectionalLightShadow = directionalLightShadows[ i ];\n\t\tdirectLight.color *= all( bvec2( directLight.visible, receiveShadow ) ) ? getShadow( directionalShadowMap[ i ], directionalLightShadow.shadowMapSize, directionalLightShadow.shadowBias, directionalLightShadow.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0;\n\t\t#endif\n\t\tRE_Direct( directLight, geometry, material, reflectedLight );\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if ( NUM_RECT_AREA_LIGHTS > 0 ) && defined( RE_Direct_RectArea )\n\tRectAreaLight rectAreaLight;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_RECT_AREA_LIGHTS; i ++ ) {\n\t\trectAreaLight = rectAreaLights[ i ];\n\t\tRE_Direct_RectArea( rectAreaLight, geometry, material, reflectedLight );\n\t}\n\t#pragma unroll_loop_end\n#endif\n#if defined( RE_IndirectDiffuse )\n\tvec3 iblIrradiance = vec3( 0.0 );\n\tvec3 irradiance = getAmbientLightIrradiance( ambientLightColor );\n\tirradiance += getLightProbeIrradiance( lightProbe, geometry.normal );\n\t#if ( NUM_HEMI_LIGHTS > 0 )\n\t\t#pragma unroll_loop_start\n\t\tfor ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) {\n\t\t\tirradiance += getHemisphereLightIrradiance( hemisphereLights[ i ], geometry.normal );\n\t\t}\n\t\t#pragma unroll_loop_end\n\t#endif\n#endif\n#if defined( RE_IndirectSpecular )\n\tvec3 radiance = vec3( 0.0 );\n\tvec3 clearcoatRadiance = vec3( 0.0 );\n#endif`,py=`#if defined( RE_IndirectDiffuse )\n\t#ifdef USE_LIGHTMAP\n\t\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\n\t\tvec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity;\n\t\tirradiance += lightMapIrradiance;\n\t#endif\n\t#if defined( USE_ENVMAP ) && defined( STANDARD ) && defined( ENVMAP_TYPE_CUBE_UV )\n\t\tiblIrradiance += getIBLIrradiance( geometry.normal );\n\t#endif\n#endif\n#if defined( USE_ENVMAP ) && defined( RE_IndirectSpecular )\n\tradiance += getIBLRadiance( geometry.viewDir, geometry.normal, material.roughness );\n\t#ifdef USE_CLEARCOAT\n\t\tclearcoatRadiance += getIBLRadiance( geometry.viewDir, geometry.clearcoatNormal, material.clearcoatRoughness );\n\t#endif\n#endif`,my=`#if defined( RE_IndirectDiffuse )\n\tRE_IndirectDiffuse( irradiance, geometry, material, reflectedLight );\n#endif\n#if defined( RE_IndirectSpecular )\n\tRE_IndirectSpecular( radiance, iblIrradiance, clearcoatRadiance, geometry, material, reflectedLight );\n#endif`,gy=`#if defined( USE_LOGDEPTHBUF ) && defined( USE_LOGDEPTHBUF_EXT )\n\tgl_FragDepthEXT = vIsPerspective == 0.0 ? gl_FragCoord.z : log2( vFragDepth ) * logDepthBufFC * 0.5;\n#endif`,yy=`#if defined( USE_LOGDEPTHBUF ) && defined( USE_LOGDEPTHBUF_EXT )\n\tuniform float logDepthBufFC;\n\tvarying float vFragDepth;\n\tvarying float vIsPerspective;\n#endif`,xy=`#ifdef USE_LOGDEPTHBUF\n\t#ifdef USE_LOGDEPTHBUF_EXT\n\t\tvarying float vFragDepth;\n\t\tvarying float vIsPerspective;\n\t#else\n\t\tuniform float logDepthBufFC;\n\t#endif\n#endif`,vy=`#ifdef USE_LOGDEPTHBUF\n\t#ifdef USE_LOGDEPTHBUF_EXT\n\t\tvFragDepth = 1.0 + gl_Position.w;\n\t\tvIsPerspective = float( isPerspectiveMatrix( projectionMatrix ) );\n\t#else\n\t\tif ( isPerspectiveMatrix( projectionMatrix ) ) {\n\t\t\tgl_Position.z = log2( max( EPSILON, gl_Position.w + 1.0 ) ) * logDepthBufFC - 1.0;\n\t\t\tgl_Position.z *= gl_Position.w;\n\t\t}\n\t#endif\n#endif`,_y=`#ifdef USE_MAP\n\tvec4 sampledDiffuseColor = texture2D( map, vUv );\n\t#ifdef DECODE_VIDEO_TEXTURE\n\t\tsampledDiffuseColor = vec4( mix( pow( sampledDiffuseColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), sampledDiffuseColor.rgb * 0.0773993808, vec3( lessThanEqual( sampledDiffuseColor.rgb, vec3( 0.04045 ) ) ) ), sampledDiffuseColor.w );\n\t#endif\n\tdiffuseColor *= sampledDiffuseColor;\n#endif`,by=`#ifdef USE_MAP\n\tuniform sampler2D map;\n#endif`,wy=`#if defined( USE_MAP ) || defined( USE_ALPHAMAP )\n\tvec2 uv = ( uvTransform * vec3( gl_PointCoord.x, 1.0 - gl_PointCoord.y, 1 ) ).xy;\n#endif\n#ifdef USE_MAP\n\tdiffuseColor *= texture2D( map, uv );\n#endif\n#ifdef USE_ALPHAMAP\n\tdiffuseColor.a *= texture2D( alphaMap, uv ).g;\n#endif`,My=`#if defined( USE_MAP ) || defined( USE_ALPHAMAP )\n\tuniform mat3 uvTransform;\n#endif\n#ifdef USE_MAP\n\tuniform sampler2D map;\n#endif\n#ifdef USE_ALPHAMAP\n\tuniform sampler2D alphaMap;\n#endif`,Sy=`float metalnessFactor = metalness;\n#ifdef USE_METALNESSMAP\n\tvec4 texelMetalness = texture2D( metalnessMap, vUv );\n\tmetalnessFactor *= texelMetalness.b;\n#endif`,Ty=`#ifdef USE_METALNESSMAP\n\tuniform sampler2D metalnessMap;\n#endif`,Ay=`#if defined( USE_MORPHCOLORS ) && defined( MORPHTARGETS_TEXTURE )\n\tvColor *= morphTargetBaseInfluence;\n\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\n\t\t#if defined( USE_COLOR_ALPHA )\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ) * morphTargetInfluences[ i ];\n\t\t#elif defined( USE_COLOR )\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ).rgb * morphTargetInfluences[ i ];\n\t\t#endif\n\t}\n#endif`,Ey=`#ifdef USE_MORPHNORMALS\n\tobjectNormal *= morphTargetBaseInfluence;\n\t#ifdef MORPHTARGETS_TEXTURE\n\t\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) objectNormal += getMorph( gl_VertexID, i, 1 ).xyz * morphTargetInfluences[ i ];\n\t\t}\n\t#else\n\t\tobjectNormal += morphNormal0 * morphTargetInfluences[ 0 ];\n\t\tobjectNormal += morphNormal1 * morphTargetInfluences[ 1 ];\n\t\tobjectNormal += morphNormal2 * morphTargetInfluences[ 2 ];\n\t\tobjectNormal += morphNormal3 * morphTargetInfluences[ 3 ];\n\t#endif\n#endif`,Cy=`#ifdef USE_MORPHTARGETS\n\tuniform float morphTargetBaseInfluence;\n\t#ifdef MORPHTARGETS_TEXTURE\n\t\tuniform float morphTargetInfluences[ MORPHTARGETS_COUNT ];\n\t\tuniform sampler2DArray morphTargetsTexture;\n\t\tuniform ivec2 morphTargetsTextureSize;\n\t\tvec4 getMorph( const in int vertexIndex, const in int morphTargetIndex, const in int offset ) {\n\t\t\tint texelIndex = vertexIndex * MORPHTARGETS_TEXTURE_STRIDE + offset;\n\t\t\tint y = texelIndex / morphTargetsTextureSize.x;\n\t\t\tint x = texelIndex - y * morphTargetsTextureSize.x;\n\t\t\tivec3 morphUV = ivec3( x, y, morphTargetIndex );\n\t\t\treturn texelFetch( morphTargetsTexture, morphUV, 0 );\n\t\t}\n\t#else\n\t\t#ifndef USE_MORPHNORMALS\n\t\t\tuniform float morphTargetInfluences[ 8 ];\n\t\t#else\n\t\t\tuniform float morphTargetInfluences[ 4 ];\n\t\t#endif\n\t#endif\n#endif`,Ly=`#ifdef USE_MORPHTARGETS\n\ttransformed *= morphTargetBaseInfluence;\n\t#ifdef MORPHTARGETS_TEXTURE\n\t\tfor ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) {\n\t\t\tif ( morphTargetInfluences[ i ] != 0.0 ) transformed += getMorph( gl_VertexID, i, 0 ).xyz * morphTargetInfluences[ i ];\n\t\t}\n\t#else\n\t\ttransformed += morphTarget0 * morphTargetInfluences[ 0 ];\n\t\ttransformed += morphTarget1 * morphTargetInfluences[ 1 ];\n\t\ttransformed += morphTarget2 * morphTargetInfluences[ 2 ];\n\t\ttransformed += morphTarget3 * morphTargetInfluences[ 3 ];\n\t\t#ifndef USE_MORPHNORMALS\n\t\t\ttransformed += morphTarget4 * morphTargetInfluences[ 4 ];\n\t\t\ttransformed += morphTarget5 * morphTargetInfluences[ 5 ];\n\t\t\ttransformed += morphTarget6 * morphTargetInfluences[ 6 ];\n\t\t\ttransformed += morphTarget7 * morphTargetInfluences[ 7 ];\n\t\t#endif\n\t#endif\n#endif`,Ry=`float faceDirection = gl_FrontFacing ? 1.0 : - 1.0;\n#ifdef FLAT_SHADED\n\tvec3 fdx = vec3( dFdx( vViewPosition.x ), dFdx( vViewPosition.y ), dFdx( vViewPosition.z ) );\n\tvec3 fdy = vec3( dFdy( vViewPosition.x ), dFdy( vViewPosition.y ), dFdy( vViewPosition.z ) );\n\tvec3 normal = normalize( cross( fdx, fdy ) );\n#else\n\tvec3 normal = normalize( vNormal );\n\t#ifdef DOUBLE_SIDED\n\t\tnormal = normal * faceDirection;\n\t#endif\n\t#ifdef USE_TANGENT\n\t\tvec3 tangent = normalize( vTangent );\n\t\tvec3 bitangent = normalize( vBitangent );\n\t\t#ifdef DOUBLE_SIDED\n\t\t\ttangent = tangent * faceDirection;\n\t\t\tbitangent = bitangent * faceDirection;\n\t\t#endif\n\t\t#if defined( TANGENTSPACE_NORMALMAP ) || defined( USE_CLEARCOAT_NORMALMAP )\n\t\t\tmat3 vTBN = mat3( tangent, bitangent, normal );\n\t\t#endif\n\t#endif\n#endif\nvec3 geometryNormal = normal;`,Iy=`#ifdef OBJECTSPACE_NORMALMAP\n\tnormal = texture2D( normalMap, vUv ).xyz * 2.0 - 1.0;\n\t#ifdef FLIP_SIDED\n\t\tnormal = - normal;\n\t#endif\n\t#ifdef DOUBLE_SIDED\n\t\tnormal = normal * faceDirection;\n\t#endif\n\tnormal = normalize( normalMatrix * normal );\n#elif defined( TANGENTSPACE_NORMALMAP )\n\tvec3 mapN = texture2D( normalMap, vUv ).xyz * 2.0 - 1.0;\n\tmapN.xy *= normalScale;\n\t#ifdef USE_TANGENT\n\t\tnormal = normalize( vTBN * mapN );\n\t#else\n\t\tnormal = perturbNormal2Arb( - vViewPosition, normal, mapN, faceDirection );\n\t#endif\n#elif defined( USE_BUMPMAP )\n\tnormal = perturbNormalArb( - vViewPosition, normal, dHdxy_fwd(), faceDirection );\n#endif`,Py=`#ifndef FLAT_SHADED\n\tvarying vec3 vNormal;\n\t#ifdef USE_TANGENT\n\t\tvarying vec3 vTangent;\n\t\tvarying vec3 vBitangent;\n\t#endif\n#endif`,Dy=`#ifndef FLAT_SHADED\n\tvarying vec3 vNormal;\n\t#ifdef USE_TANGENT\n\t\tvarying vec3 vTangent;\n\t\tvarying vec3 vBitangent;\n\t#endif\n#endif`,Fy=`#ifndef FLAT_SHADED\n\tvNormal = normalize( transformedNormal );\n\t#ifdef USE_TANGENT\n\t\tvTangent = normalize( transformedTangent );\n\t\tvBitangent = normalize( cross( vNormal, vTangent ) * tangent.w );\n\t#endif\n#endif`,Ny=`#ifdef USE_NORMALMAP\n\tuniform sampler2D normalMap;\n\tuniform vec2 normalScale;\n#endif\n#ifdef OBJECTSPACE_NORMALMAP\n\tuniform mat3 normalMatrix;\n#endif\n#if ! defined ( USE_TANGENT ) && ( defined ( TANGENTSPACE_NORMALMAP ) || defined ( USE_CLEARCOAT_NORMALMAP ) )\n\tvec3 perturbNormal2Arb( vec3 eye_pos, vec3 surf_norm, vec3 mapN, float faceDirection ) {\n\t\tvec3 q0 = dFdx( eye_pos.xyz );\n\t\tvec3 q1 = dFdy( eye_pos.xyz );\n\t\tvec2 st0 = dFdx( vUv.st );\n\t\tvec2 st1 = dFdy( vUv.st );\n\t\tvec3 N = surf_norm;\n\t\tvec3 q1perp = cross( q1, N );\n\t\tvec3 q0perp = cross( N, q0 );\n\t\tvec3 T = q1perp * st0.x + q0perp * st1.x;\n\t\tvec3 B = q1perp * st0.y + q0perp * st1.y;\n\t\tfloat det = max( dot( T, T ), dot( B, B ) );\n\t\tfloat scale = ( det == 0.0 ) ? 0.0 : faceDirection * inversesqrt( det );\n\t\treturn normalize( T * ( mapN.x * scale ) + B * ( mapN.y * scale ) + N * mapN.z );\n\t}\n#endif`,ky=`#ifdef USE_CLEARCOAT\n\tvec3 clearcoatNormal = geometryNormal;\n#endif`,Oy=`#ifdef USE_CLEARCOAT_NORMALMAP\n\tvec3 clearcoatMapN = texture2D( clearcoatNormalMap, vUv ).xyz * 2.0 - 1.0;\n\tclearcoatMapN.xy *= clearcoatNormalScale;\n\t#ifdef USE_TANGENT\n\t\tclearcoatNormal = normalize( vTBN * clearcoatMapN );\n\t#else\n\t\tclearcoatNormal = perturbNormal2Arb( - vViewPosition, clearcoatNormal, clearcoatMapN, faceDirection );\n\t#endif\n#endif`,By=`#ifdef USE_CLEARCOATMAP\n\tuniform sampler2D clearcoatMap;\n#endif\n#ifdef USE_CLEARCOAT_ROUGHNESSMAP\n\tuniform sampler2D clearcoatRoughnessMap;\n#endif\n#ifdef USE_CLEARCOAT_NORMALMAP\n\tuniform sampler2D clearcoatNormalMap;\n\tuniform vec2 clearcoatNormalScale;\n#endif`,zy=`#ifdef USE_IRIDESCENCEMAP\n\tuniform sampler2D iridescenceMap;\n#endif\n#ifdef USE_IRIDESCENCE_THICKNESSMAP\n\tuniform sampler2D iridescenceThicknessMap;\n#endif`,Uy=`#ifdef OPAQUE\ndiffuseColor.a = 1.0;\n#endif\n#ifdef USE_TRANSMISSION\ndiffuseColor.a *= transmissionAlpha + 0.1;\n#endif\ngl_FragColor = vec4( outgoingLight, diffuseColor.a );`,Gy=`vec3 packNormalToRGB( const in vec3 normal ) {\n\treturn normalize( normal ) * 0.5 + 0.5;\n}\nvec3 unpackRGBToNormal( const in vec3 rgb ) {\n\treturn 2.0 * rgb.xyz - 1.0;\n}\nconst float PackUpscale = 256. / 255.;const float UnpackDownscale = 255. / 256.;\nconst vec3 PackFactors = vec3( 256. * 256. * 256., 256. * 256., 256. );\nconst vec4 UnpackFactors = UnpackDownscale / vec4( PackFactors, 1. );\nconst float ShiftRight8 = 1. / 256.;\nvec4 packDepthToRGBA( const in float v ) {\n\tvec4 r = vec4( fract( v * PackFactors ), v );\n\tr.yzw -= r.xyz * ShiftRight8;\treturn r * PackUpscale;\n}\nfloat unpackRGBAToDepth( const in vec4 v ) {\n\treturn dot( v, UnpackFactors );\n}\nvec4 pack2HalfToRGBA( vec2 v ) {\n\tvec4 r = vec4( v.x, fract( v.x * 255.0 ), v.y, fract( v.y * 255.0 ) );\n\treturn vec4( r.x - r.y / 255.0, r.y, r.z - r.w / 255.0, r.w );\n}\nvec2 unpackRGBATo2Half( vec4 v ) {\n\treturn vec2( v.x + ( v.y / 255.0 ), v.z + ( v.w / 255.0 ) );\n}\nfloat viewZToOrthographicDepth( const in float viewZ, const in float near, const in float far ) {\n\treturn ( viewZ + near ) / ( near - far );\n}\nfloat orthographicDepthToViewZ( const in float linearClipZ, const in float near, const in float far ) {\n\treturn linearClipZ * ( near - far ) - near;\n}\nfloat viewZToPerspectiveDepth( const in float viewZ, const in float near, const in float far ) {\n\treturn ( ( near + viewZ ) * far ) / ( ( far - near ) * viewZ );\n}\nfloat perspectiveDepthToViewZ( const in float invClipZ, const in float near, const in float far ) {\n\treturn ( near * far ) / ( ( far - near ) * invClipZ - far );\n}`,Vy=`#ifdef PREMULTIPLIED_ALPHA\n\tgl_FragColor.rgb *= gl_FragColor.a;\n#endif`,Hy=`vec4 mvPosition = vec4( transformed, 1.0 );\n#ifdef USE_INSTANCING\n\tmvPosition = instanceMatrix * mvPosition;\n#endif\nmvPosition = modelViewMatrix * mvPosition;\ngl_Position = projectionMatrix * mvPosition;`,Wy=`#ifdef DITHERING\n\tgl_FragColor.rgb = dithering( gl_FragColor.rgb );\n#endif`,qy=`#ifdef DITHERING\n\tvec3 dithering( vec3 color ) {\n\t\tfloat grid_position = rand( gl_FragCoord.xy );\n\t\tvec3 dither_shift_RGB = vec3( 0.25 / 255.0, -0.25 / 255.0, 0.25 / 255.0 );\n\t\tdither_shift_RGB = mix( 2.0 * dither_shift_RGB, -2.0 * dither_shift_RGB, grid_position );\n\t\treturn color + dither_shift_RGB;\n\t}\n#endif`,Xy=`float roughnessFactor = roughness;\n#ifdef USE_ROUGHNESSMAP\n\tvec4 texelRoughness = texture2D( roughnessMap, vUv );\n\troughnessFactor *= texelRoughness.g;\n#endif`,jy=`#ifdef USE_ROUGHNESSMAP\n\tuniform sampler2D roughnessMap;\n#endif`,Yy=`#ifdef USE_SHADOWMAP\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\n\t\tuniform sampler2D directionalShadowMap[ NUM_DIR_LIGHT_SHADOWS ];\n\t\tvarying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ];\n\t\tstruct DirectionalLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t};\n\t\tuniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ];\n\t#endif\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\n\t\tuniform sampler2D spotShadowMap[ NUM_SPOT_LIGHT_SHADOWS ];\n\t\tvarying vec4 vSpotShadowCoord[ NUM_SPOT_LIGHT_SHADOWS ];\n\t\tstruct SpotLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t};\n\t\tuniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ];\n\t#endif\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\n\t\tuniform sampler2D pointShadowMap[ NUM_POINT_LIGHT_SHADOWS ];\n\t\tvarying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ];\n\t\tstruct PointLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t\tfloat shadowCameraNear;\n\t\t\tfloat shadowCameraFar;\n\t\t};\n\t\tuniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ];\n\t#endif\n\tfloat texture2DCompare( sampler2D depths, vec2 uv, float compare ) {\n\t\treturn step( compare, unpackRGBAToDepth( texture2D( depths, uv ) ) );\n\t}\n\tvec2 texture2DDistribution( sampler2D shadow, vec2 uv ) {\n\t\treturn unpackRGBATo2Half( texture2D( shadow, uv ) );\n\t}\n\tfloat VSMShadow (sampler2D shadow, vec2 uv, float compare ){\n\t\tfloat occlusion = 1.0;\n\t\tvec2 distribution = texture2DDistribution( shadow, uv );\n\t\tfloat hard_shadow = step( compare , distribution.x );\n\t\tif (hard_shadow != 1.0 ) {\n\t\t\tfloat distance = compare - distribution.x ;\n\t\t\tfloat variance = max( 0.00000, distribution.y * distribution.y );\n\t\t\tfloat softness_probability = variance / (variance + distance * distance );\t\t\tsoftness_probability = clamp( ( softness_probability - 0.3 ) / ( 0.95 - 0.3 ), 0.0, 1.0 );\t\t\tocclusion = clamp( max( hard_shadow, softness_probability ), 0.0, 1.0 );\n\t\t}\n\t\treturn occlusion;\n\t}\n\tfloat getShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowBias, float shadowRadius, vec4 shadowCoord ) {\n\t\tfloat shadow = 1.0;\n\t\tshadowCoord.xyz /= shadowCoord.w;\n\t\tshadowCoord.z += shadowBias;\n\t\tbvec4 inFrustumVec = bvec4 ( shadowCoord.x >= 0.0, shadowCoord.x <= 1.0, shadowCoord.y >= 0.0, shadowCoord.y <= 1.0 );\n\t\tbool inFrustum = all( inFrustumVec );\n\t\tbvec2 frustumTestVec = bvec2( inFrustum, shadowCoord.z <= 1.0 );\n\t\tbool frustumTest = all( frustumTestVec );\n\t\tif ( frustumTest ) {\n\t\t#if defined( SHADOWMAP_TYPE_PCF )\n\t\t\tvec2 texelSize = vec2( 1.0 ) / shadowMapSize;\n\t\t\tfloat dx0 = - texelSize.x * shadowRadius;\n\t\t\tfloat dy0 = - texelSize.y * shadowRadius;\n\t\t\tfloat dx1 = + texelSize.x * shadowRadius;\n\t\t\tfloat dy1 = + texelSize.y * shadowRadius;\n\t\t\tfloat dx2 = dx0 / 2.0;\n\t\t\tfloat dy2 = dy0 / 2.0;\n\t\t\tfloat dx3 = dx1 / 2.0;\n\t\t\tfloat dy3 = dy1 / 2.0;\n\t\t\tshadow = (\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy2 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy2 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy2 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy3 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy3 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy3 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy1 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy1 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy1 ), shadowCoord.z )\n\t\t\t) * ( 1.0 / 17.0 );\n\t\t#elif defined( SHADOWMAP_TYPE_PCF_SOFT )\n\t\t\tvec2 texelSize = vec2( 1.0 ) / shadowMapSize;\n\t\t\tfloat dx = texelSize.x;\n\t\t\tfloat dy = texelSize.y;\n\t\t\tvec2 uv = shadowCoord.xy;\n\t\t\tvec2 f = fract( uv * shadowMapSize + 0.5 );\n\t\t\tuv -= f * texelSize;\n\t\t\tshadow = (\n\t\t\t\ttexture2DCompare( shadowMap, uv, shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, uv + vec2( dx, 0.0 ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, uv + vec2( 0.0, dy ), shadowCoord.z ) +\n\t\t\t\ttexture2DCompare( shadowMap, uv + texelSize, shadowCoord.z ) +\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( -dx, 0.0 ), shadowCoord.z ), \n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 0.0 ), shadowCoord.z ),\n\t\t\t\t\t f.x ) +\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( -dx, dy ), shadowCoord.z ), \n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, dy ), shadowCoord.z ),\n\t\t\t\t\t f.x ) +\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( 0.0, -dy ), shadowCoord.z ), \n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( 0.0, 2.0 * dy ), shadowCoord.z ),\n\t\t\t\t\t f.y ) +\n\t\t\t\tmix( texture2DCompare( shadowMap, uv + vec2( dx, -dy ), shadowCoord.z ), \n\t\t\t\t\t texture2DCompare( shadowMap, uv + vec2( dx, 2.0 * dy ), shadowCoord.z ),\n\t\t\t\t\t f.y ) +\n\t\t\t\tmix( mix( texture2DCompare( shadowMap, uv + vec2( -dx, -dy ), shadowCoord.z ), \n\t\t\t\t\t\t  texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, -dy ), shadowCoord.z ),\n\t\t\t\t\t\t  f.x ),\n\t\t\t\t\t mix( texture2DCompare( shadowMap, uv + vec2( -dx, 2.0 * dy ), shadowCoord.z ), \n\t\t\t\t\t\t  texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 2.0 * dy ), shadowCoord.z ),\n\t\t\t\t\t\t  f.x ),\n\t\t\t\t\t f.y )\n\t\t\t) * ( 1.0 / 9.0 );\n\t\t#elif defined( SHADOWMAP_TYPE_VSM )\n\t\t\tshadow = VSMShadow( shadowMap, shadowCoord.xy, shadowCoord.z );\n\t\t#else\n\t\t\tshadow = texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z );\n\t\t#endif\n\t\t}\n\t\treturn shadow;\n\t}\n\tvec2 cubeToUV( vec3 v, float texelSizeY ) {\n\t\tvec3 absV = abs( v );\n\t\tfloat scaleToCube = 1.0 / max( absV.x, max( absV.y, absV.z ) );\n\t\tabsV *= scaleToCube;\n\t\tv *= scaleToCube * ( 1.0 - 2.0 * texelSizeY );\n\t\tvec2 planar = v.xy;\n\t\tfloat almostATexel = 1.5 * texelSizeY;\n\t\tfloat almostOne = 1.0 - almostATexel;\n\t\tif ( absV.z >= almostOne ) {\n\t\t\tif ( v.z > 0.0 )\n\t\t\t\tplanar.x = 4.0 - v.x;\n\t\t} else if ( absV.x >= almostOne ) {\n\t\t\tfloat signX = sign( v.x );\n\t\t\tplanar.x = v.z * signX + 2.0 * signX;\n\t\t} else if ( absV.y >= almostOne ) {\n\t\t\tfloat signY = sign( v.y );\n\t\t\tplanar.x = v.x + 2.0 * signY + 2.0;\n\t\t\tplanar.y = v.z * signY - 2.0;\n\t\t}\n\t\treturn vec2( 0.125, 0.25 ) * planar + vec2( 0.375, 0.75 );\n\t}\n\tfloat getPointShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowBias, float shadowRadius, vec4 shadowCoord, float shadowCameraNear, float shadowCameraFar ) {\n\t\tvec2 texelSize = vec2( 1.0 ) / ( shadowMapSize * vec2( 4.0, 2.0 ) );\n\t\tvec3 lightToPosition = shadowCoord.xyz;\n\t\tfloat dp = ( length( lightToPosition ) - shadowCameraNear ) / ( shadowCameraFar - shadowCameraNear );\t\tdp += shadowBias;\n\t\tvec3 bd3D = normalize( lightToPosition );\n\t\t#if defined( SHADOWMAP_TYPE_PCF ) || defined( SHADOWMAP_TYPE_PCF_SOFT ) || defined( SHADOWMAP_TYPE_VSM )\n\t\t\tvec2 offset = vec2( - 1, 1 ) * shadowRadius * texelSize.y;\n\t\t\treturn (\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyy, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyy, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyx, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyx, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxy, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxy, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxx, texelSize.y ), dp ) +\n\t\t\t\ttexture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxx, texelSize.y ), dp )\n\t\t\t) * ( 1.0 / 9.0 );\n\t\t#else\n\t\t\treturn texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp );\n\t\t#endif\n\t}\n#endif`,Zy=`#ifdef USE_SHADOWMAP\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\n\t\tuniform mat4 directionalShadowMatrix[ NUM_DIR_LIGHT_SHADOWS ];\n\t\tvarying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ];\n\t\tstruct DirectionalLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t};\n\t\tuniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ];\n\t#endif\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\n\t\tuniform mat4 spotShadowMatrix[ NUM_SPOT_LIGHT_SHADOWS ];\n\t\tvarying vec4 vSpotShadowCoord[ NUM_SPOT_LIGHT_SHADOWS ];\n\t\tstruct SpotLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t};\n\t\tuniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ];\n\t#endif\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\n\t\tuniform mat4 pointShadowMatrix[ NUM_POINT_LIGHT_SHADOWS ];\n\t\tvarying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ];\n\t\tstruct PointLightShadow {\n\t\t\tfloat shadowBias;\n\t\t\tfloat shadowNormalBias;\n\t\t\tfloat shadowRadius;\n\t\t\tvec2 shadowMapSize;\n\t\t\tfloat shadowCameraNear;\n\t\t\tfloat shadowCameraFar;\n\t\t};\n\t\tuniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ];\n\t#endif\n#endif`,Ky=`#ifdef USE_SHADOWMAP\n\t#if NUM_DIR_LIGHT_SHADOWS > 0 || NUM_SPOT_LIGHT_SHADOWS > 0 || NUM_POINT_LIGHT_SHADOWS > 0\n\t\tvec3 shadowWorldNormal = inverseTransformDirection( transformedNormal, viewMatrix );\n\t\tvec4 shadowWorldPosition;\n\t#endif\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) {\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * directionalLightShadows[ i ].shadowNormalBias, 0 );\n\t\tvDirectionalShadowCoord[ i ] = directionalShadowMatrix[ i ] * shadowWorldPosition;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) {\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * spotLightShadows[ i ].shadowNormalBias, 0 );\n\t\tvSpotShadowCoord[ i ] = spotShadowMatrix[ i ] * shadowWorldPosition;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) {\n\t\tshadowWorldPosition = worldPosition + vec4( shadowWorldNormal * pointLightShadows[ i ].shadowNormalBias, 0 );\n\t\tvPointShadowCoord[ i ] = pointShadowMatrix[ i ] * shadowWorldPosition;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n#endif`,Jy=`float getShadowMask() {\n\tfloat shadow = 1.0;\n\t#ifdef USE_SHADOWMAP\n\t#if NUM_DIR_LIGHT_SHADOWS > 0\n\tDirectionalLightShadow directionalLight;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) {\n\t\tdirectionalLight = directionalLightShadows[ i ];\n\t\tshadow *= receiveShadow ? getShadow( directionalShadowMap[ i ], directionalLight.shadowMapSize, directionalLight.shadowBias, directionalLight.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#if NUM_SPOT_LIGHT_SHADOWS > 0\n\tSpotLightShadow spotLight;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) {\n\t\tspotLight = spotLightShadows[ i ];\n\t\tshadow *= receiveShadow ? getShadow( spotShadowMap[ i ], spotLight.shadowMapSize, spotLight.shadowBias, spotLight.shadowRadius, vSpotShadowCoord[ i ] ) : 1.0;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#if NUM_POINT_LIGHT_SHADOWS > 0\n\tPointLightShadow pointLight;\n\t#pragma unroll_loop_start\n\tfor ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) {\n\t\tpointLight = pointLightShadows[ i ];\n\t\tshadow *= receiveShadow ? getPointShadow( pointShadowMap[ i ], pointLight.shadowMapSize, pointLight.shadowBias, pointLight.shadowRadius, vPointShadowCoord[ i ], pointLight.shadowCameraNear, pointLight.shadowCameraFar ) : 1.0;\n\t}\n\t#pragma unroll_loop_end\n\t#endif\n\t#endif\n\treturn shadow;\n}`,$y=`#ifdef USE_SKINNING\n\tmat4 boneMatX = getBoneMatrix( skinIndex.x );\n\tmat4 boneMatY = getBoneMatrix( skinIndex.y );\n\tmat4 boneMatZ = getBoneMatrix( skinIndex.z );\n\tmat4 boneMatW = getBoneMatrix( skinIndex.w );\n#endif`,Qy=`#ifdef USE_SKINNING\n\tuniform mat4 bindMatrix;\n\tuniform mat4 bindMatrixInverse;\n\tuniform highp sampler2D boneTexture;\n\tuniform int boneTextureSize;\n\tmat4 getBoneMatrix( const in float i ) {\n\t\tfloat j = i * 4.0;\n\t\tfloat x = mod( j, float( boneTextureSize ) );\n\t\tfloat y = floor( j / float( boneTextureSize ) );\n\t\tfloat dx = 1.0 / float( boneTextureSize );\n\t\tfloat dy = 1.0 / float( boneTextureSize );\n\t\ty = dy * ( y + 0.5 );\n\t\tvec4 v1 = texture2D( boneTexture, vec2( dx * ( x + 0.5 ), y ) );\n\t\tvec4 v2 = texture2D( boneTexture, vec2( dx * ( x + 1.5 ), y ) );\n\t\tvec4 v3 = texture2D( boneTexture, vec2( dx * ( x + 2.5 ), y ) );\n\t\tvec4 v4 = texture2D( boneTexture, vec2( dx * ( x + 3.5 ), y ) );\n\t\tmat4 bone = mat4( v1, v2, v3, v4 );\n\t\treturn bone;\n\t}\n#endif`,ex=`#ifdef USE_SKINNING\n\tvec4 skinVertex = bindMatrix * vec4( transformed, 1.0 );\n\tvec4 skinned = vec4( 0.0 );\n\tskinned += boneMatX * skinVertex * skinWeight.x;\n\tskinned += boneMatY * skinVertex * skinWeight.y;\n\tskinned += boneMatZ * skinVertex * skinWeight.z;\n\tskinned += boneMatW * skinVertex * skinWeight.w;\n\ttransformed = ( bindMatrixInverse * skinned ).xyz;\n#endif`,tx=`#ifdef USE_SKINNING\n\tmat4 skinMatrix = mat4( 0.0 );\n\tskinMatrix += skinWeight.x * boneMatX;\n\tskinMatrix += skinWeight.y * boneMatY;\n\tskinMatrix += skinWeight.z * boneMatZ;\n\tskinMatrix += skinWeight.w * boneMatW;\n\tskinMatrix = bindMatrixInverse * skinMatrix * bindMatrix;\n\tobjectNormal = vec4( skinMatrix * vec4( objectNormal, 0.0 ) ).xyz;\n\t#ifdef USE_TANGENT\n\t\tobjectTangent = vec4( skinMatrix * vec4( objectTangent, 0.0 ) ).xyz;\n\t#endif\n#endif`,nx=`float specularStrength;\n#ifdef USE_SPECULARMAP\n\tvec4 texelSpecular = texture2D( specularMap, vUv );\n\tspecularStrength = texelSpecular.r;\n#else\n\tspecularStrength = 1.0;\n#endif`,ix=`#ifdef USE_SPECULARMAP\n\tuniform sampler2D specularMap;\n#endif`,sx=`#if defined( TONE_MAPPING )\n\tgl_FragColor.rgb = toneMapping( gl_FragColor.rgb );\n#endif`,rx=`#ifndef saturate\n#define saturate( a ) clamp( a, 0.0, 1.0 )\n#endif\nuniform float toneMappingExposure;\nvec3 LinearToneMapping( vec3 color ) {\n\treturn toneMappingExposure * color;\n}\nvec3 ReinhardToneMapping( vec3 color ) {\n\tcolor *= toneMappingExposure;\n\treturn saturate( color / ( vec3( 1.0 ) + color ) );\n}\nvec3 OptimizedCineonToneMapping( vec3 color ) {\n\tcolor *= toneMappingExposure;\n\tcolor = max( vec3( 0.0 ), color - 0.004 );\n\treturn pow( ( color * ( 6.2 * color + 0.5 ) ) / ( color * ( 6.2 * color + 1.7 ) + 0.06 ), vec3( 2.2 ) );\n}\nvec3 RRTAndODTFit( vec3 v ) {\n\tvec3 a = v * ( v + 0.0245786 ) - 0.000090537;\n\tvec3 b = v * ( 0.983729 * v + 0.4329510 ) + 0.238081;\n\treturn a / b;\n}\nvec3 ACESFilmicToneMapping( vec3 color ) {\n\tconst mat3 ACESInputMat = mat3(\n\t\tvec3( 0.59719, 0.07600, 0.02840 ),\t\tvec3( 0.35458, 0.90834, 0.13383 ),\n\t\tvec3( 0.04823, 0.01566, 0.83777 )\n\t);\n\tconst mat3 ACESOutputMat = mat3(\n\t\tvec3(  1.60475, -0.10208, -0.00327 ),\t\tvec3( -0.53108,  1.10813, -0.07276 ),\n\t\tvec3( -0.07367, -0.00605,  1.07602 )\n\t);\n\tcolor *= toneMappingExposure / 0.6;\n\tcolor = ACESInputMat * color;\n\tcolor = RRTAndODTFit( color );\n\tcolor = ACESOutputMat * color;\n\treturn saturate( color );\n}\nvec3 CustomToneMapping( vec3 color ) { return color; }`,ox=`#ifdef USE_TRANSMISSION\n\tfloat transmissionAlpha = 1.0;\n\tfloat transmissionFactor = transmission;\n\tfloat thicknessFactor = thickness;\n\t#ifdef USE_TRANSMISSIONMAP\n\t\ttransmissionFactor *= texture2D( transmissionMap, vUv ).r;\n\t#endif\n\t#ifdef USE_THICKNESSMAP\n\t\tthicknessFactor *= texture2D( thicknessMap, vUv ).g;\n\t#endif\n\tvec3 pos = vWorldPosition;\n\tvec3 v = normalize( cameraPosition - pos );\n\tvec3 n = inverseTransformDirection( normal, viewMatrix );\n\tvec4 transmission = getIBLVolumeRefraction(\n\t\tn, v, roughnessFactor, material.diffuseColor, material.specularColor, material.specularF90,\n\t\tpos, modelMatrix, viewMatrix, projectionMatrix, ior, thicknessFactor,\n\t\tattenuationColor, attenuationDistance );\n\ttotalDiffuse = mix( totalDiffuse, transmission.rgb, transmissionFactor );\n\ttransmissionAlpha = mix( transmissionAlpha, transmission.a, transmissionFactor );\n#endif`,ax=`#ifdef USE_TRANSMISSION\n\tuniform float transmission;\n\tuniform float thickness;\n\tuniform float attenuationDistance;\n\tuniform vec3 attenuationColor;\n\t#ifdef USE_TRANSMISSIONMAP\n\t\tuniform sampler2D transmissionMap;\n\t#endif\n\t#ifdef USE_THICKNESSMAP\n\t\tuniform sampler2D thicknessMap;\n\t#endif\n\tuniform vec2 transmissionSamplerSize;\n\tuniform sampler2D transmissionSamplerMap;\n\tuniform mat4 modelMatrix;\n\tuniform mat4 projectionMatrix;\n\tvarying vec3 vWorldPosition;\n\tvec3 getVolumeTransmissionRay( const in vec3 n, const in vec3 v, const in float thickness, const in float ior, const in mat4 modelMatrix ) {\n\t\tvec3 refractionVector = refract( - v, normalize( n ), 1.0 / ior );\n\t\tvec3 modelScale;\n\t\tmodelScale.x = length( vec3( modelMatrix[ 0 ].xyz ) );\n\t\tmodelScale.y = length( vec3( modelMatrix[ 1 ].xyz ) );\n\t\tmodelScale.z = length( vec3( modelMatrix[ 2 ].xyz ) );\n\t\treturn normalize( refractionVector ) * thickness * modelScale;\n\t}\n\tfloat applyIorToRoughness( const in float roughness, const in float ior ) {\n\t\treturn roughness * clamp( ior * 2.0 - 2.0, 0.0, 1.0 );\n\t}\n\tvec4 getTransmissionSample( const in vec2 fragCoord, const in float roughness, const in float ior ) {\n\t\tfloat framebufferLod = log2( transmissionSamplerSize.x ) * applyIorToRoughness( roughness, ior );\n\t\t#ifdef texture2DLodEXT\n\t\t\treturn texture2DLodEXT( transmissionSamplerMap, fragCoord.xy, framebufferLod );\n\t\t#else\n\t\t\treturn texture2D( transmissionSamplerMap, fragCoord.xy, framebufferLod );\n\t\t#endif\n\t}\n\tvec3 applyVolumeAttenuation( const in vec3 radiance, const in float transmissionDistance, const in vec3 attenuationColor, const in float attenuationDistance ) {\n\t\tif ( attenuationDistance == 0.0 ) {\n\t\t\treturn radiance;\n\t\t} else {\n\t\t\tvec3 attenuationCoefficient = -log( attenuationColor ) / attenuationDistance;\n\t\t\tvec3 transmittance = exp( - attenuationCoefficient * transmissionDistance );\t\t\treturn transmittance * radiance;\n\t\t}\n\t}\n\tvec4 getIBLVolumeRefraction( const in vec3 n, const in vec3 v, const in float roughness, const in vec3 diffuseColor,\n\t\tconst in vec3 specularColor, const in float specularF90, const in vec3 position, const in mat4 modelMatrix,\n\t\tconst in mat4 viewMatrix, const in mat4 projMatrix, const in float ior, const in float thickness,\n\t\tconst in vec3 attenuationColor, const in float attenuationDistance ) {\n\t\tvec3 transmissionRay = getVolumeTransmissionRay( n, v, thickness, ior, modelMatrix );\n\t\tvec3 refractedRayExit = position + transmissionRay;\n\t\tvec4 ndcPos = projMatrix * viewMatrix * vec4( refractedRayExit, 1.0 );\n\t\tvec2 refractionCoords = ndcPos.xy / ndcPos.w;\n\t\trefractionCoords += 1.0;\n\t\trefractionCoords /= 2.0;\n\t\tvec4 transmittedLight = getTransmissionSample( refractionCoords, roughness, ior );\n\t\tvec3 attenuatedColor = applyVolumeAttenuation( transmittedLight.rgb, length( transmissionRay ), attenuationColor, attenuationDistance );\n\t\tvec3 F = EnvironmentBRDF( n, v, specularColor, specularF90, roughness );\n\t\treturn vec4( ( 1.0 - F ) * attenuatedColor * diffuseColor, transmittedLight.a );\n\t}\n#endif`,lx=`#if ( defined( USE_UV ) && ! defined( UVS_VERTEX_ONLY ) )\n\tvarying vec2 vUv;\n#endif`,cx=`#ifdef USE_UV\n\t#ifdef UVS_VERTEX_ONLY\n\t\tvec2 vUv;\n\t#else\n\t\tvarying vec2 vUv;\n\t#endif\n\tuniform mat3 uvTransform;\n#endif`,ux=`#ifdef USE_UV\n\tvUv = ( uvTransform * vec3( uv, 1 ) ).xy;\n#endif`,hx=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tvarying vec2 vUv2;\n#endif`,fx=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tattribute vec2 uv2;\n\tvarying vec2 vUv2;\n\tuniform mat3 uv2Transform;\n#endif`,dx=`#if defined( USE_LIGHTMAP ) || defined( USE_AOMAP )\n\tvUv2 = ( uv2Transform * vec3( uv2, 1 ) ).xy;\n#endif`,px=`#if defined( USE_ENVMAP ) || defined( DISTANCE ) || defined ( USE_SHADOWMAP ) || defined ( USE_TRANSMISSION )\n\tvec4 worldPosition = vec4( transformed, 1.0 );\n\t#ifdef USE_INSTANCING\n\t\tworldPosition = instanceMatrix * worldPosition;\n\t#endif\n\tworldPosition = modelMatrix * worldPosition;\n#endif`;const st={alphamap_fragment:x0,alphamap_pars_fragment:v0,alphatest_fragment:_0,alphatest_pars_fragment:b0,aomap_fragment:w0,aomap_pars_fragment:M0,begin_vertex:S0,beginnormal_vertex:T0,bsdfs:A0,iridescence_fragment:E0,bumpmap_pars_fragment:C0,clipping_planes_fragment:L0,clipping_planes_pars_fragment:R0,clipping_planes_pars_vertex:I0,clipping_planes_vertex:P0,color_fragment:D0,color_pars_fragment:F0,color_pars_vertex:N0,color_vertex:k0,common:O0,cube_uv_reflection_fragment:B0,defaultnormal_vertex:z0,displacementmap_pars_vertex:U0,displacementmap_vertex:G0,emissivemap_fragment:V0,emissivemap_pars_fragment:H0,encodings_fragment:W0,encodings_pars_fragment:q0,envmap_fragment:X0,envmap_common_pars_fragment:j0,envmap_pars_fragment:Y0,envmap_pars_vertex:Z0,envmap_physical_pars_fragment:oy,envmap_vertex:K0,fog_vertex:J0,fog_pars_vertex:$0,fog_fragment:Q0,fog_pars_fragment:ey,gradientmap_pars_fragment:ty,lightmap_fragment:ny,lightmap_pars_fragment:iy,lights_lambert_vertex:sy,lights_pars_begin:ry,lights_toon_fragment:ay,lights_toon_pars_fragment:ly,lights_phong_fragment:cy,lights_phong_pars_fragment:uy,lights_physical_fragment:hy,lights_physical_pars_fragment:fy,lights_fragment_begin:dy,lights_fragment_maps:py,lights_fragment_end:my,logdepthbuf_fragment:gy,logdepthbuf_pars_fragment:yy,logdepthbuf_pars_vertex:xy,logdepthbuf_vertex:vy,map_fragment:_y,map_pars_fragment:by,map_particle_fragment:wy,map_particle_pars_fragment:My,metalnessmap_fragment:Sy,metalnessmap_pars_fragment:Ty,morphcolor_vertex:Ay,morphnormal_vertex:Ey,morphtarget_pars_vertex:Cy,morphtarget_vertex:Ly,normal_fragment_begin:Ry,normal_fragment_maps:Iy,normal_pars_fragment:Py,normal_pars_vertex:Dy,normal_vertex:Fy,normalmap_pars_fragment:Ny,clearcoat_normal_fragment_begin:ky,clearcoat_normal_fragment_maps:Oy,clearcoat_pars_fragment:By,iridescence_pars_fragment:zy,output_fragment:Uy,packing:Gy,premultiplied_alpha_fragment:Vy,project_vertex:Hy,dithering_fragment:Wy,dithering_pars_fragment:qy,roughnessmap_fragment:Xy,roughnessmap_pars_fragment:jy,shadowmap_pars_fragment:Yy,shadowmap_pars_vertex:Zy,shadowmap_vertex:Ky,shadowmask_pars_fragment:Jy,skinbase_vertex:$y,skinning_pars_vertex:Qy,skinning_vertex:ex,skinnormal_vertex:tx,specularmap_fragment:nx,specularmap_pars_fragment:ix,tonemapping_fragment:sx,tonemapping_pars_fragment:rx,transmission_fragment:ox,transmission_pars_fragment:ax,uv_pars_fragment:lx,uv_pars_vertex:cx,uv_vertex:ux,uv2_pars_fragment:hx,uv2_pars_vertex:fx,uv2_vertex:dx,worldpos_vertex:px,background_vert:`varying vec2 vUv;\nuniform mat3 uvTransform;\nvoid main() {\n\tvUv = ( uvTransform * vec3( uv, 1 ) ).xy;\n\tgl_Position = vec4( position.xy, 1.0, 1.0 );\n}`,background_frag:`uniform sampler2D t2D;\nvarying vec2 vUv;\nvoid main() {\n\tgl_FragColor = texture2D( t2D, vUv );\n\t#ifdef DECODE_VIDEO_TEXTURE\n\t\tgl_FragColor = vec4( mix( pow( gl_FragColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), gl_FragColor.rgb * 0.0773993808, vec3( lessThanEqual( gl_FragColor.rgb, vec3( 0.04045 ) ) ) ), gl_FragColor.w );\n\t#endif\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n}`,cube_vert:`varying vec3 vWorldDirection;\n#include <common>\nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include <begin_vertex>\n\t#include <project_vertex>\n\tgl_Position.z = gl_Position.w;\n}`,cube_frag:`#include <envmap_common_pars_fragment>\nuniform float opacity;\nvarying vec3 vWorldDirection;\n#include <cube_uv_reflection_fragment>\nvoid main() {\n\tvec3 vReflect = vWorldDirection;\n\t#include <envmap_fragment>\n\tgl_FragColor = envColor;\n\tgl_FragColor.a *= opacity;\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n}`,depth_vert:`#include <common>\n#include <uv_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvarying vec2 vHighPrecisionZW;\nvoid main() {\n\t#include <uv_vertex>\n\t#include <skinbase_vertex>\n\t#ifdef USE_DISPLACEMENTMAP\n\t\t#include <beginnormal_vertex>\n\t\t#include <morphnormal_vertex>\n\t\t#include <skinnormal_vertex>\n\t#endif\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\tvHighPrecisionZW = gl_Position.zw;\n}`,depth_frag:`#if DEPTH_PACKING == 3200\n\tuniform float opacity;\n#endif\n#include <common>\n#include <packing>\n#include <uv_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvarying vec2 vHighPrecisionZW;\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( 1.0 );\n\t#if DEPTH_PACKING == 3200\n\t\tdiffuseColor.a = opacity;\n\t#endif\n\t#include <map_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <logdepthbuf_fragment>\n\tfloat fragCoordZ = 0.5 * vHighPrecisionZW[0] / vHighPrecisionZW[1] + 0.5;\n\t#if DEPTH_PACKING == 3200\n\t\tgl_FragColor = vec4( vec3( 1.0 - fragCoordZ ), opacity );\n\t#elif DEPTH_PACKING == 3201\n\t\tgl_FragColor = packDepthToRGBA( fragCoordZ );\n\t#endif\n}`,distanceRGBA_vert:`#define DISTANCE\nvarying vec3 vWorldPosition;\n#include <common>\n#include <uv_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <skinbase_vertex>\n\t#ifdef USE_DISPLACEMENTMAP\n\t\t#include <beginnormal_vertex>\n\t\t#include <morphnormal_vertex>\n\t\t#include <skinnormal_vertex>\n\t#endif\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <worldpos_vertex>\n\t#include <clipping_planes_vertex>\n\tvWorldPosition = worldPosition.xyz;\n}`,distanceRGBA_frag:`#define DISTANCE\nuniform vec3 referencePosition;\nuniform float nearDistance;\nuniform float farDistance;\nvarying vec3 vWorldPosition;\n#include <common>\n#include <packing>\n#include <uv_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main () {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( 1.0 );\n\t#include <map_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\tfloat dist = length( vWorldPosition - referencePosition );\n\tdist = ( dist - nearDistance ) / ( farDistance - nearDistance );\n\tdist = saturate( dist );\n\tgl_FragColor = packDepthToRGBA( dist );\n}`,equirect_vert:`varying vec3 vWorldDirection;\n#include <common>\nvoid main() {\n\tvWorldDirection = transformDirection( position, modelMatrix );\n\t#include <begin_vertex>\n\t#include <project_vertex>\n}`,equirect_frag:`uniform sampler2D tEquirect;\nvarying vec3 vWorldDirection;\n#include <common>\nvoid main() {\n\tvec3 direction = normalize( vWorldDirection );\n\tvec2 sampleUV = equirectUv( direction );\n\tgl_FragColor = texture2D( tEquirect, sampleUV );\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n}`,linedashed_vert:`uniform float scale;\nattribute float lineDistance;\nvarying float vLineDistance;\n#include <common>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\tvLineDistance = scale * lineDistance;\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <fog_vertex>\n}`,linedashed_frag:`uniform vec3 diffuse;\nuniform float opacity;\nuniform float dashSize;\nuniform float totalSize;\nvarying float vLineDistance;\n#include <common>\n#include <color_pars_fragment>\n#include <fog_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tif ( mod( vLineDistance, totalSize ) > dashSize ) {\n\t\tdiscard;\n\t}\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <color_fragment>\n\toutgoingLight = diffuseColor.rgb;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n}`,meshbasic_vert:`#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <envmap_pars_vertex>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#if defined ( USE_ENVMAP ) || defined ( USE_SKINNING )\n\t\t#include <beginnormal_vertex>\n\t\t#include <morphnormal_vertex>\n\t\t#include <skinbase_vertex>\n\t\t#include <skinnormal_vertex>\n\t\t#include <defaultnormal_vertex>\n\t#endif\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <worldpos_vertex>\n\t#include <envmap_vertex>\n\t#include <fog_vertex>\n}`,meshbasic_frag:`uniform vec3 diffuse;\nuniform float opacity;\n#ifndef FLAT_SHADED\n\tvarying vec3 vNormal;\n#endif\n#include <common>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <envmap_common_pars_fragment>\n#include <envmap_pars_fragment>\n#include <cube_uv_reflection_fragment>\n#include <fog_pars_fragment>\n#include <specularmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <specularmap_fragment>\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\t#ifdef USE_LIGHTMAP\n\t\tvec4 lightMapTexel = texture2D( lightMap, vUv2 );\n\t\treflectedLight.indirectDiffuse += lightMapTexel.rgb * lightMapIntensity * RECIPROCAL_PI;\n\t#else\n\t\treflectedLight.indirectDiffuse += vec3( 1.0 );\n\t#endif\n\t#include <aomap_fragment>\n\treflectedLight.indirectDiffuse *= diffuseColor.rgb;\n\tvec3 outgoingLight = reflectedLight.indirectDiffuse;\n\t#include <envmap_fragment>\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,meshlambert_vert:`#define LAMBERT\nvarying vec3 vLightFront;\nvarying vec3 vIndirectFront;\n#ifdef DOUBLE_SIDED\n\tvarying vec3 vLightBack;\n\tvarying vec3 vIndirectBack;\n#endif\n#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <envmap_pars_vertex>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <worldpos_vertex>\n\t#include <envmap_vertex>\n\t#include <lights_lambert_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n}`,meshlambert_frag:`uniform vec3 diffuse;\nuniform vec3 emissive;\nuniform float opacity;\nvarying vec3 vLightFront;\nvarying vec3 vIndirectFront;\n#ifdef DOUBLE_SIDED\n\tvarying vec3 vLightBack;\n\tvarying vec3 vIndirectBack;\n#endif\n#include <common>\n#include <packing>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <emissivemap_pars_fragment>\n#include <envmap_common_pars_fragment>\n#include <envmap_pars_fragment>\n#include <cube_uv_reflection_fragment>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <fog_pars_fragment>\n#include <shadowmap_pars_fragment>\n#include <shadowmask_pars_fragment>\n#include <specularmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\tvec3 totalEmissiveRadiance = emissive;\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <specularmap_fragment>\n\t#include <emissivemap_fragment>\n\t#ifdef DOUBLE_SIDED\n\t\treflectedLight.indirectDiffuse += ( gl_FrontFacing ) ? vIndirectFront : vIndirectBack;\n\t#else\n\t\treflectedLight.indirectDiffuse += vIndirectFront;\n\t#endif\n\t#include <lightmap_fragment>\n\treflectedLight.indirectDiffuse *= BRDF_Lambert( diffuseColor.rgb );\n\t#ifdef DOUBLE_SIDED\n\t\treflectedLight.directDiffuse = ( gl_FrontFacing ) ? vLightFront : vLightBack;\n\t#else\n\t\treflectedLight.directDiffuse = vLightFront;\n\t#endif\n\treflectedLight.directDiffuse *= BRDF_Lambert( diffuseColor.rgb ) * getShadowMask();\n\t#include <aomap_fragment>\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance;\n\t#include <envmap_fragment>\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,meshmatcap_vert:`#define MATCAP\nvarying vec3 vViewPosition;\n#include <common>\n#include <uv_pars_vertex>\n#include <color_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <fog_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <fog_vertex>\n\tvViewPosition = - mvPosition.xyz;\n}`,meshmatcap_frag:`#define MATCAP\nuniform vec3 diffuse;\nuniform float opacity;\nuniform sampler2D matcap;\nvarying vec3 vViewPosition;\n#include <common>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <fog_pars_fragment>\n#include <normal_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\tvec3 viewDir = normalize( vViewPosition );\n\tvec3 x = normalize( vec3( viewDir.z, 0.0, - viewDir.x ) );\n\tvec3 y = cross( viewDir, x );\n\tvec2 uv = vec2( dot( x, normal ), dot( y, normal ) ) * 0.495 + 0.5;\n\t#ifdef USE_MATCAP\n\t\tvec4 matcapColor = texture2D( matcap, uv );\n\t#else\n\t\tvec4 matcapColor = vec4( vec3( mix( 0.2, 0.8, uv.y ) ), 1.0 );\n\t#endif\n\tvec3 outgoingLight = diffuseColor.rgb * matcapColor.rgb;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,meshnormal_vert:`#define NORMAL\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\n\tvarying vec3 vViewPosition;\n#endif\n#include <common>\n#include <uv_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\n\tvViewPosition = - mvPosition.xyz;\n#endif\n}`,meshnormal_frag:`#define NORMAL\nuniform float opacity;\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( TANGENTSPACE_NORMALMAP )\n\tvarying vec3 vViewPosition;\n#endif\n#include <packing>\n#include <uv_pars_fragment>\n#include <normal_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\t#include <logdepthbuf_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\tgl_FragColor = vec4( packNormalToRGB( normal ), opacity );\n\t#ifdef OPAQUE\n\t\tgl_FragColor.a = 1.0;\n\t#endif\n}`,meshphong_vert:`#define PHONG\nvarying vec3 vViewPosition;\n#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <envmap_pars_vertex>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\tvViewPosition = - mvPosition.xyz;\n\t#include <worldpos_vertex>\n\t#include <envmap_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n}`,meshphong_frag:`#define PHONG\nuniform vec3 diffuse;\nuniform vec3 emissive;\nuniform vec3 specular;\nuniform float shininess;\nuniform float opacity;\n#include <common>\n#include <packing>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <emissivemap_pars_fragment>\n#include <envmap_common_pars_fragment>\n#include <envmap_pars_fragment>\n#include <cube_uv_reflection_fragment>\n#include <fog_pars_fragment>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <normal_pars_fragment>\n#include <lights_phong_pars_fragment>\n#include <shadowmap_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <specularmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\tvec3 totalEmissiveRadiance = emissive;\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <specularmap_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\t#include <emissivemap_fragment>\n\t#include <lights_phong_fragment>\n\t#include <lights_fragment_begin>\n\t#include <lights_fragment_maps>\n\t#include <lights_fragment_end>\n\t#include <aomap_fragment>\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + reflectedLight.directSpecular + reflectedLight.indirectSpecular + totalEmissiveRadiance;\n\t#include <envmap_fragment>\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,meshphysical_vert:`#define STANDARD\nvarying vec3 vViewPosition;\n#ifdef USE_TRANSMISSION\n\tvarying vec3 vWorldPosition;\n#endif\n#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\tvViewPosition = - mvPosition.xyz;\n\t#include <worldpos_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n#ifdef USE_TRANSMISSION\n\tvWorldPosition = worldPosition.xyz;\n#endif\n}`,meshphysical_frag:`#define STANDARD\n#ifdef PHYSICAL\n\t#define IOR\n\t#define SPECULAR\n#endif\nuniform vec3 diffuse;\nuniform vec3 emissive;\nuniform float roughness;\nuniform float metalness;\nuniform float opacity;\n#ifdef IOR\n\tuniform float ior;\n#endif\n#ifdef SPECULAR\n\tuniform float specularIntensity;\n\tuniform vec3 specularColor;\n\t#ifdef USE_SPECULARINTENSITYMAP\n\t\tuniform sampler2D specularIntensityMap;\n\t#endif\n\t#ifdef USE_SPECULARCOLORMAP\n\t\tuniform sampler2D specularColorMap;\n\t#endif\n#endif\n#ifdef USE_CLEARCOAT\n\tuniform float clearcoat;\n\tuniform float clearcoatRoughness;\n#endif\n#ifdef USE_IRIDESCENCE\n\tuniform float iridescence;\n\tuniform float iridescenceIOR;\n\tuniform float iridescenceThicknessMinimum;\n\tuniform float iridescenceThicknessMaximum;\n#endif\n#ifdef USE_SHEEN\n\tuniform vec3 sheenColor;\n\tuniform float sheenRoughness;\n\t#ifdef USE_SHEENCOLORMAP\n\t\tuniform sampler2D sheenColorMap;\n\t#endif\n\t#ifdef USE_SHEENROUGHNESSMAP\n\t\tuniform sampler2D sheenRoughnessMap;\n\t#endif\n#endif\nvarying vec3 vViewPosition;\n#include <common>\n#include <packing>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <emissivemap_pars_fragment>\n#include <bsdfs>\n#include <iridescence_fragment>\n#include <cube_uv_reflection_fragment>\n#include <envmap_common_pars_fragment>\n#include <envmap_physical_pars_fragment>\n#include <fog_pars_fragment>\n#include <lights_pars_begin>\n#include <normal_pars_fragment>\n#include <lights_physical_pars_fragment>\n#include <transmission_pars_fragment>\n#include <shadowmap_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <clearcoat_pars_fragment>\n#include <iridescence_pars_fragment>\n#include <roughnessmap_pars_fragment>\n#include <metalnessmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\tvec3 totalEmissiveRadiance = emissive;\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <roughnessmap_fragment>\n\t#include <metalnessmap_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\t#include <clearcoat_normal_fragment_begin>\n\t#include <clearcoat_normal_fragment_maps>\n\t#include <emissivemap_fragment>\n\t#include <lights_physical_fragment>\n\t#include <lights_fragment_begin>\n\t#include <lights_fragment_maps>\n\t#include <lights_fragment_end>\n\t#include <aomap_fragment>\n\tvec3 totalDiffuse = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse;\n\tvec3 totalSpecular = reflectedLight.directSpecular + reflectedLight.indirectSpecular;\n\t#include <transmission_fragment>\n\tvec3 outgoingLight = totalDiffuse + totalSpecular + totalEmissiveRadiance;\n\t#ifdef USE_SHEEN\n\t\tfloat sheenEnergyComp = 1.0 - 0.157 * max3( material.sheenColor );\n\t\toutgoingLight = outgoingLight * sheenEnergyComp + sheenSpecular;\n\t#endif\n\t#ifdef USE_CLEARCOAT\n\t\tfloat dotNVcc = saturate( dot( geometry.clearcoatNormal, geometry.viewDir ) );\n\t\tvec3 Fcc = F_Schlick( material.clearcoatF0, material.clearcoatF90, dotNVcc );\n\t\toutgoingLight = outgoingLight * ( 1.0 - material.clearcoat * Fcc ) + clearcoatSpecular * material.clearcoat;\n\t#endif\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,meshtoon_vert:`#define TOON\nvarying vec3 vViewPosition;\n#include <common>\n#include <uv_pars_vertex>\n#include <uv2_pars_vertex>\n#include <displacementmap_pars_vertex>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <normal_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\t#include <uv2_vertex>\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <normal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <displacementmap_vertex>\n\t#include <project_vertex>\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\tvViewPosition = - mvPosition.xyz;\n\t#include <worldpos_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n}`,meshtoon_frag:`#define TOON\nuniform vec3 diffuse;\nuniform vec3 emissive;\nuniform float opacity;\n#include <common>\n#include <packing>\n#include <dithering_pars_fragment>\n#include <color_pars_fragment>\n#include <uv_pars_fragment>\n#include <uv2_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <aomap_pars_fragment>\n#include <lightmap_pars_fragment>\n#include <emissivemap_pars_fragment>\n#include <gradientmap_pars_fragment>\n#include <fog_pars_fragment>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <normal_pars_fragment>\n#include <lights_toon_pars_fragment>\n#include <shadowmap_pars_fragment>\n#include <bumpmap_pars_fragment>\n#include <normalmap_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\tReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) );\n\tvec3 totalEmissiveRadiance = emissive;\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <color_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\t#include <normal_fragment_begin>\n\t#include <normal_fragment_maps>\n\t#include <emissivemap_fragment>\n\t#include <lights_toon_fragment>\n\t#include <lights_fragment_begin>\n\t#include <lights_fragment_maps>\n\t#include <lights_fragment_end>\n\t#include <aomap_fragment>\n\tvec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n\t#include <dithering_fragment>\n}`,points_vert:`uniform float size;\nuniform float scale;\n#include <common>\n#include <color_pars_vertex>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <color_vertex>\n\t#include <morphcolor_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <project_vertex>\n\tgl_PointSize = size;\n\t#ifdef USE_SIZEATTENUATION\n\t\tbool isPerspective = isPerspectiveMatrix( projectionMatrix );\n\t\tif ( isPerspective ) gl_PointSize *= ( scale / - mvPosition.z );\n\t#endif\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <worldpos_vertex>\n\t#include <fog_vertex>\n}`,points_frag:`uniform vec3 diffuse;\nuniform float opacity;\n#include <common>\n#include <color_pars_fragment>\n#include <map_particle_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <fog_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <map_particle_fragment>\n\t#include <color_fragment>\n\t#include <alphatest_fragment>\n\toutgoingLight = diffuseColor.rgb;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n\t#include <premultiplied_alpha_fragment>\n}`,shadow_vert:`#include <common>\n#include <fog_pars_vertex>\n#include <morphtarget_pars_vertex>\n#include <skinning_pars_vertex>\n#include <shadowmap_pars_vertex>\nvoid main() {\n\t#include <beginnormal_vertex>\n\t#include <morphnormal_vertex>\n\t#include <skinbase_vertex>\n\t#include <skinnormal_vertex>\n\t#include <defaultnormal_vertex>\n\t#include <begin_vertex>\n\t#include <morphtarget_vertex>\n\t#include <skinning_vertex>\n\t#include <project_vertex>\n\t#include <worldpos_vertex>\n\t#include <shadowmap_vertex>\n\t#include <fog_vertex>\n}`,shadow_frag:`uniform vec3 color;\nuniform float opacity;\n#include <common>\n#include <packing>\n#include <fog_pars_fragment>\n#include <bsdfs>\n#include <lights_pars_begin>\n#include <shadowmap_pars_fragment>\n#include <shadowmask_pars_fragment>\nvoid main() {\n\tgl_FragColor = vec4( color, opacity * ( 1.0 - getShadowMask() ) );\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n}`,sprite_vert:`uniform float rotation;\nuniform vec2 center;\n#include <common>\n#include <uv_pars_vertex>\n#include <fog_pars_vertex>\n#include <logdepthbuf_pars_vertex>\n#include <clipping_planes_pars_vertex>\nvoid main() {\n\t#include <uv_vertex>\n\tvec4 mvPosition = modelViewMatrix * vec4( 0.0, 0.0, 0.0, 1.0 );\n\tvec2 scale;\n\tscale.x = length( vec3( modelMatrix[ 0 ].x, modelMatrix[ 0 ].y, modelMatrix[ 0 ].z ) );\n\tscale.y = length( vec3( modelMatrix[ 1 ].x, modelMatrix[ 1 ].y, modelMatrix[ 1 ].z ) );\n\t#ifndef USE_SIZEATTENUATION\n\t\tbool isPerspective = isPerspectiveMatrix( projectionMatrix );\n\t\tif ( isPerspective ) scale *= - mvPosition.z;\n\t#endif\n\tvec2 alignedPosition = ( position.xy - ( center - vec2( 0.5 ) ) ) * scale;\n\tvec2 rotatedPosition;\n\trotatedPosition.x = cos( rotation ) * alignedPosition.x - sin( rotation ) * alignedPosition.y;\n\trotatedPosition.y = sin( rotation ) * alignedPosition.x + cos( rotation ) * alignedPosition.y;\n\tmvPosition.xy += rotatedPosition;\n\tgl_Position = projectionMatrix * mvPosition;\n\t#include <logdepthbuf_vertex>\n\t#include <clipping_planes_vertex>\n\t#include <fog_vertex>\n}`,sprite_frag:`uniform vec3 diffuse;\nuniform float opacity;\n#include <common>\n#include <uv_pars_fragment>\n#include <map_pars_fragment>\n#include <alphamap_pars_fragment>\n#include <alphatest_pars_fragment>\n#include <fog_pars_fragment>\n#include <logdepthbuf_pars_fragment>\n#include <clipping_planes_pars_fragment>\nvoid main() {\n\t#include <clipping_planes_fragment>\n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include <logdepthbuf_fragment>\n\t#include <map_fragment>\n\t#include <alphamap_fragment>\n\t#include <alphatest_fragment>\n\toutgoingLight = diffuseColor.rgb;\n\t#include <output_fragment>\n\t#include <tonemapping_fragment>\n\t#include <encodings_fragment>\n\t#include <fog_fragment>\n}`},De={common:{diffuse:{value:new be(16777215)},opacity:{value:1},map:{value:null},uvTransform:{value:new un},uv2Transform:{value:new un},alphaMap:{value:null},alphaTest:{value:0}},specularmap:{specularMap:{value:null}},envmap:{envMap:{value:null},flipEnvMap:{value:-1},reflectivity:{value:1},ior:{value:1.5},refractionRatio:{value:.98}},aomap:{aoMap:{value:null},aoMapIntensity:{value:1}},lightmap:{lightMap:{value:null},lightMapIntensity:{value:1}},emissivemap:{emissiveMap:{value:null}},bumpmap:{bumpMap:{value:null},bumpScale:{value:1}},normalmap:{normalMap:{value:null},normalScale:{value:new he(1,1)}},displacementmap:{displacementMap:{value:null},displacementScale:{value:1},displacementBias:{value:0}},roughnessmap:{roughnessMap:{value:null}},metalnessmap:{metalnessMap:{value:null}},gradientmap:{gradientMap:{value:null}},fog:{fogDensity:{value:25e-5},fogNear:{value:1},fogFar:{value:2e3},fogColor:{value:new be(16777215)}},lights:{ambientLightColor:{value:[]},lightProbe:{value:[]},directionalLights:{value:[],properties:{direction:{},color:{}}},directionalLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},directionalShadowMap:{value:[]},directionalShadowMatrix:{value:[]},spotLights:{value:[],properties:{color:{},position:{},direction:{},distance:{},coneCos:{},penumbraCos:{},decay:{}}},spotLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},spotShadowMap:{value:[]},spotShadowMatrix:{value:[]},pointLights:{value:[],properties:{color:{},position:{},decay:{},distance:{}}},pointLightShadows:{value:[],properties:{shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{},shadowCameraNear:{},shadowCameraFar:{}}},pointShadowMap:{value:[]},pointShadowMatrix:{value:[]},hemisphereLights:{value:[],properties:{direction:{},skyColor:{},groundColor:{}}},rectAreaLights:{value:[],properties:{color:{},position:{},width:{},height:{}}},ltc_1:{value:null},ltc_2:{value:null}},points:{diffuse:{value:new be(16777215)},opacity:{value:1},size:{value:1},scale:{value:1},map:{value:null},alphaMap:{value:null},alphaTest:{value:0},uvTransform:{value:new un}},sprite:{diffuse:{value:new be(16777215)},opacity:{value:1},center:{value:new he(.5,.5)},rotation:{value:0},map:{value:null},alphaMap:{value:null},alphaTest:{value:0},uvTransform:{value:new un}}},qn={basic:{uniforms:an([De.common,De.specularmap,De.envmap,De.aomap,De.lightmap,De.fog]),vertexShader:st.meshbasic_vert,fragmentShader:st.meshbasic_frag},lambert:{uniforms:an([De.common,De.specularmap,De.envmap,De.aomap,De.lightmap,De.emissivemap,De.fog,De.lights,{emissive:{value:new be(0)}}]),vertexShader:st.meshlambert_vert,fragmentShader:st.meshlambert_frag},phong:{uniforms:an([De.common,De.specularmap,De.envmap,De.aomap,De.lightmap,De.emissivemap,De.bumpmap,De.normalmap,De.displacementmap,De.fog,De.lights,{emissive:{value:new be(0)},specular:{value:new be(1118481)},shininess:{value:30}}]),vertexShader:st.meshphong_vert,fragmentShader:st.meshphong_frag},standard:{uniforms:an([De.common,De.envmap,De.aomap,De.lightmap,De.emissivemap,De.bumpmap,De.normalmap,De.displacementmap,De.roughnessmap,De.metalnessmap,De.fog,De.lights,{emissive:{value:new be(0)},roughness:{value:1},metalness:{value:0},envMapIntensity:{value:1}}]),vertexShader:st.meshphysical_vert,fragmentShader:st.meshphysical_frag},toon:{uniforms:an([De.common,De.aomap,De.lightmap,De.emissivemap,De.bumpmap,De.normalmap,De.displacementmap,De.gradientmap,De.fog,De.lights,{emissive:{value:new be(0)}}]),vertexShader:st.meshtoon_vert,fragmentShader:st.meshtoon_frag},matcap:{uniforms:an([De.common,De.bumpmap,De.normalmap,De.displacementmap,De.fog,{matcap:{value:null}}]),vertexShader:st.meshmatcap_vert,fragmentShader:st.meshmatcap_frag},points:{uniforms:an([De.points,De.fog]),vertexShader:st.points_vert,fragmentShader:st.points_frag},dashed:{uniforms:an([De.common,De.fog,{scale:{value:1},dashSize:{value:1},totalSize:{value:2}}]),vertexShader:st.linedashed_vert,fragmentShader:st.linedashed_frag},depth:{uniforms:an([De.common,De.displacementmap]),vertexShader:st.depth_vert,fragmentShader:st.depth_frag},normal:{uniforms:an([De.common,De.bumpmap,De.normalmap,De.displacementmap,{opacity:{value:1}}]),vertexShader:st.meshnormal_vert,fragmentShader:st.meshnormal_frag},sprite:{uniforms:an([De.sprite,De.fog]),vertexShader:st.sprite_vert,fragmentShader:st.sprite_frag},background:{uniforms:{uvTransform:{value:new un},t2D:{value:null}},vertexShader:st.background_vert,fragmentShader:st.background_frag},cube:{uniforms:an([De.envmap,{opacity:{value:1}}]),vertexShader:st.cube_vert,fragmentShader:st.cube_frag},equirect:{uniforms:{tEquirect:{value:null}},vertexShader:st.equirect_vert,fragmentShader:st.equirect_frag},distanceRGBA:{uniforms:an([De.common,De.displacementmap,{referencePosition:{value:new I},nearDistance:{value:1},farDistance:{value:1e3}}]),vertexShader:st.distanceRGBA_vert,fragmentShader:st.distanceRGBA_frag},shadow:{uniforms:an([De.lights,De.fog,{color:{value:new be(0)},opacity:{value:1}}]),vertexShader:st.shadow_vert,fragmentShader:st.shadow_frag}};qn.physical={uniforms:an([qn.standard.uniforms,{clearcoat:{value:0},clearcoatMap:{value:null},clearcoatRoughness:{value:0},clearcoatRoughnessMap:{value:null},clearcoatNormalScale:{value:new he(1,1)},clearcoatNormalMap:{value:null},iridescence:{value:0},iridescenceMap:{value:null},iridescenceIOR:{value:1.3},iridescenceThicknessMinimum:{value:100},iridescenceThicknessMaximum:{value:400},iridescenceThicknessMap:{value:null},sheen:{value:0},sheenColor:{value:new be(0)},sheenColorMap:{value:null},sheenRoughness:{value:1},sheenRoughnessMap:{value:null},transmission:{value:0},transmissionMap:{value:null},transmissionSamplerSize:{value:new he},transmissionSamplerMap:{value:null},thickness:{value:0},thicknessMap:{value:null},attenuationDistance:{value:0},attenuationColor:{value:new be(0)},specularIntensity:{value:1},specularIntensityMap:{value:null},specularColor:{value:new be(1,1,1)},specularColorMap:{value:null}}]),vertexShader:st.meshphysical_vert,fragmentShader:st.meshphysical_frag};function mx(a,e,t,n,i,s){const r=new be(0);let o=i===!0?0:1,l,c,h=null,u=0,f=null;function d(m,g){let y=!1,x=g.isScene===!0?g.background:null;x&&x.isTexture&&(x=e.get(x));const b=a.xr,v=b.getSession&&b.getSession();v&&v.environmentBlendMode===\"additive\"&&(x=null),x===null?p(r,o):x&&x.isColor&&(p(x,1),y=!0),(a.autoClear||y)&&a.clear(a.autoClearColor,a.autoClearDepth,a.autoClearStencil),x&&(x.isCubeTexture||x.mapping===Ys)?(c===void 0&&(c=new Rt(new vi(1,1,1),new Qn({name:\"BackgroundCubeMaterial\",uniforms:cr(qn.cube.uniforms),vertexShader:qn.cube.vertexShader,fragmentShader:qn.cube.fragmentShader,side:Cn,depthTest:!1,depthWrite:!1,fog:!1})),c.geometry.deleteAttribute(\"normal\"),c.geometry.deleteAttribute(\"uv\"),c.onBeforeRender=function(M,T,C){this.matrixWorld.copyPosition(C.matrixWorld)},Object.defineProperty(c.material,\"envMap\",{get:function(){return this.uniforms.envMap.value}}),n.update(c)),c.material.uniforms.envMap.value=x,c.material.uniforms.flipEnvMap.value=x.isCubeTexture&&x.isRenderTargetTexture===!1?-1:1,(h!==x||u!==x.version||f!==a.toneMapping)&&(c.material.needsUpdate=!0,h=x,u=x.version,f=a.toneMapping),c.layers.enableAll(),m.unshift(c,c.geometry,c.material,0,0,null)):x&&x.isTexture&&(l===void 0&&(l=new Rt(new bs(2,2),new Qn({name:\"BackgroundMaterial\",uniforms:cr(qn.background.uniforms),vertexShader:qn.background.vertexShader,fragmentShader:qn.background.fragmentShader,side:li,depthTest:!1,depthWrite:!1,fog:!1})),l.geometry.deleteAttribute(\"normal\"),Object.defineProperty(l.material,\"map\",{get:function(){return this.uniforms.t2D.value}}),n.update(l)),l.material.uniforms.t2D.value=x,x.matrixAutoUpdate===!0&&x.updateMatrix(),l.material.uniforms.uvTransform.value.copy(x.matrix),(h!==x||u!==x.version||f!==a.toneMapping)&&(l.material.needsUpdate=!0,h=x,u=x.version,f=a.toneMapping),l.layers.enableAll(),m.unshift(l,l.geometry,l.material,0,0,null))}function p(m,g){t.buffers.color.setClear(m.r,m.g,m.b,g,s)}return{getClearColor:function(){return r},setClearColor:function(m,g=1){r.set(m),o=g,p(r,o)},getClearAlpha:function(){return o},setClearAlpha:function(m){o=m,p(r,o)},render:d}}function gx(a,e,t,n){const i=a.getParameter(34921),s=n.isWebGL2?null:e.get(\"OES_vertex_array_object\"),r=n.isWebGL2||s!==null,o={},l=g(null);let c=l,h=!1;function u(G,X,O,j,Y){let W=!1;if(r){const Z=m(j,O,X);c!==Z&&(c=Z,d(c.object)),W=y(G,j,O,Y),W&&x(G,j,O,Y)}else{const Z=X.wireframe===!0;(c.geometry!==j.id||c.program!==O.id||c.wireframe!==Z)&&(c.geometry=j.id,c.program=O.id,c.wireframe=Z,W=!0)}Y!==null&&t.update(Y,34963),(W||h)&&(h=!1,_(G,X,O,j),Y!==null&&a.bindBuffer(34963,t.get(Y).buffer))}function f(){return n.isWebGL2?a.createVertexArray():s.createVertexArrayOES()}function d(G){return n.isWebGL2?a.bindVertexArray(G):s.bindVertexArrayOES(G)}function p(G){return n.isWebGL2?a.deleteVertexArray(G):s.deleteVertexArrayOES(G)}function m(G,X,O){const j=O.wireframe===!0;let Y=o[G.id];Y===void 0&&(Y={},o[G.id]=Y);let W=Y[X.id];W===void 0&&(W={},Y[X.id]=W);let Z=W[j];return Z===void 0&&(Z=g(f()),W[j]=Z),Z}function g(G){const X=[],O=[],j=[];for(let Y=0;Y<i;Y++)X[Y]=0,O[Y]=0,j[Y]=0;return{geometry:null,program:null,wireframe:!1,newAttributes:X,enabledAttributes:O,attributeDivisors:j,object:G,attributes:{},index:null}}function y(G,X,O,j){const Y=c.attributes,W=X.attributes;let Z=0;const ee=O.getAttributes();for(const Q in ee)if(ee[Q].location>=0){const ae=Y[Q];let re=W[Q];if(re===void 0&&(Q===\"instanceMatrix\"&&G.instanceMatrix&&(re=G.instanceMatrix),Q===\"instanceColor\"&&G.instanceColor&&(re=G.instanceColor)),ae===void 0||ae.attribute!==re||re&&ae.data!==re.data)return!0;Z++}return c.attributesNum!==Z||c.index!==j}function x(G,X,O,j){const Y={},W=X.attributes;let Z=0;const ee=O.getAttributes();for(const Q in ee)if(ee[Q].location>=0){let ae=W[Q];ae===void 0&&(Q===\"instanceMatrix\"&&G.instanceMatrix&&(ae=G.instanceMatrix),Q===\"instanceColor\"&&G.instanceColor&&(ae=G.instanceColor));const re={};re.attribute=ae,ae&&ae.data&&(re.data=ae.data),Y[Q]=re,Z++}c.attributes=Y,c.attributesNum=Z,c.index=j}function b(){const G=c.newAttributes;for(let X=0,O=G.length;X<O;X++)G[X]=0}function v(G){M(G,0)}function M(G,X){const O=c.newAttributes,j=c.enabledAttributes,Y=c.attributeDivisors;O[G]=1,j[G]===0&&(a.enableVertexAttribArray(G),j[G]=1),Y[G]!==X&&((n.isWebGL2?a:e.get(\"ANGLE_instanced_arrays\"))[n.isWebGL2?\"vertexAttribDivisor\":\"vertexAttribDivisorANGLE\"](G,X),Y[G]=X)}function T(){const G=c.newAttributes,X=c.enabledAttributes;for(let O=0,j=X.length;O<j;O++)X[O]!==G[O]&&(a.disableVertexAttribArray(O),X[O]=0)}function C(G,X,O,j,Y,W){n.isWebGL2===!0&&(O===5124||O===5125)?a.vertexAttribIPointer(G,X,O,Y,W):a.vertexAttribPointer(G,X,O,j,Y,W)}function _(G,X,O,j){if(n.isWebGL2===!1&&(G.isInstancedMesh||j.isInstancedBufferGeometry)&&e.get(\"ANGLE_instanced_arrays\")===null)return;b();const Y=j.attributes,W=O.getAttributes(),Z=X.defaultAttributeValues;for(const ee in W){const Q=W[ee];if(Q.location>=0){let ie=Y[ee];if(ie===void 0&&(ee===\"instanceMatrix\"&&G.instanceMatrix&&(ie=G.instanceMatrix),ee===\"instanceColor\"&&G.instanceColor&&(ie=G.instanceColor)),ie!==void 0){const ae=ie.normalized,re=ie.itemSize,H=t.get(ie);if(H===void 0)continue;const ge=H.buffer,we=H.type,Fe=H.bytesPerElement;if(ie.isInterleavedBufferAttribute){const xe=ie.data,Ve=xe.stride,ue=ie.offset;if(xe.isInstancedInterleavedBuffer){for(let ce=0;ce<Q.locationSize;ce++)M(Q.location+ce,xe.meshPerAttribute);G.isInstancedMesh!==!0&&j._maxInstanceCount===void 0&&(j._maxInstanceCount=xe.meshPerAttribute*xe.count)}else for(let ce=0;ce<Q.locationSize;ce++)v(Q.location+ce);a.bindBuffer(34962,ge);for(let ce=0;ce<Q.locationSize;ce++)C(Q.location+ce,re/Q.locationSize,we,ae,Ve*Fe,(ue+re/Q.locationSize*ce)*Fe)}else{if(ie.isInstancedBufferAttribute){for(let xe=0;xe<Q.locationSize;xe++)M(Q.location+xe,ie.meshPerAttribute);G.isInstancedMesh!==!0&&j._maxInstanceCount===void 0&&(j._maxInstanceCount=ie.meshPerAttribute*ie.count)}else for(let xe=0;xe<Q.locationSize;xe++)v(Q.location+xe);a.bindBuffer(34962,ge);for(let xe=0;xe<Q.locationSize;xe++)C(Q.location+xe,re/Q.locationSize,we,ae,re*Fe,re/Q.locationSize*xe*Fe)}}else if(Z!==void 0){const ae=Z[ee];if(ae!==void 0)switch(ae.length){case 2:a.vertexAttrib2fv(Q.location,ae);break;case 3:a.vertexAttrib3fv(Q.location,ae);break;case 4:a.vertexAttrib4fv(Q.location,ae);break;default:a.vertexAttrib1fv(Q.location,ae)}}}}T()}function E(){q();for(const G in o){const X=o[G];for(const O in X){const j=X[O];for(const Y in j)p(j[Y].object),delete j[Y];delete X[O]}delete o[G]}}function F(G){if(o[G.id]===void 0)return;const X=o[G.id];for(const O in X){const j=X[O];for(const Y in j)p(j[Y].object),delete j[Y];delete X[O]}delete o[G.id]}function U(G){for(const X in o){const O=o[X];if(O[G.id]===void 0)continue;const j=O[G.id];for(const Y in j)p(j[Y].object),delete j[Y];delete O[G.id]}}function q(){K(),h=!0,c!==l&&(c=l,d(c.object))}function K(){l.geometry=null,l.program=null,l.wireframe=!1}return{setup:u,reset:q,resetDefaultState:K,dispose:E,releaseStatesOfGeometry:F,releaseStatesOfProgram:U,initAttributes:b,enableAttribute:v,disableUnusedAttributes:T}}function yx(a,e,t,n){const i=n.isWebGL2;let s;function r(c){s=c}function o(c,h){a.drawArrays(s,c,h),t.update(h,s,1)}function l(c,h,u){if(u===0)return;let f,d;if(i)f=a,d=\"drawArraysInstanced\";else if(f=e.get(\"ANGLE_instanced_arrays\"),d=\"drawArraysInstancedANGLE\",f===null){console.error(\"THREE.WebGLBufferRenderer: using THREE.InstancedBufferGeometry but hardware does not support extension ANGLE_instanced_arrays.\");return}f[d](s,c,h,u),t.update(h,s,u)}this.setMode=r,this.render=o,this.renderInstances=l}function xx(a,e,t){let n;function i(){if(n!==void 0)return n;if(e.has(\"EXT_texture_filter_anisotropic\")===!0){const C=e.get(\"EXT_texture_filter_anisotropic\");n=a.getParameter(C.MAX_TEXTURE_MAX_ANISOTROPY_EXT)}else n=0;return n}function s(C){if(C===\"highp\"){if(a.getShaderPrecisionFormat(35633,36338).precision>0&&a.getShaderPrecisionFormat(35632,36338).precision>0)return\"highp\";C=\"mediump\"}return C===\"mediump\"&&a.getShaderPrecisionFormat(35633,36337).precision>0&&a.getShaderPrecisionFormat(35632,36337).precision>0?\"mediump\":\"lowp\"}const r=typeof WebGL2RenderingContext!=\"undefined\"&&a instanceof WebGL2RenderingContext||typeof WebGL2ComputeRenderingContext!=\"undefined\"&&a instanceof WebGL2ComputeRenderingContext;let o=t.precision!==void 0?t.precision:\"highp\";const l=s(o);l!==o&&(console.warn(\"THREE.WebGLRenderer:\",o,\"not supported, using\",l,\"instead.\"),o=l);const c=r||e.has(\"WEBGL_draw_buffers\"),h=t.logarithmicDepthBuffer===!0,u=a.getParameter(34930),f=a.getParameter(35660),d=a.getParameter(3379),p=a.getParameter(34076),m=a.getParameter(34921),g=a.getParameter(36347),y=a.getParameter(36348),x=a.getParameter(36349),b=f>0,v=r||e.has(\"OES_texture_float\"),M=b&&v,T=r?a.getParameter(36183):0;return{isWebGL2:r,drawBuffers:c,getMaxAnisotropy:i,getMaxPrecision:s,precision:o,logarithmicDepthBuffer:h,maxTextures:u,maxVertexTextures:f,maxTextureSize:d,maxCubemapSize:p,maxAttributes:m,maxVertexUniforms:g,maxVaryings:y,maxFragmentUniforms:x,vertexTextures:b,floatFragmentTextures:v,floatVertexTextures:M,maxSamples:T}}function vx(a){const e=this;let t=null,n=0,i=!1,s=!1;const r=new Xi,o=new un,l={value:null,needsUpdate:!1};this.uniform=l,this.numPlanes=0,this.numIntersection=0,this.init=function(u,f,d){const p=u.length!==0||f||n!==0||i;return i=f,t=h(u,d,0),n=u.length,p},this.beginShadows=function(){s=!0,h(null)},this.endShadows=function(){s=!1,c()},this.setState=function(u,f,d){const p=u.clippingPlanes,m=u.clipIntersection,g=u.clipShadows,y=a.get(u);if(!i||p===null||p.length===0||s&&!g)s?h(null):c();else{const x=s?0:n,b=x*4;let v=y.clippingState||null;l.value=v,v=h(p,f,b,d);for(let M=0;M!==b;++M)v[M]=t[M];y.clippingState=v,this.numIntersection=m?this.numPlanes:0,this.numPlanes+=x}};function c(){l.value!==t&&(l.value=t,l.needsUpdate=n>0),e.numPlanes=n,e.numIntersection=0}function h(u,f,d,p){const m=u!==null?u.length:0;let g=null;if(m!==0){if(g=l.value,p!==!0||g===null){const y=d+m*4,x=f.matrixWorldInverse;o.getNormalMatrix(x),(g===null||g.length<y)&&(g=new Float32Array(y));for(let b=0,v=d;b!==m;++b,v+=4)r.copy(u[b]).applyMatrix4(x,o),r.normal.toArray(g,v),g[v+3]=r.constant}l.value=g,l.needsUpdate=!0}return e.numPlanes=m,e.numIntersection=0,g}}function _x(a){let e=new WeakMap;function t(r,o){return o===js?r.mapping=Ii:o===to&&(r.mapping=Pi),r}function n(r){if(r&&r.isTexture&&r.isRenderTargetTexture===!1){const o=r.mapping;if(o===js||o===to)if(e.has(r)){const l=e.get(r).texture;return t(l,r.mapping)}else{const l=r.image;if(l&&l.height>0){const c=new Pf(l.height/2);return c.fromEquirectangularTexture(a,r),e.set(r,c),r.addEventListener(\"dispose\",i),t(c.texture,r.mapping)}else return null}}return r}function i(r){const o=r.target;o.removeEventListener(\"dispose\",i);const l=e.get(o);l!==void 0&&(e.delete(o),l.dispose())}function s(){e=new WeakMap}return{get:n,dispose:s}}class ws extends Ra{constructor(e=-1,t=1,n=1,i=-1,s=.1,r=2e3){super(),this.isOrthographicCamera=!0,this.type=\"OrthographicCamera\",this.zoom=1,this.view=null,this.left=e,this.right=t,this.top=n,this.bottom=i,this.near=s,this.far=r,this.updateProjectionMatrix()}copy(e,t){return super.copy(e,t),this.left=e.left,this.right=e.right,this.top=e.top,this.bottom=e.bottom,this.near=e.near,this.far=e.far,this.zoom=e.zoom,this.view=e.view===null?null:Object.assign({},e.view),this}setViewOffset(e,t,n,i,s,r){this.view===null&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=e,this.view.fullHeight=t,this.view.offsetX=n,this.view.offsetY=i,this.view.width=s,this.view.height=r,this.updateProjectionMatrix()}clearViewOffset(){this.view!==null&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const e=(this.right-this.left)/(2*this.zoom),t=(this.top-this.bottom)/(2*this.zoom),n=(this.right+this.left)/2,i=(this.top+this.bottom)/2;let s=n-e,r=n+e,o=i+t,l=i-t;if(this.view!==null&&this.view.enabled){const c=(this.right-this.left)/this.view.fullWidth/this.zoom,h=(this.top-this.bottom)/this.view.fullHeight/this.zoom;s+=c*this.view.offsetX,r=s+c*this.view.width,o-=h*this.view.offsetY,l=o-h*this.view.height}this.projectionMatrix.makeOrthographic(s,r,o,l,this.near,this.far),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(e){const t=super.toJSON(e);return t.object.zoom=this.zoom,t.object.left=this.left,t.object.right=this.right,t.object.top=this.top,t.object.bottom=this.bottom,t.object.near=this.near,t.object.far=this.far,this.view!==null&&(t.object.view=Object.assign({},this.view)),t}}const dr=4,Ff=[.125,.215,.35,.446,.526,.582],Ms=20,Vc=new ws,Nf=new be;let Hc=null;const Ss=(1+Math.sqrt(5))/2,pr=1/Ss,kf=[new I(1,1,1),new I(-1,1,1),new I(1,1,-1),new I(-1,1,-1),new I(0,Ss,pr),new I(0,Ss,-pr),new I(pr,0,Ss),new I(-pr,0,Ss),new I(Ss,pr,0),new I(-Ss,pr,0)];class Wc{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._lodPlanes=[],this._sizeLods=[],this._sigmas=[],this._blurMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._compileMaterial(this._blurMaterial)}fromScene(e,t=0,n=.1,i=100){Hc=this._renderer.getRenderTarget(),this._setSize(256);const s=this._allocateTargets();return s.depthBuffer=!0,this._sceneToCubeUV(e,n,i,s),t>0&&this._blur(s,0,0,t),this._applyPMREM(s),this._cleanup(s),s}fromEquirectangular(e,t=null){return this._fromTexture(e,t)}fromCubemap(e,t=null){return this._fromTexture(e,t)}compileCubemapShader(){this._cubemapMaterial===null&&(this._cubemapMaterial=zf(),this._compileMaterial(this._cubemapMaterial))}compileEquirectangularShader(){this._equirectMaterial===null&&(this._equirectMaterial=Bf(),this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),this._cubemapMaterial!==null&&this._cubemapMaterial.dispose(),this._equirectMaterial!==null&&this._equirectMaterial.dispose()}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){this._blurMaterial!==null&&this._blurMaterial.dispose(),this._pingPongRenderTarget!==null&&this._pingPongRenderTarget.dispose();for(let e=0;e<this._lodPlanes.length;e++)this._lodPlanes[e].dispose()}_cleanup(e){this._renderer.setRenderTarget(Hc),e.scissorTest=!1,Da(e,0,0,e.width,e.height)}_fromTexture(e,t){e.mapping===Ii||e.mapping===Pi?this._setSize(e.image.length===0?16:e.image[0].width||e.image[0].image.width):this._setSize(e.image.width/4),Hc=this._renderer.getRenderTarget();const n=t||this._allocateTargets();return this._textureToCubeUV(e,n),this._applyPMREM(n),this._cleanup(n),n}_allocateTargets(){const e=3*Math.max(this._cubeSize,112),t=4*this._cubeSize,n={magFilter:Pt,minFilter:Pt,generateMipmaps:!1,type:Ks,format:Mn,encoding:fi,depthBuffer:!1},i=Of(e,t,n);if(this._pingPongRenderTarget===null||this._pingPongRenderTarget.width!==e){this._pingPongRenderTarget!==null&&this._dispose(),this._pingPongRenderTarget=Of(e,t,n);const{_lodMax:s}=this;({sizeLods:this._sizeLods,lodPlanes:this._lodPlanes,sigmas:this._sigmas}=bx(s)),this._blurMaterial=wx(s,e,t)}return i}_compileMaterial(e){const t=new Rt(this._lodPlanes[0],e);this._renderer.compile(t,Vc)}_sceneToCubeUV(e,t,n,i){const o=new Ot(90,1,t,n),l=[1,-1,1,1,1,1],c=[1,1,1,-1,-1,-1],h=this._renderer,u=h.autoClear,f=h.toneMapping;h.getClearColor(Nf),h.toneMapping=Zn,h.autoClear=!1;const d=new on({name:\"PMREM.Background\",side:Cn,depthWrite:!1,depthTest:!1}),p=new Rt(new vi,d);let m=!1;const g=e.background;g?g.isColor&&(d.color.copy(g),e.background=null,m=!0):(d.color.copy(Nf),m=!0);for(let y=0;y<6;y++){const x=y%3;x===0?(o.up.set(0,l[y],0),o.lookAt(c[y],0,0)):x===1?(o.up.set(0,0,l[y]),o.lookAt(0,c[y],0)):(o.up.set(0,l[y],0),o.lookAt(0,0,c[y]));const b=this._cubeSize;Da(i,x*b,y>2?b:0,b,b),h.setRenderTarget(i),m&&h.render(p,o),h.render(e,o)}p.geometry.dispose(),p.material.dispose(),h.toneMapping=f,h.autoClear=u,e.background=g}_textureToCubeUV(e,t){const n=this._renderer,i=e.mapping===Ii||e.mapping===Pi;i?(this._cubemapMaterial===null&&(this._cubemapMaterial=zf()),this._cubemapMaterial.uniforms.flipEnvMap.value=e.isRenderTargetTexture===!1?-1:1):this._equirectMaterial===null&&(this._equirectMaterial=Bf());const s=i?this._cubemapMaterial:this._equirectMaterial,r=new Rt(this._lodPlanes[0],s),o=s.uniforms;o.envMap.value=e;const l=this._cubeSize;Da(t,0,0,3*l,2*l),n.setRenderTarget(t),n.render(r,Vc)}_applyPMREM(e){const t=this._renderer,n=t.autoClear;t.autoClear=!1;for(let i=1;i<this._lodPlanes.length;i++){const s=Math.sqrt(this._sigmas[i]*this._sigmas[i]-this._sigmas[i-1]*this._sigmas[i-1]),r=kf[(i-1)%kf.length];this._blur(e,i-1,i,s,r)}t.autoClear=n}_blur(e,t,n,i,s){const r=this._pingPongRenderTarget;this._halfBlur(e,r,t,n,i,\"latitudinal\",s),this._halfBlur(r,e,n,n,i,\"longitudinal\",s)}_halfBlur(e,t,n,i,s,r,o){const l=this._renderer,c=this._blurMaterial;r!==\"latitudinal\"&&r!==\"longitudinal\"&&console.error(\"blur direction must be either latitudinal or longitudinal!\");const h=3,u=new Rt(this._lodPlanes[i],c),f=c.uniforms,d=this._sizeLods[n]-1,p=isFinite(s)?Math.PI/(2*d):2*Math.PI/(2*Ms-1),m=s/p,g=isFinite(s)?1+Math.floor(h*m):Ms;g>Ms&&console.warn(`sigmaRadians, ${s}, is too large and will clip, as it requested ${g} samples when the maximum is set to ${Ms}`);const y=[];let x=0;for(let C=0;C<Ms;++C){const _=C/m,E=Math.exp(-_*_/2);y.push(E),C===0?x+=E:C<g&&(x+=2*E)}for(let C=0;C<y.length;C++)y[C]=y[C]/x;f.envMap.value=e.texture,f.samples.value=g,f.weights.value=y,f.latitudinal.value=r===\"latitudinal\",o&&(f.poleAxis.value=o);const{_lodMax:b}=this;f.dTheta.value=p,f.mipInt.value=b-n;const v=this._sizeLods[i],M=3*v*(i>b-dr?i-b+dr:0),T=4*(this._cubeSize-v);Da(t,M,T,3*v,2*v),l.setRenderTarget(t),l.render(u,Vc)}}function bx(a){const e=[],t=[],n=[];let i=a;const s=a-dr+1+Ff.length;for(let r=0;r<s;r++){const o=Math.pow(2,i);t.push(o);let l=1/o;r>a-dr?l=Ff[r-a+dr-1]:r===0&&(l=0),n.push(l);const c=1/(o-2),h=-c,u=1+c,f=[h,h,u,h,u,u,h,h,u,u,h,u],d=6,p=6,m=3,g=2,y=1,x=new Float32Array(m*p*d),b=new Float32Array(g*p*d),v=new Float32Array(y*p*d);for(let T=0;T<d;T++){const C=T%3*2/3-1,_=T>2?0:-1,E=[C,_,0,C+2/3,_,0,C+2/3,_+1,0,C,_,0,C+2/3,_+1,0,C,_+1,0];x.set(E,m*p*T),b.set(f,g*p*T);const F=[T,T,T,T,T,T];v.set(F,y*p*T)}const M=new Xe;M.setAttribute(\"position\",new pt(x,m)),M.setAttribute(\"uv\",new pt(b,g)),M.setAttribute(\"faceIndex\",new pt(v,y)),e.push(M),i>dr&&i--}return{lodPlanes:e,sizeLods:t,sigmas:n}}function Of(a,e,t){const n=new Rn(a,e,t);return n.texture.mapping=Ys,n.texture.name=\"PMREM.cubeUv\",n.scissorTest=!0,n}function Da(a,e,t,n,i){a.viewport.set(e,t,n,i),a.scissor.set(e,t,n,i)}function wx(a,e,t){const n=new Float32Array(Ms),i=new I(0,1,0);return new Qn({name:\"SphericalGaussianBlur\",defines:{n:Ms,CUBEUV_TEXEL_WIDTH:1/e,CUBEUV_TEXEL_HEIGHT:1/t,CUBEUV_MAX_MIP:`${a}.0`},uniforms:{envMap:{value:null},samples:{value:1},weights:{value:n},latitudinal:{value:!1},dTheta:{value:0},mipInt:{value:0},poleAxis:{value:i}},vertexShader:qc(),fragmentShader:`\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform sampler2D envMap;\n\t\t\tuniform int samples;\n\t\t\tuniform float weights[ n ];\n\t\t\tuniform bool latitudinal;\n\t\t\tuniform float dTheta;\n\t\t\tuniform float mipInt;\n\t\t\tuniform vec3 poleAxis;\n\n\t\t\t#define ENVMAP_TYPE_CUBE_UV\n\t\t\t#include <cube_uv_reflection_fragment>\n\n\t\t\tvec3 getSample( float theta, vec3 axis ) {\n\n\t\t\t\tfloat cosTheta = cos( theta );\n\t\t\t\t// Rodrigues' axis-angle rotation\n\t\t\t\tvec3 sampleDirection = vOutputDirection * cosTheta\n\t\t\t\t\t+ cross( axis, vOutputDirection ) * sin( theta )\n\t\t\t\t\t+ axis * dot( axis, vOutputDirection ) * ( 1.0 - cosTheta );\n\n\t\t\t\treturn bilinearCubeUV( envMap, sampleDirection, mipInt );\n\n\t\t\t}\n\n\t\t\tvoid main() {\n\n\t\t\t\tvec3 axis = latitudinal ? poleAxis : cross( poleAxis, vOutputDirection );\n\n\t\t\t\tif ( all( equal( axis, vec3( 0.0 ) ) ) ) {\n\n\t\t\t\t\taxis = vec3( vOutputDirection.z, 0.0, - vOutputDirection.x );\n\n\t\t\t\t}\n\n\t\t\t\taxis = normalize( axis );\n\n\t\t\t\tgl_FragColor = vec4( 0.0, 0.0, 0.0, 1.0 );\n\t\t\t\tgl_FragColor.rgb += weights[ 0 ] * getSample( 0.0, axis );\n\n\t\t\t\tfor ( int i = 1; i < n; i++ ) {\n\n\t\t\t\t\tif ( i >= samples ) {\n\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t}\n\n\t\t\t\t\tfloat theta = dTheta * float( i );\n\t\t\t\t\tgl_FragColor.rgb += weights[ i ] * getSample( -1.0 * theta, axis );\n\t\t\t\t\tgl_FragColor.rgb += weights[ i ] * getSample( theta, axis );\n\n\t\t\t\t}\n\n\t\t\t}\n\t\t`,blending:ui,depthTest:!1,depthWrite:!1})}function Bf(){return new Qn({name:\"EquirectangularToCubeUV\",uniforms:{envMap:{value:null}},vertexShader:qc(),fragmentShader:`\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform sampler2D envMap;\n\n\t\t\t#include <common>\n\n\t\t\tvoid main() {\n\n\t\t\t\tvec3 outputDirection = normalize( vOutputDirection );\n\t\t\t\tvec2 uv = equirectUv( outputDirection );\n\n\t\t\t\tgl_FragColor = vec4( texture2D ( envMap, uv ).rgb, 1.0 );\n\n\t\t\t}\n\t\t`,blending:ui,depthTest:!1,depthWrite:!1})}function zf(){return new Qn({name:\"CubemapToCubeUV\",uniforms:{envMap:{value:null},flipEnvMap:{value:-1}},vertexShader:qc(),fragmentShader:`\n\n\t\t\tprecision mediump float;\n\t\t\tprecision mediump int;\n\n\t\t\tuniform float flipEnvMap;\n\n\t\t\tvarying vec3 vOutputDirection;\n\n\t\t\tuniform samplerCube envMap;\n\n\t\t\tvoid main() {\n\n\t\t\t\tgl_FragColor = textureCube( envMap, vec3( flipEnvMap * vOutputDirection.x, vOutputDirection.yz ) );\n\n\t\t\t}\n\t\t`,blending:ui,depthTest:!1,depthWrite:!1})}function qc(){return`\n\n\t\tprecision mediump float;\n\t\tprecision mediump int;\n\n\t\tattribute float faceIndex;\n\n\t\tvarying vec3 vOutputDirection;\n\n\t\t// RH coordinate system; PMREM face-indexing convention\n\t\tvec3 getDirection( vec2 uv, float face ) {\n\n\t\t\tuv = 2.0 * uv - 1.0;\n\n\t\t\tvec3 direction = vec3( uv, 1.0 );\n\n\t\t\tif ( face == 0.0 ) {\n\n\t\t\t\tdirection = direction.zyx; // ( 1, v, u ) pos x\n\n\t\t\t} else if ( face == 1.0 ) {\n\n\t\t\t\tdirection = direction.xzy;\n\t\t\t\tdirection.xz *= -1.0; // ( -u, 1, -v ) pos y\n\n\t\t\t} else if ( face == 2.0 ) {\n\n\t\t\t\tdirection.x *= -1.0; // ( -u, v, 1 ) pos z\n\n\t\t\t} else if ( face == 3.0 ) {\n\n\t\t\t\tdirection = direction.zyx;\n\t\t\t\tdirection.xz *= -1.0; // ( -1, v, -u ) neg x\n\n\t\t\t} else if ( face == 4.0 ) {\n\n\t\t\t\tdirection = direction.xzy;\n\t\t\t\tdirection.xy *= -1.0; // ( -u, -1, v ) neg y\n\n\t\t\t} else if ( face == 5.0 ) {\n\n\t\t\t\tdirection.z *= -1.0; // ( u, v, -1 ) neg z\n\n\t\t\t}\n\n\t\t\treturn direction;\n\n\t\t}\n\n\t\tvoid main() {\n\n\t\t\tvOutputDirection = getDirection( uv, faceIndex );\n\t\t\tgl_Position = vec4( position, 1.0 );\n\n\t\t}\n\t`}function Mx(a){let e=new WeakMap,t=null;function n(o){if(o&&o.isTexture){const l=o.mapping,c=l===js||l===to,h=l===Ii||l===Pi;if(c||h)if(o.isRenderTargetTexture&&o.needsPMREMUpdate===!0){o.needsPMREMUpdate=!1;let u=e.get(o);return t===null&&(t=new Wc(a)),u=c?t.fromEquirectangular(o,u):t.fromCubemap(o,u),e.set(o,u),u.texture}else{if(e.has(o))return e.get(o).texture;{const u=o.image;if(c&&u&&u.height>0||h&&u&&i(u)){t===null&&(t=new Wc(a));const f=c?t.fromEquirectangular(o):t.fromCubemap(o);return e.set(o,f),o.addEventListener(\"dispose\",s),f.texture}else return null}}}return o}function i(o){let l=0;const c=6;for(let h=0;h<c;h++)o[h]!==void 0&&l++;return l===c}function s(o){const l=o.target;l.removeEventListener(\"dispose\",s);const c=e.get(l);c!==void 0&&(e.delete(l),c.dispose())}function r(){e=new WeakMap,t!==null&&(t.dispose(),t=null)}return{get:n,dispose:r}}function Sx(a){const e={};function t(n){if(e[n]!==void 0)return e[n];let i;switch(n){case\"WEBGL_depth_texture\":i=a.getExtension(\"WEBGL_depth_texture\")||a.getExtension(\"MOZ_WEBGL_depth_texture\")||a.getExtension(\"WEBKIT_WEBGL_depth_texture\");break;case\"EXT_texture_filter_anisotropic\":i=a.getExtension(\"EXT_texture_filter_anisotropic\")||a.getExtension(\"MOZ_EXT_texture_filter_anisotropic\")||a.getExtension(\"WEBKIT_EXT_texture_filter_anisotropic\");break;case\"WEBGL_compressed_texture_s3tc\":i=a.getExtension(\"WEBGL_compressed_texture_s3tc\")||a.getExtension(\"MOZ_WEBGL_compressed_texture_s3tc\")||a.getExtension(\"WEBKIT_WEBGL_compressed_texture_s3tc\");break;case\"WEBGL_compressed_texture_pvrtc\":i=a.getExtension(\"WEBGL_compressed_texture_pvrtc\")||a.getExtension(\"WEBKIT_WEBGL_compressed_texture_pvrtc\");break;default:i=a.getExtension(n)}return e[n]=i,i}return{has:function(n){return t(n)!==null},init:function(n){n.isWebGL2?t(\"EXT_color_buffer_float\"):(t(\"WEBGL_depth_texture\"),t(\"OES_texture_float\"),t(\"OES_texture_half_float\"),t(\"OES_texture_half_float_linear\"),t(\"OES_standard_derivatives\"),t(\"OES_element_index_uint\"),t(\"OES_vertex_array_object\"),t(\"ANGLE_instanced_arrays\")),t(\"OES_texture_float_linear\"),t(\"EXT_color_buffer_half_float\"),t(\"WEBGL_multisampled_render_to_texture\")},get:function(n){const i=t(n);return i===null&&console.warn(\"THREE.WebGLRenderer: \"+n+\" extension not supported.\"),i}}}function Tx(a,e,t,n){const i={},s=new WeakMap;function r(u){const f=u.target;f.index!==null&&e.remove(f.index);for(const p in f.attributes)e.remove(f.attributes[p]);f.removeEventListener(\"dispose\",r),delete i[f.id];const d=s.get(f);d&&(e.remove(d),s.delete(f)),n.releaseStatesOfGeometry(f),f.isInstancedBufferGeometry===!0&&delete f._maxInstanceCount,t.memory.geometries--}function o(u,f){return i[f.id]===!0||(f.addEventListener(\"dispose\",r),i[f.id]=!0,t.memory.geometries++),f}function l(u){const f=u.attributes;for(const p in f)e.update(f[p],34962);const d=u.morphAttributes;for(const p in d){const m=d[p];for(let g=0,y=m.length;g<y;g++)e.update(m[g],34962)}}function c(u){const f=[],d=u.index,p=u.attributes.position;let m=0;if(d!==null){const x=d.array;m=d.version;for(let b=0,v=x.length;b<v;b+=3){const M=x[b+0],T=x[b+1],C=x[b+2];f.push(M,T,T,C,C,M)}}else{const x=p.array;m=p.version;for(let b=0,v=x.length/3-1;b<v;b+=3){const M=b+0,T=b+1,C=b+2;f.push(M,T,T,C,C,M)}}const g=new(yf(f)?Fc:ba)(f,1);g.version=m;const y=s.get(u);y&&e.remove(y),s.set(u,g)}function h(u){const f=s.get(u);if(f){const d=u.index;d!==null&&f.version<d.version&&c(u)}else c(u);return s.get(u)}return{get:o,update:l,getWireframeAttribute:h}}function Ax(a,e,t,n){const i=n.isWebGL2;let s;function r(f){s=f}let o,l;function c(f){o=f.type,l=f.bytesPerElement}function h(f,d){a.drawElements(s,d,o,f*l),t.update(d,s,1)}function u(f,d,p){if(p===0)return;let m,g;if(i)m=a,g=\"drawElementsInstanced\";else if(m=e.get(\"ANGLE_instanced_arrays\"),g=\"drawElementsInstancedANGLE\",m===null){console.error(\"THREE.WebGLIndexedBufferRenderer: using THREE.InstancedBufferGeometry but hardware does not support extension ANGLE_instanced_arrays.\");return}m[g](s,d,o,f*l,p),t.update(d,s,p)}this.setMode=r,this.setIndex=c,this.render=h,this.renderInstances=u}function Ex(a){const e={geometries:0,textures:0},t={frame:0,calls:0,triangles:0,points:0,lines:0};function n(s,r,o){switch(t.calls++,r){case 4:t.triangles+=o*(s/3);break;case 1:t.lines+=o*(s/2);break;case 3:t.lines+=o*(s-1);break;case 2:t.lines+=o*s;break;case 0:t.points+=o*s;break;default:console.error(\"THREE.WebGLInfo: Unknown draw mode:\",r);break}}function i(){t.frame++,t.calls=0,t.triangles=0,t.points=0,t.lines=0}return{memory:e,render:t,programs:null,autoReset:!0,reset:i,update:n}}function Cx(a,e){return a[0]-e[0]}function Lx(a,e){return Math.abs(e[1])-Math.abs(a[1])}function Xc(a,e){let t=1;const n=e.isInterleavedBufferAttribute?e.data.array:e.array;n instanceof Int8Array?t=127:n instanceof Uint8Array?t=255:n instanceof Uint16Array?t=65535:n instanceof Int16Array?t=32767:n instanceof Int32Array?t=2147483647:console.error(\"THREE.WebGLMorphtargets: Unsupported morph attribute data type: \",n),a.divideScalar(t)}function Rx(a,e,t){const n={},i=new Float32Array(8),s=new WeakMap,r=new ft,o=[];for(let c=0;c<8;c++)o[c]=[c,0];function l(c,h,u,f){const d=c.morphTargetInfluences;if(e.isWebGL2===!0){const p=h.morphAttributes.position||h.morphAttributes.normal||h.morphAttributes.color,m=p!==void 0?p.length:0;let g=s.get(h);if(g===void 0||g.count!==m){let X=function(){K.dispose(),s.delete(h),h.removeEventListener(\"dispose\",X)};g!==void 0&&g.texture.dispose();const b=h.morphAttributes.position!==void 0,v=h.morphAttributes.normal!==void 0,M=h.morphAttributes.color!==void 0,T=h.morphAttributes.position||[],C=h.morphAttributes.normal||[],_=h.morphAttributes.color||[];let E=0;b===!0&&(E=1),v===!0&&(E=2),M===!0&&(E=3);let F=h.attributes.position.count*E,U=1;F>e.maxTextureSize&&(U=Math.ceil(F/e.maxTextureSize),F=e.maxTextureSize);const q=new Float32Array(F*U*4*m),K=new fo(q,F,U,m);K.type=hi,K.needsUpdate=!0;const G=E*4;for(let O=0;O<m;O++){const j=T[O],Y=C[O],W=_[O],Z=F*U*4*O;for(let ee=0;ee<j.count;ee++){const Q=ee*G;b===!0&&(r.fromBufferAttribute(j,ee),j.normalized===!0&&Xc(r,j),q[Z+Q+0]=r.x,q[Z+Q+1]=r.y,q[Z+Q+2]=r.z,q[Z+Q+3]=0),v===!0&&(r.fromBufferAttribute(Y,ee),Y.normalized===!0&&Xc(r,Y),q[Z+Q+4]=r.x,q[Z+Q+5]=r.y,q[Z+Q+6]=r.z,q[Z+Q+7]=0),M===!0&&(r.fromBufferAttribute(W,ee),W.normalized===!0&&Xc(r,W),q[Z+Q+8]=r.x,q[Z+Q+9]=r.y,q[Z+Q+10]=r.z,q[Z+Q+11]=W.itemSize===4?r.w:1)}}g={count:m,texture:K,size:new he(F,U)},s.set(h,g),h.addEventListener(\"dispose\",X)}let y=0;for(let b=0;b<d.length;b++)y+=d[b];const x=h.morphTargetsRelative?1:1-y;f.getUniforms().setValue(a,\"morphTargetBaseInfluence\",x),f.getUniforms().setValue(a,\"morphTargetInfluences\",d),f.getUniforms().setValue(a,\"morphTargetsTexture\",g.texture,t),f.getUniforms().setValue(a,\"morphTargetsTextureSize\",g.size)}else{const p=d===void 0?0:d.length;let m=n[h.id];if(m===void 0||m.length!==p){m=[];for(let v=0;v<p;v++)m[v]=[v,0];n[h.id]=m}for(let v=0;v<p;v++){const M=m[v];M[0]=v,M[1]=d[v]}m.sort(Lx);for(let v=0;v<8;v++)v<p&&m[v][1]?(o[v][0]=m[v][0],o[v][1]=m[v][1]):(o[v][0]=Number.MAX_SAFE_INTEGER,o[v][1]=0);o.sort(Cx);const g=h.morphAttributes.position,y=h.morphAttributes.normal;let x=0;for(let v=0;v<8;v++){const M=o[v],T=M[0],C=M[1];T!==Number.MAX_SAFE_INTEGER&&C?(g&&h.getAttribute(\"morphTarget\"+v)!==g[T]&&h.setAttribute(\"morphTarget\"+v,g[T]),y&&h.getAttribute(\"morphNormal\"+v)!==y[T]&&h.setAttribute(\"morphNormal\"+v,y[T]),i[v]=C,x+=C):(g&&h.hasAttribute(\"morphTarget\"+v)===!0&&h.deleteAttribute(\"morphTarget\"+v),y&&h.hasAttribute(\"morphNormal\"+v)===!0&&h.deleteAttribute(\"morphNormal\"+v),i[v]=0)}const b=h.morphTargetsRelative?1:1-x;f.getUniforms().setValue(a,\"morphTargetBaseInfluence\",b),f.getUniforms().setValue(a,\"morphTargetInfluences\",i)}}return{update:l}}function Ix(a,e,t,n){let i=new WeakMap;function s(l){const c=n.render.frame,h=l.geometry,u=e.get(l,h);return i.get(u)!==c&&(e.update(u),i.set(u,c)),l.isInstancedMesh&&(l.hasEventListener(\"dispose\",o)===!1&&l.addEventListener(\"dispose\",o),t.update(l.instanceMatrix,34962),l.instanceColor!==null&&t.update(l.instanceColor,34962)),u}function r(){i=new WeakMap}function o(l){const c=l.target;c.removeEventListener(\"dispose\",o),t.remove(c.instanceMatrix),c.instanceColor!==null&&t.remove(c.instanceColor)}return{update:s,dispose:r}}const Uf=new Lt,Gf=new fo,Vf=new ha,Hf=new xo,Wf=[],qf=[],Xf=new Float32Array(16),jf=new Float32Array(9),Yf=new Float32Array(4);function mr(a,e,t){const n=a[0];if(n<=0||n>0)return a;const i=e*t;let s=Wf[i];if(s===void 0&&(s=new Float32Array(i),Wf[i]=s),e!==0){n.toArray(s,0);for(let r=1,o=0;r!==e;++r)o+=t,a[r].toArray(s,o)}return s}function hn(a,e){if(a.length!==e.length)return!1;for(let t=0,n=a.length;t<n;t++)if(a[t]!==e[t])return!1;return!0}function fn(a,e){for(let t=0,n=e.length;t<n;t++)a[t]=e[t]}function Fa(a,e){let t=qf[e];t===void 0&&(t=new Int32Array(e),qf[e]=t);for(let n=0;n!==e;++n)t[n]=a.allocateTextureUnit();return t}function Px(a,e){const t=this.cache;t[0]!==e&&(a.uniform1f(this.addr,e),t[0]=e)}function Dx(a,e){const t=this.cache;if(e.x!==void 0)(t[0]!==e.x||t[1]!==e.y)&&(a.uniform2f(this.addr,e.x,e.y),t[0]=e.x,t[1]=e.y);else{if(hn(t,e))return;a.uniform2fv(this.addr,e),fn(t,e)}}function Fx(a,e){const t=this.cache;if(e.x!==void 0)(t[0]!==e.x||t[1]!==e.y||t[2]!==e.z)&&(a.uniform3f(this.addr,e.x,e.y,e.z),t[0]=e.x,t[1]=e.y,t[2]=e.z);else if(e.r!==void 0)(t[0]!==e.r||t[1]!==e.g||t[2]!==e.b)&&(a.uniform3f(this.addr,e.r,e.g,e.b),t[0]=e.r,t[1]=e.g,t[2]=e.b);else{if(hn(t,e))return;a.uniform3fv(this.addr,e),fn(t,e)}}function Nx(a,e){const t=this.cache;if(e.x!==void 0)(t[0]!==e.x||t[1]!==e.y||t[2]!==e.z||t[3]!==e.w)&&(a.uniform4f(this.addr,e.x,e.y,e.z,e.w),t[0]=e.x,t[1]=e.y,t[2]=e.z,t[3]=e.w);else{if(hn(t,e))return;a.uniform4fv(this.addr,e),fn(t,e)}}function kx(a,e){const t=this.cache,n=e.elements;if(n===void 0){if(hn(t,e))return;a.uniformMatrix2fv(this.addr,!1,e),fn(t,e)}else{if(hn(t,n))return;Yf.set(n),a.uniformMatrix2fv(this.addr,!1,Yf),fn(t,n)}}function Ox(a,e){const t=this.cache,n=e.elements;if(n===void 0){if(hn(t,e))return;a.uniformMatrix3fv(this.addr,!1,e),fn(t,e)}else{if(hn(t,n))return;jf.set(n),a.uniformMatrix3fv(this.addr,!1,jf),fn(t,n)}}function Bx(a,e){const t=this.cache,n=e.elements;if(n===void 0){if(hn(t,e))return;a.uniformMatrix4fv(this.addr,!1,e),fn(t,e)}else{if(hn(t,n))return;Xf.set(n),a.uniformMatrix4fv(this.addr,!1,Xf),fn(t,n)}}function zx(a,e){const t=this.cache;t[0]!==e&&(a.uniform1i(this.addr,e),t[0]=e)}function Ux(a,e){const t=this.cache;hn(t,e)||(a.uniform2iv(this.addr,e),fn(t,e))}function Gx(a,e){const t=this.cache;hn(t,e)||(a.uniform3iv(this.addr,e),fn(t,e))}function Vx(a,e){const t=this.cache;hn(t,e)||(a.uniform4iv(this.addr,e),fn(t,e))}function Hx(a,e){const t=this.cache;t[0]!==e&&(a.uniform1ui(this.addr,e),t[0]=e)}function Wx(a,e){const t=this.cache;hn(t,e)||(a.uniform2uiv(this.addr,e),fn(t,e))}function qx(a,e){const t=this.cache;hn(t,e)||(a.uniform3uiv(this.addr,e),fn(t,e))}function Xx(a,e){const t=this.cache;hn(t,e)||(a.uniform4uiv(this.addr,e),fn(t,e))}function jx(a,e,t){const n=this.cache,i=t.allocateTextureUnit();n[0]!==i&&(a.uniform1i(this.addr,i),n[0]=i),t.setTexture2D(e||Uf,i)}function Yx(a,e,t){const n=this.cache,i=t.allocateTextureUnit();n[0]!==i&&(a.uniform1i(this.addr,i),n[0]=i),t.setTexture3D(e||Vf,i)}function Zx(a,e,t){const n=this.cache,i=t.allocateTextureUnit();n[0]!==i&&(a.uniform1i(this.addr,i),n[0]=i),t.setTextureCube(e||Hf,i)}function Kx(a,e,t){const n=this.cache,i=t.allocateTextureUnit();n[0]!==i&&(a.uniform1i(this.addr,i),n[0]=i),t.setTexture2DArray(e||Gf,i)}function Jx(a){switch(a){case 5126:return Px;case 35664:return Dx;case 35665:return Fx;case 35666:return Nx;case 35674:return kx;case 35675:return Ox;case 35676:return Bx;case 5124:case 35670:return zx;case 35667:case 35671:return Ux;case 35668:case 35672:return Gx;case 35669:case 35673:return Vx;case 5125:return Hx;case 36294:return Wx;case 36295:return qx;case 36296:return Xx;case 35678:case 36198:case 36298:case 36306:case 35682:return jx;case 35679:case 36299:case 36307:return Yx;case 35680:case 36300:case 36308:case 36293:return Zx;case 36289:case 36303:case 36311:case 36292:return Kx}}function $x(a,e){a.uniform1fv(this.addr,e)}function Qx(a,e){const t=mr(e,this.size,2);a.uniform2fv(this.addr,t)}function ev(a,e){const t=mr(e,this.size,3);a.uniform3fv(this.addr,t)}function tv(a,e){const t=mr(e,this.size,4);a.uniform4fv(this.addr,t)}function nv(a,e){const t=mr(e,this.size,4);a.uniformMatrix2fv(this.addr,!1,t)}function iv(a,e){const t=mr(e,this.size,9);a.uniformMatrix3fv(this.addr,!1,t)}function sv(a,e){const t=mr(e,this.size,16);a.uniformMatrix4fv(this.addr,!1,t)}function rv(a,e){a.uniform1iv(this.addr,e)}function ov(a,e){a.uniform2iv(this.addr,e)}function av(a,e){a.uniform3iv(this.addr,e)}function lv(a,e){a.uniform4iv(this.addr,e)}function cv(a,e){a.uniform1uiv(this.addr,e)}function uv(a,e){a.uniform2uiv(this.addr,e)}function hv(a,e){a.uniform3uiv(this.addr,e)}function fv(a,e){a.uniform4uiv(this.addr,e)}function dv(a,e,t){const n=e.length,i=Fa(t,n);a.uniform1iv(this.addr,i);for(let s=0;s!==n;++s)t.setTexture2D(e[s]||Uf,i[s])}function pv(a,e,t){const n=e.length,i=Fa(t,n);a.uniform1iv(this.addr,i);for(let s=0;s!==n;++s)t.setTexture3D(e[s]||Vf,i[s])}function mv(a,e,t){const n=e.length,i=Fa(t,n);a.uniform1iv(this.addr,i);for(let s=0;s!==n;++s)t.setTextureCube(e[s]||Hf,i[s])}function gv(a,e,t){const n=e.length,i=Fa(t,n);a.uniform1iv(this.addr,i);for(let s=0;s!==n;++s)t.setTexture2DArray(e[s]||Gf,i[s])}function yv(a){switch(a){case 5126:return $x;case 35664:return Qx;case 35665:return ev;case 35666:return tv;case 35674:return nv;case 35675:return iv;case 35676:return sv;case 5124:case 35670:return rv;case 35667:case 35671:return ov;case 35668:case 35672:return av;case 35669:case 35673:return lv;case 5125:return cv;case 36294:return uv;case 36295:return hv;case 36296:return fv;case 35678:case 36198:case 36298:case 36306:case 35682:return dv;case 35679:case 36299:case 36307:return pv;case 35680:case 36300:case 36308:case 36293:return mv;case 36289:case 36303:case 36311:case 36292:return gv}}class xv{constructor(e,t,n){this.id=e,this.addr=n,this.cache=[],this.setValue=Jx(t.type)}}class vv{constructor(e,t,n){this.id=e,this.addr=n,this.cache=[],this.size=t.size,this.setValue=yv(t.type)}}class _v{constructor(e){this.id=e,this.seq=[],this.map={}}setValue(e,t,n){const i=this.seq;for(let s=0,r=i.length;s!==r;++s){const o=i[s];o.setValue(e,t[o.id],n)}}}const jc=/(\\w+)(\\])?(\\[|\\.)?/g;function Zf(a,e){a.seq.push(e),a.map[e.id]=e}function bv(a,e,t){const n=a.name,i=n.length;for(jc.lastIndex=0;;){const s=jc.exec(n),r=jc.lastIndex;let o=s[1];const l=s[2]===\"]\",c=s[3];if(l&&(o=o|0),c===void 0||c===\"[\"&&r+2===i){Zf(t,c===void 0?new xv(o,a,e):new vv(o,a,e));break}else{let u=t.map[o];u===void 0&&(u=new _v(o),Zf(t,u)),t=u}}}class Na{constructor(e,t){this.seq=[],this.map={};const n=e.getProgramParameter(t,35718);for(let i=0;i<n;++i){const s=e.getActiveUniform(t,i),r=e.getUniformLocation(t,s.name);bv(s,r,this)}}setValue(e,t,n,i){const s=this.map[t];s!==void 0&&s.setValue(e,n,i)}setOptional(e,t,n){const i=t[n];i!==void 0&&this.setValue(e,n,i)}static upload(e,t,n,i){for(let s=0,r=t.length;s!==r;++s){const o=t[s],l=n[o.id];l.needsUpdate!==!1&&o.setValue(e,l.value,i)}}static seqWithValue(e,t){const n=[];for(let i=0,s=e.length;i!==s;++i){const r=e[i];r.id in t&&n.push(r)}return n}}function Kf(a,e,t){const n=a.createShader(e);return a.shaderSource(n,t),a.compileShader(n),n}let wv=0;function Mv(a,e){const t=a.split(`\n`),n=[],i=Math.max(e-6,0),s=Math.min(e+6,t.length);for(let r=i;r<s;r++){const o=r+1;n.push(`${o===e?\">\":\" \"} ${o}: ${t[r]}`)}return n.join(`\n`)}function Sv(a){switch(a){case fi:return[\"Linear\",\"( value )\"];case it:return[\"sRGB\",\"( value )\"];default:return console.warn(\"THREE.WebGLProgram: Unsupported encoding:\",a),[\"Linear\",\"( value )\"]}}function Jf(a,e,t){const n=a.getShaderParameter(e,35713),i=a.getShaderInfoLog(e).trim();if(n&&i===\"\")return\"\";const s=/ERROR: 0:(\\d+)/.exec(i);if(s){const r=parseInt(s[1]);return t.toUpperCase()+`\n\n`+i+`\n\n`+Mv(a.getShaderSource(e),r)}else return i}function Tv(a,e){const t=Sv(e);return\"vec4 \"+a+\"( vec4 value ) { return LinearTo\"+t[0]+t[1]+\"; }\"}function Av(a,e){let t;switch(e){case Gh:t=\"Linear\";break;case Vh:t=\"Reinhard\";break;case Hh:t=\"OptimizedCineon\";break;case Wh:t=\"ACESFilmic\";break;case qh:t=\"Custom\";break;default:console.warn(\"THREE.WebGLProgram: Unsupported toneMapping:\",e),t=\"Linear\"}return\"vec3 \"+a+\"( vec3 color ) { return \"+t+\"ToneMapping( color ); }\"}function Ev(a){return[a.extensionDerivatives||!!a.envMapCubeUVHeight||a.bumpMap||a.tangentSpaceNormalMap||a.clearcoatNormalMap||a.flatShading||a.shaderID===\"physical\"?\"#extension GL_OES_standard_derivatives : enable\":\"\",(a.extensionFragDepth||a.logarithmicDepthBuffer)&&a.rendererExtensionFragDepth?\"#extension GL_EXT_frag_depth : enable\":\"\",a.extensionDrawBuffers&&a.rendererExtensionDrawBuffers?\"#extension GL_EXT_draw_buffers : require\":\"\",(a.extensionShaderTextureLOD||a.envMap||a.transmission)&&a.rendererExtensionShaderTextureLod?\"#extension GL_EXT_shader_texture_lod : enable\":\"\"].filter(vo).join(`\n`)}function Cv(a){const e=[];for(const t in a){const n=a[t];n!==!1&&e.push(\"#define \"+t+\" \"+n)}return e.join(`\n`)}function Lv(a,e){const t={},n=a.getProgramParameter(e,35721);for(let i=0;i<n;i++){const s=a.getActiveAttrib(e,i),r=s.name;let o=1;s.type===35674&&(o=2),s.type===35675&&(o=3),s.type===35676&&(o=4),t[r]={type:s.type,location:a.getAttribLocation(e,r),locationSize:o}}return t}function vo(a){return a!==\"\"}function $f(a,e){return a.replace(/NUM_DIR_LIGHTS/g,e.numDirLights).replace(/NUM_SPOT_LIGHTS/g,e.numSpotLights).replace(/NUM_RECT_AREA_LIGHTS/g,e.numRectAreaLights).replace(/NUM_POINT_LIGHTS/g,e.numPointLights).replace(/NUM_HEMI_LIGHTS/g,e.numHemiLights).replace(/NUM_DIR_LIGHT_SHADOWS/g,e.numDirLightShadows).replace(/NUM_SPOT_LIGHT_SHADOWS/g,e.numSpotLightShadows).replace(/NUM_POINT_LIGHT_SHADOWS/g,e.numPointLightShadows)}function Qf(a,e){return a.replace(/NUM_CLIPPING_PLANES/g,e.numClippingPlanes).replace(/UNION_CLIPPING_PLANES/g,e.numClippingPlanes-e.numClipIntersection)}const Rv=/^[ \\t]*#include +<([\\w\\d./]+)>/gm;function Yc(a){return a.replace(Rv,Iv)}function Iv(a,e){const t=st[e];if(t===void 0)throw new Error(\"Can not resolve #include <\"+e+\">\");return Yc(t)}const Pv=/#pragma unroll_loop[\\s]+?for \\( int i \\= (\\d+)\\; i < (\\d+)\\; i \\+\\+ \\) \\{([\\s\\S]+?)(?=\\})\\}/g,Dv=/#pragma unroll_loop_start\\s+for\\s*\\(\\s*int\\s+i\\s*=\\s*(\\d+)\\s*;\\s*i\\s*<\\s*(\\d+)\\s*;\\s*i\\s*\\+\\+\\s*\\)\\s*{([\\s\\S]+?)}\\s+#pragma unroll_loop_end/g;function ed(a){return a.replace(Dv,td).replace(Pv,Fv)}function Fv(a,e,t,n){return console.warn(\"WebGLProgram: #pragma unroll_loop shader syntax is deprecated. Please use #pragma unroll_loop_start syntax instead.\"),td(a,e,t,n)}function td(a,e,t,n){let i=\"\";for(let s=parseInt(e);s<parseInt(t);s++)i+=n.replace(/\\[\\s*i\\s*\\]/g,\"[ \"+s+\" ]\").replace(/UNROLLED_LOOP_INDEX/g,s);return i}function nd(a){let e=\"precision \"+a.precision+` float;\nprecision `+a.precision+\" int;\";return a.precision===\"highp\"?e+=`\n#define HIGH_PRECISION`:a.precision===\"mediump\"?e+=`\n#define MEDIUM_PRECISION`:a.precision===\"lowp\"&&(e+=`\n#define LOW_PRECISION`),e}function Nv(a){let e=\"SHADOWMAP_TYPE_BASIC\";return a.shadowMapType===Ol?e=\"SHADOWMAP_TYPE_PCF\":a.shadowMapType===xh?e=\"SHADOWMAP_TYPE_PCF_SOFT\":a.shadowMapType===Xs&&(e=\"SHADOWMAP_TYPE_VSM\"),e}function kv(a){let e=\"ENVMAP_TYPE_CUBE\";if(a.envMap)switch(a.envMapMode){case Ii:case Pi:e=\"ENVMAP_TYPE_CUBE\";break;case Ys:e=\"ENVMAP_TYPE_CUBE_UV\";break}return e}function Ov(a){let e=\"ENVMAP_MODE_REFLECTION\";if(a.envMap)switch(a.envMapMode){case Pi:e=\"ENVMAP_MODE_REFRACTION\";break}return e}function Bv(a){let e=\"ENVMAP_BLENDING_NONE\";if(a.envMap)switch(a.combine){case eo:e=\"ENVMAP_BLENDING_MULTIPLY\";break;case zh:e=\"ENVMAP_BLENDING_MIX\";break;case Uh:e=\"ENVMAP_BLENDING_ADD\";break}return e}function zv(a){const e=a.envMapCubeUVHeight;if(e===null)return null;const t=Math.log2(e)-2,n=1/e;return{texelWidth:1/(3*Math.max(Math.pow(2,t),7*16)),texelHeight:n,maxMip:t}}function Uv(a,e,t,n){const i=a.getContext(),s=t.defines;let r=t.vertexShader,o=t.fragmentShader;const l=Nv(t),c=kv(t),h=Ov(t),u=Bv(t),f=zv(t),d=t.isWebGL2?\"\":Ev(t),p=Cv(s),m=i.createProgram();let g,y,x=t.glslVersion?\"#version \"+t.glslVersion+`\n`:\"\";t.isRawShaderMaterial?(g=[p].filter(vo).join(`\n`),g.length>0&&(g+=`\n`),y=[d,p].filter(vo).join(`\n`),y.length>0&&(y+=`\n`)):(g=[nd(t),\"#define SHADER_NAME \"+t.shaderName,p,t.instancing?\"#define USE_INSTANCING\":\"\",t.instancingColor?\"#define USE_INSTANCING_COLOR\":\"\",t.supportsVertexTextures?\"#define VERTEX_TEXTURES\":\"\",t.useFog&&t.fog?\"#define USE_FOG\":\"\",t.useFog&&t.fogExp2?\"#define FOG_EXP2\":\"\",t.map?\"#define USE_MAP\":\"\",t.envMap?\"#define USE_ENVMAP\":\"\",t.envMap?\"#define \"+h:\"\",t.lightMap?\"#define USE_LIGHTMAP\":\"\",t.aoMap?\"#define USE_AOMAP\":\"\",t.emissiveMap?\"#define USE_EMISSIVEMAP\":\"\",t.bumpMap?\"#define USE_BUMPMAP\":\"\",t.normalMap?\"#define USE_NORMALMAP\":\"\",t.normalMap&&t.objectSpaceNormalMap?\"#define OBJECTSPACE_NORMALMAP\":\"\",t.normalMap&&t.tangentSpaceNormalMap?\"#define TANGENTSPACE_NORMALMAP\":\"\",t.clearcoatMap?\"#define USE_CLEARCOATMAP\":\"\",t.clearcoatRoughnessMap?\"#define USE_CLEARCOAT_ROUGHNESSMAP\":\"\",t.clearcoatNormalMap?\"#define USE_CLEARCOAT_NORMALMAP\":\"\",t.iridescenceMap?\"#define USE_IRIDESCENCEMAP\":\"\",t.iridescenceThicknessMap?\"#define USE_IRIDESCENCE_THICKNESSMAP\":\"\",t.displacementMap&&t.supportsVertexTextures?\"#define USE_DISPLACEMENTMAP\":\"\",t.specularMap?\"#define USE_SPECULARMAP\":\"\",t.specularIntensityMap?\"#define USE_SPECULARINTENSITYMAP\":\"\",t.specularColorMap?\"#define USE_SPECULARCOLORMAP\":\"\",t.roughnessMap?\"#define USE_ROUGHNESSMAP\":\"\",t.metalnessMap?\"#define USE_METALNESSMAP\":\"\",t.alphaMap?\"#define USE_ALPHAMAP\":\"\",t.transmission?\"#define USE_TRANSMISSION\":\"\",t.transmissionMap?\"#define USE_TRANSMISSIONMAP\":\"\",t.thicknessMap?\"#define USE_THICKNESSMAP\":\"\",t.sheenColorMap?\"#define USE_SHEENCOLORMAP\":\"\",t.sheenRoughnessMap?\"#define USE_SHEENROUGHNESSMAP\":\"\",t.vertexTangents?\"#define USE_TANGENT\":\"\",t.vertexColors?\"#define USE_COLOR\":\"\",t.vertexAlphas?\"#define USE_COLOR_ALPHA\":\"\",t.vertexUvs?\"#define USE_UV\":\"\",t.uvsVertexOnly?\"#define UVS_VERTEX_ONLY\":\"\",t.flatShading?\"#define FLAT_SHADED\":\"\",t.skinning?\"#define USE_SKINNING\":\"\",t.morphTargets?\"#define USE_MORPHTARGETS\":\"\",t.morphNormals&&t.flatShading===!1?\"#define USE_MORPHNORMALS\":\"\",t.morphColors&&t.isWebGL2?\"#define USE_MORPHCOLORS\":\"\",t.morphTargetsCount>0&&t.isWebGL2?\"#define MORPHTARGETS_TEXTURE\":\"\",t.morphTargetsCount>0&&t.isWebGL2?\"#define MORPHTARGETS_TEXTURE_STRIDE \"+t.morphTextureStride:\"\",t.morphTargetsCount>0&&t.isWebGL2?\"#define MORPHTARGETS_COUNT \"+t.morphTargetsCount:\"\",t.doubleSided?\"#define DOUBLE_SIDED\":\"\",t.flipSided?\"#define FLIP_SIDED\":\"\",t.shadowMapEnabled?\"#define USE_SHADOWMAP\":\"\",t.shadowMapEnabled?\"#define \"+l:\"\",t.sizeAttenuation?\"#define USE_SIZEATTENUATION\":\"\",t.logarithmicDepthBuffer?\"#define USE_LOGDEPTHBUF\":\"\",t.logarithmicDepthBuffer&&t.rendererExtensionFragDepth?\"#define USE_LOGDEPTHBUF_EXT\":\"\",\"uniform mat4 modelMatrix;\",\"uniform mat4 modelViewMatrix;\",\"uniform mat4 projectionMatrix;\",\"uniform mat4 viewMatrix;\",\"uniform mat3 normalMatrix;\",\"uniform vec3 cameraPosition;\",\"uniform bool isOrthographic;\",\"#ifdef USE_INSTANCING\",\"\tattribute mat4 instanceMatrix;\",\"#endif\",\"#ifdef USE_INSTANCING_COLOR\",\"\tattribute vec3 instanceColor;\",\"#endif\",\"attribute vec3 position;\",\"attribute vec3 normal;\",\"attribute vec2 uv;\",\"#ifdef USE_TANGENT\",\"\tattribute vec4 tangent;\",\"#endif\",\"#if defined( USE_COLOR_ALPHA )\",\"\tattribute vec4 color;\",\"#elif defined( USE_COLOR )\",\"\tattribute vec3 color;\",\"#endif\",\"#if ( defined( USE_MORPHTARGETS ) && ! defined( MORPHTARGETS_TEXTURE ) )\",\"\tattribute vec3 morphTarget0;\",\"\tattribute vec3 morphTarget1;\",\"\tattribute vec3 morphTarget2;\",\"\tattribute vec3 morphTarget3;\",\"\t#ifdef USE_MORPHNORMALS\",\"\t\tattribute vec3 morphNormal0;\",\"\t\tattribute vec3 morphNormal1;\",\"\t\tattribute vec3 morphNormal2;\",\"\t\tattribute vec3 morphNormal3;\",\"\t#else\",\"\t\tattribute vec3 morphTarget4;\",\"\t\tattribute vec3 morphTarget5;\",\"\t\tattribute vec3 morphTarget6;\",\"\t\tattribute vec3 morphTarget7;\",\"\t#endif\",\"#endif\",\"#ifdef USE_SKINNING\",\"\tattribute vec4 skinIndex;\",\"\tattribute vec4 skinWeight;\",\"#endif\",`\n`].filter(vo).join(`\n`),y=[d,nd(t),\"#define SHADER_NAME \"+t.shaderName,p,t.useFog&&t.fog?\"#define USE_FOG\":\"\",t.useFog&&t.fogExp2?\"#define FOG_EXP2\":\"\",t.map?\"#define USE_MAP\":\"\",t.matcap?\"#define USE_MATCAP\":\"\",t.envMap?\"#define USE_ENVMAP\":\"\",t.envMap?\"#define \"+c:\"\",t.envMap?\"#define \"+h:\"\",t.envMap?\"#define \"+u:\"\",f?\"#define CUBEUV_TEXEL_WIDTH \"+f.texelWidth:\"\",f?\"#define CUBEUV_TEXEL_HEIGHT \"+f.texelHeight:\"\",f?\"#define CUBEUV_MAX_MIP \"+f.maxMip+\".0\":\"\",t.lightMap?\"#define USE_LIGHTMAP\":\"\",t.aoMap?\"#define USE_AOMAP\":\"\",t.emissiveMap?\"#define USE_EMISSIVEMAP\":\"\",t.bumpMap?\"#define USE_BUMPMAP\":\"\",t.normalMap?\"#define USE_NORMALMAP\":\"\",t.normalMap&&t.objectSpaceNormalMap?\"#define OBJECTSPACE_NORMALMAP\":\"\",t.normalMap&&t.tangentSpaceNormalMap?\"#define TANGENTSPACE_NORMALMAP\":\"\",t.clearcoat?\"#define USE_CLEARCOAT\":\"\",t.clearcoatMap?\"#define USE_CLEARCOATMAP\":\"\",t.clearcoatRoughnessMap?\"#define USE_CLEARCOAT_ROUGHNESSMAP\":\"\",t.clearcoatNormalMap?\"#define USE_CLEARCOAT_NORMALMAP\":\"\",t.iridescence?\"#define USE_IRIDESCENCE\":\"\",t.iridescenceMap?\"#define USE_IRIDESCENCEMAP\":\"\",t.iridescenceThicknessMap?\"#define USE_IRIDESCENCE_THICKNESSMAP\":\"\",t.specularMap?\"#define USE_SPECULARMAP\":\"\",t.specularIntensityMap?\"#define USE_SPECULARINTENSITYMAP\":\"\",t.specularColorMap?\"#define USE_SPECULARCOLORMAP\":\"\",t.roughnessMap?\"#define USE_ROUGHNESSMAP\":\"\",t.metalnessMap?\"#define USE_METALNESSMAP\":\"\",t.alphaMap?\"#define USE_ALPHAMAP\":\"\",t.alphaTest?\"#define USE_ALPHATEST\":\"\",t.sheen?\"#define USE_SHEEN\":\"\",t.sheenColorMap?\"#define USE_SHEENCOLORMAP\":\"\",t.sheenRoughnessMap?\"#define USE_SHEENROUGHNESSMAP\":\"\",t.transmission?\"#define USE_TRANSMISSION\":\"\",t.transmissionMap?\"#define USE_TRANSMISSIONMAP\":\"\",t.thicknessMap?\"#define USE_THICKNESSMAP\":\"\",t.decodeVideoTexture?\"#define DECODE_VIDEO_TEXTURE\":\"\",t.vertexTangents?\"#define USE_TANGENT\":\"\",t.vertexColors||t.instancingColor?\"#define USE_COLOR\":\"\",t.vertexAlphas?\"#define USE_COLOR_ALPHA\":\"\",t.vertexUvs?\"#define USE_UV\":\"\",t.uvsVertexOnly?\"#define UVS_VERTEX_ONLY\":\"\",t.gradientMap?\"#define USE_GRADIENTMAP\":\"\",t.flatShading?\"#define FLAT_SHADED\":\"\",t.doubleSided?\"#define DOUBLE_SIDED\":\"\",t.flipSided?\"#define FLIP_SIDED\":\"\",t.shadowMapEnabled?\"#define USE_SHADOWMAP\":\"\",t.shadowMapEnabled?\"#define \"+l:\"\",t.premultipliedAlpha?\"#define PREMULTIPLIED_ALPHA\":\"\",t.physicallyCorrectLights?\"#define PHYSICALLY_CORRECT_LIGHTS\":\"\",t.logarithmicDepthBuffer?\"#define USE_LOGDEPTHBUF\":\"\",t.logarithmicDepthBuffer&&t.rendererExtensionFragDepth?\"#define USE_LOGDEPTHBUF_EXT\":\"\",\"uniform mat4 viewMatrix;\",\"uniform vec3 cameraPosition;\",\"uniform bool isOrthographic;\",t.toneMapping!==Zn?\"#define TONE_MAPPING\":\"\",t.toneMapping!==Zn?st.tonemapping_pars_fragment:\"\",t.toneMapping!==Zn?Av(\"toneMapping\",t.toneMapping):\"\",t.dithering?\"#define DITHERING\":\"\",t.opaque?\"#define OPAQUE\":\"\",st.encodings_pars_fragment,Tv(\"linearToOutputTexel\",t.outputEncoding),t.useDepthPacking?\"#define DEPTH_PACKING \"+t.depthPacking:\"\",`\n`].filter(vo).join(`\n`)),r=Yc(r),r=$f(r,t),r=Qf(r,t),o=Yc(o),o=$f(o,t),o=Qf(o,t),r=ed(r),o=ed(o),t.isWebGL2&&t.isRawShaderMaterial!==!0&&(x=`#version 300 es\n`,g=[\"precision mediump sampler2DArray;\",\"#define attribute in\",\"#define varying out\",\"#define texture2D texture\"].join(`\n`)+`\n`+g,y=[\"#define varying in\",t.glslVersion===gc?\"\":\"layout(location = 0) out highp vec4 pc_fragColor;\",t.glslVersion===gc?\"\":\"#define gl_FragColor pc_fragColor\",\"#define gl_FragDepthEXT gl_FragDepth\",\"#define texture2D texture\",\"#define textureCube texture\",\"#define texture2DProj textureProj\",\"#define texture2DLodEXT textureLod\",\"#define texture2DProjLodEXT textureProjLod\",\"#define textureCubeLodEXT textureLod\",\"#define texture2DGradEXT textureGrad\",\"#define texture2DProjGradEXT textureProjGrad\",\"#define textureCubeGradEXT textureGrad\"].join(`\n`)+`\n`+y);const b=x+g+r,v=x+y+o,M=Kf(i,35633,b),T=Kf(i,35632,v);if(i.attachShader(m,M),i.attachShader(m,T),t.index0AttributeName!==void 0?i.bindAttribLocation(m,0,t.index0AttributeName):t.morphTargets===!0&&i.bindAttribLocation(m,0,\"position\"),i.linkProgram(m),a.debug.checkShaderErrors){const E=i.getProgramInfoLog(m).trim(),F=i.getShaderInfoLog(M).trim(),U=i.getShaderInfoLog(T).trim();let q=!0,K=!0;if(i.getProgramParameter(m,35714)===!1){q=!1;const G=Jf(i,M,\"vertex\"),X=Jf(i,T,\"fragment\");console.error(\"THREE.WebGLProgram: Shader Error \"+i.getError()+\" - VALIDATE_STATUS \"+i.getProgramParameter(m,35715)+`\n\nProgram Info Log: `+E+`\n`+G+`\n`+X)}else E!==\"\"?console.warn(\"THREE.WebGLProgram: Program Info Log:\",E):(F===\"\"||U===\"\")&&(K=!1);K&&(this.diagnostics={runnable:q,programLog:E,vertexShader:{log:F,prefix:g},fragmentShader:{log:U,prefix:y}})}i.deleteShader(M),i.deleteShader(T);let C;this.getUniforms=function(){return C===void 0&&(C=new Na(i,m)),C};let _;return this.getAttributes=function(){return _===void 0&&(_=Lv(i,m)),_},this.destroy=function(){n.releaseStatesOfProgram(this),i.deleteProgram(m),this.program=void 0},this.name=t.shaderName,this.id=wv++,this.cacheKey=e,this.usedTimes=1,this.program=m,this.vertexShader=M,this.fragmentShader=T,this}let Gv=0;class Vv{constructor(){this.shaderCache=new Map,this.materialCache=new Map}update(e){const t=e.vertexShader,n=e.fragmentShader,i=this._getShaderStage(t),s=this._getShaderStage(n),r=this._getShaderCacheForMaterial(e);return r.has(i)===!1&&(r.add(i),i.usedTimes++),r.has(s)===!1&&(r.add(s),s.usedTimes++),this}remove(e){const t=this.materialCache.get(e);for(const n of t)n.usedTimes--,n.usedTimes===0&&this.shaderCache.delete(n.code);return this.materialCache.delete(e),this}getVertexShaderID(e){return this._getShaderStage(e.vertexShader).id}getFragmentShaderID(e){return this._getShaderStage(e.fragmentShader).id}dispose(){this.shaderCache.clear(),this.materialCache.clear()}_getShaderCacheForMaterial(e){const t=this.materialCache;return t.has(e)===!1&&t.set(e,new Set),t.get(e)}_getShaderStage(e){const t=this.shaderCache;if(t.has(e)===!1){const n=new Hv(e);t.set(e,n)}return t.get(e)}}class Hv{constructor(e){this.id=Gv++,this.code=e,this.usedTimes=0}}function Wv(a,e,t,n,i,s,r){const o=new xa,l=new Vv,c=[],h=i.isWebGL2,u=i.logarithmicDepthBuffer,f=i.vertexTextures;let d=i.precision;const p={MeshDepthMaterial:\"depth\",MeshDistanceMaterial:\"distanceRGBA\",MeshNormalMaterial:\"normal\",MeshBasicMaterial:\"basic\",MeshLambertMaterial:\"lambert\",MeshPhongMaterial:\"phong\",MeshToonMaterial:\"toon\",MeshStandardMaterial:\"physical\",MeshPhysicalMaterial:\"physical\",MeshMatcapMaterial:\"matcap\",LineBasicMaterial:\"basic\",LineDashedMaterial:\"dashed\",PointsMaterial:\"points\",ShadowMaterial:\"shadow\",SpriteMaterial:\"sprite\"};function m(_,E,F,U,q){const K=U.fog,G=q.geometry,X=_.isMeshStandardMaterial?U.environment:null,O=(_.isMeshStandardMaterial?t:e).get(_.envMap||X),j=!!O&&O.mapping===Ys?O.image.height:null,Y=p[_.type];_.precision!==null&&(d=i.getMaxPrecision(_.precision),d!==_.precision&&console.warn(\"THREE.WebGLProgram.getParameters:\",_.precision,\"not supported, using\",d,\"instead.\"));const W=G.morphAttributes.position||G.morphAttributes.normal||G.morphAttributes.color,Z=W!==void 0?W.length:0;let ee=0;G.morphAttributes.position!==void 0&&(ee=1),G.morphAttributes.normal!==void 0&&(ee=2),G.morphAttributes.color!==void 0&&(ee=3);let Q,ie,ae,re;if(Y){const Ve=qn[Y];Q=Ve.vertexShader,ie=Ve.fragmentShader}else Q=_.vertexShader,ie=_.fragmentShader,l.update(_),ae=l.getVertexShaderID(_),re=l.getFragmentShaderID(_);const H=a.getRenderTarget(),ge=_.alphaTest>0,we=_.clearcoat>0,Fe=_.iridescence>0;return{isWebGL2:h,shaderID:Y,shaderName:_.type,vertexShader:Q,fragmentShader:ie,defines:_.defines,customVertexShaderID:ae,customFragmentShaderID:re,isRawShaderMaterial:_.isRawShaderMaterial===!0,glslVersion:_.glslVersion,precision:d,instancing:q.isInstancedMesh===!0,instancingColor:q.isInstancedMesh===!0&&q.instanceColor!==null,supportsVertexTextures:f,outputEncoding:H===null?a.outputEncoding:H.isXRRenderTarget===!0?H.texture.encoding:fi,map:!!_.map,matcap:!!_.matcap,envMap:!!O,envMapMode:O&&O.mapping,envMapCubeUVHeight:j,lightMap:!!_.lightMap,aoMap:!!_.aoMap,emissiveMap:!!_.emissiveMap,bumpMap:!!_.bumpMap,normalMap:!!_.normalMap,objectSpaceNormalMap:_.normalMapType===df,tangentSpaceNormalMap:_.normalMapType===ki,decodeVideoTexture:!!_.map&&_.map.isVideoTexture===!0&&_.map.encoding===it,clearcoat:we,clearcoatMap:we&&!!_.clearcoatMap,clearcoatRoughnessMap:we&&!!_.clearcoatRoughnessMap,clearcoatNormalMap:we&&!!_.clearcoatNormalMap,iridescence:Fe,iridescenceMap:Fe&&!!_.iridescenceMap,iridescenceThicknessMap:Fe&&!!_.iridescenceThicknessMap,displacementMap:!!_.displacementMap,roughnessMap:!!_.roughnessMap,metalnessMap:!!_.metalnessMap,specularMap:!!_.specularMap,specularIntensityMap:!!_.specularIntensityMap,specularColorMap:!!_.specularColorMap,opaque:_.transparent===!1&&_.blending===ls,alphaMap:!!_.alphaMap,alphaTest:ge,gradientMap:!!_.gradientMap,sheen:_.sheen>0,sheenColorMap:!!_.sheenColorMap,sheenRoughnessMap:!!_.sheenRoughnessMap,transmission:_.transmission>0,transmissionMap:!!_.transmissionMap,thicknessMap:!!_.thicknessMap,combine:_.combine,vertexTangents:!!_.normalMap&&!!G.attributes.tangent,vertexColors:_.vertexColors,vertexAlphas:_.vertexColors===!0&&!!G.attributes.color&&G.attributes.color.itemSize===4,vertexUvs:!!_.map||!!_.bumpMap||!!_.normalMap||!!_.specularMap||!!_.alphaMap||!!_.emissiveMap||!!_.roughnessMap||!!_.metalnessMap||!!_.clearcoatMap||!!_.clearcoatRoughnessMap||!!_.clearcoatNormalMap||!!_.iridescenceMap||!!_.iridescenceThicknessMap||!!_.displacementMap||!!_.transmissionMap||!!_.thicknessMap||!!_.specularIntensityMap||!!_.specularColorMap||!!_.sheenColorMap||!!_.sheenRoughnessMap,uvsVertexOnly:!(!!_.map||!!_.bumpMap||!!_.normalMap||!!_.specularMap||!!_.alphaMap||!!_.emissiveMap||!!_.roughnessMap||!!_.metalnessMap||!!_.clearcoatNormalMap||!!_.iridescenceMap||!!_.iridescenceThicknessMap||_.transmission>0||!!_.transmissionMap||!!_.thicknessMap||!!_.specularIntensityMap||!!_.specularColorMap||_.sheen>0||!!_.sheenColorMap||!!_.sheenRoughnessMap)&&!!_.displacementMap,fog:!!K,useFog:_.fog===!0,fogExp2:K&&K.isFogExp2,flatShading:!!_.flatShading,sizeAttenuation:_.sizeAttenuation,logarithmicDepthBuffer:u,skinning:q.isSkinnedMesh===!0,morphTargets:G.morphAttributes.position!==void 0,morphNormals:G.morphAttributes.normal!==void 0,morphColors:G.morphAttributes.color!==void 0,morphTargetsCount:Z,morphTextureStride:ee,numDirLights:E.directional.length,numPointLights:E.point.length,numSpotLights:E.spot.length,numRectAreaLights:E.rectArea.length,numHemiLights:E.hemi.length,numDirLightShadows:E.directionalShadowMap.length,numPointLightShadows:E.pointShadowMap.length,numSpotLightShadows:E.spotShadowMap.length,numClippingPlanes:r.numPlanes,numClipIntersection:r.numIntersection,dithering:_.dithering,shadowMapEnabled:a.shadowMap.enabled&&F.length>0,shadowMapType:a.shadowMap.type,toneMapping:_.toneMapped?a.toneMapping:Zn,physicallyCorrectLights:a.physicallyCorrectLights,premultipliedAlpha:_.premultipliedAlpha,doubleSided:_.side===ci,flipSided:_.side===Cn,useDepthPacking:!!_.depthPacking,depthPacking:_.depthPacking||0,index0AttributeName:_.index0AttributeName,extensionDerivatives:_.extensions&&_.extensions.derivatives,extensionFragDepth:_.extensions&&_.extensions.fragDepth,extensionDrawBuffers:_.extensions&&_.extensions.drawBuffers,extensionShaderTextureLOD:_.extensions&&_.extensions.shaderTextureLOD,rendererExtensionFragDepth:h||n.has(\"EXT_frag_depth\"),rendererExtensionDrawBuffers:h||n.has(\"WEBGL_draw_buffers\"),rendererExtensionShaderTextureLod:h||n.has(\"EXT_shader_texture_lod\"),customProgramCacheKey:_.customProgramCacheKey()}}function g(_){const E=[];if(_.shaderID?E.push(_.shaderID):(E.push(_.customVertexShaderID),E.push(_.customFragmentShaderID)),_.defines!==void 0)for(const F in _.defines)E.push(F),E.push(_.defines[F]);return _.isRawShaderMaterial===!1&&(y(E,_),x(E,_),E.push(a.outputEncoding)),E.push(_.customProgramCacheKey),E.join()}function y(_,E){_.push(E.precision),_.push(E.outputEncoding),_.push(E.envMapMode),_.push(E.envMapCubeUVHeight),_.push(E.combine),_.push(E.vertexUvs),_.push(E.fogExp2),_.push(E.sizeAttenuation),_.push(E.morphTargetsCount),_.push(E.morphAttributeCount),_.push(E.numDirLights),_.push(E.numPointLights),_.push(E.numSpotLights),_.push(E.numHemiLights),_.push(E.numRectAreaLights),_.push(E.numDirLightShadows),_.push(E.numPointLightShadows),_.push(E.numSpotLightShadows),_.push(E.shadowMapType),_.push(E.toneMapping),_.push(E.numClippingPlanes),_.push(E.numClipIntersection),_.push(E.depthPacking)}function x(_,E){o.disableAll(),E.isWebGL2&&o.enable(0),E.supportsVertexTextures&&o.enable(1),E.instancing&&o.enable(2),E.instancingColor&&o.enable(3),E.map&&o.enable(4),E.matcap&&o.enable(5),E.envMap&&o.enable(6),E.lightMap&&o.enable(7),E.aoMap&&o.enable(8),E.emissiveMap&&o.enable(9),E.bumpMap&&o.enable(10),E.normalMap&&o.enable(11),E.objectSpaceNormalMap&&o.enable(12),E.tangentSpaceNormalMap&&o.enable(13),E.clearcoat&&o.enable(14),E.clearcoatMap&&o.enable(15),E.clearcoatRoughnessMap&&o.enable(16),E.clearcoatNormalMap&&o.enable(17),E.iridescence&&o.enable(18),E.iridescenceMap&&o.enable(19),E.iridescenceThicknessMap&&o.enable(20),E.displacementMap&&o.enable(21),E.specularMap&&o.enable(22),E.roughnessMap&&o.enable(23),E.metalnessMap&&o.enable(24),E.gradientMap&&o.enable(25),E.alphaMap&&o.enable(26),E.alphaTest&&o.enable(27),E.vertexColors&&o.enable(28),E.vertexAlphas&&o.enable(29),E.vertexUvs&&o.enable(30),E.vertexTangents&&o.enable(31),E.uvsVertexOnly&&o.enable(32),E.fog&&o.enable(33),_.push(o.mask),o.disableAll(),E.useFog&&o.enable(0),E.flatShading&&o.enable(1),E.logarithmicDepthBuffer&&o.enable(2),E.skinning&&o.enable(3),E.morphTargets&&o.enable(4),E.morphNormals&&o.enable(5),E.morphColors&&o.enable(6),E.premultipliedAlpha&&o.enable(7),E.shadowMapEnabled&&o.enable(8),E.physicallyCorrectLights&&o.enable(9),E.doubleSided&&o.enable(10),E.flipSided&&o.enable(11),E.useDepthPacking&&o.enable(12),E.dithering&&o.enable(13),E.specularIntensityMap&&o.enable(14),E.specularColorMap&&o.enable(15),E.transmission&&o.enable(16),E.transmissionMap&&o.enable(17),E.thicknessMap&&o.enable(18),E.sheen&&o.enable(19),E.sheenColorMap&&o.enable(20),E.sheenRoughnessMap&&o.enable(21),E.decodeVideoTexture&&o.enable(22),E.opaque&&o.enable(23),_.push(o.mask)}function b(_){const E=p[_.type];let F;if(E){const U=qn[E];F=Rf.clone(U.uniforms)}else F=_.uniforms;return F}function v(_,E){let F;for(let U=0,q=c.length;U<q;U++){const K=c[U];if(K.cacheKey===E){F=K,++F.usedTimes;break}}return F===void 0&&(F=new Uv(a,E,_,s),c.push(F)),F}function M(_){if(--_.usedTimes===0){const E=c.indexOf(_);c[E]=c[c.length-1],c.pop(),_.destroy()}}function T(_){l.remove(_)}function C(){l.dispose()}return{getParameters:m,getProgramCacheKey:g,getUniforms:b,acquireProgram:v,releaseProgram:M,releaseShaderCache:T,programs:c,dispose:C}}function qv(){let a=new WeakMap;function e(s){let r=a.get(s);return r===void 0&&(r={},a.set(s,r)),r}function t(s){a.delete(s)}function n(s,r,o){a.get(s)[r]=o}function i(){a=new WeakMap}return{get:e,remove:t,update:n,dispose:i}}function Xv(a,e){return a.groupOrder!==e.groupOrder?a.groupOrder-e.groupOrder:a.renderOrder!==e.renderOrder?a.renderOrder-e.renderOrder:a.material.id!==e.material.id?a.material.id-e.material.id:a.z!==e.z?a.z-e.z:a.id-e.id}function id(a,e){return a.groupOrder!==e.groupOrder?a.groupOrder-e.groupOrder:a.renderOrder!==e.renderOrder?a.renderOrder-e.renderOrder:a.z!==e.z?e.z-a.z:a.id-e.id}function sd(){const a=[];let e=0;const t=[],n=[],i=[];function s(){e=0,t.length=0,n.length=0,i.length=0}function r(u,f,d,p,m,g){let y=a[e];return y===void 0?(y={id:u.id,object:u,geometry:f,material:d,groupOrder:p,renderOrder:u.renderOrder,z:m,group:g},a[e]=y):(y.id=u.id,y.object=u,y.geometry=f,y.material=d,y.groupOrder=p,y.renderOrder=u.renderOrder,y.z=m,y.group=g),e++,y}function o(u,f,d,p,m,g){const y=r(u,f,d,p,m,g);d.transmission>0?n.push(y):d.transparent===!0?i.push(y):t.push(y)}function l(u,f,d,p,m,g){const y=r(u,f,d,p,m,g);d.transmission>0?n.unshift(y):d.transparent===!0?i.unshift(y):t.unshift(y)}function c(u,f){t.length>1&&t.sort(u||Xv),n.length>1&&n.sort(f||id),i.length>1&&i.sort(f||id)}function h(){for(let u=e,f=a.length;u<f;u++){const d=a[u];if(d.id===null)break;d.id=null,d.object=null,d.geometry=null,d.material=null,d.group=null}}return{opaque:t,transmissive:n,transparent:i,init:s,push:o,unshift:l,finish:h,sort:c}}function jv(){let a=new WeakMap;function e(n,i){let s;return a.has(n)===!1?(s=new sd,a.set(n,[s])):i>=a.get(n).length?(s=new sd,a.get(n).push(s)):s=a.get(n)[i],s}function t(){a=new WeakMap}return{get:e,dispose:t}}function Yv(){const a={};return{get:function(e){if(a[e.id]!==void 0)return a[e.id];let t;switch(e.type){case\"DirectionalLight\":t={direction:new I,color:new be};break;case\"SpotLight\":t={position:new I,direction:new I,color:new be,distance:0,coneCos:0,penumbraCos:0,decay:0};break;case\"PointLight\":t={position:new I,color:new be,distance:0,decay:0};break;case\"HemisphereLight\":t={direction:new I,skyColor:new be,groundColor:new be};break;case\"RectAreaLight\":t={color:new be,position:new I,halfWidth:new I,halfHeight:new I};break}return a[e.id]=t,t}}}function Zv(){const a={};return{get:function(e){if(a[e.id]!==void 0)return a[e.id];let t;switch(e.type){case\"DirectionalLight\":t={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new he};break;case\"SpotLight\":t={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new he};break;case\"PointLight\":t={shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new he,shadowCameraNear:1,shadowCameraFar:1e3};break}return a[e.id]=t,t}}}let Kv=0;function Jv(a,e){return(e.castShadow?1:0)-(a.castShadow?1:0)}function $v(a,e){const t=new Yv,n=Zv(),i={version:0,hash:{directionalLength:-1,pointLength:-1,spotLength:-1,rectAreaLength:-1,hemiLength:-1,numDirectionalShadows:-1,numPointShadows:-1,numSpotShadows:-1},ambient:[0,0,0],probe:[],directional:[],directionalShadow:[],directionalShadowMap:[],directionalShadowMatrix:[],spot:[],spotShadow:[],spotShadowMap:[],spotShadowMatrix:[],rectArea:[],rectAreaLTC1:null,rectAreaLTC2:null,point:[],pointShadow:[],pointShadowMap:[],pointShadowMatrix:[],hemi:[]};for(let h=0;h<9;h++)i.probe.push(new I);const s=new I,r=new Ne,o=new Ne;function l(h,u){let f=0,d=0,p=0;for(let E=0;E<9;E++)i.probe[E].set(0,0,0);let m=0,g=0,y=0,x=0,b=0,v=0,M=0,T=0;h.sort(Jv);const C=u!==!0?Math.PI:1;for(let E=0,F=h.length;E<F;E++){const U=h[E],q=U.color,K=U.intensity,G=U.distance,X=U.shadow&&U.shadow.map?U.shadow.map.texture:null;if(U.isAmbientLight)f+=q.r*K*C,d+=q.g*K*C,p+=q.b*K*C;else if(U.isLightProbe)for(let O=0;O<9;O++)i.probe[O].addScaledVector(U.sh.coefficients[O],K);else if(U.isDirectionalLight){const O=t.get(U);if(O.color.copy(U.color).multiplyScalar(U.intensity*C),U.castShadow){const j=U.shadow,Y=n.get(U);Y.shadowBias=j.bias,Y.shadowNormalBias=j.normalBias,Y.shadowRadius=j.radius,Y.shadowMapSize=j.mapSize,i.directionalShadow[m]=Y,i.directionalShadowMap[m]=X,i.directionalShadowMatrix[m]=U.shadow.matrix,v++}i.directional[m]=O,m++}else if(U.isSpotLight){const O=t.get(U);if(O.position.setFromMatrixPosition(U.matrixWorld),O.color.copy(q).multiplyScalar(K*C),O.distance=G,O.coneCos=Math.cos(U.angle),O.penumbraCos=Math.cos(U.angle*(1-U.penumbra)),O.decay=U.decay,U.castShadow){const j=U.shadow,Y=n.get(U);Y.shadowBias=j.bias,Y.shadowNormalBias=j.normalBias,Y.shadowRadius=j.radius,Y.shadowMapSize=j.mapSize,i.spotShadow[y]=Y,i.spotShadowMap[y]=X,i.spotShadowMatrix[y]=U.shadow.matrix,T++}i.spot[y]=O,y++}else if(U.isRectAreaLight){const O=t.get(U);O.color.copy(q).multiplyScalar(K),O.halfWidth.set(U.width*.5,0,0),O.halfHeight.set(0,U.height*.5,0),i.rectArea[x]=O,x++}else if(U.isPointLight){const O=t.get(U);if(O.color.copy(U.color).multiplyScalar(U.intensity*C),O.distance=U.distance,O.decay=U.decay,U.castShadow){const j=U.shadow,Y=n.get(U);Y.shadowBias=j.bias,Y.shadowNormalBias=j.normalBias,Y.shadowRadius=j.radius,Y.shadowMapSize=j.mapSize,Y.shadowCameraNear=j.camera.near,Y.shadowCameraFar=j.camera.far,i.pointShadow[g]=Y,i.pointShadowMap[g]=X,i.pointShadowMatrix[g]=U.shadow.matrix,M++}i.point[g]=O,g++}else if(U.isHemisphereLight){const O=t.get(U);O.skyColor.copy(U.color).multiplyScalar(K*C),O.groundColor.copy(U.groundColor).multiplyScalar(K*C),i.hemi[b]=O,b++}}x>0&&(e.isWebGL2||a.has(\"OES_texture_float_linear\")===!0?(i.rectAreaLTC1=De.LTC_FLOAT_1,i.rectAreaLTC2=De.LTC_FLOAT_2):a.has(\"OES_texture_half_float_linear\")===!0?(i.rectAreaLTC1=De.LTC_HALF_1,i.rectAreaLTC2=De.LTC_HALF_2):console.error(\"THREE.WebGLRenderer: Unable to use RectAreaLight. Missing WebGL extensions.\")),i.ambient[0]=f,i.ambient[1]=d,i.ambient[2]=p;const _=i.hash;(_.directionalLength!==m||_.pointLength!==g||_.spotLength!==y||_.rectAreaLength!==x||_.hemiLength!==b||_.numDirectionalShadows!==v||_.numPointShadows!==M||_.numSpotShadows!==T)&&(i.directional.length=m,i.spot.length=y,i.rectArea.length=x,i.point.length=g,i.hemi.length=b,i.directionalShadow.length=v,i.directionalShadowMap.length=v,i.pointShadow.length=M,i.pointShadowMap.length=M,i.spotShadow.length=T,i.spotShadowMap.length=T,i.directionalShadowMatrix.length=v,i.pointShadowMatrix.length=M,i.spotShadowMatrix.length=T,_.directionalLength=m,_.pointLength=g,_.spotLength=y,_.rectAreaLength=x,_.hemiLength=b,_.numDirectionalShadows=v,_.numPointShadows=M,_.numSpotShadows=T,i.version=Kv++)}function c(h,u){let f=0,d=0,p=0,m=0,g=0;const y=u.matrixWorldInverse;for(let x=0,b=h.length;x<b;x++){const v=h[x];if(v.isDirectionalLight){const M=i.directional[f];M.direction.setFromMatrixPosition(v.matrixWorld),s.setFromMatrixPosition(v.target.matrixWorld),M.direction.sub(s),M.direction.transformDirection(y),f++}else if(v.isSpotLight){const M=i.spot[p];M.position.setFromMatrixPosition(v.matrixWorld),M.position.applyMatrix4(y),M.direction.setFromMatrixPosition(v.matrixWorld),s.setFromMatrixPosition(v.target.matrixWorld),M.direction.sub(s),M.direction.transformDirection(y),p++}else if(v.isRectAreaLight){const M=i.rectArea[m];M.position.setFromMatrixPosition(v.matrixWorld),M.position.applyMatrix4(y),o.identity(),r.copy(v.matrixWorld),r.premultiply(y),o.extractRotation(r),M.halfWidth.set(v.width*.5,0,0),M.halfHeight.set(0,v.height*.5,0),M.halfWidth.applyMatrix4(o),M.halfHeight.applyMatrix4(o),m++}else if(v.isPointLight){const M=i.point[d];M.position.setFromMatrixPosition(v.matrixWorld),M.position.applyMatrix4(y),d++}else if(v.isHemisphereLight){const M=i.hemi[g];M.direction.setFromMatrixPosition(v.matrixWorld),M.direction.transformDirection(y),g++}}}return{setup:l,setupView:c,state:i}}function rd(a,e){const t=new $v(a,e),n=[],i=[];function s(){n.length=0,i.length=0}function r(u){n.push(u)}function o(u){i.push(u)}function l(u){t.setup(n,u)}function c(u){t.setupView(n,u)}return{init:s,state:{lightsArray:n,shadowsArray:i,lights:t},setupLights:l,setupLightsView:c,pushLight:r,pushShadow:o}}function Qv(a,e){let t=new WeakMap;function n(s,r=0){let o;return t.has(s)===!1?(o=new rd(a,e),t.set(s,[o])):r>=t.get(s).length?(o=new rd(a,e),t.get(s).push(o)):o=t.get(s)[r],o}function i(){t=new WeakMap}return{get:n,dispose:i}}class Zc extends Gt{constructor(e){super(),this.isMeshDepthMaterial=!0,this.type=\"MeshDepthMaterial\",this.depthPacking=hf,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.setValues(e)}copy(e){return super.copy(e),this.depthPacking=e.depthPacking,this.map=e.map,this.alphaMap=e.alphaMap,this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this}}class Kc extends Gt{constructor(e){super(),this.isMeshDistanceMaterial=!0,this.type=\"MeshDistanceMaterial\",this.referencePosition=new I,this.nearDistance=1,this.farDistance=1e3,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.setValues(e)}copy(e){return super.copy(e),this.referencePosition.copy(e.referencePosition),this.nearDistance=e.nearDistance,this.farDistance=e.farDistance,this.map=e.map,this.alphaMap=e.alphaMap,this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this}}const e_=`void main() {\n\tgl_Position = vec4( position, 1.0 );\n}`,t_=`uniform sampler2D shadow_pass;\nuniform vec2 resolution;\nuniform float radius;\n#include <packing>\nvoid main() {\n\tconst float samples = float( VSM_SAMPLES );\n\tfloat mean = 0.0;\n\tfloat squared_mean = 0.0;\n\tfloat uvStride = samples <= 1.0 ? 0.0 : 2.0 / ( samples - 1.0 );\n\tfloat uvStart = samples <= 1.0 ? 0.0 : - 1.0;\n\tfor ( float i = 0.0; i < samples; i ++ ) {\n\t\tfloat uvOffset = uvStart + i * uvStride;\n\t\t#ifdef HORIZONTAL_PASS\n\t\t\tvec2 distribution = unpackRGBATo2Half( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( uvOffset, 0.0 ) * radius ) / resolution ) );\n\t\t\tmean += distribution.x;\n\t\t\tsquared_mean += distribution.y * distribution.y + distribution.x * distribution.x;\n\t\t#else\n\t\t\tfloat depth = unpackRGBAToDepth( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( 0.0, uvOffset ) * radius ) / resolution ) );\n\t\t\tmean += depth;\n\t\t\tsquared_mean += depth * depth;\n\t\t#endif\n\t}\n\tmean = mean / samples;\n\tsquared_mean = squared_mean / samples;\n\tfloat std_dev = sqrt( squared_mean - mean * mean );\n\tgl_FragColor = pack2HalfToRGBA( vec2( mean, std_dev ) );\n}`;function n_(a,e,t){let n=new Pa;const i=new he,s=new he,r=new ft,o=new Zc({depthPacking:ff}),l=new Kc,c={},h=t.maxTextureSize,u={0:Cn,1:li,2:ci},f=new Qn({defines:{VSM_SAMPLES:8},uniforms:{shadow_pass:{value:null},resolution:{value:new he},radius:{value:4}},vertexShader:e_,fragmentShader:t_}),d=f.clone();d.defines.HORIZONTAL_PASS=1;const p=new Xe;p.setAttribute(\"position\",new pt(new Float32Array([-1,-1,.5,3,-1,.5,-1,3,.5]),3));const m=new Rt(p,f),g=this;this.enabled=!1,this.autoUpdate=!0,this.needsUpdate=!1,this.type=Ol,this.render=function(v,M,T){if(g.enabled===!1||g.autoUpdate===!1&&g.needsUpdate===!1||v.length===0)return;const C=a.getRenderTarget(),_=a.getActiveCubeFace(),E=a.getActiveMipmapLevel(),F=a.state;F.setBlending(ui),F.buffers.color.setClear(1,1,1,1),F.buffers.depth.setTest(!0),F.setScissorTest(!1);for(let U=0,q=v.length;U<q;U++){const K=v[U],G=K.shadow;if(G===void 0){console.warn(\"THREE.WebGLShadowMap:\",K,\"has no shadow.\");continue}if(G.autoUpdate===!1&&G.needsUpdate===!1)continue;i.copy(G.mapSize);const X=G.getFrameExtents();if(i.multiply(X),s.copy(G.mapSize),(i.x>h||i.y>h)&&(i.x>h&&(s.x=Math.floor(h/X.x),i.x=s.x*X.x,G.mapSize.x=s.x),i.y>h&&(s.y=Math.floor(h/X.y),i.y=s.y*X.y,G.mapSize.y=s.y)),G.map===null){const j=this.type!==Xs?{minFilter:zt,magFilter:zt}:{};G.map=new Rn(i.x,i.y,j),G.map.texture.name=K.name+\".shadowMap\",G.camera.updateProjectionMatrix()}a.setRenderTarget(G.map),a.clear();const O=G.getViewportCount();for(let j=0;j<O;j++){const Y=G.getViewport(j);r.set(s.x*Y.x,s.y*Y.y,s.x*Y.z,s.y*Y.w),F.viewport(r),G.updateMatrices(K,j),n=G.getFrustum(),b(M,T,G.camera,K,this.type)}G.isPointLightShadow!==!0&&this.type===Xs&&y(G,T),G.needsUpdate=!1}g.needsUpdate=!1,a.setRenderTarget(C,_,E)};function y(v,M){const T=e.update(m);f.defines.VSM_SAMPLES!==v.blurSamples&&(f.defines.VSM_SAMPLES=v.blurSamples,d.defines.VSM_SAMPLES=v.blurSamples,f.needsUpdate=!0,d.needsUpdate=!0),v.mapPass===null&&(v.mapPass=new Rn(i.x,i.y)),f.uniforms.shadow_pass.value=v.map.texture,f.uniforms.resolution.value=v.mapSize,f.uniforms.radius.value=v.radius,a.setRenderTarget(v.mapPass),a.clear(),a.renderBufferDirect(M,null,T,f,m,null),d.uniforms.shadow_pass.value=v.mapPass.texture,d.uniforms.resolution.value=v.mapSize,d.uniforms.radius.value=v.radius,a.setRenderTarget(v.map),a.clear(),a.renderBufferDirect(M,null,T,d,m,null)}function x(v,M,T,C,_,E){let F=null;const U=T.isPointLight===!0?v.customDistanceMaterial:v.customDepthMaterial;if(U!==void 0?F=U:F=T.isPointLight===!0?l:o,a.localClippingEnabled&&M.clipShadows===!0&&Array.isArray(M.clippingPlanes)&&M.clippingPlanes.length!==0||M.displacementMap&&M.displacementScale!==0||M.alphaMap&&M.alphaTest>0){const q=F.uuid,K=M.uuid;let G=c[q];G===void 0&&(G={},c[q]=G);let X=G[K];X===void 0&&(X=F.clone(),G[K]=X),F=X}return F.visible=M.visible,F.wireframe=M.wireframe,E===Xs?F.side=M.shadowSide!==null?M.shadowSide:M.side:F.side=M.shadowSide!==null?M.shadowSide:u[M.side],F.alphaMap=M.alphaMap,F.alphaTest=M.alphaTest,F.clipShadows=M.clipShadows,F.clippingPlanes=M.clippingPlanes,F.clipIntersection=M.clipIntersection,F.displacementMap=M.displacementMap,F.displacementScale=M.displacementScale,F.displacementBias=M.displacementBias,F.wireframeLinewidth=M.wireframeLinewidth,F.linewidth=M.linewidth,T.isPointLight===!0&&F.isMeshDistanceMaterial===!0&&(F.referencePosition.setFromMatrixPosition(T.matrixWorld),F.nearDistance=C,F.farDistance=_),F}function b(v,M,T,C,_){if(v.visible===!1)return;if(v.layers.test(M.layers)&&(v.isMesh||v.isLine||v.isPoints)&&(v.castShadow||v.receiveShadow&&_===Xs)&&(!v.frustumCulled||n.intersectsObject(v))){v.modelViewMatrix.multiplyMatrices(T.matrixWorldInverse,v.matrixWorld);const U=e.update(v),q=v.material;if(Array.isArray(q)){const K=U.groups;for(let G=0,X=K.length;G<X;G++){const O=K[G],j=q[O.materialIndex];if(j&&j.visible){const Y=x(v,j,C,T.near,T.far,_);a.renderBufferDirect(T,null,U,Y,v,O)}}}else if(q.visible){const K=x(v,q,C,T.near,T.far,_);a.renderBufferDirect(T,null,U,K,v,null)}}const F=v.children;for(let U=0,q=F.length;U<q;U++)b(F[U],M,T,C,_)}}function i_(a,e,t){const n=t.isWebGL2;function i(){let z=!1;const ye=new ft;let J=null;const Pe=new ft(0,0,0,0);return{setMask:function(Ae){J!==Ae&&!z&&(a.colorMask(Ae,Ae,Ae,Ae),J=Ae)},setLocked:function(Ae){z=Ae},setClear:function(Ae,$e,Tt,ct,Mt){Mt===!0&&(Ae*=ct,$e*=ct,Tt*=ct),ye.set(Ae,$e,Tt,ct),Pe.equals(ye)===!1&&(a.clearColor(Ae,$e,Tt,ct),Pe.copy(ye))},reset:function(){z=!1,J=null,Pe.set(-1,0,0,0)}}}function s(){let z=!1,ye=null,J=null,Pe=null;return{setTest:function(Ae){Ae?ge(2929):we(2929)},setMask:function(Ae){ye!==Ae&&!z&&(a.depthMask(Ae),ye=Ae)},setFunc:function(Ae){if(J!==Ae){if(Ae)switch(Ae){case Ph:a.depthFunc(512);break;case Dh:a.depthFunc(519);break;case Fh:a.depthFunc(513);break;case Qo:a.depthFunc(515);break;case Nh:a.depthFunc(514);break;case kh:a.depthFunc(518);break;case Oh:a.depthFunc(516);break;case Bh:a.depthFunc(517);break;default:a.depthFunc(515)}else a.depthFunc(515);J=Ae}},setLocked:function(Ae){z=Ae},setClear:function(Ae){Pe!==Ae&&(a.clearDepth(Ae),Pe=Ae)},reset:function(){z=!1,ye=null,J=null,Pe=null}}}function r(){let z=!1,ye=null,J=null,Pe=null,Ae=null,$e=null,Tt=null,ct=null,Mt=null;return{setTest:function(et){z||(et?ge(2960):we(2960))},setMask:function(et){ye!==et&&!z&&(a.stencilMask(et),ye=et)},setFunc:function(et,Ct,_t){(J!==et||Pe!==Ct||Ae!==_t)&&(a.stencilFunc(et,Ct,_t),J=et,Pe=Ct,Ae=_t)},setOp:function(et,Ct,_t){($e!==et||Tt!==Ct||ct!==_t)&&(a.stencilOp(et,Ct,_t),$e=et,Tt=Ct,ct=_t)},setLocked:function(et){z=et},setClear:function(et){Mt!==et&&(a.clearStencil(et),Mt=et)},reset:function(){z=!1,ye=null,J=null,Pe=null,Ae=null,$e=null,Tt=null,ct=null,Mt=null}}}const o=new i,l=new s,c=new r,h=new WeakMap,u=new WeakMap;let f={},d={},p=new WeakMap,m=[],g=null,y=!1,x=null,b=null,v=null,M=null,T=null,C=null,_=null,E=!1,F=null,U=null,q=null,K=null,G=null;const X=a.getParameter(35661);let O=!1,j=0;const Y=a.getParameter(7938);Y.indexOf(\"WebGL\")!==-1?(j=parseFloat(/^WebGL (\\d)/.exec(Y)[1]),O=j>=1):Y.indexOf(\"OpenGL ES\")!==-1&&(j=parseFloat(/^OpenGL ES (\\d)/.exec(Y)[1]),O=j>=2);let W=null,Z={};const ee=a.getParameter(3088),Q=a.getParameter(2978),ie=new ft().fromArray(ee),ae=new ft().fromArray(Q);function re(z,ye,J){const Pe=new Uint8Array(4),Ae=a.createTexture();a.bindTexture(z,Ae),a.texParameteri(z,10241,9728),a.texParameteri(z,10240,9728);for(let $e=0;$e<J;$e++)a.texImage2D(ye+$e,0,6408,1,1,0,6408,5121,Pe);return Ae}const H={};H[3553]=re(3553,3553,1),H[34067]=re(34067,34069,6),o.setClear(0,0,0,1),l.setClear(1),c.setClear(0),ge(2929),l.setFunc(Qo),Le(!1),Ze(kl),ge(2884),ve(ui);function ge(z){f[z]!==!0&&(a.enable(z),f[z]=!0)}function we(z){f[z]!==!1&&(a.disable(z),f[z]=!1)}function Fe(z,ye){return d[z]!==ye?(a.bindFramebuffer(z,ye),d[z]=ye,n&&(z===36009&&(d[36160]=ye),z===36160&&(d[36009]=ye)),!0):!1}function xe(z,ye){let J=m,Pe=!1;if(z)if(J=p.get(ye),J===void 0&&(J=[],p.set(ye,J)),z.isWebGLMultipleRenderTargets){const Ae=z.texture;if(J.length!==Ae.length||J[0]!==36064){for(let $e=0,Tt=Ae.length;$e<Tt;$e++)J[$e]=36064+$e;J.length=Ae.length,Pe=!0}}else J[0]!==36064&&(J[0]=36064,Pe=!0);else J[0]!==1029&&(J[0]=1029,Pe=!0);Pe&&(t.isWebGL2?a.drawBuffers(J):e.get(\"WEBGL_draw_buffers\").drawBuffersWEBGL(J))}function Ve(z){return g!==z?(a.useProgram(z),g=z,!0):!1}const ue={[cs]:32774,[bh]:32778,[wh]:32779};if(n)ue[Gl]=32775,ue[Vl]=32776;else{const z=e.get(\"EXT_blend_minmax\");z!==null&&(ue[Gl]=z.MIN_EXT,ue[Vl]=z.MAX_EXT)}const ce={[Mh]:0,[Sh]:1,[Th]:768,[Hl]:770,[Ih]:776,[Lh]:774,[Eh]:772,[Ah]:769,[Wl]:771,[Rh]:775,[Ch]:773};function ve(z,ye,J,Pe,Ae,$e,Tt,ct){if(z===ui){y===!0&&(we(3042),y=!1);return}if(y===!1&&(ge(3042),y=!0),z!==_h){if(z!==x||ct!==E){if((b!==cs||T!==cs)&&(a.blendEquation(32774),b=cs,T=cs),ct)switch(z){case ls:a.blendFuncSeparate(1,771,1,771);break;case Bl:a.blendFunc(1,1);break;case zl:a.blendFuncSeparate(0,769,0,1);break;case Ul:a.blendFuncSeparate(0,768,0,770);break;default:console.error(\"THREE.WebGLState: Invalid blending: \",z);break}else switch(z){case ls:a.blendFuncSeparate(770,771,1,771);break;case Bl:a.blendFunc(770,1);break;case zl:a.blendFuncSeparate(0,769,0,1);break;case Ul:a.blendFunc(0,768);break;default:console.error(\"THREE.WebGLState: Invalid blending: \",z);break}v=null,M=null,C=null,_=null,x=z,E=ct}return}Ae=Ae||ye,$e=$e||J,Tt=Tt||Pe,(ye!==b||Ae!==T)&&(a.blendEquationSeparate(ue[ye],ue[Ae]),b=ye,T=Ae),(J!==v||Pe!==M||$e!==C||Tt!==_)&&(a.blendFuncSeparate(ce[J],ce[Pe],ce[$e],ce[Tt]),v=J,M=Pe,C=$e,_=Tt),x=z,E=null}function ke(z,ye){z.side===ci?we(2884):ge(2884);let J=z.side===Cn;ye&&(J=!J),Le(J),z.blending===ls&&z.transparent===!1?ve(ui):ve(z.blending,z.blendEquation,z.blendSrc,z.blendDst,z.blendEquationAlpha,z.blendSrcAlpha,z.blendDstAlpha,z.premultipliedAlpha),l.setFunc(z.depthFunc),l.setTest(z.depthTest),l.setMask(z.depthWrite),o.setMask(z.colorWrite);const Pe=z.stencilWrite;c.setTest(Pe),Pe&&(c.setMask(z.stencilWriteMask),c.setFunc(z.stencilFunc,z.stencilRef,z.stencilFuncMask),c.setOp(z.stencilFail,z.stencilZFail,z.stencilZPass)),Ue(z.polygonOffset,z.polygonOffsetFactor,z.polygonOffsetUnits),z.alphaToCoverage===!0?ge(32926):we(32926)}function Le(z){F!==z&&(z?a.frontFace(2304):a.frontFace(2305),F=z)}function Ze(z){z!==gh?(ge(2884),z!==U&&(z===kl?a.cullFace(1029):z===yh?a.cullFace(1028):a.cullFace(1032))):we(2884),U=z}function He(z){z!==q&&(O&&a.lineWidth(z),q=z)}function Ue(z,ye,J){z?(ge(32823),(K!==ye||G!==J)&&(a.polygonOffset(ye,J),K=ye,G=J)):we(32823)}function gt(z){z?ge(3089):we(3089)}function lt(z){z===void 0&&(z=33984+X-1),W!==z&&(a.activeTexture(z),W=z)}function k(z,ye){W===null&&lt();let J=Z[W];J===void 0&&(J={type:void 0,texture:void 0},Z[W]=J),(J.type!==z||J.texture!==ye)&&(a.bindTexture(z,ye||H[z]),J.type=z,J.texture=ye)}function P(){const z=Z[W];z!==void 0&&z.type!==void 0&&(a.bindTexture(z.type,null),z.type=void 0,z.texture=void 0)}function oe(){try{a.compressedTexImage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function _e(){try{a.texSubImage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function Se(){try{a.texSubImage3D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function Ie(){try{a.compressedTexSubImage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function je(){try{a.texStorage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function D(){try{a.texStorage3D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function me(){try{a.texImage2D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function Te(){try{a.texImage3D.apply(a,arguments)}catch(z){console.error(\"THREE.WebGLState:\",z)}}function V(z){ie.equals(z)===!1&&(a.scissor(z.x,z.y,z.z,z.w),ie.copy(z))}function B(z){ae.equals(z)===!1&&(a.viewport(z.x,z.y,z.z,z.w),ae.copy(z))}function ne(z,ye){let J=u.get(ye);J===void 0&&(J=new WeakMap,u.set(ye,J));let Pe=J.get(z);Pe===void 0&&(Pe=a.getUniformBlockIndex(ye,z.name),J.set(z,Pe))}function de(z,ye){const Pe=u.get(ye).get(z);h.get(z)!==Pe&&(a.uniformBlockBinding(ye,Pe,z.__bindingPointIndex),h.set(z,Pe))}function Ce(){a.disable(3042),a.disable(2884),a.disable(2929),a.disable(32823),a.disable(3089),a.disable(2960),a.disable(32926),a.blendEquation(32774),a.blendFunc(1,0),a.blendFuncSeparate(1,0,1,0),a.colorMask(!0,!0,!0,!0),a.clearColor(0,0,0,0),a.depthMask(!0),a.depthFunc(513),a.clearDepth(1),a.stencilMask(4294967295),a.stencilFunc(519,0,4294967295),a.stencilOp(7680,7680,7680),a.clearStencil(0),a.cullFace(1029),a.frontFace(2305),a.polygonOffset(0,0),a.activeTexture(33984),a.bindFramebuffer(36160,null),n===!0&&(a.bindFramebuffer(36009,null),a.bindFramebuffer(36008,null)),a.useProgram(null),a.lineWidth(1),a.scissor(0,0,a.canvas.width,a.canvas.height),a.viewport(0,0,a.canvas.width,a.canvas.height),f={},W=null,Z={},d={},p=new WeakMap,m=[],g=null,y=!1,x=null,b=null,v=null,M=null,T=null,C=null,_=null,E=!1,F=null,U=null,q=null,K=null,G=null,ie.set(0,0,a.canvas.width,a.canvas.height),ae.set(0,0,a.canvas.width,a.canvas.height),o.reset(),l.reset(),c.reset()}return{buffers:{color:o,depth:l,stencil:c},enable:ge,disable:we,bindFramebuffer:Fe,drawBuffers:xe,useProgram:Ve,setBlending:ve,setMaterial:ke,setFlipSided:Le,setCullFace:Ze,setLineWidth:He,setPolygonOffset:Ue,setScissorTest:gt,activeTexture:lt,bindTexture:k,unbindTexture:P,compressedTexImage2D:oe,texImage2D:me,texImage3D:Te,updateUBOMapping:ne,uniformBlockBinding:de,texStorage2D:je,texStorage3D:D,texSubImage2D:_e,texSubImage3D:Se,compressedTexSubImage2D:Ie,scissor:V,viewport:B,reset:Ce}}function s_(a,e,t,n,i,s,r){const o=i.isWebGL2,l=i.maxTextures,c=i.maxCubemapSize,h=i.maxTextureSize,u=i.maxSamples,f=e.has(\"WEBGL_multisampled_render_to_texture\")?e.get(\"WEBGL_multisampled_render_to_texture\"):null,d=/OculusBrowser/g.test(navigator.userAgent),p=new WeakMap;let m;const g=new WeakMap;let y=!1;try{y=typeof OffscreenCanvas!=\"undefined\"&&new OffscreenCanvas(1,1).getContext(\"2d\")!==null}catch{}function x(k,P){return y?new OffscreenCanvas(k,P):ho(\"canvas\")}function b(k,P,oe,_e){let Se=1;if((k.width>_e||k.height>_e)&&(Se=_e/Math.max(k.width,k.height)),Se<1||P===!0)if(typeof HTMLImageElement!=\"undefined\"&&k instanceof HTMLImageElement||typeof HTMLCanvasElement!=\"undefined\"&&k instanceof HTMLCanvasElement||typeof ImageBitmap!=\"undefined\"&&k instanceof ImageBitmap){const Ie=P?aa:Math.floor,je=Ie(Se*k.width),D=Ie(Se*k.height);m===void 0&&(m=x(je,D));const me=oe?x(je,D):m;return me.width=je,me.height=D,me.getContext(\"2d\").drawImage(k,0,0,je,D),console.warn(\"THREE.WebGLRenderer: Texture has been resized from (\"+k.width+\"x\"+k.height+\") to (\"+je+\"x\"+D+\").\"),me}else return\"data\"in k&&console.warn(\"THREE.WebGLRenderer: Image in DataTexture is too big (\"+k.width+\"x\"+k.height+\").\"),k;return k}function v(k){return xc(k.width)&&xc(k.height)}function M(k){return o?!1:k.wrapS!==jt||k.wrapT!==jt||k.minFilter!==zt&&k.minFilter!==Pt}function T(k,P){return k.generateMipmaps&&P&&k.minFilter!==zt&&k.minFilter!==Pt}function C(k){a.generateMipmap(k)}function _(k,P,oe,_e,Se=!1){if(o===!1)return P;if(k!==null){if(a[k]!==void 0)return a[k];console.warn(\"THREE.WebGLRenderer: Attempt to use non-existing WebGL internal format '\"+k+\"'\")}let Ie=P;return P===6403&&(oe===5126&&(Ie=33326),oe===5131&&(Ie=33325),oe===5121&&(Ie=33321)),P===33319&&(oe===5126&&(Ie=33328),oe===5131&&(Ie=33327),oe===5121&&(Ie=33323)),P===6408&&(oe===5126&&(Ie=34836),oe===5131&&(Ie=34842),oe===5121&&(Ie=_e===it&&Se===!1?35907:32856),oe===32819&&(Ie=32854),oe===32820&&(Ie=32855)),(Ie===33325||Ie===33326||Ie===33327||Ie===33328||Ie===34842||Ie===34836)&&e.get(\"EXT_color_buffer_float\"),Ie}function E(k,P,oe){return T(k,oe)===!0||k.isFramebufferTexture&&k.minFilter!==zt&&k.minFilter!==Pt?Math.log2(Math.max(P.width,P.height))+1:k.mipmaps!==void 0&&k.mipmaps.length>0?k.mipmaps.length:k.isCompressedTexture&&Array.isArray(k.image)?P.mipmaps.length:1}function F(k){return k===zt||k===no||k===io?9728:9729}function U(k){const P=k.target;P.removeEventListener(\"dispose\",U),K(P),P.isVideoTexture&&p.delete(P)}function q(k){const P=k.target;P.removeEventListener(\"dispose\",q),X(P)}function K(k){const P=n.get(k);if(P.__webglInit===void 0)return;const oe=k.source,_e=g.get(oe);if(_e){const Se=_e[P.__cacheKey];Se.usedTimes--,Se.usedTimes===0&&G(k),Object.keys(_e).length===0&&g.delete(oe)}n.remove(k)}function G(k){const P=n.get(k);a.deleteTexture(P.__webglTexture);const oe=k.source,_e=g.get(oe);delete _e[P.__cacheKey],r.memory.textures--}function X(k){const P=k.texture,oe=n.get(k),_e=n.get(P);if(_e.__webglTexture!==void 0&&(a.deleteTexture(_e.__webglTexture),r.memory.textures--),k.depthTexture&&k.depthTexture.dispose(),k.isWebGLCubeRenderTarget)for(let Se=0;Se<6;Se++)a.deleteFramebuffer(oe.__webglFramebuffer[Se]),oe.__webglDepthbuffer&&a.deleteRenderbuffer(oe.__webglDepthbuffer[Se]);else{if(a.deleteFramebuffer(oe.__webglFramebuffer),oe.__webglDepthbuffer&&a.deleteRenderbuffer(oe.__webglDepthbuffer),oe.__webglMultisampledFramebuffer&&a.deleteFramebuffer(oe.__webglMultisampledFramebuffer),oe.__webglColorRenderbuffer)for(let Se=0;Se<oe.__webglColorRenderbuffer.length;Se++)oe.__webglColorRenderbuffer[Se]&&a.deleteRenderbuffer(oe.__webglColorRenderbuffer[Se]);oe.__webglDepthRenderbuffer&&a.deleteRenderbuffer(oe.__webglDepthRenderbuffer)}if(k.isWebGLMultipleRenderTargets)for(let Se=0,Ie=P.length;Se<Ie;Se++){const je=n.get(P[Se]);je.__webglTexture&&(a.deleteTexture(je.__webglTexture),r.memory.textures--),n.remove(P[Se])}n.remove(P),n.remove(k)}let O=0;function j(){O=0}function Y(){const k=O;return k>=l&&console.warn(\"THREE.WebGLTextures: Trying to use \"+k+\" texture units while this GPU supports only \"+l),O+=1,k}function W(k){const P=[];return P.push(k.wrapS),P.push(k.wrapT),P.push(k.magFilter),P.push(k.minFilter),P.push(k.anisotropy),P.push(k.internalFormat),P.push(k.format),P.push(k.type),P.push(k.generateMipmaps),P.push(k.premultiplyAlpha),P.push(k.flipY),P.push(k.unpackAlignment),P.push(k.encoding),P.join()}function Z(k,P){const oe=n.get(k);if(k.isVideoTexture&&gt(k),k.isRenderTargetTexture===!1&&k.version>0&&oe.__version!==k.version){const _e=k.image;if(_e===null)console.warn(\"THREE.WebGLRenderer: Texture marked for update but no image data found.\");else if(_e.complete===!1)console.warn(\"THREE.WebGLRenderer: Texture marked for update but image is incomplete\");else{we(oe,k,P);return}}t.activeTexture(33984+P),t.bindTexture(3553,oe.__webglTexture)}function ee(k,P){const oe=n.get(k);if(k.version>0&&oe.__version!==k.version){we(oe,k,P);return}t.activeTexture(33984+P),t.bindTexture(35866,oe.__webglTexture)}function Q(k,P){const oe=n.get(k);if(k.version>0&&oe.__version!==k.version){we(oe,k,P);return}t.activeTexture(33984+P),t.bindTexture(32879,oe.__webglTexture)}function ie(k,P){const oe=n.get(k);if(k.version>0&&oe.__version!==k.version){Fe(oe,k,P);return}t.activeTexture(33984+P),t.bindTexture(34067,oe.__webglTexture)}const ae={[cn]:10497,[jt]:33071,[Zs]:33648},re={[zt]:9728,[no]:9984,[io]:9986,[Pt]:9729,[ta]:9985,[Kn]:9987};function H(k,P,oe){if(oe?(a.texParameteri(k,10242,ae[P.wrapS]),a.texParameteri(k,10243,ae[P.wrapT]),(k===32879||k===35866)&&a.texParameteri(k,32882,ae[P.wrapR]),a.texParameteri(k,10240,re[P.magFilter]),a.texParameteri(k,10241,re[P.minFilter])):(a.texParameteri(k,10242,33071),a.texParameteri(k,10243,33071),(k===32879||k===35866)&&a.texParameteri(k,32882,33071),(P.wrapS!==jt||P.wrapT!==jt)&&console.warn(\"THREE.WebGLRenderer: Texture is not power of two. Texture.wrapS and Texture.wrapT should be set to THREE.ClampToEdgeWrapping.\"),a.texParameteri(k,10240,F(P.magFilter)),a.texParameteri(k,10241,F(P.minFilter)),P.minFilter!==zt&&P.minFilter!==Pt&&console.warn(\"THREE.WebGLRenderer: Texture is not power of two. Texture.minFilter should be set to THREE.NearestFilter or THREE.LinearFilter.\")),e.has(\"EXT_texture_filter_anisotropic\")===!0){const _e=e.get(\"EXT_texture_filter_anisotropic\");if(P.type===hi&&e.has(\"OES_texture_float_linear\")===!1||o===!1&&P.type===Ks&&e.has(\"OES_texture_half_float_linear\")===!1)return;(P.anisotropy>1||n.get(P).__currentAnisotropy)&&(a.texParameterf(k,_e.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(P.anisotropy,i.getMaxAnisotropy())),n.get(P).__currentAnisotropy=P.anisotropy)}}function ge(k,P){let oe=!1;k.__webglInit===void 0&&(k.__webglInit=!0,P.addEventListener(\"dispose\",U));const _e=P.source;let Se=g.get(_e);Se===void 0&&(Se={},g.set(_e,Se));const Ie=W(P);if(Ie!==k.__cacheKey){Se[Ie]===void 0&&(Se[Ie]={texture:a.createTexture(),usedTimes:0},r.memory.textures++,oe=!0),Se[Ie].usedTimes++;const je=Se[k.__cacheKey];je!==void 0&&(Se[k.__cacheKey].usedTimes--,je.usedTimes===0&&G(P)),k.__cacheKey=Ie,k.__webglTexture=Se[Ie].texture}return oe}function we(k,P,oe){let _e=3553;P.isDataArrayTexture&&(_e=35866),P.isData3DTexture&&(_e=32879);const Se=ge(k,P),Ie=P.source;if(t.activeTexture(33984+oe),t.bindTexture(_e,k.__webglTexture),Ie.version!==Ie.__currentVersion||Se===!0){a.pixelStorei(37440,P.flipY),a.pixelStorei(37441,P.premultiplyAlpha),a.pixelStorei(3317,P.unpackAlignment),a.pixelStorei(37443,0);const je=M(P)&&v(P.image)===!1;let D=b(P.image,je,!1,h);D=lt(P,D);const me=v(D)||o,Te=s.convert(P.format,P.encoding);let V=s.convert(P.type),B=_(P.internalFormat,Te,V,P.encoding,P.isVideoTexture);H(_e,P,me);let ne;const de=P.mipmaps,Ce=o&&P.isVideoTexture!==!0,z=Ie.__currentVersion===void 0||Se===!0,ye=E(P,D,me);if(P.isDepthTexture)B=6402,o?P.type===hi?B=36012:P.type===Fi?B=33190:P.type===us?B=35056:B=33189:P.type===hi&&console.error(\"WebGLRenderer: Floating point depth texture requires WebGL2.\"),P.format===Ni&&B===6402&&P.type!==ql&&P.type!==Fi&&(console.warn(\"THREE.WebGLRenderer: Use UnsignedShortType or UnsignedIntType for DepthFormat DepthTexture.\"),P.type=Fi,V=s.convert(P.type)),P.format===hs&&B===6402&&(B=34041,P.type!==us&&(console.warn(\"THREE.WebGLRenderer: Use UnsignedInt248Type for DepthStencilFormat DepthTexture.\"),P.type=us,V=s.convert(P.type))),z&&(Ce?t.texStorage2D(3553,1,B,D.width,D.height):t.texImage2D(3553,0,B,D.width,D.height,0,Te,V,null));else if(P.isDataTexture)if(de.length>0&&me){Ce&&z&&t.texStorage2D(3553,ye,B,de[0].width,de[0].height);for(let J=0,Pe=de.length;J<Pe;J++)ne=de[J],Ce?t.texSubImage2D(3553,J,0,0,ne.width,ne.height,Te,V,ne.data):t.texImage2D(3553,J,B,ne.width,ne.height,0,Te,V,ne.data);P.generateMipmaps=!1}else Ce?(z&&t.texStorage2D(3553,ye,B,D.width,D.height),t.texSubImage2D(3553,0,0,0,D.width,D.height,Te,V,D.data)):t.texImage2D(3553,0,B,D.width,D.height,0,Te,V,D.data);else if(P.isCompressedTexture){Ce&&z&&t.texStorage2D(3553,ye,B,de[0].width,de[0].height);for(let J=0,Pe=de.length;J<Pe;J++)ne=de[J],P.format!==Mn?Te!==null?Ce?t.compressedTexSubImage2D(3553,J,0,0,ne.width,ne.height,Te,ne.data):t.compressedTexImage2D(3553,J,B,ne.width,ne.height,0,ne.data):console.warn(\"THREE.WebGLRenderer: Attempt to load unsupported compressed texture format in .uploadTexture()\"):Ce?t.texSubImage2D(3553,J,0,0,ne.width,ne.height,Te,V,ne.data):t.texImage2D(3553,J,B,ne.width,ne.height,0,Te,V,ne.data)}else if(P.isDataArrayTexture)Ce?(z&&t.texStorage3D(35866,ye,B,D.width,D.height,D.depth),t.texSubImage3D(35866,0,0,0,0,D.width,D.height,D.depth,Te,V,D.data)):t.texImage3D(35866,0,B,D.width,D.height,D.depth,0,Te,V,D.data);else if(P.isData3DTexture)Ce?(z&&t.texStorage3D(32879,ye,B,D.width,D.height,D.depth),t.texSubImage3D(32879,0,0,0,0,D.width,D.height,D.depth,Te,V,D.data)):t.texImage3D(32879,0,B,D.width,D.height,D.depth,0,Te,V,D.data);else if(P.isFramebufferTexture){if(z)if(Ce)t.texStorage2D(3553,ye,B,D.width,D.height);else{let J=D.width,Pe=D.height;for(let Ae=0;Ae<ye;Ae++)t.texImage2D(3553,Ae,B,J,Pe,0,Te,V,null),J>>=1,Pe>>=1}}else if(de.length>0&&me){Ce&&z&&t.texStorage2D(3553,ye,B,de[0].width,de[0].height);for(let J=0,Pe=de.length;J<Pe;J++)ne=de[J],Ce?t.texSubImage2D(3553,J,0,0,Te,V,ne):t.texImage2D(3553,J,B,Te,V,ne);P.generateMipmaps=!1}else Ce?(z&&t.texStorage2D(3553,ye,B,D.width,D.height),t.texSubImage2D(3553,0,0,0,Te,V,D)):t.texImage2D(3553,0,B,Te,V,D);T(P,me)&&C(_e),Ie.__currentVersion=Ie.version,P.onUpdate&&P.onUpdate(P)}k.__version=P.version}function Fe(k,P,oe){if(P.image.length!==6)return;const _e=ge(k,P),Se=P.source;if(t.activeTexture(33984+oe),t.bindTexture(34067,k.__webglTexture),Se.version!==Se.__currentVersion||_e===!0){a.pixelStorei(37440,P.flipY),a.pixelStorei(37441,P.premultiplyAlpha),a.pixelStorei(3317,P.unpackAlignment),a.pixelStorei(37443,0);const Ie=P.isCompressedTexture||P.image[0].isCompressedTexture,je=P.image[0]&&P.image[0].isDataTexture,D=[];for(let J=0;J<6;J++)!Ie&&!je?D[J]=b(P.image[J],!1,!0,c):D[J]=je?P.image[J].image:P.image[J],D[J]=lt(P,D[J]);const me=D[0],Te=v(me)||o,V=s.convert(P.format,P.encoding),B=s.convert(P.type),ne=_(P.internalFormat,V,B,P.encoding),de=o&&P.isVideoTexture!==!0,Ce=Se.__currentVersion===void 0||_e===!0;let z=E(P,me,Te);H(34067,P,Te);let ye;if(Ie){de&&Ce&&t.texStorage2D(34067,z,ne,me.width,me.height);for(let J=0;J<6;J++){ye=D[J].mipmaps;for(let Pe=0;Pe<ye.length;Pe++){const Ae=ye[Pe];P.format!==Mn?V!==null?de?t.compressedTexSubImage2D(34069+J,Pe,0,0,Ae.width,Ae.height,V,Ae.data):t.compressedTexImage2D(34069+J,Pe,ne,Ae.width,Ae.height,0,Ae.data):console.warn(\"THREE.WebGLRenderer: Attempt to load unsupported compressed texture format in .setTextureCube()\"):de?t.texSubImage2D(34069+J,Pe,0,0,Ae.width,Ae.height,V,B,Ae.data):t.texImage2D(34069+J,Pe,ne,Ae.width,Ae.height,0,V,B,Ae.data)}}}else{ye=P.mipmaps,de&&Ce&&(ye.length>0&&z++,t.texStorage2D(34067,z,ne,D[0].width,D[0].height));for(let J=0;J<6;J++)if(je){de?t.texSubImage2D(34069+J,0,0,0,D[J].width,D[J].height,V,B,D[J].data):t.texImage2D(34069+J,0,ne,D[J].width,D[J].height,0,V,B,D[J].data);for(let Pe=0;Pe<ye.length;Pe++){const $e=ye[Pe].image[J].image;de?t.texSubImage2D(34069+J,Pe+1,0,0,$e.width,$e.height,V,B,$e.data):t.texImage2D(34069+J,Pe+1,ne,$e.width,$e.height,0,V,B,$e.data)}}else{de?t.texSubImage2D(34069+J,0,0,0,V,B,D[J]):t.texImage2D(34069+J,0,ne,V,B,D[J]);for(let Pe=0;Pe<ye.length;Pe++){const Ae=ye[Pe];de?t.texSubImage2D(34069+J,Pe+1,0,0,V,B,Ae.image[J]):t.texImage2D(34069+J,Pe+1,ne,V,B,Ae.image[J])}}}T(P,Te)&&C(34067),Se.__currentVersion=Se.version,P.onUpdate&&P.onUpdate(P)}k.__version=P.version}function xe(k,P,oe,_e,Se){const Ie=s.convert(oe.format,oe.encoding),je=s.convert(oe.type),D=_(oe.internalFormat,Ie,je,oe.encoding);n.get(P).__hasExternalTextures||(Se===32879||Se===35866?t.texImage3D(Se,0,D,P.width,P.height,P.depth,0,Ie,je,null):t.texImage2D(Se,0,D,P.width,P.height,0,Ie,je,null)),t.bindFramebuffer(36160,k),Ue(P)?f.framebufferTexture2DMultisampleEXT(36160,_e,Se,n.get(oe).__webglTexture,0,He(P)):a.framebufferTexture2D(36160,_e,Se,n.get(oe).__webglTexture,0),t.bindFramebuffer(36160,null)}function Ve(k,P,oe){if(a.bindRenderbuffer(36161,k),P.depthBuffer&&!P.stencilBuffer){let _e=33189;if(oe||Ue(P)){const Se=P.depthTexture;Se&&Se.isDepthTexture&&(Se.type===hi?_e=36012:Se.type===Fi&&(_e=33190));const Ie=He(P);Ue(P)?f.renderbufferStorageMultisampleEXT(36161,Ie,_e,P.width,P.height):a.renderbufferStorageMultisample(36161,Ie,_e,P.width,P.height)}else a.renderbufferStorage(36161,_e,P.width,P.height);a.framebufferRenderbuffer(36160,36096,36161,k)}else if(P.depthBuffer&&P.stencilBuffer){const _e=He(P);oe&&Ue(P)===!1?a.renderbufferStorageMultisample(36161,_e,35056,P.width,P.height):Ue(P)?f.renderbufferStorageMultisampleEXT(36161,_e,35056,P.width,P.height):a.renderbufferStorage(36161,34041,P.width,P.height),a.framebufferRenderbuffer(36160,33306,36161,k)}else{const _e=P.isWebGLMultipleRenderTargets===!0?P.texture:[P.texture];for(let Se=0;Se<_e.length;Se++){const Ie=_e[Se],je=s.convert(Ie.format,Ie.encoding),D=s.convert(Ie.type),me=_(Ie.internalFormat,je,D,Ie.encoding),Te=He(P);oe&&Ue(P)===!1?a.renderbufferStorageMultisample(36161,Te,me,P.width,P.height):Ue(P)?f.renderbufferStorageMultisampleEXT(36161,Te,me,P.width,P.height):a.renderbufferStorage(36161,me,P.width,P.height)}}a.bindRenderbuffer(36161,null)}function ue(k,P){if(P&&P.isWebGLCubeRenderTarget)throw new Error(\"Depth Texture with cube render targets is not supported\");if(t.bindFramebuffer(36160,k),!(P.depthTexture&&P.depthTexture.isDepthTexture))throw new Error(\"renderTarget.depthTexture must be an instance of THREE.DepthTexture\");(!n.get(P.depthTexture).__webglTexture||P.depthTexture.image.width!==P.width||P.depthTexture.image.height!==P.height)&&(P.depthTexture.image.width=P.width,P.depthTexture.image.height=P.height,P.depthTexture.needsUpdate=!0),Z(P.depthTexture,0);const _e=n.get(P.depthTexture).__webglTexture,Se=He(P);if(P.depthTexture.format===Ni)Ue(P)?f.framebufferTexture2DMultisampleEXT(36160,36096,3553,_e,0,Se):a.framebufferTexture2D(36160,36096,3553,_e,0);else if(P.depthTexture.format===hs)Ue(P)?f.framebufferTexture2DMultisampleEXT(36160,33306,3553,_e,0,Se):a.framebufferTexture2D(36160,33306,3553,_e,0);else throw new Error(\"Unknown depthTexture format\")}function ce(k){const P=n.get(k),oe=k.isWebGLCubeRenderTarget===!0;if(k.depthTexture&&!P.__autoAllocateDepthBuffer){if(oe)throw new Error(\"target.depthTexture not supported in Cube render targets\");ue(P.__webglFramebuffer,k)}else if(oe){P.__webglDepthbuffer=[];for(let _e=0;_e<6;_e++)t.bindFramebuffer(36160,P.__webglFramebuffer[_e]),P.__webglDepthbuffer[_e]=a.createRenderbuffer(),Ve(P.__webglDepthbuffer[_e],k,!1)}else t.bindFramebuffer(36160,P.__webglFramebuffer),P.__webglDepthbuffer=a.createRenderbuffer(),Ve(P.__webglDepthbuffer,k,!1);t.bindFramebuffer(36160,null)}function ve(k,P,oe){const _e=n.get(k);P!==void 0&&xe(_e.__webglFramebuffer,k,k.texture,36064,3553),oe!==void 0&&ce(k)}function ke(k){const P=k.texture,oe=n.get(k),_e=n.get(P);k.addEventListener(\"dispose\",q),k.isWebGLMultipleRenderTargets!==!0&&(_e.__webglTexture===void 0&&(_e.__webglTexture=a.createTexture()),_e.__version=P.version,r.memory.textures++);const Se=k.isWebGLCubeRenderTarget===!0,Ie=k.isWebGLMultipleRenderTargets===!0,je=v(k)||o;if(Se){oe.__webglFramebuffer=[];for(let D=0;D<6;D++)oe.__webglFramebuffer[D]=a.createFramebuffer()}else{if(oe.__webglFramebuffer=a.createFramebuffer(),Ie)if(i.drawBuffers){const D=k.texture;for(let me=0,Te=D.length;me<Te;me++){const V=n.get(D[me]);V.__webglTexture===void 0&&(V.__webglTexture=a.createTexture(),r.memory.textures++)}}else console.warn(\"THREE.WebGLRenderer: WebGLMultipleRenderTargets can only be used with WebGL2 or WEBGL_draw_buffers extension.\");if(o&&k.samples>0&&Ue(k)===!1){const D=Ie?P:[P];oe.__webglMultisampledFramebuffer=a.createFramebuffer(),oe.__webglColorRenderbuffer=[],t.bindFramebuffer(36160,oe.__webglMultisampledFramebuffer);for(let me=0;me<D.length;me++){const Te=D[me];oe.__webglColorRenderbuffer[me]=a.createRenderbuffer(),a.bindRenderbuffer(36161,oe.__webglColorRenderbuffer[me]);const V=s.convert(Te.format,Te.encoding),B=s.convert(Te.type),ne=_(Te.internalFormat,V,B,Te.encoding),de=He(k);a.renderbufferStorageMultisample(36161,de,ne,k.width,k.height),a.framebufferRenderbuffer(36160,36064+me,36161,oe.__webglColorRenderbuffer[me])}a.bindRenderbuffer(36161,null),k.depthBuffer&&(oe.__webglDepthRenderbuffer=a.createRenderbuffer(),Ve(oe.__webglDepthRenderbuffer,k,!0)),t.bindFramebuffer(36160,null)}}if(Se){t.bindTexture(34067,_e.__webglTexture),H(34067,P,je);for(let D=0;D<6;D++)xe(oe.__webglFramebuffer[D],k,P,36064,34069+D);T(P,je)&&C(34067),t.unbindTexture()}else if(Ie){const D=k.texture;for(let me=0,Te=D.length;me<Te;me++){const V=D[me],B=n.get(V);t.bindTexture(3553,B.__webglTexture),H(3553,V,je),xe(oe.__webglFramebuffer,k,V,36064+me,3553),T(V,je)&&C(3553)}t.unbindTexture()}else{let D=3553;(k.isWebGL3DRenderTarget||k.isWebGLArrayRenderTarget)&&(o?D=k.isWebGL3DRenderTarget?32879:35866:console.error(\"THREE.WebGLTextures: THREE.Data3DTexture and THREE.DataArrayTexture only supported with WebGL2.\")),t.bindTexture(D,_e.__webglTexture),H(D,P,je),xe(oe.__webglFramebuffer,k,P,36064,D),T(P,je)&&C(D),t.unbindTexture()}k.depthBuffer&&ce(k)}function Le(k){const P=v(k)||o,oe=k.isWebGLMultipleRenderTargets===!0?k.texture:[k.texture];for(let _e=0,Se=oe.length;_e<Se;_e++){const Ie=oe[_e];if(T(Ie,P)){const je=k.isWebGLCubeRenderTarget?34067:3553,D=n.get(Ie).__webglTexture;t.bindTexture(je,D),C(je),t.unbindTexture()}}}function Ze(k){if(o&&k.samples>0&&Ue(k)===!1){const P=k.isWebGLMultipleRenderTargets?k.texture:[k.texture],oe=k.width,_e=k.height;let Se=16384;const Ie=[],je=k.stencilBuffer?33306:36096,D=n.get(k),me=k.isWebGLMultipleRenderTargets===!0;if(me)for(let Te=0;Te<P.length;Te++)t.bindFramebuffer(36160,D.__webglMultisampledFramebuffer),a.framebufferRenderbuffer(36160,36064+Te,36161,null),t.bindFramebuffer(36160,D.__webglFramebuffer),a.framebufferTexture2D(36009,36064+Te,3553,null,0);t.bindFramebuffer(36008,D.__webglMultisampledFramebuffer),t.bindFramebuffer(36009,D.__webglFramebuffer);for(let Te=0;Te<P.length;Te++){Ie.push(36064+Te),k.depthBuffer&&Ie.push(je);const V=D.__ignoreDepthValues!==void 0?D.__ignoreDepthValues:!1;if(V===!1&&(k.depthBuffer&&(Se|=256),k.stencilBuffer&&(Se|=1024)),me&&a.framebufferRenderbuffer(36008,36064,36161,D.__webglColorRenderbuffer[Te]),V===!0&&(a.invalidateFramebuffer(36008,[je]),a.invalidateFramebuffer(36009,[je])),me){const B=n.get(P[Te]).__webglTexture;a.framebufferTexture2D(36009,36064,3553,B,0)}a.blitFramebuffer(0,0,oe,_e,0,0,oe,_e,Se,9728),d&&a.invalidateFramebuffer(36008,Ie)}if(t.bindFramebuffer(36008,null),t.bindFramebuffer(36009,null),me)for(let Te=0;Te<P.length;Te++){t.bindFramebuffer(36160,D.__webglMultisampledFramebuffer),a.framebufferRenderbuffer(36160,36064+Te,36161,D.__webglColorRenderbuffer[Te]);const V=n.get(P[Te]).__webglTexture;t.bindFramebuffer(36160,D.__webglFramebuffer),a.framebufferTexture2D(36009,36064+Te,3553,V,0)}t.bindFramebuffer(36009,D.__webglMultisampledFramebuffer)}}function He(k){return Math.min(u,k.samples)}function Ue(k){const P=n.get(k);return o&&k.samples>0&&e.has(\"WEBGL_multisampled_render_to_texture\")===!0&&P.__useRenderToTexture!==!1}function gt(k){const P=r.render.frame;p.get(k)!==P&&(p.set(k,P),k.update())}function lt(k,P){const oe=k.encoding,_e=k.format,Se=k.type;return k.isCompressedTexture===!0||k.isVideoTexture===!0||k.format===oa||oe!==fi&&(oe===it?o===!1?e.has(\"EXT_sRGB\")===!0&&_e===Mn?(k.format=oa,k.minFilter=Pt,k.generateMipmaps=!1):P=bc.sRGBToLinear(P):(_e!==Mn||Se!==Di)&&console.warn(\"THREE.WebGLTextures: sRGB encoded textures have to use RGBAFormat and UnsignedByteType.\"):console.error(\"THREE.WebGLTextures: Unsupported texture encoding:\",oe)),P}this.allocateTextureUnit=Y,this.resetTextureUnits=j,this.setTexture2D=Z,this.setTexture2DArray=ee,this.setTexture3D=Q,this.setTextureCube=ie,this.rebindTextures=ve,this.setupRenderTarget=ke,this.updateRenderTargetMipmap=Le,this.updateMultisampleRenderTarget=Ze,this.setupDepthRenderbuffer=ce,this.setupFrameBufferTexture=xe,this.useMultisampledRTT=Ue}function od(a,e,t){const n=t.isWebGL2;function i(s,r=null){let o;if(s===Di)return 5121;if(s===Zh)return 32819;if(s===Kh)return 32820;if(s===Xh)return 5120;if(s===jh)return 5122;if(s===ql)return 5123;if(s===Yh)return 5124;if(s===Fi)return 5125;if(s===hi)return 5126;if(s===Ks)return n?5131:(o=e.get(\"OES_texture_half_float\"),o!==null?o.HALF_FLOAT_OES:null);if(s===Jh)return 6406;if(s===Mn)return 6408;if(s===Qh)return 6409;if(s===ef)return 6410;if(s===Ni)return 6402;if(s===hs)return 34041;if(s===tf)return 6403;if(s===$h)return console.warn(\"THREE.WebGLRenderer: THREE.RGBFormat has been removed. Use THREE.RGBAFormat instead. https://github.com/mrdoob/three.js/pull/23228\"),6408;if(s===oa)return o=e.get(\"EXT_sRGB\"),o!==null?o.SRGB_ALPHA_EXT:null;if(s===nf)return 36244;if(s===sf)return 33319;if(s===rf)return 33320;if(s===of)return 36249;if(s===so||s===na||s===ro||s===oo)if(r===it)if(o=e.get(\"WEBGL_compressed_texture_s3tc_srgb\"),o!==null){if(s===so)return o.COMPRESSED_SRGB_S3TC_DXT1_EXT;if(s===na)return o.COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT;if(s===ro)return o.COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT;if(s===oo)return o.COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT}else return null;else if(o=e.get(\"WEBGL_compressed_texture_s3tc\"),o!==null){if(s===so)return o.COMPRESSED_RGB_S3TC_DXT1_EXT;if(s===na)return o.COMPRESSED_RGBA_S3TC_DXT1_EXT;if(s===ro)return o.COMPRESSED_RGBA_S3TC_DXT3_EXT;if(s===oo)return o.COMPRESSED_RGBA_S3TC_DXT5_EXT}else return null;if(s===Xl||s===jl||s===Yl||s===Zl)if(o=e.get(\"WEBGL_compressed_texture_pvrtc\"),o!==null){if(s===Xl)return o.COMPRESSED_RGB_PVRTC_4BPPV1_IMG;if(s===jl)return o.COMPRESSED_RGB_PVRTC_2BPPV1_IMG;if(s===Yl)return o.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG;if(s===Zl)return o.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG}else return null;if(s===Kl)return o=e.get(\"WEBGL_compressed_texture_etc1\"),o!==null?o.COMPRESSED_RGB_ETC1_WEBGL:null;if(s===Jl||s===$l)if(o=e.get(\"WEBGL_compressed_texture_etc\"),o!==null){if(s===Jl)return r===it?o.COMPRESSED_SRGB8_ETC2:o.COMPRESSED_RGB8_ETC2;if(s===$l)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:o.COMPRESSED_RGBA8_ETC2_EAC}else return null;if(s===Ql||s===ec||s===tc||s===nc||s===ic||s===sc||s===rc||s===oc||s===ac||s===lc||s===cc||s===uc||s===hc||s===fc)if(o=e.get(\"WEBGL_compressed_texture_astc\"),o!==null){if(s===Ql)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR:o.COMPRESSED_RGBA_ASTC_4x4_KHR;if(s===ec)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR:o.COMPRESSED_RGBA_ASTC_5x4_KHR;if(s===tc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR:o.COMPRESSED_RGBA_ASTC_5x5_KHR;if(s===nc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR:o.COMPRESSED_RGBA_ASTC_6x5_KHR;if(s===ic)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR:o.COMPRESSED_RGBA_ASTC_6x6_KHR;if(s===sc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR:o.COMPRESSED_RGBA_ASTC_8x5_KHR;if(s===rc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR:o.COMPRESSED_RGBA_ASTC_8x6_KHR;if(s===oc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR:o.COMPRESSED_RGBA_ASTC_8x8_KHR;if(s===ac)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR:o.COMPRESSED_RGBA_ASTC_10x5_KHR;if(s===lc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR:o.COMPRESSED_RGBA_ASTC_10x6_KHR;if(s===cc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR:o.COMPRESSED_RGBA_ASTC_10x8_KHR;if(s===uc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR:o.COMPRESSED_RGBA_ASTC_10x10_KHR;if(s===hc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR:o.COMPRESSED_RGBA_ASTC_12x10_KHR;if(s===fc)return r===it?o.COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR:o.COMPRESSED_RGBA_ASTC_12x12_KHR}else return null;if(s===dc)if(o=e.get(\"EXT_texture_compression_bptc\"),o!==null){if(s===dc)return r===it?o.COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT:o.COMPRESSED_RGBA_BPTC_UNORM_EXT}else return null;return s===us?n?34042:(o=e.get(\"WEBGL_depth_texture\"),o!==null?o.UNSIGNED_INT_24_8_WEBGL:null):a[s]!==void 0?a[s]:null}return{convert:i}}class ad extends Ot{constructor(e=[]){super(),this.isArrayCamera=!0,this.cameras=e}}class dn extends dt{constructor(){super(),this.isGroup=!0,this.type=\"Group\"}}const r_={type:\"move\"};class Jc{constructor(){this._targetRay=null,this._grip=null,this._hand=null}getHandSpace(){return this._hand===null&&(this._hand=new dn,this._hand.matrixAutoUpdate=!1,this._hand.visible=!1,this._hand.joints={},this._hand.inputState={pinching:!1}),this._hand}getTargetRaySpace(){return this._targetRay===null&&(this._targetRay=new dn,this._targetRay.matrixAutoUpdate=!1,this._targetRay.visible=!1,this._targetRay.hasLinearVelocity=!1,this._targetRay.linearVelocity=new I,this._targetRay.hasAngularVelocity=!1,this._targetRay.angularVelocity=new I),this._targetRay}getGripSpace(){return this._grip===null&&(this._grip=new dn,this._grip.matrixAutoUpdate=!1,this._grip.visible=!1,this._grip.hasLinearVelocity=!1,this._grip.linearVelocity=new I,this._grip.hasAngularVelocity=!1,this._grip.angularVelocity=new I),this._grip}dispatchEvent(e){return this._targetRay!==null&&this._targetRay.dispatchEvent(e),this._grip!==null&&this._grip.dispatchEvent(e),this._hand!==null&&this._hand.dispatchEvent(e),this}disconnect(e){return this.dispatchEvent({type:\"disconnected\",data:e}),this._targetRay!==null&&(this._targetRay.visible=!1),this._grip!==null&&(this._grip.visible=!1),this._hand!==null&&(this._hand.visible=!1),this}update(e,t,n){let i=null,s=null,r=null;const o=this._targetRay,l=this._grip,c=this._hand;if(e&&t.session.visibilityState!==\"visible-blurred\"){if(c&&e.hand){r=!0;for(const m of e.hand.values()){const g=t.getJointPose(m,n);if(c.joints[m.jointName]===void 0){const x=new dn;x.matrixAutoUpdate=!1,x.visible=!1,c.joints[m.jointName]=x,c.add(x)}const y=c.joints[m.jointName];g!==null&&(y.matrix.fromArray(g.transform.matrix),y.matrix.decompose(y.position,y.rotation,y.scale),y.jointRadius=g.radius),y.visible=g!==null}const h=c.joints[\"index-finger-tip\"],u=c.joints[\"thumb-tip\"],f=h.position.distanceTo(u.position),d=.02,p=.005;c.inputState.pinching&&f>d+p?(c.inputState.pinching=!1,this.dispatchEvent({type:\"pinchend\",handedness:e.handedness,target:this})):!c.inputState.pinching&&f<=d-p&&(c.inputState.pinching=!0,this.dispatchEvent({type:\"pinchstart\",handedness:e.handedness,target:this}))}else l!==null&&e.gripSpace&&(s=t.getPose(e.gripSpace,n),s!==null&&(l.matrix.fromArray(s.transform.matrix),l.matrix.decompose(l.position,l.rotation,l.scale),s.linearVelocity?(l.hasLinearVelocity=!0,l.linearVelocity.copy(s.linearVelocity)):l.hasLinearVelocity=!1,s.angularVelocity?(l.hasAngularVelocity=!0,l.angularVelocity.copy(s.angularVelocity)):l.hasAngularVelocity=!1));o!==null&&(i=t.getPose(e.targetRaySpace,n),i===null&&s!==null&&(i=s),i!==null&&(o.matrix.fromArray(i.transform.matrix),o.matrix.decompose(o.position,o.rotation,o.scale),i.linearVelocity?(o.hasLinearVelocity=!0,o.linearVelocity.copy(i.linearVelocity)):o.hasLinearVelocity=!1,i.angularVelocity?(o.hasAngularVelocity=!0,o.angularVelocity.copy(i.angularVelocity)):o.hasAngularVelocity=!1,this.dispatchEvent(r_)))}return o!==null&&(o.visible=i!==null),l!==null&&(l.visible=s!==null),c!==null&&(c.visible=r!==null),this}}class ld extends Lt{constructor(e,t,n,i,s,r,o,l,c,h){if(h=h!==void 0?h:Ni,h!==Ni&&h!==hs)throw new Error(\"DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat\");n===void 0&&h===Ni&&(n=Fi),n===void 0&&h===hs&&(n=us),super(null,i,s,r,o,l,h,n,c),this.isDepthTexture=!0,this.image={width:e,height:t},this.magFilter=o!==void 0?o:zt,this.minFilter=l!==void 0?l:zt,this.flipY=!1,this.generateMipmaps=!1}}class o_ extends $n{constructor(e,t){super();const n=this;let i=null,s=1,r=null,o=\"local-floor\",l=null,c=null,h=null,u=null,f=null,d=null;const p=t.getContextAttributes();let m=null,g=null;const y=[],x=[],b=new Ot;b.layers.enable(1),b.viewport=new ft;const v=new Ot;v.layers.enable(2),v.viewport=new ft;const M=[b,v],T=new ad;T.layers.enable(1),T.layers.enable(2);let C=null,_=null;this.cameraAutoUpdate=!0,this.enabled=!1,this.isPresenting=!1,this.getController=function(W){let Z=y[W];return Z===void 0&&(Z=new Jc,y[W]=Z),Z.getTargetRaySpace()},this.getControllerGrip=function(W){let Z=y[W];return Z===void 0&&(Z=new Jc,y[W]=Z),Z.getGripSpace()},this.getHand=function(W){let Z=y[W];return Z===void 0&&(Z=new Jc,y[W]=Z),Z.getHandSpace()};function E(W){const Z=x.indexOf(W.inputSource);if(Z===-1)return;const ee=y[Z];ee!==void 0&&ee.dispatchEvent({type:W.type,data:W.inputSource})}function F(){i.removeEventListener(\"select\",E),i.removeEventListener(\"selectstart\",E),i.removeEventListener(\"selectend\",E),i.removeEventListener(\"squeeze\",E),i.removeEventListener(\"squeezestart\",E),i.removeEventListener(\"squeezeend\",E),i.removeEventListener(\"end\",F),i.removeEventListener(\"inputsourceschange\",U);for(let W=0;W<y.length;W++){const Z=x[W];Z!==null&&(x[W]=null,y[W].disconnect(Z))}C=null,_=null,e.setRenderTarget(m),f=null,u=null,h=null,i=null,g=null,Y.stop(),n.isPresenting=!1,n.dispatchEvent({type:\"sessionend\"})}this.setFramebufferScaleFactor=function(W){s=W,n.isPresenting===!0&&console.warn(\"THREE.WebXRManager: Cannot change framebuffer scale while presenting.\")},this.setReferenceSpaceType=function(W){o=W,n.isPresenting===!0&&console.warn(\"THREE.WebXRManager: Cannot change reference space type while presenting.\")},this.getReferenceSpace=function(){return l||r},this.setReferenceSpace=function(W){l=W},this.getBaseLayer=function(){return u!==null?u:f},this.getBinding=function(){return h},this.getFrame=function(){return d},this.getSession=function(){return i},this.setSession=async function(W){if(i=W,i!==null){if(m=e.getRenderTarget(),i.addEventListener(\"select\",E),i.addEventListener(\"selectstart\",E),i.addEventListener(\"selectend\",E),i.addEventListener(\"squeeze\",E),i.addEventListener(\"squeezestart\",E),i.addEventListener(\"squeezeend\",E),i.addEventListener(\"end\",F),i.addEventListener(\"inputsourceschange\",U),p.xrCompatible!==!0&&await t.makeXRCompatible(),i.renderState.layers===void 0||e.capabilities.isWebGL2===!1){const Z={antialias:i.renderState.layers===void 0?p.antialias:!0,alpha:p.alpha,depth:p.depth,stencil:p.stencil,framebufferScaleFactor:s};f=new XRWebGLLayer(i,t,Z),i.updateRenderState({baseLayer:f}),g=new Rn(f.framebufferWidth,f.framebufferHeight,{format:Mn,type:Di,encoding:e.outputEncoding})}else{let Z=null,ee=null,Q=null;p.depth&&(Q=p.stencil?35056:33190,Z=p.stencil?hs:Ni,ee=p.stencil?us:Fi);const ie={colorFormat:32856,depthFormat:Q,scaleFactor:s};h=new XRWebGLBinding(i,t),u=h.createProjectionLayer(ie),i.updateRenderState({layers:[u]}),g=new Rn(u.textureWidth,u.textureHeight,{format:Mn,type:Di,depthTexture:new ld(u.textureWidth,u.textureHeight,ee,void 0,void 0,void 0,void 0,void 0,void 0,Z),stencilBuffer:p.stencil,encoding:e.outputEncoding,samples:p.antialias?4:0});const ae=e.properties.get(g);ae.__ignoreDepthValues=u.ignoreDepthValues}g.isXRRenderTarget=!0,this.setFoveation(1),l=null,r=await i.requestReferenceSpace(o),Y.setContext(i),Y.start(),n.isPresenting=!0,n.dispatchEvent({type:\"sessionstart\"})}};function U(W){for(let Z=0;Z<W.removed.length;Z++){const ee=W.removed[Z],Q=x.indexOf(ee);Q>=0&&(x[Q]=null,y[Q].dispatchEvent({type:\"disconnected\",data:ee}))}for(let Z=0;Z<W.added.length;Z++){const ee=W.added[Z];let Q=x.indexOf(ee);if(Q===-1){for(let ae=0;ae<y.length;ae++)if(ae>=x.length){x.push(ee),Q=ae;break}else if(x[ae]===null){x[ae]=ee,Q=ae;break}if(Q===-1)break}const ie=y[Q];ie&&ie.dispatchEvent({type:\"connected\",data:ee})}}const q=new I,K=new I;function G(W,Z,ee){q.setFromMatrixPosition(Z.matrixWorld),K.setFromMatrixPosition(ee.matrixWorld);const Q=q.distanceTo(K),ie=Z.projectionMatrix.elements,ae=ee.projectionMatrix.elements,re=ie[14]/(ie[10]-1),H=ie[14]/(ie[10]+1),ge=(ie[9]+1)/ie[5],we=(ie[9]-1)/ie[5],Fe=(ie[8]-1)/ie[0],xe=(ae[8]+1)/ae[0],Ve=re*Fe,ue=re*xe,ce=Q/(-Fe+xe),ve=ce*-Fe;Z.matrixWorld.decompose(W.position,W.quaternion,W.scale),W.translateX(ve),W.translateZ(ce),W.matrixWorld.compose(W.position,W.quaternion,W.scale),W.matrixWorldInverse.copy(W.matrixWorld).invert();const ke=re+ce,Le=H+ce,Ze=Ve-ve,He=ue+(Q-ve),Ue=ge*H/Le*ke,gt=we*H/Le*ke;W.projectionMatrix.makePerspective(Ze,He,Ue,gt,ke,Le)}function X(W,Z){Z===null?W.matrixWorld.copy(W.matrix):W.matrixWorld.multiplyMatrices(Z.matrixWorld,W.matrix),W.matrixWorldInverse.copy(W.matrixWorld).invert()}this.updateCamera=function(W){if(i===null)return;T.near=v.near=b.near=W.near,T.far=v.far=b.far=W.far,(C!==T.near||_!==T.far)&&(i.updateRenderState({depthNear:T.near,depthFar:T.far}),C=T.near,_=T.far);const Z=W.parent,ee=T.cameras;X(T,Z);for(let ie=0;ie<ee.length;ie++)X(ee[ie],Z);T.matrixWorld.decompose(T.position,T.quaternion,T.scale),W.position.copy(T.position),W.quaternion.copy(T.quaternion),W.scale.copy(T.scale),W.matrix.copy(T.matrix),W.matrixWorld.copy(T.matrixWorld);const Q=W.children;for(let ie=0,ae=Q.length;ie<ae;ie++)Q[ie].updateMatrixWorld(!0);ee.length===2?G(T,b,v):T.projectionMatrix.copy(b.projectionMatrix)},this.getCamera=function(){return T},this.getFoveation=function(){if(u!==null)return u.fixedFoveation;if(f!==null)return f.fixedFoveation},this.setFoveation=function(W){u!==null&&(u.fixedFoveation=W),f!==null&&f.fixedFoveation!==void 0&&(f.fixedFoveation=W)};let O=null;function j(W,Z){if(c=Z.getViewerPose(l||r),d=Z,c!==null){const ee=c.views;f!==null&&(e.setRenderTargetFramebuffer(g,f.framebuffer),e.setRenderTarget(g));let Q=!1;ee.length!==T.cameras.length&&(T.cameras.length=0,Q=!0);for(let ie=0;ie<ee.length;ie++){const ae=ee[ie];let re=null;if(f!==null)re=f.getViewport(ae);else{const ge=h.getViewSubImage(u,ae);re=ge.viewport,ie===0&&(e.setRenderTargetTextures(g,ge.colorTexture,u.ignoreDepthValues?void 0:ge.depthStencilTexture),e.setRenderTarget(g))}let H=M[ie];H===void 0&&(H=new Ot,H.layers.enable(ie),H.viewport=new ft,M[ie]=H),H.matrix.fromArray(ae.transform.matrix),H.projectionMatrix.fromArray(ae.projectionMatrix),H.viewport.set(re.x,re.y,re.width,re.height),ie===0&&T.matrix.copy(H.matrix),Q===!0&&T.cameras.push(H)}}for(let ee=0;ee<y.length;ee++){const Q=x[ee],ie=y[ee];Q!==null&&ie!==void 0&&ie.update(Q,Z,l||r)}O&&O(W,Z),d=null}const Y=new Df;Y.setAnimationLoop(j),this.setAnimationLoop=function(W){O=W},this.dispose=function(){}}}function a_(a,e){function t(m,g){m.fogColor.value.copy(g.color),g.isFog?(m.fogNear.value=g.near,m.fogFar.value=g.far):g.isFogExp2&&(m.fogDensity.value=g.density)}function n(m,g,y,x,b){g.isMeshBasicMaterial||g.isMeshLambertMaterial?i(m,g):g.isMeshToonMaterial?(i(m,g),h(m,g)):g.isMeshPhongMaterial?(i(m,g),c(m,g)):g.isMeshStandardMaterial?(i(m,g),u(m,g),g.isMeshPhysicalMaterial&&f(m,g,b)):g.isMeshMatcapMaterial?(i(m,g),d(m,g)):g.isMeshDepthMaterial?i(m,g):g.isMeshDistanceMaterial?(i(m,g),p(m,g)):g.isMeshNormalMaterial?i(m,g):g.isLineBasicMaterial?(s(m,g),g.isLineDashedMaterial&&r(m,g)):g.isPointsMaterial?o(m,g,y,x):g.isSpriteMaterial?l(m,g):g.isShadowMaterial?(m.color.value.copy(g.color),m.opacity.value=g.opacity):g.isShaderMaterial&&(g.uniformsNeedUpdate=!1)}function i(m,g){m.opacity.value=g.opacity,g.color&&m.diffuse.value.copy(g.color),g.emissive&&m.emissive.value.copy(g.emissive).multiplyScalar(g.emissiveIntensity),g.map&&(m.map.value=g.map),g.alphaMap&&(m.alphaMap.value=g.alphaMap),g.bumpMap&&(m.bumpMap.value=g.bumpMap,m.bumpScale.value=g.bumpScale,g.side===Cn&&(m.bumpScale.value*=-1)),g.displacementMap&&(m.displacementMap.value=g.displacementMap,m.displacementScale.value=g.displacementScale,m.displacementBias.value=g.displacementBias),g.emissiveMap&&(m.emissiveMap.value=g.emissiveMap),g.normalMap&&(m.normalMap.value=g.normalMap,m.normalScale.value.copy(g.normalScale),g.side===Cn&&m.normalScale.value.negate()),g.specularMap&&(m.specularMap.value=g.specularMap),g.alphaTest>0&&(m.alphaTest.value=g.alphaTest);const y=e.get(g).envMap;if(y&&(m.envMap.value=y,m.flipEnvMap.value=y.isCubeTexture&&y.isRenderTargetTexture===!1?-1:1,m.reflectivity.value=g.reflectivity,m.ior.value=g.ior,m.refractionRatio.value=g.refractionRatio),g.lightMap){m.lightMap.value=g.lightMap;const v=a.physicallyCorrectLights!==!0?Math.PI:1;m.lightMapIntensity.value=g.lightMapIntensity*v}g.aoMap&&(m.aoMap.value=g.aoMap,m.aoMapIntensity.value=g.aoMapIntensity);let x;g.map?x=g.map:g.specularMap?x=g.specularMap:g.displacementMap?x=g.displacementMap:g.normalMap?x=g.normalMap:g.bumpMap?x=g.bumpMap:g.roughnessMap?x=g.roughnessMap:g.metalnessMap?x=g.metalnessMap:g.alphaMap?x=g.alphaMap:g.emissiveMap?x=g.emissiveMap:g.clearcoatMap?x=g.clearcoatMap:g.clearcoatNormalMap?x=g.clearcoatNormalMap:g.clearcoatRoughnessMap?x=g.clearcoatRoughnessMap:g.iridescenceMap?x=g.iridescenceMap:g.iridescenceThicknessMap?x=g.iridescenceThicknessMap:g.specularIntensityMap?x=g.specularIntensityMap:g.specularColorMap?x=g.specularColorMap:g.transmissionMap?x=g.transmissionMap:g.thicknessMap?x=g.thicknessMap:g.sheenColorMap?x=g.sheenColorMap:g.sheenRoughnessMap&&(x=g.sheenRoughnessMap),x!==void 0&&(x.isWebGLRenderTarget&&(x=x.texture),x.matrixAutoUpdate===!0&&x.updateMatrix(),m.uvTransform.value.copy(x.matrix));let b;g.aoMap?b=g.aoMap:g.lightMap&&(b=g.lightMap),b!==void 0&&(b.isWebGLRenderTarget&&(b=b.texture),b.matrixAutoUpdate===!0&&b.updateMatrix(),m.uv2Transform.value.copy(b.matrix))}function s(m,g){m.diffuse.value.copy(g.color),m.opacity.value=g.opacity}function r(m,g){m.dashSize.value=g.dashSize,m.totalSize.value=g.dashSize+g.gapSize,m.scale.value=g.scale}function o(m,g,y,x){m.diffuse.value.copy(g.color),m.opacity.value=g.opacity,m.size.value=g.size*y,m.scale.value=x*.5,g.map&&(m.map.value=g.map),g.alphaMap&&(m.alphaMap.value=g.alphaMap),g.alphaTest>0&&(m.alphaTest.value=g.alphaTest);let b;g.map?b=g.map:g.alphaMap&&(b=g.alphaMap),b!==void 0&&(b.matrixAutoUpdate===!0&&b.updateMatrix(),m.uvTransform.value.copy(b.matrix))}function l(m,g){m.diffuse.value.copy(g.color),m.opacity.value=g.opacity,m.rotation.value=g.rotation,g.map&&(m.map.value=g.map),g.alphaMap&&(m.alphaMap.value=g.alphaMap),g.alphaTest>0&&(m.alphaTest.value=g.alphaTest);let y;g.map?y=g.map:g.alphaMap&&(y=g.alphaMap),y!==void 0&&(y.matrixAutoUpdate===!0&&y.updateMatrix(),m.uvTransform.value.copy(y.matrix))}function c(m,g){m.specular.value.copy(g.specular),m.shininess.value=Math.max(g.shininess,1e-4)}function h(m,g){g.gradientMap&&(m.gradientMap.value=g.gradientMap)}function u(m,g){m.roughness.value=g.roughness,m.metalness.value=g.metalness,g.roughnessMap&&(m.roughnessMap.value=g.roughnessMap),g.metalnessMap&&(m.metalnessMap.value=g.metalnessMap),e.get(g).envMap&&(m.envMapIntensity.value=g.envMapIntensity)}function f(m,g,y){m.ior.value=g.ior,g.sheen>0&&(m.sheenColor.value.copy(g.sheenColor).multiplyScalar(g.sheen),m.sheenRoughness.value=g.sheenRoughness,g.sheenColorMap&&(m.sheenColorMap.value=g.sheenColorMap),g.sheenRoughnessMap&&(m.sheenRoughnessMap.value=g.sheenRoughnessMap)),g.clearcoat>0&&(m.clearcoat.value=g.clearcoat,m.clearcoatRoughness.value=g.clearcoatRoughness,g.clearcoatMap&&(m.clearcoatMap.value=g.clearcoatMap),g.clearcoatRoughnessMap&&(m.clearcoatRoughnessMap.value=g.clearcoatRoughnessMap),g.clearcoatNormalMap&&(m.clearcoatNormalScale.value.copy(g.clearcoatNormalScale),m.clearcoatNormalMap.value=g.clearcoatNormalMap,g.side===Cn&&m.clearcoatNormalScale.value.negate())),g.iridescence>0&&(m.iridescence.value=g.iridescence,m.iridescenceIOR.value=g.iridescenceIOR,m.iridescenceThicknessMinimum.value=g.iridescenceThicknessRange[0],m.iridescenceThicknessMaximum.value=g.iridescenceThicknessRange[1],g.iridescenceMap&&(m.iridescenceMap.value=g.iridescenceMap),g.iridescenceThicknessMap&&(m.iridescenceThicknessMap.value=g.iridescenceThicknessMap)),g.transmission>0&&(m.transmission.value=g.transmission,m.transmissionSamplerMap.value=y.texture,m.transmissionSamplerSize.value.set(y.width,y.height),g.transmissionMap&&(m.transmissionMap.value=g.transmissionMap),m.thickness.value=g.thickness,g.thicknessMap&&(m.thicknessMap.value=g.thicknessMap),m.attenuationDistance.value=g.attenuationDistance,m.attenuationColor.value.copy(g.attenuationColor)),m.specularIntensity.value=g.specularIntensity,m.specularColor.value.copy(g.specularColor),g.specularIntensityMap&&(m.specularIntensityMap.value=g.specularIntensityMap),g.specularColorMap&&(m.specularColorMap.value=g.specularColorMap)}function d(m,g){g.matcap&&(m.matcap.value=g.matcap)}function p(m,g){m.referencePosition.value.copy(g.referencePosition),m.nearDistance.value=g.nearDistance,m.farDistance.value=g.farDistance}return{refreshFogUniforms:t,refreshMaterialUniforms:n}}function l_(a,e,t,n){let i={},s={},r=[];const o=t.isWebGL2?a.getParameter(35375):0;function l(x,b){const v=b.program;n.uniformBlockBinding(x,v)}function c(x,b){let v=i[x.id];v===void 0&&(p(x),v=h(x),i[x.id]=v,x.addEventListener(\"dispose\",g));const M=b.program;n.updateUBOMapping(x,M);const T=e.render.frame;s[x.id]!==T&&(f(x),s[x.id]=T)}function h(x){const b=u();x.__bindingPointIndex=b;const v=a.createBuffer(),M=x.__size,T=x.usage;return a.bindBuffer(35345,v),a.bufferData(35345,M,T),a.bindBuffer(35345,null),a.bindBufferBase(35345,b,v),v}function u(){for(let x=0;x<o;x++)if(r.indexOf(x)===-1)return r.push(x),x;return console.error(\"THREE.WebGLRenderer: Maximum number of simultaneously usable uniforms groups reached.\"),0}function f(x){const b=i[x.id],v=x.uniforms,M=x.__cache;a.bindBuffer(35345,b);for(let T=0,C=v.length;T<C;T++){const _=v[T];if(d(_,T,M)===!0){const E=_.value,F=_.__offset;typeof E==\"number\"?(_.__data[0]=E,a.bufferSubData(35345,F,_.__data)):(_.value.isMatrix3?(_.__data[0]=_.value.elements[0],_.__data[1]=_.value.elements[1],_.__data[2]=_.value.elements[2],_.__data[3]=_.value.elements[0],_.__data[4]=_.value.elements[3],_.__data[5]=_.value.elements[4],_.__data[6]=_.value.elements[5],_.__data[7]=_.value.elements[0],_.__data[8]=_.value.elements[6],_.__data[9]=_.value.elements[7],_.__data[10]=_.value.elements[8],_.__data[11]=_.value.elements[0]):E.toArray(_.__data),a.bufferSubData(35345,F,_.__data))}}a.bindBuffer(35345,null)}function d(x,b,v){const M=x.value;if(v[b]===void 0)return typeof M==\"number\"?v[b]=M:v[b]=M.clone(),!0;if(typeof M==\"number\"){if(v[b]!==M)return v[b]=M,!0}else{const T=v[b];if(T.equals(M)===!1)return T.copy(M),!0}return!1}function p(x){const b=x.uniforms;let v=0;const M=16;let T=0;for(let C=0,_=b.length;C<_;C++){const E=b[C],F=m(E);if(E.__data=new Float32Array(F.storage/Float32Array.BYTES_PER_ELEMENT),E.__offset=v,C>0){T=v%M;const U=M-T;T!==0&&U-F.boundary<0&&(v+=M-T,E.__offset=v)}v+=F.storage}return T=v%M,T>0&&(v+=M-T),x.__size=v,x.__cache={},this}function m(x){const b=x.value,v={boundary:0,storage:0};return typeof b==\"number\"?(v.boundary=4,v.storage=4):b.isVector2?(v.boundary=8,v.storage=8):b.isVector3||b.isColor?(v.boundary=16,v.storage=12):b.isVector4?(v.boundary=16,v.storage=16):b.isMatrix3?(v.boundary=48,v.storage=48):b.isMatrix4?(v.boundary=64,v.storage=64):b.isTexture?console.warn(\"THREE.WebGLRenderer: Texture samplers can not be part of an uniforms group.\"):console.warn(\"THREE.WebGLRenderer: Unsupported uniform value type.\",b),v}function g(x){const b=x.target;b.removeEventListener(\"dispose\",g);const v=r.indexOf(b.__bindingPointIndex);r.splice(v,1),a.deleteBuffer(i[b.id]),delete i[b.id],delete s[b.id]}function y(){for(const x in i)a.deleteBuffer(i[x]);r=[],i={},s={}}return{bind:l,update:c,dispose:y}}function c_(){const a=ho(\"canvas\");return a.style.display=\"block\",a}function $c(a={}){this.isWebGLRenderer=!0;const e=a.canvas!==void 0?a.canvas:c_(),t=a.context!==void 0?a.context:null,n=a.depth!==void 0?a.depth:!0,i=a.stencil!==void 0?a.stencil:!0,s=a.antialias!==void 0?a.antialias:!1,r=a.premultipliedAlpha!==void 0?a.premultipliedAlpha:!0,o=a.preserveDrawingBuffer!==void 0?a.preserveDrawingBuffer:!1,l=a.powerPreference!==void 0?a.powerPreference:\"default\",c=a.failIfMajorPerformanceCaveat!==void 0?a.failIfMajorPerformanceCaveat:!1;let h;t!==null?h=t.getContextAttributes().alpha:h=a.alpha!==void 0?a.alpha:!1;let u=null,f=null;const d=[],p=[];this.domElement=e,this.debug={checkShaderErrors:!0},this.autoClear=!0,this.autoClearColor=!0,this.autoClearDepth=!0,this.autoClearStencil=!0,this.sortObjects=!0,this.clippingPlanes=[],this.localClippingEnabled=!1,this.outputEncoding=fi,this.physicallyCorrectLights=!1,this.toneMapping=Zn,this.toneMappingExposure=1,Object.defineProperties(this,{gammaFactor:{get:function(){return console.warn(\"THREE.WebGLRenderer: .gammaFactor has been removed.\"),2},set:function(){console.warn(\"THREE.WebGLRenderer: .gammaFactor has been removed.\")}}});const m=this;let g=!1,y=0,x=0,b=null,v=-1,M=null;const T=new ft,C=new ft;let _=null,E=e.width,F=e.height,U=1,q=null,K=null;const G=new ft(0,0,E,F),X=new ft(0,0,E,F);let O=!1;const j=new Pa;let Y=!1,W=!1,Z=null;const ee=new Ne,Q=new he,ie=new I,ae={background:null,fog:null,environment:null,overrideMaterial:null,isScene:!0};function re(){return b===null?U:1}let H=t;function ge(N,$){for(let le=0;le<N.length;le++){const te=N[le],pe=e.getContext(te,$);if(pe!==null)return pe}return null}try{const N={alpha:!0,depth:n,stencil:i,antialias:s,premultipliedAlpha:r,preserveDrawingBuffer:o,powerPreference:l,failIfMajorPerformanceCaveat:c};if(\"setAttribute\"in e&&e.setAttribute(\"data-engine\",`three.js r${$o}`),e.addEventListener(\"webglcontextlost\",ne,!1),e.addEventListener(\"webglcontextrestored\",de,!1),e.addEventListener(\"webglcontextcreationerror\",Ce,!1),H===null){const $=[\"webgl2\",\"webgl\",\"experimental-webgl\"];if(m.isWebGL1Renderer===!0&&$.shift(),H=ge($,N),H===null)throw ge($)?new Error(\"Error creating WebGL context with your selected attributes.\"):new Error(\"Error creating WebGL context.\")}H.getShaderPrecisionFormat===void 0&&(H.getShaderPrecisionFormat=function(){return{rangeMin:1,rangeMax:1,precision:1}})}catch(N){throw console.error(\"THREE.WebGLRenderer: \"+N.message),N}let we,Fe,xe,Ve,ue,ce,ve,ke,Le,Ze,He,Ue,gt,lt,k,P,oe,_e,Se,Ie,je,D,me,Te;function V(){we=new Sx(H),Fe=new xx(H,we,a),we.init(Fe),D=new od(H,we,Fe),xe=new i_(H,we,Fe),Ve=new Ex,ue=new qv,ce=new s_(H,we,xe,ue,Fe,D,Ve),ve=new _x(m),ke=new Mx(m),Le=new y0(H,Fe),me=new gx(H,we,Le,Fe),Ze=new Tx(H,Le,Ve,me),He=new Ix(H,Ze,Le,Ve),Se=new Rx(H,Fe,ce),P=new vx(ue),Ue=new Wv(m,ve,ke,we,Fe,me,P),gt=new a_(m,ue),lt=new jv,k=new Qv(we,Fe),_e=new mx(m,ve,xe,He,h,r),oe=new n_(m,He,Fe),Te=new l_(H,Ve,Fe,xe),Ie=new yx(H,we,Ve,Fe),je=new Ax(H,we,Ve,Fe),Ve.programs=Ue.programs,m.capabilities=Fe,m.extensions=we,m.properties=ue,m.renderLists=lt,m.shadowMap=oe,m.state=xe,m.info=Ve}V();const B=new o_(m,H);this.xr=B,this.getContext=function(){return H},this.getContextAttributes=function(){return H.getContextAttributes()},this.forceContextLoss=function(){const N=we.get(\"WEBGL_lose_context\");N&&N.loseContext()},this.forceContextRestore=function(){const N=we.get(\"WEBGL_lose_context\");N&&N.restoreContext()},this.getPixelRatio=function(){return U},this.setPixelRatio=function(N){N!==void 0&&(U=N,this.setSize(E,F,!1))},this.getSize=function(N){return N.set(E,F)},this.setSize=function(N,$,le){if(B.isPresenting){console.warn(\"THREE.WebGLRenderer: Can't change size while VR device is presenting.\");return}E=N,F=$,e.width=Math.floor(N*U),e.height=Math.floor($*U),le!==!1&&(e.style.width=N+\"px\",e.style.height=$+\"px\"),this.setViewport(0,0,N,$)},this.getDrawingBufferSize=function(N){return N.set(E*U,F*U).floor()},this.setDrawingBufferSize=function(N,$,le){E=N,F=$,U=le,e.width=Math.floor(N*le),e.height=Math.floor($*le),this.setViewport(0,0,N,$)},this.getCurrentViewport=function(N){return N.copy(T)},this.getViewport=function(N){return N.copy(G)},this.setViewport=function(N,$,le,te){N.isVector4?G.set(N.x,N.y,N.z,N.w):G.set(N,$,le,te),xe.viewport(T.copy(G).multiplyScalar(U).floor())},this.getScissor=function(N){return N.copy(X)},this.setScissor=function(N,$,le,te){N.isVector4?X.set(N.x,N.y,N.z,N.w):X.set(N,$,le,te),xe.scissor(C.copy(X).multiplyScalar(U).floor())},this.getScissorTest=function(){return O},this.setScissorTest=function(N){xe.setScissorTest(O=N)},this.setOpaqueSort=function(N){q=N},this.setTransparentSort=function(N){K=N},this.getClearColor=function(N){return N.copy(_e.getClearColor())},this.setClearColor=function(){_e.setClearColor.apply(_e,arguments)},this.getClearAlpha=function(){return _e.getClearAlpha()},this.setClearAlpha=function(){_e.setClearAlpha.apply(_e,arguments)},this.clear=function(N=!0,$=!0,le=!0){let te=0;N&&(te|=16384),$&&(te|=256),le&&(te|=1024),H.clear(te)},this.clearColor=function(){this.clear(!0,!1,!1)},this.clearDepth=function(){this.clear(!1,!0,!1)},this.clearStencil=function(){this.clear(!1,!1,!0)},this.dispose=function(){e.removeEventListener(\"webglcontextlost\",ne,!1),e.removeEventListener(\"webglcontextrestored\",de,!1),e.removeEventListener(\"webglcontextcreationerror\",Ce,!1),lt.dispose(),k.dispose(),ue.dispose(),ve.dispose(),ke.dispose(),He.dispose(),me.dispose(),Te.dispose(),Ue.dispose(),B.dispose(),B.removeEventListener(\"sessionstart\",$e),B.removeEventListener(\"sessionend\",Tt),Z&&(Z.dispose(),Z=null),ct.stop()};function ne(N){N.preventDefault(),console.log(\"THREE.WebGLRenderer: Context Lost.\"),g=!0}function de(){console.log(\"THREE.WebGLRenderer: Context Restored.\"),g=!1;const N=Ve.autoReset,$=oe.enabled,le=oe.autoUpdate,te=oe.needsUpdate,pe=oe.type;V(),Ve.autoReset=N,oe.enabled=$,oe.autoUpdate=le,oe.needsUpdate=te,oe.type=pe}function Ce(N){console.error(\"THREE.WebGLRenderer: A WebGL context could not be created. Reason: \",N.statusMessage)}function z(N){const $=N.target;$.removeEventListener(\"dispose\",z),ye($)}function ye(N){J(N),ue.remove(N)}function J(N){const $=ue.get(N).programs;$!==void 0&&($.forEach(function(le){Ue.releaseProgram(le)}),N.isShaderMaterial&&Ue.releaseShaderCache(N))}this.renderBufferDirect=function(N,$,le,te,pe,Je){$===null&&($=ae);const Qe=pe.isMesh&&pe.matrixWorld.determinant()<0,nt=hh(N,$,le,te,pe);xe.setMaterial(te,Qe);let tt=le.index;const bt=le.attributes.position;if(tt===null){if(bt===void 0||bt.count===0)return}else if(tt.count===0)return;let ht=1;te.wireframe===!0&&(tt=Ze.getWireframeAttribute(le),ht=2),me.setup(pe,te,nt,le,tt);let mt,It=Ie;tt!==null&&(mt=Le.get(tt),It=je,It.setIndex(mt));const Li=tt!==null?tt.count:bt.count,Zt=le.drawRange.start*ht,En=le.drawRange.count*ht,_n=Je!==null?Je.start*ht:0,yt=Je!==null?Je.count*ht:1/0,rs=Math.max(Zt,_n),Ft=Math.min(Li,Zt+En,_n+yt)-1,bn=Math.max(0,Ft-rs+1);if(bn!==0){if(pe.isMesh)te.wireframe===!0?(xe.setLineWidth(te.wireframeLinewidth*re()),It.setMode(1)):It.setMode(4);else if(pe.isLine){let ai=te.linewidth;ai===void 0&&(ai=1),xe.setLineWidth(ai*re()),pe.isLineSegments?It.setMode(1):pe.isLineLoop?It.setMode(2):It.setMode(3)}else pe.isPoints?It.setMode(0):pe.isSprite&&It.setMode(4);if(pe.isInstancedMesh)It.renderInstances(rs,bn,pe.count);else if(le.isInstancedBufferGeometry){const ai=Math.min(le.instanceCount,le._maxInstanceCount);It.renderInstances(rs,bn,ai)}else It.render(rs,bn)}},this.compile=function(N,$){f=k.get(N),f.init(),p.push(f),N.traverseVisible(function(le){le.isLight&&le.layers.test($.layers)&&(f.pushLight(le),le.castShadow&&f.pushShadow(le))}),f.setupLights(m.physicallyCorrectLights),N.traverse(function(le){const te=le.material;if(te)if(Array.isArray(te))for(let pe=0;pe<te.length;pe++){const Je=te[pe];gn(Je,N,le)}else gn(te,N,le)}),p.pop(),f=null};let Pe=null;function Ae(N){Pe&&Pe(N)}function $e(){ct.stop()}function Tt(){ct.start()}const ct=new Df;ct.setAnimationLoop(Ae),typeof self!=\"undefined\"&&ct.setContext(self),this.setAnimationLoop=function(N){Pe=N,B.setAnimationLoop(N),N===null?ct.stop():ct.start()},B.addEventListener(\"sessionstart\",$e),B.addEventListener(\"sessionend\",Tt),this.render=function(N,$){if($!==void 0&&$.isCamera!==!0){console.error(\"THREE.WebGLRenderer.render: camera is not an instance of THREE.Camera.\");return}if(g===!0)return;N.autoUpdate===!0&&N.updateMatrixWorld(),$.parent===null&&$.updateMatrixWorld(),B.enabled===!0&&B.isPresenting===!0&&(B.cameraAutoUpdate===!0&&B.updateCamera($),$=B.getCamera()),N.isScene===!0&&N.onBeforeRender(m,N,$,b),f=k.get(N,p.length),f.init(),p.push(f),ee.multiplyMatrices($.projectionMatrix,$.matrixWorldInverse),j.setFromProjectionMatrix(ee),W=this.localClippingEnabled,Y=P.init(this.clippingPlanes,W,$),u=lt.get(N,d.length),u.init(),d.push(u),Mt(N,$,0,m.sortObjects),u.finish(),m.sortObjects===!0&&u.sort(q,K),Y===!0&&P.beginShadows();const le=f.state.shadowsArray;if(oe.render(le,N,$),Y===!0&&P.endShadows(),this.info.autoReset===!0&&this.info.reset(),_e.render(u,N),f.setupLights(m.physicallyCorrectLights),$.isArrayCamera){const te=$.cameras;for(let pe=0,Je=te.length;pe<Je;pe++){const Qe=te[pe];et(u,N,Qe,Qe.viewport)}}else et(u,N,$);b!==null&&(ce.updateMultisampleRenderTarget(b),ce.updateRenderTargetMipmap(b)),N.isScene===!0&&N.onAfterRender(m,N,$),me.resetDefaultState(),v=-1,M=null,p.pop(),p.length>0?f=p[p.length-1]:f=null,d.pop(),d.length>0?u=d[d.length-1]:u=null};function Mt(N,$,le,te){if(N.visible===!1)return;if(N.layers.test($.layers)){if(N.isGroup)le=N.renderOrder;else if(N.isLOD)N.autoUpdate===!0&&N.update($);else if(N.isLight)f.pushLight(N),N.castShadow&&f.pushShadow(N);else if(N.isSprite){if(!N.frustumCulled||j.intersectsSprite(N)){te&&ie.setFromMatrixPosition(N.matrixWorld).applyMatrix4(ee);const Qe=He.update(N),nt=N.material;nt.visible&&u.push(N,Qe,nt,le,ie.z,null)}}else if((N.isMesh||N.isLine||N.isPoints)&&(N.isSkinnedMesh&&N.skeleton.frame!==Ve.render.frame&&(N.skeleton.update(),N.skeleton.frame=Ve.render.frame),!N.frustumCulled||j.intersectsObject(N))){te&&ie.setFromMatrixPosition(N.matrixWorld).applyMatrix4(ee);const Qe=He.update(N),nt=N.material;if(Array.isArray(nt)){const tt=Qe.groups;for(let bt=0,ht=tt.length;bt<ht;bt++){const mt=tt[bt],It=nt[mt.materialIndex];It&&It.visible&&u.push(N,Qe,It,le,ie.z,mt)}}else nt.visible&&u.push(N,Qe,nt,le,ie.z,null)}}const Je=N.children;for(let Qe=0,nt=Je.length;Qe<nt;Qe++)Mt(Je[Qe],$,le,te)}function et(N,$,le,te){const pe=N.opaque,Je=N.transmissive,Qe=N.transparent;f.setupLightsView(le),Je.length>0&&Ct(pe,$,le),te&&xe.viewport(T.copy(te)),pe.length>0&&_t(pe,$,le),Je.length>0&&_t(Je,$,le),Qe.length>0&&_t(Qe,$,le),xe.buffers.depth.setTest(!0),xe.buffers.depth.setMask(!0),xe.buffers.color.setMask(!0),xe.setPolygonOffset(!1)}function Ct(N,$,le){const te=Fe.isWebGL2;Z===null&&(Z=new Rn(1,1,{generateMipmaps:!0,type:we.has(\"EXT_color_buffer_half_float\")?Ks:Di,minFilter:Kn,samples:te&&s===!0?4:0})),m.getDrawingBufferSize(Q),te?Z.setSize(Q.x,Q.y):Z.setSize(aa(Q.x),aa(Q.y));const pe=m.getRenderTarget();m.setRenderTarget(Z),m.clear();const Je=m.toneMapping;m.toneMapping=Zn,_t(N,$,le),m.toneMapping=Je,ce.updateMultisampleRenderTarget(Z),ce.updateRenderTargetMipmap(Z),m.setRenderTarget(pe)}function _t(N,$,le){const te=$.isScene===!0?$.overrideMaterial:null;for(let pe=0,Je=N.length;pe<Je;pe++){const Qe=N[pe],nt=Qe.object,tt=Qe.geometry,bt=te===null?Qe.material:te,ht=Qe.group;nt.layers.test(le.layers)&&Yn(nt,$,le,tt,bt,ht)}}function Yn(N,$,le,te,pe,Je){N.onBeforeRender(m,$,le,te,pe,Je),N.modelViewMatrix.multiplyMatrices(le.matrixWorldInverse,N.matrixWorld),N.normalMatrix.getNormalMatrix(N.modelViewMatrix),pe.onBeforeRender(m,$,le,te,N,Je),pe.transparent===!0&&pe.side===ci?(pe.side=Cn,pe.needsUpdate=!0,m.renderBufferDirect(le,$,te,pe,N,Je),pe.side=li,pe.needsUpdate=!0,m.renderBufferDirect(le,$,te,pe,N,Je),pe.side=ci):m.renderBufferDirect(le,$,te,pe,N,Je),N.onAfterRender(m,$,le,te,pe,Je)}function gn(N,$,le){$.isScene!==!0&&($=ae);const te=ue.get(N),pe=f.state.lights,Je=f.state.shadowsArray,Qe=pe.state.version,nt=Ue.getParameters(N,pe.state,Je,$,le),tt=Ue.getProgramCacheKey(nt);let bt=te.programs;te.environment=N.isMeshStandardMaterial?$.environment:null,te.fog=$.fog,te.envMap=(N.isMeshStandardMaterial?ke:ve).get(N.envMap||te.environment),bt===void 0&&(N.addEventListener(\"dispose\",z),bt=new Map,te.programs=bt);let ht=bt.get(tt);if(ht!==void 0){if(te.currentProgram===ht&&te.lightsStateVersion===Qe)return Rl(N,nt),ht}else nt.uniforms=Ue.getUniforms(N),N.onBuild(le,nt,m),N.onBeforeCompile(nt,m),ht=Ue.acquireProgram(nt,tt),bt.set(tt,ht),te.uniforms=nt.uniforms;const mt=te.uniforms;(!N.isShaderMaterial&&!N.isRawShaderMaterial||N.clipping===!0)&&(mt.clippingPlanes=P.uniform),Rl(N,nt),te.needsLights=dh(N),te.lightsStateVersion=Qe,te.needsLights&&(mt.ambientLightColor.value=pe.state.ambient,mt.lightProbe.value=pe.state.probe,mt.directionalLights.value=pe.state.directional,mt.directionalLightShadows.value=pe.state.directionalShadow,mt.spotLights.value=pe.state.spot,mt.spotLightShadows.value=pe.state.spotShadow,mt.rectAreaLights.value=pe.state.rectArea,mt.ltc_1.value=pe.state.rectAreaLTC1,mt.ltc_2.value=pe.state.rectAreaLTC2,mt.pointLights.value=pe.state.point,mt.pointLightShadows.value=pe.state.pointShadow,mt.hemisphereLights.value=pe.state.hemi,mt.directionalShadowMap.value=pe.state.directionalShadowMap,mt.directionalShadowMatrix.value=pe.state.directionalShadowMatrix,mt.spotShadowMap.value=pe.state.spotShadowMap,mt.spotShadowMatrix.value=pe.state.spotShadowMatrix,mt.pointShadowMap.value=pe.state.pointShadowMap,mt.pointShadowMatrix.value=pe.state.pointShadowMatrix);const It=ht.getUniforms(),Li=Na.seqWithValue(It.seq,mt);return te.currentProgram=ht,te.uniformsList=Li,ht}function Rl(N,$){const le=ue.get(N);le.outputEncoding=$.outputEncoding,le.instancing=$.instancing,le.skinning=$.skinning,le.morphTargets=$.morphTargets,le.morphNormals=$.morphNormals,le.morphColors=$.morphColors,le.morphTargetsCount=$.morphTargetsCount,le.numClippingPlanes=$.numClippingPlanes,le.numIntersection=$.numClipIntersection,le.vertexAlphas=$.vertexAlphas,le.vertexTangents=$.vertexTangents,le.toneMapping=$.toneMapping}function hh(N,$,le,te,pe){$.isScene!==!0&&($=ae),ce.resetTextureUnits();const Je=$.fog,Qe=te.isMeshStandardMaterial?$.environment:null,nt=b===null?m.outputEncoding:b.isXRRenderTarget===!0?b.texture.encoding:fi,tt=(te.isMeshStandardMaterial?ke:ve).get(te.envMap||Qe),bt=te.vertexColors===!0&&!!le.attributes.color&&le.attributes.color.itemSize===4,ht=!!te.normalMap&&!!le.attributes.tangent,mt=!!le.morphAttributes.position,It=!!le.morphAttributes.normal,Li=!!le.morphAttributes.color,Zt=te.toneMapped?m.toneMapping:Zn,En=le.morphAttributes.position||le.morphAttributes.normal||le.morphAttributes.color,_n=En!==void 0?En.length:0,yt=ue.get(te),rs=f.state.lights;if(Y===!0&&(W===!0||N!==M)){const ln=N===M&&te.id===v;P.setState(te,N,ln)}let Ft=!1;te.version===yt.__version?(yt.needsLights&&yt.lightsStateVersion!==rs.state.version||yt.outputEncoding!==nt||pe.isInstancedMesh&&yt.instancing===!1||!pe.isInstancedMesh&&yt.instancing===!0||pe.isSkinnedMesh&&yt.skinning===!1||!pe.isSkinnedMesh&&yt.skinning===!0||yt.envMap!==tt||te.fog===!0&&yt.fog!==Je||yt.numClippingPlanes!==void 0&&(yt.numClippingPlanes!==P.numPlanes||yt.numIntersection!==P.numIntersection)||yt.vertexAlphas!==bt||yt.vertexTangents!==ht||yt.morphTargets!==mt||yt.morphNormals!==It||yt.morphColors!==Li||yt.toneMapping!==Zt||Fe.isWebGL2===!0&&yt.morphTargetsCount!==_n)&&(Ft=!0):(Ft=!0,yt.__version=te.version);let bn=yt.currentProgram;Ft===!0&&(bn=gn(te,$,pe));let ai=!1,qs=!1,Jr=!1;const tn=bn.getUniforms(),Gn=yt.uniforms;if(xe.useProgram(bn.program)&&(ai=!0,qs=!0,Jr=!0),te.id!==v&&(v=te.id,qs=!0),ai||M!==N){if(tn.setValue(H,\"projectionMatrix\",N.projectionMatrix),Fe.logarithmicDepthBuffer&&tn.setValue(H,\"logDepthBufFC\",2/(Math.log(N.far+1)/Math.LN2)),M!==N&&(M=N,qs=!0,Jr=!0),te.isShaderMaterial||te.isMeshPhongMaterial||te.isMeshToonMaterial||te.isMeshStandardMaterial||te.envMap){const ln=tn.map.cameraPosition;ln!==void 0&&ln.setValue(H,ie.setFromMatrixPosition(N.matrixWorld))}(te.isMeshPhongMaterial||te.isMeshToonMaterial||te.isMeshLambertMaterial||te.isMeshBasicMaterial||te.isMeshStandardMaterial||te.isShaderMaterial)&&tn.setValue(H,\"isOrthographic\",N.isOrthographicCamera===!0),(te.isMeshPhongMaterial||te.isMeshToonMaterial||te.isMeshLambertMaterial||te.isMeshBasicMaterial||te.isMeshStandardMaterial||te.isShaderMaterial||te.isShadowMaterial||pe.isSkinnedMesh)&&tn.setValue(H,\"viewMatrix\",N.matrixWorldInverse)}if(pe.isSkinnedMesh){tn.setOptional(H,pe,\"bindMatrix\"),tn.setOptional(H,pe,\"bindMatrixInverse\");const ln=pe.skeleton;ln&&(Fe.floatVertexTextures?(ln.boneTexture===null&&ln.computeBoneTexture(),tn.setValue(H,\"boneTexture\",ln.boneTexture,ce),tn.setValue(H,\"boneTextureSize\",ln.boneTextureSize)):console.warn(\"THREE.WebGLRenderer: SkinnedMesh can only be used with WebGL 2. With WebGL 1 OES_texture_float and vertex textures support is required.\"))}const Ko=le.morphAttributes;if((Ko.position!==void 0||Ko.normal!==void 0||Ko.color!==void 0&&Fe.isWebGL2===!0)&&Se.update(pe,le,te,bn),(qs||yt.receiveShadow!==pe.receiveShadow)&&(yt.receiveShadow=pe.receiveShadow,tn.setValue(H,\"receiveShadow\",pe.receiveShadow)),qs&&(tn.setValue(H,\"toneMappingExposure\",m.toneMappingExposure),yt.needsLights&&fh(Gn,Jr),Je&&te.fog===!0&&gt.refreshFogUniforms(Gn,Je),gt.refreshMaterialUniforms(Gn,te,U,F,Z),Na.upload(H,yt.uniformsList,Gn,ce)),te.isShaderMaterial&&te.uniformsNeedUpdate===!0&&(Na.upload(H,yt.uniformsList,Gn,ce),te.uniformsNeedUpdate=!1),te.isSpriteMaterial&&tn.setValue(H,\"center\",pe.center),tn.setValue(H,\"modelViewMatrix\",pe.modelViewMatrix),tn.setValue(H,\"normalMatrix\",pe.normalMatrix),tn.setValue(H,\"modelMatrix\",pe.matrixWorld),te.isShaderMaterial||te.isRawShaderMaterial){const ln=te.uniformsGroups;for(let Jo=0,Il=ln.length;Jo<Il;Jo++)if(Fe.isWebGL2){const Pl=ln[Jo];Te.update(Pl,bn),Te.bind(Pl,bn)}else console.warn(\"THREE.WebGLRenderer: Uniform Buffer Objects can only be used with WebGL 2.\")}return bn}function fh(N,$){N.ambientLightColor.needsUpdate=$,N.lightProbe.needsUpdate=$,N.directionalLights.needsUpdate=$,N.directionalLightShadows.needsUpdate=$,N.pointLights.needsUpdate=$,N.pointLightShadows.needsUpdate=$,N.spotLights.needsUpdate=$,N.spotLightShadows.needsUpdate=$,N.rectAreaLights.needsUpdate=$,N.hemisphereLights.needsUpdate=$}function dh(N){return N.isMeshLambertMaterial||N.isMeshToonMaterial||N.isMeshPhongMaterial||N.isMeshStandardMaterial||N.isShadowMaterial||N.isShaderMaterial&&N.lights===!0}this.getActiveCubeFace=function(){return y},this.getActiveMipmapLevel=function(){return x},this.getRenderTarget=function(){return b},this.setRenderTargetTextures=function(N,$,le){ue.get(N.texture).__webglTexture=$,ue.get(N.depthTexture).__webglTexture=le;const te=ue.get(N);te.__hasExternalTextures=!0,te.__hasExternalTextures&&(te.__autoAllocateDepthBuffer=le===void 0,te.__autoAllocateDepthBuffer||we.has(\"WEBGL_multisampled_render_to_texture\")===!0&&(console.warn(\"THREE.WebGLRenderer: Render-to-texture extension was disabled because an external texture was provided\"),te.__useRenderToTexture=!1))},this.setRenderTargetFramebuffer=function(N,$){const le=ue.get(N);le.__webglFramebuffer=$,le.__useDefaultFramebuffer=$===void 0},this.setRenderTarget=function(N,$=0,le=0){b=N,y=$,x=le;let te=!0;if(N){const tt=ue.get(N);tt.__useDefaultFramebuffer!==void 0?(xe.bindFramebuffer(36160,null),te=!1):tt.__webglFramebuffer===void 0?ce.setupRenderTarget(N):tt.__hasExternalTextures&&ce.rebindTextures(N,ue.get(N.texture).__webglTexture,ue.get(N.depthTexture).__webglTexture)}let pe=null,Je=!1,Qe=!1;if(N){const tt=N.texture;(tt.isData3DTexture||tt.isDataArrayTexture)&&(Qe=!0);const bt=ue.get(N).__webglFramebuffer;N.isWebGLCubeRenderTarget?(pe=bt[$],Je=!0):Fe.isWebGL2&&N.samples>0&&ce.useMultisampledRTT(N)===!1?pe=ue.get(N).__webglMultisampledFramebuffer:pe=bt,T.copy(N.viewport),C.copy(N.scissor),_=N.scissorTest}else T.copy(G).multiplyScalar(U).floor(),C.copy(X).multiplyScalar(U).floor(),_=O;if(xe.bindFramebuffer(36160,pe)&&Fe.drawBuffers&&te&&xe.drawBuffers(N,pe),xe.viewport(T),xe.scissor(C),xe.setScissorTest(_),Je){const tt=ue.get(N.texture);H.framebufferTexture2D(36160,36064,34069+$,tt.__webglTexture,le)}else if(Qe){const tt=ue.get(N.texture),bt=$||0;H.framebufferTextureLayer(36160,36064,tt.__webglTexture,le||0,bt)}v=-1},this.readRenderTargetPixels=function(N,$,le,te,pe,Je,Qe){if(!(N&&N.isWebGLRenderTarget)){console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.\");return}let nt=ue.get(N).__webglFramebuffer;if(N.isWebGLCubeRenderTarget&&Qe!==void 0&&(nt=nt[Qe]),nt){xe.bindFramebuffer(36160,nt);try{const tt=N.texture,bt=tt.format,ht=tt.type;if(bt!==Mn&&D.convert(bt)!==H.getParameter(35739)){console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.\");return}const mt=ht===Ks&&(we.has(\"EXT_color_buffer_half_float\")||Fe.isWebGL2&&we.has(\"EXT_color_buffer_float\"));if(ht!==Di&&D.convert(ht)!==H.getParameter(35738)&&!(ht===hi&&(Fe.isWebGL2||we.has(\"OES_texture_float\")||we.has(\"WEBGL_color_buffer_float\")))&&!mt){console.error(\"THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.\");return}$>=0&&$<=N.width-te&&le>=0&&le<=N.height-pe&&H.readPixels($,le,te,pe,D.convert(bt),D.convert(ht),Je)}finally{const tt=b!==null?ue.get(b).__webglFramebuffer:null;xe.bindFramebuffer(36160,tt)}}},this.copyFramebufferToTexture=function(N,$,le=0){const te=Math.pow(2,-le),pe=Math.floor($.image.width*te),Je=Math.floor($.image.height*te);ce.setTexture2D($,0),H.copyTexSubImage2D(3553,le,0,0,N.x,N.y,pe,Je),xe.unbindTexture()},this.copyTextureToTexture=function(N,$,le,te=0){const pe=$.image.width,Je=$.image.height,Qe=D.convert(le.format),nt=D.convert(le.type);ce.setTexture2D(le,0),H.pixelStorei(37440,le.flipY),H.pixelStorei(37441,le.premultiplyAlpha),H.pixelStorei(3317,le.unpackAlignment),$.isDataTexture?H.texSubImage2D(3553,te,N.x,N.y,pe,Je,Qe,nt,$.image.data):$.isCompressedTexture?H.compressedTexSubImage2D(3553,te,N.x,N.y,$.mipmaps[0].width,$.mipmaps[0].height,Qe,$.mipmaps[0].data):H.texSubImage2D(3553,te,N.x,N.y,Qe,nt,$.image),te===0&&le.generateMipmaps&&H.generateMipmap(3553),xe.unbindTexture()},this.copyTextureToTexture3D=function(N,$,le,te,pe=0){if(m.isWebGL1Renderer){console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: can only be used with WebGL2.\");return}const Je=N.max.x-N.min.x+1,Qe=N.max.y-N.min.y+1,nt=N.max.z-N.min.z+1,tt=D.convert(te.format),bt=D.convert(te.type);let ht;if(te.isData3DTexture)ce.setTexture3D(te,0),ht=32879;else if(te.isDataArrayTexture)ce.setTexture2DArray(te,0),ht=35866;else{console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: only supports THREE.DataTexture3D and THREE.DataTexture2DArray.\");return}H.pixelStorei(37440,te.flipY),H.pixelStorei(37441,te.premultiplyAlpha),H.pixelStorei(3317,te.unpackAlignment);const mt=H.getParameter(3314),It=H.getParameter(32878),Li=H.getParameter(3316),Zt=H.getParameter(3315),En=H.getParameter(32877),_n=le.isCompressedTexture?le.mipmaps[0]:le.image;H.pixelStorei(3314,_n.width),H.pixelStorei(32878,_n.height),H.pixelStorei(3316,N.min.x),H.pixelStorei(3315,N.min.y),H.pixelStorei(32877,N.min.z),le.isDataTexture||le.isData3DTexture?H.texSubImage3D(ht,pe,$.x,$.y,$.z,Je,Qe,nt,tt,bt,_n.data):le.isCompressedTexture?(console.warn(\"THREE.WebGLRenderer.copyTextureToTexture3D: untested support for compressed srcTexture.\"),H.compressedTexSubImage3D(ht,pe,$.x,$.y,$.z,Je,Qe,nt,tt,_n.data)):H.texSubImage3D(ht,pe,$.x,$.y,$.z,Je,Qe,nt,tt,bt,_n),H.pixelStorei(3314,mt),H.pixelStorei(32878,It),H.pixelStorei(3316,Li),H.pixelStorei(3315,Zt),H.pixelStorei(32877,En),pe===0&&te.generateMipmaps&&H.generateMipmap(ht),xe.unbindTexture()},this.initTexture=function(N){N.isCubeTexture?ce.setTextureCube(N,0):N.isData3DTexture?ce.setTexture3D(N,0):N.isDataArrayTexture?ce.setTexture2DArray(N,0):ce.setTexture2D(N,0),xe.unbindTexture()},this.resetState=function(){y=0,x=0,b=null,xe.reset(),me.reset()},typeof __THREE_DEVTOOLS__!=\"undefined\"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"observe\",{detail:this}))}class cd extends $c{}cd.prototype.isWebGL1Renderer=!0;class ka{constructor(e,t=25e-5){this.isFogExp2=!0,this.name=\"\",this.color=new be(e),this.density=t}clone(){return new ka(this.color,this.density)}toJSON(){return{type:\"FogExp2\",color:this.color.getHex(),density:this.density}}}class Oa{constructor(e,t=1,n=1e3){this.isFog=!0,this.name=\"\",this.color=new be(e),this.near=t,this.far=n}clone(){return new Oa(this.color,this.near,this.far)}toJSON(){return{type:\"Fog\",color:this.color.getHex(),near:this.near,far:this.far}}}class Ba extends dt{constructor(){super(),this.isScene=!0,this.type=\"Scene\",this.background=null,this.environment=null,this.fog=null,this.overrideMaterial=null,this.autoUpdate=!0,typeof __THREE_DEVTOOLS__!=\"undefined\"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"observe\",{detail:this}))}copy(e,t){return super.copy(e,t),e.background!==null&&(this.background=e.background.clone()),e.environment!==null&&(this.environment=e.environment.clone()),e.fog!==null&&(this.fog=e.fog.clone()),e.overrideMaterial!==null&&(this.overrideMaterial=e.overrideMaterial.clone()),this.autoUpdate=e.autoUpdate,this.matrixAutoUpdate=e.matrixAutoUpdate,this}toJSON(e){const t=super.toJSON(e);return this.fog!==null&&(t.object.fog=this.fog.toJSON()),t}}class _o{constructor(e,t){this.isInterleavedBuffer=!0,this.array=e,this.stride=t,this.count=e!==void 0?e.length/t:0,this.usage=lo,this.updateRange={offset:0,count:-1},this.version=0,this.uuid=Sn()}onUploadCallback(){}set needsUpdate(e){e===!0&&this.version++}setUsage(e){return this.usage=e,this}copy(e){return this.array=new e.array.constructor(e.array),this.count=e.count,this.stride=e.stride,this.usage=e.usage,this}copyAt(e,t,n){e*=this.stride,n*=t.stride;for(let i=0,s=this.stride;i<s;i++)this.array[e+i]=t.array[n+i];return this}set(e,t=0){return this.array.set(e,t),this}clone(e){e.arrayBuffers===void 0&&(e.arrayBuffers={}),this.array.buffer._uuid===void 0&&(this.array.buffer._uuid=Sn()),e.arrayBuffers[this.array.buffer._uuid]===void 0&&(e.arrayBuffers[this.array.buffer._uuid]=this.array.slice(0).buffer);const t=new this.array.constructor(e.arrayBuffers[this.array.buffer._uuid]),n=new this.constructor(t,this.stride);return n.setUsage(this.usage),n}onUpload(e){return this.onUploadCallback=e,this}toJSON(e){return e.arrayBuffers===void 0&&(e.arrayBuffers={}),this.array.buffer._uuid===void 0&&(this.array.buffer._uuid=Sn()),e.arrayBuffers[this.array.buffer._uuid]===void 0&&(e.arrayBuffers[this.array.buffer._uuid]=Array.from(new Uint32Array(this.array.buffer))),{uuid:this.uuid,buffer:this.array.buffer._uuid,type:this.array.constructor.name,stride:this.stride}}}const pn=new I;class ji{constructor(e,t,n,i=!1){this.isInterleavedBufferAttribute=!0,this.name=\"\",this.data=e,this.itemSize=t,this.offset=n,this.normalized=i===!0}get count(){return this.data.count}get array(){return this.data.array}set needsUpdate(e){this.data.needsUpdate=e}applyMatrix4(e){for(let t=0,n=this.data.count;t<n;t++)pn.fromBufferAttribute(this,t),pn.applyMatrix4(e),this.setXYZ(t,pn.x,pn.y,pn.z);return this}applyNormalMatrix(e){for(let t=0,n=this.count;t<n;t++)pn.fromBufferAttribute(this,t),pn.applyNormalMatrix(e),this.setXYZ(t,pn.x,pn.y,pn.z);return this}transformDirection(e){for(let t=0,n=this.count;t<n;t++)pn.fromBufferAttribute(this,t),pn.transformDirection(e),this.setXYZ(t,pn.x,pn.y,pn.z);return this}setX(e,t){return this.data.array[e*this.data.stride+this.offset]=t,this}setY(e,t){return this.data.array[e*this.data.stride+this.offset+1]=t,this}setZ(e,t){return this.data.array[e*this.data.stride+this.offset+2]=t,this}setW(e,t){return this.data.array[e*this.data.stride+this.offset+3]=t,this}getX(e){return this.data.array[e*this.data.stride+this.offset]}getY(e){return this.data.array[e*this.data.stride+this.offset+1]}getZ(e){return this.data.array[e*this.data.stride+this.offset+2]}getW(e){return this.data.array[e*this.data.stride+this.offset+3]}setXY(e,t,n){return e=e*this.data.stride+this.offset,this.data.array[e+0]=t,this.data.array[e+1]=n,this}setXYZ(e,t,n,i){return e=e*this.data.stride+this.offset,this.data.array[e+0]=t,this.data.array[e+1]=n,this.data.array[e+2]=i,this}setXYZW(e,t,n,i,s){return e=e*this.data.stride+this.offset,this.data.array[e+0]=t,this.data.array[e+1]=n,this.data.array[e+2]=i,this.data.array[e+3]=s,this}clone(e){if(e===void 0){console.log(\"THREE.InterleavedBufferAttribute.clone(): Cloning an interleaved buffer attribute will deinterleave buffer data.\");const t=[];for(let n=0;n<this.count;n++){const i=n*this.data.stride+this.offset;for(let s=0;s<this.itemSize;s++)t.push(this.data.array[i+s])}return new pt(new this.array.constructor(t),this.itemSize,this.normalized)}else return e.interleavedBuffers===void 0&&(e.interleavedBuffers={}),e.interleavedBuffers[this.data.uuid]===void 0&&(e.interleavedBuffers[this.data.uuid]=this.data.clone(e)),new ji(e.interleavedBuffers[this.data.uuid],this.itemSize,this.offset,this.normalized)}toJSON(e){if(e===void 0){console.log(\"THREE.InterleavedBufferAttribute.toJSON(): Serializing an interleaved buffer attribute will deinterleave buffer data.\");const t=[];for(let n=0;n<this.count;n++){const i=n*this.data.stride+this.offset;for(let s=0;s<this.itemSize;s++)t.push(this.data.array[i+s])}return{itemSize:this.itemSize,type:this.array.constructor.name,array:t,normalized:this.normalized}}else return e.interleavedBuffers===void 0&&(e.interleavedBuffers={}),e.interleavedBuffers[this.data.uuid]===void 0&&(e.interleavedBuffers[this.data.uuid]=this.data.toJSON(e)),{isInterleavedBufferAttribute:!0,itemSize:this.itemSize,data:this.data.uuid,offset:this.offset,normalized:this.normalized}}}class za extends Gt{constructor(e){super(),this.isSpriteMaterial=!0,this.type=\"SpriteMaterial\",this.color=new be(16777215),this.map=null,this.alphaMap=null,this.rotation=0,this.sizeAttenuation=!0,this.transparent=!0,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.alphaMap=e.alphaMap,this.rotation=e.rotation,this.sizeAttenuation=e.sizeAttenuation,this.fog=e.fog,this}}let gr;const bo=new I,yr=new I,xr=new I,vr=new he,wo=new he,ud=new Ne,Ua=new I,Mo=new I,Ga=new I,hd=new he,Qc=new he,fd=new he;class So extends dt{constructor(e){if(super(),this.isSprite=!0,this.type=\"Sprite\",gr===void 0){gr=new Xe;const t=new Float32Array([-.5,-.5,0,0,0,.5,-.5,0,1,0,.5,.5,0,1,1,-.5,.5,0,0,1]),n=new _o(t,5);gr.setIndex([0,1,2,0,2,3]),gr.setAttribute(\"position\",new ji(n,3,0,!1)),gr.setAttribute(\"uv\",new ji(n,2,3,!1))}this.geometry=gr,this.material=e!==void 0?e:new za,this.center=new he(.5,.5)}raycast(e,t){e.camera===null&&console.error('THREE.Sprite: \"Raycaster.camera\" needs to be set in order to raycast against sprites.'),yr.setFromMatrixScale(this.matrixWorld),ud.copy(e.camera.matrixWorld),this.modelViewMatrix.multiplyMatrices(e.camera.matrixWorldInverse,this.matrixWorld),xr.setFromMatrixPosition(this.modelViewMatrix),e.camera.isPerspectiveCamera&&this.material.sizeAttenuation===!1&&yr.multiplyScalar(-xr.z);const n=this.material.rotation;let i,s;n!==0&&(s=Math.cos(n),i=Math.sin(n));const r=this.center;Va(Ua.set(-.5,-.5,0),xr,r,yr,i,s),Va(Mo.set(.5,-.5,0),xr,r,yr,i,s),Va(Ga.set(.5,.5,0),xr,r,yr,i,s),hd.set(0,0),Qc.set(1,0),fd.set(1,1);let o=e.ray.intersectTriangle(Ua,Mo,Ga,!1,bo);if(o===null&&(Va(Mo.set(-.5,.5,0),xr,r,yr,i,s),Qc.set(0,1),o=e.ray.intersectTriangle(Ua,Ga,Mo,!1,bo),o===null))return;const l=e.ray.origin.distanceTo(bo);l<e.near||l>e.far||t.push({distance:l,point:bo.clone(),uv:Pn.getUV(bo,Ua,Mo,Ga,hd,Qc,fd,new he),face:null,object:this})}copy(e,t){return super.copy(e,t),e.center!==void 0&&this.center.copy(e.center),this.material=e.material,this}}function Va(a,e,t,n,i,s){vr.subVectors(a,t).addScalar(.5).multiply(n),i!==void 0?(wo.x=s*vr.x-i*vr.y,wo.y=i*vr.x+s*vr.y):wo.copy(vr),a.copy(e),a.x+=wo.x,a.y+=wo.y,a.applyMatrix4(ud)}const Ha=new I,dd=new I;class pd extends dt{constructor(){super(),this._currentLevel=0,this.type=\"LOD\",Object.defineProperties(this,{levels:{enumerable:!0,value:[]},isLOD:{value:!0}}),this.autoUpdate=!0}copy(e){super.copy(e,!1);const t=e.levels;for(let n=0,i=t.length;n<i;n++){const s=t[n];this.addLevel(s.object.clone(),s.distance)}return this.autoUpdate=e.autoUpdate,this}addLevel(e,t=0){t=Math.abs(t);const n=this.levels;let i;for(i=0;i<n.length&&!(t<n[i].distance);i++);return n.splice(i,0,{distance:t,object:e}),this.add(e),this}getCurrentLevel(){return this._currentLevel}getObjectForDistance(e){const t=this.levels;if(t.length>0){let n,i;for(n=1,i=t.length;n<i&&!(e<t[n].distance);n++);return t[n-1].object}return null}raycast(e,t){if(this.levels.length>0){Ha.setFromMatrixPosition(this.matrixWorld);const i=e.ray.origin.distanceTo(Ha);this.getObjectForDistance(i).raycast(e,t)}}update(e){const t=this.levels;if(t.length>1){Ha.setFromMatrixPosition(e.matrixWorld),dd.setFromMatrixPosition(this.matrixWorld);const n=Ha.distanceTo(dd)/e.zoom;t[0].object.visible=!0;let i,s;for(i=1,s=t.length;i<s&&n>=t[i].distance;i++)t[i-1].object.visible=!1,t[i].object.visible=!0;for(this._currentLevel=i-1;i<s;i++)t[i].object.visible=!1}}toJSON(e){const t=super.toJSON(e);this.autoUpdate===!1&&(t.object.autoUpdate=!1),t.object.levels=[];const n=this.levels;for(let i=0,s=n.length;i<s;i++){const r=n[i];t.object.levels.push({object:r.object.uuid,distance:r.distance})}return t}}const md=new I,gd=new ft,yd=new ft,u_=new I,xd=new Ne;class To extends Rt{constructor(e,t){super(e,t),this.isSkinnedMesh=!0,this.type=\"SkinnedMesh\",this.bindMode=\"attached\",this.bindMatrix=new Ne,this.bindMatrixInverse=new Ne}copy(e,t){return super.copy(e,t),this.bindMode=e.bindMode,this.bindMatrix.copy(e.bindMatrix),this.bindMatrixInverse.copy(e.bindMatrixInverse),this.skeleton=e.skeleton,this}bind(e,t){this.skeleton=e,t===void 0&&(this.updateMatrixWorld(!0),this.skeleton.calculateInverses(),t=this.matrixWorld),this.bindMatrix.copy(t),this.bindMatrixInverse.copy(t).invert()}pose(){this.skeleton.pose()}normalizeSkinWeights(){const e=new ft,t=this.geometry.attributes.skinWeight;for(let n=0,i=t.count;n<i;n++){e.fromBufferAttribute(t,n);const s=1/e.manhattanLength();s!==1/0?e.multiplyScalar(s):e.set(1,0,0,0),t.setXYZW(n,e.x,e.y,e.z,e.w)}}updateMatrixWorld(e){super.updateMatrixWorld(e),this.bindMode===\"attached\"?this.bindMatrixInverse.copy(this.matrixWorld).invert():this.bindMode===\"detached\"?this.bindMatrixInverse.copy(this.bindMatrix).invert():console.warn(\"THREE.SkinnedMesh: Unrecognized bindMode: \"+this.bindMode)}boneTransform(e,t){const n=this.skeleton,i=this.geometry;gd.fromBufferAttribute(i.attributes.skinIndex,e),yd.fromBufferAttribute(i.attributes.skinWeight,e),md.copy(t).applyMatrix4(this.bindMatrix),t.set(0,0,0);for(let s=0;s<4;s++){const r=yd.getComponent(s);if(r!==0){const o=gd.getComponent(s);xd.multiplyMatrices(n.bones[o].matrixWorld,n.boneInverses[o]),t.addScaledVector(u_.copy(md).applyMatrix4(xd),r)}}return t.applyMatrix4(this.bindMatrixInverse)}}class Ts extends dt{constructor(){super(),this.isBone=!0,this.type=\"Bone\"}}class _r extends Lt{constructor(e=null,t=1,n=1,i,s,r,o,l,c=zt,h=zt,u,f){super(null,r,o,l,c,h,i,s,u,f),this.isDataTexture=!0,this.image={data:e,width:t,height:n},this.generateMipmaps=!1,this.flipY=!1,this.unpackAlignment=1}}const vd=new Ne,h_=new Ne;class As{constructor(e=[],t=[]){this.uuid=Sn(),this.bones=e.slice(0),this.boneInverses=t,this.boneMatrices=null,this.boneTexture=null,this.boneTextureSize=0,this.frame=-1,this.init()}init(){const e=this.bones,t=this.boneInverses;if(this.boneMatrices=new Float32Array(e.length*16),t.length===0)this.calculateInverses();else if(e.length!==t.length){console.warn(\"THREE.Skeleton: Number of inverse bone matrices does not match amount of bones.\"),this.boneInverses=[];for(let n=0,i=this.bones.length;n<i;n++)this.boneInverses.push(new Ne)}}calculateInverses(){this.boneInverses.length=0;for(let e=0,t=this.bones.length;e<t;e++){const n=new Ne;this.bones[e]&&n.copy(this.bones[e].matrixWorld).invert(),this.boneInverses.push(n)}}pose(){for(let e=0,t=this.bones.length;e<t;e++){const n=this.bones[e];n&&n.matrixWorld.copy(this.boneInverses[e]).invert()}for(let e=0,t=this.bones.length;e<t;e++){const n=this.bones[e];n&&(n.parent&&n.parent.isBone?(n.matrix.copy(n.parent.matrixWorld).invert(),n.matrix.multiply(n.matrixWorld)):n.matrix.copy(n.matrixWorld),n.matrix.decompose(n.position,n.quaternion,n.scale))}}update(){const e=this.bones,t=this.boneInverses,n=this.boneMatrices,i=this.boneTexture;for(let s=0,r=e.length;s<r;s++){const o=e[s]?e[s].matrixWorld:h_;vd.multiplyMatrices(o,t[s]),vd.toArray(n,s*16)}i!==null&&(i.needsUpdate=!0)}clone(){return new As(this.bones,this.boneInverses)}computeBoneTexture(){let e=Math.sqrt(this.bones.length*4);e=gf(e),e=Math.max(e,4);const t=new Float32Array(e*e*4);t.set(this.boneMatrices);const n=new _r(t,e,e,Mn,hi);return n.needsUpdate=!0,this.boneMatrices=t,this.boneTexture=n,this.boneTextureSize=e,this}getBoneByName(e){for(let t=0,n=this.bones.length;t<n;t++){const i=this.bones[t];if(i.name===e)return i}}dispose(){this.boneTexture!==null&&(this.boneTexture.dispose(),this.boneTexture=null)}fromJSON(e,t){this.uuid=e.uuid;for(let n=0,i=e.bones.length;n<i;n++){const s=e.bones[n];let r=t[s];r===void 0&&(console.warn(\"THREE.Skeleton: No bone found with UUID:\",s),r=new Ts),this.bones.push(r),this.boneInverses.push(new Ne().fromArray(e.boneInverses[n]))}return this.init(),this}toJSON(){const e={metadata:{version:4.5,type:\"Skeleton\",generator:\"Skeleton.toJSON\"},bones:[],boneInverses:[]};e.uuid=this.uuid;const t=this.bones,n=this.boneInverses;for(let i=0,s=t.length;i<s;i++){const r=t[i];e.bones.push(r.uuid);const o=n[i];e.boneInverses.push(o.toArray())}return e}}class br extends pt{constructor(e,t,n,i=1){typeof n==\"number\"&&(i=n,n=!1,console.error(\"THREE.InstancedBufferAttribute: The constructor now expects normalized as the third argument.\")),super(e,t,n),this.isInstancedBufferAttribute=!0,this.meshPerAttribute=i}copy(e){return super.copy(e),this.meshPerAttribute=e.meshPerAttribute,this}toJSON(){const e=super.toJSON();return e.meshPerAttribute=this.meshPerAttribute,e.isInstancedBufferAttribute=!0,e}}const _d=new Ne,bd=new Ne,Wa=[],Ao=new Rt;class wd extends Rt{constructor(e,t,n){super(e,t),this.isInstancedMesh=!0,this.instanceMatrix=new br(new Float32Array(n*16),16),this.instanceColor=null,this.count=n,this.frustumCulled=!1}copy(e,t){return super.copy(e,t),this.instanceMatrix.copy(e.instanceMatrix),e.instanceColor!==null&&(this.instanceColor=e.instanceColor.clone()),this.count=e.count,this}getColorAt(e,t){t.fromArray(this.instanceColor.array,e*3)}getMatrixAt(e,t){t.fromArray(this.instanceMatrix.array,e*16)}raycast(e,t){const n=this.matrixWorld,i=this.count;if(Ao.geometry=this.geometry,Ao.material=this.material,Ao.material!==void 0)for(let s=0;s<i;s++){this.getMatrixAt(s,_d),bd.multiplyMatrices(n,_d),Ao.matrixWorld=bd,Ao.raycast(e,Wa);for(let r=0,o=Wa.length;r<o;r++){const l=Wa[r];l.instanceId=s,l.object=this,t.push(l)}Wa.length=0}}setColorAt(e,t){this.instanceColor===null&&(this.instanceColor=new br(new Float32Array(this.instanceMatrix.count*3),3)),t.toArray(this.instanceColor.array,e*3)}setMatrixAt(e,t){t.toArray(this.instanceMatrix.array,e*16)}updateMorphTargets(){}dispose(){this.dispatchEvent({type:\"dispose\"})}}class Vt extends Gt{constructor(e){super(),this.isLineBasicMaterial=!0,this.type=\"LineBasicMaterial\",this.color=new be(16777215),this.linewidth=1,this.linecap=\"round\",this.linejoin=\"round\",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.linewidth=e.linewidth,this.linecap=e.linecap,this.linejoin=e.linejoin,this.fog=e.fog,this}}const Md=new I,Sd=new I,Td=new Ne,eu=new mo,qa=new Ui;class Xn extends dt{constructor(e=new Xe,t=new Vt){super(),this.isLine=!0,this.type=\"Line\",this.geometry=e,this.material=t,this.updateMorphTargets()}copy(e,t){return super.copy(e,t),this.material=e.material,this.geometry=e.geometry,this}computeLineDistances(){const e=this.geometry;if(e.index===null){const t=e.attributes.position,n=[0];for(let i=1,s=t.count;i<s;i++)Md.fromBufferAttribute(t,i-1),Sd.fromBufferAttribute(t,i),n[i]=n[i-1],n[i]+=Md.distanceTo(Sd);e.setAttribute(\"lineDistance\",new Ee(n,1))}else console.warn(\"THREE.Line.computeLineDistances(): Computation only possible with non-indexed BufferGeometry.\");return this}raycast(e,t){const n=this.geometry,i=this.matrixWorld,s=e.params.Line.threshold,r=n.drawRange;if(n.boundingSphere===null&&n.computeBoundingSphere(),qa.copy(n.boundingSphere),qa.applyMatrix4(i),qa.radius+=s,e.ray.intersectsSphere(qa)===!1)return;Td.copy(i).invert(),eu.copy(e.ray).applyMatrix4(Td);const o=s/((this.scale.x+this.scale.y+this.scale.z)/3),l=o*o,c=new I,h=new I,u=new I,f=new I,d=this.isLineSegments?2:1,p=n.index,g=n.attributes.position;if(p!==null){const y=Math.max(0,r.start),x=Math.min(p.count,r.start+r.count);for(let b=y,v=x-1;b<v;b+=d){const M=p.getX(b),T=p.getX(b+1);if(c.fromBufferAttribute(g,M),h.fromBufferAttribute(g,T),eu.distanceSqToSegment(c,h,f,u)>l)continue;f.applyMatrix4(this.matrixWorld);const _=e.ray.origin.distanceTo(f);_<e.near||_>e.far||t.push({distance:_,point:u.clone().applyMatrix4(this.matrixWorld),index:b,face:null,faceIndex:null,object:this})}}else{const y=Math.max(0,r.start),x=Math.min(g.count,r.start+r.count);for(let b=y,v=x-1;b<v;b+=d){if(c.fromBufferAttribute(g,b),h.fromBufferAttribute(g,b+1),eu.distanceSqToSegment(c,h,f,u)>l)continue;f.applyMatrix4(this.matrixWorld);const T=e.ray.origin.distanceTo(f);T<e.near||T>e.far||t.push({distance:T,point:u.clone().applyMatrix4(this.matrixWorld),index:b,face:null,faceIndex:null,object:this})}}}updateMorphTargets(){const t=this.geometry.morphAttributes,n=Object.keys(t);if(n.length>0){const i=t[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,r=i.length;s<r;s++){const o=i[s].name||String(s);this.morphTargetInfluences.push(0),this.morphTargetDictionary[o]=s}}}}}const Ad=new I,Ed=new I;class yn extends Xn{constructor(e,t){super(e,t),this.isLineSegments=!0,this.type=\"LineSegments\"}computeLineDistances(){const e=this.geometry;if(e.index===null){const t=e.attributes.position,n=[];for(let i=0,s=t.count;i<s;i+=2)Ad.fromBufferAttribute(t,i),Ed.fromBufferAttribute(t,i+1),n[i]=i===0?0:n[i-1],n[i+1]=n[i]+Ad.distanceTo(Ed);e.setAttribute(\"lineDistance\",new Ee(n,1))}else console.warn(\"THREE.LineSegments.computeLineDistances(): Computation only possible with non-indexed BufferGeometry.\");return this}}class tu extends Xn{constructor(e,t){super(e,t),this.isLineLoop=!0,this.type=\"LineLoop\"}}class Yi extends Gt{constructor(e){super(),this.isPointsMaterial=!0,this.type=\"PointsMaterial\",this.color=new be(16777215),this.map=null,this.alphaMap=null,this.size=1,this.sizeAttenuation=!0,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.alphaMap=e.alphaMap,this.size=e.size,this.sizeAttenuation=e.sizeAttenuation,this.fog=e.fog,this}}const Cd=new Ne,nu=new mo,Xa=new Ui,ja=new I;class wr extends dt{constructor(e=new Xe,t=new Yi){super(),this.isPoints=!0,this.type=\"Points\",this.geometry=e,this.material=t,this.updateMorphTargets()}copy(e,t){return super.copy(e,t),this.material=e.material,this.geometry=e.geometry,this}raycast(e,t){const n=this.geometry,i=this.matrixWorld,s=e.params.Points.threshold,r=n.drawRange;if(n.boundingSphere===null&&n.computeBoundingSphere(),Xa.copy(n.boundingSphere),Xa.applyMatrix4(i),Xa.radius+=s,e.ray.intersectsSphere(Xa)===!1)return;Cd.copy(i).invert(),nu.copy(e.ray).applyMatrix4(Cd);const o=s/((this.scale.x+this.scale.y+this.scale.z)/3),l=o*o,c=n.index,u=n.attributes.position;if(c!==null){const f=Math.max(0,r.start),d=Math.min(c.count,r.start+r.count);for(let p=f,m=d;p<m;p++){const g=c.getX(p);ja.fromBufferAttribute(u,g),Ld(ja,g,l,i,e,t,this)}}else{const f=Math.max(0,r.start),d=Math.min(u.count,r.start+r.count);for(let p=f,m=d;p<m;p++)ja.fromBufferAttribute(u,p),Ld(ja,p,l,i,e,t,this)}}updateMorphTargets(){const t=this.geometry.morphAttributes,n=Object.keys(t);if(n.length>0){const i=t[n[0]];if(i!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,r=i.length;s<r;s++){const o=i[s].name||String(s);this.morphTargetInfluences.push(0),this.morphTargetDictionary[o]=s}}}}}function Ld(a,e,t,n,i,s,r){const o=nu.distanceSqToPoint(a);if(o<t){const l=new I;nu.closestPointToPoint(a,l),l.applyMatrix4(n);const c=i.ray.origin.distanceTo(l);if(c<i.near||c>i.far)return;s.push({distance:c,distanceToRay:Math.sqrt(o),point:l,index:e,face:null,object:r})}}class f_ extends Lt{constructor(e,t,n,i,s,r,o,l,c){super(e,t,n,i,s,r,o,l,c),this.isVideoTexture=!0,this.minFilter=r!==void 0?r:Pt,this.magFilter=s!==void 0?s:Pt,this.generateMipmaps=!1;const h=this;function u(){h.needsUpdate=!0,e.requestVideoFrameCallback(u)}\"requestVideoFrameCallback\"in e&&e.requestVideoFrameCallback(u)}clone(){return new this.constructor(this.image).copy(this)}update(){const e=this.image;\"requestVideoFrameCallback\"in e===!1&&e.readyState>=e.HAVE_CURRENT_DATA&&(this.needsUpdate=!0)}}class d_ extends Lt{constructor(e,t,n){super({width:e,height:t}),this.isFramebufferTexture=!0,this.format=n,this.magFilter=zt,this.minFilter=zt,this.generateMipmaps=!1,this.needsUpdate=!0}}class Rd extends Lt{constructor(e,t,n,i,s,r,o,l,c,h,u,f){super(null,r,o,l,c,h,i,s,u,f),this.isCompressedTexture=!0,this.image={width:t,height:n},this.mipmaps=e,this.flipY=!1,this.generateMipmaps=!1}}class p_ extends Lt{constructor(e,t,n,i,s,r,o,l,c){super(e,t,n,i,s,r,o,l,c),this.isCanvasTexture=!0,this.needsUpdate=!0}}class Fn{constructor(){this.type=\"Curve\",this.arcLengthDivisions=200}getPoint(){return console.warn(\"THREE.Curve: .getPoint() not implemented.\"),null}getPointAt(e,t){const n=this.getUtoTmapping(e);return this.getPoint(n,t)}getPoints(e=5){const t=[];for(let n=0;n<=e;n++)t.push(this.getPoint(n/e));return t}getSpacedPoints(e=5){const t=[];for(let n=0;n<=e;n++)t.push(this.getPointAt(n/e));return t}getLength(){const e=this.getLengths();return e[e.length-1]}getLengths(e=this.arcLengthDivisions){if(this.cacheArcLengths&&this.cacheArcLengths.length===e+1&&!this.needsUpdate)return this.cacheArcLengths;this.needsUpdate=!1;const t=[];let n,i=this.getPoint(0),s=0;t.push(0);for(let r=1;r<=e;r++)n=this.getPoint(r/e),s+=n.distanceTo(i),t.push(s),i=n;return this.cacheArcLengths=t,t}updateArcLengths(){this.needsUpdate=!0,this.getLengths()}getUtoTmapping(e,t){const n=this.getLengths();let i=0;const s=n.length;let r;t?r=t:r=e*n[s-1];let o=0,l=s-1,c;for(;o<=l;)if(i=Math.floor(o+(l-o)/2),c=n[i]-r,c<0)o=i+1;else if(c>0)l=i-1;else{l=i;break}if(i=l,n[i]===r)return i/(s-1);const h=n[i],f=n[i+1]-h,d=(r-h)/f;return(i+d)/(s-1)}getTangent(e,t){let i=e-1e-4,s=e+1e-4;i<0&&(i=0),s>1&&(s=1);const r=this.getPoint(i),o=this.getPoint(s),l=t||(r.isVector2?new he:new I);return l.copy(o).sub(r).normalize(),l}getTangentAt(e,t){const n=this.getUtoTmapping(e);return this.getTangent(n,t)}computeFrenetFrames(e,t){const n=new I,i=[],s=[],r=[],o=new I,l=new Ne;for(let d=0;d<=e;d++){const p=d/e;i[d]=this.getTangentAt(p,new I)}s[0]=new I,r[0]=new I;let c=Number.MAX_VALUE;const h=Math.abs(i[0].x),u=Math.abs(i[0].y),f=Math.abs(i[0].z);h<=c&&(c=h,n.set(1,0,0)),u<=c&&(c=u,n.set(0,1,0)),f<=c&&n.set(0,0,1),o.crossVectors(i[0],n).normalize(),s[0].crossVectors(i[0],o),r[0].crossVectors(i[0],s[0]);for(let d=1;d<=e;d++){if(s[d]=s[d-1].clone(),r[d]=r[d-1].clone(),o.crossVectors(i[d-1],i[d]),o.length()>Number.EPSILON){o.normalize();const p=Math.acos(Ut(i[d-1].dot(i[d]),-1,1));s[d].applyMatrix4(l.makeRotationAxis(o,p))}r[d].crossVectors(i[d],s[d])}if(t===!0){let d=Math.acos(Ut(s[0].dot(s[e]),-1,1));d/=e,i[0].dot(o.crossVectors(s[0],s[e]))>0&&(d=-d);for(let p=1;p<=e;p++)s[p].applyMatrix4(l.makeRotationAxis(i[p],d*p)),r[p].crossVectors(i[p],s[p])}return{tangents:i,normals:s,binormals:r}}clone(){return new this.constructor().copy(this)}copy(e){return this.arcLengthDivisions=e.arcLengthDivisions,this}toJSON(){const e={metadata:{version:4.5,type:\"Curve\",generator:\"Curve.toJSON\"}};return e.arcLengthDivisions=this.arcLengthDivisions,e.type=this.type,e}fromJSON(e){return this.arcLengthDivisions=e.arcLengthDivisions,this}}class Ya extends Fn{constructor(e=0,t=0,n=1,i=1,s=0,r=Math.PI*2,o=!1,l=0){super(),this.isEllipseCurve=!0,this.type=\"EllipseCurve\",this.aX=e,this.aY=t,this.xRadius=n,this.yRadius=i,this.aStartAngle=s,this.aEndAngle=r,this.aClockwise=o,this.aRotation=l}getPoint(e,t){const n=t||new he,i=Math.PI*2;let s=this.aEndAngle-this.aStartAngle;const r=Math.abs(s)<Number.EPSILON;for(;s<0;)s+=i;for(;s>i;)s-=i;s<Number.EPSILON&&(r?s=0:s=i),this.aClockwise===!0&&!r&&(s===i?s=-i:s=s-i);const o=this.aStartAngle+e*s;let l=this.aX+this.xRadius*Math.cos(o),c=this.aY+this.yRadius*Math.sin(o);if(this.aRotation!==0){const h=Math.cos(this.aRotation),u=Math.sin(this.aRotation),f=l-this.aX,d=c-this.aY;l=f*h-d*u+this.aX,c=f*u+d*h+this.aY}return n.set(l,c)}copy(e){return super.copy(e),this.aX=e.aX,this.aY=e.aY,this.xRadius=e.xRadius,this.yRadius=e.yRadius,this.aStartAngle=e.aStartAngle,this.aEndAngle=e.aEndAngle,this.aClockwise=e.aClockwise,this.aRotation=e.aRotation,this}toJSON(){const e=super.toJSON();return e.aX=this.aX,e.aY=this.aY,e.xRadius=this.xRadius,e.yRadius=this.yRadius,e.aStartAngle=this.aStartAngle,e.aEndAngle=this.aEndAngle,e.aClockwise=this.aClockwise,e.aRotation=this.aRotation,e}fromJSON(e){return super.fromJSON(e),this.aX=e.aX,this.aY=e.aY,this.xRadius=e.xRadius,this.yRadius=e.yRadius,this.aStartAngle=e.aStartAngle,this.aEndAngle=e.aEndAngle,this.aClockwise=e.aClockwise,this.aRotation=e.aRotation,this}}class Id extends Ya{constructor(e,t,n,i,s,r){super(e,t,n,n,i,s,r),this.isArcCurve=!0,this.type=\"ArcCurve\"}}function iu(){let a=0,e=0,t=0,n=0;function i(s,r,o,l){a=s,e=o,t=-3*s+3*r-2*o-l,n=2*s-2*r+o+l}return{initCatmullRom:function(s,r,o,l,c){i(r,o,c*(o-s),c*(l-r))},initNonuniformCatmullRom:function(s,r,o,l,c,h,u){let f=(r-s)/c-(o-s)/(c+h)+(o-r)/h,d=(o-r)/h-(l-r)/(h+u)+(l-o)/u;f*=h,d*=h,i(r,o,f,d)},calc:function(s){const r=s*s,o=r*s;return a+e*s+t*r+n*o}}}const Za=new I,su=new iu,ru=new iu,ou=new iu;class Pd extends Fn{constructor(e=[],t=!1,n=\"centripetal\",i=.5){super(),this.isCatmullRomCurve3=!0,this.type=\"CatmullRomCurve3\",this.points=e,this.closed=t,this.curveType=n,this.tension=i}getPoint(e,t=new I){const n=t,i=this.points,s=i.length,r=(s-(this.closed?0:1))*e;let o=Math.floor(r),l=r-o;this.closed?o+=o>0?0:(Math.floor(Math.abs(o)/s)+1)*s:l===0&&o===s-1&&(o=s-2,l=1);let c,h;this.closed||o>0?c=i[(o-1)%s]:(Za.subVectors(i[0],i[1]).add(i[0]),c=Za);const u=i[o%s],f=i[(o+1)%s];if(this.closed||o+2<s?h=i[(o+2)%s]:(Za.subVectors(i[s-1],i[s-2]).add(i[s-1]),h=Za),this.curveType===\"centripetal\"||this.curveType===\"chordal\"){const d=this.curveType===\"chordal\"?.5:.25;let p=Math.pow(c.distanceToSquared(u),d),m=Math.pow(u.distanceToSquared(f),d),g=Math.pow(f.distanceToSquared(h),d);m<1e-4&&(m=1),p<1e-4&&(p=m),g<1e-4&&(g=m),su.initNonuniformCatmullRom(c.x,u.x,f.x,h.x,p,m,g),ru.initNonuniformCatmullRom(c.y,u.y,f.y,h.y,p,m,g),ou.initNonuniformCatmullRom(c.z,u.z,f.z,h.z,p,m,g)}else this.curveType===\"catmullrom\"&&(su.initCatmullRom(c.x,u.x,f.x,h.x,this.tension),ru.initCatmullRom(c.y,u.y,f.y,h.y,this.tension),ou.initCatmullRom(c.z,u.z,f.z,h.z,this.tension));return n.set(su.calc(l),ru.calc(l),ou.calc(l)),n}copy(e){super.copy(e),this.points=[];for(let t=0,n=e.points.length;t<n;t++){const i=e.points[t];this.points.push(i.clone())}return this.closed=e.closed,this.curveType=e.curveType,this.tension=e.tension,this}toJSON(){const e=super.toJSON();e.points=[];for(let t=0,n=this.points.length;t<n;t++){const i=this.points[t];e.points.push(i.toArray())}return e.closed=this.closed,e.curveType=this.curveType,e.tension=this.tension,e}fromJSON(e){super.fromJSON(e),this.points=[];for(let t=0,n=e.points.length;t<n;t++){const i=e.points[t];this.points.push(new I().fromArray(i))}return this.closed=e.closed,this.curveType=e.curveType,this.tension=e.tension,this}}function Dd(a,e,t,n,i){const s=(n-e)*.5,r=(i-t)*.5,o=a*a,l=a*o;return(2*t-2*n+s+r)*l+(-3*t+3*n-2*s-r)*o+s*a+t}function m_(a,e){const t=1-a;return t*t*e}function g_(a,e){return 2*(1-a)*a*e}function y_(a,e){return a*a*e}function Eo(a,e,t,n){return m_(a,e)+g_(a,t)+y_(a,n)}function x_(a,e){const t=1-a;return t*t*t*e}function v_(a,e){const t=1-a;return 3*t*t*a*e}function __(a,e){return 3*(1-a)*a*a*e}function b_(a,e){return a*a*a*e}function Co(a,e,t,n,i){return x_(a,e)+v_(a,t)+__(a,n)+b_(a,i)}class au extends Fn{constructor(e=new he,t=new he,n=new he,i=new he){super(),this.isCubicBezierCurve=!0,this.type=\"CubicBezierCurve\",this.v0=e,this.v1=t,this.v2=n,this.v3=i}getPoint(e,t=new he){const n=t,i=this.v0,s=this.v1,r=this.v2,o=this.v3;return n.set(Co(e,i.x,s.x,r.x,o.x),Co(e,i.y,s.y,r.y,o.y)),n}copy(e){return super.copy(e),this.v0.copy(e.v0),this.v1.copy(e.v1),this.v2.copy(e.v2),this.v3.copy(e.v3),this}toJSON(){const e=super.toJSON();return e.v0=this.v0.toArray(),e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e.v3=this.v3.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v0.fromArray(e.v0),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this.v3.fromArray(e.v3),this}}class Fd extends Fn{constructor(e=new I,t=new I,n=new I,i=new I){super(),this.isCubicBezierCurve3=!0,this.type=\"CubicBezierCurve3\",this.v0=e,this.v1=t,this.v2=n,this.v3=i}getPoint(e,t=new I){const n=t,i=this.v0,s=this.v1,r=this.v2,o=this.v3;return n.set(Co(e,i.x,s.x,r.x,o.x),Co(e,i.y,s.y,r.y,o.y),Co(e,i.z,s.z,r.z,o.z)),n}copy(e){return super.copy(e),this.v0.copy(e.v0),this.v1.copy(e.v1),this.v2.copy(e.v2),this.v3.copy(e.v3),this}toJSON(){const e=super.toJSON();return e.v0=this.v0.toArray(),e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e.v3=this.v3.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v0.fromArray(e.v0),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this.v3.fromArray(e.v3),this}}class Ka extends Fn{constructor(e=new he,t=new he){super(),this.isLineCurve=!0,this.type=\"LineCurve\",this.v1=e,this.v2=t}getPoint(e,t=new he){const n=t;return e===1?n.copy(this.v2):(n.copy(this.v2).sub(this.v1),n.multiplyScalar(e).add(this.v1)),n}getPointAt(e,t){return this.getPoint(e,t)}getTangent(e,t){const n=t||new he;return n.copy(this.v2).sub(this.v1).normalize(),n}copy(e){return super.copy(e),this.v1.copy(e.v1),this.v2.copy(e.v2),this}toJSON(){const e=super.toJSON();return e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this}}class Nd extends Fn{constructor(e=new I,t=new I){super(),this.isLineCurve3=!0,this.type=\"LineCurve3\",this.v1=e,this.v2=t}getPoint(e,t=new I){const n=t;return e===1?n.copy(this.v2):(n.copy(this.v2).sub(this.v1),n.multiplyScalar(e).add(this.v1)),n}getPointAt(e,t){return this.getPoint(e,t)}copy(e){return super.copy(e),this.v1.copy(e.v1),this.v2.copy(e.v2),this}toJSON(){const e=super.toJSON();return e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this}}class lu extends Fn{constructor(e=new he,t=new he,n=new he){super(),this.isQuadraticBezierCurve=!0,this.type=\"QuadraticBezierCurve\",this.v0=e,this.v1=t,this.v2=n}getPoint(e,t=new he){const n=t,i=this.v0,s=this.v1,r=this.v2;return n.set(Eo(e,i.x,s.x,r.x),Eo(e,i.y,s.y,r.y)),n}copy(e){return super.copy(e),this.v0.copy(e.v0),this.v1.copy(e.v1),this.v2.copy(e.v2),this}toJSON(){const e=super.toJSON();return e.v0=this.v0.toArray(),e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v0.fromArray(e.v0),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this}}class cu extends Fn{constructor(e=new I,t=new I,n=new I){super(),this.isQuadraticBezierCurve3=!0,this.type=\"QuadraticBezierCurve3\",this.v0=e,this.v1=t,this.v2=n}getPoint(e,t=new I){const n=t,i=this.v0,s=this.v1,r=this.v2;return n.set(Eo(e,i.x,s.x,r.x),Eo(e,i.y,s.y,r.y),Eo(e,i.z,s.z,r.z)),n}copy(e){return super.copy(e),this.v0.copy(e.v0),this.v1.copy(e.v1),this.v2.copy(e.v2),this}toJSON(){const e=super.toJSON();return e.v0=this.v0.toArray(),e.v1=this.v1.toArray(),e.v2=this.v2.toArray(),e}fromJSON(e){return super.fromJSON(e),this.v0.fromArray(e.v0),this.v1.fromArray(e.v1),this.v2.fromArray(e.v2),this}}class uu extends Fn{constructor(e=[]){super(),this.isSplineCurve=!0,this.type=\"SplineCurve\",this.points=e}getPoint(e,t=new he){const n=t,i=this.points,s=(i.length-1)*e,r=Math.floor(s),o=s-r,l=i[r===0?r:r-1],c=i[r],h=i[r>i.length-2?i.length-1:r+1],u=i[r>i.length-3?i.length-1:r+2];return n.set(Dd(o,l.x,c.x,h.x,u.x),Dd(o,l.y,c.y,h.y,u.y)),n}copy(e){super.copy(e),this.points=[];for(let t=0,n=e.points.length;t<n;t++){const i=e.points[t];this.points.push(i.clone())}return this}toJSON(){const e=super.toJSON();e.points=[];for(let t=0,n=this.points.length;t<n;t++){const i=this.points[t];e.points.push(i.toArray())}return e}fromJSON(e){super.fromJSON(e),this.points=[];for(let t=0,n=e.points.length;t<n;t++){const i=e.points[t];this.points.push(new he().fromArray(i))}return this}}var hu=Object.freeze({__proto__:null,ArcCurve:Id,CatmullRomCurve3:Pd,CubicBezierCurve:au,CubicBezierCurve3:Fd,EllipseCurve:Ya,LineCurve:Ka,LineCurve3:Nd,QuadraticBezierCurve:lu,QuadraticBezierCurve3:cu,SplineCurve:uu});class kd extends Fn{constructor(){super(),this.type=\"CurvePath\",this.curves=[],this.autoClose=!1}add(e){this.curves.push(e)}closePath(){const e=this.curves[0].getPoint(0),t=this.curves[this.curves.length-1].getPoint(1);e.equals(t)||this.curves.push(new Ka(t,e))}getPoint(e,t){const n=e*this.getLength(),i=this.getCurveLengths();let s=0;for(;s<i.length;){if(i[s]>=n){const r=i[s]-n,o=this.curves[s],l=o.getLength(),c=l===0?0:1-r/l;return o.getPointAt(c,t)}s++}return null}getLength(){const e=this.getCurveLengths();return e[e.length-1]}updateArcLengths(){this.needsUpdate=!0,this.cacheLengths=null,this.getCurveLengths()}getCurveLengths(){if(this.cacheLengths&&this.cacheLengths.length===this.curves.length)return this.cacheLengths;const e=[];let t=0;for(let n=0,i=this.curves.length;n<i;n++)t+=this.curves[n].getLength(),e.push(t);return this.cacheLengths=e,e}getSpacedPoints(e=40){const t=[];for(let n=0;n<=e;n++)t.push(this.getPoint(n/e));return this.autoClose&&t.push(t[0]),t}getPoints(e=12){const t=[];let n;for(let i=0,s=this.curves;i<s.length;i++){const r=s[i],o=r.isEllipseCurve?e*2:r.isLineCurve||r.isLineCurve3?1:r.isSplineCurve?e*r.points.length:e,l=r.getPoints(o);for(let c=0;c<l.length;c++){const h=l[c];n&&n.equals(h)||(t.push(h),n=h)}}return this.autoClose&&t.length>1&&!t[t.length-1].equals(t[0])&&t.push(t[0]),t}copy(e){super.copy(e),this.curves=[];for(let t=0,n=e.curves.length;t<n;t++){const i=e.curves[t];this.curves.push(i.clone())}return this.autoClose=e.autoClose,this}toJSON(){const e=super.toJSON();e.autoClose=this.autoClose,e.curves=[];for(let t=0,n=this.curves.length;t<n;t++){const i=this.curves[t];e.curves.push(i.toJSON())}return e}fromJSON(e){super.fromJSON(e),this.autoClose=e.autoClose,this.curves=[];for(let t=0,n=e.curves.length;t<n;t++){const i=e.curves[t];this.curves.push(new hu[i.type]().fromJSON(i))}return this}}class Lo extends kd{constructor(e){super(),this.type=\"Path\",this.currentPoint=new he,e&&this.setFromPoints(e)}setFromPoints(e){this.moveTo(e[0].x,e[0].y);for(let t=1,n=e.length;t<n;t++)this.lineTo(e[t].x,e[t].y);return this}moveTo(e,t){return this.currentPoint.set(e,t),this}lineTo(e,t){const n=new Ka(this.currentPoint.clone(),new he(e,t));return this.curves.push(n),this.currentPoint.set(e,t),this}quadraticCurveTo(e,t,n,i){const s=new lu(this.currentPoint.clone(),new he(e,t),new he(n,i));return this.curves.push(s),this.currentPoint.set(n,i),this}bezierCurveTo(e,t,n,i,s,r){const o=new au(this.currentPoint.clone(),new he(e,t),new he(n,i),new he(s,r));return this.curves.push(o),this.currentPoint.set(s,r),this}splineThru(e){const t=[this.currentPoint.clone()].concat(e),n=new uu(t);return this.curves.push(n),this.currentPoint.copy(e[e.length-1]),this}arc(e,t,n,i,s,r){const o=this.currentPoint.x,l=this.currentPoint.y;return this.absarc(e+o,t+l,n,i,s,r),this}absarc(e,t,n,i,s,r){return this.absellipse(e,t,n,n,i,s,r),this}ellipse(e,t,n,i,s,r,o,l){const c=this.currentPoint.x,h=this.currentPoint.y;return this.absellipse(e+c,t+h,n,i,s,r,o,l),this}absellipse(e,t,n,i,s,r,o,l){const c=new Ya(e,t,n,i,s,r,o,l);if(this.curves.length>0){const u=c.getPoint(0);u.equals(this.currentPoint)||this.lineTo(u.x,u.y)}this.curves.push(c);const h=c.getPoint(1);return this.currentPoint.copy(h),this}copy(e){return super.copy(e),this.currentPoint.copy(e.currentPoint),this}toJSON(){const e=super.toJSON();return e.currentPoint=this.currentPoint.toArray(),e}fromJSON(e){return super.fromJSON(e),this.currentPoint.fromArray(e.currentPoint),this}}class Es extends Xe{constructor(e=[new he(0,-.5),new he(.5,0),new he(0,.5)],t=12,n=0,i=Math.PI*2){super(),this.type=\"LatheGeometry\",this.parameters={points:e,segments:t,phiStart:n,phiLength:i},t=Math.floor(t),i=Ut(i,0,Math.PI*2);const s=[],r=[],o=[],l=[],c=[],h=1/t,u=new I,f=new he,d=new I,p=new I,m=new I;let g=0,y=0;for(let x=0;x<=e.length-1;x++)switch(x){case 0:g=e[x+1].x-e[x].x,y=e[x+1].y-e[x].y,d.x=y*1,d.y=-g,d.z=y*0,m.copy(d),d.normalize(),l.push(d.x,d.y,d.z);break;case e.length-1:l.push(m.x,m.y,m.z);break;default:g=e[x+1].x-e[x].x,y=e[x+1].y-e[x].y,d.x=y*1,d.y=-g,d.z=y*0,p.copy(d),d.x+=m.x,d.y+=m.y,d.z+=m.z,d.normalize(),l.push(d.x,d.y,d.z),m.copy(p)}for(let x=0;x<=t;x++){const b=n+x*h*i,v=Math.sin(b),M=Math.cos(b);for(let T=0;T<=e.length-1;T++){u.x=e[T].x*v,u.y=e[T].y,u.z=e[T].x*M,r.push(u.x,u.y,u.z),f.x=x/t,f.y=T/(e.length-1),o.push(f.x,f.y);const C=l[3*T+0]*v,_=l[3*T+1],E=l[3*T+0]*M;c.push(C,_,E)}}for(let x=0;x<t;x++)for(let b=0;b<e.length-1;b++){const v=b+x*e.length,M=v,T=v+e.length,C=v+e.length+1,_=v+1;s.push(M,T,_),s.push(C,_,T)}this.setIndex(s),this.setAttribute(\"position\",new Ee(r,3)),this.setAttribute(\"uv\",new Ee(o,2)),this.setAttribute(\"normal\",new Ee(c,3))}static fromJSON(e){return new Es(e.points,e.segments,e.phiStart,e.phiLength)}}class Mr extends Es{constructor(e=1,t=1,n=4,i=8){const s=new Lo;s.absarc(0,-t/2,e,Math.PI*1.5,0),s.absarc(0,t/2,e,0,Math.PI*.5),super(s.getPoints(n),i),this.type=\"CapsuleGeometry\",this.parameters={radius:e,height:t,capSegments:n,radialSegments:i}}static fromJSON(e){return new Mr(e.radius,e.length,e.capSegments,e.radialSegments)}}class Sr extends Xe{constructor(e=1,t=8,n=0,i=Math.PI*2){super(),this.type=\"CircleGeometry\",this.parameters={radius:e,segments:t,thetaStart:n,thetaLength:i},t=Math.max(3,t);const s=[],r=[],o=[],l=[],c=new I,h=new he;r.push(0,0,0),o.push(0,0,1),l.push(.5,.5);for(let u=0,f=3;u<=t;u++,f+=3){const d=n+u/t*i;c.x=e*Math.cos(d),c.y=e*Math.sin(d),r.push(c.x,c.y,c.z),o.push(0,0,1),h.x=(r[f]/e+1)/2,h.y=(r[f+1]/e+1)/2,l.push(h.x,h.y)}for(let u=1;u<=t;u++)s.push(u,u+1,0);this.setIndex(s),this.setAttribute(\"position\",new Ee(r,3)),this.setAttribute(\"normal\",new Ee(o,3)),this.setAttribute(\"uv\",new Ee(l,2))}static fromJSON(e){return new Sr(e.radius,e.segments,e.thetaStart,e.thetaLength)}}class Zi extends Xe{constructor(e=1,t=1,n=1,i=8,s=1,r=!1,o=0,l=Math.PI*2){super(),this.type=\"CylinderGeometry\",this.parameters={radiusTop:e,radiusBottom:t,height:n,radialSegments:i,heightSegments:s,openEnded:r,thetaStart:o,thetaLength:l};const c=this;i=Math.floor(i),s=Math.floor(s);const h=[],u=[],f=[],d=[];let p=0;const m=[],g=n/2;let y=0;x(),r===!1&&(e>0&&b(!0),t>0&&b(!1)),this.setIndex(h),this.setAttribute(\"position\",new Ee(u,3)),this.setAttribute(\"normal\",new Ee(f,3)),this.setAttribute(\"uv\",new Ee(d,2));function x(){const v=new I,M=new I;let T=0;const C=(t-e)/n;for(let _=0;_<=s;_++){const E=[],F=_/s,U=F*(t-e)+e;for(let q=0;q<=i;q++){const K=q/i,G=K*l+o,X=Math.sin(G),O=Math.cos(G);M.x=U*X,M.y=-F*n+g,M.z=U*O,u.push(M.x,M.y,M.z),v.set(X,C,O).normalize(),f.push(v.x,v.y,v.z),d.push(K,1-F),E.push(p++)}m.push(E)}for(let _=0;_<i;_++)for(let E=0;E<s;E++){const F=m[E][_],U=m[E+1][_],q=m[E+1][_+1],K=m[E][_+1];h.push(F,U,K),h.push(U,q,K),T+=6}c.addGroup(y,T,0),y+=T}function b(v){const M=p,T=new he,C=new I;let _=0;const E=v===!0?e:t,F=v===!0?1:-1;for(let q=1;q<=i;q++)u.push(0,g*F,0),f.push(0,F,0),d.push(.5,.5),p++;const U=p;for(let q=0;q<=i;q++){const G=q/i*l+o,X=Math.cos(G),O=Math.sin(G);C.x=E*O,C.y=g*F,C.z=E*X,u.push(C.x,C.y,C.z),f.push(0,F,0),T.x=X*.5+.5,T.y=O*.5*F+.5,d.push(T.x,T.y),p++}for(let q=0;q<i;q++){const K=M+q,G=U+q;v===!0?h.push(G,G+1,K):h.push(G+1,G,K),_+=3}c.addGroup(y,_,v===!0?1:2),y+=_}}static fromJSON(e){return new Zi(e.radiusTop,e.radiusBottom,e.height,e.radialSegments,e.heightSegments,e.openEnded,e.thetaStart,e.thetaLength)}}class Tr extends Zi{constructor(e=1,t=1,n=8,i=1,s=!1,r=0,o=Math.PI*2){super(0,e,t,n,i,s,r,o),this.type=\"ConeGeometry\",this.parameters={radius:e,height:t,radialSegments:n,heightSegments:i,openEnded:s,thetaStart:r,thetaLength:o}}static fromJSON(e){return new Tr(e.radius,e.height,e.radialSegments,e.heightSegments,e.openEnded,e.thetaStart,e.thetaLength)}}class ei extends Xe{constructor(e=[],t=[],n=1,i=0){super(),this.type=\"PolyhedronGeometry\",this.parameters={vertices:e,indices:t,radius:n,detail:i};const s=[],r=[];o(i),c(n),h(),this.setAttribute(\"position\",new Ee(s,3)),this.setAttribute(\"normal\",new Ee(s.slice(),3)),this.setAttribute(\"uv\",new Ee(r,2)),i===0?this.computeVertexNormals():this.normalizeNormals();function o(x){const b=new I,v=new I,M=new I;for(let T=0;T<t.length;T+=3)d(t[T+0],b),d(t[T+1],v),d(t[T+2],M),l(b,v,M,x)}function l(x,b,v,M){const T=M+1,C=[];for(let _=0;_<=T;_++){C[_]=[];const E=x.clone().lerp(v,_/T),F=b.clone().lerp(v,_/T),U=T-_;for(let q=0;q<=U;q++)q===0&&_===T?C[_][q]=E:C[_][q]=E.clone().lerp(F,q/U)}for(let _=0;_<T;_++)for(let E=0;E<2*(T-_)-1;E++){const F=Math.floor(E/2);E%2===0?(f(C[_][F+1]),f(C[_+1][F]),f(C[_][F])):(f(C[_][F+1]),f(C[_+1][F+1]),f(C[_+1][F]))}}function c(x){const b=new I;for(let v=0;v<s.length;v+=3)b.x=s[v+0],b.y=s[v+1],b.z=s[v+2],b.normalize().multiplyScalar(x),s[v+0]=b.x,s[v+1]=b.y,s[v+2]=b.z}function h(){const x=new I;for(let b=0;b<s.length;b+=3){x.x=s[b+0],x.y=s[b+1],x.z=s[b+2];const v=g(x)/2/Math.PI+.5,M=y(x)/Math.PI+.5;r.push(v,1-M)}p(),u()}function u(){for(let x=0;x<r.length;x+=6){const b=r[x+0],v=r[x+2],M=r[x+4],T=Math.max(b,v,M),C=Math.min(b,v,M);T>.9&&C<.1&&(b<.2&&(r[x+0]+=1),v<.2&&(r[x+2]+=1),M<.2&&(r[x+4]+=1))}}function f(x){s.push(x.x,x.y,x.z)}function d(x,b){const v=x*3;b.x=e[v+0],b.y=e[v+1],b.z=e[v+2]}function p(){const x=new I,b=new I,v=new I,M=new I,T=new he,C=new he,_=new he;for(let E=0,F=0;E<s.length;E+=9,F+=6){x.set(s[E+0],s[E+1],s[E+2]),b.set(s[E+3],s[E+4],s[E+5]),v.set(s[E+6],s[E+7],s[E+8]),T.set(r[F+0],r[F+1]),C.set(r[F+2],r[F+3]),_.set(r[F+4],r[F+5]),M.copy(x).add(b).add(v).divideScalar(3);const U=g(M);m(T,F+0,x,U),m(C,F+2,b,U),m(_,F+4,v,U)}}function m(x,b,v,M){M<0&&x.x===1&&(r[b]=x.x-1),v.x===0&&v.z===0&&(r[b]=M/2/Math.PI+.5)}function g(x){return Math.atan2(x.z,-x.x)}function y(x){return Math.atan2(-x.y,Math.sqrt(x.x*x.x+x.z*x.z))}}static fromJSON(e){return new ei(e.vertices,e.indices,e.radius,e.details)}}class Ar extends ei{constructor(e=1,t=0){const n=(1+Math.sqrt(5))/2,i=1/n,s=[-1,-1,-1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,-1,1,-1,1,1,1,-1,1,1,1,0,-i,-n,0,-i,n,0,i,-n,0,i,n,-i,-n,0,-i,n,0,i,-n,0,i,n,0,-n,0,-i,n,0,-i,-n,0,i,n,0,i],r=[3,11,7,3,7,15,3,15,13,7,19,17,7,17,6,7,6,15,17,4,8,17,8,10,17,10,6,8,0,16,8,16,2,8,2,10,0,12,1,0,1,18,0,18,16,6,10,2,6,2,13,6,13,15,2,16,18,2,18,3,2,3,13,18,1,9,18,9,11,18,11,3,4,14,12,4,12,0,4,0,8,11,9,5,11,5,19,11,19,7,19,5,14,19,14,4,19,4,17,1,12,14,1,14,5,1,5,9];super(s,r,e,t),this.type=\"DodecahedronGeometry\",this.parameters={radius:e,detail:t}}static fromJSON(e){return new Ar(e.radius,e.detail)}}const Ja=new I,$a=new I,fu=new I,Qa=new Pn;class Od extends Xe{constructor(e=null,t=1){if(super(),this.type=\"EdgesGeometry\",this.parameters={geometry:e,thresholdAngle:t},e!==null){const i=Math.pow(10,4),s=Math.cos(ms*t),r=e.getIndex(),o=e.getAttribute(\"position\"),l=r?r.count:o.count,c=[0,0,0],h=[\"a\",\"b\",\"c\"],u=new Array(3),f={},d=[];for(let p=0;p<l;p+=3){r?(c[0]=r.getX(p),c[1]=r.getX(p+1),c[2]=r.getX(p+2)):(c[0]=p,c[1]=p+1,c[2]=p+2);const{a:m,b:g,c:y}=Qa;if(m.fromBufferAttribute(o,c[0]),g.fromBufferAttribute(o,c[1]),y.fromBufferAttribute(o,c[2]),Qa.getNormal(fu),u[0]=`${Math.round(m.x*i)},${Math.round(m.y*i)},${Math.round(m.z*i)}`,u[1]=`${Math.round(g.x*i)},${Math.round(g.y*i)},${Math.round(g.z*i)}`,u[2]=`${Math.round(y.x*i)},${Math.round(y.y*i)},${Math.round(y.z*i)}`,!(u[0]===u[1]||u[1]===u[2]||u[2]===u[0]))for(let x=0;x<3;x++){const b=(x+1)%3,v=u[x],M=u[b],T=Qa[h[x]],C=Qa[h[b]],_=`${v}_${M}`,E=`${M}_${v}`;E in f&&f[E]?(fu.dot(f[E].normal)<=s&&(d.push(T.x,T.y,T.z),d.push(C.x,C.y,C.z)),f[E]=null):_ in f||(f[_]={index0:c[x],index1:c[b],normal:fu.clone()})}}for(const p in f)if(f[p]){const{index0:m,index1:g}=f[p];Ja.fromBufferAttribute(o,m),$a.fromBufferAttribute(o,g),d.push(Ja.x,Ja.y,Ja.z),d.push($a.x,$a.y,$a.z)}this.setAttribute(\"position\",new Ee(d,3))}}}class Cs extends Lo{constructor(e){super(e),this.uuid=Sn(),this.type=\"Shape\",this.holes=[]}getPointsHoles(e){const t=[];for(let n=0,i=this.holes.length;n<i;n++)t[n]=this.holes[n].getPoints(e);return t}extractPoints(e){return{shape:this.getPoints(e),holes:this.getPointsHoles(e)}}copy(e){super.copy(e),this.holes=[];for(let t=0,n=e.holes.length;t<n;t++){const i=e.holes[t];this.holes.push(i.clone())}return this}toJSON(){const e=super.toJSON();e.uuid=this.uuid,e.holes=[];for(let t=0,n=this.holes.length;t<n;t++){const i=this.holes[t];e.holes.push(i.toJSON())}return e}fromJSON(e){super.fromJSON(e),this.uuid=e.uuid,this.holes=[];for(let t=0,n=e.holes.length;t<n;t++){const i=e.holes[t];this.holes.push(new Lo().fromJSON(i))}return this}}const w_={triangulate:function(a,e,t=2){const n=e&&e.length,i=n?e[0]*t:a.length;let s=Bd(a,0,i,t,!0);const r=[];if(!s||s.next===s.prev)return r;let o,l,c,h,u,f,d;if(n&&(s=E_(a,e,s,t)),a.length>80*t){o=c=a[0],l=h=a[1];for(let p=t;p<i;p+=t)u=a[p],f=a[p+1],u<o&&(o=u),f<l&&(l=f),u>c&&(c=u),f>h&&(h=f);d=Math.max(c-o,h-l),d=d!==0?1/d:0}return Ro(s,r,t,o,l,d),r}};function Bd(a,e,t,n,i){let s,r;if(i===B_(a,e,t,n)>0)for(s=e;s<t;s+=n)r=Gd(s,a[s],a[s+1],r);else for(s=t-n;s>=e;s-=n)r=Gd(s,a[s],a[s+1],r);return r&&el(r,r.next)&&(Po(r),r=r.next),r}function Ki(a,e){if(!a)return a;e||(e=a);let t=a,n;do if(n=!1,!t.steiner&&(el(t,t.next)||Dt(t.prev,t,t.next)===0)){if(Po(t),t=e=t.prev,t===t.next)break;n=!0}else t=t.next;while(n||t!==e);return e}function Ro(a,e,t,n,i,s,r){if(!a)return;!r&&s&&P_(a,n,i,s);let o=a,l,c;for(;a.prev!==a.next;){if(l=a.prev,c=a.next,s?S_(a,n,i,s):M_(a)){e.push(l.i/t),e.push(a.i/t),e.push(c.i/t),Po(a),a=c.next,o=c.next;continue}if(a=c,a===o){r?r===1?(a=T_(Ki(a),e,t),Ro(a,e,t,n,i,s,2)):r===2&&A_(a,e,t,n,i,s):Ro(Ki(a),e,t,n,i,s,1);break}}}function M_(a){const e=a.prev,t=a,n=a.next;if(Dt(e,t,n)>=0)return!1;let i=a.next.next;for(;i!==a.prev;){if(Er(e.x,e.y,t.x,t.y,n.x,n.y,i.x,i.y)&&Dt(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function S_(a,e,t,n){const i=a.prev,s=a,r=a.next;if(Dt(i,s,r)>=0)return!1;const o=i.x<s.x?i.x<r.x?i.x:r.x:s.x<r.x?s.x:r.x,l=i.y<s.y?i.y<r.y?i.y:r.y:s.y<r.y?s.y:r.y,c=i.x>s.x?i.x>r.x?i.x:r.x:s.x>r.x?s.x:r.x,h=i.y>s.y?i.y>r.y?i.y:r.y:s.y>r.y?s.y:r.y,u=du(o,l,e,t,n),f=du(c,h,e,t,n);let d=a.prevZ,p=a.nextZ;for(;d&&d.z>=u&&p&&p.z<=f;){if(d!==a.prev&&d!==a.next&&Er(i.x,i.y,s.x,s.y,r.x,r.y,d.x,d.y)&&Dt(d.prev,d,d.next)>=0||(d=d.prevZ,p!==a.prev&&p!==a.next&&Er(i.x,i.y,s.x,s.y,r.x,r.y,p.x,p.y)&&Dt(p.prev,p,p.next)>=0))return!1;p=p.nextZ}for(;d&&d.z>=u;){if(d!==a.prev&&d!==a.next&&Er(i.x,i.y,s.x,s.y,r.x,r.y,d.x,d.y)&&Dt(d.prev,d,d.next)>=0)return!1;d=d.prevZ}for(;p&&p.z<=f;){if(p!==a.prev&&p!==a.next&&Er(i.x,i.y,s.x,s.y,r.x,r.y,p.x,p.y)&&Dt(p.prev,p,p.next)>=0)return!1;p=p.nextZ}return!0}function T_(a,e,t){let n=a;do{const i=n.prev,s=n.next.next;!el(i,s)&&zd(i,n,n.next,s)&&Io(i,s)&&Io(s,i)&&(e.push(i.i/t),e.push(n.i/t),e.push(s.i/t),Po(n),Po(n.next),n=a=s),n=n.next}while(n!==a);return Ki(n)}function A_(a,e,t,n,i,s){let r=a;do{let o=r.next.next;for(;o!==r.prev;){if(r.i!==o.i&&N_(r,o)){let l=Ud(r,o);r=Ki(r,r.next),l=Ki(l,l.next),Ro(r,e,t,n,i,s),Ro(l,e,t,n,i,s);return}o=o.next}r=r.next}while(r!==a)}function E_(a,e,t,n){const i=[];let s,r,o,l,c;for(s=0,r=e.length;s<r;s++)o=e[s]*n,l=s<r-1?e[s+1]*n:a.length,c=Bd(a,o,l,n,!1),c===c.next&&(c.steiner=!0),i.push(F_(c));for(i.sort(C_),s=0;s<i.length;s++)L_(i[s],t),t=Ki(t,t.next);return t}function C_(a,e){return a.x-e.x}function L_(a,e){if(e=R_(a,e),e){const t=Ud(e,a);Ki(e,e.next),Ki(t,t.next)}}function R_(a,e){let t=e;const n=a.x,i=a.y;let s=-1/0,r;do{if(i<=t.y&&i>=t.next.y&&t.next.y!==t.y){const f=t.x+(i-t.y)*(t.next.x-t.x)/(t.next.y-t.y);if(f<=n&&f>s){if(s=f,f===n){if(i===t.y)return t;if(i===t.next.y)return t.next}r=t.x<t.next.x?t:t.next}}t=t.next}while(t!==e);if(!r)return null;if(n===s)return r;const o=r,l=r.x,c=r.y;let h=1/0,u;t=r;do n>=t.x&&t.x>=l&&n!==t.x&&Er(i<c?n:s,i,l,c,i<c?s:n,i,t.x,t.y)&&(u=Math.abs(i-t.y)/(n-t.x),Io(t,a)&&(u<h||u===h&&(t.x>r.x||t.x===r.x&&I_(r,t)))&&(r=t,h=u)),t=t.next;while(t!==o);return r}function I_(a,e){return Dt(a.prev,a,e.prev)<0&&Dt(e.next,a,a.next)<0}function P_(a,e,t,n){let i=a;do i.z===null&&(i.z=du(i.x,i.y,e,t,n)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next;while(i!==a);i.prevZ.nextZ=null,i.prevZ=null,D_(i)}function D_(a){let e,t,n,i,s,r,o,l,c=1;do{for(t=a,a=null,s=null,r=0;t;){for(r++,n=t,o=0,e=0;e<c&&(o++,n=n.nextZ,!!n);e++);for(l=c;o>0||l>0&&n;)o!==0&&(l===0||!n||t.z<=n.z)?(i=t,t=t.nextZ,o--):(i=n,n=n.nextZ,l--),s?s.nextZ=i:a=i,i.prevZ=s,s=i;t=n}s.nextZ=null,c*=2}while(r>1);return a}function du(a,e,t,n,i){return a=32767*(a-t)*i,e=32767*(e-n)*i,a=(a|a<<8)&16711935,a=(a|a<<4)&252645135,a=(a|a<<2)&858993459,a=(a|a<<1)&1431655765,e=(e|e<<8)&16711935,e=(e|e<<4)&252645135,e=(e|e<<2)&858993459,e=(e|e<<1)&1431655765,a|e<<1}function F_(a){let e=a,t=a;do(e.x<t.x||e.x===t.x&&e.y<t.y)&&(t=e),e=e.next;while(e!==a);return t}function Er(a,e,t,n,i,s,r,o){return(i-r)*(e-o)-(a-r)*(s-o)>=0&&(a-r)*(n-o)-(t-r)*(e-o)>=0&&(t-r)*(s-o)-(i-r)*(n-o)>=0}function N_(a,e){return a.next.i!==e.i&&a.prev.i!==e.i&&!k_(a,e)&&(Io(a,e)&&Io(e,a)&&O_(a,e)&&(Dt(a.prev,a,e.prev)||Dt(a,e.prev,e))||el(a,e)&&Dt(a.prev,a,a.next)>0&&Dt(e.prev,e,e.next)>0)}function Dt(a,e,t){return(e.y-a.y)*(t.x-e.x)-(e.x-a.x)*(t.y-e.y)}function el(a,e){return a.x===e.x&&a.y===e.y}function zd(a,e,t,n){const i=nl(Dt(a,e,t)),s=nl(Dt(a,e,n)),r=nl(Dt(t,n,a)),o=nl(Dt(t,n,e));return!!(i!==s&&r!==o||i===0&&tl(a,t,e)||s===0&&tl(a,n,e)||r===0&&tl(t,a,n)||o===0&&tl(t,e,n))}function tl(a,e,t){return e.x<=Math.max(a.x,t.x)&&e.x>=Math.min(a.x,t.x)&&e.y<=Math.max(a.y,t.y)&&e.y>=Math.min(a.y,t.y)}function nl(a){return a>0?1:a<0?-1:0}function k_(a,e){let t=a;do{if(t.i!==a.i&&t.next.i!==a.i&&t.i!==e.i&&t.next.i!==e.i&&zd(t,t.next,a,e))return!0;t=t.next}while(t!==a);return!1}function Io(a,e){return Dt(a.prev,a,a.next)<0?Dt(a,e,a.next)>=0&&Dt(a,a.prev,e)>=0:Dt(a,e,a.prev)<0||Dt(a,a.next,e)<0}function O_(a,e){let t=a,n=!1;const i=(a.x+e.x)/2,s=(a.y+e.y)/2;do t.y>s!=t.next.y>s&&t.next.y!==t.y&&i<(t.next.x-t.x)*(s-t.y)/(t.next.y-t.y)+t.x&&(n=!n),t=t.next;while(t!==a);return n}function Ud(a,e){const t=new pu(a.i,a.x,a.y),n=new pu(e.i,e.x,e.y),i=a.next,s=e.prev;return a.next=e,e.prev=a,t.next=i,i.prev=t,n.next=t,t.prev=n,s.next=n,n.prev=s,n}function Gd(a,e,t,n){const i=new pu(a,e,t);return n?(i.next=n.next,i.prev=n,n.next.prev=i,n.next=i):(i.prev=i,i.next=i),i}function Po(a){a.next.prev=a.prev,a.prev.next=a.next,a.prevZ&&(a.prevZ.nextZ=a.nextZ),a.nextZ&&(a.nextZ.prevZ=a.prevZ)}function pu(a,e,t){this.i=a,this.x=e,this.y=t,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function B_(a,e,t,n){let i=0;for(let s=e,r=t-n;s<t;s+=n)i+=(a[r]-a[s])*(a[s+1]+a[r+1]),r=s;return i}class ti{static area(e){const t=e.length;let n=0;for(let i=t-1,s=0;s<t;i=s++)n+=e[i].x*e[s].y-e[s].x*e[i].y;return n*.5}static isClockWise(e){return ti.area(e)<0}static triangulateShape(e,t){const n=[],i=[],s=[];Vd(e),Hd(n,e);let r=e.length;t.forEach(Vd);for(let l=0;l<t.length;l++)i.push(r),r+=t[l].length,Hd(n,t[l]);const o=w_.triangulate(n,i);for(let l=0;l<o.length;l+=3)s.push(o.slice(l,l+3));return s}}function Vd(a){const e=a.length;e>2&&a[e-1].equals(a[0])&&a.pop()}function Hd(a,e){for(let t=0;t<e.length;t++)a.push(e[t].x),a.push(e[t].y)}class Cr extends Xe{constructor(e=new Cs([new he(.5,.5),new he(-.5,.5),new he(-.5,-.5),new he(.5,-.5)]),t={}){super(),this.type=\"ExtrudeGeometry\",this.parameters={shapes:e,options:t},e=Array.isArray(e)?e:[e];const n=this,i=[],s=[];for(let o=0,l=e.length;o<l;o++){const c=e[o];r(c)}this.setAttribute(\"position\",new Ee(i,3)),this.setAttribute(\"uv\",new Ee(s,2)),this.computeVertexNormals();function r(o){const l=[],c=t.curveSegments!==void 0?t.curveSegments:12,h=t.steps!==void 0?t.steps:1,u=t.depth!==void 0?t.depth:1;let f=t.bevelEnabled!==void 0?t.bevelEnabled:!0,d=t.bevelThickness!==void 0?t.bevelThickness:.2,p=t.bevelSize!==void 0?t.bevelSize:d-.1,m=t.bevelOffset!==void 0?t.bevelOffset:0,g=t.bevelSegments!==void 0?t.bevelSegments:3;const y=t.extrudePath,x=t.UVGenerator!==void 0?t.UVGenerator:z_;let b,v=!1,M,T,C,_;y&&(b=y.getSpacedPoints(h),v=!0,f=!1,M=y.computeFrenetFrames(h,!1),T=new I,C=new I,_=new I),f||(g=0,d=0,p=0,m=0);const E=o.extractPoints(c);let F=E.shape;const U=E.holes;if(!ti.isClockWise(F)){F=F.reverse();for(let ue=0,ce=U.length;ue<ce;ue++){const ve=U[ue];ti.isClockWise(ve)&&(U[ue]=ve.reverse())}}const K=ti.triangulateShape(F,U),G=F;for(let ue=0,ce=U.length;ue<ce;ue++){const ve=U[ue];F=F.concat(ve)}function X(ue,ce,ve){return ce||console.error(\"THREE.ExtrudeGeometry: vec does not exist\"),ce.clone().multiplyScalar(ve).add(ue)}const O=F.length,j=K.length;function Y(ue,ce,ve){let ke,Le,Ze;const He=ue.x-ce.x,Ue=ue.y-ce.y,gt=ve.x-ue.x,lt=ve.y-ue.y,k=He*He+Ue*Ue,P=He*lt-Ue*gt;if(Math.abs(P)>Number.EPSILON){const oe=Math.sqrt(k),_e=Math.sqrt(gt*gt+lt*lt),Se=ce.x-Ue/oe,Ie=ce.y+He/oe,je=ve.x-lt/_e,D=ve.y+gt/_e,me=((je-Se)*lt-(D-Ie)*gt)/(He*lt-Ue*gt);ke=Se+He*me-ue.x,Le=Ie+Ue*me-ue.y;const Te=ke*ke+Le*Le;if(Te<=2)return new he(ke,Le);Ze=Math.sqrt(Te/2)}else{let oe=!1;He>Number.EPSILON?gt>Number.EPSILON&&(oe=!0):He<-Number.EPSILON?gt<-Number.EPSILON&&(oe=!0):Math.sign(Ue)===Math.sign(lt)&&(oe=!0),oe?(ke=-Ue,Le=He,Ze=Math.sqrt(k)):(ke=He,Le=Ue,Ze=Math.sqrt(k/2))}return new he(ke/Ze,Le/Ze)}const W=[];for(let ue=0,ce=G.length,ve=ce-1,ke=ue+1;ue<ce;ue++,ve++,ke++)ve===ce&&(ve=0),ke===ce&&(ke=0),W[ue]=Y(G[ue],G[ve],G[ke]);const Z=[];let ee,Q=W.concat();for(let ue=0,ce=U.length;ue<ce;ue++){const ve=U[ue];ee=[];for(let ke=0,Le=ve.length,Ze=Le-1,He=ke+1;ke<Le;ke++,Ze++,He++)Ze===Le&&(Ze=0),He===Le&&(He=0),ee[ke]=Y(ve[ke],ve[Ze],ve[He]);Z.push(ee),Q=Q.concat(ee)}for(let ue=0;ue<g;ue++){const ce=ue/g,ve=d*Math.cos(ce*Math.PI/2),ke=p*Math.sin(ce*Math.PI/2)+m;for(let Le=0,Ze=G.length;Le<Ze;Le++){const He=X(G[Le],W[Le],ke);ge(He.x,He.y,-ve)}for(let Le=0,Ze=U.length;Le<Ze;Le++){const He=U[Le];ee=Z[Le];for(let Ue=0,gt=He.length;Ue<gt;Ue++){const lt=X(He[Ue],ee[Ue],ke);ge(lt.x,lt.y,-ve)}}}const ie=p+m;for(let ue=0;ue<O;ue++){const ce=f?X(F[ue],Q[ue],ie):F[ue];v?(C.copy(M.normals[0]).multiplyScalar(ce.x),T.copy(M.binormals[0]).multiplyScalar(ce.y),_.copy(b[0]).add(C).add(T),ge(_.x,_.y,_.z)):ge(ce.x,ce.y,0)}for(let ue=1;ue<=h;ue++)for(let ce=0;ce<O;ce++){const ve=f?X(F[ce],Q[ce],ie):F[ce];v?(C.copy(M.normals[ue]).multiplyScalar(ve.x),T.copy(M.binormals[ue]).multiplyScalar(ve.y),_.copy(b[ue]).add(C).add(T),ge(_.x,_.y,_.z)):ge(ve.x,ve.y,u/h*ue)}for(let ue=g-1;ue>=0;ue--){const ce=ue/g,ve=d*Math.cos(ce*Math.PI/2),ke=p*Math.sin(ce*Math.PI/2)+m;for(let Le=0,Ze=G.length;Le<Ze;Le++){const He=X(G[Le],W[Le],ke);ge(He.x,He.y,u+ve)}for(let Le=0,Ze=U.length;Le<Ze;Le++){const He=U[Le];ee=Z[Le];for(let Ue=0,gt=He.length;Ue<gt;Ue++){const lt=X(He[Ue],ee[Ue],ke);v?ge(lt.x,lt.y+b[h-1].y,b[h-1].x+ve):ge(lt.x,lt.y,u+ve)}}}ae(),re();function ae(){const ue=i.length/3;if(f){let ce=0,ve=O*ce;for(let ke=0;ke<j;ke++){const Le=K[ke];we(Le[2]+ve,Le[1]+ve,Le[0]+ve)}ce=h+g*2,ve=O*ce;for(let ke=0;ke<j;ke++){const Le=K[ke];we(Le[0]+ve,Le[1]+ve,Le[2]+ve)}}else{for(let ce=0;ce<j;ce++){const ve=K[ce];we(ve[2],ve[1],ve[0])}for(let ce=0;ce<j;ce++){const ve=K[ce];we(ve[0]+O*h,ve[1]+O*h,ve[2]+O*h)}}n.addGroup(ue,i.length/3-ue,0)}function re(){const ue=i.length/3;let ce=0;H(G,ce),ce+=G.length;for(let ve=0,ke=U.length;ve<ke;ve++){const Le=U[ve];H(Le,ce),ce+=Le.length}n.addGroup(ue,i.length/3-ue,1)}function H(ue,ce){let ve=ue.length;for(;--ve>=0;){const ke=ve;let Le=ve-1;Le<0&&(Le=ue.length-1);for(let Ze=0,He=h+g*2;Ze<He;Ze++){const Ue=O*Ze,gt=O*(Ze+1),lt=ce+ke+Ue,k=ce+Le+Ue,P=ce+Le+gt,oe=ce+ke+gt;Fe(lt,k,P,oe)}}}function ge(ue,ce,ve){l.push(ue),l.push(ce),l.push(ve)}function we(ue,ce,ve){xe(ue),xe(ce),xe(ve);const ke=i.length/3,Le=x.generateTopUV(n,i,ke-3,ke-2,ke-1);Ve(Le[0]),Ve(Le[1]),Ve(Le[2])}function Fe(ue,ce,ve,ke){xe(ue),xe(ce),xe(ke),xe(ce),xe(ve),xe(ke);const Le=i.length/3,Ze=x.generateSideWallUV(n,i,Le-6,Le-3,Le-2,Le-1);Ve(Ze[0]),Ve(Ze[1]),Ve(Ze[3]),Ve(Ze[1]),Ve(Ze[2]),Ve(Ze[3])}function xe(ue){i.push(l[ue*3+0]),i.push(l[ue*3+1]),i.push(l[ue*3+2])}function Ve(ue){s.push(ue.x),s.push(ue.y)}}}toJSON(){const e=super.toJSON(),t=this.parameters.shapes,n=this.parameters.options;return U_(t,n,e)}static fromJSON(e,t){const n=[];for(let s=0,r=e.shapes.length;s<r;s++){const o=t[e.shapes[s]];n.push(o)}const i=e.options.extrudePath;return i!==void 0&&(e.options.extrudePath=new hu[i.type]().fromJSON(i)),new Cr(n,e.options)}}const z_={generateTopUV:function(a,e,t,n,i){const s=e[t*3],r=e[t*3+1],o=e[n*3],l=e[n*3+1],c=e[i*3],h=e[i*3+1];return[new he(s,r),new he(o,l),new he(c,h)]},generateSideWallUV:function(a,e,t,n,i,s){const r=e[t*3],o=e[t*3+1],l=e[t*3+2],c=e[n*3],h=e[n*3+1],u=e[n*3+2],f=e[i*3],d=e[i*3+1],p=e[i*3+2],m=e[s*3],g=e[s*3+1],y=e[s*3+2];return Math.abs(o-h)<Math.abs(r-c)?[new he(r,1-l),new he(c,1-u),new he(f,1-p),new he(m,1-y)]:[new he(o,1-l),new he(h,1-u),new he(d,1-p),new he(g,1-y)]}};function U_(a,e,t){if(t.shapes=[],Array.isArray(a))for(let n=0,i=a.length;n<i;n++){const s=a[n];t.shapes.push(s.uuid)}else t.shapes.push(a.uuid);return t.options=Object.assign({},e),e.extrudePath!==void 0&&(t.options.extrudePath=e.extrudePath.toJSON()),t}class Lr extends ei{constructor(e=1,t=0){const n=(1+Math.sqrt(5))/2,i=[-1,n,0,1,n,0,-1,-n,0,1,-n,0,0,-1,n,0,1,n,0,-1,-n,0,1,-n,n,0,-1,n,0,1,-n,0,-1,-n,0,1],s=[0,11,5,0,5,1,0,1,7,0,7,10,0,10,11,1,5,9,5,11,4,11,10,2,10,7,6,7,1,8,3,9,4,3,4,2,3,2,6,3,6,8,3,8,9,4,9,5,2,4,11,6,2,10,8,6,7,9,8,1];super(i,s,e,t),this.type=\"IcosahedronGeometry\",this.parameters={radius:e,detail:t}}static fromJSON(e){return new Lr(e.radius,e.detail)}}class Ls extends ei{constructor(e=1,t=0){const n=[1,0,0,-1,0,0,0,1,0,0,-1,0,0,0,1,0,0,-1],i=[0,2,4,0,4,3,0,3,5,0,5,2,1,2,5,1,5,3,1,3,4,1,4,2];super(n,i,e,t),this.type=\"OctahedronGeometry\",this.parameters={radius:e,detail:t}}static fromJSON(e){return new Ls(e.radius,e.detail)}}class Rr extends Xe{constructor(e=.5,t=1,n=8,i=1,s=0,r=Math.PI*2){super(),this.type=\"RingGeometry\",this.parameters={innerRadius:e,outerRadius:t,thetaSegments:n,phiSegments:i,thetaStart:s,thetaLength:r},n=Math.max(3,n),i=Math.max(1,i);const o=[],l=[],c=[],h=[];let u=e;const f=(t-e)/i,d=new I,p=new he;for(let m=0;m<=i;m++){for(let g=0;g<=n;g++){const y=s+g/n*r;d.x=u*Math.cos(y),d.y=u*Math.sin(y),l.push(d.x,d.y,d.z),c.push(0,0,1),p.x=(d.x/t+1)/2,p.y=(d.y/t+1)/2,h.push(p.x,p.y)}u+=f}for(let m=0;m<i;m++){const g=m*(n+1);for(let y=0;y<n;y++){const x=y+g,b=x,v=x+n+1,M=x+n+2,T=x+1;o.push(b,v,T),o.push(v,M,T)}}this.setIndex(o),this.setAttribute(\"position\",new Ee(l,3)),this.setAttribute(\"normal\",new Ee(c,3)),this.setAttribute(\"uv\",new Ee(h,2))}static fromJSON(e){return new Rr(e.innerRadius,e.outerRadius,e.thetaSegments,e.phiSegments,e.thetaStart,e.thetaLength)}}class Ir extends Xe{constructor(e=new Cs([new he(0,.5),new he(-.5,-.5),new he(.5,-.5)]),t=12){super(),this.type=\"ShapeGeometry\",this.parameters={shapes:e,curveSegments:t};const n=[],i=[],s=[],r=[];let o=0,l=0;if(Array.isArray(e)===!1)c(e);else for(let h=0;h<e.length;h++)c(e[h]),this.addGroup(o,l,h),o+=l,l=0;this.setIndex(n),this.setAttribute(\"position\",new Ee(i,3)),this.setAttribute(\"normal\",new Ee(s,3)),this.setAttribute(\"uv\",new Ee(r,2));function c(h){const u=i.length/3,f=h.extractPoints(t);let d=f.shape;const p=f.holes;ti.isClockWise(d)===!1&&(d=d.reverse());for(let g=0,y=p.length;g<y;g++){const x=p[g];ti.isClockWise(x)===!0&&(p[g]=x.reverse())}const m=ti.triangulateShape(d,p);for(let g=0,y=p.length;g<y;g++){const x=p[g];d=d.concat(x)}for(let g=0,y=d.length;g<y;g++){const x=d[g];i.push(x.x,x.y,0),s.push(0,0,1),r.push(x.x,x.y)}for(let g=0,y=m.length;g<y;g++){const x=m[g],b=x[0]+u,v=x[1]+u,M=x[2]+u;n.push(b,v,M),l+=3}}}toJSON(){const e=super.toJSON(),t=this.parameters.shapes;return G_(t,e)}static fromJSON(e,t){const n=[];for(let i=0,s=e.shapes.length;i<s;i++){const r=t[e.shapes[i]];n.push(r)}return new Ir(n,e.curveSegments)}}function G_(a,e){if(e.shapes=[],Array.isArray(a))for(let t=0,n=a.length;t<n;t++){const i=a[t];e.shapes.push(i.uuid)}else e.shapes.push(a.uuid);return e}class Rs extends Xe{constructor(e=1,t=32,n=16,i=0,s=Math.PI*2,r=0,o=Math.PI){super(),this.type=\"SphereGeometry\",this.parameters={radius:e,widthSegments:t,heightSegments:n,phiStart:i,phiLength:s,thetaStart:r,thetaLength:o},t=Math.max(3,Math.floor(t)),n=Math.max(2,Math.floor(n));const l=Math.min(r+o,Math.PI);let c=0;const h=[],u=new I,f=new I,d=[],p=[],m=[],g=[];for(let y=0;y<=n;y++){const x=[],b=y/n;let v=0;y==0&&r==0?v=.5/t:y==n&&l==Math.PI&&(v=-.5/t);for(let M=0;M<=t;M++){const T=M/t;u.x=-e*Math.cos(i+T*s)*Math.sin(r+b*o),u.y=e*Math.cos(r+b*o),u.z=e*Math.sin(i+T*s)*Math.sin(r+b*o),p.push(u.x,u.y,u.z),f.copy(u).normalize(),m.push(f.x,f.y,f.z),g.push(T+v,1-b),x.push(c++)}h.push(x)}for(let y=0;y<n;y++)for(let x=0;x<t;x++){const b=h[y][x+1],v=h[y][x],M=h[y+1][x],T=h[y+1][x+1];(y!==0||r>0)&&d.push(b,v,T),(y!==n-1||l<Math.PI)&&d.push(v,M,T)}this.setIndex(d),this.setAttribute(\"position\",new Ee(p,3)),this.setAttribute(\"normal\",new Ee(m,3)),this.setAttribute(\"uv\",new Ee(g,2))}static fromJSON(e){return new Rs(e.radius,e.widthSegments,e.heightSegments,e.phiStart,e.phiLength,e.thetaStart,e.thetaLength)}}class Pr extends ei{constructor(e=1,t=0){const n=[1,1,1,-1,-1,1,-1,1,-1,1,-1,-1],i=[2,1,0,0,3,2,1,3,0,2,3,1];super(n,i,e,t),this.type=\"TetrahedronGeometry\",this.parameters={radius:e,detail:t}}static fromJSON(e){return new Pr(e.radius,e.detail)}}class Dr extends Xe{constructor(e=1,t=.4,n=8,i=6,s=Math.PI*2){super(),this.type=\"TorusGeometry\",this.parameters={radius:e,tube:t,radialSegments:n,tubularSegments:i,arc:s},n=Math.floor(n),i=Math.floor(i);const r=[],o=[],l=[],c=[],h=new I,u=new I,f=new I;for(let d=0;d<=n;d++)for(let p=0;p<=i;p++){const m=p/i*s,g=d/n*Math.PI*2;u.x=(e+t*Math.cos(g))*Math.cos(m),u.y=(e+t*Math.cos(g))*Math.sin(m),u.z=t*Math.sin(g),o.push(u.x,u.y,u.z),h.x=e*Math.cos(m),h.y=e*Math.sin(m),f.subVectors(u,h).normalize(),l.push(f.x,f.y,f.z),c.push(p/i),c.push(d/n)}for(let d=1;d<=n;d++)for(let p=1;p<=i;p++){const m=(i+1)*d+p-1,g=(i+1)*(d-1)+p-1,y=(i+1)*(d-1)+p,x=(i+1)*d+p;r.push(m,g,x),r.push(g,y,x)}this.setIndex(r),this.setAttribute(\"position\",new Ee(o,3)),this.setAttribute(\"normal\",new Ee(l,3)),this.setAttribute(\"uv\",new Ee(c,2))}static fromJSON(e){return new Dr(e.radius,e.tube,e.radialSegments,e.tubularSegments,e.arc)}}class Fr extends Xe{constructor(e=1,t=.4,n=64,i=8,s=2,r=3){super(),this.type=\"TorusKnotGeometry\",this.parameters={radius:e,tube:t,tubularSegments:n,radialSegments:i,p:s,q:r},n=Math.floor(n),i=Math.floor(i);const o=[],l=[],c=[],h=[],u=new I,f=new I,d=new I,p=new I,m=new I,g=new I,y=new I;for(let b=0;b<=n;++b){const v=b/n*s*Math.PI*2;x(v,s,r,e,d),x(v+.01,s,r,e,p),g.subVectors(p,d),y.addVectors(p,d),m.crossVectors(g,y),y.crossVectors(m,g),m.normalize(),y.normalize();for(let M=0;M<=i;++M){const T=M/i*Math.PI*2,C=-t*Math.cos(T),_=t*Math.sin(T);u.x=d.x+(C*y.x+_*m.x),u.y=d.y+(C*y.y+_*m.y),u.z=d.z+(C*y.z+_*m.z),l.push(u.x,u.y,u.z),f.subVectors(u,d).normalize(),c.push(f.x,f.y,f.z),h.push(b/n),h.push(M/i)}}for(let b=1;b<=n;b++)for(let v=1;v<=i;v++){const M=(i+1)*(b-1)+(v-1),T=(i+1)*b+(v-1),C=(i+1)*b+v,_=(i+1)*(b-1)+v;o.push(M,T,_),o.push(T,C,_)}this.setIndex(o),this.setAttribute(\"position\",new Ee(l,3)),this.setAttribute(\"normal\",new Ee(c,3)),this.setAttribute(\"uv\",new Ee(h,2));function x(b,v,M,T,C){const _=Math.cos(b),E=Math.sin(b),F=M/v*b,U=Math.cos(F);C.x=T*(2+U)*.5*_,C.y=T*(2+U)*E*.5,C.z=T*Math.sin(F)*.5}}static fromJSON(e){return new Fr(e.radius,e.tube,e.tubularSegments,e.radialSegments,e.p,e.q)}}class Nr extends Xe{constructor(e=new cu(new I(-1,-1,0),new I(-1,1,0),new I(1,1,0)),t=64,n=1,i=8,s=!1){super(),this.type=\"TubeGeometry\",this.parameters={path:e,tubularSegments:t,radius:n,radialSegments:i,closed:s};const r=e.computeFrenetFrames(t,s);this.tangents=r.tangents,this.normals=r.normals,this.binormals=r.binormals;const o=new I,l=new I,c=new he;let h=new I;const u=[],f=[],d=[],p=[];m(),this.setIndex(p),this.setAttribute(\"position\",new Ee(u,3)),this.setAttribute(\"normal\",new Ee(f,3)),this.setAttribute(\"uv\",new Ee(d,2));function m(){for(let b=0;b<t;b++)g(b);g(s===!1?t:0),x(),y()}function g(b){h=e.getPointAt(b/t,h);const v=r.normals[b],M=r.binormals[b];for(let T=0;T<=i;T++){const C=T/i*Math.PI*2,_=Math.sin(C),E=-Math.cos(C);l.x=E*v.x+_*M.x,l.y=E*v.y+_*M.y,l.z=E*v.z+_*M.z,l.normalize(),f.push(l.x,l.y,l.z),o.x=h.x+n*l.x,o.y=h.y+n*l.y,o.z=h.z+n*l.z,u.push(o.x,o.y,o.z)}}function y(){for(let b=1;b<=t;b++)for(let v=1;v<=i;v++){const M=(i+1)*(b-1)+(v-1),T=(i+1)*b+(v-1),C=(i+1)*b+v,_=(i+1)*(b-1)+v;p.push(M,T,_),p.push(T,C,_)}}function x(){for(let b=0;b<=t;b++)for(let v=0;v<=i;v++)c.x=b/t,c.y=v/i,d.push(c.x,c.y)}}toJSON(){const e=super.toJSON();return e.path=this.parameters.path.toJSON(),e}static fromJSON(e){return new Nr(new hu[e.path.type]().fromJSON(e.path),e.tubularSegments,e.radius,e.radialSegments,e.closed)}}class Wd extends Xe{constructor(e=null){if(super(),this.type=\"WireframeGeometry\",this.parameters={geometry:e},e!==null){const t=[],n=new Set,i=new I,s=new I;if(e.index!==null){const r=e.attributes.position,o=e.index;let l=e.groups;l.length===0&&(l=[{start:0,count:o.count,materialIndex:0}]);for(let c=0,h=l.length;c<h;++c){const u=l[c],f=u.start,d=u.count;for(let p=f,m=f+d;p<m;p+=3)for(let g=0;g<3;g++){const y=o.getX(p+g),x=o.getX(p+(g+1)%3);i.fromBufferAttribute(r,y),s.fromBufferAttribute(r,x),qd(i,s,n)===!0&&(t.push(i.x,i.y,i.z),t.push(s.x,s.y,s.z))}}}else{const r=e.attributes.position;for(let o=0,l=r.count/3;o<l;o++)for(let c=0;c<3;c++){const h=3*o+c,u=3*o+(c+1)%3;i.fromBufferAttribute(r,h),s.fromBufferAttribute(r,u),qd(i,s,n)===!0&&(t.push(i.x,i.y,i.z),t.push(s.x,s.y,s.z))}}this.setAttribute(\"position\",new Ee(t,3))}}}function qd(a,e,t){const n=`${a.x},${a.y},${a.z}-${e.x},${e.y},${e.z}`,i=`${e.x},${e.y},${e.z}-${a.x},${a.y},${a.z}`;return t.has(n)===!0||t.has(i)===!0?!1:(t.add(n),t.add(i),!0)}var Xd=Object.freeze({__proto__:null,BoxGeometry:vi,BoxBufferGeometry:vi,CapsuleGeometry:Mr,CapsuleBufferGeometry:Mr,CircleGeometry:Sr,CircleBufferGeometry:Sr,ConeGeometry:Tr,ConeBufferGeometry:Tr,CylinderGeometry:Zi,CylinderBufferGeometry:Zi,DodecahedronGeometry:Ar,DodecahedronBufferGeometry:Ar,EdgesGeometry:Od,ExtrudeGeometry:Cr,ExtrudeBufferGeometry:Cr,IcosahedronGeometry:Lr,IcosahedronBufferGeometry:Lr,LatheGeometry:Es,LatheBufferGeometry:Es,OctahedronGeometry:Ls,OctahedronBufferGeometry:Ls,PlaneGeometry:bs,PlaneBufferGeometry:bs,PolyhedronGeometry:ei,PolyhedronBufferGeometry:ei,RingGeometry:Rr,RingBufferGeometry:Rr,ShapeGeometry:Ir,ShapeBufferGeometry:Ir,SphereGeometry:Rs,SphereBufferGeometry:Rs,TetrahedronGeometry:Pr,TetrahedronBufferGeometry:Pr,TorusGeometry:Dr,TorusBufferGeometry:Dr,TorusKnotGeometry:Fr,TorusKnotBufferGeometry:Fr,TubeGeometry:Nr,TubeBufferGeometry:Nr,WireframeGeometry:Wd});class jd extends Gt{constructor(e){super(),this.isShadowMaterial=!0,this.type=\"ShadowMaterial\",this.color=new be(0),this.transparent=!0,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.fog=e.fog,this}}class Yd extends Qn{constructor(e){super(e),this.isRawShaderMaterial=!0,this.type=\"RawShaderMaterial\"}}class Is extends Gt{constructor(e){super(),this.isMeshStandardMaterial=!0,this.defines={STANDARD:\"\"},this.type=\"MeshStandardMaterial\",this.color=new be(16777215),this.roughness=1,this.metalness=0,this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new be(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ki,this.normalScale=new he(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.roughnessMap=null,this.metalnessMap=null,this.alphaMap=null,this.envMap=null,this.envMapIntensity=1,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.defines={STANDARD:\"\"},this.color.copy(e.color),this.roughness=e.roughness,this.metalness=e.metalness,this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.roughnessMap=e.roughnessMap,this.metalnessMap=e.metalnessMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.envMapIntensity=e.envMapIntensity,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.flatShading=e.flatShading,this.fog=e.fog,this}}class _i extends Is{constructor(e){super(),this.isMeshPhysicalMaterial=!0,this.defines={STANDARD:\"\",PHYSICAL:\"\"},this.type=\"MeshPhysicalMaterial\",this.clearcoatMap=null,this.clearcoatRoughness=0,this.clearcoatRoughnessMap=null,this.clearcoatNormalScale=new he(1,1),this.clearcoatNormalMap=null,this.ior=1.5,Object.defineProperty(this,\"reflectivity\",{get:function(){return Ut(2.5*(this.ior-1)/(this.ior+1),0,1)},set:function(t){this.ior=(1+.4*t)/(1-.4*t)}}),this.iridescenceMap=null,this.iridescenceIOR=1.3,this.iridescenceThicknessRange=[100,400],this.iridescenceThicknessMap=null,this.sheenColor=new be(0),this.sheenColorMap=null,this.sheenRoughness=1,this.sheenRoughnessMap=null,this.transmissionMap=null,this.thickness=0,this.thicknessMap=null,this.attenuationDistance=0,this.attenuationColor=new be(1,1,1),this.specularIntensity=1,this.specularIntensityMap=null,this.specularColor=new be(1,1,1),this.specularColorMap=null,this._sheen=0,this._clearcoat=0,this._iridescence=0,this._transmission=0,this.setValues(e)}get sheen(){return this._sheen}set sheen(e){this._sheen>0!=e>0&&this.version++,this._sheen=e}get clearcoat(){return this._clearcoat}set clearcoat(e){this._clearcoat>0!=e>0&&this.version++,this._clearcoat=e}get iridescence(){return this._iridescence}set iridescence(e){this._iridescence>0!=e>0&&this.version++,this._iridescence=e}get transmission(){return this._transmission}set transmission(e){this._transmission>0!=e>0&&this.version++,this._transmission=e}copy(e){return super.copy(e),this.defines={STANDARD:\"\",PHYSICAL:\"\"},this.clearcoat=e.clearcoat,this.clearcoatMap=e.clearcoatMap,this.clearcoatRoughness=e.clearcoatRoughness,this.clearcoatRoughnessMap=e.clearcoatRoughnessMap,this.clearcoatNormalMap=e.clearcoatNormalMap,this.clearcoatNormalScale.copy(e.clearcoatNormalScale),this.ior=e.ior,this.iridescence=e.iridescence,this.iridescenceMap=e.iridescenceMap,this.iridescenceIOR=e.iridescenceIOR,this.iridescenceThicknessRange=[...e.iridescenceThicknessRange],this.iridescenceThicknessMap=e.iridescenceThicknessMap,this.sheen=e.sheen,this.sheenColor.copy(e.sheenColor),this.sheenColorMap=e.sheenColorMap,this.sheenRoughness=e.sheenRoughness,this.sheenRoughnessMap=e.sheenRoughnessMap,this.transmission=e.transmission,this.transmissionMap=e.transmissionMap,this.thickness=e.thickness,this.thicknessMap=e.thicknessMap,this.attenuationDistance=e.attenuationDistance,this.attenuationColor.copy(e.attenuationColor),this.specularIntensity=e.specularIntensity,this.specularIntensityMap=e.specularIntensityMap,this.specularColor.copy(e.specularColor),this.specularColorMap=e.specularColorMap,this}}class ni extends Gt{constructor(e){super(),this.isMeshPhongMaterial=!0,this.type=\"MeshPhongMaterial\",this.color=new be(16777215),this.specular=new be(1118481),this.shininess=30,this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new be(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ki,this.normalScale=new he(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.combine=eo,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.specular.copy(e.specular),this.shininess=e.shininess,this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Zd extends Gt{constructor(e){super(),this.isMeshToonMaterial=!0,this.defines={TOON:\"\"},this.type=\"MeshToonMaterial\",this.color=new be(16777215),this.map=null,this.gradientMap=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new be(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ki,this.normalScale=new he(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.gradientMap=e.gradientMap,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.alphaMap=e.alphaMap,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}class Kd extends Gt{constructor(e){super(),this.isMeshNormalMaterial=!0,this.type=\"MeshNormalMaterial\",this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ki,this.normalScale=new he(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.flatShading=!1,this.setValues(e)}copy(e){return super.copy(e),this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.flatShading=e.flatShading,this}}class il extends Gt{constructor(e){super(),this.isMeshLambertMaterial=!0,this.type=\"MeshLambertMaterial\",this.color=new be(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new be(0),this.emissiveIntensity=1,this.emissiveMap=null,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.combine=eo,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap=\"round\",this.wireframeLinejoin=\"round\",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}class Jd extends Gt{constructor(e){super(),this.isMeshMatcapMaterial=!0,this.defines={MATCAP:\"\"},this.type=\"MeshMatcapMaterial\",this.color=new be(16777215),this.matcap=null,this.map=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=ki,this.normalScale=new he(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.defines={MATCAP:\"\"},this.color.copy(e.color),this.matcap=e.matcap,this.map=e.map,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.alphaMap=e.alphaMap,this.flatShading=e.flatShading,this.fog=e.fog,this}}class $d extends Vt{constructor(e){super(),this.isLineDashedMaterial=!0,this.type=\"LineDashedMaterial\",this.scale=1,this.dashSize=3,this.gapSize=1,this.setValues(e)}copy(e){return super.copy(e),this.scale=e.scale,this.dashSize=e.dashSize,this.gapSize=e.gapSize,this}}function Nn(a,e,t){return mu(a)?new a.constructor(a.subarray(e,t!==void 0?t:a.length)):a.slice(e,t)}function Ps(a,e,t){return!a||!t&&a.constructor===e?a:typeof e.BYTES_PER_ELEMENT==\"number\"?new e(a):Array.prototype.slice.call(a)}function mu(a){return ArrayBuffer.isView(a)&&!(a instanceof DataView)}function Qd(a){function e(i,s){return a[i]-a[s]}const t=a.length,n=new Array(t);for(let i=0;i!==t;++i)n[i]=i;return n.sort(e),n}function gu(a,e,t){const n=a.length,i=new a.constructor(n);for(let s=0,r=0;r!==n;++s){const o=t[s]*e;for(let l=0;l!==e;++l)i[r++]=a[o+l]}return i}function yu(a,e,t,n){let i=1,s=a[0];for(;s!==void 0&&s[n]===void 0;)s=a[i++];if(s===void 0)return;let r=s[n];if(r!==void 0)if(Array.isArray(r))do r=s[n],r!==void 0&&(e.push(s.time),t.push.apply(t,r)),s=a[i++];while(s!==void 0);else if(r.toArray!==void 0)do r=s[n],r!==void 0&&(e.push(s.time),r.toArray(t,t.length)),s=a[i++];while(s!==void 0);else do r=s[n],r!==void 0&&(e.push(s.time),t.push(r)),s=a[i++];while(s!==void 0)}function V_(a,e,t,n,i=30){const s=a.clone();s.name=e;const r=[];for(let l=0;l<s.tracks.length;++l){const c=s.tracks[l],h=c.getValueSize(),u=[],f=[];for(let d=0;d<c.times.length;++d){const p=c.times[d]*i;if(!(p<t||p>=n)){u.push(c.times[d]);for(let m=0;m<h;++m)f.push(c.values[d*h+m])}}u.length!==0&&(c.times=Ps(u,c.times.constructor),c.values=Ps(f,c.values.constructor),r.push(c))}s.tracks=r;let o=1/0;for(let l=0;l<s.tracks.length;++l)o>s.tracks[l].times[0]&&(o=s.tracks[l].times[0]);for(let l=0;l<s.tracks.length;++l)s.tracks[l].shift(-1*o);return s.resetDuration(),s}function H_(a,e=0,t=a,n=30){n<=0&&(n=30);const i=t.tracks.length,s=e/n;for(let r=0;r<i;++r){const o=t.tracks[r],l=o.ValueTypeName;if(l===\"bool\"||l===\"string\")continue;const c=a.tracks.find(function(y){return y.name===o.name&&y.ValueTypeName===l});if(c===void 0)continue;let h=0;const u=o.getValueSize();o.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline&&(h=u/3);let f=0;const d=c.getValueSize();c.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline&&(f=d/3);const p=o.times.length-1;let m;if(s<=o.times[0]){const y=h,x=u-h;m=Nn(o.values,y,x)}else if(s>=o.times[p]){const y=p*u+h,x=y+u-h;m=Nn(o.values,y,x)}else{const y=o.createInterpolant(),x=h,b=u-h;y.evaluate(s),m=Nn(y.resultBuffer,x,b)}l===\"quaternion\"&&new kt().fromArray(m).normalize().conjugate().toArray(m);const g=c.times.length;for(let y=0;y<g;++y){const x=y*d+f;if(l===\"quaternion\")kt.multiplyQuaternionsFlat(c.values,x,m,0,c.values,x);else{const b=d-f*2;for(let v=0;v<b;++v)c.values[x+v]-=m[v]}}}return a.blendMode=pc,a}var W_=Object.freeze({__proto__:null,arraySlice:Nn,convertArray:Ps,isTypedArray:mu,getKeyframeOrder:Qd,sortedArray:gu,flattenJSON:yu,subclip:V_,makeClipAdditive:H_});class kr{constructor(e,t,n,i){this.parameterPositions=e,this._cachedIndex=0,this.resultBuffer=i!==void 0?i:new t.constructor(n),this.sampleValues=t,this.valueSize=n,this.settings=null,this.DefaultSettings_={}}evaluate(e){const t=this.parameterPositions;let n=this._cachedIndex,i=t[n],s=t[n-1];e:{t:{let r;n:{i:if(!(e<i)){for(let o=n+2;;){if(i===void 0){if(e<s)break i;return n=t.length,this._cachedIndex=n,this.copySampleValue_(n-1)}if(n===o)break;if(s=i,i=t[++n],e<i)break t}r=t.length;break n}if(!(e>=s)){const o=t[1];e<o&&(n=2,s=o);for(let l=n-2;;){if(s===void 0)return this._cachedIndex=0,this.copySampleValue_(0);if(n===l)break;if(i=s,s=t[--n-1],e>=s)break t}r=n,n=0;break n}break e}for(;n<r;){const o=n+r>>>1;e<t[o]?r=o:n=o+1}if(i=t[n],s=t[n-1],s===void 0)return this._cachedIndex=0,this.copySampleValue_(0);if(i===void 0)return n=t.length,this._cachedIndex=n,this.copySampleValue_(n-1)}this._cachedIndex=n,this.intervalChanged_(n,s,i)}return this.interpolate_(n,s,e,i)}getSettings_(){return this.settings||this.DefaultSettings_}copySampleValue_(e){const t=this.resultBuffer,n=this.sampleValues,i=this.valueSize,s=e*i;for(let r=0;r!==i;++r)t[r]=n[s+r];return t}interpolate_(){throw new Error(\"call to abstract method\")}intervalChanged_(){}}class ep extends kr{constructor(e,t,n,i){super(e,t,n,i),this._weightPrev=-0,this._offsetPrev=-0,this._weightNext=-0,this._offsetNext=-0,this.DefaultSettings_={endingStart:ds,endingEnd:ds}}intervalChanged_(e,t,n){const i=this.parameterPositions;let s=e-2,r=e+1,o=i[s],l=i[r];if(o===void 0)switch(this.getSettings_().endingStart){case ps:s=e,o=2*t-n;break;case ao:s=i.length-2,o=t+i[s]-i[s+1];break;default:s=e,o=n}if(l===void 0)switch(this.getSettings_().endingEnd){case ps:r=e,l=2*n-t;break;case ao:r=1,l=n+i[1]-i[0];break;default:r=e-1,l=t}const c=(n-t)*.5,h=this.valueSize;this._weightPrev=c/(t-o),this._weightNext=c/(l-n),this._offsetPrev=s*h,this._offsetNext=r*h}interpolate_(e,t,n,i){const s=this.resultBuffer,r=this.sampleValues,o=this.valueSize,l=e*o,c=l-o,h=this._offsetPrev,u=this._offsetNext,f=this._weightPrev,d=this._weightNext,p=(n-t)/(i-t),m=p*p,g=m*p,y=-f*g+2*f*m-f*p,x=(1+f)*g+(-1.5-2*f)*m+(-.5+f)*p+1,b=(-1-d)*g+(1.5+d)*m+.5*p,v=d*g-d*m;for(let M=0;M!==o;++M)s[M]=y*r[h+M]+x*r[c+M]+b*r[l+M]+v*r[u+M];return s}}class xu extends kr{constructor(e,t,n,i){super(e,t,n,i)}interpolate_(e,t,n,i){const s=this.resultBuffer,r=this.sampleValues,o=this.valueSize,l=e*o,c=l-o,h=(n-t)/(i-t),u=1-h;for(let f=0;f!==o;++f)s[f]=r[c+f]*u+r[l+f]*h;return s}}class tp extends kr{constructor(e,t,n,i){super(e,t,n,i)}interpolate_(e){return this.copySampleValue_(e-1)}}class jn{constructor(e,t,n,i){if(e===void 0)throw new Error(\"THREE.KeyframeTrack: track name is undefined\");if(t===void 0||t.length===0)throw new Error(\"THREE.KeyframeTrack: no keyframes in track named \"+e);this.name=e,this.times=Ps(t,this.TimeBufferType),this.values=Ps(n,this.ValueBufferType),this.setInterpolation(i||this.DefaultInterpolation)}static toJSON(e){const t=e.constructor;let n;if(t.toJSON!==this.toJSON)n=t.toJSON(e);else{n={name:e.name,times:Ps(e.times,Array),values:Ps(e.values,Array)};const i=e.getInterpolation();i!==e.DefaultInterpolation&&(n.interpolation=i)}return n.type=e.ValueTypeName,n}InterpolantFactoryMethodDiscrete(e){return new tp(this.times,this.values,this.getValueSize(),e)}InterpolantFactoryMethodLinear(e){return new xu(this.times,this.values,this.getValueSize(),e)}InterpolantFactoryMethodSmooth(e){return new ep(this.times,this.values,this.getValueSize(),e)}setInterpolation(e){let t;switch(e){case Js:t=this.InterpolantFactoryMethodDiscrete;break;case fs:t=this.InterpolantFactoryMethodLinear;break;case ia:t=this.InterpolantFactoryMethodSmooth;break}if(t===void 0){const n=\"unsupported interpolation for \"+this.ValueTypeName+\" keyframe track named \"+this.name;if(this.createInterpolant===void 0)if(e!==this.DefaultInterpolation)this.setInterpolation(this.DefaultInterpolation);else throw new Error(n);return console.warn(\"THREE.KeyframeTrack:\",n),this}return this.createInterpolant=t,this}getInterpolation(){switch(this.createInterpolant){case this.InterpolantFactoryMethodDiscrete:return Js;case this.InterpolantFactoryMethodLinear:return fs;case this.InterpolantFactoryMethodSmooth:return ia}}getValueSize(){return this.values.length/this.times.length}shift(e){if(e!==0){const t=this.times;for(let n=0,i=t.length;n!==i;++n)t[n]+=e}return this}scale(e){if(e!==1){const t=this.times;for(let n=0,i=t.length;n!==i;++n)t[n]*=e}return this}trim(e,t){const n=this.times,i=n.length;let s=0,r=i-1;for(;s!==i&&n[s]<e;)++s;for(;r!==-1&&n[r]>t;)--r;if(++r,s!==0||r!==i){s>=r&&(r=Math.max(r,1),s=r-1);const o=this.getValueSize();this.times=Nn(n,s,r),this.values=Nn(this.values,s*o,r*o)}return this}validate(){let e=!0;const t=this.getValueSize();t-Math.floor(t)!==0&&(console.error(\"THREE.KeyframeTrack: Invalid value size in track.\",this),e=!1);const n=this.times,i=this.values,s=n.length;s===0&&(console.error(\"THREE.KeyframeTrack: Track is empty.\",this),e=!1);let r=null;for(let o=0;o!==s;o++){const l=n[o];if(typeof l==\"number\"&&isNaN(l)){console.error(\"THREE.KeyframeTrack: Time is not a valid number.\",this,o,l),e=!1;break}if(r!==null&&r>l){console.error(\"THREE.KeyframeTrack: Out of order keys.\",this,o,l,r),e=!1;break}r=l}if(i!==void 0&&mu(i))for(let o=0,l=i.length;o!==l;++o){const c=i[o];if(isNaN(c)){console.error(\"THREE.KeyframeTrack: Value is not a valid number.\",this,o,c),e=!1;break}}return e}optimize(){const e=Nn(this.times),t=Nn(this.values),n=this.getValueSize(),i=this.getInterpolation()===ia,s=e.length-1;let r=1;for(let o=1;o<s;++o){let l=!1;const c=e[o],h=e[o+1];if(c!==h&&(o!==1||c!==e[0]))if(i)l=!0;else{const u=o*n,f=u-n,d=u+n;for(let p=0;p!==n;++p){const m=t[u+p];if(m!==t[f+p]||m!==t[d+p]){l=!0;break}}}if(l){if(o!==r){e[r]=e[o];const u=o*n,f=r*n;for(let d=0;d!==n;++d)t[f+d]=t[u+d]}++r}}if(s>0){e[r]=e[s];for(let o=s*n,l=r*n,c=0;c!==n;++c)t[l+c]=t[o+c];++r}return r!==e.length?(this.times=Nn(e,0,r),this.values=Nn(t,0,r*n)):(this.times=e,this.values=t),this}clone(){const e=Nn(this.times,0),t=Nn(this.values,0),n=this.constructor,i=new n(this.name,e,t);return i.createInterpolant=this.createInterpolant,i}}jn.prototype.TimeBufferType=Float32Array,jn.prototype.ValueBufferType=Float32Array,jn.prototype.DefaultInterpolation=fs;class Ds extends jn{}Ds.prototype.ValueTypeName=\"bool\",Ds.prototype.ValueBufferType=Array,Ds.prototype.DefaultInterpolation=Js,Ds.prototype.InterpolantFactoryMethodLinear=void 0,Ds.prototype.InterpolantFactoryMethodSmooth=void 0;class vu extends jn{}vu.prototype.ValueTypeName=\"color\";class Fs extends jn{}Fs.prototype.ValueTypeName=\"number\";class np extends kr{constructor(e,t,n,i){super(e,t,n,i)}interpolate_(e,t,n,i){const s=this.resultBuffer,r=this.sampleValues,o=this.valueSize,l=(n-t)/(i-t);let c=e*o;for(let h=c+o;c!==h;c+=4)kt.slerpFlat(s,0,r,c-o,r,c,l);return s}}class ii extends jn{InterpolantFactoryMethodLinear(e){return new np(this.times,this.values,this.getValueSize(),e)}}ii.prototype.ValueTypeName=\"quaternion\",ii.prototype.DefaultInterpolation=fs,ii.prototype.InterpolantFactoryMethodSmooth=void 0;class Ns extends jn{}Ns.prototype.ValueTypeName=\"string\",Ns.prototype.ValueBufferType=Array,Ns.prototype.DefaultInterpolation=Js,Ns.prototype.InterpolantFactoryMethodLinear=void 0,Ns.prototype.InterpolantFactoryMethodSmooth=void 0;class bi extends jn{}bi.prototype.ValueTypeName=\"vector\";class wi{constructor(e,t=-1,n,i=sa){this.name=e,this.tracks=n,this.duration=t,this.blendMode=i,this.uuid=Sn(),this.duration<0&&this.resetDuration()}static parse(e){const t=[],n=e.tracks,i=1/(e.fps||1);for(let r=0,o=n.length;r!==o;++r)t.push(X_(n[r]).scale(i));const s=new this(e.name,e.duration,t,e.blendMode);return s.uuid=e.uuid,s}static toJSON(e){const t=[],n=e.tracks,i={name:e.name,duration:e.duration,tracks:t,uuid:e.uuid,blendMode:e.blendMode};for(let s=0,r=n.length;s!==r;++s)t.push(jn.toJSON(n[s]));return i}static CreateFromMorphTargetSequence(e,t,n,i){const s=t.length,r=[];for(let o=0;o<s;o++){let l=[],c=[];l.push((o+s-1)%s,o,(o+1)%s),c.push(0,1,0);const h=Qd(l);l=gu(l,1,h),c=gu(c,1,h),!i&&l[0]===0&&(l.push(s),c.push(c[0])),r.push(new Fs(\".morphTargetInfluences[\"+t[o].name+\"]\",l,c).scale(1/n))}return new this(e,-1,r)}static findByName(e,t){let n=e;if(!Array.isArray(e)){const i=e;n=i.geometry&&i.geometry.animations||i.animations}for(let i=0;i<n.length;i++)if(n[i].name===t)return n[i];return null}static CreateClipsFromMorphTargetSequences(e,t,n){const i={},s=/^([\\w-]*?)([\\d]+)$/;for(let o=0,l=e.length;o<l;o++){const c=e[o],h=c.name.match(s);if(h&&h.length>1){const u=h[1];let f=i[u];f||(i[u]=f=[]),f.push(c)}}const r=[];for(const o in i)r.push(this.CreateFromMorphTargetSequence(o,i[o],t,n));return r}static parseAnimation(e,t){if(!e)return console.error(\"THREE.AnimationClip: No animation in JSONLoader data.\"),null;const n=function(u,f,d,p,m){if(d.length!==0){const g=[],y=[];yu(d,g,y,p),g.length!==0&&m.push(new u(f,g,y))}},i=[],s=e.name||\"default\",r=e.fps||30,o=e.blendMode;let l=e.length||-1;const c=e.hierarchy||[];for(let u=0;u<c.length;u++){const f=c[u].keys;if(!(!f||f.length===0))if(f[0].morphTargets){const d={};let p;for(p=0;p<f.length;p++)if(f[p].morphTargets)for(let m=0;m<f[p].morphTargets.length;m++)d[f[p].morphTargets[m]]=-1;for(const m in d){const g=[],y=[];for(let x=0;x!==f[p].morphTargets.length;++x){const b=f[p];g.push(b.time),y.push(b.morphTarget===m?1:0)}i.push(new Fs(\".morphTargetInfluence[\"+m+\"]\",g,y))}l=d.length*r}else{const d=\".bones[\"+t[u].name+\"]\";n(bi,d+\".position\",f,\"pos\",i),n(ii,d+\".quaternion\",f,\"rot\",i),n(bi,d+\".scale\",f,\"scl\",i)}}return i.length===0?null:new this(s,l,i,o)}resetDuration(){const e=this.tracks;let t=0;for(let n=0,i=e.length;n!==i;++n){const s=this.tracks[n];t=Math.max(t,s.times[s.times.length-1])}return this.duration=t,this}trim(){for(let e=0;e<this.tracks.length;e++)this.tracks[e].trim(0,this.duration);return this}validate(){let e=!0;for(let t=0;t<this.tracks.length;t++)e=e&&this.tracks[t].validate();return e}optimize(){for(let e=0;e<this.tracks.length;e++)this.tracks[e].optimize();return this}clone(){const e=[];for(let t=0;t<this.tracks.length;t++)e.push(this.tracks[t].clone());return new this.constructor(this.name,this.duration,e,this.blendMode)}toJSON(){return this.constructor.toJSON(this)}}function q_(a){switch(a.toLowerCase()){case\"scalar\":case\"double\":case\"float\":case\"number\":case\"integer\":return Fs;case\"vector\":case\"vector2\":case\"vector3\":case\"vector4\":return bi;case\"color\":return vu;case\"quaternion\":return ii;case\"bool\":case\"boolean\":return Ds;case\"string\":return Ns}throw new Error(\"THREE.KeyframeTrack: Unsupported typeName: \"+a)}function X_(a){if(a.type===void 0)throw new Error(\"THREE.KeyframeTrack: track type undefined, can not parse\");const e=q_(a.type);if(a.times===void 0){const t=[],n=[];yu(a.keys,t,n,\"value\"),a.times=t,a.values=n}return e.parse!==void 0?e.parse(a):new e(a.name,a.times,a.values,a.interpolation)}const ks={enabled:!1,files:{},add:function(a,e){this.enabled!==!1&&(this.files[a]=e)},get:function(a){if(this.enabled!==!1)return this.files[a]},remove:function(a){delete this.files[a]},clear:function(){this.files={}}};class _u{constructor(e,t,n){const i=this;let s=!1,r=0,o=0,l;const c=[];this.onStart=void 0,this.onLoad=e,this.onProgress=t,this.onError=n,this.itemStart=function(h){o++,s===!1&&i.onStart!==void 0&&i.onStart(h,r,o),s=!0},this.itemEnd=function(h){r++,i.onProgress!==void 0&&i.onProgress(h,r,o),r===o&&(s=!1,i.onLoad!==void 0&&i.onLoad())},this.itemError=function(h){i.onError!==void 0&&i.onError(h)},this.resolveURL=function(h){return l?l(h):h},this.setURLModifier=function(h){return l=h,this},this.addHandler=function(h,u){return c.push(h,u),this},this.removeHandler=function(h){const u=c.indexOf(h);return u!==-1&&c.splice(u,2),this},this.getHandler=function(h){for(let u=0,f=c.length;u<f;u+=2){const d=c[u],p=c[u+1];if(d.global&&(d.lastIndex=0),d.test(h))return p}return null}}}const bu=new _u;class Ht{constructor(e){this.manager=e!==void 0?e:bu,this.crossOrigin=\"anonymous\",this.withCredentials=!1,this.path=\"\",this.resourcePath=\"\",this.requestHeader={}}load(){}loadAsync(e,t){const n=this;return new Promise(function(i,s){n.load(e,i,t,s)})}parse(){}setCrossOrigin(e){return this.crossOrigin=e,this}setWithCredentials(e){return this.withCredentials=e,this}setPath(e){return this.path=e,this}setResourcePath(e){return this.resourcePath=e,this}setRequestHeader(e){return this.requestHeader=e,this}}const Mi={};class j_ extends Error{constructor(e,t){super(e),this.response=t}}class Jt extends Ht{constructor(e){super(e)}load(e,t,n,i){e===void 0&&(e=\"\"),this.path!==void 0&&(e=this.path+e),e=this.manager.resolveURL(e);const s=ks.get(e);if(s!==void 0)return this.manager.itemStart(e),setTimeout(()=>{t&&t(s),this.manager.itemEnd(e)},0),s;if(Mi[e]!==void 0){Mi[e].push({onLoad:t,onProgress:n,onError:i});return}Mi[e]=[],Mi[e].push({onLoad:t,onProgress:n,onError:i});const r=new Request(e,{headers:new Headers(this.requestHeader),credentials:this.withCredentials?\"include\":\"same-origin\"}),o=this.mimeType,l=this.responseType;fetch(r).then(c=>{if(c.status===200||c.status===0){if(c.status===0&&console.warn(\"THREE.FileLoader: HTTP Status 0 received.\"),typeof ReadableStream==\"undefined\"||c.body===void 0||c.body.getReader===void 0)return c;const h=Mi[e],u=c.body.getReader(),f=c.headers.get(\"Content-Length\"),d=f?parseInt(f):0,p=d!==0;let m=0;const g=new ReadableStream({start(y){x();function x(){u.read().then(({done:b,value:v})=>{if(b)y.close();else{m+=v.byteLength;const M=new ProgressEvent(\"progress\",{lengthComputable:p,loaded:m,total:d});for(let T=0,C=h.length;T<C;T++){const _=h[T];_.onProgress&&_.onProgress(M)}y.enqueue(v),x()}})}}});return new Response(g)}else throw new j_(`fetch for \"${c.url}\" responded with ${c.status}: ${c.statusText}`,c)}).then(c=>{switch(l){case\"arraybuffer\":return c.arrayBuffer();case\"blob\":return c.blob();case\"document\":return c.text().then(h=>new DOMParser().parseFromString(h,o));case\"json\":return c.json();default:if(o===void 0)return c.text();{const u=/charset=\"?([^;\"\\s]*)\"?/i.exec(o),f=u&&u[1]?u[1].toLowerCase():void 0,d=new TextDecoder(f);return c.arrayBuffer().then(p=>d.decode(p))}}}).then(c=>{ks.add(e,c);const h=Mi[e];delete Mi[e];for(let u=0,f=h.length;u<f;u++){const d=h[u];d.onLoad&&d.onLoad(c)}}).catch(c=>{const h=Mi[e];if(h===void 0)throw this.manager.itemError(e),c;delete Mi[e];for(let u=0,f=h.length;u<f;u++){const d=h[u];d.onError&&d.onError(c)}this.manager.itemError(e)}).finally(()=>{this.manager.itemEnd(e)}),this.manager.itemStart(e)}setResponseType(e){return this.responseType=e,this}setMimeType(e){return this.mimeType=e,this}}class Y_ extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new Jt(this.manager);r.setPath(this.path),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{t(s.parse(JSON.parse(o)))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}parse(e){const t=[];for(let n=0;n<e.length;n++){const i=wi.parse(e[n]);t.push(i)}return t}}class ip extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=[],o=new Rd,l=new Jt(this.manager);l.setPath(this.path),l.setResponseType(\"arraybuffer\"),l.setRequestHeader(this.requestHeader),l.setWithCredentials(s.withCredentials);let c=0;function h(u){l.load(e[u],function(f){const d=s.parse(f,!0);r[u]={width:d.width,height:d.height,format:d.format,mipmaps:d.mipmaps},c+=1,c===6&&(d.mipmapCount===1&&(o.minFilter=Pt),o.image=r,o.format=d.format,o.needsUpdate=!0,t&&t(o))},n,i)}if(Array.isArray(e))for(let u=0,f=e.length;u<f;++u)h(u);else l.load(e,function(u){const f=s.parse(u,!0);if(f.isCubemap){const d=f.mipmaps.length/f.mipmapCount;for(let p=0;p<d;p++){r[p]={mipmaps:[]};for(let m=0;m<f.mipmapCount;m++)r[p].mipmaps.push(f.mipmaps[p*f.mipmapCount+m]),r[p].format=f.format,r[p].width=f.width,r[p].height=f.height}o.image=r}else o.image.width=f.width,o.image.height=f.height,o.mipmaps=f.mipmaps;f.mipmapCount===1&&(o.minFilter=Pt),o.format=f.format,o.needsUpdate=!0,t&&t(o)},n,i);return o}}class Do extends Ht{constructor(e){super(e)}load(e,t,n,i){this.path!==void 0&&(e=this.path+e),e=this.manager.resolveURL(e);const s=this,r=ks.get(e);if(r!==void 0)return s.manager.itemStart(e),setTimeout(function(){t&&t(r),s.manager.itemEnd(e)},0),r;const o=ho(\"img\");function l(){h(),ks.add(e,this),t&&t(this),s.manager.itemEnd(e)}function c(u){h(),i&&i(u),s.manager.itemError(e),s.manager.itemEnd(e)}function h(){o.removeEventListener(\"load\",l,!1),o.removeEventListener(\"error\",c,!1)}return o.addEventListener(\"load\",l,!1),o.addEventListener(\"error\",c,!1),e.slice(0,5)!==\"data:\"&&this.crossOrigin!==void 0&&(o.crossOrigin=this.crossOrigin),s.manager.itemStart(e),o.src=e,o}}class Z_ extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=new xo,r=new Do(this.manager);r.setCrossOrigin(this.crossOrigin),r.setPath(this.path);let o=0;function l(c){r.load(e[c],function(h){s.images[c]=h,o++,o===6&&(s.needsUpdate=!0,t&&t(s))},void 0,i)}for(let c=0;c<e.length;++c)l(c);return s}}class sp extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new _r,o=new Jt(this.manager);return o.setResponseType(\"arraybuffer\"),o.setRequestHeader(this.requestHeader),o.setPath(this.path),o.setWithCredentials(s.withCredentials),o.load(e,function(l){const c=s.parse(l);!c||(c.image!==void 0?r.image=c.image:c.data!==void 0&&(r.image.width=c.width,r.image.height=c.height,r.image.data=c.data),r.wrapS=c.wrapS!==void 0?c.wrapS:jt,r.wrapT=c.wrapT!==void 0?c.wrapT:jt,r.magFilter=c.magFilter!==void 0?c.magFilter:Pt,r.minFilter=c.minFilter!==void 0?c.minFilter:Pt,r.anisotropy=c.anisotropy!==void 0?c.anisotropy:1,c.encoding!==void 0&&(r.encoding=c.encoding),c.flipY!==void 0&&(r.flipY=c.flipY),c.format!==void 0&&(r.format=c.format),c.type!==void 0&&(r.type=c.type),c.mipmaps!==void 0&&(r.mipmaps=c.mipmaps,r.minFilter=Kn),c.mipmapCount===1&&(r.minFilter=Pt),c.generateMipmaps!==void 0&&(r.generateMipmaps=c.generateMipmaps),r.needsUpdate=!0,t&&t(r,c))},n,i),r}}class Os extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=new Lt,r=new Do(this.manager);return r.setCrossOrigin(this.crossOrigin),r.setPath(this.path),r.load(e,function(o){s.image=o,s.needsUpdate=!0,t!==void 0&&t(s)},n,i),s}}class Ji extends dt{constructor(e,t=1){super(),this.isLight=!0,this.type=\"Light\",this.color=new be(e),this.intensity=t}dispose(){}copy(e,t){return super.copy(e,t),this.color.copy(e.color),this.intensity=e.intensity,this}toJSON(e){const t=super.toJSON(e);return t.object.color=this.color.getHex(),t.object.intensity=this.intensity,this.groundColor!==void 0&&(t.object.groundColor=this.groundColor.getHex()),this.distance!==void 0&&(t.object.distance=this.distance),this.angle!==void 0&&(t.object.angle=this.angle),this.decay!==void 0&&(t.object.decay=this.decay),this.penumbra!==void 0&&(t.object.penumbra=this.penumbra),this.shadow!==void 0&&(t.object.shadow=this.shadow.toJSON()),t}}class wu extends Ji{constructor(e,t,n){super(e,n),this.isHemisphereLight=!0,this.type=\"HemisphereLight\",this.position.copy(dt.DefaultUp),this.updateMatrix(),this.groundColor=new be(t)}copy(e,t){return super.copy(e,t),this.groundColor.copy(e.groundColor),this}}const rp=new Ne,op=new I,ap=new I;class Mu{constructor(e){this.camera=e,this.bias=0,this.normalBias=0,this.radius=1,this.blurSamples=8,this.mapSize=new he(512,512),this.map=null,this.mapPass=null,this.matrix=new Ne,this.autoUpdate=!0,this.needsUpdate=!1,this._frustum=new Pa,this._frameExtents=new he(1,1),this._viewportCount=1,this._viewports=[new ft(0,0,1,1)]}getViewportCount(){return this._viewportCount}getFrustum(){return this._frustum}updateMatrices(e){const t=this.camera,n=this.matrix;op.setFromMatrixPosition(e.matrixWorld),t.position.copy(op),ap.setFromMatrixPosition(e.target.matrixWorld),t.lookAt(ap),t.updateMatrixWorld(),rp.multiplyMatrices(t.projectionMatrix,t.matrixWorldInverse),this._frustum.setFromProjectionMatrix(rp),n.set(.5,0,0,.5,0,.5,0,.5,0,0,.5,.5,0,0,0,1),n.multiply(t.projectionMatrix),n.multiply(t.matrixWorldInverse)}getViewport(e){return this._viewports[e]}getFrameExtents(){return this._frameExtents}dispose(){this.map&&this.map.dispose(),this.mapPass&&this.mapPass.dispose()}copy(e){return this.camera=e.camera.clone(),this.bias=e.bias,this.radius=e.radius,this.mapSize.copy(e.mapSize),this}clone(){return new this.constructor().copy(this)}toJSON(){const e={};return this.bias!==0&&(e.bias=this.bias),this.normalBias!==0&&(e.normalBias=this.normalBias),this.radius!==1&&(e.radius=this.radius),(this.mapSize.x!==512||this.mapSize.y!==512)&&(e.mapSize=this.mapSize.toArray()),e.camera=this.camera.toJSON(!1).object,delete e.camera.matrix,e}}class K_ extends Mu{constructor(){super(new Ot(50,1,.5,500)),this.isSpotLightShadow=!0,this.focus=1}updateMatrices(e){const t=this.camera,n=co*2*e.angle*this.focus,i=this.mapSize.width/this.mapSize.height,s=e.distance||t.far;(n!==t.fov||i!==t.aspect||s!==t.far)&&(t.fov=n,t.aspect=i,t.far=s,t.updateProjectionMatrix()),super.updateMatrices(e)}copy(e){return super.copy(e),this.focus=e.focus,this}}class Fo extends Ji{constructor(e,t,n=0,i=Math.PI/3,s=0,r=1){super(e,t),this.isSpotLight=!0,this.type=\"SpotLight\",this.position.copy(dt.DefaultUp),this.updateMatrix(),this.target=new dt,this.distance=n,this.angle=i,this.penumbra=s,this.decay=r,this.shadow=new K_}get power(){return this.intensity*Math.PI}set power(e){this.intensity=e/Math.PI}dispose(){this.shadow.dispose()}copy(e,t){return super.copy(e,t),this.distance=e.distance,this.angle=e.angle,this.penumbra=e.penumbra,this.decay=e.decay,this.target=e.target.clone(),this.shadow=e.shadow.clone(),this}}const lp=new Ne,No=new I,Su=new I;class J_ extends Mu{constructor(){super(new Ot(90,1,.5,500)),this.isPointLightShadow=!0,this._frameExtents=new he(4,2),this._viewportCount=6,this._viewports=[new ft(2,1,1,1),new ft(0,1,1,1),new ft(3,1,1,1),new ft(1,1,1,1),new ft(3,0,1,1),new ft(1,0,1,1)],this._cubeDirections=[new I(1,0,0),new I(-1,0,0),new I(0,0,1),new I(0,0,-1),new I(0,1,0),new I(0,-1,0)],this._cubeUps=[new I(0,1,0),new I(0,1,0),new I(0,1,0),new I(0,1,0),new I(0,0,1),new I(0,0,-1)]}updateMatrices(e,t=0){const n=this.camera,i=this.matrix,s=e.distance||n.far;s!==n.far&&(n.far=s,n.updateProjectionMatrix()),No.setFromMatrixPosition(e.matrixWorld),n.position.copy(No),Su.copy(n.position),Su.add(this._cubeDirections[t]),n.up.copy(this._cubeUps[t]),n.lookAt(Su),n.updateMatrixWorld(),i.makeTranslation(-No.x,-No.y,-No.z),lp.multiplyMatrices(n.projectionMatrix,n.matrixWorldInverse),this._frustum.setFromProjectionMatrix(lp)}}class $i extends Ji{constructor(e,t,n=0,i=1){super(e,t),this.isPointLight=!0,this.type=\"PointLight\",this.distance=n,this.decay=i,this.shadow=new J_}get power(){return this.intensity*4*Math.PI}set power(e){this.intensity=e/(4*Math.PI)}dispose(){this.shadow.dispose()}copy(e,t){return super.copy(e,t),this.distance=e.distance,this.decay=e.decay,this.shadow=e.shadow.clone(),this}}class $_ extends Mu{constructor(){super(new ws(-5,5,5,-5,.5,500)),this.isDirectionalLightShadow=!0}}class Or extends Ji{constructor(e,t){super(e,t),this.isDirectionalLight=!0,this.type=\"DirectionalLight\",this.position.copy(dt.DefaultUp),this.updateMatrix(),this.target=new dt,this.shadow=new $_}dispose(){this.shadow.dispose()}copy(e){return super.copy(e),this.target=e.target.clone(),this.shadow=e.shadow.clone(),this}}class ko extends Ji{constructor(e,t){super(e,t),this.isAmbientLight=!0,this.type=\"AmbientLight\"}}class cp extends Ji{constructor(e,t,n=10,i=10){super(e,t),this.isRectAreaLight=!0,this.type=\"RectAreaLight\",this.width=n,this.height=i}get power(){return this.intensity*this.width*this.height*Math.PI}set power(e){this.intensity=e/(this.width*this.height*Math.PI)}copy(e){return super.copy(e),this.width=e.width,this.height=e.height,this}toJSON(e){const t=super.toJSON(e);return t.object.width=this.width,t.object.height=this.height,t}}class up{constructor(){this.isSphericalHarmonics3=!0,this.coefficients=[];for(let e=0;e<9;e++)this.coefficients.push(new I)}set(e){for(let t=0;t<9;t++)this.coefficients[t].copy(e[t]);return this}zero(){for(let e=0;e<9;e++)this.coefficients[e].set(0,0,0);return this}getAt(e,t){const n=e.x,i=e.y,s=e.z,r=this.coefficients;return t.copy(r[0]).multiplyScalar(.282095),t.addScaledVector(r[1],.488603*i),t.addScaledVector(r[2],.488603*s),t.addScaledVector(r[3],.488603*n),t.addScaledVector(r[4],1.092548*(n*i)),t.addScaledVector(r[5],1.092548*(i*s)),t.addScaledVector(r[6],.315392*(3*s*s-1)),t.addScaledVector(r[7],1.092548*(n*s)),t.addScaledVector(r[8],.546274*(n*n-i*i)),t}getIrradianceAt(e,t){const n=e.x,i=e.y,s=e.z,r=this.coefficients;return t.copy(r[0]).multiplyScalar(.886227),t.addScaledVector(r[1],1.023328*i),t.addScaledVector(r[2],1.023328*s),t.addScaledVector(r[3],1.023328*n),t.addScaledVector(r[4],.858086*n*i),t.addScaledVector(r[5],.858086*i*s),t.addScaledVector(r[6],.743125*s*s-.247708),t.addScaledVector(r[7],.858086*n*s),t.addScaledVector(r[8],.429043*(n*n-i*i)),t}add(e){for(let t=0;t<9;t++)this.coefficients[t].add(e.coefficients[t]);return this}addScaledSH(e,t){for(let n=0;n<9;n++)this.coefficients[n].addScaledVector(e.coefficients[n],t);return this}scale(e){for(let t=0;t<9;t++)this.coefficients[t].multiplyScalar(e);return this}lerp(e,t){for(let n=0;n<9;n++)this.coefficients[n].lerp(e.coefficients[n],t);return this}equals(e){for(let t=0;t<9;t++)if(!this.coefficients[t].equals(e.coefficients[t]))return!1;return!0}copy(e){return this.set(e.coefficients)}clone(){return new this.constructor().copy(this)}fromArray(e,t=0){const n=this.coefficients;for(let i=0;i<9;i++)n[i].fromArray(e,t+i*3);return this}toArray(e=[],t=0){const n=this.coefficients;for(let i=0;i<9;i++)n[i].toArray(e,t+i*3);return e}static getBasisAt(e,t){const n=e.x,i=e.y,s=e.z;t[0]=.282095,t[1]=.488603*i,t[2]=.488603*s,t[3]=.488603*n,t[4]=1.092548*n*i,t[5]=1.092548*i*s,t[6]=.315392*(3*s*s-1),t[7]=1.092548*n*s,t[8]=.546274*(n*n-i*i)}}class sl extends Ji{constructor(e=new up,t=1){super(void 0,t),this.isLightProbe=!0,this.sh=e}copy(e){return super.copy(e),this.sh.copy(e.sh),this}fromJSON(e){return this.intensity=e.intensity,this.sh.fromArray(e.sh),this}toJSON(e){const t=super.toJSON(e);return t.object.sh=this.sh.toArray(),t}}class rl extends Ht{constructor(e){super(e),this.textures={}}load(e,t,n,i){const s=this,r=new Jt(s.manager);r.setPath(s.path),r.setRequestHeader(s.requestHeader),r.setWithCredentials(s.withCredentials),r.load(e,function(o){try{t(s.parse(JSON.parse(o)))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}parse(e){const t=this.textures;function n(s){return t[s]===void 0&&console.warn(\"THREE.MaterialLoader: Undefined texture\",s),t[s]}const i=rl.createMaterialFromType(e.type);if(e.uuid!==void 0&&(i.uuid=e.uuid),e.name!==void 0&&(i.name=e.name),e.color!==void 0&&i.color!==void 0&&i.color.setHex(e.color),e.roughness!==void 0&&(i.roughness=e.roughness),e.metalness!==void 0&&(i.metalness=e.metalness),e.sheen!==void 0&&(i.sheen=e.sheen),e.sheenColor!==void 0&&(i.sheenColor=new be().setHex(e.sheenColor)),e.sheenRoughness!==void 0&&(i.sheenRoughness=e.sheenRoughness),e.emissive!==void 0&&i.emissive!==void 0&&i.emissive.setHex(e.emissive),e.specular!==void 0&&i.specular!==void 0&&i.specular.setHex(e.specular),e.specularIntensity!==void 0&&(i.specularIntensity=e.specularIntensity),e.specularColor!==void 0&&i.specularColor!==void 0&&i.specularColor.setHex(e.specularColor),e.shininess!==void 0&&(i.shininess=e.shininess),e.clearcoat!==void 0&&(i.clearcoat=e.clearcoat),e.clearcoatRoughness!==void 0&&(i.clearcoatRoughness=e.clearcoatRoughness),e.iridescence!==void 0&&(i.iridescence=e.iridescence),e.iridescenceIOR!==void 0&&(i.iridescenceIOR=e.iridescenceIOR),e.iridescenceThicknessRange!==void 0&&(i.iridescenceThicknessRange=e.iridescenceThicknessRange),e.transmission!==void 0&&(i.transmission=e.transmission),e.thickness!==void 0&&(i.thickness=e.thickness),e.attenuationDistance!==void 0&&(i.attenuationDistance=e.attenuationDistance),e.attenuationColor!==void 0&&i.attenuationColor!==void 0&&i.attenuationColor.setHex(e.attenuationColor),e.fog!==void 0&&(i.fog=e.fog),e.flatShading!==void 0&&(i.flatShading=e.flatShading),e.blending!==void 0&&(i.blending=e.blending),e.combine!==void 0&&(i.combine=e.combine),e.side!==void 0&&(i.side=e.side),e.shadowSide!==void 0&&(i.shadowSide=e.shadowSide),e.opacity!==void 0&&(i.opacity=e.opacity),e.transparent!==void 0&&(i.transparent=e.transparent),e.alphaTest!==void 0&&(i.alphaTest=e.alphaTest),e.depthTest!==void 0&&(i.depthTest=e.depthTest),e.depthWrite!==void 0&&(i.depthWrite=e.depthWrite),e.colorWrite!==void 0&&(i.colorWrite=e.colorWrite),e.stencilWrite!==void 0&&(i.stencilWrite=e.stencilWrite),e.stencilWriteMask!==void 0&&(i.stencilWriteMask=e.stencilWriteMask),e.stencilFunc!==void 0&&(i.stencilFunc=e.stencilFunc),e.stencilRef!==void 0&&(i.stencilRef=e.stencilRef),e.stencilFuncMask!==void 0&&(i.stencilFuncMask=e.stencilFuncMask),e.stencilFail!==void 0&&(i.stencilFail=e.stencilFail),e.stencilZFail!==void 0&&(i.stencilZFail=e.stencilZFail),e.stencilZPass!==void 0&&(i.stencilZPass=e.stencilZPass),e.wireframe!==void 0&&(i.wireframe=e.wireframe),e.wireframeLinewidth!==void 0&&(i.wireframeLinewidth=e.wireframeLinewidth),e.wireframeLinecap!==void 0&&(i.wireframeLinecap=e.wireframeLinecap),e.wireframeLinejoin!==void 0&&(i.wireframeLinejoin=e.wireframeLinejoin),e.rotation!==void 0&&(i.rotation=e.rotation),e.linewidth!==1&&(i.linewidth=e.linewidth),e.dashSize!==void 0&&(i.dashSize=e.dashSize),e.gapSize!==void 0&&(i.gapSize=e.gapSize),e.scale!==void 0&&(i.scale=e.scale),e.polygonOffset!==void 0&&(i.polygonOffset=e.polygonOffset),e.polygonOffsetFactor!==void 0&&(i.polygonOffsetFactor=e.polygonOffsetFactor),e.polygonOffsetUnits!==void 0&&(i.polygonOffsetUnits=e.polygonOffsetUnits),e.dithering!==void 0&&(i.dithering=e.dithering),e.alphaToCoverage!==void 0&&(i.alphaToCoverage=e.alphaToCoverage),e.premultipliedAlpha!==void 0&&(i.premultipliedAlpha=e.premultipliedAlpha),e.visible!==void 0&&(i.visible=e.visible),e.toneMapped!==void 0&&(i.toneMapped=e.toneMapped),e.userData!==void 0&&(i.userData=e.userData),e.vertexColors!==void 0&&(typeof e.vertexColors==\"number\"?i.vertexColors=e.vertexColors>0:i.vertexColors=e.vertexColors),e.uniforms!==void 0)for(const s in e.uniforms){const r=e.uniforms[s];switch(i.uniforms[s]={},r.type){case\"t\":i.uniforms[s].value=n(r.value);break;case\"c\":i.uniforms[s].value=new be().setHex(r.value);break;case\"v2\":i.uniforms[s].value=new he().fromArray(r.value);break;case\"v3\":i.uniforms[s].value=new I().fromArray(r.value);break;case\"v4\":i.uniforms[s].value=new ft().fromArray(r.value);break;case\"m3\":i.uniforms[s].value=new un().fromArray(r.value);break;case\"m4\":i.uniforms[s].value=new Ne().fromArray(r.value);break;default:i.uniforms[s].value=r.value}}if(e.defines!==void 0&&(i.defines=e.defines),e.vertexShader!==void 0&&(i.vertexShader=e.vertexShader),e.fragmentShader!==void 0&&(i.fragmentShader=e.fragmentShader),e.extensions!==void 0)for(const s in e.extensions)i.extensions[s]=e.extensions[s];if(e.shading!==void 0&&(i.flatShading=e.shading===1),e.size!==void 0&&(i.size=e.size),e.sizeAttenuation!==void 0&&(i.sizeAttenuation=e.sizeAttenuation),e.map!==void 0&&(i.map=n(e.map)),e.matcap!==void 0&&(i.matcap=n(e.matcap)),e.alphaMap!==void 0&&(i.alphaMap=n(e.alphaMap)),e.bumpMap!==void 0&&(i.bumpMap=n(e.bumpMap)),e.bumpScale!==void 0&&(i.bumpScale=e.bumpScale),e.normalMap!==void 0&&(i.normalMap=n(e.normalMap)),e.normalMapType!==void 0&&(i.normalMapType=e.normalMapType),e.normalScale!==void 0){let s=e.normalScale;Array.isArray(s)===!1&&(s=[s,s]),i.normalScale=new he().fromArray(s)}return e.displacementMap!==void 0&&(i.displacementMap=n(e.displacementMap)),e.displacementScale!==void 0&&(i.displacementScale=e.displacementScale),e.displacementBias!==void 0&&(i.displacementBias=e.displacementBias),e.roughnessMap!==void 0&&(i.roughnessMap=n(e.roughnessMap)),e.metalnessMap!==void 0&&(i.metalnessMap=n(e.metalnessMap)),e.emissiveMap!==void 0&&(i.emissiveMap=n(e.emissiveMap)),e.emissiveIntensity!==void 0&&(i.emissiveIntensity=e.emissiveIntensity),e.specularMap!==void 0&&(i.specularMap=n(e.specularMap)),e.specularIntensityMap!==void 0&&(i.specularIntensityMap=n(e.specularIntensityMap)),e.specularColorMap!==void 0&&(i.specularColorMap=n(e.specularColorMap)),e.envMap!==void 0&&(i.envMap=n(e.envMap)),e.envMapIntensity!==void 0&&(i.envMapIntensity=e.envMapIntensity),e.reflectivity!==void 0&&(i.reflectivity=e.reflectivity),e.refractionRatio!==void 0&&(i.refractionRatio=e.refractionRatio),e.lightMap!==void 0&&(i.lightMap=n(e.lightMap)),e.lightMapIntensity!==void 0&&(i.lightMapIntensity=e.lightMapIntensity),e.aoMap!==void 0&&(i.aoMap=n(e.aoMap)),e.aoMapIntensity!==void 0&&(i.aoMapIntensity=e.aoMapIntensity),e.gradientMap!==void 0&&(i.gradientMap=n(e.gradientMap)),e.clearcoatMap!==void 0&&(i.clearcoatMap=n(e.clearcoatMap)),e.clearcoatRoughnessMap!==void 0&&(i.clearcoatRoughnessMap=n(e.clearcoatRoughnessMap)),e.clearcoatNormalMap!==void 0&&(i.clearcoatNormalMap=n(e.clearcoatNormalMap)),e.clearcoatNormalScale!==void 0&&(i.clearcoatNormalScale=new he().fromArray(e.clearcoatNormalScale)),e.iridescenceMap!==void 0&&(i.iridescenceMap=n(e.iridescenceMap)),e.iridescenceThicknessMap!==void 0&&(i.iridescenceThicknessMap=n(e.iridescenceThicknessMap)),e.transmissionMap!==void 0&&(i.transmissionMap=n(e.transmissionMap)),e.thicknessMap!==void 0&&(i.thicknessMap=n(e.thicknessMap)),e.sheenColorMap!==void 0&&(i.sheenColorMap=n(e.sheenColorMap)),e.sheenRoughnessMap!==void 0&&(i.sheenRoughnessMap=n(e.sheenRoughnessMap)),i}setTextures(e){return this.textures=e,this}static createMaterialFromType(e){const t={ShadowMaterial:jd,SpriteMaterial:za,RawShaderMaterial:Yd,ShaderMaterial:Qn,PointsMaterial:Yi,MeshPhysicalMaterial:_i,MeshStandardMaterial:Is,MeshPhongMaterial:ni,MeshToonMaterial:Zd,MeshNormalMaterial:Kd,MeshLambertMaterial:il,MeshDepthMaterial:Zc,MeshDistanceMaterial:Kc,MeshBasicMaterial:on,MeshMatcapMaterial:Jd,LineDashedMaterial:$d,LineBasicMaterial:Vt,Material:Gt};return new t[e]}}class sn{static decodeText(e){if(typeof TextDecoder!=\"undefined\")return new TextDecoder().decode(e);let t=\"\";for(let n=0,i=e.length;n<i;n++)t+=String.fromCharCode(e[n]);try{return decodeURIComponent(escape(t))}catch{return t}}static extractUrlBase(e){const t=e.lastIndexOf(\"/\");return t===-1?\"./\":e.slice(0,t+1)}static resolveURL(e,t){return typeof e!=\"string\"||e===\"\"?\"\":(/^https?:\\/\\//i.test(t)&&/^\\//.test(e)&&(t=t.replace(/(^https?:\\/\\/[^\\/]+).*/i,\"$1\")),/^(https?:)?\\/\\//i.test(e)||/^data:.*,.*$/i.test(e)||/^blob:.*$/i.test(e)?e:t+e)}}class hp extends Xe{constructor(){super(),this.isInstancedBufferGeometry=!0,this.type=\"InstancedBufferGeometry\",this.instanceCount=1/0}copy(e){return super.copy(e),this.instanceCount=e.instanceCount,this}clone(){return new this.constructor().copy(this)}toJSON(){const e=super.toJSON(this);return e.instanceCount=this.instanceCount,e.isInstancedBufferGeometry=!0,e}}class fp extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new Jt(s.manager);r.setPath(s.path),r.setRequestHeader(s.requestHeader),r.setWithCredentials(s.withCredentials),r.load(e,function(o){try{t(s.parse(JSON.parse(o)))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}parse(e){const t={},n={};function i(d,p){if(t[p]!==void 0)return t[p];const g=d.interleavedBuffers[p],y=s(d,g.buffer),x=$s(g.type,y),b=new _o(x,g.stride);return b.uuid=g.uuid,t[p]=b,b}function s(d,p){if(n[p]!==void 0)return n[p];const g=d.arrayBuffers[p],y=new Uint32Array(g).buffer;return n[p]=y,y}const r=e.isInstancedBufferGeometry?new hp:new Xe,o=e.data.index;if(o!==void 0){const d=$s(o.type,o.array);r.setIndex(new pt(d,1))}const l=e.data.attributes;for(const d in l){const p=l[d];let m;if(p.isInterleavedBufferAttribute){const g=i(e.data,p.data);m=new ji(g,p.itemSize,p.offset,p.normalized)}else{const g=$s(p.type,p.array),y=p.isInstancedBufferAttribute?br:pt;m=new y(g,p.itemSize,p.normalized)}p.name!==void 0&&(m.name=p.name),p.usage!==void 0&&m.setUsage(p.usage),p.updateRange!==void 0&&(m.updateRange.offset=p.updateRange.offset,m.updateRange.count=p.updateRange.count),r.setAttribute(d,m)}const c=e.data.morphAttributes;if(c)for(const d in c){const p=c[d],m=[];for(let g=0,y=p.length;g<y;g++){const x=p[g];let b;if(x.isInterleavedBufferAttribute){const v=i(e.data,x.data);b=new ji(v,x.itemSize,x.offset,x.normalized)}else{const v=$s(x.type,x.array);b=new pt(v,x.itemSize,x.normalized)}x.name!==void 0&&(b.name=x.name),m.push(b)}r.morphAttributes[d]=m}e.data.morphTargetsRelative&&(r.morphTargetsRelative=!0);const u=e.data.groups||e.data.drawcalls||e.data.offsets;if(u!==void 0)for(let d=0,p=u.length;d!==p;++d){const m=u[d];r.addGroup(m.start,m.count,m.materialIndex)}const f=e.data.boundingSphere;if(f!==void 0){const d=new I;f.center!==void 0&&d.fromArray(f.center),r.boundingSphere=new Ui(d,f.radius)}return e.name&&(r.name=e.name),e.userData&&(r.userData=e.userData),r}}class dp extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=this.path===\"\"?sn.extractUrlBase(e):this.path;this.resourcePath=this.resourcePath||r;const o=new Jt(this.manager);o.setPath(this.path),o.setRequestHeader(this.requestHeader),o.setWithCredentials(this.withCredentials),o.load(e,function(l){let c=null;try{c=JSON.parse(l)}catch(u){i!==void 0&&i(u),console.error(\"THREE:ObjectLoader: Can't parse \"+e+\".\",u.message);return}const h=c.metadata;if(h===void 0||h.type===void 0||h.type.toLowerCase()===\"geometry\"){console.error(\"THREE.ObjectLoader: Can't load \"+e);return}s.parse(c,t)},n,i)}async loadAsync(e,t){const n=this,i=this.path===\"\"?sn.extractUrlBase(e):this.path;this.resourcePath=this.resourcePath||i;const s=new Jt(this.manager);s.setPath(this.path),s.setRequestHeader(this.requestHeader),s.setWithCredentials(this.withCredentials);const r=await s.loadAsync(e,t),o=JSON.parse(r),l=o.metadata;if(l===void 0||l.type===void 0||l.type.toLowerCase()===\"geometry\")throw new Error(\"THREE.ObjectLoader: Can't load \"+e);return await n.parseAsync(o)}parse(e,t){const n=this.parseAnimations(e.animations),i=this.parseShapes(e.shapes),s=this.parseGeometries(e.geometries,i),r=this.parseImages(e.images,function(){t!==void 0&&t(c)}),o=this.parseTextures(e.textures,r),l=this.parseMaterials(e.materials,o),c=this.parseObject(e.object,s,l,o,n),h=this.parseSkeletons(e.skeletons,c);if(this.bindSkeletons(c,h),t!==void 0){let u=!1;for(const f in r)if(r[f].data instanceof HTMLImageElement){u=!0;break}u===!1&&t(c)}return c}async parseAsync(e){const t=this.parseAnimations(e.animations),n=this.parseShapes(e.shapes),i=this.parseGeometries(e.geometries,n),s=await this.parseImagesAsync(e.images),r=this.parseTextures(e.textures,s),o=this.parseMaterials(e.materials,r),l=this.parseObject(e.object,i,o,r,t),c=this.parseSkeletons(e.skeletons,l);return this.bindSkeletons(l,c),l}parseShapes(e){const t={};if(e!==void 0)for(let n=0,i=e.length;n<i;n++){const s=new Cs().fromJSON(e[n]);t[s.uuid]=s}return t}parseSkeletons(e,t){const n={},i={};if(t.traverse(function(s){s.isBone&&(i[s.uuid]=s)}),e!==void 0)for(let s=0,r=e.length;s<r;s++){const o=new As().fromJSON(e[s],i);n[o.uuid]=o}return n}parseGeometries(e,t){const n={};if(e!==void 0){const i=new fp;for(let s=0,r=e.length;s<r;s++){let o;const l=e[s];switch(l.type){case\"BufferGeometry\":case\"InstancedBufferGeometry\":o=i.parse(l);break;case\"Geometry\":console.error(\"THREE.ObjectLoader: The legacy Geometry type is no longer supported.\");break;default:l.type in Xd?o=Xd[l.type].fromJSON(l,t):console.warn(`THREE.ObjectLoader: Unsupported geometry type \"${l.type}\"`)}o.uuid=l.uuid,l.name!==void 0&&(o.name=l.name),o.isBufferGeometry===!0&&l.userData!==void 0&&(o.userData=l.userData),n[l.uuid]=o}}return n}parseMaterials(e,t){const n={},i={};if(e!==void 0){const s=new rl;s.setTextures(t);for(let r=0,o=e.length;r<o;r++){const l=e[r];if(l.type===\"MultiMaterial\"){const c=[];for(let h=0;h<l.materials.length;h++){const u=l.materials[h];n[u.uuid]===void 0&&(n[u.uuid]=s.parse(u)),c.push(n[u.uuid])}i[l.uuid]=c}else n[l.uuid]===void 0&&(n[l.uuid]=s.parse(l)),i[l.uuid]=n[l.uuid]}}return i}parseAnimations(e){const t={};if(e!==void 0)for(let n=0;n<e.length;n++){const i=e[n],s=wi.parse(i);t[s.uuid]=s}return t}parseImages(e,t){const n=this,i={};let s;function r(l){return n.manager.itemStart(l),s.load(l,function(){n.manager.itemEnd(l)},void 0,function(){n.manager.itemError(l),n.manager.itemEnd(l)})}function o(l){if(typeof l==\"string\"){const c=l,h=/^(\\/\\/)|([a-z]+:(\\/\\/)?)/i.test(c)?c:n.resourcePath+c;return r(h)}else return l.data?{data:$s(l.type,l.data),width:l.width,height:l.height}:null}if(e!==void 0&&e.length>0){const l=new _u(t);s=new Do(l),s.setCrossOrigin(this.crossOrigin);for(let c=0,h=e.length;c<h;c++){const u=e[c],f=u.url;if(Array.isArray(f)){const d=[];for(let p=0,m=f.length;p<m;p++){const g=f[p],y=o(g);y!==null&&(y instanceof HTMLImageElement?d.push(y):d.push(new _r(y.data,y.width,y.height)))}i[u.uuid]=new ys(d)}else{const d=o(u.url);i[u.uuid]=new ys(d)}}}return i}async parseImagesAsync(e){const t=this,n={};let i;async function s(r){if(typeof r==\"string\"){const o=r,l=/^(\\/\\/)|([a-z]+:(\\/\\/)?)/i.test(o)?o:t.resourcePath+o;return await i.loadAsync(l)}else return r.data?{data:$s(r.type,r.data),width:r.width,height:r.height}:null}if(e!==void 0&&e.length>0){i=new Do(this.manager),i.setCrossOrigin(this.crossOrigin);for(let r=0,o=e.length;r<o;r++){const l=e[r],c=l.url;if(Array.isArray(c)){const h=[];for(let u=0,f=c.length;u<f;u++){const d=c[u],p=await s(d);p!==null&&(p instanceof HTMLImageElement?h.push(p):h.push(new _r(p.data,p.width,p.height)))}n[l.uuid]=new ys(h)}else{const h=await s(l.url);n[l.uuid]=new ys(h)}}}return n}parseTextures(e,t){function n(s,r){return typeof s==\"number\"?s:(console.warn(\"THREE.ObjectLoader.parseTexture: Constant should be in numeric form.\",s),r[s])}const i={};if(e!==void 0)for(let s=0,r=e.length;s<r;s++){const o=e[s];o.image===void 0&&console.warn('THREE.ObjectLoader: No \"image\" specified for',o.uuid),t[o.image]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined image\",o.image);const l=t[o.image],c=l.data;let h;Array.isArray(c)?(h=new xo,c.length===6&&(h.needsUpdate=!0)):(c&&c.data?h=new _r:h=new Lt,c&&(h.needsUpdate=!0)),h.source=l,h.uuid=o.uuid,o.name!==void 0&&(h.name=o.name),o.mapping!==void 0&&(h.mapping=n(o.mapping,Q_)),o.offset!==void 0&&h.offset.fromArray(o.offset),o.repeat!==void 0&&h.repeat.fromArray(o.repeat),o.center!==void 0&&h.center.fromArray(o.center),o.rotation!==void 0&&(h.rotation=o.rotation),o.wrap!==void 0&&(h.wrapS=n(o.wrap[0],pp),h.wrapT=n(o.wrap[1],pp)),o.format!==void 0&&(h.format=o.format),o.type!==void 0&&(h.type=o.type),o.encoding!==void 0&&(h.encoding=o.encoding),o.minFilter!==void 0&&(h.minFilter=n(o.minFilter,mp)),o.magFilter!==void 0&&(h.magFilter=n(o.magFilter,mp)),o.anisotropy!==void 0&&(h.anisotropy=o.anisotropy),o.flipY!==void 0&&(h.flipY=o.flipY),o.premultiplyAlpha!==void 0&&(h.premultiplyAlpha=o.premultiplyAlpha),o.unpackAlignment!==void 0&&(h.unpackAlignment=o.unpackAlignment),o.userData!==void 0&&(h.userData=o.userData),i[o.uuid]=h}return i}parseObject(e,t,n,i,s){let r;function o(f){return t[f]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined geometry\",f),t[f]}function l(f){if(f!==void 0){if(Array.isArray(f)){const d=[];for(let p=0,m=f.length;p<m;p++){const g=f[p];n[g]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined material\",g),d.push(n[g])}return d}return n[f]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined material\",f),n[f]}}function c(f){return i[f]===void 0&&console.warn(\"THREE.ObjectLoader: Undefined texture\",f),i[f]}let h,u;switch(e.type){case\"Scene\":r=new Ba,e.background!==void 0&&(Number.isInteger(e.background)?r.background=new be(e.background):r.background=c(e.background)),e.environment!==void 0&&(r.environment=c(e.environment)),e.fog!==void 0&&(e.fog.type===\"Fog\"?r.fog=new Oa(e.fog.color,e.fog.near,e.fog.far):e.fog.type===\"FogExp2\"&&(r.fog=new ka(e.fog.color,e.fog.density)));break;case\"PerspectiveCamera\":r=new Ot(e.fov,e.aspect,e.near,e.far),e.focus!==void 0&&(r.focus=e.focus),e.zoom!==void 0&&(r.zoom=e.zoom),e.filmGauge!==void 0&&(r.filmGauge=e.filmGauge),e.filmOffset!==void 0&&(r.filmOffset=e.filmOffset),e.view!==void 0&&(r.view=Object.assign({},e.view));break;case\"OrthographicCamera\":r=new ws(e.left,e.right,e.top,e.bottom,e.near,e.far),e.zoom!==void 0&&(r.zoom=e.zoom),e.view!==void 0&&(r.view=Object.assign({},e.view));break;case\"AmbientLight\":r=new ko(e.color,e.intensity);break;case\"DirectionalLight\":r=new Or(e.color,e.intensity);break;case\"PointLight\":r=new $i(e.color,e.intensity,e.distance,e.decay);break;case\"RectAreaLight\":r=new cp(e.color,e.intensity,e.width,e.height);break;case\"SpotLight\":r=new Fo(e.color,e.intensity,e.distance,e.angle,e.penumbra,e.decay);break;case\"HemisphereLight\":r=new wu(e.color,e.groundColor,e.intensity);break;case\"LightProbe\":r=new sl().fromJSON(e);break;case\"SkinnedMesh\":h=o(e.geometry),u=l(e.material),r=new To(h,u),e.bindMode!==void 0&&(r.bindMode=e.bindMode),e.bindMatrix!==void 0&&r.bindMatrix.fromArray(e.bindMatrix),e.skeleton!==void 0&&(r.skeleton=e.skeleton);break;case\"Mesh\":h=o(e.geometry),u=l(e.material),r=new Rt(h,u);break;case\"InstancedMesh\":h=o(e.geometry),u=l(e.material);const f=e.count,d=e.instanceMatrix,p=e.instanceColor;r=new wd(h,u,f),r.instanceMatrix=new br(new Float32Array(d.array),16),p!==void 0&&(r.instanceColor=new br(new Float32Array(p.array),p.itemSize));break;case\"LOD\":r=new pd;break;case\"Line\":r=new Xn(o(e.geometry),l(e.material));break;case\"LineLoop\":r=new tu(o(e.geometry),l(e.material));break;case\"LineSegments\":r=new yn(o(e.geometry),l(e.material));break;case\"PointCloud\":case\"Points\":r=new wr(o(e.geometry),l(e.material));break;case\"Sprite\":r=new So(l(e.material));break;case\"Group\":r=new dn;break;case\"Bone\":r=new Ts;break;default:r=new dt}if(r.uuid=e.uuid,e.name!==void 0&&(r.name=e.name),e.matrix!==void 0?(r.matrix.fromArray(e.matrix),e.matrixAutoUpdate!==void 0&&(r.matrixAutoUpdate=e.matrixAutoUpdate),r.matrixAutoUpdate&&r.matrix.decompose(r.position,r.quaternion,r.scale)):(e.position!==void 0&&r.position.fromArray(e.position),e.rotation!==void 0&&r.rotation.fromArray(e.rotation),e.quaternion!==void 0&&r.quaternion.fromArray(e.quaternion),e.scale!==void 0&&r.scale.fromArray(e.scale)),e.castShadow!==void 0&&(r.castShadow=e.castShadow),e.receiveShadow!==void 0&&(r.receiveShadow=e.receiveShadow),e.shadow&&(e.shadow.bias!==void 0&&(r.shadow.bias=e.shadow.bias),e.shadow.normalBias!==void 0&&(r.shadow.normalBias=e.shadow.normalBias),e.shadow.radius!==void 0&&(r.shadow.radius=e.shadow.radius),e.shadow.mapSize!==void 0&&r.shadow.mapSize.fromArray(e.shadow.mapSize),e.shadow.camera!==void 0&&(r.shadow.camera=this.parseObject(e.shadow.camera))),e.visible!==void 0&&(r.visible=e.visible),e.frustumCulled!==void 0&&(r.frustumCulled=e.frustumCulled),e.renderOrder!==void 0&&(r.renderOrder=e.renderOrder),e.userData!==void 0&&(r.userData=e.userData),e.layers!==void 0&&(r.layers.mask=e.layers),e.children!==void 0){const f=e.children;for(let d=0;d<f.length;d++)r.add(this.parseObject(f[d],t,n,i,s))}if(e.animations!==void 0){const f=e.animations;for(let d=0;d<f.length;d++){const p=f[d];r.animations.push(s[p])}}if(e.type===\"LOD\"){e.autoUpdate!==void 0&&(r.autoUpdate=e.autoUpdate);const f=e.levels;for(let d=0;d<f.length;d++){const p=f[d],m=r.getObjectByProperty(\"uuid\",p.object);m!==void 0&&r.addLevel(m,p.distance)}}return r}bindSkeletons(e,t){Object.keys(t).length!==0&&e.traverse(function(n){if(n.isSkinnedMesh===!0&&n.skeleton!==void 0){const i=t[n.skeleton];i===void 0?console.warn(\"THREE.ObjectLoader: No skeleton found with UUID:\",n.skeleton):n.bind(i,n.bindMatrix)}})}}const Q_={UVMapping:ea,CubeReflectionMapping:Ii,CubeRefractionMapping:Pi,EquirectangularReflectionMapping:js,EquirectangularRefractionMapping:to,CubeUVReflectionMapping:Ys},pp={RepeatWrapping:cn,ClampToEdgeWrapping:jt,MirroredRepeatWrapping:Zs},mp={NearestFilter:zt,NearestMipmapNearestFilter:no,NearestMipmapLinearFilter:io,LinearFilter:Pt,LinearMipmapNearestFilter:ta,LinearMipmapLinearFilter:Kn};class gp extends Ht{constructor(e){super(e),this.isImageBitmapLoader=!0,typeof createImageBitmap==\"undefined\"&&console.warn(\"THREE.ImageBitmapLoader: createImageBitmap() not supported.\"),typeof fetch==\"undefined\"&&console.warn(\"THREE.ImageBitmapLoader: fetch() not supported.\"),this.options={premultiplyAlpha:\"none\"}}setOptions(e){return this.options=e,this}load(e,t,n,i){e===void 0&&(e=\"\"),this.path!==void 0&&(e=this.path+e),e=this.manager.resolveURL(e);const s=this,r=ks.get(e);if(r!==void 0)return s.manager.itemStart(e),setTimeout(function(){t&&t(r),s.manager.itemEnd(e)},0),r;const o={};o.credentials=this.crossOrigin===\"anonymous\"?\"same-origin\":\"include\",o.headers=this.requestHeader,fetch(e,o).then(function(l){return l.blob()}).then(function(l){return createImageBitmap(l,Object.assign(s.options,{colorSpaceConversion:\"none\"}))}).then(function(l){ks.add(e,l),t&&t(l),s.manager.itemEnd(e)}).catch(function(l){i&&i(l),s.manager.itemError(e),s.manager.itemEnd(e)}),s.manager.itemStart(e)}}let ol;const Tu={getContext:function(){return ol===void 0&&(ol=new(window.AudioContext||window.webkitAudioContext)),ol},setContext:function(a){ol=a}};class eb extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new Jt(this.manager);r.setResponseType(\"arraybuffer\"),r.setPath(this.path),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{const l=o.slice(0);Tu.getContext().decodeAudioData(l,function(h){t(h)})}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}}class tb extends sl{constructor(e,t,n=1){super(void 0,n),this.isHemisphereLightProbe=!0;const i=new be().set(e),s=new be().set(t),r=new I(i.r,i.g,i.b),o=new I(s.r,s.g,s.b),l=Math.sqrt(Math.PI),c=l*Math.sqrt(.75);this.sh.coefficients[0].copy(r).add(o).multiplyScalar(l),this.sh.coefficients[1].copy(r).sub(o).multiplyScalar(c)}}class nb extends sl{constructor(e,t=1){super(void 0,t),this.isAmbientLightProbe=!0;const n=new be().set(e);this.sh.coefficients[0].set(n.r,n.g,n.b).multiplyScalar(2*Math.sqrt(Math.PI))}}const yp=new Ne,xp=new Ne,Bs=new Ne;class ib{constructor(){this.type=\"StereoCamera\",this.aspect=1,this.eyeSep=.064,this.cameraL=new Ot,this.cameraL.layers.enable(1),this.cameraL.matrixAutoUpdate=!1,this.cameraR=new Ot,this.cameraR.layers.enable(2),this.cameraR.matrixAutoUpdate=!1,this._cache={focus:null,fov:null,aspect:null,near:null,far:null,zoom:null,eyeSep:null}}update(e){const t=this._cache;if(t.focus!==e.focus||t.fov!==e.fov||t.aspect!==e.aspect*this.aspect||t.near!==e.near||t.far!==e.far||t.zoom!==e.zoom||t.eyeSep!==this.eyeSep){t.focus=e.focus,t.fov=e.fov,t.aspect=e.aspect*this.aspect,t.near=e.near,t.far=e.far,t.zoom=e.zoom,t.eyeSep=this.eyeSep,Bs.copy(e.projectionMatrix);const i=t.eyeSep/2,s=i*t.near/t.focus,r=t.near*Math.tan(ms*t.fov*.5)/t.zoom;let o,l;xp.elements[12]=-i,yp.elements[12]=i,o=-r*t.aspect+s,l=r*t.aspect+s,Bs.elements[0]=2*t.near/(l-o),Bs.elements[8]=(l+o)/(l-o),this.cameraL.projectionMatrix.copy(Bs),o=-r*t.aspect-s,l=r*t.aspect-s,Bs.elements[0]=2*t.near/(l-o),Bs.elements[8]=(l+o)/(l-o),this.cameraR.projectionMatrix.copy(Bs)}this.cameraL.matrixWorld.copy(e.matrixWorld).multiply(xp),this.cameraR.matrixWorld.copy(e.matrixWorld).multiply(yp)}}class Au{constructor(e=!0){this.autoStart=e,this.startTime=0,this.oldTime=0,this.elapsedTime=0,this.running=!1}start(){this.startTime=vp(),this.oldTime=this.startTime,this.elapsedTime=0,this.running=!0}stop(){this.getElapsedTime(),this.running=!1,this.autoStart=!1}getElapsedTime(){return this.getDelta(),this.elapsedTime}getDelta(){let e=0;if(this.autoStart&&!this.running)return this.start(),0;if(this.running){const t=vp();e=(t-this.oldTime)/1e3,this.oldTime=t,this.elapsedTime+=e}return e}}function vp(){return(typeof performance==\"undefined\"?Date:performance).now()}const zs=new I,_p=new kt,sb=new I,Us=new I;class rb extends dt{constructor(){super(),this.type=\"AudioListener\",this.context=Tu.getContext(),this.gain=this.context.createGain(),this.gain.connect(this.context.destination),this.filter=null,this.timeDelta=0,this._clock=new Au}getInput(){return this.gain}removeFilter(){return this.filter!==null&&(this.gain.disconnect(this.filter),this.filter.disconnect(this.context.destination),this.gain.connect(this.context.destination),this.filter=null),this}getFilter(){return this.filter}setFilter(e){return this.filter!==null?(this.gain.disconnect(this.filter),this.filter.disconnect(this.context.destination)):this.gain.disconnect(this.context.destination),this.filter=e,this.gain.connect(this.filter),this.filter.connect(this.context.destination),this}getMasterVolume(){return this.gain.gain.value}setMasterVolume(e){return this.gain.gain.setTargetAtTime(e,this.context.currentTime,.01),this}updateMatrixWorld(e){super.updateMatrixWorld(e);const t=this.context.listener,n=this.up;if(this.timeDelta=this._clock.getDelta(),this.matrixWorld.decompose(zs,_p,sb),Us.set(0,0,-1).applyQuaternion(_p),t.positionX){const i=this.context.currentTime+this.timeDelta;t.positionX.linearRampToValueAtTime(zs.x,i),t.positionY.linearRampToValueAtTime(zs.y,i),t.positionZ.linearRampToValueAtTime(zs.z,i),t.forwardX.linearRampToValueAtTime(Us.x,i),t.forwardY.linearRampToValueAtTime(Us.y,i),t.forwardZ.linearRampToValueAtTime(Us.z,i),t.upX.linearRampToValueAtTime(n.x,i),t.upY.linearRampToValueAtTime(n.y,i),t.upZ.linearRampToValueAtTime(n.z,i)}else t.setPosition(zs.x,zs.y,zs.z),t.setOrientation(Us.x,Us.y,Us.z,n.x,n.y,n.z)}}class bp extends dt{constructor(e){super(),this.type=\"Audio\",this.listener=e,this.context=e.context,this.gain=this.context.createGain(),this.gain.connect(e.getInput()),this.autoplay=!1,this.buffer=null,this.detune=0,this.loop=!1,this.loopStart=0,this.loopEnd=0,this.offset=0,this.duration=void 0,this.playbackRate=1,this.isPlaying=!1,this.hasPlaybackControl=!0,this.source=null,this.sourceType=\"empty\",this._startedAt=0,this._progress=0,this._connected=!1,this.filters=[]}getOutput(){return this.gain}setNodeSource(e){return this.hasPlaybackControl=!1,this.sourceType=\"audioNode\",this.source=e,this.connect(),this}setMediaElementSource(e){return this.hasPlaybackControl=!1,this.sourceType=\"mediaNode\",this.source=this.context.createMediaElementSource(e),this.connect(),this}setMediaStreamSource(e){return this.hasPlaybackControl=!1,this.sourceType=\"mediaStreamNode\",this.source=this.context.createMediaStreamSource(e),this.connect(),this}setBuffer(e){return this.buffer=e,this.sourceType=\"buffer\",this.autoplay&&this.play(),this}play(e=0){if(this.isPlaying===!0){console.warn(\"THREE.Audio: Audio is already playing.\");return}if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}this._startedAt=this.context.currentTime+e;const t=this.context.createBufferSource();return t.buffer=this.buffer,t.loop=this.loop,t.loopStart=this.loopStart,t.loopEnd=this.loopEnd,t.onended=this.onEnded.bind(this),t.start(this._startedAt,this._progress+this.offset,this.duration),this.isPlaying=!0,this.source=t,this.setDetune(this.detune),this.setPlaybackRate(this.playbackRate),this.connect()}pause(){if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}return this.isPlaying===!0&&(this._progress+=Math.max(this.context.currentTime-this._startedAt,0)*this.playbackRate,this.loop===!0&&(this._progress=this._progress%(this.duration||this.buffer.duration)),this.source.stop(),this.source.onended=null,this.isPlaying=!1),this}stop(){if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}return this._progress=0,this.source.stop(),this.source.onended=null,this.isPlaying=!1,this}connect(){if(this.filters.length>0){this.source.connect(this.filters[0]);for(let e=1,t=this.filters.length;e<t;e++)this.filters[e-1].connect(this.filters[e]);this.filters[this.filters.length-1].connect(this.getOutput())}else this.source.connect(this.getOutput());return this._connected=!0,this}disconnect(){if(this.filters.length>0){this.source.disconnect(this.filters[0]);for(let e=1,t=this.filters.length;e<t;e++)this.filters[e-1].disconnect(this.filters[e]);this.filters[this.filters.length-1].disconnect(this.getOutput())}else this.source.disconnect(this.getOutput());return this._connected=!1,this}getFilters(){return this.filters}setFilters(e){return e||(e=[]),this._connected===!0?(this.disconnect(),this.filters=e.slice(),this.connect()):this.filters=e.slice(),this}setDetune(e){if(this.detune=e,this.source.detune!==void 0)return this.isPlaying===!0&&this.source.detune.setTargetAtTime(this.detune,this.context.currentTime,.01),this}getDetune(){return this.detune}getFilter(){return this.getFilters()[0]}setFilter(e){return this.setFilters(e?[e]:[])}setPlaybackRate(e){if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}return this.playbackRate=e,this.isPlaying===!0&&this.source.playbackRate.setTargetAtTime(this.playbackRate,this.context.currentTime,.01),this}getPlaybackRate(){return this.playbackRate}onEnded(){this.isPlaying=!1}getLoop(){return this.hasPlaybackControl===!1?(console.warn(\"THREE.Audio: this Audio has no playback control.\"),!1):this.loop}setLoop(e){if(this.hasPlaybackControl===!1){console.warn(\"THREE.Audio: this Audio has no playback control.\");return}return this.loop=e,this.isPlaying===!0&&(this.source.loop=this.loop),this}setLoopStart(e){return this.loopStart=e,this}setLoopEnd(e){return this.loopEnd=e,this}getVolume(){return this.gain.gain.value}setVolume(e){return this.gain.gain.setTargetAtTime(e,this.context.currentTime,.01),this}}const Gs=new I,wp=new kt,ob=new I,Vs=new I;class ab extends bp{constructor(e){super(e),this.panner=this.context.createPanner(),this.panner.panningModel=\"HRTF\",this.panner.connect(this.gain)}disconnect(){super.disconnect(),this.panner.disconnect(this.gain)}getOutput(){return this.panner}getRefDistance(){return this.panner.refDistance}setRefDistance(e){return this.panner.refDistance=e,this}getRolloffFactor(){return this.panner.rolloffFactor}setRolloffFactor(e){return this.panner.rolloffFactor=e,this}getDistanceModel(){return this.panner.distanceModel}setDistanceModel(e){return this.panner.distanceModel=e,this}getMaxDistance(){return this.panner.maxDistance}setMaxDistance(e){return this.panner.maxDistance=e,this}setDirectionalCone(e,t,n){return this.panner.coneInnerAngle=e,this.panner.coneOuterAngle=t,this.panner.coneOuterGain=n,this}updateMatrixWorld(e){if(super.updateMatrixWorld(e),this.hasPlaybackControl===!0&&this.isPlaying===!1)return;this.matrixWorld.decompose(Gs,wp,ob),Vs.set(0,0,1).applyQuaternion(wp);const t=this.panner;if(t.positionX){const n=this.context.currentTime+this.listener.timeDelta;t.positionX.linearRampToValueAtTime(Gs.x,n),t.positionY.linearRampToValueAtTime(Gs.y,n),t.positionZ.linearRampToValueAtTime(Gs.z,n),t.orientationX.linearRampToValueAtTime(Vs.x,n),t.orientationY.linearRampToValueAtTime(Vs.y,n),t.orientationZ.linearRampToValueAtTime(Vs.z,n)}else t.setPosition(Gs.x,Gs.y,Gs.z),t.setOrientation(Vs.x,Vs.y,Vs.z)}}class lb{constructor(e,t=2048){this.analyser=e.context.createAnalyser(),this.analyser.fftSize=t,this.data=new Uint8Array(this.analyser.frequencyBinCount),e.getOutput().connect(this.analyser)}getFrequencyData(){return this.analyser.getByteFrequencyData(this.data),this.data}getAverageFrequency(){let e=0;const t=this.getFrequencyData();for(let n=0;n<t.length;n++)e+=t[n];return e/t.length}}class Mp{constructor(e,t,n){this.binding=e,this.valueSize=n;let i,s,r;switch(t){case\"quaternion\":i=this._slerp,s=this._slerpAdditive,r=this._setAdditiveIdentityQuaternion,this.buffer=new Float64Array(n*6),this._workIndex=5;break;case\"string\":case\"bool\":i=this._select,s=this._select,r=this._setAdditiveIdentityOther,this.buffer=new Array(n*5);break;default:i=this._lerp,s=this._lerpAdditive,r=this._setAdditiveIdentityNumeric,this.buffer=new Float64Array(n*5)}this._mixBufferRegion=i,this._mixBufferRegionAdditive=s,this._setIdentity=r,this._origIndex=3,this._addIndex=4,this.cumulativeWeight=0,this.cumulativeWeightAdditive=0,this.useCount=0,this.referenceCount=0}accumulate(e,t){const n=this.buffer,i=this.valueSize,s=e*i+i;let r=this.cumulativeWeight;if(r===0){for(let o=0;o!==i;++o)n[s+o]=n[o];r=t}else{r+=t;const o=t/r;this._mixBufferRegion(n,s,0,o,i)}this.cumulativeWeight=r}accumulateAdditive(e){const t=this.buffer,n=this.valueSize,i=n*this._addIndex;this.cumulativeWeightAdditive===0&&this._setIdentity(),this._mixBufferRegionAdditive(t,i,0,e,n),this.cumulativeWeightAdditive+=e}apply(e){const t=this.valueSize,n=this.buffer,i=e*t+t,s=this.cumulativeWeight,r=this.cumulativeWeightAdditive,o=this.binding;if(this.cumulativeWeight=0,this.cumulativeWeightAdditive=0,s<1){const l=t*this._origIndex;this._mixBufferRegion(n,i,l,1-s,t)}r>0&&this._mixBufferRegionAdditive(n,i,this._addIndex*t,1,t);for(let l=t,c=t+t;l!==c;++l)if(n[l]!==n[l+t]){o.setValue(n,i);break}}saveOriginalState(){const e=this.binding,t=this.buffer,n=this.valueSize,i=n*this._origIndex;e.getValue(t,i);for(let s=n,r=i;s!==r;++s)t[s]=t[i+s%n];this._setIdentity(),this.cumulativeWeight=0,this.cumulativeWeightAdditive=0}restoreOriginalState(){const e=this.valueSize*3;this.binding.setValue(this.buffer,e)}_setAdditiveIdentityNumeric(){const e=this._addIndex*this.valueSize,t=e+this.valueSize;for(let n=e;n<t;n++)this.buffer[n]=0}_setAdditiveIdentityQuaternion(){this._setAdditiveIdentityNumeric(),this.buffer[this._addIndex*this.valueSize+3]=1}_setAdditiveIdentityOther(){const e=this._origIndex*this.valueSize,t=this._addIndex*this.valueSize;for(let n=0;n<this.valueSize;n++)this.buffer[t+n]=this.buffer[e+n]}_select(e,t,n,i,s){if(i>=.5)for(let r=0;r!==s;++r)e[t+r]=e[n+r]}_slerp(e,t,n,i){kt.slerpFlat(e,t,e,t,e,n,i)}_slerpAdditive(e,t,n,i,s){const r=this._workIndex*s;kt.multiplyQuaternionsFlat(e,r,e,t,e,n),kt.slerpFlat(e,t,e,t,e,r,i)}_lerp(e,t,n,i,s){const r=1-i;for(let o=0;o!==s;++o){const l=t+o;e[l]=e[l]*r+e[n+o]*i}}_lerpAdditive(e,t,n,i,s){for(let r=0;r!==s;++r){const o=t+r;e[o]=e[o]+e[n+r]*i}}}const Eu=\"\\\\[\\\\]\\\\.:\\\\/\",cb=new RegExp(\"[\"+Eu+\"]\",\"g\"),Cu=\"[^\"+Eu+\"]\",ub=\"[^\"+Eu.replace(\"\\\\.\",\"\")+\"]\",hb=/((?:WC+[\\/:])*)/.source.replace(\"WC\",Cu),fb=/(WCOD+)?/.source.replace(\"WCOD\",ub),db=/(?:\\.(WC+)(?:\\[(.+)\\])?)?/.source.replace(\"WC\",Cu),pb=/\\.(WC+)(?:\\[(.+)\\])?/.source.replace(\"WC\",Cu),mb=new RegExp(\"^\"+hb+fb+db+pb+\"$\"),gb=[\"material\",\"materials\",\"bones\"];class yb{constructor(e,t,n){const i=n||rt.parseTrackName(t);this._targetGroup=e,this._bindings=e.subscribe_(t,i)}getValue(e,t){this.bind();const n=this._targetGroup.nCachedObjects_,i=this._bindings[n];i!==void 0&&i.getValue(e,t)}setValue(e,t){const n=this._bindings;for(let i=this._targetGroup.nCachedObjects_,s=n.length;i!==s;++i)n[i].setValue(e,t)}bind(){const e=this._bindings;for(let t=this._targetGroup.nCachedObjects_,n=e.length;t!==n;++t)e[t].bind()}unbind(){const e=this._bindings;for(let t=this._targetGroup.nCachedObjects_,n=e.length;t!==n;++t)e[t].unbind()}}class rt{constructor(e,t,n){this.path=t,this.parsedPath=n||rt.parseTrackName(t),this.node=rt.findNode(e,this.parsedPath.nodeName)||e,this.rootNode=e,this.getValue=this._getValue_unbound,this.setValue=this._setValue_unbound}static create(e,t,n){return e&&e.isAnimationObjectGroup?new rt.Composite(e,t,n):new rt(e,t,n)}static sanitizeNodeName(e){return e.replace(/\\s/g,\"_\").replace(cb,\"\")}static parseTrackName(e){const t=mb.exec(e);if(t===null)throw new Error(\"PropertyBinding: Cannot parse trackName: \"+e);const n={nodeName:t[2],objectName:t[3],objectIndex:t[4],propertyName:t[5],propertyIndex:t[6]},i=n.nodeName&&n.nodeName.lastIndexOf(\".\");if(i!==void 0&&i!==-1){const s=n.nodeName.substring(i+1);gb.indexOf(s)!==-1&&(n.nodeName=n.nodeName.substring(0,i),n.objectName=s)}if(n.propertyName===null||n.propertyName.length===0)throw new Error(\"PropertyBinding: can not parse propertyName from trackName: \"+e);return n}static findNode(e,t){if(t===void 0||t===\"\"||t===\".\"||t===-1||t===e.name||t===e.uuid)return e;if(e.skeleton){const n=e.skeleton.getBoneByName(t);if(n!==void 0)return n}if(e.children){const n=function(s){for(let r=0;r<s.length;r++){const o=s[r];if(o.name===t||o.uuid===t)return o;const l=n(o.children);if(l)return l}return null},i=n(e.children);if(i)return i}return null}_getValue_unavailable(){}_setValue_unavailable(){}_getValue_direct(e,t){e[t]=this.targetObject[this.propertyName]}_getValue_array(e,t){const n=this.resolvedProperty;for(let i=0,s=n.length;i!==s;++i)e[t++]=n[i]}_getValue_arrayElement(e,t){e[t]=this.resolvedProperty[this.propertyIndex]}_getValue_toArray(e,t){this.resolvedProperty.toArray(e,t)}_setValue_direct(e,t){this.targetObject[this.propertyName]=e[t]}_setValue_direct_setNeedsUpdate(e,t){this.targetObject[this.propertyName]=e[t],this.targetObject.needsUpdate=!0}_setValue_direct_setMatrixWorldNeedsUpdate(e,t){this.targetObject[this.propertyName]=e[t],this.targetObject.matrixWorldNeedsUpdate=!0}_setValue_array(e,t){const n=this.resolvedProperty;for(let i=0,s=n.length;i!==s;++i)n[i]=e[t++]}_setValue_array_setNeedsUpdate(e,t){const n=this.resolvedProperty;for(let i=0,s=n.length;i!==s;++i)n[i]=e[t++];this.targetObject.needsUpdate=!0}_setValue_array_setMatrixWorldNeedsUpdate(e,t){const n=this.resolvedProperty;for(let i=0,s=n.length;i!==s;++i)n[i]=e[t++];this.targetObject.matrixWorldNeedsUpdate=!0}_setValue_arrayElement(e,t){this.resolvedProperty[this.propertyIndex]=e[t]}_setValue_arrayElement_setNeedsUpdate(e,t){this.resolvedProperty[this.propertyIndex]=e[t],this.targetObject.needsUpdate=!0}_setValue_arrayElement_setMatrixWorldNeedsUpdate(e,t){this.resolvedProperty[this.propertyIndex]=e[t],this.targetObject.matrixWorldNeedsUpdate=!0}_setValue_fromArray(e,t){this.resolvedProperty.fromArray(e,t)}_setValue_fromArray_setNeedsUpdate(e,t){this.resolvedProperty.fromArray(e,t),this.targetObject.needsUpdate=!0}_setValue_fromArray_setMatrixWorldNeedsUpdate(e,t){this.resolvedProperty.fromArray(e,t),this.targetObject.matrixWorldNeedsUpdate=!0}_getValue_unbound(e,t){this.bind(),this.getValue(e,t)}_setValue_unbound(e,t){this.bind(),this.setValue(e,t)}bind(){let e=this.node;const t=this.parsedPath,n=t.objectName,i=t.propertyName;let s=t.propertyIndex;if(e||(e=rt.findNode(this.rootNode,t.nodeName)||this.rootNode,this.node=e),this.getValue=this._getValue_unavailable,this.setValue=this._setValue_unavailable,!e){console.error(\"THREE.PropertyBinding: Trying to update node for track: \"+this.path+\" but it wasn't found.\");return}if(n){let c=t.objectIndex;switch(n){case\"materials\":if(!e.material){console.error(\"THREE.PropertyBinding: Can not bind to material as node does not have a material.\",this);return}if(!e.material.materials){console.error(\"THREE.PropertyBinding: Can not bind to material.materials as node.material does not have a materials array.\",this);return}e=e.material.materials;break;case\"bones\":if(!e.skeleton){console.error(\"THREE.PropertyBinding: Can not bind to bones as node does not have a skeleton.\",this);return}e=e.skeleton.bones;for(let h=0;h<e.length;h++)if(e[h].name===c){c=h;break}break;default:if(e[n]===void 0){console.error(\"THREE.PropertyBinding: Can not bind to objectName of node undefined.\",this);return}e=e[n]}if(c!==void 0){if(e[c]===void 0){console.error(\"THREE.PropertyBinding: Trying to bind to objectIndex of objectName, but is undefined.\",this,e);return}e=e[c]}}const r=e[i];if(r===void 0){const c=t.nodeName;console.error(\"THREE.PropertyBinding: Trying to update property for track: \"+c+\".\"+i+\" but it wasn't found.\",e);return}let o=this.Versioning.None;this.targetObject=e,e.needsUpdate!==void 0?o=this.Versioning.NeedsUpdate:e.matrixWorldNeedsUpdate!==void 0&&(o=this.Versioning.MatrixWorldNeedsUpdate);let l=this.BindingType.Direct;if(s!==void 0){if(i===\"morphTargetInfluences\"){if(!e.geometry){console.error(\"THREE.PropertyBinding: Can not bind to morphTargetInfluences because node does not have a geometry.\",this);return}if(!e.geometry.morphAttributes){console.error(\"THREE.PropertyBinding: Can not bind to morphTargetInfluences because node does not have a geometry.morphAttributes.\",this);return}e.morphTargetDictionary[s]!==void 0&&(s=e.morphTargetDictionary[s])}l=this.BindingType.ArrayElement,this.resolvedProperty=r,this.propertyIndex=s}else r.fromArray!==void 0&&r.toArray!==void 0?(l=this.BindingType.HasFromToArray,this.resolvedProperty=r):Array.isArray(r)?(l=this.BindingType.EntireArray,this.resolvedProperty=r):this.propertyName=i;this.getValue=this.GetterByBindingType[l],this.setValue=this.SetterByBindingTypeAndVersioning[l][o]}unbind(){this.node=null,this.getValue=this._getValue_unbound,this.setValue=this._setValue_unbound}}rt.Composite=yb,rt.prototype.BindingType={Direct:0,EntireArray:1,ArrayElement:2,HasFromToArray:3},rt.prototype.Versioning={None:0,NeedsUpdate:1,MatrixWorldNeedsUpdate:2},rt.prototype.GetterByBindingType=[rt.prototype._getValue_direct,rt.prototype._getValue_array,rt.prototype._getValue_arrayElement,rt.prototype._getValue_toArray],rt.prototype.SetterByBindingTypeAndVersioning=[[rt.prototype._setValue_direct,rt.prototype._setValue_direct_setNeedsUpdate,rt.prototype._setValue_direct_setMatrixWorldNeedsUpdate],[rt.prototype._setValue_array,rt.prototype._setValue_array_setNeedsUpdate,rt.prototype._setValue_array_setMatrixWorldNeedsUpdate],[rt.prototype._setValue_arrayElement,rt.prototype._setValue_arrayElement_setNeedsUpdate,rt.prototype._setValue_arrayElement_setMatrixWorldNeedsUpdate],[rt.prototype._setValue_fromArray,rt.prototype._setValue_fromArray_setNeedsUpdate,rt.prototype._setValue_fromArray_setMatrixWorldNeedsUpdate]];class xb{constructor(){this.isAnimationObjectGroup=!0,this.uuid=Sn(),this._objects=Array.prototype.slice.call(arguments),this.nCachedObjects_=0;const e={};this._indicesByUUID=e;for(let n=0,i=arguments.length;n!==i;++n)e[arguments[n].uuid]=n;this._paths=[],this._parsedPaths=[],this._bindings=[],this._bindingsIndicesByPath={};const t=this;this.stats={objects:{get total(){return t._objects.length},get inUse(){return this.total-t.nCachedObjects_}},get bindingsPerObject(){return t._bindings.length}}}add(){const e=this._objects,t=this._indicesByUUID,n=this._paths,i=this._parsedPaths,s=this._bindings,r=s.length;let o,l=e.length,c=this.nCachedObjects_;for(let h=0,u=arguments.length;h!==u;++h){const f=arguments[h],d=f.uuid;let p=t[d];if(p===void 0){p=l++,t[d]=p,e.push(f);for(let m=0,g=r;m!==g;++m)s[m].push(new rt(f,n[m],i[m]))}else if(p<c){o=e[p];const m=--c,g=e[m];t[g.uuid]=p,e[p]=g,t[d]=m,e[m]=f;for(let y=0,x=r;y!==x;++y){const b=s[y],v=b[m];let M=b[p];b[p]=v,M===void 0&&(M=new rt(f,n[y],i[y])),b[m]=M}}else e[p]!==o&&console.error(\"THREE.AnimationObjectGroup: Different objects with the same UUID detected. Clean the caches or recreate your infrastructure when reloading scenes.\")}this.nCachedObjects_=c}remove(){const e=this._objects,t=this._indicesByUUID,n=this._bindings,i=n.length;let s=this.nCachedObjects_;for(let r=0,o=arguments.length;r!==o;++r){const l=arguments[r],c=l.uuid,h=t[c];if(h!==void 0&&h>=s){const u=s++,f=e[u];t[f.uuid]=h,e[h]=f,t[c]=u,e[u]=l;for(let d=0,p=i;d!==p;++d){const m=n[d],g=m[u],y=m[h];m[h]=g,m[u]=y}}}this.nCachedObjects_=s}uncache(){const e=this._objects,t=this._indicesByUUID,n=this._bindings,i=n.length;let s=this.nCachedObjects_,r=e.length;for(let o=0,l=arguments.length;o!==l;++o){const c=arguments[o],h=c.uuid,u=t[h];if(u!==void 0)if(delete t[h],u<s){const f=--s,d=e[f],p=--r,m=e[p];t[d.uuid]=u,e[u]=d,t[m.uuid]=f,e[f]=m,e.pop();for(let g=0,y=i;g!==y;++g){const x=n[g],b=x[f],v=x[p];x[u]=b,x[f]=v,x.pop()}}else{const f=--r,d=e[f];f>0&&(t[d.uuid]=u),e[u]=d,e.pop();for(let p=0,m=i;p!==m;++p){const g=n[p];g[u]=g[f],g.pop()}}}this.nCachedObjects_=s}subscribe_(e,t){const n=this._bindingsIndicesByPath;let i=n[e];const s=this._bindings;if(i!==void 0)return s[i];const r=this._paths,o=this._parsedPaths,l=this._objects,c=l.length,h=this.nCachedObjects_,u=new Array(c);i=s.length,n[e]=i,r.push(e),o.push(t),s.push(u);for(let f=h,d=l.length;f!==d;++f){const p=l[f];u[f]=new rt(p,e,t)}return u}unsubscribe_(e){const t=this._bindingsIndicesByPath,n=t[e];if(n!==void 0){const i=this._paths,s=this._parsedPaths,r=this._bindings,o=r.length-1,l=r[o],c=e[o];t[c]=n,r[n]=l,r.pop(),s[n]=s[o],s.pop(),i[n]=i[o],i.pop()}}}class vb{constructor(e,t,n=null,i=t.blendMode){this._mixer=e,this._clip=t,this._localRoot=n,this.blendMode=i;const s=t.tracks,r=s.length,o=new Array(r),l={endingStart:ds,endingEnd:ds};for(let c=0;c!==r;++c){const h=s[c].createInterpolant(null);o[c]=h,h.settings=l}this._interpolantSettings=l,this._interpolants=o,this._propertyBindings=new Array(r),this._cacheIndex=null,this._byClipCacheIndex=null,this._timeScaleInterpolant=null,this._weightInterpolant=null,this.loop=lf,this._loopCount=-1,this._startTime=null,this.time=0,this.timeScale=1,this._effectiveTimeScale=1,this.weight=1,this._effectiveWeight=1,this.repetitions=1/0,this.paused=!1,this.enabled=!0,this.clampWhenFinished=!1,this.zeroSlopeAtStart=!0,this.zeroSlopeAtEnd=!0}play(){return this._mixer._activateAction(this),this}stop(){return this._mixer._deactivateAction(this),this.reset()}reset(){return this.paused=!1,this.enabled=!0,this.time=0,this._loopCount=-1,this._startTime=null,this.stopFading().stopWarping()}isRunning(){return this.enabled&&!this.paused&&this.timeScale!==0&&this._startTime===null&&this._mixer._isActiveAction(this)}isScheduled(){return this._mixer._isActiveAction(this)}startAt(e){return this._startTime=e,this}setLoop(e,t){return this.loop=e,this.repetitions=t,this}setEffectiveWeight(e){return this.weight=e,this._effectiveWeight=this.enabled?e:0,this.stopFading()}getEffectiveWeight(){return this._effectiveWeight}fadeIn(e){return this._scheduleFading(e,0,1)}fadeOut(e){return this._scheduleFading(e,1,0)}crossFadeFrom(e,t,n){if(e.fadeOut(t),this.fadeIn(t),n){const i=this._clip.duration,s=e._clip.duration,r=s/i,o=i/s;e.warp(1,r,t),this.warp(o,1,t)}return this}crossFadeTo(e,t,n){return e.crossFadeFrom(this,t,n)}stopFading(){const e=this._weightInterpolant;return e!==null&&(this._weightInterpolant=null,this._mixer._takeBackControlInterpolant(e)),this}setEffectiveTimeScale(e){return this.timeScale=e,this._effectiveTimeScale=this.paused?0:e,this.stopWarping()}getEffectiveTimeScale(){return this._effectiveTimeScale}setDuration(e){return this.timeScale=this._clip.duration/e,this.stopWarping()}syncWith(e){return this.time=e.time,this.timeScale=e.timeScale,this.stopWarping()}halt(e){return this.warp(this._effectiveTimeScale,0,e)}warp(e,t,n){const i=this._mixer,s=i.time,r=this.timeScale;let o=this._timeScaleInterpolant;o===null&&(o=i._lendControlInterpolant(),this._timeScaleInterpolant=o);const l=o.parameterPositions,c=o.sampleValues;return l[0]=s,l[1]=s+n,c[0]=e/r,c[1]=t/r,this}stopWarping(){const e=this._timeScaleInterpolant;return e!==null&&(this._timeScaleInterpolant=null,this._mixer._takeBackControlInterpolant(e)),this}getMixer(){return this._mixer}getClip(){return this._clip}getRoot(){return this._localRoot||this._mixer._root}_update(e,t,n,i){if(!this.enabled){this._updateWeight(e);return}const s=this._startTime;if(s!==null){const l=(e-s)*n;if(l<0||n===0)return;this._startTime=null,t=n*l}t*=this._updateTimeScale(e);const r=this._updateTime(t),o=this._updateWeight(e);if(o>0){const l=this._interpolants,c=this._propertyBindings;switch(this.blendMode){case pc:for(let h=0,u=l.length;h!==u;++h)l[h].evaluate(r),c[h].accumulateAdditive(o);break;case sa:default:for(let h=0,u=l.length;h!==u;++h)l[h].evaluate(r),c[h].accumulate(i,o)}}}_updateWeight(e){let t=0;if(this.enabled){t=this.weight;const n=this._weightInterpolant;if(n!==null){const i=n.evaluate(e)[0];t*=i,e>n.parameterPositions[1]&&(this.stopFading(),i===0&&(this.enabled=!1))}}return this._effectiveWeight=t,t}_updateTimeScale(e){let t=0;if(!this.paused){t=this.timeScale;const n=this._timeScaleInterpolant;n!==null&&(t*=n.evaluate(e)[0],e>n.parameterPositions[1]&&(this.stopWarping(),t===0?this.paused=!0:this.timeScale=t))}return this._effectiveTimeScale=t,t}_updateTime(e){const t=this._clip.duration,n=this.loop;let i=this.time+e,s=this._loopCount;const r=n===cf;if(e===0)return s===-1?i:r&&(s&1)===1?t-i:i;if(n===af){s===-1&&(this._loopCount=0,this._setEndings(!0,!0,!1));e:{if(i>=t)i=t;else if(i<0)i=0;else{this.time=i;break e}this.clampWhenFinished?this.paused=!0:this.enabled=!1,this.time=i,this._mixer.dispatchEvent({type:\"finished\",action:this,direction:e<0?-1:1})}}else{if(s===-1&&(e>=0?(s=0,this._setEndings(!0,this.repetitions===0,r)):this._setEndings(this.repetitions===0,!0,r)),i>=t||i<0){const o=Math.floor(i/t);i-=t*o,s+=Math.abs(o);const l=this.repetitions-s;if(l<=0)this.clampWhenFinished?this.paused=!0:this.enabled=!1,i=e>0?t:0,this.time=i,this._mixer.dispatchEvent({type:\"finished\",action:this,direction:e>0?1:-1});else{if(l===1){const c=e<0;this._setEndings(c,!c,r)}else this._setEndings(!1,!1,r);this._loopCount=s,this.time=i,this._mixer.dispatchEvent({type:\"loop\",action:this,loopDelta:o})}}else this.time=i;if(r&&(s&1)===1)return t-i}return i}_setEndings(e,t,n){const i=this._interpolantSettings;n?(i.endingStart=ps,i.endingEnd=ps):(e?i.endingStart=this.zeroSlopeAtStart?ps:ds:i.endingStart=ao,t?i.endingEnd=this.zeroSlopeAtEnd?ps:ds:i.endingEnd=ao)}_scheduleFading(e,t,n){const i=this._mixer,s=i.time;let r=this._weightInterpolant;r===null&&(r=i._lendControlInterpolant(),this._weightInterpolant=r);const o=r.parameterPositions,l=r.sampleValues;return o[0]=s,l[0]=t,o[1]=s+e,l[1]=n,this}}const _b=new Float32Array(1);class al extends $n{constructor(e){super(),this._root=e,this._initMemoryManager(),this._accuIndex=0,this.time=0,this.timeScale=1}_bindAction(e,t){const n=e._localRoot||this._root,i=e._clip.tracks,s=i.length,r=e._propertyBindings,o=e._interpolants,l=n.uuid,c=this._bindingsByRootAndName;let h=c[l];h===void 0&&(h={},c[l]=h);for(let u=0;u!==s;++u){const f=i[u],d=f.name;let p=h[d];if(p!==void 0)++p.referenceCount,r[u]=p;else{if(p=r[u],p!==void 0){p._cacheIndex===null&&(++p.referenceCount,this._addInactiveBinding(p,l,d));continue}const m=t&&t._propertyBindings[u].binding.parsedPath;p=new Mp(rt.create(n,d,m),f.ValueTypeName,f.getValueSize()),++p.referenceCount,this._addInactiveBinding(p,l,d),r[u]=p}o[u].resultBuffer=p.buffer}}_activateAction(e){if(!this._isActiveAction(e)){if(e._cacheIndex===null){const n=(e._localRoot||this._root).uuid,i=e._clip.uuid,s=this._actionsByClip[i];this._bindAction(e,s&&s.knownActions[0]),this._addInactiveAction(e,i,n)}const t=e._propertyBindings;for(let n=0,i=t.length;n!==i;++n){const s=t[n];s.useCount++===0&&(this._lendBinding(s),s.saveOriginalState())}this._lendAction(e)}}_deactivateAction(e){if(this._isActiveAction(e)){const t=e._propertyBindings;for(let n=0,i=t.length;n!==i;++n){const s=t[n];--s.useCount===0&&(s.restoreOriginalState(),this._takeBackBinding(s))}this._takeBackAction(e)}}_initMemoryManager(){this._actions=[],this._nActiveActions=0,this._actionsByClip={},this._bindings=[],this._nActiveBindings=0,this._bindingsByRootAndName={},this._controlInterpolants=[],this._nActiveControlInterpolants=0;const e=this;this.stats={actions:{get total(){return e._actions.length},get inUse(){return e._nActiveActions}},bindings:{get total(){return e._bindings.length},get inUse(){return e._nActiveBindings}},controlInterpolants:{get total(){return e._controlInterpolants.length},get inUse(){return e._nActiveControlInterpolants}}}}_isActiveAction(e){const t=e._cacheIndex;return t!==null&&t<this._nActiveActions}_addInactiveAction(e,t,n){const i=this._actions,s=this._actionsByClip;let r=s[t];if(r===void 0)r={knownActions:[e],actionByRoot:{}},e._byClipCacheIndex=0,s[t]=r;else{const o=r.knownActions;e._byClipCacheIndex=o.length,o.push(e)}e._cacheIndex=i.length,i.push(e),r.actionByRoot[n]=e}_removeInactiveAction(e){const t=this._actions,n=t[t.length-1],i=e._cacheIndex;n._cacheIndex=i,t[i]=n,t.pop(),e._cacheIndex=null;const s=e._clip.uuid,r=this._actionsByClip,o=r[s],l=o.knownActions,c=l[l.length-1],h=e._byClipCacheIndex;c._byClipCacheIndex=h,l[h]=c,l.pop(),e._byClipCacheIndex=null;const u=o.actionByRoot,f=(e._localRoot||this._root).uuid;delete u[f],l.length===0&&delete r[s],this._removeInactiveBindingsForAction(e)}_removeInactiveBindingsForAction(e){const t=e._propertyBindings;for(let n=0,i=t.length;n!==i;++n){const s=t[n];--s.referenceCount===0&&this._removeInactiveBinding(s)}}_lendAction(e){const t=this._actions,n=e._cacheIndex,i=this._nActiveActions++,s=t[i];e._cacheIndex=i,t[i]=e,s._cacheIndex=n,t[n]=s}_takeBackAction(e){const t=this._actions,n=e._cacheIndex,i=--this._nActiveActions,s=t[i];e._cacheIndex=i,t[i]=e,s._cacheIndex=n,t[n]=s}_addInactiveBinding(e,t,n){const i=this._bindingsByRootAndName,s=this._bindings;let r=i[t];r===void 0&&(r={},i[t]=r),r[n]=e,e._cacheIndex=s.length,s.push(e)}_removeInactiveBinding(e){const t=this._bindings,n=e.binding,i=n.rootNode.uuid,s=n.path,r=this._bindingsByRootAndName,o=r[i],l=t[t.length-1],c=e._cacheIndex;l._cacheIndex=c,t[c]=l,t.pop(),delete o[s],Object.keys(o).length===0&&delete r[i]}_lendBinding(e){const t=this._bindings,n=e._cacheIndex,i=this._nActiveBindings++,s=t[i];e._cacheIndex=i,t[i]=e,s._cacheIndex=n,t[n]=s}_takeBackBinding(e){const t=this._bindings,n=e._cacheIndex,i=--this._nActiveBindings,s=t[i];e._cacheIndex=i,t[i]=e,s._cacheIndex=n,t[n]=s}_lendControlInterpolant(){const e=this._controlInterpolants,t=this._nActiveControlInterpolants++;let n=e[t];return n===void 0&&(n=new xu(new Float32Array(2),new Float32Array(2),1,_b),n.__cacheIndex=t,e[t]=n),n}_takeBackControlInterpolant(e){const t=this._controlInterpolants,n=e.__cacheIndex,i=--this._nActiveControlInterpolants,s=t[i];e.__cacheIndex=i,t[i]=e,s.__cacheIndex=n,t[n]=s}clipAction(e,t,n){const i=t||this._root,s=i.uuid;let r=typeof e==\"string\"?wi.findByName(i,e):e;const o=r!==null?r.uuid:e,l=this._actionsByClip[o];let c=null;if(n===void 0&&(r!==null?n=r.blendMode:n=sa),l!==void 0){const u=l.actionByRoot[s];if(u!==void 0&&u.blendMode===n)return u;c=l.knownActions[0],r===null&&(r=c._clip)}if(r===null)return null;const h=new vb(this,r,t,n);return this._bindAction(h,c),this._addInactiveAction(h,o,s),h}existingAction(e,t){const n=t||this._root,i=n.uuid,s=typeof e==\"string\"?wi.findByName(n,e):e,r=s?s.uuid:e,o=this._actionsByClip[r];return o!==void 0&&o.actionByRoot[i]||null}stopAllAction(){const e=this._actions,t=this._nActiveActions;for(let n=t-1;n>=0;--n)e[n].stop();return this}update(e){e*=this.timeScale;const t=this._actions,n=this._nActiveActions,i=this.time+=e,s=Math.sign(e),r=this._accuIndex^=1;for(let c=0;c!==n;++c)t[c]._update(i,e,s,r);const o=this._bindings,l=this._nActiveBindings;for(let c=0;c!==l;++c)o[c].apply(r);return this}setTime(e){this.time=0;for(let t=0;t<this._actions.length;t++)this._actions[t].time=0;return this.update(e)}getRoot(){return this._root}uncacheClip(e){const t=this._actions,n=e.uuid,i=this._actionsByClip,s=i[n];if(s!==void 0){const r=s.knownActions;for(let o=0,l=r.length;o!==l;++o){const c=r[o];this._deactivateAction(c);const h=c._cacheIndex,u=t[t.length-1];c._cacheIndex=null,c._byClipCacheIndex=null,u._cacheIndex=h,t[h]=u,t.pop(),this._removeInactiveBindingsForAction(c)}delete i[n]}}uncacheRoot(e){const t=e.uuid,n=this._actionsByClip;for(const r in n){const o=n[r].actionByRoot,l=o[t];l!==void 0&&(this._deactivateAction(l),this._removeInactiveAction(l))}const i=this._bindingsByRootAndName,s=i[t];if(s!==void 0)for(const r in s){const o=s[r];o.restoreOriginalState(),this._removeInactiveBinding(o)}}uncacheAction(e,t){const n=this.existingAction(e,t);n!==null&&(this._deactivateAction(n),this._removeInactiveAction(n))}}class Lu{constructor(e){typeof e==\"string\"&&(console.warn(\"THREE.Uniform: Type parameter is no longer needed.\"),e=arguments[1]),this.value=e}clone(){return new Lu(this.value.clone===void 0?this.value:this.value.clone())}}let bb=0;class wb extends $n{constructor(){super(),this.isUniformsGroup=!0,Object.defineProperty(this,\"id\",{value:bb++}),this.name=\"\",this.usage=lo,this.uniforms=[]}add(e){return this.uniforms.push(e),this}remove(e){const t=this.uniforms.indexOf(e);return t!==-1&&this.uniforms.splice(t,1),this}setName(e){return this.name=e,this}setUsage(e){return this.usage=e,this}dispose(){return this.dispatchEvent({type:\"dispose\"}),this}copy(e){this.name=e.name,this.usage=e.usage;const t=e.uniforms;this.uniforms.length=0;for(let n=0,i=t.length;n<i;n++)this.uniforms.push(t[n].clone());return this}clone(){return new this.constructor().copy(this)}}class Mb extends _o{constructor(e,t,n=1){super(e,t),this.isInstancedInterleavedBuffer=!0,this.meshPerAttribute=n}copy(e){return super.copy(e),this.meshPerAttribute=e.meshPerAttribute,this}clone(e){const t=super.clone(e);return t.meshPerAttribute=this.meshPerAttribute,t}toJSON(e){const t=super.toJSON(e);return t.isInstancedInterleavedBuffer=!0,t.meshPerAttribute=this.meshPerAttribute,t}}class Sb{constructor(e,t,n,i,s){this.isGLBufferAttribute=!0,this.buffer=e,this.type=t,this.itemSize=n,this.elementSize=i,this.count=s,this.version=0}set needsUpdate(e){e===!0&&this.version++}setBuffer(e){return this.buffer=e,this}setType(e,t){return this.type=e,this.elementSize=t,this}setItemSize(e){return this.itemSize=e,this}setCount(e){return this.count=e,this}}class Sp{constructor(e,t,n=0,i=1/0){this.ray=new mo(e,t),this.near=n,this.far=i,this.camera=null,this.layers=new xa,this.params={Mesh:{},Line:{threshold:1},LOD:{},Points:{threshold:1},Sprite:{}}}set(e,t){this.ray.set(e,t)}setFromCamera(e,t){t.isPerspectiveCamera?(this.ray.origin.setFromMatrixPosition(t.matrixWorld),this.ray.direction.set(e.x,e.y,.5).unproject(t).sub(this.ray.origin).normalize(),this.camera=t):t.isOrthographicCamera?(this.ray.origin.set(e.x,e.y,(t.near+t.far)/(t.near-t.far)).unproject(t),this.ray.direction.set(0,0,-1).transformDirection(t.matrixWorld),this.camera=t):console.error(\"THREE.Raycaster: Unsupported camera type: \"+t.type)}intersectObject(e,t=!0,n=[]){return Ru(e,this,n,t),n.sort(Tp),n}intersectObjects(e,t=!0,n=[]){for(let i=0,s=e.length;i<s;i++)Ru(e[i],this,n,t);return n.sort(Tp),n}}function Tp(a,e){return a.distance-e.distance}function Ru(a,e,t,n){if(a.layers.test(e.layers)&&a.raycast(e,t),n===!0){const i=a.children;for(let s=0,r=i.length;s<r;s++)Ru(i[s],e,t,!0)}}class Iu{constructor(e=1,t=0,n=0){return this.radius=e,this.phi=t,this.theta=n,this}set(e,t,n){return this.radius=e,this.phi=t,this.theta=n,this}copy(e){return this.radius=e.radius,this.phi=e.phi,this.theta=e.theta,this}makeSafe(){return this.phi=Math.max(1e-6,Math.min(Math.PI-1e-6,this.phi)),this}setFromVector3(e){return this.setFromCartesianCoords(e.x,e.y,e.z)}setFromCartesianCoords(e,t,n){return this.radius=Math.sqrt(e*e+t*t+n*n),this.radius===0?(this.theta=0,this.phi=0):(this.theta=Math.atan2(e,n),this.phi=Math.acos(Ut(t/this.radius,-1,1))),this}clone(){return new this.constructor().copy(this)}}class Tb{constructor(e=1,t=0,n=0){return this.radius=e,this.theta=t,this.y=n,this}set(e,t,n){return this.radius=e,this.theta=t,this.y=n,this}copy(e){return this.radius=e.radius,this.theta=e.theta,this.y=e.y,this}setFromVector3(e){return this.setFromCartesianCoords(e.x,e.y,e.z)}setFromCartesianCoords(e,t,n){return this.radius=Math.sqrt(e*e+n*n),this.theta=Math.atan2(e,n),this.y=t,this}clone(){return new this.constructor().copy(this)}}const Ap=new he;class Ab{constructor(e=new he(1/0,1/0),t=new he(-1/0,-1/0)){this.isBox2=!0,this.min=e,this.max=t}set(e,t){return this.min.copy(e),this.max.copy(t),this}setFromPoints(e){this.makeEmpty();for(let t=0,n=e.length;t<n;t++)this.expandByPoint(e[t]);return this}setFromCenterAndSize(e,t){const n=Ap.copy(t).multiplyScalar(.5);return this.min.copy(e).sub(n),this.max.copy(e).add(n),this}clone(){return new this.constructor().copy(this)}copy(e){return this.min.copy(e.min),this.max.copy(e.max),this}makeEmpty(){return this.min.x=this.min.y=1/0,this.max.x=this.max.y=-1/0,this}isEmpty(){return this.max.x<this.min.x||this.max.y<this.min.y}getCenter(e){return this.isEmpty()?e.set(0,0):e.addVectors(this.min,this.max).multiplyScalar(.5)}getSize(e){return this.isEmpty()?e.set(0,0):e.subVectors(this.max,this.min)}expandByPoint(e){return this.min.min(e),this.max.max(e),this}expandByVector(e){return this.min.sub(e),this.max.add(e),this}expandByScalar(e){return this.min.addScalar(-e),this.max.addScalar(e),this}containsPoint(e){return!(e.x<this.min.x||e.x>this.max.x||e.y<this.min.y||e.y>this.max.y)}containsBox(e){return this.min.x<=e.min.x&&e.max.x<=this.max.x&&this.min.y<=e.min.y&&e.max.y<=this.max.y}getParameter(e,t){return t.set((e.x-this.min.x)/(this.max.x-this.min.x),(e.y-this.min.y)/(this.max.y-this.min.y))}intersectsBox(e){return!(e.max.x<this.min.x||e.min.x>this.max.x||e.max.y<this.min.y||e.min.y>this.max.y)}clampPoint(e,t){return t.copy(e).clamp(this.min,this.max)}distanceToPoint(e){return Ap.copy(e).clamp(this.min,this.max).sub(e).length()}intersect(e){return this.min.max(e.min),this.max.min(e.max),this}union(e){return this.min.min(e.min),this.max.max(e.max),this}translate(e){return this.min.add(e),this.max.add(e),this}equals(e){return e.min.equals(this.min)&&e.max.equals(this.max)}}const Ep=new I,ll=new I;class Eb{constructor(e=new I,t=new I){this.start=e,this.end=t}set(e,t){return this.start.copy(e),this.end.copy(t),this}copy(e){return this.start.copy(e.start),this.end.copy(e.end),this}getCenter(e){return e.addVectors(this.start,this.end).multiplyScalar(.5)}delta(e){return e.subVectors(this.end,this.start)}distanceSq(){return this.start.distanceToSquared(this.end)}distance(){return this.start.distanceTo(this.end)}at(e,t){return this.delta(t).multiplyScalar(e).add(this.start)}closestPointToPointParameter(e,t){Ep.subVectors(e,this.start),ll.subVectors(this.end,this.start);const n=ll.dot(ll);let s=ll.dot(Ep)/n;return t&&(s=Ut(s,0,1)),s}closestPointToPoint(e,t,n){const i=this.closestPointToPointParameter(e,t);return this.delta(n).multiplyScalar(i).add(this.start)}applyMatrix4(e){return this.start.applyMatrix4(e),this.end.applyMatrix4(e),this}equals(e){return e.start.equals(this.start)&&e.end.equals(this.end)}clone(){return new this.constructor().copy(this)}}const Cp=new I;class Cb extends dt{constructor(e,t){super(),this.light=e,this.light.updateMatrixWorld(),this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1,this.color=t;const n=new Xe,i=[0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,-1,0,1,0,0,0,0,1,1,0,0,0,0,-1,1];for(let r=0,o=1,l=32;r<l;r++,o++){const c=r/l*Math.PI*2,h=o/l*Math.PI*2;i.push(Math.cos(c),Math.sin(c),1,Math.cos(h),Math.sin(h),1)}n.setAttribute(\"position\",new Ee(i,3));const s=new Vt({fog:!1,toneMapped:!1});this.cone=new yn(n,s),this.add(this.cone),this.update()}dispose(){this.cone.geometry.dispose(),this.cone.material.dispose()}update(){this.light.updateMatrixWorld();const e=this.light.distance?this.light.distance:1e3,t=e*Math.tan(this.light.angle);this.cone.scale.set(t,t,e),Cp.setFromMatrixPosition(this.light.target.matrixWorld),this.cone.lookAt(Cp),this.color!==void 0?this.cone.material.color.set(this.color):this.cone.material.color.copy(this.light.color)}}const Qi=new I,cl=new Ne,Pu=new Ne;class Lb extends yn{constructor(e){const t=Lp(e),n=new Xe,i=[],s=[],r=new be(0,0,1),o=new be(0,1,0);for(let c=0;c<t.length;c++){const h=t[c];h.parent&&h.parent.isBone&&(i.push(0,0,0),i.push(0,0,0),s.push(r.r,r.g,r.b),s.push(o.r,o.g,o.b))}n.setAttribute(\"position\",new Ee(i,3)),n.setAttribute(\"color\",new Ee(s,3));const l=new Vt({vertexColors:!0,depthTest:!1,depthWrite:!1,toneMapped:!1,transparent:!0});super(n,l),this.isSkeletonHelper=!0,this.type=\"SkeletonHelper\",this.root=e,this.bones=t,this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1}updateMatrixWorld(e){const t=this.bones,n=this.geometry,i=n.getAttribute(\"position\");Pu.copy(this.root.matrixWorld).invert();for(let s=0,r=0;s<t.length;s++){const o=t[s];o.parent&&o.parent.isBone&&(cl.multiplyMatrices(Pu,o.matrixWorld),Qi.setFromMatrixPosition(cl),i.setXYZ(r,Qi.x,Qi.y,Qi.z),cl.multiplyMatrices(Pu,o.parent.matrixWorld),Qi.setFromMatrixPosition(cl),i.setXYZ(r+1,Qi.x,Qi.y,Qi.z),r+=2)}n.getAttribute(\"position\").needsUpdate=!0,super.updateMatrixWorld(e)}}function Lp(a){const e=[];a.isBone===!0&&e.push(a);for(let t=0;t<a.children.length;t++)e.push.apply(e,Lp(a.children[t]));return e}class Rb extends Rt{constructor(e,t,n){const i=new Rs(t,4,2),s=new on({wireframe:!0,fog:!1,toneMapped:!1});super(i,s),this.light=e,this.light.updateMatrixWorld(),this.color=n,this.type=\"PointLightHelper\",this.matrix=this.light.matrixWorld,this.matrixAutoUpdate=!1,this.update()}dispose(){this.geometry.dispose(),this.material.dispose()}update(){this.color!==void 0?this.material.color.set(this.color):this.material.color.copy(this.light.color)}}const Ib=new I,Rp=new be,Ip=new be;class Pb extends dt{constructor(e,t,n){super(),this.light=e,this.light.updateMatrixWorld(),this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1,this.color=n;const i=new Ls(t);i.rotateY(Math.PI*.5),this.material=new on({wireframe:!0,fog:!1,toneMapped:!1}),this.color===void 0&&(this.material.vertexColors=!0);const s=i.getAttribute(\"position\"),r=new Float32Array(s.count*3);i.setAttribute(\"color\",new pt(r,3)),this.add(new Rt(i,this.material)),this.update()}dispose(){this.children[0].geometry.dispose(),this.children[0].material.dispose()}update(){const e=this.children[0];if(this.color!==void 0)this.material.color.set(this.color);else{const t=e.geometry.getAttribute(\"color\");Rp.copy(this.light.color),Ip.copy(this.light.groundColor);for(let n=0,i=t.count;n<i;n++){const s=n<i/2?Rp:Ip;t.setXYZ(n,s.r,s.g,s.b)}t.needsUpdate=!0}e.lookAt(Ib.setFromMatrixPosition(this.light.matrixWorld).negate())}}class Pp extends yn{constructor(e=10,t=10,n=4473924,i=8947848){n=new be(n),i=new be(i);const s=t/2,r=e/t,o=e/2,l=[],c=[];for(let f=0,d=0,p=-o;f<=t;f++,p+=r){l.push(-o,0,p,o,0,p),l.push(p,0,-o,p,0,o);const m=f===s?n:i;m.toArray(c,d),d+=3,m.toArray(c,d),d+=3,m.toArray(c,d),d+=3,m.toArray(c,d),d+=3}const h=new Xe;h.setAttribute(\"position\",new Ee(l,3)),h.setAttribute(\"color\",new Ee(c,3));const u=new Vt({vertexColors:!0,toneMapped:!1});super(h,u),this.type=\"GridHelper\"}}class Db extends yn{constructor(e=10,t=16,n=8,i=64,s=4473924,r=8947848){s=new be(s),r=new be(r);const o=[],l=[];for(let u=0;u<=t;u++){const f=u/t*(Math.PI*2),d=Math.sin(f)*e,p=Math.cos(f)*e;o.push(0,0,0),o.push(d,0,p);const m=u&1?s:r;l.push(m.r,m.g,m.b),l.push(m.r,m.g,m.b)}for(let u=0;u<=n;u++){const f=u&1?s:r,d=e-e/n*u;for(let p=0;p<i;p++){let m=p/i*(Math.PI*2),g=Math.sin(m)*d,y=Math.cos(m)*d;o.push(g,0,y),l.push(f.r,f.g,f.b),m=(p+1)/i*(Math.PI*2),g=Math.sin(m)*d,y=Math.cos(m)*d,o.push(g,0,y),l.push(f.r,f.g,f.b)}}const c=new Xe;c.setAttribute(\"position\",new Ee(o,3)),c.setAttribute(\"color\",new Ee(l,3));const h=new Vt({vertexColors:!0,toneMapped:!1});super(c,h),this.type=\"PolarGridHelper\"}}const Dp=new I,ul=new I,Fp=new I;class Fb extends dt{constructor(e,t,n){super(),this.light=e,this.light.updateMatrixWorld(),this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1,this.color=n,t===void 0&&(t=1);let i=new Xe;i.setAttribute(\"position\",new Ee([-t,t,0,t,t,0,t,-t,0,-t,-t,0,-t,t,0],3));const s=new Vt({fog:!1,toneMapped:!1});this.lightPlane=new Xn(i,s),this.add(this.lightPlane),i=new Xe,i.setAttribute(\"position\",new Ee([0,0,0,0,0,1],3)),this.targetLine=new Xn(i,s),this.add(this.targetLine),this.update()}dispose(){this.lightPlane.geometry.dispose(),this.lightPlane.material.dispose(),this.targetLine.geometry.dispose(),this.targetLine.material.dispose()}update(){Dp.setFromMatrixPosition(this.light.matrixWorld),ul.setFromMatrixPosition(this.light.target.matrixWorld),Fp.subVectors(ul,Dp),this.lightPlane.lookAt(ul),this.color!==void 0?(this.lightPlane.material.color.set(this.color),this.targetLine.material.color.set(this.color)):(this.lightPlane.material.color.copy(this.light.color),this.targetLine.material.color.copy(this.light.color)),this.targetLine.lookAt(ul),this.targetLine.scale.z=Fp.length()}}const hl=new I,Bt=new Ra;class Nb extends yn{constructor(e){const t=new Xe,n=new Vt({color:16777215,vertexColors:!0,toneMapped:!1}),i=[],s=[],r={};o(\"n1\",\"n2\"),o(\"n2\",\"n4\"),o(\"n4\",\"n3\"),o(\"n3\",\"n1\"),o(\"f1\",\"f2\"),o(\"f2\",\"f4\"),o(\"f4\",\"f3\"),o(\"f3\",\"f1\"),o(\"n1\",\"f1\"),o(\"n2\",\"f2\"),o(\"n3\",\"f3\"),o(\"n4\",\"f4\"),o(\"p\",\"n1\"),o(\"p\",\"n2\"),o(\"p\",\"n3\"),o(\"p\",\"n4\"),o(\"u1\",\"u2\"),o(\"u2\",\"u3\"),o(\"u3\",\"u1\"),o(\"c\",\"t\"),o(\"p\",\"c\"),o(\"cn1\",\"cn2\"),o(\"cn3\",\"cn4\"),o(\"cf1\",\"cf2\"),o(\"cf3\",\"cf4\");function o(p,m){l(p),l(m)}function l(p){i.push(0,0,0),s.push(0,0,0),r[p]===void 0&&(r[p]=[]),r[p].push(i.length/3-1)}t.setAttribute(\"position\",new Ee(i,3)),t.setAttribute(\"color\",new Ee(s,3)),super(t,n),this.type=\"CameraHelper\",this.camera=e,this.camera.updateProjectionMatrix&&this.camera.updateProjectionMatrix(),this.matrix=e.matrixWorld,this.matrixAutoUpdate=!1,this.pointMap=r,this.update();const c=new be(16755200),h=new be(16711680),u=new be(43775),f=new be(16777215),d=new be(3355443);this.setColors(c,h,u,f,d)}setColors(e,t,n,i,s){const o=this.geometry.getAttribute(\"color\");o.setXYZ(0,e.r,e.g,e.b),o.setXYZ(1,e.r,e.g,e.b),o.setXYZ(2,e.r,e.g,e.b),o.setXYZ(3,e.r,e.g,e.b),o.setXYZ(4,e.r,e.g,e.b),o.setXYZ(5,e.r,e.g,e.b),o.setXYZ(6,e.r,e.g,e.b),o.setXYZ(7,e.r,e.g,e.b),o.setXYZ(8,e.r,e.g,e.b),o.setXYZ(9,e.r,e.g,e.b),o.setXYZ(10,e.r,e.g,e.b),o.setXYZ(11,e.r,e.g,e.b),o.setXYZ(12,e.r,e.g,e.b),o.setXYZ(13,e.r,e.g,e.b),o.setXYZ(14,e.r,e.g,e.b),o.setXYZ(15,e.r,e.g,e.b),o.setXYZ(16,e.r,e.g,e.b),o.setXYZ(17,e.r,e.g,e.b),o.setXYZ(18,e.r,e.g,e.b),o.setXYZ(19,e.r,e.g,e.b),o.setXYZ(20,e.r,e.g,e.b),o.setXYZ(21,e.r,e.g,e.b),o.setXYZ(22,e.r,e.g,e.b),o.setXYZ(23,e.r,e.g,e.b),o.setXYZ(24,t.r,t.g,t.b),o.setXYZ(25,t.r,t.g,t.b),o.setXYZ(26,t.r,t.g,t.b),o.setXYZ(27,t.r,t.g,t.b),o.setXYZ(28,t.r,t.g,t.b),o.setXYZ(29,t.r,t.g,t.b),o.setXYZ(30,t.r,t.g,t.b),o.setXYZ(31,t.r,t.g,t.b),o.setXYZ(32,n.r,n.g,n.b),o.setXYZ(33,n.r,n.g,n.b),o.setXYZ(34,n.r,n.g,n.b),o.setXYZ(35,n.r,n.g,n.b),o.setXYZ(36,n.r,n.g,n.b),o.setXYZ(37,n.r,n.g,n.b),o.setXYZ(38,i.r,i.g,i.b),o.setXYZ(39,i.r,i.g,i.b),o.setXYZ(40,s.r,s.g,s.b),o.setXYZ(41,s.r,s.g,s.b),o.setXYZ(42,s.r,s.g,s.b),o.setXYZ(43,s.r,s.g,s.b),o.setXYZ(44,s.r,s.g,s.b),o.setXYZ(45,s.r,s.g,s.b),o.setXYZ(46,s.r,s.g,s.b),o.setXYZ(47,s.r,s.g,s.b),o.setXYZ(48,s.r,s.g,s.b),o.setXYZ(49,s.r,s.g,s.b),o.needsUpdate=!0}update(){const e=this.geometry,t=this.pointMap,n=1,i=1;Bt.projectionMatrixInverse.copy(this.camera.projectionMatrixInverse),Wt(\"c\",t,e,Bt,0,0,-1),Wt(\"t\",t,e,Bt,0,0,1),Wt(\"n1\",t,e,Bt,-n,-i,-1),Wt(\"n2\",t,e,Bt,n,-i,-1),Wt(\"n3\",t,e,Bt,-n,i,-1),Wt(\"n4\",t,e,Bt,n,i,-1),Wt(\"f1\",t,e,Bt,-n,-i,1),Wt(\"f2\",t,e,Bt,n,-i,1),Wt(\"f3\",t,e,Bt,-n,i,1),Wt(\"f4\",t,e,Bt,n,i,1),Wt(\"u1\",t,e,Bt,n*.7,i*1.1,-1),Wt(\"u2\",t,e,Bt,-n*.7,i*1.1,-1),Wt(\"u3\",t,e,Bt,0,i*2,-1),Wt(\"cf1\",t,e,Bt,-n,0,1),Wt(\"cf2\",t,e,Bt,n,0,1),Wt(\"cf3\",t,e,Bt,0,-i,1),Wt(\"cf4\",t,e,Bt,0,i,1),Wt(\"cn1\",t,e,Bt,-n,0,-1),Wt(\"cn2\",t,e,Bt,n,0,-1),Wt(\"cn3\",t,e,Bt,0,-i,-1),Wt(\"cn4\",t,e,Bt,0,i,-1),e.getAttribute(\"position\").needsUpdate=!0}dispose(){this.geometry.dispose(),this.material.dispose()}}function Wt(a,e,t,n,i,s,r){hl.set(i,s,r).unproject(n);const o=e[a];if(o!==void 0){const l=t.getAttribute(\"position\");for(let c=0,h=o.length;c<h;c++)l.setXYZ(o[c],hl.x,hl.y,hl.z)}}const fl=new di;class kb extends yn{constructor(e,t=16776960){const n=new Uint16Array([0,1,1,2,2,3,3,0,4,5,5,6,6,7,7,4,0,4,1,5,2,6,3,7]),i=new Float32Array(8*3),s=new Xe;s.setIndex(new pt(n,1)),s.setAttribute(\"position\",new pt(i,3)),super(s,new Vt({color:t,toneMapped:!1})),this.object=e,this.type=\"BoxHelper\",this.matrixAutoUpdate=!1,this.update()}update(e){if(e!==void 0&&console.warn(\"THREE.BoxHelper: .update() has no longer arguments.\"),this.object!==void 0&&fl.setFromObject(this.object),fl.isEmpty())return;const t=fl.min,n=fl.max,i=this.geometry.attributes.position,s=i.array;s[0]=n.x,s[1]=n.y,s[2]=n.z,s[3]=t.x,s[4]=n.y,s[5]=n.z,s[6]=t.x,s[7]=t.y,s[8]=n.z,s[9]=n.x,s[10]=t.y,s[11]=n.z,s[12]=n.x,s[13]=n.y,s[14]=t.z,s[15]=t.x,s[16]=n.y,s[17]=t.z,s[18]=t.x,s[19]=t.y,s[20]=t.z,s[21]=n.x,s[22]=t.y,s[23]=t.z,i.needsUpdate=!0,this.geometry.computeBoundingSphere()}setFromObject(e){return this.object=e,this.update(),this}copy(e,t){return super.copy(e,t),this.object=e.object,this}}class Ob extends yn{constructor(e,t=16776960){const n=new Uint16Array([0,1,1,2,2,3,3,0,4,5,5,6,6,7,7,4,0,4,1,5,2,6,3,7]),i=[1,1,1,-1,1,1,-1,-1,1,1,-1,1,1,1,-1,-1,1,-1,-1,-1,-1,1,-1,-1],s=new Xe;s.setIndex(new pt(n,1)),s.setAttribute(\"position\",new Ee(i,3)),super(s,new Vt({color:t,toneMapped:!1})),this.box=e,this.type=\"Box3Helper\",this.geometry.computeBoundingSphere()}updateMatrixWorld(e){const t=this.box;t.isEmpty()||(t.getCenter(this.position),t.getSize(this.scale),this.scale.multiplyScalar(.5),super.updateMatrixWorld(e))}}class Bb extends Xn{constructor(e,t=1,n=16776960){const i=n,s=[1,-1,0,-1,1,0,-1,-1,0,1,1,0,-1,1,0,-1,-1,0,1,-1,0,1,1,0],r=new Xe;r.setAttribute(\"position\",new Ee(s,3)),r.computeBoundingSphere(),super(r,new Vt({color:i,toneMapped:!1})),this.type=\"PlaneHelper\",this.plane=e,this.size=t;const o=[1,1,0,-1,1,0,-1,-1,0,1,1,0,-1,-1,0,1,-1,0],l=new Xe;l.setAttribute(\"position\",new Ee(o,3)),l.computeBoundingSphere(),this.add(new Rt(l,new on({color:i,opacity:.2,transparent:!0,depthWrite:!1,toneMapped:!1})))}updateMatrixWorld(e){this.position.set(0,0,0),this.scale.set(.5*this.size,.5*this.size,1),this.lookAt(this.plane.normal),this.translateZ(-this.plane.constant),super.updateMatrixWorld(e)}}const Np=new I;let dl,Du;class zb extends dt{constructor(e=new I(0,0,1),t=new I(0,0,0),n=1,i=16776960,s=n*.2,r=s*.2){super(),this.type=\"ArrowHelper\",dl===void 0&&(dl=new Xe,dl.setAttribute(\"position\",new Ee([0,0,0,0,1,0],3)),Du=new Zi(0,.5,1,5,1),Du.translate(0,-.5,0)),this.position.copy(t),this.line=new Xn(dl,new Vt({color:i,toneMapped:!1})),this.line.matrixAutoUpdate=!1,this.add(this.line),this.cone=new Rt(Du,new on({color:i,toneMapped:!1})),this.cone.matrixAutoUpdate=!1,this.add(this.cone),this.setDirection(e),this.setLength(n,s,r)}setDirection(e){if(e.y>.99999)this.quaternion.set(0,0,0,1);else if(e.y<-.99999)this.quaternion.set(1,0,0,0);else{Np.set(e.z,0,-e.x).normalize();const t=Math.acos(e.y);this.quaternion.setFromAxisAngle(Np,t)}}setLength(e,t=e*.2,n=t*.2){this.line.scale.set(1,Math.max(1e-4,e-t),1),this.line.updateMatrix(),this.cone.scale.set(n,t,n),this.cone.position.y=e,this.cone.updateMatrix()}setColor(e){this.line.material.color.set(e),this.cone.material.color.set(e)}copy(e){return super.copy(e,!1),this.line.copy(e.line),this.cone.copy(e.cone),this}}class kp extends yn{constructor(e=1){const t=[0,0,0,e,0,0,0,0,0,0,e,0,0,0,0,0,0,e],n=[1,0,0,1,.6,0,0,1,0,.6,1,0,0,0,1,0,.6,1],i=new Xe;i.setAttribute(\"position\",new Ee(t,3)),i.setAttribute(\"color\",new Ee(n,3));const s=new Vt({vertexColors:!0,toneMapped:!1});super(i,s),this.type=\"AxesHelper\"}setColors(e,t,n){const i=new be,s=this.geometry.attributes.color.array;return i.set(e),i.toArray(s,0),i.toArray(s,3),i.set(t),i.toArray(s,6),i.toArray(s,9),i.set(n),i.toArray(s,12),i.toArray(s,15),this.geometry.attributes.color.needsUpdate=!0,this}dispose(){this.geometry.dispose(),this.material.dispose()}}class Ub{constructor(){this.type=\"ShapePath\",this.color=new be,this.subPaths=[],this.currentPath=null}moveTo(e,t){return this.currentPath=new Lo,this.subPaths.push(this.currentPath),this.currentPath.moveTo(e,t),this}lineTo(e,t){return this.currentPath.lineTo(e,t),this}quadraticCurveTo(e,t,n,i){return this.currentPath.quadraticCurveTo(e,t,n,i),this}bezierCurveTo(e,t,n,i,s,r){return this.currentPath.bezierCurveTo(e,t,n,i,s,r),this}splineThru(e){return this.currentPath.splineThru(e),this}toShapes(e,t){function n(x){const b=[];for(let v=0,M=x.length;v<M;v++){const T=x[v],C=new Cs;C.curves=T.curves,b.push(C)}return b}function i(x,b){const v=b.length;let M=!1;for(let T=v-1,C=0;C<v;T=C++){let _=b[T],E=b[C],F=E.x-_.x,U=E.y-_.y;if(Math.abs(U)>Number.EPSILON){if(U<0&&(_=b[C],F=-F,E=b[T],U=-U),x.y<_.y||x.y>E.y)continue;if(x.y===_.y){if(x.x===_.x)return!0}else{const q=U*(x.x-_.x)-F*(x.y-_.y);if(q===0)return!0;if(q<0)continue;M=!M}}else{if(x.y!==_.y)continue;if(E.x<=x.x&&x.x<=_.x||_.x<=x.x&&x.x<=E.x)return!0}}return M}const s=ti.isClockWise,r=this.subPaths;if(r.length===0)return[];if(t===!0)return n(r);let o,l,c;const h=[];if(r.length===1)return l=r[0],c=new Cs,c.curves=l.curves,h.push(c),h;let u=!s(r[0].getPoints());u=e?!u:u;const f=[],d=[];let p=[],m=0,g;d[m]=void 0,p[m]=[];for(let x=0,b=r.length;x<b;x++)l=r[x],g=l.getPoints(),o=s(g),o=e?!o:o,o?(!u&&d[m]&&m++,d[m]={s:new Cs,p:g},d[m].s.curves=l.curves,u&&m++,p[m]=[]):p[m].push({h:l,p:g[0]});if(!d[0])return n(r);if(d.length>1){let x=!1,b=0;for(let v=0,M=d.length;v<M;v++)f[v]=[];for(let v=0,M=d.length;v<M;v++){const T=p[v];for(let C=0;C<T.length;C++){const _=T[C];let E=!0;for(let F=0;F<d.length;F++)i(_.p,d[F].p)&&(v!==F&&b++,E?(E=!1,f[F].push(_)):x=!0);E&&f[v].push(_)}}b>0&&x===!1&&(p=f)}let y;for(let x=0,b=d.length;x<b;x++){c=d[x].s,h.push(c),y=p[x];for(let v=0,M=y.length;v<M;v++)c.holes.push(y[v].h)}return h}}const Si=Gb();function Gb(){const a=new ArrayBuffer(4),e=new Float32Array(a),t=new Uint32Array(a),n=new Uint32Array(512),i=new Uint32Array(512);for(let l=0;l<256;++l){const c=l-127;c<-27?(n[l]=0,n[l|256]=32768,i[l]=24,i[l|256]=24):c<-14?(n[l]=1024>>-c-14,n[l|256]=1024>>-c-14|32768,i[l]=-c-1,i[l|256]=-c-1):c<=15?(n[l]=c+15<<10,n[l|256]=c+15<<10|32768,i[l]=13,i[l|256]=13):c<128?(n[l]=31744,n[l|256]=64512,i[l]=24,i[l|256]=24):(n[l]=31744,n[l|256]=64512,i[l]=13,i[l|256]=13)}const s=new Uint32Array(2048),r=new Uint32Array(64),o=new Uint32Array(64);for(let l=1;l<1024;++l){let c=l<<13,h=0;for(;(c&8388608)===0;)c<<=1,h-=8388608;c&=-8388609,h+=947912704,s[l]=c|h}for(let l=1024;l<2048;++l)s[l]=939524096+(l-1024<<13);for(let l=1;l<31;++l)r[l]=l<<23;r[31]=1199570944,r[32]=2147483648;for(let l=33;l<63;++l)r[l]=2147483648+(l-32<<23);r[63]=3347054592;for(let l=1;l<64;++l)l!==32&&(o[l]=1024);return{floatView:e,uint32View:t,baseTable:n,shiftTable:i,mantissaTable:s,exponentTable:r,offsetTable:o}}function Vb(a){Math.abs(a)>65504&&console.warn(\"THREE.DataUtils.toHalfFloat(): Value out of range.\"),a=Ut(a,-65504,65504),Si.floatView[0]=a;const e=Si.uint32View[0],t=e>>23&511;return Si.baseTable[t]+((e&8388607)>>Si.shiftTable[t])}function Hb(a){const e=a>>10;return Si.uint32View[0]=Si.mantissaTable[Si.offsetTable[e]+(a&1023)]+Si.exponentTable[e],Si.floatView[0]}var Wb=Object.freeze({__proto__:null,toHalfFloat:Vb,fromHalfFloat:Hb});class qb extends Xe{constructor(){console.error(\"THREE.ParametricGeometry has been moved to /examples/jsm/geometries/ParametricGeometry.js\"),super()}}class Xb extends Xe{constructor(){console.error(\"THREE.TextGeometry has been moved to /examples/jsm/geometries/TextGeometry.js\"),super()}}function jb(){console.error(\"THREE.FontLoader has been moved to /examples/jsm/loaders/FontLoader.js\")}function Yb(){console.error(\"THREE.Font has been moved to /examples/jsm/loaders/FontLoader.js\")}function Zb(){console.error(\"THREE.ImmediateRenderObject has been removed.\")}class Kb extends Rn{constructor(e,t,n){console.error('THREE.WebGLMultisampleRenderTarget has been removed. Use a normal render target and set the \"samples\" property to greater 0 to enable multisampling.'),super(e,t,n),this.samples=4}}class Jb extends fo{constructor(e,t,n,i){console.warn(\"THREE.DataTexture2DArray has been renamed to DataArrayTexture.\"),super(e,t,n,i)}}class $b extends ha{constructor(e,t,n,i){console.warn(\"THREE.DataTexture3D has been renamed to Data3DTexture.\"),super(e,t,n,i)}}typeof __THREE_DEVTOOLS__!=\"undefined\"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent(\"register\",{detail:{revision:$o}})),typeof window!=\"undefined\"&&(window.__THREE__?console.warn(\"WARNING: Multiple instances of Three.js being imported.\"):window.__THREE__=$o);var Qb=Object.freeze(Object.defineProperty({__proto__:null,ACESFilmicToneMapping:Wh,AddEquation:cs,AddOperation:Uh,AdditiveAnimationBlendMode:pc,AdditiveBlending:Bl,AlphaFormat:Jh,AlwaysDepth:Dh,AlwaysStencilFunc:pf,AmbientLight:ko,AmbientLightProbe:nb,AnimationClip:wi,AnimationLoader:Y_,AnimationMixer:al,AnimationObjectGroup:xb,AnimationUtils:W_,ArcCurve:Id,ArrayCamera:ad,ArrowHelper:zb,Audio:bp,AudioAnalyser:lb,AudioContext:Tu,AudioListener:rb,AudioLoader:eb,AxesHelper:kp,BackSide:Cn,BasicDepthPacking:hf,BasicShadowMap:$m,Bone:Ts,BooleanKeyframeTrack:Ds,Box2:Ab,Box3:di,Box3Helper:Ob,BoxBufferGeometry:vi,BoxGeometry:vi,BoxHelper:kb,BufferAttribute:pt,BufferGeometry:Xe,BufferGeometryLoader:fp,ByteType:Xh,Cache:ks,Camera:Ra,CameraHelper:Nb,CanvasTexture:p_,CapsuleBufferGeometry:Mr,CapsuleGeometry:Mr,CatmullRomCurve3:Pd,CineonToneMapping:Hh,CircleBufferGeometry:Sr,CircleGeometry:Sr,ClampToEdgeWrapping:jt,Clock:Au,Color:be,ColorKeyframeTrack:vu,ColorManagement:Ln,CompressedTexture:Rd,CompressedTextureLoader:ip,ConeBufferGeometry:Tr,ConeGeometry:Tr,CubeCamera:If,CubeReflectionMapping:Ii,CubeRefractionMapping:Pi,CubeTexture:xo,CubeTextureLoader:Z_,CubeUVReflectionMapping:Ys,CubicBezierCurve:au,CubicBezierCurve3:Fd,CubicInterpolant:ep,CullFaceBack:kl,CullFaceFront:yh,CullFaceFrontBack:Jm,CullFaceNone:gh,Curve:Fn,CurvePath:kd,CustomBlending:_h,CustomToneMapping:qh,CylinderBufferGeometry:Zi,CylinderGeometry:Zi,Cylindrical:Tb,Data3DTexture:ha,DataArrayTexture:fo,DataTexture:_r,DataTexture2DArray:Jb,DataTexture3D:$b,DataTextureLoader:sp,DataUtils:Wb,DecrementStencilOp:cg,DecrementWrapStencilOp:hg,DefaultLoadingManager:bu,DepthFormat:Ni,DepthStencilFormat:hs,DepthTexture:ld,DirectionalLight:Or,DirectionalLightHelper:Fb,DiscreteInterpolant:tp,DodecahedronBufferGeometry:Ar,DodecahedronGeometry:Ar,DoubleSide:ci,DstAlphaFactor:Eh,DstColorFactor:Lh,DynamicCopyUsage:Ag,DynamicDrawUsage:_g,DynamicReadUsage:Mg,EdgesGeometry:Od,EllipseCurve:Ya,EqualDepth:Nh,EqualStencilFunc:mg,EquirectangularReflectionMapping:js,EquirectangularRefractionMapping:to,Euler:In,EventDispatcher:$n,ExtrudeBufferGeometry:Cr,ExtrudeGeometry:Cr,FileLoader:Jt,FlatShading:vh,Float16BufferAttribute:l0,Float32BufferAttribute:Ee,Float64BufferAttribute:c0,FloatType:hi,Fog:Oa,FogExp2:ka,Font:Yb,FontLoader:jb,FramebufferTexture:d_,FrontSide:li,Frustum:Pa,GLBufferAttribute:Sb,GLSL1:Cg,GLSL3:gc,GreaterDepth:Oh,GreaterEqualDepth:kh,GreaterEqualStencilFunc:vg,GreaterStencilFunc:yg,GridHelper:Pp,Group:dn,HalfFloatType:Ks,HemisphereLight:wu,HemisphereLightHelper:Pb,HemisphereLightProbe:tb,IcosahedronBufferGeometry:Lr,IcosahedronGeometry:Lr,ImageBitmapLoader:gp,ImageLoader:Do,ImageUtils:bc,ImmediateRenderObject:Zb,IncrementStencilOp:lg,IncrementWrapStencilOp:ug,InstancedBufferAttribute:br,InstancedBufferGeometry:hp,InstancedInterleavedBuffer:Mb,InstancedMesh:wd,Int16BufferAttribute:o0,Int32BufferAttribute:a0,Int8BufferAttribute:i0,IntType:Yh,InterleavedBuffer:_o,InterleavedBufferAttribute:ji,Interpolant:kr,InterpolateDiscrete:Js,InterpolateLinear:fs,InterpolateSmooth:ia,InvertStencilOp:fg,KeepStencilOp:ra,KeyframeTrack:jn,LOD:pd,LatheBufferGeometry:Es,LatheGeometry:Es,Layers:xa,LessDepth:Fh,LessEqualDepth:Qo,LessEqualStencilFunc:gg,LessStencilFunc:pg,Light:Ji,LightProbe:sl,Line:Xn,Line3:Eb,LineBasicMaterial:Vt,LineCurve:Ka,LineCurve3:Nd,LineDashedMaterial:$d,LineLoop:tu,LineSegments:yn,LinearEncoding:fi,LinearFilter:Pt,LinearInterpolant:xu,LinearMipMapLinearFilter:ig,LinearMipMapNearestFilter:ng,LinearMipmapLinearFilter:Kn,LinearMipmapNearestFilter:ta,LinearSRGBColorSpace:Oi,LinearToneMapping:Gh,Loader:Ht,LoaderUtils:sn,LoadingManager:_u,LoopOnce:af,LoopPingPong:cf,LoopRepeat:lf,LuminanceAlphaFormat:ef,LuminanceFormat:Qh,MOUSE:os,Material:Gt,MaterialLoader:rl,MathUtils:nn,Matrix3:un,Matrix4:Ne,MaxEquation:Vl,Mesh:Rt,MeshBasicMaterial:on,MeshDepthMaterial:Zc,MeshDistanceMaterial:Kc,MeshLambertMaterial:il,MeshMatcapMaterial:Jd,MeshNormalMaterial:Kd,MeshPhongMaterial:ni,MeshPhysicalMaterial:_i,MeshStandardMaterial:Is,MeshToonMaterial:Zd,MinEquation:Gl,MirroredRepeatWrapping:Zs,MixOperation:zh,MultiplyBlending:Ul,MultiplyOperation:eo,NearestFilter:zt,NearestMipMapLinearFilter:tg,NearestMipMapNearestFilter:eg,NearestMipmapLinearFilter:io,NearestMipmapNearestFilter:no,NeverDepth:Ph,NeverStencilFunc:dg,NoBlending:ui,NoColorSpace:rg,NoToneMapping:Zn,NormalAnimationBlendMode:sa,NormalBlending:ls,NotEqualDepth:Bh,NotEqualStencilFunc:xg,NumberKeyframeTrack:Fs,Object3D:dt,ObjectLoader:dp,ObjectSpaceNormalMap:df,OctahedronBufferGeometry:Ls,OctahedronGeometry:Ls,OneFactor:Sh,OneMinusDstAlphaFactor:Ch,OneMinusDstColorFactor:Rh,OneMinusSrcAlphaFactor:Wl,OneMinusSrcColorFactor:Ah,OrthographicCamera:ws,PCFShadowMap:Ol,PCFSoftShadowMap:xh,PMREMGenerator:Wc,ParametricGeometry:qb,Path:Lo,PerspectiveCamera:Ot,Plane:Xi,PlaneBufferGeometry:bs,PlaneGeometry:bs,PlaneHelper:Bb,PointLight:$i,PointLightHelper:Rb,Points:wr,PointsMaterial:Yi,PolarGridHelper:Db,PolyhedronBufferGeometry:ei,PolyhedronGeometry:ei,PositionalAudio:ab,PropertyBinding:rt,PropertyMixer:Mp,QuadraticBezierCurve:lu,QuadraticBezierCurve3:cu,Quaternion:kt,QuaternionKeyframeTrack:ii,QuaternionLinearInterpolant:np,REVISION:$o,RGBADepthPacking:ff,RGBAFormat:Mn,RGBAIntegerFormat:of,RGBA_ASTC_10x10_Format:uc,RGBA_ASTC_10x5_Format:ac,RGBA_ASTC_10x6_Format:lc,RGBA_ASTC_10x8_Format:cc,RGBA_ASTC_12x10_Format:hc,RGBA_ASTC_12x12_Format:fc,RGBA_ASTC_4x4_Format:Ql,RGBA_ASTC_5x4_Format:ec,RGBA_ASTC_5x5_Format:tc,RGBA_ASTC_6x5_Format:nc,RGBA_ASTC_6x6_Format:ic,RGBA_ASTC_8x5_Format:sc,RGBA_ASTC_8x6_Format:rc,RGBA_ASTC_8x8_Format:oc,RGBA_BPTC_Format:dc,RGBA_ETC2_EAC_Format:$l,RGBA_PVRTC_2BPPV1_Format:Zl,RGBA_PVRTC_4BPPV1_Format:Yl,RGBA_S3TC_DXT1_Format:na,RGBA_S3TC_DXT3_Format:ro,RGBA_S3TC_DXT5_Format:oo,RGBFormat:$h,RGB_ETC1_Format:Kl,RGB_ETC2_Format:Jl,RGB_PVRTC_2BPPV1_Format:jl,RGB_PVRTC_4BPPV1_Format:Xl,RGB_S3TC_DXT1_Format:so,RGFormat:sf,RGIntegerFormat:rf,RawShaderMaterial:Yd,Ray:mo,Raycaster:Sp,RectAreaLight:cp,RedFormat:tf,RedIntegerFormat:nf,ReinhardToneMapping:Vh,RepeatWrapping:cn,ReplaceStencilOp:ag,ReverseSubtractEquation:wh,RingBufferGeometry:Rr,RingGeometry:Rr,SRGBColorSpace:Jn,Scene:Ba,ShaderChunk:st,ShaderLib:qn,ShaderMaterial:Qn,ShadowMaterial:jd,Shape:Cs,ShapeBufferGeometry:Ir,ShapeGeometry:Ir,ShapePath:Ub,ShapeUtils:ti,ShortType:jh,Skeleton:As,SkeletonHelper:Lb,SkinnedMesh:To,SmoothShading:Qm,Source:ys,Sphere:Ui,SphereBufferGeometry:Rs,SphereGeometry:Rs,Spherical:Iu,SphericalHarmonics3:up,SplineCurve:uu,SpotLight:Fo,SpotLightHelper:Cb,Sprite:So,SpriteMaterial:za,SrcAlphaFactor:Hl,SrcAlphaSaturateFactor:Ih,SrcColorFactor:Th,StaticCopyUsage:Tg,StaticDrawUsage:lo,StaticReadUsage:wg,StereoCamera:ib,StreamCopyUsage:Eg,StreamDrawUsage:bg,StreamReadUsage:Sg,StringKeyframeTrack:Ns,SubtractEquation:bh,SubtractiveBlending:zl,TOUCH:as,TangentSpaceNormalMap:ki,TetrahedronBufferGeometry:Pr,TetrahedronGeometry:Pr,TextGeometry:Xb,Texture:Lt,TextureLoader:Os,TorusBufferGeometry:Dr,TorusGeometry:Dr,TorusKnotBufferGeometry:Fr,TorusKnotGeometry:Fr,Triangle:Pn,TriangleFanDrawMode:mc,TriangleStripDrawMode:uf,TrianglesDrawMode:sg,TubeBufferGeometry:Nr,TubeGeometry:Nr,UVMapping:ea,Uint16BufferAttribute:ba,Uint32BufferAttribute:Fc,Uint8BufferAttribute:s0,Uint8ClampedBufferAttribute:r0,Uniform:Lu,UniformsGroup:wb,UniformsLib:De,UniformsUtils:Rf,UnsignedByteType:Di,UnsignedInt248Type:us,UnsignedIntType:Fi,UnsignedShort4444Type:Zh,UnsignedShort5551Type:Kh,UnsignedShortType:ql,VSMShadowMap:Xs,Vector2:he,Vector3:I,Vector4:ft,VectorKeyframeTrack:bi,VideoTexture:f_,WebGL1Renderer:cd,WebGL3DRenderTarget:jg,WebGLArrayRenderTarget:Xg,WebGLCubeRenderTarget:Pf,WebGLMultipleRenderTargets:Yg,WebGLMultisampleRenderTarget:Kb,WebGLRenderTarget:Rn,WebGLRenderer:$c,WebGLUtils:od,WireframeGeometry:Wd,WrapAroundEnding:ao,ZeroCurvatureEnding:ds,ZeroFactor:Mh,ZeroSlopeEnding:ps,ZeroStencilOp:og,_SRGBAFormat:oa,sRGBEncoding:it},Symbol.toStringTag,{value:\"Module\"}));const Op={type:\"change\"},Fu={type:\"start\"},Bp={type:\"end\"};class ew extends $n{constructor(e,t){super(),t===void 0&&console.warn('THREE.OrbitControls: The second parameter \"domElement\" is now mandatory.'),t===document&&console.error('THREE.OrbitControls: \"document\" should not be used as the target \"domElement\". Please use \"renderer.domElement\" instead.'),this.object=e,this.domElement=t,this.domElement.style.touchAction=\"none\",this.enabled=!0,this.target=new I,this.minDistance=0,this.maxDistance=1/0,this.minZoom=0,this.maxZoom=1/0,this.minPolarAngle=0,this.maxPolarAngle=Math.PI,this.minAzimuthAngle=-1/0,this.maxAzimuthAngle=1/0,this.enableDamping=!1,this.dampingFactor=.05,this.enableZoom=!0,this.zoomSpeed=1,this.enableRotate=!0,this.rotateSpeed=1,this.enablePan=!0,this.panSpeed=1,this.screenSpacePanning=!0,this.keyPanSpeed=7,this.autoRotate=!1,this.autoRotateSpeed=2,this.keys={LEFT:\"ArrowLeft\",UP:\"ArrowUp\",RIGHT:\"ArrowRight\",BOTTOM:\"ArrowDown\"},this.mouseButtons={LEFT:os.ROTATE,MIDDLE:os.DOLLY,RIGHT:os.PAN},this.touches={ONE:as.ROTATE,TWO:as.DOLLY_PAN},this.target0=this.target.clone(),this.position0=this.object.position.clone(),this.zoom0=this.object.zoom,this._domElementKeyEvents=null,this.getPolarAngle=function(){return o.phi},this.getAzimuthalAngle=function(){return o.theta},this.getDistance=function(){return this.object.position.distanceTo(this.target)},this.listenToKeyEvents=function(D){D.addEventListener(\"keydown\",lt),this._domElementKeyEvents=D},this.saveState=function(){n.target0.copy(n.target),n.position0.copy(n.object.position),n.zoom0=n.object.zoom},this.reset=function(){n.target.copy(n.target0),n.object.position.copy(n.position0),n.object.zoom=n.zoom0,n.object.updateProjectionMatrix(),n.dispatchEvent(Op),n.update(),s=i.NONE},this.update=function(){const D=new I,me=new kt().setFromUnitVectors(e.up,new I(0,1,0)),Te=me.clone().invert(),V=new I,B=new kt,ne=2*Math.PI;return function(){const Ce=n.object.position;D.copy(Ce).sub(n.target),D.applyQuaternion(me),o.setFromVector3(D),n.autoRotate&&s===i.NONE&&E(C()),n.enableDamping?(o.theta+=l.theta*n.dampingFactor,o.phi+=l.phi*n.dampingFactor):(o.theta+=l.theta,o.phi+=l.phi);let z=n.minAzimuthAngle,ye=n.maxAzimuthAngle;return isFinite(z)&&isFinite(ye)&&(z<-Math.PI?z+=ne:z>Math.PI&&(z-=ne),ye<-Math.PI?ye+=ne:ye>Math.PI&&(ye-=ne),z<=ye?o.theta=Math.max(z,Math.min(ye,o.theta)):o.theta=o.theta>(z+ye)/2?Math.max(z,o.theta):Math.min(ye,o.theta)),o.phi=Math.max(n.minPolarAngle,Math.min(n.maxPolarAngle,o.phi)),o.makeSafe(),o.radius*=c,o.radius=Math.max(n.minDistance,Math.min(n.maxDistance,o.radius)),n.enableDamping===!0?n.target.addScaledVector(h,n.dampingFactor):n.target.add(h),D.setFromSpherical(o),D.applyQuaternion(Te),Ce.copy(n.target).add(D),n.object.lookAt(n.target),n.enableDamping===!0?(l.theta*=1-n.dampingFactor,l.phi*=1-n.dampingFactor,h.multiplyScalar(1-n.dampingFactor)):(l.set(0,0,0),h.set(0,0,0)),c=1,u||V.distanceToSquared(n.object.position)>r||8*(1-B.dot(n.object.quaternion))>r?(n.dispatchEvent(Op),V.copy(n.object.position),B.copy(n.object.quaternion),u=!1,!0):!1}}(),this.dispose=function(){n.domElement.removeEventListener(\"contextmenu\",oe),n.domElement.removeEventListener(\"pointerdown\",ve),n.domElement.removeEventListener(\"pointercancel\",Ze),n.domElement.removeEventListener(\"wheel\",gt),n.domElement.removeEventListener(\"pointermove\",ke),n.domElement.removeEventListener(\"pointerup\",Le),n._domElementKeyEvents!==null&&n._domElementKeyEvents.removeEventListener(\"keydown\",lt)};const n=this,i={NONE:-1,ROTATE:0,DOLLY:1,PAN:2,TOUCH_ROTATE:3,TOUCH_PAN:4,TOUCH_DOLLY_PAN:5,TOUCH_DOLLY_ROTATE:6};let s=i.NONE;const r=1e-6,o=new Iu,l=new Iu;let c=1;const h=new I;let u=!1;const f=new he,d=new he,p=new he,m=new he,g=new he,y=new he,x=new he,b=new he,v=new he,M=[],T={};function C(){return 2*Math.PI/60/60*n.autoRotateSpeed}function _(){return Math.pow(.95,n.zoomSpeed)}function E(D){l.theta-=D}function F(D){l.phi-=D}const U=function(){const D=new I;return function(Te,V){D.setFromMatrixColumn(V,0),D.multiplyScalar(-Te),h.add(D)}}(),q=function(){const D=new I;return function(Te,V){n.screenSpacePanning===!0?D.setFromMatrixColumn(V,1):(D.setFromMatrixColumn(V,0),D.crossVectors(n.object.up,D)),D.multiplyScalar(Te),h.add(D)}}(),K=function(){const D=new I;return function(Te,V){const B=n.domElement;if(n.object.isPerspectiveCamera){const ne=n.object.position;D.copy(ne).sub(n.target);let de=D.length();de*=Math.tan(n.object.fov/2*Math.PI/180),U(2*Te*de/B.clientHeight,n.object.matrix),q(2*V*de/B.clientHeight,n.object.matrix)}else n.object.isOrthographicCamera?(U(Te*(n.object.right-n.object.left)/n.object.zoom/B.clientWidth,n.object.matrix),q(V*(n.object.top-n.object.bottom)/n.object.zoom/B.clientHeight,n.object.matrix)):(console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - pan disabled.\"),n.enablePan=!1)}}();function G(D){n.object.isPerspectiveCamera?c/=D:n.object.isOrthographicCamera?(n.object.zoom=Math.max(n.minZoom,Math.min(n.maxZoom,n.object.zoom*D)),n.object.updateProjectionMatrix(),u=!0):(console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled.\"),n.enableZoom=!1)}function X(D){n.object.isPerspectiveCamera?c*=D:n.object.isOrthographicCamera?(n.object.zoom=Math.max(n.minZoom,Math.min(n.maxZoom,n.object.zoom/D)),n.object.updateProjectionMatrix(),u=!0):(console.warn(\"WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled.\"),n.enableZoom=!1)}function O(D){f.set(D.clientX,D.clientY)}function j(D){x.set(D.clientX,D.clientY)}function Y(D){m.set(D.clientX,D.clientY)}function W(D){d.set(D.clientX,D.clientY),p.subVectors(d,f).multiplyScalar(n.rotateSpeed);const me=n.domElement;E(2*Math.PI*p.x/me.clientHeight),F(2*Math.PI*p.y/me.clientHeight),f.copy(d),n.update()}function Z(D){b.set(D.clientX,D.clientY),v.subVectors(b,x),v.y>0?G(_()):v.y<0&&X(_()),x.copy(b),n.update()}function ee(D){g.set(D.clientX,D.clientY),y.subVectors(g,m).multiplyScalar(n.panSpeed),K(y.x,y.y),m.copy(g),n.update()}function Q(D){D.deltaY<0?X(_()):D.deltaY>0&&G(_()),n.update()}function ie(D){let me=!1;switch(D.code){case n.keys.UP:K(0,n.keyPanSpeed),me=!0;break;case n.keys.BOTTOM:K(0,-n.keyPanSpeed),me=!0;break;case n.keys.LEFT:K(n.keyPanSpeed,0),me=!0;break;case n.keys.RIGHT:K(-n.keyPanSpeed,0),me=!0;break}me&&(D.preventDefault(),n.update())}function ae(){if(M.length===1)f.set(M[0].pageX,M[0].pageY);else{const D=.5*(M[0].pageX+M[1].pageX),me=.5*(M[0].pageY+M[1].pageY);f.set(D,me)}}function re(){if(M.length===1)m.set(M[0].pageX,M[0].pageY);else{const D=.5*(M[0].pageX+M[1].pageX),me=.5*(M[0].pageY+M[1].pageY);m.set(D,me)}}function H(){const D=M[0].pageX-M[1].pageX,me=M[0].pageY-M[1].pageY,Te=Math.sqrt(D*D+me*me);x.set(0,Te)}function ge(){n.enableZoom&&H(),n.enablePan&&re()}function we(){n.enableZoom&&H(),n.enableRotate&&ae()}function Fe(D){if(M.length==1)d.set(D.pageX,D.pageY);else{const Te=je(D),V=.5*(D.pageX+Te.x),B=.5*(D.pageY+Te.y);d.set(V,B)}p.subVectors(d,f).multiplyScalar(n.rotateSpeed);const me=n.domElement;E(2*Math.PI*p.x/me.clientHeight),F(2*Math.PI*p.y/me.clientHeight),f.copy(d)}function xe(D){if(M.length===1)g.set(D.pageX,D.pageY);else{const me=je(D),Te=.5*(D.pageX+me.x),V=.5*(D.pageY+me.y);g.set(Te,V)}y.subVectors(g,m).multiplyScalar(n.panSpeed),K(y.x,y.y),m.copy(g)}function Ve(D){const me=je(D),Te=D.pageX-me.x,V=D.pageY-me.y,B=Math.sqrt(Te*Te+V*V);b.set(0,B),v.set(0,Math.pow(b.y/x.y,n.zoomSpeed)),G(v.y),x.copy(b)}function ue(D){n.enableZoom&&Ve(D),n.enablePan&&xe(D)}function ce(D){n.enableZoom&&Ve(D),n.enableRotate&&Fe(D)}function ve(D){n.enabled!==!1&&(M.length===0&&(n.domElement.setPointerCapture(D.pointerId),n.domElement.addEventListener(\"pointermove\",ke),n.domElement.addEventListener(\"pointerup\",Le)),_e(D),D.pointerType===\"touch\"?k(D):He(D))}function ke(D){n.enabled!==!1&&(D.pointerType===\"touch\"?P(D):Ue(D))}function Le(D){Se(D),M.length===0&&(n.domElement.releasePointerCapture(D.pointerId),n.domElement.removeEventListener(\"pointermove\",ke),n.domElement.removeEventListener(\"pointerup\",Le)),n.dispatchEvent(Bp),s=i.NONE}function Ze(D){Se(D)}function He(D){let me;switch(D.button){case 0:me=n.mouseButtons.LEFT;break;case 1:me=n.mouseButtons.MIDDLE;break;case 2:me=n.mouseButtons.RIGHT;break;default:me=-1}switch(me){case os.DOLLY:if(n.enableZoom===!1)return;j(D),s=i.DOLLY;break;case os.ROTATE:if(D.ctrlKey||D.metaKey||D.shiftKey){if(n.enablePan===!1)return;Y(D),s=i.PAN}else{if(n.enableRotate===!1)return;O(D),s=i.ROTATE}break;case os.PAN:if(D.ctrlKey||D.metaKey||D.shiftKey){if(n.enableRotate===!1)return;O(D),s=i.ROTATE}else{if(n.enablePan===!1)return;Y(D),s=i.PAN}break;default:s=i.NONE}s!==i.NONE&&n.dispatchEvent(Fu)}function Ue(D){switch(s){case i.ROTATE:if(n.enableRotate===!1)return;W(D);break;case i.DOLLY:if(n.enableZoom===!1)return;Z(D);break;case i.PAN:if(n.enablePan===!1)return;ee(D);break}}function gt(D){n.enabled===!1||n.enableZoom===!1||s!==i.NONE||(D.preventDefault(),n.dispatchEvent(Fu),Q(D),n.dispatchEvent(Bp))}function lt(D){n.enabled===!1||n.enablePan===!1||ie(D)}function k(D){switch(Ie(D),M.length){case 1:switch(n.touches.ONE){case as.ROTATE:if(n.enableRotate===!1)return;ae(),s=i.TOUCH_ROTATE;break;case as.PAN:if(n.enablePan===!1)return;re(),s=i.TOUCH_PAN;break;default:s=i.NONE}break;case 2:switch(n.touches.TWO){case as.DOLLY_PAN:if(n.enableZoom===!1&&n.enablePan===!1)return;ge(),s=i.TOUCH_DOLLY_PAN;break;case as.DOLLY_ROTATE:if(n.enableZoom===!1&&n.enableRotate===!1)return;we(),s=i.TOUCH_DOLLY_ROTATE;break;default:s=i.NONE}break;default:s=i.NONE}s!==i.NONE&&n.dispatchEvent(Fu)}function P(D){switch(Ie(D),s){case i.TOUCH_ROTATE:if(n.enableRotate===!1)return;Fe(D),n.update();break;case i.TOUCH_PAN:if(n.enablePan===!1)return;xe(D),n.update();break;case i.TOUCH_DOLLY_PAN:if(n.enableZoom===!1&&n.enablePan===!1)return;ue(D),n.update();break;case i.TOUCH_DOLLY_ROTATE:if(n.enableZoom===!1&&n.enableRotate===!1)return;ce(D),n.update();break;default:s=i.NONE}}function oe(D){n.enabled!==!1&&D.preventDefault()}function _e(D){M.push(D)}function Se(D){delete T[D.pointerId];for(let me=0;me<M.length;me++)if(M[me].pointerId==D.pointerId){M.splice(me,1);return}}function Ie(D){let me=T[D.pointerId];me===void 0&&(me=new he,T[D.pointerId]=me),me.set(D.pageX,D.pageY)}function je(D){const me=D.pointerId===M[0].pointerId?M[1]:M[0];return T[me.pointerId]}n.domElement.addEventListener(\"contextmenu\",oe),n.domElement.addEventListener(\"pointerdown\",ve),n.domElement.addEventListener(\"pointercancel\",Ze),n.domElement.addEventListener(\"wheel\",gt,{passive:!1}),this.update()}}var Oo=function(){var a=0,e=document.createElement(\"div\");e.style.cssText=\"position:fixed;top:0;left:0;cursor:pointer;opacity:0.9;z-index:10000\",e.addEventListener(\"click\",function(h){h.preventDefault(),n(++a%e.children.length)},!1);function t(h){return e.appendChild(h.dom),h}function n(h){for(var u=0;u<e.children.length;u++)e.children[u].style.display=u===h?\"block\":\"none\";a=h}var i=(performance||Date).now(),s=i,r=0,o=t(new Oo.Panel(\"FPS\",\"#0ff\",\"#002\")),l=t(new Oo.Panel(\"MS\",\"#0f0\",\"#020\"));if(self.performance&&self.performance.memory)var c=t(new Oo.Panel(\"MB\",\"#f08\",\"#201\"));return n(0),{REVISION:16,dom:e,addPanel:t,showPanel:n,begin:function(){i=(performance||Date).now()},end:function(){r++;var h=(performance||Date).now();if(l.update(h-i,200),h>=s+1e3&&(o.update(r*1e3/(h-s),100),s=h,r=0,c)){var u=performance.memory;c.update(u.usedJSHeapSize/1048576,u.jsHeapSizeLimit/1048576)}return h},update:function(){i=this.end()},domElement:e,setMode:n}};Oo.Panel=function(a,e,t){var n=1/0,i=0,s=Math.round,r=s(window.devicePixelRatio||1),o=80*r,l=48*r,c=3*r,h=2*r,u=3*r,f=15*r,d=74*r,p=30*r,m=document.createElement(\"canvas\");m.width=o,m.height=l,m.style.cssText=\"width:80px;height:48px\";var g=m.getContext(\"2d\");return g.font=\"bold \"+9*r+\"px Helvetica,Arial,sans-serif\",g.textBaseline=\"top\",g.fillStyle=t,g.fillRect(0,0,o,l),g.fillStyle=e,g.fillText(a,c,h),g.fillRect(u,f,d,p),g.fillStyle=t,g.globalAlpha=.9,g.fillRect(u,f,d,p),{dom:m,update:function(y,x){n=Math.min(n,y),i=Math.max(i,y),g.fillStyle=t,g.globalAlpha=1,g.fillRect(0,0,o,f),g.fillStyle=e,g.fillText(s(y)+\" \"+a+\" (\"+s(n)+\"-\"+s(i)+\")\",c,h),g.drawImage(m,u+r,f,d-r,p,u,f,d-r,p),g.fillRect(u+d-r,f,r,p),g.fillStyle=t,g.globalAlpha=.9,g.fillRect(u+d-r,f,r,s((1-y/x)*p))}}};/*!\nfflate - fast JavaScript compression/decompression\n<https://101arrowz.github.io/fflate>\nLicensed under MIT. https://github.com/101arrowz/fflate/blob/master/LICENSE\nversion 0.6.9\n*/var zp={},Nu=function(a){return URL.createObjectURL(new Blob([a],{type:\"text/javascript\"}))},Up=function(a){return new Worker(a)};try{URL.revokeObjectURL(Nu(\"\"))}catch{Nu=function(e){return\"data:application/javascript;charset=UTF-8,\"+encodeURI(e)},Up=function(e){return new Worker(e,{type:\"module\"})}}var tw=function(a,e,t,n,i){var s=Up(zp[e]||(zp[e]=Nu(a)));return s.onerror=function(r){return i(r.error,null)},s.onmessage=function(r){return i(null,r.data)},s.postMessage(t,n),s},ut=Uint8Array,en=Uint16Array,Ti=Uint32Array,Br=new ut([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0,0]),zr=new ut([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,0,0]),Bo=new ut([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Gp=function(a,e){for(var t=new en(31),n=0;n<31;++n)t[n]=e+=1<<a[n-1];for(var i=new Ti(t[30]),n=1;n<30;++n)for(var s=t[n];s<t[n+1];++s)i[s]=s-t[n]<<5|n;return[t,i]},Vp=Gp(Br,2),ku=Vp[0],pl=Vp[1];ku[28]=258,pl[258]=28;for(var Hp=Gp(zr,0),Wp=Hp[0],Ou=Hp[1],zo=new en(32768),Et=0;Et<32768;++Et){var es=(Et&43690)>>>1|(Et&21845)<<1;es=(es&52428)>>>2|(es&13107)<<2,es=(es&61680)>>>4|(es&3855)<<4,zo[Et]=((es&65280)>>>8|(es&255)<<8)>>>1}for(var kn=function(a,e,t){for(var n=a.length,i=0,s=new en(e);i<n;++i)++s[a[i]-1];var r=new en(e);for(i=0;i<e;++i)r[i]=r[i-1]+s[i-1]<<1;var o;if(t){o=new en(1<<e);var l=15-e;for(i=0;i<n;++i)if(a[i])for(var c=i<<4|a[i],h=e-a[i],u=r[a[i]-1]++<<h,f=u|(1<<h)-1;u<=f;++u)o[zo[u]>>>l]=c}else for(o=new en(n),i=0;i<n;++i)a[i]&&(o[i]=zo[r[a[i]-1]++]>>>15-a[i]);return o},Ai=new ut(288),Et=0;Et<144;++Et)Ai[Et]=8;for(var Et=144;Et<256;++Et)Ai[Et]=9;for(var Et=256;Et<280;++Et)Ai[Et]=7;for(var Et=280;Et<288;++Et)Ai[Et]=8;for(var Ur=new ut(32),Et=0;Et<32;++Et)Ur[Et]=5;var qp=kn(Ai,9,0),Xp=kn(Ai,9,1),jp=kn(Ur,5,0),Yp=kn(Ur,5,1),ml=function(a){for(var e=a[0],t=1;t<a.length;++t)a[t]>e&&(e=a[t]);return e},On=function(a,e,t){var n=e/8|0;return(a[n]|a[n+1]<<8)>>(e&7)&t},gl=function(a,e){var t=e/8|0;return(a[t]|a[t+1]<<8|a[t+2]<<16)>>(e&7)},Uo=function(a){return(a/8|0)+(a&7&&1)},Bn=function(a,e,t){(e==null||e<0)&&(e=0),(t==null||t>a.length)&&(t=a.length);var n=new(a instanceof en?en:a instanceof Ti?Ti:ut)(t-e);return n.set(a.subarray(e,t)),n},Go=function(a,e,t){var n=a.length;if(!n||t&&!t.l&&n<5)return e||new ut(0);var i=!e||t,s=!t||t.i;t||(t={}),e||(e=new ut(n*3));var r=function(H){var ge=e.length;if(H>ge){var we=new ut(Math.max(ge*2,H));we.set(e),e=we}},o=t.f||0,l=t.p||0,c=t.b||0,h=t.l,u=t.d,f=t.m,d=t.n,p=n*8;do{if(!h){t.f=o=On(a,l,1);var m=On(a,l+1,3);if(l+=3,m)if(m==1)h=Xp,u=Yp,f=9,d=5;else if(m==2){var b=On(a,l,31)+257,v=On(a,l+10,15)+4,M=b+On(a,l+5,31)+1;l+=14;for(var T=new ut(M),C=new ut(19),_=0;_<v;++_)C[Bo[_]]=On(a,l+_*3,7);l+=v*3;for(var E=ml(C),F=(1<<E)-1,U=kn(C,E,1),_=0;_<M;){var q=U[On(a,l,F)];l+=q&15;var g=q>>>4;if(g<16)T[_++]=g;else{var K=0,G=0;for(g==16?(G=3+On(a,l,3),l+=2,K=T[_-1]):g==17?(G=3+On(a,l,7),l+=3):g==18&&(G=11+On(a,l,127),l+=7);G--;)T[_++]=K}}var X=T.subarray(0,b),O=T.subarray(b);f=ml(X),d=ml(O),h=kn(X,f,1),u=kn(O,d,1)}else throw\"invalid block type\";else{var g=Uo(l)+4,y=a[g-4]|a[g-3]<<8,x=g+y;if(x>n){if(s)throw\"unexpected EOF\";break}i&&r(c+y),e.set(a.subarray(g,x),c),t.b=c+=y,t.p=l=x*8;continue}if(l>p){if(s)throw\"unexpected EOF\";break}}i&&r(c+131072);for(var j=(1<<f)-1,Y=(1<<d)-1,W=l;;W=l){var K=h[gl(a,l)&j],Z=K>>>4;if(l+=K&15,l>p){if(s)throw\"unexpected EOF\";break}if(!K)throw\"invalid length/literal\";if(Z<256)e[c++]=Z;else if(Z==256){W=l,h=null;break}else{var ee=Z-254;if(Z>264){var _=Z-257,Q=Br[_];ee=On(a,l,(1<<Q)-1)+ku[_],l+=Q}var ie=u[gl(a,l)&Y],ae=ie>>>4;if(!ie)throw\"invalid distance\";l+=ie&15;var O=Wp[ae];if(ae>3){var Q=zr[ae];O+=gl(a,l)&(1<<Q)-1,l+=Q}if(l>p){if(s)throw\"unexpected EOF\";break}i&&r(c+131072);for(var re=c+ee;c<re;c+=4)e[c]=e[c-O],e[c+1]=e[c+1-O],e[c+2]=e[c+2-O],e[c+3]=e[c+3-O];c=re}}t.l=h,t.p=W,t.b=c,h&&(o=1,t.m=f,t.d=u,t.n=d)}while(!o);return c==e.length?e:Bn(e,0,c)},si=function(a,e,t){t<<=e&7;var n=e/8|0;a[n]|=t,a[n+1]|=t>>>8},Gr=function(a,e,t){t<<=e&7;var n=e/8|0;a[n]|=t,a[n+1]|=t>>>8,a[n+2]|=t>>>16},yl=function(a,e){for(var t=[],n=0;n<a.length;++n)a[n]&&t.push({s:n,f:a[n]});var i=t.length,s=t.slice();if(!i)return[Ei,0];if(i==1){var r=new ut(t[0].s+1);return r[t[0].s]=1,[r,1]}t.sort(function(M,T){return M.f-T.f}),t.push({s:-1,f:25001});var o=t[0],l=t[1],c=0,h=1,u=2;for(t[0]={s:-1,f:o.f+l.f,l:o,r:l};h!=i-1;)o=t[t[c].f<t[u].f?c++:u++],l=t[c!=h&&t[c].f<t[u].f?c++:u++],t[h++]={s:-1,f:o.f+l.f,l:o,r:l};for(var f=s[0].s,n=1;n<i;++n)s[n].s>f&&(f=s[n].s);var d=new en(f+1),p=xl(t[h-1],d,0);if(p>e){var n=0,m=0,g=p-e,y=1<<g;for(s.sort(function(T,C){return d[C.s]-d[T.s]||T.f-C.f});n<i;++n){var x=s[n].s;if(d[x]>e)m+=y-(1<<p-d[x]),d[x]=e;else break}for(m>>>=g;m>0;){var b=s[n].s;d[b]<e?m-=1<<e-d[b]++-1:++n}for(;n>=0&&m;--n){var v=s[n].s;d[v]==e&&(--d[v],++m)}p=e}return[new ut(d),p]},xl=function(a,e,t){return a.s==-1?Math.max(xl(a.l,e,t+1),xl(a.r,e,t+1)):e[a.s]=t},Bu=function(a){for(var e=a.length;e&&!a[--e];);for(var t=new en(++e),n=0,i=a[0],s=1,r=function(l){t[n++]=l},o=1;o<=e;++o)if(a[o]==i&&o!=e)++s;else{if(!i&&s>2){for(;s>138;s-=138)r(32754);s>2&&(r(s>10?s-11<<5|28690:s-3<<5|12305),s=0)}else if(s>3){for(r(i),--s;s>6;s-=6)r(8304);s>2&&(r(s-3<<5|8208),s=0)}for(;s--;)r(i);s=1,i=a[o]}return[t.subarray(0,n),e]},Vr=function(a,e){for(var t=0,n=0;n<e.length;++n)t+=a[n]*e[n];return t},Vo=function(a,e,t){var n=t.length,i=Uo(e+2);a[i]=n&255,a[i+1]=n>>>8,a[i+2]=a[i]^255,a[i+3]=a[i+1]^255;for(var s=0;s<n;++s)a[i+s+4]=t[s];return(i+4+n)*8},zu=function(a,e,t,n,i,s,r,o,l,c,h){si(e,h++,t),++i[256];for(var u=yl(i,15),f=u[0],d=u[1],p=yl(s,15),m=p[0],g=p[1],y=Bu(f),x=y[0],b=y[1],v=Bu(m),M=v[0],T=v[1],C=new en(19),_=0;_<x.length;++_)C[x[_]&31]++;for(var _=0;_<M.length;++_)C[M[_]&31]++;for(var E=yl(C,7),F=E[0],U=E[1],q=19;q>4&&!F[Bo[q-1]];--q);var K=c+5<<3,G=Vr(i,Ai)+Vr(s,Ur)+r,X=Vr(i,f)+Vr(s,m)+r+14+3*q+Vr(C,F)+(2*C[16]+3*C[17]+7*C[18]);if(K<=G&&K<=X)return Vo(e,h,a.subarray(l,l+c));var O,j,Y,W;if(si(e,h,1+(X<G)),h+=2,X<G){O=kn(f,d,0),j=f,Y=kn(m,g,0),W=m;var Z=kn(F,U,0);si(e,h,b-257),si(e,h+5,T-1),si(e,h+10,q-4),h+=14;for(var _=0;_<q;++_)si(e,h+3*_,F[Bo[_]]);h+=3*q;for(var ee=[x,M],Q=0;Q<2;++Q)for(var ie=ee[Q],_=0;_<ie.length;++_){var ae=ie[_]&31;si(e,h,Z[ae]),h+=F[ae],ae>15&&(si(e,h,ie[_]>>>5&127),h+=ie[_]>>>12)}}else O=qp,j=Ai,Y=jp,W=Ur;for(var _=0;_<o;++_)if(n[_]>255){var ae=n[_]>>>18&31;Gr(e,h,O[ae+257]),h+=j[ae+257],ae>7&&(si(e,h,n[_]>>>23&31),h+=Br[ae]);var re=n[_]&31;Gr(e,h,Y[re]),h+=W[re],re>3&&(Gr(e,h,n[_]>>>5&8191),h+=zr[re])}else Gr(e,h,O[n[_]]),h+=j[n[_]];return Gr(e,h,O[256]),h+j[256]},Zp=new Ti([65540,131080,131088,131104,262176,1048704,1048832,2114560,2117632]),Ei=new ut(0),Kp=function(a,e,t,n,i,s){var r=a.length,o=new ut(n+r+5*(1+Math.ceil(r/7e3))+i),l=o.subarray(n,o.length-i),c=0;if(!e||r<8)for(var h=0;h<=r;h+=65535){var u=h+65535;u<r?c=Vo(l,c,a.subarray(h,u)):(l[h]=s,c=Vo(l,c,a.subarray(h,r)))}else{for(var f=Zp[e-1],d=f>>>13,p=f&8191,m=(1<<t)-1,g=new en(32768),y=new en(m+1),x=Math.ceil(t/3),b=2*x,v=function(ve){return(a[ve]^a[ve+1]<<x^a[ve+2]<<b)&m},M=new Ti(25e3),T=new en(288),C=new en(32),_=0,E=0,h=0,F=0,U=0,q=0;h<r;++h){var K=v(h),G=h&32767,X=y[K];if(g[G]=X,y[K]=G,U<=h){var O=r-h;if((_>7e3||F>24576)&&O>423){c=zu(a,l,0,M,T,C,E,F,q,h-q,c),F=_=E=0,q=h;for(var j=0;j<286;++j)T[j]=0;for(var j=0;j<30;++j)C[j]=0}var Y=2,W=0,Z=p,ee=G-X&32767;if(O>2&&K==v(h-ee))for(var Q=Math.min(d,O)-1,ie=Math.min(32767,h),ae=Math.min(258,O);ee<=ie&&--Z&&G!=X;){if(a[h+Y]==a[h+Y-ee]){for(var re=0;re<ae&&a[h+re]==a[h+re-ee];++re);if(re>Y){if(Y=re,W=ee,re>Q)break;for(var H=Math.min(ee,re-2),ge=0,j=0;j<H;++j){var we=h-ee+j+32768&32767,Fe=g[we],xe=we-Fe+32768&32767;xe>ge&&(ge=xe,X=we)}}}G=X,X=g[G],ee+=G-X+32768&32767}if(W){M[F++]=268435456|pl[Y]<<18|Ou[W];var Ve=pl[Y]&31,ue=Ou[W]&31;E+=Br[Ve]+zr[ue],++T[257+Ve],++C[ue],U=h+Y,++_}else M[F++]=a[h],++T[a[h]]}}c=zu(a,l,s,M,T,C,E,F,q,h-q,c),!s&&c&7&&(c=Vo(l,c+1,Ei))}return Bn(o,0,n+Uo(c)+i)},Jp=function(){for(var a=new Ti(256),e=0;e<256;++e){for(var t=e,n=9;--n;)t=(t&1&&3988292384)^t>>>1;a[e]=t}return a}(),Hr=function(){var a=-1;return{p:function(e){for(var t=a,n=0;n<e.length;++n)t=Jp[t&255^e[n]]^t>>>8;a=t},d:function(){return~a}}},Uu=function(){var a=1,e=0;return{p:function(t){for(var n=a,i=e,s=t.length,r=0;r!=s;){for(var o=Math.min(r+2655,s);r<o;++r)i+=n+=t[r];n=(n&65535)+15*(n>>16),i=(i&65535)+15*(i>>16)}a=n,e=i},d:function(){return a%=65521,e%=65521,(a&255)<<24|a>>>8<<16|(e&255)<<8|e>>>8}}},Hs=function(a,e,t,n,i){return Kp(a,e.level==null?6:e.level,e.mem==null?Math.ceil(Math.max(8,Math.min(13,Math.log(a.length)))*1.5):12+e.mem,t,n,!i)},Ho=function(a,e){var t={};for(var n in a)t[n]=a[n];for(var n in e)t[n]=e[n];return t},$p=function(a,e,t){for(var n=a(),i=a.toString(),s=i.slice(i.indexOf(\"[\")+1,i.lastIndexOf(\"]\")).replace(/ /g,\"\").split(\",\"),r=0;r<n.length;++r){var o=n[r],l=s[r];if(typeof o==\"function\"){e+=\";\"+l+\"=\";var c=o.toString();if(o.prototype)if(c.indexOf(\"[native code]\")!=-1){var h=c.indexOf(\" \",8)+1;e+=c.slice(h,c.indexOf(\"(\",h))}else{e+=c;for(var u in o.prototype)e+=\";\"+l+\".prototype.\"+u+\"=\"+o.prototype[u].toString()}else e+=c}else t[l]=o}return[e,t]},vl=[],nw=function(a){var e=[];for(var t in a)(a[t]instanceof ut||a[t]instanceof en||a[t]instanceof Ti)&&e.push((a[t]=new a[t].constructor(a[t])).buffer);return e},Qp=function(a,e,t,n){var i;if(!vl[t]){for(var s=\"\",r={},o=a.length-1,l=0;l<o;++l)i=$p(a[l],s,r),s=i[0],r=i[1];vl[t]=$p(a[o],s,r)}var c=Ho({},vl[t][1]);return tw(vl[t][0]+\";onmessage=function(e){for(var k in e.data)self[k]=e.data[k];onmessage=\"+e.toString()+\"}\",t,c,nw(c),n)},Wr=function(){return[ut,en,Ti,Br,zr,Bo,ku,Wp,Xp,Yp,zo,kn,ml,On,gl,Uo,Bn,Go,Yr,ts,Gu]},qr=function(){return[ut,en,Ti,Br,zr,Bo,pl,Ou,qp,Ai,jp,Ur,zo,Zp,Ei,kn,si,Gr,yl,xl,Bu,Vr,Vo,zu,Uo,Bn,Kp,Hs,Wo,ts]},em=function(){return[Hu,qu,wt,Hr,Jp]},tm=function(){return[Wu,sm]},nm=function(){return[Xu,wt,Uu]},im=function(){return[rm]},ts=function(a){return postMessage(a,[a.buffer])},Gu=function(a){return a&&a.size&&new ut(a.size)},Xr=function(a,e,t,n,i,s){var r=Qp(t,n,i,function(o,l){r.terminate(),s(o,l)});return r.postMessage([a,e],e.consume?[a.buffer]:[]),function(){r.terminate()}},zn=function(a){return a.ondata=function(e,t){return postMessage([e,t],[e.buffer])},function(e){return a.push(e.data[0],e.data[1])}},jr=function(a,e,t,n,i){var s,r=Qp(a,n,i,function(o,l){o?(r.terminate(),e.ondata.call(e,o)):(l[1]&&r.terminate(),e.ondata.call(e,o,l[0],l[1]))});r.postMessage(t),e.push=function(o,l){if(s)throw\"stream finished\";if(!e.ondata)throw\"no stream handler\";r.postMessage([o,s=l],[o.buffer])},e.terminate=function(){r.terminate()}},mn=function(a,e){return a[e]|a[e+1]<<8},qt=function(a,e){return(a[e]|a[e+1]<<8|a[e+2]<<16|a[e+3]<<24)>>>0},Vu=function(a,e){return qt(a,e)+qt(a,e+4)*4294967296},wt=function(a,e,t){for(;t;++e)a[e]=t,t>>>=8},Hu=function(a,e){var t=e.filename;if(a[0]=31,a[1]=139,a[2]=8,a[8]=e.level<2?4:e.level==9?2:0,a[9]=3,e.mtime!=0&&wt(a,4,Math.floor(new Date(e.mtime||Date.now())/1e3)),t){a[3]=8;for(var n=0;n<=t.length;++n)a[n+10]=t.charCodeAt(n)}},Wu=function(a){if(a[0]!=31||a[1]!=139||a[2]!=8)throw\"invalid gzip data\";var e=a[3],t=10;e&4&&(t+=a[10]|(a[11]<<8)+2);for(var n=(e>>3&1)+(e>>4&1);n>0;n-=!a[t++]);return t+(e&2)},sm=function(a){var e=a.length;return(a[e-4]|a[e-3]<<8|a[e-2]<<16|a[e-1]<<24)>>>0},qu=function(a){return 10+(a.filename&&a.filename.length+1||0)},Xu=function(a,e){var t=e.level,n=t==0?0:t<6?1:t==9?3:2;a[0]=120,a[1]=n<<6|(n?32-2*n:1)},rm=function(a){if((a[0]&15)!=8||a[0]>>>4>7||(a[0]<<8|a[1])%31)throw\"invalid zlib data\";if(a[1]&32)throw\"invalid zlib data: preset dictionaries not supported\"};function ju(a,e){return!e&&typeof a==\"function\"&&(e=a,a={}),this.ondata=e,a}var ri=function(){function a(e,t){!t&&typeof e==\"function\"&&(t=e,e={}),this.ondata=t,this.o=e||{}}return a.prototype.p=function(e,t){this.ondata(Hs(e,this.o,0,0,!t),t)},a.prototype.push=function(e,t){if(this.d)throw\"stream finished\";if(!this.ondata)throw\"no stream handler\";this.d=t,this.p(e,t||!1)},a}(),om=function(){function a(e,t){jr([qr,function(){return[zn,ri]}],this,ju.call(this,e,t),function(n){var i=new ri(n.data);onmessage=zn(i)},6)}return a}();function am(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Xr(a,e,[qr],function(n){return ts(Wo(n.data[0],n.data[1]))},0,t)}function Wo(a,e){return Hs(a,e||{},0,0)}var xn=function(){function a(e){this.s={},this.p=new ut(0),this.ondata=e}return a.prototype.e=function(e){if(this.d)throw\"stream finished\";if(!this.ondata)throw\"no stream handler\";var t=this.p.length,n=new ut(t+e.length);n.set(this.p),n.set(e,t),this.p=n},a.prototype.c=function(e){this.d=this.s.i=e||!1;var t=this.s.b,n=Go(this.p,this.o,this.s);this.ondata(Bn(n,t,this.s.b),this.d),this.o=Bn(n,this.s.b-32768),this.s.b=this.o.length,this.p=Bn(this.p,this.s.p/8|0),this.s.p&=7},a.prototype.push=function(e,t){this.e(e),this.c(t)},a}(),Yu=function(){function a(e){this.ondata=e,jr([Wr,function(){return[zn,xn]}],this,0,function(){var t=new xn;onmessage=zn(t)},7)}return a}();function Zu(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Xr(a,e,[Wr],function(n){return ts(Yr(n.data[0],Gu(n.data[1])))},1,t)}function Yr(a,e){return Go(a,e)}var _l=function(){function a(e,t){this.c=Hr(),this.l=0,this.v=1,ri.call(this,e,t)}return a.prototype.push=function(e,t){ri.prototype.push.call(this,e,t)},a.prototype.p=function(e,t){this.c.p(e),this.l+=e.length;var n=Hs(e,this.o,this.v&&qu(this.o),t&&8,!t);this.v&&(Hu(n,this.o),this.v=0),t&&(wt(n,n.length-8,this.c.d()),wt(n,n.length-4,this.l)),this.ondata(n,t)},a}(),lm=function(){function a(e,t){jr([qr,em,function(){return[zn,ri,_l]}],this,ju.call(this,e,t),function(n){var i=new _l(n.data);onmessage=zn(i)},8)}return a}();function cm(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Xr(a,e,[qr,em,function(){return[bl]}],function(n){return ts(bl(n.data[0],n.data[1]))},2,t)}function bl(a,e){e||(e={});var t=Hr(),n=a.length;t.p(a);var i=Hs(a,e,qu(e),8),s=i.length;return Hu(i,e),wt(i,s-8,t.d()),wt(i,s-4,n),i}var wl=function(){function a(e){this.v=1,xn.call(this,e)}return a.prototype.push=function(e,t){if(xn.prototype.e.call(this,e),this.v){var n=this.p.length>3?Wu(this.p):4;if(n>=this.p.length&&!t)return;this.p=this.p.subarray(n),this.v=0}if(t){if(this.p.length<8)throw\"invalid gzip stream\";this.p=this.p.subarray(0,-8)}xn.prototype.c.call(this,t)},a}(),um=function(){function a(e){this.ondata=e,jr([Wr,tm,function(){return[zn,xn,wl]}],this,0,function(){var t=new wl;onmessage=zn(t)},9)}return a}();function hm(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Xr(a,e,[Wr,tm,function(){return[Ml]}],function(n){return ts(Ml(n.data[0]))},3,t)}function Ml(a,e){return Go(a.subarray(Wu(a),-8),e||new ut(sm(a)))}var Ku=function(){function a(e,t){this.c=Uu(),this.v=1,ri.call(this,e,t)}return a.prototype.push=function(e,t){ri.prototype.push.call(this,e,t)},a.prototype.p=function(e,t){this.c.p(e);var n=Hs(e,this.o,this.v&&2,t&&4,!t);this.v&&(Xu(n,this.o),this.v=0),t&&wt(n,n.length-4,this.c.d()),this.ondata(n,t)},a}(),iw=function(){function a(e,t){jr([qr,nm,function(){return[zn,ri,Ku]}],this,ju.call(this,e,t),function(n){var i=new Ku(n.data);onmessage=zn(i)},10)}return a}();function sw(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Xr(a,e,[qr,nm,function(){return[Ju]}],function(n){return ts(Ju(n.data[0],n.data[1]))},4,t)}function Ju(a,e){e||(e={});var t=Uu();t.p(a);var n=Hs(a,e,2,4);return Xu(n,e),wt(n,n.length-4,t.d()),n}var Sl=function(){function a(e){this.v=1,xn.call(this,e)}return a.prototype.push=function(e,t){if(xn.prototype.e.call(this,e),this.v){if(this.p.length<2&&!t)return;this.p=this.p.subarray(2),this.v=0}if(t){if(this.p.length<4)throw\"invalid zlib stream\";this.p=this.p.subarray(0,-4)}xn.prototype.c.call(this,t)},a}(),fm=function(){function a(e){this.ondata=e,jr([Wr,im,function(){return[zn,xn,Sl]}],this,0,function(){var t=new Sl;onmessage=zn(t)},11)}return a}();function dm(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return Xr(a,e,[Wr,im,function(){return[qo]}],function(n){return ts(qo(n.data[0],Gu(n.data[1])))},5,t)}function qo(a,e){return Go((rm(a),a.subarray(2,-4)),e)}var pm=function(){function a(e){this.G=wl,this.I=xn,this.Z=Sl,this.ondata=e}return a.prototype.push=function(e,t){if(!this.ondata)throw\"no stream handler\";if(this.s)this.s.push(e,t);else{if(this.p&&this.p.length){var n=new ut(this.p.length+e.length);n.set(this.p),n.set(e,this.p.length)}else this.p=e;if(this.p.length>2){var i=this,s=function(){i.ondata.apply(i,arguments)};this.s=this.p[0]==31&&this.p[1]==139&&this.p[2]==8?new this.G(s):(this.p[0]&15)!=8||this.p[0]>>4>7||(this.p[0]<<8|this.p[1])%31?new this.I(s):new this.Z(s),this.s.push(this.p,t),this.p=null}}},a}(),rw=function(){function a(e){this.G=um,this.I=Yu,this.Z=fm,this.ondata=e}return a.prototype.push=function(e,t){pm.prototype.push.call(this,e,t)},a}();function ow(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";return a[0]==31&&a[1]==139&&a[2]==8?hm(a,e,t):(a[0]&15)!=8||a[0]>>4>7||(a[0]<<8|a[1])%31?Zu(a,e,t):dm(a,e,t)}function aw(a,e){return a[0]==31&&a[1]==139&&a[2]==8?Ml(a,e):(a[0]&15)!=8||a[0]>>4>7||(a[0]<<8|a[1])%31?Yr(a,e):qo(a,e)}var $u=function(a,e,t,n){for(var i in a){var s=a[i],r=e+i;s instanceof ut?t[r]=[s,n]:Array.isArray(s)?t[r]=[s[0],Ho(n,s[1])]:$u(s,r+\"/\",t,n)}},mm=typeof TextEncoder!=\"undefined\"&&new TextEncoder,Qu=typeof TextDecoder!=\"undefined\"&&new TextDecoder,gm=0;try{Qu.decode(Ei,{stream:!0}),gm=1}catch{}var ym=function(a){for(var e=\"\",t=0;;){var n=a[t++],i=(n>127)+(n>223)+(n>239);if(t+i>a.length)return[e,Bn(a,t-1)];i?i==3?(n=((n&15)<<18|(a[t++]&63)<<12|(a[t++]&63)<<6|a[t++]&63)-65536,e+=String.fromCharCode(55296|n>>10,56320|n&1023)):i&1?e+=String.fromCharCode((n&31)<<6|a[t++]&63):e+=String.fromCharCode((n&15)<<12|(a[t++]&63)<<6|a[t++]&63):e+=String.fromCharCode(n)}},lw=function(){function a(e){this.ondata=e,gm?this.t=new TextDecoder:this.p=Ei}return a.prototype.push=function(e,t){if(!this.ondata)throw\"no callback\";if(t=!!t,this.t){if(this.ondata(this.t.decode(e,{stream:!0}),t),t){if(this.t.decode().length)throw\"invalid utf-8 data\";this.t=null}return}if(!this.p)throw\"stream finished\";var n=new ut(this.p.length+e.length);n.set(this.p),n.set(e,this.p.length);var i=ym(n),s=i[0],r=i[1];if(t){if(r.length)throw\"invalid utf-8 data\";this.p=null}else this.p=r;this.ondata(s,t)},a}(),cw=function(){function a(e){this.ondata=e}return a.prototype.push=function(e,t){if(!this.ondata)throw\"no callback\";if(this.d)throw\"stream finished\";this.ondata(ns(e),this.d=t||!1)},a}();function ns(a,e){if(e){for(var t=new ut(a.length),n=0;n<a.length;++n)t[n]=a.charCodeAt(n);return t}if(mm)return mm.encode(a);for(var i=a.length,s=new ut(a.length+(a.length>>1)),r=0,o=function(h){s[r++]=h},n=0;n<i;++n){if(r+5>s.length){var l=new ut(r+8+(i-n<<1));l.set(s),s=l}var c=a.charCodeAt(n);c<128||e?o(c):c<2048?(o(192|c>>6),o(128|c&63)):c>55295&&c<57344?(c=65536+(c&1047552)|a.charCodeAt(++n)&1023,o(240|c>>18),o(128|c>>12&63),o(128|c>>6&63),o(128|c&63)):(o(224|c>>12),o(128|c>>6&63),o(128|c&63))}return Bn(s,0,r)}function eh(a,e){if(e){for(var t=\"\",n=0;n<a.length;n+=16384)t+=String.fromCharCode.apply(null,a.subarray(n,n+16384));return t}else{if(Qu)return Qu.decode(a);var i=ym(a),s=i[0],r=i[1];if(r.length)throw\"invalid utf-8 data\";return s}}var xm=function(a){return a==1?3:a<6?2:a==9?1:0},vm=function(a,e){return e+30+mn(a,e+26)+mn(a,e+28)},_m=function(a,e,t){var n=mn(a,e+28),i=eh(a.subarray(e+46,e+46+n),!(mn(a,e+8)&2048)),s=e+46+n,r=qt(a,e+20),o=t&&r==4294967295?bm(a,s):[r,qt(a,e+24),qt(a,e+42)],l=o[0],c=o[1],h=o[2];return[mn(a,e+10),l,c,i,s+mn(a,e+30)+mn(a,e+32),h]},bm=function(a,e){for(;mn(a,e)!=1;e+=4+mn(a,e+2));return[Vu(a,e+12),Vu(a,e+4),Vu(a,e+20)]},is=function(a){var e=0;if(a)for(var t in a){var n=a[t].length;if(n>65535)throw\"extra field too long\";e+=n+4}return e},Zr=function(a,e,t,n,i,s,r,o){var l=n.length,c=t.extra,h=o&&o.length,u=is(c);wt(a,e,r!=null?33639248:67324752),e+=4,r!=null&&(a[e++]=20,a[e++]=t.os),a[e]=20,e+=2,a[e++]=t.flag<<1|(s==null&&8),a[e++]=i&&8,a[e++]=t.compression&255,a[e++]=t.compression>>8;var f=new Date(t.mtime==null?Date.now():t.mtime),d=f.getFullYear()-1980;if(d<0||d>119)throw\"date not in range 1980-2099\";if(wt(a,e,d<<25|f.getMonth()+1<<21|f.getDate()<<16|f.getHours()<<11|f.getMinutes()<<5|f.getSeconds()>>>1),e+=4,s!=null&&(wt(a,e,t.crc),wt(a,e+4,s),wt(a,e+8,t.size)),wt(a,e+12,l),wt(a,e+14,u),e+=16,r!=null&&(wt(a,e,h),wt(a,e+6,t.attrs),wt(a,e+10,r),e+=14),a.set(n,e),e+=l,u)for(var p in c){var m=c[p],g=m.length;wt(a,e,+p),wt(a,e+2,g),a.set(m,e+4),e+=4+g}return h&&(a.set(o,e),e+=h),e},th=function(a,e,t,n,i){wt(a,e,101010256),wt(a,e+8,t),wt(a,e+10,t),wt(a,e+12,n),wt(a,e+16,i)},Xo=function(){function a(e){this.filename=e,this.c=Hr(),this.size=0,this.compression=0}return a.prototype.process=function(e,t){this.ondata(null,e,t)},a.prototype.push=function(e,t){if(!this.ondata)throw\"no callback - add to ZIP archive before pushing\";this.c.p(e),this.size+=e.length,t&&(this.crc=this.c.d()),this.process(e,t||!1)},a}(),uw=function(){function a(e,t){var n=this;t||(t={}),Xo.call(this,e),this.d=new ri(t,function(i,s){n.ondata(null,i,s)}),this.compression=8,this.flag=xm(t.level)}return a.prototype.process=function(e,t){try{this.d.push(e,t)}catch(n){this.ondata(n,null,t)}},a.prototype.push=function(e,t){Xo.prototype.push.call(this,e,t)},a}(),hw=function(){function a(e,t){var n=this;t||(t={}),Xo.call(this,e),this.d=new om(t,function(i,s,r){n.ondata(i,s,r)}),this.compression=8,this.flag=xm(t.level),this.terminate=this.d.terminate}return a.prototype.process=function(e,t){this.d.push(e,t)},a.prototype.push=function(e,t){Xo.prototype.push.call(this,e,t)},a}(),fw=function(){function a(e){this.ondata=e,this.u=[],this.d=1}return a.prototype.add=function(e){var t=this;if(this.d&2)throw\"stream finished\";var n=ns(e.filename),i=n.length,s=e.comment,r=s&&ns(s),o=i!=e.filename.length||r&&s.length!=r.length,l=i+is(e.extra)+30;if(i>65535)throw\"filename too long\";var c=new ut(l);Zr(c,0,e,n,o);var h=[c],u=function(){for(var g=0,y=h;g<y.length;g++){var x=y[g];t.ondata(null,x,!1)}h=[]},f=this.d;this.d=0;var d=this.u.length,p=Ho(e,{f:n,u:o,o:r,t:function(){e.terminate&&e.terminate()},r:function(){if(u(),f){var g=t.u[d+1];g?g.r():t.d=1}f=1}}),m=0;e.ondata=function(g,y,x){if(g)t.ondata(g,y,x),t.terminate();else if(m+=y.length,h.push(y),x){var b=new ut(16);wt(b,0,134695760),wt(b,4,e.crc),wt(b,8,m),wt(b,12,e.size),h.push(b),p.c=m,p.b=l+m+16,p.crc=e.crc,p.size=e.size,f&&p.r(),f=1}else f&&u()},this.u.push(p)},a.prototype.end=function(){var e=this;if(this.d&2)throw this.d&1?\"stream finishing\":\"stream finished\";this.d?this.e():this.u.push({r:function(){!(e.d&1)||(e.u.splice(-1,1),e.e())},t:function(){}}),this.d=3},a.prototype.e=function(){for(var e=0,t=0,n=0,i=0,s=this.u;i<s.length;i++){var r=s[i];n+=46+r.f.length+is(r.extra)+(r.o?r.o.length:0)}for(var o=new ut(n+22),l=0,c=this.u;l<c.length;l++){var r=c[l];Zr(o,e,r,r.f,r.u,r.c,t,r.o),e+=46+r.f.length+is(r.extra)+(r.o?r.o.length:0),t+=r.b}th(o,e,this.u.length,n,t),this.ondata(null,o,!0),this.d=2},a.prototype.terminate=function(){for(var e=0,t=this.u;e<t.length;e++){var n=t[e];n.t()}this.d=2},a}();function dw(a,e,t){if(t||(t=e,e={}),typeof t!=\"function\")throw\"no callback\";var n={};$u(a,\"\",n,e);var i=Object.keys(n),s=i.length,r=0,o=0,l=s,c=new Array(s),h=[],u=function(){for(var m=0;m<h.length;++m)h[m]()},f=function(){var m=new ut(o+22),g=r,y=o-r;o=0;for(var x=0;x<l;++x){var b=c[x];try{var v=b.c.length;Zr(m,o,b,b.f,b.u,v);var M=30+b.f.length+is(b.extra),T=o+M;m.set(b.c,T),Zr(m,r,b,b.f,b.u,v,o,b.m),r+=16+M+(b.m?b.m.length:0),o=T+v}catch(C){return t(C,null)}}th(m,r,c.length,y,g),t(null,m)};s||f();for(var d=function(m){var g=i[m],y=n[g],x=y[0],b=y[1],v=Hr(),M=x.length;v.p(x);var T=ns(g),C=T.length,_=b.comment,E=_&&ns(_),F=E&&E.length,U=is(b.extra),q=b.level==0?0:8,K=function(G,X){if(G)u(),t(G,null);else{var O=X.length;c[m]=Ho(b,{size:M,crc:v.d(),c:X,f:T,m:E,u:C!=g.length||E&&_.length!=F,compression:q}),r+=30+C+U+O,o+=76+2*(C+U)+(F||0)+O,--s||f()}};if(C>65535&&K(\"filename too long\",null),!q)K(null,x);else if(M<16e4)try{K(null,Wo(x,b))}catch(G){K(G,null)}else h.push(am(x,b,K))},p=0;p<l;++p)d(p);return u}function pw(a,e){e||(e={});var t={},n=[];$u(a,\"\",t,e);var i=0,s=0;for(var r in t){var o=t[r],l=o[0],c=o[1],h=c.level==0?0:8,u=ns(r),f=u.length,d=c.comment,p=d&&ns(d),m=p&&p.length,g=is(c.extra);if(f>65535)throw\"filename too long\";var y=h?Wo(l,c):l,x=y.length,b=Hr();b.p(l),n.push(Ho(c,{size:l.length,crc:b.d(),c:y,f:u,m:p,u:f!=r.length||p&&d.length!=m,o:i,compression:h})),i+=30+f+g+x,s+=76+2*(f+g)+(m||0)+x}for(var v=new ut(s+22),M=i,T=s-i,C=0;C<n.length;++C){var u=n[C];Zr(v,u.o,u,u.f,u.u,u.c.length);var _=30+u.f.length+is(u.extra);v.set(u.c,u.o+_),Zr(v,i,u,u.f,u.u,u.c.length,u.o,u.m),i+=16+_+(u.m?u.m.length:0)}return th(v,i,n.length,T,M),v}var wm=function(){function a(){}return a.prototype.push=function(e,t){this.ondata(null,e,t)},a.compression=0,a}(),mw=function(){function a(){var e=this;this.i=new xn(function(t,n){e.ondata(null,t,n)})}return a.prototype.push=function(e,t){try{this.i.push(e,t)}catch(n){this.ondata(n,e,t)}},a.compression=8,a}(),gw=function(){function a(e,t){var n=this;t<32e4?this.i=new xn(function(i,s){n.ondata(null,i,s)}):(this.i=new Yu(function(i,s,r){n.ondata(i,s,r)}),this.terminate=this.i.terminate)}return a.prototype.push=function(e,t){this.i.terminate&&(e=Bn(e,0)),this.i.push(e,t)},a.compression=8,a}(),yw=function(){function a(e){this.onfile=e,this.k=[],this.o={0:wm},this.p=Ei}return a.prototype.push=function(e,t){var n=this;if(!this.onfile)throw\"no callback\";if(!this.p)throw\"stream finished\";if(this.c>0){var i=Math.min(this.c,e.length),s=e.subarray(0,i);if(this.c-=i,this.d?this.d.push(s,!this.c):this.k[0].push(s),e=e.subarray(i),e.length)return this.push(e,t)}else{var r=0,o=0,l=void 0,c=void 0;this.p.length?e.length?(c=new ut(this.p.length+e.length),c.set(this.p),c.set(e,this.p.length)):c=this.p:c=e;for(var h=c.length,u=this.c,f=u&&this.d,d=function(){var y,x=qt(c,o);if(x==67324752){r=1,l=o,p.d=null,p.c=0;var b=mn(c,o+6),v=mn(c,o+8),M=b&2048,T=b&8,C=mn(c,o+26),_=mn(c,o+28);if(h>o+30+C+_){var E=[];p.k.unshift(E),r=2;var F=qt(c,o+18),U=qt(c,o+22),q=eh(c.subarray(o+30,o+=30+C),!M);F==4294967295?(y=T?[-2]:bm(c,o),F=y[0],U=y[1]):T&&(F=-1),o+=_,p.c=F;var K,G={name:q,compression:v,start:function(){if(!G.ondata)throw\"no callback\";if(!F)G.ondata(null,Ei,!0);else{var X=n.o[v];if(!X)throw\"unknown compression type \"+v;K=F<0?new X(q):new X(q,F,U),K.ondata=function(W,Z,ee){G.ondata(W,Z,ee)};for(var O=0,j=E;O<j.length;O++){var Y=j[O];K.push(Y,!1)}n.k[0]==E&&n.c?n.d=K:K.push(Ei,!0)}},terminate:function(){K&&K.terminate&&K.terminate()}};F>=0&&(G.size=F,G.originalSize=U),p.onfile(G)}return\"break\"}else if(u){if(x==134695760)return l=o+=12+(u==-2&&8),r=3,p.c=0,\"break\";if(x==33639248)return l=o-=4,r=3,p.c=0,\"break\"}},p=this;o<h-4;++o){var m=d();if(m===\"break\")break}if(this.p=Ei,u<0){var g=r?c.subarray(0,l-12-(u==-2&&8)-(qt(c,l-16)==134695760&&4)):c.subarray(0,o);f?f.push(g,!!r):this.k[+(r==2)].push(g)}if(r&2)return this.push(c.subarray(o),t);this.p=c.subarray(o)}if(t){if(this.c)throw\"invalid zip file\";this.p=null}},a.prototype.register=function(e){this.o[e.compression]=e},a}();function xw(a,e){if(typeof e!=\"function\")throw\"no callback\";for(var t=[],n=function(){for(var f=0;f<t.length;++f)t[f]()},i={},s=a.length-22;qt(a,s)!=101010256;--s)if(!s||a.length-s>65558){e(\"invalid zip file\",null);return}var r=mn(a,s+8);r||e(null,{});var o=r,l=qt(a,s+16),c=l==4294967295;if(c){if(s=qt(a,s-12),qt(a,s)!=101075792){e(\"invalid zip file\",null);return}o=r=qt(a,s+32),l=qt(a,s+48)}for(var h=function(f){var d=_m(a,l,c),p=d[0],m=d[1],g=d[2],y=d[3],x=d[4],b=d[5],v=vm(a,b);l=x;var M=function(C,_){C?(n(),e(C,null)):(i[y]=_,--r||e(null,i))};if(!p)M(null,Bn(a,v,v+m));else if(p==8){var T=a.subarray(v,v+m);if(m<32e4)try{M(null,Yr(T,new ut(g)))}catch(C){M(C,null)}else t.push(Zu(T,{size:g},M))}else M(\"unknown compression type \"+p,null)},u=0;u<o;++u)h();return n}function vw(a){for(var e={},t=a.length-22;qt(a,t)!=101010256;--t)if(!t||a.length-t>65558)throw\"invalid zip file\";var n=mn(a,t+8);if(!n)return{};var i=qt(a,t+16),s=i==4294967295;if(s){if(t=qt(a,t-12),qt(a,t)!=101075792)throw\"invalid zip file\";n=qt(a,t+32),i=qt(a,t+48)}for(var r=0;r<n;++r){var o=_m(a,i,s),l=o[0],c=o[1],h=o[2],u=o[3],f=o[4],d=o[5],p=vm(a,d);if(i=f,!l)e[u]=Bn(a,p,p+c);else if(l==8)e[u]=Yr(a.subarray(p,p+c),new ut(h));else throw\"unknown compression type \"+l}return e}var _w=Object.freeze(Object.defineProperty({__proto__:null,Deflate:ri,AsyncDeflate:om,deflate:am,deflateSync:Wo,Inflate:xn,AsyncInflate:Yu,inflate:Zu,inflateSync:Yr,Gzip:_l,AsyncGzip:lm,gzip:cm,gzipSync:bl,Gunzip:wl,AsyncGunzip:um,gunzip:hm,gunzipSync:Ml,Zlib:Ku,AsyncZlib:iw,zlib:sw,zlibSync:Ju,Unzlib:Sl,AsyncUnzlib:fm,unzlib:dm,unzlibSync:qo,compress:cm,AsyncCompress:lm,compressSync:bl,Compress:_l,Decompress:pm,AsyncDecompress:rw,decompress:ow,decompressSync:aw,DecodeUTF8:lw,EncodeUTF8:cw,strToU8:ns,strFromU8:eh,ZipPassThrough:Xo,ZipDeflate:uw,AsyncZipDeflate:hw,Zip:fw,zip:dw,zipSync:pw,UnzipPassThrough:wm,UnzipInflate:mw,AsyncUnzipInflate:gw,Unzip:yw,unzip:xw,unzipSync:vw},Symbol.toStringTag,{value:\"Module\"}));function Mm(a,e,t){const n=t.length-a-1;if(e>=t[n])return n-1;if(e<=t[a])return a;let i=a,s=n,r=Math.floor((i+s)/2);for(;e<t[r]||e>=t[r+1];)e<t[r]?s=r:i=r,r=Math.floor((i+s)/2);return r}function bw(a,e,t,n){const i=[],s=[],r=[];i[0]=1;for(let o=1;o<=t;++o){s[o]=e-n[a+1-o],r[o]=n[a+o]-e;let l=0;for(let c=0;c<o;++c){const h=r[c+1],u=s[o-c],f=i[c]/(h+u);i[c]=l+h*f,l=u*f}i[o]=l}return i}function ww(a,e,t,n){const i=Mm(a,n,e),s=bw(i,n,a,e),r=new ft(0,0,0,0);for(let o=0;o<=a;++o){const l=t[i-a+o],c=s[o],h=l.w*c;r.x+=l.x*h,r.y+=l.y*h,r.z+=l.z*h,r.w+=l.w*c}return r}function Mw(a,e,t,n,i){const s=[];for(let u=0;u<=t;++u)s[u]=0;const r=[];for(let u=0;u<=n;++u)r[u]=s.slice(0);const o=[];for(let u=0;u<=t;++u)o[u]=s.slice(0);o[0][0]=1;const l=s.slice(0),c=s.slice(0);for(let u=1;u<=t;++u){l[u]=e-i[a+1-u],c[u]=i[a+u]-e;let f=0;for(let d=0;d<u;++d){const p=c[d+1],m=l[u-d];o[u][d]=p+m;const g=o[d][u-1]/o[u][d];o[d][u]=f+p*g,f=m*g}o[u][u]=f}for(let u=0;u<=t;++u)r[0][u]=o[u][t];for(let u=0;u<=t;++u){let f=0,d=1;const p=[];for(let m=0;m<=t;++m)p[m]=s.slice(0);p[0][0]=1;for(let m=1;m<=n;++m){let g=0;const y=u-m,x=t-m;u>=m&&(p[d][0]=p[f][0]/o[x+1][y],g=p[d][0]*o[y][x]);const b=y>=-1?1:-y,v=u-1<=x?m-1:t-u;for(let T=b;T<=v;++T)p[d][T]=(p[f][T]-p[f][T-1])/o[x+1][y+T],g+=p[d][T]*o[y+T][x];u<=x&&(p[d][m]=-p[f][m-1]/o[x+1][u],g+=p[d][m]*o[u][x]),r[m][u]=g;const M=f;f=d,d=M}}let h=t;for(let u=1;u<=n;++u){for(let f=0;f<=t;++f)r[u][f]*=h;h*=t-u}return r}function Sw(a,e,t,n,i){const s=i<a?i:a,r=[],o=Mm(a,n,e),l=Mw(o,n,a,s,e),c=[];for(let h=0;h<t.length;++h){const u=t[h].clone(),f=u.w;u.x*=f,u.y*=f,u.z*=f,c[h]=u}for(let h=0;h<=s;++h){const u=c[o-a].clone().multiplyScalar(l[h][0]);for(let f=1;f<=a;++f)u.add(c[o-a+f].clone().multiplyScalar(l[h][f]));r[h]=u}for(let h=s+1;h<=i+1;++h)r[h]=new ft(0,0,0);return r}function Tw(a,e){let t=1;for(let i=2;i<=a;++i)t*=i;let n=1;for(let i=2;i<=e;++i)n*=i;for(let i=2;i<=a-e;++i)n*=i;return t/n}function Aw(a){const e=a.length,t=[],n=[];for(let s=0;s<e;++s){const r=a[s];t[s]=new I(r.x,r.y,r.z),n[s]=r.w}const i=[];for(let s=0;s<e;++s){const r=t[s].clone();for(let o=1;o<=s;++o)r.sub(i[s-o].clone().multiplyScalar(Tw(s,o)*n[o]));i[s]=r.divideScalar(n[0])}return i}function Ew(a,e,t,n,i){const s=Sw(a,e,t,n,i);return Aw(s)}class Sm extends Fn{constructor(e,t,n,i,s){super(),this.degree=e,this.knots=t,this.controlPoints=[],this.startKnot=i||0,this.endKnot=s||this.knots.length-1;for(let r=0;r<n.length;++r){const o=n[r];this.controlPoints[r]=new ft(o.x,o.y,o.z,o.w)}}getPoint(e,t=new I){const n=t,i=this.knots[this.startKnot]+e*(this.knots[this.endKnot]-this.knots[this.startKnot]),s=ww(this.degree,this.knots,this.controlPoints,i);return s.w!==1&&s.divideScalar(s.w),n.set(s.x,s.y,s.z)}getTangent(e,t=new I){const n=t,i=this.knots[0]+e*(this.knots[this.knots.length-1]-this.knots[0]),s=Ew(this.degree,this.knots,this.controlPoints,i,1);return n.copy(s[1]).normalize(),n}}let ot,Xt,vn;class Cw extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=s.path===\"\"?sn.extractUrlBase(e):s.path,o=new Jt(this.manager);o.setPath(s.path),o.setResponseType(\"arraybuffer\"),o.setRequestHeader(s.requestHeader),o.setWithCredentials(s.withCredentials),o.load(e,function(l){try{t(s.parse(l,r))}catch(c){i?i(c):console.error(c),s.manager.itemError(e)}},n,i)}parse(e,t){if(Fw(e))ot=new Dw().parse(e);else{const i=Rm(e);if(!Nw(i))throw new Error(\"THREE.FBXLoader: Unknown format.\");if(Em(i)<7e3)throw new Error(\"THREE.FBXLoader: FBX version not supported, FileVersion: \"+Em(i));ot=new Pw().parse(i)}const n=new Os(this.manager).setPath(this.resourcePath||t).setCrossOrigin(this.crossOrigin);return new Lw(n,this.manager).parse(ot)}}class Lw{constructor(e,t){this.textureLoader=e,this.manager=t}parse(){Xt=this.parseConnections();const e=this.parseImages(),t=this.parseTextures(e),n=this.parseMaterials(t),i=this.parseDeformers(),s=new Rw().parse(i);return this.parseScene(i,s,n),vn}parseConnections(){const e=new Map;return\"Connections\"in ot&&ot.Connections.connections.forEach(function(n){const i=n[0],s=n[1],r=n[2];e.has(i)||e.set(i,{parents:[],children:[]});const o={ID:s,relationship:r};e.get(i).parents.push(o),e.has(s)||e.set(s,{parents:[],children:[]});const l={ID:i,relationship:r};e.get(s).children.push(l)}),e}parseImages(){const e={},t={};if(\"Video\"in ot.Objects){const n=ot.Objects.Video;for(const i in n){const s=n[i],r=parseInt(i);if(e[r]=s.RelativeFilename||s.Filename,\"Content\"in s){const o=s.Content instanceof ArrayBuffer&&s.Content.byteLength>0,l=typeof s.Content==\"string\"&&s.Content!==\"\";if(o||l){const c=this.parseImage(n[i]);t[s.RelativeFilename||s.Filename]=c}}}}for(const n in e){const i=e[n];t[i]!==void 0?e[n]=t[i]:e[n]=e[n].split(\"\\\\\").pop()}return e}parseImage(e){const t=e.Content,n=e.RelativeFilename||e.Filename,i=n.slice(n.lastIndexOf(\".\")+1).toLowerCase();let s;switch(i){case\"bmp\":s=\"image/bmp\";break;case\"jpg\":case\"jpeg\":s=\"image/jpeg\";break;case\"png\":s=\"image/png\";break;case\"tif\":s=\"image/tiff\";break;case\"tga\":this.manager.getHandler(\".tga\")===null&&console.warn(\"FBXLoader: TGA loader not found, skipping \",n),s=\"image/tga\";break;default:console.warn('FBXLoader: Image type \"'+i+'\" is not supported.');return}if(typeof t==\"string\")return\"data:\"+s+\";base64,\"+t;{const r=new Uint8Array(t);return window.URL.createObjectURL(new Blob([r],{type:s}))}}parseTextures(e){const t=new Map;if(\"Texture\"in ot.Objects){const n=ot.Objects.Texture;for(const i in n){const s=this.parseTexture(n[i],e);t.set(parseInt(i),s)}}return t}parseTexture(e,t){const n=this.loadTexture(e,t);n.ID=e.id,n.name=e.attrName;const i=e.WrapModeU,s=e.WrapModeV,r=i!==void 0?i.value:0,o=s!==void 0?s.value:0;if(n.wrapS=r===0?cn:jt,n.wrapT=o===0?cn:jt,\"Scaling\"in e){const l=e.Scaling.value;n.repeat.x=l[0],n.repeat.y=l[1]}if(\"Translation\"in e){const l=e.Translation.value;n.offset.x=l[0],n.offset.y=l[1]}return n}loadTexture(e,t){let n;const i=this.textureLoader.path,s=Xt.get(e.id).children;s!==void 0&&s.length>0&&t[s[0].ID]!==void 0&&(n=t[s[0].ID],(n.indexOf(\"blob:\")===0||n.indexOf(\"data:\")===0)&&this.textureLoader.setPath(void 0));let r;const o=e.FileName.slice(-3).toLowerCase();if(o===\"tga\"){const l=this.manager.getHandler(\".tga\");l===null?(console.warn(\"FBXLoader: TGA loader not found, creating placeholder texture for\",e.RelativeFilename),r=new Lt):(l.setPath(this.textureLoader.path),r=l.load(n))}else o===\"psd\"?(console.warn(\"FBXLoader: PSD textures are not supported, creating placeholder texture for\",e.RelativeFilename),r=new Lt):r=this.textureLoader.load(n);return this.textureLoader.setPath(i),r}parseMaterials(e){const t=new Map;if(\"Material\"in ot.Objects){const n=ot.Objects.Material;for(const i in n){const s=this.parseMaterial(n[i],e);s!==null&&t.set(parseInt(i),s)}}return t}parseMaterial(e,t){const n=e.id,i=e.attrName;let s=e.ShadingModel;if(typeof s==\"object\"&&(s=s.value),!Xt.has(n))return null;const r=this.parseParameters(e,t,n);let o;switch(s.toLowerCase()){case\"phong\":o=new ni;break;case\"lambert\":o=new il;break;default:console.warn('THREE.FBXLoader: unknown material type \"%s\". Defaulting to MeshPhongMaterial.',s),o=new ni;break}return o.setValues(r),o.name=i,o}parseParameters(e,t,n){const i={};e.BumpFactor&&(i.bumpScale=e.BumpFactor.value),e.Diffuse?i.color=new be().fromArray(e.Diffuse.value):e.DiffuseColor&&(e.DiffuseColor.type===\"Color\"||e.DiffuseColor.type===\"ColorRGB\")&&(i.color=new be().fromArray(e.DiffuseColor.value)),e.DisplacementFactor&&(i.displacementScale=e.DisplacementFactor.value),e.Emissive?i.emissive=new be().fromArray(e.Emissive.value):e.EmissiveColor&&(e.EmissiveColor.type===\"Color\"||e.EmissiveColor.type===\"ColorRGB\")&&(i.emissive=new be().fromArray(e.EmissiveColor.value)),e.EmissiveFactor&&(i.emissiveIntensity=parseFloat(e.EmissiveFactor.value)),e.Opacity&&(i.opacity=parseFloat(e.Opacity.value)),i.opacity<1&&(i.transparent=!0),e.ReflectionFactor&&(i.reflectivity=e.ReflectionFactor.value),e.Shininess&&(i.shininess=e.Shininess.value),e.Specular?i.specular=new be().fromArray(e.Specular.value):e.SpecularColor&&e.SpecularColor.type===\"Color\"&&(i.specular=new be().fromArray(e.SpecularColor.value));const s=this;return Xt.get(n).children.forEach(function(r){const o=r.relationship;switch(o){case\"Bump\":i.bumpMap=s.getTexture(t,r.ID);break;case\"Maya|TEX_ao_map\":i.aoMap=s.getTexture(t,r.ID);break;case\"DiffuseColor\":case\"Maya|TEX_color_map\":i.map=s.getTexture(t,r.ID),i.map!==void 0&&(i.map.encoding=it);break;case\"DisplacementColor\":i.displacementMap=s.getTexture(t,r.ID);break;case\"EmissiveColor\":i.emissiveMap=s.getTexture(t,r.ID),i.emissiveMap!==void 0&&(i.emissiveMap.encoding=it);break;case\"NormalMap\":case\"Maya|TEX_normal_map\":i.normalMap=s.getTexture(t,r.ID);break;case\"ReflectionColor\":i.envMap=s.getTexture(t,r.ID),i.envMap!==void 0&&(i.envMap.mapping=js,i.envMap.encoding=it);break;case\"SpecularColor\":i.specularMap=s.getTexture(t,r.ID),i.specularMap!==void 0&&(i.specularMap.encoding=it);break;case\"TransparentColor\":case\"TransparencyFactor\":i.alphaMap=s.getTexture(t,r.ID),i.transparent=!0;break;case\"AmbientColor\":case\"ShininessExponent\":case\"SpecularFactor\":case\"VectorDisplacementColor\":default:console.warn(\"THREE.FBXLoader: %s map is not supported in three.js, skipping texture.\",o);break}}),i}getTexture(e,t){return\"LayeredTexture\"in ot.Objects&&t in ot.Objects.LayeredTexture&&(console.warn(\"THREE.FBXLoader: layered textures are not supported in three.js. Discarding all but first layer.\"),t=Xt.get(t).children[0].ID),e.get(t)}parseDeformers(){const e={},t={};if(\"Deformer\"in ot.Objects){const n=ot.Objects.Deformer;for(const i in n){const s=n[i],r=Xt.get(parseInt(i));if(s.attrType===\"Skin\"){const o=this.parseSkeleton(r,n);o.ID=i,r.parents.length>1&&console.warn(\"THREE.FBXLoader: skeleton attached to more than one geometry is not supported.\"),o.geometryID=r.parents[0].ID,e[i]=o}else if(s.attrType===\"BlendShape\"){const o={id:i};o.rawTargets=this.parseMorphTargets(r,n),o.id=i,r.parents.length>1&&console.warn(\"THREE.FBXLoader: morph target attached to more than one geometry is not supported.\"),t[i]=o}}}return{skeletons:e,morphTargets:t}}parseSkeleton(e,t){const n=[];return e.children.forEach(function(i){const s=t[i.ID];if(s.attrType!==\"Cluster\")return;const r={ID:i.ID,indices:[],weights:[],transformLink:new Ne().fromArray(s.TransformLink.a)};\"Indexes\"in s&&(r.indices=s.Indexes.a,r.weights=s.Weights.a),n.push(r)}),{rawBones:n,bones:[]}}parseMorphTargets(e,t){const n=[];for(let i=0;i<e.children.length;i++){const s=e.children[i],r=t[s.ID],o={name:r.attrName,initialWeight:r.DeformPercent,id:r.id,fullWeights:r.FullWeights.a};if(r.attrType!==\"BlendShapeChannel\")return;o.geoID=Xt.get(parseInt(s.ID)).children.filter(function(l){return l.relationship===void 0})[0].ID,n.push(o)}return n}parseScene(e,t,n){vn=new dn;const i=this.parseModels(e.skeletons,t,n),s=ot.Objects.Model,r=this;i.forEach(function(l){const c=s[l.ID];r.setLookAtProperties(l,c),Xt.get(l.ID).parents.forEach(function(u){const f=i.get(u.ID);f!==void 0&&f.add(l)}),l.parent===null&&vn.add(l)}),this.bindSkeleton(e.skeletons,t,i),this.createAmbientLight(),vn.traverse(function(l){if(l.userData.transformData){l.parent&&(l.userData.transformData.parentMatrix=l.parent.matrix,l.userData.transformData.parentMatrixWorld=l.parent.matrixWorld);const c=Cm(l.userData.transformData);l.applyMatrix4(c),l.updateWorldMatrix()}});const o=new Iw().parse();vn.children.length===1&&vn.children[0].isGroup&&(vn.children[0].animations=o,vn=vn.children[0]),vn.animations=o}parseModels(e,t,n){const i=new Map,s=ot.Objects.Model;for(const r in s){const o=parseInt(r),l=s[r],c=Xt.get(o);let h=this.buildSkeleton(c,e,o,l.attrName);if(!h){switch(l.attrType){case\"Camera\":h=this.createCamera(c);break;case\"Light\":h=this.createLight(c);break;case\"Mesh\":h=this.createMesh(c,t,n);break;case\"NurbsCurve\":h=this.createCurve(c,t);break;case\"LimbNode\":case\"Root\":h=new Ts;break;case\"Null\":default:h=new dn;break}h.name=l.attrName?rt.sanitizeNodeName(l.attrName):\"\",h.ID=o}this.getTransformData(h,l),i.set(o,h)}return i}buildSkeleton(e,t,n,i){let s=null;return e.parents.forEach(function(r){for(const o in t){const l=t[o];l.rawBones.forEach(function(c,h){if(c.ID===r.ID){const u=s;s=new Ts,s.matrixWorld.copy(c.transformLink),s.name=i?rt.sanitizeNodeName(i):\"\",s.ID=n,l.bones[h]=s,u!==null&&s.add(u)}})}}),s}createCamera(e){let t,n;if(e.children.forEach(function(i){const s=ot.Objects.NodeAttribute[i.ID];s!==void 0&&(n=s)}),n===void 0)t=new dt;else{let i=0;n.CameraProjectionType!==void 0&&n.CameraProjectionType.value===1&&(i=1);let s=1;n.NearPlane!==void 0&&(s=n.NearPlane.value/1e3);let r=1e3;n.FarPlane!==void 0&&(r=n.FarPlane.value/1e3);let o=window.innerWidth,l=window.innerHeight;n.AspectWidth!==void 0&&n.AspectHeight!==void 0&&(o=n.AspectWidth.value,l=n.AspectHeight.value);const c=o/l;let h=45;n.FieldOfView!==void 0&&(h=n.FieldOfView.value);const u=n.FocalLength?n.FocalLength.value:null;switch(i){case 0:t=new Ot(h,c,s,r),u!==null&&t.setFocalLength(u);break;case 1:t=new ws(-o/2,o/2,l/2,-l/2,s,r);break;default:console.warn(\"THREE.FBXLoader: Unknown camera type \"+i+\".\"),t=new dt;break}}return t}createLight(e){let t,n;if(e.children.forEach(function(i){const s=ot.Objects.NodeAttribute[i.ID];s!==void 0&&(n=s)}),n===void 0)t=new dt;else{let i;n.LightType===void 0?i=0:i=n.LightType.value;let s=16777215;n.Color!==void 0&&(s=new be().fromArray(n.Color.value));let r=n.Intensity===void 0?1:n.Intensity.value/100;n.CastLightOnObject!==void 0&&n.CastLightOnObject.value===0&&(r=0);let o=0;n.FarAttenuationEnd!==void 0&&(n.EnableFarAttenuation!==void 0&&n.EnableFarAttenuation.value===0?o=0:o=n.FarAttenuationEnd.value);const l=1;switch(i){case 0:t=new $i(s,r,o,l);break;case 1:t=new Or(s,r);break;case 2:let c=Math.PI/3;n.InnerAngle!==void 0&&(c=nn.degToRad(n.InnerAngle.value));let h=0;n.OuterAngle!==void 0&&(h=nn.degToRad(n.OuterAngle.value),h=Math.max(h,1)),t=new Fo(s,r,o,c,h,l);break;default:console.warn(\"THREE.FBXLoader: Unknown light type \"+n.LightType.value+\", defaulting to a PointLight.\"),t=new $i(s,r);break}n.CastShadows!==void 0&&n.CastShadows.value===1&&(t.castShadow=!0)}return t}createMesh(e,t,n){let i,s=null,r=null;const o=[];return e.children.forEach(function(l){t.has(l.ID)&&(s=t.get(l.ID)),n.has(l.ID)&&o.push(n.get(l.ID))}),o.length>1?r=o:o.length>0?r=o[0]:(r=new ni({color:13421772}),o.push(r)),\"color\"in s.attributes&&o.forEach(function(l){l.vertexColors=!0}),s.FBX_Deformer?(i=new To(s,r),i.normalizeSkinWeights()):i=new Rt(s,r),i}createCurve(e,t){const n=e.children.reduce(function(s,r){return t.has(r.ID)&&(s=t.get(r.ID)),s},null),i=new Vt({color:3342591,linewidth:1});return new Xn(n,i)}getTransformData(e,t){const n={};\"InheritType\"in t&&(n.inheritType=parseInt(t.InheritType.value)),\"RotationOrder\"in t?n.eulerOrder=Lm(t.RotationOrder.value):n.eulerOrder=\"ZYX\",\"Lcl_Translation\"in t&&(n.translation=t.Lcl_Translation.value),\"PreRotation\"in t&&(n.preRotation=t.PreRotation.value),\"Lcl_Rotation\"in t&&(n.rotation=t.Lcl_Rotation.value),\"PostRotation\"in t&&(n.postRotation=t.PostRotation.value),\"Lcl_Scaling\"in t&&(n.scale=t.Lcl_Scaling.value),\"ScalingOffset\"in t&&(n.scalingOffset=t.ScalingOffset.value),\"ScalingPivot\"in t&&(n.scalingPivot=t.ScalingPivot.value),\"RotationOffset\"in t&&(n.rotationOffset=t.RotationOffset.value),\"RotationPivot\"in t&&(n.rotationPivot=t.RotationPivot.value),e.userData.transformData=n}setLookAtProperties(e,t){\"LookAtProperty\"in t&&Xt.get(e.ID).children.forEach(function(i){if(i.relationship===\"LookAtProperty\"){const s=ot.Objects.Model[i.ID];if(\"Lcl_Translation\"in s){const r=s.Lcl_Translation.value;e.target!==void 0?(e.target.position.fromArray(r),vn.add(e.target)):e.lookAt(new I().fromArray(r))}}})}bindSkeleton(e,t,n){const i=this.parsePoseNodes();for(const s in e){const r=e[s];Xt.get(parseInt(r.ID)).parents.forEach(function(l){if(t.has(l.ID)){const c=l.ID;Xt.get(c).parents.forEach(function(u){n.has(u.ID)&&n.get(u.ID).bind(new As(r.bones),i[u.ID])})}})}}parsePoseNodes(){const e={};if(\"Pose\"in ot.Objects){const t=ot.Objects.Pose;for(const n in t)if(t[n].attrType===\"BindPose\"&&t[n].NbPoseNodes>0){const i=t[n].PoseNode;Array.isArray(i)?i.forEach(function(s){e[s.Node]=new Ne().fromArray(s.Matrix.a)}):e[i.Node]=new Ne().fromArray(i.Matrix.a)}}return e}createAmbientLight(){if(\"GlobalSettings\"in ot&&\"AmbientColor\"in ot.GlobalSettings){const e=ot.GlobalSettings.AmbientColor.value,t=e[0],n=e[1],i=e[2];if(t!==0||n!==0||i!==0){const s=new be(t,n,i);vn.add(new ko(s,1))}}}}class Rw{parse(e){const t=new Map;if(\"Geometry\"in ot.Objects){const n=ot.Objects.Geometry;for(const i in n){const s=Xt.get(parseInt(i)),r=this.parseGeometry(s,n[i],e);t.set(parseInt(i),r)}}return t}parseGeometry(e,t,n){switch(t.attrType){case\"Mesh\":return this.parseMeshGeometry(e,t,n);case\"NurbsCurve\":return this.parseNurbsGeometry(t)}}parseMeshGeometry(e,t,n){const i=n.skeletons,s=[],r=e.parents.map(function(u){return ot.Objects.Model[u.ID]});if(r.length===0)return;const o=e.children.reduce(function(u,f){return i[f.ID]!==void 0&&(u=i[f.ID]),u},null);e.children.forEach(function(u){n.morphTargets[u.ID]!==void 0&&s.push(n.morphTargets[u.ID])});const l=r[0],c={};\"RotationOrder\"in l&&(c.eulerOrder=Lm(l.RotationOrder.value)),\"InheritType\"in l&&(c.inheritType=parseInt(l.InheritType.value)),\"GeometricTranslation\"in l&&(c.translation=l.GeometricTranslation.value),\"GeometricRotation\"in l&&(c.rotation=l.GeometricRotation.value),\"GeometricScaling\"in l&&(c.scale=l.GeometricScaling.value);const h=Cm(c);return this.genGeometry(t,o,s,h)}genGeometry(e,t,n,i){const s=new Xe;e.attrName&&(s.name=e.attrName);const r=this.parseGeoNode(e,t),o=this.genBuffers(r),l=new Ee(o.vertex,3);if(l.applyMatrix4(i),s.setAttribute(\"position\",l),o.colors.length>0&&s.setAttribute(\"color\",new Ee(o.colors,3)),t&&(s.setAttribute(\"skinIndex\",new ba(o.weightsIndices,4)),s.setAttribute(\"skinWeight\",new Ee(o.vertexWeights,4)),s.FBX_Deformer=t),o.normal.length>0){const c=new un().getNormalMatrix(i),h=new Ee(o.normal,3);h.applyNormalMatrix(c),s.setAttribute(\"normal\",h)}if(o.uvs.forEach(function(c,h){let u=\"uv\"+(h+1).toString();h===0&&(u=\"uv\"),s.setAttribute(u,new Ee(o.uvs[h],2))}),r.material&&r.material.mappingType!==\"AllSame\"){let c=o.materialIndex[0],h=0;if(o.materialIndex.forEach(function(u,f){u!==c&&(s.addGroup(h,f-h,c),c=u,h=f)}),s.groups.length>0){const u=s.groups[s.groups.length-1],f=u.start+u.count;f!==o.materialIndex.length&&s.addGroup(f,o.materialIndex.length-f,c)}s.groups.length===0&&s.addGroup(0,o.materialIndex.length,o.materialIndex[0])}return this.addMorphTargets(s,e,n,i),s}parseGeoNode(e,t){const n={};if(n.vertexPositions=e.Vertices!==void 0?e.Vertices.a:[],n.vertexIndices=e.PolygonVertexIndex!==void 0?e.PolygonVertexIndex.a:[],e.LayerElementColor&&(n.color=this.parseVertexColors(e.LayerElementColor[0])),e.LayerElementMaterial&&(n.material=this.parseMaterialIndices(e.LayerElementMaterial[0])),e.LayerElementNormal&&(n.normal=this.parseNormals(e.LayerElementNormal[0])),e.LayerElementUV){n.uv=[];let i=0;for(;e.LayerElementUV[i];)e.LayerElementUV[i].UV&&n.uv.push(this.parseUVs(e.LayerElementUV[i])),i++}return n.weightTable={},t!==null&&(n.skeleton=t,t.rawBones.forEach(function(i,s){i.indices.forEach(function(r,o){n.weightTable[r]===void 0&&(n.weightTable[r]=[]),n.weightTable[r].push({id:s,weight:i.weights[o]})})})),n}genBuffers(e){const t={vertex:[],normal:[],colors:[],uvs:[],materialIndex:[],vertexWeights:[],weightsIndices:[]};let n=0,i=0,s=!1,r=[],o=[],l=[],c=[],h=[],u=[];const f=this;return e.vertexIndices.forEach(function(d,p){let m,g=!1;d<0&&(d=d^-1,g=!0);let y=[],x=[];if(r.push(d*3,d*3+1,d*3+2),e.color){const b=Tl(p,n,d,e.color);l.push(b[0],b[1],b[2])}if(e.skeleton){if(e.weightTable[d]!==void 0&&e.weightTable[d].forEach(function(b){x.push(b.weight),y.push(b.id)}),x.length>4){s||(console.warn(\"THREE.FBXLoader: Vertex has more than 4 skinning weights assigned to vertex. Deleting additional weights.\"),s=!0);const b=[0,0,0,0],v=[0,0,0,0];x.forEach(function(M,T){let C=M,_=y[T];v.forEach(function(E,F,U){if(C>E){U[F]=C,C=E;const q=b[F];b[F]=_,_=q}})}),y=b,x=v}for(;x.length<4;)x.push(0),y.push(0);for(let b=0;b<4;++b)h.push(x[b]),u.push(y[b])}if(e.normal){const b=Tl(p,n,d,e.normal);o.push(b[0],b[1],b[2])}e.material&&e.material.mappingType!==\"AllSame\"&&(m=Tl(p,n,d,e.material)[0]),e.uv&&e.uv.forEach(function(b,v){const M=Tl(p,n,d,b);c[v]===void 0&&(c[v]=[]),c[v].push(M[0]),c[v].push(M[1])}),i++,g&&(f.genFace(t,e,r,m,o,l,c,h,u,i),n++,i=0,r=[],o=[],l=[],c=[],h=[],u=[])}),t}genFace(e,t,n,i,s,r,o,l,c,h){for(let u=2;u<h;u++)e.vertex.push(t.vertexPositions[n[0]]),e.vertex.push(t.vertexPositions[n[1]]),e.vertex.push(t.vertexPositions[n[2]]),e.vertex.push(t.vertexPositions[n[(u-1)*3]]),e.vertex.push(t.vertexPositions[n[(u-1)*3+1]]),e.vertex.push(t.vertexPositions[n[(u-1)*3+2]]),e.vertex.push(t.vertexPositions[n[u*3]]),e.vertex.push(t.vertexPositions[n[u*3+1]]),e.vertex.push(t.vertexPositions[n[u*3+2]]),t.skeleton&&(e.vertexWeights.push(l[0]),e.vertexWeights.push(l[1]),e.vertexWeights.push(l[2]),e.vertexWeights.push(l[3]),e.vertexWeights.push(l[(u-1)*4]),e.vertexWeights.push(l[(u-1)*4+1]),e.vertexWeights.push(l[(u-1)*4+2]),e.vertexWeights.push(l[(u-1)*4+3]),e.vertexWeights.push(l[u*4]),e.vertexWeights.push(l[u*4+1]),e.vertexWeights.push(l[u*4+2]),e.vertexWeights.push(l[u*4+3]),e.weightsIndices.push(c[0]),e.weightsIndices.push(c[1]),e.weightsIndices.push(c[2]),e.weightsIndices.push(c[3]),e.weightsIndices.push(c[(u-1)*4]),e.weightsIndices.push(c[(u-1)*4+1]),e.weightsIndices.push(c[(u-1)*4+2]),e.weightsIndices.push(c[(u-1)*4+3]),e.weightsIndices.push(c[u*4]),e.weightsIndices.push(c[u*4+1]),e.weightsIndices.push(c[u*4+2]),e.weightsIndices.push(c[u*4+3])),t.color&&(e.colors.push(r[0]),e.colors.push(r[1]),e.colors.push(r[2]),e.colors.push(r[(u-1)*3]),e.colors.push(r[(u-1)*3+1]),e.colors.push(r[(u-1)*3+2]),e.colors.push(r[u*3]),e.colors.push(r[u*3+1]),e.colors.push(r[u*3+2])),t.material&&t.material.mappingType!==\"AllSame\"&&(e.materialIndex.push(i),e.materialIndex.push(i),e.materialIndex.push(i)),t.normal&&(e.normal.push(s[0]),e.normal.push(s[1]),e.normal.push(s[2]),e.normal.push(s[(u-1)*3]),e.normal.push(s[(u-1)*3+1]),e.normal.push(s[(u-1)*3+2]),e.normal.push(s[u*3]),e.normal.push(s[u*3+1]),e.normal.push(s[u*3+2])),t.uv&&t.uv.forEach(function(f,d){e.uvs[d]===void 0&&(e.uvs[d]=[]),e.uvs[d].push(o[d][0]),e.uvs[d].push(o[d][1]),e.uvs[d].push(o[d][(u-1)*2]),e.uvs[d].push(o[d][(u-1)*2+1]),e.uvs[d].push(o[d][u*2]),e.uvs[d].push(o[d][u*2+1])})}addMorphTargets(e,t,n,i){if(n.length===0)return;e.morphTargetsRelative=!0,e.morphAttributes.position=[];const s=this;n.forEach(function(r){r.rawTargets.forEach(function(o){const l=ot.Objects.Geometry[o.geoID];l!==void 0&&s.genMorphGeometry(e,t,l,i,o.name)})})}genMorphGeometry(e,t,n,i,s){const r=t.PolygonVertexIndex!==void 0?t.PolygonVertexIndex.a:[],o=n.Vertices!==void 0?n.Vertices.a:[],l=n.Indexes!==void 0?n.Indexes.a:[],c=e.attributes.position.count*3,h=new Float32Array(c);for(let p=0;p<l.length;p++){const m=l[p]*3;h[m]=o[p*3],h[m+1]=o[p*3+1],h[m+2]=o[p*3+2]}const u={vertexIndices:r,vertexPositions:h},f=this.genBuffers(u),d=new Ee(f.vertex,3);d.name=s||n.attrName,d.applyMatrix4(i),e.morphAttributes.position.push(d)}parseNormals(e){const t=e.MappingInformationType,n=e.ReferenceInformationType,i=e.Normals.a;let s=[];return n===\"IndexToDirect\"&&(\"NormalIndex\"in e?s=e.NormalIndex.a:\"NormalsIndex\"in e&&(s=e.NormalsIndex.a)),{dataSize:3,buffer:i,indices:s,mappingType:t,referenceType:n}}parseUVs(e){const t=e.MappingInformationType,n=e.ReferenceInformationType,i=e.UV.a;let s=[];return n===\"IndexToDirect\"&&(s=e.UVIndex.a),{dataSize:2,buffer:i,indices:s,mappingType:t,referenceType:n}}parseVertexColors(e){const t=e.MappingInformationType,n=e.ReferenceInformationType,i=e.Colors.a;let s=[];return n===\"IndexToDirect\"&&(s=e.ColorIndex.a),{dataSize:4,buffer:i,indices:s,mappingType:t,referenceType:n}}parseMaterialIndices(e){const t=e.MappingInformationType,n=e.ReferenceInformationType;if(t===\"NoMappingInformation\")return{dataSize:1,buffer:[0],indices:[0],mappingType:\"AllSame\",referenceType:n};const i=e.Materials.a,s=[];for(let r=0;r<i.length;++r)s.push(r);return{dataSize:1,buffer:i,indices:s,mappingType:t,referenceType:n}}parseNurbsGeometry(e){if(Sm===void 0)return console.error(\"THREE.FBXLoader: The loader relies on NURBSCurve for any nurbs present in the model. Nurbs will show up as empty geometry.\"),new Xe;const t=parseInt(e.Order);if(isNaN(t))return console.error(\"THREE.FBXLoader: Invalid Order %s given for geometry ID: %s\",e.Order,e.id),new Xe;const n=t-1,i=e.KnotVector.a,s=[],r=e.Points.a;for(let u=0,f=r.length;u<f;u+=4)s.push(new ft().fromArray(r,u));let o,l;if(e.Form===\"Closed\")s.push(s[0]);else if(e.Form===\"Periodic\"){o=n,l=i.length-1-o;for(let u=0;u<n;++u)s.push(s[u])}const h=new Sm(n,i,s,o,l).getPoints(s.length*12);return new Xe().setFromPoints(h)}}class Iw{parse(){const e=[],t=this.parseClips();if(t!==void 0)for(const n in t){const i=t[n],s=this.addClip(i);e.push(s)}return e}parseClips(){if(ot.Objects.AnimationCurve===void 0)return;const e=this.parseAnimationCurveNodes();this.parseAnimationCurves(e);const t=this.parseAnimationLayers(e);return this.parseAnimStacks(t)}parseAnimationCurveNodes(){const e=ot.Objects.AnimationCurveNode,t=new Map;for(const n in e){const i=e[n];if(i.attrName.match(/S|R|T|DeformPercent/)!==null){const s={id:i.id,attr:i.attrName,curves:{}};t.set(s.id,s)}}return t}parseAnimationCurves(e){const t=ot.Objects.AnimationCurve;for(const n in t){const i={id:t[n].id,times:t[n].KeyTime.a.map(kw),values:t[n].KeyValueFloat.a},s=Xt.get(i.id);if(s!==void 0){const r=s.parents[0].ID,o=s.parents[0].relationship;o.match(/X/)?e.get(r).curves.x=i:o.match(/Y/)?e.get(r).curves.y=i:o.match(/Z/)?e.get(r).curves.z=i:o.match(/d|DeformPercent/)&&e.has(r)&&(e.get(r).curves.morph=i)}}}parseAnimationLayers(e){const t=ot.Objects.AnimationLayer,n=new Map;for(const i in t){const s=[],r=Xt.get(parseInt(i));r!==void 0&&(r.children.forEach(function(l,c){if(e.has(l.ID)){const h=e.get(l.ID);if(h.curves.x!==void 0||h.curves.y!==void 0||h.curves.z!==void 0){if(s[c]===void 0){const u=Xt.get(l.ID).parents.filter(function(f){return f.relationship!==void 0})[0].ID;if(u!==void 0){const f=ot.Objects.Model[u.toString()];if(f===void 0){console.warn(\"THREE.FBXLoader: Encountered a unused curve.\",l);return}const d={modelName:f.attrName?rt.sanitizeNodeName(f.attrName):\"\",ID:f.id,initialPosition:[0,0,0],initialRotation:[0,0,0],initialScale:[1,1,1]};vn.traverse(function(p){p.ID===f.id&&(d.transform=p.matrix,p.userData.transformData&&(d.eulerOrder=p.userData.transformData.eulerOrder))}),d.transform||(d.transform=new Ne),\"PreRotation\"in f&&(d.preRotation=f.PreRotation.value),\"PostRotation\"in f&&(d.postRotation=f.PostRotation.value),s[c]=d}}s[c]&&(s[c][h.attr]=h)}else if(h.curves.morph!==void 0){if(s[c]===void 0){const u=Xt.get(l.ID).parents.filter(function(y){return y.relationship!==void 0})[0].ID,f=Xt.get(u).parents[0].ID,d=Xt.get(f).parents[0].ID,p=Xt.get(d).parents[0].ID,m=ot.Objects.Model[p],g={modelName:m.attrName?rt.sanitizeNodeName(m.attrName):\"\",morphName:ot.Objects.Deformer[u].attrName};s[c]=g}s[c][h.attr]=h}}}),n.set(parseInt(i),s))}return n}parseAnimStacks(e){const t=ot.Objects.AnimationStack,n={};for(const i in t){const s=Xt.get(parseInt(i)).children;s.length>1&&console.warn(\"THREE.FBXLoader: Encountered an animation stack with multiple layers, this is currently not supported. Ignoring subsequent layers.\");const r=e.get(s[0].ID);n[i]={name:t[i].attrName,layer:r}}return n}addClip(e){let t=[];const n=this;return e.layer.forEach(function(i){t=t.concat(n.generateTracks(i))}),new wi(e.name,-1,t)}generateTracks(e){const t=[];let n=new I,i=new kt,s=new I;if(e.transform&&e.transform.decompose(n,i,s),n=n.toArray(),i=new In().setFromQuaternion(i,e.eulerOrder).toArray(),s=s.toArray(),e.T!==void 0&&Object.keys(e.T.curves).length>0){const r=this.generateVectorTrack(e.modelName,e.T.curves,n,\"position\");r!==void 0&&t.push(r)}if(e.R!==void 0&&Object.keys(e.R.curves).length>0){const r=this.generateRotationTrack(e.modelName,e.R.curves,i,e.preRotation,e.postRotation,e.eulerOrder);r!==void 0&&t.push(r)}if(e.S!==void 0&&Object.keys(e.S.curves).length>0){const r=this.generateVectorTrack(e.modelName,e.S.curves,s,\"scale\");r!==void 0&&t.push(r)}if(e.DeformPercent!==void 0){const r=this.generateMorphTrack(e);r!==void 0&&t.push(r)}return t}generateVectorTrack(e,t,n,i){const s=this.getTimesForAllAxes(t),r=this.getKeyframeTrackValues(s,t,n);return new bi(e+\".\"+i,s,r)}generateRotationTrack(e,t,n,i,s,r){t.x!==void 0&&(this.interpolateRotations(t.x),t.x.values=t.x.values.map(nn.degToRad)),t.y!==void 0&&(this.interpolateRotations(t.y),t.y.values=t.y.values.map(nn.degToRad)),t.z!==void 0&&(this.interpolateRotations(t.z),t.z.values=t.z.values.map(nn.degToRad));const o=this.getTimesForAllAxes(t),l=this.getKeyframeTrackValues(o,t,n);i!==void 0&&(i=i.map(nn.degToRad),i.push(r),i=new In().fromArray(i),i=new kt().setFromEuler(i)),s!==void 0&&(s=s.map(nn.degToRad),s.push(r),s=new In().fromArray(s),s=new kt().setFromEuler(s).invert());const c=new kt,h=new In,u=[];for(let f=0;f<l.length;f+=3)h.set(l[f],l[f+1],l[f+2],r),c.setFromEuler(h),i!==void 0&&c.premultiply(i),s!==void 0&&c.multiply(s),c.toArray(u,f/3*4);return new ii(e+\".quaternion\",o,u)}generateMorphTrack(e){const t=e.DeformPercent.curves.morph,n=t.values.map(function(s){return s/100}),i=vn.getObjectByName(e.modelName).morphTargetDictionary[e.morphName];return new Fs(e.modelName+\".morphTargetInfluences[\"+i+\"]\",t.times,n)}getTimesForAllAxes(e){let t=[];if(e.x!==void 0&&(t=t.concat(e.x.times)),e.y!==void 0&&(t=t.concat(e.y.times)),e.z!==void 0&&(t=t.concat(e.z.times)),t=t.sort(function(n,i){return n-i}),t.length>1){let n=1,i=t[0];for(let s=1;s<t.length;s++){const r=t[s];r!==i&&(t[n]=r,i=r,n++)}t=t.slice(0,n)}return t}getKeyframeTrackValues(e,t,n){const i=n,s=[];let r=-1,o=-1,l=-1;return e.forEach(function(c){if(t.x&&(r=t.x.times.indexOf(c)),t.y&&(o=t.y.times.indexOf(c)),t.z&&(l=t.z.times.indexOf(c)),r!==-1){const h=t.x.values[r];s.push(h),i[0]=h}else s.push(i[0]);if(o!==-1){const h=t.y.values[o];s.push(h),i[1]=h}else s.push(i[1]);if(l!==-1){const h=t.z.values[l];s.push(h),i[2]=h}else s.push(i[2])}),s}interpolateRotations(e){for(let t=1;t<e.values.length;t++){const n=e.values[t-1],i=e.values[t]-n,s=Math.abs(i);if(s>=180){const r=s/180,o=i/r;let l=n+o;const c=e.times[t-1],u=(e.times[t]-c)/r;let f=c+u;const d=[],p=[];for(;f<e.times[t];)d.push(f),f+=u,p.push(l),l+=o;e.times=Im(e.times,t,d),e.values=Im(e.values,t,p)}}}}class Pw{getPrevNode(){return this.nodeStack[this.currentIndent-2]}getCurrentNode(){return this.nodeStack[this.currentIndent-1]}getCurrentProp(){return this.currentProp}pushStack(e){this.nodeStack.push(e),this.currentIndent+=1}popStack(){this.nodeStack.pop(),this.currentIndent-=1}setCurrentProp(e,t){this.currentProp=e,this.currentPropName=t}parse(e){this.currentIndent=0,this.allNodes=new Am,this.nodeStack=[],this.currentProp=[],this.currentPropName=\"\";const t=this,n=e.split(/[\\r\\n]+/);return n.forEach(function(i,s){const r=i.match(/^[\\s\\t]*;/),o=i.match(/^[\\s\\t]*$/);if(r||o)return;const l=i.match(\"^\\\\t{\"+t.currentIndent+\"}(\\\\w+):(.*){\",\"\"),c=i.match(\"^\\\\t{\"+t.currentIndent+\"}(\\\\w+):[\\\\s\\\\t\\\\r\\\\n](.*)\"),h=i.match(\"^\\\\t{\"+(t.currentIndent-1)+\"}}\");l?t.parseNodeBegin(i,l):c?t.parseNodeProperty(i,c,n[++s]):h?t.popStack():i.match(/^[^\\s\\t}]/)&&t.parseNodePropertyContinued(i)}),this.allNodes}parseNodeBegin(e,t){const n=t[1].trim().replace(/^\"/,\"\").replace(/\"$/,\"\"),i=t[2].split(\",\").map(function(l){return l.trim().replace(/^\"/,\"\").replace(/\"$/,\"\")}),s={name:n},r=this.parseNodeAttr(i),o=this.getCurrentNode();this.currentIndent===0?this.allNodes.add(n,s):n in o?(n===\"PoseNode\"?o.PoseNode.push(s):o[n].id!==void 0&&(o[n]={},o[n][o[n].id]=o[n]),r.id!==\"\"&&(o[n][r.id]=s)):typeof r.id==\"number\"?(o[n]={},o[n][r.id]=s):n!==\"Properties70\"&&(n===\"PoseNode\"?o[n]=[s]:o[n]=s),typeof r.id==\"number\"&&(s.id=r.id),r.name!==\"\"&&(s.attrName=r.name),r.type!==\"\"&&(s.attrType=r.type),this.pushStack(s)}parseNodeAttr(e){let t=e[0];e[0]!==\"\"&&(t=parseInt(e[0]),isNaN(t)&&(t=e[0]));let n=\"\",i=\"\";return e.length>1&&(n=e[1].replace(/^(\\w+)::/,\"\"),i=e[2]),{id:t,name:n,type:i}}parseNodeProperty(e,t,n){let i=t[1].replace(/^\"/,\"\").replace(/\"$/,\"\").trim(),s=t[2].replace(/^\"/,\"\").replace(/\"$/,\"\").trim();i===\"Content\"&&s===\",\"&&(s=n.replace(/\"/g,\"\").replace(/,$/,\"\").trim());const r=this.getCurrentNode();if(r.name===\"Properties70\"){this.parseNodeSpecialProperty(e,i,s);return}if(i===\"C\"){const l=s.split(\",\").slice(1),c=parseInt(l[0]),h=parseInt(l[1]);let u=s.split(\",\").slice(3);u=u.map(function(f){return f.trim().replace(/^\"/,\"\")}),i=\"connections\",s=[c,h],Bw(s,u),r[i]===void 0&&(r[i]=[])}i===\"Node\"&&(r.id=s),i in r&&Array.isArray(r[i])?r[i].push(s):i!==\"a\"?r[i]=s:r.a=s,this.setCurrentProp(r,i),i===\"a\"&&s.slice(-1)!==\",\"&&(r.a=ih(s))}parseNodePropertyContinued(e){const t=this.getCurrentNode();t.a+=e,e.slice(-1)!==\",\"&&(t.a=ih(t.a))}parseNodeSpecialProperty(e,t,n){const i=n.split('\",').map(function(h){return h.trim().replace(/^\\\"/,\"\").replace(/\\s/,\"_\")}),s=i[0],r=i[1],o=i[2],l=i[3];let c=i[4];switch(r){case\"int\":case\"enum\":case\"bool\":case\"ULongLong\":case\"double\":case\"Number\":case\"FieldOfView\":c=parseFloat(c);break;case\"Color\":case\"ColorRGB\":case\"Vector3D\":case\"Lcl_Translation\":case\"Lcl_Rotation\":case\"Lcl_Scaling\":c=ih(c);break}this.getPrevNode()[s]={type:r,type2:o,flag:l,value:c},this.setCurrentProp(this.getPrevNode(),s)}}class Dw{parse(e){const t=new Tm(e);t.skip(23);const n=t.getUint32();if(n<6400)throw new Error(\"THREE.FBXLoader: FBX version not supported, FileVersion: \"+n);const i=new Am;for(;!this.endOfContent(t);){const s=this.parseNode(t,n);s!==null&&i.add(s.name,s)}return i}endOfContent(e){return e.size()%16===0?(e.getOffset()+160+16&-16)>=e.size():e.getOffset()+160+16>=e.size()}parseNode(e,t){const n={},i=t>=7500?e.getUint64():e.getUint32(),s=t>=7500?e.getUint64():e.getUint32();t>=7500?e.getUint64():e.getUint32();const r=e.getUint8(),o=e.getString(r);if(i===0)return null;const l=[];for(let f=0;f<s;f++)l.push(this.parseProperty(e));const c=l.length>0?l[0]:\"\",h=l.length>1?l[1]:\"\",u=l.length>2?l[2]:\"\";for(n.singleProperty=s===1&&e.getOffset()===i;i>e.getOffset();){const f=this.parseNode(e,t);f!==null&&this.parseSubNode(o,n,f)}return n.propertyList=l,typeof c==\"number\"&&(n.id=c),h!==\"\"&&(n.attrName=h),u!==\"\"&&(n.attrType=u),o!==\"\"&&(n.name=o),n}parseSubNode(e,t,n){if(n.singleProperty===!0){const i=n.propertyList[0];Array.isArray(i)?(t[n.name]=n,n.a=i):t[n.name]=i}else if(e===\"Connections\"&&n.name===\"C\"){const i=[];n.propertyList.forEach(function(s,r){r!==0&&i.push(s)}),t.connections===void 0&&(t.connections=[]),t.connections.push(i)}else if(n.name===\"Properties70\")Object.keys(n).forEach(function(s){t[s]=n[s]});else if(e===\"Properties70\"&&n.name===\"P\"){let i=n.propertyList[0],s=n.propertyList[1];const r=n.propertyList[2],o=n.propertyList[3];let l;i.indexOf(\"Lcl \")===0&&(i=i.replace(\"Lcl \",\"Lcl_\")),s.indexOf(\"Lcl \")===0&&(s=s.replace(\"Lcl \",\"Lcl_\")),s===\"Color\"||s===\"ColorRGB\"||s===\"Vector\"||s===\"Vector3D\"||s.indexOf(\"Lcl_\")===0?l=[n.propertyList[4],n.propertyList[5],n.propertyList[6]]:l=n.propertyList[4],t[i]={type:s,type2:r,flag:o,value:l}}else t[n.name]===void 0?typeof n.id==\"number\"?(t[n.name]={},t[n.name][n.id]=n):t[n.name]=n:n.name===\"PoseNode\"?(Array.isArray(t[n.name])||(t[n.name]=[t[n.name]]),t[n.name].push(n)):t[n.name][n.id]===void 0&&(t[n.name][n.id]=n)}parseProperty(e){const t=e.getString(1);let n;switch(t){case\"C\":return e.getBoolean();case\"D\":return e.getFloat64();case\"F\":return e.getFloat32();case\"I\":return e.getInt32();case\"L\":return e.getInt64();case\"R\":return n=e.getUint32(),e.getArrayBuffer(n);case\"S\":return n=e.getUint32(),e.getString(n);case\"Y\":return e.getInt16();case\"b\":case\"c\":case\"d\":case\"f\":case\"i\":case\"l\":const i=e.getUint32(),s=e.getUint32(),r=e.getUint32();if(s===0)switch(t){case\"b\":case\"c\":return e.getBooleanArray(i);case\"d\":return e.getFloat64Array(i);case\"f\":return e.getFloat32Array(i);case\"i\":return e.getInt32Array(i);case\"l\":return e.getInt64Array(i)}typeof _w==\"undefined\"&&console.error(\"THREE.FBXLoader: External library fflate.min.js required.\");const o=qo(new Uint8Array(e.getArrayBuffer(r))),l=new Tm(o.buffer);switch(t){case\"b\":case\"c\":return l.getBooleanArray(i);case\"d\":return l.getFloat64Array(i);case\"f\":return l.getFloat32Array(i);case\"i\":return l.getInt32Array(i);case\"l\":return l.getInt64Array(i)}break;default:throw new Error(\"THREE.FBXLoader: Unknown property type \"+t)}}}class Tm{constructor(e,t){this.dv=new DataView(e),this.offset=0,this.littleEndian=t!==void 0?t:!0}getOffset(){return this.offset}size(){return this.dv.buffer.byteLength}skip(e){this.offset+=e}getBoolean(){return(this.getUint8()&1)===1}getBooleanArray(e){const t=[];for(let n=0;n<e;n++)t.push(this.getBoolean());return t}getUint8(){const e=this.dv.getUint8(this.offset);return this.offset+=1,e}getInt16(){const e=this.dv.getInt16(this.offset,this.littleEndian);return this.offset+=2,e}getInt32(){const e=this.dv.getInt32(this.offset,this.littleEndian);return this.offset+=4,e}getInt32Array(e){const t=[];for(let n=0;n<e;n++)t.push(this.getInt32());return t}getUint32(){const e=this.dv.getUint32(this.offset,this.littleEndian);return this.offset+=4,e}getInt64(){let e,t;return this.littleEndian?(e=this.getUint32(),t=this.getUint32()):(t=this.getUint32(),e=this.getUint32()),t&2147483648?(t=~t&4294967295,e=~e&4294967295,e===4294967295&&(t=t+1&4294967295),e=e+1&4294967295,-(t*4294967296+e)):t*4294967296+e}getInt64Array(e){const t=[];for(let n=0;n<e;n++)t.push(this.getInt64());return t}getUint64(){let e,t;return this.littleEndian?(e=this.getUint32(),t=this.getUint32()):(t=this.getUint32(),e=this.getUint32()),t*4294967296+e}getFloat32(){const e=this.dv.getFloat32(this.offset,this.littleEndian);return this.offset+=4,e}getFloat32Array(e){const t=[];for(let n=0;n<e;n++)t.push(this.getFloat32());return t}getFloat64(){const e=this.dv.getFloat64(this.offset,this.littleEndian);return this.offset+=8,e}getFloat64Array(e){const t=[];for(let n=0;n<e;n++)t.push(this.getFloat64());return t}getArrayBuffer(e){const t=this.dv.buffer.slice(this.offset,this.offset+e);return this.offset+=e,t}getString(e){let t=[];for(let i=0;i<e;i++)t[i]=this.getUint8();const n=t.indexOf(0);return n>=0&&(t=t.slice(0,n)),sn.decodeText(new Uint8Array(t))}}class Am{add(e,t){this[e]=t}}function Fw(a){const e=\"Kaydara FBX Binary  \\0\";return a.byteLength>=e.length&&e===Rm(a,0,e.length)}function Nw(a){const e=[\"K\",\"a\",\"y\",\"d\",\"a\",\"r\",\"a\",\"\\\\\",\"F\",\"B\",\"X\",\"\\\\\",\"B\",\"i\",\"n\",\"a\",\"r\",\"y\",\"\\\\\",\"\\\\\"];let t=0;function n(i){const s=a[i-1];return a=a.slice(t+i),t++,s}for(let i=0;i<e.length;++i)if(n(1)===e[i])return!1;return!0}function Em(a){const e=/FBXVersion: (\\d+)/,t=a.match(e);if(t)return parseInt(t[1]);throw new Error(\"THREE.FBXLoader: Cannot find the version number for the file given.\")}function kw(a){return a/46186158e3}const Ow=[];function Tl(a,e,t,n){let i;switch(n.mappingType){case\"ByPolygonVertex\":i=a;break;case\"ByPolygon\":i=e;break;case\"ByVertice\":i=t;break;case\"AllSame\":i=n.indices[0];break;default:console.warn(\"THREE.FBXLoader: unknown attribute mapping type \"+n.mappingType)}n.referenceType===\"IndexToDirect\"&&(i=n.indices[i]);const s=i*n.dataSize,r=s+n.dataSize;return zw(Ow,n.buffer,s,r)}const nh=new In,Kr=new I;function Cm(a){const e=new Ne,t=new Ne,n=new Ne,i=new Ne,s=new Ne,r=new Ne,o=new Ne,l=new Ne,c=new Ne,h=new Ne,u=new Ne,f=new Ne,d=a.inheritType?a.inheritType:0;if(a.translation&&e.setPosition(Kr.fromArray(a.translation)),a.preRotation){const F=a.preRotation.map(nn.degToRad);F.push(a.eulerOrder),t.makeRotationFromEuler(nh.fromArray(F))}if(a.rotation){const F=a.rotation.map(nn.degToRad);F.push(a.eulerOrder),n.makeRotationFromEuler(nh.fromArray(F))}if(a.postRotation){const F=a.postRotation.map(nn.degToRad);F.push(a.eulerOrder),i.makeRotationFromEuler(nh.fromArray(F)),i.invert()}a.scale&&s.scale(Kr.fromArray(a.scale)),a.scalingOffset&&o.setPosition(Kr.fromArray(a.scalingOffset)),a.scalingPivot&&r.setPosition(Kr.fromArray(a.scalingPivot)),a.rotationOffset&&l.setPosition(Kr.fromArray(a.rotationOffset)),a.rotationPivot&&c.setPosition(Kr.fromArray(a.rotationPivot)),a.parentMatrixWorld&&(u.copy(a.parentMatrix),h.copy(a.parentMatrixWorld));const p=t.clone().multiply(n).multiply(i),m=new Ne;m.extractRotation(h);const g=new Ne;g.copyPosition(h);const y=g.clone().invert().multiply(h),x=m.clone().invert().multiply(y),b=s,v=new Ne;if(d===0)v.copy(m).multiply(p).multiply(x).multiply(b);else if(d===1)v.copy(m).multiply(x).multiply(p).multiply(b);else{const U=new Ne().scale(new I().setFromMatrixScale(u)).clone().invert(),q=x.clone().multiply(U);v.copy(m).multiply(p).multiply(q).multiply(b)}const M=c.clone().invert(),T=r.clone().invert();let C=e.clone().multiply(l).multiply(c).multiply(t).multiply(n).multiply(i).multiply(M).multiply(o).multiply(r).multiply(s).multiply(T);const _=new Ne().copyPosition(C),E=h.clone().multiply(_);return f.copyPosition(E),C=f.clone().multiply(v),C.premultiply(h.invert()),C}function Lm(a){a=a||0;const e=[\"ZYX\",\"YZX\",\"XZY\",\"ZXY\",\"YXZ\",\"XYZ\"];return a===6?(console.warn(\"THREE.FBXLoader: unsupported Euler Order: Spherical XYZ. Animations and rotations may be incorrect.\"),e[0]):e[a]}function ih(a){return a.split(\",\").map(function(t){return parseFloat(t)})}function Rm(a,e,t){return e===void 0&&(e=0),t===void 0&&(t=a.byteLength),sn.decodeText(new Uint8Array(a,e,t))}function Bw(a,e){for(let t=0,n=a.length,i=e.length;t<i;t++,n++)a[n]=e[t]}function zw(a,e,t,n){for(let i=t,s=0;i<n;i++,s++)a[s]=e[i];return a}function Im(a,e,t){return a.slice(0,e).concat(t).concat(a.slice(e))}class sh extends sp{constructor(e){super(e)}parse(e){function t(O){switch(O.image_type){case f:case m:(O.colormap_length>256||O.colormap_size!==24||O.colormap_type!==1)&&console.error(\"THREE.TGALoader: Invalid type colormap data for indexed type.\");break;case d:case p:case g:case y:O.colormap_type&&console.error(\"THREE.TGALoader: Invalid type colormap data for colormap type.\");break;case u:console.error(\"THREE.TGALoader: No data.\");default:console.error('THREE.TGALoader: Invalid type \"%s\".',O.image_type)}(O.width<=0||O.height<=0)&&console.error(\"THREE.TGALoader: Invalid image size.\"),O.pixel_size!==8&&O.pixel_size!==16&&O.pixel_size!==24&&O.pixel_size!==32&&console.error('THREE.TGALoader: Invalid pixel size \"%s\".',O.pixel_size)}function n(O,j,Y,W,Z){let ee,Q;const ie=Y.pixel_size>>3,ae=Y.width*Y.height*ie;if(j&&(Q=Z.subarray(W,W+=Y.colormap_length*(Y.colormap_size>>3))),O){ee=new Uint8Array(ae);let re,H,ge,we=0;const Fe=new Uint8Array(ie);for(;we<ae;)if(re=Z[W++],H=(re&127)+1,re&128){for(ge=0;ge<ie;++ge)Fe[ge]=Z[W++];for(ge=0;ge<H;++ge)ee.set(Fe,we+ge*ie);we+=ie*H}else{for(H*=ie,ge=0;ge<H;++ge)ee[we+ge]=Z[W++];we+=H}}else ee=Z.subarray(W,W+=j?Y.width*Y.height:ae);return{pixel_data:ee,palettes:Q}}function i(O,j,Y,W,Z,ee,Q,ie,ae){const re=ae;let H,ge=0,we,Fe;const xe=F.width;for(Fe=j;Fe!==W;Fe+=Y)for(we=Z;we!==Q;we+=ee,ge++)H=ie[ge],O[(we+xe*Fe)*4+3]=255,O[(we+xe*Fe)*4+2]=re[H*3+0],O[(we+xe*Fe)*4+1]=re[H*3+1],O[(we+xe*Fe)*4+0]=re[H*3+2];return O}function s(O,j,Y,W,Z,ee,Q,ie){let ae,re=0,H,ge;const we=F.width;for(ge=j;ge!==W;ge+=Y)for(H=Z;H!==Q;H+=ee,re+=2)ae=ie[re+0]+(ie[re+1]<<8),O[(H+we*ge)*4+0]=(ae&31744)>>7,O[(H+we*ge)*4+1]=(ae&992)>>2,O[(H+we*ge)*4+2]=(ae&31)<<3,O[(H+we*ge)*4+3]=ae&32768?0:255;return O}function r(O,j,Y,W,Z,ee,Q,ie){let ae=0,re,H;const ge=F.width;for(H=j;H!==W;H+=Y)for(re=Z;re!==Q;re+=ee,ae+=3)O[(re+ge*H)*4+3]=255,O[(re+ge*H)*4+2]=ie[ae+0],O[(re+ge*H)*4+1]=ie[ae+1],O[(re+ge*H)*4+0]=ie[ae+2];return O}function o(O,j,Y,W,Z,ee,Q,ie){let ae=0,re,H;const ge=F.width;for(H=j;H!==W;H+=Y)for(re=Z;re!==Q;re+=ee,ae+=4)O[(re+ge*H)*4+2]=ie[ae+0],O[(re+ge*H)*4+1]=ie[ae+1],O[(re+ge*H)*4+0]=ie[ae+2],O[(re+ge*H)*4+3]=ie[ae+3];return O}function l(O,j,Y,W,Z,ee,Q,ie){let ae,re=0,H,ge;const we=F.width;for(ge=j;ge!==W;ge+=Y)for(H=Z;H!==Q;H+=ee,re++)ae=ie[re],O[(H+we*ge)*4+0]=ae,O[(H+we*ge)*4+1]=ae,O[(H+we*ge)*4+2]=ae,O[(H+we*ge)*4+3]=255;return O}function c(O,j,Y,W,Z,ee,Q,ie){let ae=0,re,H;const ge=F.width;for(H=j;H!==W;H+=Y)for(re=Z;re!==Q;re+=ee,ae+=2)O[(re+ge*H)*4+0]=ie[ae+0],O[(re+ge*H)*4+1]=ie[ae+0],O[(re+ge*H)*4+2]=ie[ae+0],O[(re+ge*H)*4+3]=ie[ae+1];return O}function h(O,j,Y,W,Z){let ee,Q,ie,ae,re,H;switch((F.flags&x)>>b){default:case T:ee=0,ie=1,re=j,Q=0,ae=1,H=Y;break;case v:ee=0,ie=1,re=j,Q=Y-1,ae=-1,H=-1;break;case C:ee=j-1,ie=-1,re=-1,Q=0,ae=1,H=Y;break;case M:ee=j-1,ie=-1,re=-1,Q=Y-1,ae=-1,H=-1;break}if(K)switch(F.pixel_size){case 8:l(O,Q,ae,H,ee,ie,re,W);break;case 16:c(O,Q,ae,H,ee,ie,re,W);break;default:console.error(\"THREE.TGALoader: Format not supported.\");break}else switch(F.pixel_size){case 8:i(O,Q,ae,H,ee,ie,re,W,Z);break;case 16:s(O,Q,ae,H,ee,ie,re,W);break;case 24:r(O,Q,ae,H,ee,ie,re,W);break;case 32:o(O,Q,ae,H,ee,ie,re,W);break;default:console.error(\"THREE.TGALoader: Format not supported.\");break}return O}const u=0,f=1,d=2,p=3,m=9,g=10,y=11,x=48,b=4,v=0,M=1,T=2,C=3;e.length<19&&console.error(\"THREE.TGALoader: Not enough data to contain header.\");let _=0;const E=new Uint8Array(e),F={id_length:E[_++],colormap_type:E[_++],image_type:E[_++],colormap_index:E[_++]|E[_++]<<8,colormap_length:E[_++]|E[_++]<<8,colormap_size:E[_++],origin:[E[_++]|E[_++]<<8,E[_++]|E[_++]<<8],width:E[_++]|E[_++]<<8,height:E[_++]|E[_++]<<8,pixel_size:E[_++],flags:E[_++]};t(F),F.id_length+_>e.length&&console.error(\"THREE.TGALoader: No data.\"),_+=F.id_length;let U=!1,q=!1,K=!1;switch(F.image_type){case m:U=!0,q=!0;break;case f:q=!0;break;case g:U=!0;break;case d:break;case y:U=!0,K=!0;break;case p:K=!0;break}const G=new Uint8Array(F.width*F.height*4),X=n(U,q,F,_,E);return h(G,F.width,F.height,X.pixel_data,X.palettes),{data:G,width:F.width,height:F.height,flipY:!0,generateMipmaps:!0,minFilter:Kn}}}class Uw extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=s.path===\"\"?sn.extractUrlBase(e):s.path,o=new Jt(s.manager);o.setPath(s.path),o.setRequestHeader(s.requestHeader),o.setWithCredentials(s.withCredentials),o.load(e,function(l){try{t(s.parse(l,r))}catch(c){i?i(c):console.error(c),s.manager.itemError(e)}},n,i)}parse(e,t){function n(S,w){const L=[],A=S.childNodes;for(let R=0,se=A.length;R<se;R++){const fe=A[R];fe.nodeName===w&&L.push(fe)}return L}function i(S){if(S.length===0)return[];const w=S.trim().split(/\\s+/),L=new Array(w.length);for(let A=0,R=w.length;A<R;A++)L[A]=w[A];return L}function s(S){if(S.length===0)return[];const w=S.trim().split(/\\s+/),L=new Array(w.length);for(let A=0,R=w.length;A<R;A++)L[A]=parseFloat(w[A]);return L}function r(S){if(S.length===0)return[];const w=S.trim().split(/\\s+/),L=new Array(w.length);for(let A=0,R=w.length;A<R;A++)L[A]=parseInt(w[A]);return L}function o(S){return S.substring(1)}function l(){return\"three_default_\"+WM++}function c(S){return Object.keys(S).length===0}function h(S){return{unit:u(n(S,\"unit\")[0]),upAxis:f(n(S,\"up_axis\")[0])}}function u(S){return S!==void 0&&S.hasAttribute(\"meter\")===!0?parseFloat(S.getAttribute(\"meter\")):1}function f(S){return S!==void 0?S.textContent:\"Y_UP\"}function d(S,w,L,A){const R=n(S,w)[0];if(R!==void 0){const se=n(R,L);for(let fe=0;fe<se.length;fe++)A(se[fe])}}function p(S,w){for(const L in S){const A=S[L];A.build=w(S[L])}}function m(S,w){return S.build!==void 0||(S.build=w(S)),S.build}function g(S){const w={sources:{},samplers:{},channels:{}};let L=!1;for(let A=0,R=S.childNodes.length;A<R;A++){const se=S.childNodes[A];if(se.nodeType!==1)continue;let fe;switch(se.nodeName){case\"source\":fe=se.getAttribute(\"id\"),w.sources[fe]=Ae(se);break;case\"sampler\":fe=se.getAttribute(\"id\"),w.samplers[fe]=y(se);break;case\"channel\":fe=se.getAttribute(\"target\"),w.channels[fe]=x(se);break;case\"animation\":g(se),L=!0;break;default:console.log(se)}}L===!1&&(Ke.animations[S.getAttribute(\"id\")||nn.generateUUID()]=w)}function y(S){const w={inputs:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"input\":const se=o(R.getAttribute(\"source\")),fe=R.getAttribute(\"semantic\");w.inputs[fe]=se;break}}return w}function x(S){const w={};let A=S.getAttribute(\"target\").split(\"/\");const R=A.shift();let se=A.shift();const fe=se.indexOf(\"(\")!==-1,Oe=se.indexOf(\".\")!==-1;if(Oe)A=se.split(\".\"),se=A.shift(),w.member=A.shift();else if(fe){const Re=se.split(\"(\");se=Re.shift();for(let Be=0;Be<Re.length;Be++)Re[Be]=parseInt(Re[Be].replace(/\\)/,\"\"));w.indices=Re}return w.id=R,w.sid=se,w.arraySyntax=fe,w.memberSyntax=Oe,w.sampler=o(S.getAttribute(\"source\")),w}function b(S){const w=[],L=S.channels,A=S.samplers,R=S.sources;for(const se in L)if(L.hasOwnProperty(se)){const fe=L[se],Oe=A[fe.sampler],Re=Oe.inputs.INPUT,Be=Oe.inputs.OUTPUT,Ge=R[Re],Me=R[Be],qe=M(fe,Ge,Me);F(qe,w)}return w}function v(S){return m(Ke.animations[S],b)}function M(S,w,L){const A=Ke.nodes[S.id],R=Gn(A.id),se=A.transforms[S.sid],fe=A.matrix.clone().transpose();let Oe,Re,Be,Ge,Me,qe;const ze={};switch(se){case\"matrix\":for(Be=0,Ge=w.array.length;Be<Ge;Be++)if(Oe=w.array[Be],Re=Be*L.stride,ze[Oe]===void 0&&(ze[Oe]={}),S.arraySyntax===!0){const Nt=L.array[Re],St=S.indices[0]+4*S.indices[1];ze[Oe][St]=Nt}else for(Me=0,qe=L.stride;Me<qe;Me++)ze[Oe][Me]=L.array[Re+Me];break;case\"translate\":console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.',se);break;case\"rotate\":console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.',se);break;case\"scale\":console.warn('THREE.ColladaLoader: Animation transform type \"%s\" not yet implemented.',se);break}const Ye=T(ze,fe);return{name:R.uuid,keyframes:Ye}}function T(S,w){const L=[];for(const R in S)L.push({time:parseFloat(R),value:S[R]});L.sort(A);for(let R=0;R<16;R++)U(L,R,w.elements[R]);return L;function A(R,se){return R.time-se.time}}const C=new I,_=new I,E=new kt;function F(S,w){const L=S.keyframes,A=S.name,R=[],se=[],fe=[],Oe=[];for(let Re=0,Be=L.length;Re<Be;Re++){const Ge=L[Re],Me=Ge.time,qe=Ge.value;Zt.fromArray(qe).transpose(),Zt.decompose(C,E,_),R.push(Me),se.push(C.x,C.y,C.z),fe.push(E.x,E.y,E.z,E.w),Oe.push(_.x,_.y,_.z)}return se.length>0&&w.push(new bi(A+\".position\",R,se)),fe.length>0&&w.push(new ii(A+\".quaternion\",R,fe)),Oe.length>0&&w.push(new bi(A+\".scale\",R,Oe)),w}function U(S,w,L){let A,R=!0,se,fe;for(se=0,fe=S.length;se<fe;se++)A=S[se],A.value[w]===void 0?A.value[w]=null:R=!1;if(R===!0)for(se=0,fe=S.length;se<fe;se++)A=S[se],A.value[w]=L;else q(S,w)}function q(S,w){let L,A;for(let R=0,se=S.length;R<se;R++){const fe=S[R];if(fe.value[w]===null){if(L=K(S,R,w),A=G(S,R,w),L===null){fe.value[w]=A.value[w];continue}if(A===null){fe.value[w]=L.value[w];continue}X(fe,L,A,w)}}}function K(S,w,L){for(;w>=0;){const A=S[w];if(A.value[L]!==null)return A;w--}return null}function G(S,w,L){for(;w<S.length;){const A=S[w];if(A.value[L]!==null)return A;w++}return null}function X(S,w,L,A){if(L.time-w.time===0){S.value[A]=w.value[A];return}S.value[A]=(S.time-w.time)*(L.value[A]-w.value[A])/(L.time-w.time)+w.value[A]}function O(S){const w={name:S.getAttribute(\"id\")||\"default\",start:parseFloat(S.getAttribute(\"start\")||0),end:parseFloat(S.getAttribute(\"end\")||0),animations:[]};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"instance_animation\":w.animations.push(o(R.getAttribute(\"url\")));break}}Ke.clips[S.getAttribute(\"id\")]=w}function j(S){const w=[],L=S.name,A=S.end-S.start||-1,R=S.animations;for(let se=0,fe=R.length;se<fe;se++){const Oe=v(R[se]);for(let Re=0,Be=Oe.length;Re<Be;Re++)w.push(Oe[Re])}return new wi(L,A,w)}function Y(S){return m(Ke.clips[S],j)}function W(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"skin\":w.id=o(R.getAttribute(\"source\")),w.skin=Z(R);break;case\"morph\":w.id=o(R.getAttribute(\"source\")),console.warn(\"THREE.ColladaLoader: Morph target animation not supported yet.\");break}}Ke.controllers[S.getAttribute(\"id\")]=w}function Z(S){const w={sources:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"bind_shape_matrix\":w.bindShapeMatrix=s(R.textContent);break;case\"source\":const se=R.getAttribute(\"id\");w.sources[se]=Ae(R);break;case\"joints\":w.joints=ee(R);break;case\"vertex_weights\":w.vertexWeights=Q(R);break}}return w}function ee(S){const w={inputs:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"input\":const se=R.getAttribute(\"semantic\"),fe=o(R.getAttribute(\"source\"));w.inputs[se]=fe;break}}return w}function Q(S){const w={inputs:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"input\":const se=R.getAttribute(\"semantic\"),fe=o(R.getAttribute(\"source\")),Oe=parseInt(R.getAttribute(\"offset\"));w.inputs[se]={id:fe,offset:Oe};break;case\"vcount\":w.vcount=r(R.textContent);break;case\"v\":w.v=r(R.textContent);break}}return w}function ie(S){const w={id:S.id},L=Ke.geometries[w.id];return S.skin!==void 0&&(w.skin=ae(S.skin),L.sources.skinIndices=w.skin.indices,L.sources.skinWeights=w.skin.weights),w}function ae(S){const L={joints:[],indices:{array:[],stride:4},weights:{array:[],stride:4}},A=S.sources,R=S.vertexWeights,se=R.vcount,fe=R.v,Oe=R.inputs.JOINT.offset,Re=R.inputs.WEIGHT.offset,Be=S.sources[S.joints.inputs.JOINT],Ge=S.sources[S.joints.inputs.INV_BIND_MATRIX],Me=A[R.inputs.WEIGHT.id].array;let qe=0,ze,Ye,We;for(ze=0,We=se.length;ze<We;ze++){const St=se[ze],xt=[];for(Ye=0;Ye<St;Ye++){const vt=fe[qe+Oe],Ri=fe[qe+Re],wn=Me[Ri];xt.push({index:vt,weight:wn}),qe+=2}for(xt.sort(Nt),Ye=0;Ye<4;Ye++){const vt=xt[Ye];vt!==void 0?(L.indices.array.push(vt.index),L.weights.array.push(vt.weight)):(L.indices.array.push(0),L.weights.array.push(0))}}for(S.bindShapeMatrix?L.bindMatrix=new Ne().fromArray(S.bindShapeMatrix).transpose():L.bindMatrix=new Ne().identity(),ze=0,We=Be.array.length;ze<We;ze++){const St=Be.array[ze],xt=new Ne().fromArray(Ge.array,ze*Ge.stride).transpose();L.joints.push({name:St,boneInverse:xt})}return L;function Nt(St,xt){return xt.weight-St.weight}}function re(S){return m(Ke.controllers[S],ie)}function H(S){const w={init_from:n(S,\"init_from\")[0].textContent};Ke.images[S.getAttribute(\"id\")]=w}function ge(S){return S.build!==void 0?S.build:S.init_from}function we(S){const w=Ke.images[S];return w!==void 0?m(w,ge):(console.warn(\"THREE.ColladaLoader: Couldn't find image with ID:\",S),null)}function Fe(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"profile_COMMON\":w.profile=xe(R);break}}Ke.effects[S.getAttribute(\"id\")]=w}function xe(S){const w={surfaces:{},samplers:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"newparam\":Ve(R,w);break;case\"technique\":w.technique=ve(R);break;case\"extra\":w.extra=gt(R);break}}return w}function Ve(S,w){const L=S.getAttribute(\"sid\");for(let A=0,R=S.childNodes.length;A<R;A++){const se=S.childNodes[A];if(se.nodeType===1)switch(se.nodeName){case\"surface\":w.surfaces[L]=ue(se);break;case\"sampler2D\":w.samplers[L]=ce(se);break}}}function ue(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"init_from\":w.init_from=R.textContent;break}}return w}function ce(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"source\":w.source=R.textContent;break}}return w}function ve(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"constant\":case\"lambert\":case\"blinn\":case\"phong\":w.type=R.nodeName,w.parameters=ke(R);break;case\"extra\":w.extra=gt(R);break}}return w}function ke(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"emission\":case\"diffuse\":case\"specular\":case\"bump\":case\"ambient\":case\"shininess\":case\"transparency\":w[R.nodeName]=Le(R);break;case\"transparent\":w[R.nodeName]={opaque:R.hasAttribute(\"opaque\")?R.getAttribute(\"opaque\"):\"A_ONE\",data:Le(R)};break}}return w}function Le(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"color\":w[R.nodeName]=s(R.textContent);break;case\"float\":w[R.nodeName]=parseFloat(R.textContent);break;case\"texture\":w[R.nodeName]={id:R.getAttribute(\"texture\"),extra:Ze(R)};break}}return w}function Ze(S){const w={technique:{}};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"extra\":He(R,w);break}}return w}function He(S,w){for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"technique\":Ue(R,w);break}}}function Ue(S,w){for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"repeatU\":case\"repeatV\":case\"offsetU\":case\"offsetV\":w.technique[R.nodeName]=parseFloat(R.textContent);break;case\"wrapU\":case\"wrapV\":R.textContent.toUpperCase()===\"TRUE\"?w.technique[R.nodeName]=1:R.textContent.toUpperCase()===\"FALSE\"?w.technique[R.nodeName]=0:w.technique[R.nodeName]=parseInt(R.textContent);break;case\"bump\":w[R.nodeName]=k(R);break}}}function gt(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"technique\":w.technique=lt(R);break}}return w}function lt(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"double_sided\":w[R.nodeName]=parseInt(R.textContent);break;case\"bump\":w[R.nodeName]=k(R);break}}return w}function k(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"texture\":w[R.nodeName]={id:R.getAttribute(\"texture\"),texcoord:R.getAttribute(\"texcoord\"),extra:Ze(R)};break}}return w}function P(S){return S}function oe(S){return m(Ke.effects[S],P)}function _e(S){const w={name:S.getAttribute(\"name\")};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"instance_effect\":w.url=o(R.getAttribute(\"url\"));break}}Ke.materials[S.getAttribute(\"id\")]=w}function Se(S){let w,L=S.slice((S.lastIndexOf(\".\")-1>>>0)+2);switch(L=L.toLowerCase(),L){case\"tga\":w=mh;break;default:w=Ym}return w}function Ie(S){const w=oe(S.url),L=w.profile.technique;let A;switch(L.type){case\"phong\":case\"blinn\":A=new ni;break;case\"lambert\":A=new il;break;default:A=new on;break}A.name=S.name||\"\";function R(Re,Be=null){const Ge=w.profile.samplers[Re.id];let Me=null;if(Ge!==void 0){const qe=w.profile.surfaces[Ge.source];Me=we(qe.init_from)}else console.warn(\"THREE.ColladaLoader: Undefined sampler. Access image directly (see #12530).\"),Me=we(Re.id);if(Me!==null){const qe=Se(Me);if(qe!==void 0){const ze=qe.load(Me),Ye=Re.extra;if(Ye!==void 0&&Ye.technique!==void 0&&c(Ye.technique)===!1){const We=Ye.technique;ze.wrapS=We.wrapU?cn:jt,ze.wrapT=We.wrapV?cn:jt,ze.offset.set(We.offsetU||0,We.offsetV||0),ze.repeat.set(We.repeatU||1,We.repeatV||1)}else ze.wrapS=cn,ze.wrapT=cn;return Be!==null&&(ze.encoding=Be),ze}else return console.warn(\"THREE.ColladaLoader: Loader for texture %s not found.\",Me),null}else return console.warn(\"THREE.ColladaLoader: Couldn't create texture with ID:\",Re.id),null}const se=L.parameters;for(const Re in se){const Be=se[Re];switch(Re){case\"diffuse\":Be.color&&A.color.fromArray(Be.color),Be.texture&&(A.map=R(Be.texture,it));break;case\"specular\":Be.color&&A.specular&&A.specular.fromArray(Be.color),Be.texture&&(A.specularMap=R(Be.texture));break;case\"bump\":Be.texture&&(A.normalMap=R(Be.texture));break;case\"ambient\":Be.texture&&(A.lightMap=R(Be.texture,it));break;case\"shininess\":Be.float&&A.shininess&&(A.shininess=Be.float);break;case\"emission\":Be.color&&A.emissive&&A.emissive.fromArray(Be.color),Be.texture&&(A.emissiveMap=R(Be.texture,it));break}}A.color.convertSRGBToLinear(),A.specular&&A.specular.convertSRGBToLinear(),A.emissive&&A.emissive.convertSRGBToLinear();let fe=se.transparent,Oe=se.transparency;if(Oe===void 0&&fe&&(Oe={float:1}),fe===void 0&&Oe&&(fe={opaque:\"A_ONE\",data:{color:[1,1,1,1]}}),fe&&Oe)if(fe.data.texture)A.transparent=!0;else{const Re=fe.data.color;switch(fe.opaque){case\"A_ONE\":A.opacity=Re[3]*Oe.float;break;case\"RGB_ZERO\":A.opacity=1-Re[0]*Oe.float;break;case\"A_ZERO\":A.opacity=1-Re[3]*Oe.float;break;case\"RGB_ONE\":A.opacity=Re[0]*Oe.float;break;default:console.warn('THREE.ColladaLoader: Invalid opaque type \"%s\" of transparent tag.',fe.opaque)}A.opacity<1&&(A.transparent=!0)}if(L.extra!==void 0&&L.extra.technique!==void 0){const Re=L.extra.technique;for(const Be in Re){const Ge=Re[Be];switch(Be){case\"double_sided\":A.side=Ge===1?ci:li;break;case\"bump\":A.normalMap=R(Ge.texture),A.normalScale=new he(1,1);break}}}return A}function je(S){return m(Ke.materials[S],Ie)}function D(S){const w={name:S.getAttribute(\"name\")};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"optics\":w.optics=me(R);break}}Ke.cameras[S.getAttribute(\"id\")]=w}function me(S){for(let w=0;w<S.childNodes.length;w++){const L=S.childNodes[w];switch(L.nodeName){case\"technique_common\":return Te(L)}}return{}}function Te(S){const w={};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];switch(A.nodeName){case\"perspective\":case\"orthographic\":w.technique=A.nodeName,w.parameters=V(A);break}}return w}function V(S){const w={};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];switch(A.nodeName){case\"xfov\":case\"yfov\":case\"xmag\":case\"ymag\":case\"znear\":case\"zfar\":case\"aspect_ratio\":w[A.nodeName]=parseFloat(A.textContent);break}}return w}function B(S){let w;switch(S.optics.technique){case\"perspective\":w=new Ot(S.optics.parameters.yfov,S.optics.parameters.aspect_ratio,S.optics.parameters.znear,S.optics.parameters.zfar);break;case\"orthographic\":let L=S.optics.parameters.ymag,A=S.optics.parameters.xmag;const R=S.optics.parameters.aspect_ratio;A=A===void 0?L*R:A,L=L===void 0?A/R:L,A*=.5,L*=.5,w=new ws(-A,A,L,-L,S.optics.parameters.znear,S.optics.parameters.zfar);break;default:w=new Ot;break}return w.name=S.name||\"\",w}function ne(S){const w=Ke.cameras[S];return w!==void 0?m(w,B):(console.warn(\"THREE.ColladaLoader: Couldn't find camera with ID:\",S),null)}function de(S){let w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"technique_common\":w=Ce(R);break}}Ke.lights[S.getAttribute(\"id\")]=w}function Ce(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"directional\":case\"point\":case\"spot\":case\"ambient\":w.technique=R.nodeName,w.parameters=z(R)}}return w}function z(S){const w={};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"color\":const se=s(R.textContent);w.color=new be().fromArray(se).convertSRGBToLinear();break;case\"falloff_angle\":w.falloffAngle=parseFloat(R.textContent);break;case\"quadratic_attenuation\":const fe=parseFloat(R.textContent);w.distance=fe?Math.sqrt(1/fe):0;break}}return w}function ye(S){let w;switch(S.technique){case\"directional\":w=new Or;break;case\"point\":w=new $i;break;case\"spot\":w=new Fo;break;case\"ambient\":w=new ko;break}return S.parameters.color&&w.color.copy(S.parameters.color),S.parameters.distance&&(w.distance=S.parameters.distance),w}function J(S){const w=Ke.lights[S];return w!==void 0?m(w,ye):(console.warn(\"THREE.ColladaLoader: Couldn't find light with ID:\",S),null)}function Pe(S){const w={name:S.getAttribute(\"name\"),sources:{},vertices:{},primitives:[]},L=n(S,\"mesh\")[0];if(L!==void 0){for(let A=0;A<L.childNodes.length;A++){const R=L.childNodes[A];if(R.nodeType!==1)continue;const se=R.getAttribute(\"id\");switch(R.nodeName){case\"source\":w.sources[se]=Ae(R);break;case\"vertices\":w.vertices=$e(R);break;case\"polygons\":console.warn(\"THREE.ColladaLoader: Unsupported primitive type: \",R.nodeName);break;case\"lines\":case\"linestrips\":case\"polylist\":case\"triangles\":w.primitives.push(Tt(R));break;default:console.log(R)}}Ke.geometries[S.getAttribute(\"id\")]=w}}function Ae(S){const w={array:[],stride:3};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"float_array\":w.array=s(A.textContent);break;case\"Name_array\":w.array=i(A.textContent);break;case\"technique_common\":const R=n(A,\"accessor\")[0];R!==void 0&&(w.stride=parseInt(R.getAttribute(\"stride\")));break}}return w}function $e(S){const w={};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];A.nodeType===1&&(w[A.getAttribute(\"semantic\")]=o(A.getAttribute(\"source\")))}return w}function Tt(S){const w={type:S.nodeName,material:S.getAttribute(\"material\"),count:parseInt(S.getAttribute(\"count\")),inputs:{},stride:0,hasUV:!1};for(let L=0,A=S.childNodes.length;L<A;L++){const R=S.childNodes[L];if(R.nodeType===1)switch(R.nodeName){case\"input\":const se=o(R.getAttribute(\"source\")),fe=R.getAttribute(\"semantic\"),Oe=parseInt(R.getAttribute(\"offset\")),Re=parseInt(R.getAttribute(\"set\")),Be=Re>0?fe+Re:fe;w.inputs[Be]={id:se,offset:Oe},w.stride=Math.max(w.stride,Oe+1),fe===\"TEXCOORD\"&&(w.hasUV=!0);break;case\"vcount\":w.vcount=r(R.textContent);break;case\"p\":w.p=r(R.textContent);break}}return w}function ct(S){const w={};for(let L=0;L<S.length;L++){const A=S[L];w[A.type]===void 0&&(w[A.type]=[]),w[A.type].push(A)}return w}function Mt(S){let w=0;for(let L=0,A=S.length;L<A;L++)S[L].hasUV===!0&&w++;w>0&&w<S.length&&(S.uvsNeedsFix=!0)}function et(S){const w={},L=S.sources,A=S.vertices,R=S.primitives;if(R.length===0)return{};const se=ct(R);for(const fe in se){const Oe=se[fe];Mt(Oe),w[fe]=Ct(Oe,L,A)}return w}function Ct(S,w,L){const A={},R={array:[],stride:0},se={array:[],stride:0},fe={array:[],stride:0},Oe={array:[],stride:0},Re={array:[],stride:0},Be={array:[],stride:4},Ge={array:[],stride:4},Me=new Xe,qe=[];let ze=0;for(let Ye=0;Ye<S.length;Ye++){const We=S[Ye],Nt=We.inputs;let St=0;switch(We.type){case\"lines\":case\"linestrips\":St=We.count*2;break;case\"triangles\":St=We.count*3;break;case\"polylist\":for(let xt=0;xt<We.count;xt++){const vt=We.vcount[xt];switch(vt){case 3:St+=3;break;case 4:St+=6;break;default:St+=(vt-2)*3;break}}break;default:console.warn(\"THREE.ColladaLoader: Unknow primitive type:\",We.type)}Me.addGroup(ze,St,Ye),ze+=St,We.material&&qe.push(We.material);for(const xt in Nt){const vt=Nt[xt];switch(xt){case\"VERTEX\":for(const Ri in L){const wn=L[Ri];switch(Ri){case\"POSITION\":const $r=R.array.length;if(_t(We,w[wn],vt.offset,R.array),R.stride=w[wn].stride,w.skinWeights&&w.skinIndices&&(_t(We,w.skinIndices,vt.offset,Be.array),_t(We,w.skinWeights,vt.offset,Ge.array)),We.hasUV===!1&&S.uvsNeedsFix===!0){const qM=(R.array.length-$r)/R.stride;for(let Km=0;Km<qM;Km++)fe.array.push(0,0)}break;case\"NORMAL\":_t(We,w[wn],vt.offset,se.array),se.stride=w[wn].stride;break;case\"COLOR\":_t(We,w[wn],vt.offset,Re.array),Re.stride=w[wn].stride;break;case\"TEXCOORD\":_t(We,w[wn],vt.offset,fe.array),fe.stride=w[wn].stride;break;case\"TEXCOORD1\":_t(We,w[wn],vt.offset,Oe.array),fe.stride=w[wn].stride;break;default:console.warn('THREE.ColladaLoader: Semantic \"%s\" not handled in geometry build process.',Ri)}}break;case\"NORMAL\":_t(We,w[vt.id],vt.offset,se.array),se.stride=w[vt.id].stride;break;case\"COLOR\":_t(We,w[vt.id],vt.offset,Re.array,!0),Re.stride=w[vt.id].stride;break;case\"TEXCOORD\":_t(We,w[vt.id],vt.offset,fe.array),fe.stride=w[vt.id].stride;break;case\"TEXCOORD1\":_t(We,w[vt.id],vt.offset,Oe.array),Oe.stride=w[vt.id].stride;break}}}return R.array.length>0&&Me.setAttribute(\"position\",new Ee(R.array,R.stride)),se.array.length>0&&Me.setAttribute(\"normal\",new Ee(se.array,se.stride)),Re.array.length>0&&Me.setAttribute(\"color\",new Ee(Re.array,Re.stride)),fe.array.length>0&&Me.setAttribute(\"uv\",new Ee(fe.array,fe.stride)),Oe.array.length>0&&Me.setAttribute(\"uv2\",new Ee(Oe.array,Oe.stride)),Be.array.length>0&&Me.setAttribute(\"skinIndex\",new Ee(Be.array,Be.stride)),Ge.array.length>0&&Me.setAttribute(\"skinWeight\",new Ee(Ge.array,Ge.stride)),A.data=Me,A.type=S[0].type,A.materialKeys=qe,A}function _t(S,w,L,A,R=!1){const se=S.p,fe=S.stride,Oe=S.vcount;function Re(Me){let qe=se[Me+L]*Ge;const ze=qe+Ge;for(;qe<ze;qe++)A.push(Be[qe]);if(R){const Ye=A.length-Ge-1;Dl.setRGB(A[Ye+0],A[Ye+1],A[Ye+2]).convertSRGBToLinear(),A[Ye+0]=Dl.r,A[Ye+1]=Dl.g,A[Ye+2]=Dl.b}}const Be=w.array,Ge=w.stride;if(S.vcount!==void 0){let Me=0;for(let qe=0,ze=Oe.length;qe<ze;qe++){const Ye=Oe[qe];if(Ye===4){const We=Me+fe*0,Nt=Me+fe*1,St=Me+fe*2,xt=Me+fe*3;Re(We),Re(Nt),Re(xt),Re(Nt),Re(St),Re(xt)}else if(Ye===3){const We=Me+fe*0,Nt=Me+fe*1,St=Me+fe*2;Re(We),Re(Nt),Re(St)}else if(Ye>4)for(let We=1,Nt=Ye-2;We<=Nt;We++){const St=Me+fe*0,xt=Me+fe*We,vt=Me+fe*(We+1);Re(St),Re(xt),Re(vt)}Me+=fe*Ye}}else for(let Me=0,qe=se.length;Me<qe;Me+=fe)Re(Me)}function Yn(S){return m(Ke.geometries[S],et)}function gn(S){const w={name:S.getAttribute(\"name\")||\"\",joints:{},links:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"technique_common\":fh(A,w);break}}Ke.kinematicsModels[S.getAttribute(\"id\")]=w}function Rl(S){return S.build!==void 0?S.build:S}function hh(S){return m(Ke.kinematicsModels[S],Rl)}function fh(S,w){for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"joint\":w.joints[A.getAttribute(\"sid\")]=dh(A);break;case\"link\":w.links.push($(A));break}}}function dh(S){let w;for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"prismatic\":case\"revolute\":w=N(A);break}}return w}function N(S){const w={sid:S.getAttribute(\"sid\"),name:S.getAttribute(\"name\")||\"\",axis:new I,limits:{min:0,max:0},type:S.nodeName,static:!1,zeroPosition:0,middlePosition:0};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"axis\":const R=s(A.textContent);w.axis.fromArray(R);break;case\"limits\":const se=A.getElementsByTagName(\"max\")[0],fe=A.getElementsByTagName(\"min\")[0];w.limits.max=parseFloat(se.textContent),w.limits.min=parseFloat(fe.textContent);break}}return w.limits.min>=w.limits.max&&(w.static=!0),w.middlePosition=(w.limits.min+w.limits.max)/2,w}function $(S){const w={sid:S.getAttribute(\"sid\"),name:S.getAttribute(\"name\")||\"\",attachments:[],transforms:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"attachment_full\":w.attachments.push(le(A));break;case\"matrix\":case\"translate\":case\"rotate\":w.transforms.push(te(A));break}}return w}function le(S){const w={joint:S.getAttribute(\"joint\").split(\"/\").pop(),transforms:[],links:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"link\":w.links.push($(A));break;case\"matrix\":case\"translate\":case\"rotate\":w.transforms.push(te(A));break}}return w}function te(S){const w={type:S.nodeName},L=s(S.textContent);switch(w.type){case\"matrix\":w.obj=new Ne,w.obj.fromArray(L).transpose();break;case\"translate\":w.obj=new I,w.obj.fromArray(L);break;case\"rotate\":w.obj=new I,w.obj.fromArray(L),w.angle=nn.degToRad(L[3]);break}return w}function pe(S){const w={name:S.getAttribute(\"name\")||\"\",rigidBodies:{}};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"rigid_body\":w.rigidBodies[A.getAttribute(\"name\")]={},Je(A,w.rigidBodies[A.getAttribute(\"name\")]);break}}Ke.physicsModels[S.getAttribute(\"id\")]=w}function Je(S,w){for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"technique_common\":Qe(A,w);break}}}function Qe(S,w){for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"inertia\":w.inertia=s(A.textContent);break;case\"mass\":w.mass=s(A.textContent)[0];break}}}function nt(S){const w={bindJointAxis:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"bind_joint_axis\":w.bindJointAxis.push(tt(A));break}}Ke.kinematicsScenes[o(S.getAttribute(\"url\"))]=w}function tt(S){const w={target:S.getAttribute(\"target\").split(\"/\").pop()};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType===1)switch(A.nodeName){case\"axis\":const R=A.getElementsByTagName(\"param\")[0];w.axis=R.textContent;const se=w.axis.split(\"inst_\").pop().split(\"axis\")[0];w.jointIndex=se.substring(0,se.length-1);break}}return w}function bt(S){return S.build!==void 0?S.build:S}function ht(S){return m(Ke.kinematicsScenes[S],bt)}function mt(){const S=Object.keys(Ke.kinematicsModels)[0],w=Object.keys(Ke.kinematicsScenes)[0],L=Object.keys(Ke.visualScenes)[0];if(S===void 0||w===void 0)return;const A=hh(S),R=ht(w),se=Il(L),fe=R.bindJointAxis,Oe={};for(let Ge=0,Me=fe.length;Ge<Me;Ge++){const qe=fe[Ge],ze=$t.querySelector('[sid=\"'+qe.target+'\"]');if(ze){const Ye=ze.parentElement;Re(qe.jointIndex,Ye)}}function Re(Ge,Me){const qe=Me.getAttribute(\"name\"),ze=A.joints[Ge];se.traverse(function(Ye){Ye.name===qe&&(Oe[Ge]={object:Ye,transforms:It(Me),joint:ze,position:ze.zeroPosition})})}const Be=new Ne;Zm={joints:A&&A.joints,getJointValue:function(Ge){const Me=Oe[Ge];if(Me)return Me.position;console.warn(\"THREE.ColladaLoader: Joint \"+Ge+\" doesn't exist.\")},setJointValue:function(Ge,Me){const qe=Oe[Ge];if(qe){const ze=qe.joint;if(Me>ze.limits.max||Me<ze.limits.min)console.warn(\"THREE.ColladaLoader: Joint \"+Ge+\" value \"+Me+\" outside of limits (min: \"+ze.limits.min+\", max: \"+ze.limits.max+\").\");else if(ze.static)console.warn(\"THREE.ColladaLoader: Joint \"+Ge+\" is static.\");else{const Ye=qe.object,We=ze.axis,Nt=qe.transforms;Zt.identity();for(let St=0;St<Nt.length;St++){const xt=Nt[St];if(xt.sid&&xt.sid.indexOf(Ge)!==-1)switch(ze.type){case\"revolute\":Zt.multiply(Be.makeRotationAxis(We,nn.degToRad(Me)));break;case\"prismatic\":Zt.multiply(Be.makeTranslation(We.x*Me,We.y*Me,We.z*Me));break;default:console.warn(\"THREE.ColladaLoader: Unknown joint type: \"+ze.type);break}else switch(xt.type){case\"matrix\":Zt.multiply(xt.obj);break;case\"translate\":Zt.multiply(Be.makeTranslation(xt.obj.x,xt.obj.y,xt.obj.z));break;case\"scale\":Zt.scale(xt.obj);break;case\"rotate\":Zt.multiply(Be.makeRotationAxis(xt.obj,xt.angle));break}}Ye.matrix.copy(Zt),Ye.matrix.decompose(Ye.position,Ye.quaternion,Ye.scale),Oe[Ge].position=Me}}else console.log(\"THREE.ColladaLoader: \"+Ge+\" does not exist.\")}}}function It(S){const w=[],L=$t.querySelector('[id=\"'+S.id+'\"]');for(let A=0;A<L.childNodes.length;A++){const R=L.childNodes[A];if(R.nodeType!==1)continue;let se,fe;switch(R.nodeName){case\"matrix\":se=s(R.textContent);const Oe=new Ne().fromArray(se).transpose();w.push({sid:R.getAttribute(\"sid\"),type:R.nodeName,obj:Oe});break;case\"translate\":case\"scale\":se=s(R.textContent),fe=new I().fromArray(se),w.push({sid:R.getAttribute(\"sid\"),type:R.nodeName,obj:fe});break;case\"rotate\":se=s(R.textContent),fe=new I().fromArray(se);const Re=nn.degToRad(se[3]);w.push({sid:R.getAttribute(\"sid\"),type:R.nodeName,obj:fe,angle:Re});break}}return w}function Li(S){const w=S.getElementsByTagName(\"node\");for(let L=0;L<w.length;L++){const A=w[L];A.hasAttribute(\"id\")===!1&&A.setAttribute(\"id\",l())}}const Zt=new Ne,En=new I;function _n(S){const w={name:S.getAttribute(\"name\")||\"\",type:S.getAttribute(\"type\"),id:S.getAttribute(\"id\"),sid:S.getAttribute(\"sid\"),matrix:new Ne,nodes:[],instanceCameras:[],instanceControllers:[],instanceLights:[],instanceGeometries:[],instanceNodes:[],transforms:{}};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];if(A.nodeType!==1)continue;let R;switch(A.nodeName){case\"node\":w.nodes.push(A.getAttribute(\"id\")),_n(A);break;case\"instance_camera\":w.instanceCameras.push(o(A.getAttribute(\"url\")));break;case\"instance_controller\":w.instanceControllers.push(yt(A));break;case\"instance_light\":w.instanceLights.push(o(A.getAttribute(\"url\")));break;case\"instance_geometry\":w.instanceGeometries.push(yt(A));break;case\"instance_node\":w.instanceNodes.push(o(A.getAttribute(\"url\")));break;case\"matrix\":R=s(A.textContent),w.matrix.multiply(Zt.fromArray(R).transpose()),w.transforms[A.getAttribute(\"sid\")]=A.nodeName;break;case\"translate\":R=s(A.textContent),En.fromArray(R),w.matrix.multiply(Zt.makeTranslation(En.x,En.y,En.z)),w.transforms[A.getAttribute(\"sid\")]=A.nodeName;break;case\"rotate\":R=s(A.textContent);const se=nn.degToRad(R[3]);w.matrix.multiply(Zt.makeRotationAxis(En.fromArray(R),se)),w.transforms[A.getAttribute(\"sid\")]=A.nodeName;break;case\"scale\":R=s(A.textContent),w.matrix.scale(En.fromArray(R)),w.transforms[A.getAttribute(\"sid\")]=A.nodeName;break;case\"extra\":break;default:console.log(A)}}return tn(w.id)?console.warn(\"THREE.ColladaLoader: There is already a node with ID %s. Exclude current node from further processing.\",w.id):Ke.nodes[w.id]=w,w}function yt(S){const w={id:o(S.getAttribute(\"url\")),materials:{},skeletons:[]};for(let L=0;L<S.childNodes.length;L++){const A=S.childNodes[L];switch(A.nodeName){case\"bind_material\":const R=A.getElementsByTagName(\"instance_material\");for(let se=0;se<R.length;se++){const fe=R[se],Oe=fe.getAttribute(\"symbol\"),Re=fe.getAttribute(\"target\");w.materials[Oe]=o(Re)}break;case\"skeleton\":w.skeletons.push(o(A.textContent));break}}return w}function rs(S,w){const L=[],A=[];let R,se,fe;for(R=0;R<S.length;R++){const Be=S[R];let Ge;if(tn(Be))Ge=Gn(Be),Ft(Ge,w,L);else if(Jo(Be)){const qe=Ke.visualScenes[Be].children;for(let ze=0;ze<qe.length;ze++){const Ye=qe[ze];if(Ye.type===\"JOINT\"){const We=Gn(Ye.id);Ft(We,w,L)}}}else console.error(\"THREE.ColladaLoader: Unable to find root bone of skeleton with ID:\",Be)}for(R=0;R<w.length;R++)for(se=0;se<L.length;se++)if(fe=L[se],fe.bone.name===w[R].name){A[R]=fe,fe.processed=!0;break}for(R=0;R<L.length;R++)fe=L[R],fe.processed===!1&&(A.push(fe),fe.processed=!0);const Oe=[],Re=[];for(R=0;R<A.length;R++)fe=A[R],Oe.push(fe.bone),Re.push(fe.boneInverse);return new As(Oe,Re)}function Ft(S,w,L){S.traverse(function(A){if(A.isBone===!0){let R;for(let se=0;se<w.length;se++){const fe=w[se];if(fe.name===A.name){R=fe.boneInverse;break}}R===void 0&&(R=new Ne),L.push({bone:A,boneInverse:R,processed:!1})}})}function bn(S){const w=[],L=S.matrix,A=S.nodes,R=S.type,se=S.instanceCameras,fe=S.instanceControllers,Oe=S.instanceLights,Re=S.instanceGeometries,Be=S.instanceNodes;for(let Me=0,qe=A.length;Me<qe;Me++)w.push(Gn(A[Me]));for(let Me=0,qe=se.length;Me<qe;Me++){const ze=ne(se[Me]);ze!==null&&w.push(ze.clone())}for(let Me=0,qe=fe.length;Me<qe;Me++){const ze=fe[Me],Ye=re(ze.id),We=Yn(Ye.id),Nt=Jr(We,ze.materials),St=ze.skeletons,xt=Ye.skin.joints,vt=rs(St,xt);for(let Ri=0,wn=Nt.length;Ri<wn;Ri++){const $r=Nt[Ri];$r.isSkinnedMesh&&($r.bind(vt,Ye.skin.bindMatrix),$r.normalizeSkinWeights()),w.push($r)}}for(let Me=0,qe=Oe.length;Me<qe;Me++){const ze=J(Oe[Me]);ze!==null&&w.push(ze.clone())}for(let Me=0,qe=Re.length;Me<qe;Me++){const ze=Re[Me],Ye=Yn(ze.id),We=Jr(Ye,ze.materials);for(let Nt=0,St=We.length;Nt<St;Nt++)w.push(We[Nt])}for(let Me=0,qe=Be.length;Me<qe;Me++)w.push(Gn(Be[Me]).clone());let Ge;if(A.length===0&&w.length===1)Ge=w[0];else{Ge=R===\"JOINT\"?new Ts:new dn;for(let Me=0;Me<w.length;Me++)Ge.add(w[Me])}return Ge.name=R===\"JOINT\"?S.sid:S.name,Ge.matrix.copy(L),Ge.matrix.decompose(Ge.position,Ge.quaternion,Ge.scale),Ge}const ai=new on({color:16711935});function qs(S,w){const L=[];for(let A=0,R=S.length;A<R;A++){const se=w[S[A]];se===void 0?(console.warn(\"THREE.ColladaLoader: Material with key %s not found. Apply fallback material.\",S[A]),L.push(ai)):L.push(je(se))}return L}function Jr(S,w){const L=[];for(const A in S){const R=S[A],se=qs(R.materialKeys,w);se.length===0&&(A===\"lines\"||A===\"linestrips\"?se.push(new Vt):se.push(new ni));const fe=R.data.attributes.skinIndex!==void 0,Oe=se.length===1?se[0]:se;let Re;switch(A){case\"lines\":Re=new yn(R.data,Oe);break;case\"linestrips\":Re=new Xn(R.data,Oe);break;case\"triangles\":case\"polylist\":fe?Re=new To(R.data,Oe):Re=new Rt(R.data,Oe);break}L.push(Re)}return L}function tn(S){return Ke.nodes[S]!==void 0}function Gn(S){return m(Ke.nodes[S],bn)}function Ko(S){const w={name:S.getAttribute(\"name\"),children:[]};Li(S);const L=n(S,\"node\");for(let A=0;A<L.length;A++)w.children.push(_n(L[A]));Ke.visualScenes[S.getAttribute(\"id\")]=w}function ln(S){const w=new dn;w.name=S.name;const L=S.children;for(let A=0;A<L.length;A++){const R=L[A];w.add(Gn(R.id))}return w}function Jo(S){return Ke.visualScenes[S]!==void 0}function Il(S){return m(Ke.visualScenes[S],ln)}function Pl(S){const w=n(S,\"instance_visual_scene\")[0];return Il(o(w.getAttribute(\"url\")))}function GM(){const S=Ke.clips;if(c(S)===!0){if(c(Ke.animations)===!1){const w=[];for(const L in Ke.animations){const A=v(L);for(let R=0,se=A.length;R<se;R++)w.push(A[R])}Fl.push(new wi(\"default\",-1,w))}}else for(const w in S)Fl.push(Y(w))}function VM(S){let w=\"\";const L=[S];for(;L.length;){const A=L.shift();A.nodeType===Node.TEXT_NODE?w+=A.textContent:(w+=`\n`,L.push.apply(L,A.childNodes))}return w.trim()}if(e.length===0)return{scene:new Ba};const Xm=new DOMParser().parseFromString(e,\"application/xml\"),$t=n(Xm,\"COLLADA\")[0],ph=Xm.getElementsByTagName(\"parsererror\")[0];if(ph!==void 0){const S=n(ph,\"div\")[0];let w;return S?w=S.textContent:w=VM(ph),console.error(`THREE.ColladaLoader: Failed to parse collada file.\n`,w),null}const HM=$t.getAttribute(\"version\");console.log(\"THREE.ColladaLoader: File version\",HM);const jm=h(n($t,\"asset\")[0]),Ym=new Os(this.manager);Ym.setPath(this.resourcePath||t).setCrossOrigin(this.crossOrigin);let mh;sh&&(mh=new sh(this.manager),mh.setPath(this.resourcePath||t));const Dl=new be,Fl=[];let Zm={},WM=0;const Ke={animations:{},clips:{},controllers:{},images:{},effects:{},materials:{},cameras:{},lights:{},geometries:{},nodes:{},visualScenes:{},kinematicsModels:{},physicsModels:{},kinematicsScenes:{}};d($t,\"library_animations\",\"animation\",g),d($t,\"library_animation_clips\",\"animation_clip\",O),d($t,\"library_controllers\",\"controller\",W),d($t,\"library_images\",\"image\",H),d($t,\"library_effects\",\"effect\",Fe),d($t,\"library_materials\",\"material\",_e),d($t,\"library_cameras\",\"camera\",D),d($t,\"library_lights\",\"light\",de),d($t,\"library_geometries\",\"geometry\",Pe),d($t,\"library_nodes\",\"node\",_n),d($t,\"library_visual_scenes\",\"visual_scene\",Ko),d($t,\"library_kinematics_models\",\"kinematics_model\",gn),d($t,\"library_physics_models\",\"physics_model\",pe),d($t,\"scene\",\"instance_kinematics_scene\",nt),p(Ke.animations,b),p(Ke.clips,j),p(Ke.controllers,ie),p(Ke.images,ge),p(Ke.effects,P),p(Ke.materials,Ie),p(Ke.cameras,B),p(Ke.lights,ye),p(Ke.geometries,et),p(Ke.visualScenes,ln),GM(),mt();const Nl=Pl(n($t,\"scene\")[0]);return Nl.animations=Fl,jm.upAxis===\"Z_UP\"&&(console.warn(\"THREE.ColladaLoader: You are loading an asset with a Z-UP coordinate system. The loader just rotates the asset to transform it into Y-UP. The vertex data are not converted, see #24289.\"),Nl.quaternion.setFromEuler(new In(-Math.PI/2,0,0))),Nl.scale.multiplyScalar(jm.unit),{get animations(){return console.warn(\"THREE.ColladaLoader: Please access animations over scene.animations now.\"),Fl},kinematics:Zm,library:Ke,scene:Nl}}}class Gw extends Ht{constructor(e){super(e),this.dracoLoader=null,this.ktx2Loader=null,this.meshoptDecoder=null,this.pluginCallbacks=[],this.register(function(t){return new Xw(t)}),this.register(function(t){return new Qw(t)}),this.register(function(t){return new eM(t)}),this.register(function(t){return new Yw(t)}),this.register(function(t){return new Zw(t)}),this.register(function(t){return new Kw(t)}),this.register(function(t){return new Jw(t)}),this.register(function(t){return new qw(t)}),this.register(function(t){return new $w(t)}),this.register(function(t){return new jw(t)}),this.register(function(t){return new Hw(t)}),this.register(function(t){return new tM(t)})}load(e,t,n,i){const s=this;let r;this.resourcePath!==\"\"?r=this.resourcePath:this.path!==\"\"?r=this.path:r=sn.extractUrlBase(e),this.manager.itemStart(e);const o=function(c){i?i(c):console.error(c),s.manager.itemError(e),s.manager.itemEnd(e)},l=new Jt(this.manager);l.setPath(this.path),l.setResponseType(\"arraybuffer\"),l.setRequestHeader(this.requestHeader),l.setWithCredentials(this.withCredentials),l.load(e,function(c){try{s.parse(c,r,function(h){t(h),s.manager.itemEnd(e)},o)}catch(h){o(h)}},n,o)}setDRACOLoader(e){return this.dracoLoader=e,this}setDDSLoader(){throw new Error('THREE.GLTFLoader: \"MSFT_texture_dds\" no longer supported. Please update to \"KHR_texture_basisu\".')}setKTX2Loader(e){return this.ktx2Loader=e,this}setMeshoptDecoder(e){return this.meshoptDecoder=e,this}register(e){return this.pluginCallbacks.indexOf(e)===-1&&this.pluginCallbacks.push(e),this}unregister(e){return this.pluginCallbacks.indexOf(e)!==-1&&this.pluginCallbacks.splice(this.pluginCallbacks.indexOf(e),1),this}parse(e,t,n,i){let s;const r={},o={};if(typeof e==\"string\")s=e;else if(sn.decodeText(new Uint8Array(e,0,4))===Pm){try{r[at.KHR_BINARY_GLTF]=new nM(e)}catch(u){i&&i(u);return}s=r[at.KHR_BINARY_GLTF].content}else s=sn.decodeText(new Uint8Array(e));const l=JSON.parse(s);if(l.asset===void 0||l.asset.version[0]<2){i&&i(new Error(\"THREE.GLTFLoader: Unsupported asset. glTF versions >=2.0 are supported.\"));return}const c=new mM(l,{path:t||this.resourcePath||\"\",crossOrigin:this.crossOrigin,requestHeader:this.requestHeader,manager:this.manager,ktx2Loader:this.ktx2Loader,meshoptDecoder:this.meshoptDecoder});c.fileLoader.setRequestHeader(this.requestHeader);for(let h=0;h<this.pluginCallbacks.length;h++){const u=this.pluginCallbacks[h](c);o[u.name]=u,r[u.name]=!0}if(l.extensionsUsed)for(let h=0;h<l.extensionsUsed.length;++h){const u=l.extensionsUsed[h],f=l.extensionsRequired||[];switch(u){case at.KHR_MATERIALS_UNLIT:r[u]=new Ww;break;case at.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS:r[u]=new rM;break;case at.KHR_DRACO_MESH_COMPRESSION:r[u]=new iM(l,this.dracoLoader);break;case at.KHR_TEXTURE_TRANSFORM:r[u]=new sM;break;case at.KHR_MESH_QUANTIZATION:r[u]=new oM;break;default:f.indexOf(u)>=0&&o[u]===void 0&&console.warn('THREE.GLTFLoader: Unknown extension \"'+u+'\".')}}c.setExtensions(r),c.setPlugins(o),c.parse(n,i)}parseAsync(e,t){const n=this;return new Promise(function(i,s){n.parse(e,t,i,s)})}}function Vw(){let a={};return{get:function(e){return a[e]},add:function(e,t){a[e]=t},remove:function(e){delete a[e]},removeAll:function(){a={}}}}const at={KHR_BINARY_GLTF:\"KHR_binary_glTF\",KHR_DRACO_MESH_COMPRESSION:\"KHR_draco_mesh_compression\",KHR_LIGHTS_PUNCTUAL:\"KHR_lights_punctual\",KHR_MATERIALS_CLEARCOAT:\"KHR_materials_clearcoat\",KHR_MATERIALS_IOR:\"KHR_materials_ior\",KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS:\"KHR_materials_pbrSpecularGlossiness\",KHR_MATERIALS_SHEEN:\"KHR_materials_sheen\",KHR_MATERIALS_SPECULAR:\"KHR_materials_specular\",KHR_MATERIALS_TRANSMISSION:\"KHR_materials_transmission\",KHR_MATERIALS_IRIDESCENCE:\"KHR_materials_iridescence\",KHR_MATERIALS_UNLIT:\"KHR_materials_unlit\",KHR_MATERIALS_VOLUME:\"KHR_materials_volume\",KHR_TEXTURE_BASISU:\"KHR_texture_basisu\",KHR_TEXTURE_TRANSFORM:\"KHR_texture_transform\",KHR_MESH_QUANTIZATION:\"KHR_mesh_quantization\",KHR_MATERIALS_EMISSIVE_STRENGTH:\"KHR_materials_emissive_strength\",EXT_TEXTURE_WEBP:\"EXT_texture_webp\",EXT_MESHOPT_COMPRESSION:\"EXT_meshopt_compression\"};class Hw{constructor(e){this.parser=e,this.name=at.KHR_LIGHTS_PUNCTUAL,this.cache={refs:{},uses:{}}}_markDefs(){const e=this.parser,t=this.parser.json.nodes||[];for(let n=0,i=t.length;n<i;n++){const s=t[n];s.extensions&&s.extensions[this.name]&&s.extensions[this.name].light!==void 0&&e._addNodeRef(this.cache,s.extensions[this.name].light)}}_loadLight(e){const t=this.parser,n=\"light:\"+e;let i=t.cache.get(n);if(i)return i;const s=t.json,l=((s.extensions&&s.extensions[this.name]||{}).lights||[])[e];let c;const h=new be(16777215);l.color!==void 0&&h.fromArray(l.color);const u=l.range!==void 0?l.range:0;switch(l.type){case\"directional\":c=new Or(h),c.target.position.set(0,0,-1),c.add(c.target);break;case\"point\":c=new $i(h),c.distance=u;break;case\"spot\":c=new Fo(h),c.distance=u,l.spot=l.spot||{},l.spot.innerConeAngle=l.spot.innerConeAngle!==void 0?l.spot.innerConeAngle:0,l.spot.outerConeAngle=l.spot.outerConeAngle!==void 0?l.spot.outerConeAngle:Math.PI/4,c.angle=l.spot.outerConeAngle,c.penumbra=1-l.spot.innerConeAngle/l.spot.outerConeAngle,c.target.position.set(0,0,-1),c.add(c.target);break;default:throw new Error(\"THREE.GLTFLoader: Unexpected light type: \"+l.type)}return c.position.set(0,0,0),c.decay=2,l.intensity!==void 0&&(c.intensity=l.intensity),c.name=t.createUniqueName(l.name||\"light_\"+e),i=Promise.resolve(c),t.cache.add(n,i),i}createNodeAttachment(e){const t=this,n=this.parser,s=n.json.nodes[e],o=(s.extensions&&s.extensions[this.name]||{}).light;return o===void 0?null:this._loadLight(o).then(function(l){return n._getNodeRef(t.cache,o,l)})}}class Ww{constructor(){this.name=at.KHR_MATERIALS_UNLIT}getMaterialType(){return on}extendParams(e,t,n){const i=[];e.color=new be(1,1,1),e.opacity=1;const s=t.pbrMetallicRoughness;if(s){if(Array.isArray(s.baseColorFactor)){const r=s.baseColorFactor;e.color.fromArray(r),e.opacity=r[3]}s.baseColorTexture!==void 0&&i.push(n.assignTexture(e,\"map\",s.baseColorTexture,it))}return Promise.all(i)}}class qw{constructor(e){this.parser=e,this.name=at.KHR_MATERIALS_EMISSIVE_STRENGTH}extendMaterialParams(e,t){const i=this.parser.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=i.extensions[this.name].emissiveStrength;return s!==void 0&&(t.emissiveIntensity=s),Promise.resolve()}}class Xw{constructor(e){this.parser=e,this.name=at.KHR_MATERIALS_CLEARCOAT}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:_i}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];if(r.clearcoatFactor!==void 0&&(t.clearcoat=r.clearcoatFactor),r.clearcoatTexture!==void 0&&s.push(n.assignTexture(t,\"clearcoatMap\",r.clearcoatTexture)),r.clearcoatRoughnessFactor!==void 0&&(t.clearcoatRoughness=r.clearcoatRoughnessFactor),r.clearcoatRoughnessTexture!==void 0&&s.push(n.assignTexture(t,\"clearcoatRoughnessMap\",r.clearcoatRoughnessTexture)),r.clearcoatNormalTexture!==void 0&&(s.push(n.assignTexture(t,\"clearcoatNormalMap\",r.clearcoatNormalTexture)),r.clearcoatNormalTexture.scale!==void 0)){const o=r.clearcoatNormalTexture.scale;t.clearcoatNormalScale=new he(o,o)}return Promise.all(s)}}class jw{constructor(e){this.parser=e,this.name=at.KHR_MATERIALS_IRIDESCENCE}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:_i}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];return r.iridescenceFactor!==void 0&&(t.iridescence=r.iridescenceFactor),r.iridescenceTexture!==void 0&&s.push(n.assignTexture(t,\"iridescenceMap\",r.iridescenceTexture)),r.iridescenceIor!==void 0&&(t.iridescenceIOR=r.iridescenceIor),t.iridescenceThicknessRange===void 0&&(t.iridescenceThicknessRange=[100,400]),r.iridescenceThicknessMinimum!==void 0&&(t.iridescenceThicknessRange[0]=r.iridescenceThicknessMinimum),r.iridescenceThicknessMaximum!==void 0&&(t.iridescenceThicknessRange[1]=r.iridescenceThicknessMaximum),r.iridescenceThicknessTexture!==void 0&&s.push(n.assignTexture(t,\"iridescenceThicknessMap\",r.iridescenceThicknessTexture)),Promise.all(s)}}class Yw{constructor(e){this.parser=e,this.name=at.KHR_MATERIALS_SHEEN}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:_i}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[];t.sheenColor=new be(0,0,0),t.sheenRoughness=0,t.sheen=1;const r=i.extensions[this.name];return r.sheenColorFactor!==void 0&&t.sheenColor.fromArray(r.sheenColorFactor),r.sheenRoughnessFactor!==void 0&&(t.sheenRoughness=r.sheenRoughnessFactor),r.sheenColorTexture!==void 0&&s.push(n.assignTexture(t,\"sheenColorMap\",r.sheenColorTexture,it)),r.sheenRoughnessTexture!==void 0&&s.push(n.assignTexture(t,\"sheenRoughnessMap\",r.sheenRoughnessTexture)),Promise.all(s)}}class Zw{constructor(e){this.parser=e,this.name=at.KHR_MATERIALS_TRANSMISSION}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:_i}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];return r.transmissionFactor!==void 0&&(t.transmission=r.transmissionFactor),r.transmissionTexture!==void 0&&s.push(n.assignTexture(t,\"transmissionMap\",r.transmissionTexture)),Promise.all(s)}}class Kw{constructor(e){this.parser=e,this.name=at.KHR_MATERIALS_VOLUME}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:_i}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];t.thickness=r.thicknessFactor!==void 0?r.thicknessFactor:0,r.thicknessTexture!==void 0&&s.push(n.assignTexture(t,\"thicknessMap\",r.thicknessTexture)),t.attenuationDistance=r.attenuationDistance||0;const o=r.attenuationColor||[1,1,1];return t.attenuationColor=new be(o[0],o[1],o[2]),Promise.all(s)}}class Jw{constructor(e){this.parser=e,this.name=at.KHR_MATERIALS_IOR}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:_i}extendMaterialParams(e,t){const i=this.parser.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=i.extensions[this.name];return t.ior=s.ior!==void 0?s.ior:1.5,Promise.resolve()}}class $w{constructor(e){this.parser=e,this.name=at.KHR_MATERIALS_SPECULAR}getMaterialType(e){const n=this.parser.json.materials[e];return!n.extensions||!n.extensions[this.name]?null:_i}extendMaterialParams(e,t){const n=this.parser,i=n.json.materials[e];if(!i.extensions||!i.extensions[this.name])return Promise.resolve();const s=[],r=i.extensions[this.name];t.specularIntensity=r.specularFactor!==void 0?r.specularFactor:1,r.specularTexture!==void 0&&s.push(n.assignTexture(t,\"specularIntensityMap\",r.specularTexture));const o=r.specularColorFactor||[1,1,1];return t.specularColor=new be(o[0],o[1],o[2]),r.specularColorTexture!==void 0&&s.push(n.assignTexture(t,\"specularColorMap\",r.specularColorTexture,it)),Promise.all(s)}}class Qw{constructor(e){this.parser=e,this.name=at.KHR_TEXTURE_BASISU}loadTexture(e){const t=this.parser,n=t.json,i=n.textures[e];if(!i.extensions||!i.extensions[this.name])return null;const s=i.extensions[this.name],r=t.options.ktx2Loader;if(!r){if(n.extensionsRequired&&n.extensionsRequired.indexOf(this.name)>=0)throw new Error(\"THREE.GLTFLoader: setKTX2Loader must be called before loading KTX2 textures\");return null}return t.loadTextureImage(e,s.source,r)}}class eM{constructor(e){this.parser=e,this.name=at.EXT_TEXTURE_WEBP,this.isSupported=null}loadTexture(e){const t=this.name,n=this.parser,i=n.json,s=i.textures[e];if(!s.extensions||!s.extensions[t])return null;const r=s.extensions[t],o=i.images[r.source];let l=n.textureLoader;if(o.uri){const c=n.options.manager.getHandler(o.uri);c!==null&&(l=c)}return this.detectSupport().then(function(c){if(c)return n.loadTextureImage(e,r.source,l);if(i.extensionsRequired&&i.extensionsRequired.indexOf(t)>=0)throw new Error(\"THREE.GLTFLoader: WebP required by asset but unsupported.\");return n.loadTexture(e)})}detectSupport(){return this.isSupported||(this.isSupported=new Promise(function(e){const t=new Image;t.src=\"data:image/webp;base64,UklGRiIAAABXRUJQVlA4IBYAAAAwAQCdASoBAAEADsD+JaQAA3AAAAAA\",t.onload=t.onerror=function(){e(t.height===1)}})),this.isSupported}}class tM{constructor(e){this.name=at.EXT_MESHOPT_COMPRESSION,this.parser=e}loadBufferView(e){const t=this.parser.json,n=t.bufferViews[e];if(n.extensions&&n.extensions[this.name]){const i=n.extensions[this.name],s=this.parser.getDependency(\"buffer\",i.buffer),r=this.parser.options.meshoptDecoder;if(!r||!r.supported){if(t.extensionsRequired&&t.extensionsRequired.indexOf(this.name)>=0)throw new Error(\"THREE.GLTFLoader: setMeshoptDecoder must be called before loading compressed files\");return null}return Promise.all([s,r.ready]).then(function(o){const l=i.byteOffset||0,c=i.byteLength||0,h=i.count,u=i.byteStride,f=new ArrayBuffer(h*u),d=new Uint8Array(o[0],l,c);return r.decodeGltfBuffer(new Uint8Array(f),h,u,d,i.mode,i.filter),f})}else return null}}const Pm=\"glTF\",jo=12,Dm={JSON:1313821514,BIN:5130562};class nM{constructor(e){this.name=at.KHR_BINARY_GLTF,this.content=null,this.body=null;const t=new DataView(e,0,jo);if(this.header={magic:sn.decodeText(new Uint8Array(e.slice(0,4))),version:t.getUint32(4,!0),length:t.getUint32(8,!0)},this.header.magic!==Pm)throw new Error(\"THREE.GLTFLoader: Unsupported glTF-Binary header.\");if(this.header.version<2)throw new Error(\"THREE.GLTFLoader: Legacy binary file detected.\");const n=this.header.length-jo,i=new DataView(e,jo);let s=0;for(;s<n;){const r=i.getUint32(s,!0);s+=4;const o=i.getUint32(s,!0);if(s+=4,o===Dm.JSON){const l=new Uint8Array(e,jo+s,r);this.content=sn.decodeText(l)}else if(o===Dm.BIN){const l=jo+s;this.body=e.slice(l,l+r)}s+=r}if(this.content===null)throw new Error(\"THREE.GLTFLoader: JSON content not found.\")}}class iM{constructor(e,t){if(!t)throw new Error(\"THREE.GLTFLoader: No DRACOLoader instance provided.\");this.name=at.KHR_DRACO_MESH_COMPRESSION,this.json=e,this.dracoLoader=t,this.dracoLoader.preload()}decodePrimitive(e,t){const n=this.json,i=this.dracoLoader,s=e.extensions[this.name].bufferView,r=e.extensions[this.name].attributes,o={},l={},c={};for(const h in r){const u=oh[h]||h.toLowerCase();o[u]=r[h]}for(const h in e.attributes){const u=oh[h]||h.toLowerCase();if(r[h]!==void 0){const f=n.accessors[e.attributes[h]],d=Yo[f.componentType];c[u]=d,l[u]=f.normalized===!0}}return t.getDependency(\"bufferView\",s).then(function(h){return new Promise(function(u){i.decodeDracoFile(h,function(f){for(const d in f.attributes){const p=f.attributes[d],m=l[d];m!==void 0&&(p.normalized=m)}u(f)},o,c)})})}}class sM{constructor(){this.name=at.KHR_TEXTURE_TRANSFORM}extendTexture(e,t){return t.texCoord!==void 0&&console.warn('THREE.GLTFLoader: Custom UV sets in \"'+this.name+'\" extension not yet supported.'),t.offset===void 0&&t.rotation===void 0&&t.scale===void 0||(e=e.clone(),t.offset!==void 0&&e.offset.fromArray(t.offset),t.rotation!==void 0&&(e.rotation=t.rotation),t.scale!==void 0&&e.repeat.fromArray(t.scale),e.needsUpdate=!0),e}}class rh extends Is{constructor(e){super(),this.isGLTFSpecularGlossinessMaterial=!0;const t=[\"#ifdef USE_SPECULARMAP\",\"\tuniform sampler2D specularMap;\",\"#endif\"].join(`\n`),n=[\"#ifdef USE_GLOSSINESSMAP\",\"\tuniform sampler2D glossinessMap;\",\"#endif\"].join(`\n`),i=[\"vec3 specularFactor = specular;\",\"#ifdef USE_SPECULARMAP\",\"\tvec4 texelSpecular = texture2D( specularMap, vUv );\",\"\t// reads channel RGB, compatible with a glTF Specular-Glossiness (RGBA) texture\",\"\tspecularFactor *= texelSpecular.rgb;\",\"#endif\"].join(`\n`),s=[\"float glossinessFactor = glossiness;\",\"#ifdef USE_GLOSSINESSMAP\",\"\tvec4 texelGlossiness = texture2D( glossinessMap, vUv );\",\"\t// reads channel A, compatible with a glTF Specular-Glossiness (RGBA) texture\",\"\tglossinessFactor *= texelGlossiness.a;\",\"#endif\"].join(`\n`),r=[\"PhysicalMaterial material;\",\"material.diffuseColor = diffuseColor.rgb * ( 1. - max( specularFactor.r, max( specularFactor.g, specularFactor.b ) ) );\",\"vec3 dxy = max( abs( dFdx( geometryNormal ) ), abs( dFdy( geometryNormal ) ) );\",\"float geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z );\",\"material.roughness = max( 1.0 - glossinessFactor, 0.0525 ); // 0.0525 corresponds to the base mip of a 256 cubemap.\",\"material.roughness += geometryRoughness;\",\"material.roughness = min( material.roughness, 1.0 );\",\"material.specularColor = specularFactor;\"].join(`\n`),o={specular:{value:new be().setHex(16777215)},glossiness:{value:1},specularMap:{value:null},glossinessMap:{value:null}};this._extraUniforms=o,this.onBeforeCompile=function(l){for(const c in o)l.uniforms[c]=o[c];l.fragmentShader=l.fragmentShader.replace(\"uniform float roughness;\",\"uniform vec3 specular;\").replace(\"uniform float metalness;\",\"uniform float glossiness;\").replace(\"#include <roughnessmap_pars_fragment>\",t).replace(\"#include <metalnessmap_pars_fragment>\",n).replace(\"#include <roughnessmap_fragment>\",i).replace(\"#include <metalnessmap_fragment>\",s).replace(\"#include <lights_physical_fragment>\",r)},Object.defineProperties(this,{specular:{get:function(){return o.specular.value},set:function(l){o.specular.value=l}},specularMap:{get:function(){return o.specularMap.value},set:function(l){o.specularMap.value=l,l?this.defines.USE_SPECULARMAP=\"\":delete this.defines.USE_SPECULARMAP}},glossiness:{get:function(){return o.glossiness.value},set:function(l){o.glossiness.value=l}},glossinessMap:{get:function(){return o.glossinessMap.value},set:function(l){o.glossinessMap.value=l,l?(this.defines.USE_GLOSSINESSMAP=\"\",this.defines.USE_UV=\"\"):(delete this.defines.USE_GLOSSINESSMAP,delete this.defines.USE_UV)}}}),delete this.metalness,delete this.roughness,delete this.metalnessMap,delete this.roughnessMap,this.setValues(e)}copy(e){return super.copy(e),this.specularMap=e.specularMap,this.specular.copy(e.specular),this.glossinessMap=e.glossinessMap,this.glossiness=e.glossiness,delete this.metalness,delete this.roughness,delete this.metalnessMap,delete this.roughnessMap,this}}class rM{constructor(){this.name=at.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS,this.specularGlossinessParams=[\"color\",\"map\",\"lightMap\",\"lightMapIntensity\",\"aoMap\",\"aoMapIntensity\",\"emissive\",\"emissiveIntensity\",\"emissiveMap\",\"bumpMap\",\"bumpScale\",\"normalMap\",\"normalMapType\",\"displacementMap\",\"displacementScale\",\"displacementBias\",\"specularMap\",\"specular\",\"glossinessMap\",\"glossiness\",\"alphaMap\",\"envMap\",\"envMapIntensity\"]}getMaterialType(){return rh}extendParams(e,t,n){const i=t.extensions[this.name];e.color=new be(1,1,1),e.opacity=1;const s=[];if(Array.isArray(i.diffuseFactor)){const r=i.diffuseFactor;e.color.fromArray(r),e.opacity=r[3]}if(i.diffuseTexture!==void 0&&s.push(n.assignTexture(e,\"map\",i.diffuseTexture,it)),e.emissive=new be(0,0,0),e.glossiness=i.glossinessFactor!==void 0?i.glossinessFactor:1,e.specular=new be(1,1,1),Array.isArray(i.specularFactor)&&e.specular.fromArray(i.specularFactor),i.specularGlossinessTexture!==void 0){const r=i.specularGlossinessTexture;s.push(n.assignTexture(e,\"glossinessMap\",r)),s.push(n.assignTexture(e,\"specularMap\",r,it))}return Promise.all(s)}createMaterial(e){const t=new rh(e);return t.fog=!0,t.color=e.color,t.map=e.map===void 0?null:e.map,t.lightMap=null,t.lightMapIntensity=1,t.aoMap=e.aoMap===void 0?null:e.aoMap,t.aoMapIntensity=1,t.emissive=e.emissive,t.emissiveIntensity=e.emissiveIntensity===void 0?1:e.emissiveIntensity,t.emissiveMap=e.emissiveMap===void 0?null:e.emissiveMap,t.bumpMap=e.bumpMap===void 0?null:e.bumpMap,t.bumpScale=1,t.normalMap=e.normalMap===void 0?null:e.normalMap,t.normalMapType=ki,e.normalScale&&(t.normalScale=e.normalScale),t.displacementMap=null,t.displacementScale=1,t.displacementBias=0,t.specularMap=e.specularMap===void 0?null:e.specularMap,t.specular=e.specular,t.glossinessMap=e.glossinessMap===void 0?null:e.glossinessMap,t.glossiness=e.glossiness,t.alphaMap=null,t.envMap=e.envMap===void 0?null:e.envMap,t.envMapIntensity=1,t}}class oM{constructor(){this.name=at.KHR_MESH_QUANTIZATION}}class Fm extends kr{constructor(e,t,n,i){super(e,t,n,i)}copySampleValue_(e){const t=this.resultBuffer,n=this.sampleValues,i=this.valueSize,s=e*i*3+i;for(let r=0;r!==i;r++)t[r]=n[s+r];return t}interpolate_(e,t,n,i){const s=this.resultBuffer,r=this.sampleValues,o=this.valueSize,l=o*2,c=o*3,h=i-t,u=(n-t)/h,f=u*u,d=f*u,p=e*c,m=p-c,g=-2*d+3*f,y=d-f,x=1-g,b=y-f+u;for(let v=0;v!==o;v++){const M=r[m+v+o],T=r[m+v+l]*h,C=r[p+v+o],_=r[p+v]*h;s[v]=x*M+b*T+g*C+y*_}return s}}const aM=new kt;class lM extends Fm{interpolate_(e,t,n,i){const s=super.interpolate_(e,t,n,i);return aM.fromArray(s).normalize().toArray(s),s}}const Ci={FLOAT:5126,FLOAT_MAT3:35675,FLOAT_MAT4:35676,FLOAT_VEC2:35664,FLOAT_VEC3:35665,FLOAT_VEC4:35666,LINEAR:9729,REPEAT:10497,SAMPLER_2D:35678,POINTS:0,LINES:1,LINE_LOOP:2,LINE_STRIP:3,TRIANGLES:4,TRIANGLE_STRIP:5,TRIANGLE_FAN:6,UNSIGNED_BYTE:5121,UNSIGNED_SHORT:5123},Yo={5120:Int8Array,5121:Uint8Array,5122:Int16Array,5123:Uint16Array,5125:Uint32Array,5126:Float32Array},Nm={9728:zt,9729:Pt,9984:no,9985:ta,9986:io,9987:Kn},km={33071:jt,33648:Zs,10497:cn},Om={SCALAR:1,VEC2:2,VEC3:3,VEC4:4,MAT2:4,MAT3:9,MAT4:16},oh={POSITION:\"position\",NORMAL:\"normal\",TANGENT:\"tangent\",TEXCOORD_0:\"uv\",TEXCOORD_1:\"uv2\",COLOR_0:\"color\",WEIGHTS_0:\"skinWeight\",JOINTS_0:\"skinIndex\"},ss={scale:\"scale\",translation:\"position\",rotation:\"quaternion\",weights:\"morphTargetInfluences\"},cM={CUBICSPLINE:void 0,LINEAR:fs,STEP:Js},ah={OPAQUE:\"OPAQUE\",MASK:\"MASK\",BLEND:\"BLEND\"};function uM(a){return a.DefaultMaterial===void 0&&(a.DefaultMaterial=new Is({color:16777215,emissive:0,metalness:1,roughness:1,transparent:!1,depthTest:!0,side:li})),a.DefaultMaterial}function Zo(a,e,t){for(const n in t.extensions)a[n]===void 0&&(e.userData.gltfExtensions=e.userData.gltfExtensions||{},e.userData.gltfExtensions[n]=t.extensions[n])}function Ws(a,e){e.extras!==void 0&&(typeof e.extras==\"object\"?Object.assign(a.userData,e.extras):console.warn(\"THREE.GLTFLoader: Ignoring primitive type .extras, \"+e.extras))}function hM(a,e,t){let n=!1,i=!1,s=!1;for(let c=0,h=e.length;c<h;c++){const u=e[c];if(u.POSITION!==void 0&&(n=!0),u.NORMAL!==void 0&&(i=!0),u.COLOR_0!==void 0&&(s=!0),n&&i&&s)break}if(!n&&!i&&!s)return Promise.resolve(a);const r=[],o=[],l=[];for(let c=0,h=e.length;c<h;c++){const u=e[c];if(n){const f=u.POSITION!==void 0?t.getDependency(\"accessor\",u.POSITION):a.attributes.position;r.push(f)}if(i){const f=u.NORMAL!==void 0?t.getDependency(\"accessor\",u.NORMAL):a.attributes.normal;o.push(f)}if(s){const f=u.COLOR_0!==void 0?t.getDependency(\"accessor\",u.COLOR_0):a.attributes.color;l.push(f)}}return Promise.all([Promise.all(r),Promise.all(o),Promise.all(l)]).then(function(c){const h=c[0],u=c[1],f=c[2];return n&&(a.morphAttributes.position=h),i&&(a.morphAttributes.normal=u),s&&(a.morphAttributes.color=f),a.morphTargetsRelative=!0,a})}function fM(a,e){if(a.updateMorphTargets(),e.weights!==void 0)for(let t=0,n=e.weights.length;t<n;t++)a.morphTargetInfluences[t]=e.weights[t];if(e.extras&&Array.isArray(e.extras.targetNames)){const t=e.extras.targetNames;if(a.morphTargetInfluences.length===t.length){a.morphTargetDictionary={};for(let n=0,i=t.length;n<i;n++)a.morphTargetDictionary[t[n]]=n}else console.warn(\"THREE.GLTFLoader: Invalid extras.targetNames length. Ignoring names.\")}}function dM(a){const e=a.extensions&&a.extensions[at.KHR_DRACO_MESH_COMPRESSION];let t;return e?t=\"draco:\"+e.bufferView+\":\"+e.indices+\":\"+Bm(e.attributes):t=a.indices+\":\"+Bm(a.attributes)+\":\"+a.mode,t}function Bm(a){let e=\"\";const t=Object.keys(a).sort();for(let n=0,i=t.length;n<i;n++)e+=t[n]+\":\"+a[t[n]]+\";\";return e}function lh(a){switch(a){case Int8Array:return .007874015748031496;case Uint8Array:return .00392156862745098;case Int16Array:return 3051850947599719e-20;case Uint16Array:return 15259021896696422e-21;default:throw new Error(\"THREE.GLTFLoader: Unsupported normalized accessor component type.\")}}function pM(a){return a.search(/\\.jpe?g($|\\?)/i)>0||a.search(/^data\\:image\\/jpeg/)===0?\"image/jpeg\":a.search(/\\.webp($|\\?)/i)>0||a.search(/^data\\:image\\/webp/)===0?\"image/webp\":\"image/png\"}class mM{constructor(e={},t={}){this.json=e,this.extensions={},this.plugins={},this.options=t,this.cache=new Vw,this.associations=new Map,this.primitiveCache={},this.meshCache={refs:{},uses:{}},this.cameraCache={refs:{},uses:{}},this.lightCache={refs:{},uses:{}},this.sourceCache={},this.textureCache={},this.nodeNamesUsed={};const n=/^((?!chrome|android).)*safari/i.test(navigator.userAgent)===!0,i=navigator.userAgent.indexOf(\"Firefox\")>-1,s=i?navigator.userAgent.match(/Firefox\\/([0-9]+)\\./)[1]:-1;typeof createImageBitmap==\"undefined\"||n||i&&s<98?this.textureLoader=new Os(this.options.manager):this.textureLoader=new gp(this.options.manager),this.textureLoader.setCrossOrigin(this.options.crossOrigin),this.textureLoader.setRequestHeader(this.options.requestHeader),this.fileLoader=new Jt(this.options.manager),this.fileLoader.setResponseType(\"arraybuffer\"),this.options.crossOrigin===\"use-credentials\"&&this.fileLoader.setWithCredentials(!0)}setExtensions(e){this.extensions=e}setPlugins(e){this.plugins=e}parse(e,t){const n=this,i=this.json,s=this.extensions;this.cache.removeAll(),this._invokeAll(function(r){return r._markDefs&&r._markDefs()}),Promise.all(this._invokeAll(function(r){return r.beforeRoot&&r.beforeRoot()})).then(function(){return Promise.all([n.getDependencies(\"scene\"),n.getDependencies(\"animation\"),n.getDependencies(\"camera\")])}).then(function(r){const o={scene:r[0][i.scene||0],scenes:r[0],animations:r[1],cameras:r[2],asset:i.asset,parser:n,userData:{}};Zo(s,o,i),Ws(o,i),Promise.all(n._invokeAll(function(l){return l.afterRoot&&l.afterRoot(o)})).then(function(){e(o)})}).catch(t)}_markDefs(){const e=this.json.nodes||[],t=this.json.skins||[],n=this.json.meshes||[];for(let i=0,s=t.length;i<s;i++){const r=t[i].joints;for(let o=0,l=r.length;o<l;o++)e[r[o]].isBone=!0}for(let i=0,s=e.length;i<s;i++){const r=e[i];r.mesh!==void 0&&(this._addNodeRef(this.meshCache,r.mesh),r.skin!==void 0&&(n[r.mesh].isSkinnedMesh=!0)),r.camera!==void 0&&this._addNodeRef(this.cameraCache,r.camera)}}_addNodeRef(e,t){t!==void 0&&(e.refs[t]===void 0&&(e.refs[t]=e.uses[t]=0),e.refs[t]++)}_getNodeRef(e,t,n){if(e.refs[t]<=1)return n;const i=n.clone(),s=(r,o)=>{const l=this.associations.get(r);l!=null&&this.associations.set(o,l);for(const[c,h]of r.children.entries())s(h,o.children[c])};return s(n,i),i.name+=\"_instance_\"+e.uses[t]++,i}_invokeOne(e){const t=Object.values(this.plugins);t.push(this);for(let n=0;n<t.length;n++){const i=e(t[n]);if(i)return i}return null}_invokeAll(e){const t=Object.values(this.plugins);t.unshift(this);const n=[];for(let i=0;i<t.length;i++){const s=e(t[i]);s&&n.push(s)}return n}getDependency(e,t){const n=e+\":\"+t;let i=this.cache.get(n);if(!i){switch(e){case\"scene\":i=this.loadScene(t);break;case\"node\":i=this.loadNode(t);break;case\"mesh\":i=this._invokeOne(function(s){return s.loadMesh&&s.loadMesh(t)});break;case\"accessor\":i=this.loadAccessor(t);break;case\"bufferView\":i=this._invokeOne(function(s){return s.loadBufferView&&s.loadBufferView(t)});break;case\"buffer\":i=this.loadBuffer(t);break;case\"material\":i=this._invokeOne(function(s){return s.loadMaterial&&s.loadMaterial(t)});break;case\"texture\":i=this._invokeOne(function(s){return s.loadTexture&&s.loadTexture(t)});break;case\"skin\":i=this.loadSkin(t);break;case\"animation\":i=this._invokeOne(function(s){return s.loadAnimation&&s.loadAnimation(t)});break;case\"camera\":i=this.loadCamera(t);break;default:throw new Error(\"Unknown type: \"+e)}this.cache.add(n,i)}return i}getDependencies(e){let t=this.cache.get(e);if(!t){const n=this,i=this.json[e+(e===\"mesh\"?\"es\":\"s\")]||[];t=Promise.all(i.map(function(s,r){return n.getDependency(e,r)})),this.cache.add(e,t)}return t}loadBuffer(e){const t=this.json.buffers[e],n=this.fileLoader;if(t.type&&t.type!==\"arraybuffer\")throw new Error(\"THREE.GLTFLoader: \"+t.type+\" buffer type is not supported.\");if(t.uri===void 0&&e===0)return Promise.resolve(this.extensions[at.KHR_BINARY_GLTF].body);const i=this.options;return new Promise(function(s,r){n.load(sn.resolveURL(t.uri,i.path),s,void 0,function(){r(new Error('THREE.GLTFLoader: Failed to load buffer \"'+t.uri+'\".'))})})}loadBufferView(e){const t=this.json.bufferViews[e];return this.getDependency(\"buffer\",t.buffer).then(function(n){const i=t.byteLength||0,s=t.byteOffset||0;return n.slice(s,s+i)})}loadAccessor(e){const t=this,n=this.json,i=this.json.accessors[e];if(i.bufferView===void 0&&i.sparse===void 0)return Promise.resolve(null);const s=[];return i.bufferView!==void 0?s.push(this.getDependency(\"bufferView\",i.bufferView)):s.push(null),i.sparse!==void 0&&(s.push(this.getDependency(\"bufferView\",i.sparse.indices.bufferView)),s.push(this.getDependency(\"bufferView\",i.sparse.values.bufferView))),Promise.all(s).then(function(r){const o=r[0],l=Om[i.type],c=Yo[i.componentType],h=c.BYTES_PER_ELEMENT,u=h*l,f=i.byteOffset||0,d=i.bufferView!==void 0?n.bufferViews[i.bufferView].byteStride:void 0,p=i.normalized===!0;let m,g;if(d&&d!==u){const y=Math.floor(f/d),x=\"InterleavedBuffer:\"+i.bufferView+\":\"+i.componentType+\":\"+y+\":\"+i.count;let b=t.cache.get(x);b||(m=new c(o,y*d,i.count*d/h),b=new _o(m,d/h),t.cache.add(x,b)),g=new ji(b,l,f%d/h,p)}else o===null?m=new c(i.count*l):m=new c(o,f,i.count*l),g=new pt(m,l,p);if(i.sparse!==void 0){const y=Om.SCALAR,x=Yo[i.sparse.indices.componentType],b=i.sparse.indices.byteOffset||0,v=i.sparse.values.byteOffset||0,M=new x(r[1],b,i.sparse.count*y),T=new c(r[2],v,i.sparse.count*l);o!==null&&(g=new pt(g.array.slice(),g.itemSize,g.normalized));for(let C=0,_=M.length;C<_;C++){const E=M[C];if(g.setX(E,T[C*l]),l>=2&&g.setY(E,T[C*l+1]),l>=3&&g.setZ(E,T[C*l+2]),l>=4&&g.setW(E,T[C*l+3]),l>=5)throw new Error(\"THREE.GLTFLoader: Unsupported itemSize in sparse BufferAttribute.\")}}return g})}loadTexture(e){const t=this.json,n=this.options,s=t.textures[e].source,r=t.images[s];let o=this.textureLoader;if(r.uri){const l=n.manager.getHandler(r.uri);l!==null&&(o=l)}return this.loadTextureImage(e,s,o)}loadTextureImage(e,t,n){const i=this,s=this.json,r=s.textures[e],o=s.images[t],l=(o.uri||o.bufferView)+\":\"+r.sampler;if(this.textureCache[l])return this.textureCache[l];const c=this.loadImageSource(t,n).then(function(h){h.flipY=!1,r.name&&(h.name=r.name);const f=(s.samplers||{})[r.sampler]||{};return h.magFilter=Nm[f.magFilter]||Pt,h.minFilter=Nm[f.minFilter]||Kn,h.wrapS=km[f.wrapS]||cn,h.wrapT=km[f.wrapT]||cn,i.associations.set(h,{textures:e}),h}).catch(function(){return null});return this.textureCache[l]=c,c}loadImageSource(e,t){const n=this,i=this.json,s=this.options;if(this.sourceCache[e]!==void 0)return this.sourceCache[e].then(u=>u.clone());const r=i.images[e],o=self.URL||self.webkitURL;let l=r.uri||\"\",c=!1;if(r.bufferView!==void 0)l=n.getDependency(\"bufferView\",r.bufferView).then(function(u){c=!0;const f=new Blob([u],{type:r.mimeType});return l=o.createObjectURL(f),l});else if(r.uri===void 0)throw new Error(\"THREE.GLTFLoader: Image \"+e+\" is missing URI and bufferView\");const h=Promise.resolve(l).then(function(u){return new Promise(function(f,d){let p=f;t.isImageBitmapLoader===!0&&(p=function(m){const g=new Lt(m);g.needsUpdate=!0,f(g)}),t.load(sn.resolveURL(u,s.path),p,void 0,d)})}).then(function(u){return c===!0&&o.revokeObjectURL(l),u.userData.mimeType=r.mimeType||pM(r.uri),u}).catch(function(u){throw console.error(\"THREE.GLTFLoader: Couldn't load texture\",l),u});return this.sourceCache[e]=h,h}assignTexture(e,t,n,i){const s=this;return this.getDependency(\"texture\",n.index).then(function(r){if(n.texCoord!==void 0&&n.texCoord!=0&&!(t===\"aoMap\"&&n.texCoord==1)&&console.warn(\"THREE.GLTFLoader: Custom UV set \"+n.texCoord+\" for texture \"+t+\" not yet supported.\"),s.extensions[at.KHR_TEXTURE_TRANSFORM]){const o=n.extensions!==void 0?n.extensions[at.KHR_TEXTURE_TRANSFORM]:void 0;if(o){const l=s.associations.get(r);r=s.extensions[at.KHR_TEXTURE_TRANSFORM].extendTexture(r,o),s.associations.set(r,l)}}return i!==void 0&&(r.encoding=i),e[t]=r,r})}assignFinalMaterial(e){const t=e.geometry;let n=e.material;const i=t.attributes.tangent===void 0,s=t.attributes.color!==void 0,r=t.attributes.normal===void 0;if(e.isPoints){const o=\"PointsMaterial:\"+n.uuid;let l=this.cache.get(o);l||(l=new Yi,Gt.prototype.copy.call(l,n),l.color.copy(n.color),l.map=n.map,l.sizeAttenuation=!1,this.cache.add(o,l)),n=l}else if(e.isLine){const o=\"LineBasicMaterial:\"+n.uuid;let l=this.cache.get(o);l||(l=new Vt,Gt.prototype.copy.call(l,n),l.color.copy(n.color),this.cache.add(o,l)),n=l}if(i||s||r){let o=\"ClonedMaterial:\"+n.uuid+\":\";n.isGLTFSpecularGlossinessMaterial&&(o+=\"specular-glossiness:\"),i&&(o+=\"derivative-tangents:\"),s&&(o+=\"vertex-colors:\"),r&&(o+=\"flat-shading:\");let l=this.cache.get(o);l||(l=n.clone(),s&&(l.vertexColors=!0),r&&(l.flatShading=!0),i&&(l.normalScale&&(l.normalScale.y*=-1),l.clearcoatNormalScale&&(l.clearcoatNormalScale.y*=-1)),this.cache.add(o,l),this.associations.set(l,this.associations.get(n))),n=l}n.aoMap&&t.attributes.uv2===void 0&&t.attributes.uv!==void 0&&t.setAttribute(\"uv2\",t.attributes.uv),e.material=n}getMaterialType(){return Is}loadMaterial(e){const t=this,n=this.json,i=this.extensions,s=n.materials[e];let r;const o={},l=s.extensions||{},c=[];if(l[at.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS]){const u=i[at.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS];r=u.getMaterialType(),c.push(u.extendParams(o,s,t))}else if(l[at.KHR_MATERIALS_UNLIT]){const u=i[at.KHR_MATERIALS_UNLIT];r=u.getMaterialType(),c.push(u.extendParams(o,s,t))}else{const u=s.pbrMetallicRoughness||{};if(o.color=new be(1,1,1),o.opacity=1,Array.isArray(u.baseColorFactor)){const f=u.baseColorFactor;o.color.fromArray(f),o.opacity=f[3]}u.baseColorTexture!==void 0&&c.push(t.assignTexture(o,\"map\",u.baseColorTexture,it)),o.metalness=u.metallicFactor!==void 0?u.metallicFactor:1,o.roughness=u.roughnessFactor!==void 0?u.roughnessFactor:1,u.metallicRoughnessTexture!==void 0&&(c.push(t.assignTexture(o,\"metalnessMap\",u.metallicRoughnessTexture)),c.push(t.assignTexture(o,\"roughnessMap\",u.metallicRoughnessTexture))),r=this._invokeOne(function(f){return f.getMaterialType&&f.getMaterialType(e)}),c.push(Promise.all(this._invokeAll(function(f){return f.extendMaterialParams&&f.extendMaterialParams(e,o)})))}s.doubleSided===!0&&(o.side=ci);const h=s.alphaMode||ah.OPAQUE;if(h===ah.BLEND?(o.transparent=!0,o.depthWrite=!1):(o.transparent=!1,h===ah.MASK&&(o.alphaTest=s.alphaCutoff!==void 0?s.alphaCutoff:.5)),s.normalTexture!==void 0&&r!==on&&(c.push(t.assignTexture(o,\"normalMap\",s.normalTexture)),o.normalScale=new he(1,1),s.normalTexture.scale!==void 0)){const u=s.normalTexture.scale;o.normalScale.set(u,u)}return s.occlusionTexture!==void 0&&r!==on&&(c.push(t.assignTexture(o,\"aoMap\",s.occlusionTexture)),s.occlusionTexture.strength!==void 0&&(o.aoMapIntensity=s.occlusionTexture.strength)),s.emissiveFactor!==void 0&&r!==on&&(o.emissive=new be().fromArray(s.emissiveFactor)),s.emissiveTexture!==void 0&&r!==on&&c.push(t.assignTexture(o,\"emissiveMap\",s.emissiveTexture,it)),Promise.all(c).then(function(){let u;return r===rh?u=i[at.KHR_MATERIALS_PBR_SPECULAR_GLOSSINESS].createMaterial(o):u=new r(o),s.name&&(u.name=s.name),Ws(u,s),t.associations.set(u,{materials:e}),s.extensions&&Zo(i,u,s),u})}createUniqueName(e){const t=rt.sanitizeNodeName(e||\"\");let n=t;for(let i=1;this.nodeNamesUsed[n];++i)n=t+\"_\"+i;return this.nodeNamesUsed[n]=!0,n}loadGeometries(e){const t=this,n=this.extensions,i=this.primitiveCache;function s(o){return n[at.KHR_DRACO_MESH_COMPRESSION].decodePrimitive(o,t).then(function(l){return Um(l,o,t)})}const r=[];for(let o=0,l=e.length;o<l;o++){const c=e[o],h=dM(c),u=i[h];if(u)r.push(u.promise);else{let f;c.extensions&&c.extensions[at.KHR_DRACO_MESH_COMPRESSION]?f=s(c):f=Um(new Xe,c,t),i[h]={primitive:c,promise:f},r.push(f)}}return Promise.all(r)}loadMesh(e){const t=this,n=this.json,i=this.extensions,s=n.meshes[e],r=s.primitives,o=[];for(let l=0,c=r.length;l<c;l++){const h=r[l].material===void 0?uM(this.cache):this.getDependency(\"material\",r[l].material);o.push(h)}return o.push(t.loadGeometries(r)),Promise.all(o).then(function(l){const c=l.slice(0,l.length-1),h=l[l.length-1],u=[];for(let d=0,p=h.length;d<p;d++){const m=h[d],g=r[d];let y;const x=c[d];if(g.mode===Ci.TRIANGLES||g.mode===Ci.TRIANGLE_STRIP||g.mode===Ci.TRIANGLE_FAN||g.mode===void 0)y=s.isSkinnedMesh===!0?new To(m,x):new Rt(m,x),y.isSkinnedMesh===!0&&!y.geometry.attributes.skinWeight.normalized&&y.normalizeSkinWeights(),g.mode===Ci.TRIANGLE_STRIP?y.geometry=Gm(y.geometry,uf):g.mode===Ci.TRIANGLE_FAN&&(y.geometry=Gm(y.geometry,mc));else if(g.mode===Ci.LINES)y=new yn(m,x);else if(g.mode===Ci.LINE_STRIP)y=new Xn(m,x);else if(g.mode===Ci.LINE_LOOP)y=new tu(m,x);else if(g.mode===Ci.POINTS)y=new wr(m,x);else throw new Error(\"THREE.GLTFLoader: Primitive mode unsupported: \"+g.mode);Object.keys(y.geometry.morphAttributes).length>0&&fM(y,s),y.name=t.createUniqueName(s.name||\"mesh_\"+e),Ws(y,s),g.extensions&&Zo(i,y,g),t.assignFinalMaterial(y),u.push(y)}for(let d=0,p=u.length;d<p;d++)t.associations.set(u[d],{meshes:e,primitives:d});if(u.length===1)return u[0];const f=new dn;t.associations.set(f,{meshes:e});for(let d=0,p=u.length;d<p;d++)f.add(u[d]);return f})}loadCamera(e){let t;const n=this.json.cameras[e],i=n[n.type];if(!i){console.warn(\"THREE.GLTFLoader: Missing camera parameters.\");return}return n.type===\"perspective\"?t=new Ot(nn.radToDeg(i.yfov),i.aspectRatio||1,i.znear||1,i.zfar||2e6):n.type===\"orthographic\"&&(t=new ws(-i.xmag,i.xmag,i.ymag,-i.ymag,i.znear,i.zfar)),n.name&&(t.name=this.createUniqueName(n.name)),Ws(t,n),Promise.resolve(t)}loadSkin(e){const t=this.json.skins[e],n={joints:t.joints};return t.inverseBindMatrices===void 0?Promise.resolve(n):this.getDependency(\"accessor\",t.inverseBindMatrices).then(function(i){return n.inverseBindMatrices=i,n})}loadAnimation(e){const n=this.json.animations[e],i=[],s=[],r=[],o=[],l=[];for(let c=0,h=n.channels.length;c<h;c++){const u=n.channels[c],f=n.samplers[u.sampler],d=u.target,p=d.node!==void 0?d.node:d.id,m=n.parameters!==void 0?n.parameters[f.input]:f.input,g=n.parameters!==void 0?n.parameters[f.output]:f.output;i.push(this.getDependency(\"node\",p)),s.push(this.getDependency(\"accessor\",m)),r.push(this.getDependency(\"accessor\",g)),o.push(f),l.push(d)}return Promise.all([Promise.all(i),Promise.all(s),Promise.all(r),Promise.all(o),Promise.all(l)]).then(function(c){const h=c[0],u=c[1],f=c[2],d=c[3],p=c[4],m=[];for(let y=0,x=h.length;y<x;y++){const b=h[y],v=u[y],M=f[y],T=d[y],C=p[y];if(b===void 0)continue;b.updateMatrix();let _;switch(ss[C.path]){case ss.weights:_=Fs;break;case ss.rotation:_=ii;break;case ss.position:case ss.scale:default:_=bi;break}const E=b.name?b.name:b.uuid,F=T.interpolation!==void 0?cM[T.interpolation]:fs,U=[];ss[C.path]===ss.weights?b.traverse(function(K){K.morphTargetInfluences&&U.push(K.name?K.name:K.uuid)}):U.push(E);let q=M.array;if(M.normalized){const K=lh(q.constructor),G=new Float32Array(q.length);for(let X=0,O=q.length;X<O;X++)G[X]=q[X]*K;q=G}for(let K=0,G=U.length;K<G;K++){const X=new _(U[K]+\".\"+ss[C.path],v.array,q,F);T.interpolation===\"CUBICSPLINE\"&&(X.createInterpolant=function(j){const Y=this instanceof ii?lM:Fm;return new Y(this.times,this.values,this.getValueSize()/3,j)},X.createInterpolant.isInterpolantFactoryMethodGLTFCubicSpline=!0),m.push(X)}}const g=n.name?n.name:\"animation_\"+e;return new wi(g,void 0,m)})}createNodeMesh(e){const t=this.json,n=this,i=t.nodes[e];return i.mesh===void 0?null:n.getDependency(\"mesh\",i.mesh).then(function(s){const r=n._getNodeRef(n.meshCache,i.mesh,s);return i.weights!==void 0&&r.traverse(function(o){if(!!o.isMesh)for(let l=0,c=i.weights.length;l<c;l++)o.morphTargetInfluences[l]=i.weights[l]}),r})}loadNode(e){const t=this.json,n=this.extensions,i=this,s=t.nodes[e],r=s.name?i.createUniqueName(s.name):\"\";return function(){const o=[],l=i._invokeOne(function(c){return c.createNodeMesh&&c.createNodeMesh(e)});return l&&o.push(l),s.camera!==void 0&&o.push(i.getDependency(\"camera\",s.camera).then(function(c){return i._getNodeRef(i.cameraCache,s.camera,c)})),i._invokeAll(function(c){return c.createNodeAttachment&&c.createNodeAttachment(e)}).forEach(function(c){o.push(c)}),Promise.all(o)}().then(function(o){let l;if(s.isBone===!0?l=new Ts:o.length>1?l=new dn:o.length===1?l=o[0]:l=new dt,l!==o[0])for(let c=0,h=o.length;c<h;c++)l.add(o[c]);if(s.name&&(l.userData.name=s.name,l.name=r),Ws(l,s),s.extensions&&Zo(n,l,s),s.matrix!==void 0){const c=new Ne;c.fromArray(s.matrix),l.applyMatrix4(c)}else s.translation!==void 0&&l.position.fromArray(s.translation),s.rotation!==void 0&&l.quaternion.fromArray(s.rotation),s.scale!==void 0&&l.scale.fromArray(s.scale);return i.associations.has(l)||i.associations.set(l,{}),i.associations.get(l).nodes=e,l})}loadScene(e){const t=this.json,n=this.extensions,i=this.json.scenes[e],s=this,r=new dn;i.name&&(r.name=s.createUniqueName(i.name)),Ws(r,i),i.extensions&&Zo(n,r,i);const o=i.nodes||[],l=[];for(let c=0,h=o.length;c<h;c++)l.push(zm(o[c],r,t,s));return Promise.all(l).then(function(){const c=h=>{const u=new Map;for(const[f,d]of s.associations)(f instanceof Gt||f instanceof Lt)&&u.set(f,d);return h.traverse(f=>{const d=s.associations.get(f);d!=null&&u.set(f,d)}),u};return s.associations=c(r),r})}}function zm(a,e,t,n){const i=t.nodes[a];return n.getDependency(\"node\",a).then(function(s){if(i.skin===void 0)return s;let r;return n.getDependency(\"skin\",i.skin).then(function(o){r=o;const l=[];for(let c=0,h=r.joints.length;c<h;c++)l.push(n.getDependency(\"node\",r.joints[c]));return Promise.all(l)}).then(function(o){return s.traverse(function(l){if(!l.isMesh)return;const c=[],h=[];for(let u=0,f=o.length;u<f;u++){const d=o[u];if(d){c.push(d);const p=new Ne;r.inverseBindMatrices!==void 0&&p.fromArray(r.inverseBindMatrices.array,u*16),h.push(p)}else console.warn('THREE.GLTFLoader: Joint \"%s\" could not be found.',r.joints[u])}l.bind(new As(c,h),l.matrixWorld)}),s})}).then(function(s){e.add(s);const r=[];if(i.children){const o=i.children;for(let l=0,c=o.length;l<c;l++){const h=o[l];r.push(zm(h,s,t,n))}}return Promise.all(r)})}function gM(a,e,t){const n=e.attributes,i=new di;if(n.POSITION!==void 0){const o=t.json.accessors[n.POSITION],l=o.min,c=o.max;if(l!==void 0&&c!==void 0){if(i.set(new I(l[0],l[1],l[2]),new I(c[0],c[1],c[2])),o.normalized){const h=lh(Yo[o.componentType]);i.min.multiplyScalar(h),i.max.multiplyScalar(h)}}else{console.warn(\"THREE.GLTFLoader: Missing min/max properties for accessor POSITION.\");return}}else return;const s=e.targets;if(s!==void 0){const o=new I,l=new I;for(let c=0,h=s.length;c<h;c++){const u=s[c];if(u.POSITION!==void 0){const f=t.json.accessors[u.POSITION],d=f.min,p=f.max;if(d!==void 0&&p!==void 0){if(l.setX(Math.max(Math.abs(d[0]),Math.abs(p[0]))),l.setY(Math.max(Math.abs(d[1]),Math.abs(p[1]))),l.setZ(Math.max(Math.abs(d[2]),Math.abs(p[2]))),f.normalized){const m=lh(Yo[f.componentType]);l.multiplyScalar(m)}o.max(l)}else console.warn(\"THREE.GLTFLoader: Missing min/max properties for accessor POSITION.\")}}i.expandByVector(o)}a.boundingBox=i;const r=new Ui;i.getCenter(r.center),r.radius=i.min.distanceTo(i.max)/2,a.boundingSphere=r}function Um(a,e,t){const n=e.attributes,i=[];function s(r,o){return t.getDependency(\"accessor\",r).then(function(l){a.setAttribute(o,l)})}for(const r in n){const o=oh[r]||r.toLowerCase();o in a.attributes||i.push(s(n[r],o))}if(e.indices!==void 0&&!a.index){const r=t.getDependency(\"accessor\",e.indices).then(function(o){a.setIndex(o)});i.push(r)}return Ws(a,e),gM(a,e,t),Promise.all(i).then(function(){return e.targets!==void 0?hM(a,e.targets,t):a})}function Gm(a,e){let t=a.getIndex();if(t===null){const r=[],o=a.getAttribute(\"position\");if(o!==void 0){for(let l=0;l<o.count;l++)r.push(l);a.setIndex(r),t=a.getIndex()}else return console.error(\"THREE.GLTFLoader.toTrianglesDrawMode(): Undefined position attribute. Processing not possible.\"),a}const n=t.count-2,i=[];if(e===mc)for(let r=1;r<=n;r++)i.push(t.getX(0)),i.push(t.getX(r)),i.push(t.getX(r+1));else for(let r=0;r<n;r++)r%2===0?(i.push(t.getX(r)),i.push(t.getX(r+1)),i.push(t.getX(r+2))):(i.push(t.getX(r+2)),i.push(t.getX(r+1)),i.push(t.getX(r)));i.length/3!==n&&console.error(\"THREE.GLTFLoader.toTrianglesDrawMode(): Unable to generate correct amount of triangles.\");const s=a.clone();return s.setIndex(i),s}const yM=/^[og]\\s*(.+)?/,xM=/^mtllib /,vM=/^usemtl /,_M=/^usemap /,Vm=/\\s+/,Hm=new I,ch=new I,Wm=new I,qm=new I,Un=new I,Al=new be;function bM(){const a={objects:[],object:{},vertices:[],normals:[],colors:[],uvs:[],materials:{},materialLibraries:[],startObject:function(e,t){if(this.object&&this.object.fromDeclaration===!1){this.object.name=e,this.object.fromDeclaration=t!==!1;return}const n=this.object&&typeof this.object.currentMaterial==\"function\"?this.object.currentMaterial():void 0;if(this.object&&typeof this.object._finalize==\"function\"&&this.object._finalize(!0),this.object={name:e||\"\",fromDeclaration:t!==!1,geometry:{vertices:[],normals:[],colors:[],uvs:[],hasUVIndices:!1},materials:[],smooth:!0,startMaterial:function(i,s){const r=this._finalize(!1);r&&(r.inherited||r.groupCount<=0)&&this.materials.splice(r.index,1);const o={index:this.materials.length,name:i||\"\",mtllib:Array.isArray(s)&&s.length>0?s[s.length-1]:\"\",smooth:r!==void 0?r.smooth:this.smooth,groupStart:r!==void 0?r.groupEnd:0,groupEnd:-1,groupCount:-1,inherited:!1,clone:function(l){const c={index:typeof l==\"number\"?l:this.index,name:this.name,mtllib:this.mtllib,smooth:this.smooth,groupStart:0,groupEnd:-1,groupCount:-1,inherited:!1};return c.clone=this.clone.bind(c),c}};return this.materials.push(o),o},currentMaterial:function(){if(this.materials.length>0)return this.materials[this.materials.length-1]},_finalize:function(i){const s=this.currentMaterial();if(s&&s.groupEnd===-1&&(s.groupEnd=this.geometry.vertices.length/3,s.groupCount=s.groupEnd-s.groupStart,s.inherited=!1),i&&this.materials.length>1)for(let r=this.materials.length-1;r>=0;r--)this.materials[r].groupCount<=0&&this.materials.splice(r,1);return i&&this.materials.length===0&&this.materials.push({name:\"\",smooth:this.smooth}),s}},n&&n.name&&typeof n.clone==\"function\"){const i=n.clone(0);i.inherited=!0,this.object.materials.push(i)}this.objects.push(this.object)},finalize:function(){this.object&&typeof this.object._finalize==\"function\"&&this.object._finalize(!0)},parseVertexIndex:function(e,t){const n=parseInt(e,10);return(n>=0?n-1:n+t/3)*3},parseNormalIndex:function(e,t){const n=parseInt(e,10);return(n>=0?n-1:n+t/3)*3},parseUVIndex:function(e,t){const n=parseInt(e,10);return(n>=0?n-1:n+t/2)*2},addVertex:function(e,t,n){const i=this.vertices,s=this.object.geometry.vertices;s.push(i[e+0],i[e+1],i[e+2]),s.push(i[t+0],i[t+1],i[t+2]),s.push(i[n+0],i[n+1],i[n+2])},addVertexPoint:function(e){const t=this.vertices;this.object.geometry.vertices.push(t[e+0],t[e+1],t[e+2])},addVertexLine:function(e){const t=this.vertices;this.object.geometry.vertices.push(t[e+0],t[e+1],t[e+2])},addNormal:function(e,t,n){const i=this.normals,s=this.object.geometry.normals;s.push(i[e+0],i[e+1],i[e+2]),s.push(i[t+0],i[t+1],i[t+2]),s.push(i[n+0],i[n+1],i[n+2])},addFaceNormal:function(e,t,n){const i=this.vertices,s=this.object.geometry.normals;Hm.fromArray(i,e),ch.fromArray(i,t),Wm.fromArray(i,n),Un.subVectors(Wm,ch),qm.subVectors(Hm,ch),Un.cross(qm),Un.normalize(),s.push(Un.x,Un.y,Un.z),s.push(Un.x,Un.y,Un.z),s.push(Un.x,Un.y,Un.z)},addColor:function(e,t,n){const i=this.colors,s=this.object.geometry.colors;i[e]!==void 0&&s.push(i[e+0],i[e+1],i[e+2]),i[t]!==void 0&&s.push(i[t+0],i[t+1],i[t+2]),i[n]!==void 0&&s.push(i[n+0],i[n+1],i[n+2])},addUV:function(e,t,n){const i=this.uvs,s=this.object.geometry.uvs;s.push(i[e+0],i[e+1]),s.push(i[t+0],i[t+1]),s.push(i[n+0],i[n+1])},addDefaultUV:function(){const e=this.object.geometry.uvs;e.push(0,0),e.push(0,0),e.push(0,0)},addUVLine:function(e){const t=this.uvs;this.object.geometry.uvs.push(t[e+0],t[e+1])},addFace:function(e,t,n,i,s,r,o,l,c){const h=this.vertices.length;let u=this.parseVertexIndex(e,h),f=this.parseVertexIndex(t,h),d=this.parseVertexIndex(n,h);if(this.addVertex(u,f,d),this.addColor(u,f,d),o!==void 0&&o!==\"\"){const p=this.normals.length;u=this.parseNormalIndex(o,p),f=this.parseNormalIndex(l,p),d=this.parseNormalIndex(c,p),this.addNormal(u,f,d)}else this.addFaceNormal(u,f,d);if(i!==void 0&&i!==\"\"){const p=this.uvs.length;u=this.parseUVIndex(i,p),f=this.parseUVIndex(s,p),d=this.parseUVIndex(r,p),this.addUV(u,f,d),this.object.geometry.hasUVIndices=!0}else this.addDefaultUV()},addPointGeometry:function(e){this.object.geometry.type=\"Points\";const t=this.vertices.length;for(let n=0,i=e.length;n<i;n++){const s=this.parseVertexIndex(e[n],t);this.addVertexPoint(s),this.addColor(s)}},addLineGeometry:function(e,t){this.object.geometry.type=\"Line\";const n=this.vertices.length,i=this.uvs.length;for(let s=0,r=e.length;s<r;s++)this.addVertexLine(this.parseVertexIndex(e[s],n));for(let s=0,r=t.length;s<r;s++)this.addUVLine(this.parseUVIndex(t[s],i))}};return a.startObject(\"\",!1),a}class wM extends Ht{constructor(e){super(e),this.materials=null}load(e,t,n,i){const s=this,r=new Jt(this.manager);r.setPath(this.path),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{t(s.parse(o))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}setMaterials(e){return this.materials=e,this}parse(e){const t=new bM;e.indexOf(`\\r\n`)!==-1&&(e=e.replace(/\\r\\n/g,`\n`)),e.indexOf(`\\\\\n`)!==-1&&(e=e.replace(/\\\\\\n/g,\"\"));const n=e.split(`\n`);let i=[];for(let o=0,l=n.length;o<l;o++){const c=n[o].trimStart();if(c.length===0)continue;const h=c.charAt(0);if(h!==\"#\")if(h===\"v\"){const u=c.split(Vm);switch(u[0]){case\"v\":t.vertices.push(parseFloat(u[1]),parseFloat(u[2]),parseFloat(u[3])),u.length>=7?(Al.setRGB(parseFloat(u[4]),parseFloat(u[5]),parseFloat(u[6])).convertSRGBToLinear(),t.colors.push(Al.r,Al.g,Al.b)):t.colors.push(void 0,void 0,void 0);break;case\"vn\":t.normals.push(parseFloat(u[1]),parseFloat(u[2]),parseFloat(u[3]));break;case\"vt\":t.uvs.push(parseFloat(u[1]),parseFloat(u[2]));break}}else if(h===\"f\"){const f=c.slice(1).trim().split(Vm),d=[];for(let m=0,g=f.length;m<g;m++){const y=f[m];if(y.length>0){const x=y.split(\"/\");d.push(x)}}const p=d[0];for(let m=1,g=d.length-1;m<g;m++){const y=d[m],x=d[m+1];t.addFace(p[0],y[0],x[0],p[1],y[1],x[1],p[2],y[2],x[2])}}else if(h===\"l\"){const u=c.substring(1).trim().split(\" \");let f=[];const d=[];if(c.indexOf(\"/\")===-1)f=u;else for(let p=0,m=u.length;p<m;p++){const g=u[p].split(\"/\");g[0]!==\"\"&&f.push(g[0]),g[1]!==\"\"&&d.push(g[1])}t.addLineGeometry(f,d)}else if(h===\"p\"){const f=c.slice(1).trim().split(\" \");t.addPointGeometry(f)}else if((i=yM.exec(c))!==null){const u=(\" \"+i[0].slice(1).trim()).slice(1);t.startObject(u)}else if(vM.test(c))t.object.startMaterial(c.substring(7).trim(),t.materialLibraries);else if(xM.test(c))t.materialLibraries.push(c.substring(7).trim());else if(_M.test(c))console.warn('THREE.OBJLoader: Rendering identifier \"usemap\" not supported. Textures must be defined in MTL files.');else if(h===\"s\"){if(i=c.split(\" \"),i.length>1){const f=i[1].trim().toLowerCase();t.object.smooth=f!==\"0\"&&f!==\"off\"}else t.object.smooth=!0;const u=t.object.currentMaterial();u&&(u.smooth=t.object.smooth)}else{if(c===\"\\0\")continue;console.warn('THREE.OBJLoader: Unexpected line: \"'+c+'\"')}}t.finalize();const s=new dn;if(s.materialLibraries=[].concat(t.materialLibraries),!(t.objects.length===1&&t.objects[0].geometry.vertices.length===0)===!0)for(let o=0,l=t.objects.length;o<l;o++){const c=t.objects[o],h=c.geometry,u=c.materials,f=h.type===\"Line\",d=h.type===\"Points\";let p=!1;if(h.vertices.length===0)continue;const m=new Xe;m.setAttribute(\"position\",new Ee(h.vertices,3)),h.normals.length>0&&m.setAttribute(\"normal\",new Ee(h.normals,3)),h.colors.length>0&&(p=!0,m.setAttribute(\"color\",new Ee(h.colors,3))),h.hasUVIndices===!0&&m.setAttribute(\"uv\",new Ee(h.uvs,2));const g=[];for(let x=0,b=u.length;x<b;x++){const v=u[x],M=v.name+\"_\"+v.smooth+\"_\"+p;let T=t.materials[M];if(this.materials!==null){if(T=this.materials.create(v.name),f&&T&&!(T instanceof Vt)){const C=new Vt;Gt.prototype.copy.call(C,T),C.color.copy(T.color),T=C}else if(d&&T&&!(T instanceof Yi)){const C=new Yi({size:10,sizeAttenuation:!1});Gt.prototype.copy.call(C,T),C.color.copy(T.color),C.map=T.map,T=C}}T===void 0&&(f?T=new Vt:d?T=new Yi({size:1,sizeAttenuation:!1}):T=new ni,T.name=v.name,T.flatShading=!v.smooth,T.vertexColors=p,t.materials[M]=T),g.push(T)}let y;if(g.length>1){for(let x=0,b=u.length;x<b;x++){const v=u[x];m.addGroup(v.groupStart,v.groupCount,x)}f?y=new yn(m,g):d?y=new wr(m,g):y=new Rt(m,g)}else f?y=new yn(m,g[0]):d?y=new wr(m,g[0]):y=new Rt(m,g[0]);y.name=c.name,s.add(y)}else if(t.vertices.length>0){const o=new Yi({size:1,sizeAttenuation:!1}),l=new Xe;l.setAttribute(\"position\",new Ee(t.vertices,3)),t.colors.length>0&&t.colors[0]!==void 0&&(l.setAttribute(\"color\",new Ee(t.colors,3)),o.vertexColors=!0);const c=new wr(l,o);s.add(c)}return s}}class MM extends ip{constructor(e){super(e)}parse(e,t){const n={mipmaps:[],width:0,height:0,format:null,mipmapCount:1},i=542327876,s=131072,r=512,o=1024,l=2048,c=4096,h=8192,u=16384,f=32768;function d(re){return re.charCodeAt(0)+(re.charCodeAt(1)<<8)+(re.charCodeAt(2)<<16)+(re.charCodeAt(3)<<24)}function p(re){return String.fromCharCode(re&255,re>>8&255,re>>16&255,re>>24&255)}function m(re,H,ge,we){const Fe=ge*we*4,xe=new Uint8Array(re,H,Fe),Ve=new Uint8Array(Fe);let ue=0,ce=0;for(let ve=0;ve<we;ve++)for(let ke=0;ke<ge;ke++){const Le=xe[ce];ce++;const Ze=xe[ce];ce++;const He=xe[ce];ce++;const Ue=xe[ce];ce++,Ve[ue]=He,ue++,Ve[ue]=Ze,ue++,Ve[ue]=Le,ue++,Ve[ue]=Ue,ue++}return Ve}const g=d(\"DXT1\"),y=d(\"DXT3\"),x=d(\"DXT5\"),b=d(\"ETC1\"),v=31,M=0,T=1,C=2,_=3,E=4,F=7,U=21,q=22,K=23,G=24,X=25,O=26,j=28,Y=new Int32Array(e,0,v);if(Y[M]!==i)return console.error(\"THREE.DDSLoader.parse: Invalid magic number in DDS header.\"),n;let W;const Z=Y[U];let ee=!1;switch(Z){case g:W=8,n.format=so;break;case y:W=16,n.format=ro;break;case x:W=16,n.format=oo;break;case b:W=8,n.format=Kl;break;default:if(Y[q]===32&&Y[K]&16711680&&Y[G]&65280&&Y[X]&255&&Y[O]&4278190080)ee=!0,W=64,n.format=Mn;else return console.error(\"THREE.DDSLoader.parse: Unsupported FourCC code \",p(Z)),n}n.mipmapCount=1,Y[C]&s&&t!==!1&&(n.mipmapCount=Math.max(1,Y[F]));const Q=Y[j];if(n.isCubemap=!!(Q&r),n.isCubemap&&(!(Q&o)||!(Q&l)||!(Q&c)||!(Q&h)||!(Q&u)||!(Q&f)))return console.error(\"THREE.DDSLoader.parse: Incomplete cubemap faces\"),n;n.width=Y[E],n.height=Y[_];let ie=Y[T]+4;const ae=n.isCubemap?6:1;for(let re=0;re<ae;re++){let H=n.width,ge=n.height;for(let we=0;we<n.mipmapCount;we++){let Fe,xe;ee?(Fe=m(e,ie,H,ge),xe=Fe.length):(xe=Math.max(4,H)/4*Math.max(4,ge)/4*W,Fe=new Uint8Array(e,ie,xe));const Ve={data:Fe,width:H,height:ge};n.mipmaps.push(Ve),ie+=xe,H=Math.max(H>>1,1),ge=Math.max(ge>>1,1)}}return n}}class SM{constructor(e,t,n){const i=this;let s=!1,r=0,o=0,l;const c=[];this.onStart=void 0,this.onLoad=e,this.onProgress=t,this.onError=n,this.itemStart=function(h){o++,s===!1&&i.onStart!==void 0&&i.onStart(h,r,o),s=!0},this.itemEnd=function(h){r++,i.onProgress!==void 0&&i.onProgress(h,r,o),r===o&&(s=!1,i.onLoad!==void 0&&i.onLoad())},this.itemError=function(h){i.onError!==void 0&&i.onError(h)},this.resolveURL=function(h){return l?l(h):h},this.setURLModifier=function(h){return l=h,this},this.addHandler=function(h,u){return c.push(h,u),this},this.removeHandler=function(h){const u=c.indexOf(h);return u!==-1&&c.splice(u,2),this},this.getHandler=function(h){for(let u=0,f=c.length;u<f;u+=2){const d=c[u],p=c[u+1];if(d.global&&(d.lastIndex=0),d.test(h))return p}return null}}}const El=new be;class TM extends Ht{constructor(e){super(e),this.propertyNameMapping={}}load(e,t,n,i){const s=this,r=new Jt(this.manager);r.setPath(this.path),r.setResponseType(\"arraybuffer\"),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{t(s.parse(o))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}setPropertyNameMapping(e){this.propertyNameMapping=e}parse(e){function t(d){const p=/^ply([\\s\\S]*)end_header(\\r\\n|\\r|\\n)/;let m=\"\",g=0;const y=p.exec(d);y!==null&&(m=y[1],g=new Blob([y[0]]).size);const x={comments:[],elements:[],headerLength:g,objInfo:\"\"},b=m.split(/\\r\\n|\\r|\\n/);let v;function M(T,C){const _={type:T[0]};return _.type===\"list\"?(_.name=T[3],_.countType=T[1],_.itemType=T[2]):_.name=T[1],_.name in C&&(_.name=C[_.name]),_}for(let T=0;T<b.length;T++){let C=b[T];if(C=C.trim(),C===\"\")continue;const _=C.split(/\\s+/),E=_.shift();switch(C=_.join(\" \"),E){case\"format\":x.format=_[0],x.version=_[1];break;case\"comment\":x.comments.push(C);break;case\"element\":v!==void 0&&x.elements.push(v),v={},v.name=_[0],v.count=parseInt(_[1]),v.properties=[];break;case\"property\":v.properties.push(M(_,f.propertyNameMapping));break;case\"obj_info\":x.objInfo=C;break;default:console.log(\"unhandled\",E,_)}}return v!==void 0&&x.elements.push(v),x}function n(d,p){switch(p){case\"char\":case\"uchar\":case\"short\":case\"ushort\":case\"int\":case\"uint\":case\"int8\":case\"uint8\":case\"int16\":case\"uint16\":case\"int32\":case\"uint32\":return parseInt(d);case\"float\":case\"double\":case\"float32\":case\"float64\":return parseFloat(d)}}function i(d,p){const m=p.split(/\\s+/),g={};for(let y=0;y<d.length;y++)if(d[y].type===\"list\"){const x=[],b=n(m.shift(),d[y].countType);for(let v=0;v<b;v++)x.push(n(m.shift(),d[y].itemType));g[d[y].name]=x}else g[d[y].name]=n(m.shift(),d[y].type);return g}function s(d,p){const m={indices:[],vertices:[],normals:[],uvs:[],faceVertexUvs:[],colors:[]};let g;const y=/end_header\\s([\\s\\S]*)$/;let x=\"\";(g=y.exec(d))!==null&&(x=g[1]);const b=x.split(/\\r\\n|\\r|\\n/);let v=0,M=0;for(let T=0;T<b.length;T++){let C=b[T];if(C=C.trim(),C===\"\")continue;M>=p.elements[v].count&&(v++,M=0);const _=i(p.elements[v].properties,C);o(m,p.elements[v].name,_),M++}return r(m)}function r(d){let p=new Xe;return d.indices.length>0&&p.setIndex(d.indices),p.setAttribute(\"position\",new Ee(d.vertices,3)),d.normals.length>0&&p.setAttribute(\"normal\",new Ee(d.normals,3)),d.uvs.length>0&&p.setAttribute(\"uv\",new Ee(d.uvs,2)),d.colors.length>0&&p.setAttribute(\"color\",new Ee(d.colors,3)),d.faceVertexUvs.length>0&&(p=p.toNonIndexed(),p.setAttribute(\"uv\",new Ee(d.faceVertexUvs,2))),p.computeBoundingSphere(),p}function o(d,p,m){function g(q){for(let K=0,G=q.length;K<G;K++){const X=q[K];if(X in m)return X}return null}const y=g([\"x\",\"px\",\"posx\"])||\"x\",x=g([\"y\",\"py\",\"posy\"])||\"y\",b=g([\"z\",\"pz\",\"posz\"])||\"z\",v=g([\"nx\",\"normalx\"]),M=g([\"ny\",\"normaly\"]),T=g([\"nz\",\"normalz\"]),C=g([\"s\",\"u\",\"texture_u\",\"tx\"]),_=g([\"t\",\"v\",\"texture_v\",\"ty\"]),E=g([\"red\",\"diffuse_red\",\"r\",\"diffuse_r\"]),F=g([\"green\",\"diffuse_green\",\"g\",\"diffuse_g\"]),U=g([\"blue\",\"diffuse_blue\",\"b\",\"diffuse_b\"]);if(p===\"vertex\")d.vertices.push(m[y],m[x],m[b]),v!==null&&M!==null&&T!==null&&d.normals.push(m[v],m[M],m[T]),C!==null&&_!==null&&d.uvs.push(m[C],m[_]),E!==null&&F!==null&&U!==null&&(El.setRGB(m[E]/255,m[F]/255,m[U]/255).convertSRGBToLinear(),d.colors.push(El.r,El.g,El.b));else if(p===\"face\"){const q=m.vertex_indices||m.vertex_index,K=m.texcoord;q.length===3?(d.indices.push(q[0],q[1],q[2]),K&&K.length===6&&(d.faceVertexUvs.push(K[0],K[1]),d.faceVertexUvs.push(K[2],K[3]),d.faceVertexUvs.push(K[4],K[5]))):q.length===4&&(d.indices.push(q[0],q[1],q[3]),d.indices.push(q[1],q[2],q[3]))}}function l(d,p,m,g){switch(m){case\"int8\":case\"char\":return[d.getInt8(p),1];case\"uint8\":case\"uchar\":return[d.getUint8(p),1];case\"int16\":case\"short\":return[d.getInt16(p,g),2];case\"uint16\":case\"ushort\":return[d.getUint16(p,g),2];case\"int32\":case\"int\":return[d.getInt32(p,g),4];case\"uint32\":case\"uint\":return[d.getUint32(p,g),4];case\"float32\":case\"float\":return[d.getFloat32(p,g),4];case\"float64\":case\"double\":return[d.getFloat64(p,g),8]}}function c(d,p,m,g){const y={};let x,b=0;for(let v=0;v<m.length;v++)if(m[v].type===\"list\"){const M=[];x=l(d,p+b,m[v].countType,g);const T=x[0];b+=x[1];for(let C=0;C<T;C++)x=l(d,p+b,m[v].itemType,g),M.push(x[0]),b+=x[1];y[m[v].name]=M}else x=l(d,p+b,m[v].type,g),y[m[v].name]=x[0],b+=x[1];return[y,b]}function h(d,p){const m={indices:[],vertices:[],normals:[],uvs:[],faceVertexUvs:[],colors:[]},g=p.format===\"binary_little_endian\",y=new DataView(d,p.headerLength);let x,b=0;for(let v=0;v<p.elements.length;v++)for(let M=0;M<p.elements[v].count;M++){x=c(y,b,p.elements[v].properties,g),b+=x[1];const T=x[0];o(m,p.elements[v].name,T)}return r(m)}let u;const f=this;if(e instanceof ArrayBuffer){const d=sn.decodeText(new Uint8Array(e)),p=t(d);u=p.format===\"ascii\"?s(d,p):h(e,p)}else u=s(e,t(e));return u}}class AM extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=new Jt(this.manager);r.setPath(this.path),r.setResponseType(\"arraybuffer\"),r.setRequestHeader(this.requestHeader),r.setWithCredentials(this.withCredentials),r.load(e,function(o){try{t(s.parse(o))}catch(l){i?i(l):console.error(l),s.manager.itemError(e)}},n,i)}parse(e){function t(c){const h=new DataView(c),u=32/8*3+32/8*3*3+16/8,f=h.getUint32(80,!0);if(80+32/8+f*u===h.byteLength)return!0;const p=[115,111,108,105,100];for(let m=0;m<5;m++)if(n(p,h,m))return!1;return!0}function n(c,h,u){for(let f=0,d=c.length;f<d;f++)if(c[f]!==h.getUint8(u+f))return!1;return!0}function i(c){const h=new DataView(c),u=h.getUint32(80,!0);let f,d,p,m=!1,g,y,x,b,v;for(let F=0;F<70;F++)h.getUint32(F,!1)==1129270351&&h.getUint8(F+4)==82&&h.getUint8(F+5)==61&&(m=!0,g=new Float32Array(u*3*3),y=h.getUint8(F+6)/255,x=h.getUint8(F+7)/255,b=h.getUint8(F+8)/255,v=h.getUint8(F+9)/255);const M=84,T=12*4+2,C=new Xe,_=new Float32Array(u*3*3),E=new Float32Array(u*3*3);for(let F=0;F<u;F++){const U=M+F*T,q=h.getFloat32(U,!0),K=h.getFloat32(U+4,!0),G=h.getFloat32(U+8,!0);if(m){const X=h.getUint16(U+48,!0);(X&32768)===0?(f=(X&31)/31,d=(X>>5&31)/31,p=(X>>10&31)/31):(f=y,d=x,p=b)}for(let X=1;X<=3;X++){const O=U+X*12,j=F*3*3+(X-1)*3;_[j]=h.getFloat32(O,!0),_[j+1]=h.getFloat32(O+4,!0),_[j+2]=h.getFloat32(O+8,!0),E[j]=q,E[j+1]=K,E[j+2]=G,m&&(g[j]=f,g[j+1]=d,g[j+2]=p)}}return C.setAttribute(\"position\",new pt(_,3)),C.setAttribute(\"normal\",new pt(E,3)),m&&(C.setAttribute(\"color\",new pt(g,3)),C.hasColors=!0,C.alpha=v),C}function s(c){const h=new Xe,u=/solid([\\s\\S]*?)endsolid/g,f=/facet([\\s\\S]*?)endfacet/g;let d=0;const p=/[\\s]+([+-]?(?:\\d*)(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)/.source,m=new RegExp(\"vertex\"+p+p+p,\"g\"),g=new RegExp(\"normal\"+p+p+p,\"g\"),y=[],x=[],b=new I;let v,M=0,T=0,C=0;for(;(v=u.exec(c))!==null;){T=C;const _=v[0];for(;(v=f.exec(_))!==null;){let U=0,q=0;const K=v[0];for(;(v=g.exec(K))!==null;)b.x=parseFloat(v[1]),b.y=parseFloat(v[2]),b.z=parseFloat(v[3]),q++;for(;(v=m.exec(K))!==null;)y.push(parseFloat(v[1]),parseFloat(v[2]),parseFloat(v[3])),x.push(b.x,b.y,b.z),U++,C++;q!==1&&console.error(\"THREE.STLLoader: Something isn't right with the normal of face number \"+d),U!==3&&console.error(\"THREE.STLLoader: Something isn't right with the vertices of face number \"+d),d++}const E=T,F=C-T;h.addGroup(E,F,M),M++}return h.setAttribute(\"position\",new Ee(y,3)),h.setAttribute(\"normal\",new Ee(x,3)),h}function r(c){return typeof c!=\"string\"?sn.decodeText(new Uint8Array(c)):c}function o(c){if(typeof c==\"string\"){const h=new Uint8Array(c.length);for(let u=0;u<c.length;u++)h[u]=c.charCodeAt(u)&255;return h.buffer||h}else return c}const l=o(e);return t(l)?i(l):s(r(e))}}class EM extends Ht{constructor(e){super(e)}load(e,t,n,i){const s=this,r=this.path===\"\"?sn.extractUrlBase(e):this.path,o=new Jt(this.manager);o.setPath(this.path),o.setRequestHeader(this.requestHeader),o.setWithCredentials(this.withCredentials),o.load(e,function(l){try{t(s.parse(l,r))}catch(c){i?i(c):console.error(c),s.manager.itemError(e)}},n,i)}setMaterialOptions(e){return this.materialOptions=e,this}parse(e,t){const n=e.split(`\n`);let i={};const s=/\\s+/,r={};for(let l=0;l<n.length;l++){let c=n[l];if(c=c.trim(),c.length===0||c.charAt(0)===\"#\")continue;const h=c.indexOf(\" \");let u=h>=0?c.substring(0,h):c;u=u.toLowerCase();let f=h>=0?c.substring(h+1):\"\";if(f=f.trim(),u===\"newmtl\")i={name:f},r[f]=i;else if(u===\"ka\"||u===\"kd\"||u===\"ks\"||u===\"ke\"){const d=f.split(s,3);i[u]=[parseFloat(d[0]),parseFloat(d[1]),parseFloat(d[2])]}else i[u]=f}const o=new CM(this.resourcePath||t,this.materialOptions);return o.setCrossOrigin(this.crossOrigin),o.setManager(this.manager),o.setMaterials(r),o}}class CM{constructor(e=\"\",t={}){this.baseUrl=e,this.options=t,this.materialsInfo={},this.materials={},this.materialsArray=[],this.nameLookup={},this.crossOrigin=\"anonymous\",this.side=this.options.side!==void 0?this.options.side:li,this.wrap=this.options.wrap!==void 0?this.options.wrap:cn}setCrossOrigin(e){return this.crossOrigin=e,this}setManager(e){this.manager=e}setMaterials(e){this.materialsInfo=this.convert(e),this.materials={},this.materialsArray=[],this.nameLookup={}}convert(e){if(!this.options)return e;const t={};for(const n in e){const i=e[n],s={};t[n]=s;for(const r in i){let o=!0,l=i[r];const c=r.toLowerCase();switch(c){case\"kd\":case\"ka\":case\"ks\":this.options&&this.options.normalizeRGB&&(l=[l[0]/255,l[1]/255,l[2]/255]),this.options&&this.options.ignoreZeroRGBs&&l[0]===0&&l[1]===0&&l[2]===0&&(o=!1);break}o&&(s[c]=l)}}return t}preload(){for(const e in this.materialsInfo)this.create(e)}getIndex(e){return this.nameLookup[e]}getAsArray(){let e=0;for(const t in this.materialsInfo)this.materialsArray[e]=this.create(t),this.nameLookup[t]=e,e++;return this.materialsArray}create(e){return this.materials[e]===void 0&&this.createMaterial_(e),this.materials[e]}createMaterial_(e){const t=this,n=this.materialsInfo[e],i={name:e,side:this.side};function s(o,l){return typeof l!=\"string\"||l===\"\"?\"\":/^https?:\\/\\//i.test(l)?l:o+l}function r(o,l){if(i[o])return;const c=t.getTextureParams(l,i),h=t.loadTexture(s(t.baseUrl,c.url));h.repeat.copy(c.scale),h.offset.copy(c.offset),h.wrapS=t.wrap,h.wrapT=t.wrap,(o===\"map\"||o===\"emissiveMap\")&&(h.encoding=it),i[o]=h}for(const o in n){const l=n[o];let c;if(l!==\"\")switch(o.toLowerCase()){case\"kd\":i.color=new be().fromArray(l).convertSRGBToLinear();break;case\"ks\":i.specular=new be().fromArray(l).convertSRGBToLinear();break;case\"ke\":i.emissive=new be().fromArray(l).convertSRGBToLinear();break;case\"map_kd\":r(\"map\",l);break;case\"map_ks\":r(\"specularMap\",l);break;case\"map_ke\":r(\"emissiveMap\",l);break;case\"norm\":r(\"normalMap\",l);break;case\"map_bump\":case\"bump\":r(\"bumpMap\",l);break;case\"map_d\":r(\"alphaMap\",l),i.transparent=!0;break;case\"ns\":i.shininess=parseFloat(l);break;case\"d\":c=parseFloat(l),c<1&&(i.opacity=c,i.transparent=!0);break;case\"tr\":c=parseFloat(l),this.options&&this.options.invertTrProperty&&(c=1-c),c>0&&(i.opacity=1-c,i.transparent=!0);break}}return this.materials[e]=new ni(i),this.materials[e]}getTextureParams(e,t){const n={scale:new he(1,1),offset:new he(0,0)},i=e.split(/\\s+/);let s;return s=i.indexOf(\"-bm\"),s>=0&&(t.bumpScale=parseFloat(i[s+1]),i.splice(s,2)),s=i.indexOf(\"-s\"),s>=0&&(n.scale.set(parseFloat(i[s+1]),parseFloat(i[s+2])),i.splice(s,4)),s=i.indexOf(\"-o\"),s>=0&&(n.offset.set(parseFloat(i[s+1]),parseFloat(i[s+2])),i.splice(s,4)),n.url=i.join(\" \").trim(),n}loadTexture(e,t,n,i,s){const r=this.manager!==void 0?this.manager:bu;let o=r.getHandler(e);o===null&&(o=new Os(r)),o.setCrossOrigin&&o.setCrossOrigin(this.crossOrigin);const l=o.load(e,n,i,s);return t!==void 0&&(l.mapping=t),l}}const uh=new WeakMap;class LM extends Ht{constructor(e){super(e),this.decoderPath=\"\",this.decoderConfig={},this.decoderBinary=null,this.decoderPending=null,this.workerLimit=4,this.workerPool=[],this.workerNextTaskID=1,this.workerSourceURL=\"\",this.defaultAttributeIDs={position:\"POSITION\",normal:\"NORMAL\",color:\"COLOR\",uv:\"TEX_COORD\"},this.defaultAttributeTypes={position:\"Float32Array\",normal:\"Float32Array\",color:\"Float32Array\",uv:\"Float32Array\"}}setDecoderPath(e){return this.decoderPath=e,this}setDecoderConfig(e){return this.decoderConfig=e,this}setWorkerLimit(e){return this.workerLimit=e,this}load(e,t,n,i){const s=new Jt(this.manager);s.setPath(this.path),s.setResponseType(\"arraybuffer\"),s.setRequestHeader(this.requestHeader),s.setWithCredentials(this.withCredentials),s.load(e,r=>{const o={attributeIDs:this.defaultAttributeIDs,attributeTypes:this.defaultAttributeTypes,useUniqueIDs:!1};this.decodeGeometry(r,o).then(t).catch(i)},n,i)}decodeDracoFile(e,t,n,i){const s={attributeIDs:n||this.defaultAttributeIDs,attributeTypes:i||this.defaultAttributeTypes,useUniqueIDs:!!n};this.decodeGeometry(e,s).then(t)}decodeGeometry(e,t){for(const l in t.attributeTypes){const c=t.attributeTypes[l];c.BYTES_PER_ELEMENT!==void 0&&(t.attributeTypes[l]=c.name)}const n=JSON.stringify(t);if(uh.has(e)){const l=uh.get(e);if(l.key===n)return l.promise;if(e.byteLength===0)throw new Error(\"THREE.DRACOLoader: Unable to re-decode a buffer with different settings. Buffer has already been transferred.\")}let i;const s=this.workerNextTaskID++,r=e.byteLength,o=this._getWorker(s,r).then(l=>(i=l,new Promise((c,h)=>{i._callbacks[s]={resolve:c,reject:h},i.postMessage({type:\"decode\",id:s,taskConfig:t,buffer:e},[e])}))).then(l=>this._createGeometry(l.geometry));return o.catch(()=>!0).then(()=>{i&&s&&this._releaseTask(i,s)}),uh.set(e,{key:n,promise:o}),o}_createGeometry(e){const t=new Xe;e.index&&t.setIndex(new pt(e.index.array,1));for(let n=0;n<e.attributes.length;n++){const i=e.attributes[n],s=i.name,r=i.array,o=i.itemSize;t.setAttribute(s,new pt(r,o))}return t}_loadLibrary(e,t){const n=new Jt(this.manager);return n.setPath(this.decoderPath),n.setResponseType(t),n.setWithCredentials(this.withCredentials),new Promise((i,s)=>{n.load(e,i,void 0,s)})}preload(){return this._initDecoder(),this}_initDecoder(){if(this.decoderPending)return this.decoderPending;const e=typeof WebAssembly!=\"object\"||this.decoderConfig.type===\"js\",t=[];return e?t.push(this._loadLibrary(\"draco_decoder.js\",\"text\")):(t.push(this._loadLibrary(\"draco_wasm_wrapper.js\",\"text\")),t.push(this._loadLibrary(\"draco_decoder.wasm\",\"arraybuffer\"))),this.decoderPending=Promise.all(t).then(n=>{const i=n[0];e||(this.decoderConfig.wasmBinary=n[1]);const s=RM.toString(),r=[\"/* draco decoder */\",i,\"\",\"/* worker */\",s.substring(s.indexOf(\"{\")+1,s.lastIndexOf(\"}\"))].join(`\n`);this.workerSourceURL=URL.createObjectURL(new Blob([r]))}),this.decoderPending}_getWorker(e,t){return this._initDecoder().then(()=>{if(this.workerPool.length<this.workerLimit){const i=new Worker(this.workerSourceURL);i._callbacks={},i._taskCosts={},i._taskLoad=0,i.postMessage({type:\"init\",decoderConfig:this.decoderConfig}),i.onmessage=function(s){const r=s.data;switch(r.type){case\"decode\":i._callbacks[r.id].resolve(r);break;case\"error\":i._callbacks[r.id].reject(r);break;default:console.error('THREE.DRACOLoader: Unexpected message, \"'+r.type+'\"')}},this.workerPool.push(i)}else this.workerPool.sort(function(i,s){return i._taskLoad>s._taskLoad?-1:1});const n=this.workerPool[this.workerPool.length-1];return n._taskCosts[e]=t,n._taskLoad+=t,n})}_releaseTask(e,t){e._taskLoad-=e._taskCosts[t],delete e._callbacks[t],delete e._taskCosts[t]}debug(){console.log(\"Task load: \",this.workerPool.map(e=>e._taskLoad))}dispose(){for(let e=0;e<this.workerPool.length;++e)this.workerPool[e].terminate();return this.workerPool.length=0,this}}function RM(){let a,e;onmessage=function(r){const o=r.data;switch(o.type){case\"init\":a=o.decoderConfig,e=new Promise(function(h){a.onModuleLoaded=function(u){h({draco:u})},DracoDecoderModule(a)});break;case\"decode\":const l=o.buffer,c=o.taskConfig;e.then(h=>{const u=h.draco,f=new u.Decoder,d=new u.DecoderBuffer;d.Init(new Int8Array(l),l.byteLength);try{const p=t(u,f,d,c),m=p.attributes.map(g=>g.array.buffer);p.index&&m.push(p.index.array.buffer),self.postMessage({type:\"decode\",id:o.id,geometry:p},m)}catch(p){console.error(p),self.postMessage({type:\"error\",id:o.id,error:p.message})}finally{u.destroy(d),u.destroy(f)}});break}};function t(r,o,l,c){const h=c.attributeIDs,u=c.attributeTypes;let f,d;const p=o.GetEncodedGeometryType(l);if(p===r.TRIANGULAR_MESH)f=new r.Mesh,d=o.DecodeBufferToMesh(l,f);else if(p===r.POINT_CLOUD)f=new r.PointCloud,d=o.DecodeBufferToPointCloud(l,f);else throw new Error(\"THREE.DRACOLoader: Unexpected geometry type.\");if(!d.ok()||f.ptr===0)throw new Error(\"THREE.DRACOLoader: Decoding failed: \"+d.error_msg());const m={index:null,attributes:[]};for(const g in h){const y=self[u[g]];let x,b;if(c.useUniqueIDs)b=h[g],x=o.GetAttributeByUniqueId(f,b);else{if(b=o.GetAttributeId(f,r[h[g]]),b===-1)continue;x=o.GetAttribute(f,b)}m.attributes.push(i(r,o,f,g,y,x))}return p===r.TRIANGULAR_MESH&&(m.index=n(r,o,f)),r.destroy(f),m}function n(r,o,l){const h=l.num_faces()*3,u=h*4,f=r._malloc(u);o.GetTrianglesUInt32Array(l,u,f);const d=new Uint32Array(r.HEAPF32.buffer,f,h).slice();return r._free(f),{array:d,itemSize:1}}function i(r,o,l,c,h,u){const f=u.num_components(),p=l.num_points()*f,m=p*h.BYTES_PER_ELEMENT,g=s(r,h),y=r._malloc(m);o.GetAttributeDataArrayForAllPoints(l,u,g,m,y);const x=new h(r.HEAPF32.buffer,y,p).slice();return r._free(y),{name:c,array:x,itemSize:f}}function s(r,o){switch(o){case Float32Array:return r.DT_FLOAT32;case Int8Array:return r.DT_INT8;case Int16Array:return r.DT_INT16;case Int32Array:return r.DT_INT32;case Uint8Array:return r.DT_UINT8;case Uint16Array:return r.DT_UINT16;case Uint32Array:return r.DT_UINT32}}}const Cl=new di,oi=new SM;oi.addHandler(/\\.dds$/i,new MM),oi.addHandler(/\\.tga$/i,new sh);function IM(a){return Cl.setFromObject(a),Cl.getSize(new I)}function PM(a){return Cl.setFromObject(a),Cl.getCenter(new I)}function DM(a){const e=a.split(\".\");if(e.length<=1)return\"\";{let t=e.pop();return t=t.toLowerCase(),t}}function FM(a,e,t,n,i){let s;e?s=e:s=DM(a),s===\"glb\"&&(s=\"gltf\");let r={loader:null,getObject:null};switch(s){case\"dae\":r={loader:new Uw(oi),getObject:o=>o.scene};break;case\"fbx\":r={loader:new Cw(oi)};break;case\"gltf\":r={loader:new Gw(oi),getObject:o=>{const l=o.scene;return o.animations&&(l.animations=o.animations),l}},kM(t,r,i);break;case\"obj\":r={loader:new wM(oi)};break;case\"ply\":r={loader:new TM(oi),getObject:o=>(o.computeVertexNormals(),new Rt(o,n===\"MeshStandardMaterial\"?new Is:new on({vertexColors:!0})))};break;case\"stl\":r={loader:new AM(oi),getObject:o=>new Rt(o,new ni)};break;case\"json\":r={loader:new dp(oi)};break}return r}function NM(){return new EM(oi)}function kM(a,e,t){if(a){const n=new LM;n.setDecoderPath(t||\"assets/draco/gltf/\"),n.setDecoderConfig({type:\"js\"}),e.loader.setDRACOLoader(n)}}var S1=\"\",OM=(a,e)=>{const t=a.__vccOpts||a;for(const[n,i]of e)t[n]=i;return t};const BM=At.defineComponent({name:\"vue3dLoader\"}),zM=At.defineComponent({...BM,props:{filePath:null,fileType:null,width:null,height:null,position:null,rotation:null,scale:null,lights:{default:()=>[{type:\"AmbientLight\",color:11184810},{type:\"DirectionalLight\",position:{x:1,y:1,z:1},color:16777215,intensity:.8}]},cameraPosition:{default:()=>({x:0,y:0,z:0})},cameraRotation:null,cameraUp:null,cameraLookAt:null,backgroundColor:{default:()=>16777215},backgroundAlpha:{default:()=>1},controlsOptions:null,crossOrigin:{default:\"anonymous\"},requestHeader:null,outputEncoding:{default:()=>\"linear\"},webGLRendererOptions:{default:()=>({})},mtlPath:{default:\"\"},showFps:{type:Boolean,default:!1},textureImage:{default:\"\"},clearScene:{type:Boolean,default:!1},parallelLoad:{type:Boolean,default:!1},labels:{default:()=>[]},autoPlay:{type:Boolean,default:!0},enableDraco:{type:Boolean,default:!1},dracoDir:null,intersectRecursive:{type:Boolean,default:!1},enableDamping:{type:Boolean},dampingFactor:null,verticalCtrl:{type:[Boolean,Object],default:!1},horizontalCtrl:{type:[Boolean,Object],default:!1},plyMaterial:{default:\"MeshStandardMaterial\"},enableAxesHelper:{type:Boolean,default:!1},axesHelperSize:{default:100},enableGridHelper:{type:Boolean,default:!1},minDistance:{default:0},maxDistance:{default:1/0},pointLightFollowCamera:{type:Boolean}},emits:[\"mousedown\",\"mousemove\",\"mouseup\",\"click\",\"dblclick\",\"load\",\"process\",\"error\"],setup(a,{expose:e,emit:t}){const n=a;let i=null;const s=new Sp,r=new he,o=new Ot(45,1,.1,1e5),l=new Au;let c=new Ba,h=null,u={},f=[],d=null,p=0,m=null,g=null,y=null,x=null,b=null;const v=At.ref({width:n.width||0,height:n.height||0}),M=At.ref(0),T=At.ref(!1),C=At.ref(!1),_=At.ref(null),E=At.ref(null);At.onMounted(()=>{q()}),At.onBeforeUnmount(()=>{U()}),At.watch([()=>n.autoPlay],()=>{Se()}),At.watch([()=>n.width,()=>n.height],()=>{v.value={width:n.width||0,height:n.height||0}}),At.watch([()=>n.enableAxesHelper,()=>n.axesHelperSize,()=>n.enableGridHelper],()=>{me()}),At.watch([()=>n.minDistance,()=>n.maxDistance],()=>{D()}),At.watch([()=>n.filePath,()=>n.fileType,()=>n.mtlPath,()=>n.clearScene,()=>n.backgroundAlpha,()=>n.backgroundColor],V=>{(V[0]||V[1])&&F(),V[2]&&we(),V[3]&&Ue(),(V[4]||V[5])&&ae()},{deep:!0}),At.watch([()=>n.rotation,()=>n.position,()=>n.scale,()=>n.lights],V=>{const B=[\"rotation\",\"position\",\"scale\"];V.forEach((ne,de)=>{de<3&&ne?gt(B[de],ne):H()})},{deep:!0}),At.watch([()=>v],()=>{re(!0),ae()},{deep:!0}),At.watch([()=>n.controlsOptions],()=>{ge()},{deep:!0}),At.watch([()=>n.cameraRotation,()=>n.cameraPosition],()=>{re()},{deep:!0}),At.watch([()=>n.labels],()=>{k()},{deep:!0});function F(){U(),q()}function U(){p&&cancelAnimationFrame(p),h&&h.dispose(),u&&Object.keys(u).length>0&&(u.dispose(),u={});const V=_.value;V.removeEventListener(\"mousedown\",O,!1),V.removeEventListener(\"mousemove\",j,!1),V.removeEventListener(\"mouseup\",Y,!1),V.removeEventListener(\"click\",W,!1),V.removeEventListener(\"dblclick\",Z,!1),window.removeEventListener(\"resize\",X,!1),i=null,c&&c.clear()}function q(){const{filePath:V,outputEncoding:B,webGLRendererOptions:ne,showFps:de,enableDamping:Ce,dampingFactor:z,labels:ye}=n;V&&typeof V==\"object\"&&(C.value=!0);const J=_.value;K(J),X();const Ae=Object.assign({},{antialias:!0,alpha:!0},ne,{canvas:E.value});if(!h){h=new $c(Ae),h.shadowMap.enabled=!0;const $e=B===\"linear\"?fi:it;h.outputEncoding=$e}(!u||Object.keys(u).length<=0)&&(u=new ew(o,J),Ce&&(u.enableDamping=!0,z!=null&&(u.dampingFactor=z))),D(),me(),we(),Q(),G(!0),J.addEventListener(\"mousedown\",O,!1),J.addEventListener(\"mouseup\",Y,!1),J.addEventListener(\"click\",W,!1),J.addEventListener(\"dblclick\",Z,!1),window.addEventListener(\"resize\",X,!1),de&&(m=Oo(),J.appendChild(m.dom)),ve(),ye&&ye.length>0&&k()}function K(V){const{width:B,height:ne}=n;B&&(V.style.width=`${B}px`),ne&&(V.style.height=`${ne}px`)}function G(V){const B=_.value;V?B.addEventListener(\"mousemove\",j,!1):B.removeEventListener(\"mousemove\",j,!1)}function X(){const{width:V,height:B}=n;(!V||!B)&&At.nextTick(()=>{const ne=_.value;v.value={width:V||ne.offsetWidth,height:B||ne.offsetHeight}})}function O(V){G(!1);const B=ee(V.clientX,V.clientY);t(\"mousedown\",V,B)}function j(V){const B=ee(V.clientX,V.clientY);t(\"mousemove\",V,B)}function Y(V){const B=ee(V.clientX,V.clientY);t(\"mouseup\",V,B),G(!0)}function W(V){const B=ee(V.clientX,V.clientY);t(\"click\",V,B)}function Z(V){const B=ee(V.clientX,V.clientY);t(\"dblclick\",V,B)}function ee(V,B){const ne=lt();if(!ne||!_.value)return null;const de=_.value.getBoundingClientRect();V-=de.left,B-=de.top,r.x=V/v.value.width*2-1,r.y=-(B/v.value.height)*2+1,s.setFromCamera(r,o);const Ce=s.intersectObject(ne,n.intersectRecursive);return(Ce&&Ce.length)>0?Ce[0]:null}function Q(){ae(),re(),H(),ge()}function ie(){if(!i)return;const V=C.value?_e(i):null,{position:B,rotation:ne,scale:de}=n;B&&(B instanceof Array?V!=null?i.position.set(B[V].x,B[V].y,B[V].z):i.position.set(0,0,0):i.position.set(B.x,B.y,B.z)),ne&&(ne instanceof Array?V!=null?i.rotation.set(ne[V].x,ne[V].y,ne[V].z):i.rotation.set(0,0,0):i.rotation.set(ne.x,ne.y,ne.z)),de&&(de instanceof Array?V!=null?i.scale.set(de[V].x,de[V].y,de[V].z):i.scale.set(1,1,1):i.scale.set(de.x,de.y,de.z))}function ae(){const{backgroundColor:V,backgroundAlpha:B}=n;h.setSize(v.value.width,v.value.height),h.setPixelRatio(window.devicePixelRatio||1),h.setClearColor(new be(V).getHex()),h.setClearAlpha(B)}function re(V){const{cameraPosition:B,cameraRotation:ne,cameraUp:de,cameraLookAt:Ce}=n;if(o.aspect=v.value.width/v.value.height,o.updateProjectionMatrix(),!V)if(!Ce||!de){if(!i)return;const z=IM(i).length();o.position.set(B.x,B.y,B.z),ne&&o.rotation.set(ne.x,ne.y,ne.z),B.x===0&&B.y===0&&B.z===0&&(o.position.z=z),o.lookAt(new I)}else o.position.set(B.x,B.y,B.z),ne&&o.rotation.set(ne.x,ne.y,ne.z),o.up.set(de.x,de.y,de.z),o.lookAt(new I(Ce.x,Ce.y,Ce.z))}function H(){const{lights:V}=n;c.remove(...f),f=[],V.forEach(B=>{if(!B.type)return;const ne=B.type.toLowerCase();let de=null;if(ne===\"ambient\"||ne===\"ambientlight\"){const Ce=B.color===0?B.color:B.color||4210752,z=B.intensity===0?B.intensity:B.intensity||1;de=new ko(Ce,z)}if(ne===\"point\"||ne===\"pointlight\"){const Ce=B.color===0?B.color:B.color||16777215,z=B.intensity===0?B.intensity:B.intensity||1,ye=B.distance||0,J=B.decay===0?B.decay:B.decay||1;de=new $i(Ce,z,ye,J),B.position&&de.position.copy(B.position)}if(ne===\"directional\"||ne===\"directionallight\"){const Ce=B.color===0?B.color:B.color||16777215,z=B.intensity===0?B.intensity:B.intensity||1;de=new Or(Ce,z),B.position&&de.position.copy(B.position),B.target&&de.target.copy(B.target)}if(ne===\"hemisphere\"||ne===\"hemispherelight\"){const Ce=B.skyColor===0?B.skyColor:B.skyColor||16777215,z=B.groundColor===0?B.groundColor:B.groundColor||16777215,ye=B.intensity===0?B.intensity:B.intensity||1;de=new wu(Ce,z,ye),B.position&&de.position.copy(B.position)}de&&(f.push(de),c.add(de))})}function ge(){const{controlsOptions:V}=n;V&&Object.assign(u,V)}function we(){const{filePath:V,parallelLoad:B}=n;B&&C?V.forEach((ne,de)=>{Fe(de)}):Fe()}function Fe(V){const{filePath:B,fileType:ne,crossOrigin:de,requestHeader:Ce,mtlPath:z,enableDraco:ye,dracoDir:J,plyMaterial:Pe}=n;if(!B)return;const Ae=V||M.value,$e=C.value?B[Ae]:B,Tt=typeof ne==\"string\"?ne:ne?ne[Ae]:\"\",ct=FM($e,Tt,ye,Pe,J);d=ct.loader;const Mt=ct.getObject?ct.getObject:ue;if(i&&Ae===0&&c.remove(i),Ce&&d.setRequestHeader(Ce),de&&d.setCrossOrigin(de),z)if(!(typeof z==\"object\"))Ve($e,Mt,Ae);else{if(!z[Ae]){xe($e,Mt,Ae);return}Ve($e,Mt,Ae)}else xe($e,Mt,Ae)}function xe(V,B,ne){const{textureImage:de,parallelLoad:Ce}=n;d.load(V,(...z)=>{if(i=B(...z),ce(i,V),de){const J=typeof de==\"string\"?de:de[ne];J&&He(i,J)}t(\"load\",c)},z=>{Ce||Ze(z);const ye=M.value+1;t(\"process\",z,ye)},z=>{t(\"error\",z)})}function Ve(V,B,ne){const{crossOrigin:de,requestHeader:Ce,mtlPath:z}=n,ye=NM();de&&ye.setCrossOrigin(de),Ce&&ye.setRequestHeader(Ce);const J=typeof z==\"string\"?z:z[ne],Pe=/^(.*\\/)([^/]*)$/.exec(J),Ae=Pe[1],$e=Pe[2];ye.setPath(Ae).load($e,Tt=>{Tt.preload(),d.setMaterials(Tt),xe(V,B,ne)})}function ue(V){return V}function ce(V,B){const ne=PM(i);T.value||(c.position.copy(ne.negate()),T.value=!0),i=V;let de=B.split(\"/\");de=de[de.length-1],i.fileName=de,c.add(i),re(),ie(),Se()}function ve(){p=requestAnimationFrame(ve),Le();const V=l.getDelta();g&&g instanceof al&&g.update(V),g&&g instanceof Array&&g.forEach(B=>{B.update(V)}),u&&u.update(),ke()}function ke(){const{pointLightFollowCamera:V}=n;V&&Te(),h.render(c,o)}function Le(){const{showFps:V}=n;V&&m.update()}function Ze(V){const{filePath:B}=n;Math.floor(V.loaded/V.total*100)===100&&(C.value&&B.length>M.value?At.nextTick(()=>{if(M.value++,M.value===B.length){M.value=0;return}Fe()}):M.value=0)}function He(V,B){y||(y=new Os),V.traverse(ne=>{ne.isMesh&&y.load(B,de=>{ne.material.map=de,ne.material.needsUpdate=!0},()=>{},de=>{t(\"error\",de)})})}function Ue(){c.clear()}function gt(V,B){const ne=lt();if(!!ne){if(C.value){ne.children.forEach(de=>{const Ce=_e(de),z=V===\"scale\"?1:0;B[Ce]?de[V].set(B[Ce].x,B[Ce].y,B[Ce].z):de[V].set(z,z,z)});return}ne[V].set(B.x,B.y,B.z)}}function lt(){return C.value?c:i}function k(){const{labels:V}=n;if(!V||V.length<=0)return;P();const B=C.value?c:i,ne=Ce=>(y||(y=new Os),y.load(Ce)),de=(Ce,z)=>{const ye=oe(Ce,z),J=new Lt(ye);return J.needsUpdate=!0,J};V.forEach(Ce=>{const z=Ce.image?ne(Ce.image):de(Ce.text,Ce.textStyle||{}),ye=new za({map:z,color:Ce.spriteMaterialColor||16777215}),J=new So(ye);Ce.scale?J.scale.set(Ce.scale.x||1,Ce.scale.y||1,Ce.scale.z||0):J.scale.set(1,1,0),Ce.position&&J.position.set(Ce.position.x,Ce.position.y,Ce.position.z),Ce.sid&&(J.sid=Ce.sid),B.add(J)})}function P(){const V=c.children;for(let B=V.length-1;B>=0;B--){const ne=V[B];ne&&(ne instanceof dn&&ne.children&&(c.children[B].children=ne.children.map(de=>de instanceof So?null:de).filter(de=>de)),ne instanceof So&&c.remove(ne))}}function oe(V,B){const ne=(Mt,et,Ct,_t,Yn,gn)=>{Mt.beginPath(),Mt.moveTo(et+gn,Ct),Mt.lineTo(et+_t-gn,Ct),Mt.quadraticCurveTo(et+_t,Ct,et+_t,Ct+gn),Mt.lineTo(et+_t,Ct+Yn-gn),Mt.quadraticCurveTo(et+_t,Ct+Yn,et+_t-gn,Ct+Yn),Mt.lineTo(et+gn,Ct+Yn),Mt.quadraticCurveTo(et,Ct+Yn,et,Ct+Yn-gn),Mt.lineTo(et,Ct+gn),Mt.quadraticCurveTo(et,Ct,et+gn,Ct),Mt.closePath(),Mt.fill(),Mt.stroke()},de=B.fontFamily||\"Arial\",Ce=B.fontSize===0||B.fontSize?B.fontSize:18,z=B.color||\"#ffffff\",ye=B.fontWeight||\"normal\",J=B.borderWidth===0||B.borderWidth?B.borderWidth:4,Pe=B.borderColor||\"rgba(0,0,0,1)\",Ae=B.borderRadius===0||B.borderRadius?B.borderRadius:4,$e=B.backgroundColor||\"rgba(255, 255, 255, 1)\",Tt=document.createElement(\"canvas\"),ct=Tt.getContext(\"2d\");if(ct){ct.font=`${ye} ${Ce}px ${de}`;const et=ct.measureText(V).width;ct.fillStyle=$e,ct.strokeStyle=Pe,ct.lineWidth=J,ne(ct,J/2,J/2,et+J,Ce*1.4+J,Ae),ct.fillStyle=z,ct.fillText(V,J,Ce+J)}return Tt}function _e(V){const{filePath:B}=n;let ne;return B instanceof Array&&(ne=B.map((de,Ce)=>{if(de.indexOf(V.fileName)>-1)return Ce}).filter(de=>de!=null)[0]),ne}function Se(){const V=lt();if(!!V){if(C.value){je(V);return}Ie(V)}}function Ie(V){const{autoPlay:B}=n;g=new al(V),V.animations&&V.animations.length>0&&V.animations.forEach(ne=>{if(ne){const de=g.clipAction(ne);B?de.play():de.stop()}})}function je(V){const{autoPlay:B}=n;g=[],V.children.forEach((ne,de)=>{g.push(new al(ne)),ne.animations&&ne.animations.length>0&&ne.animations.forEach(Ce=>{if(Ce){const z=g[de].clipAction(Ce);B?z.play():z.stop()}})})}function D(){if(!u)return;const{verticalCtrl:V,horizontalCtrl:B,minDistance:ne,maxDistance:de}=n;V&&typeof V==\"boolean\"&&(u.minAzimuthAngle=-2*Math.PI,u.maxAzimuthAngle=-2*Math.PI),V&&typeof V==\"object\"&&(u.minAzimuthAngle=V.min,u.maxAzimuthAngle=V.max),B&&typeof B==\"boolean\"&&(u.minPolarAngle=1,u.maxPolarAngle=1),B&&typeof B==\"object\"&&(u.minPolarAngle=B.min,u.maxPolarAngle=B.max),ne!=0&&typeof ne==\"number\"&&(u.minDistance=ne),de!=1/0&&typeof de==\"number\"&&(u.maxDistance=de)}function me(){const{enableAxesHelper:V,enableGridHelper:B,axesHelperSize:ne}=n;V?(x=new kp(ne),c.add(x)):x&&c.remove(x),B?(b=new Pp(2e3,100),c.add(b)):b&&c.remove(b)}function Te(){const V=o.position.clone();c.children.forEach(B=>{B instanceof $i&&B.position.set(V.x,V.y,V.z)})}return e({camera:o,scene:c}),(V,B)=>(At.openBlock(),At.createElementBlock(\"div\",{ref_key:\"containerElement\",ref:_,class:\"viewer-container\"},[At.createElementVNode(\"canvas\",{ref_key:\"canvasElement\",ref:E,class:\"viewer-canvas\"},null,512)],512))}});var Ll=OM(zM,[[\"__scopeId\",\"data-v-e92274c2\"]]),UM={install:a=>{a.component(Ll.name,Ll)},vue3dLoader:Ll};return Qr.Three=Qb,Qr.default=UM,Qr.vue3dLoader=Ll,Object.defineProperties(Qr,{__esModule:{value:!0},[Symbol.toStringTag]:{value:\"Module\"}}),Qr}({},Vue);\n"
  },
  {
    "path": "index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\" />\n  <link rel=\"icon\" href=\"/favicon.ico\" />\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n  <title>vue 3d loader</title>\n</head>\n\n<body>\n  <div id=\"app\"></div>\n  <script type=\"module\" src=\"/src/main.ts\"></script>\n</body>\n\n</html>"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"vue-3d-loader\",\n  \"private\": false,\n  \"version\": \"2.2.4\",\n  \"main\": \"dist/vue-3d-loader.cjs.js\",\n  \"module\": \"dist/vue-3d-loader.esm.js\",\n  \"types\": \"dist/types/index.d.ts\",\n  \"scripts\": {\n    \"dev\": \"vite\",\n    \"build\": \"vue-tsc --noEmit && vite build && npm run build:types\",\n    \"build:types\": \"node scripts/build-types.js\",\n    \"build:example\": \"vue-tsc --noEmit && vite build --mode examples\",\n    \"build:docker\": \"vue-tsc --noEmit && vite build --mode docker\",\n    \"preview\": \"vite preview\"\n  },\n  \"dependencies\": {\n    \"@types/three\": \"^0.143.0\",\n    \"three\": \"^0.143.0\",\n    \"vue\": \"^3.2.28\"\n  },\n  \"devDependencies\": {\n    \"@vitejs/plugin-vue\": \"^2.3.3\",\n    \"ts-morph\": \"^15.1.0\",\n    \"typescript\": \"^4.7.4\",\n    \"vite\": \"^2.9.9\",\n    \"vite-plugin-eslint\": \"^1.6.1\",\n    \"vite-plugin-vue-setup-extend\": \"^0.4.0\",\n    \"vue-tsc\": \"^0.38.5\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/king2088/vue-3d-loader.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/king2088/vue-3d-loader/issues\"\n  },\n  \"homepage\": \"https://github.com/king2088/vue-3d-loader\",\n  \"keywords\": [\n    \"vue\",\n    \"3d\",\n    \"threeJS\",\n    \"3d viewer\",\n    \"vue 3d\"\n  ],\n  \"license\": \"MIT\"\n}"
  },
  {
    "path": "public/assets/draco/gltf/draco_decoder.js",
    "content": "\nvar DracoDecoderModule = (function() {\n  var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;\n  if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename;\n  return (\nfunction(DracoDecoderModule) {\n  DracoDecoderModule = DracoDecoderModule || {};\n\nvar Module=typeof DracoDecoderModule!==\"undefined\"?DracoDecoderModule:{};var isRuntimeInitialized=false;var isModuleParsed=false;Module[\"onRuntimeInitialized\"]=function(){isRuntimeInitialized=true;if(isModuleParsed){if(typeof Module[\"onModuleLoaded\"]===\"function\"){Module[\"onModuleLoaded\"](Module)}}};Module[\"onModuleParsed\"]=function(){isModuleParsed=true;if(isRuntimeInitialized){if(typeof Module[\"onModuleLoaded\"]===\"function\"){Module[\"onModuleLoaded\"](Module)}}};function isVersionSupported(versionString){if(typeof versionString!==\"string\")return false;const version=versionString.split(\".\");if(version.length<2||version.length>3)return false;if(version[0]==1&&version[1]>=0&&version[1]<=3)return true;if(version[0]!=0||version[1]>10)return false;return true}Module[\"isVersionSupported\"]=isVersionSupported;var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}var arguments_=[];var thisProgram=\"./this.program\";var quit_=function(status,toThrow){throw toThrow};var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_HAS_NODE=typeof process===\"object\"&&typeof process.versions===\"object\"&&typeof process.versions.node===\"string\";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;var nodeFS;var nodePath;if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+\"/\";read_=function shell_read(filename,binary){var ret=tryParseAsDataURI(filename);if(ret){return binary?ret:ret.toString()}if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);return nodeFS[\"readFileSync\"](filename,binary?null:\"utf8\")};readBinary=function readBinary(filename){var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){thisProgram=process[\"argv\"][1].replace(/\\\\/g,\"/\")}arguments_=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process[\"on\"](\"unhandledRejection\",abort);quit_=function(status){process[\"exit\"](status)};Module[\"inspect\"]=function(){return\"[Emscripten Module object]\"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){read_=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}readBinary=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){arguments_=scriptArgs}else if(typeof arguments!=\"undefined\"){arguments_=arguments}if(typeof quit===\"function\"){quit_=function(status){quit(status)}}if(typeof print!==\"undefined\"){if(typeof console===\"undefined\")console={};console.log=print;console.warn=console.error=typeof printErr!==\"undefined\"?printErr:print}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}{read_=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){readBinary=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}readAsync=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=function(title){document.title=title}}else{}var out=Module[\"print\"]||console.log.bind(console);var err=Module[\"printErr\"]||console.warn.bind(console);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=null;if(Module[\"arguments\"])arguments_=Module[\"arguments\"];if(Module[\"thisProgram\"])thisProgram=Module[\"thisProgram\"];if(Module[\"quit\"])quit_=Module[\"quit\"];var STACK_ALIGN=16;function dynamicAlloc(size){var ret=HEAP32[DYNAMICTOP_PTR>>2];var end=ret+size+15&-16;if(end>_emscripten_get_heap_size()){abort()}HEAP32[DYNAMICTOP_PTR>>2]=end;return ret}function getNativeTypeSize(type){switch(type){case\"i1\":case\"i8\":return 1;case\"i16\":return 2;case\"i32\":return 4;case\"i64\":return 8;case\"float\":return 4;case\"double\":return 8;default:{if(type[type.length-1]===\"*\"){return 4}else if(type[0]===\"i\"){var bits=parseInt(type.substr(1));assert(bits%8===0,\"getNativeTypeSize invalid bits \"+bits+\", type \"+type);return bits/8}else{return 0}}}}function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}}function convertJsFunctionToWasm(func,sig){return func}function addFunctionWasm(func,sig){var table=wasmTable;var ret=table.length;try{table.grow(1)}catch(err){if(!err instanceof RangeError){throw err}throw\"Unable to grow wasm table. Use a higher value for RESERVED_FUNCTION_POINTERS or set ALLOW_TABLE_GROWTH.\"}try{table.set(ret,func)}catch(err){if(!err instanceof TypeError){throw err}assert(typeof sig!==\"undefined\",\"Missing signature argument to addFunction\");var wrapped=convertJsFunctionToWasm(func,sig);table.set(ret,wrapped)}return ret}function removeFunctionWasm(index){}var funcWrappers={};function dynCall(sig,ptr,args){if(args&&args.length){return Module[\"dynCall_\"+sig].apply(null,[ptr].concat(args))}else{return Module[\"dynCall_\"+sig].call(null,ptr)}}var tempRet0=0;var setTempRet0=function(value){tempRet0=value};var getTempRet0=function(){return tempRet0};var wasmBinary;if(Module[\"wasmBinary\"])wasmBinary=Module[\"wasmBinary\"];var noExitRuntime;if(Module[\"noExitRuntime\"])noExitRuntime=Module[\"noExitRuntime\"];var WebAssembly={Memory:function(opts){return{buffer:new ArrayBuffer(opts[\"initial\"]*65536),grow:function(amount){var ret=__growWasmMemory(amount);return ret}}},Table:function(opts){var ret=new Array(opts[\"initial\"]);ret.grow=function(by){if(ret.length>=293+0){abort(\"Unable to grow wasm table. Use a higher value for RESERVED_FUNCTION_POINTERS or set ALLOW_TABLE_GROWTH.\")}ret.push(null)};ret.set=function(i,func){ret[i]=func};ret.get=function(i){return ret[i]};return ret},Module:function(binary){return{}},Instance:function(module,info){var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i<input.length);return output};function intArrayFromBase64(s){if(typeof ENVIRONMENT_IS_NODE===\"boolean\"&&ENVIRONMENT_IS_NODE){var buf;try{buf=Buffer.from(s,\"base64\")}catch(_){buf=new Buffer(s,\"base64\")}return new Uint8Array(buf.buffer,buf.byteOffset,buf.byteLength)}try{var decoded=decodeBase64(s);var bytes=new Uint8Array(decoded.length);for(var i=0;i<decoded.length;++i){bytes[i]=decoded.charCodeAt(i)}return bytes}catch(_){throw new Error(\"Converting base64 string to bytes failed.\")}}var atob=decodeBase64;var exports=(\n// EMSCRIPTEN_START_ASM\nfunction a(/** @suppress {uselessCode} */asmLibraryArg,wasmMemory,wasmTable){var scratchBuffer=new ArrayBuffer(8);var b=new Int32Array(scratchBuffer);var c=new Float32Array(scratchBuffer);var d=new Float64Array(scratchBuffer);function e(index){return b[index]}function f(index,value){b[index]=value}function g(){return d[0]}function h(value){d[0]=value}function i(low,high){b[0]=low;b[1]=high}function j(global,env,buffer){var k=env.memory;var l=wasmTable;var m=new global.Int8Array(buffer);var n=new global.Int16Array(buffer);var o=new global.Int32Array(buffer);var p=new global.Uint8Array(buffer);var q=new global.Uint16Array(buffer);var r=new global.Uint32Array(buffer);var s=new global.Float32Array(buffer);var t=new global.Float64Array(buffer);var u=global.Math.imul;var v=global.Math.fround;var w=global.Math.abs;var x=global.Math.clz32;var y=global.Math.min;var z=global.Math.max;var A=global.Math.floor;var B=global.Math.ceil;var C=global.Math.sqrt;var D=env.abort;var E=global.NaN;var F=global.Infinity;var G=env.__cxa_allocate_exception;var H=env.__cxa_throw;var I=env.fd_write;var J=env.fd_close;var K=env.environ_sizes_get;var L=env.environ_get;var M=env.abort;var N=env.emscripten_resize_heap;var O=env.emscripten_memcpy_big;var P=env.setTempRet0;var Q=env.fd_seek;var R=5256544;var S=13656;var T=0;\n// EMSCRIPTEN_START_FUNCS\nfunction ca(){ok()}function da(a,b){var c=0,d=0,e=0,f=0;c=R-16|0;R=c;o[c+8>>2]=0;o[c>>2]=0;o[c+4>>2]=0;d=_j(b);if(d>>>0<4294967280){a:{b:{if(d>>>0>=11){f=d+16&-16;e=Hk(f);o[c+8>>2]=f|-2147483648;o[c>>2]=e;o[c+4>>2]=d;break b}m[c+11|0]=d;e=c;if(!d){break a}}wl(e,b,d)}m[d+e|0]=0;a=ea(a,c);if(m[c+11|0]<=-1){ul(o[c>>2])}R=c+16|0;return(a|0)!=0}Kk();D()}function ea(a,b){var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;a=o[a+4>>2];if(a){h=p[b+11|0];i=h<<24>>24<0;h=i?o[b+4>>2]:h;l=i?o[b>>2]:b;while(1){b=a+16|0;g=p[a+27|0];i=g<<24>>24<0;j=i?o[a+20>>2]:g;m=j>>>0<h>>>0;a:{b:{c:{d:{e:{f:{g=m?j:h;if(g){k=i?o[b>>2]:b;n=Zj(l,k,g);if(n){break f}}if(h>>>0<j>>>0){break a}if(!g){break d}k=i?o[b>>2]:b;break e}if((n|0)<=-1){break a}}b=Zj(k,l,g);if(b){break c}}if(m){break b}return 1}if((b|0)<=-1){break b}return 1}a=a+4|0}a=o[a>>2];if(a){continue}break}}return 0}function fa(a,b){var p=0,q=0,r=0,s=0;p=R-16|0;R=p;o[p+12>>2]=0;o[p+8>>2]=0;o[p>>2]=0;o[p+4>>2]=0;q=_j(b);if(q>>>0<4294967280){a:{b:{if(q>>>0>=11){s=q+16&-16;r=Hk(s);o[p+8>>2]=s|-2147483648;o[p>>2]=r;o[p+4>>2]=q;break b}m[p+11|0]=q;r=p;if(!q){break a}}wl(r,b,q)}m[q+r|0]=0;jj(a,p,p+12|0);a=o[p+12>>2];if(m[p+11|0]<=-1){ul(o[p>>2])}R=p+16|0;return a}Kk();D()}function ga(a,b,t){var u=0,v=0,w=0,x=0;u=R-32|0;R=u;o[u+24>>2]=0;o[u+16>>2]=0;o[u+20>>2]=0;v=_j(b);if(v>>>0<4294967280){a:{b:{if(v>>>0>=11){x=v+16&-16;w=Hk(x);o[u+24>>2]=x|-2147483648;o[u+16>>2]=w;o[u+20>>2]=v;break b}m[u+27|0]=v;w=u+16|0;if(!v){break a}}wl(w,b,v)}m[v+w|0]=0;o[u+8>>2]=0;o[u>>2]=0;o[u+4>>2]=0;kj(a,u+16|0,u);a=o[t>>2];if(a){o[t+4>>2]=a;ul(a);o[t+8>>2]=0;o[t>>2]=0;o[t+4>>2]=0}o[t>>2]=o[u>>2];o[t+4>>2]=o[u+4>>2];o[t+8>>2]=o[u+8>>2];if(m[u+27|0]<=-1){ul(o[u+16>>2])}R=u+32|0;return}Kk();D()}function ha(a,b){var y=0,z=0,A=0,B=0,C=0;y=R-32|0;R=y;o[y+24>>2]=0;o[y+28>>2]=0;o[y+16>>2]=0;o[y+8>>2]=0;o[y+12>>2]=0;z=_j(b);if(z>>>0<4294967280){a:{b:{if(z>>>0>=11){B=z+16&-16;A=Hk(B);o[y+16>>2]=B|-2147483648;o[y+8>>2]=A;o[y+12>>2]=z;break b}m[y+19|0]=z;A=y+8|0;if(!z){break a}}wl(A,b,z)}m[z+A|0]=0;lj(a,y+8|0,y+24|0);C=t[y+24>>3];if(m[y+19|0]<=-1){ul(o[y+8>>2])}R=y+32|0;return C}Kk();D()}function ia(a,b,t){var E=0,F=0,G=0,H=0;E=R-16|0;R=E;o[E+8>>2]=0;o[E>>2]=0;o[E+4>>2]=0;F=_j(t);if(F>>>0<4294967280){a:{b:{if(F>>>0>=11){H=F+16&-16;G=Hk(H);o[E+8>>2]=H|-2147483648;o[E>>2]=G;o[E+4>>2]=F;break b}m[E+11|0]=F;G=E;if(!F){break a}}wl(G,t,F)}m[F+G|0]=0;a=a+16|0;t=0;c:{if(!mj(b,E,a)){break c}t=o[a>>2];if(m[a+11|0]<=-1){break c}t=a}if(m[E+11|0]<=-1){ul(o[E>>2])}R=E+16|0;return t}Kk();D()}function ja(a,b,t){var D=0,I=0,J=0,K=0;a:{if(o[a+12>>2]==(b|0)){break a}D=o[a>>2];J=a+4|0;I=o[J>>2];if((D|0)!=(I|0)){while(1){K=I+ -12|0;if(m[I+ -1|0]<=-1){ul(o[K>>2])}I=K;if((I|0)!=(D|0)){continue}break}}o[a+12>>2]=b;o[J>>2]=D;I=o[b>>2];J=b+4|0;if((I|0)==(J|0)){break a}K=a+8|0;while(1){b=I+16|0;b:{if(o[K>>2]!=(D|0)){Mk(D,b);b=a+4|0;o[b>>2]=o[b>>2]+12;break b}ka(a,b)}D=o[I+4>>2];c:{if(!D){b=o[I+8>>2];if(o[b>>2]==(I|0)){break c}I=I+8|0;while(1){D=o[I>>2];I=D+8|0;b=o[D+8>>2];if((D|0)!=o[b>>2]){continue}break}break c}while(1){b=D;D=o[D>>2];if(D){continue}break}}if((b|0)==(J|0)){break a}D=o[a+4>>2];I=b;continue}}D=0;d:{if((t|0)<0){break d}b=o[a+4>>2];a=o[a>>2];if((b-a|0)/12>>>0<=t>>>0){break d}D=a+u(t,12)|0;if(m[D+11|0]>-1){break d}D=o[D>>2]}return D}function ka(a,b){var t=0,L=0,M=0,N=0,O=0;a:{b:{c:{M=o[a>>2];O=(o[a+4>>2]-M|0)/12|0;t=O+1|0;if(t>>>0<357913942){M=(o[a+8>>2]-M|0)/12|0;N=M<<1;t=M>>>0<178956970?N>>>0<t>>>0?t:N:357913941;L=0;d:{if(!t){break d}if(t>>>0>=357913942){break c}L=Hk(u(t,12))}M=L+u(t,12)|0;b=Mk(L+u(O,12)|0,b);O=b+12|0;t=o[a+4>>2];L=o[a>>2];if((t|0)==(L|0)){break b}while(1){t=t+ -12|0;N=o[t+4>>2];b=b+ -12|0;o[b>>2]=o[t>>2];o[b+4>>2]=N;N=t+8|0;o[b+8>>2]=o[N>>2];o[t>>2]=0;o[t+4>>2]=0;o[N>>2]=0;if((t|0)!=(L|0)){continue}break}L=o[a+4>>2];t=o[a>>2];break a}Yk();D()}_a(1040);D()}t=L}o[a>>2]=b;o[a+8>>2]=M;o[a+4>>2]=O;if((t|0)!=(L|0)){while(1){a=L+ -12|0;if(m[L+ -1|0]<=-1){ul(o[a>>2])}L=a;if((a|0)!=(t|0)){continue}break}}if(t){ul(t)}}function la(a){var b=0;ui(a);b=a+16|0;o[b>>2]=0;o[b+4>>2]=0;o[a+24>>2]=0;o[a+28>>2]=0;o[a+12>>2]=b;o[a+32>>2]=0;o[a+36>>2]=0;return a}function ma(a){var P=0;P=R-32|0;R=P;Rf(P+8|0,a);a=o[P+24>>2];if(m[P+23|0]<=-1){ul(o[P+12>>2])}R=P+32|0;return a}function na(a){var Q=0;Q=R-16|0;R=Q;Tf(Q);o[a+24>>2]=o[Q>>2];Ok(a+28|0,Q|4);a=a+24|0;if(m[Q+15|0]<=-1){ul(o[Q+4>>2])}R=Q+16|0;return a}function oa(a,S,T){var U=0;U=R-16|0;R=U;Sf(U,a,S,T);o[a+24>>2]=o[U>>2];Ok(a+28|0,U|4);a=a+24|0;if(m[U+15|0]<=-1){ul(o[U+4>>2])}R=U+16|0;return a}function pa(a,S){var T=0,V=0,W=0,X=0;T=R-32|0;R=T;o[T+24>>2]=0;o[T+16>>2]=0;o[T+20>>2]=0;V=_j(S);if(V>>>0<4294967280){a:{b:{if(V>>>0>=11){X=V+16&-16;W=Hk(X);o[T+24>>2]=X|-2147483648;o[T+16>>2]=W;o[T+20>>2]=V;break b}m[T+27|0]=V;W=T+16|0;if(!V){break a}}wl(W,S,V)}m[V+W|0]=0;o[T+8>>2]=67108864;o[T>>2]=0;o[T+4>>2]=0;m[T+4|0]=0;o[T>>2]=1701667182;V=o[a+4>>2];S=-1;c:{if(!V){break c}V=dj(V,T,T+16|0);S=-1;if(!V){break c}S=uj(a,o[V+24>>2])}if(m[T+11|0]<=-1){ul(o[T>>2])}if(m[T+27|0]<=-1){ul(o[T+16>>2])}R=T+32|0;return S}Kk();D()}function qa(a,S,Y){var Z=0,_=0,$=0,aa=0;Z=R-32|0;R=Z;o[Z+24>>2]=0;o[Z+16>>2]=0;o[Z+20>>2]=0;a:{aa=_j(S);if(aa>>>0<4294967280){b:{c:{if(aa>>>0>=11){_=aa+16&-16;$=Hk(_);o[Z+24>>2]=_|-2147483648;o[Z+16>>2]=$;o[Z+20>>2]=aa;break c}m[Z+27|0]=aa;$=Z+16|0;if(!aa){break b}}wl($,S,aa)}m[$+aa|0]=0;o[Z+8>>2]=0;o[Z>>2]=0;o[Z+4>>2]=0;_=_j(Y);if(_>>>0>=4294967280){break a}d:{e:{if(_>>>0>=11){S=_+16&-16;$=Hk(S);o[Z+8>>2]=S|-2147483648;o[Z>>2]=$;o[Z+4>>2]=_;break e}m[Z+11|0]=_;$=Z;if(!_){break d}}wl($,Y,_)}m[_+$|0]=0;Y=o[a+4>>2];S=-1;f:{if(!Y){break f}Y=dj(Y,Z+16|0,Z);S=-1;if(!Y){break f}S=uj(a,o[Y+24>>2])}a=S;if(m[Z+11|0]<=-1){ul(o[Z>>2])}if(m[Z+27|0]<=-1){ul(o[Z+16>>2])}R=Z+32|0;return a}Kk();D()}Kk();D()}function ra(a,S,Y){var ba=0,ca=0,da=0;ba=R-16|0;R=ba;ca=o[a+96>>2];o[ba+8>>2]=0;o[ba>>2]=0;o[ba+4>>2]=0;a=Hk(12);o[ba>>2]=a;o[ba+4>>2]=a;da=a+12|0;o[ba+8>>2]=da;ca=wl(a,ca+u(S,12)|0,12)+12|0;o[ba+4>>2]=ca;S=o[Y>>2];if(S){o[Y+4>>2]=S;ul(S);o[Y+8>>2]=0;o[Y>>2]=0;o[Y+4>>2]=0}o[Y>>2]=a;o[Y+8>>2]=da;o[Y+4>>2]=ca;R=ba+16|0;return 1}function sa(a,S){var Y=0,ea=0;Y=R-96|0;R=Y;xl(Y+16|0,0,76);o[Y+92>>2]=-1;o[Y+8>>2]=0;o[Y>>2]=0;o[Y+4>>2]=0;a:{if(ta(Y+16|0,a,Y)){a=o[S>>2];if(a){o[S+4>>2]=a;ul(a);o[S+8>>2]=0;o[S>>2]=0;o[S+4>>2]=0}o[S>>2]=o[Y>>2];o[S+4>>2]=o[Y+4>>2];o[S+8>>2]=o[Y+8>>2];o[Y+8>>2]=0;o[Y>>2]=0;o[Y+4>>2]=0;ea=o[Y+84>>2];break a}a=o[Y>>2];if(!a){break a}o[Y+4>>2]=a;ul(a)}a=o[Y+72>>2];if(a){ul(a)}a=o[Y+48>>2];if(a){o[Y+52>>2]=a;ul(a)}a=o[Y+36>>2];if(a){o[Y+40>>2]=a;ul(a)}a=o[Y+24>>2];if(a){o[Y+28>>2]=a;ul(a)}a=o[Y+20>>2];o[Y+20>>2]=0;if(a){ua(Y+16|4,a)}R=Y+96|0;return ea}function ta(a,S,fa){var ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0;ja=R-16|0;R=ja;a:{if(!va(a,S)){break a}ia=1;ha=o[S+96>>2];oa=S+100|0;ga=o[oa>>2];if((ha|0)==(ga|0)){break a}pa=a+12|0;qa=a+24|0;ra=a+36|0;na=fa+8|0;la=fa+4|0;while(1){if(!(o[o[a+56>>2]+(ma>>>3&536870908)>>2]>>>(ma&31)&1)){ia=u(ma,3);Zi(a,0,ia);sa=o[pa>>2];ka=o[a+8>>2];Zi(a,1,ia+1|0);ha=o[qa>>2];ga=o[a+20>>2];Zi(a,2,ia+2|0);ia=ha-ga>>2;ha=sa-ka|0;ga=ha>>2;ka=ia>>>0>ga>>>0;ka=o[ra>>2]-o[a+32>>2]>>2>>>0>(ka?ia:ga)>>>0?2:ka?1:ha?0:-1;b:{if(o[a+68>>2]<1){break b}ga=o[a+76>>2];o[ja+12>>2]=ga;ha=o[la>>2];c:{if(ha>>>0<r[na>>2]){o[ha>>2]=ga;o[la>>2]=ha+4;break c}wa(fa,ja+12|0)}ga=ja;ia=o[((ka<<2)+a|0)+44>>2];ha=-1;d:{if((ia|0)<0){break d}ha=(ia>>>0)/3|0;ha=o[(o[o[a>>2]+96>>2]+u(ha,12)|0)+(ia-u(ha,3)<<2)>>2]}o[ga+8>>2]=ha;ga=o[la>>2];e:{if(ga>>>0<r[na>>2]){o[ga>>2]=ha;o[la>>2]=ga+4;break e}wa(fa,ja+8|0)}ga=o[a+72>>2]+2|0;o[a+72>>2]=ga;if(!(ga&1)){break b}o[ja+4>>2]=ha;ga=o[la>>2];f:{if(ga>>>0<r[na>>2]){o[ga>>2]=ha;o[la>>2]=ga+4;break f}wa(fa,ja+4|0)}o[a+72>>2]=o[a+72>>2]+1}xa(a,ka,fa);ha=o[S+96>>2];ga=o[oa>>2]}ia=1;ma=ma+1|0;if(ma>>>0<(ga-ha|0)/12>>>0){continue}break}}R=ja+16|0;return ia}function ua(a,R){if(R){a=o[R+76>>2];if(a){o[R+80>>2]=a;ul(a)}a=o[R- -64>>2];if(a){o[R+68>>2]=a;ul(a)}a=o[R+48>>2];if(a){o[R+52>>2]=a;ul(a)}a=o[R+24>>2];if(a){o[R+28>>2]=a;ul(a)}a=o[R+12>>2];if(a){o[R+16>>2]=a;ul(a)}a=o[R>>2];if(a){o[R+4>>2]=a;ul(a)}ul(R)}}function va(a,S){var fa=0,ta=0,va=0;fa=R-16|0;R=fa;o[a+68>>2]=0;o[a+72>>2]=0;o[a>>2]=S;Yi(fa+8|0,S);ta=o[fa+8>>2];o[fa+8>>2]=0;va=o[a+4>>2];o[a+4>>2]=ta;a:{if(!va){o[fa+8>>2]=0;break a}ta=a+4|0;ua(ta,va);va=o[fa+8>>2];o[fa+8>>2]=0;if(va){ua(fa+8|0,va)}ta=o[ta>>2]}if(ta){ta=o[S+100>>2];S=o[S+96>>2];m[fa+7|0]=0;$a(a+56|0,(ta-S|0)/12|0,fa+7|0);a=1}else{a=0}R=fa+16|0;return a}function wa(a,R){var S=0,ua=0,wa=0,xa=0,ya=0,za=0;a:{wa=o[a>>2];ya=o[a+4>>2]-wa|0;S=ya>>2;ua=S+1|0;if(ua>>>0<1073741824){za=S<<2;S=o[a+8>>2]-wa|0;xa=S>>1;ua=S>>2>>>0<536870911?xa>>>0<ua>>>0?ua:xa:1073741823;S=0;b:{if(!ua){break b}if(ua>>>0>=1073741824){break a}S=Hk(ua<<2)}xa=za+S|0;o[xa>>2]=o[R>>2];R=S+(ua<<2)|0;ua=xa+4|0;if((ya|0)>=1){wl(S,wa,ya)}o[a>>2]=S;o[a+8>>2]=R;o[a+4>>2]=ua;if(wa){ul(wa)}return}Yk();D()}_a(1040);D()}function xa(a,Aa,Ba){var Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0;Ea=R-16|0;R=Ea;o[a+68>>2]=o[a+68>>2]+1;Ca=u(Aa,12)+a|0;Ca=o[Ca+12>>2]-o[Ca+8>>2]|0;if((Ca|0)>=1){Ja=Ca>>2;Ca=o[((Aa<<2)+a|0)+44>>2];Ha=Ba+8|0;Fa=Ba+4|0;while(1){Aa=Ca;Ga=(Ca>>>0)/3|0;Ca=(Ca|0)==-1?-1:Ga;Da=o[a+56>>2]+(Ca>>>3&536870908)|0;o[Da>>2]=o[Da>>2]|1<<(Ca&31);o[a+72>>2]=o[a+72>>2]+1;a:{b:{if(!Ia){Ca=(Aa|0)<0?-1:o[(o[o[a>>2]+96>>2]+u(Ga,12)|0)+((Aa>>>0)%3<<2)>>2];o[Ea+12>>2]=Ca;Da=o[Fa>>2];c:{if(Da>>>0<r[Ha>>2]){o[Da>>2]=Ca;o[Fa>>2]=Da+4;break c}wa(Ba,Ea+12|0)}Ca=-1;d:{if((Aa|0)==-1){break d}Da=Aa+1|0;Da=(Da>>>0)%3|0?Da:Aa+ -2|0;if((Da|0)<0){break d}Ca=(Da>>>0)/3|0;Ca=o[(o[o[a>>2]+96>>2]+u(Ca,12)|0)+(Da-u(Ca,3)<<2)>>2]}o[Ea+12>>2]=Ca;Da=o[Fa>>2];e:{if(Da>>>0<r[Ha>>2]){o[Da>>2]=Ca;o[Fa>>2]=Da+4;break e}wa(Ba,Ea+12|0)}Da=a;Ca=-1;f:{if((Aa|0)==-1){break f}Ga=((Aa>>>0)%3|0?-1:2)+Aa|0;Ca=-1;if((Ga|0)<0){break f}Ca=(Ga>>>0)/3|0;Ca=o[(o[o[a>>2]+96>>2]+u(Ca,12)|0)+(Ga-u(Ca,3)<<2)>>2]}o[Da+76>>2]=Ca;o[Ea+12>>2]=Ca;Da=o[Fa>>2];if(Da>>>0<r[Ha>>2]){o[Da>>2]=Ca;o[Fa>>2]=Da+4;break b}wa(Ba,Ea+12|0);break b}Ca=(Aa|0)<0?-1:o[(o[o[a>>2]+96>>2]+u(Ga,12)|0)+((Aa>>>0)%3<<2)>>2];o[a+76>>2]=Ca;o[Ea+12>>2]=Ca;Da=o[Fa>>2];g:{if(Da>>>0<r[Ha>>2]){o[Da>>2]=Ca;o[Fa>>2]=Da+4;break g}wa(Ba,Ea+12|0)}if(Ia&1){Ca=-1;if((Aa|0)==-1){break a}if(Aa-u(Ga,3)){Aa=Aa+ -1|0;break b}Aa=Aa+2|0;break b}Ca=-1;if((Aa|0)==-1){break a}Ca=Aa+1|0;Aa=(Ca>>>0)%3|0?Ca:Aa+ -2|0}Ca=-1;if((Aa|0)==-1){break a}Ca=o[o[o[a+4>>2]+12>>2]+(Aa<<2)>>2]}Ia=Ia+1|0;if((Ia|0)<(Ja|0)){continue}break}}R=Ea+16|0}function ya(a,R,Aa){var Ba=0,Ka=0,La=0;a:{if(r[a+80>>2]>65535){break a}Ka=o[a+96>>2];a=o[a+100>>2]-Ka|0;La=(a|0)/12|0;if((u(La,6)|0)!=(R|0)){break a}if(!a){return 1}a=0;while(1){R=u(a,6)+Aa|0;Ba=u(a,12)+Ka|0;n[R>>1]=o[Ba>>2];n[R+2>>1]=o[Ba+4>>2];n[R+4>>1]=o[Ba+8>>2];Ba=1;a=a+1|0;if(a>>>0<La>>>0){continue}break}}return Ba}function za(a,R,Aa){var Ma=0,Na=0,Oa=0;Na=o[a+96>>2];a=o[a+100>>2]-Na|0;Oa=(a|0)/12|0;if((a|0)==(R|0)){if(!R){return 1}a=0;while(1){Ma=u(a,12);R=Ma+Aa|0;Ma=Ma+Na|0;o[R>>2]=o[Ma>>2];o[R+4>>2]=o[Ma+4>>2];o[R+8>>2]=o[Ma+8>>2];Ma=1;a=a+1|0;if(a>>>0<Oa>>>0){continue}break}}return Ma}function Aa(a,Aa,Pa){var Qa=0,Ra=0,Sa=0,Ta=0;Qa=R-32|0;R=Qa;Ra=m[a+24|0];Ta=o[259];o[Qa+24>>2]=o[258];o[Qa+28>>2]=Ta;Ta=o[257];o[Qa+16>>2]=o[256];o[Qa+20>>2]=Ta;a:{if(Ba(a,Aa,Ra,Qa+16|0)){a=0;o[Qa+8>>2]=0;o[Qa>>2]=0;o[Qa+4>>2]=0;Aa=0;if(Ra){if((Ra|0)<=-1){break a}Aa=Ra<<2;Sa=Hk(Aa);o[Qa>>2]=Sa;a=(Ra<<2)+Sa|0;o[Qa+8>>2]=a;wl(Sa,Qa+16|0,Aa);o[Qa+4>>2]=a;Aa=a}Ra=o[Pa>>2];if(Ra){o[Pa+4>>2]=Ra;ul(Ra);o[Pa+8>>2]=0;o[Pa>>2]=0;o[Pa+4>>2]=0;Aa=o[Qa+4>>2];Sa=o[Qa>>2];a=o[Qa+8>>2]}o[Pa>>2]=Sa;o[Pa+8>>2]=a;o[Pa+4>>2]=Aa;Sa=1}R=Qa+32|0;return Sa}Yk();D()}function Ba(a,R,Aa,Pa){var Ua=0,Va=0,Wa=v(0),Xa=0,Ya=0;a:{b:{if(!Pa){break b}Ua=o[a+28>>2]+ -1|0;if(Ua>>>0>10){break b}c:{switch(Ua-1|0){default:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;Xa=p[a+32|0];while(1){Wa=v(m[R|0]);s[(Va<<2)+Pa>>2]=Xa?v(Wa/v(127)):Wa;R=R+1|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 0:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;Xa=p[a+32|0];while(1){Wa=v(p[R|0]);s[(Va<<2)+Pa>>2]=Xa?v(Wa/v(255)):Wa;R=R+1|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 1:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;Xa=p[a+32|0];while(1){Wa=v(n[R>>1]);s[(Va<<2)+Pa>>2]=Xa?v(Wa/v(32767)):Wa;R=R+2|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 2:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;Xa=p[a+32|0];while(1){Wa=v(q[R>>1]);s[(Va<<2)+Pa>>2]=Xa?v(Wa/v(65535)):Wa;R=R+2|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 3:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;Xa=p[a+32|0];while(1){Wa=v(o[R>>2]);s[(Va<<2)+Pa>>2]=Xa?v(Wa*v(4.656612873077393e-10)):Wa;R=R+4|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 4:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;Xa=p[a+32|0];while(1){Wa=v(r[R>>2]);s[(Va<<2)+Pa>>2]=Xa?v(Wa*v(2.3283064365386963e-10)):Wa;R=R+4|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 5:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;Xa=p[a+32|0];while(1){Wa=v(+r[R>>2]+4294967296*+o[R+4>>2]);s[(Va<<2)+Pa>>2]=Xa?v(Wa*v(1.0842021724855044e-19)):Wa;R=R+8|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 6:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;Xa=p[a+32|0];while(1){Wa=v(+r[R>>2]+4294967296*+r[R+4>>2]);s[(Va<<2)+Pa>>2]=Xa?v(Wa*v(5.421010862427522e-20)):Wa;R=R+8|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 7:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;while(1){o[(Va<<2)+Pa>>2]=o[R>>2];R=R+4|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 8:Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;while(1){s[(Va<<2)+Pa>>2]=t[R>>3];R=R+8|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}break a;case 9:break c}}Ya=1;Ua=m[a+24|0];if(((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24>=1){Ua=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Ua+R|0;while(1){s[(Va<<2)+Pa>>2]=p[R|0]?v(1):v(0);R=R+1|0;Va=Va+1|0;Ua=m[a+24|0];if((Va|0)<((Ua|0)>(Aa|0)?Aa:Ua)<<24>>24){continue}break}}if((Ua|0)>=(Aa|0)){break b}xl((Ua<<2)+Pa|0,0,Aa-Ua<<2)}return Ya}xl((Ua<<2)+Pa|0,0,Aa-Ua<<2);return 1}function Ca(a,Aa,Pa){var Za=0,_a=0,$a=0,ab=0,bb=0,cb=0,db=0,eb=0;Za=R-16|0;R=Za;bb=o[a+80>>2];cb=m[Aa+24|0];a=o[259];o[Za+8>>2]=o[258];o[Za+12>>2]=a;a=o[257];o[Za>>2]=o[256];o[Za+4>>2]=a;a=u(bb,cb);$a=o[Pa>>2];_a=o[Pa+4>>2]-$a>>2;a:{if(a>>>0>_a>>>0){Da(Pa,a-_a|0);break a}if(a>>>0>=_a>>>0){break a}o[Pa+4>>2]=$a+(a<<2)}b:{if(!bb){a=1;break b}$a=0;db=Aa+68|0;eb=(cb|0)<1;while(1){a=ab;_a=Aa;if(!p[_a+84|0]){a=o[o[db>>2]+(ab<<2)>>2]}if(!Ba(_a,a,m[Aa+24|0],Za)){a=0;break b}if(!eb){_a=o[Pa>>2];a=0;while(1){o[_a+($a<<2)>>2]=o[(a<<2)+Za>>2];$a=$a+1|0;a=a+1|0;if((cb|0)!=(a|0)){continue}break}}a=1;ab=ab+1|0;if((bb|0)!=(ab|0)){continue}break}}R=Za+16|0;return a}function Da(a,R){var Aa=0,Pa=0,fb=0,gb=0,hb=0,ib=0,jb=0,kb=0,lb=0;Pa=o[a+8>>2];fb=a+4|0;Aa=o[fb>>2];if(Pa-Aa>>2>>>0>=R>>>0){a=R<<2;kb=fb,lb=xl(Aa,0,a)+a|0,o[kb>>2]=lb;return}a:{fb=o[a>>2];hb=Aa-fb|0;Aa=hb>>2;gb=Aa+R|0;if(gb>>>0<1073741824){jb=Aa<<2;Pa=Pa-fb|0;Aa=Pa>>1;Pa=Pa>>2>>>0<536870911?Aa>>>0<gb>>>0?gb:Aa:1073741823;Aa=0;b:{if(!Pa){break b}if(Pa>>>0>=1073741824){break a}ib=Hk(Pa<<2);Aa=ib}xl(jb+Aa|0,0,R<<2);R=Aa+(gb<<2)|0;gb=Aa+(Pa<<2)|0;if((hb|0)>=1){wl(ib,fb,hb)}o[a>>2]=Aa;o[a+8>>2]=gb;o[a+4>>2]=R;if(fb){ul(fb)}return}Yk();D()}_a(1040);D()}function Ea(a,mb,nb){var ob=0,pb=0,qb=0,rb=0,sb=0,tb=0,ub=0,vb=0;pb=R-16|0;R=pb;sb=o[a+80>>2];rb=m[mb+24|0];qb=u(sb,rb);a:{a=o[mb+28>>2];b:{if(!(!p[mb+84|0]|((a|0)!=2?(a|0)!=1:0))){rb=o[mb+48>>2];mb=o[o[mb>>2]>>2];o[pb+8>>2]=0;o[pb>>2]=0;o[pb+4>>2]=0;a=0;if(qb){if((qb|0)<=-1){break a}a=Hk(qb);o[pb>>2]=a;ob=a+qb|0;o[pb+8>>2]=ob;wl(a,mb+rb|0,qb);o[pb+4>>2]=ob}mb=o[nb>>2];if(mb){o[nb+4>>2]=mb;ul(mb);o[nb+8>>2]=0;o[nb>>2]=0;o[nb+4>>2]=0}o[nb>>2]=a;o[nb+8>>2]=ob;o[nb+4>>2]=ob;ob=1;break b}o[pb+8>>2]=0;o[pb>>2]=0;o[pb+4>>2]=0;if(rb){if((rb|0)<=-1){break a}ob=Hk(rb);o[pb>>2]=ob;o[pb+4>>2]=ob;o[pb+8>>2]=ob+rb;a=rb;while(1){m[ob|0]=0;ob=o[pb+4>>2]+1|0;o[pb+4>>2]=ob;a=a+ -1|0;if(a){continue}break}}ob=o[nb>>2];a=o[nb+4>>2]-ob|0;c:{if(qb>>>0>a>>>0){Fa(nb,qb-a|0);break c}if(qb>>>0>=a>>>0){break c}o[nb+4>>2]=ob+qb}d:{if(!sb){ob=1;break d}a=0;tb=mb+68|0;ub=(rb|0)<1;qb=0;while(1){ob=qb;vb=mb;if(!p[mb+84|0]){ob=o[o[tb>>2]+(qb<<2)>>2]}if(!Ga(vb,ob,m[mb+24|0],o[pb>>2])){ob=0;break d}ob=0;if(!ub){while(1){m[o[nb>>2]+a|0]=p[o[pb>>2]+ob|0];a=a+1|0;ob=ob+1|0;if((rb|0)!=(ob|0)){continue}break}}ob=1;qb=qb+1|0;if((sb|0)!=(qb|0)){continue}break}}a=o[pb>>2];if(!a){break b}o[pb+4>>2]=a;ul(a)}R=pb+16|0;return ob}Yk();D()}function Fa(a,R){var mb=0,nb=0,wb=0,xb=0,yb=0,zb=0;a:{nb=o[a+8>>2];wb=a+4|0;mb=o[wb>>2];b:{if(nb-mb>>>0>=R>>>0){while(1){m[mb|0]=0;mb=o[wb>>2]+1|0;o[wb>>2]=mb;R=R+ -1|0;if(R){continue}break b}}xb=o[a>>2];yb=mb-xb|0;mb=yb+R|0;if((mb|0)<=-1){break a}wb=0;nb=nb-xb|0;zb=nb<<1;nb=nb>>>0<1073741823?zb>>>0<mb>>>0?mb:zb:2147483647;if(nb){wb=Hk(nb)}mb=wb+yb|0;xl(mb,0,R);nb=nb+wb|0;while(1){mb=mb+1|0;R=R+ -1|0;if(R){continue}break}if((yb|0)>=1){wl(wb,xb,yb)}o[a>>2]=wb;o[a+8>>2]=nb;o[a+4>>2]=mb;if(!xb){break b}ul(xb)}return}Yk();D()}function Ga(a,R,Ab,Bb){var Cb=0,Db=0,Eb=0,Fb=0,Gb=v(0),Hb=0;a:{b:{if(!Bb){break b}Cb=o[a+28>>2]+ -1|0;if(Cb>>>0>10){break b}c:{d:{e:{switch(Cb-1|0){default:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=p[R|0];R=R+1|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}break a;case 0:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=p[R|0];R=R+1|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}break a;case 1:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=p[R|0];R=R+2|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}break a;case 2:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=p[R|0];R=R+2|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}break a;case 3:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=o[R>>2];R=R+4|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}break a;case 4:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=o[R>>2];R=R+4|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}break a;case 5:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=o[R>>2];R=R+8|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}break a;case 6:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=o[R>>2];R=R+8|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}break a;case 7:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24<1){break c}Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){Cb=Bb+Db|0;Gb=s[R>>2];f:{if(v(w(Gb))<v(2147483648)){Fb=~~Gb;break f}Fb=-2147483648}m[Cb|0]=Fb;R=R+4|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}break c;case 8:Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24<1){break d}Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){Cb=Bb+Db|0;Hb=t[R>>3];g:{if(w(Hb)<2147483648){Fb=~~Hb;break g}Fb=-2147483648}m[Cb|0]=Fb;R=R+8|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}break d;case 9:break e}}Eb=1;Cb=m[a+24|0];if(((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24>=1){Cb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Cb+R|0;while(1){m[Bb+Db|0]=p[R|0];R=R+1|0;Db=Db+1|0;Cb=m[a+24|0];if((Db|0)<((Cb|0)>(Ab|0)?Ab:Cb)<<24>>24){continue}break}}if((Cb|0)>=(Ab|0)){break b}xl(Bb+Cb|0,0,Ab-Cb|0);break b}if((Cb|0)>=(Ab|0)){break b}break a}if((Cb|0)>=(Ab|0)){break b}break a}return Eb}xl(Bb+Cb|0,0,Ab-Cb|0);return 1}function Ha(a,Ab,Bb){var Ib=0,Jb=0,Kb=0,Lb=0,Mb=0,Nb=0,Ob=0,Pb=0;Jb=R-16|0;R=Jb;Mb=o[a+80>>2];Lb=m[Ab+24|0];Kb=u(Mb,Lb);a:{a=o[Ab+28>>2];b:{if(!(!p[Ab+84|0]|((a|0)!=2?(a|0)!=1:0))){Lb=o[Ab+48>>2];Ab=o[o[Ab>>2]>>2];o[Jb+8>>2]=0;o[Jb>>2]=0;o[Jb+4>>2]=0;a=0;if(Kb){if((Kb|0)<=-1){break a}a=Hk(Kb);o[Jb>>2]=a;Ib=a+Kb|0;o[Jb+8>>2]=Ib;wl(a,Ab+Lb|0,Kb);o[Jb+4>>2]=Ib}Ab=o[Bb>>2];if(Ab){o[Bb+4>>2]=Ab;ul(Ab);o[Bb+8>>2]=0;o[Bb>>2]=0;o[Bb+4>>2]=0}o[Bb>>2]=a;o[Bb+8>>2]=Ib;o[Bb+4>>2]=Ib;Ib=1;break b}o[Jb+8>>2]=0;o[Jb>>2]=0;o[Jb+4>>2]=0;if(Lb){if((Lb|0)<=-1){break a}Ib=Hk(Lb);o[Jb>>2]=Ib;o[Jb+4>>2]=Ib;o[Jb+8>>2]=Ib+Lb;a=Lb;while(1){m[Ib|0]=0;Ib=o[Jb+4>>2]+1|0;o[Jb+4>>2]=Ib;a=a+ -1|0;if(a){continue}break}}Ib=o[Bb>>2];a=o[Bb+4>>2]-Ib|0;c:{if(Kb>>>0>a>>>0){Fa(Bb,Kb-a|0);break c}if(Kb>>>0>=a>>>0){break c}o[Bb+4>>2]=Ib+Kb}d:{if(!Mb){Ib=1;break d}a=0;Nb=Ab+68|0;Ob=(Lb|0)<1;Kb=0;while(1){Ib=Kb;Pb=Ab;if(!p[Ab+84|0]){Ib=o[o[Nb>>2]+(Kb<<2)>>2]}if(!Ia(Pb,Ib,m[Ab+24|0],o[Jb>>2])){Ib=0;break d}Ib=0;if(!Ob){while(1){m[o[Bb>>2]+a|0]=p[o[Jb>>2]+Ib|0];a=a+1|0;Ib=Ib+1|0;if((Lb|0)!=(Ib|0)){continue}break}}Ib=1;Kb=Kb+1|0;if((Mb|0)!=(Kb|0)){continue}break}}a=o[Jb>>2];if(!a){break b}o[Jb+4>>2]=a;ul(a)}R=Jb+16|0;return Ib}Yk();D()}function Ia(a,R,Ab,Bb){var Qb=0,Rb=0,Sb=0,Tb=0,Ub=v(0),Vb=0;a:{b:{if(!Bb){break b}Qb=o[a+28>>2]+ -1|0;if(Qb>>>0>10){break b}c:{d:{e:{switch(Qb-1|0){default:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=p[R|0];R=R+1|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}break a;case 0:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=p[R|0];R=R+1|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}break a;case 1:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=p[R|0];R=R+2|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}break a;case 2:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=p[R|0];R=R+2|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}break a;case 3:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=o[R>>2];R=R+4|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}break a;case 4:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=o[R>>2];R=R+4|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}break a;case 5:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=o[R>>2];R=R+8|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}break a;case 6:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=o[R>>2];R=R+8|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}break a;case 7:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24<1){break c}Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){Qb=Bb+Rb|0;Ub=s[R>>2];f:{if(Ub<v(4294967296)&Ub>=v(0)){Tb=~~Ub>>>0;break f}Tb=0}m[Qb|0]=Tb;R=R+4|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}break c;case 8:Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24<1){break d}Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){Qb=Bb+Rb|0;Vb=t[R>>3];g:{if(Vb<4294967296&Vb>=0){Tb=~~Vb>>>0;break g}Tb=0}m[Qb|0]=Tb;R=R+8|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}break d;case 9:break e}}Sb=1;Qb=m[a+24|0];if(((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24>=1){Qb=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qb+R|0;while(1){m[Bb+Rb|0]=p[R|0];R=R+1|0;Rb=Rb+1|0;Qb=m[a+24|0];if((Rb|0)<((Qb|0)>(Ab|0)?Ab:Qb)<<24>>24){continue}break}}if((Qb|0)>=(Ab|0)){break b}xl(Bb+Qb|0,0,Ab-Qb|0);break b}if((Qb|0)>=(Ab|0)){break b}break a}if((Qb|0)>=(Ab|0)){break b}break a}return Sb}xl(Bb+Qb|0,0,Ab-Qb|0);return 1}function Ja(a,Ab,Bb){var Wb=0,Xb=0,Yb=0,Zb=0,_b=0,$b=0,ac=0,bc=0,cc=0;Wb=R-16|0;R=Wb;ac=o[a+80>>2];_b=m[Ab+24|0];a=u(ac,_b);a:{Xb=o[Ab+28>>2];b:{if(!(!p[Ab+84|0]|((Xb|0)!=4?(Xb|0)!=3:0))){$b=o[Ab+48>>2];Xb=o[o[Ab>>2]>>2];o[Wb+8>>2]=0;o[Wb>>2]=0;o[Wb+4>>2]=0;Ab=0;a=a<<1;if(a){if((a|0)<=-1){break a}Yb=Hk(a);o[Wb>>2]=Yb;Zb=(a>>1<<1)+Yb|0;o[Wb+8>>2]=Zb;Ab=wl(Yb,Xb+$b|0,a)+a|0;o[Wb+4>>2]=Ab}a=o[Bb>>2];if(a){o[Bb+4>>2]=a;ul(a);o[Bb+8>>2]=0;o[Bb>>2]=0;o[Bb+4>>2]=0}o[Bb>>2]=Yb;o[Bb+8>>2]=Zb;o[Bb+4>>2]=Ab;a=1;break b}o[Wb+8>>2]=0;o[Wb>>2]=0;o[Wb+4>>2]=0;if(_b){if((_b|0)<=-1){break a}Xb=_b<<1;Yb=Hk(Xb);o[Wb>>2]=Yb;Zb=Xb+Yb|0;o[Wb+8>>2]=Zb;xl(Yb,0,Xb);o[Wb+4>>2]=Zb}Yb=o[Bb>>2];Xb=o[Bb+4>>2]-Yb>>1;c:{if(a>>>0>Xb>>>0){Ka(Bb,a-Xb|0);break c}if(a>>>0>=Xb>>>0){break c}o[Bb+4>>2]=Yb+(a<<1)}d:{if(!ac){a=1;break d}Yb=0;Zb=Ab+68|0;bc=(_b|0)<1;while(1){a=$b;Xb=Ab;if(!p[Ab+84|0]){a=o[o[Zb>>2]+($b<<2)>>2]}if(!La(Xb,a,m[Ab+24|0],o[Wb>>2])){a=0;break d}if(!bc){Xb=o[Bb>>2];a=0;cc=o[Wb>>2];while(1){n[Xb+(Yb<<1)>>1]=q[cc+(a<<1)>>1];Yb=Yb+1|0;a=a+1|0;if((_b|0)!=(a|0)){continue}break}}a=1;$b=$b+1|0;if((ac|0)!=($b|0)){continue}break}}Ab=o[Wb>>2];if(!Ab){break b}o[Wb+4>>2]=Ab;ul(Ab)}R=Wb+16|0;return a}Yk();D()}function Ka(a,R){var Ab=0,Bb=0,dc=0,ec=0,fc=0,gc=0,hc=0,ic=0,jc=0;Bb=o[a+8>>2];dc=a+4|0;Ab=o[dc>>2];if(Bb-Ab>>1>>>0>=R>>>0){a=R<<1;ic=dc,jc=xl(Ab,0,a)+a|0,o[ic>>2]=jc;return}a:{dc=o[a>>2];fc=Ab-dc|0;Ab=fc>>1;ec=Ab+R|0;if((ec|0)>-1){hc=Ab<<1;Bb=Bb-dc|0;Bb=Bb>>1>>>0<1073741823?Bb>>>0<ec>>>0?ec:Bb:2147483647;Ab=0;b:{if(!Bb){break b}if((Bb|0)<=-1){break a}gc=Hk(Bb<<1);Ab=gc}xl(hc+Ab|0,0,R<<1);R=Ab+(ec<<1)|0;ec=Ab+(Bb<<1)|0;if((fc|0)>=1){wl(gc,dc,fc)}o[a>>2]=Ab;o[a+8>>2]=ec;o[a+4>>2]=R;if(dc){ul(dc)}return}Yk();D()}_a(1040);D()}function La(a,R,kc,lc){var mc=0,nc=0,oc=0,pc=0,qc=v(0),rc=0;a:{b:{if(!lc){break b}mc=o[a+28>>2]+ -1|0;if(mc>>>0>10){break b}c:{d:{e:{switch(mc-1|0){default:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=m[R|0];R=R+1|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}break a;case 0:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=p[R|0];R=R+1|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}break a;case 1:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=q[R>>1];R=R+2|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}break a;case 2:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=q[R>>1];R=R+2|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}break a;case 3:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=o[R>>2];R=R+4|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}break a;case 4:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=o[R>>2];R=R+4|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}break a;case 5:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=o[R>>2];R=R+8|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}break a;case 6:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=o[R>>2];R=R+8|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}break a;case 7:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24<1){break c}mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){mc=(nc<<1)+lc|0;qc=s[R>>2];f:{if(v(w(qc))<v(2147483648)){pc=~~qc;break f}pc=-2147483648}n[mc>>1]=pc;R=R+4|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}break c;case 8:oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24<1){break d}mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){mc=(nc<<1)+lc|0;rc=t[R>>3];g:{if(w(rc)<2147483648){pc=~~rc;break g}pc=-2147483648}n[mc>>1]=pc;R=R+8|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}break d;case 9:break e}}oc=1;mc=m[a+24|0];if(((mc|0)>(kc|0)?kc:mc)<<24>>24>=1){mc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=mc+R|0;while(1){n[(nc<<1)+lc>>1]=p[R|0];R=R+1|0;nc=nc+1|0;mc=m[a+24|0];if((nc|0)<((mc|0)>(kc|0)?kc:mc)<<24>>24){continue}break}}if((mc|0)>=(kc|0)){break b}xl((mc<<1)+lc|0,0,kc-mc<<1);break b}if((mc|0)>=(kc|0)){break b}break a}if((mc|0)>=(kc|0)){break b}break a}return oc}xl((mc<<1)+lc|0,0,kc-mc<<1);return 1}function Ma(a,kc,lc){var sc=0,tc=0,uc=0,vc=0,wc=0,xc=0,yc=0,zc=0,Ac=0;sc=R-16|0;R=sc;yc=o[a+80>>2];wc=m[kc+24|0];a=u(yc,wc);a:{tc=o[kc+28>>2];b:{if(!(!p[kc+84|0]|((tc|0)!=4?(tc|0)!=3:0))){xc=o[kc+48>>2];tc=o[o[kc>>2]>>2];o[sc+8>>2]=0;o[sc>>2]=0;o[sc+4>>2]=0;kc=0;a=a<<1;if(a){if((a|0)<=-1){break a}uc=Hk(a);o[sc>>2]=uc;vc=(a>>1<<1)+uc|0;o[sc+8>>2]=vc;kc=wl(uc,tc+xc|0,a)+a|0;o[sc+4>>2]=kc}a=o[lc>>2];if(a){o[lc+4>>2]=a;ul(a);o[lc+8>>2]=0;o[lc>>2]=0;o[lc+4>>2]=0}o[lc>>2]=uc;o[lc+8>>2]=vc;o[lc+4>>2]=kc;a=1;break b}o[sc+8>>2]=0;o[sc>>2]=0;o[sc+4>>2]=0;if(wc){if((wc|0)<=-1){break a}tc=wc<<1;uc=Hk(tc);o[sc>>2]=uc;vc=tc+uc|0;o[sc+8>>2]=vc;xl(uc,0,tc);o[sc+4>>2]=vc}uc=o[lc>>2];tc=o[lc+4>>2]-uc>>1;c:{if(a>>>0>tc>>>0){Ka(lc,a-tc|0);break c}if(a>>>0>=tc>>>0){break c}o[lc+4>>2]=uc+(a<<1)}d:{if(!yc){a=1;break d}uc=0;vc=kc+68|0;zc=(wc|0)<1;while(1){a=xc;tc=kc;if(!p[kc+84|0]){a=o[o[vc>>2]+(xc<<2)>>2]}if(!Na(tc,a,m[kc+24|0],o[sc>>2])){a=0;break d}if(!zc){tc=o[lc>>2];a=0;Ac=o[sc>>2];while(1){n[tc+(uc<<1)>>1]=q[Ac+(a<<1)>>1];uc=uc+1|0;a=a+1|0;if((wc|0)!=(a|0)){continue}break}}a=1;xc=xc+1|0;if((yc|0)!=(xc|0)){continue}break}}kc=o[sc>>2];if(!kc){break b}o[sc+4>>2]=kc;ul(kc)}R=sc+16|0;return a}Yk();D()}function Na(a,R,kc,lc){var Bc=0,Cc=0,Dc=0,Ec=0,Fc=v(0),Gc=0;a:{b:{if(!lc){break b}Bc=o[a+28>>2]+ -1|0;if(Bc>>>0>10){break b}c:{d:{e:{switch(Bc-1|0){default:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=m[R|0];R=R+1|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}break a;case 0:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=p[R|0];R=R+1|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}break a;case 1:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=q[R>>1];R=R+2|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}break a;case 2:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=q[R>>1];R=R+2|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}break a;case 3:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=o[R>>2];R=R+4|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}break a;case 4:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=o[R>>2];R=R+4|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}break a;case 5:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=o[R>>2];R=R+8|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}break a;case 6:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=o[R>>2];R=R+8|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}break a;case 7:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24<1){break c}Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){Bc=(Cc<<1)+lc|0;Fc=s[R>>2];f:{if(Fc<v(4294967296)&Fc>=v(0)){Ec=~~Fc>>>0;break f}Ec=0}n[Bc>>1]=Ec;R=R+4|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}break c;case 8:Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24<1){break d}Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){Bc=(Cc<<1)+lc|0;Gc=t[R>>3];g:{if(Gc<4294967296&Gc>=0){Ec=~~Gc>>>0;break g}Ec=0}n[Bc>>1]=Ec;R=R+8|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}break d;case 9:break e}}Dc=1;Bc=m[a+24|0];if(((Bc|0)>(kc|0)?kc:Bc)<<24>>24>=1){Bc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Bc+R|0;while(1){n[(Cc<<1)+lc>>1]=p[R|0];R=R+1|0;Cc=Cc+1|0;Bc=m[a+24|0];if((Cc|0)<((Bc|0)>(kc|0)?kc:Bc)<<24>>24){continue}break}}if((Bc|0)>=(kc|0)){break b}xl((Bc<<1)+lc|0,0,kc-Bc<<1);break b}if((Bc|0)>=(kc|0)){break b}break a}if((Bc|0)>=(kc|0)){break b}break a}return Dc}xl((Bc<<1)+lc|0,0,kc-Bc<<1);return 1}function Oa(a,kc,lc){var Hc=0,Ic=0,Jc=0,Kc=0,Lc=0,Mc=0,Nc=0,Oc=0,Pc=0;Hc=R-16|0;R=Hc;Nc=o[a+80>>2];Kc=m[kc+24|0];Jc=u(Nc,Kc);a:{a=o[kc+28>>2];b:{if(!(!p[kc+84|0]|((a|0)!=6?(a|0)!=5:0))){Mc=o[kc+48>>2];Kc=o[o[kc>>2]>>2];o[Hc+8>>2]=0;o[Hc>>2]=0;o[Hc+4>>2]=0;a=0;kc=Jc<<2;c:{if(!kc){break c}a=kc>>2;if(a>>>0>=1073741824){break a}Ic=Hk(kc);o[Hc>>2]=Ic;o[Hc+4>>2]=Ic;Lc=(a<<2)+Ic|0;o[Hc+8>>2]=Lc;if((kc|0)<1){a=Ic;break c}a=wl(Ic,Kc+Mc|0,kc)+kc|0;o[Hc+4>>2]=a}kc=o[lc>>2];if(kc){o[lc+4>>2]=kc;ul(kc);o[lc+8>>2]=0;o[lc>>2]=0;o[lc+4>>2]=0}o[lc>>2]=Ic;o[lc+8>>2]=Lc;o[lc+4>>2]=a;a=1;break b}o[Hc+8>>2]=0;o[Hc>>2]=0;o[Hc+4>>2]=0;if(Kc){if((Kc|0)<=-1){break a}a=Kc<<2;Ic=Hk(a);o[Hc>>2]=Ic;Lc=a+Ic|0;o[Hc+8>>2]=Lc;xl(Ic,0,a);o[Hc+4>>2]=Lc}Ic=o[lc>>2];a=o[lc+4>>2]-Ic>>2;d:{if(Jc>>>0>a>>>0){Da(lc,Jc-a|0);break d}if(Jc>>>0>=a>>>0){break d}o[lc+4>>2]=Ic+(Jc<<2)}e:{if(!Nc){a=1;break e}Ic=0;Lc=kc+68|0;Oc=(Kc|0)<1;while(1){a=Mc;Jc=kc;if(!p[kc+84|0]){a=o[o[Lc>>2]+(Mc<<2)>>2]}if(!Pa(Jc,a,m[kc+24|0],o[Hc>>2])){a=0;break e}if(!Oc){Jc=o[lc>>2];a=0;Pc=o[Hc>>2];while(1){o[Jc+(Ic<<2)>>2]=o[Pc+(a<<2)>>2];Ic=Ic+1|0;a=a+1|0;if((Kc|0)!=(a|0)){continue}break}}a=1;Mc=Mc+1|0;if((Nc|0)!=(Mc|0)){continue}break}}kc=o[Hc>>2];if(!kc){break b}o[Hc+4>>2]=kc;ul(kc)}R=Hc+16|0;return a}Yk();D()}function Pa(a,R,kc,lc){var Qc=0,Rc=0,Sc=0,Tc=0,Uc=v(0),Vc=0;a:{b:{if(!lc){break b}Qc=o[a+28>>2]+ -1|0;if(Qc>>>0>10){break b}c:{d:{e:{switch(Qc-1|0){default:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=m[R|0];R=R+1|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}break a;case 0:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=p[R|0];R=R+1|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}break a;case 1:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=n[R>>1];R=R+2|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}break a;case 2:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=q[R>>1];R=R+2|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}break a;case 3:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=o[R>>2];R=R+4|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}break a;case 4:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=o[R>>2];R=R+4|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}break a;case 5:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=o[R>>2];R=R+8|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}break a;case 6:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=o[R>>2];R=R+8|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}break a;case 7:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24<1){break c}Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){Qc=(Rc<<2)+lc|0;Uc=s[R>>2];f:{if(v(w(Uc))<v(2147483648)){Tc=~~Uc;break f}Tc=-2147483648}o[Qc>>2]=Tc;R=R+4|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}break c;case 8:Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24<1){break d}Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){Qc=(Rc<<2)+lc|0;Vc=t[R>>3];g:{if(w(Vc)<2147483648){Tc=~~Vc;break g}Tc=-2147483648}o[Qc>>2]=Tc;R=R+8|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}break d;case 9:break e}}Sc=1;Qc=m[a+24|0];if(((Qc|0)>(kc|0)?kc:Qc)<<24>>24>=1){Qc=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=Qc+R|0;while(1){o[(Rc<<2)+lc>>2]=p[R|0];R=R+1|0;Rc=Rc+1|0;Qc=m[a+24|0];if((Rc|0)<((Qc|0)>(kc|0)?kc:Qc)<<24>>24){continue}break}}if((Qc|0)>=(kc|0)){break b}xl((Qc<<2)+lc|0,0,kc-Qc<<2);break b}if((Qc|0)>=(kc|0)){break b}break a}if((Qc|0)>=(kc|0)){break b}break a}return Sc}xl((Qc<<2)+lc|0,0,kc-Qc<<2);return 1}function Qa(a,kc,lc){var Wc=0,Xc=0,Yc=0,Zc=0,_c=0,$c=0,ad=0,bd=0,cd=0;Wc=R-16|0;R=Wc;ad=o[a+80>>2];Zc=m[kc+24|0];Yc=u(ad,Zc);a:{a=o[kc+28>>2];b:{if(!(!p[kc+84|0]|((a|0)!=6?(a|0)!=5:0))){$c=o[kc+48>>2];Zc=o[o[kc>>2]>>2];o[Wc+8>>2]=0;o[Wc>>2]=0;o[Wc+4>>2]=0;a=0;kc=Yc<<2;c:{if(!kc){break c}a=kc>>2;if(a>>>0>=1073741824){break a}Xc=Hk(kc);o[Wc>>2]=Xc;o[Wc+4>>2]=Xc;_c=(a<<2)+Xc|0;o[Wc+8>>2]=_c;if((kc|0)<1){a=Xc;break c}a=wl(Xc,Zc+$c|0,kc)+kc|0;o[Wc+4>>2]=a}kc=o[lc>>2];if(kc){o[lc+4>>2]=kc;ul(kc);o[lc+8>>2]=0;o[lc>>2]=0;o[lc+4>>2]=0}o[lc>>2]=Xc;o[lc+8>>2]=_c;o[lc+4>>2]=a;a=1;break b}o[Wc+8>>2]=0;o[Wc>>2]=0;o[Wc+4>>2]=0;if(Zc){if((Zc|0)<=-1){break a}a=Zc<<2;Xc=Hk(a);o[Wc>>2]=Xc;_c=a+Xc|0;o[Wc+8>>2]=_c;xl(Xc,0,a);o[Wc+4>>2]=_c}Xc=o[lc>>2];a=o[lc+4>>2]-Xc>>2;d:{if(Yc>>>0>a>>>0){Da(lc,Yc-a|0);break d}if(Yc>>>0>=a>>>0){break d}o[lc+4>>2]=Xc+(Yc<<2)}e:{if(!ad){a=1;break e}Xc=0;_c=kc+68|0;bd=(Zc|0)<1;while(1){a=$c;Yc=kc;if(!p[kc+84|0]){a=o[o[_c>>2]+($c<<2)>>2]}if(!Ra(Yc,a,m[kc+24|0],o[Wc>>2])){a=0;break e}if(!bd){Yc=o[lc>>2];a=0;cd=o[Wc>>2];while(1){o[Yc+(Xc<<2)>>2]=o[cd+(a<<2)>>2];Xc=Xc+1|0;a=a+1|0;if((Zc|0)!=(a|0)){continue}break}}a=1;$c=$c+1|0;if((ad|0)!=($c|0)){continue}break}}kc=o[Wc>>2];if(!kc){break b}o[Wc+4>>2]=kc;ul(kc)}R=Wc+16|0;return a}Yk();D()}function Ra(a,R,kc,lc){var dd=0,ed=0,fd=0,gd=0,hd=v(0),id=0;a:{b:{if(!lc){break b}dd=o[a+28>>2]+ -1|0;if(dd>>>0>10){break b}c:{d:{e:{switch(dd-1|0){default:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=m[R|0];R=R+1|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}break a;case 0:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=p[R|0];R=R+1|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}break a;case 1:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=n[R>>1];R=R+2|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}break a;case 2:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=q[R>>1];R=R+2|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}break a;case 3:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=o[R>>2];R=R+4|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}break a;case 4:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=o[R>>2];R=R+4|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}break a;case 5:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=o[R>>2];R=R+8|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}break a;case 6:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=o[R>>2];R=R+8|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}break a;case 7:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24<1){break c}dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){dd=(ed<<2)+lc|0;hd=s[R>>2];f:{if(hd<v(4294967296)&hd>=v(0)){gd=~~hd>>>0;break f}gd=0}o[dd>>2]=gd;R=R+4|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}break c;case 8:fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24<1){break d}dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){dd=(ed<<2)+lc|0;id=t[R>>3];g:{if(id<4294967296&id>=0){gd=~~id>>>0;break g}gd=0}o[dd>>2]=gd;R=R+8|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}break d;case 9:break e}}fd=1;dd=m[a+24|0];if(((dd|0)>(kc|0)?kc:dd)<<24>>24>=1){dd=o[o[a>>2]>>2];R=o[a+48>>2]+Vl(o[a+40>>2],o[a+44>>2],R,0)|0;R=dd+R|0;while(1){o[(ed<<2)+lc>>2]=p[R|0];R=R+1|0;ed=ed+1|0;dd=m[a+24|0];if((ed|0)<((dd|0)>(kc|0)?kc:dd)<<24>>24){continue}break}}if((dd|0)>=(kc|0)){break b}xl((dd<<2)+lc|0,0,kc-dd<<2);break b}if((dd|0)>=(kc|0)){break b}break a}if((dd|0)>=(kc|0)){break b}break a}return fd}xl((dd<<2)+lc|0,0,kc-dd<<2);return 1}function Sa(a,kc,lc,jd,kd){var ld=0,md=0,nd=0,od=0,pd=0,qd=0,rd=0;md=R-16|0;R=md;lc=lc+ -1|0;a:{if(lc>>>0>8){break a}b:{switch(lc-1|0){default:ld=Ta(a,kc,jd,kd);break a;case 1:ld=Ua(a,kc,jd,kd);break a;case 3:ld=Va(a,kc,jd,kd);break a;case 0:ld=Wa(a,kc,jd,kd);break a;case 2:ld=Xa(a,kc,jd,kd);break a;case 4:ld=Ya(a,kc,jd,kd);break a;case 5:case 6:break a;case 7:break b}}nd=o[a+80>>2];od=m[kc+24|0];pd=od<<2;if((u(nd,pd)|0)!=(jd|0)){break a}a=0;lc=o[259];o[md+8>>2]=o[258];o[md+12>>2]=lc;lc=o[257];o[md>>2]=o[256];o[md+4>>2]=lc;if(!nd){ld=1;break a}qd=kc+68|0;rd=(od|0)<1;lc=0;while(1){jd=lc;ld=kc;if(!p[kc+84|0]){jd=o[o[qd>>2]+(lc<<2)>>2]}if(!Ba(ld,jd,m[kc+24|0],md)){ld=0;break a}if(!rd){wl((a<<2)+kd|0,md,pd);a=a+od|0}ld=1;lc=lc+1|0;if((nd|0)!=(lc|0)){continue}break}}R=md+16|0;return ld}function Ta(a,kc,lc,jd){var kd=0,sd=0,td=0,ud=0,vd=0,wd=0,xd=0;sd=R-16|0;R=sd;a:{vd=o[a+80>>2];td=m[kc+24|0];b:{if((u(vd,td)|0)!=(lc|0)){break b}if(!(!p[kc+84|0]|o[kc+28>>2]!=1)){wl(jd,o[o[kc>>2]>>2]+o[kc+48>>2]|0,lc);kd=1;break b}o[sd+8>>2]=0;o[sd>>2]=0;o[sd+4>>2]=0;if(td){if((td|0)<=-1){break a}kd=Hk(td);o[sd>>2]=kd;o[sd+4>>2]=kd;o[sd+8>>2]=kd+td;lc=td;while(1){m[kd|0]=0;kd=o[sd+4>>2]+1|0;o[sd+4>>2]=kd;lc=lc+ -1|0;if(lc){continue}break}}c:{if(!vd){kd=1;break c}lc=0;wd=kc+68|0;xd=(td|0)<1;while(1){a=ud;kd=kc;if(!p[kd+84|0]){a=o[o[wd>>2]+(ud<<2)>>2]}if(!Ga(kd,a,m[kc+24|0],o[sd>>2])){kd=0;break c}if(!xd){kd=0;a=o[sd>>2];while(1){m[lc+jd|0]=p[a+kd|0];lc=lc+1|0;kd=kd+1|0;if((td|0)!=(kd|0)){continue}break}}kd=1;ud=ud+1|0;if((vd|0)!=(ud|0)){continue}break}}a=o[sd>>2];if(!a){break b}o[sd+4>>2]=a;ul(a)}R=sd+16|0;return kd}Yk();D()}function Ua(a,kc,lc,jd){var yd=0,zd=0,Ad=0,Bd=0,Cd=0,Dd=0,Ed=0,Fd=0,Gd=0;yd=R-16|0;R=yd;a:{Cd=o[a+80>>2];Ad=m[kc+24|0];a=Ad<<1;b:{if((u(Cd,a)|0)!=(lc|0)){break b}if(!(!p[kc+84|0]|o[kc+28>>2]!=3)){wl(jd,o[o[kc>>2]>>2]+o[kc+48>>2]|0,lc);zd=1;break b}lc=0;o[yd+8>>2]=0;o[yd>>2]=0;o[yd+4>>2]=0;if(Ad){if((Ad|0)<=-1){break a}lc=Hk(a);o[yd>>2]=lc;o[yd+8>>2]=(Ad<<1)+lc;Fd=yd,Gd=xl(lc,0,a)+a|0,o[Fd+4>>2]=Gd}c:{if(!Cd){zd=1;break c}lc=0;Dd=kc+68|0;Ed=(Ad|0)<1;while(1){a=Bd;zd=kc;if(!p[kc+84|0]){a=o[o[Dd>>2]+(Bd<<2)>>2]}d:{if(!La(zd,a,m[kc+24|0],o[yd>>2])){zd=0;break d}if(!Ed){zd=0;a=o[yd>>2];while(1){n[(lc<<1)+jd>>1]=q[a+(zd<<1)>>1];lc=lc+1|0;zd=zd+1|0;if((Ad|0)!=(zd|0)){continue}break}}zd=1;Bd=Bd+1|0;if((Cd|0)!=(Bd|0)){continue}}break}lc=o[yd>>2]}if(!lc){break b}o[yd+4>>2]=lc;ul(lc)}R=yd+16|0;return zd}Yk();D()}function Va(a,kc,lc,jd){var Hd=0,Id=0,Jd=0,Kd=0,Ld=0,Md=0,Nd=0,Od=0,Pd=0;Hd=R-16|0;R=Hd;a:{Ld=o[a+80>>2];Jd=m[kc+24|0];a=Jd<<2;b:{if((u(Ld,a)|0)!=(lc|0)){break b}if(!(!p[kc+84|0]|o[kc+28>>2]!=5)){wl(jd,o[o[kc>>2]>>2]+o[kc+48>>2]|0,lc);Id=1;break b}lc=0;o[Hd+8>>2]=0;o[Hd>>2]=0;o[Hd+4>>2]=0;if(Jd){if((Jd|0)<=-1){break a}lc=Hk(a);o[Hd>>2]=lc;o[Hd+8>>2]=(Jd<<2)+lc;Od=Hd,Pd=xl(lc,0,a)+a|0,o[Od+4>>2]=Pd}c:{if(!Ld){Id=1;break c}lc=0;Md=kc+68|0;Nd=(Jd|0)<1;while(1){a=Kd;Id=kc;if(!p[kc+84|0]){a=o[o[Md>>2]+(Kd<<2)>>2]}d:{if(!Pa(Id,a,m[kc+24|0],o[Hd>>2])){Id=0;break d}if(!Nd){Id=0;a=o[Hd>>2];while(1){o[(lc<<2)+jd>>2]=o[a+(Id<<2)>>2];lc=lc+1|0;Id=Id+1|0;if((Jd|0)!=(Id|0)){continue}break}}Id=1;Kd=Kd+1|0;if((Ld|0)!=(Kd|0)){continue}}break}lc=o[Hd>>2]}if(!lc){break b}o[Hd+4>>2]=lc;ul(lc)}R=Hd+16|0;return Id}Yk();D()}function Wa(a,kc,lc,jd){var Qd=0,Rd=0,Sd=0,Td=0,Ud=0,Vd=0,Wd=0;Rd=R-16|0;R=Rd;a:{Ud=o[a+80>>2];Sd=m[kc+24|0];b:{if((u(Ud,Sd)|0)!=(lc|0)){break b}if(!(!p[kc+84|0]|o[kc+28>>2]!=2)){wl(jd,o[o[kc>>2]>>2]+o[kc+48>>2]|0,lc);Qd=1;break b}o[Rd+8>>2]=0;o[Rd>>2]=0;o[Rd+4>>2]=0;if(Sd){if((Sd|0)<=-1){break a}Qd=Hk(Sd);o[Rd>>2]=Qd;o[Rd+4>>2]=Qd;o[Rd+8>>2]=Qd+Sd;lc=Sd;while(1){m[Qd|0]=0;Qd=o[Rd+4>>2]+1|0;o[Rd+4>>2]=Qd;lc=lc+ -1|0;if(lc){continue}break}}c:{if(!Ud){Qd=1;break c}lc=0;Vd=kc+68|0;Wd=(Sd|0)<1;while(1){a=Td;Qd=kc;if(!p[Qd+84|0]){a=o[o[Vd>>2]+(Td<<2)>>2]}if(!Ia(Qd,a,m[kc+24|0],o[Rd>>2])){Qd=0;break c}if(!Wd){Qd=0;a=o[Rd>>2];while(1){m[lc+jd|0]=p[a+Qd|0];lc=lc+1|0;Qd=Qd+1|0;if((Sd|0)!=(Qd|0)){continue}break}}Qd=1;Td=Td+1|0;if((Ud|0)!=(Td|0)){continue}break}}a=o[Rd>>2];if(!a){break b}o[Rd+4>>2]=a;ul(a)}R=Rd+16|0;return Qd}Yk();D()}function Xa(a,kc,lc,jd){var Xd=0,Yd=0,Zd=0,_d=0,$d=0,ae=0,be=0,ce=0,de=0;Xd=R-16|0;R=Xd;a:{$d=o[a+80>>2];Zd=m[kc+24|0];a=Zd<<1;b:{if((u($d,a)|0)!=(lc|0)){break b}if(!(!p[kc+84|0]|o[kc+28>>2]!=4)){wl(jd,o[o[kc>>2]>>2]+o[kc+48>>2]|0,lc);Yd=1;break b}lc=0;o[Xd+8>>2]=0;o[Xd>>2]=0;o[Xd+4>>2]=0;if(Zd){if((Zd|0)<=-1){break a}lc=Hk(a);o[Xd>>2]=lc;o[Xd+8>>2]=(Zd<<1)+lc;ce=Xd,de=xl(lc,0,a)+a|0,o[ce+4>>2]=de}c:{if(!$d){Yd=1;break c}lc=0;ae=kc+68|0;be=(Zd|0)<1;while(1){a=_d;Yd=kc;if(!p[kc+84|0]){a=o[o[ae>>2]+(_d<<2)>>2]}d:{if(!Na(Yd,a,m[kc+24|0],o[Xd>>2])){Yd=0;break d}if(!be){Yd=0;a=o[Xd>>2];while(1){n[(lc<<1)+jd>>1]=q[a+(Yd<<1)>>1];lc=lc+1|0;Yd=Yd+1|0;if((Zd|0)!=(Yd|0)){continue}break}}Yd=1;_d=_d+1|0;if(($d|0)!=(_d|0)){continue}}break}lc=o[Xd>>2]}if(!lc){break b}o[Xd+4>>2]=lc;ul(lc)}R=Xd+16|0;return Yd}Yk();D()}function Ya(a,kc,lc,jd){var ee=0,fe=0,ge=0,he=0,ie=0,je=0,ke=0,le=0,me=0;ee=R-16|0;R=ee;a:{ie=o[a+80>>2];ge=m[kc+24|0];a=ge<<2;b:{if((u(ie,a)|0)!=(lc|0)){break b}if(!(!p[kc+84|0]|o[kc+28>>2]!=6)){wl(jd,o[o[kc>>2]>>2]+o[kc+48>>2]|0,lc);fe=1;break b}lc=0;o[ee+8>>2]=0;o[ee>>2]=0;o[ee+4>>2]=0;if(ge){if((ge|0)<=-1){break a}lc=Hk(a);o[ee>>2]=lc;o[ee+8>>2]=(ge<<2)+lc;le=ee,me=xl(lc,0,a)+a|0,o[le+4>>2]=me}c:{if(!ie){fe=1;break c}lc=0;je=kc+68|0;ke=(ge|0)<1;while(1){a=he;fe=kc;if(!p[kc+84|0]){a=o[o[je>>2]+(he<<2)>>2]}d:{if(!Ra(fe,a,m[kc+24|0],o[ee>>2])){fe=0;break d}if(!ke){fe=0;a=o[ee>>2];while(1){o[(lc<<2)+jd>>2]=o[a+(fe<<2)>>2];lc=lc+1|0;fe=fe+1|0;if((ge|0)!=(fe|0)){continue}break}}fe=1;he=he+1|0;if((ie|0)!=(he|0)){continue}}break}lc=o[ee>>2]}if(!lc){break b}o[ee+4>>2]=lc;ul(lc)}R=ee+16|0;return fe}Yk();D()}function Za(a,R){var kc=0,lc=0;kc=o[a+4>>2];if(!kc){return 0}R=o[o[o[a+8>>2]+(R<<2)>>2]+60>>2];if((R|0)<0){return 0}a=o[kc+24>>2];kc=o[kc+28>>2];if((a|0)==(kc|0)){return 0}a:{while(1){lc=o[a>>2];if((R|0)==o[lc+24>>2]){break a}a=a+4|0;if((kc|0)!=(a|0)){continue}break}return 0}return lc}function _a(a){var R=0;R=G(8)|0;o[R>>2]=12288;o[R>>2]=12332;Ik(R+4|0,a);o[R>>2]=12380;H(R|0,12412,1);D()}function $a(a,jd,ne){var oe=0,pe=0,qe=0,re=0,se=0;pe=R-16|0;R=pe;o[a+4>>2]=0;a:{b:{if(!jd){break b}qe=o[a+8>>2];oe=qe<<5;c:{if(oe>>>0>=jd>>>0){o[a+4>>2]=jd;break c}o[pe+8>>2]=0;o[pe>>2]=0;o[pe+4>>2]=0;if((jd|0)<=-1){break a}se=pe;if(oe>>>0<=1073741822){re=jd+31&-32;oe=qe<<6;re=oe>>>0<re>>>0?re:oe}else{re=2147483647}ab(se,re);re=o[a>>2];o[a>>2]=o[pe>>2];o[pe>>2]=re;qe=o[a+4>>2];o[a+4>>2]=jd;o[pe+4>>2]=qe;oe=a+8|0;qe=o[oe>>2];o[oe>>2]=o[pe+8>>2];o[pe+8>>2]=qe;if(!re){break c}ul(re)}oe=jd>>>5;qe=oe<<2;a=o[a>>2];if(p[ne|0]){a=xl(a,255,qe);jd=jd&31;if(!jd){break b}a=a+(oe<<2)|0;o[a>>2]=o[a>>2]|-1>>>32-jd;break b}a=xl(a,0,qe);jd=jd&31;if(!jd){break b}a=a+(oe<<2)|0;o[a>>2]=o[a>>2]&(-1>>>32-jd^-1)}R=pe+16|0;return}Yk();D()}function ab(a,jd){var ne=0,te=0;ne=R-32|0;R=ne;a:{b:{if(o[a+8>>2]<<5>>>0>=jd>>>0){break b}o[ne+24>>2]=0;o[ne+16>>2]=0;o[ne+20>>2]=0;if((jd|0)<=-1){break a}jd=(jd+ -1>>>5)+1|0;te=Hk(jd<<2);o[ne+24>>2]=jd;o[ne+20>>2]=0;o[ne+16>>2]=te;jd=o[a>>2];o[ne+12>>2]=0;o[ne+8>>2]=jd;te=o[a+4>>2];o[ne+4>>2]=te&31;o[ne>>2]=jd+(te>>>3&536870908);bb(ne+16|0,ne+8|0,ne);jd=o[a>>2];o[a>>2]=o[ne+16>>2];o[ne+16>>2]=jd;te=o[a+4>>2];o[a+4>>2]=o[ne+20>>2];o[ne+20>>2]=te;a=a+8|0;te=o[a>>2];o[a>>2]=o[ne+24>>2];o[ne+24>>2]=te;if(!jd){break b}ul(jd)}R=ne+32|0;return}Yk();D()}function bb(a,jd,ue){var ve=0,we=0,xe=0,ye=0,ze=0,Ae=0;xe=R-32|0;R=xe;ze=o[ue+4>>2];ve=o[jd+4>>2];Ae=o[ue>>2];ye=o[jd>>2];jd=(ze-ve|0)+(Ae-ye<<3)|0;ue=o[a+4>>2];we=jd+ue|0;o[a+4>>2]=we;a:{if(!(!ue|(we+ -1^ue+ -1)>>>0>31)){a=o[a>>2];break a}a=o[a>>2];if(we>>>0<=32){o[a>>2]=0;break a}o[(we+ -1>>>3&536870908)+a>>2]=0}a=(ue>>>3&536870908)+a|0;ue=ue&31;b:{if((ue|0)==(ve|0)){c:{if((jd|0)<1){break c}d:{if(!ve){ue=0;break d}we=32-ve|0;ue=(jd|0)<(we|0)?jd:we;we=-1<<ve&-1>>>we-ue;o[a>>2]=o[a>>2]&(we^-1)|we&o[ye>>2];jd=jd-ue|0;ve=ue+ve|0;ue=ve&31;a=(ve>>>3&536870908)+a|0;ye=ye+4|0}ve=(jd|0)/32|0;we=ve<<2;a=yl(a,ye,we)+we|0;ve=jd-(ve<<5)|0;if((ve|0)<1){ve=ue;break c}jd=-1>>>32-ve;o[a>>2]=o[a>>2]&(jd^-1)|jd&o[we+ye>>2]}o[xe+4>>2]=ve;o[xe>>2]=a;break b}o[xe+28>>2]=ve;o[xe+24>>2]=ye;o[xe+20>>2]=ze;o[xe+16>>2]=Ae;o[xe+12>>2]=ue;o[xe+8>>2]=a;cb(xe,xe+24|0,xe+16|0,xe+8|0)}R=xe+32|0}function cb(a,jd,ue,Be){var Ce=0,De=0,Ee=0,Fe=0,Ge=0,He=0,Ie=0,Je=0;De=o[jd>>2];Ce=o[ue+4>>2]+(o[ue>>2]-De<<3)|0;ue=o[jd+4>>2];Ee=Ce-ue|0;a:{if((Ee|0)<=0){ue=o[Be+4>>2];break a}b:{if(!ue){ue=o[Be+4>>2];break b}Ce=o[Be+4>>2];He=32-Ce|0;Ie=32-ue|0;Fe=(Ee|0)<(Ie|0)?Ee:Ie;Ge=He>>>0<Fe>>>0?He:Fe;Je=o[Be>>2];De=o[De>>2]&(-1<<ue&-1>>>Ie-Fe);o[Je>>2]=o[Je>>2]&(-1<<Ce&-1>>>He-Ge^-1)|(Ce>>>0>ue>>>0?De<<Ce-ue:De>>>ue-Ce);Ce=Ce+Ge|0;ue=Ce&31;o[Be+4>>2]=ue;He=Je+(Ce>>>3&536870908)|0;o[Be>>2]=He;Ce=Fe-Ge|0;if((Ce|0)>=1){o[He>>2]=o[He>>2]&(-1>>>32-Ce^-1)|De>>>Ge+o[jd+4>>2];o[Be+4>>2]=Ce;ue=Ce}Ee=Ee-Fe|0;De=o[jd>>2]+4|0;o[jd>>2]=De}Ge=-1<<ue;Fe=32-ue|0;c:{if((Ee|0)<32){Ce=Ee;break c}He=Ge^-1;while(1){Ce=o[Be>>2];De=o[De>>2];o[Ce>>2]=He&o[Ce>>2]|De<<ue;o[Be>>2]=Ce+4;o[Ce+4>>2]=Ge&o[Ce+4>>2]|De>>>Fe;De=o[jd>>2]+4|0;o[jd>>2]=De;Ie=(Ee|0)>63;Ce=Ee+ -32|0;Ee=Ce;if(Ie){continue}break}}if((Ce|0)<1){break a}jd=o[Be>>2];Ee=(Fe|0)<(Ce|0)?Fe:Ce;Ge=o[jd>>2]&(Ge&-1>>>Fe-Ee^-1);Fe=o[De>>2]&-1>>>32-Ce;o[jd>>2]=Ge|Fe<<ue;De=ue+Ee|0;ue=De&31;o[Be+4>>2]=ue;De=jd+(De>>>3&536870908)|0;o[Be>>2]=De;jd=Ce-Ee|0;if((jd|0)<1){break a}o[De>>2]=o[De>>2]&(-1>>>32-jd^-1)|Fe>>>Ee;o[Be+4>>2]=jd;ue=jd}jd=o[Be>>2];o[a+4>>2]=ue;o[a>>2]=jd}function db(a){a=a|0;return o[a>>2]}function eb(a){a=a|0;return!o[a>>2]|0}function fb(a){a=a|0;var jd=0;jd=a+4|0;if(m[a+15|0]<=-1){jd=o[jd>>2]}return jd|0}function gb(a){a=a|0;if(a){if(m[a+15|0]<=-1){ul(o[a+4>>2])}ul(a)}}function hb(){var a=0;a=Hk(12);o[a>>2]=0;o[a+4>>2]=0;o[a+8>>2]=0;return a|0}function ib(ue,Be){ue=ue|0;Be=Be|0;return q[o[ue>>2]+(Be<<1)>>1]}function jb(ue){ue=ue|0;return o[ue+4>>2]-o[ue>>2]>>1}function kb(ue){ue=ue|0;var Be=0;if(ue){Be=o[ue>>2];if(Be){o[ue+4>>2]=Be;ul(Be)}ul(ue)}}function lb(){return qj(Hk(84))|0}function mb(ue){ue=ue|0;return o[ue+12>>2]-o[ue+8>>2]>>2}function nb(ue){ue=ue|0;return o[ue+80>>2]}function ob(ue){ue=ue|0;if(ue){l[o[o[ue>>2]+4>>2]](ue)}}function pb(ue,Ke){ue=ue|0;Ke=Ke|0;return p[o[ue>>2]+Ke|0]}function qb(ue){ue=ue|0;return o[ue+4>>2]-o[ue>>2]|0}function rb(ue,Ke){ue=ue|0;Ke=Ke|0;return o[o[ue>>2]+(Ke<<2)>>2]}function sb(ue){ue=ue|0;return o[ue+4>>2]-o[ue>>2]>>2}function tb(){var ue=0;ue=Hk(8);o[ue+4>>2]=-1;o[ue>>2]=1116;return ue|0}function ub(Ke,Le){Ke=Ke|0;Le=Le|0;return l[o[o[Ke>>2]+12>>2]](Ke,Le)|0}function vb(Ke){Ke=Ke|0;return o[Ke+4>>2]}function wb(){return pd(Hk(96))|0}function xb(Ke){Ke=Ke|0;return o[Ke+88>>2]}function yb(Ke){Ke=Ke|0;return o[Ke+56>>2]}function zb(Ke){Ke=Ke|0;return o[Ke+28>>2]}function Ab(o){o=o|0;return m[o+24|0]}function Bb(o){o=o|0;return p[o+32|0]}function Cb(Ke){Ke=Ke|0;return o[Ke+40>>2]}function Db(Ke){Ke=Ke|0;return o[Ke+48>>2]}function Eb(Ke){Ke=Ke|0;return o[Ke+60>>2]}function Fb(Ke){Ke=Ke|0;var Le=0,Me=0;if(Ke){Le=Ke+88|0;Me=o[Le>>2];o[Le>>2]=0;if(Me){Le=o[Me+8>>2];if(Le){o[Me+12>>2]=Le;ul(Le)}ul(Me)}Me=o[Ke+68>>2];if(Me){o[Ke+72>>2]=Me;ul(Me)}Le=Ke- -64|0;Me=o[Le>>2];o[Le>>2]=0;if(Me){Le=o[Me>>2];if(Le){o[Me+4>>2]=Le;ul(Le)}ul(Me)}ul(Ke)}}function Gb(){var Ke=0;Ke=Hk(40);o[Ke>>2]=-1;ki(Ke+8|0);return Ke|0}function Hb(Ne){Ne=Ne|0;var Oe=0;if(Ne){Oe=o[Ne+8>>2];if(Oe){o[Ne+12>>2]=Oe;ul(Oe)}ul(Ne)}}function Ib(){var Ne=0;Ne=Hk(24);o[Ne+4>>2]=-1;o[Ne>>2]=1232;o[Ne+8>>2]=0;o[Ne+12>>2]=0;o[Ne+16>>2]=0;o[Ne+20>>2]=0;return Ne|0}function Jb(Pe,Qe){Pe=Pe|0;Qe=Qe|0;return v(s[o[Pe+8>>2]+(Qe<<2)>>2])}function Kb(o){o=o|0;return v(s[o+20>>2])}function Lb(Pe,Qe){Pe=Pe|0;Qe=Qe|0;return m[o[Pe>>2]+Qe|0]}function Mb(){var Pe=0;Pe=Hk(28);o[Pe>>2]=0;o[Pe+4>>2]=0;o[Pe+24>>2]=0;o[Pe+16>>2]=0;o[Pe+20>>2]=0;o[Pe+8>>2]=0;o[Pe+12>>2]=0;return Pe|0}function Nb(o,Qe,Re){o=o|0;Qe=Qe|0;Re=Re|0;return da(Qe,Re)|0}function Ob(o,Qe,Re){o=o|0;Qe=Qe|0;Re=Re|0;return fa(Qe,Re)|0}function Pb(o,Qe,Re,Se){o=o|0;Qe=Qe|0;Re=Re|0;Se=Se|0;ga(Qe,Re,Se)}function Qb(o,Qe,Re){o=o|0;Qe=Qe|0;Re=Re|0;return+ha(Qe,Re)}function Rb(o,Qe,Re){o=o|0;Qe=Qe|0;Re=Re|0;return ia(o,Qe,Re)|0}function Sb(Qe,Re){Qe=Qe|0;Re=Re|0;return o[Re+8>>2]}function Tb(o,Qe,Re){o=o|0;Qe=Qe|0;Re=Re|0;return ja(o,Qe,Re)|0}function Ub(Qe){Qe=Qe|0;var Re=0,Se=0,Te=0,Ue=0,Ve=0;if(Qe){if(m[Qe+27|0]<=-1){ul(o[Qe+16>>2])}Se=o[Qe>>2];if(Se){Re=Se;Ve=Qe+4|0;Te=o[Ve>>2];Ue=Re;a:{if((Te|0)==(Re|0)){break a}while(1){Re=Te+ -12|0;if(m[Te+ -1|0]<=-1){ul(o[Re>>2])}Te=Re;if((Re|0)!=(Se|0)){continue}break}Ue=o[Qe>>2]}Re=Ue;o[Ve>>2]=Se;ul(Re)}ul(Qe)}}function Vb(Qe,We){Qe=Qe|0;We=We|0;return n[o[Qe>>2]+(We<<1)>>1]}function Wb(Qe,We){Qe=Qe|0;We=We|0;return v(s[o[Qe>>2]+(We<<2)>>2])}function Xb(){return ld(Hk(64))|0}function Yb(o){o=o|0;if(o){ul(o)}}function Zb(){return oi(Hk(40))|0}function _b(Qe,We,Xe){Qe=Qe|0;We=We|0;Xe=Xe|0;o[Qe+16>>2]=0;o[Qe+20>>2]=0;o[Qe>>2]=We;o[Qe+8>>2]=Xe;o[Qe+12>>2]=0}function $b(){return la(Hk(40))|0}function ac(o,Qe){o=o|0;Qe=Qe|0;return ma(Qe)|0}function bc(o,Qe,We){o=o|0;Qe=Qe|0;We=We|0;return na(o)|0}function cc(o,Qe,We){o=o|0;Qe=Qe|0;We=We|0;return oa(o,Qe,We)|0}function dc(o,Qe,We){o=o|0;Qe=Qe|0;We=We|0;return rj(Qe,We)|0}function ec(o,Qe,We){o=o|0;Qe=Qe|0;We=We|0;return pa(Qe,We)|0}function fc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return qa(Qe,We,Xe)|0}function gc(Qe,We,Xe){Qe=Qe|0;We=We|0;Xe=Xe|0;return o[o[We+8>>2]+(Xe<<2)>>2]}function hc(o,Qe,We){o=o|0;Qe=Qe|0;We=We|0;return tj(Qe,We)|0}function ic(Qe,We){Qe=Qe|0;We=We|0;return o[We+4>>2]}function jc(o,Qe,We){o=o|0;Qe=Qe|0;We=We|0;return Za(Qe,We)|0}function kc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return ra(Qe,We,Xe)|0}function lc(o,Qe,We){o=o|0;Qe=Qe|0;We=We|0;return sa(Qe,We)|0}function mc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return ya(Qe,We,Xe)|0}function nc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return za(Qe,We,Xe)|0}function oc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return Aa(Qe,We,Xe)|0}function pc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return Ca(Qe,We,Xe)|0}function qc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return Oa(Qe,We,Xe)|0}function rc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return Ea(Qe,We,Xe)|0}function sc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return Ha(Qe,We,Xe)|0}function tc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return Ja(Qe,We,Xe)|0}function uc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return Ma(Qe,We,Xe)|0}function vc(o,Qe,We,Xe){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;return Qa(Qe,We,Xe)|0}function wc(o,Qe,We,Xe,Ye,Ze){o=o|0;Qe=Qe|0;We=We|0;Xe=Xe|0;Ye=Ye|0;Ze=Ze|0;return Sa(Qe,We,Xe,Ye,Ze)|0}function xc(o,Qe){o=o|0;Qe=Qe|0;Uf(o,Qe)}function yc(Qe){Qe=Qe|0;if(Qe){if(m[Qe+39|0]<=-1){ul(o[Qe+28>>2])}zc(Qe+12|0,o[Qe+16>>2]);Ac(Qe,o[Qe+4>>2]);ul(Qe)}}function zc(Qe,We){if(We){zc(Qe,o[We>>2]);zc(Qe,o[We+4>>2]);Ac(We+20|0,o[We+24>>2]);ul(We)}}function Ac(Qe,We){if(We){Ac(Qe,o[We>>2]);Ac(Qe,o[We+4>>2]);if(m[We+39|0]<=-1){ul(o[We+28>>2])}if(m[We+27|0]<=-1){ul(o[We+16>>2])}ul(We)}}function Bc(){return Li(Hk(108))|0}function Cc(Qe){Qe=Qe|0;return(o[Qe+100>>2]-o[Qe+96>>2]|0)/12|0}function Dc(){var Qe=0,We=0,Xe=0;We=Hk(24);Xe=We+4|0;Qe=Xe;o[Qe>>2]=0;o[Qe+4>>2]=0;Qe=We+16|0;o[Qe>>2]=0;o[Qe+4>>2]=0;o[We>>2]=Xe;o[We+12>>2]=Qe;return We|0}function Ec(Ye){Ye=Ye|0;if(Ye){Fc(Ye+12|0,o[Ye+16>>2]);Gc(Ye,o[Ye+4>>2]);ul(Ye)}}function Fc(Ye,Ze){var _e=0;if(Ze){Fc(Ye,o[Ze>>2]);Fc(Ye,o[Ze+4>>2]);_e=Ze+28|0;Ye=o[_e>>2];o[_e>>2]=0;if(Ye){Fc(Ye+12|0,o[Ye+16>>2]);Gc(Ye,o[Ye+4>>2]);ul(Ye)}if(m[Ze+27|0]<=-1){ul(o[Ze+16>>2])}ul(Ze)}}function Gc(Ye,Ze){if(Ze){Gc(Ye,o[Ze>>2]);Gc(Ye,o[Ze+4>>2]);Ye=o[Ze+28>>2];if(Ye){o[Ze+32>>2]=Ye;ul(Ye)}if(m[Ze+27|0]<=-1){ul(o[Ze+16>>2])}ul(Ze)}}function Hc(){return 0}function Ic(){return-1}function Jc(){return-2}function Kc(){return-3}function Lc(){return-4}function Mc(){return-5}function Nc(){return 1}function Oc(){return 2}function Pc(){return 3}function Qc(){return 4}function Rc(){return 5}function Sc(){return 6}function Tc(){return 7}function Uc(){return 8}function Vc(){return 9}function Wc(){return 10}function Xc(){return 11}function Yc(){return 12}function Zc(Ye,Ze){Ye=Ye|0;Ze=Ze|0;var $e=0;Ze=o[Ze+88>>2];if(!(!Ze|o[Ze>>2]!=2)){$e=Ye;Ye=o[Ze+8>>2];o[$e+4>>2]=p[Ye|0]|p[Ye+1|0]<<8|(p[Ye+2|0]<<16|p[Ye+3|0]<<24);$e=1}return $e|0}function _c(Ye,Ze){Ye=Ye|0;Ze=Ze|0;var af=0,bf=0;o[Ze>>2]=2;af=o[Ze+8>>2];bf=o[Ze+12>>2]-af|0;if(bf>>>0<=4294967291){Ze=Ze+8|0;ni(Ze,bf+4|0);af=o[Ze>>2]}Ze=af+bf|0;Ye=p[Ye+4|0]|p[Ye+5|0]<<8|(p[Ye+6|0]<<16|p[Ye+7|0]<<24);m[Ze|0]=Ye;m[Ze+1|0]=Ye>>>8;m[Ze+2|0]=Ye>>>16;m[Ze+3|0]=Ye>>>24}function $c(o){o=o|0;return o|0}function ad(o){o=o|0;ul(o)}function bd(o){o=o|0;return 2}function cd(Ye,Ze){Ye=Ye|0;Ze=Ze|0;var cf=0,df=0,ef=0,ff=0,gf=0,hf=0;ef=o[Ze+88>>2];if(!(!ef|o[ef>>2]!=1)){ff=ef+8|0;ef=o[ff>>2];cf=ef;o[Ye+4>>2]=p[cf|0]|p[cf+1|0]<<8|(p[cf+2|0]<<16|p[cf+3|0]<<24);gf=Ye+8|0;hf=o[Ye+8>>2];df=o[Ye+12>>2]-hf>>2;cf=m[Ze+24|0];a:{if(df>>>0<cf>>>0){Da(gf,cf-df|0);ef=o[ff>>2];cf=p[Ze+24|0];break a}if(df>>>0<=cf>>>0){break a}o[Ye+12>>2]=hf+(cf<<2)}ff=1;Ze=ef;df=p[Ze+4|0]|p[Ze+5|0]<<8|(p[Ze+6|0]<<16|p[Ze+7|0]<<24);if(cf<<24>>24>=1){hf=cf&255;gf=o[gf>>2];Ze=0;cf=4;while(1){o[gf+(Ze<<2)>>2]=df;cf=cf+4|0;df=ef+cf|0;df=p[df|0]|p[df+1|0]<<8|(p[df+2|0]<<16|p[df+3|0]<<24);Ze=Ze+1|0;if(Ze>>>0<hf>>>0){continue}break}}o[Ye+20>>2]=df}return ff|0}function dd(Ye,Ze){Ye=Ye|0;Ze=Ze|0;var jf=0,kf=0,lf=0,mf=0,nf=0,of=0;o[Ze>>2]=1;mf=Ze+8|0;jf=o[Ze+8>>2];kf=o[Ze+12>>2]-jf|0;if(kf>>>0<=4294967291){ni(mf,kf+4|0);jf=o[mf>>2]}kf=jf+kf|0;jf=p[Ye+4|0]|p[Ye+5|0]<<8|(p[Ye+6|0]<<16|p[Ye+7|0]<<24);m[kf|0]=jf;m[kf+1|0]=jf>>>8;m[kf+2|0]=jf>>>16;m[kf+3|0]=jf>>>24;jf=o[Ye+8>>2];if((jf|0)!=o[Ye+12>>2]){of=Ze+12|0;while(1){kf=(nf<<2)+jf|0;jf=o[Ze+8>>2];lf=o[of>>2]-jf|0;if(lf>>>0<=4294967291){ni(mf,lf+4|0);jf=o[mf>>2]}lf=jf+lf|0;jf=p[kf|0]|p[kf+1|0]<<8|(p[kf+2|0]<<16|p[kf+3|0]<<24);m[lf|0]=jf;m[lf+1|0]=jf>>>8;m[lf+2|0]=jf>>>16;m[lf+3|0]=jf>>>24;nf=nf+1|0;jf=o[Ye+8>>2];if(nf>>>0<o[Ye+12>>2]-jf>>2>>>0){continue}break}}jf=o[Ze+12>>2];Ze=o[Ze+8>>2];jf=jf-Ze|0;if(jf>>>0<=4294967291){ni(mf,jf+4|0);Ze=o[mf>>2]}Ze=Ze+jf|0;Ye=p[Ye+20|0]|p[Ye+21|0]<<8|(p[Ye+22|0]<<16|p[Ye+23|0]<<24);m[Ze|0]=Ye;m[Ze+1|0]=Ye>>>8;m[Ze+2|0]=Ye>>>16;m[Ze+3|0]=Ye>>>24}function ed(Ye,Ze,pf,qf,rf){o[Ye+4>>2]=Ze;fd(Ye+8|0,pf,(qf<<2)+pf|0);s[Ye+20>>2]=rf}function fd(Ye,Ze,pf){var qf=0,rf=0,sf=0,tf=0,uf=0,vf=0,wf=0;a:{tf=pf-Ze|0;sf=tf>>2;qf=o[Ye+8>>2];rf=o[Ye>>2];b:{if(sf>>>0<=qf-rf>>2>>>0){qf=o[Ye+4>>2]-rf|0;tf=qf>>2;qf=sf>>>0>tf>>>0?Ze+qf|0:pf;uf=qf-Ze|0;if(uf){yl(rf,Ze,uf)}if(sf>>>0>tf>>>0){Ze=pf-qf|0;if((Ze|0)<1){break b}Ye=Ye+4|0;wl(o[Ye>>2],qf,Ze);o[Ye>>2]=Ze+o[Ye>>2];return}o[Ye+4>>2]=rf+(uf>>2<<2);return}if(rf){o[Ye+4>>2]=rf;ul(rf);o[Ye+8>>2]=0;o[Ye>>2]=0;o[Ye+4>>2]=0;qf=0}if(sf>>>0>=1073741824){break a}pf=qf>>1;pf=qf>>2>>>0<536870911?pf>>>0<sf>>>0?sf:pf:1073741823;if(pf>>>0>=1073741824){break a}rf=pf<<2;pf=Hk(rf);o[Ye>>2]=pf;sf=Ye+4|0;o[sf>>2]=pf;o[Ye+8>>2]=pf+rf;if((tf|0)<1){break b}vf=sf,wf=wl(pf,Ze,tf)+tf|0,o[vf>>2]=wf}return}Yk();D()}function gd(Ye){Ye=Ye|0;var Ze=0;o[Ye>>2]=1232;Ze=o[Ye+8>>2];if(Ze){o[Ye+12>>2]=Ze;ul(Ze)}return Ye|0}function hd(Ye){Ye=Ye|0;var pf=0;o[Ye>>2]=1232;pf=o[Ye+8>>2];if(pf){o[Ye+12>>2]=pf;ul(pf)}ul(Ye)}function id(o){o=o|0;return 1}function jd(Ye,xf){var yf=0;yf=Hk(40);o[yf>>2]=-1;ki(yf+8|0);l[o[o[Ye>>2]+16>>2]](Ye,yf);Ye=o[xf+88>>2];o[xf+88>>2]=yf;if(Ye){xf=o[Ye+8>>2];if(xf){o[Ye+12>>2]=xf;ul(xf)}ul(Ye)}return 1}function kd(Ye,xf,zf){var Af=0,Bf=0,Cf=0,Df=0,Ef=0,Ff=0;Cf=o[Ye+8>>2];Af=o[Ye+4>>2];if(Cf-Af>>2>>>0>=xf>>>0){while(1){o[Af>>2]=o[zf>>2];Af=Af+4|0;xf=xf+ -1|0;if(xf){continue}break}o[Ye+4>>2]=Af;return}a:{Df=o[Ye>>2];Ef=Af-Df|0;Ff=Ef>>2;Af=Ff+xf|0;if(Af>>>0<1073741824){Cf=Cf-Df|0;Bf=Cf>>1;Af=Cf>>2>>>0<536870911?Bf>>>0<Af>>>0?Af:Bf:1073741823;Bf=0;b:{if(!Af){break b}if(Af>>>0>=1073741824){break a}Bf=Hk(Af<<2)}Cf=Bf+(Af<<2)|0;Af=Bf+(Ff<<2)|0;while(1){o[Af>>2]=o[zf>>2];Af=Af+4|0;xf=xf+ -1|0;if(xf){continue}break}if((Ef|0)>=1){wl(Bf,Df,Ef)}o[Ye>>2]=Bf;o[Ye+8>>2]=Cf;o[Ye+4>>2]=Af;if(Df){ul(Df)}return}Yk();D()}_a(1308);D()}function ld(Ye){o[Ye+8>>2]=0;o[Ye+12>>2]=0;o[Ye>>2]=0;o[Ye+40>>2]=0;o[Ye+44>>2]=0;o[Ye+28>>2]=9;m[Ye+24|0]=1;o[Ye+56>>2]=-1;o[Ye+60>>2]=0;o[Ye+16>>2]=0;o[Ye+20>>2]=0;o[Ye+48>>2]=0;o[Ye+52>>2]=0;return Ye}function md(Ye,xf,zf,Gf,Hf,If,Jf){o[Ye>>2]=0;o[Ye+56>>2]=xf;o[Ye+48>>2]=0;o[Ye+52>>2]=0;o[Ye+40>>2]=If;o[Ye+44>>2]=Jf;m[Ye+32|0]=Hf;o[Ye+28>>2]=Gf;m[Ye+24|0]=zf}function nd(Ye,xf){var zf=0,Gf=0,Hf=0;Gf=o[Ye>>2];a:{if(!Gf){break a}zf=o[xf>>2];if(!zf){break a}Hf=Gf;Gf=o[zf>>2];li(Hf,Gf,o[zf+4>>2]-Gf|0,0);m[Ye+24|0]=p[xf+24|0];o[Ye+28>>2]=o[xf+28>>2];m[Ye+32|0]=p[xf+32|0];zf=o[xf+44>>2];o[Ye+40>>2]=o[xf+40>>2];o[Ye+44>>2]=zf;zf=o[xf+52>>2];o[Ye+48>>2]=o[xf+48>>2];o[Ye+52>>2]=zf;o[Ye+56>>2]=o[xf+56>>2];zf=o[xf+12>>2];o[Ye+8>>2]=o[xf+8>>2];o[Ye+12>>2]=zf;zf=o[xf+20>>2];o[Ye+16>>2]=o[xf+16>>2];o[Ye+20>>2]=zf;o[Ye+60>>2]=o[xf+60>>2];Hf=1}return Hf}function od(Ye,xf,If,Jf){var Kf=0;o[Ye>>2]=xf;Kf=o[xf+20>>2];o[Ye+8>>2]=o[xf+16>>2];o[Ye+12>>2]=Kf;Kf=o[xf+24>>2];xf=o[xf+28>>2];o[Ye+48>>2]=0;o[Ye+52>>2]=0;o[Ye+40>>2]=If;o[Ye+44>>2]=Jf;o[Ye+16>>2]=Kf;o[Ye+20>>2]=xf}function pd(Ye){ld(Ye);o[Ye+64>>2]=0;o[Ye+68>>2]=0;o[Ye+88>>2]=0;o[Ye+72>>2]=0;o[Ye+76>>2]=0;m[Ye+77|0]=0;m[Ye+78|0]=0;m[Ye+79|0]=0;m[Ye+80|0]=0;m[Ye+81|0]=0;m[Ye+82|0]=0;m[Ye+83|0]=0;m[Ye+84|0]=0;return Ye}function qd(Ye,xf){var If=0;If=o[xf+4>>2];o[Ye>>2]=o[xf>>2];o[Ye+4>>2]=If;If=o[xf+60>>2];o[Ye+56>>2]=o[xf+56>>2];o[Ye+60>>2]=If;If=o[xf+52>>2];o[Ye+48>>2]=o[xf+48>>2];o[Ye+52>>2]=If;If=o[xf+44>>2];o[Ye+40>>2]=o[xf+40>>2];o[Ye+44>>2]=If;If=o[xf+36>>2];o[Ye+32>>2]=o[xf+32>>2];o[Ye+36>>2]=If;If=o[xf+28>>2];o[Ye+24>>2]=o[xf+24>>2];o[Ye+28>>2]=If;If=o[xf+20>>2];o[Ye+16>>2]=o[xf+16>>2];o[Ye+20>>2]=If;If=o[xf+12>>2];o[Ye+8>>2]=o[xf+8>>2];o[Ye+12>>2]=If;o[Ye+88>>2]=0;o[Ye+64>>2]=0;o[Ye+68>>2]=0;o[Ye+72>>2]=0;o[Ye+76>>2]=0;m[Ye+77|0]=0;m[Ye+78|0]=0;m[Ye+79|0]=0;m[Ye+80|0]=0;m[Ye+81|0]=0;m[Ye+82|0]=0;m[Ye+83|0]=0;m[Ye+84|0]=0}function rd(Ye,xf){var Jf=0,Lf=0;a:{if(o[Ye+64>>2]){break a}Lf=Hk(32);ki(Lf);Jf=o[Ye+64>>2];o[Ye+64>>2]=Lf;if(!Jf){break a}Lf=o[Jf>>2];if(Lf){o[Jf+4>>2]=Lf;ul(Lf)}ul(Jf)}Jf=ti(o[Ye+28>>2]);Jf=u(Jf,m[Ye+24|0]);Lf=Jf;Jf=Jf>>31;if(li(o[Ye+64>>2],0,Vl(Lf,Jf,xf,0),T)){od(Ye,o[Ye+64>>2],Lf,Jf);o[Ye+80>>2]=xf;Ye=1}else{Ye=0}return Ye}function sd(Ye,xf){var Mf=0,Nf=0,Of=0,Pf=0,Qf=0,Rf=0,Sf=0;if(!o[Ye- -64>>2]){Mf=Hk(32);ki(Mf);Of=o[Ye+64>>2];o[Ye+64>>2]=Mf;Nf=Ye;if(Of){Mf=o[Of>>2];if(Mf){o[Of+4>>2]=Mf;ul(Mf)}ul(Of);Mf=o[Ye+64>>2]}od(Nf,Mf,0,0)}a:{b:{if(!nd(Ye,xf)){break b}m[Ye+84|0]=p[xf+84|0];o[Ye+80>>2]=o[xf+80>>2];if((Ye|0)!=(xf|0)){td(Ye+68|0,o[xf+68>>2],o[xf+72>>2])}Mf=o[xf+88>>2];if(Mf){xf=Hk(40);Nf=o[Mf>>2];o[xf+16>>2]=0;o[xf+8>>2]=0;o[xf+12>>2]=0;o[xf>>2]=Nf;Nf=o[Mf+12>>2]-o[Mf+8>>2]|0;c:{if(!Nf){break c}if((Nf|0)<=-1){break a}Of=Hk(Nf);o[xf+8>>2]=Of;Pf=xf+12|0;o[Pf>>2]=Of;o[xf+16>>2]=Nf+Of;Qf=o[Mf+8>>2];Nf=o[Mf+12>>2]-Qf|0;if((Nf|0)<1){break c}Rf=Pf,Sf=wl(Of,Qf,Nf)+Nf|0,o[Rf>>2]=Sf}Nf=o[Mf+36>>2];o[xf+32>>2]=o[Mf+32>>2];o[xf+36>>2]=Nf;Nf=o[Mf+28>>2];o[xf+24>>2]=o[Mf+24>>2];o[xf+28>>2]=Nf;Mf=o[Ye+88>>2];o[Ye+88>>2]=xf;if(!Mf){break b}Ye=o[Mf+8>>2];if(Ye){o[Mf+12>>2]=Ye;ul(Ye)}ul(Mf);return}xf=Ye+88|0;Ye=o[xf>>2];o[xf>>2]=0;if(!Ye){break b}xf=o[Ye+8>>2];if(xf){o[Ye+12>>2]=xf;ul(xf)}ul(Ye)}return}Yk();D()}function td(Ye,xf,Tf){var Uf=0,Vf=0,Wf=0,Xf=0,Yf=0,Zf=0,_f=0;a:{Uf=Tf-xf|0;Wf=Uf>>2;Xf=o[Ye+8>>2];Vf=o[Ye>>2];b:{if(Wf>>>0<=Xf-Vf>>2>>>0){Yf=o[Ye+4>>2];Uf=Yf-Vf|0;Xf=Uf>>2;Uf=Wf>>>0>Xf>>>0?xf+Uf|0:Tf;if((Uf|0)!=(xf|0)){while(1){o[Vf>>2]=o[xf>>2];Vf=Vf+4|0;xf=xf+4|0;if((Uf|0)!=(xf|0)){continue}break}}if(Wf>>>0>Xf>>>0){xf=Tf-Uf|0;if((xf|0)<1){break b}wl(Yf,Uf,xf);Ye=Ye+4|0;o[Ye>>2]=xf+o[Ye>>2];return}o[Ye+4>>2]=Vf;return}if(Vf){o[Ye+4>>2]=Vf;ul(Vf);o[Ye+8>>2]=0;o[Ye>>2]=0;o[Ye+4>>2]=0;Xf=0}if(Wf>>>0>=1073741824){break a}Tf=Xf>>1;Tf=Xf>>2>>>0<536870911?Tf>>>0<Wf>>>0?Wf:Tf:1073741823;if(Tf>>>0>=1073741824){break a}Vf=Tf<<2;Tf=Hk(Vf);o[Ye>>2]=Tf;Wf=Ye+4|0;o[Wf>>2]=Tf;o[Ye+8>>2]=Tf+Vf;if((Uf|0)<1){break b}Zf=Wf,_f=wl(Tf,xf,Uf)+Uf|0,o[Zf>>2]=_f}return}Yk();D()}function ud(Ye){o[Ye>>2]=1384;o[Ye+4>>2]=0;o[Ye+8>>2]=0;o[Ye+12>>2]=0;o[Ye+16>>2]=0;o[Ye+20>>2]=0;o[Ye+24>>2]=0;o[Ye+28>>2]=0;o[Ye+32>>2]=0}function vd(Ye,xf,Tf){Ye=Ye|0;xf=xf|0;Tf=Tf|0;o[Ye+32>>2]=Tf;o[Ye+28>>2]=xf;return 1}function wd(Ye,xf){Ye=Ye|0;xf=xf|0;var Tf=0,$f=0,ag=0,bg=0,cg=0,dg=0,eg=0,fg=0,gg=0,hg=0,ig=0,jg=0,kg=0,lg=0,mg=0,ng=0,og=0,pg=0;ag=R-96|0;R=ag;a:{if(!xd(1,ag+92|0,xf)){break a}fg=o[ag+92>>2];if(!fg){break a}Tf=o[Ye+4>>2];$f=o[Ye+8>>2]-Tf>>2;b:{if(fg>>>0>$f>>>0){Da(Ye+4|0,fg-$f|0);break b}if(fg>>>0>=$f>>>0){break b}o[Ye+8>>2]=Tf+(fg<<2)}lg=Ye+16|0;mg=o[Ye+32>>2];pg=mg+8|0;ng=Ye+20|0;while(1){hg=o[xf+8>>2];gg=o[xf+16>>2];bg=o[xf+12>>2];Tf=bg;$f=o[xf+20>>2];if((Tf|0)<($f|0)?1:(Tf|0)<=($f|0)?hg>>>0>gg>>>0?0:1:0){$f=0;break a}ig=o[xf>>2];og=p[ig+gg|0];Tf=$f;dg=gg+1|0;if(dg>>>0<1){Tf=Tf+1|0}cg=xf;o[xf+16>>2]=dg;o[xf+20>>2]=Tf;if((bg|0)<(Tf|0)?1:(bg|0)<=(Tf|0)?hg>>>0>dg>>>0?0:1:0){$f=0;break a}dg=p[dg+ig|0];Tf=$f;eg=gg+2|0;if(eg>>>0<2){Tf=Tf+1|0}o[xf+16>>2]=eg;o[cg+20>>2]=Tf;if((bg|0)<(Tf|0)?1:(bg|0)<=(Tf|0)?hg>>>0>eg>>>0?0:1:0){$f=0;break a}eg=p[eg+ig|0];Tf=$f;jg=gg+3|0;if(jg>>>0<3){Tf=Tf+1|0}o[xf+16>>2]=jg;o[cg+20>>2]=Tf;if((bg|0)<(Tf|0)?1:(bg|0)<=(Tf|0)?hg>>>0>jg>>>0?0:1:0){$f=0;break a}bg=p[jg+ig|0];Tf=$f;$f=gg+4|0;if($f>>>0<4){Tf=Tf+1|0}o[xf+16>>2]=$f;o[cg+20>>2]=Tf;if(og>>>0>4){$f=0;break a}if((dg+ -1&255)>>>0>10){$f=0;break a}$f=ld(ag+24|0);Tf=u(ti(dg),eg);md($f,og,eg<<24>>24,dg,(bg|0)!=0,Tf,Tf>>31);xd(1,ag+20|0,xf);cg=o[ag+20>>2];o[ag+84>>2]=cg;Tf=Hk(96);qd(Tf,$f);o[ag+16>>2]=Tf;$f=vj(mg,ag+16|0);Tf=o[ag+16>>2];o[ag+16>>2]=0;if(Tf){Fb(Tf)}bg=$f<<2;o[o[bg+o[pg>>2]>>2]+60>>2]=cg;o[o[Ye+4>>2]+(kg<<2)>>2]=$f;Tf=o[Ye+16>>2];cg=o[ng>>2]-Tf>>2;c:{if(($f|0)<(cg|0)){break c}o[ag+12>>2]=-1;$f=$f+1|0;if($f>>>0>cg>>>0){yd(lg,$f-cg|0,ag+12|0);Tf=o[lg>>2];break c}if($f>>>0>=cg>>>0){break c}o[ng>>2]=($f<<2)+Tf}o[Tf+bg>>2]=kg;$f=1;kg=kg+1|0;if((fg|0)!=(kg|0)){continue}break}}R=ag+96|0;return $f|0}function xd(Ye,xf,qg){var rg=0,sg=0,tg=0,ug=0;a:{if(Ye>>>0>5){break a}tg=o[qg+16>>2];rg=o[qg+12>>2];sg=o[qg+20>>2];if((rg|0)<(sg|0)?1:(rg|0)<=(sg|0)?r[qg+8>>2]>tg>>>0?0:1:0){break a}rg=p[tg+o[qg>>2]|0];tg=tg+1|0;if(tg>>>0<1){sg=sg+1|0}o[qg+16>>2]=tg;o[qg+20>>2]=sg;sg=xf;if(rg&128){if(!xd(Ye+1|0,xf,qg)){break a}Ye=o[xf>>2]<<7;o[xf>>2]=Ye;rg=Ye|rg&127}o[sg>>2]=rg;ug=1}return ug}function yd(Ye,xf,qg){var vg=0,wg=0,xg=0,yg=0,zg=0,Ag=0;xg=o[Ye+8>>2];vg=o[Ye+4>>2];if(xg-vg>>2>>>0>=xf>>>0){while(1){o[vg>>2]=o[qg>>2];vg=vg+4|0;xf=xf+ -1|0;if(xf){continue}break}o[Ye+4>>2]=vg;return}a:{yg=o[Ye>>2];zg=vg-yg|0;Ag=zg>>2;vg=Ag+xf|0;if(vg>>>0<1073741824){xg=xg-yg|0;wg=xg>>1;vg=xg>>2>>>0<536870911?wg>>>0<vg>>>0?vg:wg:1073741823;wg=0;b:{if(!vg){break b}if(vg>>>0>=1073741824){break a}wg=Hk(vg<<2)}xg=wg+(vg<<2)|0;vg=wg+(Ag<<2)|0;while(1){o[vg>>2]=o[qg>>2];vg=vg+4|0;xf=xf+ -1|0;if(xf){continue}break}if((zg|0)>=1){wl(wg,yg,zg)}o[Ye>>2]=wg;o[Ye+8>>2]=xg;o[Ye+4>>2]=vg;if(yg){ul(yg)}return}Yk();D()}_a(1520);D()}function zd(Ye){Ye=Ye|0;var xf=0;o[Ye>>2]=1384;xf=o[Ye+16>>2];if(xf){o[Ye+20>>2]=xf;ul(xf)}xf=o[Ye+4>>2];if(xf){o[Ye+8>>2]=xf;ul(xf)}return Ye|0}function Ad(o){o=o|0;D()}function Bd(Ye,qg){Ye=Ye|0;qg=qg|0;var Bg=0;a:{if(!l[o[o[Ye>>2]+36>>2]](Ye,qg)){break a}if(!l[o[o[Ye>>2]+40>>2]](Ye,qg)){break a}Bg=l[o[o[Ye>>2]+44>>2]](Ye)|0}return Bg|0}function Cd(Ye,qg){Ye=Ye|0;qg=qg|0;return o[o[Ye+4>>2]+(qg<<2)>>2]}function Dd(Ye){Ye=Ye|0;return o[Ye+8>>2]-o[Ye+4>>2]>>2}function Ed(o,Ye){o=o|0;Ye=Ye|0;return 0}function Fd(o,Ye){o=o|0;Ye=Ye|0;return 1}function Gd(Ye){o[Ye+12>>2]=-1;o[Ye+16>>2]=0;o[Ye+4>>2]=0;o[Ye+8>>2]=0;o[Ye>>2]=1596}function Hd(Ye,qg,Cg){Ye=Ye|0;qg=qg|0;Cg=Cg|0;o[Ye+4>>2]=qg;qg=o[o[o[qg+4>>2]+8>>2]+(Cg<<2)>>2];o[Ye+12>>2]=Cg;o[Ye+8>>2]=qg;return 1}function Id(Ye,qg){Ye=Ye|0;qg=qg|0;o[Ye+12>>2]=-1;o[Ye+8>>2]=qg;return 1}function Jd(Ye,qg,Cg){Ye=Ye|0;qg=qg|0;Cg=Cg|0;var Dg=0,Eg=0;Dg=o[Ye+8>>2];a:{if(m[Dg+24|0]<1){break a}if(!rd(Dg,o[qg+4>>2]-o[qg>>2]>>2)){break a}Eg=l[o[o[Ye>>2]+32>>2]](Ye,qg,Cg)|0}return Eg|0}function Kd(o,Ye,qg){o=o|0;Ye=Ye|0;qg=qg|0;return 1}function Ld(Ye){var qg=0,Cg=0,Fg=0,Gg=0,Hg=0,Ig=0,Jg=0,Kg=0;a:{Fg=o[Ye+8>>2];if(p[Fg+84|0]){break a}qg=o[Ye+16>>2];if(!qg|!p[qg+84|0]){break a}Cg=o[Fg+72>>2];Gg=o[Fg+68>>2];m[qg+84|0]=0;Cg=Cg-Gg>>2;Hg=o[qg+68>>2];Gg=o[qg+72>>2]-Hg>>2;b:{if(Cg>>>0>Gg>>>0){kd(qg+68|0,Cg-Gg|0,1680);Fg=o[Ye+8>>2];break b}if(Cg>>>0>=Gg>>>0){break b}o[qg+72>>2]=Hg+(Cg<<2)}qg=0;Gg=p[Fg+84|0];Ig=Fg+72|0;Jg=Ye+16|0;Kg=Fg+68|0;while(1){if(qg>>>0>=(Gg?0:o[Ig>>2]-o[Fg+68>>2]>>2)>>>0){break a}Cg=qg;Hg=o[o[Jg>>2]+68>>2]+(qg<<2)|0;if(!Gg){Cg=o[o[Kg>>2]+(qg<<2)>>2]}o[Hg>>2]=Cg;qg=qg+1|0;continue}}return o[Ye+16>>2]}function Md(Ye,Lg){Ye=Ye|0;Lg=Lg|0;var Mg=0,Ng=0,Og=0;Ng=1;a:{if((l[o[o[Lg>>2]+20>>2]](Lg)|0)<1){break a}Ng=0;while(1){Mg=rj(o[o[Ye+4>>2]+4>>2],l[o[o[Lg>>2]+24>>2]](Lg,Og)|0);if((Mg|0)==-1){break a}Mg=ii(o[Ye+4>>2],Mg);if(!Mg){break a}if(!l[o[o[Lg>>2]+28>>2]](Lg,Mg)){break a}Og=Og+1|0;if((Og|0)<(l[o[o[Lg>>2]+20>>2]](Lg)|0)){continue}break}Ng=1}return Ng|0}function Nd(Ye,Lg,Pg){Ye=Ye|0;Lg=Lg|0;Pg=Pg|0;var Qg=0,Rg=0,Sg=0,Tg=0,Ug=0,Vg=0,Wg=0,Xg=0,Yg=0,Zg=0,_g=0;Qg=o[Lg+4>>2];Rg=o[Lg>>2];Lg=o[o[Ye+8>>2]+40>>2];Sg=Lg;Tg=Hk((Lg|0)>-1?Lg:-1);Qg=Qg-Rg|0;if((Qg|0)>=1){Zg=Qg>>2;while(1){Vg=o[Pg+12>>2];Qg=_g+o[Pg+20>>2]|0;Wg=o[Pg+16>>2];Ug=Lg+Wg|0;if(Ug>>>0<Lg>>>0){Qg=Qg+1|0}Rg=Qg;if((Vg|0)<(Qg|0)?1:(Vg|0)<=(Qg|0)?r[Pg+8>>2]>=Ug>>>0?0:1:0){ul(Tg);return 0}Qg=wl(Tg,Wg+o[Pg>>2]|0,Sg);o[Pg+16>>2]=Ug;o[Pg+20>>2]=Rg;wl(o[o[o[Ye+8>>2]- -64>>2]>>2]+Xg|0,Qg,Sg);Xg=Sg+Xg|0;Yg=Yg+1|0;if((Yg|0)<(Zg|0)){continue}break}}ul(Tg);return 1}function Od(Ye){Ye=Ye|0;var Lg=0;o[Ye>>2]=1596;Lg=o[Ye+16>>2];o[Ye+16>>2]=0;if(Lg){Fb(Lg)}return Ye|0}function Pd(Ye){Ye=Ye|0;var Pg=0;o[Ye>>2]=1596;Pg=o[Ye+16>>2];o[Ye+16>>2]=0;if(Pg){Fb(Pg)}ul(Ye)}function Qd(Ye,$g){var ah=0;ud(Ye);o[Ye+36>>2]=0;o[Ye+40>>2]=0;o[Ye>>2]=1692;o[Ye+44>>2]=0;o[Ye+48>>2]=0;o[Ye+52>>2]=0;o[Ye+56>>2]=0;ah=o[$g>>2];o[$g>>2]=0;o[Ye+60>>2]=ah}function Rd(Ye,$g){Ye=Ye|0;$g=$g|0;var bh=0,ch=0,dh=0,eh=0,fh=0,gh=0,hh=0,ih=0,jh=0,kh=0,lh=0,mh=0,nh=0;fh=R-16|0;R=fh;a:{if(!wd(Ye,$g)){break a}jh=Ye+36|0;gh=l[o[o[Ye>>2]+24>>2]](Ye)|0;dh=o[Ye+40>>2];ch=o[Ye+36>>2];bh=dh-ch>>2;b:{if(gh>>>0>bh>>>0){Sd(jh,gh-bh|0);break b}if(gh>>>0>=bh>>>0){break b}ch=ch+(gh<<2)|0;if((ch|0)!=(dh|0)){while(1){dh=dh+ -4|0;bh=o[dh>>2];o[dh>>2]=0;if(bh){l[o[o[bh>>2]+4>>2]](bh)}if((dh|0)!=(ch|0)){continue}break}}o[Ye+40>>2]=ch}ih=1;if((gh|0)<1){break a}ih=0;dh=0;while(1){eh=o[$g+16>>2];ch=o[$g+12>>2];bh=o[$g+20>>2];if((ch|0)<(bh|0)?1:(ch|0)<=(bh|0)?r[$g+8>>2]>eh>>>0?0:1:0){break a}hh=p[eh+o[$g>>2]|0];eh=eh+1|0;if(eh>>>0<1){bh=bh+1|0}ch=$g;o[ch+16>>2]=eh;o[ch+20>>2]=bh;l[o[o[Ye>>2]+48>>2]](fh+8|0,Ye,hh);bh=o[Ye+36>>2];ch=o[fh+8>>2];o[fh+8>>2]=0;eh=dh<<2;hh=bh+eh|0;bh=o[hh>>2];o[hh>>2]=ch;if(bh){l[o[o[bh>>2]+4>>2]](bh)}bh=o[fh+8>>2];o[fh+8>>2]=0;if(bh){l[o[o[bh>>2]+4>>2]](bh)}bh=o[o[jh>>2]+eh>>2];if(!bh){break a}if(!(lh=bh,mh=l[o[o[Ye>>2]+28>>2]](Ye)|0,nh=l[o[o[Ye>>2]+20>>2]](Ye,dh)|0,kh=o[o[bh>>2]+8>>2],l[kh](lh|0,mh|0,nh|0)|0)){break a}dh=dh+1|0;if((gh|0)!=(dh|0)){continue}break}ih=1}R=fh+16|0;return ih|0}function Sd(Ye,$g){var oh=0,ph=0,qh=0,rh=0,sh=0,th=0,uh=0,vh=0,wh=0;ph=o[Ye+8>>2];qh=Ye+4|0;oh=o[qh>>2];if(ph-oh>>2>>>0>=$g>>>0){Ye=$g<<2;vh=qh,wh=xl(oh,0,Ye)+Ye|0,o[vh>>2]=wh;return}a:{qh=o[Ye>>2];rh=oh-qh>>2;sh=rh+$g|0;if(sh>>>0<1073741824){rh=rh<<2;ph=ph-qh|0;uh=ph>>1;ph=ph>>2>>>0<536870911?uh>>>0<sh>>>0?sh:uh:1073741823;if(ph){if(ph>>>0>=1073741824){break a}th=Hk(ph<<2)}rh=rh+th|0;xl(rh,0,$g<<2);$g=(sh<<2)+th|0;sh=(ph<<2)+th|0;if((oh|0)!=(qh|0)){while(1){oh=oh+ -4|0;ph=o[oh>>2];o[oh>>2]=0;rh=rh+ -4|0;o[rh>>2]=ph;if((oh|0)!=(qh|0)){continue}break}qh=o[Ye>>2];oh=o[Ye+4>>2]}o[Ye>>2]=rh;o[Ye+8>>2]=sh;o[Ye+4>>2]=$g;if((oh|0)!=(qh|0)){while(1){oh=oh+ -4|0;Ye=o[oh>>2];o[oh>>2]=0;if(Ye){l[o[o[Ye>>2]+4>>2]](Ye)}if((oh|0)!=(qh|0)){continue}break}}if(qh){ul(qh)}return}Yk();D()}_a(1832);D()}function Td(Ye,$g){Ye=Ye|0;$g=$g|0;var xh=0,yh=0,zh=0,Ah=0,Bh=0,Ch=0,Dh=0;xh=o[Ye+60>>2];a:{if(!xh){break a}o[xh+4>>2]=Ye+48;if(!l[o[o[xh>>2]+12>>2]](xh)){break a}b:{yh=l[o[o[Ye>>2]+24>>2]](Ye)|0;if((yh|0)<1){break b}Ah=Ye+60|0;xh=0;while(1){c:{Bh=o[(l[o[o[Ye>>2]+28>>2]](Ye)|0)+4>>2];Ch=l[o[o[Ye>>2]+20>>2]](Ye,xh)|0;zh=o[Ah>>2];if(!l[o[o[zh>>2]+8>>2]](zh,o[o[Bh+8>>2]+(Ch<<2)>>2])){break c}xh=xh+1|0;if((yh|0)!=(xh|0)){continue}break b}break}return 0}if(!l[o[o[Ye>>2]+36>>2]](Ye,$g)){break a}if(!l[o[o[Ye>>2]+40>>2]](Ye,$g)){break a}Dh=l[o[o[Ye>>2]+44>>2]](Ye)|0}return Dh|0}function Ud(Ye,$g){Ye=Ye|0;$g=$g|0;var Eh=0,Fh=0,Gh=0,Hh=0,Ih=0;Eh=1;Fh=l[o[o[Ye>>2]+24>>2]](Ye)|0;a:{if((Fh|0)<1){break a}Hh=Ye+48|0;Eh=0;Ih=Ye+36|0;Ye=0;while(1){Gh=o[o[Ih>>2]+(Ye<<2)>>2];if(!l[o[o[Gh>>2]+16>>2]](Gh,Hh,$g)){break a}Ye=Ye+1|0;if((Fh|0)!=(Ye|0)){continue}break}Eh=1}return Eh|0}function Vd(Ye,$g){Ye=Ye|0;$g=$g|0;var Jh=0,Kh=0,Lh=0,Mh=0,Nh=0;Jh=1;Kh=l[o[o[Ye>>2]+24>>2]](Ye)|0;a:{if((Kh|0)<1){break a}Mh=Ye+48|0;Jh=0;Nh=Ye+36|0;Ye=0;while(1){Lh=o[o[Nh>>2]+(Ye<<2)>>2];if(!l[o[o[Lh>>2]+20>>2]](Lh,Mh,$g)){break a}Ye=Ye+1|0;if((Kh|0)!=(Ye|0)){continue}break}Jh=1}return Jh|0}function Wd(Ye){Ye=Ye|0;var $g=0,Oh=0,Ph=0,Qh=0,Rh=0,Sh=0,Th=0,Uh=0,Vh=0,Wh=0,Xh=0,Yh=0,Zh=0;Qh=R-16|0;R=Qh;$g=1;Th=l[o[o[Ye>>2]+24>>2]](Ye)|0;a:{if((Th|0)<1){break a}Zh=Ye+48|0;Sh=Ye+36|0;while(1){b:{c:{if(!o[(l[o[o[Ye>>2]+28>>2]](Ye)|0)+40>>2]){break c}Uh=Rh<<2;$g=o[Uh+o[Sh>>2]>>2];Oh=o[$g+8>>2];Vh=Ld($g);if(!Vh){break c}$g=l[o[o[Ye>>2]+28>>2]](Ye)|0;Wh=o[Oh+56>>2];Xh=o[$g+40>>2];$g=Hk(32);o[Qh>>2]=$g;o[Qh+4>>2]=24;o[Qh+8>>2]=-2147483616;m[$g+24|0]=0;Oh=p[1764]|p[1765]<<8|(p[1766]<<16|p[1767]<<24);Ph=p[1760]|p[1761]<<8|(p[1762]<<16|p[1763]<<24);m[$g+16|0]=Ph;m[$g+17|0]=Ph>>>8;m[$g+18|0]=Ph>>>16;m[$g+19|0]=Ph>>>24;m[$g+20|0]=Oh;m[$g+21|0]=Oh>>>8;m[$g+22|0]=Oh>>>16;m[$g+23|0]=Oh>>>24;Oh=p[1756]|p[1757]<<8|(p[1758]<<16|p[1759]<<24);Ph=p[1752]|p[1753]<<8|(p[1754]<<16|p[1755]<<24);m[$g+8|0]=Ph;m[$g+9|0]=Ph>>>8;m[$g+10|0]=Ph>>>16;m[$g+11|0]=Ph>>>24;m[$g+12|0]=Oh;m[$g+13|0]=Oh>>>8;m[$g+14|0]=Oh>>>16;m[$g+15|0]=Oh>>>24;Oh=p[1748]|p[1749]<<8|(p[1750]<<16|p[1751]<<24);Ph=p[1744]|p[1745]<<8|(p[1746]<<16|p[1747]<<24);m[$g|0]=Ph;m[$g+1|0]=Ph>>>8;m[$g+2|0]=Ph>>>16;m[$g+3|0]=Ph>>>24;m[$g+4|0]=Oh;m[$g+5|0]=Oh>>>8;m[$g+6|0]=Oh>>>16;m[$g+7|0]=Oh>>>24;d:{e:{Ph=Xh+16|0;Oh=Ph;$g=o[Oh>>2];if(!$g){break e}while(1){Yh=o[$g+16>>2]<(Wh|0);Oh=Yh?Oh:$g;$g=o[(Yh<<2)+$g>>2];if($g){continue}break}if((Oh|0)==(Ph|0)|(Wh|0)<o[Oh+16>>2]){break e}$g=Oh+20|0;if(!ea($g,Qh)){break e}$g=yi($g,Qh);break d}$g=yi(Xh,Qh)}if(m[Qh+11|0]<=-1){ul(o[Qh>>2])}if(!$g){break c}sd(o[o[o[Sh>>2]+Uh>>2]+8>>2],Vh);break b}$g=o[o[Sh>>2]+(Rh<<2)>>2];if(l[o[o[$g>>2]+24>>2]]($g,Zh)){break b}$g=0;break a}$g=1;Rh=Rh+1|0;if((Th|0)!=(Rh|0)){continue}break}}R=Qh+16|0;return $g|0}function Xd(Ye,_h,$h){Ye=Ye|0;_h=_h|0;$h=$h|0;if($h>>>0>3){o[Ye>>2]=0;return}a:{b:{switch($h-1|0){default:_h=Hk(20);Gd(_h);break a;case 0:_h=Hk(24);$d(_h);break a;case 1:_h=Hk(36);$d(_h);o[_h+32>>2]=0;o[_h+24>>2]=-1;o[_h+28>>2]=0;o[_h>>2]=7664;break a;case 2:break b}}_h=Hk(28);$d(_h);o[_h+24>>2]=-1;o[_h>>2]=5528;o[Ye>>2]=_h;return}o[Ye>>2]=_h}function Yd(Ye){Ye=Ye|0;var _h=0,$h=0,ai=0,bi=0,ci=0;o[Ye>>2]=1692;_h=Ye+60|0;$h=o[_h>>2];o[_h>>2]=0;if($h){l[o[o[$h>>2]+4>>2]]($h)}_h=o[Ye+48>>2];if(_h){o[Ye+52>>2]=_h;ul(_h)}$h=o[Ye+36>>2];if($h){_h=$h;ci=Ye+40|0;ai=o[ci>>2];bi=_h;a:{if((_h|0)==(ai|0)){break a}while(1){ai=ai+ -4|0;_h=o[ai>>2];o[ai>>2]=0;if(_h){l[o[o[_h>>2]+4>>2]](_h)}if(($h|0)!=(ai|0)){continue}break}bi=o[Ye+36>>2]}_h=bi;o[ci>>2]=$h;ul(_h)}o[Ye>>2]=1384;_h=o[Ye+16>>2];if(_h){o[Ye+20>>2]=_h;ul(_h)}_h=o[Ye+4>>2];if(_h){o[Ye+8>>2]=_h;ul(_h)}return Ye|0}function Zd(Ye){Ye=Ye|0;var di=0,ei=0,fi=0,gi=0,hi=0;o[Ye>>2]=1692;di=Ye+60|0;ei=o[di>>2];o[di>>2]=0;if(ei){l[o[o[ei>>2]+4>>2]](ei)}di=o[Ye+48>>2];if(di){o[Ye+52>>2]=di;ul(di)}ei=o[Ye+36>>2];if(ei){di=ei;hi=Ye+40|0;fi=o[hi>>2];gi=di;a:{if((di|0)==(fi|0)){break a}while(1){fi=fi+ -4|0;di=o[fi>>2];o[fi>>2]=0;if(di){l[o[o[di>>2]+4>>2]](di)}if((ei|0)!=(fi|0)){continue}break}gi=o[Ye+36>>2]}di=gi;o[hi>>2]=ei;ul(di)}o[Ye>>2]=1384;di=o[Ye+16>>2];if(di){o[Ye+20>>2]=di;ul(di)}di=o[Ye+4>>2];if(di){o[Ye+8>>2]=di;ul(di)}ul(Ye)}function _d(Ye,ii){Ye=Ye|0;ii=ii|0;var ji=0,ki=0;ki=o[Ye+16>>2];ji=0;a:{if(o[Ye+20>>2]-ki>>2<=(ii|0)){break a}ii=o[(ii<<2)+ki>>2];ji=0;if((ii|0)<0){break a}ji=Ld(o[o[Ye+36>>2]+(ii<<2)>>2])}return ji|0}function $d(Ye){Gd(Ye);o[Ye+20>>2]=0;o[Ye>>2]=1908}function ae(o,Ye,ii){o=o|0;Ye=Ye|0;ii=ii|0;return Hd(o,Ye,ii)|0}function be(Ye,ii){Ye=Ye|0;ii=ii|0;return l[o[o[Ye>>2]+48>>2]](Ye,o[ii+4>>2]-o[ii>>2]>>2)|0}function ce(Ye,ii,li){Ye=Ye|0;ii=ii|0;li=li|0;var mi=0,ni=0,oi=0,pi=0,qi=0,ri=0,si=0,ti=0,ui=0,vi=0;oi=R-16|0;R=oi;si=o[li+8>>2];pi=o[li+16>>2];qi=o[li+12>>2];mi=qi;ni=o[li+20>>2];a:{if((mi|0)<(ni|0)?1:(mi|0)<=(ni|0)?si>>>0>pi>>>0?0:1:0){break a}ti=o[li>>2];ui=m[ti+pi|0];mi=ni;ri=pi+1|0;if(ri>>>0<1){mi=mi+1|0}o[li+16>>2]=ri;o[li+20>>2]=mi;b:{if((ui|0)==-2){break b}if((qi|0)<(mi|0)?1:(qi|0)<=(mi|0)?si>>>0>ri>>>0?0:1:0){break a}qi=m[ri+ti|0];pi=pi+2|0;if(pi>>>0<2){ni=ni+1|0}mi=li;o[mi+16>>2]=pi;o[mi+20>>2]=ni;l[o[o[Ye>>2]+40>>2]](oi+8|0,Ye,ui,qi);ni=o[oi+8>>2];o[oi+8>>2]=0;mi=o[Ye+20>>2];o[Ye+20>>2]=ni;if(!mi){o[oi+8>>2]=0;break b}l[o[o[mi>>2]+4>>2]](mi);mi=o[oi+8>>2];o[oi+8>>2]=0;if(!mi){break b}l[o[o[mi>>2]+4>>2]](mi)}mi=o[Ye+20>>2];if(mi){if(!l[o[o[Ye>>2]+28>>2]](Ye,mi)){break a}}vi=l[o[o[Ye>>2]+36>>2]](Ye,ii,li)|0}R=oi+16|0;return vi|0}function de(Ye,ii,li,wi){Ye=Ye|0;ii=ii|0;li=li|0;wi=wi|0;var xi=0,yi=0;xi=R-48|0;R=xi;a:{if((wi|0)!=1){o[Ye>>2]=0;break a}wi=o[ii+4>>2];ii=o[ii+12>>2];o[xi+40>>2]=0;yi=xi+32|0;o[yi>>2]=0;o[yi+4>>2]=0;o[xi+24>>2]=0;o[xi+28>>2]=0;o[xi+16>>2]=0;o[xi+20>>2]=0;o[xi+8>>2]=0;o[xi+12>>2]=0;ee(xi,li,ii,wi,xi+8|0);ii=o[yi>>2];if(ii){o[xi+36>>2]=ii;ul(ii)}o[Ye>>2]=o[xi>>2]}R=xi+48|0}function ee(Ye,ii,li,wi,zi){var Ai=0,Bi=0;a:{if((ii|0)!=-2){Bi=o[o[o[wi+4>>2]+8>>2]+(li<<2)>>2];if((l[o[o[wi>>2]+8>>2]](wi)|0)==1){Ai=ii;ii=q[wi+36>>1];le(Ye,wi,Ai,li,zi,(ii<<24|ii<<8&16711680)>>>16);if(o[Ye>>2]){break a}o[Ye>>2]=0}Ai=Hk(44);me(Ai,Bi,zi)}o[Ye>>2]=Ai}}function fe(Ye,ii,li){Ye=Ye|0;ii=ii|0;li=li|0;var wi=0,zi=0,Ci=0,Di=0,Ei=0,Fi=0,Gi=0,Hi=0,Ii=0,Ji=0,Ki=0,Li=0,Mi=0;a:{Ki=l[o[o[Ye>>2]+44>>2]](Ye)|0;if((Ki|0)<1){break a}Ei=o[ii+4>>2]-o[ii>>2]>>2;ge(Ye,Ei,Ki);wi=o[Ye+16>>2];if(!o[wi+80>>2]){break a}Ci=o[o[wi>>2]>>2];if(!Ci){break a}Gi=o[li+8>>2];Fi=o[li+16>>2];Di=o[li+12>>2];Hi=Di;zi=o[li+20>>2];if((Hi|0)<(zi|0)?1:(Hi|0)<=(zi|0)?Gi>>>0>Fi>>>0?0:1:0){break a}Hi=u(Ei,Ki);Ji=Ci+o[wi+48>>2]|0;Li=o[li>>2];Mi=p[Li+Fi|0];Ei=li;wi=zi;Ci=Fi+1|0;if(Ci>>>0<1){wi=wi+1|0}Ii=Ci;Ci=wi;o[Ei+16>>2]=Ii;o[Ei+20>>2]=wi;b:{c:{d:{if(Mi){if(_f(Hi,Ki,li,Ji)){break d}break a}if((Di|0)<(Ci|0)?1:(Di|0)<=(Ci|0)?Gi>>>0>Ii>>>0?0:1:0){break a}Ei=p[Ii+Li|0];wi=zi;zi=Fi+2|0;if(zi>>>0<2){wi=wi+1|0}o[li+16>>2]=zi;o[li+20>>2]=wi;wi=ti(5);zi=o[o[Ye+16>>2]- -64>>2];zi=o[zi+4>>2]-o[zi>>2]|0;e:{if((wi|0)==(Ei|0)){Ei=Hi<<2;if(zi>>>0<Ei>>>0){break a}Ci=o[li+12>>2];wi=o[li+20>>2];Fi=o[li+16>>2];zi=Ei;Di=Fi+zi|0;if(Di>>>0<zi>>>0){wi=wi+1|0}if((Ci|0)>(wi|0)?1:(Ci|0)>=(wi|0)?r[li+8>>2]<Di>>>0?0:1:0){break e}break a}if(zi>>>0<u(Ei,Hi)>>>0){break a}Fi=o[li+12>>2];wi=o[li+20>>2];Gi=o[li+8>>2];Ci=Gi;Ii=o[li+16>>2];Di=Ii;zi=Ei;Mi=Ci-Di>>>0>=Vl(zi,0,Hi,0)>>>0?0:1;Ci=Fi-(wi+(Ci>>>0<Di>>>0)|0)|0;Di=T;if((Ci|0)<(Di|0)?1:(Ci|0)<=(Di|0)?Mi:0){break a}Ci=0;if(!Hi){break c}Di=0;Ci=Gi;Gi=zi+Ii|0;if(Gi>>>0<zi>>>0){wi=wi+1|0}if((Fi|0)<(wi|0)?1:(Fi|0)<=(wi|0)?Ci>>>0>=Gi>>>0?0:1:0){break b}Gi=0;while(1){wl(Ji+(Gi<<2)|0,Ii+o[li>>2]|0,Ei);wi=o[li+20>>2];Ii=zi+o[li+16>>2]|0;if(Ii>>>0<zi>>>0){wi=wi+1|0}o[li+16>>2]=Ii;o[li+20>>2]=wi;Gi=Gi+1|0;if((Hi|0)==(Gi|0)){break d}Fi=o[li+12>>2];Li=zi+Ii|0;if(Li>>>0<zi>>>0){wi=wi+1|0}if((Fi|0)>(wi|0)?1:(Fi|0)>=(wi|0)?r[li+8>>2]<Li>>>0?0:1:0){continue}break}break b}wl(Ji,Fi+o[li>>2]|0,Ei);wi=o[li+20>>2];Ci=zi+o[li+16>>2]|0;if(Ci>>>0<zi>>>0){wi=wi+1|0}o[li+16>>2]=Ci;o[li+20>>2]=wi}Ci=0;if(!Hi){break c}zi=o[Ye+20>>2];if(zi){Ci=1;if(l[o[o[zi>>2]+32>>2]](zi)){break c}}ji(Ji,Hi,Ji);Ci=1}zi=o[Ye+20>>2];f:{if(!zi){break f}if(!l[o[o[zi>>2]+40>>2]](zi,li)){break a}if(!Ci){break f}Di=0;Ye=o[Ye+20>>2];if(!l[o[o[Ye>>2]+44>>2]](Ye,Ji,Ji,Hi,Ki,o[ii>>2])){break b}}Di=1}return Di|0}return 0}function ge(Ye,ii,li){var Ni=0,Oi=0,Pi=0,Qi=0;Ni=R-80|0;R=Ni;Oi=ld(Ni+16|0);Pi=o[o[Ye+8>>2]+56>>2];Qi=li<<24>>24;li=u(ti(5),li);md(Oi,Pi,Qi,5,0,li,li>>31);li=Hk(96);qd(li,Oi);o[Ni+8>>2]=li;m[li+84|0]=1;o[li+72>>2]=o[li+68>>2];rd(li,ii);o[Ni>>2]=0;ii=o[Ni+8>>2];o[Ni+8>>2]=0;li=Ye+16|0;Ye=o[li>>2];o[li>>2]=ii;a:{if(!Ye){o[Ni>>2]=0;break a}Fb(Ye);Ye=o[Ni>>2];o[Ni>>2]=0;if(!Ye){break a}Fb(Ye)}Ye=o[Ni+8>>2];o[Ni+8>>2]=0;if(Ye){Fb(Ye)}R=Ni+80|0}function he(Ye,ii){Ye=Ye|0;ii=ii|0;var li=0,Ri=0,Si=0,Ti=0,Ui=0,Vi=0,Wi=0,Xi=0,Yi=0;Ri=o[Ye+8>>2];li=o[Ri+28>>2]+ -1|0;if(li>>>0>5){return 0}a:{b:{switch(li-1|0){case 0:Ti=m[Ri+24|0];Ui=Hk((Ti|0)>-1?Ti:-1);li=o[Ye+16>>2];Ri=0;c:{if(!o[li+80>>2]){break c}Ri=o[o[li>>2]>>2]+o[li+48>>2]|0}if(!ii){break a}Vi=(Ti|0)<1;Xi=Ye+8|0;li=0;while(1){Ye=0;if(!Vi){while(1){m[Ye+Ui|0]=o[Ri+(li<<2)>>2];li=li+1|0;Ye=Ye+1|0;if((Ti|0)!=(Ye|0)){continue}break}}wl(o[o[o[Xi>>2]- -64>>2]>>2]+Wi|0,Ui,Ti);Wi=Ti+Wi|0;Si=Si+1|0;if((Si|0)!=(ii|0)){continue}break}break a;default:Ti=m[Ri+24|0];Ui=Hk((Ti|0)>-1?Ti:-1);li=o[Ye+16>>2];Ri=0;d:{if(!o[li+80>>2]){break d}Ri=o[o[li>>2]>>2]+o[li+48>>2]|0}if(!ii){break a}Vi=(Ti|0)<1;Xi=Ye+8|0;li=0;while(1){Ye=0;if(!Vi){while(1){m[Ye+Ui|0]=o[Ri+(li<<2)>>2];li=li+1|0;Ye=Ye+1|0;if((Ti|0)!=(Ye|0)){continue}break}}wl(o[o[o[Xi>>2]- -64>>2]>>2]+Wi|0,Ui,Ti);Wi=Ti+Wi|0;Si=Si+1|0;if((Si|0)!=(ii|0)){continue}break}break a;case 2:Si=m[Ri+24|0];Ri=Si+Si|0;Ui=Hk(Ri>>>0<Si>>>0?-1:Ri);li=o[Ye+16>>2];Ri=0;e:{if(!o[li+80>>2]){break e}Ri=o[o[li>>2]>>2]+o[li+48>>2]|0}if(!ii){break a}Vi=Si<<1;Xi=(Si|0)<1;Yi=Ye+8|0;li=0;while(1){Ye=0;if(!Xi){while(1){n[(Ye<<1)+Ui>>1]=o[Ri+(li<<2)>>2];li=li+1|0;Ye=Ye+1|0;if((Si|0)!=(Ye|0)){continue}break}}wl(o[o[o[Yi>>2]- -64>>2]>>2]+Wi|0,Ui,Vi);Wi=Wi+Vi|0;Ti=Ti+1|0;if((Ti|0)!=(ii|0)){continue}break}break a;case 1:Si=m[Ri+24|0];Ri=Si+Si|0;Ui=Hk(Ri>>>0<Si>>>0?-1:Ri);li=o[Ye+16>>2];Ri=0;f:{if(!o[li+80>>2]){break f}Ri=o[o[li>>2]>>2]+o[li+48>>2]|0}if(!ii){break a}Vi=Si<<1;Xi=(Si|0)<1;Yi=Ye+8|0;li=0;while(1){Ye=0;if(!Xi){while(1){n[(Ye<<1)+Ui>>1]=o[Ri+(li<<2)>>2];li=li+1|0;Ye=Ye+1|0;if((Si|0)!=(Ye|0)){continue}break}}wl(o[o[o[Yi>>2]- -64>>2]>>2]+Wi|0,Ui,Vi);Wi=Wi+Vi|0;Ti=Ti+1|0;if((Ti|0)!=(ii|0)){continue}break}break a;case 4:Si=m[Ri+24|0];Vi=Si<<2;Ui=Hk((Si|0)!=(Si&1073741823)?-1:Vi);li=o[Ye+16>>2];Ri=0;g:{if(!o[li+80>>2]){break g}Ri=o[o[li>>2]>>2]+o[li+48>>2]|0}if(!ii){break a}Xi=(Si|0)<1;Yi=Ye+8|0;li=0;while(1){Ye=0;if(!Xi){while(1){o[(Ye<<2)+Ui>>2]=o[Ri+(li<<2)>>2];li=li+1|0;Ye=Ye+1|0;if((Si|0)!=(Ye|0)){continue}break}}wl(o[o[o[Yi>>2]- -64>>2]>>2]+Wi|0,Ui,Vi);Wi=Wi+Vi|0;Ti=Ti+1|0;if((Ti|0)!=(ii|0)){continue}break}break a;case 3:break b}}Si=m[Ri+24|0];Vi=Si<<2;Ui=Hk((Si|0)!=(Si&1073741823)?-1:Vi);li=o[Ye+16>>2];Ri=0;h:{if(!o[li+80>>2]){break h}Ri=o[o[li>>2]>>2]+o[li+48>>2]|0}if(!ii){break a}Xi=(Si|0)<1;Yi=Ye+8|0;li=0;while(1){Ye=0;if(!Xi){while(1){o[(Ye<<2)+Ui>>2]=o[Ri+(li<<2)>>2];li=li+1|0;Ye=Ye+1|0;if((Si|0)!=(Ye|0)){continue}break}}wl(o[o[o[Yi>>2]- -64>>2]>>2]+Wi|0,Ui,Vi);Wi=Wi+Vi|0;Ti=Ti+1|0;if((Ti|0)!=(ii|0)){continue}break}}ul(Ui);return 1}function ie(Ye){Ye=Ye|0;var ii=0,Zi=0;o[Ye>>2]=1908;Zi=Ye+20|0;ii=o[Zi>>2];o[Zi>>2]=0;if(ii){l[o[o[ii>>2]+4>>2]](ii)}o[Ye>>2]=1596;Zi=Ye+16|0;ii=o[Zi>>2];o[Zi>>2]=0;if(ii){Fb(ii)}return Ye|0}function je(Ye){Ye=Ye|0;var _i=0,$i=0;o[Ye>>2]=1908;$i=Ye+20|0;_i=o[$i>>2];o[$i>>2]=0;if(_i){l[o[o[_i>>2]+4>>2]](_i)}o[Ye>>2]=1596;$i=Ye+16|0;_i=o[$i>>2];o[$i>>2]=0;if(_i){Fb(_i)}ul(Ye)}function ke(Ye){Ye=Ye|0;return m[o[Ye+8>>2]+24|0]}function le(Ye,aj,bj,cj,dj,ej){var fj=0,gj=0,hj=0;ej=R-32|0;R=ej;gj=o[o[o[aj+4>>2]+8>>2]+(cj<<2)>>2];a:{b:{if((l[o[o[aj>>2]+8>>2]](aj)|0)!=1|bj+ -1>>>0>5){break b}hj=l[o[o[aj>>2]+36>>2]](aj)|0;fj=l[o[o[aj>>2]+44>>2]](aj,cj)|0;if(!(fj?hj:0)){o[Ye>>2]=0;break a}cj=l[o[o[aj>>2]+40>>2]](aj,cj)|0;if(cj){aj=o[aj+44>>2];o[ej+12>>2]=cj;o[ej+8>>2]=aj;o[ej+20>>2]=fj;o[ej+16>>2]=fj+12;ne(Ye,bj,gj,dj,ej+8|0);if(o[Ye>>2]){break a}o[Ye>>2]=0;break b}aj=o[aj+44>>2];o[ej+12>>2]=hj;o[ej+8>>2]=aj;o[ej+20>>2]=fj;o[ej+16>>2]=fj+12;oe(Ye,bj,gj,dj,ej+8|0);if(o[Ye>>2]){break a}o[Ye>>2]=0}o[Ye>>2]=0}R=ej+32|0}function me(Ye,aj,bj){var cj=0,dj=0,ej=0,ij=0,jj=0,kj=0,lj=0,mj=0;o[Ye>>2]=2732;o[Ye+4>>2]=aj;aj=o[bj+8>>2];cj=o[bj+12>>2];dj=o[bj+16>>2];ij=o[bj+20>>2];jj=o[bj>>2];kj=o[bj+4>>2];o[Ye+40>>2]=0;ej=Ye+32|0;o[ej>>2]=0;o[ej+4>>2]=0;o[Ye+24>>2]=dj;o[Ye+28>>2]=ij;o[Ye+16>>2]=aj;o[Ye+20>>2]=cj;o[Ye+8>>2]=jj;o[Ye+12>>2]=kj;a:{aj=o[bj+28>>2]-o[bj+24>>2]|0;b:{if(!aj){break b}cj=aj>>2;if(cj>>>0>=1073741824){break a}aj=Hk(aj);o[Ye+32>>2]=aj;dj=Ye+36|0;o[dj>>2]=aj;o[Ye+40>>2]=aj+(cj<<2);cj=o[bj+24>>2];bj=o[bj+28>>2]-cj|0;if((bj|0)<1){break b}lj=dj,mj=wl(aj,cj,bj)+bj|0,o[lj>>2]=mj}o[Ye>>2]=5368;return}Yk();D()}function ne(Ye,aj,bj,nj,oj){var pj=0;a:{aj=aj+ -1|0;b:{if(aj>>>0>5){break b}c:{switch(aj-1|0){default:aj=Hk(60);pe(aj,bj,nj,oj);o[aj>>2]=2024;break a;case 2:aj=Hk(112);pe(aj,bj,nj,oj);o[aj>>2]=2788;o[aj+60>>2]=0;o[aj+64>>2]=0;o[aj+68>>2]=0;o[aj+72>>2]=0;o[aj+76>>2]=0;o[aj+80>>2]=0;o[aj+84>>2]=0;o[aj+88>>2]=0;o[aj+92>>2]=0;o[aj+96>>2]=0;o[aj+100>>2]=0;o[aj+104>>2]=0;o[aj+108>>2]=0;break a;case 3:aj=Hk(104);pe(aj,bj,nj,oj);o[aj+76>>2]=0;o[aj+80>>2]=0;o[aj+60>>2]=0;o[aj+64>>2]=0;o[aj>>2]=3036;o[aj+84>>2]=0;bj=o[oj+4>>2];o[aj+88>>2]=o[oj>>2];o[aj+92>>2]=bj;bj=o[oj+12>>2];o[aj+96>>2]=o[oj+8>>2];o[aj+100>>2]=bj;break a;case 0:case 1:break b;case 4:break c}}pj=Hk(124);pe(pj,bj,nj,oj);o[pj>>2]=3272;aj=pj- -64|0;o[aj>>2]=0;o[aj+4>>2]=0;aj=o[oj+4>>2];o[pj+72>>2]=o[oj>>2];o[pj+76>>2]=aj;aj=o[oj+12>>2];o[pj+80>>2]=o[oj+8>>2];o[pj+84>>2]=aj;o[pj+92>>2]=-1;o[pj+96>>2]=-1;o[pj+88>>2]=1;o[pj+60>>2]=3508;o[pj+100>>2]=-1;o[pj+104>>2]=-1;Mf(pj+108|0)}o[Ye>>2]=pj;return}o[Ye>>2]=aj}function oe(Ye,aj,bj,nj,oj){var qj=0;a:{aj=aj+ -1|0;b:{if(aj>>>0>5){break b}c:{switch(aj-1|0){default:aj=Hk(60);Xe(aj,bj,nj,oj);o[aj>>2]=3900;break a;case 2:aj=Hk(112);Xe(aj,bj,nj,oj);o[aj>>2]=4324;o[aj+60>>2]=0;o[aj+64>>2]=0;o[aj+68>>2]=0;o[aj+72>>2]=0;o[aj+76>>2]=0;o[aj+80>>2]=0;o[aj+84>>2]=0;o[aj+88>>2]=0;o[aj+92>>2]=0;o[aj+96>>2]=0;o[aj+100>>2]=0;o[aj+104>>2]=0;o[aj+108>>2]=0;break a;case 3:aj=Hk(104);Xe(aj,bj,nj,oj);o[aj+76>>2]=0;o[aj+80>>2]=0;o[aj+60>>2]=0;o[aj+64>>2]=0;o[aj>>2]=4560;o[aj+84>>2]=0;bj=o[oj+4>>2];o[aj+88>>2]=o[oj>>2];o[aj+92>>2]=bj;bj=o[oj+12>>2];o[aj+96>>2]=o[oj+8>>2];o[aj+100>>2]=bj;break a;case 0:case 1:break b;case 4:break c}}qj=Hk(124);Xe(qj,bj,nj,oj);o[qj>>2]=4784;aj=qj- -64|0;o[aj>>2]=0;o[aj+4>>2]=0;aj=o[oj+4>>2];o[qj+72>>2]=o[oj>>2];o[qj+76>>2]=aj;aj=o[oj+12>>2];o[qj+80>>2]=o[oj+8>>2];o[qj+84>>2]=aj;o[qj+92>>2]=-1;o[qj+96>>2]=-1;o[qj+88>>2]=1;o[qj+60>>2]=5004;o[qj+100>>2]=-1;o[qj+104>>2]=-1;Mf(qj+108|0)}o[Ye>>2]=qj;return}o[Ye>>2]=aj}function pe(Ye,aj,bj,nj){var oj=0,rj=0,sj=0,tj=0,uj=0,vj=0,wj=0,xj=0;o[Ye>>2]=2732;o[Ye+4>>2]=aj;aj=o[bj+8>>2];oj=o[bj+12>>2];rj=o[bj+16>>2];tj=o[bj+20>>2];uj=o[bj>>2];vj=o[bj+4>>2];o[Ye+40>>2]=0;sj=Ye+32|0;o[sj>>2]=0;o[sj+4>>2]=0;o[Ye+24>>2]=rj;o[Ye+28>>2]=tj;o[Ye+16>>2]=aj;o[Ye+20>>2]=oj;o[Ye+8>>2]=uj;o[Ye+12>>2]=vj;a:{aj=o[bj+28>>2]-o[bj+24>>2]|0;b:{if(!aj){break b}oj=aj>>2;if(oj>>>0>=1073741824){break a}aj=Hk(aj);o[Ye+32>>2]=aj;rj=Ye+36|0;o[rj>>2]=aj;o[Ye+40>>2]=aj+(oj<<2);oj=o[bj+24>>2];bj=o[bj+28>>2]-oj|0;if((bj|0)<1){break b}wj=rj,xj=wl(aj,oj,bj)+bj|0,o[wj>>2]=xj}o[Ye>>2]=2676;aj=o[nj+4>>2];o[Ye+44>>2]=o[nj>>2];o[Ye+48>>2]=aj;aj=o[nj+12>>2];o[Ye+52>>2]=o[nj+8>>2];o[Ye+56>>2]=aj;return}Yk();D()}function qe(Ye){Ye=Ye|0;var aj=0;o[Ye>>2]=2732;aj=o[Ye+32>>2];if(aj){o[Ye+36>>2]=aj;ul(aj)}return Ye|0}function re(Ye){Ye=Ye|0;var bj=0;o[Ye>>2]=2732;bj=o[Ye+32>>2];if(bj){o[Ye+36>>2]=bj;ul(bj)}ul(Ye)}function se(Ye){Ye=Ye|0;var nj=0;if(!(!o[Ye+52>>2]|(!o[Ye+44>>2]|!o[Ye+48>>2]))){nj=o[Ye+56>>2]!=0}return nj|0}function te(o){o=o|0;return 0}function ue(o,Ye){o=o|0;Ye=Ye|0;return-1}function ve(Ye,yj){Ye=Ye|0;yj=yj|0;var zj=0,Aj=0,Bj=0,Cj=0,Dj=0,Ej=0,Fj=0,Gj=0,Hj=0,Ij=0;Aj=o[yj+12>>2];Fj=Aj;zj=o[yj+20>>2];Cj=zj;Dj=o[yj+16>>2];Bj=Dj+4|0;if(Bj>>>0<4){zj=zj+1|0}Gj=o[yj+8>>2];Ej=Bj;Bj=zj;a:{if((Aj|0)<(zj|0)?1:(Aj|0)<=(zj|0)?Gj>>>0>=Ej>>>0?0:1:0){break a}Hj=o[yj>>2];zj=Hj+Dj|0;Aj=p[zj|0]|p[zj+1|0]<<8|(p[zj+2|0]<<16|p[zj+3|0]<<24);o[yj+16>>2]=Ej;o[yj+20>>2]=Bj;zj=Cj;Cj=Dj+8|0;if(Cj>>>0<8){zj=zj+1|0}Bj=Cj;Cj=zj;if((Fj|0)<(zj|0)?1:(Fj|0)<=(zj|0)?Gj>>>0>=Bj>>>0?0:1:0){break a}zj=Ej+Hj|0;zj=p[zj|0]|p[zj+1|0]<<8|(p[zj+2|0]<<16|p[zj+3|0]<<24);o[yj+16>>2]=Bj;o[yj+20>>2]=Cj;if((Aj|0)>(zj|0)){break a}o[Ye+16>>2]=zj;o[Ye+12>>2]=Aj;yj=Aj;Aj=(zj>>31)-((zj>>>0<yj>>>0)+(yj>>31)|0)|0;yj=zj-yj|0;if(!Aj&yj>>>0>2147483646|Aj>>>0>0){break a}Ij=1;yj=yj+1|0;o[Ye+20>>2]=yj;Aj=Ye+24|0;zj=(yj|0)/2|0;o[Aj>>2]=zj;o[Ye+28>>2]=0-zj;if(yj&1){break a}o[Aj>>2]=zj+ -1}return Ij|0}function we(Ye,yj,Jj,Kj,Lj,Mj){Ye=Ye|0;yj=yj|0;Jj=Jj|0;Kj=Kj|0;Lj=Lj|0;Mj=Mj|0;var Nj=0,Oj=0,Pj=0,Qj=0,Rj=0,Sj=0,Tj=0,Uj=0,Vj=0,Wj=0,Xj=0,Yj=0,Zj=0,_j=0,$j=0,ak=0;o[Ye+8>>2]=Lj;Mj=Ye+32|0;Nj=o[Mj>>2];Kj=o[Ye+36>>2]-Nj>>2;a:{if(Kj>>>0<Lj>>>0){Da(Mj,Lj-Kj|0);break a}if(Kj>>>0<=Lj>>>0){break a}o[Ye+36>>2]=Nj+(Lj<<2)}$j=o[Ye+52>>2];Yj=o[Ye+48>>2];Kj=0;Mj=(Lj&1073741823)!=(Lj|0)?-1:Lj<<2;Wj=xl(Hk(Mj),0,Mj);Sj=Ye+8|0;Mj=o[Sj>>2];b:{if((Mj|0)<1){break b}Tj=Ye+16|0;Nj=Ye+32|0;Uj=Ye+12|0;while(1){Mj=Kj<<2;Pj=o[Mj+Wj>>2];Rj=o[Tj>>2];c:{if((Pj|0)>(Rj|0)){Oj=o[Nj>>2];o[Mj+Oj>>2]=Rj;break c}Oj=o[Nj>>2];Mj=Mj+Oj|0;Rj=o[Uj>>2];if((Pj|0)<(Rj|0)){o[Mj>>2]=Rj;break c}o[Mj>>2]=Pj}Kj=Kj+1|0;Mj=o[Sj>>2];if((Kj|0)<(Mj|0)){continue}break}if((Mj|0)<1){break b}Nj=0;Sj=Ye+16|0;Pj=Ye+20|0;Tj=Ye+8|0;Uj=Ye+12|0;while(1){Mj=Nj<<2;Kj=Mj+Jj|0;Mj=o[yj+Mj>>2]+o[Mj+Oj>>2]|0;o[Kj>>2]=Mj;d:{if((Mj|0)>o[Sj>>2]){Mj=Mj-o[Pj>>2]|0}else{if((Mj|0)>=o[Uj>>2]){break d}Mj=Mj+o[Pj>>2]|0}o[Kj>>2]=Mj}Nj=Nj+1|0;Mj=o[Tj>>2];if((Nj|0)<(Mj|0)){continue}break}}Kj=o[Ye+56>>2];Zj=o[Kj>>2];Kj=o[Kj+4>>2]-Zj|0;if((Kj|0)>=5){_j=Kj>>2;Sj=Ye+16|0;Tj=Ye+32|0;Uj=Ye+8|0;Rj=Ye+20|0;Xj=Ye+12|0;ak=Yj+28|0;Pj=1;while(1){e:{f:{if(_j>>>0>Pj>>>0){Vj=u(Lj,Pj);Ye=o[(Pj<<2)+Zj>>2];if((Ye|0)==-1|o[o[Yj>>2]+(Ye>>>3&536870908)>>2]>>>(Ye&31)&1){break f}Ye=o[o[o[Yj+64>>2]+12>>2]+(Ye<<2)>>2];if((Ye|0)==-1){break f}Nj=o[$j>>2];Kj=o[ak>>2];Oj=o[Nj+(o[Kj+(Ye<<2)>>2]<<2)>>2];if((Oj|0)>=(Pj|0)){break f}Qj=Ye+1|0;Qj=o[Nj+(o[Kj+(((Qj>>>0)%3|0?Qj:Ye+ -2|0)<<2)>>2]<<2)>>2];if((Qj|0)>=(Pj|0)){break f}Ye=o[Nj+(o[Kj+(Ye+((Ye>>>0)%3|0?-1:2)<<2)>>2]<<2)>>2];if((Ye|0)>=(Pj|0)){break f}if((Lj|0)>=1){Ye=u(Ye,Lj);Nj=u(Lj,Qj);Oj=u(Lj,Oj);Kj=0;while(1){o[(Kj<<2)+Wj>>2]=(o[(Ye+Kj<<2)+Jj>>2]+o[(Kj+Nj<<2)+Jj>>2]|0)-o[(Kj+Oj<<2)+Jj>>2];Kj=Kj+1|0;if((Lj|0)!=(Kj|0)){continue}break}}if((Mj|0)<1){break e}Kj=0;while(1){Ye=Kj<<2;Mj=o[Ye+Wj>>2];Nj=o[Sj>>2];g:{if((Mj|0)>(Nj|0)){Oj=o[Tj>>2];o[Ye+Oj>>2]=Nj;break g}Oj=o[Tj>>2];Ye=Ye+Oj|0;Nj=o[Xj>>2];if((Mj|0)<(Nj|0)){o[Ye>>2]=Nj;break g}o[Ye>>2]=Mj}Kj=Kj+1|0;Mj=o[Uj>>2];if((Kj|0)<(Mj|0)){continue}break}Nj=0;if((Mj|0)<1){break e}Ye=Vj<<2;Vj=Ye+Jj|0;Qj=Ye+yj|0;while(1){Kj=Nj<<2;Ye=Kj+Vj|0;Kj=o[Kj+Qj>>2]+o[Kj+Oj>>2]|0;o[Ye>>2]=Kj;h:{if((Kj|0)>o[Sj>>2]){Kj=Kj-o[Rj>>2]|0}else{if((Kj|0)>=o[Xj>>2]){break h}Kj=Kj+o[Rj>>2]|0}o[Ye>>2]=Kj}Nj=Nj+1|0;Mj=o[Uj>>2];if((Nj|0)<(Mj|0)){continue}break}break e}Zk();D()}if((Mj|0)<1){break e}Nj=(u(Pj+ -1|0,Lj)<<2)+Jj|0;Kj=0;while(1){Ye=Kj<<2;Mj=o[Ye+Nj>>2];Qj=o[Sj>>2];i:{if((Mj|0)>(Qj|0)){Oj=o[Tj>>2];o[Ye+Oj>>2]=Qj;break i}Oj=o[Tj>>2];Ye=Ye+Oj|0;Qj=o[Xj>>2];if((Mj|0)<(Qj|0)){o[Ye>>2]=Qj;break i}o[Ye>>2]=Mj}Kj=Kj+1|0;Mj=o[Uj>>2];if((Kj|0)<(Mj|0)){continue}break}Nj=0;if((Mj|0)<1){break e}Ye=Vj<<2;Vj=Ye+Jj|0;Qj=Ye+yj|0;while(1){Kj=Nj<<2;Ye=Kj+Vj|0;Kj=o[Kj+Qj>>2]+o[Kj+Oj>>2]|0;o[Ye>>2]=Kj;j:{if((Kj|0)>o[Sj>>2]){Kj=Kj-o[Rj>>2]|0}else{if((Kj|0)>=o[Xj>>2]){break j}Kj=Kj+o[Rj>>2]|0}o[Ye>>2]=Kj}Nj=Nj+1|0;Mj=o[Uj>>2];if((Nj|0)<(Mj|0)){continue}break}}Pj=Pj+1|0;if((Pj|0)<(_j|0)){continue}break}}ul(Wj);return 1}function xe(Ye){Ye=Ye|0;var yj=0;o[Ye>>2]=2788;yj=o[Ye+96>>2];if(yj){ul(yj)}yj=o[Ye+84>>2];if(yj){ul(yj)}yj=o[Ye+72>>2];if(yj){ul(yj)}yj=o[Ye+60>>2];if(yj){ul(yj)}o[Ye>>2]=2732;yj=o[Ye+32>>2];if(yj){o[Ye+36>>2]=yj;ul(yj)}return Ye|0}function ye(Ye){Ye=Ye|0;var Jj=0;o[Ye>>2]=2788;Jj=o[Ye+96>>2];if(Jj){ul(Jj)}Jj=o[Ye+84>>2];if(Jj){ul(Jj)}Jj=o[Ye+72>>2];if(Jj){ul(Jj)}Jj=o[Ye+60>>2];if(Jj){ul(Jj)}o[Ye>>2]=2732;Jj=o[Ye+32>>2];if(Jj){o[Ye+36>>2]=Jj;ul(Jj)}ul(Ye)}function ze(o){o=o|0;return 4}function Ae(Ye,Kj){Ye=Ye|0;Kj=Kj|0;var Lj=0,Mj=0,bk=0,ck=0,dk=0,ek=0,fk=0,gk=0,hk=0,ik=0,jk=0;fk=R-32|0;R=fk;a:{b:{while(1){if(!Be(1,fk+28|0,Kj)){break b}Lj=o[fk+28>>2];if(Lj){ck=(u(Mj,12)+Ye|0)+60|0;Ce(ck,Lj);ek=Mf(fk+8|0);if(!Nf(ek,Kj)){break b}dk=0;while(1){gk=1<<(dk&31);hk=Pf(ek);bk=o[ck>>2]+(dk>>>3&536870908)|0;ik=bk;if(hk){bk=gk|o[bk>>2]}else{bk=o[bk>>2]&(gk^-1)}o[ik>>2]=bk;dk=dk+1|0;if((Lj|0)!=(dk|0)){continue}break}}Mj=Mj+1|0;if((Mj|0)!=4){continue}break}dk=0;Mj=o[Kj+12>>2];gk=Mj;Lj=o[Kj+20>>2];bk=Lj;ek=o[Kj+16>>2];ck=ek+4|0;if(ck>>>0<4){Lj=Lj+1|0}ik=o[Kj+8>>2];hk=ck;ck=Lj;if((Mj|0)<(Lj|0)?1:(Mj|0)<=(Lj|0)?ik>>>0>=hk>>>0?0:1:0){break a}jk=o[Kj>>2];Lj=jk+ek|0;Mj=p[Lj|0]|p[Lj+1|0]<<8|(p[Lj+2|0]<<16|p[Lj+3|0]<<24);o[Kj+16>>2]=hk;o[Kj+20>>2]=ck;Lj=bk;bk=ek+8|0;if(bk>>>0<8){Lj=Lj+1|0}ck=bk;bk=Lj;if((gk|0)<(Lj|0)?1:(gk|0)<=(Lj|0)?ik>>>0>=ck>>>0?0:1:0){break a}Lj=hk+jk|0;Lj=p[Lj|0]|p[Lj+1|0]<<8|(p[Lj+2|0]<<16|p[Lj+3|0]<<24);o[Kj+16>>2]=ck;o[Kj+20>>2]=bk;if((Mj|0)>(Lj|0)){break a}o[Ye+16>>2]=Lj;o[Ye+12>>2]=Mj;Kj=Mj;Mj=(Lj>>31)-((Lj>>>0<Kj>>>0)+(Kj>>31)|0)|0;Kj=Lj-Kj|0;if(!Mj&Kj>>>0>2147483646|Mj>>>0>0){break a}dk=1;Kj=Kj+1|0;o[Ye+20>>2]=Kj;Mj=Ye+24|0;Lj=(Kj|0)/2|0;o[Mj>>2]=Lj;o[Ye+28>>2]=0-Lj;if(Kj&1){break a}o[Mj>>2]=Lj+ -1;break a}dk=0}R=fk+32|0;return dk|0}function Be(Ye,Kj,kk){var lk=0,mk=0,nk=0,ok=0;a:{if(Ye>>>0>5){break a}nk=o[kk+16>>2];lk=o[kk+12>>2];mk=o[kk+20>>2];if((lk|0)<(mk|0)?1:(lk|0)<=(mk|0)?r[kk+8>>2]>nk>>>0?0:1:0){break a}lk=p[nk+o[kk>>2]|0];nk=nk+1|0;if(nk>>>0<1){mk=mk+1|0}o[kk+16>>2]=nk;o[kk+20>>2]=mk;mk=Kj;if(lk&128){if(!Be(Ye+1|0,Kj,kk)){break a}Ye=o[Kj>>2]<<7;o[Kj>>2]=Ye;lk=Ye|lk&127}o[mk>>2]=lk;ok=1}return ok}function Ce(Ye,Kj){var kk=0,pk=0,qk=0,rk=0,sk=0,tk=0;pk=R-32|0;R=pk;a:{kk=o[Ye+4>>2];b:{if(kk>>>0<Kj>>>0){sk=o[Ye+8>>2];qk=sk<<5;rk=Kj-kk|0;c:{if(!(qk>>>0<rk>>>0|kk>>>0>qk-rk>>>0)){o[Ye+4>>2]=Kj;Kj=kk&31;Ye=o[Ye>>2]+(kk>>>3&536870908)|0;break c}o[pk+24>>2]=0;o[pk+16>>2]=0;o[pk+20>>2]=0;if((Kj|0)<=-1){break a}kk=pk+16|0;if(qk>>>0<=1073741822){Kj=Kj+31&-32;qk=sk<<6;Kj=qk>>>0<Kj>>>0?Kj:qk}else{Kj=2147483647}ab(kk,Kj);kk=o[Ye+4>>2];o[pk+20>>2]=kk+rk;Kj=o[pk+16>>2];d:{if((kk|0)<1){kk=0;break d}sk=o[Ye>>2];qk=kk>>>5<<2;Kj=yl(Kj,sk,qk)+qk|0;kk=kk&31;if(!kk){kk=0;break d}tk=-1>>>32-kk;o[Kj>>2]=o[Kj>>2]&(tk^-1)|o[qk+sk>>2]&tk}o[pk+12>>2]=kk;o[pk+8>>2]=Kj;kk=o[pk+8>>2];Kj=o[pk+12>>2];qk=o[Ye>>2];o[Ye>>2]=o[pk+16>>2];o[pk+16>>2]=qk;sk=o[Ye+4>>2];o[Ye+4>>2]=o[pk+20>>2];o[pk+20>>2]=sk;Ye=Ye+8|0;sk=o[Ye>>2];o[Ye>>2]=o[pk+24>>2];o[pk+24>>2]=sk;if(qk){ul(qk)}Ye=kk}if(!rk){break b}if(Kj){kk=32-Kj|0;qk=kk>>>0>rk>>>0?rk:kk;o[Ye>>2]=o[Ye>>2]&(-1<<Kj&-1>>>kk-qk^-1);rk=rk-qk|0;Ye=Ye+4|0}Kj=Ye;Ye=rk>>>5<<2;Kj=xl(Kj,0,Ye);kk=rk&31;if(!kk){break b}Ye=Ye+Kj|0;o[Ye>>2]=o[Ye>>2]&(-1>>>32-kk^-1);break b}o[Ye+4>>2]=Kj}R=pk+32|0;return}Yk();D()}function De(Ye,Kj,uk,vk,wk,xk){Ye=Ye|0;Kj=Kj|0;uk=uk|0;vk=vk|0;wk=wk|0;xk=xk|0;var yk=0,zk=0,Ak=0,Bk=0,Ck=0,Dk=0,Ek=0,Fk=0,Gk=0,Ik=0,Jk=0,Kk=0,Lk=0,Mk=0,Nk=0,Ok=0,Pk=0,Qk=0,Rk=0,Sk=0,Tk=0,Uk=0,Vk=0,Wk=0,Xk=0,_k=0;Ak=R+ -64|0;R=Ak;o[Ye+8>>2]=wk;xk=Ye+32|0;Bk=o[xk>>2];vk=o[Ye+36>>2]-Bk>>2;a:{if(vk>>>0<wk>>>0){Da(xk,wk-vk|0);break a}if(vk>>>0<=wk>>>0){break a}o[Ye+36>>2]=Bk+(wk<<2)}o[Ak+56>>2]=0;o[Ak+60>>2]=0;o[Ak+48>>2]=0;o[Ak+52>>2]=0;o[Ak+40>>2]=0;o[Ak+44>>2]=0;xk=Ak+32|0;o[xk>>2]=0;o[xk+4>>2]=0;o[Ak+24>>2]=0;o[Ak+28>>2]=0;o[Ak+16>>2]=0;o[Ak+20>>2]=0;o[Ak>>2]=0;vk=0;if(wk){yd(Ak+16|0,wk,Ak);zk=o[Ak+28>>2];vk=o[xk>>2]}o[Ak>>2]=0;vk=vk-zk>>2;b:{if(vk>>>0>=wk>>>0){if(vk>>>0<=wk>>>0){break b}o[Ak+32>>2]=(wk<<2)+zk;break b}yd(Ak+16|12,wk-vk|0,Ak)}o[Ak>>2]=0;xk=o[Ak+40>>2];vk=o[Ak+44>>2]-xk>>2;c:{if(vk>>>0>=wk>>>0){if(vk>>>0<=wk>>>0){break c}o[Ak+44>>2]=xk+(wk<<2);break c}yd(Ak+40|0,wk-vk|0,Ak)}o[Ak>>2]=0;xk=o[Ak+52>>2];vk=o[Ak+56>>2]-xk>>2;d:{if(vk>>>0>=wk>>>0){if(vk>>>0<=wk>>>0){break d}o[Ak+56>>2]=xk+(wk<<2);break d}yd(Ak+52|0,wk-vk|0,Ak)}Dk=Ye+8|0;e:{if(o[Dk>>2]<=0){break e}Ek=o[Ak+16>>2];zk=0;Gk=Ye+16|0;vk=Ye+32|0;Ck=Ye+12|0;while(1){xk=zk<<2;yk=o[xk+Ek>>2];Ik=o[Gk>>2];f:{if((yk|0)>(Ik|0)){Bk=o[vk>>2];o[xk+Bk>>2]=Ik;break f}Bk=o[vk>>2];xk=xk+Bk|0;Ik=o[Ck>>2];if((yk|0)<(Ik|0)){o[xk>>2]=Ik;break f}o[xk>>2]=yk}zk=zk+1|0;xk=o[Dk>>2];if((zk|0)<(xk|0)){continue}break}if((xk|0)<1){break e}vk=0;Dk=Ye+16|0;zk=Ye+20|0;Ek=Ye+8|0;Gk=Ye+12|0;while(1){yk=vk<<2;xk=yk+uk|0;yk=o[Kj+yk>>2]+o[yk+Bk>>2]|0;o[xk>>2]=yk;g:{if((yk|0)>o[Dk>>2]){yk=yk-o[zk>>2]|0}else{if((yk|0)>=o[Gk>>2]){break g}yk=yk+o[zk>>2]|0}o[xk>>2]=yk}vk=vk+1|0;if((vk|0)<o[Ek>>2]){continue}break}}Wk=o[Ye+52>>2];Ek=o[Ye+48>>2];Qk=Hk(16);vk=Qk;o[vk>>2]=0;o[vk+4>>2]=0;o[vk+8>>2]=0;o[vk+12>>2]=0;o[Ak+8>>2]=0;o[Ak>>2]=0;o[Ak+4>>2]=0;h:{if(wk){if(wk>>>0>=1073741824){break h}vk=wk<<2;Mk=Hk(vk);o[Ak>>2]=Mk;xk=vk+Mk|0;o[Ak+8>>2]=xk;xl(Mk,0,vk);o[Ak+4>>2]=xk}vk=1;xk=o[Ye+56>>2];Uk=o[xk>>2];xk=o[xk+4>>2]-Uk|0;i:{if((xk|0)<5){break i}Vk=xk>>2;Xk=wk<<2;Gk=Ye+8|0;Ik=Ye+16|0;Nk=Ye+32|0;Ok=Ye+20|0;Pk=Ye+12|0;_k=Ek+28|0;Dk=1;while(1){j:{k:{l:{if(Vk>>>0>Dk>>>0){m:{n:{Bk=o[(Dk<<2)+Uk>>2];if((Bk|0)==-1){break n}Fk=Bk+((Bk>>>0)%3|0?-1:2)|0;Rk=Fk>>>5;Ck=1;Sk=1<<(Fk&31);Tk=o[Ek>>2];xk=0;vk=Bk;o:{while(1){p:{if(o[Tk+(vk>>>3&536870908)>>2]>>>(vk&31)&1){break p}yk=o[o[o[Ek+64>>2]+12>>2]+(vk<<2)>>2];if((yk|0)==-1){break p}Kk=o[Wk>>2];zk=o[_k>>2];Lk=o[Kk+(o[zk+(yk<<2)>>2]<<2)>>2];if((Lk|0)>=(Dk|0)){break p}Jk=yk+1|0;Jk=o[Kk+(o[zk+(((Jk>>>0)%3|0?Jk:yk+ -2|0)<<2)>>2]<<2)>>2];if((Jk|0)>=(Dk|0)){break p}yk=o[Kk+(o[zk+(yk+((yk>>>0)%3|0?-1:2)<<2)>>2]<<2)>>2];if((yk|0)>=(Dk|0)){break p}if((wk|0)>=1){Kk=o[(Ak+16|0)+u(xk,12)>>2];yk=u(wk,yk);Jk=u(wk,Jk);Lk=u(wk,Lk);zk=0;while(1){o[Kk+(zk<<2)>>2]=(o[(yk+zk<<2)+uk>>2]+o[(zk+Jk<<2)+uk>>2]|0)-o[(zk+Lk<<2)+uk>>2];zk=zk+1|0;if((zk|0)!=(wk|0)){continue}break}}yk=4;xk=xk+1|0;if((xk|0)==4){break o}}q:{if(Ck&1){zk=-1;yk=vk+1|0;vk=(yk>>>0)%3|0?yk:vk+ -2|0;if((vk|0)==-1|o[o[Ek>>2]+(vk>>>3&536870908)>>2]>>>(vk&31)&1){break q}vk=o[o[o[Ek+64>>2]+12>>2]+(vk<<2)>>2];if((vk|0)==-1){break q}yk=vk+1|0;zk=(yk>>>0)%3|0?yk:vk+ -2|0;break q}zk=-1;vk=((vk>>>0)%3|0?-1:2)+vk|0;if((vk|0)==-1|o[o[Ek>>2]+(vk>>>3&536870908)>>2]>>>(vk&31)&1){break q}vk=o[o[o[Ek+64>>2]+12>>2]+(vk<<2)>>2];if((vk|0)==-1){break q}if((vk>>>0)%3){zk=vk+ -1|0;break q}zk=vk+2|0}r:{if((zk|0)==(Bk|0)){break r}vk=zk;yk=(zk|0)!=-1;zk=(yk|Ck^-1)&1;vk=zk?vk:-1;Ck=yk&Ck;if(!((Fk|0)==-1|zk)){if(o[o[Ek>>2]+(Rk<<2)>>2]&Sk){break r}yk=o[o[o[Ek+64>>2]+12>>2]+(Fk<<2)>>2];if((yk|0)==-1){break r}Ck=0;if((yk>>>0)%3){vk=yk+ -1|0}else{vk=yk+2|0}}if((vk|0)!=-1){continue}}break}yk=xk;if((yk|0)<1){break n}}Fk=(wk|0)<1;if(!Fk){xl(Mk,0,Xk)}vk=yk+ -1|0;Ck=(vk<<2)+Qk|0;vk=u(vk,12)+Ye|0;Kk=vk+60|0;Rk=o[vk- -64>>2];vk=0;Sk=o[Ak>>2];Bk=0;xk=0;while(1){zk=o[Ck>>2];o[Ck>>2]=zk+1;if(Rk>>>0<=zk>>>0){break i}s:{if(o[o[Kk>>2]+(zk>>>3&536870908)>>2]>>>(zk&31)&1){break s}xk=xk+1|0;if(Fk){break s}Tk=o[(Ak+16|0)+u(Bk,12)>>2];zk=0;while(1){Lk=zk<<2;Jk=Lk+Sk|0;o[Jk>>2]=o[Jk>>2]+o[Lk+Tk>>2];zk=zk+1|0;if((zk|0)!=(wk|0)){continue}break}}Bk=Bk+1|0;if((yk|0)!=(Bk|0)){continue}break}Ck=u(wk,Dk);yk=Ck;if(!xk){break m}zk=0;if((wk|0)>0){break l}break k}yk=u(wk,Dk)}if(o[Gk>>2]<1){break j}Ck=(u(Dk+ -1|0,wk)<<2)+uk|0;zk=0;while(1){vk=zk<<2;xk=o[vk+Ck>>2];Fk=o[Ik>>2];t:{if((xk|0)>(Fk|0)){Bk=o[Nk>>2];o[vk+Bk>>2]=Fk;break t}Bk=o[Nk>>2];vk=vk+Bk|0;Fk=o[Pk>>2];if((xk|0)<(Fk|0)){o[vk>>2]=Fk;break t}o[vk>>2]=xk}zk=zk+1|0;xk=o[Gk>>2];if((zk|0)<(xk|0)){continue}break}vk=0;if((xk|0)<1){break j}xk=yk<<2;zk=xk+uk|0;Ck=Kj+xk|0;while(1){yk=vk<<2;xk=yk+zk|0;yk=o[yk+Ck>>2]+o[yk+Bk>>2]|0;o[xk>>2]=yk;u:{if((yk|0)>o[Ik>>2]){yk=yk-o[Ok>>2]|0}else{if((yk|0)>=o[Pk>>2]){break u}yk=yk+o[Ok>>2]|0}o[xk>>2]=yk}vk=vk+1|0;if((vk|0)<o[Gk>>2]){continue}break}break j}Zk();D()}while(1){vk=(zk<<2)+Mk|0;o[vk>>2]=o[vk>>2]/(xk|0);zk=zk+1|0;if((zk|0)!=(wk|0)){continue}break}}if(o[Gk>>2]<1){break j}zk=0;while(1){vk=zk<<2;xk=o[vk+Mk>>2];yk=o[Ik>>2];v:{if((xk|0)>(yk|0)){Bk=o[Nk>>2];o[vk+Bk>>2]=yk;break v}Bk=o[Nk>>2];vk=vk+Bk|0;yk=o[Pk>>2];if((xk|0)<(yk|0)){o[vk>>2]=yk;break v}o[vk>>2]=xk}zk=zk+1|0;xk=o[Gk>>2];if((zk|0)<(xk|0)){continue}break}vk=0;if((xk|0)<1){break j}xk=Ck<<2;zk=xk+uk|0;Ck=Kj+xk|0;while(1){yk=vk<<2;xk=yk+zk|0;yk=o[yk+Ck>>2]+o[yk+Bk>>2]|0;o[xk>>2]=yk;w:{if((yk|0)>o[Ik>>2]){yk=yk-o[Ok>>2]|0}else{if((yk|0)>=o[Pk>>2]){break w}yk=yk+o[Ok>>2]|0}o[xk>>2]=yk}vk=vk+1|0;if((vk|0)<o[Gk>>2]){continue}break}}vk=1;Dk=Dk+1|0;if((Dk|0)<(Vk|0)){continue}break}}Ye=o[Ak>>2];if(Ye){o[Ak+4>>2]=Ye;ul(Ye)}ul(Qk);Ye=o[Ak+52>>2];if(Ye){o[Ak+56>>2]=Ye;ul(Ye)}Ye=o[Ak+40>>2];if(Ye){o[Ak+44>>2]=Ye;ul(Ye)}Ye=o[Ak+28>>2];if(Ye){o[Ak+32>>2]=Ye;ul(Ye)}Ye=o[Ak+16>>2];if(Ye){o[Ak+20>>2]=Ye;ul(Ye)}R=Ak- -64|0;return vk|0}Yk();D()}function Ee(Ye){Ye=Ye|0;var Kj=0;o[Ye>>2]=3036;Kj=o[Ye+76>>2];if(Kj){ul(Kj)}o[Ye>>2]=2732;Kj=o[Ye+32>>2];if(Kj){o[Ye+36>>2]=Kj;ul(Kj)}return Ye|0}function Fe(Ye){Ye=Ye|0;var uk=0;o[Ye>>2]=3036;uk=o[Ye+76>>2];if(uk){ul(uk)}o[Ye>>2]=2732;uk=o[Ye+32>>2];if(uk){o[Ye+36>>2]=uk;ul(uk)}ul(Ye)}function Ge(o){o=o|0;return 5}function He(Ye){Ye=Ye|0;if(!(!o[Ye+60>>2]|!o[Ye+44>>2]|(!o[Ye+48>>2]|!o[Ye+52>>2]))){return o[Ye+56>>2]!=0|0}return 0}function Ie(Ye,vk){Ye=Ye|0;vk=vk|0;var wk=0;if(!(o[vk+56>>2]|!vk|p[vk+24|0]!=3)){o[Ye+60>>2]=vk;wk=1}return wk|0}function Je(Ye,vk){Ye=Ye|0;vk=vk|0;var xk=0,Hk=0,Yk=0,Zk=0,$k=0,al=0,bl=0,cl=0,dl=0,el=0,fl=0;cl=R-16|0;R=cl;Yk=o[vk+12>>2];xk=o[vk+20>>2];Zk=o[vk+16>>2];Hk=Zk+4|0;if(Hk>>>0<4){xk=xk+1|0}$k=Hk;Hk=xk;a:{if((Yk|0)<(xk|0)?1:(Yk|0)<=(xk|0)?r[vk+8>>2]>=$k>>>0?0:1:0){break a}xk=Zk+o[vk>>2]|0;xk=p[xk|0]|p[xk+1|0]<<8|(p[xk+2|0]<<16|p[xk+3|0]<<24);o[vk+16>>2]=$k;o[vk+20>>2]=Hk;if((xk|0)<0){break a}Ce(Ye+76|0,xk);$k=Mf(cl);b:{if(!Nf($k,vk)){break b}if((xk|0)>=1){Yk=1;while(1){Zk=1<<(bl&31);al=Pf($k);Hk=o[Ye+76>>2]+(bl>>>3&536870908)|0;Yk=Yk^al;al=o[Hk>>2]|Zk;c:{if(!(Yk&1)){break c}al=o[Hk>>2]&(Zk^-1)}Zk=al;Yk=Yk^1;o[Hk>>2]=Zk;bl=bl+1|0;if((xk|0)!=(bl|0)){continue}break}}Hk=o[vk+12>>2];bl=Hk;xk=o[vk+20>>2];Yk=xk;$k=o[vk+16>>2];Zk=$k+4|0;if(Zk>>>0<4){xk=xk+1|0}dl=o[vk+8>>2];al=Zk;Zk=xk;if((Hk|0)<(xk|0)?1:(Hk|0)<=(xk|0)?dl>>>0>=al>>>0?0:1:0){break b}el=o[vk>>2];xk=el+$k|0;Hk=p[xk|0]|p[xk+1|0]<<8|(p[xk+2|0]<<16|p[xk+3|0]<<24);o[vk+16>>2]=al;o[vk+20>>2]=Zk;xk=Yk;Yk=$k+8|0;if(Yk>>>0<8){xk=xk+1|0}Zk=Yk;Yk=xk;if((bl|0)<(xk|0)?1:(bl|0)<=(xk|0)?dl>>>0>=Zk>>>0?0:1:0){break b}xk=al+el|0;xk=p[xk|0]|p[xk+1|0]<<8|(p[xk+2|0]<<16|p[xk+3|0]<<24);o[vk+16>>2]=Zk;o[vk+20>>2]=Yk;if((Hk|0)>(xk|0)){break b}o[Ye+16>>2]=xk;o[Ye+12>>2]=Hk;vk=Hk;Hk=(xk>>31)-((xk>>>0<vk>>>0)+(vk>>31)|0)|0;vk=xk-vk|0;if(!Hk&vk>>>0>2147483646|Hk>>>0>0){break b}fl=1;vk=vk+1|0;o[Ye+20>>2]=vk;Hk=Ye+24|0;xk=(vk|0)/2|0;o[Hk>>2]=xk;o[Ye+28>>2]=0-xk;if(vk&1){break b}o[Hk>>2]=xk+ -1}}R=cl+16|0;return fl|0}function Ke(Ye,vk,gl,hl,il,jl){Ye=Ye|0;vk=vk|0;gl=gl|0;hl=hl|0;il=il|0;jl=jl|0;var kl=0,ll=0,ml=0,nl=0,ol=0,pl=0,ql=0,rl=0,sl=0,tl=0,ul=0,vl=0;hl=0;a:{if((il|0)!=2){break a}o[Ye+8>>2]=2;o[Ye- -64>>2]=jl;hl=Ye+32|0;il=o[hl>>2];jl=o[Ye+36>>2]-il|0;kl=jl>>2;b:{if(kl>>>0<=1){Da(hl,2-kl|0);break b}if((jl|0)==8){break b}o[Ye+36>>2]=il+8}hl=1;il=o[Ye+56>>2];jl=o[il+4>>2];il=o[il>>2];kl=jl-il|0;if((kl|0)<1){break a}if((il|0)!=(jl|0)){sl=Ye+60|0;tl=kl>>2;kl=Ye+8|0;ol=Ye+16|0;pl=Ye+32|0;ql=Ye+20|0;rl=Ye+12|0;ul=Ye+56|0;while(1){if(!Le(sl,o[(ml<<2)+il>>2],gl,ml)){hl=0;break a}c:{if(o[kl>>2]<1){break c}il=0;while(1){hl=il<<2;jl=o[(hl+Ye|0)+68>>2];ll=o[ol>>2];d:{if((jl|0)>(ll|0)){nl=o[pl>>2];o[hl+nl>>2]=ll;break d}nl=o[pl>>2];hl=hl+nl|0;ll=o[rl>>2];if((jl|0)<(ll|0)){o[hl>>2]=ll;break d}o[hl>>2]=jl}il=il+1|0;hl=o[kl>>2];if((il|0)<(hl|0)){continue}break}jl=0;if((hl|0)<1){break c}hl=ml<<3;ll=hl+gl|0;vl=vk+hl|0;while(1){il=jl<<2;hl=il+ll|0;il=o[il+vl>>2]+o[il+nl>>2]|0;o[hl>>2]=il;e:{if((il|0)>o[ol>>2]){il=il-o[ql>>2]|0}else{if((il|0)>=o[rl>>2]){break e}il=il+o[ql>>2]|0}o[hl>>2]=il}jl=jl+1|0;if((jl|0)<o[kl>>2]){continue}break}}hl=1;ml=ml+1|0;if((ml|0)>=(tl|0)){break a}hl=o[ul>>2];il=o[hl>>2];if(o[hl+4>>2]-il>>2>>>0>ml>>>0){continue}break}}Zk();D()}return hl|0}function Le(Ye,vk,gl,hl){var il=0,jl=0,wl=0,xl=0,yl=0,zl=0,Al=0,Bl=0,Cl=0,Dl=0,El=0,Fl=0,Gl=0,Hl=0,Il=0,Jl=0,Kl=0,Ll=0,Ml=0,Nl=0,Ol=0,Pl=0,Ql=0,Rl=0,Sl=0;wl=R-80|0;R=wl;jl=-1;il=-1;a:{if((vk|0)==-1){break a}il=vk+1|0;jl=(il>>>0)%3|0?il:vk+ -2|0;il=vk+ -1|0;if((vk>>>0)%3){break a}il=vk+2|0}xl=o[Ye+36>>2];vk=o[xl>>2];b:{c:{d:{e:{f:{xl=o[xl+4>>2]-vk>>2;yl=jl<<2;jl=o[o[Ye+32>>2]+28>>2];zl=o[yl+jl>>2];if(xl>>>0<=zl>>>0){break f}il=o[jl+(il<<2)>>2];if(xl>>>0<=il>>>0){break f}g:{h:{Cl=o[vk+(zl<<2)>>2];Fl=(Cl|0)>=(hl|0);if(Fl){break h}jl=o[vk+(il<<2)>>2];if((jl|0)>=(hl|0)){break h}vk=jl<<3;Kl=o[(vk|4)+gl>>2];il=Cl<<3;Dl=o[(il|4)+gl>>2];Hl=o[vk+gl>>2];Jl=o[gl+il>>2];if(!((Hl|0)!=(Jl|0)|(Dl|0)!=(Kl|0))){o[Ye+8>>2]=Jl;o[Ye+12>>2]=Dl;break g}vk=o[o[Ye+4>>2]+(hl<<2)>>2];o[wl+72>>2]=0;o[wl+76>>2]=0;il=wl- -64|0;o[il>>2]=0;o[il+4>>2]=0;o[wl+56>>2]=0;o[wl+60>>2]=0;il=o[Ye>>2];if(!p[il+84|0]){vk=o[o[il+68>>2]+(vk<<2)>>2]}Me(il,vk,m[il+24|0],wl+56|0);vk=o[o[Ye+4>>2]+(Cl<<2)>>2];o[wl+48>>2]=0;o[wl+52>>2]=0;o[wl+40>>2]=0;o[wl+44>>2]=0;o[wl+32>>2]=0;o[wl+36>>2]=0;il=o[Ye>>2];if(!p[il+84|0]){vk=o[o[il+68>>2]+(vk<<2)>>2]}Me(il,vk,m[il+24|0],wl+32|0);vk=o[o[Ye+4>>2]+(jl<<2)>>2];o[wl+24>>2]=0;o[wl+28>>2]=0;o[wl+16>>2]=0;o[wl+20>>2]=0;o[wl+8>>2]=0;o[wl+12>>2]=0;il=o[Ye>>2];if(!p[il+84|0]){vk=o[o[il+68>>2]+(vk<<2)>>2]}Me(il,vk,m[il+24|0],wl+8|0);Ll=o[wl+44>>2];vk=o[wl+16>>2];yl=o[wl+40>>2];il=yl;jl=o[wl+20>>2]-(Ll+(vk>>>0<il>>>0)|0)|0;Nl=vk-il|0;vk=Vl(Nl,jl,Nl,jl);il=T;Bl=vk;Ml=o[wl+36>>2];vk=o[wl+8>>2];Al=o[wl+32>>2];zl=Al;xl=o[wl+12>>2]-(Ml+(vk>>>0<zl>>>0)|0)|0;Ol=vk-zl|0;zl=Vl(Ol,xl,Ol,xl);vk=Bl+zl|0;il=T+il|0;il=vk>>>0<zl>>>0?il+1|0:il;Gl=vk;Ql=o[wl+52>>2];vk=o[wl+24>>2];Bl=o[wl+48>>2];zl=Bl;El=o[wl+28>>2]-(Ql+(vk>>>0<zl>>>0)|0)|0;Pl=vk-zl|0;zl=Vl(Pl,El,Pl,El);vk=Gl+zl|0;il=T+il|0;Il=vk;zl=vk>>>0<zl>>>0?il+1|0:il;if(!(vk|zl)){break h}hl=1;vk=0;il=o[wl+64>>2];gl=o[wl+68>>2]-((il>>>0<yl>>>0)+Ll|0)|0;il=il-yl|0;Cl=il;Fl=gl;gl=Vl(Nl,jl,il,gl);il=T;Gl=gl;yl=o[wl+56>>2];gl=yl-Al|0;Ll=o[wl+60>>2]-((yl>>>0<Al>>>0)+Ml|0)|0;Al=Vl(gl,Ll,Ol,xl);yl=Gl+Al|0;il=T+il|0;il=yl>>>0<Al>>>0?il+1|0:il;Gl=yl;yl=o[wl+72>>2];Al=yl-Bl|0;Ml=o[wl+76>>2]-((yl>>>0<Bl>>>0)+Ql|0)|0;Bl=Vl(Al,Ml,Pl,El);yl=Gl+Bl|0;il=T+il|0;il=yl>>>0<Bl>>>0?il+1|0:il;Bl=yl;yl=il;jl=Wl(Vl(Bl,il,Nl,jl),T,Il,zl);Fl=Fl-(T+(Cl>>>0<jl>>>0)|0)|0;jl=Cl-jl|0;jl=Vl(jl,Fl,jl,Fl);Cl=T;Gl=jl;il=Wl(Vl(Ol,xl,Bl,il),T,Il,zl);jl=Ll-(T+(gl>>>0<il>>>0)|0)|0;gl=gl-il|0;jl=Vl(gl,jl,gl,jl);gl=Gl+jl|0;il=T+Cl|0;il=gl>>>0<jl>>>0?il+1|0:il;xl=gl;gl=Wl(Vl(Bl,yl,Pl,El),T,Il,zl);jl=Ml-(T+(Al>>>0<gl>>>0)|0)|0;gl=Al-gl|0;jl=Vl(gl,jl,gl,jl);gl=xl+jl|0;il=T+il|0;jl=Vl(gl,gl>>>0<jl>>>0?il+1|0:il,Il,zl);gl=T;xl=gl;if(!gl&jl>>>0<=1|gl>>>0<0){break e}El=jl;gl=xl;while(1){il=vk<<1|hl>>>31;hl=hl<<1;vk=il;Al=!gl&El>>>0>7|gl>>>0>0;El=(gl&3)<<30|El>>>2;gl=gl>>>2;if(Al){continue}break}break d}il=Ye;if(Fl){if((hl|0)<=0){o[Ye+8>>2]=0;o[Ye+12>>2]=0;break g}vk=(hl<<1)+ -2|0}else{vk=Cl<<1}vk=(vk<<2)+gl|0;o[il+8>>2]=o[vk>>2];o[Ye+12>>2]=o[vk+4>>2]}gl=1;break b}Zk();D()}hl=jl;vk=xl;if(jl-1){break c}}while(1){gl=Xl(jl,xl,hl,vk)+hl|0;il=vk+T|0;il=gl>>>0<hl>>>0?il+1|0:il;hl=(il&1)<<31|gl>>>1;vk=il>>>1;gl=Vl(hl,vk,hl,vk);il=T;if((xl|0)==(il|0)&gl>>>0>jl>>>0|il>>>0>xl>>>0){continue}break}}il=o[Ye+20>>2];gl=0;if(!il){break b}xl=il+ -1|0;El=o[o[Ye+16>>2]+(xl>>>3&536870908)>>2];o[Ye+20>>2]=xl;gl=Kl;il=Dl;Al=gl-il|0;Dl=il>>31;Kl=(gl>>31)-(Dl+(gl>>>0<il>>>0)|0)|0;gl=Vl(Bl,yl,Al,Kl);jl=T;Dl=Vl(il,Dl,Il,zl);gl=Dl+gl|0;il=T+jl|0;il=gl>>>0<Dl>>>0?il+1|0:il;Gl=gl;gl=Hl;jl=Jl;Cl=gl-jl|0;Jl=jl>>31;Dl=(gl>>31)-(Jl+(gl>>>0<jl>>>0)|0)|0;gl=Vl(hl,vk,Cl,Dl);Hl=gl;gl=El>>>(xl&31)&1;Fl=gl?0-Hl|0:Hl;xl=Gl+Fl|0;El=il;il=T;il=El+(gl?0-(il+(0<Hl>>>0)|0)|0:il)|0;Rl=Ye,Sl=Wl(xl,xl>>>0<Fl>>>0?il+1|0:il,Il,zl),o[Rl+12>>2]=Sl;il=Vl(Bl,yl,Cl,Dl);xl=T;Hl=Ye;jl=Vl(jl,Jl,Il,zl);Ye=jl+il|0;il=T+xl|0;il=Ye>>>0<jl>>>0?il+1|0:il;yl=Ye;Ye=Vl(hl,vk,Al,Kl);hl=gl?Ye:0-Ye|0;vk=yl+hl|0;yl=il;il=T;Ye=yl+(gl?il:0-((0<Ye>>>0)+il|0)|0)|0;Rl=Hl,Sl=Wl(vk,vk>>>0<hl>>>0?Ye+1|0:Ye,Il,zl),o[Rl+8>>2]=Sl;gl=1}R=wl+80|0;return gl}function Me(Ye,vk,gl,hl){var Tl=0,Ul=0,Wl=0,Xl=0,Yl=v(0),Zl=0,_l=0;a:{b:{if(!hl){break b}Tl=o[Ye+28>>2]+ -1|0;if(Tl>>>0>10){break b}c:{d:{e:{switch(Tl-1|0){default:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;Xl=m[vk|0];o[Tl>>2]=Xl;o[Tl+4>>2]=Xl>>31;vk=vk+1|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}break a;case 0:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;o[Tl>>2]=p[vk|0];o[Tl+4>>2]=0;vk=vk+1|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}break a;case 1:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;Xl=n[vk>>1];o[Tl>>2]=Xl;o[Tl+4>>2]=Xl>>31;vk=vk+2|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}break a;case 2:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;o[Tl>>2]=q[vk>>1];o[Tl+4>>2]=0;vk=vk+2|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}break a;case 3:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;Xl=o[vk>>2];o[Tl>>2]=Xl;o[Tl+4>>2]=Xl>>31;vk=vk+4|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}break a;case 4:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;o[Tl>>2]=o[vk>>2];o[Tl+4>>2]=0;vk=vk+4|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}break a;case 5:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Xl=o[vk+4>>2];Tl=(Ul<<3)+hl|0;o[Tl>>2]=o[vk>>2];o[Tl+4>>2]=Xl;vk=vk+8|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}break a;case 6:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Xl=o[vk+4>>2];Tl=(Ul<<3)+hl|0;o[Tl>>2]=o[vk>>2];o[Tl+4>>2]=Xl;vk=vk+8|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}break a;case 7:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24<1){break c}Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;Wl=Tl;Yl=s[vk>>2];f:{if(v(w(Yl))<v(0x8000000000000000)){Xl=v(w(Yl))>=v(1)?Yl>v(0)?~~v(y(v(A(v(Yl/v(4294967296)))),v(4294967296)))>>>0:~~v(B(v(v(Yl-v(~~Yl>>>0>>>0))/v(4294967296))))>>>0:0;_l=~~Yl>>>0;break f}Xl=-2147483648;_l=0}o[Wl>>2]=_l;o[Tl+4>>2]=Xl;vk=vk+4|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}break c;case 8:Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24<1){break d}Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;Wl=Tl;Zl=t[vk>>3];g:{if(w(Zl)<0x8000000000000000){Xl=w(Zl)>=1?Zl>0?~~y(A(Zl/4294967296),4294967295)>>>0:~~B((Zl- +(~~Zl>>>0>>>0))/4294967296)>>>0:0;_l=~~Zl>>>0;break g}Xl=-2147483648;_l=0}o[Wl>>2]=_l;o[Tl+4>>2]=Xl;vk=vk+8|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}break d;case 9:break e}}Tl=m[Ye+24|0];if(((Tl|0)>(gl|0)?gl:Tl)<<24>>24>=1){Wl=o[o[Ye>>2]>>2];Tl=o[Ye+48>>2]+Vl(o[Ye+40>>2],o[Ye+44>>2],vk,0)|0;vk=Wl+Tl|0;while(1){Tl=(Ul<<3)+hl|0;o[Tl>>2]=p[vk|0];o[Tl+4>>2]=0;vk=vk+1|0;Ul=Ul+1|0;Tl=m[Ye+24|0];if((Ul|0)<((Tl|0)>(gl|0)?gl:Tl)<<24>>24){continue}break}}if((Tl|0)>=(gl|0)){break b}xl((Tl<<3)+hl|0,0,gl-Tl<<3);break b}if((Tl|0)>=(gl|0)){break b}break a}if((Tl|0)>=(gl|0)){break b}xl((Tl<<3)+hl|0,0,gl-Tl<<3)}return}xl((Tl<<3)+hl|0,0,gl-Tl<<3)}function Ne(Ye){Ye=Ye|0;var vk=0;o[Ye>>2]=3272;o[Ye>>2]=2732;vk=o[Ye+32>>2];if(vk){o[Ye+36>>2]=vk;ul(vk)}return Ye|0}function Oe(Ye){Ye=Ye|0;var gl=0;o[Ye>>2]=3272;o[Ye>>2]=2732;gl=o[Ye+32>>2];if(gl){o[Ye+36>>2]=gl;ul(gl)}ul(Ye)}function Pe(o){o=o|0;return 6}function Qe(Ye){Ye=Ye|0;var hl=0;a:{if(!o[Ye- -64>>2]|!o[Ye+68>>2]|(!o[Ye+44>>2]|!o[Ye+48>>2])){break a}if(!o[Ye+52>>2]|!o[Ye+56>>2]){break a}hl=o[Ye+92>>2]!=-1}return hl|0}function Re(Ye,Vl){Ye=Ye|0;Vl=Vl|0;var $l=0;if(!(o[Vl+56>>2]|p[Vl+24|0]!=3)){o[Ye- -64>>2]=Vl;$l=1}return $l|0}function Se(Ye,Vl){Ye=Ye|0;Vl=Vl|0;var am=0,bm=0,cm=0,dm=0,em=0,fm=0,gm=0,hm=0,im=0,jm=0;bm=o[Vl+12>>2];cm=bm;am=o[Vl+20>>2];em=am;fm=o[Vl+16>>2];dm=fm+4|0;if(dm>>>0<4){am=am+1|0}hm=o[Vl+8>>2];gm=dm;dm=am;a:{if((bm|0)<(am|0)?1:(bm|0)<=(am|0)?hm>>>0>=gm>>>0?0:1:0){break a}im=o[Vl>>2];am=im+fm|0;bm=p[am|0]|p[am+1|0]<<8|(p[am+2|0]<<16|p[am+3|0]<<24);o[Vl+16>>2]=gm;o[Vl+20>>2]=dm;am=em;em=fm+8|0;if(em>>>0<8){am=am+1|0}dm=em;em=am;if((cm|0)<(am|0)?1:(cm|0)<=(am|0)?hm>>>0>=dm>>>0?0:1:0){break a}am=gm+im|0;am=p[am|0]|p[am+1|0]<<8|(p[am+2|0]<<16|p[am+3|0]<<24);o[Vl+16>>2]=dm;o[Vl+20>>2]=em;if((bm|0)>(am|0)){break a}o[Ye+16>>2]=am;o[Ye+12>>2]=bm;cm=bm;bm=(am>>31)-((bm>>31)+(am>>>0<bm>>>0)|0)|0;am=am-cm|0;if(!bm&am>>>0>2147483646|bm>>>0>0){break a}am=am+1|0;o[Ye+20>>2]=am;cm=Ye+24|0;bm=(am|0)/2|0;o[cm>>2]=bm;o[Ye+28>>2]=0-bm;if(!(am&1)){o[cm>>2]=bm+ -1}jm=Nf(Ye+108|0,Vl)}return jm|0}function Te(Ye,km,lm,mm,nm,om){Ye=Ye|0;km=km|0;lm=lm|0;mm=mm|0;nm=nm|0;om=om|0;var pm=0,qm=0,rm=0,sm=0,tm=0,um=0,vm=0,wm=0,xm=0,ym=0,zm=0,Am=0,Bm=0,Cm=0,Dm=0;qm=R-32|0;R=qm;o[Ye+68>>2]=om;mm=o[Ye+56>>2];nm=o[mm>>2];om=mm+4|0;pm=o[om>>2];o[qm+24>>2]=0;o[qm+16>>2]=0;o[qm+20>>2]=0;a:{nm=pm-nm|0;if((nm|0)<1){break a}mm=o[mm>>2];if((mm|0)!=o[om>>2]){Am=nm>>2;Bm=Ye+60|0;Cm=Ye+108|0;vm=Ye+8|0;wm=Ye+16|0;xm=Ye+32|0;ym=Ye+20|0;zm=Ye+12|0;Dm=Ye+56|0;while(1){Ue(Bm,o[(tm<<2)+mm>>2],qm+16|0);nm=o[qm+20>>2];pm=nm>>31;om=o[qm+16>>2];rm=om>>31;um=o[qm+24>>2];sm=um>>31;mm=0;sm=sm^sm+um;pm=sm+((pm^nm+pm)+(rm^om+rm)|0)|0;if(pm>>>0<sm>>>0){mm=1}b:{if(!(mm|pm)){o[qm+16>>2]=o[Ye+104>>2];break b}rm=o[Ye+104>>2];sm=rm>>31;nm=Wl(Vl(rm,sm,nm,nm>>31),T,pm,mm);o[qm+20>>2]=nm;mm=Wl(Vl(rm,sm,om,om>>31),T,pm,mm);o[qm+16>>2]=mm;om=mm;mm=mm>>31;mm=(rm-(om+mm^mm)|0)+((nm|0)<0?nm:0-nm|0)|0;if((um|0)>=0){o[qm+24>>2]=mm;break b}o[qm+24>>2]=0-mm}mm=Pf(Cm);om=o[qm+16>>2];c:{if(!mm){nm=o[qm+20>>2];break c}o[qm+24>>2]=0-o[qm+24>>2];nm=0-o[qm+20>>2]|0;o[qm+20>>2]=nm;om=0-om|0;o[qm+16>>2]=om}d:{if((om|0)>=0){mm=o[Ye+104>>2];om=mm+o[qm+24>>2]|0;mm=mm+nm|0;break d}e:{if((nm|0)<=-1){om=o[qm+24>>2];mm=om>>31;mm=mm^mm+om;break e}om=o[qm+24>>2];mm=om>>31;mm=o[Ye+100>>2]-(mm^mm+om)|0}if((om|0)<=-1){om=nm;nm=nm>>31;om=om+nm^nm;break d}om=nm;nm=nm>>31;om=o[Ye+100>>2]-(om+nm^nm)|0}nm=o[Ye+100>>2];f:{if(!(mm|om)){om=nm;mm=nm;break f}if(!((nm|0)!=(om|0)|mm)){mm=om;break f}if(!((mm|0)!=(nm|0)|om)){om=mm;break f}g:{if(mm){break g}pm=o[Ye+104>>2];if((pm|0)>=(om|0)){break g}om=(pm<<1)-om|0;mm=0;break f}h:{if((mm|0)!=(nm|0)){break h}pm=o[Ye+104>>2];if((pm|0)<=(om|0)){break h}om=(pm<<1)-om|0;break f}i:{if((nm|0)!=(om|0)){break i}nm=o[Ye+104>>2];if((nm|0)<=(mm|0)){break i}mm=(nm<<1)-mm|0;break f}if(om){break f}om=0;nm=o[Ye+104>>2];if((nm|0)>=(mm|0)){break f}mm=(nm<<1)-mm|0}o[qm+12>>2]=om;o[qm+8>>2]=mm;j:{if(o[vm>>2]<1){break j}om=0;while(1){pm=o[wm>>2];k:{if((mm|0)>(pm|0)){nm=o[xm>>2];o[nm+(om<<2)>>2]=pm;break k}nm=o[xm>>2];pm=nm+(om<<2)|0;rm=o[zm>>2];if((mm|0)<(rm|0)){o[pm>>2]=rm;break k}o[pm>>2]=mm}om=om+1|0;pm=o[vm>>2];if((om|0)<(pm|0)){mm=o[(qm+8|0)+(om<<2)>>2];continue}break}mm=0;if((pm|0)<1){break j}om=tm<<3;rm=om+lm|0;um=km+om|0;while(1){pm=mm<<2;om=pm+rm|0;pm=o[pm+um>>2]+o[nm+pm>>2]|0;o[om>>2]=pm;l:{if((pm|0)>o[wm>>2]){sm=pm-o[ym>>2]|0}else{if((pm|0)>=o[zm>>2]){break l}sm=pm+o[ym>>2]|0}o[om>>2]=sm}mm=mm+1|0;if((mm|0)<o[vm>>2]){continue}break}}tm=tm+1|0;if((tm|0)>=(Am|0)){break a}nm=o[Dm>>2];mm=o[nm>>2];if(o[nm+4>>2]-mm>>2>>>0>tm>>>0){continue}break}}Zk();D()}R=qm+32|0;return 1}function Ue(Ye,km,lm){Ye=Ye|0;km=km|0;lm=lm|0;var mm=0,nm=0,om=0,Em=0,Fm=0,Gm=0,Hm=0,Im=0,Jm=0,Km=0,Lm=0,Mm=0,Nm=0,Om=0,Pm=0,Qm=0,Rm=0,Sm=0,Tm=0,Um=0,Vm=0,Wm=0,Xm=0,Ym=0,Zm=0,_m=0;nm=R-96|0;R=nm;mm=o[Ye+16>>2];m[nm+92|0]=1;o[nm+88>>2]=km;o[nm+84>>2]=km;o[nm+80>>2]=mm;Em=o[Ye+20>>2];om=o[Em>>2];a:{b:{c:{d:{mm=o[o[mm+28>>2]+(km<<2)>>2];if(o[Em+4>>2]-om>>2>>>0>mm>>>0){mm=o[o[Ye+8>>2]+(o[om+(mm<<2)>>2]<<2)>>2];om=o[Ye+4>>2];if(!p[om+84|0]){mm=o[o[om+68>>2]+(mm<<2)>>2]}o[nm+72>>2]=0;o[nm+76>>2]=0;Em=nm- -64|0;o[Em>>2]=0;o[Em+4>>2]=0;o[nm+56>>2]=0;o[nm+60>>2]=0;Me(om,mm,m[om+24|0],nm+56|0);if((km|0)==-1){break a}mm=km+1|0;Em=(mm>>>0)%3|0?mm:km+ -2|0;Om=((km>>>0)%3|0?-1:2)+km|0;Vm=Ye+28|0;Fm=!o[Vm>>2];Wm=Ye+20|0;Xm=Ye+16|0;Ym=Ye+8|0;while(1){om=Em;mm=Om;e:{if(Fm){break e}mm=km+1|0;om=(mm>>>0)%3|0?mm:km+ -2|0;mm=km+ -1|0;if((km>>>0)%3){break e}mm=km+2|0}Fm=o[Wm>>2];km=o[Fm>>2];om=o[o[o[Xm>>2]+28>>2]+(om<<2)>>2];if(o[Fm+4>>2]-km>>2>>>0<=om>>>0){break d}om=o[o[Ym>>2]+(o[km+(om<<2)>>2]<<2)>>2];Fm=Ye+4|0;km=o[Fm>>2];if(!p[km+84|0]){om=o[o[km+68>>2]+(om<<2)>>2]}o[nm+48>>2]=0;o[nm+52>>2]=0;o[nm+40>>2]=0;o[nm+44>>2]=0;o[nm+32>>2]=0;o[nm+36>>2]=0;Me(km,om,m[km+24|0],nm+32|0);om=o[Wm>>2];km=o[om>>2];mm=o[o[o[Xm>>2]+28>>2]+(mm<<2)>>2];if(o[om+4>>2]-km>>2>>>0<=mm>>>0){break c}om=o[o[Ym>>2]+(o[km+(mm<<2)>>2]<<2)>>2];km=o[Fm>>2];if(!p[km+84|0]){om=o[o[km+68>>2]+(om<<2)>>2]}Fm=nm+24|0;mm=Fm;o[mm>>2]=0;o[mm+4>>2]=0;Im=nm+16|0;mm=Im;o[mm>>2]=0;o[mm+4>>2]=0;o[nm+8>>2]=0;o[nm+12>>2]=0;Me(km,om,m[km+24|0],nm+8|0);mm=o[nm+8>>2];km=o[nm+56>>2];Pm=mm-km|0;Qm=o[nm+60>>2];om=o[nm+12>>2]-(Qm+(mm>>>0<km>>>0)|0)|0;Rm=o[nm+40>>2];mm=o[nm+64>>2];Zm=Rm-mm|0;Sm=o[nm+68>>2];Rm=o[nm+44>>2]-(Sm+(Rm>>>0<mm>>>0)|0)|0;Tm=Vl(Pm,om,Zm,Rm);Um=Gm-Tm|0;Jm=Jm-(T+(Gm>>>0<Tm>>>0)|0)|0;Gm=o[Im>>2];Tm=Gm-mm|0;Im=o[Im+4>>2]-((Gm>>>0<mm>>>0)+Sm|0)|0;Gm=o[nm+32>>2];Sm=Gm-km|0;Qm=o[nm+36>>2]-((Gm>>>0<km>>>0)+Qm|0)|0;mm=Vl(Tm,Im,Sm,Qm);Gm=mm+Um|0;km=T+Jm|0;km=Gm>>>0<mm>>>0?km+1|0:km;Jm=km;mm=Hm;Lm=Pm;_m=om;Hm=o[nm+48>>2];km=o[nm+72>>2];om=Hm-km|0;Pm=o[nm+76>>2];Um=o[nm+52>>2]-(Pm+(Hm>>>0<km>>>0)|0)|0;Lm=Vl(Lm,_m,om,Um);Hm=mm+Lm|0;mm=T+Mm|0;mm=Hm>>>0<Lm>>>0?mm+1|0:mm;Mm=Hm;Hm=o[Fm>>2];Lm=Hm-km|0;km=o[Fm+4>>2]-((Hm>>>0<km>>>0)+Pm|0)|0;Fm=Vl(Lm,km,Sm,Qm);Hm=Mm-Fm|0;Mm=mm-(T+(Mm>>>0<Fm>>>0)|0)|0;mm=Vl(Tm,Im,om,Um);om=Km-mm|0;Nm=Nm-(T+(Km>>>0<mm>>>0)|0)|0;mm=Vl(Lm,km,Zm,Rm);Km=mm+om|0;km=T+Nm|0;km=Km>>>0<mm>>>0?km+1|0:km;Nm=km;We(nm+80|0);Im=o[Vm>>2];Fm=!Im;km=o[nm+88>>2];if((km|0)!=-1){continue}break}km=Mm;mm=km>>31;Ye=km>>31;km=Ye+km|0;Em=mm+Hm|0;if(Em>>>0<mm>>>0){km=km+1|0}mm=mm^Em;Fm=Ye^km;km=Nm;Ye=km>>31;km=km>>31;Em=Ye;Om=Nm+Ye|0;om=km+Km|0;if(om>>>0<km>>>0){Om=Om+1|0}Ye=km^om;om=Em^Om;f:{if((Jm|0)<-1?1:(Jm|0)<=-1?Gm>>>0>4294967295?0:1:0){km=Gm;Em=Ye+(mm-km|0)|0;km=om+(Fm-((mm>>>0<km>>>0)+Jm|0)|0)|0;mm=Em;Ye=mm>>>0<Ye>>>0?km+1|0:km;if(!Im){break f}break b}km=Fm+Jm|0;Em=mm;mm=Gm;Em=Em+mm|0;if(Em>>>0<mm>>>0){km=km+1|0}mm=Ye;Em=mm+Em|0;Ye=km+om|0;Ye=Em>>>0<mm>>>0?Ye+1|0:Ye;mm=Em;if(Im){break b}}if((mm|0)<536870913){break a}Ye=((Ye&536870911)<<3|mm>>>29)&7;km=0;Gm=Wl(Gm,Jm,Ye,km);Hm=Wl(Hm,Mm,Ye,km);Km=Wl(Km,Nm,Ye,km);break a}Zk();D()}Zk();D()}Zk();D()}if((Ye|0)<0?1:(Ye|0)<=0?mm>>>0>=536870913?0:1:0){break a}km=Ye>>>29;Ye=(Ye&536870911)<<3|mm>>>29;Gm=Wl(Gm,Jm,Ye,km);Hm=Wl(Hm,Mm,Ye,km);Km=Wl(Km,Nm,Ye,km)}o[lm+8>>2]=Gm;o[lm+4>>2]=Hm;o[lm>>2]=Km;R=nm+96|0}function Ve(Ye,Vl){Ye=Ye|0;Vl=Vl|0;if(Vl>>>0<=1){o[Ye+28>>2]=Vl;Ye=1}else{Ye=0}return Ye|0}function We(Ye){var Vl=0,km=0,lm=0;Vl=o[Ye+8>>2];lm=o[Ye>>2];a:{if(p[Ye+12|0]){b:{c:{d:{e:{if((Vl|0)==-1){break e}km=Vl+1|0;Vl=(km>>>0)%3|0?km:Vl+ -2|0;if((Vl|0)==-1|o[o[lm>>2]+(Vl>>>3&536870908)>>2]>>>(Vl&31)&1){break e}Vl=o[o[o[lm+64>>2]+12>>2]+(Vl<<2)>>2];if((Vl|0)!=-1){break d}}o[Ye+8>>2]=-1;break c}km=Vl+1|0;Vl=(km>>>0)%3|0?km:Vl+ -2|0;o[Ye+8>>2]=Vl;if((Vl|0)!=-1){break b}}Vl=-1;km=o[Ye+4>>2];f:{if((km|0)==-1){break f}km=km+((km>>>0)%3|0?-1:2)|0;if((km|0)==-1|o[o[lm>>2]+(km>>>3&536870908)>>2]>>>(km&31)&1){break f}lm=o[o[o[lm+64>>2]+12>>2]+(km<<2)>>2];if((lm|0)==-1){break f}if((lm>>>0)%3){Vl=lm+ -1|0;break f}Vl=lm+2|0}m[Ye+12|0]=0;o[Ye+8>>2]=Vl;return}if((Vl|0)!=o[Ye+4>>2]){break a}o[Ye+8>>2]=-1;return}km=-1;g:{if((Vl|0)==-1){break g}Vl=Vl+((Vl>>>0)%3|0?-1:2)|0;if((Vl|0)==-1|o[o[lm>>2]+(Vl>>>3&536870908)>>2]>>>(Vl&31)&1){break g}Vl=o[o[o[lm+64>>2]+12>>2]+(Vl<<2)>>2];if((Vl|0)==-1){break g}if((Vl>>>0)%3){km=Vl+ -1|0;break g}km=Vl+2|0}o[Ye+8>>2]=km}}function Xe(Ye,$m,an,bn){var cn=0,dn=0,en=0,fn=0,gn=0,hn=0,jn=0,kn=0;o[Ye>>2]=2732;o[Ye+4>>2]=$m;$m=o[an+8>>2];cn=o[an+12>>2];dn=o[an+16>>2];fn=o[an+20>>2];gn=o[an>>2];hn=o[an+4>>2];o[Ye+40>>2]=0;en=Ye+32|0;o[en>>2]=0;o[en+4>>2]=0;o[Ye+24>>2]=dn;o[Ye+28>>2]=fn;o[Ye+16>>2]=$m;o[Ye+20>>2]=cn;o[Ye+8>>2]=gn;o[Ye+12>>2]=hn;a:{$m=o[an+28>>2]-o[an+24>>2]|0;b:{if(!$m){break b}cn=$m>>2;if(cn>>>0>=1073741824){break a}$m=Hk($m);o[Ye+32>>2]=$m;dn=Ye+36|0;o[dn>>2]=$m;o[Ye+40>>2]=$m+(cn<<2);cn=o[an+24>>2];an=o[an+28>>2]-cn|0;if((an|0)<1){break b}jn=dn,kn=wl($m,cn,an)+an|0,o[jn>>2]=kn}o[Ye>>2]=4268;$m=o[bn+4>>2];o[Ye+44>>2]=o[bn>>2];o[Ye+48>>2]=$m;$m=o[bn+12>>2];o[Ye+52>>2]=o[bn+8>>2];o[Ye+56>>2]=$m;return}Yk();D()}function Ye(Ye,$m,an,bn,ln,mn){Ye=Ye|0;$m=$m|0;an=an|0;bn=bn|0;ln=ln|0;mn=mn|0;var nn=0,on=0,pn=0,qn=0,rn=0,sn=0,tn=0,un=0,vn=0,wn=0,xn=0,yn=0,zn=0,An=0,Bn=0,Cn=0;o[Ye+8>>2]=ln;mn=Ye+32|0;on=o[mn>>2];bn=o[Ye+36>>2]-on>>2;a:{if(bn>>>0<ln>>>0){Da(mn,ln-bn|0);break a}if(bn>>>0<=ln>>>0){break a}o[Ye+36>>2]=on+(ln<<2)}Cn=o[Ye+52>>2];zn=o[Ye+48>>2];bn=0;mn=(ln&1073741823)!=(ln|0)?-1:ln<<2;yn=xl(Hk(mn),0,mn);rn=Ye+8|0;mn=o[rn>>2];b:{if((mn|0)<1){break b}tn=Ye+16|0;on=Ye+32|0;un=Ye+12|0;while(1){mn=bn<<2;nn=o[mn+yn>>2];qn=o[tn>>2];c:{if((nn|0)>(qn|0)){sn=o[on>>2];o[mn+sn>>2]=qn;break c}sn=o[on>>2];mn=mn+sn|0;qn=o[un>>2];if((nn|0)<(qn|0)){o[mn>>2]=qn;break c}o[mn>>2]=nn}bn=bn+1|0;mn=o[rn>>2];if((bn|0)<(mn|0)){continue}break}if((mn|0)<1){break b}on=0;rn=Ye+16|0;nn=Ye+20|0;tn=Ye+8|0;un=Ye+12|0;while(1){mn=on<<2;bn=mn+an|0;mn=o[$m+mn>>2]+o[mn+sn>>2]|0;o[bn>>2]=mn;d:{if((mn|0)>o[rn>>2]){mn=mn-o[nn>>2]|0}else{if((mn|0)>=o[un>>2]){break d}mn=mn+o[nn>>2]|0}o[bn>>2]=mn}on=on+1|0;mn=o[tn>>2];if((on|0)<(mn|0)){continue}break}}bn=o[Ye+56>>2];An=o[bn>>2];bn=o[bn+4>>2]-An|0;if((bn|0)>=5){Bn=bn>>2;sn=Ye+16|0;rn=Ye+32|0;tn=Ye+8|0;un=Ye+20|0;qn=Ye+12|0;on=1;while(1){e:{f:{if(Bn>>>0>on>>>0){xn=u(ln,on);Ye=o[(on<<2)+An>>2];if((Ye|0)==-1){break f}Ye=o[o[zn+12>>2]+(Ye<<2)>>2];if((Ye|0)==-1){break f}bn=-1;pn=o[Cn>>2];nn=o[zn>>2];vn=o[pn+(o[nn+(Ye<<2)>>2]<<2)>>2];wn=Ye+1|0;wn=(wn>>>0)%3|0?wn:Ye+ -2|0;if((wn|0)!=-1){wn=o[nn+(wn<<2)>>2]}else{wn=-1}Ye=Ye+((Ye>>>0)%3|0?-1:2)|0;if((Ye|0)!=-1){bn=o[nn+(Ye<<2)>>2]}if((vn|0)>=(on|0)){break f}Ye=o[(wn<<2)+pn>>2];if((Ye|0)>=(on|0)){break f}bn=o[pn+(bn<<2)>>2];if((bn|0)>=(on|0)){break f}if((ln|0)>=1){nn=u(bn,ln);Ye=u(Ye,ln);pn=u(ln,vn);bn=0;while(1){o[(bn<<2)+yn>>2]=(o[(bn+nn<<2)+an>>2]+o[(Ye+bn<<2)+an>>2]|0)-o[(bn+pn<<2)+an>>2];bn=bn+1|0;if((ln|0)!=(bn|0)){continue}break}}if((mn|0)<1){break e}bn=0;while(1){Ye=bn<<2;mn=o[Ye+yn>>2];pn=o[sn>>2];g:{if((mn|0)>(pn|0)){nn=o[rn>>2];o[Ye+nn>>2]=pn;break g}nn=o[rn>>2];Ye=Ye+nn|0;pn=o[qn>>2];if((mn|0)<(pn|0)){o[Ye>>2]=pn;break g}o[Ye>>2]=mn}bn=bn+1|0;mn=o[tn>>2];if((bn|0)<(mn|0)){continue}break}bn=0;if((mn|0)<1){break e}Ye=xn<<2;xn=Ye+an|0;pn=Ye+$m|0;while(1){mn=bn<<2;Ye=mn+xn|0;mn=o[mn+pn>>2]+o[mn+nn>>2]|0;o[Ye>>2]=mn;h:{if((mn|0)>o[sn>>2]){mn=mn-o[un>>2]|0}else{if((mn|0)>=o[qn>>2]){break h}mn=mn+o[un>>2]|0}o[Ye>>2]=mn}bn=bn+1|0;mn=o[tn>>2];if((bn|0)<(mn|0)){continue}break}break e}Zk();D()}if((mn|0)<1){break e}pn=(u(on+ -1|0,ln)<<2)+an|0;bn=0;while(1){Ye=bn<<2;mn=o[Ye+pn>>2];vn=o[sn>>2];i:{if((mn|0)>(vn|0)){nn=o[rn>>2];o[Ye+nn>>2]=vn;break i}nn=o[rn>>2];Ye=Ye+nn|0;vn=o[qn>>2];if((mn|0)<(vn|0)){o[Ye>>2]=vn;break i}o[Ye>>2]=mn}bn=bn+1|0;mn=o[tn>>2];if((bn|0)<(mn|0)){continue}break}bn=0;if((mn|0)<1){break e}Ye=xn<<2;xn=Ye+an|0;pn=Ye+$m|0;while(1){mn=bn<<2;Ye=mn+xn|0;mn=o[mn+pn>>2]+o[mn+nn>>2]|0;o[Ye>>2]=mn;j:{if((mn|0)>o[sn>>2]){mn=mn-o[un>>2]|0}else{if((mn|0)>=o[qn>>2]){break j}mn=mn+o[un>>2]|0}o[Ye>>2]=mn}bn=bn+1|0;mn=o[tn>>2];if((bn|0)<(mn|0)){continue}break}}on=on+1|0;if((on|0)<(Bn|0)){continue}break}}ul(yn);return 1}function Ze(Ye){Ye=Ye|0;var $m=0;o[Ye>>2]=4324;$m=o[Ye+96>>2];if($m){ul($m)}$m=o[Ye+84>>2];if($m){ul($m)}$m=o[Ye+72>>2];if($m){ul($m)}$m=o[Ye+60>>2];if($m){ul($m)}o[Ye>>2]=2732;$m=o[Ye+32>>2];if($m){o[Ye+36>>2]=$m;ul($m)}return Ye|0}function _e(Ye){Ye=Ye|0;var an=0;o[Ye>>2]=4324;an=o[Ye+96>>2];if(an){ul(an)}an=o[Ye+84>>2];if(an){ul(an)}an=o[Ye+72>>2];if(an){ul(an)}an=o[Ye+60>>2];if(an){ul(an)}o[Ye>>2]=2732;an=o[Ye+32>>2];if(an){o[Ye+36>>2]=an;ul(an)}ul(Ye)}function $e(Ye,bn,ln,mn,Dn,En){Ye=Ye|0;bn=bn|0;ln=ln|0;mn=mn|0;Dn=Dn|0;En=En|0;var Fn=0,Gn=0,Hn=0,In=0,Jn=0,Kn=0,Ln=0,Mn=0,Nn=0,On=0,Pn=0,Qn=0,Rn=0,Sn=0,Tn=0,Un=0,Vn=0,Wn=0,Xn=0,Yn=0,Zn=0,_n=0,$n=0,ao=0,bo=0;Hn=R+ -64|0;R=Hn;o[Ye+8>>2]=Dn;En=Ye+32|0;In=o[En>>2];mn=o[Ye+36>>2]-In>>2;a:{if(mn>>>0<Dn>>>0){Da(En,Dn-mn|0);break a}if(mn>>>0<=Dn>>>0){break a}o[Ye+36>>2]=In+(Dn<<2)}o[Hn+56>>2]=0;o[Hn+60>>2]=0;o[Hn+48>>2]=0;o[Hn+52>>2]=0;o[Hn+40>>2]=0;o[Hn+44>>2]=0;mn=Hn+32|0;o[mn>>2]=0;o[mn+4>>2]=0;o[Hn+24>>2]=0;o[Hn+28>>2]=0;o[Hn+16>>2]=0;o[Hn+20>>2]=0;o[Hn>>2]=0;En=0;if(Dn){yd(Hn+16|0,Dn,Hn);Gn=o[Hn+28>>2];En=o[mn>>2]}o[Hn>>2]=0;mn=En-Gn>>2;b:{if(mn>>>0>=Dn>>>0){if(mn>>>0<=Dn>>>0){break b}o[Hn+32>>2]=(Dn<<2)+Gn;break b}yd(Hn+16|12,Dn-mn|0,Hn)}o[Hn>>2]=0;En=o[Hn+40>>2];mn=o[Hn+44>>2]-En>>2;c:{if(mn>>>0>=Dn>>>0){if(mn>>>0<=Dn>>>0){break c}o[Hn+44>>2]=En+(Dn<<2);break c}yd(Hn+40|0,Dn-mn|0,Hn)}o[Hn>>2]=0;En=o[Hn+52>>2];mn=o[Hn+56>>2]-En>>2;d:{if(mn>>>0>=Dn>>>0){if(mn>>>0<=Dn>>>0){break d}o[Hn+56>>2]=En+(Dn<<2);break d}yd(Hn+52|0,Dn-mn|0,Hn)}Kn=Ye+8|0;e:{if(o[Kn>>2]<=0){break e}Mn=o[Hn+16>>2];Gn=0;Jn=Ye+16|0;mn=Ye+32|0;Rn=Ye+12|0;while(1){En=Gn<<2;Fn=o[En+Mn>>2];Nn=o[Jn>>2];f:{if((Fn|0)>(Nn|0)){In=o[mn>>2];o[En+In>>2]=Nn;break f}In=o[mn>>2];En=En+In|0;Nn=o[Rn>>2];if((Fn|0)<(Nn|0)){o[En>>2]=Nn;break f}o[En>>2]=Fn}Gn=Gn+1|0;En=o[Kn>>2];if((Gn|0)<(En|0)){continue}break}if((En|0)<1){break e}En=0;Kn=Ye+16|0;Gn=Ye+20|0;Mn=Ye+8|0;Jn=Ye+12|0;while(1){Fn=En<<2;mn=Fn+ln|0;Fn=o[bn+Fn>>2]+o[Fn+In>>2]|0;o[mn>>2]=Fn;g:{if((Fn|0)>o[Kn>>2]){Fn=Fn-o[Gn>>2]|0}else{if((Fn|0)>=o[Jn>>2]){break g}Fn=Fn+o[Gn>>2]|0}o[mn>>2]=Fn}En=En+1|0;if((En|0)<o[Mn>>2]){continue}break}}ao=o[Ye+52>>2];Zn=o[Ye+48>>2];Yn=Hk(16);mn=Yn;o[mn>>2]=0;o[mn+4>>2]=0;o[mn+8>>2]=0;o[mn+12>>2]=0;o[Hn+8>>2]=0;o[Hn>>2]=0;o[Hn+4>>2]=0;h:{if(Dn){if(Dn>>>0>=1073741824){break h}mn=Dn<<2;Sn=Hk(mn);o[Hn>>2]=Sn;En=mn+Sn|0;o[Hn+8>>2]=En;xl(Sn,0,mn);o[Hn+4>>2]=En}In=1;mn=o[Ye+56>>2];_n=o[mn>>2];mn=o[mn+4>>2]-_n|0;i:{if((mn|0)<5){break i}$n=mn>>2;bo=Dn<<2;Mn=Ye+8|0;Rn=Ye+16|0;Nn=Ye+32|0;Vn=Ye+20|0;Wn=Ye+12|0;Kn=1;while(1){j:{k:{l:{if($n>>>0>Kn>>>0){m:{n:{In=o[(Kn<<2)+_n>>2];if((In|0)==-1){break n}Ln=o[Zn+12>>2];Un=In+((In>>>0)%3|0?-1:2)|0;Xn=Ln+(Un<<2)|0;Jn=1;En=0;mn=In;o:{while(1){Fn=o[Ln+(mn<<2)>>2];p:{if((Fn|0)==-1){break p}Gn=-1;Qn=o[ao>>2];On=o[Zn>>2];Tn=o[Qn+(o[On+(Fn<<2)>>2]<<2)>>2];Pn=Fn+1|0;Pn=(Pn>>>0)%3|0?Pn:Fn+ -2|0;if((Pn|0)!=-1){Pn=o[On+(Pn<<2)>>2]}else{Pn=-1}Fn=Fn+((Fn>>>0)%3|0?-1:2)|0;if((Fn|0)!=-1){Gn=o[On+(Fn<<2)>>2]}if((Tn|0)>=(Kn|0)){break p}Fn=o[(Pn<<2)+Qn>>2];if((Fn|0)>=(Kn|0)){break p}Gn=o[Qn+(Gn<<2)>>2];if((Gn|0)>=(Kn|0)){break p}On=o[(Hn+16|0)+u(En,12)>>2];if((Dn|0)>=1){Qn=u(Dn,Gn);Fn=u(Dn,Fn);Tn=u(Dn,Tn);Gn=0;while(1){o[On+(Gn<<2)>>2]=(o[(Gn+Qn<<2)+ln>>2]+o[(Fn+Gn<<2)+ln>>2]|0)-o[(Gn+Tn<<2)+ln>>2];Gn=Gn+1|0;if((Gn|0)!=(Dn|0)){continue}break}}Fn=4;En=En+1|0;if((En|0)==4){break o}}q:{if(Jn&1){On=mn+1|0;mn=(On>>>0)%3|0?On:mn+ -2|0;Fn=-1;if((mn|0)==-1){break q}mn=o[Ln+(mn<<2)>>2];Fn=-1;if((mn|0)==-1){break q}Fn=mn+1|0;Fn=(Fn>>>0)%3|0?Fn:mn+ -2|0;break q}mn=((mn>>>0)%3|0?-1:2)+mn|0;Fn=-1;if((mn|0)==-1){break q}mn=o[Ln+(mn<<2)>>2];Fn=-1;if((mn|0)==-1){break q}Fn=mn+ -1|0;if((mn>>>0)%3){break q}Fn=mn+2|0}r:{if((Fn|0)==(In|0)){break r}mn=Fn;Fn=(Fn|0)!=-1;Gn=(Fn|Jn^-1)&1;mn=Gn?mn:-1;Jn=Fn&Jn;if(!((Un|0)==-1|Gn)){Fn=o[Xn>>2];if((Fn|0)==-1){break r}Jn=0;if((Fn>>>0)%3){mn=Fn+ -1|0}else{mn=Fn+2|0}}if((mn|0)!=-1){continue}}break}Fn=En;if((Fn|0)<1){break n}}Ln=(Dn|0)<1;if(!Ln){xl(Sn,0,bo)}mn=Fn+ -1|0;Jn=(mn<<2)+Yn|0;mn=u(mn,12)+Ye|0;On=mn+60|0;Qn=o[mn- -64>>2];In=0;Tn=o[Hn>>2];mn=0;En=0;while(1){Gn=o[Jn>>2];o[Jn>>2]=Gn+1;if(Qn>>>0<=Gn>>>0){break i}s:{if(o[o[On>>2]+(Gn>>>3&536870908)>>2]>>>(Gn&31)&1){break s}En=En+1|0;if(Ln){break s}Pn=o[(Hn+16|0)+u(mn,12)>>2];Gn=0;while(1){Un=Gn<<2;Xn=Un+Tn|0;o[Xn>>2]=o[Xn>>2]+o[Pn+Un>>2];Gn=Gn+1|0;if((Gn|0)!=(Dn|0)){continue}break}}mn=mn+1|0;if((Fn|0)!=(mn|0)){continue}break}Fn=u(Dn,Kn);mn=Fn;if(!En){break m}Gn=0;if((Dn|0)>0){break l}break k}mn=u(Dn,Kn)}if(o[Mn>>2]<1){break j}Jn=(u(Kn+ -1|0,Dn)<<2)+ln|0;Gn=0;while(1){En=Gn<<2;Fn=o[En+Jn>>2];Ln=o[Rn>>2];t:{if((Fn|0)>(Ln|0)){In=o[Nn>>2];o[En+In>>2]=Ln;break t}In=o[Nn>>2];En=En+In|0;Ln=o[Wn>>2];if((Fn|0)<(Ln|0)){o[En>>2]=Ln;break t}o[En>>2]=Fn}Gn=Gn+1|0;Fn=o[Mn>>2];if((Gn|0)<(Fn|0)){continue}break}En=0;if((Fn|0)<1){break j}mn=mn<<2;Gn=mn+ln|0;Jn=bn+mn|0;while(1){Fn=En<<2;mn=Fn+Gn|0;Fn=o[Fn+Jn>>2]+o[Fn+In>>2]|0;o[mn>>2]=Fn;u:{if((Fn|0)>o[Rn>>2]){Fn=Fn-o[Vn>>2]|0}else{if((Fn|0)>=o[Wn>>2]){break u}Fn=Fn+o[Vn>>2]|0}o[mn>>2]=Fn}En=En+1|0;if((En|0)<o[Mn>>2]){continue}break}break j}Zk();D()}while(1){mn=(Gn<<2)+Sn|0;o[mn>>2]=o[mn>>2]/(En|0);Gn=Gn+1|0;if((Gn|0)!=(Dn|0)){continue}break}}if(o[Mn>>2]<1){break j}Gn=0;while(1){mn=Gn<<2;En=o[mn+Sn>>2];Jn=o[Rn>>2];v:{if((En|0)>(Jn|0)){In=o[Nn>>2];o[mn+In>>2]=Jn;break v}In=o[Nn>>2];mn=mn+In|0;Jn=o[Wn>>2];if((En|0)<(Jn|0)){o[mn>>2]=Jn;break v}o[mn>>2]=En}Gn=Gn+1|0;mn=o[Mn>>2];if((Gn|0)<(mn|0)){continue}break}En=0;if((mn|0)<1){break j}mn=Fn<<2;Gn=mn+ln|0;Jn=bn+mn|0;while(1){Fn=En<<2;mn=Fn+Gn|0;Fn=o[Fn+Jn>>2]+o[Fn+In>>2]|0;o[mn>>2]=Fn;w:{if((Fn|0)>o[Rn>>2]){Fn=Fn-o[Vn>>2]|0}else{if((Fn|0)>=o[Wn>>2]){break w}Fn=Fn+o[Vn>>2]|0}o[mn>>2]=Fn}En=En+1|0;if((En|0)<o[Mn>>2]){continue}break}}In=1;Kn=Kn+1|0;if((Kn|0)<($n|0)){continue}break}}Ye=o[Hn>>2];if(Ye){o[Hn+4>>2]=Ye;ul(Ye)}ul(Yn);Ye=o[Hn+52>>2];if(Ye){o[Hn+56>>2]=Ye;ul(Ye)}Ye=o[Hn+40>>2];if(Ye){o[Hn+44>>2]=Ye;ul(Ye)}Ye=o[Hn+28>>2];if(Ye){o[Hn+32>>2]=Ye;ul(Ye)}Ye=o[Hn+16>>2];if(Ye){o[Hn+20>>2]=Ye;ul(Ye)}R=Hn- -64|0;return In|0}Yk();D()}function af(Ye){Ye=Ye|0;var bn=0;o[Ye>>2]=4560;bn=o[Ye+76>>2];if(bn){ul(bn)}o[Ye>>2]=2732;bn=o[Ye+32>>2];if(bn){o[Ye+36>>2]=bn;ul(bn)}return Ye|0}function bf(Ye){Ye=Ye|0;var ln=0;o[Ye>>2]=4560;ln=o[Ye+76>>2];if(ln){ul(ln)}o[Ye>>2]=2732;ln=o[Ye+32>>2];if(ln){o[Ye+36>>2]=ln;ul(ln)}ul(Ye)}function cf(Ye,mn,Dn,En,co,eo){Ye=Ye|0;mn=mn|0;Dn=Dn|0;En=En|0;co=co|0;eo=eo|0;var fo=0,go=0,ho=0,io=0,jo=0,ko=0,lo=0,mo=0,no=0,oo=0,po=0,qo=0;En=0;a:{if((co|0)!=2){break a}o[Ye+8>>2]=2;o[Ye- -64>>2]=eo;En=Ye+32|0;co=o[En>>2];eo=o[Ye+36>>2]-co|0;fo=eo>>2;b:{if(fo>>>0<=1){Da(En,2-fo|0);break b}if((eo|0)==8){break b}o[Ye+36>>2]=co+8}En=1;co=o[Ye+56>>2];eo=o[co+4>>2];co=o[co>>2];fo=eo-co|0;if((fo|0)<1){break a}if((co|0)!=(eo|0)){no=Ye+60|0;oo=fo>>2;fo=Ye+8|0;jo=Ye+16|0;ko=Ye+32|0;lo=Ye+20|0;mo=Ye+12|0;po=Ye+56|0;while(1){if(!df(no,o[(ho<<2)+co>>2],Dn,ho)){En=0;break a}c:{if(o[fo>>2]<1){break c}co=0;while(1){En=co<<2;eo=o[(En+Ye|0)+68>>2];go=o[jo>>2];d:{if((eo|0)>(go|0)){io=o[ko>>2];o[En+io>>2]=go;break d}io=o[ko>>2];En=En+io|0;go=o[mo>>2];if((eo|0)<(go|0)){o[En>>2]=go;break d}o[En>>2]=eo}co=co+1|0;En=o[fo>>2];if((co|0)<(En|0)){continue}break}eo=0;if((En|0)<1){break c}En=ho<<3;go=En+Dn|0;qo=mn+En|0;while(1){co=eo<<2;En=co+go|0;co=o[co+qo>>2]+o[co+io>>2]|0;o[En>>2]=co;e:{if((co|0)>o[jo>>2]){co=co-o[lo>>2]|0}else{if((co|0)>=o[mo>>2]){break e}co=co+o[lo>>2]|0}o[En>>2]=co}eo=eo+1|0;if((eo|0)<o[fo>>2]){continue}break}}En=1;ho=ho+1|0;if((ho|0)>=(oo|0)){break a}En=o[po>>2];co=o[En>>2];if(o[En+4>>2]-co>>2>>>0>ho>>>0){continue}break}}Zk();D()}return En|0}function df(Ye,mn,Dn,En){var co=0,eo=0,ro=0,so=0,to=0,uo=0,vo=0,wo=0,xo=0,yo=0,zo=0,Ao=0,Bo=0,Co=0,Do=0,Eo=0,Fo=0,Go=0,Ho=0,Io=0,Jo=0,Ko=0,Lo=0,Mo=0,No=0;ro=R-80|0;R=ro;co=-1;eo=-1;a:{if((mn|0)==-1){break a}so=((mn>>>0)%3|0?-1:2)+mn|0;to=o[Ye+32>>2];vo=mn+1|0;mn=(vo>>>0)%3|0?vo:mn+ -2|0;if((mn|0)!=-1){co=o[o[to>>2]+(mn<<2)>>2]}if((so|0)==-1){break a}eo=o[o[to>>2]+(so<<2)>>2]}so=o[Ye+36>>2];mn=o[so>>2];b:{c:{d:{e:{so=o[so+4>>2]-mn>>2;if(!(so>>>0<=co>>>0|so>>>0<=eo>>>0)){f:{g:{yo=o[mn+(co<<2)>>2];Ao=(yo|0)>=(En|0);if(Ao){break g}eo=o[mn+(eo<<2)>>2];if((eo|0)>=(En|0)){break g}mn=eo<<3;Fo=o[(mn|4)+Dn>>2];co=yo<<3;vo=o[(co|4)+Dn>>2];Co=o[mn+Dn>>2];Eo=o[Dn+co>>2];if(!((Co|0)!=(Eo|0)|(vo|0)!=(Fo|0))){o[Ye+8>>2]=Eo;o[Ye+12>>2]=vo;break f}mn=o[o[Ye+4>>2]+(En<<2)>>2];o[ro+72>>2]=0;o[ro+76>>2]=0;co=ro- -64|0;o[co>>2]=0;o[co+4>>2]=0;o[ro+56>>2]=0;o[ro+60>>2]=0;co=o[Ye>>2];if(!p[co+84|0]){mn=o[o[co+68>>2]+(mn<<2)>>2]}Me(co,mn,m[co+24|0],ro+56|0);mn=o[o[Ye+4>>2]+(yo<<2)>>2];o[ro+48>>2]=0;o[ro+52>>2]=0;o[ro+40>>2]=0;o[ro+44>>2]=0;o[ro+32>>2]=0;o[ro+36>>2]=0;co=o[Ye>>2];if(!p[co+84|0]){mn=o[o[co+68>>2]+(mn<<2)>>2]}Me(co,mn,m[co+24|0],ro+32|0);mn=o[o[Ye+4>>2]+(eo<<2)>>2];o[ro+24>>2]=0;o[ro+28>>2]=0;o[ro+16>>2]=0;o[ro+20>>2]=0;o[ro+8>>2]=0;o[ro+12>>2]=0;co=o[Ye>>2];if(!p[co+84|0]){mn=o[o[co+68>>2]+(mn<<2)>>2]}Me(co,mn,m[co+24|0],ro+8|0);Go=o[ro+44>>2];mn=o[ro+16>>2];uo=o[ro+40>>2];co=uo;eo=o[ro+20>>2]-(Go+(mn>>>0<co>>>0)|0)|0;Io=mn-co|0;mn=Vl(Io,eo,Io,eo);co=T;xo=mn;Ho=o[ro+36>>2];mn=o[ro+8>>2];wo=o[ro+32>>2];to=wo;so=o[ro+12>>2]-(Ho+(mn>>>0<to>>>0)|0)|0;Jo=mn-to|0;to=Vl(Jo,so,Jo,so);mn=xo+to|0;co=T+co|0;co=mn>>>0<to>>>0?co+1|0:co;Bo=mn;Lo=o[ro+52>>2];mn=o[ro+24>>2];xo=o[ro+48>>2];to=xo;zo=o[ro+28>>2]-(Lo+(mn>>>0<to>>>0)|0)|0;Ko=mn-to|0;to=Vl(Ko,zo,Ko,zo);mn=Bo+to|0;co=T+co|0;Do=mn;to=mn>>>0<to>>>0?co+1|0:co;if(!(mn|to)){break g}En=1;mn=0;co=o[ro+64>>2];Dn=o[ro+68>>2]-((co>>>0<uo>>>0)+Go|0)|0;co=co-uo|0;yo=co;Ao=Dn;Dn=Vl(Io,eo,co,Dn);co=T;Bo=Dn;uo=o[ro+56>>2];Dn=uo-wo|0;Go=o[ro+60>>2]-((uo>>>0<wo>>>0)+Ho|0)|0;wo=Vl(Dn,Go,Jo,so);uo=Bo+wo|0;co=T+co|0;co=uo>>>0<wo>>>0?co+1|0:co;Bo=uo;uo=o[ro+72>>2];wo=uo-xo|0;Ho=o[ro+76>>2]-((uo>>>0<xo>>>0)+Lo|0)|0;xo=Vl(wo,Ho,Ko,zo);uo=Bo+xo|0;co=T+co|0;co=uo>>>0<xo>>>0?co+1|0:co;xo=uo;uo=co;eo=Wl(Vl(xo,co,Io,eo),T,Do,to);Ao=Ao-(T+(yo>>>0<eo>>>0)|0)|0;eo=yo-eo|0;eo=Vl(eo,Ao,eo,Ao);yo=T;Bo=eo;co=Wl(Vl(Jo,so,xo,co),T,Do,to);eo=Go-(T+(Dn>>>0<co>>>0)|0)|0;Dn=Dn-co|0;eo=Vl(Dn,eo,Dn,eo);Dn=Bo+eo|0;co=T+yo|0;co=Dn>>>0<eo>>>0?co+1|0:co;so=Dn;Dn=Wl(Vl(xo,uo,Ko,zo),T,Do,to);eo=Ho-(T+(wo>>>0<Dn>>>0)|0)|0;Dn=wo-Dn|0;eo=Vl(Dn,eo,Dn,eo);Dn=so+eo|0;co=T+co|0;eo=Vl(Dn,Dn>>>0<eo>>>0?co+1|0:co,Do,to);Dn=T;so=Dn;if(!Dn&eo>>>0<=1|Dn>>>0<0){break e}zo=eo;Dn=so;while(1){co=mn<<1|En>>>31;En=En<<1;mn=co;wo=!Dn&zo>>>0>7|Dn>>>0>0;zo=(Dn&3)<<30|zo>>>2;Dn=Dn>>>2;if(wo){continue}break}break d}co=Ye;if(Ao){if((En|0)<=0){o[Ye+8>>2]=0;o[Ye+12>>2]=0;break f}mn=(En<<1)+ -2|0}else{mn=yo<<1}mn=(mn<<2)+Dn|0;o[co+8>>2]=o[mn>>2];o[Ye+12>>2]=o[mn+4>>2]}Dn=1;break b}Zk();D()}En=eo;mn=so;if(eo-1){break c}}while(1){Dn=Xl(eo,so,En,mn)+En|0;co=mn+T|0;co=Dn>>>0<En>>>0?co+1|0:co;En=(co&1)<<31|Dn>>>1;mn=co>>>1;Dn=Vl(En,mn,En,mn);co=T;if((so|0)==(co|0)&Dn>>>0>eo>>>0|co>>>0>so>>>0){continue}break}}co=o[Ye+20>>2];Dn=0;if(!co){break b}so=co+ -1|0;zo=o[o[Ye+16>>2]+(so>>>3&536870908)>>2];o[Ye+20>>2]=so;Dn=Fo;co=vo;wo=Dn-co|0;vo=co>>31;Fo=(Dn>>31)-(vo+(Dn>>>0<co>>>0)|0)|0;Dn=Vl(xo,uo,wo,Fo);eo=T;vo=Vl(co,vo,Do,to);Dn=vo+Dn|0;co=T+eo|0;co=Dn>>>0<vo>>>0?co+1|0:co;Bo=Dn;Dn=Co;eo=Eo;yo=Dn-eo|0;Eo=eo>>31;vo=(Dn>>31)-(Eo+(Dn>>>0<eo>>>0)|0)|0;Dn=Vl(En,mn,yo,vo);Co=Dn;Dn=zo>>>(so&31)&1;Ao=Dn?0-Co|0:Co;so=Bo+Ao|0;zo=co;co=T;co=zo+(Dn?0-(co+(0<Co>>>0)|0)|0:co)|0;Mo=Ye,No=Wl(so,so>>>0<Ao>>>0?co+1|0:co,Do,to),o[Mo+12>>2]=No;co=Vl(xo,uo,yo,vo);so=T;Co=Ye;eo=Vl(eo,Eo,Do,to);Ye=eo+co|0;co=T+so|0;co=Ye>>>0<eo>>>0?co+1|0:co;uo=Ye;Ye=Vl(En,mn,wo,Fo);En=Dn?Ye:0-Ye|0;mn=uo+En|0;uo=co;co=T;Ye=uo+(Dn?co:0-((0<Ye>>>0)+co|0)|0)|0;Mo=Co,No=Wl(mn,mn>>>0<En>>>0?Ye+1|0:Ye,Do,to),o[Mo+8>>2]=No;Dn=1}R=ro+80|0;return Dn}function ef(Ye){Ye=Ye|0;var mn=0;o[Ye>>2]=4784;o[Ye>>2]=2732;mn=o[Ye+32>>2];if(mn){o[Ye+36>>2]=mn;ul(mn)}return Ye|0}function ff(Ye){Ye=Ye|0;var Dn=0;o[Ye>>2]=4784;o[Ye>>2]=2732;Dn=o[Ye+32>>2];if(Dn){o[Ye+36>>2]=Dn;ul(Dn)}ul(Ye)}function gf(Ye,En,Oo,Po,Qo,Ro){Ye=Ye|0;En=En|0;Oo=Oo|0;Po=Po|0;Qo=Qo|0;Ro=Ro|0;var So=0,To=0,Uo=0,Vo=0,Wo=0,Xo=0,Yo=0,Zo=0,_o=0,$o=0,ap=0,bp=0,cp=0,dp=0,ep=0;To=R-32|0;R=To;o[Ye+68>>2]=Ro;Po=o[Ye+56>>2];Qo=o[Po>>2];Ro=Po+4|0;So=o[Ro>>2];o[To+24>>2]=0;o[To+16>>2]=0;o[To+20>>2]=0;a:{Qo=So-Qo|0;if((Qo|0)<1){break a}Po=o[Po>>2];if((Po|0)!=o[Ro>>2]){bp=Qo>>2;cp=Ye+60|0;dp=Ye+108|0;Yo=Ye+8|0;Zo=Ye+16|0;_o=Ye+32|0;$o=Ye+20|0;ap=Ye+12|0;ep=Ye+56|0;while(1){hf(cp,o[(Wo<<2)+Po>>2],To+16|0);Qo=o[To+20>>2];So=Qo>>31;Ro=o[To+16>>2];Uo=Ro>>31;Xo=o[To+24>>2];Vo=Xo>>31;Po=0;Vo=Vo^Vo+Xo;So=Vo+((So^Qo+So)+(Uo^Ro+Uo)|0)|0;if(So>>>0<Vo>>>0){Po=1}b:{if(!(Po|So)){o[To+16>>2]=o[Ye+104>>2];break b}Uo=o[Ye+104>>2];Vo=Uo>>31;Qo=Wl(Vl(Uo,Vo,Qo,Qo>>31),T,So,Po);o[To+20>>2]=Qo;Po=Wl(Vl(Uo,Vo,Ro,Ro>>31),T,So,Po);o[To+16>>2]=Po;Ro=Po;Po=Po>>31;Po=(Uo-(Ro+Po^Po)|0)+((Qo|0)<0?Qo:0-Qo|0)|0;if((Xo|0)>=0){o[To+24>>2]=Po;break b}o[To+24>>2]=0-Po}Po=Pf(dp);Ro=o[To+16>>2];c:{if(!Po){Qo=o[To+20>>2];break c}o[To+24>>2]=0-o[To+24>>2];Qo=0-o[To+20>>2]|0;o[To+20>>2]=Qo;Ro=0-Ro|0;o[To+16>>2]=Ro}d:{if((Ro|0)>=0){Po=o[Ye+104>>2];Ro=Po+o[To+24>>2]|0;Po=Po+Qo|0;break d}e:{if((Qo|0)<=-1){Ro=o[To+24>>2];Po=Ro>>31;Po=Po^Po+Ro;break e}Ro=o[To+24>>2];Po=Ro>>31;Po=o[Ye+100>>2]-(Po^Po+Ro)|0}if((Ro|0)<=-1){Ro=Qo;Qo=Qo>>31;Ro=Ro+Qo^Qo;break d}Ro=Qo;Qo=Qo>>31;Ro=o[Ye+100>>2]-(Ro+Qo^Qo)|0}Qo=o[Ye+100>>2];f:{if(!(Po|Ro)){Ro=Qo;Po=Qo;break f}if(!((Qo|0)!=(Ro|0)|Po)){Po=Ro;break f}if(!((Po|0)!=(Qo|0)|Ro)){Ro=Po;break f}g:{if(Po){break g}So=o[Ye+104>>2];if((So|0)>=(Ro|0)){break g}Ro=(So<<1)-Ro|0;Po=0;break f}h:{if((Po|0)!=(Qo|0)){break h}So=o[Ye+104>>2];if((So|0)<=(Ro|0)){break h}Ro=(So<<1)-Ro|0;break f}i:{if((Qo|0)!=(Ro|0)){break i}Qo=o[Ye+104>>2];if((Qo|0)<=(Po|0)){break i}Po=(Qo<<1)-Po|0;break f}if(Ro){break f}Ro=0;Qo=o[Ye+104>>2];if((Qo|0)>=(Po|0)){break f}Po=(Qo<<1)-Po|0}o[To+12>>2]=Ro;o[To+8>>2]=Po;j:{if(o[Yo>>2]<1){break j}Ro=0;while(1){So=o[Zo>>2];k:{if((Po|0)>(So|0)){Qo=o[_o>>2];o[Qo+(Ro<<2)>>2]=So;break k}Qo=o[_o>>2];So=Qo+(Ro<<2)|0;Uo=o[ap>>2];if((Po|0)<(Uo|0)){o[So>>2]=Uo;break k}o[So>>2]=Po}Ro=Ro+1|0;So=o[Yo>>2];if((Ro|0)<(So|0)){Po=o[(To+8|0)+(Ro<<2)>>2];continue}break}Po=0;if((So|0)<1){break j}Ro=Wo<<3;Uo=Ro+Oo|0;Xo=En+Ro|0;while(1){So=Po<<2;Ro=So+Uo|0;So=o[So+Xo>>2]+o[Qo+So>>2]|0;o[Ro>>2]=So;l:{if((So|0)>o[Zo>>2]){Vo=So-o[$o>>2]|0}else{if((So|0)>=o[ap>>2]){break l}Vo=So+o[$o>>2]|0}o[Ro>>2]=Vo}Po=Po+1|0;if((Po|0)<o[Yo>>2]){continue}break}}Wo=Wo+1|0;if((Wo|0)>=(bp|0)){break a}Qo=o[ep>>2];Po=o[Qo>>2];if(o[Qo+4>>2]-Po>>2>>>0>Wo>>>0){continue}break}}Zk();D()}R=To+32|0;return 1}function hf(Ye,En,Oo){Ye=Ye|0;En=En|0;Oo=Oo|0;var Po=0,Qo=0,Ro=0,fp=0,gp=0,hp=0,ip=0,jp=0,kp=0,lp=0,mp=0,np=0,op=0,pp=0,qp=0,rp=0,sp=0,tp=0,up=0,vp=0,wp=0,xp=0,yp=0,zp=0,Ap=0,Bp=0;Ro=R-96|0;R=Ro;Qo=o[Ye+16>>2];m[Ro+92|0]=1;o[Ro+88>>2]=En;o[Ro+84>>2]=En;o[Ro+80>>2]=Qo;Po=-1;Po=(En|0)!=-1?o[o[Qo>>2]+(En<<2)>>2]:Po;fp=o[Ye+20>>2];Qo=o[fp>>2];a:{b:{c:{d:{if(o[fp+4>>2]-Qo>>2>>>0>Po>>>0){Qo=o[o[Ye+8>>2]+(o[Qo+(Po<<2)>>2]<<2)>>2];Po=o[Ye+4>>2];if(!p[Po+84|0]){Qo=o[o[Po+68>>2]+(Qo<<2)>>2]}o[Ro+72>>2]=0;o[Ro+76>>2]=0;fp=Ro- -64|0;o[fp>>2]=0;o[fp+4>>2]=0;o[Ro+56>>2]=0;o[Ro+60>>2]=0;Me(Po,Qo,m[Po+24|0],Ro+56|0);if((En|0)==-1){break a}Po=En+1|0;fp=(Po>>>0)%3|0?Po:En+ -2|0;pp=((En>>>0)%3|0?-1:2)+En|0;wp=Ye+28|0;gp=!o[wp>>2];xp=Ye+20|0;yp=Ye+8|0;zp=Ro+48|0;while(1){Qo=fp;Po=pp;e:{if(gp){break e}Po=En+1|0;Qo=(Po>>>0)%3|0?Po:En+ -2|0;Po=En+ -1|0;if((En>>>0)%3){break e}Po=En+2|0}En=-1;En=(Qo|0)!=-1?o[o[o[Ye+16>>2]>>2]+(Qo<<2)>>2]:En;gp=o[xp>>2];Qo=o[gp>>2];if(o[gp+4>>2]-Qo>>2>>>0<=En>>>0){break d}Qo=o[o[yp>>2]+(o[Qo+(En<<2)>>2]<<2)>>2];gp=Ye+4|0;En=o[gp>>2];if(!p[En+84|0]){Qo=o[o[En+68>>2]+(Qo<<2)>>2]}o[zp>>2]=0;o[zp+4>>2]=0;o[Ro+40>>2]=0;o[Ro+44>>2]=0;o[Ro+32>>2]=0;o[Ro+36>>2]=0;Me(En,Qo,m[En+24|0],Ro+32|0);En=-1;En=(Po|0)!=-1?o[o[o[Ye+16>>2]>>2]+(Po<<2)>>2]:En;Qo=o[xp>>2];Po=o[Qo>>2];if(o[Qo+4>>2]-Po>>2>>>0<=En>>>0){break c}Po=o[o[yp>>2]+(o[Po+(En<<2)>>2]<<2)>>2];En=o[gp>>2];if(!p[En+84|0]){Po=o[o[En+68>>2]+(Po<<2)>>2]}Qo=Ro+24|0;o[Qo>>2]=0;o[Qo+4>>2]=0;gp=Ro+16|0;o[gp>>2]=0;o[gp+4>>2]=0;o[Ro+8>>2]=0;o[Ro+12>>2]=0;Me(En,Po,m[En+24|0],Ro+8|0);Po=o[Ro+8>>2];En=o[Ro+56>>2];qp=Po-En|0;rp=o[Ro+60>>2];jp=o[Ro+12>>2]-(rp+(Po>>>0<En>>>0)|0)|0;sp=o[Ro+40>>2];Po=o[Ro+64>>2];Ap=sp-Po|0;tp=o[Ro+68>>2];sp=o[Ro+44>>2]-(tp+(sp>>>0<Po>>>0)|0)|0;up=Vl(qp,jp,Ap,sp);vp=hp-up|0;kp=kp-(T+(hp>>>0<up>>>0)|0)|0;hp=o[gp>>2];up=hp-Po|0;gp=o[gp+4>>2]-((hp>>>0<Po>>>0)+tp|0)|0;hp=o[Ro+32>>2];tp=hp-En|0;rp=o[Ro+36>>2]-((hp>>>0<En>>>0)+rp|0)|0;Po=Vl(up,gp,tp,rp);hp=Po+vp|0;En=T+kp|0;En=hp>>>0<Po>>>0?En+1|0:En;kp=En;Po=ip;mp=qp;Bp=jp;ip=o[Ro+48>>2];En=o[Ro+72>>2];jp=ip-En|0;qp=o[Ro+76>>2];vp=o[Ro+52>>2]-(qp+(ip>>>0<En>>>0)|0)|0;mp=Vl(mp,Bp,jp,vp);ip=Po+mp|0;Po=T+np|0;Po=ip>>>0<mp>>>0?Po+1|0:Po;np=ip;ip=o[Qo>>2];mp=ip-En|0;En=o[Qo+4>>2]-((ip>>>0<En>>>0)+qp|0)|0;Qo=Vl(mp,En,tp,rp);ip=np-Qo|0;np=Po-(T+(np>>>0<Qo>>>0)|0)|0;Po=Vl(up,gp,jp,vp);Qo=lp-Po|0;op=op-(T+(lp>>>0<Po>>>0)|0)|0;Po=Vl(mp,En,Ap,sp);lp=Po+Qo|0;En=T+op|0;En=lp>>>0<Po>>>0?En+1|0:En;op=En;jf(Ro+80|0);jp=o[wp>>2];gp=!jp;En=o[Ro+88>>2];if((En|0)!=-1){continue}break}En=np;Po=En>>31;Ye=En>>31;En=Ye+En|0;fp=Po+ip|0;if(fp>>>0<Po>>>0){En=En+1|0}Po=Po^fp;gp=Ye^En;En=op;Ye=En>>31;En=En>>31;fp=Ye;pp=op+Ye|0;Qo=En+lp|0;if(Qo>>>0<En>>>0){pp=pp+1|0}Ye=En^Qo;Qo=fp^pp;f:{if((kp|0)<-1?1:(kp|0)<=-1?hp>>>0>4294967295?0:1:0){En=hp;fp=Ye+(Po-En|0)|0;En=Qo+(gp-((Po>>>0<En>>>0)+kp|0)|0)|0;Po=fp;Ye=Po>>>0<Ye>>>0?En+1|0:En;if(!jp){break f}break b}En=gp+kp|0;fp=Po;Po=hp;fp=fp+Po|0;if(fp>>>0<Po>>>0){En=En+1|0}Po=Ye;fp=Po+fp|0;Ye=En+Qo|0;Ye=fp>>>0<Po>>>0?Ye+1|0:Ye;Po=fp;if(jp){break b}}if((Po|0)<536870913){break a}Ye=((Ye&536870911)<<3|Po>>>29)&7;En=0;hp=Wl(hp,kp,Ye,En);ip=Wl(ip,np,Ye,En);lp=Wl(lp,op,Ye,En);break a}Zk();D()}Zk();D()}Zk();D()}if((Ye|0)<0?1:(Ye|0)<=0?Po>>>0>=536870913?0:1:0){break a}En=Ye>>>29;Ye=(Ye&536870911)<<3|Po>>>29;hp=Wl(hp,kp,Ye,En);ip=Wl(ip,np,Ye,En);lp=Wl(lp,op,Ye,En)}o[Oo+8>>2]=hp;o[Oo+4>>2]=ip;o[Oo>>2]=lp;R=Ro+96|0}function jf(Ye){var En=0,Oo=0,Cp=0;En=o[Ye+8>>2];Cp=o[Ye>>2];a:{if(p[Ye+12|0]){b:{c:{d:{e:{if((En|0)==-1){break e}Oo=En+1|0;En=(Oo>>>0)%3|0?Oo:En+ -2|0;if((En|0)==-1){break e}En=o[o[Cp+12>>2]+(En<<2)>>2];if((En|0)!=-1){break d}}o[Ye+8>>2]=-1;break c}Oo=En+1|0;En=(Oo>>>0)%3|0?Oo:En+ -2|0;o[Ye+8>>2]=En;if((En|0)!=-1){break b}}Oo=o[Ye+4>>2];En=-1;f:{if((Oo|0)==-1){break f}Oo=Oo+((Oo>>>0)%3|0?-1:2)|0;En=-1;if((Oo|0)==-1){break f}Oo=o[o[Cp+12>>2]+(Oo<<2)>>2];En=-1;if((Oo|0)==-1){break f}En=Oo+ -1|0;if((Oo>>>0)%3){break f}En=Oo+2|0}m[Ye+12|0]=0;o[Ye+8>>2]=En;return}if((En|0)!=o[Ye+4>>2]){break a}o[Ye+8>>2]=-1;return}Oo=-1;g:{if((En|0)==-1){break g}En=En+((En>>>0)%3|0?-1:2)|0;Oo=-1;if((En|0)==-1){break g}En=o[o[Cp+12>>2]+(En<<2)>>2];Oo=-1;if((En|0)==-1){break g}Oo=En+ -1|0;if((En>>>0)%3){break g}Oo=En+2|0}o[Ye+8>>2]=Oo}}function kf(Ye,Dp,Ep,Fp,Gp,Hp){Ye=Ye|0;Dp=Dp|0;Ep=Ep|0;Fp=Fp|0;Gp=Gp|0;Hp=Hp|0;var Ip=0,Jp=0,Kp=0,Lp=0,Mp=0,Np=0,Op=0,Pp=0,Qp=0,Rp=0,Sp=0,Tp=0,Up=0,Vp=0;o[Ye+8>>2]=Gp;Jp=Ye+32|0;Ip=o[Jp>>2];Hp=o[Ye+36>>2]-Ip>>2;a:{if(Hp>>>0<Gp>>>0){Da(Jp,Gp-Hp|0);break a}if(Hp>>>0<=Gp>>>0){break a}o[Ye+36>>2]=Ip+(Gp<<2)}Jp=0;Hp=(Gp&1073741823)!=(Gp|0)?-1:Gp<<2;Sp=xl(Hk(Hp),0,Hp);Mp=Ye+8|0;Ip=o[Mp>>2];b:{if((Ip|0)<1){break b}Op=Ye+16|0;Hp=Ye+32|0;Pp=Ye+12|0;while(1){Ip=Jp<<2;Lp=o[Ip+Sp>>2];Kp=o[Op>>2];c:{if((Lp|0)>(Kp|0)){Np=o[Hp>>2];o[Ip+Np>>2]=Kp;break c}Np=o[Hp>>2];Ip=Ip+Np|0;Kp=o[Pp>>2];if((Lp|0)<(Kp|0)){o[Ip>>2]=Kp;break c}o[Ip>>2]=Lp}Jp=Jp+1|0;Ip=o[Mp>>2];if((Jp|0)<(Ip|0)){continue}break}if((Ip|0)<1){break b}Jp=0;Mp=Ye+16|0;Lp=Ye+20|0;Op=Ye+8|0;Pp=Ye+12|0;while(1){Ip=Jp<<2;Hp=Ip+Ep|0;Ip=o[Dp+Ip>>2]+o[Ip+Np>>2]|0;o[Hp>>2]=Ip;d:{if((Ip|0)>o[Mp>>2]){Ip=Ip-o[Lp>>2]|0}else{if((Ip|0)>=o[Pp>>2]){break d}Ip=Ip+o[Lp>>2]|0}o[Hp>>2]=Ip}Jp=Jp+1|0;Ip=o[Op>>2];if((Jp|0)<(Ip|0)){continue}break}}if((Gp|0)<(Fp|0)){Up=0-Gp<<2;Lp=Ye+16|0;Np=Ye+32|0;Mp=Ye+8|0;Op=Ye+20|0;Pp=Ye+12|0;Hp=Gp;while(1){e:{if((Ip|0)<1){break e}Rp=Hp<<2;Tp=Rp+Ep|0;Vp=Tp+Up|0;Jp=0;while(1){Ye=Jp<<2;Ip=o[Ye+Vp>>2];Qp=o[Lp>>2];f:{if((Ip|0)>(Qp|0)){Kp=o[Np>>2];o[Ye+Kp>>2]=Qp;break f}Kp=o[Np>>2];Ye=Ye+Kp|0;Qp=o[Pp>>2];if((Ip|0)<(Qp|0)){o[Ye>>2]=Qp;break f}o[Ye>>2]=Ip}Jp=Jp+1|0;Ip=o[Mp>>2];if((Jp|0)<(Ip|0)){continue}break}Jp=0;if((Ip|0)<1){break e}Rp=Dp+Rp|0;while(1){Ip=Jp<<2;Ye=Ip+Tp|0;Ip=o[Ip+Rp>>2]+o[Ip+Kp>>2]|0;o[Ye>>2]=Ip;g:{if((Ip|0)>o[Lp>>2]){Ip=Ip-o[Op>>2]|0}else{if((Ip|0)>=o[Pp>>2]){break g}Ip=Ip+o[Op>>2]|0}o[Ye>>2]=Ip}Jp=Jp+1|0;Ip=o[Mp>>2];if((Jp|0)<(Ip|0)){continue}break}}Hp=Gp+Hp|0;if((Hp|0)<(Fp|0)){continue}break}}ul(Sp);return 1}function lf(Ye,Dp,Ep){Ye=Ye|0;Dp=Dp|0;Ep=Ep|0;var Fp=0;a:{if(!ae(Ye,Dp,Ep)){break a}Ye=o[Ye+8>>2];if(p[Ye+24|0]!=3){break a}Fp=o[Ye+28>>2]==9}return Fp|0}function mf(o,Ye,Dp){o=o|0;Ye=Ye|0;Dp=Dp|0;return fe(o,Ye,Dp)|0}function nf(Ye,Dp,Ep){Ye=Ye|0;Dp=Dp|0;Ep=Ep|0;var Gp=0,Hp=0,Wp=0,Xp=0,Yp=0;Gp=R-16|0;R=Gp;a:{b:{if(p[o[Ye+4>>2]+36|0]<=1){Dp=o[Ye+24>>2];break b}Xp=o[Ep+16>>2];Hp=o[Ep+12>>2];Wp=o[Ep+20>>2];Dp=Wp;Yp=0;if((Hp|0)<(Dp|0)?1:(Hp|0)<=(Dp|0)?r[Ep+8>>2]>Xp>>>0?0:1:0){break a}Dp=p[Xp+o[Ep>>2]|0];Hp=Xp+1|0;if(Hp>>>0<1){Wp=Wp+1|0}o[Ep+16>>2]=Hp;o[Ep+20>>2]=Wp;o[Ye+24>>2]=Dp}o[Gp+12>>2]=-1;o[Gp+8>>2]=1116;o[(Gp+8|0)+4>>2]=Dp;Yp=jd(Gp+8|0,o[Ye+16>>2])}Ye=Yp;R=Gp+16|0;return Ye|0}function of(Ye,Dp){Ye=Ye|0;Dp=Dp|0;var Ep=0,Zp=0,_p=0,$p=0,aq=0,bq=v(0),cq=0,dq=0;Zp=R-32|0;R=Zp;$p=m[o[Ye+8>>2]+24|0];Ep=o[Ye+16>>2];if(o[Ep+80>>2]){aq=o[o[Ep>>2]>>2]+o[Ep+48>>2]|0}o[Zp+8>>2]=-1;o[Zp+12>>2]=-1;o[Zp>>2]=-1;o[Zp+4>>2]=-1;a:{Ep=o[Ye+24>>2];if(Ep+ -2>>>0>28){break a}o[Zp>>2]=Ep;Ep=-1<<Ep;_p=-2-Ep|0;o[Zp+8>>2]=_p;o[Zp+4>>2]=Ep^-1;o[Zp+12>>2]=(_p|0)/2;if(!Dp){_p=1;break a}$p=$p<<2;Ep=0;dq=Ye+8|0;Ye=0;while(1){bq=v(v(1)/v(_p|0));_p=Ep<<2;pf(v(bq*v(o[_p+aq>>2])),v(bq*v(o[(_p|4)+aq>>2])),Zp+20|0);wl(o[o[o[dq>>2]- -64>>2]>>2]+Ye|0,Zp+20|0,$p);_p=1;cq=cq+1|0;if((cq|0)==(Dp|0)){break a}Ep=Ep+2|0;Ye=Ye+$p|0;_p=o[Zp+8>>2];continue}}R=Zp+32|0;return _p|0}function pf(Ye,Dp,eq){var fq=0,gq=0,hq=v(0),iq=v(0),jq=v(0),kq=0,lq=0;hq=v(Ye+Dp);a:{b:{jq=v(Ye-Dp);if(jq<=v(.5)^1|jq>=v(-.5)^1|hq>=v(.5)^1){break b}gq=1;if(!(hq<=v(1.5))){break b}iq=Dp;break a}c:{if(!!(hq<=v(.5))){iq=v(v(.5)-Ye);Ye=v(v(.5)-Dp);break c}if(!!(hq>=v(1.5))){iq=v(v(1.5)-Ye);Ye=v(v(1.5)-Dp);break c}if(!!(jq<=v(-.5))){iq=v(Ye+v(.5));Ye=v(Dp+v(-.5));break c}iq=v(Ye+v(-.5));Ye=v(Dp+v(.5))}jq=v(Ye-iq);hq=v(iq+Ye);gq=-1}fq=+iq;Dp=v(fq+fq+ -1);fq=+Ye;Ye=v(fq+fq+ -1);lq=gq;gq=+jq;gq=gq+gq;fq=1-gq;gq=gq+1;gq=fq<gq?fq:gq;fq=+hq;fq=fq+fq;kq=3-fq;fq=fq+ -1;fq=kq<fq?kq:fq;iq=v(lq*(gq<fq?gq:fq));hq=v(v(Dp*Dp)+v(v(Ye*Ye)+v(iq*iq)));d:{if(!!(+hq<1e-6)){o[eq>>2]=0;hq=v(0);Ye=v(0);break d}jq=v(v(1)/v(C(hq)));s[eq>>2]=jq*iq;hq=v(jq*Dp);Ye=v(jq*Ye)}s[eq+8>>2]=hq;s[eq+4>>2]=Ye}function qf(Ye,Dp,eq,mq){Ye=Ye|0;Dp=Dp|0;eq=eq|0;mq=mq|0;var nq=0,oq=0,pq=0;nq=R-32|0;R=nq;a:{if((mq|0)==3){mq=o[Dp+4>>2];Dp=o[Dp+12>>2];o[nq+24>>2]=-1;o[nq+28>>2]=-1;o[nq+16>>2]=-1;o[nq+20>>2]=-1;if((eq|0)==-2){o[nq+8>>2]=0;o[Ye>>2]=0;break a}oq=o[o[o[mq+4>>2]+8>>2]+(Dp<<2)>>2];if((l[o[o[mq>>2]+8>>2]](mq)|0)==1){pq=Dp;Dp=q[mq+36>>1];rf(nq+8|0,mq,eq,pq,nq+16|0,(Dp<<24|Dp<<8&16711680)>>>16);Dp=o[nq+8>>2];if(Dp){o[Ye>>2]=Dp;break a}o[nq+8>>2]=0}Dp=Hk(24);o[Dp+4>>2]=oq;eq=o[nq+20>>2];o[Dp+8>>2]=o[nq+16>>2];o[Dp+12>>2]=eq;eq=o[nq+28>>2];o[Dp+16>>2]=o[nq+24>>2];o[Dp+20>>2]=eq;o[Dp>>2]=7480;o[nq+8>>2]=Dp;o[Ye>>2]=Dp;break a}o[Ye>>2]=0}R=nq+32|0}function rf(Ye,Dp,eq,mq,qq,rq){var sq=0,tq=0,uq=0,vq=0;vq=o[o[o[Dp+4>>2]+8>>2]+(mq<<2)>>2];a:{b:{if((l[o[o[Dp>>2]+8>>2]](Dp)|0)!=1|eq+ -1>>>0>5){break b}tq=l[o[o[Dp>>2]+36>>2]](Dp)|0;rq=l[o[o[Dp>>2]+44>>2]](Dp,mq)|0;if(!tq|!rq){break b}uq=l[o[o[Dp>>2]+40>>2]](Dp,mq)|0;mq=rq+12|0;sq=o[Dp+44>>2];c:{if(uq){if((eq|0)!=6){break c}Dp=Hk(104);o[Dp+4>>2]=vq;eq=o[qq+4>>2];o[Dp+8>>2]=o[qq>>2];o[Dp+12>>2]=eq;eq=o[qq+12>>2];o[Dp+16>>2]=o[qq+8>>2];o[Dp+20>>2]=eq;o[Dp+36>>2]=rq;o[Dp+32>>2]=mq;o[Dp+28>>2]=uq;o[Dp+24>>2]=sq;o[Dp+64>>2]=rq;o[Dp+60>>2]=mq;o[Dp+56>>2]=uq;o[Dp+52>>2]=sq;o[Dp+44>>2]=0;o[Dp+48>>2]=0;o[Dp>>2]=5644;o[Dp+72>>2]=-1;o[Dp+76>>2]=-1;o[Dp+68>>2]=1;o[Dp+40>>2]=6208;break a}if((eq|0)!=6){break c}Dp=Hk(104);o[Dp+4>>2]=vq;eq=o[qq+4>>2];o[Dp+8>>2]=o[qq>>2];o[Dp+12>>2]=eq;eq=o[qq+12>>2];o[Dp+16>>2]=o[qq+8>>2];o[Dp+20>>2]=eq;o[Dp+36>>2]=rq;o[Dp+32>>2]=mq;o[Dp+28>>2]=tq;o[Dp+24>>2]=sq;o[Dp+64>>2]=rq;o[Dp+60>>2]=mq;o[Dp+56>>2]=tq;o[Dp+52>>2]=sq;o[Dp+44>>2]=0;o[Dp+48>>2]=0;o[Dp>>2]=6648;o[Dp+72>>2]=-1;o[Dp+76>>2]=-1;o[Dp+68>>2]=1;o[Dp+40>>2]=7068;break a}o[Ye>>2]=0}o[Ye>>2]=0;return}o[Dp+80>>2]=-1;o[Dp+84>>2]=-1;Mf(Dp+88|0);o[Ye>>2]=Dp}function sf(Ye){Ye=Ye|0;o[Ye>>2]=5644;return Ye|0}function tf(Ye){Ye=Ye|0;o[Ye>>2]=5644;ul(Ye)}function uf(Ye){Ye=Ye|0;var Dp=0;a:{if(!o[Ye+44>>2]|!o[Ye+48>>2]|(!o[Ye+24>>2]|!o[Ye+28>>2])){break a}if(!o[Ye+32>>2]|!o[Ye+36>>2]){break a}Dp=o[Ye+72>>2]!=-1}return Dp|0}function vf(Ye,eq){Ye=Ye|0;eq=eq|0;var mq=0;if(!(o[eq+56>>2]|p[eq+24|0]!=3)){o[Ye+44>>2]=eq;mq=1}return mq|0}function wf(o){o=o|0;return 3}function xf(Ye,eq){Ye=Ye|0;eq=eq|0;var qq=0,rq=0,wq=0,xq=0,yq=0,zq=0,Aq=0,Bq=0,Cq=0;qq=o[eq+12>>2];zq=qq;wq=qq;qq=o[eq+20>>2];xq=qq;yq=o[eq+16>>2];rq=yq+4|0;if(rq>>>0<4){qq=qq+1|0}Aq=o[eq+8>>2];Bq=rq;rq=qq;a:{if((wq|0)<(qq|0)?1:(wq|0)<=(qq|0)?Aq>>>0>=Bq>>>0?0:1:0){break a}qq=yq+o[eq>>2]|0;wq=p[qq|0]|p[qq+1|0]<<8|(p[qq+2|0]<<16|p[qq+3|0]<<24);o[eq+16>>2]=Bq;o[eq+20>>2]=rq;qq=xq;rq=yq+8|0;if(rq>>>0<8){qq=qq+1|0}xq=rq;rq=qq;if((zq|0)<(qq|0)?1:(zq|0)<=(qq|0)?Aq>>>0>=xq>>>0?0:1:0){break a}o[eq+16>>2]=xq;o[eq+20>>2]=rq;if(!(wq&1)){break a}qq=x(wq)^31;if(qq+ -1>>>0>28){break a}o[Ye+8>>2]=qq+1;rq=-2<<qq;qq=-2-rq|0;o[Ye+16>>2]=qq;o[Ye+12>>2]=rq^-1;o[Ye+20>>2]=(qq|0)/2;Cq=Nf(Ye+88|0,eq)}return Cq|0}function yf(Ye,eq,Dq,Eq,Fq,Gq){Ye=Ye|0;eq=eq|0;Dq=Dq|0;Eq=Eq|0;Fq=Fq|0;Gq=Gq|0;var Hq=0,Iq=0,Jq=0,Kq=0,Lq=0,Mq=0,Nq=0,Oq=0,Pq=0,Qq=0,Rq=0;Hq=R-48|0;R=Hq;Nq=Ye+8|0;Eq=o[Nq>>2];if(Eq+ -2>>>0<=28){o[Ye+72>>2]=Eq;Eq=-1<<Eq;Fq=-2-Eq|0;o[Ye+80>>2]=Fq;o[Ye+76>>2]=Eq^-1;o[Ye+84>>2]=(Fq|0)/2}o[Ye+48>>2]=Gq;Eq=o[Ye+36>>2];Fq=o[Eq>>2];Gq=Eq+4|0;Iq=o[Gq>>2];o[Hq+16>>2]=0;o[Hq+8>>2]=0;o[Hq+12>>2]=0;a:{Fq=Iq-Fq|0;if((Fq|0)<1){break a}Eq=o[Eq>>2];if((Eq|0)!=o[Gq>>2]){Oq=Fq>>2;Pq=Ye+40|0;Qq=Ye+88|0;Rq=Ye+36|0;while(1){Ue(Pq,o[(Lq<<2)+Eq>>2],Hq+8|0);Fq=o[Hq+12>>2];Iq=Fq>>31;Gq=o[Hq+8>>2];Kq=Gq>>31;Mq=o[Hq+16>>2];Jq=Mq>>31;Eq=0;Jq=Jq^Jq+Mq;Iq=Jq+((Iq^Fq+Iq)+(Kq^Gq+Kq)|0)|0;if(Iq>>>0<Jq>>>0){Eq=1}b:{if(!(Eq|Iq)){o[Hq+8>>2]=o[Ye+84>>2];break b}Kq=o[Ye+84>>2];Jq=Kq;Jq=Jq>>31;Fq=Wl(Vl(Kq,Jq,Fq,Fq>>31),T,Iq,Eq);o[Hq+12>>2]=Fq;Eq=Wl(Vl(Kq,Jq,Gq,Gq>>31),T,Iq,Eq);o[Hq+8>>2]=Eq;Gq=Eq;Eq=Eq>>31;Eq=(Kq-(Gq+Eq^Eq)|0)+((Fq|0)<0?Fq:0-Fq|0)|0;if((Mq|0)>=0){o[Hq+16>>2]=Eq;break b}o[Hq+16>>2]=0-Eq}Eq=Pf(Qq);Gq=o[Hq+8>>2];c:{if(!Eq){Fq=o[Hq+12>>2];break c}o[Hq+16>>2]=0-o[Hq+16>>2];Fq=0-o[Hq+12>>2]|0;o[Hq+12>>2]=Fq;Gq=0-Gq|0;o[Hq+8>>2]=Gq}d:{if((Gq|0)>=0){Gq=o[Ye+84>>2];Eq=Gq+o[Hq+16>>2]|0;Gq=Fq+Gq|0;break d}e:{if((Fq|0)<=-1){Eq=o[Hq+16>>2];Gq=Eq>>31;Gq=Gq^Eq+Gq;break e}Eq=o[Hq+16>>2];Gq=Eq>>31;Gq=o[Ye+80>>2]-(Gq^Eq+Gq)|0}if((Eq|0)<=-1){Eq=Fq>>31;Eq=Eq+Fq^Eq;break d}Eq=Fq>>31;Eq=o[Ye+80>>2]-(Eq+Fq^Eq)|0}Fq=o[Ye+80>>2];f:{if(!(Eq|Gq)){Eq=Fq;Gq=Eq;break f}if(!((Eq|0)!=(Fq|0)|Gq)){Gq=Eq;break f}if(!((Fq|0)!=(Gq|0)|Eq)){Eq=Gq;break f}g:{if(Gq){break g}Iq=o[Ye+84>>2];if((Iq|0)>=(Eq|0)){break g}Eq=(Iq<<1)-Eq|0;Gq=0;break f}h:{if((Fq|0)!=(Gq|0)){break h}Iq=o[Ye+84>>2];if((Iq|0)<=(Eq|0)){break h}Eq=(Iq<<1)-Eq|0;break f}i:{if((Eq|0)!=(Fq|0)){break i}Fq=o[Ye+84>>2];if((Fq|0)<=(Gq|0)){break i}Gq=(Fq<<1)-Gq|0;break f}if(Eq){break f}Eq=0;Fq=o[Ye+84>>2];if((Fq|0)>=(Gq|0)){break f}Gq=(Fq<<1)-Gq|0}Fq=Lq<<3;Iq=Fq+eq|0;Kq=o[Iq+4>>2];Iq=o[Iq>>2];o[Hq+36>>2]=Eq;o[Hq+32>>2]=Gq;o[Hq+24>>2]=Iq;o[Hq+28>>2]=Kq;zf(Hq+40|0,Nq,Hq+32|0,Hq+24|0);Eq=Dq+Fq|0;o[Eq>>2]=o[Hq+40>>2];o[Eq+4>>2]=o[Hq+44>>2];Lq=Lq+1|0;if((Lq|0)>=(Oq|0)){break a}Fq=o[Rq>>2];Eq=o[Fq>>2];if(o[Fq+4>>2]-Eq>>2>>>0>Lq>>>0){continue}break}}Zk();D()}R=Hq+48|0;return 1}function zf(Ye,eq,Dq,Eq){var Fq=0,Gq=0,Sq=0,Tq=0,Uq=0,Vq=0,Wq=0,Xq=0;Tq=eq+12|0;Wq=o[Tq>>2];Gq=o[Dq+4>>2]-Wq|0;Fq=o[Dq>>2]-Wq|0;o[Dq>>2]=Fq;o[Dq+4>>2]=Gq;Sq=Gq>>31;Uq=Sq+Gq^Sq;Sq=Fq>>31;Tq=o[Tq>>2];Xq=(Uq+(Sq+Fq^Sq)|0)<=(Tq|0);if(!Xq){a:{b:{if((Fq|0)>=0){Sq=1;Vq=1;if((Gq|0)>-1){break a}Uq=1;Sq=-1;Vq=-1;if((Fq|0)>=1){break b}break a}Uq=-1;Sq=-1;Vq=-1;if((Gq|0)<1){break a}}Sq=(Gq|0)<1?-1:1;Vq=Uq}Uq=Gq<<1;Gq=u(Sq,Tq);Uq=Uq-Gq|0;o[Dq+4>>2]=Uq;Tq=u(Tq,Vq);Fq=(Fq<<1)-Tq|0;o[Dq>>2]=Fq;c:{if((u(Sq,Vq)|0)>=0){Uq=0-Uq|0;o[Dq>>2]=Uq;Fq=0-Fq|0;break c}o[Dq>>2]=Uq}Gq=(Fq+Gq|0)/2|0;o[Dq+4>>2]=Gq;Fq=(Tq+Uq|0)/2|0;o[Dq>>2]=Fq}d:{e:{f:{g:{h:{i:{j:{k:{if(!Fq){if(Gq){break j}Tq=1;Vq=0;break k}Tq=1;Sq=(Fq|0)<0&(Gq|0)<1;if((Fq|0)>=1){Vq=(Gq|0)>-1?2:1;if(Sq){break k}break i}Vq=(Gq|0)>0?3:0;if(!Sq){break i}}Sq=Gq;Uq=Fq;break d}if((Gq|0)>=1){break f}break h}Sq=Vq+ -1|0;if(Sq>>>0>2){Sq=Gq;Gq=Fq;Vq=0;break e}switch(Sq-1|0){case 0:break g;case 1:break f;default:break h}}Sq=0-Fq|0;Vq=1;break e}Sq=0-Gq|0;Gq=0-Fq|0;Vq=2;break e}Sq=Fq;Gq=0-Gq|0;Vq=3}Fq=Dq;Uq=Gq;o[Fq>>2]=Gq;o[Fq+4>>2]=Sq;Tq=0}Gq=o[Eq>>2]+Uq|0;o[Ye>>2]=Gq;Fq=o[Eq+4>>2]+Sq|0;o[Ye+4>>2]=Fq;Sq=o[eq+12>>2];l:{if((Sq|0)<(Gq|0)){Gq=Gq-o[eq+4>>2]|0;break l}if((Gq|0)>=(0-Sq|0)){break l}Gq=o[eq+4>>2]+Gq|0}o[Ye>>2]=Gq;m:{if((Sq|0)<(Fq|0)){Fq=Fq-o[eq+4>>2]|0;break m}if((Fq|0)>=(0-Sq|0)){break m}Fq=o[eq+4>>2]+Fq|0}o[Ye+4>>2]=Fq;n:{if(Tq){Dq=Fq;Fq=Gq;break n}eq=(4-Vq&3)+ -1|0;o:{if(eq>>>0>2){Dq=Fq;Fq=Gq;break o}p:{switch(eq-1|0){default:Dq=0-Gq|0;break o;case 0:Dq=0-Fq|0;Fq=0-Gq|0;break o;case 1:break p}}Fq=0-Fq|0;Dq=Gq}o[Ye>>2]=Fq;o[Ye+4>>2]=Dq}if(!Xq){q:{r:{if((Fq|0)>=0){eq=1;Tq=1;if((Dq|0)>-1){break q}Gq=1;eq=-1;Tq=-1;if((Fq|0)>=1){break r}break q}Gq=-1;eq=-1;Tq=-1;if((Dq|0)<1){break q}}eq=(Dq|0)<1?-1:1;Tq=Gq}Eq=Dq<<1;Dq=u(eq,Sq);Gq=Eq-Dq|0;o[Ye+4>>2]=Gq;Eq=u(Sq,Tq);Fq=(Fq<<1)-Eq|0;o[Ye>>2]=Fq;s:{if((u(eq,Tq)|0)>=0){Gq=0-Gq|0;o[Ye>>2]=Gq;Fq=0-Fq|0;break s}o[Ye>>2]=Gq}Dq=(Dq+Fq|0)/2|0;o[Ye+4>>2]=Dq;Fq=(Eq+Gq|0)/2|0;o[Ye>>2]=Fq}o[Ye>>2]=Fq+Wq;o[Ye+4>>2]=Dq+Wq}function Af(Ye,eq){Ye=Ye|0;eq=eq|0;var Dq=0,Eq=0,Yq=0,Zq=0,_q=0,$q=0,ar=0,br=0,cr=0;Dq=o[eq+12>>2];$q=Dq;Yq=Dq;Dq=o[eq+20>>2];Zq=Dq;_q=o[eq+16>>2];Eq=_q+4|0;if(Eq>>>0<4){Dq=Dq+1|0}ar=o[eq+8>>2];br=Eq;Eq=Dq;a:{if((Yq|0)<(Dq|0)?1:(Yq|0)<=(Dq|0)?ar>>>0>=br>>>0?0:1:0){break a}Dq=_q+o[eq>>2]|0;Yq=p[Dq|0]|p[Dq+1|0]<<8|(p[Dq+2|0]<<16|p[Dq+3|0]<<24);o[eq+16>>2]=br;o[eq+20>>2]=Eq;Dq=Zq;Eq=_q+8|0;if(Eq>>>0<8){Dq=Dq+1|0}Zq=Eq;Eq=Dq;if(($q|0)<(Dq|0)?1:($q|0)<=(Dq|0)?ar>>>0>=Zq>>>0?0:1:0){break a}o[eq+16>>2]=Zq;o[eq+20>>2]=Eq;if(!(Yq&1)){break a}eq=x(Yq)^31;if(eq+ -1>>>0>28){break a}cr=1;o[Ye+8>>2]=eq+1;Dq=-2<<eq;eq=-2-Dq|0;o[Ye+16>>2]=eq;o[Ye+12>>2]=Dq^-1;o[Ye+20>>2]=(eq|0)/2}return cr|0}function Bf(Ye){Ye=Ye|0;o[Ye>>2]=6648;return Ye|0}function Cf(Ye){Ye=Ye|0;o[Ye>>2]=6648;ul(Ye)}function Df(Ye,eq,dr,er,fr,gr){Ye=Ye|0;eq=eq|0;dr=dr|0;er=er|0;fr=fr|0;gr=gr|0;var hr=0,ir=0,jr=0,kr=0,lr=0,mr=0,nr=0,or=0,pr=0,qr=0,rr=0;hr=R-48|0;R=hr;nr=Ye+8|0;er=o[nr>>2];if(er+ -2>>>0<=28){o[Ye+72>>2]=er;er=-1<<er;fr=-2-er|0;o[Ye+80>>2]=fr;o[Ye+76>>2]=er^-1;o[Ye+84>>2]=(fr|0)/2}o[Ye+48>>2]=gr;er=o[Ye+36>>2];fr=o[er>>2];gr=er+4|0;ir=o[gr>>2];o[hr+16>>2]=0;o[hr+8>>2]=0;o[hr+12>>2]=0;a:{fr=ir-fr|0;if((fr|0)<1){break a}er=o[er>>2];if((er|0)!=o[gr>>2]){or=fr>>2;pr=Ye+40|0;qr=Ye+88|0;rr=Ye+36|0;while(1){hf(pr,o[(lr<<2)+er>>2],hr+8|0);fr=o[hr+12>>2];ir=fr>>31;gr=o[hr+8>>2];kr=gr>>31;mr=o[hr+16>>2];jr=mr>>31;er=0;jr=jr^jr+mr;ir=jr+((ir^fr+ir)+(kr^gr+kr)|0)|0;if(ir>>>0<jr>>>0){er=1}b:{if(!(er|ir)){o[hr+8>>2]=o[Ye+84>>2];break b}kr=o[Ye+84>>2];jr=kr;jr=jr>>31;fr=Wl(Vl(kr,jr,fr,fr>>31),T,ir,er);o[hr+12>>2]=fr;er=Wl(Vl(kr,jr,gr,gr>>31),T,ir,er);o[hr+8>>2]=er;gr=er;er=er>>31;er=(kr-(gr+er^er)|0)+((fr|0)<0?fr:0-fr|0)|0;if((mr|0)>=0){o[hr+16>>2]=er;break b}o[hr+16>>2]=0-er}er=Pf(qr);gr=o[hr+8>>2];c:{if(!er){fr=o[hr+12>>2];break c}o[hr+16>>2]=0-o[hr+16>>2];fr=0-o[hr+12>>2]|0;o[hr+12>>2]=fr;gr=0-gr|0;o[hr+8>>2]=gr}d:{if((gr|0)>=0){gr=o[Ye+84>>2];er=gr+o[hr+16>>2]|0;gr=fr+gr|0;break d}e:{if((fr|0)<=-1){er=o[hr+16>>2];gr=er>>31;gr=gr^er+gr;break e}er=o[hr+16>>2];gr=er>>31;gr=o[Ye+80>>2]-(gr^er+gr)|0}if((er|0)<=-1){er=fr>>31;er=er+fr^er;break d}er=fr>>31;er=o[Ye+80>>2]-(er+fr^er)|0}fr=o[Ye+80>>2];f:{if(!(er|gr)){er=fr;gr=er;break f}if(!((er|0)!=(fr|0)|gr)){gr=er;break f}if(!((fr|0)!=(gr|0)|er)){er=gr;break f}g:{if(gr){break g}ir=o[Ye+84>>2];if((ir|0)>=(er|0)){break g}er=(ir<<1)-er|0;gr=0;break f}h:{if((fr|0)!=(gr|0)){break h}ir=o[Ye+84>>2];if((ir|0)<=(er|0)){break h}er=(ir<<1)-er|0;break f}i:{if((er|0)!=(fr|0)){break i}fr=o[Ye+84>>2];if((fr|0)<=(gr|0)){break i}gr=(fr<<1)-gr|0;break f}if(er){break f}er=0;fr=o[Ye+84>>2];if((fr|0)>=(gr|0)){break f}gr=(fr<<1)-gr|0}fr=lr<<3;ir=fr+eq|0;kr=o[ir+4>>2];ir=o[ir>>2];o[hr+36>>2]=er;o[hr+32>>2]=gr;o[hr+24>>2]=ir;o[hr+28>>2]=kr;zf(hr+40|0,nr,hr+32|0,hr+24|0);er=dr+fr|0;o[er>>2]=o[hr+40>>2];o[er+4>>2]=o[hr+44>>2];lr=lr+1|0;if((lr|0)>=(or|0)){break a}fr=o[rr>>2];er=o[fr>>2];if(o[fr+4>>2]-er>>2>>>0>lr>>>0){continue}break}}Zk();D()}R=hr+48|0;return 1}function Ef(Ye,eq,dr,er,fr,gr){Ye=Ye|0;eq=eq|0;dr=dr|0;er=er|0;fr=fr|0;gr=gr|0;var sr=0,tr=0,ur=0,vr=0,wr=0,xr=0,yr=0,zr=0;gr=R-32|0;R=gr;tr=(fr&1073741823)!=(fr|0)?-1:fr<<2;tr=xl(Hk(tr),0,tr);sr=o[eq>>2];ur=o[eq+4>>2];wr=o[tr+4>>2];o[gr+16>>2]=o[tr>>2];o[gr+20>>2]=wr;o[gr+8>>2]=sr;o[gr+12>>2]=ur;ur=Ye+8|0;zf(gr+24|0,ur,gr+16|0,gr+8|0);o[dr>>2]=o[gr+24>>2];o[dr+4>>2]=o[gr+28>>2];if((fr|0)<(er|0)){wr=0-fr<<2;Ye=fr;while(1){sr=Ye<<2;vr=sr+eq|0;yr=o[vr>>2];vr=o[vr+4>>2];sr=dr+sr|0;xr=sr+wr|0;zr=o[xr+4>>2];o[gr+16>>2]=o[xr>>2];o[gr+20>>2]=zr;o[gr+8>>2]=yr;o[gr+12>>2]=vr;zf(gr+24|0,ur,gr+16|0,gr+8|0);o[sr>>2]=o[gr+24>>2];o[sr+4>>2]=o[gr+28>>2];Ye=Ye+fr|0;if((Ye|0)<(er|0)){continue}break}}ul(tr);R=gr+32|0;return 1}function Ff(Ye,eq,dr){Ye=Ye|0;eq=eq|0;dr=dr|0;if(ae(Ye,eq,dr)){Ye=o[o[o[o[eq+4>>2]+8>>2]+(dr<<2)>>2]+28>>2]==9}else{Ye=0}return Ye|0}function Gf(Ye,eq,dr){Ye=Ye|0;eq=eq|0;dr=dr|0;eq=R-32|0;R=eq;a:{if(p[o[Ye+4>>2]+36|0]>=2){dr=0;if(!l[o[o[Ye>>2]+52>>2]](Ye)){break a}}o[eq+24>>2]=0;o[eq+28>>2]=0;o[eq+16>>2]=0;o[eq+20>>2]=0;o[eq+12>>2]=-1;o[eq+8>>2]=1232;ed(eq+8|0,o[Ye+24>>2],o[Ye+28>>2],m[o[Ye+8>>2]+24|0],s[Ye+32>>2]);dr=jd(eq+8|0,o[Ye+16>>2]);o[eq+8>>2]=1232;Ye=o[eq+16>>2];if(!Ye){break a}o[eq+20>>2]=Ye;ul(Ye)}R=eq+32|0;return dr|0}function Hf(Ye,eq){Ye=Ye|0;eq=eq|0;return l[o[o[Ye>>2]+56>>2]](Ye,eq)|0}function If(Ye){Ye=Ye|0;var eq=0,dr=0,er=0,fr=0,gr=0,Ar=0,Br=0,Cr=0,Dr=0,Er=0;eq=m[o[Ye+8>>2]+24|0];er=eq<<2;eq=Hk((eq|0)!=(eq&1073741823)?-1:er);dr=o[Ye+28>>2];o[Ye+28>>2]=eq;if(dr){ul(dr)}Cr=Ye+4|0;dr=o[o[Cr>>2]+32>>2];eq=o[dr+8>>2];Dr=o[dr+12>>2];Ar=eq;gr=o[dr+20>>2];Br=o[dr+16>>2];eq=er;fr=Br+eq|0;if(fr>>>0<eq>>>0){gr=gr+1|0}a:{if((Dr|0)<(gr|0)?1:(Dr|0)<=(gr|0)?Ar>>>0>=fr>>>0?0:1:0){break a}wl(o[Ye+28>>2],Br+o[dr>>2]|0,er);er=dr;Ar=dr;fr=o[dr+20>>2];dr=eq+o[dr+16>>2]|0;if(dr>>>0<eq>>>0){fr=fr+1|0}o[Ar+16>>2]=dr;o[er+20>>2]=fr;fr=o[Cr>>2];er=o[fr+32>>2];eq=o[er+8>>2];gr=o[er+12>>2];Ar=eq;Br=o[er+20>>2];dr=o[er+16>>2];eq=dr+4|0;if(eq>>>0<4){Br=Br+1|0}if((gr|0)<(Br|0)?1:(gr|0)<=(Br|0)?Ar>>>0>=eq>>>0?0:1:0){break a}eq=dr+o[er>>2]|0;o[Ye+32>>2]=p[eq|0]|p[eq+1|0]<<8|(p[eq+2|0]<<16|p[eq+3|0]<<24);eq=er;Ar=eq;dr=o[eq+20>>2];er=o[eq+16>>2]+4|0;if(er>>>0<4){dr=dr+1|0}o[Ar+16>>2]=er;o[eq+20>>2]=dr;eq=o[fr+32>>2];gr=o[eq+16>>2];fr=o[eq+12>>2];er=o[eq+20>>2];dr=er;if((fr|0)<(dr|0)?1:(fr|0)<=(dr|0)?r[eq+8>>2]>gr>>>0?0:1:0){break a}fr=p[gr+o[eq>>2]|0];dr=gr+1|0;if(dr>>>0<1){er=er+1|0}o[eq+16>>2]=dr;o[eq+20>>2]=er;if(fr>>>0>31){break a}o[Ye+24>>2]=fr;Er=1}return Er|0}function Jf(Ye,Fr){Ye=Ye|0;Fr=Fr|0;var Gr=0,Hr=0,Ir=0,Jr=0,Kr=0,Lr=0,Mr=0,Nr=0,Or=0,Pr=0,Qr=0,Rr=0,Sr=0,Tr=0,Ur=v(0);Kr=R-16|0;R=Kr;Ir=o[Ye+24>>2];Jr=m[o[Ye+8>>2]+24|0];Lr=Jr<<2;Mr=Hk((Jr&1073741823)!=(Jr|0)?-1:Lr);Nr=Kr+8|0;o[Nr>>2]=1065353216;Ir=-1<<Ir^-1;Hr=0;a:{if((Ir|0)<1){break a}s[Nr>>2]=s[Ye+32>>2]/v(Ir|0);Hr=1}b:{if(!Hr){break b}Gr=o[Ye+16>>2];Hr=0;c:{if(!o[Gr+80>>2]){break c}Hr=o[o[Gr>>2]>>2]+o[Gr+48>>2]|0}if(!Fr){Gr=1;break b}Ir=(Jr|0)<1;Rr=Ye+28|0;Sr=Ye+8|0;Ye=0;while(1){if(!Ir){Tr=o[Rr>>2];Ur=s[Nr>>2];Gr=0;while(1){Or=Gr<<2;s[Or+Mr>>2]=v(Ur*v(o[Hr+(Ye<<2)>>2]))+s[Tr+Or>>2];Ye=Ye+1|0;Gr=Gr+1|0;if((Jr|0)!=(Gr|0)){continue}break}}wl(o[o[o[Sr>>2]- -64>>2]>>2]+Pr|0,Mr,Lr);Pr=Lr+Pr|0;Gr=1;Qr=Qr+1|0;if((Qr|0)!=(Fr|0)){continue}break}}ul(Mr);R=Kr+16|0;return Gr|0}function Kf(Ye){Ye=Ye|0;var Fr=0,Vr=0;o[Ye>>2]=7664;Vr=Ye+28|0;Fr=o[Vr>>2];o[Vr>>2]=0;if(Fr){ul(Fr)}o[Ye>>2]=1908;Vr=Ye+20|0;Fr=o[Vr>>2];o[Vr>>2]=0;if(Fr){l[o[o[Fr>>2]+4>>2]](Fr)}o[Ye>>2]=1596;Vr=Ye+16|0;Fr=o[Vr>>2];o[Vr>>2]=0;if(Fr){Fb(Fr)}return Ye|0}function Lf(Ye){Ye=Ye|0;var Wr=0,Xr=0;o[Ye>>2]=7664;Xr=Ye+28|0;Wr=o[Xr>>2];o[Xr>>2]=0;if(Wr){ul(Wr)}o[Ye>>2]=1908;Xr=Ye+20|0;Wr=o[Xr>>2];o[Xr>>2]=0;if(Wr){l[o[o[Wr>>2]+4>>2]](Wr)}o[Ye>>2]=1596;Xr=Ye+16|0;Wr=o[Xr>>2];o[Xr>>2]=0;if(Wr){Fb(Wr)}ul(Ye)}function Mf(Ye){o[Ye>>2]=0;o[Ye+4>>2]=0;m[Ye+5|0]=0;m[Ye+6|0]=0;m[Ye+7|0]=0;m[Ye+8|0]=0;m[Ye+9|0]=0;m[Ye+10|0]=0;m[Ye+11|0]=0;m[Ye+12|0]=0;return Ye}function Nf(Ye,Yr){var Zr=0,_r=0,$r=0,as=0,bs=0,cs=0,ds=0,es=0,fs=0,gs=0,hs=0;bs=R-16|0;R=bs;as=o[Yr+16>>2];_r=o[Yr+12>>2];Zr=o[Yr+20>>2];a:{if((_r|0)<(Zr|0)?1:(_r|0)<=(Zr|0)?r[Yr+8>>2]>as>>>0?0:1:0){break a}m[Ye+12|0]=p[as+o[Yr>>2]|0];_r=o[Yr+20>>2];Zr=o[Yr+16>>2]+1|0;if(Zr>>>0<1){_r=_r+1|0}o[Yr+16>>2]=Zr;o[Yr+20>>2]=_r;if(!Of(1,bs+12|0,Yr)){break a}_r=o[Yr+8>>2];cs=o[Yr+16>>2];Zr=cs;$r=o[bs+12>>2];as=$r;ds=_r-Zr>>>0>=$r>>>0?0:1;Zr=_r>>>0<Zr>>>0;_r=o[Yr+20>>2];Zr=o[Yr+12>>2]-(Zr+_r|0)|0;if(((Zr|0)<0?1:(Zr|0)<=0?ds:0)|($r|0)<1){break a}Zr=cs+o[Yr>>2]|0;o[Ye>>2]=Zr;es=$r+ -1|0;fs=es+Zr|0;gs=p[fs|0]>>>6;if((gs|0)==3){break a}ds=Ye;b:{c:{switch(gs-1|0){default:o[Ye+4>>2]=es;Ye=p[fs|0]&63;break b;case 0:if(($r|0)<2){break a}o[Ye+4>>2]=$r+ -2;Ye=(Zr+$r|0)+ -2|0;Ye=p[Ye+1|0]<<8&16128|p[Ye|0];break b;case 1:break c}}if(($r|0)<3){break a}o[Ye+4>>2]=$r+ -3;Ye=(Zr+$r|0)+ -3|0;Ye=p[Ye+1|0]<<8|p[Ye+2|0]<<16&4128768|p[Ye|0]}Ye=Ye+4096|0;o[ds+8>>2]=Ye;if(Ye>>>0>1048575){break a}Ye=_r;_r=as+cs|0;if(_r>>>0<as>>>0){Ye=Ye+1|0}o[Yr+16>>2]=_r;o[Yr+20>>2]=Ye;hs=1}R=bs+16|0;return hs}function Of(Ye,Yr,is){var js=0,ks=0,ls=0,ms=0;a:{if(Ye>>>0>5){break a}ls=o[is+16>>2];js=o[is+12>>2];ks=o[is+20>>2];if((js|0)<(ks|0)?1:(js|0)<=(ks|0)?r[is+8>>2]>ls>>>0?0:1:0){break a}js=p[ls+o[is>>2]|0];ls=ls+1|0;if(ls>>>0<1){ks=ks+1|0}o[is+16>>2]=ls;o[is+20>>2]=ks;ks=Yr;if(js&128){if(!Of(Ye+1|0,Yr,is)){break a}Ye=o[Yr>>2]<<7;o[Yr>>2]=Ye;js=Ye|js&127}o[ks>>2]=js;ms=1}return ms}function Pf(Ye){var Yr=0,is=0,ns=0,os=0,ps=0;ns=0-p[Ye+12|0]|0;is=o[Ye+8>>2];a:{if(is>>>0>4095){break a}Yr=o[Ye+4>>2];if((Yr|0)<1){break a}Yr=Yr+ -1|0;o[Ye+4>>2]=Yr;is=p[Yr+o[Ye>>2]|0]|is<<8;o[Ye+8>>2]=is}ns=ns&255;Yr=u(ns,is>>>8);os=is&255;ps=os>>>0<ns>>>0;o[Ye+8>>2]=ps?Yr+os|0:(is-ns|0)-Yr|0;return ps}function Qf(Ye,qs){var rs=0,ss=0,ts=0;ts=R-32|0;R=ts;a:{if(qs>>>0<=1){if(qs-1){qs=Hk(48);ug(qs);o[qs>>2]=9816;o[Ye+8>>2]=0;o[Ye+12>>2]=0;o[Ye>>2]=0;o[Ye+4>>2]=0;o[Ye+16>>2]=qs;break a}qs=Hk(52);ug(qs);o[qs+48>>2]=0;o[qs>>2]=8064;o[Ye+8>>2]=0;o[Ye+12>>2]=0;o[Ye>>2]=0;o[Ye+4>>2]=0;o[Ye+16>>2]=qs;break a}qs=Hk(32);o[ts>>2]=qs;o[ts+4>>2]=28;o[ts+8>>2]=-2147483616;m[qs+28|0]=0;rs=p[7812]|p[7813]<<8|(p[7814]<<16|p[7815]<<24);m[qs+24|0]=rs;m[qs+25|0]=rs>>>8;m[qs+26|0]=rs>>>16;m[qs+27|0]=rs>>>24;rs=p[7808]|p[7809]<<8|(p[7810]<<16|p[7811]<<24);ss=p[7804]|p[7805]<<8|(p[7806]<<16|p[7807]<<24);m[qs+16|0]=ss;m[qs+17|0]=ss>>>8;m[qs+18|0]=ss>>>16;m[qs+19|0]=ss>>>24;m[qs+20|0]=rs;m[qs+21|0]=rs>>>8;m[qs+22|0]=rs>>>16;m[qs+23|0]=rs>>>24;rs=p[7800]|p[7801]<<8|(p[7802]<<16|p[7803]<<24);ss=p[7796]|p[7797]<<8|(p[7798]<<16|p[7799]<<24);m[qs+8|0]=ss;m[qs+9|0]=ss>>>8;m[qs+10|0]=ss>>>16;m[qs+11|0]=ss>>>24;m[qs+12|0]=rs;m[qs+13|0]=rs>>>8;m[qs+14|0]=rs>>>16;m[qs+15|0]=rs>>>24;rs=p[7792]|p[7793]<<8|(p[7794]<<16|p[7795]<<24);ss=p[7788]|p[7789]<<8|(p[7790]<<16|p[7791]<<24);m[qs|0]=ss;m[qs+1|0]=ss>>>8;m[qs+2|0]=ss>>>16;m[qs+3|0]=ss>>>24;m[qs+4|0]=rs;m[qs+5|0]=rs>>>8;m[qs+6|0]=rs>>>16;m[qs+7|0]=rs>>>24;o[ts+16>>2]=-1;qs=Mk(ts+16|4,ts);o[Ye>>2]=o[ts+16>>2];Mk(Ye+4|0,qs);o[Ye+16>>2]=0;if(m[qs+11|0]<=-1){ul(o[qs>>2])}if(m[ts+11|0]>-1){break a}ul(o[ts>>2])}R=ts+32|0}function Rf(Ye,qs){var us=0,vs=0,ws=0;us=R-80|0;R=us;vs=o[qs+36>>2];o[us+72>>2]=o[qs+32>>2];o[us+76>>2]=vs;ws=o[qs+28>>2];vs=us- -64|0;o[vs>>2]=o[qs+24>>2];o[vs+4>>2]=ws;vs=o[qs+20>>2];o[us+56>>2]=o[qs+16>>2];o[us+60>>2]=vs;vs=o[qs+12>>2];o[us+48>>2]=o[qs+8>>2];o[us+52>>2]=vs;vs=o[qs+4>>2];o[us+40>>2]=o[qs>>2];o[us+44>>2]=vs;ci(us+8|0,us+40|0,us+24|0);qs=o[us+8>>2];a:{if(qs){o[Ye>>2]=qs;Mk(Ye+4|0,us+8|4);if(m[us+23|0]>=0){break a}ul(o[us+12>>2]);break a}if(m[us+23|0]<=-1){ul(o[us+12>>2])}qs=p[us+31|0];o[Ye>>2]=0;o[Ye+4>>2]=0;o[Ye+16>>2]=qs;o[Ye+8>>2]=0;o[Ye+12>>2]=0}R=us+80|0}function Sf(Ye,qs,xs,ys){var zs=0,As=0,Bs=0;zs=R-80|0;R=zs;As=o[xs+36>>2];o[zs+72>>2]=o[xs+32>>2];o[zs+76>>2]=As;Bs=o[xs+28>>2];As=zs- -64|0;o[As>>2]=o[xs+24>>2];o[As+4>>2]=Bs;As=o[xs+20>>2];o[zs+56>>2]=o[xs+16>>2];o[zs+60>>2]=As;As=o[xs+12>>2];o[zs+48>>2]=o[xs+8>>2];o[zs+52>>2]=As;As=o[xs+4>>2];o[zs+40>>2]=o[xs>>2];o[zs+44>>2]=As;ci(Ye,zs+40|0,zs+24|0);a:{if(o[Ye>>2]){break a}As=Ye+4|0;if(m[Ye+15|0]<=-1){ul(o[As>>2])}if(p[zs+31|0]!=1){o[zs+8>>2]=0;o[zs>>2]=0;o[zs+4>>2]=0;qs=Hk(32);o[zs>>2]=qs;o[zs+4>>2]=20;o[zs+8>>2]=-2147483616;m[qs+20|0]=0;xs=p[7860]|p[7861]<<8|(p[7862]<<16|p[7863]<<24);m[qs+16|0]=xs;m[qs+17|0]=xs>>>8;m[qs+18|0]=xs>>>16;m[qs+19|0]=xs>>>24;xs=p[7856]|p[7857]<<8|(p[7858]<<16|p[7859]<<24);ys=p[7852]|p[7853]<<8|(p[7854]<<16|p[7855]<<24);m[qs+8|0]=ys;m[qs+9|0]=ys>>>8;m[qs+10|0]=ys>>>16;m[qs+11|0]=ys>>>24;m[qs+12|0]=xs;m[qs+13|0]=xs>>>8;m[qs+14|0]=xs>>>16;m[qs+15|0]=xs>>>24;xs=p[7848]|p[7849]<<8|(p[7850]<<16|p[7851]<<24);ys=p[7844]|p[7845]<<8|(p[7846]<<16|p[7847]<<24);m[qs|0]=ys;m[qs+1|0]=ys>>>8;m[qs+2|0]=ys>>>16;m[qs+3|0]=ys>>>24;m[qs+4|0]=xs;m[qs+5|0]=xs>>>8;m[qs+6|0]=xs>>>16;m[qs+7|0]=xs>>>24;o[Ye>>2]=-1;Mk(As,zs);if(m[zs+11|0]>-1){break a}ul(o[zs>>2]);break a}Qf(zs,p[zs+32|0]);Bs=o[zs>>2];b:{if(Bs){o[Ye>>2]=Bs;Mk(As,zs|4);break b}Bs=o[zs+16>>2];o[zs+16>>2]=0;o[Bs+44>>2]=ys;fi(Ye,Bs,qs,xs,ys);if(!o[Ye>>2]){if(m[As+11|0]<=-1){ul(o[As>>2])}o[Ye>>2]=0;o[Ye+4>>2]=0;o[Ye+8>>2]=0;o[Ye+12>>2]=0}if(!Bs){break b}l[o[o[Bs>>2]+4>>2]](Bs)}Ye=o[zs+16>>2];o[zs+16>>2]=0;if(Ye){l[o[o[Ye>>2]+4>>2]](Ye)}if(m[zs+15|0]>-1){break a}ul(o[zs+4>>2])}R=zs+80|0}function Tf(Ye){var qs=0,xs=0,ys=0,Cs=0;Cs=R-16|0;R=Cs;qs=Hk(32);o[Cs>>2]=qs;o[Cs+4>>2]=26;o[Cs+8>>2]=-2147483616;m[qs+26|0]=0;xs=p[7841]|p[7842]<<8;m[qs+24|0]=xs;m[qs+25|0]=xs>>>8;ys=p[7837]|p[7838]<<8|(p[7839]<<16|p[7840]<<24);xs=p[7833]|p[7834]<<8|(p[7835]<<16|p[7836]<<24);m[qs+16|0]=xs;m[qs+17|0]=xs>>>8;m[qs+18|0]=xs>>>16;m[qs+19|0]=xs>>>24;m[qs+20|0]=ys;m[qs+21|0]=ys>>>8;m[qs+22|0]=ys>>>16;m[qs+23|0]=ys>>>24;ys=p[7829]|p[7830]<<8|(p[7831]<<16|p[7832]<<24);xs=p[7825]|p[7826]<<8|(p[7827]<<16|p[7828]<<24);m[qs+8|0]=xs;m[qs+9|0]=xs>>>8;m[qs+10|0]=xs>>>16;m[qs+11|0]=xs>>>24;m[qs+12|0]=ys;m[qs+13|0]=ys>>>8;m[qs+14|0]=ys>>>16;m[qs+15|0]=ys>>>24;ys=p[7821]|p[7822]<<8|(p[7823]<<16|p[7824]<<24);xs=p[7817]|p[7818]<<8|(p[7819]<<16|p[7820]<<24);m[qs|0]=xs;m[qs+1|0]=xs>>>8;m[qs+2|0]=xs>>>16;m[qs+3|0]=xs>>>24;m[qs+4|0]=ys;m[qs+5|0]=ys>>>8;m[qs+6|0]=ys>>>16;m[qs+7|0]=ys>>>24;o[Ye>>2]=-1;Mk(Ye+4|0,Cs);if(m[Cs+11|0]<=-1){ul(o[Cs>>2])}R=Cs+16|0}function Uf(Ye,Ds){var Es=0,Fs=0,Gs=0;Gs=R-16|0;R=Gs;o[Gs+12>>2]=Ds;Ds=Hk(32);o[Gs>>2]=Ds;o[Gs+4>>2]=24;o[Gs+8>>2]=-2147483616;m[Ds+24|0]=0;Es=p[7885]|p[7886]<<8|(p[7887]<<16|p[7888]<<24);Fs=p[7881]|p[7882]<<8|(p[7883]<<16|p[7884]<<24);m[Ds+16|0]=Fs;m[Ds+17|0]=Fs>>>8;m[Ds+18|0]=Fs>>>16;m[Ds+19|0]=Fs>>>24;m[Ds+20|0]=Es;m[Ds+21|0]=Es>>>8;m[Ds+22|0]=Es>>>16;m[Ds+23|0]=Es>>>24;Es=p[7877]|p[7878]<<8|(p[7879]<<16|p[7880]<<24);Fs=p[7873]|p[7874]<<8|(p[7875]<<16|p[7876]<<24);m[Ds+8|0]=Fs;m[Ds+9|0]=Fs>>>8;m[Ds+10|0]=Fs>>>16;m[Ds+11|0]=Fs>>>24;m[Ds+12|0]=Es;m[Ds+13|0]=Es>>>8;m[Ds+14|0]=Es>>>16;m[Ds+15|0]=Es>>>24;Es=p[7869]|p[7870]<<8|(p[7871]<<16|p[7872]<<24);Fs=p[7865]|p[7866]<<8|(p[7867]<<16|p[7868]<<24);m[Ds|0]=Fs;m[Ds+1|0]=Fs>>>8;m[Ds+2|0]=Fs>>>16;m[Ds+3|0]=Fs>>>24;m[Ds+4|0]=Es;m[Ds+5|0]=Es>>>8;m[Ds+6|0]=Es>>>16;m[Ds+7|0]=Es>>>24;wi(Vf(Ye,Gs+12|0),Gs);if(m[Gs+11|0]<=-1){ul(o[Gs>>2])}R=Gs+16|0}function Vf(Ye,Ds){var Hs=0,Is=0,Js=0,Ks=0,Ls=0,Ms=0,Ns=0,Os=0;Js=R-32|0;R=Js;Ks=Ye+16|0;Is=o[Ks>>2];a:{b:{if(!Is){break b}Ms=o[Ds>>2];Hs=Ks;while(1){Ls=o[Is+16>>2]<(Ms|0);Hs=Ls?Hs:Is;Is=o[(Ls<<2)+Is>>2];if(Is){continue}break}if((Hs|0)==(Ks|0)){break b}if((Ms|0)>=o[Hs+16>>2]){break a}}Ms=ui(Js+16|0);Ds=o[Ds>>2];Ls=Js+8|0;o[Ls>>2]=0;o[Ls+4>>2]=0;o[Js>>2]=Ds;o[Js+4>>2]=Ls;Hs=o[Ms>>2];Ns=Ms+4|0;if((Hs|0)!=(Ns|0)){Os=Js|4;while(1){Ds=Hs;Is=Hs+16|0;Wf(Os,Ls,Is,Is);Is=o[Hs+4>>2];c:{if(!Is){Hs=o[Ds+8>>2];if((Ds|0)==o[Hs>>2]){break c}Ds=Ds+8|0;while(1){Is=o[Ds>>2];Ds=Is+8|0;Hs=o[Is+8>>2];if((Is|0)!=o[Hs>>2]){continue}break}break c}while(1){Hs=Is;Is=o[Hs>>2];if(Is){continue}break}}if((Hs|0)!=(Ns|0)){continue}break}}Ds=Ye+16|0;Is=o[Ds>>2];d:{if(Is){Ks=o[Js>>2];while(1){Hs=o[Is+16>>2];e:{if((Ks|0)<(Hs|0)){Hs=o[Is>>2];if(Hs){break e}Ds=Is;break d}if((Hs|0)>=(Ks|0)){break d}Ds=Is+4|0;Hs=o[Is+4>>2];if(!Hs){break d}Is=Ds}Ds=Is;Is=Hs;continue}}Is=Ks;Ds=Is}Hs=o[Ds>>2];if(!Hs){Hs=Hk(32);o[Hs+16>>2]=o[Js>>2];o[Hs+20>>2]=o[Js+4>>2];Ks=Hs+24|0;Ns=o[Js+8>>2];o[Ks>>2]=Ns;Os=o[Js+12>>2];o[Hs+28>>2]=Os;f:{if(!Os){o[Hs+20>>2]=Ks;break f}o[Ns+8>>2]=Ks;o[Js+8>>2]=0;o[Js+12>>2]=0;o[Js+4>>2]=Ls}o[Hs+8>>2]=Is;o[Hs>>2]=0;o[Hs+4>>2]=0;o[Ds>>2]=Hs;Ks=o[o[Ye+12>>2]>>2];Is=Hs;g:{if(!Ks){break g}o[Ye+12>>2]=Ks;Is=o[Ds>>2]}Xf(o[Ye+16>>2],Is);Ye=Ye+20|0;o[Ye>>2]=o[Ye>>2]+1}Ac(Js|4,o[Js+8>>2]);Ac(Ms,o[Ms+4>>2])}R=Js+32|0;return Hs+20|0}function Wf(Ye,Ds,Ps,Qs){var Rs=0;Rs=R-16|0;R=Rs;Ps=Yf(Ye,Ds,Rs+12|0,Rs+8|0,Ps);if(!o[Ps>>2]){Ds=Hk(40);Mk(Ds+16|0,Qs);Mk(Ds+28|0,Qs+12|0);o[Ds+8>>2]=o[Rs+12>>2];o[Ds>>2]=0;o[Ds+4>>2]=0;o[Ps>>2]=Ds;Qs=Ds;Ds=o[o[Ye>>2]>>2];if(Ds){o[Ye>>2]=Ds;Qs=o[Ps>>2]}Xf(o[Ye+4>>2],Qs);Ye=Ye+8|0;o[Ye>>2]=o[Ye>>2]+1}R=Rs+16|0}function Xf(Ye,Ds){var Ps=0,Qs=0,Ss=0;Ps=(Ye|0)==(Ds|0);m[Ds+12|0]=Ps;a:{if(Ps){break a}while(1){Qs=o[Ds+8>>2];if(p[Qs+12|0]){break a}b:{Ps=o[Qs+8>>2];Ss=o[Ps>>2];if((Ss|0)==(Qs|0)){Ss=o[Ps+4>>2];if(!(!Ss|p[Ss+12|0])){break b}c:{if(o[Qs>>2]==(Ds|0)){Ds=Qs;break c}Ds=o[Qs+4>>2];Ss=o[Ds>>2];o[Qs+4>>2]=Ss;Ye=Ds;if(Ss){o[Ss+8>>2]=Qs;Ps=o[Qs+8>>2]}o[Ye+8>>2]=Ps;Ye=o[Qs+8>>2];o[((Qs|0)==o[Ye>>2]?Ye:Ye+4|0)>>2]=Ds;o[Ds>>2]=Qs;o[Qs+8>>2]=Ds;Ps=o[Ds+8>>2]}m[Ds+12|0]=1;m[Ps+12|0]=0;Ye=o[Ps>>2];Ds=o[Ye+4>>2];o[Ps>>2]=Ds;if(Ds){o[Ds+8>>2]=Ps}o[Ye+8>>2]=o[Ps+8>>2];Ds=o[Ps+8>>2];o[(o[Ds>>2]==(Ps|0)?Ds:Ds+4|0)>>2]=Ye;o[Ye+4>>2]=Ps;o[Ps+8>>2]=Ye;return}if(!(p[Ss+12|0]|!Ss)){break b}d:{if(o[Qs>>2]!=(Ds|0)){Ds=Qs;break d}Ss=o[Ds+4>>2];o[Qs>>2]=Ss;Ye=Ds;if(Ss){o[Ss+8>>2]=Qs;Ps=o[Qs+8>>2]}o[Ye+8>>2]=Ps;Ye=o[Qs+8>>2];o[((Qs|0)==o[Ye>>2]?Ye:Ye+4|0)>>2]=Ds;o[Ds+4>>2]=Qs;o[Qs+8>>2]=Ds;Ps=o[Ds+8>>2]}m[Ds+12|0]=1;m[Ps+12|0]=0;Ye=o[Ps+4>>2];Ds=o[Ye>>2];o[Ps+4>>2]=Ds;if(Ds){o[Ds+8>>2]=Ps}o[Ye+8>>2]=o[Ps+8>>2];Ds=o[Ps+8>>2];o[(o[Ds>>2]==(Ps|0)?Ds:Ds+4|0)>>2]=Ye;o[Ye>>2]=Ps;o[Ps+8>>2]=Ye;break a}Ds=Ss+12|0;m[Qs+12|0]=1;m[Ps+12|0]=(Ye|0)==(Ps|0);m[Ds|0]=1;Ds=Ps;if((Ds|0)!=(Ye|0)){continue}break}}}function Yf(Ye,Ds,Ts,Us,Vs){var Ws=0,Xs=0,Ys=0,Zs=0,_s=0,$s=0,at=0,bt=0,ct=0,dt=0,et=0;a:{b:{c:{d:{e:{ct=Ye+4|0;f:{if((ct|0)==(Ds|0)){break f}Ws=Ds+16|0;Ys=p[Ds+27|0];dt=Ys<<24>>24;Xs=(dt|0)<0;Zs=p[Vs+11|0];_s=Zs<<24>>24;$s=(_s|0)<0;at=Xs?o[Ds+20>>2]:Ys;Zs=$s?o[Vs+4>>2]:Zs;bt=at>>>0<Zs>>>0;g:{Ys=bt?at:Zs;if(Ys){$s=$s?o[Vs>>2]:Vs;Xs=Xs?o[Ws>>2]:Ws;et=Zj($s,Xs,Ys);if(et){break g}}if(Zs>>>0<at>>>0){break f}if(!Ys){break d}$s=(_s|0)<0?o[Vs>>2]:Vs;Xs=(dt|0)<0?o[Ws>>2]:Ws;break e}if((et|0)>-1){break e}}Ys=o[Ds>>2];h:{i:{if(o[Ye>>2]==(Ds|0)){Ws=Ds;break i}j:{if(!Ys){Us=Ds;while(1){Ws=o[Us+8>>2];Zs=o[Ws>>2]==(Us|0);Us=Ws;if(Zs){continue}break}break j}Us=Ys;while(1){Ws=Us;Us=o[Ws+4>>2];if(Us){continue}break}}Xs=p[Vs+11|0];Us=Xs<<24>>24<0;_s=p[Ws+27|0];Zs=_s<<24>>24<0;k:{Xs=Us?o[Vs+4>>2]:Xs;_s=Zs?o[Ws+20>>2]:_s;$s=Xs>>>0<_s>>>0?Xs:_s;if($s){at=Ws+16|0;Us=Zj(Zs?o[at>>2]:at,Us?o[Vs>>2]:Vs,$s);if(Us){break k}}if(_s>>>0<Xs>>>0){break i}break h}if((Us|0)>-1){break h}}if(!Ys){o[Ts>>2]=Ds;return Ds}o[Ts>>2]=Ws;return Ws+4|0}return Zf(Ye,Ts,Vs)}Ws=Zj(Xs,$s,Ys);if(Ws){break c}}if(bt){break b}break a}if((Ws|0)>-1){break a}}$s=Ds+4|0;Ys=o[$s>>2];l:{if(Ys){Ws=Ys;while(1){Us=Ws;Ws=o[Ws>>2];if(Ws){continue}break}break l}Us=o[Ds+8>>2];if(o[Us>>2]==(Ds|0)){break l}Ws=Ds+8|0;while(1){Xs=o[Ws>>2];Ws=Xs+8|0;Us=o[Xs+8>>2];if((Xs|0)!=o[Us>>2]){continue}break}}m:{n:{if((Us|0)==(ct|0)){break n}Xs=p[Us+27|0];Ws=Xs<<24>>24<0;o:{Xs=Ws?o[Us+20>>2]:Xs;at=Xs>>>0<Zs>>>0?Xs:Zs;if(at){bt=(_s|0)<0?o[Vs>>2]:Vs;_s=Us+16|0;Ws=Zj(bt,Ws?o[_s>>2]:_s,at);if(Ws){break o}}if(Zs>>>0<Xs>>>0){break n}break m}if((Ws|0)>-1){break m}}if(!Ys){o[Ts>>2]=Ds;return $s}o[Ts>>2]=Us;return Us}return Zf(Ye,Ts,Vs)}o[Ts>>2]=Ds;o[Us>>2]=Ds;return Us}function Zf(Ye,Ds,Ts){var Us=0,Vs=0,ft=0,gt=0,ht=0,it=0,jt=0,kt=0,lt=0;a:{Us=Ye+4|0;Ye=o[Us>>2];if(Ye){ft=p[Ts+11|0];gt=ft<<24>>24<0;ft=gt?o[Ts+4>>2]:ft;jt=gt?o[Ts>>2]:Ts;while(1){Ts=Ye+16|0;Vs=p[Ye+27|0];gt=Vs<<24>>24<0;ht=gt?o[Ye+20>>2]:Vs;kt=ht>>>0<ft>>>0;b:{c:{d:{e:{f:{g:{h:{Vs=kt?ht:ft;if(Vs){it=gt?o[Ts>>2]:Ts;lt=Zj(jt,it,Vs);if(lt){break h}}if(ft>>>0<ht>>>0){break g}if(!Vs){break e}it=gt?o[Ts>>2]:Ts;break f}if((lt|0)>-1){break f}}Ts=o[Ye>>2];if(Ts){break b}o[Ds>>2]=Ye;return Ye}Ts=Zj(it,jt,Vs);if(Ts){break d}}if(kt){break c}break a}if((Ts|0)>-1){break a}}Us=Ye+4|0;Ts=o[Ye+4>>2];if(!Ts){break a}Ye=Us}Us=Ye;Ye=Ts;continue}}o[Ds>>2]=Us;return Us}o[Ds>>2]=Ye;return Us}function _f(Ye,Ds,Ts,mt){var nt=0,ot=0,pt=0,qt=0,rt=0;if(!Ye){return 1}nt=o[Ts+16>>2];qt=o[Ts+12>>2];pt=o[Ts+20>>2];ot=pt;a:{if((qt|0)<(ot|0)?1:(qt|0)<=(ot|0)?r[Ts+8>>2]>nt>>>0?0:1:0){break a}ot=p[nt+o[Ts>>2]|0];nt=nt+1|0;if(nt>>>0<1){pt=pt+1|0}o[Ts+16>>2]=nt;o[Ts+20>>2]=pt;if(ot>>>0>1){break a}if(ot-1){return $f(Ye,Ds,Ts,mt)}rt=ag(Ye,Ts,mt)}return rt}function $f(Ye,Ds,Ts,mt){var st=0,tt=0,ut=0,vt=0,wt=0,xt=0,yt=0,zt=0,At=0,Bt=0,Ct=0,Dt=0,Et=0,Ft=0,Gt=0,Ht=0;st=R+ -64|0;R=st;o[st+56>>2]=0;o[st+48>>2]=0;o[st+52>>2]=0;o[st+40>>2]=0;o[st+44>>2]=0;o[st+32>>2]=0;o[st+36>>2]=0;o[st+24>>2]=0;o[st+28>>2]=0;o[st+16>>2]=0;o[st+20>>2]=0;o[st+8>>2]=0;o[st+12>>2]=0;a:{if(!bg(st+8|0,Ts)){break a}if(!cg(st+8|0,Ts)|(o[st+20>>2]?0:Ye)){break a}qi(Ts,0,0);if(Ye){vt=o[st+56>>2];Dt=o[st+36>>2];Et=o[st+48>>2];Ft=o[st+24>>2];while(1){b:{if(vt>>>0>16383){break b}tt=o[st+52>>2];while(1){if((tt|0)<1){break b}tt=tt+ -1|0;o[st+52>>2]=tt;vt=p[tt+Et|0]|vt<<8;o[st+56>>2]=vt;if(vt>>>0<16384){continue}break}}ut=vt&4095;Bt=o[(ut<<2)+Ft>>2];wt=(Bt<<3)+Dt|0;vt=(u(o[wt>>2],vt>>>12)+ut|0)-o[wt+4>>2]|0;o[st+56>>2]=vt;if((Ds|0)>=1){if(!p[Ts+36|0]){ut=0;break a}wt=Ds+xt|0;while(1){c:{if((Bt|0)<1){zt=0;break c}ut=o[Ts+32>>2];Gt=o[Ts+28>>2];Ht=o[Ts+24>>2];tt=0;zt=0;while(1){yt=(ut>>>3)+Ht|0;d:{if(yt>>>0>=Gt>>>0){At=0;break d}At=p[yt|0];yt=ut+1|0;o[Ts+32>>2]=yt;At=At>>>(ut&7)&1;ut=yt}zt=At<<tt|zt;tt=tt+1|0;if((Bt|0)!=(tt|0)){continue}break}}o[(xt<<2)+mt>>2]=zt;xt=xt+1|0;if((wt|0)!=(xt|0)){continue}break}xt=wt}Ct=Ds+Ct|0;if(Ct>>>0<Ye>>>0){continue}break}}si(Ts);ut=1}Ye=o[st+36>>2];if(Ye){o[st+40>>2]=Ye;ul(Ye)}Ye=o[st+24>>2];if(Ye){o[st+28>>2]=Ye;ul(Ye)}Ye=o[st+8>>2];if(Ye){o[st+12>>2]=Ye;ul(Ye)}R=st- -64|0;return ut}function ag(Ye,Ds,Ts){var mt=0,It=0,Jt=0,Kt=0;a:{b:{It=o[Ds+16>>2];Jt=o[Ds+12>>2];mt=o[Ds+20>>2];c:{if((Jt|0)<(mt|0)?1:(Jt|0)<=(mt|0)?r[Ds+8>>2]>It>>>0?0:1:0){break c}Jt=p[It+o[Ds>>2]|0];It=It+1|0;if(It>>>0<1){mt=mt+1|0}o[Ds+16>>2]=It;o[Ds+20>>2]=mt;mt=Jt+ -1|0;if(mt>>>0>17){break c}d:{e:{f:{g:{h:{i:{j:{switch(mt-1|0){case 12:case 13:case 14:case 15:break a;case 8:break h;case 7:break i;case 3:break j;case 16:break d;case 11:break e;case 10:break f;case 9:break g;default:break b}}return eg(Ye,Ds,Ts)}return fg(Ye,Ds,Ts)}return gg(Ye,Ds,Ts)}return hg(Ye,Ds,Ts)}return ig(Ye,Ds,Ts)}return jg(Ye,Ds,Ts)}Kt=kg(Ye,Ds,Ts)}return Kt}return dg(Ye,Ds,Ts)}return kg(Ye,Ds,Ts)}function bg(Ye,Ds){var Ts=0,Lt=0,Mt=0,Nt=0,Ot=0,Pt=0,Qt=0,Rt=0,St=0,Tt=0,Ut=0,Vt=0,Wt=0;a:{if(!q[Ds+38>>1]){break a}Tt=Ye+12|0;if(!lg(1,Tt,Ds)){break a}Nt=o[Ye+12>>2];Ts=o[Ye>>2];Lt=o[Ye+4>>2]-Ts>>2;b:{if(Nt>>>0>Lt>>>0){Da(Ye,Nt-Lt|0);Nt=o[Ye+12>>2];break b}if(Nt>>>0>=Lt>>>0){break b}o[Ye+4>>2]=Ts+(Nt<<2)}if(!Nt){Wt=1;break a}Ut=o[Ds+8>>2];Qt=o[Ds+12>>2];while(1){Mt=o[Ds+16>>2];Lt=o[Ds+20>>2];Ts=Lt;if((Qt|0)<(Ts|0)?1:(Qt|0)<=(Ts|0)?Ut>>>0>Mt>>>0?0:1:0){break a}Vt=o[Ds>>2];Rt=p[Vt+Mt|0];Mt=Mt+1|0;if(Mt>>>0<1){Lt=Lt+1|0}Ts=Ds;Pt=Mt;o[Ts+16>>2]=Mt;o[Ts+20>>2]=Lt;Mt=Rt>>>2;c:{d:{e:{St=Rt&3;if(St>>>0>3){Ts=0;break e}Ts=0;f:{switch(St-1|0){case 2:break f;case 0:case 1:break e;default:break d}}Lt=Mt+Ot|0;if(Lt>>>0>=Nt>>>0){return 0}xl(o[Ye>>2]+(Ot<<2)|0,0,(Rt&252)+4|0);Ot=Lt;break c}while(1){if((Qt|0)<(Lt|0)?1:(Qt|0)<=(Lt|0)?Ut>>>0>Pt>>>0?0:1:0){return 0}Rt=p[Pt+Vt|0];Pt=Pt+1|0;if(Pt>>>0<1){Lt=Lt+1|0}Nt=Ds;o[Nt+16>>2]=Pt;o[Nt+20>>2]=Lt;Mt=Rt<<(Ts<<3|6)|Mt;Ts=Ts+1|0;if((St|0)!=(Ts|0)){continue}break}}o[o[Ye>>2]+(Ot<<2)>>2]=Mt}Ot=Ot+1|0;Nt=o[Tt>>2];if(Ot>>>0<Nt>>>0){continue}break}Lt=Ye+16|0;Qt=o[Ye>>2];Ds=o[Ye+16>>2];Ts=o[Ye+20>>2]-Ds|0;Ot=Ts>>2;g:{if(Ot>>>0<=4095){Da(Lt,4096-Ot|0);break g}if((Ts|0)==16384){break g}o[Ye+20>>2]=Ds+16384}h:{Ts=Ye+28|0;Ds=o[Ts>>2];Ot=o[Ye+32>>2]-Ds>>3;if(Nt>>>0>Ot>>>0){mg(Ts,Nt-Ot|0);Ds=o[Ts>>2];break h}if(Nt>>>0<Ot>>>0){o[Ye+32>>2]=(Nt<<3)+Ds}if(Nt){break h}return 0}Mt=0;Ts=0;while(1){Ye=Qt+(Mt<<2)|0;Ot=o[Ye>>2];Pt=(Mt<<3)+Ds|0;o[Pt+4>>2]=Ts;o[Pt>>2]=Ot;Ye=o[Ye>>2]+Ts|0;if(Ye>>>0>4096){break a}if(Ts>>>0<Ye>>>0){Ot=o[Lt>>2];while(1){o[Ot+(Ts<<2)>>2]=Mt;Ts=Ts+1|0;if((Ye|0)!=(Ts|0)){continue}break}}Ts=Ye;Mt=Mt+1|0;if((Nt|0)!=(Mt|0)){continue}break}return(Ye|0)==4096}return Wt}function cg(Ye,Ds){var Xt=0,Yt=0,Zt=0,_t=0,$t=0,au=0,bu=0,cu=0;$t=R-16|0;R=$t;a:{if(!ng(1,$t+8|0,Ds)){break a}Xt=o[Ds+8>>2];Yt=o[Ds+16>>2];au=Xt-Yt|0;Zt=o[$t+12>>2];bu=o[Ds+20>>2];_t=o[Ds+12>>2]-(bu+(Xt>>>0<Yt>>>0)|0)|0;Xt=o[$t+8>>2];if((Zt|0)==(_t|0)&Xt>>>0>au>>>0|Zt>>>0>_t>>>0){break a}Zt=Zt+bu|0;_t=Xt+Yt|0;if(_t>>>0<Yt>>>0){Zt=Zt+1|0}o[Ds+16>>2]=_t;o[Ds+20>>2]=Zt;if((Xt|0)<1){break a}Yt=Yt+o[Ds>>2]|0;o[Ye+40>>2]=Yt;Ds=Ye;b:{c:{d:{e:{f:{_t=Xt+ -1|0;au=Yt+_t|0;switch((p[au|0]>>>6)-1|0){case 2:break c;case 1:break d;case 0:break e;default:break f}}o[Ye+44>>2]=_t;Ye=p[au|0]&63;break b}if((Xt|0)<2){break a}o[Ye+44>>2]=Xt+ -2;Ye=(Xt+Yt|0)+ -2|0;Ye=p[Ye+1|0]<<8&16128|p[Ye|0];break b}if((Xt|0)<3){break a}o[Ye+44>>2]=Xt+ -3;Ye=(Xt+Yt|0)+ -3|0;Ye=p[Ye+1|0]<<8|p[Ye+2|0]<<16&4128768|p[Ye|0];break b}o[Ye+44>>2]=Xt+ -4;Ye=(Xt+Yt|0)+ -4|0;Ye=p[Ye+2|0]<<16|p[Ye+3|0]<<24&1056964608|p[Ye+1|0]<<8|p[Ye|0]}Ye=Ye+16384|0;o[Ds+48>>2]=Ye;cu=Ye>>>0<4194304}R=$t+16|0;return cu}function dg(Ye,Ds,du){var eu=0,fu=0,gu=0,hu=0,iu=0,ju=0,ku=0,lu=0,mu=0,nu=0;eu=R+ -64|0;R=eu;o[eu+48>>2]=0;o[eu+40>>2]=0;o[eu+44>>2]=0;o[eu+32>>2]=0;o[eu+36>>2]=0;o[eu+24>>2]=0;o[eu+28>>2]=0;o[eu+16>>2]=0;o[eu+20>>2]=0;o[eu+8>>2]=0;o[eu+12>>2]=0;o[eu>>2]=0;o[eu+4>>2]=0;a:{if(!bg(eu,Ds)|(o[eu+12>>2]?0:Ye)){break a}if(!ng(1,eu+56|0,Ds)){break a}gu=o[Ds+8>>2];mu=o[Ds+16>>2];hu=mu;ku=gu-hu|0;ju=o[eu+60>>2];fu=ju;lu=o[Ds+20>>2];hu=o[Ds+12>>2]-(lu+(gu>>>0<hu>>>0)|0)|0;gu=o[eu+56>>2];if((fu|0)==(hu|0)&gu>>>0>ku>>>0|fu>>>0>hu>>>0){break a}ju=ju+lu|0;hu=mu;lu=hu+gu|0;if(lu>>>0<hu>>>0){ju=ju+1|0}o[Ds+16>>2]=lu;o[Ds+20>>2]=ju;if((gu|0)<1){break a}ku=mu+o[Ds>>2]|0;o[eu+40>>2]=ku;hu=eu;b:{c:{d:{e:{f:{Ds=gu+ -1|0;fu=ku+Ds|0;switch((p[fu|0]>>>6)-1|0){case 2:break d;case 1:break e;case 0:break f;default:break c}}if((gu|0)<2){break a}Ds=gu+ -2|0;o[eu+44>>2]=Ds;fu=(gu+ku|0)+ -2|0;fu=p[fu+1|0]<<8&16128|p[fu|0];break b}if((gu|0)<3){break a}Ds=gu+ -3|0;o[eu+44>>2]=Ds;fu=(gu+ku|0)+ -3|0;fu=p[fu+1|0]<<8|p[fu+2|0]<<16&4128768|p[fu|0];break b}Ds=gu+ -4|0;o[eu+44>>2]=Ds;fu=(gu+ku|0)+ -4|0;fu=p[fu+2|0]<<16|p[fu+3|0]<<24&1056964608|p[fu+1|0]<<8|p[fu|0];break b}o[eu+44>>2]=Ds;fu=p[fu|0]&63}iu=fu+16384|0;o[hu+48>>2]=iu;nu=iu>>>0<4194304;if(!Ye|iu>>>0>4194303){break a}lu=o[eu+28>>2];ju=0;mu=o[eu+16>>2];while(1){g:{if(iu>>>0>16383){break g}while(1){if((Ds|0)<1){break g}Ds=Ds+ -1|0;o[eu+44>>2]=Ds;iu=p[Ds+ku|0]|iu<<8;o[eu+48>>2]=iu;if(iu>>>0<16384){continue}break}}gu=iu&4095;fu=o[(gu<<2)+mu>>2];hu=(fu<<3)+lu|0;iu=(u(o[hu>>2],iu>>>12)+gu|0)-o[hu+4>>2]|0;o[eu+48>>2]=iu;o[(ju<<2)+du>>2]=fu;nu=1;ju=ju+1|0;if((ju|0)!=(Ye|0)){continue}break}}Ye=o[eu+28>>2];if(Ye){o[eu+32>>2]=Ye;ul(Ye)}Ye=o[eu+16>>2];if(Ye){o[eu+20>>2]=Ye;ul(Ye)}Ye=o[eu>>2];if(Ye){o[eu+4>>2]=Ye;ul(Ye)}R=eu- -64|0;return nu}function eg(Ye,Ds,du){var ou=0,pu=0,qu=0,ru=0,su=0,tu=0,uu=0,vu=0;ou=R+ -64|0;R=ou;o[ou+56>>2]=0;o[ou+48>>2]=0;o[ou+52>>2]=0;o[ou+40>>2]=0;o[ou+44>>2]=0;o[ou+32>>2]=0;o[ou+36>>2]=0;o[ou+24>>2]=0;o[ou+28>>2]=0;o[ou+16>>2]=0;o[ou+20>>2]=0;o[ou+8>>2]=0;o[ou+12>>2]=0;a:{if(!bg(ou+8|0,Ds)|(o[ou+20>>2]?0:Ye)){break a}pu=cg(ou+8|0,Ds);if(!Ye|!pu){break a}Ds=o[ou+56>>2];tu=o[ou+36>>2];uu=o[ou+48>>2];vu=o[ou+24>>2];while(1){b:{if(Ds>>>0>16383){break b}pu=o[ou+52>>2];while(1){if((pu|0)<1){break b}pu=pu+ -1|0;o[ou+52>>2]=pu;Ds=p[pu+uu|0]|Ds<<8;o[ou+56>>2]=Ds;if(Ds>>>0<16384){continue}break}}pu=Ds&4095;ru=o[(pu<<2)+vu>>2];su=(ru<<3)+tu|0;Ds=(u(o[su>>2],Ds>>>12)+pu|0)-o[su+4>>2]|0;o[ou+56>>2]=Ds;o[(qu<<2)+du>>2]=ru;pu=1;qu=qu+1|0;if((qu|0)!=(Ye|0)){continue}break}}Ye=o[ou+36>>2];if(Ye){o[ou+40>>2]=Ye;ul(Ye)}Ye=o[ou+24>>2];if(Ye){o[ou+28>>2]=Ye;ul(Ye)}Ye=o[ou+8>>2];if(Ye){o[ou+12>>2]=Ye;ul(Ye)}R=ou- -64|0;return pu}function fg(Ye,Ds,du){var wu=0,xu=0,yu=0,zu=0,Au=0,Bu=0,Cu=0,Du=0,Eu=0,Fu=0;wu=R+ -64|0;R=wu;o[wu+48>>2]=0;o[wu+40>>2]=0;o[wu+44>>2]=0;o[wu+32>>2]=0;o[wu+36>>2]=0;o[wu+24>>2]=0;o[wu+28>>2]=0;o[wu+16>>2]=0;o[wu+20>>2]=0;o[wu+8>>2]=0;o[wu+12>>2]=0;o[wu>>2]=0;o[wu+4>>2]=0;a:{if(!og(wu,Ds)|(o[wu+12>>2]?0:Ye)){break a}if(!ng(1,wu+56|0,Ds)){break a}yu=o[Ds+8>>2];Eu=o[Ds+16>>2];zu=Eu;Cu=yu-zu|0;Bu=o[wu+60>>2];xu=Bu;Du=o[Ds+20>>2];zu=o[Ds+12>>2]-(Du+(yu>>>0<zu>>>0)|0)|0;yu=o[wu+56>>2];if((xu|0)==(zu|0)&yu>>>0>Cu>>>0|xu>>>0>zu>>>0){break a}Bu=Bu+Du|0;zu=Eu;Du=zu+yu|0;if(Du>>>0<zu>>>0){Bu=Bu+1|0}o[Ds+16>>2]=Du;o[Ds+20>>2]=Bu;if((yu|0)<1){break a}Cu=Eu+o[Ds>>2]|0;o[wu+40>>2]=Cu;zu=wu;b:{c:{d:{e:{f:{Ds=yu+ -1|0;xu=Cu+Ds|0;switch((p[xu|0]>>>6)-1|0){case 2:break d;case 1:break e;case 0:break f;default:break c}}if((yu|0)<2){break a}Ds=yu+ -2|0;o[wu+44>>2]=Ds;xu=(yu+Cu|0)+ -2|0;xu=p[xu+1|0]<<8&16128|p[xu|0];break b}if((yu|0)<3){break a}Ds=yu+ -3|0;o[wu+44>>2]=Ds;xu=(yu+Cu|0)+ -3|0;xu=p[xu+1|0]<<8|p[xu+2|0]<<16&4128768|p[xu|0];break b}Ds=yu+ -4|0;o[wu+44>>2]=Ds;xu=(yu+Cu|0)+ -4|0;xu=p[xu+2|0]<<16|p[xu+3|0]<<24&1056964608|p[xu+1|0]<<8|p[xu|0];break b}o[wu+44>>2]=Ds;xu=p[xu|0]&63}Au=xu+32768|0;o[zu+48>>2]=Au;Fu=Au>>>0<8388608;if(!Ye|Au>>>0>8388607){break a}Du=o[wu+28>>2];Bu=0;Eu=o[wu+16>>2];while(1){g:{if(Au>>>0>32767){break g}while(1){if((Ds|0)<1){break g}Ds=Ds+ -1|0;o[wu+44>>2]=Ds;Au=p[Ds+Cu|0]|Au<<8;o[wu+48>>2]=Au;if(Au>>>0<32768){continue}break}}yu=Au&8191;xu=o[(yu<<2)+Eu>>2];zu=(xu<<3)+Du|0;Au=(u(o[zu>>2],Au>>>13)+yu|0)-o[zu+4>>2]|0;o[wu+48>>2]=Au;o[(Bu<<2)+du>>2]=xu;Fu=1;Bu=Bu+1|0;if((Bu|0)!=(Ye|0)){continue}break}}Ye=o[wu+28>>2];if(Ye){o[wu+32>>2]=Ye;ul(Ye)}Ye=o[wu+16>>2];if(Ye){o[wu+20>>2]=Ye;ul(Ye)}Ye=o[wu>>2];if(Ye){o[wu+4>>2]=Ye;ul(Ye)}R=wu- -64|0;return Fu}function gg(Ye,Ds,du){var Gu=0,Hu=0,Iu=0,Ju=0,Ku=0,Lu=0,Mu=0,Nu=0,Ou=0,Pu=0;Gu=R+ -64|0;R=Gu;o[Gu+48>>2]=0;o[Gu+40>>2]=0;o[Gu+44>>2]=0;o[Gu+32>>2]=0;o[Gu+36>>2]=0;o[Gu+24>>2]=0;o[Gu+28>>2]=0;o[Gu+16>>2]=0;o[Gu+20>>2]=0;o[Gu+8>>2]=0;o[Gu+12>>2]=0;o[Gu>>2]=0;o[Gu+4>>2]=0;a:{if(!pg(Gu,Ds)|(o[Gu+12>>2]?0:Ye)){break a}if(!ng(1,Gu+56|0,Ds)){break a}Iu=o[Ds+8>>2];Ou=o[Ds+16>>2];Ju=Ou;Mu=Iu-Ju|0;Lu=o[Gu+60>>2];Hu=Lu;Nu=o[Ds+20>>2];Ju=o[Ds+12>>2]-(Nu+(Iu>>>0<Ju>>>0)|0)|0;Iu=o[Gu+56>>2];if((Hu|0)==(Ju|0)&Iu>>>0>Mu>>>0|Hu>>>0>Ju>>>0){break a}Lu=Lu+Nu|0;Ju=Ou;Nu=Ju+Iu|0;if(Nu>>>0<Ju>>>0){Lu=Lu+1|0}o[Ds+16>>2]=Nu;o[Ds+20>>2]=Lu;if((Iu|0)<1){break a}Mu=Ou+o[Ds>>2]|0;o[Gu+40>>2]=Mu;Ju=Gu;b:{c:{d:{e:{f:{Ds=Iu+ -1|0;Hu=Mu+Ds|0;switch((p[Hu|0]>>>6)-1|0){case 2:break d;case 1:break e;case 0:break f;default:break c}}if((Iu|0)<2){break a}Ds=Iu+ -2|0;o[Gu+44>>2]=Ds;Hu=(Iu+Mu|0)+ -2|0;Hu=p[Hu+1|0]<<8&16128|p[Hu|0];break b}if((Iu|0)<3){break a}Ds=Iu+ -3|0;o[Gu+44>>2]=Ds;Hu=(Iu+Mu|0)+ -3|0;Hu=p[Hu+1|0]<<8|p[Hu+2|0]<<16&4128768|p[Hu|0];break b}Ds=Iu+ -4|0;o[Gu+44>>2]=Ds;Hu=(Iu+Mu|0)+ -4|0;Hu=p[Hu+2|0]<<16|p[Hu+3|0]<<24&1056964608|p[Hu+1|0]<<8|p[Hu|0];break b}o[Gu+44>>2]=Ds;Hu=p[Hu|0]&63}Ku=Hu+131072|0;o[Ju+48>>2]=Ku;Pu=Ku>>>0<33554432;if(!Ye|Ku>>>0>33554431){break a}Nu=o[Gu+28>>2];Lu=0;Ou=o[Gu+16>>2];while(1){g:{if(Ku>>>0>131071){break g}while(1){if((Ds|0)<1){break g}Ds=Ds+ -1|0;o[Gu+44>>2]=Ds;Ku=p[Ds+Mu|0]|Ku<<8;o[Gu+48>>2]=Ku;if(Ku>>>0<131072){continue}break}}Iu=Ku&32767;Hu=o[(Iu<<2)+Ou>>2];Ju=(Hu<<3)+Nu|0;Ku=(u(o[Ju>>2],Ku>>>15)+Iu|0)-o[Ju+4>>2]|0;o[Gu+48>>2]=Ku;o[(Lu<<2)+du>>2]=Hu;Pu=1;Lu=Lu+1|0;if((Lu|0)!=(Ye|0)){continue}break}}Ye=o[Gu+28>>2];if(Ye){o[Gu+32>>2]=Ye;ul(Ye)}Ye=o[Gu+16>>2];if(Ye){o[Gu+20>>2]=Ye;ul(Ye)}Ye=o[Gu>>2];if(Ye){o[Gu+4>>2]=Ye;ul(Ye)}R=Gu- -64|0;return Pu}function hg(Ye,Ds,du){var Qu=0,Ru=0,Su=0,Tu=0,Uu=0,Vu=0,Wu=0,Xu=0,Yu=0,Zu=0;Qu=R+ -64|0;R=Qu;o[Qu+48>>2]=0;o[Qu+40>>2]=0;o[Qu+44>>2]=0;o[Qu+32>>2]=0;o[Qu+36>>2]=0;o[Qu+24>>2]=0;o[Qu+28>>2]=0;o[Qu+16>>2]=0;o[Qu+20>>2]=0;o[Qu+8>>2]=0;o[Qu+12>>2]=0;o[Qu>>2]=0;o[Qu+4>>2]=0;a:{if(!qg(Qu,Ds)|(o[Qu+12>>2]?0:Ye)){break a}if(!ng(1,Qu+56|0,Ds)){break a}Su=o[Ds+8>>2];Yu=o[Ds+16>>2];Tu=Yu;Wu=Su-Tu|0;Vu=o[Qu+60>>2];Ru=Vu;Xu=o[Ds+20>>2];Tu=o[Ds+12>>2]-(Xu+(Su>>>0<Tu>>>0)|0)|0;Su=o[Qu+56>>2];if((Ru|0)==(Tu|0)&Su>>>0>Wu>>>0|Ru>>>0>Tu>>>0){break a}Vu=Vu+Xu|0;Tu=Yu;Xu=Tu+Su|0;if(Xu>>>0<Tu>>>0){Vu=Vu+1|0}o[Ds+16>>2]=Xu;o[Ds+20>>2]=Vu;if((Su|0)<1){break a}Wu=Yu+o[Ds>>2]|0;o[Qu+40>>2]=Wu;Tu=Qu;b:{c:{d:{e:{f:{Ds=Su+ -1|0;Ru=Wu+Ds|0;switch((p[Ru|0]>>>6)-1|0){case 2:break d;case 1:break e;case 0:break f;default:break c}}if((Su|0)<2){break a}Ds=Su+ -2|0;o[Qu+44>>2]=Ds;Ru=(Su+Wu|0)+ -2|0;Ru=p[Ru+1|0]<<8&16128|p[Ru|0];break b}if((Su|0)<3){break a}Ds=Su+ -3|0;o[Qu+44>>2]=Ds;Ru=(Su+Wu|0)+ -3|0;Ru=p[Ru+1|0]<<8|p[Ru+2|0]<<16&4128768|p[Ru|0];break b}Ds=Su+ -4|0;o[Qu+44>>2]=Ds;Ru=(Su+Wu|0)+ -4|0;Ru=p[Ru+2|0]<<16|p[Ru+3|0]<<24&1056964608|p[Ru+1|0]<<8|p[Ru|0];break b}o[Qu+44>>2]=Ds;Ru=p[Ru|0]&63}Uu=Ru+262144|0;o[Tu+48>>2]=Uu;Zu=Uu>>>0<67108864;if(!Ye|Uu>>>0>67108863){break a}Xu=o[Qu+28>>2];Vu=0;Yu=o[Qu+16>>2];while(1){g:{if(Uu>>>0>262143){break g}while(1){if((Ds|0)<1){break g}Ds=Ds+ -1|0;o[Qu+44>>2]=Ds;Uu=p[Ds+Wu|0]|Uu<<8;o[Qu+48>>2]=Uu;if(Uu>>>0<262144){continue}break}}Su=Uu&65535;Ru=o[(Su<<2)+Yu>>2];Tu=(Ru<<3)+Xu|0;Uu=(u(o[Tu>>2],Uu>>>16)+Su|0)-o[Tu+4>>2]|0;o[Qu+48>>2]=Uu;o[(Vu<<2)+du>>2]=Ru;Zu=1;Vu=Vu+1|0;if((Vu|0)!=(Ye|0)){continue}break}}Ye=o[Qu+28>>2];if(Ye){o[Qu+32>>2]=Ye;ul(Ye)}Ye=o[Qu+16>>2];if(Ye){o[Qu+20>>2]=Ye;ul(Ye)}Ye=o[Qu>>2];if(Ye){o[Qu+4>>2]=Ye;ul(Ye)}R=Qu- -64|0;return Zu}function ig(Ye,Ds,du){var _u=0,$u=0,av=0,bv=0,cv=0,dv=0,ev=0,fv=0,gv=0,hv=0;_u=R+ -64|0;R=_u;o[_u+48>>2]=0;o[_u+40>>2]=0;o[_u+44>>2]=0;o[_u+32>>2]=0;o[_u+36>>2]=0;o[_u+24>>2]=0;o[_u+28>>2]=0;o[_u+16>>2]=0;o[_u+20>>2]=0;o[_u+8>>2]=0;o[_u+12>>2]=0;o[_u>>2]=0;o[_u+4>>2]=0;a:{if(!rg(_u,Ds)|(o[_u+12>>2]?0:Ye)){break a}if(!ng(1,_u+56|0,Ds)){break a}av=o[Ds+8>>2];gv=o[Ds+16>>2];bv=gv;ev=av-bv|0;dv=o[_u+60>>2];$u=dv;fv=o[Ds+20>>2];bv=o[Ds+12>>2]-(fv+(av>>>0<bv>>>0)|0)|0;av=o[_u+56>>2];if(($u|0)==(bv|0)&av>>>0>ev>>>0|$u>>>0>bv>>>0){break a}dv=dv+fv|0;bv=gv;fv=bv+av|0;if(fv>>>0<bv>>>0){dv=dv+1|0}o[Ds+16>>2]=fv;o[Ds+20>>2]=dv;if((av|0)<1){break a}ev=gv+o[Ds>>2]|0;o[_u+40>>2]=ev;bv=_u;b:{c:{d:{e:{f:{Ds=av+ -1|0;$u=ev+Ds|0;switch((p[$u|0]>>>6)-1|0){case 2:break d;case 1:break e;case 0:break f;default:break c}}if((av|0)<2){break a}Ds=av+ -2|0;o[_u+44>>2]=Ds;$u=(av+ev|0)+ -2|0;$u=p[$u+1|0]<<8&16128|p[$u|0];break b}if((av|0)<3){break a}Ds=av+ -3|0;o[_u+44>>2]=Ds;$u=(av+ev|0)+ -3|0;$u=p[$u+1|0]<<8|p[$u+2|0]<<16&4128768|p[$u|0];break b}Ds=av+ -4|0;o[_u+44>>2]=Ds;$u=(av+ev|0)+ -4|0;$u=p[$u+2|0]<<16|p[$u+3|0]<<24&1056964608|p[$u+1|0]<<8|p[$u|0];break b}o[_u+44>>2]=Ds;$u=p[$u|0]&63}cv=$u- -1048576|0;o[bv+48>>2]=cv;hv=cv>>>0<268435456;if(!Ye|cv>>>0>268435455){break a}fv=o[_u+28>>2];dv=0;gv=o[_u+16>>2];while(1){g:{if(cv>>>0>1048575){break g}while(1){if((Ds|0)<1){break g}Ds=Ds+ -1|0;o[_u+44>>2]=Ds;cv=p[Ds+ev|0]|cv<<8;o[_u+48>>2]=cv;if(cv>>>0<1048576){continue}break}}av=cv&262143;$u=o[(av<<2)+gv>>2];bv=($u<<3)+fv|0;cv=(u(o[bv>>2],cv>>>18)+av|0)-o[bv+4>>2]|0;o[_u+48>>2]=cv;o[(dv<<2)+du>>2]=$u;hv=1;dv=dv+1|0;if((dv|0)!=(Ye|0)){continue}break}}Ye=o[_u+28>>2];if(Ye){o[_u+32>>2]=Ye;ul(Ye)}Ye=o[_u+16>>2];if(Ye){o[_u+20>>2]=Ye;ul(Ye)}Ye=o[_u>>2];if(Ye){o[_u+4>>2]=Ye;ul(Ye)}R=_u- -64|0;return hv}function jg(Ye,Ds,du){var iv=0,jv=0,kv=0,lv=0,mv=0,nv=0,ov=0,pv=0,qv=0,rv=0;iv=R+ -64|0;R=iv;o[iv+48>>2]=0;o[iv+40>>2]=0;o[iv+44>>2]=0;o[iv+32>>2]=0;o[iv+36>>2]=0;o[iv+24>>2]=0;o[iv+28>>2]=0;o[iv+16>>2]=0;o[iv+20>>2]=0;o[iv+8>>2]=0;o[iv+12>>2]=0;o[iv>>2]=0;o[iv+4>>2]=0;a:{if(!sg(iv,Ds)|(o[iv+12>>2]?0:Ye)){break a}if(!ng(1,iv+56|0,Ds)){break a}kv=o[Ds+8>>2];qv=o[Ds+16>>2];lv=qv;ov=kv-lv|0;nv=o[iv+60>>2];jv=nv;pv=o[Ds+20>>2];lv=o[Ds+12>>2]-(pv+(kv>>>0<lv>>>0)|0)|0;kv=o[iv+56>>2];if((jv|0)==(lv|0)&kv>>>0>ov>>>0|jv>>>0>lv>>>0){break a}nv=nv+pv|0;lv=qv;pv=lv+kv|0;if(pv>>>0<lv>>>0){nv=nv+1|0}o[Ds+16>>2]=pv;o[Ds+20>>2]=nv;if((kv|0)<1){break a}ov=qv+o[Ds>>2]|0;o[iv+40>>2]=ov;lv=iv;b:{c:{d:{e:{f:{Ds=kv+ -1|0;jv=ov+Ds|0;switch((p[jv|0]>>>6)-1|0){case 2:break d;case 1:break e;case 0:break f;default:break c}}if((kv|0)<2){break a}Ds=kv+ -2|0;o[iv+44>>2]=Ds;jv=(kv+ov|0)+ -2|0;jv=p[jv+1|0]<<8&16128|p[jv|0];break b}if((kv|0)<3){break a}Ds=kv+ -3|0;o[iv+44>>2]=Ds;jv=(kv+ov|0)+ -3|0;jv=p[jv+1|0]<<8|p[jv+2|0]<<16&4128768|p[jv|0];break b}Ds=kv+ -4|0;o[iv+44>>2]=Ds;jv=(kv+ov|0)+ -4|0;jv=p[jv+2|0]<<16|p[jv+3|0]<<24&1056964608|p[jv+1|0]<<8|p[jv|0];break b}o[iv+44>>2]=Ds;jv=p[jv|0]&63}mv=jv+2097152|0;o[lv+48>>2]=mv;rv=mv>>>0<536870912;if(!Ye|mv>>>0>536870911){break a}pv=o[iv+28>>2];nv=0;qv=o[iv+16>>2];while(1){g:{if(mv>>>0>2097151){break g}while(1){if((Ds|0)<1){break g}Ds=Ds+ -1|0;o[iv+44>>2]=Ds;mv=p[Ds+ov|0]|mv<<8;o[iv+48>>2]=mv;if(mv>>>0<2097152){continue}break}}kv=mv&524287;jv=o[(kv<<2)+qv>>2];lv=(jv<<3)+pv|0;mv=(u(o[lv>>2],mv>>>19)+kv|0)-o[lv+4>>2]|0;o[iv+48>>2]=mv;o[(nv<<2)+du>>2]=jv;rv=1;nv=nv+1|0;if((nv|0)!=(Ye|0)){continue}break}}Ye=o[iv+28>>2];if(Ye){o[iv+32>>2]=Ye;ul(Ye)}Ye=o[iv+16>>2];if(Ye){o[iv+20>>2]=Ye;ul(Ye)}Ye=o[iv>>2];if(Ye){o[iv+4>>2]=Ye;ul(Ye)}R=iv- -64|0;return rv}function kg(Ye,Ds,du){var sv=0,tv=0,uv=0,vv=0,wv=0,xv=0,yv=0,zv=0,Av=0,Bv=0;sv=R+ -64|0;R=sv;o[sv+48>>2]=0;o[sv+40>>2]=0;o[sv+44>>2]=0;o[sv+32>>2]=0;o[sv+36>>2]=0;o[sv+24>>2]=0;o[sv+28>>2]=0;o[sv+16>>2]=0;o[sv+20>>2]=0;o[sv+8>>2]=0;o[sv+12>>2]=0;o[sv>>2]=0;o[sv+4>>2]=0;a:{if(!tg(sv,Ds)|(o[sv+12>>2]?0:Ye)){break a}if(!ng(1,sv+56|0,Ds)){break a}uv=o[Ds+8>>2];Av=o[Ds+16>>2];vv=Av;yv=uv-vv|0;xv=o[sv+60>>2];tv=xv;zv=o[Ds+20>>2];vv=o[Ds+12>>2]-(zv+(uv>>>0<vv>>>0)|0)|0;uv=o[sv+56>>2];if((tv|0)==(vv|0)&uv>>>0>yv>>>0|tv>>>0>vv>>>0){break a}xv=xv+zv|0;vv=Av;zv=vv+uv|0;if(zv>>>0<vv>>>0){xv=xv+1|0}o[Ds+16>>2]=zv;o[Ds+20>>2]=xv;if((uv|0)<1){break a}yv=Av+o[Ds>>2]|0;o[sv+40>>2]=yv;vv=sv;b:{c:{d:{e:{f:{Ds=uv+ -1|0;tv=yv+Ds|0;switch((p[tv|0]>>>6)-1|0){case 2:break d;case 1:break e;case 0:break f;default:break c}}if((uv|0)<2){break a}Ds=uv+ -2|0;o[sv+44>>2]=Ds;tv=(uv+yv|0)+ -2|0;tv=p[tv+1|0]<<8&16128|p[tv|0];break b}if((uv|0)<3){break a}Ds=uv+ -3|0;o[sv+44>>2]=Ds;tv=(uv+yv|0)+ -3|0;tv=p[tv+1|0]<<8|p[tv+2|0]<<16&4128768|p[tv|0];break b}Ds=uv+ -4|0;o[sv+44>>2]=Ds;tv=(uv+yv|0)+ -4|0;tv=p[tv+2|0]<<16|p[tv+3|0]<<24&1056964608|p[tv+1|0]<<8|p[tv|0];break b}o[sv+44>>2]=Ds;tv=p[tv|0]&63}wv=tv+4194304|0;o[vv+48>>2]=wv;Bv=wv>>>0<1073741824;if(!Ye|wv>>>0>1073741823){break a}zv=o[sv+28>>2];xv=0;Av=o[sv+16>>2];while(1){g:{if(wv>>>0>4194303){break g}while(1){if((Ds|0)<1){break g}Ds=Ds+ -1|0;o[sv+44>>2]=Ds;wv=p[Ds+yv|0]|wv<<8;o[sv+48>>2]=wv;if(wv>>>0<4194304){continue}break}}uv=wv&1048575;tv=o[(uv<<2)+Av>>2];vv=(tv<<3)+zv|0;wv=(u(o[vv>>2],wv>>>20)+uv|0)-o[vv+4>>2]|0;o[sv+48>>2]=wv;o[(xv<<2)+du>>2]=tv;Bv=1;xv=xv+1|0;if((xv|0)!=(Ye|0)){continue}break}}Ye=o[sv+28>>2];if(Ye){o[sv+32>>2]=Ye;ul(Ye)}Ye=o[sv+16>>2];if(Ye){o[sv+20>>2]=Ye;ul(Ye)}Ye=o[sv>>2];if(Ye){o[sv+4>>2]=Ye;ul(Ye)}R=sv- -64|0;return Bv}function lg(Ye,Ds,du){var Cv=0,Dv=0,Ev=0,Fv=0;a:{if(Ye>>>0>5){break a}Ev=o[du+16>>2];Cv=o[du+12>>2];Dv=o[du+20>>2];if((Cv|0)<(Dv|0)?1:(Cv|0)<=(Dv|0)?r[du+8>>2]>Ev>>>0?0:1:0){break a}Cv=p[Ev+o[du>>2]|0];Ev=Ev+1|0;if(Ev>>>0<1){Dv=Dv+1|0}o[du+16>>2]=Ev;o[du+20>>2]=Dv;Dv=Ds;if(Cv&128){if(!lg(Ye+1|0,Ds,du)){break a}Ye=o[Ds>>2]<<7;o[Ds>>2]=Ye;Cv=Ye|Cv&127}o[Dv>>2]=Cv;Fv=1}return Fv}function mg(Ye,Ds){var du=0,Gv=0,Hv=0,Iv=0,Jv=0,Kv=0,Lv=0;a:{b:{Hv=o[Ye+8>>2];du=Ye+4|0;Gv=o[du>>2];c:{if(Hv-Gv>>3>>>0>=Ds>>>0){while(1){o[Gv>>2]=0;o[Gv+4>>2]=0;Gv=o[du>>2]+8|0;o[du>>2]=Gv;Ds=Ds+ -1|0;if(Ds){continue}break c}}Iv=o[Ye>>2];Jv=Gv-Iv|0;du=Jv>>3;Gv=du+Ds|0;if(Gv>>>0>=536870912){break b}Lv=du<<3;Hv=Hv-Iv|0;du=Hv>>2;Hv=Hv>>3>>>0<268435455?du>>>0<Gv>>>0?Gv:du:536870911;du=0;d:{if(!Hv){break d}if(Hv>>>0>=536870912){break a}Kv=Hk(Hv<<3);du=Kv}Gv=Lv+du|0;xl(Gv,0,Ds<<3);Hv=du+(Hv<<3)|0;while(1){Gv=Gv+8|0;Ds=Ds+ -1|0;if(Ds){continue}break}if((Jv|0)>=1){wl(Kv,Iv,Jv)}o[Ye>>2]=du;o[Ye+8>>2]=Hv;o[Ye+4>>2]=Gv;if(!Iv){break c}ul(Iv)}return}Yk();D()}_a(7890);D()}function ng(Ye,Ds,Mv){var Nv=0,Ov=0,Pv=0,Qv=0,Rv=0,Sv=0;a:{if(Ye>>>0>10){break a}Pv=o[Mv+16>>2];Nv=o[Mv+12>>2];Ov=o[Mv+20>>2];Qv=Ov;if((Nv|0)<(Qv|0)?1:(Nv|0)<=(Qv|0)?r[Mv+8>>2]>Pv>>>0?0:1:0){break a}Rv=m[Pv+o[Mv>>2]|0];Nv=Pv+1|0;if(Nv>>>0<1){Ov=Ov+1|0}o[Mv+16>>2]=Nv;o[Mv+20>>2]=Ov;Qv=Ds;Pv=Ds;Nv=Rv;b:{if((Nv|0)<=-1){if(!ng(Ye+1|0,Ds,Mv)){break a}Ye=Ds;Mv=o[Ds+4>>2];Ds=o[Ds>>2];Ov=Mv<<7|Ds>>>25;Ds=Ds<<7;o[Ye>>2]=Ds;o[Ye+4>>2]=Ov;Ye=Nv&127|Ds;break b}Ov=0;Ye=Nv&255}o[Pv>>2]=Ye;o[Qv+4>>2]=Ov;Sv=1}return Sv}function og(Ye,Ds){var Mv=0,Tv=0,Uv=0,Vv=0,Wv=0,Xv=0,Yv=0,Zv=0,_v=0,$v=0,aw=0,bw=0,cw=0;a:{if(!q[Ds+38>>1]){break a}$v=Ye+12|0;if(!lg(1,$v,Ds)){break a}Vv=o[Ye+12>>2];Mv=o[Ye>>2];Tv=o[Ye+4>>2]-Mv>>2;b:{if(Vv>>>0>Tv>>>0){Da(Ye,Vv-Tv|0);Vv=o[Ye+12>>2];break b}if(Vv>>>0>=Tv>>>0){break b}o[Ye+4>>2]=Mv+(Vv<<2)}if(!Vv){cw=1;break a}aw=o[Ds+8>>2];Yv=o[Ds+12>>2];while(1){Uv=o[Ds+16>>2];Tv=o[Ds+20>>2];Mv=Tv;if((Yv|0)<(Mv|0)?1:(Yv|0)<=(Mv|0)?aw>>>0>Uv>>>0?0:1:0){break a}bw=o[Ds>>2];Zv=p[bw+Uv|0];Uv=Uv+1|0;if(Uv>>>0<1){Tv=Tv+1|0}Mv=Ds;Xv=Uv;o[Mv+16>>2]=Uv;o[Mv+20>>2]=Tv;Uv=Zv>>>2;c:{d:{e:{_v=Zv&3;if(_v>>>0>3){Mv=0;break e}Mv=0;f:{switch(_v-1|0){case 2:break f;case 0:case 1:break e;default:break d}}Tv=Uv+Wv|0;if(Tv>>>0>=Vv>>>0){return 0}xl(o[Ye>>2]+(Wv<<2)|0,0,(Zv&252)+4|0);Wv=Tv;break c}while(1){if((Yv|0)<(Tv|0)?1:(Yv|0)<=(Tv|0)?aw>>>0>Xv>>>0?0:1:0){return 0}Zv=p[Xv+bw|0];Xv=Xv+1|0;if(Xv>>>0<1){Tv=Tv+1|0}Vv=Ds;o[Vv+16>>2]=Xv;o[Vv+20>>2]=Tv;Uv=Zv<<(Mv<<3|6)|Uv;Mv=Mv+1|0;if((_v|0)!=(Mv|0)){continue}break}}o[o[Ye>>2]+(Wv<<2)>>2]=Uv}Wv=Wv+1|0;Vv=o[$v>>2];if(Wv>>>0<Vv>>>0){continue}break}Tv=Ye+16|0;Yv=o[Ye>>2];Ds=o[Ye+16>>2];Mv=o[Ye+20>>2]-Ds|0;Wv=Mv>>2;g:{if(Wv>>>0<=8191){Da(Tv,8192-Wv|0);break g}if((Mv|0)==32768){break g}o[Ye+20>>2]=Ds+32768}h:{Mv=Ye+28|0;Ds=o[Mv>>2];Wv=o[Ye+32>>2]-Ds>>3;if(Vv>>>0>Wv>>>0){mg(Mv,Vv-Wv|0);Ds=o[Mv>>2];break h}if(Vv>>>0<Wv>>>0){o[Ye+32>>2]=(Vv<<3)+Ds}if(Vv){break h}return 0}Uv=0;Mv=0;while(1){Ye=Yv+(Uv<<2)|0;Wv=o[Ye>>2];Xv=(Uv<<3)+Ds|0;o[Xv+4>>2]=Mv;o[Xv>>2]=Wv;Ye=o[Ye>>2]+Mv|0;if(Ye>>>0>8192){break a}if(Mv>>>0<Ye>>>0){Wv=o[Tv>>2];while(1){o[Wv+(Mv<<2)>>2]=Uv;Mv=Mv+1|0;if((Ye|0)!=(Mv|0)){continue}break}}Mv=Ye;Uv=Uv+1|0;if((Vv|0)!=(Uv|0)){continue}break}return(Ye|0)==8192}return cw}function pg(Ye,Ds){var dw=0,ew=0,fw=0,gw=0,hw=0,iw=0,jw=0,kw=0,lw=0,mw=0,nw=0,ow=0,pw=0;a:{if(!q[Ds+38>>1]){break a}mw=Ye+12|0;if(!lg(1,mw,Ds)){break a}gw=o[Ye+12>>2];dw=o[Ye>>2];ew=o[Ye+4>>2]-dw>>2;b:{if(gw>>>0>ew>>>0){Da(Ye,gw-ew|0);gw=o[Ye+12>>2];break b}if(gw>>>0>=ew>>>0){break b}o[Ye+4>>2]=dw+(gw<<2)}if(!gw){pw=1;break a}nw=o[Ds+8>>2];jw=o[Ds+12>>2];while(1){fw=o[Ds+16>>2];ew=o[Ds+20>>2];dw=ew;if((jw|0)<(dw|0)?1:(jw|0)<=(dw|0)?nw>>>0>fw>>>0?0:1:0){break a}ow=o[Ds>>2];kw=p[ow+fw|0];fw=fw+1|0;if(fw>>>0<1){ew=ew+1|0}dw=Ds;iw=fw;o[dw+16>>2]=fw;o[dw+20>>2]=ew;fw=kw>>>2;c:{d:{e:{lw=kw&3;if(lw>>>0>3){dw=0;break e}dw=0;f:{switch(lw-1|0){case 2:break f;case 0:case 1:break e;default:break d}}ew=fw+hw|0;if(ew>>>0>=gw>>>0){return 0}xl(o[Ye>>2]+(hw<<2)|0,0,(kw&252)+4|0);hw=ew;break c}while(1){if((jw|0)<(ew|0)?1:(jw|0)<=(ew|0)?nw>>>0>iw>>>0?0:1:0){return 0}kw=p[iw+ow|0];iw=iw+1|0;if(iw>>>0<1){ew=ew+1|0}gw=Ds;o[gw+16>>2]=iw;o[gw+20>>2]=ew;fw=kw<<(dw<<3|6)|fw;dw=dw+1|0;if((lw|0)!=(dw|0)){continue}break}}o[o[Ye>>2]+(hw<<2)>>2]=fw}hw=hw+1|0;gw=o[mw>>2];if(hw>>>0<gw>>>0){continue}break}ew=Ye+16|0;jw=o[Ye>>2];Ds=o[Ye+16>>2];dw=o[Ye+20>>2]-Ds|0;hw=dw>>2;g:{if(hw>>>0<=32767){Da(ew,32768-hw|0);break g}if((dw|0)==131072){break g}o[Ye+20>>2]=Ds+131072}h:{dw=Ye+28|0;Ds=o[dw>>2];hw=o[Ye+32>>2]-Ds>>3;if(gw>>>0>hw>>>0){mg(dw,gw-hw|0);Ds=o[dw>>2];break h}if(gw>>>0<hw>>>0){o[Ye+32>>2]=(gw<<3)+Ds}if(gw){break h}return 0}fw=0;dw=0;while(1){Ye=jw+(fw<<2)|0;hw=o[Ye>>2];iw=(fw<<3)+Ds|0;o[iw+4>>2]=dw;o[iw>>2]=hw;Ye=o[Ye>>2]+dw|0;if(Ye>>>0>32768){break a}if(dw>>>0<Ye>>>0){hw=o[ew>>2];while(1){o[hw+(dw<<2)>>2]=fw;dw=dw+1|0;if((Ye|0)!=(dw|0)){continue}break}}dw=Ye;fw=fw+1|0;if((gw|0)!=(fw|0)){continue}break}return(Ye|0)==32768}return pw}function qg(Ye,Ds){var qw=0,rw=0,sw=0,tw=0,uw=0,vw=0,ww=0,xw=0,yw=0,zw=0,Aw=0,Bw=0,Cw=0;a:{if(!q[Ds+38>>1]){break a}zw=Ye+12|0;if(!lg(1,zw,Ds)){break a}tw=o[Ye+12>>2];qw=o[Ye>>2];rw=o[Ye+4>>2]-qw>>2;b:{if(tw>>>0>rw>>>0){Da(Ye,tw-rw|0);tw=o[Ye+12>>2];break b}if(tw>>>0>=rw>>>0){break b}o[Ye+4>>2]=qw+(tw<<2)}if(!tw){Cw=1;break a}Aw=o[Ds+8>>2];ww=o[Ds+12>>2];while(1){sw=o[Ds+16>>2];rw=o[Ds+20>>2];qw=rw;if((ww|0)<(qw|0)?1:(ww|0)<=(qw|0)?Aw>>>0>sw>>>0?0:1:0){break a}Bw=o[Ds>>2];xw=p[Bw+sw|0];sw=sw+1|0;if(sw>>>0<1){rw=rw+1|0}qw=Ds;vw=sw;o[qw+16>>2]=sw;o[qw+20>>2]=rw;sw=xw>>>2;c:{d:{e:{yw=xw&3;if(yw>>>0>3){qw=0;break e}qw=0;f:{switch(yw-1|0){case 2:break f;case 0:case 1:break e;default:break d}}rw=sw+uw|0;if(rw>>>0>=tw>>>0){return 0}xl(o[Ye>>2]+(uw<<2)|0,0,(xw&252)+4|0);uw=rw;break c}while(1){if((ww|0)<(rw|0)?1:(ww|0)<=(rw|0)?Aw>>>0>vw>>>0?0:1:0){return 0}xw=p[vw+Bw|0];vw=vw+1|0;if(vw>>>0<1){rw=rw+1|0}tw=Ds;o[tw+16>>2]=vw;o[tw+20>>2]=rw;sw=xw<<(qw<<3|6)|sw;qw=qw+1|0;if((yw|0)!=(qw|0)){continue}break}}o[o[Ye>>2]+(uw<<2)>>2]=sw}uw=uw+1|0;tw=o[zw>>2];if(uw>>>0<tw>>>0){continue}break}rw=Ye+16|0;ww=o[Ye>>2];Ds=o[Ye+16>>2];qw=o[Ye+20>>2]-Ds|0;uw=qw>>2;g:{if(uw>>>0<=65535){Da(rw,65536-uw|0);break g}if((qw|0)==262144){break g}o[Ye+20>>2]=Ds+262144}h:{qw=Ye+28|0;Ds=o[qw>>2];uw=o[Ye+32>>2]-Ds>>3;if(tw>>>0>uw>>>0){mg(qw,tw-uw|0);Ds=o[qw>>2];break h}if(tw>>>0<uw>>>0){o[Ye+32>>2]=(tw<<3)+Ds}if(tw){break h}return 0}sw=0;qw=0;while(1){Ye=ww+(sw<<2)|0;uw=o[Ye>>2];vw=(sw<<3)+Ds|0;o[vw+4>>2]=qw;o[vw>>2]=uw;Ye=o[Ye>>2]+qw|0;if(Ye>>>0>65536){break a}if(qw>>>0<Ye>>>0){uw=o[rw>>2];while(1){o[uw+(qw<<2)>>2]=sw;qw=qw+1|0;if((Ye|0)!=(qw|0)){continue}break}}qw=Ye;sw=sw+1|0;if((tw|0)!=(sw|0)){continue}break}return(Ye|0)==65536}return Cw}function rg(Ye,Ds){var Dw=0,Ew=0,Fw=0,Gw=0,Hw=0,Iw=0,Jw=0,Kw=0,Lw=0,Mw=0,Nw=0,Ow=0,Pw=0;a:{if(!q[Ds+38>>1]){break a}Mw=Ye+12|0;if(!lg(1,Mw,Ds)){break a}Gw=o[Ye+12>>2];Dw=o[Ye>>2];Ew=o[Ye+4>>2]-Dw>>2;b:{if(Gw>>>0>Ew>>>0){Da(Ye,Gw-Ew|0);Gw=o[Ye+12>>2];break b}if(Gw>>>0>=Ew>>>0){break b}o[Ye+4>>2]=Dw+(Gw<<2)}if(!Gw){Pw=1;break a}Nw=o[Ds+8>>2];Jw=o[Ds+12>>2];while(1){Fw=o[Ds+16>>2];Ew=o[Ds+20>>2];Dw=Ew;if((Jw|0)<(Dw|0)?1:(Jw|0)<=(Dw|0)?Nw>>>0>Fw>>>0?0:1:0){break a}Ow=o[Ds>>2];Kw=p[Ow+Fw|0];Fw=Fw+1|0;if(Fw>>>0<1){Ew=Ew+1|0}Dw=Ds;Iw=Fw;o[Dw+16>>2]=Fw;o[Dw+20>>2]=Ew;Fw=Kw>>>2;c:{d:{e:{Lw=Kw&3;if(Lw>>>0>3){Dw=0;break e}Dw=0;f:{switch(Lw-1|0){case 2:break f;case 0:case 1:break e;default:break d}}Ew=Fw+Hw|0;if(Ew>>>0>=Gw>>>0){return 0}xl(o[Ye>>2]+(Hw<<2)|0,0,(Kw&252)+4|0);Hw=Ew;break c}while(1){if((Jw|0)<(Ew|0)?1:(Jw|0)<=(Ew|0)?Nw>>>0>Iw>>>0?0:1:0){return 0}Kw=p[Iw+Ow|0];Iw=Iw+1|0;if(Iw>>>0<1){Ew=Ew+1|0}Gw=Ds;o[Gw+16>>2]=Iw;o[Gw+20>>2]=Ew;Fw=Kw<<(Dw<<3|6)|Fw;Dw=Dw+1|0;if((Lw|0)!=(Dw|0)){continue}break}}o[o[Ye>>2]+(Hw<<2)>>2]=Fw}Hw=Hw+1|0;Gw=o[Mw>>2];if(Hw>>>0<Gw>>>0){continue}break}Ew=Ye+16|0;Jw=o[Ye>>2];Ds=o[Ye+16>>2];Dw=o[Ye+20>>2]-Ds|0;Hw=Dw>>2;g:{if(Hw>>>0<=262143){Da(Ew,262144-Hw|0);break g}if((Dw|0)==1048576){break g}o[Ye+20>>2]=Ds- -1048576}h:{Dw=Ye+28|0;Ds=o[Dw>>2];Hw=o[Ye+32>>2]-Ds>>3;if(Gw>>>0>Hw>>>0){mg(Dw,Gw-Hw|0);Ds=o[Dw>>2];break h}if(Gw>>>0<Hw>>>0){o[Ye+32>>2]=(Gw<<3)+Ds}if(Gw){break h}return 0}Fw=0;Dw=0;while(1){Ye=Jw+(Fw<<2)|0;Hw=o[Ye>>2];Iw=(Fw<<3)+Ds|0;o[Iw+4>>2]=Dw;o[Iw>>2]=Hw;Ye=o[Ye>>2]+Dw|0;if(Ye>>>0>262144){break a}if(Dw>>>0<Ye>>>0){Hw=o[Ew>>2];while(1){o[Hw+(Dw<<2)>>2]=Fw;Dw=Dw+1|0;if((Ye|0)!=(Dw|0)){continue}break}}Dw=Ye;Fw=Fw+1|0;if((Gw|0)!=(Fw|0)){continue}break}return(Ye|0)==262144}return Pw}function sg(Ye,Ds){var Qw=0,Rw=0,Sw=0,Tw=0,Uw=0,Vw=0,Ww=0,Xw=0,Yw=0,Zw=0,_w=0,$w=0,ax=0;a:{if(!q[Ds+38>>1]){break a}Zw=Ye+12|0;if(!lg(1,Zw,Ds)){break a}Tw=o[Ye+12>>2];Qw=o[Ye>>2];Rw=o[Ye+4>>2]-Qw>>2;b:{if(Tw>>>0>Rw>>>0){Da(Ye,Tw-Rw|0);Tw=o[Ye+12>>2];break b}if(Tw>>>0>=Rw>>>0){break b}o[Ye+4>>2]=Qw+(Tw<<2)}if(!Tw){ax=1;break a}_w=o[Ds+8>>2];Ww=o[Ds+12>>2];while(1){Sw=o[Ds+16>>2];Rw=o[Ds+20>>2];Qw=Rw;if((Ww|0)<(Qw|0)?1:(Ww|0)<=(Qw|0)?_w>>>0>Sw>>>0?0:1:0){break a}$w=o[Ds>>2];Xw=p[$w+Sw|0];Sw=Sw+1|0;if(Sw>>>0<1){Rw=Rw+1|0}Qw=Ds;Vw=Sw;o[Qw+16>>2]=Sw;o[Qw+20>>2]=Rw;Sw=Xw>>>2;c:{d:{e:{Yw=Xw&3;if(Yw>>>0>3){Qw=0;break e}Qw=0;f:{switch(Yw-1|0){case 2:break f;case 0:case 1:break e;default:break d}}Rw=Sw+Uw|0;if(Rw>>>0>=Tw>>>0){return 0}xl(o[Ye>>2]+(Uw<<2)|0,0,(Xw&252)+4|0);Uw=Rw;break c}while(1){if((Ww|0)<(Rw|0)?1:(Ww|0)<=(Rw|0)?_w>>>0>Vw>>>0?0:1:0){return 0}Xw=p[Vw+$w|0];Vw=Vw+1|0;if(Vw>>>0<1){Rw=Rw+1|0}Tw=Ds;o[Tw+16>>2]=Vw;o[Tw+20>>2]=Rw;Sw=Xw<<(Qw<<3|6)|Sw;Qw=Qw+1|0;if((Yw|0)!=(Qw|0)){continue}break}}o[o[Ye>>2]+(Uw<<2)>>2]=Sw}Uw=Uw+1|0;Tw=o[Zw>>2];if(Uw>>>0<Tw>>>0){continue}break}Rw=Ye+16|0;Ww=o[Ye>>2];Ds=o[Ye+16>>2];Qw=o[Ye+20>>2]-Ds|0;Uw=Qw>>2;g:{if(Uw>>>0<=524287){Da(Rw,524288-Uw|0);break g}if((Qw|0)==2097152){break g}o[Ye+20>>2]=Ds+2097152}h:{Qw=Ye+28|0;Ds=o[Qw>>2];Uw=o[Ye+32>>2]-Ds>>3;if(Tw>>>0>Uw>>>0){mg(Qw,Tw-Uw|0);Ds=o[Qw>>2];break h}if(Tw>>>0<Uw>>>0){o[Ye+32>>2]=(Tw<<3)+Ds}if(Tw){break h}return 0}Sw=0;Qw=0;while(1){Ye=Ww+(Sw<<2)|0;Uw=o[Ye>>2];Vw=(Sw<<3)+Ds|0;o[Vw+4>>2]=Qw;o[Vw>>2]=Uw;Ye=o[Ye>>2]+Qw|0;if(Ye>>>0>524288){break a}if(Qw>>>0<Ye>>>0){Uw=o[Rw>>2];while(1){o[Uw+(Qw<<2)>>2]=Sw;Qw=Qw+1|0;if((Ye|0)!=(Qw|0)){continue}break}}Qw=Ye;Sw=Sw+1|0;if((Tw|0)!=(Sw|0)){continue}break}return(Ye|0)==524288}return ax}function tg(Ye,Ds){var bx=0,cx=0,dx=0,ex=0,fx=0,gx=0,hx=0,ix=0,jx=0,kx=0,lx=0,mx=0,nx=0;a:{if(!q[Ds+38>>1]){break a}kx=Ye+12|0;if(!lg(1,kx,Ds)){break a}ex=o[Ye+12>>2];bx=o[Ye>>2];cx=o[Ye+4>>2]-bx>>2;b:{if(ex>>>0>cx>>>0){Da(Ye,ex-cx|0);ex=o[Ye+12>>2];break b}if(ex>>>0>=cx>>>0){break b}o[Ye+4>>2]=bx+(ex<<2)}if(!ex){nx=1;break a}lx=o[Ds+8>>2];hx=o[Ds+12>>2];while(1){dx=o[Ds+16>>2];cx=o[Ds+20>>2];bx=cx;if((hx|0)<(bx|0)?1:(hx|0)<=(bx|0)?lx>>>0>dx>>>0?0:1:0){break a}mx=o[Ds>>2];ix=p[mx+dx|0];dx=dx+1|0;if(dx>>>0<1){cx=cx+1|0}bx=Ds;gx=dx;o[bx+16>>2]=dx;o[bx+20>>2]=cx;dx=ix>>>2;c:{d:{e:{jx=ix&3;if(jx>>>0>3){bx=0;break e}bx=0;f:{switch(jx-1|0){case 2:break f;case 0:case 1:break e;default:break d}}cx=dx+fx|0;if(cx>>>0>=ex>>>0){return 0}xl(o[Ye>>2]+(fx<<2)|0,0,(ix&252)+4|0);fx=cx;break c}while(1){if((hx|0)<(cx|0)?1:(hx|0)<=(cx|0)?lx>>>0>gx>>>0?0:1:0){return 0}ix=p[gx+mx|0];gx=gx+1|0;if(gx>>>0<1){cx=cx+1|0}ex=Ds;o[ex+16>>2]=gx;o[ex+20>>2]=cx;dx=ix<<(bx<<3|6)|dx;bx=bx+1|0;if((jx|0)!=(bx|0)){continue}break}}o[o[Ye>>2]+(fx<<2)>>2]=dx}fx=fx+1|0;ex=o[kx>>2];if(fx>>>0<ex>>>0){continue}break}cx=Ye+16|0;hx=o[Ye>>2];Ds=o[Ye+16>>2];bx=o[Ye+20>>2]-Ds|0;fx=bx>>2;g:{if(fx>>>0<=1048575){Da(cx,1048576-fx|0);break g}if((bx|0)==4194304){break g}o[Ye+20>>2]=Ds+4194304}h:{bx=Ye+28|0;Ds=o[bx>>2];fx=o[Ye+32>>2]-Ds>>3;if(ex>>>0>fx>>>0){mg(bx,ex-fx|0);Ds=o[bx>>2];break h}if(ex>>>0<fx>>>0){o[Ye+32>>2]=(ex<<3)+Ds}if(ex){break h}return 0}dx=0;bx=0;while(1){Ye=hx+(dx<<2)|0;fx=o[Ye>>2];gx=(dx<<3)+Ds|0;o[gx+4>>2]=bx;o[gx>>2]=fx;Ye=o[Ye>>2]+bx|0;if(Ye>>>0>1048576){break a}if(bx>>>0<Ye>>>0){fx=o[cx>>2];while(1){o[fx+(bx<<2)>>2]=dx;bx=bx+1|0;if((Ye|0)!=(bx|0)){continue}break}}bx=Ye;dx=dx+1|0;if((ex|0)!=(dx|0)){continue}break}return(Ye|0)==1048576}return nx}function ug(Ye){bi(Ye);o[Ye+44>>2]=0;o[Ye>>2]=7968}function vg(Ye){Ye=Ye|0;if(o[Ye+44>>2]){return l[o[o[Ye>>2]+48>>2]](Ye)|0}return 0}function wg(Ye){Ye=Ye|0;var Ds=0,ox=0,px=0,qx=0,rx=0;o[Ye>>2]=10052;Ds=o[Ye+20>>2];if(Ds){o[Ye+24>>2]=Ds;ul(Ds)}px=o[Ye+8>>2];if(px){Ds=px;rx=Ye+12|0;ox=o[rx>>2];qx=Ds;a:{if((Ds|0)==(ox|0)){break a}while(1){ox=ox+ -4|0;Ds=o[ox>>2];o[ox>>2]=0;if(Ds){l[o[o[Ds>>2]+4>>2]](Ds)}if((ox|0)!=(px|0)){continue}break}qx=o[Ye+8>>2]}Ds=qx;o[rx>>2]=px;ul(Ds)}return Ye|0}function xg(Ye,sx){Ye=Ye|0;sx=sx|0;Ye=o[Ye+48>>2];return l[o[o[Ye>>2]+20>>2]](Ye,sx)|0}function yg(Ye){Ye=Ye|0;var sx=0,tx=0,ux=0,vx=0;sx=o[Ye+32>>2];ux=o[sx+16>>2];vx=o[sx+12>>2];tx=o[sx+20>>2];if((vx|0)>(tx|0)?1:(vx|0)>=(tx|0)?r[sx+8>>2]<=ux>>>0?0:1:0){vx=p[ux+o[sx>>2]|0];ux=ux+1|0;if(ux>>>0<1){tx=tx+1|0}o[sx+16>>2]=ux;o[sx+20>>2]=tx;sx=o[Ye+48>>2];o[Ye+48>>2]=0;if(sx){l[o[o[sx>>2]+4>>2]](sx)}a:{b:{if(vx>>>0>2){break b}c:{switch(vx-1|0){default:tx=Hk(384);Gg(tx);sx=o[Ye+48>>2];o[Ye+48>>2]=tx;if(!sx){break a}l[o[o[sx>>2]+4>>2]](sx);break b;case 0:break b;case 1:break c}}tx=Hk(440);fh(tx);sx=o[Ye+48>>2];o[Ye+48>>2]=tx;if(!sx){break a}l[o[o[sx>>2]+4>>2]](sx)}tx=o[Ye+48>>2];if(tx){break a}return 0}Ye=l[o[o[tx>>2]+8>>2]](tx,Ye)|0}else{Ye=0}return Ye|0}function zg(Ye){Ye=Ye|0;Ye=o[Ye+48>>2];return l[o[o[Ye>>2]+24>>2]](Ye)|0}function Ag(Ye){Ye=Ye|0;Ye=o[Ye+48>>2];return l[o[o[Ye>>2]+28>>2]](Ye)|0}function Bg(Ye){Ye=Ye|0;var wx=0,xx=0,yx=0,zx=0,Ax=0;o[Ye>>2]=8064;wx=Ye+48|0;xx=o[wx>>2];o[wx>>2]=0;if(xx){l[o[o[xx>>2]+4>>2]](xx)}o[Ye>>2]=10052;wx=o[Ye+20>>2];if(wx){o[Ye+24>>2]=wx;ul(wx)}xx=o[Ye+8>>2];if(xx){wx=xx;Ax=Ye+12|0;yx=o[Ax>>2];zx=wx;a:{if((wx|0)==(yx|0)){break a}while(1){yx=yx+ -4|0;wx=o[yx>>2];o[yx>>2]=0;if(wx){l[o[o[wx>>2]+4>>2]](wx)}if((xx|0)!=(yx|0)){continue}break}zx=o[Ye+8>>2]}wx=zx;o[Ax>>2]=xx;ul(wx)}return Ye|0}\n\n\n\nfunction Cg(a){a=a|0;var b=0,c=0,d=0,e=0,f=0;o[a>>2]=8064;b=a+48|0;c=o[b>>2];o[b>>2]=0;if(c){l[o[o[c>>2]+4>>2]](c)}o[a>>2]=10052;b=o[a+20>>2];if(b){o[a+24>>2]=b;ul(b)}c=o[a+8>>2];if(c){b=c;f=a+12|0;d=o[f>>2];e=b;a:{if((b|0)==(d|0)){break a}while(1){d=d+ -4|0;b=o[d>>2];o[d>>2]=0;if(b){l[o[o[b>>2]+4>>2]](b)}if((c|0)!=(d|0)){continue}break}e=o[a+8>>2]}b=e;o[f>>2]=c;ul(b)}ul(a)}function Dg(a){a=a|0;a=o[a+48>>2];return l[o[o[a>>2]+36>>2]](a)|0}function Eg(a,g){a=a|0;g=g|0;a=o[a+48>>2];return l[o[o[a>>2]+12>>2]](a,g)|0}function Fg(a,g){a=a|0;g=g|0;a=o[a+48>>2];return l[o[o[a>>2]+16>>2]](a,g)|0}function Gg(a){o[a>>2]=8172;xl(a+4|0,0,80);o[a+96>>2]=0;o[a+100>>2]=0;o[a+92>>2]=-1;o[a+84>>2]=-1;o[a+88>>2]=-1;o[a+104>>2]=0;o[a+108>>2]=0;o[a+112>>2]=0;o[a+116>>2]=0;o[a+120>>2]=0;o[a+124>>2]=0;o[a+128>>2]=0;o[a+132>>2]=0;o[a+136>>2]=0;o[a+140>>2]=0;o[a+144>>2]=0;o[a+148>>2]=0;o[a+156>>2]=0;o[a+160>>2]=0;o[a+152>>2]=1065353216;o[a+164>>2]=0;o[a+168>>2]=0;o[a+172>>2]=0;o[a+176>>2]=0;o[a+180>>2]=0;o[a+184>>2]=0;o[a+188>>2]=0;o[a+192>>2]=0;o[a+196>>2]=0;o[a+200>>2]=0;o[a+204>>2]=0;o[a+208>>2]=0;o[a+212>>2]=-1;o[a+216>>2]=0;o[a+220>>2]=0;o[a+224>>2]=0;Hg(a+232|0)}function Hg(a){oi(a);oi(a+40|0);Mf(a+80|0);oi(a+96|0);o[a+144>>2]=0;o[a+136>>2]=0;o[a+140>>2]=0}function Ig(a,g){a=a|0;g=g|0;o[a+4>>2]=g;return 1}function Jg(a,g){a=a|0;g=g|0;var h=0,i=0,j=0,k=0,m=0;h=o[a+216>>2];k=a+220|0;if((h|0)!=o[k>>2]){while(1){a:{h=o[u(j,144)+h>>2];if((h|0)<0){break a}m=o[a+4>>2];i=o[m+8>>2];if((h|0)>=o[m+12>>2]-i>>2){break a}h=o[i+(h<<2)>>2];if((l[o[o[h>>2]+24>>2]](h)|0)<1){break a}i=0;while(1){if((l[o[o[h>>2]+20>>2]](h,i)|0)!=(g|0)){i=i+1|0;if((i|0)<(l[o[o[h>>2]+24>>2]](h)|0)){continue}break a}break}a=o[a+216>>2]+u(j,144)|0;return(p[a+100|0]?a+4|0:0)|0}j=j+1|0;h=o[a+216>>2];if(j>>>0<(o[k>>2]-h|0)/144>>>0){continue}break}}return 0}function Kg(a,g){a=a|0;g=g|0;var n=0,p=0,q=0,r=0,s=0;n=o[a+216>>2];r=a+220|0;if((n|0)!=o[r>>2]){while(1){a:{n=o[u(q,144)+n>>2];if((n|0)<0){break a}s=o[a+4>>2];p=o[s+8>>2];if((n|0)>=o[s+12>>2]-p>>2){break a}n=o[p+(n<<2)>>2];if((l[o[o[n>>2]+24>>2]](n)|0)<1){break a}p=0;while(1){if((l[o[o[n>>2]+20>>2]](n,p)|0)!=(g|0)){p=p+1|0;if((p|0)<(l[o[o[n>>2]+24>>2]](n)|0)){continue}break a}break}return(o[a+216>>2]+u(q,144)|0)+104|0}q=q+1|0;n=o[a+216>>2];if(q>>>0<(o[r>>2]-n|0)/144>>>0){continue}break}}return a+184|0}function Lg(a,g){a=a|0;g=g|0;var t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,E=0,F=0,G=0,H=0,I=0,J=0;x=R-80|0;R=x;a:{b:{H=o[a+4>>2];t=o[H+32>>2];C=o[t+8>>2];B=o[t+16>>2];F=o[t+12>>2];v=F;z=o[t+20>>2];y=z;c:{if((v|0)<(y|0)?1:(v|0)<=(y|0)?C>>>0>B>>>0?0:1:0){break c}I=o[t>>2];E=p[I+B|0];v=z;A=B+1|0;if(A>>>0<1){v=v+1|0}y=t;o[t+16>>2]=A;o[t+20>>2]=v;if((F|0)<(v|0)?1:(F|0)<=(v|0)?C>>>0>A>>>0?0:1:0){break c}J=p[A+I|0];v=z;A=B+2|0;if(A>>>0<2){v=v+1|0}o[t+16>>2]=A;o[y+20>>2]=v;G=E<<24>>24;d:{if((G|0)>=0){y=o[a+216>>2];if((o[a+220>>2]-y|0)/144>>>0<=E>>>0){break c}y=y+u(E,144)|0;if(o[y>>2]<=-1){break d}break c}if(o[a+212>>2]>-1){break c}y=a+212|0}o[y>>2]=g;y=0;w=q[H+36>>1];if((w<<24|w<<8&16711680)>>>16>>>0>=258){w=0;if((F|0)<(v|0)?1:(F|0)<=(v|0)?C>>>0>A>>>0?0:1:0){break c}y=p[A+I|0];v=B+3|0;if(v>>>0<3){z=z+1|0}o[t+16>>2]=v;o[t+20>>2]=z}e:{f:{g:{if(!J){if((G|0)<=-1){t=a+184|0}else{t=o[a+216>>2]+u(E,144)|0;m[t+100|0]=0;t=t+104|0}w=0;if(y>>>0>1){break c}if(!(y-1)){break g}Mg(x+16|0,a,t);break f}w=0;if(y|(G|0)<0){break c}z=o[H+44>>2];w=o[a+216>>2];t=Hk(80);o[t>>2]=9636;o[t+76>>2]=0;o[t+68>>2]=z;v=t+12|0;o[v>>2]=0;o[v+4>>2]=0;o[t+4>>2]=0;y=t+20|0;o[y>>2]=0;o[y+4>>2]=0;F=t+28|0;B=F;o[B>>2]=0;o[B+4>>2]=0;o[t+36>>2]=0;o[t+40>>2]=0;B=t+44|0;o[B>>2]=0;o[B+4>>2]=0;o[t+52>>2]=0;w=w+u(E,144)|0;E=w+104|0;o[t+72>>2]=E;o[t- -64>>2]=0;H=t+56|0;C=H;o[C>>2]=0;o[C+4>>2]=0;o[t+8>>2]=8512;C=x+56|0;o[C>>2]=0;o[C+4>>2]=0;o[x+48>>2]=0;o[x+52>>2]=0;I=x+32|0;A=I;o[A>>2]=0;o[A+4>>2]=0;o[x+72>>2]=0;o[x+40>>2]=0;o[x+44>>2]=0;o[x+24>>2]=0;o[x+28>>2]=0;o[x+64>>2]=0;o[x+68>>2]=0;o[x+16>>2]=8512;A=w+4|0;o[x+20>>2]=A;w=o[w+68>>2];G=o[w>>2];w=o[w+4>>2];m[x+79|0]=0;$a(x+40|0,(w-G>>2>>>0)/3|0,x+79|0);w=o[x+20>>2];G=o[w+56>>2];w=o[w+52>>2];m[x+79|0]=0;$a(x+52|0,G-w>>2,x+79|0);o[x+36>>2]=t;o[I>>2]=z;z=x+28|0;o[z>>2]=E;o[x+24>>2]=A;o[F>>2]=t;w=o[z+4>>2];o[y>>2]=o[z>>2];o[y+4>>2]=w;z=o[x+24>>2];o[v>>2]=o[x+20>>2];o[v+4>>2]=z;z=t;w=o[x+44>>2];if(w){v=t+32|0;h:{if(w>>>0<=o[t+40>>2]<<5>>>0){y=w+ -1>>>5;w=o[v>>2];break h}v=o[v>>2];if(v){ul(v);o[t+40>>2]=0;o[t+32>>2]=0;o[t+36>>2]=0;w=o[x+44>>2]}if((w|0)<=-1){break b}y=w+ -1>>>5;v=y+1|0;w=Hk(v<<2);o[t+40>>2]=v;o[t+36>>2]=0;o[t+32>>2]=w}yl(w,o[x+40>>2],(y<<2)+4|0);v=o[x+44>>2]}else{v=0}o[z+36>>2]=v;z=t;w=o[C>>2];if(w){i:{if(w>>>0<=o[t+52>>2]<<5>>>0){v=w+ -1>>>5;w=o[B>>2];break i}v=o[B>>2];if(v){ul(v);o[t+52>>2]=0;o[t+44>>2]=0;o[t+48>>2]=0;w=o[x+56>>2]}if((w|0)<=-1){break a}v=w+ -1>>>5;y=v+1|0;w=Hk(y<<2);o[t+52>>2]=y;o[t+48>>2]=0;o[t+44>>2]=w}yl(w,o[x+52>>2],(v<<2)+4|0);v=o[x+56>>2]}else{v=0}o[z+48>>2]=v;td(H,o[x+64>>2],o[x+68>>2]);o[x+16>>2]=8512;z=o[x+64>>2];if(z){o[x+68>>2]=z;ul(z)}o[x+16>>2]=8764;z=o[x+52>>2];if(z){ul(z)}z=o[x+40>>2];if(!z){break e}ul(z);break e}Ng(x+16|0,a,t)}t=o[x+16>>2];if(!t){break c}}z=Hk(64);o[x+8>>2]=t;Qd(z,x+8|0);t=o[x+8>>2];o[x+8>>2]=0;if(t){l[o[o[t>>2]+4>>2]](t)}if((g|0)>=0){a=o[a+4>>2];w=a+8|0;t=o[a+12>>2];E=o[a+8>>2];v=t-E>>2;j:{if((v|0)>(g|0)){break j}y=g+1|0;if(v>>>0<=g>>>0){Og(w,y-v|0);break j}if(y>>>0>=v>>>0){break j}y=E+(y<<2)|0;if((y|0)!=(t|0)){while(1){t=t+ -4|0;v=o[t>>2];o[t>>2]=0;if(v){l[o[o[v>>2]+4>>2]](v)}if((t|0)!=(y|0)){continue}break}}o[a+12>>2]=y}g=o[w>>2]+(g<<2)|0;a=o[g>>2];o[g>>2]=z;w=1;if(!a){break c}l[o[o[a>>2]+4>>2]](a);break c}l[o[o[z>>2]+4>>2]](z);w=0}R=x+80|0;return w|0}Yk();D()}Yk();D()}function Mg(a,g,l){var u=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,S=0,T=0,U=0,V=0;u=R+ -64|0;R=u;L=o[o[g+4>>2]+44>>2];K=Hk(80);o[K>>2]=9344;o[K+76>>2]=0;o[K+72>>2]=l;o[K+68>>2]=L;M=K+12|0;o[M>>2]=0;o[M+4>>2]=0;o[K+4>>2]=0;Q=K+20|0;N=Q;o[N>>2]=0;o[N+4>>2]=0;T=K+28|0;N=T;o[N>>2]=0;o[N+4>>2]=0;o[K+36>>2]=0;o[K+40>>2]=0;N=K+44|0;o[N>>2]=0;o[N+4>>2]=0;o[K+52>>2]=0;o[K- -64>>2]=0;U=K+56|0;P=U;o[P>>2]=0;o[P+4>>2]=0;o[K+8>>2]=9508;g=o[g+8>>2];P=u+40|0;o[P>>2]=0;o[P+4>>2]=0;o[u+32>>2]=0;o[u+36>>2]=0;V=u+16|0;O=V;o[O>>2]=0;o[O+4>>2]=0;o[u+56>>2]=0;o[u+24>>2]=0;o[u+28>>2]=0;o[u+8>>2]=0;o[u+12>>2]=0;o[u+48>>2]=0;o[u+52>>2]=0;o[u>>2]=9508;o[u+4>>2]=g;O=o[g>>2];S=o[g+4>>2];m[u+63|0]=0;$a(u+24|0,(S-O>>2>>>0)/3|0,u+63|0);O=o[u+4>>2];S=o[O+28>>2];O=o[O+24>>2];m[u+63|0]=0;$a(u+36|0,S-O>>2,u+63|0);o[u+20>>2]=K;o[V>>2]=L;L=u+12|0;o[L>>2]=l;o[u+8>>2]=g;o[T>>2]=K;g=o[L+4>>2];o[Q>>2]=o[L>>2];o[Q+4>>2]=g;g=o[u+8>>2];o[M>>2]=o[u+4>>2];o[M+4>>2]=g;a:{b:{l=K;g=o[u+28>>2];if(g){L=K+32|0;c:{if(g>>>0<=o[K+40>>2]<<5>>>0){M=g+ -1>>>5;g=o[L>>2];break c}L=o[L>>2];if(L){ul(L);o[K+40>>2]=0;o[K+32>>2]=0;o[K+36>>2]=0;g=o[u+28>>2]}if((g|0)<=-1){break b}M=g+ -1>>>5;L=M+1|0;g=Hk(L<<2);o[K+40>>2]=L;o[K+36>>2]=0;o[K+32>>2]=g}yl(g,o[u+24>>2],(M<<2)+4|0);g=o[u+28>>2]}else{g=0}o[l+36>>2]=g;Q=K;g=o[P>>2];if(g){d:{if(g>>>0<=o[K+52>>2]<<5>>>0){l=g+ -1>>>5;g=o[N>>2];break d}l=o[N>>2];if(l){ul(l);o[K+52>>2]=0;o[K+44>>2]=0;o[K+48>>2]=0;g=o[u+40>>2]}if((g|0)<=-1){break a}l=g+ -1>>>5;M=l+1|0;g=Hk(M<<2);o[K+52>>2]=M;o[K+48>>2]=0;o[K+44>>2]=g}yl(g,o[u+36>>2],(l<<2)+4|0);g=o[u+40>>2]}else{g=0}o[Q+48>>2]=g;td(U,o[u+48>>2],o[u+52>>2]);o[a>>2]=K;o[u>>2]=9508;a=o[u+48>>2];if(a){o[u+52>>2]=a;ul(a)}o[u>>2]=9324;a=o[u+36>>2];if(a){ul(a)}a=o[u+24>>2];if(a){ul(a)}R=u- -64|0;return}Yk();D()}Yk();D()}function Ng(a,g,l){var D=0,W=0,X=0,Y=0,Z=0,_=0,$=0;D=R-112|0;R=D;$=o[o[g+4>>2]+44>>2];W=Hk(120);o[W>>2]=8876;o[W+116>>2]=0;o[W+112>>2]=l;o[W+108>>2]=$;o[W+12>>2]=0;o[W+16>>2]=0;o[W+4>>2]=0;o[W+20>>2]=0;o[W+24>>2]=0;o[W+28>>2]=0;o[W+32>>2]=0;o[W+36>>2]=0;o[W+40>>2]=0;o[W+44>>2]=0;o[W+48>>2]=0;o[W+52>>2]=0;o[W+56>>2]=0;o[W+60>>2]=0;o[W+8>>2]=9088;Z=W- -64|0;o[Z>>2]=0;o[Z+4>>2]=0;o[W+72>>2]=0;o[W+76>>2]=0;o[W+80>>2]=0;o[W+84>>2]=0;o[W+88>>2]=0;o[W+104>>2]=0;o[W+96>>2]=0;o[W+100>>2]=0;g=o[g+8>>2];o[D+48>>2]=0;o[D+52>>2]=0;o[D+40>>2]=0;o[D+44>>2]=0;Z=D+24|0;X=Z;o[X>>2]=0;o[X+4>>2]=0;X=D- -64|0;o[X>>2]=0;o[X+4>>2]=0;o[D+72>>2]=0;o[D+76>>2]=0;X=D+80|0;o[X>>2]=0;o[X+4>>2]=0;o[D+88>>2]=0;o[D+104>>2]=0;o[D+32>>2]=0;o[D+36>>2]=0;o[D+16>>2]=0;o[D+20>>2]=0;o[D+56>>2]=0;o[D+60>>2]=0;o[D+8>>2]=9088;o[D+96>>2]=0;o[D+100>>2]=0;o[D+12>>2]=g;Y=o[g>>2];_=o[g+4>>2];m[D+111|0]=0;$a(D+32|0,(_-Y>>2>>>0)/3|0,D+111|0);Y=o[D+12>>2];_=o[Y+28>>2];Y=o[Y+24>>2];m[D+111|0]=0;$a(D+44|0,_-Y>>2,D+111|0);o[D+28>>2]=W;o[Z>>2]=$;o[D+20>>2]=l;o[D+16>>2]=g;Pg(W,D+8|0);o[a>>2]=W;o[D+8>>2]=9088;a=o[D+96>>2];if(a){o[D+100>>2]=a;ul(a)}a=o[X>>2];if(a){o[D+84>>2]=a;ul(a)}a=o[D+68>>2];if(a){o[D+72>>2]=a;ul(a)}a=o[D+56>>2];if(a){o[D+60>>2]=a;ul(a)}o[D+8>>2]=9324;a=o[D+44>>2];if(a){ul(a)}a=o[D+32>>2];if(a){ul(a)}R=D+112|0}function Og(a,g){var R=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0;aa=o[a+8>>2];ba=a+4|0;R=o[ba>>2];if(aa-R>>2>>>0>=g>>>0){a=g<<2;ga=ba,ha=xl(R,0,a)+a|0,o[ga>>2]=ha;return}a:{ba=o[a>>2];ca=R-ba>>2;da=ca+g|0;if(da>>>0<1073741824){ca=ca<<2;aa=aa-ba|0;fa=aa>>1;aa=aa>>2>>>0<536870911?fa>>>0<da>>>0?da:fa:1073741823;if(aa){if(aa>>>0>=1073741824){break a}ea=Hk(aa<<2)}ca=ca+ea|0;xl(ca,0,g<<2);g=(da<<2)+ea|0;da=(aa<<2)+ea|0;if((R|0)!=(ba|0)){while(1){R=R+ -4|0;aa=o[R>>2];o[R>>2]=0;ca=ca+ -4|0;o[ca>>2]=aa;if((R|0)!=(ba|0)){continue}break}ba=o[a>>2];R=o[a+4>>2]}o[a>>2]=ca;o[a+8>>2]=da;o[a+4>>2]=g;if((R|0)!=(ba|0)){while(1){R=R+ -4|0;a=o[R>>2];o[R>>2]=0;if(a){l[o[o[a>>2]+4>>2]](a)}if((R|0)!=(ba|0)){continue}break}}if(ba){ul(ba)}return}Yk();D()}_a(8776);D()}function Pg(a,g){var l=0;l=o[g+8>>2];o[a+12>>2]=o[g+4>>2];o[a+16>>2]=l;o[a+28>>2]=o[g+20>>2];l=o[g+16>>2];o[a+20>>2]=o[g+12>>2];o[a+24>>2]=l;uh(a+32|0,g+24|0);uh(a+44|0,g+36|0);if((a+8|0)==(g|0)){o[a+92>>2]=o[g+84>>2];return}td(a+56|0,o[g+48>>2],o[g+52>>2]);td(a+68|0,o[g+60>>2],o[g- -64>>2]);td(a+80|0,o[g+72>>2],o[g+76>>2]);o[a+92>>2]=o[g+84>>2];fd(a+96|0,o[g+88>>2],o[g+92>>2])}function Qg(a,g,ia){a=a|0;g=g|0;ia=ia|0;var ja=0,ka=0;ja=R-16|0;R=ja;o[a+4>>2]=g;g=o[g+64>>2];ka=o[g+4>>2];g=o[g>>2];m[ja+15|0]=0;$a(a+24|0,(ka-g>>2>>>0)/3|0,ja+15|0);g=o[a+4>>2];ka=o[g+56>>2];g=o[g+52>>2];m[ja+14|0]=0;$a(a+36|0,ka-g>>2,ja+14|0);g=o[ia+12>>2];o[a+16>>2]=o[ia+8>>2];o[a+20>>2]=g;g=o[ia+4>>2];o[a+8>>2]=o[ia>>2];o[a+12>>2]=g;R=ja+16|0}function Rg(a){a=a|0;var g=0;o[a>>2]=8512;g=o[a+48>>2];if(g){o[a+52>>2]=g;ul(g)}o[a>>2]=8764;g=o[a+36>>2];if(g){ul(g)}g=o[a+24>>2];if(g){ul(g)}return a|0}function Sg(a){a=a|0;var ia=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,va=0,wa=0,xa=0,ya=0;qa=R+ -64|0;R=qa;o[a+132>>2]=0;if(o[a+148>>2]){ma=a+144|0;la=o[ma>>2];if(la){while(1){ia=o[la>>2];ul(la);la=ia;if(ia){continue}break}}o[ma>>2]=0;ia=o[a+140>>2];if(ia){ma=a+136|0;la=0;while(1){o[o[ma>>2]+(la<<2)>>2]=0;la=la+1|0;if((ia|0)!=(la|0)){continue}break}}o[a+148>>2]=0}a:{if(!Tg(1,qa+52|0,o[o[a+4>>2]+32>>2])){break a}o[a+156>>2]=o[qa+52>>2];if(!Tg(1,qa+48|0,o[o[a+4>>2]+32>>2])){break a}na=o[qa+48>>2];if(na>>>0>1431655765|r[a+156>>2]>u(na,3)>>>0){break a}la=o[o[a+4>>2]+32>>2];ra=o[la+16>>2];ma=o[la+12>>2];ia=o[la+20>>2];if((ma|0)<(ia|0)?1:(ma|0)<=(ia|0)?r[la+8>>2]>ra>>>0?0:1:0){break a}pa=p[ra+o[la>>2]|0];ra=ra+1|0;if(ra>>>0<1){ia=ia+1|0}o[la+16>>2]=ra;o[la+20>>2]=ia;if(!Tg(1,qa+44|0,la)){break a}ta=o[qa+44>>2];if(na>>>0<ta>>>0|na>>>0>ta+((ta>>>0)/3|0)>>>0){break a}if(!Tg(1,qa+40|0,o[o[a+4>>2]+32>>2])){break a}sa=o[qa+40>>2];if(sa>>>0>ta>>>0){break a}o[a+28>>2]=o[a+24>>2];ia=Hk(88);zi(ia);la=o[a+8>>2];o[a+8>>2]=ia;ra=a+8|0;if(la){ua(ra,la);if(!o[ra>>2]){break a}}la=o[a+160>>2];o[a+164>>2]=la;b:{c:{d:{e:{f:{if(o[a+168>>2]-la>>2>>>0>=na>>>0){break f}if(na>>>0>=1073741824){break e}ma=na<<2;ia=Hk(ma);o[a+164>>2]=ia;o[a+160>>2]=ia;o[a+168>>2]=ia+ma;if(!la){break f}ul(la)}la=o[a+172>>2];o[a+176>>2]=la;g:{if(o[a+180>>2]-la>>2>>>0>=na>>>0){break g}if(na>>>0>=1073741824){break d}ma=na<<2;ia=Hk(ma);o[a+176>>2]=ia;o[a+172>>2]=ia;o[a+180>>2]=ia+ma;if(!la){break g}ul(la)}o[a+92>>2]=-1;o[a+84>>2]=-1;o[a+88>>2]=-1;o[a+40>>2]=o[a+36>>2];o[a- -64>>2]=0;o[a+52>>2]=o[a+48>>2];o[a+76>>2]=o[a+72>>2];va=a+216|0;ia=o[a+220>>2];la=o[a+216>>2];if((ia|0)==(la|0)){break c}while(1){ma=o[ia+ -12>>2];if(ma){o[ia+ -8>>2]=ma;ul(ma)}ma=o[ia+ -28>>2];if(ma){o[ia+ -24>>2]=ma;ul(ma)}ma=ia+ -144|0;oa=o[ia+ -40>>2];if(oa){o[ia+ -36>>2]=oa;ul(oa)}Ug(ia+ -140|0);ia=ma;if((la|0)!=(ia|0)){continue}break}ia=o[va>>2];break b}_a(8776);D()}_a(8776);D()}ia=la}o[a+220>>2]=la;ma=(la-ia|0)/144|0;h:{if(ma>>>0<pa>>>0){Vg(va,pa-ma|0);break h}if(ma>>>0<=pa>>>0){break h}ma=ia+u(pa,144)|0;if((ma|0)!=(la|0)){while(1){ia=o[la+ -12>>2];if(ia){o[la+ -8>>2]=ia;ul(ia)}ia=o[la+ -28>>2];if(ia){o[la+ -24>>2]=ia;ul(ia)}ia=la+ -144|0;oa=o[la+ -40>>2];if(oa){o[la+ -36>>2]=oa;ul(oa)}Ug(la+ -140|0);la=ia;if((ia|0)!=(ma|0)){continue}break}}o[a+220>>2]=ma}oa=0;if(!Ji(o[a+8>>2],na,sa+o[a+156>>2]|0)){break a}la=o[a+156>>2];m[qa|0]=1;$a(a+120|0,la+sa|0,qa);if((Wg(a,o[o[a+4>>2]+32>>2])|0)==-1){break a}o[a+376>>2]=a;na=a+232|0;la=o[(l[o[o[a>>2]+32>>2]](a)|0)+32>>2];oa=o[la>>2]+o[la+16>>2]|0;ma=o[(l[o[o[a>>2]+32>>2]](a)|0)+32>>2];la=o[ma+8>>2];ia=o[ma+16>>2];pi(na,oa,la-ia|0,q[o[(l[o[o[a>>2]+32>>2]](a)|0)+32>>2]+38>>1]);o[a+372>>2]=pa;la=oi(qa);ia=o[a+268>>2];o[a+304>>2]=o[a+264>>2];o[a+308>>2]=ia;ia=o[a+260>>2];o[a+296>>2]=o[a+256>>2];o[a+300>>2]=ia;ma=a+248|0;ia=o[ma+4>>2];o[a+288>>2]=o[ma>>2];o[a+292>>2]=ia;oa=a+240|0;ia=oa;pa=o[ia+4>>2];o[a+280>>2]=o[ia>>2];o[a+284>>2]=pa;ia=o[a+236>>2];pa=a+272|0;o[pa>>2]=o[a+232>>2];o[pa+4>>2]=ia;i:{j:{if(qi(pa,1,qa+56|0)){ia=o[pa+4>>2];o[na>>2]=o[pa>>2];o[na+4>>2]=ia;ia=o[pa+36>>2];o[na+32>>2]=o[pa+32>>2];o[na+36>>2]=ia;ia=o[pa+28>>2];o[na+24>>2]=o[pa+24>>2];o[na+28>>2]=ia;ia=o[pa+20>>2];o[na+16>>2]=o[pa+16>>2];o[na+20>>2]=ia;ia=o[pa+12>>2];o[na+8>>2]=o[pa+8>>2];o[na+12>>2]=ia;sa=o[oa>>2];ia=o[ma>>2];xa=sa-ia|0;wa=o[qa+60>>2];ya=o[oa+4>>2];oa=o[ma+4>>2];ma=ya-(oa+(sa>>>0<ia>>>0)|0)|0;sa=o[qa+56>>2];if((wa|0)==(ma|0)&sa>>>0<=xa>>>0|wa>>>0<ma>>>0){break j}}oa=0;break i}oa=oa+wa|0;sa=ia+sa|0;if(sa>>>0<ia>>>0){oa=oa+1|0}o[a+248>>2]=sa;o[a+252>>2]=oa;oa=0;if(!Nf(a+312|0,na)){break i}if(!Xg(na)){break i}ia=o[na+36>>2];o[qa+32>>2]=o[na+32>>2];o[qa+36>>2]=ia;ia=o[na+28>>2];o[qa+24>>2]=o[na+24>>2];o[qa+28>>2]=ia;ia=o[na+20>>2];o[qa+16>>2]=o[na+16>>2];o[qa+20>>2]=ia;ia=o[na+12>>2];o[qa+8>>2]=o[na+8>>2];o[qa+12>>2]=ia;ia=o[na+4>>2];o[qa>>2]=o[na>>2];o[qa+4>>2]=ia;ta=Yg(a,ta);if((ta|0)==-1){break i}ma=o[o[a+4>>2]+32>>2];ia=o[la+16>>2];na=ia+o[la>>2]|0;la=o[la+8>>2];pi(ma,na,la-ia|0,q[ma+38>>1]);k:{if(o[a+220>>2]==o[a+216>>2]){break k}la=o[ra>>2];if(o[la+4>>2]==o[la>>2]){break k}ia=0;while(1){if(Zg(a,ia)){ia=ia+3|0;la=o[ra>>2];if(ia>>>0<o[la+4>>2]-o[la>>2]>>2>>>0){continue}break k}break}break i}if(p[a+308|0]){si(pa)}la=o[a+216>>2];pa=a+220|0;if((la|0)!=o[pa>>2]){ma=0;while(1){na=u(ma,144);Ui((na+la|0)+4|0,o[ra>>2]);ia=o[va>>2];oa=na+ia|0;la=o[oa+132>>2];oa=o[oa+136>>2];if((la|0)!=(oa|0)){while(1){Wi((ia+na|0)+4|0,o[la>>2]);ia=o[va>>2];la=la+4|0;if((oa|0)!=(la|0)){continue}break}}Vi((ia+na|0)+4|0);ma=ma+1|0;la=o[a+216>>2];if(ma>>>0<(o[pa>>2]-la|0)/144>>>0){continue}break}}la=o[a+8>>2];_g(a+184|0,o[la+28>>2]-o[la+24>>2]>>2);ia=o[a+216>>2];if((ia|0)!=o[pa>>2]){la=0;na=a+220|0;while(1){ia=u(la,144)+ia|0;ma=o[ia+60>>2]-o[ia+56>>2]>>2;pa=ia+104|0;ia=o[ra>>2];ia=o[ia+28>>2]-o[ia+24>>2]>>2;_g(pa,(ma|0)<(ia|0)?ia:ma);la=la+1|0;ia=o[a+216>>2];if(la>>>0<(o[na>>2]-ia|0)/144>>>0){continue}break}}oa=$g(a,ta)}}R=qa- -64|0;return oa|0}function Tg(a,ua,za){var Aa=0,Ba=0,Ca=0,Da=0;a:{if(a>>>0>5){break a}Ca=o[za+16>>2];Aa=o[za+12>>2];Ba=o[za+20>>2];if((Aa|0)<(Ba|0)?1:(Aa|0)<=(Ba|0)?r[za+8>>2]>Ca>>>0?0:1:0){break a}Aa=p[Ca+o[za>>2]|0];Ca=Ca+1|0;if(Ca>>>0<1){Ba=Ba+1|0}o[za+16>>2]=Ca;o[za+20>>2]=Ba;Ba=ua;if(Aa&128){if(!Tg(a+1|0,ua,za)){break a}a=o[ua>>2]<<7;o[ua>>2]=a;Aa=a|Aa&127}o[Ba>>2]=Aa;Da=1}return Da}function Ug(a){var ua=0;ua=o[a+84>>2];if(ua){o[a+88>>2]=ua;ul(ua)}ua=o[a+72>>2];if(ua){o[a+76>>2]=ua;ul(ua)}ua=o[a+52>>2];if(ua){o[a+56>>2]=ua;ul(ua)}ua=o[a+40>>2];if(ua){o[a+44>>2]=ua;ul(ua)}ua=o[a+28>>2];if(ua){o[a+32>>2]=ua;ul(ua)}ua=o[a+12>>2];if(ua){ul(ua)}a=o[a>>2];if(a){ul(a)}}function Vg(a,za){var Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0;Fa=R-32|0;R=Fa;a:{b:{Ga=o[a+8>>2];Ha=a+4|0;Ea=o[Ha>>2];c:{if((Ga-Ea|0)/144>>>0>=za>>>0){while(1){o[Ea>>2]=-1;Ti(Ea+4|0);o[Ea+104>>2]=0;o[Ea+108>>2]=0;m[Ea+100|0]=1;o[Ea+112>>2]=0;o[Ea+116>>2]=0;o[Ea+120>>2]=0;o[Ea+124>>2]=0;o[Ea+128>>2]=0;o[Ea+132>>2]=0;o[Ea+136>>2]=0;o[Ea+140>>2]=0;Ea=o[Ha>>2]+144|0;o[Ha>>2]=Ea;za=za+ -1|0;if(za){continue}break c}}Ia=o[a>>2];Ja=(Ea-Ia|0)/144|0;Ea=Ja+za|0;if(Ea>>>0>=29826162){break b}o[Fa+24>>2]=a+8;Ha=0;o[Fa+20>>2]=0;Ga=(Ga-Ia|0)/144|0;Ia=Ga<<1;Ga=Ga>>>0<14913080?Ia>>>0<Ea>>>0?Ea:Ia:29826161;if(Ga){if(Ga>>>0>=29826162){break a}Ha=Hk(u(Ga,144))}o[Fa+8>>2]=Ha;Ea=u(Ja,144)+Ha|0;o[Fa+16>>2]=Ea;o[Fa+20>>2]=u(Ga,144)+Ha;o[Fa+12>>2]=Ea;while(1){o[Ea>>2]=-1;Ti(Ea+4|0);o[Ea+104>>2]=0;o[Ea+108>>2]=0;m[Ea+100|0]=1;o[Ea+112>>2]=0;o[Ea+116>>2]=0;o[Ea+120>>2]=0;o[Ea+124>>2]=0;o[Ea+128>>2]=0;o[Ea+132>>2]=0;o[Ea+136>>2]=0;o[Ea+140>>2]=0;Ea=o[Fa+16>>2]+144|0;o[Fa+16>>2]=Ea;za=za+ -1|0;if(za){continue}break}za=o[a+4>>2];Ga=o[a>>2];d:{if((za|0)==(Ga|0)){Ha=o[Fa+12>>2];break d}Ha=o[Fa+12>>2];while(1){za=za+ -144|0;Ha=Qh(Ha+ -144|0,za);if((za|0)!=(Ga|0)){continue}break}o[Fa+12>>2]=Ha;za=o[a+4>>2];Ga=o[a>>2]}o[a>>2]=Ha;o[Fa+12>>2]=Ga;o[a+4>>2]=Ea;o[Fa+16>>2]=za;a=a+8|0;za=o[a>>2];o[a>>2]=o[Fa+20>>2];o[Fa+8>>2]=Ga;o[Fa+20>>2]=za;Rh(Fa+8|0)}R=Fa+32|0;return}Yk();D()}_a(8776);D()}function Wg(a,za){var Ka=0,La=0,Ma=0,Na=0,Oa=0,Pa=0,Qa=0,Ra=0,Sa=0,Ta=0;Ma=R-32|0;R=Ma;Pa=-1;a:{if(!Tg(1,Ma+28|0,za)){break a}Qa=o[Ma+28>>2];if(Qa){La=o[a+8>>2];if(Qa>>>0>(o[La+4>>2]-o[La>>2]>>2>>>0)/3>>>0){break a}Ta=a+36|0;Ra=a+44|0;La=a+40|0;while(1){Tg(1,Ma+12|0,za);o[Ma+20>>2]=o[Ma+12>>2]+Oa;Tg(1,Ma+12|0,za);Oa=o[Ma+20>>2];Ka=o[Ma+12>>2];if(Oa>>>0<Ka>>>0){break a}o[Ma+16>>2]=Oa-Ka;Ka=o[La>>2];b:{if((Ka|0)!=o[Ra>>2]){Sa=o[Ma+20>>2];o[Ka>>2]=o[Ma+16>>2];o[Ka+4>>2]=Sa;o[Ka+8>>2]=o[Ma+24>>2];o[La>>2]=o[La>>2]+12;break b}ah(Ta,Ma+16|0)}Na=Na+1|0;if((Qa|0)!=(Na|0)){continue}break}Oa=0;qi(za,0,0);Ta=a+36|0;while(1){La=p[za+36|0];Ka=q[o[a+4>>2]+36>>1];c:{if((Ka<<24|Ka<<8&16711680)>>>16>>>0<=513){if(!La){break c}Na=0;La=o[za+32>>2];Pa=La>>>3;Ra=o[za+24>>2];Ka=Pa+Ra|0;Sa=o[za+28>>2];d:{if(Ka>>>0>=Sa>>>0){Ka=La;break d}Na=p[Ka|0];Ka=La+1|0;o[za+32>>2]=Ka;Pa=Ka>>>3;Na=Na>>>(La&7)&1}if(Pa+Ra>>>0>=Sa>>>0){break c}o[za+32>>2]=Ka+1;break c}if(!La){break c}Na=0;La=o[za+32>>2];Ka=o[za+24>>2]+(La>>>3)|0;if(Ka>>>0>=r[za+28>>2]){break c}Ka=p[Ka|0];o[za+32>>2]=La+1;Na=Ka>>>(La&7)&1}La=o[Ta>>2]+u(Oa,12)|0;m[La+8|0]=p[La+8|0]&254|Na&1;Oa=Oa+1|0;if((Qa|0)!=(Oa|0)){continue}break}si(za)}Pa=o[za+16>>2]}R=Ma+32|0;return Pa}function Xg(a){var za=0,Ua=0,Va=0,Wa=0;Ua=1;Va=o[a+140>>2];a:{if((Va|0)<1){break a}za=Va<<4;Ua=Hk((Va|0)!=(Va&268435455)?-1:za|4);o[Ua>>2]=Va;Ua=Ua+4|0;Va=Ua+za|0;za=Ua;while(1){za=Mf(za)+16|0;if((Va|0)!=(za|0)){continue}break}Wa=o[a+136>>2];o[a+136>>2]=Ua;if(Wa){Va=Wa+ -4|0;Ua=o[Va>>2];if(Ua){za=Wa+(Ua<<4)|0;while(1){za=za+ -16|0;if((Wa|0)!=(za|0)){continue}break}}ul(Va)}Ua=1;if(o[a+140>>2]<1){break a}Ua=0;za=0;while(1){if(!Nf(o[a+136>>2]+(za<<4)|0,a)){break a}za=za+1|0;if((za|0)<o[a+140>>2]){continue}break}Ua=1}return Ua}function Yg(a,Xa){var Ya=0,Za=0,_a=0,$a=0,bb=0,cb=0,db=0,eb=0,fb=0,gb=0,hb=0,ib=0,jb=0,kb=0,lb=0,mb=0,nb=0,ob=0,pb=0,qb=0,rb=0,sb=0,tb=0;$a=R-96|0;R=$a;o[$a+72>>2]=0;o[$a+64>>2]=0;o[$a+68>>2]=0;o[$a+48>>2]=0;o[$a+52>>2]=0;o[$a+40>>2]=0;o[$a+44>>2]=0;o[$a+56>>2]=1065353216;o[$a+32>>2]=0;o[$a+24>>2]=0;o[$a+28>>2]=0;rb=o[a+124>>2];a:{b:{c:{d:{if((Xa|0)>=1){qb=a+8|0;nb=o[a+216>>2]!=o[a+220>>2];ob=a+40|0;while(1){e:{f:{g:{h:{i:{j:{k:{if(!p[a+308|0]){break k}l:{m:{eb=o[a+296>>2];gb=o[a+304>>2];Ya=eb+(gb>>>3)|0;cb=o[a+300>>2];if(Ya>>>0>=cb>>>0){break m}Ya=p[Ya|0];Za=gb+1|0;o[a+304>>2]=Za;if(!(Ya>>>(gb&7)&1)){break m}Ya=Za>>>3;_a=eb+Ya|0;n:{if(_a>>>0>=cb>>>0){_a=Za;Za=0;break n}db=p[_a|0];_a=gb+2|0;o[a+304>>2]=_a;Ya=_a>>>3;Za=db>>>(Za&7)&1}Ya=Ya+eb|0;if(Ya>>>0<cb>>>0){Ya=p[Ya|0];o[a+304>>2]=_a+1;Ya=Ya>>>(_a&7)<<1&2}else{Ya=0}Ya=(Za|Ya)<<1|1;switch(Ya+ -2|0){case 0:case 2:case 4:break h;case 5:break j;case 1:case 3:break l;default:break k}}Za=o[$a+68>>2];if((Za|0)==o[$a+64>>2]){break d}eb=-1;ib=o[qb>>2];cb=o[ib+24>>2];_a=cb;db=Za+ -4|0;lb=o[db>>2];Ya=-1;o:{if((lb|0)==-1){break o}Za=lb+1|0;Za=(Za>>>0)%3|0?Za:lb+ -2|0;Ya=-1;if((Za|0)==-1){break o}Ya=o[o[ib>>2]+(Za<<2)>>2]}_a=o[_a+(Ya<<2)>>2];if((_a|0)!=-1){Za=_a+1|0;eb=(Za>>>0)%3|0?Za:_a+ -2|0}_a=o[ib+12>>2];jb=u(bb,3);Za=jb+1|0;o[_a+(lb<<2)>>2]=Za;Za=Za<<2;o[Za+_a>>2]=lb;hb=jb+2|0;o[_a+(eb<<2)>>2]=hb;gb=hb<<2;o[gb+_a>>2]=eb;kb=o[ib>>2];o[kb+(jb<<2)>>2]=Ya;_a=Za+kb|0;fb=-1;p:{if((eb|0)==-1){break p}Za=eb+1|0;Za=(Za>>>0)%3|0?Za:eb+ -2|0;fb=-1;if((Za|0)==-1){break p}fb=o[kb+(Za<<2)>>2]}o[_a>>2]=fb;q:{r:{if((lb|0)!=-1){Za=lb+((lb>>>0)%3|0?-1:2)|0;if((Za|0)!=-1){break r}}o[gb+kb>>2]=-1;break q}Za=o[kb+(Za<<2)>>2];o[gb+kb>>2]=Za;if((Za|0)==-1){break q}o[cb+(Za<<2)>>2]=hb}_a=o[a+120>>2]+(Ya>>>3&536870908)|0;Za=o[_a>>2];sb=_a,tb=Zl(Ya)&Za,o[sb>>2]=tb;o[db>>2]=jb;break e}_a=o[$a+68>>2];if((_a|0)==o[$a+64>>2]){break d}gb=o[qb>>2];Za=o[gb+12>>2];hb=u(bb,3);eb=(Ya|0)==5;cb=hb+(eb?2:1)|0;Ya=cb<<2;kb=o[_a+ -4>>2];o[Za+Ya>>2]=kb;o[Za+(kb<<2)>>2]=cb;db=gb+24|0;_a=gb+28|0;Za=o[_a>>2];s:{if((Za|0)!=o[gb+32>>2]){o[Za>>2]=-1;ib=Za+4|0;o[_a>>2]=ib;break s}bh(db,8212);ib=o[_a>>2]}_a=-1;Za=o[qb>>2];gb=o[Za+24>>2];if(o[Za+28>>2]-gb>>2>(rb|0)){break c}_a=hb+2|0;jb=o[Za>>2];fb=jb+Ya|0;Za=ib-o[db>>2]|0;Ya=(Za>>2)+ -1|0;o[fb>>2]=Ya;if(Za){o[gb+(Ya<<2)>>2]=cb}_a=eb?hb:_a;Za=jb+(eb+hb<<2)|0;t:{u:{v:{if((kb|0)!=-1){Ya=kb+((kb>>>0)%3|0?-1:2)|0;if((Ya|0)==-1){break v}Ya=o[jb+(Ya<<2)>>2];o[jb+(_a<<2)>>2]=Ya;if((Ya|0)==-1){break u}o[gb+(Ya<<2)>>2]=_a;break u}o[jb+(_a<<2)>>2]=-1;_a=-1;break t}o[jb+(_a<<2)>>2]=-1}Ya=kb+1|0;Ya=(Ya>>>0)%3|0?Ya:kb+ -2|0;_a=-1;if((Ya|0)==-1){break t}_a=o[jb+(Ya<<2)>>2]}o[Za>>2]=_a;o[o[$a+68>>2]+ -4>>2]=hb;break i}_a=-1;Ya=o[$a+68>>2];ib=o[$a+64>>2];if((Ya|0)==(ib|0)){break c}Za=Ya+ -4|0;mb=o[Za>>2];o[$a+68>>2]=Za;hb=o[$a+44>>2];w:{if(!hb){Ya=Za;break w}cb=o[$a+40>>2];gb=Yl(hb)>>>0>1;db=hb+2147483647&bb;x:{if(!gb){break x}db=bb;if(bb>>>0<hb>>>0){break x}db=(bb>>>0)%(hb>>>0)|0}cb=o[cb+(db<<2)>>2];if(!cb){Ya=Za;break w}fb=o[cb>>2];if(!fb){Ya=Za;break w}cb=hb+ -1|0;y:{while(1){eb=o[fb+4>>2];z:{if((eb|0)!=(bb|0)){A:{if(!gb){eb=eb&cb;break A}if(eb>>>0<hb>>>0){break A}eb=(eb>>>0)%(hb>>>0)|0}if((eb|0)==(db|0)){break z}Ya=Za;break w}if(o[fb+8>>2]==(bb|0)){break y}}fb=o[fb>>2];if(fb){continue}break}Ya=Za;break w}db=fb+12|0;if((Za|0)!=o[$a+72>>2]){o[Za>>2]=o[db>>2];o[$a+68>>2]=Ya;break w}bh($a- -64|0,db);Ya=o[$a+68>>2];ib=o[$a+64>>2]}if((Ya|0)==(ib|0)){break c}lb=o[Ya+ -4>>2];db=(lb|0)==-1;pb=o[qb>>2];if(o[o[pb+12>>2]+(lb<<2)>>2]!=-1?!db:0){break c}gb=(mb|0)==-1;hb=pb+12|0;cb=o[hb>>2];if(o[cb+(mb<<2)>>2]!=-1?!gb:0){break c}kb=u(bb,3);ib=kb+2|0;o[cb+(lb<<2)>>2]=ib;jb=ib<<2;o[jb+cb>>2]=lb;Za=kb+1|0;o[cb+(mb<<2)>>2]=Za;eb=cb;cb=Za<<2;o[eb+cb>>2]=mb;if(db){break g}eb=-1;db=o[pb>>2];fb=db+(kb<<2)|0;Za=lb+((lb>>>0)%3|0?-1:2)|0;if((Za|0)!=-1){eb=o[(Za<<2)+db>>2]}o[fb>>2]=eb;Za=lb+1|0;Za=(Za>>>0)%3|0?Za:lb+ -2|0;if((Za|0)==-1){break f}_a=o[(Za<<2)+db>>2];break f}o[$a>>2]=u(bb,3);Ya=o[qb>>2];_a=Ya+24|0;cb=o[Ya+32>>2];Za=Ya+28|0;Ya=o[Za>>2];B:{if((cb|0)!=(Ya|0)){o[Ya>>2]=-1;Ya=Ya+4|0;o[Za>>2]=Ya;break B}bh(_a,8212);Ya=o[Za>>2]}ib=o[qb>>2];eb=o[ib>>2];Za=o[$a>>2];gb=Ya-o[_a>>2]|0;hb=gb>>2;_a=hb+ -1|0;o[eb+(Za<<2)>>2]=_a;Za=Za+1|0;cb=ib+24|0;db=ib+28|0;Ya=o[db>>2];C:{if((Ya|0)!=o[ib+32>>2]){o[Ya>>2]=-1;Ya=Ya+4|0;o[db>>2]=Ya;break C}bh(cb,8212);Ya=o[db>>2];eb=o[ib>>2]}o[(Za<<2)+eb>>2]=(Ya-o[cb>>2]>>2)+ -1;Ya=o[$a>>2]+2|0;cb=o[qb>>2];Za=cb+28|0;db=o[Za>>2];D:{if((db|0)!=o[cb+32>>2]){o[db>>2]=-1;eb=db+4|0;o[Za>>2]=eb;break D}bh(cb+24|0,8212);eb=o[Za>>2]}o[o[cb>>2]+(Ya<<2)>>2]=(eb-o[cb+24>>2]>>2)+ -1;Ya=o[qb>>2];Za=o[Ya+24>>2];if(o[Ya+28>>2]-Za>>2>(rb|0)){break d}Ya=o[$a>>2];E:{F:{if(!gb){eb=1;o[Za+(hb<<2)>>2]=Ya+1;break F}o[Za+(_a<<2)>>2]=Ya;eb=0;if((gb|0)==-4){break F}o[Za+(hb<<2)>>2]=o[$a>>2]+1;eb=hb+1|0;if((eb|0)==-1){break E}}o[Za+(eb<<2)>>2]=o[$a>>2]+2}Ya=o[$a+68>>2];if((Ya|0)!=o[$a+72>>2]){o[Ya>>2]=o[$a>>2];o[$a+68>>2]=Ya+4;break i}bh($a- -64|0,$a)}fb=o[ob>>2];if((fb|0)==o[a+36>>2]){break e}cb=(bb^-1)+Xa|0;while(1){_a=-1;Ya=o[fb+ -8>>2];if(Ya>>>0>cb>>>0){break c}if((Ya|0)!=(cb|0)){break e}Za=p[fb+ -4|0];Ya=fb+ -12|0;db=o[Ya>>2];o[ob>>2]=Ya;if((db|0)<0){break c}_a=o[o[$a+68>>2]+ -4>>2];o[$a+20>>2]=(db^-1)+Xa;o[$a+88>>2]=$a+20;ch($a,$a+40|0,$a+20|0,$a+88|0);db=o[$a>>2];G:{if(Za&1){Ya=-1;if((_a|0)==-1){break G}Ya=_a+1|0;Ya=(Ya>>>0)%3|0?Ya:_a+ -2|0;break G}Ya=-1;if((_a|0)==-1){break G}Ya=_a+ -1|0;if((_a>>>0)%3){break G}Ya=_a+2|0}o[db+12>>2]=Ya;fb=o[ob>>2];if((fb|0)!=o[a+36>>2]){continue}break}break e}D()}eb=-1;db=o[pb>>2];o[db+(kb<<2)>>2]=-1}o[cb+db>>2]=_a;H:{I:{J:{if(!gb){Za=mb+((mb>>>0)%3|0?-1:2)|0;if((Za|0)==-1){break J}Za=o[(Za<<2)+db>>2];o[db+jb>>2]=Za;if((Za|0)==-1){break I}o[o[pb+24>>2]+(Za<<2)>>2]=ib;break I}o[db+jb>>2]=-1;fb=-1;_a=-1;break H}o[db+jb>>2]=-1}fb=-1;Za=mb+1|0;Za=(Za>>>0)%3|0?Za:mb+ -2|0;_a=-1;if((Za|0)==-1){break H}fb=o[(Za<<2)+db>>2];_a=Za}o[$a>>2]=fb;cb=o[pb+24>>2];if((eb|0)!=-1){o[cb+(eb<<2)>>2]=o[cb+(fb<<2)>>2]}K:{if((_a|0)==-1){break K}db=o[pb>>2];while(1){o[db+(_a<<2)>>2]=eb;Za=_a+1|0;Za=(Za>>>0)%3|0?Za:_a+ -2|0;if((Za|0)==-1){break K}_a=o[o[hb>>2]+(Za<<2)>>2];if((_a|0)==-1){break K}Za=_a+1|0;_a=(Za>>>0)%3|0?Za:_a+ -2|0;if((_a|0)!=-1){continue}break}}o[cb+(o[$a>>2]<<2)>>2]=-1;L:{if(nb){break L}Za=o[$a+28>>2];if((Za|0)!=o[$a+32>>2]){o[Za>>2]=o[$a>>2];o[$a+28>>2]=Za+4;break L}bh($a+24|0,$a);Ya=o[$a+68>>2]}o[Ya+ -4>>2]=kb}bb=bb+1|0;if((bb|0)!=(Xa|0)){continue}break}eb=Xa}_a=-1;fb=o[a+8>>2];if(o[fb+28>>2]-o[fb+24>>2]>>2>(rb|0)){break c}bb=o[$a+68>>2];if((bb|0)!=o[$a+64>>2]){lb=a+72|0;Za=a+60|0;ib=a+312|0;nb=a+8|0;kb=a+68|0;rb=a+80|0;pb=a+76|0;while(1){Ya=bb+ -4|0;Xa=o[Ya>>2];o[$a+68>>2]=Ya;o[$a>>2]=Xa;M:{if(Pf(ib)){hb=o[nb>>2];mb=o[hb>>2];if((eb|0)>=((o[hb+4>>2]-mb>>2>>>0)/3|0)){break d}Ya=-1;fb=-1;bb=o[hb+24>>2];cb=bb;ob=o[$a>>2];db=-1;N:{if((ob|0)==-1){break N}Xa=ob+1|0;Xa=(Xa>>>0)%3|0?Xa:ob+ -2|0;db=-1;if((Xa|0)==-1){break N}db=o[mb+(Xa<<2)>>2]}cb=o[cb+(db<<2)>>2];O:{if((cb|0)==-1){break O}Xa=cb+1|0;Xa=(Xa>>>0)%3|0?Xa:cb+ -2|0;if((Xa|0)==-1){break O}Ya=Xa+1|0;Ya=(Ya>>>0)%3|0?Ya:Xa+ -2|0;if((Ya|0)!=-1){fb=o[mb+(Ya<<2)>>2]}Ya=Xa}Xa=-1;jb=-1;gb=o[bb+(fb<<2)>>2];cb=-1;P:{if((gb|0)==-1){break P}bb=gb+1|0;bb=(bb>>>0)%3|0?bb:gb+ -2|0;cb=-1;if((bb|0)==-1){break P}cb=bb+1|0;cb=(cb>>>0)%3|0?cb:bb+ -2|0;if((cb|0)!=-1){jb=o[mb+(cb<<2)>>2]}cb=bb}bb=u(eb,3);o[$a+88>>2]=bb;gb=o[hb+12>>2];o[gb+(bb<<2)>>2]=ob;o[gb+(ob<<2)>>2]=bb;bb=o[$a+88>>2]+1|0;o[gb+(bb<<2)>>2]=Ya;o[gb+(Ya<<2)>>2]=bb;Ya=o[$a+88>>2]+2|0;o[gb+(Ya<<2)>>2]=cb;o[gb+(cb<<2)>>2]=Ya;Ya=o[$a+88>>2];o[mb+(Ya<<2)>>2]=fb;ob=Ya+1|0;hb=mb+(ob<<2)|0;o[hb>>2]=jb;gb=Ya+2|0;cb=mb+(gb<<2)|0;o[cb>>2]=db;jb=o[a+120>>2];bb=ob>>>0<Ya>>>0?-1:fb;db=jb+(bb>>>3&536870908)|0;Ya=o[db>>2];sb=db,tb=Zl(bb)&Ya,o[sb>>2]=tb;Xa=(ob|0)!=-1?o[hb>>2]:Xa;db=jb+(Xa>>>3&536870908)|0;Ya=o[db>>2];sb=db,tb=Zl(Xa)&Ya,o[sb>>2]=tb;bb=-1;bb=(gb|0)!=-1?o[cb>>2]:bb;Ya=jb+(bb>>>3&536870908)|0;Xa=o[Ya>>2];sb=Ya,tb=Zl(bb)&Xa,o[sb>>2]=tb;bb=o[a+64>>2];Ya=o[kb>>2];if((bb|0)==Ya<<5){if((bb+1|0)<=-1){break a}Xa=Za;if(bb>>>0<=1073741822){db=bb+32&-32;Ya=Ya<<6;Ya=Ya>>>0<db>>>0?db:Ya}else{Ya=2147483647}ab(Xa,Ya);bb=o[a+64>>2]}eb=eb+1|0;o[a+64>>2]=bb+1;Xa=o[a+60>>2]+(bb>>>3&536870908)|0;o[Xa>>2]=o[Xa>>2]|1<<(bb&31);Xa=o[pb>>2];if((Xa|0)!=o[rb>>2]){o[Xa>>2]=o[$a+88>>2];o[pb>>2]=Xa+4;break M}bh(lb,$a+88|0);break M}bb=o[a+64>>2];Ya=o[kb>>2];if((bb|0)==Ya<<5){if((bb+1|0)<=-1){break a}Xa=Za;if(bb>>>0<=1073741822){db=bb+32&-32;Ya=Ya<<6;Ya=Ya>>>0<db>>>0?db:Ya}else{Ya=2147483647}ab(Xa,Ya);bb=o[a+64>>2]}o[a+64>>2]=bb+1;Ya=o[a+60>>2]+(bb>>>3&536870908)|0;Xa=o[Ya>>2];sb=Ya,tb=Zl(bb)&Xa,o[sb>>2]=tb;Xa=o[pb>>2];if((Xa|0)!=o[rb>>2]){o[Xa>>2]=o[$a>>2];o[pb>>2]=Xa+4;break M}bh(lb,$a)}bb=o[$a+68>>2];if((bb|0)!=o[$a+64>>2]){continue}break}fb=o[a+8>>2]}if(((o[fb+4>>2]-o[fb>>2]>>2>>>0)/3|0)!=(eb|0)){break c}_a=o[fb+28>>2]-o[fb+24>>2]>>2;nb=o[$a+24>>2];cb=o[$a+28>>2];if((nb|0)==(cb|0)){break b}db=a+8|0;while(1){hb=o[nb>>2];eb=o[fb+24>>2];bb=_a+ -1|0;Q:{if(o[eb+(bb<<2)>>2]!=-1){Ya=_a;break Q}eb=o[fb+24>>2];while(1){bb=_a+ -2|0;Ya=_a+ -1|0;_a=Ya;if(o[(bb<<2)+eb>>2]==-1){continue}break}}if(!(bb>>>0<hb>>>0)){o[$a>>2]=fb;Xa=bb<<2;_a=o[Xa+eb>>2];m[$a+12|0]=1;o[$a+8>>2]=_a;o[$a+4>>2]=_a;if((_a|0)!=-1){while(1){o[o[fb>>2]+(_a<<2)>>2]=hb;jf($a);fb=o[db>>2];_a=o[$a+8>>2];if((_a|0)!=-1){continue}break}}Za=Xa;Xa=o[fb+24>>2];Za=Za+Xa|0;if((hb|0)!=-1){o[Xa+(hb<<2)>>2]=o[Za>>2]}o[Za>>2]=-1;gb=1<<(hb&31);Xa=o[a+120>>2];_a=Xa+(hb>>>3&536870908)|0;Za=_a;eb=Xa+(bb>>>3&536870908)|0;Xa=1<<(bb&31);bb=gb|o[_a>>2];R:{if(o[eb>>2]&Xa){break R}bb=o[_a>>2]&(gb^-1)}o[Za>>2]=bb;o[eb>>2]=o[eb>>2]&(Xa^-1);Ya=Ya+ -1|0}_a=Ya;nb=nb+4|0;if((cb|0)!=(nb|0)){continue}break}break c}_a=-1}nb=o[$a+24>>2]}if(nb){o[$a+28>>2]=nb;ul(nb)}bb=o[$a+48>>2];if(bb){while(1){a=o[bb>>2];ul(bb);bb=a;if(bb){continue}break}}a=o[$a+40>>2];o[$a+40>>2]=0;if(a){ul(a)}a=o[$a+64>>2];if(a){o[$a+68>>2]=a;ul(a)}R=$a+96|0;return _a}Yk();D()}function Zg(a,Xa){var ab=0,ub=0,vb=0,wb=0,xb=0,yb=0,zb=0,Ab=0,Bb=0,Cb=0,Db=0,Eb=0;ub=R-32|0;R=ub;o[ub+16>>2]=Xa;ab=-1;a:{if((Xa|0)==-1){o[ub+20>>2]=-1;break a}ab=Xa+1|0;o[ub+20>>2]=(ab>>>0)%3|0?ab:Xa+ -2|0;if((Xa>>>0)%3){ab=Xa+ -1|0;break a}ab=Xa+2|0}o[ub+24>>2]=ab;Cb=(Xa|0)==-1?-1:(Xa>>>0)/3|0;yb=a+220|0;Db=a+8|0;Eb=a+368|0;while(1){b:{c:{if((Xa|0)!=-1){ab=o[o[o[Db>>2]+12>>2]+(Xa<<2)>>2];if((ab|0)!=-1){break c}}ab=0;vb=o[a+216>>2];wb=o[yb>>2];if((vb|0)==(wb|0)){break b}while(1){o[ub+12>>2]=Xa;xb=u(ab,144)+vb|0;Bb=xb+136|0;zb=o[Bb>>2];d:{if(zb>>>0<r[xb+140>>2]){o[zb>>2]=Xa;o[Bb>>2]=zb+4;break d}wa(xb+132|0,ub+12|0);wb=o[yb>>2];vb=o[a+216>>2]}ab=ab+1|0;if(ab>>>0<(wb-vb|0)/144>>>0){continue}break}break b}if((ab>>>0)/3>>>0<Cb>>>0){break b}ab=0;if(o[yb>>2]==o[a+216>>2]){break b}while(1){e:{if(!Pf(o[Eb>>2]+(ab<<4)|0)){break e}vb=o[a+216>>2];o[ub+12>>2]=Xa;vb=vb+u(ab,144)|0;xb=vb+136|0;wb=o[xb>>2];if(wb>>>0<r[vb+140>>2]){o[wb>>2]=Xa;o[xb>>2]=wb+4;break e}wa(vb+132|0,ub+12|0)}ab=ab+1|0;if(ab>>>0<(o[yb>>2]-o[a+216>>2]|0)/144>>>0){continue}break}}Ab=Ab+1|0;if((Ab|0)!=3){Xa=o[(ub+16|0)+(Ab<<2)>>2];continue}break}R=ub+32|0;return 1}function _g(a,Xa){var Fb=0,Gb=0,Hb=0,Ib=0,Jb=0;Gb=o[a+12>>2];Fb=o[a+16>>2]-Gb>>2;a:{if(Fb>>>0<Xa>>>0){Da(a+12|0,Xa-Fb|0);break a}if(Fb>>>0<=Xa>>>0){break a}o[a+16>>2]=Gb+(Xa<<2)}b:{Fb=o[a>>2];c:{if(o[a+8>>2]-Fb>>2>>>0>=Xa>>>0){break c}if(Xa>>>0>=1073741824){break b}Ib=a+4|0;Gb=o[Ib>>2];Hb=Xa<<2;Xa=Hk(Hb);Hb=Xa+Hb|0;Gb=Gb-Fb|0;Jb=Gb+Xa|0;if((Gb|0)>=1){wl(Xa,Fb,Gb)}o[a>>2]=Xa;o[a+8>>2]=Hb;o[Ib>>2]=Jb;if(!Fb){break c}ul(Fb)}return}_a(8776);D()}function $g(a,Xa){var Kb=0,Lb=0,Mb=0,Nb=0,Ob=0,Pb=0,Qb=0,Rb=0,Sb=0,Tb=0,Ub=0,Vb=0,Wb=0,Xb=0,Yb=0,Zb=0;Lb=R-48|0;R=Lb;Kb=o[a+8>>2];Mb=o[Kb>>2];Ob=o[Kb+4>>2];Kb=o[o[a+4>>2]+44>>2];o[Lb+40>>2]=0;o[Lb+32>>2]=0;o[Lb+36>>2]=0;Mb=(Ob-Mb>>2>>>0)/3|0;Nb=o[Kb+96>>2];Ob=(o[Kb+100>>2]-Nb|0)/12|0;a:{if(Mb>>>0>Ob>>>0){dh(Kb+96|0,Mb-Ob|0,Lb+32|0);break a}if(Mb>>>0>=Ob>>>0){break a}o[Kb+100>>2]=Nb+u(Mb,12)}b:{if(o[a+216>>2]==o[a+220>>2]){Sb=o[a+4>>2];Kb=o[Sb+44>>2];Mb=o[Kb+100>>2];Qb=o[Kb+96>>2];if((Mb|0)!=(Qb|0)){Tb=(Mb-Qb|0)/12|0;Ub=Lb+40|0;Kb=0;while(1){o[Ub>>2]=0;o[Lb+32>>2]=0;o[Lb+36>>2]=0;Ob=Lb;c:{d:{e:{Nb=u(Kb,3);if((Nb|0)==-1){Mb=-1;o[Lb+32>>2]=-1;Pb=0;break e}Mb=o[o[o[a+8>>2]>>2]+(Nb<<2)>>2];o[Lb+32>>2]=Mb;Pb=Nb+1|0;if((Pb|0)!=-1){break e}o[Lb+36>>2]=-1;Nb=0;break d}o[Lb+36>>2]=o[o[o[a+8>>2]>>2]+(Pb<<2)>>2];Nb=Nb+2|0;Vb=-1;if((Nb|0)==-1){break c}}Vb=o[o[o[a+8>>2]>>2]+(Nb<<2)>>2]}o[Ob+40>>2]=Vb;Ob=Qb+u(Kb,12)|0;o[Ob>>2]=Mb;o[Ob+4>>2]=o[Lb+36>>2];o[Ob+8>>2]=o[Lb+40>>2];Kb=Kb+1|0;if(Kb>>>0<Tb>>>0){continue}break}}o[o[Sb+4>>2]+80>>2]=Xa;Kb=1;break b}o[Lb+40>>2]=0;o[Lb+32>>2]=0;o[Lb+36>>2]=0;Nb=o[a+8>>2];Xa=o[Nb>>2];Kb=o[Nb+4>>2];o[Lb+24>>2]=0;o[Lb+16>>2]=0;o[Lb+20>>2]=0;f:{g:{h:{Xa=Kb-Xa|0;if(Xa){Mb=Xa>>2;if(Mb>>>0>=1073741824){break h}Kb=Hk(Xa);o[Lb+16>>2]=Kb;o[Lb+24>>2]=Kb+(Mb<<2);Yb=Lb,Zb=xl(Kb,0,Xa)+Xa|0,o[Yb+20>>2]=Zb}if((o[Nb+28>>2]-o[Nb+24>>2]|0)<1){break g}Sb=a+220|0;Tb=a+8|0;while(1){Mb=o[o[Nb+24>>2]+(Qb<<2)>>2];i:{if((Mb|0)==-1){break i}j:{if(o[o[a+120>>2]+(Qb>>>3&536870908)>>2]>>>(Qb&31)&1){break j}Xa=o[Sb>>2];Ub=o[a+216>>2];if((Xa|0)==(Ub|0)){break j}Vb=(Xa-Ub|0)/144|0;Wb=((Mb>>>0)%3|0?-1:2)+Mb|0;Pb=0;while(1){Xb=Mb<<2;Rb=Ub+u(Pb,144)|0;Xa=o[Xb+o[o[Rb+68>>2]>>2]>>2];k:{if(!(o[o[Rb+16>>2]+(Xa>>>3&536870908)>>2]>>>(Xa&31)&1)){break k}Xa=Mb;Kb=-1;l:{if((Wb|0)==-1){break l}Ob=o[o[Nb+12>>2]+(Wb<<2)>>2];Kb=-1;if((Ob|0)==-1){break l}Kb=Ob+ -1|0;if((Ob>>>0)%3){break l}Kb=Ob+2|0}if((Xa|0)==(Kb|0)){break k}Rb=o[Rb+32>>2];Xb=o[Rb+Xb>>2];while(1){Xa=0;if((Kb|0)==-1){break f}if((Xb|0)!=o[Rb+(Kb<<2)>>2]){Mb=Kb;break j}Ob=Mb;Kb=((Kb>>>0)%3|0?-1:2)+Kb|0;Xa=-1;m:{if((Kb|0)==-1){break m}Kb=o[o[Nb+12>>2]+(Kb<<2)>>2];Xa=-1;if((Kb|0)==-1){break m}Xa=Kb+ -1|0;if((Kb>>>0)%3){break m}Xa=Kb+2|0}Kb=Xa;if((Ob|0)!=(Kb|0)){continue}break}}Pb=Pb+1|0;if(Pb>>>0<Vb>>>0){continue}break}}Xa=o[Lb+36>>2];o[o[Lb+16>>2]+(Mb<<2)>>2]=Xa-o[Lb+32>>2]>>2;o[Lb>>2]=Mb;n:{if(r[Lb+40>>2]>Xa>>>0){o[Xa>>2]=Mb;o[Lb+36>>2]=Xa+4;break n}wa(Lb+32|0,Lb);Nb=o[Tb>>2]}if((Mb|0)==-1){break i}Xa=((Mb>>>0)%3|0?-1:2)+Mb|0;if((Xa|0)==-1){break i}Xa=o[o[Nb+12>>2]+(Xa<<2)>>2];if((Xa|0)==-1){break i}Kb=Xa+((Xa>>>0)%3|0?-1:2)|0;if((Kb|0)==-1){break i}Ob=Mb;if((Kb|0)==(Mb|0)){break i}while(1){Xa=Kb;o:{p:{Kb=o[Sb>>2];Pb=o[a+216>>2];if((Kb|0)==(Pb|0)){break p}Ub=(Kb-Pb|0)/144|0;Kb=0;while(1){Wb=o[(Pb+u(Kb,144)|0)+32>>2];Rb=Xa<<2;if(o[Wb+Rb>>2]==o[Wb+(Ob<<2)>>2]){Kb=Kb+1|0;if(Kb>>>0<Ub>>>0){continue}break p}break}Kb=o[Lb+36>>2];o[Rb+o[Lb+16>>2]>>2]=Kb-o[Lb+32>>2]>>2;o[Lb>>2]=Xa;if(r[Lb+40>>2]>Kb>>>0){o[Kb>>2]=Xa;o[Lb+36>>2]=Kb+4;break o}wa(Lb+32|0,Lb);Nb=o[Tb>>2];break o}Kb=o[Lb+16>>2];o[Kb+(Xa<<2)>>2]=o[Kb+(Ob<<2)>>2]}if((Xa|0)==-1){break i}Kb=Xa+((Xa>>>0)%3|0?-1:2)|0;if((Kb|0)==-1){break i}Kb=o[o[Nb+12>>2]+(Kb<<2)>>2];if((Kb|0)==-1){break i}Kb=Kb+((Kb>>>0)%3|0?-1:2)|0;if((Kb|0)==-1){break i}Ob=Xa;if((Kb|0)!=(Mb|0)){continue}break}}Qb=Qb+1|0;if((Qb|0)<o[Nb+28>>2]-o[Nb+24>>2]>>2){continue}break}break g}Yk();D()}Mb=o[a+4>>2];a=o[Mb+44>>2];Xa=o[a+100>>2];a=o[a+96>>2];if((Xa|0)!=(a|0)){Ob=(Xa-a|0)/12|0;Kb=0;Nb=o[Lb+16>>2];while(1){Qb=Lb+8|0;Pb=u(Kb,12);Xa=Pb+Nb|0;o[Qb>>2]=o[Xa+8>>2];Sb=o[Xa+4>>2];Tb=o[Xa>>2];o[Lb>>2]=Tb;o[Lb+4>>2]=Sb;Xa=a+Pb|0;o[Xa>>2]=Tb;o[Xa+4>>2]=o[Lb+4>>2];o[Xa+8>>2]=o[Qb>>2];Kb=Kb+1|0;if(Kb>>>0<Ob>>>0){continue}break}}o[o[Mb+4>>2]+80>>2]=o[Lb+36>>2]-o[Lb+32>>2]>>2;Xa=1}Kb=Xa;a=o[Lb+16>>2];if(a){o[Lb+20>>2]=a;ul(a)}a=o[Lb+32>>2];if(!a){break b}o[Lb+36>>2]=a;ul(a)}R=Lb+48|0;return Kb}function ah(a,Xa){var _b=0,$b=0,ac=0,bc=0,cc=0,dc=0;a:{bc=o[a>>2];cc=o[a+4>>2]-bc|0;_b=(cc|0)/12|0;$b=_b+1|0;if($b>>>0<357913942){dc=u(_b,12);ac=(o[a+8>>2]-bc|0)/12|0;_b=ac<<1;ac=ac>>>0<178956970?_b>>>0<$b>>>0?$b:_b:357913941;_b=0;b:{if(!ac){break b}if(ac>>>0>=357913942){break a}_b=Hk(u(ac,12))}$b=dc+_b|0;dc=o[Xa+4>>2];o[$b>>2]=o[Xa>>2];o[$b+4>>2]=dc;o[$b+8>>2]=o[Xa+8>>2];Xa=$b+u((cc|0)/-12|0,12)|0;_b=_b+u(ac,12)|0;$b=$b+12|0;if((cc|0)>=1){wl(Xa,bc,cc)}o[a>>2]=Xa;o[a+8>>2]=_b;o[a+4>>2]=$b;if(bc){ul(bc)}return}Yk();D()}_a(8776);D()}function bh(a,Xa){var ec=0,fc=0,gc=0,hc=0,ic=0,jc=0;a:{gc=o[a>>2];ic=o[a+4>>2]-gc|0;ec=ic>>2;fc=ec+1|0;if(fc>>>0<1073741824){jc=ec<<2;ec=o[a+8>>2]-gc|0;hc=ec>>1;fc=ec>>2>>>0<536870911?hc>>>0<fc>>>0?fc:hc:1073741823;ec=0;b:{if(!fc){break b}if(fc>>>0>=1073741824){break a}ec=Hk(fc<<2)}hc=jc+ec|0;o[hc>>2]=o[Xa>>2];Xa=ec+(fc<<2)|0;fc=hc+4|0;if((ic|0)>=1){wl(ec,gc,ic)}o[a>>2]=ec;o[a+8>>2]=Xa;o[a+4>>2]=fc;if(gc){ul(gc)}return}Yk();D()}_a(8776);D()}function ch(a,Xa,kc,lc){var mc=0,nc=0,oc=0,pc=0,qc=0,rc=v(0),sc=0,tc=v(0),uc=0;mc=o[kc>>2];uc=a;a:{b:{nc=o[Xa+4>>2];if(!nc){break b}sc=o[Xa>>2];pc=Yl(nc);kc=nc+ -1&mc;c:{if(pc>>>0<=1){break c}kc=mc;if(mc>>>0<nc>>>0){break c}kc=(mc>>>0)%(nc>>>0)|0}oc=kc;kc=o[(kc<<2)+sc>>2];if(!kc){break b}sc=nc+ -1|0;pc=pc>>>0>1;while(1){kc=o[kc>>2];if(!kc){break b}qc=o[kc+4>>2];if((qc|0)!=(mc|0)){d:{if(!pc){qc=qc&sc;break d}if(qc>>>0<nc>>>0){break d}qc=(qc>>>0)%(nc>>>0)|0}if((oc|0)!=(qc|0)){break b}}if(o[kc+8>>2]!=(mc|0)){continue}break}Xa=0;break a}kc=Hk(16);lc=o[o[lc>>2]>>2];o[kc+12>>2]=0;o[kc+8>>2]=lc;o[kc+4>>2]=mc;o[kc>>2]=0;tc=s[Xa+16>>2];rc=v(o[Xa+12>>2]+1>>>0);e:{if(!(!nc|!!(v(tc*v(nc>>>0))<rc))){mc=oc;break e}oc=(nc+ -1&nc)!=0|nc>>>0<3|nc<<1;lc=Xa;rc=v(B(v(rc/tc)));f:{if(rc<v(4294967296)&rc>=v(0)){pc=~~rc>>>0;break f}pc=0}Sh(lc,oc>>>0<pc>>>0?pc:oc);nc=o[Xa+4>>2];if(!(nc&nc+ -1)){mc=nc+ -1&mc;break e}if(mc>>>0<nc>>>0){break e}mc=(mc>>>0)%(nc>>>0)|0}lc=o[Xa>>2]+(mc<<2)|0;mc=o[lc>>2];g:{h:{if(!mc){oc=Xa+8|0;o[kc>>2]=o[oc>>2];o[oc>>2]=kc;o[lc>>2]=oc;lc=o[kc>>2];if(!lc){break g}mc=o[lc+4>>2];lc=nc+ -1|0;i:{if(!(lc&nc)){mc=lc&mc;break i}if(mc>>>0<nc>>>0){break i}mc=(mc>>>0)%(nc>>>0)|0}mc=o[Xa>>2]+(mc<<2)|0;break h}o[kc>>2]=o[mc>>2]}o[mc>>2]=kc}Xa=Xa+12|0;o[Xa>>2]=o[Xa>>2]+1;Xa=1}m[uc+4|0]=Xa;o[a>>2]=kc}function dh(a,Xa,kc){var lc=0,vc=0,wc=0,xc=0,yc=0;a:{b:{xc=o[a+8>>2];vc=a+4|0;lc=o[vc>>2];c:{if((xc-lc|0)/12>>>0>=Xa>>>0){while(1){a=o[kc+4>>2];o[lc>>2]=o[kc>>2];o[lc+4>>2]=a;o[lc+8>>2]=o[kc+8>>2];lc=o[vc>>2]+12|0;o[vc>>2]=lc;Xa=Xa+ -1|0;if(Xa){continue}break c}}wc=o[a>>2];yc=(lc-wc|0)/12|0;vc=yc+Xa|0;if(vc>>>0>=357913942){break b}xc=(xc-wc|0)/12|0;wc=xc<<1;vc=xc>>>0<178956970?wc>>>0<vc>>>0?vc:wc:357913941;lc=0;d:{if(!vc){break d}if(vc>>>0>=357913942){break a}lc=Hk(u(vc,12))}xc=lc+u(vc,12)|0;vc=lc+u(yc,12)|0;lc=vc;while(1){wc=o[kc+4>>2];o[lc>>2]=o[kc>>2];o[lc+4>>2]=wc;o[lc+8>>2]=o[kc+8>>2];lc=lc+12|0;Xa=Xa+ -1|0;if(Xa){continue}break}wc=a+4|0;Xa=o[a>>2];kc=o[wc>>2]-Xa|0;vc=vc+u((kc|0)/-12|0,12)|0;if((kc|0)>=1){wl(vc,Xa,kc)}o[a>>2]=vc;o[a+8>>2]=xc;o[wc>>2]=lc;if(!Xa){break c}ul(Xa)}return}Yk();D()}_a(8776);D()}function eh(a){a=a|0;return o[a+8>>2]}function fh(a){o[a>>2]=8224;xl(a+4|0,0,80);o[a+96>>2]=0;o[a+100>>2]=0;o[a+92>>2]=-1;o[a+84>>2]=-1;o[a+88>>2]=-1;o[a+104>>2]=0;o[a+108>>2]=0;o[a+112>>2]=0;o[a+116>>2]=0;o[a+120>>2]=0;o[a+124>>2]=0;o[a+128>>2]=0;o[a+132>>2]=0;o[a+136>>2]=0;o[a+140>>2]=0;o[a+144>>2]=0;o[a+148>>2]=0;o[a+156>>2]=0;o[a+160>>2]=0;o[a+152>>2]=1065353216;o[a+164>>2]=0;o[a+168>>2]=0;o[a+172>>2]=0;o[a+176>>2]=0;o[a+180>>2]=0;o[a+184>>2]=0;o[a+188>>2]=0;o[a+192>>2]=0;o[a+196>>2]=0;o[a+200>>2]=0;o[a+204>>2]=0;o[a+208>>2]=0;o[a+212>>2]=-1;o[a+216>>2]=0;o[a+220>>2]=0;o[a+224>>2]=0;Hg(a+232|0);o[a+388>>2]=0;o[a+392>>2]=0;o[a+380>>2]=0;o[a+384>>2]=0;o[a+416>>2]=0;o[a+420>>2]=0;o[a+412>>2]=7;o[a+404>>2]=-1;o[a+408>>2]=2;o[a+396>>2]=0;o[a+400>>2]=-1;o[a+424>>2]=0;o[a+428>>2]=0;o[a+432>>2]=0;o[a+436>>2]=0}function gh(a){a=a|0;var Xa=0,kc=0,zc=0,Ac=0,Bc=0,Cc=0,Dc=0,Ec=0,Fc=0,Gc=0,Hc=0,Ic=0,Jc=0,Kc=0;Bc=R+ -64|0;R=Bc;o[a+132>>2]=0;if(o[a+148>>2]){zc=a+144|0;Xa=o[zc>>2];if(Xa){while(1){kc=o[Xa>>2];ul(Xa);Xa=kc;if(Xa){continue}break}}o[zc>>2]=0;kc=o[a+140>>2];if(kc){zc=a+136|0;Xa=0;while(1){o[o[zc>>2]+(Xa<<2)>>2]=0;Xa=Xa+1|0;if((kc|0)!=(Xa|0)){continue}break}}o[a+148>>2]=0}a:{if(!Tg(1,Bc+60|0,o[o[a+4>>2]+32>>2])){break a}o[a+156>>2]=o[Bc+60>>2];if(!Tg(1,Bc+56|0,o[o[a+4>>2]+32>>2])){break a}Ac=o[Bc+56>>2];if(Ac>>>0>1431655765|r[a+156>>2]>u(Ac,3)>>>0){break a}Xa=o[o[a+4>>2]+32>>2];Cc=o[Xa+16>>2];zc=o[Xa+12>>2];kc=o[Xa+20>>2];if((zc|0)<(kc|0)?1:(zc|0)<=(kc|0)?r[Xa+8>>2]>Cc>>>0?0:1:0){break a}Dc=p[Cc+o[Xa>>2]|0];Cc=Cc+1|0;if(Cc>>>0<1){kc=kc+1|0}o[Xa+16>>2]=Cc;o[Xa+20>>2]=kc;if(!Tg(1,Bc+52|0,Xa)){break a}Gc=o[Bc+52>>2];if(Ac>>>0<Gc>>>0|Ac>>>0>Gc+((Gc>>>0)/3|0)>>>0){break a}if(!Tg(1,Bc+48|0,o[o[a+4>>2]+32>>2])){break a}Ec=o[Bc+48>>2];if(Ec>>>0>Gc>>>0){break a}o[a+28>>2]=o[a+24>>2];kc=Hk(88);zi(kc);Xa=o[a+8>>2];o[a+8>>2]=kc;Cc=a+8|0;if(Xa){ua(Cc,Xa);if(!o[Cc>>2]){break a}}Xa=o[a+160>>2];o[a+164>>2]=Xa;b:{c:{d:{e:{f:{if(o[a+168>>2]-Xa>>2>>>0>=Ac>>>0){break f}if(Ac>>>0>=1073741824){break e}zc=Ac<<2;kc=Hk(zc);o[a+164>>2]=kc;o[a+160>>2]=kc;o[a+168>>2]=kc+zc;if(!Xa){break f}ul(Xa)}Xa=o[a+172>>2];o[a+176>>2]=Xa;g:{if(o[a+180>>2]-Xa>>2>>>0>=Ac>>>0){break g}if(Ac>>>0>=1073741824){break d}zc=Ac<<2;kc=Hk(zc);o[a+176>>2]=kc;o[a+172>>2]=kc;o[a+180>>2]=kc+zc;if(!Xa){break g}ul(Xa)}o[a+92>>2]=-1;o[a+84>>2]=-1;o[a+88>>2]=-1;o[a+40>>2]=o[a+36>>2];o[a- -64>>2]=0;o[a+52>>2]=o[a+48>>2];o[a+76>>2]=o[a+72>>2];Hc=a+216|0;kc=o[a+220>>2];Xa=o[a+216>>2];if((kc|0)==(Xa|0)){break c}while(1){zc=o[kc+ -12>>2];if(zc){o[kc+ -8>>2]=zc;ul(zc)}zc=o[kc+ -28>>2];if(zc){o[kc+ -24>>2]=zc;ul(zc)}zc=kc+ -144|0;Fc=o[kc+ -40>>2];if(Fc){o[kc+ -36>>2]=Fc;ul(Fc)}Ug(kc+ -140|0);kc=zc;if((Xa|0)!=(kc|0)){continue}break}kc=o[Hc>>2];break b}_a(8776);D()}_a(8776);D()}kc=Xa}o[a+220>>2]=Xa;zc=(Xa-kc|0)/144|0;h:{if(zc>>>0<Dc>>>0){Vg(Hc,Dc-zc|0);break h}if(zc>>>0<=Dc>>>0){break h}zc=kc+u(Dc,144)|0;if((zc|0)!=(Xa|0)){while(1){kc=o[Xa+ -12>>2];if(kc){o[Xa+ -8>>2]=kc;ul(kc)}kc=o[Xa+ -28>>2];if(kc){o[Xa+ -24>>2]=kc;ul(kc)}kc=Xa+ -144|0;Fc=o[Xa+ -40>>2];if(Fc){o[Xa+ -36>>2]=Fc;ul(Fc)}Ug(Xa+ -140|0);Xa=kc;if((Xa|0)!=(zc|0)){continue}break}}o[a+220>>2]=zc}Fc=0;if(!Ji(o[a+8>>2],Ac,Ec+o[a+156>>2]|0)){break a}Xa=o[a+156>>2];m[Bc+8|0]=1;$a(a+120|0,Xa+Ec|0,Bc+8|0);if((Wg(a,o[o[a+4>>2]+32>>2])|0)==-1){break a}o[a+376>>2]=a;Ac=a+232|0;Xa=o[(l[o[o[a>>2]+32>>2]](a)|0)+32>>2];Ic=o[Xa>>2]+o[Xa+16>>2]|0;zc=o[(l[o[o[a>>2]+32>>2]](a)|0)+32>>2];Xa=o[zc+8>>2];kc=o[zc+16>>2];pi(Ac,Ic,Xa-kc|0,q[o[(l[o[o[a>>2]+32>>2]](a)|0)+32>>2]+38>>1]);Jc=a,Kc=l[o[o[a>>2]+36>>2]](a)|0,o[Jc+380>>2]=Kc;o[a+372>>2]=Dc;o[a+384>>2]=Ec+o[a+156>>2];Xa=oi(Bc+8|0);i:{if(!hh(Ac,Xa)){break i}Gc=ih(a,Gc);if((Gc|0)==-1){break i}zc=o[o[a+4>>2]+32>>2];kc=o[Xa+16>>2];Dc=kc+o[Xa>>2]|0;Xa=o[Xa+8>>2];pi(zc,Dc,Xa-kc|0,q[zc+38>>1]);j:{if(o[a+220>>2]==o[a+216>>2]){break j}Xa=o[Cc>>2];if(o[Xa+4>>2]==o[Xa>>2]){break j}Xa=0;while(1){if(Zg(a,Xa)){Xa=Xa+3|0;kc=o[Cc>>2];if(Xa>>>0<o[kc+4>>2]-o[kc>>2]>>2>>>0){continue}break j}break}break i}if(p[a+308|0]){si(a+272|0)}Xa=o[a+216>>2];Dc=a+220|0;if((Xa|0)!=o[Dc>>2]){zc=0;while(1){Ac=u(zc,144);Ui((Ac+Xa|0)+4|0,o[Cc>>2]);kc=o[Hc>>2];Ec=Ac+kc|0;Xa=o[Ec+132>>2];Ec=o[Ec+136>>2];if((Xa|0)!=(Ec|0)){while(1){Wi((kc+Ac|0)+4|0,o[Xa>>2]);kc=o[Hc>>2];Xa=Xa+4|0;if((Ec|0)!=(Xa|0)){continue}break}}Vi((kc+Ac|0)+4|0);zc=zc+1|0;Xa=o[a+216>>2];if(zc>>>0<(o[Dc>>2]-Xa|0)/144>>>0){continue}break}}Xa=o[a+8>>2];_g(a+184|0,o[Xa+28>>2]-o[Xa+24>>2]>>2);kc=o[a+216>>2];if((kc|0)!=o[Dc>>2]){Xa=0;Ac=a+220|0;while(1){kc=u(Xa,144)+kc|0;zc=o[kc+60>>2]-o[kc+56>>2]>>2;Dc=kc+104|0;kc=o[Cc>>2];kc=o[kc+28>>2]-o[kc+24>>2]>>2;_g(Dc,(zc|0)<(kc|0)?kc:zc);Xa=Xa+1|0;kc=o[a+216>>2];if(Xa>>>0<(o[Ac>>2]-kc|0)/144>>>0){continue}break}}Fc=$g(a,Gc)}}R=Bc- -64|0;return Fc|0}function hh(a,Lc){var Mc=0,Nc=0,Oc=0,Pc=0,Qc=0,Rc=0,Sc=0,Tc=0,Uc=0,Vc=0,Wc=0,Xc=0;Sc=R-16|0;R=Sc;a:{if(!Nf(a+80|0,a)){break a}if(!Xg(a)){break a}Mc=o[a+4>>2];o[Lc>>2]=o[a>>2];o[Lc+4>>2]=Mc;Mc=o[a+36>>2];o[Lc+32>>2]=o[a+32>>2];o[Lc+36>>2]=Mc;Mc=o[a+28>>2];o[Lc+24>>2]=o[a+24>>2];o[Lc+28>>2]=Mc;Mc=o[a+20>>2];o[Lc+16>>2]=o[a+16>>2];o[Lc+20>>2]=Mc;Mc=o[a+12>>2];o[Lc+8>>2]=o[a+8>>2];o[Lc+12>>2]=Mc;o[a+176>>2]=2;o[a+180>>2]=7;Mc=o[a+152>>2];if((Mc|0)<0){break a}o[Sc+12>>2]=0;Oc=2;Pc=o[a+156>>2];Rc=o[a+160>>2]-Pc>>2;b:{if(Mc>>>0>Rc>>>0){yd(a+156|0,Mc-Rc|0,Sc+12|0);Oc=o[a+176>>2];Nc=o[a+180>>2];break b}Nc=7;if(Mc>>>0>=Rc>>>0){break b}o[a+160>>2]=Pc+(Mc<<2)}Rc=a+184|0;Nc=(Nc-Oc|0)+1|0;Pc=a+188|0;Mc=o[Pc>>2];Qc=o[a+184>>2];Oc=(Mc-Qc|0)/12|0;c:{if(Nc>>>0>Oc>>>0){jh(Rc,Nc-Oc|0);Nc=o[Pc>>2];break c}if(Nc>>>0>=Oc>>>0){Nc=Mc;break c}Nc=Qc+u(Nc,12)|0;if((Nc|0)!=(Mc|0)){while(1){Oc=Mc+ -12|0;Pc=o[Oc>>2];if(Pc){o[Mc+ -8>>2]=Pc;ul(Pc)}Mc=Oc;if((Mc|0)!=(Nc|0)){continue}break}}o[a+188>>2]=Nc}Pc=a+196|0;Mc=o[a+184>>2];Oc=(Nc-Mc|0)/12|0;Tc=o[a+196>>2];Qc=o[a+200>>2]-Tc>>2;d:{if(Oc>>>0>Qc>>>0){Da(Pc,Oc-Qc|0);Nc=o[a+188>>2];Mc=o[a+184>>2];break d}if(Oc>>>0>=Qc>>>0){break d}o[a+200>>2]=Tc+(Oc<<2)}Oc=1;if((Mc|0)==(Nc|0)){break a}Mc=0;Xc=a+188|0;while(1){Tg(1,Sc+8|0,Lc);Nc=o[Sc+8>>2];if(Nc){Oc=o[Rc>>2];Uc=u(Mc,12);Qc=Oc+Uc|0;Vc=Qc+4|0;Wc=o[Qc>>2];Tc=o[Vc>>2]-Wc>>2;e:{if(Nc>>>0>Tc>>>0){Da(Qc,Nc-Tc|0);Oc=o[Rc>>2];break e}if(Nc>>>0>=Tc>>>0){break e}o[Vc>>2]=(Nc<<2)+Wc}_f(Nc,1,Lc,o[Oc+Uc>>2]);o[o[Pc>>2]+(Mc<<2)>>2]=Nc}Oc=1;Mc=Mc+1|0;if(Mc>>>0<(o[Xc>>2]-o[a+184>>2]|0)/12>>>0){continue}break}}R=Sc+16|0;return Oc}function ih(a,Lc){var Yc=0,Zc=0,_c=0,$c=0,ad=0,bd=0,cd=0,dd=0,ed=0,fd=0,gd=0,hd=0,id=0,jd=0,kd=0,ld=0,md=0,nd=0,od=0,pd=0,qd=0,rd=0,sd=0,td=0,ud=0,vd=0,wd=0;ad=R-96|0;R=ad;o[ad+72>>2]=0;o[ad+64>>2]=0;o[ad+68>>2]=0;o[ad+48>>2]=0;o[ad+52>>2]=0;o[ad+40>>2]=0;o[ad+44>>2]=0;o[ad+56>>2]=1065353216;o[ad+32>>2]=0;o[ad+24>>2]=0;o[ad+28>>2]=0;jd=o[a+124>>2];a:{b:{c:{if((Lc|0)>=1){qd=a+232|0;hd=a+8|0;nd=a+40|0;rd=a+428|0;ld=a+416|0;sd=a+388|0;td=o[a+216>>2]!=o[a+220>>2];while(1){d:{e:{f:{Yc=o[a+404>>2];g:{h:{if((Yc|0)!=-1){$c=-1;Zc=o[rd>>2]+(Yc<<2)|0;_c=o[Zc>>2];Yc=_c+ -1|0;o[Zc>>2]=Yc;if((_c|0)<1){break c}Yc=o[o[o[ld>>2]+u(o[a+404>>2],12)>>2]+(Yc<<2)>>2];Zc=o[(Yc<<2)+8848>>2];o[a+400>>2]=Zc;if(!Yc){Yc=o[ad+68>>2];if((Yc|0)==o[ad+64>>2]){break c}cd=-1;_c=o[hd>>2];id=o[_c+24>>2];bd=id;md=Yc+ -4|0;$c=o[md>>2];Zc=-1;i:{if(($c|0)==-1){break i}fd=$c+1|0;fd=(fd>>>0)%3|0?fd:$c+ -2|0;Zc=-1;if((fd|0)==-1){break i}Zc=o[o[_c>>2]+(fd<<2)>>2]}bd=o[bd+(Zc<<2)>>2];if((bd|0)!=-1){cd=bd+1|0;cd=(cd>>>0)%3|0?cd:bd+ -2|0}bd=o[_c+12>>2];fd=u(dd,3);ed=fd+1|0;o[bd+($c<<2)>>2]=ed;kd=ed<<2;o[kd+bd>>2]=$c;ed=fd+2|0;o[bd+(cd<<2)>>2]=ed;gd=ed<<2;o[gd+bd>>2]=cd;_c=o[_c>>2];o[_c+(fd<<2)>>2]=Zc;bd=_c+kd|0;kd=-1;j:{if((cd|0)==-1){break j}od=cd+1|0;cd=(od>>>0)%3|0?od:cd+ -2|0;kd=-1;if((cd|0)==-1){break j}kd=o[_c+(cd<<2)>>2]}o[bd>>2]=kd;k:{l:{if(($c|0)!=-1){$c=$c+(($c>>>0)%3|0?-1:2)|0;if(($c|0)!=-1){break l}}o[_c+gd>>2]=-1;break k}$c=o[_c+($c<<2)>>2];o[_c+gd>>2]=$c;if(($c|0)==-1){break k}o[id+($c<<2)>>2]=ed}$c=o[a+120>>2]+(Zc>>>3&536870908)|0;_c=o[$c>>2];vd=$c,wd=Zl(Zc)&_c,o[vd>>2]=wd;o[md>>2]=fd;Zc=0;break d}Zc=Zc+ -1|0;if(Zc>>>0>6){break c}m:{switch(Zc-1|0){case 1:case 3:cd=o[ad+68>>2];if((cd|0)==o[ad+64>>2]){break c}Zc=o[hd>>2];$c=o[Zc+12>>2];_c=u(dd,3);bd=(Yc|0)==3;fd=_c+(bd?2:1)|0;id=fd<<2;Yc=o[cd+ -4>>2];o[$c+id>>2]=Yc;o[$c+(Yc<<2)>>2]=fd;ed=Zc+24|0;cd=o[Zc+32>>2];Zc=Zc+28|0;$c=o[Zc>>2];n:{if((cd|0)!=($c|0)){o[$c>>2]=-1;gd=$c+4|0;o[Zc>>2]=gd;break n}bh(ed,8212);gd=o[Zc>>2]}$c=-1;Zc=o[hd>>2];cd=o[Zc+24>>2];if(o[Zc+28>>2]-cd>>2>(jd|0)){break c}$c=_c+2|0;Zc=o[Zc>>2];ed=gd-o[ed>>2]|0;gd=(ed>>2)+ -1|0;o[Zc+id>>2]=gd;if(ed){o[cd+(gd<<2)>>2]=fd}$c=bd?_c:$c;id=Zc+(_c+bd<<2)|0;o:{p:{q:{if((Yc|0)!=-1){bd=Yc+((Yc>>>0)%3|0?-1:2)|0;if((bd|0)==-1){break q}bd=o[Zc+(bd<<2)>>2];o[Zc+($c<<2)>>2]=bd;if((bd|0)==-1){break p}o[cd+(bd<<2)>>2]=$c;break p}o[Zc+($c<<2)>>2]=-1;$c=-1;break o}o[Zc+($c<<2)>>2]=-1}cd=Yc+1|0;Yc=(cd>>>0)%3|0?cd:Yc+ -2|0;$c=-1;if((Yc|0)==-1){break o}$c=o[Zc+(Yc<<2)>>2]}o[id>>2]=$c;Yc=o[ad+68>>2];o[Yc+ -4>>2]=_c;break g;case 5:break h;case 0:case 2:case 4:break c;default:break m}}Yc=o[ad+68>>2];gd=o[ad+64>>2];if((Yc|0)==(gd|0)){break c}Zc=Yc+ -4|0;fd=o[Zc>>2];o[ad+68>>2]=Zc;ed=o[ad+44>>2];r:{if(!ed){Yc=Zc;break r}id=Yl(ed)>>>0>1;s:{if(!id){_c=ed+2147483647&dd;break s}_c=dd;if(_c>>>0<ed>>>0){break s}_c=(dd>>>0)%(ed>>>0)|0}cd=o[o[ad+40>>2]+(_c<<2)>>2];if(!cd){Yc=Zc;break r}bd=o[cd>>2];if(!bd){Yc=Zc;break r}md=ed+ -1|0;t:{while(1){cd=o[bd+4>>2];u:{if((dd|0)!=(cd|0)){v:{if(!id){cd=cd&md;break v}if(cd>>>0<ed>>>0){break v}cd=(cd>>>0)%(ed>>>0)|0}if((_c|0)==(cd|0)){break u}Yc=Zc;break r}if(o[bd+8>>2]==(dd|0)){break t}}bd=o[bd>>2];if(bd){continue}break}Yc=Zc;break r}_c=bd+12|0;if((Zc|0)!=o[ad+72>>2]){o[Zc>>2]=o[_c>>2];o[ad+68>>2]=Yc;break r}bh(ad- -64|0,_c);Yc=o[ad+68>>2];gd=o[ad+64>>2]}if((Yc|0)==(gd|0)){break c}Zc=o[Yc+ -4>>2];cd=(Zc|0)==-1;ed=o[hd>>2];if(o[o[ed+12>>2]+(Zc<<2)>>2]!=-1?!cd:0){break c}kd=(fd|0)==-1;md=ed+12|0;_c=o[md>>2];if(o[_c+(fd<<2)>>2]!=-1?!kd:0){break c}gd=u(dd,3);id=gd+2|0;o[_c+(Zc<<2)>>2]=id;bd=id<<2;o[bd+_c>>2]=Zc;$c=gd+1|0;o[_c+(fd<<2)>>2]=$c;od=$c<<2;o[od+_c>>2]=fd;if(cd){break f}$c=-1;cd=-1;_c=o[ed>>2];ud=_c+(gd<<2)|0;pd=Zc+((Zc>>>0)%3|0?-1:2)|0;if((pd|0)!=-1){cd=o[(pd<<2)+_c>>2]}o[ud>>2]=cd;pd=Zc+1|0;Zc=(pd>>>0)%3|0?pd:Zc+ -2|0;if((Zc|0)==-1){break e}$c=o[(Zc<<2)+_c>>2];break e}o[a+400>>2]=7}o[ad>>2]=u(dd,3);Yc=o[hd>>2];$c=Yc+24|0;_c=o[Yc+32>>2];Yc=Yc+28|0;Zc=o[Yc>>2];w:{if((_c|0)!=(Zc|0)){o[Zc>>2]=-1;_c=Yc;Yc=Zc+4|0;o[_c>>2]=Yc;break w}bh($c,8212);Yc=o[Yc>>2]}Zc=o[hd>>2];bd=o[Zc>>2];cd=o[ad>>2];_c=Yc-o[$c>>2]|0;$c=_c>>2;ed=$c+ -1|0;o[bd+(cd<<2)>>2]=ed;gd=cd+1|0;cd=Zc+24|0;Yc=Zc+28|0;fd=o[Yc>>2];x:{if((fd|0)!=o[Zc+32>>2]){o[fd>>2]=-1;Zc=Yc;Yc=fd+4|0;o[Zc>>2]=Yc;break x}bh(cd,8212);Yc=o[Yc>>2];bd=o[Zc>>2]}o[(gd<<2)+bd>>2]=(Yc-o[cd>>2]>>2)+ -1;fd=o[ad>>2]+2|0;Yc=o[hd>>2];cd=Yc+28|0;Zc=o[cd>>2];y:{if((Zc|0)!=o[Yc+32>>2]){o[Zc>>2]=-1;bd=Zc+4|0;o[cd>>2]=bd;break y}bh(Yc+24|0,8212);bd=o[cd>>2]}o[o[Yc>>2]+(fd<<2)>>2]=(bd-o[Yc+24>>2]>>2)+ -1;Zc=o[hd>>2];Yc=o[Zc+24>>2];z:{if(o[Zc+28>>2]-Yc>>2<=(jd|0)){Zc=o[ad>>2];A:{B:{if(!_c){bd=1;o[Yc+($c<<2)>>2]=Zc+1;break B}o[Yc+(ed<<2)>>2]=Zc;bd=0;if((_c|0)==-4){break B}o[Yc+($c<<2)>>2]=o[ad>>2]+1;bd=$c+1|0;if((bd|0)==-1){break A}}o[Yc+(bd<<2)>>2]=o[ad>>2]+2}Yc=o[ad+68>>2];if((Yc|0)==o[ad+72>>2]){break z}o[Yc>>2]=o[ad>>2];Yc=Yc+4|0;o[ad+68>>2]=Yc;break g}$c=-1;break c}bh(ad- -64|0,ad);Yc=o[ad+68>>2]}Zc=1;break d}cd=-1;_c=o[ed>>2];o[_c+(gd<<2)>>2]=-1;$c=-1}o[_c+od>>2]=$c;C:{D:{E:{if(!kd){Zc=fd+((fd>>>0)%3|0?-1:2)|0;if((Zc|0)==-1){break E}Zc=o[(Zc<<2)+_c>>2];o[_c+bd>>2]=Zc;if((Zc|0)==-1){break D}o[o[ed+24>>2]+(Zc<<2)>>2]=id;break D}o[_c+bd>>2]=-1;bd=-1;$c=-1;break C}o[_c+bd>>2]=-1}bd=-1;Zc=fd+1|0;Zc=(Zc>>>0)%3|0?Zc:fd+ -2|0;$c=-1;if((Zc|0)==-1){break C}bd=o[(Zc<<2)+_c>>2];$c=Zc}o[ad>>2]=bd;Zc=o[sd>>2];_c=cd<<2;fd=Zc+_c|0;o[fd>>2]=o[fd>>2]+o[Zc+(bd<<2)>>2];Zc=o[ed+24>>2];if((cd|0)!=-1){o[Zc+_c>>2]=o[Zc+(o[ad>>2]<<2)>>2]}F:{if(($c|0)==-1){break F}_c=o[ed>>2];while(1){o[_c+($c<<2)>>2]=cd;bd=$c+1|0;$c=(bd>>>0)%3|0?bd:$c+ -2|0;if(($c|0)==-1){break F}$c=o[o[md>>2]+($c<<2)>>2];if(($c|0)==-1){break F}bd=$c+1|0;$c=(bd>>>0)%3|0?bd:$c+ -2|0;if(($c|0)!=-1){continue}break}}o[Zc+(o[ad>>2]<<2)>>2]=-1;G:{if(td){break G}Zc=o[ad+28>>2];if((Zc|0)!=o[ad+32>>2]){o[Zc>>2]=o[ad>>2];o[ad+28>>2]=Zc+4;break G}bh(ad+24|0,ad);Yc=o[ad+68>>2]}o[Yc+ -4>>2]=gd;Zc=0}kh(qd,o[Yc+ -4>>2]);H:{if(!Zc){break H}Yc=o[nd>>2];if((Yc|0)==o[a+36>>2]){break H}_c=(dd^-1)+Lc|0;while(1){$c=-1;Zc=o[Yc+ -8>>2];if(Zc>>>0>_c>>>0){break c}if((Zc|0)!=(_c|0)){break H}Zc=p[Yc+ -4|0];Yc=Yc+ -12|0;cd=o[Yc>>2];o[nd>>2]=Yc;if((cd|0)<0){break c}Yc=o[o[ad+68>>2]+ -4>>2];o[ad+20>>2]=(cd^-1)+Lc;o[ad+88>>2]=ad+20;ch(ad,ad+40|0,ad+20|0,ad+88|0);$c=o[ad>>2];I:{if(Zc&1){Zc=-1;if((Yc|0)==-1){break I}Zc=Yc+1|0;Zc=(Zc>>>0)%3|0?Zc:Yc+ -2|0;break I}Zc=-1;if((Yc|0)==-1){break I}Zc=Yc+ -1|0;if((Yc>>>0)%3){break I}Zc=Yc+2|0}o[$c+12>>2]=Zc;Yc=o[nd>>2];if((Yc|0)!=o[a+36>>2]){continue}break}}dd=dd+1|0;if((dd|0)!=(Lc|0)){continue}break}Zc=Lc}$c=-1;bd=o[a+8>>2];if(o[bd+28>>2]-o[bd+24>>2]>>2>(jd|0)){break c}Yc=o[ad+68>>2];if((Yc|0)!=o[ad+64>>2]){nd=a+72|0;Lc=a+60|0;sd=a+312|0;td=a+8|0;id=a+68|0;qd=a+80|0;fd=a+76|0;while(1){Yc=Yc+ -4|0;dd=o[Yc>>2];o[ad+68>>2]=Yc;o[ad>>2]=dd;J:{if(Pf(sd)){gd=o[td>>2];hd=o[gd>>2];if((Zc|0)>=((o[gd+4>>2]-hd>>2>>>0)/3|0)){break c}Yc=-1;bd=-1;ed=o[ad>>2];cd=-1;K:{if((ed|0)==-1){break K}_c=ed+1|0;_c=(_c>>>0)%3|0?_c:ed+ -2|0;cd=-1;if((_c|0)==-1){break K}cd=o[hd+(_c<<2)>>2]}_c=o[gd+24>>2];dd=o[(cd<<2)+_c>>2];L:{if((dd|0)==-1){break L}jd=dd+1|0;dd=(jd>>>0)%3|0?jd:dd+ -2|0;if((dd|0)==-1){break L}Yc=dd+1|0;Yc=(Yc>>>0)%3|0?Yc:dd+ -2|0;if((Yc|0)!=-1){bd=o[hd+(Yc<<2)>>2]}Yc=dd}jd=-1;rd=-1;_c=o[_c+(bd<<2)>>2];dd=-1;M:{if((_c|0)==-1){break M}ld=_c+1|0;_c=(ld>>>0)%3|0?ld:_c+ -2|0;dd=-1;if((_c|0)==-1){break M}dd=_c+1|0;dd=(dd>>>0)%3|0?dd:_c+ -2|0;if((dd|0)!=-1){rd=o[hd+(dd<<2)>>2]}dd=_c}ld=u(Zc,3);o[ad+88>>2]=ld;_c=o[gd+12>>2];o[_c+(ld<<2)>>2]=ed;o[_c+(ed<<2)>>2]=ld;ed=o[ad+88>>2]+1|0;o[_c+(ed<<2)>>2]=Yc;o[_c+(Yc<<2)>>2]=ed;Yc=o[ad+88>>2]+2|0;o[_c+(Yc<<2)>>2]=dd;o[_c+(dd<<2)>>2]=Yc;Yc=o[ad+88>>2];o[hd+(Yc<<2)>>2]=bd;dd=Yc+1|0;ed=hd+(dd<<2)|0;o[ed>>2]=rd;gd=Yc+2|0;hd=hd+(gd<<2)|0;o[hd>>2]=cd;_c=o[a+120>>2];Yc=dd>>>0<Yc>>>0?-1:bd;cd=_c+(Yc>>>3&536870908)|0;bd=o[cd>>2];vd=cd,wd=Zl(Yc)&bd,o[vd>>2]=wd;jd=(dd|0)!=-1?o[ed>>2]:jd;Yc=_c+(jd>>>3&536870908)|0;dd=o[Yc>>2];vd=Yc,wd=Zl(jd)&dd,o[vd>>2]=wd;Yc=-1;Yc=(gd|0)!=-1?o[hd>>2]:Yc;dd=_c+(Yc>>>3&536870908)|0;_c=o[dd>>2];vd=dd,wd=Zl(Yc)&_c,o[vd>>2]=wd;Yc=o[a+64>>2];_c=o[id>>2];if((Yc|0)==_c<<5){if((Yc+1|0)<=-1){break a}dd=Lc;if(Yc>>>0<=1073741822){Yc=Yc+32&-32;_c=_c<<6;Yc=_c>>>0<Yc>>>0?Yc:_c}else{Yc=2147483647}ab(dd,Yc);Yc=o[a+64>>2]}Zc=Zc+1|0;o[a+64>>2]=Yc+1;dd=o[a+60>>2]+(Yc>>>3&536870908)|0;o[dd>>2]=o[dd>>2]|1<<(Yc&31);Yc=o[fd>>2];if((Yc|0)!=o[qd>>2]){o[Yc>>2]=o[ad+88>>2];o[fd>>2]=Yc+4;break J}bh(nd,ad+88|0);break J}Yc=o[a+64>>2];_c=o[id>>2];if((Yc|0)==_c<<5){if((Yc+1|0)<=-1){break a}dd=Lc;if(Yc>>>0<=1073741822){Yc=Yc+32&-32;_c=_c<<6;Yc=_c>>>0<Yc>>>0?Yc:_c}else{Yc=2147483647}ab(dd,Yc);Yc=o[a+64>>2]}o[a+64>>2]=Yc+1;dd=o[a+60>>2]+(Yc>>>3&536870908)|0;_c=o[dd>>2];vd=dd,wd=Zl(Yc)&_c,o[vd>>2]=wd;Yc=o[fd>>2];if((Yc|0)!=o[qd>>2]){o[Yc>>2]=o[ad>>2];o[fd>>2]=Yc+4;break J}bh(nd,ad)}Yc=o[ad+68>>2];if((Yc|0)!=o[ad+64>>2]){continue}break}bd=o[a+8>>2]}if(((o[bd+4>>2]-o[bd>>2]>>2>>>0)/3|0)!=(Zc|0)){break c}$c=o[bd+28>>2]-o[bd+24>>2]>>2;Lc=o[ad+24>>2];cd=o[ad+28>>2];if((Lc|0)==(cd|0)){break b}hd=a+8|0;while(1){_c=o[Lc>>2];Zc=o[bd+24>>2];Yc=$c+ -1|0;N:{if(o[Zc+(Yc<<2)>>2]!=-1){dd=$c;break N}Zc=o[bd+24>>2];while(1){Yc=$c+ -2|0;dd=$c+ -1|0;$c=dd;if(o[(Yc<<2)+Zc>>2]==-1){continue}break}}if(!(Yc>>>0<_c>>>0)){o[ad>>2]=bd;$c=Zc;Zc=Yc<<2;$c=o[$c+Zc>>2];m[ad+12|0]=1;o[ad+8>>2]=$c;o[ad+4>>2]=$c;if(($c|0)!=-1){while(1){o[o[bd>>2]+($c<<2)>>2]=_c;jf(ad);bd=o[hd>>2];$c=o[ad+8>>2];if(($c|0)!=-1){continue}break}}$c=o[bd+24>>2];Zc=$c+Zc|0;if((_c|0)!=-1){o[$c+(_c<<2)>>2]=o[Zc>>2]}o[Zc>>2]=-1;Zc=1<<(_c&31);$c=_c>>>3&536870908;_c=o[a+120>>2];$c=$c+_c|0;id=$c;ed=1<<(Yc&31);_c=_c+(Yc>>>3&536870908)|0;Yc=Zc|o[$c>>2];O:{if(ed&o[_c>>2]){break O}Yc=o[$c>>2]&(Zc^-1)}o[id>>2]=Yc;o[_c>>2]=o[_c>>2]&(ed^-1);dd=dd+ -1|0}$c=dd;Lc=Lc+4|0;if((cd|0)!=(Lc|0)){continue}break}}Lc=o[ad+24>>2]}if(Lc){o[ad+28>>2]=Lc;ul(Lc)}Yc=o[ad+48>>2];if(Yc){while(1){a=o[Yc>>2];ul(Yc);Yc=a;if(Yc){continue}break}}a=o[ad+40>>2];o[ad+40>>2]=0;if(a){ul(a)}a=o[ad+64>>2];if(a){o[ad+68>>2]=a;ul(a)}R=ad+96|0;return $c}Yk();D()}function jh(a,Lc){var xd=0,yd=0,zd=0,Ad=0,Bd=0,Cd=0,Dd=0,Ed=0,Fd=0;zd=o[a+8>>2];Ad=a+4|0;xd=o[Ad>>2];if((zd-xd|0)/12>>>0>=Lc>>>0){a=u(Lc,12);Ed=Ad,Fd=xl(xd,0,a)+a|0,o[Ed>>2]=Fd;return}a:{Ad=o[a>>2];yd=(xd-Ad|0)/12|0;Bd=yd+Lc|0;if(Bd>>>0<357913942){Dd=u(yd,12);zd=(zd-Ad|0)/12|0;yd=zd<<1;yd=zd>>>0<178956970?yd>>>0<Bd>>>0?Bd:yd:357913941;if(yd){if(yd>>>0>=357913942){break a}Cd=Hk(u(yd,12))}zd=Cd+Dd|0;xl(zd,0,u(Lc,12));Lc=u(Bd,12)+Cd|0;Bd=u(yd,12)+Cd|0;if((xd|0)!=(Ad|0)){while(1){zd=zd+ -12|0;o[zd>>2]=0;o[zd+4>>2]=0;yd=zd+8|0;o[yd>>2]=0;xd=xd+ -12|0;o[zd>>2]=o[xd>>2];o[zd+4>>2]=o[xd+4>>2];Cd=yd;yd=xd+8|0;o[Cd>>2]=o[yd>>2];o[yd>>2]=0;o[xd>>2]=0;o[xd+4>>2]=0;if((xd|0)!=(Ad|0)){continue}break}Ad=o[a>>2];xd=o[a+4>>2]}o[a>>2]=zd;o[a+8>>2]=Bd;o[a+4>>2]=Lc;if((xd|0)!=(Ad|0)){while(1){a=xd+ -12|0;Lc=o[a>>2];if(Lc){o[xd+ -8>>2]=Lc;ul(Lc)}xd=a;if((xd|0)!=(Ad|0)){continue}break}}if(Ad){ul(Ad)}return}Yk();D()}_a(8776);D()}function kh(a,Lc){var Gd=0,Hd=0,Id=0,Jd=0,Kd=0;Jd=-1;Hd=-1;a:{if((Lc|0)==-1){break a}Hd=Lc+1|0;Jd=(Hd>>>0)%3|0?Hd:Lc+ -2|0;Hd=Lc+ -1|0;if((Lc>>>0)%3){break a}Hd=Lc+2|0}Gd=o[a+168>>2];b:{if(Gd>>>0>7){break b}c:{d:{switch(Gd-2|0){default:Gd=o[a+148>>2];Id=1;Lc=o[a+156>>2];Kd=Lc+(((Jd|0)!=-1?o[o[Gd>>2]+(Jd<<2)>>2]:-1)<<2)|0;o[Kd>>2]=o[Kd>>2]+1;Lc=(((Hd|0)!=-1?o[o[Gd>>2]+(Hd<<2)>>2]:-1)<<2)+Lc|0;break c;case 3:Id=o[a+148>>2];Gd=-1;Gd=((Lc|0)!=-1?o[o[Id>>2]+(Lc<<2)>>2]:Gd)<<2;Lc=o[a+156>>2];Gd=Gd+Lc|0;o[Gd>>2]=o[Gd>>2]+1;Gd=(((Jd|0)!=-1?o[o[Id>>2]+(Jd<<2)>>2]:-1)<<2)+Lc|0;o[Gd>>2]=o[Gd>>2]+1;Gd=-1;Gd=(Hd|0)!=-1?o[o[Id>>2]+(Hd<<2)>>2]:Gd;Id=2;Lc=Lc+(Gd<<2)|0;break c;case 1:Id=o[a+148>>2];Gd=-1;Gd=((Lc|0)!=-1?o[o[Id>>2]+(Lc<<2)>>2]:Gd)<<2;Lc=o[a+156>>2];Gd=Gd+Lc|0;o[Gd>>2]=o[Gd>>2]+1;Gd=(((Jd|0)!=-1?o[o[Id>>2]+(Jd<<2)>>2]:-1)<<2)+Lc|0;o[Gd>>2]=o[Gd>>2]+2;Lc=(((Hd|0)!=-1?o[o[Id>>2]+(Hd<<2)>>2]:-1)<<2)+Lc|0;Id=1;break c;case 0:case 2:case 4:break b;case 5:break d}}Id=o[a+148>>2];Gd=-1;Gd=((Lc|0)!=-1?o[o[Id>>2]+(Lc<<2)>>2]:Gd)<<2;Lc=o[a+156>>2];Gd=Gd+Lc|0;o[Gd>>2]=o[Gd>>2]+2;Gd=(((Jd|0)!=-1?o[o[Id>>2]+(Jd<<2)>>2]:-1)<<2)+Lc|0;o[Gd>>2]=o[Gd>>2]+2;Gd=-1;Gd=(Hd|0)!=-1?o[o[Id>>2]+(Hd<<2)>>2]:Gd;Id=2;Lc=Lc+(Gd<<2)|0}o[Lc>>2]=o[Lc>>2]+Id}Gd=-1;Gd=(Jd|0)!=-1?o[o[o[a+148>>2]>>2]+(Jd<<2)>>2]:Gd;Jd=o[a+176>>2];Lc=Jd;Hd=a;Gd=o[o[a+156>>2]+(Gd<<2)>>2];if((Gd|0)>=(Lc|0)){a=o[a+180>>2];Lc=(Gd|0)>(a|0)?a:Gd}o[Hd+172>>2]=Lc-Jd}function lh(a){a=a|0;var Lc=0,Ld=0,Md=0,Nd=0,Od=0;o[a>>2]=8172;Lc=a+368|0;Md=o[Lc>>2];o[Lc>>2]=0;if(Md){Ld=Md+ -4|0;Lc=o[Ld>>2];if(Lc){Lc=Md+(Lc<<4)|0;while(1){Lc=Lc+ -16|0;if((Md|0)!=(Lc|0)){continue}break}}ul(Ld)}Md=o[a+216>>2];if(Md){Od=a+220|0;Lc=o[Od>>2];Ld=Md;a:{if((Md|0)==(Lc|0)){break a}while(1){Ld=o[Lc+ -12>>2];if(Ld){o[Lc+ -8>>2]=Ld;ul(Ld)}Ld=o[Lc+ -28>>2];if(Ld){o[Lc+ -24>>2]=Ld;ul(Ld)}Ld=Lc+ -144|0;Nd=o[Lc+ -40>>2];if(Nd){o[Lc+ -36>>2]=Nd;ul(Nd)}Ug(Lc+ -140|0);Lc=Ld;if((Md|0)!=(Lc|0)){continue}break}Ld=o[a+216>>2]}o[Od>>2]=Md;ul(Ld)}Lc=o[a+196>>2];if(Lc){o[a+200>>2]=Lc;ul(Lc)}Lc=o[a+184>>2];if(Lc){o[a+188>>2]=Lc;ul(Lc)}Lc=o[a+172>>2];if(Lc){o[a+176>>2]=Lc;ul(Lc)}Lc=o[a+160>>2];if(Lc){o[a+164>>2]=Lc;ul(Lc)}Lc=o[a+144>>2];if(Lc){while(1){Md=o[Lc>>2];ul(Lc);Lc=Md;if(Lc){continue}break}}Md=a+136|0;Lc=o[Md>>2];o[Md>>2]=0;if(Lc){ul(Lc)}Lc=o[a+120>>2];if(Lc){ul(Lc)}Lc=o[a+108>>2];if(Lc){ul(Lc)}Lc=o[a+96>>2];if(Lc){ul(Lc)}Lc=o[a+72>>2];if(Lc){o[a+76>>2]=Lc;ul(Lc)}Lc=o[a+60>>2];if(Lc){ul(Lc)}Lc=o[a+48>>2];if(Lc){o[a+52>>2]=Lc;ul(Lc)}Lc=o[a+36>>2];if(Lc){o[a+40>>2]=Lc;ul(Lc)}Lc=o[a+24>>2];if(Lc){o[a+28>>2]=Lc;ul(Lc)}Lc=o[a+12>>2];if(Lc){o[a+16>>2]=Lc;ul(Lc)}Lc=o[a+8>>2];o[a+8>>2]=0;if(Lc){ua(a+8|0,Lc)}return a|0}function mh(a){a=a|0;ul(lh(a))}function nh(a){a=a|0;var Pd=0,Qd=0,Rd=0,Sd=0,Td=0;o[a>>2]=8224;oh(a+232|0);Sd=o[a+216>>2];if(Sd){Qd=Sd;Td=a+220|0;Pd=o[Td>>2];Rd=Qd;a:{if((Qd|0)==(Pd|0)){break a}while(1){Qd=o[Pd+ -12>>2];if(Qd){o[Pd+ -8>>2]=Qd;ul(Qd)}Qd=o[Pd+ -28>>2];if(Qd){o[Pd+ -24>>2]=Qd;ul(Qd)}Qd=Pd+ -144|0;Rd=o[Pd+ -40>>2];if(Rd){o[Pd+ -36>>2]=Rd;ul(Rd)}Ug(Pd+ -140|0);Pd=Qd;if((Sd|0)!=(Pd|0)){continue}break}Rd=o[a+216>>2]}Qd=Rd;o[Td>>2]=Sd;ul(Qd)}Pd=o[a+196>>2];if(Pd){o[a+200>>2]=Pd;ul(Pd)}Pd=o[a+184>>2];if(Pd){o[a+188>>2]=Pd;ul(Pd)}Pd=o[a+172>>2];if(Pd){o[a+176>>2]=Pd;ul(Pd)}Pd=o[a+160>>2];if(Pd){o[a+164>>2]=Pd;ul(Pd)}Pd=o[a+144>>2];if(Pd){while(1){Qd=o[Pd>>2];ul(Pd);Pd=Qd;if(Pd){continue}break}}Pd=a+136|0;Qd=o[Pd>>2];o[Pd>>2]=0;if(Qd){ul(Qd)}Pd=o[a+120>>2];if(Pd){ul(Pd)}Pd=o[a+108>>2];if(Pd){ul(Pd)}Pd=o[a+96>>2];if(Pd){ul(Pd)}Pd=o[a+72>>2];if(Pd){o[a+76>>2]=Pd;ul(Pd)}Pd=o[a+60>>2];if(Pd){ul(Pd)}Pd=o[a+48>>2];if(Pd){o[a+52>>2]=Pd;ul(Pd)}Pd=o[a+36>>2];if(Pd){o[a+40>>2]=Pd;ul(Pd)}Pd=o[a+24>>2];if(Pd){o[a+28>>2]=Pd;ul(Pd)}Pd=o[a+12>>2];if(Pd){o[a+16>>2]=Pd;ul(Pd)}Pd=o[a+8>>2];o[a+8>>2]=0;if(Pd){ua(a+8|0,Pd)}return a|0}function oh(a){var Ud=0,Vd=0,Wd=0,Xd=0,Yd=0;Ud=o[a+196>>2];if(Ud){o[a+200>>2]=Ud;ul(Ud)}Ud=o[a+184>>2];if(Ud){Yd=a+188|0;Vd=o[Yd>>2];Wd=Ud;a:{if((Ud|0)==(Vd|0)){break a}while(1){Wd=Vd+ -12|0;Xd=o[Wd>>2];if(Xd){o[Vd+ -8>>2]=Xd;ul(Xd)}Vd=Wd;if((Vd|0)!=(Ud|0)){continue}break}Wd=o[a+184>>2]}o[Yd>>2]=Ud;ul(Wd)}Ud=o[a+156>>2];if(Ud){o[a+160>>2]=Ud;ul(Ud)}Ud=a+136|0;a=o[Ud>>2];o[Ud>>2]=0;if(a){Vd=a+ -4|0;Ud=o[Vd>>2];if(Ud){Ud=a+(Ud<<4)|0;while(1){Ud=Ud+ -16|0;if((a|0)!=(Ud|0)){continue}break}}ul(Vd)}}function ph(a){a=a|0;ul(nh(a))}function qh(a){a=a|0;var Zd=0;o[a>>2]=8512;Zd=o[a+48>>2];if(Zd){o[a+52>>2]=Zd;ul(Zd)}o[a>>2]=8764;Zd=o[a+36>>2];if(Zd){ul(Zd)}Zd=o[a+24>>2];if(Zd){ul(Zd)}ul(a)}function rh(a){a=a|0;var _d=0;o[a>>2]=8764;_d=o[a+36>>2];if(_d){ul(_d)}_d=o[a+24>>2];if(_d){ul(_d)}return a|0}function sh(a){a=a|0;var $d=0;o[a>>2]=8764;$d=o[a+36>>2];if($d){ul($d)}$d=o[a+24>>2];if($d){ul($d)}ul(a)}function th(a,ae,be){a=a|0;ae=ae|0;be=be|0;var ce=0,de=0;ce=R-16|0;R=ce;o[a+4>>2]=ae;de=o[ae+4>>2];ae=o[ae>>2];m[ce+15|0]=0;$a(a+24|0,(de-ae>>2>>>0)/3|0,ce+15|0);ae=o[a+4>>2];de=o[ae+28>>2];ae=o[ae+24>>2];m[ce+14|0]=0;$a(a+36|0,de-ae>>2,ce+14|0);ae=o[be+12>>2];o[a+16>>2]=o[be+8>>2];o[a+20>>2]=ae;ae=o[be+4>>2];o[a+8>>2]=o[be>>2];o[a+12>>2]=ae;R=ce+16|0}function uh(a,ae){var be=0,ee=0,fe=0;a:{if((a|0)!=(ae|0)){fe=a;be=o[ae+4>>2];ee=0;b:{if(!be){break b}c:{if(be>>>0<=o[a+8>>2]<<5>>>0){ee=o[a>>2];break c}ee=o[a>>2];if(ee){ul(ee);o[a+8>>2]=0;o[a>>2]=0;o[a+4>>2]=0;be=o[ae+4>>2]}if((be|0)<=-1){break a}be=(be+ -1>>>5)+1|0;ee=Hk(be<<2);o[a+8>>2]=be;o[a+4>>2]=0;o[a>>2]=ee;be=o[ae+4>>2]}yl(ee,o[ae>>2],(be+ -1>>>3&536870908)+4|0);ee=o[ae+4>>2]}o[fe+4>>2]=ee}return}Yk();D()}function vh(a){a=a|0;var ae=0;o[a>>2]=9088;ae=o[a+88>>2];if(ae){o[a+92>>2]=ae;ul(ae)}ae=o[a+72>>2];if(ae){o[a+76>>2]=ae;ul(ae)}ae=o[a+60>>2];if(ae){o[a- -64>>2]=ae;ul(ae)}ae=o[a+48>>2];if(ae){o[a+52>>2]=ae;ul(ae)}o[a>>2]=9324;ae=o[a+36>>2];if(ae){ul(ae)}ae=o[a+24>>2];if(ae){ul(ae)}return a|0}function wh(a){a=a|0;var ge=0;o[a>>2]=8876;o[a+8>>2]=9088;ge=o[a+96>>2];if(ge){o[a+100>>2]=ge;ul(ge)}ge=o[a+80>>2];if(ge){o[a+84>>2]=ge;ul(ge)}ge=o[a+68>>2];if(ge){o[a+72>>2]=ge;ul(ge)}ge=o[a+56>>2];if(ge){o[a+60>>2]=ge;ul(ge)}o[a+8>>2]=9324;ge=o[a+44>>2];if(ge){ul(ge)}ge=o[a+32>>2];if(ge){ul(ge)}return a|0}function xh(a){a=a|0;var he=0;o[a>>2]=8876;o[a+8>>2]=9088;he=o[a+96>>2];if(he){o[a+100>>2]=he;ul(he)}he=o[a+80>>2];if(he){o[a+84>>2]=he;ul(he)}he=o[a+68>>2];if(he){o[a+72>>2]=he;ul(he)}he=o[a+56>>2];if(he){o[a+60>>2]=he;ul(he)}o[a+8>>2]=9324;he=o[a+44>>2];if(he){ul(he)}he=o[a+32>>2];if(he){ul(he)}ul(a)}function yh(a,ie){a=a|0;ie=ie|0;var je=0,ke=0,le=0,me=0,ne=0,oe=0,pe=0,qe=0,re=0,se=0,te=0;re=o[a+12>>2];je=o[a+108>>2];ke=o[je+80>>2];m[ie+84|0]=0;ne=o[ie+68>>2];le=o[ie+72>>2]-ne>>2;a:{if(ke>>>0>le>>>0){kd(ie+68|0,ke-le|0,9076);je=o[a+108>>2];ke=o[je+80>>2];break a}if(ke>>>0>=le>>>0){break a}o[ie+72>>2]=ne+(ke<<2)}qe=o[je+96>>2];je=o[je+100>>2]-qe|0;se=(je|0)/12|0;if(!je){return 1}te=ie+68|0;ie=0;b:{while(1){c:{if((ie|0)==1431655765){break c}je=o[re>>2]+(u(ie,3)<<2)|0;ne=o[je>>2];if((ne|0)==-1){break c}le=u(ie,12)+qe|0;oe=o[le>>2];if(oe>>>0>=ke>>>0){break c}me=ne<<2;ne=o[o[a+112>>2]+12>>2];me=o[me+ne>>2];if(me>>>0>=ke>>>0){break c}pe=oe<<2;oe=o[te>>2];o[pe+oe>>2]=me;me=o[je+4>>2];if((me|0)==-1){break c}pe=o[le+4>>2];if(pe>>>0>=ke>>>0){break c}me=o[ne+(me<<2)>>2];if(me>>>0>=ke>>>0){break c}o[oe+(pe<<2)>>2]=me;je=o[je+8>>2];if((je|0)==-1){break c}le=o[le+8>>2];if(le>>>0>=ke>>>0){break c}je=o[ne+(je<<2)>>2];if(je>>>0>=ke>>>0){break c}o[oe+(le<<2)>>2]=je;je=1;ie=ie+1|0;if(ie>>>0<se>>>0){continue}break b}break}je=0}return je|0}function zh(a){a=a|0;var ie=0,ue=0,ve=0,we=0,xe=0,ye=0,ze=0,Ae=0,Be=0;xe=R-16|0;R=xe;ue=o[a+4>>2];ie=o[ue>>2];a:{Ae=a+12|0;ve=o[Ae>>2];we=o[ve+28>>2]-o[ve+24>>2]|0;ve=we>>2;b:{if(o[ue+8>>2]-ie>>2>>>0>=ve>>>0){break b}if(ve>>>0>=1073741824){break a}Be=ue+4|0;ye=o[Be>>2];ze=ve<<2;ve=Hk(we);ze=ze+ve|0;we=ye-ie|0;ye=we+ve|0;if((we|0)>=1){wl(ve,ie,we)}o[ue>>2]=ve;o[ue+8>>2]=ze;o[Be>>2]=ye;if(!ie){break b}ul(ie)}ie=o[Ae>>2];ue=o[ie+24>>2];ie=o[ie+28>>2];o[xe+12>>2]=0;ie=ie-ue>>2;ve=a+96|0;we=o[ve>>2];ue=o[a+100>>2]-we>>2;c:{if(ie>>>0>ue>>>0){yd(ve,ie-ue|0,xe+12|0);break c}if(ie>>>0>=ue>>>0){break c}o[a+100>>2]=we+(ie<<2)}we=a+8|0;d:{e:{ie=o[a+116>>2];if(ie){ve=o[ie>>2];ue=1;if((ve|0)==o[ie+4>>2]){break d}ie=0;while(1){if(!Ah(we,o[(ie<<2)+ve>>2])){break e}ue=o[a+116>>2];ve=o[ue>>2];ie=ie+1|0;if(ie>>>0<o[ue+4>>2]-ve>>2>>>0){continue}break}ue=1;break d}ie=0;a=o[a+12>>2];a=(o[a+4>>2]-o[a>>2]>>2>>>0)/3|0;ue=1;if((a|0)<=0){break d}while(1){if(!Ah(we,u(ie,3))){break e}ie=ie+1|0;if(ie>>>0<a>>>0){continue}break}ue=1;break d}ue=0}R=xe+16|0;return ue|0}_a(8776);D()}function Ah(a,Ce){var De=0,Ee=0,Fe=0,Ge=0,He=0,Ie=0,Je=0,Ke=0,Le=0,Me=0,Ne=0,Oe=0,Pe=0;Ge=R-32|0;R=Ge;o[Ge+8>>2]=Ce;a:{if(o[a+92>>2]==o[a+88>>2]){break a}Fe=a+52|0;De=o[Fe>>2];b:{if((De|0)!=o[a+56>>2]){o[De>>2]=Ce;o[Fe>>2]=De+4;break b}bh(a+48|0,Ge+8|0)}o[a+84>>2]=0;Ce=-1;Fe=-1;De=o[Ge+8>>2];c:{if((De|0)==-1){break c}Ee=o[a+4>>2];He=De+1|0;He=(He>>>0)%3|0?He:De+ -2|0;if((He|0)!=-1){Ce=o[o[Ee>>2]+(He<<2)>>2]}De=De+((De>>>0)%3|0?-1:2)|0;if((De|0)==-1){break c}Fe=o[o[Ee>>2]+(De<<2)>>2]}De=o[a+36>>2];Ee=De+(Ce>>>3&536870908)|0;He=o[Ee>>2];Je=1<<(Ce&31);if(!(He&Je)){o[Ee>>2]=He|Je;De=-1;Ee=o[Ge+8>>2];if((Ee|0)!=-1){De=Ee+1|0;De=(De>>>0)%3|0?De:Ee+ -2|0}o[Ge+16>>2]=De;Ee=o[a+20>>2];He=(De>>>0)/3|0;He=o[(o[o[a+16>>2]+96>>2]+u(He,12)|0)+(De-u(He,3)<<2)>>2];o[Ge+24>>2]=He;Ee=o[Ee+4>>2];Je=Ee+4|0;De=o[Je>>2];d:{if((De|0)!=o[Ee+8>>2]){o[De>>2]=He;o[Je>>2]=De+4;break d}bh(Ee,Ge+24|0)}He=a+12|0;De=o[He>>2];Je=De+4|0;Ee=o[Je>>2];e:{if((Ee|0)!=o[De+8>>2]){o[Ee>>2]=o[Ge+16>>2];o[Je>>2]=Ee+4;break e}bh(De,Ge+16|0);De=o[He>>2]}o[o[De+12>>2]+(Ce<<2)>>2]=o[De+24>>2];o[De+24>>2]=o[De+24>>2]+1;De=o[a+36>>2]}Ce=De+(Fe>>>3&536870908)|0;De=o[Ce>>2];Ee=1<<(Fe&31);if(!(De&Ee)){o[Ce>>2]=De|Ee;Ce=Ge;Ke=Ce;Ee=o[Ce+8>>2];De=-1;f:{if((Ee|0)==-1){break f}De=Ee+ -1|0;if((Ee>>>0)%3){break f}De=Ee+2|0}o[Ke+16>>2]=De;Ce=o[a+20>>2];Ee=(De>>>0)/3|0;Ee=o[(o[o[a+16>>2]+96>>2]+u(Ee,12)|0)+(De-u(Ee,3)<<2)>>2];o[Ge+24>>2]=Ee;De=o[Ce+4>>2];He=De+4|0;Ce=o[He>>2];g:{if((Ce|0)!=o[De+8>>2]){o[Ce>>2]=Ee;o[He>>2]=Ce+4;break g}bh(De,Ge+24|0)}Ee=a+12|0;Ce=o[Ee>>2];He=Ce+4|0;De=o[He>>2];h:{if((De|0)!=o[Ce+8>>2]){o[De>>2]=o[Ge+16>>2];o[He>>2]=De+4;break h}bh(Ce,Ge+16|0);Ce=o[Ee>>2]}o[o[Ce+12>>2]+(Fe<<2)>>2]=o[Ce+24>>2];o[Ce+24>>2]=o[Ce+24>>2]+1}Ce=-1;De=o[Ge+8>>2];if((De|0)!=-1){Ce=o[o[o[a+4>>2]>>2]+(De<<2)>>2]}De=o[a+36>>2]+(Ce>>>3&536870908)|0;Fe=o[De>>2];Ee=1<<(Ce&31);if(!(Fe&Ee)){o[De>>2]=Ee|Fe;De=o[Ge+8>>2];o[Ge+16>>2]=De;Fe=o[a+20>>2];Ee=(De>>>0)/3|0;Ee=o[(o[o[a+16>>2]+96>>2]+u(Ee,12)|0)+(De-u(Ee,3)<<2)>>2];o[Ge+24>>2]=Ee;Fe=o[Fe+4>>2];He=Fe+4|0;De=o[He>>2];i:{if((De|0)!=o[Fe+8>>2]){o[De>>2]=Ee;o[He>>2]=De+4;break i}bh(Fe,Ge+24|0)}Ee=a+12|0;Fe=o[Ee>>2];He=Fe+4|0;De=o[He>>2];j:{if((De|0)!=o[Fe+8>>2]){o[De>>2]=o[Ge+16>>2];o[He>>2]=De+4;break j}bh(Fe,Ge+16|0);Fe=o[Ee>>2]}o[o[Fe+12>>2]+(Ce<<2)>>2]=o[Fe+24>>2];o[Fe+24>>2]=o[Fe+24>>2]+1}De=o[a+84>>2];k:{if((De|0)>2){break k}He=a+24|0;Je=a+36|0;Oe=a+16|0;Pe=a+20|0;Me=a+88|0;while(1){Fe=u(De,12)+a|0;Ee=Fe+52|0;Ce=o[Ee>>2];if((Ce|0)==o[Fe+48>>2]){Ce=(De|0)<2;De=De+1|0;if(Ce){continue}break k}Fe=Ce+ -4|0;Ce=o[Fe>>2];o[Ee>>2]=Fe;o[a+84>>2]=De;o[Ge+8>>2]=Ce;if((Ce|0)==-1){break a}Fe=o[He>>2];Ee=(Ce>>>0)/3|0;l:{if(o[Fe+(Ee>>>3&268435452)>>2]>>>(Ee&31)&1){break l}m:{while(1){Ce=(Ce>>>0)/3|0;De=(Ce>>>3&268435452)+Fe|0;o[De>>2]=o[De>>2]|1<<(Ce&31);Ce=-1;Fe=o[Ge+8>>2];if((Fe|0)!=-1){Ce=o[o[o[a+4>>2]>>2]+(Fe<<2)>>2]}De=o[Je>>2]+(Ce>>>3&536870908)|0;Ee=o[De>>2];Ie=1<<(Ce&31);if(!(Ee&Ie)){o[De>>2]=Ee|Ie;De=o[Ge+8>>2];o[Ge+16>>2]=De;Fe=o[Pe>>2];Ee=(De>>>0)/3|0;Ee=o[(o[o[Oe>>2]+96>>2]+u(Ee,12)|0)+(De-u(Ee,3)<<2)>>2];o[Ge+24>>2]=Ee;Fe=o[Fe+4>>2];Ie=Fe+4|0;De=o[Ie>>2];n:{if((De|0)!=o[Fe+8>>2]){o[De>>2]=Ee;o[Ie>>2]=De+4;break n}bh(Fe,Ge+24|0)}Ee=a+12|0;Fe=o[Ee>>2];Ie=Fe+4|0;De=o[Ie>>2];o:{if((De|0)!=o[Fe+8>>2]){o[De>>2]=o[Ge+16>>2];o[Ie>>2]=De+4;break o}bh(Fe,Ge+16|0);Fe=o[Ee>>2]}o[o[Fe+12>>2]+(Ce<<2)>>2]=o[Fe+24>>2];o[Fe+24>>2]=o[Fe+24>>2]+1;Fe=o[Ge+8>>2]}if((Fe|0)==-1){break m}Ne=a+4|0;Ie=o[Ne>>2];Ce=-1;De=-1;Ee=Fe+1|0;Ee=(Ee>>>0)%3|0?Ee:Fe+ -2|0;if((Ee|0)!=-1){De=o[o[Ie+12>>2]+(Ee<<2)>>2]}Fe=((Fe>>>0)%3|0?-1:2)+Fe|0;if((Fe|0)!=-1){Ce=o[o[Ie+12>>2]+(Fe<<2)>>2]}Ee=(Ce>>>0)/3|0;Le=(De>>>0)/3|0;Ke=(De|0)==-1;Fe=1;p:{if(Ke){break p}Fe=Ke?-1:Le;Fe=o[o[He>>2]+(Fe>>>3&536870908)>>2]>>>(Fe&31)&1}q:{r:{s:{if((Ce|0)==-1){if(!Fe){break s}break m}Ee=(Ce|0)==-1?-1:Ee;t:{if(o[o[He>>2]+(Ee>>>3&536870908)>>2]>>>(Ee&31)&1){break t}Ee=0;Ke=Fe;Ie=o[o[Ie>>2]+(Ce<<2)>>2];if(!(o[o[Je>>2]+(Ie>>>3&536870908)>>2]>>>(Ie&31)&1)){Ie=o[Me>>2]+(Ie<<2)|0;Ee=o[Ie>>2];o[Ie>>2]=Ee+1;Ee=(Ee|0)<1?2:1}if((Ee|0)<=o[a+84>>2]?Ke:0){break r}o[Ge+24>>2]=Ce;Le=u(Ee,12)+a|0;Ke=Le+52|0;Ie=o[Ke>>2];u:{if((Ie|0)!=o[Le+56>>2]){o[Ie>>2]=Ce;o[Ke>>2]=Ie+4;break u}bh(Le+48|0,Ge+24|0)}if(o[a+84>>2]<=(Ee|0)){break t}o[a+84>>2]=Ee}if(Fe){break m}}Ce=-1;Fe=0;Ce=(De|0)!=-1?o[o[o[Ne>>2]>>2]+(De<<2)>>2]:Ce;if(!(o[o[Je>>2]+(Ce>>>3&536870908)>>2]>>>(Ce&31)&1)){Fe=o[Me>>2]+(Ce<<2)|0;Ce=o[Fe>>2];o[Fe>>2]=Ce+1;Fe=(Ce|0)<1?2:1}if((Fe|0)>o[a+84>>2]){break q}Ce=De}o[Ge+8>>2]=Ce;Fe=o[He>>2];continue}break}o[Ge+24>>2]=De;Ee=u(Fe,12)+a|0;Ie=Ee+52|0;Ce=o[Ie>>2];v:{if((Ce|0)!=o[Ee+56>>2]){o[Ce>>2]=De;o[Ie>>2]=Ce+4;break v}bh(Ee+48|0,Ge+24|0)}De=o[a+84>>2];if((De|0)<=(Fe|0)){break l}o[a+84>>2]=Fe;De=Fe;break l}De=o[a+84>>2]}if((De|0)<3){continue}break}}o[Ge+8>>2]=-1}R=Ge+32|0;return 1}function Bh(a){a=a|0;var Ce=0;o[a>>2]=9088;Ce=o[a+88>>2];if(Ce){o[a+92>>2]=Ce;ul(Ce)}Ce=o[a+72>>2];if(Ce){o[a+76>>2]=Ce;ul(Ce)}Ce=o[a+60>>2];if(Ce){o[a- -64>>2]=Ce;ul(Ce)}Ce=o[a+48>>2];if(Ce){o[a+52>>2]=Ce;ul(Ce)}o[a>>2]=9324;Ce=o[a+36>>2];if(Ce){ul(Ce)}Ce=o[a+24>>2];if(Ce){ul(Ce)}ul(a)}function Ch(a){a=a|0;var Qe=0;o[a>>2]=9324;Qe=o[a+36>>2];if(Qe){ul(Qe)}Qe=o[a+24>>2];if(Qe){ul(Qe)}return a|0}function Dh(a){a=a|0;var Re=0;o[a>>2]=9324;Re=o[a+36>>2];if(Re){ul(Re)}Re=o[a+24>>2];if(Re){ul(Re)}ul(a)}function Eh(a){a=a|0;var Se=0;o[a>>2]=9508;Se=o[a+48>>2];if(Se){o[a+52>>2]=Se;ul(Se)}o[a>>2]=9324;Se=o[a+36>>2];if(Se){ul(Se)}Se=o[a+24>>2];if(Se){ul(Se)}return a|0}function Fh(a){a=a|0;var Te=0,Ue=0;o[a>>2]=9344;Ue=a+8|0;o[Ue>>2]=9508;Te=o[a+56>>2];if(Te){o[a+60>>2]=Te;ul(Te)}o[Ue>>2]=9324;Te=o[a+44>>2];if(Te){ul(Te)}Te=o[a+32>>2];if(Te){ul(Te)}return a|0}function Gh(a){a=a|0;var Ve=0,We=0;o[a>>2]=9344;We=a+8|0;o[We>>2]=9508;Ve=o[a+56>>2];if(Ve){o[a+60>>2]=Ve;ul(Ve)}o[We>>2]=9324;Ve=o[a+44>>2];if(Ve){ul(Ve)}Ve=o[a+32>>2];if(Ve){ul(Ve)}ul(a)}function Hh(a,Xe){a=a|0;Xe=Xe|0;var Ye=0,Ze=0,_e=0,$e=0,af=0,bf=0,cf=0,df=0,ef=0,ff=0,gf=0;ef=o[a+12>>2];Ye=o[a+68>>2];Ze=o[Ye+80>>2];m[Xe+84|0]=0;af=o[Xe+68>>2];_e=o[Xe+72>>2]-af>>2;a:{if(Ze>>>0>_e>>>0){kd(Xe+68|0,Ze-_e|0,9076);Ye=o[a+68>>2];Ze=o[Ye+80>>2];break a}if(Ze>>>0>=_e>>>0){break a}o[Xe+72>>2]=af+(Ze<<2)}df=o[Ye+96>>2];Ye=o[Ye+100>>2]-df|0;ff=(Ye|0)/12|0;if(!Ye){return 1}gf=Xe+68|0;Xe=0;b:{while(1){c:{if((Xe|0)==1431655765){break c}Ye=o[ef>>2]+(u(Xe,3)<<2)|0;af=o[Ye>>2];if((af|0)==-1){break c}_e=u(Xe,12)+df|0;bf=o[_e>>2];if(bf>>>0>=Ze>>>0){break c}$e=af<<2;af=o[o[a+72>>2]+12>>2];$e=o[$e+af>>2];if($e>>>0>=Ze>>>0){break c}cf=bf<<2;bf=o[gf>>2];o[cf+bf>>2]=$e;$e=o[Ye+4>>2];if(($e|0)==-1){break c}cf=o[_e+4>>2];if(cf>>>0>=Ze>>>0){break c}$e=o[af+($e<<2)>>2];if($e>>>0>=Ze>>>0){break c}o[bf+(cf<<2)>>2]=$e;Ye=o[Ye+8>>2];if((Ye|0)==-1){break c}_e=o[_e+8>>2];if(_e>>>0>=Ze>>>0){break c}Ye=o[af+(Ye<<2)>>2];if(Ye>>>0>=Ze>>>0){break c}o[bf+(_e<<2)>>2]=Ye;Ye=1;Xe=Xe+1|0;if(Xe>>>0<ff>>>0){continue}break b}break}Ye=0}return Ye|0}function Ih(a){a=a|0;var Xe=0,hf=0,jf=0,kf=0,lf=0,mf=0,nf=0;kf=o[a+4>>2];Xe=o[kf>>2];a:{hf=o[a+12>>2];jf=o[hf+28>>2]-o[hf+24>>2]|0;hf=jf>>2;b:{if(o[kf+8>>2]-Xe>>2>>>0>=hf>>>0){break b}if(hf>>>0>=1073741824){break a}nf=kf+4|0;lf=o[nf>>2];mf=hf<<2;hf=Hk(jf);mf=mf+hf|0;jf=lf-Xe|0;lf=jf+hf|0;if((jf|0)>=1){wl(hf,Xe,jf)}o[kf>>2]=hf;o[kf+8>>2]=mf;o[nf>>2]=lf;if(!Xe){break b}ul(Xe)}hf=a+8|0;c:{d:{Xe=o[a+76>>2];if(Xe){kf=o[Xe>>2];jf=1;if((kf|0)==o[Xe+4>>2]){break c}Xe=0;while(1){if(!Jh(hf,o[(Xe<<2)+kf>>2])){break d}jf=o[a+76>>2];kf=o[jf>>2];Xe=Xe+1|0;if(Xe>>>0<o[jf+4>>2]-kf>>2>>>0){continue}break}return 1}Xe=0;a=o[a+12>>2];a=(o[a+4>>2]-o[a>>2]>>2>>>0)/3|0;if((a|0)<=0){return 1}while(1){if(!Jh(hf,u(Xe,3))){break d}Xe=Xe+1|0;if(Xe>>>0<a>>>0){continue}break}return 1}jf=0}return jf|0}_a(8776);D()}function Jh(a,of){var pf=0,qf=0,rf=0,sf=0,tf=0,uf=0,vf=0,wf=0,xf=0,yf=0,zf=0,Af=0,Bf=0,Cf=0,Df=0;tf=R-32|0;R=tf;o[tf+8>>2]=of;a:{if((of|0)==-1){sf=1;break a}sf=1;pf=(of>>>0)/3|0;if(o[o[a+24>>2]+(pf>>>3&268435452)>>2]>>>(pf&31)&1){break a}pf=a+52|0;rf=o[a+48>>2];o[pf>>2]=rf;yf=a+48|0;b:{if((rf|0)!=o[a+56>>2]){o[rf>>2]=of;o[pf>>2]=rf+4;break b}bh(yf,tf+8|0)}sf=-1;rf=o[tf+8>>2];if((rf|0)==-1){sf=0;break a}pf=o[a+4>>2];of=rf+1|0;of=(of>>>0)%3|0?of:rf+ -2|0;if((of|0)!=-1){sf=o[o[pf>>2]+(of<<2)>>2]}of=rf+((rf>>>0)%3|0?-1:2)|0;if((of|0)==-1){sf=0;break a}if((sf|0)==-1){sf=0;break a}uf=o[o[pf>>2]+(of<<2)>>2];if((uf|0)==-1){sf=0;break a}of=o[a+36>>2];qf=of+(sf>>>3&536870908)|0;rf=o[qf>>2];pf=1<<(sf&31);if(!(rf&pf)){o[qf>>2]=pf|rf;qf=-1;pf=o[tf+8>>2];if((pf|0)!=-1){of=pf+1|0;qf=(of>>>0)%3|0?of:pf+ -2|0}o[tf+16>>2]=qf;rf=o[a+20>>2];of=(qf>>>0)/3|0;pf=o[(o[o[a+16>>2]+96>>2]+u(of,12)|0)+(qf-u(of,3)<<2)>>2];o[tf+24>>2]=pf;rf=o[rf+4>>2];of=rf+4|0;qf=o[of>>2];c:{if((qf|0)!=o[rf+8>>2]){o[qf>>2]=pf;o[of>>2]=qf+4;break c}bh(rf,tf+24|0)}pf=a+12|0;qf=o[pf>>2];of=qf+4|0;rf=o[of>>2];d:{if((rf|0)!=o[qf+8>>2]){o[rf>>2]=o[tf+16>>2];o[of>>2]=rf+4;break d}bh(qf,tf+16|0);qf=o[pf>>2]}o[o[qf+12>>2]+(sf<<2)>>2]=o[qf+24>>2];o[qf+24>>2]=o[qf+24>>2]+1;of=o[a+36>>2]}rf=(uf>>>3&536870908)+of|0;pf=o[rf>>2];of=1<<(uf&31);if(!(pf&of)){o[rf>>2]=of|pf;of=tf;rf=of;pf=o[of+8>>2];qf=-1;e:{if((pf|0)==-1){break e}qf=pf+ -1|0;if((pf>>>0)%3){break e}qf=pf+2|0}o[rf+16>>2]=qf;rf=o[a+20>>2];of=(qf>>>0)/3|0;pf=o[(o[o[a+16>>2]+96>>2]+u(of,12)|0)+(qf-u(of,3)<<2)>>2];o[tf+24>>2]=pf;rf=o[rf+4>>2];of=rf+4|0;qf=o[of>>2];f:{if((qf|0)!=o[rf+8>>2]){o[qf>>2]=pf;o[of>>2]=qf+4;break f}bh(rf,tf+24|0)}pf=a+12|0;sf=o[pf>>2];of=sf+4|0;rf=o[of>>2];g:{if((rf|0)!=o[sf+8>>2]){o[rf>>2]=o[tf+16>>2];o[of>>2]=rf+4;break g}bh(sf,tf+16|0);sf=o[pf>>2]}o[o[sf+12>>2]+(uf<<2)>>2]=o[sf+24>>2];o[sf+24>>2]=o[sf+24>>2]+1}wf=a+52|0;of=o[wf>>2];if((of|0)==o[a+48>>2]){sf=1;break a}xf=a+24|0;zf=a+4|0;Af=a+36|0;Bf=a+16|0;Cf=a+20|0;Df=a+56|0;while(1){qf=of+ -4|0;pf=o[qf>>2];o[tf+8>>2]=pf;of=(pf>>>0)/3|0;h:{i:{j:{if((pf|0)==-1){break j}rf=o[xf>>2]+(of>>>3&268435452)|0;pf=o[rf>>2];of=1<<(of&31);if(pf&of){break j}o[rf>>2]=of|pf;of=o[tf+8>>2];if((of|0)!=-1){break i}sf=0;break a}o[wf>>2]=qf;break h}k:{l:{m:{while(1){vf=o[zf>>2];pf=o[o[vf>>2]+(of<<2)>>2];if((pf|0)==-1){sf=0;break a}uf=o[Af>>2]+(pf>>>3&536870908)|0;qf=o[uf>>2];rf=1<<(pf&31);n:{if(!(qf&rf)){sf=pf<<2;pf=o[sf+o[vf+24>>2]>>2];o:{p:{if((pf|0)==-1){break p}of=pf+1|0;of=(of>>>0)%3|0?of:pf+ -2|0;if((of|0)==-1){break p}vf=o[o[vf+12>>2]+(of<<2)>>2];if((vf|0)==-1){break p}of=vf+1|0;pf=0;if((((of>>>0)%3|0?of:vf+ -2|0)|0)!=-1){break o}}pf=1}o[uf>>2]=rf|qf;rf=o[tf+8>>2];o[tf+16>>2]=rf;qf=o[Cf>>2];of=(rf>>>0)/3|0;rf=o[(o[o[Bf>>2]+96>>2]+u(of,12)|0)+(rf-u(of,3)<<2)>>2];o[tf+24>>2]=rf;qf=o[qf+4>>2];of=qf+4|0;uf=o[of>>2];q:{if((uf|0)!=o[qf+8>>2]){o[uf>>2]=rf;o[of>>2]=uf+4;break q}bh(qf,tf+24|0)}qf=a+12|0;of=o[qf>>2];rf=of+4|0;uf=o[rf>>2];r:{if((uf|0)!=o[of+8>>2]){o[uf>>2]=o[tf+16>>2];o[rf>>2]=uf+4;break r}bh(of,tf+16|0);of=o[qf>>2]}o[o[of+12>>2]+sf>>2]=o[of+24>>2];o[of+24>>2]=o[of+24>>2]+1;vf=o[zf>>2];of=o[tf+8>>2];if(!pf){pf=tf;qf=-1;s:{if((of|0)==-1){break s}rf=of+1|0;of=(rf>>>0)%3|0?rf:of+ -2|0;qf=-1;if((of|0)==-1){break s}qf=o[o[vf+12>>2]+(of<<2)>>2]}o[pf+8>>2]=qf;of=(qf>>>0)/3|0;break n}if((of|0)==-1){break l}}qf=-1;sf=-1;pf=of+1|0;pf=(pf>>>0)%3|0?pf:of+ -2|0;if((pf|0)!=-1){sf=o[o[vf+12>>2]+(pf<<2)>>2]}o[tf+24>>2]=sf;of=((of>>>0)%3|0?-1:2)+of|0;if((of|0)!=-1){qf=o[o[vf+12>>2]+(of<<2)>>2]}rf=(qf>>>0)/3|0;of=(sf>>>0)/3|0;pf=(sf|0)==-1;t:{if(pf){of=-1;pf=1;break t}pf=pf?-1:of;pf=o[o[xf>>2]+(pf>>>3&536870908)>>2]>>>(pf&31)&1}u:{if((qf|0)!=-1){uf=(qf|0)==-1?-1:rf;uf=o[o[xf>>2]+(uf>>>3&536870908)>>2]&1<<(uf&31);if(pf){sf=qf;of=rf;if(!uf){break u}break k}if(uf){break u}of=o[wf>>2];o[of+ -4>>2]=qf;if((of|0)==o[Df>>2]){break m}o[of>>2]=o[tf+24>>2];o[wf>>2]=of+4;break h}if(pf){break k}}o[tf+8>>2]=sf}pf=o[xf>>2]+(of>>>3&536870908)|0;o[pf>>2]=o[pf>>2]|1<<(of&31);of=o[tf+8>>2];if((of|0)!=-1){continue}break}sf=0;break a}bh(yf,tf+24|0);break h}o[tf+24>>2]=-1}o[wf>>2]=o[wf>>2]+ -4}sf=1;of=o[wf>>2];if((of|0)!=o[a+48>>2]){continue}break}}R=tf+32|0;return sf}function Kh(a){a=a|0;var of=0;o[a>>2]=9508;of=o[a+48>>2];if(of){o[a+52>>2]=of;ul(of)}o[a>>2]=9324;of=o[a+36>>2];if(of){ul(of)}of=o[a+24>>2];if(of){ul(of)}ul(a)}function Lh(a){a=a|0;var Ef=0,Ff=0;o[a>>2]=9636;Ff=a+8|0;o[Ff>>2]=8512;Ef=o[a+56>>2];if(Ef){o[a+60>>2]=Ef;ul(Ef)}o[Ff>>2]=8764;Ef=o[a+44>>2];if(Ef){ul(Ef)}Ef=o[a+32>>2];if(Ef){ul(Ef)}return a|0}function Mh(a){a=a|0;var Gf=0,Hf=0;o[a>>2]=9636;Hf=a+8|0;o[Hf>>2]=8512;Gf=o[a+56>>2];if(Gf){o[a+60>>2]=Gf;ul(Gf)}o[Hf>>2]=8764;Gf=o[a+44>>2];if(Gf){ul(Gf)}Gf=o[a+32>>2];if(Gf){ul(Gf)}ul(a)}function Nh(a,If){a=a|0;If=If|0;var Jf=0,Kf=0,Lf=0,Mf=0,Nf=0,Of=0,Pf=0,Qf=0,Rf=0,Sf=0,Tf=0;Of=o[a+12>>2];Jf=o[a+68>>2];Kf=o[Jf+80>>2];m[If+84|0]=0;Nf=o[If+68>>2];Lf=o[If+72>>2]-Nf>>2;a:{if(Kf>>>0>Lf>>>0){kd(If+68|0,Kf-Lf|0,9076);Jf=o[a+68>>2];Kf=o[Jf+80>>2];break a}if(Kf>>>0>=Lf>>>0){break a}o[If+72>>2]=Nf+(Kf<<2)}Qf=o[Jf+96>>2];Jf=o[Jf+100>>2]-Qf|0;Rf=(Jf|0)/12|0;if(!Jf){return 1}Sf=o[Of+28>>2];Tf=If+68|0;If=0;b:{while(1){c:{Jf=(u(If,3)<<2)+Sf|0;Of=o[Jf>>2];if((Of|0)==-1){break c}Lf=u(If,12)+Qf|0;Nf=o[Lf>>2];if(Nf>>>0>=Kf>>>0){break c}Mf=Of<<2;Of=o[o[a+72>>2]+12>>2];Mf=o[Mf+Of>>2];if(Mf>>>0>=Kf>>>0){break c}Pf=Nf<<2;Nf=o[Tf>>2];o[Pf+Nf>>2]=Mf;Mf=o[Jf+4>>2];if((Mf|0)==-1){break c}Pf=o[Lf+4>>2];if(Pf>>>0>=Kf>>>0){break c}Mf=o[Of+(Mf<<2)>>2];if(Mf>>>0>=Kf>>>0){break c}o[Nf+(Pf<<2)>>2]=Mf;Jf=o[Jf+8>>2];if((Jf|0)==-1){break c}Lf=o[Lf+8>>2];if(Lf>>>0>=Kf>>>0){break c}Jf=o[Of+(Jf<<2)>>2];if(Jf>>>0>=Kf>>>0){break c}o[Nf+(Lf<<2)>>2]=Jf;Jf=1;If=If+1|0;if(If>>>0<Rf>>>0){continue}break b}break}Jf=0}return Jf|0}function Oh(a){a=a|0;var If=0,Uf=0,Vf=0,Wf=0,Xf=0,Yf=0,Zf=0;Wf=o[a+4>>2];If=o[Wf>>2];a:{Uf=o[a+12>>2];Vf=o[Uf+56>>2]-o[Uf+52>>2]|0;Uf=Vf>>2;b:{if(o[Wf+8>>2]-If>>2>>>0>=Uf>>>0){break b}if(Uf>>>0>=1073741824){break a}Zf=Wf+4|0;Xf=o[Zf>>2];Yf=Uf<<2;Uf=Hk(Vf);Yf=Yf+Uf|0;Vf=Xf-If|0;Xf=Vf+Uf|0;if((Vf|0)>=1){wl(Uf,If,Vf)}o[Wf>>2]=Uf;o[Wf+8>>2]=Yf;o[Zf>>2]=Xf;if(!If){break b}ul(If)}Uf=a+8|0;c:{d:{If=o[a+76>>2];if(If){Wf=o[If>>2];Vf=1;if((Wf|0)==o[If+4>>2]){break c}If=0;while(1){if(!Ph(Uf,o[(If<<2)+Wf>>2])){break d}Vf=o[a+76>>2];Wf=o[Vf>>2];If=If+1|0;if(If>>>0<o[Vf+4>>2]-Wf>>2>>>0){continue}break}return 1}If=0;a=o[o[a+12>>2]+64>>2];a=(o[a+4>>2]-o[a>>2]>>2>>>0)/3|0;if((a|0)<=0){return 1}while(1){if(!Ph(Uf,u(If,3))){break d}If=If+1|0;if(If>>>0<a>>>0){continue}break}return 1}Vf=0}return Vf|0}_a(8776);D()}function Ph(a,_f){var $f=0,ag=0,bg=0,cg=0,dg=0,eg=0,fg=0,gg=0,hg=0,ig=0,jg=0,kg=0,lg=0,mg=0,ng=0;dg=R-32|0;R=dg;o[dg+8>>2]=_f;a:{if((_f|0)==-1){$f=1;break a}$f=1;cg=(_f>>>0)/3|0;if(o[o[a+24>>2]+(cg>>>3&268435452)>>2]>>>(cg&31)&1){break a}cg=a+52|0;$f=o[a+48>>2];o[cg>>2]=$f;ig=a+48|0;b:{if(($f|0)!=o[a+56>>2]){o[$f>>2]=_f;o[cg>>2]=$f+4;break b}bh(ig,dg+8|0)}ag=-1;$f=o[a+4>>2];_f=o[dg+8>>2];c:{if((_f|0)==-1){cg=o[$f+28>>2];$f=o[cg+ -4>>2];break c}cg=o[$f+28>>2];$f=_f+1|0;$f=o[cg+((($f>>>0)%3|0?$f:_f+ -2|0)<<2)>>2];if((_f>>>0)%3){ag=_f+ -1|0;break c}ag=_f+2|0}if(($f|0)==-1){$f=0;break a}cg=o[(ag<<2)+cg>>2];if((cg|0)==-1){$f=0;break a}_f=o[a+36>>2];bg=_f+($f>>>3&536870908)|0;ag=o[bg>>2];eg=1<<($f&31);if(!(ag&eg)){o[bg>>2]=ag|eg;ag=-1;_f=o[dg+8>>2];if((_f|0)!=-1){bg=_f+1|0;ag=(bg>>>0)%3|0?bg:_f+ -2|0}o[dg+16>>2]=ag;_f=o[a+20>>2];bg=(ag>>>0)/3|0;ag=o[(o[o[a+16>>2]+96>>2]+u(bg,12)|0)+(ag-u(bg,3)<<2)>>2];o[dg+24>>2]=ag;bg=o[_f+4>>2];eg=bg+4|0;_f=o[eg>>2];d:{if((_f|0)!=o[bg+8>>2]){o[_f>>2]=ag;o[eg>>2]=_f+4;break d}bh(bg,dg+24|0)}bg=a+12|0;ag=o[bg>>2];eg=ag+4|0;_f=o[eg>>2];e:{if((_f|0)!=o[ag+8>>2]){o[_f>>2]=o[dg+16>>2];o[eg>>2]=_f+4;break e}bh(ag,dg+16|0);ag=o[bg>>2]}o[o[ag+12>>2]+($f<<2)>>2]=o[ag+24>>2];o[ag+24>>2]=o[ag+24>>2]+1;_f=o[a+36>>2]}_f=(cg>>>3&536870908)+_f|0;$f=o[_f>>2];bg=1<<(cg&31);if(!($f&bg)){o[_f>>2]=$f|bg;_f=dg;ag=_f;bg=o[_f+8>>2];$f=-1;f:{if((bg|0)==-1){break f}$f=bg+ -1|0;if((bg>>>0)%3){break f}$f=bg+2|0}o[ag+16>>2]=$f;_f=o[a+20>>2];bg=($f>>>0)/3|0;bg=o[(o[o[a+16>>2]+96>>2]+u(bg,12)|0)+($f-u(bg,3)<<2)>>2];o[dg+24>>2]=bg;$f=o[_f+4>>2];ag=$f+4|0;_f=o[ag>>2];g:{if((_f|0)!=o[$f+8>>2]){o[_f>>2]=bg;o[ag>>2]=_f+4;break g}bh($f,dg+24|0)}bg=a+12|0;$f=o[bg>>2];ag=$f+4|0;_f=o[ag>>2];h:{if((_f|0)!=o[$f+8>>2]){o[_f>>2]=o[dg+16>>2];o[ag>>2]=_f+4;break h}bh($f,dg+16|0);$f=o[bg>>2]}o[o[$f+12>>2]+(cg<<2)>>2]=o[$f+24>>2];o[$f+24>>2]=o[$f+24>>2]+1}eg=a+52|0;_f=o[eg>>2];if((_f|0)==o[a+48>>2]){$f=1;break a}gg=a+24|0;hg=a+4|0;kg=a+36|0;lg=a+16|0;mg=a+20|0;ng=a+56|0;while(1){cg=_f+ -4|0;_f=o[cg>>2];o[dg+8>>2]=_f;$f=(_f>>>0)/3|0;i:{j:{k:{if((_f|0)==-1){break k}_f=o[gg>>2]+($f>>>3&268435452)|0;bg=o[_f>>2];$f=1<<($f&31);if(bg&$f){break k}o[_f>>2]=$f|bg;ag=o[hg>>2];_f=o[dg+8>>2];$f=o[o[ag+28>>2]+(_f<<2)>>2];if(($f|0)!=-1){break j}$f=0;break a}o[eg>>2]=cg;break i}l:{m:{n:{while(1){o:{p:{cg=o[kg>>2]+($f>>>3&536870908)|0;bg=o[cg>>2];fg=1<<($f&31);if(bg&fg){break p}jg=$f<<2;$f=o[jg+o[ag+40>>2]>>2];_f=1;q:{if(($f|0)==-1){break q}_f=$f+1|0;_f=(_f>>>0)%3|0?_f:$f+ -2|0;r:{if((_f|0)==-1|o[o[ag>>2]+(_f>>>3&536870908)>>2]>>>(_f&31)&1){break r}$f=o[o[o[ag+64>>2]+12>>2]+(_f<<2)>>2];if(($f|0)==-1){break r}ag=$f+1|0;_f=0;if((((ag>>>0)%3|0?ag:$f+ -2|0)|0)!=-1){break q}}_f=1}$f=_f;o[cg>>2]=bg|fg;_f=o[dg+8>>2];o[dg+16>>2]=_f;cg=o[mg>>2];bg=(_f>>>0)/3|0;bg=o[(o[o[lg>>2]+96>>2]+u(bg,12)|0)+(_f-u(bg,3)<<2)>>2];o[dg+24>>2]=bg;cg=o[cg+4>>2];ag=cg+4|0;_f=o[ag>>2];s:{if((_f|0)!=o[cg+8>>2]){o[_f>>2]=bg;o[ag>>2]=_f+4;break s}bh(cg,dg+24|0)}bg=a+12|0;_f=o[bg>>2];ag=_f+4|0;cg=o[ag>>2];t:{if((cg|0)!=o[_f+8>>2]){o[cg>>2]=o[dg+16>>2];o[ag>>2]=cg+4;break t}bh(_f,dg+16|0);_f=o[bg>>2]}o[o[_f+12>>2]+jg>>2]=o[_f+24>>2];o[_f+24>>2]=o[_f+24>>2]+1;ag=o[hg>>2];_f=o[dg+8>>2];if($f){break p}$f=-1;u:{if((_f|0)==-1){break u}cg=_f+1|0;_f=(cg>>>0)%3|0?cg:_f+ -2|0;if((_f|0)==-1|o[o[ag>>2]+(_f>>>3&536870908)>>2]>>>(_f&31)&1){break u}$f=o[o[o[ag+64>>2]+12>>2]+(_f<<2)>>2]}o[dg+8>>2]=$f;_f=($f>>>0)/3|0;break o}if((_f|0)==-1){break m}cg=-1;bg=dg;fg=_f+1|0;fg=(fg>>>0)%3|0?fg:_f+ -2|0;$f=-1;v:{if((fg|0)==-1){break v}$f=-1;if(o[o[ag>>2]+(fg>>>3&536870908)>>2]>>>(fg&31)&1){break v}$f=o[o[o[ag+64>>2]+12>>2]+(fg<<2)>>2]}o[bg+24>>2]=$f;_f=((_f>>>0)%3|0?-1:2)+_f|0;if(!((_f|0)==-1|o[o[ag>>2]+(_f>>>3&536870908)>>2]>>>(_f&31)&1)){cg=o[o[o[ag+64>>2]+12>>2]+(_f<<2)>>2]}bg=(cg>>>0)/3|0;_f=($f>>>0)/3|0;ag=($f|0)==-1;w:{if(ag){_f=-1;ag=1;break w}ag=ag?-1:_f;ag=o[o[gg>>2]+(ag>>>3&536870908)>>2]>>>(ag&31)&1}x:{if((cg|0)!=-1){fg=(cg|0)==-1?-1:bg;fg=o[o[gg>>2]+(fg>>>3&536870908)>>2]&1<<(fg&31);if(ag){$f=cg;_f=bg;if(!fg){break x}break l}if(fg){break x}_f=o[eg>>2];o[_f+ -4>>2]=cg;if((_f|0)==o[ng>>2]){break n}o[_f>>2]=o[dg+24>>2];o[eg>>2]=_f+4;break i}if(ag){break l}}o[dg+8>>2]=$f}$f=o[gg>>2]+(_f>>>3&536870908)|0;o[$f>>2]=o[$f>>2]|1<<(_f&31);ag=o[hg>>2];_f=o[dg+8>>2];$f=o[o[ag+28>>2]+(_f<<2)>>2];if(($f|0)!=-1){continue}break}$f=0;break a}bh(ig,dg+24|0);break i}o[dg+24>>2]=-1}o[eg>>2]=o[eg>>2]+ -4}$f=1;_f=o[eg>>2];if((_f|0)!=o[a+48>>2]){continue}break}}R=dg+32|0;return $f}function Qh(a,_f){var og=0,pg=0,qg=0;o[a>>2]=o[_f>>2];o[a+4>>2]=o[_f+4>>2];o[a+8>>2]=o[_f+8>>2];og=_f+12|0;o[a+12>>2]=o[og>>2];o[og>>2]=0;o[_f+4>>2]=0;o[_f+8>>2]=0;og=_f+16|0;o[a+16>>2]=o[og>>2];o[a+20>>2]=o[_f+20>>2];pg=_f+24|0;o[a+24>>2]=o[pg>>2];o[pg>>2]=0;o[og>>2]=0;o[og+4>>2]=0;pg=p[_f+28|0];qg=a+40|0;o[qg>>2]=0;og=a+32|0;o[og>>2]=0;o[og+4>>2]=0;m[a+28|0]=pg;pg=og;og=_f+32|0;o[pg>>2]=o[og>>2];o[a+36>>2]=o[_f+36>>2];pg=_f+40|0;o[qg>>2]=o[pg>>2];o[pg>>2]=0;o[og>>2]=0;o[og+4>>2]=0;pg=a+52|0;o[pg>>2]=0;og=a+44|0;o[og>>2]=0;o[og+4>>2]=0;qg=og;og=_f+44|0;o[qg>>2]=o[og>>2];o[a+48>>2]=o[_f+48>>2];qg=pg;pg=_f+52|0;o[qg>>2]=o[pg>>2];o[pg>>2]=0;o[og>>2]=0;o[og+4>>2]=0;pg=a- -64|0;o[pg>>2]=0;og=a+56|0;o[og>>2]=0;o[og+4>>2]=0;qg=og;og=_f+56|0;o[qg>>2]=o[og>>2];o[a+60>>2]=o[_f+60>>2];qg=pg;pg=_f- -64|0;o[qg>>2]=o[pg>>2];o[pg>>2]=0;o[og>>2]=0;o[og+4>>2]=0;o[a+68>>2]=o[_f+68>>2];pg=o[_f+72>>2];qg=a+84|0;o[qg>>2]=0;og=a+76|0;o[og>>2]=0;o[og+4>>2]=0;o[a+72>>2]=pg;pg=og;og=_f+76|0;o[pg>>2]=o[og>>2];o[a+80>>2]=o[_f+80>>2];pg=_f+84|0;o[qg>>2]=o[pg>>2];o[pg>>2]=0;o[og>>2]=0;o[og+4>>2]=0;pg=a+96|0;o[pg>>2]=0;og=a+88|0;o[og>>2]=0;o[og+4>>2]=0;qg=og;og=_f+88|0;o[qg>>2]=o[og>>2];o[a+92>>2]=o[_f+92>>2];qg=pg;pg=_f+96|0;o[qg>>2]=o[pg>>2];o[pg>>2]=0;o[og>>2]=0;o[og+4>>2]=0;og=p[_f+100|0];pg=a+112|0;o[pg>>2]=0;o[a+104>>2]=0;o[a+108>>2]=0;m[a+100|0]=og;o[a+104>>2]=o[_f+104>>2];o[a+108>>2]=o[_f+108>>2];og=_f+112|0;o[pg>>2]=o[og>>2];o[og>>2]=0;o[_f+104>>2]=0;o[_f+108>>2]=0;pg=a+124|0;o[pg>>2]=0;og=a+116|0;o[og>>2]=0;o[og+4>>2]=0;qg=og;og=_f+116|0;o[qg>>2]=o[og>>2];o[a+120>>2]=o[_f+120>>2];qg=pg;pg=_f+124|0;o[qg>>2]=o[pg>>2];o[pg>>2]=0;o[og>>2]=0;o[og+4>>2]=0;og=o[_f+128>>2];pg=a+140|0;o[pg>>2]=0;o[a+132>>2]=0;o[a+136>>2]=0;o[a+128>>2]=og;o[a+132>>2]=o[_f+132>>2];o[a+136>>2]=o[_f+136>>2];og=_f+140|0;o[pg>>2]=o[og>>2];o[og>>2]=0;o[_f+132>>2]=0;o[_f+136>>2]=0;return a}function Rh(a){var _f=0,rg=0,sg=0;rg=o[a+8>>2];sg=o[a+4>>2];if((rg|0)!=(sg|0)){while(1){_f=rg+ -144|0;o[a+8>>2]=_f;_f=o[_f+132>>2];if(_f){o[rg+ -8>>2]=_f;ul(_f)}_f=o[rg+ -28>>2];if(_f){o[rg+ -24>>2]=_f;ul(_f)}_f=o[rg+ -40>>2];if(_f){o[rg+ -36>>2]=_f;ul(_f)}Ug(rg+ -140|0);rg=o[a+8>>2];if((sg|0)!=(rg|0)){continue}break}}a=o[a>>2];if(a){ul(a)}}function Sh(a,tg){var ug=0,vg=0,wg=v(0);ug=2;a:{if((tg|0)==1){break a}ug=tg;if(!(tg+ -1&tg)){break a}ug=ek(tg)}vg=o[a+4>>2];if(ug>>>0>vg>>>0){Th(a,ug);return}b:{if(ug>>>0>=vg>>>0){break b}wg=v(B(v(v(r[a+12>>2])/s[a+16>>2])));c:{if(wg<v(4294967296)&wg>=v(0)){tg=~~wg>>>0;break c}tg=0}d:{e:{if(vg>>>0<3){break e}if(Yl(vg)>>>0>1){break e}tg=tg>>>0<2?tg:1<<32-x(tg+ -1|0);break d}tg=ek(tg)}tg=ug>>>0<tg>>>0?tg:ug;if(tg>>>0>=vg>>>0){break b}Th(a,tg)}}function Th(a,tg){var xg=0,yg=0,zg=0,Ag=0,Bg=0,Cg=0,Dg=0,Eg=0,Fg=0;a:{b:{if(tg){if(tg>>>0>=1073741824){break a}xg=Hk(tg<<2);yg=o[a>>2];o[a>>2]=xg;if(yg){ul(yg)}o[a+4>>2]=tg;xg=0;while(1){o[o[a>>2]+(xg<<2)>>2]=0;xg=xg+1|0;if((xg|0)!=(tg|0)){continue}break}yg=a+8|0;Ag=o[yg>>2];if(!Ag){break b}Bg=o[Ag+4>>2];xg=Yl(tg);c:{if(xg>>>0<=1){Bg=tg+ -1&Bg;break c}if(Bg>>>0<tg>>>0){break c}Bg=(Bg>>>0)%(tg>>>0)|0}o[o[a>>2]+(Bg<<2)>>2]=yg;yg=o[Ag>>2];if(!yg){break b}Eg=tg+ -1|0;Fg=xg>>>0>1;while(1){zg=o[yg+4>>2];d:{if(!Fg){zg=zg&Eg;break d}if(zg>>>0<tg>>>0){break d}zg=(zg>>>0)%(tg>>>0)|0}e:{if((zg|0)==(Bg|0)){Ag=yg;break e}xg=yg;Cg=zg<<2;Dg=Cg+o[a>>2]|0;if(!o[Dg>>2]){o[Dg>>2]=Ag;Ag=yg;Bg=zg;break e}while(1){zg=xg;xg=o[xg>>2];if(o[yg+8>>2]==o[xg+8>>2]?xg:0){continue}break}o[Ag>>2]=xg;o[zg>>2]=o[o[o[a>>2]+Cg>>2]>>2];o[o[o[a>>2]+Cg>>2]>>2]=yg}yg=o[Ag>>2];if(yg){continue}break}break b}tg=o[a>>2];o[a>>2]=0;if(tg){ul(tg)}o[a+4>>2]=0}return}_a(8776);D()}function Uh(a){a=a|0;var tg=0,Gg=0,Hg=0,Ig=0,Jg=0,Kg=0,Lg=0,Mg=0,Ng=0,Og=0,Pg=0,Qg=0,Rg=0,Sg=0,Tg=0,Ug=0,Vg=0,Wg=0;Hg=R-32|0;R=Hg;Gg=a+32|0;a:{if(!Vh(1,Hg+28|0,o[Gg>>2])){break a}if(!Vh(1,Hg+24|0,o[Gg>>2])){break a}Rg=o[Hg+28>>2];if(Rg>>>0>1431655765){break a}Gg=Vl(Rg,0,3,0);tg=T;Vg=o[Hg+24>>2];if(!tg&Gg>>>0<Vg>>>0|tg>>>0<0){break a}Ig=o[a+32>>2];Gg=Ig;Kg=o[Gg+16>>2];Lg=r[Gg+8>>2]>Kg>>>0?0:1;Jg=o[Gg+12>>2];tg=o[Gg+20>>2];if((Jg|0)<(tg|0)?1:(Jg|0)<=(tg|0)?Lg:0){break a}Lg=p[Kg+o[Ig>>2]|0];Gg=tg;Og=Kg+1|0;if(Og>>>0<1){Gg=Gg+1|0}o[Ig+16>>2]=Og;o[Ig+20>>2]=Gg;b:{if(!Lg){if(!Wh(a,Rg)){break a}break b}c:{if(Vg>>>0<=255){if(!Rg){break b}Kg=Hg+16|0;o[Kg>>2]=0;o[Hg+8>>2]=0;o[Hg+12>>2]=0;Lg=o[Ig+8>>2];Jg=o[Ig+12>>2];tg=Jg;if((tg|0)<(Gg|0)?1:(tg|0)<=(Gg|0)?Lg>>>0>Og>>>0?0:1:0){break c}Qg=a+44|0;Tg=a+32|0;while(1){Pg=o[Ig>>2];Ug=p[Pg+Og|0];tg=Gg;Mg=Og+1|0;if(Mg>>>0<1){tg=tg+1|0}Ng=Ig;o[Ig+16>>2]=Mg;o[Ig+20>>2]=tg;o[Hg+8>>2]=Ug;if((Jg|0)<(tg|0)?1:(Jg|0)<=(tg|0)?Lg>>>0>Mg>>>0?0:1:0){break c}Ug=p[Mg+Pg|0];tg=Gg;Mg=Og+2|0;if(Mg>>>0<2){tg=tg+1|0}o[Ig+16>>2]=Mg;o[Ng+20>>2]=tg;o[Hg+12>>2]=Ug;if((Jg|0)<(tg|0)?1:(Jg|0)<=(tg|0)?Lg>>>0>Mg>>>0?0:1:0){break c}tg=p[Mg+Pg|0];Jg=Og+3|0;if(Jg>>>0<3){Gg=Gg+1|0}o[Ig+16>>2]=Jg;o[Ig+20>>2]=Gg;o[Hg+16>>2]=tg;tg=o[Qg>>2];Ig=tg+100|0;Gg=o[Ig>>2];d:{if((Gg|0)==o[tg+104>>2]){Xh(tg+96|0,Hg+8|0);break d}tg=o[Hg+12>>2];o[Gg>>2]=o[Hg+8>>2];o[Gg+4>>2]=tg;o[Gg+8>>2]=o[Kg>>2];o[Ig>>2]=o[Ig>>2]+12}Sg=Sg+1|0;if((Rg|0)==(Sg|0)){break b}Ig=o[Tg>>2];tg=Ig;Og=o[tg+16>>2];Gg=o[tg+20>>2];o[Kg>>2]=0;o[Hg+8>>2]=0;o[Hg+12>>2]=0;Lg=o[tg+8>>2];Jg=o[tg+12>>2];tg=Jg;if((tg|0)>(Gg|0)?1:(tg|0)>=(Gg|0)?Lg>>>0<=Og>>>0?0:1:0){continue}break}break c}if(Vg>>>0<=65535){if(!Rg){break b}Mg=Hg+16|0;o[Mg>>2]=0;o[Hg+8>>2]=0;o[Hg+12>>2]=0;Ng=o[Ig+12>>2];Qg=Ng;Jg=Kg+3|0;if(Jg>>>0<3){tg=tg+1|0}Pg=o[Ig+8>>2];Lg=Jg;Jg=tg;if((Qg|0)<(tg|0)?1:(Qg|0)<=(tg|0)?Pg>>>0>=Lg>>>0?0:1:0){break c}Ug=a+44|0;Wg=a+32|0;while(1){Qg=o[Ig>>2];tg=Qg+Og|0;tg=p[tg|0]|p[tg+1|0]<<8;o[Ig+16>>2]=Lg;o[Ig+20>>2]=Jg;o[Hg+8>>2]=tg;Jg=Ng;tg=Gg;Kg=Og+4|0;if(Kg>>>0<4){tg=tg+1|0}Tg=Kg;Kg=tg;if((Jg|0)<(tg|0)?1:(Jg|0)<=(tg|0)?Pg>>>0>=Tg>>>0?0:1:0){break c}tg=Lg+Qg|0;tg=p[tg|0]|p[tg+1|0]<<8;o[Ig+16>>2]=Tg;o[Ig+20>>2]=Kg;o[Hg+12>>2]=tg;tg=Og+6|0;if(tg>>>0<6){Gg=Gg+1|0}Jg=tg;tg=Gg;if((Ng|0)<(tg|0)?1:(Ng|0)<=(tg|0)?Pg>>>0>=Jg>>>0?0:1:0){break c}Gg=Qg+Tg|0;Gg=p[Gg|0]|p[Gg+1|0]<<8;o[Ig+16>>2]=Jg;o[Ig+20>>2]=tg;o[Hg+16>>2]=Gg;tg=o[Ug>>2];Ig=tg+100|0;Gg=o[Ig>>2];e:{if((Gg|0)==o[tg+104>>2]){Xh(tg+96|0,Hg+8|0);break e}tg=o[Hg+12>>2];o[Gg>>2]=o[Hg+8>>2];o[Gg+4>>2]=tg;o[Gg+8>>2]=o[Mg>>2];o[Ig>>2]=o[Ig>>2]+12}Sg=Sg+1|0;if((Rg|0)==(Sg|0)){break b}Ig=o[Wg>>2];tg=Ig;Og=o[tg+16>>2];Gg=o[tg+20>>2];o[Mg>>2]=0;o[Hg+8>>2]=0;o[Hg+12>>2]=0;Kg=o[tg+12>>2];Ng=Kg;Pg=o[tg+8>>2];Qg=Pg;tg=Gg;Jg=Og+2|0;if(Jg>>>0<2){tg=tg+1|0}Lg=Jg;Jg=tg;if((Kg|0)>(tg|0)?1:(Kg|0)>=(tg|0)?Qg>>>0<Lg>>>0?0:1:0){continue}break}break c}f:{if(r[o[a+44>>2]+80>>2]>2097151){break f}Jg=q[a+36>>1];if((Jg<<24|Jg<<8&16711680)>>>16>>>0<514){break f}if(!Rg){break b}Jg=Hg+16|0;o[Jg>>2]=0;o[Hg+8>>2]=0;o[Hg+12>>2]=0;if(!Vh(1,Hg+4|0,Ig)){break c}tg=a+32|0;Kg=a+44|0;while(1){o[Hg+8>>2]=o[Hg+4>>2];if(!Vh(1,Hg+4|0,o[tg>>2])){break c}o[Hg+12>>2]=o[Hg+4>>2];if(!Vh(1,Hg+4|0,o[tg>>2])){break c}o[Hg+16>>2]=o[Hg+4>>2];Ig=o[Kg>>2];Ng=Ig+100|0;Gg=o[Ng>>2];g:{if((Gg|0)==o[Ig+104>>2]){Xh(Ig+96|0,Hg+8|0);break g}Ig=o[Hg+12>>2];o[Gg>>2]=o[Hg+8>>2];o[Gg+4>>2]=Ig;o[Gg+8>>2]=o[Jg>>2];o[Ng>>2]=o[Ng>>2]+12}Pg=Pg+1|0;if((Rg|0)==(Pg|0)){break b}Gg=o[tg>>2];o[Jg>>2]=0;o[Hg+8>>2]=0;o[Hg+12>>2]=0;if(Vh(1,Hg+4|0,Gg)){continue}break}break c}if(!Rg){break b}Sg=Hg+16|0;o[Sg>>2]=0;o[Hg+8>>2]=0;o[Hg+12>>2]=0;Ng=o[Ig+12>>2];Mg=Ng;Jg=Kg+5|0;if(Jg>>>0<5){tg=tg+1|0}Pg=o[Ig+8>>2];Lg=Jg;Jg=tg;if((Mg|0)<(tg|0)?1:(Mg|0)<=(tg|0)?Pg>>>0>=Lg>>>0?0:1:0){break c}Tg=a+44|0;Ug=a+32|0;while(1){Mg=o[Ig>>2];tg=Mg+Og|0;tg=p[tg|0]|p[tg+1|0]<<8|(p[tg+2|0]<<16|p[tg+3|0]<<24);o[Ig+16>>2]=Lg;o[Ig+20>>2]=Jg;o[Hg+8>>2]=tg;Jg=Ng;tg=Gg;Kg=Og+8|0;if(Kg>>>0<8){tg=tg+1|0}Qg=Kg;Kg=tg;if((Jg|0)<(tg|0)?1:(Jg|0)<=(tg|0)?Pg>>>0>=Qg>>>0?0:1:0){break c}tg=Mg+Lg|0;tg=p[tg|0]|p[tg+1|0]<<8|(p[tg+2|0]<<16|p[tg+3|0]<<24);o[Ig+16>>2]=Qg;o[Ig+20>>2]=Kg;o[Hg+12>>2]=tg;tg=Gg;Gg=Og+12|0;if(Gg>>>0<12){tg=tg+1|0}Jg=Gg;Gg=tg;if((Ng|0)<(tg|0)?1:(Ng|0)<=(tg|0)?Pg>>>0>=Jg>>>0?0:1:0){break c}tg=Mg+Qg|0;tg=p[tg|0]|p[tg+1|0]<<8|(p[tg+2|0]<<16|p[tg+3|0]<<24);o[Ig+16>>2]=Jg;o[Ig+20>>2]=Gg;o[Hg+16>>2]=tg;tg=o[Tg>>2];Ig=tg+100|0;Gg=o[Ig>>2];h:{if((Gg|0)==o[tg+104>>2]){Xh(tg+96|0,Hg+8|0);break h}tg=o[Hg+12>>2];o[Gg>>2]=o[Hg+8>>2];o[Gg+4>>2]=tg;o[Gg+8>>2]=o[Sg>>2];o[Ig>>2]=o[Ig>>2]+12}Wg=Wg+1|0;if((Rg|0)==(Wg|0)){break b}Ig=o[Ug>>2];tg=Ig;Og=o[tg+16>>2];Gg=o[tg+20>>2];o[Sg>>2]=0;o[Hg+8>>2]=0;o[Hg+12>>2]=0;Kg=o[tg+12>>2];Ng=Kg;Pg=o[tg+8>>2];Qg=Pg;tg=Gg;Jg=Og+4|0;if(Jg>>>0<4){tg=tg+1|0}Lg=Jg;Jg=tg;if((Kg|0)>(tg|0)?1:(Kg|0)>=(tg|0)?Qg>>>0<Lg>>>0?0:1:0){continue}break}}Ng=0;break a}o[o[a+4>>2]+80>>2]=Vg;Ng=1}R=Hg+32|0;return Ng|0}function Vh(a,Xg,Yg){var Zg=0,_g=0,$g=0,ah=0;a:{if(a>>>0>5){break a}$g=o[Yg+16>>2];Zg=o[Yg+12>>2];_g=o[Yg+20>>2];if((Zg|0)<(_g|0)?1:(Zg|0)<=(_g|0)?r[Yg+8>>2]>$g>>>0?0:1:0){break a}Zg=p[$g+o[Yg>>2]|0];$g=$g+1|0;if($g>>>0<1){_g=_g+1|0}o[Yg+16>>2]=$g;o[Yg+20>>2]=_g;_g=Xg;if(Zg&128){if(!Vh(a+1|0,Xg,Yg)){break a}a=o[Xg>>2]<<7;o[Xg>>2]=a;Zg=a|Zg&127}o[_g>>2]=Zg;ah=1}return ah}function Wh(a,Xg){var Yg=0,bh=0,ch=0,dh=0,eh=0,fh=0,gh=0,hh=0,ih=0,jh=0;Yg=R-32|0;R=Yg;o[Yg+24>>2]=0;o[Yg+16>>2]=0;o[Yg+20>>2]=0;a:{dh=u(Xg,3);if(dh){if(dh>>>0>=1073741824){break a}bh=u(Xg,12);eh=Hk(bh);o[Yg+16>>2]=eh;o[Yg+24>>2]=(dh<<2)+eh;ih=Yg,jh=xl(eh,0,bh)+bh|0,o[ih+20>>2]=jh}b:{if(!_f(dh,1,o[a+32>>2],eh)){break b}ch=1;if(!Xg){break b}hh=a+44|0;eh=0;while(1){dh=Yg+8|0;o[dh>>2]=0;o[Yg>>2]=0;o[Yg+4>>2]=0;a=o[Yg+16>>2]+(eh<<2)|0;bh=o[a>>2];ch=bh>>>1;bh=(bh&1?0-ch|0:ch)+fh|0;o[Yg>>2]=bh;ch=o[a+4>>2];fh=ch>>>1;bh=bh+(ch&1?0-fh|0:fh)|0;o[Yg+4>>2]=bh;a=o[a+8>>2];ch=a>>>1;fh=bh+(a&1?0-ch|0:ch)|0;o[dh>>2]=fh;bh=o[hh>>2];ch=bh+100|0;a=o[ch>>2];c:{if((a|0)!=o[bh+104>>2]){bh=o[Yg+4>>2];o[a>>2]=o[Yg>>2];o[a+4>>2]=bh;o[a+8>>2]=o[dh>>2];o[ch>>2]=o[ch>>2]+12;break c}Xh(bh+96|0,Yg)}eh=eh+3|0;ch=1;gh=gh+1|0;if((gh|0)!=(Xg|0)){continue}break}}a=o[Yg+16>>2];if(a){o[Yg+20>>2]=a;ul(a)}R=Yg+32|0;return ch}Yk();D()}function Xh(a,Xg){var kh=0,lh=0,mh=0,nh=0,oh=0,ph=0;a:{nh=o[a>>2];oh=o[a+4>>2]-nh|0;kh=(oh|0)/12|0;lh=kh+1|0;if(lh>>>0<357913942){ph=u(kh,12);mh=(o[a+8>>2]-nh|0)/12|0;kh=mh<<1;mh=mh>>>0<178956970?kh>>>0<lh>>>0?lh:kh:357913941;kh=0;b:{if(!mh){break b}if(mh>>>0>=357913942){break a}kh=Hk(u(mh,12))}lh=ph+kh|0;ph=o[Xg+4>>2];o[lh>>2]=o[Xg>>2];o[lh+4>>2]=ph;o[lh+8>>2]=o[Xg+8>>2];Xg=lh+u((oh|0)/-12|0,12)|0;kh=kh+u(mh,12)|0;lh=lh+12|0;if((oh|0)>=1){wl(Xg,nh,oh)}o[a>>2]=Xg;o[a+8>>2]=kh;o[a+4>>2]=lh;if(nh){ul(nh)}return}Yk();D()}_a(9912);D()}function Yh(a,Xg){a=a|0;Xg=Xg|0;var qh=0,rh=0,sh=0,th=0,uh=0,vh=0,wh=0;th=R-16|0;R=th;uh=Hk(64);qh=Hk(12);o[qh+8>>2]=o[o[a+4>>2]+80>>2];o[qh>>2]=9988;o[qh+4>>2]=0;o[th+8>>2]=qh;Qd(uh,th+8|0);a:{if((Xg|0)>=0){qh=o[a+12>>2];vh=a+8|0;wh=o[vh>>2];rh=qh-wh>>2;b:{if((rh|0)>(Xg|0)){break b}sh=Xg+1|0;if(rh>>>0<=Xg>>>0){Og(vh,sh-rh|0);break b}if(sh>>>0>=rh>>>0){break b}sh=wh+(sh<<2)|0;if((sh|0)!=(qh|0)){while(1){qh=qh+ -4|0;rh=o[qh>>2];o[qh>>2]=0;if(rh){l[o[o[rh>>2]+4>>2]](rh)}if((qh|0)!=(sh|0)){continue}break}}o[a+12>>2]=sh}Xg=o[vh>>2]+(Xg<<2)|0;a=o[Xg>>2];o[Xg>>2]=uh;rh=1;if(!a){break a}l[o[o[a>>2]+4>>2]](a);break a}l[o[o[uh>>2]+4>>2]](uh)}a=o[th+8>>2];o[th+8>>2]=0;if(a){l[o[o[a>>2]+4>>2]](a)}R=th+16|0;return rh|0}function Zh(a){a=a|0;var Xg=0,xh=0,yh=0,zh=0,Ah=0;o[a>>2]=10052;Xg=o[a+20>>2];if(Xg){o[a+24>>2]=Xg;ul(Xg)}yh=o[a+8>>2];if(yh){Xg=yh;Ah=a+12|0;xh=o[Ah>>2];zh=Xg;a:{if((Xg|0)==(xh|0)){break a}while(1){xh=xh+ -4|0;Xg=o[xh>>2];o[xh>>2]=0;if(Xg){l[o[o[Xg>>2]+4>>2]](Xg)}if((xh|0)!=(yh|0)){continue}break}zh=o[a+8>>2]}Xg=zh;o[Ah>>2]=yh;ul(Xg)}ul(a)}function _h(a,Bh){a=a|0;Bh=Bh|0;m[Bh+84|0]=1;o[Bh+72>>2]=o[Bh+68>>2];return 1}function $h(a){a=a|0;var Bh=0,Ch=0,Dh=0,Eh=0;a:{Bh=o[a+8>>2];b:{if((Bh|0)<0){break b}Ch=o[a+4>>2];Eh=o[Ch>>2];Dh=o[Ch+4>>2]-Eh>>2;c:{if(Bh>>>0>Dh>>>0){ai(Ch,Bh-Dh|0);Bh=o[a+8>>2];break c}if(Bh>>>0>=Dh>>>0){break c}o[Ch+4>>2]=Eh+(Bh<<2)}Eh=1;if((Bh|0)<1){break b}a=o[a+4>>2];Ch=o[a>>2];Dh=o[a+4>>2]-Ch>>2;a=0;while(1){if((a|0)==(Dh|0)){break a}o[Ch+(a<<2)>>2]=a;a=a+1|0;if((a|0)<(Bh|0)){continue}break}}return Eh|0}Zk();D()}function ai(a,Fh){var Gh=0,Hh=0,Ih=0,Jh=0,Kh=0,Lh=0,Mh=0,Nh=0,Oh=0;Hh=o[a+8>>2];Ih=a+4|0;Gh=o[Ih>>2];if(Hh-Gh>>2>>>0>=Fh>>>0){a=Fh<<2;Nh=Ih,Oh=xl(Gh,0,a)+a|0,o[Nh>>2]=Oh;return}a:{Ih=o[a>>2];Kh=Gh-Ih|0;Gh=Kh>>2;Jh=Gh+Fh|0;if(Jh>>>0<1073741824){Mh=Gh<<2;Hh=Hh-Ih|0;Gh=Hh>>1;Hh=Hh>>2>>>0<536870911?Gh>>>0<Jh>>>0?Jh:Gh:1073741823;Gh=0;b:{if(!Hh){break b}if(Hh>>>0>=1073741824){break a}Lh=Hk(Hh<<2);Gh=Lh}xl(Mh+Gh|0,0,Fh<<2);Fh=Gh+(Jh<<2)|0;Jh=Gh+(Hh<<2)|0;if((Kh|0)>=1){wl(Lh,Ih,Kh)}o[a>>2]=Gh;o[a+8>>2]=Jh;o[a+4>>2]=Fh;if(Ih){ul(Ih)}return}Yk();D()}_a(9912);D()}function bi(a){o[a+40>>2]=0;o[a>>2]=10052;o[a+4>>2]=0;o[a+8>>2]=0;o[a+12>>2]=0;o[a+16>>2]=0;o[a+20>>2]=0;o[a+24>>2]=0;o[a+28>>2]=0;o[a+32>>2]=0;n[a+36>>1]=0}function ci(a,Fh,Ph){var Qh=0,Rh=0,Sh=0,Th=0,Uh=0,Vh=0;Rh=R-16|0;R=Rh;Th=o[Fh+12>>2];Qh=o[Fh+20>>2];Sh=o[Fh+16>>2];Uh=Sh+5|0;if(Uh>>>0<5){Qh=Qh+1|0}a:{if((Th|0)<(Qh|0)?1:(Th|0)<=(Qh|0)?r[Fh+8>>2]>=Uh>>>0?0:1:0){Fh=Hk(32);o[Rh>>2]=Fh;o[Rh+4>>2]=29;o[Rh+8>>2]=-2147483616;m[Fh+29|0]=0;Ph=p[10121]|p[10122]<<8|(p[10123]<<16|p[10124]<<24);Qh=p[10117]|p[10118]<<8|(p[10119]<<16|p[10120]<<24);m[Fh+21|0]=Qh;m[Fh+22|0]=Qh>>>8;m[Fh+23|0]=Qh>>>16;m[Fh+24|0]=Qh>>>24;m[Fh+25|0]=Ph;m[Fh+26|0]=Ph>>>8;m[Fh+27|0]=Ph>>>16;m[Fh+28|0]=Ph>>>24;Ph=o[2529];Qh=o[2528];m[Fh+16|0]=Qh;m[Fh+17|0]=Qh>>>8;m[Fh+18|0]=Qh>>>16;m[Fh+19|0]=Qh>>>24;m[Fh+20|0]=Ph;m[Fh+21|0]=Ph>>>8;m[Fh+22|0]=Ph>>>16;m[Fh+23|0]=Ph>>>24;Ph=o[2527];Qh=o[2526];m[Fh+8|0]=Qh;m[Fh+9|0]=Qh>>>8;m[Fh+10|0]=Qh>>>16;m[Fh+11|0]=Qh>>>24;m[Fh+12|0]=Ph;m[Fh+13|0]=Ph>>>8;m[Fh+14|0]=Ph>>>16;m[Fh+15|0]=Ph>>>24;Ph=o[2525];Qh=o[2524];m[Fh|0]=Qh;m[Fh+1|0]=Qh>>>8;m[Fh+2|0]=Qh>>>16;m[Fh+3|0]=Qh>>>24;m[Fh+4|0]=Ph;m[Fh+5|0]=Ph>>>8;m[Fh+6|0]=Ph>>>16;m[Fh+7|0]=Ph>>>24;o[a>>2]=-2;Mk(a+4|0,Rh);if(m[Rh+11|0]>-1){break a}ul(o[Rh>>2]);break a}Qh=Sh+o[Fh>>2]|0;Th=p[Qh|0]|p[Qh+1|0]<<8|(p[Qh+2|0]<<16|p[Qh+3|0]<<24);m[Ph|0]=Th;m[Ph+1|0]=Th>>>8;m[Ph+2|0]=Th>>>16;m[Ph+3|0]=Th>>>24;m[Ph+4|0]=p[Qh+4|0];Th=Fh;Qh=o[Fh+20>>2];Sh=o[Fh+16>>2]+5|0;if(Sh>>>0<5){Qh=Qh+1|0}Uh=Sh;Sh=Qh;o[Th+16>>2]=Uh;o[Th+20>>2]=Qh;if(Zj(Ph,10126,5)){Fh=Hk(32);o[Rh>>2]=Fh;o[Rh+4>>2]=17;o[Rh+8>>2]=-2147483616;m[Fh+17|0]=0;m[Fh+16|0]=p[10148];Ph=p[10144]|p[10145]<<8|(p[10146]<<16|p[10147]<<24);Qh=p[10140]|p[10141]<<8|(p[10142]<<16|p[10143]<<24);m[Fh+8|0]=Qh;m[Fh+9|0]=Qh>>>8;m[Fh+10|0]=Qh>>>16;m[Fh+11|0]=Qh>>>24;m[Fh+12|0]=Ph;m[Fh+13|0]=Ph>>>8;m[Fh+14|0]=Ph>>>16;m[Fh+15|0]=Ph>>>24;Ph=p[10136]|p[10137]<<8|(p[10138]<<16|p[10139]<<24);Qh=p[10132]|p[10133]<<8|(p[10134]<<16|p[10135]<<24);m[Fh|0]=Qh;m[Fh+1|0]=Qh>>>8;m[Fh+2|0]=Qh>>>16;m[Fh+3|0]=Qh>>>24;m[Fh+4|0]=Ph;m[Fh+5|0]=Ph>>>8;m[Fh+6|0]=Ph>>>16;m[Fh+7|0]=Ph>>>24;o[a>>2]=-1;Mk(a+4|0,Rh);if(m[Rh+11|0]>-1){break a}ul(o[Rh>>2]);break a}Qh=o[Fh+12>>2];if((Qh|0)<(Sh|0)?1:(Qh|0)<=(Sh|0)?r[Fh+8>>2]>Uh>>>0?0:1:0){Fh=Hk(32);o[Rh>>2]=Fh;o[Rh+4>>2]=29;o[Rh+8>>2]=-2147483616;m[Fh+29|0]=0;Ph=p[10121]|p[10122]<<8|(p[10123]<<16|p[10124]<<24);Qh=p[10117]|p[10118]<<8|(p[10119]<<16|p[10120]<<24);m[Fh+21|0]=Qh;m[Fh+22|0]=Qh>>>8;m[Fh+23|0]=Qh>>>16;m[Fh+24|0]=Qh>>>24;m[Fh+25|0]=Ph;m[Fh+26|0]=Ph>>>8;m[Fh+27|0]=Ph>>>16;m[Fh+28|0]=Ph>>>24;Ph=o[2529];Qh=o[2528];m[Fh+16|0]=Qh;m[Fh+17|0]=Qh>>>8;m[Fh+18|0]=Qh>>>16;m[Fh+19|0]=Qh>>>24;m[Fh+20|0]=Ph;m[Fh+21|0]=Ph>>>8;m[Fh+22|0]=Ph>>>16;m[Fh+23|0]=Ph>>>24;Ph=o[2527];Qh=o[2526];m[Fh+8|0]=Qh;m[Fh+9|0]=Qh>>>8;m[Fh+10|0]=Qh>>>16;m[Fh+11|0]=Qh>>>24;m[Fh+12|0]=Ph;m[Fh+13|0]=Ph>>>8;m[Fh+14|0]=Ph>>>16;m[Fh+15|0]=Ph>>>24;Ph=o[2525];Qh=o[2524];m[Fh|0]=Qh;m[Fh+1|0]=Qh>>>8;m[Fh+2|0]=Qh>>>16;m[Fh+3|0]=Qh>>>24;m[Fh+4|0]=Ph;m[Fh+5|0]=Ph>>>8;m[Fh+6|0]=Ph>>>16;m[Fh+7|0]=Ph>>>24;o[a>>2]=-2;Mk(a+4|0,Rh);if(m[Rh+11|0]>-1){break a}ul(o[Rh>>2]);break a}m[Ph+5|0]=p[Uh+o[Fh>>2]|0];Qh=o[Fh+20>>2];Sh=o[Fh+16>>2]+1|0;if(Sh>>>0<1){Qh=Qh+1|0}o[Fh+16>>2]=Sh;o[Th+20>>2]=Qh;Th=o[Fh+12>>2];if((Th|0)<(Qh|0)?1:(Th|0)<=(Qh|0)?r[Fh+8>>2]>Sh>>>0?0:1:0){Fh=Hk(32);o[Rh>>2]=Fh;o[Rh+4>>2]=29;o[Rh+8>>2]=-2147483616;m[Fh+29|0]=0;Ph=p[10121]|p[10122]<<8|(p[10123]<<16|p[10124]<<24);Qh=p[10117]|p[10118]<<8|(p[10119]<<16|p[10120]<<24);m[Fh+21|0]=Qh;m[Fh+22|0]=Qh>>>8;m[Fh+23|0]=Qh>>>16;m[Fh+24|0]=Qh>>>24;m[Fh+25|0]=Ph;m[Fh+26|0]=Ph>>>8;m[Fh+27|0]=Ph>>>16;m[Fh+28|0]=Ph>>>24;Ph=o[2529];Qh=o[2528];m[Fh+16|0]=Qh;m[Fh+17|0]=Qh>>>8;m[Fh+18|0]=Qh>>>16;m[Fh+19|0]=Qh>>>24;m[Fh+20|0]=Ph;m[Fh+21|0]=Ph>>>8;m[Fh+22|0]=Ph>>>16;m[Fh+23|0]=Ph>>>24;Ph=o[2527];Qh=o[2526];m[Fh+8|0]=Qh;m[Fh+9|0]=Qh>>>8;m[Fh+10|0]=Qh>>>16;m[Fh+11|0]=Qh>>>24;m[Fh+12|0]=Ph;m[Fh+13|0]=Ph>>>8;m[Fh+14|0]=Ph>>>16;m[Fh+15|0]=Ph>>>24;Ph=o[2525];Qh=o[2524];m[Fh|0]=Qh;m[Fh+1|0]=Qh>>>8;m[Fh+2|0]=Qh>>>16;m[Fh+3|0]=Qh>>>24;m[Fh+4|0]=Ph;m[Fh+5|0]=Ph>>>8;m[Fh+6|0]=Ph>>>16;m[Fh+7|0]=Ph>>>24;o[a>>2]=-2;Mk(a+4|0,Rh);if(m[Rh+11|0]>-1){break a}ul(o[Rh>>2]);break a}m[Ph+6|0]=p[Sh+o[Fh>>2]|0];Qh=o[Fh+20>>2];Sh=o[Fh+16>>2]+1|0;if(Sh>>>0<1){Qh=Qh+1|0}o[Fh+16>>2]=Sh;o[Fh+20>>2]=Qh;Th=o[Fh+12>>2];if((Th|0)<(Qh|0)?1:(Th|0)<=(Qh|0)?r[Fh+8>>2]>Sh>>>0?0:1:0){Fh=Hk(32);o[Rh>>2]=Fh;o[Rh+4>>2]=29;o[Rh+8>>2]=-2147483616;m[Fh+29|0]=0;Ph=p[10121]|p[10122]<<8|(p[10123]<<16|p[10124]<<24);Qh=p[10117]|p[10118]<<8|(p[10119]<<16|p[10120]<<24);m[Fh+21|0]=Qh;m[Fh+22|0]=Qh>>>8;m[Fh+23|0]=Qh>>>16;m[Fh+24|0]=Qh>>>24;m[Fh+25|0]=Ph;m[Fh+26|0]=Ph>>>8;m[Fh+27|0]=Ph>>>16;m[Fh+28|0]=Ph>>>24;Ph=o[2529];Qh=o[2528];m[Fh+16|0]=Qh;m[Fh+17|0]=Qh>>>8;m[Fh+18|0]=Qh>>>16;m[Fh+19|0]=Qh>>>24;m[Fh+20|0]=Ph;m[Fh+21|0]=Ph>>>8;m[Fh+22|0]=Ph>>>16;m[Fh+23|0]=Ph>>>24;Ph=o[2527];Qh=o[2526];m[Fh+8|0]=Qh;m[Fh+9|0]=Qh>>>8;m[Fh+10|0]=Qh>>>16;m[Fh+11|0]=Qh>>>24;m[Fh+12|0]=Ph;m[Fh+13|0]=Ph>>>8;m[Fh+14|0]=Ph>>>16;m[Fh+15|0]=Ph>>>24;Ph=o[2525];Qh=o[2524];m[Fh|0]=Qh;m[Fh+1|0]=Qh>>>8;m[Fh+2|0]=Qh>>>16;m[Fh+3|0]=Qh>>>24;m[Fh+4|0]=Ph;m[Fh+5|0]=Ph>>>8;m[Fh+6|0]=Ph>>>16;m[Fh+7|0]=Ph>>>24;o[a>>2]=-2;Mk(a+4|0,Rh);if(m[Rh+11|0]>-1){break a}ul(o[Rh>>2]);break a}m[Ph+7|0]=p[Sh+o[Fh>>2]|0];Qh=o[Fh+20>>2];Sh=o[Fh+16>>2]+1|0;if(Sh>>>0<1){Qh=Qh+1|0}o[Fh+16>>2]=Sh;o[Fh+20>>2]=Qh;Th=o[Fh+12>>2];if((Th|0)<(Qh|0)?1:(Th|0)<=(Qh|0)?r[Fh+8>>2]>Sh>>>0?0:1:0){Fh=Hk(32);o[Rh>>2]=Fh;o[Rh+4>>2]=29;o[Rh+8>>2]=-2147483616;m[Fh+29|0]=0;Ph=p[10121]|p[10122]<<8|(p[10123]<<16|p[10124]<<24);Qh=p[10117]|p[10118]<<8|(p[10119]<<16|p[10120]<<24);m[Fh+21|0]=Qh;m[Fh+22|0]=Qh>>>8;m[Fh+23|0]=Qh>>>16;m[Fh+24|0]=Qh>>>24;m[Fh+25|0]=Ph;m[Fh+26|0]=Ph>>>8;m[Fh+27|0]=Ph>>>16;m[Fh+28|0]=Ph>>>24;Ph=o[2529];Qh=o[2528];m[Fh+16|0]=Qh;m[Fh+17|0]=Qh>>>8;m[Fh+18|0]=Qh>>>16;m[Fh+19|0]=Qh>>>24;m[Fh+20|0]=Ph;m[Fh+21|0]=Ph>>>8;m[Fh+22|0]=Ph>>>16;m[Fh+23|0]=Ph>>>24;Ph=o[2527];Qh=o[2526];m[Fh+8|0]=Qh;m[Fh+9|0]=Qh>>>8;m[Fh+10|0]=Qh>>>16;m[Fh+11|0]=Qh>>>24;m[Fh+12|0]=Ph;m[Fh+13|0]=Ph>>>8;m[Fh+14|0]=Ph>>>16;m[Fh+15|0]=Ph>>>24;Ph=o[2525];Qh=o[2524];m[Fh|0]=Qh;m[Fh+1|0]=Qh>>>8;m[Fh+2|0]=Qh>>>16;m[Fh+3|0]=Qh>>>24;m[Fh+4|0]=Ph;m[Fh+5|0]=Ph>>>8;m[Fh+6|0]=Ph>>>16;m[Fh+7|0]=Ph>>>24;o[a>>2]=-2;Mk(a+4|0,Rh);if(m[Rh+11|0]>-1){break a}ul(o[Rh>>2]);break a}m[Ph+8|0]=p[Sh+o[Fh>>2]|0];Qh=o[Fh+20>>2];Sh=Qh;Vh=o[Fh+16>>2];Uh=Vh+1|0;if(Uh>>>0<1){Qh=Qh+1|0}o[Fh+16>>2]=Uh;o[Fh+20>>2]=Qh;Th=o[Fh+12>>2];Qh=Sh;Sh=Vh+3|0;if(Sh>>>0<3){Qh=Qh+1|0}if((Th|0)<(Qh|0)?1:(Th|0)<=(Qh|0)?r[Fh+8>>2]>=Sh>>>0?0:1:0){Fh=Hk(32);o[Rh>>2]=Fh;o[Rh+4>>2]=29;o[Rh+8>>2]=-2147483616;m[Fh+29|0]=0;Ph=p[10121]|p[10122]<<8|(p[10123]<<16|p[10124]<<24);Qh=p[10117]|p[10118]<<8|(p[10119]<<16|p[10120]<<24);m[Fh+21|0]=Qh;m[Fh+22|0]=Qh>>>8;m[Fh+23|0]=Qh>>>16;m[Fh+24|0]=Qh>>>24;m[Fh+25|0]=Ph;m[Fh+26|0]=Ph>>>8;m[Fh+27|0]=Ph>>>16;m[Fh+28|0]=Ph>>>24;Ph=o[2529];Qh=o[2528];m[Fh+16|0]=Qh;m[Fh+17|0]=Qh>>>8;m[Fh+18|0]=Qh>>>16;m[Fh+19|0]=Qh>>>24;m[Fh+20|0]=Ph;m[Fh+21|0]=Ph>>>8;m[Fh+22|0]=Ph>>>16;m[Fh+23|0]=Ph>>>24;Ph=o[2527];Qh=o[2526];m[Fh+8|0]=Qh;m[Fh+9|0]=Qh>>>8;m[Fh+10|0]=Qh>>>16;m[Fh+11|0]=Qh>>>24;m[Fh+12|0]=Ph;m[Fh+13|0]=Ph>>>8;m[Fh+14|0]=Ph>>>16;m[Fh+15|0]=Ph>>>24;Ph=o[2525];Qh=o[2524];m[Fh|0]=Qh;m[Fh+1|0]=Qh>>>8;m[Fh+2|0]=Qh>>>16;m[Fh+3|0]=Qh>>>24;m[Fh+4|0]=Ph;m[Fh+5|0]=Ph>>>8;m[Fh+6|0]=Ph>>>16;m[Fh+7|0]=Ph>>>24;o[a>>2]=-2;Mk(a+4|0,Rh);if(m[Rh+11|0]>-1){break a}ul(o[Rh>>2]);break a}Sh=Ph;Ph=Uh+o[Fh>>2]|0;n[Sh+10>>1]=p[Ph|0]|p[Ph+1|0]<<8;Ph=Fh;Sh=Fh;Qh=o[Fh+20>>2];Fh=o[Fh+16>>2]+2|0;if(Fh>>>0<2){Qh=Qh+1|0}o[Sh+16>>2]=Fh;o[Ph+20>>2]=Qh;o[a+8>>2]=0;o[a+12>>2]=0;o[a>>2]=0;o[a+4>>2]=0}R=Rh+16|0}function di(a,Fh){var Ph=0,Wh=0,Xh=0,Yh=0;Wh=R-48|0;R=Wh;Ph=Hk(36);Xh=Ph+4|0;o[Xh>>2]=0;o[Xh+4>>2]=0;Yh=Ph+16|0;o[Yh>>2]=0;o[Yh+4>>2]=0;o[Ph>>2]=Xh;o[Ph+32>>2]=0;o[Ph+24>>2]=0;o[Ph+28>>2]=0;o[Ph+12>>2]=Yh;o[Wh+40>>2]=Ph;Ph=Wh+32|0;o[Ph>>2]=0;a:{if(!cj(Ph,o[Fh+32>>2],o[Wh+40>>2])){o[Wh+24>>2]=0;o[Wh+16>>2]=0;o[Wh+20>>2]=0;Fh=Hk(32);o[Wh+16>>2]=Fh;o[Wh+20>>2]=26;o[Wh+24>>2]=-2147483616;m[Fh+26|0]=0;Ph=p[10174]|p[10175]<<8;m[Fh+24|0]=Ph;m[Fh+25|0]=Ph>>>8;Ph=p[10170]|p[10171]<<8|(p[10172]<<16|p[10173]<<24);Xh=p[10166]|p[10167]<<8|(p[10168]<<16|p[10169]<<24);m[Fh+16|0]=Xh;m[Fh+17|0]=Xh>>>8;m[Fh+18|0]=Xh>>>16;m[Fh+19|0]=Xh>>>24;m[Fh+20|0]=Ph;m[Fh+21|0]=Ph>>>8;m[Fh+22|0]=Ph>>>16;m[Fh+23|0]=Ph>>>24;Ph=p[10162]|p[10163]<<8|(p[10164]<<16|p[10165]<<24);Xh=p[10158]|p[10159]<<8|(p[10160]<<16|p[10161]<<24);m[Fh+8|0]=Xh;m[Fh+9|0]=Xh>>>8;m[Fh+10|0]=Xh>>>16;m[Fh+11|0]=Xh>>>24;m[Fh+12|0]=Ph;m[Fh+13|0]=Ph>>>8;m[Fh+14|0]=Ph>>>16;m[Fh+15|0]=Ph>>>24;Ph=p[10154]|p[10155]<<8|(p[10156]<<16|p[10157]<<24);Xh=p[10150]|p[10151]<<8|(p[10152]<<16|p[10153]<<24);m[Fh|0]=Xh;m[Fh+1|0]=Xh>>>8;m[Fh+2|0]=Xh>>>16;m[Fh+3|0]=Xh>>>24;m[Fh+4|0]=Ph;m[Fh+5|0]=Ph>>>8;m[Fh+6|0]=Ph>>>16;m[Fh+7|0]=Ph>>>24;o[a>>2]=-1;Mk(a+4|0,Wh+16|0);if(m[Wh+27|0]>-1){break a}ul(o[Wh+16>>2]);break a}Fh=o[Fh+4>>2];o[Wh+8>>2]=0;Xh=o[Wh+40>>2];o[Wh+40>>2]=0;Ph=o[Fh+4>>2];o[Fh+4>>2]=Xh;b:{if(!Ph){o[Wh+8>>2]=0;break b}ei(Ph);Fh=o[Wh+8>>2];o[Wh+8>>2]=0;if(!Fh){break b}ei(Fh)}o[a>>2]=0;o[a+4>>2]=0;o[a+8>>2]=0;o[a+12>>2]=0}a=o[Wh+40>>2];o[Wh+40>>2]=0;if(a){ei(a)}R=Wh+48|0}function ei(a){var Fh=0,Zh=0,_h=0,$h=0,ai=0;if(a){_h=o[a+24>>2];if(_h){Fh=_h;ai=a+28|0;Zh=o[ai>>2];$h=Fh;a:{if((Zh|0)==(Fh|0)){break a}while(1){Zh=Zh+ -4|0;Fh=o[Zh>>2];o[Zh>>2]=0;if(Fh){Fc(Fh+12|0,o[Fh+16>>2]);Gc(Fh,o[Fh+4>>2]);ul(Fh)}if((Zh|0)!=(_h|0)){continue}break}$h=o[a+24>>2]}Fh=$h;o[ai>>2]=_h;ul(Fh)}Fc(a+12|0,o[a+16>>2]);Gc(a,o[a+4>>2]);ul(a)}}function fi(a,bi,ei,fi,gi){var hi=0,ii=0;hi=R-32|0;R=hi;o[bi+32>>2]=fi;o[bi+40>>2]=ei;o[bi+4>>2]=gi;ci(a,fi,hi+16|0);a:{if(o[a>>2]){break a}ei=a+4|0;if(m[a+15|0]<=-1){ul(o[ei>>2])}gi=p[hi+23|0];if((l[o[o[bi>>2]+8>>2]](bi)|0)!=(gi|0)){bi=Hk(64);o[hi>>2]=bi;o[hi+4>>2]=50;o[hi+8>>2]=-2147483584;m[bi+50|0]=0;fi=p[10225]|p[10226]<<8;m[bi+48|0]=fi;m[bi+49|0]=fi>>>8;fi=p[10221]|p[10222]<<8|(p[10223]<<16|p[10224]<<24);gi=p[10217]|p[10218]<<8|(p[10219]<<16|p[10220]<<24);m[bi+40|0]=gi;m[bi+41|0]=gi>>>8;m[bi+42|0]=gi>>>16;m[bi+43|0]=gi>>>24;m[bi+44|0]=fi;m[bi+45|0]=fi>>>8;m[bi+46|0]=fi>>>16;m[bi+47|0]=fi>>>24;fi=p[10213]|p[10214]<<8|(p[10215]<<16|p[10216]<<24);gi=p[10209]|p[10210]<<8|(p[10211]<<16|p[10212]<<24);m[bi+32|0]=gi;m[bi+33|0]=gi>>>8;m[bi+34|0]=gi>>>16;m[bi+35|0]=gi>>>24;m[bi+36|0]=fi;m[bi+37|0]=fi>>>8;m[bi+38|0]=fi>>>16;m[bi+39|0]=fi>>>24;fi=p[10205]|p[10206]<<8|(p[10207]<<16|p[10208]<<24);gi=p[10201]|p[10202]<<8|(p[10203]<<16|p[10204]<<24);m[bi+24|0]=gi;m[bi+25|0]=gi>>>8;m[bi+26|0]=gi>>>16;m[bi+27|0]=gi>>>24;m[bi+28|0]=fi;m[bi+29|0]=fi>>>8;m[bi+30|0]=fi>>>16;m[bi+31|0]=fi>>>24;fi=p[10197]|p[10198]<<8|(p[10199]<<16|p[10200]<<24);gi=p[10193]|p[10194]<<8|(p[10195]<<16|p[10196]<<24);m[bi+16|0]=gi;m[bi+17|0]=gi>>>8;m[bi+18|0]=gi>>>16;m[bi+19|0]=gi>>>24;m[bi+20|0]=fi;m[bi+21|0]=fi>>>8;m[bi+22|0]=fi>>>16;m[bi+23|0]=fi>>>24;fi=p[10189]|p[10190]<<8|(p[10191]<<16|p[10192]<<24);gi=p[10185]|p[10186]<<8|(p[10187]<<16|p[10188]<<24);m[bi+8|0]=gi;m[bi+9|0]=gi>>>8;m[bi+10|0]=gi>>>16;m[bi+11|0]=gi>>>24;m[bi+12|0]=fi;m[bi+13|0]=fi>>>8;m[bi+14|0]=fi>>>16;m[bi+15|0]=fi>>>24;fi=p[10181]|p[10182]<<8|(p[10183]<<16|p[10184]<<24);gi=p[10177]|p[10178]<<8|(p[10179]<<16|p[10180]<<24);m[bi|0]=gi;m[bi+1|0]=gi>>>8;m[bi+2|0]=gi>>>16;m[bi+3|0]=gi>>>24;m[bi+4|0]=fi;m[bi+5|0]=fi>>>8;m[bi+6|0]=fi>>>16;m[bi+7|0]=fi>>>24;o[a>>2]=-1;Mk(ei,hi);if(m[hi+11|0]>-1){break a}ul(o[hi>>2]);break a}fi=p[hi+21|0];m[bi+36|0]=fi;ii=p[hi+22|0];m[bi+37|0]=ii;if((fi+ -1&255)>>>0>=2){bi=Hk(32);o[hi>>2]=bi;o[hi+4>>2]=22;o[hi+8>>2]=-2147483616;m[bi+22|0]=0;fi=p[10246]|p[10247]<<8|(p[10248]<<16|p[10249]<<24);gi=p[10242]|p[10243]<<8|(p[10244]<<16|p[10245]<<24);m[bi+14|0]=gi;m[bi+15|0]=gi>>>8;m[bi+16|0]=gi>>>16;m[bi+17|0]=gi>>>24;m[bi+18|0]=fi;m[bi+19|0]=fi>>>8;m[bi+20|0]=fi>>>16;m[bi+21|0]=fi>>>24;fi=p[10240]|p[10241]<<8|(p[10242]<<16|p[10243]<<24);gi=p[10236]|p[10237]<<8|(p[10238]<<16|p[10239]<<24);m[bi+8|0]=gi;m[bi+9|0]=gi>>>8;m[bi+10|0]=gi>>>16;m[bi+11|0]=gi>>>24;m[bi+12|0]=fi;m[bi+13|0]=fi>>>8;m[bi+14|0]=fi>>>16;m[bi+15|0]=fi>>>24;fi=p[10232]|p[10233]<<8|(p[10234]<<16|p[10235]<<24);gi=p[10228]|p[10229]<<8|(p[10230]<<16|p[10231]<<24);m[bi|0]=gi;m[bi+1|0]=gi>>>8;m[bi+2|0]=gi>>>16;m[bi+3|0]=gi>>>24;m[bi+4|0]=fi;m[bi+5|0]=fi>>>8;m[bi+6|0]=fi>>>16;m[bi+7|0]=fi>>>24;o[a>>2]=-5;Mk(ei,hi);if(m[hi+11|0]>-1){break a}ul(o[hi>>2]);break a}if(!((fi|0)!=2|(gi?2:3)>>>0>=ii>>>0)){bi=Hk(32);o[hi>>2]=bi;o[hi+4>>2]=22;o[hi+8>>2]=-2147483616;m[bi+22|0]=0;fi=p[10269]|p[10270]<<8|(p[10271]<<16|p[10272]<<24);gi=p[10265]|p[10266]<<8|(p[10267]<<16|p[10268]<<24);m[bi+14|0]=gi;m[bi+15|0]=gi>>>8;m[bi+16|0]=gi>>>16;m[bi+17|0]=gi>>>24;m[bi+18|0]=fi;m[bi+19|0]=fi>>>8;m[bi+20|0]=fi>>>16;m[bi+21|0]=fi>>>24;fi=p[10263]|p[10264]<<8|(p[10265]<<16|p[10266]<<24);gi=p[10259]|p[10260]<<8|(p[10261]<<16|p[10262]<<24);m[bi+8|0]=gi;m[bi+9|0]=gi>>>8;m[bi+10|0]=gi>>>16;m[bi+11|0]=gi>>>24;m[bi+12|0]=fi;m[bi+13|0]=fi>>>8;m[bi+14|0]=fi>>>16;m[bi+15|0]=fi>>>24;fi=p[10255]|p[10256]<<8|(p[10257]<<16|p[10258]<<24);gi=p[10251]|p[10252]<<8|(p[10253]<<16|p[10254]<<24);m[bi|0]=gi;m[bi+1|0]=gi>>>8;m[bi+2|0]=gi>>>16;m[bi+3|0]=gi>>>24;m[bi+4|0]=fi;m[bi+5|0]=fi>>>8;m[bi+6|0]=fi>>>16;m[bi+7|0]=fi>>>24;o[a>>2]=-5;Mk(ei,hi);if(m[hi+11|0]>-1){break a}ul(o[hi>>2]);break a}fi=fi<<8|ii;n[o[bi+32>>2]+38>>1]=fi;b:{if((fi&65535)>>>0<259|n[hi+26>>1]>-1){break b}di(a,bi);if(o[a>>2]){break a}if(m[ei+11|0]>-1){break b}ul(o[ei>>2])}if(!l[o[o[bi>>2]+12>>2]](bi)){bi=Hk(48);o[hi>>2]=bi;o[hi+4>>2]=33;o[hi+8>>2]=-2147483600;m[bi+33|0]=0;m[bi+32|0]=p[10306];fi=p[10302]|p[10303]<<8|(p[10304]<<16|p[10305]<<24);gi=p[10298]|p[10299]<<8|(p[10300]<<16|p[10301]<<24);m[bi+24|0]=gi;m[bi+25|0]=gi>>>8;m[bi+26|0]=gi>>>16;m[bi+27|0]=gi>>>24;m[bi+28|0]=fi;m[bi+29|0]=fi>>>8;m[bi+30|0]=fi>>>16;m[bi+31|0]=fi>>>24;fi=p[10294]|p[10295]<<8|(p[10296]<<16|p[10297]<<24);gi=p[10290]|p[10291]<<8|(p[10292]<<16|p[10293]<<24);m[bi+16|0]=gi;m[bi+17|0]=gi>>>8;m[bi+18|0]=gi>>>16;m[bi+19|0]=gi>>>24;m[bi+20|0]=fi;m[bi+21|0]=fi>>>8;m[bi+22|0]=fi>>>16;m[bi+23|0]=fi>>>24;fi=p[10286]|p[10287]<<8|(p[10288]<<16|p[10289]<<24);gi=p[10282]|p[10283]<<8|(p[10284]<<16|p[10285]<<24);m[bi+8|0]=gi;m[bi+9|0]=gi>>>8;m[bi+10|0]=gi>>>16;m[bi+11|0]=gi>>>24;m[bi+12|0]=fi;m[bi+13|0]=fi>>>8;m[bi+14|0]=fi>>>16;m[bi+15|0]=fi>>>24;fi=p[10278]|p[10279]<<8|(p[10280]<<16|p[10281]<<24);gi=p[10274]|p[10275]<<8|(p[10276]<<16|p[10277]<<24);m[bi|0]=gi;m[bi+1|0]=gi>>>8;m[bi+2|0]=gi>>>16;m[bi+3|0]=gi>>>24;m[bi+4|0]=fi;m[bi+5|0]=fi>>>8;m[bi+6|0]=fi>>>16;m[bi+7|0]=fi>>>24;o[a>>2]=-1;Mk(ei,hi);if(m[hi+11|0]>-1){break a}ul(o[hi>>2]);break a}if(!l[o[o[bi>>2]+20>>2]](bi)){bi=Hk(32);o[hi>>2]=bi;o[hi+4>>2]=31;o[hi+8>>2]=-2147483616;m[bi+31|0]=0;fi=p[10335]|p[10336]<<8|(p[10337]<<16|p[10338]<<24);gi=p[10331]|p[10332]<<8|(p[10333]<<16|p[10334]<<24);m[bi+23|0]=gi;m[bi+24|0]=gi>>>8;m[bi+25|0]=gi>>>16;m[bi+26|0]=gi>>>24;m[bi+27|0]=fi;m[bi+28|0]=fi>>>8;m[bi+29|0]=fi>>>16;m[bi+30|0]=fi>>>24;fi=p[10328]|p[10329]<<8|(p[10330]<<16|p[10331]<<24);gi=p[10324]|p[10325]<<8|(p[10326]<<16|p[10327]<<24);m[bi+16|0]=gi;m[bi+17|0]=gi>>>8;m[bi+18|0]=gi>>>16;m[bi+19|0]=gi>>>24;m[bi+20|0]=fi;m[bi+21|0]=fi>>>8;m[bi+22|0]=fi>>>16;m[bi+23|0]=fi>>>24;fi=p[10320]|p[10321]<<8|(p[10322]<<16|p[10323]<<24);gi=p[10316]|p[10317]<<8|(p[10318]<<16|p[10319]<<24);m[bi+8|0]=gi;m[bi+9|0]=gi>>>8;m[bi+10|0]=gi>>>16;m[bi+11|0]=gi>>>24;m[bi+12|0]=fi;m[bi+13|0]=fi>>>8;m[bi+14|0]=fi>>>16;m[bi+15|0]=fi>>>24;fi=p[10312]|p[10313]<<8|(p[10314]<<16|p[10315]<<24);gi=p[10308]|p[10309]<<8|(p[10310]<<16|p[10311]<<24);m[bi|0]=gi;m[bi+1|0]=gi>>>8;m[bi+2|0]=gi>>>16;m[bi+3|0]=gi>>>24;m[bi+4|0]=fi;m[bi+5|0]=fi>>>8;m[bi+6|0]=fi>>>16;m[bi+7|0]=fi>>>24;o[a>>2]=-1;Mk(ei,hi);if(m[hi+11|0]>-1){break a}ul(o[hi>>2]);break a}if(!l[o[o[bi>>2]+24>>2]](bi)){bi=Hk(48);o[hi>>2]=bi;o[hi+4>>2]=34;o[hi+8>>2]=-2147483600;m[bi+34|0]=0;fi=p[10372]|p[10373]<<8;m[bi+32|0]=fi;m[bi+33|0]=fi>>>8;fi=p[10368]|p[10369]<<8|(p[10370]<<16|p[10371]<<24);gi=p[10364]|p[10365]<<8|(p[10366]<<16|p[10367]<<24);m[bi+24|0]=gi;m[bi+25|0]=gi>>>8;m[bi+26|0]=gi>>>16;m[bi+27|0]=gi>>>24;m[bi+28|0]=fi;m[bi+29|0]=fi>>>8;m[bi+30|0]=fi>>>16;m[bi+31|0]=fi>>>24;fi=p[10360]|p[10361]<<8|(p[10362]<<16|p[10363]<<24);gi=p[10356]|p[10357]<<8|(p[10358]<<16|p[10359]<<24);m[bi+16|0]=gi;m[bi+17|0]=gi>>>8;m[bi+18|0]=gi>>>16;m[bi+19|0]=gi>>>24;m[bi+20|0]=fi;m[bi+21|0]=fi>>>8;m[bi+22|0]=fi>>>16;m[bi+23|0]=fi>>>24;fi=p[10352]|p[10353]<<8|(p[10354]<<16|p[10355]<<24);gi=p[10348]|p[10349]<<8|(p[10350]<<16|p[10351]<<24);m[bi+8|0]=gi;m[bi+9|0]=gi>>>8;m[bi+10|0]=gi>>>16;m[bi+11|0]=gi>>>24;m[bi+12|0]=fi;m[bi+13|0]=fi>>>8;m[bi+14|0]=fi>>>16;m[bi+15|0]=fi>>>24;fi=p[10344]|p[10345]<<8|(p[10346]<<16|p[10347]<<24);gi=p[10340]|p[10341]<<8|(p[10342]<<16|p[10343]<<24);m[bi|0]=gi;m[bi+1|0]=gi>>>8;m[bi+2|0]=gi>>>16;m[bi+3|0]=gi>>>24;m[bi+4|0]=fi;m[bi+5|0]=fi>>>8;m[bi+6|0]=fi>>>16;m[bi+7|0]=fi>>>24;o[a>>2]=-1;Mk(ei,hi);if(m[hi+11|0]>-1){break a}ul(o[hi>>2]);break a}o[a>>2]=0;o[a+4>>2]=0;o[a+8>>2]=0;o[a+12>>2]=0}R=hi+32|0}function gi(a){a=a|0;var bi=0,ci=0,di=0,ei=0,fi=0,gi=0,ji=0,ki=0,li=0,mi=0,ni=0,oi=0;a:{bi=o[a+32>>2];ei=o[bi+16>>2];gi=o[bi+12>>2];di=o[bi+20>>2];b:{if((gi|0)<(di|0)?1:(gi|0)<=(di|0)?r[bi+8>>2]>ei>>>0?0:1:0){break b}fi=p[ei+o[bi>>2]|0];ji=ei+1|0;if(ji>>>0<1){di=di+1|0}o[bi+16>>2]=ji;o[bi+20>>2]=di;c:{if(!fi){break c}while(1){if(l[o[o[a>>2]+16>>2]](a,ci)){ci=ci+1|0;if((fi|0)!=(ci|0)){continue}break c}break}return 0}ci=o[a+8>>2];di=o[a+12>>2];if((ci|0)!=(di|0)){while(1){bi=o[ci>>2];if(!l[o[o[bi>>2]+8>>2]](bi,a,o[a+4>>2])){break b}ci=ci+4|0;if((di|0)!=(ci|0)){continue}break}}d:{if(!fi){break d}ci=0;di=a+8|0;while(1){bi=o[o[di>>2]+(ci<<2)>>2];if(!l[o[o[bi>>2]+12>>2]](bi,o[a+32>>2])){break a}ci=ci+1|0;if((fi|0)!=(ci|0)){continue}break}if(!fi){break d}ei=a+20|0;ki=a+8|0;gi=a+24|0;while(1){ci=0;ji=li<<2;bi=o[ji+o[ki>>2]>>2];di=l[o[o[bi>>2]+24>>2]](bi)|0;if((di|0)>0){while(1){bi=o[o[ki>>2]+ji>>2];bi=l[o[o[bi>>2]+20>>2]](bi,ci)|0;mi=o[a+20>>2];ni=o[gi>>2]-mi>>2;e:{if(bi>>>0<ni>>>0){break e}oi=bi+1|0;if(oi>>>0>ni>>>0){Da(ei,oi-ni|0);mi=o[ei>>2];break e}if(oi>>>0>=ni>>>0){break e}o[gi>>2]=(oi<<2)+mi}o[(bi<<2)+mi>>2]=li;ci=ci+1|0;if((di|0)!=(ci|0)){continue}break}}li=li+1|0;if((li|0)!=(fi|0)){continue}break}}ki=0;if(!l[o[o[a>>2]+28>>2]](a)){break b}ki=l[o[o[a>>2]+32>>2]](a)|0}return ki|0}return 0}function hi(a){a=a|0;var pi=0,qi=0,ri=0,si=0;qi=1;pi=o[a+8>>2];ri=o[a+12>>2];a:{if((pi|0)==(ri|0)){break a}while(1){si=o[pi>>2];if(l[o[o[si>>2]+16>>2]](si,o[a+32>>2])){pi=pi+4|0;if((ri|0)!=(pi|0)){continue}break a}break}qi=0}return qi|0}function ii(a,ti){var ui=0,vi=0;a:{if((ti|0)<0){break a}ui=o[a+4>>2];if(o[ui+12>>2]-o[ui+8>>2]>>2<=(ti|0)){break a}a=o[o[a+8>>2]+(o[o[a+20>>2]+(ti<<2)>>2]<<2)>>2];vi=l[o[o[a>>2]+32>>2]](a,ti)|0}return vi}function ji(a,ti,wi){var xi=0,yi=0,zi=0;if((ti|0)>0){while(1){yi=xi<<2;zi=o[yi+a>>2];o[wi+yi>>2]=0-(zi&1)^zi>>>1;xi=xi+1|0;if((xi|0)!=(ti|0)){continue}break}}}function ki(a){o[a+16>>2]=0;o[a+20>>2]=0;o[a>>2]=0;o[a+4>>2]=0;o[a+8>>2]=0;o[a+24>>2]=0;o[a+28>>2]=0}function li(a,o,ti,wi){return mi(a,o,ti,wi)}function mi(a,ti,wi,Ai){var Bi=0,Ci=0,Di=0;a:{if(!ti){ti=wi;Ai=ti>>>0<0?Ai+1|0:Ai;if((Ai|0)<0?1:(Ai|0)<=0?ti>>>0>=0?0:1:0){return 0}Ai=o[a>>2];wi=o[a+4>>2]-Ai|0;if(wi>>>0<ti>>>0){Fa(a,ti-wi|0);break a}if(wi>>>0<=ti>>>0){break a}o[a+4>>2]=ti+Ai;break a}if((Ai|0)<0?1:(Ai|0)<=0?wi>>>0>=0?0:1:0){return 0}Ci=wi;if(wi>>>0<0){Ai=Ai+1|0}Di=o[a>>2];Bi=o[a+4>>2]-Di|0;b:{if((Ai|0)<0?1:(Ai|0)<=0?Ci>>>0>Bi>>>0?0:1:0){break b}Ai=Ci;if(Bi>>>0<Ai>>>0){Fa(a,Ai-Bi|0);break b}if(Bi>>>0<=Ai>>>0){break b}o[a+4>>2]=Ai+Di}if(!wi){break a}yl(o[a>>2],ti,wi)}ti=a+24|0;wi=ti;Ai=ti;a=o[ti+4>>2];ti=o[ti>>2]+1|0;if(ti>>>0<1){a=a+1|0}o[Ai>>2]=ti;o[wi+4>>2]=a;return 1}function ni(a,ti){var wi=0,Ai=0;Ai=o[a>>2];wi=o[a+4>>2]-Ai|0;a:{if(wi>>>0<ti>>>0){Fa(a,ti-wi|0);break a}if(wi>>>0<=ti>>>0){break a}o[a+4>>2]=ti+Ai}ti=a+24|0;wi=ti;Ai=ti;a=o[ti+4>>2];ti=o[ti>>2]+1|0;if(ti>>>0<1){a=a+1|0}o[Ai>>2]=ti;o[wi+4>>2]=a}function oi(a){n[a+38>>1]=0;o[a>>2]=0;o[a+8>>2]=0;o[a+12>>2]=0;o[a+16>>2]=0;o[a+20>>2]=0;o[a+24>>2]=0;o[a+28>>2]=0;m[a+29|0]=0;m[a+30|0]=0;m[a+31|0]=0;m[a+32|0]=0;m[a+33|0]=0;m[a+34|0]=0;m[a+35|0]=0;m[a+36|0]=0;return a}function pi(a,ti,Ei,Fi){n[a+38>>1]=Fi;o[a>>2]=ti;o[a+16>>2]=0;o[a+20>>2]=0;o[a+8>>2]=Ei;o[a+12>>2]=0}function qi(a,ti,Ei){var Fi=0;a:{if(ti){ti=0;if(!ri(1,Ei,a)){break a}}m[a+36|0]=1;o[a+32>>2]=0;ti=o[a+16>>2];Ei=ti+o[a>>2]|0;o[a+24>>2]=Ei;Fi=a;a=o[a+8>>2];o[Fi+28>>2]=Ei+(a-ti|0);ti=1}return ti}function ri(a,ti,Ei){var Gi=0,Hi=0,Ii=0,Ji=0,Ki=0,Li=0;a:{if(a>>>0>10){break a}Ii=o[Ei+16>>2];Gi=o[Ei+12>>2];Hi=o[Ei+20>>2];Ji=Hi;if((Gi|0)<(Ji|0)?1:(Gi|0)<=(Ji|0)?r[Ei+8>>2]>Ii>>>0?0:1:0){break a}Ki=m[Ii+o[Ei>>2]|0];Gi=Ii+1|0;if(Gi>>>0<1){Hi=Hi+1|0}o[Ei+16>>2]=Gi;o[Ei+20>>2]=Hi;Ji=ti;Ii=ti;Gi=Ki;b:{if((Gi|0)<=-1){if(!ri(a+1|0,ti,Ei)){break a}a=ti;Ei=o[ti+4>>2];ti=o[ti>>2];Hi=Ei<<7|ti>>>25;ti=ti<<7;o[a>>2]=ti;o[a+4>>2]=Hi;a=Gi&127|ti;break b}Hi=0;a=Gi&255}o[Ii>>2]=a;o[Ji+4>>2]=Hi;Li=1}return Li}function si(a){var ti=0,Ei=0,Mi=0,Ni=0,Oi=0,Pi=0;m[a+36|0]=0;Mi=o[a+20>>2];Ni=a;Oi=a;Pi=o[a+16>>2];a=o[a+32>>2]+7|0;if(a>>>0<7){ti=1}Ei=ti>>>3;a=ti<<29|a>>>3;ti=Pi+a|0;Ei=Ei+Mi|0;o[Oi+16>>2]=ti;o[Ni+20>>2]=ti>>>0<a>>>0?Ei+1|0:Ei}function ti(a){a=a+ -1|0;if(a>>>0<=10){return o[(a<<2)+10412>>2]}return-1}function ui(a){var Qi=0;Qi=a+4|0;o[Qi>>2]=0;o[Qi+4>>2]=0;o[a>>2]=Qi;return a}function vi(a,Ri,Si,Ti){var Ui=0,Vi=0,Wi=0,Xi=0;Ui=R-16|0;R=Ui;Xi=a;Vi=Zf(Ri,Ui+12|0,Si);Si=o[Vi>>2];if(Si){Ri=0}else{Si=Hk(40);Mk(Si+16|0,o[Ti>>2]);o[Si+36>>2]=0;o[Si+28>>2]=0;o[Si+32>>2]=0;o[Si+8>>2]=o[Ui+12>>2];o[Si>>2]=0;o[Si+4>>2]=0;o[Vi>>2]=Si;Ti=Si;Wi=o[o[Ri>>2]>>2];if(Wi){o[Ri>>2]=Wi;Ti=o[Vi>>2]}Xf(o[Ri+4>>2],Ti);Ri=Ri+8|0;o[Ri>>2]=o[Ri>>2]+1;Ri=1}m[Xi+4|0]=Ri;o[a>>2]=Si;R=Ui+16|0}function wi(a,Ri){var Si=0;Si=R-48|0;R=Si;Wk(Si+8|0);o[Si+32>>2]=Ri;vi(Si+40|0,a,Ri,Si+32|0);a=o[Si+40>>2];Ri=a+28|0;a:{if(m[a+39|0]>=0){m[Ri+11|0]=0;m[Ri|0]=0;break a}m[o[a+28>>2]]=0;o[a+32>>2]=0;if(m[a+39|0]>-1){break a}ul(o[a+28>>2]);o[a+36>>2]=0}a=o[Si+12>>2];o[Ri>>2]=o[Si+8>>2];o[Ri+4>>2]=a;o[Ri+8>>2]=o[Si+16>>2];R=Si+48|0}function xi(a,Ri){var Ti=0,Yi=0,Zi=0,_i=0,$i=0,aj=0,bj=0,cj=0;$i=a+4|0;a=o[$i>>2];a:{b:{if(!a){break b}Ti=p[Ri+11|0];Yi=Ti<<24>>24<0;Zi=Yi?o[Ri+4>>2]:Ti;bj=Yi?o[Ri>>2]:Ri;Ti=$i;while(1){Ri=p[a+27|0];cj=Ri<<24>>24<0;aj=cj?o[a+20>>2]:Ri;_i=Zi>>>0<aj>>>0;Yi=_i?Zi:aj;c:{if(Yi){Ri=a+16|0;Ri=Zj(cj?o[Ri>>2]:Ri,bj,Yi);if(Ri){break c}}Ri=aj>>>0<Zi>>>0?-1:_i}Ti=(Ri|0)<0?Ti:a;a=o[(Ri>>>29&4)+a>>2];if(a){continue}break}if((Ti|0)==($i|0)){break b}a=p[Ti+27|0];_i=a<<24>>24<0;d:{Yi=_i?o[Ti+20>>2]:a;Ri=Yi>>>0<Zi>>>0?Yi:Zi;if(Ri){a=Ti+16|0;a=Zj(bj,_i?o[a>>2]:a,Ri);if(a){break d}}if(Zi>>>0<Yi>>>0){break b}break a}if((a|0)>-1){break a}}Ti=$i}return Ti}function yi(a,Ri){var dj=0;Ri=xi(a,Ri);a:{if((Ri|0)==(a+4|0)){break a}a=Ri+28|0;if(m[Ri+39|0]<=-1){a=o[a>>2]}a=Yj(a);if((a|0)==-1){break a}dj=(a|0)!=0}return dj}function zi(a){var Ri=0;o[a>>2]=0;o[a+4>>2]=0;o[a+56>>2]=0;o[a+48>>2]=0;o[a+52>>2]=0;o[a+40>>2]=0;o[a+44>>2]=0;o[a+32>>2]=0;o[a+36>>2]=0;o[a+24>>2]=0;o[a+28>>2]=0;o[a+16>>2]=0;o[a+20>>2]=0;o[a+8>>2]=0;o[a+12>>2]=0;Ri=a- -64|0;o[Ri>>2]=0;o[Ri+4>>2]=0;o[a+72>>2]=0;o[a+76>>2]=0;o[a+80>>2]=0;o[a+84>>2]=0;o[a+60>>2]=a}function Ai(a,ej){var fj=0,gj=0,hj=0;hj=R-16|0;R=hj;gj=Hk(88);fj=gj;o[fj>>2]=0;o[fj+4>>2]=0;o[fj+56>>2]=0;o[fj+48>>2]=0;o[fj+52>>2]=0;o[fj+40>>2]=0;o[fj+44>>2]=0;o[fj+32>>2]=0;o[fj+36>>2]=0;o[fj+24>>2]=0;o[fj+28>>2]=0;o[fj+16>>2]=0;o[fj+20>>2]=0;o[fj+8>>2]=0;o[fj+12>>2]=0;fj=fj- -64|0;o[fj>>2]=0;o[fj+4>>2]=0;o[gj+72>>2]=0;o[gj+76>>2]=0;o[gj+80>>2]=0;o[gj+84>>2]=0;o[gj+60>>2]=gj;o[hj+8>>2]=gj;a:{if(Bi(gj,ej)){o[a>>2]=o[hj+8>>2];o[hj+8>>2]=0;break a}o[a>>2]=0;a=o[hj+8>>2];o[hj+8>>2]=0;if(!a){break a}ua(hj+8|0,a)}R=hj+16|0}function Bi(a,ej){var ij=0,jj=0,kj=0,lj=0,mj=0,nj=0,oj=0;lj=R-16|0;R=lj;o[a+80>>2]=0;o[a+84>>2]=0;ij=a+76|0;jj=o[ij>>2];o[ij>>2]=0;if(jj){ul(jj)}o[a+68>>2]=0;o[a+72>>2]=0;ij=a- -64|0;jj=o[ij>>2];o[ij>>2]=0;if(jj){ul(jj)}nj=ej+4|0;ij=o[nj>>2];jj=o[ej>>2];kj=u((ij-jj|0)/12|0,3);oj=o[a>>2];mj=o[a+4>>2]-oj>>2;a:{if(kj>>>0>mj>>>0){Ci(a,kj-mj|0);ij=o[nj>>2];jj=o[ej>>2];break a}if(kj>>>0>=mj>>>0){break a}o[a+4>>2]=(kj<<2)+oj}if((ij|0)!=(jj|0)){mj=(ij-jj|0)/12|0;nj=o[a>>2];ej=0;while(1){kj=u(ej,12);ij=kj+nj|0;kj=jj+kj|0;o[ij>>2]=o[kj>>2];o[ij+4>>2]=o[kj+4>>2];o[ij+8>>2]=o[kj+8>>2];ej=ej+1|0;if(ej>>>0<mj>>>0){continue}break}}o[lj+12>>2]=-1;ej=0;if(Di(a,lj+12|0)){Ei(a);Fi(a,o[lj+12>>2]);ej=1}R=lj+16|0;return ej}function Ci(a,ej){var pj=0,qj=0,rj=0,sj=0,tj=0,uj=0,vj=0,wj=0,xj=0;qj=o[a+8>>2];rj=a+4|0;pj=o[rj>>2];if(qj-pj>>2>>>0>=ej>>>0){a=ej<<2;wj=rj,xj=xl(pj,0,a)+a|0,o[wj>>2]=xj;return}a:{rj=o[a>>2];tj=pj-rj|0;pj=tj>>2;sj=pj+ej|0;if(sj>>>0<1073741824){vj=pj<<2;qj=qj-rj|0;pj=qj>>1;qj=qj>>2>>>0<536870911?pj>>>0<sj>>>0?sj:pj:1073741823;pj=0;b:{if(!qj){break b}if(qj>>>0>=1073741824){break a}uj=Hk(qj<<2);pj=uj}xl(vj+pj|0,0,ej<<2);ej=pj+(sj<<2)|0;sj=pj+(qj<<2)|0;if((tj|0)>=1){wl(uj,rj,tj)}o[a>>2]=pj;o[a+8>>2]=sj;o[a+4>>2]=ej;if(rj){ul(rj)}return}Yk();D()}_a(10468);D()}function Di(a,ej){var yj=0,zj=0,Aj=0,Bj=0,Cj=0,Dj=0,Ej=0,Fj=0,Gj=0,Hj=0,Ij=0,Jj=0,Kj=0,Lj=0,Mj=0,Nj=0,Oj=0,Pj=0,Qj=0,Rj=0,Sj=0;Aj=R-48|0;R=Aj;if(ej){Pj=a+12|0;zj=a+4|0;Fj=o[zj>>2];Gj=o[a>>2];Dj=Fj-Gj|0;Bj=Dj>>2;yj=o[a+12>>2];Cj=o[a+16>>2]-yj>>2;a:{if(Bj>>>0>Cj>>>0){Gi(Pj,Bj-Cj|0);Fj=o[zj>>2];Gj=o[a>>2];Dj=Fj-Gj|0;Bj=Dj>>2;break a}if(Bj>>>0>=Cj>>>0){break a}o[a+16>>2]=yj+(Bj<<2)}zj=0;o[Aj+40>>2]=0;o[Aj+32>>2]=0;o[Aj+36>>2]=0;b:{c:{d:{if(!Bj){yj=0;Cj=0;break d}if(Bj>>>0>=1073741824){break c}yj=Hk(Dj);o[Aj+36>>2]=yj;o[Aj+32>>2]=yj;o[Aj+40>>2]=(Bj<<2)+yj;Cj=yj}e:{if(!Dj){break e}Ej=a+4|0;zj=Cj;Ij=zj;Dj=0;while(1){Hj=o[(Dj<<2)+Gj>>2];Ij=Ij-zj>>2;if(Hj>>>0>=Ij>>>0){o[Aj+16>>2]=0;yj=Hj+1|0;f:{if(yj>>>0>Ij>>>0){yd(Aj+32|0,yj-Ij|0,Aj+16|0);Fj=o[Ej>>2];Gj=o[a>>2];break f}if(yj>>>0>=Ij>>>0){break f}o[Aj+36>>2]=(yj<<2)+zj}yj=o[Aj+32>>2];Cj=yj}zj=(Hj<<2)+yj|0;o[zj>>2]=o[zj>>2]+1;Dj=Dj+1|0;zj=Fj-Gj|0;Bj=zj>>2;if(Dj>>>0>=Bj>>>0){break e}Ij=o[Aj+36>>2];zj=yj;continue}}o[Aj+24>>2]=0;o[Aj+16>>2]=0;o[Aj+20>>2]=0;Dj=0;g:{if(zj){if(Bj>>>0>=536870912){break g}Dj=Hk(zj<<1);o[Aj+16>>2]=Dj;o[Aj+20>>2]=Dj;zj=Bj<<3;o[Aj+24>>2]=zj+Dj;zj=xl(Dj,255,zj);while(1){zj=zj+8|0;Bj=Bj+ -1|0;if(Bj){continue}break}o[Aj+20>>2]=zj}o[Aj+8>>2]=0;o[Aj>>2]=0;o[Aj+4>>2]=0;zj=o[Aj+36>>2]-Cj|0;Mj=zj>>2;h:{if(zj){if(Mj>>>0>=1073741824){break h}Jj=Hk(zj);o[Aj>>2]=Jj;o[Aj+8>>2]=(Mj<<2)+Jj;Bj=0;Ej=xl(Jj,0,zj);o[Aj+4>>2]=Ej+zj;zj=0;while(1){Cj=zj<<2;o[Cj+Ej>>2]=Bj;Bj=o[yj+Cj>>2]+Bj|0;zj=zj+1|0;if(zj>>>0<Mj>>>0){continue}break}}if((Fj|0)==(Gj|0)){break b}Sj=Fj-Gj>>2;Ej=0;Qj=o[Aj+32>>2];while(1){Nj=Ej<<2;Ij=o[Nj+Gj>>2];Fj=-1;zj=Ej+1|0;yj=(zj>>>0)%3|0?zj:Ej+ -2|0;if((yj|0)!=-1){Fj=o[(yj<<2)+Gj>>2]}Kj=-1;Cj=(Ej>>>0)%3|0;yj=(Cj?-1:2)+Ej|0;if((yj|0)!=-1){Kj=o[(yj<<2)+Gj>>2]}i:{j:{if(Cj){break j}k:{if((Fj|0)==(Kj|0)){break k}yj=o[Gj+Nj>>2];if((yj|0)==(Fj|0)){break k}if((yj|0)!=(Kj|0)){break j}}o[a+40>>2]=o[a+40>>2]+1;zj=Ej+3|0;break i}yj=Kj<<2;Oj=o[yj+Qj>>2];l:{m:{if((Oj|0)<1){break m}yj=o[yj+Jj>>2];Bj=0;while(1){Hj=(yj<<3)+Dj|0;Cj=o[Hj>>2];if((Cj|0)==-1){break m}n:{if((Cj|0)!=(Fj|0)){break n}Lj=o[Hj+4>>2];if((Lj|0)!=-1){Cj=o[(Lj<<2)+Gj>>2]}else{Cj=-1}if((Cj|0)==(Ij|0)){break n}while(1){Cj=yj;Bj=Bj+1|0;o:{if((Bj|0)>=(Oj|0)){break o}Rj=(Cj<<3)+Dj|0;yj=Cj+1|0;Ij=(yj<<3)+Dj|0;Hj=o[Ij>>2];o[Rj>>2]=Hj;o[Rj+4>>2]=o[Ij+4>>2];if((Hj|0)!=-1){continue}}break}o[(Cj<<3)+Dj>>2]=-1;if((Lj|0)==-1){break m}yj=o[Pj>>2];o[yj+Nj>>2]=Lj;o[yj+(Lj<<2)>>2]=Ej;break l}yj=yj+1|0;Bj=Bj+1|0;if((Oj|0)!=(Bj|0)){continue}break}}yj=Fj<<2;Cj=o[yj+Qj>>2];if((Cj|0)<1){break l}yj=o[yj+Jj>>2];Bj=0;while(1){Hj=(yj<<3)+Dj|0;if(o[Hj>>2]==-1){o[Hj>>2]=Kj;o[Hj+4>>2]=Ej;break l}yj=yj+1|0;Bj=Bj+1|0;if((Cj|0)!=(Bj|0)){continue}break}}}Ej=zj;if(Ej>>>0<Sj>>>0){continue}break}break b}Yk();D()}Yk();D()}_a(10468);D()}o[ej>>2]=Mj;if(Jj){o[Aj+4>>2]=Jj;ul(Jj)}a=o[Aj+16>>2];if(a){o[Aj+20>>2]=a;ul(a)}a=o[Aj+32>>2];if(a){o[Aj+36>>2]=a;ul(a)}a=1}else{a=0}R=Aj+48|0;return a}function Ei(a){var ej=0,Tj=0,Uj=0,Vj=0,Wj=0,Xj=0,Yj=0,Zj=0,_j=0,$j=0,ak=0,bk=0,ck=0,dk=0,ek=0;Uj=R-48|0;R=Uj;ak=a+4|0;ej=o[ak>>2];_j=o[a>>2];m[Uj+16|0]=0;bk=Hi(Uj+32|0,ej-_j>>2,Uj+16|0);o[Uj+24>>2]=0;o[Uj+16>>2]=0;o[Uj+20>>2]=0;ej=o[ak>>2];Yj=o[a>>2];Zj=a+12|0;while(1){ck=0;Xj=0;a:{if((ej|0)==(Yj|0)){break a}while(1){Vj=o[bk>>2];b:{if(o[Vj+(Xj>>>3&536870908)>>2]>>>(Xj&31)&1){break b}Wj=o[Uj+16>>2];o[Uj+20>>2]=Wj;ej=Xj;while(1){Tj=ej+1|0;_j=ej;ej=(Tj>>>0)%3|0?Tj:ej+ -2|0;c:{if((ej|0)==-1){break c}ej=o[o[Zj>>2]+(ej<<2)>>2];if((ej|0)==-1){break c}Tj=ej+1|0;ej=(Tj>>>0)%3|0?Tj:ej+ -2|0;if((Xj|0)==(ej|0)|(ej|0)==-1){break c}if(!(o[(ej>>>3&536870908)+Vj>>2]>>>(ej&31)&1)){continue}}break}ej=Wj;Tj=_j;while(1){Vj=(Tj>>>3&536870908)+Vj|0;o[Vj>>2]=o[Vj>>2]|1<<(Tj&31);Vj=Tj+1|0;dk=(Vj>>>0)%3|0?Vj:Tj+ -2|0;Vj=((Tj>>>0)%3|0?-1:2)+Tj|0;if((ej|0)!=(Wj|0)){ek=o[(dk<<2)+Yj>>2];while(1){d:{if((ek|0)!=o[ej>>2]){break d}Tj=-1;$j=o[ej+4>>2];Tj=(Vj|0)!=-1?o[o[Zj>>2]+(Vj<<2)>>2]:Tj;if(($j|0)==(Tj|0)){break d}Wj=-1;Wj=($j|0)!=-1?o[o[Zj>>2]+($j<<2)>>2]:Wj;if((Tj|0)!=-1){o[o[Zj>>2]+(Tj<<2)>>2]=-1}ej=o[Zj>>2];if((Wj|0)!=-1){o[ej+(Wj<<2)>>2]=-1}o[ej+(Vj<<2)>>2]=-1;o[ej+($j<<2)>>2]=-1;ck=1;break b}ej=ej+8|0;if((Wj|0)!=(ej|0)){continue}break}}o[Uj+8>>2]=0;ej=Vj<<2;Tj=o[ej+Yj>>2];o[Uj+12>>2]=dk;o[Uj+8>>2]=Tj;e:{if(o[Uj+24>>2]!=(Wj|0)){Tj=o[Uj+12>>2];o[Wj>>2]=o[Uj+8>>2];o[Wj+4>>2]=Tj;o[Uj+20>>2]=o[Uj+20>>2]+8;break e}Ii(Uj+16|0,Uj+8|0)}f:{if((Vj|0)==-1){break f}ej=o[ej+o[Zj>>2]>>2];if((ej|0)==-1){break f}Tj=ej+((ej>>>0)%3|0?-1:2)|0;if((_j|0)==(Tj|0)|(Tj|0)==-1){break f}Yj=o[a>>2];Vj=o[bk>>2];Wj=o[Uj+20>>2];ej=o[Uj+16>>2];continue}break}Yj=o[a>>2]}Xj=Xj+1|0;ej=o[ak>>2];if(Xj>>>0<ej-Yj>>2>>>0){continue}break}if(ck){continue}}break}a=o[Uj+16>>2];if(a){o[Uj+20>>2]=a;ul(a)}a=o[bk>>2];if(a){ul(a)}R=Uj+48|0}function Fi(a,fk){var gk=0,hk=0,ik=0,jk=0,kk=0,lk=0,mk=0,nk=0,ok=0,pk=0,qk=0,rk=0,sk=0,tk=0,uk=0,vk=0,wk=0,xk=0,yk=0,zk=0,Ak=0,Bk=0,Ck=0;lk=R-48|0;R=lk;o[a+36>>2]=fk;rk=a+24|0;ik=o[a+24>>2];gk=o[a+28>>2]-ik>>2;a:{if(gk>>>0<fk>>>0){Gi(rk,fk-gk|0);break a}if(gk>>>0<=fk>>>0){break a}o[a+28>>2]=ik+(fk<<2)}m[lk+16|0]=0;mk=Hi(lk+32|0,fk,lk+16|0);sk=a+4|0;gk=o[sk>>2];ik=o[a>>2];m[lk+8|0]=0;ok=Hi(lk+16|0,gk-ik>>2,lk+8|0);b:{gk=o[a>>2];if(o[sk>>2]-gk>>2>>>0<3){break b}yk=a+48|0;tk=a+12|0;zk=a+32|0;vk=a+28|0;Ak=a+56|0;wk=a+52|0;while(1){pk=u(uk,3);jk=o[(pk<<2)+gk>>2];kk=0;hk=-1;ik=pk+1|0;c:{if((ik|0)!=-1){hk=o[(ik<<2)+gk>>2];kk=pk+2|0;ik=-1;if((kk|0)==-1){break c}}ik=o[(kk<<2)+gk>>2]}d:{if(!((ik|0)==(hk|0)|(hk|0)==(jk|0)|(ik|0)==(jk|0))){nk=o[ok>>2];qk=0;while(1){ik=pk+qk|0;e:{if(o[(ik>>>3&536870908)+nk>>2]>>>(ik&31)&1){break e}kk=o[o[a>>2]+(ik<<2)>>2];o[lk+8>>2]=kk;gk=1<<(kk&31);hk=o[mk>>2];kk=kk>>>5;nk=o[hk+(kk<<2)>>2];jk=0;f:{if(!(gk&nk)){break f}gk=o[vk>>2];g:{if((gk|0)!=o[zk>>2]){o[gk>>2]=-1;o[vk>>2]=gk+4;break g}bh(rk,10464)}gk=o[wk>>2];h:{if((gk|0)!=o[Ak>>2]){o[gk>>2]=o[lk+8>>2];o[wk>>2]=gk+4;break h}bh(yk,lk+8|0)}gk=o[mk+4>>2];jk=o[mk+8>>2];if((gk|0)==jk<<5){if((gk+1|0)<=-1){break d}hk=mk;if(gk>>>0<=1073741822){gk=gk+32&-32;jk=jk<<6;gk=jk>>>0<gk>>>0?gk:jk}else{gk=2147483647}ab(hk,gk);gk=o[mk+4>>2]}o[mk+4>>2]=gk+1;hk=o[mk>>2];jk=hk+(gk>>>3&536870908)|0;kk=o[jk>>2];Bk=jk,Ck=Zl(gk)&kk,o[Bk>>2]=Ck;o[lk+8>>2]=fk;gk=1<<(fk&31);kk=fk>>>5;nk=o[(kk<<2)+hk>>2];fk=fk+1|0;jk=1}o[(kk<<2)+hk>>2]=gk|nk;nk=o[ok>>2];gk=ik;i:{while(1){if((gk|0)==-1){break i}hk=(gk>>>3&536870908)+nk|0;o[hk>>2]=o[hk>>2]|1<<(gk&31);hk=o[lk+8>>2];o[o[rk>>2]+(hk<<2)>>2]=gk;if(jk){o[o[a>>2]+(gk<<2)>>2]=hk}kk=ik;hk=gk+1|0;gk=(hk>>>0)%3|0?hk:gk+ -2|0;hk=-1;j:{if((gk|0)==-1){break j}gk=o[o[tk>>2]+(gk<<2)>>2];hk=-1;if((gk|0)==-1){break j}hk=gk+1|0;hk=(hk>>>0)%3|0?hk:gk+ -2|0}gk=hk;if((kk|0)!=(gk|0)){continue}break}if((ik|0)!=-1){break e}}gk=ik+((ik>>>0)%3|0?-1:2)|0;if((gk|0)==-1){break e}gk=o[o[tk>>2]+(gk<<2)>>2];if((gk|0)==-1){break e}gk=gk+((gk>>>0)%3|0?-1:2)|0;if((gk|0)==-1){break e}nk=o[ok>>2];while(1){ik=(gk>>>3&536870908)+nk|0;o[ik>>2]=o[ik>>2]|1<<(gk&31);if(jk){o[o[a>>2]+(gk<<2)>>2]=o[lk+8>>2]}gk=((gk>>>0)%3|0?-1:2)+gk|0;if((gk|0)==-1){break e}gk=o[o[tk>>2]+(gk<<2)>>2];if((gk|0)==-1){break e}gk=gk+((gk>>>0)%3|0?-1:2)|0;if((gk|0)!=-1){continue}break}}qk=qk+1|0;if((qk|0)!=3){continue}break}}uk=uk+1|0;gk=o[a>>2];if(uk>>>0<(o[sk>>2]-gk>>2>>>0)/3>>>0){continue}break b}break}Yk();D()}o[a+44>>2]=0;fk=o[mk>>2];gk=o[mk+4>>2];ik=gk>>>5;jk=gk&31;if(ik|jk){ik=(ik<<2)+fk|0;hk=fk;gk=0;while(1){if(!(o[hk>>2]>>>gk&1)){xk=xk+1|0;o[a+44>>2]=xk}kk=(gk|0)==31;gk=kk?0:gk+1|0;hk=kk?hk+4|0:hk;if((ik|0)!=(hk|0)|(gk|0)!=(jk|0)){continue}break}}a=o[ok>>2];if(a){ul(a);fk=o[mk>>2]}if(fk){ul(fk)}R=lk+48|0}function Gi(a,fk){var Dk=0,Ek=0,Fk=0,Gk=0,Ik=0,Jk=0;Fk=o[a+8>>2];Dk=o[a+4>>2];if(Fk-Dk>>2>>>0>=fk>>>0){while(1){o[Dk>>2]=o[2616];Dk=Dk+4|0;fk=fk+ -1|0;if(fk){continue}break}o[a+4>>2]=Dk;return}a:{Gk=o[a>>2];Ik=Dk-Gk|0;Jk=Ik>>2;Dk=Jk+fk|0;if(Dk>>>0<1073741824){Fk=Fk-Gk|0;Ek=Fk>>1;Dk=Fk>>2>>>0<536870911?Ek>>>0<Dk>>>0?Dk:Ek:1073741823;Ek=0;b:{if(!Dk){break b}if(Dk>>>0>=1073741824){break a}Ek=Hk(Dk<<2)}Fk=Ek+(Dk<<2)|0;Dk=Ek+(Jk<<2)|0;while(1){o[Dk>>2]=o[2616];Dk=Dk+4|0;fk=fk+ -1|0;if(fk){continue}break}if((Ik|0)>=1){wl(Ek,Gk,Ik)}o[a>>2]=Ek;o[a+8>>2]=Fk;o[a+4>>2]=Dk;if(Gk){ul(Gk)}return}Yk();D()}_a(10468);D()}function Hi(a,fk,Kk){var Lk=0,Mk=0,Nk=0;o[a>>2]=0;o[a+4>>2]=0;o[a+8>>2]=0;a:{b:{if(!fk){break b}if((fk|0)<=-1){break a}Mk=fk+ -1>>>5;Nk=Mk+1|0;Lk=Hk(Nk<<2);o[a+8>>2]=Nk;o[a>>2]=Lk;Nk=p[Kk|0];o[a+4>>2]=fk;o[(fk>>>0<33?Lk:Lk+(Mk<<2)|0)>>2]=0;Kk=fk>>>5;Mk=Kk<<2;if(Nk){Lk=xl(Lk,255,Mk);fk=fk&31;if(!fk){break b}Kk=Lk+(Kk<<2)|0;o[Kk>>2]=o[Kk>>2]|-1>>>32-fk;return a}Lk=xl(Lk,0,Mk);fk=fk&31;if(!fk){break b}Kk=Lk+(Kk<<2)|0;o[Kk>>2]=o[Kk>>2]&(-1>>>32-fk^-1)}return a}Yk();D()}function Ii(a,fk){var Kk=0,Ok=0,Pk=0,Qk=0,Rk=0,Sk=0;a:{Pk=o[a>>2];Sk=o[a+4>>2]-Pk|0;Kk=Sk>>3;Ok=Kk+1|0;if(Ok>>>0<536870912){Qk=Kk<<3;Rk=o[a+8>>2]-Pk|0;Kk=Rk>>2;Ok=Rk>>3>>>0<268435455?Kk>>>0<Ok>>>0?Ok:Kk:536870911;Kk=0;b:{if(!Ok){break b}if(Ok>>>0>=536870912){break a}Kk=Hk(Ok<<3)}Qk=Qk+Kk|0;Rk=o[fk+4>>2];o[Qk>>2]=o[fk>>2];o[Qk+4>>2]=Rk;fk=Kk+(Ok<<3)|0;Ok=Qk+8|0;if((Sk|0)>=1){wl(Kk,Pk,Sk)}o[a>>2]=Kk;o[a+8>>2]=fk;o[a+4>>2]=Ok;if(Pk){ul(Pk)}return}Yk();D()}_a(10468);D()}function Ji(a,fk,Tk){var Uk=0,Vk=0,Wk=0,Xk=0;a:{b:{if((fk|Tk)<0|fk>>>0>1431655765){break b}fk=u(fk,3);Ki(a,fk,10460);Ki(a+12|0,fk,10464);fk=o[a+24>>2];c:{if(o[a+32>>2]-fk>>2>>>0>=Tk>>>0){break c}if(Tk>>>0>=1073741824){break a}Wk=a+28|0;Uk=o[Wk>>2];Vk=Tk<<2;Tk=Hk(Vk);Vk=Tk+Vk|0;Uk=Uk-fk|0;Xk=Uk+Tk|0;if((Uk|0)>=1){wl(Tk,fk,Uk)}o[a+24>>2]=Tk;o[a+32>>2]=Vk;o[Wk>>2]=Xk;if(!fk){break c}ul(fk)}o[a+80>>2]=0;o[a+84>>2]=0;Tk=a+76|0;fk=o[Tk>>2];o[Tk>>2]=0;if(fk){ul(fk)}o[a+68>>2]=0;o[a+72>>2]=0;fk=a- -64|0;a=o[fk>>2];o[fk>>2]=0;Uk=1;if(!a){break b}ul(a)}return Uk}_a(10468);D()}function Ki(a,fk,Tk){var Zk=0,_k=0,$k=0,al=0,bl=0;Zk=o[a+8>>2];_k=o[a>>2];if(Zk-_k>>2>>>0>=fk>>>0){$k=o[a+4>>2];al=$k-_k>>2;bl=al>>>0<fk>>>0?al:fk;if(bl){Zk=_k;while(1){o[Zk>>2]=o[Tk>>2];Zk=Zk+4|0;bl=bl+ -1|0;if(bl){continue}break}}if(al>>>0<fk>>>0){Zk=fk-al|0;while(1){o[$k>>2]=o[Tk>>2];$k=$k+4|0;Zk=Zk+ -1|0;if(Zk){continue}break}o[a+4>>2]=$k;return}o[a+4>>2]=(fk<<2)+_k;return}if(_k){o[a+4>>2]=_k;ul(_k);o[a+8>>2]=0;o[a>>2]=0;o[a+4>>2]=0;Zk=0}a:{if(fk>>>0>=1073741824){break a}_k=Zk>>1;_k=Zk>>2>>>0<536870911?_k>>>0<fk>>>0?fk:_k:1073741823;if(_k>>>0>=1073741824){break a}_k=_k<<2;Zk=Hk(_k);o[a>>2]=Zk;o[a+4>>2]=Zk;o[a+8>>2]=Zk+_k;while(1){o[Zk>>2]=o[Tk>>2];Zk=Zk+4|0;fk=fk+ -1|0;if(fk){continue}break}o[a+4>>2]=Zk;return}Yk();D()}function Li(a){qj(a);o[a+84>>2]=0;o[a+88>>2]=0;o[a>>2]=10544;o[a+92>>2]=0;o[a+96>>2]=0;o[a+100>>2]=0;o[a+104>>2]=0;return a}function Mi(a){a=a|0;var fk=0,Hk=0,Tk=0,Yk=0,cl=0;o[a>>2]=10944;fk=o[a+68>>2];if(fk){o[a+72>>2]=fk;ul(fk)}fk=o[a+56>>2];if(fk){o[a+60>>2]=fk;ul(fk)}fk=o[a+44>>2];if(fk){o[a+48>>2]=fk;ul(fk)}fk=o[a+32>>2];if(fk){o[a+36>>2]=fk;ul(fk)}fk=o[a+20>>2];if(fk){o[a+24>>2]=fk;ul(fk)}Tk=o[a+8>>2];if(Tk){fk=Tk;cl=a+12|0;Hk=o[cl>>2];Yk=fk;a:{if((fk|0)==(Hk|0)){break a}while(1){Hk=Hk+ -4|0;fk=o[Hk>>2];o[Hk>>2]=0;if(fk){Fb(fk)}if((Hk|0)!=(Tk|0)){continue}break}Yk=o[a+8>>2]}fk=Yk;o[cl>>2]=Tk;ul(fk)}fk=o[a+4>>2];o[a+4>>2]=0;if(fk){ei(fk)}return a|0}function Ni(a){a=a|0;var dl=0;o[a>>2]=10544;dl=o[a+96>>2];if(dl){o[a+100>>2]=dl;ul(dl)}dl=o[a+84>>2];if(dl){o[a+88>>2]=dl;ul(dl)}Mi(a);return a|0}function Oi(a){a=a|0;var el=0;o[a>>2]=10544;el=o[a+96>>2];if(el){o[a+100>>2]=el;ul(el)}el=o[a+84>>2];if(el){o[a+88>>2]=el;ul(el)}Mi(a);ul(a)}function Pi(a,fl,gl){a=a|0;fl=fl|0;gl=gl|0;var hl=0,il=0;hl=R-16|0;R=hl;il=o[gl>>2];o[gl>>2]=0;o[hl+8>>2]=il;wj(a,fl,hl+8|0);gl=o[hl+8>>2];o[hl+8>>2]=0;if(gl){Fb(gl)}il=o[a+84>>2];gl=o[a+88>>2]-il>>2;a:{if((gl|0)>(fl|0)){break a}fl=fl+1|0;if(fl>>>0>gl>>>0){Qi(a+84|0,fl-gl|0);break a}if(fl>>>0>=gl>>>0){break a}o[a+88>>2]=il+(fl<<2)}R=hl+16|0}function Qi(a,fl){var gl=0,jl=0,kl=0,ll=0,ml=0,nl=0;kl=o[a+8>>2];gl=o[a+4>>2];if(kl-gl>>2>>>0>=fl>>>0){while(1){o[gl>>2]=1;gl=gl+4|0;fl=fl+ -1|0;if(fl){continue}break}o[a+4>>2]=gl;return}a:{ll=o[a>>2];ml=gl-ll|0;nl=ml>>2;gl=nl+fl|0;if(gl>>>0<1073741824){kl=kl-ll|0;jl=kl>>1;gl=kl>>2>>>0<536870911?jl>>>0<gl>>>0?gl:jl:1073741823;jl=0;b:{if(!gl){break b}if(gl>>>0>=1073741824){break a}jl=Hk(gl<<2)}kl=jl+(gl<<2)|0;gl=jl+(nl<<2)|0;while(1){o[gl>>2]=1;gl=gl+4|0;fl=fl+ -1|0;if(fl){continue}break}if((ml|0)>=1){wl(jl,ll,ml)}o[a>>2]=jl;o[a+8>>2]=kl;o[a+4>>2]=gl;if(ll){ul(ll)}return}Yk();D()}_a(10588);D()}function Ri(a,fl){a=a|0;fl=fl|0;var ol=0,pl=0,ql=0;zj(a,fl);a:{if((fl|0)<0){break a}ol=o[a+88>>2];pl=o[a+84>>2];if(ol-pl>>2<=(fl|0)){break a}fl=pl+(fl<<2)|0;pl=fl+4|0;ol=ol-pl|0;ql=ol>>2;if(ol){yl(fl,pl,ol)}o[a+88>>2]=fl+(ql<<2)}}function Si(a,fl){var rl=0,sl=0,tl=0,vl=0,xl=0,yl=0;a:{tl=o[a>>2];xl=o[a+4>>2]-tl|0;rl=xl>>2;sl=rl+1|0;if(sl>>>0<1073741824){yl=rl<<2;rl=o[a+8>>2]-tl|0;vl=rl>>1;sl=rl>>2>>>0<536870911?vl>>>0<sl>>>0?sl:vl:1073741823;rl=0;b:{if(!sl){break b}if(sl>>>0>=1073741824){break a}rl=Hk(sl<<2)}vl=yl+rl|0;o[vl>>2]=o[fl>>2];fl=rl+(sl<<2)|0;sl=vl+4|0;if((xl|0)>=1){wl(rl,tl,xl)}o[a>>2]=rl;o[a+8>>2]=fl;o[a+4>>2]=sl;if(tl){ul(tl)}return}Yk();D()}_a(10656);D()}function Ti(a){o[a>>2]=0;o[a+4>>2]=0;m[a+24|0]=1;o[a+16>>2]=0;o[a+20>>2]=0;o[a+8>>2]=0;o[a+12>>2]=0;o[a+28>>2]=0;o[a+32>>2]=0;o[a+36>>2]=0;o[a+40>>2]=0;o[a+44>>2]=0;o[a+48>>2]=0;o[a+52>>2]=0;o[a+56>>2]=0;o[a+60>>2]=0;o[a+64>>2]=0;o[a+72>>2]=0;o[a+76>>2]=0;o[a+80>>2]=0;o[a+84>>2]=0;o[a+88>>2]=0;o[a+92>>2]=0;o[a+68>>2]=a}function Ui(a,fl){var zl=0,Al=0,Bl=0,Cl=0,Dl=0,El=0,Fl=0,Gl=0;El=R-16|0;R=El;a:{b:{if(fl){o[a+88>>2]=0;o[a+92>>2]=0;zl=a+84|0;Al=o[zl>>2];o[zl>>2]=0;if(Al){ul(Al)}o[a+76>>2]=0;o[a+80>>2]=0;zl=a+72|0;Al=o[zl>>2];o[zl>>2]=0;if(Al){ul(Al)}Al=fl+4|0;zl=o[Al>>2];Bl=o[fl>>2];m[El+15|0]=0;$a(a,zl-Bl>>2,El+15|0);Bl=fl+28|0;zl=o[Bl>>2];Cl=o[fl+24>>2];m[El+14|0]=0;$a(a+12|0,zl-Cl>>2,El+14|0);Ki(a+28|0,o[Al>>2]-o[fl>>2]>>2,10724);Al=o[a+52>>2];Cl=o[Bl>>2]-o[fl+24>>2]|0;zl=Cl>>2;c:{if(o[a+60>>2]-Al>>2>>>0>=zl>>>0){break c}if(zl>>>0>=1073741824){break b}Fl=a+56|0;Dl=o[Fl>>2];Gl=zl<<2;zl=Hk(Cl);Gl=Gl+zl|0;Cl=Dl-Al|0;Dl=Cl+zl|0;if((Cl|0)>=1){wl(zl,Al,Cl)}o[a+52>>2]=zl;o[a+60>>2]=Gl;o[Fl>>2]=Dl;if(!Al){break c}ul(Al)}Al=o[a+40>>2];Bl=o[Bl>>2]-o[fl+24>>2]|0;zl=Bl>>2;d:{if(o[a+48>>2]-Al>>2>>>0>=zl>>>0){break d}if(zl>>>0>=1073741824){break a}Cl=a+44|0;Fl=o[Cl>>2];Dl=zl<<2;zl=Hk(Bl);Dl=Dl+zl|0;Bl=Fl-Al|0;Fl=Bl+zl|0;if((Bl|0)>=1){wl(zl,Al,Bl)}o[a+40>>2]=zl;o[a+48>>2]=Dl;o[Cl>>2]=Fl;if(!Al){break d}ul(Al)}m[a+24|0]=1;o[a+64>>2]=fl}R=El+16|0;return}_a(10728);D()}_a(10728);D()}function Vi(a){var fl=0,ul=0,wl=0,Hl=0,Il=0,Jl=0,Kl=0,Ll=0,Ml=0,Nl=0,Ol=0,Pl=0,Ql=0;wl=R-32|0;R=wl;Jl=a+56|0;o[Jl>>2]=o[a+52>>2];Kl=a+44|0;o[Kl>>2]=o[a+40>>2];fl=o[a+64>>2];if(o[fl+28>>2]!=o[fl+24>>2]){Ml=a+40|0;Nl=a+52|0;Ol=a+60|0;Pl=a+48|0;while(1){ul=o[o[fl+24>>2]+(Ll<<2)>>2];a:{if((ul|0)==-1){break a}o[wl+24>>2]=Il;fl=o[Jl>>2];b:{if((fl|0)!=o[Ol>>2]){o[fl>>2]=Il;o[Jl>>2]=fl+4;break b}Xi(Nl,wl+24|0)}o[wl+16>>2]=ul;o[wl+8>>2]=0;c:{if(!(o[o[a+12>>2]+(Ll>>>3&536870908)>>2]>>>(Ll&31)&1)){break c}d:{fl=ul+1|0;fl=(fl>>>0)%3|0?fl:ul+ -2|0;if(!((fl|0)==-1|o[o[a>>2]+(fl>>>3&536870908)>>2]>>>(fl&31)&1)){fl=o[o[o[a+64>>2]+12>>2]+(fl<<2)>>2];if((fl|0)!=-1){break d}}o[wl+8>>2]=-1;break c}Hl=fl+1|0;fl=(Hl>>>0)%3|0?Hl:fl+ -2|0;o[wl+8>>2]=fl;if((fl|0)==-1){break c}while(1){o[wl+16>>2]=fl;e:{Hl=fl+1|0;ul=fl;fl=(Hl>>>0)%3|0?Hl:fl+ -2|0;if(!((fl|0)==-1|o[o[a>>2]+(fl>>>3&536870908)>>2]>>>(fl&31)&1)){fl=o[o[o[a+64>>2]+12>>2]+(fl<<2)>>2];if((fl|0)!=-1){break e}}o[wl+8>>2]=-1;break c}Hl=fl+1|0;fl=(Hl>>>0)%3|0?Hl:fl+ -2|0;o[wl+8>>2]=fl;if((fl|0)!=-1){continue}break}}Ql=a+28|0;o[o[Ql>>2]+(ul<<2)>>2]=o[wl+24>>2];fl=o[Kl>>2];f:{if((fl|0)!=o[Pl>>2]){o[fl>>2]=o[wl+16>>2];o[Kl>>2]=fl+4;break f}bh(Ml,wl+16|0)}Il=Il+1|0;fl=o[a+64>>2];g:{Hl=o[wl+16>>2];if((Hl|0)==-1){break g}ul=Hl+((Hl>>>0)%3|0?-1:2)|0;if((ul|0)==-1){break g}ul=o[o[fl+12>>2]+(ul<<2)>>2];if((ul|0)==-1){break g}ul=ul+((ul>>>0)%3|0?-1:2)|0;o[wl+8>>2]=ul;if((ul|0)==-1|(ul|0)==(Hl|0)){break a}while(1){fl=ul+1|0;fl=(fl>>>0)%3|0?fl:ul+ -2|0;h:{if(!(o[o[a>>2]+(fl>>>3&536870908)>>2]>>>(fl&31)&1)){break h}o[wl+24>>2]=Il;fl=o[Jl>>2];i:{if((fl|0)!=o[Ol>>2]){o[fl>>2]=Il;o[Jl>>2]=fl+4;break i}Xi(Nl,wl+24|0)}Il=Il+1|0;fl=o[Kl>>2];if((fl|0)!=o[Pl>>2]){o[fl>>2]=o[wl+8>>2];o[Kl>>2]=fl+4;break h}bh(Ml,wl+8|0)}o[o[Ql>>2]+(o[wl+8>>2]<<2)>>2]=o[wl+24>>2];fl=o[a+64>>2];ul=o[wl+8>>2];if((ul|0)==-1){break g}ul=ul+((ul>>>0)%3|0?-1:2)|0;if((ul|0)==-1){break g}ul=o[o[fl+12>>2]+(ul<<2)>>2];if((ul|0)==-1){break g}ul=ul+((ul>>>0)%3|0?-1:2)|0;o[wl+8>>2]=ul;if((ul|0)==-1){break a}if(o[wl+16>>2]!=(ul|0)){continue}break}break a}o[wl+8>>2]=-1}Ll=Ll+1|0;if(Ll>>>0<o[fl+28>>2]-o[fl+24>>2]>>2>>>0){continue}break}}R=wl+32|0}function Wi(a,Rl){var Sl=0,Tl=0,Ul=0,Vl=0,Wl=0,Xl=0;Ul=o[a>>2];Sl=Ul+(Rl>>>3&536870908)|0;o[Sl>>2]=o[Sl>>2]|1<<(Rl&31);Wl=o[a+64>>2];Vl=(Rl|0)==-1;Sl=-1;a:{if(Vl){break a}Tl=Rl+1|0;Tl=(Tl>>>0)%3|0?Tl:Rl+ -2|0;Sl=-1;if((Tl|0)==-1){break a}Sl=o[o[Wl>>2]+(Tl<<2)>>2]}Tl=o[a+12>>2];Xl=(Sl>>>3&536870908)+Tl|0;o[Xl>>2]=o[Xl>>2]|1<<(Sl&31);b:{c:{if(!Vl){Sl=-1;Vl=((Rl>>>0)%3|0?-1:2)+Rl|0;if((Vl|0)!=-1){Sl=o[o[Wl>>2]+(Vl<<2)>>2]}Vl=Tl+(Sl>>>3&536870908)|0;o[Vl>>2]=o[Vl>>2]|1<<(Sl&31);Rl=o[o[Wl+12>>2]+(Rl<<2)>>2];if((Rl|0)==-1){break b}m[a+24|0]=0;a=(Rl>>>3&536870908)+Ul|0;o[a>>2]=o[a>>2]|1<<(Rl&31);a=-1;Sl=-1;Ul=Rl+1|0;Ul=(Ul>>>0)%3|0?Ul:Rl+ -2|0;if((Ul|0)!=-1){Sl=o[o[Wl>>2]+(Ul<<2)>>2]}Ul=Tl+(Sl>>>3&536870908)|0;o[Ul>>2]=o[Ul>>2]|1<<(Sl&31);Rl=Rl+((Rl>>>0)%3|0?-1:2)|0;if((Rl|0)!=-1){a=o[o[Wl>>2]+(Rl<<2)>>2]}Rl=1<<(a&31);a=Tl+(a>>>3&536870908)|0;Sl=o[a>>2];break c}a=Tl+536870908|0;Rl=o[Tl+536870908>>2];Sl=-2147483648}o[a>>2]=Rl|Sl}}function Xi(a,Rl){var Yl=0,Zl=0,_l=0,$l=0,am=0,bm=0;a:{_l=o[a>>2];am=o[a+4>>2]-_l|0;Yl=am>>2;Zl=Yl+1|0;if(Zl>>>0<1073741824){bm=Yl<<2;Yl=o[a+8>>2]-_l|0;$l=Yl>>1;Zl=Yl>>2>>>0<536870911?$l>>>0<Zl>>>0?Zl:$l:1073741823;Yl=0;b:{if(!Zl){break b}if(Zl>>>0>=1073741824){break a}Yl=Hk(Zl<<2)}$l=bm+Yl|0;o[$l>>2]=o[Rl>>2];Rl=Yl+(Zl<<2)|0;Zl=$l+4|0;if((am|0)>=1){wl(Yl,_l,am)}o[a>>2]=Yl;o[a+8>>2]=Rl;o[a+4>>2]=Zl;if(_l){ul(_l)}return}Yk();D()}_a(10728);D()}function Yi(a,Rl){var cm=0,dm=0,em=0,fm=0,gm=0,hm=0,im=0,jm=0,km=0,lm=0,mm=0;dm=R-16|0;R=dm;a:{em=sj(Rl);if(!em){o[a>>2]=0;break a}fm=o[Rl+100>>2];jm=o[Rl+96>>2];o[dm+8>>2]=0;o[dm>>2]=0;o[dm+4>>2]=0;Rl=fm-jm|0;im=(Rl|0)/12|0;b:{if(Rl){if(im>>>0>=357913942){break b}gm=Hk(Rl);o[dm>>2]=gm;o[dm+4>>2]=gm;o[dm+8>>2]=u(im,12)+gm;Rl=xl(gm,0,Rl);cm=im;while(1){Rl=Rl+12|0;cm=cm+ -1|0;if(cm){continue}break}o[dm+4>>2]=Rl}if((fm|0)!=(jm|0)){Rl=0;lm=p[em+84|0];mm=em+68|0;while(1){km=u(Rl,12);cm=km+jm|0;em=o[cm>>2];c:{if(lm){fm=cm+8|0;cm=cm+4|0;break c}hm=o[mm>>2];fm=hm+(o[cm+8>>2]<<2)|0;em=o[hm+(em<<2)>>2];cm=hm+(o[cm+4>>2]<<2)|0}hm=o[cm>>2];cm=gm+km|0;o[cm+8>>2]=o[fm>>2];o[cm+4>>2]=hm;o[cm>>2]=em;Rl=Rl+1|0;if(Rl>>>0<im>>>0){continue}break}}Ai(a,dm);a=o[dm>>2];if(!a){break a}o[dm+4>>2]=a;ul(a);break a}Yk();D()}R=dm+16|0}function Zi(a,Rl,nm){var om=0,pm=0,qm=0,rm=0,sm=0,tm=0,um=0,vm=0,wm=0,xm=0,ym=0,zm=0,Am=0,Bm=0,Cm=0,Dm=0;tm=R-16|0;R=tm;sm=u(Rl,12)+a|0;um=sm+12|0;zm=sm+8|0;o[um>>2]=o[zm>>2];o[tm+8>>2]=(nm|0)==-1?-1:(nm>>>0)/3|0;Am=sm+16|0;Bm=a+4|0;qm=nm;while(1){sm=pm;vm=(pm|0)==1;a:{b:{if(!vm){pm=o[tm+8>>2];break b}if((qm|0)==-1){qm=-1;_i(a,-1);break a}if((qm|0)==-1|(_i(a,((qm>>>0)%3|0?-1:2)+qm|0)|0)==-1){break a}nm=qm+1|0;om=(nm>>>0)%3|0?nm:qm+ -2|0;if((om|0)==-1){break a}nm=om+1|0;nm=(nm>>>0)%3|0?nm:om+ -2|0;if((nm|0)==-1){break a}om=o[o[o[Bm>>2]+12>>2]+(nm<<2)>>2];if((om|0)==-1){break a}nm=om+1|0;nm=(nm>>>0)%3|0?nm:om+ -2|0;if((nm|0)==-1){break a}pm=(nm>>>0)/3|0;o[tm+8>>2]=pm}wm=1<<(pm&31);xm=o[a+56>>2]+(pm>>>3&536870908)|0;ym=o[xm>>2];c:{if(wm&ym){break c}rm=0;while(1){o[xm>>2]=wm|ym;om=o[um>>2];d:{if((om|0)!=o[Am>>2]){o[om>>2]=pm;o[um>>2]=om+4;break d}Si(zm,tm+8|0)}om=rm+1|0;e:{if(!rm){break e}if(om&1){if((nm|0)==-1){nm=-1;break e}rm=nm+1|0;nm=(rm>>>0)%3|0?rm:nm+ -2|0;break e}qm=vm?nm:qm;if((nm|0)==-1){nm=-1;break e}if((nm>>>0)%3){nm=nm+ -1|0;break e}nm=nm+2|0}nm=_i(a,nm);if((nm|0)!=-1){pm=(nm>>>0)/3|0;o[tm+8>>2]=pm;rm=om;wm=1<<(pm&31);xm=o[a+56>>2]+(pm>>>3&268435452)|0;ym=o[xm>>2];if(!(wm&ym)){continue}}break}if(!(om&1)|(sm|0)!=1){break c}vm=o[um>>2]+ -4|0;pm=o[vm>>2];rm=o[a+56>>2]+(pm>>>3&536870908)|0;om=o[rm>>2];Cm=rm,Dm=Zl(pm)&om,o[Cm>>2]=Dm;o[um>>2]=vm}pm=1;if(!sm){continue}}break}o[((Rl<<2)+a|0)+44>>2]=qm;Rl=o[um>>2];qm=o[zm>>2];if((Rl|0)!=(qm|0)){rm=Rl-qm>>2;om=o[a+56>>2];nm=0;while(1){sm=o[qm+(nm<<2)>>2];Rl=om+(sm>>>3&536870908)|0;a=o[Rl>>2];Cm=Rl,Dm=Zl(sm)&a,o[Cm>>2]=Dm;nm=nm+1|0;if(nm>>>0<rm>>>0){continue}break}}R=tm+16|0}function _i(a,Rl){var nm=0,Em=0,Fm=0,Gm=0,Hm=0;Em=-1;Gm=-1;Fm=-1;a:{b:{if((Rl|0)==-1){break b}Hm=1;Gm=o[o[o[a+4>>2]+12>>2]+(Rl<<2)>>2];nm=Rl+1|0;nm=(nm>>>0)%3|0?nm:Rl+ -2|0;if((nm|0)>=0){Fm=(nm>>>0)/3|0;Fm=o[(o[o[a>>2]+96>>2]+u(Fm,12)|0)+(nm-u(Fm,3)<<2)>>2]}c:{if((Gm|0)==-1){break c}Hm=0;nm=((Gm>>>0)%3|0?-1:2)+Gm|0;if((nm|0)<0){break c}Em=(nm>>>0)/3|0;Em=o[(o[o[a>>2]+96>>2]+u(Em,12)|0)+(nm-u(Em,3)<<2)>>2]}nm=-1;if((Em|0)!=(Fm|0)){break a}Fm=-1;d:{Rl=((Rl>>>0)%3|0?-1:2)+Rl|0;if((Rl|0)>=0){Em=(Rl>>>0)/3|0;Em=o[(o[o[a>>2]+96>>2]+u(Em,12)|0)+(Rl-u(Em,3)<<2)>>2];if(Hm){break b}break d}Em=-1;if(!Hm){break d}break b}Rl=Gm+1|0;Rl=(Rl>>>0)%3|0?Rl:Gm+ -2|0;if((Rl|0)<0){break b}Fm=o[o[a>>2]+96>>2];a=(Rl>>>0)/3|0;Fm=o[(Fm+u(a,12)|0)+(Rl-u(a,3)<<2)>>2]}nm=(Em|0)==(Fm|0)?Gm:-1}return nm}function $i(a,Rl){var Im=0,Jm=0,Km=0,Lm=0,Mm=0,Nm=0,Om=0,Pm=0,Qm=0,Rm=0,Sm=0;Jm=R-48|0;R=Jm;o[Jm+40>>2]=0;o[Jm+32>>2]=0;o[Jm+36>>2]=0;Im=Hk(8);o[Im+4>>2]=Rl;o[Im>>2]=0;Rl=Im+8|0;o[Jm+40>>2]=Rl;o[Jm+36>>2]=Rl;o[Jm+32>>2]=Im;a:{b:{c:{d:{while(1){Rl=Rl+ -8|0;Nm=o[Rl+4>>2];Sm=o[Rl>>2];o[Jm+36>>2]=Rl;if(Sm){o[Jm+24>>2]=0;o[Jm+16>>2]=0;o[Jm+20>>2]=0;Pm=1;Rl=o[a>>2];Mm=o[Rl+16>>2];Lm=o[Rl+12>>2];Im=o[Rl+20>>2];e:{if((Lm|0)<(Im|0)?1:(Lm|0)<=(Im|0)?r[Rl+8>>2]>Mm>>>0?0:1:0){break e}Km=p[Mm+o[Rl>>2]|0];Lm=Mm+1|0;if(Lm>>>0<1){Im=Im+1|0}o[Rl+16>>2]=Lm;o[Rl+20>>2]=Im;Rk(Jm+16|0,Km);if(Km){Lm=o[a>>2];Rm=Vk(Jm+16|0);Om=o[Lm+12>>2];Mm=o[Lm+20>>2];Qm=o[Lm+16>>2];Rl=Km;Im=Qm+Rl|0;if(Im>>>0<Rl>>>0){Mm=Mm+1|0}if((Om|0)<(Mm|0)?1:(Om|0)<=(Mm|0)?r[Lm+8>>2]>=Im>>>0?0:1:0){break e}wl(Rm,Qm+o[Lm>>2]|0,Km);Im=Lm;Lm=Im;Mm=o[Im+20>>2];Km=Rl+o[Im+16>>2]|0;if(Km>>>0<Rl>>>0){Mm=Mm+1|0}o[Lm+16>>2]=Km;o[Im+20>>2]=Mm}Nm=Hk(24);Im=Nm+4|0;o[Im>>2]=0;o[Im+4>>2]=0;Rl=Nm+16|0;o[Rl>>2]=0;o[Rl+4>>2]=0;o[Nm>>2]=Im;o[Nm+12>>2]=Rl;o[Jm+8>>2]=Nm;oj(Sm,Jm+16|0,Jm+8|0);Rl=o[Jm+8>>2];Pm=0;o[Jm+8>>2]=0;if(!Rl){break e}Fc(Rl+12|0,o[Rl+16>>2]);Gc(Rl,o[Rl+4>>2]);ul(Rl)}if(m[Jm+27|0]<=-1){ul(o[Jm+16>>2])}if(Pm){break b}}if(!Nm){break b}o[Jm+16>>2]=0;if(!aj(1,Jm+16|0,o[a>>2])){break b}Rl=0;Im=o[Jm+16>>2];if(Im){while(1){if(!bj(a,Nm)){break b}Rl=Rl+1|0;if(Rl>>>0<Im>>>0){continue}break}}o[Jm+4>>2]=0;if(!aj(1,Jm+4|0,o[a>>2])){break b}Mm=o[Jm+4>>2];if(Mm){Pm=0;while(1){Rl=o[Jm+36>>2];Im=o[Jm+40>>2];f:{if(Rl>>>0<Im>>>0){o[Rl+4>>2]=0;o[Rl>>2]=Nm;o[Jm+36>>2]=o[Jm+36>>2]+8;break f}Om=o[Jm+32>>2];Rm=Rl-Om|0;Rl=Rm>>3;Qm=Rl+1|0;if(Qm>>>0>=536870912){break d}Lm=Rl<<3;Km=Im-Om|0;Im=Km>>2;Km=Km>>3>>>0<268435455?Im>>>0<Qm>>>0?Qm:Im:536870911;Rl=0;g:{if(!Km){break g}if(Km>>>0>=536870912){break c}Rl=Hk(Km<<3)}Im=Lm+Rl|0;o[Im+4>>2]=0;o[Im>>2]=Nm;Km=Rl+(Km<<3)|0;Im=Im+8|0;if((Rm|0)>=1){wl(Rl,Om,Rm)}o[Jm+40>>2]=Km;o[Jm+36>>2]=Im;o[Jm+32>>2]=Rl;if(!Om){break f}ul(Om)}Pm=Pm+1|0;if(Pm>>>0<Mm>>>0){continue}break}}Rl=o[Jm+36>>2];Im=o[Jm+32>>2];if((Rl|0)!=(Im|0)){continue}break}a=1;break a}Yk();D()}_a(10796);D()}Im=o[Jm+32>>2];a=0}if(Im){o[Jm+36>>2]=Im;ul(Im)}R=Jm+48|0;return a}function aj(a,Rl,Tm){var Um=0,Vm=0,Wm=0,Xm=0;a:{if(a>>>0>5){break a}Wm=o[Tm+16>>2];Um=o[Tm+12>>2];Vm=o[Tm+20>>2];if((Um|0)<(Vm|0)?1:(Um|0)<=(Vm|0)?r[Tm+8>>2]>Wm>>>0?0:1:0){break a}Um=p[Wm+o[Tm>>2]|0];Wm=Wm+1|0;if(Wm>>>0<1){Vm=Vm+1|0}o[Tm+16>>2]=Wm;o[Tm+20>>2]=Vm;Vm=Rl;if(Um&128){if(!aj(a+1|0,Rl,Tm)){break a}a=o[Rl>>2]<<7;o[Rl>>2]=a;Um=a|Um&127}o[Vm>>2]=Um;Xm=1}return Xm}function bj(a,Rl){var Tm=0,Ym=0,Zm=0,_m=0,$m=0,an=0,bn=0,cn=0,dn=0,en=0;Ym=R-32|0;R=Ym;o[Ym+24>>2]=0;o[Ym+16>>2]=0;o[Ym+20>>2]=0;a:{Zm=o[a>>2];Tm=Zm;$m=o[Tm+16>>2];an=r[Tm+8>>2]>$m>>>0?0:1;_m=o[Tm+12>>2];Tm=o[Tm+20>>2];b:{if((_m|0)<(Tm|0)?1:(_m|0)<=(Tm|0)?an:0){break b}an=p[$m+o[Zm>>2]|0];_m=Tm;Tm=$m+1|0;if(Tm>>>0<1){_m=_m+1|0}o[Zm+16>>2]=Tm;o[Zm+20>>2]=_m;Rk(Ym+16|0,an);if(an){_m=o[a>>2];cn=Vk(Ym+16|0);en=o[_m+12>>2];$m=o[_m+20>>2];dn=o[_m+16>>2];Zm=an;Tm=dn+Zm|0;if(Tm>>>0<Zm>>>0){$m=$m+1|0}if((en|0)<($m|0)?1:(en|0)<=($m|0)?r[_m+8>>2]>=Tm>>>0?0:1:0){break b}wl(cn,dn+o[_m>>2]|0,an);Tm=_m;_m=Tm;$m=o[Tm+20>>2];an=Zm+o[Tm+16>>2]|0;if(an>>>0<Zm>>>0){$m=$m+1|0}o[_m+16>>2]=an;o[Tm+20>>2]=$m}o[Ym+12>>2]=0;Tm=aj(1,Ym+12|0,o[a>>2]);Zm=o[Ym+12>>2];if(!Zm|!Tm){break b}o[Ym+8>>2]=0;o[Ym>>2]=0;o[Ym+4>>2]=0;if((Zm|0)<=-1){break a}bn=Hk(Zm);o[Ym>>2]=bn;o[Ym+4>>2]=bn;o[Ym+8>>2]=Zm+bn;Tm=Zm;while(1){m[bn|0]=0;bn=o[Ym+4>>2]+1|0;o[Ym+4>>2]=bn;Tm=Tm+ -1|0;if(Tm){continue}break}bn=0;Tm=o[a>>2];a=o[Tm+8>>2];dn=o[Tm+12>>2];_m=a;cn=o[Tm+20>>2];$m=o[Tm+16>>2];a=Zm;an=$m+Zm|0;if(an>>>0<Zm>>>0){cn=cn+1|0}if((dn|0)>(cn|0)?1:(dn|0)>=(cn|0)?_m>>>0<an>>>0?0:1:0){wl(o[Ym>>2],$m+o[Tm>>2]|0,Zm);Zm=Tm;an=Tm;_m=o[Tm+20>>2];Tm=a+o[Tm+16>>2]|0;if(Tm>>>0<a>>>0){_m=_m+1|0}o[an+16>>2]=Tm;o[Zm+20>>2]=_m;nj(Rl,Ym+16|0,Ym);bn=1}a=o[Ym>>2];if(!a){break b}o[Ym+4>>2]=a;ul(a)}if(m[Ym+27|0]<=-1){ul(o[Ym+16>>2])}R=Ym+32|0;return bn}Yk();D()}function cj(a,Rl,fn){var gn=0,hn=0,jn=0,kn=0,ln=0;hn=R-16|0;R=hn;a:{b:{if(!fn){break b}o[a>>2]=Rl;o[hn+12>>2]=0;gn=0;if(!aj(1,hn+12|0,Rl)){break a}c:{ln=o[hn+12>>2];if(ln){Rl=0;while(1){if(!aj(1,hn+8|0,o[a>>2])){break b}gn=Hk(28);jn=gn+4|0;o[jn>>2]=0;o[jn+4>>2]=0;kn=gn+16|0;o[kn>>2]=0;o[kn+4>>2]=0;o[gn>>2]=jn;jn=gn+12|0;o[jn>>2]=kn;o[gn+24>>2]=o[hn+8>>2];if(!$i(a,gn)){break c}o[hn>>2]=gn;ej(fn,hn);gn=o[hn>>2];o[hn>>2]=0;if(gn){Fc(gn+12|0,o[gn+16>>2]);Gc(gn,o[gn+4>>2]);ul(gn)}Rl=Rl+1|0;if(Rl>>>0<ln>>>0){continue}break}}gn=$i(a,fn);break a}Fc(jn,o[gn+16>>2]);Gc(gn,o[gn+4>>2]);ul(gn)}gn=0}R=hn+16|0;return gn}function dj(a,Rl,fn){var mn=0,nn=0,on=0,pn=0,qn=0,rn=0,sn=0,tn=0,un=0,vn=0,wn=0,xn=0;mn=R-16|0;R=mn;pn=o[a+24>>2];un=o[a+28>>2];a:{if((pn|0)!=(un|0)){wn=mn+8|0;xn=fn+4|0;while(1){o[wn>>2]=0;o[mn>>2]=0;o[mn+4>>2]=0;a=mj(o[pn>>2],Rl,mn);qn=p[mn+11|0];tn=qn<<24>>24;b:{c:{d:{if(!a){a=3;break d}a=0;nn=p[fn+11|0];on=nn<<24>>24;sn=(tn|0)<0?o[mn+4>>2]:qn;if((sn|0)!=(((on|0)<0?o[xn>>2]:nn)|0)){break d}rn=(on|0)<0?o[fn>>2]:fn;on=o[mn>>2];nn=(tn|0)<0;e:{if(!nn){if(!sn){break e}nn=mn;if(p[rn|0]!=(on&255)){break d}while(1){qn=qn+ -1|0;if(!qn){break e}on=p[rn+1|0];rn=rn+1|0;nn=nn+1|0;if((on|0)==p[nn|0]){continue}break}break d}if(!sn){break e}if(Zj(nn?on:mn,rn,sn)){break c}}vn=o[pn>>2];a=1}if((tn|0)>-1){break b}}ul(o[mn>>2])}if(a>>>0>3){break a}f:{switch(a-1|0){case 0:case 1:break a;default:break f}}pn=pn+4|0;if((un|0)!=(pn|0)){continue}break}}vn=0}R=mn+16|0;return vn}function ej(a,Rl){var fn=0,yn=0,zn=0;yn=o[Rl>>2];if(!yn){return}fn=a+28|0;zn=o[fn>>2];if(zn>>>0<r[a+32>>2]){o[Rl>>2]=0;o[zn>>2]=yn;o[fn>>2]=o[fn>>2]+4;return}fj(a+24|0,Rl)}function fj(a,Rl){var An=0,Bn=0,Cn=0,Dn=0,En=0;a:{b:{c:{Cn=o[a>>2];Dn=o[a+4>>2]-Cn>>2;An=Dn+1|0;if(An>>>0<1073741824){Cn=o[a+8>>2]-Cn|0;En=Cn>>1;An=Cn>>2>>>0<536870911?En>>>0<An>>>0?An:En:1073741823;if(An){if(An>>>0>=1073741824){break c}Bn=Hk(An<<2)}Cn=o[Rl>>2];o[Rl>>2]=0;Rl=(Dn<<2)+Bn|0;o[Rl>>2]=Cn;Cn=(An<<2)+Bn|0;Dn=Rl+4|0;An=o[a+4>>2];Bn=o[a>>2];if((An|0)==(Bn|0)){break b}while(1){An=An+ -4|0;En=o[An>>2];o[An>>2]=0;Rl=Rl+ -4|0;o[Rl>>2]=En;if((An|0)!=(Bn|0)){continue}break}Bn=o[a+4>>2];An=o[a>>2];break a}Yk();D()}_a(10864);D()}An=Bn}o[a>>2]=Rl;o[a+8>>2]=Cn;o[a+4>>2]=Dn;if((An|0)!=(Bn|0)){while(1){Bn=Bn+ -4|0;a=o[Bn>>2];o[Bn>>2]=0;if(a){Fc(a+12|0,o[a+16>>2]);Gc(a,o[a+4>>2]);ul(a)}if((An|0)!=(Bn|0)){continue}break}}if(An){ul(An)}}function gj(a,Rl,Fn,Gn){var Hn=0,In=0,Jn=0,Kn=0;Hn=R-16|0;R=Hn;Kn=a;In=Zf(Rl,Hn+12|0,Fn);Fn=o[In>>2];if(Fn){Rl=0}else{Fn=Hk(32);Mk(Fn+16|0,o[Gn>>2]);o[Fn+28>>2]=0;o[Fn+8>>2]=o[Hn+12>>2];o[Fn>>2]=0;o[Fn+4>>2]=0;o[In>>2]=Fn;Gn=Fn;Jn=o[o[Rl>>2]>>2];if(Jn){o[Rl>>2]=Jn;Gn=o[In>>2]}Xf(o[Rl+4>>2],Gn);Rl=Rl+8|0;o[Rl>>2]=o[Rl>>2]+1;Rl=1}m[Kn+4|0]=Rl;o[a>>2]=Fn;R=Hn+16|0}function hj(a,Rl){var Fn=0,Gn=0,Ln=0;Fn=o[Rl+4>>2];a:{if(!Fn){Gn=o[Rl+8>>2];if(o[Gn>>2]==(Rl|0)){break a}Ln=Rl+8|0;while(1){Fn=o[Ln>>2];Ln=Fn+8|0;Gn=o[Fn+8>>2];if((Fn|0)!=o[Gn>>2]){continue}break}break a}while(1){Gn=Fn;Fn=o[Fn>>2];if(Fn){continue}break}}if(o[a>>2]==(Rl|0)){o[a>>2]=Gn}Gn=a+8|0;o[Gn>>2]=o[Gn>>2]+ -1;pj(o[a+4>>2],Rl);a=o[Rl+28>>2];if(a){o[Rl+32>>2]=a;ul(a)}if(m[Rl+27|0]<=-1){ul(o[Rl+16>>2])}ul(Rl)}function ij(a,Rl,Mn){var Nn=0,On=0,Pn=0,Qn=0,Rn=0;Nn=Hk(40);m[a+8|0]=0;o[a+4>>2]=Rl+4;o[a>>2]=Nn;Rl=Mn+8|0;o[Nn+24>>2]=o[Rl>>2];On=o[Mn+4>>2];o[Nn+16>>2]=o[Mn>>2];o[Nn+20>>2]=On;o[Mn>>2]=0;o[Mn+4>>2]=0;o[Rl>>2]=0;o[Nn+36>>2]=0;o[Nn+28>>2]=0;o[Nn+32>>2]=0;Pn=Mn+16|0;On=o[Pn>>2];Rl=o[Mn+12>>2];Qn=On-Rl|0;if(Qn){Rl=Nn+28|0;Fa(Rl,Qn);On=o[Pn>>2];Rn=o[Rl>>2];Rl=o[Mn+12>>2]}wl(Rn,Rl,On-Rl|0);m[a+8|0]=1}function jj(a,Rl,Mn){var Sn=0;Sn=a+4|0;a=xi(a,Rl);a:{if((Sn|0)==(a|0)){break a}Rl=o[a+32>>2];a=o[a+28>>2];if((Rl-a|0)!=4){break a}o[Mn>>2]=p[a|0]|p[a+1|0]<<8|(p[a+2|0]<<16|p[a+3|0]<<24)}}function kj(a,Rl,Mn){var Tn=0,Un=0,Vn=0,Wn=0;a:{Rl=xi(a,Rl);b:{if((Rl|0)==(a+4|0)){break b}a=o[Rl+28>>2];Tn=o[Rl+32>>2];if((a|0)==(Tn|0)){break b}a=Tn-a|0;if(a&3){break b}Tn=a>>>2;Wn=Mn+4|0;Un=o[Wn>>2];a=o[Mn>>2];Vn=Un-a>>2;c:{if(Tn>>>0>Vn>>>0){Da(Mn,Tn-Vn|0);Un=o[Wn>>2];a=o[Mn>>2];break c}if(Tn>>>0>=Vn>>>0){break c}Un=(Tn<<2)+a|0;o[Mn+4>>2]=Un}if((a|0)==(Un|0)){break a}Mn=a;a=o[Rl+28>>2];wl(Mn,a,o[Rl+32>>2]-a|0)}return}Zk();D()}function lj(a,Rl,Mn){var Xn=0;Xn=a+4|0;a=xi(a,Rl);a:{if((Xn|0)==(a|0)){break a}Rl=o[a+32>>2];a=o[a+28>>2];if((Rl-a|0)!=8){break a}Rl=p[a+4|0]|p[a+5|0]<<8|(p[a+6|0]<<16|p[a+7|0]<<24);o[Mn>>2]=p[a|0]|p[a+1|0]<<8|(p[a+2|0]<<16|p[a+3|0]<<24);o[Mn+4>>2]=Rl}}function mj(a,Rl,Mn){var Yn=0,Zn=0,_n=0;Yn=a+4|0;a=xi(a,Rl);a:{if((Yn|0)==(a|0)){break a}Rl=a+32|0;Yn=o[Rl>>2];Zn=o[a+28>>2];if((Yn|0)==(Zn|0)){break a}Rk(Mn,Yn-Zn|0);Mn=Vk(Mn);a=o[a+28>>2];wl(Mn,a,o[Rl>>2]-a|0);_n=1}return _n}function nj(a,Rl,Mn){var $n=0,ao=0,bo=0,co=0;$n=R+ -64|0;R=$n;ao=xi(a,Rl);if((ao|0)!=(a+4|0)){hj(a,ao)}ao=0;o[$n+16>>2]=0;o[$n+8>>2]=0;o[$n+12>>2]=0;co=o[Mn>>2];bo=o[Mn+4>>2]-co|0;if(bo){Fa($n+8|0,bo);co=o[Mn>>2];Mn=o[$n+8>>2]}else{Mn=0}wl(Mn,co,bo);co=Mk($n+24|0,Rl);o[$n+44>>2]=0;o[$n+36>>2]=0;o[$n+40>>2]=0;Rl=o[$n+12>>2];Mn=o[$n+8>>2];bo=Rl-Mn|0;if(bo){Fa($n+36|0,bo);Mn=o[$n+8>>2];ao=o[$n+36>>2];Rl=o[$n+12>>2]}wl(ao,Mn,Rl-Mn|0);Rl=Zf(a,$n+60|0,co);if(!o[Rl>>2]){ij($n+48|0,a,$n+24|0);Mn=o[$n+48>>2];o[Mn+8>>2]=o[$n+60>>2];o[Mn>>2]=0;o[Mn+4>>2]=0;o[Rl>>2]=Mn;ao=o[o[a>>2]>>2];if(ao){o[a>>2]=ao;Mn=o[Rl>>2]}Xf(o[a+4>>2],Mn);a=a+8|0;o[a>>2]=o[a>>2]+1}a=o[$n+36>>2];if(a){o[$n+40>>2]=a;ul(a)}if(m[$n+35|0]<=-1){ul(o[$n+24>>2])}a=o[$n+8>>2];if(a){o[$n+12>>2]=a;ul(a)}R=$n- -64|0}function oj(a,Rl,Mn){var eo=0,fo=0;eo=R-32|0;R=eo;fo=a+12|0;a:{if((xi(fo,Rl)|0)!=(a+16|0)){break a}o[eo+16>>2]=Rl;gj(eo+24|0,fo,Rl,eo+16|0);a=o[eo+24>>2];Rl=o[Mn>>2];o[Mn>>2]=0;Mn=a+28|0;a=o[Mn>>2];o[Mn>>2]=Rl;if(!a){break a}Fc(a+12|0,o[a+16>>2]);Gc(a,o[a+4>>2]);ul(a)}R=eo+32|0}function pj(a,Rl){var Mn=0,go=0,ho=0,io=0,jo=0,ko=0;a:{b:{go=Rl;ho=o[Rl>>2];if(ho){Mn=o[Rl+4>>2];if(!Mn){break b}while(1){go=Mn;Mn=o[Mn>>2];if(Mn){continue}break}}ho=o[go+4>>2];if(ho){break b}ho=0;jo=0;break a}o[ho+8>>2]=o[go+8>>2];jo=1}io=o[go+8>>2];Mn=o[io>>2];c:{if((Mn|0)==(go|0)){o[io>>2]=ho;if((a|0)==(go|0)){Mn=0;a=ho;break c}Mn=o[io+4>>2];break c}o[io+4>>2]=ho}d:{e:{f:{ko=!p[go+12|0];if((Rl|0)!=(go|0)){io=o[Rl+8>>2];o[go+8>>2]=io;o[io+((o[o[Rl+8>>2]>>2]!=(Rl|0))<<2)>>2]=go;io=o[Rl>>2];o[go>>2]=io;o[io+8>>2]=go;io=o[Rl+4>>2];o[go+4>>2]=io;if(io){o[io+8>>2]=go}m[go+12|0]=p[Rl+12|0];a=(a|0)==(Rl|0)?go:a}if(!(ko|!a)){if(!jo){while(1){Rl=p[Mn+12|0];g:{ho=o[Mn+8>>2];if(o[ho>>2]!=(Mn|0)){if(!Rl){m[Mn+12|0]=1;m[ho+12|0]=0;Rl=ho+4|0;jo=o[Rl>>2];go=o[jo>>2];o[Rl>>2]=go;if(go){o[go+8>>2]=ho}o[jo+8>>2]=o[ho+8>>2];Rl=o[ho+8>>2];o[((ho|0)==o[Rl>>2]?Rl:Rl+4|0)>>2]=jo;o[jo>>2]=ho;o[ho+8>>2]=jo;Rl=o[Mn>>2];a=(Rl|0)==(a|0)?Mn:a;Mn=o[Rl+4>>2]}go=o[Mn>>2];if(!(p[go+12|0]?0:go)){Rl=o[Mn+4>>2];if(p[Rl+12|0]?0:Rl){break f}m[Mn+12|0]=0;Mn=o[Mn+8>>2];h:{if((Mn|0)==(a|0)){Mn=a;break h}if(p[Mn+12|0]){break g}}m[Mn+12|0]=1;return}Rl=o[Mn+4>>2];if(Rl){break f}break e}i:{if(Rl){Rl=Mn;break i}m[Mn+12|0]=1;m[ho+12|0]=0;Rl=o[Mn+4>>2];o[ho>>2]=Rl;if(Rl){o[Rl+8>>2]=ho}o[Mn+8>>2]=o[ho+8>>2];go=o[ho+8>>2];j:{if((ho|0)==o[go>>2]){o[go>>2]=Mn;Rl=o[ho>>2];break j}o[go+4>>2]=Mn}o[Mn+4>>2]=ho;o[ho+8>>2]=Mn;a=(a|0)==(ho|0)?Mn:a}go=o[Rl>>2];k:{if(!(!go|p[go+12|0])){Mn=Rl;break k}Mn=o[Rl+4>>2];if(!(p[Mn+12|0]?0:Mn)){m[Rl+12|0]=0;Mn=o[Rl+8>>2];if(p[Mn+12|0]?(Mn|0)!=(a|0):0){break g}m[Mn+12|0]=1;return}if(go){if(!p[go+12|0]){Mn=Rl;break k}Mn=o[Rl+4>>2]}m[Mn+12|0]=1;m[Rl+12|0]=0;a=o[Mn>>2];o[Rl+4>>2]=a;if(a){o[a+8>>2]=Rl}o[Mn+8>>2]=o[Rl+8>>2];a=o[Rl+8>>2];o[(o[a>>2]==(Rl|0)?a:a+4|0)>>2]=Mn;o[Mn>>2]=Rl;o[Rl+8>>2]=Mn;go=Rl}a=Mn;Mn=o[Mn+8>>2];m[a+12|0]=p[Mn+12|0];m[Mn+12|0]=1;m[go+12|0]=1;Rl=o[Mn>>2];a=o[Rl+4>>2];o[Mn>>2]=a;if(a){o[a+8>>2]=Mn}o[Rl+8>>2]=o[Mn+8>>2];a=o[Mn+8>>2];o[((Mn|0)==o[a>>2]?a:a+4|0)>>2]=Rl;o[Rl+4>>2]=Mn;o[Mn+8>>2]=Rl;return}Rl=o[Mn+8>>2];Mn=o[(o[Rl>>2]==(Mn|0)?Rl+4|0:Rl)>>2];continue}}m[ho+12|0]=1}return}if(p[Rl+12|0]){break e}go=Mn;break d}m[go+12|0]=1;m[Mn+12|0]=0;a=o[go+4>>2];o[Mn>>2]=a;if(a){o[a+8>>2]=Mn}o[go+8>>2]=o[Mn+8>>2];a=o[Mn+8>>2];o[(o[a>>2]==(Mn|0)?a:a+4|0)>>2]=go;o[go+4>>2]=Mn;o[Mn+8>>2]=go;Rl=Mn}Mn=o[go+8>>2];m[go+12|0]=p[Mn+12|0];m[Mn+12|0]=1;m[Rl+12|0]=1;Rl=o[Mn+4>>2];a=o[Rl>>2];o[Mn+4>>2]=a;if(a){o[a+8>>2]=Mn}o[Rl+8>>2]=o[Mn+8>>2];a=o[Mn+8>>2];o[((Mn|0)==o[a>>2]?a:a+4|0)>>2]=Rl;o[Rl>>2]=Mn;o[Mn+8>>2]=Rl}function qj(a){o[a>>2]=10944;xl(a+4|0,0,80);return a}function rj(a,Rl){var lo=0;lo=-1;a:{if((Rl|0)==-1|(Rl|0)>4){break a}Rl=u(Rl,12)+a|0;a=o[Rl+20>>2];if((o[Rl+24>>2]-a|0)<1){break a}lo=o[a>>2]}return lo}function sj(a){var Rl=0,mo=0;Rl=o[a+20>>2];a:{if((o[a+24>>2]-Rl|0)<1){break a}Rl=o[Rl>>2];if((Rl|0)==-1){break a}mo=o[o[a+8>>2]+(Rl<<2)>>2]}return mo}function tj(a,no){var oo=0,po=0,qo=0;oo=o[a+8>>2];a=o[a+12>>2];a:{if((oo|0)==(a|0)){break a}qo=a-oo>>2;a=0;while(1){po=o[(a<<2)+oo>>2];if(o[po+60>>2]==(no|0)){break a}a=a+1|0;if(a>>>0<qo>>>0){continue}break}po=0}return po}function uj(a,no){var ro=0,so=0;ro=o[a+8>>2];a=o[a+12>>2];if((ro|0)!=(a|0)){so=a-ro>>2;a=0;while(1){if(o[o[(a<<2)+ro>>2]+60>>2]==(no|0)){return a}a=a+1|0;if(a>>>0<so>>>0){continue}break}}return-1}function vj(a,no){var to=0,uo=0,vo=0,wo=0,xo=0;to=R-16|0;R=to;uo=a+12|0;vo=o[uo>>2];wo=o[a+8>>2];xo=o[no>>2];o[no>>2]=0;o[to+8>>2]=xo;l[o[o[a>>2]+8>>2]](a,vo-wo>>2,to+8|0);no=o[to+8>>2];o[to+8>>2]=0;if(no){Fb(no)}R=to+16|0;return(o[uo>>2]-o[a+8>>2]>>2)+ -1|0}function wj(a,no,yo){a=a|0;no=no|0;yo=yo|0;var zo=0,Ao=0,Bo=0,Co=0,Do=0,Eo=0;Co=R-16|0;R=Co;o[Co+12>>2]=no;Do=a+8|0;zo=o[a+12>>2];Eo=o[a+8>>2];Ao=zo-Eo>>2;a:{if((Ao|0)>(no|0)){break a}Bo=no+1|0;if(Bo>>>0>Ao>>>0){xj(Do,Bo-Ao|0);break a}if(Bo>>>0>=Ao>>>0){break a}Ao=Eo+(Bo<<2)|0;if((Ao|0)!=(zo|0)){while(1){zo=zo+ -4|0;Bo=o[zo>>2];o[zo>>2]=0;if(Bo){Fb(Bo)}if((zo|0)!=(Ao|0)){continue}break}}o[a+12>>2]=Ao}zo=o[o[yo>>2]+56>>2];b:{if((zo|0)>4){break b}zo=u(zo,12)+a|0;Ao=zo+24|0;a=o[Ao>>2];if((a|0)!=o[zo+28>>2]){o[a>>2]=no;o[Ao>>2]=a+4;break b}yj(zo+20|0,Co+12|0)}no=o[yo>>2];a=o[Co+12>>2];o[no+60>>2]=a;zo=o[Do>>2];o[yo>>2]=0;yo=zo+(a<<2)|0;a=o[yo>>2];o[yo>>2]=no;if(a){Fb(a)}R=Co+16|0}function xj(a,no){var yo=0,Fo=0,Go=0,Ho=0,Io=0,Jo=0,Ko=0,Lo=0,Mo=0;Fo=o[a+8>>2];Go=a+4|0;yo=o[Go>>2];if(Fo-yo>>2>>>0>=no>>>0){a=no<<2;Lo=Go,Mo=xl(yo,0,a)+a|0,o[Lo>>2]=Mo;return}a:{Go=o[a>>2];Ho=yo-Go>>2;Io=Ho+no|0;if(Io>>>0<1073741824){Ho=Ho<<2;Fo=Fo-Go|0;Ko=Fo>>1;Fo=Fo>>2>>>0<536870911?Ko>>>0<Io>>>0?Io:Ko:1073741823;if(Fo){if(Fo>>>0>=1073741824){break a}Jo=Hk(Fo<<2)}Ho=Ho+Jo|0;xl(Ho,0,no<<2);no=(Io<<2)+Jo|0;Io=(Fo<<2)+Jo|0;if((yo|0)!=(Go|0)){while(1){yo=yo+ -4|0;Fo=o[yo>>2];o[yo>>2]=0;Ho=Ho+ -4|0;o[Ho>>2]=Fo;if((yo|0)!=(Go|0)){continue}break}Go=o[a>>2];yo=o[a+4>>2]}o[a>>2]=Ho;o[a+8>>2]=Io;o[a+4>>2]=no;if((yo|0)!=(Go|0)){while(1){yo=yo+ -4|0;a=o[yo>>2];o[yo>>2]=0;if(a){Fb(a)}if((yo|0)!=(Go|0)){continue}break}}if(Go){ul(Go)}return}Yk();D()}_a(10992);D()}function yj(a,no){var No=0,Oo=0,Po=0,Qo=0,Ro=0,So=0;a:{Po=o[a>>2];Ro=o[a+4>>2]-Po|0;No=Ro>>2;Oo=No+1|0;if(Oo>>>0<1073741824){So=No<<2;No=o[a+8>>2]-Po|0;Qo=No>>1;Oo=No>>2>>>0<536870911?Qo>>>0<Oo>>>0?Oo:Qo:1073741823;No=0;b:{if(!Oo){break b}if(Oo>>>0>=1073741824){break a}No=Hk(Oo<<2)}Qo=So+No|0;o[Qo>>2]=o[no>>2];no=No+(Oo<<2)|0;Oo=Qo+4|0;if((Ro|0)>=1){wl(No,Po,Ro)}o[a>>2]=No;o[a+8>>2]=no;o[a+4>>2]=Oo;if(Po){ul(Po)}return}Yk();D()}_a(10992);D()}function zj(a,no){a=a|0;no=no|0;var To=0,Uo=0,Vo=0,Wo=0,Xo=0,Yo=0,Zo=0;a:{if((no|0)<0){break a}To=o[a+12>>2];Uo=o[a+8>>2];if(To-Uo>>2>>>0<=no>>>0){break a}Uo=Uo+(no<<2)|0;Vo=o[Uo>>2];Yo=o[Vo+60>>2];Wo=o[Vo+56>>2];Vo=Uo+4|0;b:{if((Vo|0)!=(To|0)){while(1){Zo=o[Vo>>2];o[Vo>>2]=0;Xo=o[Uo>>2];o[Uo>>2]=Zo;if(Xo){Fb(Xo)}Uo=Uo+4|0;Vo=Vo+4|0;if((Vo|0)!=(To|0)){continue}break}To=o[a+12>>2];if((Uo|0)==(To|0)){break b}}while(1){To=To+ -4|0;Vo=o[To>>2];o[To>>2]=0;if(Vo){Fb(Vo)}if((To|0)!=(Uo|0)){continue}break}}o[a+12>>2]=Uo;To=o[a+4>>2];if(To){Aj(To,Yo)}c:{if((Wo|0)>4){break c}d:{Uo=u(Wo,12)+a|0;To=o[Uo+20>>2];Vo=Uo+24|0;Uo=o[Vo>>2];if((To|0)==(Uo|0)){break d}while(1){if(o[To>>2]==(no|0)){break d}To=To+4|0;if((Uo|0)!=(To|0)){continue}break}break c}if((To|0)==(Uo|0)){break c}Wo=To+4|0;Uo=Uo-Wo|0;Xo=Uo>>2;if(Uo){yl(To,Wo,Uo)}o[Vo>>2]=(Xo<<2)+To}To=o[a+24>>2];Uo=o[a+20>>2];if((To|0)!=(Uo|0)){Vo=To-Uo>>2;To=0;while(1){Wo=Uo+(To<<2)|0;Xo=o[Wo>>2];if((Xo|0)>(no|0)){o[Wo>>2]=Xo+ -1}To=To+1|0;if(To>>>0<Vo>>>0){continue}break}}To=o[a+36>>2];Uo=o[a+32>>2];if((To|0)!=(Uo|0)){Vo=To-Uo>>2;To=0;while(1){Wo=Uo+(To<<2)|0;Xo=o[Wo>>2];if((Xo|0)>(no|0)){o[Wo>>2]=Xo+ -1}To=To+1|0;if(To>>>0<Vo>>>0){continue}break}}To=o[a+48>>2];Uo=o[a+44>>2];if((To|0)!=(Uo|0)){Vo=To-Uo>>2;To=0;while(1){Wo=Uo+(To<<2)|0;Xo=o[Wo>>2];if((Xo|0)>(no|0)){o[Wo>>2]=Xo+ -1}To=To+1|0;if(To>>>0<Vo>>>0){continue}break}}To=o[a+60>>2];Uo=o[a+56>>2];if((To|0)!=(Uo|0)){Vo=To-Uo>>2;To=0;while(1){Wo=Uo+(To<<2)|0;Xo=o[Wo>>2];if((Xo|0)>(no|0)){o[Wo>>2]=Xo+ -1}To=To+1|0;if(To>>>0<Vo>>>0){continue}break}}To=o[a+72>>2];a=o[a+68>>2];if((To|0)==(a|0)){break a}Uo=To-a>>2;To=0;while(1){Vo=a+(To<<2)|0;Wo=o[Vo>>2];if((Wo|0)>(no|0)){o[Vo>>2]=Wo+ -1}To=To+1|0;if(To>>>0<Uo>>>0){continue}break}}}function Aj(a,no){var _o=0,$o=0,ap=0,bp=0;a:{if((no|0)<0){break a}_o=o[a+28>>2];ap=o[a+24>>2];while(1){$o=ap;if((_o|0)==($o|0)){break a}ap=$o+4|0;if(o[o[$o>>2]+24>>2]!=(no|0)){continue}break}b:{if((_o|0)!=(ap|0)){while(1){no=o[ap>>2];o[ap>>2]=0;bp=o[$o>>2];o[$o>>2]=no;if(bp){Fc(bp+12|0,o[bp+16>>2]);Gc(bp,o[bp+4>>2]);ul(bp)}$o=$o+4|0;ap=ap+4|0;if((_o|0)!=(ap|0)){continue}break}_o=o[a+28>>2];if((_o|0)==($o|0)){break b}}while(1){_o=_o+ -4|0;no=o[_o>>2];o[_o>>2]=0;if(no){Fc(no+12|0,o[no+16>>2]);Gc(no,o[no+4>>2]);ul(no)}if(($o|0)!=(_o|0)){continue}break}}o[a+28>>2]=$o}}function Bj(a){a=a|0;ul(Mi(a))}function Cj(a){a=a|0}function Dj(a){var no=0;no=p[a+74|0];m[a+74|0]=no+ -1|no;no=o[a>>2];if(no&8){o[a>>2]=no|32;return-1}o[a+4>>2]=0;o[a+8>>2]=0;no=o[a+44>>2];o[a+28>>2]=no;o[a+20>>2]=no;o[a+16>>2]=no+o[a+48>>2];return 0}function Ej(a,cp,dp){var ep=0,fp=0,gp=0;ep=o[dp+16>>2];a:{if(!ep){if(Dj(dp)){break a}ep=o[dp+16>>2]}gp=o[dp+20>>2];if(ep-gp>>>0<cp>>>0){l[o[dp+36>>2]](dp,a,cp)|0;return}b:{if(m[dp+75|0]<0){break b}ep=cp;while(1){fp=ep;if(!fp){break b}ep=fp+ -1|0;if(p[ep+a|0]!=10){continue}break}if(l[o[dp+36>>2]](dp,a,fp)>>>0<fp>>>0){break a}cp=cp-fp|0;a=a+fp|0;gp=o[dp+20>>2]}wl(gp,a,cp);o[dp+20>>2]=o[dp+20>>2]+cp}}function Fj(a,cp,dp){var hp=0,ip=0,jp=0,kp=0;hp=R-208|0;R=hp;o[hp+204>>2]=dp;dp=0;xl(hp+160|0,0,40);o[hp+200>>2]=o[hp+204>>2];a:{if((Gj(0,cp,hp+200|0,hp+80|0,hp+160|0)|0)<0){cp=-1;break a}dp=o[a+76>>2]>=0?1:dp;ip=o[a>>2];if(m[a+74|0]<=0){o[a>>2]=ip&-33}kp=ip&32;b:{if(o[a+48>>2]){cp=Gj(a,cp,hp+200|0,hp+80|0,hp+160|0);break b}o[a+48>>2]=80;o[a+16>>2]=hp+80;o[a+28>>2]=hp;o[a+20>>2]=hp;ip=o[a+44>>2];o[a+44>>2]=hp;jp=Gj(a,cp,hp+200|0,hp+80|0,hp+160|0);cp=jp;if(!ip){break b}l[o[a+36>>2]](a,0,0)|0;o[a+48>>2]=0;o[a+44>>2]=ip;o[a+28>>2]=0;o[a+16>>2]=0;cp=o[a+20>>2];o[a+20>>2]=0;cp=cp?jp:-1}jp=a;a=o[a>>2];o[jp>>2]=a|kp;cp=a&32?-1:cp;if(!dp){break a}}R=hp+208|0;return cp}function Gj(a,cp,dp,lp,mp){var np=0,op=0,pp=0,qp=0,rp=0,sp=0,tp=0,up=0,vp=0,wp=0,xp=0,yp=0,zp=0,Ap=0,Bp=0;np=R-80|0;R=np;o[np+76>>2]=cp;Bp=np+55|0;yp=np+56|0;cp=0;a:{b:while(1){c:{if((vp|0)<0){break c}if((cp|0)>(2147483647-vp|0)){o[3269]=61;vp=-1;break c}vp=cp+vp|0}d:{e:{f:{g:{h:{i:{j:{k:{l:{m:{n:{o:{p:{q:{rp=o[np+76>>2];cp=rp;qp=p[cp|0];if(qp){while(1){r:{s:{op=qp&255;t:{if(!op){qp=cp;break t}if((op|0)!=37){break s}qp=cp;while(1){if(p[cp+1|0]!=37){break t}op=cp+2|0;o[np+76>>2]=op;qp=qp+1|0;pp=p[cp+2|0];cp=op;if((pp|0)==37){continue}break}}cp=qp-rp|0;if(a){Hj(a,rp,cp)}if(cp){continue b}wp=-1;qp=1;op=np;sp=!Uj(m[o[np+76>>2]+1|0]);cp=o[np+76>>2];if(!(sp|p[cp+2|0]!=36)){wp=m[cp+1|0]+ -48|0;zp=1;qp=3}cp=qp+cp|0;o[op+76>>2]=cp;qp=0;xp=m[cp|0];pp=xp+ -32|0;u:{if(pp>>>0>31){op=cp;break u}op=cp;pp=1<<pp;if(!(pp&75913)){break u}while(1){op=cp+1|0;o[np+76>>2]=op;qp=pp|qp;xp=m[cp+1|0];pp=xp+ -32|0;if(pp>>>0>31){break u}cp=op;pp=1<<pp;if(pp&75913){continue}break}}v:{if((xp|0)==42){sp=np;w:{x:{if(!Uj(m[op+1|0])){break x}cp=o[np+76>>2];if(p[cp+2|0]!=36){break x}o[((m[cp+1|0]<<2)+mp|0)+ -192>>2]=10;tp=o[((m[cp+1|0]<<3)+lp|0)+ -384>>2];zp=1;cp=cp+3|0;break w}if(zp){break q}zp=0;tp=0;if(a){cp=o[dp>>2];o[dp>>2]=cp+4;tp=o[cp>>2]}cp=o[np+76>>2]+1|0}o[sp+76>>2]=cp;if((tp|0)>-1){break v}tp=0-tp|0;qp=qp|8192;break v}tp=Ij(np+76|0);if((tp|0)<0){break q}cp=o[np+76>>2]}pp=-1;y:{if(p[cp|0]!=46){break y}if(p[cp+1|0]==42){z:{if(!Uj(m[cp+2|0])){break z}cp=o[np+76>>2];if(p[cp+3|0]!=36){break z}o[((m[cp+2|0]<<2)+mp|0)+ -192>>2]=10;pp=o[((m[cp+2|0]<<3)+lp|0)+ -384>>2];cp=cp+4|0;o[np+76>>2]=cp;break y}if(zp){break q}if(a){cp=o[dp>>2];o[dp>>2]=cp+4;pp=o[cp>>2]}else{pp=0}cp=o[np+76>>2]+2|0;o[np+76>>2]=cp;break y}o[np+76>>2]=cp+1;pp=Ij(np+76|0);cp=o[np+76>>2]}op=0;while(1){Ap=op;up=-1;if(m[cp|0]+ -65>>>0>57){break a}xp=cp+1|0;o[np+76>>2]=xp;op=m[cp|0];cp=xp;op=p[(op+u(Ap,58)|0)+11023|0];if(op+ -1>>>0<8){continue}break}if(!op){break a}A:{B:{C:{if((op|0)==19){if((wp|0)<=-1){break C}break a}if((wp|0)<0){break B}o[(wp<<2)+mp>>2]=op;cp=(wp<<3)+lp|0;op=o[cp+4>>2];o[np+64>>2]=o[cp>>2];o[np+68>>2]=op}cp=0;if(!a){continue b}break A}if(!a){break d}Jj(np- -64|0,op,dp);xp=o[np+76>>2]}sp=qp&-65537;qp=qp&8192?sp:qp;up=0;wp=11060;op=yp;cp=m[xp+ -1|0];cp=Ap?(cp&15)==3?cp&-33:cp:cp;xp=cp+ -88|0;if(xp>>>0<=32){break r}D:{E:{F:{G:{sp=cp+ -65|0;if(sp>>>0>6){if((cp|0)!=83){break e}if(!pp){break G}op=o[np+64>>2];break E}switch(sp-1|0){case 1:break F;case 0:case 2:break e;default:break p}}cp=0;Kj(a,32,tp,0,qp);break D}o[np+12>>2]=0;o[np+8>>2]=o[np+64>>2];o[np+64>>2]=np+8;pp=-1;op=np+8|0}cp=0;H:{while(1){rp=o[op>>2];if(!rp){break H}rp=Vj(np+4|0,rp);sp=(rp|0)<0;if(!(sp|rp>>>0>pp-cp>>>0)){op=op+4|0;cp=cp+rp|0;if(pp>>>0>cp>>>0){continue}break H}break}up=-1;if(sp){break a}}Kj(a,32,tp,cp,qp);if(!cp){cp=0;break D}pp=0;op=o[np+64>>2];while(1){rp=o[op>>2];if(!rp){break D}rp=Vj(np+4|0,rp);pp=rp+pp|0;if((pp|0)>(cp|0)){break D}Hj(a,np+4|0,rp);op=op+4|0;if(pp>>>0<cp>>>0){continue}break}}Kj(a,32,tp,cp,qp^8192);cp=(tp|0)>(cp|0)?tp:cp;continue b}op=cp+1|0;o[np+76>>2]=op;qp=p[cp+1|0];cp=op;continue}break}switch(xp-1|0){case 21:break i;case 23:break k;case 22:break l;case 11:case 16:break m;case 10:break n;case 26:break o;case 8:case 12:case 13:case 14:break p;case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:case 9:case 15:case 17:case 18:case 19:case 20:case 24:case 25:case 27:case 29:case 30:break e;case 28:break h;default:break j}}up=vp;if(a){break a}if(!zp){break d}cp=1;while(1){a=o[(cp<<2)+mp>>2];if(a){Jj((cp<<3)+lp|0,a,dp);up=1;cp=cp+1|0;if((cp|0)!=10){continue}break a}break}up=1;if(cp>>>0>=10){break a}while(1){if(o[(cp<<2)+mp>>2]){break q}a=cp>>>0>8;cp=cp+1|0;if(!a){continue}break}break a}up=-1;break a}cp=l[269](a,t[np+64>>3],tp,pp,qp,cp)|0;continue}cp=o[np+64>>2];rp=cp?cp:11070;cp=$j(rp,pp);op=cp?cp:pp+rp|0;qp=sp;pp=cp?cp-rp|0:pp;break e}m[np+55|0]=o[np+64>>2];pp=1;rp=Bp;qp=sp;break e}sp=o[np+68>>2];cp=sp;rp=o[np+64>>2];if((cp|0)<-1?1:(cp|0)<=-1?rp>>>0>4294967295?0:1:0){cp=0-(cp+(0<rp>>>0)|0)|0;rp=0-rp|0;o[np+64>>2]=rp;o[np+68>>2]=cp;up=1;wp=11060;break g}if(qp&2048){up=1;wp=11061;break g}up=qp&1;wp=up?11062:11060;break g}rp=Lj(o[np+64>>2],o[np+68>>2],yp);if(!(qp&8)){break f}cp=yp-rp|0;pp=(pp|0)>(cp|0)?pp:cp+1|0;break f}pp=pp>>>0>8?pp:8;qp=qp|8;cp=120}rp=Mj(o[np+64>>2],o[np+68>>2],yp,cp&32);if(!(qp&8)|!(o[np+64>>2]|o[np+68>>2])){break f}wp=(cp>>>4)+11060|0;up=2;break f}cp=0;op=Ap&255;if(op>>>0>7){continue}I:{switch(op-1|0){default:o[o[np+64>>2]>>2]=vp;continue;case 0:o[o[np+64>>2]>>2]=vp;continue;case 1:op=o[np+64>>2];o[op>>2]=vp;o[op+4>>2]=vp>>31;continue;case 2:n[o[np+64>>2]>>1]=vp;continue;case 3:m[o[np+64>>2]]=vp;continue;case 5:o[o[np+64>>2]>>2]=vp;continue;case 4:continue;case 6:break I}}op=o[np+64>>2];o[op>>2]=vp;o[op+4>>2]=vp>>31;continue}rp=o[np+64>>2];cp=o[np+68>>2];wp=11060}rp=Nj(rp,cp,yp)}qp=(pp|0)>-1?qp&-65537:qp;cp=o[np+64>>2];sp=o[np+68>>2];J:{if(!(!!(cp|sp)|pp)){rp=yp;pp=0;break J}cp=!(cp|sp)+(yp-rp|0)|0;pp=(pp|0)>(cp|0)?pp:cp}}sp=op-rp|0;pp=(pp|0)<(sp|0)?sp:pp;op=pp+up|0;cp=(tp|0)<(op|0)?op:tp;Kj(a,32,cp,op,qp);Hj(a,wp,up);Kj(a,48,cp,op,qp^65536);Kj(a,48,pp,sp,0);Hj(a,rp,sp);Kj(a,32,cp,op,qp^8192);continue}break}up=0}R=np+80|0;return up}function Hj(a,o,cp){if(!(p[a|0]&32)){Ej(o,cp,a)}}function Ij(a){var cp=0,dp=0,lp=0;if(Uj(m[o[a>>2]])){while(1){cp=o[a>>2];lp=m[cp|0];o[a>>2]=cp+1;dp=(u(dp,10)+lp|0)+ -48|0;if(Uj(m[cp+1|0])){continue}break}}return dp}function Jj(a,mp,Cp){a:{b:{if(mp>>>0>20){break b}mp=mp+ -9|0;if(mp>>>0>9){break b}c:{switch(mp-1|0){default:mp=o[Cp>>2];o[Cp>>2]=mp+4;o[a>>2]=o[mp>>2];return;case 0:mp=o[Cp>>2];o[Cp>>2]=mp+4;mp=o[mp>>2];o[a>>2]=mp;o[a+4>>2]=mp>>31;return;case 1:mp=o[Cp>>2];o[Cp>>2]=mp+4;o[a>>2]=o[mp>>2];o[a+4>>2]=0;return;case 3:mp=o[Cp>>2];o[Cp>>2]=mp+4;mp=n[mp>>1];o[a>>2]=mp;o[a+4>>2]=mp>>31;return;case 4:mp=o[Cp>>2];o[Cp>>2]=mp+4;o[a>>2]=q[mp>>1];o[a+4>>2]=0;return;case 5:mp=o[Cp>>2];o[Cp>>2]=mp+4;mp=m[mp|0];o[a>>2]=mp;o[a+4>>2]=mp>>31;return;case 6:mp=o[Cp>>2];o[Cp>>2]=mp+4;o[a>>2]=p[mp|0];o[a+4>>2]=0;return;case 2:case 7:break a;case 8:break c}}l[270](a,Cp)}return}mp=o[Cp>>2]+7&-8;o[Cp>>2]=mp+8;Cp=o[mp+4>>2];o[a>>2]=o[mp>>2];o[a+4>>2]=Cp}function Kj(a,o,mp,Cp,Dp){var Ep=0,Fp=0,Gp=0;Ep=R-256|0;R=Ep;if(!(Dp&73728|(mp|0)<=(Cp|0))){Dp=mp-Cp|0;Fp=Dp>>>0<256;xl(Ep,o,Fp?Dp:256);o=a;Gp=Ep;if(!Fp){mp=mp-Cp|0;while(1){Hj(a,Ep,256);Dp=Dp+ -256|0;if(Dp>>>0>255){continue}break}Dp=mp&255}Hj(o,Gp,Dp)}R=Ep+256|0}function Lj(a,o,mp){if(a|o){while(1){mp=mp+ -1|0;m[mp|0]=a&7|48;a=(o&7)<<29|a>>>3;o=o>>>3;if(a|o){continue}break}}return mp}function Mj(a,o,mp,Cp){if(a|o){while(1){mp=mp+ -1|0;m[mp|0]=p[(a&15)+11552|0]|Cp;a=(o&15)<<28|a>>>4;o=o>>>4;if(a|o){continue}break}}return mp}function Nj(a,o,mp){var Cp=0,Dp=0,Hp=0;a:{if((o|0)==1&a>>>0<0|o>>>0<1){Cp=a;break a}while(1){Cp=Xl(a,o,10,0);Dp=T;Hp=Dp;Dp=Vl(Cp,Dp,10,0);mp=mp+ -1|0;m[mp|0]=a-Dp|48;Dp=(o|0)==9&a>>>0>4294967295|o>>>0>9;a=Cp;o=Hp;if(Dp){continue}break}}if(Cp){while(1){mp=mp+ -1|0;a=(Cp>>>0)/10|0;m[mp|0]=Cp-u(a,10)|48;o=Cp>>>0>9;Cp=a;if(o){continue}break}}return mp}function Oj(a,o,mp){return Fj(a,o,mp)}function Pj(a,mp,Ip,Jp,Kp,Lp){a=a|0;mp=+mp;Ip=Ip|0;Jp=Jp|0;Kp=Kp|0;Lp=Lp|0;var Mp=0,Np=0,Op=0,Pp=0,Qp=0,Rp=0,Sp=0,Tp=0,Up=0,Vp=0,Wp=0,Xp=0,Yp=0,Zp=0,_p=0,$p=0,aq=0,bq=0,cq=0,dq=0,eq=0,fq=0,gq=0,hq=0,iq=0;Qp=R-560|0;R=Qp;o[Qp+44>>2]=0;h(+mp);Mp=e(1)|0;a:{if(dq=1,eq=(gq=e(0)>>>0>4294967295?0:1,hq=0,iq=(Mp|0)<=-1,iq?gq:hq),fq=(Mp|0)<-1,fq?dq:eq){mp=-mp;h(+mp);Mp=e(1)|0;e(0)|0;_p=1;$p=11568;break a}if(Kp&2048){_p=1;$p=11571;break a}_p=Kp&1;$p=_p?11574:11569}b:{if((Mp&2146435072)==2146435072){Sp=_p+3|0;Kj(a,32,Ip,Sp,Kp&-65537);Hj(a,$p,_p);Jp=Lp>>>5&1;Hj(a,mp!=mp?Jp?11595:11599:Jp?11587:11591,3);break b}mp=Xj(mp,Qp+44|0);mp=mp+mp;if(mp!=0){o[Qp+44>>2]=o[Qp+44>>2]+ -1}Xp=Qp+16|0;aq=Lp|32;if((aq|0)==97){Rp=Lp&32;Np=Rp?$p+9|0:$p;c:{if(Jp>>>0>11){break c}Mp=12-Jp|0;if(!Mp){break c}Yp=8;while(1){Yp=Yp*16;Mp=Mp+ -1|0;if(Mp){continue}break}if(p[Np|0]==45){mp=-(Yp+(-mp-Yp));break c}mp=mp+Yp-Yp}Pp=o[Qp+44>>2];Mp=Pp>>31;Mp=Nj(Mp^Mp+Pp,0,Xp);if((Xp|0)==(Mp|0)){m[Qp+15|0]=48;Mp=Qp+15|0}Pp=_p|2;Op=o[Qp+44>>2];Up=Mp+ -2|0;m[Up|0]=Lp+15;m[Mp+ -1|0]=(Op|0)<0?45:43;$p=Kp&8;Op=Qp+16|0;while(1){Lp=Op;Sp=Rp;if(w(mp)<2147483648){Mp=~~mp}else{Mp=-2147483648}m[Op|0]=Sp|p[Mp+11552|0];mp=(mp- +(Mp|0))*16;Op=Lp+1|0;if(!((Op-(Qp+16|0)|0)!=1|(mp==0?!((Jp|0)>0|$p):0))){m[Lp+1|0]=46;Op=Lp+2|0}if(mp!=0){continue}break}Lp=a;Mp=Ip;if(!Jp|((Op-Qp|0)+ -18|0)>=(Jp|0)){Rp=((Xp-(Qp+16|0)|0)-Up|0)+Op|0}else{Rp=((Jp+Xp|0)-Up|0)+2|0}Jp=Rp;Sp=Jp+Pp|0;Kj(Lp,32,Mp,Sp,Kp);Hj(a,Np,Pp);Kj(a,48,Ip,Sp,Kp^65536);Lp=Op-(Qp+16|0)|0;Hj(a,Qp+16|0,Lp);Jp=Xp-Up|0;Kj(a,48,Rp-(Jp+Lp|0)|0,0,0);Hj(a,Up,Jp);break b}Mp=(Jp|0)<0;d:{if(mp==0){Np=o[Qp+44>>2];break d}Np=o[Qp+44>>2]+ -28|0;o[Qp+44>>2]=Np;mp=mp*268435456}Rp=Mp?6:Jp;Up=(Np|0)<0?Qp+48|0:Qp+336|0;Pp=Up;while(1){Jp=Pp;if(mp<4294967296&mp>=0){Mp=~~mp>>>0}else{Mp=0}o[Jp>>2]=Mp;Pp=Pp+4|0;mp=(mp- +(Mp>>>0))*1e9;if(mp!=0){continue}break}e:{if((Np|0)<1){Mp=Pp;Op=Up;break e}Op=Up;while(1){Tp=(Np|0)<29?Np:29;Mp=Pp+ -4|0;f:{if(Mp>>>0<Op>>>0){break f}Jp=Tp;Np=0;while(1){Sp=Mp;bq=Np;Wp=o[Mp>>2];Vp=Jp&31;if(32<=(Jp&63)>>>0){Np=Wp<<Vp;Wp=0}else{Np=(1<<Vp)-1&Wp>>>32-Vp;Wp=Wp<<Vp}Vp=bq+Wp|0;Np=Np+cq|0;Np=Vp>>>0<Wp>>>0?Np+1|0:Np;Np=Xl(Vp,Np,1e9,0);Wp=Sp;Sp=Vl(Np,T,1e9,0);o[Wp>>2]=Vp-Sp;Mp=Mp+ -4|0;if(Mp>>>0>=Op>>>0){continue}break}if(!Np){break f}Op=Op+ -4|0;o[Op>>2]=Np}while(1){Mp=Pp;if(Mp>>>0>Op>>>0){Pp=Mp+ -4|0;if(!o[Pp>>2]){continue}}break}Np=o[Qp+44>>2]-Tp|0;o[Qp+44>>2]=Np;Pp=Mp;if((Np|0)>0){continue}break}}if((Np|0)<=-1){Zp=((Rp+25|0)/9|0)+1|0;Tp=(aq|0)==102;while(1){Jp=(Np|0)<-9?9:0-Np|0;g:{if(Op>>>0>=Mp>>>0){Op=o[Op>>2]?Op:Op+4|0;break g}Sp=1e9>>>Jp;Vp=-1<<Jp^-1;Np=0;Pp=Op;while(1){Wp=Np;Np=o[Pp>>2];o[Pp>>2]=Wp+(Np>>>Jp);Np=u(Sp,Np&Vp);Pp=Pp+4|0;if(Pp>>>0<Mp>>>0){continue}break}Op=o[Op>>2]?Op:Op+4|0;if(!Np){break g}o[Mp>>2]=Np;Mp=Mp+4|0}Np=Jp+o[Qp+44>>2]|0;o[Qp+44>>2]=Np;Jp=Tp?Up:Op;Mp=Mp-Jp>>2>(Zp|0)?Jp+(Zp<<2)|0:Mp;if((Np|0)<0){continue}break}}Pp=0;h:{if(Op>>>0>=Mp>>>0){break h}Pp=u(Up-Op>>2,9);Np=10;Jp=o[Op>>2];if(Jp>>>0<10){break h}while(1){Pp=Pp+1|0;Np=u(Np,10);if(Jp>>>0>=Np>>>0){continue}break}}Jp=(Rp-((aq|0)==102?0:Pp)|0)-((aq|0)==103&(Rp|0)!=0)|0;if((Jp|0)<(u(Mp-Up>>2,9)+ -9|0)){Np=Jp+9216|0;Sp=(Np|0)/9|0;Tp=(Up+(Sp<<2)|0)+ -4092|0;Jp=10;Np=Np-u(Sp,9)|0;if((Np|0)<=7){while(1){Jp=u(Jp,10);Sp=(Np|0)<7;Np=Np+1|0;if(Sp){continue}break}}Sp=o[Tp>>2];Vp=(Sp>>>0)/(Jp>>>0)|0;Zp=Tp+4|0;Np=Sp-u(Jp,Vp)|0;i:{if(Np?0:(Zp|0)==(Mp|0)){break i}Wp=Jp>>>1;Yp=Np>>>0<Wp>>>0?.5:(Mp|0)==(Zp|0)?(Wp|0)==(Np|0)?1:1.5:1.5;mp=Vp&1?9007199254740994:9007199254740992;if(!(!_p|p[$p|0]!=45)){Yp=-Yp;mp=-mp}Np=Sp-Np|0;o[Tp>>2]=Np;if(mp+Yp==mp){break i}Jp=Jp+Np|0;o[Tp>>2]=Jp;if(Jp>>>0>=1e9){while(1){o[Tp>>2]=0;Tp=Tp+ -4|0;if(Tp>>>0<Op>>>0){Op=Op+ -4|0;o[Op>>2]=0}Jp=o[Tp>>2]+1|0;o[Tp>>2]=Jp;if(Jp>>>0>999999999){continue}break}}Pp=u(Up-Op>>2,9);Np=10;Jp=o[Op>>2];if(Jp>>>0<10){break i}while(1){Pp=Pp+1|0;Np=u(Np,10);if(Jp>>>0>=Np>>>0){continue}break}}Jp=Tp+4|0;Mp=Mp>>>0>Jp>>>0?Jp:Mp}j:{while(1){Np=Mp;Tp=0;if(Mp>>>0<=Op>>>0){break j}Mp=Np+ -4|0;if(!o[Mp>>2]){continue}break}Tp=1}k:{if((aq|0)!=103){Vp=Kp&8;break k}Jp=Rp?Rp:1;Mp=(Jp|0)>(Pp|0)&(Pp|0)>-5;Rp=(Mp?Pp^-1:-1)+Jp|0;Lp=(Mp?-1:-2)+Lp|0;Vp=Kp&8;if(Vp){break k}Mp=9;l:{if(!Tp){break l}Sp=o[Np+ -4>>2];if(!Sp){break l}Jp=10;Mp=0;if((Sp>>>0)%10){break l}while(1){Mp=Mp+1|0;Jp=u(Jp,10);if(!((Sp>>>0)%(Jp>>>0))){continue}break}}Jp=u(Np-Up>>2,9)+ -9|0;if((Lp|32)==102){Vp=0;Jp=Jp-Mp|0;Jp=(Jp|0)>0?Jp:0;Rp=(Rp|0)<(Jp|0)?Rp:Jp;break k}Vp=0;Jp=(Jp+Pp|0)-Mp|0;Jp=(Jp|0)>0?Jp:0;Rp=(Rp|0)<(Jp|0)?Rp:Jp}aq=Rp|Vp;Wp=(aq|0)!=0;Jp=a;bq=Ip;cq=Lp|32;Mp=(Pp|0)>0?Pp:0;m:{if((cq|0)==102){break m}Mp=Pp>>31;Mp=Nj(Mp+Pp^Mp,0,Xp);if((Xp-Mp|0)<=1){while(1){Mp=Mp+ -1|0;m[Mp|0]=48;if((Xp-Mp|0)<2){continue}break}}Zp=Mp+ -2|0;m[Zp|0]=Lp;m[Mp+ -1|0]=(Pp|0)<0?45:43;Mp=Xp-Zp|0}Sp=(Mp+(Wp+(Rp+_p|0)|0)|0)+1|0;Kj(Jp,32,bq,Sp,Kp);Hj(a,$p,_p);Kj(a,48,Ip,Sp,Kp^65536);n:{o:{p:{if((cq|0)==102){Jp=Qp+16|8;Lp=Qp+16|9;Pp=Op>>>0>Up>>>0?Up:Op;Op=Pp;while(1){Mp=Nj(o[Op>>2],0,Lp);q:{if((Op|0)!=(Pp|0)){if(Mp>>>0<=Qp+16>>>0){break q}while(1){Mp=Mp+ -1|0;m[Mp|0]=48;if(Mp>>>0>Qp+16>>>0){continue}break}break q}if((Lp|0)!=(Mp|0)){break q}m[Qp+24|0]=48;Mp=Jp}Hj(a,Mp,Lp-Mp|0);Op=Op+4|0;if(Op>>>0<=Up>>>0){continue}break}if(aq){Hj(a,11603,1)}if((Rp|0)<1|Op>>>0>=Np>>>0){break p}while(1){Mp=Nj(o[Op>>2],0,Lp);if(Mp>>>0>Qp+16>>>0){while(1){Mp=Mp+ -1|0;m[Mp|0]=48;if(Mp>>>0>Qp+16>>>0){continue}break}}Hj(a,Mp,(Rp|0)<9?Rp:9);Mp=Rp+ -9|0;Op=Op+4|0;if(Op>>>0>=Np>>>0){break o}Jp=(Rp|0)>9;Rp=Mp;if(Jp){continue}break}break o}r:{if((Rp|0)<0){break r}Up=Tp?Np:Op+4|0;Jp=Qp+16|8;Lp=Qp+16|9;Pp=Op;while(1){Mp=Nj(o[Pp>>2],0,Lp);if((Lp|0)==(Mp|0)){m[Qp+24|0]=48;Mp=Jp}s:{if((Op|0)!=(Pp|0)){if(Mp>>>0<=Qp+16>>>0){break s}while(1){Mp=Mp+ -1|0;m[Mp|0]=48;if(Mp>>>0>Qp+16>>>0){continue}break}break s}Hj(a,Mp,1);Mp=Mp+1|0;if((Rp|0)<1?!Vp:0){break s}Hj(a,11603,1)}Np=Mp;Mp=Lp-Mp|0;Hj(a,Np,(Rp|0)>(Mp|0)?Mp:Rp);Rp=Rp-Mp|0;Pp=Pp+4|0;if(Pp>>>0>=Up>>>0){break r}if((Rp|0)>-1){continue}break}}Kj(a,48,Rp+18|0,18,0);Hj(a,Zp,Xp-Zp|0);break n}Mp=Rp}Kj(a,48,Mp+9|0,9,0)}}Kj(a,32,Ip,Sp,Kp^8192);R=Qp+560|0;return((Sp|0)<(Ip|0)?Ip:Sp)|0}function Qj(a,mp){a=a|0;mp=mp|0;var Ip=0,Jp=0,Kp=0;Ip=mp;mp=o[mp>>2]+15&-16;o[Ip>>2]=mp+16;Jp=a,Kp=dk(o[mp>>2],o[mp+4>>2],o[mp+8>>2],o[mp+12>>2]),t[Jp>>3]=Kp}function Rj(a,mp,Lp){a=a|0;mp=mp|0;Lp=Lp|0;var jq=0,kq=0,lq=0,mq=0,nq=0,oq=0;jq=R-32|0;R=jq;kq=o[a+28>>2];o[jq+16>>2]=kq;lq=o[a+20>>2];o[jq+28>>2]=Lp;o[jq+24>>2]=mp;mp=lq-kq|0;o[jq+20>>2]=mp;lq=mp+Lp|0;nq=2;mp=jq+16|0;while(1){a:{b:{if(ak(I(o[a+60>>2],mp|0,nq|0,jq+12|0)|0)){o[jq+12>>2]=-1;kq=-1;break b}kq=o[jq+12>>2]}c:{if((kq|0)==(lq|0)){mp=o[a+44>>2];o[a+28>>2]=mp;o[a+20>>2]=mp;o[a+16>>2]=mp+o[a+48>>2];a=Lp;break c}if((kq|0)>-1){break a}o[a+28>>2]=0;o[a+16>>2]=0;o[a+20>>2]=0;o[a>>2]=o[a>>2]|32;a=0;if((nq|0)==2){break c}a=Lp-o[mp+4>>2]|0}R=jq+32|0;return a|0}mq=o[mp+4>>2];oq=kq>>>0>mq>>>0;mp=oq?mp+8|0:mp;mq=kq-(oq?mq:0)|0;o[mp>>2]=mq+o[mp>>2];o[mp+4>>2]=o[mp+4>>2]-mq;lq=lq-kq|0;nq=nq-oq|0;continue}}function Sj(a,mp,Lp,pq){a=a|0;mp=mp|0;Lp=Lp|0;pq=pq|0;var qq=0;qq=R-16|0;R=qq;a:{if(!ak(Q(o[a+60>>2],mp|0,Lp|0,pq&255,qq+8|0)|0)){mp=o[qq+12>>2];a=o[qq+8>>2];break a}o[qq+8>>2]=-1;o[qq+12>>2]=-1;mp=-1;a=-1}R=qq+16|0;T=mp;return a|0}function Tj(a){a=a|0;return J(o[a+60>>2])|0}function Uj(a){return a+ -48>>>0<10}function Vj(a,o){if(!a){return 0}return Wj(a,o)}function Wj(a,mp){a:{if(a){if(mp>>>0<=127){break a}b:{if(!o[o[3253]>>2]){if((mp&-128)==57216){break a}break b}if(mp>>>0<=2047){m[a+1|0]=mp&63|128;m[a|0]=mp>>>6|192;return 2}if(!((mp&-8192)!=57344?mp>>>0>=55296:0)){m[a+2|0]=mp&63|128;m[a|0]=mp>>>12|224;m[a+1|0]=mp>>>6&63|128;return 3}if(mp+ -65536>>>0<=1048575){m[a+3|0]=mp&63|128;m[a|0]=mp>>>18|240;m[a+2|0]=mp>>>6&63|128;m[a+1|0]=mp>>>12&63|128;return 4}}o[3269]=25;a=-1}else{a=1}return a}m[a|0]=mp;return 1}function Xj(a,mp){var Lp=0,pq=0,rq=0;h(+a);Lp=e(1)|0;pq=e(0)|0;rq=Lp;Lp=Lp>>>20&2047;if((Lp|0)!=2047){if(!Lp){Lp=mp;if(a==0){mp=0}else{a=Xj(a*0x10000000000000000,mp);mp=o[mp>>2]+ -64|0}o[Lp>>2]=mp;return a}o[mp>>2]=Lp+ -1022;f(0,pq|0);f(1,rq&-2146435073|1071644672);a=+g()}return a}function Yj(a){var o=0,mp=0,sq=0,tq=0,uq=0,vq=0;while(1){o=a;a=o+1|0;mp=m[o|0];if((mp|0)==32|mp+ -9>>>0<5){continue}break}mp=m[o|0];tq=mp+ -43|0;a:{if(tq>>>0>2){break a}b:{switch(tq-1|0){case 1:uq=1;break;case 0:break a;default:break b}}mp=m[a|0];o=a;vq=uq}if(Uj(mp)){while(1){sq=(u(sq,10)-m[o|0]|0)+48|0;a=m[o+1|0];o=o+1|0;if(Uj(a)){continue}break}}return vq?sq:0-sq|0}function Zj(a,wq,xq){var yq=0,zq=0,Aq=0;a:{if(!xq){break a}while(1){yq=p[a|0];zq=p[wq|0];if((yq|0)==(zq|0)){wq=wq+1|0;a=a+1|0;xq=xq+ -1|0;if(xq){continue}break a}break}Aq=yq-zq|0}return Aq}function _j(a){var wq=0,xq=0,Bq=0;a:{b:{wq=a;if(!(wq&3)){break b}if(!p[a|0]){break a}while(1){wq=wq+1|0;if(!(wq&3)){break b}if(p[wq|0]){continue}break}break a}while(1){xq=wq;wq=wq+4|0;Bq=o[xq>>2];if(!((Bq^-1)&Bq+ -16843009&-2139062144)){continue}break}if(!(Bq&255)){wq=xq;break a}while(1){Bq=p[xq+1|0];wq=xq+1|0;xq=wq;if(Bq){continue}break}}return wq-a|0}function $j(a,Cq){var Dq=0,Eq=0,Fq=0;Dq=(Cq|0)!=0;a:{b:{c:{d:{if(!Cq|!(a&3)){break d}while(1){if(!p[a|0]){break c}a=a+1|0;Cq=Cq+ -1|0;Dq=(Cq|0)!=0;if(!Cq){break d}if(a&3){continue}break}}if(!Dq){break b}}if(!p[a|0]){break a}e:{if(Cq>>>0>=4){Dq=Cq+ -4|0;Eq=Dq&-4;Dq=Dq-Eq|0;Eq=(a+Eq|0)+4|0;while(1){Fq=o[a>>2];if((Fq^-1)&Fq+ -16843009&-2139062144){break e}a=a+4|0;Cq=Cq+ -4|0;if(Cq>>>0>3){continue}break}Cq=Dq;a=Eq}if(!Cq){break b}}while(1){if(!p[a|0]){break a}a=a+1|0;Cq=Cq+ -1|0;if(Cq){continue}break}}return 0}return a}function ak(a){if(!a){return 0}o[3269]=a;return-1}function bk(a,Cq,Gq,Hq,Iq,Jq){var Kq=0,Lq=0,Mq=0,Nq=0;a:{if(Jq&64){Hq=Cq;Iq=Jq+ -64|0;Cq=Iq&31;if(32<=(Iq&63)>>>0){Iq=Hq<<Cq;Hq=0}else{Iq=(1<<Cq)-1&Hq>>>32-Cq|Gq<<Cq;Hq=Hq<<Cq}Cq=0;Gq=0;break a}if(!Jq){break a}Kq=Hq;Mq=Jq;Hq=Jq&31;if(32<=(Jq&63)>>>0){Lq=Kq<<Hq;Nq=0}else{Lq=(1<<Hq)-1&Kq>>>32-Hq|Iq<<Hq;Nq=Kq<<Hq}Hq=Gq;Kq=Cq;Jq=64-Jq|0;Iq=Jq&31;if(32<=(Jq&63)>>>0){Jq=0;Hq=Hq>>>Iq}else{Jq=Hq>>>Iq;Hq=((1<<Iq)-1&Hq)<<32-Iq|Kq>>>Iq}Hq=Nq|Hq;Iq=Jq|Lq;Jq=Cq;Cq=Mq&31;if(32<=(Mq&63)>>>0){Lq=Jq<<Cq;Cq=0}else{Lq=(1<<Cq)-1&Jq>>>32-Cq|Gq<<Cq;Cq=Jq<<Cq}Gq=Lq}o[a>>2]=Cq;o[a+4>>2]=Gq;o[a+8>>2]=Hq;o[a+12>>2]=Iq}function ck(a,Cq,Gq,Hq,Iq,Jq){var Oq=0,Pq=0,Qq=0,Rq=0;a:{b:{if(Jq&64){Gq=Jq+ -64|0;Cq=Gq&31;if(32<=(Gq&63)>>>0){Gq=0;Cq=Iq>>>Cq}else{Gq=Iq>>>Cq;Cq=((1<<Cq)-1&Iq)<<32-Cq|Hq>>>Cq}Hq=0;Iq=0;break b}if(!Jq){break a}Pq=Iq;Qq=Hq;Rq=64-Jq|0;Oq=Rq&31;if(32<=(Rq&63)>>>0){Pq=Qq<<Oq;Rq=0}else{Pq=(1<<Oq)-1&Qq>>>32-Oq|Pq<<Oq;Rq=Qq<<Oq}Qq=Cq;Oq=Jq;Cq=Oq&31;if(32<=(Oq&63)>>>0){Oq=0;Cq=Gq>>>Cq}else{Oq=Gq>>>Cq;Cq=((1<<Cq)-1&Gq)<<32-Cq|Qq>>>Cq}Cq=Rq|Cq;Gq=Oq|Pq;Oq=Hq;Hq=Jq&31;if(32<=(Jq&63)>>>0){Pq=0;Hq=Iq>>>Hq}else{Pq=Iq>>>Hq;Hq=((1<<Hq)-1&Iq)<<32-Hq|Oq>>>Hq}Iq=Pq}}o[a>>2]=Cq;o[a+4>>2]=Gq;o[a+8>>2]=Hq;o[a+12>>2]=Iq}function dk(a,Cq,Gq,Hq){var Iq=0,Jq=0,Sq=0,Tq=0,Uq=0,Vq=0,Wq=0;Sq=R-32|0;R=Sq;Iq=Hq&2147483647;Uq=Iq;Iq=Iq+ -1006698496|0;Tq=Gq;Jq=Gq;if(Gq>>>0<0){Iq=Iq+1|0}Vq=Jq;Jq=Iq;Iq=Uq+ -1140785152|0;Wq=Tq;if(Tq>>>0<0){Iq=Iq+1|0}a:{if((Iq|0)==(Jq|0)&Vq>>>0<Wq>>>0|Jq>>>0<Iq>>>0){Iq=Hq<<4|Gq>>>28;Gq=Gq<<4|Cq>>>28;Cq=Cq&268435455;Tq=Cq;if((Cq|0)==134217728&a>>>0>=1|Cq>>>0>134217728){Iq=Iq+1073741824|0;a=Gq+1|0;if(a>>>0<1){Iq=Iq+1|0}Jq=a;break a}Jq=Gq;Iq=Iq-((Gq>>>0<0)+ -1073741824|0)|0;if(a|Tq^134217728){break a}a=Jq+(Jq&1)|0;if(a>>>0<Jq>>>0){Iq=Iq+1|0}Jq=a;break a}if(!(!Tq&(Uq|0)==2147418112?!(a|Cq):(Uq|0)==2147418112&Tq>>>0<0|Uq>>>0<2147418112)){Iq=Hq<<4|Gq>>>28;Jq=Gq<<4|Cq>>>28;Iq=Iq&524287|2146959360;break a}Jq=0;Iq=2146435072;if((Uq|0)==1140785151&Tq>>>0>4294967295|Uq>>>0>1140785151){break a}Iq=0;Tq=Uq>>>16;if(Tq>>>0<15249){break a}Iq=Hq&65535|65536;ck(Sq,a,Cq,Gq,Iq,15361-Tq|0);bk(Sq+16|0,a,Cq,Gq,Iq,Tq+ -15233|0);Gq=o[Sq+4>>2];a=o[Sq+8>>2];Iq=o[Sq+12>>2]<<4|a>>>28;Jq=a<<4|Gq>>>28;a=Gq&268435455;Gq=a;Cq=o[Sq>>2]|((o[Sq+16>>2]|o[Sq+24>>2])!=0|(o[Sq+20>>2]|o[Sq+28>>2])!=0);if((a|0)==134217728&Cq>>>0>=1|a>>>0>134217728){a=Jq+1|0;if(a>>>0<1){Iq=Iq+1|0}Jq=a;break a}if(Cq|Gq^134217728){break a}a=Jq+(Jq&1)|0;if(a>>>0<Jq>>>0){Iq=Iq+1|0}Jq=a}R=Sq+32|0;f(0,Jq|0);f(1,Hq&-2147483648|Iq);return+g()}function ek(a){var Cq=0,Gq=0,Hq=0,Xq=0,Yq=0,Zq=0,_q=0,$q=0;Xq=R-16|0;R=Xq;o[Xq+12>>2]=a;a:{if(a>>>0<=211){a=o[fk(11616,11808,Xq+12|0)>>2];break a}Yq=(a>>>0)/210|0;Hq=u(Yq,210);o[Xq+8>>2]=a-Hq;Zq=fk(11808,12e3,Xq+8|0)-11808>>2;b:{while(1){a=o[(Zq<<2)+11808>>2]+Hq|0;Hq=5;c:{d:{e:{while(1){if((Hq|0)==47){break e}Cq=o[(Hq<<2)+11616>>2];Gq=(a>>>0)/(Cq>>>0)|0;_q=Gq>>>0<Cq>>>0;$q=_q?a:$q;Hq=Hq+1|0;Cq=_q?1:(u(Cq,Gq)|0)==(a|0)?7:0;if(!Cq){continue}break}Hq=Cq+ -4|0;if(Hq>>>0>3){break b}switch(Hq-1|0){case 0:case 1:break b;case 2:break d;default:break e}}Hq=211;while(1){Cq=(a>>>0)/(Hq>>>0)|0;if(Cq>>>0<Hq>>>0){break c}if((u(Cq,Hq)|0)==(a|0)){break d}Cq=Hq+10|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+12|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+16|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+18|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+22|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+28|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+30|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+36|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+40|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+42|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+46|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+52|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+58|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+60|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+66|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+70|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+72|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+78|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+82|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+88|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+96|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+100|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+102|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+106|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+108|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+112|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+120|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+126|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+130|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+136|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+138|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+142|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+148|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+150|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+156|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+162|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+166|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+168|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+172|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+178|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+180|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+186|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+190|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+192|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+196|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+198|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}if((u(Cq,Gq)|0)==(a|0)){break d}Cq=Hq+208|0;Gq=(a>>>0)/(Cq>>>0)|0;if(Gq>>>0<Cq>>>0){break c}Hq=Hq+210|0;if((u(Cq,Gq)|0)!=(a|0)){continue}break}}Hq=Zq+1|0;a=(Hq|0)==48;Zq=a?0:Hq;Yq=a+Yq|0;Hq=u(Yq,210);continue}break}o[Xq+12>>2]=a;break a}o[Xq+12>>2]=a;a=$q}R=Xq+16|0;return a}function fk(a,ar,br){return gk(a,ar,br)}function gk(a,ar,br){var cr=0;cr=R-16|0;R=cr;a=hk(a,ar,br);R=cr+16|0;return a}function hk(a,ar,br){var dr=0,er=0,fr=0,gr=0;dr=R-16|0;R=dr;ar=ar-a>>2;while(1){if(ar){o[dr+12>>2]=a;er=dr+12|0;fr=er;gr=o[er>>2];er=ar>>>1;o[fr>>2]=gr+(er<<2);if(ik(o[dr+12>>2],br)){a=o[dr+12>>2]+4|0;o[dr+12>>2]=a;ar=(er^-1)+ar|0}else{ar=er}continue}break}R=dr+16|0;return a}function ik(a,ar){return r[a>>2]<r[ar>>2]}function jk(a,ar,br){if(br){wl(a,ar,br)}}function kk(a,ar){return lk(a,ar)}function lk(a,ar){var br=0,hr=0;br=R-16|0;R=br;hr=ik(a,ar);R=br+16|0;return hr?ar:a}function mk(a){o[a>>2]=0;o[a+4>>2]=0;o[a+8>>2]=0}function nk(a,ar){var ir=0,jr=0;ir=p[a|0];jr=p[ar|0];a:{if(!ir|(ir|0)!=(jr|0)){break a}while(1){jr=p[ar+1|0];ir=p[a+1|0];if(!ir){break a}ar=ar+1|0;a=a+1|0;if((ir|0)==(jr|0)){continue}break}}return ir-jr|0}function ok(){var a=0,ar=0,kr=0;a=R-16|0;R=a;a:{if(K(a+12|0,a+8|0)){break a}ar=tl((o[a+12>>2]<<2)+4|0);o[3286]=ar;if(!ar){break a}b:{ar=tl(o[a+8>>2]);if(ar){kr=o[3286];if(kr){break b}}o[3286]=0;break a}o[(o[a+12>>2]<<2)+kr>>2]=0;if(!L(o[3286],ar|0)){break a}o[3286]=0}R=a+16|0}function pk(lr,mr,nr){var or=0,pr=0;or=R-160|0;R=or;wl(or+8|0,12e3,144);a:{b:{if(mr+ -1>>>0>=2147483647){if(mr){break b}mr=1;lr=or+159|0}o[or+52>>2]=lr;o[or+28>>2]=lr;pr=-2-lr|0;mr=mr>>>0>pr>>>0?pr:mr;o[or+56>>2]=mr;lr=lr+mr|0;o[or+36>>2]=lr;o[or+24>>2]=lr;lr=Oj(or+8|0,12225,nr);if(!mr){break a}mr=o[or+28>>2];m[mr-((mr|0)==o[or+24>>2])|0]=0;break a}o[3269]=61;lr=-1}R=or+160|0;return lr}function qk(lr,mr,nr){lr=lr|0;mr=mr|0;nr=nr|0;var qr=0,rr=0;rr=o[lr+20>>2];qr=o[lr+16>>2]-rr|0;qr=qr>>>0>nr>>>0?nr:qr;wl(rr,mr,qr);o[lr+20>>2]=qr+o[lr+20>>2];return nr|0}function rk(lr,mr,nr){var sr=0;sr=R-16|0;R=sr;o[sr+12>>2]=nr;lr=pk(lr,mr,nr);R=sr+16|0;return lr}function sk(lr){if(wk(lr)){return o[lr+4>>2]}return p[lr+11|0]}function tk(lr){if(wk(lr)){lr=xk(lr)+ -1|0}else{lr=10}return lr}function uk(lr,mr){Rk(lr,mr)}function vk(lr){var mr=0;mr=lr;lr=0;while(1){if((lr|0)!=3){o[(lr<<2)+mr>>2]=0;lr=lr+1|0;continue}break}}function wk(lr){return m[lr+11|0]<0}function xk(lr){return o[lr+8>>2]&2147483647}function yk(lr){if(wk(lr)){return o[lr>>2]}return lr}function zk(lr,nr){m[lr|0]=p[nr|0]}function Ak(lr,nr){o[lr+4>>2]=nr}function Bk(lr,nr){m[lr+11|0]=nr}function Ck(lr){var nr=0;if(lr>>>0>=11){nr=lr+16&-16;lr=nr+ -1|0;lr=(lr|0)==11?nr:lr}else{lr=10}return lr}function Dk(lr){if(4294967295<lr>>>0){_a(12144);D()}return Hk(lr)}function Ek(lr,tr){o[lr>>2]=tr}function Fk(lr,tr){o[lr+8>>2]=tr|-2147483648}function Gk(lr,tr){if(wk(lr)){Ak(lr,tr);return}Bk(lr,tr)}function Hk(lr){var tr=0,ur=0;lr=lr?lr:1;while(1){a:{tr=tl(lr);if(tr){break a}ur=o[3287];if(!ur){break a}l[ur]();continue}break}return tr}function Ik(lr,vr){var wr=0,xr=0,yr=0,zr=0;wr=_j(vr);xr=Hk(wr+13|0);o[xr+8>>2]=0;o[xr+4>>2]=wr;o[xr>>2]=wr;yr=lr,zr=wl(xr+12|0,vr,wr+1|0),o[yr>>2]=zr}function Jk(lr){var vr=0,Ar=0,Br=0;vr=R-16|0;R=vr;m[vr+15|0]=10;Ar=o[lr+16>>2];a:{if(!Ar){if(Dj(lr)){break a}Ar=o[lr+16>>2]}Br=o[lr+20>>2];if(!(m[lr+75|0]==10|Br>>>0>=Ar>>>0)){o[lr+20>>2]=Br+1;m[Br|0]=10;break a}if((l[o[lr+36>>2]](lr,vr+15|0,1)|0)!=1){break a}}R=vr+16|0}function Kk(){_a(12212);D()}function Lk(){M();D()}function Mk(lr,Cr){var Dr=0,Er=0,Fr=0;Er=R-16|0;R=Er;mk(lr);Dr=lr;a:{if(!wk(Cr)){o[Dr+8>>2]=o[Cr+8>>2];Fr=o[Cr+4>>2];o[Dr>>2]=o[Cr>>2];o[Dr+4>>2]=Fr;break a}Nk(lr,o[Cr>>2],o[Cr+4>>2])}R=Er+16|0;return lr}function Nk(lr,Cr,Gr){var Hr=0,Ir=0,Jr=0;Hr=R-16|0;R=Hr;if(4294967279>=Gr>>>0){a:{if(Gr>>>0<=10){Bk(lr,Gr);Ir=lr;break a}Jr=Ck(Gr)+1|0;Ir=Dk(Jr);Ek(lr,Ir);Fk(lr,Jr);Ak(lr,Gr)}jk(Ir,Cr,Gr);m[Hr+15|0]=0;zk(Gr+Ir|0,Hr+15|0);R=Hr+16|0;return}Kk();D()}function Ok(lr,Cr){if((lr|0)!=(Cr|0)){Pk(lr,yk(Cr),sk(Cr))}}function Pk(lr,Cr,Gr){var Kr=0,Lr=0,Mr=0,Nr=0;Lr=R-16|0;R=Lr;Kr=tk(lr);a:{if(Kr>>>0>=Gr>>>0){Mr=yk(lr);Nr=Mr;Kr=Gr;if(Gr){yl(Nr,Cr,Kr)}m[Lr+15|0]=0;zk(Gr+Mr|0,Lr+15|0);Gk(lr,Gr);break a}Mr=lr;lr=sk(lr);Qk(Mr,Kr,Gr-Kr|0,lr,lr,Gr,Cr)}R=Lr+16|0}function Qk(lr,Cr,Gr,Or,Pr,Qr,Rr){var Sr=0,Tr=0,Ur=0;Sr=R-16|0;R=Sr;if((Cr^-1)+ -17>>>0>=Gr>>>0){Tr=yk(lr);a:{if(2147483623>Cr>>>0){o[Sr+8>>2]=Cr<<1;o[Sr+12>>2]=Cr+Gr;Gr=Ck(o[kk(Sr+12|0,Sr+8|0)>>2]);break a}Gr=-18}Ur=Gr+1|0;Gr=Dk(Ur);if(Qr){jk(Gr,Rr,Qr)}Or=Or-Pr|0;Rr=Or;if(Or){jk(Gr+Qr|0,Pr+Tr|0,Rr)}if((Cr|0)!=10){ul(Tr)}Ek(lr,Gr);Fk(lr,Ur);Cr=lr;lr=Or+Qr|0;Ak(Cr,lr);m[Sr+7|0]=0;zk(lr+Gr|0,Sr+7|0);R=Sr+16|0;return}Kk();D()}function Rk(lr,Cr){var Gr=0;Gr=sk(lr);if(Gr>>>0<Cr>>>0){Sk(lr,Cr-Gr|0);return}Tk(lr,Cr)}function Sk(lr,Cr){var Or=0,Pr=0,Qr=0,Rr=0;Qr=R-16|0;R=Qr;if(Cr){Pr=tk(lr);Or=sk(lr);Rr=Or+Cr|0;if(Pr-Or>>>0<Cr>>>0){Uk(lr,Pr,Rr-Pr|0,Or,Or)}Pr=Or;Or=yk(lr);Pr=Pr+Or|0;if(Cr){xl(Pr,0,Cr)}Gk(lr,Rr);m[Qr+15|0]=0;zk(Or+Rr|0,Qr+15|0)}R=Qr+16|0}function Tk(lr,Cr){var Vr=0,Wr=0;Vr=R-16|0;R=Vr;a:{if(wk(lr)){Wr=o[lr>>2];m[Vr+15|0]=0;zk(Cr+Wr|0,Vr+15|0);Ak(lr,Cr);break a}m[Vr+14|0]=0;zk(lr+Cr|0,Vr+14|0);Bk(lr,Cr)}R=Vr+16|0}function Uk(lr,Cr,Xr,Yr,Zr){var _r=0,$r=0,as=0;_r=R-16|0;R=_r;if(-17-Cr>>>0>=Xr>>>0){$r=yk(lr);a:{if(2147483623>Cr>>>0){o[_r+8>>2]=Cr<<1;o[_r+12>>2]=Cr+Xr;Xr=Ck(o[kk(_r+12|0,_r+8|0)>>2]);break a}Xr=-18}as=Xr+1|0;Xr=Dk(as);if(Zr){jk(Xr,$r,Zr)}Yr=Yr-Zr|0;if(Yr){jk(Xr+Zr|0,Zr+$r|0,Yr)}if((Cr|0)!=10){ul($r)}Ek(lr,Xr);Fk(lr,as);R=_r+16|0;return}Kk();D()}function Vk(lr){if(sk(lr)>>>0<=0){Lk();D()}return yk(lr)}function Wk(lr){var Cr=0,Xr=0;Cr=R-16|0;R=Cr;mk(Cr);vk(Cr);uk(Cr,tk(Cr));Xk(lr,Cr);lr=Cr;if(wk(Cr)){Xr=o[lr>>2];xk(lr);ul(Xr)}R=Cr+16|0}function Xk(lr,Yr){var Zr=0,bs=0,cs=0,ds=0;cs=R-16|0;R=cs;Zr=sk(Yr);while(1){a:{bs=yk(Yr);o[cs>>2]=1;ds=Yr;bs=rk(bs,Zr+1|0,cs);b:{if((bs|0)>=0){if(bs>>>0<=Zr>>>0){break a}Zr=bs;break b}Zr=Zr<<1|1}uk(ds,Zr);continue}break}uk(Yr,bs);Zr=o[Yr+4>>2];o[lr>>2]=o[Yr>>2];o[lr+4>>2]=Zr;o[lr+8>>2]=o[Yr+8>>2];vk(Yr);R=cs+16|0}function Yk(){_a(12228);D()}function Zk(){Lk();D()}function _k(lr){var Yr=0;if(o[lr+76>>2]<0){a:{if(m[lr+75|0]==10){break a}Yr=o[lr+20>>2];if(Yr>>>0>=r[lr+16>>2]){break a}o[lr+20>>2]=Yr+1;m[Yr|0]=10;return}Jk(lr);return}b:{c:{if(m[lr+75|0]==10){break c}Yr=o[lr+20>>2];if(Yr>>>0>=r[lr+16>>2]){break c}o[lr+20>>2]=Yr+1;m[Yr|0]=10;break b}Jk(lr)}}function $k(){var lr=0;lr=R-16|0;R=lr;o[lr+12>>2]=0;lr=o[2902];Oj(lr,12235,0);_k(lr);M();D()}function al(){$k();D()}function bl(es){es=es|0;return 12265}function cl(es){es=es|0;o[es>>2]=12332;dl(es+4|0);return es|0}function dl(es){var fs=0,gs=0;fs=o[es>>2]+ -12|0;gs=fs+8|0;es=o[gs>>2]+ -1|0;o[gs>>2]=es;a:{if((es|0)>-1){break a}ul(fs)}}function el(es){es=es|0;ul(cl(es))}function fl(es){es=es|0;return o[es+4>>2]}function gl(es){es=es|0;cl(es);ul(es)}function hl(es,hs,is){if(!is){return(es|0)==(hs|0)}return!nk(o[es+4>>2],o[hs+4>>2])}function il(es,hs,is){es=es|0;hs=hs|0;is=is|0;var js=0,ks=0;js=R+ -64|0;R=js;ks=1;a:{if(hl(es,hs,0)){break a}ks=0;if(!hs){break a}hs=jl(hs);ks=0;if(!hs){break a}o[js+20>>2]=-1;o[js+16>>2]=es;o[js+12>>2]=0;o[js+8>>2]=hs;xl(js+24|0,0,39);o[js+56>>2]=1;l[o[o[hs>>2]+28>>2]](hs,js+8|0,o[is>>2],1);ks=0;if(o[js+32>>2]!=1){break a}o[is>>2]=o[js+24>>2];ks=1}R=js- -64|0;return ks|0}function jl(es){var hs=0,is=0,ls=0,ms=0;hs=R+ -64|0;R=hs;is=o[es>>2];ms=o[is+ -8>>2];is=o[is+ -4>>2];o[hs+20>>2]=0;o[hs+16>>2]=12484;o[hs+12>>2]=es;o[hs+8>>2]=12532;xl(hs+24|0,0,39);es=es+ms|0;a:{if(hl(is,12532,0)){o[hs+56>>2]=1;l[o[o[is>>2]+20>>2]](is,hs+8|0,es,es,1,0);ls=o[hs+32>>2]==1?es:0;break a}l[o[o[is>>2]+24>>2]](is,hs+8|0,es,1,0);es=o[hs+44>>2];if(es>>>0>1){break a}if(es-1){ls=o[hs+48>>2]==1?o[hs+36>>2]==1?o[hs+40>>2]==1?o[hs+28>>2]:0:0:0;break a}if(o[hs+32>>2]!=1){if(o[hs+48>>2]|o[hs+36>>2]!=1|o[hs+40>>2]!=1){break a}}ls=o[hs+24>>2]}R=hs- -64|0;return ls}function kl(es,ns,os){var ps=0;ps=o[es+16>>2];if(!ps){o[es+36>>2]=1;o[es+24>>2]=os;o[es+16>>2]=ns;return}a:{if((ns|0)==(ps|0)){if(o[es+24>>2]!=2){break a}o[es+24>>2]=os;return}m[es+54|0]=1;o[es+24>>2]=2;o[es+36>>2]=o[es+36>>2]+1}}function ll(es,ns,os,qs){es=es|0;ns=ns|0;os=os|0;qs=qs|0;if(hl(es,o[ns+8>>2],0)){kl(ns,os,qs)}}function ml(es,ns,os,qs){es=es|0;ns=ns|0;os=os|0;qs=qs|0;if(hl(es,o[ns+8>>2],0)){kl(ns,os,qs);return}es=o[es+8>>2];l[o[o[es>>2]+28>>2]](es,ns,os,qs)}function nl(es,ns,os,qs){m[es+53|0]=1;a:{if(o[es+4>>2]!=(os|0)){break a}m[es+52|0]=1;os=o[es+16>>2];if(!os){o[es+36>>2]=1;o[es+24>>2]=qs;o[es+16>>2]=ns;if((qs|0)!=1|o[es+48>>2]!=1){break a}m[es+54|0]=1;return}if((ns|0)==(os|0)){os=o[es+24>>2];if((os|0)==2){o[es+24>>2]=qs;os=qs}if(o[es+48>>2]!=1|(os|0)!=1){break a}m[es+54|0]=1;return}m[es+54|0]=1;o[es+36>>2]=o[es+36>>2]+1}}function ol(es,ns,os){if(!(o[es+28>>2]==1|o[es+4>>2]!=(ns|0))){o[es+28>>2]=os}}function pl(es,ns,os,qs,rs){es=es|0;ns=ns|0;os=os|0;qs=qs|0;rs=rs|0;if(hl(es,o[ns+8>>2],rs)){ol(ns,os,qs);return}a:{if(hl(es,o[ns>>2],rs)){if(!(o[ns+20>>2]!=(os|0)?o[ns+16>>2]!=(os|0):0)){if((qs|0)!=1){break a}o[ns+32>>2]=1;return}o[ns+32>>2]=qs;b:{if(o[ns+44>>2]==4){break b}n[ns+52>>1]=0;es=o[es+8>>2];l[o[o[es>>2]+20>>2]](es,ns,os,os,1,rs);if(p[ns+53|0]){o[ns+44>>2]=3;if(!p[ns+52|0]){break b}break a}o[ns+44>>2]=4}o[ns+20>>2]=os;o[ns+40>>2]=o[ns+40>>2]+1;if(o[ns+36>>2]!=1|o[ns+24>>2]!=2){break a}m[ns+54|0]=1;return}es=o[es+8>>2];l[o[o[es>>2]+24>>2]](es,ns,os,qs,rs)}}function ql(es,ns,os,qs,rs){es=es|0;ns=ns|0;os=os|0;qs=qs|0;rs=rs|0;if(hl(es,o[ns+8>>2],rs)){ol(ns,os,qs);return}a:{if(!hl(es,o[ns>>2],rs)){break a}if(!(o[ns+20>>2]!=(os|0)?o[ns+16>>2]!=(os|0):0)){if((qs|0)!=1){break a}o[ns+32>>2]=1;return}o[ns+20>>2]=os;o[ns+32>>2]=qs;o[ns+40>>2]=o[ns+40>>2]+1;if(!(o[ns+36>>2]!=1|o[ns+24>>2]!=2)){m[ns+54|0]=1}o[ns+44>>2]=4}}function rl(es,ns,os,qs,rs,ss){es=es|0;ns=ns|0;os=os|0;qs=qs|0;rs=rs|0;ss=ss|0;if(hl(es,o[ns+8>>2],ss)){nl(ns,os,qs,rs);return}es=o[es+8>>2];l[o[o[es>>2]+20>>2]](es,ns,os,qs,rs,ss)}function sl(es,ns,os,qs,rs,ss){es=es|0;ns=ns|0;os=os|0;qs=qs|0;rs=rs|0;ss=ss|0;if(hl(es,o[ns+8>>2],ss)){nl(ns,os,qs,rs)}}\n\n\n\nfunction tl(a){a=a|0;var b=0,c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;l=R-16|0;R=l;a:{b:{c:{d:{e:{f:{g:{h:{i:{j:{k:{if(a>>>0<=244){f=o[3288];h=a>>>0<11?16:a+11&-8;b=h>>>3;a=f>>>b;if(a&3){d=b+((a^-1)&1)|0;b=d<<3;e=o[b+13200>>2];a=e+8|0;c=o[e+8>>2];b=b+13192|0;l:{if((c|0)==(b|0)){m=13152,n=Zl(d)&f,o[m>>2]=n;break l}o[c+12>>2]=b;o[b+8>>2]=c}b=d<<3;o[e+4>>2]=b|3;b=b+e|0;o[b+4>>2]=o[b+4>>2]|1;break a}k=o[3290];if(h>>>0<=k>>>0){break k}if(a){c=a<<b;a=2<<b;a=c&(0-a|a);b=(0-a&a)+ -1|0;a=b>>>12&16;c=a;b=b>>>a;a=b>>>5&8;c=c|a;b=b>>>a;a=b>>>2&4;c=c|a;b=b>>>a;a=b>>>1&2;c=c|a;b=b>>>a;a=b>>>1&1;c=(c|a)+(b>>>a)|0;a=c<<3;g=o[a+13200>>2];b=o[g+8>>2];a=a+13192|0;m:{if((b|0)==(a|0)){f=Zl(c)&f;o[3288]=f;break m}o[b+12>>2]=a;o[a+8>>2]=b}a=g+8|0;o[g+4>>2]=h|3;d=g+h|0;b=c<<3;e=b-h|0;o[d+4>>2]=e|1;o[b+g>>2]=e;if(k){b=k>>>3;c=(b<<3)+13192|0;h=o[3293];b=1<<b;n:{if(!(b&f)){o[3288]=b|f;b=c;break n}b=o[c+8>>2]}o[c+8>>2]=h;o[b+12>>2]=h;o[h+12>>2]=c;o[h+8>>2]=b}o[3293]=d;o[3290]=e;break a}i=o[3289];if(!i){break k}b=(i&0-i)+ -1|0;a=b>>>12&16;c=a;b=b>>>a;a=b>>>5&8;c=c|a;b=b>>>a;a=b>>>2&4;c=c|a;b=b>>>a;a=b>>>1&2;c=c|a;b=b>>>a;a=b>>>1&1;b=o[((c|a)+(b>>>a)<<2)+13456>>2];d=(o[b+4>>2]&-8)-h|0;c=b;while(1){o:{a=o[c+16>>2];if(!a){a=o[c+20>>2];if(!a){break o}}c=(o[a+4>>2]&-8)-h|0;e=c>>>0<d>>>0;d=e?c:d;b=e?a:b;c=a;continue}break}j=o[b+24>>2];e=o[b+12>>2];if((e|0)!=(b|0)){a=o[b+8>>2];o[a+12>>2]=e;o[e+8>>2]=a;break b}c=b+20|0;a=o[c>>2];if(!a){a=o[b+16>>2];if(!a){break j}c=b+16|0}while(1){g=c;e=a;c=a+20|0;a=o[c>>2];if(a){continue}c=e+16|0;a=o[e+16>>2];if(a){continue}break}o[g>>2]=0;break b}h=-1;if(a>>>0>4294967231){break k}a=a+11|0;h=a&-8;i=o[3289];if(!i){break k}a=a>>>8;g=0;p:{if(!a){break p}g=31;if(h>>>0>16777215){break p}b=a+1048320>>>16&8;a=a<<b;d=a+520192>>>16&4;a=a<<d;c=a+245760>>>16&2;a=(a<<c>>>15)-(c|(b|d))|0;g=(a<<1|h>>>a+21&1)+28|0}c=0-h|0;d=o[(g<<2)+13456>>2];q:{r:{s:{if(!d){a=0;break s}b=h<<((g|0)==31?0:25-(g>>>1)|0);a=0;while(1){t:{f=(o[d+4>>2]&-8)-h|0;if(f>>>0>=c>>>0){break t}e=d;c=f;if(c){break t}c=0;a=d;break r}f=o[d+20>>2];d=o[((b>>>29&4)+d|0)+16>>2];a=f?(f|0)==(d|0)?a:f:a;b=b<<((d|0)!=0);if(d){continue}break}}if(!(a|e)){a=2<<g;a=(0-a|a)&i;if(!a){break k}b=(a&0-a)+ -1|0;a=b>>>12&16;d=a;b=b>>>a;a=b>>>5&8;d=d|a;b=b>>>a;a=b>>>2&4;d=d|a;b=b>>>a;a=b>>>1&2;d=d|a;b=b>>>a;a=b>>>1&1;a=o[((d|a)+(b>>>a)<<2)+13456>>2]}if(!a){break q}}while(1){b=(o[a+4>>2]&-8)-h|0;d=b>>>0<c>>>0;c=d?b:c;e=d?a:e;b=o[a+16>>2];if(b){a=b}else{a=o[a+20>>2]}if(a){continue}break}}if(!e|c>>>0>=o[3290]-h>>>0){break k}g=o[e+24>>2];b=o[e+12>>2];if((e|0)!=(b|0)){a=o[e+8>>2];o[a+12>>2]=b;o[b+8>>2]=a;break c}d=e+20|0;a=o[d>>2];if(!a){a=o[e+16>>2];if(!a){break i}d=e+16|0}while(1){f=d;b=a;d=a+20|0;a=o[d>>2];if(a){continue}d=b+16|0;a=o[b+16>>2];if(a){continue}break}o[f>>2]=0;break c}c=o[3290];if(c>>>0>=h>>>0){d=o[3293];b=c-h|0;u:{if(b>>>0>=16){o[3290]=b;a=d+h|0;o[3293]=a;o[a+4>>2]=b|1;o[c+d>>2]=b;o[d+4>>2]=h|3;break u}o[3293]=0;o[3290]=0;o[d+4>>2]=c|3;a=c+d|0;o[a+4>>2]=o[a+4>>2]|1}a=d+8|0;break a}j=o[3291];if(j>>>0>h>>>0){b=j-h|0;o[3291]=b;c=o[3294];a=c+h|0;o[3294]=a;o[a+4>>2]=b|1;o[c+4>>2]=h|3;a=c+8|0;break a}a=0;i=h+47|0;b=i;if(o[3406]){c=o[3408]}else{o[3409]=-1;o[3410]=-1;o[3407]=4096;o[3408]=4096;o[3406]=l+12&-16^1431655768;o[3411]=0;o[3399]=0;c=4096}g=b+c|0;f=0-c|0;c=g&f;if(c>>>0<=h>>>0){break a}e=o[3398];if(e){d=o[3396];b=d+c|0;if(b>>>0<=d>>>0|b>>>0>e>>>0){break a}}if(p[13596]&4){break f}v:{w:{d=o[3294];if(d){a=13600;while(1){b=o[a>>2];if(b+o[a+4>>2]>>>0>d>>>0?b>>>0<=d>>>0:0){break w}a=o[a+8>>2];if(a){continue}break}}b=vl(0);if((b|0)==-1){break g}f=c;d=o[3407];a=d+ -1|0;if(a&b){f=(c-b|0)+(a+b&0-d)|0}if(f>>>0<=h>>>0|f>>>0>2147483646){break g}e=o[3398];if(e){d=o[3396];a=d+f|0;if(a>>>0<=d>>>0|a>>>0>e>>>0){break g}}a=vl(f);if((b|0)!=(a|0)){break v}break e}f=f&g-j;if(f>>>0>2147483646){break g}b=vl(f);if((b|0)==(o[a>>2]+o[a+4>>2]|0)){break h}a=b}b=a;if(!(h+48>>>0<=f>>>0|f>>>0>2147483646|(a|0)==-1)){a=o[3408];a=a+(i-f|0)&0-a;if(a>>>0>2147483646){break e}if((vl(a)|0)!=-1){f=a+f|0;break e}vl(0-f|0);break g}if((b|0)!=-1){break e}break g}e=0;break b}b=0;break c}if((b|0)!=-1){break e}}o[3399]=o[3399]|4}if(c>>>0>2147483646){break d}b=vl(c);a=vl(0);if(b>>>0>=a>>>0|(b|0)==-1|(a|0)==-1){break d}f=a-b|0;if(f>>>0<=h+40>>>0){break d}}a=o[3396]+f|0;o[3396]=a;if(a>>>0>r[3397]){o[3397]=a}x:{y:{z:{d=o[3294];if(d){a=13600;while(1){e=o[a>>2];c=o[a+4>>2];if((e+c|0)==(b|0)){break z}a=o[a+8>>2];if(a){continue}break}break y}a=o[3292];if(!(b>>>0>=a>>>0?a:0)){o[3292]=b}a=0;o[3401]=f;o[3400]=b;o[3296]=-1;o[3297]=o[3406];o[3403]=0;while(1){d=a<<3;c=d+13192|0;o[d+13200>>2]=c;o[d+13204>>2]=c;a=a+1|0;if((a|0)!=32){continue}break}d=f+ -40|0;a=b+8&7?-8-b&7:0;c=d-a|0;o[3291]=c;a=a+b|0;o[3294]=a;o[a+4>>2]=c|1;o[(b+d|0)+4>>2]=40;o[3295]=o[3410];break x}if(p[a+12|0]&8|b>>>0<=d>>>0|e>>>0>d>>>0){break y}o[a+4>>2]=c+f;a=d+8&7?-8-d&7:0;c=a+d|0;o[3294]=c;b=o[3291]+f|0;a=b-a|0;o[3291]=a;o[c+4>>2]=a|1;o[(b+d|0)+4>>2]=40;o[3295]=o[3410];break x}e=o[3292];if(b>>>0<e>>>0){o[3292]=b;e=0}c=b+f|0;a=13600;A:{B:{C:{D:{E:{F:{while(1){if((c|0)!=o[a>>2]){a=o[a+8>>2];if(a){continue}break F}break}if(!(p[a+12|0]&8)){break E}}a=13600;while(1){c=o[a>>2];if(c>>>0<=d>>>0){g=c+o[a+4>>2]|0;if(g>>>0>d>>>0){break D}}a=o[a+8>>2];continue}}o[a>>2]=b;o[a+4>>2]=o[a+4>>2]+f;j=(b+8&7?-8-b&7:0)+b|0;o[j+4>>2]=h|3;b=c+(c+8&7?-8-c&7:0)|0;a=(b-j|0)-h|0;g=h+j|0;if((b|0)==(d|0)){o[3294]=g;a=o[3291]+a|0;o[3291]=a;o[g+4>>2]=a|1;break B}if(o[3293]==(b|0)){o[3293]=g;a=o[3290]+a|0;o[3290]=a;o[g+4>>2]=a|1;o[a+g>>2]=a;break B}c=o[b+4>>2];if((c&3)==1){i=c&-8;G:{if(c>>>0<=255){e=o[b+8>>2];c=c>>>3;d=o[b+12>>2];if((d|0)==(e|0)){m=13152,n=o[3288]&Zl(c),o[m>>2]=n;break G}o[e+12>>2]=d;o[d+8>>2]=e;break G}k=o[b+24>>2];f=o[b+12>>2];H:{if((f|0)!=(b|0)){c=o[b+8>>2];o[c+12>>2]=f;o[f+8>>2]=c;break H}I:{d=b+20|0;h=o[d>>2];if(h){break I}d=b+16|0;h=o[d>>2];if(h){break I}f=0;break H}while(1){c=d;f=h;d=f+20|0;h=o[d>>2];if(h){continue}d=f+16|0;h=o[f+16>>2];if(h){continue}break}o[c>>2]=0}if(!k){break G}d=o[b+28>>2];c=(d<<2)+13456|0;J:{if(o[c>>2]==(b|0)){o[c>>2]=f;if(f){break J}m=13156,n=o[3289]&Zl(d),o[m>>2]=n;break G}o[k+(o[k+16>>2]==(b|0)?16:20)>>2]=f;if(!f){break G}}o[f+24>>2]=k;c=o[b+16>>2];if(c){o[f+16>>2]=c;o[c+24>>2]=f}c=o[b+20>>2];if(!c){break G}o[f+20>>2]=c;o[c+24>>2]=f}b=b+i|0;a=a+i|0}o[b+4>>2]=o[b+4>>2]&-2;o[g+4>>2]=a|1;o[a+g>>2]=a;if(a>>>0<=255){a=a>>>3;b=(a<<3)+13192|0;c=o[3288];a=1<<a;K:{if(!(c&a)){o[3288]=a|c;a=b;break K}a=o[b+8>>2]}o[b+8>>2]=g;o[a+12>>2]=g;o[g+12>>2]=b;o[g+8>>2]=a;break B}b=g;d=a>>>8;c=0;L:{if(!d){break L}c=31;if(a>>>0>16777215){break L}c=d;d=d+1048320>>>16&8;c=c<<d;f=c+520192>>>16&4;c=c<<f;e=c+245760>>>16&2;c=(c<<e>>>15)-(e|(d|f))|0;c=(c<<1|a>>>c+21&1)+28|0}o[b+28>>2]=c;o[g+16>>2]=0;o[g+20>>2]=0;e=(c<<2)+13456|0;d=o[3289];b=1<<c;M:{if(!(d&b)){o[3289]=b|d;o[e>>2]=g;o[g+24>>2]=e;break M}d=a<<((c|0)==31?0:25-(c>>>1)|0);b=o[e>>2];while(1){c=b;if((o[b+4>>2]&-8)==(a|0)){break C}b=d>>>29;d=d<<1;e=(c+(b&4)|0)+16|0;b=o[e>>2];if(b){continue}break}o[e>>2]=g;o[g+24>>2]=c}o[g+12>>2]=g;o[g+8>>2]=g;break B}e=f+ -40|0;a=b+8&7?-8-b&7:0;c=e-a|0;o[3291]=c;a=a+b|0;o[3294]=a;o[a+4>>2]=c|1;o[(b+e|0)+4>>2]=40;o[3295]=o[3410];a=(g+(g+ -39&7?39-g&7:0)|0)+ -47|0;c=a>>>0<d+16>>>0?d:a;o[c+4>>2]=27;a=o[3403];o[c+16>>2]=o[3402];o[c+20>>2]=a;a=o[3401];o[c+8>>2]=o[3400];o[c+12>>2]=a;o[3402]=c+8;o[3401]=f;o[3400]=b;o[3403]=0;a=c+24|0;while(1){o[a+4>>2]=7;b=a+8|0;a=a+4|0;if(b>>>0<g>>>0){continue}break}if((c|0)==(d|0)){break x}o[c+4>>2]=o[c+4>>2]&-2;g=c-d|0;o[d+4>>2]=g|1;o[c>>2]=g;if(g>>>0<=255){a=g>>>3;b=(a<<3)+13192|0;c=o[3288];a=1<<a;N:{if(!(c&a)){o[3288]=a|c;a=b;break N}a=o[b+8>>2]}o[b+8>>2]=d;o[a+12>>2]=d;o[d+12>>2]=b;o[d+8>>2]=a;break x}o[d+16>>2]=0;o[d+20>>2]=0;a=d;c=g>>>8;b=0;O:{if(!c){break O}b=31;if(g>>>0>16777215){break O}b=c;c=c+1048320>>>16&8;b=b<<c;f=b+520192>>>16&4;b=b<<f;e=b+245760>>>16&2;b=(b<<e>>>15)-(e|(c|f))|0;b=(b<<1|g>>>b+21&1)+28|0}o[a+28>>2]=b;e=(b<<2)+13456|0;c=o[3289];a=1<<b;P:{if(!(c&a)){o[3289]=a|c;o[e>>2]=d;o[d+24>>2]=e;break P}a=g<<((b|0)==31?0:25-(b>>>1)|0);b=o[e>>2];while(1){c=b;if((g|0)==(o[b+4>>2]&-8)){break A}b=a>>>29;a=a<<1;e=(c+(b&4)|0)+16|0;b=o[e>>2];if(b){continue}break}o[e>>2]=d;o[d+24>>2]=c}o[d+12>>2]=d;o[d+8>>2]=d;break x}a=o[c+8>>2];o[a+12>>2]=g;o[c+8>>2]=g;o[g+24>>2]=0;o[g+12>>2]=c;o[g+8>>2]=a}a=j+8|0;break a}a=o[c+8>>2];o[a+12>>2]=d;o[c+8>>2]=d;o[d+24>>2]=0;o[d+12>>2]=c;o[d+8>>2]=a}a=o[3291];if(a>>>0<=h>>>0){break d}b=a-h|0;o[3291]=b;c=o[3294];a=c+h|0;o[3294]=a;o[a+4>>2]=b|1;o[c+4>>2]=h|3;a=c+8|0;break a}o[3269]=48;a=0;break a}Q:{if(!g){break Q}d=o[e+28>>2];a=(d<<2)+13456|0;R:{if(o[a>>2]==(e|0)){o[a>>2]=b;if(b){break R}i=Zl(d)&i;o[3289]=i;break Q}o[g+(o[g+16>>2]==(e|0)?16:20)>>2]=b;if(!b){break Q}}o[b+24>>2]=g;a=o[e+16>>2];if(a){o[b+16>>2]=a;o[a+24>>2]=b}a=o[e+20>>2];if(!a){break Q}o[b+20>>2]=a;o[a+24>>2]=b}S:{if(c>>>0<=15){a=c+h|0;o[e+4>>2]=a|3;a=a+e|0;o[a+4>>2]=o[a+4>>2]|1;break S}o[e+4>>2]=h|3;d=e+h|0;o[d+4>>2]=c|1;o[c+d>>2]=c;if(c>>>0<=255){a=c>>>3;b=(a<<3)+13192|0;c=o[3288];a=1<<a;T:{if(!(c&a)){o[3288]=a|c;a=b;break T}a=o[b+8>>2]}o[b+8>>2]=d;o[a+12>>2]=d;o[d+12>>2]=b;o[d+8>>2]=a;break S}a=d;f=c>>>8;b=0;U:{if(!f){break U}b=31;if(c>>>0>16777215){break U}b=f;f=f+1048320>>>16&8;b=b<<f;g=b+520192>>>16&4;b=b<<g;h=b+245760>>>16&2;b=(b<<h>>>15)-(h|(f|g))|0;b=(b<<1|c>>>b+21&1)+28|0}o[a+28>>2]=b;o[d+16>>2]=0;o[d+20>>2]=0;f=(b<<2)+13456|0;V:{a=1<<b;W:{if(!(a&i)){o[3289]=a|i;o[f>>2]=d;o[d+24>>2]=f;break W}a=c<<((b|0)==31?0:25-(b>>>1)|0);h=o[f>>2];while(1){b=h;if((o[b+4>>2]&-8)==(c|0)){break V}f=a>>>29;a=a<<1;f=(b+(f&4)|0)+16|0;h=o[f>>2];if(h){continue}break}o[f>>2]=d;o[d+24>>2]=b}o[d+12>>2]=d;o[d+8>>2]=d;break S}a=o[b+8>>2];o[a+12>>2]=d;o[b+8>>2]=d;o[d+24>>2]=0;o[d+12>>2]=b;o[d+8>>2]=a}a=e+8|0;break a}X:{if(!j){break X}c=o[b+28>>2];a=(c<<2)+13456|0;Y:{if(o[a>>2]==(b|0)){o[a>>2]=e;if(e){break Y}m=13156,n=Zl(c)&i,o[m>>2]=n;break X}o[(o[j+16>>2]==(b|0)?16:20)+j>>2]=e;if(!e){break X}}o[e+24>>2]=j;a=o[b+16>>2];if(a){o[e+16>>2]=a;o[a+24>>2]=e}a=o[b+20>>2];if(!a){break X}o[e+20>>2]=a;o[a+24>>2]=e}Z:{if(d>>>0<=15){a=d+h|0;o[b+4>>2]=a|3;a=a+b|0;o[a+4>>2]=o[a+4>>2]|1;break Z}o[b+4>>2]=h|3;e=b+h|0;o[e+4>>2]=d|1;o[d+e>>2]=d;if(k){a=k>>>3;c=(a<<3)+13192|0;h=o[3293];a=1<<a;_:{if(!(a&f)){o[3288]=a|f;a=c;break _}a=o[c+8>>2]}o[c+8>>2]=h;o[a+12>>2]=h;o[h+12>>2]=c;o[h+8>>2]=a}o[3293]=e;o[3290]=d}a=b+8|0}R=l+16|0;return a|0}function ul(a){a=a|0;var p=0,q=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0;a:{if(!a){break a}s=a+ -8|0;q=o[a+ -4>>2];a=q&-8;u=s+a|0;b:{if(q&1){break b}if(!(q&3)){break a}q=o[s>>2];s=s-q|0;if(s>>>0<r[3292]){break a}a=a+q|0;if(o[3293]!=(s|0)){if(q>>>0<=255){t=o[s+8>>2];q=q>>>3;p=o[s+12>>2];if((p|0)==(t|0)){x=13152,y=o[3288]&Zl(q),o[x>>2]=y;break b}o[t+12>>2]=p;o[p+8>>2]=t;break b}w=o[s+24>>2];q=o[s+12>>2];c:{if((q|0)!=(s|0)){p=o[s+8>>2];o[p+12>>2]=q;o[q+8>>2]=p;break c}d:{t=s+20|0;p=o[t>>2];if(p){break d}t=s+16|0;p=o[t>>2];if(p){break d}q=0;break c}while(1){v=t;q=p;t=q+20|0;p=o[t>>2];if(p){continue}t=q+16|0;p=o[q+16>>2];if(p){continue}break}o[v>>2]=0}if(!w){break b}t=o[s+28>>2];p=(t<<2)+13456|0;e:{if(o[p>>2]==(s|0)){o[p>>2]=q;if(q){break e}x=13156,y=o[3289]&Zl(t),o[x>>2]=y;break b}o[w+(o[w+16>>2]==(s|0)?16:20)>>2]=q;if(!q){break b}}o[q+24>>2]=w;p=o[s+16>>2];if(p){o[q+16>>2]=p;o[p+24>>2]=q}p=o[s+20>>2];if(!p){break b}o[q+20>>2]=p;o[p+24>>2]=q;break b}q=o[u+4>>2];if((q&3)!=3){break b}o[3290]=a;o[u+4>>2]=q&-2;o[s+4>>2]=a|1;o[a+s>>2]=a;return}if(u>>>0<=s>>>0){break a}q=o[u+4>>2];if(!(q&1)){break a}f:{if(!(q&2)){if((u|0)==o[3294]){o[3294]=s;a=o[3291]+a|0;o[3291]=a;o[s+4>>2]=a|1;if(o[3293]!=(s|0)){break a}o[3290]=0;o[3293]=0;return}if((u|0)==o[3293]){o[3293]=s;a=o[3290]+a|0;o[3290]=a;o[s+4>>2]=a|1;o[a+s>>2]=a;return}a=(q&-8)+a|0;g:{if(q>>>0<=255){p=o[u+8>>2];q=q>>>3;t=o[u+12>>2];if((p|0)==(t|0)){x=13152,y=o[3288]&Zl(q),o[x>>2]=y;break g}o[p+12>>2]=t;o[t+8>>2]=p;break g}w=o[u+24>>2];q=o[u+12>>2];h:{if((u|0)!=(q|0)){p=o[u+8>>2];o[p+12>>2]=q;o[q+8>>2]=p;break h}i:{t=u+20|0;p=o[t>>2];if(p){break i}t=u+16|0;p=o[t>>2];if(p){break i}q=0;break h}while(1){v=t;q=p;t=q+20|0;p=o[t>>2];if(p){continue}t=q+16|0;p=o[q+16>>2];if(p){continue}break}o[v>>2]=0}if(!w){break g}t=o[u+28>>2];p=(t<<2)+13456|0;j:{if((u|0)==o[p>>2]){o[p>>2]=q;if(q){break j}x=13156,y=o[3289]&Zl(t),o[x>>2]=y;break g}o[w+((u|0)==o[w+16>>2]?16:20)>>2]=q;if(!q){break g}}o[q+24>>2]=w;p=o[u+16>>2];if(p){o[q+16>>2]=p;o[p+24>>2]=q}p=o[u+20>>2];if(!p){break g}o[q+20>>2]=p;o[p+24>>2]=q}o[s+4>>2]=a|1;o[a+s>>2]=a;if(o[3293]!=(s|0)){break f}o[3290]=a;return}o[u+4>>2]=q&-2;o[s+4>>2]=a|1;o[a+s>>2]=a}if(a>>>0<=255){a=a>>>3;q=(a<<3)+13192|0;p=o[3288];a=1<<a;k:{if(!(p&a)){o[3288]=a|p;a=q;break k}a=o[q+8>>2]}o[q+8>>2]=s;o[a+12>>2]=s;o[s+12>>2]=q;o[s+8>>2]=a;return}o[s+16>>2]=0;o[s+20>>2]=0;q=s;t=a>>>8;p=0;l:{if(!t){break l}p=31;if(a>>>0>16777215){break l}p=t;t=t+1048320>>>16&8;p=p<<t;w=p+520192>>>16&4;p=p<<w;v=p+245760>>>16&2;p=(p<<v>>>15)-(v|(t|w))|0;p=(p<<1|a>>>p+21&1)+28|0}o[q+28>>2]=p;v=(p<<2)+13456|0;t=o[3289];q=1<<p;m:{if(!(t&q)){o[3289]=q|t;o[v>>2]=s;o[s+12>>2]=s;o[s+24>>2]=v;o[s+8>>2]=s;break m}t=a<<((p|0)==31?0:25-(p>>>1)|0);q=o[v>>2];n:{while(1){p=q;if((o[q+4>>2]&-8)==(a|0)){break n}q=t>>>29;t=t<<1;v=(p+(q&4)|0)+16|0;q=o[v>>2];if(q){continue}break}o[v>>2]=s;o[s+12>>2]=s;o[s+24>>2]=p;o[s+8>>2]=s;break m}a=o[p+8>>2];o[a+12>>2]=s;o[p+8>>2]=s;o[s+24>>2]=0;o[s+12>>2]=p;o[s+8>>2]=a}a=o[3296]+ -1|0;o[3296]=a;if(a){break a}s=13608;while(1){a=o[s>>2];s=a+8|0;if(a){continue}break}o[3296]=-1}}function vl(a){var r=0;r=o[3416];a=r+a|0;if((a|0)<=-1){o[3269]=48;return-1}a:{if(a>>>0<=U()<<16>>>0){break a}if(N(a|0)){break a}o[3269]=48;return-1}o[3416]=a;return r}function wl(a,z,A){var B=0,C=0,D=0;if(A>>>0>=8192){O(a|0,z|0,A|0)|0;return a}C=a+A|0;a:{if(!((a^z)&3)){b:{if((A|0)<1){A=a;break b}if(!(a&3)){A=a;break b}A=a;while(1){m[A|0]=p[z|0];z=z+1|0;A=A+1|0;if(A>>>0>=C>>>0){break b}if(A&3){continue}break}}B=C&-4;c:{if(B>>>0<64){break c}D=B+ -64|0;if(A>>>0>D>>>0){break c}while(1){o[A>>2]=o[z>>2];o[A+4>>2]=o[z+4>>2];o[A+8>>2]=o[z+8>>2];o[A+12>>2]=o[z+12>>2];o[A+16>>2]=o[z+16>>2];o[A+20>>2]=o[z+20>>2];o[A+24>>2]=o[z+24>>2];o[A+28>>2]=o[z+28>>2];o[A+32>>2]=o[z+32>>2];o[A+36>>2]=o[z+36>>2];o[A+40>>2]=o[z+40>>2];o[A+44>>2]=o[z+44>>2];o[A+48>>2]=o[z+48>>2];o[A+52>>2]=o[z+52>>2];o[A+56>>2]=o[z+56>>2];o[A+60>>2]=o[z+60>>2];z=z- -64|0;A=A- -64|0;if(A>>>0<=D>>>0){continue}break}}if(A>>>0>=B>>>0){break a}while(1){o[A>>2]=o[z>>2];z=z+4|0;A=A+4|0;if(A>>>0<B>>>0){continue}break}break a}if(C>>>0<4){A=a;break a}B=C+ -4|0;if(B>>>0<a>>>0){A=a;break a}A=a;while(1){m[A|0]=p[z|0];m[A+1|0]=p[z+1|0];m[A+2|0]=p[z+2|0];m[A+3|0]=p[z+3|0];z=z+4|0;A=A+4|0;if(A>>>0<=B>>>0){continue}break}}if(A>>>0<C>>>0){while(1){m[A|0]=p[z|0];z=z+1|0;A=A+1|0;if((C|0)!=(A|0)){continue}break}}return a}function xl(a,z,A){var E=0,F=0,G=0,H=0;a:{if(!A){break a}E=a+A|0;m[E+ -1|0]=z;m[a|0]=z;if(A>>>0<3){break a}m[E+ -2|0]=z;m[a+1|0]=z;m[E+ -3|0]=z;m[a+2|0]=z;if(A>>>0<7){break a}m[E+ -4|0]=z;m[a+3|0]=z;if(A>>>0<9){break a}E=0-a&3;F=E+a|0;z=u(z&255,16843009);o[F>>2]=z;A=A-E&-4;E=A+F|0;o[E+ -4>>2]=z;if(A>>>0<9){break a}o[F+8>>2]=z;o[F+4>>2]=z;o[E+ -8>>2]=z;o[E+ -12>>2]=z;if(A>>>0<25){break a}o[F+24>>2]=z;o[F+20>>2]=z;o[F+16>>2]=z;o[F+12>>2]=z;o[E+ -16>>2]=z;o[E+ -20>>2]=z;o[E+ -24>>2]=z;o[E+ -28>>2]=z;H=F&4|24;A=A-H|0;if(A>>>0<32){break a}E=z;G=z;z=F+H|0;while(1){o[z+24>>2]=G;o[z+28>>2]=E;o[z+16>>2]=G;o[z+20>>2]=E;o[z+8>>2]=G;o[z+12>>2]=E;o[z>>2]=G;o[z+4>>2]=E;z=z+32|0;A=A+ -32|0;if(A>>>0>31){continue}break}}return a}function yl(a,z,A){var I=0,J=0;a:{if((a|0)==(z|0)){break a}b:{if(z+A>>>0>a>>>0){J=a+A|0;if(J>>>0>z>>>0){break b}}return wl(a,z,A)}I=(a^z)&3;c:{d:{if(a>>>0<z>>>0){if(I){I=a;break c}if(!(a&3)){I=a;break d}I=a;while(1){if(!A){break a}m[I|0]=p[z|0];z=z+1|0;A=A+ -1|0;I=I+1|0;if(I&3){continue}break}break d}e:{if(I){break e}if(J&3){while(1){if(!A){break a}A=A+ -1|0;I=A+a|0;m[I|0]=p[z+A|0];if(I&3){continue}break}}if(A>>>0<=3){break e}while(1){A=A+ -4|0;o[A+a>>2]=o[z+A>>2];if(A>>>0>3){continue}break}}if(!A){break a}while(1){A=A+ -1|0;m[A+a|0]=p[z+A|0];if(A){continue}break}break a}if(A>>>0<=3){break c}J=A;while(1){o[I>>2]=o[z>>2];z=z+4|0;I=I+4|0;J=J+ -4|0;if(J>>>0>3){continue}break}A=A&3}if(!A){break a}while(1){m[I|0]=p[z|0];I=I+1|0;z=z+1|0;A=A+ -1|0;if(A){continue}break}}return a}function zl(a,z){a=a|0;z=z|0;if(!o[3412]){o[3413]=z;o[3412]=a}}function Al(){return R|0}function Bl(a){a=a|0;a=R-a&-16;R=a;return a|0}function Cl(a){a=a|0;R=a}function Dl(a){a=a|0;return V(a|0)|0}function El(a,o){a=a|0;o=o|0;return l[a](o)|0}function Fl(a,o){a=a|0;o=o|0;l[a](o)}function Gl(a,o,z){a=a|0;o=o|0;z=z|0;return l[a](o,z)|0}function Hl(a,o,z){a=a|0;o=o|0;z=z|0;l[a](o,z)}function Il(a,o,z,A){a=a|0;o=o|0;z=z|0;A=A|0;return l[a](o,z,A)|0}function Jl(a){a=a|0;l[a]()}function Kl(a,o,z,A){a=a|0;o=o|0;z=z|0;A=A|0;l[a](o,z,A)}function Ll(a,o,z,A,K){a=a|0;o=o|0;z=z|0;A=A|0;K=K|0;l[a](o,z,A,K)}function Ml(a,o,z,A,K,L,M){a=a|0;o=o|0;z=z|0;A=A|0;K=K|0;L=L|0;M=M|0;return l[a](o,z,A,K,L,M)|0}function Nl(a,o,z,A,K,L,M){a=a|0;o=o|0;z=+z;A=A|0;K=K|0;L=L|0;M=M|0;return l[a](o,z,A,K,L,M)|0}function Ol(a,o,z,A,K,L,M){a=a|0;o=o|0;z=z|0;A=A|0;K=K|0;L=L|0;M=M|0;l[a](o,z,A,K,L,M)}function Pl(a,o,z,A,K,L){a=a|0;o=o|0;z=z|0;A=A|0;K=K|0;L=L|0;l[a](o,z,A,K,L)}function Ql(a,o,z,A,K){a=a|0;o=o|0;z=z|0;A=A|0;K=K|0;a=l[a](o,z,A,K)|0;P(T|0);return a|0}function Rl(a,o){i(a|0,o|0)}function Sl(a,o,z,A){var K=0,L=0,M=0,N=0,O=0,P=0;K=z>>>16;L=a>>>16;P=u(K,L);M=z&65535;N=a&65535;O=u(M,N);L=(O>>>16)+u(L,M)|0;K=(L&65535)+u(K,N)|0;a=(((u(o,z)+P|0)+u(a,A)|0)+(L>>>16)|0)+(K>>>16)|0;o=O&65535|K<<16;T=a;return o}function Tl(a,o,z,A){var Q=0,R=0,S=0,U=0;Q=o;R=Q>>31;Q=Q>>31;a=a^Q;S=a-Q|0;U=(o^R)-((a>>>0<Q>>>0)+R|0)|0;Q=A;R=Q>>31;Q=Q>>31;a=z^Q;Q=Xl(S,U,a-Q|0,(A^R)-((a>>>0<Q>>>0)+R|0)|0);o=o^A;z=o>>31;a=o>>31;o=Q^a;A=o-a|0;T=(z^T)-((o>>>0<a>>>0)+z|0)|0;return A}function Ul(a,o,z,A){var V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0;a:{b:{c:{d:{e:{f:{g:{h:{i:{j:{X=o;if(X){V=z;if(!V){break j}W=A;if(!W){break i}W=x(W)-x(X)|0;if(W>>>0<=31){break h}break b}if((A|0)==1&z>>>0>=0|A>>>0>1){break b}o=(a>>>0)/(z>>>0)|0;Rl(a-u(o,z)|0,0);T=0;return o}V=A;if(!a){break g}if(!V){break f}W=V+ -1|0;if(W&V){break f}Rl(a,W&X);a=X>>>(_l(V)&31);T=0;return a}W=V+ -1|0;if(!(W&V)){break e}_=(x(V)+33|0)-x(X)|0;Y=0-_|0;break c}_=W+1|0;Y=63-W|0;break c}a=(X>>>0)/(V>>>0)|0;Rl(0,X-u(a,V)|0);T=0;return a}W=x(V)-x(X)|0;if(W>>>0<31){break d}break b}Rl(a&W,0);if((V|0)==1){break a}z=a;a=_l(V);A=a&31;if(32<=(a&63)>>>0){W=0;a=o>>>A}else{W=o>>>A;a=((1<<A)-1&o)<<32-A|z>>>A}T=W;return a}_=W+1|0;Y=63-W|0}V=o;X=a;W=_&63;Z=W&31;if(32<=(W&63)>>>0){W=0;aa=V>>>Z}else{W=V>>>Z;aa=((1<<Z)-1&V)<<32-Z|X>>>Z}a=Y&63;Y=a&31;if(32<=(a&63)>>>0){V=X<<Y;a=0}else{V=(1<<Y)-1&X>>>32-Y|o<<Y;a=X<<Y}o=V;if(_){X=A+ -1|0;V=z+ -1|0;if(V>>>0<4294967295){X=X+1|0}Y=V;while(1){V=aa;W=W<<1|V>>>31;V=V<<1;$=W;W=o>>>31|V;ba=$;V=$;$=W;Z=X-((Y>>>0<W>>>0)+V|0)|0;V=Z>>31;Z=Z>>31;W=z&Z;aa=$-W|0;W=ba-((A&V)+($>>>0<W>>>0)|0)|0;V=o<<1|a>>>31;a=ca|a<<1;o=V|da;V=0;ba=V;$=Z&1;ca=$;_=_+ -1|0;if(_){continue}break}}Rl(aa,W);V=o<<1|a>>>31;a=$|a<<1;T=V|ba;return a}Rl(a,o);a=0;o=0}T=o;return a}function Vl(a,o,z,A){a=Sl(a,o,z,A);return a}function Wl(a,o,z,A){a=Tl(a,o,z,A);return a}function Xl(a,o,z,A){a=Ul(a,o,z,A);return a}function Yl(a){var o=0,z=0;while(1){z=o;if(a){a=a-1&a;o=o+1|0;continue}break}return z}function Zl(a){var A=0;A=a&31;a=0-a&31;return(-1>>>A&-2)<<A|(-1<<a&-2)>>>a}function _l(a){if(a){return 31-x(a+ -1^a)|0}return 32}\n\n\n\n\n// EMSCRIPTEN_END_FUNCS\nl[1]=cl;l[2]=$c;l[3]=ad;l[4]=bd;l[5]=Zc;l[6]=_c;l[7]=gd;l[8]=hd;l[9]=id;l[10]=cd;l[11]=dd;l[12]=zd;l[13]=Ad;l[14]=vd;l[15]=wd;l[16]=Bd;l[17]=Cd;l[18]=Dd;l[19]=zb;l[20]=Ed;l[21]=al;l[22]=Fd;l[23]=id;l[24]=Od;l[25]=Pd;l[26]=Hd;l[27]=Id;l[28]=Jd;l[29]=Kd;l[30]=Fd;l[31]=Md;l[32]=Nd;l[33]=Yd;l[34]=Zd;l[35]=Rd;l[36]=Td;l[37]=_d;l[38]=Ud;l[39]=Vd;l[40]=Wd;l[41]=Xd;l[42]=ie;l[43]=je;l[44]=ae;l[45]=be;l[46]=ce;l[47]=fe;l[48]=de;l[49]=ke;l[50]=he;l[51]=qe;l[52]=re;l[53]=id;l[54]=vb;l[55]=se;l[56]=te;l[57]=ue;l[58]=Ed;l[59]=te;l[60]=id;l[61]=ve;l[62]=we;l[63]=Ad;l[64]=Ad;l[65]=xe;l[66]=ye;l[67]=ze;l[68]=se;l[69]=Ae;l[70]=De;l[71]=Ee;l[72]=Fe;l[73]=Ge;l[74]=He;l[75]=id;l[76]=Ed;l[77]=Ie;l[78]=Je;l[79]=Ke;l[80]=Ne;l[81]=Oe;l[82]=Pe;l[83]=Qe;l[84]=id;l[85]=Ed;l[86]=Re;l[87]=Se;l[88]=Te;l[89]=$c;l[90]=ad;l[91]=Ve;l[92]=zb;l[93]=Ue;l[94]=re;l[95]=id;l[96]=se;l[97]=Ye;l[98]=Ad;l[99]=Ze;l[100]=_e;l[101]=ze;l[102]=se;l[103]=Ae;l[104]=$e;l[105]=af;l[106]=bf;l[107]=Ge;l[108]=He;l[109]=id;l[110]=Ed;l[111]=Ie;l[112]=Je;l[113]=cf;l[114]=ef;l[115]=ff;l[116]=Pe;l[117]=Qe;l[118]=id;l[119]=Ed;l[120]=Re;l[121]=Se;l[122]=gf;l[123]=$c;l[124]=ad;l[125]=Ve;l[126]=zb;l[127]=hf;l[128]=re;l[129]=te;l[130]=id;l[131]=kf;l[132]=je;l[133]=lf;l[134]=nf;l[135]=mf;l[136]=qf;l[137]=bd;l[138]=of;l[139]=sf;l[140]=tf;l[141]=Pe;l[142]=vb;l[143]=uf;l[144]=id;l[145]=Ed;l[146]=vf;l[147]=id;l[148]=wf;l[149]=xf;l[150]=yf;l[151]=$c;l[152]=ad;l[153]=Ve;l[154]=zb;l[155]=Ue;l[156]=Bf;l[157]=Cf;l[158]=Pe;l[159]=uf;l[160]=id;l[161]=Ed;l[162]=vf;l[163]=xf;l[164]=Df;l[165]=$c;l[166]=ad;l[167]=Ve;l[168]=zb;l[169]=hf;l[170]=$c;l[171]=ad;l[172]=te;l[173]=id;l[174]=te;l[175]=ue;l[176]=Ed;l[177]=Af;l[178]=Ef;l[179]=Kf;l[180]=Lf;l[181]=Ff;l[182]=Gf;l[183]=mf;l[184]=Hf;l[185]=If;l[186]=Jf;l[187]=wg;l[188]=Ad;l[189]=id;l[190]=id;l[191]=vg;l[192]=gi;l[193]=hi;l[194]=id;l[195]=te;l[196]=Ed;l[197]=Ed;l[198]=Bg;l[199]=Cg;l[200]=yg;l[201]=xg;l[202]=Ag;l[203]=Dg;l[204]=Eg;l[205]=Fg;l[206]=zg;l[207]=lh;l[208]=mh;l[209]=Ig;l[210]=Jg;l[211]=Kg;l[212]=Lg;l[213]=Sg;l[214]=id;l[215]=vb;l[216]=eh;l[217]=nh;l[218]=ph;l[219]=Ig;l[220]=Jg;l[221]=Kg;l[222]=Lg;l[223]=gh;l[224]=id;l[225]=vb;l[226]=eh;l[227]=Rg;l[228]=qh;l[229]=Qg;l[230]=rh;l[231]=sh;l[232]=wh;l[233]=xh;l[234]=yh;l[235]=zh;l[236]=vh;l[237]=Bh;l[238]=th;l[239]=Ch;l[240]=Dh;l[241]=Fh;l[242]=Gh;l[243]=Hh;l[244]=Ih;l[245]=Eh;l[246]=Kh;l[247]=Lh;l[248]=Mh;l[249]=Nh;l[250]=Oh;l[251]=Zh;l[252]=Yh;l[253]=Uh;l[254]=$c;l[255]=ad;l[256]=_h;l[257]=$h;l[258]=Ad;l[259]=te;l[260]=id;l[261]=Ni;l[262]=Oi;l[263]=Pi;l[264]=Ri;l[265]=Mi;l[266]=Bj;l[267]=wj;l[268]=zj;l[269]=Pj;l[270]=Qj;l[271]=Tj;l[272]=Rj;l[273]=Sj;l[274]=qk;l[275]=$c;l[276]=ad;l[277]=bl;l[278]=el;l[279]=fl;l[280]=gl;l[281]=$c;l[282]=ad;l[283]=Cj;l[284]=Cj;l[285]=il;l[286]=sl;l[287]=ql;l[288]=ll;l[289]=ad;l[290]=rl;l[291]=pl;l[292]=ml;function U(){return buffer.byteLength/65536|0}function V(pagesToAdd){pagesToAdd=pagesToAdd|0;var W=U()|0;var X=W+pagesToAdd|0;if(W<X&&X<65536){var Y=new ArrayBuffer(u(X,65536));var Z=new global.Int8Array(Y);Z.set(m);m=Z;m=new global.Int8Array(Y);n=new global.Int16Array(Y);o=new global.Int32Array(Y);p=new global.Uint8Array(Y);q=new global.Uint16Array(Y);r=new global.Uint32Array(Y);s=new global.Float32Array(Y);t=new global.Float64Array(Y);buffer=Y;k.buffer=Y}return W}return{\"__wasm_call_ctors\":ca,\"emscripten_bind_Status_code_0\":db,\"emscripten_bind_Status_ok_0\":eb,\"emscripten_bind_Status_error_msg_0\":fb,\"emscripten_bind_Status___destroy___0\":gb,\"emscripten_bind_DracoUInt16Array_DracoUInt16Array_0\":hb,\"emscripten_bind_DracoUInt16Array_GetValue_1\":ib,\"emscripten_bind_DracoUInt16Array_size_0\":jb,\"emscripten_bind_DracoUInt16Array___destroy___0\":kb,\"emscripten_bind_PointCloud_PointCloud_0\":lb,\"emscripten_bind_PointCloud_num_attributes_0\":mb,\"emscripten_bind_PointCloud_num_points_0\":nb,\"emscripten_bind_PointCloud___destroy___0\":ob,\"emscripten_bind_DracoUInt8Array_DracoUInt8Array_0\":hb,\"emscripten_bind_DracoUInt8Array_GetValue_1\":pb,\"emscripten_bind_DracoUInt8Array_size_0\":qb,\"emscripten_bind_DracoUInt8Array___destroy___0\":kb,\"emscripten_bind_DracoUInt32Array_DracoUInt32Array_0\":hb,\"emscripten_bind_DracoUInt32Array_GetValue_1\":rb,\"emscripten_bind_DracoUInt32Array_size_0\":sb,\"emscripten_bind_DracoUInt32Array___destroy___0\":kb,\"emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0\":tb,\"emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1\":ub,\"emscripten_bind_AttributeOctahedronTransform_quantization_bits_0\":vb,\"emscripten_bind_AttributeOctahedronTransform___destroy___0\":ob,\"emscripten_bind_PointAttribute_PointAttribute_0\":wb,\"emscripten_bind_PointAttribute_size_0\":nb,\"emscripten_bind_PointAttribute_GetAttributeTransformData_0\":xb,\"emscripten_bind_PointAttribute_attribute_type_0\":yb,\"emscripten_bind_PointAttribute_data_type_0\":zb,\"emscripten_bind_PointAttribute_num_components_0\":Ab,\"emscripten_bind_PointAttribute_normalized_0\":Bb,\"emscripten_bind_PointAttribute_byte_stride_0\":Cb,\"emscripten_bind_PointAttribute_byte_offset_0\":Db,\"emscripten_bind_PointAttribute_unique_id_0\":Eb,\"emscripten_bind_PointAttribute___destroy___0\":Fb,\"emscripten_bind_AttributeTransformData_AttributeTransformData_0\":Gb,\"emscripten_bind_AttributeTransformData_transform_type_0\":db,\"emscripten_bind_AttributeTransformData___destroy___0\":Hb,\"emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0\":Ib,\"emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1\":ub,\"emscripten_bind_AttributeQuantizationTransform_quantization_bits_0\":vb,\"emscripten_bind_AttributeQuantizationTransform_min_value_1\":Jb,\"emscripten_bind_AttributeQuantizationTransform_range_0\":Kb,\"emscripten_bind_AttributeQuantizationTransform___destroy___0\":ob,\"emscripten_bind_DracoInt8Array_DracoInt8Array_0\":hb,\"emscripten_bind_DracoInt8Array_GetValue_1\":Lb,\"emscripten_bind_DracoInt8Array_size_0\":qb,\"emscripten_bind_DracoInt8Array___destroy___0\":kb,\"emscripten_bind_MetadataQuerier_MetadataQuerier_0\":Mb,\"emscripten_bind_MetadataQuerier_HasEntry_2\":Nb,\"emscripten_bind_MetadataQuerier_GetIntEntry_2\":Ob,\"emscripten_bind_MetadataQuerier_GetIntEntryArray_3\":Pb,\"emscripten_bind_MetadataQuerier_GetDoubleEntry_2\":Qb,\"emscripten_bind_MetadataQuerier_GetStringEntry_2\":Rb,\"emscripten_bind_MetadataQuerier_NumEntries_1\":Sb,\"emscripten_bind_MetadataQuerier_GetEntryName_2\":Tb,\"emscripten_bind_MetadataQuerier___destroy___0\":Ub,\"emscripten_bind_DracoInt16Array_DracoInt16Array_0\":hb,\"emscripten_bind_DracoInt16Array_GetValue_1\":Vb,\"emscripten_bind_DracoInt16Array_size_0\":jb,\"emscripten_bind_DracoInt16Array___destroy___0\":kb,\"emscripten_bind_DracoFloat32Array_DracoFloat32Array_0\":hb,\"emscripten_bind_DracoFloat32Array_GetValue_1\":Wb,\"emscripten_bind_DracoFloat32Array_size_0\":sb,\"emscripten_bind_DracoFloat32Array___destroy___0\":kb,\"emscripten_bind_GeometryAttribute_GeometryAttribute_0\":Xb,\"emscripten_bind_GeometryAttribute___destroy___0\":Yb,\"emscripten_bind_DecoderBuffer_DecoderBuffer_0\":Zb,\"emscripten_bind_DecoderBuffer_Init_2\":_b,\"emscripten_bind_DecoderBuffer___destroy___0\":Yb,\"emscripten_bind_Decoder_Decoder_0\":$b,\"emscripten_bind_Decoder_GetEncodedGeometryType_1\":ac,\"emscripten_bind_Decoder_DecodeBufferToPointCloud_2\":bc,\"emscripten_bind_Decoder_DecodeBufferToMesh_2\":cc,\"emscripten_bind_Decoder_GetAttributeId_2\":dc,\"emscripten_bind_Decoder_GetAttributeIdByName_2\":ec,\"emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3\":fc,\"emscripten_bind_Decoder_GetAttribute_2\":gc,\"emscripten_bind_Decoder_GetAttributeByUniqueId_2\":hc,\"emscripten_bind_Decoder_GetMetadata_1\":ic,\"emscripten_bind_Decoder_GetAttributeMetadata_2\":jc,\"emscripten_bind_Decoder_GetFaceFromMesh_3\":kc,\"emscripten_bind_Decoder_GetTriangleStripsFromMesh_2\":lc,\"emscripten_bind_Decoder_GetTrianglesUInt16Array_3\":mc,\"emscripten_bind_Decoder_GetTrianglesUInt32Array_3\":nc,\"emscripten_bind_Decoder_GetAttributeFloat_3\":oc,\"emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3\":pc,\"emscripten_bind_Decoder_GetAttributeIntForAllPoints_3\":qc,\"emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3\":rc,\"emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3\":sc,\"emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3\":tc,\"emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3\":uc,\"emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3\":qc,\"emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3\":vc,\"emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5\":wc,\"emscripten_bind_Decoder_SkipAttributeTransform_1\":xc,\"emscripten_bind_Decoder___destroy___0\":yc,\"emscripten_bind_Mesh_Mesh_0\":Bc,\"emscripten_bind_Mesh_num_faces_0\":Cc,\"emscripten_bind_Mesh_num_attributes_0\":mb,\"emscripten_bind_Mesh_num_points_0\":nb,\"emscripten_bind_Mesh___destroy___0\":ob,\"emscripten_bind_VoidPtr___destroy___0\":Yb,\"emscripten_bind_DracoInt32Array_DracoInt32Array_0\":hb,\"emscripten_bind_DracoInt32Array_GetValue_1\":rb,\"emscripten_bind_DracoInt32Array_size_0\":sb,\"emscripten_bind_DracoInt32Array___destroy___0\":kb,\"emscripten_bind_Metadata_Metadata_0\":Dc,\"emscripten_bind_Metadata___destroy___0\":Ec,\"emscripten_enum_draco_StatusCode_OK\":Hc,\"emscripten_enum_draco_StatusCode_DRACO_ERROR\":Ic,\"emscripten_enum_draco_StatusCode_IO_ERROR\":Jc,\"emscripten_enum_draco_StatusCode_INVALID_PARAMETER\":Kc,\"emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION\":Lc,\"emscripten_enum_draco_StatusCode_UNKNOWN_VERSION\":Mc,\"emscripten_enum_draco_DataType_DT_INVALID\":Hc,\"emscripten_enum_draco_DataType_DT_INT8\":Nc,\"emscripten_enum_draco_DataType_DT_UINT8\":Oc,\"emscripten_enum_draco_DataType_DT_INT16\":Pc,\"emscripten_enum_draco_DataType_DT_UINT16\":Qc,\"emscripten_enum_draco_DataType_DT_INT32\":Rc,\"emscripten_enum_draco_DataType_DT_UINT32\":Sc,\"emscripten_enum_draco_DataType_DT_INT64\":Tc,\"emscripten_enum_draco_DataType_DT_UINT64\":Uc,\"emscripten_enum_draco_DataType_DT_FLOAT32\":Vc,\"emscripten_enum_draco_DataType_DT_FLOAT64\":Wc,\"emscripten_enum_draco_DataType_DT_BOOL\":Xc,\"emscripten_enum_draco_DataType_DT_TYPES_COUNT\":Yc,\"emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE\":Ic,\"emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD\":Hc,\"emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH\":Nc,\"emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM\":Ic,\"emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM\":Hc,\"emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM\":Nc,\"emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM\":Oc,\"emscripten_enum_draco_GeometryAttribute_Type_INVALID\":Ic,\"emscripten_enum_draco_GeometryAttribute_Type_POSITION\":Hc,\"emscripten_enum_draco_GeometryAttribute_Type_NORMAL\":Nc,\"emscripten_enum_draco_GeometryAttribute_Type_COLOR\":Oc,\"emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD\":Pc,\"emscripten_enum_draco_GeometryAttribute_Type_GENERIC\":Qc,\"setThrew\":zl,\"_ZSt18uncaught_exceptionv\":Hc,\"free\":ul,\"malloc\":tl,\"stackSave\":Al,\"stackAlloc\":Bl,\"stackRestore\":Cl,\"__growWasmMemory\":Dl,\"dynCall_ii\":El,\"dynCall_vi\":Fl,\"dynCall_iii\":Gl,\"dynCall_vii\":Hl,\"dynCall_iiii\":Il,\"dynCall_v\":Jl,\"dynCall_viii\":Kl,\"dynCall_viiii\":Ll,\"dynCall_iiiiiii\":Ml,\"dynCall_iidiiii\":Nl,\"dynCall_jiji\":Ql,\"dynCall_viiiiii\":Ol,\"dynCall_viiiii\":Pl}}var _=(function(mem){var $=new Uint8Array(mem);return(function(offset,s){var aa,ba;if(typeof Buffer===\"undefined\"){aa=atob(s);for(ba=0;ba<aa.length;ba++)$[offset+ba]=aa.charCodeAt(ba)}else{aa=Buffer.from(s,\"base64\");for(ba=0;ba<aa.length;ba++)$[offset+ba]=aa[ba]}})})(wasmMemory.buffer);_(1027,\"wAAAAMAAAADAAAAAwGFsbG9jYXRvcjxUPjo6YWxsb2NhdGUoc2l6ZV90IG4pICduJyBleGNlZWRzIG1heGltdW0gc3VwcG9ydGVkIHNpemUAAAAAALwEAAACAAAAAwAAAAQAAAAFAAAABgAAAE41ZHJhY28yOEF0dHJpYnV0ZU9jdGFoZWRyb25UcmFuc2Zvcm1FAE41ZHJhY28xOEF0dHJpYnV0ZVRyYW5zZm9ybUUACDEAAJcEAAAwMQAAcAQAALQEAAAAAAAAEAUAAAcAAAAIAAAACQAAAAoAAAALAAAATjVkcmFjbzMwQXR0cmlidXRlUXVhbnRpemF0aW9uVHJhbnNmb3JtRQAAAAAwMQAA5AQAALQEAABhbGxvY2F0b3I8VD46OmFsbG9jYXRlKHNpemVfdCBuKSAnbicgZXhjZWVkcyBtYXhpbXVtIHN1cHBvcnRlZCBzaXplAAAAAADkBQAADAAAAA0AAAAOAAAADwAAABAAAAARAAAAEgAAABMAAAAUAAAAFQAAABYAAAAXAAAATjVkcmFjbzE3QXR0cmlidXRlc0RlY29kZXJFAE41ZHJhY28yNkF0dHJpYnV0ZXNEZWNvZGVySW50ZXJmYWNlRQAAAAAIMQAAtAUAADAxAACYBQAA3AUAAGFsbG9jYXRvcjxUPjo6YWxsb2NhdGUoc2l6ZV90IG4pICduJyBleGNlZWRzIG1heGltdW0gc3VwcG9ydGVkIHNpemUAAAAAAIgGAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAACAAAABONWRyYWNvMjZTZXF1ZW50aWFsQXR0cmlidXRlRGVjb2RlckUAAAAACDEAAGAGAAD/////AAAAABwHAAAhAAAAIgAAAA4AAAAjAAAAJAAAABEAAAASAAAAEwAAACUAAAAmAAAAJwAAACgAAAApAAAAc2tpcF9hdHRyaWJ1dGVfdHJhbnNmb3JtAE41ZHJhY28zN1NlcXVlbnRpYWxBdHRyaWJ1dGVEZWNvZGVyc0NvbnRyb2xsZXJFAAAAADAxAADpBgAA5AUAAGFsbG9jYXRvcjxUPjo6YWxsb2NhdGUoc2l6ZV90IG4pICduJyBleGNlZWRzIG1heGltdW0gc3VwcG9ydGVkIHNpemUAAAAAANQHAAAqAAAAKwAAACwAAAAbAAAAHAAAAB0AAAAtAAAAHwAAAC4AAAAvAAAAMAAAADEAAAAyAAAATjVkcmFjbzMzU2VxdWVudGlhbEludGVnZXJBdHRyaWJ1dGVEZWNvZGVyRQAwMQAAqAcAAIgGAAAAAAAAYAoAADMAAAA0AAAANQAAADYAAAA3AAAAOAAAADkAAAA6AAAAOwAAADwAAAA9AAAAPgAAAE41ZHJhY280ME1lc2hQcmVkaWN0aW9uU2NoZW1lUGFyYWxsZWxvZ3JhbURlY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBEZWNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvMjdNZXNoUHJlZGljdGlvblNjaGVtZURlY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBEZWNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvMjNQcmVkaWN0aW9uU2NoZW1lRGVjb2RlcklpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcERlY29kaW5nVHJhbnNmb3JtSWlpRUVFRQBONWRyYWNvMzdQcmVkaWN0aW9uU2NoZW1lVHlwZWREZWNvZGVySW50ZXJmYWNlSWlpRUUATjVkcmFjbzMyUHJlZGljdGlvblNjaGVtZURlY29kZXJJbnRlcmZhY2VFAE41ZHJhY28yNVByZWRpY3Rpb25TY2hlbWVJbnRlcmZhY2VFAAgxAAAECgAAMDEAANkJAAAoCgAAMDEAAKUJAAAwCgAAMDEAAFEJAAA8CgAAMDEAALsIAABICgAAMDEAABgIAABUCgAAAAAAAFQKAAAzAAAAPwAAABUAAAA2AAAAFQAAADgAAAA5AAAAOgAAADsAAAA8AAAAPQAAABUAAAAAAAAASAoAADMAAABAAAAAFQAAADYAAAAVAAAAOAAAADkAAAA6AAAAOwAAADwAAAA9AAAAFQAAAAAAAADICwAAQQAAAEIAAABDAAAANgAAAEQAAAA4AAAAOQAAADoAAAA7AAAAPAAAAEUAAABGAAAATjVkcmFjbzU2TWVzaFByZWRpY3Rpb25TY2hlbWVDb25zdHJhaW5lZE11bHRpUGFyYWxsZWxvZ3JhbURlY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBEZWNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQAAMDEAABQLAABUCgAAAAAAALQMAABHAAAASAAAAEkAAAA2AAAASgAAAEsAAABMAAAATQAAADsAAAA8AAAATgAAAE8AAABONWRyYWNvNDRNZXNoUHJlZGljdGlvblNjaGVtZVRleENvb3Jkc1BvcnRhYmxlRGVjb2RlcklpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcERlY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAAAwMQAADAwAAFQKAAAAAAAAoA0AAFAAAABRAAAAUgAAADYAAABTAAAAVAAAAFUAAABWAAAAOwAAADwAAABXAAAAWAAAAE41ZHJhY280Mk1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsRGVjb2RlcklpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcERlY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAAAAADAxAAD4DAAAVAoAAAAAAAAoDwAAWQAAAFoAAABbAAAAXAAAAF0AAABONWRyYWNvNDhNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbFByZWRpY3RvckFyZWFJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBEZWNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDhNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbFByZWRpY3RvckJhc2VJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBEZWNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQAAAAgxAABzDgAAMDEAAMgNAAAgDwAAAAAAAJgQAAAzAAAAXgAAAF8AAAA2AAAAYAAAADgAAAA5AAAAOgAAADsAAAA8AAAAPQAAAGEAAABONWRyYWNvNDBNZXNoUHJlZGljdGlvblNjaGVtZVBhcmFsbGVsb2dyYW1EZWNvZGVySWlOU18zN1ByZWRpY3Rpb25TY2hlbWVXcmFwRGVjb2RpbmdUcmFuc2Zvcm1JaWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvMjdNZXNoUHJlZGljdGlvblNjaGVtZURlY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBEZWNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAAAwMQAAAhAAAEgKAAAwMQAAbA8AAIwQAAAAAAAAjBAAADMAAABiAAAAFQAAADYAAAAVAAAAOAAAADkAAAA6AAAAOwAAADwAAAA9AAAAFQAAAAAAAAC8EQAAYwAAAGQAAABlAAAANgAAAGYAAAA4AAAAOQAAADoAAAA7AAAAPAAAAGcAAABoAAAATjVkcmFjbzU2TWVzaFByZWRpY3Rpb25TY2hlbWVDb25zdHJhaW5lZE11bHRpUGFyYWxsZWxvZ3JhbURlY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBEZWNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAAAAMDEAABQRAACMEAAAAAAAAJwSAABpAAAAagAAAGsAAAA2AAAAbAAAAG0AAABuAAAAbwAAADsAAAA8AAAAcAAAAHEAAABONWRyYWNvNDRNZXNoUHJlZGljdGlvblNjaGVtZVRleENvb3Jkc1BvcnRhYmxlRGVjb2RlcklpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcERlY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUAAAAwMQAAABIAAIwQAAAAAAAAeBMAAHIAAABzAAAAdAAAADYAAAB1AAAAdgAAAHcAAAB4AAAAOwAAADwAAAB5AAAAegAAAE41ZHJhY280Mk1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsRGVjb2RlcklpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcERlY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUAMDEAAOASAACMEAAAAAAAAOQUAAB7AAAAfAAAAH0AAAB+AAAAfwAAAE41ZHJhY280OE1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsUHJlZGljdG9yQXJlYUlpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcERlY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzQ4TWVzaFByZWRpY3Rpb25TY2hlbWVHZW9tZXRyaWNOb3JtYWxQcmVkaWN0b3JCYXNlSWlOU18zN1ByZWRpY3Rpb25TY2hlbWVXcmFwRGVjb2RpbmdUcmFuc2Zvcm1JaWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQAIMQAAPhQAADAxAACgEwAA3BQAAAAAAACEFQAAMwAAAIAAAACBAAAANgAAAIIAAAA4AAAAOQAAADoAAAA7AAAAPAAAAD0AAACDAAAATjVkcmFjbzI4UHJlZGljdGlvblNjaGVtZURlbHRhRGVjb2RlcklpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcERlY29kaW5nVHJhbnNmb3JtSWlpRUVFRQAAAAAwMQAAKBUAAEgKAAAAAAAA+BUAACoAAACEAAAAhQAAABsAAAAcAAAAhgAAAC0AAAAfAAAALgAAAIcAAACIAAAAiQAAAIoAAABONWRyYWNvMzJTZXF1ZW50aWFsTm9ybWFsQXR0cmlidXRlRGVjb2RlckUAADAxAADMFQAA1AcAAAAAAAAsGAAAiwAAAIwAAACNAAAAjgAAAI8AAACQAAAAkQAAAJIAAACTAAAAlAAAAJUAAACWAAAATjVkcmFjbzQyTWVzaFByZWRpY3Rpb25TY2hlbWVHZW9tZXRyaWNOb3JtYWxEZWNvZGVySWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZERlY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzI3TWVzaFByZWRpY3Rpb25TY2hlbWVEZWNvZGVySWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZERlY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzIzUHJlZGljdGlvblNjaGVtZURlY29kZXJJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRGVjb2RpbmdUcmFuc2Zvcm1JaUVFRUUAADAxAACnFwAAPAoAADAxAAD5FgAAFBgAADAxAAA8FgAAIBgAAAAAAADkGQAAlwAAAJgAAACZAAAAmgAAAJsAAABONWRyYWNvNDhNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbFByZWRpY3RvckFyZWFJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRGVjb2RpbmdUcmFuc2Zvcm1JaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDhNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbFByZWRpY3RvckJhc2VJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRGVjb2RpbmdUcmFuc2Zvcm1JaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQAAAAgxAAAXGQAAMDEAAFQYAADcGQAAAAAAAIgbAACcAAAAnQAAAJ4AAACOAAAAnwAAAKAAAAChAAAAogAAAJMAAACUAAAAowAAAKQAAABONWRyYWNvNDJNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbERlY29kZXJJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRGVjb2RpbmdUcmFuc2Zvcm1JaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY28yN01lc2hQcmVkaWN0aW9uU2NoZW1lRGVjb2RlcklpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWREZWNvZGluZ1RyYW5zZm9ybUlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUAAAAAMDEAANgaAAAUGAAAMDEAACgaAAB8GwAAAAAAACQdAAClAAAApgAAAKcAAACoAAAAqQAAAE41ZHJhY280OE1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsUHJlZGljdG9yQXJlYUlpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWREZWNvZGluZ1RyYW5zZm9ybUlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzQ4TWVzaFByZWRpY3Rpb25TY2hlbWVHZW9tZXRyaWNOb3JtYWxQcmVkaWN0b3JCYXNlSWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZERlY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQAIMQAAZhwAADAxAACwGwAAHB0AAAAAAADcHQAAqgAAAKsAAACsAAAAjgAAAK0AAACuAAAArwAAALAAAACTAAAAlAAAALEAAACyAAAATjVkcmFjbzI4UHJlZGljdGlvblNjaGVtZURlbHRhRGVjb2RlcklpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWREZWNvZGluZ1RyYW5zZm9ybUlpRUVFRQAAAAAwMQAAaB0AABQYAAAAAAAAYB4AALMAAAC0AAAAtQAAABsAAAAcAAAAtgAAAC0AAAAfAAAALgAAALcAAAAwAAAAMQAAALgAAAC5AAAAugAAAE41ZHJhY28zOFNlcXVlbnRpYWxRdWFudGl6YXRpb25BdHRyaWJ1dGVEZWNvZGVyRQAAAAAwMQAALB4AANQHAABVbnN1cHBvcnRlZCBlbmNvZGluZyBtZXRob2QuAFVuc3VwcG9ydGVkIGdlb21ldHJ5IHR5cGUuAElucHV0IGlzIG5vdCBhIG1lc2guAHNraXBfYXR0cmlidXRlX3RyYW5zZm9ybQBhbGxvY2F0b3I8VD46OmFsbG9jYXRlKHNpemVfdCBuKSAnbicgZXhjZWVkcyBtYXhpbXVtIHN1cHBvcnRlZCBzaXplAAAAAAAAAGwfAAC7AAAAvAAAAL0AAAC+AAAAFQAAAL8AAADAAAAAwQAAAMIAAADDAAAAxAAAAMUAAAAVAAAATjVkcmFjbzExTWVzaERlY29kZXJFAAAAMDEAAFQfAACkKAAAAAAAANgfAADGAAAAxwAAAL0AAADIAAAAyQAAAL8AAADAAAAAwQAAAMoAAADLAAAAzAAAAM0AAADOAAAATjVkcmFjbzIyTWVzaEVkZ2VicmVha2VyRGVjb2RlckUAAAAAMDEAALQfAABsHwAAAAAAAMwgAADPAAAA0AAAANEAAADSAAAA0wAAANQAAADVAAAA1gAAANcAAADYAAAA/////wAAAAAsIQAA2QAAANoAAADbAAAA3AAAAN0AAADeAAAA3wAAAOAAAADhAAAA4gAAAE41ZHJhY28yNk1lc2hFZGdlYnJlYWtlckRlY29kZXJJbXBsSU5TXzMxTWVzaEVkZ2VicmVha2VyVHJhdmVyc2FsRGVjb2RlckVFRQBONWRyYWNvMzVNZXNoRWRnZWJyZWFrZXJEZWNvZGVySW1wbEludGVyZmFjZUUAAAAIMQAAlCAAADAxAABIIAAAxCAAAE41ZHJhY28yNk1lc2hFZGdlYnJlYWtlckRlY29kZXJJbXBsSU5TXzM4TWVzaEVkZ2VicmVha2VyVHJhdmVyc2FsVmFsZW5jZURlY29kZXJFRUUAADAxAADYIAAAxCAAAAAAAAAoIgAA4wAAAOQAAADlAAAATjVkcmFjbzE5RGVwdGhGaXJzdFRyYXZlcnNlcklOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVOU18zNk1lc2hBdHRyaWJ1dGVJbmRpY2VzRW5jb2RpbmdPYnNlcnZlcklTMV9FRUVFAE41ZHJhY28xM1RyYXZlcnNlckJhc2VJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFTlNfMzZNZXNoQXR0cmlidXRlSW5kaWNlc0VuY29kaW5nT2JzZXJ2ZXJJUzFfRUVFRQAIMQAAuSEAADAxAABMIQAAICIAAAAAAAAgIgAA5gAAAOcAAADlAAAAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQ==\");_(8852,\"AQAAAAMAAAAFAAAABwAAAAAAAABoIwAA6AAAAOkAAADqAAAA6wAAAE41ZHJhY28yMk1lc2hUcmF2ZXJzYWxTZXF1ZW5jZXJJTlNfMjhNYXhQcmVkaWN0aW9uRGVncmVlVHJhdmVyc2VySU5TXzExQ29ybmVyVGFibGVFTlNfMzZNZXNoQXR0cmlidXRlSW5kaWNlc0VuY29kaW5nT2JzZXJ2ZXJJUzJfRUVFRUVFAE41ZHJhY28xNVBvaW50c1NlcXVlbmNlckUAAAAACDEAAEMjAAAwMQAAvCIAAGAjAAD/////AAAAAFgkAADsAAAA7QAAAO4AAABONWRyYWNvMjhNYXhQcmVkaWN0aW9uRGVncmVlVHJhdmVyc2VySU5TXzExQ29ybmVyVGFibGVFTlNfMzZNZXNoQXR0cmlidXRlSW5kaWNlc0VuY29kaW5nT2JzZXJ2ZXJJUzFfRUVFRQBONWRyYWNvMTNUcmF2ZXJzZXJCYXNlSU5TXzExQ29ybmVyVGFibGVFTlNfMzZNZXNoQXR0cmlidXRlSW5kaWNlc0VuY29kaW5nT2JzZXJ2ZXJJUzFfRUVFRQAACDEAAPUjAAAwMQAAjCMAAFAkAAAAAAAAUCQAAO8AAADwAAAA7gAAAAAAAAAQJQAA8QAAAPIAAADzAAAA9AAAAE41ZHJhY28yMk1lc2hUcmF2ZXJzYWxTZXF1ZW5jZXJJTlNfMTlEZXB0aEZpcnN0VHJhdmVyc2VySU5TXzExQ29ybmVyVGFibGVFTlNfMzZNZXNoQXR0cmlidXRlSW5kaWNlc0VuY29kaW5nT2JzZXJ2ZXJJUzJfRUVFRUVFAAAAMDEAAJAkAABgIwAAAAAAAJAlAAD1AAAA9gAAAO4AAABONWRyYWNvMTlEZXB0aEZpcnN0VHJhdmVyc2VySU5TXzExQ29ybmVyVGFibGVFTlNfMzZNZXNoQXR0cmlidXRlSW5kaWNlc0VuY29kaW5nT2JzZXJ2ZXJJUzFfRUVFRQAwMQAAMCUAAFAkAAAAAAAAQCYAAPcAAAD4AAAA+QAAAPoAAABONWRyYWNvMjJNZXNoVHJhdmVyc2FsU2VxdWVuY2VySU5TXzE5RGVwdGhGaXJzdFRyYXZlcnNlcklOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVOU18zNk1lc2hBdHRyaWJ1dGVJbmRpY2VzRW5jb2RpbmdPYnNlcnZlcklTMl9FRUVFRUUAADAxAAC0JQAAYCM=\");_(9812,\"rCYAALsAAAD7AAAAvQAAAL4AAAD8AAAAvwAAAMAAAADBAAAAwgAAAMMAAADEAAAAxQAAAP0AAABONWRyYWNvMjFNZXNoU2VxdWVudGlhbERlY29kZXJFADAxAACMJgAAbB8AAGFsbG9jYXRvcjxUPjo6YWxsb2NhdGUoc2l6ZV90IG4pICduJyBleGNlZWRzIG1heGltdW0gc3VwcG9ydGVkIHNpemUAAAAAADAnAAD+AAAA/wAAAAABAAABAQAATjVkcmFjbzE1TGluZWFyU2VxdWVuY2VyRQAAADAxAAAUJwAAYCMAAAAAAACkKAAAuwAAAAIBAAADAQAAvgAAABUAAAAEAQAAwAAAAMEAAADC\");_(10096,\"RmFpbGVkIHRvIHBhcnNlIERyYWNvIGhlYWRlci4ARFJBQ08ATm90IGEgRHJhY28gZmlsZS4ARmFpbGVkIHRvIGRlY29kZSBtZXRhZGF0YS4AVXNpbmcgaW5jb21wYXRpYmxlIGRlY29kZXIgZm9yIHRoZSBpbnB1dCBnZW9tZXRyeS4AVW5rbm93biBtYWpvciB2ZXJzaW9uLgBVbmtub3duIG1pbm9yIHZlcnNpb24uAEZhaWxlZCB0byBpbml0aWFsaXplIHRoZSBkZWNvZGVyLgBGYWlsZWQgdG8gZGVjb2RlIGdlb21ldHJ5IGRhdGEuAEZhaWxlZCB0byBkZWNvZGUgcG9pbnQgYXR0cmlidXRlcy4ATjVkcmFjbzE3UG9pbnRDbG91ZERlY29kZXJFAAAIMQAAhygAAAEAAAABAAAAAgAAAAIAAAAEAAAABAAAAAgAAAAIAAAABAAAAAgAAAABAAAAAAAAAP//////////YWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQAAAAAAUCkAAAUBAAAGAQAABwEAAAgBAABONWRyYWNvNE1lc2hFAAAAMDEAAEApAADoKgAAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBhbGxvY2F0b3I8VD46OmFsbG9jYXRlKHNpemVfdCBuKSAnbicgZXhjZWVkcyBtYXhpbXVtIHN1cHBvcnRlZCBzaXplAP////9hbGxvY2F0b3I8VD46OmFsbG9jYXRlKHNpemVfdCBuKSAnbicgZXhjZWVkcyBtYXhpbXVtIHN1cHBvcnRlZCBzaXplAGFsbG9jYXRvcjxUPjo6YWxsb2NhdGUoc2l6ZV90IG4pICduJyBleGNlZWRzIG1heGltdW0gc3VwcG9ydGVkIHNpemUAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQ==\");_(10940,\"6CoAAAkBAAAKAQAACwEAAAwBAABONWRyYWNvMTBQb2ludENsb3VkRQAAAAAIMQAA0CoAAGFsbG9jYXRvcjxUPjo6YWxsb2NhdGUoc2l6ZV90IG4pICduJyBleGNlZWRzIG1heGltdW0gc3VwcG9ydGVkIHNpemUALSsgICAwWDB4AChudWxsKQ==\");_(11088,\"EQAKABEREQAAAAAFAAAAAAAACQAAAAAL\");_(11120,\"EQAPChEREQMKBwABEwkLCwAACQYLAAALAAYRAAAAERER\");_(11169,\"Cw==\");_(11178,\"EQAKChEREQAKAAACAAkLAAAACQALAAAL\");_(11227,\"DA==\");_(11239,\"DAAAAAAMAAAAAAkMAAAAAAAMAAAM\");_(11285,\"Dg==\");_(11297,\"DQAAAAQNAAAAAAkOAAAAAAAOAAAO\");_(11343,\"EA==\");_(11355,\"DwAAAAAPAAAAAAkQAAAAAAAQAAAQAAASAAAAEhIS\");_(11410,\"EgAAABISEgAAAAAAAAk=\");_(11459,\"Cw==\");_(11471,\"CgAAAAAKAAAAAAkLAAAAAAALAAAL\");_(11517,\"DA==\");_(11529,\"DAAAAAAMAAAAAAkMAAAAAAAMAAAMAAAwMTIzNDU2Nzg5QUJDREVGLTBYKzBYIDBYLTB4KzB4IDB4AGluZgBJTkYAbmFuAE5BTgAuAAAAAIgx\");_(11620,\"AgAAAAMAAAAFAAAABwAAAAsAAAANAAAAEQAAABMAAAAXAAAAHQAAAB8AAAAlAAAAKQAAACsAAAAvAAAANQAAADsAAAA9AAAAQwAAAEcAAABJAAAATwAAAFMAAABZAAAAYQAAAGUAAABnAAAAawAAAG0AAABxAAAAfwAAAIMAAACJAAAAiwAAAJUAAACXAAAAnQAAAKMAAACnAAAArQAAALMAAAC1AAAAvwAAAMEAAADFAAAAxwAAANMAAAABAAAACwAAAA0AAAARAAAAEwAAABcAAAAdAAAAHwAAACUAAAApAAAAKwAAAC8AAAA1AAAAOwAAAD0AAABDAAAARwAAAEkAAABPAAAAUwAAAFkAAABhAAAAZQAAAGcAAABrAAAAbQAAAHEAAAB5AAAAfwAAAIMAAACJAAAAiwAAAI8AAACVAAAAlwAAAJ0AAACjAAAApwAAAKkAAACtAAAAswAAALUAAAC7AAAAvwAAAMEAAADFAAAAxwAAANE=\");_(12036,\"EgE=\");_(12075,\"//////8=\");_(12144,\"YWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBiYXNpY19zdHJpbmcAJWQAdmVjdG9yAFB1cmUgdmlydHVhbCBmdW5jdGlvbiBjYWxsZWQhAHN0ZDo6ZXhjZXB0aW9uAAAAAAAcMAAAEwEAABQBAAAVAQAAU3Q5ZXhjZXB0aW9uAAAAAAgxAAAMMAAAAAAAAEgwAAABAAAAFgEAABcBAABTdDExbG9naWNfZXJyb3IAMDEAADgwAAAcMAAAAAAAAHwwAAABAAAAGAEAABcBAABTdDEybGVuZ3RoX2Vycm9yAAAAADAxAABoMAAASDAAAFN0OXR5cGVfaW5mbwAAAAAIMQAAiDAAAE4xMF9fY3h4YWJpdjExNl9fc2hpbV90eXBlX2luZm9FAAAAADAxAACgMAAAmDAAAE4xMF9fY3h4YWJpdjExN19fY2xhc3NfdHlwZV9pbmZvRQAAADAxAADQMAAAxDAAAAAAAAD0MAAAGQEAABoBAAAbAQAAHAEAAB0BAAAeAQAAHwEAACABAAAAAAAAeDEAABkBAAAhAQAAGwEAABwBAAAdAQAAIgEAACMBAAAkAQAATjEwX19jeHhhYml2MTIwX19zaV9jbGFzc190eXBlX2luZm9FAAAAADAxAABQMQAA9DA=\");_(12680,\"BQ==\");_(12692,\"DwE=\");_(12716,\"EAEAABEBAAAUMw==\");_(12740,\"Ag==\");_(12755,\"//////8=\");_(13012,\"QDM=\");return j({\"Int8Array\":Int8Array,\"Int16Array\":Int16Array,\"Int32Array\":Int32Array,\"Uint8Array\":Uint8Array,\"Uint16Array\":Uint16Array,\"Uint32Array\":Uint32Array,\"Float32Array\":Float32Array,\"Float64Array\":Float64Array,\"NaN\":NaN,\"Infinity\":Infinity,\"Math\":Math},asmLibraryArg,wasmMemory.buffer)}\n\n\n// EMSCRIPTEN_END_ASM\n\n\n\n\n)(asmLibraryArg,wasmMemory,wasmTable);return{\"exports\":exports}},instantiate:function(binary,info){return{then:function(ok,err){ok({\"instance\":new WebAssembly.Instance(new WebAssembly.Module(binary,info))})}}},RuntimeError:Error};wasmBinary=[];if(typeof WebAssembly!==\"object\"){err(\"no native wasm support detected\")}function setValue(ptr,value,type,noSafe){type=type||\"i8\";if(type.charAt(type.length-1)===\"*\")type=\"i32\";switch(type){case\"i1\":HEAP8[ptr>>0]=value;break;case\"i8\":HEAP8[ptr>>0]=value;break;case\"i16\":HEAP16[ptr>>1]=value;break;case\"i32\":HEAP32[ptr>>2]=value;break;case\"i64\":tempI64=[value>>>0,(tempDouble=value,+Math_abs(tempDouble)>=1?tempDouble>0?(Math_min(+Math_floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math_ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case\"float\":HEAPF32[ptr>>2]=value;break;case\"double\":HEAPF64[ptr>>3]=value;break;default:abort(\"invalid type for setValue: \"+type)}}var wasmMemory;var wasmTable=new WebAssembly.Table({\"initial\":293,\"maximum\":293+0,\"element\":\"anyfunc\"});var ABORT=false;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}function getCFunc(ident){var func=Module[\"_\"+ident];assert(func,\"Cannot call unknown function \"+ident+\", make sure it is exported\");return func}function ccall(ident,returnType,argTypes,args,opts){var toC={\"string\":function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){var len=(str.length<<2)+1;ret=stackAlloc(len);stringToUTF8(str,ret,len)}return ret},\"array\":function(arr){var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType===\"string\")return UTF8ToString(ret);if(returnType===\"boolean\")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i<args.length;i++){var converter=toC[argTypes[i]];if(converter){if(stack===0)stack=stackSave();cArgs[i]=converter(args[i])}else{cArgs[i]=args[i]}}}var ret=func.apply(null,cArgs);ret=convertReturnValue(ret);if(stack!==0)stackRestore(stack);return ret}var ALLOC_NONE=3;var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str=\"\";while(idx<endPtr){var u0=u8Array[idx++];if(!(u0&128)){str+=String.fromCharCode(u0);continue}var u1=u8Array[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=u8Array[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{u0=(u0&7)<<18|u1<<12|u2<<6|u8Array[idx++]&63}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i<str.length;++i){HEAP8[buffer++>>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}var WASM_PAGE_SIZE=65536;function alignUp(x,multiple){if(x%multiple>0){x+=multiple-x%multiple}return x}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module[\"HEAP8\"]=HEAP8=new Int8Array(buf);Module[\"HEAP16\"]=HEAP16=new Int16Array(buf);Module[\"HEAP32\"]=HEAP32=new Int32Array(buf);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buf);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buf);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buf);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buf);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buf)}var STACK_BASE=5256704,DYNAMIC_BASE=5256704,DYNAMICTOP_PTR=13664;var INITIAL_TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(Module[\"wasmMemory\"]){wasmMemory=Module[\"wasmMemory\"]}else{wasmMemory=new WebAssembly.Memory({\"initial\":INITIAL_TOTAL_MEMORY/WASM_PAGE_SIZE})}if(wasmMemory){buffer=wasmMemory.buffer}INITIAL_TOTAL_MEMORY=buffer.byteLength;updateGlobalBufferAndViews(buffer);HEAP32[DYNAMICTOP_PTR>>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;function preRun(){if(Module[\"preRun\"]){if(typeof Module[\"preRun\"]==\"function\")Module[\"preRun\"]=[Module[\"preRun\"]];while(Module[\"preRun\"].length){addOnPreRun(Module[\"preRun\"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}function exitRuntime(){runtimeExited=true}function postRun(){if(Module[\"postRun\"]){if(typeof Module[\"postRun\"]==\"function\")Module[\"postRun\"]=[Module[\"postRun\"]];while(Module[\"postRun\"].length){addOnPostRun(Module[\"postRun\"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnPreMain(cb){__ATMAIN__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var Math_abs=Math.abs;var Math_ceil=Math.ceil;var Math_floor=Math.floor;var Math_min=Math.min;var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function addRunDependency(id){runDependencies++;if(Module[\"monitorRunDependencies\"]){Module[\"monitorRunDependencies\"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module[\"monitorRunDependencies\"]){Module[\"monitorRunDependencies\"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}what+=\"\";out(what);err(what);ABORT=true;EXITSTATUS=1;what=\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\";throw new WebAssembly.RuntimeError(what)}var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile=\"draco_decoder.wasm\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(){try{if(wasmBinary){return new Uint8Array(wasmBinary)}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(readBinary){return readBinary(wasmBinaryFile)}else{throw\"both async and sync fetching of the wasm failed\"}}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch===\"function\"){return fetch(wasmBinaryFile,{credentials:\"same-origin\"}).then(function(response){if(!response[\"ok\"]){throw\"failed to load wasm binary file at '\"+wasmBinaryFile+\"'\"}return response[\"arrayBuffer\"]()}).catch(function(){return getBinary()})}return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(){var info={\"env\":asmLibraryArg,\"wasi_unstable\":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;removeRunDependency(\"wasm-instantiate\")}addRunDependency(\"wasm-instantiate\");function receiveInstantiatedSource(output){receiveInstance(output[\"instance\"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming===\"function\"&&!isDataURI(wasmBinaryFile)&&typeof fetch===\"function\"){fetch(wasmBinaryFile,{credentials:\"same-origin\"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiatedSource,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");instantiateArrayBuffer(receiveInstantiatedSource)})})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module[\"instantiateWasm\"]){try{var exports=Module[\"instantiateWasm\"](info,receiveInstance);return exports}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);return false}}instantiateAsync();return{}}var tempDouble;var tempI64;__ATINIT__.push({func:function(){___wasm_call_ctors()}});function demangle(func){return func}function demangleAll(text){var regex=/\\b_Z[\\w\\d_]+/g;return text.replace(regex,function(x){var y=demangle(x);return x===y?x:y+\" [\"+x+\"]\"})}function jsStackTrace(){var err=new Error;if(!err.stack){try{throw new Error(0)}catch(e){err=e}if(!err.stack){return\"(no stack trace available)\"}}return err.stack.toString()}function ___cxa_allocate_exception(size){return _malloc(size)}var ___exception_infos={};var ___exception_last=0;function ___cxa_throw(ptr,type,destructor){___exception_infos[ptr]={ptr:ptr,adjusted:[ptr],type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};___exception_last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exceptions=1}else{__ZSt18uncaught_exceptionv.uncaught_exceptions++}throw ptr}function _abort(){abort()}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_get_sbrk_ptr(){return 13664}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=_emscripten_get_heap_size();var PAGE_MULTIPLE=65536;var LIMIT=2147483648-PAGE_MULTIPLE;if(requestedSize>LIMIT){return false}var MIN_TOTAL_MEMORY=16777216;var newSize=Math.max(oldSize,MIN_TOTAL_MEMORY);while(newSize<requestedSize){if(newSize<=536870912){newSize=alignUp(2*newSize,PAGE_MULTIPLE)}else{newSize=Math.min(alignUp((3*newSize+2147483648)/4,PAGE_MULTIPLE),LIMIT)}}var replacement=emscripten_realloc_buffer(newSize);if(!replacement){return false}return true}var ENV={};function _emscripten_get_environ(){if(!_emscripten_get_environ.strings){var env={\"USER\":\"web_user\",\"LOGNAME\":\"web_user\",\"PATH\":\"/\",\"PWD\":\"/\",\"HOME\":\"/home/web_user\",\"LANG\":(typeof navigator===\"object\"&&navigator.languages&&navigator.languages[0]||\"C\").replace(\"-\",\"_\")+\".UTF-8\",\"_\":thisProgram};for(var x in ENV){env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(x+\"=\"+env[x])}_emscripten_get_environ.strings=strings}return _emscripten_get_environ.strings}function _environ_get(__environ,environ_buf){var strings=_emscripten_get_environ();var bufSize=0;strings.forEach(function(string,i){var ptr=environ_buf+bufSize;HEAP32[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=_emscripten_get_environ();HEAP32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAP32[penviron_buf_size>>2]=bufSize;return 0}var PATH={splitPath:function(filename){var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(parts,allowAboveRoot){var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last===\".\"){parts.splice(i,1)}else if(last===\"..\"){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift(\"..\")}}return parts},normalize:function(path){var isAbsolute=path.charAt(0)===\"/\",trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(function(p){return!!p}),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:function(path){var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return\".\"}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:function(path){if(path===\"/\")return\"/\";var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join(\"/\"))},join2:function(l,r){return PATH.normalize(l+\"/\"+r)}};var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function _fd_close(fd){try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var num=0;for(var i=0;i<iovcnt;i++){var ptr=HEAP32[iov+i*8>>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j<len;j++){SYSCALLS.printChar(fd,HEAPU8[ptr+j])}num+=len}HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}var ASSERTIONS=false;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}function intArrayToString(array){var ret=[];for(var i=0;i<array.length;i++){var chr=array[i];if(chr>255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\")  at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i<input.length);return output};function intArrayFromBase64(s){if(typeof ENVIRONMENT_IS_NODE===\"boolean\"&&ENVIRONMENT_IS_NODE){var buf;try{buf=Buffer.from(s,\"base64\")}catch(_){buf=new Buffer(s,\"base64\")}return new Uint8Array(buf.buffer,buf.byteOffset,buf.byteLength)}try{var decoded=decodeBase64(s);var bytes=new Uint8Array(decoded.length);for(var i=0;i<decoded.length;++i){bytes[i]=decoded.charCodeAt(i)}return bytes}catch(_){throw new Error(\"Converting base64 string to bytes failed.\")}}function tryParseAsDataURI(filename){if(!isDataURI(filename)){return}return intArrayFromBase64(filename.slice(dataURIPrefix.length))}var asmLibraryArg={\"__cxa_allocate_exception\":___cxa_allocate_exception,\"__cxa_throw\":___cxa_throw,\"abort\":_abort,\"emscripten_get_sbrk_ptr\":_emscripten_get_sbrk_ptr,\"emscripten_memcpy_big\":_emscripten_memcpy_big,\"emscripten_resize_heap\":_emscripten_resize_heap,\"environ_get\":_environ_get,\"environ_sizes_get\":_environ_sizes_get,\"fd_close\":_fd_close,\"fd_seek\":_fd_seek,\"fd_write\":_fd_write,\"getTempRet0\":getTempRet0,\"memory\":wasmMemory,\"setTempRet0\":setTempRet0,\"table\":wasmTable};var asm=createWasm();Module[\"asm\"]=asm;var ___wasm_call_ctors=Module[\"___wasm_call_ctors\"]=function(){return Module[\"asm\"][\"__wasm_call_ctors\"].apply(null,arguments)};var _emscripten_bind_Status_code_0=Module[\"_emscripten_bind_Status_code_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Status_code_0\"].apply(null,arguments)};var _emscripten_bind_Status_ok_0=Module[\"_emscripten_bind_Status_ok_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Status_ok_0\"].apply(null,arguments)};var _emscripten_bind_Status_error_msg_0=Module[\"_emscripten_bind_Status_error_msg_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Status_error_msg_0\"].apply(null,arguments)};var _emscripten_bind_Status___destroy___0=Module[\"_emscripten_bind_Status___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Status___destroy___0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt16Array_DracoUInt16Array_0=Module[\"_emscripten_bind_DracoUInt16Array_DracoUInt16Array_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt16Array_DracoUInt16Array_0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt16Array_GetValue_1=Module[\"_emscripten_bind_DracoUInt16Array_GetValue_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt16Array_GetValue_1\"].apply(null,arguments)};var _emscripten_bind_DracoUInt16Array_size_0=Module[\"_emscripten_bind_DracoUInt16Array_size_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt16Array_size_0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt16Array___destroy___0=Module[\"_emscripten_bind_DracoUInt16Array___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt16Array___destroy___0\"].apply(null,arguments)};var _emscripten_bind_PointCloud_PointCloud_0=Module[\"_emscripten_bind_PointCloud_PointCloud_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointCloud_PointCloud_0\"].apply(null,arguments)};var _emscripten_bind_PointCloud_num_attributes_0=Module[\"_emscripten_bind_PointCloud_num_attributes_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointCloud_num_attributes_0\"].apply(null,arguments)};var _emscripten_bind_PointCloud_num_points_0=Module[\"_emscripten_bind_PointCloud_num_points_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointCloud_num_points_0\"].apply(null,arguments)};var _emscripten_bind_PointCloud___destroy___0=Module[\"_emscripten_bind_PointCloud___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointCloud___destroy___0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt8Array_DracoUInt8Array_0=Module[\"_emscripten_bind_DracoUInt8Array_DracoUInt8Array_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt8Array_DracoUInt8Array_0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt8Array_GetValue_1=Module[\"_emscripten_bind_DracoUInt8Array_GetValue_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt8Array_GetValue_1\"].apply(null,arguments)};var _emscripten_bind_DracoUInt8Array_size_0=Module[\"_emscripten_bind_DracoUInt8Array_size_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt8Array_size_0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt8Array___destroy___0=Module[\"_emscripten_bind_DracoUInt8Array___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt8Array___destroy___0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt32Array_DracoUInt32Array_0=Module[\"_emscripten_bind_DracoUInt32Array_DracoUInt32Array_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt32Array_DracoUInt32Array_0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt32Array_GetValue_1=Module[\"_emscripten_bind_DracoUInt32Array_GetValue_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt32Array_GetValue_1\"].apply(null,arguments)};var _emscripten_bind_DracoUInt32Array_size_0=Module[\"_emscripten_bind_DracoUInt32Array_size_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt32Array_size_0\"].apply(null,arguments)};var _emscripten_bind_DracoUInt32Array___destroy___0=Module[\"_emscripten_bind_DracoUInt32Array___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoUInt32Array___destroy___0\"].apply(null,arguments)};var _emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0=Module[\"_emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0\"].apply(null,arguments)};var _emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1=Module[\"_emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1\"].apply(null,arguments)};var _emscripten_bind_AttributeOctahedronTransform_quantization_bits_0=Module[\"_emscripten_bind_AttributeOctahedronTransform_quantization_bits_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeOctahedronTransform_quantization_bits_0\"].apply(null,arguments)};var _emscripten_bind_AttributeOctahedronTransform___destroy___0=Module[\"_emscripten_bind_AttributeOctahedronTransform___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeOctahedronTransform___destroy___0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_PointAttribute_0=Module[\"_emscripten_bind_PointAttribute_PointAttribute_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_PointAttribute_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_size_0=Module[\"_emscripten_bind_PointAttribute_size_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_size_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_GetAttributeTransformData_0=Module[\"_emscripten_bind_PointAttribute_GetAttributeTransformData_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_GetAttributeTransformData_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_attribute_type_0=Module[\"_emscripten_bind_PointAttribute_attribute_type_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_attribute_type_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_data_type_0=Module[\"_emscripten_bind_PointAttribute_data_type_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_data_type_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_num_components_0=Module[\"_emscripten_bind_PointAttribute_num_components_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_num_components_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_normalized_0=Module[\"_emscripten_bind_PointAttribute_normalized_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_normalized_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_byte_stride_0=Module[\"_emscripten_bind_PointAttribute_byte_stride_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_byte_stride_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_byte_offset_0=Module[\"_emscripten_bind_PointAttribute_byte_offset_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_byte_offset_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute_unique_id_0=Module[\"_emscripten_bind_PointAttribute_unique_id_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute_unique_id_0\"].apply(null,arguments)};var _emscripten_bind_PointAttribute___destroy___0=Module[\"_emscripten_bind_PointAttribute___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_PointAttribute___destroy___0\"].apply(null,arguments)};var _emscripten_bind_AttributeTransformData_AttributeTransformData_0=Module[\"_emscripten_bind_AttributeTransformData_AttributeTransformData_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeTransformData_AttributeTransformData_0\"].apply(null,arguments)};var _emscripten_bind_AttributeTransformData_transform_type_0=Module[\"_emscripten_bind_AttributeTransformData_transform_type_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeTransformData_transform_type_0\"].apply(null,arguments)};var _emscripten_bind_AttributeTransformData___destroy___0=Module[\"_emscripten_bind_AttributeTransformData___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeTransformData___destroy___0\"].apply(null,arguments)};var _emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0=Module[\"_emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0\"].apply(null,arguments)};var _emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1=Module[\"_emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1\"].apply(null,arguments)};var _emscripten_bind_AttributeQuantizationTransform_quantization_bits_0=Module[\"_emscripten_bind_AttributeQuantizationTransform_quantization_bits_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeQuantizationTransform_quantization_bits_0\"].apply(null,arguments)};var _emscripten_bind_AttributeQuantizationTransform_min_value_1=Module[\"_emscripten_bind_AttributeQuantizationTransform_min_value_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeQuantizationTransform_min_value_1\"].apply(null,arguments)};var _emscripten_bind_AttributeQuantizationTransform_range_0=Module[\"_emscripten_bind_AttributeQuantizationTransform_range_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeQuantizationTransform_range_0\"].apply(null,arguments)};var _emscripten_bind_AttributeQuantizationTransform___destroy___0=Module[\"_emscripten_bind_AttributeQuantizationTransform___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_AttributeQuantizationTransform___destroy___0\"].apply(null,arguments)};var _emscripten_bind_DracoInt8Array_DracoInt8Array_0=Module[\"_emscripten_bind_DracoInt8Array_DracoInt8Array_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt8Array_DracoInt8Array_0\"].apply(null,arguments)};var _emscripten_bind_DracoInt8Array_GetValue_1=Module[\"_emscripten_bind_DracoInt8Array_GetValue_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt8Array_GetValue_1\"].apply(null,arguments)};var _emscripten_bind_DracoInt8Array_size_0=Module[\"_emscripten_bind_DracoInt8Array_size_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt8Array_size_0\"].apply(null,arguments)};var _emscripten_bind_DracoInt8Array___destroy___0=Module[\"_emscripten_bind_DracoInt8Array___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt8Array___destroy___0\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier_MetadataQuerier_0=Module[\"_emscripten_bind_MetadataQuerier_MetadataQuerier_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier_MetadataQuerier_0\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier_HasEntry_2=Module[\"_emscripten_bind_MetadataQuerier_HasEntry_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier_HasEntry_2\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier_GetIntEntry_2=Module[\"_emscripten_bind_MetadataQuerier_GetIntEntry_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier_GetIntEntry_2\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier_GetIntEntryArray_3=Module[\"_emscripten_bind_MetadataQuerier_GetIntEntryArray_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier_GetIntEntryArray_3\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier_GetDoubleEntry_2=Module[\"_emscripten_bind_MetadataQuerier_GetDoubleEntry_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier_GetDoubleEntry_2\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier_GetStringEntry_2=Module[\"_emscripten_bind_MetadataQuerier_GetStringEntry_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier_GetStringEntry_2\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier_NumEntries_1=Module[\"_emscripten_bind_MetadataQuerier_NumEntries_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier_NumEntries_1\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier_GetEntryName_2=Module[\"_emscripten_bind_MetadataQuerier_GetEntryName_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier_GetEntryName_2\"].apply(null,arguments)};var _emscripten_bind_MetadataQuerier___destroy___0=Module[\"_emscripten_bind_MetadataQuerier___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_MetadataQuerier___destroy___0\"].apply(null,arguments)};var _emscripten_bind_DracoInt16Array_DracoInt16Array_0=Module[\"_emscripten_bind_DracoInt16Array_DracoInt16Array_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt16Array_DracoInt16Array_0\"].apply(null,arguments)};var _emscripten_bind_DracoInt16Array_GetValue_1=Module[\"_emscripten_bind_DracoInt16Array_GetValue_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt16Array_GetValue_1\"].apply(null,arguments)};var _emscripten_bind_DracoInt16Array_size_0=Module[\"_emscripten_bind_DracoInt16Array_size_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt16Array_size_0\"].apply(null,arguments)};var _emscripten_bind_DracoInt16Array___destroy___0=Module[\"_emscripten_bind_DracoInt16Array___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt16Array___destroy___0\"].apply(null,arguments)};var _emscripten_bind_DracoFloat32Array_DracoFloat32Array_0=Module[\"_emscripten_bind_DracoFloat32Array_DracoFloat32Array_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoFloat32Array_DracoFloat32Array_0\"].apply(null,arguments)};var _emscripten_bind_DracoFloat32Array_GetValue_1=Module[\"_emscripten_bind_DracoFloat32Array_GetValue_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoFloat32Array_GetValue_1\"].apply(null,arguments)};var _emscripten_bind_DracoFloat32Array_size_0=Module[\"_emscripten_bind_DracoFloat32Array_size_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoFloat32Array_size_0\"].apply(null,arguments)};var _emscripten_bind_DracoFloat32Array___destroy___0=Module[\"_emscripten_bind_DracoFloat32Array___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoFloat32Array___destroy___0\"].apply(null,arguments)};var _emscripten_bind_GeometryAttribute_GeometryAttribute_0=Module[\"_emscripten_bind_GeometryAttribute_GeometryAttribute_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_GeometryAttribute_GeometryAttribute_0\"].apply(null,arguments)};var _emscripten_bind_GeometryAttribute___destroy___0=Module[\"_emscripten_bind_GeometryAttribute___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_GeometryAttribute___destroy___0\"].apply(null,arguments)};var _emscripten_bind_DecoderBuffer_DecoderBuffer_0=Module[\"_emscripten_bind_DecoderBuffer_DecoderBuffer_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DecoderBuffer_DecoderBuffer_0\"].apply(null,arguments)};var _emscripten_bind_DecoderBuffer_Init_2=Module[\"_emscripten_bind_DecoderBuffer_Init_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_DecoderBuffer_Init_2\"].apply(null,arguments)};var _emscripten_bind_DecoderBuffer___destroy___0=Module[\"_emscripten_bind_DecoderBuffer___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DecoderBuffer___destroy___0\"].apply(null,arguments)};var _emscripten_bind_Decoder_Decoder_0=Module[\"_emscripten_bind_Decoder_Decoder_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_Decoder_0\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetEncodedGeometryType_1=Module[\"_emscripten_bind_Decoder_GetEncodedGeometryType_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetEncodedGeometryType_1\"].apply(null,arguments)};var _emscripten_bind_Decoder_DecodeBufferToPointCloud_2=Module[\"_emscripten_bind_Decoder_DecodeBufferToPointCloud_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_DecodeBufferToPointCloud_2\"].apply(null,arguments)};var _emscripten_bind_Decoder_DecodeBufferToMesh_2=Module[\"_emscripten_bind_Decoder_DecodeBufferToMesh_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_DecodeBufferToMesh_2\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeId_2=Module[\"_emscripten_bind_Decoder_GetAttributeId_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeId_2\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeIdByName_2=Module[\"_emscripten_bind_Decoder_GetAttributeIdByName_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeIdByName_2\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3=Module[\"_emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttribute_2=Module[\"_emscripten_bind_Decoder_GetAttribute_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttribute_2\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeByUniqueId_2=Module[\"_emscripten_bind_Decoder_GetAttributeByUniqueId_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeByUniqueId_2\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetMetadata_1=Module[\"_emscripten_bind_Decoder_GetMetadata_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetMetadata_1\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeMetadata_2=Module[\"_emscripten_bind_Decoder_GetAttributeMetadata_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeMetadata_2\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetFaceFromMesh_3=Module[\"_emscripten_bind_Decoder_GetFaceFromMesh_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetFaceFromMesh_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetTriangleStripsFromMesh_2=Module[\"_emscripten_bind_Decoder_GetTriangleStripsFromMesh_2\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetTriangleStripsFromMesh_2\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetTrianglesUInt16Array_3=Module[\"_emscripten_bind_Decoder_GetTrianglesUInt16Array_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetTrianglesUInt16Array_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetTrianglesUInt32Array_3=Module[\"_emscripten_bind_Decoder_GetTrianglesUInt32Array_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetTrianglesUInt32Array_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeFloat_3=Module[\"_emscripten_bind_Decoder_GetAttributeFloat_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeFloat_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3=Module[\"_emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeIntForAllPoints_3=Module[\"_emscripten_bind_Decoder_GetAttributeIntForAllPoints_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeIntForAllPoints_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3=Module[\"_emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3=Module[\"_emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3=Module[\"_emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3=Module[\"_emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3=Module[\"_emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3=Module[\"_emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3\"].apply(null,arguments)};var _emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5=Module[\"_emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5\"].apply(null,arguments)};var _emscripten_bind_Decoder_SkipAttributeTransform_1=Module[\"_emscripten_bind_Decoder_SkipAttributeTransform_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder_SkipAttributeTransform_1\"].apply(null,arguments)};var _emscripten_bind_Decoder___destroy___0=Module[\"_emscripten_bind_Decoder___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Decoder___destroy___0\"].apply(null,arguments)};var _emscripten_bind_Mesh_Mesh_0=Module[\"_emscripten_bind_Mesh_Mesh_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Mesh_Mesh_0\"].apply(null,arguments)};var _emscripten_bind_Mesh_num_faces_0=Module[\"_emscripten_bind_Mesh_num_faces_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Mesh_num_faces_0\"].apply(null,arguments)};var _emscripten_bind_Mesh_num_attributes_0=Module[\"_emscripten_bind_Mesh_num_attributes_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Mesh_num_attributes_0\"].apply(null,arguments)};var _emscripten_bind_Mesh_num_points_0=Module[\"_emscripten_bind_Mesh_num_points_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Mesh_num_points_0\"].apply(null,arguments)};var _emscripten_bind_Mesh___destroy___0=Module[\"_emscripten_bind_Mesh___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Mesh___destroy___0\"].apply(null,arguments)};var _emscripten_bind_VoidPtr___destroy___0=Module[\"_emscripten_bind_VoidPtr___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_VoidPtr___destroy___0\"].apply(null,arguments)};var _emscripten_bind_DracoInt32Array_DracoInt32Array_0=Module[\"_emscripten_bind_DracoInt32Array_DracoInt32Array_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt32Array_DracoInt32Array_0\"].apply(null,arguments)};var _emscripten_bind_DracoInt32Array_GetValue_1=Module[\"_emscripten_bind_DracoInt32Array_GetValue_1\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt32Array_GetValue_1\"].apply(null,arguments)};var _emscripten_bind_DracoInt32Array_size_0=Module[\"_emscripten_bind_DracoInt32Array_size_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt32Array_size_0\"].apply(null,arguments)};var _emscripten_bind_DracoInt32Array___destroy___0=Module[\"_emscripten_bind_DracoInt32Array___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_DracoInt32Array___destroy___0\"].apply(null,arguments)};var _emscripten_bind_Metadata_Metadata_0=Module[\"_emscripten_bind_Metadata_Metadata_0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Metadata_Metadata_0\"].apply(null,arguments)};var _emscripten_bind_Metadata___destroy___0=Module[\"_emscripten_bind_Metadata___destroy___0\"]=function(){return Module[\"asm\"][\"emscripten_bind_Metadata___destroy___0\"].apply(null,arguments)};var _emscripten_enum_draco_StatusCode_OK=Module[\"_emscripten_enum_draco_StatusCode_OK\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_StatusCode_OK\"].apply(null,arguments)};var _emscripten_enum_draco_StatusCode_DRACO_ERROR=Module[\"_emscripten_enum_draco_StatusCode_DRACO_ERROR\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_StatusCode_DRACO_ERROR\"].apply(null,arguments)};var _emscripten_enum_draco_StatusCode_IO_ERROR=Module[\"_emscripten_enum_draco_StatusCode_IO_ERROR\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_StatusCode_IO_ERROR\"].apply(null,arguments)};var _emscripten_enum_draco_StatusCode_INVALID_PARAMETER=Module[\"_emscripten_enum_draco_StatusCode_INVALID_PARAMETER\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_StatusCode_INVALID_PARAMETER\"].apply(null,arguments)};var _emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION=Module[\"_emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION\"].apply(null,arguments)};var _emscripten_enum_draco_StatusCode_UNKNOWN_VERSION=Module[\"_emscripten_enum_draco_StatusCode_UNKNOWN_VERSION\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_StatusCode_UNKNOWN_VERSION\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_INVALID=Module[\"_emscripten_enum_draco_DataType_DT_INVALID\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_INVALID\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_INT8=Module[\"_emscripten_enum_draco_DataType_DT_INT8\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_INT8\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_UINT8=Module[\"_emscripten_enum_draco_DataType_DT_UINT8\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_UINT8\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_INT16=Module[\"_emscripten_enum_draco_DataType_DT_INT16\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_INT16\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_UINT16=Module[\"_emscripten_enum_draco_DataType_DT_UINT16\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_UINT16\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_INT32=Module[\"_emscripten_enum_draco_DataType_DT_INT32\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_INT32\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_UINT32=Module[\"_emscripten_enum_draco_DataType_DT_UINT32\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_UINT32\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_INT64=Module[\"_emscripten_enum_draco_DataType_DT_INT64\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_INT64\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_UINT64=Module[\"_emscripten_enum_draco_DataType_DT_UINT64\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_UINT64\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_FLOAT32=Module[\"_emscripten_enum_draco_DataType_DT_FLOAT32\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_FLOAT32\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_FLOAT64=Module[\"_emscripten_enum_draco_DataType_DT_FLOAT64\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_FLOAT64\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_BOOL=Module[\"_emscripten_enum_draco_DataType_DT_BOOL\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_BOOL\"].apply(null,arguments)};var _emscripten_enum_draco_DataType_DT_TYPES_COUNT=Module[\"_emscripten_enum_draco_DataType_DT_TYPES_COUNT\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_DataType_DT_TYPES_COUNT\"].apply(null,arguments)};var _emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE=Module[\"_emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE\"].apply(null,arguments)};var _emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD=Module[\"_emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD\"].apply(null,arguments)};var _emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH=Module[\"_emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH\"].apply(null,arguments)};var _emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM=Module[\"_emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM\"].apply(null,arguments)};var _emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM=Module[\"_emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM\"].apply(null,arguments)};var _emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM=Module[\"_emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM\"].apply(null,arguments)};var _emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM=Module[\"_emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM\"].apply(null,arguments)};var _emscripten_enum_draco_GeometryAttribute_Type_INVALID=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_INVALID\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_GeometryAttribute_Type_INVALID\"].apply(null,arguments)};var _emscripten_enum_draco_GeometryAttribute_Type_POSITION=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_POSITION\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_GeometryAttribute_Type_POSITION\"].apply(null,arguments)};var _emscripten_enum_draco_GeometryAttribute_Type_NORMAL=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_NORMAL\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_GeometryAttribute_Type_NORMAL\"].apply(null,arguments)};var _emscripten_enum_draco_GeometryAttribute_Type_COLOR=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_COLOR\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_GeometryAttribute_Type_COLOR\"].apply(null,arguments)};var _emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD\"].apply(null,arguments)};var _emscripten_enum_draco_GeometryAttribute_Type_GENERIC=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_GENERIC\"]=function(){return Module[\"asm\"][\"emscripten_enum_draco_GeometryAttribute_Type_GENERIC\"].apply(null,arguments)};var _setThrew=Module[\"_setThrew\"]=function(){return Module[\"asm\"][\"setThrew\"].apply(null,arguments)};var __ZSt18uncaught_exceptionv=Module[\"__ZSt18uncaught_exceptionv\"]=function(){return Module[\"asm\"][\"_ZSt18uncaught_exceptionv\"].apply(null,arguments)};var _free=Module[\"_free\"]=function(){return Module[\"asm\"][\"free\"].apply(null,arguments)};var _malloc=Module[\"_malloc\"]=function(){return Module[\"asm\"][\"malloc\"].apply(null,arguments)};var stackSave=Module[\"stackSave\"]=function(){return Module[\"asm\"][\"stackSave\"].apply(null,arguments)};var stackAlloc=Module[\"stackAlloc\"]=function(){return Module[\"asm\"][\"stackAlloc\"].apply(null,arguments)};var stackRestore=Module[\"stackRestore\"]=function(){return Module[\"asm\"][\"stackRestore\"].apply(null,arguments)};var __growWasmMemory=Module[\"__growWasmMemory\"]=function(){return Module[\"asm\"][\"__growWasmMemory\"].apply(null,arguments)};var dynCall_ii=Module[\"dynCall_ii\"]=function(){return Module[\"asm\"][\"dynCall_ii\"].apply(null,arguments)};var dynCall_vi=Module[\"dynCall_vi\"]=function(){return Module[\"asm\"][\"dynCall_vi\"].apply(null,arguments)};var dynCall_iii=Module[\"dynCall_iii\"]=function(){return Module[\"asm\"][\"dynCall_iii\"].apply(null,arguments)};var dynCall_vii=Module[\"dynCall_vii\"]=function(){return Module[\"asm\"][\"dynCall_vii\"].apply(null,arguments)};var dynCall_iiii=Module[\"dynCall_iiii\"]=function(){return Module[\"asm\"][\"dynCall_iiii\"].apply(null,arguments)};var dynCall_v=Module[\"dynCall_v\"]=function(){return Module[\"asm\"][\"dynCall_v\"].apply(null,arguments)};var dynCall_viii=Module[\"dynCall_viii\"]=function(){return Module[\"asm\"][\"dynCall_viii\"].apply(null,arguments)};var dynCall_viiii=Module[\"dynCall_viiii\"]=function(){return Module[\"asm\"][\"dynCall_viiii\"].apply(null,arguments)};var dynCall_iiiiiii=Module[\"dynCall_iiiiiii\"]=function(){return Module[\"asm\"][\"dynCall_iiiiiii\"].apply(null,arguments)};var dynCall_iidiiii=Module[\"dynCall_iidiiii\"]=function(){return Module[\"asm\"][\"dynCall_iidiiii\"].apply(null,arguments)};var dynCall_jiji=Module[\"dynCall_jiji\"]=function(){return Module[\"asm\"][\"dynCall_jiji\"].apply(null,arguments)};var dynCall_viiiiii=Module[\"dynCall_viiiiii\"]=function(){return Module[\"asm\"][\"dynCall_viiiiii\"].apply(null,arguments)};var dynCall_viiiii=Module[\"dynCall_viiiii\"]=function(){return Module[\"asm\"][\"dynCall_viiiii\"].apply(null,arguments)};Module[\"asm\"]=asm;var calledRun;Module[\"then\"]=function(func){if(calledRun){func(Module)}else{var old=Module[\"onRuntimeInitialized\"];Module[\"onRuntimeInitialized\"]=function(){if(old)old();func(Module)}}return Module};function ExitStatus(status){this.name=\"ExitStatus\";this.message=\"Program terminated with exit(\"+status+\")\";this.status=status}dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(args){args=args||arguments_;if(runDependencies>0){return}preRun();if(runDependencies>0)return;function doRun(){if(calledRun)return;calledRun=true;if(ABORT)return;initRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}Module[\"run\"]=run;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}noExitRuntime=true;run();function WrapperObject(){}WrapperObject.prototype=Object.create(WrapperObject.prototype);WrapperObject.prototype.constructor=WrapperObject;WrapperObject.prototype.__class__=WrapperObject;WrapperObject.__cache__={};Module[\"WrapperObject\"]=WrapperObject;function getCache(__class__){return(__class__||WrapperObject).__cache__}Module[\"getCache\"]=getCache;function wrapPointer(ptr,__class__){var cache=getCache(__class__);var ret=cache[ptr];if(ret)return ret;ret=Object.create((__class__||WrapperObject).prototype);ret.ptr=ptr;return cache[ptr]=ret}Module[\"wrapPointer\"]=wrapPointer;function castObject(obj,__class__){return wrapPointer(obj.ptr,__class__)}Module[\"castObject\"]=castObject;Module[\"NULL\"]=wrapPointer(0);function destroy(obj){if(!obj[\"__destroy__\"])throw\"Error: Cannot destroy object. (Did you create it yourself?)\";obj[\"__destroy__\"]();delete getCache(obj.__class__)[obj.ptr]}Module[\"destroy\"]=destroy;function compare(obj1,obj2){return obj1.ptr===obj2.ptr}Module[\"compare\"]=compare;function getPointer(obj){return obj.ptr}Module[\"getPointer\"]=getPointer;function getClass(obj){return obj.__class__}Module[\"getClass\"]=getClass;var ensureCache={buffer:0,size:0,pos:0,temps:[],needed:0,prepare:function(){if(ensureCache.needed){for(var i=0;i<ensureCache.temps.length;i++){Module[\"_free\"](ensureCache.temps[i])}ensureCache.temps.length=0;Module[\"_free\"](ensureCache.buffer);ensureCache.buffer=0;ensureCache.size+=ensureCache.needed;ensureCache.needed=0}if(!ensureCache.buffer){ensureCache.size+=128;ensureCache.buffer=Module[\"_malloc\"](ensureCache.size);assert(ensureCache.buffer)}ensureCache.pos=0},alloc:function(array,view){assert(ensureCache.buffer);var bytes=view.BYTES_PER_ELEMENT;var len=array.length*bytes;len=len+7&-8;var ret;if(ensureCache.pos+len>=ensureCache.size){assert(len>0);ensureCache.needed+=len;ret=Module[\"_malloc\"](len);ensureCache.temps.push(ret)}else{ret=ensureCache.buffer+ensureCache.pos;ensureCache.pos+=len}return ret},copy:function(array,view,offset){var offsetShifted=offset;var bytes=view.BYTES_PER_ELEMENT;switch(bytes){case 2:offsetShifted>>=1;break;case 4:offsetShifted>>=2;break;case 8:offsetShifted>>=3;break}for(var i=0;i<array.length;i++){view[offsetShifted+i]=array[i]}}};function ensureString(value){if(typeof value===\"string\"){var intArray=intArrayFromString(value);var offset=ensureCache.alloc(intArray,HEAP8);ensureCache.copy(intArray,HEAP8,offset);return offset}return value}function ensureInt8(value){if(typeof value===\"object\"){var offset=ensureCache.alloc(value,HEAP8);ensureCache.copy(value,HEAP8,offset);return offset}return value}function Status(){throw\"cannot construct a Status, no constructor in IDL\"}Status.prototype=Object.create(WrapperObject.prototype);Status.prototype.constructor=Status;Status.prototype.__class__=Status;Status.__cache__={};Module[\"Status\"]=Status;Status.prototype[\"code\"]=Status.prototype.code=function(){var self=this.ptr;return _emscripten_bind_Status_code_0(self)};Status.prototype[\"ok\"]=Status.prototype.ok=function(){var self=this.ptr;return!!_emscripten_bind_Status_ok_0(self)};Status.prototype[\"error_msg\"]=Status.prototype.error_msg=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Status_error_msg_0(self))};Status.prototype[\"__destroy__\"]=Status.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Status___destroy___0(self)};function DracoUInt16Array(){this.ptr=_emscripten_bind_DracoUInt16Array_DracoUInt16Array_0();getCache(DracoUInt16Array)[this.ptr]=this}DracoUInt16Array.prototype=Object.create(WrapperObject.prototype);DracoUInt16Array.prototype.constructor=DracoUInt16Array;DracoUInt16Array.prototype.__class__=DracoUInt16Array;DracoUInt16Array.__cache__={};Module[\"DracoUInt16Array\"]=DracoUInt16Array;DracoUInt16Array.prototype[\"GetValue\"]=DracoUInt16Array.prototype.GetValue=function(index){var self=this.ptr;if(index&&typeof index===\"object\")index=index.ptr;return _emscripten_bind_DracoUInt16Array_GetValue_1(self,index)};DracoUInt16Array.prototype[\"size\"]=DracoUInt16Array.prototype.size=function(){var self=this.ptr;return _emscripten_bind_DracoUInt16Array_size_0(self)};DracoUInt16Array.prototype[\"__destroy__\"]=DracoUInt16Array.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DracoUInt16Array___destroy___0(self)};function PointCloud(){this.ptr=_emscripten_bind_PointCloud_PointCloud_0();getCache(PointCloud)[this.ptr]=this}PointCloud.prototype=Object.create(WrapperObject.prototype);PointCloud.prototype.constructor=PointCloud;PointCloud.prototype.__class__=PointCloud;PointCloud.__cache__={};Module[\"PointCloud\"]=PointCloud;PointCloud.prototype[\"num_attributes\"]=PointCloud.prototype.num_attributes=function(){var self=this.ptr;return _emscripten_bind_PointCloud_num_attributes_0(self)};PointCloud.prototype[\"num_points\"]=PointCloud.prototype.num_points=function(){var self=this.ptr;return _emscripten_bind_PointCloud_num_points_0(self)};PointCloud.prototype[\"__destroy__\"]=PointCloud.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PointCloud___destroy___0(self)};function DracoUInt8Array(){this.ptr=_emscripten_bind_DracoUInt8Array_DracoUInt8Array_0();getCache(DracoUInt8Array)[this.ptr]=this}DracoUInt8Array.prototype=Object.create(WrapperObject.prototype);DracoUInt8Array.prototype.constructor=DracoUInt8Array;DracoUInt8Array.prototype.__class__=DracoUInt8Array;DracoUInt8Array.__cache__={};Module[\"DracoUInt8Array\"]=DracoUInt8Array;DracoUInt8Array.prototype[\"GetValue\"]=DracoUInt8Array.prototype.GetValue=function(index){var self=this.ptr;if(index&&typeof index===\"object\")index=index.ptr;return _emscripten_bind_DracoUInt8Array_GetValue_1(self,index)};DracoUInt8Array.prototype[\"size\"]=DracoUInt8Array.prototype.size=function(){var self=this.ptr;return _emscripten_bind_DracoUInt8Array_size_0(self)};DracoUInt8Array.prototype[\"__destroy__\"]=DracoUInt8Array.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DracoUInt8Array___destroy___0(self)};function DracoUInt32Array(){this.ptr=_emscripten_bind_DracoUInt32Array_DracoUInt32Array_0();getCache(DracoUInt32Array)[this.ptr]=this}DracoUInt32Array.prototype=Object.create(WrapperObject.prototype);DracoUInt32Array.prototype.constructor=DracoUInt32Array;DracoUInt32Array.prototype.__class__=DracoUInt32Array;DracoUInt32Array.__cache__={};Module[\"DracoUInt32Array\"]=DracoUInt32Array;DracoUInt32Array.prototype[\"GetValue\"]=DracoUInt32Array.prototype.GetValue=function(index){var self=this.ptr;if(index&&typeof index===\"object\")index=index.ptr;return _emscripten_bind_DracoUInt32Array_GetValue_1(self,index)};DracoUInt32Array.prototype[\"size\"]=DracoUInt32Array.prototype.size=function(){var self=this.ptr;return _emscripten_bind_DracoUInt32Array_size_0(self)};DracoUInt32Array.prototype[\"__destroy__\"]=DracoUInt32Array.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DracoUInt32Array___destroy___0(self)};function AttributeOctahedronTransform(){this.ptr=_emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0();getCache(AttributeOctahedronTransform)[this.ptr]=this}AttributeOctahedronTransform.prototype=Object.create(WrapperObject.prototype);AttributeOctahedronTransform.prototype.constructor=AttributeOctahedronTransform;AttributeOctahedronTransform.prototype.__class__=AttributeOctahedronTransform;AttributeOctahedronTransform.__cache__={};Module[\"AttributeOctahedronTransform\"]=AttributeOctahedronTransform;AttributeOctahedronTransform.prototype[\"InitFromAttribute\"]=AttributeOctahedronTransform.prototype.InitFromAttribute=function(att){var self=this.ptr;if(att&&typeof att===\"object\")att=att.ptr;return!!_emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1(self,att)};AttributeOctahedronTransform.prototype[\"quantization_bits\"]=AttributeOctahedronTransform.prototype.quantization_bits=function(){var self=this.ptr;return _emscripten_bind_AttributeOctahedronTransform_quantization_bits_0(self)};AttributeOctahedronTransform.prototype[\"__destroy__\"]=AttributeOctahedronTransform.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AttributeOctahedronTransform___destroy___0(self)};function PointAttribute(){this.ptr=_emscripten_bind_PointAttribute_PointAttribute_0();getCache(PointAttribute)[this.ptr]=this}PointAttribute.prototype=Object.create(WrapperObject.prototype);PointAttribute.prototype.constructor=PointAttribute;PointAttribute.prototype.__class__=PointAttribute;PointAttribute.__cache__={};Module[\"PointAttribute\"]=PointAttribute;PointAttribute.prototype[\"size\"]=PointAttribute.prototype.size=function(){var self=this.ptr;return _emscripten_bind_PointAttribute_size_0(self)};PointAttribute.prototype[\"GetAttributeTransformData\"]=PointAttribute.prototype.GetAttributeTransformData=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PointAttribute_GetAttributeTransformData_0(self),AttributeTransformData)};PointAttribute.prototype[\"attribute_type\"]=PointAttribute.prototype.attribute_type=function(){var self=this.ptr;return _emscripten_bind_PointAttribute_attribute_type_0(self)};PointAttribute.prototype[\"data_type\"]=PointAttribute.prototype.data_type=function(){var self=this.ptr;return _emscripten_bind_PointAttribute_data_type_0(self)};PointAttribute.prototype[\"num_components\"]=PointAttribute.prototype.num_components=function(){var self=this.ptr;return _emscripten_bind_PointAttribute_num_components_0(self)};PointAttribute.prototype[\"normalized\"]=PointAttribute.prototype.normalized=function(){var self=this.ptr;return!!_emscripten_bind_PointAttribute_normalized_0(self)};PointAttribute.prototype[\"byte_stride\"]=PointAttribute.prototype.byte_stride=function(){var self=this.ptr;return _emscripten_bind_PointAttribute_byte_stride_0(self)};PointAttribute.prototype[\"byte_offset\"]=PointAttribute.prototype.byte_offset=function(){var self=this.ptr;return _emscripten_bind_PointAttribute_byte_offset_0(self)};PointAttribute.prototype[\"unique_id\"]=PointAttribute.prototype.unique_id=function(){var self=this.ptr;return _emscripten_bind_PointAttribute_unique_id_0(self)};PointAttribute.prototype[\"__destroy__\"]=PointAttribute.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PointAttribute___destroy___0(self)};function AttributeTransformData(){this.ptr=_emscripten_bind_AttributeTransformData_AttributeTransformData_0();getCache(AttributeTransformData)[this.ptr]=this}AttributeTransformData.prototype=Object.create(WrapperObject.prototype);AttributeTransformData.prototype.constructor=AttributeTransformData;AttributeTransformData.prototype.__class__=AttributeTransformData;AttributeTransformData.__cache__={};Module[\"AttributeTransformData\"]=AttributeTransformData;AttributeTransformData.prototype[\"transform_type\"]=AttributeTransformData.prototype.transform_type=function(){var self=this.ptr;return _emscripten_bind_AttributeTransformData_transform_type_0(self)};AttributeTransformData.prototype[\"__destroy__\"]=AttributeTransformData.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AttributeTransformData___destroy___0(self)};function AttributeQuantizationTransform(){this.ptr=_emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0();getCache(AttributeQuantizationTransform)[this.ptr]=this}AttributeQuantizationTransform.prototype=Object.create(WrapperObject.prototype);AttributeQuantizationTransform.prototype.constructor=AttributeQuantizationTransform;AttributeQuantizationTransform.prototype.__class__=AttributeQuantizationTransform;AttributeQuantizationTransform.__cache__={};Module[\"AttributeQuantizationTransform\"]=AttributeQuantizationTransform;AttributeQuantizationTransform.prototype[\"InitFromAttribute\"]=AttributeQuantizationTransform.prototype.InitFromAttribute=function(att){var self=this.ptr;if(att&&typeof att===\"object\")att=att.ptr;return!!_emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1(self,att)};AttributeQuantizationTransform.prototype[\"quantization_bits\"]=AttributeQuantizationTransform.prototype.quantization_bits=function(){var self=this.ptr;return _emscripten_bind_AttributeQuantizationTransform_quantization_bits_0(self)};AttributeQuantizationTransform.prototype[\"min_value\"]=AttributeQuantizationTransform.prototype.min_value=function(axis){var self=this.ptr;if(axis&&typeof axis===\"object\")axis=axis.ptr;return _emscripten_bind_AttributeQuantizationTransform_min_value_1(self,axis)};AttributeQuantizationTransform.prototype[\"range\"]=AttributeQuantizationTransform.prototype.range=function(){var self=this.ptr;return _emscripten_bind_AttributeQuantizationTransform_range_0(self)};AttributeQuantizationTransform.prototype[\"__destroy__\"]=AttributeQuantizationTransform.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AttributeQuantizationTransform___destroy___0(self)};function DracoInt8Array(){this.ptr=_emscripten_bind_DracoInt8Array_DracoInt8Array_0();getCache(DracoInt8Array)[this.ptr]=this}DracoInt8Array.prototype=Object.create(WrapperObject.prototype);DracoInt8Array.prototype.constructor=DracoInt8Array;DracoInt8Array.prototype.__class__=DracoInt8Array;DracoInt8Array.__cache__={};Module[\"DracoInt8Array\"]=DracoInt8Array;DracoInt8Array.prototype[\"GetValue\"]=DracoInt8Array.prototype.GetValue=function(index){var self=this.ptr;if(index&&typeof index===\"object\")index=index.ptr;return _emscripten_bind_DracoInt8Array_GetValue_1(self,index)};DracoInt8Array.prototype[\"size\"]=DracoInt8Array.prototype.size=function(){var self=this.ptr;return _emscripten_bind_DracoInt8Array_size_0(self)};DracoInt8Array.prototype[\"__destroy__\"]=DracoInt8Array.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DracoInt8Array___destroy___0(self)};function MetadataQuerier(){this.ptr=_emscripten_bind_MetadataQuerier_MetadataQuerier_0();getCache(MetadataQuerier)[this.ptr]=this}MetadataQuerier.prototype=Object.create(WrapperObject.prototype);MetadataQuerier.prototype.constructor=MetadataQuerier;MetadataQuerier.prototype.__class__=MetadataQuerier;MetadataQuerier.__cache__={};Module[\"MetadataQuerier\"]=MetadataQuerier;MetadataQuerier.prototype[\"HasEntry\"]=MetadataQuerier.prototype.HasEntry=function(metadata,entry_name){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata===\"object\")metadata=metadata.ptr;if(entry_name&&typeof entry_name===\"object\")entry_name=entry_name.ptr;else entry_name=ensureString(entry_name);return!!_emscripten_bind_MetadataQuerier_HasEntry_2(self,metadata,entry_name)};MetadataQuerier.prototype[\"GetIntEntry\"]=MetadataQuerier.prototype.GetIntEntry=function(metadata,entry_name){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata===\"object\")metadata=metadata.ptr;if(entry_name&&typeof entry_name===\"object\")entry_name=entry_name.ptr;else entry_name=ensureString(entry_name);return _emscripten_bind_MetadataQuerier_GetIntEntry_2(self,metadata,entry_name)};MetadataQuerier.prototype[\"GetIntEntryArray\"]=MetadataQuerier.prototype.GetIntEntryArray=function(metadata,entry_name,out_values){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata===\"object\")metadata=metadata.ptr;if(entry_name&&typeof entry_name===\"object\")entry_name=entry_name.ptr;else entry_name=ensureString(entry_name);if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;_emscripten_bind_MetadataQuerier_GetIntEntryArray_3(self,metadata,entry_name,out_values)};MetadataQuerier.prototype[\"GetDoubleEntry\"]=MetadataQuerier.prototype.GetDoubleEntry=function(metadata,entry_name){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata===\"object\")metadata=metadata.ptr;if(entry_name&&typeof entry_name===\"object\")entry_name=entry_name.ptr;else entry_name=ensureString(entry_name);return _emscripten_bind_MetadataQuerier_GetDoubleEntry_2(self,metadata,entry_name)};MetadataQuerier.prototype[\"GetStringEntry\"]=MetadataQuerier.prototype.GetStringEntry=function(metadata,entry_name){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata===\"object\")metadata=metadata.ptr;if(entry_name&&typeof entry_name===\"object\")entry_name=entry_name.ptr;else entry_name=ensureString(entry_name);return UTF8ToString(_emscripten_bind_MetadataQuerier_GetStringEntry_2(self,metadata,entry_name))};MetadataQuerier.prototype[\"NumEntries\"]=MetadataQuerier.prototype.NumEntries=function(metadata){var self=this.ptr;if(metadata&&typeof metadata===\"object\")metadata=metadata.ptr;return _emscripten_bind_MetadataQuerier_NumEntries_1(self,metadata)};MetadataQuerier.prototype[\"GetEntryName\"]=MetadataQuerier.prototype.GetEntryName=function(metadata,entry_id){var self=this.ptr;if(metadata&&typeof metadata===\"object\")metadata=metadata.ptr;if(entry_id&&typeof entry_id===\"object\")entry_id=entry_id.ptr;return UTF8ToString(_emscripten_bind_MetadataQuerier_GetEntryName_2(self,metadata,entry_id))};MetadataQuerier.prototype[\"__destroy__\"]=MetadataQuerier.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MetadataQuerier___destroy___0(self)};function DracoInt16Array(){this.ptr=_emscripten_bind_DracoInt16Array_DracoInt16Array_0();getCache(DracoInt16Array)[this.ptr]=this}DracoInt16Array.prototype=Object.create(WrapperObject.prototype);DracoInt16Array.prototype.constructor=DracoInt16Array;DracoInt16Array.prototype.__class__=DracoInt16Array;DracoInt16Array.__cache__={};Module[\"DracoInt16Array\"]=DracoInt16Array;DracoInt16Array.prototype[\"GetValue\"]=DracoInt16Array.prototype.GetValue=function(index){var self=this.ptr;if(index&&typeof index===\"object\")index=index.ptr;return _emscripten_bind_DracoInt16Array_GetValue_1(self,index)};DracoInt16Array.prototype[\"size\"]=DracoInt16Array.prototype.size=function(){var self=this.ptr;return _emscripten_bind_DracoInt16Array_size_0(self)};DracoInt16Array.prototype[\"__destroy__\"]=DracoInt16Array.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DracoInt16Array___destroy___0(self)};function DracoFloat32Array(){this.ptr=_emscripten_bind_DracoFloat32Array_DracoFloat32Array_0();getCache(DracoFloat32Array)[this.ptr]=this}DracoFloat32Array.prototype=Object.create(WrapperObject.prototype);DracoFloat32Array.prototype.constructor=DracoFloat32Array;DracoFloat32Array.prototype.__class__=DracoFloat32Array;DracoFloat32Array.__cache__={};Module[\"DracoFloat32Array\"]=DracoFloat32Array;DracoFloat32Array.prototype[\"GetValue\"]=DracoFloat32Array.prototype.GetValue=function(index){var self=this.ptr;if(index&&typeof index===\"object\")index=index.ptr;return _emscripten_bind_DracoFloat32Array_GetValue_1(self,index)};DracoFloat32Array.prototype[\"size\"]=DracoFloat32Array.prototype.size=function(){var self=this.ptr;return _emscripten_bind_DracoFloat32Array_size_0(self)};DracoFloat32Array.prototype[\"__destroy__\"]=DracoFloat32Array.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DracoFloat32Array___destroy___0(self)};function GeometryAttribute(){this.ptr=_emscripten_bind_GeometryAttribute_GeometryAttribute_0();getCache(GeometryAttribute)[this.ptr]=this}GeometryAttribute.prototype=Object.create(WrapperObject.prototype);GeometryAttribute.prototype.constructor=GeometryAttribute;GeometryAttribute.prototype.__class__=GeometryAttribute;GeometryAttribute.__cache__={};Module[\"GeometryAttribute\"]=GeometryAttribute;GeometryAttribute.prototype[\"__destroy__\"]=GeometryAttribute.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_GeometryAttribute___destroy___0(self)};function DecoderBuffer(){this.ptr=_emscripten_bind_DecoderBuffer_DecoderBuffer_0();getCache(DecoderBuffer)[this.ptr]=this}DecoderBuffer.prototype=Object.create(WrapperObject.prototype);DecoderBuffer.prototype.constructor=DecoderBuffer;DecoderBuffer.prototype.__class__=DecoderBuffer;DecoderBuffer.__cache__={};Module[\"DecoderBuffer\"]=DecoderBuffer;DecoderBuffer.prototype[\"Init\"]=DecoderBuffer.prototype.Init=function(data,data_size){var self=this.ptr;ensureCache.prepare();if(typeof data==\"object\"){data=ensureInt8(data)}if(data_size&&typeof data_size===\"object\")data_size=data_size.ptr;_emscripten_bind_DecoderBuffer_Init_2(self,data,data_size)};DecoderBuffer.prototype[\"__destroy__\"]=DecoderBuffer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DecoderBuffer___destroy___0(self)};function Decoder(){this.ptr=_emscripten_bind_Decoder_Decoder_0();getCache(Decoder)[this.ptr]=this}Decoder.prototype=Object.create(WrapperObject.prototype);Decoder.prototype.constructor=Decoder;Decoder.prototype.__class__=Decoder;Decoder.__cache__={};Module[\"Decoder\"]=Decoder;Decoder.prototype[\"GetEncodedGeometryType\"]=Decoder.prototype.GetEncodedGeometryType=function(in_buffer){var self=this.ptr;if(in_buffer&&typeof in_buffer===\"object\")in_buffer=in_buffer.ptr;return _emscripten_bind_Decoder_GetEncodedGeometryType_1(self,in_buffer)};Decoder.prototype[\"DecodeBufferToPointCloud\"]=Decoder.prototype.DecodeBufferToPointCloud=function(in_buffer,out_point_cloud){var self=this.ptr;if(in_buffer&&typeof in_buffer===\"object\")in_buffer=in_buffer.ptr;if(out_point_cloud&&typeof out_point_cloud===\"object\")out_point_cloud=out_point_cloud.ptr;return wrapPointer(_emscripten_bind_Decoder_DecodeBufferToPointCloud_2(self,in_buffer,out_point_cloud),Status)};Decoder.prototype[\"DecodeBufferToMesh\"]=Decoder.prototype.DecodeBufferToMesh=function(in_buffer,out_mesh){var self=this.ptr;if(in_buffer&&typeof in_buffer===\"object\")in_buffer=in_buffer.ptr;if(out_mesh&&typeof out_mesh===\"object\")out_mesh=out_mesh.ptr;return wrapPointer(_emscripten_bind_Decoder_DecodeBufferToMesh_2(self,in_buffer,out_mesh),Status)};Decoder.prototype[\"GetAttributeId\"]=Decoder.prototype.GetAttributeId=function(pc,type){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(type&&typeof type===\"object\")type=type.ptr;return _emscripten_bind_Decoder_GetAttributeId_2(self,pc,type)};Decoder.prototype[\"GetAttributeIdByName\"]=Decoder.prototype.GetAttributeIdByName=function(pc,name){var self=this.ptr;ensureCache.prepare();if(pc&&typeof pc===\"object\")pc=pc.ptr;if(name&&typeof name===\"object\")name=name.ptr;else name=ensureString(name);return _emscripten_bind_Decoder_GetAttributeIdByName_2(self,pc,name)};Decoder.prototype[\"GetAttributeIdByMetadataEntry\"]=Decoder.prototype.GetAttributeIdByMetadataEntry=function(pc,name,value){var self=this.ptr;ensureCache.prepare();if(pc&&typeof pc===\"object\")pc=pc.ptr;if(name&&typeof name===\"object\")name=name.ptr;else name=ensureString(name);if(value&&typeof value===\"object\")value=value.ptr;else value=ensureString(value);return _emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3(self,pc,name,value)};Decoder.prototype[\"GetAttribute\"]=Decoder.prototype.GetAttribute=function(pc,att_id){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(att_id&&typeof att_id===\"object\")att_id=att_id.ptr;return wrapPointer(_emscripten_bind_Decoder_GetAttribute_2(self,pc,att_id),PointAttribute)};Decoder.prototype[\"GetAttributeByUniqueId\"]=Decoder.prototype.GetAttributeByUniqueId=function(pc,unique_id){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(unique_id&&typeof unique_id===\"object\")unique_id=unique_id.ptr;return wrapPointer(_emscripten_bind_Decoder_GetAttributeByUniqueId_2(self,pc,unique_id),PointAttribute)};Decoder.prototype[\"GetMetadata\"]=Decoder.prototype.GetMetadata=function(pc){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;return wrapPointer(_emscripten_bind_Decoder_GetMetadata_1(self,pc),Metadata)};Decoder.prototype[\"GetAttributeMetadata\"]=Decoder.prototype.GetAttributeMetadata=function(pc,att_id){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(att_id&&typeof att_id===\"object\")att_id=att_id.ptr;return wrapPointer(_emscripten_bind_Decoder_GetAttributeMetadata_2(self,pc,att_id),Metadata)};Decoder.prototype[\"GetFaceFromMesh\"]=Decoder.prototype.GetFaceFromMesh=function(m,face_id,out_values){var self=this.ptr;if(m&&typeof m===\"object\")m=m.ptr;if(face_id&&typeof face_id===\"object\")face_id=face_id.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetFaceFromMesh_3(self,m,face_id,out_values)};Decoder.prototype[\"GetTriangleStripsFromMesh\"]=Decoder.prototype.GetTriangleStripsFromMesh=function(m,strip_values){var self=this.ptr;if(m&&typeof m===\"object\")m=m.ptr;if(strip_values&&typeof strip_values===\"object\")strip_values=strip_values.ptr;return _emscripten_bind_Decoder_GetTriangleStripsFromMesh_2(self,m,strip_values)};Decoder.prototype[\"GetTrianglesUInt16Array\"]=Decoder.prototype.GetTrianglesUInt16Array=function(m,out_size,out_values){var self=this.ptr;if(m&&typeof m===\"object\")m=m.ptr;if(out_size&&typeof out_size===\"object\")out_size=out_size.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetTrianglesUInt16Array_3(self,m,out_size,out_values)};Decoder.prototype[\"GetTrianglesUInt32Array\"]=Decoder.prototype.GetTrianglesUInt32Array=function(m,out_size,out_values){var self=this.ptr;if(m&&typeof m===\"object\")m=m.ptr;if(out_size&&typeof out_size===\"object\")out_size=out_size.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetTrianglesUInt32Array_3(self,m,out_size,out_values)};Decoder.prototype[\"GetAttributeFloat\"]=Decoder.prototype.GetAttributeFloat=function(pa,att_index,out_values){var self=this.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(att_index&&typeof att_index===\"object\")att_index=att_index.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeFloat_3(self,pa,att_index,out_values)};Decoder.prototype[\"GetAttributeFloatForAllPoints\"]=Decoder.prototype.GetAttributeFloatForAllPoints=function(pc,pa,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3(self,pc,pa,out_values)};Decoder.prototype[\"GetAttributeIntForAllPoints\"]=Decoder.prototype.GetAttributeIntForAllPoints=function(pc,pa,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeIntForAllPoints_3(self,pc,pa,out_values)};Decoder.prototype[\"GetAttributeInt8ForAllPoints\"]=Decoder.prototype.GetAttributeInt8ForAllPoints=function(pc,pa,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3(self,pc,pa,out_values)};Decoder.prototype[\"GetAttributeUInt8ForAllPoints\"]=Decoder.prototype.GetAttributeUInt8ForAllPoints=function(pc,pa,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3(self,pc,pa,out_values)};Decoder.prototype[\"GetAttributeInt16ForAllPoints\"]=Decoder.prototype.GetAttributeInt16ForAllPoints=function(pc,pa,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3(self,pc,pa,out_values)};Decoder.prototype[\"GetAttributeUInt16ForAllPoints\"]=Decoder.prototype.GetAttributeUInt16ForAllPoints=function(pc,pa,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3(self,pc,pa,out_values)};Decoder.prototype[\"GetAttributeInt32ForAllPoints\"]=Decoder.prototype.GetAttributeInt32ForAllPoints=function(pc,pa,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3(self,pc,pa,out_values)};Decoder.prototype[\"GetAttributeUInt32ForAllPoints\"]=Decoder.prototype.GetAttributeUInt32ForAllPoints=function(pc,pa,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3(self,pc,pa,out_values)};Decoder.prototype[\"GetAttributeDataArrayForAllPoints\"]=Decoder.prototype.GetAttributeDataArrayForAllPoints=function(pc,pa,data_type,out_size,out_values){var self=this.ptr;if(pc&&typeof pc===\"object\")pc=pc.ptr;if(pa&&typeof pa===\"object\")pa=pa.ptr;if(data_type&&typeof data_type===\"object\")data_type=data_type.ptr;if(out_size&&typeof out_size===\"object\")out_size=out_size.ptr;if(out_values&&typeof out_values===\"object\")out_values=out_values.ptr;return!!_emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5(self,pc,pa,data_type,out_size,out_values)};Decoder.prototype[\"SkipAttributeTransform\"]=Decoder.prototype.SkipAttributeTransform=function(att_type){var self=this.ptr;if(att_type&&typeof att_type===\"object\")att_type=att_type.ptr;_emscripten_bind_Decoder_SkipAttributeTransform_1(self,att_type)};Decoder.prototype[\"__destroy__\"]=Decoder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Decoder___destroy___0(self)};function Mesh(){this.ptr=_emscripten_bind_Mesh_Mesh_0();getCache(Mesh)[this.ptr]=this}Mesh.prototype=Object.create(WrapperObject.prototype);Mesh.prototype.constructor=Mesh;Mesh.prototype.__class__=Mesh;Mesh.__cache__={};Module[\"Mesh\"]=Mesh;Mesh.prototype[\"num_faces\"]=Mesh.prototype.num_faces=function(){var self=this.ptr;return _emscripten_bind_Mesh_num_faces_0(self)};Mesh.prototype[\"num_attributes\"]=Mesh.prototype.num_attributes=function(){var self=this.ptr;return _emscripten_bind_Mesh_num_attributes_0(self)};Mesh.prototype[\"num_points\"]=Mesh.prototype.num_points=function(){var self=this.ptr;return _emscripten_bind_Mesh_num_points_0(self)};Mesh.prototype[\"__destroy__\"]=Mesh.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Mesh___destroy___0(self)};function VoidPtr(){throw\"cannot construct a VoidPtr, no constructor in IDL\"}VoidPtr.prototype=Object.create(WrapperObject.prototype);VoidPtr.prototype.constructor=VoidPtr;VoidPtr.prototype.__class__=VoidPtr;VoidPtr.__cache__={};Module[\"VoidPtr\"]=VoidPtr;VoidPtr.prototype[\"__destroy__\"]=VoidPtr.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VoidPtr___destroy___0(self)};function DracoInt32Array(){this.ptr=_emscripten_bind_DracoInt32Array_DracoInt32Array_0();getCache(DracoInt32Array)[this.ptr]=this}DracoInt32Array.prototype=Object.create(WrapperObject.prototype);DracoInt32Array.prototype.constructor=DracoInt32Array;DracoInt32Array.prototype.__class__=DracoInt32Array;DracoInt32Array.__cache__={};Module[\"DracoInt32Array\"]=DracoInt32Array;DracoInt32Array.prototype[\"GetValue\"]=DracoInt32Array.prototype.GetValue=function(index){var self=this.ptr;if(index&&typeof index===\"object\")index=index.ptr;return _emscripten_bind_DracoInt32Array_GetValue_1(self,index)};DracoInt32Array.prototype[\"size\"]=DracoInt32Array.prototype.size=function(){var self=this.ptr;return _emscripten_bind_DracoInt32Array_size_0(self)};DracoInt32Array.prototype[\"__destroy__\"]=DracoInt32Array.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DracoInt32Array___destroy___0(self)};function Metadata(){this.ptr=_emscripten_bind_Metadata_Metadata_0();getCache(Metadata)[this.ptr]=this}Metadata.prototype=Object.create(WrapperObject.prototype);Metadata.prototype.constructor=Metadata;Metadata.prototype.__class__=Metadata;Metadata.__cache__={};Module[\"Metadata\"]=Metadata;Metadata.prototype[\"__destroy__\"]=Metadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Metadata___destroy___0(self)};(function(){function setupEnums(){Module[\"OK\"]=_emscripten_enum_draco_StatusCode_OK();Module[\"DRACO_ERROR\"]=_emscripten_enum_draco_StatusCode_DRACO_ERROR();Module[\"IO_ERROR\"]=_emscripten_enum_draco_StatusCode_IO_ERROR();Module[\"INVALID_PARAMETER\"]=_emscripten_enum_draco_StatusCode_INVALID_PARAMETER();Module[\"UNSUPPORTED_VERSION\"]=_emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION();Module[\"UNKNOWN_VERSION\"]=_emscripten_enum_draco_StatusCode_UNKNOWN_VERSION();Module[\"DT_INVALID\"]=_emscripten_enum_draco_DataType_DT_INVALID();Module[\"DT_INT8\"]=_emscripten_enum_draco_DataType_DT_INT8();Module[\"DT_UINT8\"]=_emscripten_enum_draco_DataType_DT_UINT8();Module[\"DT_INT16\"]=_emscripten_enum_draco_DataType_DT_INT16();Module[\"DT_UINT16\"]=_emscripten_enum_draco_DataType_DT_UINT16();Module[\"DT_INT32\"]=_emscripten_enum_draco_DataType_DT_INT32();Module[\"DT_UINT32\"]=_emscripten_enum_draco_DataType_DT_UINT32();Module[\"DT_INT64\"]=_emscripten_enum_draco_DataType_DT_INT64();Module[\"DT_UINT64\"]=_emscripten_enum_draco_DataType_DT_UINT64();Module[\"DT_FLOAT32\"]=_emscripten_enum_draco_DataType_DT_FLOAT32();Module[\"DT_FLOAT64\"]=_emscripten_enum_draco_DataType_DT_FLOAT64();Module[\"DT_BOOL\"]=_emscripten_enum_draco_DataType_DT_BOOL();Module[\"DT_TYPES_COUNT\"]=_emscripten_enum_draco_DataType_DT_TYPES_COUNT();Module[\"INVALID_GEOMETRY_TYPE\"]=_emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE();Module[\"POINT_CLOUD\"]=_emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD();Module[\"TRIANGULAR_MESH\"]=_emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH();Module[\"ATTRIBUTE_INVALID_TRANSFORM\"]=_emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM();Module[\"ATTRIBUTE_NO_TRANSFORM\"]=_emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM();Module[\"ATTRIBUTE_QUANTIZATION_TRANSFORM\"]=_emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM();Module[\"ATTRIBUTE_OCTAHEDRON_TRANSFORM\"]=_emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM();Module[\"INVALID\"]=_emscripten_enum_draco_GeometryAttribute_Type_INVALID();Module[\"POSITION\"]=_emscripten_enum_draco_GeometryAttribute_Type_POSITION();Module[\"NORMAL\"]=_emscripten_enum_draco_GeometryAttribute_Type_NORMAL();Module[\"COLOR\"]=_emscripten_enum_draco_GeometryAttribute_Type_COLOR();Module[\"TEX_COORD\"]=_emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD();Module[\"GENERIC\"]=_emscripten_enum_draco_GeometryAttribute_Type_GENERIC()}if(runtimeInitialized)setupEnums();else addOnPreMain(setupEnums)})();if(typeof Module[\"onModuleParsed\"]===\"function\"){Module[\"onModuleParsed\"]()}\n\n\n  return DracoDecoderModule\n}\n);\n})();\nif (typeof exports === 'object' && typeof module === 'object')\n      module.exports = DracoDecoderModule;\n    else if (typeof define === 'function' && define['amd'])\n      define([], function() { return DracoDecoderModule; });\n    else if (typeof exports === 'object')\n      exports[\"DracoDecoderModule\"] = DracoDecoderModule;\n    "
  },
  {
    "path": "public/assets/draco/gltf/draco_encoder.js",
    "content": "var DracoEncoderModule = function(DracoEncoderModule) {\n  DracoEncoderModule = DracoEncoderModule || {};\n\nvar Module=typeof DracoEncoderModule!==\"undefined\"?DracoEncoderModule:{};var isRuntimeInitialized=false;var isModuleParsed=false;Module[\"onRuntimeInitialized\"]=(function(){isRuntimeInitialized=true;if(isModuleParsed){if(typeof Module[\"onModuleLoaded\"]===\"function\"){Module[\"onModuleLoaded\"](Module)}}});Module[\"onModuleParsed\"]=(function(){isModuleParsed=true;if(isRuntimeInitialized){if(typeof Module[\"onModuleLoaded\"]===\"function\"){Module[\"onModuleLoaded\"](Module)}}});function isVersionSupported(versionString){if(typeof versionString!==\"string\")return false;const version=versionString.split(\".\");if(version.length<2||version.length>3)return false;if(version[0]==1&&version[1]>=0&&version[1]<=3)return true;if(version[0]!=0||version[1]>10)return false;return true}Module[\"isVersionSupported\"]=isVersionSupported;var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}Module[\"arguments\"]=[];Module[\"thisProgram\"]=\"./this.program\";Module[\"quit\"]=(function(status,toThrow){throw toThrow});Module[\"preRun\"]=[];Module[\"postRun\"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_IS_SHELL=false;if(Module[\"ENVIRONMENT\"]){if(Module[\"ENVIRONMENT\"]===\"WEB\"){ENVIRONMENT_IS_WEB=true}else if(Module[\"ENVIRONMENT\"]===\"WORKER\"){ENVIRONMENT_IS_WORKER=true}else if(Module[\"ENVIRONMENT\"]===\"NODE\"){ENVIRONMENT_IS_NODE=true}else if(Module[\"ENVIRONMENT\"]===\"SHELL\"){ENVIRONMENT_IS_SHELL=true}else{throw new Error(\"Module['ENVIRONMENT'] value is not valid. must be one of: WEB|WORKER|NODE|SHELL.\")}}else{ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_IS_NODE=typeof process===\"object\"&&typeof require===\"function\"&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER}if(ENVIRONMENT_IS_NODE){var nodeFS;var nodePath;Module[\"read\"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);ret=nodeFS[\"readFileSync\"](filename)}return binary?ret:ret.toString()};Module[\"readBinary\"]=function readBinary(filename){var ret=Module[\"read\"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){Module[\"thisProgram\"]=process[\"argv\"][1].replace(/\\\\/g,\"/\")}Module[\"arguments\"]=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",(function(ex){if(!(ex instanceof ExitStatus)){throw ex}}));process[\"on\"](\"unhandledRejection\",(function(reason,p){process[\"exit\"](1)}));Module[\"inspect\"]=(function(){return\"[Emscripten Module object]\"})}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){Module[\"read\"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}Module[\"readBinary\"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){Module[\"arguments\"]=scriptArgs}else if(typeof arguments!=\"undefined\"){Module[\"arguments\"]=arguments}if(typeof quit===\"function\"){Module[\"quit\"]=(function(status,toThrow){quit(status)})}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){Module[\"read\"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module[\"readBinary\"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}Module[\"readAsync\"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)};Module[\"setWindowTitle\"]=(function(title){document.title=title})}Module[\"print\"]=typeof console!==\"undefined\"?console.log.bind(console):typeof print!==\"undefined\"?print:null;Module[\"printErr\"]=typeof printErr!==\"undefined\"?printErr:typeof console!==\"undefined\"&&console.warn.bind(console)||Module[\"print\"];Module.print=Module[\"print\"];Module.printErr=Module[\"printErr\"];for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=undefined;var STACK_ALIGN=16;function staticAlloc(size){assert(!staticSealed);var ret=STATICTOP;STATICTOP=STATICTOP+size+15&-16;return ret}function dynamicAlloc(size){assert(DYNAMICTOP_PTR);var ret=HEAP32[DYNAMICTOP_PTR>>2];var end=ret+size+15&-16;HEAP32[DYNAMICTOP_PTR>>2]=end;if(end>=TOTAL_MEMORY){var success=enlargeMemory();if(!success){HEAP32[DYNAMICTOP_PTR>>2]=ret;return 0}}return ret}function alignMemory(size,factor){if(!factor)factor=STACK_ALIGN;var ret=size=Math.ceil(size/factor)*factor;return ret}function getNativeTypeSize(type){switch(type){case\"i1\":case\"i8\":return 1;case\"i16\":return 2;case\"i32\":return 4;case\"i64\":return 8;case\"float\":return 4;case\"double\":return 8;default:{if(type[type.length-1]===\"*\"){return 4}else if(type[0]===\"i\"){var bits=parseInt(type.substr(1));assert(bits%8===0);return bits/8}else{return 0}}}}function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;Module.printErr(text)}}var jsCallStartIndex=1;var functionPointers=new Array(0);var funcWrappers={};function dynCall(sig,ptr,args){if(args&&args.length){return Module[\"dynCall_\"+sig].apply(null,[ptr].concat(args))}else{return Module[\"dynCall_\"+sig].call(null,ptr)}}var GLOBAL_BASE=8;var ABORT=0;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}function getCFunc(ident){var func=Module[\"_\"+ident];assert(func,\"Cannot call unknown function \"+ident+\", make sure it is exported\");return func}var JSfuncs={\"stackSave\":(function(){stackSave()}),\"stackRestore\":(function(){stackRestore()}),\"arrayToC\":(function(arr){var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}),\"stringToC\":(function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){var len=(str.length<<2)+1;ret=stackAlloc(len);stringToUTF8(str,ret,len)}return ret})};var toC={\"string\":JSfuncs[\"stringToC\"],\"array\":JSfuncs[\"arrayToC\"]};function ccall(ident,returnType,argTypes,args,opts){var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i<args.length;i++){var converter=toC[argTypes[i]];if(converter){if(stack===0)stack=stackSave();cArgs[i]=converter(args[i])}else{cArgs[i]=args[i]}}}var ret=func.apply(null,cArgs);if(returnType===\"string\")ret=Pointer_stringify(ret);if(returnType===\"boolean\")ret=Boolean(ret);if(stack!==0){stackRestore(stack)}return ret}function setValue(ptr,value,type,noSafe){type=type||\"i8\";if(type.charAt(type.length-1)===\"*\")type=\"i32\";switch(type){case\"i1\":HEAP8[ptr>>0]=value;break;case\"i8\":HEAP8[ptr>>0]=value;break;case\"i16\":HEAP16[ptr>>1]=value;break;case\"i32\":HEAP32[ptr>>2]=value;break;case\"i64\":tempI64=[value>>>0,(tempDouble=value,+Math_abs(tempDouble)>=+1?tempDouble>+0?(Math_min(+Math_floor(tempDouble/+4294967296),+4294967295)|0)>>>0:~~+Math_ceil((tempDouble- +(~~tempDouble>>>0))/+4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case\"float\":HEAPF32[ptr>>2]=value;break;case\"double\":HEAPF64[ptr>>3]=value;break;default:abort(\"invalid type for setValue: \"+type)}}var ALLOC_STATIC=2;var ALLOC_NONE=4;function allocate(slab,types,allocator,ptr){var zeroinit,size;if(typeof slab===\"number\"){zeroinit=true;size=slab}else{zeroinit=false;size=slab.length}var singleType=typeof types===\"string\"?types:null;var ret;if(allocator==ALLOC_NONE){ret=ptr}else{ret=[typeof _malloc===\"function\"?_malloc:staticAlloc,stackAlloc,staticAlloc,dynamicAlloc][allocator===undefined?ALLOC_STATIC:allocator](Math.max(size,singleType?1:types.length))}if(zeroinit){var stop;ptr=ret;assert((ret&3)==0);stop=ret+(size&~3);for(;ptr<stop;ptr+=4){HEAP32[ptr>>2]=0}stop=ret+size;while(ptr<stop){HEAP8[ptr++>>0]=0}return ret}if(singleType===\"i8\"){if(slab.subarray||slab.slice){HEAPU8.set(slab,ret)}else{HEAPU8.set(new Uint8Array(slab),ret)}return ret}var i=0,type,typeSize,previousType;while(i<size){var curr=slab[i];type=singleType||types[i];if(type===0){i++;continue}if(type==\"i64\")type=\"i32\";setValue(ret+i,curr,type);if(previousType!==type){typeSize=getNativeTypeSize(type);previousType=type}i+=typeSize}return ret}function Pointer_stringify(ptr,length){if(length===0||!ptr)return\"\";var hasUtf=0;var t;var i=0;while(1){t=HEAPU8[ptr+i>>0];hasUtf|=t;if(t==0&&!length)break;i++;if(length&&i==length)break}if(!length)length=i;var ret=\"\";if(hasUtf<128){var MAX_CHUNK=1024;var curr;while(length>0){curr=String.fromCharCode.apply(String,HEAPU8.subarray(ptr,ptr+Math.min(length,MAX_CHUNK)));ret=ret?ret+curr:curr;ptr+=MAX_CHUNK;length-=MAX_CHUNK}return ret}return UTF8ToString(ptr)}var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx){var endPtr=idx;while(u8Array[endPtr])++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var u0,u1,u2,u3,u4,u5;var str=\"\";while(1){u0=u8Array[idx++];if(!u0)return str;if(!(u0&128)){str+=String.fromCharCode(u0);continue}u1=u8Array[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}u2=u8Array[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{u3=u8Array[idx++]&63;if((u0&248)==240){u0=(u0&7)<<18|u1<<12|u2<<6|u3}else{u4=u8Array[idx++]&63;if((u0&252)==248){u0=(u0&3)<<24|u1<<18|u2<<12|u3<<6|u4}else{u5=u8Array[idx++]&63;u0=(u0&1)<<30|u1<<24|u2<<18|u3<<12|u4<<6|u5}}}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}}}function UTF8ToString(ptr){return UTF8ArrayToString(HEAPU8,ptr)}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else if(u<=2097151){if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else if(u<=67108863){if(outIdx+4>=endIdx)break;outU8Array[outIdx++]=248|u>>24;outU8Array[outIdx++]=128|u>>18&63;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+5>=endIdx)break;outU8Array[outIdx++]=252|u>>30;outU8Array[outIdx++]=128|u>>24&63;outU8Array[outIdx++]=128|u>>18&63;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127){++len}else if(u<=2047){len+=2}else if(u<=65535){len+=3}else if(u<=2097151){len+=4}else if(u<=67108863){len+=5}else{len+=6}}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;function demangle(func){return func}function demangleAll(text){var regex=/__Z[\\w\\d_]+/g;return text.replace(regex,(function(x){var y=demangle(x);return x===y?x:x+\" [\"+y+\"]\"}))}function jsStackTrace(){var err=new Error;if(!err.stack){try{throw new Error(0)}catch(e){err=e}if(!err.stack){return\"(no stack trace available)\"}}return err.stack.toString()}var WASM_PAGE_SIZE=65536;var ASMJS_PAGE_SIZE=16777216;var MIN_TOTAL_MEMORY=16777216;function alignUp(x,multiple){if(x%multiple>0){x+=multiple-x%multiple}return x}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBuffer(buf){Module[\"buffer\"]=buffer=buf}function updateGlobalBufferViews(){Module[\"HEAP8\"]=HEAP8=new Int8Array(buffer);Module[\"HEAP16\"]=HEAP16=new Int16Array(buffer);Module[\"HEAP32\"]=HEAP32=new Int32Array(buffer);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buffer);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buffer);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buffer);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buffer);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buffer)}var STATIC_BASE,STATICTOP,staticSealed;var STACK_BASE,STACKTOP,STACK_MAX;var DYNAMIC_BASE,DYNAMICTOP_PTR;STATIC_BASE=STATICTOP=STACK_BASE=STACKTOP=STACK_MAX=DYNAMIC_BASE=DYNAMICTOP_PTR=0;staticSealed=false;function abortOnCannotGrowMemory(){abort(\"Cannot enlarge memory arrays. Either (1) compile with  -s TOTAL_MEMORY=X  with X higher than the current value \"+TOTAL_MEMORY+\", (2) compile with  -s ALLOW_MEMORY_GROWTH=1  which allows increasing the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or (4) if you want malloc to return NULL (0) instead of this abort, compile with  -s ABORTING_MALLOC=0 \")}if(!Module[\"reallocBuffer\"])Module[\"reallocBuffer\"]=(function(size){var ret;try{if(ArrayBuffer.transfer){ret=ArrayBuffer.transfer(buffer,size)}else{var oldHEAP8=HEAP8;ret=new ArrayBuffer(size);var temp=new Int8Array(ret);temp.set(oldHEAP8)}}catch(e){return false}var success=_emscripten_replace_memory(ret);if(!success)return false;return ret});function enlargeMemory(){var PAGE_MULTIPLE=Module[\"usingWasm\"]?WASM_PAGE_SIZE:ASMJS_PAGE_SIZE;var LIMIT=2147483648-PAGE_MULTIPLE;if(HEAP32[DYNAMICTOP_PTR>>2]>LIMIT){return false}var OLD_TOTAL_MEMORY=TOTAL_MEMORY;TOTAL_MEMORY=Math.max(TOTAL_MEMORY,MIN_TOTAL_MEMORY);while(TOTAL_MEMORY<HEAP32[DYNAMICTOP_PTR>>2]){if(TOTAL_MEMORY<=536870912){TOTAL_MEMORY=alignUp(2*TOTAL_MEMORY,PAGE_MULTIPLE)}else{TOTAL_MEMORY=Math.min(alignUp((3*TOTAL_MEMORY+2147483648)/4,PAGE_MULTIPLE),LIMIT)}}var replacement=Module[\"reallocBuffer\"](TOTAL_MEMORY);if(!replacement||replacement.byteLength!=TOTAL_MEMORY){TOTAL_MEMORY=OLD_TOTAL_MEMORY;return false}updateGlobalBuffer(replacement);updateGlobalBufferViews();return true}var byteLength;try{byteLength=Function.prototype.call.bind(Object.getOwnPropertyDescriptor(ArrayBuffer.prototype,\"byteLength\").get);byteLength(new ArrayBuffer(4))}catch(e){byteLength=(function(buffer){return buffer.byteLength})}var TOTAL_STACK=Module[\"TOTAL_STACK\"]||5242880;var TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(TOTAL_MEMORY<TOTAL_STACK)Module.printErr(\"TOTAL_MEMORY should be larger than TOTAL_STACK, was \"+TOTAL_MEMORY+\"! (TOTAL_STACK=\"+TOTAL_STACK+\")\");if(Module[\"buffer\"]){buffer=Module[\"buffer\"]}else{{buffer=new ArrayBuffer(TOTAL_MEMORY)}Module[\"buffer\"]=buffer}updateGlobalBufferViews();function getTotalMemory(){return TOTAL_MEMORY}HEAP32[0]=1668509029;HEAP16[1]=25459;if(HEAPU8[2]!==115||HEAPU8[3]!==99)throw\"Runtime error: expected the system to be little-endian!\";function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATEXIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;function preRun(){if(Module[\"preRun\"]){if(typeof Module[\"preRun\"]==\"function\")Module[\"preRun\"]=[Module[\"preRun\"]];while(Module[\"preRun\"].length){addOnPreRun(Module[\"preRun\"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}function exitRuntime(){callRuntimeCallbacks(__ATEXIT__);runtimeExited=true}function postRun(){if(Module[\"postRun\"]){if(typeof Module[\"postRun\"]==\"function\")Module[\"postRun\"]=[Module[\"postRun\"]];while(Module[\"postRun\"].length){addOnPostRun(Module[\"postRun\"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnPreMain(cb){__ATMAIN__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i<str.length;++i){HEAP8[buffer++>>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}var Math_abs=Math.abs;var Math_cos=Math.cos;var Math_sin=Math.sin;var Math_tan=Math.tan;var Math_acos=Math.acos;var Math_asin=Math.asin;var Math_atan=Math.atan;var Math_atan2=Math.atan2;var Math_exp=Math.exp;var Math_log=Math.log;var Math_sqrt=Math.sqrt;var Math_ceil=Math.ceil;var Math_floor=Math.floor;var Math_pow=Math.pow;var Math_imul=Math.imul;var Math_fround=Math.fround;var Math_round=Math.round;var Math_min=Math.min;var Math_max=Math.max;var Math_clz32=Math.clz32;var Math_trunc=Math.trunc;var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function addRunDependency(id){runDependencies++;if(Module[\"monitorRunDependencies\"]){Module[\"monitorRunDependencies\"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module[\"monitorRunDependencies\"]){Module[\"monitorRunDependencies\"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};var memoryInitializer=null;var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}STATIC_BASE=GLOBAL_BASE;STATICTOP=STATIC_BASE+19728;__ATINIT__.push();memoryInitializer=\"data:application/octet-stream;base64,HBwAAGQcAAAYAAAAAAAAAPQbAACLHAAAHBwAAKgcAAAYAAAAAAAAAPQbAADRHAAAHBwAAO0cAAAwAAAAAAAAAPQbAAAPHQAAHBwAADQdAAAwAAAAAAAAABwcAADsKQAASAAAAAAAAAAcHAAAZB0AAIAAAAAAAAAAHBwAAL0dAACQAAAAAAAAABwcAAARHgAAoAAAAAAAAAAcHAAARR4AALAAAAAAAAAA9BsAAHAeAAAcHAAAlB4AAMgAAAAAAAAA9BsAADIfAAAcHAAA0B8AAOAAAAAAAAAAHBwAAGggAACAAAAAAAAAABwcAADxIAAA4AAAAAAAAAAcHAAAiyEAAOAAAAAAAAAAHBwAAB0iAADgAAAAAAAAABwcAADDIgAA4AAAAAAAAAAcHAAAXiMAAOAAAAAAAAAAHBwAAPQjAABQAQAAAAAAAPQbAACfJAAAHBwAAEolAABoAQAAAAAAABwcAADvJQAAgAAAAAAAAAAcHAAAhSYAAGgBAAAAAAAAHBwAACwnAABoAQAAAAAAABwcAADLJwAAaAEAAAAAAAAcHAAAfigAAGgBAAAAAAAAHBwAACYpAABoAQAAAAAAABwcAADaNwAAYAAAAAAAAAAcHAAAGCoAAOgBAAAAAAAAHBwAAIkqAACQAAAAAAAAABwcAAD1KgAACAIAAAAAAAD0GwAAqysAABwcAABhLAAAIAIAAAAAAAAcHAAAES0AAOgBAAAAAAAAHBwAALItAAAgAgAAAAAAABwcAABkLgAAIAIAAAAAAAAcHAAADi8AACACAAAAAAAAHBwAAMwvAAAgAgAAAAAAABwcAAB/MAAAIAIAAAAAAAAcHAAALTEAAJACAAAAAAAA9BsAAPAxAAAcHAAAszIAAKgCAAAAAAAAHBwAAHAzAADoAQAAAAAAABwcAAAeNAAAqAIAAAAAAAAcHAAA3TQAAKgCAAAAAAAAHBwAAJQ1AACoAgAAAAAAABwcAABfNgAAqAIAAAAAAAAcHAAAHzcAAKgCAAAAAAAAHBwAAAU4AABgAAAAAAAAABwcAAAJOQAAmAMAAAAAAAAcHAAACzwAAIADAAAAAAAA9BsAACo5AAAcHAAAcjkAAFADAAAAAAAA9BsAADw6AAD0GwAAVjoAABwcAACROgAAUAMAAAAAAAAcHAAATjsAAFADAAAAAAAA9BsAAFc8AAAcHAAAhTwAAIADAAAAAAAAHBwAANg8AADIAwAAAAAAABwcAAAePQAAmAMAAAAAAAAcHAAABD0AAFADAAAAAAAA9BsAAD49AAAcHAAAFD4AAMgDAAAAAAAAHBwAADY+AADIAwAAAAAAABwcAACVPgAAAAQAAAAAAAD0GwAA5z4AAPQbAAAWSQAAHBwAAHZJAAAgBAAAAAAAABwcAAAjSQAAMAQAAAAAAAD0GwAAREkAABwcAABRSQAAEAQAAAAAAAAcHAAAWEoAAAgEAAAAAAAAHBwAAGhKAABIBAAAAAAAABwcAACdSgAAIAQAAAAAAAAcHAAAeUoAAGgEAAAAAAAAAAAAAAgAAAABAAAAAgAAAAEAAAABAAAAAQAAAAAAAAAgAAAAAwAAAAQAAAACAAAAAgAAAAIAAAD//////////wAAAAAwAAAABQAAAAYAAAABAAAAAwAAAAEAAAAEAAAABQAAAAIAAAAGAAAABwAAAAMAAAABAAAACAAAAAAAAAA4AAAABwAAAAgAAAABAAAAAwAAAAQAAAAEAAAABQAAAAIAAAAGAAAABwAAAAUAAAAJAAAACgAAAAAAAABIAAAACQAAAAoAAAADAAAACwAAAAwAAAAEAAAADQAAAAYAAAAHAAAADgAAAA8AAAAFAAAAAAAAAFAAAAALAAAADAAAAAYAAAAQAAAACAAAABEAAAASAAAABwAAABMAAAAUAAAACQAAABUAAAAWAAAACgAAAAEAAAAAAAAAYAAAAA0AAAAOAAAACAAAAAsAAAAXAAAABAAAAA0AAAAGAAAACwAAAA4AAAAPAAAACQAAAAIAAAAKAAAA/////wAAAACAAAAADwAAABAAAAABAAAADAAAAAEAAAANAAAAGAAAABkAAAAOAAAADwAAABoAAAABAAAAAAAAAHAAAAAPAAAAEQAAABAAAAAMAAAAEQAAAA0AAAAYAAAAGQAAAA4AAAAPAAAAGgAAAAEAAAAAAAAAMAEAAA8AAAASAAAAEgAAAAwAAAATAAAADQAAABgAAAAZAAAADgAAAA8AAAAaAAAAAgAAAAAAAAAgAQAADwAAABMAAAAUAAAADAAAABUAAAANAAAAGAAAABkAAAAOAAAADwAAABoAAAADAAAAAAAAAAABAAAUAAAAFQAAABYAAAAMAAAAFwAAABgAAAAbAAAAHAAAAA4AAAAPAAAAHQAAAAQAAAAAAAAA8AAAABYAAAAXAAAAGQAAAAwAAAAaAAAAGwAAAB4AAAAfAAAADgAAAA8AAAAgAAAABQAAAAAAAADQAAAAGAAAABkAAAAcAAAADAAAAB0AAAAeAAAAIQAAACIAAAAOAAAADwAAACMAAAAGAAAAAAAAALgAAAAaAAAAGwAAACQAAAAfAAAAAwAAAAAAAADgAAAADwAAABwAAAABAAAADAAAAAEAAAANAAAAGAAAABkAAAAOAAAADwAAABoAAAABAAAAAAAAABABAAAdAAAAHgAAACAAAAAMAAAAIQAAAA0AAAAYAAAAGQAAAA4AAAAPAAAAJQAAAAcAAAAAAAAAuAEAAA8AAAAfAAAAIgAAAAwAAAAjAAAADQAAABgAAAAZAAAADgAAAA8AAAAaAAAACAAAAAAAAACoAQAADwAAACAAAAAkAAAADAAAACUAAAANAAAAGAAAABkAAAAOAAAADwAAABoAAAAJAAAAAAAAAIgBAAAhAAAAIgAAACYAAAAMAAAAJwAAACgAAAAmAAAAJwAAAA4AAAAPAAAAKAAAAAoAAAAAAAAAeAEAACMAAAAkAAAAKQAAAAwAAAAqAAAAKwAAACkAAAAqAAAADgAAAA8AAAArAAAACwAAAAAAAABYAQAAJQAAACYAAAAsAAAADAAAAC0AAAAuAAAALAAAAC0AAAAOAAAADwAAAC4AAAAMAAAAAAAAAEABAAAnAAAAKAAAAC8AAAAvAAAABAAAAAAAAABoAQAADwAAACkAAAABAAAADAAAAAEAAAANAAAAGAAAABkAAAAOAAAADwAAABoAAAABAAAAAAAAAJgBAAAqAAAAKwAAADAAAAAMAAAAMQAAAA0AAAAYAAAAGQAAAA4AAAAPAAAAMAAAAA0AAAAAAAAAyAEAACwAAAAtAAAACwAAAAsAAAAXAAAABAAAADEAAAAyAAAAMwAAAA4AAAAPAAAACQAAAAUAAAAMAAAAAAAAANgBAAAuAAAALwAAADQAAAA1AAAANgAAADcAAAAyAAAAMwAAADgAAAA5AAAANAAAAA4AAAAAAAAAcAIAAC4AAAAwAAAAOgAAADUAAAA7AAAANwAAADIAAAAzAAAAOAAAADkAAAA0AAAADwAAAAAAAABgAgAALgAAADEAAAA8AAAANQAAAD0AAAA3AAAAMgAAADMAAAA4AAAAOQAAADQAAAAQAAAAAAAAAFACAAAyAAAAMwAAAD4AAAA1AAAAPwAAADcAAAAyAAAAMwAAADgAAAA5AAAANQAAABEAAAAAAAAAQAIAADQAAAA1AAAAQAAAADUAAABBAAAAQgAAADYAAAA3AAAAOAAAADkAAAA4AAAAEgAAAAAAAAAwAgAANgAAADcAAABDAAAANQAAAEQAAABFAAAAOQAAADoAAAA4AAAAOQAAADsAAAATAAAAAAAAABACAAA4AAAAOQAAAEYAAAA1AAAARwAAAEgAAAA8AAAAPQAAADgAAAA5AAAAPgAAABQAAAAAAAAA+AEAADoAAAA7AAAAPwAAAEkAAAAGAAAAAAAAAPgCAAAuAAAAPAAAAEoAAAA1AAAASwAAADcAAAAyAAAAMwAAADgAAAA5AAAANAAAABUAAAAAAAAA6AIAAC4AAAA9AAAATAAAADUAAABNAAAANwAAADIAAAAzAAAAOAAAADkAAAA0AAAAFgAAAAAAAADYAgAAPgAAAD8AAABOAAAANQAAAE8AAAA3AAAAMgAAADMAAAA4AAAAOQAAAEAAAAAXAAAAAAAAAMgCAABAAAAAQQAAAFAAAAA1AAAAUQAAAFIAAABBAAAAQgAAADgAAAA5AAAAQwAAABgAAAAAAAAAuAIAAEIAAABDAAAAUwAAADUAAABUAAAAVQAAAEQAAABFAAAAOAAAADkAAABGAAAAGQAAAAAAAACYAgAARAAAAEUAAABWAAAANQAAAFcAAABYAAAARwAAAEgAAAA4AAAAOQAAAEkAAAAaAAAAAAAAAIACAABGAAAARwAAAEoAAABZAAAABwAAAAAAAAAIAwAASAAAAEkAAAANAAAACwAAABcAAAAEAAAASwAAAFoAAABbAAAADgAAAA8AAAAJAAAAAgAAAA4AAAAAAAAAGAMAAEoAAABLAAAAXAAAAF0AAABeAAAAXwAAAGAAAABhAAAAYgAAAEwAAABNAAAAYwAAAGQAAABOAAAATwAAAGUAAAAAAAAAKAMAAEwAAABNAAAAUAAAAFEAAABSAAAAUwAAAFQAAABmAAAAZwAAAFUAAABoAAAAAQAAAAMAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAMAAAAAAAAAQAMAAE4AAABPAAAAVgAAAGkAAAAAAAAAOAMAAFAAAABRAAAAUgAAAP////8AAAAAYAMAAFMAAABUAAAAVwAAAGoAAAAAAAAAWAMAAFUAAABWAAAAVwAAAAAAAABwAwAAWAAAAFkAAABYAAAAawAAAAAAAACIAwAAWgAAAFsAAABZAAAAWgAAAFsAAABcAAAAXQAAAGwAAABtAAAAXgAAAG4AAAAAAAAAAQAAAAUAAAACAAAABQAAAAMAAAAFAAAABAAAAAAAAACYAwAAXAAAAF0AAABcAAAAAQAAAG8AAABfAAAAYAAAAGEAAABiAAAAAQAAAF8AAABjAAAAcAAAAGAAAABhAAAAAQAAAAAAAACoAwAAXAAAAF4AAABcAAAAcQAAAG8AAABfAAAAYAAAAGEAAABiAAAAYgAAAF8AAABjAAAAcAAAAGAAAABhAAAAcgAAAAAAAAC4AwAAXwAAAGAAAABjAAAAcwAAAAAAAADIAwAAXAAAAGEAAAB0AAAAAQAAAG8AAABfAAAAdQAAAGEAAABiAAAAAQAAAF8AAABjAAAAAAAAANADAABcAAAAYgAAAHQAAAB2AAAAbwAAAF8AAAB3AAAAYQAAAGIAAABkAAAAXwAAAGMAAAAAAAAA4AMAAFwAAABjAAAAdAAAAHgAAABvAAAAXwAAAHkAAABhAAAAYgAAAGUAAABfAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAFZVVVUCAAAAAAAAAAIAAACamZmZAwAAAFZVVVUDAAAAJUmSJAMAAAAAAAAAAwAAAMhxHMcEAAAAmpmZmQQAAABGF110BAAAAFZVVVUEAAAAPLETOwQAAAAlSZIkBAAAABIREREEAAAAAAAAAAQAAADi4eHhBQAAAMhxHMcFAAAAy2sorwUAAACamZmZBQAAAIdhGIYFAAAARhdddAUAAACRhSxkBQAAAFZVVVUFAAAAexSuRwUAAAA8sRM7BQAAANtLaC8FAAAAJUmSJAUAAAASlnsaBQAAABIREREFAAAAhRBCCAUAAAAAAAAABQAAAAgffPAGAAAA4uHh4QYAAADVQR3UBgAAAMhxHMcGAAAATZHPugYAAADLayivBgAAAKVBGqQGAAAAmpmZmQYAAAD6GJyPBgAAAIdhGIYGAAAAGPQFfQYAAABGF110BgAAAG3BFmwGAAAAkYUsZAYAAAC6gphcBgAAAFZVVVUGAAAAcwpeTgYAAAB7FK5HBgAAAEJBQUEGAAAAPLETOwYAAACzzyE1BgAAANtLaC8GAAAAnxLkKQYAAAAlSZIkBgAAAN1HcB8GAAAAEpZ7GgYAAAD45bEVBgAAABIREREGAAAA/BSXDAYAAACFEEIIBgAAAAVBEAQGAAAAAAAAAAYAAAD5gR/4BwAAAAgffPAHAAAAwBoT6QcAAADi4eHhBwAAAGwH5toHAAAA1UEd1AcAAACRaIXNBwAAAMhxHMcHAAAAOXDgwAcAAABNkc+6BwAAAE8b6LQHAAAAy2sorwcAAAAH9o6pBwAAAKVBGqQHAAAAUunIngcAAACamZmZBwAAAM4Pi5QHAAAA+hicjwcAAAD3kMuKBwAAAIdhGIYHAAAAgoGBgQcAAAAY9AV9BwAAABjIpHgHAAAARhdddAcAAADBBS5wBwAAAG3BFmwHAAAAaYEWaAcAAACRhSxkBwAAAAYWWGAHAAAAuoKYXAcAAAAJI+1YBwAAAFZVVVUHAAAAr37QUQcAAABzCl5OBwAAAAZq/UoHAAAAexSuRwcAAABXhm9EBwAAAEJBQUEHAAAAz8siPgcAAAA8sRM7BwAAADmBEzgHAAAAs88hNQcAAACjND4yBwAAANtLaC8HAAAA2bSfLAcAAACfEuQpBwAAAIkLNScHAAAAJUmSJAcAAAATePshBwAAAN1HcB8HAAAA22rwHAcAAAASlnsaBwAAABmBERgHAAAA+OWxFQcAAAAUgVwTBwAAABIREREHAAAAv1bPDgcAAAD8FJcMBwAAAKcQaAoHAAAAhRBCCAcAAAAw3SQGBwAAAAVBEAQHAAAAEQgEAgcAAAAAAAAABwAAACDwB/wIAAAA+YEf+AgAAADlWUb0CAAAAAgffPAIAAAAMXvA7AgAAADAGhPpCAAAAJGsc+UIAAAA4uHh4QgAAABAbl3eCAAAAGwH5toIAAAATGV71wgAAADVQR3UCAAAAPdYy9AIAAAAkWiFzQgAAABWMEvKCAAAAMhxHMcIAAAAHfD4wwgAAAA5cODACAAAAJq40r0IAAAATZHPuggAAADew9a3CAAAAE8b6LQIAAAAB2QDsggAAADLayivCAAAAK0BV6wIAAAAB/aOqQgAAABuGtCmCAAAAKVBGqQIAAAAmD9toQgAAABS6cieCAAAAO8ULZwIAAAAmpmZmQgAAACBTw6XCAAAAM4Pi5QIAAAAnrQPkggAAAD6GJyPCAAAANQYMI0IAAAA95DLiggAAAALX26ICAAAAIdhGIYIAAAArHfJgwgAAACCgYGBCAAAANFfQH8IAAAAGPQFfQgAAACPINJ6CAAAABjIpHgIAAAARM59dggAAABGF110CAAAAPWHQnIIAAAAwQUucAgAAAC1dh9uCAAAAG3BFmwIAAAAFs0TaggAAABpgRZoCAAAAKbGHmYIAAAAkYUsZAgAAABxpz9iCAAAAAYWWGAIAAAAjrt1XggAAAC6gphcCAAAALFWwFoIAAAACSPtWAgAAADG0x5XCAAAAFZVVVUIAAAAkJSQUwgAAACvftBRCAAAAFEBFVAIAAAAcwpeTggAAABziKtMCAAAAAZq/UoIAAAAPJ5TSQgAAAB7FK5HCAAAAIC8DEYIAAAAV4ZvRAgAAABeYtZCCAAAAEJBQUEIAAAA/BOwPwgAAADPyyI+CAAAAEhamTwIAAAAPLETOwgAAADCwpE5CAAAADmBEzgIAAAAPt+YNggAAACzzyE1CAAAALZFrjMIAAAAozQ+MggAAAAUkNEwCAAAANtLaC8IAAAABVwCLggAAADZtJ8sCAAAANFKQCsIAAAAnxLkKQgAAAApAYsoCAAAAIkLNScIAAAACSfiJQgAAAAlSZIkCAAAAIpnRSMIAAAAE3j7IQgAAADHcLQgCAAAAN1HcB8IAAAAtPMuHggAAADbavAcCAAAAAWktBsIAAAAEpZ7GggAAAAJOEUZCAAAABmBERgIAAAAlWjgFggAAAD45bEVCAAAAOHwhRQIAAAAFIFcEwgAAAB2jjUSCAAAABIREREIAAAAEAHvDwgAAAC/Vs8OCAAAAIkKsg0IAAAA/BSXDAgAAADDbn4LCAAAAKcQaAoIAAAAkfNTCQgAAACFEEIICAAAAKVgMgcIAAAAMN0kBggAAAB+fxkFCAAAAAVBEAQIAAAAUhsJAwgAAAARCAQCCAAAAAIBAQEIAAAA/////wAAAADwAwAAZAAAAGUAAAAIAAAAAwAAAHoAAABmAAAACQAAAP////8AAAAAAAQAAGcAAABoAAAACgAAAAQAAAB6AAAAZgAAAAsAAAD/////VBgAAAUAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAQAAAACE0AAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAP//////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANxMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABkAAAA6AMAABAnAACghgEAQEIPAICWmAAA4fUFX3CJAP8JLw8AAAAAAgAAAAMAAAAFAAAABwAAAAsAAAANAAAAEQAAABMAAAAXAAAAHQAAAB8AAAAlAAAAKQAAACsAAAAvAAAANQAAADsAAAA9AAAAQwAAAEcAAABJAAAATwAAAFMAAABZAAAAYQAAAGUAAABnAAAAawAAAG0AAABxAAAAfwAAAIMAAACJAAAAiwAAAJUAAACXAAAAnQAAAKMAAACnAAAArQAAALMAAAC1AAAAvwAAAMEAAADFAAAAxwAAANMAAAABAAAACwAAAA0AAAARAAAAEwAAABcAAAAdAAAAHwAAACUAAAApAAAAKwAAAC8AAAA1AAAAOwAAAD0AAABDAAAARwAAAEkAAABPAAAAUwAAAFkAAABhAAAAZQAAAGcAAABrAAAAbQAAAHEAAAB5AAAAfwAAAIMAAACJAAAAiwAAAI8AAACVAAAAlwAAAJ0AAACjAAAApwAAAKkAAACtAAAAswAAALUAAAC7AAAAvwAAAMEAAADFAAAAxwAAANEAAAACAAAAAAAAABAEAABpAAAAagAAAGsAAABsAAAAEgAAAAEAAAABAAAAAQAAAAAAAAA4BAAAaQAAAG0AAABrAAAAbAAAABIAAAACAAAAAgAAAAIAAAAAAAAASAQAAG4AAABvAAAAfAAAAAAAAABYBAAAbgAAAHAAAAB8AAAATjVkcmFjbzI4QXR0cmlidXRlT2N0YWhlZHJvblRyYW5zZm9ybUUATjVkcmFjbzE4QXR0cmlidXRlVHJhbnNmb3JtRQBONWRyYWNvMzBBdHRyaWJ1dGVRdWFudGl6YXRpb25UcmFuc2Zvcm1FAE41ZHJhY28xN0F0dHJpYnV0ZXNFbmNvZGVyRQBONWRyYWNvMjNLZFRyZWVBdHRyaWJ1dGVzRW5jb2RlckUATjVkcmFjbzI2U2VxdWVudGlhbEF0dHJpYnV0ZUVuY29kZXJFAE41ZHJhY28zN1NlcXVlbnRpYWxBdHRyaWJ1dGVFbmNvZGVyc0NvbnRyb2xsZXJFAE41ZHJhY28yOFByZWRpY3Rpb25TY2hlbWVEZWx0YUVuY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFRUUATjVkcmFjbzIzUHJlZGljdGlvblNjaGVtZUVuY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFRUUATjVkcmFjbzM3UHJlZGljdGlvblNjaGVtZVR5cGVkRW5jb2RlckludGVyZmFjZUlpaUVFAE41ZHJhY28zMlByZWRpY3Rpb25TY2hlbWVFbmNvZGVySW50ZXJmYWNlRQBONWRyYWNvMjVQcmVkaWN0aW9uU2NoZW1lSW50ZXJmYWNlRQBONWRyYWNvNDhNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbFByZWRpY3RvckFyZWFJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY280OE1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsUHJlZGljdG9yQmFzZUlpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcEVuY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzQyTWVzaFByZWRpY3Rpb25TY2hlbWVHZW9tZXRyaWNOb3JtYWxFbmNvZGVySWlOU18zN1ByZWRpY3Rpb25TY2hlbWVXcmFwRW5jb2RpbmdUcmFuc2Zvcm1JaWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvMjdNZXNoUHJlZGljdGlvblNjaGVtZUVuY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY280NE1lc2hQcmVkaWN0aW9uU2NoZW1lVGV4Q29vcmRzUG9ydGFibGVFbmNvZGVySWlOU18zN1ByZWRpY3Rpb25TY2hlbWVXcmFwRW5jb2RpbmdUcmFuc2Zvcm1JaWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvMzZNZXNoUHJlZGljdGlvblNjaGVtZVRleENvb3Jkc0VuY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY281Nk1lc2hQcmVkaWN0aW9uU2NoZW1lQ29uc3RyYWluZWRNdWx0aVBhcmFsbGVsb2dyYW1FbmNvZGVySWlOU18zN1ByZWRpY3Rpb25TY2hlbWVXcmFwRW5jb2RpbmdUcmFuc2Zvcm1JaWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDVNZXNoUHJlZGljdGlvblNjaGVtZU11bHRpUGFyYWxsZWxvZ3JhbUVuY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY280ME1lc2hQcmVkaWN0aW9uU2NoZW1lUGFyYWxsZWxvZ3JhbUVuY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY280OE1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsUHJlZGljdG9yQXJlYUlpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcEVuY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY280OE1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsUHJlZGljdG9yQmFzZUlpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcEVuY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY280Mk1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsRW5jb2RlcklpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcEVuY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY28yN01lc2hQcmVkaWN0aW9uU2NoZW1lRW5jb2RlcklpTlNfMzdQcmVkaWN0aW9uU2NoZW1lV3JhcEVuY29kaW5nVHJhbnNmb3JtSWlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY280NE1lc2hQcmVkaWN0aW9uU2NoZW1lVGV4Q29vcmRzUG9ydGFibGVFbmNvZGVySWlOU18zN1ByZWRpY3Rpb25TY2hlbWVXcmFwRW5jb2RpbmdUcmFuc2Zvcm1JaWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzM2TWVzaFByZWRpY3Rpb25TY2hlbWVUZXhDb29yZHNFbmNvZGVySWlOU18zN1ByZWRpY3Rpb25TY2hlbWVXcmFwRW5jb2RpbmdUcmFuc2Zvcm1JaWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzU2TWVzaFByZWRpY3Rpb25TY2hlbWVDb25zdHJhaW5lZE11bHRpUGFyYWxsZWxvZ3JhbUVuY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDVNZXNoUHJlZGljdGlvblNjaGVtZU11bHRpUGFyYWxsZWxvZ3JhbUVuY29kZXJJaU5TXzM3UHJlZGljdGlvblNjaGVtZVdyYXBFbmNvZGluZ1RyYW5zZm9ybUlpaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDBNZXNoUHJlZGljdGlvblNjaGVtZVBhcmFsbGVsb2dyYW1FbmNvZGVySWlOU18zN1ByZWRpY3Rpb25TY2hlbWVXcmFwRW5jb2RpbmdUcmFuc2Zvcm1JaWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFRUUAdXNlX2J1aWx0X2luX2F0dHJpYnV0ZV9jb21wcmVzc2lvbgBONWRyYWNvMzNTZXF1ZW50aWFsSW50ZWdlckF0dHJpYnV0ZUVuY29kZXJFAE41ZHJhY28yOFByZWRpY3Rpb25TY2hlbWVEZWx0YUVuY29kZXJJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRW5jb2RpbmdUcmFuc2Zvcm1JaUVFRUUATjVkcmFjbzIzUHJlZGljdGlvblNjaGVtZUVuY29kZXJJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRW5jb2RpbmdUcmFuc2Zvcm1JaUVFRUUATjVkcmFjbzQ4TWVzaFByZWRpY3Rpb25TY2hlbWVHZW9tZXRyaWNOb3JtYWxQcmVkaWN0b3JBcmVhSWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZEVuY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDhNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbFByZWRpY3RvckJhc2VJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRW5jb2RpbmdUcmFuc2Zvcm1JaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMTFDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY280Mk1lc2hQcmVkaWN0aW9uU2NoZW1lR2VvbWV0cmljTm9ybWFsRW5jb2RlcklpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWRFbmNvZGluZ1RyYW5zZm9ybUlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzI3TWVzaFByZWRpY3Rpb25TY2hlbWVFbmNvZGVySWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZEVuY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDRNZXNoUHJlZGljdGlvblNjaGVtZVRleENvb3Jkc1BvcnRhYmxlRW5jb2RlcklpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWRFbmNvZGluZ1RyYW5zZm9ybUlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzM2TWVzaFByZWRpY3Rpb25TY2hlbWVUZXhDb29yZHNFbmNvZGVySWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZEVuY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNTZNZXNoUHJlZGljdGlvblNjaGVtZUNvbnN0cmFpbmVkTXVsdGlQYXJhbGxlbG9ncmFtRW5jb2RlcklpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWRFbmNvZGluZ1RyYW5zZm9ybUlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18xMUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzQ1TWVzaFByZWRpY3Rpb25TY2hlbWVNdWx0aVBhcmFsbGVsb2dyYW1FbmNvZGVySWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZEVuY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDBNZXNoUHJlZGljdGlvblNjaGVtZVBhcmFsbGVsb2dyYW1FbmNvZGVySWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZEVuY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzExQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDhNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbFByZWRpY3RvckFyZWFJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRW5jb2RpbmdUcmFuc2Zvcm1JaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDhNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbFByZWRpY3RvckJhc2VJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRW5jb2RpbmdUcmFuc2Zvcm1JaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDJNZXNoUHJlZGljdGlvblNjaGVtZUdlb21ldHJpY05vcm1hbEVuY29kZXJJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRW5jb2RpbmdUcmFuc2Zvcm1JaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvMjdNZXNoUHJlZGljdGlvblNjaGVtZUVuY29kZXJJaU5TXzYyUHJlZGljdGlvblNjaGVtZU5vcm1hbE9jdGFoZWRyb25DYW5vbmljYWxpemVkRW5jb2RpbmdUcmFuc2Zvcm1JaUVFTlNfMjRNZXNoUHJlZGljdGlvblNjaGVtZURhdGFJTlNfMjRNZXNoQXR0cmlidXRlQ29ybmVyVGFibGVFRUVFRQBONWRyYWNvNDRNZXNoUHJlZGljdGlvblNjaGVtZVRleENvb3Jkc1BvcnRhYmxlRW5jb2RlcklpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWRFbmNvZGluZ1RyYW5zZm9ybUlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY28zNk1lc2hQcmVkaWN0aW9uU2NoZW1lVGV4Q29vcmRzRW5jb2RlcklpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWRFbmNvZGluZ1RyYW5zZm9ybUlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY281Nk1lc2hQcmVkaWN0aW9uU2NoZW1lQ29uc3RyYWluZWRNdWx0aVBhcmFsbGVsb2dyYW1FbmNvZGVySWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZEVuY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzQ1TWVzaFByZWRpY3Rpb25TY2hlbWVNdWx0aVBhcmFsbGVsb2dyYW1FbmNvZGVySWlOU182MlByZWRpY3Rpb25TY2hlbWVOb3JtYWxPY3RhaGVkcm9uQ2Fub25pY2FsaXplZEVuY29kaW5nVHJhbnNmb3JtSWlFRU5TXzI0TWVzaFByZWRpY3Rpb25TY2hlbWVEYXRhSU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFRUUATjVkcmFjbzQwTWVzaFByZWRpY3Rpb25TY2hlbWVQYXJhbGxlbG9ncmFtRW5jb2RlcklpTlNfNjJQcmVkaWN0aW9uU2NoZW1lTm9ybWFsT2N0YWhlZHJvbkNhbm9uaWNhbGl6ZWRFbmNvZGluZ1RyYW5zZm9ybUlpRUVOU18yNE1lc2hQcmVkaWN0aW9uU2NoZW1lRGF0YUlOU18yNE1lc2hBdHRyaWJ1dGVDb3JuZXJUYWJsZUVFRUVFAE41ZHJhY28zMlNlcXVlbnRpYWxOb3JtYWxBdHRyaWJ1dGVFbmNvZGVyRQBONWRyYWNvMzhTZXF1ZW50aWFsUXVhbnRpemF0aW9uQXR0cmlidXRlRW5jb2RlckUAcHJlZGljdGlvbl9zY2hlbWUAZW5jb2Rpbmdfc3BlZWQAZGVjb2Rpbmdfc3BlZWQAcXVhbnRpemF0aW9uX29yaWdpbgBxdWFudGl6YXRpb25fcmFuZ2UAIABlbmNvZGluZ19tZXRob2QAcXVhbnRpemF0aW9uX2JpdHMASW52YWxpZCBlbmNvZGluZyBtZXRob2QuAHN0YW5kYXJkX2VkZ2VicmVha2VyAHByZWRpY3RpdmVfZWRnZWJyZWFrZXIAZWRnZWJyZWFrZXJfbWV0aG9kAE41ZHJhY28yMk1lc2hFZGdlQnJlYWtlckVuY29kZXJFAE41ZHJhY28yOUNvcm5lclRhYmxlVHJhdmVyc2FsUHJvY2Vzc29ySU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFAE41ZHJhY28yMk1lc2hUcmF2ZXJzYWxTZXF1ZW5jZXJJTlNfMjBFZGdlQnJlYWtlclRyYXZlcnNlcklOU18yOUNvcm5lclRhYmxlVHJhdmVyc2FsUHJvY2Vzc29ySU5TXzI0TWVzaEF0dHJpYnV0ZUNvcm5lclRhYmxlRUVFTlNfMzZNZXNoQXR0cmlidXRlSW5kaWNlc0VuY29kaW5nT2JzZXJ2ZXJJUzNfRUVOU18xOUVkZ2VCcmVha2VyT2JzZXJ2ZXJFRUVFRQBONWRyYWNvMTVQb2ludHNTZXF1ZW5jZXJFAE41ZHJhY28yOUNvcm5lclRhYmxlVHJhdmVyc2FsUHJvY2Vzc29ySU5TXzExQ29ybmVyVGFibGVFRUUATjVkcmFjbzIyTWVzaFRyYXZlcnNhbFNlcXVlbmNlcklOU18yMEVkZ2VCcmVha2VyVHJhdmVyc2VySU5TXzI5Q29ybmVyVGFibGVUcmF2ZXJzYWxQcm9jZXNzb3JJTlNfMTFDb3JuZXJUYWJsZUVFRU5TXzM2TWVzaEF0dHJpYnV0ZUluZGljZXNFbmNvZGluZ09ic2VydmVySVMzX0VFTlNfMTlFZGdlQnJlYWtlck9ic2VydmVyRUVFRUUATjVkcmFjbzIyTWVzaFRyYXZlcnNhbFNlcXVlbmNlcklOU18yNVByZWRpY3Rpb25EZWdyZWVUcmF2ZXJzZXJJTlNfMjlDb3JuZXJUYWJsZVRyYXZlcnNhbFByb2Nlc3NvcklOU18xMUNvcm5lclRhYmxlRUVFTlNfMzZNZXNoQXR0cmlidXRlSW5kaWNlc0VuY29kaW5nT2JzZXJ2ZXJJUzNfRUVFRUVFAHNwbGl0X21lc2hfb25fc2VhbXMATjVkcmFjbzI2TWVzaEVkZ2VCcmVha2VyRW5jb2RlckltcGxJTlNfMzFNZXNoRWRnZUJyZWFrZXJUcmF2ZXJzYWxFbmNvZGVyRUVFAE41ZHJhY28zNU1lc2hFZGdlQnJlYWtlckVuY29kZXJJbXBsSW50ZXJmYWNlRQBONWRyYWNvMjZNZXNoRWRnZUJyZWFrZXJFbmNvZGVySW1wbElOU18zOE1lc2hFZGdlQnJlYWtlclRyYXZlcnNhbFZhbGVuY2VFbmNvZGVyRUVFAE41ZHJhY28xMU1lc2hFbmNvZGVyRQBjb21wcmVzc19jb25uZWN0aXZpdHkATjVkcmFjbzE1TGluZWFyU2VxdWVuY2VyRQBONWRyYWNvMjFNZXNoU2VxdWVudGlhbEVuY29kZXJFAE41ZHJhY28xN1BvaW50Q2xvdWRFbmNvZGVyRQBJbnZhbGlkIGlucHV0IGdlb21ldHJ5LgBGYWlsZWQgdG8gaW5pdGlhbGl6ZSBlbmNvZGVyLgBGYWlsZWQgdG8gZW5jb2RlIGludGVybmFsIGRhdGEuAEZhaWxlZCB0byBlbmNvZGUgZ2VvbWV0cnkgZGF0YS4ARmFpbGVkIHRvIGVuY29kZSBwb2ludCBhdHRyaWJ1dGVzLgBGYWlsZWQgdG8gZW5jb2RlIG1ldGFkYXRhLgBEUkFDTwBONWRyYWNvMjNQb2ludENsb3VkS2RUcmVlRW5jb2RlckUATjVkcmFjbzI3UG9pbnRDbG91ZFNlcXVlbnRpYWxFbmNvZGVyRQBzeW1ib2xfZW5jb2RpbmdfbWV0aG9kAHN5bWJvbF9lbmNvZGluZ19jb21wcmVzc2lvbl9sZXZlbABONWRyYWNvNE1lc2hFAGFsbG9jYXRvcjxUPjo6YWxsb2NhdGUoc2l6ZV90IG4pICduJyBleGNlZWRzIG1heGltdW0gc3VwcG9ydGVkIHNpemUATjVkcmFjbzEwUG9pbnRDbG91ZEUAEQAKABEREQAAAAAFAAAAAAAACQAAAAALAAAAAAAAAAARAA8KERERAwoHAAETCQsLAAAJBgsAAAsABhEAAAAREREAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAEQAKChEREQAKAAACAAkLAAAACQALAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAADAAAAAAJDAAAAAAADAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAANAAAABA0AAAAACQ4AAAAAAA4AAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAADwAAAAAPAAAAAAkQAAAAAAAQAAAQAAASAAAAEhISAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAASEhIAAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAAAAAAAAKAAAAAAoAAAAACQsAAAAAAAsAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAMAAAAAAkMAAAAAAAMAAAMAAAtKyAgIDBYMHgAKG51bGwpAC0wWCswWCAwWC0weCsweCAweABpbmYASU5GAE5BTgAwMTIzNDU2Nzg5QUJDREVGLgBUISIZDQECAxFLHAwQBAsdEh4naG5vcHFiIAUGDxMUFRoIFgcoJBcYCQoOGx8lI4OCfSYqKzw9Pj9DR0pNWFlaW1xdXl9gYWNkZWZnaWprbHJzdHl6e3wASWxsZWdhbCBieXRlIHNlcXVlbmNlAERvbWFpbiBlcnJvcgBSZXN1bHQgbm90IHJlcHJlc2VudGFibGUATm90IGEgdHR5AFBlcm1pc3Npb24gZGVuaWVkAE9wZXJhdGlvbiBub3QgcGVybWl0dGVkAE5vIHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkATm8gc3VjaCBwcm9jZXNzAEZpbGUgZXhpc3RzAFZhbHVlIHRvbyBsYXJnZSBmb3IgZGF0YSB0eXBlAE5vIHNwYWNlIGxlZnQgb24gZGV2aWNlAE91dCBvZiBtZW1vcnkAUmVzb3VyY2UgYnVzeQBJbnRlcnJ1cHRlZCBzeXN0ZW0gY2FsbABSZXNvdXJjZSB0ZW1wb3JhcmlseSB1bmF2YWlsYWJsZQBJbnZhbGlkIHNlZWsAQ3Jvc3MtZGV2aWNlIGxpbmsAUmVhZC1vbmx5IGZpbGUgc3lzdGVtAERpcmVjdG9yeSBub3QgZW1wdHkAQ29ubmVjdGlvbiByZXNldCBieSBwZWVyAE9wZXJhdGlvbiB0aW1lZCBvdXQAQ29ubmVjdGlvbiByZWZ1c2VkAEhvc3QgaXMgZG93bgBIb3N0IGlzIHVucmVhY2hhYmxlAEFkZHJlc3MgaW4gdXNlAEJyb2tlbiBwaXBlAEkvTyBlcnJvcgBObyBzdWNoIGRldmljZSBvciBhZGRyZXNzAEJsb2NrIGRldmljZSByZXF1aXJlZABObyBzdWNoIGRldmljZQBOb3QgYSBkaXJlY3RvcnkASXMgYSBkaXJlY3RvcnkAVGV4dCBmaWxlIGJ1c3kARXhlYyBmb3JtYXQgZXJyb3IASW52YWxpZCBhcmd1bWVudABBcmd1bWVudCBsaXN0IHRvbyBsb25nAFN5bWJvbGljIGxpbmsgbG9vcABGaWxlbmFtZSB0b28gbG9uZwBUb28gbWFueSBvcGVuIGZpbGVzIGluIHN5c3RlbQBObyBmaWxlIGRlc2NyaXB0b3JzIGF2YWlsYWJsZQBCYWQgZmlsZSBkZXNjcmlwdG9yAE5vIGNoaWxkIHByb2Nlc3MAQmFkIGFkZHJlc3MARmlsZSB0b28gbGFyZ2UAVG9vIG1hbnkgbGlua3MATm8gbG9ja3MgYXZhaWxhYmxlAFJlc291cmNlIGRlYWRsb2NrIHdvdWxkIG9jY3VyAFN0YXRlIG5vdCByZWNvdmVyYWJsZQBQcmV2aW91cyBvd25lciBkaWVkAE9wZXJhdGlvbiBjYW5jZWxlZABGdW5jdGlvbiBub3QgaW1wbGVtZW50ZWQATm8gbWVzc2FnZSBvZiBkZXNpcmVkIHR5cGUASWRlbnRpZmllciByZW1vdmVkAERldmljZSBub3QgYSBzdHJlYW0ATm8gZGF0YSBhdmFpbGFibGUARGV2aWNlIHRpbWVvdXQAT3V0IG9mIHN0cmVhbXMgcmVzb3VyY2VzAExpbmsgaGFzIGJlZW4gc2V2ZXJlZABQcm90b2NvbCBlcnJvcgBCYWQgbWVzc2FnZQBGaWxlIGRlc2NyaXB0b3IgaW4gYmFkIHN0YXRlAE5vdCBhIHNvY2tldABEZXN0aW5hdGlvbiBhZGRyZXNzIHJlcXVpcmVkAE1lc3NhZ2UgdG9vIGxhcmdlAFByb3RvY29sIHdyb25nIHR5cGUgZm9yIHNvY2tldABQcm90b2NvbCBub3QgYXZhaWxhYmxlAFByb3RvY29sIG5vdCBzdXBwb3J0ZWQAU29ja2V0IHR5cGUgbm90IHN1cHBvcnRlZABOb3Qgc3VwcG9ydGVkAFByb3RvY29sIGZhbWlseSBub3Qgc3VwcG9ydGVkAEFkZHJlc3MgZmFtaWx5IG5vdCBzdXBwb3J0ZWQgYnkgcHJvdG9jb2wAQWRkcmVzcyBub3QgYXZhaWxhYmxlAE5ldHdvcmsgaXMgZG93bgBOZXR3b3JrIHVucmVhY2hhYmxlAENvbm5lY3Rpb24gcmVzZXQgYnkgbmV0d29yawBDb25uZWN0aW9uIGFib3J0ZWQATm8gYnVmZmVyIHNwYWNlIGF2YWlsYWJsZQBTb2NrZXQgaXMgY29ubmVjdGVkAFNvY2tldCBub3QgY29ubmVjdGVkAENhbm5vdCBzZW5kIGFmdGVyIHNvY2tldCBzaHV0ZG93bgBPcGVyYXRpb24gYWxyZWFkeSBpbiBwcm9ncmVzcwBPcGVyYXRpb24gaW4gcHJvZ3Jlc3MAU3RhbGUgZmlsZSBoYW5kbGUAUmVtb3RlIEkvTyBlcnJvcgBRdW90YSBleGNlZWRlZABObyBtZWRpdW0gZm91bmQAV3JvbmcgbWVkaXVtIHR5cGUATm8gZXJyb3IgaW5mb3JtYXRpb24AAGluZmluaXR5AG5hbgAlZAAlZgB0ZXJtaW5hdGluZyB3aXRoICVzIGV4Y2VwdGlvbiBvZiB0eXBlICVzOiAlcwB0ZXJtaW5hdGluZyB3aXRoICVzIGV4Y2VwdGlvbiBvZiB0eXBlICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZm9yZWlnbiBleGNlcHRpb24AdGVybWluYXRpbmcAdW5jYXVnaHQAU3Q5ZXhjZXB0aW9uAE4xMF9fY3h4YWJpdjExNl9fc2hpbV90eXBlX2luZm9FAFN0OXR5cGVfaW5mbwBOMTBfX2N4eGFiaXYxMjBfX3NpX2NsYXNzX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19jbGFzc190eXBlX2luZm9FAHB0aHJlYWRfb25jZSBmYWlsdXJlIGluIF9fY3hhX2dldF9nbG9iYWxzX2Zhc3QoKQBjYW5ub3QgY3JlYXRlIHB0aHJlYWQga2V5IGZvciBfX2N4YV9nZXRfZ2xvYmFscygpAGNhbm5vdCB6ZXJvIG91dCB0aHJlYWQgdmFsdWUgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAdGVybWluYXRlX2hhbmRsZXIgdW5leHBlY3RlZGx5IHJldHVybmVkAFN0MTFsb2dpY19lcnJvcgBTdDEybGVuZ3RoX2Vycm9yAE4xMF9fY3h4YWJpdjExOV9fcG9pbnRlcl90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjExN19fcGJhc2VfdHlwZV9pbmZvRQ==\";var tempDoublePtr=STATICTOP;STATICTOP+=16;function ___cxa_allocate_exception(size){return _malloc(size)}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:(function(adjusted){if(!adjusted||EXCEPTIONS.infos[adjusted])return adjusted;for(var ptr in EXCEPTIONS.infos){var info=EXCEPTIONS.infos[ptr];if(info.adjusted===adjusted){return ptr}}return adjusted}),addRef:(function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount++}),decRef:(function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];assert(info.refcount>0);info.refcount--;if(info.refcount===0&&!info.rethrown){if(info.destructor){Module[\"dynCall_vi\"](info.destructor,ptr)}delete EXCEPTIONS.infos[ptr];___cxa_free_exception(ptr)}}),clearRef:(function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount=0})};function ___cxa_begin_catch(ptr){var info=EXCEPTIONS.infos[ptr];if(info&&!info.caught){info.caught=true;__ZSt18uncaught_exceptionv.uncaught_exception--}if(info)info.rethrown=false;EXCEPTIONS.caught.push(ptr);EXCEPTIONS.addRef(EXCEPTIONS.deAdjust(ptr));return ptr}function ___cxa_pure_virtual(){ABORT=true;throw\"Pure virtual function called!\"}function ___resumeException(ptr){if(!EXCEPTIONS.last){EXCEPTIONS.last=ptr}throw ptr+\" - Exception catching is disabled, this exception cannot be caught. Compile with -s DISABLE_EXCEPTION_CATCHING=0 or DISABLE_EXCEPTION_CATCHING=2 to catch.\"}function ___cxa_find_matching_catch(){var thrown=EXCEPTIONS.last;if(!thrown){return(setTempRet0(0),0)|0}var info=EXCEPTIONS.infos[thrown];var throwntype=info.type;if(!throwntype){return(setTempRet0(0),thrown)|0}var typeArray=Array.prototype.slice.call(arguments);var pointer=Module[\"___cxa_is_pointer_type\"](throwntype);if(!___cxa_find_matching_catch.buffer)___cxa_find_matching_catch.buffer=_malloc(4);HEAP32[___cxa_find_matching_catch.buffer>>2]=thrown;thrown=___cxa_find_matching_catch.buffer;for(var i=0;i<typeArray.length;i++){if(typeArray[i]&&Module[\"___cxa_can_catch\"](typeArray[i],throwntype,thrown)){thrown=HEAP32[thrown>>2];info.adjusted=thrown;return(setTempRet0(typeArray[i]),thrown)|0}}thrown=HEAP32[thrown>>2];return(setTempRet0(throwntype),thrown)|0}function ___cxa_throw(ptr,type,destructor){EXCEPTIONS.infos[ptr]={ptr:ptr,adjusted:ptr,type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};EXCEPTIONS.last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exception=1}else{__ZSt18uncaught_exceptionv.uncaught_exception++}throw ptr+\" - Exception catching is disabled, this exception cannot be caught. Compile with -s DISABLE_EXCEPTION_CATCHING=0 or DISABLE_EXCEPTION_CATCHING=2 to catch.\"}var cttz_i8=allocate([8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0],\"i8\",ALLOC_STATIC);function ___gxx_personality_v0(){}var SYSCALLS={varargs:0,get:(function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret}),getStr:(function(){var ret=Pointer_stringify(SYSCALLS.get());return ret}),get64:(function(){var low=SYSCALLS.get(),high=SYSCALLS.get();if(low>=0)assert(high===0);else assert(high===-1);return low}),getZero:(function(){assert(SYSCALLS.get()===0)})};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();var offset=offset_low;FS.llseek(stream,offset,whence);HEAP32[result>>2]=stream.position;if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function flush_NO_FILESYSTEM(){var fflush=Module[\"_fflush\"];if(fflush)fflush(0);var printChar=___syscall146.printChar;if(!printChar)return;var buffers=___syscall146.buffers;if(buffers[1].length)printChar(1,10);if(buffers[2].length)printChar(2,10)}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;if(!___syscall146.buffers){___syscall146.buffers=[null,[],[]];___syscall146.printChar=(function(stream,curr){var buffer=___syscall146.buffers[stream];assert(buffer);if(curr===0||curr===10){(stream===1?Module[\"print\"]:Module[\"printErr\"])(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}})}for(var i=0;i<iovcnt;i++){var ptr=HEAP32[iov+i*8>>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j<len;j++){___syscall146.printChar(stream,HEAPU8[ptr+j])}ret+=len}return ret}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();FS.close(stream);return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function _abort(){Module[\"abort\"]()}var _llvm_ceil_f64=Math_ceil;var _llvm_fabs_f64=Math_abs;var _llvm_floor_f64=Math_floor;function _llvm_trap(){abort(\"trap!\")}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);return dest}var PTHREAD_SPECIFIC={};function _pthread_getspecific(key){return PTHREAD_SPECIFIC[key]||0}var PTHREAD_SPECIFIC_NEXT_KEY=1;var ERRNO_CODES={EPERM:1,ENOENT:2,ESRCH:3,EINTR:4,EIO:5,ENXIO:6,E2BIG:7,ENOEXEC:8,EBADF:9,ECHILD:10,EAGAIN:11,EWOULDBLOCK:11,ENOMEM:12,EACCES:13,EFAULT:14,ENOTBLK:15,EBUSY:16,EEXIST:17,EXDEV:18,ENODEV:19,ENOTDIR:20,EISDIR:21,EINVAL:22,ENFILE:23,EMFILE:24,ENOTTY:25,ETXTBSY:26,EFBIG:27,ENOSPC:28,ESPIPE:29,EROFS:30,EMLINK:31,EPIPE:32,EDOM:33,ERANGE:34,ENOMSG:42,EIDRM:43,ECHRNG:44,EL2NSYNC:45,EL3HLT:46,EL3RST:47,ELNRNG:48,EUNATCH:49,ENOCSI:50,EL2HLT:51,EDEADLK:35,ENOLCK:37,EBADE:52,EBADR:53,EXFULL:54,ENOANO:55,EBADRQC:56,EBADSLT:57,EDEADLOCK:35,EBFONT:59,ENOSTR:60,ENODATA:61,ETIME:62,ENOSR:63,ENONET:64,ENOPKG:65,EREMOTE:66,ENOLINK:67,EADV:68,ESRMNT:69,ECOMM:70,EPROTO:71,EMULTIHOP:72,EDOTDOT:73,EBADMSG:74,ENOTUNIQ:76,EBADFD:77,EREMCHG:78,ELIBACC:79,ELIBBAD:80,ELIBSCN:81,ELIBMAX:82,ELIBEXEC:83,ENOSYS:38,ENOTEMPTY:39,ENAMETOOLONG:36,ELOOP:40,EOPNOTSUPP:95,EPFNOSUPPORT:96,ECONNRESET:104,ENOBUFS:105,EAFNOSUPPORT:97,EPROTOTYPE:91,ENOTSOCK:88,ENOPROTOOPT:92,ESHUTDOWN:108,ECONNREFUSED:111,EADDRINUSE:98,ECONNABORTED:103,ENETUNREACH:101,ENETDOWN:100,ETIMEDOUT:110,EHOSTDOWN:112,EHOSTUNREACH:113,EINPROGRESS:115,EALREADY:114,EDESTADDRREQ:89,EMSGSIZE:90,EPROTONOSUPPORT:93,ESOCKTNOSUPPORT:94,EADDRNOTAVAIL:99,ENETRESET:102,EISCONN:106,ENOTCONN:107,ETOOMANYREFS:109,EUSERS:87,EDQUOT:122,ESTALE:116,ENOTSUP:95,ENOMEDIUM:123,EILSEQ:84,EOVERFLOW:75,ECANCELED:125,ENOTRECOVERABLE:131,EOWNERDEAD:130,ESTRPIPE:86};function _pthread_key_create(key,destructor){if(key==0){return ERRNO_CODES.EINVAL}HEAP32[key>>2]=PTHREAD_SPECIFIC_NEXT_KEY;PTHREAD_SPECIFIC[PTHREAD_SPECIFIC_NEXT_KEY]=0;PTHREAD_SPECIFIC_NEXT_KEY++;return 0}function _pthread_once(ptr,func){if(!_pthread_once.seen)_pthread_once.seen={};if(ptr in _pthread_once.seen)return;Module[\"dynCall_v\"](func);_pthread_once.seen[ptr]=1}function _pthread_setspecific(key,value){if(!(key in PTHREAD_SPECIFIC)){return ERRNO_CODES.EINVAL}PTHREAD_SPECIFIC[key]=value;return 0}function ___setErrNo(value){if(Module[\"___errno_location\"])HEAP32[Module[\"___errno_location\"]()>>2]=value;return value}DYNAMICTOP_PTR=staticAlloc(4);STACK_BASE=STACKTOP=alignMemory(STATICTOP);STACK_MAX=STACK_BASE+TOTAL_STACK;DYNAMIC_BASE=alignMemory(STACK_MAX);HEAP32[DYNAMICTOP_PTR>>2]=DYNAMIC_BASE;staticSealed=true;var ASSERTIONS=false;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}function intArrayToString(array){var ret=[];for(var i=0;i<array.length;i++){var chr=array[i];if(chr>255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\")  at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:(function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i<input.length);return output});function intArrayFromBase64(s){if(typeof ENVIRONMENT_IS_NODE===\"boolean\"&&ENVIRONMENT_IS_NODE){var buf;try{buf=Buffer.from(s,\"base64\")}catch(_){buf=new Buffer(s,\"base64\")}return new Uint8Array(buf.buffer,buf.byteOffset,buf.byteLength)}try{var decoded=decodeBase64(s);var bytes=new Uint8Array(decoded.length);for(var i=0;i<decoded.length;++i){bytes[i]=decoded.charCodeAt(i)}return bytes}catch(_){throw new Error(\"Converting base64 string to bytes failed.\")}}function tryParseAsDataURI(filename){if(!isDataURI(filename)){return}return intArrayFromBase64(filename.slice(dataURIPrefix.length))}function invoke_ii(index,a1){try{return Module[\"dynCall_ii\"](index,a1)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_iii(index,a1,a2){try{return Module[\"dynCall_iii\"](index,a1,a2)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_iiii(index,a1,a2,a3){try{return Module[\"dynCall_iiii\"](index,a1,a2,a3)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_iiiiiii(index,a1,a2,a3,a4,a5,a6){try{return Module[\"dynCall_iiiiiii\"](index,a1,a2,a3,a4,a5,a6)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_v(index){try{Module[\"dynCall_v\"](index)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_vi(index,a1){try{Module[\"dynCall_vi\"](index,a1)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_vii(index,a1,a2){try{Module[\"dynCall_vii\"](index,a1,a2)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_viii(index,a1,a2,a3){try{Module[\"dynCall_viii\"](index,a1,a2,a3)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_viiii(index,a1,a2,a3,a4){try{Module[\"dynCall_viiii\"](index,a1,a2,a3,a4)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_viiiii(index,a1,a2,a3,a4,a5){try{Module[\"dynCall_viiiii\"](index,a1,a2,a3,a4,a5)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}function invoke_viiiiii(index,a1,a2,a3,a4,a5,a6){try{Module[\"dynCall_viiiiii\"](index,a1,a2,a3,a4,a5,a6)}catch(e){if(typeof e!==\"number\"&&e!==\"longjmp\")throw e;Module[\"setThrew\"](1,0)}}Module.asmGlobalArg={\"Math\":Math,\"Int8Array\":Int8Array,\"Int16Array\":Int16Array,\"Int32Array\":Int32Array,\"Uint8Array\":Uint8Array,\"Uint16Array\":Uint16Array,\"Uint32Array\":Uint32Array,\"Float32Array\":Float32Array,\"Float64Array\":Float64Array,\"NaN\":NaN,\"Infinity\":Infinity,\"byteLength\":byteLength};Module.asmLibraryArg={\"abort\":abort,\"assert\":assert,\"enlargeMemory\":enlargeMemory,\"getTotalMemory\":getTotalMemory,\"abortOnCannotGrowMemory\":abortOnCannotGrowMemory,\"invoke_ii\":invoke_ii,\"invoke_iii\":invoke_iii,\"invoke_iiii\":invoke_iiii,\"invoke_iiiiiii\":invoke_iiiiiii,\"invoke_v\":invoke_v,\"invoke_vi\":invoke_vi,\"invoke_vii\":invoke_vii,\"invoke_viii\":invoke_viii,\"invoke_viiii\":invoke_viiii,\"invoke_viiiii\":invoke_viiiii,\"invoke_viiiiii\":invoke_viiiiii,\"__ZSt18uncaught_exceptionv\":__ZSt18uncaught_exceptionv,\"___cxa_allocate_exception\":___cxa_allocate_exception,\"___cxa_begin_catch\":___cxa_begin_catch,\"___cxa_find_matching_catch\":___cxa_find_matching_catch,\"___cxa_pure_virtual\":___cxa_pure_virtual,\"___cxa_throw\":___cxa_throw,\"___gxx_personality_v0\":___gxx_personality_v0,\"___resumeException\":___resumeException,\"___setErrNo\":___setErrNo,\"___syscall140\":___syscall140,\"___syscall146\":___syscall146,\"___syscall6\":___syscall6,\"_abort\":_abort,\"_emscripten_memcpy_big\":_emscripten_memcpy_big,\"_llvm_ceil_f64\":_llvm_ceil_f64,\"_llvm_fabs_f64\":_llvm_fabs_f64,\"_llvm_floor_f64\":_llvm_floor_f64,\"_llvm_trap\":_llvm_trap,\"_pthread_getspecific\":_pthread_getspecific,\"_pthread_key_create\":_pthread_key_create,\"_pthread_once\":_pthread_once,\"_pthread_setspecific\":_pthread_setspecific,\"flush_NO_FILESYSTEM\":flush_NO_FILESYSTEM,\"DYNAMICTOP_PTR\":DYNAMICTOP_PTR,\"tempDoublePtr\":tempDoublePtr,\"ABORT\":ABORT,\"STACKTOP\":STACKTOP,\"STACK_MAX\":STACK_MAX,\"cttz_i8\":cttz_i8};// EMSCRIPTEN_START_ASM\nvar asm=(/** @suppress {uselessCode} */ function(global,env,buffer) {\n\"almost asm\";var a=global.Int8Array;var b=new a(buffer);var c=global.Int16Array;var d=new c(buffer);var e=global.Int32Array;var f=new e(buffer);var g=global.Uint8Array;var h=new g(buffer);var i=global.Uint16Array;var j=new i(buffer);var k=global.Uint32Array;var l=new k(buffer);var m=global.Float32Array;var n=new m(buffer);var o=global.Float64Array;var p=new o(buffer);var q=global.byteLength;var r=env.DYNAMICTOP_PTR|0;var s=env.tempDoublePtr|0;var t=env.ABORT|0;var u=env.STACKTOP|0;var v=env.STACK_MAX|0;var w=env.cttz_i8|0;var x=0;var y=0;var z=0;var A=0;var B=global.NaN,C=global.Infinity;var D=0,E=0,F=0,G=0,H=0.0;var I=0;var J=global.Math.floor;var K=global.Math.abs;var L=global.Math.sqrt;var M=global.Math.pow;var N=global.Math.cos;var O=global.Math.sin;var P=global.Math.tan;var Q=global.Math.acos;var R=global.Math.asin;var S=global.Math.atan;var T=global.Math.atan2;var U=global.Math.exp;var V=global.Math.log;var W=global.Math.ceil;var X=global.Math.imul;var Y=global.Math.min;var Z=global.Math.max;var _=global.Math.clz32;var $=global.Math.fround;var aa=env.abort;var ba=env.assert;var ca=env.enlargeMemory;var da=env.getTotalMemory;var ea=env.abortOnCannotGrowMemory;var fa=env.invoke_ii;var ga=env.invoke_iii;var ha=env.invoke_iiii;var ia=env.invoke_iiiiiii;var ja=env.invoke_v;var ka=env.invoke_vi;var la=env.invoke_vii;var ma=env.invoke_viii;var na=env.invoke_viiii;var oa=env.invoke_viiiii;var pa=env.invoke_viiiiii;var qa=env.__ZSt18uncaught_exceptionv;var ra=env.___cxa_allocate_exception;var sa=env.___cxa_begin_catch;var ta=env.___cxa_find_matching_catch;var ua=env.___cxa_pure_virtual;var va=env.___cxa_throw;var wa=env.___gxx_personality_v0;var xa=env.___resumeException;var ya=env.___setErrNo;var za=env.___syscall140;var Aa=env.___syscall146;var Ba=env.___syscall6;var Ca=env._abort;var Da=env._emscripten_memcpy_big;var Ea=env._llvm_ceil_f64;var Fa=env._llvm_fabs_f64;var Ga=env._llvm_floor_f64;var Ha=env._llvm_trap;var Ia=env._pthread_getspecific;var Ja=env._pthread_key_create;var Ka=env._pthread_once;var La=env._pthread_setspecific;var Ma=env.flush_NO_FILESYSTEM;var Na=$(0);const Oa=$(0);function Pa(newBuffer){if(q(newBuffer)&16777215||q(newBuffer)<=16777215||q(newBuffer)>2147483648)return false;b=new a(newBuffer);d=new c(newBuffer);f=new e(newBuffer);h=new g(newBuffer);j=new i(newBuffer);l=new k(newBuffer);n=new m(newBuffer);p=new o(newBuffer);buffer=newBuffer;return true}\n// EMSCRIPTEN_START_FUNCS\nfunction be(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0;h=u;u=u+16|0;i=h+4|0;j=h;f[a+72>>2]=e;f[a+64>>2]=g;g=Lq(e>>>0>1073741823?-1:e<<2)|0;k=a+68|0;l=f[k>>2]|0;f[k>>2]=g;if(l|0)Mq(l);l=a+8|0;Mh(l,b,d,e);d=a+56|0;g=f[d>>2]|0;m=f[g+4>>2]|0;n=f[g>>2]|0;o=m-n|0;if((o|0)<=0){u=h;return 1}p=(o>>>2)+-1|0;o=a+16|0;q=a+32|0;r=a+12|0;s=a+28|0;t=a+20|0;v=a+24|0;if(m-n>>2>>>0>p>>>0){w=p;x=n}else{y=g;aq(y)}while(1){f[j>>2]=f[x+(w<<2)>>2];f[i>>2]=f[j>>2];Cc(a,i,b,w);g=X(w,e)|0;n=b+(g<<2)|0;p=c+(g<<2)|0;g=f[l>>2]|0;if((g|0)>0){m=0;z=f[k>>2]|0;A=g;while(1){if((A|0)>0){g=0;do{B=f[z+(g<<2)>>2]|0;C=f[o>>2]|0;if((B|0)>(C|0)){D=f[q>>2]|0;f[D+(g<<2)>>2]=C;E=D}else{D=f[r>>2]|0;C=f[q>>2]|0;f[C+(g<<2)>>2]=(B|0)<(D|0)?D:B;E=C}g=g+1|0}while((g|0)<(f[l>>2]|0));F=E}else F=f[q>>2]|0;g=(f[n+(m<<2)>>2]|0)-(f[F+(m<<2)>>2]|0)|0;C=p+(m<<2)|0;f[C>>2]=g;if((g|0)>=(f[s>>2]|0)){if((g|0)>(f[v>>2]|0)){G=g-(f[t>>2]|0)|0;H=21}}else{G=(f[t>>2]|0)+g|0;H=21}if((H|0)==21){H=0;f[C>>2]=G}m=m+1|0;A=f[l>>2]|0;if((m|0)>=(A|0))break;else z=F}}w=w+-1|0;if((w|0)<=-1){H=5;break}z=f[d>>2]|0;x=f[z>>2]|0;if((f[z+4>>2]|0)-x>>2>>>0<=w>>>0){y=z;H=6;break}}if((H|0)==5){u=h;return 1}else if((H|0)==6)aq(y);return 0}function ce(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;Uc(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=4194304;if(d){d=c;c=4194304;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<20)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Mf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function de(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;Vc(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=4194304;if(d){d=c;c=4194304;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<20)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Mf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function ee(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;Wc(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=4194304;if(d){d=c;c=4194304;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<20)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Mf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function fe(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;Xc(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=4194304;if(d){d=c;c=4194304;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<20)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Mf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function ge(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;Yc(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=4194304;if(d){d=c;c=4194304;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<20)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Mf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function he(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;Zc(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=2097152;if(d){d=c;c=2097152;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<19)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Nf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function ie(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;_c(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=1048576;if(d){d=c;c=1048576;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<18)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Of(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function je(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=Oa,t=Oa,u=Oa,v=0,w=0,x=0,y=0,z=0;c=f[b>>2]|0;b=a+4|0;d=f[b>>2]|0;e=(d|0)==0;a:do if(!e){g=d+-1|0;h=(g&d|0)==0;if(!h)if(c>>>0<d>>>0)i=c;else i=(c>>>0)%(d>>>0)|0;else i=g&c;j=f[(f[a>>2]|0)+(i<<2)>>2]|0;if(!j)k=i;else{if(h){h=j;while(1){l=f[h>>2]|0;if(!l){k=i;break a}m=f[l+4>>2]|0;if(!((m|0)==(c|0)|(m&g|0)==(i|0))){k=i;break a}if((f[l+8>>2]|0)==(c|0)){o=l;break}else h=l}p=o+12|0;return p|0}else q=j;while(1){h=f[q>>2]|0;if(!h){k=i;break a}g=f[h+4>>2]|0;if((g|0)!=(c|0)){if(g>>>0<d>>>0)r=g;else r=(g>>>0)%(d>>>0)|0;if((r|0)!=(i|0)){k=i;break a}}if((f[h+8>>2]|0)==(c|0)){o=h;break}else q=h}p=o+12|0;return p|0}}else k=0;while(0);q=ln(16)|0;f[q+8>>2]=c;f[q+12>>2]=0;f[q+4>>2]=c;f[q>>2]=0;i=a+12|0;s=$(((f[i>>2]|0)+1|0)>>>0);t=$(d>>>0);u=$(n[a+16>>2]);do if(e|$(u*t)<s){r=d<<1|(d>>>0<3|(d+-1&d|0)!=0)&1;j=~~$(W($(s/u)))>>>0;Hi(a,r>>>0<j>>>0?j:r);r=f[b>>2]|0;j=r+-1|0;if(!(j&r)){v=r;w=j&c;break}if(c>>>0<r>>>0){v=r;w=c}else{v=r;w=(c>>>0)%(r>>>0)|0}}else{v=d;w=k}while(0);k=(f[a>>2]|0)+(w<<2)|0;w=f[k>>2]|0;if(!w){d=a+8|0;f[q>>2]=f[d>>2];f[d>>2]=q;f[k>>2]=d;d=f[q>>2]|0;if(d|0){k=f[d+4>>2]|0;d=v+-1|0;if(d&v)if(k>>>0<v>>>0)x=k;else x=(k>>>0)%(v>>>0)|0;else x=k&d;y=(f[a>>2]|0)+(x<<2)|0;z=30}}else{f[q>>2]=f[w>>2];y=w;z=30}if((z|0)==30)f[y>>2]=q;f[i>>2]=(f[i>>2]|0)+1;o=q;p=o+12|0;return p|0}function ke(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;$c(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=262144;if(d){d=c;c=262144;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<16)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Rf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function le(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;ad(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=131072;if(d){d=c;c=131072;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<15)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Sf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function me(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;bd(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=32768;if(d){d=c;c=32768;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<13)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}Uf(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function ne(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;cd(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=16384;if(d){d=c;c=16384;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<12)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}_f(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function oe(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;dd(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=16384;if(d){d=c;c=16384;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<12)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}_f(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function pe(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;ed(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=16384;if(d){d=c;c=16384;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<12)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}_f(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function qe(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;fd(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=16384;if(d){d=c;c=16384;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<12)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}_f(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function re(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;gd(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=16384;if(d){d=c;c=16384;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<12)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}_f(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function se(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;hd(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=16384;if(d){d=c;c=16384;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<12)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}_f(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function te(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;id(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=16384;if(d){d=c;c=16384;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<12)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}_f(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function ue(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;g=u;u=u+64|0;h=g+48|0;i=g;j=d+1|0;f[h>>2]=0;k=h+4|0;f[k>>2]=0;f[h+8>>2]=0;do if(j)if(j>>>0>536870911)aq(h);else{l=ln(j<<3)|0;f[h>>2]=l;m=l+(j<<3)|0;f[h+8>>2]=m;sj(l|0,0,(d<<3)+8|0)|0;f[k>>2]=m;n=l;o=m;break}else{n=0;o=0}while(0);d=(c|0)>0;if(d){j=0;do{m=n+(f[a+(j<<2)>>2]<<3)|0;l=m;p=Vn(f[l>>2]|0,f[l+4>>2]|0,1,0)|0;l=m;f[l>>2]=p;f[l+4>>2]=I;j=j+1|0}while((j|0)!=(c|0))}j=i+40|0;l=j;f[l>>2]=0;f[l+4>>2]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;f[i+16>>2]=0;f[i+20>>2]=0;jd(i,n,o-n>>3,e)|0;n=i+16|0;o=Tn(f[n>>2]|0,f[n+4>>2]|0,1)|0;n=(f[e+4>>2]|0)-(f[e>>2]|0)|0;l=j;f[l>>2]=n;f[l+4>>2]=0;l=Vn(o|0,I|0,39,0)|0;o=Yn(l|0,I|0,3)|0;l=Vn(o|0,I|0,8,0)|0;o=Vn(l|0,I|0,n|0,0)|0;Cl(e,o,I);o=i+24|0;f[o>>2]=(f[e>>2]|0)+(f[j>>2]|0);j=i+28|0;f[j>>2]=0;n=i+32|0;f[n>>2]=16384;if(d){d=c;c=16384;do{l=d;d=d+-1|0;p=f[a+(d<<2)>>2]|0;m=f[i>>2]|0;q=f[m+(p<<3)>>2]|0;r=q<<10;if(c>>>0<r>>>0)s=c;else{t=c;while(1){v=f[o>>2]|0;w=f[j>>2]|0;f[j>>2]=w+1;b[v+w>>0]=t;w=(f[n>>2]|0)>>>8;f[n>>2]=w;if(w>>>0<r>>>0){s=w;break}else t=w}}c=(((s>>>0)/(q>>>0)|0)<<12)+((s>>>0)%(q>>>0)|0)+(f[m+(p<<3)+4>>2]|0)|0;f[n>>2]=c}while((l|0)>1)}_f(i,e);e=f[i>>2]|0;if(e|0){c=i+4|0;i=f[c>>2]|0;if((i|0)!=(e|0))f[c>>2]=i+(~((i+-8-e|0)>>>3)<<3);Oq(e)}e=f[h>>2]|0;if(!e){u=g;return 1}h=f[k>>2]|0;if((h|0)!=(e|0))f[k>>2]=h+(~((h+-8-e|0)>>>3)<<3);Oq(e);u=g;return 1}function ve(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0;c=u;u=u+16|0;d=c+4|0;e=c;f[a+64>>2]=b;g=a+128|0;f[g>>2]=2;h=a+132|0;f[h>>2]=7;i=Qa[f[(f[b>>2]|0)+32>>2]&127](b)|0;b=a+88|0;f[b>>2]=i;j=a+104|0;k=(f[i+28>>2]|0)-(f[i+24>>2]|0)>>2;i=a+108|0;l=f[i>>2]|0;m=f[j>>2]|0;n=l-m>>2;o=m;p=l;if(k>>>0<=n>>>0)if(k>>>0<n>>>0?(q=o+(k<<2)|0,(q|0)!=(p|0)):0){o=p+(~((p+-4-q|0)>>>2)<<2)|0;f[i>>2]=o;r=o;s=m}else{r=l;s=m}else{Ci(j,k-n|0);r=f[i>>2]|0;s=f[j>>2]|0}if((r|0)!=(s|0)){s=0;do{r=f[b>>2]|0;f[e>>2]=s;f[d>>2]=f[e>>2];n=hh(r,d)|0;r=f[j>>2]|0;f[r+(s<<2)>>2]=n;s=s+1|0}while(s>>>0<(f[i>>2]|0)-r>>2>>>0)}i=a+92|0;s=f[b>>2]|0;j=f[s>>2]|0;d=(f[s+4>>2]|0)-j>>2;e=a+96|0;r=f[e>>2]|0;n=f[i>>2]|0;k=r-n>>2;m=n;n=r;if(d>>>0<=k>>>0)if(d>>>0<k>>>0?(r=m+(d<<2)|0,(r|0)!=(n|0)):0){f[e>>2]=n+(~((n+-4-r|0)>>>2)<<2);t=s;v=j}else{t=s;v=j}else{Ci(i,d-k|0);k=f[b>>2]|0;t=k;v=f[k>>2]|0}k=f[t+4>>2]|0;if((k|0)!=(v|0)){v=f[i>>2]|0;i=f[t>>2]|0;t=k-i>>2;k=0;do{f[v+(k<<2)>>2]=f[i+(k<<2)>>2];k=k+1|0}while(k>>>0<t>>>0)}t=(f[h>>2]|0)-(f[g>>2]|0)+1|0;g=a+136|0;h=a+140|0;a=f[h>>2]|0;k=f[g>>2]|0;i=(a-k|0)/12|0;v=a;if(t>>>0>i>>>0){Kf(g,t-i|0);u=c;return 1}if(t>>>0>=i>>>0){u=c;return 1}i=k+(t*12|0)|0;if((i|0)==(v|0)){u=c;return 1}else w=v;while(1){v=w+-12|0;f[h>>2]=v;t=f[v>>2]|0;if(!t)x=v;else{v=w+-8|0;k=f[v>>2]|0;if((k|0)!=(t|0))f[v>>2]=k+(~((k+-4-t|0)>>>2)<<2);Oq(t);x=f[h>>2]|0}if((x|0)==(i|0))break;else w=x}u=c;return 1}function we(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0;e=f[b>>2]|0;g=f[b+4>>2]|0;h=((f[c>>2]|0)-e<<3)+(f[c+4>>2]|0)-g|0;c=e;if((h|0)<=0){i=d+4|0;j=f[d>>2]|0;f[a>>2]=j;k=a+4|0;l=f[i>>2]|0;f[k>>2]=l;return}if(!g){e=d+4|0;m=h;n=e;o=f[e>>2]|0;p=c}else{e=32-g|0;q=(h|0)<(e|0)?h:e;r=-1>>>(e-q|0)&-1<<g&f[c>>2];e=d+4|0;s=f[e>>2]|0;t=32-s|0;u=t>>>0<q>>>0?t:q;v=f[d>>2]|0;w=f[v>>2]&~(-1>>>(t-u|0)&-1<<s);f[v>>2]=w;s=f[e>>2]|0;f[v>>2]=(s>>>0>g>>>0?r<<s-g:r>>>(g-s|0))|w;w=(f[e>>2]|0)+u|0;s=v+(w>>>5<<2)|0;f[d>>2]=s;v=w&31;f[e>>2]=v;w=q-u|0;if((w|0)>0){f[s>>2]=f[s>>2]&~(-1>>>(32-w|0))|r>>>(g+u|0);f[e>>2]=w;x=w}else x=v;v=c+4|0;f[b>>2]=v;m=h-q|0;n=e;o=x;p=v}v=32-o|0;x=-1<<o;if((m|0)>31){o=~x;e=f[d>>2]|0;q=~m;h=m+((q|0)>-64?q:-64)+32|0;q=(h>>>5)+1|0;c=m+-32-(h&-32)|0;h=m;w=p;u=f[e>>2]|0;g=e;while(1){r=f[w>>2]|0;s=u&o;f[g>>2]=s;f[g>>2]=s|r<<f[n>>2];g=g+4|0;u=f[g>>2]&x|r>>>v;f[g>>2]=u;if((h|0)<=63)break;else{h=h+-32|0;w=w+4|0}}w=p+(q<<2)|0;f[b>>2]=w;f[d>>2]=e+(q<<2);y=c;z=w}else{y=m;z=p}if((y|0)<=0){i=n;j=f[d>>2]|0;f[a>>2]=j;k=a+4|0;l=f[i>>2]|0;f[k>>2]=l;return}p=f[z>>2]&-1>>>(32-y|0);z=(v|0)<(y|0)?v:y;m=f[d>>2]|0;w=f[m>>2]&~(-1<<f[n>>2]&-1>>>(v-z|0));f[m>>2]=w;f[m>>2]=w|p<<f[n>>2];w=(f[n>>2]|0)+z|0;v=m+(w>>>5<<2)|0;f[d>>2]=v;f[n>>2]=w&31;w=y-z|0;if((w|0)<=0){i=n;j=f[d>>2]|0;f[a>>2]=j;k=a+4|0;l=f[i>>2]|0;f[k>>2]=l;return}f[v>>2]=f[v>>2]&~(-1>>>(32-w|0))|p>>>z;f[n>>2]=w;i=n;j=f[d>>2]|0;f[a>>2]=j;k=a+4|0;l=f[i>>2]|0;f[k>>2]=l;return}function xe(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0;e=f[b>>2]|0;g=b+4|0;h=f[g>>2]|0;i=((f[c>>2]|0)-e<<3)+(f[c+4>>2]|0)-h|0;c=e;if((i|0)<=0){j=d+4|0;k=f[d>>2]|0;f[a>>2]=k;l=a+4|0;m=f[j>>2]|0;f[l>>2]=m;return}if(!h){e=d+4|0;n=i;o=e;p=c;q=f[e>>2]|0}else{e=32-h|0;r=(i|0)<(e|0)?i:e;s=-1>>>(e-r|0)&-1<<h&f[c>>2];c=d+4|0;h=f[c>>2]|0;e=32-h|0;t=e>>>0<r>>>0?e:r;u=f[d>>2]|0;v=f[u>>2]&~(-1>>>(e-t|0)&-1<<h);f[u>>2]=v;h=f[c>>2]|0;e=f[g>>2]|0;f[u>>2]=(h>>>0>e>>>0?s<<h-e:s>>>(e-h|0))|v;v=(f[c>>2]|0)+t|0;h=u+(v>>>5<<2)|0;f[d>>2]=h;u=v&31;f[c>>2]=u;v=r-t|0;if((v|0)>0){e=f[h>>2]&~(-1>>>(32-v|0));f[h>>2]=e;f[h>>2]=e|s>>>((f[g>>2]|0)+t|0);f[c>>2]=v;w=v}else w=u;u=(f[b>>2]|0)+4|0;f[b>>2]=u;n=i-r|0;o=c;p=u;q=w}w=32-q|0;u=-1<<q;if((n|0)>31){q=~u;c=~n;r=n+((c|0)>-64?c:-64)+32&-32;c=n;i=p;while(1){v=f[i>>2]|0;t=f[d>>2]|0;g=f[t>>2]&q;f[t>>2]=g;f[t>>2]=g|v<<f[o>>2];g=t+4|0;f[d>>2]=g;f[g>>2]=f[g>>2]&u|v>>>w;i=(f[b>>2]|0)+4|0;f[b>>2]=i;if((c|0)<=63)break;else c=c+-32|0}x=n+-32-r|0;y=i}else{x=n;y=p}if((x|0)<=0){j=o;k=f[d>>2]|0;f[a>>2]=k;l=a+4|0;m=f[j>>2]|0;f[l>>2]=m;return}p=f[y>>2]&-1>>>(32-x|0);y=(w|0)<(x|0)?w:x;n=f[d>>2]|0;i=f[n>>2]&~(-1<<f[o>>2]&-1>>>(w-y|0));f[n>>2]=i;f[n>>2]=i|p<<f[o>>2];i=(f[o>>2]|0)+y|0;w=n+(i>>>5<<2)|0;f[d>>2]=w;f[o>>2]=i&31;i=x-y|0;if((i|0)<=0){j=o;k=f[d>>2]|0;f[a>>2]=k;l=a+4|0;m=f[j>>2]|0;f[l>>2]=m;return}f[w>>2]=f[w>>2]&~(-1>>>(32-i|0))|p>>>y;f[o>>2]=i;j=o;k=f[d>>2]|0;f[a>>2]=k;l=a+4|0;m=f[j>>2]|0;f[l>>2]=m;return}function ye(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=u;u=u+16|0;e=d+4|0;g=d;h=d+9|0;i=d+8|0;j=f[(f[a+184>>2]|0)+(c<<2)>>2]&255;b[h>>0]=j;c=a+4|0;k=f[(f[c>>2]|0)+44>>2]|0;l=k+16|0;m=f[l+4>>2]|0;if((m|0)>0|(m|0)==0&(f[l>>2]|0)>>>0>0)n=j;else{f[g>>2]=f[k+4>>2];f[e>>2]=f[g>>2];Me(k,e,h,h+1|0)|0;n=b[h>>0]|0}a:do if(n<<24>>24>-1){k=a+172|0;j=f[(f[k>>2]|0)+((n<<24>>24)*136|0)>>2]|0;l=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+52|0;m=b[h>>0]|0;o=f[k>>2]|0;k=f[o+(m*136|0)+132>>2]|0;switch(f[(f[(f[l>>2]|0)+84>>2]|0)+(j<<2)>>2]|0){case 0:{p=k;q=7;break a;break}case 1:{if(b[o+(m*136|0)+28>>0]|0){p=k;q=7;break a}break}default:{}}m=f[(f[c>>2]|0)+44>>2]|0;b[i>>0]=1;o=m+16|0;j=f[o+4>>2]|0;if(!((j|0)>0|(j|0)==0&(f[o>>2]|0)>>>0>0)){f[g>>2]=f[m+4>>2];f[e>>2]=f[g>>2];Me(m,e,i,i+1|0)|0}r=k}else{p=f[a+68>>2]|0;q=7}while(0);if((q|0)==7){q=f[(f[c>>2]|0)+44>>2]|0;b[i>>0]=0;a=q+16|0;h=f[a+4>>2]|0;if(!((h|0)>0|(h|0)==0&(f[a>>2]|0)>>>0>0)){f[g>>2]=f[q+4>>2];f[e>>2]=f[g>>2];Me(q,e,i,i+1|0)|0}r=p}p=f[(f[c>>2]|0)+44>>2]|0;b[i>>0]=r;r=p+16|0;c=f[r+4>>2]|0;if((c|0)>0|(c|0)==0&(f[r>>2]|0)>>>0>0){u=d;return 1}f[g>>2]=f[p+4>>2];f[e>>2]=f[g>>2];Me(p,e,i,i+1|0)|0;u=d;return 1}function ze(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0;h=u;u=u+16|0;i=h+4|0;j=h;k=a+60|0;f[a+64>>2]=g;g=a+8|0;Mh(g,b,d,e);d=a+56|0;l=f[d>>2]|0;m=f[l+4>>2]|0;n=f[l>>2]|0;o=m-n|0;if((o|0)<=0){u=h;return 1}p=(o>>>2)+-1|0;o=a+68|0;q=a+16|0;r=a+32|0;s=a+12|0;t=a+28|0;v=a+20|0;w=a+24|0;if(m-n>>2>>>0>p>>>0){x=p;y=n}else{z=l;aq(z)}while(1){f[j>>2]=f[y+(x<<2)>>2];f[i>>2]=f[j>>2];ub(k,i,b,x);l=X(x,e)|0;n=b+(l<<2)|0;p=c+(l<<2)|0;l=f[g>>2]|0;if((l|0)>0){m=0;a=o;A=l;while(1){if((A|0)>0){l=0;do{B=f[a+(l<<2)>>2]|0;C=f[q>>2]|0;if((B|0)>(C|0)){D=f[r>>2]|0;f[D+(l<<2)>>2]=C;E=D}else{D=f[s>>2]|0;C=f[r>>2]|0;f[C+(l<<2)>>2]=(B|0)<(D|0)?D:B;E=C}l=l+1|0}while((l|0)<(f[g>>2]|0));F=E}else F=f[r>>2]|0;l=(f[n+(m<<2)>>2]|0)-(f[F+(m<<2)>>2]|0)|0;C=p+(m<<2)|0;f[C>>2]=l;if((l|0)>=(f[t>>2]|0)){if((l|0)>(f[w>>2]|0)){G=l-(f[v>>2]|0)|0;H=18}}else{G=(f[v>>2]|0)+l|0;H=18}if((H|0)==18){H=0;f[C>>2]=G}m=m+1|0;A=f[g>>2]|0;if((m|0)>=(A|0))break;else a=F}}x=x+-1|0;if((x|0)<=-1){H=3;break}a=f[d>>2]|0;y=f[a>>2]|0;if((f[a+4>>2]|0)-y>>2>>>0<=x>>>0){z=a;H=4;break}}if((H|0)==3){u=h;return 1}else if((H|0)==4)aq(z);return 0}function Ae(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0;h=u;u=u+16|0;i=h+4|0;j=h;k=a+60|0;f[a+64>>2]=g;g=a+8|0;Mh(g,b,d,e);d=a+56|0;l=f[d>>2]|0;m=f[l+4>>2]|0;n=f[l>>2]|0;o=m-n|0;if((o|0)<=0){u=h;return 1}p=(o>>>2)+-1|0;o=a+68|0;q=a+16|0;r=a+32|0;s=a+12|0;t=a+28|0;v=a+20|0;w=a+24|0;if(m-n>>2>>>0>p>>>0){x=p;y=n}else{z=l;aq(z)}while(1){f[j>>2]=f[y+(x<<2)>>2];f[i>>2]=f[j>>2];tb(k,i,b,x);l=X(x,e)|0;n=b+(l<<2)|0;p=c+(l<<2)|0;l=f[g>>2]|0;if((l|0)>0){m=0;a=o;A=l;while(1){if((A|0)>0){l=0;do{B=f[a+(l<<2)>>2]|0;C=f[q>>2]|0;if((B|0)>(C|0)){D=f[r>>2]|0;f[D+(l<<2)>>2]=C;E=D}else{D=f[s>>2]|0;C=f[r>>2]|0;f[C+(l<<2)>>2]=(B|0)<(D|0)?D:B;E=C}l=l+1|0}while((l|0)<(f[g>>2]|0));F=E}else F=f[r>>2]|0;l=(f[n+(m<<2)>>2]|0)-(f[F+(m<<2)>>2]|0)|0;C=p+(m<<2)|0;f[C>>2]=l;if((l|0)>=(f[t>>2]|0)){if((l|0)>(f[w>>2]|0)){G=l-(f[v>>2]|0)|0;H=18}}else{G=(f[v>>2]|0)+l|0;H=18}if((H|0)==18){H=0;f[C>>2]=G}m=m+1|0;A=f[g>>2]|0;if((m|0)>=(A|0))break;else a=F}}x=x+-1|0;if((x|0)<=-1){H=3;break}a=f[d>>2]|0;y=f[a>>2]|0;if((f[a+4>>2]|0)-y>>2>>>0<=x>>>0){z=a;H=4;break}}if((H|0)==3){u=h;return 1}else if((H|0)==4)aq(z);return 0}function Be(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0;b=u;u=u+16|0;c=b+4|0;d=b;e=a+12|0;g=f[e>>2]|0;h=(f[g+4>>2]|0)-(f[g>>2]|0)>>2;if(!h){u=b;return 1}i=a+152|0;j=a+140|0;k=a+144|0;l=a+148|0;a=0;m=g;while(1){f[d>>2]=(a>>>0)/3|0;f[c>>2]=f[d>>2];if(!(_j(m,c)|0)?(g=f[e>>2]|0,(f[(f[g+12>>2]|0)+(a<<2)>>2]|0)==-1):0){n=a+1|0;o=((n>>>0)%3|0|0)==0?a+-2|0:n;if((o|0)==-1)p=-1;else p=f[(f[g>>2]|0)+(o<<2)>>2]|0;o=f[i>>2]|0;if((f[o+(p<<2)>>2]|0)==-1){g=f[k>>2]|0;n=f[l>>2]|0;if((g|0)==(n<<5|0)){if((g+1|0)<0){q=11;break}r=n<<6;n=g+32&-32;vi(j,g>>>0<1073741823?(r>>>0<n>>>0?n:r):2147483647);s=f[k>>2]|0;t=f[i>>2]|0}else{s=g;t=o}f[k>>2]=s+1;o=(f[j>>2]|0)+(s>>>5<<2)|0;f[o>>2]=f[o>>2]&~(1<<(s&31));o=t+(p<<2)|0;if((f[o>>2]|0)==-1){r=a;n=o;while(1){f[n>>2]=g;o=r+1|0;a:do if((r|0)!=-1?(v=((o>>>0)%3|0|0)==0?r+-2|0:o,(v|0)!=-1):0){w=f[e>>2]|0;x=f[w+12>>2]|0;y=v;while(1){v=f[x+(y<<2)>>2]|0;if((v|0)==-1)break;z=v+1|0;A=((z>>>0)%3|0|0)==0?v+-2|0:z;if((A|0)==-1){B=-1;C=-1;break a}else y=A}x=y+1|0;A=((x>>>0)%3|0|0)==0?y+-2|0:x;if((A|0)==-1){B=y;C=-1}else{B=y;C=f[(f[w>>2]|0)+(A<<2)>>2]|0}}else{B=-1;C=-1}while(0);n=t+(C<<2)|0;if((f[n>>2]|0)!=-1)break;else r=B}}}}r=a+1|0;if(r>>>0>=h>>>0){q=3;break}a=r;m=f[e>>2]|0}if((q|0)==3){u=b;return 1}else if((q|0)==11)aq(j);return 0}function Ce(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;d=u;u=u+32|0;e=d+8|0;g=d;h=a+4|0;i=f[h>>2]|0;if(i>>>0>=b>>>0){f[h>>2]=b;u=d;return}j=a+8|0;k=f[j>>2]|0;l=k<<5;m=b-i|0;if(l>>>0<m>>>0|i>>>0>(l-m|0)>>>0){f[e>>2]=0;n=e+4|0;f[n>>2]=0;o=e+8|0;f[o>>2]=0;if((b|0)<0)aq(a);p=k<<6;k=b+31&-32;vi(e,l>>>0<1073741823?(p>>>0<k>>>0?k:p):2147483647);p=f[h>>2]|0;f[n>>2]=p+m;k=f[a>>2]|0;l=k;q=f[e>>2]|0;r=(l+(p>>>5<<2)-k<<3)+(p&31)|0;if((r|0)>0){p=r>>>5;im(q|0,k|0,p<<2|0)|0;k=r&31;r=q+(p<<2)|0;s=r;if(!k){t=0;v=s}else{w=-1>>>(32-k|0);f[r>>2]=f[r>>2]&~w|f[l+(p<<2)>>2]&w;t=k;v=s}}else{t=0;v=q}f[g>>2]=v;f[g+4>>2]=t;t=g;g=f[t>>2]|0;v=f[t+4>>2]|0;t=f[a>>2]|0;f[a>>2]=f[e>>2];f[e>>2]=t;e=f[h>>2]|0;f[h>>2]=f[n>>2];f[n>>2]=e;e=f[j>>2]|0;f[j>>2]=f[o>>2];f[o>>2]=e;if(t|0)Oq(t);x=g;y=v}else{v=(f[a>>2]|0)+(i>>>5<<2)|0;f[h>>2]=b;x=v;y=i&31}if(!m){u=d;return}i=(y|0)==0;v=x;if(c){if(i){z=m;A=x;B=v}else{c=32-y|0;b=c>>>0>m>>>0?m:c;f[v>>2]=f[v>>2]|-1>>>(c-b|0)&-1<<y;c=v+4|0;z=m-b|0;A=c;B=c}c=z>>>5;sj(A|0,-1,c<<2|0)|0;A=z&31;z=B+(c<<2)|0;if(!A){u=d;return}f[z>>2]=f[z>>2]|-1>>>(32-A|0);u=d;return}else{if(i){C=m;D=x;E=v}else{x=32-y|0;i=x>>>0>m>>>0?m:x;f[v>>2]=f[v>>2]&~(-1>>>(x-i|0)&-1<<y);y=v+4|0;C=m-i|0;D=y;E=y}y=C>>>5;sj(D|0,0,y<<2|0)|0;D=C&31;C=E+(y<<2)|0;if(!D){u=d;return}f[C>>2]=f[C>>2]&~(-1>>>(32-D|0));u=d;return}}function De(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0;a=u;u=u+48|0;g=a+36|0;h=a+24|0;i=a+12|0;j=a;if(!c){k=0;u=a;return k|0}f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;l=Gj(d)|0;if(l>>>0>4294967279)aq(g);if(l>>>0<11){b[g+11>>0]=l;if(!l)m=g;else{n=g;o=7}}else{p=l+16&-16;q=ln(p)|0;f[g>>2]=q;f[g+8>>2]=p|-2147483648;f[g+4>>2]=l;n=q;o=7}if((o|0)==7){kh(n|0,d|0,l|0)|0;m=n}b[m+l>>0]=0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;l=Gj(e)|0;if(l>>>0>4294967279)aq(h);if(l>>>0<11){b[h+11>>0]=l;if(!l)r=h;else{s=h;o=13}}else{m=l+16&-16;n=ln(m)|0;f[h>>2]=n;f[h+8>>2]=m|-2147483648;f[h+4>>2]=l;s=n;o=13}if((o|0)==13){kh(s|0,e|0,l|0)|0;r=s}b[r+l>>0]=0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;l=Gj(d)|0;if(l>>>0>4294967279)aq(i);if(l>>>0<11){b[i+11>>0]=l;if(!l)t=i;else{v=i;o=19}}else{r=l+16&-16;s=ln(r)|0;f[i>>2]=s;f[i+8>>2]=r|-2147483648;f[i+4>>2]=l;v=s;o=19}if((o|0)==19){kh(v|0,d|0,l|0)|0;t=v}b[t+l>>0]=0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;l=Gj(e)|0;if(l>>>0>4294967279)aq(j);if(l>>>0<11){b[j+11>>0]=l;if(!l)w=j;else{x=j;o=25}}else{t=l+16&-16;v=ln(t)|0;f[j>>2]=v;f[j+8>>2]=t|-2147483648;f[j+4>>2]=l;x=v;o=25}if((o|0)==25){kh(x|0,e|0,l|0)|0;w=x}b[w+l>>0]=0;mn(c,i,j);if((b[j+11>>0]|0)<0)Oq(f[j>>2]|0);if((b[i+11>>0]|0)<0)Oq(f[i>>2]|0);if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);k=1;u=a;return k|0}function Ee(a,c){a=a|0;c=c|0;var d=0,e=0,g=0;f[a>>2]=f[c>>2];d=c+4|0;f[a+4>>2]=f[d>>2];e=c+8|0;f[a+8>>2]=f[e>>2];g=c+12|0;f[a+12>>2]=f[g>>2];f[d>>2]=0;f[e>>2]=0;f[g>>2]=0;g=c+16|0;f[a+16>>2]=f[g>>2];e=c+20|0;f[a+20>>2]=f[e>>2];d=c+24|0;f[a+24>>2]=f[d>>2];f[g>>2]=0;f[e>>2]=0;f[d>>2]=0;b[a+28>>0]=b[c+28>>0]|0;d=a+32|0;e=c+32|0;f[d>>2]=0;g=a+36|0;f[g>>2]=0;f[a+40>>2]=0;f[d>>2]=f[e>>2];d=c+36|0;f[g>>2]=f[d>>2];g=c+40|0;f[a+40>>2]=f[g>>2];f[g>>2]=0;f[d>>2]=0;f[e>>2]=0;e=a+44|0;d=c+44|0;f[e>>2]=0;g=a+48|0;f[g>>2]=0;f[a+52>>2]=0;f[e>>2]=f[d>>2];e=c+48|0;f[g>>2]=f[e>>2];g=c+52|0;f[a+52>>2]=f[g>>2];f[g>>2]=0;f[e>>2]=0;f[d>>2]=0;d=a+56|0;e=c+56|0;f[d>>2]=0;g=a+60|0;f[g>>2]=0;f[a+64>>2]=0;f[d>>2]=f[e>>2];d=c+60|0;f[g>>2]=f[d>>2];g=c+64|0;f[a+64>>2]=f[g>>2];f[g>>2]=0;f[d>>2]=0;f[e>>2]=0;f[a+68>>2]=f[c+68>>2];f[a+72>>2]=f[c+72>>2];e=a+76|0;d=c+76|0;f[e>>2]=0;g=a+80|0;f[g>>2]=0;f[a+84>>2]=0;f[e>>2]=f[d>>2];e=c+80|0;f[g>>2]=f[e>>2];g=c+84|0;f[a+84>>2]=f[g>>2];f[g>>2]=0;f[e>>2]=0;f[d>>2]=0;d=a+88|0;e=c+88|0;f[d>>2]=0;g=a+92|0;f[g>>2]=0;f[a+96>>2]=0;f[d>>2]=f[e>>2];d=c+92|0;f[g>>2]=f[d>>2];g=c+96|0;f[a+96>>2]=f[g>>2];f[g>>2]=0;f[d>>2]=0;f[e>>2]=0;b[a+100>>0]=b[c+100>>0]|0;e=a+104|0;d=c+104|0;f[e>>2]=0;g=a+108|0;f[g>>2]=0;f[a+112>>2]=0;f[e>>2]=f[d>>2];e=c+108|0;f[g>>2]=f[e>>2];g=c+112|0;f[a+112>>2]=f[g>>2];f[g>>2]=0;f[e>>2]=0;f[d>>2]=0;d=a+116|0;e=c+116|0;f[d>>2]=0;g=a+120|0;f[g>>2]=0;f[a+124>>2]=0;f[d>>2]=f[e>>2];d=c+120|0;f[g>>2]=f[d>>2];g=c+124|0;f[a+124>>2]=f[g>>2];f[g>>2]=0;f[d>>2]=0;f[e>>2]=0;f[a+128>>2]=f[c+128>>2];f[a+132>>2]=f[c+132>>2];return}function Fe(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0;h=u;u=u+48|0;i=h+36|0;j=h+24|0;k=h+8|0;l=h+4|0;m=h;n=e+4|0;Rh(i,c,(f[n>>2]|0)-(f[e>>2]|0)>>2,2,g,d,1);g=f[i>>2]|0;o=(f[f[g>>2]>>2]|0)+(f[g+48>>2]|0)|0;f[k>>2]=-1;f[k+4>>2]=-1;f[k+8>>2]=-1;f[k+12>>2]=-1;p=f[c+4>>2]|0;if((p+-2|0)>>>0<=28){f[k>>2]=p;c=1<<p;f[k+4>>2]=c+-1;p=c+-2|0;f[k+8>>2]=p;f[k+12>>2]=(p|0)/2|0;p=f[e>>2]|0;if((f[n>>2]|0)==(p|0))q=g;else{c=d+84|0;r=d+68|0;s=d+48|0;t=d+40|0;v=0;w=0;x=p;while(1){p=f[x+(v<<2)>>2]|0;if(!(b[c>>0]|0))y=f[(f[r>>2]|0)+(p<<2)>>2]|0;else y=p;p=s;z=f[p>>2]|0;A=f[p+4>>2]|0;p=t;B=f[p>>2]|0;C=un(B|0,f[p+4>>2]|0,y|0,0)|0;p=Vn(C|0,I|0,z|0,A|0)|0;kh(j|0,(f[f[d>>2]>>2]|0)+p|0,B|0)|0;rf(k,j,l,m);f[o+(w<<2)>>2]=f[l>>2];f[o+((w|1)<<2)>>2]=f[m>>2];v=v+1|0;x=f[e>>2]|0;if(v>>>0>=(f[n>>2]|0)-x>>2>>>0)break;else w=w+2|0}q=f[i>>2]|0}f[a>>2]=q;f[i>>2]=0;u=h;return}f[a>>2]=0;f[i>>2]=0;if(!g){u=h;return}i=g+88|0;a=f[i>>2]|0;f[i>>2]=0;if(a|0){i=f[a+8>>2]|0;if(i|0){q=a+12|0;if((f[q>>2]|0)!=(i|0))f[q>>2]=i;Oq(i)}Oq(a)}a=f[g+68>>2]|0;if(a|0){i=g+72|0;q=f[i>>2]|0;if((q|0)!=(a|0))f[i>>2]=q+(~((q+-4-a|0)>>>2)<<2);Oq(a)}a=g+64|0;q=f[a>>2]|0;f[a>>2]=0;if(q|0){a=f[q>>2]|0;if(a|0){i=q+4|0;if((f[i>>2]|0)!=(a|0))f[i>>2]=a;Oq(a)}Oq(q)}Oq(g);u=h;return}function Ge(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=a+8|0;e=f[d>>2]|0;g=a+4|0;h=f[g>>2]|0;if(((e-h|0)/136|0)>>>0>=c>>>0){i=c;j=h;do{f[j>>2]=-1;Ok(j+4|0);b[j+100>>0]=1;k=j+104|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;f[k+12>>2]=0;f[k+16>>2]=0;f[k+20>>2]=0;f[k+24>>2]=0;j=(f[g>>2]|0)+136|0;f[g>>2]=j;i=i+-1|0}while((i|0)!=0);return}i=f[a>>2]|0;j=(h-i|0)/136|0;h=j+c|0;if(h>>>0>31580641)aq(a);k=(e-i|0)/136|0;i=k<<1;e=k>>>0<15790320?(i>>>0<h>>>0?h:i):31580641;do if(e)if(e>>>0>31580641){i=ra(8)|0;Oo(i,16035);f[i>>2]=7256;va(i|0,1112,110)}else{l=ln(e*136|0)|0;break}else l=0;while(0);i=l+(j*136|0)|0;j=i;h=l+(e*136|0)|0;e=c;c=j;l=i;do{f[l>>2]=-1;Ok(l+4|0);b[l+100>>0]=1;k=l+104|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;f[k+12>>2]=0;f[k+16>>2]=0;f[k+20>>2]=0;f[k+24>>2]=0;l=c+136|0;c=l;e=e+-1|0}while((e|0)!=0);e=f[a>>2]|0;l=f[g>>2]|0;if((l|0)==(e|0)){m=j;n=e;o=e}else{k=l;l=j;j=i;do{k=k+-136|0;Ee(j+-136|0,k);j=l+-136|0;l=j}while((k|0)!=(e|0));m=l;n=f[a>>2]|0;o=f[g>>2]|0}f[a>>2]=m;f[g>>2]=c;f[d>>2]=h;h=n;if((o|0)!=(h|0)){d=o;do{o=f[d+-20>>2]|0;if(o|0){c=d+-16|0;g=f[c>>2]|0;if((g|0)!=(o|0))f[c>>2]=g+(~((g+-4-o|0)>>>2)<<2);Oq(o)}o=f[d+-32>>2]|0;if(o|0){g=d+-28|0;c=f[g>>2]|0;if((c|0)!=(o|0))f[g>>2]=c+(~((c+-4-o|0)>>>2)<<2);Oq(o)}Mi(d+-132|0);d=d+-136|0}while((d|0)!=(h|0))}if(!n)return;Oq(n);return}function He(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;c=f[b>>2]|0;b=a+12|0;d=(c|0)==-1;e=c+1|0;do if(!d){g=((e>>>0)%3|0|0)==0?c+-2|0:e;if(!((c>>>0)%3|0)){h=g;i=c+2|0;break}else{h=g;i=c+-1|0;break}}else{h=-1;i=-1}while(0);e=d?-1:(c>>>0)/3|0;g=a+28|0;j=(f[g>>2]|0)+(e>>>5<<2)|0;f[j>>2]=1<<(e&31)|f[j>>2];j=a+172|0;e=a+176|0;k=a+280|0;if(((!d?(d=f[(f[(f[b>>2]|0)+12>>2]|0)+(c<<2)>>2]|0,(d|0)!=-1):0)?(a=(d>>>0)/3|0,(f[(f[g>>2]|0)+(a>>>5<<2)>>2]&1<<(a&31)|0)==0):0)?(a=f[j>>2]|0,(f[e>>2]|0)!=(a|0)):0){d=c>>>5;l=1<<(c&31);c=0;m=a;do{a=(f[k>>2]|0)+(c<<5)|0;if(!(l&f[(f[m+(c*136|0)+4>>2]|0)+(d<<2)>>2]))fj(a,0);else fj(a,1);c=c+1|0;m=f[j>>2]|0}while(c>>>0<(((f[e>>2]|0)-m|0)/136|0)>>>0)}if((((h|0)!=-1?(m=f[(f[(f[b>>2]|0)+12>>2]|0)+(h<<2)>>2]|0,(m|0)!=-1):0)?(c=(m>>>0)/3|0,(f[(f[g>>2]|0)+(c>>>5<<2)>>2]&1<<(c&31)|0)==0):0)?(c=f[j>>2]|0,(f[e>>2]|0)!=(c|0)):0){m=h>>>5;d=1<<(h&31);h=0;l=c;do{c=(f[k>>2]|0)+(h<<5)|0;if(!(d&f[(f[l+(h*136|0)+4>>2]|0)+(m<<2)>>2]))fj(c,0);else fj(c,1);h=h+1|0;l=f[j>>2]|0}while(h>>>0<(((f[e>>2]|0)-l|0)/136|0)>>>0)}if((i|0)==-1)return 1;l=f[(f[(f[b>>2]|0)+12>>2]|0)+(i<<2)>>2]|0;if((l|0)==-1)return 1;b=(l>>>0)/3|0;if(f[(f[g>>2]|0)+(b>>>5<<2)>>2]&1<<(b&31)|0)return 1;b=f[j>>2]|0;if((f[e>>2]|0)==(b|0))return 1;g=i>>>5;l=1<<(i&31);i=0;h=b;do{b=(f[k>>2]|0)+(i<<5)|0;if(!(l&f[(f[h+(i*136|0)+4>>2]|0)+(g<<2)>>2]))fj(b,0);else fj(b,1);i=i+1|0;h=f[j>>2]|0}while(i>>>0<(((f[e>>2]|0)-h|0)/136|0)>>>0);return 1}function Ie(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0;d=u;u=u+16|0;e=d+4|0;g=d;h=d+8|0;i=a+4|0;j=a+8|0;ci((f[j>>2]|0)-(f[i>>2]|0)>>2,c)|0;k=f[i>>2]|0;if((f[j>>2]|0)==(k|0)){u=d;return 1}l=a+32|0;a=c+16|0;m=c+4|0;n=h+1|0;o=h+1|0;p=h+1|0;q=h+1|0;r=0;s=k;do{k=f[(f[(f[l>>2]|0)+8>>2]|0)+(f[s+(r<<2)>>2]<<2)>>2]|0;b[h>>0]=f[k+56>>2];t=a;v=f[t>>2]|0;w=f[t+4>>2]|0;if((w|0)>0|(w|0)==0&v>>>0>0){x=w;y=v}else{f[g>>2]=f[m>>2];f[e>>2]=f[g>>2];Me(c,e,h,q)|0;v=a;x=f[v+4>>2]|0;y=f[v>>2]|0}b[h>>0]=f[k+28>>2];if((x|0)>0|(x|0)==0&y>>>0>0){z=x;A=y}else{f[g>>2]=f[m>>2];f[e>>2]=f[g>>2];Me(c,e,h,p)|0;v=a;z=f[v+4>>2]|0;A=f[v>>2]|0}b[h>>0]=b[k+24>>0]|0;if((z|0)>0|(z|0)==0&A>>>0>0){B=z;C=A}else{f[g>>2]=f[m>>2];f[e>>2]=f[g>>2];Me(c,e,h,o)|0;v=a;B=f[v+4>>2]|0;C=f[v>>2]|0}b[h>>0]=b[k+32>>0]|0;if(!((B|0)>0|(B|0)==0&C>>>0>0)){f[g>>2]=f[m>>2];f[e>>2]=f[g>>2];Me(c,e,h,n)|0}ci(f[k+60>>2]|0,c)|0;r=r+1|0;s=f[i>>2]|0}while(r>>>0<(f[j>>2]|0)-s>>2>>>0);u=d;return 1}function Je(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=Oa,D=Oa,E=Oa,F=Oa;h=u;u=u+16|0;i=h;j=e+4|0;k=b[d+24>>0]|0;l=k<<24>>24;Rh(a,c,(f[j>>2]|0)-(f[e>>2]|0)>>2,l,g,d,1);g=f[a>>2]|0;a=(f[f[g>>2]>>2]|0)+(f[g+48>>2]|0)|0;g=f[c+4>>2]|0;Ap(i);Ko(i,$(n[c+20>>2]),(1<<g)+-1|0);g=Lq(l>>>0>1073741823?-1:l<<2)|0;m=f[j>>2]|0;j=f[e>>2]|0;e=j;if((m|0)==(j|0)){Mq(g);u=h;return}o=d+68|0;p=d+48|0;q=d+40|0;r=c+8|0;c=i+4|0;s=(b[d+84>>0]|0)==0;t=m-j>>2;if(k<<24>>24>0){v=0;w=0}else{k=0;do{j=f[e+(k<<2)>>2]|0;if(s)x=f[(f[o>>2]|0)+(j<<2)>>2]|0;else x=j;j=p;m=f[j>>2]|0;y=f[j+4>>2]|0;j=q;z=f[j>>2]|0;A=un(z|0,f[j+4>>2]|0,x|0,0)|0;j=Vn(A|0,I|0,m|0,y|0)|0;kh(g|0,(f[f[d>>2]>>2]|0)+j|0,z|0)|0;k=k+1|0}while(k>>>0<t>>>0);Mq(g);u=h;return}while(1){k=f[e+(v<<2)>>2]|0;if(s)B=f[(f[o>>2]|0)+(k<<2)>>2]|0;else B=k;k=p;x=f[k>>2]|0;z=f[k+4>>2]|0;k=q;j=f[k>>2]|0;y=un(j|0,f[k+4>>2]|0,B|0,0)|0;k=Vn(y|0,I|0,x|0,z|0)|0;kh(g|0,(f[f[d>>2]>>2]|0)+k|0,j|0)|0;j=f[r>>2]|0;C=$(n[i>>2]);k=0;z=w;while(1){D=$(n[g+(k<<2)>>2]);E=$(D-$(n[j+(k<<2)>>2]));x=E<$(0.0);D=$(-E);F=$((x?D:E)/C);y=~~$(J($($(F*$(f[c>>2]|0))+$(.5))));f[a+(z<<2)>>2]=x?0-y|0:y;k=k+1|0;if((k|0)==(l|0))break;else z=z+1|0}v=v+1|0;if(v>>>0>=t>>>0)break;else w=w+l|0}Mq(g);u=h;return}function Ke(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0;d=u;u=u+32|0;e=d+16|0;g=d+12|0;h=d+8|0;i=d+4|0;j=d;lp(a);f[a+16>>2]=0;f[a+20>>2]=0;f[a+12>>2]=a+16;k=a+24|0;lp(k);if((a|0)!=(b|0)){f[h>>2]=f[b>>2];f[i>>2]=b+4;f[g>>2]=f[h>>2];f[e>>2]=f[i>>2];Oc(a,g,e)}l=b+24|0;if((k|0)!=(l|0)){f[h>>2]=f[l>>2];f[i>>2]=b+28;f[g>>2]=f[h>>2];f[e>>2]=f[i>>2];Oc(k,g,e)}f[j>>2]=0;k=c+8|0;l=c+12|0;c=f[l>>2]|0;m=f[k>>2]|0;if((c-m|0)<=0){u=d;return}n=b+16|0;b=m;m=c;c=0;while(1){o=f[(f[b+(c<<2)>>2]|0)+56>>2]|0;p=f[n>>2]|0;if(p){q=n;r=p;a:while(1){p=r;while(1){if((f[p+16>>2]|0)>=(o|0))break;s=f[p+4>>2]|0;if(!s){t=q;break a}else p=s}r=f[p>>2]|0;if(!r){t=p;break}else q=p}if((t|0)!=(n|0)?(o|0)>=(f[t+16>>2]|0):0){q=t+20|0;r=Hd(a,j)|0;if((r|0)!=(q|0)){f[h>>2]=f[q>>2];f[i>>2]=t+24;f[g>>2]=f[h>>2];f[e>>2]=f[i>>2];Oc(r,g,e)}v=f[j>>2]|0;w=f[k>>2]|0;x=f[l>>2]|0}else{v=c;w=b;x=m}}else{v=c;w=b;x=m}c=v+1|0;f[j>>2]=c;if((c|0)>=(x-w>>2|0))break;else{b=w;m=x}}u=d;return}function Le(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0;d=u;u=u+16|0;e=d+4|0;g=d;h=d+8|0;i=a+12|0;ci(f[i>>2]|0,c)|0;if(!(f[i>>2]|0)){j=1;u=d;return j|0}k=c+16|0;l=c+4|0;m=h+1|0;n=h+1|0;o=h+1|0;p=0;while(1){q=f[a>>2]|0;r=f[q+(p<<3)>>2]|0;if(r>>>0>63)if(r>>>0>16383)if(r>>>0>4194303){j=0;s=20;break}else{t=2;s=13}else{t=1;s=13}else if(!r){v=p+1|0;w=0;while(1){if(f[q+(v+w<<3)>>2]|0){x=w;break}y=w+1|0;if(y>>>0<63)w=y;else{x=y;break}}b[h>>0]=x<<2|3;w=k;v=f[w+4>>2]|0;if(!((v|0)>0|(v|0)==0&(f[w>>2]|0)>>>0>0)){f[g>>2]=f[l>>2];f[e>>2]=f[g>>2];Me(c,e,h,o)|0}z=x+p|0}else{t=0;s=13}if((s|0)==13){s=0;b[h>>0]=t|r<<2;w=k;v=f[w+4>>2]|0;if(!((v|0)>0|(v|0)==0&(f[w>>2]|0)>>>0>0)){f[g>>2]=f[l>>2];f[e>>2]=f[g>>2];Me(c,e,h,n)|0}if(!t)z=p;else{w=0;do{w=w+1|0;b[h>>0]=r>>>((w<<3)+-2|0);v=k;q=f[v+4>>2]|0;if(!((q|0)>0|(q|0)==0&(f[v>>2]|0)>>>0>0)){f[g>>2]=f[l>>2];f[e>>2]=f[g>>2];Me(c,e,h,m)|0}}while((w|0)<(t|0));z=p}}p=z+1|0;if(p>>>0>=(f[i>>2]|0)>>>0){j=1;s=20;break}}if((s|0)==20){u=d;return j|0}return 0}function Me(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;g=f[a>>2]|0;h=g;i=(f[c>>2]|0)-h|0;c=g+i|0;j=e-d|0;if((j|0)<=0){k=c;return k|0}l=a+8|0;m=f[l>>2]|0;n=a+4|0;o=f[n>>2]|0;p=o;if((j|0)<=(m-p|0)){q=p-c|0;if((j|0)>(q|0)){r=d+q|0;if((r|0)==(e|0))s=o;else{t=r;u=o;while(1){b[u>>0]=b[t>>0]|0;t=t+1|0;v=(f[n>>2]|0)+1|0;f[n>>2]=v;if((t|0)==(e|0)){s=v;break}else u=v}}if((q|0)>0){w=r;x=s}else{k=c;return k|0}}else{w=e;x=o}s=x-(c+j)|0;r=c+s|0;if(r>>>0<o>>>0){q=r;r=x;do{b[r>>0]=b[q>>0]|0;q=q+1|0;r=(f[n>>2]|0)+1|0;f[n>>2]=r}while((q|0)!=(o|0))}if(s|0)im(x+(0-s)|0,c|0,s|0)|0;if((w|0)==(d|0)){k=c;return k|0}else{y=d;z=c}while(1){b[z>>0]=b[y>>0]|0;y=y+1|0;if((y|0)==(w|0)){k=c;break}else z=z+1|0}return k|0}z=p-h+j|0;if((z|0)<0)aq(a);j=m-h|0;h=j<<1;m=j>>>0<1073741823?(h>>>0<z>>>0?z:h):2147483647;h=c;if(!m)A=0;else A=ln(m)|0;z=A+i|0;i=z;j=A+m|0;if((d|0)==(e|0)){B=i;C=g}else{g=d;d=i;i=z;do{b[i>>0]=b[g>>0]|0;i=d+1|0;d=i;g=g+1|0}while((g|0)!=(e|0));B=d;C=f[a>>2]|0}d=h-C|0;e=z+(0-d)|0;if((d|0)>0)kh(e|0,C|0,d|0)|0;d=(f[n>>2]|0)-h|0;if((d|0)>0){h=B;kh(h|0,c|0,d|0)|0;D=h+d|0;E=f[a>>2]|0}else{D=B;E=C}f[a>>2]=e;f[n>>2]=D;f[l>>2]=j;if(!E){k=z;return k|0}Oq(E);k=z;return k|0}function Ne(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;e=u;u=u+16|0;g=e;h=f[(f[c+4>>2]|0)+(d<<2)>>2]|0;d=f[c+28>>2]|0;c=f[(f[(f[d+4>>2]|0)+8>>2]|0)+(h<<2)>>2]|0;switch(f[c+28>>2]|0){case 5:case 6:case 3:case 4:case 1:case 2:{i=ln(40)|0;zo(i);j=i;k=j;f[a>>2]=k;u=e;return}case 9:{l=3;break}default:{}}if((l|0)==3){i=f[d+48>>2]|0;d=ln(32)|0;f[g>>2]=d;f[g+8>>2]=-2147483616;f[g+4>>2]=17;m=d;n=14495;o=m+17|0;do{b[m>>0]=b[n>>0]|0;m=m+1|0;n=n+1|0}while((m|0)<(o|0));b[d+17>>0]=0;d=i+16|0;n=f[d>>2]|0;if(n){p=d;q=n;a:while(1){n=q;while(1){if((f[n+16>>2]|0)>=(h|0))break;r=f[n+4>>2]|0;if(!r){s=p;break a}else n=r}q=f[n>>2]|0;if(!q){s=n;break}else p=n}if(((s|0)!=(d|0)?(h|0)>=(f[s+16>>2]|0):0)?(h=s+20|0,(Jh(h,g)|0)!=0):0)t=Hk(h,g,-1)|0;else l=12}else l=12;if((l|0)==12)t=Hk(i,g,-1)|0;if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);if((t|0)>0)if((f[c+56>>2]|0)==1){c=ln(48)|0;m=c;o=m+48|0;do{f[m>>2]=0;m=m+4|0}while((m|0)<(o|0));zo(c);f[c>>2]=2496;f[c+40>>2]=1168;f[c+44>>2]=-1;j=c;k=j;f[a>>2]=k;u=e;return}else{c=ln(64)|0;ym(c);j=c;k=j;f[a>>2]=k;u=e;return}}c=ln(36)|0;Hm(c);j=c;k=j;f[a>>2]=k;u=e;return}function Oe(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;d=(c|0)==(a|0);b[c+12>>0]=d&1;if(d)return;else e=c;while(1){g=e+8|0;h=f[g>>2]|0;c=h+12|0;if(b[c>>0]|0){i=23;break}j=h+8|0;k=f[j>>2]|0;d=f[k>>2]|0;if((d|0)==(h|0)){l=f[k+4>>2]|0;if(!l){i=7;break}m=l+12|0;if(!(b[m>>0]|0))n=m;else{i=7;break}}else{if(!d){i=16;break}m=d+12|0;if(!(b[m>>0]|0))n=m;else{i=16;break}}b[c>>0]=1;c=(k|0)==(a|0);b[k+12>>0]=c&1;b[n>>0]=1;if(c){i=23;break}else e=k}if((i|0)==7){if((f[h>>2]|0)==(e|0)){o=h;p=k}else{n=h+4|0;a=f[n>>2]|0;c=f[a>>2]|0;f[n>>2]=c;if(!c)q=k;else{f[c+8>>2]=h;q=f[j>>2]|0}f[a+8>>2]=q;q=f[j>>2]|0;f[((f[q>>2]|0)==(h|0)?q:q+4|0)>>2]=a;f[a>>2]=h;f[j>>2]=a;o=a;p=f[a+8>>2]|0}b[o+12>>0]=1;b[p+12>>0]=0;o=f[p>>2]|0;a=o+4|0;q=f[a>>2]|0;f[p>>2]=q;if(q|0)f[q+8>>2]=p;q=p+8|0;f[o+8>>2]=f[q>>2];c=f[q>>2]|0;f[((f[c>>2]|0)==(p|0)?c:c+4|0)>>2]=o;f[a>>2]=p;f[q>>2]=o;return}else if((i|0)==16){if((f[h>>2]|0)==(e|0)){o=e+4|0;q=f[o>>2]|0;f[h>>2]=q;if(!q)r=k;else{f[q+8>>2]=h;r=f[j>>2]|0}f[g>>2]=r;r=f[j>>2]|0;f[((f[r>>2]|0)==(h|0)?r:r+4|0)>>2]=e;f[o>>2]=h;f[j>>2]=e;s=e;t=f[e+8>>2]|0}else{s=h;t=k}b[s+12>>0]=1;b[t+12>>0]=0;s=t+4|0;k=f[s>>2]|0;h=f[k>>2]|0;f[s>>2]=h;if(h|0)f[h+8>>2]=t;h=t+8|0;f[k+8>>2]=f[h>>2];s=f[h>>2]|0;f[((f[s>>2]|0)==(t|0)?s:s+4|0)>>2]=k;f[k>>2]=t;f[h>>2]=k;return}else if((i|0)==23)return}function Pe(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0;d=f[b>>2]|0;b=a+12|0;e=(d|0)==-1;do if(e){g=1;h=-1;i=-1}else{j=d+(((d>>>0)%3|0|0)==0?2:-1)|0;if((j|0)!=-1){k=f[(f[b>>2]|0)+12>>2]|0;l=j;while(1){j=f[k+(l<<2)>>2]|0;if((j|0)==-1){m=0;n=l;break}o=j+1|0;l=((o>>>0)%3|0|0)==0?j+-2|0:o;if((l|0)==-1){m=1;n=-1;break}}if(e){g=m;h=-1;i=n;break}else{p=m;q=n}}else{p=1;q=-1}g=p;h=f[(f[f[b>>2]>>2]|0)+(d<<2)>>2]|0;i=q}while(0);if(c){c=(f[a+84>>2]|0)+(h>>>5<<2)|0;f[c>>2]=f[c>>2]|1<<(h&31);r=1}else r=0;c=f[(f[a+152>>2]|0)+(h<<2)>>2]|0;q=(f[a+140>>2]|0)+(c>>>5<<2)|0;f[q>>2]=f[q>>2]|1<<(c&31);if(!g){g=(((i>>>0)%3|0|0)==0?2:-1)+i|0;if((g|0)==-1){s=-1;t=i}else{s=f[(f[f[b>>2]>>2]|0)+(g<<2)>>2]|0;t=i}}else{s=-1;t=-1}if((s|0)==(h|0)){u=r;return u|0}i=f[a+84>>2]|0;a=r;r=s;s=t;while(1){t=i+(r>>>5<<2)|0;f[t>>2]=f[t>>2]|1<<(r&31);t=a+1|0;g=s+1|0;a:do if((s|0)!=-1?(c=((g>>>0)%3|0|0)==0?s+-2|0:g,(c|0)!=-1):0){q=f[b>>2]|0;d=f[q+12>>2]|0;p=c;while(1){c=f[d+(p<<2)>>2]|0;if((c|0)==-1)break;n=c+1|0;m=((n>>>0)%3|0|0)==0?c+-2|0:n;if((m|0)==-1){v=-1;w=-1;break a}else p=m}d=(((p>>>0)%3|0|0)==0?2:-1)+p|0;if((d|0)==-1){v=-1;w=p}else{v=f[(f[q>>2]|0)+(d<<2)>>2]|0;w=p}}else{v=-1;w=-1}while(0);if((v|0)==(h|0)){u=t;break}else{a=t;r=v;s=w}}return u|0}function Qe(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=Oa,C=Oa,D=Oa,E=Oa;g=u;u=u+16|0;h=g;i=b[d+24>>0]|0;j=i<<24>>24;Rh(a,c,e,j,0,d,1);k=f[a>>2]|0;a=(f[f[k>>2]>>2]|0)+(f[k+48>>2]|0)|0;k=f[c+4>>2]|0;Ap(h);Ko(h,$(n[c+20>>2]),(1<<k)+-1|0);k=Lq(j>>>0>1073741823?-1:j<<2)|0;if(!e){Mq(k);u=g;return}l=d+68|0;m=d+48|0;o=d+40|0;p=c+8|0;c=h+4|0;q=(b[d+84>>0]|0)==0;if(i<<24>>24>0){r=0;s=0}else{i=0;do{if(q)t=f[(f[l>>2]|0)+(i<<2)>>2]|0;else t=i;v=m;w=f[v>>2]|0;x=f[v+4>>2]|0;v=o;y=f[v>>2]|0;z=un(y|0,f[v+4>>2]|0,t|0,0)|0;v=Vn(z|0,I|0,w|0,x|0)|0;kh(k|0,(f[f[d>>2]>>2]|0)+v|0,y|0)|0;i=i+1|0}while((i|0)!=(e|0));Mq(k);u=g;return}while(1){if(q)A=f[(f[l>>2]|0)+(s<<2)>>2]|0;else A=s;i=m;t=f[i>>2]|0;y=f[i+4>>2]|0;i=o;v=f[i>>2]|0;x=un(v|0,f[i+4>>2]|0,A|0,0)|0;i=Vn(x|0,I|0,t|0,y|0)|0;kh(k|0,(f[f[d>>2]>>2]|0)+i|0,v|0)|0;v=f[p>>2]|0;B=$(n[h>>2]);i=0;y=r;while(1){C=$(n[k+(i<<2)>>2]);D=$(C-$(n[v+(i<<2)>>2]));t=D<$(0.0);C=$(-D);E=$((t?C:D)/B);x=~~$(J($($(E*$(f[c>>2]|0))+$(.5))));f[a+(y<<2)>>2]=t?0-x|0:x;i=i+1|0;if((i|0)==(j|0))break;else y=y+1|0}s=s+1|0;if((s|0)==(e|0))break;else r=r+j|0}Mq(k);u=g;return}function Re(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0;c=a+4|0;d=f[c>>2]|0;e=a+100|0;if(d>>>0<(f[e>>2]|0)>>>0){f[c>>2]=d+1;g=h[d>>0]|0}else g=Si(a)|0;switch(g|0){case 43:case 45:{d=(g|0)==45&1;i=f[c>>2]|0;if(i>>>0<(f[e>>2]|0)>>>0){f[c>>2]=i+1;j=h[i>>0]|0}else j=Si(a)|0;if((b|0)!=0&(j+-48|0)>>>0>9?(f[e>>2]|0)!=0:0){f[c>>2]=(f[c>>2]|0)+-1;k=d;l=j}else{k=d;l=j}break}default:{k=0;l=g}}if((l+-48|0)>>>0>9)if(!(f[e>>2]|0)){m=-2147483648;n=0}else{f[c>>2]=(f[c>>2]|0)+-1;m=-2147483648;n=0}else{g=0;j=l;while(1){g=j+-48+(g*10|0)|0;l=f[c>>2]|0;if(l>>>0<(f[e>>2]|0)>>>0){f[c>>2]=l+1;o=h[l>>0]|0}else o=Si(a)|0;if(!((o+-48|0)>>>0<10&(g|0)<214748364))break;else j=o}j=((g|0)<0)<<31>>31;if((o+-48|0)>>>0<10){l=o;d=g;b=j;while(1){i=un(d|0,b|0,10,0)|0;p=I;q=Vn(l|0,((l|0)<0)<<31>>31|0,-48,-1)|0;r=Vn(q|0,I|0,i|0,p|0)|0;p=I;i=f[c>>2]|0;if(i>>>0<(f[e>>2]|0)>>>0){f[c>>2]=i+1;s=h[i>>0]|0}else s=Si(a)|0;if((s+-48|0)>>>0<10&((p|0)<21474836|(p|0)==21474836&r>>>0<2061584302)){l=s;d=r;b=p}else{t=s;u=r;v=p;break}}}else{t=o;u=g;v=j}if((t+-48|0)>>>0<10)do{t=f[c>>2]|0;if(t>>>0<(f[e>>2]|0)>>>0){f[c>>2]=t+1;w=h[t>>0]|0}else w=Si(a)|0}while((w+-48|0)>>>0<10);if(f[e>>2]|0)f[c>>2]=(f[c>>2]|0)+-1;c=(k|0)!=0;k=Xn(0,0,u|0,v|0)|0;m=c?I:v;n=c?k:u}I=m;return n|0}function Se(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;b=a+1176|0;c=f[b>>2]|0;if(c|0){d=a+1180|0;e=f[d>>2]|0;if((e|0)==(c|0))g=c;else{h=e;while(1){e=h+-12|0;f[d>>2]=e;i=f[e>>2]|0;if(!i)j=e;else{e=h+-8|0;k=f[e>>2]|0;if((k|0)!=(i|0))f[e>>2]=k+(~((k+-4-i|0)>>>2)<<2);Oq(i);j=f[d>>2]|0}if((j|0)==(c|0))break;else h=j}g=f[b>>2]|0}Oq(g)}g=a+1164|0;b=f[g>>2]|0;if(b|0){j=a+1168|0;h=f[j>>2]|0;if((h|0)==(b|0))l=b;else{c=h;while(1){h=c+-12|0;f[j>>2]=h;d=f[h>>2]|0;if(!d)m=h;else{h=c+-8|0;i=f[h>>2]|0;if((i|0)!=(d|0))f[h>>2]=i+(~((i+-4-d|0)>>>2)<<2);Oq(d);m=f[j>>2]|0}if((m|0)==(b|0))break;else c=m}l=f[g>>2]|0}Oq(l)}l=f[a+1152>>2]|0;if(l|0){g=a+1156|0;m=f[g>>2]|0;if((m|0)!=(l|0))f[g>>2]=m+(~((m+-4-l|0)>>>2)<<2);Oq(l)}l=f[a+1140>>2]|0;if(l|0){m=a+1144|0;g=f[m>>2]|0;if((g|0)!=(l|0))f[m>>2]=g+(~((g+-4-l|0)>>>2)<<2);Oq(l)}l=f[a+1128>>2]|0;if(!l){n=a+1108|0;jl(n);o=a+1088|0;jl(o);p=a+1068|0;jl(p);q=a+1036|0;Fj(q);r=a+12|0;Nh(r);return}g=a+1132|0;m=f[g>>2]|0;if((m|0)!=(l|0))f[g>>2]=m+(~((m+-4-l|0)>>>2)<<2);Oq(l);n=a+1108|0;jl(n);o=a+1088|0;jl(o);p=a+1068|0;jl(p);q=a+1036|0;Fj(q);r=a+12|0;Nh(r);return}function Te(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;d=u;u=u+16|0;e=d;g=a+4|0;h=f[g>>2]|0;i=f[(f[a>>2]|0)+52>>2]|0;if(!h){if(!(Sa[i&31](a,c,0)|0)){j=0;u=d;return j|0}}else if(!(Sa[i&31](a,c,f[(f[h+4>>2]|0)+80>>2]|0)|0)){j=0;u=d;return j|0}if(!(b[a+28>>0]|0)){j=1;u=d;return j|0}h=f[a+8>>2]|0;i=f[a+32>>2]|0;a=f[h+80>>2]|0;f[e>>2]=0;k=e+4|0;f[k>>2]=0;f[e+8>>2]=0;do if(a)if(a>>>0>1073741823)aq(e);else{l=a<<2;m=ln(l)|0;f[e>>2]=m;n=m+(a<<2)|0;f[e+8>>2]=n;sj(m|0,0,l|0)|0;f[k>>2]=n;o=m;p=n;q=m;break}else{o=0;p=0;q=0}while(0);e=f[c+4>>2]|0;a=f[c>>2]|0;c=a;a:do if((e|0)!=(a|0)){m=e-a>>2;if(b[h+84>>0]|0){n=0;while(1){f[o+(f[c+(n<<2)>>2]<<2)>>2]=n;n=n+1|0;if(n>>>0>=m>>>0)break a}}n=f[h+68>>2]|0;l=0;do{f[o+(f[n+(f[c+(l<<2)>>2]<<2)>>2]<<2)>>2]=l;l=l+1|0}while(l>>>0<m>>>0)}while(0);c=f[(f[(f[g>>2]|0)+4>>2]|0)+80>>2]|0;b:do if(c|0){g=f[i+68>>2]|0;if(b[h+84>>0]|0){a=0;while(1){f[g+(a<<2)>>2]=f[o+(a<<2)>>2];a=a+1|0;if(a>>>0>=c>>>0)break b}}a=f[h+68>>2]|0;e=0;do{f[g+(e<<2)>>2]=f[o+(f[a+(e<<2)>>2]<<2)>>2];e=e+1|0}while(e>>>0<c>>>0)}while(0);if(o|0){if((p|0)!=(o|0))f[k>>2]=p+(~((p+-4-o|0)>>>2)<<2);Oq(q)}j=1;u=d;return j|0}function Ue(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0;c=u;u=u+16|0;d=c;f[a>>2]=0;f[a+8>>2]=b;Oh(a+12|0);wn(a+1036|0);vo(a+1068|0);vo(a+1088|0);vo(a+1108|0);e=a+1128|0;f[e>>2]=0;g=a+1132|0;f[g>>2]=0;f[a+1136>>2]=0;h=(b|0)==0;do if(!h)if(b>>>0>1073741823)aq(e);else{i=b<<2;j=ln(i)|0;f[e>>2]=j;k=j+(b<<2)|0;f[a+1136>>2]=k;sj(j|0,0,i|0)|0;f[g>>2]=k;break}while(0);g=a+1140|0;f[g>>2]=0;e=a+1144|0;f[e>>2]=0;f[a+1148>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[g>>2]=i;g=i+(b<<2)|0;f[a+1148>>2]=g;sj(i|0,0,k|0)|0;f[e>>2]=g}g=a+1152|0;f[g>>2]=0;e=a+1156|0;f[e>>2]=0;f[a+1160>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[g>>2]=i;g=i+(b<<2)|0;f[a+1160>>2]=g;sj(i|0,0,k|0)|0;f[e>>2]=g}g=b<<5|1;f[d>>2]=0;e=d+4|0;f[e>>2]=0;f[d+8>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[d>>2]=i;j=i+(b<<2)|0;f[d+8>>2]=j;sj(i|0,0,k|0)|0;f[e>>2]=j}lk(a+1164|0,g,d);j=f[d>>2]|0;if(j|0){k=f[e>>2]|0;if((k|0)!=(j|0))f[e>>2]=k+(~((k+-4-j|0)>>>2)<<2);Oq(j)}f[d>>2]=0;j=d+4|0;f[j>>2]=0;f[d+8>>2]=0;if(!h){h=b<<2;k=ln(h)|0;f[d>>2]=k;e=k+(b<<2)|0;f[d+8>>2]=e;sj(k|0,0,h|0)|0;f[j>>2]=e}lk(a+1176|0,g,d);g=f[d>>2]|0;if(!g){u=c;return}d=f[j>>2]|0;if((d|0)!=(g|0))f[j>>2]=d+(~((d+-4-g|0)>>>2)<<2);Oq(g);u=c;return}function Ve(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0.0,D=0.0,E=0.0;g=u;u=u+16|0;h=g;i=b+16|0;f[a>>2]=f[i>>2];f[a+4>>2]=f[i+4>>2];f[a+8>>2]=f[i+8>>2];f[a+12>>2]=f[i+12>>2];f[a+16>>2]=f[i+16>>2];f[a+20>>2]=f[i+20>>2];j=a+8|0;f[j>>2]=(f[j>>2]|0)+d;j=(d|0)>0;if(j){k=b+4|0;l=a+16|0;m=a+12|0;n=f[b>>2]|0;o=n;q=0;r=o;s=n;n=o;while(1){o=f[c+(q<<2)>>2]|0;t=f[k>>2]|0;if(t-s>>2>>>0>o>>>0){v=r;w=n}else{x=o+1|0;f[h>>2]=0;y=t-s>>2;z=s;A=t;if(x>>>0<=y>>>0)if(x>>>0<y>>>0?(t=z+(x<<2)|0,(t|0)!=(A|0)):0){f[k>>2]=A+(~((A+-4-t|0)>>>2)<<2);B=r}else B=r;else{Ch(b,x-y|0,h);B=f[b>>2]|0}v=B;w=B}y=w+(o<<2)|0;x=f[y>>2]|0;s=w;if((x|0)<=1)if((x|0)==0?(f[l>>2]=(f[l>>2]|0)+1,o>>>0>(f[m>>2]|0)>>>0):0){f[m>>2]=o;C=0.0}else C=0.0;else{D=+(x|0);C=+Zg(D)*D}x=(f[y>>2]|0)+1|0;f[y>>2]=x;D=+(x|0);E=+Zg(D)*D-C;p[a>>3]=+p[a>>3]+E;q=q+1|0;if((q|0)==(d|0))break;else{r=v;n=w}}}if(e){f[i>>2]=f[a>>2];f[i+4>>2]=f[a+4>>2];f[i+8>>2]=f[a+8>>2];f[i+12>>2]=f[a+12>>2];f[i+16>>2]=f[a+16>>2];u=g;return}if(!j){u=g;return}j=f[b>>2]|0;b=0;do{a=j+(f[c+(b<<2)>>2]<<2)|0;f[a>>2]=(f[a>>2]|0)+-1;b=b+1|0}while((b|0)!=(d|0));u=g;return}function We(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0.0;a:do if(b>>>0<=20)do switch(b|0){case 9:{d=(f[c>>2]|0)+(4-1)&~(4-1);e=f[d>>2]|0;f[c>>2]=d+4;f[a>>2]=e;break a;break}case 10:{e=(f[c>>2]|0)+(4-1)&~(4-1);d=f[e>>2]|0;f[c>>2]=e+4;e=a;f[e>>2]=d;f[e+4>>2]=((d|0)<0)<<31>>31;break a;break}case 11:{d=(f[c>>2]|0)+(4-1)&~(4-1);e=f[d>>2]|0;f[c>>2]=d+4;d=a;f[d>>2]=e;f[d+4>>2]=0;break a;break}case 12:{d=(f[c>>2]|0)+(8-1)&~(8-1);e=d;g=f[e>>2]|0;h=f[e+4>>2]|0;f[c>>2]=d+8;d=a;f[d>>2]=g;f[d+4>>2]=h;break a;break}case 13:{h=(f[c>>2]|0)+(4-1)&~(4-1);d=f[h>>2]|0;f[c>>2]=h+4;h=(d&65535)<<16>>16;d=a;f[d>>2]=h;f[d+4>>2]=((h|0)<0)<<31>>31;break a;break}case 14:{h=(f[c>>2]|0)+(4-1)&~(4-1);d=f[h>>2]|0;f[c>>2]=h+4;h=a;f[h>>2]=d&65535;f[h+4>>2]=0;break a;break}case 15:{h=(f[c>>2]|0)+(4-1)&~(4-1);d=f[h>>2]|0;f[c>>2]=h+4;h=(d&255)<<24>>24;d=a;f[d>>2]=h;f[d+4>>2]=((h|0)<0)<<31>>31;break a;break}case 16:{h=(f[c>>2]|0)+(4-1)&~(4-1);d=f[h>>2]|0;f[c>>2]=h+4;h=a;f[h>>2]=d&255;f[h+4>>2]=0;break a;break}case 17:{h=(f[c>>2]|0)+(8-1)&~(8-1);i=+p[h>>3];f[c>>2]=h+8;p[a>>3]=i;break a;break}case 18:{h=(f[c>>2]|0)+(8-1)&~(8-1);i=+p[h>>3];f[c>>2]=h+8;p[a>>3]=i;break a;break}default:break a}while(0);while(0);return}function Xe(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;c=u;u=u+16|0;d=c+4|0;e=c;g=c+8|0;if(!(Qa[f[(f[a>>2]|0)+32>>2]&127](a)|0)){h=0;u=c;return h|0}i=a+44|0;j=f[i>>2]|0;k=a+8|0;l=a+12|0;m=f[l>>2]|0;n=f[k>>2]|0;b[g>>0]=(m-n|0)>>>2;o=j+16|0;p=f[o+4>>2]|0;if((p|0)>0|(p|0)==0&(f[o>>2]|0)>>>0>0){q=k;r=n;s=m}else{f[e>>2]=f[j+4>>2];f[d>>2]=f[e>>2];Me(j,d,g,g+1|0)|0;q=k;r=f[k>>2]|0;s=f[l>>2]|0}a:do if((r|0)!=(s|0)){l=a+4|0;k=r;while(1){g=f[k>>2]|0;k=k+4|0;if(!(Sa[f[(f[g>>2]|0)+8>>2]&31](g,a,f[l>>2]|0)|0)){h=0;break}if((k|0)==(s|0))break a}u=c;return h|0}while(0);if(!(xc(a)|0)){h=0;u=c;return h|0}s=a+32|0;r=f[s>>2]|0;k=a+36|0;l=f[k>>2]|0;b:do if((r|0)!=(l|0)){g=r;do{if(!(Ra[f[(f[a>>2]|0)+40>>2]&127](a,f[g>>2]|0)|0)){h=0;t=18;break}g=g+4|0}while((g|0)!=(l|0));if((t|0)==18){u=c;return h|0}g=f[s>>2]|0;d=f[k>>2]|0;if((g|0)!=(d|0)){j=g;while(1){g=f[(f[q>>2]|0)+(f[j>>2]<<2)>>2]|0;j=j+4|0;if(!(Ra[f[(f[g>>2]|0)+12>>2]&127](g,f[i>>2]|0)|0)){h=0;break}if((j|0)==(d|0))break b}u=c;return h|0}}while(0);h=Qa[f[(f[a>>2]|0)+44>>2]&127](a)|0;u=c;return h|0}function Ye(a,b){a=a|0;b=b|0;ld(a,b);ld(a+32|0,b);ld(a+64|0,b);ld(a+96|0,b);ld(a+128|0,b);ld(a+160|0,b);ld(a+192|0,b);ld(a+224|0,b);ld(a+256|0,b);ld(a+288|0,b);ld(a+320|0,b);ld(a+352|0,b);ld(a+384|0,b);ld(a+416|0,b);ld(a+448|0,b);ld(a+480|0,b);ld(a+512|0,b);ld(a+544|0,b);ld(a+576|0,b);ld(a+608|0,b);ld(a+640|0,b);ld(a+672|0,b);ld(a+704|0,b);ld(a+736|0,b);ld(a+768|0,b);ld(a+800|0,b);ld(a+832|0,b);ld(a+864|0,b);ld(a+896|0,b);ld(a+928|0,b);ld(a+960|0,b);ld(a+992|0,b);ld(a+1024|0,b);return}function Ze(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0;c=u;u=u+32|0;d=c;e=a+4|0;g=f[a>>2]|0;h=(f[e>>2]|0)-g>>2;i=h+1|0;if(i>>>0>1073741823)aq(a);j=a+8|0;k=(f[j>>2]|0)-g|0;g=k>>1;l=k>>2>>>0<536870911?(g>>>0<i>>>0?i:g):1073741823;f[d+12>>2]=0;f[d+16>>2]=a+8;do if(l)if(l>>>0>1073741823){g=ra(8)|0;Oo(g,16035);f[g>>2]=7256;va(g|0,1112,110)}else{m=ln(l<<2)|0;break}else m=0;while(0);f[d>>2]=m;g=m+(h<<2)|0;h=d+8|0;i=d+4|0;f[i>>2]=g;k=m+(l<<2)|0;l=d+12|0;f[l>>2]=k;m=f[b>>2]|0;f[b>>2]=0;f[g>>2]=m;m=g+4|0;f[h>>2]=m;b=f[a>>2]|0;n=f[e>>2]|0;if((n|0)==(b|0)){o=g;p=l;q=h;r=b;s=m;t=n;v=k;w=o;f[a>>2]=w;f[i>>2]=r;f[e>>2]=s;f[q>>2]=t;x=f[j>>2]|0;f[j>>2]=v;f[p>>2]=x;f[d>>2]=r;ki(d);u=c;return}else{y=n;z=g}do{y=y+-4|0;g=f[y>>2]|0;f[y>>2]=0;f[z+-4>>2]=g;z=(f[i>>2]|0)+-4|0;f[i>>2]=z}while((y|0)!=(b|0));o=z;p=l;q=h;r=f[a>>2]|0;s=f[h>>2]|0;t=f[e>>2]|0;v=f[l>>2]|0;w=o;f[a>>2]=w;f[i>>2]=r;f[e>>2]=s;f[q>>2]=t;x=f[j>>2]|0;f[j>>2]=v;f[p>>2]=x;f[d>>2]=r;ki(d);u=c;return}function _e(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;d=u;u=u+32|0;e=d+12|0;g=d;h=nl(c,0)|0;if(!h){f[a>>2]=0;u=d;return}i=f[c+100>>2]|0;j=f[c+96>>2]|0;c=i-j|0;k=(c|0)/12|0;f[e>>2]=0;l=e+4|0;f[l>>2]=0;f[e+8>>2]=0;m=j;do if(c)if(k>>>0>357913941)aq(e);else{n=ln(c)|0;f[e>>2]=n;f[e+8>>2]=n+(k*12|0);sj(n|0,0,c|0)|0;f[l>>2]=n+c;o=n;break}else o=0;while(0);f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;a:do if((i|0)!=(j|0)){c=g+4|0;n=g+8|0;if(b[h+84>>0]|0){p=0;while(1){q=m+(p*12|0)|0;f[g>>2]=f[q>>2];f[g+4>>2]=f[q+4>>2];f[g+8>>2]=f[q+8>>2];f[o+(p*12|0)>>2]=f[g>>2];f[o+(p*12|0)+4>>2]=f[c>>2];f[o+(p*12|0)+8>>2]=f[n>>2];p=p+1|0;if(p>>>0>=k>>>0)break a}}p=f[h+68>>2]|0;q=0;do{r=f[p+(f[m+(q*12|0)>>2]<<2)>>2]|0;f[g>>2]=r;s=f[p+(f[m+(q*12|0)+4>>2]<<2)>>2]|0;f[c>>2]=s;t=f[p+(f[m+(q*12|0)+8>>2]<<2)>>2]|0;f[n>>2]=t;f[o+(q*12|0)>>2]=r;f[o+(q*12|0)+4>>2]=s;f[o+(q*12|0)+8>>2]=t;q=q+1|0}while(q>>>0<k>>>0)}while(0);Kj(a,e);a=f[e>>2]|0;if(a|0){e=f[l>>2]|0;if((e|0)!=(a|0))f[l>>2]=e+(~(((e+-12-a|0)>>>0)/12|0)*12|0);Oq(a)}u=d;return}function $e(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0;c=u;u=u+16|0;d=c;f[a>>2]=0;f[a+8>>2]=b;wn(a+12|0);vo(a+44|0);vo(a+64|0);vo(a+84|0);e=a+104|0;f[e>>2]=0;g=a+108|0;f[g>>2]=0;f[a+112>>2]=0;h=(b|0)==0;do if(!h)if(b>>>0>1073741823)aq(e);else{i=b<<2;j=ln(i)|0;f[e>>2]=j;k=j+(b<<2)|0;f[a+112>>2]=k;sj(j|0,0,i|0)|0;f[g>>2]=k;break}while(0);g=a+116|0;f[g>>2]=0;e=a+120|0;f[e>>2]=0;f[a+124>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[g>>2]=i;g=i+(b<<2)|0;f[a+124>>2]=g;sj(i|0,0,k|0)|0;f[e>>2]=g}g=a+128|0;f[g>>2]=0;e=a+132|0;f[e>>2]=0;f[a+136>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[g>>2]=i;g=i+(b<<2)|0;f[a+136>>2]=g;sj(i|0,0,k|0)|0;f[e>>2]=g}g=b<<5|1;f[d>>2]=0;e=d+4|0;f[e>>2]=0;f[d+8>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[d>>2]=i;j=i+(b<<2)|0;f[d+8>>2]=j;sj(i|0,0,k|0)|0;f[e>>2]=j}lk(a+140|0,g,d);j=f[d>>2]|0;if(j|0){k=f[e>>2]|0;if((k|0)!=(j|0))f[e>>2]=k+(~((k+-4-j|0)>>>2)<<2);Oq(j)}f[d>>2]=0;j=d+4|0;f[j>>2]=0;f[d+8>>2]=0;if(!h){h=b<<2;k=ln(h)|0;f[d>>2]=k;e=k+(b<<2)|0;f[d+8>>2]=e;sj(k|0,0,h|0)|0;f[j>>2]=e}lk(a+152|0,g,d);g=f[d>>2]|0;if(!g){u=c;return}d=f[j>>2]|0;if((d|0)!=(g|0))f[j>>2]=d+(~((d+-4-g|0)>>>2)<<2);Oq(g);u=c;return}function af(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0;c=u;u=u+16|0;d=c;f[a>>2]=0;f[a+8>>2]=b;vo(a+12|0);vo(a+32|0);vo(a+52|0);vo(a+72|0);e=a+92|0;f[e>>2]=0;g=a+96|0;f[g>>2]=0;f[a+100>>2]=0;h=(b|0)==0;do if(!h)if(b>>>0>1073741823)aq(e);else{i=b<<2;j=ln(i)|0;f[e>>2]=j;k=j+(b<<2)|0;f[a+100>>2]=k;sj(j|0,0,i|0)|0;f[g>>2]=k;break}while(0);g=a+104|0;f[g>>2]=0;e=a+108|0;f[e>>2]=0;f[a+112>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[g>>2]=i;g=i+(b<<2)|0;f[a+112>>2]=g;sj(i|0,0,k|0)|0;f[e>>2]=g}g=a+116|0;f[g>>2]=0;e=a+120|0;f[e>>2]=0;f[a+124>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[g>>2]=i;g=i+(b<<2)|0;f[a+124>>2]=g;sj(i|0,0,k|0)|0;f[e>>2]=g}g=b<<5|1;f[d>>2]=0;e=d+4|0;f[e>>2]=0;f[d+8>>2]=0;if(!h){k=b<<2;i=ln(k)|0;f[d>>2]=i;j=i+(b<<2)|0;f[d+8>>2]=j;sj(i|0,0,k|0)|0;f[e>>2]=j}lk(a+128|0,g,d);j=f[d>>2]|0;if(j|0){k=f[e>>2]|0;if((k|0)!=(j|0))f[e>>2]=k+(~((k+-4-j|0)>>>2)<<2);Oq(j)}f[d>>2]=0;j=d+4|0;f[j>>2]=0;f[d+8>>2]=0;if(!h){h=b<<2;k=ln(h)|0;f[d>>2]=k;e=k+(b<<2)|0;f[d+8>>2]=e;sj(k|0,0,h|0)|0;f[j>>2]=e}lk(a+140|0,g,d);g=f[d>>2]|0;if(!g){u=c;return}d=f[j>>2]|0;if((d|0)!=(g|0))f[j>>2]=d+(~((d+-4-g|0)>>>2)<<2);Oq(g);u=c;return}function bf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0;d=ln(40)|0;e=d+16|0;pj(e,c);pj(d+28|0,c+12|0);c=a+4|0;g=f[c>>2]|0;do if(g){h=b[d+27>>0]|0;i=h<<24>>24<0;j=i?f[d+20>>2]|0:h&255;h=i?f[e>>2]|0:e;i=g;while(1){k=i+16|0;l=b[k+11>>0]|0;m=l<<24>>24<0;n=m?f[i+20>>2]|0:l&255;l=n>>>0<j>>>0?n:j;if((l|0)!=0?(o=Vk(h,m?f[k>>2]|0:k,l)|0,(o|0)!=0):0)if((o|0)<0)p=7;else p=9;else if(j>>>0<n>>>0)p=7;else p=9;if((p|0)==7){p=0;n=f[i>>2]|0;if(!n){p=8;break}else q=n}else if((p|0)==9){p=0;r=i+4|0;n=f[r>>2]|0;if(!n){p=11;break}else q=n}i=q}if((p|0)==8){s=i;t=i;break}else if((p|0)==11){s=i;t=r;break}}else{s=c;t=c}while(0);f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=s;f[t>>2]=d;s=f[f[a>>2]>>2]|0;if(!s){u=d;v=a+4|0;w=f[v>>2]|0;Oe(w,u);x=a+8|0;y=f[x>>2]|0;z=y+1|0;f[x>>2]=z;return d|0}f[a>>2]=s;u=f[t>>2]|0;v=a+4|0;w=f[v>>2]|0;Oe(w,u);x=a+8|0;y=f[x>>2]|0;z=y+1|0;f[x>>2]=z;return d|0}function cf(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3680;wi(a+200|0);b=f[a+184>>2]|0;if(b|0){c=a+188|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}kj(a+172|0);b=f[a+152>>2]|0;if(b|0){d=a+156|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+140>>2]|0;if(b|0)Oq(b);b=f[a+128>>2]|0;if(b|0){c=b;do{b=c;c=f[c>>2]|0;Oq(b)}while((c|0)!=0)}c=a+120|0;b=f[c>>2]|0;f[c>>2]=0;if(b|0)Oq(b);b=f[a+108>>2]|0;if(b|0){c=a+112|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~(((d+-12-b|0)>>>0)/12|0)*12|0);Oq(b)}b=f[a+96>>2]|0;if(b|0){d=a+100|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+84>>2]|0;if(b|0)Oq(b);b=f[a+72>>2]|0;if(b|0){c=a+76|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+52>>2]|0;if(b|0){d=a+56|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+40>>2]|0;if(b|0){c=a+44|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+28>>2]|0;if(b|0)Oq(b);b=f[a+16>>2]|0;if(b|0){d=a+20|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=a+12|0;a=f[b>>2]|0;f[b>>2]=0;if(!a)return;Ii(a);Oq(a);return}function df(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;b=a+140|0;c=f[b>>2]|0;if(c|0){d=a+144|0;e=f[d>>2]|0;if((e|0)==(c|0))g=c;else{h=e;while(1){e=h+-12|0;f[d>>2]=e;i=f[e>>2]|0;if(!i)j=e;else{e=h+-8|0;k=f[e>>2]|0;if((k|0)!=(i|0))f[e>>2]=k+(~((k+-4-i|0)>>>2)<<2);Oq(i);j=f[d>>2]|0}if((j|0)==(c|0))break;else h=j}g=f[b>>2]|0}Oq(g)}g=a+128|0;b=f[g>>2]|0;if(b|0){j=a+132|0;h=f[j>>2]|0;if((h|0)==(b|0))l=b;else{c=h;while(1){h=c+-12|0;f[j>>2]=h;d=f[h>>2]|0;if(!d)m=h;else{h=c+-8|0;i=f[h>>2]|0;if((i|0)!=(d|0))f[h>>2]=i+(~((i+-4-d|0)>>>2)<<2);Oq(d);m=f[j>>2]|0}if((m|0)==(b|0))break;else c=m}l=f[g>>2]|0}Oq(l)}l=f[a+116>>2]|0;if(l|0){g=a+120|0;m=f[g>>2]|0;if((m|0)!=(l|0))f[g>>2]=m+(~((m+-4-l|0)>>>2)<<2);Oq(l)}l=f[a+104>>2]|0;if(l|0){m=a+108|0;g=f[m>>2]|0;if((g|0)!=(l|0))f[m>>2]=g+(~((g+-4-l|0)>>>2)<<2);Oq(l)}l=f[a+92>>2]|0;if(!l){n=a+72|0;jl(n);o=a+52|0;jl(o);p=a+32|0;jl(p);q=a+12|0;jl(q);return}g=a+96|0;m=f[g>>2]|0;if((m|0)!=(l|0))f[g>>2]=m+(~((m+-4-l|0)>>>2)<<2);Oq(l);n=a+72|0;jl(n);o=a+52|0;jl(o);p=a+32|0;jl(p);q=a+12|0;jl(q);return}function ef(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;b=a+152|0;c=f[b>>2]|0;if(c|0){d=a+156|0;e=f[d>>2]|0;if((e|0)==(c|0))g=c;else{h=e;while(1){e=h+-12|0;f[d>>2]=e;i=f[e>>2]|0;if(!i)j=e;else{e=h+-8|0;k=f[e>>2]|0;if((k|0)!=(i|0))f[e>>2]=k+(~((k+-4-i|0)>>>2)<<2);Oq(i);j=f[d>>2]|0}if((j|0)==(c|0))break;else h=j}g=f[b>>2]|0}Oq(g)}g=a+140|0;b=f[g>>2]|0;if(b|0){j=a+144|0;h=f[j>>2]|0;if((h|0)==(b|0))l=b;else{c=h;while(1){h=c+-12|0;f[j>>2]=h;d=f[h>>2]|0;if(!d)m=h;else{h=c+-8|0;i=f[h>>2]|0;if((i|0)!=(d|0))f[h>>2]=i+(~((i+-4-d|0)>>>2)<<2);Oq(d);m=f[j>>2]|0}if((m|0)==(b|0))break;else c=m}l=f[g>>2]|0}Oq(l)}l=f[a+128>>2]|0;if(l|0){g=a+132|0;m=f[g>>2]|0;if((m|0)!=(l|0))f[g>>2]=m+(~((m+-4-l|0)>>>2)<<2);Oq(l)}l=f[a+116>>2]|0;if(l|0){m=a+120|0;g=f[m>>2]|0;if((g|0)!=(l|0))f[m>>2]=g+(~((g+-4-l|0)>>>2)<<2);Oq(l)}l=f[a+104>>2]|0;if(!l){n=a+84|0;jl(n);o=a+64|0;jl(o);p=a+44|0;jl(p);q=a+12|0;Fj(q);return}g=a+108|0;m=f[g>>2]|0;if((m|0)!=(l|0))f[g>>2]=m+(~((m+-4-l|0)>>>2)<<2);Oq(l);n=a+84|0;jl(n);o=a+64|0;jl(o);p=a+44|0;jl(p);q=a+12|0;Fj(q);return}function ff(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3480;uj(a+200|0);b=f[a+184>>2]|0;if(b|0){c=a+188|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}kj(a+172|0);b=f[a+152>>2]|0;if(b|0){d=a+156|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+140>>2]|0;if(b|0)Oq(b);b=f[a+128>>2]|0;if(b|0){c=b;do{b=c;c=f[c>>2]|0;Oq(b)}while((c|0)!=0)}c=a+120|0;b=f[c>>2]|0;f[c>>2]=0;if(b|0)Oq(b);b=f[a+108>>2]|0;if(b|0){c=a+112|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~(((d+-12-b|0)>>>0)/12|0)*12|0);Oq(b)}b=f[a+96>>2]|0;if(b|0){d=a+100|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+84>>2]|0;if(b|0)Oq(b);b=f[a+72>>2]|0;if(b|0){c=a+76|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+52>>2]|0;if(b|0){d=a+56|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+40>>2]|0;if(b|0){c=a+44|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+28>>2]|0;if(b|0)Oq(b);b=f[a+16>>2]|0;if(b|0){d=a+20|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=a+12|0;a=f[b>>2]|0;f[b>>2]=0;if(!a)return;Ii(a);Oq(a);return}function gf(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;e=u;u=u+144|0;g=e+136|0;h=e+104|0;i=e;j=ln(124)|0;k=f[c+8>>2]|0;f[j+4>>2]=0;f[j>>2]=3656;f[j+12>>2]=3636;f[j+100>>2]=0;f[j+104>>2]=0;f[j+108>>2]=0;l=j+16|0;m=l+80|0;do{f[l>>2]=0;l=l+4|0}while((l|0)<(m|0));f[j+112>>2]=k;f[j+116>>2]=d;n=j+120|0;f[n>>2]=0;o=j;f[h>>2]=3636;p=h+4|0;q=p+4|0;f[q>>2]=0;f[q+4>>2]=0;f[q+8>>2]=0;f[q+12>>2]=0;f[q+16>>2]=0;f[q+20>>2]=0;q=f[c+12>>2]|0;f[i+4>>2]=3636;f[i+92>>2]=0;f[i+96>>2]=0;f[i+100>>2]=0;l=i+8|0;m=l+80|0;do{f[l>>2]=0;l=l+4|0}while((l|0)<(m|0));l=q;f[p>>2]=l;m=((f[l+4>>2]|0)-(f[q>>2]|0)>>2>>>0)/3|0;b[g>>0]=0;qh(h+8|0,m,g);Va[f[(f[h>>2]|0)+8>>2]&127](h);f[i>>2]=f[p>>2];fg(i+4|0,h)|0;f[i+36>>2]=q;f[i+40>>2]=d;f[i+44>>2]=k;f[i+48>>2]=j;f[n>>2]=c+72;Sg(j,i);f[a>>2]=o;Qi(i);f[h>>2]=3636;i=f[h+20>>2]|0;if(i|0)Oq(i);i=f[h+8>>2]|0;if(!i){u=e;return}Oq(i);u=e;return}function hf(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=u;u=u+48|0;d=c+44|0;e=c+40|0;g=c+36|0;h=c+32|0;i=c;f[h>>2]=f[a+60>>2];j=b+16|0;k=j;l=f[k+4>>2]|0;if(!((l|0)>0|(l|0)==0&(f[k>>2]|0)>>>0>0)){f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,h,h+4|0)|0}wn(i);tk(i);if((f[h>>2]|0)>0){k=a+56|0;l=1;m=0;do{n=l;l=(f[(f[k>>2]|0)+(m>>>5<<2)>>2]&1<<(m&31)|0)!=0;fj(i,n^l^1);m=m+1|0}while((m|0)<(f[h>>2]|0))}ld(i,b);f[g>>2]=f[a+12>>2];h=j;m=f[h>>2]|0;l=f[h+4>>2]|0;if((l|0)>0|(l|0)==0&m>>>0>0){o=l;p=m}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;m=j;o=f[m+4>>2]|0;p=f[m>>2]|0}f[g>>2]=f[a+20>>2];if((o|0)>0|(o|0)==0&p>>>0>0){Fj(i);u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;Fj(i);u=c;return 1}function jf(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0;g=u;u=u+16|0;h=g;if((f[c+56>>2]|0)==-1){i=-1;u=g;return i|0}j=ln(96)|0;tl(j,c);f[h>>2]=j;j=vh(a,h)|0;c=f[h>>2]|0;f[h>>2]=0;if(c|0){h=c+88|0;k=f[h>>2]|0;f[h>>2]=0;if(k|0){h=f[k+8>>2]|0;if(h|0){l=k+12|0;if((f[l>>2]|0)!=(h|0))f[l>>2]=h;Oq(h)}Oq(k)}k=f[c+68>>2]|0;if(k|0){h=c+72|0;l=f[h>>2]|0;if((l|0)!=(k|0))f[h>>2]=l+(~((l+-4-k|0)>>>2)<<2);Oq(k)}k=c+64|0;l=f[k>>2]|0;f[k>>2]=0;if(l|0){k=f[l>>2]|0;if(k|0){h=l+4|0;if((f[h>>2]|0)!=(k|0))f[h>>2]=k;Oq(k)}Oq(l)}Oq(c)}c=a+8|0;l=(f[c>>2]|0)+(j<<2)|0;k=f[l>>2]|0;do if(!d){h=f[a+80>>2]|0;b[k+84>>0]=0;m=k+68|0;n=k+72|0;o=f[n>>2]|0;p=f[m>>2]|0;q=o-p>>2;r=o;if(h>>>0>q>>>0){Ch(m,h-q|0,6220);break}if(h>>>0<q>>>0?(q=p+(h<<2)|0,(q|0)!=(r|0)):0)f[n>>2]=r+(~((r+-4-q|0)>>>2)<<2)}else{b[k+84>>0]=1;q=f[k+68>>2]|0;r=k+72|0;n=f[r>>2]|0;if((n|0)==(q|0))s=k;else{f[r>>2]=n+(~((n+-4-q|0)>>>2)<<2);s=f[l>>2]|0}f[s+80>>2]=f[a+80>>2]}while(0);if(!e){i=j;u=g;return i|0}Bj(f[(f[c>>2]|0)+(j<<2)>>2]|0,e)|0;i=j;u=g;return i|0}function kf(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0;d=u;u=u+32|0;h=d+24|0;i=d+16|0;j=d;k=d+8|0;f[a+52>>2]=e;f[a+44>>2]=g;g=Lq(e>>>0>1073741823?-1:e<<2)|0;l=a+48|0;m=f[l>>2]|0;f[l>>2]=g;if(m|0)Mq(m);m=a+36|0;g=f[m>>2]|0;n=f[g+4>>2]|0;o=f[g>>2]|0;p=n-o|0;if((p|0)<=0){u=d;return 1}q=(p>>>2)+-1|0;p=a+8|0;r=i+4|0;s=j+4|0;t=h+4|0;if(n-o>>2>>>0>q>>>0){v=q;w=o}else{x=g;aq(x)}while(1){f[k>>2]=f[w+(v<<2)>>2];f[h>>2]=f[k>>2];Bc(a,h,b,v);g=X(v,e)|0;o=b+(g<<2)|0;q=f[l>>2]|0;n=c+(g<<2)|0;g=f[o+4>>2]|0;y=f[q>>2]|0;z=f[q+4>>2]|0;f[i>>2]=f[o>>2];f[r>>2]=g;f[j>>2]=y;f[s>>2]=z;Od(h,p,i,j);f[n>>2]=f[h>>2];f[n+4>>2]=f[t>>2];v=v+-1|0;if((v|0)<=-1){A=5;break}n=f[m>>2]|0;w=f[n>>2]|0;if((f[n+4>>2]|0)-w>>2>>>0<=v>>>0){x=n;A=6;break}}if((A|0)==5){u=d;return 1}else if((A|0)==6)aq(x);return 0}function lf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;d=f[c>>2]|0;c=f[d>>2]|0;e=f[a+4>>2]|0;g=f[d+4>>2]|0;h=e+-1|0;i=(h&e|0)==0;if(!i)if(g>>>0<e>>>0)j=g;else j=(g>>>0)%(e>>>0)|0;else j=h&g;g=(f[a>>2]|0)+(j<<2)|0;k=f[g>>2]|0;while(1){l=f[k>>2]|0;if((l|0)==(d|0))break;else k=l}if((k|0)!=(a+8|0)){l=f[k+4>>2]|0;if(!i)if(l>>>0<e>>>0)m=l;else m=(l>>>0)%(e>>>0)|0;else m=l&h;if((m|0)==(j|0)){n=c;o=21}else o=13}else o=13;do if((o|0)==13){if(c|0){m=f[c+4>>2]|0;if(!i)if(m>>>0<e>>>0)p=m;else p=(m>>>0)%(e>>>0)|0;else p=m&h;if((p|0)==(j|0)){q=c;r=c;o=22;break}}f[g>>2]=0;n=f[d>>2]|0;o=21}while(0);if((o|0)==21){g=n;if(!n)s=g;else{q=n;r=g;o=22}}if((o|0)==22){o=f[q+4>>2]|0;if(!i)if(o>>>0<e>>>0)t=o;else t=(o>>>0)%(e>>>0)|0;else t=o&h;if((t|0)==(j|0))s=r;else{f[(f[a>>2]|0)+(t<<2)>>2]=k;s=f[d>>2]|0}}f[k>>2]=s;f[d>>2]=0;s=a+12|0;f[s>>2]=(f[s>>2]|0)+-1;if(!d)return c|0;s=d+8|0;a=f[d+20>>2]|0;if(a|0){k=d+24|0;if((f[k>>2]|0)!=(a|0))f[k>>2]=a;Oq(a)}if((b[s+11>>0]|0)<0)Oq(f[s>>2]|0);Oq(d);return c|0}function mf(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0;b=u;u=u+16|0;c=b+4|0;d=b;f[c>>2]=0;e=c+4|0;f[e>>2]=0;f[c+8>>2]=0;g=a+52|0;h=f[g>>2]|0;i=(f[h+100>>2]|0)-(f[h+96>>2]|0)|0;j=(i|0)/12|0;if(!i){k=0;l=0}else{i=c+8|0;m=0;n=0;o=h;h=0;p=0;while(1){q=f[o+96>>2]|0;r=f[q+(n*12|0)>>2]|0;s=r-m|0;t=((s|0)>-1?s:0-s|0)<<1|s>>>31;f[d>>2]=t;if((h|0)==(p|0)){Ri(c,d);v=f[e>>2]|0;w=f[i>>2]|0}else{f[h>>2]=t;t=h+4|0;f[e>>2]=t;v=t;w=p}t=f[q+(n*12|0)+4>>2]|0;s=t-r|0;r=((s|0)>-1?s:0-s|0)<<1|s>>>31;f[d>>2]=r;if((v|0)==(w|0)){Ri(c,d);x=f[e>>2]|0;y=f[i>>2]|0}else{f[v>>2]=r;r=v+4|0;f[e>>2]=r;x=r;y=w}r=f[q+(n*12|0)+8>>2]|0;q=r-t|0;t=((q|0)>-1?q:0-q|0)<<1|q>>>31;f[d>>2]=t;if((x|0)==(y|0))Ri(c,d);else{f[x>>2]=t;f[e>>2]=x+4}t=n+1|0;if(t>>>0>=j>>>0)break;m=r;n=t;o=f[g>>2]|0;h=f[e>>2]|0;p=f[i>>2]|0}k=f[c>>2]|0;l=f[e>>2]|0}Mc(k,l-k>>2,1,0,f[a+44>>2]|0)|0;a=f[c>>2]|0;if(!a){u=b;return 1}c=f[e>>2]|0;if((c|0)!=(a|0))f[e>>2]=c+(~((c+-4-a|0)>>>2)<<2);Oq(a);u=b;return 1}function nf(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=u;u=u+48|0;d=c+44|0;e=c+40|0;g=c+36|0;h=c+32|0;i=c;f[h>>2]=f[a+80>>2];j=b+16|0;k=j;l=f[k+4>>2]|0;if(!((l|0)>0|(l|0)==0&(f[k>>2]|0)>>>0>0)){f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,h,h+4|0)|0}wn(i);tk(i);if((f[h>>2]|0)>0){k=a+76|0;l=1;m=0;do{n=l;l=(f[(f[k>>2]|0)+(m>>>5<<2)>>2]&1<<(m&31)|0)!=0;fj(i,n^l^1);m=m+1|0}while((m|0)<(f[h>>2]|0))}ld(i,b);f[g>>2]=f[a+12>>2];h=j;m=f[h>>2]|0;l=f[h+4>>2]|0;if((l|0)>0|(l|0)==0&m>>>0>0){o=l;p=m}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;m=j;o=f[m+4>>2]|0;p=f[m>>2]|0}f[g>>2]=f[a+16>>2];if((o|0)>0|(o|0)==0&p>>>0>0){Fj(i);u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;Fj(i);u=c;return 1}function of(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;c=u;u=u+16|0;d=c+12|0;e=c+8|0;g=c+4|0;h=c;if(!b){i=ln(76)|0;j=ln(12)|0;k=f[(f[a+4>>2]|0)+80>>2]|0;f[j+4>>2]=0;f[j>>2]=3908;f[j+8>>2]=k;f[h>>2]=j;rl(i,h,0);j=i;f[g>>2]=j;i=a+12|0;k=f[i>>2]|0;if(k>>>0<(f[a+16>>2]|0)>>>0){f[g>>2]=0;f[k>>2]=j;f[i>>2]=k+4;l=g}else{Qg(a+8|0,g);l=g}g=f[l>>2]|0;f[l>>2]=0;if(g|0)Va[f[(f[g>>2]|0)+4>>2]&127](g);g=f[h>>2]|0;f[h>>2]=0;if(!g){u=c;return 1}Va[f[(f[g>>2]|0)+4>>2]&127](g);u=c;return 1}g=f[f[a+8>>2]>>2]|0;f[d>>2]=b;a=g+4|0;h=g+8|0;l=f[h>>2]|0;if((l|0)==(f[g+12>>2]|0))Ri(a,d);else{f[l>>2]=b;f[h>>2]=l+4}l=f[d>>2]|0;b=g+16|0;k=g+20|0;g=f[k>>2]|0;i=f[b>>2]|0;j=g-i>>2;m=i;if((l|0)<(j|0)){n=m;o=l}else{i=l+1|0;f[e>>2]=-1;p=g;if(i>>>0<=j>>>0)if(i>>>0<j>>>0?(g=m+(i<<2)|0,(g|0)!=(p|0)):0){f[k>>2]=p+(~((p+-4-g|0)>>>2)<<2);q=l;r=m}else{q=l;r=m}else{Ch(b,i-j|0,e);q=f[d>>2]|0;r=f[b>>2]|0}n=r;o=q}f[n+(o<<2)>>2]=((f[h>>2]|0)-(f[a>>2]|0)>>2)+-1;u=c;return 1}function pf(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0;d=u;u=u+32|0;h=d+24|0;i=d+16|0;j=d;k=d+8|0;f[a+52>>2]=e;f[a+44>>2]=g;g=Lq(e>>>0>1073741823?-1:e<<2)|0;l=a+48|0;m=f[l>>2]|0;f[l>>2]=g;if(m|0)Mq(m);m=a+36|0;g=f[m>>2]|0;n=f[g+4>>2]|0;o=f[g>>2]|0;p=n-o|0;if((p|0)<=0){u=d;return 1}q=(p>>>2)+-1|0;p=a+8|0;r=i+4|0;s=j+4|0;t=h+4|0;if(n-o>>2>>>0>q>>>0){v=q;w=o}else{x=g;aq(x)}while(1){f[k>>2]=f[w+(v<<2)>>2];f[h>>2]=f[k>>2];Ac(a,h,b,v);g=X(v,e)|0;o=b+(g<<2)|0;q=f[l>>2]|0;n=c+(g<<2)|0;g=f[o+4>>2]|0;y=f[q>>2]|0;z=f[q+4>>2]|0;f[i>>2]=f[o>>2];f[r>>2]=g;f[j>>2]=y;f[s>>2]=z;Od(h,p,i,j);f[n>>2]=f[h>>2];f[n+4>>2]=f[t>>2];v=v+-1|0;if((v|0)<=-1){A=5;break}n=f[m>>2]|0;w=f[n>>2]|0;if((f[n+4>>2]|0)-w>>2>>>0<=v>>>0){x=n;A=6;break}}if((A|0)==5){u=d;return 1}else if((A|0)==6)aq(x);return 0}function qf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0;d=a+8|0;e=f[d>>2]|0;g=f[a>>2]|0;h=g;do if(e-g>>3>>>0>=b>>>0){i=a+4|0;j=f[i>>2]|0;k=j-g>>3;l=k>>>0<b>>>0;m=l?k:b;n=j;if(m|0){j=m;m=h;while(1){o=c;p=f[o+4>>2]|0;q=m;f[q>>2]=f[o>>2];f[q+4>>2]=p;j=j+-1|0;if(!j)break;else m=m+8|0}}if(!l){m=h+(b<<3)|0;if((m|0)==(n|0))return;else{r=i;s=n+(~((n+-8-m|0)>>>3)<<3)|0;break}}else{m=b-k|0;j=m;p=n;while(1){q=c;o=f[q+4>>2]|0;t=p;f[t>>2]=f[q>>2];f[t+4>>2]=o;j=j+-1|0;if(!j)break;else p=p+8|0}r=i;s=n+(m<<3)|0;break}}else{p=g;if(!g)u=e;else{j=a+4|0;k=f[j>>2]|0;if((k|0)!=(h|0))f[j>>2]=k+(~((k+-8-g|0)>>>3)<<3);Oq(p);f[d>>2]=0;f[j>>2]=0;f[a>>2]=0;u=0}if(b>>>0>536870911)aq(a);j=u>>2;p=u>>3>>>0<268435455?(j>>>0<b>>>0?b:j):536870911;if(p>>>0>536870911)aq(a);j=ln(p<<3)|0;k=a+4|0;f[k>>2]=j;f[a>>2]=j;f[d>>2]=j+(p<<3);p=b;l=j;while(1){o=c;t=f[o+4>>2]|0;q=l;f[q>>2]=f[o>>2];f[q+4>>2]=t;p=p+-1|0;if(!p)break;else l=l+8|0}r=k;s=j+(b<<3)|0}while(0);f[r>>2]=s;return}function rf(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0.0,g=0.0,h=0.0,i=0.0,j=0.0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0;e=+$(n[b>>2]);g=+K(+e);h=+$(n[b+4>>2]);i=g+ +K(+h);g=+$(n[b+8>>2]);j=i+ +K(+g);b=j>1.0e-06;i=1.0/j;k=f[a+12>>2]|0;j=+(k|0);l=~~+J(+((b?i*e:1.0)*j+.5));m=~~+J(+((b?i*h:0.0)*j+.5));o=(l|0)>-1;p=k-(o?l:0-l|0)-((m|0)>-1?m:0-m|0)|0;l=(p|0)<0;q=(l?((m|0)>0?p:0-p|0):0)+m|0;m=l?0:p;p=(b?i*g:0.0)<0.0?0-m|0:m;do if(!o){if((q|0)<0)r=(p|0)>-1?p:0-p|0;else r=(f[a+8>>2]|0)-((p|0)>-1?p:0-p|0)|0;if((p|0)<0){s=(q|0)>-1?q:0-q|0;t=r;break}else{s=(f[a+8>>2]|0)-((q|0)>-1?q:0-q|0)|0;t=r;break}}else{s=k+p|0;t=k+q|0}while(0);q=(t|0)==0;p=(s|0)==0;r=f[a+8>>2]|0;if(!(s|t)){u=r;v=r;f[c>>2]=u;f[d>>2]=v;return}a=(r|0)==(s|0);if(q&a){u=s;v=s;f[c>>2]=u;f[d>>2]=v;return}o=(r|0)==(t|0);if(p&o){u=t;v=t;f[c>>2]=u;f[d>>2]=v;return}if(q&(k|0)<(s|0)){u=0;v=(k<<1)-s|0;f[c>>2]=u;f[d>>2]=v;return}if(o&(k|0)>(s|0)){u=t;v=(k<<1)-s|0;f[c>>2]=u;f[d>>2]=v;return}if(a&(k|0)>(t|0)){u=(k<<1)-t|0;v=s;f[c>>2]=u;f[d>>2]=v;return}if(!p){u=t;v=s;f[c>>2]=u;f[d>>2]=v;return}u=(k|0)<(t|0)?(k<<1)-t|0:t;v=0;f[c>>2]=u;f[d>>2]=v;return}function sf(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0;g=u;u=u+32|0;h=g+12|0;i=g;f[a>>2]=f[d>>2];d=a+4|0;f[d>>2]=(f[c>>2]|0)-(f[b>>2]|0);j=e+16|0;k=j;l=f[k+4>>2]|0;if(!((l|0)>0|(l|0)==0&(f[k>>2]|0)>>>0>0)?(k=e+4|0,f[i>>2]=f[k>>2],f[h>>2]=f[i>>2],Me(e,h,a,a+4|0)|0,l=j,j=f[l+4>>2]|0,!((j|0)>0|(j|0)==0&(f[l>>2]|0)>>>0>0)):0){f[i>>2]=f[k>>2];f[h>>2]=f[i>>2];Me(e,h,d,d+4|0)|0;m=i}else m=i;if(!(f[d>>2]|0)){u=g;return 1}d=a+12|0;Gg(d);m=a+1068|0;Mm(m);k=a+1088|0;Mm(k);l=a+1108|0;Mm(l);f[i>>2]=f[b>>2];f[i+4>>2]=f[b+4>>2];f[i+8>>2]=f[b+8>>2];f[h>>2]=f[c>>2];f[h+4>>2]=f[c+4>>2];f[h+8>>2]=f[c+8>>2];ib(a,i,h);Ye(d,e);Bg(m,e);Bg(k,e);Bg(l,e);u=g;return 1}function tf(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0;g=u;u=u+32|0;h=g+12|0;i=g;f[a>>2]=f[d>>2];d=a+4|0;f[d>>2]=(f[c>>2]|0)-(f[b>>2]|0);j=e+16|0;k=j;l=f[k+4>>2]|0;if(!((l|0)>0|(l|0)==0&(f[k>>2]|0)>>>0>0)?(k=e+4|0,f[i>>2]=f[k>>2],f[h>>2]=f[i>>2],Me(e,h,a,a+4|0)|0,l=j,j=f[l+4>>2]|0,!((j|0)>0|(j|0)==0&(f[l>>2]|0)>>>0>0)):0){f[i>>2]=f[k>>2];f[h>>2]=f[i>>2];Me(e,h,d,d+4|0)|0;m=i}else m=i;if(!(f[d>>2]|0)){u=g;return 1}d=a+12|0;Gg(d);m=a+1068|0;Mm(m);k=a+1088|0;Mm(k);l=a+1108|0;Mm(l);f[i>>2]=f[b>>2];f[i+4>>2]=f[b+4>>2];f[i+8>>2]=f[b+8>>2];f[h>>2]=f[c>>2];f[h+4>>2]=f[c+4>>2];f[h+8>>2]=f[c+8>>2];kb(a,i,h);Ye(d,e);Bg(m,e);Bg(k,e);Bg(l,e);u=g;return 1}function uf(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0;c=u;u=u+32|0;d=c;e=a+8|0;g=f[e>>2]|0;h=a+4|0;i=f[h>>2]|0;j=i;if(g-i>>2>>>0>=b>>>0){sj(i|0,0,b<<2|0)|0;f[h>>2]=i+(b<<2);u=c;return}k=f[a>>2]|0;l=i-k>>2;m=l+b|0;n=k;if(m>>>0>1073741823)aq(a);o=g-k|0;p=o>>1;q=o>>2>>>0<536870911?(p>>>0<m>>>0?m:p):1073741823;f[d+12>>2]=0;f[d+16>>2]=a+8;do if(q)if(q>>>0>1073741823){p=ra(8)|0;Oo(p,16035);f[p>>2]=7256;va(p|0,1112,110)}else{r=ln(q<<2)|0;break}else r=0;while(0);f[d>>2]=r;p=r+(l<<2)|0;l=d+8|0;m=d+4|0;f[m>>2]=p;o=r+(q<<2)|0;q=d+12|0;f[q>>2]=o;r=p+(b<<2)|0;sj(p|0,0,b<<2|0)|0;f[l>>2]=r;if((j|0)==(n|0)){s=p;t=q;v=l;w=k;x=r;y=i;z=o;A=g}else{g=j;j=p;do{g=g+-4|0;p=f[g>>2]|0;f[g>>2]=0;f[j+-4>>2]=p;j=(f[m>>2]|0)+-4|0;f[m>>2]=j}while((g|0)!=(n|0));s=j;t=q;v=l;w=f[a>>2]|0;x=f[l>>2]|0;y=f[h>>2]|0;z=f[q>>2]|0;A=f[e>>2]|0}f[a>>2]=s;f[m>>2]=w;f[h>>2]=x;f[v>>2]=y;f[e>>2]=z;f[t>>2]=A;f[d>>2]=w;ki(d);u=c;return}function vf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0;d=f[a+8>>2]|0;e=a+76|0;g=f[e>>2]|0;h=f[g+80>>2]|0;b[c+84>>0]=0;i=c+68|0;j=c+72|0;k=f[j>>2]|0;l=f[i>>2]|0;m=k-l>>2;n=l;l=k;if(h>>>0<=m>>>0)if(h>>>0<m>>>0?(k=n+(h<<2)|0,(k|0)!=(l|0)):0){f[j>>2]=l+(~((l+-4-k|0)>>>2)<<2);o=g;p=h}else{o=g;p=h}else{Ch(i,h-m|0,3600);m=f[e>>2]|0;o=m;p=f[m+80>>2]|0}m=(f[o+100>>2]|0)-(f[o+96>>2]|0)|0;e=(m|0)/12|0;if(!m){q=1;return q|0}m=a+80|0;a=c+68|0;c=f[o+96>>2]|0;o=0;while(1){h=o*3|0;if((h|0)==-1)r=-1;else r=f[(f[d>>2]|0)+(h<<2)>>2]|0;i=f[(f[m>>2]|0)+12>>2]|0;g=f[i+(r<<2)>>2]|0;if(g>>>0>=p>>>0){q=0;s=12;break}k=f[a>>2]|0;f[k+(f[c+(o*12|0)>>2]<<2)>>2]=g;g=h+1|0;if((g|0)==-1)t=-1;else t=f[(f[d>>2]|0)+(g<<2)>>2]|0;g=f[i+(t<<2)>>2]|0;if(g>>>0>=p>>>0){q=0;s=12;break}f[k+(f[c+(o*12|0)+4>>2]<<2)>>2]=g;g=h+2|0;if((g|0)==-1)u=-1;else u=f[(f[d>>2]|0)+(g<<2)>>2]|0;g=f[i+(u<<2)>>2]|0;if(g>>>0>=p>>>0){q=0;s=12;break}f[k+(f[c+(o*12|0)+8>>2]<<2)>>2]=g;o=o+1|0;if(o>>>0>=e>>>0){q=1;s=12;break}}if((s|0)==12)return q|0;return 0}function wf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0;d=f[a+8>>2]|0;e=a+112|0;g=f[e>>2]|0;h=f[g+80>>2]|0;b[c+84>>0]=0;i=c+68|0;j=c+72|0;k=f[j>>2]|0;l=f[i>>2]|0;m=k-l>>2;n=l;l=k;if(h>>>0<=m>>>0)if(h>>>0<m>>>0?(k=n+(h<<2)|0,(k|0)!=(l|0)):0){f[j>>2]=l+(~((l+-4-k|0)>>>2)<<2);o=g;p=h}else{o=g;p=h}else{Ch(i,h-m|0,3600);m=f[e>>2]|0;o=m;p=f[m+80>>2]|0}m=(f[o+100>>2]|0)-(f[o+96>>2]|0)|0;e=(m|0)/12|0;if(!m){q=1;return q|0}m=a+116|0;a=c+68|0;c=f[o+96>>2]|0;o=0;while(1){h=o*3|0;if((h|0)==-1)r=-1;else r=f[(f[d>>2]|0)+(h<<2)>>2]|0;i=f[(f[m>>2]|0)+12>>2]|0;g=f[i+(r<<2)>>2]|0;if(g>>>0>=p>>>0){q=0;s=12;break}k=f[a>>2]|0;f[k+(f[c+(o*12|0)>>2]<<2)>>2]=g;g=h+1|0;if((g|0)==-1)t=-1;else t=f[(f[d>>2]|0)+(g<<2)>>2]|0;g=f[i+(t<<2)>>2]|0;if(g>>>0>=p>>>0){q=0;s=12;break}f[k+(f[c+(o*12|0)+4>>2]<<2)>>2]=g;g=h+2|0;if((g|0)==-1)u=-1;else u=f[(f[d>>2]|0)+(g<<2)>>2]|0;g=f[i+(u<<2)>>2]|0;if(g>>>0>=p>>>0){q=0;s=12;break}f[k+(f[c+(o*12|0)+8>>2]<<2)>>2]=g;o=o+1|0;if(o>>>0>=e>>>0){q=1;s=12;break}}if((s|0)==12)return q|0;return 0}function xf(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0;d=u;u=u+16|0;h=d;i=f[a+124>>2]|0;if(!i){u=d;return}j=i+-1|0;k=(j&i|0)==0;if(!k)if(i>>>0>g>>>0)l=g;else l=(g>>>0)%(i>>>0)|0;else l=j&g;m=f[(f[a+120>>2]|0)+(l<<2)>>2]|0;if(!m){u=d;return}n=f[m>>2]|0;if(!n){u=d;return}a:do if(k){m=n;while(1){o=f[m+4>>2]|0;p=(o|0)==(g|0);if(!(p|(o&j|0)==(l|0))){q=24;break}if(p?(f[m+8>>2]|0)==(g|0):0){r=m;break a}m=f[m>>2]|0;if(!m){q=24;break}}if((q|0)==24){u=d;return}}else{m=n;while(1){p=f[m+4>>2]|0;if((p|0)==(g|0)){if((f[m+8>>2]|0)==(g|0)){r=m;break a}}else{if(p>>>0<i>>>0)s=p;else s=(p>>>0)%(i>>>0)|0;if((s|0)!=(l|0)){q=24;break}}m=f[m>>2]|0;if(!m){q=24;break}}if((q|0)==24){u=d;return}}while(0);q=f[r+12>>2]|0;if((q|0)==-1){u=d;return}f[h>>2]=q;f[h+4>>2]=c;b[h+8>>0]=e&1;e=a+112|0;c=f[e>>2]|0;if((c|0)==(f[a+116>>2]|0))yi(a+108|0,h);else{f[c>>2]=f[h>>2];f[c+4>>2]=f[h+4>>2];f[c+8>>2]=f[h+8>>2];f[e>>2]=(f[e>>2]|0)+12}u=d;return}function yf(a,b){a=a|0;b=b|0;var c=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;c=d[b>>1]|0;e=d[b+2>>1]|0;g=d[b+4>>1]|0;h=d[b+6>>1]|0;b=((((c^318)&65535)+239^e&65535)+239^g&65535)+239^h&65535;i=f[a+4>>2]|0;if(!i){j=0;return j|0}k=i+-1|0;l=(k&i|0)==0;if(!l)if(b>>>0<i>>>0)m=b;else m=(b>>>0)%(i>>>0)|0;else m=b&k;n=f[(f[a>>2]|0)+(m<<2)>>2]|0;if(!n){j=0;return j|0}a=f[n>>2]|0;if(!a){j=0;return j|0}if(l){l=a;while(1){n=f[l+4>>2]|0;o=(n|0)==(b|0);if(!(o|(n&k|0)==(m|0))){j=0;p=25;break}if((((o?(o=l+8|0,(d[o>>1]|0)==c<<16>>16):0)?(d[o+2>>1]|0)==e<<16>>16:0)?(d[l+12>>1]|0)==g<<16>>16:0)?(d[o+6>>1]|0)==h<<16>>16:0){j=l;p=25;break}l=f[l>>2]|0;if(!l){j=0;p=25;break}}if((p|0)==25)return j|0}else q=a;while(1){a=f[q+4>>2]|0;if((a|0)==(b|0)){l=q+8|0;if((((d[l>>1]|0)==c<<16>>16?(d[l+2>>1]|0)==e<<16>>16:0)?(d[q+12>>1]|0)==g<<16>>16:0)?(d[l+6>>1]|0)==h<<16>>16:0){j=q;p=25;break}}else{if(a>>>0<i>>>0)r=a;else r=(a>>>0)%(i>>>0)|0;if((r|0)!=(m|0)){j=0;p=25;break}}q=f[q>>2]|0;if(!q){j=0;p=25;break}}if((p|0)==25)return j|0;return 0}function zf(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0;g=u;u=u+32|0;h=g+12|0;i=g;f[a>>2]=f[d>>2];d=a+4|0;f[d>>2]=(f[c>>2]|0)-(f[b>>2]|0);j=e+16|0;k=j;l=f[k+4>>2]|0;if(!((l|0)>0|(l|0)==0&(f[k>>2]|0)>>>0>0)?(k=e+4|0,f[i>>2]=f[k>>2],f[h>>2]=f[i>>2],Me(e,h,a,a+4|0)|0,l=j,j=f[l+4>>2]|0,!((j|0)>0|(j|0)==0&(f[l>>2]|0)>>>0>0)):0){f[i>>2]=f[k>>2];f[h>>2]=f[i>>2];Me(e,h,d,d+4|0)|0;m=i}else m=i;if(!(f[d>>2]|0)){u=g;return 1}d=a+12|0;Mm(d);m=a+32|0;Mm(m);k=a+52|0;Mm(k);l=a+72|0;Mm(l);f[i>>2]=f[b>>2];f[i+4>>2]=f[b+4>>2];f[i+8>>2]=f[b+8>>2];f[h>>2]=f[c>>2];f[h+4>>2]=f[c+4>>2];f[h+8>>2]=f[c+8>>2];hb(a,i,h);Bg(d,e);Bg(m,e);Bg(k,e);Bg(l,e);u=g;return 1}function Af(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0;g=u;u=u+32|0;h=g+12|0;i=g;f[a>>2]=f[d>>2];d=a+4|0;f[d>>2]=(f[c>>2]|0)-(f[b>>2]|0);j=e+16|0;k=j;l=f[k+4>>2]|0;if(!((l|0)>0|(l|0)==0&(f[k>>2]|0)>>>0>0)?(k=e+4|0,f[i>>2]=f[k>>2],f[h>>2]=f[i>>2],Me(e,h,a,a+4|0)|0,l=j,j=f[l+4>>2]|0,!((j|0)>0|(j|0)==0&(f[l>>2]|0)>>>0>0)):0){f[i>>2]=f[k>>2];f[h>>2]=f[i>>2];Me(e,h,d,d+4|0)|0;m=i}else m=i;if(!(f[d>>2]|0)){u=g;return 1}d=a+12|0;tk(d);m=a+44|0;Mm(m);k=a+64|0;Mm(k);l=a+84|0;Mm(l);f[i>>2]=f[b>>2];f[i+4>>2]=f[b+4>>2];f[i+8>>2]=f[b+8>>2];f[h>>2]=f[c>>2];f[h+4>>2]=f[c+4>>2];f[h+8>>2]=f[c+8>>2];lb(a,i,h);ld(d,e);Bg(m,e);Bg(k,e);Bg(l,e);u=g;return 1}function Bf(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0;a=u;u=u+16|0;e=a+4|0;g=a;h=a+8|0;i=d+11|0;j=b[i>>0]|0;k=j<<24>>24<0;if(k){l=f[d+4>>2]|0;if(l>>>0>255){m=0;u=a;return m|0}else n=l}else n=j&255;if(!n){b[h>>0]=0;n=c+16|0;l=f[n+4>>2]|0;if(!((l|0)>0|(l|0)==0&(f[n>>2]|0)>>>0>0)){f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+1|0)|0}m=1;u=a;return m|0}n=d+4|0;l=f[n>>2]|0;b[h>>0]=k?l:j&255;k=c+16|0;o=k;p=f[o>>2]|0;q=f[o+4>>2]|0;if((q|0)>0|(q|0)==0&p>>>0>0){r=j;s=q;t=p;v=l}else{f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+1|0)|0;h=k;r=b[i>>0]|0;s=f[h+4>>2]|0;t=f[h>>2]|0;v=f[n>>2]|0}n=r<<24>>24<0;h=n?f[d>>2]|0:d;if(!((s|0)>0|(s|0)==0&t>>>0>0)){f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+(n?v:r&255)|0)|0}m=1;u=a;return m|0}function Cf(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=a+4|0;d=f[a>>2]|0;e=((f[c>>2]|0)-d|0)/24|0;g=e+1|0;if(g>>>0>178956970)aq(a);h=a+8|0;i=((f[h>>2]|0)-d|0)/24|0;d=i<<1;j=i>>>0<89478485?(d>>>0<g>>>0?g:d):178956970;do if(j)if(j>>>0>178956970){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}else{k=ln(j*24|0)|0;break}else k=0;while(0);d=k+(e*24|0)|0;g=d;i=k+(j*24|0)|0;f[d>>2]=1196;f[k+(e*24|0)+4>>2]=f[b+4>>2];fk(k+(e*24|0)+8|0,b+8|0);f[k+(e*24|0)+20>>2]=f[b+20>>2];b=d+24|0;e=f[a>>2]|0;k=f[c>>2]|0;if((k|0)==(e|0)){l=g;m=e;n=e}else{j=k;k=g;g=d;do{f[g+-24>>2]=1196;f[g+-20>>2]=f[j+-20>>2];d=g+-16|0;o=j+-16|0;f[d>>2]=0;p=g+-12|0;f[p>>2]=0;f[g+-8>>2]=0;f[d>>2]=f[o>>2];d=j+-12|0;f[p>>2]=f[d>>2];p=j+-8|0;f[g+-8>>2]=f[p>>2];f[p>>2]=0;f[d>>2]=0;f[o>>2]=0;f[g+-4>>2]=f[j+-4>>2];j=j+-24|0;g=k+-24|0;k=g}while((j|0)!=(e|0));l=k;m=f[a>>2]|0;n=f[c>>2]|0}f[a>>2]=l;f[c>>2]=b;f[h>>2]=i;i=m;if((n|0)!=(i|0)){h=n;do{h=h+-24|0;Va[f[f[h>>2]>>2]&127](h)}while((h|0)!=(i|0))}if(!m)return;Oq(m);return}function Df(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=u;u=u+32|0;d=c+24|0;e=c+16|0;g=c+8|0;h=c;f[a>>2]=3588;f[a+4>>2]=f[b+4>>2];i=a+8|0;j=b+8|0;f[i>>2]=0;k=a+12|0;f[k>>2]=0;l=a+16|0;f[l>>2]=0;m=b+12|0;n=f[m>>2]|0;do if(n|0)if((n|0)<0)aq(i);else{o=((n+-1|0)>>>5)+1|0;p=ln(o<<2)|0;f[i>>2]=p;f[k>>2]=0;f[l>>2]=o;o=f[j>>2]|0;f[g>>2]=o;f[g+4>>2]=0;p=f[m>>2]|0;f[h>>2]=o+(p>>>5<<2);f[h+4>>2]=p&31;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[d>>2]=f[h>>2];f[d+4>>2]=f[h+4>>2];Tf(i,e,d);break}while(0);i=a+20|0;f[i>>2]=0;m=a+24|0;f[m>>2]=0;j=a+28|0;f[j>>2]=0;a=b+24|0;l=f[a>>2]|0;if(!l){u=c;return}if((l|0)<0)aq(i);k=((l+-1|0)>>>5)+1|0;l=ln(k<<2)|0;f[i>>2]=l;f[m>>2]=0;f[j>>2]=k;k=f[b+20>>2]|0;f[g>>2]=k;f[g+4>>2]=0;b=f[a>>2]|0;f[h>>2]=k+(b>>>5<<2);f[h+4>>2]=b&31;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[d>>2]=f[h>>2];f[d+4>>2]=f[h+4>>2];Tf(i,e,d);u=c;return}function Ef(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=b[c>>0]|0;e=b[c+1>>0]|0;g=b[c+2>>0]|0;h=b[c+3>>0]|0;c=(((d&255^318)+239^e&255)+239^g&255)+239^h&255;i=f[a+4>>2]|0;if(!i){j=0;return j|0}k=i+-1|0;l=(k&i|0)==0;if(!l)if(c>>>0<i>>>0)m=c;else m=(c>>>0)%(i>>>0)|0;else m=c&k;n=f[(f[a>>2]|0)+(m<<2)>>2]|0;if(!n){j=0;return j|0}a=f[n>>2]|0;if(!a){j=0;return j|0}if(l){l=a;while(1){n=f[l+4>>2]|0;o=(n|0)==(c|0);if(!(o|(n&k|0)==(m|0))){j=0;p=25;break}if((((o?(o=l+8|0,(b[o>>0]|0)==d<<24>>24):0)?(b[o+1>>0]|0)==e<<24>>24:0)?(b[o+2>>0]|0)==g<<24>>24:0)?(b[o+3>>0]|0)==h<<24>>24:0){j=l;p=25;break}l=f[l>>2]|0;if(!l){j=0;p=25;break}}if((p|0)==25)return j|0}else q=a;while(1){a=f[q+4>>2]|0;if((a|0)==(c|0)){l=q+8|0;if((((b[l>>0]|0)==d<<24>>24?(b[l+1>>0]|0)==e<<24>>24:0)?(b[l+2>>0]|0)==g<<24>>24:0)?(b[l+3>>0]|0)==h<<24>>24:0){j=q;p=25;break}}else{if(a>>>0<i>>>0)r=a;else r=(a>>>0)%(i>>>0)|0;if((r|0)!=(m|0)){j=0;p=25;break}}q=f[q>>2]|0;if(!q){j=0;p=25;break}}if((p|0)==25)return j|0;return 0}function Ff(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=u;u=u+32|0;d=c+24|0;e=c+16|0;g=c+8|0;h=c;f[a>>2]=3636;f[a+4>>2]=f[b+4>>2];i=a+8|0;j=b+8|0;f[i>>2]=0;k=a+12|0;f[k>>2]=0;l=a+16|0;f[l>>2]=0;m=b+12|0;n=f[m>>2]|0;do if(n|0)if((n|0)<0)aq(i);else{o=((n+-1|0)>>>5)+1|0;p=ln(o<<2)|0;f[i>>2]=p;f[k>>2]=0;f[l>>2]=o;o=f[j>>2]|0;f[g>>2]=o;f[g+4>>2]=0;p=f[m>>2]|0;f[h>>2]=o+(p>>>5<<2);f[h+4>>2]=p&31;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[d>>2]=f[h>>2];f[d+4>>2]=f[h+4>>2];Tf(i,e,d);break}while(0);i=a+20|0;f[i>>2]=0;m=a+24|0;f[m>>2]=0;j=a+28|0;f[j>>2]=0;a=b+24|0;l=f[a>>2]|0;if(!l){u=c;return}if((l|0)<0)aq(i);k=((l+-1|0)>>>5)+1|0;l=ln(k<<2)|0;f[i>>2]=l;f[m>>2]=0;f[j>>2]=k;k=f[b+20>>2]|0;f[g>>2]=k;f[g+4>>2]=0;b=f[a>>2]|0;f[h>>2]=k+(b>>>5<<2);f[h+4>>2]=b&31;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[d>>2]=f[h>>2];f[d+4>>2]=f[h+4>>2];Tf(i,e,d);u=c;return}function Gf(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0;d=u;u=u+32|0;h=d+24|0;i=d+16|0;j=d;k=d+8|0;l=a+40|0;f[a+44>>2]=g;g=a+36|0;m=f[g>>2]|0;n=f[m+4>>2]|0;o=f[m>>2]|0;p=n-o|0;if((p|0)<=0){u=d;return 1}q=(p>>>2)+-1|0;p=a+8|0;r=a+48|0;s=a+52|0;a=i+4|0;t=j+4|0;v=h+4|0;if(n-o>>2>>>0>q>>>0){w=q;x=o}else{y=m;aq(y)}while(1){f[k>>2]=f[x+(w<<2)>>2];f[h>>2]=f[k>>2];ub(l,h,b,w);m=X(w,e)|0;o=b+(m<<2)|0;q=c+(m<<2)|0;m=f[o+4>>2]|0;n=f[r>>2]|0;z=f[s>>2]|0;f[i>>2]=f[o>>2];f[a>>2]=m;f[j>>2]=n;f[t>>2]=z;Od(h,p,i,j);f[q>>2]=f[h>>2];f[q+4>>2]=f[v>>2];w=w+-1|0;if((w|0)<=-1){A=3;break}q=f[g>>2]|0;x=f[q>>2]|0;if((f[q+4>>2]|0)-x>>2>>>0<=w>>>0){y=q;A=4;break}}if((A|0)==3){u=d;return 1}else if((A|0)==4)aq(y);return 0}function Hf(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0;h=u;u=u+32|0;i=h;j=h+16|0;k=f[(f[(f[b+4>>2]|0)+8>>2]|0)+(d<<2)>>2]|0;do if((c+-1|0)>>>0<6&(Qa[f[(f[b>>2]|0)+8>>2]&127](b)|0)==1){l=Qa[f[(f[b>>2]|0)+48>>2]&127](b)|0;m=Ra[f[(f[b>>2]|0)+56>>2]&127](b,d)|0;if((l|0)==0|(m|0)==0){f[a>>2]=0;u=h;return}n=Ra[f[(f[b>>2]|0)+52>>2]&127](b,d)|0;if(!n){f[i>>2]=f[b+52>>2];f[i+4>>2]=l;f[i+12>>2]=m;f[i+8>>2]=m+12;Cd(a,j,c,k,e,i,g);if(!(f[a>>2]|0)){f[a>>2]=0;break}u=h;return}else{f[i>>2]=f[b+52>>2];f[i+4>>2]=n;f[i+12>>2]=m;f[i+8>>2]=m+12;Ad(a,j,c,k,e,i,g);if(!(f[a>>2]|0)){f[a>>2]=0;break}u=h;return}}while(0);f[a>>2]=0;u=h;return}function If(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0;d=u;u=u+32|0;h=d+24|0;i=d+16|0;j=d;k=d+8|0;l=a+40|0;f[a+44>>2]=g;g=a+36|0;m=f[g>>2]|0;n=f[m+4>>2]|0;o=f[m>>2]|0;p=n-o|0;if((p|0)<=0){u=d;return 1}q=(p>>>2)+-1|0;p=a+8|0;r=a+48|0;s=a+52|0;a=i+4|0;t=j+4|0;v=h+4|0;if(n-o>>2>>>0>q>>>0){w=q;x=o}else{y=m;aq(y)}while(1){f[k>>2]=f[x+(w<<2)>>2];f[h>>2]=f[k>>2];tb(l,h,b,w);m=X(w,e)|0;o=b+(m<<2)|0;q=c+(m<<2)|0;m=f[o+4>>2]|0;n=f[r>>2]|0;z=f[s>>2]|0;f[i>>2]=f[o>>2];f[a>>2]=m;f[j>>2]=n;f[t>>2]=z;Od(h,p,i,j);f[q>>2]=f[h>>2];f[q+4>>2]=f[v>>2];w=w+-1|0;if((w|0)<=-1){A=3;break}q=f[g>>2]|0;x=f[q>>2]|0;if((f[q+4>>2]|0)-x>>2>>>0<=w>>>0){y=q;A=4;break}}if((A|0)==3){u=d;return 1}else if((A|0)==4)aq(y);return 0}function Jf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;d=f[b>>2]|0;b=f[c>>2]|0;e=b-d>>2;g=a+8|0;h=f[g>>2]|0;i=f[a>>2]|0;j=i;k=b;if(e>>>0<=h-i>>2>>>0){l=a+4|0;m=(f[l>>2]|0)-i>>2;n=e>>>0>m>>>0;o=n?d+(m<<2)|0:b;b=o-d|0;m=b>>2;if(m|0)im(i|0,d|0,b|0)|0;b=j+(m<<2)|0;if(!n){n=f[l>>2]|0;if((n|0)==(b|0))return;f[l>>2]=n+(~((n+-4-b|0)>>>2)<<2);return}b=f[c>>2]|0;c=o;if((b|0)==(c|0))return;n=f[l>>2]|0;m=b+-4-o|0;o=c;c=n;while(1){f[c>>2]=f[o>>2];o=o+4|0;if((o|0)==(b|0))break;else c=c+4|0}f[l>>2]=n+((m>>>2)+1<<2);return}m=i;if(!i)p=h;else{h=a+4|0;n=f[h>>2]|0;if((n|0)!=(j|0))f[h>>2]=n+(~((n+-4-i|0)>>>2)<<2);Oq(m);f[g>>2]=0;f[h>>2]=0;f[a>>2]=0;p=0}if(e>>>0>1073741823)aq(a);h=p>>1;m=p>>2>>>0<536870911?(h>>>0<e>>>0?e:h):1073741823;if(m>>>0>1073741823)aq(a);h=ln(m<<2)|0;e=a+4|0;f[e>>2]=h;f[a>>2]=h;f[g>>2]=h+(m<<2);m=d;if((k|0)==(m|0))return;g=k+-4-d|0;d=m;m=h;while(1){f[m>>2]=f[d>>2];d=d+4|0;if((d|0)==(k|0))break;else m=m+4|0}f[e>>2]=h+((g>>>2)+1<<2);return}function Kf(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;c=a+8|0;d=f[c>>2]|0;e=a+4|0;g=f[e>>2]|0;h=g;if(((d-g|0)/12|0)>>>0>=b>>>0){sj(g|0,0,b*12|0)|0;f[e>>2]=h+(b*12|0);return}i=f[a>>2]|0;j=(g-i|0)/12|0;g=j+b|0;k=i;if(g>>>0>357913941)aq(a);l=(d-i|0)/12|0;d=l<<1;m=l>>>0<178956970?(d>>>0<g>>>0?g:d):357913941;do if(m)if(m>>>0>357913941){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}else{n=ln(m*12|0)|0;break}else n=0;while(0);d=n+(j*12|0)|0;j=d;g=n+(m*12|0)|0;sj(d|0,0,b*12|0)|0;m=d+(b*12|0)|0;if((h|0)==(k|0)){o=j;p=i;q=h}else{i=h;h=j;j=d;do{d=j+-12|0;b=i;i=i+-12|0;f[d>>2]=0;n=j+-8|0;f[n>>2]=0;f[j+-4>>2]=0;f[d>>2]=f[i>>2];d=b+-8|0;f[n>>2]=f[d>>2];n=b+-4|0;f[j+-4>>2]=f[n>>2];f[n>>2]=0;f[d>>2]=0;f[i>>2]=0;j=h+-12|0;h=j}while((i|0)!=(k|0));o=h;p=f[a>>2]|0;q=f[e>>2]|0}f[a>>2]=o;f[e>>2]=m;f[c>>2]=g;g=p;if((q|0)!=(g|0)){c=q;do{q=c;c=c+-12|0;m=f[c>>2]|0;if(m|0){e=q+-8|0;q=f[e>>2]|0;if((q|0)!=(m|0))f[e>>2]=q+(~((q+-4-m|0)>>>2)<<2);Oq(m)}}while((c|0)!=(g|0))}if(!p)return;Oq(p);return}function Lf(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;b=u;u=u+16|0;c=b+4|0;d=b;e=a+8|0;g=f[e>>2]|0;gk(f[a+4>>2]|0,(f[g+28>>2]|0)-(f[g+24>>2]|0)>>2);g=a+100|0;h=f[e>>2]|0;i=(f[h+28>>2]|0)-(f[h+24>>2]|0)>>2;f[c>>2]=0;h=a+104|0;j=f[h>>2]|0;k=f[g>>2]|0;l=j-k>>2;m=k;k=j;if(i>>>0<=l>>>0){if(i>>>0<l>>>0?(j=m+(i<<2)|0,(j|0)!=(k|0)):0)f[h>>2]=k+(~((k+-4-j|0)>>>2)<<2)}else Ch(g,i-l|0,c);l=a+120|0;a=f[l>>2]|0;if(!a){i=f[e>>2]|0;g=(f[i+4>>2]|0)-(f[i>>2]|0)>>2;i=(g>>>0)/3|0;if(g>>>0<=2){u=b;return 1}g=0;do{f[d>>2]=g*3;f[c>>2]=f[d>>2];wb(e,c);g=g+1|0}while((g|0)<(i|0));u=b;return 1}else{i=f[a>>2]|0;if((f[a+4>>2]|0)==(i|0)){u=b;return 1}a=0;g=i;do{f[d>>2]=f[g+(a<<2)>>2];f[c>>2]=f[d>>2];wb(e,c);a=a+1|0;i=f[l>>2]|0;g=f[i>>2]|0}while(a>>>0<(f[i+4>>2]|0)-g>>2>>>0);u=b;return 1}return 0}function Mf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=u;u=u+32|0;e=d;g=a+40|0;h=(f[c>>2]|0)+(f[g>>2]|0)|0;i=a+24|0;j=f[a+32>>2]|0;k=j+-4194304|0;do if(k>>>0>=64){if(k>>>0<16384){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-4177920|0;b[m>>0]=n;b[m+1>>0]=n>>>8;o=(f[l>>2]|0)+2|0;break}if(k>>>0<4194304){l=a+28|0;n=(f[i>>2]|0)+(f[l>>2]|0)|0;m=j+4194304|0;b[n>>0]=m;b[n+1>>0]=m>>>8;b[n+2>>0]=m>>>16;o=(f[l>>2]|0)+3|0;break}if(k>>>0<1073741824){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-1077936128|0;b[m>>0]=n;b[m+1>>0]=n>>>8;b[m+2>>0]=n>>>16;b[m+3>>0]=n>>>24;o=(f[l>>2]|0)+4|0;break}else{o=f[a+28>>2]|0;break}}else{l=a+28|0;b[(f[i>>2]|0)+(f[l>>2]|0)>>0]=k;o=(f[l>>2]|0)+1|0}while(0);k=((o|0)<0)<<31>>31;Gn(e);yh(o,k,e)|0;i=e+4|0;a=(f[i>>2]|0)-(f[e>>2]|0)|0;im(h+a|0,h|0,o|0)|0;kh(h|0,f[e>>2]|0,a|0)|0;h=g;g=f[h>>2]|0;j=f[h+4>>2]|0;h=Vn(a|0,0,o|0,k|0)|0;k=Vn(h|0,I|0,g|0,j|0)|0;Cl(c,k,I);k=e+12|0;c=f[k>>2]|0;f[k>>2]=0;if(c|0)Oq(c);c=f[e>>2]|0;if(!c){u=d;return}if((f[i>>2]|0)!=(c|0))f[i>>2]=c;Oq(c);u=d;return}function Nf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=u;u=u+32|0;e=d;g=a+40|0;h=(f[c>>2]|0)+(f[g>>2]|0)|0;i=a+24|0;j=f[a+32>>2]|0;k=j+-2097152|0;do if(k>>>0>=64){if(k>>>0<16384){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-2080768|0;b[m>>0]=n;b[m+1>>0]=n>>>8;o=(f[l>>2]|0)+2|0;break}if(k>>>0<4194304){l=a+28|0;n=(f[i>>2]|0)+(f[l>>2]|0)|0;m=j+6291456|0;b[n>>0]=m;b[n+1>>0]=m>>>8;b[n+2>>0]=m>>>16;o=(f[l>>2]|0)+3|0;break}if(k>>>0<1073741824){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-1075838976|0;b[m>>0]=n;b[m+1>>0]=n>>>8;b[m+2>>0]=n>>>16;b[m+3>>0]=n>>>24;o=(f[l>>2]|0)+4|0;break}else{o=f[a+28>>2]|0;break}}else{l=a+28|0;b[(f[i>>2]|0)+(f[l>>2]|0)>>0]=k;o=(f[l>>2]|0)+1|0}while(0);k=((o|0)<0)<<31>>31;Gn(e);yh(o,k,e)|0;i=e+4|0;a=(f[i>>2]|0)-(f[e>>2]|0)|0;im(h+a|0,h|0,o|0)|0;kh(h|0,f[e>>2]|0,a|0)|0;h=g;g=f[h>>2]|0;j=f[h+4>>2]|0;h=Vn(a|0,0,o|0,k|0)|0;k=Vn(h|0,I|0,g|0,j|0)|0;Cl(c,k,I);k=e+12|0;c=f[k>>2]|0;f[k>>2]=0;if(c|0)Oq(c);c=f[e>>2]|0;if(!c){u=d;return}if((f[i>>2]|0)!=(c|0))f[i>>2]=c;Oq(c);u=d;return}function Of(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=u;u=u+32|0;e=d;g=a+40|0;h=(f[c>>2]|0)+(f[g>>2]|0)|0;i=a+24|0;j=f[a+32>>2]|0;k=j+-1048576|0;do if(k>>>0>=64){if(k>>>0<16384){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-1032192|0;b[m>>0]=n;b[m+1>>0]=n>>>8;o=(f[l>>2]|0)+2|0;break}if(k>>>0<4194304){l=a+28|0;n=(f[i>>2]|0)+(f[l>>2]|0)|0;m=j+7340032|0;b[n>>0]=m;b[n+1>>0]=m>>>8;b[n+2>>0]=m>>>16;o=(f[l>>2]|0)+3|0;break}if(k>>>0<1073741824){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-1074790400|0;b[m>>0]=n;b[m+1>>0]=n>>>8;b[m+2>>0]=n>>>16;b[m+3>>0]=n>>>24;o=(f[l>>2]|0)+4|0;break}else{o=f[a+28>>2]|0;break}}else{l=a+28|0;b[(f[i>>2]|0)+(f[l>>2]|0)>>0]=k;o=(f[l>>2]|0)+1|0}while(0);k=((o|0)<0)<<31>>31;Gn(e);yh(o,k,e)|0;i=e+4|0;a=(f[i>>2]|0)-(f[e>>2]|0)|0;im(h+a|0,h|0,o|0)|0;kh(h|0,f[e>>2]|0,a|0)|0;h=g;g=f[h>>2]|0;j=f[h+4>>2]|0;h=Vn(a|0,0,o|0,k|0)|0;k=Vn(h|0,I|0,g|0,j|0)|0;Cl(c,k,I);k=e+12|0;c=f[k>>2]|0;f[k>>2]=0;if(c|0)Oq(c);c=f[e>>2]|0;if(!c){u=d;return}if((f[i>>2]|0)!=(c|0))f[i>>2]=c;Oq(c);u=d;return}function Pf(a,c,d,e,g,h,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;i=i|0;var j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;a=u;u=u+96|0;j=a;if(!c){k=-1;u=a;return k|0}Tm(j);Jj(j,d,0,g&255,i,0,g<<1,0,0,0);i=jf(c,j,1,e)|0;d=f[(f[c+8>>2]|0)+(i<<2)>>2]|0;if(e|0){l=d+84|0;m=d+68|0;n=d+40|0;o=d+64|0;d=0;do{if(!(b[l>>0]|0))p=f[(f[m>>2]|0)+(d<<2)>>2]|0;else p=d;q=h+((X(d,g)|0)<<1)|0;r=n;s=f[r>>2]|0;t=un(s|0,f[r+4>>2]|0,p|0,0)|0;kh((f[f[o>>2]>>2]|0)+t|0,q|0,s|0)|0;d=d+1|0}while((d|0)!=(e|0))}d=c+80|0;c=f[d>>2]|0;if(c)if((c|0)==(e|0))v=10;else w=-1;else{f[d>>2]=e;v=10}if((v|0)==10)w=i;i=j+88|0;v=f[i>>2]|0;f[i>>2]=0;if(v|0){i=f[v+8>>2]|0;if(i|0){e=v+12|0;if((f[e>>2]|0)!=(i|0))f[e>>2]=i;Oq(i)}Oq(v)}v=f[j+68>>2]|0;if(v|0){i=j+72|0;e=f[i>>2]|0;if((e|0)!=(v|0))f[i>>2]=e+(~((e+-4-v|0)>>>2)<<2);Oq(v)}v=j+64|0;j=f[v>>2]|0;f[v>>2]=0;if(j|0){v=f[j>>2]|0;if(v|0){e=j+4|0;if((f[e>>2]|0)!=(v|0))f[e>>2]=v;Oq(v)}Oq(j)}k=w;u=a;return k|0}function Qf(a,c,d,e,g,h,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;i=i|0;var j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;a=u;u=u+96|0;j=a;if(!c){k=-1;u=a;return k|0}Tm(j);Jj(j,d,0,g&255,i,0,g<<2,0,0,0);i=jf(c,j,1,e)|0;d=f[(f[c+8>>2]|0)+(i<<2)>>2]|0;if(e|0){l=d+84|0;m=d+68|0;n=d+40|0;o=d+64|0;d=0;do{if(!(b[l>>0]|0))p=f[(f[m>>2]|0)+(d<<2)>>2]|0;else p=d;q=h+((X(d,g)|0)<<2)|0;r=n;s=f[r>>2]|0;t=un(s|0,f[r+4>>2]|0,p|0,0)|0;kh((f[f[o>>2]>>2]|0)+t|0,q|0,s|0)|0;d=d+1|0}while((d|0)!=(e|0))}d=c+80|0;c=f[d>>2]|0;if(c)if((c|0)==(e|0))v=10;else w=-1;else{f[d>>2]=e;v=10}if((v|0)==10)w=i;i=j+88|0;v=f[i>>2]|0;f[i>>2]=0;if(v|0){i=f[v+8>>2]|0;if(i|0){e=v+12|0;if((f[e>>2]|0)!=(i|0))f[e>>2]=i;Oq(i)}Oq(v)}v=f[j+68>>2]|0;if(v|0){i=j+72|0;e=f[i>>2]|0;if((e|0)!=(v|0))f[i>>2]=e+(~((e+-4-v|0)>>>2)<<2);Oq(v)}v=j+64|0;j=f[v>>2]|0;f[v>>2]=0;if(j|0){v=f[j>>2]|0;if(v|0){e=j+4|0;if((f[e>>2]|0)!=(v|0))f[e>>2]=v;Oq(v)}Oq(j)}k=w;u=a;return k|0}function Rf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=u;u=u+32|0;e=d;g=a+40|0;h=(f[c>>2]|0)+(f[g>>2]|0)|0;i=a+24|0;j=f[a+32>>2]|0;k=j+-262144|0;do if(k>>>0>=64){if(k>>>0<16384){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-245760|0;b[m>>0]=n;b[m+1>>0]=n>>>8;o=(f[l>>2]|0)+2|0;break}if(k>>>0<4194304){l=a+28|0;n=(f[i>>2]|0)+(f[l>>2]|0)|0;m=j+8126464|0;b[n>>0]=m;b[n+1>>0]=m>>>8;b[n+2>>0]=m>>>16;o=(f[l>>2]|0)+3|0;break}if(k>>>0<1073741824){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-1074003968|0;b[m>>0]=n;b[m+1>>0]=n>>>8;b[m+2>>0]=n>>>16;b[m+3>>0]=n>>>24;o=(f[l>>2]|0)+4|0;break}else{o=f[a+28>>2]|0;break}}else{l=a+28|0;b[(f[i>>2]|0)+(f[l>>2]|0)>>0]=k;o=(f[l>>2]|0)+1|0}while(0);k=((o|0)<0)<<31>>31;Gn(e);yh(o,k,e)|0;i=e+4|0;a=(f[i>>2]|0)-(f[e>>2]|0)|0;im(h+a|0,h|0,o|0)|0;kh(h|0,f[e>>2]|0,a|0)|0;h=g;g=f[h>>2]|0;j=f[h+4>>2]|0;h=Vn(a|0,0,o|0,k|0)|0;k=Vn(h|0,I|0,g|0,j|0)|0;Cl(c,k,I);k=e+12|0;c=f[k>>2]|0;f[k>>2]=0;if(c|0)Oq(c);c=f[e>>2]|0;if(!c){u=d;return}if((f[i>>2]|0)!=(c|0))f[i>>2]=c;Oq(c);u=d;return}function Sf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=u;u=u+32|0;e=d;g=a+40|0;h=(f[c>>2]|0)+(f[g>>2]|0)|0;i=a+24|0;j=f[a+32>>2]|0;k=j+-131072|0;do if(k>>>0>=64){if(k>>>0<16384){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-114688|0;b[m>>0]=n;b[m+1>>0]=n>>>8;o=(f[l>>2]|0)+2|0;break}if(k>>>0<4194304){l=a+28|0;n=(f[i>>2]|0)+(f[l>>2]|0)|0;m=j+8257536|0;b[n>>0]=m;b[n+1>>0]=m>>>8;b[n+2>>0]=m>>>16;o=(f[l>>2]|0)+3|0;break}if(k>>>0<1073741824){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-1073872896|0;b[m>>0]=n;b[m+1>>0]=n>>>8;b[m+2>>0]=n>>>16;b[m+3>>0]=n>>>24;o=(f[l>>2]|0)+4|0;break}else{o=f[a+28>>2]|0;break}}else{l=a+28|0;b[(f[i>>2]|0)+(f[l>>2]|0)>>0]=k;o=(f[l>>2]|0)+1|0}while(0);k=((o|0)<0)<<31>>31;Gn(e);yh(o,k,e)|0;i=e+4|0;a=(f[i>>2]|0)-(f[e>>2]|0)|0;im(h+a|0,h|0,o|0)|0;kh(h|0,f[e>>2]|0,a|0)|0;h=g;g=f[h>>2]|0;j=f[h+4>>2]|0;h=Vn(a|0,0,o|0,k|0)|0;k=Vn(h|0,I|0,g|0,j|0)|0;Cl(c,k,I);k=e+12|0;c=f[k>>2]|0;f[k>>2]=0;if(c|0)Oq(c);c=f[e>>2]|0;if(!c){u=d;return}if((f[i>>2]|0)!=(c|0))f[i>>2]=c;Oq(c);u=d;return}function Tf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0;d=u;u=u+48|0;e=d+40|0;g=d+32|0;h=d+8|0;i=d;j=d+24|0;k=d+16|0;l=a+4|0;m=f[l>>2]|0;n=b;b=f[n>>2]|0;o=f[n+4>>2]|0;n=c;c=f[n>>2]|0;p=f[n+4>>2]|0;n=c-b<<3;f[l>>2]=m-o+p+n;l=(f[a>>2]|0)+(m>>>5<<2)|0;a=m&31;m=l;if((a|0)!=(o|0)){q=h;f[q>>2]=b;f[q+4>>2]=o;q=i;f[q>>2]=c;f[q+4>>2]=p;f[j>>2]=m;f[j+4>>2]=a;f[g>>2]=f[h>>2];f[g+4>>2]=f[h+4>>2];f[e>>2]=f[i>>2];f[e+4>>2]=f[i+4>>2];we(k,g,e,j);u=d;return}j=p-o+n|0;n=b;if((j|0)>0){if(!o){r=j;s=0;t=l;v=b;w=n}else{b=32-o|0;p=(j|0)<(b|0)?j:b;e=-1>>>(b-p|0)&-1<<o;f[l>>2]=f[l>>2]&~e|f[n>>2]&e;e=p+o|0;b=n+4|0;r=j-p|0;s=e&31;t=l+(e>>>5<<2)|0;v=b;w=b}b=(r|0)/32|0;im(t|0,v|0,b<<2|0)|0;v=r-(b<<5)|0;r=t+(b<<2)|0;t=r;if((v|0)>0){e=-1>>>(32-v|0);f[r>>2]=f[r>>2]&~e|f[w+(b<<2)>>2]&e;x=v;y=t}else{x=s;y=t}}else{x=o;y=m}f[k>>2]=y;f[k+4>>2]=x;u=d;return}function Uf(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=u;u=u+32|0;e=d;g=a+40|0;h=(f[c>>2]|0)+(f[g>>2]|0)|0;i=a+24|0;j=f[a+32>>2]|0;k=j+-32768|0;do if(k>>>0>=64){if(k>>>0<16384){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-16384|0;b[m>>0]=n;b[m+1>>0]=n>>>8;o=(f[l>>2]|0)+2|0;break}if(k>>>0<4194304){l=a+28|0;n=(f[i>>2]|0)+(f[l>>2]|0)|0;m=j+8355840|0;b[n>>0]=m;b[n+1>>0]=m>>>8;b[n+2>>0]=m>>>16;o=(f[l>>2]|0)+3|0;break}if(k>>>0<1073741824){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;n=j+-1073774592|0;b[m>>0]=n;b[m+1>>0]=n>>>8;b[m+2>>0]=n>>>16;b[m+3>>0]=n>>>24;o=(f[l>>2]|0)+4|0;break}else{o=f[a+28>>2]|0;break}}else{l=a+28|0;b[(f[i>>2]|0)+(f[l>>2]|0)>>0]=k;o=(f[l>>2]|0)+1|0}while(0);k=((o|0)<0)<<31>>31;Gn(e);yh(o,k,e)|0;i=e+4|0;a=(f[i>>2]|0)-(f[e>>2]|0)|0;im(h+a|0,h|0,o|0)|0;kh(h|0,f[e>>2]|0,a|0)|0;h=g;g=f[h>>2]|0;j=f[h+4>>2]|0;h=Vn(a|0,0,o|0,k|0)|0;k=Vn(h|0,I|0,g|0,j|0)|0;Cl(c,k,I);k=e+12|0;c=f[k>>2]|0;f[k>>2]=0;if(c|0)Oq(c);c=f[e>>2]|0;if(!c){u=d;return}if((f[i>>2]|0)!=(c|0))f[i>>2]=c;Oq(c);u=d;return}function Vf(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;c=f[b>>2]|0;d=f[b+4>>2]|0;e=f[b+8>>2]|0;g=f[b+12>>2]|0;b=(((c^318)+239^d)+239^e)+239^g;h=f[a+4>>2]|0;if(!h){i=0;return i|0}j=h+-1|0;k=(j&h|0)==0;if(!k)if(b>>>0<h>>>0)l=b;else l=(b>>>0)%(h>>>0)|0;else l=b&j;m=f[(f[a>>2]|0)+(l<<2)>>2]|0;if(!m){i=0;return i|0}a=f[m>>2]|0;if(!a){i=0;return i|0}if(k){k=a;while(1){m=f[k+4>>2]|0;n=(m|0)==(b|0);if(!(n|(m&j|0)==(l|0))){i=0;o=25;break}if((((n?(f[k+8>>2]|0)==(c|0):0)?(f[k+12>>2]|0)==(d|0):0)?(f[k+16>>2]|0)==(e|0):0)?(f[k+20>>2]|0)==(g|0):0){i=k;o=25;break}k=f[k>>2]|0;if(!k){i=0;o=25;break}}if((o|0)==25)return i|0}else p=a;while(1){a=f[p+4>>2]|0;if((a|0)==(b|0)){if((((f[p+8>>2]|0)==(c|0)?(f[p+12>>2]|0)==(d|0):0)?(f[p+16>>2]|0)==(e|0):0)?(f[p+20>>2]|0)==(g|0):0){i=p;o=25;break}}else{if(a>>>0<h>>>0)q=a;else q=(a>>>0)%(h>>>0)|0;if((q|0)!=(l|0)){i=0;o=25;break}}p=f[p>>2]|0;if(!p){i=0;o=25;break}}if((o|0)==25)return i|0;return 0}function Wf(a,c,d,e,g,h,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;i=i|0;var j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;a=u;u=u+96|0;j=a;if(!c){k=-1;u=a;return k|0}Tm(j);Jj(j,d,0,g&255,i,0,g,0,0,0);i=jf(c,j,1,e)|0;d=f[(f[c+8>>2]|0)+(i<<2)>>2]|0;if(e|0){l=d+84|0;m=d+68|0;n=d+40|0;o=d+64|0;d=0;do{if(!(b[l>>0]|0))p=f[(f[m>>2]|0)+(d<<2)>>2]|0;else p=d;q=h+(X(d,g)|0)|0;r=n;s=f[r>>2]|0;t=un(s|0,f[r+4>>2]|0,p|0,0)|0;kh((f[f[o>>2]>>2]|0)+t|0,q|0,s|0)|0;d=d+1|0}while((d|0)!=(e|0))}d=c+80|0;c=f[d>>2]|0;if(c)if((c|0)==(e|0))v=10;else w=-1;else{f[d>>2]=e;v=10}if((v|0)==10)w=i;i=j+88|0;v=f[i>>2]|0;f[i>>2]=0;if(v|0){i=f[v+8>>2]|0;if(i|0){e=v+12|0;if((f[e>>2]|0)!=(i|0))f[e>>2]=i;Oq(i)}Oq(v)}v=f[j+68>>2]|0;if(v|0){i=j+72|0;e=f[i>>2]|0;if((e|0)!=(v|0))f[i>>2]=e+(~((e+-4-v|0)>>>2)<<2);Oq(v)}v=j+64|0;j=f[v>>2]|0;f[v>>2]=0;if(j|0){v=f[j>>2]|0;if(v|0){e=j+4|0;if((f[e>>2]|0)!=(v|0))f[e>>2]=v;Oq(v)}Oq(j)}k=w;u=a;return k|0}function Xf(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0;h=u;u=u+32|0;i=h;j=h+16|0;k=f[(f[(f[b+4>>2]|0)+8>>2]|0)+(d<<2)>>2]|0;do if((c+-1|0)>>>0<6&(Qa[f[(f[b>>2]|0)+8>>2]&127](b)|0)==1){l=Qa[f[(f[b>>2]|0)+48>>2]&127](b)|0;m=Ra[f[(f[b>>2]|0)+56>>2]&127](b,d)|0;if((l|0)==0|(m|0)==0){f[a>>2]=0;u=h;return}n=Ra[f[(f[b>>2]|0)+52>>2]&127](b,d)|0;if(!n){f[i>>2]=f[b+52>>2];f[i+4>>2]=l;f[i+12>>2]=m;f[i+8>>2]=m+12;qd(a,j,c,k,e,i,g);if(!(f[a>>2]|0)){f[a>>2]=0;break}u=h;return}else{f[i>>2]=f[b+52>>2];f[i+4>>2]=n;f[i+12>>2]=m;f[i+8>>2]=m+12;pd(a,j,c,k,e,i,g);if(!(f[a>>2]|0)){f[a>>2]=0;break}u=h;return}}while(0);f[a>>2]=0;u=h;return}function Yf(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0;e=f[d>>2]|0;g=f[d+4>>2]|0;if((e|0)==(g|0)){h=0;i=a+12|0;j=a+8|0}else{d=f[c>>2]|0;c=a+8|0;k=a+12|0;a=0;l=e;while(1){e=f[l>>2]|0;m=f[d+(e<<2)>>2]|0;if(m>>>0<a>>>0)n=a;else{o=f[c>>2]|0;p=(f[k>>2]|0)-o|0;q=o;if((p|0)>0){o=p>>>2;p=0;do{r=f[q+(p<<2)>>2]|0;s=f[r+68>>2]|0;if(!(b[r+84>>0]|0))t=f[s+(e<<2)>>2]|0;else t=e;f[s+(m<<2)>>2]=t;p=p+1|0}while((p|0)<(o|0))}n=m+1|0}l=l+4|0;if((l|0)==(g|0)){h=n;i=k;j=c;break}else a=n}}n=f[i>>2]|0;a=f[j>>2]|0;if((n-a|0)>0){u=0;v=a;w=n}else return;while(1){n=f[v+(u<<2)>>2]|0;b[n+84>>0]=0;a=n+68|0;c=n+72|0;n=f[c>>2]|0;k=f[a>>2]|0;g=n-k>>2;l=k;k=n;if(h>>>0<=g>>>0)if(h>>>0<g>>>0?(n=l+(h<<2)|0,(n|0)!=(k|0)):0){f[c>>2]=k+(~((k+-4-n|0)>>>2)<<2);x=v;y=w}else{x=v;y=w}else{Ch(a,h-g|0,6220);x=f[j>>2]|0;y=f[i>>2]|0}u=u+1|0;if((u|0)>=(y-x>>2|0))break;else{v=x;w=y}}return}function Zf(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=b;e=c-d>>2;g=a+8|0;h=f[g>>2]|0;i=f[a>>2]|0;j=i;if(e>>>0<=h-i>>2>>>0){k=a+4|0;l=(f[k>>2]|0)-i>>2;m=e>>>0>l>>>0;n=b+(l<<2)|0;l=m?n:c;o=l;p=o-d|0;q=p>>2;if(q|0)im(i|0,b|0,p|0)|0;p=j+(q<<2)|0;if(!m){m=f[k>>2]|0;if((m|0)==(p|0))return;f[k>>2]=m+(~((m+-4-p|0)>>>2)<<2);return}if((l|0)==(c|0))return;l=f[k>>2]|0;p=((c+-4-o|0)>>>2)+1|0;o=n;n=l;while(1){f[n>>2]=f[o>>2];o=o+4|0;if((o|0)==(c|0))break;else n=n+4|0}f[k>>2]=l+(p<<2);return}p=i;if(!i)r=h;else{h=a+4|0;l=f[h>>2]|0;if((l|0)!=(j|0))f[h>>2]=l+(~((l+-4-i|0)>>>2)<<2);Oq(p);f[g>>2]=0;f[h>>2]=0;f[a>>2]=0;r=0}if(e>>>0>1073741823)aq(a);h=r>>1;p=r>>2>>>0<536870911?(h>>>0<e>>>0?e:h):1073741823;if(p>>>0>1073741823)aq(a);h=ln(p<<2)|0;e=a+4|0;f[e>>2]=h;f[a>>2]=h;f[g>>2]=h+(p<<2);if((b|0)==(c|0))return;p=((c+-4-d|0)>>>2)+1|0;d=b;b=h;while(1){f[b>>2]=f[d>>2];d=d+4|0;if((d|0)==(c|0))break;else b=b+4|0}f[e>>2]=h+(p<<2);return}function _f(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=u;u=u+32|0;e=d;g=a+40|0;h=(f[c>>2]|0)+(f[g>>2]|0)|0;i=a+24|0;j=f[a+32>>2]|0;k=j+-16384|0;do if(k>>>0>=64){if(k>>>0<16384){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;b[m>>0]=j;b[m+1>>0]=j>>>8;n=(f[l>>2]|0)+2|0;break}if(k>>>0<4194304){l=a+28|0;m=(f[i>>2]|0)+(f[l>>2]|0)|0;o=j+8372224|0;b[m>>0]=o;b[m+1>>0]=o>>>8;b[m+2>>0]=o>>>16;n=(f[l>>2]|0)+3|0;break}if(k>>>0<1073741824){l=a+28|0;o=(f[i>>2]|0)+(f[l>>2]|0)|0;m=j+-1073758208|0;b[o>>0]=m;b[o+1>>0]=m>>>8;b[o+2>>0]=m>>>16;b[o+3>>0]=m>>>24;n=(f[l>>2]|0)+4|0;break}else{n=f[a+28>>2]|0;break}}else{l=a+28|0;b[(f[i>>2]|0)+(f[l>>2]|0)>>0]=k;n=(f[l>>2]|0)+1|0}while(0);k=((n|0)<0)<<31>>31;Gn(e);yh(n,k,e)|0;i=e+4|0;a=(f[i>>2]|0)-(f[e>>2]|0)|0;im(h+a|0,h|0,n|0)|0;kh(h|0,f[e>>2]|0,a|0)|0;h=g;g=f[h>>2]|0;j=f[h+4>>2]|0;h=Vn(a|0,0,n|0,k|0)|0;k=Vn(h|0,I|0,g|0,j|0)|0;Cl(c,k,I);k=e+12|0;c=f[k>>2]|0;f[k>>2]=0;if(c|0)Oq(c);c=f[e>>2]|0;if(!c){u=d;return}if((f[i>>2]|0)!=(c|0))f[i>>2]=c;Oq(c);u=d;return}function $f(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=b;e=c-d>>2;g=a+8|0;h=f[g>>2]|0;i=f[a>>2]|0;j=i;if(e>>>0<=h-i>>2>>>0){k=a+4|0;l=(f[k>>2]|0)-i>>2;m=e>>>0>l>>>0;n=b+(l<<2)|0;l=m?n:c;o=l;p=o-d|0;q=p>>2;if(q|0)im(i|0,b|0,p|0)|0;p=j+(q<<2)|0;if(!m){m=f[k>>2]|0;if((m|0)==(p|0))return;f[k>>2]=m+(~((m+-4-p|0)>>>2)<<2);return}if((l|0)==(c|0))return;l=f[k>>2]|0;p=c+-4-o|0;o=n;n=l;while(1){f[n>>2]=f[o>>2];o=o+4|0;if((o|0)==(c|0))break;else n=n+4|0}f[k>>2]=l+((p>>>2)+1<<2);return}p=i;if(!i)r=h;else{h=a+4|0;l=f[h>>2]|0;if((l|0)!=(j|0))f[h>>2]=l+(~((l+-4-i|0)>>>2)<<2);Oq(p);f[g>>2]=0;f[h>>2]=0;f[a>>2]=0;r=0}if(e>>>0>1073741823)aq(a);h=r>>1;p=r>>2>>>0<536870911?(h>>>0<e>>>0?e:h):1073741823;if(p>>>0>1073741823)aq(a);h=ln(p<<2)|0;e=a+4|0;f[e>>2]=h;f[a>>2]=h;f[g>>2]=h+(p<<2);if((b|0)==(c|0))return;p=c+-4-d|0;d=b;b=h;while(1){f[b>>2]=f[d>>2];d=d+4|0;if((d|0)==(c|0))break;else b=b+4|0}f[e>>2]=h+((p>>>2)+1<<2);return}function ag(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0;g=u;u=u+80|0;h=g;i=g+64|0;Il(h);j=f[(f[a+8>>2]|0)+56>>2]|0;k=X(Vl(5)|0,d)|0;Jj(h,j,0,d&255,5,0,k,((k|0)<0)<<31>>31,0,0);k=ln(96)|0;tl(k,h);Bj(k,c)|0;f[i>>2]=k;gj(a,i);k=f[i>>2]|0;f[i>>2]=0;if(k|0){i=k+88|0;c=f[i>>2]|0;f[i>>2]=0;if(c|0){i=f[c+8>>2]|0;if(i|0){h=c+12|0;if((f[h>>2]|0)!=(i|0))f[h>>2]=i;Oq(i)}Oq(c)}c=f[k+68>>2]|0;if(c|0){i=k+72|0;h=f[i>>2]|0;if((h|0)!=(c|0))f[i>>2]=h+(~((h+-4-c|0)>>>2)<<2);Oq(c)}c=k+64|0;h=f[c>>2]|0;f[c>>2]=0;if(h|0){c=f[h>>2]|0;if(c|0){i=h+4|0;if((f[i>>2]|0)!=(c|0))f[i>>2]=c;Oq(c)}Oq(h)}Oq(k)}if(!e){u=g;return}k=f[a+32>>2]|0;b[k+84>>0]=0;a=k+68|0;h=k+72|0;k=f[h>>2]|0;c=f[a>>2]|0;i=k-c>>2;d=k;if(i>>>0<e>>>0){Ch(a,e-i|0,1532);u=g;return}if(i>>>0<=e>>>0){u=g;return}i=c+(e<<2)|0;if((i|0)==(d|0)){u=g;return}f[h>>2]=d+(~((d+-4-i|0)>>>2)<<2);u=g;return}function bg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0;c=u;u=u+16|0;d=c+4|0;e=c;g=a+4|0;h=f[g>>2]|0;i=a+8|0;j=f[i>>2]|0;if((j|0)==(h|0))k=h;else{l=j+(~((j+-4-h|0)>>>2)<<2)|0;f[i>>2]=l;k=l}l=a+16|0;h=f[l>>2]|0;j=a+20|0;m=f[j>>2]|0;n=h;if((m|0)!=(h|0))f[j>>2]=m+(~((m+-4-n|0)>>>2)<<2);m=f[b>>2]|0;h=f[b+4>>2]|0;if((m|0)==(h|0)){u=c;return}b=a+12|0;a=m;m=k;k=n;while(1){n=f[a>>2]|0;f[d>>2]=n;if((m|0)==(f[b>>2]|0)){Ri(g,d);o=f[l>>2]|0}else{f[m>>2]=n;f[i>>2]=m+4;o=k}n=f[d>>2]|0;p=f[j>>2]|0;q=p-o>>2;r=o;if((n|0)<(q|0)){s=r;t=n;v=o}else{w=n+1|0;f[e>>2]=-1;x=p;if(w>>>0<=q>>>0)if(w>>>0<q>>>0?(p=r+(w<<2)|0,(p|0)!=(x|0)):0){f[j>>2]=x+(~((x+-4-p|0)>>>2)<<2);y=n;z=r;A=o}else{y=n;z=r;A=o}else{Ch(l,w-q|0,e);q=f[l>>2]|0;y=f[d>>2]|0;z=q;A=q}s=z;t=y;v=A}m=f[i>>2]|0;f[s+(t<<2)>>2]=(m-(f[g>>2]|0)>>2)+-1;a=a+4|0;if((a|0)==(h|0))break;else k=v}u=c;return}function cg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0;c=u;u=u+16|0;d=c;e=a+76|0;g=f[e>>2]|0;h=a+80|0;i=f[h>>2]|0;if((i|0)!=(g|0))f[h>>2]=i+(~((i+-4-g|0)>>>2)<<2);f[e>>2]=0;f[h>>2]=0;f[a+84>>2]=0;if(g|0)Oq(g);g=a+64|0;h=f[g>>2]|0;e=a+68|0;if((f[e>>2]|0)!=(h|0))f[e>>2]=h;f[g>>2]=0;f[e>>2]=0;f[a+72>>2]=0;if(h|0)Oq(h);h=b+4|0;e=f[h>>2]|0;g=f[b>>2]|0;i=((e-g|0)/12|0)*3|0;j=a+4|0;k=f[j>>2]|0;l=f[a>>2]|0;m=k-l>>2;n=l;l=k;k=g;if(i>>>0<=m>>>0)if(i>>>0<m>>>0?(o=n+(i<<2)|0,(o|0)!=(l|0)):0){f[j>>2]=l+(~((l+-4-o|0)>>>2)<<2);p=e;q=g;r=k}else{p=e;q=g;r=k}else{Ci(a,i-m|0);m=f[b>>2]|0;p=f[h>>2]|0;q=m;r=m}if((p|0)!=(q|0)){q=f[a>>2]|0;m=(p-r|0)/12|0;p=0;do{h=p*3|0;f[q+(h<<2)>>2]=f[r+(p*12|0)>>2];f[q+(h+1<<2)>>2]=f[r+(p*12|0)+4>>2];f[q+(h+2<<2)>>2]=f[r+(p*12|0)+8>>2];p=p+1|0}while(p>>>0<m>>>0)}f[d>>2]=-1;if(!(rc(a,d)|0)){s=0;u=c;return s|0}eb(a,f[d>>2]|0)|0;s=1;u=c;return s|0}function dg(a,b){a=a|0;b=b|0;var c=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;c=d[b>>1]|0;e=d[b+2>>1]|0;g=d[b+4>>1]|0;b=(((c^318)&65535)+239^e&65535)+239^g&65535;h=f[a+4>>2]|0;if(!h){i=0;return i|0}j=h+-1|0;k=(j&h|0)==0;if(!k)if(b>>>0<h>>>0)l=b;else l=(b>>>0)%(h>>>0)|0;else l=b&j;m=f[(f[a>>2]|0)+(l<<2)>>2]|0;if(!m){i=0;return i|0}a=f[m>>2]|0;if(!a){i=0;return i|0}if(k){k=a;while(1){m=f[k+4>>2]|0;n=(m|0)==(b|0);if(!(n|(m&j|0)==(l|0))){i=0;o=23;break}if(((n?(n=k+8|0,(d[n>>1]|0)==c<<16>>16):0)?(d[n+2>>1]|0)==e<<16>>16:0)?(d[k+12>>1]|0)==g<<16>>16:0){i=k;o=23;break}k=f[k>>2]|0;if(!k){i=0;o=23;break}}if((o|0)==23)return i|0}else p=a;while(1){a=f[p+4>>2]|0;if((a|0)==(b|0)){k=p+8|0;if(((d[k>>1]|0)==c<<16>>16?(d[k+2>>1]|0)==e<<16>>16:0)?(d[p+12>>1]|0)==g<<16>>16:0){i=p;o=23;break}}else{if(a>>>0<h>>>0)q=a;else q=(a>>>0)%(h>>>0)|0;if((q|0)!=(l|0)){i=0;o=23;break}}p=f[p>>2]|0;if(!p){i=0;o=23;break}}if((o|0)==23)return i|0;return 0}function eg(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;c=u;u=u+32|0;d=c;e=a+16|0;g=e;h=f[g>>2]|0;i=f[g+4>>2]|0;if(!((i|0)>0|(i|0)==0&h>>>0>0)){u=c;return}g=Vn(f[(f[a+12>>2]|0)+4>>2]|0,0,7,0)|0;j=Yn(g|0,I|0,3)|0;g=I;if(!(b[a+24>>0]|0)){k=a+4|0;l=k;m=k;n=h;o=i}else{k=f[a>>2]|0;p=a+4|0;q=k+((f[p>>2]|0)-k)|0;k=Vn(h|0,i|0,8,0)|0;i=q+(0-k)|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;f[d+12>>2]=0;f[d+16>>2]=0;f[d+20>>2]=0;b[d+24>>0]=0;yh(j,g,d)|0;k=d+4|0;q=(f[k>>2]|0)-(f[d>>2]|0)|0;im(i+q|0,i+8|0,j|0)|0;kh(i|0,f[d>>2]|0,q|0)|0;i=e;h=Vn(f[i>>2]|0,f[i+4>>2]|0,8-q|0,0)|0;q=e;f[q>>2]=h;f[q+4>>2]=I;q=d+12|0;h=f[q>>2]|0;f[q>>2]=0;if(h|0)Oq(h);h=f[d>>2]|0;if(h|0){if((f[k>>2]|0)!=(h|0))f[k>>2]=h;Oq(h)}h=e;l=p;m=p;n=f[h>>2]|0;o=f[h+4>>2]|0}h=f[l>>2]|0;l=f[a>>2]|0;p=h-l|0;k=Xn(j|0,g|0,n|0,o|0)|0;o=Vn(k|0,I|0,p|0,0)|0;k=l;l=h;if(p>>>0>=o>>>0){if(p>>>0>o>>>0?(h=k+o|0,(h|0)!=(l|0)):0)f[m>>2]=h}else Fi(a,o-p|0);p=e;f[p>>2]=0;f[p+4>>2]=0;u=c;return}function fg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;f[a+4>>2]=f[b+4>>2];c=a+8|0;d=b+8|0;if((a|0)==(b|0))return a|0;e=b+12|0;g=f[e>>2]|0;if(!g)h=0;else{i=a+16|0;do if(g>>>0>f[i>>2]<<5>>>0){j=f[c>>2]|0;if(!j)k=g;else{Oq(j);f[c>>2]=0;f[i>>2]=0;f[a+12>>2]=0;k=f[e>>2]|0}if((k|0)<0)aq(c);else{j=((k+-1|0)>>>5)+1|0;l=ln(j<<2)|0;f[c>>2]=l;f[a+12>>2]=0;f[i>>2]=j;m=f[e>>2]|0;n=l;break}}else{m=g;n=f[c>>2]|0}while(0);im(n|0,f[d>>2]|0,((m+-1|0)>>>5<<2)+4|0)|0;h=f[e>>2]|0}f[a+12>>2]=h;h=a+20|0;e=b+20|0;m=b+24|0;b=f[m>>2]|0;if(!b)o=0;else{d=a+28|0;do if(b>>>0>f[d>>2]<<5>>>0){n=f[h>>2]|0;if(!n)p=b;else{Oq(n);f[h>>2]=0;f[d>>2]=0;f[a+24>>2]=0;p=f[m>>2]|0}if((p|0)<0)aq(h);else{n=((p+-1|0)>>>5)+1|0;c=ln(n<<2)|0;f[h>>2]=c;f[a+24>>2]=0;f[d>>2]=n;q=f[m>>2]|0;r=c;break}}else{q=b;r=f[h>>2]|0}while(0);im(r|0,f[e>>2]|0,((q+-1|0)>>>5<<2)+4|0)|0;o=f[m>>2]|0}f[a+24>>2]=o;return a|0}function gg(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;f[c>>2]=1;d=a+4|0;e=c+8|0;g=c+12|0;c=f[e>>2]|0;i=(f[g>>2]|0)-c|0;if(i>>>0<4294967292){Lk(e,i+4|0,0);j=f[e>>2]|0}else j=c;c=j+i|0;i=h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24;b[c>>0]=i;b[c+1>>0]=i>>8;b[c+2>>0]=i>>16;b[c+3>>0]=i>>24;i=a+8|0;c=a+12|0;d=f[i>>2]|0;if((f[c>>2]|0)!=(d|0)){j=0;k=d;do{d=k+(j<<2)|0;l=f[e>>2]|0;m=(f[g>>2]|0)-l|0;if(m>>>0<4294967292){Lk(e,m+4|0,0);n=f[e>>2]|0}else n=l;l=n+m|0;m=h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24;b[l>>0]=m;b[l+1>>0]=m>>8;b[l+2>>0]=m>>16;b[l+3>>0]=m>>24;j=j+1|0;k=f[i>>2]|0}while(j>>>0<(f[c>>2]|0)-k>>2>>>0)}k=a+20|0;a=f[e>>2]|0;c=(f[g>>2]|0)-a|0;if(c>>>0<4294967292){Lk(e,c+4|0,0);o=f[e>>2]|0;p=o+c|0;q=h[k>>0]|h[k+1>>0]<<8|h[k+2>>0]<<16|h[k+3>>0]<<24;b[p>>0]=q;b[p+1>>0]=q>>8;b[p+2>>0]=q>>16;b[p+3>>0]=q>>24;return}else{o=a;p=o+c|0;q=h[k>>0]|h[k+1>>0]<<8|h[k+2>>0]<<16|h[k+3>>0]<<24;b[p>>0]=q;b[p+1>>0]=q>>8;b[p+2>>0]=q>>16;b[p+3>>0]=q>>24;return}}function hg(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=a+8|0;e=f[d>>2]|0;g=f[a>>2]|0;h=g;do if(e-g>>2>>>0>=b>>>0){i=a+4|0;j=f[i>>2]|0;k=j-g>>2;l=k>>>0<b>>>0;m=l?k:b;n=j;if(m|0){j=m;m=h;while(1){f[m>>2]=f[c>>2];j=j+-1|0;if(!j)break;else m=m+4|0}}if(!l){m=h+(b<<2)|0;if((m|0)==(n|0))return;else{o=i;p=n+(~((n+-4-m|0)>>>2)<<2)|0;break}}else{m=b-k|0;j=m;q=n;while(1){f[q>>2]=f[c>>2];j=j+-1|0;if(!j)break;else q=q+4|0}o=i;p=n+(m<<2)|0;break}}else{q=g;if(!g)r=e;else{j=a+4|0;k=f[j>>2]|0;if((k|0)!=(h|0))f[j>>2]=k+(~((k+-4-g|0)>>>2)<<2);Oq(q);f[d>>2]=0;f[j>>2]=0;f[a>>2]=0;r=0}if(b>>>0>1073741823)aq(a);j=r>>1;q=r>>2>>>0<536870911?(j>>>0<b>>>0?b:j):1073741823;if(q>>>0>1073741823)aq(a);j=ln(q<<2)|0;k=a+4|0;f[k>>2]=j;f[a>>2]=j;f[d>>2]=j+(q<<2);q=b;l=j;while(1){f[l>>2]=f[c>>2];q=q+-1|0;if(!q)break;else l=l+4|0}o=k;p=j+(b<<2)|0}while(0);f[o>>2]=p;return}function ig(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0;h=jh(a,b,c,d,g)|0;i=f[e>>2]|0;j=f[d>>2]|0;k=f[g>>2]|0;g=f[k>>2]|0;l=(f[k+4>>2]|0)-g>>3;if(l>>>0<=i>>>0)aq(k);m=g;if(l>>>0<=j>>>0)aq(k);if((f[m+(i<<3)>>2]|0)>>>0>=(f[m+(j<<3)>>2]|0)>>>0){n=h;return n|0}f[d>>2]=i;f[e>>2]=j;j=f[d>>2]|0;e=f[c>>2]|0;if(l>>>0<=j>>>0)aq(k);if(l>>>0<=e>>>0)aq(k);if((f[m+(j<<3)>>2]|0)>>>0>=(f[m+(e<<3)>>2]|0)>>>0){n=h+1|0;return n|0}f[c>>2]=j;f[d>>2]=e;e=f[c>>2]|0;d=f[b>>2]|0;if(l>>>0<=e>>>0)aq(k);if(l>>>0<=d>>>0)aq(k);if((f[m+(e<<3)>>2]|0)>>>0>=(f[m+(d<<3)>>2]|0)>>>0){n=h+2|0;return n|0}f[b>>2]=e;f[c>>2]=d;d=f[b>>2]|0;c=f[a>>2]|0;if(l>>>0<=d>>>0)aq(k);if(l>>>0<=c>>>0)aq(k);if((f[m+(d<<3)>>2]|0)>>>0>=(f[m+(c<<3)>>2]|0)>>>0){n=h+3|0;return n|0}f[a>>2]=d;f[b>>2]=c;n=h+4|0;return n|0}function jg(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;d=b[c>>0]|0;e=b[c+1>>0]|0;g=b[c+2>>0]|0;c=((d&255^318)+239^e&255)+239^g&255;h=f[a+4>>2]|0;if(!h){i=0;return i|0}j=h+-1|0;k=(j&h|0)==0;if(!k)if(c>>>0<h>>>0)l=c;else l=(c>>>0)%(h>>>0)|0;else l=c&j;m=f[(f[a>>2]|0)+(l<<2)>>2]|0;if(!m){i=0;return i|0}a=f[m>>2]|0;if(!a){i=0;return i|0}if(k){k=a;while(1){m=f[k+4>>2]|0;n=(m|0)==(c|0);if(!(n|(m&j|0)==(l|0))){i=0;o=23;break}if(((n?(n=k+8|0,(b[n>>0]|0)==d<<24>>24):0)?(b[n+1>>0]|0)==e<<24>>24:0)?(b[n+2>>0]|0)==g<<24>>24:0){i=k;o=23;break}k=f[k>>2]|0;if(!k){i=0;o=23;break}}if((o|0)==23)return i|0}else p=a;while(1){a=f[p+4>>2]|0;if((a|0)==(c|0)){k=p+8|0;if(((b[k>>0]|0)==d<<24>>24?(b[k+1>>0]|0)==e<<24>>24:0)?(b[k+2>>0]|0)==g<<24>>24:0){i=p;o=23;break}}else{if(a>>>0<h>>>0)q=a;else q=(a>>>0)%(h>>>0)|0;if((q|0)!=(l|0)){i=0;o=23;break}}p=f[p>>2]|0;if(!p){i=0;o=23;break}}if((o|0)==23)return i|0;return 0}function kg(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;b=u;u=u+16|0;c=b;d=a+36|0;e=a+4|0;g=a+8|0;h=(f[g>>2]|0)-(f[e>>2]|0)>>2;i=a+40|0;j=f[i>>2]|0;k=f[d>>2]|0;l=j-k>>2;m=k;k=j;if(h>>>0<=l>>>0){if(h>>>0<l>>>0?(j=m+(h<<2)|0,(j|0)!=(k|0)):0){m=k;do{k=m+-4|0;f[i>>2]=k;n=f[k>>2]|0;f[k>>2]=0;if(n|0)Va[f[(f[n>>2]|0)+4>>2]&127](n);m=f[i>>2]|0}while((m|0)!=(j|0))}}else Eg(d,h-l|0);if((f[g>>2]|0)==(f[e>>2]|0)){o=1;u=b;return o|0}l=a+52|0;h=a+48|0;j=0;while(1){Xa[f[(f[a>>2]|0)+56>>2]&15](c,a,j);m=(f[d>>2]|0)+(j<<2)|0;i=f[c>>2]|0;f[c>>2]=0;n=f[m>>2]|0;f[m>>2]=i;if(n|0)Va[f[(f[n>>2]|0)+4>>2]&127](n);n=f[c>>2]|0;f[c>>2]=0;if(n|0)Va[f[(f[n>>2]|0)+4>>2]&127](n);n=f[(f[d>>2]|0)+(j<<2)>>2]|0;if(!n){o=0;p=19;break}if(j>>>0<(f[l>>2]|0)>>>0?f[(f[h>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0:0)Bp(n);j=j+1|0;if(j>>>0>=(f[g>>2]|0)-(f[e>>2]|0)>>2>>>0){o=1;p=19;break}}if((p|0)==19){u=b;return o|0}return 0}function lg(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=u;u=u+16|0;e=d+4|0;g=d;ci(f[c+12>>2]|0,b)|0;h=f[c+8>>2]|0;a:do if(h|0){i=b+16|0;j=b+4|0;k=h;while(1){l=k;if(!(Bf(0,b,l+8|0)|0)){m=0;break}n=l+20|0;o=(f[l+24>>2]|0)-(f[n>>2]|0)|0;ci(o,b)|0;l=f[n>>2]|0;n=i;p=f[n+4>>2]|0;if(!((p|0)>0|(p|0)==0&(f[n>>2]|0)>>>0>0)){f[g>>2]=f[j>>2];f[e>>2]=f[g>>2];Me(b,e,l,l+o|0)|0}k=f[k>>2]|0;if(!k)break a}u=d;return m|0}while(0);ci(f[c+32>>2]|0,b)|0;e=f[c+28>>2]|0;if(!e){m=1;u=d;return m|0}else q=e;while(1){e=q;if(!(Bf(0,b,e+8|0)|0)){m=0;r=10;break}lg(a,b,f[e+20>>2]|0)|0;q=f[q>>2]|0;if(!q){m=1;r=10;break}}if((r|0)==10){u=d;return m|0}return 0}function mg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;c=u;u=u+16|0;d=c+8|0;e=c+4|0;g=c;h=a+8|0;i=a+12|0;j=f[h>>2]|0;if((f[i>>2]|0)==(j|0)){k=ln(76)|0;vn(k,b);l=k;f[g>>2]=l;k=f[i>>2]|0;if(k>>>0<(f[a+16>>2]|0)>>>0){f[g>>2]=0;f[k>>2]=l;f[i>>2]=k+4;m=g}else{Qg(h,g);m=g}g=f[m>>2]|0;f[m>>2]=0;if(!g){u=c;return 1}Va[f[(f[g>>2]|0)+4>>2]&127](g);u=c;return 1}g=f[j>>2]|0;f[d>>2]=b;j=g+4|0;m=g+8|0;h=f[m>>2]|0;if((h|0)==(f[g+12>>2]|0))Ri(j,d);else{f[h>>2]=b;f[m>>2]=h+4}h=f[d>>2]|0;b=g+16|0;k=g+20|0;g=f[k>>2]|0;i=f[b>>2]|0;l=g-i>>2;a=i;if((h|0)<(l|0)){n=a;o=h}else{i=h+1|0;f[e>>2]=-1;p=g;if(i>>>0<=l>>>0)if(i>>>0<l>>>0?(g=a+(i<<2)|0,(g|0)!=(p|0)):0){f[k>>2]=p+(~((p+-4-g|0)>>>2)<<2);q=h;r=a}else{q=h;r=a}else{Ch(b,i-l|0,e);q=f[d>>2]|0;r=f[b>>2]|0}n=r;o=q}f[n+(o<<2)>>2]=((f[m>>2]|0)-(f[j>>2]|0)>>2)+-1;u=c;return 1}function ng(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;d=c;e=b;g=d-e|0;h=g>>2;i=a+8|0;j=f[i>>2]|0;k=f[a>>2]|0;l=k;if(h>>>0>j-k>>2>>>0){m=k;if(!k)n=j;else{j=a+4|0;o=f[j>>2]|0;if((o|0)!=(l|0))f[j>>2]=o+(~((o+-4-k|0)>>>2)<<2);Oq(m);f[i>>2]=0;f[j>>2]=0;f[a>>2]=0;n=0}if(h>>>0>1073741823)aq(a);j=n>>1;m=n>>2>>>0<536870911?(j>>>0<h>>>0?h:j):1073741823;if(m>>>0>1073741823)aq(a);j=ln(m<<2)|0;n=a+4|0;f[n>>2]=j;f[a>>2]=j;f[i>>2]=j+(m<<2);if((g|0)<=0)return;kh(j|0,b|0,g|0)|0;f[n>>2]=j+(g>>>2<<2);return}g=a+4|0;a=f[g>>2]|0;j=a-k>>2;k=h>>>0>j>>>0;h=k?b+(j<<2)|0:c;c=a;j=a;if((h|0)==(b|0))p=l;else{a=h+-4-e|0;e=b;b=l;while(1){f[b>>2]=f[e>>2];e=e+4|0;if((e|0)==(h|0))break;else b=b+4|0}p=l+((a>>>2)+1<<2)|0}if(k){k=d-h|0;if((k|0)<=0)return;kh(j|0,h|0,k|0)|0;f[g>>2]=(f[g>>2]|0)+(k>>>2<<2);return}else{if((p|0)==(c|0))return;f[g>>2]=c+(~((c+-4-p|0)>>>2)<<2);return}}function og(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=f[a+8>>2]|0;e=a+76|0;g=f[e>>2]|0;h=f[g+80>>2]|0;b[c+84>>0]=0;i=c+68|0;j=c+72|0;k=f[j>>2]|0;l=f[i>>2]|0;m=k-l>>2;n=l;l=k;if(h>>>0<=m>>>0)if(h>>>0<m>>>0?(k=n+(h<<2)|0,(k|0)!=(l|0)):0){f[j>>2]=l+(~((l+-4-k|0)>>>2)<<2);o=g;p=h}else{o=g;p=h}else{Ch(i,h-m|0,3600);m=f[e>>2]|0;o=m;p=f[m+80>>2]|0}m=(f[o+100>>2]|0)-(f[o+96>>2]|0)|0;e=(m|0)/12|0;if(!m){q=1;return q|0}m=c+68|0;c=f[o+96>>2]|0;o=f[d+28>>2]|0;d=f[(f[a+80>>2]|0)+12>>2]|0;a=0;while(1){h=a*3|0;i=f[d+(f[o+(h<<2)>>2]<<2)>>2]|0;if(i>>>0>=p>>>0){q=0;r=10;break}g=f[m>>2]|0;f[g+(f[c+(a*12|0)>>2]<<2)>>2]=i;i=f[d+(f[o+(h+1<<2)>>2]<<2)>>2]|0;if(i>>>0>=p>>>0){q=0;r=10;break}f[g+(f[c+(a*12|0)+4>>2]<<2)>>2]=i;i=f[d+(f[o+(h+2<<2)>>2]<<2)>>2]|0;if(i>>>0>=p>>>0){q=0;r=10;break}f[g+(f[c+(a*12|0)+8>>2]<<2)>>2]=i;a=a+1|0;if(a>>>0>=e>>>0){q=1;r=10;break}}if((r|0)==10)return q|0;return 0}function pg(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;e=u;u=u+16|0;g=e;if(!(xh(a,c,d)|0)){h=0;u=e;return h|0}if((b[(f[a+8>>2]|0)+24>>0]|0)!=3){h=0;u=e;return h|0}i=f[c+48>>2]|0;c=ln(32)|0;f[g>>2]=c;f[g+8>>2]=-2147483616;f[g+4>>2]=17;j=c;k=14495;l=j+17|0;do{b[j>>0]=b[k>>0]|0;j=j+1|0;k=k+1|0}while((j|0)<(l|0));b[c+17>>0]=0;c=i+16|0;k=f[c>>2]|0;if(k){j=c;l=k;a:while(1){k=l;while(1){if((f[k+16>>2]|0)>=(d|0))break;m=f[k+4>>2]|0;if(!m){n=j;break a}else k=m}l=f[k>>2]|0;if(!l){n=k;break}else j=k}if(((n|0)!=(c|0)?(f[n+16>>2]|0)<=(d|0):0)?(d=n+20|0,(Jh(d,g)|0)!=0):0)o=Hk(d,g,-1)|0;else p=12}else p=12;if((p|0)==12)o=Hk(i,g,-1)|0;if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);if((o|0)<1){h=0;u=e;return h|0}ip(a+40|0,o);h=1;u=e;return h|0}function qg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=f[b>>2]|0;d=f[b+4>>2]|0;e=f[b+8>>2]|0;b=((c^318)+239^d)+239^e;g=f[a+4>>2]|0;if(!g){h=0;return h|0}i=g+-1|0;j=(i&g|0)==0;if(!j)if(b>>>0<g>>>0)k=b;else k=(b>>>0)%(g>>>0)|0;else k=b&i;l=f[(f[a>>2]|0)+(k<<2)>>2]|0;if(!l){h=0;return h|0}a=f[l>>2]|0;if(!a){h=0;return h|0}if(j){j=a;while(1){l=f[j+4>>2]|0;m=(l|0)==(b|0);if(!(m|(l&i|0)==(k|0))){h=0;n=23;break}if(((m?(f[j+8>>2]|0)==(c|0):0)?(f[j+12>>2]|0)==(d|0):0)?(f[j+16>>2]|0)==(e|0):0){h=j;n=23;break}j=f[j>>2]|0;if(!j){h=0;n=23;break}}if((n|0)==23)return h|0}else o=a;while(1){a=f[o+4>>2]|0;if((a|0)==(b|0)){if(((f[o+8>>2]|0)==(c|0)?(f[o+12>>2]|0)==(d|0):0)?(f[o+16>>2]|0)==(e|0):0){h=o;n=23;break}}else{if(a>>>0<g>>>0)p=a;else p=(a>>>0)%(g>>>0)|0;if((p|0)!=(k|0)){h=0;n=23;break}}o=f[o>>2]|0;if(!o){h=0;n=23;break}}if((n|0)==23)return h|0;return 0}function rg(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;e=c;g=d-e|0;h=a+8|0;i=f[h>>2]|0;j=f[a>>2]|0;k=j;if(g>>>0>(i-j|0)>>>0){if(!j)l=i;else{i=a+4|0;if((f[i>>2]|0)!=(k|0))f[i>>2]=k;Oq(k);f[h>>2]=0;f[i>>2]=0;f[a>>2]=0;l=0}if((g|0)<0)aq(a);i=l<<1;m=l>>>0<1073741823?(i>>>0<g>>>0?g:i):2147483647;if((m|0)<0)aq(a);i=ln(m)|0;l=a+4|0;f[l>>2]=i;f[a>>2]=i;f[h>>2]=i+m;if((c|0)==(d|0))return;else{n=c;o=i}do{b[o>>0]=b[n>>0]|0;n=n+1|0;o=(f[l>>2]|0)+1|0;f[l>>2]=o}while((n|0)!=(d|0));return}n=a+4|0;a=(f[n>>2]|0)-j|0;j=g>>>0>a>>>0;g=c+a|0;a=j?g:d;if((a|0)==(c|0))p=k;else{o=c;c=k;while(1){b[c>>0]=b[o>>0]|0;o=o+1|0;if((o|0)==(a|0))break;else c=c+1|0}p=k+(a-e)|0}if(!j){if((f[n>>2]|0)==(p|0))return;f[n>>2]=p;return}if((a|0)==(d|0))return;a=g;g=f[n>>2]|0;do{b[g>>0]=b[a>>0]|0;a=a+1|0;g=(f[n>>2]|0)+1|0;f[n>>2]=g}while((a|0)!=(d|0));return}function sg(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;d=c>>>1&1431655765|c<<1&-1431655766;c=d>>>2&858993459|d<<2&-858993460;d=c>>>4&252645135|c<<4&-252645136;c=d>>>8&16711935|d<<8&-16711936;d=32-b|0;e=(c>>>16|c<<16)>>>d;c=e-(e>>>1&1431655765)|0;g=(c>>>2&858993459)+(c&858993459)|0;c=(X((g>>>4)+g&252645135,16843009)|0)>>>24;g=b-c|0;h=f[a>>2]|0;i=h;j=Vn(f[i>>2]|0,f[i+4>>2]|0,g|0,((g|0)<0)<<31>>31|0)|0;g=h;f[g>>2]=j;f[g+4>>2]=I;g=h+8|0;h=g;j=Vn(f[h>>2]|0,f[h+4>>2]|0,c|0,0)|0;c=g;f[c>>2]=j;f[c+4>>2]=I;c=a+28|0;j=f[c>>2]|0;g=32-j|0;h=a+24|0;do if((g|0)>=(b|0)){i=-1>>>d<<j;k=f[h>>2]&~i|i&e<<j;f[h>>2]=k;i=j+b|0;f[c>>2]=i;if((i|0)!=32)return;i=a+16|0;l=f[i>>2]|0;if((l|0)==(f[a+20>>2]|0)){Ri(a+12|0,h);m=0;n=0;break}else{f[l>>2]=k;f[i>>2]=l+4;m=0;n=0;break}}else{l=-1>>>j<<j;i=f[h>>2]&~l|l&e<<j;f[h>>2]=i;l=a+16|0;k=f[l>>2]|0;if((k|0)==(f[a+20>>2]|0))Ri(a+12|0,h);else{f[k>>2]=i;f[l>>2]=k+4}k=b-g|0;m=k;n=-1>>>(32-k|0)&e>>>g}while(0);f[h>>2]=n;f[c>>2]=m;return}function tg(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0;e=c&255;g=(d|0)!=0;a:do if(g&(a&3|0)!=0){h=c&255;i=a;j=d;while(1){if((b[i>>0]|0)==h<<24>>24){k=i;l=j;m=6;break a}n=i+1|0;o=j+-1|0;p=(o|0)!=0;if(p&(n&3|0)!=0){i=n;j=o}else{q=n;r=o;s=p;m=5;break}}}else{q=a;r=d;s=g;m=5}while(0);if((m|0)==5)if(s){k=q;l=r;m=6}else{t=q;u=0}b:do if((m|0)==6){q=c&255;if((b[k>>0]|0)==q<<24>>24){t=k;u=l}else{r=X(e,16843009)|0;c:do if(l>>>0>3){s=k;g=l;while(1){d=f[s>>2]^r;if((d&-2139062144^-2139062144)&d+-16843009|0)break;d=s+4|0;a=g+-4|0;if(a>>>0>3){s=d;g=a}else{v=d;w=a;m=11;break c}}x=s;y=g}else{v=k;w=l;m=11}while(0);if((m|0)==11)if(!w){t=v;u=0;break}else{x=v;y=w}while(1){if((b[x>>0]|0)==q<<24>>24){t=x;u=y;break b}r=x+1|0;y=y+-1|0;if(!y){t=r;u=0;break}else x=r}}}while(0);return (u|0?t:0)|0}function ug(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0;c=a+4|0;d=f[c>>2]|0;e=f[a>>2]|0;g=e;do if((d|0)==(e|0)){h=a+8|0;i=f[h>>2]|0;j=a+12|0;k=f[j>>2]|0;l=k;if(i>>>0<k>>>0){k=i;m=((l-k>>2)+1|0)/2|0;n=i+(m<<2)|0;o=k-d|0;k=o>>2;p=n+(0-k<<2)|0;if(!k){q=n;r=i}else{im(p|0,d|0,o|0)|0;q=p;r=f[h>>2]|0}f[c>>2]=q;f[h>>2]=r+(m<<2);s=q;break}m=l-g>>1;l=(m|0)==0?1:m;if(l>>>0>1073741823){m=ra(8)|0;Oo(m,16035);f[m>>2]=7256;va(m|0,1112,110)}m=ln(l<<2)|0;p=m;o=m+((l+3|0)>>>2<<2)|0;n=o;k=m+(l<<2)|0;if((d|0)==(i|0)){t=n;u=d}else{l=o;m=n;v=d;do{f[l>>2]=f[v>>2];l=m+4|0;m=l;v=v+4|0}while((v|0)!=(i|0));t=m;u=f[a>>2]|0}f[a>>2]=p;f[c>>2]=n;f[h>>2]=t;f[j>>2]=k;if(!u)s=o;else{Oq(u);s=f[c>>2]|0}}else s=d;while(0);f[s+-4>>2]=f[b>>2];f[c>>2]=(f[c>>2]|0)+-4;return}function vg(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;d=u;u=u+16|0;e=d+4|0;g=d;h=d+8|0;i=a+4|0;if((f[i>>2]|0)==-1){j=0;u=d;return j|0}k=f[a+8>>2]|0;l=c+16|0;m=l;n=f[m>>2]|0;o=f[m+4>>2]|0;if(!((o|0)>0|(o|0)==0&n>>>0>0)){m=(f[a+12>>2]|0)-k|0;p=c+4|0;f[g>>2]=f[p>>2];f[e>>2]=f[g>>2];Me(c,e,k,k+m|0)|0;m=l;k=f[m>>2]|0;q=f[m+4>>2]|0;m=a+20|0;if((q|0)>0|(q|0)==0&k>>>0>0){r=q;s=k;t=g}else{f[g>>2]=f[p>>2];f[e>>2]=f[g>>2];Me(c,e,m,m+4|0)|0;m=l;r=f[m+4>>2]|0;s=f[m>>2]|0;t=g}}else{r=o;s=n;t=g}b[h>>0]=f[i>>2];if(!((r|0)>0|(r|0)==0&s>>>0>0)){f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+1|0)|0}j=1;u=d;return j|0}function wg(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0;e=u;u=u+16|0;g=e+4|0;h=e;i=a+8|0;a=f[i>>2]|0;j=f[a+40>>2]|0;k=Lq((j|0)>-1?j:-1)|0;l=c+4|0;m=f[l>>2]|0;n=f[c>>2]|0;if((m|0)==(n|0)){Mq(k);u=e;return 1}o=d+16|0;p=d+4|0;q=k+j|0;j=0;r=n;n=a;s=a;a=m;while(1){m=f[r+(j<<2)>>2]|0;if(!(b[n+84>>0]|0))t=f[(f[n+68>>2]|0)+(m<<2)>>2]|0;else t=m;m=s+48|0;v=f[m>>2]|0;w=f[m+4>>2]|0;m=s+40|0;x=f[m>>2]|0;y=un(x|0,f[m+4>>2]|0,t|0,0)|0;m=Vn(y|0,I|0,v|0,w|0)|0;kh(k|0,(f[f[s>>2]>>2]|0)+m|0,x|0)|0;x=o;m=f[x+4>>2]|0;if((m|0)>0|(m|0)==0&(f[x>>2]|0)>>>0>0){z=r;A=a}else{f[h>>2]=f[p>>2];f[g>>2]=f[h>>2];Me(d,g,k,q)|0;z=f[c>>2]|0;A=f[l>>2]|0}x=j+1|0;if(x>>>0>=A-z>>2>>>0)break;m=f[i>>2]|0;j=x;r=z;n=m;s=m;a=A}Mq(k);u=e;return 1}function xg(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0;d=(f[b>>2]|0)*3|0;if((d|0)==-1){e=0;g=-1;f[c>>2]=g;return e|0}b=f[a+12>>2]|0;h=f[b+12>>2]|0;if((f[h+(d<<2)>>2]|0)==-1){e=0;g=d;f[c>>2]=g;return e|0}i=f[b>>2]|0;b=f[a+152>>2]|0;if((f[b+(f[i+(d<<2)>>2]<<2)>>2]|0)==-1){a=d+1|0;j=((a>>>0)%3|0|0)==0?d+-2|0:a;if((j|0)==-1){e=0;g=-1;f[c>>2]=g;return e|0}if((f[h+(j<<2)>>2]|0)==-1){e=0;g=j;f[c>>2]=g;return e|0}if((f[b+(f[i+(j<<2)>>2]<<2)>>2]|0)==-1){a=j+1|0;k=((a>>>0)%3|0|0)==0?j+-2|0:a;if((k|0)==-1){e=0;g=-1;f[c>>2]=g;return e|0}if((f[h+(k<<2)>>2]|0)==-1){e=0;g=k;f[c>>2]=g;return e|0}if((f[b+(f[i+(k<<2)>>2]<<2)>>2]|0)==-1){i=k+1|0;e=1;g=((i>>>0)%3|0|0)==0?k+-2|0:i;f[c>>2]=g;return e|0}else l=k}else l=j}else l=d;while(1){d=(((l>>>0)%3|0|0)==0?2:-1)+l|0;if((d|0)==-1)break;j=f[h+(d<<2)>>2]|0;if((j|0)==-1)break;d=j+(((j>>>0)%3|0|0)==0?2:-1)|0;if((d|0)==-1)break;else l=d}e=0;g=(((l>>>0)%3|0|0)==0?2:-1)+l|0;f[c>>2]=g;return e|0}function yg(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;e=a+4|0;g=f[e>>2]|0;if(!g){f[c>>2]=e;h=e;return h|0}e=b[d+11>>0]|0;i=e<<24>>24<0;j=i?f[d+4>>2]|0:e&255;e=i?f[d>>2]|0:d;d=a+4|0;a=g;while(1){g=a+16|0;i=b[g+11>>0]|0;k=i<<24>>24<0;l=k?f[a+20>>2]|0:i&255;i=l>>>0<j>>>0;m=i?l:j;if((m|0)!=0?(n=Vk(e,k?f[g>>2]|0:g,m)|0,(n|0)!=0):0)if((n|0)<0)o=8;else o=10;else if(j>>>0<l>>>0)o=8;else o=10;if((o|0)==8){o=0;n=f[a>>2]|0;if(!n){o=9;break}else{p=a;q=n}}else if((o|0)==10){o=0;n=j>>>0<l>>>0?j:l;if((n|0)!=0?(l=Vk(k?f[g>>2]|0:g,e,n)|0,(l|0)!=0):0){if((l|0)>=0){o=16;break}}else o=12;if((o|0)==12?(o=0,!i):0){o=16;break}r=a+4|0;i=f[r>>2]|0;if(!i){o=15;break}else{p=r;q=i}}d=p;a=q}if((o|0)==9){f[c>>2]=a;h=a;return h|0}else if((o|0)==15){f[c>>2]=a;h=r;return h|0}else if((o|0)==16){f[c>>2]=a;h=d;return h|0}return 0}function zg(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0;d=u;u=u+32|0;e=d+24|0;g=d+16|0;h=d+8|0;i=d;j=a+4|0;k=f[j>>2]|0;l=f[b>>2]|0;m=f[b+4>>2]|0;b=f[c>>2]|0;n=f[c+4>>2]|0;c=b-l<<3;f[j>>2]=k-m+n+c;j=(f[a>>2]|0)+(k>>>5<<2)|0;a=k&31;k=j;if((m|0)!=(a|0)){f[e>>2]=l;f[e+4>>2]=m;f[g>>2]=b;f[g+4>>2]=n;f[h>>2]=k;f[h+4>>2]=a;xe(i,e,g,h);u=d;return}h=n-m+c|0;c=l;if((h|0)>0){if(!m){o=h;p=j;q=0;r=l;s=c}else{l=32-m|0;n=(h|0)<(l|0)?h:l;g=-1>>>(l-n|0)&-1<<m;f[j>>2]=f[j>>2]&~g|f[c>>2]&g;g=n+m|0;l=c+4|0;o=h-n|0;p=j+(g>>>5<<2)|0;q=g&31;r=l;s=l}l=(o|0)/32|0;im(p|0,r|0,l<<2|0)|0;r=o-(l<<5)|0;o=p+(l<<2)|0;p=o;if((r|0)>0){g=-1>>>(32-r|0);f[o>>2]=f[o>>2]&~g|f[s+(l<<2)>>2]&g;t=r;v=p}else{t=q;v=p}}else{t=m;v=k}f[i>>2]=v;f[i+4>>2]=t;u=d;return}function Ag(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0;c=a+8|0;d=f[c>>2]|0;e=a+12|0;g=f[e>>2]|0;h=g;do if((d|0)==(g|0)){i=a+4|0;j=f[i>>2]|0;k=f[a>>2]|0;l=k;if(j>>>0>k>>>0){m=j;n=((m-l>>2)+1|0)/-2|0;o=j+(n<<2)|0;p=d-m|0;m=p>>2;if(!m)q=j;else{im(o|0,j|0,p|0)|0;q=f[i>>2]|0}p=o+(m<<2)|0;f[c>>2]=p;f[i>>2]=q+(n<<2);r=p;break}p=h-l>>1;l=(p|0)==0?1:p;if(l>>>0>1073741823){p=ra(8)|0;Oo(p,16035);f[p>>2]=7256;va(p|0,1112,110)}p=ln(l<<2)|0;n=p;m=p+(l>>>2<<2)|0;o=m;s=p+(l<<2)|0;if((j|0)==(d|0)){t=o;u=k}else{k=m;m=o;l=j;do{f[k>>2]=f[l>>2];k=m+4|0;m=k;l=l+4|0}while((l|0)!=(d|0));t=m;u=f[a>>2]|0}f[a>>2]=n;f[i>>2]=o;f[c>>2]=t;f[e>>2]=s;if(!u)r=t;else{Oq(u);r=f[c>>2]|0}}else r=d;while(0);f[r>>2]=f[b>>2];f[c>>2]=(f[c>>2]|0)+4;return}function Bg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=u;u=u+16|0;d=c+8|0;e=c+4|0;g=c;h=a+12|0;i=a+4|0;j=f[i>>2]|0;if((j|0)==(f[a+8>>2]|0)){Ri(a,h);k=f[i>>2]|0}else{f[j>>2]=f[h>>2];l=j+4|0;f[i>>2]=l;k=l}l=f[a>>2]|0;f[g>>2]=k-l;k=b+16|0;j=k;m=f[j+4>>2]|0;if(!((m|0)>0|(m|0)==0&(f[j>>2]|0)>>>0>0)){f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;j=f[a>>2]|0;m=f[g>>2]|0;g=k;k=f[g+4>>2]|0;if((k|0)>0|(k|0)==0&(f[g>>2]|0)>>>0>0){n=j;o=e}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,j,j+m|0)|0;n=f[a>>2]|0;o=e}}else{n=l;o=e}e=f[i>>2]|0;if((e|0)==(n|0)){f[h>>2]=0;p=a+16|0;f[p>>2]=0;u=c;return}f[i>>2]=e+(~((e+-4-n|0)>>>2)<<2);f[h>>2]=0;p=a+16|0;f[p>>2]=0;u=c;return}function Cg(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;e=c;g=d-e|0;h=a+8|0;i=f[h>>2]|0;j=f[a>>2]|0;k=j;if(g>>>0>(i-j|0)>>>0){if(!j)l=i;else{i=a+4|0;if((f[i>>2]|0)!=(k|0))f[i>>2]=k;Oq(k);f[h>>2]=0;f[i>>2]=0;f[a>>2]=0;l=0}if((g|0)<0)aq(a);i=l<<1;m=l>>>0<1073741823?(i>>>0<g>>>0?g:i):2147483647;if((m|0)<0)aq(a);i=ln(m)|0;l=a+4|0;f[l>>2]=i;f[a>>2]=i;f[h>>2]=i+m;if((c|0)==(d|0))return;else{n=c;o=i}do{b[o>>0]=b[n>>0]|0;n=n+1|0;o=(f[l>>2]|0)+1|0;f[l>>2]=o}while((n|0)!=(d|0));return}else{n=a+4|0;a=(f[n>>2]|0)-j|0;j=g>>>0>a>>>0;g=c+a|0;a=j?g:d;o=a-e|0;if(o|0)im(k|0,c|0,o|0)|0;c=k+o|0;if(!j){if((f[n>>2]|0)==(c|0))return;f[n>>2]=c;return}if((a|0)==(d|0))return;a=g;g=f[n>>2]|0;do{b[g>>0]=b[a>>0]|0;a=a+1|0;g=(f[n>>2]|0)+1|0;f[n>>2]=g}while((a|0)!=(d|0));return}}function Dg(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=u;u=u+16|0;d=c;if(b[a+352>>0]|0){u=c;return 1}e=a+8|0;g=f[e>>2]|0;h=(f[g+12>>2]|0)-(f[g+8>>2]|0)|0;g=h>>2;i=a+172|0;Gi(i,g+-1|0);if(!((g|0)!=1&(h|0)>0)){u=c;return 1}h=a+12|0;a=0;j=0;while(1){k=f[(f[(f[e>>2]|0)+8>>2]|0)+(a<<2)>>2]|0;if(!(f[k+56>>2]|0))l=j;else{m=f[i>>2]|0;f[m+(j*136|0)>>2]=a;n=f[m+(j*136|0)+104>>2]|0;o=m+(j*136|0)+108|0;p=f[o>>2]|0;if((p|0)!=(n|0))f[o>>2]=p+(~((p+-4-n|0)>>>2)<<2);n=f[h>>2]|0;gk(m+(j*136|0)+104|0,(f[n+4>>2]|0)-(f[n>>2]|0)>>2);n=(f[i>>2]|0)+(j*136|0)+116|0;m=f[h>>2]|0;p=(f[m+4>>2]|0)-(f[m>>2]|0)>>2;f[d>>2]=-1;hg(n,p,d);p=f[i>>2]|0;f[p+(j*136|0)+128>>2]=0;Gc(p+(j*136|0)+4|0,f[e>>2]|0,f[h>>2]|0,k)|0;l=j+1|0}a=a+1|0;if((a|0)>=(g|0))break;else j=l}u=c;return 1}function Eg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;c=a+8|0;d=f[c>>2]|0;e=a+4|0;g=f[e>>2]|0;h=g;if(d-g>>2>>>0>=b>>>0){sj(g|0,0,b<<2|0)|0;f[e>>2]=g+(b<<2);return}i=f[a>>2]|0;j=g-i>>2;g=j+b|0;k=i;if(g>>>0>1073741823)aq(a);l=d-i|0;d=l>>1;m=l>>2>>>0<536870911?(d>>>0<g>>>0?g:d):1073741823;do if(m)if(m>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}else{n=ln(m<<2)|0;break}else n=0;while(0);d=n+(j<<2)|0;sj(d|0,0,b<<2|0)|0;b=d;j=n+(m<<2)|0;m=n+(g<<2)|0;if((h|0)==(k|0)){o=b;p=i;q=h}else{i=h;h=b;b=d;do{i=i+-4|0;d=f[i>>2]|0;f[i>>2]=0;f[b+-4>>2]=d;b=h+-4|0;h=b}while((i|0)!=(k|0));o=h;p=f[a>>2]|0;q=f[e>>2]|0}f[a>>2]=o;f[e>>2]=m;f[c>>2]=j;j=p;if((q|0)!=(j|0)){c=q;do{c=c+-4|0;q=f[c>>2]|0;f[c>>2]=0;if(q|0)Va[f[(f[q>>2]|0)+4>>2]&127](q)}while((c|0)!=(j|0))}if(!p)return;Oq(p);return}function Fg(a,c,d,e,g,h){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=$(h);var i=0,j=0,k=0,l=0,m=0,n=0;i=u;u=u+16|0;j=i;k=i+4|0;f[j>>2]=c;c=ln(32)|0;f[k>>2]=c;f[k+8>>2]=-2147483616;f[k+4>>2]=17;l=c;m=14495;n=l+17|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[c+17>>0]=0;Xj(Hd(a,j)|0,k,d);if((b[k+11>>0]|0)<0)Oq(f[k>>2]|0);d=ln(32)|0;f[k>>2]=d;f[k+8>>2]=-2147483616;f[k+4>>2]=19;l=d;m=14438;n=l+19|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[d+19>>0]=0;si(Hd(a,j)|0,k,g,e);if((b[k+11>>0]|0)<0)Oq(f[k>>2]|0);e=ln(32)|0;f[k>>2]=e;f[k+8>>2]=-2147483616;f[k+4>>2]=18;l=e;m=14458;n=l+18|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[e+18>>0]=0;Tj(Hd(a,j)|0,k,h);if((b[k+11>>0]|0)>=0){u=i;return}Oq(f[k>>2]|0);u=i;return}function Gg(a){a=a|0;tk(a);tk(a+32|0);tk(a+64|0);tk(a+96|0);tk(a+128|0);tk(a+160|0);tk(a+192|0);tk(a+224|0);tk(a+256|0);tk(a+288|0);tk(a+320|0);tk(a+352|0);tk(a+384|0);tk(a+416|0);tk(a+448|0);tk(a+480|0);tk(a+512|0);tk(a+544|0);tk(a+576|0);tk(a+608|0);tk(a+640|0);tk(a+672|0);tk(a+704|0);tk(a+736|0);tk(a+768|0);tk(a+800|0);tk(a+832|0);tk(a+864|0);tk(a+896|0);tk(a+928|0);tk(a+960|0);tk(a+992|0);tk(a+1024|0);return}function Hg(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;c=u;u=u+16|0;d=c;if(b[a+288>>0]|0){u=c;return 1}e=a+8|0;g=f[e>>2]|0;h=(f[g+12>>2]|0)-(f[g+8>>2]|0)|0;g=h>>2;i=a+172|0;Gi(i,g+-1|0);if(!((g|0)!=1&(h|0)>0)){u=c;return 1}h=a+12|0;a=0;j=0;while(1){k=f[(f[(f[e>>2]|0)+8>>2]|0)+(a<<2)>>2]|0;if(!(f[k+56>>2]|0))l=j;else{m=f[i>>2]|0;f[m+(j*136|0)>>2]=a;n=f[m+(j*136|0)+104>>2]|0;o=m+(j*136|0)+108|0;p=f[o>>2]|0;if((p|0)!=(n|0))f[o>>2]=p+(~((p+-4-n|0)>>>2)<<2);n=f[h>>2]|0;gk(m+(j*136|0)+104|0,(f[n+4>>2]|0)-(f[n>>2]|0)>>2);n=(f[i>>2]|0)+(j*136|0)+116|0;m=f[h>>2]|0;p=(f[m+4>>2]|0)-(f[m>>2]|0)>>2;f[d>>2]=-1;hg(n,p,d);p=f[i>>2]|0;f[p+(j*136|0)+128>>2]=0;Gc(p+(j*136|0)+4|0,f[e>>2]|0,f[h>>2]|0,k)|0;l=j+1|0}a=a+1|0;if((a|0)>=(g|0))break;else j=l}u=c;return 1}function Ig(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;d=c;e=b;g=d-e|0;h=g>>2;i=a+8|0;j=f[i>>2]|0;k=f[a>>2]|0;l=k;if(h>>>0<=j-k>>2>>>0){m=a+4|0;n=(f[m>>2]|0)-k>>2;o=h>>>0>n>>>0;p=o?b+(n<<2)|0:c;c=p;n=c-e|0;e=n>>2;if(e|0)im(k|0,b|0,n|0)|0;n=l+(e<<2)|0;if(o){o=d-c|0;if((o|0)<=0)return;kh(f[m>>2]|0,p|0,o|0)|0;f[m>>2]=(f[m>>2]|0)+(o>>>2<<2);return}else{o=f[m>>2]|0;if((o|0)==(n|0))return;f[m>>2]=o+(~((o+-4-n|0)>>>2)<<2);return}}n=k;if(!k)q=j;else{j=a+4|0;o=f[j>>2]|0;if((o|0)!=(l|0))f[j>>2]=o+(~((o+-4-k|0)>>>2)<<2);Oq(n);f[i>>2]=0;f[j>>2]=0;f[a>>2]=0;q=0}if(h>>>0>1073741823)aq(a);j=q>>1;n=q>>2>>>0<536870911?(j>>>0<h>>>0?h:j):1073741823;if(n>>>0>1073741823)aq(a);j=ln(n<<2)|0;h=a+4|0;f[h>>2]=j;f[a>>2]=j;f[i>>2]=j+(n<<2);if((g|0)<=0)return;kh(j|0,b|0,g|0)|0;f[h>>2]=j+(g>>>2<<2);return}function Jg(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0.0,p=0,q=0.0,r=0.0,s=0.0,t=0,v=0.0;e=u;u=u+16|0;g=e;h=c+1|0;f[g>>2]=0;i=g+4|0;f[i>>2]=0;f[g+8>>2]=0;do if(h)if(h>>>0>1073741823)aq(g);else{j=ln(h<<2)|0;f[g>>2]=j;k=j+(h<<2)|0;f[g+8>>2]=k;sj(j|0,0,(c<<2)+4|0)|0;f[i>>2]=k;l=j;m=k;n=j;break}else{l=0;m=0;n=0}while(0);if((b|0)>0){g=0;do{j=l+(f[a+(g<<2)>>2]<<2)|0;f[j>>2]=(f[j>>2]|0)+1;g=g+1|0}while((g|0)!=(b|0))}o=+(b|0);if((c|0)<0){p=0;q=0.0}else{c=0;r=0.0;b=0;while(1){g=f[l+(b<<2)>>2]|0;s=+(g|0);if((g|0)>0){t=c+1|0;v=r+ +Zg(s/o)*s}else{t=c;v=r}b=b+1|0;if((b|0)==(h|0)){p=t;q=v;break}else{c=t;r=v}}}if(d|0)f[d>>2]=p;v=-q;p=~~v>>>0;d=+K(v)>=1.0?(v>0.0?~~+Y(+J(v/4294967296.0),4294967295.0)>>>0:~~+W((v-+(~~v>>>0))/4294967296.0)>>>0):0;if(!l){I=d;u=e;return p|0}if((m|0)!=(l|0))f[i>>2]=m+(~((m+-4-l|0)>>>2)<<2);Oq(n);I=d;u=e;return p|0}function Kg(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;e=u;u=u+16|0;g=e+4|0;h=e;i=ln(32)|0;f[a>>2]=i;f[a+4>>2]=c+4;c=a+8|0;b[c>>0]=0;f[i+16>>2]=f[d>>2];a=i+20|0;f[i+24>>2]=0;f[i+28>>2]=0;j=i+24|0;f[a>>2]=j;i=f[d+4>>2]|0;k=d+8|0;if((i|0)==(k|0)){b[c>>0]=1;u=e;return}d=j;j=i;while(1){i=j+16|0;f[h>>2]=d;f[g>>2]=f[h>>2];ph(a,g,i,i)|0;i=f[j+4>>2]|0;if(!i){l=j+8|0;m=f[l>>2]|0;if((f[m>>2]|0)==(j|0))n=m;else{m=l;do{l=f[m>>2]|0;m=l+8|0;o=f[m>>2]|0}while((f[o>>2]|0)!=(l|0));n=o}}else{m=i;while(1){o=f[m>>2]|0;if(!o)break;else m=o}n=m}if((n|0)==(k|0))break;else j=n}b[c>>0]=1;u=e;return}function Lg(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0;d=u;u=u+16|0;e=d;f[e>>2]=b;g=a+8|0;if(((f[a+12>>2]|0)-(f[g>>2]|0)>>2|0)<=(b|0))Bh(g,b+1|0);h=f[(f[c>>2]|0)+56>>2]|0;do if((h|0)<5){i=a+20+(h*12|0)+4|0;j=f[i>>2]|0;if((j|0)==(f[a+20+(h*12|0)+8>>2]|0)){Ri(a+20+(h*12|0)|0,e);break}else{f[j>>2]=b;f[i>>2]=j+4;break}}while(0);b=f[c>>2]|0;h=f[e>>2]|0;f[b+60>>2]=h;e=(f[g>>2]|0)+(h<<2)|0;f[c>>2]=0;c=f[e>>2]|0;f[e>>2]=b;if(!c){u=d;return}b=c+88|0;e=f[b>>2]|0;f[b>>2]=0;if(e|0){b=f[e+8>>2]|0;if(b|0){h=e+12|0;if((f[h>>2]|0)!=(b|0))f[h>>2]=b;Oq(b)}Oq(e)}e=f[c+68>>2]|0;if(e|0){b=c+72|0;h=f[b>>2]|0;if((h|0)!=(e|0))f[b>>2]=h+(~((h+-4-e|0)>>>2)<<2);Oq(e)}e=c+64|0;h=f[e>>2]|0;f[e>>2]=0;if(h|0){e=f[h>>2]|0;if(e|0){b=h+4|0;if((f[b>>2]|0)!=(e|0))f[b>>2]=e;Oq(e)}Oq(h)}Oq(c);u=d;return}function Mg(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0;b=u;u=u+16|0;c=b+4|0;d=b;e=a+8|0;g=f[e>>2]|0;gk(f[a+4>>2]|0,(f[g+56>>2]|0)-(f[g+52>>2]|0)>>2);g=a+84|0;a=f[g>>2]|0;if(!a){h=f[(f[e>>2]|0)+64>>2]|0;i=(f[h+4>>2]|0)-(f[h>>2]|0)>>2;h=(i>>>0)/3|0;if(i>>>0<=2){u=b;return 1}i=0;do{f[d>>2]=i*3;f[c>>2]=f[d>>2];Zb(e,c);i=i+1|0}while((i|0)<(h|0));u=b;return 1}else{h=f[a>>2]|0;if((f[a+4>>2]|0)==(h|0)){u=b;return 1}a=0;i=h;do{f[d>>2]=f[i+(a<<2)>>2];f[c>>2]=f[d>>2];Zb(e,c);a=a+1|0;h=f[g>>2]|0;i=f[h>>2]|0}while(a>>>0<(f[h+4>>2]|0)-i>>2>>>0);u=b;return 1}return 0}function Ng(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0;d=u;u=u+48|0;e=d+16|0;g=d;h=d+32|0;i=a+28|0;j=f[i>>2]|0;f[h>>2]=j;k=a+20|0;l=(f[k>>2]|0)-j|0;f[h+4>>2]=l;f[h+8>>2]=b;f[h+12>>2]=c;b=l+c|0;l=a+60|0;f[g>>2]=f[l>>2];f[g+4>>2]=h;f[g+8>>2]=2;j=to(Aa(146,g|0)|0)|0;a:do if((b|0)!=(j|0)){g=2;m=b;n=h;o=j;while(1){if((o|0)<0)break;m=m-o|0;p=f[n+4>>2]|0;q=o>>>0>p>>>0;r=q?n+8|0:n;s=g+(q<<31>>31)|0;t=o-(q?p:0)|0;f[r>>2]=(f[r>>2]|0)+t;p=r+4|0;f[p>>2]=(f[p>>2]|0)-t;f[e>>2]=f[l>>2];f[e+4>>2]=r;f[e+8>>2]=s;o=to(Aa(146,e|0)|0)|0;if((m|0)==(o|0)){v=3;break a}else{g=s;n=r}}f[a+16>>2]=0;f[i>>2]=0;f[k>>2]=0;f[a>>2]=f[a>>2]|32;if((g|0)==2)w=0;else w=c-(f[n+4>>2]|0)|0}else v=3;while(0);if((v|0)==3){v=f[a+44>>2]|0;f[a+16>>2]=v+(f[a+48>>2]|0);a=v;f[i>>2]=a;f[k>>2]=a;w=c}u=d;return w|0}function Og(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0;f[a>>2]=6192;b=f[a+68>>2]|0;if(b|0){c=a+72|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+56>>2]|0;if(b|0){d=a+60|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+44>>2]|0;if(b|0){c=a+48|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+32>>2]|0;if(b|0){d=a+36|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+20>>2]|0;if(b|0){c=a+24|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}hi(a+8|0);b=a+4|0;a=f[b>>2]|0;f[b>>2]=0;if(!a)return;b=a+40|0;d=f[b>>2]|0;if(d|0){c=a+44|0;e=f[c>>2]|0;if((e|0)==(d|0))g=d;else{h=e;do{e=h+-4|0;f[c>>2]=e;i=f[e>>2]|0;f[e>>2]=0;if(i|0){bj(i);Oq(i)}h=f[c>>2]|0}while((h|0)!=(d|0));g=f[b>>2]|0}Oq(g)}bj(a);Oq(a);return}function Pg(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0;c=a+12|0;d=f[a>>2]|0;e=a+8|0;g=f[e>>2]|0;h=(g|0)==-1;if(!(b[c>>0]|0)){do if(((!h?(i=(((g>>>0)%3|0|0)==0?2:-1)+g|0,(i|0)!=-1):0)?(f[(f[d>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)==0:0)?(j=f[(f[(f[d+64>>2]|0)+12>>2]|0)+(i<<2)>>2]|0,(j|0)!=-1):0)if(!((j>>>0)%3|0)){k=j+2|0;break}else{k=j+-1|0;break}else k=-1;while(0);f[e>>2]=k;return}k=g+1|0;if(((!h?(h=((k>>>0)%3|0|0)==0?g+-2|0:k,(h|0)!=-1):0)?(f[(f[d>>2]|0)+(h>>>5<<2)>>2]&1<<(h&31)|0)==0:0)?(k=f[(f[(f[d+64>>2]|0)+12>>2]|0)+(h<<2)>>2]|0,h=k+1|0,(k|0)!=-1):0){g=((h>>>0)%3|0|0)==0?k+-2|0:h;f[e>>2]=g;if((g|0)!=-1){if((g|0)!=(f[a+4>>2]|0))return;f[e>>2]=-1;return}}else f[e>>2]=-1;g=f[a+4>>2]|0;do if((((g|0)!=-1?(a=(((g>>>0)%3|0|0)==0?2:-1)+g|0,(a|0)!=-1):0)?(f[(f[d>>2]|0)+(a>>>5<<2)>>2]&1<<(a&31)|0)==0:0)?(h=f[(f[(f[d+64>>2]|0)+12>>2]|0)+(a<<2)>>2]|0,(h|0)!=-1):0)if(!((h>>>0)%3|0)){l=h+2|0;break}else{l=h+-1|0;break}else l=-1;while(0);f[e>>2]=l;b[c>>0]=0;return}function Qg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;c=a+4|0;d=f[a>>2]|0;e=(f[c>>2]|0)-d>>2;g=e+1|0;if(g>>>0>1073741823)aq(a);h=a+8|0;i=(f[h>>2]|0)-d|0;d=i>>1;j=i>>2>>>0<536870911?(d>>>0<g>>>0?g:d):1073741823;do if(j)if(j>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}else{k=ln(j<<2)|0;break}else k=0;while(0);d=k+(e<<2)|0;e=d;g=k+(j<<2)|0;j=f[b>>2]|0;f[b>>2]=0;f[d>>2]=j;j=d+4|0;b=f[a>>2]|0;k=f[c>>2]|0;if((k|0)==(b|0)){l=e;m=b;n=b}else{i=k;k=e;e=d;do{i=i+-4|0;d=f[i>>2]|0;f[i>>2]=0;f[e+-4>>2]=d;e=k+-4|0;k=e}while((i|0)!=(b|0));l=k;m=f[a>>2]|0;n=f[c>>2]|0}f[a>>2]=l;f[c>>2]=j;f[h>>2]=g;g=m;if((n|0)!=(g|0)){h=n;do{h=h+-4|0;n=f[h>>2]|0;f[h>>2]=0;if(n|0)Va[f[(f[n>>2]|0)+4>>2]&127](n)}while((h|0)!=(g|0))}if(!m)return;Oq(m);return}function Rg(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=a+4|0;a=f[d>>2]|0;do if(a|0){e=b[c+11>>0]|0;g=e<<24>>24<0;h=g?f[c+4>>2]|0:e&255;e=g?f[c>>2]|0:c;g=d;i=a;a:while(1){j=i;while(1){k=j+16|0;l=b[k+11>>0]|0;m=l<<24>>24<0;n=m?f[j+20>>2]|0:l&255;l=h>>>0<n>>>0?h:n;if((l|0)!=0?(o=Vk(m?f[k>>2]|0:k,e,l)|0,(o|0)!=0):0){if((o|0)>=0)break}else p=6;if((p|0)==6?(p=0,n>>>0>=h>>>0):0)break;n=f[j+4>>2]|0;if(!n){q=g;break a}else j=n}i=f[j>>2]|0;if(!i){q=j;break}else g=j}if((q|0)!=(d|0)){g=q+16|0;i=b[g+11>>0]|0;n=i<<24>>24<0;o=n?f[q+20>>2]|0:i&255;i=o>>>0<h>>>0?o:h;if(i|0?(l=Vk(e,n?f[g>>2]|0:g,i)|0,l|0):0){if((l|0)<0)break;else r=q;return r|0}if(h>>>0>=o>>>0){r=q;return r|0}}}while(0);r=d;return r|0}function Sg(a,b){a=a|0;b=b|0;var c=0,d=0,e=0;c=a+8|0;f[c>>2]=f[b>>2];fg(a+12|0,b+4|0)|0;d=a+44|0;e=b+36|0;f[d>>2]=f[e>>2];f[d+4>>2]=f[e+4>>2];f[d+8>>2]=f[e+8>>2];f[d+12>>2]=f[e+12>>2];if((c|0)==(b|0)){f[a+96>>2]=f[b+88>>2];return}else{ng(a+60|0,f[b+52>>2]|0,f[b+56>>2]|0);ng(a+72|0,f[b+64>>2]|0,f[b+68>>2]|0);ng(a+84|0,f[b+76>>2]|0,f[b+80>>2]|0);f[a+96>>2]=f[b+88>>2];Ig(a+100|0,f[b+92>>2]|0,f[b+96>>2]|0);return}}function Tg(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0;d=a+8|0;e=f[d>>2]|0;g=a+4|0;h=f[g>>2]|0;if(((e-h|0)/12|0)>>>0>=b>>>0){i=b;j=h;do{f[j>>2]=f[c>>2];f[j+4>>2]=f[c+4>>2];f[j+8>>2]=f[c+8>>2];j=(f[g>>2]|0)+12|0;f[g>>2]=j;i=i+-1|0}while((i|0)!=0);return}i=f[a>>2]|0;j=(h-i|0)/12|0;h=j+b|0;if(h>>>0>357913941)aq(a);k=(e-i|0)/12|0;i=k<<1;e=k>>>0<178956970?(i>>>0<h>>>0?h:i):357913941;do if(e)if(e>>>0>357913941){i=ra(8)|0;Oo(i,16035);f[i>>2]=7256;va(i|0,1112,110)}else{l=ln(e*12|0)|0;break}else l=0;while(0);i=l+(j*12|0)|0;j=l+(e*12|0)|0;e=b;b=i;l=i;do{f[b>>2]=f[c>>2];f[b+4>>2]=f[c+4>>2];f[b+8>>2]=f[c+8>>2];b=l+12|0;l=b;e=e+-1|0}while((e|0)!=0);e=f[a>>2]|0;b=(f[g>>2]|0)-e|0;c=i+(((b|0)/-12|0)*12|0)|0;if((b|0)>0)kh(c|0,e|0,b|0)|0;f[a>>2]=c;f[g>>2]=l;f[d>>2]=j;if(!e)return;Oq(e);return}function Ug(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;c=a+4|0;d=f[a>>2]|0;e=(f[c>>2]|0)-d>>2;g=e+1|0;if(g>>>0>1073741823)aq(a);h=a+8|0;i=(f[h>>2]|0)-d|0;d=i>>1;j=i>>2>>>0<536870911?(d>>>0<g>>>0?g:d):1073741823;do if(j)if(j>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}else{k=ln(j<<2)|0;break}else k=0;while(0);d=k+(e<<2)|0;e=d;g=k+(j<<2)|0;j=f[b>>2]|0;f[b>>2]=0;f[d>>2]=j;j=d+4|0;b=f[a>>2]|0;k=f[c>>2]|0;if((k|0)==(b|0)){l=e;m=b;n=b}else{i=k;k=e;e=d;do{i=i+-4|0;d=f[i>>2]|0;f[i>>2]=0;f[e+-4>>2]=d;e=k+-4|0;k=e}while((i|0)!=(b|0));l=k;m=f[a>>2]|0;n=f[c>>2]|0}f[a>>2]=l;f[c>>2]=j;f[h>>2]=g;g=m;if((n|0)!=(g|0)){h=n;do{h=h+-4|0;n=f[h>>2]|0;f[h>>2]=0;if(n|0){bj(n);Oq(n)}}while((h|0)!=(g|0))}if(!m)return;Oq(m);return}function Vg(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;e=f[b>>2]|0;g=f[a>>2]|0;h=f[d>>2]|0;d=f[h>>2]|0;i=(f[h+4>>2]|0)-d>>3;if(i>>>0<=e>>>0)aq(h);j=d;if(i>>>0<=g>>>0)aq(h);d=f[j+(e<<3)>>2]|0;k=f[c>>2]|0;if(i>>>0<=k>>>0)aq(h);l=j+(g<<3)|0;m=(f[j+(k<<3)>>2]|0)>>>0<d>>>0;if(d>>>0<(f[l>>2]|0)>>>0){if(m){f[a>>2]=k;f[c>>2]=g;n=1;return n|0}f[a>>2]=e;f[b>>2]=g;d=f[c>>2]|0;if(i>>>0<=d>>>0)aq(h);if((f[j+(d<<3)>>2]|0)>>>0>=(f[l>>2]|0)>>>0){n=1;return n|0}f[b>>2]=d;f[c>>2]=g;n=2;return n|0}if(!m){n=0;return n|0}f[b>>2]=k;f[c>>2]=e;e=f[b>>2]|0;c=f[a>>2]|0;if(i>>>0<=e>>>0)aq(h);if(i>>>0<=c>>>0)aq(h);if((f[j+(e<<3)>>2]|0)>>>0>=(f[j+(c<<3)>>2]|0)>>>0){n=1;return n|0}f[a>>2]=e;f[b>>2]=c;n=2;return n|0}function Wg(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0;b=u;u=u+16|0;c=b+4|0;d=b;e=a+8|0;g=f[e>>2]|0;gk(f[a+4>>2]|0,(f[g+28>>2]|0)-(f[g+24>>2]|0)>>2);g=a+84|0;a=f[g>>2]|0;if(!a){h=f[e>>2]|0;i=(f[h+4>>2]|0)-(f[h>>2]|0)>>2;h=(i>>>0)/3|0;if(i>>>0<=2){u=b;return 1}i=0;do{f[d>>2]=i*3;f[c>>2]=f[d>>2];dc(e,c);i=i+1|0}while((i|0)<(h|0));u=b;return 1}else{h=f[a>>2]|0;if((f[a+4>>2]|0)==(h|0)){u=b;return 1}a=0;i=h;do{f[d>>2]=f[i+(a<<2)>>2];f[c>>2]=f[d>>2];dc(e,c);a=a+1|0;h=f[g>>2]|0;i=f[h>>2]|0}while(a>>>0<(f[h+4>>2]|0)-i>>2>>>0);u=b;return 1}return 0}function Xg(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;a=u;u=u+16|0;e=a;if(!b){g=0;u=a;return g|0}h=b+96|0;i=b+100|0;f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;b=f[i>>2]|0;j=f[h>>2]|0;k=(b-j|0)/12|0;l=j;j=b;if(k>>>0>=c>>>0){if(k>>>0>c>>>0?(b=l+(c*12|0)|0,(b|0)!=(j|0)):0)f[i>>2]=j+(~(((j+-12-b|0)>>>0)/12|0)*12|0);if(!c){g=1;u=a;return g|0}}else Tg(h,c-k|0,e);k=0;b=f[h>>2]|0;while(1){j=k*3|0;l=f[d+(j<<2)>>2]|0;m=f[d+(j+1<<2)>>2]|0;n=f[d+(j+2<<2)>>2]|0;j=((f[i>>2]|0)-b|0)/12|0;o=k;k=k+1|0;if(o>>>0<j>>>0){p=b;q=b}else{f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;Tg(h,k-j|0,e);j=f[h>>2]|0;p=j;q=j}f[p+(o*12|0)>>2]=l;f[p+(o*12|0)+4>>2]=m;f[p+(o*12|0)+8>>2]=n;if((k|0)==(c|0)){g=1;break}else b=q}u=a;return g|0}function Yg(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0;e=u;u=u+80|0;g=e+36|0;h=e;ao(g,c);Ke(h,b,c);Ph(g,h);Ej(h+24|0,f[h+28>>2]|0);Oj(h+12|0,f[h+16>>2]|0);Ej(h,f[h+4>>2]|0);cj(a,g,d);Ej(g+24|0,f[g+28>>2]|0);Oj(g+12|0,f[g+16>>2]|0);Ej(g,f[g+4>>2]|0);u=e;return}function Zg(a){a=+a;var b=0,c=0,d=0,e=0.0,g=0,h=0,i=0,j=0,k=0,l=0,m=0.0,n=0.0,o=0.0,q=0.0,r=0.0,t=0.0;p[s>>3]=a;b=f[s>>2]|0;c=f[s+4>>2]|0;d=(c|0)<0;do if(d|c>>>0<1048576){if((b|0)==0&(c&2147483647|0)==0){e=-1.0/(a*a);break}if(d){e=(a-a)/0.0;break}else{p[s>>3]=a*18014398509481984.0;g=f[s+4>>2]|0;h=-1077;i=g;j=f[s>>2]|0;k=g;l=9;break}}else if(c>>>0<=2146435071)if((b|0)==0&0==0&(c|0)==1072693248)e=0.0;else{h=-1023;i=c;j=b;k=c;l=9}else e=a;while(0);if((l|0)==9){l=i+614242|0;f[s>>2]=j;f[s+4>>2]=(l&1048575)+1072079006;a=+p[s>>3]+-1.0;m=a*a*.5;n=a/(a+2.0);o=n*n;q=o*o;p[s>>3]=a-m;j=f[s+4>>2]|0;f[s>>2]=0;f[s+4>>2]=j;r=+p[s>>3];t=a-r-m+n*(m+(q*(q*(q*.15313837699209373+.22222198432149784)+.3999999999940942)+o*(q*(q*(q*.14798198605116586+.1818357216161805)+.2857142874366239)+.6666666666666735)));q=r*1.4426950407214463;o=+(h+(l>>>20)|0);m=q+o;e=m+(q+(o-m)+(t*1.4426950407214463+(t+r)*1.6751713164886512e-10))}return +e}function _g(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;d=u;u=u+16|0;e=d;g=ln(32)|0;f[e>>2]=g;f[e+8>>2]=-2147483616;f[e+4>>2]=17;h=g;i=14390;j=h+17|0;do{b[h>>0]=b[i>>0]|0;h=h+1|0;i=i+1|0}while((h|0)<(j|0));b[g+17>>0]=0;g=c+16|0;i=f[g>>2]|0;if(i){h=g;j=i;a:while(1){i=j;while(1){if((f[i+16>>2]|0)>=(a|0))break;k=f[i+4>>2]|0;if(!k){l=h;break a}else i=k}j=f[i>>2]|0;if(!j){l=i;break}else h=i}if(((l|0)!=(g|0)?(f[l+16>>2]|0)<=(a|0):0)?(a=l+20|0,(Jh(a,e)|0)!=0):0)m=a;else n=10}else n=10;if((n|0)==10)m=c;c=Hk(m,e,-1)|0;if((b[e+11>>0]|0)>=0){o=(c|0)==-1;p=c>>>0>6;q=p?-2:c;r=o?-1:q;u=d;return r|0}Oq(f[e>>2]|0);o=(c|0)==-1;p=c>>>0>6;q=p?-2:c;r=o?-1:q;u=d;return r|0}function $g(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0;d=u;u=u+16|0;e=d;g=f[c>>2]|0;f[c>>2]=0;f[e>>2]=g;Lg(a,b,e);g=f[e>>2]|0;f[e>>2]=0;if(g|0){e=g+88|0;c=f[e>>2]|0;f[e>>2]=0;if(c|0){e=f[c+8>>2]|0;if(e|0){h=c+12|0;if((f[h>>2]|0)!=(e|0))f[h>>2]=e;Oq(e)}Oq(c)}c=f[g+68>>2]|0;if(c|0){e=g+72|0;h=f[e>>2]|0;if((h|0)!=(c|0))f[e>>2]=h+(~((h+-4-c|0)>>>2)<<2);Oq(c)}c=g+64|0;h=f[c>>2]|0;f[c>>2]=0;if(h|0){c=f[h>>2]|0;if(c|0){e=h+4|0;if((f[e>>2]|0)!=(c|0))f[e>>2]=c;Oq(c)}Oq(h)}Oq(g)}g=a+84|0;h=a+88|0;a=f[h>>2]|0;c=f[g>>2]|0;e=a-c>>2;if((e|0)>(b|0)){u=d;return}i=b+1|0;b=a;if(i>>>0>e>>>0){Fh(g,i-e|0);u=d;return}if(i>>>0>=e>>>0){u=d;return}e=c+(i<<2)|0;if((e|0)==(b|0)){u=d;return}f[h>>2]=b+(~((b+-4-e|0)>>>2)<<2);u=d;return}function ah(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0;d=u;u=u+16|0;e=d;g=a+4|0;f[g>>2]=c;f[a+8>>2]=f[c+52>>2];h=f[a+184>>2]|0;i=a+188|0;j=f[i>>2]|0;if((j|0)!=(h|0))f[i>>2]=j+(~((j+-4-h|0)>>>2)<<2);h=f[c+48>>2]|0;c=ln(32)|0;f[e>>2]=c;f[e+8>>2]=-2147483616;f[e+4>>2]=19;j=c;i=15351;k=j+19|0;do{b[j>>0]=b[i>>0]|0;j=j+1|0;i=i+1|0}while((j|0)<(k|0));b[c+19>>0]=0;c=(Jh(h,e)|0)==0;if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);h=f[(f[g>>2]|0)+48>>2]|0;if(c){c=(mi(h)|0)>5&1;b[a+352>>0]=c;u=d;return 1}c=ln(32)|0;f[e>>2]=c;f[e+8>>2]=-2147483616;f[e+4>>2]=19;j=c;i=15351;k=j+19|0;do{b[j>>0]=b[i>>0]|0;j=j+1|0;i=i+1|0}while((j|0)<(k|0));b[c+19>>0]=0;c=(Yj(h,e,0)|0)&1;b[a+352>>0]=c;if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);u=d;return 1}function bh(a){a=a|0;var c=0,d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0;c=a+108|0;d=(f[a+112>>2]|0)-(f[c>>2]|0)|0;e=(d|0)/12|0;g=a+4|0;ci(e,f[(f[g>>2]|0)+44>>2]|0)|0;if(!d)return 1;d=0;a=0;while(1){i=f[c>>2]|0;j=i+(d*12|0)+4|0;ci((f[j>>2]|0)-a|0,f[(f[g>>2]|0)+44>>2]|0)|0;ci((f[j>>2]|0)-(f[i+(d*12|0)>>2]|0)|0,f[(f[g>>2]|0)+44>>2]|0)|0;d=d+1|0;if(d>>>0>=e>>>0)break;else a=f[j>>2]|0}zi(f[(f[g>>2]|0)+44>>2]|0,e,0,0)|0;a=0;do{d=f[(f[g>>2]|0)+44>>2]|0;j=d+16|0;i=f[j+4>>2]|0;if((i|0)>0|(i|0)==0&(f[j>>2]|0)>>>0>0){j=f[d+12>>2]|0;d=j+4|0;i=f[d>>2]|0;k=b[(f[c>>2]|0)+(a*12|0)+8>>0]&1;l=i>>>3;m=i&7;i=(f[j>>2]|0)+l|0;b[i>>0]=(1<<m^255)&(h[i>>0]|0);i=(f[j>>2]|0)+l|0;b[i>>0]=k<<m|(h[i>>0]|0);f[d>>2]=(f[d>>2]|0)+1}a=a+1|0}while(a>>>0<e>>>0);eg(f[(f[g>>2]|0)+44>>2]|0);return 1}function ch(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0;e=u;u=u+80|0;g=e+36|0;h=e;io(g,c);Ke(h,b,c);Ph(g,h);Ej(h+24|0,f[h+28>>2]|0);Oj(h+12|0,f[h+16>>2]|0);Ej(h,f[h+4>>2]|0);cj(a,g,d);Ej(g+24|0,f[g+28>>2]|0);Oj(g+12|0,f[g+16>>2]|0);Ej(g,f[g+4>>2]|0);u=e;return}function dh(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0;d=u;u=u+16|0;e=d;g=a+4|0;f[g>>2]=c;f[a+8>>2]=f[c+52>>2];h=f[a+184>>2]|0;i=a+188|0;j=f[i>>2]|0;if((j|0)!=(h|0))f[i>>2]=j+(~((j+-4-h|0)>>>2)<<2);h=f[c+48>>2]|0;c=ln(32)|0;f[e>>2]=c;f[e+8>>2]=-2147483616;f[e+4>>2]=19;j=c;i=15351;k=j+19|0;do{b[j>>0]=b[i>>0]|0;j=j+1|0;i=i+1|0}while((j|0)<(k|0));b[c+19>>0]=0;c=(Jh(h,e)|0)==0;if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);h=f[(f[g>>2]|0)+48>>2]|0;if(c){c=(mi(h)|0)>5&1;b[a+288>>0]=c;u=d;return 1}c=ln(32)|0;f[e>>2]=c;f[e+8>>2]=-2147483616;f[e+4>>2]=19;j=c;i=15351;k=j+19|0;do{b[j>>0]=b[i>>0]|0;j=j+1|0;i=i+1|0}while((j|0)<(k|0));b[c+19>>0]=0;c=(Yj(h,e,0)|0)&1;b[a+288>>0]=c;if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);u=d;return 1}function eh(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;g=u;u=u+32|0;h=g+16|0;i=g+8|0;j=g;k=d-e|0;d=a+8|0;if((k|0)>0){a=0-e|0;l=i+4|0;m=j+4|0;n=h+4|0;o=k;do{k=b+(o<<2)|0;p=k+(a<<2)|0;q=c+(o<<2)|0;r=f[k+4>>2]|0;s=f[p>>2]|0;t=f[p+4>>2]|0;f[i>>2]=f[k>>2];f[l>>2]=r;f[j>>2]=s;f[m>>2]=t;Od(h,d,i,j);f[q>>2]=f[h>>2];f[q+4>>2]=f[n>>2];o=o-e|0}while((o|0)>0)}o=e>>>0>1073741823?-1:e<<2;e=Lq(o)|0;sj(e|0,0,o|0)|0;o=f[b+4>>2]|0;n=f[e>>2]|0;m=f[e+4>>2]|0;f[i>>2]=f[b>>2];f[i+4>>2]=o;f[j>>2]=n;f[j+4>>2]=m;Od(h,d,i,j);f[c>>2]=f[h>>2];f[c+4>>2]=f[h+4>>2];Mq(e);u=g;return 1}function fh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;c=u;u=u+32|0;d=c+12|0;e=c;g=f[b+100>>2]|0;h=f[b+96>>2]|0;b=g-h|0;i=(b|0)/12|0;f[d>>2]=0;j=d+4|0;f[j>>2]=0;f[d+8>>2]=0;k=h;do if(b)if(i>>>0>357913941)aq(d);else{l=ln(b)|0;f[d>>2]=l;f[d+8>>2]=l+(i*12|0);sj(l|0,0,b|0)|0;f[j>>2]=l+b;m=l;break}else m=0;while(0);f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;if((g|0)!=(h|0)){h=e+4|0;g=e+8|0;b=0;do{l=k+(b*12|0)|0;f[e>>2]=f[l>>2];f[e+4>>2]=f[l+4>>2];f[e+8>>2]=f[l+8>>2];f[m+(b*12|0)>>2]=f[e>>2];f[m+(b*12|0)+4>>2]=f[h>>2];f[m+(b*12|0)+8>>2]=f[g>>2];b=b+1|0}while(b>>>0<i>>>0)}Kj(a,d);a=f[d>>2]|0;if(!a){u=c;return}d=f[j>>2]|0;if((d|0)!=(a|0))f[j>>2]=d+(~(((d+-12-a|0)>>>0)/12|0)*12|0);Oq(a);u=c;return}function gh(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0;if(c>>>0>4294967279)aq(a);d=a+11|0;e=b[d>>0]|0;g=e<<24>>24<0;if(g){h=f[a+4>>2]|0;i=(f[a+8>>2]&2147483647)+-1|0}else{h=e&255;i=10}j=h>>>0>c>>>0?h:c;c=j>>>0<11;k=c?10:(j+16&-16)+-1|0;do if((k|0)!=(i|0)){do if(c){j=f[a>>2]|0;if(g){l=0;m=j;n=a;o=13}else{Fo(a,j,(e&255)+1|0)|0;Oq(j);o=16}}else{j=k+1|0;p=ln(j)|0;if(g){l=1;m=f[a>>2]|0;n=p;o=13;break}else{Fo(p,a,(e&255)+1|0)|0;q=p;r=j;s=a+4|0;o=15;break}}while(0);if((o|0)==13){j=a+4|0;Fo(n,m,(f[j>>2]|0)+1|0)|0;Oq(m);if(l){q=n;r=k+1|0;s=j;o=15}else o=16}if((o|0)==15){f[a+8>>2]=r|-2147483648;f[s>>2]=h;f[a>>2]=q;break}else if((o|0)==16){b[d>>0]=h;break}}while(0);return}function hh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;c=f[b>>2]|0;if((c|0)==-1){d=-1;return d|0}b=f[(f[a+24>>2]|0)+(c<<2)>>2]|0;if((b|0)==-1){d=0;return d|0}c=a+12|0;a=0;e=0;g=b;a:while(1){b:do if(e){h=a+1|0;i=(((g>>>0)%3|0|0)==0?2:-1)+g|0;if((i|0)==-1){d=h;j=15;break a}k=f[(f[c>>2]|0)+(i<<2)>>2]|0;if((k|0)==-1){d=h;j=15;break a}if(!((k>>>0)%3|0)){l=k+2|0;m=h;break}else{l=k+-1|0;m=h;break}}else{h=a;k=g;while(1){i=h+1|0;n=k+1|0;o=((n>>>0)%3|0|0)==0?k+-2|0:n;if((o|0)==-1){l=b;m=i;break b}n=f[(f[c>>2]|0)+(o<<2)>>2]|0;o=n+1|0;if((n|0)==-1){l=b;m=i;break b}k=((o>>>0)%3|0|0)==0?n+-2|0:o;if((k|0)==-1){l=b;m=i;break b}if((k|0)==(b|0)){d=i;j=15;break a}else h=i}}while(0);if((l|0)==-1){d=m;j=15;break}else{a=m;e=1;g=l}}if((j|0)==15)return d|0;return 0}function ih(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;d=a+8|0;Vg(a,a+4|0,d,c)|0;e=a+12|0;if((e|0)==(b|0))return;g=f[c>>2]|0;c=f[g>>2]|0;h=(f[g+4>>2]|0)-c>>3;i=c;c=e;e=d;a:while(1){d=f[c>>2]|0;j=f[e>>2]|0;if(h>>>0<=d>>>0){k=5;break}if(h>>>0<=j>>>0){k=7;break}l=i+(d<<3)|0;if((f[l>>2]|0)>>>0<(f[i+(j<<3)>>2]|0)>>>0){m=e;n=c;o=j;while(1){f[n>>2]=o;if((m|0)==(a|0)){p=a;break}j=m+-4|0;o=f[j>>2]|0;if(h>>>0<=o>>>0){k=11;break a}if((f[l>>2]|0)>>>0>=(f[i+(o<<3)>>2]|0)>>>0){p=m;break}else{q=m;m=j;n=q}}f[p>>2]=d}n=c+4|0;if((n|0)==(b|0)){k=3;break}else{m=c;c=n;e=m}}if((k|0)==3)return;else if((k|0)==5)aq(g);else if((k|0)==7)aq(g);else if((k|0)==11)aq(g)}function jh(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0;g=Vg(a,b,c,e)|0;h=f[d>>2]|0;i=f[c>>2]|0;j=f[e>>2]|0;e=f[j>>2]|0;k=(f[j+4>>2]|0)-e>>3;if(k>>>0<=h>>>0)aq(j);l=e;if(k>>>0<=i>>>0)aq(j);if((f[l+(h<<3)>>2]|0)>>>0>=(f[l+(i<<3)>>2]|0)>>>0){m=g;return m|0}f[c>>2]=h;f[d>>2]=i;i=f[c>>2]|0;d=f[b>>2]|0;if(k>>>0<=i>>>0)aq(j);if(k>>>0<=d>>>0)aq(j);if((f[l+(i<<3)>>2]|0)>>>0>=(f[l+(d<<3)>>2]|0)>>>0){m=g+1|0;return m|0}f[b>>2]=i;f[c>>2]=d;d=f[b>>2]|0;c=f[a>>2]|0;if(k>>>0<=d>>>0)aq(j);if(k>>>0<=c>>>0)aq(j);if((f[l+(d<<3)>>2]|0)>>>0>=(f[l+(c<<3)>>2]|0)>>>0){m=g+2|0;return m|0}f[a>>2]=d;f[b>>2]=c;m=g+3|0;return m|0}function kh(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0;if((d|0)>=8192)return Da(a|0,c|0,d|0)|0;e=a|0;g=a+d|0;if((a&3)==(c&3)){while(a&3){if(!d)return e|0;b[a>>0]=b[c>>0]|0;a=a+1|0;c=c+1|0;d=d-1|0}h=g&-4|0;d=h-64|0;while((a|0)<=(d|0)){f[a>>2]=f[c>>2];f[a+4>>2]=f[c+4>>2];f[a+8>>2]=f[c+8>>2];f[a+12>>2]=f[c+12>>2];f[a+16>>2]=f[c+16>>2];f[a+20>>2]=f[c+20>>2];f[a+24>>2]=f[c+24>>2];f[a+28>>2]=f[c+28>>2];f[a+32>>2]=f[c+32>>2];f[a+36>>2]=f[c+36>>2];f[a+40>>2]=f[c+40>>2];f[a+44>>2]=f[c+44>>2];f[a+48>>2]=f[c+48>>2];f[a+52>>2]=f[c+52>>2];f[a+56>>2]=f[c+56>>2];f[a+60>>2]=f[c+60>>2];a=a+64|0;c=c+64|0}while((a|0)<(h|0)){f[a>>2]=f[c>>2];a=a+4|0;c=c+4|0}}else{h=g-4|0;while((a|0)<(h|0)){b[a>>0]=b[c>>0]|0;b[a+1>>0]=b[c+1>>0]|0;b[a+2>>0]=b[c+2>>0]|0;b[a+3>>0]=b[c+3>>0]|0;a=a+4|0;c=c+4|0}}while((a|0)<(g|0)){b[a>>0]=b[c>>0]|0;a=a+1|0;c=c+1|0}return e|0}function lh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0;c=u;u=u+16|0;d=c+4|0;e=c;f[a>>2]=1232;g=a+4|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;f[g+12>>2]=0;f[g+16>>2]=0;f[g+20>>2]=0;f[g+24>>2]=0;f[g+28>>2]=0;f[d>>2]=b;b=a+4|0;g=a+8|0;Ri(b,d);h=f[d>>2]|0;i=a+20|0;j=f[i>>2]|0;k=a+16|0;a=f[k>>2]|0;l=j-a>>2;m=a;if((h|0)<(l|0)){n=m;o=h;p=f[g>>2]|0;q=f[b>>2]|0;r=p-q|0;s=r>>2;t=s+-1|0;v=n+(o<<2)|0;f[v>>2]=t;u=c;return}a=h+1|0;f[e>>2]=-1;w=j;if(a>>>0<=l>>>0)if(a>>>0<l>>>0?(j=m+(a<<2)|0,(j|0)!=(w|0)):0){f[i>>2]=w+(~((w+-4-j|0)>>>2)<<2);x=h;y=m}else{x=h;y=m}else{Ch(k,a-l|0,e);x=f[d>>2]|0;y=f[k>>2]|0}n=y;o=x;p=f[g>>2]|0;q=f[b>>2]|0;r=p-q|0;s=r>>2;t=s+-1|0;v=n+(o<<2)|0;f[v>>2]=t;u=c;return}function mh(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0;b=a+4|0;c=f[b>>2]|0;d=(f[c+12>>2]|0)-(f[c+8>>2]|0)|0;c=d>>2;a:do if((d|0)>0){e=0;while(1){if(!(Ra[f[(f[a>>2]|0)+36>>2]&127](a,e)|0)){g=0;break}e=e+1|0;h=f[b>>2]|0;i=(f[h+12>>2]|0)-(f[h+8>>2]|0)>>2;if((e|0)>=(i|0)){j=i;break a}}return g|0}else j=c;while(0);c=a+20|0;b=a+24|0;d=f[b>>2]|0;e=f[c>>2]|0;i=d-e>>2;h=e;e=d;if(j>>>0<=i>>>0){if(j>>>0<i>>>0?(d=h+(j<<2)|0,(d|0)!=(e|0)):0)f[b>>2]=e+(~((e+-4-d|0)>>>2)<<2)}else Ci(c,j-i|0);i=f[a+12>>2]|0;j=f[a+8>>2]|0;a=j;if((i|0)==(j|0)){g=1;return g|0}d=i-j>>2;j=0;do{i=f[a+(j<<2)>>2]|0;e=f[i+8>>2]|0;b=f[i+4>>2]|0;i=b;if((e|0)!=(b|0)?(h=f[c>>2]|0,k=e-b>>2,f[h+(f[i>>2]<<2)>>2]=j,k>>>0>1):0){b=1;do{f[h+(f[i+(b<<2)>>2]<<2)>>2]=j;b=b+1|0}while(b>>>0<k>>>0)}j=j+1|0}while(j>>>0<d>>>0);g=1;return g|0}function nh(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0;d=f[c+88>>2]|0;if(!d){e=0;return e|0}if((f[d>>2]|0)!=1){e=0;return e|0}g=d+8|0;d=f[g>>2]|0;f[a+4>>2]=h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24;i=a+8|0;j=c+24|0;c=b[j>>0]|0;k=c<<24>>24;l=a+12|0;m=f[l>>2]|0;n=f[i>>2]|0;o=m-n>>2;p=n;n=m;if(o>>>0>=k>>>0)if(o>>>0>k>>>0?(m=p+(k<<2)|0,(m|0)!=(n|0)):0){f[l>>2]=n+(~((n+-4-m|0)>>>2)<<2);q=c;r=d}else{q=c;r=d}else{Ci(i,k-o|0);q=b[j>>0]|0;r=f[g>>2]|0}g=r+4|0;j=h[g>>0]|h[g+1>>0]<<8|h[g+2>>0]<<16|h[g+3>>0]<<24;if(q<<24>>24>0){g=f[i>>2]|0;i=q<<24>>24;q=j;o=4;k=0;while(1){f[g+(k<<2)>>2]=q;o=o+4|0;k=k+1|0;d=r+o|0;c=h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24;if((k|0)>=(i|0)){s=c;break}else q=c}}else s=j;f[a+20>>2]=s;e=1;return e|0}function oh(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;do if(!(fp(a,f[c+8>>2]|0,g)|0)){if(!(fp(a,f[c>>2]|0,g)|0)){h=f[a+8>>2]|0;Za[f[(f[h>>2]|0)+24>>2]&3](h,c,d,e,g);break}if((f[c+16>>2]|0)!=(d|0)?(h=c+20|0,(f[h>>2]|0)!=(d|0)):0){f[c+32>>2]=e;i=c+44|0;if((f[i>>2]|0)==4)break;j=c+52|0;b[j>>0]=0;k=c+53|0;b[k>>0]=0;l=f[a+8>>2]|0;_a[f[(f[l>>2]|0)+20>>2]&3](l,c,d,d,1,g);if(b[k>>0]|0)if(!(b[j>>0]|0)){m=3;n=11}else o=3;else{m=4;n=11}if((n|0)==11){f[h>>2]=d;h=c+40|0;f[h>>2]=(f[h>>2]|0)+1;if((f[c+36>>2]|0)==1?(f[c+24>>2]|0)==2:0){b[c+54>>0]=1;o=m}else o=m}f[i>>2]=o;break}if((e|0)==1)f[c+32>>2]=1}else Vm(0,c,d,e);while(0);return}function ph(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0;e=u;u=u+16|0;g=e+12|0;h=e+8|0;i=e;f[i>>2]=f[b>>2];f[g>>2]=f[i>>2];i=Kd(a,g,h,e+4|0,c)|0;c=f[i>>2]|0;if(c|0){j=c;u=e;return j|0}c=ln(40)|0;pj(c+16|0,d);pj(c+28|0,d+12|0);d=f[h>>2]|0;f[c>>2]=0;f[c+4>>2]=0;f[c+8>>2]=d;f[i>>2]=c;d=f[f[a>>2]>>2]|0;if(!d)k=c;else{f[a>>2]=d;k=f[i>>2]|0}Oe(f[a+4>>2]|0,k);k=a+8|0;f[k>>2]=(f[k>>2]|0)+1;j=c;u=e;return j|0}function qh(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;e=u;u=u+16|0;g=e;h=a+4|0;f[h>>2]=0;if(!c){u=e;return}i=a+8|0;j=f[i>>2]|0;k=j<<5;if(k>>>0<c>>>0){f[g>>2]=0;l=g+4|0;f[l>>2]=0;m=g+8|0;f[m>>2]=0;if((c|0)<0)aq(a);n=j<<6;j=c+31&-32;vi(g,k>>>0<1073741823?(n>>>0<j>>>0?j:n):2147483647);n=f[a>>2]|0;f[a>>2]=f[g>>2];f[g>>2]=n;g=f[h>>2]|0;f[h>>2]=c;f[l>>2]=g;g=f[i>>2]|0;f[i>>2]=f[m>>2];f[m>>2]=g;if(n|0)Oq(n);o=a}else{f[h>>2]=c;o=a}a=f[o>>2]|0;o=a;h=a;a=c>>>5;n=a<<2;if(!(b[d>>0]|0)){sj(h|0,0,n|0)|0;d=c&31;g=o+(a<<2)|0;if(!d){u=e;return}f[g>>2]=f[g>>2]&~(-1>>>(32-d|0));u=e;return}else{sj(h|0,-1,n|0)|0;n=c&31;c=o+(a<<2)|0;if(!n){u=e;return}f[c>>2]=f[c>>2]|-1>>>(32-n|0);u=e;return}}function rh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;c=u;u=u+16|0;d=c+8|0;e=c+4|0;g=c;f[g>>2]=f[a+12>>2];h=b+16|0;i=h;j=f[i>>2]|0;k=f[i+4>>2]|0;if((k|0)>0|(k|0)==0&j>>>0>0){l=k;m=j}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;j=h;l=f[j+4>>2]|0;m=f[j>>2]|0}f[g>>2]=f[a+20>>2];if((l|0)>0|(l|0)==0&m>>>0>0){n=a+88|0;ld(n,b);u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;n=a+88|0;ld(n,b);u=c;return 1}function sh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;c=u;u=u+16|0;d=c+8|0;e=c+4|0;g=c;f[g>>2]=f[a+12>>2];h=b+16|0;i=h;j=f[i>>2]|0;k=f[i+4>>2]|0;if((k|0)>0|(k|0)==0&j>>>0>0){l=k;m=j}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;j=h;l=f[j+4>>2]|0;m=f[j>>2]|0}f[g>>2]=f[a+16>>2];if((l|0)>0|(l|0)==0&m>>>0>0){n=a+108|0;ld(n,b);u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;n=a+108|0;ld(n,b);u=c;return 1}function th(a){a=a|0;var c=0,d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;c=a+32|0;d=f[a+64>>2]|0;e=(Qa[f[(f[d>>2]|0)+40>>2]&127](d)|0)+52|0;d=f[e>>2]|0;zi(c,(((f[d+100>>2]|0)-(f[d+96>>2]|0)|0)/12|0)*3|0,0,1)|0;d=a+68|0;e=f[d>>2]|0;g=(f[a+72>>2]|0)-e|0;if((g|0)<=0){eg(c);return}i=a+48|0;j=a+44|0;a=(g>>>2)+-1|0;g=e;while(1){e=f[g+(a<<2)>>2]|0;k=f[3524+(e<<2)>>2]|0;l=i;m=f[l+4>>2]|0;if((m|0)>0|(m|0)==0&(f[l>>2]|0)>>>0>0?(l=f[j>>2]|0,171>>>e&1|0):0){m=l+4|0;n=0;o=f[m>>2]|0;do{p=o>>>3;q=o&7;r=(f[l>>2]|0)+p|0;b[r>>0]=(1<<q^255)&(h[r>>0]|0);r=(f[l>>2]|0)+p|0;b[r>>0]=(e>>>n&1)<<q|(h[r>>0]|0);o=(f[m>>2]|0)+1|0;f[m>>2]=o;n=n+1|0}while((n|0)!=(k|0))}k=a+-1|0;if((k|0)<=-1)break;a=k;g=f[d>>2]|0}eg(c);return}function uh(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0;g=u;u=u+48|0;h=g;i=g+32|0;if(!c){j=0;u=g;return j|0}Gn(h);do if((dm(c,0)|0)!=-1){if(d){if(!(Qa[f[(f[c>>2]|0)+16>>2]&127](c)|0)){k=0;break}Va[f[(f[c>>2]|0)+20>>2]&127](c)}Yg(i,a,c,h);l=(f[i>>2]|0)==0;m=i+4|0;if((b[m+11>>0]|0)<0)Oq(f[m>>2]|0);if(l){l=f[h>>2]|0;m=h+4|0;rg(e,l,l+((f[m>>2]|0)-l)|0);k=(f[m>>2]|0)-(f[h>>2]|0)|0}else k=0}else k=0;while(0);e=h+12|0;i=f[e>>2]|0;f[e>>2]=0;if(i|0)Oq(i);i=f[h>>2]|0;if(i|0){e=h+4|0;if((f[e>>2]|0)!=(i|0))f[e>>2]=i;Oq(i)}j=k;u=g;return j|0}function vh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;c=u;u=u+16|0;d=c;e=f[(f[a>>2]|0)+8>>2]|0;g=a+8|0;h=a+12|0;i=(f[h>>2]|0)-(f[g>>2]|0)>>2;j=f[b>>2]|0;f[b>>2]=0;f[d>>2]=j;Xa[e&15](a,i,d);i=f[d>>2]|0;f[d>>2]=0;if(!i){k=f[h>>2]|0;l=f[g>>2]|0;m=k-l|0;n=m>>2;o=n+-1|0;u=c;return o|0}d=i+88|0;a=f[d>>2]|0;f[d>>2]=0;if(a|0){d=f[a+8>>2]|0;if(d|0){e=a+12|0;if((f[e>>2]|0)!=(d|0))f[e>>2]=d;Oq(d)}Oq(a)}a=f[i+68>>2]|0;if(a|0){d=i+72|0;e=f[d>>2]|0;if((e|0)!=(a|0))f[d>>2]=e+(~((e+-4-a|0)>>>2)<<2);Oq(a)}a=i+64|0;e=f[a>>2]|0;f[a>>2]=0;if(e|0){a=f[e>>2]|0;if(a|0){d=e+4|0;if((f[d>>2]|0)!=(a|0))f[d>>2]=a;Oq(a)}Oq(e)}Oq(i);k=f[h>>2]|0;l=f[g>>2]|0;m=k-l|0;n=m>>2;o=n+-1|0;u=c;return o|0}function wh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0;c=a+8|0;d=f[c>>2]|0;e=a+4|0;g=f[e>>2]|0;if(d-g>>3>>>0>=b>>>0){h=b;i=g;do{j=i;f[j>>2]=0;f[j+4>>2]=0;i=(f[e>>2]|0)+8|0;f[e>>2]=i;h=h+-1|0}while((h|0)!=0);return}h=f[a>>2]|0;i=g-h>>3;g=i+b|0;if(g>>>0>536870911)aq(a);j=d-h|0;h=j>>2;d=j>>3>>>0<268435455?(h>>>0<g>>>0?g:h):536870911;do if(d)if(d>>>0>536870911){h=ra(8)|0;Oo(h,16035);f[h>>2]=7256;va(h|0,1112,110)}else{k=ln(d<<3)|0;break}else k=0;while(0);h=k+(i<<3)|0;i=k+(d<<3)|0;d=b;b=h;k=h;do{g=b;f[g>>2]=0;f[g+4>>2]=0;b=k+8|0;k=b;d=d+-1|0}while((d|0)!=0);d=f[a>>2]|0;b=(f[e>>2]|0)-d|0;g=h+(0-(b>>3)<<3)|0;if((b|0)>0)kh(g|0,d|0,b|0)|0;f[a>>2]=g;f[e>>2]=k;f[c>>2]=i;if(!d)return;Oq(d);return}function xh(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0;d=u;u=u+16|0;e=d;if(!(bn(a,b,c)|0)){g=0;u=d;return g|0}if((Qa[f[(f[a>>2]|0)+32>>2]&127](a)|0)<<24>>24==1?((f[(f[a+8>>2]|0)+28>>2]|0)+-1|0)>>>0>=6:0){g=0;u=d;return g|0}h=_g(c,f[b+48>>2]|0)|0;Xa[f[(f[a>>2]|0)+48>>2]&15](e,a,h);h=a+36|0;b=f[e>>2]|0;f[e>>2]=0;c=f[h>>2]|0;f[h>>2]=b;if(!c){f[e>>2]=0;i=b}else{Va[f[(f[c>>2]|0)+4>>2]&127](c);c=f[e>>2]|0;f[e>>2]=0;if(c|0)Va[f[(f[c>>2]|0)+4>>2]&127](c);i=f[h>>2]|0}if(!i){g=1;u=d;return g|0}if(Ra[f[(f[a>>2]|0)+36>>2]&127](a,i)|0){g=1;u=d;return g|0}i=f[h>>2]|0;f[h>>2]=0;if(!i){g=1;u=d;return g|0}Va[f[(f[i>>2]|0)+4>>2]&127](i);g=1;u=d;return g|0}function yh(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;e=u;u=u+16|0;g=e+4|0;h=e;i=e+8|0;j=a&255;b[i>>0]=j&127;do if(c>>>0>0|(c|0)==0&a>>>0>127){b[i>>0]=j|-128;k=d+16|0;l=f[k+4>>2]|0;if((l|0)>0|(l|0)==0&(f[k>>2]|0)>>>0>0){m=0;break}else{f[h>>2]=f[d+4>>2];f[g>>2]=f[h>>2];Me(d,g,i,i+1|0)|0;k=Yn(a|0,c|0,7)|0;m=yh(k,I,d)|0;break}}else{k=d+16|0;l=f[k+4>>2]|0;if((l|0)>0|(l|0)==0&(f[k>>2]|0)>>>0>0){m=0;break}f[h>>2]=f[d+4>>2];f[g>>2]=f[h>>2];Me(d,g,i,i+1|0)|0;n=1;u=e;return n|0}while(0);n=m;u=e;return n|0}function zh(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0;g=f[(f[(f[d+4>>2]|0)+8>>2]|0)+(c<<2)>>2]|0;if((b|0)==-1)h=Xi(c,d)|0;else h=b;if((h|0)==-2)i=0;else{do if((Qa[f[(f[d>>2]|0)+8>>2]&127](d)|0)==1){Xf(a,d,h,c,e,514);if(!(f[a>>2]|0)){f[a>>2]=0;break}else return}while(0);c=ln(44)|0;f[c>>2]=1544;f[c+4>>2]=g;g=c+8|0;f[g>>2]=f[e>>2];f[g+4>>2]=f[e+4>>2];f[g+8>>2]=f[e+8>>2];f[g+12>>2]=f[e+12>>2];f[g+16>>2]=f[e+16>>2];f[g+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);f[c>>2]=1600;i=c}f[a>>2]=i;return}function Ah(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;e=u;u=u+224|0;g=e+120|0;h=e+80|0;i=e;j=e+136|0;k=h;l=k+40|0;do{f[k>>2]=0;k=k+4|0}while((k|0)<(l|0));f[g>>2]=f[d>>2];if((qb(0,c,g,i,h)|0)<0)m=-1;else{if((f[a+76>>2]|0)>-1)n=Tq(a)|0;else n=0;d=f[a>>2]|0;k=d&32;if((b[a+74>>0]|0)<1)f[a>>2]=d&-33;d=a+48|0;if(!(f[d>>2]|0)){l=a+44|0;o=f[l>>2]|0;f[l>>2]=j;p=a+28|0;f[p>>2]=j;q=a+20|0;f[q>>2]=j;f[d>>2]=80;r=a+16|0;f[r>>2]=j+80;j=qb(a,c,g,i,h)|0;if(!o)s=j;else{Sa[f[a+36>>2]&31](a,0,0)|0;t=(f[q>>2]|0)==0?-1:j;f[l>>2]=o;f[d>>2]=0;f[r>>2]=0;f[p>>2]=0;f[q>>2]=0;s=t}}else s=qb(a,c,g,i,h)|0;h=f[a>>2]|0;f[a>>2]=h|k;if(n|0)Sq(a);m=(h&32|0)==0?s:-1}u=e;return m|0}function Bh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0;c=a+4|0;d=f[c>>2]|0;e=f[a>>2]|0;g=d-e>>2;h=d;if(g>>>0<b>>>0){uf(a,b-g|0);return}if(g>>>0<=b>>>0)return;g=e+(b<<2)|0;if((g|0)==(h|0))return;else i=h;do{h=i+-4|0;f[c>>2]=h;b=f[h>>2]|0;f[h>>2]=0;if(b|0){h=b+88|0;e=f[h>>2]|0;f[h>>2]=0;if(e|0){h=f[e+8>>2]|0;if(h|0){a=e+12|0;if((f[a>>2]|0)!=(h|0))f[a>>2]=h;Oq(h)}Oq(e)}e=f[b+68>>2]|0;if(e|0){h=b+72|0;a=f[h>>2]|0;if((a|0)!=(e|0))f[h>>2]=a+(~((a+-4-e|0)>>>2)<<2);Oq(e)}e=b+64|0;a=f[e>>2]|0;f[e>>2]=0;if(a|0){e=f[a>>2]|0;if(e|0){h=a+4|0;if((f[h>>2]|0)!=(e|0))f[h>>2]=e;Oq(e)}Oq(a)}Oq(b)}i=f[c>>2]|0}while((i|0)!=(g|0));return}function Ch(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;d=a+8|0;e=f[d>>2]|0;g=a+4|0;h=f[g>>2]|0;i=h;if(e-h>>2>>>0>=b>>>0){j=b;k=i;while(1){f[k>>2]=f[c>>2];j=j+-1|0;if(!j)break;else k=k+4|0}f[g>>2]=i+(b<<2);return}i=f[a>>2]|0;k=h-i|0;h=k>>2;j=h+b|0;if(j>>>0>1073741823)aq(a);l=e-i|0;e=l>>1;m=l>>2>>>0<536870911?(e>>>0<j>>>0?j:e):1073741823;do if(m)if(m>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}else{e=ln(m<<2)|0;n=e;o=e;break}else{n=0;o=0}while(0);e=n+(h<<2)|0;h=n+(m<<2)|0;m=b;j=e;while(1){f[j>>2]=f[c>>2];m=m+-1|0;if(!m)break;else j=j+4|0}if((k|0)>0)kh(o|0,i|0,k|0)|0;f[a>>2]=n;f[g>>2]=e+(b<<2);f[d>>2]=h;if(!i)return;Oq(i);return}function Dh(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;e=(f[a>>2]|0)+1794895138|0;g=gp(f[a+8>>2]|0,e)|0;h=gp(f[a+12>>2]|0,e)|0;i=gp(f[a+16>>2]|0,e)|0;a:do if((g>>>0<c>>>2>>>0?(j=c-(g<<2)|0,h>>>0<j>>>0&i>>>0<j>>>0):0)?((i|h)&3|0)==0:0){j=h>>>2;k=i>>>2;l=0;m=g;while(1){n=m>>>1;o=l+n|0;p=o<<1;q=p+j|0;r=gp(f[a+(q<<2)>>2]|0,e)|0;s=gp(f[a+(q+1<<2)>>2]|0,e)|0;if(!(s>>>0<c>>>0&r>>>0<(c-s|0)>>>0)){t=0;break a}if(b[a+(s+r)>>0]|0){t=0;break a}r=hl(d,a+s|0)|0;if(!r)break;s=(r|0)<0;if((m|0)==1){t=0;break a}else{l=s?l:o;m=s?n:m-n|0}}m=p+k|0;l=gp(f[a+(m<<2)>>2]|0,e)|0;j=gp(f[a+(m+1<<2)>>2]|0,e)|0;if(j>>>0<c>>>0&l>>>0<(c-j|0)>>>0)t=(b[a+(j+l)>>0]|0)==0?a+j|0:0;else t=0}else t=0;while(0);return t|0}function Eh(a,c,e,g){a=a|0;c=c|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;h=u;u=u+64|0;i=h;j=f[a>>2]|0;k=a+(f[j+-8>>2]|0)|0;l=f[j+-4>>2]|0;f[i>>2]=e;f[i+4>>2]=a;f[i+8>>2]=c;f[i+12>>2]=g;g=i+16|0;c=i+20|0;a=i+24|0;j=i+28|0;m=i+32|0;n=i+40|0;o=g;p=o+36|0;do{f[o>>2]=0;o=o+4|0}while((o|0)<(p|0));d[g+36>>1]=0;b[g+38>>0]=0;a:do if(fp(l,e,0)|0){f[i+48>>2]=1;_a[f[(f[l>>2]|0)+20>>2]&3](l,i,k,k,1,0);q=(f[a>>2]|0)==1?k:0}else{Za[f[(f[l>>2]|0)+24>>2]&3](l,i,k,1,0);switch(f[i+36>>2]|0){case 0:{q=(f[n>>2]|0)==1&(f[j>>2]|0)==1&(f[m>>2]|0)==1?f[c>>2]|0:0;break a;break}case 1:break;default:{q=0;break a}}if((f[a>>2]|0)!=1?!((f[n>>2]|0)==0&(f[j>>2]|0)==1&(f[m>>2]|0)==1):0){q=0;break}q=f[g>>2]|0}while(0);u=h;return q|0}function Fh(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;c=a+8|0;d=f[c>>2]|0;e=a+4|0;g=f[e>>2]|0;h=g;if(d-g>>2>>>0>=b>>>0){i=b;j=h;while(1){f[j>>2]=1;i=i+-1|0;if(!i)break;else j=j+4|0}f[e>>2]=h+(b<<2);return}h=f[a>>2]|0;j=g-h|0;g=j>>2;i=g+b|0;if(i>>>0>1073741823)aq(a);k=d-h|0;d=k>>1;l=k>>2>>>0<536870911?(d>>>0<i>>>0?i:d):1073741823;do if(l)if(l>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}else{d=ln(l<<2)|0;m=d;n=d;break}else{m=0;n=0}while(0);d=m+(g<<2)|0;g=m+(l<<2)|0;l=b;i=d;while(1){f[i>>2]=1;l=l+-1|0;if(!l)break;else i=i+4|0}if((j|0)>0)kh(n|0,h|0,j|0)|0;f[a>>2]=m;f[e>>2]=d+(b<<2);f[c>>2]=g;if(!h)return;Oq(h);return}function Gh(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0;d=u;u=u+16|0;e=d;if(!c){g=0;u=d;return g|0}h=a+84|0;i=f[h>>2]|0;j=a+88|0;k=f[j>>2]|0;if((k|0)!=(i|0))f[j>>2]=k+(~((k+-4-i|0)>>>2)<<2);f[h>>2]=0;f[j>>2]=0;f[a+92>>2]=0;if(i|0)Oq(i);i=a+72|0;j=f[i>>2]|0;h=a+76|0;if((f[h>>2]|0)!=(j|0))f[h>>2]=j;f[i>>2]=0;f[h>>2]=0;f[a+80>>2]=0;if(j|0)Oq(j);j=c+4|0;h=(f[j>>2]|0)-(f[c>>2]|0)>>2;b[e>>0]=0;qh(a,h,e);h=c+24|0;i=c+28|0;k=(f[i>>2]|0)-(f[h>>2]|0)>>2;b[e>>0]=0;qh(a+12|0,k,e);hg(a+28|0,(f[j>>2]|0)-(f[c>>2]|0)>>2,6180);gk(a+52|0,(f[i>>2]|0)-(f[h>>2]|0)>>2);gk(a+40|0,(f[i>>2]|0)-(f[h>>2]|0)>>2);f[a+64>>2]=c;b[a+24>>0]=1;g=1;u=d;return g|0}function Hh(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0;c=a+12|0;d=f[a>>2]|0;e=a+8|0;g=f[e>>2]|0;h=(g|0)==-1;if(!(b[c>>0]|0)){do if((!h?(i=(((g>>>0)%3|0|0)==0?2:-1)+g|0,(i|0)!=-1):0)?(j=f[(f[d+12>>2]|0)+(i<<2)>>2]|0,(j|0)!=-1):0)if(!((j>>>0)%3|0)){k=j+2|0;break}else{k=j+-1|0;break}else k=-1;while(0);f[e>>2]=k;return}k=g+1|0;if((!h?(h=((k>>>0)%3|0|0)==0?g+-2|0:k,(h|0)!=-1):0)?(k=f[(f[d+12>>2]|0)+(h<<2)>>2]|0,h=k+1|0,(k|0)!=-1):0){g=((h>>>0)%3|0|0)==0?k+-2|0:h;f[e>>2]=g;if((g|0)!=-1){if((g|0)!=(f[a+4>>2]|0))return;f[e>>2]=-1;return}}else f[e>>2]=-1;g=f[a+4>>2]|0;do if(((g|0)!=-1?(a=(((g>>>0)%3|0|0)==0?2:-1)+g|0,(a|0)!=-1):0)?(h=f[(f[d+12>>2]|0)+(a<<2)>>2]|0,(h|0)!=-1):0)if(!((h>>>0)%3|0)){l=h+2|0;break}else{l=h+-1|0;break}else l=-1;while(0);f[e>>2]=l;b[c>>0]=0;return}function Ih(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){Td(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+20>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;Td(a,e);return}function Jh(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;d=f[a+4>>2]|0;if(!d){e=0;return e|0}a=b[c+11>>0]|0;g=a<<24>>24<0;h=g?f[c+4>>2]|0:a&255;a=g?f[c>>2]|0:c;c=d;while(1){d=c+16|0;g=b[d+11>>0]|0;i=g<<24>>24<0;j=i?f[c+20>>2]|0:g&255;g=j>>>0<h>>>0;k=g?j:h;if((k|0)!=0?(l=Vk(a,i?f[d>>2]|0:d,k)|0,(l|0)!=0):0)if((l|0)<0)m=7;else m=8;else if(h>>>0<j>>>0)m=7;else m=8;if((m|0)==7){m=0;n=c}else if((m|0)==8){m=0;l=h>>>0<j>>>0?h:j;if((l|0)!=0?(j=Vk(i?f[d>>2]|0:d,a,l)|0,(j|0)!=0):0){if((j|0)>=0){e=1;m=14;break}}else m=10;if((m|0)==10?(m=0,!g):0){e=1;m=14;break}n=c+4|0}c=f[n>>2]|0;if(!c){e=0;m=14;break}}if((m|0)==14)return e|0;return 0}function Kh(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0;e=u;u=u+16|0;g=e+4|0;h=e;i=f[a+8>>2]|0;j=i+24|0;k=b[j>>0]|0;l=c+4|0;ag(a,(f[l>>2]|0)-(f[c>>2]|0)>>2,k,d);d=f[a+32>>2]|0;a=(f[f[d>>2]>>2]|0)+(f[d+48>>2]|0)|0;d=f[c>>2]|0;c=f[l>>2]|0;if((d|0)==(c|0)){m=1;u=e;return m|0}l=i+84|0;n=i+68|0;o=0;p=d;while(1){d=f[p>>2]|0;if(!(b[l>>0]|0))q=f[(f[n>>2]|0)+(d<<2)>>2]|0;else q=d;f[h>>2]=q;d=b[j>>0]|0;f[g>>2]=f[h>>2];if(!(Qb(i,g,d,a+(o<<2)|0)|0)){m=0;r=7;break}p=p+4|0;if((p|0)==(c|0)){m=1;r=7;break}else o=o+k|0}if((r|0)==7){u=e;return m|0}return 0}function Lh(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0;f[a>>2]=1408;b=a+72|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0)Va[f[(f[c>>2]|0)+4>>2]&127](c);c=f[a+60>>2]|0;if(c|0){b=a+64|0;d=f[b>>2]|0;if((d|0)!=(c|0))f[b>>2]=d+(~((d+-4-c|0)>>>2)<<2);Oq(c)}c=f[a+48>>2]|0;if(c|0)Oq(c);c=a+36|0;d=f[c>>2]|0;if(d|0){b=a+40|0;e=f[b>>2]|0;if((e|0)==(d|0))g=d;else{h=e;do{e=h+-4|0;f[b>>2]=e;i=f[e>>2]|0;f[e>>2]=0;if(i|0)Va[f[(f[i>>2]|0)+4>>2]&127](i);h=f[b>>2]|0}while((h|0)!=(d|0));g=f[c>>2]|0}Oq(g)}f[a>>2]=1232;g=f[a+16>>2]|0;if(g|0){c=a+20|0;d=f[c>>2]|0;if((d|0)!=(g|0))f[c>>2]=d+(~((d+-4-g|0)>>>2)<<2);Oq(g)}g=f[a+4>>2]|0;if(!g)return;d=a+8|0;a=f[d>>2]|0;if((a|0)!=(g|0))f[d>>2]=a+(~((a+-4-g|0)>>>2)<<2);Oq(g);return}function Mh(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;f[a>>2]=d;e=a+24|0;g=a+28|0;h=f[g>>2]|0;i=f[e>>2]|0;j=h-i>>2;k=i;i=h;if(j>>>0>=d>>>0){if(j>>>0>d>>>0?(h=k+(d<<2)|0,(h|0)!=(i|0)):0)f[g>>2]=i+(~((i+-4-h|0)>>>2)<<2)}else Ci(e,d-j|0);if(!c)return;j=f[b>>2]|0;if((c|0)>1){d=j;e=j;h=1;while(1){i=f[b+(h<<2)>>2]|0;g=(i|0)<(e|0);k=g?i:e;l=g?d:(i|0)>(d|0)?i:d;h=h+1|0;if((h|0)==(c|0)){m=l;n=k;break}else{d=l;e=k}}}else{m=j;n=j}f[a+4>>2]=n;f[a+8>>2]=m;j=Xn(m|0,((m|0)<0)<<31>>31|0,n|0,((n|0)<0)<<31>>31|0)|0;n=I;if(!(n>>>0<0|(n|0)==0&j>>>0<2147483647))return;n=j+1|0;f[a+12>>2]=n;j=(n|0)/2|0;m=a+16|0;f[m>>2]=j;f[a+20>>2]=0-j;if(n&1|0)return;f[m>>2]=j+-1;return}function Nh(a){a=a|0;Fj(a+992|0);Fj(a+960|0);Fj(a+928|0);Fj(a+896|0);Fj(a+864|0);Fj(a+832|0);Fj(a+800|0);Fj(a+768|0);Fj(a+736|0);Fj(a+704|0);Fj(a+672|0);Fj(a+640|0);Fj(a+608|0);Fj(a+576|0);Fj(a+544|0);Fj(a+512|0);Fj(a+480|0);Fj(a+448|0);Fj(a+416|0);Fj(a+384|0);Fj(a+352|0);Fj(a+320|0);Fj(a+288|0);Fj(a+256|0);Fj(a+224|0);Fj(a+192|0);Fj(a+160|0);Fj(a+128|0);Fj(a+96|0);Fj(a+64|0);Fj(a+32|0);Fj(a);return}function Oh(a){a=a|0;wn(a);wn(a+32|0);wn(a+64|0);wn(a+96|0);wn(a+128|0);wn(a+160|0);wn(a+192|0);wn(a+224|0);wn(a+256|0);wn(a+288|0);wn(a+320|0);wn(a+352|0);wn(a+384|0);wn(a+416|0);wn(a+448|0);wn(a+480|0);wn(a+512|0);wn(a+544|0);wn(a+576|0);wn(a+608|0);wn(a+640|0);wn(a+672|0);wn(a+704|0);wn(a+736|0);wn(a+768|0);wn(a+800|0);wn(a+832|0);wn(a+864|0);wn(a+896|0);wn(a+928|0);wn(a+960|0);wn(a+992|0);return}function Ph(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0;c=u;u=u+16|0;d=c+12|0;e=c+8|0;g=c+4|0;h=c;i=(a|0)==(b|0);if(!i){f[g>>2]=f[b>>2];f[h>>2]=b+4;f[e>>2]=f[g>>2];f[d>>2]=f[h>>2];Oc(a,e,d)}if(!i){f[g>>2]=f[b+12>>2];f[h>>2]=b+16;f[e>>2]=f[g>>2];f[d>>2]=f[h>>2];Hc(a+12|0,e,d)}if(i){u=c;return}f[g>>2]=f[b+24>>2];f[h>>2]=b+28;f[e>>2]=f[g>>2];f[d>>2]=f[h>>2];Oc(a+24|0,e,d);u=c;return}function Qh(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0;a=u;u=u+16|0;e=a;if((c|0)<0|((b|0)==0|(d|0)==0)){g=0;u=a;return g|0}h=f[b+8>>2]|0;if(((f[b+12>>2]|0)-h>>2|0)<=(c|0)){g=0;u=a;return g|0}i=b+4|0;if(!(f[i>>2]|0)){j=ln(52)|0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;f[j+12>>2]=0;n[j+16>>2]=$(1.0);k=j+20|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;f[k+12>>2]=0;n[j+36>>2]=$(1.0);f[j+40>>2]=0;f[j+44>>2]=0;f[j+48>>2]=0;f[b+4>>2]=j}j=f[(f[h+(c<<2)>>2]|0)+60>>2]|0;c=ln(44)|0;Ub(c,d);f[c+40>>2]=j;j=f[i>>2]|0;f[e>>2]=c;mk(j,e)|0;j=f[e>>2]|0;f[e>>2]=0;if(!j){g=1;u=a;return g|0}bj(j);Oq(j);g=1;u=a;return g|0}function Rh(a,c,d,e,g,h,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;i=i|0;var j=0,k=0;c=u;u=u+64|0;j=c;k=i?6:5;Il(j);i=f[h+56>>2]|0;h=X(Vl(k)|0,e)|0;Jj(j,i,0,e&255,k,0,h,((h|0)<0)<<31>>31,0,0);h=ln(96)|0;tl(h,j);f[a>>2]=h;Bj(h,d)|0;d=h+84|0;if(!g){b[d>>0]=1;a=f[h+68>>2]|0;j=h+72|0;k=f[j>>2]|0;if((k|0)==(a|0)){u=c;return}f[j>>2]=k+(~((k+-4-a|0)>>>2)<<2);u=c;return}b[d>>0]=0;d=h+68|0;a=h+72|0;h=f[a>>2]|0;k=f[d>>2]|0;j=h-k>>2;e=h;if(j>>>0<g>>>0){Ch(d,g-j|0,1216);u=c;return}if(j>>>0<=g>>>0){u=c;return}j=k+(g<<2)|0;if((j|0)==(e|0)){u=c;return}f[a>>2]=e+(~((e+-4-j|0)>>>2)<<2);u=c;return}function Sh(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){rd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;rd(a,e);return}function Th(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){vd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;vd(a,e);return}function Uh(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){Fd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;Fd(a,e);return}function Vh(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){Pd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;Pd(a,e);return}function Wh(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){ud(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;ud(a,e);return}function Xh(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){zd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;zd(a,e);return}function Yh(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){Jd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;Jd(a,e);return}function Zh(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){sd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;sd(a,e);return}function _h(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){wd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;wd(a,e);return}function $h(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){Gd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;Gd(a,e);return}function ai(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){Qd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;Qd(a,e);return}function bi(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;g=u;u=u+16|0;h=g;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;i=ln(16)|0;f[h>>2]=i;f[h+8>>2]=-2147483632;f[h+4>>2]=15;j=i;k=14479;l=j+15|0;do{b[j>>0]=b[k>>0]|0;j=j+1|0;k=k+1|0}while((j|0)<(l|0));b[i+15>>0]=0;i=Hk(c,h,-1)|0;if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);switch(i|0){case -1:{if((mi(c)|0)==10)m=6;else m=5;break}case 1:{m=5;break}default:m=6}if((m|0)==5){i=ln(60)|0;Lo(i);n=i}else if((m|0)==6){m=ln(56)|0;tp(m);n=m}xo(n,d);Md(a,n,c,e);Va[f[(f[n>>2]|0)+4>>2]&127](n);u=g;return}function ci(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0;d=u;u=u+16|0;e=d+4|0;g=d;h=d+8|0;b[h>>0]=a&127;do if(a>>>0>127){b[h>>0]=a|128;i=c+16|0;j=f[i+4>>2]|0;if((j|0)>0|(j|0)==0&(f[i>>2]|0)>>>0>0){k=0;break}else{f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+1|0)|0;k=ci(a>>>7,c)|0;break}}else{i=c+16|0;j=f[i+4>>2]|0;if((j|0)>0|(j|0)==0&(f[i>>2]|0)>>>0>0){k=0;break}f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+1|0)|0;l=1;u=d;return l|0}while(0);l=k;u=d;return l|0}\nfunction vc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0;e=u;u=u+32|0;g=e+16|0;h=e+12|0;i=e+8|0;j=e+4|0;k=e;switch(f[c+28>>2]|0){case 9:{l=f[d>>2]|0;switch(b[c+24>>0]|0){case 1:{f[h>>2]=l;f[g>>2]=f[h>>2];m=hc(a,c,g)|0;break}case 2:{f[i>>2]=l;f[g>>2]=f[i>>2];m=Wb(a,c,g)|0;break}case 3:{f[j>>2]=l;f[g>>2]=f[j>>2];m=uc(a,c,g)|0;break}case 4:{f[k>>2]=l;f[g>>2]=f[k>>2];m=mc(a,c,g)|0;break}default:m=0}n=m;break}case 1:{m=f[d>>2]|0;switch(b[c+24>>0]|0){case 1:{f[h>>2]=m;f[g>>2]=f[h>>2];o=gc(a,c,g)|0;break}case 2:{f[i>>2]=m;f[g>>2]=f[i>>2];o=Xb(a,c,g)|0;break}case 3:{f[j>>2]=m;f[g>>2]=f[j>>2];o=sc(a,c,g)|0;break}case 4:{f[k>>2]=m;f[g>>2]=f[k>>2];o=lc(a,c,g)|0;break}default:o=0}n=o;break}case 11:case 2:{o=f[d>>2]|0;switch(b[c+24>>0]|0){case 1:{f[h>>2]=o;f[g>>2]=f[h>>2];p=gc(a,c,g)|0;break}case 2:{f[i>>2]=o;f[g>>2]=f[i>>2];p=Xb(a,c,g)|0;break}case 3:{f[j>>2]=o;f[g>>2]=f[j>>2];p=sc(a,c,g)|0;break}case 4:{f[k>>2]=o;f[g>>2]=f[k>>2];p=lc(a,c,g)|0;break}default:p=0}n=p;break}case 4:{p=f[d>>2]|0;switch(b[c+24>>0]|0){case 1:{f[h>>2]=p;f[g>>2]=f[h>>2];q=ec(a,c,g)|0;break}case 2:{f[i>>2]=p;f[g>>2]=f[i>>2];q=Vb(a,c,g)|0;break}case 3:{f[j>>2]=p;f[g>>2]=f[j>>2];q=nc(a,c,g)|0;break}case 4:{f[k>>2]=p;f[g>>2]=f[k>>2];q=jc(a,c,g)|0;break}default:q=0}n=q;break}case 3:{q=f[d>>2]|0;switch(b[c+24>>0]|0){case 1:{f[h>>2]=q;f[g>>2]=f[h>>2];r=ec(a,c,g)|0;break}case 2:{f[i>>2]=q;f[g>>2]=f[i>>2];r=Vb(a,c,g)|0;break}case 3:{f[j>>2]=q;f[g>>2]=f[j>>2];r=nc(a,c,g)|0;break}case 4:{f[k>>2]=q;f[g>>2]=f[k>>2];r=jc(a,c,g)|0;break}default:r=0}n=r;break}case 6:{r=f[d>>2]|0;switch(b[c+24>>0]|0){case 1:{f[h>>2]=r;f[g>>2]=f[h>>2];s=hc(a,c,g)|0;break}case 2:{f[i>>2]=r;f[g>>2]=f[i>>2];s=Wb(a,c,g)|0;break}case 3:{f[j>>2]=r;f[g>>2]=f[j>>2];s=uc(a,c,g)|0;break}case 4:{f[k>>2]=r;f[g>>2]=f[k>>2];s=mc(a,c,g)|0;break}default:s=0}n=s;break}case 5:{s=f[d>>2]|0;switch(b[c+24>>0]|0){case 1:{f[h>>2]=s;f[g>>2]=f[h>>2];t=hc(a,c,g)|0;break}case 2:{f[i>>2]=s;f[g>>2]=f[i>>2];t=Wb(a,c,g)|0;break}case 3:{f[j>>2]=s;f[g>>2]=f[j>>2];t=uc(a,c,g)|0;break}case 4:{f[k>>2]=s;f[g>>2]=f[k>>2];t=mc(a,c,g)|0;break}default:t=0}n=t;break}default:{v=-1;u=e;return v|0}}v=(n|0)==0?-1:n;u=e;return v|0}function wc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;e=u;u=u+32|0;g=e+16|0;h=e+12|0;i=e+29|0;j=e;k=e+28|0;if(!(f[(f[a+8>>2]|0)+80>>2]|0)){l=1;u=e;return l|0}b[i>>0]=-2;m=a+36|0;n=f[m>>2]|0;if(n)if(Ra[f[(f[a>>2]|0)+40>>2]&127](a,n)|0){n=f[m>>2]|0;o=(Qa[f[(f[n>>2]|0)+8>>2]&127](n)|0)&255;b[i>>0]=o;p=5}else q=0;else p=5;if((p|0)==5){o=d+16|0;n=o;r=f[n+4>>2]|0;if(!((r|0)>0|(r|0)==0&(f[n>>2]|0)>>>0>0)){f[h>>2]=f[d+4>>2];f[g>>2]=f[h>>2];Me(d,g,i,i+1|0)|0}i=f[m>>2]|0;if(i|0?(n=(Qa[f[(f[i>>2]|0)+36>>2]&127](i)|0)&255,b[j>>0]=n,n=o,i=f[n+4>>2]|0,!((i|0)>0|(i|0)==0&(f[n>>2]|0)>>>0>0)):0){f[h>>2]=f[d+4>>2];f[g>>2]=f[h>>2];Me(d,g,j,j+1|0)|0}n=f[a+32>>2]|0;i=b[n+24>>0]|0;r=X(f[n+80>>2]|0,i)|0;s=(f[f[n>>2]>>2]|0)+(f[n+48>>2]|0)|0;f[j>>2]=0;n=j+4|0;f[n>>2]=0;f[j+8>>2]=0;t=(r|0)==0;do if(!t)if(r>>>0>1073741823)aq(j);else{v=r<<2;w=ln(v)|0;f[j>>2]=w;x=w+(r<<2)|0;f[j+8>>2]=x;sj(w|0,0,v|0)|0;f[n>>2]=x;y=w;break}else y=0;while(0);w=f[m>>2]|0;do if(w){Ta[f[(f[w>>2]|0)+44>>2]&31](w,s,y,r,i,f[c>>2]|0)|0;x=f[m>>2]|0;if(!x){z=s;A=f[j>>2]|0;p=20;break}if(!(Qa[f[(f[x>>2]|0)+32>>2]&127](x)|0)){x=f[j>>2]|0;z=f[m>>2]|0?x:s;A=x;p=20}}else{z=s;A=y;p=20}while(0);if((p|0)==20)xm(z,r,A);A=a+4|0;a=f[A>>2]|0;do if(a){z=f[a+48>>2]|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;y=ln(48)|0;f[g>>2]=y;f[g+8>>2]=-2147483600;f[g+4>>2]=34;s=y;w=10697;x=s+34|0;do{b[s>>0]=b[w>>0]|0;s=s+1|0;w=w+1|0}while((s|0)<(x|0));b[y+34>>0]=0;w=Yj(z,g,1)|0;if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);if(!w){if(!t){w=f[j>>2]|0;s=0;x=0;do{x=f[w+(s<<2)>>2]|x;s=s+1|0}while((s|0)!=(r|0));if(x)B=((_(x|0)|0)>>>3^3)+1|0;else B=1}else B=1;b[k>>0]=0;s=o;w=f[s>>2]|0;z=f[s+4>>2]|0;if((z|0)>0|(z|0)==0&w>>>0>0){C=z;D=w}else{f[h>>2]=f[d+4>>2];f[g>>2]=f[h>>2];Me(d,g,k,k+1|0)|0;w=o;C=f[w+4>>2]|0;D=f[w>>2]|0}b[k>>0]=B;if(!((C|0)>0|(C|0)==0&D>>>0>0)){f[h>>2]=f[d+4>>2];f[g>>2]=f[h>>2];Me(d,g,k,k+1|0)|0}if((B|0)==(Vl(5)|0)){w=f[j>>2]|0;z=o;s=f[z+4>>2]|0;if(!((s|0)>0|(s|0)==0&(f[z>>2]|0)>>>0>0)){f[h>>2]=f[d+4>>2];f[g>>2]=f[h>>2];Me(d,g,w,w+(r<<2)|0)|0}p=48;break}if(t)p=48;else{w=d+4|0;z=0;do{s=(f[j>>2]|0)+(z<<2)|0;y=o;v=f[y+4>>2]|0;if(!((v|0)>0|(v|0)==0&(f[y>>2]|0)>>>0>0)){f[h>>2]=f[w>>2];f[g>>2]=f[h>>2];Me(d,g,s,s+B|0)|0}z=z+1|0}while(z>>>0<r>>>0);p=48}}else p=27}else p=27;while(0);if((p|0)==27){b[k>>0]=1;r=o;o=f[r+4>>2]|0;if(!((o|0)>0|(o|0)==0&(f[r>>2]|0)>>>0>0)){f[h>>2]=f[d+4>>2];f[g>>2]=f[h>>2];Me(d,g,k,k+1|0)|0}lp(g);k=f[A>>2]|0;if(k|0)Zj(g,10-(mi(f[k+48>>2]|0)|0)|0)|0;k=Mc(f[j>>2]|0,X((f[c+4>>2]|0)-(f[c>>2]|0)>>2,i)|0,i,g,d)|0;Ej(g,f[g+4>>2]|0);if(k)p=48;else E=0}if((p|0)==48){p=f[m>>2]|0;if(!p)E=1;else{Ra[f[(f[p>>2]|0)+40>>2]&127](p,d)|0;E=1}}d=f[j>>2]|0;if(d|0){j=f[n>>2]|0;if((j|0)!=(d|0))f[n>>2]=j+(~((j+-4-d|0)>>>2)<<2);Oq(d)}q=E}l=q;u=e;return l|0}function xc(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0;b=u;u=u+48|0;c=b+24|0;d=b+12|0;e=b;g=a+32|0;h=a+8|0;i=a+12|0;j=f[i>>2]|0;k=f[h>>2]|0;l=j-k>>2;m=a+36|0;n=f[m>>2]|0;o=f[g>>2]|0;p=n-o>>2;q=o;o=n;n=k;if(l>>>0<=p>>>0)if(l>>>0<p>>>0?(r=q+(l<<2)|0,(r|0)!=(o|0)):0){f[m>>2]=o+(~((o+-4-r|0)>>>2)<<2);s=n;t=k;v=j}else{s=n;t=k;v=j}else{Ci(g,l-p|0);p=f[h>>2]|0;s=p;t=p;v=f[i>>2]|0}p=v-t|0;l=p>>2;f[c>>2]=0;j=c+4|0;f[j>>2]=0;k=c+8|0;f[k>>2]=0;if(l|0){if((p|0)<0)aq(c);p=((l+-1|0)>>>5)+1|0;n=ln(p<<2)|0;f[c>>2]=n;f[k>>2]=p;f[j>>2]=l;j=l>>>5;sj(n|0,0,j<<2|0)|0;p=l&31;l=n+(j<<2)|0;if(p|0)f[l>>2]=f[l>>2]&~(-1>>>(32-p|0))}p=a+20|0;l=0;j=s;s=t;t=v;while(1){if(l>>>0<t-s>>2>>>0){w=0;x=0;y=l;z=s;A=j}else{B=25;break}while(1){v=x>>>5;n=1<<(x&31);do if(!(f[(f[c>>2]|0)+(v<<2)>>2]&n)){k=f[A+(x<<2)>>2]|0;if((f[k+8>>2]|0)!=(f[k+4>>2]|0)){r=0;o=1;m=A;q=k;while(1){k=f[(f[q+4>>2]|0)+(r<<2)>>2]|0;C=0;D=m;while(1){E=f[D+(x<<2)>>2]|0;if((C|0)>=(Ra[f[(f[E>>2]|0)+24>>2]&127](E,k)|0)){F=o;break}E=f[(f[h>>2]|0)+(x<<2)>>2]|0;G=Sa[f[(f[E>>2]|0)+28>>2]&31](E,k,C)|0;if((G|0)!=(x|0)?(E=f[(f[p>>2]|0)+(G<<2)>>2]|0,(1<<(E&31)&f[(f[c>>2]|0)+(E>>>5<<2)>>2]|0)==0):0){F=0;break}C=C+1|0;D=f[h>>2]|0}r=r+1|0;m=f[h>>2]|0;q=f[m+(x<<2)>>2]|0;if(r>>>0>=(f[q+8>>2]|0)-(f[q+4>>2]|0)>>2>>>0)break;else o=F}o=m;if(F)H=o;else{I=w;J=y;K=o;break}}else H=z;f[(f[g>>2]|0)+(y<<2)>>2]=x;o=(f[c>>2]|0)+(v<<2)|0;f[o>>2]=f[o>>2]|n;I=1;J=y+1|0;K=H}else{I=w;J=y;K=z}while(0);x=x+1|0;L=f[i>>2]|0;M=L-K>>2;A=K;if(x>>>0>=M>>>0)break;else{w=I;y=J;z=K}}if(J>>>0<M>>>0&(I^1)){N=0;break}else{l=J;j=A;s=K;t=L}}if((B|0)==25){f[d>>2]=0;B=d+4|0;f[B>>2]=0;f[d+8>>2]=0;L=f[a+4>>2]|0;a=(f[L+12>>2]|0)-(f[L+8>>2]|0)|0;L=a>>2;f[e>>2]=0;K=e+4|0;f[K>>2]=0;A=e+8|0;f[A>>2]=0;if(L|0){if((a|0)<0)aq(e);a=((L+-1|0)>>>5)+1|0;J=ln(a<<2)|0;f[e>>2]=J;f[A>>2]=a;f[K>>2]=L;K=L>>>5;sj(J|0,0,K<<2|0)|0;a=L&31;L=J+(K<<2)|0;if(a|0)f[L>>2]=f[L>>2]&~(-1>>>(32-a|0))}a:do if((t|0)==(s|0))O=1;else{a=0;L=j;K=s;J=t;while(1){A=f[(f[g>>2]|0)+(a<<2)>>2]|0;l=f[L+(A<<2)>>2]|0;I=(f[l+8>>2]|0)-(f[l+4>>2]|0)|0;l=I>>2;if((I|0)<8){P=K;Q=J}else{I=f[B>>2]|0;M=f[d>>2]|0;z=I-M>>2;y=M;M=I;if(l>>>0<=z>>>0)if(l>>>0<z>>>0?(I=y+(l<<2)|0,(I|0)!=(M|0)):0){f[B>>2]=M+(~((M+-4-I|0)>>>2)<<2);R=0}else R=0;else{Ci(d,l-z|0);R=0}while(1){if((R|0)<(l|0)){S=0;T=0;U=R}else break;while(1){z=f[(f[h>>2]|0)+(A<<2)>>2]|0;I=f[(f[z+4>>2]|0)+(S<<2)>>2]|0;M=S>>>5;y=1<<(S&31);if(!(f[(f[e>>2]|0)+(M<<2)>>2]&y)){w=0;x=1;H=z;while(1){if((w|0)>=(Ra[f[(f[H>>2]|0)+24>>2]&127](H,I)|0)){V=x;break}z=f[(f[h>>2]|0)+(A<<2)>>2]|0;F=Sa[f[(f[z>>2]|0)+28>>2]&31](z,I,w)|0;z=(f[(f[e>>2]|0)+(F>>>5<<2)>>2]&1<<(F&31)|0)!=0;F=x&z;if(!z){V=F;break}w=w+1|0;x=F;H=f[(f[h>>2]|0)+(A<<2)>>2]|0}if(V){f[(f[d>>2]|0)+(U<<2)>>2]=S;H=(f[e>>2]|0)+(M<<2)|0;f[H>>2]=f[H>>2]|y;W=1;X=U+1|0}else{W=T;X=U}}else{W=T;X=U}S=S+1|0;if((S|0)>=(l|0))break;else{T=W;U=X}}if(W|(X|0)>=(l|0))R=X;else{O=0;break a}}bg(f[(f[h>>2]|0)+(A<<2)>>2]|0,d);P=f[h>>2]|0;Q=f[i>>2]|0}a=a+1|0;if(a>>>0>=Q-P>>2>>>0){O=1;break}else{L=P;K=P;J=Q}}}while(0);Q=f[e>>2]|0;if(Q|0)Oq(Q);Q=f[d>>2]|0;if(Q|0){d=f[B>>2]|0;if((d|0)!=(Q|0))f[B>>2]=d+(~((d+-4-Q|0)>>>2)<<2);Oq(Q)}N=O}O=f[c>>2]|0;if(!O){u=b;return N|0}Oq(O);u=b;return N|0}function yc(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0;if(!a)return;b=a+-8|0;c=f[4788]|0;d=f[a+-4>>2]|0;a=d&-8;e=b+a|0;do if(!(d&1)){g=f[b>>2]|0;if(!(d&3))return;h=b+(0-g)|0;i=g+a|0;if(h>>>0<c>>>0)return;if((f[4789]|0)==(h|0)){j=e+4|0;k=f[j>>2]|0;if((k&3|0)!=3){l=h;m=i;n=h;break}f[4786]=i;f[j>>2]=k&-2;f[h+4>>2]=i|1;f[h+i>>2]=i;return}k=g>>>3;if(g>>>0<256){g=f[h+8>>2]|0;j=f[h+12>>2]|0;if((j|0)==(g|0)){f[4784]=f[4784]&~(1<<k);l=h;m=i;n=h;break}else{f[g+12>>2]=j;f[j+8>>2]=g;l=h;m=i;n=h;break}}g=f[h+24>>2]|0;j=f[h+12>>2]|0;do if((j|0)==(h|0)){k=h+16|0;o=k+4|0;p=f[o>>2]|0;if(!p){q=f[k>>2]|0;if(!q){r=0;break}else{s=q;t=k}}else{s=p;t=o}while(1){o=s+20|0;p=f[o>>2]|0;if(p|0){s=p;t=o;continue}o=s+16|0;p=f[o>>2]|0;if(!p)break;else{s=p;t=o}}f[t>>2]=0;r=s}else{o=f[h+8>>2]|0;f[o+12>>2]=j;f[j+8>>2]=o;r=j}while(0);if(g){j=f[h+28>>2]|0;o=19440+(j<<2)|0;if((f[o>>2]|0)==(h|0)){f[o>>2]=r;if(!r){f[4785]=f[4785]&~(1<<j);l=h;m=i;n=h;break}}else{f[g+16+(((f[g+16>>2]|0)!=(h|0)&1)<<2)>>2]=r;if(!r){l=h;m=i;n=h;break}}f[r+24>>2]=g;j=h+16|0;o=f[j>>2]|0;if(o|0){f[r+16>>2]=o;f[o+24>>2]=r}o=f[j+4>>2]|0;if(o){f[r+20>>2]=o;f[o+24>>2]=r;l=h;m=i;n=h}else{l=h;m=i;n=h}}else{l=h;m=i;n=h}}else{l=b;m=a;n=b}while(0);if(n>>>0>=e>>>0)return;b=e+4|0;a=f[b>>2]|0;if(!(a&1))return;if(!(a&2)){if((f[4790]|0)==(e|0)){r=(f[4787]|0)+m|0;f[4787]=r;f[4790]=l;f[l+4>>2]=r|1;if((l|0)!=(f[4789]|0))return;f[4789]=0;f[4786]=0;return}if((f[4789]|0)==(e|0)){r=(f[4786]|0)+m|0;f[4786]=r;f[4789]=n;f[l+4>>2]=r|1;f[n+r>>2]=r;return}r=(a&-8)+m|0;s=a>>>3;do if(a>>>0<256){t=f[e+8>>2]|0;c=f[e+12>>2]|0;if((c|0)==(t|0)){f[4784]=f[4784]&~(1<<s);break}else{f[t+12>>2]=c;f[c+8>>2]=t;break}}else{t=f[e+24>>2]|0;c=f[e+12>>2]|0;do if((c|0)==(e|0)){d=e+16|0;o=d+4|0;j=f[o>>2]|0;if(!j){p=f[d>>2]|0;if(!p){u=0;break}else{v=p;w=d}}else{v=j;w=o}while(1){o=v+20|0;j=f[o>>2]|0;if(j|0){v=j;w=o;continue}o=v+16|0;j=f[o>>2]|0;if(!j)break;else{v=j;w=o}}f[w>>2]=0;u=v}else{o=f[e+8>>2]|0;f[o+12>>2]=c;f[c+8>>2]=o;u=c}while(0);if(t|0){c=f[e+28>>2]|0;h=19440+(c<<2)|0;if((f[h>>2]|0)==(e|0)){f[h>>2]=u;if(!u){f[4785]=f[4785]&~(1<<c);break}}else{f[t+16+(((f[t+16>>2]|0)!=(e|0)&1)<<2)>>2]=u;if(!u)break}f[u+24>>2]=t;c=e+16|0;h=f[c>>2]|0;if(h|0){f[u+16>>2]=h;f[h+24>>2]=u}h=f[c+4>>2]|0;if(h|0){f[u+20>>2]=h;f[h+24>>2]=u}}}while(0);f[l+4>>2]=r|1;f[n+r>>2]=r;if((l|0)==(f[4789]|0)){f[4786]=r;return}else x=r}else{f[b>>2]=a&-2;f[l+4>>2]=m|1;f[n+m>>2]=m;x=m}m=x>>>3;if(x>>>0<256){n=19176+(m<<1<<2)|0;a=f[4784]|0;b=1<<m;if(!(a&b)){f[4784]=a|b;y=n;z=n+8|0}else{b=n+8|0;y=f[b>>2]|0;z=b}f[z>>2]=l;f[y+12>>2]=l;f[l+8>>2]=y;f[l+12>>2]=n;return}n=x>>>8;if(n)if(x>>>0>16777215)A=31;else{y=(n+1048320|0)>>>16&8;z=n<<y;n=(z+520192|0)>>>16&4;b=z<<n;z=(b+245760|0)>>>16&2;a=14-(n|y|z)+(b<<z>>>15)|0;A=x>>>(a+7|0)&1|a<<1}else A=0;a=19440+(A<<2)|0;f[l+28>>2]=A;f[l+20>>2]=0;f[l+16>>2]=0;z=f[4785]|0;b=1<<A;do if(z&b){y=x<<((A|0)==31?0:25-(A>>>1)|0);n=f[a>>2]|0;while(1){if((f[n+4>>2]&-8|0)==(x|0)){B=73;break}C=n+16+(y>>>31<<2)|0;m=f[C>>2]|0;if(!m){B=72;break}else{y=y<<1;n=m}}if((B|0)==72){f[C>>2]=l;f[l+24>>2]=n;f[l+12>>2]=l;f[l+8>>2]=l;break}else if((B|0)==73){y=n+8|0;t=f[y>>2]|0;f[t+12>>2]=l;f[y>>2]=l;f[l+8>>2]=t;f[l+12>>2]=n;f[l+24>>2]=0;break}}else{f[4785]=z|b;f[a>>2]=l;f[l+24>>2]=a;f[l+12>>2]=l;f[l+8>>2]=l}while(0);l=(f[4792]|0)+-1|0;f[4792]=l;if(!l)D=19592;else return;while(1){l=f[D>>2]|0;if(!l)break;else D=l+8|0}f[4792]=-1;return}function zc(a){a=a|0;var c=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0;c=u;u=u+32|0;e=c+4|0;g=c;h=c+16|0;i=a+52|0;j=f[i>>2]|0;k=(f[j+100>>2]|0)-(f[j+96>>2]|0)|0;j=(k|0)/12|0;l=a+44|0;ci(j,f[l>>2]|0)|0;ci(f[(f[i>>2]|0)+80>>2]|0,f[l>>2]|0)|0;m=f[a+48>>2]|0;n=ln(32)|0;f[e>>2]=n;f[e+8>>2]=-2147483616;f[e+4>>2]=21;o=n;p=15598;q=o+21|0;do{b[o>>0]=b[p>>0]|0;o=o+1|0;p=p+1|0}while((o|0)<(q|0));b[n+21>>0]=0;n=Yj(m,e,0)|0;if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);m=f[l>>2]|0;if(n){b[h>>0]=0;n=m+16|0;p=f[n+4>>2]|0;if(!((p|0)>0|(p|0)==0&(f[n>>2]|0)>>>0>0)){f[g>>2]=f[m+4>>2];f[e>>2]=f[g>>2];Me(m,e,h,h+1|0)|0}mf(a)|0;u=c;return 1}b[h>>0]=1;a=m+16|0;n=f[a+4>>2]|0;if(!((n|0)>0|(n|0)==0&(f[a>>2]|0)>>>0>0)){f[g>>2]=f[m+4>>2];f[e>>2]=f[g>>2];Me(m,e,h,h+1|0)|0}m=f[i>>2]|0;a=f[m+80>>2]|0;if(a>>>0<256){if(!k){u=c;return 1}n=h+1|0;p=h+1|0;o=h+1|0;q=0;r=m;while(1){s=f[r+96>>2]|0;t=f[l>>2]|0;b[h>>0]=f[s+(q*12|0)>>2];v=t+16|0;w=f[v>>2]|0;x=f[v+4>>2]|0;if((x|0)>0|(x|0)==0&w>>>0>0){y=w;z=t;A=x}else{f[g>>2]=f[t+4>>2];f[e>>2]=f[g>>2];Me(t,e,h,o)|0;t=f[l>>2]|0;x=t+16|0;y=f[x>>2]|0;z=t;A=f[x+4>>2]|0}b[h>>0]=f[s+(q*12|0)+4>>2];if((A|0)>0|(A|0)==0&y>>>0>0){B=A;C=y;D=z}else{f[g>>2]=f[z+4>>2];f[e>>2]=f[g>>2];Me(z,e,h,p)|0;x=f[l>>2]|0;t=x+16|0;B=f[t+4>>2]|0;C=f[t>>2]|0;D=x}b[h>>0]=f[s+(q*12|0)+8>>2];if(!((B|0)>0|(B|0)==0&C>>>0>0)){f[g>>2]=f[D+4>>2];f[e>>2]=f[g>>2];Me(D,e,h,n)|0}s=q+1|0;if(s>>>0>=j>>>0)break;q=s;r=f[i>>2]|0}u=c;return 1}if(a>>>0<65536){if(!k){u=c;return 1}r=h+2|0;q=h+2|0;n=h+2|0;D=0;C=m;while(1){B=f[C+96>>2]|0;p=f[l>>2]|0;d[h>>1]=f[B+(D*12|0)>>2];z=p+16|0;y=f[z>>2]|0;A=f[z+4>>2]|0;if((A|0)>0|(A|0)==0&y>>>0>0){E=A;F=y;G=p}else{f[g>>2]=f[p+4>>2];f[e>>2]=f[g>>2];Me(p,e,h,n)|0;p=f[l>>2]|0;y=p+16|0;E=f[y+4>>2]|0;F=f[y>>2]|0;G=p}d[h>>1]=f[B+(D*12|0)+4>>2];if((E|0)>0|(E|0)==0&F>>>0>0){H=E;I=F;J=G}else{f[g>>2]=f[G+4>>2];f[e>>2]=f[g>>2];Me(G,e,h,q)|0;p=f[l>>2]|0;y=p+16|0;H=f[y+4>>2]|0;I=f[y>>2]|0;J=p}d[h>>1]=f[B+(D*12|0)+8>>2];if(!((H|0)>0|(H|0)==0&I>>>0>0)){f[g>>2]=f[J+4>>2];f[e>>2]=f[g>>2];Me(J,e,h,r)|0}B=D+1|0;if(B>>>0>=j>>>0)break;D=B;C=f[i>>2]|0}u=c;return 1}C=(k|0)!=0;if(a>>>0<2097152){if(C){K=0;L=m}else{u=c;return 1}while(1){a=f[L+96>>2]|0;ci(f[a+(K*12|0)>>2]|0,f[l>>2]|0)|0;ci(f[a+(K*12|0)+4>>2]|0,f[l>>2]|0)|0;ci(f[a+(K*12|0)+8>>2]|0,f[l>>2]|0)|0;a=K+1|0;if(a>>>0>=j>>>0)break;K=a;L=f[i>>2]|0}u=c;return 1}if(!C){u=c;return 1}C=0;L=m;while(1){m=(f[L+96>>2]|0)+(C*12|0)|0;K=f[l>>2]|0;a=K+16|0;k=f[a+4>>2]|0;if(!((k|0)>0|(k|0)==0&(f[a>>2]|0)>>>0>0)){f[g>>2]=f[K+4>>2];f[e>>2]=f[g>>2];Me(K,e,m,m+12|0)|0}m=C+1|0;if(m>>>0>=j>>>0)break;C=m;L=f[i>>2]|0}u=c;return 1}function Ac(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=Oa,w=Oa,x=Oa,y=Oa,z=0,A=0,B=0,C=Oa,D=Oa,E=Oa,F=Oa,G=Oa,H=Oa,I=Oa,K=Oa,M=Oa,N=Oa,O=Oa,P=0,Q=Oa,R=Oa,S=0;g=u;u=u+48|0;h=g+40|0;i=g+36|0;j=g+24|0;k=g+12|0;l=g;m=a+28|0;o=f[c>>2]|0;c=o+1|0;if((o|0)!=-1){p=((c>>>0)%3|0|0)==0?o+-2|0:c;c=o+(((o>>>0)%3|0|0)==0?2:-1)|0;if((p|0)==-1)q=-1;else q=f[(f[f[m>>2]>>2]|0)+(p<<2)>>2]|0;if((c|0)==-1){r=-1;s=q}else{r=f[(f[f[m>>2]>>2]|0)+(c<<2)>>2]|0;s=q}}else{r=-1;s=-1}q=f[a+32>>2]|0;c=f[q>>2]|0;m=(f[q+4>>2]|0)-c>>2;if(m>>>0<=s>>>0)aq(q);p=c;c=f[p+(s<<2)>>2]|0;if(m>>>0<=r>>>0)aq(q);q=f[p+(r<<2)>>2]|0;r=(c|0)<(e|0);if(!(r&(q|0)<(e|0))){do if(r)t=c;else{if((e|0)>0){t=e+-1|0;break}p=a+52|0;if((f[p>>2]|0)<=0){u=g;return}m=f[a+48>>2]|0;s=0;do{f[m+(s<<2)>>2]=0;s=s+1|0}while((s|0)<(f[p>>2]|0));u=g;return}while(0);r=a+52|0;p=f[r>>2]|0;s=X(p,t)|0;if((p|0)<=0){u=g;return}p=f[a+48>>2]|0;t=0;do{f[p+(t<<2)>>2]=f[d+(t+s<<2)>>2];t=t+1|0}while((t|0)<(f[r>>2]|0));u=g;return}r=a+52|0;t=f[r>>2]|0;s=X(t,c)|0;v=$(f[d+(s<<2)>>2]|0);w=$(f[d+(s+1<<2)>>2]|0);s=X(t,q)|0;x=$(f[d+(s<<2)>>2]|0);y=$(f[d+(s+1<<2)>>2]|0);if(!(x!=v|y!=w)){s=f[a+48>>2]|0;f[s>>2]=~~x;f[s+4>>2]=~~y;u=g;return}s=a+44|0;t=f[(f[s>>2]|0)+(e<<2)>>2]|0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;p=a+40|0;m=f[p>>2]|0;if(!(b[m+84>>0]|0))z=f[(f[m+68>>2]|0)+(t<<2)>>2]|0;else z=t;f[i>>2]=z;z=b[m+24>>0]|0;f[h>>2]=f[i>>2];mb(m,h,z,j)|0;z=f[(f[s>>2]|0)+(c<<2)>>2]|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;c=f[p>>2]|0;if(!(b[c+84>>0]|0))A=f[(f[c+68>>2]|0)+(z<<2)>>2]|0;else A=z;f[i>>2]=A;A=b[c+24>>0]|0;f[h>>2]=f[i>>2];mb(c,h,A,k)|0;A=f[(f[s>>2]|0)+(q<<2)>>2]|0;f[l>>2]=0;f[l+4>>2]=0;f[l+8>>2]=0;q=f[p>>2]|0;if(!(b[q+84>>0]|0))B=f[(f[q+68>>2]|0)+(A<<2)>>2]|0;else B=A;f[i>>2]=B;B=b[q+24>>0]|0;f[h>>2]=f[i>>2];mb(q,h,B,l)|0;C=$(n[l>>2]);D=$(n[k>>2]);E=$(C-D);C=$(n[l+4>>2]);F=$(n[k+4>>2]);G=$(C-F);C=$(n[l+8>>2]);H=$(n[k+8>>2]);I=$(C-H);C=$($(n[j>>2])-D);D=$($(n[j+4>>2])-F);F=$($(n[j+8>>2])-H);H=$($($($(E*E)+$(0.0))+$(G*G))+$(I*I));if(H>$(0.0)){K=$($($($($(E*C)+$(0.0))+$(G*D))+$(I*F))/H);M=$(C-$(E*K));E=$(D-$(G*K));G=$(F-$(I*K));N=K;O=$(L($($($(G*G)+$($(E*E)+$($(M*M)+$(0.0))))/H)))}else{N=$(0.0);O=$(0.0)}H=$(x-v);x=$(y-w);y=$($(H*N)+v);v=$(H*O);H=$($(x*N)+w);w=$(x*O);O=$(y-w);x=$(H+v);N=$(y+w);w=$(H-v);j=X(f[r>>2]|0,e)|0;v=$(f[d+(j<<2)>>2]|0);H=$(f[d+(j+1<<2)>>2]|0);y=$(v-O);M=$(H-x);E=$(v-N);v=$(H-w);j=$($($(y*y)+$(0.0))+$(M*M))<$($($(E*E)+$(0.0))+$(v*v));d=a+56|0;e=a+60|0;r=f[e>>2]|0;k=f[a+64>>2]|0;l=(r|0)==(k<<5|0);if(j){do if(l)if((r+1|0)<0)aq(d);else{j=k<<6;B=r+32&-32;vi(d,r>>>0<1073741823?(j>>>0<B>>>0?B:j):2147483647);P=f[e>>2]|0;break}else P=r;while(0);f[e>>2]=P+1;j=(f[d>>2]|0)+(P>>>5<<2)|0;f[j>>2]=f[j>>2]|1<<(P&31);Q=O;R=x}else{do if(l)if((r+1|0)<0)aq(d);else{P=k<<6;j=r+32&-32;vi(d,r>>>0<1073741823?(P>>>0<j>>>0?j:P):2147483647);S=f[e>>2]|0;break}else S=r;while(0);f[e>>2]=S+1;e=(f[d>>2]|0)+(S>>>5<<2)|0;f[e>>2]=f[e>>2]&~(1<<(S&31));Q=N;R=w}S=~~+J(+(+Q+.5));e=f[a+48>>2]|0;f[e>>2]=S;S=~~+J(+(+R+.5));f[e+4>>2]=S;u=g;return}function Bc(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=Oa,v=Oa,w=Oa,x=Oa,y=0,z=0,A=0,B=Oa,C=Oa,D=Oa,E=Oa,F=Oa,G=Oa,H=Oa,I=Oa,K=Oa,M=Oa,N=Oa,O=0,P=Oa,Q=Oa,R=0;g=u;u=u+48|0;h=g+40|0;i=g+36|0;j=g+24|0;k=g+12|0;l=g;m=a+28|0;o=f[c>>2]|0;c=o+1|0;do if((o|0)!=-1){p=((c>>>0)%3|0|0)==0?o+-2|0:c;if(!((o>>>0)%3|0)){q=o+2|0;r=p;break}else{q=o+-1|0;r=p;break}}else{q=-1;r=-1}while(0);o=f[(f[m>>2]|0)+28>>2]|0;m=f[o+(r<<2)>>2]|0;r=f[o+(q<<2)>>2]|0;q=f[a+32>>2]|0;o=f[q>>2]|0;c=(f[q+4>>2]|0)-o>>2;if(c>>>0<=m>>>0)aq(q);p=o;o=f[p+(m<<2)>>2]|0;if(c>>>0<=r>>>0)aq(q);q=f[p+(r<<2)>>2]|0;r=(o|0)<(e|0);if(!(r&(q|0)<(e|0))){do if(r)s=o;else{if((e|0)>0){s=e+-1|0;break}p=a+52|0;if((f[p>>2]|0)<=0){u=g;return}c=f[a+48>>2]|0;m=0;do{f[c+(m<<2)>>2]=0;m=m+1|0}while((m|0)<(f[p>>2]|0));u=g;return}while(0);r=a+52|0;p=f[r>>2]|0;m=X(p,s)|0;if((p|0)<=0){u=g;return}p=f[a+48>>2]|0;s=0;do{f[p+(s<<2)>>2]=f[d+(s+m<<2)>>2];s=s+1|0}while((s|0)<(f[r>>2]|0));u=g;return}r=a+52|0;s=f[r>>2]|0;m=X(s,o)|0;t=$(f[d+(m<<2)>>2]|0);v=$(f[d+(m+1<<2)>>2]|0);m=X(s,q)|0;w=$(f[d+(m<<2)>>2]|0);x=$(f[d+(m+1<<2)>>2]|0);if(!(w!=t|x!=v)){m=f[a+48>>2]|0;f[m>>2]=~~w;f[m+4>>2]=~~x;u=g;return}m=a+44|0;s=f[(f[m>>2]|0)+(e<<2)>>2]|0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;p=a+40|0;c=f[p>>2]|0;if(!(b[c+84>>0]|0))y=f[(f[c+68>>2]|0)+(s<<2)>>2]|0;else y=s;f[i>>2]=y;y=b[c+24>>0]|0;f[h>>2]=f[i>>2];mb(c,h,y,j)|0;y=f[(f[m>>2]|0)+(o<<2)>>2]|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;o=f[p>>2]|0;if(!(b[o+84>>0]|0))z=f[(f[o+68>>2]|0)+(y<<2)>>2]|0;else z=y;f[i>>2]=z;z=b[o+24>>0]|0;f[h>>2]=f[i>>2];mb(o,h,z,k)|0;z=f[(f[m>>2]|0)+(q<<2)>>2]|0;f[l>>2]=0;f[l+4>>2]=0;f[l+8>>2]=0;q=f[p>>2]|0;if(!(b[q+84>>0]|0))A=f[(f[q+68>>2]|0)+(z<<2)>>2]|0;else A=z;f[i>>2]=A;A=b[q+24>>0]|0;f[h>>2]=f[i>>2];mb(q,h,A,l)|0;B=$(n[l>>2]);C=$(n[k>>2]);D=$(B-C);B=$(n[l+4>>2]);E=$(n[k+4>>2]);F=$(B-E);B=$(n[l+8>>2]);G=$(n[k+8>>2]);H=$(B-G);B=$($(n[j>>2])-C);C=$($(n[j+4>>2])-E);E=$($(n[j+8>>2])-G);G=$($($($(D*D)+$(0.0))+$(F*F))+$(H*H));if(G>$(0.0)){I=$($($($($(D*B)+$(0.0))+$(F*C))+$(H*E))/G);K=$(B-$(D*I));D=$(C-$(F*I));F=$(E-$(H*I));M=I;N=$(L($($($(F*F)+$($(D*D)+$($(K*K)+$(0.0))))/G)))}else{M=$(0.0);N=$(0.0)}G=$(w-t);w=$(x-v);x=$($(G*M)+t);t=$(G*N);G=$($(w*M)+v);v=$(w*N);N=$(x-v);w=$(G+t);M=$(x+v);v=$(G-t);j=X(f[r>>2]|0,e)|0;t=$(f[d+(j<<2)>>2]|0);G=$(f[d+(j+1<<2)>>2]|0);x=$(t-N);K=$(G-w);D=$(t-M);t=$(G-v);j=$($($(x*x)+$(0.0))+$(K*K))<$($($(D*D)+$(0.0))+$(t*t));d=a+56|0;e=a+60|0;r=f[e>>2]|0;k=f[a+64>>2]|0;l=(r|0)==(k<<5|0);if(j){do if(l)if((r+1|0)<0)aq(d);else{j=k<<6;A=r+32&-32;vi(d,r>>>0<1073741823?(j>>>0<A>>>0?A:j):2147483647);O=f[e>>2]|0;break}else O=r;while(0);f[e>>2]=O+1;j=(f[d>>2]|0)+(O>>>5<<2)|0;f[j>>2]=f[j>>2]|1<<(O&31);P=N;Q=w}else{do if(l)if((r+1|0)<0)aq(d);else{O=k<<6;j=r+32&-32;vi(d,r>>>0<1073741823?(O>>>0<j>>>0?j:O):2147483647);R=f[e>>2]|0;break}else R=r;while(0);f[e>>2]=R+1;e=(f[d>>2]|0)+(R>>>5<<2)|0;f[e>>2]=f[e>>2]&~(1<<(R&31));P=M;Q=v}R=~~+J(+(+P+.5));e=f[a+48>>2]|0;f[e>>2]=R;R=~~+J(+(+Q+.5));f[e+4>>2]=R;u=g;return}function Cc(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=Oa,w=Oa,x=Oa,y=Oa,z=0,A=0,B=0,C=Oa,D=Oa,E=Oa,F=Oa,G=Oa,H=Oa,I=Oa,K=Oa,M=Oa,N=Oa,O=Oa,P=0,Q=Oa,R=Oa,S=0;g=u;u=u+48|0;h=g+40|0;i=g+36|0;j=g+24|0;k=g+12|0;l=g;m=a+48|0;o=f[c>>2]|0;c=o+1|0;if((o|0)!=-1){p=((c>>>0)%3|0|0)==0?o+-2|0:c;c=o+(((o>>>0)%3|0|0)==0?2:-1)|0;if((p|0)==-1)q=-1;else q=f[(f[f[m>>2]>>2]|0)+(p<<2)>>2]|0;if((c|0)==-1){r=-1;s=q}else{r=f[(f[f[m>>2]>>2]|0)+(c<<2)>>2]|0;s=q}}else{r=-1;s=-1}q=f[a+52>>2]|0;c=f[q>>2]|0;m=(f[q+4>>2]|0)-c>>2;if(m>>>0<=s>>>0)aq(q);p=c;c=f[p+(s<<2)>>2]|0;if(m>>>0<=r>>>0)aq(q);q=f[p+(r<<2)>>2]|0;r=(c|0)<(e|0);if(!(r&(q|0)<(e|0))){do if(r)t=c;else{if((e|0)>0){t=e+-1|0;break}p=a+72|0;if((f[p>>2]|0)<=0){u=g;return}m=f[a+68>>2]|0;s=0;do{f[m+(s<<2)>>2]=0;s=s+1|0}while((s|0)<(f[p>>2]|0));u=g;return}while(0);r=a+72|0;p=f[r>>2]|0;s=X(p,t)|0;if((p|0)<=0){u=g;return}p=f[a+68>>2]|0;t=0;do{f[p+(t<<2)>>2]=f[d+(t+s<<2)>>2];t=t+1|0}while((t|0)<(f[r>>2]|0));u=g;return}r=a+72|0;t=f[r>>2]|0;s=X(t,c)|0;v=$(f[d+(s<<2)>>2]|0);w=$(f[d+(s+1<<2)>>2]|0);s=X(t,q)|0;x=$(f[d+(s<<2)>>2]|0);y=$(f[d+(s+1<<2)>>2]|0);if(!(x!=v|y!=w)){s=f[a+68>>2]|0;f[s>>2]=~~x;f[s+4>>2]=~~y;u=g;return}s=a+64|0;t=f[(f[s>>2]|0)+(e<<2)>>2]|0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;p=a+60|0;m=f[p>>2]|0;if(!(b[m+84>>0]|0))z=f[(f[m+68>>2]|0)+(t<<2)>>2]|0;else z=t;f[i>>2]=z;z=b[m+24>>0]|0;f[h>>2]=f[i>>2];mb(m,h,z,j)|0;z=f[(f[s>>2]|0)+(c<<2)>>2]|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;c=f[p>>2]|0;if(!(b[c+84>>0]|0))A=f[(f[c+68>>2]|0)+(z<<2)>>2]|0;else A=z;f[i>>2]=A;A=b[c+24>>0]|0;f[h>>2]=f[i>>2];mb(c,h,A,k)|0;A=f[(f[s>>2]|0)+(q<<2)>>2]|0;f[l>>2]=0;f[l+4>>2]=0;f[l+8>>2]=0;q=f[p>>2]|0;if(!(b[q+84>>0]|0))B=f[(f[q+68>>2]|0)+(A<<2)>>2]|0;else B=A;f[i>>2]=B;B=b[q+24>>0]|0;f[h>>2]=f[i>>2];mb(q,h,B,l)|0;C=$(n[l>>2]);D=$(n[k>>2]);E=$(C-D);C=$(n[l+4>>2]);F=$(n[k+4>>2]);G=$(C-F);C=$(n[l+8>>2]);H=$(n[k+8>>2]);I=$(C-H);C=$($(n[j>>2])-D);D=$($(n[j+4>>2])-F);F=$($(n[j+8>>2])-H);H=$($($($(E*E)+$(0.0))+$(G*G))+$(I*I));if(H>$(0.0)){K=$($($($($(E*C)+$(0.0))+$(G*D))+$(I*F))/H);M=$(C-$(E*K));E=$(D-$(G*K));G=$(F-$(I*K));N=K;O=$(L($($($(G*G)+$($(E*E)+$($(M*M)+$(0.0))))/H)))}else{N=$(0.0);O=$(0.0)}H=$(x-v);x=$(y-w);y=$($(H*N)+v);v=$(H*O);H=$($(x*N)+w);w=$(x*O);O=$(y-w);x=$(H+v);N=$(y+w);w=$(H-v);j=X(f[r>>2]|0,e)|0;v=$(f[d+(j<<2)>>2]|0);H=$(f[d+(j+1<<2)>>2]|0);y=$(v-O);M=$(H-x);E=$(v-N);v=$(H-w);j=$($($(y*y)+$(0.0))+$(M*M))<$($($(E*E)+$(0.0))+$(v*v));d=a+76|0;e=a+80|0;r=f[e>>2]|0;k=f[a+84>>2]|0;l=(r|0)==(k<<5|0);if(j){do if(l)if((r+1|0)<0)aq(d);else{j=k<<6;B=r+32&-32;vi(d,r>>>0<1073741823?(j>>>0<B>>>0?B:j):2147483647);P=f[e>>2]|0;break}else P=r;while(0);f[e>>2]=P+1;j=(f[d>>2]|0)+(P>>>5<<2)|0;f[j>>2]=f[j>>2]|1<<(P&31);Q=O;R=x}else{do if(l)if((r+1|0)<0)aq(d);else{P=k<<6;j=r+32&-32;vi(d,r>>>0<1073741823?(P>>>0<j>>>0?j:P):2147483647);S=f[e>>2]|0;break}else S=r;while(0);f[e>>2]=S+1;e=(f[d>>2]|0)+(S>>>5<<2)|0;f[e>>2]=f[e>>2]&~(1<<(S&31));Q=N;R=w}S=~~+J(+(+Q+.5));e=f[a+68>>2]|0;f[e>>2]=S;S=~~+J(+(+R+.5));f[e+4>>2]=S;u=g;return}function Dc(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=Oa,v=Oa,w=Oa,x=Oa,y=0,z=0,A=0,B=Oa,C=Oa,D=Oa,E=Oa,F=Oa,G=Oa,H=Oa,I=Oa,K=Oa,M=Oa,N=Oa,O=0,P=Oa,Q=Oa,R=0;g=u;u=u+48|0;h=g+40|0;i=g+36|0;j=g+24|0;k=g+12|0;l=g;m=a+48|0;o=f[c>>2]|0;c=o+1|0;do if((o|0)!=-1){p=((c>>>0)%3|0|0)==0?o+-2|0:c;if(!((o>>>0)%3|0)){q=o+2|0;r=p;break}else{q=o+-1|0;r=p;break}}else{q=-1;r=-1}while(0);o=f[(f[m>>2]|0)+28>>2]|0;m=f[o+(r<<2)>>2]|0;r=f[o+(q<<2)>>2]|0;q=f[a+52>>2]|0;o=f[q>>2]|0;c=(f[q+4>>2]|0)-o>>2;if(c>>>0<=m>>>0)aq(q);p=o;o=f[p+(m<<2)>>2]|0;if(c>>>0<=r>>>0)aq(q);q=f[p+(r<<2)>>2]|0;r=(o|0)<(e|0);if(!(r&(q|0)<(e|0))){do if(r)s=o;else{if((e|0)>0){s=e+-1|0;break}p=a+72|0;if((f[p>>2]|0)<=0){u=g;return}c=f[a+68>>2]|0;m=0;do{f[c+(m<<2)>>2]=0;m=m+1|0}while((m|0)<(f[p>>2]|0));u=g;return}while(0);r=a+72|0;p=f[r>>2]|0;m=X(p,s)|0;if((p|0)<=0){u=g;return}p=f[a+68>>2]|0;s=0;do{f[p+(s<<2)>>2]=f[d+(s+m<<2)>>2];s=s+1|0}while((s|0)<(f[r>>2]|0));u=g;return}r=a+72|0;s=f[r>>2]|0;m=X(s,o)|0;t=$(f[d+(m<<2)>>2]|0);v=$(f[d+(m+1<<2)>>2]|0);m=X(s,q)|0;w=$(f[d+(m<<2)>>2]|0);x=$(f[d+(m+1<<2)>>2]|0);if(!(w!=t|x!=v)){m=f[a+68>>2]|0;f[m>>2]=~~w;f[m+4>>2]=~~x;u=g;return}m=a+64|0;s=f[(f[m>>2]|0)+(e<<2)>>2]|0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;p=a+60|0;c=f[p>>2]|0;if(!(b[c+84>>0]|0))y=f[(f[c+68>>2]|0)+(s<<2)>>2]|0;else y=s;f[i>>2]=y;y=b[c+24>>0]|0;f[h>>2]=f[i>>2];mb(c,h,y,j)|0;y=f[(f[m>>2]|0)+(o<<2)>>2]|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;o=f[p>>2]|0;if(!(b[o+84>>0]|0))z=f[(f[o+68>>2]|0)+(y<<2)>>2]|0;else z=y;f[i>>2]=z;z=b[o+24>>0]|0;f[h>>2]=f[i>>2];mb(o,h,z,k)|0;z=f[(f[m>>2]|0)+(q<<2)>>2]|0;f[l>>2]=0;f[l+4>>2]=0;f[l+8>>2]=0;q=f[p>>2]|0;if(!(b[q+84>>0]|0))A=f[(f[q+68>>2]|0)+(z<<2)>>2]|0;else A=z;f[i>>2]=A;A=b[q+24>>0]|0;f[h>>2]=f[i>>2];mb(q,h,A,l)|0;B=$(n[l>>2]);C=$(n[k>>2]);D=$(B-C);B=$(n[l+4>>2]);E=$(n[k+4>>2]);F=$(B-E);B=$(n[l+8>>2]);G=$(n[k+8>>2]);H=$(B-G);B=$($(n[j>>2])-C);C=$($(n[j+4>>2])-E);E=$($(n[j+8>>2])-G);G=$($($($(D*D)+$(0.0))+$(F*F))+$(H*H));if(G>$(0.0)){I=$($($($($(D*B)+$(0.0))+$(F*C))+$(H*E))/G);K=$(B-$(D*I));D=$(C-$(F*I));F=$(E-$(H*I));M=I;N=$(L($($($(F*F)+$($(D*D)+$($(K*K)+$(0.0))))/G)))}else{M=$(0.0);N=$(0.0)}G=$(w-t);w=$(x-v);x=$($(G*M)+t);t=$(G*N);G=$($(w*M)+v);v=$(w*N);N=$(x-v);w=$(G+t);M=$(x+v);v=$(G-t);j=X(f[r>>2]|0,e)|0;t=$(f[d+(j<<2)>>2]|0);G=$(f[d+(j+1<<2)>>2]|0);x=$(t-N);K=$(G-w);D=$(t-M);t=$(G-v);j=$($($(x*x)+$(0.0))+$(K*K))<$($($(D*D)+$(0.0))+$(t*t));d=a+76|0;e=a+80|0;r=f[e>>2]|0;k=f[a+84>>2]|0;l=(r|0)==(k<<5|0);if(j){do if(l)if((r+1|0)<0)aq(d);else{j=k<<6;A=r+32&-32;vi(d,r>>>0<1073741823?(j>>>0<A>>>0?A:j):2147483647);O=f[e>>2]|0;break}else O=r;while(0);f[e>>2]=O+1;j=(f[d>>2]|0)+(O>>>5<<2)|0;f[j>>2]=f[j>>2]|1<<(O&31);P=N;Q=w}else{do if(l)if((r+1|0)<0)aq(d);else{O=k<<6;j=r+32&-32;vi(d,r>>>0<1073741823?(O>>>0<j>>>0?j:O):2147483647);R=f[e>>2]|0;break}else R=r;while(0);f[e>>2]=R+1;e=(f[d>>2]|0)+(R>>>5<<2)|0;f[e>>2]=f[e>>2]&~(1<<(R&31));P=M;Q=v}R=~~+J(+(+P+.5));e=f[a+68>>2]|0;f[e>>2]=R;R=~~+J(+(+Q+.5));f[e+4>>2]=R;u=g;return}function Ec(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=Oa,F=Oa,G=Oa,H=0,I=0,J=0,K=0;d=b[c+11>>0]|0;e=d<<24>>24<0;g=e?f[c>>2]|0:c;i=e?f[c+4>>2]|0:d&255;if(i>>>0>3){d=g;e=i;j=i;while(1){k=X(h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24,1540483477)|0;e=(X(k>>>24^k,1540483477)|0)^(X(e,1540483477)|0);j=j+-4|0;if(j>>>0<=3)break;else d=d+4|0}d=i+-4|0;j=d&-4;l=d-j|0;m=g+(j+4)|0;o=e}else{l=i;m=g;o=i}switch(l|0){case 3:{p=h[m+2>>0]<<16^o;q=6;break}case 2:{p=o;q=6;break}case 1:{r=o;q=7;break}default:s=o}if((q|0)==6){r=h[m+1>>0]<<8^p;q=7}if((q|0)==7)s=X(r^h[m>>0],1540483477)|0;m=X(s>>>13^s,1540483477)|0;s=m>>>15^m;m=a+4|0;r=f[m>>2]|0;p=(r|0)==0;a:do if(!p){o=r+-1|0;l=(o&r|0)==0;if(!l)if(s>>>0<r>>>0)t=s;else t=(s>>>0)%(r>>>0)|0;else t=s&o;e=f[(f[a>>2]|0)+(t<<2)>>2]|0;if((e|0)!=0?(j=f[e>>2]|0,(j|0)!=0):0){e=(i|0)==0;if(l){if(e){l=j;while(1){d=f[l+4>>2]|0;if(!((d|0)==(s|0)|(d&o|0)==(t|0))){u=t;break a}d=b[l+8+11>>0]|0;if(!((d<<24>>24<0?f[l+12>>2]|0:d&255)|0)){v=l;break}l=f[l>>2]|0;if(!l){u=t;break a}}w=v+20|0;return w|0}else x=j;b:while(1){l=f[x+4>>2]|0;if(!((l|0)==(s|0)|(l&o|0)==(t|0))){u=t;break a}l=x+8|0;d=b[l+11>>0]|0;k=d<<24>>24<0;y=d&255;do if(((k?f[x+12>>2]|0:y)|0)==(i|0)){d=f[l>>2]|0;if(k)if(!(Vk(d,g,i)|0)){v=x;q=63;break b}else break;if((b[g>>0]|0)==(d&255)<<24>>24){d=l;z=y;A=g;do{z=z+-1|0;d=d+1|0;if(!z){v=x;q=63;break b}A=A+1|0}while((b[d>>0]|0)==(b[A>>0]|0))}}while(0);x=f[x>>2]|0;if(!x){u=t;break a}}if((q|0)==63){w=v+20|0;return w|0}}if(e){o=j;while(1){y=f[o+4>>2]|0;if((y|0)!=(s|0)){if(y>>>0<r>>>0)B=y;else B=(y>>>0)%(r>>>0)|0;if((B|0)!=(t|0)){u=t;break a}}y=b[o+8+11>>0]|0;if(!((y<<24>>24<0?f[o+12>>2]|0:y&255)|0)){v=o;break}o=f[o>>2]|0;if(!o){u=t;break a}}w=v+20|0;return w|0}else C=j;c:while(1){o=f[C+4>>2]|0;if((o|0)!=(s|0)){if(o>>>0<r>>>0)D=o;else D=(o>>>0)%(r>>>0)|0;if((D|0)!=(t|0)){u=t;break a}}o=C+8|0;e=b[o+11>>0]|0;y=e<<24>>24<0;l=e&255;do if(((y?f[C+12>>2]|0:l)|0)==(i|0)){e=f[o>>2]|0;if(y)if(!(Vk(e,g,i)|0)){v=C;q=63;break c}else break;if((b[g>>0]|0)==(e&255)<<24>>24){e=o;k=l;A=g;do{k=k+-1|0;e=e+1|0;if(!k){v=C;q=63;break c}A=A+1|0}while((b[e>>0]|0)==(b[A>>0]|0))}}while(0);C=f[C>>2]|0;if(!C){u=t;break a}}if((q|0)==63){w=v+20|0;return w|0}}else u=t}else u=0;while(0);t=ln(24)|0;pj(t+8|0,c);f[t+20>>2]=0;f[t+4>>2]=s;f[t>>2]=0;c=a+12|0;E=$(((f[c>>2]|0)+1|0)>>>0);F=$(r>>>0);G=$(n[a+16>>2]);do if(p|$(G*F)<E){C=r<<1|(r>>>0<3|(r+-1&r|0)!=0)&1;g=~~$(W($(E/G)))>>>0;ei(a,C>>>0<g>>>0?g:C);C=f[m>>2]|0;g=C+-1|0;if(!(g&C)){H=C;I=g&s;break}if(s>>>0<C>>>0){H=C;I=s}else{H=C;I=(s>>>0)%(C>>>0)|0}}else{H=r;I=u}while(0);u=(f[a>>2]|0)+(I<<2)|0;I=f[u>>2]|0;if(!I){r=a+8|0;f[t>>2]=f[r>>2];f[r>>2]=t;f[u>>2]=r;r=f[t>>2]|0;if(r|0){u=f[r+4>>2]|0;r=H+-1|0;if(r&H)if(u>>>0<H>>>0)J=u;else J=(u>>>0)%(H>>>0)|0;else J=u&r;K=(f[a>>2]|0)+(J<<2)|0;q=61}}else{f[t>>2]=f[I>>2];K=I;q=61}if((q|0)==61)f[K>>2]=t;f[c>>2]=(f[c>>2]|0)+1;v=t;w=v+20|0;return w|0}function Fc(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0.0,q=0.0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0.0,G=0.0,H=0,J=0,K=0,L=0,M=0,N=0,O=0.0,P=0,Q=0.0,R=0.0,S=0,T=0.0,U=0,V=0,W=0,X=0.0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0.0,da=0,ea=0.0;g=a+4|0;i=f[g>>2]|0;j=a+100|0;if(i>>>0<(f[j>>2]|0)>>>0){f[g>>2]=i+1;k=h[i>>0]|0;l=0}else{k=Si(a)|0;l=0}a:while(1){switch(k|0){case 46:{m=8;break a;break}case 48:break;default:{n=0;o=0;p=1.0;q=0.0;r=0;s=k;t=l;u=0;v=0;w=0;x=0;break a}}i=f[g>>2]|0;if(i>>>0<(f[j>>2]|0)>>>0){f[g>>2]=i+1;k=h[i>>0]|0;l=1;continue}else{k=Si(a)|0;l=1;continue}}if((m|0)==8){k=f[g>>2]|0;if(k>>>0<(f[j>>2]|0)>>>0){f[g>>2]=k+1;y=h[k>>0]|0}else y=Si(a)|0;if((y|0)==48){k=0;i=0;while(1){z=f[g>>2]|0;if(z>>>0<(f[j>>2]|0)>>>0){f[g>>2]=z+1;A=h[z>>0]|0}else A=Si(a)|0;z=Vn(k|0,i|0,-1,-1)|0;B=I;if((A|0)==48){k=z;i=B}else{n=1;o=0;p=1.0;q=0.0;r=0;s=A;t=1;u=0;v=0;w=z;x=B;break}}}else{n=1;o=0;p=1.0;q=0.0;r=0;s=y;t=l;u=0;v=0;w=0;x=0}}while(1){l=s+-48|0;y=s|32;if(l>>>0>=10){A=(s|0)==46;if(!(A|(y+-97|0)>>>0<6)){C=s;break}if(A)if(!n){D=1;E=o;F=p;G=q;H=r;J=t;K=v;L=u;M=v;N=u}else{C=46;break}else m=20}else m=20;if((m|0)==20){m=0;A=(s|0)>57?y+-87|0:l;do if(!((u|0)<0|(u|0)==0&v>>>0<8))if((u|0)<0|(u|0)==0&v>>>0<14){O=p*.0625;P=o;Q=O;R=q+O*+(A|0);S=r;break}else{l=(o|0)!=0|(A|0)==0;P=l?o:1;Q=p;R=l?q:q+p*.5;S=r;break}else{P=o;Q=p;R=q;S=A+(r<<4)|0}while(0);A=Vn(v|0,u|0,1,0)|0;D=n;E=P;F=Q;G=R;H=S;J=1;K=w;L=x;M=A;N=I}A=f[g>>2]|0;if(A>>>0<(f[j>>2]|0)>>>0){f[g>>2]=A+1;n=D;o=E;p=F;q=G;r=H;s=h[A>>0]|0;t=J;u=N;v=M;w=K;x=L;continue}else{n=D;o=E;p=F;q=G;r=H;s=Si(a)|0;t=J;u=N;v=M;w=K;x=L;continue}}do if(!t){L=(f[j>>2]|0)==0;if(!L)f[g>>2]=(f[g>>2]|0)+-1;if(e){if(!L)f[g>>2]=(f[g>>2]|0)+-1;if(!((n|0)==0|L))f[g>>2]=(f[g>>2]|0)+-1}else Ym(a,0);T=+(d|0)*0.0}else{L=(n|0)==0;K=L?v:w;M=L?u:x;if((u|0)<0|(u|0)==0&v>>>0<8){L=r;N=v;J=u;while(1){s=L<<4;H=N;N=Vn(N|0,J|0,1,0)|0;if(!((J|0)<0|(J|0)==0&H>>>0<7)){U=s;break}else{L=s;J=I}}}else U=r;if((C|32|0)==112){J=Re(a,e)|0;L=I;if((J|0)==0&(L|0)==-2147483648){if(!e){Ym(a,0);T=0.0;break}if(!(f[j>>2]|0)){V=0;W=0}else{f[g>>2]=(f[g>>2]|0)+-1;V=0;W=0}}else{V=J;W=L}}else if(!(f[j>>2]|0)){V=0;W=0}else{f[g>>2]=(f[g>>2]|0)+-1;V=0;W=0}L=Tn(K|0,M|0,2)|0;J=Vn(L|0,I|0,-32,-1)|0;L=Vn(J|0,I|0,V|0,W|0)|0;J=I;if(!U){T=+(d|0)*0.0;break}N=0-c|0;s=((N|0)<0)<<31>>31;if((J|0)>(s|0)|(J|0)==(s|0)&L>>>0>N>>>0){N=Vq()|0;f[N>>2]=34;T=+(d|0)*1797693134862315708145274.0e284*1797693134862315708145274.0e284;break}N=c+-106|0;s=((N|0)<0)<<31>>31;if((J|0)<(s|0)|(J|0)==(s|0)&L>>>0<N>>>0){N=Vq()|0;f[N>>2]=34;T=+(d|0)*2.2250738585072014e-308*2.2250738585072014e-308;break}if((U|0)>-1){G=q;N=U;s=L;H=J;while(1){E=!(G>=.5);o=N<<1|(E^1)&1;F=G+(E?G:G+-1.0);E=Vn(s|0,H|0,-1,-1)|0;D=I;if((o|0)>-1){G=F;N=o;s=E;H=D}else{X=F;Y=o;Z=E;_=D;break}}}else{X=q;Y=U;Z=L;_=J}H=((b|0)<0)<<31>>31;s=Xn(32,0,c|0,((c|0)<0)<<31>>31|0)|0;N=Vn(s|0,I|0,Z|0,_|0)|0;s=I;if((s|0)<(H|0)|(s|0)==(H|0)&N>>>0<b>>>0)if((N|0)>0){$=N;m=59}else{aa=0;ba=84;m=61}else{$=b;m=59}if((m|0)==59)if(($|0)<53){aa=$;ba=84-$|0;m=61}else{ca=0.0;da=$;ea=+(d|0)}if((m|0)==61){G=+(d|0);ca=+rq(+bk(1.0,ba),G);da=aa;ea=G}N=(Y&1|0)==0&(X!=0.0&(da|0)<32);G=(N?0.0:X)*ea+(ca+ea*+((Y+(N&1)|0)>>>0))-ca;if(!(G!=0.0)){N=Vq()|0;f[N>>2]=34}T=+sq(G,Z)}while(0);return +T}function Gc(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0;g=u;u=u+16|0;h=g+4|0;i=g;if(!(Gh(a,d)|0)){j=0;u=g;return j|0}d=a+84|0;k=f[d>>2]|0;l=a+88|0;m=f[l>>2]|0;if((m|0)!=(k|0))f[l>>2]=m+(~((m+-4-k|0)>>>2)<<2);f[d>>2]=0;f[l>>2]=0;f[a+92>>2]=0;if(k|0)Oq(k);k=a+72|0;l=f[k>>2]|0;d=a+76|0;if((f[d>>2]|0)!=(l|0))f[d>>2]=l;f[k>>2]=0;f[d>>2]=0;f[a+80>>2]=0;if(l|0)Oq(l);l=a+64|0;d=f[l>>2]|0;if((f[d+4>>2]|0)!=(f[d>>2]|0)){k=a+12|0;m=e+84|0;n=e+68|0;o=c+96|0;p=a+24|0;q=0;r=d;do{f[i>>2]=(q>>>0)/3|0;f[h>>2]=f[i>>2];d=_j(r,h)|0;r=f[l>>2]|0;do if(!d){s=f[(f[r+12>>2]|0)+(q<<2)>>2]|0;if((s|0)==-1){t=(f[a>>2]|0)+(q>>>5<<2)|0;f[t>>2]=f[t>>2]|1<<(q&31);t=q+1|0;v=((t>>>0)%3|0|0)==0?q+-2|0:t;if((v|0)==-1)w=-1;else w=f[(f[r>>2]|0)+(v<<2)>>2]|0;v=(f[k>>2]|0)+(w>>>5<<2)|0;f[v>>2]=f[v>>2]|1<<(w&31);v=(((q>>>0)%3|0|0)==0?2:-1)+q|0;if((v|0)==-1)x=-1;else x=f[(f[r>>2]|0)+(v<<2)>>2]|0;v=(f[k>>2]|0)+(x>>>5<<2)|0;f[v>>2]=f[v>>2]|1<<(x&31);break}if(s>>>0>=q>>>0){v=q+1|0;t=((v>>>0)%3|0|0)==0?q+-2|0:v;y=s+(((s>>>0)%3|0|0)==0?2:-1)|0;z=(t|0)==-1;if(!(b[m>>0]|0)){if(z)A=-1;else A=f[(f[o>>2]|0)+(((t|0)/3|0)*12|0)+(((t|0)%3|0)<<2)>>2]|0;B=(y|0)==-1;if(B)C=-1;else C=f[(f[o>>2]|0)+(((y|0)/3|0)*12|0)+(((y|0)%3|0)<<2)>>2]|0;D=f[n>>2]|0;if((f[D+(A<<2)>>2]|0)==(f[D+(C<<2)>>2]|0)){E=t+1|0;if(z)F=-1;else F=((E>>>0)%3|0|0)==0?t+-2|0:E;do if(!B)if(!((y>>>0)%3|0)){G=y+2|0;break}else{G=y+-1|0;break}else G=-1;while(0);if((F|0)==-1)H=-1;else H=f[(f[o>>2]|0)+(((F|0)/3|0)*12|0)+(((F|0)%3|0)<<2)>>2]|0;if((G|0)==-1)I=-1;else I=f[(f[o>>2]|0)+(((G|0)/3|0)*12|0)+(((G|0)%3|0)<<2)>>2]|0;if((f[D+(H<<2)>>2]|0)==(f[D+(I<<2)>>2]|0))break}}else{if(z)J=-1;else J=f[(f[o>>2]|0)+(((t|0)/3|0)*12|0)+(((t|0)%3|0)<<2)>>2]|0;B=(y|0)==-1;if(B)K=-1;else K=f[(f[o>>2]|0)+(((y|0)/3|0)*12|0)+(((y|0)%3|0)<<2)>>2]|0;if((J|0)==(K|0)){E=t+1|0;if(z)L=-1;else L=((E>>>0)%3|0|0)==0?t+-2|0:E;do if(!B)if(!((y>>>0)%3|0)){M=y+2|0;break}else{M=y+-1|0;break}else M=-1;while(0);if((L|0)==-1)N=-1;else N=f[(f[o>>2]|0)+(((L|0)/3|0)*12|0)+(((L|0)%3|0)<<2)>>2]|0;if((M|0)==-1)O=-1;else O=f[(f[o>>2]|0)+(((M|0)/3|0)*12|0)+(((M|0)%3|0)<<2)>>2]|0;if((N|0)==(O|0))break}}b[p>>0]=0;y=f[a>>2]|0;B=y+(q>>>5<<2)|0;f[B>>2]=f[B>>2]|1<<(q&31);B=y+(s>>>5<<2)|0;f[B>>2]=f[B>>2]|1<<(s&31);B=((v>>>0)%3|0|0)==0?q+-2|0:v;if((B|0)==-1)P=-1;else P=f[(f[r>>2]|0)+(B<<2)>>2]|0;B=(f[k>>2]|0)+(P>>>5<<2)|0;f[B>>2]=f[B>>2]|1<<(P&31);B=(((q>>>0)%3|0|0)==0?2:-1)+q|0;if((B|0)==-1)Q=-1;else Q=f[(f[r>>2]|0)+(B<<2)>>2]|0;B=(f[k>>2]|0)+(Q>>>5<<2)|0;f[B>>2]=f[B>>2]|1<<(Q&31);B=s+1|0;y=((B>>>0)%3|0|0)==0?s+-2|0:B;if((y|0)==-1)R=-1;else R=f[(f[r>>2]|0)+(y<<2)>>2]|0;y=(f[k>>2]|0)+(R>>>5<<2)|0;f[y>>2]=f[y>>2]|1<<(R&31);y=(((s>>>0)%3|0|0)==0?2:-1)+s|0;if((y|0)==-1)S=-1;else S=f[(f[r>>2]|0)+(y<<2)>>2]|0;y=(f[k>>2]|0)+(S>>>5<<2)|0;f[y>>2]=f[y>>2]|1<<(S&31)}}while(0);q=q+1|0}while(q>>>0<(f[r+4>>2]|0)-(f[r>>2]|0)>>2>>>0)}if((c|0)!=0&(e|0)!=0){Qc(a,c,e);j=1;u=g;return j|0}else{md(a,0,0);j=1;u=g;return j|0}return 0}function Hc(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0;d=u;u=u+32|0;e=d+12|0;g=d+8|0;h=d+4|0;i=d;j=a+8|0;a:do if(f[j>>2]|0?(k=f[a>>2]|0,l=a+4|0,f[a>>2]=l,f[(f[l>>2]|0)+8>>2]=0,f[l>>2]=0,f[j>>2]=0,m=f[k+4>>2]|0,n=(m|0)==0?k:m,n|0):0){m=a+4|0;k=n;n=f[b>>2]|0;while(1){if((n|0)==(f[c>>2]|0))break;o=k+16|0;f[o>>2]=f[n+16>>2];if((k|0)!=(n|0)){f[h>>2]=f[n+20>>2];f[i>>2]=n+24;f[g>>2]=f[h>>2];f[e>>2]=f[i>>2];Oc(k+20|0,g,e)}p=k+8|0;q=f[p>>2]|0;do if(q){r=f[q>>2]|0;if((r|0)==(k|0)){f[q>>2]=0;s=f[q+4>>2]|0;if(!s){t=q;break}else v=s;while(1){s=f[v>>2]|0;if(s|0){v=s;continue}s=f[v+4>>2]|0;if(!s)break;else v=s}t=v;break}else{f[q+4>>2]=0;if(!r){t=q;break}else w=r;while(1){s=f[w>>2]|0;if(s|0){w=s;continue}s=f[w+4>>2]|0;if(!s)break;else w=s}t=w;break}}else t=0;while(0);q=f[l>>2]|0;do if(q){r=f[o>>2]|0;s=q;while(1){if((r|0)<(f[s+16>>2]|0)){x=f[s>>2]|0;if(!x){y=22;break}else z=x}else{A=s+4|0;x=f[A>>2]|0;if(!x){y=25;break}else z=x}s=z}if((y|0)==22){y=0;B=s;C=s;break}else if((y|0)==25){y=0;B=s;C=A;break}}else{B=l;C=l}while(0);f[k>>2]=0;f[k+4>>2]=0;f[p>>2]=B;f[C>>2]=k;q=f[f[a>>2]>>2]|0;if(!q)D=k;else{f[a>>2]=q;D=f[C>>2]|0}Oe(f[m>>2]|0,D);f[j>>2]=(f[j>>2]|0)+1;q=f[n+4>>2]|0;if(!q){o=n+8|0;r=f[o>>2]|0;if((f[r>>2]|0)==(n|0))E=r;else{r=o;do{o=f[r>>2]|0;r=o+8|0;x=f[r>>2]|0}while((f[x>>2]|0)!=(o|0));E=x}}else{r=q;while(1){p=f[r>>2]|0;if(!p)break;else r=p}E=r}f[b>>2]=E;if(!t)break a;else{k=t;n=E}}n=f[k+8>>2]|0;if(!n)F=k;else{m=n;while(1){n=f[m+8>>2]|0;if(!n)break;else m=n}F=m}Oj(a,F)}while(0);F=f[b>>2]|0;E=f[c>>2]|0;if((F|0)==(E|0)){u=d;return}c=a+4|0;t=a+4|0;D=F;while(1){Kg(e,a,D+16|0);F=f[c>>2]|0;do if(F){C=f[e>>2]|0;B=f[C+16>>2]|0;A=F;while(1){if((B|0)<(f[A+16>>2]|0)){z=f[A>>2]|0;if(!z){y=43;break}else G=z}else{H=A+4|0;z=f[H>>2]|0;if(!z){y=46;break}else G=z}A=G}if((y|0)==43){y=0;I=A;J=A;K=C;break}else if((y|0)==46){y=0;I=A;J=H;K=C;break}}else{I=c;J=c;K=f[e>>2]|0}while(0);f[K>>2]=0;f[K+4>>2]=0;f[K+8>>2]=I;f[J>>2]=K;F=f[f[a>>2]>>2]|0;if(!F)L=K;else{f[a>>2]=F;L=f[J>>2]|0}Oe(f[t>>2]|0,L);f[j>>2]=(f[j>>2]|0)+1;F=f[D+4>>2]|0;if(!F){m=D+8|0;B=f[m>>2]|0;if((f[B>>2]|0)==(D|0))M=B;else{B=m;do{m=f[B>>2]|0;B=m+8|0;r=f[B>>2]|0}while((f[r>>2]|0)!=(m|0));M=r}}else{B=F;while(1){r=f[B>>2]|0;if(!r)break;else B=r}M=B}f[b>>2]=M;if((M|0)==(E|0))break;else D=M}u=d;return}function Ic(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0;g=u;u=u+32|0;d=g+16|0;h=g+8|0;i=g;j=f[a+28>>2]|0;k=f[a+32>>2]|0;l=e>>>0>1073741823?-1:e<<2;m=Lq(l)|0;sj(m|0,0,l|0)|0;n=Lq(l)|0;sj(n|0,0,l|0)|0;l=a+36|0;o=f[l>>2]|0;p=f[o+4>>2]|0;q=f[o>>2]|0;r=p-q|0;a:do if((r|0)>4){s=r>>2;t=(e|0)>0;v=a+8|0;w=h+4|0;x=i+4|0;y=d+4|0;z=m+4|0;A=h+4|0;B=i+4|0;C=d+4|0;D=j+12|0;E=e<<2;F=s+-1|0;if(p-q>>2>>>0>F>>>0){G=s;H=F;I=q}else{J=o;aq(J)}while(1){F=f[I+(H<<2)>>2]|0;if(t)sj(m|0,0,E|0)|0;if((F|0)!=-1){s=f[D>>2]|0;K=0;L=F;while(1){M=f[s+(L<<2)>>2]|0;if((M|0)!=-1){N=f[j>>2]|0;O=f[k>>2]|0;P=f[O+(f[N+(M<<2)>>2]<<2)>>2]|0;Q=M+1|0;R=((Q>>>0)%3|0|0)==0?M+-2|0:Q;if((R|0)==-1)S=-1;else S=f[N+(R<<2)>>2]|0;R=f[O+(S<<2)>>2]|0;Q=(((M>>>0)%3|0|0)==0?2:-1)+M|0;if((Q|0)==-1)T=-1;else T=f[N+(Q<<2)>>2]|0;Q=f[O+(T<<2)>>2]|0;if((P|0)<(H|0)&(R|0)<(H|0)&(Q|0)<(H|0)){O=X(P,e)|0;P=X(R,e)|0;R=X(Q,e)|0;if(t){Q=0;do{f[n+(Q<<2)>>2]=(f[b+(Q+R<<2)>>2]|0)+(f[b+(Q+P<<2)>>2]|0)-(f[b+(Q+O<<2)>>2]|0);Q=Q+1|0}while((Q|0)!=(e|0));if(t){Q=0;do{O=m+(Q<<2)|0;f[O>>2]=(f[O>>2]|0)+(f[n+(Q<<2)>>2]|0);Q=Q+1|0}while((Q|0)!=(e|0))}}U=K+1|0}else U=K}else U=K;Q=(((L>>>0)%3|0|0)==0?2:-1)+L|0;do if((Q|0)!=-1?(O=f[s+(Q<<2)>>2]|0,(O|0)!=-1):0)if(!((O>>>0)%3|0)){V=O+2|0;break}else{V=O+-1|0;break}else V=-1;while(0);L=(V|0)==(F|0)?-1:V;if((L|0)==-1)break;else K=U}K=X(H,e)|0;if(!U){W=K;Y=30}else{if(t){L=0;do{F=m+(L<<2)|0;f[F>>2]=(f[F>>2]|0)/(U|0)|0;L=L+1|0}while((L|0)!=(e|0))}L=b+(K<<2)|0;F=c+(K<<2)|0;s=f[L+4>>2]|0;Q=f[m>>2]|0;O=f[z>>2]|0;f[h>>2]=f[L>>2];f[A>>2]=s;f[i>>2]=Q;f[B>>2]=O;Od(d,v,h,i);f[F>>2]=f[d>>2];f[F+4>>2]=f[C>>2]}}else{W=X(H,e)|0;Y=30}if((Y|0)==30){Y=0;F=b+(W<<2)|0;O=b+((X(G+-2|0,e)|0)<<2)|0;Q=c+(W<<2)|0;s=f[F+4>>2]|0;L=f[O>>2]|0;P=f[O+4>>2]|0;f[h>>2]=f[F>>2];f[w>>2]=s;f[i>>2]=L;f[x>>2]=P;Od(d,v,h,i);f[Q>>2]=f[d>>2];f[Q+4>>2]=f[y>>2]}if((G|0)<=2)break a;Q=f[l>>2]|0;I=f[Q>>2]|0;P=H+-1|0;if((f[Q+4>>2]|0)-I>>2>>>0<=P>>>0){J=Q;break}else{Q=H;H=P;G=Q}}aq(J)}while(0);if((e|0)<=0){Z=a+8|0;_=b+4|0;$=f[b>>2]|0;aa=f[_>>2]|0;ba=m+4|0;ca=f[m>>2]|0;da=f[ba>>2]|0;f[h>>2]=$;ea=h+4|0;f[ea>>2]=aa;f[i>>2]=ca;fa=i+4|0;f[fa>>2]=da;Od(d,Z,h,i);ga=f[d>>2]|0;f[c>>2]=ga;ha=d+4|0;ia=f[ha>>2]|0;ja=c+4|0;f[ja>>2]=ia;Mq(n);Mq(m);u=g;return 1}sj(m|0,0,e<<2|0)|0;Z=a+8|0;_=b+4|0;$=f[b>>2]|0;aa=f[_>>2]|0;ba=m+4|0;ca=f[m>>2]|0;da=f[ba>>2]|0;f[h>>2]=$;ea=h+4|0;f[ea>>2]=aa;f[i>>2]=ca;fa=i+4|0;f[fa>>2]=da;Od(d,Z,h,i);ga=f[d>>2]|0;f[c>>2]=ga;ha=d+4|0;ia=f[ha>>2]|0;ja=c+4|0;f[ja>>2]=ia;Mq(n);Mq(m);u=g;return 1}function Jc(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0;g=a+8|0;Mh(g,b,d,e);d=e>>>0>1073741823?-1:e<<2;h=Lq(d)|0;sj(h|0,0,d|0)|0;d=f[a+48>>2]|0;i=f[a+56>>2]|0;j=f[i>>2]|0;k=(f[i+4>>2]|0)-j|0;l=k>>2;a:do if((k|0)>4){m=f[a+52>>2]|0;n=a+16|0;o=a+32|0;p=a+12|0;q=a+28|0;r=a+20|0;s=a+24|0;t=d+12|0;u=(e|0)>0;v=j;w=l;while(1){x=w;w=w+-1|0;if(l>>>0<=w>>>0)break;y=f[v+(w<<2)>>2]|0;z=X(w,e)|0;if((y|0)!=-1?(A=f[(f[t>>2]|0)+(y<<2)>>2]|0,(A|0)!=-1):0){y=f[d>>2]|0;B=f[m>>2]|0;C=f[B+(f[y+(A<<2)>>2]<<2)>>2]|0;D=A+1|0;E=((D>>>0)%3|0|0)==0?A+-2|0:D;if((E|0)==-1)F=-1;else F=f[y+(E<<2)>>2]|0;E=f[B+(F<<2)>>2]|0;D=(((A>>>0)%3|0|0)==0?2:-1)+A|0;if((D|0)==-1)G=-1;else G=f[y+(D<<2)>>2]|0;D=f[B+(G<<2)>>2]|0;if((C|0)<(w|0)&(E|0)<(w|0)&(D|0)<(w|0)){B=X(C,e)|0;C=X(E,e)|0;E=X(D,e)|0;if(u){D=0;do{f[h+(D<<2)>>2]=(f[b+(D+E<<2)>>2]|0)+(f[b+(D+C<<2)>>2]|0)-(f[b+(D+B<<2)>>2]|0);D=D+1|0}while((D|0)!=(e|0))}D=b+(z<<2)|0;B=c+(z<<2)|0;C=f[g>>2]|0;if((C|0)>0){E=0;y=h;A=C;while(1){if((A|0)>0){C=0;do{H=f[y+(C<<2)>>2]|0;I=f[n>>2]|0;if((H|0)>(I|0)){J=f[o>>2]|0;f[J+(C<<2)>>2]=I;K=J}else{J=f[p>>2]|0;I=f[o>>2]|0;f[I+(C<<2)>>2]=(H|0)<(J|0)?J:H;K=I}C=C+1|0}while((C|0)<(f[g>>2]|0));L=K}else L=f[o>>2]|0;C=(f[D+(E<<2)>>2]|0)-(f[L+(E<<2)>>2]|0)|0;I=B+(E<<2)|0;f[I>>2]=C;if((C|0)>=(f[q>>2]|0)){if((C|0)>(f[s>>2]|0)){M=C-(f[r>>2]|0)|0;N=42}}else{M=(f[r>>2]|0)+C|0;N=42}if((N|0)==42){N=0;f[I>>2]=M}E=E+1|0;A=f[g>>2]|0;if((E|0)>=(A|0))break;else y=L}}}else N=16}else N=16;if((N|0)==16?(N=0,y=b+(z<<2)|0,A=c+(z<<2)|0,E=f[g>>2]|0,(E|0)>0):0){B=0;D=b+((X(x+-2|0,e)|0)<<2)|0;I=E;while(1){if((I|0)>0){E=0;do{C=f[D+(E<<2)>>2]|0;H=f[n>>2]|0;if((C|0)>(H|0)){J=f[o>>2]|0;f[J+(E<<2)>>2]=H;O=J}else{J=f[p>>2]|0;H=f[o>>2]|0;f[H+(E<<2)>>2]=(C|0)<(J|0)?J:C;O=H}E=E+1|0}while((E|0)<(f[g>>2]|0));P=O}else P=f[o>>2]|0;E=(f[y+(B<<2)>>2]|0)-(f[P+(B<<2)>>2]|0)|0;H=A+(B<<2)|0;f[H>>2]=E;if((E|0)>=(f[q>>2]|0)){if((E|0)>(f[s>>2]|0)){Q=E-(f[r>>2]|0)|0;N=29}}else{Q=(f[r>>2]|0)+E|0;N=29}if((N|0)==29){N=0;f[H>>2]=Q}B=B+1|0;I=f[g>>2]|0;if((B|0)>=(I|0))break;else D=P}}if((x|0)<=2)break a}aq(i)}while(0);if((e|0)>0)sj(h|0,0,e<<2|0)|0;e=f[g>>2]|0;if((e|0)<=0){Mq(h);return 1}i=a+16|0;P=a+32|0;Q=a+12|0;O=a+28|0;L=a+20|0;M=a+24|0;a=0;K=h;G=e;while(1){if((G|0)>0){e=0;do{F=f[K+(e<<2)>>2]|0;d=f[i>>2]|0;if((F|0)>(d|0)){l=f[P>>2]|0;f[l+(e<<2)>>2]=d;R=l}else{l=f[Q>>2]|0;d=f[P>>2]|0;f[d+(e<<2)>>2]=(F|0)<(l|0)?l:F;R=d}e=e+1|0}while((e|0)<(f[g>>2]|0));S=R}else S=f[P>>2]|0;e=(f[b+(a<<2)>>2]|0)-(f[S+(a<<2)>>2]|0)|0;d=c+(a<<2)|0;f[d>>2]=e;if((e|0)>=(f[O>>2]|0)){if((e|0)>(f[M>>2]|0)){T=e-(f[L>>2]|0)|0;N=56}}else{T=(f[L>>2]|0)+e|0;N=56}if((N|0)==56){N=0;f[d>>2]=T}a=a+1|0;G=f[g>>2]|0;if((a|0)>=(G|0))break;else K=S}Mq(h);return 1}function Kc(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0;g=u;u=u+32|0;d=g+16|0;h=g+8|0;i=g;j=f[a+28>>2]|0;k=f[a+32>>2]|0;l=e>>>0>1073741823?-1:e<<2;m=Lq(l)|0;sj(m|0,0,l|0)|0;n=Lq(l)|0;sj(n|0,0,l|0)|0;l=a+36|0;o=f[l>>2]|0;p=f[o+4>>2]|0;q=f[o>>2]|0;r=p-q|0;a:do if((r|0)>4){s=r>>2;t=(e|0)>0;v=a+8|0;w=h+4|0;x=i+4|0;y=d+4|0;z=m+4|0;A=h+4|0;B=i+4|0;C=d+4|0;D=j+64|0;E=j+28|0;F=e<<2;G=s+-1|0;if(p-q>>2>>>0>G>>>0){H=s;I=G;J=q}else{K=o;aq(K)}while(1){G=f[J+(I<<2)>>2]|0;if(t)sj(m|0,0,F|0)|0;if((G|0)!=-1){s=f[j>>2]|0;L=0;M=G;while(1){if(((f[s+(M>>>5<<2)>>2]&1<<(M&31)|0)==0?(N=f[(f[(f[D>>2]|0)+12>>2]|0)+(M<<2)>>2]|0,(N|0)!=-1):0)?(O=f[E>>2]|0,P=f[k>>2]|0,Q=f[P+(f[O+(N<<2)>>2]<<2)>>2]|0,R=N+1|0,S=f[P+(f[O+((((R>>>0)%3|0|0)==0?N+-2|0:R)<<2)>>2]<<2)>>2]|0,R=f[P+(f[O+((((N>>>0)%3|0|0)==0?2:-1)+N<<2)>>2]<<2)>>2]|0,(Q|0)<(I|0)&(S|0)<(I|0)&(R|0)<(I|0)):0){N=X(Q,e)|0;Q=X(S,e)|0;S=X(R,e)|0;if(t){R=0;do{f[n+(R<<2)>>2]=(f[b+(R+S<<2)>>2]|0)+(f[b+(R+Q<<2)>>2]|0)-(f[b+(R+N<<2)>>2]|0);R=R+1|0}while((R|0)!=(e|0));if(t){R=0;do{N=m+(R<<2)|0;f[N>>2]=(f[N>>2]|0)+(f[n+(R<<2)>>2]|0);R=R+1|0}while((R|0)!=(e|0))}}T=L+1|0}else T=L;R=(((M>>>0)%3|0|0)==0?2:-1)+M|0;do if(((R|0)!=-1?(f[s+(R>>>5<<2)>>2]&1<<(R&31)|0)==0:0)?(N=f[(f[(f[D>>2]|0)+12>>2]|0)+(R<<2)>>2]|0,(N|0)!=-1):0)if(!((N>>>0)%3|0)){U=N+2|0;break}else{U=N+-1|0;break}else U=-1;while(0);M=(U|0)==(G|0)?-1:U;if((M|0)==-1)break;else L=T}L=X(I,e)|0;if(!T){V=L;W=28}else{if(t){M=0;do{G=m+(M<<2)|0;f[G>>2]=(f[G>>2]|0)/(T|0)|0;M=M+1|0}while((M|0)!=(e|0))}M=b+(L<<2)|0;G=c+(L<<2)|0;s=f[M+4>>2]|0;R=f[m>>2]|0;N=f[z>>2]|0;f[h>>2]=f[M>>2];f[A>>2]=s;f[i>>2]=R;f[B>>2]=N;Od(d,v,h,i);f[G>>2]=f[d>>2];f[G+4>>2]=f[C>>2]}}else{V=X(I,e)|0;W=28}if((W|0)==28){W=0;G=b+(V<<2)|0;N=b+((X(H+-2|0,e)|0)<<2)|0;R=c+(V<<2)|0;s=f[G+4>>2]|0;M=f[N>>2]|0;Q=f[N+4>>2]|0;f[h>>2]=f[G>>2];f[w>>2]=s;f[i>>2]=M;f[x>>2]=Q;Od(d,v,h,i);f[R>>2]=f[d>>2];f[R+4>>2]=f[y>>2]}if((H|0)<=2)break a;R=f[l>>2]|0;J=f[R>>2]|0;Q=I+-1|0;if((f[R+4>>2]|0)-J>>2>>>0<=Q>>>0){K=R;break}else{R=I;I=Q;H=R}}aq(K)}while(0);if((e|0)<=0){Y=a+8|0;Z=b+4|0;_=f[b>>2]|0;$=f[Z>>2]|0;aa=m+4|0;ba=f[m>>2]|0;ca=f[aa>>2]|0;f[h>>2]=_;da=h+4|0;f[da>>2]=$;f[i>>2]=ba;ea=i+4|0;f[ea>>2]=ca;Od(d,Y,h,i);fa=f[d>>2]|0;f[c>>2]=fa;ga=d+4|0;ha=f[ga>>2]|0;ia=c+4|0;f[ia>>2]=ha;Mq(n);Mq(m);u=g;return 1}sj(m|0,0,e<<2|0)|0;Y=a+8|0;Z=b+4|0;_=f[b>>2]|0;$=f[Z>>2]|0;aa=m+4|0;ba=f[m>>2]|0;ca=f[aa>>2]|0;f[h>>2]=_;da=h+4|0;f[da>>2]=$;f[i>>2]=ba;ea=i+4|0;f[ea>>2]=ca;Od(d,Y,h,i);fa=f[d>>2]|0;f[c>>2]=fa;ga=d+4|0;ha=f[ga>>2]|0;ia=c+4|0;f[ia>>2]=ha;Mq(n);Mq(m);u=g;return 1}function Lc(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0;g=a+8|0;Mh(g,b,d,e);d=e>>>0>1073741823?-1:e<<2;h=Lq(d)|0;sj(h|0,0,d|0)|0;d=f[a+48>>2]|0;i=f[a+56>>2]|0;j=f[i>>2]|0;k=(f[i+4>>2]|0)-j|0;l=k>>2;a:do if((k|0)>4){m=f[a+52>>2]|0;n=a+16|0;o=a+32|0;p=a+12|0;q=a+28|0;r=a+20|0;s=a+24|0;t=d+64|0;u=d+28|0;v=(e|0)>0;w=j;x=l;while(1){y=x;x=x+-1|0;if(l>>>0<=x>>>0)break;z=f[w+(x<<2)>>2]|0;A=X(x,e)|0;if((((z|0)!=-1?(f[(f[d>>2]|0)+(z>>>5<<2)>>2]&1<<(z&31)|0)==0:0)?(B=f[(f[(f[t>>2]|0)+12>>2]|0)+(z<<2)>>2]|0,(B|0)!=-1):0)?(z=f[u>>2]|0,C=f[m>>2]|0,D=f[C+(f[z+(B<<2)>>2]<<2)>>2]|0,E=B+1|0,F=f[C+(f[z+((((E>>>0)%3|0|0)==0?B+-2|0:E)<<2)>>2]<<2)>>2]|0,E=f[C+(f[z+((((B>>>0)%3|0|0)==0?2:-1)+B<<2)>>2]<<2)>>2]|0,(D|0)<(x|0)&(F|0)<(x|0)&(E|0)<(x|0)):0){B=X(D,e)|0;D=X(F,e)|0;F=X(E,e)|0;if(v){E=0;do{f[h+(E<<2)>>2]=(f[b+(E+F<<2)>>2]|0)+(f[b+(E+D<<2)>>2]|0)-(f[b+(E+B<<2)>>2]|0);E=E+1|0}while((E|0)!=(e|0))}E=b+(A<<2)|0;B=c+(A<<2)|0;D=f[g>>2]|0;if((D|0)>0){F=0;z=h;C=D;while(1){if((C|0)>0){D=0;do{G=f[z+(D<<2)>>2]|0;H=f[n>>2]|0;if((G|0)>(H|0)){I=f[o>>2]|0;f[I+(D<<2)>>2]=H;J=I}else{I=f[p>>2]|0;H=f[o>>2]|0;f[H+(D<<2)>>2]=(G|0)<(I|0)?I:G;J=H}D=D+1|0}while((D|0)<(f[g>>2]|0));K=J}else K=f[o>>2]|0;D=(f[E+(F<<2)>>2]|0)-(f[K+(F<<2)>>2]|0)|0;H=B+(F<<2)|0;f[H>>2]=D;if((D|0)>=(f[q>>2]|0)){if((D|0)>(f[s>>2]|0)){L=D-(f[r>>2]|0)|0;M=39}}else{L=(f[r>>2]|0)+D|0;M=39}if((M|0)==39){M=0;f[H>>2]=L}F=F+1|0;C=f[g>>2]|0;if((F|0)>=(C|0))break;else z=K}}}else M=13;if((M|0)==13?(M=0,z=b+(A<<2)|0,C=c+(A<<2)|0,F=f[g>>2]|0,(F|0)>0):0){B=0;E=b+((X(y+-2|0,e)|0)<<2)|0;H=F;while(1){if((H|0)>0){F=0;do{D=f[E+(F<<2)>>2]|0;G=f[n>>2]|0;if((D|0)>(G|0)){I=f[o>>2]|0;f[I+(F<<2)>>2]=G;N=I}else{I=f[p>>2]|0;G=f[o>>2]|0;f[G+(F<<2)>>2]=(D|0)<(I|0)?I:D;N=G}F=F+1|0}while((F|0)<(f[g>>2]|0));O=N}else O=f[o>>2]|0;F=(f[z+(B<<2)>>2]|0)-(f[O+(B<<2)>>2]|0)|0;G=C+(B<<2)|0;f[G>>2]=F;if((F|0)>=(f[q>>2]|0)){if((F|0)>(f[s>>2]|0)){P=F-(f[r>>2]|0)|0;M=26}}else{P=(f[r>>2]|0)+F|0;M=26}if((M|0)==26){M=0;f[G>>2]=P}B=B+1|0;H=f[g>>2]|0;if((B|0)>=(H|0))break;else E=O}}if((y|0)<=2)break a}aq(i)}while(0);if((e|0)>0)sj(h|0,0,e<<2|0)|0;e=f[g>>2]|0;if((e|0)<=0){Mq(h);return 1}i=a+16|0;O=a+32|0;P=a+12|0;N=a+28|0;K=a+20|0;L=a+24|0;a=0;J=h;d=e;while(1){if((d|0)>0){e=0;do{l=f[J+(e<<2)>>2]|0;j=f[i>>2]|0;if((l|0)>(j|0)){k=f[O>>2]|0;f[k+(e<<2)>>2]=j;Q=k}else{k=f[P>>2]|0;j=f[O>>2]|0;f[j+(e<<2)>>2]=(l|0)<(k|0)?k:l;Q=j}e=e+1|0}while((e|0)<(f[g>>2]|0));R=Q}else R=f[O>>2]|0;e=(f[b+(a<<2)>>2]|0)-(f[R+(a<<2)>>2]|0)|0;j=c+(a<<2)|0;f[j>>2]=e;if((e|0)>=(f[N>>2]|0)){if((e|0)>(f[L>>2]|0)){S=e-(f[K>>2]|0)|0;M=53}}else{S=(f[K>>2]|0)+e|0;M=53}if((M|0)==53){M=0;f[j>>2]=S}a=a+1|0;d=f[g>>2]|0;if((a|0)>=(d|0))break;else J=R}Mq(h);return 1}function Mc(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0;h=u;u=u+48|0;i=h+28|0;j=h+24|0;k=h;l=h+12|0;m=h+40|0;if((c|0)<0){n=0;u=h;return n|0}if(!c){n=1;u=h;return n|0}o=(d|0)>1;p=o?d:1;f[k>>2]=0;d=k+4|0;f[d>>2]=0;f[k+8>>2]=0;gk(k,c);q=k+8|0;if(o){o=0;r=0;while(1){s=1;t=f[a+(r<<2)>>2]|0;do{v=f[a+(s+r<<2)>>2]|0;t=t>>>0<v>>>0?v:t;s=s+1|0}while((s|0)!=(p|0));s=(_(t|0)|0)^31;v=t>>>0>o>>>0?t:o;w=(t|0)==0?1:s+1|0;f[i>>2]=w;s=f[d>>2]|0;if(s>>>0<(f[q>>2]|0)>>>0){f[s>>2]=w;f[d>>2]=s+4}else Ri(k,i);r=r+p|0;if((r|0)>=(c|0)){x=v;break}else o=v}}else{o=0;r=0;while(1){v=f[a+(o<<2)>>2]|0;s=(_(v|0)|0)^31;w=v>>>0>r>>>0?v:r;y=(v|0)==0?1:s+1|0;f[i>>2]=y;s=f[d>>2]|0;if(s>>>0<(f[q>>2]|0)>>>0){f[s>>2]=y;f[d>>2]=s+4}else Ri(k,i);o=o+p|0;if((o|0)>=(c|0)){x=w;break}else r=w}}f[l>>2]=0;r=l+4|0;f[r>>2]=0;f[l+8>>2]=0;o=f[k>>2]|0;q=(f[d>>2]|0)-o|0;w=q>>2;if(w){if(w>>>0>1073741823)aq(l);s=ln(q)|0;f[r>>2]=s;f[l>>2]=s;f[l+8>>2]=s+(w<<2);w=s;if((q|0)>0){y=s+(q>>>2<<2)|0;kh(s|0,o|0,q|0)|0;f[r>>2]=y;q=y-w>>2;if((y|0)==(s|0)){z=q;A=s;B=0;C=0}else{y=0;o=0;v=0;while(1){D=Vn(o|0,v|0,f[s+(y<<2)>>2]|0,0)|0;E=I;y=y+1|0;if(y>>>0>=q>>>0){z=q;A=s;B=D;C=E;break}else{o=D;v=E}}}}else{F=w;G=18}}else{F=0;G=18}if((G|0)==18){z=0;A=F;B=0;C=0}F=Jg(A,z,32,i)|0;z=I;A=f[i>>2]<<3;w=Tn(A|0,((A|0)<0)<<31>>31|0,1)|0;A=I;v=un(B|0,C|0,p|0,0)|0;C=Vn(F|0,z|0,v|0,I|0)|0;v=Vn(C|0,I|0,w|0,A|0)|0;A=I;w=f[l>>2]|0;if(w|0){l=f[r>>2]|0;if((l|0)!=(w|0))f[r>>2]=l+(~((l+-4-w|0)>>>2)<<2);Oq(w)}w=Jg(a,c,x,i)|0;l=f[i>>2]|0;r=((x-l|0)/64|0)+l<<3;C=l<<3;z=Vn(w|0,I|0,C|0,((C|0)<0)<<31>>31|0)|0;C=Vn(z|0,I|0,r|0,((r|0)<0)<<31>>31|0)|0;r=I;z=(_((x>>>0>1?x:1)|0)|0)^30;if(e){f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;w=ln(32)|0;f[i>>2]=w;f[i+8>>2]=-2147483616;f[i+4>>2]=22;F=w;B=15964;o=F+22|0;do{b[F>>0]=b[B>>0]|0;F=F+1|0;B=B+1|0}while((F|0)<(o|0));b[w+22>>0]=0;w=(Jh(e,i)|0)==0;if((b[i+11>>0]|0)<0)Oq(f[i>>2]|0);if(!w){f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;w=ln(32)|0;f[i>>2]=w;f[i+8>>2]=-2147483616;f[i+4>>2]=22;F=w;B=15964;o=F+22|0;do{b[F>>0]=b[B>>0]|0;F=F+1|0;B=B+1|0}while((F|0)<(o|0));b[w+22>>0]=0;w=Mk(e,i)|0;if((b[i+11>>0]|0)<0)Oq(f[i>>2]|0);H=w}else G=32}else G=32;if((G|0)==32)H=z>>>0<18&((A|0)>(r|0)|(A|0)==(r|0)&v>>>0>=C>>>0)&1;b[m>>0]=H;C=g+16|0;v=f[C+4>>2]|0;if(!((v|0)>0|(v|0)==0&(f[C>>2]|0)>>>0>0)){f[j>>2]=f[g+4>>2];f[i>>2]=f[j>>2];Me(g,i,m,m+1|0)|0}switch(H|0){case 0:{J=td(a,c,p,k,g)|0;break}case 1:{J=Tc(a,c,x,l,e,g)|0;break}default:J=0}g=f[k>>2]|0;if(g|0){k=f[d>>2]|0;if((k|0)!=(g|0))f[d>>2]=k+(~((k+-4-g|0)>>>2)<<2);Oq(g)}n=J;u=h;return n|0}function Nc(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0;if((b|0)<0)return;c=a+12|0;d=f[c>>2]|0;e=f[a+8>>2]|0;g=e;h=d;if(d-e>>2>>>0<=b>>>0)return;e=g+(b<<2)|0;d=f[(f[e>>2]|0)+56>>2]|0;i=f[(f[g+(b<<2)>>2]|0)+60>>2]|0;g=e+4|0;if((g|0)!=(h|0)){j=g;g=e;do{k=f[j>>2]|0;f[j>>2]=0;l=f[g>>2]|0;f[g>>2]=k;if(l|0){k=l+88|0;m=f[k>>2]|0;f[k>>2]=0;if(m|0){k=f[m+8>>2]|0;if(k|0){n=m+12|0;if((f[n>>2]|0)!=(k|0))f[n>>2]=k;Oq(k)}Oq(m)}m=f[l+68>>2]|0;if(m|0){k=l+72|0;n=f[k>>2]|0;if((n|0)!=(m|0))f[k>>2]=n+(~((n+-4-m|0)>>>2)<<2);Oq(m)}m=l+64|0;n=f[m>>2]|0;f[m>>2]=0;if(n|0){m=f[n>>2]|0;if(m|0){k=n+4|0;if((f[k>>2]|0)!=(m|0))f[k>>2]=m;Oq(m)}Oq(n)}Oq(l)}j=j+4|0;g=g+4|0}while((j|0)!=(h|0));j=f[c>>2]|0;if((j|0)!=(g|0)){o=g;p=j;q=24}}else{o=e;p=h;q=24}if((q|0)==24){q=p;do{p=q+-4|0;f[c>>2]=p;h=f[p>>2]|0;f[p>>2]=0;if(h|0){p=h+88|0;e=f[p>>2]|0;f[p>>2]=0;if(e|0){p=f[e+8>>2]|0;if(p|0){j=e+12|0;if((f[j>>2]|0)!=(p|0))f[j>>2]=p;Oq(p)}Oq(e)}e=f[h+68>>2]|0;if(e|0){p=h+72|0;j=f[p>>2]|0;if((j|0)!=(e|0))f[p>>2]=j+(~((j+-4-e|0)>>>2)<<2);Oq(e)}e=h+64|0;j=f[e>>2]|0;f[e>>2]=0;if(j|0){e=f[j>>2]|0;if(e|0){p=j+4|0;if((f[p>>2]|0)!=(e|0))f[p>>2]=e;Oq(e)}Oq(j)}Oq(h)}q=f[c>>2]|0}while((q|0)!=(o|0))}o=f[a+4>>2]|0;a:do if(o|0){q=o+44|0;c=f[q>>2]|0;h=f[o+40>>2]|0;while(1){if((h|0)==(c|0))break a;r=h+4|0;if((f[(f[h>>2]|0)+40>>2]|0)==(i|0))break;else h=r}if((r|0)!=(c|0)){j=r;e=h;do{p=f[j>>2]|0;f[j>>2]=0;g=f[e>>2]|0;f[e>>2]=p;if(g|0){bj(g);Oq(g)}j=j+4|0;e=e+4|0}while((j|0)!=(c|0));j=f[q>>2]|0;if((j|0)==(e|0))break;else{s=e;t=j}}else{s=h;t=c}j=t;do{g=j+-4|0;f[q>>2]=g;p=f[g>>2]|0;f[g>>2]=0;if(p|0){bj(p);Oq(p)}j=f[q>>2]|0}while((j|0)!=(s|0))}while(0);b:do if((d|0)<5){s=f[a+20+(d*12|0)>>2]|0;t=a+20+(d*12|0)+4|0;r=f[t>>2]|0;i=r;c:do if((s|0)==(r|0))u=s;else{o=s;while(1){if((f[o>>2]|0)==(b|0)){u=o;break c}o=o+4|0;if((o|0)==(r|0))break b}}while(0);if((u|0)!=(r|0)){s=u+4|0;o=i-s|0;j=o>>2;if(!j)v=r;else{im(u|0,s|0,o|0)|0;v=f[t>>2]|0}o=u+(j<<2)|0;if((v|0)!=(o|0))f[t>>2]=v+(~((v+-4-o|0)>>>2)<<2)}}while(0);v=f[a+24>>2]|0;u=f[a+20>>2]|0;d=u;if((v|0)!=(u|0)){o=v-u>>2;u=0;do{v=d+(u<<2)|0;j=f[v>>2]|0;if((j|0)>(b|0))f[v>>2]=j+-1;u=u+1|0}while(u>>>0<o>>>0)}o=f[a+36>>2]|0;u=f[a+32>>2]|0;d=u;if((o|0)!=(u|0)){j=o-u>>2;u=0;do{o=d+(u<<2)|0;v=f[o>>2]|0;if((v|0)>(b|0))f[o>>2]=v+-1;u=u+1|0}while(u>>>0<j>>>0)}j=f[a+48>>2]|0;u=f[a+44>>2]|0;d=u;if((j|0)!=(u|0)){v=j-u>>2;u=0;do{j=d+(u<<2)|0;o=f[j>>2]|0;if((o|0)>(b|0))f[j>>2]=o+-1;u=u+1|0}while(u>>>0<v>>>0)}v=f[a+60>>2]|0;u=f[a+56>>2]|0;d=u;if((v|0)!=(u|0)){o=v-u>>2;u=0;do{v=d+(u<<2)|0;j=f[v>>2]|0;if((j|0)>(b|0))f[v>>2]=j+-1;u=u+1|0}while(u>>>0<o>>>0)}o=f[a+72>>2]|0;u=f[a+68>>2]|0;a=u;if((o|0)==(u|0))return;d=o-u>>2;u=0;do{o=a+(u<<2)|0;j=f[o>>2]|0;if((j|0)>(b|0))f[o>>2]=j+-1;u=u+1|0}while(u>>>0<d>>>0);return}function Oc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0;e=a+8|0;a:do if(f[e>>2]|0?(g=f[a>>2]|0,h=a+4|0,f[a>>2]=h,f[(f[h>>2]|0)+8>>2]=0,f[h>>2]=0,f[e>>2]=0,i=f[g+4>>2]|0,j=(i|0)==0?g:i,j|0):0){i=a+4|0;g=j;j=f[c>>2]|0;while(1){if((j|0)==(f[d>>2]|0))break;k=g+16|0;am(k,j+16|0)|0;am(g+28|0,j+28|0)|0;l=g+8|0;m=f[l>>2]|0;do if(m){n=f[m>>2]|0;if((n|0)==(g|0)){f[m>>2]=0;o=f[m+4>>2]|0;if(!o){p=m;break}else q=o;while(1){o=f[q>>2]|0;if(o|0){q=o;continue}o=f[q+4>>2]|0;if(!o)break;else q=o}p=q;break}else{f[m+4>>2]=0;if(!n){p=m;break}else r=n;while(1){o=f[r>>2]|0;if(o|0){r=o;continue}o=f[r+4>>2]|0;if(!o)break;else r=o}p=r;break}}else p=0;while(0);m=f[h>>2]|0;do if(m){n=b[k+11>>0]|0;o=n<<24>>24<0;s=o?f[g+20>>2]|0:n&255;n=o?f[k>>2]|0:k;o=m;while(1){t=o+16|0;u=b[t+11>>0]|0;v=u<<24>>24<0;w=v?f[o+20>>2]|0:u&255;u=w>>>0<s>>>0?w:s;if((u|0)!=0?(x=Vk(n,v?f[t>>2]|0:t,u)|0,(x|0)!=0):0)if((x|0)<0)y=22;else y=24;else if(s>>>0<w>>>0)y=22;else y=24;if((y|0)==22){y=0;w=f[o>>2]|0;if(!w){y=23;break}else z=w}else if((y|0)==24){y=0;A=o+4|0;w=f[A>>2]|0;if(!w){y=26;break}else z=w}o=z}if((y|0)==23){y=0;B=o;C=o;break}else if((y|0)==26){y=0;B=A;C=o;break}}else{B=h;C=h}while(0);f[g>>2]=0;f[g+4>>2]=0;f[l>>2]=C;f[B>>2]=g;m=f[f[a>>2]>>2]|0;if(!m)D=g;else{f[a>>2]=m;D=f[B>>2]|0}Oe(f[i>>2]|0,D);f[e>>2]=(f[e>>2]|0)+1;m=f[j+4>>2]|0;if(!m){k=j+8|0;s=f[k>>2]|0;if((f[s>>2]|0)==(j|0))E=s;else{s=k;do{k=f[s>>2]|0;s=k+8|0;n=f[s>>2]|0}while((f[n>>2]|0)!=(k|0));E=n}}else{s=m;while(1){l=f[s>>2]|0;if(!l)break;else s=l}E=s}f[c>>2]=E;if(!p)break a;else{g=p;j=E}}j=f[g+8>>2]|0;if(!j)F=g;else{i=j;while(1){j=f[i+8>>2]|0;if(!j)break;else i=j}F=i}Ej(a,F)}while(0);F=f[c>>2]|0;E=f[d>>2]|0;if((F|0)==(E|0))return;else G=F;while(1){bf(a,G+16|0)|0;F=f[G+4>>2]|0;if(!F){d=G+8|0;p=f[d>>2]|0;if((f[p>>2]|0)==(G|0))H=p;else{p=d;do{d=f[p>>2]|0;p=d+8|0;e=f[p>>2]|0}while((f[e>>2]|0)!=(d|0));H=e}}else{p=F;while(1){i=f[p>>2]|0;if(!i)break;else p=i}H=p}f[c>>2]=H;if((H|0)==(E|0))break;else G=H}return}function Pc(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0;b=u;u=u+32|0;c=b+4|0;d=b;e=a+16|0;g=f[e>>2]|0;if(g>>>0>112){f[e>>2]=g+-113;g=a+4|0;e=f[g>>2]|0;h=f[e>>2]|0;i=e+4|0;f[g>>2]=i;e=a+8|0;j=f[e>>2]|0;k=a+12|0;l=f[k>>2]|0;m=l;do if((j|0)==(l|0)){n=f[a>>2]|0;o=n;if(i>>>0>n>>>0){p=i;q=((p-o>>2)+1|0)/-2|0;r=i+(q<<2)|0;s=j-p|0;p=s>>2;if(!p)t=i;else{im(r|0,i|0,s|0)|0;t=f[g>>2]|0}s=r+(p<<2)|0;f[e>>2]=s;f[g>>2]=t+(q<<2);v=s;break}s=m-o>>1;o=(s|0)==0?1:s;if(o>>>0>1073741823){s=ra(8)|0;Oo(s,16035);f[s>>2]=7256;va(s|0,1112,110)}s=ln(o<<2)|0;q=s;p=s+(o>>>2<<2)|0;r=p;w=s+(o<<2)|0;if((i|0)==(j|0)){x=r;y=n}else{n=p;p=r;o=i;do{f[n>>2]=f[o>>2];n=p+4|0;p=n;o=o+4|0}while((o|0)!=(j|0));x=p;y=f[a>>2]|0}f[a>>2]=q;f[g>>2]=r;f[e>>2]=x;f[k>>2]=w;if(!y)v=x;else{Oq(y);v=f[e>>2]|0}}else v=j;while(0);f[v>>2]=h;f[e>>2]=(f[e>>2]|0)+4;u=b;return}e=a+8|0;h=f[e>>2]|0;v=a+4|0;j=h-(f[v>>2]|0)|0;y=a+12|0;x=f[y>>2]|0;k=x-(f[a>>2]|0)|0;if(j>>>0>=k>>>0){g=k>>1;k=(g|0)==0?1:g;f[c+12>>2]=0;f[c+16>>2]=a+12;if(k>>>0>1073741823){g=ra(8)|0;Oo(g,16035);f[g>>2]=7256;va(g|0,1112,110)}g=ln(k<<2)|0;f[c>>2]=g;i=g+(j>>2<<2)|0;j=c+8|0;f[j>>2]=i;m=c+4|0;f[m>>2]=i;i=c+12|0;f[i>>2]=g+(k<<2);k=ln(4068)|0;f[d>>2]=k;Ag(c,d);d=f[e>>2]|0;while(1){z=f[v>>2]|0;if((d|0)==(z|0))break;k=d+-4|0;ug(c,k);d=k}k=z;z=f[a>>2]|0;f[a>>2]=f[c>>2];f[c>>2]=z;f[v>>2]=f[m>>2];f[m>>2]=k;m=f[e>>2]|0;f[e>>2]=f[j>>2];f[j>>2]=m;g=f[y>>2]|0;f[y>>2]=f[i>>2];f[i>>2]=g;g=m;if((d|0)!=(g|0))f[j>>2]=g+(~((g+-4-k|0)>>>2)<<2);if(z|0)Oq(z);u=b;return}if((x|0)!=(h|0)){h=ln(4068)|0;f[c>>2]=h;Ag(a,c);u=b;return}h=ln(4068)|0;f[c>>2]=h;ug(a,c);c=f[v>>2]|0;h=f[c>>2]|0;x=c+4|0;f[v>>2]=x;c=f[e>>2]|0;z=f[y>>2]|0;k=z;do if((c|0)==(z|0)){g=f[a>>2]|0;j=g;if(x>>>0>g>>>0){d=x;m=((d-j>>2)+1|0)/-2|0;i=x+(m<<2)|0;t=c-d|0;d=t>>2;if(!d)A=x;else{im(i|0,x|0,t|0)|0;A=f[v>>2]|0}t=i+(d<<2)|0;f[e>>2]=t;f[v>>2]=A+(m<<2);B=t;break}t=k-j>>1;j=(t|0)==0?1:t;if(j>>>0>1073741823){t=ra(8)|0;Oo(t,16035);f[t>>2]=7256;va(t|0,1112,110)}t=ln(j<<2)|0;m=t;d=t+(j>>>2<<2)|0;i=d;l=t+(j<<2)|0;if((x|0)==(c|0)){C=i;D=g}else{g=d;d=i;j=x;do{f[g>>2]=f[j>>2];g=d+4|0;d=g;j=j+4|0}while((j|0)!=(c|0));C=d;D=f[a>>2]|0}f[a>>2]=m;f[v>>2]=i;f[e>>2]=C;f[y>>2]=l;if(!D)B=C;else{Oq(D);B=f[e>>2]|0}}else B=c;while(0);f[B>>2]=h;f[e>>2]=(f[e>>2]|0)+4;u=b;return}function Qc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0;e=u;u=u+16|0;g=e+8|0;h=e+4|0;i=e;j=a+64|0;k=f[j>>2]|0;if((f[k+28>>2]|0)==(f[k+24>>2]|0)){u=e;return}l=c+96|0;c=a+52|0;m=d+84|0;n=d+68|0;d=a+56|0;o=a+60|0;p=a+12|0;q=a+28|0;r=a+40|0;s=a+44|0;t=a+48|0;v=0;w=0;x=k;while(1){k=f[(f[x+24>>2]|0)+(w<<2)>>2]|0;if((k|0)==-1){y=v;z=x}else{A=v+1|0;B=f[(f[l>>2]|0)+(((k|0)/3|0)*12|0)+(((k|0)%3|0)<<2)>>2]|0;if(!(b[m>>0]|0))C=f[(f[n>>2]|0)+(B<<2)>>2]|0;else C=B;f[g>>2]=C;B=f[d>>2]|0;if(B>>>0<(f[o>>2]|0)>>>0){f[B>>2]=C;f[d>>2]=B+4}else Ri(c,g);f[g>>2]=k;f[h>>2]=0;a:do if(!(f[(f[p>>2]|0)+(w>>>5<<2)>>2]&1<<(w&31)))D=k;else{B=k+1|0;E=((B>>>0)%3|0|0)==0?k+-2|0:B;if(((E|0)!=-1?(f[(f[a>>2]|0)+(E>>>5<<2)>>2]&1<<(E&31)|0)==0:0)?(B=f[(f[(f[j>>2]|0)+12>>2]|0)+(E<<2)>>2]|0,E=B+1|0,(B|0)!=-1):0){F=((E>>>0)%3|0|0)==0?B+-2|0:E;f[h>>2]=F;if((F|0)==-1){D=k;break}else G=F;while(1){f[g>>2]=G;F=G+1|0;E=((F>>>0)%3|0|0)==0?G+-2|0:F;if((E|0)==-1)break;if(f[(f[a>>2]|0)+(E>>>5<<2)>>2]&1<<(E&31)|0)break;F=f[(f[(f[j>>2]|0)+12>>2]|0)+(E<<2)>>2]|0;E=F+1|0;if((F|0)==-1)break;B=((E>>>0)%3|0|0)==0?F+-2|0:E;f[h>>2]=B;if((B|0)==-1){D=G;break a}else G=B}f[h>>2]=-1;D=G;break}f[h>>2]=-1;D=k}while(0);f[(f[q>>2]|0)+(D<<2)>>2]=v;k=f[s>>2]|0;if((k|0)==(f[t>>2]|0))Ri(r,g);else{f[k>>2]=f[g>>2];f[s>>2]=k+4}k=f[j>>2]|0;B=f[g>>2]|0;b:do if(((B|0)!=-1?(E=(((B>>>0)%3|0|0)==0?2:-1)+B|0,(E|0)!=-1):0)?(F=f[(f[k+12>>2]|0)+(E<<2)>>2]|0,(F|0)!=-1):0){E=F+(((F>>>0)%3|0|0)==0?2:-1)|0;f[h>>2]=E;if((E|0)!=-1&(E|0)!=(B|0)){F=A;H=v;I=E;while(1){E=I+1|0;J=((E>>>0)%3|0|0)==0?I+-2|0:E;do if(f[(f[a>>2]|0)+(J>>>5<<2)>>2]&1<<(J&31)){E=F+1|0;K=f[(f[l>>2]|0)+(((I|0)/3|0)*12|0)+(((I|0)%3|0)<<2)>>2]|0;if(!(b[m>>0]|0))L=f[(f[n>>2]|0)+(K<<2)>>2]|0;else L=K;f[i>>2]=L;K=f[d>>2]|0;if(K>>>0<(f[o>>2]|0)>>>0){f[K>>2]=L;f[d>>2]=K+4}else Ri(c,i);K=f[s>>2]|0;if((K|0)==(f[t>>2]|0)){Ri(r,h);M=E;N=F;break}else{f[K>>2]=f[h>>2];f[s>>2]=K+4;M=E;N=F;break}}else{M=F;N=H}while(0);f[(f[q>>2]|0)+(f[h>>2]<<2)>>2]=N;O=f[j>>2]|0;J=f[h>>2]|0;if((J|0)==-1)break;E=(((J>>>0)%3|0|0)==0?2:-1)+J|0;if((E|0)==-1)break;J=f[(f[O+12>>2]|0)+(E<<2)>>2]|0;if((J|0)==-1)break;I=J+(((J>>>0)%3|0|0)==0?2:-1)|0;f[h>>2]=I;if(!((I|0)!=-1?(I|0)!=(f[g>>2]|0):0)){P=M;Q=O;break b}else{F=M;H=N}}f[h>>2]=-1;P=M;Q=O}else{P=A;Q=k}}else R=28;while(0);if((R|0)==28){R=0;f[h>>2]=-1;P=A;Q=k}y=P;z=Q}w=w+1|0;if(w>>>0>=(f[z+28>>2]|0)-(f[z+24>>2]|0)>>2>>>0)break;else{v=y;x=z}}u=e;return}function Rc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,i=0,j=0.0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,D=0,E=0,F=0;switch(c|0){case 0:{e=-149;g=24;i=4;break}case 1:{e=-1074;g=53;i=4;break}case 2:{e=-1074;g=53;i=4;break}default:j=0.0}a:do if((i|0)==4){c=a+4|0;k=a+100|0;do{l=f[c>>2]|0;if(l>>>0<(f[k>>2]|0)>>>0){f[c>>2]=l+1;m=h[l>>0]|0}else m=Si(a)|0}while((eq(m)|0)!=0);b:do switch(m|0){case 43:case 45:{l=1-(((m|0)==45&1)<<1)|0;n=f[c>>2]|0;if(n>>>0<(f[k>>2]|0)>>>0){f[c>>2]=n+1;o=h[n>>0]|0;p=l;break b}else{o=Si(a)|0;p=l;break b}break}default:{o=m;p=1}}while(0);l=0;n=o;while(1){if((n|32|0)!=(b[18546+l>>0]|0)){q=l;r=n;break}do if(l>>>0<7){s=f[c>>2]|0;if(s>>>0<(f[k>>2]|0)>>>0){f[c>>2]=s+1;t=h[s>>0]|0;break}else{t=Si(a)|0;break}}else t=n;while(0);s=l+1|0;if(s>>>0<8){l=s;n=t}else{q=s;r=t;break}}c:do switch(q|0){case 8:break;case 3:{i=23;break}default:{n=(d|0)!=0;if(n&q>>>0>3)if((q|0)==8)break c;else{i=23;break c}d:do if(!q){l=0;s=r;while(1){if((s|32|0)!=(b[18555+l>>0]|0)){u=l;v=s;break d}do if(l>>>0<2){w=f[c>>2]|0;if(w>>>0<(f[k>>2]|0)>>>0){f[c>>2]=w+1;x=h[w>>0]|0;break}else{x=Si(a)|0;break}}else x=s;while(0);w=l+1|0;if(w>>>0<3){l=w;s=x}else{u=w;v=x;break}}}else{u=q;v=r}while(0);switch(u|0){case 3:{s=f[c>>2]|0;if(s>>>0<(f[k>>2]|0)>>>0){f[c>>2]=s+1;y=h[s>>0]|0}else y=Si(a)|0;if((y|0)==40)z=1;else{if(!(f[k>>2]|0)){j=B;break a}f[c>>2]=(f[c>>2]|0)+-1;j=B;break a}while(1){s=f[c>>2]|0;if(s>>>0<(f[k>>2]|0)>>>0){f[c>>2]=s+1;A=h[s>>0]|0}else A=Si(a)|0;if(!((A+-48|0)>>>0<10|(A+-65|0)>>>0<26)?!((A|0)==95|(A+-97|0)>>>0<26):0)break;z=z+1|0}if((A|0)==41){j=B;break a}s=(f[k>>2]|0)==0;if(!s)f[c>>2]=(f[c>>2]|0)+-1;if(!n){l=Vq()|0;f[l>>2]=22;Ym(a,0);j=0.0;break a}if(!z){j=B;break a}else D=z;while(1){D=D+-1|0;if(!s)f[c>>2]=(f[c>>2]|0)+-1;if(!D){j=B;break a}}break}case 0:{if((v|0)==48){s=f[c>>2]|0;if(s>>>0<(f[k>>2]|0)>>>0){f[c>>2]=s+1;E=h[s>>0]|0}else E=Si(a)|0;if((E|32|0)==120){j=+Fc(a,g,e,p,d);break a}if(!(f[k>>2]|0))F=48;else{f[c>>2]=(f[c>>2]|0)+-1;F=48}}else F=v;j=+nb(a,F,g,e,p,d);break a;break}default:{if(f[k>>2]|0)f[c>>2]=(f[c>>2]|0)+-1;s=Vq()|0;f[s>>2]=22;Ym(a,0);j=0.0;break a}}}}while(0);if((i|0)==23){s=(f[k>>2]|0)==0;if(!s)f[c>>2]=(f[c>>2]|0)+-1;if((d|0)!=0&q>>>0>3){n=q;do{if(!s)f[c>>2]=(f[c>>2]|0)+-1;n=n+-1|0}while(n>>>0>3)}}j=+$($(p|0)*$(C))}while(0);return +j}function Sc(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0;g=u;u=u+16|0;h=g;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;i=ln(16)|0;f[h>>2]=i;f[h+8>>2]=-2147483632;f[h+4>>2]=15;j=i;k=14479;l=j+15|0;do{b[j>>0]=b[k>>0]|0;j=j+1|0;k=k+1|0}while((j|0)<(l|0));b[i+15>>0]=0;i=Hk(c,h,-1)|0;if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);switch(i|0){case 0:{m=ln(52)|0;j=m;l=j+52|0;do{f[j>>2]=0;j=j+4|0}while((j|0)<(l|0));Zn(m);n=4044;o=m;break}case -1:{if((mi(c)|0)==10){m=ln(52)|0;j=m;l=j+52|0;do{f[j>>2]=0;j=j+4|0}while((j|0)<(l|0));Zn(m);n=4044;o=m}else p=6;break}default:p=6}a:do if((p|0)==6){m=d+8|0;q=d+12|0;r=f[q>>2]|0;s=f[m>>2]|0;b:do if((r-s|0)>0){t=h+8|0;v=h+4|0;w=c+16|0;x=h+11|0;y=0;z=s;A=r;c:while(1){B=f[(f[z+(y<<2)>>2]|0)+28>>2]|0;switch(B|0){case 9:{p=12;break}case 6:case 5:case 4:case 2:{C=z;D=A;break}default:{if((B|2|0)!=3)break c;if((B|0)==9)p=12;else{C=z;D=A}}}if((p|0)==12){p=0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;B=ln(32)|0;f[h>>2]=B;f[t>>2]=-2147483616;f[v>>2]=17;j=B;k=14495;l=j+17|0;do{b[j>>0]=b[k>>0]|0;j=j+1|0;k=k+1|0}while((j|0)<(l|0));b[B+17>>0]=0;E=f[w>>2]|0;if(E){F=w;G=E;d:while(1){E=G;while(1){if((f[E+16>>2]|0)>=0)break;H=f[E+4>>2]|0;if(!H){I=F;break d}else E=H}G=f[E>>2]|0;if(!G){I=E;break}else F=E}if(((I|0)!=(w|0)?(f[I+16>>2]|0)<=0:0)?(F=I+20|0,(Jh(F,h)|0)!=0):0)J=Hk(F,h,-1)|0;else p=21}else p=21;if((p|0)==21){p=0;J=Hk(c,h,-1)|0}if((b[x>>0]|0)<0)Oq(f[h>>2]|0);if((J|0)<1)break;C=f[m>>2]|0;D=f[q>>2]|0}y=y+1|0;if((y|0)>=(D-C>>2|0))break b;else{z=C;A=D}}if((i|0)!=1){A=ln(52)|0;j=A;l=j+52|0;do{f[j>>2]=0;j=j+4|0}while((j|0)<(l|0));Zn(A);n=4044;o=A;break a}f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;z=ln(32)|0;f[h>>2]=z;f[h+8>>2]=-2147483616;f[h+4>>2]=24;j=z;k=14513;l=j+24|0;do{b[j>>0]=b[k>>0]|0;j=j+1|0;k=k+1|0}while((j|0)<(l|0));b[z+24>>0]=0;f[a>>2]=-1;pj(a+4|0,h);if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);u=g;return}while(0);q=ln(52)|0;j=q;l=j+52|0;do{f[j>>2]=0;j=j+4|0}while((j|0)<(l|0));Zn(q);n=3988;o=q}while(0);f[o>>2]=n;ip(o,d);Md(a,o,c,e);Va[f[(f[o>>2]|0)+4>>2]&127](o);u=g;return}function Tc(a,c,d,e,g,h){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;var i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0;i=u;u=u+32|0;j=i+4|0;k=i;l=i+16|0;m=(_(e|0)|0)^31;if((e|0)>0)if(m>>>0>17){n=0;u=i;return n|0}else o=m+1|0;else o=1;do if(g){m=ln(48)|0;f[j>>2]=m;f[j+8>>2]=-2147483600;f[j+4>>2]=33;e=m;p=15987;q=e+33|0;do{b[e>>0]=b[p>>0]|0;e=e+1|0;p=p+1|0}while((e|0)<(q|0));b[m+33>>0]=0;r=(Jh(g,j)|0)==0;if((b[j+11>>0]|0)<0)Oq(f[j>>2]|0);if(!r){r=ln(48)|0;f[j>>2]=r;f[j+8>>2]=-2147483600;f[j+4>>2]=33;e=r;p=15987;q=e+33|0;do{b[e>>0]=b[p>>0]|0;e=e+1|0;p=p+1|0}while((e|0)<(q|0));b[r+33>>0]=0;p=Mk(g,j)|0;if((b[j+11>>0]|0)<0)Oq(f[j>>2]|0);if((p|0)<4){s=o+-2|0;break}if((p|0)<6){s=o+-1|0;break}if((p|0)>9){s=o+2|0;break}else{s=o+((p|0)>7&1)|0;break}}else s=o}else s=o;while(0);o=(s|0)>1?s:1;s=(o|0)<18?o:18;b[l>>0]=s;o=h+16|0;g=f[o+4>>2]|0;if(!((g|0)>0|(g|0)==0&(f[o>>2]|0)>>>0>0)){f[k>>2]=f[h+4>>2];f[j>>2]=f[k>>2];Me(h,j,l,l+1|0)|0}do switch(s&31){case 1:case 0:{n=ue(a,c,d,h)|0;u=i;return n|0}case 2:{n=te(a,c,d,h)|0;u=i;return n|0}case 3:{n=se(a,c,d,h)|0;u=i;return n|0}case 4:{n=re(a,c,d,h)|0;u=i;return n|0}case 5:{n=qe(a,c,d,h)|0;u=i;return n|0}case 6:{n=pe(a,c,d,h)|0;u=i;return n|0}case 7:{n=oe(a,c,d,h)|0;u=i;return n|0}case 8:{n=ne(a,c,d,h)|0;u=i;return n|0}case 9:{n=me(a,c,d,h)|0;u=i;return n|0}case 10:{n=le(a,c,d,h)|0;u=i;return n|0}case 11:{n=ke(a,c,d,h)|0;u=i;return n|0}case 12:{n=ie(a,c,d,h)|0;u=i;return n|0}case 13:{n=he(a,c,d,h)|0;u=i;return n|0}case 14:{n=ge(a,c,d,h)|0;u=i;return n|0}case 15:{n=fe(a,c,d,h)|0;u=i;return n|0}case 16:{n=ee(a,c,d,h)|0;u=i;return n|0}case 17:{n=de(a,c,d,h)|0;u=i;return n|0}case 18:{n=ce(a,c,d,h)|0;u=i;return n|0}default:{n=0;u=i;return n|0}}while(0);return 0}function Uc(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*1048576.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==1048576){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;xb(z,A,g);a:do if((x|0)<1048576){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=1048576-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>1048576;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-1048576|0;m=x;while(1){v=1048576.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==1048576){C=p;D=1048576;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=1048576){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*9.5367431640625e-07)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function Vc(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*1048576.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==1048576){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;yb(z,A,g);a:do if((x|0)<1048576){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=1048576-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>1048576;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-1048576|0;m=x;while(1){v=1048576.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==1048576){C=p;D=1048576;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=1048576){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*9.5367431640625e-07)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function Wc(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*1048576.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==1048576){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;zb(z,A,g);a:do if((x|0)<1048576){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=1048576-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>1048576;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-1048576|0;m=x;while(1){v=1048576.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==1048576){C=p;D=1048576;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=1048576){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*9.5367431640625e-07)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function Xc(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*1048576.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==1048576){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Ab(z,A,g);a:do if((x|0)<1048576){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=1048576-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>1048576;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-1048576|0;m=x;while(1){v=1048576.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==1048576){C=p;D=1048576;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=1048576){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*9.5367431640625e-07)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function Yc(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*1048576.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==1048576){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Fb(z,A,g);a:do if((x|0)<1048576){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=1048576-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>1048576;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-1048576|0;m=x;while(1){v=1048576.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==1048576){C=p;D=1048576;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=1048576){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*9.5367431640625e-07)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function Zc(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*524288.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==524288){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Bb(z,A,g);a:do if((x|0)<524288){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=524288-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>524288;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-524288|0;m=x;while(1){v=524288.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==524288){C=p;D=524288;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=524288){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*1.9073486328125e-06)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function _c(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*262144.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==262144){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Cb(z,A,g);a:do if((x|0)<262144){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=262144-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>262144;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-262144|0;m=x;while(1){v=262144.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==262144){C=p;D=262144;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=262144){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*3.814697265625e-06)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function $c(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*65536.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==65536){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Db(z,A,g);a:do if((x|0)<65536){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=65536-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>65536;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-65536|0;m=x;while(1){v=65536.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==65536){C=p;D=65536;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=65536){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.0000152587890625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function ad(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*32768.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==32768){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Eb(z,A,g);a:do if((x|0)<32768){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=32768-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>32768;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-32768|0;m=x;while(1){v=32768.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==32768){C=p;D=32768;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=32768){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000030517578125)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function bd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*8192.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==8192){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Gb(z,A,g);a:do if((x|0)<8192){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=8192-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>8192;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-8192|0;m=x;while(1){v=8192.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==8192){C=p;D=8192;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=8192){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.0001220703125)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function cd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*4096.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==4096){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Hb(z,A,g);a:do if((x|0)<4096){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=4096-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>4096;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-4096|0;m=x;while(1){v=4096.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==4096){C=p;D=4096;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=4096){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000244140625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function dd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*4096.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==4096){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Ib(z,A,g);a:do if((x|0)<4096){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=4096-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>4096;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-4096|0;m=x;while(1){v=4096.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==4096){C=p;D=4096;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=4096){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000244140625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function ed(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*4096.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==4096){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Jb(z,A,g);a:do if((x|0)<4096){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=4096-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>4096;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-4096|0;m=x;while(1){v=4096.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==4096){C=p;D=4096;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=4096){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000244140625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function fd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*4096.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==4096){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Kb(z,A,g);a:do if((x|0)<4096){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=4096-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>4096;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-4096|0;m=x;while(1){v=4096.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==4096){C=p;D=4096;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=4096){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000244140625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function gd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*4096.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==4096){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Lb(z,A,g);a:do if((x|0)<4096){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=4096-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>4096;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-4096|0;m=x;while(1){v=4096.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==4096){C=p;D=4096;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=4096){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000244140625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function hd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*4096.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==4096){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Mb(z,A,g);a:do if((x|0)<4096){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=4096-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>4096;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-4096|0;m=x;while(1){v=4096.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==4096){C=p;D=4096;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=4096){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000244140625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function id(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*4096.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==4096){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Nb(z,A,g);a:do if((x|0)<4096){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=4096-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>4096;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-4096|0;m=x;while(1){v=4096.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==4096){C=p;D=4096;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=4096){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000244140625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function jd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0.0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0.0,F=0.0,G=0.0;e=u;u=u+16|0;g=e;h=e+4|0;if((c|0)>0){i=0;j=0;k=0;l=0;while(1){m=b+(j<<3)|0;n=f[m>>2]|0;o=f[m+4>>2]|0;m=Vn(n|0,o|0,k|0,l|0)|0;p=I;q=(n|0)==0&(o|0)==0?i:j;j=j+1|0;if((j|0)==(c|0)){r=q;s=p;t=m;break}else{i=q;k=m;l=p}}}else{r=0;s=0;t=0}l=r+1|0;f[a+12>>2]=l;k=a+4|0;i=f[k>>2]|0;c=f[a>>2]|0;j=i-c>>3;p=c;c=i;if(l>>>0<=j>>>0){if(l>>>0<j>>>0?(i=p+(l<<3)|0,(i|0)!=(c|0)):0)f[k>>2]=c+(~((c+-8-i|0)>>>3)<<3)}else wh(a,l-j|0);v=+(t>>>0)+4294967296.0*+(s>>>0);s=(r|0)<0;if(!s){t=f[a>>2]|0;j=0;i=0;do{c=b+(i<<3)|0;k=f[c>>2]|0;p=f[c+4>>2]|0;c=~~((+(k>>>0)+4294967296.0*+(p>>>0))/v*4096.0+.5)>>>0;m=((k|0)!=0|(p|0)!=0)&(c|0)==0?1:c;f[t+(i<<3)>>2]=m;j=m+j|0;i=i+1|0}while((i|0)!=(l|0));if((j|0)==4096){if(s){w=0;u=e;return w|0}}else{x=j;y=12}}else{x=0;y=12}if((y|0)==12){f[h>>2]=0;j=h+4|0;f[j>>2]=0;f[h+8>>2]=0;do if(l)if(l>>>0>1073741823)aq(h);else{i=l<<2;t=ln(i)|0;f[h>>2]=t;m=t+(l<<2)|0;f[h+8>>2]=m;sj(t|0,0,i|0)|0;f[j>>2]=m;z=t;A=m;break}else{z=0;A=0}while(0);if(!s?(f[z>>2]=0,r|0):0){m=1;do{f[z+(m<<2)>>2]=m;m=m+1|0}while((m|0)!=(l|0))}f[g>>2]=a;Ob(z,A,g);a:do if((x|0)<4096){g=(f[a>>2]|0)+(f[(f[j>>2]|0)+-4>>2]<<3)|0;f[g>>2]=4096-x+(f[g>>2]|0);B=0}else{g=f[h>>2]|0;if((r|0)<=0){A=(x|0)>4096;while(1)if(!A){B=0;break a}}A=f[a>>2]|0;z=x+-4096|0;m=x;while(1){v=4096.0/+(m|0);t=r;i=z;c=m;while(1){p=A+(f[g+(t<<2)>>2]<<3)|0;k=f[p>>2]|0;if(k>>>0<2){y=28;break}q=k-~~+J(+(v*+(k>>>0)))|0;o=(q|0)==0?1:q;q=(o|0)<(k|0)?o:k+-1|0;o=(q|0)>(i|0)?i:q;f[p>>2]=k-o;k=c-o|0;p=i-o|0;if((k|0)==4096){C=p;D=4096;break}if((t|0)>1){t=t+-1|0;i=p;c=k}else{C=p;D=k;break}}if((y|0)==28){y=0;if((t|0)==(r|0)){B=1;break a}else{C=i;D=c}}if((C|0)>0){z=C;m=D}else{B=0;break}}}while(0);D=f[h>>2]|0;if(D|0){h=f[j>>2]|0;if((h|0)!=(D|0))f[j>>2]=h+(~((h+-4-D|0)>>>2)<<2);Oq(D)}if((B|0)!=0|s){w=0;u=e;return w|0}}B=f[a>>2]|0;D=0;h=0;do{f[B+(D<<3)+4>>2]=h;h=(f[B+(D<<3)>>2]|0)+h|0;D=D+1|0}while((D|0)!=(l|0));if((h|0)!=4096){w=0;u=e;return w|0}if(s)E=0.0;else{s=f[a>>2]|0;h=0;v=0.0;while(1){D=f[s+(h<<3)>>2]|0;if(!D)F=v;else{B=b+(h<<3)|0;G=+((f[B>>2]|0)>>>0)+4294967296.0*+((f[B+4>>2]|0)>>>0);F=v+ +Zg(+(D>>>0)*.000244140625)*G}h=h+1|0;if((h|0)==(l|0)){E=F;break}else v=F}}F=+W(+-E);l=+K(F)>=1.0?(F>0.0?~~+Y(+J(F/4294967296.0),4294967295.0)>>>0:~~+W((F-+(~~F>>>0))/4294967296.0)>>>0):0;h=a+16|0;f[h>>2]=~~F>>>0;f[h+4>>2]=l;w=Le(a,d)|0;u=e;return w|0}function kd(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0;g=u;u=u+32|0;d=g+16|0;h=g+8|0;i=g;j=e>>>0>1073741823?-1:e<<2;k=Lq(j)|0;sj(k|0,0,j|0)|0;j=f[a+28>>2]|0;l=a+36|0;m=f[l>>2]|0;n=f[m+4>>2]|0;o=f[m>>2]|0;p=n-o|0;a:do if((p|0)>4){q=p>>2;r=f[a+32>>2]|0;s=a+8|0;t=h+4|0;v=i+4|0;w=d+4|0;x=j+12|0;y=(e|0)>0;z=k+4|0;A=h+4|0;B=i+4|0;C=d+4|0;D=q+-1|0;if(n-o>>2>>>0>D>>>0){E=q;F=D;G=o}else{H=m;aq(H)}while(1){D=f[G+(F<<2)>>2]|0;q=X(F,e)|0;if((D|0)!=-1?(I=f[(f[x>>2]|0)+(D<<2)>>2]|0,(I|0)!=-1):0){D=f[j>>2]|0;J=f[r>>2]|0;K=f[J+(f[D+(I<<2)>>2]<<2)>>2]|0;L=I+1|0;M=((L>>>0)%3|0|0)==0?I+-2|0:L;if((M|0)==-1)N=-1;else N=f[D+(M<<2)>>2]|0;M=f[J+(N<<2)>>2]|0;L=(((I>>>0)%3|0|0)==0?2:-1)+I|0;if((L|0)==-1)O=-1;else O=f[D+(L<<2)>>2]|0;L=f[J+(O<<2)>>2]|0;if((K|0)<(F|0)&(M|0)<(F|0)&(L|0)<(F|0)){J=X(K,e)|0;K=X(M,e)|0;M=X(L,e)|0;if(y){L=0;do{f[k+(L<<2)>>2]=(f[b+(L+M<<2)>>2]|0)+(f[b+(L+K<<2)>>2]|0)-(f[b+(L+J<<2)>>2]|0);L=L+1|0}while((L|0)!=(e|0))}L=b+(q<<2)|0;J=c+(q<<2)|0;K=f[L+4>>2]|0;M=f[k>>2]|0;D=f[z>>2]|0;f[h>>2]=f[L>>2];f[A>>2]=K;f[i>>2]=M;f[B>>2]=D;Od(d,s,h,i);f[J>>2]=f[d>>2];f[J+4>>2]=f[C>>2]}else P=15}else P=15;if((P|0)==15){P=0;J=b+(q<<2)|0;D=b+((X(E+-2|0,e)|0)<<2)|0;M=c+(q<<2)|0;K=f[J+4>>2]|0;L=f[D>>2]|0;I=f[D+4>>2]|0;f[h>>2]=f[J>>2];f[t>>2]=K;f[i>>2]=L;f[v>>2]=I;Od(d,s,h,i);f[M>>2]=f[d>>2];f[M+4>>2]=f[w>>2]}if((E|0)<=2)break a;M=f[l>>2]|0;G=f[M>>2]|0;I=F+-1|0;if((f[M+4>>2]|0)-G>>2>>>0<=I>>>0){H=M;break}else{M=F;F=I;E=M}}aq(H)}while(0);if((e|0)<=0){Q=a+8|0;R=b+4|0;S=f[b>>2]|0;T=f[R>>2]|0;U=k+4|0;V=f[k>>2]|0;W=f[U>>2]|0;f[h>>2]=S;Y=h+4|0;f[Y>>2]=T;f[i>>2]=V;Z=i+4|0;f[Z>>2]=W;Od(d,Q,h,i);_=f[d>>2]|0;f[c>>2]=_;$=d+4|0;aa=f[$>>2]|0;ba=c+4|0;f[ba>>2]=aa;Mq(k);u=g;return 1}sj(k|0,0,e<<2|0)|0;Q=a+8|0;R=b+4|0;S=f[b>>2]|0;T=f[R>>2]|0;U=k+4|0;V=f[k>>2]|0;W=f[U>>2]|0;f[h>>2]=S;Y=h+4|0;f[Y>>2]=T;f[i>>2]=V;Z=i+4|0;f[Z>>2]=W;Od(d,Q,h,i);_=f[d>>2]|0;f[c>>2]=_;$=d+4|0;aa=f[$>>2]|0;ba=c+4|0;f[ba>>2]=aa;Mq(k);u=g;return 1}function ld(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0;d=u;u=u+32|0;e=d;g=d+20|0;h=d+24|0;i=d+8|0;j=f[a>>2]|0;k=j+8|0;l=j;j=f[l>>2]|0;m=f[l+4>>2]|0;l=Vn(j|0,m|0,f[k>>2]|0,f[k+4>>2]|0)|0;k=I;n=Vn(l|0,k|0,(l|0)==0&(k|0)==0&1|0,0)|0;k=~~((+(j>>>0)+4294967296.0*+(m>>>0))/(+(n>>>0)+4294967296.0*+(I>>>0))*256.0+.5)>>>0;n=k>>>0<255?k:255;k=n+((n|0)==0&1)&255;b[h>>0]=k;n=a+12|0;m=a+16|0;j=((f[m>>2]|0)-(f[n>>2]|0)<<1)+64|0;f[i>>2]=0;l=i+4|0;f[l>>2]=0;f[i+8>>2]=0;if(!j)o=0;else{if((j|0)<0)aq(i);p=ln(j)|0;f[l>>2]=p;f[i>>2]=p;f[i+8>>2]=p+j;q=j;j=p;do{b[j>>0]=0;j=(f[l>>2]|0)+1|0;f[l>>2]=j;q=q+-1|0}while((q|0)!=0);o=f[i>>2]|0}q=a+28|0;j=(f[q>>2]|0)+-1|0;a:do if((j|0)>-1){p=a+24|0;r=j;s=4096;t=0;v=k;while(1){w=(f[p>>2]&1<<r|0)!=0;x=(w?0-(v&255)&255:v)&255;if(s>>>0<x<<12>>>0){y=t;z=s}else{b[o+t>>0]=s;y=t+1|0;z=s>>>8}un(f[4092+(x<<3)>>2]|0,0,z|0,0)|0;A=z+(w?0:0-v&255)+(X((z+I|0)>>>(f[4092+(x<<3)+4>>2]|0),256-x|0)|0)|0;x=r+-1|0;if((x|0)<=-1){B=A;C=y;break a}r=x;s=A;t=y;v=b[h>>0]|0}}else{B=4096;C=0}while(0);y=f[m>>2]|0;if((f[n>>2]|0)==(y|0)){D=B;E=C}else{z=B;B=C;C=y;while(1){C=C+-4|0;y=f[C>>2]|0;k=31;j=z;v=B;while(1){t=b[h>>0]|0;s=(1<<k&y|0)!=0;r=(s?0-(t&255)&255:t)&255;if(j>>>0<r<<12>>>0){F=v;G=j}else{b[o+v>>0]=j;F=v+1|0;G=j>>>8}un(f[4092+(r<<3)>>2]|0,0,G|0,0)|0;j=G+(s?0:0-t&255)+(X((G+I|0)>>>(f[4092+(r<<3)+4>>2]|0),256-r|0)|0)|0;if((k|0)<=0)break;else{k=k+-1|0;v=F}}if((f[n>>2]|0)==(C|0)){D=j;E=F;break}else{z=j;B=F}}}F=D+-4096|0;do if(F>>>0>=64){if(F>>>0<16384){B=o+E|0;z=D+12288|0;b[B>>0]=z;H=2;J=z>>>8;K=B+1|0;L=25;break}if(F>>>0<4194304){B=o+E|0;z=D+8384512|0;b[B>>0]=z;b[B+1>>0]=z>>>8;H=3;J=z>>>16;K=B+2|0;L=25}else M=E}else{H=1;J=F;K=o+E|0;L=25}while(0);if((L|0)==25){b[K>>0]=J;M=H+E|0}E=c+16|0;H=E;J=f[H+4>>2]|0;if(!((J|0)>0|(J|0)==0&(f[H>>2]|0)>>>0>0)){f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+1|0)|0}ci(M,c)|0;h=f[i>>2]|0;H=E;E=f[H+4>>2]|0;if(!((E|0)>0|(E|0)==0&(f[H>>2]|0)>>>0>0)){f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+M|0)|0}M=e;f[M>>2]=0;f[M+4>>2]=0;qf(a,2,e);e=f[a+12>>2]|0;M=f[m>>2]|0;if((M|0)!=(e|0))f[m>>2]=M+(~((M+-4-e|0)>>>2)<<2);f[a+24>>2]=0;f[q>>2]=0;q=f[i>>2]|0;if(!q){u=d;return}if((f[l>>2]|0)!=(q|0))f[l>>2]=q;Oq(q);u=d;return}function md(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0;c=u;u=u+16|0;b=c+8|0;d=c+4|0;e=c;g=a+64|0;h=f[g>>2]|0;if((f[h+28>>2]|0)==(f[h+24>>2]|0)){u=c;return}i=a+52|0;j=a+56|0;k=a+60|0;l=a+12|0;m=a+28|0;n=a+40|0;o=a+44|0;p=a+48|0;q=0;r=0;s=h;while(1){h=f[(f[s+24>>2]|0)+(r<<2)>>2]|0;if((h|0)==-1){t=q;v=s}else{w=q+1|0;f[b>>2]=q;x=f[j>>2]|0;if((x|0)==(f[k>>2]|0))Ri(i,b);else{f[x>>2]=q;f[j>>2]=x+4}f[d>>2]=h;f[e>>2]=0;a:do if(!(f[(f[l>>2]|0)+(r>>>5<<2)>>2]&1<<(r&31)))y=h;else{x=h+1|0;z=((x>>>0)%3|0|0)==0?h+-2|0:x;if(((z|0)!=-1?(f[(f[a>>2]|0)+(z>>>5<<2)>>2]&1<<(z&31)|0)==0:0)?(x=f[(f[(f[g>>2]|0)+12>>2]|0)+(z<<2)>>2]|0,z=x+1|0,(x|0)!=-1):0){A=((z>>>0)%3|0|0)==0?x+-2|0:z;f[e>>2]=A;if((A|0)==-1){y=h;break}else B=A;while(1){f[d>>2]=B;A=B+1|0;z=((A>>>0)%3|0|0)==0?B+-2|0:A;if((z|0)==-1)break;if(f[(f[a>>2]|0)+(z>>>5<<2)>>2]&1<<(z&31)|0)break;A=f[(f[(f[g>>2]|0)+12>>2]|0)+(z<<2)>>2]|0;z=A+1|0;if((A|0)==-1)break;x=((z>>>0)%3|0|0)==0?A+-2|0:z;f[e>>2]=x;if((x|0)==-1){y=B;break a}else B=x}f[e>>2]=-1;y=B;break}f[e>>2]=-1;y=h}while(0);f[(f[m>>2]|0)+(y<<2)>>2]=f[b>>2];h=f[o>>2]|0;if((h|0)==(f[p>>2]|0))Ri(n,d);else{f[h>>2]=f[d>>2];f[o>>2]=h+4}h=f[g>>2]|0;x=f[d>>2]|0;b:do if(((x|0)!=-1?(z=(((x>>>0)%3|0|0)==0?2:-1)+x|0,(z|0)!=-1):0)?(A=f[(f[h+12>>2]|0)+(z<<2)>>2]|0,(A|0)!=-1):0){z=A+(((A>>>0)%3|0|0)==0?2:-1)|0;f[e>>2]=z;if((z|0)!=-1&(z|0)!=(x|0)){A=w;C=z;while(1){z=C+1|0;D=((z>>>0)%3|0|0)==0?C+-2|0:z;do if(f[(f[a>>2]|0)+(D>>>5<<2)>>2]&1<<(D&31)){z=A+1|0;f[b>>2]=A;E=f[j>>2]|0;if((E|0)==(f[k>>2]|0))Ri(i,b);else{f[E>>2]=A;f[j>>2]=E+4}E=f[o>>2]|0;if((E|0)==(f[p>>2]|0)){Ri(n,e);F=z;break}else{f[E>>2]=f[e>>2];f[o>>2]=E+4;F=z;break}}else F=A;while(0);f[(f[m>>2]|0)+(f[e>>2]<<2)>>2]=f[b>>2];G=f[g>>2]|0;D=f[e>>2]|0;if((D|0)==-1)break;z=(((D>>>0)%3|0|0)==0?2:-1)+D|0;if((z|0)==-1)break;D=f[(f[G+12>>2]|0)+(z<<2)>>2]|0;if((D|0)==-1)break;C=D+(((D>>>0)%3|0|0)==0?2:-1)|0;f[e>>2]=C;if(!((C|0)!=-1?(C|0)!=(f[d>>2]|0):0)){H=F;I=G;break b}else A=F}f[e>>2]=-1;H=F;I=G}else{H=w;I=h}}else J=26;while(0);if((J|0)==26){J=0;f[e>>2]=-1;H=w;I=h}t=H;v=I}r=r+1|0;if(r>>>0>=(f[v+28>>2]|0)-(f[v+24>>2]|0)>>2>>>0)break;else{q=t;s=v}}u=c;return}function nd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0;c=u;u=u+16|0;d=c+8|0;e=c+4|0;g=c;h=a+124|0;f[h>>2]=(f[h>>2]|0)+1;h=a+88|0;i=a+120|0;j=f[i>>2]|0;k=j+1|0;do if((j|0)!=-1){l=((k>>>0)%3|0|0)==0?j+-2|0:k;if(!((j>>>0)%3|0)){m=j+2|0;n=l;break}else{m=j+-1|0;n=l;break}}else{m=-1;n=-1}while(0);k=a+104|0;l=a+92|0;o=f[l>>2]|0;p=o+(n<<2)|0;q=f[k>>2]|0;r=q+(f[p>>2]<<2)|0;s=f[r>>2]|0;switch(b|0){case 1:case 0:{f[r>>2]=s+-1;r=q+(f[o+(m<<2)>>2]<<2)|0;f[r>>2]=(f[r>>2]|0)+-1;if((b|0)==1){if((m|0)!=-1?(r=f[(f[(f[h>>2]|0)+12>>2]|0)+(m<<2)>>2]|0,(r|0)!=-1):0){t=a+64|0;v=1;w=r;while(1){r=f[t>>2]|0;x=f[(f[r>>2]|0)+36>>2]|0;f[e>>2]=(w>>>0)/3|0;f[d>>2]=f[e>>2];if(Ra[x&127](r,d)|0){y=v;break}r=w+1|0;x=((r>>>0)%3|0|0)==0?w+-2|0:r;if((x|0)==-1){z=12;break}w=f[(f[(f[h>>2]|0)+12>>2]|0)+(x<<2)>>2]|0;x=v+1|0;if((w|0)==-1){y=x;break}else v=x}if((z|0)==12)y=v+1|0;A=y;B=f[k>>2]|0;C=f[l>>2]|0}else{A=1;B=q;C=o}f[B+(f[C+(f[i>>2]<<2)>>2]<<2)>>2]=A;A=a+108|0;i=f[A>>2]|0;C=i-B>>2;B=i;if((n|0)!=-1?(i=f[(f[(f[h>>2]|0)+12>>2]|0)+(n<<2)>>2]|0,(i|0)!=-1):0){n=a+64|0;y=1;v=i;while(1){i=f[n>>2]|0;w=f[(f[i>>2]|0)+36>>2]|0;f[g>>2]=(v>>>0)/3|0;f[d>>2]=f[g>>2];if(Ra[w&127](i,d)|0){D=y;break}i=v+1|0;f[(f[l>>2]|0)+((((i>>>0)%3|0|0)==0?v+-2|0:i)<<2)>>2]=C;i=(((v>>>0)%3|0|0)==0?2:-1)+v|0;if((i|0)==-1){z=20;break}v=f[(f[(f[h>>2]|0)+12>>2]|0)+(i<<2)>>2]|0;i=y+1|0;if((v|0)==-1){D=i;break}else y=i}if((z|0)==20)D=y+1|0;E=D;F=f[A>>2]|0}else{E=1;F=B}f[d>>2]=E;if(F>>>0<(f[a+112>>2]|0)>>>0){f[F>>2]=E;f[A>>2]=F+4}else Ri(k,d)}break}case 5:{k=q+(f[o+(j<<2)>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-1;k=q+(f[p>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-1;k=q+(f[o+(m<<2)>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-2;break}case 3:{k=q+(f[o+(j<<2)>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-1;k=q+(f[p>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-2;k=q+(f[o+(m<<2)>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-1;break}case 7:{k=q+(f[o+(j<<2)>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-2;k=q+(f[p>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-2;k=q+(f[o+(m<<2)>>2]<<2)|0;f[k>>2]=(f[k>>2]|0)+-2;break}default:{}}k=a+116|0;m=f[k>>2]|0;if((m|0)==-1){f[k>>2]=b;u=c;return}o=f[a+128>>2]|0;if((s|0)<(o|0))G=o;else{q=f[a+132>>2]|0;G=(s|0)>(q|0)?q:s}s=G-o|0;o=f[a+136>>2]|0;a=f[3724+(m<<2)>>2]|0;f[d>>2]=a;m=o+(s*12|0)+4|0;G=f[m>>2]|0;if(G>>>0<(f[o+(s*12|0)+8>>2]|0)>>>0){f[G>>2]=a;f[m>>2]=G+4}else Ri(o+(s*12|0)|0,d);f[k>>2]=b;u=c;return}function od(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,_=0,$=0;g=u;u=u+32|0;d=g+16|0;h=g+8|0;i=g;j=e>>>0>1073741823?-1:e<<2;k=Lq(j)|0;sj(k|0,0,j|0)|0;j=f[a+28>>2]|0;l=a+36|0;m=f[l>>2]|0;n=f[m+4>>2]|0;o=f[m>>2]|0;p=n-o|0;a:do if((p|0)>4){q=p>>2;r=f[a+32>>2]|0;s=a+8|0;t=h+4|0;v=i+4|0;w=d+4|0;x=j+64|0;y=j+28|0;z=(e|0)>0;A=k+4|0;B=h+4|0;C=i+4|0;D=d+4|0;E=q+-1|0;if(n-o>>2>>>0>E>>>0){F=q;G=E;H=o}else{I=m;aq(I)}while(1){E=f[H+(G<<2)>>2]|0;q=X(G,e)|0;if((((E|0)!=-1?(f[(f[j>>2]|0)+(E>>>5<<2)>>2]&1<<(E&31)|0)==0:0)?(J=f[(f[(f[x>>2]|0)+12>>2]|0)+(E<<2)>>2]|0,(J|0)!=-1):0)?(E=f[y>>2]|0,K=f[r>>2]|0,L=f[K+(f[E+(J<<2)>>2]<<2)>>2]|0,M=J+1|0,N=f[K+(f[E+((((M>>>0)%3|0|0)==0?J+-2|0:M)<<2)>>2]<<2)>>2]|0,M=f[K+(f[E+((((J>>>0)%3|0|0)==0?2:-1)+J<<2)>>2]<<2)>>2]|0,(L|0)<(G|0)&(N|0)<(G|0)&(M|0)<(G|0)):0){J=X(L,e)|0;L=X(N,e)|0;N=X(M,e)|0;if(z){M=0;do{f[k+(M<<2)>>2]=(f[b+(M+N<<2)>>2]|0)+(f[b+(M+L<<2)>>2]|0)-(f[b+(M+J<<2)>>2]|0);M=M+1|0}while((M|0)!=(e|0))}M=b+(q<<2)|0;J=c+(q<<2)|0;L=f[M+4>>2]|0;N=f[k>>2]|0;E=f[A>>2]|0;f[h>>2]=f[M>>2];f[B>>2]=L;f[i>>2]=N;f[C>>2]=E;Od(d,s,h,i);f[J>>2]=f[d>>2];f[J+4>>2]=f[D>>2]}else{J=b+(q<<2)|0;E=b+((X(F+-2|0,e)|0)<<2)|0;N=c+(q<<2)|0;L=f[J+4>>2]|0;M=f[E>>2]|0;K=f[E+4>>2]|0;f[h>>2]=f[J>>2];f[t>>2]=L;f[i>>2]=M;f[v>>2]=K;Od(d,s,h,i);f[N>>2]=f[d>>2];f[N+4>>2]=f[w>>2]}if((F|0)<=2)break a;N=f[l>>2]|0;H=f[N>>2]|0;K=G+-1|0;if((f[N+4>>2]|0)-H>>2>>>0<=K>>>0){I=N;break}else{N=G;G=K;F=N}}aq(I)}while(0);if((e|0)<=0){O=a+8|0;P=b+4|0;Q=f[b>>2]|0;R=f[P>>2]|0;S=k+4|0;T=f[k>>2]|0;U=f[S>>2]|0;f[h>>2]=Q;V=h+4|0;f[V>>2]=R;f[i>>2]=T;W=i+4|0;f[W>>2]=U;Od(d,O,h,i);Y=f[d>>2]|0;f[c>>2]=Y;Z=d+4|0;_=f[Z>>2]|0;$=c+4|0;f[$>>2]=_;Mq(k);u=g;return 1}sj(k|0,0,e<<2|0)|0;O=a+8|0;P=b+4|0;Q=f[b>>2]|0;R=f[P>>2]|0;S=k+4|0;T=f[k>>2]|0;U=f[S>>2]|0;f[h>>2]=Q;V=h+4|0;f[V>>2]=R;f[i>>2]=T;W=i+4|0;f[W>>2]=U;Od(d,O,h,i);Y=f[d>>2]|0;f[c>>2]=Y;Z=d+4|0;_=f[Z>>2]|0;$=c+4|0;f[$>>2]=_;Mq(k);u=g;return 1}function pd(a,b,c,d,e,g,h){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;var i=0;switch(c|0){case 1:{c=ln(60)|0;f[c>>2]=1544;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[h+16>>2]=f[e+16>>2];f[h+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);h=c+44|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2076;i=c;f[a>>2]=i;return}case 2:{c=ln(60)|0;f[c>>2]=1544;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[h+16>>2]=f[e+16>>2];f[h+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);h=c+44|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2132;i=c;f[a>>2]=i;return}case 4:{c=ln(168)|0;Ti(c,d,e,g);i=c;f[a>>2]=i;return}case 3:{c=ln(88)|0;f[c>>2]=1544;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[h+16>>2]=f[e+16>>2];f[h+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);h=c+44|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2188;h=c+60|0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;f[h+12>>2]=0;f[h+16>>2]=0;f[h+20>>2]=0;f[h+24>>2]=0;i=c;f[a>>2]=i;return}case 5:{c=ln(104)|0;f[c>>2]=1544;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[h+16>>2]=f[e+16>>2];f[h+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);h=c+44|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2244;f[c+60>>2]=0;f[c+64>>2]=0;f[c+76>>2]=0;f[c+80>>2]=0;f[c+84>>2]=0;h=c+88|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];i=c;f[a>>2]=i;return}case 6:{c=ln(140)|0;f[c>>2]=1544;f[c+4>>2]=d;d=c+8|0;f[d>>2]=f[e>>2];f[d+4>>2]=f[e+4>>2];f[d+8>>2]=f[e+8>>2];f[d+12>>2]=f[e+12>>2];f[d+16>>2]=f[e+16>>2];f[d+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);e=c+44|0;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[e+8>>2]=f[g+8>>2];f[e+12>>2]=f[g+12>>2];f[c>>2]=2300;f[c+64>>2]=0;f[c+68>>2]=0;e=c+72|0;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[e+8>>2]=f[g+8>>2];f[e+12>>2]=f[g+12>>2];f[c+60>>2]=2356;f[c+88>>2]=1;g=c+92|0;f[g>>2]=-1;f[g+4>>2]=-1;f[g+8>>2]=-1;f[g+12>>2]=-1;wn(c+108|0);i=c;f[a>>2]=i;return}default:{i=0;f[a>>2]=i;return}}}function qd(a,b,c,d,e,g,h){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;var i=0;switch(c|0){case 1:{c=ln(60)|0;f[c>>2]=1544;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[h+16>>2]=f[e+16>>2];f[h+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);h=c+44|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=1656;i=c;f[a>>2]=i;return}case 2:{c=ln(60)|0;f[c>>2]=1544;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[h+16>>2]=f[e+16>>2];f[h+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);h=c+44|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=1712;i=c;f[a>>2]=i;return}case 4:{c=ln(168)|0;Ui(c,d,e,g);i=c;f[a>>2]=i;return}case 3:{c=ln(88)|0;f[c>>2]=1544;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[h+16>>2]=f[e+16>>2];f[h+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);h=c+44|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=1768;h=c+60|0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;f[h+12>>2]=0;f[h+16>>2]=0;f[h+20>>2]=0;f[h+24>>2]=0;i=c;f[a>>2]=i;return}case 5:{c=ln(104)|0;f[c>>2]=1544;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[h+16>>2]=f[e+16>>2];f[h+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);h=c+44|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=1824;f[c+60>>2]=0;f[c+64>>2]=0;f[c+76>>2]=0;f[c+80>>2]=0;f[c+84>>2]=0;h=c+88|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];i=c;f[a>>2]=i;return}case 6:{c=ln(140)|0;f[c>>2]=1544;f[c+4>>2]=d;d=c+8|0;f[d>>2]=f[e>>2];f[d+4>>2]=f[e+4>>2];f[d+8>>2]=f[e+8>>2];f[d+12>>2]=f[e+12>>2];f[d+16>>2]=f[e+16>>2];f[d+20>>2]=f[e+20>>2];fk(c+32|0,e+24|0);e=c+44|0;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[e+8>>2]=f[g+8>>2];f[e+12>>2]=f[g+12>>2];f[c>>2]=1880;f[c+64>>2]=0;f[c+68>>2]=0;e=c+72|0;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[e+8>>2]=f[g+8>>2];f[e+12>>2]=f[g+12>>2];f[c+60>>2]=1936;f[c+88>>2]=1;g=c+92|0;f[g>>2]=-1;f[g+4>>2]=-1;f[g+8>>2]=-1;f[g+12>>2]=-1;wn(c+108|0);i=c;f[a>>2]=i;return}default:{i=0;f[a>>2]=i;return}}}function rd(a,b){a=a|0;b=b|0;var c=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0;c=a+4|0;if(!b){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[c>>2]=0;return}if(b>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(b<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[c>>2]=b;c=0;do{f[(f[a>>2]|0)+(c<<2)>>2]=0;c=c+1|0}while((c|0)!=(b|0));c=a+8|0;g=f[c>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=b+-1|0;i=(h&b|0)==0;if(!i)if(e>>>0<b>>>0)j=e;else j=(e>>>0)%(b>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=c;c=f[g>>2]|0;if(!c)return;else{k=j;l=g;m=c;n=g}a:while(1){g=l;c=m;j=n;b:while(1){c:do if(i){e=c;while(1){o=f[e+4>>2]&h;if((o|0)==(k|0)){p=e;break c}q=(f[a>>2]|0)+(o<<2)|0;if(!(f[q>>2]|0)){r=e;s=o;t=q;break b}q=e+8|0;u=q+2|0;v=e+12|0;w=q+6|0;x=f[e>>2]|0;d:do if(!x)y=e;else{z=d[q>>1]|0;A=e;B=x;while(1){C=B+8|0;if(z<<16>>16!=(d[C>>1]|0)){y=A;break d}if((d[u>>1]|0)!=(d[C+2>>1]|0)){y=A;break d}if((d[v>>1]|0)!=(d[B+12>>1]|0)){y=A;break d}if((d[w>>1]|0)!=(d[C+6>>1]|0)){y=A;break d}C=f[B>>2]|0;if(!C){y=B;break}else{D=B;B=C;A=D}}}while(0);f[j>>2]=f[y>>2];f[y>>2]=f[f[(f[a>>2]|0)+(o<<2)>>2]>>2];f[f[(f[a>>2]|0)+(o<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){E=43;break a}}}else{e=c;while(1){w=f[e+4>>2]|0;if(w>>>0<b>>>0)F=w;else F=(w>>>0)%(b>>>0)|0;if((F|0)==(k|0)){p=e;break c}w=(f[a>>2]|0)+(F<<2)|0;if(!(f[w>>2]|0)){r=e;s=F;t=w;break b}w=e+8|0;v=w+2|0;u=e+12|0;x=w+6|0;q=f[e>>2]|0;e:do if(!q)G=e;else{A=d[w>>1]|0;B=e;z=q;while(1){D=z+8|0;if(A<<16>>16!=(d[D>>1]|0)){G=B;break e}if((d[v>>1]|0)!=(d[D+2>>1]|0)){G=B;break e}if((d[u>>1]|0)!=(d[z+12>>1]|0)){G=B;break e}if((d[x>>1]|0)!=(d[D+6>>1]|0)){G=B;break e}D=f[z>>2]|0;if(!D){G=z;break}else{C=z;z=D;B=C}}}while(0);f[j>>2]=f[G>>2];f[G>>2]=f[f[(f[a>>2]|0)+(F<<2)>>2]>>2];f[f[(f[a>>2]|0)+(F<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){E=43;break a}}}while(0);c=f[p>>2]|0;if(!c){E=43;break a}else{g=p;j=p}}f[t>>2]=j;m=f[r>>2]|0;if(!m){E=43;break}else{k=s;l=r;n=r}}if((E|0)==43)return}function sd(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0;d=a+4|0;if(!c){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[d>>2]=0;return}if(c>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(c<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[d>>2]=c;d=0;do{f[(f[a>>2]|0)+(d<<2)>>2]=0;d=d+1|0}while((d|0)!=(c|0));d=a+8|0;g=f[d>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=c+-1|0;i=(h&c|0)==0;if(!i)if(e>>>0<c>>>0)j=e;else j=(e>>>0)%(c>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=d;d=f[g>>2]|0;if(!d)return;else{k=j;l=g;m=d;n=g}a:while(1){g=l;d=m;j=n;b:while(1){c:do if(i){e=d;while(1){o=f[e+4>>2]&h;if((o|0)==(k|0)){p=e;break c}q=(f[a>>2]|0)+(o<<2)|0;if(!(f[q>>2]|0)){r=e;s=o;t=q;break b}q=e+8|0;u=q+1|0;v=q+2|0;w=q+3|0;x=f[e>>2]|0;d:do if(!x)y=e;else{z=b[q>>0]|0;A=e;B=x;while(1){C=B+8|0;if(z<<24>>24!=(b[C>>0]|0)){y=A;break d}if((b[u>>0]|0)!=(b[C+1>>0]|0)){y=A;break d}if((b[v>>0]|0)!=(b[C+2>>0]|0)){y=A;break d}if((b[w>>0]|0)!=(b[C+3>>0]|0)){y=A;break d}C=f[B>>2]|0;if(!C){y=B;break}else{D=B;B=C;A=D}}}while(0);f[j>>2]=f[y>>2];f[y>>2]=f[f[(f[a>>2]|0)+(o<<2)>>2]>>2];f[f[(f[a>>2]|0)+(o<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){E=43;break a}}}else{e=d;while(1){w=f[e+4>>2]|0;if(w>>>0<c>>>0)F=w;else F=(w>>>0)%(c>>>0)|0;if((F|0)==(k|0)){p=e;break c}w=(f[a>>2]|0)+(F<<2)|0;if(!(f[w>>2]|0)){r=e;s=F;t=w;break b}w=e+8|0;v=w+1|0;u=w+2|0;x=w+3|0;q=f[e>>2]|0;e:do if(!q)G=e;else{A=b[w>>0]|0;B=e;z=q;while(1){D=z+8|0;if(A<<24>>24!=(b[D>>0]|0)){G=B;break e}if((b[v>>0]|0)!=(b[D+1>>0]|0)){G=B;break e}if((b[u>>0]|0)!=(b[D+2>>0]|0)){G=B;break e}if((b[x>>0]|0)!=(b[D+3>>0]|0)){G=B;break e}D=f[z>>2]|0;if(!D){G=z;break}else{C=z;z=D;B=C}}}while(0);f[j>>2]=f[G>>2];f[G>>2]=f[f[(f[a>>2]|0)+(F<<2)>>2]>>2];f[f[(f[a>>2]|0)+(F<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){E=43;break a}}}while(0);d=f[p>>2]|0;if(!d){E=43;break a}else{g=p;j=p}}f[t>>2]=j;m=f[r>>2]|0;if(!m){E=43;break}else{k=s;l=r;n=r}}if((E|0)==43)return}function td(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0;i=u;u=u+352|0;j=i+340|0;k=i+336|0;l=i+80|0;m=i+48|0;n=i;sj(l|0,0,256)|0;o=f[e+4>>2]|0;p=f[e>>2]|0;q=p;if((o|0)!=(p|0)){r=o-p>>2;p=0;do{o=l+(f[q+(p<<2)>>2]<<3)|0;s=o;t=Vn(f[s>>2]|0,f[s+4>>2]|0,1,0)|0;s=o;f[s>>2]=t;f[s+4>>2]=I;p=p+1|0}while(p>>>0<r>>>0)}Gn(m);r=Tn(c|0,((c|0)<0)<<31>>31|0,5)|0;p=I;q=n+40|0;s=q;f[s>>2]=0;f[s+4>>2]=0;f[n>>2]=0;f[n+4>>2]=0;f[n+8>>2]=0;f[n+12>>2]=0;f[n+16>>2]=0;f[n+20>>2]=0;fd(n,l,32,g)|0;l=n+16|0;s=Tn(f[l>>2]|0,f[l+4>>2]|0,1)|0;l=g+4|0;t=(f[l>>2]|0)-(f[g>>2]|0)|0;o=q;f[o>>2]=t;f[o+4>>2]=0;o=Vn(s|0,I|0,39,0)|0;s=Yn(o|0,I|0,3)|0;o=Vn(s|0,I|0,8,0)|0;s=Vn(o|0,I|0,t|0,0)|0;Cl(g,s,I);s=n+24|0;f[s>>2]=(f[g>>2]|0)+(f[q>>2]|0);q=n+28|0;f[q>>2]=0;t=n+32|0;f[t>>2]=16384;zi(m,r,p,0)|0;p=c-d|0;if((p|0)>-1){c=(d|0)>0;r=m+16|0;o=m+12|0;v=p;do{w=f[e>>2]|0;x=f[w+(((v|0)/(d|0)|0)<<2)>>2]|0;y=f[n>>2]|0;z=f[y+(x<<3)>>2]|0;A=f[t>>2]|0;B=z<<10;if(A>>>0<B>>>0){C=A;D=w}else{w=A;do{A=f[s>>2]|0;E=f[q>>2]|0;f[q>>2]=E+1;b[A+E>>0]=w;w=(f[t>>2]|0)>>>8;f[t>>2]=w}while(w>>>0>=B>>>0);C=w;D=f[e>>2]|0}f[t>>2]=(((C>>>0)/(z>>>0)|0)<<12)+((C>>>0)%(z>>>0)|0)+(f[y+(x<<3)+4>>2]|0);B=p-v|0;E=f[D+(((B|0)/(d|0)|0)<<2)>>2]|0;if(c&(E|0)>0){A=0;do{F=f[a+(A+B<<2)>>2]|0;G=r;H=f[G+4>>2]|0;if((H|0)>0|(H|0)==0&(f[G>>2]|0)>>>0>0){G=f[o>>2]|0;H=G+4|0;J=0;K=f[H>>2]|0;do{L=K>>>3;M=K&7;N=(f[G>>2]|0)+L|0;b[N>>0]=(1<<M^255)&(h[N>>0]|0);N=(f[G>>2]|0)+L|0;b[N>>0]=(F>>>J&1)<<M|(h[N>>0]|0);K=(f[H>>2]|0)+1|0;f[H>>2]=K;J=J+1|0}while((J|0)!=(E|0))}A=A+1|0}while((A|0)!=(d|0))}v=v-d|0}while((v|0)>-1)}_f(n,g);eg(m);v=f[m>>2]|0;d=m+4|0;o=g+16|0;r=f[o+4>>2]|0;if(!((r|0)>0|(r|0)==0&(f[o>>2]|0)>>>0>0)){o=(f[d>>2]|0)-v|0;f[k>>2]=f[l>>2];f[j>>2]=f[k>>2];Me(g,j,v,v+o|0)|0}o=f[n>>2]|0;if(o|0){v=n+4|0;n=f[v>>2]|0;if((n|0)!=(o|0))f[v>>2]=n+(~((n+-8-o|0)>>>3)<<3);Oq(o)}o=m+12|0;n=f[o>>2]|0;f[o>>2]=0;if(n|0)Oq(n);n=f[m>>2]|0;if(!n){u=i;return 1}if((f[d>>2]|0)!=(n|0))f[d>>2]=n;Oq(n);u=i;return 1}function ud(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;c=a+4|0;if(!b){d=f[a>>2]|0;f[a>>2]=0;if(d|0)Oq(d);f[c>>2]=0;return}if(b>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}d=ln(b<<2)|0;e=f[a>>2]|0;f[a>>2]=d;if(e|0)Oq(e);f[c>>2]=b;c=0;do{f[(f[a>>2]|0)+(c<<2)>>2]=0;c=c+1|0}while((c|0)!=(b|0));c=a+8|0;e=f[c>>2]|0;if(!e)return;d=f[e+4>>2]|0;g=b+-1|0;h=(g&b|0)==0;if(!h)if(d>>>0<b>>>0)i=d;else i=(d>>>0)%(b>>>0)|0;else i=d&g;f[(f[a>>2]|0)+(i<<2)>>2]=c;c=f[e>>2]|0;if(!c)return;else{j=i;k=e;l=c;m=e}a:while(1){e=k;c=l;i=m;b:while(1){c:do if(h){d=c;while(1){n=f[d+4>>2]&g;if((n|0)==(j|0)){o=d;break c}p=(f[a>>2]|0)+(n<<2)|0;if(!(f[p>>2]|0)){q=d;r=n;s=p;break b}p=d+12|0;t=d+16|0;u=d+20|0;v=f[d>>2]|0;d:do if(!v)w=d;else{x=f[d+8>>2]|0;y=d;z=v;while(1){if((x|0)!=(f[z+8>>2]|0)){w=y;break d}if((f[p>>2]|0)!=(f[z+12>>2]|0)){w=y;break d}if((f[t>>2]|0)!=(f[z+16>>2]|0)){w=y;break d}if((f[u>>2]|0)!=(f[z+20>>2]|0)){w=y;break d}A=f[z>>2]|0;if(!A){w=z;break}else{B=z;z=A;y=B}}}while(0);f[i>>2]=f[w>>2];f[w>>2]=f[f[(f[a>>2]|0)+(n<<2)>>2]>>2];f[f[(f[a>>2]|0)+(n<<2)>>2]>>2]=d;d=f[e>>2]|0;if(!d){C=43;break a}}}else{d=c;while(1){u=f[d+4>>2]|0;if(u>>>0<b>>>0)D=u;else D=(u>>>0)%(b>>>0)|0;if((D|0)==(j|0)){o=d;break c}u=(f[a>>2]|0)+(D<<2)|0;if(!(f[u>>2]|0)){q=d;r=D;s=u;break b}u=d+12|0;t=d+16|0;p=d+20|0;v=f[d>>2]|0;e:do if(!v)E=d;else{y=f[d+8>>2]|0;z=d;x=v;while(1){if((y|0)!=(f[x+8>>2]|0)){E=z;break e}if((f[u>>2]|0)!=(f[x+12>>2]|0)){E=z;break e}if((f[t>>2]|0)!=(f[x+16>>2]|0)){E=z;break e}if((f[p>>2]|0)!=(f[x+20>>2]|0)){E=z;break e}B=f[x>>2]|0;if(!B){E=x;break}else{A=x;x=B;z=A}}}while(0);f[i>>2]=f[E>>2];f[E>>2]=f[f[(f[a>>2]|0)+(D<<2)>>2]>>2];f[f[(f[a>>2]|0)+(D<<2)>>2]>>2]=d;d=f[e>>2]|0;if(!d){C=43;break a}}}while(0);c=f[o>>2]|0;if(!c){C=43;break a}else{e=o;i=o}}f[s>>2]=i;l=f[q>>2]|0;if(!l){C=43;break}else{j=r;k=q;m=q}}if((C|0)==43)return}function vd(a,b){a=a|0;b=b|0;var c=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0;c=a+4|0;if(!b){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[c>>2]=0;return}if(b>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(b<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[c>>2]=b;c=0;do{f[(f[a>>2]|0)+(c<<2)>>2]=0;c=c+1|0}while((c|0)!=(b|0));c=a+8|0;g=f[c>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=b+-1|0;i=(h&b|0)==0;if(!i)if(e>>>0<b>>>0)j=e;else j=(e>>>0)%(b>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=c;c=f[g>>2]|0;if(!c)return;else{k=j;l=g;m=c;n=g}a:while(1){g=l;c=m;j=n;b:while(1){c:do if(i){e=c;while(1){o=f[e+4>>2]&h;if((o|0)==(k|0)){p=e;break c}q=(f[a>>2]|0)+(o<<2)|0;if(!(f[q>>2]|0)){r=e;s=o;t=q;break b}q=e+8|0;u=e+12|0;v=f[e>>2]|0;d:do if(!v)w=e;else{x=d[q>>1]|0;y=q+2|0;z=e;A=v;while(1){B=A+8|0;if(x<<16>>16!=(d[B>>1]|0)){w=z;break d}if((d[y>>1]|0)!=(d[B+2>>1]|0)){w=z;break d}if((d[u>>1]|0)!=(d[A+12>>1]|0)){w=z;break d}B=f[A>>2]|0;if(!B){w=A;break}else{C=A;A=B;z=C}}}while(0);f[j>>2]=f[w>>2];f[w>>2]=f[f[(f[a>>2]|0)+(o<<2)>>2]>>2];f[f[(f[a>>2]|0)+(o<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){D=41;break a}}}else{e=c;while(1){u=f[e+4>>2]|0;if(u>>>0<b>>>0)E=u;else E=(u>>>0)%(b>>>0)|0;if((E|0)==(k|0)){p=e;break c}u=(f[a>>2]|0)+(E<<2)|0;if(!(f[u>>2]|0)){r=e;s=E;t=u;break b}u=e+8|0;v=e+12|0;q=f[e>>2]|0;e:do if(!q)F=e;else{z=d[u>>1]|0;A=u+2|0;y=e;x=q;while(1){C=x+8|0;if(z<<16>>16!=(d[C>>1]|0)){F=y;break e}if((d[A>>1]|0)!=(d[C+2>>1]|0)){F=y;break e}if((d[v>>1]|0)!=(d[x+12>>1]|0)){F=y;break e}C=f[x>>2]|0;if(!C){F=x;break}else{B=x;x=C;y=B}}}while(0);f[j>>2]=f[F>>2];f[F>>2]=f[f[(f[a>>2]|0)+(E<<2)>>2]>>2];f[f[(f[a>>2]|0)+(E<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){D=41;break a}}}while(0);c=f[p>>2]|0;if(!c){D=41;break a}else{g=p;j=p}}f[t>>2]=j;m=f[r>>2]|0;if(!m){D=41;break}else{k=s;l=r;n=r}}if((D|0)==41)return}function wd(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0;d=a+4|0;if(!c){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[d>>2]=0;return}if(c>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(c<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[d>>2]=c;d=0;do{f[(f[a>>2]|0)+(d<<2)>>2]=0;d=d+1|0}while((d|0)!=(c|0));d=a+8|0;g=f[d>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=c+-1|0;i=(h&c|0)==0;if(!i)if(e>>>0<c>>>0)j=e;else j=(e>>>0)%(c>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=d;d=f[g>>2]|0;if(!d)return;else{k=j;l=g;m=d;n=g}a:while(1){g=l;d=m;j=n;b:while(1){c:do if(i){e=d;while(1){o=f[e+4>>2]&h;if((o|0)==(k|0)){p=e;break c}q=(f[a>>2]|0)+(o<<2)|0;if(!(f[q>>2]|0)){r=e;s=o;t=q;break b}q=e+8|0;u=q+1|0;v=q+2|0;w=f[e>>2]|0;d:do if(!w)x=e;else{y=b[q>>0]|0;z=e;A=w;while(1){B=A+8|0;if(y<<24>>24!=(b[B>>0]|0)){x=z;break d}if((b[u>>0]|0)!=(b[B+1>>0]|0)){x=z;break d}if((b[v>>0]|0)!=(b[B+2>>0]|0)){x=z;break d}B=f[A>>2]|0;if(!B){x=A;break}else{C=A;A=B;z=C}}}while(0);f[j>>2]=f[x>>2];f[x>>2]=f[f[(f[a>>2]|0)+(o<<2)>>2]>>2];f[f[(f[a>>2]|0)+(o<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){D=41;break a}}}else{e=d;while(1){v=f[e+4>>2]|0;if(v>>>0<c>>>0)E=v;else E=(v>>>0)%(c>>>0)|0;if((E|0)==(k|0)){p=e;break c}v=(f[a>>2]|0)+(E<<2)|0;if(!(f[v>>2]|0)){r=e;s=E;t=v;break b}v=e+8|0;u=v+1|0;w=v+2|0;q=f[e>>2]|0;e:do if(!q)F=e;else{z=b[v>>0]|0;A=e;y=q;while(1){C=y+8|0;if(z<<24>>24!=(b[C>>0]|0)){F=A;break e}if((b[u>>0]|0)!=(b[C+1>>0]|0)){F=A;break e}if((b[w>>0]|0)!=(b[C+2>>0]|0)){F=A;break e}C=f[y>>2]|0;if(!C){F=y;break}else{B=y;y=C;A=B}}}while(0);f[j>>2]=f[F>>2];f[F>>2]=f[f[(f[a>>2]|0)+(E<<2)>>2]>>2];f[f[(f[a>>2]|0)+(E<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){D=41;break a}}}while(0);d=f[p>>2]|0;if(!d){D=41;break a}else{g=p;j=p}}f[t>>2]=j;m=f[r>>2]|0;if(!m){D=41;break}else{k=s;l=r;n=r}}if((D|0)==41)return}function xd(a,b){a=+a;b=+b;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,q=0,r=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0.0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0.0;p[s>>3]=a;c=f[s>>2]|0;d=f[s+4>>2]|0;p[s>>3]=b;e=f[s>>2]|0;g=f[s+4>>2]|0;h=Yn(c|0,d|0,52)|0;i=h&2047;h=Yn(e|0,g|0,52)|0;j=h&2047;h=d&-2147483648;k=Tn(e|0,g|0,1)|0;l=I;a:do if(!((k|0)==0&(l|0)==0)?(m=yo(b)|0,n=I&2147483647,!((i|0)==2047|(n>>>0>2146435072|(n|0)==2146435072&m>>>0>0))):0){m=Tn(c|0,d|0,1)|0;n=I;if(!(n>>>0>l>>>0|(n|0)==(l|0)&m>>>0>k>>>0))return +((m|0)==(k|0)&(n|0)==(l|0)?a*0.0:a);if(!i){n=Tn(c|0,d|0,12)|0;m=I;if((m|0)>-1|(m|0)==-1&n>>>0>4294967295){o=0;q=n;n=m;while(1){m=o+-1|0;q=Tn(q|0,n|0,1)|0;n=I;if(!((n|0)>-1|(n|0)==-1&q>>>0>4294967295)){r=m;break}else o=m}}else r=0;o=Tn(c|0,d|0,1-r|0)|0;t=r;u=o;v=I}else{t=i;u=c;v=d&1048575|1048576}if(!j){o=Tn(e|0,g|0,12)|0;q=I;if((q|0)>-1|(q|0)==-1&o>>>0>4294967295){n=0;m=o;o=q;while(1){q=n+-1|0;m=Tn(m|0,o|0,1)|0;o=I;if(!((o|0)>-1|(o|0)==-1&m>>>0>4294967295)){w=q;break}else n=q}}else w=0;n=Tn(e|0,g|0,1-w|0)|0;x=w;y=n;z=I}else{x=j;y=e;z=g&1048575|1048576}n=Xn(u|0,v|0,y|0,z|0)|0;m=I;o=(m|0)>-1|(m|0)==-1&n>>>0>4294967295;b:do if((t|0)>(x|0)){q=t;A=m;B=o;C=u;D=v;E=n;while(1){if(B)if((E|0)==0&(A|0)==0)break;else{F=E;G=A}else{F=C;G=D}H=Tn(F|0,G|0,1)|0;J=I;K=q+-1|0;L=Xn(H|0,J|0,y|0,z|0)|0;M=I;N=(M|0)>-1|(M|0)==-1&L>>>0>4294967295;if((K|0)>(x|0)){q=K;A=M;B=N;C=H;D=J;E=L}else{O=K;P=N;Q=L;R=M;S=H;T=J;break b}}U=a*0.0;break a}else{O=t;P=o;Q=n;R=m;S=u;T=v}while(0);if(P)if((Q|0)==0&(R|0)==0){U=a*0.0;break}else{V=R;W=Q}else{V=T;W=S}if(V>>>0<1048576|(V|0)==1048576&W>>>0<0){m=O;n=W;o=V;while(1){E=Tn(n|0,o|0,1)|0;D=I;C=m+-1|0;if(D>>>0<1048576|(D|0)==1048576&E>>>0<0){m=C;n=E;o=D}else{X=C;Y=E;Z=D;break}}}else{X=O;Y=W;Z=V}if((X|0)>0){o=Vn(Y|0,Z|0,0,-1048576)|0;n=I;m=Tn(X|0,0,52)|0;_=n|I;$=o|m}else{m=Yn(Y|0,Z|0,1-X|0)|0;_=I;$=m}f[s>>2]=$;f[s+4>>2]=_|h;U=+p[s>>3]}else aa=3;while(0);if((aa|0)==3){ba=a*b;U=ba/ba}return +U}function yd(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0;d=u;u=u+32|0;e=d+8|0;g=d;h=c+4|0;i=f[(f[h>>2]|0)+48>>2]|0;j=c+12|0;c=f[j>>2]|0;k=ln(32)|0;f[e>>2]=k;f[e+8>>2]=-2147483616;f[e+4>>2]=17;l=k;m=14495;n=l+17|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[k+17>>0]=0;k=i+16|0;m=f[k>>2]|0;if(m){l=k;n=m;a:while(1){m=n;while(1){if((f[m+16>>2]|0)>=(c|0))break;o=f[m+4>>2]|0;if(!o){p=l;break a}else m=o}n=f[m>>2]|0;if(!n){p=m;break}else l=m}if(((p|0)!=(k|0)?(c|0)>=(f[p+16>>2]|0):0)?(c=p+20|0,(Jh(c,e)|0)!=0):0)q=Hk(c,e,-1)|0;else r=10}else r=10;if((r|0)==10)q=Hk(i,e,-1)|0;if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);f[e>>2]=-1;f[e+4>>2]=-1;f[e+8>>2]=-1;f[e+12>>2]=-1;i=(_((1<<q)+-1|0)|0)^31;if((i+-1|0)>>>0<=28){f[e>>2]=i+1;q=2<<i;f[e+4>>2]=q+-1;i=q+-2|0;f[e+8>>2]=i;f[e+12>>2]=(i|0)/2|0}switch(Xi(f[j>>2]|0,f[h>>2]|0)|0){case 6:{i=f[j>>2]|0;q=f[h>>2]|0;c=f[(f[(f[q+4>>2]|0)+8>>2]|0)+(i<<2)>>2]|0;do if((Qa[f[(f[q>>2]|0)+8>>2]&127](q)|0)==1){Hf(g,q,6,i,e,514);p=f[g>>2]|0;if(!p){f[g>>2]=0;s=g;r=21;break}else{t=g;v=p;break}}else{s=g;r=21}while(0);if((r|0)==21){i=ln(24)|0;f[i+4>>2]=c;c=i+8|0;f[c>>2]=f[e>>2];f[c+4>>2]=f[e+4>>2];f[c+8>>2]=f[e+8>>2];f[c+12>>2]=f[e+12>>2];f[i>>2]=2560;c=i;f[g>>2]=c;t=s;v=c}f[a>>2]=v;f[t>>2]=0;u=d;return}case 0:{t=f[j>>2]|0;j=f[h>>2]|0;h=f[(f[(f[j+4>>2]|0)+8>>2]|0)+(t<<2)>>2]|0;do if((Qa[f[(f[j>>2]|0)+8>>2]&127](j)|0)==1){Hf(g,j,0,t,e,514);v=f[g>>2]|0;if(!v){f[g>>2]=0;w=g;r=28;break}else{x=g;y=v;break}}else{w=g;r=28}while(0);if((r|0)==28){r=ln(24)|0;f[r+4>>2]=h;h=r+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];f[r>>2]=2560;e=r;f[g>>2]=e;x=w;y=e}f[a>>2]=y;f[x>>2]=0;u=d;return}default:{f[a>>2]=0;u=d;return}}}function zd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0;c=a+4|0;if(!b){d=f[a>>2]|0;f[a>>2]=0;if(d|0)Oq(d);f[c>>2]=0;return}if(b>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}d=ln(b<<2)|0;e=f[a>>2]|0;f[a>>2]=d;if(e|0)Oq(e);f[c>>2]=b;c=0;do{f[(f[a>>2]|0)+(c<<2)>>2]=0;c=c+1|0}while((c|0)!=(b|0));c=a+8|0;e=f[c>>2]|0;if(!e)return;d=f[e+4>>2]|0;g=b+-1|0;h=(g&b|0)==0;if(!h)if(d>>>0<b>>>0)i=d;else i=(d>>>0)%(b>>>0)|0;else i=d&g;f[(f[a>>2]|0)+(i<<2)>>2]=c;c=f[e>>2]|0;if(!c)return;else{j=i;k=e;l=c;m=e}a:while(1){e=k;c=l;i=m;b:while(1){c:do if(h){d=c;while(1){n=f[d+4>>2]&g;if((n|0)==(j|0)){o=d;break c}p=(f[a>>2]|0)+(n<<2)|0;if(!(f[p>>2]|0)){q=d;r=n;s=p;break b}p=d+12|0;t=d+16|0;u=f[d>>2]|0;d:do if(!u)v=d;else{w=f[d+8>>2]|0;x=d;y=u;while(1){if((w|0)!=(f[y+8>>2]|0)){v=x;break d}if((f[p>>2]|0)!=(f[y+12>>2]|0)){v=x;break d}if((f[t>>2]|0)!=(f[y+16>>2]|0)){v=x;break d}z=f[y>>2]|0;if(!z){v=y;break}else{A=y;y=z;x=A}}}while(0);f[i>>2]=f[v>>2];f[v>>2]=f[f[(f[a>>2]|0)+(n<<2)>>2]>>2];f[f[(f[a>>2]|0)+(n<<2)>>2]>>2]=d;d=f[e>>2]|0;if(!d){B=41;break a}}}else{d=c;while(1){t=f[d+4>>2]|0;if(t>>>0<b>>>0)C=t;else C=(t>>>0)%(b>>>0)|0;if((C|0)==(j|0)){o=d;break c}t=(f[a>>2]|0)+(C<<2)|0;if(!(f[t>>2]|0)){q=d;r=C;s=t;break b}t=d+12|0;p=d+16|0;u=f[d>>2]|0;e:do if(!u)D=d;else{x=f[d+8>>2]|0;y=d;w=u;while(1){if((x|0)!=(f[w+8>>2]|0)){D=y;break e}if((f[t>>2]|0)!=(f[w+12>>2]|0)){D=y;break e}if((f[p>>2]|0)!=(f[w+16>>2]|0)){D=y;break e}A=f[w>>2]|0;if(!A){D=w;break}else{z=w;w=A;y=z}}}while(0);f[i>>2]=f[D>>2];f[D>>2]=f[f[(f[a>>2]|0)+(C<<2)>>2]>>2];f[f[(f[a>>2]|0)+(C<<2)>>2]>>2]=d;d=f[e>>2]|0;if(!d){B=41;break a}}}while(0);c=f[o>>2]|0;if(!c){B=41;break a}else{e=o;i=o}}f[s>>2]=i;l=f[q>>2]|0;if(!l){B=41;break}else{j=r;k=q;m=q}}if((B|0)==41)return}function Ad(a,b,c,d,e,g,h){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;var i=0,j=0;switch(c|0){case 1:{c=ln(40)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2980;i=c;f[a>>2]=i;return}case 2:{c=ln(40)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=3036;i=c;f[a>>2]=i;return}case 4:{c=ln(152)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=3092;h=c+96|0;b=c+40|0;j=b+52|0;do{f[b>>2]=0;b=b+4|0}while((b|0)<(j|0));Zm(h);f[c+136>>2]=0;f[c+140>>2]=0;f[c+144>>2]=0;i=c;f[a>>2]=i;return}case 3:{c=ln(68)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=3148;h=c+40|0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;f[h+12>>2]=0;f[h+16>>2]=0;f[h+20>>2]=0;f[h+24>>2]=0;i=c;f[a>>2]=i;return}case 5:{c=ln(84)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=3204;f[c+40>>2]=0;f[c+44>>2]=0;f[c+56>>2]=0;f[c+60>>2]=0;f[c+64>>2]=0;h=c+68|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];i=c;f[a>>2]=i;return}case 6:{c=ln(120)|0;f[c+4>>2]=d;d=c+8|0;f[d>>2]=f[e>>2];f[d+4>>2]=f[e+4>>2];f[d+8>>2]=f[e+8>>2];f[d+12>>2]=f[e+12>>2];e=c+24|0;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[e+8>>2]=f[g+8>>2];f[e+12>>2]=f[g+12>>2];f[c>>2]=3260;f[c+44>>2]=0;f[c+48>>2]=0;e=c+52|0;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[e+8>>2]=f[g+8>>2];f[e+12>>2]=f[g+12>>2];f[c+40>>2]=3316;f[c+68>>2]=1;g=c+72|0;f[g>>2]=-1;f[g+4>>2]=-1;f[g+8>>2]=-1;f[g+12>>2]=-1;wn(c+88|0);i=c;f[a>>2]=i;return}default:{i=0;f[a>>2]=i;return}}}function Bd(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;d=a+4|0;if(!c){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[d>>2]=0;return}if(c>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(c<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[d>>2]=c;d=0;do{f[(f[a>>2]|0)+(d<<2)>>2]=0;d=d+1|0}while((d|0)!=(c|0));d=a+8|0;g=f[d>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=c+-1|0;i=(h&c|0)==0;if(!i)if(e>>>0<c>>>0)j=e;else j=(e>>>0)%(c>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=d;d=f[g>>2]|0;if(!d)return;else{k=j;l=g;m=d;n=g}a:while(1){g=l;d=m;j=n;b:while(1){o=d;while(1){e=f[o+4>>2]|0;if(!i)if(e>>>0<c>>>0)p=e;else p=(e>>>0)%(c>>>0)|0;else p=e&h;if((p|0)==(k|0))break;q=(f[a>>2]|0)+(p<<2)|0;if(!(f[q>>2]|0))break b;e=f[o>>2]|0;c:do if(!e)r=o;else{s=o+8|0;t=b[s+11>>0]|0;u=t<<24>>24<0;v=t&255;t=u?f[o+12>>2]|0:v;w=(t|0)==0;if(u){u=o;x=e;while(1){y=x+8|0;z=b[y+11>>0]|0;A=z<<24>>24<0;if((t|0)!=((A?f[x+12>>2]|0:z&255)|0)){r=u;break c}if(!w?Vk(f[s>>2]|0,A?f[y>>2]|0:y,t)|0:0){r=u;break c}y=f[x>>2]|0;if(!y){r=x;break c}else{A=x;x=y;u=A}}}if(w){u=o;x=e;while(1){A=b[x+8+11>>0]|0;if((A<<24>>24<0?f[x+12>>2]|0:A&255)|0){r=u;break c}A=f[x>>2]|0;if(!A){r=x;break c}else{y=x;x=A;u=y}}}u=o;x=e;while(1){w=x+8|0;y=b[w+11>>0]|0;A=y<<24>>24<0;if((t|0)!=((A?f[x+12>>2]|0:y&255)|0)){r=u;break c}y=A?f[w>>2]|0:w;if((b[y>>0]|0)==(f[s>>2]&255)<<24>>24){B=s;C=v;D=y}else{r=u;break c}while(1){C=C+-1|0;B=B+1|0;if(!C)break;D=D+1|0;if((b[B>>0]|0)!=(b[D>>0]|0)){r=u;break c}}y=f[x>>2]|0;if(!y){r=x;break}else{w=x;x=y;u=w}}}while(0);f[j>>2]=f[r>>2];f[r>>2]=f[f[(f[a>>2]|0)+(p<<2)>>2]>>2];f[f[(f[a>>2]|0)+(p<<2)>>2]>>2]=o;e=f[g>>2]|0;if(!e){E=43;break a}else o=e}d=f[o>>2]|0;if(!d){E=43;break a}else{g=o;j=o}}f[q>>2]=j;m=f[o>>2]|0;if(!m){E=43;break}else{k=p;l=o;n=o}}if((E|0)==43)return}function Cd(a,b,c,d,e,g,h){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;var i=0,j=0;switch(c|0){case 1:{c=ln(40)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2616;i=c;f[a>>2]=i;return}case 2:{c=ln(40)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2672;i=c;f[a>>2]=i;return}case 4:{c=ln(152)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2728;h=c+96|0;b=c+40|0;j=b+52|0;do{f[b>>2]=0;b=b+4|0}while((b|0)<(j|0));Zm(h);f[c+136>>2]=0;f[c+140>>2]=0;f[c+144>>2]=0;i=c;f[a>>2]=i;return}case 3:{c=ln(68)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2784;h=c+40|0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;f[h+12>>2]=0;f[h+16>>2]=0;f[h+20>>2]=0;f[h+24>>2]=0;i=c;f[a>>2]=i;return}case 5:{c=ln(84)|0;f[c+4>>2]=d;h=c+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[h+12>>2]=f[e+12>>2];h=c+24|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];f[c>>2]=2840;f[c+40>>2]=0;f[c+44>>2]=0;f[c+56>>2]=0;f[c+60>>2]=0;f[c+64>>2]=0;h=c+68|0;f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];f[h+12>>2]=f[g+12>>2];i=c;f[a>>2]=i;return}case 6:{c=ln(120)|0;f[c+4>>2]=d;d=c+8|0;f[d>>2]=f[e>>2];f[d+4>>2]=f[e+4>>2];f[d+8>>2]=f[e+8>>2];f[d+12>>2]=f[e+12>>2];e=c+24|0;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[e+8>>2]=f[g+8>>2];f[e+12>>2]=f[g+12>>2];f[c>>2]=2896;f[c+44>>2]=0;f[c+48>>2]=0;e=c+52|0;f[e>>2]=f[g>>2];f[e+4>>2]=f[g+4>>2];f[e+8>>2]=f[g+8>>2];f[e+12>>2]=f[g+12>>2];f[c+40>>2]=2952;f[c+68>>2]=1;g=c+72|0;f[g>>2]=-1;f[g+4>>2]=-1;f[g+8>>2]=-1;f[g+12>>2]=-1;wn(c+88|0);i=c;f[a>>2]=i;return}default:{i=0;f[a>>2]=i;return}}}function Dd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;c=u;u=u+48|0;d=c+8|0;e=c+4|0;g=c;h=a+44|0;ci(f[h>>2]|0,b)|0;if(f[h>>2]|0){wn(d);tk(d);i=(f[h>>2]|0)+-1|0;if((i|0)>-1){h=a+40|0;j=i;do{fj(d,(f[(f[h>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0)!=0);j=j+-1|0}while((j|0)>-1)}ld(d,b);Fj(d)}j=a+56|0;ci(f[j>>2]|0,b)|0;if(f[j>>2]|0){wn(d);tk(d);h=(f[j>>2]|0)+-2|0;if((h|0)>-1){j=a+52|0;i=h;do{fj(d,(f[(f[j>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)!=0);h=i+1|0;fj(d,(f[(f[j>>2]|0)+(h>>>5<<2)>>2]&1<<(h&31)|0)!=0);i=i+-2|0}while((i|0)>-1)}ld(d,b);Fj(d)}i=a+68|0;ci(f[i>>2]|0,b)|0;if(f[i>>2]|0){wn(d);tk(d);j=(f[i>>2]|0)+-3|0;if((j|0)>-1){i=a+64|0;h=j;do{fj(d,(f[(f[i>>2]|0)+(h>>>5<<2)>>2]&1<<(h&31)|0)!=0);j=h+1|0;fj(d,(f[(f[i>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0)!=0);j=h+2|0;fj(d,(f[(f[i>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0)!=0);h=h+-3|0}while((h|0)>-1)}ld(d,b);Fj(d)}h=a+80|0;ci(f[h>>2]|0,b)|0;if(f[h>>2]|0){wn(d);tk(d);i=(f[h>>2]|0)+-4|0;if((i|0)>-1){h=a+76|0;j=i;do{fj(d,(f[(f[h>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0)!=0);i=j+1|0;fj(d,(f[(f[h>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)!=0);i=j+2|0;fj(d,(f[(f[h>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)!=0);i=j+3|0;fj(d,(f[(f[h>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)!=0);j=j+-4|0}while((j|0)>-1)}ld(d,b);Fj(d)}f[g>>2]=f[a+12>>2];j=b+16|0;h=j;i=f[h>>2]|0;k=f[h+4>>2]|0;if((k|0)>0|(k|0)==0&i>>>0>0){l=k;m=i}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;i=j;l=f[i+4>>2]|0;m=f[i>>2]|0}f[g>>2]=f[a+20>>2];if((l|0)>0|(l|0)==0&m>>>0>0){u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;u=c;return 1}function Ed(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;c=u;u=u+48|0;d=c+8|0;e=c+4|0;g=c;h=a+64|0;ci(f[h>>2]|0,b)|0;if(f[h>>2]|0){wn(d);tk(d);i=(f[h>>2]|0)+-1|0;if((i|0)>-1){h=a+60|0;j=i;do{fj(d,(f[(f[h>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0)!=0);j=j+-1|0}while((j|0)>-1)}ld(d,b);Fj(d)}j=a+76|0;ci(f[j>>2]|0,b)|0;if(f[j>>2]|0){wn(d);tk(d);h=(f[j>>2]|0)+-2|0;if((h|0)>-1){j=a+72|0;i=h;do{fj(d,(f[(f[j>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)!=0);h=i+1|0;fj(d,(f[(f[j>>2]|0)+(h>>>5<<2)>>2]&1<<(h&31)|0)!=0);i=i+-2|0}while((i|0)>-1)}ld(d,b);Fj(d)}i=a+88|0;ci(f[i>>2]|0,b)|0;if(f[i>>2]|0){wn(d);tk(d);j=(f[i>>2]|0)+-3|0;if((j|0)>-1){i=a+84|0;h=j;do{fj(d,(f[(f[i>>2]|0)+(h>>>5<<2)>>2]&1<<(h&31)|0)!=0);j=h+1|0;fj(d,(f[(f[i>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0)!=0);j=h+2|0;fj(d,(f[(f[i>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0)!=0);h=h+-3|0}while((h|0)>-1)}ld(d,b);Fj(d)}h=a+100|0;ci(f[h>>2]|0,b)|0;if(f[h>>2]|0){wn(d);tk(d);i=(f[h>>2]|0)+-4|0;if((i|0)>-1){h=a+96|0;j=i;do{fj(d,(f[(f[h>>2]|0)+(j>>>5<<2)>>2]&1<<(j&31)|0)!=0);i=j+1|0;fj(d,(f[(f[h>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)!=0);i=j+2|0;fj(d,(f[(f[h>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)!=0);i=j+3|0;fj(d,(f[(f[h>>2]|0)+(i>>>5<<2)>>2]&1<<(i&31)|0)!=0);j=j+-4|0}while((j|0)>-1)}ld(d,b);Fj(d)}f[g>>2]=f[a+12>>2];j=b+16|0;h=j;i=f[h>>2]|0;k=f[h+4>>2]|0;if((k|0)>0|(k|0)==0&i>>>0>0){l=k;m=i}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;i=j;l=f[i+4>>2]|0;m=f[i>>2]|0}f[g>>2]=f[a+16>>2];if((l|0)>0|(l|0)==0&m>>>0>0){u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;u=c;return 1}function Fd(a,b){a=a|0;b=b|0;var c=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;c=a+4|0;if(!b){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[c>>2]=0;return}if(b>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(b<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[c>>2]=b;c=0;do{f[(f[a>>2]|0)+(c<<2)>>2]=0;c=c+1|0}while((c|0)!=(b|0));c=a+8|0;g=f[c>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=b+-1|0;i=(h&b|0)==0;if(!i)if(e>>>0<b>>>0)j=e;else j=(e>>>0)%(b>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=c;c=f[g>>2]|0;if(!c)return;else{k=j;l=g;m=c;n=g}a:while(1){g=l;c=m;j=n;b:while(1){c:do if(i){e=c;while(1){o=f[e+4>>2]&h;if((o|0)==(k|0)){p=e;break c}q=(f[a>>2]|0)+(o<<2)|0;if(!(f[q>>2]|0)){r=e;s=o;t=q;break b}q=e+8|0;u=f[e>>2]|0;d:do if(!u)v=e;else{w=d[q>>1]|0;x=q+2|0;y=e;z=u;while(1){A=z+8|0;if(w<<16>>16!=(d[A>>1]|0)){v=y;break d}if((d[x>>1]|0)!=(d[A+2>>1]|0)){v=y;break d}A=f[z>>2]|0;if(!A){v=z;break}else{B=z;z=A;y=B}}}while(0);f[j>>2]=f[v>>2];f[v>>2]=f[f[(f[a>>2]|0)+(o<<2)>>2]>>2];f[f[(f[a>>2]|0)+(o<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){C=39;break a}}}else{e=c;while(1){u=f[e+4>>2]|0;if(u>>>0<b>>>0)D=u;else D=(u>>>0)%(b>>>0)|0;if((D|0)==(k|0)){p=e;break c}u=(f[a>>2]|0)+(D<<2)|0;if(!(f[u>>2]|0)){r=e;s=D;t=u;break b}u=e+8|0;q=f[e>>2]|0;e:do if(!q)E=e;else{y=d[u>>1]|0;z=u+2|0;x=e;w=q;while(1){B=w+8|0;if(y<<16>>16!=(d[B>>1]|0)){E=x;break e}if((d[z>>1]|0)!=(d[B+2>>1]|0)){E=x;break e}B=f[w>>2]|0;if(!B){E=w;break}else{A=w;w=B;x=A}}}while(0);f[j>>2]=f[E>>2];f[E>>2]=f[f[(f[a>>2]|0)+(D<<2)>>2]>>2];f[f[(f[a>>2]|0)+(D<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){C=39;break a}}}while(0);c=f[p>>2]|0;if(!c){C=39;break a}else{g=p;j=p}}f[t>>2]=j;m=f[r>>2]|0;if(!m){C=39;break}else{k=s;l=r;n=r}}if((C|0)==39)return}function Gd(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;d=a+4|0;if(!c){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[d>>2]=0;return}if(c>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(c<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[d>>2]=c;d=0;do{f[(f[a>>2]|0)+(d<<2)>>2]=0;d=d+1|0}while((d|0)!=(c|0));d=a+8|0;g=f[d>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=c+-1|0;i=(h&c|0)==0;if(!i)if(e>>>0<c>>>0)j=e;else j=(e>>>0)%(c>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=d;d=f[g>>2]|0;if(!d)return;else{k=j;l=g;m=d;n=g}a:while(1){g=l;d=m;j=n;b:while(1){c:do if(i){e=d;while(1){o=f[e+4>>2]&h;if((o|0)==(k|0)){p=e;break c}q=(f[a>>2]|0)+(o<<2)|0;if(!(f[q>>2]|0)){r=e;s=o;t=q;break b}q=e+8|0;u=f[e>>2]|0;d:do if(!u)v=e;else{w=b[q>>0]|0;x=q+1|0;y=e;z=u;while(1){A=z+8|0;if(w<<24>>24!=(b[A>>0]|0)){v=y;break d}if((b[x>>0]|0)!=(b[A+1>>0]|0)){v=y;break d}A=f[z>>2]|0;if(!A){v=z;break}else{B=z;z=A;y=B}}}while(0);f[j>>2]=f[v>>2];f[v>>2]=f[f[(f[a>>2]|0)+(o<<2)>>2]>>2];f[f[(f[a>>2]|0)+(o<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){C=39;break a}}}else{e=d;while(1){u=f[e+4>>2]|0;if(u>>>0<c>>>0)D=u;else D=(u>>>0)%(c>>>0)|0;if((D|0)==(k|0)){p=e;break c}u=(f[a>>2]|0)+(D<<2)|0;if(!(f[u>>2]|0)){r=e;s=D;t=u;break b}u=e+8|0;q=f[e>>2]|0;e:do if(!q)E=e;else{y=b[u>>0]|0;z=u+1|0;x=e;w=q;while(1){B=w+8|0;if(y<<24>>24!=(b[B>>0]|0)){E=x;break e}if((b[z>>0]|0)!=(b[B+1>>0]|0)){E=x;break e}B=f[w>>2]|0;if(!B){E=w;break}else{A=w;w=B;x=A}}}while(0);f[j>>2]=f[E>>2];f[E>>2]=f[f[(f[a>>2]|0)+(D<<2)>>2]>>2];f[f[(f[a>>2]|0)+(D<<2)>>2]>>2]=e;e=f[g>>2]|0;if(!e){C=39;break a}}}while(0);d=f[p>>2]|0;if(!d){C=39;break a}else{g=p;j=p}}f[t>>2]=j;m=f[r>>2]|0;if(!m){C=39;break}else{k=s;l=r;n=r}}if((C|0)==39)return}function Hd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;c=u;u=u+48|0;d=c+32|0;e=c+28|0;g=c+16|0;h=c;i=a+16|0;j=f[i>>2]|0;if(j|0){k=f[b>>2]|0;l=i;m=j;a:while(1){j=m;while(1){if((f[j+16>>2]|0)>=(k|0))break;n=f[j+4>>2]|0;if(!n){o=l;break a}else j=n}m=f[j>>2]|0;if(!m){o=j;break}else l=j}if((o|0)!=(i|0)?(k|0)>=(f[o+16>>2]|0):0){p=o;q=p+20|0;u=c;return q|0}}lp(g);f[h>>2]=f[b>>2];b=h+4|0;f[h+8>>2]=0;o=h+12|0;f[o>>2]=0;k=h+8|0;f[b>>2]=k;l=f[g>>2]|0;m=g+4|0;if((l|0)!=(m|0)){n=k;r=l;while(1){l=r+16|0;f[e>>2]=n;f[d>>2]=f[e>>2];ph(b,d,l,l)|0;l=f[r+4>>2]|0;if(!l){s=r+8|0;t=f[s>>2]|0;if((f[t>>2]|0)==(r|0))v=t;else{t=s;do{s=f[t>>2]|0;t=s+8|0;w=f[t>>2]|0}while((f[w>>2]|0)!=(s|0));v=w}}else{t=l;while(1){j=f[t>>2]|0;if(!j)break;else t=j}v=t}if((v|0)==(m|0))break;else r=v}}v=a+12|0;r=f[i>>2]|0;do if(r){d=f[h>>2]|0;e=a+16|0;n=r;while(1){l=f[n+16>>2]|0;if((d|0)<(l|0)){j=f[n>>2]|0;if(!j){x=23;break}else{y=n;z=j}}else{if((l|0)>=(d|0)){x=27;break}A=n+4|0;l=f[A>>2]|0;if(!l){x=26;break}else{y=A;z=l}}e=y;n=z}if((x|0)==23){B=n;C=n;break}else if((x|0)==26){B=n;C=A;break}else if((x|0)==27){B=n;C=e;break}}else{B=i;C=i}while(0);i=f[C>>2]|0;if(!i){x=ln(32)|0;f[x+16>>2]=f[h>>2];A=x+20|0;f[A>>2]=f[b>>2];z=x+24|0;y=f[h+8>>2]|0;f[z>>2]=y;r=f[o>>2]|0;f[x+28>>2]=r;if(!r)f[A>>2]=z;else{f[y+8>>2]=z;f[b>>2]=k;f[k>>2]=0;f[o>>2]=0}f[x>>2]=0;f[x+4>>2]=0;f[x+8>>2]=B;f[C>>2]=x;B=f[f[v>>2]>>2]|0;if(!B)D=x;else{f[v>>2]=B;D=f[C>>2]|0}Oe(f[a+16>>2]|0,D);D=a+20|0;f[D>>2]=(f[D>>2]|0)+1;E=x}else E=i;Ej(h+4|0,f[k>>2]|0);Ej(g,f[m>>2]|0);p=E;q=p+20|0;u=c;return q|0}function Id(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0;d=b[c+11>>0]|0;e=d<<24>>24<0;g=e?f[c>>2]|0:c;i=e?f[c+4>>2]|0:d&255;if(i>>>0>3){d=g;c=i;e=i;while(1){j=X(h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24,1540483477)|0;c=(X(j>>>24^j,1540483477)|0)^(X(c,1540483477)|0);e=e+-4|0;if(e>>>0<=3)break;else d=d+4|0}d=i+-4|0;e=d&-4;k=d-e|0;l=g+(e+4)|0;m=c}else{k=i;l=g;m=i}switch(k|0){case 3:{n=h[l+2>>0]<<16^m;o=6;break}case 2:{n=m;o=6;break}case 1:{p=m;o=7;break}default:q=m}if((o|0)==6){p=h[l+1>>0]<<8^n;o=7}if((o|0)==7)q=X(p^h[l>>0],1540483477)|0;l=X(q>>>13^q,1540483477)|0;q=l>>>15^l;l=f[a+4>>2]|0;if(!l){r=0;return r|0}p=l+-1|0;n=(p&l|0)==0;if(!n)if(q>>>0<l>>>0)s=q;else s=(q>>>0)%(l>>>0)|0;else s=q&p;m=f[(f[a>>2]|0)+(s<<2)>>2]|0;if(!m){r=0;return r|0}a=f[m>>2]|0;if(!a){r=0;return r|0}m=(i|0)==0;if(n){n=a;a:while(1){k=f[n+4>>2]|0;c=(k|0)==(q|0);if(!(c|(k&p|0)==(s|0))){r=0;o=40;break}do if(c?(k=n+8|0,e=b[k+11>>0]|0,d=e<<24>>24<0,j=e&255,((d?f[n+12>>2]|0:j)|0)==(i|0)):0){e=f[k>>2]|0;t=d?e:k;if(d){if(m){r=n;o=40;break a}if(!(Vk(t,g,i)|0)){r=n;o=40;break a}else break}if(m){r=n;o=40;break a}if((b[g>>0]|0)==(e&255)<<24>>24){e=k;k=j;j=g;do{k=k+-1|0;e=e+1|0;if(!k){r=n;o=40;break a}j=j+1|0}while((b[e>>0]|0)==(b[j>>0]|0))}}while(0);n=f[n>>2]|0;if(!n){r=0;o=40;break}}if((o|0)==40)return r|0}else u=a;b:while(1){a=f[u+4>>2]|0;do if((a|0)==(q|0)){n=u+8|0;p=b[n+11>>0]|0;c=p<<24>>24<0;j=p&255;if(((c?f[u+12>>2]|0:j)|0)==(i|0)){p=f[n>>2]|0;e=c?p:n;if(c){if(m){r=u;o=40;break b}if(!(Vk(e,g,i)|0)){r=u;o=40;break b}else break}if(m){r=u;o=40;break b}if((b[g>>0]|0)==(p&255)<<24>>24){p=n;n=j;j=g;do{n=n+-1|0;p=p+1|0;if(!n){r=u;o=40;break b}j=j+1|0}while((b[p>>0]|0)==(b[j>>0]|0))}}}else{if(a>>>0<l>>>0)v=a;else v=(a>>>0)%(l>>>0)|0;if((v|0)!=(s|0)){r=0;o=40;break b}}while(0);u=f[u>>2]|0;if(!u){r=0;o=40;break}}if((o|0)==40)return r|0;return 0}function Jd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0;c=a+4|0;if(!b){d=f[a>>2]|0;f[a>>2]=0;if(d|0)Oq(d);f[c>>2]=0;return}if(b>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}d=ln(b<<2)|0;e=f[a>>2]|0;f[a>>2]=d;if(e|0)Oq(e);f[c>>2]=b;c=0;do{f[(f[a>>2]|0)+(c<<2)>>2]=0;c=c+1|0}while((c|0)!=(b|0));c=a+8|0;e=f[c>>2]|0;if(!e)return;d=f[e+4>>2]|0;g=b+-1|0;h=(g&b|0)==0;if(!h)if(d>>>0<b>>>0)i=d;else i=(d>>>0)%(b>>>0)|0;else i=d&g;f[(f[a>>2]|0)+(i<<2)>>2]=c;c=f[e>>2]|0;if(!c)return;else{j=i;k=e;l=c;m=e}a:while(1){e=k;c=l;i=m;b:while(1){c:do if(h){d=c;while(1){n=f[d+4>>2]&g;if((n|0)==(j|0)){o=d;break c}p=(f[a>>2]|0)+(n<<2)|0;if(!(f[p>>2]|0)){q=d;r=n;s=p;break b}p=d+12|0;t=f[d>>2]|0;d:do if(!t)u=d;else{v=f[d+8>>2]|0;w=d;x=t;while(1){if((v|0)!=(f[x+8>>2]|0)){u=w;break d}if((f[p>>2]|0)!=(f[x+12>>2]|0)){u=w;break d}y=f[x>>2]|0;if(!y){u=x;break}else{z=x;x=y;w=z}}}while(0);f[i>>2]=f[u>>2];f[u>>2]=f[f[(f[a>>2]|0)+(n<<2)>>2]>>2];f[f[(f[a>>2]|0)+(n<<2)>>2]>>2]=d;d=f[e>>2]|0;if(!d){A=39;break a}}}else{d=c;while(1){p=f[d+4>>2]|0;if(p>>>0<b>>>0)B=p;else B=(p>>>0)%(b>>>0)|0;if((B|0)==(j|0)){o=d;break c}p=(f[a>>2]|0)+(B<<2)|0;if(!(f[p>>2]|0)){q=d;r=B;s=p;break b}p=d+12|0;t=f[d>>2]|0;e:do if(!t)C=d;else{w=f[d+8>>2]|0;x=d;v=t;while(1){if((w|0)!=(f[v+8>>2]|0)){C=x;break e}if((f[p>>2]|0)!=(f[v+12>>2]|0)){C=x;break e}z=f[v>>2]|0;if(!z){C=v;break}else{y=v;v=z;x=y}}}while(0);f[i>>2]=f[C>>2];f[C>>2]=f[f[(f[a>>2]|0)+(B<<2)>>2]>>2];f[f[(f[a>>2]|0)+(B<<2)>>2]>>2]=d;d=f[e>>2]|0;if(!d){A=39;break a}}}while(0);c=f[o>>2]|0;if(!c){A=39;break a}else{e=o;i=o}}f[s>>2]=i;l=f[q>>2]|0;if(!l){A=39;break}else{j=r;k=q;m=q}}if((A|0)==39)return}function Kd(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0;h=a+4|0;i=f[c>>2]|0;c=i;do if((i|0)!=(h|0)){j=i+16|0;k=b[j+11>>0]|0;l=k<<24>>24<0;m=l?f[i+20>>2]|0:k&255;k=b[g+11>>0]|0;n=k<<24>>24<0;o=n?f[g+4>>2]|0:k&255;k=m>>>0<o>>>0;p=k?m:o;if((p|0)!=0?(q=Vk(n?f[g>>2]|0:g,l?f[j>>2]|0:j,p)|0,(q|0)!=0):0){if((q|0)<0)break}else r=4;if((r|0)==4?o>>>0<m>>>0:0)break;q=o>>>0<m>>>0?o:m;if((q|0)!=0?(m=Vk(l?f[j>>2]|0:j,n?f[g>>2]|0:g,q)|0,(m|0)!=0):0){if((m|0)>=0)r=37}else r=21;if((r|0)==21?!k:0)r=37;if((r|0)==37){f[d>>2]=c;f[e>>2]=c;s=e;return s|0}k=f[i+4>>2]|0;m=(k|0)==0;if(m){q=i+8|0;j=f[q>>2]|0;if((f[j>>2]|0)==(i|0))t=j;else{j=q;do{q=f[j>>2]|0;j=q+8|0;l=f[j>>2]|0}while((f[l>>2]|0)!=(q|0));t=l}}else{j=k;while(1){l=f[j>>2]|0;if(!l)break;else j=l}t=j}do if((t|0)!=(h|0)){k=t+16|0;l=b[k+11>>0]|0;q=l<<24>>24<0;p=q?f[t+20>>2]|0:l&255;l=p>>>0<o>>>0?p:o;if((l|0)!=0?(u=Vk(n?f[g>>2]|0:g,q?f[k>>2]|0:k,l)|0,(u|0)!=0):0){if((u|0)<0)break}else r=31;if((r|0)==31?o>>>0<p>>>0:0)break;s=yg(a,d,g)|0;return s|0}while(0);if(m){f[d>>2]=c;s=i+4|0;return s|0}else{f[d>>2]=t;s=t;return s|0}}while(0);t=f[i>>2]|0;do if((f[a>>2]|0)==(i|0))v=c;else{if(!t){h=i;while(1){e=f[h+8>>2]|0;if((f[e>>2]|0)==(h|0))h=e;else{w=e;break}}}else{h=t;while(1){m=f[h+4>>2]|0;if(!m){w=h;break}else h=m}}h=w;m=w+16|0;e=b[g+11>>0]|0;o=e<<24>>24<0;n=o?f[g+4>>2]|0:e&255;e=b[m+11>>0]|0;j=e<<24>>24<0;p=j?f[w+20>>2]|0:e&255;e=n>>>0<p>>>0?n:p;if((e|0)!=0?(u=Vk(j?f[m>>2]|0:m,o?f[g>>2]|0:g,e)|0,(u|0)!=0):0){if((u|0)<0){v=h;break}}else r=13;if((r|0)==13?p>>>0<n>>>0:0){v=h;break}s=yg(a,d,g)|0;return s|0}while(0);if(!t){f[d>>2]=i;s=i;return s|0}else{f[d>>2]=v;s=v+4|0;return s|0}return 0}function Ld(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0;g=a;h=b;i=h;j=c;k=d;l=k;if(!i){m=(e|0)!=0;if(!l){if(m){f[e>>2]=(g>>>0)%(j>>>0);f[e+4>>2]=0}n=0;o=(g>>>0)/(j>>>0)>>>0;return (I=n,o)|0}else{if(!m){n=0;o=0;return (I=n,o)|0}f[e>>2]=a|0;f[e+4>>2]=b&0;n=0;o=0;return (I=n,o)|0}}m=(l|0)==0;do if(j){if(!m){p=(_(l|0)|0)-(_(i|0)|0)|0;if(p>>>0<=31){q=p+1|0;r=31-p|0;s=p-31>>31;t=q;u=g>>>(q>>>0)&s|i<<r;v=i>>>(q>>>0)&s;w=0;x=g<<r;break}if(!e){n=0;o=0;return (I=n,o)|0}f[e>>2]=a|0;f[e+4>>2]=h|b&0;n=0;o=0;return (I=n,o)|0}r=j-1|0;if(r&j|0){s=(_(j|0)|0)+33-(_(i|0)|0)|0;q=64-s|0;p=32-s|0;y=p>>31;z=s-32|0;A=z>>31;t=s;u=p-1>>31&i>>>(z>>>0)|(i<<p|g>>>(s>>>0))&A;v=A&i>>>(s>>>0);w=g<<q&y;x=(i<<q|g>>>(z>>>0))&y|g<<p&s-33>>31;break}if(e|0){f[e>>2]=r&g;f[e+4>>2]=0}if((j|0)==1){n=h|b&0;o=a|0|0;return (I=n,o)|0}else{r=vm(j|0)|0;n=i>>>(r>>>0)|0;o=i<<32-r|g>>>(r>>>0)|0;return (I=n,o)|0}}else{if(m){if(e|0){f[e>>2]=(i>>>0)%(j>>>0);f[e+4>>2]=0}n=0;o=(i>>>0)/(j>>>0)>>>0;return (I=n,o)|0}if(!g){if(e|0){f[e>>2]=0;f[e+4>>2]=(i>>>0)%(l>>>0)}n=0;o=(i>>>0)/(l>>>0)>>>0;return (I=n,o)|0}r=l-1|0;if(!(r&l)){if(e|0){f[e>>2]=a|0;f[e+4>>2]=r&i|b&0}n=0;o=i>>>((vm(l|0)|0)>>>0);return (I=n,o)|0}r=(_(l|0)|0)-(_(i|0)|0)|0;if(r>>>0<=30){s=r+1|0;p=31-r|0;t=s;u=i<<p|g>>>(s>>>0);v=i>>>(s>>>0);w=0;x=g<<p;break}if(!e){n=0;o=0;return (I=n,o)|0}f[e>>2]=a|0;f[e+4>>2]=h|b&0;n=0;o=0;return (I=n,o)|0}while(0);if(!t){B=x;C=w;D=v;E=u;F=0;G=0}else{b=c|0|0;c=k|d&0;d=Vn(b|0,c|0,-1,-1)|0;k=I;h=x;x=w;w=v;v=u;u=t;t=0;do{a=h;h=x>>>31|h<<1;x=t|x<<1;g=v<<1|a>>>31|0;a=v>>>31|w<<1|0;Xn(d|0,k|0,g|0,a|0)|0;i=I;l=i>>31|((i|0)<0?-1:0)<<1;t=l&1;v=Xn(g|0,a|0,l&b|0,(((i|0)<0?-1:0)>>31|((i|0)<0?-1:0)<<1)&c|0)|0;w=I;u=u-1|0}while((u|0)!=0);B=h;C=x;D=w;E=v;F=0;G=t}t=C;C=0;if(e|0){f[e>>2]=E;f[e+4>>2]=D}n=(t|0)>>>31|(B|C)<<1|(C<<1|t>>>31)&0|F;o=(t<<1|0>>>31)&-2|G;return (I=n,o)|0}function Md(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;g=u;u=u+16|0;h=g;f[c+48>>2]=d;f[c+44>>2]=e;e=f[c+8>>2]|0;d=c+12|0;i=f[d>>2]|0;if((i|0)!=(e|0)){j=i;do{i=j+-4|0;f[d>>2]=i;k=f[i>>2]|0;f[i>>2]=0;if(k|0)Va[f[(f[k>>2]|0)+4>>2]&127](k);j=f[d>>2]|0}while((j|0)!=(e|0))}e=f[c+20>>2]|0;j=c+24|0;d=f[j>>2]|0;if((d|0)!=(e|0))f[j>>2]=d+(~((d+-4-e|0)>>>2)<<2);e=f[c+32>>2]|0;d=c+36|0;j=f[d>>2]|0;if((j|0)!=(e|0))f[d>>2]=j+(~((j+-4-e|0)>>>2)<<2);if(!(f[c+4>>2]|0)){e=ln(32)|0;f[h>>2]=e;f[h+8>>2]=-2147483616;f[h+4>>2]=23;l=e;m=15706;n=l+23|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[e+23>>0]=0;f[a>>2]=-1;pj(a+4|0,h);if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);u=g;return}Ud(a,c);if(f[a>>2]|0){u=g;return}e=a+4|0;j=e+11|0;if((b[j>>0]|0)<0)Oq(f[e>>2]|0);Wi(a,c);if(f[a>>2]|0){u=g;return}if((b[j>>0]|0)<0)Oq(f[e>>2]|0);if(!(Qa[f[(f[c>>2]|0)+16>>2]&127](c)|0)){j=ln(32)|0;f[h>>2]=j;f[h+8>>2]=-2147483616;f[h+4>>2]=29;l=j;m=15730;n=l+29|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[j+29>>0]=0;f[a>>2]=-1;pj(e,h);if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);u=g;return}if(!(Qa[f[(f[c>>2]|0)+20>>2]&127](c)|0)){j=ln(32)|0;f[h>>2]=j;f[h+8>>2]=-2147483616;f[h+4>>2]=31;l=j;m=15760;n=l+31|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[j+31>>0]=0;f[a>>2]=-1;pj(e,h);if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);u=g;return}if(!(Qa[f[(f[c>>2]|0)+24>>2]&127](c)|0)){j=ln(32)|0;f[h>>2]=j;f[h+8>>2]=-2147483616;f[h+4>>2]=31;l=j;m=15792;n=l+31|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[j+31>>0]=0;f[a>>2]=-1;pj(e,h);if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);u=g;return}if(Qa[f[(f[c>>2]|0)+28>>2]&127](c)|0){f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;u=g;return}c=ln(48)|0;f[h>>2]=c;f[h+8>>2]=-2147483600;f[h+4>>2]=34;l=c;m=15824;n=l+34|0;do{b[l>>0]=b[m>>0]|0;l=l+1|0;m=m+1|0}while((l|0)<(n|0));b[c+34>>0]=0;f[a>>2]=-1;pj(e,h);if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);u=g;return}function Nd(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0;c=u;u=u+32|0;d=c+4|0;e=c;g=c+16|0;h=a+48|0;i=f[h>>2]|0;j=ln(32)|0;f[d>>2]=j;f[d+8>>2]=-2147483616;f[d+4>>2]=20;k=j;l=14538;m=k+20|0;do{b[k>>0]=b[l>>0]|0;k=k+1|0;l=l+1|0}while((k|0)<(m|0));b[j+20>>0]=0;j=Fk(i+24|0,d)|0;if((b[d+11>>0]|0)<0)Oq(f[d>>2]|0);i=f[h>>2]|0;n=ln(32)|0;f[d>>2]=n;f[d+8>>2]=-2147483616;f[d+4>>2]=22;k=n;l=14559;m=k+22|0;do{b[k>>0]=b[l>>0]|0;k=k+1|0;l=l+1|0}while((k|0)<(m|0));b[n+22>>0]=0;n=Fk(i+24|0,d)|0;if((b[d+11>>0]|0)<0)Oq(f[d>>2]|0);i=a+56|0;o=f[i>>2]|0;f[i>>2]=0;if(o|0)Va[f[(f[o>>2]|0)+4>>2]&127](o);o=f[a+52>>2]|0;p=(((f[o+100>>2]|0)-(f[o+96>>2]|0)|0)/12|0)>>>0<1e3;o=f[h>>2]|0;q=ln(32)|0;f[d>>2]=q;f[d+8>>2]=-2147483616;f[d+4>>2]=18;k=q;l=14582;m=k+18|0;do{b[k>>0]=b[l>>0]|0;k=k+1|0;l=l+1|0}while((k|0)<(m|0));b[q+18>>0]=0;q=Hk(o,d,-1)|0;if((b[d+11>>0]|0)<0)Oq(f[d>>2]|0);switch(q|0){case -1:{if(j?p|((mi(f[h>>2]|0)|0)>4|n^1):0)r=13;else r=17;break}case 0:{if(j)r=13;else r=21;break}case 2:{r=17;break}default:r=21}if((r|0)==13){j=f[a+44>>2]|0;b[g>>0]=0;n=j+16|0;h=f[n+4>>2]|0;if(!((h|0)>0|(h|0)==0&(f[n>>2]|0)>>>0>0)){f[e>>2]=f[j+4>>2];f[d>>2]=f[e>>2];Me(j,d,g,g+1|0)|0}j=ln(296)|0;_i(j);n=f[i>>2]|0;f[i>>2]=j;if(!n)s=j;else{Va[f[(f[n>>2]|0)+4>>2]&127](n);r=21}}else if((r|0)==17){n=f[a+44>>2]|0;b[g>>0]=2;j=n+16|0;h=f[j+4>>2]|0;if(!((h|0)>0|(h|0)==0&(f[j>>2]|0)>>>0>0)){f[e>>2]=f[n+4>>2];f[d>>2]=f[e>>2];Me(n,d,g,g+1|0)|0}g=ln(360)|0;xi(g);d=f[i>>2]|0;f[i>>2]=g;if(!d)s=g;else{Va[f[(f[d>>2]|0)+4>>2]&127](d);r=21}}if((r|0)==21){r=f[i>>2]|0;if(!r){t=0;u=c;return t|0}else s=r}t=Ra[f[(f[s>>2]|0)+8>>2]&127](s,a)|0;u=c;return t|0}function Od(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0;e=b+12|0;g=f[e>>2]|0;h=c+4|0;i=(f[h>>2]|0)-g|0;j=c;f[j>>2]=(f[c>>2]|0)-g;f[j+4>>2]=i;i=(f[d>>2]|0)-g|0;j=d+4|0;k=(f[j>>2]|0)-g|0;g=d;f[g>>2]=i;f[g+4>>2]=k;g=f[e>>2]|0;if((((k|0)>-1?k:0-k|0)+((i|0)>-1?i:0-i|0)|0)>(g|0)){l=f[c>>2]|0;m=f[h>>2]|0;if((l|0)>-1)if((m|0)<=-1)if((l|0)<1){n=-1;o=-1}else p=6;else{n=1;o=1}else if((m|0)<1){n=-1;o=-1}else p=6;if((p|0)==6){n=(l|0)>0?1:-1;o=(m|0)>0?1:-1}q=X(g,n)|0;r=X(g,o)|0;g=(l<<1)-q|0;f[c>>2]=g;l=(m<<1)-r|0;f[h>>2]=l;if((X(n,o)|0)>-1){o=0-l|0;f[c>>2]=o;s=0-g|0;t=o}else{f[c>>2]=l;s=g;t=l}f[c>>2]=(t+q|0)/2|0;f[h>>2]=(s+r|0)/2|0;r=f[d>>2]|0;s=f[j>>2]|0;if((r|0)>-1)if((s|0)<=-1)if((r|0)<1){u=-1;v=-1}else p=14;else{u=1;v=1}else if((s|0)<1){u=-1;v=-1}else p=14;if((p|0)==14){u=(r|0)>0?1:-1;v=(s|0)>0?1:-1}q=f[e>>2]|0;e=X(q,u)|0;t=X(q,v)|0;q=(r<<1)-e|0;f[d>>2]=q;r=(s<<1)-t|0;f[j>>2]=r;if((X(u,v)|0)>-1){v=0-r|0;f[d>>2]=v;w=0-q|0;x=v}else{f[d>>2]=r;w=q;x=r}r=(x+e|0)/2|0;f[d>>2]=r;e=(w+t|0)/2|0;f[j>>2]=e;y=r;z=e}else{y=i;z=k}if(!y)if(!z){A=y;B=z}else p=22;else if((y|0)<0&(z|0)<1){A=y;B=z}else p=22;if((p|0)==22){if(!y)C=(z|0)==0?0:(z|0)>0?3:1;else C=(y|0)>0?(z>>31)+2|0:(z|0)<1?0:3;z=f[c>>2]|0;y=f[h>>2]|0;switch(C|0){case 1:{C=c;f[C>>2]=y;f[C+4>>2]=0-z;D=f[j>>2]|0;E=0-(f[d>>2]|0)|0;break}case 2:{C=c;f[C>>2]=0-z;f[C+4>>2]=0-y;D=0-(f[d>>2]|0)|0;E=0-(f[j>>2]|0)|0;break}case 3:{C=c;f[C>>2]=0-y;f[C+4>>2]=z;D=0-(f[j>>2]|0)|0;E=f[d>>2]|0;break}default:{C=c;f[C>>2]=z;f[C+4>>2]=y;D=f[d>>2]|0;E=f[j>>2]|0}}j=d;f[j>>2]=D;f[j+4>>2]=E;A=D;B=E}E=(f[c>>2]|0)-A|0;f[a>>2]=E;A=(f[h>>2]|0)-B|0;B=a+4|0;f[B>>2]=A;if((E|0)<0)F=(f[b+4>>2]|0)+E|0;else F=E;f[a>>2]=F;if((A|0)>=0){G=A;f[B>>2]=G;return}G=(f[b+4>>2]|0)+A|0;f[B>>2]=G;return}function Pd(a,b){a=a|0;b=b|0;var c=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0;c=a+4|0;if(!b){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[c>>2]=0;return}if(b>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(b<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[c>>2]=b;c=0;do{f[(f[a>>2]|0)+(c<<2)>>2]=0;c=c+1|0}while((c|0)!=(b|0));c=a+8|0;g=f[c>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=b+-1|0;i=(h&b|0)==0;if(!i)if(e>>>0<b>>>0)j=e;else j=(e>>>0)%(b>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=c;c=f[g>>2]|0;if(!c)return;else{k=j;l=g;m=c;n=g}a:while(1){b:do if(i){g=l;c=m;j=n;while(1){e=c;while(1){o=f[e+4>>2]&h;if((o|0)==(k|0))break;p=(f[a>>2]|0)+(o<<2)|0;if(!(f[p>>2]|0)){q=e;r=j;s=o;t=p;break b}p=e+8|0;u=e;while(1){v=f[u>>2]|0;if(!v)break;if((d[p>>1]|0)==(d[v+8>>1]|0))u=v;else break}f[j>>2]=v;f[u>>2]=f[f[(f[a>>2]|0)+(o<<2)>>2]>>2];f[f[(f[a>>2]|0)+(o<<2)>>2]>>2]=e;p=f[g>>2]|0;if(!p){w=37;break a}else e=p}c=f[e>>2]|0;if(!c){w=37;break a}else{g=e;j=e}}}else{j=l;g=m;c=n;while(1){p=g;while(1){x=f[p+4>>2]|0;if(x>>>0<b>>>0)y=x;else y=(x>>>0)%(b>>>0)|0;if((y|0)==(k|0))break;x=(f[a>>2]|0)+(y<<2)|0;if(!(f[x>>2]|0)){q=p;r=c;s=y;t=x;break b}x=p+8|0;z=p;while(1){A=f[z>>2]|0;if(!A)break;if((d[x>>1]|0)==(d[A+8>>1]|0))z=A;else break}f[c>>2]=A;f[z>>2]=f[f[(f[a>>2]|0)+(y<<2)>>2]>>2];f[f[(f[a>>2]|0)+(y<<2)>>2]>>2]=p;x=f[j>>2]|0;if(!x){w=37;break a}else p=x}g=f[p>>2]|0;if(!g){w=37;break a}else{j=p;c=p}}}while(0);f[t>>2]=r;m=f[q>>2]|0;if(!m){w=37;break}else{k=s;l=q;n=q}}if((w|0)==37)return}function Qd(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0;d=a+4|0;if(!c){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[d>>2]=0;return}if(c>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(c<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[d>>2]=c;d=0;do{f[(f[a>>2]|0)+(d<<2)>>2]=0;d=d+1|0}while((d|0)!=(c|0));d=a+8|0;g=f[d>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=c+-1|0;i=(h&c|0)==0;if(!i)if(e>>>0<c>>>0)j=e;else j=(e>>>0)%(c>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=d;d=f[g>>2]|0;if(!d)return;else{k=j;l=g;m=d;n=g}a:while(1){b:do if(i){g=l;d=m;j=n;while(1){e=d;while(1){o=f[e+4>>2]&h;if((o|0)==(k|0))break;p=(f[a>>2]|0)+(o<<2)|0;if(!(f[p>>2]|0)){q=e;r=j;s=o;t=p;break b}p=e+8|0;u=e;while(1){v=f[u>>2]|0;if(!v)break;if((b[p>>0]|0)==(b[v+8>>0]|0))u=v;else break}f[j>>2]=v;f[u>>2]=f[f[(f[a>>2]|0)+(o<<2)>>2]>>2];f[f[(f[a>>2]|0)+(o<<2)>>2]>>2]=e;p=f[g>>2]|0;if(!p){w=37;break a}else e=p}d=f[e>>2]|0;if(!d){w=37;break a}else{g=e;j=e}}}else{j=l;g=m;d=n;while(1){p=g;while(1){x=f[p+4>>2]|0;if(x>>>0<c>>>0)y=x;else y=(x>>>0)%(c>>>0)|0;if((y|0)==(k|0))break;x=(f[a>>2]|0)+(y<<2)|0;if(!(f[x>>2]|0)){q=p;r=d;s=y;t=x;break b}x=p+8|0;z=p;while(1){A=f[z>>2]|0;if(!A)break;if((b[x>>0]|0)==(b[A+8>>0]|0))z=A;else break}f[d>>2]=A;f[z>>2]=f[f[(f[a>>2]|0)+(y<<2)>>2]>>2];f[f[(f[a>>2]|0)+(y<<2)>>2]>>2]=p;x=f[j>>2]|0;if(!x){w=37;break a}else p=x}g=f[p>>2]|0;if(!g){w=37;break a}else{j=p;d=p}}}while(0);f[t>>2]=r;m=f[q>>2]|0;if(!m){w=37;break}else{k=s;l=q;n=q}}if((w|0)==37)return}function Rd(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0;g=f[c>>2]|0;c=f[b>>2]|0;h=g-c|0;i=a+8|0;j=f[i>>2]|0;if(h>>>0<64){if(j>>>0<=1){k=0;return k|0}l=f[e>>2]|0;m=0;n=1;while(1){o=(f[l+(m<<2)>>2]|0)>>>0>(f[l+(n<<2)>>2]|0)>>>0?n:m;n=n+1|0;if(n>>>0>=j>>>0){k=o;break}else m=o}return k|0}if(j){j=f[a+1128>>2]|0;m=f[e>>2]|0;e=f[a+1140>>2]|0;n=f[d>>2]|0;d=b+4|0;l=b+8|0;if((g|0)==(c|0)){b=0;do{o=j+(b<<2)|0;f[o>>2]=0;p=(f[a>>2]|0)-(f[m+(b<<2)>>2]|0)|0;f[e+(b<<2)>>2]=p;if(p|0){p=f[o>>2]|0;q=h-p|0;f[o>>2]=q>>>0<p>>>0?p:q}b=b+1|0;q=f[i>>2]|0}while(b>>>0<q>>>0);r=q}else{b=0;do{q=j+(b<<2)|0;f[q>>2]=0;p=(f[a>>2]|0)-(f[m+(b<<2)>>2]|0)|0;f[e+(b<<2)>>2]=p;if(p|0){o=(f[n+(b<<2)>>2]|0)+(1<<p+-1)|0;p=f[l>>2]|0;s=f[(f[d>>2]|0)+24>>2]|0;t=c;u=f[q>>2]|0;do{v=s+((X(t,p)|0)<<2)+(b<<2)|0;u=u+((f[v>>2]|0)>>>0<o>>>0&1)|0;f[q>>2]=u;t=t+1|0}while((t|0)!=(g|0));t=h-u|0;f[q>>2]=t>>>0<u>>>0?u:t}b=b+1|0;t=f[i>>2]|0}while(b>>>0<t>>>0);r=t}if(r){b=f[a+1140>>2]|0;i=a+1128|0;h=0;g=0;c=0;while(1){if(!(f[b+(g<<2)>>2]|0)){w=h;x=c}else{d=f[(f[i>>2]|0)+(g<<2)>>2]|0;l=h>>>0<d>>>0;w=l?d:h;x=l?g:c}g=g+1|0;if(g>>>0>=r>>>0){y=x;break}else{h=w;c=x}}}else y=0}else y=0;x=a+1088|0;c=a+1104|0;w=f[c>>2]|0;h=32-w|0;if((h|0)<4){r=y&15;g=4-h|0;f[c>>2]=g;h=a+1100|0;i=f[h>>2]|r>>>g;f[h>>2]=i;g=a+1092|0;b=f[g>>2]|0;if((b|0)==(f[a+1096>>2]|0))Ri(x,h);else{f[b>>2]=i;f[g>>2]=b+4}f[h>>2]=r<<32-(f[c>>2]|0);k=y;return k|0}r=a+1100|0;h=f[r>>2]|y<<28>>>w;f[r>>2]=h;b=w+4|0;f[c>>2]=b;if((b|0)!=32){k=y;return k|0}b=a+1092|0;w=f[b>>2]|0;if((w|0)==(f[a+1096>>2]|0))Ri(x,r);else{f[w>>2]=h;f[b>>2]=w+4}f[r>>2]=0;f[c>>2]=0;k=y;return k|0}function Sd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0;c=a+4|0;if(!b){d=f[a>>2]|0;f[a>>2]=0;if(d|0)Oq(d);f[c>>2]=0;return}if(b>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}d=ln(b<<2)|0;e=f[a>>2]|0;f[a>>2]=d;if(e|0)Oq(e);f[c>>2]=b;c=0;do{f[(f[a>>2]|0)+(c<<2)>>2]=0;c=c+1|0}while((c|0)!=(b|0));c=a+8|0;e=f[c>>2]|0;if(!e)return;d=f[e+4>>2]|0;g=b+-1|0;h=(g&b|0)==0;if(!h)if(d>>>0<b>>>0)i=d;else i=(d>>>0)%(b>>>0)|0;else i=d&g;f[(f[a>>2]|0)+(i<<2)>>2]=c;c=f[e>>2]|0;if(!c)return;else{j=i;k=e;l=c;m=e}a:while(1){b:do if(h){e=k;c=l;i=m;while(1){d=c;while(1){n=f[d+4>>2]&g;if((n|0)==(j|0))break;o=(f[a>>2]|0)+(n<<2)|0;if(!(f[o>>2]|0)){p=d;q=i;r=n;s=o;break b}o=d+8|0;t=d;while(1){u=f[t>>2]|0;if(!u)break;if((f[o>>2]|0)==(f[u+8>>2]|0))t=u;else break}f[i>>2]=u;f[t>>2]=f[f[(f[a>>2]|0)+(n<<2)>>2]>>2];f[f[(f[a>>2]|0)+(n<<2)>>2]>>2]=d;o=f[e>>2]|0;if(!o){v=37;break a}else d=o}c=f[d>>2]|0;if(!c){v=37;break a}else{e=d;i=d}}}else{i=k;e=l;c=m;while(1){o=e;while(1){w=f[o+4>>2]|0;if(w>>>0<b>>>0)x=w;else x=(w>>>0)%(b>>>0)|0;if((x|0)==(j|0))break;w=(f[a>>2]|0)+(x<<2)|0;if(!(f[w>>2]|0)){p=o;q=c;r=x;s=w;break b}w=o+8|0;y=o;while(1){z=f[y>>2]|0;if(!z)break;if((f[w>>2]|0)==(f[z+8>>2]|0))y=z;else break}f[c>>2]=z;f[y>>2]=f[f[(f[a>>2]|0)+(x<<2)>>2]>>2];f[f[(f[a>>2]|0)+(x<<2)>>2]>>2]=o;w=f[i>>2]|0;if(!w){v=37;break a}else o=w}e=f[o>>2]|0;if(!e){v=37;break a}else{i=o;c=o}}}while(0);f[s>>2]=q;l=f[p>>2]|0;if(!l){v=37;break}else{j=r;k=p;m=p}}if((v|0)==37)return}function Td(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;d=a+4|0;if(!c){e=f[a>>2]|0;f[a>>2]=0;if(e|0)Oq(e);f[d>>2]=0;return}if(c>>>0>1073741823){e=ra(8)|0;Oo(e,16035);f[e>>2]=7256;va(e|0,1112,110)}e=ln(c<<2)|0;g=f[a>>2]|0;f[a>>2]=e;if(g|0)Oq(g);f[d>>2]=c;d=0;do{f[(f[a>>2]|0)+(d<<2)>>2]=0;d=d+1|0}while((d|0)!=(c|0));d=a+8|0;g=f[d>>2]|0;if(!g)return;e=f[g+4>>2]|0;h=c+-1|0;i=(h&c|0)==0;if(!i)if(e>>>0<c>>>0)j=e;else j=(e>>>0)%(c>>>0)|0;else j=e&h;f[(f[a>>2]|0)+(j<<2)>>2]=d;d=f[g>>2]|0;if(!d)return;e=a+24|0;k=j;j=g;l=d;d=g;a:while(1){g=j;m=l;n=d;b:while(1){o=m;while(1){p=f[o+4>>2]|0;if(!i)if(p>>>0<c>>>0)q=p;else q=(p>>>0)%(c>>>0)|0;else q=p&h;if((q|0)==(k|0))break;r=(f[a>>2]|0)+(q<<2)|0;if(!(f[r>>2]|0))break b;p=f[o>>2]|0;c:do if(!p)s=o;else{t=f[o+8>>2]|0;u=f[e>>2]|0;v=f[u+8>>2]|0;w=(f[u+12>>2]|0)-v|0;u=v;v=w>>>2;if((w|0)>0){x=o;y=p}else{w=p;while(1){z=f[w>>2]|0;if(!z){s=w;break c}else w=z}}while(1){w=f[y+8>>2]|0;z=0;do{A=f[u+(z<<2)>>2]|0;if(!(b[A+84>>0]|0)){B=f[A+68>>2]|0;C=f[B+(w<<2)>>2]|0;D=f[B+(t<<2)>>2]|0}else{C=w;D=t}z=z+1|0;if((D|0)!=(C|0)){s=x;break c}}while((z|0)<(v|0));z=f[y>>2]|0;if(!z){s=y;break}else{w=y;y=z;x=w}}}while(0);f[n>>2]=f[s>>2];f[s>>2]=f[f[(f[a>>2]|0)+(q<<2)>>2]>>2];f[f[(f[a>>2]|0)+(q<<2)>>2]>>2]=o;p=f[g>>2]|0;if(!p){E=38;break a}else o=p}m=f[o>>2]|0;if(!m){E=38;break a}else{g=o;n=o}}f[r>>2]=n;l=f[o>>2]|0;if(!l){E=38;break}else{k=q;j=o;d=o}}if((E|0)==38)return}function Ud(a,c){a=a|0;c=c|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0;e=u;u=u+16|0;g=e+4|0;h=e;i=e+12|0;j=e+11|0;k=e+10|0;l=e+8|0;m=c+44|0;n=f[m>>2]|0;o=n+16|0;p=f[o+4>>2]|0;if(!((p|0)>0|(p|0)==0&(f[o>>2]|0)>>>0>0)){f[h>>2]=f[n+4>>2];f[g>>2]=f[h>>2];Me(n,g,15886,15891)|0}n=Qa[f[(f[c>>2]|0)+8>>2]&127](c)|0;b[i>>0]=n;b[j>>0]=2;b[k>>0]=(n&255|0)==0?3:2;n=f[m>>2]|0;o=n+16|0;p=f[o+4>>2]|0;if(!((p|0)>0|(p|0)==0&(f[o>>2]|0)>>>0>0)){f[h>>2]=f[n+4>>2];f[g>>2]=f[h>>2];Me(n,g,j,j+1|0)|0;j=f[m>>2]|0;o=j+16|0;p=f[o+4>>2]|0;if(!((p|0)>0|(p|0)==0&(f[o>>2]|0)>>>0>0)){f[h>>2]=f[j+4>>2];f[g>>2]=f[h>>2];Me(j,g,k,k+1|0)|0;k=f[m>>2]|0;o=k+16|0;p=f[o+4>>2]|0;if((p|0)>0|(p|0)==0&(f[o>>2]|0)>>>0>0){q=h;r=k}else{f[h>>2]=f[k+4>>2];f[g>>2]=f[h>>2];Me(k,g,i,i+1|0)|0;q=h;r=f[m>>2]|0}}else{s=h;t=j;v=6}}else{s=h;t=n;v=6}if((v|0)==6){q=h;r=t}t=Qa[f[(f[c>>2]|0)+12>>2]&127](c)|0;b[l>>0]=t;t=r+16|0;q=f[t+4>>2]|0;if(!((q|0)>0|(q|0)==0&(f[t>>2]|0)>>>0>0)){f[h>>2]=f[r+4>>2];f[g>>2]=f[h>>2];Me(r,g,l,l+1|0)|0}d[l>>1]=(f[(f[c+4>>2]|0)+4>>2]|0)==0?0:-32768;c=f[m>>2]|0;m=c+16|0;r=f[m+4>>2]|0;if((r|0)>0|(r|0)==0&(f[m>>2]|0)>>>0>0){f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;u=e;return}f[h>>2]=f[c+4>>2];f[g>>2]=f[h>>2];Me(c,g,l,l+2|0)|0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;u=e;return}function Vd(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0;e=u;u=u+176|0;g=e+136|0;h=e+104|0;i=e;j=e+72|0;k=ln(88)|0;l=f[c+8>>2]|0;f[k+4>>2]=0;f[k>>2]=3612;m=k+12|0;f[m>>2]=3636;n=k+64|0;f[n>>2]=0;f[k+68>>2]=0;f[k+72>>2]=0;o=k+16|0;p=o+44|0;do{f[o>>2]=0;o=o+4|0}while((o|0)<(p|0));f[k+76>>2]=l;f[k+80>>2]=d;q=k+84|0;f[q>>2]=0;r=k;f[h>>2]=3636;s=h+4|0;t=s+4|0;f[t>>2]=0;f[t+4>>2]=0;f[t+8>>2]=0;f[t+12>>2]=0;f[t+16>>2]=0;f[t+20>>2]=0;t=f[c+12>>2]|0;v=i+4|0;f[v>>2]=3636;w=i+56|0;f[w>>2]=0;x=i+60|0;f[x>>2]=0;f[i+64>>2]=0;o=i+8|0;p=o+44|0;do{f[o>>2]=0;o=o+4|0}while((o|0)<(p|0));o=t;f[s>>2]=o;s=((f[o+4>>2]|0)-(f[t>>2]|0)>>2>>>0)/3|0;b[g>>0]=0;qh(h+8|0,s,g);Va[f[(f[h>>2]|0)+8>>2]&127](h);Ff(j,h);Ff(g,j);f[i>>2]=f[g+4>>2];s=i+4|0;fg(s,g)|0;f[g>>2]=3636;o=f[g+20>>2]|0;if(o|0)Oq(o);o=f[g+8>>2]|0;if(o|0)Oq(o);f[i+36>>2]=t;f[i+40>>2]=d;f[i+44>>2]=l;f[i+48>>2]=k;f[j>>2]=3636;l=f[j+20>>2]|0;if(l|0)Oq(l);l=f[j+8>>2]|0;if(l|0)Oq(l);f[q>>2]=c+72;f[k+8>>2]=f[i>>2];fg(m,s)|0;s=k+44|0;k=i+36|0;f[s>>2]=f[k>>2];f[s+4>>2]=f[k+4>>2];f[s+8>>2]=f[k+8>>2];f[s+12>>2]=f[k+12>>2];b[s+16>>0]=b[k+16>>0]|0;ng(n,f[w>>2]|0,f[x>>2]|0);f[a>>2]=r;r=f[w>>2]|0;if(r|0){w=f[x>>2]|0;if((w|0)!=(r|0))f[x>>2]=w+(~((w+-4-r|0)>>>2)<<2);Oq(r)}f[v>>2]=3636;v=f[i+24>>2]|0;if(v|0)Oq(v);v=f[i+12>>2]|0;if(v|0)Oq(v);f[h>>2]=3636;v=f[h+20>>2]|0;if(v|0)Oq(v);v=f[h+8>>2]|0;if(!v){u=e;return}Oq(v);u=e;return}function Wd(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=Oa,x=0,y=Oa,z=Oa,A=Oa;e=u;u=u+16|0;g=e;h=a+4|0;if((f[h>>2]|0)!=-1){i=0;u=e;return i|0}f[h>>2]=d;d=b[c+24>>0]|0;h=d<<24>>24;j=a+20|0;n[j>>2]=$(0.0);f[g>>2]=0;k=g+4|0;f[k>>2]=0;f[g+8>>2]=0;do if(d<<24>>24)if(d<<24>>24<0)aq(g);else{l=h<<2;m=ln(l)|0;f[g>>2]=m;o=m+(h<<2)|0;f[g+8>>2]=o;sj(m|0,0,l|0)|0;l=m+(h<<2)|0;f[k>>2]=l;p=m;q=l;r=o;break}else{p=0;q=0;r=0}while(0);k=a+8|0;g=f[k>>2]|0;o=a+12|0;if(!g)s=a+16|0;else{l=f[o>>2]|0;if((l|0)!=(g|0))f[o>>2]=l+(~((l+-4-g|0)>>>2)<<2);Oq(g);g=a+16|0;f[g>>2]=0;f[o>>2]=0;f[k>>2]=0;s=g}f[k>>2]=p;f[o>>2]=q;f[s>>2]=r;r=h>>>0>1073741823?-1:h<<2;s=Lq(r)|0;q=Lq(r)|0;r=c+48|0;o=f[r>>2]|0;g=c+40|0;a=f[g>>2]|0;l=f[c>>2]|0;kh(q|0,(f[l>>2]|0)+o|0,a|0)|0;kh(p|0,(f[l>>2]|0)+o|0,a|0)|0;a=r;r=f[a>>2]|0;o=f[a+4>>2]|0;a=g;g=f[a>>2]|0;l=f[a+4>>2]|0;a=f[c>>2]|0;kh(s|0,(f[a>>2]|0)+r|0,g|0)|0;p=f[c+80>>2]|0;a:do if(p>>>0>1){if(d<<24>>24<=0){c=1;while(1){m=un(g|0,l|0,c|0,0)|0;t=Vn(m|0,I|0,r|0,o|0)|0;kh(q|0,(f[a>>2]|0)+t|0,g|0)|0;c=c+1|0;if(c>>>0>=p>>>0)break a}}c=f[k>>2]|0;t=1;do{m=un(g|0,l|0,t|0,0)|0;v=Vn(m|0,I|0,r|0,o|0)|0;kh(q|0,(f[a>>2]|0)+v|0,g|0)|0;v=0;do{m=c+(v<<2)|0;w=$(n[m>>2]);x=q+(v<<2)|0;y=$(n[x>>2]);if(w>y){n[m>>2]=y;z=$(n[x>>2])}else z=y;x=s+(v<<2)|0;if($(n[x>>2])<z)n[x>>2]=z;v=v+1|0}while((v|0)!=(h|0));t=t+1|0}while(t>>>0<p>>>0)}while(0);if(d<<24>>24>0){d=f[k>>2]|0;k=0;z=$(n[j>>2]);while(1){y=$(n[s+(k<<2)>>2]);w=$(y-$(n[d+(k<<2)>>2]));if(w>z){n[j>>2]=w;A=w}else A=z;k=k+1|0;if((k|0)==(h|0))break;else z=A}}Mq(q);Mq(s);i=1;u=e;return i|0}function Xd(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0;g=a+8|0;Mh(g,b,d,e);h=d-e|0;if((h|0)>0){d=0-e|0;i=a+16|0;j=a+32|0;k=a+12|0;l=a+28|0;m=a+20|0;n=a+24|0;o=h;h=f[g>>2]|0;while(1){p=b+(o<<2)|0;q=c+(o<<2)|0;if((h|0)>0){r=0;s=p+(d<<2)|0;t=h;while(1){if((t|0)>0){u=0;do{v=f[s+(u<<2)>>2]|0;w=f[i>>2]|0;if((v|0)>(w|0)){x=f[j>>2]|0;f[x+(u<<2)>>2]=w;y=x}else{x=f[k>>2]|0;w=f[j>>2]|0;f[w+(u<<2)>>2]=(v|0)<(x|0)?x:v;y=w}u=u+1|0}while((u|0)<(f[g>>2]|0));z=y}else z=f[j>>2]|0;u=(f[p+(r<<2)>>2]|0)-(f[z+(r<<2)>>2]|0)|0;w=q+(r<<2)|0;f[w>>2]=u;if((u|0)>=(f[l>>2]|0)){if((u|0)>(f[n>>2]|0)){A=u-(f[m>>2]|0)|0;B=31}}else{A=(f[m>>2]|0)+u|0;B=31}if((B|0)==31){B=0;f[w>>2]=A}r=r+1|0;w=f[g>>2]|0;if((r|0)>=(w|0)){C=w;break}else{s=z;t=w}}}else C=h;o=o-e|0;if((o|0)<=0){D=C;break}else h=C}}else D=f[g>>2]|0;C=e>>>0>1073741823?-1:e<<2;e=Lq(C)|0;sj(e|0,0,C|0)|0;if((D|0)<=0){Mq(e);return 1}C=a+16|0;h=a+32|0;o=a+12|0;z=a+28|0;A=a+20|0;m=a+24|0;a=0;n=e;l=D;while(1){if((l|0)>0){D=0;do{j=f[n+(D<<2)>>2]|0;y=f[C>>2]|0;if((j|0)>(y|0)){k=f[h>>2]|0;f[k+(D<<2)>>2]=y;E=k}else{k=f[o>>2]|0;y=f[h>>2]|0;f[y+(D<<2)>>2]=(j|0)<(k|0)?k:j;E=y}D=D+1|0}while((D|0)<(f[g>>2]|0));F=E}else F=f[h>>2]|0;D=(f[b+(a<<2)>>2]|0)-(f[F+(a<<2)>>2]|0)|0;y=c+(a<<2)|0;f[y>>2]=D;if((D|0)>=(f[z>>2]|0)){if((D|0)>(f[m>>2]|0)){G=D-(f[A>>2]|0)|0;B=16}}else{G=(f[A>>2]|0)+D|0;B=16}if((B|0)==16){B=0;f[y>>2]=G}a=a+1|0;l=f[g>>2]|0;if((a|0)>=(l|0))break;else n=F}Mq(e);return 1}function Yd(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0;e=f[a>>2]|0;g=e;h=(f[b>>2]|0)-g|0;b=e+(h>>2<<2)|0;i=f[c>>2]|0;c=f[d>>2]|0;d=c-i|0;j=d>>2;k=i;l=c;if((d|0)<=0){m=b;return m|0}d=a+8|0;n=f[d>>2]|0;o=a+4|0;p=f[o>>2]|0;q=p;if((j|0)<=(n-q>>2|0)){r=b;s=q-r|0;t=s>>2;if((j|0)>(t|0)){u=k+(t<<2)|0;t=u;if((u|0)==(l|0))v=p;else{w=l+-4-t|0;x=u;u=p;while(1){f[u>>2]=f[x>>2];x=x+4|0;if((x|0)==(l|0))break;else u=u+4|0}u=p+((w>>>2)+1<<2)|0;f[o>>2]=u;v=u}if((s|0)>0){y=t;z=v}else{m=b;return m|0}}else{y=c;z=p}c=z-(b+(j<<2))>>2;v=b+(c<<2)|0;if(v>>>0<p>>>0){t=(p+(0-c<<2)+~r|0)>>>2;r=v;s=z;while(1){f[s>>2]=f[r>>2];r=r+4|0;if(r>>>0>=p>>>0)break;else s=s+4|0}f[o>>2]=z+(t+1<<2)}if(c|0){c=v;v=z;do{c=c+-4|0;v=v+-4|0;f[v>>2]=f[c>>2]}while((c|0)!=(b|0))}c=y;if((k|0)==(c|0)){m=b;return m|0}else{A=b;B=k}while(1){f[A>>2]=f[B>>2];B=B+4|0;if((B|0)==(c|0)){m=b;break}else A=A+4|0}return m|0}A=(q-g>>2)+j|0;if(A>>>0>1073741823)aq(a);j=n-g|0;g=j>>1;n=j>>2>>>0<536870911?(g>>>0<A>>>0?A:g):1073741823;g=b;A=h>>2;do if(n)if(n>>>0>1073741823){j=ra(8)|0;Oo(j,16035);f[j>>2]=7256;va(j|0,1112,110)}else{j=ln(n<<2)|0;C=j;D=j;break}else{C=0;D=0}while(0);j=D+(A<<2)|0;A=D+(n<<2)|0;if((l|0)==(k|0))E=j;else{n=((l+-4-i|0)>>>2)+1|0;i=k;k=j;while(1){f[k>>2]=f[i>>2];i=i+4|0;if((i|0)==(l|0))break;else k=k+4|0}E=j+(n<<2)|0}if((h|0)>0)kh(C|0,e|0,h|0)|0;h=q-g|0;if((h|0)>0){kh(E|0,b|0,h|0)|0;F=E+(h>>>2<<2)|0}else F=E;f[a>>2]=D;f[o>>2]=F;f[d>>2]=A;if(!e){m=j;return m|0}Oq(e);m=j;return m|0}function Zd(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0;c=u;u=u+48|0;d=c+40|0;e=c+36|0;g=c+32|0;h=c;i=a+60|0;ci(f[i>>2]|0,b)|0;wn(h);tk(h);j=f[a+56>>2]|0;k=f[i>>2]|0;i=k>>>5;l=j+(i<<2)|0;m=k&31;k=(i|0)!=0;a:do if(i|m|0){if(!m){n=1;o=j;p=k;while(1){if(p){q=n;r=0;while(1){s=(f[o>>2]&1<<r|0)!=0;fj(h,q^s^1);if((r|0)==31){t=s;break}else{q=s;r=r+1|0}}}else{r=n;q=0;while(1){s=(f[o>>2]&1<<q|0)!=0;fj(h,r^s^1);if((q|0)==31){t=s;break}else{r=s;q=q+1|0}}}o=o+4|0;if((l|0)==(o|0))break a;else{n=t;p=1}}}if(k){p=1;n=j;while(1){o=p;q=0;while(1){r=o;o=(f[n>>2]&1<<q|0)!=0;fj(h,r^o^1);if((q|0)==31)break;else q=q+1|0}q=n+4|0;if((l|0)==(q|0)){v=o;w=q;break}else{p=o;n=q}}}else{v=1;w=j}n=v;p=0;do{q=n;n=(f[w>>2]&1<<p|0)!=0;fj(h,q^n^1);p=p+1|0}while((p|0)!=(m|0))}while(0);ld(h,b);f[g>>2]=f[a+12>>2];m=b+16|0;w=m;v=f[w>>2]|0;j=f[w+4>>2]|0;if((j|0)>0|(j|0)==0&v>>>0>0){x=j;y=v}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;v=m;x=f[v+4>>2]|0;y=f[v>>2]|0}f[g>>2]=f[a+20>>2];if((x|0)>0|(x|0)==0&y>>>0>0){Fj(h);u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;Fj(h);u=c;return 1}function _d(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0;switch(b-a>>2|0){case 2:{d=b+-4|0;e=f[d>>2]|0;g=f[a>>2]|0;h=f[c>>2]|0;i=f[h>>2]|0;j=(f[h+4>>2]|0)-i>>3;if(j>>>0<=e>>>0)aq(h);k=i;if(j>>>0<=g>>>0)aq(h);if((f[k+(e<<3)>>2]|0)>>>0>=(f[k+(g<<3)>>2]|0)>>>0){l=1;return l|0}f[a>>2]=e;f[d>>2]=g;l=1;return l|0}case 3:{Vg(a,a+4|0,b+-4|0,c)|0;l=1;return l|0}case 4:{jh(a,a+4|0,a+8|0,b+-4|0,c)|0;l=1;return l|0}case 5:{ig(a,a+4|0,a+8|0,a+12|0,b+-4|0,c)|0;l=1;return l|0}case 1:case 0:{l=1;return l|0}default:{g=a+8|0;Vg(a,a+4|0,g,c)|0;d=a+12|0;a:do if((d|0)!=(b|0)){e=f[c>>2]|0;k=f[e>>2]|0;h=(f[e+4>>2]|0)-k>>3;j=k;k=d;i=0;m=g;b:while(1){n=f[k>>2]|0;o=f[m>>2]|0;if(h>>>0<=n>>>0){p=14;break}if(h>>>0<=o>>>0){p=16;break}q=j+(n<<3)|0;if((f[q>>2]|0)>>>0<(f[j+(o<<3)>>2]|0)>>>0){r=m;s=k;t=o;while(1){f[s>>2]=t;if((r|0)==(a|0)){u=a;break}o=r+-4|0;t=f[o>>2]|0;if(h>>>0<=t>>>0){p=20;break b}if((f[q>>2]|0)>>>0>=(f[j+(t<<3)>>2]|0)>>>0){u=r;break}else{v=r;r=o;s=v}}f[u>>2]=n;s=i+1|0;if((s|0)==8){w=0;x=(k+4|0)==(b|0);break a}else y=s}else y=i;s=k+4|0;if((s|0)==(b|0)){w=1;x=0;break a}else{r=k;k=s;i=y;m=r}}if((p|0)==14)aq(e);else if((p|0)==16)aq(e);else if((p|0)==20)aq(e)}else{w=1;x=0}while(0);l=x|w;return l|0}}return 0}function $d(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0;c=u;u=u+48|0;d=c+40|0;e=c+36|0;g=c+32|0;h=c;i=a+80|0;ci(f[i>>2]|0,b)|0;wn(h);tk(h);j=f[a+76>>2]|0;k=f[i>>2]|0;i=k>>>5;l=j+(i<<2)|0;m=k&31;k=(i|0)!=0;a:do if(i|m|0){if(!m){n=1;o=j;p=k;while(1){if(p){q=n;r=0;while(1){s=(f[o>>2]&1<<r|0)!=0;fj(h,q^s^1);if((r|0)==31){t=s;break}else{q=s;r=r+1|0}}}else{r=n;q=0;while(1){s=(f[o>>2]&1<<q|0)!=0;fj(h,r^s^1);if((q|0)==31){t=s;break}else{r=s;q=q+1|0}}}o=o+4|0;if((l|0)==(o|0))break a;else{n=t;p=1}}}if(k){p=1;n=j;while(1){o=p;q=0;while(1){r=o;o=(f[n>>2]&1<<q|0)!=0;fj(h,r^o^1);if((q|0)==31)break;else q=q+1|0}q=n+4|0;if((l|0)==(q|0)){v=o;w=q;break}else{p=o;n=q}}}else{v=1;w=j}n=v;p=0;do{q=n;n=(f[w>>2]&1<<p|0)!=0;fj(h,q^n^1);p=p+1|0}while((p|0)!=(m|0))}while(0);ld(h,b);f[g>>2]=f[a+12>>2];m=b+16|0;w=m;v=f[w>>2]|0;j=f[w+4>>2]|0;if((j|0)>0|(j|0)==0&v>>>0>0){x=j;y=v}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;v=m;x=f[v+4>>2]|0;y=f[v>>2]|0}f[g>>2]=f[a+16>>2];if((x|0)>0|(x|0)==0&y>>>0>0){Fj(h);u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;Fj(h);u=c;return 1}function ae(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0;h=u;u=u+16|0;i=h+4|0;j=h;f[a+72>>2]=e;f[a+64>>2]=g;g=Lq(e>>>0>1073741823?-1:e<<2)|0;k=a+68|0;l=f[k>>2]|0;f[k>>2]=g;if(l|0)Mq(l);l=a+8|0;Mh(l,b,d,e);d=a+56|0;g=f[d>>2]|0;m=f[g+4>>2]|0;n=f[g>>2]|0;o=m-n|0;if((o|0)<=0){u=h;return 1}p=(o>>>2)+-1|0;o=a+16|0;q=a+32|0;r=a+12|0;s=a+28|0;t=a+20|0;v=a+24|0;if(m-n>>2>>>0>p>>>0){w=p;x=n}else{y=g;aq(y)}while(1){f[j>>2]=f[x+(w<<2)>>2];f[i>>2]=f[j>>2];Dc(a,i,b,w);g=X(w,e)|0;n=b+(g<<2)|0;p=c+(g<<2)|0;g=f[l>>2]|0;if((g|0)>0){m=0;z=f[k>>2]|0;A=g;while(1){if((A|0)>0){g=0;do{B=f[z+(g<<2)>>2]|0;C=f[o>>2]|0;if((B|0)>(C|0)){D=f[q>>2]|0;f[D+(g<<2)>>2]=C;E=D}else{D=f[r>>2]|0;C=f[q>>2]|0;f[C+(g<<2)>>2]=(B|0)<(D|0)?D:B;E=C}g=g+1|0}while((g|0)<(f[l>>2]|0));F=E}else F=f[q>>2]|0;g=(f[n+(m<<2)>>2]|0)-(f[F+(m<<2)>>2]|0)|0;C=p+(m<<2)|0;f[C>>2]=g;if((g|0)>=(f[s>>2]|0)){if((g|0)>(f[v>>2]|0)){G=g-(f[t>>2]|0)|0;H=21}}else{G=(f[t>>2]|0)+g|0;H=21}if((H|0)==21){H=0;f[C>>2]=G}m=m+1|0;A=f[l>>2]|0;if((m|0)>=(A|0))break;else z=F}}w=w+-1|0;if((w|0)<=-1){H=5;break}z=f[d>>2]|0;x=f[z>>2]|0;if((f[z+4>>2]|0)-x>>2>>>0<=w>>>0){y=z;H=6;break}}if((H|0)==5){u=h;return 1}else if((H|0)==6)aq(y);return 0}\nfunction $a(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0;b=u;u=u+16|0;c=b;do if(a>>>0<245){d=a>>>0<11?16:a+11&-8;e=d>>>3;g=f[4784]|0;h=g>>>e;if(h&3|0){i=(h&1^1)+e|0;j=19176+(i<<1<<2)|0;k=j+8|0;l=f[k>>2]|0;m=l+8|0;n=f[m>>2]|0;if((n|0)==(j|0))f[4784]=g&~(1<<i);else{f[n+12>>2]=j;f[k>>2]=n}n=i<<3;f[l+4>>2]=n|3;i=l+n+4|0;f[i>>2]=f[i>>2]|1;o=m;u=b;return o|0}m=f[4786]|0;if(d>>>0>m>>>0){if(h|0){i=2<<e;n=h<<e&(i|0-i);i=(n&0-n)+-1|0;n=i>>>12&16;e=i>>>n;i=e>>>5&8;h=e>>>i;e=h>>>2&4;l=h>>>e;h=l>>>1&2;k=l>>>h;l=k>>>1&1;j=(i|n|e|h|l)+(k>>>l)|0;l=19176+(j<<1<<2)|0;k=l+8|0;h=f[k>>2]|0;e=h+8|0;n=f[e>>2]|0;if((n|0)==(l|0)){i=g&~(1<<j);f[4784]=i;p=i}else{f[n+12>>2]=l;f[k>>2]=n;p=g}n=j<<3;j=n-d|0;f[h+4>>2]=d|3;k=h+d|0;f[k+4>>2]=j|1;f[h+n>>2]=j;if(m|0){n=f[4789]|0;h=m>>>3;l=19176+(h<<1<<2)|0;i=1<<h;if(!(p&i)){f[4784]=p|i;q=l;r=l+8|0}else{i=l+8|0;q=f[i>>2]|0;r=i}f[r>>2]=n;f[q+12>>2]=n;f[n+8>>2]=q;f[n+12>>2]=l}f[4786]=j;f[4789]=k;o=e;u=b;return o|0}e=f[4785]|0;if(e){k=(e&0-e)+-1|0;j=k>>>12&16;l=k>>>j;k=l>>>5&8;n=l>>>k;l=n>>>2&4;i=n>>>l;n=i>>>1&2;h=i>>>n;i=h>>>1&1;s=f[19440+((k|j|l|n|i)+(h>>>i)<<2)>>2]|0;i=(f[s+4>>2]&-8)-d|0;h=f[s+16+(((f[s+16>>2]|0)==0&1)<<2)>>2]|0;if(!h){t=s;v=i}else{n=s;s=i;i=h;while(1){h=(f[i+4>>2]&-8)-d|0;l=h>>>0<s>>>0;j=l?h:s;h=l?i:n;i=f[i+16+(((f[i+16>>2]|0)==0&1)<<2)>>2]|0;if(!i){t=h;v=j;break}else{n=h;s=j}}}s=t+d|0;if(s>>>0>t>>>0){n=f[t+24>>2]|0;i=f[t+12>>2]|0;do if((i|0)==(t|0)){j=t+20|0;h=f[j>>2]|0;if(!h){l=t+16|0;k=f[l>>2]|0;if(!k){w=0;break}else{x=k;y=l}}else{x=h;y=j}while(1){j=x+20|0;h=f[j>>2]|0;if(h|0){x=h;y=j;continue}j=x+16|0;h=f[j>>2]|0;if(!h)break;else{x=h;y=j}}f[y>>2]=0;w=x}else{j=f[t+8>>2]|0;f[j+12>>2]=i;f[i+8>>2]=j;w=i}while(0);do if(n|0){i=f[t+28>>2]|0;j=19440+(i<<2)|0;if((t|0)==(f[j>>2]|0)){f[j>>2]=w;if(!w){f[4785]=e&~(1<<i);break}}else{f[n+16+(((f[n+16>>2]|0)!=(t|0)&1)<<2)>>2]=w;if(!w)break}f[w+24>>2]=n;i=f[t+16>>2]|0;if(i|0){f[w+16>>2]=i;f[i+24>>2]=w}i=f[t+20>>2]|0;if(i|0){f[w+20>>2]=i;f[i+24>>2]=w}}while(0);if(v>>>0<16){n=v+d|0;f[t+4>>2]=n|3;e=t+n+4|0;f[e>>2]=f[e>>2]|1}else{f[t+4>>2]=d|3;f[s+4>>2]=v|1;f[s+v>>2]=v;if(m|0){e=f[4789]|0;n=m>>>3;i=19176+(n<<1<<2)|0;j=1<<n;if(!(g&j)){f[4784]=g|j;z=i;A=i+8|0}else{j=i+8|0;z=f[j>>2]|0;A=j}f[A>>2]=e;f[z+12>>2]=e;f[e+8>>2]=z;f[e+12>>2]=i}f[4786]=v;f[4789]=s}o=t+8|0;u=b;return o|0}else B=d}else B=d}else B=d}else if(a>>>0<=4294967231){i=a+11|0;e=i&-8;j=f[4785]|0;if(j){n=0-e|0;h=i>>>8;if(h)if(e>>>0>16777215)C=31;else{i=(h+1048320|0)>>>16&8;l=h<<i;h=(l+520192|0)>>>16&4;k=l<<h;l=(k+245760|0)>>>16&2;D=14-(h|i|l)+(k<<l>>>15)|0;C=e>>>(D+7|0)&1|D<<1}else C=0;D=f[19440+(C<<2)>>2]|0;a:do if(!D){E=0;F=0;G=n;H=57}else{l=0;k=n;i=D;h=e<<((C|0)==31?0:25-(C>>>1)|0);I=0;while(1){J=(f[i+4>>2]&-8)-e|0;if(J>>>0<k>>>0)if(!J){K=0;L=i;M=i;H=61;break a}else{N=i;O=J}else{N=l;O=k}J=f[i+20>>2]|0;i=f[i+16+(h>>>31<<2)>>2]|0;P=(J|0)==0|(J|0)==(i|0)?I:J;J=(i|0)==0;if(J){E=P;F=N;G=O;H=57;break}else{l=N;k=O;h=h<<((J^1)&1);I=P}}}while(0);if((H|0)==57){if((E|0)==0&(F|0)==0){D=2<<C;n=j&(D|0-D);if(!n){B=e;break}D=(n&0-n)+-1|0;n=D>>>12&16;d=D>>>n;D=d>>>5&8;s=d>>>D;d=s>>>2&4;g=s>>>d;s=g>>>1&2;m=g>>>s;g=m>>>1&1;Q=0;R=f[19440+((D|n|d|s|g)+(m>>>g)<<2)>>2]|0}else{Q=F;R=E}if(!R){S=Q;T=G}else{K=G;L=R;M=Q;H=61}}if((H|0)==61)while(1){H=0;g=(f[L+4>>2]&-8)-e|0;m=g>>>0<K>>>0;s=m?g:K;g=m?L:M;L=f[L+16+(((f[L+16>>2]|0)==0&1)<<2)>>2]|0;if(!L){S=g;T=s;break}else{K=s;M=g;H=61}}if((S|0)!=0?T>>>0<((f[4786]|0)-e|0)>>>0:0){g=S+e|0;if(g>>>0<=S>>>0){o=0;u=b;return o|0}s=f[S+24>>2]|0;m=f[S+12>>2]|0;do if((m|0)==(S|0)){d=S+20|0;n=f[d>>2]|0;if(!n){D=S+16|0;I=f[D>>2]|0;if(!I){U=0;break}else{V=I;W=D}}else{V=n;W=d}while(1){d=V+20|0;n=f[d>>2]|0;if(n|0){V=n;W=d;continue}d=V+16|0;n=f[d>>2]|0;if(!n)break;else{V=n;W=d}}f[W>>2]=0;U=V}else{d=f[S+8>>2]|0;f[d+12>>2]=m;f[m+8>>2]=d;U=m}while(0);do if(s){m=f[S+28>>2]|0;d=19440+(m<<2)|0;if((S|0)==(f[d>>2]|0)){f[d>>2]=U;if(!U){d=j&~(1<<m);f[4785]=d;X=d;break}}else{f[s+16+(((f[s+16>>2]|0)!=(S|0)&1)<<2)>>2]=U;if(!U){X=j;break}}f[U+24>>2]=s;d=f[S+16>>2]|0;if(d|0){f[U+16>>2]=d;f[d+24>>2]=U}d=f[S+20>>2]|0;if(d){f[U+20>>2]=d;f[d+24>>2]=U;X=j}else X=j}else X=j;while(0);do if(T>>>0>=16){f[S+4>>2]=e|3;f[g+4>>2]=T|1;f[g+T>>2]=T;j=T>>>3;if(T>>>0<256){s=19176+(j<<1<<2)|0;d=f[4784]|0;m=1<<j;if(!(d&m)){f[4784]=d|m;Y=s;Z=s+8|0}else{m=s+8|0;Y=f[m>>2]|0;Z=m}f[Z>>2]=g;f[Y+12>>2]=g;f[g+8>>2]=Y;f[g+12>>2]=s;break}s=T>>>8;if(s)if(T>>>0>16777215)_=31;else{m=(s+1048320|0)>>>16&8;d=s<<m;s=(d+520192|0)>>>16&4;j=d<<s;d=(j+245760|0)>>>16&2;n=14-(s|m|d)+(j<<d>>>15)|0;_=T>>>(n+7|0)&1|n<<1}else _=0;n=19440+(_<<2)|0;f[g+28>>2]=_;d=g+16|0;f[d+4>>2]=0;f[d>>2]=0;d=1<<_;if(!(X&d)){f[4785]=X|d;f[n>>2]=g;f[g+24>>2]=n;f[g+12>>2]=g;f[g+8>>2]=g;break}d=T<<((_|0)==31?0:25-(_>>>1)|0);j=f[n>>2]|0;while(1){if((f[j+4>>2]&-8|0)==(T|0)){H=97;break}$=j+16+(d>>>31<<2)|0;n=f[$>>2]|0;if(!n){H=96;break}else{d=d<<1;j=n}}if((H|0)==96){f[$>>2]=g;f[g+24>>2]=j;f[g+12>>2]=g;f[g+8>>2]=g;break}else if((H|0)==97){d=j+8|0;n=f[d>>2]|0;f[n+12>>2]=g;f[d>>2]=g;f[g+8>>2]=n;f[g+12>>2]=j;f[g+24>>2]=0;break}}else{n=T+e|0;f[S+4>>2]=n|3;d=S+n+4|0;f[d>>2]=f[d>>2]|1}while(0);o=S+8|0;u=b;return o|0}else B=e}else B=e}else B=-1;while(0);S=f[4786]|0;if(S>>>0>=B>>>0){T=S-B|0;$=f[4789]|0;if(T>>>0>15){_=$+B|0;f[4789]=_;f[4786]=T;f[_+4>>2]=T|1;f[$+S>>2]=T;f[$+4>>2]=B|3}else{f[4786]=0;f[4789]=0;f[$+4>>2]=S|3;T=$+S+4|0;f[T>>2]=f[T>>2]|1}o=$+8|0;u=b;return o|0}$=f[4787]|0;if($>>>0>B>>>0){T=$-B|0;f[4787]=T;S=f[4790]|0;_=S+B|0;f[4790]=_;f[_+4>>2]=T|1;f[S+4>>2]=B|3;o=S+8|0;u=b;return o|0}if(!(f[4902]|0)){f[4904]=4096;f[4903]=4096;f[4905]=-1;f[4906]=-1;f[4907]=0;f[4895]=0;f[4902]=c&-16^1431655768;aa=4096}else aa=f[4904]|0;c=B+48|0;S=B+47|0;T=aa+S|0;_=0-aa|0;aa=T&_;if(aa>>>0<=B>>>0){o=0;u=b;return o|0}X=f[4894]|0;if(X|0?(Y=f[4892]|0,Z=Y+aa|0,Z>>>0<=Y>>>0|Z>>>0>X>>>0):0){o=0;u=b;return o|0}b:do if(!(f[4895]&4)){X=f[4790]|0;c:do if(X){Z=19584;while(1){Y=f[Z>>2]|0;if(Y>>>0<=X>>>0?(ba=Z+4|0,(Y+(f[ba>>2]|0)|0)>>>0>X>>>0):0)break;Y=f[Z+8>>2]|0;if(!Y){H=118;break c}else Z=Y}j=T-$&_;if(j>>>0<2147483647){Y=Nl(j|0)|0;if((Y|0)==((f[Z>>2]|0)+(f[ba>>2]|0)|0))if((Y|0)==(-1|0))ca=j;else{da=j;ea=Y;H=135;break b}else{fa=Y;ga=j;H=126}}else ca=0}else H=118;while(0);do if((H|0)==118){X=Nl(0)|0;if((X|0)!=(-1|0)?(e=X,j=f[4903]|0,Y=j+-1|0,U=((Y&e|0)==0?0:(Y+e&0-j)-e|0)+aa|0,e=f[4892]|0,j=U+e|0,U>>>0>B>>>0&U>>>0<2147483647):0){Y=f[4894]|0;if(Y|0?j>>>0<=e>>>0|j>>>0>Y>>>0:0){ca=0;break}Y=Nl(U|0)|0;if((Y|0)==(X|0)){da=U;ea=X;H=135;break b}else{fa=Y;ga=U;H=126}}else ca=0}while(0);do if((H|0)==126){U=0-ga|0;if(!(c>>>0>ga>>>0&(ga>>>0<2147483647&(fa|0)!=(-1|0))))if((fa|0)==(-1|0)){ca=0;break}else{da=ga;ea=fa;H=135;break b}Y=f[4904]|0;X=S-ga+Y&0-Y;if(X>>>0>=2147483647){da=ga;ea=fa;H=135;break b}if((Nl(X|0)|0)==(-1|0)){Nl(U|0)|0;ca=0;break}else{da=X+ga|0;ea=fa;H=135;break b}}while(0);f[4895]=f[4895]|4;ha=ca;H=133}else{ha=0;H=133}while(0);if(((H|0)==133?aa>>>0<2147483647:0)?(ca=Nl(aa|0)|0,aa=Nl(0)|0,fa=aa-ca|0,ga=fa>>>0>(B+40|0)>>>0,!((ca|0)==(-1|0)|ga^1|ca>>>0<aa>>>0&((ca|0)!=(-1|0)&(aa|0)!=(-1|0))^1)):0){da=ga?fa:ha;ea=ca;H=135}if((H|0)==135){ca=(f[4892]|0)+da|0;f[4892]=ca;if(ca>>>0>(f[4893]|0)>>>0)f[4893]=ca;ca=f[4790]|0;do if(ca){ha=19584;while(1){ia=f[ha>>2]|0;ja=ha+4|0;ka=f[ja>>2]|0;if((ea|0)==(ia+ka|0)){H=143;break}fa=f[ha+8>>2]|0;if(!fa)break;else ha=fa}if(((H|0)==143?(f[ha+12>>2]&8|0)==0:0)?ea>>>0>ca>>>0&ia>>>0<=ca>>>0:0){f[ja>>2]=ka+da;fa=(f[4787]|0)+da|0;ga=ca+8|0;aa=(ga&7|0)==0?0:0-ga&7;ga=ca+aa|0;S=fa-aa|0;f[4790]=ga;f[4787]=S;f[ga+4>>2]=S|1;f[ca+fa+4>>2]=40;f[4791]=f[4906];break}if(ea>>>0<(f[4788]|0)>>>0)f[4788]=ea;fa=ea+da|0;S=19584;while(1){if((f[S>>2]|0)==(fa|0)){H=151;break}ga=f[S+8>>2]|0;if(!ga){la=19584;break}else S=ga}if((H|0)==151)if(!(f[S+12>>2]&8)){f[S>>2]=ea;ha=S+4|0;f[ha>>2]=(f[ha>>2]|0)+da;ha=ea+8|0;ga=ea+((ha&7|0)==0?0:0-ha&7)|0;ha=fa+8|0;aa=fa+((ha&7|0)==0?0:0-ha&7)|0;ha=ga+B|0;c=aa-ga-B|0;f[ga+4>>2]=B|3;do if((ca|0)!=(aa|0)){if((f[4789]|0)==(aa|0)){ba=(f[4786]|0)+c|0;f[4786]=ba;f[4789]=ha;f[ha+4>>2]=ba|1;f[ha+ba>>2]=ba;break}ba=f[aa+4>>2]|0;if((ba&3|0)==1){_=ba&-8;$=ba>>>3;d:do if(ba>>>0<256){T=f[aa+8>>2]|0;X=f[aa+12>>2]|0;if((X|0)==(T|0)){f[4784]=f[4784]&~(1<<$);break}else{f[T+12>>2]=X;f[X+8>>2]=T;break}}else{T=f[aa+24>>2]|0;X=f[aa+12>>2]|0;do if((X|0)==(aa|0)){U=aa+16|0;Y=U+4|0;j=f[Y>>2]|0;if(!j){e=f[U>>2]|0;if(!e){ma=0;break}else{na=e;oa=U}}else{na=j;oa=Y}while(1){Y=na+20|0;j=f[Y>>2]|0;if(j|0){na=j;oa=Y;continue}Y=na+16|0;j=f[Y>>2]|0;if(!j)break;else{na=j;oa=Y}}f[oa>>2]=0;ma=na}else{Y=f[aa+8>>2]|0;f[Y+12>>2]=X;f[X+8>>2]=Y;ma=X}while(0);if(!T)break;X=f[aa+28>>2]|0;Y=19440+(X<<2)|0;do if((f[Y>>2]|0)!=(aa|0)){f[T+16+(((f[T+16>>2]|0)!=(aa|0)&1)<<2)>>2]=ma;if(!ma)break d}else{f[Y>>2]=ma;if(ma|0)break;f[4785]=f[4785]&~(1<<X);break d}while(0);f[ma+24>>2]=T;X=aa+16|0;Y=f[X>>2]|0;if(Y|0){f[ma+16>>2]=Y;f[Y+24>>2]=ma}Y=f[X+4>>2]|0;if(!Y)break;f[ma+20>>2]=Y;f[Y+24>>2]=ma}while(0);pa=aa+_|0;qa=_+c|0}else{pa=aa;qa=c}$=pa+4|0;f[$>>2]=f[$>>2]&-2;f[ha+4>>2]=qa|1;f[ha+qa>>2]=qa;$=qa>>>3;if(qa>>>0<256){ba=19176+($<<1<<2)|0;Z=f[4784]|0;Y=1<<$;if(!(Z&Y)){f[4784]=Z|Y;ra=ba;sa=ba+8|0}else{Y=ba+8|0;ra=f[Y>>2]|0;sa=Y}f[sa>>2]=ha;f[ra+12>>2]=ha;f[ha+8>>2]=ra;f[ha+12>>2]=ba;break}ba=qa>>>8;do if(!ba)ta=0;else{if(qa>>>0>16777215){ta=31;break}Y=(ba+1048320|0)>>>16&8;Z=ba<<Y;$=(Z+520192|0)>>>16&4;X=Z<<$;Z=(X+245760|0)>>>16&2;j=14-($|Y|Z)+(X<<Z>>>15)|0;ta=qa>>>(j+7|0)&1|j<<1}while(0);ba=19440+(ta<<2)|0;f[ha+28>>2]=ta;_=ha+16|0;f[_+4>>2]=0;f[_>>2]=0;_=f[4785]|0;j=1<<ta;if(!(_&j)){f[4785]=_|j;f[ba>>2]=ha;f[ha+24>>2]=ba;f[ha+12>>2]=ha;f[ha+8>>2]=ha;break}j=qa<<((ta|0)==31?0:25-(ta>>>1)|0);_=f[ba>>2]|0;while(1){if((f[_+4>>2]&-8|0)==(qa|0)){H=192;break}ua=_+16+(j>>>31<<2)|0;ba=f[ua>>2]|0;if(!ba){H=191;break}else{j=j<<1;_=ba}}if((H|0)==191){f[ua>>2]=ha;f[ha+24>>2]=_;f[ha+12>>2]=ha;f[ha+8>>2]=ha;break}else if((H|0)==192){j=_+8|0;ba=f[j>>2]|0;f[ba+12>>2]=ha;f[j>>2]=ha;f[ha+8>>2]=ba;f[ha+12>>2]=_;f[ha+24>>2]=0;break}}else{ba=(f[4787]|0)+c|0;f[4787]=ba;f[4790]=ha;f[ha+4>>2]=ba|1}while(0);o=ga+8|0;u=b;return o|0}else la=19584;while(1){ha=f[la>>2]|0;if(ha>>>0<=ca>>>0?(va=ha+(f[la+4>>2]|0)|0,va>>>0>ca>>>0):0)break;la=f[la+8>>2]|0}ga=va+-47|0;ha=ga+8|0;c=ga+((ha&7|0)==0?0:0-ha&7)|0;ha=ca+16|0;ga=c>>>0<ha>>>0?ca:c;c=ga+8|0;aa=da+-40|0;fa=ea+8|0;S=(fa&7|0)==0?0:0-fa&7;fa=ea+S|0;ba=aa-S|0;f[4790]=fa;f[4787]=ba;f[fa+4>>2]=ba|1;f[ea+aa+4>>2]=40;f[4791]=f[4906];aa=ga+4|0;f[aa>>2]=27;f[c>>2]=f[4896];f[c+4>>2]=f[4897];f[c+8>>2]=f[4898];f[c+12>>2]=f[4899];f[4896]=ea;f[4897]=da;f[4899]=0;f[4898]=c;c=ga+24|0;do{ba=c;c=c+4|0;f[c>>2]=7}while((ba+8|0)>>>0<va>>>0);if((ga|0)!=(ca|0)){c=ga-ca|0;f[aa>>2]=f[aa>>2]&-2;f[ca+4>>2]=c|1;f[ga>>2]=c;ba=c>>>3;if(c>>>0<256){fa=19176+(ba<<1<<2)|0;S=f[4784]|0;j=1<<ba;if(!(S&j)){f[4784]=S|j;wa=fa;xa=fa+8|0}else{j=fa+8|0;wa=f[j>>2]|0;xa=j}f[xa>>2]=ca;f[wa+12>>2]=ca;f[ca+8>>2]=wa;f[ca+12>>2]=fa;break}fa=c>>>8;if(fa)if(c>>>0>16777215)ya=31;else{j=(fa+1048320|0)>>>16&8;S=fa<<j;fa=(S+520192|0)>>>16&4;ba=S<<fa;S=(ba+245760|0)>>>16&2;Z=14-(fa|j|S)+(ba<<S>>>15)|0;ya=c>>>(Z+7|0)&1|Z<<1}else ya=0;Z=19440+(ya<<2)|0;f[ca+28>>2]=ya;f[ca+20>>2]=0;f[ha>>2]=0;S=f[4785]|0;ba=1<<ya;if(!(S&ba)){f[4785]=S|ba;f[Z>>2]=ca;f[ca+24>>2]=Z;f[ca+12>>2]=ca;f[ca+8>>2]=ca;break}ba=c<<((ya|0)==31?0:25-(ya>>>1)|0);S=f[Z>>2]|0;while(1){if((f[S+4>>2]&-8|0)==(c|0)){H=213;break}za=S+16+(ba>>>31<<2)|0;Z=f[za>>2]|0;if(!Z){H=212;break}else{ba=ba<<1;S=Z}}if((H|0)==212){f[za>>2]=ca;f[ca+24>>2]=S;f[ca+12>>2]=ca;f[ca+8>>2]=ca;break}else if((H|0)==213){ba=S+8|0;c=f[ba>>2]|0;f[c+12>>2]=ca;f[ba>>2]=ca;f[ca+8>>2]=c;f[ca+12>>2]=S;f[ca+24>>2]=0;break}}}else{c=f[4788]|0;if((c|0)==0|ea>>>0<c>>>0)f[4788]=ea;f[4896]=ea;f[4897]=da;f[4899]=0;f[4793]=f[4902];f[4792]=-1;f[4797]=19176;f[4796]=19176;f[4799]=19184;f[4798]=19184;f[4801]=19192;f[4800]=19192;f[4803]=19200;f[4802]=19200;f[4805]=19208;f[4804]=19208;f[4807]=19216;f[4806]=19216;f[4809]=19224;f[4808]=19224;f[4811]=19232;f[4810]=19232;f[4813]=19240;f[4812]=19240;f[4815]=19248;f[4814]=19248;f[4817]=19256;f[4816]=19256;f[4819]=19264;f[4818]=19264;f[4821]=19272;f[4820]=19272;f[4823]=19280;f[4822]=19280;f[4825]=19288;f[4824]=19288;f[4827]=19296;f[4826]=19296;f[4829]=19304;f[4828]=19304;f[4831]=19312;f[4830]=19312;f[4833]=19320;f[4832]=19320;f[4835]=19328;f[4834]=19328;f[4837]=19336;f[4836]=19336;f[4839]=19344;f[4838]=19344;f[4841]=19352;f[4840]=19352;f[4843]=19360;f[4842]=19360;f[4845]=19368;f[4844]=19368;f[4847]=19376;f[4846]=19376;f[4849]=19384;f[4848]=19384;f[4851]=19392;f[4850]=19392;f[4853]=19400;f[4852]=19400;f[4855]=19408;f[4854]=19408;f[4857]=19416;f[4856]=19416;f[4859]=19424;f[4858]=19424;c=da+-40|0;ba=ea+8|0;ha=(ba&7|0)==0?0:0-ba&7;ba=ea+ha|0;ga=c-ha|0;f[4790]=ba;f[4787]=ga;f[ba+4>>2]=ga|1;f[ea+c+4>>2]=40;f[4791]=f[4906]}while(0);ea=f[4787]|0;if(ea>>>0>B>>>0){da=ea-B|0;f[4787]=da;ea=f[4790]|0;ca=ea+B|0;f[4790]=ca;f[ca+4>>2]=da|1;f[ea+4>>2]=B|3;o=ea+8|0;u=b;return o|0}}ea=Vq()|0;f[ea>>2]=12;o=0;u=b;return o|0}function ab(a,c,d,e,g,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;i=i|0;var j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0,Ma=0,Na=0,Oa=0,Pa=0,Qa=0,Ra=0,Sa=0,Ta=0,Ua=0,Va=0.0,Wa=0.0,Xa=0.0,Ya=0,Za=0,_a=0,$a=0,ab=0,bb=0,cb=0,db=0,eb=0,fb=0,gb=0,hb=0,ib=0,jb=0,kb=0,lb=0,mb=0,nb=0,ob=0,pb=0,qb=0,rb=0,sb=0,tb=0,ub=0,vb=0,wb=0,xb=0,yb=0,zb=0,Ab=0,Bb=0,Cb=0,Db=0,Eb=0,Fb=0,Gb=0,Hb=0,Ib=0,Jb=0,Kb=0,Lb=0,Mb=0,Nb=0,Ob=0;i=u;u=u+240|0;j=i+104|0;k=i+224|0;l=i+176|0;m=i+160|0;n=i+228|0;o=i+72|0;p=i+40|0;q=i+132|0;r=i;s=i+172|0;t=i+156|0;v=i+152|0;w=i+148|0;x=i+144|0;y=i+128|0;z=a+8|0;Mh(z,c,e,g);e=f[a+48>>2]|0;A=f[a+52>>2]|0;B=l;C=B+48|0;do{f[B>>2]=0;B=B+4|0}while((B|0)<(C|0));if(!g){D=0;E=0}else{Ci(l,g);D=f[l+12>>2]|0;E=f[l+16>>2]|0}B=l+16|0;C=E-D>>2;F=D;D=E;if(C>>>0>=g>>>0){if(C>>>0>g>>>0?(E=F+(g<<2)|0,(E|0)!=(D|0)):0)f[B>>2]=D+(~((D+-4-E|0)>>>2)<<2)}else Ci(l+12|0,g-C|0);C=l+24|0;E=l+28|0;D=f[E>>2]|0;B=f[C>>2]|0;F=D-B>>2;G=B;B=D;if(F>>>0>=g>>>0){if(F>>>0>g>>>0?(D=G+(g<<2)|0,(D|0)!=(B|0)):0)f[E>>2]=B+(~((B+-4-D|0)>>>2)<<2)}else Ci(C,g-F|0);F=l+36|0;C=l+40|0;D=f[C>>2]|0;B=f[F>>2]|0;E=D-B>>2;G=B;B=D;if(E>>>0>=g>>>0){if(E>>>0>g>>>0?(D=G+(g<<2)|0,(D|0)!=(B|0)):0)f[C>>2]=B+(~((B+-4-D|0)>>>2)<<2)}else Ci(F,g-E|0);f[m>>2]=0;E=m+4|0;f[E>>2]=0;f[m+8>>2]=0;F=(g|0)==0;do if(!F)if(g>>>0>1073741823)aq(m);else{D=g<<2;B=ln(D)|0;f[m>>2]=B;C=B+(g<<2)|0;f[m+8>>2]=C;sj(B|0,0,D|0)|0;f[E>>2]=C;break}while(0);C=a+152|0;D=a+156|0;B=f[D>>2]|0;G=f[C>>2]|0;H=B-G>>2;L=G;G=B;if(H>>>0>=g>>>0){if(H>>>0>g>>>0?(B=L+(g<<2)|0,(B|0)!=(G|0)):0)f[D>>2]=G+(~((G+-4-B|0)>>>2)<<2)}else Ci(C,g-H|0);f[o>>2]=0;f[o+4>>2]=0;f[o+8>>2]=0;f[o+12>>2]=0;f[o+16>>2]=0;f[o+20>>2]=0;f[o+24>>2]=0;f[o+28>>2]=0;f[p>>2]=0;f[p+4>>2]=0;f[p+8>>2]=0;f[p+12>>2]=0;f[p+16>>2]=0;f[p+20>>2]=0;f[p+24>>2]=0;f[p+28>>2]=0;f[q>>2]=0;H=q+4|0;f[H>>2]=0;f[q+8>>2]=0;if(F){M=0;N=0;O=0;P=0}else{F=g<<2;B=ln(F)|0;f[q>>2]=B;G=B+(g<<2)|0;f[q+8>>2]=G;sj(B|0,0,F|0)|0;f[H>>2]=G;M=B;N=G;O=G;P=B}B=a+56|0;G=f[B>>2]|0;F=f[G+4>>2]|0;D=f[G>>2]|0;L=F-D|0;a:do if((L|0)>4){Q=L>>2;R=e+64|0;S=e+28|0;T=(g|0)>0;U=r+4|0;V=r+8|0;Z=r+12|0;_=a+152|0;$=a+112|0;aa=r+16|0;ba=r+28|0;ca=a+16|0;da=a+32|0;ea=a+12|0;fa=a+28|0;ga=a+20|0;ha=a+24|0;ia=r+28|0;ja=r+16|0;ka=r+20|0;la=r+32|0;ma=n+1|0;na=g<<2;oa=(g|0)==1;pa=Q+-1|0;if(F-D>>2>>>0>pa>>>0){qa=Q;ra=pa;sa=D;ta=P;ua=O;va=M;wa=M;xa=N;ya=M;za=N}else{Aa=G;aq(Aa)}b:while(1){pa=f[sa+(ra<<2)>>2]|0;Q=(((pa>>>0)%3|0|0)==0?2:-1)+pa|0;Ba=Q>>>5;Ca=1<<(Q&31);Da=(pa|0)==-1|(Q|0)==-1;Ea=1;Fa=0;Ga=pa;c:while(1){Ha=Ea^1;Ia=Fa;Ja=Ga;while(1){if((Ja|0)==-1){Ka=Ia;break c}La=f[l+(Ia*12|0)>>2]|0;if(((f[(f[e>>2]|0)+(Ja>>>5<<2)>>2]&1<<(Ja&31)|0)==0?(Ma=f[(f[(f[R>>2]|0)+12>>2]|0)+(Ja<<2)>>2]|0,(Ma|0)!=-1):0)?(Na=f[S>>2]|0,Oa=f[A>>2]|0,Pa=f[Oa+(f[Na+(Ma<<2)>>2]<<2)>>2]|0,Qa=Ma+1|0,Ra=f[Oa+(f[Na+((((Qa>>>0)%3|0|0)==0?Ma+-2|0:Qa)<<2)>>2]<<2)>>2]|0,Qa=f[Oa+(f[Na+((((Ma>>>0)%3|0|0)==0?2:-1)+Ma<<2)>>2]<<2)>>2]|0,(Pa|0)<(ra|0)&(Ra|0)<(ra|0)&(Qa|0)<(ra|0)):0){Ma=X(Pa,g)|0;Pa=X(Ra,g)|0;Ra=X(Qa,g)|0;if(T){Qa=0;do{f[La+(Qa<<2)>>2]=(f[c+(Qa+Ra<<2)>>2]|0)+(f[c+(Qa+Pa<<2)>>2]|0)-(f[c+(Qa+Ma<<2)>>2]|0);Qa=Qa+1|0}while((Qa|0)!=(g|0))}Qa=Ia+1|0;if((Qa|0)==4){Ka=4;break c}else Sa=Qa}else Sa=Ia;do if(Ea){Qa=Ja+1|0;Ma=((Qa>>>0)%3|0|0)==0?Ja+-2|0:Qa;if(((Ma|0)!=-1?(f[(f[e>>2]|0)+(Ma>>>5<<2)>>2]&1<<(Ma&31)|0)==0:0)?(Qa=f[(f[(f[R>>2]|0)+12>>2]|0)+(Ma<<2)>>2]|0,Ma=Qa+1|0,(Qa|0)!=-1):0)Ta=((Ma>>>0)%3|0|0)==0?Qa+-2|0:Ma;else Ta=-1}else{Ma=(((Ja>>>0)%3|0|0)==0?2:-1)+Ja|0;if(((Ma|0)!=-1?(f[(f[e>>2]|0)+(Ma>>>5<<2)>>2]&1<<(Ma&31)|0)==0:0)?(Qa=f[(f[(f[R>>2]|0)+12>>2]|0)+(Ma<<2)>>2]|0,(Qa|0)!=-1):0)if(!((Qa>>>0)%3|0)){Ta=Qa+2|0;break}else{Ta=Qa+-1|0;break}else Ta=-1}while(0);if((Ta|0)==(pa|0)){Ka=Sa;break c}if((Ta|0)!=-1|Ha){Ia=Sa;Ja=Ta}else break}if(Da){Ea=0;Fa=Sa;Ga=-1;continue}if(f[(f[e>>2]|0)+(Ba<<2)>>2]&Ca|0){Ea=0;Fa=Sa;Ga=-1;continue}Ja=f[(f[(f[R>>2]|0)+12>>2]|0)+(Q<<2)>>2]|0;if((Ja|0)==-1){Ea=0;Fa=Sa;Ga=-1;continue}if(!((Ja>>>0)%3|0)){Ea=0;Fa=Sa;Ga=Ja+2|0;continue}else{Ea=0;Fa=Sa;Ga=Ja+-1|0;continue}}Ga=X(ra,g)|0;f[r>>2]=0;f[U>>2]=0;b[V>>0]=0;f[Z>>2]=0;f[Z+4>>2]=0;f[Z+8>>2]=0;f[Z+12>>2]=0;f[Z+16>>2]=0;f[Z+20>>2]=0;f[Z+24>>2]=0;Fa=Ka+-1|0;Ea=p+(Fa<<3)|0;Q=Ea;Ca=Vn(f[Q>>2]|0,f[Q+4>>2]|0,Ka|0,((Ka|0)<0)<<31>>31|0)|0;Q=I;Ba=Ea;f[Ba>>2]=Ca;f[Ba+4>>2]=Q;Ba=c+((X(qa+-2|0,g)|0)<<2)|0;Ea=c+(Ga<<2)|0;Da=f[_>>2]|0;if(T){pa=0;Ja=0;while(1){Ia=(f[Ba+(pa<<2)>>2]|0)-(f[Ea+(pa<<2)>>2]|0)|0;Ha=((Ia|0)>-1?Ia:0-Ia|0)+Ja|0;f[va+(pa<<2)>>2]=Ia;f[Da+(pa<<2)>>2]=Ia<<1^Ia>>31;pa=pa+1|0;if((pa|0)==(g|0)){Ua=Ha;break}else Ja=Ha}}else Ua=0;mo(j,$,Da,g);Ja=Zk(j)|0;pa=I;Ha=Bm(j)|0;Ia=I;Qa=o+(Fa<<3)|0;Ma=Qa;Pa=f[Ma>>2]|0;Ra=f[Ma+4>>2]|0;Va=+wm(Ca,Pa);Ma=Vn(Ha|0,Ia|0,Ja|0,pa|0)|0;Wa=+(Ca>>>0)+4294967296.0*+(Q|0);Xa=+W(+(Va*Wa));pa=Vn(Ma|0,I|0,~~Xa>>>0|0,(+K(Xa)>=1.0?(Xa>0.0?~~+Y(+J(Xa/4294967296.0),4294967295.0)>>>0:~~+W((Xa-+(~~Xa>>>0))/4294967296.0)>>>0):0)|0)|0;Ma=r;f[Ma>>2]=pa;f[Ma+4>>2]=Ua;b[V>>0]=0;f[Z>>2]=0;$f(aa,Ba,Ba+(g<<2)|0);f[s>>2]=ta;f[t>>2]=ua;f[k>>2]=f[s>>2];f[j>>2]=f[t>>2];Jf(ba,k,j);if((Ka|0)<1){Ya=za;Za=ya;_a=xa;$a=wa;ab=ua;bb=ta;cb=ta}else{Ma=n+Ka|0;pa=f[q>>2]|0;Ja=pa;Ia=f[H>>2]|0;Ha=Ma+-1|0;La=(Ha|0)==(n|0);Na=Ma+-2|0;Oa=ma>>>0<Na>>>0;db=~Ka;eb=Ka+2+((db|0)>-2?db:-2)|0;db=Ia;fb=Ha>>>0>n>>>0;gb=0;hb=1;while(1){gb=gb+1|0;sj(n|0,1,eb|0)|0;sj(n|0,0,gb|0)|0;ib=Vn(Pa|0,Ra|0,hb|0,0)|0;d:while(1){if(T){sj(f[m>>2]|0,0,na|0)|0;jb=f[m>>2]|0;kb=0;lb=0;while(1){if(!(b[n+kb>>0]|0)){mb=f[l+(kb*12|0)>>2]|0;nb=0;do{ob=jb+(nb<<2)|0;f[ob>>2]=(f[ob>>2]|0)+(f[mb+(nb<<2)>>2]|0);nb=nb+1|0}while((nb|0)!=(g|0));pb=(1<<kb|lb&255)&255}else pb=lb;kb=kb+1|0;if((kb|0)==(Ka|0)){qb=pb;break}else lb=pb}}else{lb=0;kb=0;while(1){if(!(b[n+lb>>0]|0))rb=(1<<lb|kb&255)&255;else rb=kb;lb=lb+1|0;if((lb|0)==(Ka|0)){qb=rb;break}else kb=rb}}kb=f[m>>2]|0;do if(T){f[kb>>2]=(f[kb>>2]|0)/(hb|0)|0;if(!oa){lb=1;do{jb=kb+(lb<<2)|0;f[jb>>2]=(f[jb>>2]|0)/(hb|0)|0;lb=lb+1|0}while((lb|0)!=(g|0));lb=f[_>>2]|0;if(T)sb=lb;else{tb=0;ub=lb;break}}else sb=f[_>>2]|0;lb=0;jb=0;while(1){nb=(f[kb+(lb<<2)>>2]|0)-(f[Ea+(lb<<2)>>2]|0)|0;mb=((nb|0)>-1?nb:0-nb|0)+jb|0;f[pa+(lb<<2)>>2]=nb;f[sb+(lb<<2)>>2]=nb<<1^nb>>31;lb=lb+1|0;if((lb|0)==(g|0)){tb=mb;ub=sb;break}else jb=mb}}else{tb=0;ub=f[_>>2]|0}while(0);mo(j,$,ub,g);kb=Zk(j)|0;jb=I;lb=Bm(j)|0;mb=I;Xa=+wm(Ca,ib);nb=Vn(lb|0,mb|0,kb|0,jb|0)|0;Va=+W(+(Xa*Wa));jb=Vn(nb|0,I|0,~~Va>>>0|0,(+K(Va)>=1.0?(Va>0.0?~~+Y(+J(Va/4294967296.0),4294967295.0)>>>0:~~+W((Va-+(~~Va>>>0))/4294967296.0)>>>0):0)|0)|0;nb=f[r>>2]|0;if(!((nb|0)<=(jb|0)?!((nb|0)>=(jb|0)?(tb|0)<(f[U>>2]|0):0):0)){nb=r;f[nb>>2]=jb;f[nb+4>>2]=tb;b[V>>0]=qb;f[Z>>2]=hb;f[v>>2]=f[m>>2];f[w>>2]=f[E>>2];f[k>>2]=f[v>>2];f[j>>2]=f[w>>2];Jf(aa,k,j);f[x>>2]=Ja;f[y>>2]=Ia;f[k>>2]=f[x>>2];f[j>>2]=f[y>>2];Jf(ba,k,j)}if(La)break;vb=b[Ha>>0]|0;nb=-1;jb=vb;while(1){kb=nb+-1|0;wb=Ma+kb|0;mb=jb;jb=b[wb>>0]|0;if((jb&255)<(mb&255))break;if((wb|0)==(n|0)){xb=84;break d}else nb=kb}kb=Ma+nb|0;if((jb&255)<(vb&255)){yb=Ha;zb=vb}else{mb=Ma;lb=Ha;while(1){ob=lb+-1|0;if((jb&255)<(h[mb+-2>>0]|0)){yb=ob;zb=1;break}else{Ab=lb;lb=ob;mb=Ab}}}b[wb>>0]=zb;b[yb>>0]=jb;if((nb|0)<-1){Bb=kb;Cb=Ha}else continue;while(1){mb=b[Bb>>0]|0;b[Bb>>0]=b[Cb>>0]|0;b[Cb>>0]=mb;mb=Bb+1|0;lb=Cb+-1|0;if(mb>>>0<lb>>>0){Bb=mb;Cb=lb}else continue d}}if(((xb|0)==84?(xb=0,fb):0)?(ib=b[n>>0]|0,b[n>>0]=vb,b[Ha>>0]=ib,Oa):0){ib=Na;kb=ma;do{nb=b[kb>>0]|0;b[kb>>0]=b[ib>>0]|0;b[ib>>0]=nb;kb=kb+1|0;ib=ib+-1|0}while(kb>>>0<ib>>>0)}if((hb|0)>=(Ka|0)){Ya=db;Za=pa;_a=db;$a=pa;ab=Ia;bb=Ja;cb=pa;break}else hb=hb+1|0}}hb=f[Z>>2]|0;pa=Vn(Pa|0,Ra|0,hb|0,((hb|0)<0)<<31>>31|0)|0;hb=Qa;f[hb>>2]=pa;f[hb+4>>2]=I;if(T){hb=f[ba>>2]|0;pa=f[C>>2]|0;Ja=0;do{Ia=f[hb+(Ja<<2)>>2]|0;f[pa+(Ja<<2)>>2]=Ia<<1^Ia>>31;Ja=Ja+1|0}while((Ja|0)!=(g|0));Db=pa}else Db=f[C>>2]|0;lo(j,$,Db,g);if((Ka|0)>0){Eb=a+60+(Fa*12|0)|0;pa=a+60+(Fa*12|0)+4|0;Ja=a+60+(Fa*12|0)+8|0;hb=0;do{Qa=f[pa>>2]|0;Ra=f[Ja>>2]|0;Pa=(Qa|0)==(Ra<<5|0);if(!(1<<hb&h[V>>0])){if(Pa){if((Qa+1|0)<0){xb=108;break b}Ia=Ra<<6;db=Qa+32&-32;vi(Eb,Qa>>>0<1073741823?(Ia>>>0<db>>>0?db:Ia):2147483647);Fb=f[pa>>2]|0}else Fb=Qa;f[pa>>2]=Fb+1;Ia=(f[Eb>>2]|0)+(Fb>>>5<<2)|0;f[Ia>>2]=f[Ia>>2]|1<<(Fb&31)}else{if(Pa){if((Qa+1|0)<0){xb=113;break b}Pa=Ra<<6;Ra=Qa+32&-32;vi(Eb,Qa>>>0<1073741823?(Pa>>>0<Ra>>>0?Ra:Pa):2147483647);Gb=f[pa>>2]|0}else Gb=Qa;f[pa>>2]=Gb+1;Qa=(f[Eb>>2]|0)+(Gb>>>5<<2)|0;f[Qa>>2]=f[Qa>>2]&~(1<<(Gb&31))}hb=hb+1|0}while((hb|0)<(Ka|0))}hb=d+(Ga<<2)|0;pa=f[z>>2]|0;if((pa|0)>0){Ja=0;Fa=f[aa>>2]|0;Qa=pa;while(1){if((Qa|0)>0){pa=0;do{Pa=f[Fa+(pa<<2)>>2]|0;Ra=f[ca>>2]|0;if((Pa|0)>(Ra|0)){Ia=f[da>>2]|0;f[Ia+(pa<<2)>>2]=Ra;Hb=Ia}else{Ia=f[ea>>2]|0;Ra=f[da>>2]|0;f[Ra+(pa<<2)>>2]=(Pa|0)<(Ia|0)?Ia:Pa;Hb=Ra}pa=pa+1|0}while((pa|0)<(f[z>>2]|0));Ib=Hb}else Ib=f[da>>2]|0;pa=(f[Ea+(Ja<<2)>>2]|0)-(f[Ib+(Ja<<2)>>2]|0)|0;Ra=hb+(Ja<<2)|0;f[Ra>>2]=pa;do if((pa|0)<(f[fa>>2]|0)){Jb=(f[ga>>2]|0)+pa|0;xb=103}else{if((pa|0)<=(f[ha>>2]|0))break;Jb=pa-(f[ga>>2]|0)|0;xb=103}while(0);if((xb|0)==103){xb=0;f[Ra>>2]=Jb}Ja=Ja+1|0;Qa=f[z>>2]|0;if((Ja|0)>=(Qa|0))break;else Fa=Ib}}Fa=f[ia>>2]|0;if(Fa|0){Qa=f[la>>2]|0;if((Qa|0)!=(Fa|0))f[la>>2]=Qa+(~((Qa+-4-Fa|0)>>>2)<<2);Oq(Fa)}Fa=f[ja>>2]|0;if(Fa|0){Qa=f[ka>>2]|0;if((Qa|0)!=(Fa|0))f[ka>>2]=Qa+(~((Qa+-4-Fa|0)>>>2)<<2);Oq(Fa)}if((qa|0)<=2){Kb=$a;Lb=_a;break a}Fa=f[B>>2]|0;sa=f[Fa>>2]|0;Qa=ra+-1|0;if((f[Fa+4>>2]|0)-sa>>2>>>0<=Qa>>>0){Aa=Fa;xb=18;break}else{Fa=ra;ra=Qa;ta=bb;ua=ab;va=cb;wa=$a;xa=_a;ya=Za;za=Ya;qa=Fa}}if((xb|0)==18)aq(Aa);else if((xb|0)==108)aq(Eb);else if((xb|0)==113)aq(Eb)}else{Kb=M;Lb=N}while(0);N=f[l>>2]|0;if((g|0)>0?(f[N>>2]=0,(g|0)!=1):0){M=1;do{f[N+(M<<2)>>2]=0;M=M+1|0}while((M|0)!=(g|0))}g=f[z>>2]|0;if((g|0)>0){M=a+16|0;Eb=a+32|0;Aa=a+12|0;qa=a+28|0;Ya=a+20|0;za=a+24|0;a=0;Za=N;N=g;while(1){if((N|0)>0){g=0;do{ya=f[Za+(g<<2)>>2]|0;_a=f[M>>2]|0;if((ya|0)>(_a|0)){xa=f[Eb>>2]|0;f[xa+(g<<2)>>2]=_a;Mb=xa}else{xa=f[Aa>>2]|0;_a=f[Eb>>2]|0;f[_a+(g<<2)>>2]=(ya|0)<(xa|0)?xa:ya;Mb=_a}g=g+1|0}while((g|0)<(f[z>>2]|0));Nb=Mb}else Nb=f[Eb>>2]|0;g=(f[c+(a<<2)>>2]|0)-(f[Nb+(a<<2)>>2]|0)|0;_a=d+(a<<2)|0;f[_a>>2]=g;if((g|0)>=(f[qa>>2]|0)){if((g|0)>(f[za>>2]|0)){Ob=g-(f[Ya>>2]|0)|0;xb=139}}else{Ob=(f[Ya>>2]|0)+g|0;xb=139}if((xb|0)==139){xb=0;f[_a>>2]=Ob}a=a+1|0;N=f[z>>2]|0;if((a|0)>=(N|0))break;else Za=Nb}}if(Kb|0){if((Lb|0)!=(Kb|0))f[H>>2]=Lb+(~((Lb+-4-Kb|0)>>>2)<<2);Oq(Kb)}Kb=f[m>>2]|0;if(Kb|0){m=f[E>>2]|0;if((m|0)!=(Kb|0))f[E>>2]=m+(~((m+-4-Kb|0)>>>2)<<2);Oq(Kb)}Kb=f[l+36>>2]|0;if(Kb|0){m=l+40|0;E=f[m>>2]|0;if((E|0)!=(Kb|0))f[m>>2]=E+(~((E+-4-Kb|0)>>>2)<<2);Oq(Kb)}Kb=f[l+24>>2]|0;if(Kb|0){E=l+28|0;m=f[E>>2]|0;if((m|0)!=(Kb|0))f[E>>2]=m+(~((m+-4-Kb|0)>>>2)<<2);Oq(Kb)}Kb=f[l+12>>2]|0;if(Kb|0){m=l+16|0;E=f[m>>2]|0;if((E|0)!=(Kb|0))f[m>>2]=E+(~((E+-4-Kb|0)>>>2)<<2);Oq(Kb)}Kb=f[l>>2]|0;if(!Kb){u=i;return 1}E=l+4|0;l=f[E>>2]|0;if((l|0)!=(Kb|0))f[E>>2]=l+(~((l+-4-Kb|0)>>>2)<<2);Oq(Kb);u=i;return 1}function bb(a,c,d,e,g,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;i=i|0;var j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0,Ma=0,Na=0,Oa=0,Pa=0,Qa=0,Ra=0,Sa=0,Ta=0,Ua=0,Va=0.0,Wa=0.0,Xa=0.0,Ya=0,Za=0,_a=0,$a=0,ab=0,bb=0,cb=0,db=0,eb=0,fb=0,gb=0,hb=0,ib=0,jb=0,kb=0,lb=0,mb=0,nb=0,ob=0,pb=0,qb=0,rb=0,sb=0,tb=0,ub=0,vb=0,wb=0,xb=0,yb=0,zb=0,Ab=0,Bb=0,Cb=0,Db=0,Eb=0,Fb=0,Gb=0,Hb=0,Ib=0,Jb=0,Kb=0,Lb=0,Mb=0,Nb=0,Ob=0,Pb=0,Qb=0;i=u;u=u+240|0;j=i+104|0;k=i+224|0;l=i+176|0;m=i+160|0;n=i+228|0;o=i+72|0;p=i+40|0;q=i+132|0;r=i;s=i+172|0;t=i+156|0;v=i+152|0;w=i+148|0;x=i+144|0;y=i+128|0;z=a+8|0;Mh(z,c,e,g);e=f[a+48>>2]|0;A=f[a+52>>2]|0;B=l;C=B+48|0;do{f[B>>2]=0;B=B+4|0}while((B|0)<(C|0));if(!g){D=0;E=0}else{Ci(l,g);D=f[l+12>>2]|0;E=f[l+16>>2]|0}B=l+16|0;C=E-D>>2;F=D;D=E;if(C>>>0>=g>>>0){if(C>>>0>g>>>0?(E=F+(g<<2)|0,(E|0)!=(D|0)):0)f[B>>2]=D+(~((D+-4-E|0)>>>2)<<2)}else Ci(l+12|0,g-C|0);C=l+24|0;E=l+28|0;D=f[E>>2]|0;B=f[C>>2]|0;F=D-B>>2;G=B;B=D;if(F>>>0>=g>>>0){if(F>>>0>g>>>0?(D=G+(g<<2)|0,(D|0)!=(B|0)):0)f[E>>2]=B+(~((B+-4-D|0)>>>2)<<2)}else Ci(C,g-F|0);F=l+36|0;C=l+40|0;D=f[C>>2]|0;B=f[F>>2]|0;E=D-B>>2;G=B;B=D;if(E>>>0>=g>>>0){if(E>>>0>g>>>0?(D=G+(g<<2)|0,(D|0)!=(B|0)):0)f[C>>2]=B+(~((B+-4-D|0)>>>2)<<2)}else Ci(F,g-E|0);f[m>>2]=0;E=m+4|0;f[E>>2]=0;f[m+8>>2]=0;F=(g|0)==0;do if(!F)if(g>>>0>1073741823)aq(m);else{D=g<<2;B=ln(D)|0;f[m>>2]=B;C=B+(g<<2)|0;f[m+8>>2]=C;sj(B|0,0,D|0)|0;f[E>>2]=C;break}while(0);C=a+152|0;D=a+156|0;B=f[D>>2]|0;G=f[C>>2]|0;H=B-G>>2;L=G;G=B;if(H>>>0>=g>>>0){if(H>>>0>g>>>0?(B=L+(g<<2)|0,(B|0)!=(G|0)):0)f[D>>2]=G+(~((G+-4-B|0)>>>2)<<2)}else Ci(C,g-H|0);f[o>>2]=0;f[o+4>>2]=0;f[o+8>>2]=0;f[o+12>>2]=0;f[o+16>>2]=0;f[o+20>>2]=0;f[o+24>>2]=0;f[o+28>>2]=0;f[p>>2]=0;f[p+4>>2]=0;f[p+8>>2]=0;f[p+12>>2]=0;f[p+16>>2]=0;f[p+20>>2]=0;f[p+24>>2]=0;f[p+28>>2]=0;f[q>>2]=0;H=q+4|0;f[H>>2]=0;f[q+8>>2]=0;if(F){M=0;N=0;O=0;P=0}else{F=g<<2;B=ln(F)|0;f[q>>2]=B;G=B+(g<<2)|0;f[q+8>>2]=G;sj(B|0,0,F|0)|0;f[H>>2]=G;M=B;N=G;O=G;P=B}B=a+56|0;G=f[B>>2]|0;F=f[G+4>>2]|0;D=f[G>>2]|0;L=F-D|0;a:do if((L|0)>4){Q=L>>2;R=e+12|0;S=(g|0)>0;T=r+4|0;U=r+8|0;V=r+12|0;Z=a+152|0;_=a+112|0;$=r+16|0;aa=r+28|0;ba=a+16|0;ca=a+32|0;da=a+12|0;ea=a+28|0;fa=a+20|0;ga=a+24|0;ha=r+28|0;ia=r+16|0;ja=r+20|0;ka=r+32|0;la=n+1|0;ma=g<<2;na=(g|0)==1;oa=Q+-1|0;if(F-D>>2>>>0>oa>>>0){pa=Q;qa=oa;ra=D;sa=P;ta=O;ua=M;va=M;wa=N;xa=M;ya=N}else{za=G;aq(za)}b:while(1){oa=f[ra+(qa<<2)>>2]|0;Q=(((oa>>>0)%3|0|0)==0?2:-1)+oa|0;Aa=(oa|0)==-1|(Q|0)==-1;Ba=1;Ca=0;Da=oa;c:while(1){Ea=Ba^1;Fa=Ca;Ga=Da;while(1){if((Ga|0)==-1){Ha=Fa;break c}Ia=f[l+(Fa*12|0)>>2]|0;Ja=f[R>>2]|0;Ka=f[Ja+(Ga<<2)>>2]|0;if((Ka|0)!=-1){La=f[e>>2]|0;Ma=f[A>>2]|0;Na=f[Ma+(f[La+(Ka<<2)>>2]<<2)>>2]|0;Oa=Ka+1|0;Pa=((Oa>>>0)%3|0|0)==0?Ka+-2|0:Oa;if((Pa|0)==-1)Qa=-1;else Qa=f[La+(Pa<<2)>>2]|0;Pa=f[Ma+(Qa<<2)>>2]|0;Oa=(((Ka>>>0)%3|0|0)==0?2:-1)+Ka|0;if((Oa|0)==-1)Ra=-1;else Ra=f[La+(Oa<<2)>>2]|0;Oa=f[Ma+(Ra<<2)>>2]|0;if((Na|0)<(qa|0)&(Pa|0)<(qa|0)&(Oa|0)<(qa|0)){Ma=X(Na,g)|0;Na=X(Pa,g)|0;Pa=X(Oa,g)|0;if(S){Oa=0;do{f[Ia+(Oa<<2)>>2]=(f[c+(Oa+Pa<<2)>>2]|0)+(f[c+(Oa+Na<<2)>>2]|0)-(f[c+(Oa+Ma<<2)>>2]|0);Oa=Oa+1|0}while((Oa|0)!=(g|0))}Oa=Fa+1|0;if((Oa|0)==4){Ha=4;break c}else Sa=Oa}else Sa=Fa}else Sa=Fa;do if(Ba){Oa=Ga+1|0;Ma=((Oa>>>0)%3|0|0)==0?Ga+-2|0:Oa;if((Ma|0)!=-1?(Oa=f[Ja+(Ma<<2)>>2]|0,Ma=Oa+1|0,(Oa|0)!=-1):0)Ta=((Ma>>>0)%3|0|0)==0?Oa+-2|0:Ma;else Ta=-1}else{Ma=(((Ga>>>0)%3|0|0)==0?2:-1)+Ga|0;if((Ma|0)!=-1?(Oa=f[Ja+(Ma<<2)>>2]|0,(Oa|0)!=-1):0)if(!((Oa>>>0)%3|0)){Ta=Oa+2|0;break}else{Ta=Oa+-1|0;break}else Ta=-1}while(0);if((Ta|0)==(oa|0)){Ha=Sa;break c}if((Ta|0)!=-1|Ea){Fa=Sa;Ga=Ta}else break}if(Aa){Ba=0;Ca=Sa;Da=-1;continue}Ga=f[Ja+(Q<<2)>>2]|0;if((Ga|0)==-1){Ba=0;Ca=Sa;Da=-1;continue}if(!((Ga>>>0)%3|0)){Ba=0;Ca=Sa;Da=Ga+2|0;continue}else{Ba=0;Ca=Sa;Da=Ga+-1|0;continue}}Da=X(qa,g)|0;f[r>>2]=0;f[T>>2]=0;b[U>>0]=0;f[V>>2]=0;f[V+4>>2]=0;f[V+8>>2]=0;f[V+12>>2]=0;f[V+16>>2]=0;f[V+20>>2]=0;f[V+24>>2]=0;Ca=Ha+-1|0;Ba=p+(Ca<<3)|0;Q=Ba;Aa=Vn(f[Q>>2]|0,f[Q+4>>2]|0,Ha|0,((Ha|0)<0)<<31>>31|0)|0;Q=I;oa=Ba;f[oa>>2]=Aa;f[oa+4>>2]=Q;oa=c+((X(pa+-2|0,g)|0)<<2)|0;Ba=c+(Da<<2)|0;Ga=f[Z>>2]|0;if(S){Fa=0;Ea=0;while(1){Oa=(f[oa+(Fa<<2)>>2]|0)-(f[Ba+(Fa<<2)>>2]|0)|0;Ma=((Oa|0)>-1?Oa:0-Oa|0)+Ea|0;f[ua+(Fa<<2)>>2]=Oa;f[Ga+(Fa<<2)>>2]=Oa<<1^Oa>>31;Fa=Fa+1|0;if((Fa|0)==(g|0)){Ua=Ma;break}else Ea=Ma}}else Ua=0;mo(j,_,Ga,g);Ea=Zk(j)|0;Fa=I;Ma=Bm(j)|0;Oa=I;Na=o+(Ca<<3)|0;Pa=Na;Ia=f[Pa>>2]|0;La=f[Pa+4>>2]|0;Va=+wm(Aa,Ia);Pa=Vn(Ma|0,Oa|0,Ea|0,Fa|0)|0;Wa=+(Aa>>>0)+4294967296.0*+(Q|0);Xa=+W(+(Va*Wa));Fa=Vn(Pa|0,I|0,~~Xa>>>0|0,(+K(Xa)>=1.0?(Xa>0.0?~~+Y(+J(Xa/4294967296.0),4294967295.0)>>>0:~~+W((Xa-+(~~Xa>>>0))/4294967296.0)>>>0):0)|0)|0;Pa=r;f[Pa>>2]=Fa;f[Pa+4>>2]=Ua;b[U>>0]=0;f[V>>2]=0;$f($,oa,oa+(g<<2)|0);f[s>>2]=sa;f[t>>2]=ta;f[k>>2]=f[s>>2];f[j>>2]=f[t>>2];Jf(aa,k,j);if((Ha|0)<1){Ya=ya;Za=xa;_a=wa;$a=va;ab=ta;bb=sa;cb=sa}else{Pa=n+Ha|0;Fa=f[q>>2]|0;Ea=Fa;Oa=f[H>>2]|0;Ma=Pa+-1|0;Ka=(Ma|0)==(n|0);db=Pa+-2|0;eb=la>>>0<db>>>0;fb=~Ha;gb=Ha+2+((fb|0)>-2?fb:-2)|0;fb=Oa;hb=Ma>>>0>n>>>0;ib=0;jb=1;while(1){ib=ib+1|0;sj(n|0,1,gb|0)|0;sj(n|0,0,ib|0)|0;kb=Vn(Ia|0,La|0,jb|0,0)|0;d:while(1){if(S){sj(f[m>>2]|0,0,ma|0)|0;lb=f[m>>2]|0;mb=0;nb=0;while(1){if(!(b[n+mb>>0]|0)){ob=f[l+(mb*12|0)>>2]|0;pb=0;do{qb=lb+(pb<<2)|0;f[qb>>2]=(f[qb>>2]|0)+(f[ob+(pb<<2)>>2]|0);pb=pb+1|0}while((pb|0)!=(g|0));rb=(1<<mb|nb&255)&255}else rb=nb;mb=mb+1|0;if((mb|0)==(Ha|0)){sb=rb;break}else nb=rb}}else{nb=0;mb=0;while(1){if(!(b[n+nb>>0]|0))tb=(1<<nb|mb&255)&255;else tb=mb;nb=nb+1|0;if((nb|0)==(Ha|0)){sb=tb;break}else mb=tb}}mb=f[m>>2]|0;do if(S){f[mb>>2]=(f[mb>>2]|0)/(jb|0)|0;if(!na){nb=1;do{lb=mb+(nb<<2)|0;f[lb>>2]=(f[lb>>2]|0)/(jb|0)|0;nb=nb+1|0}while((nb|0)!=(g|0));nb=f[Z>>2]|0;if(S)ub=nb;else{vb=0;wb=nb;break}}else ub=f[Z>>2]|0;nb=0;lb=0;while(1){pb=(f[mb+(nb<<2)>>2]|0)-(f[Ba+(nb<<2)>>2]|0)|0;ob=((pb|0)>-1?pb:0-pb|0)+lb|0;f[Fa+(nb<<2)>>2]=pb;f[ub+(nb<<2)>>2]=pb<<1^pb>>31;nb=nb+1|0;if((nb|0)==(g|0)){vb=ob;wb=ub;break}else lb=ob}}else{vb=0;wb=f[Z>>2]|0}while(0);mo(j,_,wb,g);mb=Zk(j)|0;lb=I;nb=Bm(j)|0;ob=I;Xa=+wm(Aa,kb);pb=Vn(nb|0,ob|0,mb|0,lb|0)|0;Va=+W(+(Xa*Wa));lb=Vn(pb|0,I|0,~~Va>>>0|0,(+K(Va)>=1.0?(Va>0.0?~~+Y(+J(Va/4294967296.0),4294967295.0)>>>0:~~+W((Va-+(~~Va>>>0))/4294967296.0)>>>0):0)|0)|0;pb=f[r>>2]|0;if(!((pb|0)<=(lb|0)?!((pb|0)>=(lb|0)?(vb|0)<(f[T>>2]|0):0):0)){pb=r;f[pb>>2]=lb;f[pb+4>>2]=vb;b[U>>0]=sb;f[V>>2]=jb;f[v>>2]=f[m>>2];f[w>>2]=f[E>>2];f[k>>2]=f[v>>2];f[j>>2]=f[w>>2];Jf($,k,j);f[x>>2]=Ea;f[y>>2]=Oa;f[k>>2]=f[x>>2];f[j>>2]=f[y>>2];Jf(aa,k,j)}if(Ka)break;xb=b[Ma>>0]|0;pb=-1;lb=xb;while(1){mb=pb+-1|0;yb=Pa+mb|0;ob=lb;lb=b[yb>>0]|0;if((lb&255)<(ob&255))break;if((yb|0)==(n|0)){zb=84;break d}else pb=mb}mb=Pa+pb|0;if((lb&255)<(xb&255)){Ab=Ma;Bb=xb}else{ob=Pa;nb=Ma;while(1){qb=nb+-1|0;if((lb&255)<(h[ob+-2>>0]|0)){Ab=qb;Bb=1;break}else{Cb=nb;nb=qb;ob=Cb}}}b[yb>>0]=Bb;b[Ab>>0]=lb;if((pb|0)<-1){Db=mb;Eb=Ma}else continue;while(1){ob=b[Db>>0]|0;b[Db>>0]=b[Eb>>0]|0;b[Eb>>0]=ob;ob=Db+1|0;nb=Eb+-1|0;if(ob>>>0<nb>>>0){Db=ob;Eb=nb}else continue d}}if(((zb|0)==84?(zb=0,hb):0)?(kb=b[n>>0]|0,b[n>>0]=xb,b[Ma>>0]=kb,eb):0){kb=db;mb=la;do{pb=b[mb>>0]|0;b[mb>>0]=b[kb>>0]|0;b[kb>>0]=pb;mb=mb+1|0;kb=kb+-1|0}while(mb>>>0<kb>>>0)}if((jb|0)>=(Ha|0)){Ya=fb;Za=Fa;_a=fb;$a=Fa;ab=Oa;bb=Ea;cb=Fa;break}else jb=jb+1|0}}jb=f[V>>2]|0;Fa=Vn(Ia|0,La|0,jb|0,((jb|0)<0)<<31>>31|0)|0;jb=Na;f[jb>>2]=Fa;f[jb+4>>2]=I;if(S){jb=f[aa>>2]|0;Fa=f[C>>2]|0;Ea=0;do{Oa=f[jb+(Ea<<2)>>2]|0;f[Fa+(Ea<<2)>>2]=Oa<<1^Oa>>31;Ea=Ea+1|0}while((Ea|0)!=(g|0));Fb=Fa}else Fb=f[C>>2]|0;lo(j,_,Fb,g);if((Ha|0)>0){Gb=a+60+(Ca*12|0)|0;Fa=a+60+(Ca*12|0)+4|0;Ea=a+60+(Ca*12|0)+8|0;jb=0;do{Na=f[Fa>>2]|0;La=f[Ea>>2]|0;Ia=(Na|0)==(La<<5|0);if(!(1<<jb&h[U>>0])){if(Ia){if((Na+1|0)<0){zb=108;break b}Oa=La<<6;fb=Na+32&-32;vi(Gb,Na>>>0<1073741823?(Oa>>>0<fb>>>0?fb:Oa):2147483647);Hb=f[Fa>>2]|0}else Hb=Na;f[Fa>>2]=Hb+1;Oa=(f[Gb>>2]|0)+(Hb>>>5<<2)|0;f[Oa>>2]=f[Oa>>2]|1<<(Hb&31)}else{if(Ia){if((Na+1|0)<0){zb=113;break b}Ia=La<<6;La=Na+32&-32;vi(Gb,Na>>>0<1073741823?(Ia>>>0<La>>>0?La:Ia):2147483647);Ib=f[Fa>>2]|0}else Ib=Na;f[Fa>>2]=Ib+1;Na=(f[Gb>>2]|0)+(Ib>>>5<<2)|0;f[Na>>2]=f[Na>>2]&~(1<<(Ib&31))}jb=jb+1|0}while((jb|0)<(Ha|0))}jb=d+(Da<<2)|0;Fa=f[z>>2]|0;if((Fa|0)>0){Ea=0;Ca=f[$>>2]|0;Na=Fa;while(1){if((Na|0)>0){Fa=0;do{Ia=f[Ca+(Fa<<2)>>2]|0;La=f[ba>>2]|0;if((Ia|0)>(La|0)){Oa=f[ca>>2]|0;f[Oa+(Fa<<2)>>2]=La;Jb=Oa}else{Oa=f[da>>2]|0;La=f[ca>>2]|0;f[La+(Fa<<2)>>2]=(Ia|0)<(Oa|0)?Oa:Ia;Jb=La}Fa=Fa+1|0}while((Fa|0)<(f[z>>2]|0));Kb=Jb}else Kb=f[ca>>2]|0;Fa=(f[Ba+(Ea<<2)>>2]|0)-(f[Kb+(Ea<<2)>>2]|0)|0;La=jb+(Ea<<2)|0;f[La>>2]=Fa;do if((Fa|0)<(f[ea>>2]|0)){Lb=(f[fa>>2]|0)+Fa|0;zb=103}else{if((Fa|0)<=(f[ga>>2]|0))break;Lb=Fa-(f[fa>>2]|0)|0;zb=103}while(0);if((zb|0)==103){zb=0;f[La>>2]=Lb}Ea=Ea+1|0;Na=f[z>>2]|0;if((Ea|0)>=(Na|0))break;else Ca=Kb}}Ca=f[ha>>2]|0;if(Ca|0){Na=f[ka>>2]|0;if((Na|0)!=(Ca|0))f[ka>>2]=Na+(~((Na+-4-Ca|0)>>>2)<<2);Oq(Ca)}Ca=f[ia>>2]|0;if(Ca|0){Na=f[ja>>2]|0;if((Na|0)!=(Ca|0))f[ja>>2]=Na+(~((Na+-4-Ca|0)>>>2)<<2);Oq(Ca)}if((pa|0)<=2){Mb=$a;Nb=_a;break a}Ca=f[B>>2]|0;ra=f[Ca>>2]|0;Na=qa+-1|0;if((f[Ca+4>>2]|0)-ra>>2>>>0<=Na>>>0){za=Ca;zb=18;break}else{Ca=qa;qa=Na;sa=bb;ta=ab;ua=cb;va=$a;wa=_a;xa=Za;ya=Ya;pa=Ca}}if((zb|0)==18)aq(za);else if((zb|0)==108)aq(Gb);else if((zb|0)==113)aq(Gb)}else{Mb=M;Nb=N}while(0);N=f[l>>2]|0;if((g|0)>0?(f[N>>2]=0,(g|0)!=1):0){M=1;do{f[N+(M<<2)>>2]=0;M=M+1|0}while((M|0)!=(g|0))}g=f[z>>2]|0;if((g|0)>0){M=a+16|0;Gb=a+32|0;za=a+12|0;pa=a+28|0;Ya=a+20|0;ya=a+24|0;a=0;Za=N;N=g;while(1){if((N|0)>0){g=0;do{xa=f[Za+(g<<2)>>2]|0;_a=f[M>>2]|0;if((xa|0)>(_a|0)){wa=f[Gb>>2]|0;f[wa+(g<<2)>>2]=_a;Ob=wa}else{wa=f[za>>2]|0;_a=f[Gb>>2]|0;f[_a+(g<<2)>>2]=(xa|0)<(wa|0)?wa:xa;Ob=_a}g=g+1|0}while((g|0)<(f[z>>2]|0));Pb=Ob}else Pb=f[Gb>>2]|0;g=(f[c+(a<<2)>>2]|0)-(f[Pb+(a<<2)>>2]|0)|0;_a=d+(a<<2)|0;f[_a>>2]=g;if((g|0)>=(f[pa>>2]|0)){if((g|0)>(f[ya>>2]|0)){Qb=g-(f[Ya>>2]|0)|0;zb=139}}else{Qb=(f[Ya>>2]|0)+g|0;zb=139}if((zb|0)==139){zb=0;f[_a>>2]=Qb}a=a+1|0;N=f[z>>2]|0;if((a|0)>=(N|0))break;else Za=Pb}}if(Mb|0){if((Nb|0)!=(Mb|0))f[H>>2]=Nb+(~((Nb+-4-Mb|0)>>>2)<<2);Oq(Mb)}Mb=f[m>>2]|0;if(Mb|0){m=f[E>>2]|0;if((m|0)!=(Mb|0))f[E>>2]=m+(~((m+-4-Mb|0)>>>2)<<2);Oq(Mb)}Mb=f[l+36>>2]|0;if(Mb|0){m=l+40|0;E=f[m>>2]|0;if((E|0)!=(Mb|0))f[m>>2]=E+(~((E+-4-Mb|0)>>>2)<<2);Oq(Mb)}Mb=f[l+24>>2]|0;if(Mb|0){E=l+28|0;m=f[E>>2]|0;if((m|0)!=(Mb|0))f[E>>2]=m+(~((m+-4-Mb|0)>>>2)<<2);Oq(Mb)}Mb=f[l+12>>2]|0;if(Mb|0){m=l+16|0;E=f[m>>2]|0;if((E|0)!=(Mb|0))f[m>>2]=E+(~((E+-4-Mb|0)>>>2)<<2);Oq(Mb)}Mb=f[l>>2]|0;if(!Mb){u=i;return 1}E=l+4|0;l=f[E>>2]|0;if((l|0)!=(Mb|0))f[E>>2]=l+(~((l+-4-Mb|0)>>>2)<<2);Oq(Mb);u=i;return 1}function cb(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;b=u;u=u+16|0;c=b;d=b+8|0;e=b+4|0;f[d>>2]=a;do if(a>>>0>=212){g=(a>>>0)/210|0;h=g*210|0;f[e>>2]=a-h;i=0;j=g;g=(Hl(6952,7144,e,c)|0)-6952>>2;k=h;a:while(1){l=(f[6952+(g<<2)>>2]|0)+k|0;h=5;while(1){if(h>>>0>=47){m=211;n=i;o=8;break}p=f[6760+(h<<2)>>2]|0;q=(l>>>0)/(p>>>0)|0;if(q>>>0<p>>>0){o=106;break a}if((l|0)==(X(q,p)|0)){r=i;break}else h=h+1|0}b:do if((o|0)==8){c:while(1){o=0;h=(l>>>0)/(m>>>0)|0;do if(h>>>0>=m>>>0)if((l|0)!=(X(h,m)|0)){p=m+10|0;q=(l>>>0)/(p>>>0)|0;if(q>>>0>=p>>>0)if((l|0)!=(X(q,p)|0)){q=m+12|0;s=(l>>>0)/(q>>>0)|0;if(s>>>0>=q>>>0)if((l|0)!=(X(s,q)|0)){s=m+16|0;t=(l>>>0)/(s>>>0)|0;if(t>>>0>=s>>>0)if((l|0)!=(X(t,s)|0)){t=m+18|0;v=(l>>>0)/(t>>>0)|0;if(v>>>0>=t>>>0)if((l|0)!=(X(v,t)|0)){v=m+22|0;w=(l>>>0)/(v>>>0)|0;if(w>>>0>=v>>>0)if((l|0)!=(X(w,v)|0)){w=m+28|0;x=(l>>>0)/(w>>>0)|0;if(x>>>0>=w>>>0)if((l|0)==(X(x,w)|0)){y=w;z=9;A=n}else{x=m+30|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+36|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+40|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+42|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+46|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+52|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+58|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+60|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+66|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+70|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+72|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+78|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+82|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+88|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+96|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+100|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+102|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+106|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+108|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+112|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+120|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+126|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+130|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+136|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+138|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+142|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+148|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+150|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+156|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+162|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+166|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+168|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+172|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+178|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+180|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+186|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+190|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+192|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+196|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+198|0;B=(l>>>0)/(x>>>0)|0;if(B>>>0<x>>>0){y=x;z=1;A=l;break}if((l|0)==(X(B,x)|0)){y=x;z=9;A=n;break}x=m+208|0;B=(l>>>0)/(x>>>0)|0;C=B>>>0<x>>>0;D=(l|0)==(X(B,x)|0);y=C|D?x:m+210|0;z=C?1:D?9:0;A=C?l:n}else{y=w;z=1;A=l}}else{y=v;z=9;A=n}else{y=v;z=1;A=l}}else{y=t;z=9;A=n}else{y=t;z=1;A=l}}else{y=s;z=9;A=n}else{y=s;z=1;A=l}}else{y=q;z=9;A=n}else{y=q;z=1;A=l}}else{y=p;z=9;A=n}else{y=p;z=1;A=l}}else{y=m;z=9;A=n}else{y=m;z=1;A=l}while(0);switch(z&15){case 9:{r=A;break b;break}case 0:{m=y;n=A;o=8;break}default:break c}}if(!z)r=A;else{o=107;break a}}while(0);h=g+1|0;p=(h|0)==48;q=j+(p&1)|0;i=r;j=q;g=p?0:h;k=q*210|0}if((o|0)==106){f[d>>2]=l;E=l;break}else if((o|0)==107){f[d>>2]=l;E=A;break}}else{k=Hl(6760,6952,d,c)|0;E=f[k>>2]|0}while(0);u=b;return E|0}function db(a,c,d,e,g,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;i=i|0;var j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0,Ma=0,Na=0,Oa=0,Pa=0,Qa=0,Ra=0,Sa=0,Ta=0.0,Ua=0.0,Va=0.0,Wa=0,Xa=0,Ya=0,Za=0,_a=0,$a=0,ab=0,bb=0,cb=0,db=0,eb=0,fb=0,gb=0,hb=0,ib=0,jb=0,kb=0,lb=0,mb=0,nb=0,ob=0,pb=0,qb=0,rb=0,sb=0,tb=0,ub=0,vb=0,wb=0,xb=0,yb=0,zb=0,Ab=0,Bb=0,Cb=0,Db=0,Eb=0,Fb=0,Gb=0;i=u;u=u+256|0;e=i+104|0;j=i+240|0;k=i+224|0;l=i+160|0;m=i+140|0;n=i+248|0;o=i+72|0;p=i+40|0;q=i+128|0;r=i;s=i+232|0;t=i+220|0;v=i+216|0;w=i+212|0;x=i+208|0;y=i+152|0;z=f[a+28>>2]|0;A=f[a+32>>2]|0;B=l;C=B+48|0;do{f[B>>2]=0;B=B+4|0}while((B|0)<(C|0));if(!g){D=0;E=0}else{Ci(l,g);D=f[l+12>>2]|0;E=f[l+16>>2]|0}B=l+16|0;C=E-D>>2;F=D;D=E;if(C>>>0>=g>>>0){if(C>>>0>g>>>0?(E=F+(g<<2)|0,(E|0)!=(D|0)):0)f[B>>2]=D+(~((D+-4-E|0)>>>2)<<2)}else Ci(l+12|0,g-C|0);C=l+24|0;E=l+28|0;D=f[E>>2]|0;B=f[C>>2]|0;F=D-B>>2;G=B;B=D;if(F>>>0>=g>>>0){if(F>>>0>g>>>0?(D=G+(g<<2)|0,(D|0)!=(B|0)):0)f[E>>2]=B+(~((B+-4-D|0)>>>2)<<2)}else Ci(C,g-F|0);F=l+36|0;C=l+40|0;D=f[C>>2]|0;B=f[F>>2]|0;E=D-B>>2;G=B;B=D;if(E>>>0>=g>>>0){if(E>>>0>g>>>0?(D=G+(g<<2)|0,(D|0)!=(B|0)):0)f[C>>2]=B+(~((B+-4-D|0)>>>2)<<2)}else Ci(F,g-E|0);f[m>>2]=0;E=m+4|0;f[E>>2]=0;f[m+8>>2]=0;F=(g|0)==0;do if(!F)if(g>>>0>1073741823)aq(m);else{D=g<<2;B=ln(D)|0;f[m>>2]=B;C=B+(g<<2)|0;f[m+8>>2]=C;sj(B|0,0,D|0)|0;f[E>>2]=C;break}while(0);C=a+136|0;D=a+140|0;B=f[D>>2]|0;G=f[C>>2]|0;H=B-G>>2;L=G;G=B;if(H>>>0>=g>>>0){if(H>>>0>g>>>0?(B=L+(g<<2)|0,(B|0)!=(G|0)):0)f[D>>2]=G+(~((G+-4-B|0)>>>2)<<2)}else Ci(C,g-H|0);f[o>>2]=0;f[o+4>>2]=0;f[o+8>>2]=0;f[o+12>>2]=0;f[o+16>>2]=0;f[o+20>>2]=0;f[o+24>>2]=0;f[o+28>>2]=0;f[p>>2]=0;f[p+4>>2]=0;f[p+8>>2]=0;f[p+12>>2]=0;f[p+16>>2]=0;f[p+20>>2]=0;f[p+24>>2]=0;f[p+28>>2]=0;f[q>>2]=0;H=q+4|0;f[H>>2]=0;f[q+8>>2]=0;if(F){M=0;N=0;O=0;P=0}else{F=g<<2;B=ln(F)|0;f[q>>2]=B;G=B+(g<<2)|0;f[q+8>>2]=G;sj(B|0,0,F|0)|0;f[H>>2]=G;M=B;N=G;O=G;P=B}B=a+36|0;G=f[B>>2]|0;F=f[G+4>>2]|0;D=f[G>>2]|0;L=F-D|0;a:do if((L|0)>4){Q=L>>2;R=z+64|0;S=z+28|0;T=(g|0)>0;U=r+4|0;V=r+8|0;Z=r+12|0;_=a+136|0;$=a+96|0;aa=r+16|0;ba=r+28|0;ca=a+8|0;da=j+4|0;ea=k+4|0;fa=e+4|0;ga=r+28|0;ha=r+16|0;ia=r+20|0;ja=r+32|0;ka=n+1|0;la=g<<2;ma=(g|0)==1;na=Q+-1|0;if(F-D>>2>>>0>na>>>0){oa=Q;pa=na;qa=D;ra=P;sa=O;ta=M;ua=M;va=N;wa=M;xa=N}else{ya=G;aq(ya)}b:while(1){na=f[qa+(pa<<2)>>2]|0;Q=(((na>>>0)%3|0|0)==0?2:-1)+na|0;za=Q>>>5;Aa=1<<(Q&31);Ba=(na|0)==-1|(Q|0)==-1;Ca=1;Da=0;Ea=na;c:while(1){Fa=Ca^1;Ga=Da;Ha=Ea;while(1){if((Ha|0)==-1){Ia=Ga;break c}Ja=f[l+(Ga*12|0)>>2]|0;if(((f[(f[z>>2]|0)+(Ha>>>5<<2)>>2]&1<<(Ha&31)|0)==0?(Ka=f[(f[(f[R>>2]|0)+12>>2]|0)+(Ha<<2)>>2]|0,(Ka|0)!=-1):0)?(La=f[S>>2]|0,Ma=f[A>>2]|0,Na=f[Ma+(f[La+(Ka<<2)>>2]<<2)>>2]|0,Oa=Ka+1|0,Pa=f[Ma+(f[La+((((Oa>>>0)%3|0|0)==0?Ka+-2|0:Oa)<<2)>>2]<<2)>>2]|0,Oa=f[Ma+(f[La+((((Ka>>>0)%3|0|0)==0?2:-1)+Ka<<2)>>2]<<2)>>2]|0,(Na|0)<(pa|0)&(Pa|0)<(pa|0)&(Oa|0)<(pa|0)):0){Ka=X(Na,g)|0;Na=X(Pa,g)|0;Pa=X(Oa,g)|0;if(T){Oa=0;do{f[Ja+(Oa<<2)>>2]=(f[c+(Oa+Pa<<2)>>2]|0)+(f[c+(Oa+Na<<2)>>2]|0)-(f[c+(Oa+Ka<<2)>>2]|0);Oa=Oa+1|0}while((Oa|0)!=(g|0))}Oa=Ga+1|0;if((Oa|0)==4){Ia=4;break c}else Qa=Oa}else Qa=Ga;do if(Ca){Oa=Ha+1|0;Ka=((Oa>>>0)%3|0|0)==0?Ha+-2|0:Oa;if(((Ka|0)!=-1?(f[(f[z>>2]|0)+(Ka>>>5<<2)>>2]&1<<(Ka&31)|0)==0:0)?(Oa=f[(f[(f[R>>2]|0)+12>>2]|0)+(Ka<<2)>>2]|0,Ka=Oa+1|0,(Oa|0)!=-1):0)Ra=((Ka>>>0)%3|0|0)==0?Oa+-2|0:Ka;else Ra=-1}else{Ka=(((Ha>>>0)%3|0|0)==0?2:-1)+Ha|0;if(((Ka|0)!=-1?(f[(f[z>>2]|0)+(Ka>>>5<<2)>>2]&1<<(Ka&31)|0)==0:0)?(Oa=f[(f[(f[R>>2]|0)+12>>2]|0)+(Ka<<2)>>2]|0,(Oa|0)!=-1):0)if(!((Oa>>>0)%3|0)){Ra=Oa+2|0;break}else{Ra=Oa+-1|0;break}else Ra=-1}while(0);if((Ra|0)==(na|0)){Ia=Qa;break c}if((Ra|0)!=-1|Fa){Ga=Qa;Ha=Ra}else break}if(Ba){Ca=0;Da=Qa;Ea=-1;continue}if(f[(f[z>>2]|0)+(za<<2)>>2]&Aa|0){Ca=0;Da=Qa;Ea=-1;continue}Ha=f[(f[(f[R>>2]|0)+12>>2]|0)+(Q<<2)>>2]|0;if((Ha|0)==-1){Ca=0;Da=Qa;Ea=-1;continue}if(!((Ha>>>0)%3|0)){Ca=0;Da=Qa;Ea=Ha+2|0;continue}else{Ca=0;Da=Qa;Ea=Ha+-1|0;continue}}Ea=X(pa,g)|0;f[r>>2]=0;f[U>>2]=0;b[V>>0]=0;f[Z>>2]=0;f[Z+4>>2]=0;f[Z+8>>2]=0;f[Z+12>>2]=0;f[Z+16>>2]=0;f[Z+20>>2]=0;f[Z+24>>2]=0;Da=Ia+-1|0;Ca=p+(Da<<3)|0;Q=Ca;Aa=Vn(f[Q>>2]|0,f[Q+4>>2]|0,Ia|0,((Ia|0)<0)<<31>>31|0)|0;Q=I;za=Ca;f[za>>2]=Aa;f[za+4>>2]=Q;za=c+((X(oa+-2|0,g)|0)<<2)|0;Ca=c+(Ea<<2)|0;Ba=f[_>>2]|0;if(T){na=0;Ha=0;while(1){Ga=(f[za+(na<<2)>>2]|0)-(f[Ca+(na<<2)>>2]|0)|0;Fa=((Ga|0)>-1?Ga:0-Ga|0)+Ha|0;f[ta+(na<<2)>>2]=Ga;f[Ba+(na<<2)>>2]=Ga<<1^Ga>>31;na=na+1|0;if((na|0)==(g|0)){Sa=Fa;break}else Ha=Fa}}else Sa=0;mo(e,$,Ba,g);Ha=Zk(e)|0;na=I;Fa=Bm(e)|0;Ga=I;Oa=o+(Da<<3)|0;Ka=Oa;Na=f[Ka>>2]|0;Pa=f[Ka+4>>2]|0;Ta=+wm(Aa,Na);Ka=Vn(Fa|0,Ga|0,Ha|0,na|0)|0;Ua=+(Aa>>>0)+4294967296.0*+(Q|0);Va=+W(+(Ta*Ua));na=Vn(Ka|0,I|0,~~Va>>>0|0,(+K(Va)>=1.0?(Va>0.0?~~+Y(+J(Va/4294967296.0),4294967295.0)>>>0:~~+W((Va-+(~~Va>>>0))/4294967296.0)>>>0):0)|0)|0;Ka=r;f[Ka>>2]=na;f[Ka+4>>2]=Sa;b[V>>0]=0;f[Z>>2]=0;$f(aa,za,za+(g<<2)|0);f[s>>2]=ra;f[t>>2]=sa;f[j>>2]=f[s>>2];f[e>>2]=f[t>>2];Jf(ba,j,e);if((Ia|0)<1){Wa=xa;Xa=wa;Ya=va;Za=ua;_a=sa;$a=ra;ab=ra}else{Ka=n+Ia|0;na=f[q>>2]|0;Ha=na;Ga=f[H>>2]|0;Fa=Ka+-1|0;Ja=(Fa|0)==(n|0);La=Ka+-2|0;Ma=ka>>>0<La>>>0;bb=~Ia;cb=Ia+2+((bb|0)>-2?bb:-2)|0;bb=Ga;db=Fa>>>0>n>>>0;eb=0;fb=1;while(1){eb=eb+1|0;sj(n|0,1,cb|0)|0;sj(n|0,0,eb|0)|0;gb=Vn(Na|0,Pa|0,fb|0,0)|0;d:while(1){if(T){sj(f[m>>2]|0,0,la|0)|0;hb=f[m>>2]|0;ib=0;jb=0;while(1){if(!(b[n+ib>>0]|0)){kb=f[l+(ib*12|0)>>2]|0;lb=0;do{mb=hb+(lb<<2)|0;f[mb>>2]=(f[mb>>2]|0)+(f[kb+(lb<<2)>>2]|0);lb=lb+1|0}while((lb|0)!=(g|0));nb=(1<<ib|jb&255)&255}else nb=jb;ib=ib+1|0;if((ib|0)==(Ia|0)){ob=nb;break}else jb=nb}}else{jb=0;ib=0;while(1){if(!(b[n+jb>>0]|0))pb=(1<<jb|ib&255)&255;else pb=ib;jb=jb+1|0;if((jb|0)==(Ia|0)){ob=pb;break}else ib=pb}}ib=f[m>>2]|0;do if(T){f[ib>>2]=(f[ib>>2]|0)/(fb|0)|0;if(!ma){jb=1;do{hb=ib+(jb<<2)|0;f[hb>>2]=(f[hb>>2]|0)/(fb|0)|0;jb=jb+1|0}while((jb|0)!=(g|0));jb=f[_>>2]|0;if(T)qb=jb;else{rb=0;sb=jb;break}}else qb=f[_>>2]|0;jb=0;hb=0;while(1){lb=(f[ib+(jb<<2)>>2]|0)-(f[Ca+(jb<<2)>>2]|0)|0;kb=((lb|0)>-1?lb:0-lb|0)+hb|0;f[na+(jb<<2)>>2]=lb;f[qb+(jb<<2)>>2]=lb<<1^lb>>31;jb=jb+1|0;if((jb|0)==(g|0)){rb=kb;sb=qb;break}else hb=kb}}else{rb=0;sb=f[_>>2]|0}while(0);mo(e,$,sb,g);ib=Zk(e)|0;hb=I;jb=Bm(e)|0;kb=I;Va=+wm(Aa,gb);lb=Vn(jb|0,kb|0,ib|0,hb|0)|0;Ta=+W(+(Va*Ua));hb=Vn(lb|0,I|0,~~Ta>>>0|0,(+K(Ta)>=1.0?(Ta>0.0?~~+Y(+J(Ta/4294967296.0),4294967295.0)>>>0:~~+W((Ta-+(~~Ta>>>0))/4294967296.0)>>>0):0)|0)|0;lb=f[r>>2]|0;if(!((lb|0)<=(hb|0)?!((lb|0)>=(hb|0)?(rb|0)<(f[U>>2]|0):0):0)){lb=r;f[lb>>2]=hb;f[lb+4>>2]=rb;b[V>>0]=ob;f[Z>>2]=fb;f[v>>2]=f[m>>2];f[w>>2]=f[E>>2];f[j>>2]=f[v>>2];f[e>>2]=f[w>>2];Jf(aa,j,e);f[x>>2]=Ha;f[y>>2]=Ga;f[j>>2]=f[x>>2];f[e>>2]=f[y>>2];Jf(ba,j,e)}if(Ja)break;tb=b[Fa>>0]|0;lb=-1;hb=tb;while(1){ib=lb+-1|0;ub=Ka+ib|0;kb=hb;hb=b[ub>>0]|0;if((hb&255)<(kb&255))break;if((ub|0)==(n|0)){vb=84;break d}else lb=ib}ib=Ka+lb|0;if((hb&255)<(tb&255)){wb=Fa;xb=tb}else{kb=Ka;jb=Fa;while(1){mb=jb+-1|0;if((hb&255)<(h[kb+-2>>0]|0)){wb=mb;xb=1;break}else{yb=jb;jb=mb;kb=yb}}}b[ub>>0]=xb;b[wb>>0]=hb;if((lb|0)<-1){zb=ib;Ab=Fa}else continue;while(1){kb=b[zb>>0]|0;b[zb>>0]=b[Ab>>0]|0;b[Ab>>0]=kb;kb=zb+1|0;jb=Ab+-1|0;if(kb>>>0<jb>>>0){zb=kb;Ab=jb}else continue d}}if(((vb|0)==84?(vb=0,db):0)?(gb=b[n>>0]|0,b[n>>0]=tb,b[Fa>>0]=gb,Ma):0){gb=La;ib=ka;do{lb=b[ib>>0]|0;b[ib>>0]=b[gb>>0]|0;b[gb>>0]=lb;ib=ib+1|0;gb=gb+-1|0}while(ib>>>0<gb>>>0)}if((fb|0)>=(Ia|0)){Wa=bb;Xa=na;Ya=bb;Za=na;_a=Ga;$a=Ha;ab=na;break}else fb=fb+1|0}}fb=f[Z>>2]|0;na=Vn(Na|0,Pa|0,fb|0,((fb|0)<0)<<31>>31|0)|0;fb=Oa;f[fb>>2]=na;f[fb+4>>2]=I;if(T){fb=f[ba>>2]|0;na=f[C>>2]|0;Ha=0;do{Ga=f[fb+(Ha<<2)>>2]|0;f[na+(Ha<<2)>>2]=Ga<<1^Ga>>31;Ha=Ha+1|0}while((Ha|0)!=(g|0));Bb=na}else Bb=f[C>>2]|0;lo(e,$,Bb,g);if((Ia|0)>0){Cb=a+40+(Da*12|0)|0;na=a+40+(Da*12|0)+4|0;Ha=a+40+(Da*12|0)+8|0;fb=0;do{Oa=f[na>>2]|0;Pa=f[Ha>>2]|0;Na=(Oa|0)==(Pa<<5|0);if(!(1<<fb&h[V>>0])){if(Na){if((Oa+1|0)<0){vb=95;break b}Ga=Pa<<6;bb=Oa+32&-32;vi(Cb,Oa>>>0<1073741823?(Ga>>>0<bb>>>0?bb:Ga):2147483647);Db=f[na>>2]|0}else Db=Oa;f[na>>2]=Db+1;Ga=(f[Cb>>2]|0)+(Db>>>5<<2)|0;f[Ga>>2]=f[Ga>>2]|1<<(Db&31)}else{if(Na){if((Oa+1|0)<0){vb=100;break b}Na=Pa<<6;Pa=Oa+32&-32;vi(Cb,Oa>>>0<1073741823?(Na>>>0<Pa>>>0?Pa:Na):2147483647);Eb=f[na>>2]|0}else Eb=Oa;f[na>>2]=Eb+1;Oa=(f[Cb>>2]|0)+(Eb>>>5<<2)|0;f[Oa>>2]=f[Oa>>2]&~(1<<(Eb&31))}fb=fb+1|0}while((fb|0)<(Ia|0))}fb=f[aa>>2]|0;na=d+(Ea<<2)|0;Ha=f[Ca+4>>2]|0;Da=f[fb>>2]|0;Oa=f[fb+4>>2]|0;f[j>>2]=f[Ca>>2];f[da>>2]=Ha;f[k>>2]=Da;f[ea>>2]=Oa;Od(e,ca,j,k);f[na>>2]=f[e>>2];f[na+4>>2]=f[fa>>2];na=f[ga>>2]|0;if(na|0){Oa=f[ja>>2]|0;if((Oa|0)!=(na|0))f[ja>>2]=Oa+(~((Oa+-4-na|0)>>>2)<<2);Oq(na)}na=f[ha>>2]|0;if(na|0){Oa=f[ia>>2]|0;if((Oa|0)!=(na|0))f[ia>>2]=Oa+(~((Oa+-4-na|0)>>>2)<<2);Oq(na)}if((oa|0)<=2){Fb=Za;Gb=Ya;break a}na=f[B>>2]|0;qa=f[na>>2]|0;Oa=pa+-1|0;if((f[na+4>>2]|0)-qa>>2>>>0<=Oa>>>0){ya=na;vb=18;break}else{na=pa;pa=Oa;ra=$a;sa=_a;ta=ab;ua=Za;va=Ya;wa=Xa;xa=Wa;oa=na}}if((vb|0)==18)aq(ya);else if((vb|0)==95)aq(Cb);else if((vb|0)==100)aq(Cb)}else{Fb=M;Gb=N}while(0);if((g|0)>0)sj(f[l>>2]|0,0,g<<2|0)|0;g=f[l>>2]|0;N=f[c+4>>2]|0;M=f[g>>2]|0;Cb=f[g+4>>2]|0;f[j>>2]=f[c>>2];f[j+4>>2]=N;f[k>>2]=M;f[k+4>>2]=Cb;Od(e,a+8|0,j,k);f[d>>2]=f[e>>2];f[d+4>>2]=f[e+4>>2];if(Fb|0){if((Gb|0)!=(Fb|0))f[H>>2]=Gb+(~((Gb+-4-Fb|0)>>>2)<<2);Oq(Fb)}Fb=f[m>>2]|0;if(Fb|0){m=f[E>>2]|0;if((m|0)!=(Fb|0))f[E>>2]=m+(~((m+-4-Fb|0)>>>2)<<2);Oq(Fb)}Fb=f[l+36>>2]|0;if(Fb|0){m=l+40|0;E=f[m>>2]|0;if((E|0)!=(Fb|0))f[m>>2]=E+(~((E+-4-Fb|0)>>>2)<<2);Oq(Fb)}Fb=f[l+24>>2]|0;if(Fb|0){E=l+28|0;m=f[E>>2]|0;if((m|0)!=(Fb|0))f[E>>2]=m+(~((m+-4-Fb|0)>>>2)<<2);Oq(Fb)}Fb=f[l+12>>2]|0;if(Fb|0){m=l+16|0;E=f[m>>2]|0;if((E|0)!=(Fb|0))f[m>>2]=E+(~((E+-4-Fb|0)>>>2)<<2);Oq(Fb)}Fb=f[l>>2]|0;if(!Fb){u=i;return 1}E=l+4|0;l=f[E>>2]|0;if((l|0)!=(Fb|0))f[E>>2]=l+(~((l+-4-Fb|0)>>>2)<<2);Oq(Fb);u=i;return 1}function eb(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0,Ma=0,Na=0,Oa=0,Pa=0,Qa=0,Ra=0,Sa=0,Ta=0,Ua=0,Va=0,Wa=0,Xa=0,Ya=0,Za=0,_a=0,$a=0,ab=0,bb=0,cb=0,db=0,eb=0,fb=0,gb=0,hb=0,ib=0,jb=0,kb=0,lb=0,mb=0,nb=0,ob=0,pb=0,qb=0,rb=0,sb=0,tb=0,ub=0,vb=0,wb=0,xb=0,yb=0,zb=0,Ab=0,Bb=0,Cb=0,Db=0,Eb=0,Fb=0,Gb=0,Hb=0,Ib=0,Jb=0,Kb=0,Lb=0,Mb=0,Nb=0,Ob=0,Pb=0,Qb=0,Rb=0,Sb=0,Tb=0,Ub=0,Vb=0,Wb=0,Xb=0,Yb=0,Zb=0,_b=0;c=u;u=u+32|0;d=c+16|0;e=c+4|0;g=c;f[a+36>>2]=b;h=a+24|0;i=a+28|0;j=f[i>>2]|0;k=f[h>>2]|0;l=j-k>>2;m=k;k=j;if(l>>>0>=b>>>0){if(l>>>0>b>>>0?(j=m+(b<<2)|0,(j|0)!=(k|0)):0)f[i>>2]=k+(~((k+-4-j|0)>>>2)<<2)}else Ch(h,b-l|0,6140);f[d>>2]=0;l=d+4|0;f[l>>2]=0;j=d+8|0;f[j>>2]=0;if(b){if((b|0)<0)aq(d);k=((b+-1|0)>>>5)+1|0;m=ln(k<<2)|0;f[d>>2]=m;f[j>>2]=k;f[l>>2]=b;k=b>>>5;sj(m|0,0,k<<2|0)|0;n=b&31;o=m+(k<<2)|0;k=m;if(!n){p=b;q=k;r=m}else{f[o>>2]=f[o>>2]&~(-1>>>(32-n|0));p=b;q=k;r=m}}else{p=0;q=0;r=0}m=a+4|0;k=f[a>>2]|0;n=(f[m>>2]|0)-k|0;o=n>>2;f[e>>2]=0;s=e+4|0;f[s>>2]=0;t=e+8|0;f[t>>2]=0;do if(o){if((n|0)<0)aq(e);v=((o+-1|0)>>>5)+1|0;w=ln(v<<2)|0;f[e>>2]=w;f[t>>2]=v;f[s>>2]=o;v=o>>>5;sj(w|0,0,v<<2|0)|0;x=o&31;y=w+(v<<2)|0;if(x|0)f[y>>2]=f[y>>2]&~(-1>>>(32-x|0));if(o>>>0>2){x=a+12|0;y=a+32|0;v=a+52|0;w=a+56|0;z=a+48|0;A=b;B=k;C=0;D=q;E=r;a:while(1){F=B;G=C*3|0;if((G|0)!=-1){H=f[F+(G<<2)>>2]|0;I=G+1|0;J=((I>>>0)%3|0|0)==0?G+-2|0:I;if((J|0)==-1)K=-1;else K=f[F+(J<<2)>>2]|0;J=(((G>>>0)%3|0|0)==0?2:-1)+G|0;if((J|0)==-1)L=-1;else L=f[F+(J<<2)>>2]|0;if((H|0)!=(K|0)?!((H|0)==(L|0)|(K|0)==(L|0)):0){H=0;J=A;F=E;I=D;while(1){M=H+G|0;if(!(f[(f[e>>2]|0)+(M>>>5<<2)>>2]&1<<(M&31))){N=f[(f[a>>2]|0)+(M<<2)>>2]|0;f[g>>2]=N;if(!(f[F+(N>>>5<<2)>>2]&1<<(N&31))){O=0;P=J;Q=N}else{N=f[i>>2]|0;if((N|0)==(f[y>>2]|0))Ri(h,6140);else{f[N>>2]=-1;f[i>>2]=N+4}N=f[v>>2]|0;if((N|0)==(f[w>>2]|0))Ri(z,g);else{f[N>>2]=f[g>>2];f[v>>2]=N+4}N=f[l>>2]|0;R=f[j>>2]|0;if((N|0)==(R<<5|0)){if((N+1|0)<0){S=50;break a}T=R<<6;R=N+32&-32;vi(d,N>>>0<1073741823?(T>>>0<R>>>0?R:T):2147483647);U=f[l>>2]|0}else U=N;f[l>>2]=U+1;N=(f[d>>2]|0)+(U>>>5<<2)|0;f[N>>2]=f[N>>2]&~(1<<(U&31));f[g>>2]=J;O=1;P=J+1|0;Q=J}N=f[d>>2]|0;T=N+(Q>>>5<<2)|0;f[T>>2]=f[T>>2]|1<<(Q&31);T=N;b:do if(O){R=M;while(1){if((R|0)==-1){S=64;break b}V=(f[e>>2]|0)+(R>>>5<<2)|0;f[V>>2]=f[V>>2]|1<<(R&31);V=f[g>>2]|0;f[(f[h>>2]|0)+(V<<2)>>2]=R;f[(f[a>>2]|0)+(R<<2)>>2]=V;V=R+1|0;W=((V>>>0)%3|0|0)==0?R+-2|0:V;do if((W|0)==-1)X=-1;else{V=f[(f[x>>2]|0)+(W<<2)>>2]|0;Y=V+1|0;if((V|0)==-1){X=-1;break}X=((Y>>>0)%3|0|0)==0?V+-2|0:Y}while(0);if((X|0)==(M|0))break;else R=X}}else{R=M;while(1){if((R|0)==-1){S=64;break b}W=(f[e>>2]|0)+(R>>>5<<2)|0;f[W>>2]=f[W>>2]|1<<(R&31);f[(f[h>>2]|0)+(f[g>>2]<<2)>>2]=R;W=R+1|0;Y=((W>>>0)%3|0|0)==0?R+-2|0:W;do if((Y|0)==-1)Z=-1;else{W=f[(f[x>>2]|0)+(Y<<2)>>2]|0;V=W+1|0;if((W|0)==-1){Z=-1;break}Z=((V>>>0)%3|0|0)==0?W+-2|0:V}while(0);if((Z|0)==(M|0))break;else R=Z}}while(0);c:do if((S|0)==64){S=0;if((M|0)==-1)break;R=(((M>>>0)%3|0|0)==0?2:-1)+M|0;if((R|0)==-1)break;Y=f[(f[x>>2]|0)+(R<<2)>>2]|0;if((Y|0)==-1)break;R=Y+(((Y>>>0)%3|0|0)==0?2:-1)|0;if((R|0)==-1)break;if(!O){Y=R;while(1){V=(f[e>>2]|0)+(Y>>>5<<2)|0;f[V>>2]=f[V>>2]|1<<(Y&31);V=(((Y>>>0)%3|0|0)==0?2:-1)+Y|0;if((V|0)==-1)break c;W=f[(f[x>>2]|0)+(V<<2)>>2]|0;if((W|0)==-1)break c;Y=W+(((W>>>0)%3|0|0)==0?2:-1)|0;if((Y|0)==-1)break c}}Y=f[a>>2]|0;W=R;do{V=(f[e>>2]|0)+(W>>>5<<2)|0;f[V>>2]=f[V>>2]|1<<(W&31);f[Y+(W<<2)>>2]=f[g>>2];V=(((W>>>0)%3|0|0)==0?2:-1)+W|0;if((V|0)==-1)break c;_=f[(f[x>>2]|0)+(V<<2)>>2]|0;if((_|0)==-1)break c;W=_+(((_>>>0)%3|0|0)==0?2:-1)|0}while((W|0)!=-1)}while(0);$=P;aa=T;ba=N}else{$=J;aa=I;ba=F}if((H|0)<2){H=H+1|0;J=$;F=ba;I=aa}else{ca=$;da=aa;ea=ba;break}}}else{ca=A;da=D;ea=E}}else{ca=A;da=D;ea=E}C=C+1|0;B=f[a>>2]|0;if(C>>>0>=(((f[m>>2]|0)-B>>2>>>0)/3|0)>>>0){S=18;break}else{A=ca;D=da;E=ea}}if((S|0)==18){fa=da;ga=f[l>>2]|0;break}else if((S|0)==50)aq(d)}else{fa=q;ga=p}}else{fa=q;ga=p}while(0);p=a+44|0;f[p>>2]=0;a=fa;fa=ga>>>5;q=a+(fa<<2)|0;S=ga&31;ga=(fa|0)!=0;d:do if(fa|S|0)if(!S){l=a;da=0;ea=ga;while(1){e:do if(ea){if(!(f[l>>2]&1)){ca=da+1|0;f[p>>2]=ca;ha=ca}else ha=da;if(!(f[l>>2]&2)){ca=ha+1|0;f[p>>2]=ca;ia=ca}else ia=ha;if(!(f[l>>2]&4)){ca=ia+1|0;f[p>>2]=ca;ja=ca}else ja=ia;if(!(f[l>>2]&8)){ca=ja+1|0;f[p>>2]=ca;ka=ca}else ka=ja;if(!(f[l>>2]&16)){ca=ka+1|0;f[p>>2]=ca;la=ca}else la=ka;if(!(f[l>>2]&32)){ca=la+1|0;f[p>>2]=ca;ma=ca}else ma=la;if(!(f[l>>2]&64)){ca=ma+1|0;f[p>>2]=ca;na=ca}else na=ma;if(!(f[l>>2]&128)){ca=na+1|0;f[p>>2]=ca;oa=ca}else oa=na;if(!(f[l>>2]&256)){ca=oa+1|0;f[p>>2]=ca;pa=ca}else pa=oa;if(!(f[l>>2]&512)){ca=pa+1|0;f[p>>2]=ca;qa=ca}else qa=pa;if(!(f[l>>2]&1024)){ca=qa+1|0;f[p>>2]=ca;ra=ca}else ra=qa;if(!(f[l>>2]&2048)){ca=ra+1|0;f[p>>2]=ca;sa=ca}else sa=ra;if(!(f[l>>2]&4096)){ca=sa+1|0;f[p>>2]=ca;ta=ca}else ta=sa;if(!(f[l>>2]&8192)){ca=ta+1|0;f[p>>2]=ca;ua=ca}else ua=ta;if(!(f[l>>2]&16384)){ca=ua+1|0;f[p>>2]=ca;va=ca}else va=ua;if(!(f[l>>2]&32768)){ca=va+1|0;f[p>>2]=ca;wa=ca}else wa=va;if(!(f[l>>2]&65536)){ca=wa+1|0;f[p>>2]=ca;xa=ca}else xa=wa;if(!(f[l>>2]&131072)){ca=xa+1|0;f[p>>2]=ca;ya=ca}else ya=xa;if(!(f[l>>2]&262144)){ca=ya+1|0;f[p>>2]=ca;za=ca}else za=ya;if(!(f[l>>2]&524288)){ca=za+1|0;f[p>>2]=ca;Aa=ca}else Aa=za;if(!(f[l>>2]&1048576)){ca=Aa+1|0;f[p>>2]=ca;Ba=ca}else Ba=Aa;if(!(f[l>>2]&2097152)){ca=Ba+1|0;f[p>>2]=ca;Ca=ca}else Ca=Ba;if(!(f[l>>2]&4194304)){ca=Ca+1|0;f[p>>2]=ca;Da=ca}else Da=Ca;if(!(f[l>>2]&8388608)){ca=Da+1|0;f[p>>2]=ca;Ea=ca}else Ea=Da;if(!(f[l>>2]&16777216)){ca=Ea+1|0;f[p>>2]=ca;Fa=ca}else Fa=Ea;if(!(f[l>>2]&33554432)){ca=Fa+1|0;f[p>>2]=ca;Ga=ca}else Ga=Fa;if(!(f[l>>2]&67108864)){ca=Ga+1|0;f[p>>2]=ca;Ha=ca}else Ha=Ga;if(!(f[l>>2]&134217728)){ca=Ha+1|0;f[p>>2]=ca;Ia=ca}else Ia=Ha;if(!(f[l>>2]&268435456)){ca=Ia+1|0;f[p>>2]=ca;Ja=ca}else Ja=Ia;if(!(f[l>>2]&536870912)){ca=Ja+1|0;f[p>>2]=ca;Ka=ca}else Ka=Ja;if(!(f[l>>2]&1073741824)){ca=Ka+1|0;f[p>>2]=ca;La=ca}else La=Ka;if((f[l>>2]|0)<=-1){Ma=La;break}ca=La+1|0;f[p>>2]=ca;Ma=ca}else{ca=0;m=da;while(1){if(!(f[l>>2]&1<<ca)){ba=m+1|0;f[p>>2]=ba;Na=ba}else Na=m;if((ca|0)==31){Ma=Na;break e}ca=ca+1|0;if(!ca)break d;else m=Na}}while(0);l=l+4|0;if((q|0)==(l|0))break;else{da=Ma;ea=1}}}else{if(ga){ea=0;da=a;l=0;while(1){if(!(f[da>>2]&1)){m=l+1|0;f[p>>2]=m;Oa=m;Pa=m}else{Oa=l;Pa=ea}if(!(f[da>>2]&2)){m=Oa+1|0;f[p>>2]=m;Qa=m;Ra=m}else{Qa=Oa;Ra=Pa}if(!(f[da>>2]&4)){m=Qa+1|0;f[p>>2]=m;Sa=m;Ta=m}else{Sa=Qa;Ta=Ra}if(!(f[da>>2]&8)){m=Sa+1|0;f[p>>2]=m;Ua=m;Va=m}else{Ua=Sa;Va=Ta}if(!(f[da>>2]&16)){m=Ua+1|0;f[p>>2]=m;Wa=m;Xa=m}else{Wa=Ua;Xa=Va}if(!(f[da>>2]&32)){m=Wa+1|0;f[p>>2]=m;Ya=m;Za=m}else{Ya=Wa;Za=Xa}if(!(f[da>>2]&64)){m=Ya+1|0;f[p>>2]=m;_a=m;$a=m}else{_a=Ya;$a=Za}if(!(f[da>>2]&128)){m=_a+1|0;f[p>>2]=m;ab=m;bb=m}else{ab=_a;bb=$a}if(!(f[da>>2]&256)){m=ab+1|0;f[p>>2]=m;cb=m;db=m}else{cb=ab;db=bb}if(!(f[da>>2]&512)){m=cb+1|0;f[p>>2]=m;eb=m;fb=m}else{eb=cb;fb=db}if(!(f[da>>2]&1024)){m=eb+1|0;f[p>>2]=m;gb=m;hb=m}else{gb=eb;hb=fb}if(!(f[da>>2]&2048)){m=gb+1|0;f[p>>2]=m;ib=m;jb=m}else{ib=gb;jb=hb}if(!(f[da>>2]&4096)){m=ib+1|0;f[p>>2]=m;kb=m;lb=m}else{kb=ib;lb=jb}if(!(f[da>>2]&8192)){m=kb+1|0;f[p>>2]=m;mb=m;nb=m}else{mb=kb;nb=lb}if(!(f[da>>2]&16384)){m=mb+1|0;f[p>>2]=m;ob=m;pb=m}else{ob=mb;pb=nb}if(!(f[da>>2]&32768)){m=ob+1|0;f[p>>2]=m;qb=m;rb=m}else{qb=ob;rb=pb}if(!(f[da>>2]&65536)){m=qb+1|0;f[p>>2]=m;sb=m;tb=m}else{sb=qb;tb=rb}if(!(f[da>>2]&131072)){m=sb+1|0;f[p>>2]=m;ub=m;vb=m}else{ub=sb;vb=tb}if(!(f[da>>2]&262144)){m=ub+1|0;f[p>>2]=m;wb=m;xb=m}else{wb=ub;xb=vb}if(!(f[da>>2]&524288)){m=wb+1|0;f[p>>2]=m;yb=m;zb=m}else{yb=wb;zb=xb}if(!(f[da>>2]&1048576)){m=yb+1|0;f[p>>2]=m;Ab=m;Bb=m}else{Ab=yb;Bb=zb}if(!(f[da>>2]&2097152)){m=Ab+1|0;f[p>>2]=m;Cb=m;Db=m}else{Cb=Ab;Db=Bb}if(!(f[da>>2]&4194304)){m=Cb+1|0;f[p>>2]=m;Eb=m;Fb=m}else{Eb=Cb;Fb=Db}if(!(f[da>>2]&8388608)){m=Eb+1|0;f[p>>2]=m;Gb=m;Hb=m}else{Gb=Eb;Hb=Fb}if(!(f[da>>2]&16777216)){m=Gb+1|0;f[p>>2]=m;Ib=m;Jb=m}else{Ib=Gb;Jb=Hb}if(!(f[da>>2]&33554432)){m=Ib+1|0;f[p>>2]=m;Kb=m;Lb=m}else{Kb=Ib;Lb=Jb}if(!(f[da>>2]&67108864)){m=Kb+1|0;f[p>>2]=m;Mb=m;Nb=m}else{Mb=Kb;Nb=Lb}if(!(f[da>>2]&134217728)){m=Mb+1|0;f[p>>2]=m;Ob=m;Pb=m}else{Ob=Mb;Pb=Nb}if(!(f[da>>2]&268435456)){m=Ob+1|0;f[p>>2]=m;Qb=m;Rb=m}else{Qb=Ob;Rb=Pb}if(!(f[da>>2]&536870912)){m=Qb+1|0;f[p>>2]=m;Sb=m;Tb=m}else{Sb=Qb;Tb=Rb}if(!(f[da>>2]&1073741824)){m=Sb+1|0;f[p>>2]=m;Ub=m;Vb=m}else{Ub=Sb;Vb=Tb}if((f[da>>2]|0)>-1){m=Ub+1|0;f[p>>2]=m;Wb=m;Xb=m}else{Wb=Ub;Xb=Vb}m=da+4|0;if((q|0)==(m|0)){Yb=m;Zb=Xb;break}else{ea=Xb;da=m;l=Wb}}}else{Yb=a;Zb=0}l=0;da=Zb;while(1){if(!(f[Yb>>2]&1<<l)){ea=da+1|0;f[p>>2]=ea;_b=ea}else _b=da;l=l+1|0;if((l|0)==(S|0))break;else da=_b}}while(0);_b=f[e>>2]|0;if(_b|0)Oq(_b);_b=f[d>>2]|0;if(!_b){u=c;return 1}Oq(_b);u=c;return 1}function fb(a,c,d,e,g,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;i=i|0;var j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0,Ma=0,Na=0,Oa=0,Pa=0,Qa=0,Ra=0,Sa=0,Ta=0.0,Ua=0.0,Va=0.0,Wa=0,Xa=0,Ya=0,Za=0,_a=0,$a=0,ab=0,bb=0,cb=0,db=0,eb=0,fb=0,gb=0,hb=0,ib=0,jb=0,kb=0,lb=0,mb=0,nb=0,ob=0,pb=0,qb=0,rb=0,sb=0,tb=0,ub=0,vb=0,wb=0,xb=0,yb=0,zb=0,Ab=0,Bb=0,Cb=0,Db=0,Eb=0,Fb=0,Gb=0,Hb=0,Ib=0;i=u;u=u+256|0;e=i+104|0;j=i+240|0;k=i+224|0;l=i+160|0;m=i+140|0;n=i+248|0;o=i+72|0;p=i+40|0;q=i+128|0;r=i;s=i+232|0;t=i+220|0;v=i+216|0;w=i+212|0;x=i+208|0;y=i+152|0;z=f[a+28>>2]|0;A=f[a+32>>2]|0;B=l;C=B+48|0;do{f[B>>2]=0;B=B+4|0}while((B|0)<(C|0));if(!g){D=0;E=0}else{Ci(l,g);D=f[l+12>>2]|0;E=f[l+16>>2]|0}B=l+16|0;C=E-D>>2;F=D;D=E;if(C>>>0>=g>>>0){if(C>>>0>g>>>0?(E=F+(g<<2)|0,(E|0)!=(D|0)):0)f[B>>2]=D+(~((D+-4-E|0)>>>2)<<2)}else Ci(l+12|0,g-C|0);C=l+24|0;E=l+28|0;D=f[E>>2]|0;B=f[C>>2]|0;F=D-B>>2;G=B;B=D;if(F>>>0>=g>>>0){if(F>>>0>g>>>0?(D=G+(g<<2)|0,(D|0)!=(B|0)):0)f[E>>2]=B+(~((B+-4-D|0)>>>2)<<2)}else Ci(C,g-F|0);F=l+36|0;C=l+40|0;D=f[C>>2]|0;B=f[F>>2]|0;E=D-B>>2;G=B;B=D;if(E>>>0>=g>>>0){if(E>>>0>g>>>0?(D=G+(g<<2)|0,(D|0)!=(B|0)):0)f[C>>2]=B+(~((B+-4-D|0)>>>2)<<2)}else Ci(F,g-E|0);f[m>>2]=0;E=m+4|0;f[E>>2]=0;f[m+8>>2]=0;F=(g|0)==0;do if(!F)if(g>>>0>1073741823)aq(m);else{D=g<<2;B=ln(D)|0;f[m>>2]=B;C=B+(g<<2)|0;f[m+8>>2]=C;sj(B|0,0,D|0)|0;f[E>>2]=C;break}while(0);C=a+136|0;D=a+140|0;B=f[D>>2]|0;G=f[C>>2]|0;H=B-G>>2;L=G;G=B;if(H>>>0>=g>>>0){if(H>>>0>g>>>0?(B=L+(g<<2)|0,(B|0)!=(G|0)):0)f[D>>2]=G+(~((G+-4-B|0)>>>2)<<2)}else Ci(C,g-H|0);f[o>>2]=0;f[o+4>>2]=0;f[o+8>>2]=0;f[o+12>>2]=0;f[o+16>>2]=0;f[o+20>>2]=0;f[o+24>>2]=0;f[o+28>>2]=0;f[p>>2]=0;f[p+4>>2]=0;f[p+8>>2]=0;f[p+12>>2]=0;f[p+16>>2]=0;f[p+20>>2]=0;f[p+24>>2]=0;f[p+28>>2]=0;f[q>>2]=0;H=q+4|0;f[H>>2]=0;f[q+8>>2]=0;if(F){M=0;N=0;O=0;P=0}else{F=g<<2;B=ln(F)|0;f[q>>2]=B;G=B+(g<<2)|0;f[q+8>>2]=G;sj(B|0,0,F|0)|0;f[H>>2]=G;M=B;N=G;O=G;P=B}B=a+36|0;G=f[B>>2]|0;F=f[G+4>>2]|0;D=f[G>>2]|0;L=F-D|0;a:do if((L|0)>4){Q=L>>2;R=z+12|0;S=(g|0)>0;T=r+4|0;U=r+8|0;V=r+12|0;Z=a+136|0;_=a+96|0;$=r+16|0;aa=r+28|0;ba=a+8|0;ca=j+4|0;da=k+4|0;ea=e+4|0;fa=r+28|0;ga=r+16|0;ha=r+20|0;ia=r+32|0;ja=n+1|0;ka=g<<2;la=(g|0)==1;ma=Q+-1|0;if(F-D>>2>>>0>ma>>>0){na=Q;oa=ma;pa=P;qa=O;ra=M;sa=M;ta=N;ua=M;va=N;wa=D}else{xa=G;aq(xa)}b:while(1){ma=f[wa+(oa<<2)>>2]|0;Q=(((ma>>>0)%3|0|0)==0?2:-1)+ma|0;ya=(ma|0)==-1|(Q|0)==-1;za=1;Aa=0;Ba=ma;c:while(1){Ca=za^1;Da=Aa;Ea=Ba;while(1){if((Ea|0)==-1){Fa=Da;break c}Ga=f[l+(Da*12|0)>>2]|0;Ha=f[R>>2]|0;Ia=f[Ha+(Ea<<2)>>2]|0;if((Ia|0)!=-1){Ja=f[z>>2]|0;Ka=f[A>>2]|0;La=f[Ka+(f[Ja+(Ia<<2)>>2]<<2)>>2]|0;Ma=Ia+1|0;Na=((Ma>>>0)%3|0|0)==0?Ia+-2|0:Ma;if((Na|0)==-1)Oa=-1;else Oa=f[Ja+(Na<<2)>>2]|0;Na=f[Ka+(Oa<<2)>>2]|0;Ma=(((Ia>>>0)%3|0|0)==0?2:-1)+Ia|0;if((Ma|0)==-1)Pa=-1;else Pa=f[Ja+(Ma<<2)>>2]|0;Ma=f[Ka+(Pa<<2)>>2]|0;if((La|0)<(oa|0)&(Na|0)<(oa|0)&(Ma|0)<(oa|0)){Ka=X(La,g)|0;La=X(Na,g)|0;Na=X(Ma,g)|0;if(S){Ma=0;do{f[Ga+(Ma<<2)>>2]=(f[c+(Ma+Na<<2)>>2]|0)+(f[c+(Ma+La<<2)>>2]|0)-(f[c+(Ma+Ka<<2)>>2]|0);Ma=Ma+1|0}while((Ma|0)!=(g|0))}Ma=Da+1|0;if((Ma|0)==4){Fa=4;break c}else Qa=Ma}else Qa=Da}else Qa=Da;do if(za){Ma=Ea+1|0;Ka=((Ma>>>0)%3|0|0)==0?Ea+-2|0:Ma;if((Ka|0)!=-1?(Ma=f[Ha+(Ka<<2)>>2]|0,Ka=Ma+1|0,(Ma|0)!=-1):0)Ra=((Ka>>>0)%3|0|0)==0?Ma+-2|0:Ka;else Ra=-1}else{Ka=(((Ea>>>0)%3|0|0)==0?2:-1)+Ea|0;if((Ka|0)!=-1?(Ma=f[Ha+(Ka<<2)>>2]|0,(Ma|0)!=-1):0)if(!((Ma>>>0)%3|0)){Ra=Ma+2|0;break}else{Ra=Ma+-1|0;break}else Ra=-1}while(0);if((Ra|0)==(ma|0)){Fa=Qa;break c}if((Ra|0)!=-1|Ca){Da=Qa;Ea=Ra}else break}if(ya){za=0;Aa=Qa;Ba=-1;continue}Ea=f[Ha+(Q<<2)>>2]|0;if((Ea|0)==-1){za=0;Aa=Qa;Ba=-1;continue}if(!((Ea>>>0)%3|0)){za=0;Aa=Qa;Ba=Ea+2|0;continue}else{za=0;Aa=Qa;Ba=Ea+-1|0;continue}}Ba=X(oa,g)|0;f[r>>2]=0;f[T>>2]=0;b[U>>0]=0;f[V>>2]=0;f[V+4>>2]=0;f[V+8>>2]=0;f[V+12>>2]=0;f[V+16>>2]=0;f[V+20>>2]=0;f[V+24>>2]=0;Aa=Fa+-1|0;za=p+(Aa<<3)|0;Q=za;ya=Vn(f[Q>>2]|0,f[Q+4>>2]|0,Fa|0,((Fa|0)<0)<<31>>31|0)|0;Q=I;ma=za;f[ma>>2]=ya;f[ma+4>>2]=Q;ma=c+((X(na+-2|0,g)|0)<<2)|0;za=c+(Ba<<2)|0;Ea=f[Z>>2]|0;if(S){Da=0;Ca=0;while(1){Ma=(f[ma+(Da<<2)>>2]|0)-(f[za+(Da<<2)>>2]|0)|0;Ka=((Ma|0)>-1?Ma:0-Ma|0)+Ca|0;f[ra+(Da<<2)>>2]=Ma;f[Ea+(Da<<2)>>2]=Ma<<1^Ma>>31;Da=Da+1|0;if((Da|0)==(g|0)){Sa=Ka;break}else Ca=Ka}}else Sa=0;mo(e,_,Ea,g);Ca=Zk(e)|0;Da=I;Ka=Bm(e)|0;Ma=I;La=o+(Aa<<3)|0;Na=La;Ga=f[Na>>2]|0;Ja=f[Na+4>>2]|0;Ta=+wm(ya,Ga);Na=Vn(Ka|0,Ma|0,Ca|0,Da|0)|0;Ua=+(ya>>>0)+4294967296.0*+(Q|0);Va=+W(+(Ta*Ua));Da=Vn(Na|0,I|0,~~Va>>>0|0,(+K(Va)>=1.0?(Va>0.0?~~+Y(+J(Va/4294967296.0),4294967295.0)>>>0:~~+W((Va-+(~~Va>>>0))/4294967296.0)>>>0):0)|0)|0;Na=r;f[Na>>2]=Da;f[Na+4>>2]=Sa;b[U>>0]=0;f[V>>2]=0;$f($,ma,ma+(g<<2)|0);f[s>>2]=pa;f[t>>2]=qa;f[j>>2]=f[s>>2];f[e>>2]=f[t>>2];Jf(aa,j,e);if((Fa|0)<1){Wa=va;Xa=ua;Ya=ta;Za=sa;_a=qa;$a=pa;ab=pa}else{Na=n+Fa|0;Da=f[q>>2]|0;Ca=Da;Ma=f[H>>2]|0;Ka=Na+-1|0;Ia=(Ka|0)==(n|0);bb=Na+-2|0;cb=ja>>>0<bb>>>0;db=~Fa;eb=Fa+2+((db|0)>-2?db:-2)|0;db=Ma;fb=Ka>>>0>n>>>0;gb=0;hb=1;while(1){gb=gb+1|0;sj(n|0,1,eb|0)|0;sj(n|0,0,gb|0)|0;ib=Vn(Ga|0,Ja|0,hb|0,0)|0;d:while(1){if(S){sj(f[m>>2]|0,0,ka|0)|0;jb=f[m>>2]|0;kb=0;lb=0;while(1){if(!(b[n+kb>>0]|0)){mb=f[l+(kb*12|0)>>2]|0;nb=0;do{ob=jb+(nb<<2)|0;f[ob>>2]=(f[ob>>2]|0)+(f[mb+(nb<<2)>>2]|0);nb=nb+1|0}while((nb|0)!=(g|0));pb=(1<<kb|lb&255)&255}else pb=lb;kb=kb+1|0;if((kb|0)==(Fa|0)){qb=pb;break}else lb=pb}}else{lb=0;kb=0;while(1){if(!(b[n+lb>>0]|0))rb=(1<<lb|kb&255)&255;else rb=kb;lb=lb+1|0;if((lb|0)==(Fa|0)){qb=rb;break}else kb=rb}}kb=f[m>>2]|0;do if(S){f[kb>>2]=(f[kb>>2]|0)/(hb|0)|0;if(!la){lb=1;do{jb=kb+(lb<<2)|0;f[jb>>2]=(f[jb>>2]|0)/(hb|0)|0;lb=lb+1|0}while((lb|0)!=(g|0));lb=f[Z>>2]|0;if(S)sb=lb;else{tb=0;ub=lb;break}}else sb=f[Z>>2]|0;lb=0;jb=0;while(1){nb=(f[kb+(lb<<2)>>2]|0)-(f[za+(lb<<2)>>2]|0)|0;mb=((nb|0)>-1?nb:0-nb|0)+jb|0;f[Da+(lb<<2)>>2]=nb;f[sb+(lb<<2)>>2]=nb<<1^nb>>31;lb=lb+1|0;if((lb|0)==(g|0)){tb=mb;ub=sb;break}else jb=mb}}else{tb=0;ub=f[Z>>2]|0}while(0);mo(e,_,ub,g);kb=Zk(e)|0;jb=I;lb=Bm(e)|0;mb=I;Va=+wm(ya,ib);nb=Vn(lb|0,mb|0,kb|0,jb|0)|0;Ta=+W(+(Va*Ua));jb=Vn(nb|0,I|0,~~Ta>>>0|0,(+K(Ta)>=1.0?(Ta>0.0?~~+Y(+J(Ta/4294967296.0),4294967295.0)>>>0:~~+W((Ta-+(~~Ta>>>0))/4294967296.0)>>>0):0)|0)|0;nb=f[r>>2]|0;if(!((nb|0)<=(jb|0)?!((nb|0)>=(jb|0)?(tb|0)<(f[T>>2]|0):0):0)){nb=r;f[nb>>2]=jb;f[nb+4>>2]=tb;b[U>>0]=qb;f[V>>2]=hb;f[v>>2]=f[m>>2];f[w>>2]=f[E>>2];f[j>>2]=f[v>>2];f[e>>2]=f[w>>2];Jf($,j,e);f[x>>2]=Ca;f[y>>2]=Ma;f[j>>2]=f[x>>2];f[e>>2]=f[y>>2];Jf(aa,j,e)}if(Ia)break;vb=b[Ka>>0]|0;nb=-1;jb=vb;while(1){kb=nb+-1|0;wb=Na+kb|0;mb=jb;jb=b[wb>>0]|0;if((jb&255)<(mb&255))break;if((wb|0)==(n|0)){xb=84;break d}else nb=kb}kb=Na+nb|0;if((jb&255)<(vb&255)){yb=Ka;zb=vb}else{mb=Na;lb=Ka;while(1){ob=lb+-1|0;if((jb&255)<(h[mb+-2>>0]|0)){yb=ob;zb=1;break}else{Ab=lb;lb=ob;mb=Ab}}}b[wb>>0]=zb;b[yb>>0]=jb;if((nb|0)<-1){Bb=kb;Cb=Ka}else continue;while(1){mb=b[Bb>>0]|0;b[Bb>>0]=b[Cb>>0]|0;b[Cb>>0]=mb;mb=Bb+1|0;lb=Cb+-1|0;if(mb>>>0<lb>>>0){Bb=mb;Cb=lb}else continue d}}if(((xb|0)==84?(xb=0,fb):0)?(ib=b[n>>0]|0,b[n>>0]=vb,b[Ka>>0]=ib,cb):0){ib=bb;kb=ja;do{nb=b[kb>>0]|0;b[kb>>0]=b[ib>>0]|0;b[ib>>0]=nb;kb=kb+1|0;ib=ib+-1|0}while(kb>>>0<ib>>>0)}if((hb|0)>=(Fa|0)){Wa=db;Xa=Da;Ya=db;Za=Da;_a=Ma;$a=Ca;ab=Da;break}else hb=hb+1|0}}hb=f[V>>2]|0;Da=Vn(Ga|0,Ja|0,hb|0,((hb|0)<0)<<31>>31|0)|0;hb=La;f[hb>>2]=Da;f[hb+4>>2]=I;if(S){hb=f[aa>>2]|0;Da=f[C>>2]|0;Ca=0;do{Ma=f[hb+(Ca<<2)>>2]|0;f[Da+(Ca<<2)>>2]=Ma<<1^Ma>>31;Ca=Ca+1|0}while((Ca|0)!=(g|0));Db=Da}else Db=f[C>>2]|0;lo(e,_,Db,g);if((Fa|0)>0){Eb=a+40+(Aa*12|0)|0;Da=a+40+(Aa*12|0)+4|0;Ca=a+40+(Aa*12|0)+8|0;hb=0;do{La=f[Da>>2]|0;Ja=f[Ca>>2]|0;Ga=(La|0)==(Ja<<5|0);if(!(1<<hb&h[U>>0])){if(Ga){if((La+1|0)<0){xb=95;break b}Ma=Ja<<6;db=La+32&-32;vi(Eb,La>>>0<1073741823?(Ma>>>0<db>>>0?db:Ma):2147483647);Fb=f[Da>>2]|0}else Fb=La;f[Da>>2]=Fb+1;Ma=(f[Eb>>2]|0)+(Fb>>>5<<2)|0;f[Ma>>2]=f[Ma>>2]|1<<(Fb&31)}else{if(Ga){if((La+1|0)<0){xb=100;break b}Ga=Ja<<6;Ja=La+32&-32;vi(Eb,La>>>0<1073741823?(Ga>>>0<Ja>>>0?Ja:Ga):2147483647);Gb=f[Da>>2]|0}else Gb=La;f[Da>>2]=Gb+1;La=(f[Eb>>2]|0)+(Gb>>>5<<2)|0;f[La>>2]=f[La>>2]&~(1<<(Gb&31))}hb=hb+1|0}while((hb|0)<(Fa|0))}hb=f[$>>2]|0;Da=d+(Ba<<2)|0;Ca=f[za+4>>2]|0;Aa=f[hb>>2]|0;La=f[hb+4>>2]|0;f[j>>2]=f[za>>2];f[ca>>2]=Ca;f[k>>2]=Aa;f[da>>2]=La;Od(e,ba,j,k);f[Da>>2]=f[e>>2];f[Da+4>>2]=f[ea>>2];Da=f[fa>>2]|0;if(Da|0){La=f[ia>>2]|0;if((La|0)!=(Da|0))f[ia>>2]=La+(~((La+-4-Da|0)>>>2)<<2);Oq(Da)}Da=f[ga>>2]|0;if(Da|0){La=f[ha>>2]|0;if((La|0)!=(Da|0))f[ha>>2]=La+(~((La+-4-Da|0)>>>2)<<2);Oq(Da)}if((na|0)<=2){Hb=Za;Ib=Ya;break a}Da=f[B>>2]|0;wa=f[Da>>2]|0;La=oa+-1|0;if((f[Da+4>>2]|0)-wa>>2>>>0<=La>>>0){xa=Da;xb=18;break}else{Da=oa;oa=La;pa=$a;qa=_a;ra=ab;sa=Za;ta=Ya;ua=Xa;va=Wa;na=Da}}if((xb|0)==18)aq(xa);else if((xb|0)==95)aq(Eb);else if((xb|0)==100)aq(Eb)}else{Hb=M;Ib=N}while(0);if((g|0)>0)sj(f[l>>2]|0,0,g<<2|0)|0;g=f[l>>2]|0;N=f[c+4>>2]|0;M=f[g>>2]|0;Eb=f[g+4>>2]|0;f[j>>2]=f[c>>2];f[j+4>>2]=N;f[k>>2]=M;f[k+4>>2]=Eb;Od(e,a+8|0,j,k);f[d>>2]=f[e>>2];f[d+4>>2]=f[e+4>>2];if(Hb|0){if((Ib|0)!=(Hb|0))f[H>>2]=Ib+(~((Ib+-4-Hb|0)>>>2)<<2);Oq(Hb)}Hb=f[m>>2]|0;if(Hb|0){m=f[E>>2]|0;if((m|0)!=(Hb|0))f[E>>2]=m+(~((m+-4-Hb|0)>>>2)<<2);Oq(Hb)}Hb=f[l+36>>2]|0;if(Hb|0){m=l+40|0;E=f[m>>2]|0;if((E|0)!=(Hb|0))f[m>>2]=E+(~((E+-4-Hb|0)>>>2)<<2);Oq(Hb)}Hb=f[l+24>>2]|0;if(Hb|0){E=l+28|0;m=f[E>>2]|0;if((m|0)!=(Hb|0))f[E>>2]=m+(~((m+-4-Hb|0)>>>2)<<2);Oq(Hb)}Hb=f[l+12>>2]|0;if(Hb|0){m=l+16|0;E=f[m>>2]|0;if((E|0)!=(Hb|0))f[m>>2]=E+(~((E+-4-Hb|0)>>>2)<<2);Oq(Hb)}Hb=f[l>>2]|0;if(!Hb){u=i;return 1}E=l+4|0;l=f[E>>2]|0;if((l|0)!=(Hb|0))f[E>>2]=l+(~((l+-4-Hb|0)>>>2)<<2);Oq(Hb);u=i;return 1}function gb(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=Oa,La=0,Ma=0,Na=0,Pa=0,Qa=Oa,Ra=0,Sa=0,Ta=0,Ua=0,Va=0;c=u;u=u+80|0;d=c+60|0;e=c+48|0;g=c+24|0;h=c+12|0;i=c;j=a+28|0;k=f[j>>2]|0;l=f[k+4>>2]|0;m=f[l+80>>2]|0;o=a+4|0;p=a+8|0;q=f[p>>2]|0;r=f[o>>2]|0;s=(q|0)==(r|0);t=r;if(s){f[a+72>>2]=0;v=1;u=c;return v|0}w=f[l+8>>2]|0;x=q-r>>2;r=0;q=0;do{r=r+(b[(f[w+(f[t+(q<<2)>>2]<<2)>>2]|0)+24>>0]|0)|0;q=q+1|0}while(q>>>0<x>>>0);f[a+72>>2]=r;if(s){v=1;u=c;return v|0}s=g+4|0;r=g+8|0;x=d+8|0;q=d+4|0;w=d+11|0;y=g+12|0;z=d+8|0;A=d+4|0;B=d+11|0;C=h+4|0;D=h+8|0;E=i+8|0;F=i+4|0;G=d+11|0;H=d+4|0;I=i+11|0;J=d+8|0;K=d+4|0;L=d+11|0;M=d+11|0;N=d+4|0;O=h+8|0;P=a+40|0;Q=a+44|0;R=a+36|0;S=a+64|0;T=a+68|0;U=a+60|0;V=g+8|0;W=g+20|0;X=e+8|0;Y=e+4|0;Z=e+11|0;_=g+4|0;aa=g+8|0;ba=h+4|0;ca=h+8|0;da=h+8|0;ea=a+52|0;fa=a+56|0;ga=a+48|0;a=g+8|0;ha=0;ia=t;t=l;l=k;a:while(1){k=f[ia+(ha<<2)>>2]|0;ja=f[(f[t+8>>2]|0)+(k<<2)>>2]|0;switch(f[ja+28>>2]|0){case 9:{f[g>>2]=1196;f[s>>2]=-1;f[r>>2]=0;f[r+4>>2]=0;f[r+8>>2]=0;f[r+12>>2]=0;ka=f[l+48>>2]|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;la=ln(32)|0;f[d>>2]=la;f[x>>2]=-2147483616;f[q>>2]=17;ma=la;na=14495;oa=ma+17|0;do{b[ma>>0]=b[na>>0]|0;ma=ma+1|0;na=na+1|0}while((ma|0)<(oa|0));b[la+17>>0]=0;pa=ka+16|0;qa=f[pa>>2]|0;if(qa){ra=pa;sa=qa;b:while(1){qa=sa;while(1){if((f[qa+16>>2]|0)>=(k|0))break;ta=f[qa+4>>2]|0;if(!ta){ua=ra;break b}else qa=ta}sa=f[qa>>2]|0;if(!sa){ua=qa;break}else ra=qa}if(((ua|0)!=(pa|0)?(k|0)>=(f[ua+16>>2]|0):0)?(ra=ua+20|0,(Jh(ra,d)|0)!=0):0)va=Hk(ra,d,-1)|0;else wa=17}else wa=17;if((wa|0)==17){wa=0;va=Hk(ka,d,-1)|0}if((b[w>>0]|0)<0)Oq(f[d>>2]|0);if((va|0)<1)xa=1;else{ra=f[(f[j>>2]|0)+48>>2]|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;sa=ln(32)|0;f[d>>2]=sa;f[z>>2]=-2147483616;f[A>>2]=19;ma=sa;na=14438;oa=ma+19|0;do{b[ma>>0]=b[na>>0]|0;ma=ma+1|0;na=na+1|0}while((ma|0)<(oa|0));b[sa+19>>0]=0;ka=ra+16|0;pa=f[ka>>2]|0;if(pa){la=ka;ta=pa;c:while(1){pa=ta;while(1){if((f[pa+16>>2]|0)>=(k|0))break;ya=f[pa+4>>2]|0;if(!ya){za=la;break c}else pa=ya}ta=f[pa>>2]|0;if(!ta){za=pa;break}else la=pa}if((za|0)!=(ka|0)?(k|0)>=(f[za+16>>2]|0):0)Aa=za+20|0;else wa=29}else wa=29;if((wa|0)==29){wa=0;Aa=ra}if(!(Jh(Aa,d)|0))Ba=0;else{la=f[(f[j>>2]|0)+48>>2]|0;f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;ta=ln(32)|0;f[e>>2]=ta;f[X>>2]=-2147483616;f[Y>>2]=18;ma=ta;na=14458;oa=ma+18|0;do{b[ma>>0]=b[na>>0]|0;ma=ma+1|0;na=na+1|0}while((ma|0)<(oa|0));b[ta+18>>0]=0;ra=la+16|0;ka=f[ra>>2]|0;if(ka){sa=ra;qa=ka;d:while(1){ka=qa;while(1){if((f[ka+16>>2]|0)>=(k|0))break;ya=f[ka+4>>2]|0;if(!ya){Ca=sa;break d}else ka=ya}qa=f[ka>>2]|0;if(!qa){Ca=ka;break}else sa=ka}if((Ca|0)!=(ra|0)?(k|0)>=(f[Ca+16>>2]|0):0)Da=Ca+20|0;else wa=39}else wa=39;if((wa|0)==39){wa=0;Da=la}sa=(Jh(Da,e)|0)!=0;if((b[Z>>0]|0)<0)Oq(f[e>>2]|0);Ba=sa}if((b[B>>0]|0)<0)Oq(f[d>>2]|0);if(Ba){sa=ja+24|0;qa=b[sa>>0]|0;ta=qa<<24>>24;f[h>>2]=0;f[C>>2]=0;f[D>>2]=0;if(!(qa<<24>>24))Ea=0;else{if(qa<<24>>24<0){wa=48;break a}qa=ta<<2;pa=ln(qa)|0;f[h>>2]=pa;ya=pa+(ta<<2)|0;f[O>>2]=ya;sj(pa|0,0,qa|0)|0;f[C>>2]=ya;Ea=pa}pa=f[(f[j>>2]|0)+48>>2]|0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;ya=ln(32)|0;f[i>>2]=ya;f[E>>2]=-2147483616;f[F>>2]=19;ma=ya;na=14438;oa=ma+19|0;do{b[ma>>0]=b[na>>0]|0;ma=ma+1|0;na=na+1|0}while((ma|0)<(oa|0));b[ya+19>>0]=0;la=b[sa>>0]|0;ra=la<<24>>24;qa=pa+16|0;ta=f[qa>>2]|0;if(ta){Fa=qa;Ga=ta;e:while(1){ta=Ga;while(1){if((f[ta+16>>2]|0)>=(k|0))break;Ha=f[ta+4>>2]|0;if(!Ha){Ia=Fa;break e}else ta=Ha}Ga=f[ta>>2]|0;if(!Ga){Ia=ta;break}else Fa=ta}if(((Ia|0)!=(qa|0)?(k|0)>=(f[Ia+16>>2]|0):0)?(Fa=Ia+20|0,(Jh(Fa,i)|0)!=0):0){Ga=Rg(Fa,i)|0;if((Ga|0)!=(Ia+24|0)){pj(d,Ga+28|0);Ga=b[M>>0]|0;Fa=Ga<<24>>24<0;if(!((Fa?f[N>>2]|0:Ga&255)|0))Ja=Ga;else{if(la<<24>>24>0){ya=Fa?f[d>>2]|0:d;Fa=0;do{Ka=$(bq(ya,e));ka=ya;ya=f[e>>2]|0;if((ka|0)==(ya|0))break;n[Ea+(Fa<<2)>>2]=Ka;Fa=Fa+1|0}while((Fa|0)<(ra|0));La=b[M>>0]|0}else La=Ga;Ja=La}if(Ja<<24>>24<0)Oq(f[d>>2]|0)}}else wa=69}else wa=69;if((wa|0)==69?(wa=0,Fa=Rg(pa,i)|0,(Fa|0)!=(pa+4|0)):0){pj(d,Fa+28|0);Fa=b[G>>0]|0;ya=Fa<<24>>24<0;if(!((ya?f[H>>2]|0:Fa&255)|0))Ma=Fa;else{if(la<<24>>24>0){qa=ya?f[d>>2]|0:d;ya=0;do{Ka=$(bq(qa,e));ka=qa;qa=f[e>>2]|0;if((ka|0)==(qa|0))break;n[Ea+(ya<<2)>>2]=Ka;ya=ya+1|0}while((ya|0)<(ra|0));Na=b[G>>0]|0}else Na=Fa;Ma=Na}if(Ma<<24>>24<0)Oq(f[d>>2]|0)}if((b[I>>0]|0)<0)Oq(f[i>>2]|0);ra=f[(f[j>>2]|0)+48>>2]|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;ya=ln(32)|0;f[d>>2]=ya;f[J>>2]=-2147483616;f[K>>2]=18;ma=ya;na=14458;oa=ma+18|0;do{b[ma>>0]=b[na>>0]|0;ma=ma+1|0;na=na+1|0}while((ma|0)<(oa|0));b[ya+18>>0]=0;na=ra+16|0;ma=f[na>>2]|0;do if(ma){oa=na;Fa=ma;f:while(1){qa=Fa;while(1){if((f[qa+16>>2]|0)>=(k|0))break;la=f[qa+4>>2]|0;if(!la){Pa=oa;break f}else qa=la}Fa=f[qa>>2]|0;if(!Fa){Pa=qa;break}else oa=qa}if((Pa|0)!=(na|0)?(k|0)>=(f[Pa+16>>2]|0):0){oa=Pa+20|0;if(!(Jh(oa,d)|0)){wa=91;break}Qa=$(sk(oa,d,$(1.0)))}else wa=91}else wa=91;while(0);if((wa|0)==91){wa=0;Qa=$(sk(ra,d,$(1.0)))}if((b[L>>0]|0)<0)Oq(f[d>>2]|0);Dl(g,va,f[h>>2]|0,b[sa>>0]|0,Qa);k=f[h>>2]|0;if(k|0){na=f[C>>2]|0;if((na|0)!=(k|0))f[C>>2]=na+(~((na+-4-k|0)>>>2)<<2);Oq(k)}}else Wd(g,ja,va)|0;k=f[P>>2]|0;if((k|0)==(f[Q>>2]|0))Cf(R,g);else{f[k>>2]=1196;f[k+4>>2]=f[s>>2];Ra=k+8|0;f[Ra>>2]=0;na=k+12|0;f[na>>2]=0;f[k+16>>2]=0;ma=(f[y>>2]|0)-(f[V>>2]|0)|0;ya=ma>>2;if(ya|0){if(ya>>>0>1073741823){wa=103;break a}oa=ln(ma)|0;f[na>>2]=oa;f[Ra>>2]=oa;f[k+16>>2]=oa+(ya<<2);ya=f[V>>2]|0;ma=(f[y>>2]|0)-ya|0;if((ma|0)>0){kh(oa|0,ya|0,ma|0)|0;f[na>>2]=oa+(ma>>>2<<2)}}f[k+20>>2]=f[W>>2];f[P>>2]=(f[P>>2]|0)+24}Qe(d,g,ja,m);k=f[S>>2]|0;if(k>>>0<(f[T>>2]|0)>>>0){ma=f[d>>2]|0;f[d>>2]=0;f[k>>2]=ma;f[S>>2]=k+4}else Ze(U,d);k=f[d>>2]|0;f[d>>2]=0;if(k|0){ma=k+88|0;oa=f[ma>>2]|0;f[ma>>2]=0;if(oa|0){ma=f[oa+8>>2]|0;if(ma|0){na=oa+12|0;if((f[na>>2]|0)!=(ma|0))f[na>>2]=ma;Oq(ma)}Oq(oa)}oa=f[k+68>>2]|0;if(oa|0){ma=k+72|0;na=f[ma>>2]|0;if((na|0)!=(oa|0))f[ma>>2]=na+(~((na+-4-oa|0)>>>2)<<2);Oq(oa)}oa=k+64|0;na=f[oa>>2]|0;f[oa>>2]=0;if(na|0){oa=f[na>>2]|0;if(oa|0){ma=na+4|0;if((f[ma>>2]|0)!=(oa|0))f[ma>>2]=oa;Oq(oa)}Oq(na)}Oq(k)}xa=0}f[g>>2]=1196;k=f[r>>2]|0;if(k|0){na=f[y>>2]|0;if((na|0)!=(k|0))f[y>>2]=na+(~((na+-4-k|0)>>>2)<<2);Oq(k)}if(xa|0){v=0;wa=169;break a}break}case 1:case 3:case 5:{k=ja+24|0;na=b[k>>0]|0;oa=na<<24>>24;f[g>>2]=0;f[_>>2]=0;f[aa>>2]=0;if(!(na<<24>>24))Sa=0;else{if(na<<24>>24<0){wa=137;break a}na=ln(oa<<2)|0;f[_>>2]=na;f[g>>2]=na;ma=na+(oa<<2)|0;f[a>>2]=ma;ya=oa;oa=na;while(1){f[oa>>2]=2147483647;ya=ya+-1|0;if(!ya)break;else oa=oa+4|0}f[_>>2]=ma;Sa=b[k>>0]|0}oa=Sa<<24>>24;f[h>>2]=0;f[ba>>2]=0;f[ca>>2]=0;if(!(Sa<<24>>24))Ta=0;else{if(Sa<<24>>24<0){wa=144;break a}ya=oa<<2;sa=ln(ya)|0;f[h>>2]=sa;ra=sa+(oa<<2)|0;f[da>>2]=ra;sj(sa|0,0,ya|0)|0;f[ba>>2]=ra;Ta=sa}sa=ja+80|0;ra=b[k>>0]|0;g:do if(!(f[sa>>2]|0))Ua=ra;else{ya=0;oa=ra;na=Ta;while(1){f[e>>2]=ya;f[d>>2]=f[e>>2];Qb(ja,d,oa,na)|0;Fa=b[k>>0]|0;if(Fa<<24>>24>0){ta=f[g>>2]|0;la=f[h>>2]|0;pa=Fa<<24>>24;Ga=0;do{ka=ta+(Ga<<2)|0;Ha=f[la+(Ga<<2)>>2]|0;if((f[ka>>2]|0)>(Ha|0))f[ka>>2]=Ha;Ga=Ga+1|0}while((Ga|0)<(pa|0))}pa=ya+1|0;if(pa>>>0>=(f[sa>>2]|0)>>>0){Ua=Fa;break g}ya=pa;oa=Fa;na=f[h>>2]|0}}while(0);if(Ua<<24>>24>0){sa=0;ja=Ua;while(1){ra=(f[g>>2]|0)+(sa<<2)|0;ma=f[ea>>2]|0;if((ma|0)==(f[fa>>2]|0)){Ri(ga,ra);Va=b[k>>0]|0}else{f[ma>>2]=f[ra>>2];f[ea>>2]=ma+4;Va=ja}sa=sa+1|0;if((sa|0)>=(Va<<24>>24|0))break;else ja=Va}}ja=f[h>>2]|0;if(ja|0){sa=f[ba>>2]|0;if((sa|0)!=(ja|0))f[ba>>2]=sa+(~((sa+-4-ja|0)>>>2)<<2);Oq(ja)}ja=f[g>>2]|0;if(ja|0){sa=f[_>>2]|0;if((sa|0)!=(ja|0))f[_>>2]=sa+(~((sa+-4-ja|0)>>>2)<<2);Oq(ja)}break}default:{}}ja=ha+1|0;sa=f[o>>2]|0;if(ja>>>0>=(f[p>>2]|0)-sa>>2>>>0){v=1;wa=169;break}k=f[j>>2]|0;ha=ja;ia=sa;t=f[k+4>>2]|0;l=k}if((wa|0)==48)aq(h);else if((wa|0)==103)aq(Ra);else if((wa|0)==137)aq(g);else if((wa|0)==144)aq(h);else if((wa|0)==169){u=c;return v|0}return 0}function hb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0,Ma=0,Na=0,Oa=0,Pa=0,Qa=0,Ra=0;d=u;u=u+32|0;e=d;g=a+8|0;h=f[g>>2]|0;f[e>>2]=0;i=e+4|0;f[i>>2]=0;f[e+8>>2]=0;do if(h)if(h>>>0>1073741823)aq(e);else{j=h<<2;k=ln(j)|0;f[e>>2]=k;l=k+(h<<2)|0;f[e+8>>2]=l;sj(k|0,0,j|0)|0;f[i>>2]=l;m=l;n=k;break}else{m=0;n=0}while(0);k=a+128|0;l=f[k>>2]|0;j=f[l>>2]|0;o=l+4|0;if(!j){p=l+8|0;q=n;r=m;s=h}else{h=f[o>>2]|0;if((h|0)!=(j|0))f[o>>2]=h+(~((h+-4-j|0)>>>2)<<2);Oq(j);j=l+8|0;f[j>>2]=0;f[o>>2]=0;f[l>>2]=0;p=j;q=f[e>>2]|0;r=f[i>>2]|0;s=f[g>>2]|0}f[l>>2]=q;f[o>>2]=r;f[p>>2]=f[e+8>>2];f[e>>2]=0;p=e+4|0;f[p>>2]=0;f[e+8>>2]=0;do if(s)if(s>>>0>1073741823)aq(e);else{r=s<<2;o=ln(r)|0;f[e>>2]=o;q=o+(s<<2)|0;f[e+8>>2]=q;sj(o|0,0,r|0)|0;f[p>>2]=q;t=q;v=o;break}else{t=0;v=0}while(0);s=a+140|0;o=f[s>>2]|0;q=f[o>>2]|0;r=o+4|0;if(!q){w=o+8|0;x=v;y=t}else{t=f[r>>2]|0;if((t|0)!=(q|0))f[r>>2]=t+(~((t+-4-q|0)>>>2)<<2);Oq(q);q=o+8|0;f[q>>2]=0;f[r>>2]=0;f[o>>2]=0;w=q;x=f[e>>2]|0;y=f[p>>2]|0}f[o>>2]=x;f[r>>2]=y;f[w>>2]=f[e+8>>2];w=f[b>>2]|0;y=b+4|0;r=f[y>>2]|0;x=f[y+4>>2]|0;y=f[c>>2]|0;o=c+4|0;p=f[o>>2]|0;q=f[o+4>>2]|0;f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;f[e+12>>2]=0;f[e+16>>2]=0;f[e+20>>2]=0;o=e+8|0;t=e+4|0;v=e+16|0;l=e+20|0;i=r;Pc(e);j=f[t>>2]|0;h=(f[l>>2]|0)+(f[v>>2]|0)|0;if((f[o>>2]|0)==(j|0))z=0;else z=(f[j+(((h>>>0)/113|0)<<2)>>2]|0)+(((h>>>0)%113|0)*36|0)|0;f[z>>2]=w;h=z+4|0;f[h>>2]=r;f[h+4>>2]=x;f[z+12>>2]=y;h=z+16|0;f[h>>2]=p;f[h+4>>2]=q;f[z+24>>2]=0;f[z+28>>2]=y-w;f[z+32>>2]=0;z=(f[l>>2]|0)+1|0;f[l>>2]=z;if(z|0){w=a+116|0;y=a+48|0;h=a+44|0;j=a+36|0;m=a+40|0;n=a+32|0;A=b+8|0;B=c+8|0;C=a+28|0;D=a+24|0;E=a+16|0;F=a+20|0;G=a+12|0;H=a+88|0;I=a+84|0;J=a+76|0;K=a+80|0;L=a+72|0;M=i+4|0;N=i+24|0;O=i+24|0;P=p+24|0;Q=z;while(1){z=f[v>>2]|0;R=Q+-1|0;S=R+z|0;T=f[t>>2]|0;U=f[T+(((S>>>0)/113|0)<<2)>>2]|0;V=(S>>>0)%113|0;S=f[U+(V*36|0)>>2]|0;W=f[U+(V*36|0)+12>>2]|0;Y=f[U+(V*36|0)+24>>2]|0;Z=f[U+(V*36|0)+32>>2]|0;f[l>>2]=R;R=f[o>>2]|0;V=R-T>>2;if((1-Q-z+((V|0)==0?0:(V*113|0)+-1|0)|0)>>>0>225){Oq(f[R+-4>>2]|0);f[o>>2]=(f[o>>2]|0)+-4}f[b>>2]=S;f[c>>2]=W;R=f[k>>2]|0;V=((f[g>>2]|0)+-1|0)==(Y|0)?0:Y+1|0;Y=(f[s>>2]|0)+(Z*12|0)|0;z=W-S|0;T=(f[a>>2]|0)-(f[(f[Y>>2]|0)+(V<<2)>>2]|0)|0;a:do if(T){if(z>>>0<3){U=f[w>>2]|0;f[U>>2]=V;$=f[g>>2]|0;if($>>>0>1){aa=1;ba=$;ca=V;while(1){ca=(ca|0)==(ba+-1|0)?0:ca+1|0;f[U+(aa<<2)>>2]=ca;aa=aa+1|0;da=f[g>>2]|0;if(aa>>>0>=da>>>0){ea=da;break}else ba=da}}else ea=$;if(!z){fa=99;break}else{ga=0;ha=ea}while(1){ba=(f[N>>2]|0)+((X(f[M>>2]|0,S+ga|0)|0)<<2)|0;if(!ha)ia=0;else{aa=0;do{ca=f[(f[w>>2]|0)+(aa<<2)>>2]|0;U=(f[a>>2]|0)-(f[(f[Y>>2]|0)+(ca<<2)>>2]|0)|0;do if(U|0){da=f[y>>2]|0;ja=32-da|0;ka=32-U|0;la=f[ba+(ca<<2)>>2]<<ka;if((U|0)>(ja|0)){ma=la>>>ka;ka=U-ja|0;f[y>>2]=ka;ja=f[h>>2]|ma>>>ka;f[h>>2]=ja;ka=f[j>>2]|0;if((ka|0)==(f[m>>2]|0))Ri(n,h);else{f[ka>>2]=ja;f[j>>2]=ka+4}f[h>>2]=ma<<32-(f[y>>2]|0);break}ma=f[h>>2]|la>>>da;f[h>>2]=ma;la=da+U|0;f[y>>2]=la;if((la|0)!=32)break;la=f[j>>2]|0;if((la|0)==(f[m>>2]|0))Ri(n,h);else{f[la>>2]=ma;f[j>>2]=la+4}f[h>>2]=0;f[y>>2]=0}while(0);aa=aa+1|0;U=f[g>>2]|0}while(aa>>>0<U>>>0);ia=U}ga=ga+1|0;if(ga>>>0>=z>>>0){fa=99;break a}else ha=ia}}$=Z+1|0;Ig(R+($*12|0)|0,f[R+(Z*12|0)>>2]|0,f[R+(Z*12|0)+4>>2]|0);aa=(f[(f[k>>2]|0)+($*12|0)>>2]|0)+(V<<2)|0;ba=(f[aa>>2]|0)+(1<<T+-1)|0;f[aa>>2]=ba;aa=f[A>>2]|0;U=f[B>>2]|0;b:do if((W|0)==(S|0))na=S;else{ca=f[O>>2]|0;if(!aa){if((f[ca+(V<<2)>>2]|0)>>>0<ba>>>0){na=W;break}else{oa=W;pa=S}while(1){la=oa;do{la=la+-1|0;if((pa|0)==(la|0)){na=pa;break b}ma=(f[P>>2]|0)+((X(la,U)|0)<<2)+(V<<2)|0}while((f[ma>>2]|0)>>>0>=ba>>>0);pa=pa+1|0;if((pa|0)==(la|0)){na=la;break b}else oa=la}}else{qa=W;ra=S}while(1){ma=ra;while(1){sa=ca+((X(ma,aa)|0)<<2)|0;if((f[sa+(V<<2)>>2]|0)>>>0>=ba>>>0){ta=qa;break}da=ma+1|0;if((da|0)==(qa|0)){na=qa;break b}else ma=da}while(1){ta=ta+-1|0;if((ma|0)==(ta|0)){na=ma;break b}ua=(f[P>>2]|0)+((X(ta,U)|0)<<2)|0;if((f[ua+(V<<2)>>2]|0)>>>0<ba>>>0){va=0;break}}do{la=sa+(va<<2)|0;da=ua+(va<<2)|0;ka=f[la>>2]|0;f[la>>2]=f[da>>2];f[da>>2]=ka;va=va+1|0}while((va|0)!=(aa|0));ra=ma+1|0;if((ra|0)==(ta|0)){na=ta;break}else qa=ta}}while(0);ba=(_(z|0)|0)^31;U=na-S|0;ca=W-na|0;ka=U>>>0<ca>>>0;if((U|0)!=(ca|0)){da=f[H>>2]|0;if(ka)f[I>>2]=f[I>>2]|1<<31-da;la=da+1|0;f[H>>2]=la;if((la|0)==32){la=f[J>>2]|0;if((la|0)==(f[K>>2]|0))Ri(L,I);else{f[la>>2]=f[I>>2];f[J>>2]=la+4}f[H>>2]=0;f[I>>2]=0}}la=z>>>1;do if(ka){da=f[C>>2]|0;ja=32-da|0;wa=32-ba|0;xa=la-U<<wa;if((ba|0)>(ja|0)){ya=xa>>>wa;wa=ba-ja|0;f[C>>2]=wa;ja=f[D>>2]|ya>>>wa;f[D>>2]=ja;wa=f[E>>2]|0;if((wa|0)==(f[F>>2]|0))Ri(G,D);else{f[wa>>2]=ja;f[E>>2]=wa+4}f[D>>2]=ya<<32-(f[C>>2]|0);break}ya=f[D>>2]|xa>>>da;f[D>>2]=ya;xa=da+ba|0;f[C>>2]=xa;if((xa|0)==32){xa=f[E>>2]|0;if((xa|0)==(f[F>>2]|0))Ri(G,D);else{f[xa>>2]=ya;f[E>>2]=xa+4}f[D>>2]=0;f[C>>2]=0}}else{xa=f[C>>2]|0;ya=32-xa|0;da=32-ba|0;wa=la-ca<<da;if((ba|0)>(ya|0)){ja=wa>>>da;da=ba-ya|0;f[C>>2]=da;ya=f[D>>2]|ja>>>da;f[D>>2]=ya;da=f[E>>2]|0;if((da|0)==(f[F>>2]|0))Ri(G,D);else{f[da>>2]=ya;f[E>>2]=da+4}f[D>>2]=ja<<32-(f[C>>2]|0);break}ja=f[D>>2]|wa>>>xa;f[D>>2]=ja;wa=xa+ba|0;f[C>>2]=wa;if((wa|0)==32){wa=f[E>>2]|0;if((wa|0)==(f[F>>2]|0))Ri(G,D);else{f[wa>>2]=ja;f[E>>2]=wa+4}f[D>>2]=0;f[C>>2]=0}}while(0);ba=f[s>>2]|0;la=f[ba+(Z*12|0)>>2]|0;ka=la+(V<<2)|0;f[ka>>2]=(f[ka>>2]|0)+1;Ig(ba+($*12|0)|0,la,f[ba+(Z*12|0)+4>>2]|0);if((na|0)!=(S|0)){ba=f[o>>2]|0;la=f[t>>2]|0;ka=ba-la>>2;wa=f[v>>2]|0;ja=f[l>>2]|0;if((((ka|0)==0?0:(ka*113|0)+-1|0)|0)==(ja+wa|0)){Pc(e);za=f[v>>2]|0;Aa=f[l>>2]|0;Ba=f[o>>2]|0;Ca=f[t>>2]|0}else{za=wa;Aa=ja;Ba=ba;Ca=la}la=Aa+za|0;if((Ba|0)==(Ca|0))Da=0;else Da=(f[Ca+(((la>>>0)/113|0)<<2)>>2]|0)+(((la>>>0)%113|0)*36|0)|0;f[Da>>2]=S;la=Da+4|0;f[la>>2]=r;f[la+4>>2]=x;f[Da+12>>2]=na;f[Da+16>>2]=i;f[Da+20>>2]=aa;f[Da+24>>2]=V;f[Da+28>>2]=U;f[Da+32>>2]=Z;f[l>>2]=(f[l>>2]|0)+1}if((W|0)!=(na|0)){la=f[o>>2]|0;ba=f[t>>2]|0;ja=la-ba>>2;wa=f[v>>2]|0;ka=f[l>>2]|0;if((((ja|0)==0?0:(ja*113|0)+-1|0)|0)==(ka+wa|0)){Pc(e);Ea=f[v>>2]|0;Fa=f[l>>2]|0;Ga=f[o>>2]|0;Ha=f[t>>2]|0}else{Ea=wa;Fa=ka;Ga=la;Ha=ba}ba=Fa+Ea|0;if((Ga|0)==(Ha|0))Ia=0;else Ia=(f[Ha+(((ba>>>0)/113|0)<<2)>>2]|0)+(((ba>>>0)%113|0)*36|0)|0;f[Ia>>2]=na;f[Ia+4>>2]=i;f[Ia+8>>2]=aa;f[Ia+12>>2]=W;ba=Ia+16|0;f[ba>>2]=p;f[ba+4>>2]=q;f[Ia+24>>2]=V;f[Ia+28>>2]=ca;f[Ia+32>>2]=$;ba=(f[l>>2]|0)+1|0;f[l>>2]=ba;Ja=ba}else fa=99}else fa=99;while(0);if((fa|0)==99){fa=0;Ja=f[l>>2]|0}if(!Ja)break;else Q=Ja}}Ja=f[t>>2]|0;Q=f[v>>2]|0;Ia=Ja+(((Q>>>0)/113|0)<<2)|0;q=f[o>>2]|0;p=q;i=Ja;if((q|0)==(Ja|0)){Ka=0;La=0}else{na=(f[Ia>>2]|0)+(((Q>>>0)%113|0)*36|0)|0;Ka=na;La=na}na=Ia;Ia=La;c:while(1){La=Ia;do{Q=La;if((Ka|0)==(Q|0))break c;La=Q+36|0}while((La-(f[na>>2]|0)|0)!=4068);La=na+4|0;na=La;Ia=f[La>>2]|0}f[l>>2]=0;l=p-i>>2;if(l>>>0>2){i=Ja;do{Oq(f[i>>2]|0);i=(f[t>>2]|0)+4|0;f[t>>2]=i;Ma=f[o>>2]|0;Na=Ma-i>>2}while(Na>>>0>2);Oa=Na;Pa=i;Qa=Ma}else{Oa=l;Pa=Ja;Qa=q}switch(Oa|0){case 1:{Ra=56;fa=113;break}case 2:{Ra=113;fa=113;break}default:{}}if((fa|0)==113)f[v>>2]=Ra;if((Pa|0)!=(Qa|0)){Ra=Pa;do{Oq(f[Ra>>2]|0);Ra=Ra+4|0}while((Ra|0)!=(Qa|0));Qa=f[t>>2]|0;t=f[o>>2]|0;if((t|0)!=(Qa|0))f[o>>2]=t+(~((t+-4-Qa|0)>>>2)<<2)}Qa=f[e>>2]|0;if(!Qa){u=d;return}Oq(Qa);u=d;return}function ib(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0,Ma=0,Na=0;d=u;u=u+48|0;e=d+36|0;g=d+24|0;h=d;i=a+8|0;j=f[i>>2]|0;f[e>>2]=0;k=e+4|0;f[k>>2]=0;f[e+8>>2]=0;do if(j)if(j>>>0>1073741823)aq(e);else{l=j<<2;m=ln(l)|0;f[e>>2]=m;n=m+(j<<2)|0;f[e+8>>2]=n;sj(m|0,0,l|0)|0;f[k>>2]=n;o=n;p=m;break}else{o=0;p=0}while(0);m=a+1164|0;n=f[m>>2]|0;l=f[n>>2]|0;q=n+4|0;if(!l){r=n+8|0;s=p;t=o;v=j}else{j=f[q>>2]|0;if((j|0)!=(l|0))f[q>>2]=j+(~((j+-4-l|0)>>>2)<<2);Oq(l);l=n+8|0;f[l>>2]=0;f[q>>2]=0;f[n>>2]=0;r=l;s=f[e>>2]|0;t=f[k>>2]|0;v=f[i>>2]|0}f[n>>2]=s;f[q>>2]=t;f[r>>2]=f[e+8>>2];f[e>>2]=0;r=e+4|0;f[r>>2]=0;f[e+8>>2]=0;do if(v)if(v>>>0>1073741823)aq(e);else{t=v<<2;q=ln(t)|0;f[e>>2]=q;s=q+(v<<2)|0;f[e+8>>2]=s;sj(q|0,0,t|0)|0;f[r>>2]=s;w=s;x=q;break}else{w=0;x=0}while(0);v=a+1176|0;q=f[v>>2]|0;s=f[q>>2]|0;t=q+4|0;if(!s){y=q+8|0;z=x;A=w}else{w=f[t>>2]|0;if((w|0)!=(s|0))f[t>>2]=w+(~((w+-4-s|0)>>>2)<<2);Oq(s);s=q+8|0;f[s>>2]=0;f[t>>2]=0;f[q>>2]=0;y=s;z=f[e>>2]|0;A=f[r>>2]|0}f[q>>2]=z;f[t>>2]=A;f[y>>2]=f[e+8>>2];y=f[b>>2]|0;A=b+4|0;t=f[A>>2]|0;z=f[A+4>>2]|0;A=f[c>>2]|0;q=c+4|0;r=f[q>>2]|0;s=f[q+4>>2]|0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;f[h+12>>2]=0;f[h+16>>2]=0;f[h+20>>2]=0;q=h+8|0;w=h+4|0;x=h+16|0;n=h+20|0;k=t;Pc(h);l=f[w>>2]|0;j=(f[n>>2]|0)+(f[x>>2]|0)|0;if((f[q>>2]|0)==(l|0))B=0;else B=(f[l+(((j>>>0)/113|0)<<2)>>2]|0)+(((j>>>0)%113|0)*36|0)|0;f[B>>2]=y;j=B+4|0;f[j>>2]=t;f[j+4>>2]=z;f[B+12>>2]=A;j=B+16|0;f[j>>2]=r;f[j+4>>2]=s;f[B+24>>2]=0;f[B+28>>2]=A-y;f[B+32>>2]=0;B=(f[n>>2]|0)+1|0;f[n>>2]=B;if(B|0){y=a+1152|0;A=a+1084|0;j=a+1080|0;l=a+1072|0;o=a+1076|0;p=a+1068|0;C=b+8|0;D=c+8|0;E=a+1124|0;F=a+1120|0;G=a+1112|0;H=a+1116|0;I=a+1108|0;J=k+4|0;K=k+24|0;L=k+24|0;M=r+24|0;N=B;while(1){B=f[x>>2]|0;O=N+-1|0;P=O+B|0;Q=f[w>>2]|0;R=f[Q+(((P>>>0)/113|0)<<2)>>2]|0;S=(P>>>0)%113|0;P=f[R+(S*36|0)>>2]|0;T=f[R+(S*36|0)+12>>2]|0;U=f[R+(S*36|0)+24>>2]|0;V=f[R+(S*36|0)+32>>2]|0;f[n>>2]=O;O=f[q>>2]|0;S=O-Q>>2;if((1-N-B+((S|0)==0?0:(S*113|0)+-1|0)|0)>>>0>225){Oq(f[O+-4>>2]|0);f[q>>2]=(f[q>>2]|0)+-4}f[b>>2]=P;f[c>>2]=T;O=f[m>>2]|0;S=O+(V*12|0)|0;B=(f[v>>2]|0)+(V*12|0)|0;f[g>>2]=f[b>>2];f[g+4>>2]=f[b+4>>2];f[g+8>>2]=f[b+8>>2];f[e>>2]=f[c>>2];f[e+4>>2]=f[c+4>>2];f[e+8>>2]=f[c+8>>2];Q=Rd(a,g,e,S,B,U)|0;U=T-P|0;R=(f[a>>2]|0)-(f[(f[B>>2]|0)+(Q<<2)>>2]|0)|0;a:do if(R){if(U>>>0<3){W=f[y>>2]|0;f[W>>2]=Q;Y=f[i>>2]|0;if(Y>>>0>1){Z=1;$=Y;aa=Q;while(1){aa=(aa|0)==($+-1|0)?0:aa+1|0;f[W+(Z<<2)>>2]=aa;Z=Z+1|0;ba=f[i>>2]|0;if(Z>>>0>=ba>>>0){ca=ba;break}else $=ba}}else ca=Y;if(!U){da=87;break}else{ea=0;fa=ca}while(1){$=(f[K>>2]|0)+((X(f[J>>2]|0,P+ea|0)|0)<<2)|0;if(!fa)ga=0;else{Z=0;do{aa=f[(f[y>>2]|0)+(Z<<2)>>2]|0;W=(f[a>>2]|0)-(f[(f[B>>2]|0)+(aa<<2)>>2]|0)|0;do if(W|0){ba=f[A>>2]|0;ha=32-ba|0;ia=32-W|0;ja=f[$+(aa<<2)>>2]<<ia;if((W|0)>(ha|0)){ka=ja>>>ia;ia=W-ha|0;f[A>>2]=ia;ha=f[j>>2]|ka>>>ia;f[j>>2]=ha;ia=f[l>>2]|0;if((ia|0)==(f[o>>2]|0))Ri(p,j);else{f[ia>>2]=ha;f[l>>2]=ia+4}f[j>>2]=ka<<32-(f[A>>2]|0);break}ka=f[j>>2]|ja>>>ba;f[j>>2]=ka;ja=ba+W|0;f[A>>2]=ja;if((ja|0)!=32)break;ja=f[l>>2]|0;if((ja|0)==(f[o>>2]|0))Ri(p,j);else{f[ja>>2]=ka;f[l>>2]=ja+4}f[j>>2]=0;f[A>>2]=0}while(0);Z=Z+1|0;W=f[i>>2]|0}while(Z>>>0<W>>>0);ga=W}ea=ea+1|0;if(ea>>>0>=U>>>0){da=87;break a}else fa=ga}}Y=V+1|0;Z=f[m>>2]|0;$=Z+(Y*12|0)|0;if(($|0)==(S|0))la=Z;else{Ig($,f[S>>2]|0,f[O+(V*12|0)+4>>2]|0);la=f[m>>2]|0}$=(f[la+(Y*12|0)>>2]|0)+(Q<<2)|0;Z=(f[$>>2]|0)+(1<<R+-1)|0;f[$>>2]=Z;$=f[C>>2]|0;W=f[D>>2]|0;b:do if((T|0)==(P|0))ma=P;else{aa=f[L>>2]|0;if(!$){if((f[aa+(Q<<2)>>2]|0)>>>0<Z>>>0){ma=T;break}else{na=T;oa=P}while(1){ja=na;do{ja=ja+-1|0;if((oa|0)==(ja|0)){ma=oa;break b}ka=(f[M>>2]|0)+((X(ja,W)|0)<<2)+(Q<<2)|0}while((f[ka>>2]|0)>>>0>=Z>>>0);oa=oa+1|0;if((oa|0)==(ja|0)){ma=ja;break b}else na=ja}}else{pa=T;qa=P}while(1){ka=qa;while(1){ra=aa+((X(ka,$)|0)<<2)|0;if((f[ra+(Q<<2)>>2]|0)>>>0>=Z>>>0){sa=pa;break}ba=ka+1|0;if((ba|0)==(pa|0)){ma=pa;break b}else ka=ba}while(1){sa=sa+-1|0;if((ka|0)==(sa|0)){ma=ka;break b}ta=(f[M>>2]|0)+((X(sa,W)|0)<<2)|0;if((f[ta+(Q<<2)>>2]|0)>>>0<Z>>>0){ua=0;break}}do{ja=ra+(ua<<2)|0;ba=ta+(ua<<2)|0;ia=f[ja>>2]|0;f[ja>>2]=f[ba>>2];f[ba>>2]=ia;ua=ua+1|0}while((ua|0)!=($|0));qa=ka+1|0;if((qa|0)==(sa|0)){ma=sa;break}else pa=sa}}while(0);Z=(_(U|0)|0)^31;W=ma-P|0;aa=T-ma|0;ia=W>>>0<aa>>>0;if((W|0)!=(aa|0)){ba=f[E>>2]|0;if(ia)f[F>>2]=f[F>>2]|1<<31-ba;ja=ba+1|0;f[E>>2]=ja;if((ja|0)==32){ja=f[G>>2]|0;if((ja|0)==(f[H>>2]|0))Ri(I,F);else{f[ja>>2]=f[F>>2];f[G>>2]=ja+4}f[E>>2]=0;f[F>>2]=0}}ja=U>>>1;if(ia){ia=ja-W|0;if(Z|0){ba=0;ha=1<<Z+-1;while(1){fj(a+12+(ba<<5)|0,(ha&ia|0)!=0);ba=ba+1|0;if((ba|0)==(Z|0))break;else ha=ha>>>1}}}else{ha=ja-aa|0;if(Z|0){ba=0;ia=1<<Z+-1;while(1){fj(a+12+(ba<<5)|0,(ia&ha|0)!=0);ba=ba+1|0;if((ba|0)==(Z|0))break;else ia=ia>>>1}}}ia=f[v>>2]|0;Z=f[ia+(V*12|0)>>2]|0;ba=Z+(Q<<2)|0;f[ba>>2]=(f[ba>>2]|0)+1;Ig(ia+(Y*12|0)|0,Z,f[ia+(V*12|0)+4>>2]|0);if((ma|0)!=(P|0)){ia=f[q>>2]|0;Z=f[w>>2]|0;ba=ia-Z>>2;ha=f[x>>2]|0;ja=f[n>>2]|0;if((((ba|0)==0?0:(ba*113|0)+-1|0)|0)==(ja+ha|0)){Pc(h);va=f[x>>2]|0;wa=f[n>>2]|0;xa=f[q>>2]|0;ya=f[w>>2]|0}else{va=ha;wa=ja;xa=ia;ya=Z}Z=wa+va|0;if((xa|0)==(ya|0))za=0;else za=(f[ya+(((Z>>>0)/113|0)<<2)>>2]|0)+(((Z>>>0)%113|0)*36|0)|0;f[za>>2]=P;Z=za+4|0;f[Z>>2]=t;f[Z+4>>2]=z;f[za+12>>2]=ma;f[za+16>>2]=k;f[za+20>>2]=$;f[za+24>>2]=Q;f[za+28>>2]=W;f[za+32>>2]=V;f[n>>2]=(f[n>>2]|0)+1}if((T|0)!=(ma|0)){Z=f[q>>2]|0;ia=f[w>>2]|0;ja=Z-ia>>2;ha=f[x>>2]|0;ba=f[n>>2]|0;if((((ja|0)==0?0:(ja*113|0)+-1|0)|0)==(ba+ha|0)){Pc(h);Aa=f[x>>2]|0;Ba=f[n>>2]|0;Ca=f[q>>2]|0;Da=f[w>>2]|0}else{Aa=ha;Ba=ba;Ca=Z;Da=ia}ia=Ba+Aa|0;if((Ca|0)==(Da|0))Ea=0;else Ea=(f[Da+(((ia>>>0)/113|0)<<2)>>2]|0)+(((ia>>>0)%113|0)*36|0)|0;f[Ea>>2]=ma;f[Ea+4>>2]=k;f[Ea+8>>2]=$;f[Ea+12>>2]=T;ia=Ea+16|0;f[ia>>2]=r;f[ia+4>>2]=s;f[Ea+24>>2]=Q;f[Ea+28>>2]=aa;f[Ea+32>>2]=Y;ia=(f[n>>2]|0)+1|0;f[n>>2]=ia;Fa=ia}else da=87}else da=87;while(0);if((da|0)==87){da=0;Fa=f[n>>2]|0}if(!Fa)break;else N=Fa}}Fa=f[w>>2]|0;N=f[x>>2]|0;Ea=Fa+(((N>>>0)/113|0)<<2)|0;s=f[q>>2]|0;r=s;k=Fa;if((s|0)==(Fa|0)){Ga=0;Ha=0}else{ma=(f[Ea>>2]|0)+(((N>>>0)%113|0)*36|0)|0;Ga=ma;Ha=ma}ma=Ea;Ea=Ha;c:while(1){Ha=Ea;do{N=Ha;if((Ga|0)==(N|0))break c;Ha=N+36|0}while((Ha-(f[ma>>2]|0)|0)!=4068);Ha=ma+4|0;ma=Ha;Ea=f[Ha>>2]|0}f[n>>2]=0;n=r-k>>2;if(n>>>0>2){k=Fa;do{Oq(f[k>>2]|0);k=(f[w>>2]|0)+4|0;f[w>>2]=k;Ia=f[q>>2]|0;Ja=Ia-k>>2}while(Ja>>>0>2);Ka=Ja;La=k;Ma=Ia}else{Ka=n;La=Fa;Ma=s}switch(Ka|0){case 1:{Na=56;da=101;break}case 2:{Na=113;da=101;break}default:{}}if((da|0)==101)f[x>>2]=Na;if((La|0)!=(Ma|0)){Na=La;do{Oq(f[Na>>2]|0);Na=Na+4|0}while((Na|0)!=(Ma|0));Ma=f[w>>2]|0;w=f[q>>2]|0;if((w|0)!=(Ma|0))f[q>>2]=w+(~((w+-4-Ma|0)>>>2)<<2)}Ma=f[h>>2]|0;if(!Ma){u=d;return}Oq(Ma);u=d;return}function jb(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0;d=u;u=u+1424|0;e=d+1408|0;g=d+1396|0;h=d+1420|0;i=d+1200|0;j=d+12|0;k=d;l=d+1384|0;m=d+1372|0;n=d+1360|0;o=d+1348|0;p=d+1336|0;q=d+1324|0;r=d+1312|0;s=d+1300|0;t=d+1288|0;v=d+1276|0;w=d+1264|0;x=d+1252|0;y=d+1240|0;z=d+1228|0;A=a+28|0;B=10-(mi(f[(f[A>>2]|0)+48>>2]|0)|0)|0;C=(B|0)<6?B:6;b[h>>0]=C;if((C&255|0)==6?(f[a+72>>2]|0)>15:0)b[h>>0]=5;C=c+16|0;B=f[C+4>>2]|0;if(!((B|0)>0|(B|0)==0&(f[C>>2]|0)>>>0>0)){f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+1|0)|0}C=f[A>>2]|0;B=f[(f[C+4>>2]|0)+80>>2]|0;D=a+72|0;E=f[D>>2]|0;f[i>>2]=B;F=i+4|0;f[F>>2]=E;f[i+8>>2]=E<<2;G=i+12|0;H=X(E,B)|0;f[G>>2]=0;J=i+16|0;f[J>>2]=0;f[i+20>>2]=0;do if(H)if(H>>>0>1073741823)aq(G);else{K=H<<2;L=ln(K)|0;f[G>>2]=L;M=L+(H<<2)|0;f[i+20>>2]=M;sj(L|0,0,K|0)|0;f[J>>2]=M;N=L;break}else N=0;while(0);H=i+24|0;f[H>>2]=N;G=a+4|0;L=a+8|0;M=f[G>>2]|0;a:do if((f[L>>2]|0)!=(M|0)){K=j+4|0;O=j+8|0;P=j+8|0;Q=(B|0)==0;R=j+4|0;S=j+8|0;T=k+4|0;U=k+8|0;V=k+8|0;W=a+48|0;Y=j+8|0;Z=a+60|0;$=0;aa=0;ba=0;ca=0;da=M;ea=C;b:while(1){fa=f[(f[(f[ea+4>>2]|0)+8>>2]|0)+(f[da+(ca<<2)>>2]<<2)>>2]|0;switch(f[fa+28>>2]|0){case 1:case 3:case 5:case 2:case 4:case 6:{ga=fa;ha=aa;break}case 9:{ga=f[(f[Z>>2]|0)+(aa<<2)>>2]|0;ha=aa+1|0;break}default:{ia=0;break a}}if(!ga){ia=0;break a}c:do switch(f[ga+28>>2]|0){case 6:{if(Q){ja=ba;ka=ga+24|0;break c}fa=ga+84|0;la=ga+68|0;ma=ga+48|0;na=ga+40|0;oa=ga+24|0;pa=0;do{if(!(b[fa>>0]|0))qa=f[(f[la>>2]|0)+(pa<<2)>>2]|0;else qa=pa;ra=ma;sa=f[ra>>2]|0;ta=f[ra+4>>2]|0;ra=na;ua=un(f[ra>>2]|0,f[ra+4>>2]|0,qa|0,0)|0;ra=Vn(ua|0,I|0,sa|0,ta|0)|0;kh((f[H>>2]|0)+((X(f[F>>2]|0,pa)|0)<<2)+($<<2)|0,(f[f[ga>>2]>>2]|0)+ra|0,b[oa>>0]<<2|0)|0;pa=pa+1|0}while((pa|0)!=(B|0));ja=ba;ka=oa;break}case 1:case 3:case 5:{oa=ga+24|0;pa=b[oa>>0]|0;na=pa<<24>>24;f[j>>2]=0;f[R>>2]=0;f[S>>2]=0;if(!(pa<<24>>24))va=0;else{if(pa<<24>>24<0){wa=24;break b}pa=na<<2;ma=ln(pa)|0;f[j>>2]=ma;la=ma+(na<<2)|0;f[Y>>2]=la;sj(ma|0,0,pa|0)|0;f[R>>2]=la;va=b[oa>>0]|0}la=va<<24>>24;f[k>>2]=0;f[T>>2]=0;f[U>>2]=0;if(!(va<<24>>24)){xa=0;ya=0}else{if(va<<24>>24<0){wa=30;break b}pa=la<<2;ma=ln(pa)|0;f[k>>2]=ma;na=ma+(la<<2)|0;f[V>>2]=na;sj(ma|0,0,pa|0)|0;f[T>>2]=na;xa=ma;ya=ma}if(Q){za=ya;Aa=xa}else{ma=ga+84|0;na=ga+68|0;pa=0;do{if(!(b[ma>>0]|0))Ba=f[(f[na>>2]|0)+(pa<<2)>>2]|0;else Ba=pa;la=f[j>>2]|0;f[g>>2]=Ba;fa=b[oa>>0]|0;f[e>>2]=f[g>>2];Qb(ga,e,fa,la)|0;la=b[oa>>0]|0;fa=la<<24>>24;if(la<<24>>24>0){la=f[j>>2]|0;ra=f[W>>2]|0;ta=f[k>>2]|0;sa=0;do{f[ta+(sa<<2)>>2]=(f[la+(sa<<2)>>2]|0)-(f[ra+(sa+ba<<2)>>2]|0);sa=sa+1|0}while((sa|0)<(fa|0));Ca=ta}else Ca=f[k>>2]|0;kh((f[H>>2]|0)+((X(f[F>>2]|0,pa)|0)<<2)+($<<2)|0,Ca|0,fa<<2|0)|0;pa=pa+1|0}while(pa>>>0<B>>>0);pa=f[k>>2]|0;za=pa;Aa=pa}pa=ba+(b[oa>>0]|0)|0;if(za|0){na=f[T>>2]|0;if((na|0)!=(za|0))f[T>>2]=na+(~((na+-4-za|0)>>>2)<<2);Oq(Aa)}na=f[j>>2]|0;if(na|0){ma=f[R>>2]|0;if((ma|0)!=(na|0))f[R>>2]=ma+(~((ma+-4-na|0)>>>2)<<2);Oq(na)}ja=pa;ka=oa;break}default:{pa=ga+24|0;na=b[pa>>0]|0;ma=na<<24>>24;f[j>>2]=0;f[K>>2]=0;f[O>>2]=0;if(!(na<<24>>24)){Da=0;Ea=0}else{if(na<<24>>24<0){wa=53;break b}na=ma<<2;ta=ln(na)|0;f[j>>2]=ta;sa=ta+(ma<<2)|0;f[P>>2]=sa;sj(ta|0,0,na|0)|0;f[K>>2]=sa;Da=ta;Ea=ta}if(Q){Fa=Ea;Ga=Da}else{ta=ga+84|0;sa=ga+68|0;na=0;do{if(!(b[ta>>0]|0))Ha=f[(f[sa>>2]|0)+(na<<2)>>2]|0;else Ha=na;ma=f[j>>2]|0;f[g>>2]=Ha;ra=b[pa>>0]|0;f[e>>2]=f[g>>2];Pb(ga,e,ra,ma)|0;kh((f[H>>2]|0)+((X(f[F>>2]|0,na)|0)<<2)+($<<2)|0,f[j>>2]|0,b[pa>>0]<<2|0)|0;na=na+1|0}while(na>>>0<B>>>0);na=f[j>>2]|0;Fa=na;Ga=na}if(Fa|0){na=f[K>>2]|0;if((na|0)!=(Fa|0))f[K>>2]=na+(~((na+-4-Fa|0)>>>2)<<2);Oq(Ga)}ja=ba;ka=pa}}while(0);na=ca+1|0;sa=f[G>>2]|0;if(na>>>0>=(f[L>>2]|0)-sa>>2>>>0){wa=66;break}$=$+(b[ka>>0]|0)|0;aa=ha;ba=ja;ca=na;da=sa;ea=f[A>>2]|0}if((wa|0)==24)aq(j);else if((wa|0)==30)aq(k);else if((wa|0)==53)aq(j);else if((wa|0)==66){Ia=f[D>>2]|0;Ja=f[H>>2]|0;wa=67;break}}else{Ia=E;Ja=N;wa=67}while(0);d:do if((wa|0)==67){N=X(Ia,B)|0;if((N|0)>0){E=0;H=0;while(1){D=f[Ja+(E<<2)>>2]|0;if(!D)Ka=H;else{A=(_(D|0)|0)^31;Ka=(A|0)<(H|0)?H:A+1|0}E=E+1|0;if((E|0)>=(N|0)){La=Ka;break}else H=Ka}}else La=0;switch(b[h>>0]|0){case 6:{Ue(j,Ia);f[l>>2]=0;f[l+4>>2]=i;H=f[F>>2]|0;f[l+8>>2]=H;f[m>>2]=f[i>>2];f[m+4>>2]=i;f[m+8>>2]=H;f[k>>2]=La;f[g>>2]=f[l>>2];f[g+4>>2]=f[l+4>>2];f[g+8>>2]=f[l+8>>2];f[e>>2]=f[m>>2];f[e+4>>2]=f[m+4>>2];f[e+8>>2]=f[m+8>>2];H=sf(j,g,e,k,c)|0;Se(j);if(!H){ia=0;break d}break}case 5:{Ue(j,Ia);f[n>>2]=0;f[n+4>>2]=i;H=f[F>>2]|0;f[n+8>>2]=H;f[o>>2]=f[i>>2];f[o+4>>2]=i;f[o+8>>2]=H;f[k>>2]=La;f[g>>2]=f[n>>2];f[g+4>>2]=f[n+4>>2];f[g+8>>2]=f[n+8>>2];f[e>>2]=f[o>>2];f[e+4>>2]=f[o+4>>2];f[e+8>>2]=f[o+8>>2];H=tf(j,g,e,k,c)|0;Se(j);if(!H){ia=0;break d}break}case 4:{Ue(j,Ia);f[p>>2]=0;f[p+4>>2]=i;H=f[F>>2]|0;f[p+8>>2]=H;f[q>>2]=f[i>>2];f[q+4>>2]=i;f[q+8>>2]=H;f[k>>2]=La;f[g>>2]=f[p>>2];f[g+4>>2]=f[p+4>>2];f[g+8>>2]=f[p+8>>2];f[e>>2]=f[q>>2];f[e+4>>2]=f[q+4>>2];f[e+8>>2]=f[q+8>>2];H=tf(j,g,e,k,c)|0;Se(j);if(!H){ia=0;break d}break}case 3:{$e(j,Ia);f[r>>2]=0;f[r+4>>2]=i;H=f[F>>2]|0;f[r+8>>2]=H;f[s>>2]=f[i>>2];f[s+4>>2]=i;f[s+8>>2]=H;f[k>>2]=La;f[g>>2]=f[r>>2];f[g+4>>2]=f[r+4>>2];f[g+8>>2]=f[r+8>>2];f[e>>2]=f[s>>2];f[e+4>>2]=f[s+4>>2];f[e+8>>2]=f[s+8>>2];H=Af(j,g,e,k,c)|0;ef(j);if(!H){ia=0;break d}break}case 2:{$e(j,Ia);f[t>>2]=0;f[t+4>>2]=i;H=f[F>>2]|0;f[t+8>>2]=H;f[v>>2]=f[i>>2];f[v+4>>2]=i;f[v+8>>2]=H;f[k>>2]=La;f[g>>2]=f[t>>2];f[g+4>>2]=f[t+4>>2];f[g+8>>2]=f[t+8>>2];f[e>>2]=f[v>>2];f[e+4>>2]=f[v+4>>2];f[e+8>>2]=f[v+8>>2];H=Af(j,g,e,k,c)|0;ef(j);if(!H){ia=0;break d}break}case 1:{af(j,Ia);f[w>>2]=0;f[w+4>>2]=i;H=f[F>>2]|0;f[w+8>>2]=H;f[x>>2]=f[i>>2];f[x+4>>2]=i;f[x+8>>2]=H;f[k>>2]=La;f[g>>2]=f[w>>2];f[g+4>>2]=f[w+4>>2];f[g+8>>2]=f[w+8>>2];f[e>>2]=f[x>>2];f[e+4>>2]=f[x+4>>2];f[e+8>>2]=f[x+8>>2];H=zf(j,g,e,k,c)|0;df(j);if(!H){ia=0;break d}break}case 0:{af(j,Ia);f[y>>2]=0;f[y+4>>2]=i;H=f[F>>2]|0;f[y+8>>2]=H;f[z>>2]=f[i>>2];f[z+4>>2]=i;f[z+8>>2]=H;f[k>>2]=La;f[g>>2]=f[y>>2];f[g+4>>2]=f[y+4>>2];f[g+8>>2]=f[y+8>>2];f[e>>2]=f[z>>2];f[e+4>>2]=f[z+4>>2];f[e+8>>2]=f[z+8>>2];H=zf(j,g,e,k,c)|0;df(j);if(!H){ia=0;break d}break}default:{ia=0;break d}}ia=1}while(0);j=f[i+12>>2]|0;if(!j){u=d;return ia|0}i=f[J>>2]|0;if((i|0)!=(j|0))f[J>>2]=i+(~((i+-4-j|0)>>>2)<<2);Oq(j);u=d;return ia|0}function kb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0;d=u;u=u+32|0;e=d;g=a+8|0;h=f[g>>2]|0;f[e>>2]=0;i=e+4|0;f[i>>2]=0;f[e+8>>2]=0;do if(h)if(h>>>0>1073741823)aq(e);else{j=h<<2;k=ln(j)|0;f[e>>2]=k;l=k+(h<<2)|0;f[e+8>>2]=l;sj(k|0,0,j|0)|0;f[i>>2]=l;m=l;n=k;break}else{m=0;n=0}while(0);k=a+1164|0;l=f[k>>2]|0;j=f[l>>2]|0;o=l+4|0;if(!j){p=l+8|0;q=n;r=m;s=h}else{h=f[o>>2]|0;if((h|0)!=(j|0))f[o>>2]=h+(~((h+-4-j|0)>>>2)<<2);Oq(j);j=l+8|0;f[j>>2]=0;f[o>>2]=0;f[l>>2]=0;p=j;q=f[e>>2]|0;r=f[i>>2]|0;s=f[g>>2]|0}f[l>>2]=q;f[o>>2]=r;f[p>>2]=f[e+8>>2];f[e>>2]=0;p=e+4|0;f[p>>2]=0;f[e+8>>2]=0;do if(s)if(s>>>0>1073741823)aq(e);else{r=s<<2;o=ln(r)|0;f[e>>2]=o;q=o+(s<<2)|0;f[e+8>>2]=q;sj(o|0,0,r|0)|0;f[p>>2]=q;t=q;v=o;break}else{t=0;v=0}while(0);s=a+1176|0;o=f[s>>2]|0;q=f[o>>2]|0;r=o+4|0;if(!q){w=o+8|0;x=v;y=t}else{t=f[r>>2]|0;if((t|0)!=(q|0))f[r>>2]=t+(~((t+-4-q|0)>>>2)<<2);Oq(q);q=o+8|0;f[q>>2]=0;f[r>>2]=0;f[o>>2]=0;w=q;x=f[e>>2]|0;y=f[p>>2]|0}f[o>>2]=x;f[r>>2]=y;f[w>>2]=f[e+8>>2];w=f[b>>2]|0;y=b+4|0;r=f[y>>2]|0;x=f[y+4>>2]|0;y=f[c>>2]|0;o=c+4|0;p=f[o>>2]|0;q=f[o+4>>2]|0;f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;f[e+12>>2]=0;f[e+16>>2]=0;f[e+20>>2]=0;o=e+8|0;t=e+4|0;v=e+16|0;l=e+20|0;i=r;Pc(e);j=f[t>>2]|0;h=(f[l>>2]|0)+(f[v>>2]|0)|0;if((f[o>>2]|0)==(j|0))z=0;else z=(f[j+(((h>>>0)/113|0)<<2)>>2]|0)+(((h>>>0)%113|0)*36|0)|0;f[z>>2]=w;h=z+4|0;f[h>>2]=r;f[h+4>>2]=x;f[z+12>>2]=y;h=z+16|0;f[h>>2]=p;f[h+4>>2]=q;f[z+24>>2]=0;f[z+28>>2]=y-w;f[z+32>>2]=0;z=(f[l>>2]|0)+1|0;f[l>>2]=z;if(z|0){w=a+1152|0;y=a+1084|0;h=a+1080|0;j=a+1072|0;m=a+1076|0;n=a+1068|0;A=b+8|0;B=c+8|0;C=a+1124|0;D=a+1120|0;E=a+1112|0;F=a+1116|0;G=a+1108|0;H=i+4|0;I=i+24|0;J=i+24|0;K=p+24|0;L=z;while(1){z=f[v>>2]|0;M=L+-1|0;N=M+z|0;O=f[t>>2]|0;P=f[O+(((N>>>0)/113|0)<<2)>>2]|0;Q=(N>>>0)%113|0;N=f[P+(Q*36|0)>>2]|0;R=f[P+(Q*36|0)+12>>2]|0;S=f[P+(Q*36|0)+24>>2]|0;T=f[P+(Q*36|0)+32>>2]|0;f[l>>2]=M;M=f[o>>2]|0;Q=M-O>>2;if((1-L-z+((Q|0)==0?0:(Q*113|0)+-1|0)|0)>>>0>225){Oq(f[M+-4>>2]|0);f[o>>2]=(f[o>>2]|0)+-4}f[b>>2]=N;f[c>>2]=R;M=f[k>>2]|0;Q=((f[g>>2]|0)+-1|0)==(S|0)?0:S+1|0;S=(f[s>>2]|0)+(T*12|0)|0;z=R-N|0;O=(f[a>>2]|0)-(f[(f[S>>2]|0)+(Q<<2)>>2]|0)|0;a:do if(O){if(z>>>0<3){P=f[w>>2]|0;f[P>>2]=Q;U=f[g>>2]|0;if(U>>>0>1){V=1;W=U;Y=Q;while(1){Y=(Y|0)==(W+-1|0)?0:Y+1|0;f[P+(V<<2)>>2]=Y;V=V+1|0;Z=f[g>>2]|0;if(V>>>0>=Z>>>0){$=Z;break}else W=Z}}else $=U;if(!z){aa=85;break}else{ba=0;ca=$}while(1){W=(f[I>>2]|0)+((X(f[H>>2]|0,N+ba|0)|0)<<2)|0;if(!ca)da=0;else{V=0;do{Y=f[(f[w>>2]|0)+(V<<2)>>2]|0;P=(f[a>>2]|0)-(f[(f[S>>2]|0)+(Y<<2)>>2]|0)|0;do if(P|0){Z=f[y>>2]|0;ea=32-Z|0;fa=32-P|0;ga=f[W+(Y<<2)>>2]<<fa;if((P|0)>(ea|0)){ha=ga>>>fa;fa=P-ea|0;f[y>>2]=fa;ea=f[h>>2]|ha>>>fa;f[h>>2]=ea;fa=f[j>>2]|0;if((fa|0)==(f[m>>2]|0))Ri(n,h);else{f[fa>>2]=ea;f[j>>2]=fa+4}f[h>>2]=ha<<32-(f[y>>2]|0);break}ha=f[h>>2]|ga>>>Z;f[h>>2]=ha;ga=Z+P|0;f[y>>2]=ga;if((ga|0)!=32)break;ga=f[j>>2]|0;if((ga|0)==(f[m>>2]|0))Ri(n,h);else{f[ga>>2]=ha;f[j>>2]=ga+4}f[h>>2]=0;f[y>>2]=0}while(0);V=V+1|0;P=f[g>>2]|0}while(V>>>0<P>>>0);da=P}ba=ba+1|0;if(ba>>>0>=z>>>0){aa=85;break a}else ca=da}}U=T+1|0;Ig(M+(U*12|0)|0,f[M+(T*12|0)>>2]|0,f[M+(T*12|0)+4>>2]|0);V=(f[(f[k>>2]|0)+(U*12|0)>>2]|0)+(Q<<2)|0;W=(f[V>>2]|0)+(1<<O+-1)|0;f[V>>2]=W;V=f[A>>2]|0;P=f[B>>2]|0;b:do if((R|0)==(N|0))ia=N;else{Y=f[J>>2]|0;if(!V){if((f[Y+(Q<<2)>>2]|0)>>>0<W>>>0){ia=R;break}else{ja=R;ka=N}while(1){ga=ja;do{ga=ga+-1|0;if((ka|0)==(ga|0)){ia=ka;break b}ha=(f[K>>2]|0)+((X(ga,P)|0)<<2)+(Q<<2)|0}while((f[ha>>2]|0)>>>0>=W>>>0);ka=ka+1|0;if((ka|0)==(ga|0)){ia=ga;break b}else ja=ga}}else{la=R;ma=N}while(1){ha=ma;while(1){na=Y+((X(ha,V)|0)<<2)|0;if((f[na+(Q<<2)>>2]|0)>>>0>=W>>>0){oa=la;break}Z=ha+1|0;if((Z|0)==(la|0)){ia=la;break b}else ha=Z}while(1){oa=oa+-1|0;if((ha|0)==(oa|0)){ia=ha;break b}pa=(f[K>>2]|0)+((X(oa,P)|0)<<2)|0;if((f[pa+(Q<<2)>>2]|0)>>>0<W>>>0){qa=0;break}}do{ga=na+(qa<<2)|0;Z=pa+(qa<<2)|0;fa=f[ga>>2]|0;f[ga>>2]=f[Z>>2];f[Z>>2]=fa;qa=qa+1|0}while((qa|0)!=(V|0));ma=ha+1|0;if((ma|0)==(oa|0)){ia=oa;break}else la=oa}}while(0);W=(_(z|0)|0)^31;P=ia-N|0;Y=R-ia|0;fa=P>>>0<Y>>>0;if((P|0)!=(Y|0)){Z=f[C>>2]|0;if(fa)f[D>>2]=f[D>>2]|1<<31-Z;ga=Z+1|0;f[C>>2]=ga;if((ga|0)==32){ga=f[E>>2]|0;if((ga|0)==(f[F>>2]|0))Ri(G,D);else{f[ga>>2]=f[D>>2];f[E>>2]=ga+4}f[C>>2]=0;f[D>>2]=0}}ga=z>>>1;if(fa){fa=ga-P|0;if(W|0){Z=0;ea=1<<W+-1;while(1){fj(a+12+(Z<<5)|0,(ea&fa|0)!=0);Z=Z+1|0;if((Z|0)==(W|0))break;else ea=ea>>>1}}}else{ea=ga-Y|0;if(W|0){Z=0;fa=1<<W+-1;while(1){fj(a+12+(Z<<5)|0,(fa&ea|0)!=0);Z=Z+1|0;if((Z|0)==(W|0))break;else fa=fa>>>1}}}fa=f[s>>2]|0;W=f[fa+(T*12|0)>>2]|0;Z=W+(Q<<2)|0;f[Z>>2]=(f[Z>>2]|0)+1;Ig(fa+(U*12|0)|0,W,f[fa+(T*12|0)+4>>2]|0);if((ia|0)!=(N|0)){fa=f[o>>2]|0;W=f[t>>2]|0;Z=fa-W>>2;ea=f[v>>2]|0;ga=f[l>>2]|0;if((((Z|0)==0?0:(Z*113|0)+-1|0)|0)==(ga+ea|0)){Pc(e);ra=f[v>>2]|0;sa=f[l>>2]|0;ta=f[o>>2]|0;ua=f[t>>2]|0}else{ra=ea;sa=ga;ta=fa;ua=W}W=sa+ra|0;if((ta|0)==(ua|0))va=0;else va=(f[ua+(((W>>>0)/113|0)<<2)>>2]|0)+(((W>>>0)%113|0)*36|0)|0;f[va>>2]=N;W=va+4|0;f[W>>2]=r;f[W+4>>2]=x;f[va+12>>2]=ia;f[va+16>>2]=i;f[va+20>>2]=V;f[va+24>>2]=Q;f[va+28>>2]=P;f[va+32>>2]=T;f[l>>2]=(f[l>>2]|0)+1}if((R|0)!=(ia|0)){W=f[o>>2]|0;fa=f[t>>2]|0;ga=W-fa>>2;ea=f[v>>2]|0;Z=f[l>>2]|0;if((((ga|0)==0?0:(ga*113|0)+-1|0)|0)==(Z+ea|0)){Pc(e);wa=f[v>>2]|0;xa=f[l>>2]|0;ya=f[o>>2]|0;za=f[t>>2]|0}else{wa=ea;xa=Z;ya=W;za=fa}fa=xa+wa|0;if((ya|0)==(za|0))Aa=0;else Aa=(f[za+(((fa>>>0)/113|0)<<2)>>2]|0)+(((fa>>>0)%113|0)*36|0)|0;f[Aa>>2]=ia;f[Aa+4>>2]=i;f[Aa+8>>2]=V;f[Aa+12>>2]=R;fa=Aa+16|0;f[fa>>2]=p;f[fa+4>>2]=q;f[Aa+24>>2]=Q;f[Aa+28>>2]=Y;f[Aa+32>>2]=U;fa=(f[l>>2]|0)+1|0;f[l>>2]=fa;Ba=fa}else aa=85}else aa=85;while(0);if((aa|0)==85){aa=0;Ba=f[l>>2]|0}if(!Ba)break;else L=Ba}}Ba=f[t>>2]|0;L=f[v>>2]|0;Aa=Ba+(((L>>>0)/113|0)<<2)|0;q=f[o>>2]|0;p=q;i=Ba;if((q|0)==(Ba|0)){Ca=0;Da=0}else{ia=(f[Aa>>2]|0)+(((L>>>0)%113|0)*36|0)|0;Ca=ia;Da=ia}ia=Aa;Aa=Da;c:while(1){Da=Aa;do{L=Da;if((Ca|0)==(L|0))break c;Da=L+36|0}while((Da-(f[ia>>2]|0)|0)!=4068);Da=ia+4|0;ia=Da;Aa=f[Da>>2]|0}f[l>>2]=0;l=p-i>>2;if(l>>>0>2){i=Ba;do{Oq(f[i>>2]|0);i=(f[t>>2]|0)+4|0;f[t>>2]=i;Ea=f[o>>2]|0;Fa=Ea-i>>2}while(Fa>>>0>2);Ga=Fa;Ha=i;Ia=Ea}else{Ga=l;Ha=Ba;Ia=q}switch(Ga|0){case 1:{Ja=56;aa=99;break}case 2:{Ja=113;aa=99;break}default:{}}if((aa|0)==99)f[v>>2]=Ja;if((Ha|0)!=(Ia|0)){Ja=Ha;do{Oq(f[Ja>>2]|0);Ja=Ja+4|0}while((Ja|0)!=(Ia|0));Ia=f[t>>2]|0;t=f[o>>2]|0;if((t|0)!=(Ia|0))f[o>>2]=t+(~((t+-4-Ia|0)>>>2)<<2)}Ia=f[e>>2]|0;if(!Ia){u=d;return}Oq(Ia);u=d;return}function lb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0;d=u;u=u+32|0;e=d;g=a+8|0;h=f[g>>2]|0;f[e>>2]=0;i=e+4|0;f[i>>2]=0;f[e+8>>2]=0;do if(h)if(h>>>0>1073741823)aq(e);else{j=h<<2;k=ln(j)|0;f[e>>2]=k;l=k+(h<<2)|0;f[e+8>>2]=l;sj(k|0,0,j|0)|0;f[i>>2]=l;m=l;n=k;break}else{m=0;n=0}while(0);k=a+140|0;l=f[k>>2]|0;j=f[l>>2]|0;o=l+4|0;if(!j){p=l+8|0;q=n;r=m;s=h}else{h=f[o>>2]|0;if((h|0)!=(j|0))f[o>>2]=h+(~((h+-4-j|0)>>>2)<<2);Oq(j);j=l+8|0;f[j>>2]=0;f[o>>2]=0;f[l>>2]=0;p=j;q=f[e>>2]|0;r=f[i>>2]|0;s=f[g>>2]|0}f[l>>2]=q;f[o>>2]=r;f[p>>2]=f[e+8>>2];f[e>>2]=0;p=e+4|0;f[p>>2]=0;f[e+8>>2]=0;do if(s)if(s>>>0>1073741823)aq(e);else{r=s<<2;o=ln(r)|0;f[e>>2]=o;q=o+(s<<2)|0;f[e+8>>2]=q;sj(o|0,0,r|0)|0;f[p>>2]=q;t=q;v=o;break}else{t=0;v=0}while(0);s=a+152|0;o=f[s>>2]|0;q=f[o>>2]|0;r=o+4|0;if(!q){w=o+8|0;x=v;y=t}else{t=f[r>>2]|0;if((t|0)!=(q|0))f[r>>2]=t+(~((t+-4-q|0)>>>2)<<2);Oq(q);q=o+8|0;f[q>>2]=0;f[r>>2]=0;f[o>>2]=0;w=q;x=f[e>>2]|0;y=f[p>>2]|0}f[o>>2]=x;f[r>>2]=y;f[w>>2]=f[e+8>>2];w=f[b>>2]|0;y=b+4|0;r=f[y>>2]|0;x=f[y+4>>2]|0;y=f[c>>2]|0;o=c+4|0;p=f[o>>2]|0;q=f[o+4>>2]|0;f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;f[e+12>>2]=0;f[e+16>>2]=0;f[e+20>>2]=0;o=e+8|0;t=e+4|0;v=e+16|0;l=e+20|0;i=r;Pc(e);j=f[t>>2]|0;h=(f[l>>2]|0)+(f[v>>2]|0)|0;if((f[o>>2]|0)==(j|0))z=0;else z=(f[j+(((h>>>0)/113|0)<<2)>>2]|0)+(((h>>>0)%113|0)*36|0)|0;f[z>>2]=w;h=z+4|0;f[h>>2]=r;f[h+4>>2]=x;f[z+12>>2]=y;h=z+16|0;f[h>>2]=p;f[h+4>>2]=q;f[z+24>>2]=0;f[z+28>>2]=y-w;f[z+32>>2]=0;z=(f[l>>2]|0)+1|0;f[l>>2]=z;if(z|0){w=a+128|0;y=a+60|0;h=a+56|0;j=a+48|0;m=a+52|0;n=a+44|0;A=b+8|0;B=c+8|0;C=a+12|0;D=a+100|0;E=a+96|0;F=a+88|0;G=a+92|0;H=a+84|0;I=i+4|0;J=i+24|0;K=i+24|0;L=p+24|0;M=z;while(1){z=f[v>>2]|0;N=M+-1|0;O=N+z|0;P=f[t>>2]|0;Q=f[P+(((O>>>0)/113|0)<<2)>>2]|0;R=(O>>>0)%113|0;O=f[Q+(R*36|0)>>2]|0;S=f[Q+(R*36|0)+12>>2]|0;T=f[Q+(R*36|0)+24>>2]|0;U=f[Q+(R*36|0)+32>>2]|0;f[l>>2]=N;N=f[o>>2]|0;R=N-P>>2;if((1-M-z+((R|0)==0?0:(R*113|0)+-1|0)|0)>>>0>225){Oq(f[N+-4>>2]|0);f[o>>2]=(f[o>>2]|0)+-4}f[b>>2]=O;f[c>>2]=S;N=f[k>>2]|0;R=((f[g>>2]|0)+-1|0)==(T|0)?0:T+1|0;T=(f[s>>2]|0)+(U*12|0)|0;z=S-O|0;P=(f[a>>2]|0)-(f[(f[T>>2]|0)+(R<<2)>>2]|0)|0;a:do if(P){if(z>>>0<3){Q=f[w>>2]|0;f[Q>>2]=R;V=f[g>>2]|0;if(V>>>0>1){W=1;Y=V;Z=R;while(1){Z=(Z|0)==(Y+-1|0)?0:Z+1|0;f[Q+(W<<2)>>2]=Z;W=W+1|0;$=f[g>>2]|0;if(W>>>0>=$>>>0){aa=$;break}else Y=$}}else aa=V;if(!z){ba=81;break}else{ca=0;da=aa}while(1){Y=(f[J>>2]|0)+((X(f[I>>2]|0,O+ca|0)|0)<<2)|0;if(!da)ea=0;else{W=0;do{Z=f[(f[w>>2]|0)+(W<<2)>>2]|0;Q=(f[a>>2]|0)-(f[(f[T>>2]|0)+(Z<<2)>>2]|0)|0;do if(Q|0){$=f[y>>2]|0;fa=32-$|0;ga=32-Q|0;ha=f[Y+(Z<<2)>>2]<<ga;if((Q|0)>(fa|0)){ia=ha>>>ga;ga=Q-fa|0;f[y>>2]=ga;fa=f[h>>2]|ia>>>ga;f[h>>2]=fa;ga=f[j>>2]|0;if((ga|0)==(f[m>>2]|0))Ri(n,h);else{f[ga>>2]=fa;f[j>>2]=ga+4}f[h>>2]=ia<<32-(f[y>>2]|0);break}ia=f[h>>2]|ha>>>$;f[h>>2]=ia;ha=$+Q|0;f[y>>2]=ha;if((ha|0)!=32)break;ha=f[j>>2]|0;if((ha|0)==(f[m>>2]|0))Ri(n,h);else{f[ha>>2]=ia;f[j>>2]=ha+4}f[h>>2]=0;f[y>>2]=0}while(0);W=W+1|0;Q=f[g>>2]|0}while(W>>>0<Q>>>0);ea=Q}ca=ca+1|0;if(ca>>>0>=z>>>0){ba=81;break a}else da=ea}}V=U+1|0;Ig(N+(V*12|0)|0,f[N+(U*12|0)>>2]|0,f[N+(U*12|0)+4>>2]|0);W=(f[(f[k>>2]|0)+(V*12|0)>>2]|0)+(R<<2)|0;Y=(f[W>>2]|0)+(1<<P+-1)|0;f[W>>2]=Y;W=f[A>>2]|0;Q=f[B>>2]|0;b:do if((S|0)==(O|0))ja=O;else{Z=f[K>>2]|0;if(!W){if((f[Z+(R<<2)>>2]|0)>>>0<Y>>>0){ja=S;break}else{ka=S;la=O}while(1){ha=ka;do{ha=ha+-1|0;if((la|0)==(ha|0)){ja=la;break b}ia=(f[L>>2]|0)+((X(ha,Q)|0)<<2)+(R<<2)|0}while((f[ia>>2]|0)>>>0>=Y>>>0);la=la+1|0;if((la|0)==(ha|0)){ja=ha;break b}else ka=ha}}else{ma=S;na=O}while(1){ia=na;while(1){oa=Z+((X(ia,W)|0)<<2)|0;if((f[oa+(R<<2)>>2]|0)>>>0>=Y>>>0){pa=ma;break}$=ia+1|0;if(($|0)==(ma|0)){ja=ma;break b}else ia=$}while(1){pa=pa+-1|0;if((ia|0)==(pa|0)){ja=ia;break b}qa=(f[L>>2]|0)+((X(pa,Q)|0)<<2)|0;if((f[qa+(R<<2)>>2]|0)>>>0<Y>>>0){ra=0;break}}do{ha=oa+(ra<<2)|0;$=qa+(ra<<2)|0;ga=f[ha>>2]|0;f[ha>>2]=f[$>>2];f[$>>2]=ga;ra=ra+1|0}while((ra|0)!=(W|0));na=ia+1|0;if((na|0)==(pa|0)){ja=pa;break}else ma=pa}}while(0);Y=(_(z|0)|0)^31;Q=ja-O|0;Z=S-ja|0;ga=Q>>>0<Z>>>0;if((Q|0)!=(Z|0)){$=f[D>>2]|0;if(ga)f[E>>2]=f[E>>2]|1<<31-$;ha=$+1|0;f[D>>2]=ha;if((ha|0)==32){ha=f[F>>2]|0;if((ha|0)==(f[G>>2]|0))Ri(H,E);else{f[ha>>2]=f[E>>2];f[F>>2]=ha+4}f[D>>2]=0;f[E>>2]=0}}ha=z>>>1;if(ga)sg(C,Y,ha-Q|0);else sg(C,Y,ha-Z|0);ha=f[s>>2]|0;Y=f[ha+(U*12|0)>>2]|0;ga=Y+(R<<2)|0;f[ga>>2]=(f[ga>>2]|0)+1;Ig(ha+(V*12|0)|0,Y,f[ha+(U*12|0)+4>>2]|0);if((ja|0)!=(O|0)){ha=f[o>>2]|0;Y=f[t>>2]|0;ga=ha-Y>>2;$=f[v>>2]|0;fa=f[l>>2]|0;if((((ga|0)==0?0:(ga*113|0)+-1|0)|0)==(fa+$|0)){Pc(e);sa=f[v>>2]|0;ta=f[l>>2]|0;ua=f[o>>2]|0;va=f[t>>2]|0}else{sa=$;ta=fa;ua=ha;va=Y}Y=ta+sa|0;if((ua|0)==(va|0))wa=0;else wa=(f[va+(((Y>>>0)/113|0)<<2)>>2]|0)+(((Y>>>0)%113|0)*36|0)|0;f[wa>>2]=O;Y=wa+4|0;f[Y>>2]=r;f[Y+4>>2]=x;f[wa+12>>2]=ja;f[wa+16>>2]=i;f[wa+20>>2]=W;f[wa+24>>2]=R;f[wa+28>>2]=Q;f[wa+32>>2]=U;f[l>>2]=(f[l>>2]|0)+1}if((S|0)!=(ja|0)){Q=f[o>>2]|0;Y=f[t>>2]|0;ha=Q-Y>>2;fa=f[v>>2]|0;$=f[l>>2]|0;if((((ha|0)==0?0:(ha*113|0)+-1|0)|0)==($+fa|0)){Pc(e);xa=f[v>>2]|0;ya=f[l>>2]|0;za=f[o>>2]|0;Aa=f[t>>2]|0}else{xa=fa;ya=$;za=Q;Aa=Y}Y=ya+xa|0;if((za|0)==(Aa|0))Ba=0;else Ba=(f[Aa+(((Y>>>0)/113|0)<<2)>>2]|0)+(((Y>>>0)%113|0)*36|0)|0;f[Ba>>2]=ja;f[Ba+4>>2]=i;f[Ba+8>>2]=W;f[Ba+12>>2]=S;Y=Ba+16|0;f[Y>>2]=p;f[Y+4>>2]=q;f[Ba+24>>2]=R;f[Ba+28>>2]=Z;f[Ba+32>>2]=V;Z=(f[l>>2]|0)+1|0;f[l>>2]=Z;Ca=Z}else ba=81}else ba=81;while(0);if((ba|0)==81){ba=0;Ca=f[l>>2]|0}if(!Ca)break;else M=Ca}}Ca=f[t>>2]|0;M=f[v>>2]|0;Ba=Ca+(((M>>>0)/113|0)<<2)|0;q=f[o>>2]|0;p=q;i=Ca;if((q|0)==(Ca|0)){Da=0;Ea=0}else{ja=(f[Ba>>2]|0)+(((M>>>0)%113|0)*36|0)|0;Da=ja;Ea=ja}ja=Ba;Ba=Ea;c:while(1){Ea=Ba;do{M=Ea;if((Da|0)==(M|0))break c;Ea=M+36|0}while((Ea-(f[ja>>2]|0)|0)!=4068);Ea=ja+4|0;ja=Ea;Ba=f[Ea>>2]|0}f[l>>2]=0;l=p-i>>2;if(l>>>0>2){i=Ca;do{Oq(f[i>>2]|0);i=(f[t>>2]|0)+4|0;f[t>>2]=i;Fa=f[o>>2]|0;Ga=Fa-i>>2}while(Ga>>>0>2);Ha=Ga;Ia=i;Ja=Fa}else{Ha=l;Ia=Ca;Ja=q}switch(Ha|0){case 1:{Ka=56;ba=95;break}case 2:{Ka=113;ba=95;break}default:{}}if((ba|0)==95)f[v>>2]=Ka;if((Ia|0)!=(Ja|0)){Ka=Ia;do{Oq(f[Ka>>2]|0);Ka=Ka+4|0}while((Ka|0)!=(Ja|0));Ja=f[t>>2]|0;t=f[o>>2]|0;if((t|0)!=(Ja|0))f[o>>2]=t+(~((t+-4-Ja|0)>>>2)<<2)}Ja=f[e>>2]|0;if(!Ja){u=d;return}Oq(Ja);u=d;return}function mb(a,c,e,g){a=a|0;c=c|0;e=e|0;g=g|0;var i=0,k=0,l=0,m=0,o=0,q=0,r=0,s=Oa,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0;if(!g){i=0;return i|0}do switch(f[a+28>>2]|0){case 1:{k=a+24|0;l=b[k>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0){m=f[f[a>>2]>>2]|0;o=a+40|0;q=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;r=Vn(q|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=m+r|0;if(!(b[a+32>>0]|0)){r=o;m=0;while(1){s=$(b[r>>0]|0);n[g+(m<<2)>>2]=s;m=m+1|0;q=b[k>>0]|0;if((m|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){t=q;break}else r=r+1|0}}else{r=o;m=0;while(1){s=$($(b[r>>0]|0)/$(127.0));n[g+(m<<2)>>2]=s;m=m+1|0;q=b[k>>0]|0;if((m|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){t=q;break}else r=r+1|0}}}else t=l;r=t<<24>>24;if(t<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(r<<2)|0,0,(e<<24>>24)-r<<2|0)|0;i=1;return i|0}case 2:{r=a+24|0;m=b[r>>0]|0;if((m<<24>>24>e<<24>>24?e:m)<<24>>24>0){k=f[f[a>>2]>>2]|0;o=a+40|0;q=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;u=Vn(q|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=k+u|0;if(!(b[a+32>>0]|0)){u=o;k=0;while(1){s=$(h[u>>0]|0);n[g+(k<<2)>>2]=s;k=k+1|0;q=b[r>>0]|0;if((k|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){v=q;break}else u=u+1|0}}else{u=o;k=0;while(1){s=$($(h[u>>0]|0)/$(255.0));n[g+(k<<2)>>2]=s;k=k+1|0;l=b[r>>0]|0;if((k|0)>=((l<<24>>24>e<<24>>24?e:l)<<24>>24|0)){v=l;break}else u=u+1|0}}}else v=m;u=v<<24>>24;if(v<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(u<<2)|0,0,(e<<24>>24)-u<<2|0)|0;i=1;return i|0}case 3:{u=a+48|0;k=f[u>>2]|0;r=f[u+4>>2]|0;u=a+40|0;o=(Vn(un(f[u>>2]|0,f[u+4>>2]|0,f[c>>2]|0,0)|0,I|0,k|0,r|0)|0)+(f[f[a>>2]>>2]|0)|0;r=a+24|0;k=b[r>>0]|0;if((k<<24>>24>e<<24>>24?e:k)<<24>>24>0)if(!(b[a+32>>0]|0)){u=o;l=0;while(1){s=$(d[u>>1]|0);n[g+(l<<2)>>2]=s;l=l+1|0;q=b[r>>0]|0;if((l|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){w=q;break}else u=u+2|0}}else{u=o;l=0;while(1){s=$($(d[u>>1]|0)/$(32767.0));n[g+(l<<2)>>2]=s;l=l+1|0;m=b[r>>0]|0;if((l|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){w=m;break}else u=u+2|0}}else w=k;u=w<<24>>24;if(w<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(u<<2)|0,0,(e<<24>>24)-u<<2|0)|0;i=1;return i|0}case 4:{u=a+48|0;l=f[u>>2]|0;r=f[u+4>>2]|0;u=a+40|0;o=(Vn(un(f[u>>2]|0,f[u+4>>2]|0,f[c>>2]|0,0)|0,I|0,l|0,r|0)|0)+(f[f[a>>2]>>2]|0)|0;r=a+24|0;l=b[r>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0)if(!(b[a+32>>0]|0)){u=o;m=0;while(1){s=$(j[u>>1]|0);n[g+(m<<2)>>2]=s;m=m+1|0;q=b[r>>0]|0;if((m|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){x=q;break}else u=u+2|0}}else{u=o;m=0;while(1){s=$($(j[u>>1]|0)/$(65535.0));n[g+(m<<2)>>2]=s;m=m+1|0;k=b[r>>0]|0;if((m|0)>=((k<<24>>24>e<<24>>24?e:k)<<24>>24|0)){x=k;break}else u=u+2|0}}else x=l;u=x<<24>>24;if(x<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(u<<2)|0,0,(e<<24>>24)-u<<2|0)|0;i=1;return i|0}case 5:{u=a+48|0;m=f[u>>2]|0;r=f[u+4>>2]|0;u=a+40|0;o=(Vn(un(f[u>>2]|0,f[u+4>>2]|0,f[c>>2]|0,0)|0,I|0,m|0,r|0)|0)+(f[f[a>>2]>>2]|0)|0;r=a+24|0;m=b[r>>0]|0;if((m<<24>>24>e<<24>>24?e:m)<<24>>24>0)if(!(b[a+32>>0]|0)){u=o;k=0;while(1){s=$(f[u>>2]|0);n[g+(k<<2)>>2]=s;k=k+1|0;q=b[r>>0]|0;if((k|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){y=q;break}else u=u+4|0}}else{u=o;k=0;while(1){s=$($(f[u>>2]|0)*$(4.65661287e-10));n[g+(k<<2)>>2]=s;k=k+1|0;l=b[r>>0]|0;if((k|0)>=((l<<24>>24>e<<24>>24?e:l)<<24>>24|0)){y=l;break}else u=u+4|0}}else y=m;u=y<<24>>24;if(y<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(u<<2)|0,0,(e<<24>>24)-u<<2|0)|0;i=1;return i|0}case 6:{u=a+48|0;k=f[u>>2]|0;r=f[u+4>>2]|0;u=a+40|0;o=(Vn(un(f[u>>2]|0,f[u+4>>2]|0,f[c>>2]|0,0)|0,I|0,k|0,r|0)|0)+(f[f[a>>2]>>2]|0)|0;r=a+24|0;k=b[r>>0]|0;if((k<<24>>24>e<<24>>24?e:k)<<24>>24>0)if(!(b[a+32>>0]|0)){u=o;l=0;while(1){s=$((f[u>>2]|0)>>>0);n[g+(l<<2)>>2]=s;l=l+1|0;q=b[r>>0]|0;if((l|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){z=q;break}else u=u+4|0}}else{u=o;l=0;while(1){s=$($((f[u>>2]|0)>>>0)*$(2.32830644e-10));n[g+(l<<2)>>2]=s;l=l+1|0;m=b[r>>0]|0;if((l|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){z=m;break}else u=u+4|0}}else z=k;u=z<<24>>24;if(z<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(u<<2)|0,0,(e<<24>>24)-u<<2|0)|0;i=1;return i|0}case 7:{u=a+48|0;l=f[u>>2]|0;r=f[u+4>>2]|0;u=a+40|0;o=(Vn(un(f[u>>2]|0,f[u+4>>2]|0,f[c>>2]|0,0)|0,I|0,l|0,r|0)|0)+(f[f[a>>2]>>2]|0)|0;r=a+24|0;l=b[r>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0)if(!(b[a+32>>0]|0)){u=o;m=0;while(1){q=u;s=$(+((f[q>>2]|0)>>>0)+4294967296.0*+(f[q+4>>2]|0));n[g+(m<<2)>>2]=s;m=m+1|0;q=b[r>>0]|0;if((m|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){A=q;break}else u=u+8|0}}else{u=o;m=0;while(1){k=u;s=$($(+((f[k>>2]|0)>>>0)+4294967296.0*+(f[k+4>>2]|0))*$(1.08420217e-19));n[g+(m<<2)>>2]=s;m=m+1|0;k=b[r>>0]|0;if((m|0)>=((k<<24>>24>e<<24>>24?e:k)<<24>>24|0)){A=k;break}else u=u+8|0}}else A=l;u=A<<24>>24;if(A<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(u<<2)|0,0,(e<<24>>24)-u<<2|0)|0;i=1;return i|0}case 8:{u=a+48|0;m=f[u>>2]|0;r=f[u+4>>2]|0;u=a+40|0;o=(Vn(un(f[u>>2]|0,f[u+4>>2]|0,f[c>>2]|0,0)|0,I|0,m|0,r|0)|0)+(f[f[a>>2]>>2]|0)|0;r=a+24|0;m=b[r>>0]|0;if((m<<24>>24>e<<24>>24?e:m)<<24>>24>0)if(!(b[a+32>>0]|0)){u=o;k=0;while(1){q=u;s=$(+((f[q>>2]|0)>>>0)+4294967296.0*+((f[q+4>>2]|0)>>>0));n[g+(k<<2)>>2]=s;k=k+1|0;q=b[r>>0]|0;if((k|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){B=q;break}else u=u+8|0}}else{u=o;k=0;while(1){l=u;s=$($(+((f[l>>2]|0)>>>0)+4294967296.0*+((f[l+4>>2]|0)>>>0))*$(5.42101086e-20));n[g+(k<<2)>>2]=s;k=k+1|0;l=b[r>>0]|0;if((k|0)>=((l<<24>>24>e<<24>>24?e:l)<<24>>24|0)){B=l;break}else u=u+8|0}}else B=m;u=B<<24>>24;if(B<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(u<<2)|0,0,(e<<24>>24)-u<<2|0)|0;i=1;return i|0}case 9:{u=a+24|0;k=b[u>>0]|0;if((k<<24>>24>e<<24>>24?e:k)<<24>>24>0){r=f[f[a>>2]>>2]|0;o=a+40|0;l=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;q=Vn(l|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=r+q|0;q=0;while(1){f[g+(q<<2)>>2]=f[o>>2];q=q+1|0;r=b[u>>0]|0;if((q|0)>=((r<<24>>24>e<<24>>24?e:r)<<24>>24|0)){C=r;break}else o=o+4|0}}else C=k;o=C<<24>>24;if(C<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(o<<2)|0,0,(e<<24>>24)-o<<2|0)|0;i=1;return i|0}case 10:{o=a+24|0;q=b[o>>0]|0;if((q<<24>>24>e<<24>>24?e:q)<<24>>24>0){u=f[f[a>>2]>>2]|0;m=a+40|0;r=un(f[m>>2]|0,f[m+4>>2]|0,f[c>>2]|0,0)|0;m=a+48|0;l=Vn(r|0,I|0,f[m>>2]|0,f[m+4>>2]|0)|0;m=u+l|0;l=0;while(1){s=$(+p[m>>3]);n[g+(l<<2)>>2]=s;l=l+1|0;u=b[o>>0]|0;if((l|0)>=((u<<24>>24>e<<24>>24?e:u)<<24>>24|0)){D=u;break}else m=m+8|0}}else D=q;m=D<<24>>24;if(D<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(m<<2)|0,0,(e<<24>>24)-m<<2|0)|0;i=1;return i|0}case 11:{m=a+24|0;l=b[m>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0){o=f[f[a>>2]>>2]|0;k=a+40|0;u=un(f[k>>2]|0,f[k+4>>2]|0,f[c>>2]|0,0)|0;k=a+48|0;r=Vn(u|0,I|0,f[k>>2]|0,f[k+4>>2]|0)|0;k=o+r|0;r=0;while(1){s=$((b[k>>0]|0)!=0&1);n[g+(r<<2)>>2]=s;r=r+1|0;o=b[m>>0]|0;if((r|0)>=((o<<24>>24>e<<24>>24?e:o)<<24>>24|0)){E=o;break}else k=k+1|0}}else E=l;k=E<<24>>24;if(E<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(k<<2)|0,0,(e<<24>>24)-k<<2|0)|0;i=1;return i|0}default:{i=0;return i|0}}while(0);return 0}function nb(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0.0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0,Ja=0,Ka=0,La=0,Ma=0,Na=0,Oa=0,Pa=0,Qa=0,Ra=0,Sa=0,Ta=0,Ua=0,Va=0,Wa=0,Xa=0,Ya=0,Za=0,_a=0,$a=0,ab=0,bb=0.0,cb=0,db=0,eb=0,fb=0,gb=0,hb=0,ib=0,jb=0.0,kb=0.0,lb=0.0,mb=0.0,nb=0.0,ob=0.0,pb=0.0,qb=0.0,rb=0.0,sb=0.0,tb=0;i=u;u=u+512|0;j=i;k=d+c|0;l=0-k|0;m=a+4|0;n=a+100|0;o=b;b=0;a:while(1){switch(o|0){case 46:{p=6;break a;break}case 48:break;default:{q=0;r=o;s=b;t=0;v=0;break a}}w=f[m>>2]|0;if(w>>>0<(f[n>>2]|0)>>>0){f[m>>2]=w+1;o=h[w>>0]|0;b=1;continue}else{o=Si(a)|0;b=1;continue}}if((p|0)==6){o=f[m>>2]|0;if(o>>>0<(f[n>>2]|0)>>>0){f[m>>2]=o+1;x=h[o>>0]|0}else x=Si(a)|0;if((x|0)==48){o=0;w=0;while(1){y=Vn(o|0,w|0,-1,-1)|0;z=I;A=f[m>>2]|0;if(A>>>0<(f[n>>2]|0)>>>0){f[m>>2]=A+1;B=h[A>>0]|0}else B=Si(a)|0;if((B|0)==48){o=y;w=z}else{q=1;r=B;s=1;t=y;v=z;break}}}else{q=1;r=x;s=b;t=0;v=0}}f[j>>2]=0;b=r+-48|0;x=(r|0)==46;b:do if(x|b>>>0<10){B=j+496|0;w=0;o=0;z=0;y=q;A=s;C=r;D=x;E=b;F=t;G=v;H=0;J=0;c:while(1){do if(D)if(!y){L=w;M=o;N=1;O=z;P=A;Q=H;R=J;S=H;T=J}else break c;else{U=Vn(H|0,J|0,1,0)|0;V=I;W=(C|0)!=48;if((o|0)>=125){if(!W){L=w;M=o;N=y;O=z;P=A;Q=F;R=G;S=U;T=V;break}f[B>>2]=f[B>>2]|1;L=w;M=o;N=y;O=z;P=A;Q=F;R=G;S=U;T=V;break}Y=j+(o<<2)|0;if(!w)Z=E;else Z=C+-48+((f[Y>>2]|0)*10|0)|0;f[Y>>2]=Z;Y=w+1|0;_=(Y|0)==9;L=_?0:Y;M=o+(_&1)|0;N=y;O=W?U:z;P=1;Q=F;R=G;S=U;T=V}while(0);V=f[m>>2]|0;if(V>>>0<(f[n>>2]|0)>>>0){f[m>>2]=V+1;$=h[V>>0]|0}else $=Si(a)|0;E=$+-48|0;D=($|0)==46;if(!(D|E>>>0<10)){aa=L;ba=M;ca=O;da=N;ea=$;fa=P;ga=S;ha=Q;ia=T;ja=R;p=29;break b}else{w=L;o=M;z=O;y=N;A=P;C=$;F=Q;G=R;H=S;J=T}}ka=w;la=o;ma=z;na=H;oa=J;pa=F;qa=G;ra=(A|0)!=0;p=37}else{aa=0;ba=0;ca=0;da=q;ea=r;fa=s;ga=0;ha=t;ia=0;ja=v;p=29}while(0);do if((p|0)==29){v=(da|0)==0;t=v?ga:ha;s=v?ia:ja;v=(fa|0)!=0;if(!(v&(ea|32|0)==101))if((ea|0)>-1){ka=aa;la=ba;ma=ca;na=ga;oa=ia;pa=t;qa=s;ra=v;p=37;break}else{sa=aa;ta=ba;ua=ca;va=ga;wa=ia;xa=v;ya=t;za=s;p=39;break}v=Re(a,g)|0;r=I;if((v|0)==0&(r|0)==-2147483648){if(!g){Ym(a,0);Aa=0.0;break}if(!(f[n>>2]|0)){Ba=0;Ca=0}else{f[m>>2]=(f[m>>2]|0)+-1;Ba=0;Ca=0}}else{Ba=v;Ca=r}r=Vn(Ba|0,Ca|0,t|0,s|0)|0;Da=aa;Ea=ba;Fa=ca;Ga=r;Ha=ga;Ia=I;Ja=ia;p=41}while(0);if((p|0)==37)if(f[n>>2]|0){f[m>>2]=(f[m>>2]|0)+-1;if(ra){Da=ka;Ea=la;Fa=ma;Ga=pa;Ha=na;Ia=qa;Ja=oa;p=41}else p=40}else{sa=ka;ta=la;ua=ma;va=na;wa=oa;xa=ra;ya=pa;za=qa;p=39}if((p|0)==39)if(xa){Da=sa;Ea=ta;Fa=ua;Ga=ya;Ha=va;Ia=za;Ja=wa;p=41}else p=40;do if((p|0)==40){wa=Vq()|0;f[wa>>2]=22;Ym(a,0);Aa=0.0}else if((p|0)==41){wa=f[j>>2]|0;if(!wa){Aa=+(e|0)*0.0;break}if(((Ja|0)<0|(Ja|0)==0&Ha>>>0<10)&((Ga|0)==(Ha|0)&(Ia|0)==(Ja|0))?(c|0)>30|(wa>>>c|0)==0:0){Aa=+(e|0)*+(wa>>>0);break}wa=(d|0)/-2|0;za=((wa|0)<0)<<31>>31;if((Ia|0)>(za|0)|(Ia|0)==(za|0)&Ga>>>0>wa>>>0){wa=Vq()|0;f[wa>>2]=34;Aa=+(e|0)*1797693134862315708145274.0e284*1797693134862315708145274.0e284;break}wa=d+-106|0;za=((wa|0)<0)<<31>>31;if((Ia|0)<(za|0)|(Ia|0)==(za|0)&Ga>>>0<wa>>>0){wa=Vq()|0;f[wa>>2]=34;Aa=+(e|0)*2.2250738585072014e-308*2.2250738585072014e-308;break}if(!Da)Ka=Ea;else{if((Da|0)<9){wa=j+(Ea<<2)|0;za=Da;va=f[wa>>2]|0;while(1){va=va*10|0;if((za|0)>=8)break;else za=za+1|0}f[wa>>2]=va}Ka=Ea+1|0}if((Fa|0)<9?(Fa|0)<=(Ga|0)&(Ga|0)<18:0){if((Ga|0)==9){Aa=+(e|0)*+((f[j>>2]|0)>>>0);break}if((Ga|0)<9){Aa=+(e|0)*+((f[j>>2]|0)>>>0)/+(f[6720+(8-Ga<<2)>>2]|0);break}za=c+27+(X(Ga,-3)|0)|0;A=f[j>>2]|0;if((za|0)>30|(A>>>za|0)==0){Aa=+(e|0)*+(A>>>0)*+(f[6720+(Ga+-10<<2)>>2]|0);break}}A=(Ga|0)%9|0;if(!A){La=0;Ma=Ka;Na=0;Oa=Ga}else{za=(Ga|0)>-1?A:A+9|0;A=f[6720+(8-za<<2)>>2]|0;if(Ka){G=1e9/(A|0)|0;F=0;J=0;H=Ga;z=0;do{o=j+(z<<2)|0;w=f[o>>2]|0;ya=((w>>>0)/(A>>>0)|0)+F|0;f[o>>2]=ya;F=X(G,(w>>>0)%(A>>>0)|0)|0;w=(z|0)==(J|0)&(ya|0)==0;H=w?H+-9|0:H;J=w?J+1&127:J;z=z+1|0}while((z|0)!=(Ka|0));if(!F){Pa=J;Qa=Ka;Ra=H}else{f[j+(Ka<<2)>>2]=F;Pa=J;Qa=Ka+1|0;Ra=H}}else{Pa=0;Qa=0;Ra=Ga}La=0;Ma=Qa;Na=Pa;Oa=9-za+Ra|0}d:while(1){z=(Oa|0)<18;A=(Oa|0)==18;G=j+(Na<<2)|0;va=La;wa=Ma;while(1){if(!z){if(!A){Sa=va;Ta=Na;Ua=Oa;Va=wa;break d}if((f[G>>2]|0)>>>0>=9007199){Sa=va;Ta=Na;Ua=18;Va=wa;break d}}w=0;Wa=wa;ya=wa+127|0;while(1){o=ya&127;ua=j+(o<<2)|0;ta=Tn(f[ua>>2]|0,0,29)|0;sa=Vn(ta|0,I|0,w|0,0)|0;ta=I;if(ta>>>0>0|(ta|0)==0&sa>>>0>1e9){xa=jp(sa|0,ta|0,1e9,0)|0;qa=hn(sa|0,ta|0,1e9,0)|0;Xa=xa;Ya=qa}else{Xa=0;Ya=sa}f[ua>>2]=Ya;ua=(o|0)==(Na|0);Wa=(Ya|0)==0&(((o|0)!=(Wa+127&127|0)|ua)^1)?o:Wa;if(ua)break;else{w=Xa;ya=o+-1|0}}va=va+-29|0;if(Xa|0)break;else wa=Wa}wa=Na+127&127;G=Wa+127&127;A=j+((Wa+126&127)<<2)|0;if((wa|0)==(Wa|0)){f[A>>2]=f[A>>2]|f[j+(G<<2)>>2];Za=G}else Za=Wa;f[j+(wa<<2)>>2]=Xa;La=va;Ma=Za;Na=wa;Oa=Oa+9|0}e:while(1){za=Va+1&127;H=j+((Va+127&127)<<2)|0;J=Sa;F=Ta;wa=Ua;while(1){G=(wa|0)==18;A=(wa|0)>27?9:1;_a=J;$a=F;while(1){z=0;while(1){ya=z+$a&127;if((ya|0)==(Va|0)){ab=2;p=88;break}w=f[j+(ya<<2)>>2]|0;ya=f[6752+(z<<2)>>2]|0;if(w>>>0<ya>>>0){ab=2;p=88;break}if(w>>>0>ya>>>0)break;ya=z+1|0;if((z|0)<1)z=ya;else{ab=ya;p=88;break}}if((p|0)==88?(p=0,G&(ab|0)==2):0){bb=0.0;cb=0;db=Va;break e}eb=A+_a|0;if(($a|0)==(Va|0)){_a=eb;$a=Va}else break}G=(1<<A)+-1|0;z=1e9>>>A;fb=0;gb=$a;hb=wa;ya=$a;do{w=j+(ya<<2)|0;o=f[w>>2]|0;ua=(o>>>A)+fb|0;f[w>>2]=ua;fb=X(o&G,z)|0;o=(ya|0)==(gb|0)&(ua|0)==0;hb=o?hb+-9|0:hb;gb=o?gb+1&127:gb;ya=ya+1&127}while((ya|0)!=(Va|0));if(!fb){J=eb;F=gb;wa=hb;continue}if((za|0)!=(gb|0))break;f[H>>2]=f[H>>2]|1;J=eb;F=gb;wa=hb}f[j+(Va<<2)>>2]=fb;Sa=eb;Ta=gb;Ua=hb;Va=za}while(1){wa=cb+$a&127;F=db+1&127;if((wa|0)==(db|0)){f[j+(F+-1<<2)>>2]=0;ib=F}else ib=db;bb=bb*1.0e9+ +((f[j+(wa<<2)>>2]|0)>>>0);cb=cb+1|0;if((cb|0)==2)break;else db=ib}jb=+(e|0);kb=bb*jb;wa=_a+53|0;F=wa-d|0;J=(F|0)<(c|0);H=J?((F|0)>0?F:0):c;if((H|0)<53){lb=+rq(+bk(1.0,105-H|0),kb);mb=+Dq(kb,+bk(1.0,53-H|0));nb=lb;ob=mb;pb=lb+(kb-mb)}else{nb=0.0;ob=0.0;pb=kb}va=$a+2&127;if((va|0)!=(ib|0)){ya=f[j+(va<<2)>>2]|0;do if(ya>>>0>=5e8){if((ya|0)!=5e8){qb=jb*.75+ob;break}if(($a+3&127|0)==(ib|0)){qb=jb*.5+ob;break}else{qb=jb*.75+ob;break}}else{if((ya|0)==0?($a+3&127|0)==(ib|0):0){qb=ob;break}qb=jb*.25+ob}while(0);if((53-H|0)>1?!(+Dq(qb,1.0)!=0.0):0)rb=qb+1.0;else rb=qb}else rb=ob;jb=pb+rb-nb;do if((wa&2147483647|0)>(-2-k|0)){ya=!(+K(+jb)>=9007199254740992.0);va=_a+((ya^1)&1)|0;kb=ya?jb:jb*.5;if((va+50|0)<=(l|0)?!(rb!=0.0&(J&((H|0)!=(F|0)|ya))):0){sb=kb;tb=va;break}ya=Vq()|0;f[ya>>2]=34;sb=kb;tb=va}else{sb=jb;tb=_a}while(0);Aa=+sq(sb,tb)}while(0);u=i;return +Aa}function ob(a,c,d,e,g,i){a=a|0;c=+c;d=d|0;e=e|0;g=g|0;i=i|0;var j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0.0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0.0,C=0,D=0.0,E=0,F=0,G=0,H=0.0,J=0,K=0,L=0,M=0,N=0,O=0.0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0.0,ga=0.0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0;j=u;u=u+560|0;k=j+8|0;l=j;m=j+524|0;n=m;o=j+512|0;f[l>>2]=0;p=o+12|0;yo(c)|0;if((I|0)<0){q=-c;r=1;s=16605}else{q=c;r=(g&2049|0)!=0&1;s=(g&2048|0)==0?((g&1|0)==0?16606:16611):16608}yo(q)|0;do if(0==0&(I&2146435072|0)==2146435072){t=(i&32|0)!=0;v=r+3|0;Qk(a,32,d,v,g&-65537);Xo(a,s,r);Xo(a,q!=q|0.0!=0.0?(t?18555:16632):t?16624:16628,3);Qk(a,32,d,v,g^8192);w=v}else{c=+tq(q,l)*2.0;v=c!=0.0;if(v)f[l>>2]=(f[l>>2]|0)+-1;t=i|32;if((t|0)==97){x=i&32;y=(x|0)==0?s:s+9|0;z=r|2;A=12-e|0;do if(!(e>>>0>11|(A|0)==0)){B=8.0;C=A;do{C=C+-1|0;B=B*16.0}while((C|0)!=0);if((b[y>>0]|0)==45){D=-(B+(-c-B));break}else{D=c+B-B;break}}else D=c;while(0);A=f[l>>2]|0;C=(A|0)<0?0-A|0:A;E=Rj(C,((C|0)<0)<<31>>31,p)|0;if((E|0)==(p|0)){C=o+11|0;b[C>>0]=48;F=C}else F=E;b[F+-1>>0]=(A>>31&2)+43;A=F+-2|0;b[A>>0]=i+15;E=(e|0)<1;C=(g&8|0)==0;G=m;H=D;while(1){J=~~H;K=G+1|0;b[G>>0]=x|h[16636+J>>0];H=(H-+(J|0))*16.0;if((K-n|0)==1?!(C&(E&H==0.0)):0){b[K>>0]=46;L=G+2|0}else L=K;if(!(H!=0.0))break;else G=L}G=L;if((e|0)!=0?(-2-n+G|0)<(e|0):0){M=G-n|0;N=e+2|0}else{E=G-n|0;M=E;N=E}E=p-A|0;G=E+z+N|0;Qk(a,32,d,G,g);Xo(a,y,z);Qk(a,48,d,G,g^65536);Xo(a,m,M);Qk(a,48,N-M|0,0,0);Xo(a,A,E);Qk(a,32,d,G,g^8192);w=G;break}G=(e|0)<0?6:e;if(v){E=(f[l>>2]|0)+-28|0;f[l>>2]=E;O=c*268435456.0;P=E}else{O=c;P=f[l>>2]|0}E=(P|0)<0?k:k+288|0;C=E;H=O;do{x=~~H>>>0;f[C>>2]=x;C=C+4|0;H=(H-+(x>>>0))*1.0e9}while(H!=0.0);if((P|0)>0){v=E;A=C;z=P;while(1){y=(z|0)<29?z:29;x=A+-4|0;if(x>>>0>=v>>>0){K=x;x=0;do{J=Tn(f[K>>2]|0,0,y|0)|0;Q=Vn(J|0,I|0,x|0,0)|0;J=I;R=hn(Q|0,J|0,1e9,0)|0;f[K>>2]=R;x=jp(Q|0,J|0,1e9,0)|0;K=K+-4|0}while(K>>>0>=v>>>0);if(x){K=v+-4|0;f[K>>2]=x;S=K}else S=v}else S=v;K=A;while(1){if(K>>>0<=S>>>0)break;J=K+-4|0;if(!(f[J>>2]|0))K=J;else break}x=(f[l>>2]|0)-y|0;f[l>>2]=x;if((x|0)>0){v=S;A=K;z=x}else{T=S;U=K;V=x;break}}}else{T=E;U=C;V=P}if((V|0)<0){z=((G+25|0)/9|0)+1|0;A=(t|0)==102;v=T;x=U;J=V;while(1){Q=0-J|0;R=(Q|0)<9?Q:9;if(v>>>0<x>>>0){Q=(1<<R)+-1|0;W=1e9>>>R;Y=0;Z=v;do{_=f[Z>>2]|0;f[Z>>2]=(_>>>R)+Y;Y=X(_&Q,W)|0;Z=Z+4|0}while(Z>>>0<x>>>0);Z=(f[v>>2]|0)==0?v+4|0:v;if(!Y){$=Z;aa=x}else{f[x>>2]=Y;$=Z;aa=x+4|0}}else{$=(f[v>>2]|0)==0?v+4|0:v;aa=x}Z=A?E:$;W=(aa-Z>>2|0)>(z|0)?Z+(z<<2)|0:aa;J=(f[l>>2]|0)+R|0;f[l>>2]=J;if((J|0)>=0){ba=$;ca=W;break}else{v=$;x=W}}}else{ba=T;ca=U}x=E;if(ba>>>0<ca>>>0){v=(x-ba>>2)*9|0;J=f[ba>>2]|0;if(J>>>0<10)da=v;else{z=v;v=10;while(1){v=v*10|0;A=z+1|0;if(J>>>0<v>>>0){da=A;break}else z=A}}}else da=0;z=(t|0)==103;v=(G|0)!=0;J=G-((t|0)!=102?da:0)+((v&z)<<31>>31)|0;if((J|0)<(((ca-x>>2)*9|0)+-9|0)){A=J+9216|0;J=E+4+(((A|0)/9|0)+-1024<<2)|0;C=(A|0)%9|0;if((C|0)<8){A=C;C=10;while(1){W=C*10|0;if((A|0)<7){A=A+1|0;C=W}else{ea=W;break}}}else ea=10;C=f[J>>2]|0;A=(C>>>0)%(ea>>>0)|0;t=(J+4|0)==(ca|0);if(!(t&(A|0)==0)){B=(((C>>>0)/(ea>>>0)|0)&1|0)==0?9007199254740992.0:9007199254740994.0;W=(ea|0)/2|0;H=A>>>0<W>>>0?.5:t&(A|0)==(W|0)?1.0:1.5;if(!r){fa=H;ga=B}else{W=(b[s>>0]|0)==45;fa=W?-H:H;ga=W?-B:B}W=C-A|0;f[J>>2]=W;if(ga+fa!=ga){A=W+ea|0;f[J>>2]=A;if(A>>>0>999999999){A=ba;W=J;while(1){C=W+-4|0;f[W>>2]=0;if(C>>>0<A>>>0){t=A+-4|0;f[t>>2]=0;ha=t}else ha=A;t=(f[C>>2]|0)+1|0;f[C>>2]=t;if(t>>>0>999999999){A=ha;W=C}else{ia=ha;ja=C;break}}}else{ia=ba;ja=J}W=(x-ia>>2)*9|0;A=f[ia>>2]|0;if(A>>>0<10){ka=ja;la=W;ma=ia}else{C=W;W=10;while(1){W=W*10|0;t=C+1|0;if(A>>>0<W>>>0){ka=ja;la=t;ma=ia;break}else C=t}}}else{ka=J;la=da;ma=ba}}else{ka=J;la=da;ma=ba}C=ka+4|0;na=la;oa=ca>>>0>C>>>0?C:ca;pa=ma}else{na=da;oa=ca;pa=ba}C=oa;while(1){if(C>>>0<=pa>>>0){qa=0;break}W=C+-4|0;if(!(f[W>>2]|0))C=W;else{qa=1;break}}J=0-na|0;do if(z){W=G+((v^1)&1)|0;if((W|0)>(na|0)&(na|0)>-5){ra=i+-1|0;sa=W+-1-na|0}else{ra=i+-2|0;sa=W+-1|0}W=g&8;if(!W){if(qa?(A=f[C+-4>>2]|0,(A|0)!=0):0)if(!((A>>>0)%10|0)){t=0;Z=10;while(1){Z=Z*10|0;Q=t+1|0;if((A>>>0)%(Z>>>0)|0|0){ta=Q;break}else t=Q}}else ta=0;else ta=9;t=((C-x>>2)*9|0)+-9|0;if((ra|32|0)==102){Z=t-ta|0;A=(Z|0)>0?Z:0;ua=ra;va=(sa|0)<(A|0)?sa:A;wa=0;break}else{A=t+na-ta|0;t=(A|0)>0?A:0;ua=ra;va=(sa|0)<(t|0)?sa:t;wa=0;break}}else{ua=ra;va=sa;wa=W}}else{ua=i;va=G;wa=g&8}while(0);G=va|wa;x=(G|0)!=0&1;v=(ua|32|0)==102;if(v){xa=0;ya=(na|0)>0?na:0}else{z=(na|0)<0?J:na;t=Rj(z,((z|0)<0)<<31>>31,p)|0;z=p;if((z-t|0)<2){A=t;while(1){Z=A+-1|0;b[Z>>0]=48;if((z-Z|0)<2)A=Z;else{za=Z;break}}}else za=t;b[za+-1>>0]=(na>>31&2)+43;A=za+-2|0;b[A>>0]=ua;xa=A;ya=z-A|0}A=r+1+va+x+ya|0;Qk(a,32,d,A,g);Xo(a,s,r);Qk(a,48,d,A,g^65536);if(v){J=pa>>>0>E>>>0?E:pa;Z=m+9|0;R=Z;Y=m+8|0;Q=J;do{K=Rj(f[Q>>2]|0,0,Z)|0;if((Q|0)==(J|0))if((K|0)==(Z|0)){b[Y>>0]=48;Aa=Y}else Aa=K;else if(K>>>0>m>>>0){sj(m|0,48,K-n|0)|0;y=K;while(1){_=y+-1|0;if(_>>>0>m>>>0)y=_;else{Aa=_;break}}}else Aa=K;Xo(a,Aa,R-Aa|0);Q=Q+4|0}while(Q>>>0<=E>>>0);if(G|0)Xo(a,16652,1);if(Q>>>0<C>>>0&(va|0)>0){E=va;R=Q;while(1){Y=Rj(f[R>>2]|0,0,Z)|0;if(Y>>>0>m>>>0){sj(m|0,48,Y-n|0)|0;J=Y;while(1){v=J+-1|0;if(v>>>0>m>>>0)J=v;else{Ba=v;break}}}else Ba=Y;Xo(a,Ba,(E|0)<9?E:9);R=R+4|0;J=E+-9|0;if(!(R>>>0<C>>>0&(E|0)>9)){Ca=J;break}else E=J}}else Ca=va;Qk(a,48,Ca+9|0,9,0)}else{E=qa?C:pa+4|0;if((va|0)>-1){R=m+9|0;Z=(wa|0)==0;Q=R;G=0-n|0;J=m+8|0;K=va;v=pa;while(1){x=Rj(f[v>>2]|0,0,R)|0;if((x|0)==(R|0)){b[J>>0]=48;Da=J}else Da=x;do if((v|0)==(pa|0)){x=Da+1|0;Xo(a,Da,1);if(Z&(K|0)<1){Ea=x;break}Xo(a,16652,1);Ea=x}else{if(Da>>>0<=m>>>0){Ea=Da;break}sj(m|0,48,Da+G|0)|0;x=Da;while(1){z=x+-1|0;if(z>>>0>m>>>0)x=z;else{Ea=z;break}}}while(0);Y=Q-Ea|0;Xo(a,Ea,(K|0)>(Y|0)?Y:K);x=K-Y|0;v=v+4|0;if(!(v>>>0<E>>>0&(x|0)>-1)){Fa=x;break}else K=x}}else Fa=va;Qk(a,48,Fa+18|0,18,0);Xo(a,xa,p-xa|0)}Qk(a,32,d,A,g^8192);w=A}while(0);u=j;return ((w|0)<(d|0)?d:w)|0}function pb(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0;c=u;u=u+64|0;d=c+56|0;e=c+52|0;g=c+48|0;h=c+60|0;i=c;j=c+44|0;k=c+40|0;l=c+36|0;m=c+32|0;n=c+28|0;o=c+24|0;p=c+20|0;q=c+16|0;r=c+12|0;if(!(b[a+288>>0]|0)){_e(d,f[a+8>>2]|0);s=a+12|0;t=f[d>>2]|0;f[d>>2]=0;v=f[s>>2]|0;f[s>>2]=t;if(v){Ii(v);Oq(v);v=f[d>>2]|0;f[d>>2]=0;if(v|0){Ii(v);Oq(v)}}else f[d>>2]=0}else{fh(d,f[a+8>>2]|0);v=a+12|0;t=f[d>>2]|0;f[d>>2]=0;s=f[v>>2]|0;f[v>>2]=t;if(s){Ii(s);Oq(s);s=f[d>>2]|0;f[d>>2]=0;if(s|0){Ii(s);Oq(s)}}else f[d>>2]=0}s=a+12|0;t=f[s>>2]|0;if(!t){w=0;u=c;return w|0}if((((f[t+4>>2]|0)-(f[t>>2]|0)>>2>>>0)/3|0|0)==(f[t+40>>2]|0)){w=0;u=c;return w|0}v=a+200|0;f[a+264>>2]=a;x=a+4|0;ci(((f[t+28>>2]|0)-(f[t+24>>2]|0)>>2)-(f[t+44>>2]|0)|0,f[(f[x>>2]|0)+44>>2]|0)|0;t=f[s>>2]|0;ci((((f[t+4>>2]|0)-(f[t>>2]|0)>>2>>>0)/3|0)-(f[t+40>>2]|0)|0,f[(f[x>>2]|0)+44>>2]|0)|0;t=a+28|0;y=a+8|0;z=f[y>>2]|0;A=((f[z+100>>2]|0)-(f[z+96>>2]|0)|0)/12|0;b[d>>0]=0;qh(t,A,d);A=f[s>>2]|0;z=(f[A+28>>2]|0)-(f[A+24>>2]|0)>>2;f[d>>2]=-1;hg(a+52|0,z,d);z=a+40|0;A=f[z>>2]|0;B=a+44|0;C=f[B>>2]|0;if((C|0)!=(A|0))f[B>>2]=C+(~((C+-4-A|0)>>>2)<<2);A=f[s>>2]|0;C=(f[A+4>>2]|0)-(f[A>>2]|0)>>2;gk(z,C-((C>>>0)%3|0)|0);C=a+84|0;z=f[s>>2]|0;A=(f[z+28>>2]|0)-(f[z+24>>2]|0)>>2;b[d>>0]=0;qh(C,A,d);A=a+96|0;z=f[A>>2]|0;B=a+100|0;D=f[B>>2]|0;if((D|0)!=(z|0))f[B>>2]=D+(~((D+-4-z|0)>>>2)<<2);f[a+164>>2]=-1;z=a+168|0;f[z>>2]=0;D=f[a+108>>2]|0;E=a+112|0;F=f[E>>2]|0;if((F|0)!=(D|0))f[E>>2]=F+(~(((F+-12-D|0)>>>0)/12|0)*12|0);D=a+132|0;if(f[D>>2]|0){F=a+128|0;E=f[F>>2]|0;if(E|0){G=E;do{E=G;G=f[G>>2]|0;Oq(E)}while((G|0)!=0)}f[F>>2]=0;F=f[a+124>>2]|0;if(F|0){G=a+120|0;E=0;do{f[(f[G>>2]|0)+(E<<2)>>2]=0;E=E+1|0}while((E|0)!=(F|0))}f[D>>2]=0}f[a+144>>2]=0;D=f[s>>2]|0;F=(f[D+28>>2]|0)-(f[D+24>>2]|0)>>2;f[d>>2]=-1;hg(a+152|0,F,d);F=a+72|0;D=f[F>>2]|0;E=a+76|0;G=f[E>>2]|0;if((G|0)!=(D|0))f[E>>2]=G+(~((G+-4-D|0)>>>2)<<2);D=f[s>>2]|0;gk(F,((f[D+4>>2]|0)-(f[D>>2]|0)>>2>>>0)/3|0);f[a+64>>2]=0;if(!(Be(a)|0)){w=0;u=c;return w|0}if(!(Hg(a)|0)){w=0;u=c;return w|0}D=a+172|0;G=a+176|0;H=(((f[G>>2]|0)-(f[D>>2]|0)|0)/136|0)&255;b[h>>0]=H;I=f[(f[x>>2]|0)+44>>2]|0;J=I+16|0;K=f[J+4>>2]|0;if((K|0)>0|(K|0)==0&(f[J>>2]|0)>>>0>0)L=H;else{f[e>>2]=f[I+4>>2];f[d>>2]=f[e>>2];Me(I,d,h,h+1|0)|0;L=b[h>>0]|0}h=a+284|0;f[h>>2]=L&255;L=f[s>>2]|0;I=(f[L+4>>2]|0)-(f[L>>2]|0)|0;L=I>>2;dj(v);f[i>>2]=0;H=i+4|0;f[H>>2]=0;f[i+8>>2]=0;a:do if((I|0)>0){J=a+104|0;K=i+8|0;M=0;b:while(1){N=(M>>>0)/3|0;O=N>>>5;P=1<<(N&31);if((f[(f[t>>2]|0)+(O<<2)>>2]&P|0)==0?(Q=f[s>>2]|0,f[j>>2]=N,f[d>>2]=f[j>>2],!(_j(Q,d)|0)):0){f[e>>2]=0;f[k>>2]=N;f[d>>2]=f[k>>2];N=xg(a,d,e)|0;fj(v,N);Q=f[e>>2]|0;R=(Q|0)==-1;do if(N){do if(R){S=-1;T=-1;U=-1}else{V=f[f[s>>2]>>2]|0;W=f[V+(Q<<2)>>2]|0;X=Q+1|0;Y=((X>>>0)%3|0|0)==0?Q+-2|0:X;if((Y|0)==-1)Z=-1;else Z=f[V+(Y<<2)>>2]|0;Y=(((Q>>>0)%3|0|0)==0?2:-1)+Q|0;if((Y|0)==-1){S=W;T=-1;U=Z;break}S=W;T=f[V+(Y<<2)>>2]|0;U=Z}while(0);Y=f[C>>2]|0;V=Y+(S>>>5<<2)|0;f[V>>2]=f[V>>2]|1<<(S&31);V=Y+(U>>>5<<2)|0;f[V>>2]=f[V>>2]|1<<(U&31);V=Y+(T>>>5<<2)|0;f[V>>2]=f[V>>2]|1<<(T&31);f[d>>2]=1;V=f[B>>2]|0;if(V>>>0<(f[J>>2]|0)>>>0){f[V>>2]=1;f[B>>2]=V+4}else Ri(A,d);V=(f[t>>2]|0)+(O<<2)|0;f[V>>2]=f[V>>2]|P;V=Q+1|0;if(R)_=-1;else _=((V>>>0)%3|0|0)==0?Q+-2|0:V;f[d>>2]=_;Y=f[H>>2]|0;if(Y>>>0<(f[K>>2]|0)>>>0){f[Y>>2]=_;f[H>>2]=Y+4}else Ri(i,d);if(R)break;Y=((V>>>0)%3|0|0)==0?Q+-2|0:V;if((Y|0)==-1)break;V=f[(f[(f[s>>2]|0)+12>>2]|0)+(Y<<2)>>2]|0;Y=(V|0)==-1;W=Y?-1:(V>>>0)/3|0;if(Y)break;if(f[(f[t>>2]|0)+(W>>>5<<2)>>2]&1<<(W&31)|0)break;f[l>>2]=V;f[d>>2]=f[l>>2];if(!(kc(a,d)|0))break b}else{V=Q+1|0;if(R)$=-1;else $=((V>>>0)%3|0|0)==0?Q+-2|0:V;f[m>>2]=$;f[d>>2]=f[m>>2];Pe(a,d,1)|0;f[n>>2]=f[e>>2];f[d>>2]=f[n>>2];if(!(kc(a,d)|0))break b}while(0)}M=M+1|0;if((M|0)>=(L|0)){aa=62;break a}}ba=0}else aa=62;while(0);if((aa|0)==62){aa=f[F>>2]|0;L=f[E>>2]|0;n=L;if((aa|0)!=(L|0)?(m=L+-4|0,aa>>>0<m>>>0):0){L=aa;aa=m;do{m=f[L>>2]|0;f[L>>2]=f[aa>>2];f[aa>>2]=m;L=L+4|0;aa=aa+-4|0}while(L>>>0<aa>>>0)}f[o>>2]=n;f[p>>2]=f[i>>2];f[q>>2]=f[H>>2];f[g>>2]=f[o>>2];f[e>>2]=f[p>>2];f[d>>2]=f[q>>2];Yd(F,g,e,d)|0;if((f[G>>2]|0)!=(f[D>>2]|0)?(D=f[y>>2]|0,y=((f[D+100>>2]|0)-(f[D+96>>2]|0)|0)/12|0,b[d>>0]=0,qh(t,y,d),y=f[F>>2]|0,F=f[E>>2]|0,(y|0)!=(F|0)):0){E=y;do{f[r>>2]=f[E>>2];f[d>>2]=f[r>>2];He(a,d)|0;E=E+4|0}while((E|0)!=(F|0))}th(v);F=a+232|0;ld(v,F);v=a+280|0;E=f[v>>2]|0;if((E|0?(f[h>>2]|0)>0:0)?(ld(E,F),(f[h>>2]|0)>1):0){E=1;do{ld((f[v>>2]|0)+(E<<5)|0,F);E=E+1|0}while((E|0)<(f[h>>2]|0))}ci((f[a+272>>2]|0)-(f[a+268>>2]|0)>>2,f[(f[x>>2]|0)+44>>2]|0)|0;ci(f[z>>2]|0,f[(f[x>>2]|0)+44>>2]|0)|0;if(bh(a)|0){z=f[(f[x>>2]|0)+44>>2]|0;x=f[F>>2]|0;F=z+16|0;h=f[F+4>>2]|0;if(!((h|0)>0|(h|0)==0&(f[F>>2]|0)>>>0>0)){F=(f[a+236>>2]|0)-x|0;f[e>>2]=f[z+4>>2];f[d>>2]=f[e>>2];Me(z,d,x,x+F|0)|0}ba=1}else ba=0}F=f[i>>2]|0;if(F|0){i=f[H>>2]|0;if((i|0)!=(F|0))f[H>>2]=i+(~((i+-4-F|0)>>>2)<<2);Oq(F)}w=ba;u=c;return w|0}function qb(a,c,e,g,h){a=a|0;c=c|0;e=e|0;g=g|0;h=h|0;var i=0,j=0,k=0,l=0,m=0,n=0,o=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0,Aa=0,Ba=0,Ca=0,Da=0,Ea=0,Fa=0,Ga=0,Ha=0,Ia=0;i=u;u=u+64|0;j=i+16|0;k=i;l=i+24|0;m=i+8|0;n=i+20|0;f[j>>2]=c;c=(a|0)!=0;o=l+40|0;q=o;r=l+39|0;l=m+4|0;s=0;t=0;v=0;a:while(1){do if((t|0)>-1)if((s|0)>(2147483647-t|0)){w=Vq()|0;f[w>>2]=75;x=-1;break}else{x=s+t|0;break}else x=t;while(0);w=f[j>>2]|0;y=b[w>>0]|0;if(!(y<<24>>24)){z=88;break}else{A=y;B=w}b:while(1){switch(A<<24>>24){case 37:{C=B;D=B;z=9;break b;break}case 0:{E=B;break b;break}default:{}}y=B+1|0;f[j>>2]=y;A=b[y>>0]|0;B=y}c:do if((z|0)==9)while(1){z=0;if((b[D+1>>0]|0)!=37){E=C;break c}y=C+1|0;D=D+2|0;f[j>>2]=D;if((b[D>>0]|0)!=37){E=y;break}else{C=y;z=9}}while(0);y=E-w|0;if(c)Xo(a,w,y);if(y|0){s=y;t=x;continue}y=(Aq(b[(f[j>>2]|0)+1>>0]|0)|0)==0;F=f[j>>2]|0;if(!y?(b[F+2>>0]|0)==36:0){G=(b[F+1>>0]|0)+-48|0;H=1;J=3}else{G=-1;H=v;J=1}y=F+J|0;f[j>>2]=y;F=b[y>>0]|0;K=(F<<24>>24)+-32|0;if(K>>>0>31|(1<<K&75913|0)==0){L=0;M=F;N=y}else{K=0;O=F;F=y;while(1){y=1<<(O<<24>>24)+-32|K;P=F+1|0;f[j>>2]=P;Q=b[P>>0]|0;R=(Q<<24>>24)+-32|0;if(R>>>0>31|(1<<R&75913|0)==0){L=y;M=Q;N=P;break}else{K=y;O=Q;F=P}}}if(M<<24>>24==42){if((Aq(b[N+1>>0]|0)|0)!=0?(F=f[j>>2]|0,(b[F+2>>0]|0)==36):0){O=F+1|0;f[h+((b[O>>0]|0)+-48<<2)>>2]=10;S=f[g+((b[O>>0]|0)+-48<<3)>>2]|0;T=1;U=F+3|0}else{if(H|0){V=-1;break}if(c){F=(f[e>>2]|0)+(4-1)&~(4-1);O=f[F>>2]|0;f[e>>2]=F+4;W=O}else W=0;S=W;T=0;U=(f[j>>2]|0)+1|0}f[j>>2]=U;O=(S|0)<0;X=O?0-S|0:S;Y=O?L|8192:L;Z=T;_=U}else{O=Ll(j)|0;if((O|0)<0){V=-1;break}X=O;Y=L;Z=H;_=f[j>>2]|0}do if((b[_>>0]|0)==46){if((b[_+1>>0]|0)!=42){f[j>>2]=_+1;O=Ll(j)|0;$=O;aa=f[j>>2]|0;break}if(Aq(b[_+2>>0]|0)|0?(O=f[j>>2]|0,(b[O+3>>0]|0)==36):0){F=O+2|0;f[h+((b[F>>0]|0)+-48<<2)>>2]=10;K=f[g+((b[F>>0]|0)+-48<<3)>>2]|0;F=O+4|0;f[j>>2]=F;$=K;aa=F;break}if(Z|0){V=-1;break a}if(c){F=(f[e>>2]|0)+(4-1)&~(4-1);K=f[F>>2]|0;f[e>>2]=F+4;ba=K}else ba=0;K=(f[j>>2]|0)+2|0;f[j>>2]=K;$=ba;aa=K}else{$=-1;aa=_}while(0);K=0;F=aa;while(1){if(((b[F>>0]|0)+-65|0)>>>0>57){V=-1;break a}O=F;F=F+1|0;f[j>>2]=F;ca=b[(b[O>>0]|0)+-65+(16124+(K*58|0))>>0]|0;da=ca&255;if((da+-1|0)>>>0>=8)break;else K=da}if(!(ca<<24>>24)){V=-1;break}O=(G|0)>-1;do if(ca<<24>>24==19)if(O){V=-1;break a}else z=50;else{if(O){f[h+(G<<2)>>2]=da;P=g+(G<<3)|0;Q=f[P+4>>2]|0;y=k;f[y>>2]=f[P>>2];f[y+4>>2]=Q;z=50;break}if(!c){V=0;break a}We(k,da,e);ea=f[j>>2]|0}while(0);if((z|0)==50){z=0;if(c)ea=F;else{s=0;t=x;v=Z;continue}}O=b[ea+-1>>0]|0;Q=(K|0)!=0&(O&15|0)==3?O&-33:O;O=Y&-65537;y=(Y&8192|0)==0?Y:O;d:do switch(Q|0){case 110:{switch((K&255)<<24>>24){case 0:{f[f[k>>2]>>2]=x;s=0;t=x;v=Z;continue a;break}case 1:{f[f[k>>2]>>2]=x;s=0;t=x;v=Z;continue a;break}case 2:{P=f[k>>2]|0;f[P>>2]=x;f[P+4>>2]=((x|0)<0)<<31>>31;s=0;t=x;v=Z;continue a;break}case 3:{d[f[k>>2]>>1]=x;s=0;t=x;v=Z;continue a;break}case 4:{b[f[k>>2]>>0]=x;s=0;t=x;v=Z;continue a;break}case 6:{f[f[k>>2]>>2]=x;s=0;t=x;v=Z;continue a;break}case 7:{P=f[k>>2]|0;f[P>>2]=x;f[P+4>>2]=((x|0)<0)<<31>>31;s=0;t=x;v=Z;continue a;break}default:{s=0;t=x;v=Z;continue a}}break}case 112:{fa=120;ga=$>>>0>8?$:8;ha=y|8;z=62;break}case 88:case 120:{fa=Q;ga=$;ha=y;z=62;break}case 111:{P=k;R=f[P>>2]|0;ia=f[P+4>>2]|0;P=Ol(R,ia,o)|0;ja=q-P|0;ka=P;la=0;ma=16588;na=(y&8|0)==0|($|0)>(ja|0)?$:ja+1|0;oa=y;pa=R;qa=ia;z=68;break}case 105:case 100:{ia=k;R=f[ia>>2]|0;ja=f[ia+4>>2]|0;if((ja|0)<0){ia=Xn(0,0,R|0,ja|0)|0;P=I;ra=k;f[ra>>2]=ia;f[ra+4>>2]=P;sa=1;ta=16588;ua=ia;va=P;z=67;break d}else{sa=(y&2049|0)!=0&1;ta=(y&2048|0)==0?((y&1|0)==0?16588:16590):16589;ua=R;va=ja;z=67;break d}break}case 117:{ja=k;sa=0;ta=16588;ua=f[ja>>2]|0;va=f[ja+4>>2]|0;z=67;break}case 99:{b[r>>0]=f[k>>2];wa=r;xa=0;ya=16588;za=o;Aa=1;Ba=O;break}case 109:{ja=Vq()|0;Ca=$o(f[ja>>2]|0)|0;z=72;break}case 115:{ja=f[k>>2]|0;Ca=ja|0?ja:16598;z=72;break}case 67:{f[m>>2]=f[k>>2];f[l>>2]=0;f[k>>2]=m;Da=-1;Ea=m;z=76;break}case 83:{ja=f[k>>2]|0;if(!$){Qk(a,32,X,0,y);Fa=0;z=85}else{Da=$;Ea=ja;z=76}break}case 65:case 71:case 70:case 69:case 97:case 103:case 102:case 101:{s=ob(a,+p[k>>3],X,$,y,Q)|0;t=x;v=Z;continue a;break}default:{wa=w;xa=0;ya=16588;za=o;Aa=$;Ba=y}}while(0);e:do if((z|0)==62){z=0;w=k;Q=f[w>>2]|0;K=f[w+4>>2]|0;w=ul(Q,K,o,fa&32)|0;F=(ha&8|0)==0|(Q|0)==0&(K|0)==0;ka=w;la=F?0:2;ma=F?16588:16588+(fa>>4)|0;na=ga;oa=ha;pa=Q;qa=K;z=68}else if((z|0)==67){z=0;ka=Rj(ua,va,o)|0;la=sa;ma=ta;na=$;oa=y;pa=ua;qa=va;z=68}else if((z|0)==72){z=0;K=tg(Ca,0,$)|0;Q=(K|0)==0;wa=Ca;xa=0;ya=16588;za=Q?Ca+$|0:K;Aa=Q?$:K-Ca|0;Ba=O}else if((z|0)==76){z=0;K=Ea;Q=0;F=0;while(1){w=f[K>>2]|0;if(!w){Ga=Q;Ha=F;break}ja=Po(n,w)|0;if((ja|0)<0|ja>>>0>(Da-Q|0)>>>0){Ga=Q;Ha=ja;break}w=ja+Q|0;if(Da>>>0>w>>>0){K=K+4|0;Q=w;F=ja}else{Ga=w;Ha=ja;break}}if((Ha|0)<0){V=-1;break a}Qk(a,32,X,Ga,y);if(!Ga){Fa=0;z=85}else{F=Ea;Q=0;while(1){K=f[F>>2]|0;if(!K){Fa=Ga;z=85;break e}ja=Po(n,K)|0;Q=ja+Q|0;if((Q|0)>(Ga|0)){Fa=Ga;z=85;break e}Xo(a,n,ja);if(Q>>>0>=Ga>>>0){Fa=Ga;z=85;break}else F=F+4|0}}}while(0);if((z|0)==68){z=0;O=(pa|0)!=0|(qa|0)!=0;F=(na|0)!=0|O;Q=q-ka+((O^1)&1)|0;wa=F?ka:o;xa=la;ya=ma;za=o;Aa=F?((na|0)>(Q|0)?na:Q):na;Ba=(na|0)>-1?oa&-65537:oa}else if((z|0)==85){z=0;Qk(a,32,X,Fa,y^8192);s=(X|0)>(Fa|0)?X:Fa;t=x;v=Z;continue}Q=za-wa|0;F=(Aa|0)<(Q|0)?Q:Aa;O=F+xa|0;ja=(X|0)<(O|0)?O:X;Qk(a,32,ja,O,Ba);Xo(a,ya,xa);Qk(a,48,ja,O,Ba^65536);Qk(a,48,F,Q,0);Xo(a,wa,Q);Qk(a,32,ja,O,Ba^8192);s=ja;t=x;v=Z}f:do if((z|0)==88)if(!a)if(v){Z=1;while(1){t=f[h+(Z<<2)>>2]|0;if(!t){Ia=Z;break}We(g+(Z<<3)|0,t,e);t=Z+1|0;if((Z|0)<9)Z=t;else{Ia=t;break}}if((Ia|0)<10){Z=Ia;while(1){if(f[h+(Z<<2)>>2]|0){V=-1;break f}if((Z|0)<9)Z=Z+1|0;else{V=1;break}}}else V=1}else V=0;else V=x;while(0);u=i;return V|0}function rb(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0;c=u;u=u+64|0;d=c+56|0;e=c+52|0;g=c+48|0;h=c+60|0;i=c;j=c+44|0;k=c+40|0;l=c+36|0;m=c+32|0;n=c+28|0;o=c+24|0;p=c+20|0;q=c+16|0;r=c+12|0;if(!(b[a+352>>0]|0)){_e(d,f[a+8>>2]|0);s=a+12|0;t=f[d>>2]|0;f[d>>2]=0;v=f[s>>2]|0;f[s>>2]=t;if(v){Ii(v);Oq(v);v=f[d>>2]|0;f[d>>2]=0;if(v|0){Ii(v);Oq(v)}}else f[d>>2]=0}else{fh(d,f[a+8>>2]|0);v=a+12|0;t=f[d>>2]|0;f[d>>2]=0;s=f[v>>2]|0;f[v>>2]=t;if(s){Ii(s);Oq(s);s=f[d>>2]|0;f[d>>2]=0;if(s|0){Ii(s);Oq(s)}}else f[d>>2]=0}s=a+12|0;t=f[s>>2]|0;if(!t){w=0;u=c;return w|0}if((((f[t+4>>2]|0)-(f[t>>2]|0)>>2>>>0)/3|0|0)==(f[t+40>>2]|0)){w=0;u=c;return w|0}t=a+200|0;ve(t,a)|0;v=f[s>>2]|0;x=a+4|0;ci(((f[v+28>>2]|0)-(f[v+24>>2]|0)>>2)-(f[v+44>>2]|0)|0,f[(f[x>>2]|0)+44>>2]|0)|0;v=f[s>>2]|0;ci((((f[v+4>>2]|0)-(f[v>>2]|0)>>2>>>0)/3|0)-(f[v+40>>2]|0)|0,f[(f[x>>2]|0)+44>>2]|0)|0;v=a+28|0;y=a+8|0;z=f[y>>2]|0;A=((f[z+100>>2]|0)-(f[z+96>>2]|0)|0)/12|0;b[d>>0]=0;qh(v,A,d);A=f[s>>2]|0;z=(f[A+28>>2]|0)-(f[A+24>>2]|0)>>2;f[d>>2]=-1;hg(a+52|0,z,d);z=a+40|0;A=f[z>>2]|0;B=a+44|0;C=f[B>>2]|0;if((C|0)!=(A|0))f[B>>2]=C+(~((C+-4-A|0)>>>2)<<2);A=f[s>>2]|0;C=(f[A+4>>2]|0)-(f[A>>2]|0)>>2;gk(z,C-((C>>>0)%3|0)|0);C=a+84|0;z=f[s>>2]|0;A=(f[z+28>>2]|0)-(f[z+24>>2]|0)>>2;b[d>>0]=0;qh(C,A,d);A=a+96|0;z=f[A>>2]|0;B=a+100|0;D=f[B>>2]|0;if((D|0)!=(z|0))f[B>>2]=D+(~((D+-4-z|0)>>>2)<<2);f[a+164>>2]=-1;z=a+168|0;f[z>>2]=0;D=f[a+108>>2]|0;E=a+112|0;F=f[E>>2]|0;if((F|0)!=(D|0))f[E>>2]=F+(~(((F+-12-D|0)>>>0)/12|0)*12|0);D=a+132|0;if(f[D>>2]|0){F=a+128|0;E=f[F>>2]|0;if(E|0){G=E;do{E=G;G=f[G>>2]|0;Oq(E)}while((G|0)!=0)}f[F>>2]=0;F=f[a+124>>2]|0;if(F|0){G=a+120|0;E=0;do{f[(f[G>>2]|0)+(E<<2)>>2]=0;E=E+1|0}while((E|0)!=(F|0))}f[D>>2]=0}f[a+144>>2]=0;D=f[s>>2]|0;F=(f[D+28>>2]|0)-(f[D+24>>2]|0)>>2;f[d>>2]=-1;hg(a+152|0,F,d);F=a+72|0;D=f[F>>2]|0;E=a+76|0;G=f[E>>2]|0;if((G|0)!=(D|0))f[E>>2]=G+(~((G+-4-D|0)>>>2)<<2);D=f[s>>2]|0;gk(F,((f[D+4>>2]|0)-(f[D>>2]|0)>>2>>>0)/3|0);f[a+64>>2]=0;if(!(Be(a)|0)){w=0;u=c;return w|0}if(!(Dg(a)|0)){w=0;u=c;return w|0}D=a+172|0;G=a+176|0;H=(((f[G>>2]|0)-(f[D>>2]|0)|0)/136|0)&255;b[h>>0]=H;I=f[(f[x>>2]|0)+44>>2]|0;J=I+16|0;K=f[J+4>>2]|0;if((K|0)>0|(K|0)==0&(f[J>>2]|0)>>>0>0)L=H;else{f[e>>2]=f[I+4>>2];f[d>>2]=f[e>>2];Me(I,d,h,h+1|0)|0;L=b[h>>0]|0}f[a+284>>2]=L&255;L=f[s>>2]|0;h=(f[L+4>>2]|0)-(f[L>>2]|0)|0;L=h>>2;dj(t);f[i>>2]=0;I=i+4|0;f[I>>2]=0;f[i+8>>2]=0;a:do if((h|0)>0){H=a+104|0;J=i+8|0;K=0;b:while(1){M=(K>>>0)/3|0;N=M>>>5;O=1<<(M&31);if((f[(f[v>>2]|0)+(N<<2)>>2]&O|0)==0?(P=f[s>>2]|0,f[j>>2]=M,f[d>>2]=f[j>>2],!(_j(P,d)|0)):0){f[e>>2]=0;f[k>>2]=M;f[d>>2]=f[k>>2];M=xg(a,d,e)|0;fj(t,M);P=f[e>>2]|0;Q=(P|0)==-1;do if(M){do if(Q){R=-1;S=-1;T=-1}else{U=f[f[s>>2]>>2]|0;V=f[U+(P<<2)>>2]|0;W=P+1|0;X=((W>>>0)%3|0|0)==0?P+-2|0:W;if((X|0)==-1)Y=-1;else Y=f[U+(X<<2)>>2]|0;X=(((P>>>0)%3|0|0)==0?2:-1)+P|0;if((X|0)==-1){R=-1;S=Y;T=V;break}R=f[U+(X<<2)>>2]|0;S=Y;T=V}while(0);V=f[C>>2]|0;X=V+(T>>>5<<2)|0;f[X>>2]=f[X>>2]|1<<(T&31);X=V+(S>>>5<<2)|0;f[X>>2]=f[X>>2]|1<<(S&31);X=V+(R>>>5<<2)|0;f[X>>2]=f[X>>2]|1<<(R&31);f[d>>2]=1;X=f[B>>2]|0;if(X>>>0<(f[H>>2]|0)>>>0){f[X>>2]=1;f[B>>2]=X+4}else Ri(A,d);X=(f[v>>2]|0)+(N<<2)|0;f[X>>2]=f[X>>2]|O;X=P+1|0;if(Q)Z=-1;else Z=((X>>>0)%3|0|0)==0?P+-2|0:X;f[d>>2]=Z;V=f[I>>2]|0;if(V>>>0<(f[J>>2]|0)>>>0){f[V>>2]=Z;f[I>>2]=V+4}else Ri(i,d);if(Q)break;V=((X>>>0)%3|0|0)==0?P+-2|0:X;if((V|0)==-1)break;X=f[(f[(f[s>>2]|0)+12>>2]|0)+(V<<2)>>2]|0;V=(X|0)==-1;U=V?-1:(X>>>0)/3|0;if(V)break;if(f[(f[v>>2]|0)+(U>>>5<<2)>>2]&1<<(U&31)|0)break;f[l>>2]=X;f[d>>2]=f[l>>2];if(!(Yb(a,d)|0))break b}else{X=P+1|0;if(Q)_=-1;else _=((X>>>0)%3|0|0)==0?P+-2|0:X;f[m>>2]=_;f[d>>2]=f[m>>2];Pe(a,d,1)|0;f[n>>2]=f[e>>2];f[d>>2]=f[n>>2];if(!(Yb(a,d)|0))break b}while(0)}K=K+1|0;if((K|0)>=(L|0)){$=62;break a}}aa=0}else $=62;while(0);if(($|0)==62){$=f[F>>2]|0;L=f[E>>2]|0;n=L;if(($|0)!=(L|0)?(m=L+-4|0,$>>>0<m>>>0):0){L=$;$=m;do{m=f[L>>2]|0;f[L>>2]=f[$>>2];f[$>>2]=m;L=L+4|0;$=$+-4|0}while(L>>>0<$>>>0)}f[o>>2]=n;f[p>>2]=f[i>>2];f[q>>2]=f[I>>2];f[g>>2]=f[o>>2];f[e>>2]=f[p>>2];f[d>>2]=f[q>>2];Yd(F,g,e,d)|0;if((f[G>>2]|0)!=(f[D>>2]|0)?(D=f[y>>2]|0,y=((f[D+100>>2]|0)-(f[D+96>>2]|0)|0)/12|0,b[d>>0]=0,qh(v,y,d),y=f[F>>2]|0,F=f[E>>2]|0,(y|0)!=(F|0)):0){E=y;do{f[r>>2]=f[E>>2];f[d>>2]=f[r>>2];He(a,d)|0;E=E+4|0}while((E|0)!=(F|0))}pi(t);ci(f[a+324>>2]|0,f[(f[x>>2]|0)+44>>2]|0)|0;ci(f[z>>2]|0,f[(f[x>>2]|0)+44>>2]|0)|0;if(bh(a)|0){z=f[(f[x>>2]|0)+44>>2]|0;x=f[a+232>>2]|0;t=z+16|0;F=f[t+4>>2]|0;if(!((F|0)>0|(F|0)==0&(f[t>>2]|0)>>>0>0)){t=(f[a+236>>2]|0)-x|0;f[e>>2]=f[z+4>>2];f[d>>2]=f[e>>2];Me(z,d,x,x+t|0)|0}aa=1}else aa=0}t=f[i>>2]|0;if(t|0){i=f[I>>2]|0;if((i|0)!=(t|0))f[I>>2]=i+(~((i+-4-t|0)>>>2)<<2);Oq(t)}w=aa;u=c;return w|0}function sb(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=Oa,ma=Oa,na=Oa,oa=0,pa=0,qa=0,ra=0,sa=0;c=u;u=u+64|0;d=c+28|0;e=c+16|0;g=c+4|0;h=c;i=a;j=a+80|0;k=f[j>>2]|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;f[d+12>>2]=0;f[d+16>>2]=i;l=d+20|0;n[l>>2]=$(1.0);f[d+24>>2]=i;Ih(d,k);k=f[j>>2]|0;f[e>>2]=0;i=e+4|0;f[i>>2]=0;f[e+8>>2]=0;m=(k|0)==0;do if(!m)if(k>>>0>1073741823)aq(e);else{o=k<<2;p=ln(o)|0;f[e>>2]=p;q=p+(k<<2)|0;f[e+8>>2]=q;sj(p|0,0,o|0)|0;f[i>>2]=q;break}while(0);f[g>>2]=0;k=g+4|0;f[k>>2]=0;f[g+8>>2]=0;f[h>>2]=0;if(!m){m=d+16|0;q=d+4|0;o=d+12|0;p=d+8|0;r=g+8|0;s=d+24|0;t=0;v=0;while(1){w=f[m>>2]|0;x=f[w+8>>2]|0;y=(f[w+12>>2]|0)-x|0;w=(y|0)>0;z=x;if(w){x=y>>>2;A=0;B=0;while(1){C=f[z+(A<<2)>>2]|0;if(!(b[C+84>>0]|0))D=f[(f[C+68>>2]|0)+(v<<2)>>2]|0;else D=v;C=D+239^B;A=A+1|0;if((A|0)>=(x|0)){E=C;break}else B=C}}else E=0;B=f[q>>2]|0;x=(B|0)==0;a:do if(!x){A=B+-1|0;C=(A&B|0)==0;if(!C)if(E>>>0<B>>>0)F=E;else F=(E>>>0)%(B>>>0)|0;else F=A&E;G=f[(f[d>>2]|0)+(F<<2)>>2]|0;if((G|0)!=0?(H=f[G>>2]|0,(H|0)!=0):0){G=f[s>>2]|0;I=G+8|0;J=G+12|0;b:do if(C){G=H;while(1){K=f[G+4>>2]|0;L=(K|0)==(E|0);if(!(L|(K&A|0)==(F|0))){M=44;break a}c:do if(L){K=f[G+8>>2]|0;N=f[I>>2]|0;O=(f[J>>2]|0)-N|0;P=N;if((O|0)<=0){Q=G;break b}N=O>>>2;O=0;while(1){R=f[P+(O<<2)>>2]|0;if(!(b[R+84>>0]|0)){S=f[R+68>>2]|0;T=f[S+(v<<2)>>2]|0;U=f[S+(K<<2)>>2]|0}else{T=v;U=K}O=O+1|0;if((U|0)!=(T|0))break c;if((O|0)>=(N|0)){V=G;M=42;break b}}}while(0);G=f[G>>2]|0;if(!G){M=44;break a}}}else{G=H;while(1){L=f[G+4>>2]|0;d:do if((L|0)!=(E|0)){if(L>>>0<B>>>0)X=L;else X=(L>>>0)%(B>>>0)|0;if((X|0)!=(F|0)){M=44;break a}}else{N=f[G+8>>2]|0;O=f[I>>2]|0;K=(f[J>>2]|0)-O|0;P=O;if((K|0)<=0){Q=G;break b}O=K>>>2;K=0;while(1){S=f[P+(K<<2)>>2]|0;if(!(b[S+84>>0]|0)){R=f[S+68>>2]|0;Y=f[R+(v<<2)>>2]|0;Z=f[R+(N<<2)>>2]|0}else{Y=v;Z=N}K=K+1|0;if((Z|0)!=(Y|0))break d;if((K|0)>=(O|0)){V=G;M=42;break b}}}while(0);G=f[G>>2]|0;if(!G){M=44;break a}}}while(0);if((M|0)==42){M=0;if(!V){M=44;break}else Q=V}f[(f[e>>2]|0)+(v<<2)>>2]=f[Q+12>>2];_=t}else M=44}else M=44;while(0);do if((M|0)==44){M=0;if(w){J=y>>>2;I=0;H=0;while(1){A=f[z+(I<<2)>>2]|0;if(!(b[A+84>>0]|0))aa=f[(f[A+68>>2]|0)+(v<<2)>>2]|0;else aa=v;A=aa+239^H;I=I+1|0;if((I|0)>=(J|0)){ba=A;break}else H=A}}else ba=0;e:do if(!x){H=B+-1|0;J=(H&B|0)==0;if(!J)if(ba>>>0<B>>>0)ca=ba;else ca=(ba>>>0)%(B>>>0)|0;else ca=H&ba;I=f[(f[d>>2]|0)+(ca<<2)>>2]|0;if((I|0)!=0?(A=f[I>>2]|0,(A|0)!=0):0){I=f[s>>2]|0;C=I+8|0;G=I+12|0;if(J){J=A;while(1){I=f[J+4>>2]|0;if(!((I|0)==(ba|0)|(I&H|0)==(ca|0))){da=ca;M=76;break e}I=f[J+8>>2]|0;L=f[C>>2]|0;O=(f[G>>2]|0)-L|0;K=L;if((O|0)<=0){ea=v;break e}L=O>>>2;O=0;while(1){N=f[K+(O<<2)>>2]|0;if(!(b[N+84>>0]|0)){P=f[N+68>>2]|0;fa=f[P+(v<<2)>>2]|0;ga=f[P+(I<<2)>>2]|0}else{fa=v;ga=I}O=O+1|0;if((ga|0)!=(fa|0))break;if((O|0)>=(L|0)){ea=v;break e}}J=f[J>>2]|0;if(!J){da=ca;M=76;break e}}}else ha=A;while(1){J=f[ha+4>>2]|0;if((J|0)!=(ba|0)){if(J>>>0<B>>>0)ia=J;else ia=(J>>>0)%(B>>>0)|0;if((ia|0)!=(ca|0)){da=ca;M=76;break e}}J=f[ha+8>>2]|0;H=f[C>>2]|0;L=(f[G>>2]|0)-H|0;O=H;if((L|0)<=0){ea=v;break e}H=L>>>2;L=0;while(1){I=f[O+(L<<2)>>2]|0;if(!(b[I+84>>0]|0)){K=f[I+68>>2]|0;ja=f[K+(v<<2)>>2]|0;ka=f[K+(J<<2)>>2]|0}else{ja=v;ka=J}L=L+1|0;if((ka|0)!=(ja|0))break;if((L|0)>=(H|0)){ea=v;break e}}ha=f[ha>>2]|0;if(!ha){da=ca;M=76;break}}}else{da=ca;M=76}}else{da=0;M=76}while(0);if((M|0)==76){M=0;G=ln(16)|0;f[G+8>>2]=v;f[G+12>>2]=t;f[G+4>>2]=ba;f[G>>2]=0;la=$(((f[o>>2]|0)+1|0)>>>0);ma=$(B>>>0);na=$(n[l>>2]);do if(x|$(na*ma)<la){C=B<<1|(B>>>0<3|(B+-1&B|0)!=0)&1;A=~~$(W($(la/na)))>>>0;Ih(d,C>>>0<A>>>0?A:C);C=f[q>>2]|0;A=C+-1|0;if(!(A&C)){oa=C;pa=A&ba;break}if(ba>>>0<C>>>0){oa=C;pa=ba}else{oa=C;pa=(ba>>>0)%(C>>>0)|0}}else{oa=B;pa=da}while(0);C=(f[d>>2]|0)+(pa<<2)|0;A=f[C>>2]|0;if(!A){f[G>>2]=f[p>>2];f[p>>2]=G;f[C>>2]=p;C=f[G>>2]|0;if(C|0){H=f[C+4>>2]|0;C=oa+-1|0;if(C&oa)if(H>>>0<oa>>>0)qa=H;else qa=(H>>>0)%(oa>>>0)|0;else qa=H&C;ra=(f[d>>2]|0)+(qa<<2)|0;M=89}}else{f[G>>2]=f[A>>2];ra=A;M=89}if((M|0)==89){M=0;f[ra>>2]=G}f[o>>2]=(f[o>>2]|0)+1;ea=f[h>>2]|0}A=t+1|0;f[(f[e>>2]|0)+(ea<<2)>>2]=t;C=f[k>>2]|0;if((C|0)==(f[r>>2]|0)){Ri(g,h);_=A;break}else{f[C>>2]=f[h>>2];f[k>>2]=C+4;_=A;break}}while(0);v=(f[h>>2]|0)+1|0;f[h>>2]=v;sa=f[j>>2]|0;if(v>>>0>=sa>>>0)break;else t=_}if((_|0)!=(sa|0)){Xa[f[(f[a>>2]|0)+24>>2]&15](a,e,g);f[j>>2]=_}}_=f[g>>2]|0;if(_|0){g=f[k>>2]|0;if((g|0)!=(_|0))f[k>>2]=g+(~((g+-4-_|0)>>>2)<<2);Oq(_)}_=f[e>>2]|0;if(_|0){e=f[i>>2]|0;if((e|0)!=(_|0))f[i>>2]=e+(~((e+-4-_|0)>>>2)<<2);Oq(_)}_=f[d+8>>2]|0;if(_|0){e=_;do{_=e;e=f[e>>2]|0;Oq(_)}while((e|0)!=0)}e=f[d>>2]|0;f[d>>2]=0;if(!e){u=c;return}Oq(e);u=c;return}function tb(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0;g=u;u=u+80|0;h=g+76|0;i=g+72|0;j=g+48|0;k=g+24|0;l=g;m=a+32|0;n=f[c>>2]|0;c=n+1|0;if((n|0)!=-1){o=((c>>>0)%3|0|0)==0?n+-2|0:c;c=(((n>>>0)%3|0|0)==0?2:-1)+n|0;if((o|0)==-1)p=-1;else p=f[(f[f[m>>2]>>2]|0)+(o<<2)>>2]|0;if((c|0)==-1){q=p;r=-1}else{q=p;r=f[(f[f[m>>2]>>2]|0)+(c<<2)>>2]|0}}else{q=-1;r=-1}c=f[a+36>>2]|0;m=f[c>>2]|0;p=(f[c+4>>2]|0)-m>>2;if(p>>>0<=q>>>0)aq(c);o=m;m=f[o+(q<<2)>>2]|0;if(p>>>0<=r>>>0)aq(c);c=f[o+(r<<2)>>2]|0;r=(m|0)<(e|0);do if(r&(c|0)<(e|0)){o=m<<1;p=f[d+(o<<2)>>2]|0;q=((p|0)<0)<<31>>31;n=f[d+((o|1)<<2)>>2]|0;o=((n|0)<0)<<31>>31;s=c<<1;t=f[d+(s<<2)>>2]|0;v=f[d+((s|1)<<2)>>2]|0;if(!((t|0)!=(p|0)|(v|0)!=(n|0))){f[a+8>>2]=p;f[a+12>>2]=n;u=g;return}s=a+4|0;w=f[(f[s>>2]|0)+(e<<2)>>2]|0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;f[j+12>>2]=0;f[j+16>>2]=0;f[j+20>>2]=0;x=f[a>>2]|0;if(!(b[x+84>>0]|0))y=f[(f[x+68>>2]|0)+(w<<2)>>2]|0;else y=w;f[i>>2]=y;w=b[x+24>>0]|0;f[h>>2]=f[i>>2];vb(x,h,w,j)|0;w=f[(f[s>>2]|0)+(m<<2)>>2]|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;f[k+12>>2]=0;f[k+16>>2]=0;f[k+20>>2]=0;x=f[a>>2]|0;if(!(b[x+84>>0]|0))z=f[(f[x+68>>2]|0)+(w<<2)>>2]|0;else z=w;f[i>>2]=z;w=b[x+24>>0]|0;f[h>>2]=f[i>>2];vb(x,h,w,k)|0;w=f[(f[s>>2]|0)+(c<<2)>>2]|0;f[l>>2]=0;f[l+4>>2]=0;f[l+8>>2]=0;f[l+12>>2]=0;f[l+16>>2]=0;f[l+20>>2]=0;s=f[a>>2]|0;if(!(b[s+84>>0]|0))A=f[(f[s+68>>2]|0)+(w<<2)>>2]|0;else A=w;f[i>>2]=A;w=b[s+24>>0]|0;f[h>>2]=f[i>>2];vb(s,h,w,l)|0;w=l;s=k;x=f[s>>2]|0;B=f[s+4>>2]|0;s=Xn(f[w>>2]|0,f[w+4>>2]|0,x|0,B|0)|0;w=I;C=l+8|0;D=k+8|0;E=f[D>>2]|0;F=f[D+4>>2]|0;D=Xn(f[C>>2]|0,f[C+4>>2]|0,E|0,F|0)|0;C=I;G=l+16|0;H=k+16|0;J=f[H>>2]|0;K=f[H+4>>2]|0;H=Xn(f[G>>2]|0,f[G+4>>2]|0,J|0,K|0)|0;G=I;L=un(s|0,w|0,s|0,w|0)|0;M=I;N=un(D|0,C|0,D|0,C|0)|0;O=Vn(N|0,I|0,L|0,M|0)|0;M=I;L=un(H|0,G|0,H|0,G|0)|0;N=Vn(O|0,M|0,L|0,I|0)|0;L=I;if((N|0)==0&(L|0)==0)break;M=j;O=Xn(f[M>>2]|0,f[M+4>>2]|0,x|0,B|0)|0;B=I;x=j+8|0;M=Xn(f[x>>2]|0,f[x+4>>2]|0,E|0,F|0)|0;F=I;E=j+16|0;x=Xn(f[E>>2]|0,f[E+4>>2]|0,J|0,K|0)|0;K=I;J=un(O|0,B|0,s|0,w|0)|0;E=I;P=un(M|0,F|0,D|0,C|0)|0;Q=Vn(P|0,I|0,J|0,E|0)|0;E=I;J=un(x|0,K|0,H|0,G|0)|0;P=Vn(Q|0,E|0,J|0,I|0)|0;J=I;E=Xn(t|0,((t|0)<0)<<31>>31|0,p|0,q|0)|0;t=I;Q=Xn(v|0,((v|0)<0)<<31>>31|0,n|0,o|0)|0;v=I;R=un(N|0,L|0,p|0,q|0)|0;q=I;p=un(N|0,L|0,n|0,o|0)|0;o=I;n=un(P|0,J|0,E|0,t|0)|0;S=I;T=un(P|0,J|0,Q|0,v|0)|0;U=I;V=Vn(n|0,S|0,R|0,q|0)|0;q=I;R=Vn(T|0,U|0,p|0,o|0)|0;o=I;p=un(P|0,J|0,s|0,w|0)|0;w=I;s=un(P|0,J|0,D|0,C|0)|0;C=I;D=un(P|0,J|0,H|0,G|0)|0;G=I;H=Ik(p|0,w|0,N|0,L|0)|0;w=I;p=Ik(s|0,C|0,N|0,L|0)|0;C=I;s=Ik(D|0,G|0,N|0,L|0)|0;G=I;D=Xn(O|0,B|0,H|0,w|0)|0;w=I;H=Xn(M|0,F|0,p|0,C|0)|0;C=I;p=Xn(x|0,K|0,s|0,G|0)|0;G=I;s=un(D|0,w|0,D|0,w|0)|0;w=I;D=un(H|0,C|0,H|0,C|0)|0;C=Vn(D|0,I|0,s|0,w|0)|0;w=I;s=un(p|0,G|0,p|0,G|0)|0;G=Vn(C|0,w|0,s|0,I|0)|0;s=I;w=Xn(0,0,E|0,t|0)|0;t=I;E=un(G|0,s|0,N|0,L|0)|0;s=I;switch(E|0){case 0:{if(!s){W=0;X=0}else{Y=1;Z=0;_=E;$=s;aa=23}break}case 1:{if(!s){ba=1;ca=0;aa=24}else{Y=1;Z=0;_=E;$=s;aa=23}break}default:{Y=1;Z=0;_=E;$=s;aa=23}}if((aa|0)==23)while(1){aa=0;G=Tn(Y|0,Z|0,1)|0;C=I;p=_;_=Yn(_|0,$|0,2)|0;if(!($>>>0>0|($|0)==0&p>>>0>7)){ba=G;ca=C;aa=24;break}else{Y=G;Z=C;$=I;aa=23}}if((aa|0)==24)while(1){aa=0;C=jp(E|0,s|0,ba|0,ca|0)|0;G=Vn(C|0,I|0,ba|0,ca|0)|0;C=Yn(G|0,I|0,1)|0;G=I;p=un(C|0,G|0,C|0,G|0)|0;D=I;if(D>>>0>s>>>0|(D|0)==(s|0)&p>>>0>E>>>0){ba=C;ca=G;aa=24}else{W=C;X=G;break}}E=un(W|0,X|0,Q|0,v|0)|0;s=I;G=un(W|0,X|0,w|0,t|0)|0;C=I;p=Vn(E|0,s|0,V|0,q|0)|0;D=I;H=Vn(G|0,C|0,R|0,o|0)|0;K=I;x=Ik(p|0,D|0,N|0,L|0)|0;D=I;p=Ik(H|0,K|0,N|0,L|0)|0;K=I;H=Xn(V|0,q|0,E|0,s|0)|0;s=I;E=Xn(R|0,o|0,G|0,C|0)|0;C=I;G=Ik(H|0,s|0,N|0,L|0)|0;s=I;H=Ik(E|0,C|0,N|0,L|0)|0;C=I;E=e<<1;F=f[d+(E<<2)>>2]|0;M=((F|0)<0)<<31>>31;B=f[d+((E|1)<<2)>>2]|0;E=((B|0)<0)<<31>>31;O=Xn(F|0,M|0,x|0,D|0)|0;J=I;P=Xn(B|0,E|0,p|0,K|0)|0;U=I;T=un(O|0,J|0,O|0,J|0)|0;J=I;O=un(P|0,U|0,P|0,U|0)|0;U=Vn(O|0,I|0,T|0,J|0)|0;J=I;T=Xn(F|0,M|0,G|0,s|0)|0;M=I;F=Xn(B|0,E|0,H|0,C|0)|0;E=I;B=un(T|0,M|0,T|0,M|0)|0;M=I;T=un(F|0,E|0,F|0,E|0)|0;E=Vn(T|0,I|0,B|0,M|0)|0;M=I;B=a+16|0;T=a+20|0;F=f[T>>2]|0;O=f[a+24>>2]|0;P=(F|0)==(O<<5|0);if(J>>>0<M>>>0|(J|0)==(M|0)&U>>>0<E>>>0){do if(P)if((F+1|0)<0)aq(B);else{E=O<<6;U=F+32&-32;vi(B,F>>>0<1073741823?(E>>>0<U>>>0?U:E):2147483647);da=f[T>>2]|0;break}else da=F;while(0);f[T>>2]=da+1;L=(f[B>>2]|0)+(da>>>5<<2)|0;f[L>>2]=f[L>>2]|1<<(da&31);ea=x;fa=p;ga=K;ha=D}else{do if(P)if((F+1|0)<0)aq(B);else{L=O<<6;N=F+32&-32;vi(B,F>>>0<1073741823?(L>>>0<N>>>0?N:L):2147483647);ia=f[T>>2]|0;break}else ia=F;while(0);f[T>>2]=ia+1;F=(f[B>>2]|0)+(ia>>>5<<2)|0;f[F>>2]=f[F>>2]&~(1<<(ia&31));ea=G;fa=H;ga=C;ha=s}f[a+8>>2]=ea;f[a+12>>2]=fa;u=g;return}while(0);do if(r)ja=m<<1;else{if((e|0)>0){ja=(e<<1)+-2|0;break}fa=a+8|0;f[fa>>2]=0;f[fa+4>>2]=0;u=g;return}while(0);f[a+8>>2]=f[d+(ja<<2)>>2];f[a+12>>2]=f[d+(ja+1<<2)>>2];u=g;return}function ub(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0;g=u;u=u+80|0;h=g+76|0;i=g+72|0;j=g+48|0;k=g+24|0;l=g;m=a+32|0;n=f[c>>2]|0;c=n+1|0;do if((n|0)!=-1){o=((c>>>0)%3|0|0)==0?n+-2|0:c;if(!((n>>>0)%3|0)){p=n+2|0;q=o;break}else{p=n+-1|0;q=o;break}}else{p=-1;q=-1}while(0);n=f[(f[m>>2]|0)+28>>2]|0;m=f[n+(q<<2)>>2]|0;q=f[n+(p<<2)>>2]|0;p=f[a+36>>2]|0;n=f[p>>2]|0;c=(f[p+4>>2]|0)-n>>2;if(c>>>0<=m>>>0)aq(p);o=n;n=f[o+(m<<2)>>2]|0;if(c>>>0<=q>>>0)aq(p);p=f[o+(q<<2)>>2]|0;q=(n|0)<(e|0);do if(q&(p|0)<(e|0)){o=n<<1;c=f[d+(o<<2)>>2]|0;m=((c|0)<0)<<31>>31;r=f[d+((o|1)<<2)>>2]|0;o=((r|0)<0)<<31>>31;s=p<<1;t=f[d+(s<<2)>>2]|0;v=f[d+((s|1)<<2)>>2]|0;if(!((t|0)!=(c|0)|(v|0)!=(r|0))){f[a+8>>2]=c;f[a+12>>2]=r;u=g;return}s=a+4|0;w=f[(f[s>>2]|0)+(e<<2)>>2]|0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;f[j+12>>2]=0;f[j+16>>2]=0;f[j+20>>2]=0;x=f[a>>2]|0;if(!(b[x+84>>0]|0))y=f[(f[x+68>>2]|0)+(w<<2)>>2]|0;else y=w;f[i>>2]=y;w=b[x+24>>0]|0;f[h>>2]=f[i>>2];vb(x,h,w,j)|0;w=f[(f[s>>2]|0)+(n<<2)>>2]|0;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;f[k+12>>2]=0;f[k+16>>2]=0;f[k+20>>2]=0;x=f[a>>2]|0;if(!(b[x+84>>0]|0))z=f[(f[x+68>>2]|0)+(w<<2)>>2]|0;else z=w;f[i>>2]=z;w=b[x+24>>0]|0;f[h>>2]=f[i>>2];vb(x,h,w,k)|0;w=f[(f[s>>2]|0)+(p<<2)>>2]|0;f[l>>2]=0;f[l+4>>2]=0;f[l+8>>2]=0;f[l+12>>2]=0;f[l+16>>2]=0;f[l+20>>2]=0;s=f[a>>2]|0;if(!(b[s+84>>0]|0))A=f[(f[s+68>>2]|0)+(w<<2)>>2]|0;else A=w;f[i>>2]=A;w=b[s+24>>0]|0;f[h>>2]=f[i>>2];vb(s,h,w,l)|0;w=l;s=k;x=f[s>>2]|0;B=f[s+4>>2]|0;s=Xn(f[w>>2]|0,f[w+4>>2]|0,x|0,B|0)|0;w=I;C=l+8|0;D=k+8|0;E=f[D>>2]|0;F=f[D+4>>2]|0;D=Xn(f[C>>2]|0,f[C+4>>2]|0,E|0,F|0)|0;C=I;G=l+16|0;H=k+16|0;J=f[H>>2]|0;K=f[H+4>>2]|0;H=Xn(f[G>>2]|0,f[G+4>>2]|0,J|0,K|0)|0;G=I;L=un(s|0,w|0,s|0,w|0)|0;M=I;N=un(D|0,C|0,D|0,C|0)|0;O=Vn(N|0,I|0,L|0,M|0)|0;M=I;L=un(H|0,G|0,H|0,G|0)|0;N=Vn(O|0,M|0,L|0,I|0)|0;L=I;if((N|0)==0&(L|0)==0)break;M=j;O=Xn(f[M>>2]|0,f[M+4>>2]|0,x|0,B|0)|0;B=I;x=j+8|0;M=Xn(f[x>>2]|0,f[x+4>>2]|0,E|0,F|0)|0;F=I;E=j+16|0;x=Xn(f[E>>2]|0,f[E+4>>2]|0,J|0,K|0)|0;K=I;J=un(O|0,B|0,s|0,w|0)|0;E=I;P=un(M|0,F|0,D|0,C|0)|0;Q=Vn(P|0,I|0,J|0,E|0)|0;E=I;J=un(x|0,K|0,H|0,G|0)|0;P=Vn(Q|0,E|0,J|0,I|0)|0;J=I;E=Xn(t|0,((t|0)<0)<<31>>31|0,c|0,m|0)|0;t=I;Q=Xn(v|0,((v|0)<0)<<31>>31|0,r|0,o|0)|0;v=I;R=un(N|0,L|0,c|0,m|0)|0;m=I;c=un(N|0,L|0,r|0,o|0)|0;o=I;r=un(P|0,J|0,E|0,t|0)|0;S=I;T=un(P|0,J|0,Q|0,v|0)|0;U=I;V=Vn(r|0,S|0,R|0,m|0)|0;m=I;R=Vn(T|0,U|0,c|0,o|0)|0;o=I;c=un(P|0,J|0,s|0,w|0)|0;w=I;s=un(P|0,J|0,D|0,C|0)|0;C=I;D=un(P|0,J|0,H|0,G|0)|0;G=I;H=Ik(c|0,w|0,N|0,L|0)|0;w=I;c=Ik(s|0,C|0,N|0,L|0)|0;C=I;s=Ik(D|0,G|0,N|0,L|0)|0;G=I;D=Xn(O|0,B|0,H|0,w|0)|0;w=I;H=Xn(M|0,F|0,c|0,C|0)|0;C=I;c=Xn(x|0,K|0,s|0,G|0)|0;G=I;s=un(D|0,w|0,D|0,w|0)|0;w=I;D=un(H|0,C|0,H|0,C|0)|0;C=Vn(D|0,I|0,s|0,w|0)|0;w=I;s=un(c|0,G|0,c|0,G|0)|0;G=Vn(C|0,w|0,s|0,I|0)|0;s=I;w=Xn(0,0,E|0,t|0)|0;t=I;E=un(G|0,s|0,N|0,L|0)|0;s=I;switch(E|0){case 0:{if(!s){W=0;X=0}else{Y=1;Z=0;_=E;$=s;aa=22}break}case 1:{if(!s){ba=1;ca=0;aa=23}else{Y=1;Z=0;_=E;$=s;aa=22}break}default:{Y=1;Z=0;_=E;$=s;aa=22}}if((aa|0)==22)while(1){aa=0;G=Tn(Y|0,Z|0,1)|0;C=I;c=_;_=Yn(_|0,$|0,2)|0;if(!($>>>0>0|($|0)==0&c>>>0>7)){ba=G;ca=C;aa=23;break}else{Y=G;Z=C;$=I;aa=22}}if((aa|0)==23)while(1){aa=0;C=jp(E|0,s|0,ba|0,ca|0)|0;G=Vn(C|0,I|0,ba|0,ca|0)|0;C=Yn(G|0,I|0,1)|0;G=I;c=un(C|0,G|0,C|0,G|0)|0;D=I;if(D>>>0>s>>>0|(D|0)==(s|0)&c>>>0>E>>>0){ba=C;ca=G;aa=23}else{W=C;X=G;break}}E=un(W|0,X|0,Q|0,v|0)|0;s=I;G=un(W|0,X|0,w|0,t|0)|0;C=I;c=Vn(E|0,s|0,V|0,m|0)|0;D=I;H=Vn(G|0,C|0,R|0,o|0)|0;K=I;x=Ik(c|0,D|0,N|0,L|0)|0;D=I;c=Ik(H|0,K|0,N|0,L|0)|0;K=I;H=Xn(V|0,m|0,E|0,s|0)|0;s=I;E=Xn(R|0,o|0,G|0,C|0)|0;C=I;G=Ik(H|0,s|0,N|0,L|0)|0;s=I;H=Ik(E|0,C|0,N|0,L|0)|0;C=I;E=e<<1;F=f[d+(E<<2)>>2]|0;M=((F|0)<0)<<31>>31;B=f[d+((E|1)<<2)>>2]|0;E=((B|0)<0)<<31>>31;O=Xn(F|0,M|0,x|0,D|0)|0;J=I;P=Xn(B|0,E|0,c|0,K|0)|0;U=I;T=un(O|0,J|0,O|0,J|0)|0;J=I;O=un(P|0,U|0,P|0,U|0)|0;U=Vn(O|0,I|0,T|0,J|0)|0;J=I;T=Xn(F|0,M|0,G|0,s|0)|0;M=I;F=Xn(B|0,E|0,H|0,C|0)|0;E=I;B=un(T|0,M|0,T|0,M|0)|0;M=I;T=un(F|0,E|0,F|0,E|0)|0;E=Vn(T|0,I|0,B|0,M|0)|0;M=I;B=a+16|0;T=a+20|0;F=f[T>>2]|0;O=f[a+24>>2]|0;P=(F|0)==(O<<5|0);if(J>>>0<M>>>0|(J|0)==(M|0)&U>>>0<E>>>0){do if(P)if((F+1|0)<0)aq(B);else{E=O<<6;U=F+32&-32;vi(B,F>>>0<1073741823?(E>>>0<U>>>0?U:E):2147483647);da=f[T>>2]|0;break}else da=F;while(0);f[T>>2]=da+1;L=(f[B>>2]|0)+(da>>>5<<2)|0;f[L>>2]=f[L>>2]|1<<(da&31);ea=x;fa=c;ga=K;ha=D}else{do if(P)if((F+1|0)<0)aq(B);else{L=O<<6;N=F+32&-32;vi(B,F>>>0<1073741823?(L>>>0<N>>>0?N:L):2147483647);ia=f[T>>2]|0;break}else ia=F;while(0);f[T>>2]=ia+1;F=(f[B>>2]|0)+(ia>>>5<<2)|0;f[F>>2]=f[F>>2]&~(1<<(ia&31));ea=G;fa=H;ga=C;ha=s}f[a+8>>2]=ea;f[a+12>>2]=fa;u=g;return}while(0);do if(q)ja=n<<1;else{if((e|0)>0){ja=(e<<1)+-2|0;break}fa=a+8|0;f[fa>>2]=0;f[fa+4>>2]=0;u=g;return}while(0);f[a+8>>2]=f[d+(ja<<2)>>2];f[a+12>>2]=f[d+(ja+1<<2)>>2];u=g;return}function vb(a,c,e,g){a=a|0;c=c|0;e=e|0;g=g|0;var i=0,k=0,l=0,m=0,o=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=Oa,D=0,E=0.0,F=0,G=0;if(!g){i=0;return i|0}do switch(f[a+28>>2]|0){case 1:{k=a+24|0;l=b[k>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0){m=f[f[a>>2]>>2]|0;o=a+40|0;q=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;r=Vn(q|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=m+r|0;r=0;while(1){m=b[o>>0]|0;q=g+(r<<3)|0;f[q>>2]=m;f[q+4>>2]=((m|0)<0)<<31>>31;r=r+1|0;m=b[k>>0]|0;if((r|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){s=m;break}else o=o+1|0}}else s=l;o=s<<24>>24;if(s<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(o<<3)|0,0,(e<<24>>24)-o<<3|0)|0;i=1;return i|0}case 2:{o=a+24|0;r=b[o>>0]|0;if((r<<24>>24>e<<24>>24?e:r)<<24>>24>0){k=f[f[a>>2]>>2]|0;m=a+40|0;q=un(f[m>>2]|0,f[m+4>>2]|0,f[c>>2]|0,0)|0;m=a+48|0;t=Vn(q|0,I|0,f[m>>2]|0,f[m+4>>2]|0)|0;m=k+t|0;t=0;while(1){k=g+(t<<3)|0;f[k>>2]=h[m>>0];f[k+4>>2]=0;t=t+1|0;k=b[o>>0]|0;if((t|0)>=((k<<24>>24>e<<24>>24?e:k)<<24>>24|0)){u=k;break}else m=m+1|0}}else u=r;m=u<<24>>24;if(u<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(m<<3)|0,0,(e<<24>>24)-m<<3|0)|0;i=1;return i|0}case 3:{m=a+24|0;t=b[m>>0]|0;if((t<<24>>24>e<<24>>24?e:t)<<24>>24>0){o=f[f[a>>2]>>2]|0;l=a+40|0;k=un(f[l>>2]|0,f[l+4>>2]|0,f[c>>2]|0,0)|0;l=a+48|0;q=Vn(k|0,I|0,f[l>>2]|0,f[l+4>>2]|0)|0;l=o+q|0;q=0;while(1){o=d[l>>1]|0;k=g+(q<<3)|0;f[k>>2]=o;f[k+4>>2]=((o|0)<0)<<31>>31;q=q+1|0;o=b[m>>0]|0;if((q|0)>=((o<<24>>24>e<<24>>24?e:o)<<24>>24|0)){v=o;break}else l=l+2|0}}else v=t;l=v<<24>>24;if(v<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(l<<3)|0,0,(e<<24>>24)-l<<3|0)|0;i=1;return i|0}case 4:{l=a+24|0;q=b[l>>0]|0;if((q<<24>>24>e<<24>>24?e:q)<<24>>24>0){m=f[f[a>>2]>>2]|0;r=a+40|0;o=un(f[r>>2]|0,f[r+4>>2]|0,f[c>>2]|0,0)|0;r=a+48|0;k=Vn(o|0,I|0,f[r>>2]|0,f[r+4>>2]|0)|0;r=m+k|0;k=0;while(1){m=g+(k<<3)|0;f[m>>2]=j[r>>1];f[m+4>>2]=0;k=k+1|0;m=b[l>>0]|0;if((k|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){w=m;break}else r=r+2|0}}else w=q;r=w<<24>>24;if(w<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(r<<3)|0,0,(e<<24>>24)-r<<3|0)|0;i=1;return i|0}case 5:{r=a+24|0;k=b[r>>0]|0;if((k<<24>>24>e<<24>>24?e:k)<<24>>24>0){l=f[f[a>>2]>>2]|0;t=a+40|0;m=un(f[t>>2]|0,f[t+4>>2]|0,f[c>>2]|0,0)|0;t=a+48|0;o=Vn(m|0,I|0,f[t>>2]|0,f[t+4>>2]|0)|0;t=l+o|0;o=0;while(1){l=f[t>>2]|0;m=g+(o<<3)|0;f[m>>2]=l;f[m+4>>2]=((l|0)<0)<<31>>31;o=o+1|0;l=b[r>>0]|0;if((o|0)>=((l<<24>>24>e<<24>>24?e:l)<<24>>24|0)){x=l;break}else t=t+4|0}}else x=k;t=x<<24>>24;if(x<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(t<<3)|0,0,(e<<24>>24)-t<<3|0)|0;i=1;return i|0}case 6:{t=a+24|0;o=b[t>>0]|0;if((o<<24>>24>e<<24>>24?e:o)<<24>>24>0){r=f[f[a>>2]>>2]|0;q=a+40|0;l=un(f[q>>2]|0,f[q+4>>2]|0,f[c>>2]|0,0)|0;q=a+48|0;m=Vn(l|0,I|0,f[q>>2]|0,f[q+4>>2]|0)|0;q=r+m|0;m=0;while(1){r=g+(m<<3)|0;f[r>>2]=f[q>>2];f[r+4>>2]=0;m=m+1|0;r=b[t>>0]|0;if((m|0)>=((r<<24>>24>e<<24>>24?e:r)<<24>>24|0)){y=r;break}else q=q+4|0}}else y=o;q=y<<24>>24;if(y<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(q<<3)|0,0,(e<<24>>24)-q<<3|0)|0;i=1;return i|0}case 7:{q=a+24|0;m=b[q>>0]|0;if((m<<24>>24>e<<24>>24?e:m)<<24>>24>0){t=f[f[a>>2]>>2]|0;k=a+40|0;r=un(f[k>>2]|0,f[k+4>>2]|0,f[c>>2]|0,0)|0;k=a+48|0;l=Vn(r|0,I|0,f[k>>2]|0,f[k+4>>2]|0)|0;k=t+l|0;l=0;while(1){t=k;r=f[t+4>>2]|0;z=g+(l<<3)|0;f[z>>2]=f[t>>2];f[z+4>>2]=r;l=l+1|0;r=b[q>>0]|0;if((l|0)>=((r<<24>>24>e<<24>>24?e:r)<<24>>24|0)){A=r;break}else k=k+8|0}}else A=m;k=A<<24>>24;if(A<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(k<<3)|0,0,(e<<24>>24)-k<<3|0)|0;i=1;return i|0}case 8:{k=a+24|0;l=b[k>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0){q=f[f[a>>2]>>2]|0;o=a+40|0;r=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;z=Vn(r|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=q+z|0;z=0;while(1){q=o;r=f[q+4>>2]|0;t=g+(z<<3)|0;f[t>>2]=f[q>>2];f[t+4>>2]=r;z=z+1|0;r=b[k>>0]|0;if((z|0)>=((r<<24>>24>e<<24>>24?e:r)<<24>>24|0)){B=r;break}else o=o+8|0}}else B=l;o=B<<24>>24;if(B<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(o<<3)|0,0,(e<<24>>24)-o<<3|0)|0;i=1;return i|0}case 9:{o=a+24|0;z=b[o>>0]|0;if((z<<24>>24>e<<24>>24?e:z)<<24>>24>0){k=f[f[a>>2]>>2]|0;m=a+40|0;r=un(f[m>>2]|0,f[m+4>>2]|0,f[c>>2]|0,0)|0;m=a+48|0;t=Vn(r|0,I|0,f[m>>2]|0,f[m+4>>2]|0)|0;m=k+t|0;t=0;while(1){C=$(n[m>>2]);k=+K(+C)>=1.0?(+C>0.0?~~+Y(+J(+C/4294967296.0),4294967295.0)>>>0:~~+W((+C-+(~~+C>>>0))/4294967296.0)>>>0):0;r=g+(t<<3)|0;f[r>>2]=~~+C>>>0;f[r+4>>2]=k;t=t+1|0;k=b[o>>0]|0;if((t|0)>=((k<<24>>24>e<<24>>24?e:k)<<24>>24|0)){D=k;break}else m=m+4|0}}else D=z;m=D<<24>>24;if(D<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(m<<3)|0,0,(e<<24>>24)-m<<3|0)|0;i=1;return i|0}case 10:{m=a+24|0;t=b[m>>0]|0;if((t<<24>>24>e<<24>>24?e:t)<<24>>24>0){o=f[f[a>>2]>>2]|0;l=a+40|0;k=un(f[l>>2]|0,f[l+4>>2]|0,f[c>>2]|0,0)|0;l=a+48|0;r=Vn(k|0,I|0,f[l>>2]|0,f[l+4>>2]|0)|0;l=o+r|0;r=0;while(1){E=+p[l>>3];o=+K(E)>=1.0?(E>0.0?~~+Y(+J(E/4294967296.0),4294967295.0)>>>0:~~+W((E-+(~~E>>>0))/4294967296.0)>>>0):0;k=g+(r<<3)|0;f[k>>2]=~~E>>>0;f[k+4>>2]=o;r=r+1|0;o=b[m>>0]|0;if((r|0)>=((o<<24>>24>e<<24>>24?e:o)<<24>>24|0)){F=o;break}else l=l+8|0}}else F=t;l=F<<24>>24;if(F<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(l<<3)|0,0,(e<<24>>24)-l<<3|0)|0;i=1;return i|0}case 11:{l=a+24|0;r=b[l>>0]|0;if((r<<24>>24>e<<24>>24?e:r)<<24>>24>0){m=f[f[a>>2]>>2]|0;z=a+40|0;o=un(f[z>>2]|0,f[z+4>>2]|0,f[c>>2]|0,0)|0;z=a+48|0;k=Vn(o|0,I|0,f[z>>2]|0,f[z+4>>2]|0)|0;z=m+k|0;k=0;while(1){m=g+(k<<3)|0;f[m>>2]=h[z>>0];f[m+4>>2]=0;k=k+1|0;m=b[l>>0]|0;if((k|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){G=m;break}else z=z+1|0}}else G=r;z=G<<24>>24;if(G<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(z<<3)|0,0,(e<<24>>24)-z<<3|0)|0;i=1;return i|0}default:{i=0;return i|0}}while(0);return 0}function wb(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0;c=u;u=u+16|0;d=c+8|0;e=c;if((f[a+96>>2]|0)==(f[a+92>>2]|0)){u=c;return}g=a+56|0;h=f[g>>2]|0;if((h|0)==(f[a+60>>2]|0)){Ri(a+52|0,b);i=b}else{f[h>>2]=f[b>>2];f[g>>2]=h+4;i=b}b=a+88|0;f[b>>2]=0;h=f[a>>2]|0;g=f[i>>2]|0;j=g+1|0;if((g|0)!=-1){k=((j>>>0)%3|0|0)==0?g+-2|0:j;if((k|0)==-1)l=-1;else l=f[(f[h>>2]|0)+(k<<2)>>2]|0;k=(((g>>>0)%3|0|0)==0?2:-1)+g|0;if((k|0)==-1){m=l;n=-1}else{m=l;n=f[(f[h>>2]|0)+(k<<2)>>2]|0}}else{m=-1;n=-1}k=a+24|0;h=f[k>>2]|0;l=h+(m>>>5<<2)|0;g=1<<(m&31);j=f[l>>2]|0;if(!(j&g)){f[l>>2]=j|g;g=f[i>>2]|0;j=g+1|0;if((g|0)==-1)o=-1;else o=((j>>>0)%3|0|0)==0?g+-2|0:j;f[e>>2]=o;j=f[(f[(f[a+44>>2]|0)+96>>2]|0)+(((o>>>0)/3|0)*12|0)+(((o>>>0)%3|0)<<2)>>2]|0;o=f[a+48>>2]|0;f[d>>2]=j;g=f[o+4>>2]|0;o=g+4|0;l=f[o>>2]|0;if((l|0)==(f[g+8>>2]|0))Ri(g,d);else{f[l>>2]=j;f[o>>2]=l+4}l=a+40|0;o=f[l>>2]|0;j=o+4|0;g=f[j>>2]|0;if((g|0)==(f[o+8>>2]|0)){Ri(o,e);p=f[l>>2]|0}else{f[g>>2]=f[e>>2];f[j>>2]=g+4;p=o}o=p+24|0;f[(f[p+12>>2]|0)+(m<<2)>>2]=f[o>>2];f[o>>2]=(f[o>>2]|0)+1;q=f[k>>2]|0}else q=h;h=q+(n>>>5<<2)|0;q=1<<(n&31);o=f[h>>2]|0;if(!(o&q)){f[h>>2]=o|q;q=f[i>>2]|0;do if((q|0)!=-1)if(!((q>>>0)%3|0)){r=q+2|0;break}else{r=q+-1|0;break}else r=-1;while(0);f[e>>2]=r;q=f[(f[(f[a+44>>2]|0)+96>>2]|0)+(((r>>>0)/3|0)*12|0)+(((r>>>0)%3|0)<<2)>>2]|0;r=f[a+48>>2]|0;f[d>>2]=q;o=f[r+4>>2]|0;r=o+4|0;h=f[r>>2]|0;if((h|0)==(f[o+8>>2]|0))Ri(o,d);else{f[h>>2]=q;f[r>>2]=h+4}h=a+40|0;r=f[h>>2]|0;q=r+4|0;o=f[q>>2]|0;if((o|0)==(f[r+8>>2]|0)){Ri(r,e);s=f[h>>2]|0}else{f[o>>2]=f[e>>2];f[q>>2]=o+4;s=r}r=s+24|0;f[(f[s+12>>2]|0)+(n<<2)>>2]=f[r>>2];f[r>>2]=(f[r>>2]|0)+1}r=f[i>>2]|0;if((r|0)==-1)t=-1;else t=f[(f[f[a>>2]>>2]|0)+(r<<2)>>2]|0;r=(f[k>>2]|0)+(t>>>5<<2)|0;n=1<<(t&31);s=f[r>>2]|0;if(!(n&s)){f[r>>2]=s|n;n=f[i>>2]|0;f[e>>2]=n;s=f[(f[(f[a+44>>2]|0)+96>>2]|0)+(((n>>>0)/3|0)*12|0)+(((n>>>0)%3|0)<<2)>>2]|0;n=f[a+48>>2]|0;f[d>>2]=s;r=f[n+4>>2]|0;n=r+4|0;o=f[n>>2]|0;if((o|0)==(f[r+8>>2]|0))Ri(r,d);else{f[o>>2]=s;f[n>>2]=o+4}o=a+40|0;n=f[o>>2]|0;s=n+4|0;r=f[s>>2]|0;if((r|0)==(f[n+8>>2]|0)){Ri(n,e);v=f[o>>2]|0}else{f[r>>2]=f[e>>2];f[s>>2]=r+4;v=n}n=v+24|0;f[(f[v+12>>2]|0)+(t<<2)>>2]=f[n>>2];f[n>>2]=(f[n>>2]|0)+1}n=f[b>>2]|0;a:do if((n|0)<3){t=a+12|0;v=a+44|0;r=a+48|0;s=a+40|0;o=a+92|0;q=n;while(1){h=q;while(1){w=a+52+(h*12|0)+4|0;x=f[w>>2]|0;if((f[a+52+(h*12|0)>>2]|0)!=(x|0))break;if((h|0)<2)h=h+1|0;else break a}m=x+-4|0;p=f[m>>2]|0;f[w>>2]=m;f[b>>2]=h;f[i>>2]=p;if((p|0)==-1)break;m=(p>>>0)/3|0;g=f[t>>2]|0;do if(!(f[g+(m>>>5<<2)>>2]&1<<(m&31))){j=p;l=g;b:while(1){y=(j>>>0)/3|0;z=l+(y>>>5<<2)|0;f[z>>2]=1<<(y&31)|f[z>>2];z=f[i>>2]|0;if((z|0)==-1)A=-1;else A=f[(f[f[a>>2]>>2]|0)+(z<<2)>>2]|0;y=(f[k>>2]|0)+(A>>>5<<2)|0;B=1<<(A&31);C=f[y>>2]|0;if(!(B&C)){f[y>>2]=C|B;B=f[i>>2]|0;f[e>>2]=B;C=f[(f[(f[v>>2]|0)+96>>2]|0)+(((B>>>0)/3|0)*12|0)+(((B>>>0)%3|0)<<2)>>2]|0;B=f[r>>2]|0;f[d>>2]=C;y=f[B+4>>2]|0;B=y+4|0;D=f[B>>2]|0;if((D|0)==(f[y+8>>2]|0))Ri(y,d);else{f[D>>2]=C;f[B>>2]=D+4}D=f[s>>2]|0;B=D+4|0;C=f[B>>2]|0;if((C|0)==(f[D+8>>2]|0)){Ri(D,e);E=f[s>>2]|0}else{f[C>>2]=f[e>>2];f[B>>2]=C+4;E=D}D=E+24|0;f[(f[E+12>>2]|0)+(A<<2)>>2]=f[D>>2];f[D>>2]=(f[D>>2]|0)+1;F=f[i>>2]|0}else F=z;z=f[a>>2]|0;if((F|0)==-1){G=93;break}D=F+1|0;C=((D>>>0)%3|0|0)==0?F+-2|0:D;if((C|0)==-1)H=-1;else H=f[(f[z+12>>2]|0)+(C<<2)>>2]|0;C=(((F>>>0)%3|0|0)==0?2:-1)+F|0;if((C|0)==-1)I=-1;else I=f[(f[z+12>>2]|0)+(C<<2)>>2]|0;C=(H|0)==-1;D=C?-1:(H>>>0)/3|0;B=(I|0)==-1;y=B?-1:(I>>>0)/3|0;if(C)J=1;else J=(f[(f[t>>2]|0)+(D>>>5<<2)>>2]&1<<(D&31)|0)!=0;do if(B)if(J){G=93;break b}else G=82;else{if(f[(f[t>>2]|0)+(y>>>5<<2)>>2]&1<<(y&31)|0)if(J){G=93;break b}else{G=82;break}D=f[(f[z>>2]|0)+(I<<2)>>2]|0;if(!(1<<(D&31)&f[(f[k>>2]|0)+(D>>>5<<2)>>2])){K=(f[o>>2]|0)+(D<<2)|0;D=f[K>>2]|0;f[K>>2]=D+1;L=(D|0)>0?1:2}else L=0;if(J?(L|0)<=(f[b>>2]|0):0){M=I;break}f[d>>2]=I;D=a+52+(L*12|0)+4|0;K=f[D>>2]|0;if((K|0)==(f[a+52+(L*12|0)+8>>2]|0))Ri(a+52+(L*12|0)|0,d);else{f[K>>2]=I;f[D>>2]=K+4}if((f[b>>2]|0)>(L|0))f[b>>2]=L;if(J){G=93;break b}else G=82}while(0);if((G|0)==82){G=0;if(C)N=-1;else N=f[(f[f[a>>2]>>2]|0)+(H<<2)>>2]|0;if(!(1<<(N&31)&f[(f[k>>2]|0)+(N>>>5<<2)>>2])){z=(f[o>>2]|0)+(N<<2)|0;y=f[z>>2]|0;f[z>>2]=y+1;O=(y|0)>0?1:2}else O=0;if((O|0)>(f[b>>2]|0))break;else M=H}f[i>>2]=M;j=M;l=f[t>>2]|0}if((G|0)==93){G=0;P=f[b>>2]|0;break}f[d>>2]=H;l=a+52+(O*12|0)+4|0;j=f[l>>2]|0;if((j|0)==(f[a+52+(O*12|0)+8>>2]|0))Ri(a+52+(O*12|0)|0,d);else{f[j>>2]=H;f[l>>2]=j+4}j=f[b>>2]|0;if((j|0)>(O|0)){f[b>>2]=O;Q=O}else Q=j;P=Q}else P=h;while(0);if((P|0)<3)q=P;else break a}u=c;return}while(0);f[i>>2]=-1;u=c;return}function xb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}xb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;xb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function yb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}yb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;yb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function zb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}zb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;zb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Ab(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Ab(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Ab(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}\nfunction Bb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Bb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Bb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Cb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Cb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Cb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Db(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Db(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Db(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Eb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Eb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Eb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Fb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Fb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Fb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Gb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Gb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Gb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Hb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Hb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Hb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Ib(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Ib(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Ib(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Jb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Jb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Jb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Kb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Kb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Kb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Lb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Lb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Lb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Mb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Mb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Mb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Nb(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Nb(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Nb(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Ob(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0;d=a;a=b;a:while(1){b=a;e=a+-4|0;g=d;while(1){h=g;b:while(1){i=h;j=b-i|0;k=j>>2;switch(k|0){case 2:{l=5;break a;break}case 3:{l=11;break a;break}case 4:{l=12;break a;break}case 5:{l=13;break a;break}case 1:case 0:{l=84;break a;break}default:{}}if((j|0)<124){l=15;break a}m=h+(((k|0)/2|0)<<2)|0;if((j|0)>3996){j=(k|0)/4|0;n=ig(h,h+(j<<2)|0,m,m+(j<<2)|0,e,c)|0}else n=Vg(h,m,e,c)|0;o=f[h>>2]|0;j=f[m>>2]|0;p=f[c>>2]|0;k=f[p>>2]|0;q=(f[p+4>>2]|0)-k>>3;if(q>>>0<=o>>>0){l=20;break a}r=k;if(q>>>0<=j>>>0){l=22;break a}k=f[r+(o<<3)>>2]|0;s=f[r+(j<<3)>>2]|0;if(k>>>0<s>>>0){t=e;u=n;break}else v=e;while(1){v=v+-4|0;if((h|0)==(v|0))break;w=f[v>>2]|0;if(q>>>0<=w>>>0){l=51;break a}if((f[r+(w<<3)>>2]|0)>>>0<s>>>0){l=53;break b}}s=h+4|0;j=f[e>>2]|0;if(q>>>0<=j>>>0){l=26;break a}if(k>>>0<(f[r+(j<<3)>>2]|0)>>>0)x=s;else{if((s|0)==(e|0)){l=84;break a}else y=s;while(1){z=f[y>>2]|0;if(q>>>0<=z>>>0){l=32;break a}if(k>>>0<(f[r+(z<<3)>>2]|0)>>>0)break;s=y+4|0;if((s|0)==(e|0)){l=84;break a}else y=s}f[y>>2]=j;f[e>>2]=z;x=y+4|0}if((x|0)==(e|0)){l=84;break a}r=f[h>>2]|0;A=f[c>>2]|0;k=f[A>>2]|0;q=(f[A+4>>2]|0)-k>>3;if(q>>>0<=r>>>0){l=38;break a}s=k;k=e;B=x;C=r;while(1){r=s+(C<<3)|0;D=q>>>0>C>>>0;E=B;while(1){F=f[E>>2]|0;if(q>>>0<=F>>>0){l=40;break a}G=f[r>>2]|0;if(G>>>0<(f[s+(F<<3)>>2]|0)>>>0)break;if(D)E=E+4|0;else{l=38;break a}}if(q>>>0>C>>>0)H=k;else{l=46;break a}do{H=H+-4|0;I=f[H>>2]|0;if(q>>>0<=I>>>0){l=47;break a}}while(G>>>0<(f[s+(I<<3)>>2]|0)>>>0);if(E>>>0>=H>>>0){h=E;continue b}D=f[E>>2]|0;f[E>>2]=I;f[H>>2]=D;C=f[h>>2]|0;if(q>>>0<=C>>>0){l=38;break a}else{k=H;B=E+4|0}}}if((l|0)==53){l=0;f[h>>2]=w;f[v>>2]=o;t=v;u=n+1|0}B=h+4|0;c:do if(B>>>0<t>>>0){k=f[B>>2]|0;C=f[c>>2]|0;q=f[C>>2]|0;s=(f[C+4>>2]|0)-q>>3;if(s>>>0>k>>>0){J=t;K=B;L=u;M=m;N=s;O=q;P=C;Q=k}else{R=C;l=57;break a}while(1){C=f[c>>2]|0;k=C+4|0;q=f[M>>2]|0;s=K;j=O;D=N;S=P;r=Q;while(1){F=j;if(D>>>0<=q>>>0){l=59;break a}if((f[F+(r<<3)>>2]|0)>>>0>=(f[F+(q<<3)>>2]|0)>>>0)break;F=s+4|0;T=f[F>>2]|0;j=f[C>>2]|0;D=(f[k>>2]|0)-j>>3;if(D>>>0<=T>>>0){R=C;l=57;break a}else{s=F;S=C;r=T}}C=f[M>>2]|0;O=f[S>>2]|0;N=(f[S+4>>2]|0)-O>>3;D=O;j=D+(C<<3)|0;if(N>>>0>C>>>0)U=J;else{l=65;break a}do{U=U+-4|0;V=f[U>>2]|0;if(N>>>0<=V>>>0){l=66;break a}}while((f[D+(V<<3)>>2]|0)>>>0>=(f[j>>2]|0)>>>0);if(s>>>0>U>>>0){W=M;X=L;Y=s;break c}f[s>>2]=V;f[U>>2]=r;K=s+4|0;Q=f[K>>2]|0;if(N>>>0<=Q>>>0){R=S;l=57;break a}else{J=U;L=L+1|0;M=(M|0)==(s|0)?U:M;P=S}}}else{W=m;X=u;Y=B}while(0);if((Y|0)!=(W|0)){B=f[W>>2]|0;j=f[Y>>2]|0;Z=f[c>>2]|0;D=f[Z>>2]|0;C=(f[Z+4>>2]|0)-D>>3;if(C>>>0<=B>>>0){l=72;break a}k=D;if(C>>>0<=j>>>0){l=74;break a}if((f[k+(B<<3)>>2]|0)>>>0<(f[k+(j<<3)>>2]|0)>>>0){f[Y>>2]=B;f[W>>2]=j;_=X+1|0}else _=X}else _=X;if(!_){$=_d(h,Y,c)|0;j=Y+4|0;if(_d(j,a,c)|0){l=83;break}if($){g=j;continue}}j=Y;if((j-i|0)>=(b-j|0)){l=82;break}Ob(h,Y,c);g=Y+4|0}if((l|0)==82){l=0;Ob(Y+4|0,a,c);d=h;a=Y;continue}else if((l|0)==83){l=0;if($){l=84;break}else{d=h;a=Y;continue}}}switch(l|0){case 5:{l=f[e>>2]|0;Y=f[h>>2]|0;d=f[c>>2]|0;$=f[d>>2]|0;i=(f[d+4>>2]|0)-$>>3;if(i>>>0<=l>>>0)aq(d);_=$;if(i>>>0<=Y>>>0)aq(d);if((f[_+(l<<3)>>2]|0)>>>0>=(f[_+(Y<<3)>>2]|0)>>>0)return;f[h>>2]=l;f[e>>2]=Y;return}case 11:{Vg(h,h+4|0,e,c)|0;return}case 12:{jh(h,h+4|0,h+8|0,e,c)|0;return}case 13:{ig(h,h+4|0,h+8|0,h+12|0,e,c)|0;return}case 15:{ih(h,a,c);return}case 20:{aq(p);break}case 22:{aq(p);break}case 26:{aq(p);break}case 32:{aq(p);break}case 38:{aq(A);break}case 40:{aq(A);break}case 46:{aq(A);break}case 47:{aq(A);break}case 51:{aq(p);break}case 57:{aq(R);break}case 59:{aq(S);break}case 65:{if(N>>>0>(f[J+-4>>2]|0)>>>0)aq(S);else aq(S);break}case 66:{aq(S);break}case 72:{aq(Z);break}case 74:{aq(Z);break}case 84:return}}function Pb(a,c,e,g){a=a|0;c=c|0;e=e|0;g=g|0;var i=0,k=0,l=0,m=0,o=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0;if(!g){i=0;return i|0}do switch(f[a+28>>2]|0){case 1:{k=a+24|0;l=b[k>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0){m=f[f[a>>2]>>2]|0;o=a+40|0;q=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;r=Vn(q|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=m+r|0;r=0;while(1){f[g+(r<<2)>>2]=b[o>>0];r=r+1|0;m=b[k>>0]|0;if((r|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){s=m;break}else o=o+1|0}}else s=l;o=s<<24>>24;if(s<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(o<<2)|0,0,(e<<24>>24)-o<<2|0)|0;i=1;return i|0}case 2:{o=a+24|0;r=b[o>>0]|0;if((r<<24>>24>e<<24>>24?e:r)<<24>>24>0){k=f[f[a>>2]>>2]|0;m=a+40|0;q=un(f[m>>2]|0,f[m+4>>2]|0,f[c>>2]|0,0)|0;m=a+48|0;t=Vn(q|0,I|0,f[m>>2]|0,f[m+4>>2]|0)|0;m=k+t|0;t=0;while(1){f[g+(t<<2)>>2]=h[m>>0];t=t+1|0;k=b[o>>0]|0;if((t|0)>=((k<<24>>24>e<<24>>24?e:k)<<24>>24|0)){u=k;break}else m=m+1|0}}else u=r;m=u<<24>>24;if(u<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(m<<2)|0,0,(e<<24>>24)-m<<2|0)|0;i=1;return i|0}case 3:{m=a+24|0;t=b[m>>0]|0;if((t<<24>>24>e<<24>>24?e:t)<<24>>24>0){o=f[f[a>>2]>>2]|0;l=a+40|0;k=un(f[l>>2]|0,f[l+4>>2]|0,f[c>>2]|0,0)|0;l=a+48|0;q=Vn(k|0,I|0,f[l>>2]|0,f[l+4>>2]|0)|0;l=o+q|0;q=0;while(1){f[g+(q<<2)>>2]=d[l>>1];q=q+1|0;o=b[m>>0]|0;if((q|0)>=((o<<24>>24>e<<24>>24?e:o)<<24>>24|0)){v=o;break}else l=l+2|0}}else v=t;l=v<<24>>24;if(v<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(l<<2)|0,0,(e<<24>>24)-l<<2|0)|0;i=1;return i|0}case 4:{l=a+24|0;q=b[l>>0]|0;if((q<<24>>24>e<<24>>24?e:q)<<24>>24>0){m=f[f[a>>2]>>2]|0;r=a+40|0;o=un(f[r>>2]|0,f[r+4>>2]|0,f[c>>2]|0,0)|0;r=a+48|0;k=Vn(o|0,I|0,f[r>>2]|0,f[r+4>>2]|0)|0;r=m+k|0;k=0;while(1){f[g+(k<<2)>>2]=j[r>>1];k=k+1|0;m=b[l>>0]|0;if((k|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){w=m;break}else r=r+2|0}}else w=q;r=w<<24>>24;if(w<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(r<<2)|0,0,(e<<24>>24)-r<<2|0)|0;i=1;return i|0}case 5:{r=a+24|0;k=b[r>>0]|0;if((k<<24>>24>e<<24>>24?e:k)<<24>>24>0){l=f[f[a>>2]>>2]|0;t=a+40|0;m=un(f[t>>2]|0,f[t+4>>2]|0,f[c>>2]|0,0)|0;t=a+48|0;o=Vn(m|0,I|0,f[t>>2]|0,f[t+4>>2]|0)|0;t=l+o|0;o=0;while(1){f[g+(o<<2)>>2]=f[t>>2];o=o+1|0;l=b[r>>0]|0;if((o|0)>=((l<<24>>24>e<<24>>24?e:l)<<24>>24|0)){x=l;break}else t=t+4|0}}else x=k;t=x<<24>>24;if(x<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(t<<2)|0,0,(e<<24>>24)-t<<2|0)|0;i=1;return i|0}case 6:{t=a+24|0;o=b[t>>0]|0;if((o<<24>>24>e<<24>>24?e:o)<<24>>24>0){r=f[f[a>>2]>>2]|0;q=a+40|0;l=un(f[q>>2]|0,f[q+4>>2]|0,f[c>>2]|0,0)|0;q=a+48|0;m=Vn(l|0,I|0,f[q>>2]|0,f[q+4>>2]|0)|0;q=r+m|0;m=0;while(1){f[g+(m<<2)>>2]=f[q>>2];m=m+1|0;r=b[t>>0]|0;if((m|0)>=((r<<24>>24>e<<24>>24?e:r)<<24>>24|0)){y=r;break}else q=q+4|0}}else y=o;q=y<<24>>24;if(y<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(q<<2)|0,0,(e<<24>>24)-q<<2|0)|0;i=1;return i|0}case 7:{q=a+24|0;m=b[q>>0]|0;if((m<<24>>24>e<<24>>24?e:m)<<24>>24>0){t=f[f[a>>2]>>2]|0;k=a+40|0;r=un(f[k>>2]|0,f[k+4>>2]|0,f[c>>2]|0,0)|0;k=a+48|0;l=Vn(r|0,I|0,f[k>>2]|0,f[k+4>>2]|0)|0;k=t+l|0;l=0;while(1){f[g+(l<<2)>>2]=f[k>>2];l=l+1|0;t=b[q>>0]|0;if((l|0)>=((t<<24>>24>e<<24>>24?e:t)<<24>>24|0)){z=t;break}else k=k+8|0}}else z=m;k=z<<24>>24;if(z<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(k<<2)|0,0,(e<<24>>24)-k<<2|0)|0;i=1;return i|0}case 8:{k=a+24|0;l=b[k>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0){q=f[f[a>>2]>>2]|0;o=a+40|0;t=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;r=Vn(t|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=q+r|0;r=0;while(1){f[g+(r<<2)>>2]=f[o>>2];r=r+1|0;q=b[k>>0]|0;if((r|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){A=q;break}else o=o+8|0}}else A=l;o=A<<24>>24;if(A<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(o<<2)|0,0,(e<<24>>24)-o<<2|0)|0;i=1;return i|0}case 9:{o=a+24|0;r=b[o>>0]|0;if((r<<24>>24>e<<24>>24?e:r)<<24>>24>0){k=f[f[a>>2]>>2]|0;m=a+40|0;q=un(f[m>>2]|0,f[m+4>>2]|0,f[c>>2]|0,0)|0;m=a+48|0;t=Vn(q|0,I|0,f[m>>2]|0,f[m+4>>2]|0)|0;m=k+t|0;t=0;while(1){k=~~$(n[m>>2])>>>0;f[g+(t<<2)>>2]=k;t=t+1|0;k=b[o>>0]|0;if((t|0)>=((k<<24>>24>e<<24>>24?e:k)<<24>>24|0)){B=k;break}else m=m+4|0}}else B=r;m=B<<24>>24;if(B<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(m<<2)|0,0,(e<<24>>24)-m<<2|0)|0;i=1;return i|0}case 10:{m=a+24|0;t=b[m>>0]|0;if((t<<24>>24>e<<24>>24?e:t)<<24>>24>0){o=f[f[a>>2]>>2]|0;l=a+40|0;k=un(f[l>>2]|0,f[l+4>>2]|0,f[c>>2]|0,0)|0;l=a+48|0;q=Vn(k|0,I|0,f[l>>2]|0,f[l+4>>2]|0)|0;l=o+q|0;q=0;while(1){f[g+(q<<2)>>2]=~~+p[l>>3]>>>0;q=q+1|0;o=b[m>>0]|0;if((q|0)>=((o<<24>>24>e<<24>>24?e:o)<<24>>24|0)){C=o;break}else l=l+8|0}}else C=t;l=C<<24>>24;if(C<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(l<<2)|0,0,(e<<24>>24)-l<<2|0)|0;i=1;return i|0}case 11:{l=a+24|0;q=b[l>>0]|0;if((q<<24>>24>e<<24>>24?e:q)<<24>>24>0){m=f[f[a>>2]>>2]|0;r=a+40|0;o=un(f[r>>2]|0,f[r+4>>2]|0,f[c>>2]|0,0)|0;r=a+48|0;k=Vn(o|0,I|0,f[r>>2]|0,f[r+4>>2]|0)|0;r=m+k|0;k=0;while(1){f[g+(k<<2)>>2]=h[r>>0];k=k+1|0;m=b[l>>0]|0;if((k|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){D=m;break}else r=r+1|0}}else D=q;r=D<<24>>24;if(D<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(r<<2)|0,0,(e<<24>>24)-r<<2|0)|0;i=1;return i|0}default:{i=0;return i|0}}while(0);return 0}function Qb(a,c,e,g){a=a|0;c=c|0;e=e|0;g=g|0;var i=0,k=0,l=0,m=0,o=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0;if(!g){i=0;return i|0}do switch(f[a+28>>2]|0){case 1:{k=a+24|0;l=b[k>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0){m=f[f[a>>2]>>2]|0;o=a+40|0;q=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;r=Vn(q|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=m+r|0;r=0;while(1){f[g+(r<<2)>>2]=b[o>>0];r=r+1|0;m=b[k>>0]|0;if((r|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){s=m;break}else o=o+1|0}}else s=l;o=s<<24>>24;if(s<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(o<<2)|0,0,(e<<24>>24)-o<<2|0)|0;i=1;return i|0}case 2:{o=a+24|0;r=b[o>>0]|0;if((r<<24>>24>e<<24>>24?e:r)<<24>>24>0){k=f[f[a>>2]>>2]|0;m=a+40|0;q=un(f[m>>2]|0,f[m+4>>2]|0,f[c>>2]|0,0)|0;m=a+48|0;t=Vn(q|0,I|0,f[m>>2]|0,f[m+4>>2]|0)|0;m=k+t|0;t=0;while(1){f[g+(t<<2)>>2]=h[m>>0];t=t+1|0;k=b[o>>0]|0;if((t|0)>=((k<<24>>24>e<<24>>24?e:k)<<24>>24|0)){u=k;break}else m=m+1|0}}else u=r;m=u<<24>>24;if(u<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(m<<2)|0,0,(e<<24>>24)-m<<2|0)|0;i=1;return i|0}case 3:{m=a+24|0;t=b[m>>0]|0;if((t<<24>>24>e<<24>>24?e:t)<<24>>24>0){o=f[f[a>>2]>>2]|0;l=a+40|0;k=un(f[l>>2]|0,f[l+4>>2]|0,f[c>>2]|0,0)|0;l=a+48|0;q=Vn(k|0,I|0,f[l>>2]|0,f[l+4>>2]|0)|0;l=o+q|0;q=0;while(1){f[g+(q<<2)>>2]=d[l>>1];q=q+1|0;o=b[m>>0]|0;if((q|0)>=((o<<24>>24>e<<24>>24?e:o)<<24>>24|0)){v=o;break}else l=l+2|0}}else v=t;l=v<<24>>24;if(v<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(l<<2)|0,0,(e<<24>>24)-l<<2|0)|0;i=1;return i|0}case 4:{l=a+24|0;q=b[l>>0]|0;if((q<<24>>24>e<<24>>24?e:q)<<24>>24>0){m=f[f[a>>2]>>2]|0;r=a+40|0;o=un(f[r>>2]|0,f[r+4>>2]|0,f[c>>2]|0,0)|0;r=a+48|0;k=Vn(o|0,I|0,f[r>>2]|0,f[r+4>>2]|0)|0;r=m+k|0;k=0;while(1){f[g+(k<<2)>>2]=j[r>>1];k=k+1|0;m=b[l>>0]|0;if((k|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){w=m;break}else r=r+2|0}}else w=q;r=w<<24>>24;if(w<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(r<<2)|0,0,(e<<24>>24)-r<<2|0)|0;i=1;return i|0}case 5:{r=a+24|0;k=b[r>>0]|0;if((k<<24>>24>e<<24>>24?e:k)<<24>>24>0){l=f[f[a>>2]>>2]|0;t=a+40|0;m=un(f[t>>2]|0,f[t+4>>2]|0,f[c>>2]|0,0)|0;t=a+48|0;o=Vn(m|0,I|0,f[t>>2]|0,f[t+4>>2]|0)|0;t=l+o|0;o=0;while(1){f[g+(o<<2)>>2]=f[t>>2];o=o+1|0;l=b[r>>0]|0;if((o|0)>=((l<<24>>24>e<<24>>24?e:l)<<24>>24|0)){x=l;break}else t=t+4|0}}else x=k;t=x<<24>>24;if(x<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(t<<2)|0,0,(e<<24>>24)-t<<2|0)|0;i=1;return i|0}case 6:{t=a+24|0;o=b[t>>0]|0;if((o<<24>>24>e<<24>>24?e:o)<<24>>24>0){r=f[f[a>>2]>>2]|0;q=a+40|0;l=un(f[q>>2]|0,f[q+4>>2]|0,f[c>>2]|0,0)|0;q=a+48|0;m=Vn(l|0,I|0,f[q>>2]|0,f[q+4>>2]|0)|0;q=r+m|0;m=0;while(1){f[g+(m<<2)>>2]=f[q>>2];m=m+1|0;r=b[t>>0]|0;if((m|0)>=((r<<24>>24>e<<24>>24?e:r)<<24>>24|0)){y=r;break}else q=q+4|0}}else y=o;q=y<<24>>24;if(y<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(q<<2)|0,0,(e<<24>>24)-q<<2|0)|0;i=1;return i|0}case 7:{q=a+24|0;m=b[q>>0]|0;if((m<<24>>24>e<<24>>24?e:m)<<24>>24>0){t=f[f[a>>2]>>2]|0;k=a+40|0;r=un(f[k>>2]|0,f[k+4>>2]|0,f[c>>2]|0,0)|0;k=a+48|0;l=Vn(r|0,I|0,f[k>>2]|0,f[k+4>>2]|0)|0;k=t+l|0;l=0;while(1){f[g+(l<<2)>>2]=f[k>>2];l=l+1|0;t=b[q>>0]|0;if((l|0)>=((t<<24>>24>e<<24>>24?e:t)<<24>>24|0)){z=t;break}else k=k+8|0}}else z=m;k=z<<24>>24;if(z<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(k<<2)|0,0,(e<<24>>24)-k<<2|0)|0;i=1;return i|0}case 8:{k=a+24|0;l=b[k>>0]|0;if((l<<24>>24>e<<24>>24?e:l)<<24>>24>0){q=f[f[a>>2]>>2]|0;o=a+40|0;t=un(f[o>>2]|0,f[o+4>>2]|0,f[c>>2]|0,0)|0;o=a+48|0;r=Vn(t|0,I|0,f[o>>2]|0,f[o+4>>2]|0)|0;o=q+r|0;r=0;while(1){f[g+(r<<2)>>2]=f[o>>2];r=r+1|0;q=b[k>>0]|0;if((r|0)>=((q<<24>>24>e<<24>>24?e:q)<<24>>24|0)){A=q;break}else o=o+8|0}}else A=l;o=A<<24>>24;if(A<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(o<<2)|0,0,(e<<24>>24)-o<<2|0)|0;i=1;return i|0}case 9:{o=a+24|0;r=b[o>>0]|0;if((r<<24>>24>e<<24>>24?e:r)<<24>>24>0){k=f[f[a>>2]>>2]|0;m=a+40|0;q=un(f[m>>2]|0,f[m+4>>2]|0,f[c>>2]|0,0)|0;m=a+48|0;t=Vn(q|0,I|0,f[m>>2]|0,f[m+4>>2]|0)|0;m=k+t|0;t=0;while(1){k=~~$(n[m>>2]);f[g+(t<<2)>>2]=k;t=t+1|0;k=b[o>>0]|0;if((t|0)>=((k<<24>>24>e<<24>>24?e:k)<<24>>24|0)){B=k;break}else m=m+4|0}}else B=r;m=B<<24>>24;if(B<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(m<<2)|0,0,(e<<24>>24)-m<<2|0)|0;i=1;return i|0}case 10:{m=a+24|0;t=b[m>>0]|0;if((t<<24>>24>e<<24>>24?e:t)<<24>>24>0){o=f[f[a>>2]>>2]|0;l=a+40|0;k=un(f[l>>2]|0,f[l+4>>2]|0,f[c>>2]|0,0)|0;l=a+48|0;q=Vn(k|0,I|0,f[l>>2]|0,f[l+4>>2]|0)|0;l=o+q|0;q=0;while(1){f[g+(q<<2)>>2]=~~+p[l>>3];q=q+1|0;o=b[m>>0]|0;if((q|0)>=((o<<24>>24>e<<24>>24?e:o)<<24>>24|0)){C=o;break}else l=l+8|0}}else C=t;l=C<<24>>24;if(C<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(l<<2)|0,0,(e<<24>>24)-l<<2|0)|0;i=1;return i|0}case 11:{l=a+24|0;q=b[l>>0]|0;if((q<<24>>24>e<<24>>24?e:q)<<24>>24>0){m=f[f[a>>2]>>2]|0;r=a+40|0;o=un(f[r>>2]|0,f[r+4>>2]|0,f[c>>2]|0,0)|0;r=a+48|0;k=Vn(o|0,I|0,f[r>>2]|0,f[r+4>>2]|0)|0;r=m+k|0;k=0;while(1){f[g+(k<<2)>>2]=h[r>>0];k=k+1|0;m=b[l>>0]|0;if((k|0)>=((m<<24>>24>e<<24>>24?e:m)<<24>>24|0)){D=m;break}else r=r+1|0}}else D=q;r=D<<24>>24;if(D<<24>>24>=e<<24>>24){i=1;return i|0}sj(g+(r<<2)|0,0,(e<<24>>24)-r<<2|0)|0;i=1;return i|0}default:{i=0;return i|0}}while(0);return 0}function Rb(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=Oa,J=0,K=0,L=0,M=0,N=Oa;e=u;u=u+48|0;g=e+36|0;h=e+24|0;i=e+12|0;j=e;if(!(xh(a,c,d)|0)){k=0;u=e;return k|0}l=f[(f[(f[c+4>>2]|0)+8>>2]|0)+(d<<2)>>2]|0;if((f[l+28>>2]|0)!=9){k=0;u=e;return k|0}m=c+48|0;c=f[m>>2]|0;o=ln(32)|0;f[g>>2]=o;f[g+8>>2]=-2147483616;f[g+4>>2]=17;p=o;q=14495;r=p+17|0;do{b[p>>0]=b[q>>0]|0;p=p+1|0;q=q+1|0}while((p|0)<(r|0));b[o+17>>0]=0;o=c+16|0;s=f[o>>2]|0;if(s){t=o;v=s;a:while(1){s=v;while(1){if((f[s+16>>2]|0)>=(d|0))break;w=f[s+4>>2]|0;if(!w){x=t;break a}else s=w}v=f[s>>2]|0;if(!v){x=s;break}else t=s}if(((x|0)!=(o|0)?(f[x+16>>2]|0)<=(d|0):0)?(o=x+20|0,(Jh(o,g)|0)!=0):0)y=Hk(o,g,-1)|0;else z=12}else z=12;if((z|0)==12)y=Hk(c,g,-1)|0;if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);if((y|0)<1){k=0;u=e;return k|0}c=f[m>>2]|0;o=ln(32)|0;f[g>>2]=o;f[g+8>>2]=-2147483616;f[g+4>>2]=19;p=o;q=14438;r=p+19|0;do{b[p>>0]=b[q>>0]|0;p=p+1|0;q=q+1|0}while((p|0)<(r|0));b[o+19>>0]=0;o=c+16|0;x=f[o>>2]|0;if(x){t=o;v=x;b:while(1){x=v;while(1){if((f[x+16>>2]|0)>=(d|0))break;w=f[x+4>>2]|0;if(!w){A=t;break b}else x=w}v=f[x>>2]|0;if(!v){A=x;break}else t=x}if((A|0)!=(o|0)?(f[A+16>>2]|0)<=(d|0):0)B=A+20|0;else z=24}else z=24;if((z|0)==24)B=c;if(!(Jh(B,g)|0))C=0;else{B=f[m>>2]|0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;c=ln(32)|0;f[h>>2]=c;f[h+8>>2]=-2147483616;f[h+4>>2]=18;p=c;q=14458;r=p+18|0;do{b[p>>0]=b[q>>0]|0;p=p+1|0;q=q+1|0}while((p|0)<(r|0));b[c+18>>0]=0;c=B+16|0;A=f[c>>2]|0;if(A){o=c;t=A;c:while(1){A=t;while(1){if((f[A+16>>2]|0)>=(d|0))break;v=f[A+4>>2]|0;if(!v){D=o;break c}else A=v}t=f[A>>2]|0;if(!t){D=A;break}else o=A}if((D|0)!=(c|0)?(f[D+16>>2]|0)<=(d|0):0)E=D+20|0;else z=34}else z=34;if((z|0)==34)E=B;B=(Jh(E,h)|0)!=0;if((b[h+11>>0]|0)<0)Oq(f[h>>2]|0);C=B}if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);if(!C){Wd(a+40|0,l,y)|0;k=1;u=e;return k|0}C=l+24|0;l=b[C>>0]|0;B=l<<24>>24;f[i>>2]=0;E=i+4|0;f[E>>2]=0;f[i+8>>2]=0;do if(l<<24>>24)if(l<<24>>24<0)aq(i);else{D=B<<2;c=ln(D)|0;f[i>>2]=c;o=c+(B<<2)|0;f[i+8>>2]=o;sj(c|0,0,D|0)|0;f[E>>2]=o;F=c;break}else F=0;while(0);B=f[m>>2]|0;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;l=ln(32)|0;f[j>>2]=l;f[j+8>>2]=-2147483616;f[j+4>>2]=19;p=l;q=14438;r=p+19|0;do{b[p>>0]=b[q>>0]|0;p=p+1|0;q=q+1|0}while((p|0)<(r|0));b[l+19>>0]=0;l=b[C>>0]|0;c=l<<24>>24;o=B+16|0;D=f[o>>2]|0;if(D){t=o;x=D;d:while(1){D=x;while(1){if((f[D+16>>2]|0)>=(d|0))break;v=f[D+4>>2]|0;if(!v){G=t;break d}else D=v}x=f[D>>2]|0;if(!x){G=D;break}else t=D}if(((G|0)!=(o|0)?(f[G+16>>2]|0)<=(d|0):0)?(o=G+20|0,(Jh(o,j)|0)!=0):0){t=Rg(o,j)|0;if((t|0)!=(G+24|0)){pj(g,t+28|0);t=g+11|0;G=b[t>>0]|0;o=G<<24>>24<0;if(!((o?f[g+4>>2]|0:G&255)|0))H=G;else{if(l<<24>>24>0){x=o?f[g>>2]|0:g;o=0;do{I=$(bq(x,h));A=x;x=f[h>>2]|0;if((A|0)==(x|0))break;n[F+(o<<2)>>2]=I;o=o+1|0}while((o|0)<(c|0));J=b[t>>0]|0}else J=G;H=J}if(H<<24>>24<0)Oq(f[g>>2]|0)}}else z=64}else z=64;if((z|0)==64?(H=Rg(B,j)|0,(H|0)!=(B+4|0)):0){pj(g,H+28|0);H=g+11|0;B=b[H>>0]|0;J=B<<24>>24<0;if(!((J?f[g+4>>2]|0:B&255)|0))K=B;else{if(l<<24>>24>0){l=J?f[g>>2]|0:g;J=0;do{I=$(bq(l,h));G=l;l=f[h>>2]|0;if((G|0)==(l|0))break;n[F+(J<<2)>>2]=I;J=J+1|0}while((J|0)<(c|0));L=b[H>>0]|0}else L=B;K=L}if(K<<24>>24<0)Oq(f[g>>2]|0)}if((b[j+11>>0]|0)<0)Oq(f[j>>2]|0);j=f[m>>2]|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;m=ln(32)|0;f[g>>2]=m;f[g+8>>2]=-2147483616;f[g+4>>2]=18;p=m;q=14458;r=p+18|0;do{b[p>>0]=b[q>>0]|0;p=p+1|0;q=q+1|0}while((p|0)<(r|0));b[m+18>>0]=0;m=j+16|0;q=f[m>>2]|0;if(q){p=m;r=q;e:while(1){q=r;while(1){if((f[q+16>>2]|0)>=(d|0))break;K=f[q+4>>2]|0;if(!K){M=p;break e}else q=K}r=f[q>>2]|0;if(!r){M=q;break}else p=q}if(((M|0)!=(m|0)?(f[M+16>>2]|0)<=(d|0):0)?(d=M+20|0,(Jh(d,g)|0)!=0):0)N=$(sk(d,g,$(1.0)));else z=86}else z=86;if((z|0)==86)N=$(sk(j,g,$(1.0)));if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);Dl(a+40|0,y,f[i>>2]|0,b[C>>0]|0,N);C=f[i>>2]|0;if(C|0){i=f[E>>2]|0;if((i|0)!=(C|0))f[E>>2]=i+(~((i+-4-C|0)>>>2)<<2);Oq(C)}k=1;u=e;return k|0}function Sb(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0;e=u;u=u+64|0;d=e+48|0;h=e+36|0;i=e+24|0;j=e+16|0;k=e+8|0;l=e;m=e+32|0;n=a+60|0;f[a+68>>2]=g;g=a+108|0;tk(g);o=a+56|0;p=f[o>>2]|0;q=(f[p+4>>2]|0)-(f[p>>2]|0)|0;r=q>>2;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;s=i;f[s>>2]=0;f[s+4>>2]=0;s=j;f[s>>2]=0;f[s+4>>2]=0;s=k;f[s>>2]=0;f[s+4>>2]=0;s=l;f[s>>2]=0;f[s+4>>2]=0;if((q|0)<=0){u=e;return 1}q=h+4|0;s=h+8|0;t=a+104|0;v=i+4|0;w=a+100|0;x=j+4|0;y=a+8|0;z=a+16|0;A=a+32|0;B=a+12|0;C=a+28|0;D=a+20|0;E=a+24|0;F=a+96|0;a=k+4|0;G=l+4|0;H=f[p>>2]|0;if((f[p+4>>2]|0)==(H|0)){J=p;aq(J)}else{K=0;L=H}while(1){f[m>>2]=f[L+(K<<2)>>2];f[d>>2]=f[m>>2];ic(n,d,h);H=f[h>>2]|0;p=(H|0)>-1?H:0-H|0;M=f[q>>2]|0;N=(M|0)>-1?M:0-M|0;O=Vn(N|0,((N|0)<0)<<31>>31|0,p|0,((p|0)<0)<<31>>31|0)|0;p=f[s>>2]|0;N=(p|0)>-1;P=N?p:0-p|0;p=Vn(O|0,I|0,P|0,((P|0)<0)<<31>>31|0)|0;P=I;if((p|0)==0&(P|0)==0){O=f[t>>2]|0;Q=O;R=h;S=M;T=O}else{O=f[t>>2]|0;U=((O|0)<0)<<31>>31;V=un(O|0,U|0,H|0,((H|0)<0)<<31>>31|0)|0;H=Ik(V|0,I|0,p|0,P|0)|0;f[h>>2]=H;V=un(O|0,U|0,M|0,((M|0)<0)<<31>>31|0)|0;M=Ik(V|0,I|0,p|0,P|0)|0;f[q>>2]=M;P=O-((H|0)>-1?H:0-H|0)-((M|0)>-1?M:0-M|0)|0;Q=N?P:0-P|0;R=s;S=M;T=O}f[R>>2]=Q;O=f[h>>2]|0;do if((O|0)<=-1){if((S|0)<0){M=f[s>>2]|0;W=(M|0)>-1?M:0-M|0;X=M}else{M=f[s>>2]|0;W=(f[w>>2]|0)-((M|0)>-1?M:0-M|0)|0;X=M}if((X|0)<0){Y=(S|0)>-1?S:0-S|0;Z=W;_=X;break}else{Y=(f[w>>2]|0)-((S|0)>-1?S:0-S|0)|0;Z=W;_=X;break}}else{M=f[s>>2]|0;Y=M+T|0;Z=T+S|0;_=M}while(0);M=(Z|0)==0;P=(Y|0)==0;N=f[w>>2]|0;do if(Y|Z){H=(N|0)==(Y|0);if(!(M&H)){p=(N|0)==(Z|0);if(!(P&p)){if(M&(T|0)<(Y|0)){$=0;aa=(T<<1)-Y|0;break}if(p&(T|0)>(Y|0)){$=Z;aa=(T<<1)-Y|0;break}if(H&(T|0)>(Z|0)){$=(T<<1)-Z|0;aa=Y;break}if(P){$=(T|0)<(Z|0)?(T<<1)-Z|0:Z;aa=0}else{$=Z;aa=Y}}else{$=Z;aa=Z}}else{$=Y;aa=Y}}else{$=N;aa=N}while(0);f[i>>2]=$;f[v>>2]=aa;P=0-S|0;M=0-_|0;f[h>>2]=0-O;f[q>>2]=P;f[s>>2]=M;if((O|0)<1){ba=T-_|0;ca=T-S|0}else{H=(_|0)<1?M:_;M=(S|0)<1?P:S;ba=(_|0)>0?M:N-M|0;ca=(S|0)>0?H:N-H|0}H=(ca|0)==0;M=(ba|0)==0;do if(((ba|ca|0)!=0?(P=(N|0)==(ba|0),!(H&P)):0)?(p=(N|0)==(ca|0),!(M&p)):0){if(H&(T|0)<(ba|0)){da=0;ea=(T<<1)-ba|0;break}if(p&(T|0)>(ba|0)){da=N;ea=(T<<1)-ba|0;break}if(P&(T|0)>(ca|0)){da=(T<<1)-ca|0;ea=N;break}if(M){da=(T|0)<(ca|0)?(T<<1)-ca|0:ca;ea=0}else{da=ca;ea=ba}}else{da=N;ea=N}while(0);f[j>>2]=da;f[x>>2]=ea;N=K<<1;M=b+(N<<2)|0;H=f[y>>2]|0;if((H|0)>0){O=0;P=i;p=H;while(1){if((p|0)>0){H=0;do{V=f[P+(H<<2)>>2]|0;U=f[z>>2]|0;if((V|0)>(U|0)){fa=f[A>>2]|0;f[fa+(H<<2)>>2]=U;ga=fa}else{fa=f[B>>2]|0;U=f[A>>2]|0;f[U+(H<<2)>>2]=(V|0)<(fa|0)?fa:V;ga=U}H=H+1|0;U=f[y>>2]|0}while((H|0)<(U|0));ha=ga;ia=U}else{ha=f[A>>2]|0;ia=p}H=(f[M+(O<<2)>>2]|0)-(f[ha+(O<<2)>>2]|0)|0;U=k+(O<<2)|0;f[U>>2]=H;ja=f[C>>2]|0;if((H|0)>=(ja|0)){if((H|0)>(f[E>>2]|0)){ka=H-(f[D>>2]|0)|0;la=52}}else{ka=(f[D>>2]|0)+H|0;la=52}if((la|0)==52){la=0;f[U>>2]=ka}O=O+1|0;if((O|0)>=(ia|0))break;else{P=ha;p=ia}}if((ia|0)>0){p=0;P=j;O=ia;U=ja;while(1){if((O|0)>0){H=0;do{V=f[P+(H<<2)>>2]|0;fa=f[z>>2]|0;if((V|0)>(fa|0))f[ha+(H<<2)>>2]=fa;else{fa=f[B>>2]|0;f[ha+(H<<2)>>2]=(V|0)<(fa|0)?fa:V}H=H+1|0;ma=f[y>>2]|0}while((H|0)<(ma|0));na=f[C>>2]|0;oa=ma}else{na=U;oa=O}H=(f[M+(p<<2)>>2]|0)-(f[ha+(p<<2)>>2]|0)|0;V=l+(p<<2)|0;f[V>>2]=H;if((H|0)>=(na|0)){if((H|0)>(f[E>>2]|0)){pa=H-(f[D>>2]|0)|0;la=65}}else{pa=(f[D>>2]|0)+H|0;la=65}if((la|0)==65){la=0;f[V>>2]=pa}p=p+1|0;if((p|0)>=(oa|0))break;else{P=ha;O=oa;U=na}}}}U=f[k>>2]|0;O=f[t>>2]|0;if((O|0)>=(U|0))if((U|0)<(0-O|0))qa=(f[F>>2]|0)+U|0;else qa=U;else qa=U-(f[F>>2]|0)|0;f[k>>2]=qa;U=f[a>>2]|0;if((O|0)>=(U|0))if((U|0)<(0-O|0))ra=(f[F>>2]|0)+U|0;else ra=U;else ra=U-(f[F>>2]|0)|0;f[a>>2]=ra;U=f[l>>2]|0;if((O|0)>=(U|0))if((U|0)<(0-O|0))sa=(f[F>>2]|0)+U|0;else sa=U;else sa=U-(f[F>>2]|0)|0;f[l>>2]=sa;U=f[G>>2]|0;if((O|0)>=(U|0))if((U|0)<(0-O|0))ta=(f[F>>2]|0)+U|0;else ta=U;else ta=U-(f[F>>2]|0)|0;f[G>>2]=ta;if((((ra|0)>-1?ra:0-ra|0)+((qa|0)>-1?qa:0-qa|0)|0)<(((sa|0)>-1?sa:0-sa|0)+((ta|0)>-1?ta:0-ta|0)|0)){fj(g,0);ua=k}else{fj(g,1);ua=l}U=f[ua>>2]|0;if((U|0)<0)va=(f[F>>2]|0)+U|0;else va=U;U=c+(N<<2)|0;f[U>>2]=va;O=f[ua+4>>2]|0;if((O|0)<0)wa=(f[F>>2]|0)+O|0;else wa=O;f[U+4>>2]=wa;K=K+1|0;if((K|0)>=(r|0)){la=3;break}U=f[o>>2]|0;L=f[U>>2]|0;if((f[U+4>>2]|0)-L>>2>>>0<=K>>>0){J=U;la=4;break}}if((la|0)==3){u=e;return 1}else if((la|0)==4)aq(J);return 0}function Tb(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0;e=u;u=u+64|0;d=e+48|0;h=e+36|0;i=e+24|0;j=e+16|0;k=e+8|0;l=e;m=e+32|0;n=a+60|0;f[a+68>>2]=g;g=a+108|0;tk(g);o=a+56|0;p=f[o>>2]|0;q=(f[p+4>>2]|0)-(f[p>>2]|0)|0;r=q>>2;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;s=i;f[s>>2]=0;f[s+4>>2]=0;s=j;f[s>>2]=0;f[s+4>>2]=0;s=k;f[s>>2]=0;f[s+4>>2]=0;s=l;f[s>>2]=0;f[s+4>>2]=0;if((q|0)<=0){u=e;return 1}q=h+4|0;s=h+8|0;t=a+104|0;v=i+4|0;w=a+100|0;x=j+4|0;y=a+8|0;z=a+16|0;A=a+32|0;B=a+12|0;C=a+28|0;D=a+20|0;E=a+24|0;F=a+96|0;a=k+4|0;G=l+4|0;H=f[p>>2]|0;if((f[p+4>>2]|0)==(H|0)){J=p;aq(J)}else{K=0;L=H}while(1){f[m>>2]=f[L+(K<<2)>>2];f[d>>2]=f[m>>2];$b(n,d,h);H=f[h>>2]|0;p=(H|0)>-1?H:0-H|0;M=f[q>>2]|0;N=(M|0)>-1?M:0-M|0;O=Vn(N|0,((N|0)<0)<<31>>31|0,p|0,((p|0)<0)<<31>>31|0)|0;p=f[s>>2]|0;N=(p|0)>-1;P=N?p:0-p|0;p=Vn(O|0,I|0,P|0,((P|0)<0)<<31>>31|0)|0;P=I;if((p|0)==0&(P|0)==0){O=f[t>>2]|0;Q=O;R=h;S=M;T=O}else{O=f[t>>2]|0;U=((O|0)<0)<<31>>31;V=un(O|0,U|0,H|0,((H|0)<0)<<31>>31|0)|0;H=Ik(V|0,I|0,p|0,P|0)|0;f[h>>2]=H;V=un(O|0,U|0,M|0,((M|0)<0)<<31>>31|0)|0;M=Ik(V|0,I|0,p|0,P|0)|0;f[q>>2]=M;P=O-((H|0)>-1?H:0-H|0)-((M|0)>-1?M:0-M|0)|0;Q=N?P:0-P|0;R=s;S=M;T=O}f[R>>2]=Q;O=f[h>>2]|0;do if((O|0)<=-1){if((S|0)<0){M=f[s>>2]|0;W=(M|0)>-1?M:0-M|0;X=M}else{M=f[s>>2]|0;W=(f[w>>2]|0)-((M|0)>-1?M:0-M|0)|0;X=M}if((X|0)<0){Y=(S|0)>-1?S:0-S|0;Z=W;_=X;break}else{Y=(f[w>>2]|0)-((S|0)>-1?S:0-S|0)|0;Z=W;_=X;break}}else{M=f[s>>2]|0;Y=M+T|0;Z=T+S|0;_=M}while(0);M=(Z|0)==0;P=(Y|0)==0;N=f[w>>2]|0;do if(Y|Z){H=(N|0)==(Y|0);if(!(M&H)){p=(N|0)==(Z|0);if(!(P&p)){if(M&(T|0)<(Y|0)){$=0;aa=(T<<1)-Y|0;break}if(p&(T|0)>(Y|0)){$=Z;aa=(T<<1)-Y|0;break}if(H&(T|0)>(Z|0)){$=(T<<1)-Z|0;aa=Y;break}if(P){$=(T|0)<(Z|0)?(T<<1)-Z|0:Z;aa=0}else{$=Z;aa=Y}}else{$=Z;aa=Z}}else{$=Y;aa=Y}}else{$=N;aa=N}while(0);f[i>>2]=$;f[v>>2]=aa;P=0-S|0;M=0-_|0;f[h>>2]=0-O;f[q>>2]=P;f[s>>2]=M;if((O|0)<1){ba=T-_|0;ca=T-S|0}else{H=(_|0)<1?M:_;M=(S|0)<1?P:S;ba=(_|0)>0?M:N-M|0;ca=(S|0)>0?H:N-H|0}H=(ca|0)==0;M=(ba|0)==0;do if(((ba|ca|0)!=0?(P=(N|0)==(ba|0),!(H&P)):0)?(p=(N|0)==(ca|0),!(M&p)):0){if(H&(T|0)<(ba|0)){da=0;ea=(T<<1)-ba|0;break}if(p&(T|0)>(ba|0)){da=N;ea=(T<<1)-ba|0;break}if(P&(T|0)>(ca|0)){da=(T<<1)-ca|0;ea=N;break}if(M){da=(T|0)<(ca|0)?(T<<1)-ca|0:ca;ea=0}else{da=ca;ea=ba}}else{da=N;ea=N}while(0);f[j>>2]=da;f[x>>2]=ea;N=K<<1;M=b+(N<<2)|0;H=f[y>>2]|0;if((H|0)>0){O=0;P=i;p=H;while(1){if((p|0)>0){H=0;do{V=f[P+(H<<2)>>2]|0;U=f[z>>2]|0;if((V|0)>(U|0)){fa=f[A>>2]|0;f[fa+(H<<2)>>2]=U;ga=fa}else{fa=f[B>>2]|0;U=f[A>>2]|0;f[U+(H<<2)>>2]=(V|0)<(fa|0)?fa:V;ga=U}H=H+1|0;U=f[y>>2]|0}while((H|0)<(U|0));ha=ga;ia=U}else{ha=f[A>>2]|0;ia=p}H=(f[M+(O<<2)>>2]|0)-(f[ha+(O<<2)>>2]|0)|0;U=k+(O<<2)|0;f[U>>2]=H;ja=f[C>>2]|0;if((H|0)>=(ja|0)){if((H|0)>(f[E>>2]|0)){ka=H-(f[D>>2]|0)|0;la=52}}else{ka=(f[D>>2]|0)+H|0;la=52}if((la|0)==52){la=0;f[U>>2]=ka}O=O+1|0;if((O|0)>=(ia|0))break;else{P=ha;p=ia}}if((ia|0)>0){p=0;P=j;O=ia;U=ja;while(1){if((O|0)>0){H=0;do{V=f[P+(H<<2)>>2]|0;fa=f[z>>2]|0;if((V|0)>(fa|0))f[ha+(H<<2)>>2]=fa;else{fa=f[B>>2]|0;f[ha+(H<<2)>>2]=(V|0)<(fa|0)?fa:V}H=H+1|0;ma=f[y>>2]|0}while((H|0)<(ma|0));na=f[C>>2]|0;oa=ma}else{na=U;oa=O}H=(f[M+(p<<2)>>2]|0)-(f[ha+(p<<2)>>2]|0)|0;V=l+(p<<2)|0;f[V>>2]=H;if((H|0)>=(na|0)){if((H|0)>(f[E>>2]|0)){pa=H-(f[D>>2]|0)|0;la=65}}else{pa=(f[D>>2]|0)+H|0;la=65}if((la|0)==65){la=0;f[V>>2]=pa}p=p+1|0;if((p|0)>=(oa|0))break;else{P=ha;O=oa;U=na}}}}U=f[k>>2]|0;O=f[t>>2]|0;if((O|0)>=(U|0))if((U|0)<(0-O|0))qa=(f[F>>2]|0)+U|0;else qa=U;else qa=U-(f[F>>2]|0)|0;f[k>>2]=qa;U=f[a>>2]|0;if((O|0)>=(U|0))if((U|0)<(0-O|0))ra=(f[F>>2]|0)+U|0;else ra=U;else ra=U-(f[F>>2]|0)|0;f[a>>2]=ra;U=f[l>>2]|0;if((O|0)>=(U|0))if((U|0)<(0-O|0))sa=(f[F>>2]|0)+U|0;else sa=U;else sa=U-(f[F>>2]|0)|0;f[l>>2]=sa;U=f[G>>2]|0;if((O|0)>=(U|0))if((U|0)<(0-O|0))ta=(f[F>>2]|0)+U|0;else ta=U;else ta=U-(f[F>>2]|0)|0;f[G>>2]=ta;if((((ra|0)>-1?ra:0-ra|0)+((qa|0)>-1?qa:0-qa|0)|0)<(((sa|0)>-1?sa:0-sa|0)+((ta|0)>-1?ta:0-ta|0)|0)){fj(g,0);ua=k}else{fj(g,1);ua=l}U=f[ua>>2]|0;if((U|0)<0)va=(f[F>>2]|0)+U|0;else va=U;U=c+(N<<2)|0;f[U>>2]=va;O=f[ua+4>>2]|0;if((O|0)<0)wa=(f[F>>2]|0)+O|0;else wa=O;f[U+4>>2]=wa;K=K+1|0;if((K|0)>=(r|0)){la=3;break}U=f[o>>2]|0;L=f[U>>2]|0;if((f[U+4>>2]|0)-L>>2>>>0<=K>>>0){J=U;la=4;break}}if((la|0)==3){u=e;return 1}else if((la|0)==4)aq(J);return 0}function Ub(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=Oa,V=Oa,Y=Oa,Z=0,_=0,aa=0,ba=0;d=u;u=u+16|0;e=d;g=a+16|0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;n[g>>2]=$(1.0);i=a+20|0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;n[a+36>>2]=$(1.0);j=f[c+8>>2]|0;a:do if(j|0){k=a+4|0;l=a+12|0;m=a+8|0;o=j;p=j;while(1){q=o+8|0;r=b[q+11>>0]|0;s=r<<24>>24<0;t=s?f[q>>2]|0:q;v=s?f[o+12>>2]|0:r&255;if(v>>>0>3){r=t;s=v;w=v;while(1){x=X(h[r>>0]|h[r+1>>0]<<8|h[r+2>>0]<<16|h[r+3>>0]<<24,1540483477)|0;s=(X(x>>>24^x,1540483477)|0)^(X(s,1540483477)|0);w=w+-4|0;if(w>>>0<=3)break;else r=r+4|0}r=v+-4|0;w=r&-4;y=r-w|0;z=t+(w+4)|0;A=s}else{y=v;z=t;A=v}switch(y|0){case 3:{B=h[z+2>>0]<<16^A;C=8;break}case 2:{B=A;C=8;break}case 1:{D=A;C=9;break}default:E=A}if((C|0)==8){C=0;D=h[z+1>>0]<<8^B;C=9}if((C|0)==9){C=0;E=X(D^h[z>>0],1540483477)|0}w=X(E>>>13^E,1540483477)|0;r=w>>>15^w;w=f[k>>2]|0;x=(w|0)==0;b:do if(!x){F=w+-1|0;G=(F&w|0)==0;if(!G)if(r>>>0<w>>>0)H=r;else H=(r>>>0)%(w>>>0)|0;else H=r&F;I=f[(f[a>>2]|0)+(H<<2)>>2]|0;if((I|0)!=0?(J=f[I>>2]|0,(J|0)!=0):0){I=(v|0)==0;if(G){if(I){G=J;while(1){K=f[G+4>>2]|0;if(!((K|0)==(r|0)|(K&F|0)==(H|0))){L=H;C=50;break b}K=b[G+8+11>>0]|0;if(!((K<<24>>24<0?f[G+12>>2]|0:K&255)|0))break b;G=f[G>>2]|0;if(!G){L=H;C=50;break b}}}else M=J;while(1){G=f[M+4>>2]|0;if(!((G|0)==(r|0)|(G&F|0)==(H|0))){L=H;C=50;break b}G=M+8|0;K=b[G+11>>0]|0;N=K<<24>>24<0;O=K&255;do if(((N?f[M+12>>2]|0:O)|0)==(v|0)){K=f[G>>2]|0;if(N)if(!(Vk(K,t,v)|0))break b;else break;if((b[t>>0]|0)==(K&255)<<24>>24){K=G;P=O;Q=t;do{P=P+-1|0;K=K+1|0;if(!P)break b;Q=Q+1|0}while((b[K>>0]|0)==(b[Q>>0]|0))}}while(0);M=f[M>>2]|0;if(!M){L=H;C=50;break b}}}if(I){F=J;while(1){O=f[F+4>>2]|0;if((O|0)!=(r|0)){if(O>>>0<w>>>0)R=O;else R=(O>>>0)%(w>>>0)|0;if((R|0)!=(H|0)){L=H;C=50;break b}}O=b[F+8+11>>0]|0;if(!((O<<24>>24<0?f[F+12>>2]|0:O&255)|0))break b;F=f[F>>2]|0;if(!F){L=H;C=50;break b}}}else S=J;while(1){F=f[S+4>>2]|0;if((F|0)!=(r|0)){if(F>>>0<w>>>0)T=F;else T=(F>>>0)%(w>>>0)|0;if((T|0)!=(H|0)){L=H;C=50;break b}}F=S+8|0;I=b[F+11>>0]|0;O=I<<24>>24<0;G=I&255;do if(((O?f[S+12>>2]|0:G)|0)==(v|0)){I=f[F>>2]|0;if(O)if(!(Vk(I,t,v)|0))break b;else break;if((b[t>>0]|0)==(I&255)<<24>>24){I=F;N=G;Q=t;do{N=N+-1|0;I=I+1|0;if(!N)break b;Q=Q+1|0}while((b[I>>0]|0)==(b[Q>>0]|0))}}while(0);S=f[S>>2]|0;if(!S){L=H;C=50;break}}}else{L=H;C=50}}else{L=0;C=50}while(0);if((C|0)==50){C=0;Di(e,a,r,q);U=$(((f[l>>2]|0)+1|0)>>>0);V=$(w>>>0);Y=$(n[g>>2]);do if(x|$(Y*V)<U){t=w<<1|(w>>>0<3|(w+-1&w|0)!=0)&1;v=~~$(W($(U/Y)))>>>0;ei(a,t>>>0<v>>>0?v:t);t=f[k>>2]|0;v=t+-1|0;if(!(v&t)){Z=t;_=v&r;break}if(r>>>0<t>>>0){Z=t;_=r}else{Z=t;_=(r>>>0)%(t>>>0)|0}}else{Z=w;_=L}while(0);w=f[(f[a>>2]|0)+(_<<2)>>2]|0;if(!w){f[f[e>>2]>>2]=f[m>>2];f[m>>2]=f[e>>2];f[(f[a>>2]|0)+(_<<2)>>2]=m;r=f[e>>2]|0;x=f[r>>2]|0;if(x|0){q=f[x+4>>2]|0;x=Z+-1|0;if(x&Z)if(q>>>0<Z>>>0)aa=q;else aa=(q>>>0)%(Z>>>0)|0;else aa=q&x;f[(f[a>>2]|0)+(aa<<2)>>2]=r}}else{f[f[e>>2]>>2]=f[w>>2];f[w>>2]=f[e>>2]}f[l>>2]=(f[l>>2]|0)+1}w=f[p>>2]|0;if(!w)break a;else{o=w;p=w}}}while(0);e=f[c+28>>2]|0;if(!e){u=d;return}else ba=e;do{e=ba;c=ln(40)|0;Ub(c,f[e+20>>2]|0);aa=Ec(i,e+8|0)|0;e=f[aa>>2]|0;f[aa>>2]=c;if(e|0){c=f[e+28>>2]|0;if(c|0){aa=c;do{c=aa;aa=f[aa>>2]|0;ri(c+8|0);Oq(c)}while((aa|0)!=0)}aa=e+20|0;c=f[aa>>2]|0;f[aa>>2]=0;if(c|0)Oq(c);c=f[e+8>>2]|0;if(c|0){aa=c;do{c=aa;aa=f[aa>>2]|0;a=c+8|0;Z=f[c+20>>2]|0;if(Z|0){_=c+24|0;if((f[_>>2]|0)!=(Z|0))f[_>>2]=Z;Oq(Z)}if((b[a+11>>0]|0)<0)Oq(f[a>>2]|0);Oq(c)}while((aa|0)!=0)}aa=f[e>>2]|0;f[e>>2]=0;if(aa|0)Oq(aa);Oq(e)}ba=f[ba>>2]|0}while((ba|0)!=0);u=d;return}function Vb(a,c,e){a=a|0;c=c|0;e=e|0;var g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=Oa,fa=Oa,ga=Oa,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0;g=u;u=u+48|0;i=g+16|0;j=g+12|0;k=g;l=i+16|0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;n[l>>2]=$(1.0);m=a+80|0;o=f[m>>2]|0;f[k>>2]=0;p=k+4|0;f[p>>2]=0;f[k+8>>2]=0;if(o){if(o>>>0>1073741823)aq(k);q=o<<2;r=ln(q)|0;f[k>>2]=r;s=r+(o<<2)|0;f[k+8>>2]=s;sj(r|0,0,q|0)|0;f[p>>2]=s;s=c+48|0;q=c+40|0;o=i+4|0;t=i+12|0;v=i+8|0;w=a+40|0;x=a+64|0;y=f[e>>2]|0;e=r;z=0;A=0;B=r;C=r;D=0;E=r;while(1){r=s;F=f[r>>2]|0;G=f[r+4>>2]|0;r=q;H=un(f[r>>2]|0,f[r+4>>2]|0,y+z|0,0)|0;r=Vn(H|0,I|0,F|0,G|0)|0;G=(f[f[c>>2]>>2]|0)+r|0;r=h[G>>0]|h[G+1>>0]<<8|h[G+2>>0]<<16|h[G+3>>0]<<24;f[j>>2]=r;G=r&65535;F=r>>>16;H=F&65535;J=(r&65535^318)+239^F;F=(D|0)==0;a:do if(!F){K=D+-1|0;L=(K&D|0)==0;if(!L)if(J>>>0<D>>>0)M=J;else M=(J>>>0)%(D>>>0)|0;else M=J&K;N=f[(f[i>>2]|0)+(M<<2)>>2]|0;do if(N|0?(O=f[N>>2]|0,O|0):0){b:do if(L){P=O;while(1){Q=f[P+4>>2]|0;R=(Q|0)==(J|0);if(!(R|(Q&K|0)==(M|0))){S=27;break b}if((R?(R=P+8|0,(d[R>>1]|0)==G<<16>>16):0)?(d[R+2>>1]|0)==H<<16>>16:0){T=P;S=26;break b}P=f[P>>2]|0;if(!P){S=27;break}}}else{P=O;while(1){R=f[P+4>>2]|0;if((R|0)==(J|0)){Q=P+8|0;if((d[Q>>1]|0)==G<<16>>16?(d[Q+2>>1]|0)==H<<16>>16:0){T=P;S=26;break b}}else{if(R>>>0<D>>>0)U=R;else U=(R>>>0)%(D>>>0)|0;if((U|0)!=(M|0)){S=27;break b}}P=f[P>>2]|0;if(!P){S=27;break}}}while(0);if((S|0)==26){S=0;f[E+(z<<2)>>2]=f[T+12>>2];V=e;X=A;Y=C;Z=B;_=E;break a}else if((S|0)==27){S=0;if(F){aa=0;S=46;break a}else break}}while(0);K=D+-1|0;L=(K&D|0)==0;if(!L)if(J>>>0<D>>>0)ba=J;else ba=(J>>>0)%(D>>>0)|0;else ba=K&J;N=f[(f[i>>2]|0)+(ba<<2)>>2]|0;if((N|0)!=0?(O=f[N>>2]|0,(O|0)!=0):0){if(L){L=O;while(1){N=f[L+4>>2]|0;if(!((N|0)==(J|0)|(N&K|0)==(ba|0))){aa=ba;S=46;break a}N=L+8|0;if((d[N>>1]|0)==G<<16>>16?(d[N+2>>1]|0)==H<<16>>16:0){S=61;break a}L=f[L>>2]|0;if(!L){aa=ba;S=46;break a}}}else ca=O;while(1){L=f[ca+4>>2]|0;if((L|0)!=(J|0)){if(L>>>0<D>>>0)da=L;else da=(L>>>0)%(D>>>0)|0;if((da|0)!=(ba|0)){aa=ba;S=46;break a}}L=ca+8|0;if((d[L>>1]|0)==G<<16>>16?(d[L+2>>1]|0)==H<<16>>16:0){S=61;break a}ca=f[ca>>2]|0;if(!ca){aa=ba;S=46;break}}}else{aa=ba;S=46}}else{aa=0;S=46}while(0);if((S|0)==46){S=0;H=ln(16)|0;G=H+8|0;d[G>>1]=r;d[G+2>>1]=r>>>16;f[H+12>>2]=A;f[H+4>>2]=J;f[H>>2]=0;ea=$(((f[t>>2]|0)+1|0)>>>0);fa=$(D>>>0);ga=$(n[l>>2]);do if(F|$(ga*fa)<ea){G=D<<1|(D>>>0<3|(D+-1&D|0)!=0)&1;O=~~$(W($(ea/ga)))>>>0;Uh(i,G>>>0<O>>>0?O:G);G=f[o>>2]|0;O=G+-1|0;if(!(O&G)){ha=G;ia=O&J;break}if(J>>>0<G>>>0){ha=G;ia=J}else{ha=G;ia=(J>>>0)%(G>>>0)|0}}else{ha=D;ia=aa}while(0);J=(f[i>>2]|0)+(ia<<2)|0;F=f[J>>2]|0;if(!F){f[H>>2]=f[v>>2];f[v>>2]=H;f[J>>2]=v;J=f[H>>2]|0;if(J|0){r=f[J+4>>2]|0;J=ha+-1|0;if(J&ha)if(r>>>0<ha>>>0)ja=r;else ja=(r>>>0)%(ha>>>0)|0;else ja=r&J;ka=(f[i>>2]|0)+(ja<<2)|0;S=59}}else{f[H>>2]=f[F>>2];ka=F;S=59}if((S|0)==59){S=0;f[ka>>2]=H}f[t>>2]=(f[t>>2]|0)+1;S=61}if((S|0)==61){S=0;F=w;J=f[F>>2]|0;r=un(J|0,f[F+4>>2]|0,A|0,0)|0;kh((f[f[x>>2]>>2]|0)+r|0,j|0,J|0)|0;J=f[k>>2]|0;f[J+(z<<2)>>2]=A;V=J;X=A+1|0;Y=J;Z=J;_=J}J=z+1|0;la=f[m>>2]|0;if(J>>>0>=la>>>0)break;e=V;z=J;A=X;B=Z;C=Y;D=f[o>>2]|0;E=_}if((X|0)==(la|0))ma=Z;else{Z=a+84|0;if(!(b[Z>>0]|0)){_=f[a+72>>2]|0;E=f[a+68>>2]|0;o=E;if((_|0)==(E|0))na=V;else{D=_-E>>2;E=0;do{_=o+(E<<2)|0;f[_>>2]=f[Y+(f[_>>2]<<2)>>2];E=E+1|0}while(E>>>0<D>>>0);na=V}}else{b[Z>>0]=0;Z=a+68|0;V=a+72|0;D=f[V>>2]|0;E=f[Z>>2]|0;Y=D-E>>2;o=E;E=D;if(la>>>0<=Y>>>0)if(la>>>0<Y>>>0?(D=o+(la<<2)|0,(D|0)!=(E|0)):0){f[V>>2]=E+(~((E+-4-D|0)>>>2)<<2);oa=la}else oa=la;else{Ch(Z,la-Y|0,1220);oa=f[m>>2]|0}Y=f[k>>2]|0;if(!oa)na=Y;else{k=f[a+68>>2]|0;a=0;do{f[k+(a<<2)>>2]=f[Y+(a<<2)>>2];a=a+1|0}while(a>>>0<oa>>>0);na=Y}}f[m>>2]=X;ma=na}if(!ma)pa=X;else{na=f[p>>2]|0;if((na|0)!=(ma|0))f[p>>2]=na+(~((na+-4-ma|0)>>>2)<<2);Oq(ma);pa=X}}else pa=0;X=f[i+8>>2]|0;if(X|0){ma=X;do{X=ma;ma=f[ma>>2]|0;Oq(X)}while((ma|0)!=0)}ma=f[i>>2]|0;f[i>>2]=0;if(!ma){u=g;return pa|0}Oq(ma);u=g;return pa|0}function Wb(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=Oa,da=Oa,ea=Oa,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0;e=u;u=u+48|0;g=e+20|0;i=e;j=e+8|0;k=g+16|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;f[g+12>>2]=0;n[k>>2]=$(1.0);l=a+80|0;m=f[l>>2]|0;f[j>>2]=0;o=j+4|0;f[o>>2]=0;f[j+8>>2]=0;if(m){if(m>>>0>1073741823)aq(j);p=m<<2;q=ln(p)|0;f[j>>2]=q;r=q+(m<<2)|0;f[j+8>>2]=r;sj(q|0,0,p|0)|0;f[o>>2]=r;r=c+48|0;p=c+40|0;m=g+4|0;s=g+12|0;t=g+8|0;v=a+40|0;w=a+64|0;x=f[d>>2]|0;d=q;y=0;z=0;A=q;B=q;C=q;q=0;while(1){D=r;E=f[D>>2]|0;F=f[D+4>>2]|0;D=p;G=un(f[D>>2]|0,f[D+4>>2]|0,x+y|0,0)|0;D=Vn(G|0,I|0,E|0,F|0)|0;F=(f[f[c>>2]>>2]|0)+D|0;D=F;E=h[D>>0]|h[D+1>>0]<<8|h[D+2>>0]<<16|h[D+3>>0]<<24;D=F+4|0;F=h[D>>0]|h[D+1>>0]<<8|h[D+2>>0]<<16|h[D+3>>0]<<24;D=i;f[D>>2]=E;f[D+4>>2]=F;D=(E^318)+239^F;G=(q|0)==0;a:do if(!G){H=q+-1|0;J=(H&q|0)==0;if(!J)if(D>>>0<q>>>0)K=D;else K=(D>>>0)%(q>>>0)|0;else K=D&H;L=f[(f[g>>2]|0)+(K<<2)>>2]|0;do if(L|0?(M=f[L>>2]|0,M|0):0){b:do if(J){N=M;while(1){O=f[N+4>>2]|0;P=(O|0)==(D|0);if(!(P|(O&H|0)==(K|0))){Q=27;break b}if((P?(f[N+8>>2]|0)==(E|0):0)?(f[N+12>>2]|0)==(F|0):0){R=N;Q=26;break b}N=f[N>>2]|0;if(!N){Q=27;break}}}else{N=M;while(1){P=f[N+4>>2]|0;if((P|0)==(D|0)){if((f[N+8>>2]|0)==(E|0)?(f[N+12>>2]|0)==(F|0):0){R=N;Q=26;break b}}else{if(P>>>0<q>>>0)S=P;else S=(P>>>0)%(q>>>0)|0;if((S|0)!=(K|0)){Q=27;break b}}N=f[N>>2]|0;if(!N){Q=27;break}}}while(0);if((Q|0)==26){Q=0;f[A+(y<<2)>>2]=f[R+16>>2];T=d;U=z;V=C;X=B;Y=A;break a}else if((Q|0)==27){Q=0;if(G){Z=0;Q=46;break a}else break}}while(0);H=q+-1|0;J=(H&q|0)==0;if(!J)if(D>>>0<q>>>0)_=D;else _=(D>>>0)%(q>>>0)|0;else _=H&D;L=f[(f[g>>2]|0)+(_<<2)>>2]|0;if((L|0)!=0?(M=f[L>>2]|0,(M|0)!=0):0){if(J){J=M;while(1){L=f[J+4>>2]|0;if(!((L|0)==(D|0)|(L&H|0)==(_|0))){Z=_;Q=46;break a}if((f[J+8>>2]|0)==(E|0)?(f[J+12>>2]|0)==(F|0):0){Q=61;break a}J=f[J>>2]|0;if(!J){Z=_;Q=46;break a}}}else aa=M;while(1){J=f[aa+4>>2]|0;if((J|0)!=(D|0)){if(J>>>0<q>>>0)ba=J;else ba=(J>>>0)%(q>>>0)|0;if((ba|0)!=(_|0)){Z=_;Q=46;break a}}if((f[aa+8>>2]|0)==(E|0)?(f[aa+12>>2]|0)==(F|0):0){Q=61;break a}aa=f[aa>>2]|0;if(!aa){Z=_;Q=46;break}}}else{Z=_;Q=46}}else{Z=0;Q=46}while(0);if((Q|0)==46){Q=0;M=ln(20)|0;J=M+8|0;f[J>>2]=E;f[J+4>>2]=F;f[M+16>>2]=z;f[M+4>>2]=D;f[M>>2]=0;ca=$(((f[s>>2]|0)+1|0)>>>0);da=$(q>>>0);ea=$(n[k>>2]);do if(G|$(ea*da)<ca){J=q<<1|(q>>>0<3|(q+-1&q|0)!=0)&1;H=~~$(W($(ca/ea)))>>>0;Yh(g,J>>>0<H>>>0?H:J);J=f[m>>2]|0;H=J+-1|0;if(!(H&J)){fa=J;ga=H&D;break}if(D>>>0<J>>>0){fa=J;ga=D}else{fa=J;ga=(D>>>0)%(J>>>0)|0}}else{fa=q;ga=Z}while(0);D=(f[g>>2]|0)+(ga<<2)|0;G=f[D>>2]|0;if(!G){f[M>>2]=f[t>>2];f[t>>2]=M;f[D>>2]=t;D=f[M>>2]|0;if(D|0){F=f[D+4>>2]|0;D=fa+-1|0;if(D&fa)if(F>>>0<fa>>>0)ha=F;else ha=(F>>>0)%(fa>>>0)|0;else ha=F&D;ia=(f[g>>2]|0)+(ha<<2)|0;Q=59}}else{f[M>>2]=f[G>>2];ia=G;Q=59}if((Q|0)==59){Q=0;f[ia>>2]=M}f[s>>2]=(f[s>>2]|0)+1;Q=61}if((Q|0)==61){Q=0;G=v;D=f[G>>2]|0;F=un(D|0,f[G+4>>2]|0,z|0,0)|0;kh((f[f[w>>2]>>2]|0)+F|0,i|0,D|0)|0;D=f[j>>2]|0;f[D+(y<<2)>>2]=z;T=D;U=z+1|0;V=D;X=D;Y=D}D=y+1|0;ja=f[l>>2]|0;if(D>>>0>=ja>>>0)break;d=T;y=D;z=U;A=Y;B=X;C=V;q=f[m>>2]|0}if((U|0)==(ja|0))ka=X;else{X=a+84|0;if(!(b[X>>0]|0)){m=f[a+72>>2]|0;q=f[a+68>>2]|0;C=q;if((m|0)==(q|0))la=T;else{B=m-q>>2;q=0;do{m=C+(q<<2)|0;f[m>>2]=f[V+(f[m>>2]<<2)>>2];q=q+1|0}while(q>>>0<B>>>0);la=T}}else{b[X>>0]=0;X=a+68|0;T=a+72|0;B=f[T>>2]|0;q=f[X>>2]|0;V=B-q>>2;C=q;q=B;if(ja>>>0<=V>>>0)if(ja>>>0<V>>>0?(B=C+(ja<<2)|0,(B|0)!=(q|0)):0){f[T>>2]=q+(~((q+-4-B|0)>>>2)<<2);ma=ja}else ma=ja;else{Ch(X,ja-V|0,1220);ma=f[l>>2]|0}V=f[j>>2]|0;if(!ma)la=V;else{j=f[a+68>>2]|0;a=0;do{f[j+(a<<2)>>2]=f[V+(a<<2)>>2];a=a+1|0}while(a>>>0<ma>>>0);la=V}}f[l>>2]=U;ka=la}if(!ka)na=U;else{la=f[o>>2]|0;if((la|0)!=(ka|0))f[o>>2]=la+(~((la+-4-ka|0)>>>2)<<2);Oq(ka);na=U}}else na=0;U=f[g+8>>2]|0;if(U|0){ka=U;do{U=ka;ka=f[ka>>2]|0;Oq(U)}while((ka|0)!=0)}ka=f[g>>2]|0;f[g>>2]=0;if(!ka){u=e;return na|0}Oq(ka);u=e;return na|0}function Xb(a,c,e){a=a|0;c=c|0;e=e|0;var g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=Oa,fa=Oa,ga=Oa,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0;g=u;u=u+48|0;i=g+12|0;j=g+32|0;k=g;l=i+16|0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;n[l>>2]=$(1.0);m=a+80|0;o=f[m>>2]|0;f[k>>2]=0;p=k+4|0;f[p>>2]=0;f[k+8>>2]=0;if(o){if(o>>>0>1073741823)aq(k);q=o<<2;r=ln(q)|0;f[k>>2]=r;s=r+(o<<2)|0;f[k+8>>2]=s;sj(r|0,0,q|0)|0;f[p>>2]=s;s=c+48|0;q=c+40|0;o=i+4|0;t=i+12|0;v=i+8|0;w=a+40|0;x=a+64|0;y=f[e>>2]|0;e=r;z=0;A=0;B=r;C=r;D=0;E=r;while(1){r=s;F=f[r>>2]|0;G=f[r+4>>2]|0;r=q;H=un(f[r>>2]|0,f[r+4>>2]|0,y+z|0,0)|0;r=Vn(H|0,I|0,F|0,G|0)|0;G=(f[f[c>>2]>>2]|0)+r|0;r=h[G>>0]|h[G+1>>0]<<8;d[j>>1]=r;G=r&255;F=(r&65535)>>>8;H=F&255;J=((r&255^318)+239<<16>>16^F)&65535;F=(D|0)==0;a:do if(!F){K=D+-1|0;L=(K&D|0)==0;if(!L)if(D>>>0>J>>>0)M=J;else M=(J>>>0)%(D>>>0)|0;else M=K&J;N=f[(f[i>>2]|0)+(M<<2)>>2]|0;do if(N|0?(O=f[N>>2]|0,O|0):0){b:do if(L){P=O;while(1){Q=f[P+4>>2]|0;R=(Q|0)==(J|0);if(!(R|(Q&K|0)==(M|0))){S=27;break b}if((R?(R=P+8|0,(b[R>>0]|0)==G<<24>>24):0)?(b[R+1>>0]|0)==H<<24>>24:0){T=P;S=26;break b}P=f[P>>2]|0;if(!P){S=27;break}}}else{P=O;while(1){R=f[P+4>>2]|0;if((R|0)==(J|0)){Q=P+8|0;if((b[Q>>0]|0)==G<<24>>24?(b[Q+1>>0]|0)==H<<24>>24:0){T=P;S=26;break b}}else{if(R>>>0<D>>>0)U=R;else U=(R>>>0)%(D>>>0)|0;if((U|0)!=(M|0)){S=27;break b}}P=f[P>>2]|0;if(!P){S=27;break}}}while(0);if((S|0)==26){S=0;f[E+(z<<2)>>2]=f[T+12>>2];V=e;X=A;Y=C;Z=B;_=E;break a}else if((S|0)==27){S=0;if(F){aa=0;S=46;break a}else break}}while(0);K=D+-1|0;L=(K&D|0)==0;if(!L)if(D>>>0>J>>>0)ba=J;else ba=(J>>>0)%(D>>>0)|0;else ba=K&J;N=f[(f[i>>2]|0)+(ba<<2)>>2]|0;if((N|0)!=0?(O=f[N>>2]|0,(O|0)!=0):0){if(L){L=O;while(1){N=f[L+4>>2]|0;if(!((N|0)==(J|0)|(N&K|0)==(ba|0))){aa=ba;S=46;break a}N=L+8|0;if((b[N>>0]|0)==G<<24>>24?(b[N+1>>0]|0)==H<<24>>24:0){S=61;break a}L=f[L>>2]|0;if(!L){aa=ba;S=46;break a}}}else ca=O;while(1){L=f[ca+4>>2]|0;if((L|0)!=(J|0)){if(L>>>0<D>>>0)da=L;else da=(L>>>0)%(D>>>0)|0;if((da|0)!=(ba|0)){aa=ba;S=46;break a}}L=ca+8|0;if((b[L>>0]|0)==G<<24>>24?(b[L+1>>0]|0)==H<<24>>24:0){S=61;break a}ca=f[ca>>2]|0;if(!ca){aa=ba;S=46;break}}}else{aa=ba;S=46}}else{aa=0;S=46}while(0);if((S|0)==46){S=0;H=ln(16)|0;G=H+8|0;b[G>>0]=r;b[G+1>>0]=r>>8;f[H+12>>2]=A;f[H+4>>2]=J;f[H>>2]=0;ea=$(((f[t>>2]|0)+1|0)>>>0);fa=$(D>>>0);ga=$(n[l>>2]);do if(F|$(ga*fa)<ea){G=D<<1|(D>>>0<3|(D+-1&D|0)!=0)&1;O=~~$(W($(ea/ga)))>>>0;$h(i,G>>>0<O>>>0?O:G);G=f[o>>2]|0;O=G+-1|0;if(!(O&G)){ha=G;ia=O&J;break}if(G>>>0>J>>>0){ha=G;ia=J}else{ha=G;ia=(J>>>0)%(G>>>0)|0}}else{ha=D;ia=aa}while(0);J=(f[i>>2]|0)+(ia<<2)|0;F=f[J>>2]|0;if(!F){f[H>>2]=f[v>>2];f[v>>2]=H;f[J>>2]=v;J=f[H>>2]|0;if(J|0){r=f[J+4>>2]|0;J=ha+-1|0;if(J&ha)if(r>>>0<ha>>>0)ja=r;else ja=(r>>>0)%(ha>>>0)|0;else ja=r&J;ka=(f[i>>2]|0)+(ja<<2)|0;S=59}}else{f[H>>2]=f[F>>2];ka=F;S=59}if((S|0)==59){S=0;f[ka>>2]=H}f[t>>2]=(f[t>>2]|0)+1;S=61}if((S|0)==61){S=0;F=w;J=f[F>>2]|0;r=un(J|0,f[F+4>>2]|0,A|0,0)|0;kh((f[f[x>>2]>>2]|0)+r|0,j|0,J|0)|0;J=f[k>>2]|0;f[J+(z<<2)>>2]=A;V=J;X=A+1|0;Y=J;Z=J;_=J}J=z+1|0;la=f[m>>2]|0;if(J>>>0>=la>>>0)break;e=V;z=J;A=X;B=Z;C=Y;D=f[o>>2]|0;E=_}if((X|0)==(la|0))ma=Z;else{Z=a+84|0;if(!(b[Z>>0]|0)){_=f[a+72>>2]|0;E=f[a+68>>2]|0;o=E;if((_|0)==(E|0))na=V;else{D=_-E>>2;E=0;do{_=o+(E<<2)|0;f[_>>2]=f[Y+(f[_>>2]<<2)>>2];E=E+1|0}while(E>>>0<D>>>0);na=V}}else{b[Z>>0]=0;Z=a+68|0;V=a+72|0;D=f[V>>2]|0;E=f[Z>>2]|0;Y=D-E>>2;o=E;E=D;if(la>>>0<=Y>>>0)if(la>>>0<Y>>>0?(D=o+(la<<2)|0,(D|0)!=(E|0)):0){f[V>>2]=E+(~((E+-4-D|0)>>>2)<<2);oa=la}else oa=la;else{Ch(Z,la-Y|0,1220);oa=f[m>>2]|0}Y=f[k>>2]|0;if(!oa)na=Y;else{k=f[a+68>>2]|0;a=0;do{f[k+(a<<2)>>2]=f[Y+(a<<2)>>2];a=a+1|0}while(a>>>0<oa>>>0);na=Y}}f[m>>2]=X;ma=na}if(!ma)pa=X;else{na=f[p>>2]|0;if((na|0)!=(ma|0))f[p>>2]=na+(~((na+-4-ma|0)>>>2)<<2);Oq(ma);pa=X}}else pa=0;X=f[i+8>>2]|0;if(X|0){ma=X;do{X=ma;ma=f[ma>>2]|0;Oq(X)}while((ma|0)!=0)}ma=f[i>>2]|0;f[i>>2]=0;if(!ma){u=g;return pa|0}Oq(ma);u=g;return pa|0}function Yb(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0;c=u;u=u+16|0;d=c+8|0;e=c;g=c+4|0;h=a+16|0;i=f[h>>2]|0;j=a+20|0;k=f[j>>2]|0;if((k|0)==(i|0))l=i;else{m=k+(~((k+-4-i|0)>>>2)<<2)|0;f[j>>2]=m;l=m}m=a+24|0;if((l|0)==(f[m>>2]|0)){Ri(h,b);n=f[h>>2]|0;o=f[j>>2]|0}else{f[l>>2]=f[b>>2];k=l+4|0;f[j>>2]=k;n=i;o=k}k=f[a+8>>2]|0;i=(f[k+100>>2]|0)-(f[k+96>>2]|0)|0;k=(i|0)/12|0;if((n|0)==(o|0)){u=c;return 1}n=a+28|0;l=(i|0)>0;i=a+164|0;p=a+12|0;q=a+76|0;r=a+80|0;s=a+72|0;t=a+200|0;v=a+320|0;w=a+152|0;x=a+84|0;y=a+324|0;z=a+292|0;A=a+304|0;B=a+316|0;C=a+328|0;D=a+336|0;E=a+332|0;F=a+168|0;G=a+140|0;H=a+120|0;I=o;do{o=f[I+-4>>2]|0;f[b>>2]=o;a:do if((o|0)!=-1?(J=(o>>>0)/3|0,K=f[n>>2]|0,(f[K+(J>>>5<<2)>>2]&1<<(J&31)|0)==0):0){if(l){J=0;L=K;b:while(1){K=J+1|0;f[i>>2]=(f[i>>2]|0)+1;M=f[b>>2]|0;N=(M|0)==-1?-1:(M>>>0)/3|0;M=L+(N>>>5<<2)|0;f[M>>2]=1<<(N&31)|f[M>>2];M=f[q>>2]|0;if((M|0)==(f[r>>2]|0))Ri(s,b);else{f[M>>2]=f[b>>2];f[q>>2]=M+4}f[v>>2]=f[b>>2];M=f[b>>2]|0;if((M|0)==-1)O=-1;else O=f[(f[f[p>>2]>>2]|0)+(M<<2)>>2]|0;P=(f[(f[w>>2]|0)+(O<<2)>>2]|0)!=-1;Q=(f[x>>2]|0)+(O>>>5<<2)|0;R=1<<(O&31);S=f[Q>>2]|0;do if(!(S&R)){f[Q>>2]=S|R;if(P){T=f[b>>2]|0;U=38;break}f[y>>2]=(f[y>>2]|0)+1;V=f[v>>2]|0;W=V+1|0;do if((V|0)!=-1){X=((W>>>0)%3|0|0)==0?V+-2|0:W;if(!((V>>>0)%3|0)){Y=V+2|0;Z=X;break}else{Y=V+-1|0;Z=X;break}}else{Y=-1;Z=-1}while(0);V=f[z>>2]|0;W=f[A>>2]|0;X=W+(f[V+(Z<<2)>>2]<<2)|0;_=f[X>>2]|0;f[X>>2]=_+-1;X=W+(f[V+(Y<<2)>>2]<<2)|0;f[X>>2]=(f[X>>2]|0)+-1;X=f[B>>2]|0;if((X|0)!=-1){V=f[C>>2]|0;if((_|0)<(V|0))$=V;else{W=f[E>>2]|0;$=(_|0)>(W|0)?W:_}_=$-V|0;V=f[D>>2]|0;W=f[3724+(X<<2)>>2]|0;f[d>>2]=W;X=V+(_*12|0)+4|0;aa=f[X>>2]|0;if(aa>>>0<(f[V+(_*12|0)+8>>2]|0)>>>0){f[aa>>2]=W;f[X>>2]=aa+4}else Ri(V+(_*12|0)|0,d)}f[B>>2]=0;_=f[b>>2]|0;V=_+1|0;if((_|0)!=-1?(aa=((V>>>0)%3|0|0)==0?_+-2|0:V,(aa|0)!=-1):0)ba=f[(f[(f[p>>2]|0)+12>>2]|0)+(aa<<2)>>2]|0;else ba=-1;f[b>>2]=ba}else{T=M;U=38}while(0);if((U|0)==38){U=0;M=T+1|0;if((T|0)==-1){U=43;break}R=((M>>>0)%3|0|0)==0?T+-2|0:M;if((R|0)==-1)ca=-1;else ca=f[(f[(f[p>>2]|0)+12>>2]|0)+(R<<2)>>2]|0;f[e>>2]=ca;R=(((T>>>0)%3|0|0)==0?2:-1)+T|0;if((R|0)==-1)da=-1;else da=f[(f[(f[p>>2]|0)+12>>2]|0)+(R<<2)>>2]|0;R=(ca|0)==-1;S=R?-1:(ca>>>0)/3|0;ea=(da|0)==-1;fa=ea?-1:(da>>>0)/3|0;Q=((M>>>0)%3|0|0)==0?T+-2|0:M;if(((Q|0)!=-1?(M=f[(f[p>>2]|0)+12>>2]|0,aa=f[M+(Q<<2)>>2]|0,(aa|0)!=-1):0)?(Q=(aa>>>0)/3|0,aa=f[n>>2]|0,(f[aa+(Q>>>5<<2)>>2]&1<<(Q&31)|0)==0):0){Q=(((T>>>0)%3|0|0)==0?2:-1)+T|0;do if((Q|0)!=-1){V=f[M+(Q<<2)>>2]|0;if((V|0)==-1)break;_=(V>>>0)/3|0;if(!(f[aa+(_>>>5<<2)>>2]&1<<(_&31))){U=62;break b}}while(0);if(!ea)xf(a,f[i>>2]|0,N,0,fa);nd(t,3);ga=f[e>>2]|0}else{if(!R){xf(a,f[i>>2]|0,N,1,S);aa=f[b>>2]|0;if((aa|0)==-1){U=52;break}else ha=aa}else ha=T;aa=(((ha>>>0)%3|0|0)==0?2:-1)+ha|0;if((aa|0)==-1){U=52;break}Q=f[(f[(f[p>>2]|0)+12>>2]|0)+(aa<<2)>>2]|0;if((Q|0)==-1){U=52;break}aa=(Q>>>0)/3|0;if(f[(f[n>>2]|0)+(aa>>>5<<2)>>2]&1<<(aa&31)|0){U=52;break}nd(t,5);ga=da}f[b>>2]=ga}if((K|0)>=(k|0))break a;J=K;L=f[n>>2]|0}do if((U|0)==43){U=0;f[e>>2]=-1;U=54}else if((U|0)==52){U=0;if(ea)U=54;else{xf(a,f[i>>2]|0,N,0,fa);U=54}}else if((U|0)==62){U=0;nd(t,1);f[F>>2]=(f[F>>2]|0)+1;if(P?(L=f[(f[w>>2]|0)+(O<<2)>>2]|0,(1<<(L&31)&f[(f[G>>2]|0)+(L>>>5<<2)>>2]|0)==0):0){f[g>>2]=f[b>>2];f[d>>2]=f[g>>2];Pe(a,d,0)|0}L=f[i>>2]|0;f[d>>2]=N;J=je(H,d)|0;f[J>>2]=L;L=f[j>>2]|0;f[L+-4>>2]=da;if((L|0)==(f[m>>2]|0)){Ri(h,e);break}else{f[L>>2]=f[e>>2];f[j>>2]=L+4;break}}while(0);if((U|0)==54){U=0;nd(t,7);f[j>>2]=(f[j>>2]|0)+-4}}}else U=11;while(0);if((U|0)==11){U=0;f[j>>2]=I+-4}I=f[j>>2]|0}while((f[h>>2]|0)!=(I|0));u=c;return 1}function Zb(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0;c=u;u=u+16|0;d=c+8|0;e=c;g=f[b>>2]|0;if((g|0)==-1){u=c;return}h=(g>>>0)/3|0;i=a+12|0;if(f[(f[i>>2]|0)+(h>>>5<<2)>>2]&1<<(h&31)|0){u=c;return}h=a+56|0;j=f[h>>2]|0;k=a+60|0;l=f[k>>2]|0;if((l|0)==(j|0))m=j;else{n=l+(~((l+-4-j|0)>>>2)<<2)|0;f[k>>2]=n;m=n}n=a+64|0;if((m|0)==(f[n>>2]|0))Ri(h,b);else{f[m>>2]=g;f[k>>2]=m+4}m=f[a>>2]|0;g=f[b>>2]|0;j=g+1|0;do if((g|0)!=-1){l=f[m+28>>2]|0;o=f[l+((((j>>>0)%3|0|0)==0?g+-2|0:j)<<2)>>2]|0;if(!((g>>>0)%3|0)){p=o;q=g+2|0;r=l;break}else{p=o;q=g+-1|0;r=l;break}}else{l=f[m+28>>2]|0;p=f[l+-4>>2]|0;q=-1;r=l}while(0);m=f[r+(q<<2)>>2]|0;q=a+24|0;r=f[q>>2]|0;g=r+(p>>>5<<2)|0;j=1<<(p&31);l=f[g>>2]|0;if(!(l&j)){f[g>>2]=l|j;j=f[b>>2]|0;l=j+1|0;if((j|0)==-1)s=-1;else s=((l>>>0)%3|0|0)==0?j+-2|0:l;f[e>>2]=s;l=f[(f[(f[a+44>>2]|0)+96>>2]|0)+(((s>>>0)/3|0)*12|0)+(((s>>>0)%3|0)<<2)>>2]|0;s=f[a+48>>2]|0;f[d>>2]=l;j=f[s+4>>2]|0;s=j+4|0;g=f[s>>2]|0;if((g|0)==(f[j+8>>2]|0))Ri(j,d);else{f[g>>2]=l;f[s>>2]=g+4}g=a+40|0;s=f[g>>2]|0;l=s+4|0;j=f[l>>2]|0;if((j|0)==(f[s+8>>2]|0)){Ri(s,e);t=f[g>>2]|0}else{f[j>>2]=f[e>>2];f[l>>2]=j+4;t=s}s=t+24|0;f[(f[t+12>>2]|0)+(p<<2)>>2]=f[s>>2];f[s>>2]=(f[s>>2]|0)+1;v=f[q>>2]|0}else v=r;r=v+(m>>>5<<2)|0;v=1<<(m&31);s=f[r>>2]|0;if(!(s&v)){f[r>>2]=s|v;v=f[b>>2]|0;do if((v|0)!=-1)if(!((v>>>0)%3|0)){w=v+2|0;break}else{w=v+-1|0;break}else w=-1;while(0);f[e>>2]=w;v=f[(f[(f[a+44>>2]|0)+96>>2]|0)+(((w>>>0)/3|0)*12|0)+(((w>>>0)%3|0)<<2)>>2]|0;w=f[a+48>>2]|0;f[d>>2]=v;s=f[w+4>>2]|0;w=s+4|0;r=f[w>>2]|0;if((r|0)==(f[s+8>>2]|0))Ri(s,d);else{f[r>>2]=v;f[w>>2]=r+4}r=a+40|0;w=f[r>>2]|0;v=w+4|0;s=f[v>>2]|0;if((s|0)==(f[w+8>>2]|0)){Ri(w,e);x=f[r>>2]|0}else{f[s>>2]=f[e>>2];f[v>>2]=s+4;x=w}w=x+24|0;f[(f[x+12>>2]|0)+(m<<2)>>2]=f[w>>2];f[w>>2]=(f[w>>2]|0)+1}w=f[h>>2]|0;m=f[k>>2]|0;if((w|0)==(m|0)){u=c;return}x=a+44|0;s=a+48|0;v=a+40|0;r=m;m=w;while(1){w=f[r+-4>>2]|0;f[b>>2]=w;p=(w>>>0)/3|0;if((w|0)!=-1?(w=f[i>>2]|0,(f[w+(p>>>5<<2)>>2]&1<<(p&31)|0)==0):0){t=p;p=w;w=f[a>>2]|0;a:while(1){j=p+(t>>>5<<2)|0;f[j>>2]=f[j>>2]|1<<(t&31);j=f[b>>2]|0;l=f[(f[w+28>>2]|0)+(j<<2)>>2]|0;g=(f[q>>2]|0)+(l>>>5<<2)|0;o=1<<(l&31);y=f[g>>2]|0;if(!(o&y)){z=f[(f[w+40>>2]|0)+(l<<2)>>2]|0;if((z|0)==-1)A=1;else{B=f[(f[f[w+64>>2]>>2]|0)+(z<<2)>>2]|0;A=(1<<(B&31)&f[(f[w+12>>2]|0)+(B>>>5<<2)>>2]|0)!=0}f[g>>2]=y|o;o=f[b>>2]|0;f[e>>2]=o;y=f[(f[(f[x>>2]|0)+96>>2]|0)+(((o>>>0)/3|0)*12|0)+(((o>>>0)%3|0)<<2)>>2]|0;o=f[s>>2]|0;f[d>>2]=y;g=f[o+4>>2]|0;o=g+4|0;B=f[o>>2]|0;if((B|0)==(f[g+8>>2]|0))Ri(g,d);else{f[B>>2]=y;f[o>>2]=B+4}B=f[v>>2]|0;o=B+4|0;y=f[o>>2]|0;if((y|0)==(f[B+8>>2]|0)){Ri(B,e);C=f[v>>2]|0}else{f[y>>2]=f[e>>2];f[o>>2]=y+4;C=B}B=C+24|0;f[(f[C+12>>2]|0)+(l<<2)>>2]=f[B>>2];f[B>>2]=(f[B>>2]|0)+1;B=f[a>>2]|0;l=f[b>>2]|0;if(A){D=l;E=B;F=57}else{y=l+1|0;do if((l|0)==-1)G=-1;else{o=((y>>>0)%3|0|0)==0?l+-2|0:y;if((o|0)==-1){G=-1;break}if(f[(f[B>>2]|0)+(o>>>5<<2)>>2]&1<<(o&31)|0){G=-1;break}G=f[(f[(f[B+64>>2]|0)+12>>2]|0)+(o<<2)>>2]|0}while(0);f[b>>2]=G;H=(G>>>0)/3|0;I=B}}else{D=j;E=w;F=57}if((F|0)==57){F=0;y=D+1|0;if((D|0)==-1){F=58;break}l=((y>>>0)%3|0|0)==0?D+-2|0:y;if((l|0)!=-1?(f[(f[E>>2]|0)+(l>>>5<<2)>>2]&1<<(l&31)|0)==0:0)J=f[(f[(f[E+64>>2]|0)+12>>2]|0)+(l<<2)>>2]|0;else J=-1;f[d>>2]=J;l=(((D>>>0)%3|0|0)==0?2:-1)+D|0;if((l|0)!=-1?(f[(f[E>>2]|0)+(l>>>5<<2)>>2]&1<<(l&31)|0)==0:0)K=f[(f[(f[E+64>>2]|0)+12>>2]|0)+(l<<2)>>2]|0;else K=-1;l=(J|0)==-1;y=(J>>>0)/3|0;o=l?-1:y;g=(K|0)==-1;z=(K>>>0)/3|0;L=g?-1:z;do if(!l){M=f[i>>2]|0;if(f[M+(o>>>5<<2)>>2]&1<<(o&31)|0){F=67;break}if(g){N=J;O=y;break}if(!(f[M+(L>>>5<<2)>>2]&1<<(L&31))){F=72;break a}else{N=J;O=y}}else F=67;while(0);if((F|0)==67){F=0;if(g){F=69;break}if(!(f[(f[i>>2]|0)+(L>>>5<<2)>>2]&1<<(L&31))){N=K;O=z}else{F=69;break}}f[b>>2]=N;H=O;I=E}t=H;p=f[i>>2]|0;w=I}do if((F|0)==58){F=0;f[d>>2]=-1;F=69}else if((F|0)==72){F=0;w=f[k>>2]|0;f[w+-4>>2]=K;if((w|0)==(f[n>>2]|0)){Ri(h,d);P=f[k>>2]|0;break}else{f[w>>2]=f[d>>2];p=w+4|0;f[k>>2]=p;P=p;break}}while(0);if((F|0)==69){F=0;p=(f[k>>2]|0)+-4|0;f[k>>2]=p;P=p}Q=f[h>>2]|0;R=P}else{p=r+-4|0;f[k>>2]=p;Q=m;R=p}if((Q|0)==(R|0))break;else{r=R;m=Q}}u=c;return}function _b(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=Oa,K=Oa,L=Oa,M=0,N=0,O=0,P=0;e=u;u=u+64|0;g=e+40|0;i=e+16|0;j=e;k=Id(a,c)|0;if(k|0){f[i>>2]=k;f[g>>2]=f[i>>2];lf(a,g)|0}f[j>>2]=0;k=j+4|0;f[k>>2]=0;f[j+8>>2]=0;Fi(j,8);l=d;d=l;m=h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24;d=l+4|0;l=h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24;d=f[j>>2]|0;o=d;b[o>>0]=m;b[o+1>>0]=m>>8;b[o+2>>0]=m>>16;b[o+3>>0]=m>>24;m=d+4|0;b[m>>0]=l;b[m+1>>0]=l>>8;b[m+2>>0]=l>>16;b[m+3>>0]=l>>24;pj(i,c);c=i+12|0;f[c>>2]=0;l=i+16|0;f[l>>2]=0;f[i+20>>2]=0;m=f[k>>2]|0;d=f[j>>2]|0;o=m-d|0;if(!o){p=d;q=m;r=0}else{Fi(c,o);p=f[j>>2]|0;q=f[k>>2]|0;r=f[c>>2]|0}kh(r|0,p|0,q-p|0)|0;p=i+11|0;q=b[p>>0]|0;r=q<<24>>24<0;c=r?f[i>>2]|0:i;o=r?f[i+4>>2]|0:q&255;if(o>>>0>3){q=c;r=o;m=o;while(1){d=X(h[q>>0]|h[q+1>>0]<<8|h[q+2>>0]<<16|h[q+3>>0]<<24,1540483477)|0;r=(X(d>>>24^d,1540483477)|0)^(X(r,1540483477)|0);m=m+-4|0;if(m>>>0<=3)break;else q=q+4|0}q=o+-4|0;m=q&-4;s=q-m|0;t=c+(m+4)|0;v=r}else{s=o;t=c;v=o}switch(s|0){case 3:{w=h[t+2>>0]<<16^v;x=10;break}case 2:{w=v;x=10;break}case 1:{y=v;x=11;break}default:z=v}if((x|0)==10){y=h[t+1>>0]<<8^w;x=11}if((x|0)==11)z=X(y^h[t>>0],1540483477)|0;t=X(z>>>13^z,1540483477)|0;z=t>>>15^t;t=a+4|0;y=f[t>>2]|0;w=(y|0)==0;a:do if(!w){v=y+-1|0;s=(v&y|0)==0;if(!s)if(z>>>0<y>>>0)A=z;else A=(z>>>0)%(y>>>0)|0;else A=z&v;r=f[(f[a>>2]|0)+(A<<2)>>2]|0;if((r|0)!=0?(m=f[r>>2]|0,(m|0)!=0):0){r=(o|0)==0;if(s){if(r){s=m;while(1){q=f[s+4>>2]|0;if(!((q|0)==(z|0)|(q&v|0)==(A|0))){B=A;x=52;break a}q=b[s+8+11>>0]|0;if(!((q<<24>>24<0?f[s+12>>2]|0:q&255)|0))break a;s=f[s>>2]|0;if(!s){B=A;x=52;break a}}}else C=m;while(1){s=f[C+4>>2]|0;if(!((s|0)==(z|0)|(s&v|0)==(A|0))){B=A;x=52;break a}s=C+8|0;q=b[s+11>>0]|0;d=q<<24>>24<0;D=q&255;do if(((d?f[C+12>>2]|0:D)|0)==(o|0)){q=f[s>>2]|0;if(d)if(!(Vk(q,c,o)|0))break a;else break;if((b[c>>0]|0)==(q&255)<<24>>24){q=s;E=D;F=c;do{E=E+-1|0;q=q+1|0;if(!E)break a;F=F+1|0}while((b[q>>0]|0)==(b[F>>0]|0))}}while(0);C=f[C>>2]|0;if(!C){B=A;x=52;break a}}}if(r){v=m;while(1){D=f[v+4>>2]|0;if((D|0)!=(z|0)){if(D>>>0<y>>>0)G=D;else G=(D>>>0)%(y>>>0)|0;if((G|0)!=(A|0)){B=A;x=52;break a}}D=b[v+8+11>>0]|0;if(!((D<<24>>24<0?f[v+12>>2]|0:D&255)|0))break a;v=f[v>>2]|0;if(!v){B=A;x=52;break a}}}else H=m;while(1){v=f[H+4>>2]|0;if((v|0)!=(z|0)){if(v>>>0<y>>>0)I=v;else I=(v>>>0)%(y>>>0)|0;if((I|0)!=(A|0)){B=A;x=52;break a}}v=H+8|0;r=b[v+11>>0]|0;D=r<<24>>24<0;s=r&255;do if(((D?f[H+12>>2]|0:s)|0)==(o|0)){r=f[v>>2]|0;if(D)if(!(Vk(r,c,o)|0))break a;else break;if((b[c>>0]|0)==(r&255)<<24>>24){r=v;d=s;F=c;do{d=d+-1|0;r=r+1|0;if(!d)break a;F=F+1|0}while((b[r>>0]|0)==(b[F>>0]|0))}}while(0);H=f[H>>2]|0;if(!H){B=A;x=52;break}}}else{B=A;x=52}}else{B=0;x=52}while(0);if((x|0)==52){oi(g,a,z,i);x=a+12|0;J=$(((f[x>>2]|0)+1|0)>>>0);K=$(y>>>0);L=$(n[a+16>>2]);do if(w|$(L*K)<J){A=y<<1|(y>>>0<3|(y+-1&y|0)!=0)&1;H=~~$(W($(J/L)))>>>0;ei(a,A>>>0<H>>>0?H:A);A=f[t>>2]|0;H=A+-1|0;if(!(H&A)){M=A;N=H&z;break}if(z>>>0<A>>>0){M=A;N=z}else{M=A;N=(z>>>0)%(A>>>0)|0}}else{M=y;N=B}while(0);B=f[(f[a>>2]|0)+(N<<2)>>2]|0;if(!B){y=a+8|0;f[f[g>>2]>>2]=f[y>>2];f[y>>2]=f[g>>2];f[(f[a>>2]|0)+(N<<2)>>2]=y;y=f[g>>2]|0;N=f[y>>2]|0;if(!N)O=g;else{z=f[N+4>>2]|0;N=M+-1|0;if(N&M)if(z>>>0<M>>>0)P=z;else P=(z>>>0)%(M>>>0)|0;else P=z&N;f[(f[a>>2]|0)+(P<<2)>>2]=y;O=g}}else{f[f[g>>2]>>2]=f[B>>2];f[B>>2]=f[g>>2];O=g}f[x>>2]=(f[x>>2]|0)+1;f[O>>2]=0}O=f[i+12>>2]|0;if(O|0){if((f[l>>2]|0)!=(O|0))f[l>>2]=O;Oq(O)}if((b[p>>0]|0)<0)Oq(f[i>>2]|0);i=f[j>>2]|0;if(!i){u=e;return}if((f[k>>2]|0)!=(i|0))f[k>>2]=i;Oq(i);u=e;return}function $b(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0,ua=0,va=0,wa=0,xa=0,ya=0,za=0;e=u;u=u+96|0;g=e+92|0;h=e+88|0;i=e+72|0;j=e+48|0;k=e+24|0;l=e;m=a+16|0;n=f[m>>2]|0;o=f[c>>2]|0;f[i>>2]=n;f[i+4>>2]=o;c=i+8|0;f[c>>2]=o;b[i+12>>0]=1;p=(o|0)==-1;if(p)q=-1;else q=f[(f[n>>2]|0)+(o<<2)>>2]|0;n=a+20|0;r=f[n>>2]|0;s=f[r>>2]|0;if((f[r+4>>2]|0)-s>>2>>>0<=q>>>0)aq(r);r=a+8|0;t=f[(f[r>>2]|0)+(f[s+(q<<2)>>2]<<2)>>2]|0;q=a+4|0;s=f[q>>2]|0;if(!(b[s+84>>0]|0))v=f[(f[s+68>>2]|0)+(t<<2)>>2]|0;else v=t;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;f[j+12>>2]=0;f[j+16>>2]=0;f[j+20>>2]=0;f[h>>2]=v;v=b[s+24>>0]|0;f[g>>2]=f[h>>2];vb(s,g,v,j)|0;v=a+28|0;a=(f[v>>2]|0)==0;a:do if(!p){s=k+8|0;t=j+8|0;w=k+16|0;x=j+16|0;y=l+8|0;z=l+16|0;A=o;B=o;C=0;D=0;E=0;F=0;G=0;H=0;J=a;K=o;while(1){do if(J){L=K+1|0;if((K|0)==-1){M=A;N=-1;O=-1;P=-1;break}Q=((L>>>0)%3|0|0)==0?K+-2|0:L;if((A|0)!=-1)if(!((A>>>0)%3|0)){R=A;S=A+2|0;T=Q;U=A;V=19;break}else{R=A;S=A+-1|0;T=Q;U=A;V=19;break}else{R=-1;S=-1;T=Q;U=-1;V=19}}else{Q=B+1|0;L=((Q>>>0)%3|0|0)==0?B+-2|0:Q;if(!((B>>>0)%3|0)){R=A;S=B+2|0;T=L;U=K;V=19;break}else{R=A;S=B+-1|0;T=L;U=K;V=19;break}}while(0);if((V|0)==19){V=0;if((T|0)==-1){M=R;N=-1;O=S;P=U}else{M=R;N=f[(f[f[m>>2]>>2]|0)+(T<<2)>>2]|0;O=S;P=U}}W=f[n>>2]|0;L=f[W>>2]|0;if((f[W+4>>2]|0)-L>>2>>>0<=N>>>0){V=22;break}Q=f[(f[r>>2]|0)+(f[L+(N<<2)>>2]<<2)>>2]|0;L=f[q>>2]|0;if(!(b[L+84>>0]|0))X=f[(f[L+68>>2]|0)+(Q<<2)>>2]|0;else X=Q;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;f[k+12>>2]=0;f[k+16>>2]=0;f[k+20>>2]=0;f[h>>2]=X;Q=b[L+24>>0]|0;f[g>>2]=f[h>>2];vb(L,g,Q,k)|0;if((O|0)==-1)Y=-1;else Y=f[(f[f[m>>2]>>2]|0)+(O<<2)>>2]|0;Z=f[n>>2]|0;Q=f[Z>>2]|0;if((f[Z+4>>2]|0)-Q>>2>>>0<=Y>>>0){V=28;break}L=f[(f[r>>2]|0)+(f[Q+(Y<<2)>>2]<<2)>>2]|0;Q=f[q>>2]|0;if(!(b[Q+84>>0]|0))_=f[(f[Q+68>>2]|0)+(L<<2)>>2]|0;else _=L;f[l>>2]=0;f[l+4>>2]=0;f[l+8>>2]=0;f[l+12>>2]=0;f[l+16>>2]=0;f[l+20>>2]=0;f[h>>2]=_;L=b[Q+24>>0]|0;f[g>>2]=f[h>>2];vb(Q,g,L,l)|0;L=k;Q=j;$=f[Q>>2]|0;aa=f[Q+4>>2]|0;Q=Xn(f[L>>2]|0,f[L+4>>2]|0,$|0,aa|0)|0;L=I;ba=s;ca=t;da=f[ca>>2]|0;ea=f[ca+4>>2]|0;ca=Xn(f[ba>>2]|0,f[ba+4>>2]|0,da|0,ea|0)|0;ba=I;fa=w;ga=x;ha=f[ga>>2]|0;ia=f[ga+4>>2]|0;ga=Xn(f[fa>>2]|0,f[fa+4>>2]|0,ha|0,ia|0)|0;fa=I;ja=l;ka=Xn(f[ja>>2]|0,f[ja+4>>2]|0,$|0,aa|0)|0;aa=I;$=y;ja=Xn(f[$>>2]|0,f[$+4>>2]|0,da|0,ea|0)|0;ea=I;da=z;$=Xn(f[da>>2]|0,f[da+4>>2]|0,ha|0,ia|0)|0;ia=I;ha=un($|0,ia|0,ca|0,ba|0)|0;da=I;la=un(ja|0,ea|0,ga|0,fa|0)|0;ma=I;na=un(ka|0,aa|0,ga|0,fa|0)|0;fa=I;ga=un($|0,ia|0,Q|0,L|0)|0;ia=I;$=un(ja|0,ea|0,Q|0,L|0)|0;L=I;Q=un(ka|0,aa|0,ca|0,ba|0)|0;ba=I;ca=Xn(C|0,D|0,la|0,ma|0)|0;ma=Vn(ca|0,I|0,ha|0,da|0)|0;da=I;ha=Vn(na|0,fa|0,E|0,F|0)|0;fa=Xn(ha|0,I|0,ga|0,ia|0)|0;ia=I;ga=Xn(G|0,H|0,Q|0,ba|0)|0;ba=Vn(ga|0,I|0,$|0,L|0)|0;L=I;Hh(i);B=f[c>>2]|0;$=(f[v>>2]|0)==0;if((B|0)==-1){oa=$;pa=da;qa=ma;ra=ia;sa=fa;ta=L;ua=ba;break a}else{A=M;C=ma;D=da;E=fa;F=ia;G=ba;H=L;J=$;K=P}}if((V|0)==22)aq(W);else if((V|0)==28)aq(Z)}else{oa=a;pa=0;qa=0;ra=0;sa=0;ta=0;ua=0}while(0);a=(pa|0)>-1|(pa|0)==-1&qa>>>0>4294967295;Z=Xn(0,0,qa|0,pa|0)|0;V=a?pa:I;W=(ra|0)>-1|(ra|0)==-1&sa>>>0>4294967295;P=Xn(0,0,sa|0,ra|0)|0;M=W?ra:I;v=(ta|0)>-1|(ta|0)==-1&ua>>>0>4294967295;c=Xn(0,0,ua|0,ta|0)|0;i=Vn((W?sa:P)|0,M|0,(v?ua:c)|0,(v?ta:I)|0)|0;v=Vn(i|0,I|0,(a?qa:Z)|0,V|0)|0;V=I;if(oa){if((v|0)<=536870912){va=qa;wa=sa;xa=ua;f[d>>2]=va;ya=d+4|0;f[ya>>2]=wa;za=d+8|0;f[za>>2]=xa;u=e;return}oa=Yn(v|0,V|0,29)|0;Z=oa&7;oa=Ik(qa|0,pa|0,Z|0,0)|0;a=Ik(sa|0,ra|0,Z|0,0)|0;i=Ik(ua|0,ta|0,Z|0,0)|0;va=oa;wa=a;xa=i;f[d>>2]=va;ya=d+4|0;f[ya>>2]=wa;za=d+8|0;f[za>>2]=xa;u=e;return}else{if(!((V|0)>0|(V|0)==0&v>>>0>536870912)){va=qa;wa=sa;xa=ua;f[d>>2]=va;ya=d+4|0;f[ya>>2]=wa;za=d+8|0;f[za>>2]=xa;u=e;return}i=Yn(v|0,V|0,29)|0;V=I;v=Ik(qa|0,pa|0,i|0,V|0)|0;pa=Ik(sa|0,ra|0,i|0,V|0)|0;ra=Ik(ua|0,ta|0,i|0,V|0)|0;va=v;wa=pa;xa=ra;f[d>>2]=va;ya=d+4|0;f[ya>>2]=wa;za=d+8|0;f[za>>2]=xa;u=e;return}}function ac(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=Oa,M=Oa,N=Oa,O=0,P=0,Q=0,R=0;e=u;u=u+64|0;g=e+40|0;i=e+16|0;j=e;k=Id(a,c)|0;if(k|0){f[i>>2]=k;f[g>>2]=f[i>>2];lf(a,g)|0}f[j>>2]=0;k=j+4|0;f[k>>2]=0;f[j+8>>2]=0;l=d+11|0;m=b[l>>0]|0;o=d+4|0;p=f[o>>2]|0;q=m<<24>>24<0?p:m&255;if(!q){r=m;s=p;t=0}else{Fi(j,q);r=b[l>>0]|0;s=f[o>>2]|0;t=f[j>>2]|0}o=r<<24>>24<0;kh(t|0,(o?f[d>>2]|0:d)|0,(o?s:r&255)|0)|0;pj(i,c);c=i+12|0;f[c>>2]=0;r=i+16|0;f[r>>2]=0;f[i+20>>2]=0;s=f[k>>2]|0;o=f[j>>2]|0;d=s-o|0;if(!d){v=o;w=s;x=0}else{Fi(c,d);v=f[j>>2]|0;w=f[k>>2]|0;x=f[c>>2]|0}kh(x|0,v|0,w-v|0)|0;v=i+11|0;w=b[v>>0]|0;x=w<<24>>24<0;c=x?f[i>>2]|0:i;d=x?f[i+4>>2]|0:w&255;if(d>>>0>3){w=c;x=d;s=d;while(1){o=X(h[w>>0]|h[w+1>>0]<<8|h[w+2>>0]<<16|h[w+3>>0]<<24,1540483477)|0;x=(X(o>>>24^o,1540483477)|0)^(X(x,1540483477)|0);s=s+-4|0;if(s>>>0<=3)break;else w=w+4|0}w=d+-4|0;s=w&-4;y=w-s|0;z=c+(s+4)|0;A=x}else{y=d;z=c;A=d}switch(y|0){case 3:{B=h[z+2>>0]<<16^A;C=12;break}case 2:{B=A;C=12;break}case 1:{D=A;C=13;break}default:E=A}if((C|0)==12){D=h[z+1>>0]<<8^B;C=13}if((C|0)==13)E=X(D^h[z>>0],1540483477)|0;z=X(E>>>13^E,1540483477)|0;E=z>>>15^z;z=a+4|0;D=f[z>>2]|0;B=(D|0)==0;a:do if(!B){A=D+-1|0;y=(A&D|0)==0;if(!y)if(E>>>0<D>>>0)F=E;else F=(E>>>0)%(D>>>0)|0;else F=E&A;x=f[(f[a>>2]|0)+(F<<2)>>2]|0;if((x|0)!=0?(s=f[x>>2]|0,(s|0)!=0):0){x=(d|0)==0;if(y){if(x){y=s;while(1){w=f[y+4>>2]|0;if(!((w|0)==(E|0)|(w&A|0)==(F|0))){G=F;C=54;break a}w=b[y+8+11>>0]|0;if(!((w<<24>>24<0?f[y+12>>2]|0:w&255)|0))break a;y=f[y>>2]|0;if(!y){G=F;C=54;break a}}}else H=s;while(1){y=f[H+4>>2]|0;if(!((y|0)==(E|0)|(y&A|0)==(F|0))){G=F;C=54;break a}y=H+8|0;w=b[y+11>>0]|0;o=w<<24>>24<0;t=w&255;do if(((o?f[H+12>>2]|0:t)|0)==(d|0)){w=f[y>>2]|0;if(o)if(!(Vk(w,c,d)|0))break a;else break;if((b[c>>0]|0)==(w&255)<<24>>24){w=y;l=t;q=c;do{l=l+-1|0;w=w+1|0;if(!l)break a;q=q+1|0}while((b[w>>0]|0)==(b[q>>0]|0))}}while(0);H=f[H>>2]|0;if(!H){G=F;C=54;break a}}}if(x){A=s;while(1){t=f[A+4>>2]|0;if((t|0)!=(E|0)){if(t>>>0<D>>>0)I=t;else I=(t>>>0)%(D>>>0)|0;if((I|0)!=(F|0)){G=F;C=54;break a}}t=b[A+8+11>>0]|0;if(!((t<<24>>24<0?f[A+12>>2]|0:t&255)|0))break a;A=f[A>>2]|0;if(!A){G=F;C=54;break a}}}else J=s;while(1){A=f[J+4>>2]|0;if((A|0)!=(E|0)){if(A>>>0<D>>>0)K=A;else K=(A>>>0)%(D>>>0)|0;if((K|0)!=(F|0)){G=F;C=54;break a}}A=J+8|0;x=b[A+11>>0]|0;t=x<<24>>24<0;y=x&255;do if(((t?f[J+12>>2]|0:y)|0)==(d|0)){x=f[A>>2]|0;if(t)if(!(Vk(x,c,d)|0))break a;else break;if((b[c>>0]|0)==(x&255)<<24>>24){x=A;o=y;q=c;do{o=o+-1|0;x=x+1|0;if(!o)break a;q=q+1|0}while((b[x>>0]|0)==(b[q>>0]|0))}}while(0);J=f[J>>2]|0;if(!J){G=F;C=54;break}}}else{G=F;C=54}}else{G=0;C=54}while(0);if((C|0)==54){oi(g,a,E,i);C=a+12|0;L=$(((f[C>>2]|0)+1|0)>>>0);M=$(D>>>0);N=$(n[a+16>>2]);do if(B|$(N*M)<L){F=D<<1|(D>>>0<3|(D+-1&D|0)!=0)&1;J=~~$(W($(L/N)))>>>0;ei(a,F>>>0<J>>>0?J:F);F=f[z>>2]|0;J=F+-1|0;if(!(J&F)){O=F;P=J&E;break}if(E>>>0<F>>>0){O=F;P=E}else{O=F;P=(E>>>0)%(F>>>0)|0}}else{O=D;P=G}while(0);G=f[(f[a>>2]|0)+(P<<2)>>2]|0;if(!G){D=a+8|0;f[f[g>>2]>>2]=f[D>>2];f[D>>2]=f[g>>2];f[(f[a>>2]|0)+(P<<2)>>2]=D;D=f[g>>2]|0;P=f[D>>2]|0;if(!P)Q=g;else{E=f[P+4>>2]|0;P=O+-1|0;if(P&O)if(E>>>0<O>>>0)R=E;else R=(E>>>0)%(O>>>0)|0;else R=E&P;f[(f[a>>2]|0)+(R<<2)>>2]=D;Q=g}}else{f[f[g>>2]>>2]=f[G>>2];f[G>>2]=f[g>>2];Q=g}f[C>>2]=(f[C>>2]|0)+1;f[Q>>2]=0}Q=f[i+12>>2]|0;if(Q|0){if((f[r>>2]|0)!=(Q|0))f[r>>2]=Q;Oq(Q)}if((b[v>>0]|0)<0)Oq(f[i>>2]|0);i=f[j>>2]|0;if(!i){u=e;return}if((f[k>>2]|0)!=(i|0))f[k>>2]=i;Oq(i);u=e;return}function bc(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0;d=u;u=u+192|0;e=d+152|0;g=d+144|0;h=d+72|0;i=d;j=d+112|0;k=d+108|0;l=d+104|0;m=a+352|0;if(b[m>>0]|0?(n=Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0,((f[n+12>>2]|0)-(f[n+8>>2]|0)|0)>0):0){n=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+8|0;o=f[f[n>>2]>>2]|0;f[e>>2]=c;n=o+4|0;p=o+8|0;q=f[p>>2]|0;if((q|0)==(f[o+12>>2]|0))Ri(n,e);else{f[q>>2]=c;f[p>>2]=q+4}q=f[e>>2]|0;r=o+16|0;s=o+20|0;o=f[s>>2]|0;t=f[r>>2]|0;v=o-t>>2;w=t;if((q|0)<(v|0)){x=w;y=q}else{t=q+1|0;f[g>>2]=-1;z=o;if(t>>>0<=v>>>0)if(t>>>0<v>>>0?(o=w+(t<<2)|0,(o|0)!=(z|0)):0){f[s>>2]=z+(~((z+-4-o|0)>>>2)<<2);A=q;B=w}else{A=q;B=w}else{Ch(r,t-v|0,g);A=f[e>>2]|0;B=f[r>>2]|0}x=B;y=A}f[x+(y<<2)>>2]=((f[p>>2]|0)-(f[n>>2]|0)>>2)+-1;C=1;u=d;return C|0}n=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+52|0;p=f[(f[(f[n>>2]|0)+84>>2]|0)+(c<<2)>>2]|0;n=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+4|0;y=f[(f[(f[n>>2]|0)+8>>2]|0)+(c<<2)>>2]|0;f[g>>2]=-1;n=a+172|0;x=f[a+176>>2]|0;A=f[n>>2]|0;B=A;a:do if((x|0)==(A|0))D=-1;else{r=(x-A|0)/136|0;v=0;while(1){if((f[B+(v*136|0)>>2]|0)==(c|0))break;t=v+1|0;if(t>>>0<r>>>0)v=t;else{D=-1;break a}}f[g>>2]=v;D=v}while(0);b:do if(!(b[m>>0]|0)){A=(f[y+56>>2]|0)==0;do if(!((p|0)==0|A)){if((p|0)==1?b[B+(D*136|0)+28>>0]|0:0)break;x=ln(88)|0;r=f[a+8>>2]|0;t=B+(D*136|0)+104|0;f[x+4>>2]=0;f[x>>2]=3564;w=x+12|0;f[w>>2]=3588;q=x+64|0;f[q>>2]=0;f[x+68>>2]=0;f[x+72>>2]=0;o=x+16|0;z=o+44|0;do{f[o>>2]=0;o=o+4|0}while((o|0)<(z|0));f[x+76>>2]=r;f[x+80>>2]=t;s=x+84|0;f[s>>2]=0;f[h>>2]=3588;E=h+4|0;F=E+4|0;f[F>>2]=0;f[F+4>>2]=0;f[F+8>>2]=0;f[F+12>>2]=0;f[F+16>>2]=0;f[F+20>>2]=0;F=B+(D*136|0)+4|0;G=i+4|0;f[G>>2]=3588;H=i+56|0;f[H>>2]=0;I=i+60|0;f[I>>2]=0;f[i+64>>2]=0;o=i+8|0;z=o+44|0;do{f[o>>2]=0;o=o+4|0}while((o|0)<(z|0));f[E>>2]=F;o=f[B+(D*136|0)+68>>2]|0;z=((f[o+4>>2]|0)-(f[o>>2]|0)>>2>>>0)/3|0;b[e>>0]=0;qh(h+8|0,z,e);Va[f[(f[h>>2]|0)+8>>2]&127](h);Df(j,h);Df(e,j);f[i>>2]=f[e+4>>2];z=i+4|0;fg(z,e)|0;f[e>>2]=3588;o=f[e+20>>2]|0;if(o|0)Oq(o);o=f[e+8>>2]|0;if(o|0)Oq(o);f[i+36>>2]=F;f[i+40>>2]=t;f[i+44>>2]=r;f[i+48>>2]=x;f[j>>2]=3588;o=f[j+20>>2]|0;if(o|0)Oq(o);o=f[j+8>>2]|0;if(o|0)Oq(o);f[s>>2]=a+72;f[x+8>>2]=f[i>>2];fg(w,z)|0;z=x+44|0;o=i+36|0;f[z>>2]=f[o>>2];f[z+4>>2]=f[o+4>>2];f[z+8>>2]=f[o+8>>2];f[z+12>>2]=f[o+12>>2];b[z+16>>0]=b[o+16>>0]|0;ng(q,f[H>>2]|0,f[I>>2]|0);o=x;z=f[H>>2]|0;if(z|0){J=f[I>>2]|0;if((J|0)!=(z|0))f[I>>2]=J+(~((J+-4-z|0)>>>2)<<2);Oq(z)}f[G>>2]=3588;z=f[i+24>>2]|0;if(z|0)Oq(z);z=f[i+12>>2]|0;if(z|0)Oq(z);f[h>>2]=3588;z=f[h+20>>2]|0;if(z|0)Oq(z);z=f[h+8>>2]|0;if(z|0)Oq(z);K=0;L=o;M=54;break b}while(0);if(!A){b[B+(D*136|0)+100>>0]=0;N=B+(D*136|0)+104|0;M=26}else M=24}else M=24;while(0);if((M|0)==24){N=a+40|0;M=26}if((M|0)==26){D=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+48|0;do if((mi(f[D>>2]|0)|0)==0?(f[y+56>>2]|0)==0:0){if(b[m>>0]|0?(B=f[a+8>>2]|0,((f[B+12>>2]|0)-(f[B+8>>2]|0)|0)>4):0){M=31;break}gf(e,a,N);O=1;P=f[e>>2]|0}else M=31;while(0);if((M|0)==31){Vd(e,a,N);O=0;P=f[e>>2]|0}if(!P)Q=0;else{K=O;L=P;M=54}}if((M|0)==54){M=f[g>>2]|0;if((M|0)==-1)R=a+68|0;else R=(f[n>>2]|0)+(M*136|0)+132|0;f[R>>2]=K;K=ln(76)|0;f[k>>2]=L;rl(K,k,c);c=K;K=f[k>>2]|0;f[k>>2]=0;if(K|0)Va[f[(f[K>>2]|0)+4>>2]&127](K);K=a+188|0;k=f[K>>2]|0;if((k|0)==(f[a+192>>2]|0))Ri(a+184|0,g);else{f[k>>2]=f[g>>2];f[K>>2]=k+4}k=Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0;f[l>>2]=c;a=k+12|0;K=f[a>>2]|0;if(K>>>0<(f[k+16>>2]|0)>>>0){f[l>>2]=0;f[K>>2]=c;f[a>>2]=K+4;S=l}else{Qg(k+8|0,l);S=l}l=f[S>>2]|0;f[S>>2]=0;if(!l)Q=1;else{Va[f[(f[l>>2]|0)+4>>2]&127](l);Q=1}}C=Q;u=d;return C|0}function cc(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0;d=u;u=u+192|0;e=d+152|0;g=d+144|0;h=d+72|0;i=d;j=d+112|0;k=d+108|0;l=d+104|0;m=a+288|0;if(b[m>>0]|0?(n=Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0,((f[n+12>>2]|0)-(f[n+8>>2]|0)|0)>0):0){n=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+8|0;o=f[f[n>>2]>>2]|0;f[e>>2]=c;n=o+4|0;p=o+8|0;q=f[p>>2]|0;if((q|0)==(f[o+12>>2]|0))Ri(n,e);else{f[q>>2]=c;f[p>>2]=q+4}q=f[e>>2]|0;r=o+16|0;s=o+20|0;o=f[s>>2]|0;t=f[r>>2]|0;v=o-t>>2;w=t;if((q|0)<(v|0)){x=w;y=q}else{t=q+1|0;f[g>>2]=-1;z=o;if(t>>>0<=v>>>0)if(t>>>0<v>>>0?(o=w+(t<<2)|0,(o|0)!=(z|0)):0){f[s>>2]=z+(~((z+-4-o|0)>>>2)<<2);A=q;B=w}else{A=q;B=w}else{Ch(r,t-v|0,g);A=f[e>>2]|0;B=f[r>>2]|0}x=B;y=A}f[x+(y<<2)>>2]=((f[p>>2]|0)-(f[n>>2]|0)>>2)+-1;C=1;u=d;return C|0}n=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+52|0;p=f[(f[(f[n>>2]|0)+84>>2]|0)+(c<<2)>>2]|0;n=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+4|0;y=f[(f[(f[n>>2]|0)+8>>2]|0)+(c<<2)>>2]|0;f[g>>2]=-1;n=a+172|0;x=f[a+176>>2]|0;A=f[n>>2]|0;B=A;a:do if((x|0)==(A|0))D=-1;else{r=(x-A|0)/136|0;v=0;while(1){if((f[B+(v*136|0)>>2]|0)==(c|0))break;t=v+1|0;if(t>>>0<r>>>0)v=t;else{D=-1;break a}}f[g>>2]=v;D=v}while(0);b:do if(!(b[m>>0]|0)){A=(f[y+56>>2]|0)==0;do if(!((p|0)==0|A)){if((p|0)==1?b[B+(D*136|0)+28>>0]|0:0)break;x=ln(88)|0;r=f[a+8>>2]|0;t=B+(D*136|0)+104|0;f[x+4>>2]=0;f[x>>2]=3564;w=x+12|0;f[w>>2]=3588;q=x+64|0;f[q>>2]=0;f[x+68>>2]=0;f[x+72>>2]=0;o=x+16|0;z=o+44|0;do{f[o>>2]=0;o=o+4|0}while((o|0)<(z|0));f[x+76>>2]=r;f[x+80>>2]=t;s=x+84|0;f[s>>2]=0;f[h>>2]=3588;E=h+4|0;F=E+4|0;f[F>>2]=0;f[F+4>>2]=0;f[F+8>>2]=0;f[F+12>>2]=0;f[F+16>>2]=0;f[F+20>>2]=0;F=B+(D*136|0)+4|0;G=i+4|0;f[G>>2]=3588;H=i+56|0;f[H>>2]=0;I=i+60|0;f[I>>2]=0;f[i+64>>2]=0;o=i+8|0;z=o+44|0;do{f[o>>2]=0;o=o+4|0}while((o|0)<(z|0));f[E>>2]=F;o=f[B+(D*136|0)+68>>2]|0;z=((f[o+4>>2]|0)-(f[o>>2]|0)>>2>>>0)/3|0;b[e>>0]=0;qh(h+8|0,z,e);Va[f[(f[h>>2]|0)+8>>2]&127](h);Df(j,h);Df(e,j);f[i>>2]=f[e+4>>2];z=i+4|0;fg(z,e)|0;f[e>>2]=3588;o=f[e+20>>2]|0;if(o|0)Oq(o);o=f[e+8>>2]|0;if(o|0)Oq(o);f[i+36>>2]=F;f[i+40>>2]=t;f[i+44>>2]=r;f[i+48>>2]=x;f[j>>2]=3588;o=f[j+20>>2]|0;if(o|0)Oq(o);o=f[j+8>>2]|0;if(o|0)Oq(o);f[s>>2]=a+72;f[x+8>>2]=f[i>>2];fg(w,z)|0;z=x+44|0;o=i+36|0;f[z>>2]=f[o>>2];f[z+4>>2]=f[o+4>>2];f[z+8>>2]=f[o+8>>2];f[z+12>>2]=f[o+12>>2];b[z+16>>0]=b[o+16>>0]|0;ng(q,f[H>>2]|0,f[I>>2]|0);o=x;z=f[H>>2]|0;if(z|0){J=f[I>>2]|0;if((J|0)!=(z|0))f[I>>2]=J+(~((J+-4-z|0)>>>2)<<2);Oq(z)}f[G>>2]=3588;z=f[i+24>>2]|0;if(z|0)Oq(z);z=f[i+12>>2]|0;if(z|0)Oq(z);f[h>>2]=3588;z=f[h+20>>2]|0;if(z|0)Oq(z);z=f[h+8>>2]|0;if(z|0)Oq(z);K=0;L=o;M=54;break b}while(0);if(!A){b[B+(D*136|0)+100>>0]=0;N=B+(D*136|0)+104|0;M=26}else M=24}else M=24;while(0);if((M|0)==24){N=a+40|0;M=26}if((M|0)==26){D=(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)+48|0;do if((mi(f[D>>2]|0)|0)==0?(f[y+56>>2]|0)==0:0){if(b[m>>0]|0?(B=f[a+8>>2]|0,((f[B+12>>2]|0)-(f[B+8>>2]|0)|0)>4):0){M=31;break}gf(e,a,N);O=1;P=f[e>>2]|0}else M=31;while(0);if((M|0)==31){Vd(e,a,N);O=0;P=f[e>>2]|0}if(!P)Q=0;else{K=O;L=P;M=54}}if((M|0)==54){M=f[g>>2]|0;if((M|0)==-1)R=a+68|0;else R=(f[n>>2]|0)+(M*136|0)+132|0;f[R>>2]=K;K=ln(76)|0;f[k>>2]=L;rl(K,k,c);c=K;K=f[k>>2]|0;f[k>>2]=0;if(K|0)Va[f[(f[K>>2]|0)+4>>2]&127](K);K=a+188|0;k=f[K>>2]|0;if((k|0)==(f[a+192>>2]|0))Ri(a+184|0,g);else{f[k>>2]=f[g>>2];f[K>>2]=k+4}k=Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0;f[l>>2]=c;a=k+12|0;K=f[a>>2]|0;if(K>>>0<(f[k+16>>2]|0)>>>0){f[l>>2]=0;f[K>>2]=c;f[a>>2]=K+4;S=l}else{Qg(k+8|0,l);S=l}l=f[S>>2]|0;f[S>>2]=0;if(!l)Q=1;else{Va[f[(f[l>>2]|0)+4>>2]&127](l);Q=1}}C=Q;u=d;return C|0}function dc(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0;c=u;u=u+16|0;d=c+8|0;e=c;g=f[b>>2]|0;if((g|0)==-1){u=c;return}h=(g>>>0)/3|0;i=a+12|0;if(f[(f[i>>2]|0)+(h>>>5<<2)>>2]&1<<(h&31)|0){u=c;return}h=a+56|0;j=f[h>>2]|0;k=a+60|0;l=f[k>>2]|0;if((l|0)==(j|0))m=j;else{n=l+(~((l+-4-j|0)>>>2)<<2)|0;f[k>>2]=n;m=n}n=a+64|0;if((m|0)==(f[n>>2]|0))Ri(h,b);else{f[m>>2]=g;f[k>>2]=m+4}m=f[a>>2]|0;g=f[b>>2]|0;j=g+1|0;if((g|0)!=-1){l=((j>>>0)%3|0|0)==0?g+-2|0:j;if((l|0)==-1)o=-1;else o=f[(f[m>>2]|0)+(l<<2)>>2]|0;l=(((g>>>0)%3|0|0)==0?2:-1)+g|0;if((l|0)==-1){p=o;q=-1}else{p=o;q=f[(f[m>>2]|0)+(l<<2)>>2]|0}}else{p=-1;q=-1}l=a+24|0;m=f[l>>2]|0;o=m+(p>>>5<<2)|0;g=1<<(p&31);j=f[o>>2]|0;if(!(j&g)){f[o>>2]=j|g;g=f[b>>2]|0;j=g+1|0;if((g|0)==-1)r=-1;else r=((j>>>0)%3|0|0)==0?g+-2|0:j;f[e>>2]=r;j=f[(f[(f[a+44>>2]|0)+96>>2]|0)+(((r>>>0)/3|0)*12|0)+(((r>>>0)%3|0)<<2)>>2]|0;r=f[a+48>>2]|0;f[d>>2]=j;g=f[r+4>>2]|0;r=g+4|0;o=f[r>>2]|0;if((o|0)==(f[g+8>>2]|0))Ri(g,d);else{f[o>>2]=j;f[r>>2]=o+4}o=a+40|0;r=f[o>>2]|0;j=r+4|0;g=f[j>>2]|0;if((g|0)==(f[r+8>>2]|0)){Ri(r,e);s=f[o>>2]|0}else{f[g>>2]=f[e>>2];f[j>>2]=g+4;s=r}r=s+24|0;f[(f[s+12>>2]|0)+(p<<2)>>2]=f[r>>2];f[r>>2]=(f[r>>2]|0)+1;t=f[l>>2]|0}else t=m;m=t+(q>>>5<<2)|0;t=1<<(q&31);r=f[m>>2]|0;if(!(r&t)){f[m>>2]=r|t;t=f[b>>2]|0;do if((t|0)!=-1)if(!((t>>>0)%3|0)){v=t+2|0;break}else{v=t+-1|0;break}else v=-1;while(0);f[e>>2]=v;t=f[(f[(f[a+44>>2]|0)+96>>2]|0)+(((v>>>0)/3|0)*12|0)+(((v>>>0)%3|0)<<2)>>2]|0;v=f[a+48>>2]|0;f[d>>2]=t;r=f[v+4>>2]|0;v=r+4|0;m=f[v>>2]|0;if((m|0)==(f[r+8>>2]|0))Ri(r,d);else{f[m>>2]=t;f[v>>2]=m+4}m=a+40|0;v=f[m>>2]|0;t=v+4|0;r=f[t>>2]|0;if((r|0)==(f[v+8>>2]|0)){Ri(v,e);w=f[m>>2]|0}else{f[r>>2]=f[e>>2];f[t>>2]=r+4;w=v}v=w+24|0;f[(f[w+12>>2]|0)+(q<<2)>>2]=f[v>>2];f[v>>2]=(f[v>>2]|0)+1}v=f[h>>2]|0;q=f[k>>2]|0;if((v|0)==(q|0)){u=c;return}w=a+44|0;r=a+48|0;t=a+40|0;m=q;q=v;while(1){v=f[m+-4>>2]|0;f[b>>2]=v;p=(v>>>0)/3|0;if((v|0)!=-1?(v=f[i>>2]|0,(f[v+(p>>>5<<2)>>2]&1<<(p&31)|0)==0):0){s=p;p=v;a:while(1){v=p+(s>>>5<<2)|0;f[v>>2]=f[v>>2]|1<<(s&31);v=f[b>>2]|0;if((v|0)==-1)x=-1;else x=f[(f[f[a>>2]>>2]|0)+(v<<2)>>2]|0;g=(f[l>>2]|0)+(x>>>5<<2)|0;j=1<<(x&31);o=f[g>>2]|0;do if(!(j&o)){y=f[a>>2]|0;z=f[(f[y+24>>2]|0)+(x<<2)>>2]|0;A=z+1|0;if(((z|0)!=-1?(B=((A>>>0)%3|0|0)==0?z+-2|0:A,(B|0)!=-1):0)?(A=f[(f[y+12>>2]|0)+(B<<2)>>2]|0,B=A+1|0,(A|0)!=-1):0)C=((((B>>>0)%3|0|0)==0?A+-2|0:B)|0)==-1;else C=1;f[g>>2]=o|j;B=f[b>>2]|0;f[e>>2]=B;A=f[(f[(f[w>>2]|0)+96>>2]|0)+(((B>>>0)/3|0)*12|0)+(((B>>>0)%3|0)<<2)>>2]|0;B=f[r>>2]|0;f[d>>2]=A;y=f[B+4>>2]|0;B=y+4|0;z=f[B>>2]|0;if((z|0)==(f[y+8>>2]|0))Ri(y,d);else{f[z>>2]=A;f[B>>2]=z+4}z=f[t>>2]|0;B=z+4|0;A=f[B>>2]|0;if((A|0)==(f[z+8>>2]|0)){Ri(z,e);D=f[t>>2]|0}else{f[A>>2]=f[e>>2];f[B>>2]=A+4;D=z}z=D+24|0;f[(f[D+12>>2]|0)+(x<<2)>>2]=f[z>>2];f[z>>2]=(f[z>>2]|0)+1;if(C){E=f[b>>2]|0;F=60;break}z=f[a>>2]|0;A=f[b>>2]|0;do if((A|0)==-1)G=-1;else{B=A+1|0;y=((B>>>0)%3|0|0)==0?A+-2|0:B;if((y|0)==-1){G=-1;break}G=f[(f[z+12>>2]|0)+(y<<2)>>2]|0}while(0);f[b>>2]=G;H=(G>>>0)/3|0}else{E=v;F=60}while(0);if((F|0)==60){F=0;v=f[a>>2]|0;if((E|0)==-1){F=61;break}j=E+1|0;o=((j>>>0)%3|0|0)==0?E+-2|0:j;if((o|0)==-1)I=-1;else I=f[(f[v+12>>2]|0)+(o<<2)>>2]|0;f[d>>2]=I;o=(((E>>>0)%3|0|0)==0?2:-1)+E|0;if((o|0)==-1)J=-1;else J=f[(f[v+12>>2]|0)+(o<<2)>>2]|0;o=(I|0)==-1;v=(I>>>0)/3|0;j=o?-1:v;g=(J|0)==-1;z=(J>>>0)/3|0;A=g?-1:z;do if(!o){y=f[i>>2]|0;if(f[y+(j>>>5<<2)>>2]&1<<(j&31)|0){F=68;break}if(g){K=I;L=v;break}if(!(f[y+(A>>>5<<2)>>2]&1<<(A&31))){F=73;break a}else{K=I;L=v}}else F=68;while(0);if((F|0)==68){F=0;if(g){F=70;break}if(!(f[(f[i>>2]|0)+(A>>>5<<2)>>2]&1<<(A&31))){K=J;L=z}else{F=70;break}}f[b>>2]=K;H=L}s=H;p=f[i>>2]|0}do if((F|0)==61){F=0;f[d>>2]=-1;F=70}else if((F|0)==73){F=0;p=f[k>>2]|0;f[p+-4>>2]=J;if((p|0)==(f[n>>2]|0)){Ri(h,d);M=f[k>>2]|0;break}else{f[p>>2]=f[d>>2];s=p+4|0;f[k>>2]=s;M=s;break}}while(0);if((F|0)==70){F=0;s=(f[k>>2]|0)+-4|0;f[k>>2]=s;M=s}N=f[h>>2]|0;O=M}else{s=m+-4|0;f[k>>2]=s;N=q;O=s}if((N|0)==(O|0))break;else{m=O;q=N}}u=c;return}function ec(a,c,e){a=a|0;c=c|0;e=e|0;var g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=Oa,fa=Oa,ga=Oa,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0;g=u;u=u+48|0;i=g+12|0;j=g+32|0;k=g;l=i+16|0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;n[l>>2]=$(1.0);m=a+80|0;o=f[m>>2]|0;f[k>>2]=0;p=k+4|0;f[p>>2]=0;f[k+8>>2]=0;if(o){if(o>>>0>1073741823)aq(k);q=o<<2;r=ln(q)|0;f[k>>2]=r;s=r+(o<<2)|0;f[k+8>>2]=s;sj(r|0,0,q|0)|0;f[p>>2]=s;s=c+48|0;q=c+40|0;o=i+4|0;t=i+12|0;v=i+8|0;w=a+40|0;x=a+64|0;y=f[e>>2]|0;e=0;z=r;A=0;B=0;C=r;D=r;E=r;while(1){r=s;F=f[r>>2]|0;G=f[r+4>>2]|0;r=q;H=un(f[r>>2]|0,f[r+4>>2]|0,y+A|0,0)|0;r=Vn(H|0,I|0,F|0,G|0)|0;G=(f[f[c>>2]>>2]|0)+r|0;r=h[G>>0]|h[G+1>>0]<<8;d[j>>1]=r;G=(r^318)&65535;a:do if(e){F=e+-1|0;H=(F&e|0)==0;if(!H)if(e>>>0>G>>>0)J=G;else J=(G>>>0)%(e>>>0)|0;else J=F&G;K=f[i>>2]|0;L=f[K+(J<<2)>>2]|0;b:do if(L|0?(M=f[L>>2]|0,M|0):0){c:do if(H){N=M;while(1){O=f[N+4>>2]|0;P=(O|0)==(G|0);if(!(P|(O&F|0)==(J|0)))break b;if(P?(d[N+8>>1]|0)==r<<16>>16:0){Q=N;break c}N=f[N>>2]|0;if(!N)break b}}else{N=M;while(1){P=f[N+4>>2]|0;if((P|0)==(G|0)){if((d[N+8>>1]|0)==r<<16>>16){Q=N;break c}}else{if(P>>>0<e>>>0)R=P;else R=(P>>>0)%(e>>>0)|0;if((R|0)!=(J|0))break b}N=f[N>>2]|0;if(!N)break b}}while(0);f[E+(A<<2)>>2]=f[Q+12>>2];S=z;T=B;U=D;V=C;X=E;break a}while(0);if(!H)if(e>>>0>G>>>0)Y=G;else Y=(G>>>0)%(e>>>0)|0;else Y=F&G;L=f[K+(Y<<2)>>2]|0;if(!L){Z=Y;_=e;aa=0;ba=40}else{if(H){M=L;while(1){M=f[M>>2]|0;if(!M){Z=Y;_=e;aa=0;ba=40;break a}N=f[M+4>>2]|0;if(!((N|0)==(G|0)|(N&F|0)==(Y|0))){Z=Y;_=e;aa=0;ba=40;break a}if((d[M+8>>1]|0)==r<<16>>16){ba=55;break a}}}else ca=L;while(1){ca=f[ca>>2]|0;if(!ca){Z=Y;_=e;aa=0;ba=40;break a}M=f[ca+4>>2]|0;if((M|0)!=(G|0)){if(M>>>0<e>>>0)da=M;else da=(M>>>0)%(e>>>0)|0;if((da|0)!=(Y|0)){Z=Y;_=e;aa=0;ba=40;break a}}if((d[ca+8>>1]|0)==r<<16>>16){ba=55;break}}}}else{Z=0;_=0;aa=1;ba=40}while(0);if((ba|0)==40){ba=0;L=ln(16)|0;d[L+8>>1]=r;f[L+12>>2]=B;f[L+4>>2]=G;f[L>>2]=0;ea=$(((f[t>>2]|0)+1|0)>>>0);fa=$(_>>>0);ga=$(n[l>>2]);do if(aa|$(ga*fa)<ea){M=_<<1|(_>>>0<3|(_+-1&_|0)!=0)&1;F=~~$(W($(ea/ga)))>>>0;Vh(i,M>>>0<F>>>0?F:M);M=f[o>>2]|0;F=M+-1|0;if(!(F&M)){ha=M;ia=F&G;break}if(M>>>0>G>>>0){ha=M;ia=G}else{ha=M;ia=(G>>>0)%(M>>>0)|0}}else{ha=_;ia=Z}while(0);G=(f[i>>2]|0)+(ia<<2)|0;r=f[G>>2]|0;if(!r){f[L>>2]=f[v>>2];f[v>>2]=L;f[G>>2]=v;G=f[L>>2]|0;if(G|0){M=f[G+4>>2]|0;G=ha+-1|0;if(G&ha)if(M>>>0<ha>>>0)ja=M;else ja=(M>>>0)%(ha>>>0)|0;else ja=M&G;ka=(f[i>>2]|0)+(ja<<2)|0;ba=53}}else{f[L>>2]=f[r>>2];ka=r;ba=53}if((ba|0)==53){ba=0;f[ka>>2]=L}f[t>>2]=(f[t>>2]|0)+1;ba=55}if((ba|0)==55){ba=0;r=w;G=f[r>>2]|0;M=un(G|0,f[r+4>>2]|0,B|0,0)|0;kh((f[f[x>>2]>>2]|0)+M|0,j|0,G|0)|0;G=f[k>>2]|0;f[G+(A<<2)>>2]=B;S=G;T=B+1|0;U=G;V=G;X=G}G=A+1|0;la=f[m>>2]|0;if(G>>>0>=la>>>0)break;e=f[o>>2]|0;z=S;A=G;B=T;C=V;D=U;E=X}if((T|0)==(la|0))ma=V;else{V=a+84|0;if(!(b[V>>0]|0)){X=f[a+72>>2]|0;E=f[a+68>>2]|0;D=E;if((X|0)==(E|0))na=S;else{C=X-E>>2;E=0;do{X=D+(E<<2)|0;f[X>>2]=f[U+(f[X>>2]<<2)>>2];E=E+1|0}while(E>>>0<C>>>0);na=S}}else{b[V>>0]=0;V=a+68|0;S=a+72|0;C=f[S>>2]|0;E=f[V>>2]|0;U=C-E>>2;D=E;E=C;if(la>>>0<=U>>>0)if(la>>>0<U>>>0?(C=D+(la<<2)|0,(C|0)!=(E|0)):0){f[S>>2]=E+(~((E+-4-C|0)>>>2)<<2);oa=la}else oa=la;else{Ch(V,la-U|0,1220);oa=f[m>>2]|0}U=f[k>>2]|0;if(!oa)na=U;else{k=f[a+68>>2]|0;a=0;do{f[k+(a<<2)>>2]=f[U+(a<<2)>>2];a=a+1|0}while(a>>>0<oa>>>0);na=U}}f[m>>2]=T;ma=na}if(!ma)pa=T;else{na=f[p>>2]|0;if((na|0)!=(ma|0))f[p>>2]=na+(~((na+-4-ma|0)>>>2)<<2);Oq(ma);pa=T}}else pa=0;T=f[i+8>>2]|0;if(T|0){ma=T;do{T=ma;ma=f[ma>>2]|0;Oq(T)}while((ma|0)!=0)}ma=f[i>>2]|0;f[i>>2]=0;if(!ma){u=g;return pa|0}Oq(ma);u=g;return pa|0}function fc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=Oa,K=Oa,L=Oa,M=0,N=0,O=0,P=0;e=u;u=u+64|0;g=e+40|0;i=e+16|0;j=e;k=Id(a,c)|0;if(k|0){f[i>>2]=k;f[g>>2]=f[i>>2];lf(a,g)|0}f[j>>2]=0;k=j+4|0;f[k>>2]=0;f[j+8>>2]=0;Fi(j,4);l=f[j>>2]|0;m=h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24;b[l>>0]=m;b[l+1>>0]=m>>8;b[l+2>>0]=m>>16;b[l+3>>0]=m>>24;pj(i,c);c=i+12|0;f[c>>2]=0;m=i+16|0;f[m>>2]=0;f[i+20>>2]=0;l=f[k>>2]|0;d=f[j>>2]|0;o=l-d|0;if(!o){p=d;q=l;r=0}else{Fi(c,o);p=f[j>>2]|0;q=f[k>>2]|0;r=f[c>>2]|0}kh(r|0,p|0,q-p|0)|0;p=i+11|0;q=b[p>>0]|0;r=q<<24>>24<0;c=r?f[i>>2]|0:i;o=r?f[i+4>>2]|0:q&255;if(o>>>0>3){q=c;r=o;l=o;while(1){d=X(h[q>>0]|h[q+1>>0]<<8|h[q+2>>0]<<16|h[q+3>>0]<<24,1540483477)|0;r=(X(d>>>24^d,1540483477)|0)^(X(r,1540483477)|0);l=l+-4|0;if(l>>>0<=3)break;else q=q+4|0}q=o+-4|0;l=q&-4;s=q-l|0;t=c+(l+4)|0;v=r}else{s=o;t=c;v=o}switch(s|0){case 3:{w=h[t+2>>0]<<16^v;x=10;break}case 2:{w=v;x=10;break}case 1:{y=v;x=11;break}default:z=v}if((x|0)==10){y=h[t+1>>0]<<8^w;x=11}if((x|0)==11)z=X(y^h[t>>0],1540483477)|0;t=X(z>>>13^z,1540483477)|0;z=t>>>15^t;t=a+4|0;y=f[t>>2]|0;w=(y|0)==0;a:do if(!w){v=y+-1|0;s=(v&y|0)==0;if(!s)if(z>>>0<y>>>0)A=z;else A=(z>>>0)%(y>>>0)|0;else A=z&v;r=f[(f[a>>2]|0)+(A<<2)>>2]|0;if((r|0)!=0?(l=f[r>>2]|0,(l|0)!=0):0){r=(o|0)==0;if(s){if(r){s=l;while(1){q=f[s+4>>2]|0;if(!((q|0)==(z|0)|(q&v|0)==(A|0))){B=A;x=52;break a}q=b[s+8+11>>0]|0;if(!((q<<24>>24<0?f[s+12>>2]|0:q&255)|0))break a;s=f[s>>2]|0;if(!s){B=A;x=52;break a}}}else C=l;while(1){s=f[C+4>>2]|0;if(!((s|0)==(z|0)|(s&v|0)==(A|0))){B=A;x=52;break a}s=C+8|0;q=b[s+11>>0]|0;d=q<<24>>24<0;D=q&255;do if(((d?f[C+12>>2]|0:D)|0)==(o|0)){q=f[s>>2]|0;if(d)if(!(Vk(q,c,o)|0))break a;else break;if((b[c>>0]|0)==(q&255)<<24>>24){q=s;E=D;F=c;do{E=E+-1|0;q=q+1|0;if(!E)break a;F=F+1|0}while((b[q>>0]|0)==(b[F>>0]|0))}}while(0);C=f[C>>2]|0;if(!C){B=A;x=52;break a}}}if(r){v=l;while(1){D=f[v+4>>2]|0;if((D|0)!=(z|0)){if(D>>>0<y>>>0)G=D;else G=(D>>>0)%(y>>>0)|0;if((G|0)!=(A|0)){B=A;x=52;break a}}D=b[v+8+11>>0]|0;if(!((D<<24>>24<0?f[v+12>>2]|0:D&255)|0))break a;v=f[v>>2]|0;if(!v){B=A;x=52;break a}}}else H=l;while(1){v=f[H+4>>2]|0;if((v|0)!=(z|0)){if(v>>>0<y>>>0)I=v;else I=(v>>>0)%(y>>>0)|0;if((I|0)!=(A|0)){B=A;x=52;break a}}v=H+8|0;r=b[v+11>>0]|0;D=r<<24>>24<0;s=r&255;do if(((D?f[H+12>>2]|0:s)|0)==(o|0)){r=f[v>>2]|0;if(D)if(!(Vk(r,c,o)|0))break a;else break;if((b[c>>0]|0)==(r&255)<<24>>24){r=v;d=s;F=c;do{d=d+-1|0;r=r+1|0;if(!d)break a;F=F+1|0}while((b[r>>0]|0)==(b[F>>0]|0))}}while(0);H=f[H>>2]|0;if(!H){B=A;x=52;break}}}else{B=A;x=52}}else{B=0;x=52}while(0);if((x|0)==52){oi(g,a,z,i);x=a+12|0;J=$(((f[x>>2]|0)+1|0)>>>0);K=$(y>>>0);L=$(n[a+16>>2]);do if(w|$(L*K)<J){A=y<<1|(y>>>0<3|(y+-1&y|0)!=0)&1;H=~~$(W($(J/L)))>>>0;ei(a,A>>>0<H>>>0?H:A);A=f[t>>2]|0;H=A+-1|0;if(!(H&A)){M=A;N=H&z;break}if(z>>>0<A>>>0){M=A;N=z}else{M=A;N=(z>>>0)%(A>>>0)|0}}else{M=y;N=B}while(0);B=f[(f[a>>2]|0)+(N<<2)>>2]|0;if(!B){y=a+8|0;f[f[g>>2]>>2]=f[y>>2];f[y>>2]=f[g>>2];f[(f[a>>2]|0)+(N<<2)>>2]=y;y=f[g>>2]|0;N=f[y>>2]|0;if(!N)O=g;else{z=f[N+4>>2]|0;N=M+-1|0;if(N&M)if(z>>>0<M>>>0)P=z;else P=(z>>>0)%(M>>>0)|0;else P=z&N;f[(f[a>>2]|0)+(P<<2)>>2]=y;O=g}}else{f[f[g>>2]>>2]=f[B>>2];f[B>>2]=f[g>>2];O=g}f[x>>2]=(f[x>>2]|0)+1;f[O>>2]=0}O=f[i+12>>2]|0;if(O|0){if((f[m>>2]|0)!=(O|0))f[m>>2]=O;Oq(O)}if((b[p>>0]|0)<0)Oq(f[i>>2]|0);i=f[j>>2]|0;if(!i){u=e;return}if((f[k>>2]|0)!=(i|0))f[k>>2]=i;Oq(i);u=e;return}function gc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=Oa,da=Oa,ea=Oa,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0;e=u;u=u+48|0;g=e+12|0;h=e+32|0;i=e;j=g+16|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;f[g+12>>2]=0;n[j>>2]=$(1.0);k=a+80|0;l=f[k>>2]|0;f[i>>2]=0;m=i+4|0;f[m>>2]=0;f[i+8>>2]=0;if(l){if(l>>>0>1073741823)aq(i);o=l<<2;p=ln(o)|0;f[i>>2]=p;q=p+(l<<2)|0;f[i+8>>2]=q;sj(p|0,0,o|0)|0;f[m>>2]=q;q=c+48|0;o=c+40|0;l=g+4|0;r=g+12|0;s=g+8|0;t=a+40|0;v=a+64|0;w=f[d>>2]|0;d=0;x=p;y=0;z=0;A=p;B=p;C=p;while(1){p=q;D=f[p>>2]|0;E=f[p+4>>2]|0;p=o;F=un(f[p>>2]|0,f[p+4>>2]|0,w+y|0,0)|0;p=Vn(F|0,I|0,D|0,E|0)|0;E=b[(f[f[c>>2]>>2]|0)+p>>0]|0;b[h>>0]=E;p=E&255^318;a:do if(d){D=d+-1|0;F=(D&d|0)==0;if(!F)if(p>>>0<d>>>0)G=p;else G=(p>>>0)%(d>>>0)|0;else G=D&p;H=f[g>>2]|0;J=f[H+(G<<2)>>2]|0;b:do if(J|0?(K=f[J>>2]|0,K|0):0){c:do if(F){L=K;while(1){M=f[L+4>>2]|0;N=(M|0)==(p|0);if(!(N|(M&D|0)==(G|0)))break b;if(N?(b[L+8>>0]|0)==E<<24>>24:0){O=L;break c}L=f[L>>2]|0;if(!L)break b}}else{L=K;while(1){N=f[L+4>>2]|0;if((N|0)==(p|0)){if((b[L+8>>0]|0)==E<<24>>24){O=L;break c}}else{if(N>>>0<d>>>0)P=N;else P=(N>>>0)%(d>>>0)|0;if((P|0)!=(G|0))break b}L=f[L>>2]|0;if(!L)break b}}while(0);f[C+(y<<2)>>2]=f[O+12>>2];Q=x;R=z;S=B;T=A;U=C;break a}while(0);if(!F)if(p>>>0<d>>>0)V=p;else V=(p>>>0)%(d>>>0)|0;else V=D&p;J=f[H+(V<<2)>>2]|0;if(!J){X=V;Y=d;Z=0;_=40}else{if(F){K=J;while(1){K=f[K>>2]|0;if(!K){X=V;Y=d;Z=0;_=40;break a}L=f[K+4>>2]|0;if(!((L|0)==(p|0)|(L&D|0)==(V|0))){X=V;Y=d;Z=0;_=40;break a}if((b[K+8>>0]|0)==E<<24>>24){_=55;break a}}}else aa=J;while(1){aa=f[aa>>2]|0;if(!aa){X=V;Y=d;Z=0;_=40;break a}K=f[aa+4>>2]|0;if((K|0)!=(p|0)){if(K>>>0<d>>>0)ba=K;else ba=(K>>>0)%(d>>>0)|0;if((ba|0)!=(V|0)){X=V;Y=d;Z=0;_=40;break a}}if((b[aa+8>>0]|0)==E<<24>>24){_=55;break}}}}else{X=0;Y=0;Z=1;_=40}while(0);if((_|0)==40){_=0;J=ln(16)|0;b[J+8>>0]=E;f[J+12>>2]=z;f[J+4>>2]=p;f[J>>2]=0;ca=$(((f[r>>2]|0)+1|0)>>>0);da=$(Y>>>0);ea=$(n[j>>2]);do if(Z|$(ea*da)<ca){K=Y<<1|(Y>>>0<3|(Y+-1&Y|0)!=0)&1;D=~~$(W($(ca/ea)))>>>0;ai(g,K>>>0<D>>>0?D:K);K=f[l>>2]|0;D=K+-1|0;if(!(D&K)){fa=K;ga=D&p;break}if(p>>>0<K>>>0){fa=K;ga=p}else{fa=K;ga=(p>>>0)%(K>>>0)|0}}else{fa=Y;ga=X}while(0);p=(f[g>>2]|0)+(ga<<2)|0;E=f[p>>2]|0;if(!E){f[J>>2]=f[s>>2];f[s>>2]=J;f[p>>2]=s;p=f[J>>2]|0;if(p|0){K=f[p+4>>2]|0;p=fa+-1|0;if(p&fa)if(K>>>0<fa>>>0)ha=K;else ha=(K>>>0)%(fa>>>0)|0;else ha=K&p;ia=(f[g>>2]|0)+(ha<<2)|0;_=53}}else{f[J>>2]=f[E>>2];ia=E;_=53}if((_|0)==53){_=0;f[ia>>2]=J}f[r>>2]=(f[r>>2]|0)+1;_=55}if((_|0)==55){_=0;E=t;p=f[E>>2]|0;K=un(p|0,f[E+4>>2]|0,z|0,0)|0;kh((f[f[v>>2]>>2]|0)+K|0,h|0,p|0)|0;p=f[i>>2]|0;f[p+(y<<2)>>2]=z;Q=p;R=z+1|0;S=p;T=p;U=p}p=y+1|0;ja=f[k>>2]|0;if(p>>>0>=ja>>>0)break;d=f[l>>2]|0;x=Q;y=p;z=R;A=T;B=S;C=U}if((R|0)==(ja|0))ka=T;else{T=a+84|0;if(!(b[T>>0]|0)){U=f[a+72>>2]|0;C=f[a+68>>2]|0;B=C;if((U|0)==(C|0))la=Q;else{A=U-C>>2;C=0;do{U=B+(C<<2)|0;f[U>>2]=f[S+(f[U>>2]<<2)>>2];C=C+1|0}while(C>>>0<A>>>0);la=Q}}else{b[T>>0]=0;T=a+68|0;Q=a+72|0;A=f[Q>>2]|0;C=f[T>>2]|0;S=A-C>>2;B=C;C=A;if(ja>>>0<=S>>>0)if(ja>>>0<S>>>0?(A=B+(ja<<2)|0,(A|0)!=(C|0)):0){f[Q>>2]=C+(~((C+-4-A|0)>>>2)<<2);ma=ja}else ma=ja;else{Ch(T,ja-S|0,1220);ma=f[k>>2]|0}S=f[i>>2]|0;if(!ma)la=S;else{i=f[a+68>>2]|0;a=0;do{f[i+(a<<2)>>2]=f[S+(a<<2)>>2];a=a+1|0}while(a>>>0<ma>>>0);la=S}}f[k>>2]=R;ka=la}if(!ka)na=R;else{la=f[m>>2]|0;if((la|0)!=(ka|0))f[m>>2]=la+(~((la+-4-ka|0)>>>2)<<2);Oq(ka);na=R}}else na=0;R=f[g+8>>2]|0;if(R|0){ka=R;do{R=ka;ka=f[ka>>2]|0;Oq(R)}while((ka|0)!=0)}ka=f[g>>2]|0;f[g>>2]=0;if(!ka){u=e;return na|0}Oq(ka);u=e;return na|0}function hc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=Oa,ea=Oa,fa=Oa,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0;e=u;u=u+48|0;g=e+16|0;i=e+12|0;j=e;k=g+16|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;f[g+12>>2]=0;n[k>>2]=$(1.0);l=a+80|0;m=f[l>>2]|0;f[j>>2]=0;o=j+4|0;f[o>>2]=0;f[j+8>>2]=0;if(m){if(m>>>0>1073741823)aq(j);p=m<<2;q=ln(p)|0;f[j>>2]=q;r=q+(m<<2)|0;f[j+8>>2]=r;sj(q|0,0,p|0)|0;f[o>>2]=r;r=c+48|0;p=c+40|0;m=g+4|0;s=g+12|0;t=g+8|0;v=a+40|0;w=a+64|0;x=f[d>>2]|0;d=0;y=q;z=0;A=0;B=q;C=q;D=q;while(1){q=r;E=f[q>>2]|0;F=f[q+4>>2]|0;q=p;G=un(f[q>>2]|0,f[q+4>>2]|0,x+z|0,0)|0;q=Vn(G|0,I|0,E|0,F|0)|0;F=(f[f[c>>2]>>2]|0)+q|0;q=h[F>>0]|h[F+1>>0]<<8|h[F+2>>0]<<16|h[F+3>>0]<<24;f[i>>2]=q;F=q^318;a:do if(d){E=d+-1|0;G=(E&d|0)==0;if(!G)if(F>>>0<d>>>0)H=F;else H=(F>>>0)%(d>>>0)|0;else H=E&F;J=f[g>>2]|0;K=f[J+(H<<2)>>2]|0;b:do if(K|0?(L=f[K>>2]|0,L|0):0){c:do if(G){M=L;while(1){N=f[M+4>>2]|0;O=(N|0)==(F|0);if(!(O|(N&E|0)==(H|0)))break b;if(O?(f[M+8>>2]|0)==(q|0):0){P=M;break c}M=f[M>>2]|0;if(!M)break b}}else{M=L;while(1){O=f[M+4>>2]|0;if((O|0)==(F|0)){if((f[M+8>>2]|0)==(q|0)){P=M;break c}}else{if(O>>>0<d>>>0)Q=O;else Q=(O>>>0)%(d>>>0)|0;if((Q|0)!=(H|0))break b}M=f[M>>2]|0;if(!M)break b}}while(0);f[D+(z<<2)>>2]=f[P+12>>2];R=y;S=A;T=C;U=B;V=D;break a}while(0);if(!G)if(F>>>0<d>>>0)X=F;else X=(F>>>0)%(d>>>0)|0;else X=E&F;K=f[J+(X<<2)>>2]|0;if(!K){Y=X;Z=d;_=0;aa=40}else{if(G){L=K;while(1){L=f[L>>2]|0;if(!L){Y=X;Z=d;_=0;aa=40;break a}M=f[L+4>>2]|0;if(!((M|0)==(F|0)|(M&E|0)==(X|0))){Y=X;Z=d;_=0;aa=40;break a}if((f[L+8>>2]|0)==(q|0)){aa=55;break a}}}else ba=K;while(1){ba=f[ba>>2]|0;if(!ba){Y=X;Z=d;_=0;aa=40;break a}L=f[ba+4>>2]|0;if((L|0)!=(F|0)){if(L>>>0<d>>>0)ca=L;else ca=(L>>>0)%(d>>>0)|0;if((ca|0)!=(X|0)){Y=X;Z=d;_=0;aa=40;break a}}if((f[ba+8>>2]|0)==(q|0)){aa=55;break}}}}else{Y=0;Z=0;_=1;aa=40}while(0);if((aa|0)==40){aa=0;K=ln(16)|0;f[K+8>>2]=q;f[K+12>>2]=A;f[K+4>>2]=F;f[K>>2]=0;da=$(((f[s>>2]|0)+1|0)>>>0);ea=$(Z>>>0);fa=$(n[k>>2]);do if(_|$(fa*ea)<da){L=Z<<1|(Z>>>0<3|(Z+-1&Z|0)!=0)&1;E=~~$(W($(da/fa)))>>>0;Hi(g,L>>>0<E>>>0?E:L);L=f[m>>2]|0;E=L+-1|0;if(!(E&L)){ga=L;ha=E&F;break}if(F>>>0<L>>>0){ga=L;ha=F}else{ga=L;ha=(F>>>0)%(L>>>0)|0}}else{ga=Z;ha=Y}while(0);F=(f[g>>2]|0)+(ha<<2)|0;q=f[F>>2]|0;if(!q){f[K>>2]=f[t>>2];f[t>>2]=K;f[F>>2]=t;F=f[K>>2]|0;if(F|0){L=f[F+4>>2]|0;F=ga+-1|0;if(F&ga)if(L>>>0<ga>>>0)ia=L;else ia=(L>>>0)%(ga>>>0)|0;else ia=L&F;ja=(f[g>>2]|0)+(ia<<2)|0;aa=53}}else{f[K>>2]=f[q>>2];ja=q;aa=53}if((aa|0)==53){aa=0;f[ja>>2]=K}f[s>>2]=(f[s>>2]|0)+1;aa=55}if((aa|0)==55){aa=0;q=v;F=f[q>>2]|0;L=un(F|0,f[q+4>>2]|0,A|0,0)|0;kh((f[f[w>>2]>>2]|0)+L|0,i|0,F|0)|0;F=f[j>>2]|0;f[F+(z<<2)>>2]=A;R=F;S=A+1|0;T=F;U=F;V=F}F=z+1|0;ka=f[l>>2]|0;if(F>>>0>=ka>>>0)break;d=f[m>>2]|0;y=R;z=F;A=S;B=U;C=T;D=V}if((S|0)==(ka|0))la=U;else{U=a+84|0;if(!(b[U>>0]|0)){V=f[a+72>>2]|0;D=f[a+68>>2]|0;C=D;if((V|0)==(D|0))ma=R;else{B=V-D>>2;D=0;do{V=C+(D<<2)|0;f[V>>2]=f[T+(f[V>>2]<<2)>>2];D=D+1|0}while(D>>>0<B>>>0);ma=R}}else{b[U>>0]=0;U=a+68|0;R=a+72|0;B=f[R>>2]|0;D=f[U>>2]|0;T=B-D>>2;C=D;D=B;if(ka>>>0<=T>>>0)if(ka>>>0<T>>>0?(B=C+(ka<<2)|0,(B|0)!=(D|0)):0){f[R>>2]=D+(~((D+-4-B|0)>>>2)<<2);na=ka}else na=ka;else{Ch(U,ka-T|0,1220);na=f[l>>2]|0}T=f[j>>2]|0;if(!na)ma=T;else{j=f[a+68>>2]|0;a=0;do{f[j+(a<<2)>>2]=f[T+(a<<2)>>2];a=a+1|0}while(a>>>0<na>>>0);ma=T}}f[l>>2]=S;la=ma}if(!la)oa=S;else{ma=f[o>>2]|0;if((ma|0)!=(la|0))f[o>>2]=ma+(~((ma+-4-la|0)>>>2)<<2);Oq(la);oa=S}}else oa=0;S=f[g+8>>2]|0;if(S|0){la=S;do{S=la;la=f[la>>2]|0;Oq(S)}while((la|0)!=0)}la=f[g>>2]|0;f[g>>2]=0;if(!la){u=e;return oa|0}Oq(la);u=e;return oa|0}function ic(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0,na=0,oa=0,pa=0,qa=0,ra=0,sa=0,ta=0;e=u;u=u+96|0;g=e+92|0;h=e+88|0;i=e+72|0;j=e+48|0;k=e+24|0;l=e;m=a+16|0;n=f[m>>2]|0;o=f[c>>2]|0;f[i>>2]=n;f[i+4>>2]=o;c=i+8|0;f[c>>2]=o;b[i+12>>0]=1;p=f[(f[n+28>>2]|0)+(o<<2)>>2]|0;n=a+20|0;q=f[n>>2]|0;r=f[q>>2]|0;if((f[q+4>>2]|0)-r>>2>>>0<=p>>>0)aq(q);q=a+8|0;s=f[(f[q>>2]|0)+(f[r+(p<<2)>>2]<<2)>>2]|0;p=a+4|0;r=f[p>>2]|0;if(!(b[r+84>>0]|0))t=f[(f[r+68>>2]|0)+(s<<2)>>2]|0;else t=s;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;f[j+12>>2]=0;f[j+16>>2]=0;f[j+20>>2]=0;f[h>>2]=t;t=b[r+24>>0]|0;f[g>>2]=f[h>>2];vb(r,g,t,j)|0;t=a+28|0;a=(f[t>>2]|0)==0;a:do if((o|0)!=-1){r=k+8|0;s=j+8|0;v=k+16|0;w=j+16|0;x=l+8|0;y=l+16|0;z=o;A=o;B=0;C=0;D=0;E=0;F=0;G=0;H=a;J=o;while(1){do if(H){K=J+1|0;if((J|0)!=-1){L=((K>>>0)%3|0|0)==0?J+-2|0:K;if((z|0)!=-1)if(!((z>>>0)%3|0)){M=z;N=z+2|0;O=L;P=z;break}else{M=z;N=z+-1|0;O=L;P=z;break}else{M=-1;N=-1;O=L;P=-1}}else{M=z;N=-1;O=-1;P=-1}}else{L=A+1|0;K=((L>>>0)%3|0|0)==0?A+-2|0:L;if(!((A>>>0)%3|0)){M=z;N=A+2|0;O=K;P=J;break}else{M=z;N=A+-1|0;O=K;P=J;break}}while(0);K=f[(f[(f[m>>2]|0)+28>>2]|0)+(O<<2)>>2]|0;Q=f[n>>2]|0;L=f[Q>>2]|0;if((f[Q+4>>2]|0)-L>>2>>>0<=K>>>0){R=17;break}S=f[(f[q>>2]|0)+(f[L+(K<<2)>>2]<<2)>>2]|0;K=f[p>>2]|0;if(!(b[K+84>>0]|0))T=f[(f[K+68>>2]|0)+(S<<2)>>2]|0;else T=S;f[k>>2]=0;f[k+4>>2]=0;f[k+8>>2]=0;f[k+12>>2]=0;f[k+16>>2]=0;f[k+20>>2]=0;f[h>>2]=T;S=b[K+24>>0]|0;f[g>>2]=f[h>>2];vb(K,g,S,k)|0;S=f[(f[(f[m>>2]|0)+28>>2]|0)+(N<<2)>>2]|0;U=f[n>>2]|0;K=f[U>>2]|0;if((f[U+4>>2]|0)-K>>2>>>0<=S>>>0){R=21;break}L=f[(f[q>>2]|0)+(f[K+(S<<2)>>2]<<2)>>2]|0;S=f[p>>2]|0;if(!(b[S+84>>0]|0))V=f[(f[S+68>>2]|0)+(L<<2)>>2]|0;else V=L;f[l>>2]=0;f[l+4>>2]=0;f[l+8>>2]=0;f[l+12>>2]=0;f[l+16>>2]=0;f[l+20>>2]=0;f[h>>2]=V;L=b[S+24>>0]|0;f[g>>2]=f[h>>2];vb(S,g,L,l)|0;L=k;S=j;K=f[S>>2]|0;W=f[S+4>>2]|0;S=Xn(f[L>>2]|0,f[L+4>>2]|0,K|0,W|0)|0;L=I;X=r;Y=s;Z=f[Y>>2]|0;_=f[Y+4>>2]|0;Y=Xn(f[X>>2]|0,f[X+4>>2]|0,Z|0,_|0)|0;X=I;$=v;aa=w;ba=f[aa>>2]|0;ca=f[aa+4>>2]|0;aa=Xn(f[$>>2]|0,f[$+4>>2]|0,ba|0,ca|0)|0;$=I;da=l;ea=Xn(f[da>>2]|0,f[da+4>>2]|0,K|0,W|0)|0;W=I;K=x;da=Xn(f[K>>2]|0,f[K+4>>2]|0,Z|0,_|0)|0;_=I;Z=y;K=Xn(f[Z>>2]|0,f[Z+4>>2]|0,ba|0,ca|0)|0;ca=I;ba=un(K|0,ca|0,Y|0,X|0)|0;Z=I;fa=un(da|0,_|0,aa|0,$|0)|0;ga=I;ha=un(ea|0,W|0,aa|0,$|0)|0;$=I;aa=un(K|0,ca|0,S|0,L|0)|0;ca=I;K=un(da|0,_|0,S|0,L|0)|0;L=I;S=un(ea|0,W|0,Y|0,X|0)|0;X=I;Y=Xn(B|0,C|0,fa|0,ga|0)|0;ga=Vn(Y|0,I|0,ba|0,Z|0)|0;Z=I;ba=Vn(ha|0,$|0,D|0,E|0)|0;$=Xn(ba|0,I|0,aa|0,ca|0)|0;ca=I;aa=Xn(F|0,G|0,S|0,X|0)|0;X=Vn(aa|0,I|0,K|0,L|0)|0;L=I;Pg(i);A=f[c>>2]|0;K=(f[t>>2]|0)==0;if((A|0)==-1){ia=K;ja=Z;ka=ga;la=ca;ma=$;na=L;oa=X;break a}else{z=M;B=ga;C=Z;D=$;E=ca;F=X;G=L;H=K;J=P}}if((R|0)==17)aq(Q);else if((R|0)==21)aq(U)}else{ia=a;ja=0;ka=0;la=0;ma=0;na=0;oa=0}while(0);a=(ja|0)>-1|(ja|0)==-1&ka>>>0>4294967295;U=Xn(0,0,ka|0,ja|0)|0;R=a?ja:I;Q=(la|0)>-1|(la|0)==-1&ma>>>0>4294967295;P=Xn(0,0,ma|0,la|0)|0;M=Q?la:I;t=(na|0)>-1|(na|0)==-1&oa>>>0>4294967295;c=Xn(0,0,oa|0,na|0)|0;i=Vn((Q?ma:P)|0,M|0,(t?oa:c)|0,(t?na:I)|0)|0;t=Vn(i|0,I|0,(a?ka:U)|0,R|0)|0;R=I;if(ia){if((t|0)<=536870912){pa=ka;qa=ma;ra=oa;f[d>>2]=pa;sa=d+4|0;f[sa>>2]=qa;ta=d+8|0;f[ta>>2]=ra;u=e;return}ia=Yn(t|0,R|0,29)|0;U=ia&7;ia=Ik(ka|0,ja|0,U|0,0)|0;a=Ik(ma|0,la|0,U|0,0)|0;i=Ik(oa|0,na|0,U|0,0)|0;pa=ia;qa=a;ra=i;f[d>>2]=pa;sa=d+4|0;f[sa>>2]=qa;ta=d+8|0;f[ta>>2]=ra;u=e;return}else{if(!((R|0)>0|(R|0)==0&t>>>0>536870912)){pa=ka;qa=ma;ra=oa;f[d>>2]=pa;sa=d+4|0;f[sa>>2]=qa;ta=d+8|0;f[ta>>2]=ra;u=e;return}i=Yn(t|0,R|0,29)|0;R=I;t=Ik(ka|0,ja|0,i|0,R|0)|0;ja=Ik(ma|0,la|0,i|0,R|0)|0;la=Ik(oa|0,na|0,i|0,R|0)|0;pa=t;qa=ja;ra=la;f[d>>2]=pa;sa=d+4|0;f[sa>>2]=qa;ta=d+8|0;f[ta>>2]=ra;u=e;return}}function jc(a,c,e){a=a|0;c=c|0;e=e|0;var g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=Oa,V=Oa,X=Oa,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0;g=u;u=u+48|0;i=g+28|0;j=g+8|0;k=g;l=g+16|0;m=i+16|0;f[i>>2]=0;f[i+4>>2]=0;f[i+8>>2]=0;f[i+12>>2]=0;n[m>>2]=$(1.0);o=a+80|0;p=f[o>>2]|0;f[l>>2]=0;q=l+4|0;f[q>>2]=0;f[l+8>>2]=0;if(p){if(p>>>0>1073741823)aq(l);r=p<<2;s=ln(r)|0;f[l>>2]=s;t=s+(p<<2)|0;f[l+8>>2]=t;sj(s|0,0,r|0)|0;f[q>>2]=t;t=f[e>>2]|0;e=c+48|0;r=c+40|0;s=i+4|0;p=i+12|0;v=i+8|0;w=a+40|0;x=a+64|0;y=0;z=0;while(1){A=e;B=f[A>>2]|0;C=f[A+4>>2]|0;A=r;D=un(f[A>>2]|0,f[A+4>>2]|0,t+y|0,0)|0;A=Vn(D|0,I|0,B|0,C|0)|0;C=(f[f[c>>2]>>2]|0)+A|0;A=C;B=h[A>>0]|h[A+1>>0]<<8|h[A+2>>0]<<16|h[A+3>>0]<<24;A=C+4|0;C=h[A>>0]|h[A+1>>0]<<8|h[A+2>>0]<<16|h[A+3>>0]<<24;A=j;f[A>>2]=B;f[A+4>>2]=C;A=k;f[A>>2]=B;f[A+4>>2]=C;C=yf(i,k)|0;if(!C){A=k;B=f[A>>2]|0;D=f[A+4>>2]|0;A=B&65535;E=Yn(B|0,D|0,16)|0;F=E&65535;G=D&65535;H=Yn(B|0,D|0,48)|0;J=H&65535;K=((((A^318)&65535)+239^E&65535)+239^D&65535)+239^H&65535;H=f[s>>2]|0;E=(H|0)==0;a:do if(!E){L=H+-1|0;M=(L&H|0)==0;if(!M)if(K>>>0<H>>>0)N=K;else N=(K>>>0)%(H>>>0)|0;else N=K&L;O=f[(f[i>>2]|0)+(N<<2)>>2]|0;if((O|0)!=0?(P=f[O>>2]|0,(P|0)!=0):0){if(M){M=P;while(1){O=f[M+4>>2]|0;if(!((O|0)==(K|0)|(O&L|0)==(N|0))){Q=N;R=31;break a}O=M+8|0;if((((d[O>>1]|0)==A<<16>>16?(d[O+2>>1]|0)==F<<16>>16:0)?(d[M+12>>1]|0)==G<<16>>16:0)?(d[O+6>>1]|0)==J<<16>>16:0)break a;M=f[M>>2]|0;if(!M){Q=N;R=31;break a}}}else S=P;while(1){M=f[S+4>>2]|0;if((M|0)!=(K|0)){if(M>>>0<H>>>0)T=M;else T=(M>>>0)%(H>>>0)|0;if((T|0)!=(N|0)){Q=N;R=31;break a}}M=S+8|0;if((((d[M>>1]|0)==A<<16>>16?(d[M+2>>1]|0)==F<<16>>16:0)?(d[S+12>>1]|0)==G<<16>>16:0)?(d[M+6>>1]|0)==J<<16>>16:0)break a;S=f[S>>2]|0;if(!S){Q=N;R=31;break}}}else{Q=N;R=31}}else{Q=0;R=31}while(0);if((R|0)==31){R=0;J=ln(20)|0;G=J+8|0;F=G;d[F>>1]=B;d[F+2>>1]=B>>>16;F=G+4|0;d[F>>1]=D;d[F+2>>1]=D>>>16;f[J+16>>2]=z;f[J+4>>2]=K;f[J>>2]=0;U=$(((f[p>>2]|0)+1|0)>>>0);V=$(H>>>0);X=$(n[m>>2]);do if(E|$(X*V)<U){F=H<<1|(H>>>0<3|(H+-1&H|0)!=0)&1;G=~~$(W($(U/X)))>>>0;Sh(i,F>>>0<G>>>0?G:F);F=f[s>>2]|0;G=F+-1|0;if(!(G&F)){Y=F;Z=G&K;break}if(K>>>0<F>>>0){Y=F;Z=K}else{Y=F;Z=(K>>>0)%(F>>>0)|0}}else{Y=H;Z=Q}while(0);H=(f[i>>2]|0)+(Z<<2)|0;K=f[H>>2]|0;if(!K){f[J>>2]=f[v>>2];f[v>>2]=J;f[H>>2]=v;H=f[J>>2]|0;if(H|0){E=f[H+4>>2]|0;H=Y+-1|0;if(H&Y)if(E>>>0<Y>>>0)_=E;else _=(E>>>0)%(Y>>>0)|0;else _=E&H;aa=(f[i>>2]|0)+(_<<2)|0;R=44}}else{f[J>>2]=f[K>>2];aa=K;R=44}if((R|0)==44){R=0;f[aa>>2]=J}f[p>>2]=(f[p>>2]|0)+1}K=w;H=f[K>>2]|0;E=un(H|0,f[K+4>>2]|0,z|0,0)|0;kh((f[f[x>>2]>>2]|0)+E|0,j|0,H|0)|0;H=f[l>>2]|0;f[H+(y<<2)>>2]=z;ba=z+1|0;ca=H}else{H=f[l>>2]|0;f[H+(y<<2)>>2]=f[C+16>>2];ba=z;ca=H}y=y+1|0;da=f[o>>2]|0;if(y>>>0>=da>>>0)break;else z=ba}if((ba|0)==(da|0))ea=ca;else{z=a+84|0;if(!(b[z>>0]|0)){y=f[a+72>>2]|0;j=f[a+68>>2]|0;x=j;if((y|0)==(j|0))fa=ca;else{w=y-j>>2;j=0;do{y=x+(j<<2)|0;f[y>>2]=f[ca+(f[y>>2]<<2)>>2];j=j+1|0}while(j>>>0<w>>>0);fa=ca}}else{b[z>>0]=0;z=a+68|0;ca=a+72|0;w=f[ca>>2]|0;j=f[z>>2]|0;x=w-j>>2;y=j;j=w;if(da>>>0<=x>>>0)if(da>>>0<x>>>0?(w=y+(da<<2)|0,(w|0)!=(j|0)):0){f[ca>>2]=j+(~((j+-4-w|0)>>>2)<<2);ga=da}else ga=da;else{Ch(z,da-x|0,1220);ga=f[o>>2]|0}x=f[l>>2]|0;if(!ga)fa=x;else{l=f[a+68>>2]|0;a=0;do{f[l+(a<<2)>>2]=f[x+(a<<2)>>2];a=a+1|0}while(a>>>0<ga>>>0);fa=x}}f[o>>2]=ba;ea=fa}if(!ea)ha=ba;else{fa=f[q>>2]|0;if((fa|0)!=(ea|0))f[q>>2]=fa+(~((fa+-4-ea|0)>>>2)<<2);Oq(ea);ha=ba}}else ha=0;ba=f[i+8>>2]|0;if(ba|0){ea=ba;do{ba=ea;ea=f[ea>>2]|0;Oq(ba)}while((ea|0)!=0)}ea=f[i>>2]|0;f[i>>2]=0;if(!ea){u=g;return ha|0}Oq(ea);u=g;return ha|0}function kc(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0;c=u;u=u+16|0;d=c+8|0;e=c;g=c+4|0;h=a+16|0;i=f[h>>2]|0;j=a+20|0;k=f[j>>2]|0;if((k|0)==(i|0))l=i;else{m=k+(~((k+-4-i|0)>>>2)<<2)|0;f[j>>2]=m;l=m}m=a+24|0;if((l|0)==(f[m>>2]|0)){Ri(h,b);n=f[h>>2]|0;o=f[j>>2]|0}else{f[l>>2]=f[b>>2];k=l+4|0;f[j>>2]=k;n=i;o=k}k=f[a+8>>2]|0;i=(f[k+100>>2]|0)-(f[k+96>>2]|0)|0;k=(i|0)/12|0;if((n|0)==(o|0)){u=c;return 1}n=a+28|0;l=(i|0)>0;i=a+164|0;p=a+12|0;q=a+76|0;r=a+80|0;s=a+72|0;t=a+152|0;v=a+84|0;w=a+272|0;x=a+276|0;y=a+268|0;z=a+168|0;A=a+140|0;B=a+120|0;C=o;do{o=f[C+-4>>2]|0;f[b>>2]=o;a:do if((o|0)!=-1?(D=(o>>>0)/3|0,E=f[n>>2]|0,(f[E+(D>>>5<<2)>>2]&1<<(D&31)|0)==0):0){if(l){D=0;F=E;b:while(1){E=D+1|0;f[i>>2]=(f[i>>2]|0)+1;G=f[b>>2]|0;H=(G|0)==-1?-1:(G>>>0)/3|0;G=F+(H>>>5<<2)|0;f[G>>2]=1<<(H&31)|f[G>>2];G=f[q>>2]|0;if((G|0)==(f[r>>2]|0))Ri(s,b);else{f[G>>2]=f[b>>2];f[q>>2]=G+4}G=f[b>>2]|0;if((G|0)==-1)I=-1;else I=f[(f[f[p>>2]>>2]|0)+(G<<2)>>2]|0;J=(f[(f[t>>2]|0)+(I<<2)>>2]|0)!=-1;K=(f[v>>2]|0)+(I>>>5<<2)|0;L=1<<(I&31);M=f[K>>2]|0;do if(!(M&L)){f[K>>2]=M|L;if(J){N=f[b>>2]|0;O=30;break}f[d>>2]=0;P=f[w>>2]|0;if((P|0)==(f[x>>2]|0))Ri(y,d);else{f[P>>2]=0;f[w>>2]=P+4}P=f[b>>2]|0;Q=P+1|0;if((P|0)!=-1?(R=((Q>>>0)%3|0|0)==0?P+-2|0:Q,(R|0)!=-1):0)S=f[(f[(f[p>>2]|0)+12>>2]|0)+(R<<2)>>2]|0;else S=-1;f[b>>2]=S}else{N=G;O=30}while(0);if((O|0)==30){O=0;G=N+1|0;if((N|0)==-1){O=35;break}L=((G>>>0)%3|0|0)==0?N+-2|0:G;if((L|0)==-1)T=-1;else T=f[(f[(f[p>>2]|0)+12>>2]|0)+(L<<2)>>2]|0;f[e>>2]=T;L=(((N>>>0)%3|0|0)==0?2:-1)+N|0;if((L|0)==-1)U=-1;else U=f[(f[(f[p>>2]|0)+12>>2]|0)+(L<<2)>>2]|0;L=(T|0)==-1;M=L?-1:(T>>>0)/3|0;V=(U|0)==-1;W=V?-1:(U>>>0)/3|0;K=((G>>>0)%3|0|0)==0?N+-2|0:G;if(((K|0)!=-1?(G=f[(f[p>>2]|0)+12>>2]|0,R=f[G+(K<<2)>>2]|0,(R|0)!=-1):0)?(K=(R>>>0)/3|0,R=f[n>>2]|0,(f[R+(K>>>5<<2)>>2]&1<<(K&31)|0)==0):0){K=(((N>>>0)%3|0|0)==0?2:-1)+N|0;do if((K|0)!=-1){Q=f[G+(K<<2)>>2]|0;if((Q|0)==-1)break;P=(Q>>>0)/3|0;if(!(f[R+(P>>>5<<2)>>2]&1<<(P&31))){O=63;break b}}while(0);if(!V)xf(a,f[i>>2]|0,H,0,W);f[d>>2]=3;R=f[w>>2]|0;if((R|0)==(f[x>>2]|0))Ri(y,d);else{f[R>>2]=3;f[w>>2]=R+4}X=f[e>>2]|0}else{if(!L){xf(a,f[i>>2]|0,H,1,M);R=f[b>>2]|0;if((R|0)==-1){O=44;break}else Y=R}else Y=N;R=(((Y>>>0)%3|0|0)==0?2:-1)+Y|0;if((R|0)==-1){O=44;break}K=f[(f[(f[p>>2]|0)+12>>2]|0)+(R<<2)>>2]|0;if((K|0)==-1){O=44;break}R=(K>>>0)/3|0;if(f[(f[n>>2]|0)+(R>>>5<<2)>>2]&1<<(R&31)|0){O=44;break}f[d>>2]=5;R=f[w>>2]|0;if((R|0)==(f[x>>2]|0))Ri(y,d);else{f[R>>2]=5;f[w>>2]=R+4}X=U}f[b>>2]=X}if((E|0)>=(k|0))break a;D=E;F=f[n>>2]|0}do if((O|0)==35){O=0;f[e>>2]=-1;O=46}else if((O|0)==44){O=0;if(V)O=46;else{xf(a,f[i>>2]|0,H,0,W);O=46}}else if((O|0)==63){O=0;f[d>>2]=1;F=f[w>>2]|0;if((F|0)==(f[x>>2]|0))Ri(y,d);else{f[F>>2]=1;f[w>>2]=F+4}f[z>>2]=(f[z>>2]|0)+1;if(J?(F=f[(f[t>>2]|0)+(I<<2)>>2]|0,(1<<(F&31)&f[(f[A>>2]|0)+(F>>>5<<2)>>2]|0)==0):0){f[g>>2]=f[b>>2];f[d>>2]=f[g>>2];Pe(a,d,0)|0}F=f[i>>2]|0;f[d>>2]=H;D=je(B,d)|0;f[D>>2]=F;F=f[j>>2]|0;f[F+-4>>2]=U;if((F|0)==(f[m>>2]|0)){Ri(h,e);break}else{f[F>>2]=f[e>>2];f[j>>2]=F+4;break}}while(0);if((O|0)==46){O=0;f[d>>2]=7;F=f[w>>2]|0;if((F|0)==(f[x>>2]|0))Ri(y,d);else{f[F>>2]=7;f[w>>2]=F+4}f[j>>2]=(f[j>>2]|0)+-4}}}else O=11;while(0);if((O|0)==11){O=0;f[j>>2]=C+-4}C=f[j>>2]|0}while((f[h>>2]|0)!=(C|0));u=c;return 1}function lc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=Oa,V=Oa,X=Oa,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0;e=u;u=u+48|0;g=e+20|0;i=e+16|0;j=e+12|0;k=e;l=g+16|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;f[g+12>>2]=0;n[l>>2]=$(1.0);m=a+80|0;o=f[m>>2]|0;f[k>>2]=0;p=k+4|0;f[p>>2]=0;f[k+8>>2]=0;if(o){if(o>>>0>1073741823)aq(k);q=o<<2;r=ln(q)|0;f[k>>2]=r;s=r+(o<<2)|0;f[k+8>>2]=s;sj(r|0,0,q|0)|0;f[p>>2]=s;s=f[d>>2]|0;d=c+48|0;q=c+40|0;r=g+4|0;o=g+12|0;t=g+8|0;v=a+40|0;w=a+64|0;x=0;y=0;while(1){z=d;A=f[z>>2]|0;B=f[z+4>>2]|0;z=q;C=un(f[z>>2]|0,f[z+4>>2]|0,s+x|0,0)|0;z=Vn(C|0,I|0,A|0,B|0)|0;B=(f[f[c>>2]>>2]|0)+z|0;z=h[B>>0]|h[B+1>>0]<<8|h[B+2>>0]<<16|h[B+3>>0]<<24;f[i>>2]=z;f[j>>2]=z;z=Ef(g,j)|0;if(!z){B=f[j>>2]|0;A=B&255;C=B>>>8;D=C&255;E=B>>>16;F=E&255;G=B>>>24;H=G&255;J=C&255;C=E&255;E=(((B&255^318)+239^J)+239^C)+239^G;G=f[r>>2]|0;K=(G|0)==0;a:do if(!K){L=G+-1|0;M=(L&G|0)==0;if(!M)if(E>>>0<G>>>0)N=E;else N=(E>>>0)%(G>>>0)|0;else N=E&L;O=f[(f[g>>2]|0)+(N<<2)>>2]|0;if((O|0)!=0?(P=f[O>>2]|0,(P|0)!=0):0){if(M){M=P;while(1){O=f[M+4>>2]|0;if(!((O|0)==(E|0)|(O&L|0)==(N|0))){Q=N;R=31;break a}O=M+8|0;if((((b[O>>0]|0)==A<<24>>24?(b[O+1>>0]|0)==D<<24>>24:0)?(b[O+2>>0]|0)==F<<24>>24:0)?(b[O+3>>0]|0)==H<<24>>24:0)break a;M=f[M>>2]|0;if(!M){Q=N;R=31;break a}}}else S=P;while(1){M=f[S+4>>2]|0;if((M|0)!=(E|0)){if(M>>>0<G>>>0)T=M;else T=(M>>>0)%(G>>>0)|0;if((T|0)!=(N|0)){Q=N;R=31;break a}}M=S+8|0;if((((b[M>>0]|0)==A<<24>>24?(b[M+1>>0]|0)==D<<24>>24:0)?(b[M+2>>0]|0)==F<<24>>24:0)?(b[M+3>>0]|0)==H<<24>>24:0)break a;S=f[S>>2]|0;if(!S){Q=N;R=31;break}}}else{Q=N;R=31}}else{Q=0;R=31}while(0);if((R|0)==31){R=0;H=ln(16)|0;F=H+8|0;D=B&-16776961|C<<16|J<<8;b[F>>0]=D;b[F+1>>0]=D>>8;b[F+2>>0]=D>>16;b[F+3>>0]=D>>24;f[H+12>>2]=y;f[H+4>>2]=E;f[H>>2]=0;U=$(((f[o>>2]|0)+1|0)>>>0);V=$(G>>>0);X=$(n[l>>2]);do if(K|$(X*V)<U){D=G<<1|(G>>>0<3|(G+-1&G|0)!=0)&1;F=~~$(W($(U/X)))>>>0;Zh(g,D>>>0<F>>>0?F:D);D=f[r>>2]|0;F=D+-1|0;if(!(F&D)){Y=D;Z=F&E;break}if(E>>>0<D>>>0){Y=D;Z=E}else{Y=D;Z=(E>>>0)%(D>>>0)|0}}else{Y=G;Z=Q}while(0);G=(f[g>>2]|0)+(Z<<2)|0;E=f[G>>2]|0;if(!E){f[H>>2]=f[t>>2];f[t>>2]=H;f[G>>2]=t;G=f[H>>2]|0;if(G|0){K=f[G+4>>2]|0;G=Y+-1|0;if(G&Y)if(K>>>0<Y>>>0)_=K;else _=(K>>>0)%(Y>>>0)|0;else _=K&G;aa=(f[g>>2]|0)+(_<<2)|0;R=44}}else{f[H>>2]=f[E>>2];aa=E;R=44}if((R|0)==44){R=0;f[aa>>2]=H}f[o>>2]=(f[o>>2]|0)+1}E=v;G=f[E>>2]|0;K=un(G|0,f[E+4>>2]|0,y|0,0)|0;kh((f[f[w>>2]>>2]|0)+K|0,i|0,G|0)|0;G=f[k>>2]|0;f[G+(x<<2)>>2]=y;ba=y+1|0;ca=G}else{G=f[k>>2]|0;f[G+(x<<2)>>2]=f[z+12>>2];ba=y;ca=G}x=x+1|0;da=f[m>>2]|0;if(x>>>0>=da>>>0)break;else y=ba}if((ba|0)==(da|0))ea=ca;else{y=a+84|0;if(!(b[y>>0]|0)){x=f[a+72>>2]|0;i=f[a+68>>2]|0;w=i;if((x|0)==(i|0))fa=ca;else{v=x-i>>2;i=0;do{x=w+(i<<2)|0;f[x>>2]=f[ca+(f[x>>2]<<2)>>2];i=i+1|0}while(i>>>0<v>>>0);fa=ca}}else{b[y>>0]=0;y=a+68|0;ca=a+72|0;v=f[ca>>2]|0;i=f[y>>2]|0;w=v-i>>2;x=i;i=v;if(da>>>0<=w>>>0)if(da>>>0<w>>>0?(v=x+(da<<2)|0,(v|0)!=(i|0)):0){f[ca>>2]=i+(~((i+-4-v|0)>>>2)<<2);ga=da}else ga=da;else{Ch(y,da-w|0,1220);ga=f[m>>2]|0}w=f[k>>2]|0;if(!ga)fa=w;else{k=f[a+68>>2]|0;a=0;do{f[k+(a<<2)>>2]=f[w+(a<<2)>>2];a=a+1|0}while(a>>>0<ga>>>0);fa=w}}f[m>>2]=ba;ea=fa}if(!ea)ha=ba;else{fa=f[p>>2]|0;if((fa|0)!=(ea|0))f[p>>2]=fa+(~((fa+-4-ea|0)>>>2)<<2);Oq(ea);ha=ba}}else ha=0;ba=f[g+8>>2]|0;if(ba|0){ea=ba;do{ba=ea;ea=f[ea>>2]|0;Oq(ba)}while((ea|0)!=0)}ea=f[g>>2]|0;f[g>>2]=0;if(!ea){u=e;return ha|0}Oq(ea);u=e;return ha|0}function mc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=Oa,V=Oa,X=Oa,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0;e=u;u=u+80|0;g=e+48|0;h=e+32|0;i=e+16|0;j=e;k=g+16|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;f[g+12>>2]=0;n[k>>2]=$(1.0);l=a+80|0;m=f[l>>2]|0;f[j>>2]=0;o=j+4|0;f[o>>2]=0;f[j+8>>2]=0;if(m){if(m>>>0>1073741823)aq(j);p=m<<2;q=ln(p)|0;f[j>>2]=q;r=q+(m<<2)|0;f[j+8>>2]=r;sj(q|0,0,p|0)|0;f[o>>2]=r;r=f[d>>2]|0;d=c+48|0;p=c+40|0;q=i+4|0;m=i+8|0;s=i+12|0;t=g+4|0;v=g+12|0;w=g+8|0;x=a+40|0;y=a+64|0;z=0;A=0;while(1){B=d;C=f[B>>2]|0;D=f[B+4>>2]|0;B=p;E=un(f[B>>2]|0,f[B+4>>2]|0,r+A|0,0)|0;B=Vn(E|0,I|0,C|0,D|0)|0;D=(f[f[c>>2]>>2]|0)+B|0;B=h;C=D;E=B+16|0;do{b[B>>0]=b[C>>0]|0;B=B+1|0;C=C+1|0}while((B|0)<(E|0));im(i|0,D|0,16)|0;C=Vf(g,i)|0;if(!C){B=f[i>>2]|0;E=f[q>>2]|0;F=f[m>>2]|0;G=f[s>>2]|0;H=(((B^318)+239^E)+239^F)+239^G;J=f[t>>2]|0;K=(J|0)==0;a:do if(!K){L=J+-1|0;M=(L&J|0)==0;if(!M)if(H>>>0<J>>>0)N=H;else N=(H>>>0)%(J>>>0)|0;else N=H&L;O=f[(f[g>>2]|0)+(N<<2)>>2]|0;if((O|0)!=0?(P=f[O>>2]|0,(P|0)!=0):0){if(M){M=P;while(1){O=f[M+4>>2]|0;if(!((O|0)==(H|0)|(O&L|0)==(N|0))){Q=N;R=31;break a}if((((f[M+8>>2]|0)==(B|0)?(f[M+12>>2]|0)==(E|0):0)?(f[M+16>>2]|0)==(F|0):0)?(f[M+20>>2]|0)==(G|0):0)break a;M=f[M>>2]|0;if(!M){Q=N;R=31;break a}}}else S=P;while(1){M=f[S+4>>2]|0;if((M|0)!=(H|0)){if(M>>>0<J>>>0)T=M;else T=(M>>>0)%(J>>>0)|0;if((T|0)!=(N|0)){Q=N;R=31;break a}}if((((f[S+8>>2]|0)==(B|0)?(f[S+12>>2]|0)==(E|0):0)?(f[S+16>>2]|0)==(F|0):0)?(f[S+20>>2]|0)==(G|0):0)break a;S=f[S>>2]|0;if(!S){Q=N;R=31;break}}}else{Q=N;R=31}}else{Q=0;R=31}while(0);if((R|0)==31){R=0;D=ln(28)|0;f[D+8>>2]=B;f[D+12>>2]=E;f[D+16>>2]=F;f[D+20>>2]=G;f[D+24>>2]=z;f[D+4>>2]=H;f[D>>2]=0;U=$(((f[v>>2]|0)+1|0)>>>0);V=$(J>>>0);X=$(n[k>>2]);do if(K|$(X*V)<U){P=J<<1|(J>>>0<3|(J+-1&J|0)!=0)&1;M=~~$(W($(U/X)))>>>0;Wh(g,P>>>0<M>>>0?M:P);P=f[t>>2]|0;M=P+-1|0;if(!(M&P)){Y=P;Z=M&H;break}if(H>>>0<P>>>0){Y=P;Z=H}else{Y=P;Z=(H>>>0)%(P>>>0)|0}}else{Y=J;Z=Q}while(0);J=(f[g>>2]|0)+(Z<<2)|0;H=f[J>>2]|0;if(!H){f[D>>2]=f[w>>2];f[w>>2]=D;f[J>>2]=w;J=f[D>>2]|0;if(J|0){K=f[J+4>>2]|0;J=Y+-1|0;if(J&Y)if(K>>>0<Y>>>0)_=K;else _=(K>>>0)%(Y>>>0)|0;else _=K&J;aa=(f[g>>2]|0)+(_<<2)|0;R=44}}else{f[D>>2]=f[H>>2];aa=H;R=44}if((R|0)==44){R=0;f[aa>>2]=D}f[v>>2]=(f[v>>2]|0)+1}H=x;J=f[H>>2]|0;K=un(J|0,f[H+4>>2]|0,z|0,0)|0;kh((f[f[y>>2]>>2]|0)+K|0,h|0,J|0)|0;J=f[j>>2]|0;f[J+(A<<2)>>2]=z;ba=z+1|0;ca=J}else{J=f[j>>2]|0;f[J+(A<<2)>>2]=f[C+24>>2];ba=z;ca=J}A=A+1|0;da=f[l>>2]|0;if(A>>>0>=da>>>0)break;else z=ba}if((ba|0)==(da|0))ea=ca;else{z=a+84|0;if(!(b[z>>0]|0)){A=f[a+72>>2]|0;h=f[a+68>>2]|0;y=h;if((A|0)==(h|0))fa=ca;else{x=A-h>>2;h=0;do{A=y+(h<<2)|0;f[A>>2]=f[ca+(f[A>>2]<<2)>>2];h=h+1|0}while(h>>>0<x>>>0);fa=ca}}else{b[z>>0]=0;z=a+68|0;ca=a+72|0;x=f[ca>>2]|0;h=f[z>>2]|0;y=x-h>>2;A=h;h=x;if(da>>>0<=y>>>0)if(da>>>0<y>>>0?(x=A+(da<<2)|0,(x|0)!=(h|0)):0){f[ca>>2]=h+(~((h+-4-x|0)>>>2)<<2);ga=da}else ga=da;else{Ch(z,da-y|0,1220);ga=f[l>>2]|0}y=f[j>>2]|0;if(!ga)fa=y;else{j=f[a+68>>2]|0;a=0;do{f[j+(a<<2)>>2]=f[y+(a<<2)>>2];a=a+1|0}while(a>>>0<ga>>>0);fa=y}}f[l>>2]=ba;ea=fa}if(!ea)ha=ba;else{fa=f[o>>2]|0;if((fa|0)!=(ea|0))f[o>>2]=fa+(~((fa+-4-ea|0)>>>2)<<2);Oq(ea);ha=ba}}else ha=0;ba=f[g+8>>2]|0;if(ba|0){ea=ba;do{ba=ea;ea=f[ea>>2]|0;Oq(ba)}while((ea|0)!=0)}ea=f[g>>2]|0;f[g>>2]=0;if(!ea){u=e;return ha|0}Oq(ea);u=e;return ha|0}function nc(a,c,e){a=a|0;c=c|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=Oa,T=Oa,U=Oa,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0;g=u;u=u+48|0;h=g+12|0;i=g+38|0;j=g+32|0;k=g;l=h+16|0;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;f[h+12>>2]=0;n[l>>2]=$(1.0);m=a+80|0;o=f[m>>2]|0;f[k>>2]=0;p=k+4|0;f[p>>2]=0;f[k+8>>2]=0;if(o){if(o>>>0>1073741823)aq(k);q=o<<2;r=ln(q)|0;f[k>>2]=r;s=r+(o<<2)|0;f[k+8>>2]=s;sj(r|0,0,q|0)|0;f[p>>2]=s;s=f[e>>2]|0;e=c+48|0;q=c+40|0;r=j+2|0;o=j+4|0;t=h+4|0;v=h+12|0;w=h+8|0;x=a+40|0;y=a+64|0;z=0;A=0;while(1){B=e;C=f[B>>2]|0;D=f[B+4>>2]|0;B=q;E=un(f[B>>2]|0,f[B+4>>2]|0,s+A|0,0)|0;B=Vn(E|0,I|0,C|0,D|0)|0;D=(f[f[c>>2]>>2]|0)+B|0;b[i>>0]=b[D>>0]|0;b[i+1>>0]=b[D+1>>0]|0;b[i+2>>0]=b[D+2>>0]|0;b[i+3>>0]=b[D+3>>0]|0;b[i+4>>0]=b[D+4>>0]|0;b[i+5>>0]=b[D+5>>0]|0;im(j|0,D|0,6)|0;D=dg(h,j)|0;if(!D){B=d[j>>1]|0;C=d[r>>1]|0;E=d[o>>1]|0;F=(((B^318)&65535)+239^C&65535)+239^E&65535;G=f[t>>2]|0;H=(G|0)==0;a:do if(!H){J=G+-1|0;K=(J&G|0)==0;if(!K)if(F>>>0<G>>>0)L=F;else L=(F>>>0)%(G>>>0)|0;else L=F&J;M=f[(f[h>>2]|0)+(L<<2)>>2]|0;if((M|0)!=0?(N=f[M>>2]|0,(N|0)!=0):0){if(K){K=N;while(1){M=f[K+4>>2]|0;if(!((M|0)==(F|0)|(M&J|0)==(L|0))){O=L;P=29;break a}M=K+8|0;if(((d[M>>1]|0)==B<<16>>16?(d[M+2>>1]|0)==C<<16>>16:0)?(d[K+12>>1]|0)==E<<16>>16:0)break a;K=f[K>>2]|0;if(!K){O=L;P=29;break a}}}else Q=N;while(1){K=f[Q+4>>2]|0;if((K|0)!=(F|0)){if(K>>>0<G>>>0)R=K;else R=(K>>>0)%(G>>>0)|0;if((R|0)!=(L|0)){O=L;P=29;break a}}K=Q+8|0;if(((d[K>>1]|0)==B<<16>>16?(d[K+2>>1]|0)==C<<16>>16:0)?(d[Q+12>>1]|0)==E<<16>>16:0)break a;Q=f[Q>>2]|0;if(!Q){O=L;P=29;break}}}else{O=L;P=29}}else{O=0;P=29}while(0);if((P|0)==29){P=0;N=ln(20)|0;d[N+8>>1]=B;d[N+10>>1]=C;d[N+12>>1]=E;f[N+16>>2]=z;f[N+4>>2]=F;f[N>>2]=0;S=$(((f[v>>2]|0)+1|0)>>>0);T=$(G>>>0);U=$(n[l>>2]);do if(H|$(U*T)<S){K=G<<1|(G>>>0<3|(G+-1&G|0)!=0)&1;J=~~$(W($(S/U)))>>>0;Th(h,K>>>0<J>>>0?J:K);K=f[t>>2]|0;J=K+-1|0;if(!(J&K)){V=K;X=J&F;break}if(F>>>0<K>>>0){V=K;X=F}else{V=K;X=(F>>>0)%(K>>>0)|0}}else{V=G;X=O}while(0);G=(f[h>>2]|0)+(X<<2)|0;F=f[G>>2]|0;if(!F){f[N>>2]=f[w>>2];f[w>>2]=N;f[G>>2]=w;G=f[N>>2]|0;if(G|0){H=f[G+4>>2]|0;G=V+-1|0;if(G&V)if(H>>>0<V>>>0)Y=H;else Y=(H>>>0)%(V>>>0)|0;else Y=H&G;Z=(f[h>>2]|0)+(Y<<2)|0;P=42}}else{f[N>>2]=f[F>>2];Z=F;P=42}if((P|0)==42){P=0;f[Z>>2]=N}f[v>>2]=(f[v>>2]|0)+1}F=x;G=f[F>>2]|0;H=un(G|0,f[F+4>>2]|0,z|0,0)|0;kh((f[f[y>>2]>>2]|0)+H|0,i|0,G|0)|0;G=f[k>>2]|0;f[G+(A<<2)>>2]=z;_=z+1|0;aa=G}else{G=f[k>>2]|0;f[G+(A<<2)>>2]=f[D+16>>2];_=z;aa=G}A=A+1|0;ba=f[m>>2]|0;if(A>>>0>=ba>>>0)break;else z=_}if((_|0)==(ba|0))ca=aa;else{z=a+84|0;if(!(b[z>>0]|0)){A=f[a+72>>2]|0;i=f[a+68>>2]|0;y=i;if((A|0)==(i|0))da=aa;else{x=A-i>>2;i=0;do{A=y+(i<<2)|0;f[A>>2]=f[aa+(f[A>>2]<<2)>>2];i=i+1|0}while(i>>>0<x>>>0);da=aa}}else{b[z>>0]=0;z=a+68|0;aa=a+72|0;x=f[aa>>2]|0;i=f[z>>2]|0;y=x-i>>2;A=i;i=x;if(ba>>>0<=y>>>0)if(ba>>>0<y>>>0?(x=A+(ba<<2)|0,(x|0)!=(i|0)):0){f[aa>>2]=i+(~((i+-4-x|0)>>>2)<<2);ea=ba}else ea=ba;else{Ch(z,ba-y|0,1220);ea=f[m>>2]|0}y=f[k>>2]|0;if(!ea)da=y;else{k=f[a+68>>2]|0;a=0;do{f[k+(a<<2)>>2]=f[y+(a<<2)>>2];a=a+1|0}while(a>>>0<ea>>>0);da=y}}f[m>>2]=_;ca=da}if(!ca)fa=_;else{da=f[p>>2]|0;if((da|0)!=(ca|0))f[p>>2]=da+(~((da+-4-ca|0)>>>2)<<2);Oq(ca);fa=_}}else fa=0;_=f[h+8>>2]|0;if(_|0){ca=_;do{_=ca;ca=f[ca>>2]|0;Oq(_)}while((ca|0)!=0)}ca=f[h>>2]|0;f[h>>2]=0;if(!ca){u=g;return fa|0}Oq(ca);u=g;return fa|0}function oc(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0,_=0;g=a+8|0;Mh(g,b,d,e);d=f[a+48>>2]|0;h=f[a+52>>2]|0;i=e>>>0>1073741823?-1:e<<2;j=Lq(i)|0;sj(j|0,0,i|0)|0;k=Lq(i)|0;sj(k|0,0,i|0)|0;i=f[a+56>>2]|0;l=i+4|0;m=f[l>>2]|0;n=f[i>>2]|0;o=m-n|0;a:do if((o|0)>4){p=o>>2;q=(e|0)>0;r=a+16|0;s=a+32|0;t=a+12|0;u=a+28|0;v=a+20|0;w=a+24|0;x=d+12|0;y=e<<2;z=p+-1|0;if(m-n>>2>>>0>z>>>0){A=p;B=z;C=n}else aq(i);while(1){z=f[C+(B<<2)>>2]|0;if(q)sj(j|0,0,y|0)|0;if((z|0)!=-1){p=f[x>>2]|0;D=0;E=z;while(1){F=f[p+(E<<2)>>2]|0;if((F|0)!=-1){G=f[d>>2]|0;H=f[h>>2]|0;I=f[H+(f[G+(F<<2)>>2]<<2)>>2]|0;J=F+1|0;K=((J>>>0)%3|0|0)==0?F+-2|0:J;if((K|0)==-1)L=-1;else L=f[G+(K<<2)>>2]|0;K=f[H+(L<<2)>>2]|0;J=(((F>>>0)%3|0|0)==0?2:-1)+F|0;if((J|0)==-1)M=-1;else M=f[G+(J<<2)>>2]|0;J=f[H+(M<<2)>>2]|0;if((I|0)<(B|0)&(K|0)<(B|0)&(J|0)<(B|0)){H=X(I,e)|0;I=X(K,e)|0;K=X(J,e)|0;if(q){J=0;do{f[k+(J<<2)>>2]=(f[b+(J+K<<2)>>2]|0)+(f[b+(J+I<<2)>>2]|0)-(f[b+(J+H<<2)>>2]|0);J=J+1|0}while((J|0)!=(e|0));if(q){J=0;do{H=j+(J<<2)|0;f[H>>2]=(f[H>>2]|0)+(f[k+(J<<2)>>2]|0);J=J+1|0}while((J|0)!=(e|0))}}N=D+1|0}else N=D}else N=D;J=(((E>>>0)%3|0|0)==0?2:-1)+E|0;do if((J|0)!=-1?(H=f[p+(J<<2)>>2]|0,(H|0)!=-1):0)if(!((H>>>0)%3|0)){O=H+2|0;break}else{O=H+-1|0;break}else O=-1;while(0);E=(O|0)==(z|0)?-1:O;if((E|0)==-1)break;else D=N}D=X(B,e)|0;if(N){if(q){E=0;do{z=j+(E<<2)|0;f[z>>2]=(f[z>>2]|0)/(N|0)|0;E=E+1|0}while((E|0)!=(e|0))}E=b+(D<<2)|0;z=c+(D<<2)|0;p=f[g>>2]|0;if((p|0)>0){J=0;H=j;I=p;while(1){if((I|0)>0){p=0;do{K=f[H+(p<<2)>>2]|0;G=f[r>>2]|0;if((K|0)>(G|0)){F=f[s>>2]|0;f[F+(p<<2)>>2]=G;P=F}else{F=f[t>>2]|0;G=f[s>>2]|0;f[G+(p<<2)>>2]=(K|0)<(F|0)?F:K;P=G}p=p+1|0}while((p|0)<(f[g>>2]|0));Q=P}else Q=f[s>>2]|0;p=(f[E+(J<<2)>>2]|0)-(f[Q+(J<<2)>>2]|0)|0;G=z+(J<<2)|0;f[G>>2]=p;if((p|0)>=(f[u>>2]|0)){if((p|0)>(f[w>>2]|0)){R=p-(f[v>>2]|0)|0;S=57}}else{R=(f[v>>2]|0)+p|0;S=57}if((S|0)==57){S=0;f[G>>2]=R}J=J+1|0;I=f[g>>2]|0;if((J|0)>=(I|0))break;else H=Q}}}else{T=D;S=30}}else{T=X(B,e)|0;S=30}if((S|0)==30?(S=0,H=b+(T<<2)|0,I=c+(T<<2)|0,J=f[g>>2]|0,(J|0)>0):0){z=0;E=b+((X(A+-2|0,e)|0)<<2)|0;G=J;while(1){if((G|0)>0){J=0;do{p=f[E+(J<<2)>>2]|0;K=f[r>>2]|0;if((p|0)>(K|0)){F=f[s>>2]|0;f[F+(J<<2)>>2]=K;U=F}else{F=f[t>>2]|0;K=f[s>>2]|0;f[K+(J<<2)>>2]=(p|0)<(F|0)?F:p;U=K}J=J+1|0}while((J|0)<(f[g>>2]|0));V=U}else V=f[s>>2]|0;J=(f[H+(z<<2)>>2]|0)-(f[V+(z<<2)>>2]|0)|0;K=I+(z<<2)|0;f[K>>2]=J;if((J|0)>=(f[u>>2]|0)){if((J|0)>(f[w>>2]|0)){W=J-(f[v>>2]|0)|0;S=42}}else{W=(f[v>>2]|0)+J|0;S=42}if((S|0)==42){S=0;f[K>>2]=W}z=z+1|0;G=f[g>>2]|0;if((z|0)>=(G|0))break;else E=V}}if((A|0)<=2)break a;C=f[i>>2]|0;E=B+-1|0;if((f[l>>2]|0)-C>>2>>>0<=E>>>0)break;else{G=B;B=E;A=G}}aq(i)}while(0);if((e|0)>0)sj(j|0,0,e<<2|0)|0;e=f[g>>2]|0;if((e|0)<=0){Mq(k);Mq(j);return 1}i=a+16|0;A=a+32|0;B=a+12|0;C=a+28|0;l=a+20|0;V=a+24|0;a=0;W=j;U=e;while(1){if((U|0)>0){e=0;do{T=f[W+(e<<2)>>2]|0;Q=f[i>>2]|0;if((T|0)>(Q|0)){R=f[A>>2]|0;f[R+(e<<2)>>2]=Q;Y=R}else{R=f[B>>2]|0;Q=f[A>>2]|0;f[Q+(e<<2)>>2]=(T|0)<(R|0)?R:T;Y=Q}e=e+1|0}while((e|0)<(f[g>>2]|0));Z=Y}else Z=f[A>>2]|0;e=(f[b+(a<<2)>>2]|0)-(f[Z+(a<<2)>>2]|0)|0;Q=c+(a<<2)|0;f[Q>>2]=e;if((e|0)>=(f[C>>2]|0)){if((e|0)>(f[V>>2]|0)){_=e-(f[l>>2]|0)|0;S=72}}else{_=(f[l>>2]|0)+e|0;S=72}if((S|0)==72){S=0;f[Q>>2]=_}a=a+1|0;U=f[g>>2]|0;if((a|0)>=(U|0))break;else W=Z}Mq(k);Mq(j);return 1}function pc(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,Y=0,Z=0;g=a+8|0;Mh(g,b,d,e);d=f[a+48>>2]|0;h=f[a+52>>2]|0;i=e>>>0>1073741823?-1:e<<2;j=Lq(i)|0;sj(j|0,0,i|0)|0;k=Lq(i)|0;sj(k|0,0,i|0)|0;i=f[a+56>>2]|0;l=i+4|0;m=f[l>>2]|0;n=f[i>>2]|0;o=m-n|0;a:do if((o|0)>4){p=o>>2;q=(e|0)>0;r=a+16|0;s=a+32|0;t=a+12|0;u=a+28|0;v=a+20|0;w=a+24|0;x=d+64|0;y=d+28|0;z=e<<2;A=p+-1|0;if(m-n>>2>>>0>A>>>0){B=p;C=A;D=n}else aq(i);while(1){A=f[D+(C<<2)>>2]|0;if(q)sj(j|0,0,z|0)|0;if((A|0)!=-1){p=f[d>>2]|0;E=0;F=A;while(1){if(((f[p+(F>>>5<<2)>>2]&1<<(F&31)|0)==0?(G=f[(f[(f[x>>2]|0)+12>>2]|0)+(F<<2)>>2]|0,(G|0)!=-1):0)?(H=f[y>>2]|0,I=f[h>>2]|0,J=f[I+(f[H+(G<<2)>>2]<<2)>>2]|0,K=G+1|0,L=f[I+(f[H+((((K>>>0)%3|0|0)==0?G+-2|0:K)<<2)>>2]<<2)>>2]|0,K=f[I+(f[H+((((G>>>0)%3|0|0)==0?2:-1)+G<<2)>>2]<<2)>>2]|0,(J|0)<(C|0)&(L|0)<(C|0)&(K|0)<(C|0)):0){G=X(J,e)|0;J=X(L,e)|0;L=X(K,e)|0;if(q){K=0;do{f[k+(K<<2)>>2]=(f[b+(K+L<<2)>>2]|0)+(f[b+(K+J<<2)>>2]|0)-(f[b+(K+G<<2)>>2]|0);K=K+1|0}while((K|0)!=(e|0));if(q){K=0;do{G=j+(K<<2)|0;f[G>>2]=(f[G>>2]|0)+(f[k+(K<<2)>>2]|0);K=K+1|0}while((K|0)!=(e|0))}}M=E+1|0}else M=E;K=(((F>>>0)%3|0|0)==0?2:-1)+F|0;do if(((K|0)!=-1?(f[p+(K>>>5<<2)>>2]&1<<(K&31)|0)==0:0)?(G=f[(f[(f[x>>2]|0)+12>>2]|0)+(K<<2)>>2]|0,(G|0)!=-1):0)if(!((G>>>0)%3|0)){N=G+2|0;break}else{N=G+-1|0;break}else N=-1;while(0);F=(N|0)==(A|0)?-1:N;if((F|0)==-1)break;else E=M}E=X(C,e)|0;if(M){if(q){F=0;do{A=j+(F<<2)|0;f[A>>2]=(f[A>>2]|0)/(M|0)|0;F=F+1|0}while((F|0)!=(e|0))}F=b+(E<<2)|0;A=c+(E<<2)|0;p=f[g>>2]|0;if((p|0)>0){K=0;G=j;J=p;while(1){if((J|0)>0){p=0;do{L=f[G+(p<<2)>>2]|0;H=f[r>>2]|0;if((L|0)>(H|0)){I=f[s>>2]|0;f[I+(p<<2)>>2]=H;O=I}else{I=f[t>>2]|0;H=f[s>>2]|0;f[H+(p<<2)>>2]=(L|0)<(I|0)?I:L;O=H}p=p+1|0}while((p|0)<(f[g>>2]|0));P=O}else P=f[s>>2]|0;p=(f[F+(K<<2)>>2]|0)-(f[P+(K<<2)>>2]|0)|0;H=A+(K<<2)|0;f[H>>2]=p;if((p|0)>=(f[u>>2]|0)){if((p|0)>(f[w>>2]|0)){Q=p-(f[v>>2]|0)|0;R=55}}else{Q=(f[v>>2]|0)+p|0;R=55}if((R|0)==55){R=0;f[H>>2]=Q}K=K+1|0;J=f[g>>2]|0;if((K|0)>=(J|0))break;else G=P}}}else{S=E;R=28}}else{S=X(C,e)|0;R=28}if((R|0)==28?(R=0,G=b+(S<<2)|0,J=c+(S<<2)|0,K=f[g>>2]|0,(K|0)>0):0){A=0;F=b+((X(B+-2|0,e)|0)<<2)|0;H=K;while(1){if((H|0)>0){K=0;do{p=f[F+(K<<2)>>2]|0;L=f[r>>2]|0;if((p|0)>(L|0)){I=f[s>>2]|0;f[I+(K<<2)>>2]=L;T=I}else{I=f[t>>2]|0;L=f[s>>2]|0;f[L+(K<<2)>>2]=(p|0)<(I|0)?I:p;T=L}K=K+1|0}while((K|0)<(f[g>>2]|0));U=T}else U=f[s>>2]|0;K=(f[G+(A<<2)>>2]|0)-(f[U+(A<<2)>>2]|0)|0;L=J+(A<<2)|0;f[L>>2]=K;if((K|0)>=(f[u>>2]|0)){if((K|0)>(f[w>>2]|0)){V=K-(f[v>>2]|0)|0;R=40}}else{V=(f[v>>2]|0)+K|0;R=40}if((R|0)==40){R=0;f[L>>2]=V}A=A+1|0;H=f[g>>2]|0;if((A|0)>=(H|0))break;else F=U}}if((B|0)<=2)break a;D=f[i>>2]|0;F=C+-1|0;if((f[l>>2]|0)-D>>2>>>0<=F>>>0)break;else{H=C;C=F;B=H}}aq(i)}while(0);if((e|0)>0)sj(j|0,0,e<<2|0)|0;e=f[g>>2]|0;if((e|0)<=0){Mq(k);Mq(j);return 1}i=a+16|0;B=a+32|0;C=a+12|0;D=a+28|0;l=a+20|0;U=a+24|0;a=0;V=j;T=e;while(1){if((T|0)>0){e=0;do{S=f[V+(e<<2)>>2]|0;P=f[i>>2]|0;if((S|0)>(P|0)){Q=f[B>>2]|0;f[Q+(e<<2)>>2]=P;W=Q}else{Q=f[C>>2]|0;P=f[B>>2]|0;f[P+(e<<2)>>2]=(S|0)<(Q|0)?Q:S;W=P}e=e+1|0}while((e|0)<(f[g>>2]|0));Y=W}else Y=f[B>>2]|0;e=(f[b+(a<<2)>>2]|0)-(f[Y+(a<<2)>>2]|0)|0;P=c+(a<<2)|0;f[P>>2]=e;if((e|0)>=(f[D>>2]|0)){if((e|0)>(f[U>>2]|0)){Z=e-(f[l>>2]|0)|0;R=70}}else{Z=(f[l>>2]|0)+e|0;R=70}if((R|0)==70){R=0;f[P>>2]=Z}a=a+1|0;T=f[g>>2]|0;if((a|0)>=(T|0))break;else V=Y}Mq(k);Mq(j);return 1}function qc(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0;e=u;u=u+64|0;d=e+48|0;h=e+40|0;i=e+32|0;j=e+16|0;k=e+8|0;l=e;m=e+28|0;n=a+8|0;o=f[n>>2]|0;if((o+-2|0)>>>0<=28){f[a+72>>2]=o;p=1<<o;f[a+76>>2]=p+-1;o=p+-2|0;f[a+80>>2]=o;f[a+84>>2]=(o|0)/2|0}o=a+40|0;f[a+48>>2]=g;g=a+88|0;tk(g);p=a+36|0;q=f[p>>2]|0;r=(f[q+4>>2]|0)-(f[q>>2]|0)|0;s=r>>2;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;t=k;f[t>>2]=0;f[t+4>>2]=0;t=l;f[t>>2]=0;f[t+4>>2]=0;if((r|0)<=0){u=e;return 1}r=j+4|0;t=j+8|0;v=a+84|0;w=a+80|0;x=h+4|0;y=i+4|0;z=d+4|0;A=k+4|0;B=h+4|0;C=i+4|0;D=d+4|0;E=l+4|0;F=a+76|0;a=k+4|0;G=l+4|0;H=f[q>>2]|0;if((f[q+4>>2]|0)==(H|0)){J=q;aq(J)}else{K=0;L=H}while(1){f[m>>2]=f[L+(K<<2)>>2];f[d>>2]=f[m>>2];ic(o,d,j);H=f[j>>2]|0;q=(H|0)>-1?H:0-H|0;M=f[r>>2]|0;N=(M|0)>-1?M:0-M|0;O=Vn(N|0,((N|0)<0)<<31>>31|0,q|0,((q|0)<0)<<31>>31|0)|0;q=f[t>>2]|0;N=(q|0)>-1;P=N?q:0-q|0;q=Vn(O|0,I|0,P|0,((P|0)<0)<<31>>31|0)|0;P=I;if((q|0)==0&(P|0)==0){O=f[v>>2]|0;Q=O;R=j;S=M;T=O}else{O=f[v>>2]|0;U=((O|0)<0)<<31>>31;V=un(O|0,U|0,H|0,((H|0)<0)<<31>>31|0)|0;H=Ik(V|0,I|0,q|0,P|0)|0;f[j>>2]=H;V=un(O|0,U|0,M|0,((M|0)<0)<<31>>31|0)|0;M=Ik(V|0,I|0,q|0,P|0)|0;f[r>>2]=M;P=O-((H|0)>-1?H:0-H|0)-((M|0)>-1?M:0-M|0)|0;Q=N?P:0-P|0;R=t;S=M;T=O}f[R>>2]=Q;O=f[j>>2]|0;do if((O|0)<=-1){if((S|0)<0){M=f[t>>2]|0;W=(M|0)>-1?M:0-M|0;X=M}else{M=f[t>>2]|0;W=(f[w>>2]|0)-((M|0)>-1?M:0-M|0)|0;X=M}if((X|0)<0){Y=(S|0)>-1?S:0-S|0;Z=W;_=X;break}else{Y=(f[w>>2]|0)-((S|0)>-1?S:0-S|0)|0;Z=W;_=X;break}}else{M=f[t>>2]|0;Y=M+T|0;Z=T+S|0;_=M}while(0);M=(Z|0)==0;P=(Y|0)==0;N=f[w>>2]|0;do if(Y|Z){H=(N|0)==(Y|0);if(!(M&H)){q=(N|0)==(Z|0);if(!(P&q)){if(M&(T|0)<(Y|0)){$=0;aa=(T<<1)-Y|0;break}if(q&(T|0)>(Y|0)){$=Z;aa=(T<<1)-Y|0;break}if(H&(T|0)>(Z|0)){$=(T<<1)-Z|0;aa=Y;break}if(P){$=(T|0)<(Z|0)?(T<<1)-Z|0:Z;aa=0}else{$=Z;aa=Y}}else{$=Z;aa=Z}}else{$=Y;aa=Y}}else{$=N;aa=N}while(0);P=0-S|0;M=0-_|0;f[j>>2]=0-O;f[r>>2]=P;f[t>>2]=M;if((O|0)<1){ba=T-_|0;ca=T-S|0}else{H=(_|0)<1?M:_;M=(S|0)<1?P:S;ba=(_|0)>0?M:N-M|0;ca=(S|0)>0?H:N-H|0}H=(ca|0)==0;M=(ba|0)==0;do if(((ba|ca|0)!=0?(P=(N|0)==(ba|0),!(H&P)):0)?(q=(N|0)==(ca|0),!(M&q)):0){if(H&(T|0)<(ba|0)){da=0;ea=(T<<1)-ba|0;break}if(q&(T|0)>(ba|0)){da=N;ea=(T<<1)-ba|0;break}if(P&(T|0)>(ca|0)){da=(T<<1)-ca|0;ea=N;break}if(M){da=(T|0)<(ca|0)?(T<<1)-ca|0:ca;ea=0}else{da=ca;ea=ba}}else{da=N;ea=N}while(0);N=K<<1;M=b+(N<<2)|0;H=M+4|0;O=f[H>>2]|0;f[h>>2]=f[M>>2];f[x>>2]=O;f[i>>2]=$;f[y>>2]=aa;Od(d,n,h,i);O=f[d>>2]|0;f[k>>2]=O;P=f[z>>2]|0;f[A>>2]=P;q=f[H>>2]|0;f[h>>2]=f[M>>2];f[B>>2]=q;f[i>>2]=da;f[C>>2]=ea;Od(d,n,h,i);q=f[d>>2]|0;f[l>>2]=q;M=f[D>>2]|0;f[E>>2]=M;H=f[v>>2]|0;if((H|0)>=(O|0))if((O|0)<(0-H|0))fa=(f[F>>2]|0)+O|0;else fa=O;else fa=O-(f[F>>2]|0)|0;f[k>>2]=fa;if((H|0)>=(P|0))if((P|0)<(0-H|0))ga=(f[F>>2]|0)+P|0;else ga=P;else ga=P-(f[F>>2]|0)|0;f[a>>2]=ga;if((H|0)>=(q|0))if((q|0)<(0-H|0))ha=(f[F>>2]|0)+q|0;else ha=q;else ha=q-(f[F>>2]|0)|0;f[l>>2]=ha;if((H|0)>=(M|0))if((M|0)<(0-H|0))ia=(f[F>>2]|0)+M|0;else ia=M;else ia=M-(f[F>>2]|0)|0;f[G>>2]=ia;if((((ga|0)>-1?ga:0-ga|0)+((fa|0)>-1?fa:0-fa|0)|0)<(((ha|0)>-1?ha:0-ha|0)+((ia|0)>-1?ia:0-ia|0)|0)){fj(g,0);ja=k}else{fj(g,1);ja=l}M=f[ja>>2]|0;if((M|0)<0)ka=(f[F>>2]|0)+M|0;else ka=M;M=c+(N<<2)|0;f[M>>2]=ka;N=f[ja+4>>2]|0;if((N|0)<0)la=(f[F>>2]|0)+N|0;else la=N;f[M+4>>2]=la;K=K+1|0;if((K|0)>=(s|0)){ma=5;break}M=f[p>>2]|0;L=f[M>>2]|0;if((f[M+4>>2]|0)-L>>2>>>0<=K>>>0){J=M;ma=6;break}}if((ma|0)==5){u=e;return 1}else if((ma|0)==6)aq(J);return 0}function rc(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0;c=u;u=u+48|0;d=c+24|0;e=c+12|0;g=c;if(!b){h=0;u=c;return h|0}i=a+12|0;j=a+4|0;k=f[j>>2]|0;l=f[a>>2]|0;m=k-l>>2;n=a+16|0;o=f[n>>2]|0;p=f[i>>2]|0;q=o-p>>2;r=p;p=o;if(m>>>0<=q>>>0)if(m>>>0<q>>>0?(o=r+(m<<2)|0,(o|0)!=(p|0)):0){f[n>>2]=p+(~((p+-4-o|0)>>>2)<<2);s=l;t=k}else{s=l;t=k}else{Ch(i,m-q|0,6140);s=f[a>>2]|0;t=f[j>>2]|0}f[d>>2]=0;q=d+4|0;f[q>>2]=0;f[d+8>>2]=0;gk(d,t-s>>2);s=f[j>>2]|0;t=f[a>>2]|0;if((s|0)==(t|0)){v=s;w=s}else{m=f[d>>2]|0;k=m;l=k;o=0;p=s;s=k;k=t;t=m;while(1){m=f[k+(o<<2)>>2]|0;n=f[q>>2]|0;if(m>>>0<n-t>>2>>>0){x=l;y=s;z=k;A=p}else{r=m+1|0;f[e>>2]=0;B=n-t>>2;C=t;D=n;if(r>>>0<=B>>>0)if(r>>>0<B>>>0?(n=C+(r<<2)|0,(n|0)!=(D|0)):0){f[q>>2]=D+(~((D+-4-n|0)>>>2)<<2);E=l;F=p;G=k}else{E=l;F=p;G=k}else{Ch(d,r-B|0,e);E=f[d>>2]|0;F=f[j>>2]|0;G=f[a>>2]|0}x=E;y=E;z=G;A=F}B=y+(m<<2)|0;f[B>>2]=(f[B>>2]|0)+1;o=o+1|0;if(o>>>0>=A-z>>2>>>0){v=z;w=A;break}else{l=x;p=A;s=y;k=z;t=y}}}y=w-v|0;v=y>>2;f[e>>2]=0;w=e+4|0;f[w>>2]=0;f[e+8>>2]=0;if(!v){H=0;I=0}else{if(v>>>0>536870911)aq(e);t=ln(y<<1)|0;f[w>>2]=t;f[e>>2]=t;y=t+(v<<3)|0;f[e+8>>2]=y;z=v;v=t;k=t;while(1){s=v;f[s>>2]=-1;f[s+4>>2]=-1;s=k+8|0;A=z+-1|0;if(!A)break;else{z=A;v=s;k=s}}f[w>>2]=y;H=t;I=t}t=f[q>>2]|0;y=f[d>>2]|0;k=t-y|0;v=k>>2;f[g>>2]=0;z=g+4|0;f[z>>2]=0;f[g+8>>2]=0;s=y;do if(v)if(v>>>0>1073741823)aq(g);else{A=ln(k)|0;f[g>>2]=A;p=A+(v<<2)|0;f[g+8>>2]=p;sj(A|0,0,k|0)|0;f[z>>2]=p;J=A;K=p;L=A;break}else{J=0;K=0;L=0}while(0);if((t|0)!=(y|0)){y=0;t=0;while(1){f[J+(t<<2)>>2]=y;k=t+1|0;if(k>>>0<v>>>0){y=(f[s+(t<<2)>>2]|0)+y|0;t=k}else break}}t=f[j>>2]|0;j=f[a>>2]|0;y=j;if((t|0)!=(j|0)){k=a+40|0;a=t-j>>2;j=H;t=H;g=H;A=H;p=H;x=H;l=0;o=J;while(1){F=f[y+(l<<2)>>2]|0;G=l+1|0;E=((G>>>0)%3|0|0)==0?l+-2|0:G;if((E|0)==-1)M=-1;else M=f[y+(E<<2)>>2]|0;E=((l>>>0)%3|0|0)==0;G=(E?2:-1)+l|0;if((G|0)==-1)N=-1;else N=f[y+(G<<2)>>2]|0;if(E?(M|0)==(N|0)|((F|0)==(M|0)|(F|0)==(N|0)):0){f[k>>2]=(f[k>>2]|0)+1;O=j;P=t;Q=g;R=A;S=p;T=x;U=l+2|0;V=o}else W=51;a:do if((W|0)==51){W=0;E=f[s+(N<<2)>>2]|0;b:do if((E|0)>0){G=0;B=f[o+(N<<2)>>2]|0;while(1){m=f[p+(B<<3)>>2]|0;if((m|0)==-1){X=j;Y=t;Z=A;_=p;break b}if((m|0)==(M|0)){m=f[p+(B<<3)+4>>2]|0;if((m|0)==-1)$=-1;else $=f[y+(m<<2)>>2]|0;if((F|0)!=($|0))break}m=G+1|0;if((m|0)<(E|0)){G=m;B=B+1|0}else{X=j;Y=t;Z=A;_=p;break b}}m=f[A+(B<<3)+4>>2]|0;r=G;n=B;D=t;while(1){r=r+1|0;if((r|0)>=(E|0))break;C=n+1|0;f[D+(n<<3)>>2]=f[D+(C<<3)>>2];f[D+(n<<3)+4>>2]=f[D+(C<<3)+4>>2];if((f[j+(n<<3)>>2]|0)==-1)break;else{n=C;D=j}}f[g+(n<<3)>>2]=-1;if((m|0)==-1){X=g;Y=g;Z=g;_=g}else{D=f[i>>2]|0;f[D+(l<<2)>>2]=m;f[D+(m<<2)>>2]=l;O=g;P=g;Q=g;R=g;S=g;T=x;U=l;V=o;break a}}else{X=j;Y=t;Z=A;_=p}while(0);E=f[s+(M<<2)>>2]|0;if((E|0)>0){D=0;r=f[J+(M<<2)>>2]|0;while(1){aa=x+(r<<3)|0;if((f[aa>>2]|0)==-1)break;D=D+1|0;if((D|0)>=(E|0)){O=x;P=x;Q=x;R=x;S=x;T=x;U=l;V=J;break a}else r=r+1|0}f[aa>>2]=N;f[H+(r<<3)+4>>2]=l;O=H;P=H;Q=H;R=H;S=H;T=H;U=l;V=J}else{O=X;P=Y;Q=g;R=Z;S=_;T=x;U=l;V=o}}while(0);l=U+1|0;if(l>>>0>=a>>>0)break;else{j=O;t=P;g=Q;A=R;p=S;x=T;o=V}}}f[b>>2]=v;if(!J){ba=H;ca=I}else{if((K|0)!=(J|0))f[z>>2]=K+(~((K+-4-J|0)>>>2)<<2);Oq(L);L=f[e>>2]|0;ba=L;ca=L}if(ba|0){L=f[w>>2]|0;if((L|0)!=(ba|0))f[w>>2]=L+(~((L+-8-ba|0)>>>3)<<3);Oq(ca)}ca=f[d>>2]|0;if(ca|0){d=f[q>>2]|0;if((d|0)!=(ca|0))f[q>>2]=d+(~((d+-4-ca|0)>>>2)<<2);Oq(ca)}h=1;u=c;return h|0}function sc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=Oa,S=Oa,T=Oa,U=0,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=0;e=u;u=u+48|0;g=e+12|0;h=e+35|0;i=e+32|0;j=e;k=g+16|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;f[g+12>>2]=0;n[k>>2]=$(1.0);l=a+80|0;m=f[l>>2]|0;f[j>>2]=0;o=j+4|0;f[o>>2]=0;f[j+8>>2]=0;if(m){if(m>>>0>1073741823)aq(j);p=m<<2;q=ln(p)|0;f[j>>2]=q;r=q+(m<<2)|0;f[j+8>>2]=r;sj(q|0,0,p|0)|0;f[o>>2]=r;r=f[d>>2]|0;d=c+48|0;p=c+40|0;q=i+1|0;m=i+2|0;s=g+4|0;t=g+12|0;v=g+8|0;w=a+40|0;x=a+64|0;y=0;z=0;while(1){A=d;B=f[A>>2]|0;C=f[A+4>>2]|0;A=p;D=un(f[A>>2]|0,f[A+4>>2]|0,r+y|0,0)|0;A=Vn(D|0,I|0,B|0,C|0)|0;C=(f[f[c>>2]>>2]|0)+A|0;b[h>>0]=b[C>>0]|0;b[h+1>>0]=b[C+1>>0]|0;b[h+2>>0]=b[C+2>>0]|0;im(i|0,C|0,3)|0;C=jg(g,i)|0;if(!C){A=b[i>>0]|0;B=b[q>>0]|0;D=b[m>>0]|0;E=((A&255^318)+239^B&255)+239^D&255;F=f[s>>2]|0;G=(F|0)==0;a:do if(!G){H=F+-1|0;J=(H&F|0)==0;if(!J)if(E>>>0<F>>>0)K=E;else K=(E>>>0)%(F>>>0)|0;else K=E&H;L=f[(f[g>>2]|0)+(K<<2)>>2]|0;if((L|0)!=0?(M=f[L>>2]|0,(M|0)!=0):0){if(J){J=M;while(1){L=f[J+4>>2]|0;if(!((L|0)==(E|0)|(L&H|0)==(K|0))){N=K;O=29;break a}L=J+8|0;if(((b[L>>0]|0)==A<<24>>24?(b[L+1>>0]|0)==B<<24>>24:0)?(b[L+2>>0]|0)==D<<24>>24:0)break a;J=f[J>>2]|0;if(!J){N=K;O=29;break a}}}else P=M;while(1){J=f[P+4>>2]|0;if((J|0)!=(E|0)){if(J>>>0<F>>>0)Q=J;else Q=(J>>>0)%(F>>>0)|0;if((Q|0)!=(K|0)){N=K;O=29;break a}}J=P+8|0;if(((b[J>>0]|0)==A<<24>>24?(b[J+1>>0]|0)==B<<24>>24:0)?(b[J+2>>0]|0)==D<<24>>24:0)break a;P=f[P>>2]|0;if(!P){N=K;O=29;break}}}else{N=K;O=29}}else{N=0;O=29}while(0);if((O|0)==29){O=0;M=ln(16)|0;b[M+8>>0]=A;b[M+9>>0]=B;b[M+10>>0]=D;f[M+12>>2]=z;f[M+4>>2]=E;f[M>>2]=0;R=$(((f[t>>2]|0)+1|0)>>>0);S=$(F>>>0);T=$(n[k>>2]);do if(G|$(T*S)<R){J=F<<1|(F>>>0<3|(F+-1&F|0)!=0)&1;H=~~$(W($(R/T)))>>>0;_h(g,J>>>0<H>>>0?H:J);J=f[s>>2]|0;H=J+-1|0;if(!(H&J)){U=J;V=H&E;break}if(E>>>0<J>>>0){U=J;V=E}else{U=J;V=(E>>>0)%(J>>>0)|0}}else{U=F;V=N}while(0);F=(f[g>>2]|0)+(V<<2)|0;E=f[F>>2]|0;if(!E){f[M>>2]=f[v>>2];f[v>>2]=M;f[F>>2]=v;F=f[M>>2]|0;if(F|0){G=f[F+4>>2]|0;F=U+-1|0;if(F&U)if(G>>>0<U>>>0)X=G;else X=(G>>>0)%(U>>>0)|0;else X=G&F;Y=(f[g>>2]|0)+(X<<2)|0;O=42}}else{f[M>>2]=f[E>>2];Y=E;O=42}if((O|0)==42){O=0;f[Y>>2]=M}f[t>>2]=(f[t>>2]|0)+1}E=w;F=f[E>>2]|0;G=un(F|0,f[E+4>>2]|0,z|0,0)|0;kh((f[f[x>>2]>>2]|0)+G|0,h|0,F|0)|0;F=f[j>>2]|0;f[F+(y<<2)>>2]=z;Z=z+1|0;_=F}else{F=f[j>>2]|0;f[F+(y<<2)>>2]=f[C+12>>2];Z=z;_=F}y=y+1|0;aa=f[l>>2]|0;if(y>>>0>=aa>>>0)break;else z=Z}if((Z|0)==(aa|0))ba=_;else{z=a+84|0;if(!(b[z>>0]|0)){y=f[a+72>>2]|0;h=f[a+68>>2]|0;x=h;if((y|0)==(h|0))ca=_;else{w=y-h>>2;h=0;do{y=x+(h<<2)|0;f[y>>2]=f[_+(f[y>>2]<<2)>>2];h=h+1|0}while(h>>>0<w>>>0);ca=_}}else{b[z>>0]=0;z=a+68|0;_=a+72|0;w=f[_>>2]|0;h=f[z>>2]|0;x=w-h>>2;y=h;h=w;if(aa>>>0<=x>>>0)if(aa>>>0<x>>>0?(w=y+(aa<<2)|0,(w|0)!=(h|0)):0){f[_>>2]=h+(~((h+-4-w|0)>>>2)<<2);da=aa}else da=aa;else{Ch(z,aa-x|0,1220);da=f[l>>2]|0}x=f[j>>2]|0;if(!da)ca=x;else{j=f[a+68>>2]|0;a=0;do{f[j+(a<<2)>>2]=f[x+(a<<2)>>2];a=a+1|0}while(a>>>0<da>>>0);ca=x}}f[l>>2]=Z;ba=ca}if(!ba)ea=Z;else{ca=f[o>>2]|0;if((ca|0)!=(ba|0))f[o>>2]=ca+(~((ca+-4-ba|0)>>>2)<<2);Oq(ba);ea=Z}}else ea=0;Z=f[g+8>>2]|0;if(Z|0){ba=Z;do{Z=ba;ba=f[ba>>2]|0;Oq(Z)}while((ba|0)!=0)}ba=f[g>>2]|0;f[g>>2]=0;if(!ba){u=e;return ea|0}Oq(ba);u=e;return ea|0}function tc(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=0,T=0,U=0,V=0,W=0,X=0,Y=0,Z=0,_=0,$=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0,ga=0,ha=0,ia=0,ja=0,ka=0,la=0,ma=0;e=u;u=u+64|0;d=e+48|0;h=e+40|0;i=e+32|0;j=e+16|0;k=e+8|0;l=e;m=e+28|0;n=a+8|0;o=f[n>>2]|0;if((o+-2|0)>>>0<=28){f[a+72>>2]=o;p=1<<o;f[a+76>>2]=p+-1;o=p+-2|0;f[a+80>>2]=o;f[a+84>>2]=(o|0)/2|0}o=a+40|0;f[a+48>>2]=g;g=a+88|0;tk(g);p=a+36|0;q=f[p>>2]|0;r=(f[q+4>>2]|0)-(f[q>>2]|0)|0;s=r>>2;f[j>>2]=0;f[j+4>>2]=0;f[j+8>>2]=0;t=k;f[t>>2]=0;f[t+4>>2]=0;t=l;f[t>>2]=0;f[t+4>>2]=0;if((r|0)<=0){u=e;return 1}r=j+4|0;t=j+8|0;v=a+84|0;w=a+80|0;x=h+4|0;y=i+4|0;z=d+4|0;A=k+4|0;B=h+4|0;C=i+4|0;D=d+4|0;E=l+4|0;F=a+76|0;a=k+4|0;G=l+4|0;H=f[q>>2]|0;if((f[q+4>>2]|0)==(H|0)){J=q;aq(J)}else{K=0;L=H}while(1){f[m>>2]=f[L+(K<<2)>>2];f[d>>2]=f[m>>2];$b(o,d,j);H=f[j>>2]|0;q=(H|0)>-1?H:0-H|0;M=f[r>>2]|0;N=(M|0)>-1?M:0-M|0;O=Vn(N|0,((N|0)<0)<<31>>31|0,q|0,((q|0)<0)<<31>>31|0)|0;q=f[t>>2]|0;N=(q|0)>-1;P=N?q:0-q|0;q=Vn(O|0,I|0,P|0,((P|0)<0)<<31>>31|0)|0;P=I;if((q|0)==0&(P|0)==0){O=f[v>>2]|0;Q=O;R=j;S=M;T=O}else{O=f[v>>2]|0;U=((O|0)<0)<<31>>31;V=un(O|0,U|0,H|0,((H|0)<0)<<31>>31|0)|0;H=Ik(V|0,I|0,q|0,P|0)|0;f[j>>2]=H;V=un(O|0,U|0,M|0,((M|0)<0)<<31>>31|0)|0;M=Ik(V|0,I|0,q|0,P|0)|0;f[r>>2]=M;P=O-((H|0)>-1?H:0-H|0)-((M|0)>-1?M:0-M|0)|0;Q=N?P:0-P|0;R=t;S=M;T=O}f[R>>2]=Q;O=f[j>>2]|0;do if((O|0)<=-1){if((S|0)<0){M=f[t>>2]|0;W=(M|0)>-1?M:0-M|0;X=M}else{M=f[t>>2]|0;W=(f[w>>2]|0)-((M|0)>-1?M:0-M|0)|0;X=M}if((X|0)<0){Y=(S|0)>-1?S:0-S|0;Z=W;_=X;break}else{Y=(f[w>>2]|0)-((S|0)>-1?S:0-S|0)|0;Z=W;_=X;break}}else{M=f[t>>2]|0;Y=M+T|0;Z=T+S|0;_=M}while(0);M=(Z|0)==0;P=(Y|0)==0;N=f[w>>2]|0;do if(Y|Z){H=(N|0)==(Y|0);if(!(M&H)){q=(N|0)==(Z|0);if(!(P&q)){if(M&(T|0)<(Y|0)){$=0;aa=(T<<1)-Y|0;break}if(q&(T|0)>(Y|0)){$=Z;aa=(T<<1)-Y|0;break}if(H&(T|0)>(Z|0)){$=(T<<1)-Z|0;aa=Y;break}if(P){$=(T|0)<(Z|0)?(T<<1)-Z|0:Z;aa=0}else{$=Z;aa=Y}}else{$=Z;aa=Z}}else{$=Y;aa=Y}}else{$=N;aa=N}while(0);P=0-S|0;M=0-_|0;f[j>>2]=0-O;f[r>>2]=P;f[t>>2]=M;if((O|0)<1){ba=T-_|0;ca=T-S|0}else{H=(_|0)<1?M:_;M=(S|0)<1?P:S;ba=(_|0)>0?M:N-M|0;ca=(S|0)>0?H:N-H|0}H=(ca|0)==0;M=(ba|0)==0;do if(((ba|ca|0)!=0?(P=(N|0)==(ba|0),!(H&P)):0)?(q=(N|0)==(ca|0),!(M&q)):0){if(H&(T|0)<(ba|0)){da=0;ea=(T<<1)-ba|0;break}if(q&(T|0)>(ba|0)){da=N;ea=(T<<1)-ba|0;break}if(P&(T|0)>(ca|0)){da=(T<<1)-ca|0;ea=N;break}if(M){da=(T|0)<(ca|0)?(T<<1)-ca|0:ca;ea=0}else{da=ca;ea=ba}}else{da=N;ea=N}while(0);N=K<<1;M=b+(N<<2)|0;H=M+4|0;O=f[H>>2]|0;f[h>>2]=f[M>>2];f[x>>2]=O;f[i>>2]=$;f[y>>2]=aa;Od(d,n,h,i);O=f[d>>2]|0;f[k>>2]=O;P=f[z>>2]|0;f[A>>2]=P;q=f[H>>2]|0;f[h>>2]=f[M>>2];f[B>>2]=q;f[i>>2]=da;f[C>>2]=ea;Od(d,n,h,i);q=f[d>>2]|0;f[l>>2]=q;M=f[D>>2]|0;f[E>>2]=M;H=f[v>>2]|0;if((H|0)>=(O|0))if((O|0)<(0-H|0))fa=(f[F>>2]|0)+O|0;else fa=O;else fa=O-(f[F>>2]|0)|0;f[k>>2]=fa;if((H|0)>=(P|0))if((P|0)<(0-H|0))ga=(f[F>>2]|0)+P|0;else ga=P;else ga=P-(f[F>>2]|0)|0;f[a>>2]=ga;if((H|0)>=(q|0))if((q|0)<(0-H|0))ha=(f[F>>2]|0)+q|0;else ha=q;else ha=q-(f[F>>2]|0)|0;f[l>>2]=ha;if((H|0)>=(M|0))if((M|0)<(0-H|0))ia=(f[F>>2]|0)+M|0;else ia=M;else ia=M-(f[F>>2]|0)|0;f[G>>2]=ia;if((((ga|0)>-1?ga:0-ga|0)+((fa|0)>-1?fa:0-fa|0)|0)<(((ha|0)>-1?ha:0-ha|0)+((ia|0)>-1?ia:0-ia|0)|0)){fj(g,0);ja=k}else{fj(g,1);ja=l}M=f[ja>>2]|0;if((M|0)<0)ka=(f[F>>2]|0)+M|0;else ka=M;M=c+(N<<2)|0;f[M>>2]=ka;N=f[ja+4>>2]|0;if((N|0)<0)la=(f[F>>2]|0)+N|0;else la=N;f[M+4>>2]=la;K=K+1|0;if((K|0)>=(s|0)){ma=5;break}M=f[p>>2]|0;L=f[M>>2]|0;if((f[M+4>>2]|0)-L>>2>>>0<=K>>>0){J=M;ma=6;break}}if((ma|0)==5){u=e;return 1}else if((ma|0)==6)aq(J);return 0}function uc(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0,p=0,q=0,r=0,s=0,t=0,v=0,w=0,x=0,y=0,z=0,A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0,J=0,K=0,L=0,M=0,N=0,O=0,P=0,Q=0,R=0,S=Oa,T=Oa,U=Oa,V=0,X=0,Y=0,Z=0,_=0,aa=0,ba=0,ca=0,da=0,ea=0,fa=0;e=u;u=u+64|0;g=e+36|0;h=e+24|0;i=e+12|0;j=e;k=g+16|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;f[g+12>>2]=0;n[k>>2]=$(1.0);l=a+80|0;m=f[l>>2]|0;f[j>>2]=0;o=j+4|0;f[o>>2]=0;f[j+8>>2]=0;if(m){if(m>>>0>1073741823)aq(j);p=m<<2;q=ln(p)|0;f[j>>2]=q;r=q+(m<<2)|0;f[j+8>>2]=r;sj(q|0,0,p|0)|0;f[o>>2]=r;r=f[d>>2]|0;d=c+48|0;p=c+40|0;q=i+4|0;m=i+8|0;s=g+4|0;t=g+12|0;v=g+8|0;w=a+40|0;x=a+64|0;y=0;z=0;while(1){A=d;B=f[A>>2]|0;C=f[A+4>>2]|0;A=p;D=un(f[A>>2]|0,f[A+4>>2]|0,r+z|0,0)|0;A=Vn(D|0,I|0,B|0,C|0)|0;C=(f[f[c>>2]>>2]|0)+A|0;A=h;B=C;D=A+12|0;do{b[A>>0]=b[B>>0]|0;A=A+1|0;B=B+1|0}while((A|0)<(D|0));im(i|0,C|0,12)|0;B=qg(g,i)|0;if(!B){A=f[i>>2]|0;D=f[q>>2]|0;E=f[m>>2]|0;F=((A^318)+239^D)+239^E;G=f[s>>2]|0;H=(G|0)==0;a:do if(!H){J=G+-1|0;K=(J&G|0)==0;if(!K)if(F>>>0<G>>>0)L=F;else L=(F>>>0)%(G>>>0)|0;else L=F&J;M=f[(f[g>>2]|0)+(L<<2)>>2]|0;if((M|0)!=0?(N=f[M>>2]|0,(N|0)!=0):0){if(K){K=N;while(1){M=f[K+4>>2]|0;if(!((M|0)==(F|0)|(M&J|0)==(L|0))){O=L;P=29;break a}if(((f[K+8>>2]|0)==(A|0)?(f[K+12>>2]|0)==(D|0):0)?(f[K+16>>2]|0)==(E|0):0)break a;K=f[K>>2]|0;if(!K){O=L;P=29;break a}}}else Q=N;while(1){K=f[Q+4>>2]|0;if((K|0)!=(F|0)){if(K>>>0<G>>>0)R=K;else R=(K>>>0)%(G>>>0)|0;if((R|0)!=(L|0)){O=L;P=29;break a}}if(((f[Q+8>>2]|0)==(A|0)?(f[Q+12>>2]|0)==(D|0):0)?(f[Q+16>>2]|0)==(E|0):0)break a;Q=f[Q>>2]|0;if(!Q){O=L;P=29;break}}}else{O=L;P=29}}else{O=0;P=29}while(0);if((P|0)==29){P=0;C=ln(24)|0;f[C+8>>2]=A;f[C+12>>2]=D;f[C+16>>2]=E;f[C+20>>2]=y;f[C+4>>2]=F;f[C>>2]=0;S=$(((f[t>>2]|0)+1|0)>>>0);T=$(G>>>0);U=$(n[k>>2]);do if(H|$(U*T)<S){N=G<<1|(G>>>0<3|(G+-1&G|0)!=0)&1;K=~~$(W($(S/U)))>>>0;Xh(g,N>>>0<K>>>0?K:N);N=f[s>>2]|0;K=N+-1|0;if(!(K&N)){V=N;X=K&F;break}if(F>>>0<N>>>0){V=N;X=F}else{V=N;X=(F>>>0)%(N>>>0)|0}}else{V=G;X=O}while(0);G=(f[g>>2]|0)+(X<<2)|0;F=f[G>>2]|0;if(!F){f[C>>2]=f[v>>2];f[v>>2]=C;f[G>>2]=v;G=f[C>>2]|0;if(G|0){H=f[G+4>>2]|0;G=V+-1|0;if(G&V)if(H>>>0<V>>>0)Y=H;else Y=(H>>>0)%(V>>>0)|0;else Y=H&G;Z=(f[g>>2]|0)+(Y<<2)|0;P=42}}else{f[C>>2]=f[F>>2];Z=F;P=42}if((P|0)==42){P=0;f[Z>>2]=C}f[t>>2]=(f[t>>2]|0)+1}F=w;G=f[F>>2]|0;H=un(G|0,f[F+4>>2]|0,y|0,0)|0;kh((f[f[x>>2]>>2]|0)+H|0,h|0,G|0)|0;G=f[j>>2]|0;f[G+(z<<2)>>2]=y;_=y+1|0;aa=G}else{G=f[j>>2]|0;f[G+(z<<2)>>2]=f[B+20>>2];_=y;aa=G}z=z+1|0;ba=f[l>>2]|0;if(z>>>0>=ba>>>0)break;else y=_}if((_|0)==(ba|0))ca=aa;else{y=a+84|0;if(!(b[y>>0]|0)){z=f[a+72>>2]|0;h=f[a+68>>2]|0;x=h;if((z|0)==(h|0))da=aa;else{w=z-h>>2;h=0;do{z=x+(h<<2)|0;f[z>>2]=f[aa+(f[z>>2]<<2)>>2];h=h+1|0}while(h>>>0<w>>>0);da=aa}}else{b[y>>0]=0;y=a+68|0;aa=a+72|0;w=f[aa>>2]|0;h=f[y>>2]|0;x=w-h>>2;z=h;h=w;if(ba>>>0<=x>>>0)if(ba>>>0<x>>>0?(w=z+(ba<<2)|0,(w|0)!=(h|0)):0){f[aa>>2]=h+(~((h+-4-w|0)>>>2)<<2);ea=ba}else ea=ba;else{Ch(y,ba-x|0,1220);ea=f[l>>2]|0}x=f[j>>2]|0;if(!ea)da=x;else{j=f[a+68>>2]|0;a=0;do{f[j+(a<<2)>>2]=f[x+(a<<2)>>2];a=a+1|0}while(a>>>0<ea>>>0);da=x}}f[l>>2]=_;ca=da}if(!ca)fa=_;else{da=f[o>>2]|0;if((da|0)!=(ca|0))f[o>>2]=da+(~((da+-4-ca|0)>>>2)<<2);Oq(ca);fa=_}}else fa=0;_=f[g+8>>2]|0;if(_|0){ca=_;do{_=ca;ca=f[ca>>2]|0;Oq(_)}while((ca|0)!=0)}ca=f[g>>2]|0;f[g>>2]=0;if(!ca){u=e;return fa|0}Oq(ca);u=e;return fa|0}\nfunction di(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;d=u;u=u+16|0;e=d;Je(e,a+40|0,f[a+8>>2]|0,b,c);gj(a,e);a=f[e>>2]|0;f[e>>2]=0;if(!a){u=d;return 1}e=a+88|0;c=f[e>>2]|0;f[e>>2]=0;if(c|0){e=f[c+8>>2]|0;if(e|0){b=c+12|0;if((f[b>>2]|0)!=(e|0))f[b>>2]=e;Oq(e)}Oq(c)}c=f[a+68>>2]|0;if(c|0){e=a+72|0;b=f[e>>2]|0;if((b|0)!=(c|0))f[e>>2]=b+(~((b+-4-c|0)>>>2)<<2);Oq(c)}c=a+64|0;b=f[c>>2]|0;f[c>>2]=0;if(b|0){c=f[b>>2]|0;if(c|0){e=b+4|0;if((f[e>>2]|0)!=(c|0))f[e>>2]=c;Oq(c)}Oq(b)}Oq(a);u=d;return 1}function ei(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){Bd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;Bd(a,e);return}function fi(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0;e=u;u=u+48|0;g=e;h=e+32|0;if(!c){i=0;u=e;return i|0}Gn(g);if((dm(c,0)|0)!=-1?Qa[f[(f[c>>2]|0)+16>>2]&127](c)|0:0){Va[f[(f[c>>2]|0)+20>>2]&127](c);ch(h,a,c,g);c=(f[h>>2]|0)==0;a=h+4|0;if((b[a+11>>0]|0)<0)Oq(f[a>>2]|0);if(c){c=f[g>>2]|0;a=g+4|0;rg(d,c,c+((f[a>>2]|0)-c)|0);j=(f[a>>2]|0)-(f[g>>2]|0)|0}else j=0}else j=0;a=g+12|0;c=f[a>>2]|0;f[a>>2]=0;if(c|0)Oq(c);c=f[g>>2]|0;if(c|0){a=g+4|0;if((f[a>>2]|0)!=(c|0))f[a>>2]=c;Oq(c)}i=j;u=e;return i|0}function gi(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;d=u;u=u+16|0;e=d;Fe(e,a+40|0,f[a+8>>2]|0,b,c);gj(a,e);a=f[e>>2]|0;f[e>>2]=0;if(!a){u=d;return 1}e=a+88|0;c=f[e>>2]|0;f[e>>2]=0;if(c|0){e=f[c+8>>2]|0;if(e|0){b=c+12|0;if((f[b>>2]|0)!=(e|0))f[b>>2]=e;Oq(e)}Oq(c)}c=f[a+68>>2]|0;if(c|0){e=a+72|0;b=f[e>>2]|0;if((b|0)!=(c|0))f[e>>2]=b+(~((b+-4-c|0)>>>2)<<2);Oq(c)}c=a+64|0;b=f[c>>2]|0;f[c>>2]=0;if(b|0){c=f[b>>2]|0;if(c|0){e=b+4|0;if((f[e>>2]|0)!=(c|0))f[e>>2]=c;Oq(c)}Oq(b)}Oq(a);u=d;return 1}function hi(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0;b=f[a>>2]|0;if(!b)return;c=a+4|0;d=f[c>>2]|0;if((d|0)==(b|0))e=b;else{g=d;do{d=g+-4|0;f[c>>2]=d;h=f[d>>2]|0;f[d>>2]=0;if(h|0){d=h+88|0;i=f[d>>2]|0;f[d>>2]=0;if(i|0){d=f[i+8>>2]|0;if(d|0){j=i+12|0;if((f[j>>2]|0)!=(d|0))f[j>>2]=d;Oq(d)}Oq(i)}i=f[h+68>>2]|0;if(i|0){d=h+72|0;j=f[d>>2]|0;if((j|0)!=(i|0))f[d>>2]=j+(~((j+-4-i|0)>>>2)<<2);Oq(i)}i=h+64|0;j=f[i>>2]|0;f[i>>2]=0;if(j|0){i=f[j>>2]|0;if(i|0){d=j+4|0;if((f[d>>2]|0)!=(i|0))f[d>>2]=i;Oq(i)}Oq(j)}Oq(h)}g=f[c>>2]|0}while((g|0)!=(b|0));e=f[a>>2]|0}Oq(e);return}function ii(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0;d=u;u=u+16|0;e=d+4|0;g=d;h=d+8|0;if(!(Ie(a,c)|0)){i=0;u=d;return i|0}j=a+36|0;k=a+40|0;a=f[j>>2]|0;if((f[k>>2]|0)==(a|0)){i=1;u=d;return i|0}l=c+16|0;m=c+4|0;n=h+1|0;o=0;p=a;do{a=f[p+(o<<2)>>2]|0;q=Qa[f[(f[a>>2]|0)+32>>2]&127](a)|0;b[h>>0]=q;q=l;a=f[q+4>>2]|0;if(!((a|0)>0|(a|0)==0&(f[q>>2]|0)>>>0>0)){f[g>>2]=f[m>>2];f[e>>2]=f[g>>2];Me(c,e,h,n)|0}o=o+1|0;p=f[j>>2]|0}while(o>>>0<(f[k>>2]|0)-p>>2>>>0);i=1;u=d;return i|0}function ji(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0;c=u;u=u+16|0;d=c;lp(a);f[a+16>>2]=0;f[a+20>>2]=0;f[a+12>>2]=a+16;e=a+24|0;lp(e);f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;a=ln(32)|0;f[d>>2]=a;f[d+8>>2]=-2147483616;f[d+4>>2]=20;g=a;h=14538;i=g+20|0;do{b[g>>0]=b[h>>0]|0;g=g+1|0;h=h+1|0}while((g|0)<(i|0));b[a+20>>0]=0;Vj(e,d,1);if((b[d+11>>0]|0)<0)Oq(f[d>>2]|0);f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;a=ln(32)|0;f[d>>2]=a;f[d+8>>2]=-2147483616;f[d+4>>2]=22;g=a;h=14559;i=g+22|0;do{b[g>>0]=b[h>>0]|0;g=g+1|0;h=h+1|0}while((g|0)<(i|0));b[a+22>>0]=0;Vj(e,d,1);if((b[d+11>>0]|0)>=0){u=c;return}Oq(f[d>>2]|0);u=c;return}function ki(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0;b=f[a+4>>2]|0;c=a+8|0;d=f[c>>2]|0;if((d|0)!=(b|0)){e=d;do{d=e+-4|0;f[c>>2]=d;g=f[d>>2]|0;f[d>>2]=0;if(g|0){d=g+88|0;h=f[d>>2]|0;f[d>>2]=0;if(h|0){d=f[h+8>>2]|0;if(d|0){i=h+12|0;if((f[i>>2]|0)!=(d|0))f[i>>2]=d;Oq(d)}Oq(h)}h=f[g+68>>2]|0;if(h|0){d=g+72|0;i=f[d>>2]|0;if((i|0)!=(h|0))f[d>>2]=i+(~((i+-4-h|0)>>>2)<<2);Oq(h)}h=g+64|0;i=f[h>>2]|0;f[h>>2]=0;if(i|0){h=f[i>>2]|0;if(h|0){d=i+4|0;if((f[d>>2]|0)!=(h|0))f[d>>2]=h;Oq(h)}Oq(i)}Oq(g)}e=f[c>>2]|0}while((e|0)!=(b|0))}b=f[a>>2]|0;if(!b)return;Oq(b);return}function li(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;c=u;u=u+16|0;d=c+8|0;e=c+4|0;g=c;f[g>>2]=f[a+12>>2];h=b+16|0;i=h;j=f[i>>2]|0;k=f[i+4>>2]|0;if((k|0)>0|(k|0)==0&j>>>0>0){l=k;m=j}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;j=h;l=f[j+4>>2]|0;m=f[j>>2]|0}f[g>>2]=f[a+20>>2];if((l|0)>0|(l|0)==0&m>>>0>0){u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;u=c;return 1}function mi(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;c=u;u=u+16|0;d=c;e=ln(16)|0;f[d>>2]=e;f[d+8>>2]=-2147483632;f[d+4>>2]=14;g=e;h=14408;i=g+14|0;do{b[g>>0]=b[h>>0]|0;g=g+1|0;h=h+1|0}while((g|0)<(i|0));b[e+14>>0]=0;e=Hk(a,d,-1)|0;if((b[d+11>>0]|0)<0)Oq(f[d>>2]|0);j=ln(16)|0;f[d>>2]=j;f[d+8>>2]=-2147483632;f[d+4>>2]=14;g=j;h=14423;i=g+14|0;do{b[g>>0]=b[h>>0]|0;g=g+1|0;h=h+1|0}while((g|0)<(i|0));b[j+14>>0]=0;j=Hk(a,d,-1)|0;if((b[d+11>>0]|0)>=0){k=(e|0)<(j|0);l=k?j:e;m=(l|0)==-1;n=m?5:l;u=c;return n|0}Oq(f[d>>2]|0);k=(e|0)<(j|0);l=k?j:e;m=(l|0)==-1;n=m?5:l;u=c;return n|0}function ni(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;c=u;u=u+16|0;d=c+8|0;e=c+4|0;g=c;f[g>>2]=f[a+12>>2];h=b+16|0;i=h;j=f[i>>2]|0;k=f[i+4>>2]|0;if((k|0)>0|(k|0)==0&j>>>0>0){l=k;m=j}else{f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;j=h;l=f[j+4>>2]|0;m=f[j>>2]|0}f[g>>2]=f[a+16>>2];if((l|0)>0|(l|0)==0&m>>>0>0){u=c;return 1}f[e>>2]=f[b+4>>2];f[d>>2]=f[e>>2];Me(b,d,g,g+4|0)|0;u=c;return 1}function oi(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;g=ln(32)|0;f[a>>2]=g;f[a+4>>2]=c+8;c=a+8|0;b[c>>0]=0;h=g+8|0;f[h>>2]=f[e>>2];f[h+4>>2]=f[e+4>>2];f[h+8>>2]=f[e+8>>2];f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;h=g+20|0;i=e+12|0;f[h>>2]=0;f[g+24>>2]=0;f[g+28>>2]=0;g=e+16|0;e=f[g>>2]|0;j=f[i>>2]|0;k=e-j|0;if(!k){l=j;m=e;n=0}else{Fi(h,k);l=f[i>>2]|0;m=f[g>>2]|0;n=f[h>>2]|0}kh(n|0,l|0,m-l|0)|0;b[c>>0]=1;c=f[a>>2]|0;f[c+4>>2]=d;f[c>>2]=0;return}function pi(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0;b=a+32|0;ld(a,b);c=a+80|0;d=f[c>>2]|0;if((d|0?(e=a+84|0,(f[e>>2]|0)>0):0)?(ld(d,b),(f[e>>2]|0)>1):0){d=1;do{ld((f[c>>2]|0)+(d<<5)|0,b);d=d+1|0}while((d|0)<(f[e>>2]|0))}e=a+136|0;d=a+140|0;a=f[e>>2]|0;if((f[d>>2]|0)==(a|0))return;c=0;g=a;while(1){a=g;ci((f[a+(c*12|0)+4>>2]|0)-(f[a+(c*12|0)>>2]|0)>>2,b)|0;a=f[e>>2]|0;h=f[a+(c*12|0)>>2]|0;i=(f[a+(c*12|0)+4>>2]|0)-h>>2;if(!i)j=a;else{Mc(h,i,1,0,b)|0;j=f[e>>2]|0}c=c+1|0;if(c>>>0>=(((f[d>>2]|0)-j|0)/12|0)>>>0)break;else g=j}return}function qi(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;e=d+16|0;g=f[e>>2]|0;if(!g)if(!(vl(d)|0)){h=f[e>>2]|0;i=5}else j=0;else{h=g;i=5}a:do if((i|0)==5){g=d+20|0;e=f[g>>2]|0;k=e;if((h-e|0)>>>0<c>>>0){j=Sa[f[d+36>>2]&31](d,a,c)|0;break}b:do if((b[d+75>>0]|0)>-1){e=c;while(1){if(!e){l=0;m=a;n=c;o=k;break b}p=e+-1|0;if((b[a+p>>0]|0)==10)break;else e=p}p=Sa[f[d+36>>2]&31](d,a,e)|0;if(p>>>0<e>>>0){j=p;break a}l=e;m=a+e|0;n=c-e|0;o=f[g>>2]|0}else{l=0;m=a;n=c;o=k}while(0);kh(o|0,m|0,n|0)|0;f[g>>2]=(f[g>>2]|0)+n;j=l+n|0}while(0);return j|0}function ri(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0;c=a+12|0;d=f[c>>2]|0;f[c>>2]=0;if(d|0){c=f[d+28>>2]|0;if(c|0){e=c;do{c=e;e=f[e>>2]|0;ri(c+8|0);Oq(c)}while((e|0)!=0)}e=d+20|0;c=f[e>>2]|0;f[e>>2]=0;if(c|0)Oq(c);c=f[d+8>>2]|0;if(c|0){e=c;do{c=e;e=f[e>>2]|0;g=c+8|0;h=f[c+20>>2]|0;if(h|0){i=c+24|0;if((f[i>>2]|0)!=(h|0))f[i>>2]=h;Oq(h)}if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);Oq(c)}while((e|0)!=0)}e=f[d>>2]|0;f[d>>2]=0;if(e|0)Oq(e);Oq(d)}if((b[a+11>>0]|0)>=0)return;Oq(f[a>>2]|0);return}function si(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,o=0;g=u;u=u+32|0;h=g+12|0;i=g;f[h>>2]=0;f[h+4>>2]=0;f[h+8>>2]=0;if((e|0)>0){j=i+11|0;k=i+4|0;l=0;do{if((l|0)>0)An(h,14477)|0;il(i,$(n[d+(l<<2)>>2]));m=b[j>>0]|0;o=m<<24>>24<0;lj(h,o?f[i>>2]|0:i,o?f[k>>2]|0:m&255)|0;if((b[j>>0]|0)<0)Oq(f[i>>2]|0);l=l+1|0}while((l|0)<(e|0))}am(Ai(a,c)|0,h)|0;if((b[h+11>>0]|0)>=0){u=g;return}Oq(f[h>>2]|0);u=g;return}function ti(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;c=u;u=u+16|0;d=c;if((Qa[f[(f[b>>2]|0)+20>>2]&127](b)|0)<=0){e=1;u=c;return e|0}g=a+4|0;h=a+20|0;i=a+24|0;j=a+16|0;a=0;while(1){k=f[(f[g>>2]|0)+4>>2]|0;l=dm(k,Ra[f[(f[b>>2]|0)+24>>2]&127](b,a)|0)|0;f[d>>2]=l;if((l|0)==-1)break;k=f[h>>2]|0;if((k|0)==(f[i>>2]|0))Ri(j,d);else{f[k>>2]=l;f[h>>2]=k+4}gl(f[g>>2]|0,f[d>>2]|0)|0;a=a+1|0;if((a|0)>=(Qa[f[(f[b>>2]|0)+20>>2]&127](b)|0)){e=1;m=9;break}}if((m|0)==9){u=c;return e|0}e=0;u=c;return e|0}function ui(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0;f[a>>2]=1292;hi(a+60|0);b=f[a+48>>2]|0;if(b|0){c=a+52|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=a+36|0;d=f[b>>2]|0;if(d|0){c=a+40|0;e=f[c>>2]|0;if((e|0)==(d|0))g=d;else{h=e;do{e=h+-24|0;f[c>>2]=e;Va[f[f[e>>2]>>2]&127](e);h=f[c>>2]|0}while((h|0)!=(d|0));g=f[b>>2]|0}Oq(g)}f[a>>2]=1232;g=f[a+16>>2]|0;if(g|0){b=a+20|0;d=f[b>>2]|0;if((d|0)!=(g|0))f[b>>2]=d+(~((d+-4-g|0)>>>2)<<2);Oq(g)}g=f[a+4>>2]|0;if(!g)return;d=a+8|0;a=f[d>>2]|0;if((a|0)!=(g|0))f[d>>2]=a+(~((a+-4-g|0)>>>2)<<2);Oq(g);return}function vi(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0;c=u;u=u+32|0;d=c+16|0;e=c+8|0;g=c;h=a+8|0;if(f[h>>2]<<5>>>0>=b>>>0){u=c;return}f[d>>2]=0;i=d+4|0;f[i>>2]=0;j=d+8|0;f[j>>2]=0;if((b|0)<0)aq(d);k=((b+-1|0)>>>5)+1|0;b=ln(k<<2)|0;f[d>>2]=b;f[i>>2]=0;f[j>>2]=k;k=f[a>>2]|0;f[e>>2]=k;f[e+4>>2]=0;b=a+4|0;l=f[b>>2]|0;f[g>>2]=k+(l>>>5<<2);f[g+4>>2]=l&31;zg(d,e,g);g=f[a>>2]|0;f[a>>2]=f[d>>2];f[d>>2]=g;d=f[b>>2]|0;f[b>>2]=f[i>>2];f[i>>2]=d;d=f[h>>2]|0;f[h>>2]=f[j>>2];f[j>>2]=d;if(g|0)Oq(g);u=c;return}function wi(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0;b=a+136|0;c=f[b>>2]|0;if(c|0){d=a+140|0;e=f[d>>2]|0;if((e|0)==(c|0))g=c;else{h=e;while(1){e=h+-12|0;f[d>>2]=e;i=f[e>>2]|0;if(!i)j=e;else{e=h+-8|0;k=f[e>>2]|0;if((k|0)!=(i|0))f[e>>2]=k+(~((k+-4-i|0)>>>2)<<2);Oq(i);j=f[d>>2]|0}if((j|0)==(c|0))break;else h=j}g=f[b>>2]|0}Oq(g)}g=f[a+104>>2]|0;if(g|0){b=a+108|0;j=f[b>>2]|0;if((j|0)!=(g|0))f[b>>2]=j+(~((j+-4-g|0)>>>2)<<2);Oq(g)}g=f[a+92>>2]|0;if(!g){uj(a);return}j=a+96|0;b=f[j>>2]|0;if((b|0)!=(g|0))f[j>>2]=b+(~((b+-4-g|0)>>>2)<<2);Oq(g);uj(a);return}function xi(a){a=a|0;var c=0,d=0,e=0,g=0;f[a>>2]=3680;c=a+72|0;d=a+136|0;e=a+4|0;g=e+64|0;do{f[e>>2]=0;e=e+4|0}while((e|0)<(g|0));e=c;g=e+64|0;do{f[e>>2]=0;e=e+4|0}while((e|0)<(g|0));n[d>>2]=$(1.0);d=a+140|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;f[d+12>>2]=0;f[d+16>>2]=0;f[d+20>>2]=0;f[a+164>>2]=-1;d=a+168|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;f[d+12>>2]=0;f[d+16>>2]=0;f[d+20>>2]=0;f[d+24>>2]=0;wn(a+200|0);Gn(a+232|0);d=a+316|0;e=a+264|0;g=e+52|0;do{f[e>>2]=0;e=e+4|0}while((e|0)<(g|0));f[d>>2]=-1;f[a+320>>2]=-1;f[a+324>>2]=0;f[a+328>>2]=2;f[a+332>>2]=7;f[a+336>>2]=0;f[a+340>>2]=0;f[a+344>>2]=0;b[a+352>>0]=0;return}function yi(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;c=a+4|0;d=f[a>>2]|0;e=(f[c>>2]|0)-d|0;g=(e|0)/12|0;h=g+1|0;if(h>>>0>357913941)aq(a);i=a+8|0;j=((f[i>>2]|0)-d|0)/12|0;k=j<<1;l=j>>>0<178956970?(k>>>0<h>>>0?h:k):357913941;do if(l)if(l>>>0>357913941){k=ra(8)|0;Oo(k,16035);f[k>>2]=7256;va(k|0,1112,110)}else{m=ln(l*12|0)|0;break}else m=0;while(0);k=m+(g*12|0)|0;f[k>>2]=f[b>>2];f[k+4>>2]=f[b+4>>2];f[k+8>>2]=f[b+8>>2];b=k+(((e|0)/-12|0)*12|0)|0;if((e|0)>0)kh(b|0,d|0,e|0)|0;f[a>>2]=b;f[c>>2]=k+12;f[i>>2]=m+(l*12|0);if(!d)return;Oq(d);return}function zi(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;g=a+16|0;h=g;i=f[h+4>>2]|0;if((d|0)<0|(d|0)==0&c>>>0<1|((i|0)>0|(i|0)==0&(f[h>>2]|0)>>>0>0)){j=0;return j|0}b[a+24>>0]=e&1;h=Vn(c|0,d|0,7,0)|0;d=Ik(h|0,I|0,8,0)|0;h=I;c=g;f[c>>2]=d;f[c+4>>2]=h;c=a+4|0;g=f[c>>2]|0;i=f[a>>2]|0;k=g-i|0;l=Vn(k|0,0,8,0)|0;m=e?l:k;l=Vn(m|0,(e?I:0)|0,d|0,h|0)|0;h=i;i=g;if(k>>>0>=l>>>0)if(k>>>0>l>>>0?(g=h+l|0,(g|0)!=(i|0)):0){f[c>>2]=g;n=h}else n=h;else{Fi(a,l-k|0);n=f[a>>2]|0}k=ln(8)|0;f[k>>2]=n+m;f[k+4>>2]=0;m=a+12|0;a=f[m>>2]|0;f[m>>2]=k;if(!a){j=1;return j|0}Oq(a);j=1;return j|0}function Ai(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0;c=u;u=u+16|0;d=c;e=yg(a,d,b)|0;g=f[e>>2]|0;if(g|0){h=g;i=h+28|0;u=c;return i|0}g=ln(40)|0;pj(g+16|0,b);b=g+28|0;f[b>>2]=0;f[b+4>>2]=0;f[b+8>>2]=0;b=f[d>>2]|0;f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=b;f[e>>2]=g;b=f[f[a>>2]>>2]|0;if(!b)j=g;else{f[a>>2]=b;j=f[e>>2]|0}Oe(f[a+4>>2]|0,j);j=a+8|0;f[j>>2]=(f[j>>2]|0)+1;h=g;i=h+28|0;u=c;return i|0}function Bi(a,c,d,e,g,h,i,j){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;i=i|0;j=j|0;var k=0,l=0,m=0,n=0,o=0,p=0;k=u;u=u+16|0;l=k;if((-18-c|0)>>>0<d>>>0)aq(a);if((b[a+11>>0]|0)<0)m=f[a>>2]|0;else m=a;if(c>>>0<2147483623){n=d+c|0;d=c<<1;o=n>>>0<d>>>0?d:n;p=o>>>0<11?11:o+16&-16}else p=-17;o=ln(p)|0;if(g|0)Fo(o,m,g)|0;if(i|0)Fo(o+g|0,j,i)|0;j=e-h|0;e=j-g|0;if(e|0)Fo(o+g+i|0,m+g+h|0,e)|0;if((c|0)!=10)Oq(m);f[a>>2]=o;f[a+8>>2]=p|-2147483648;p=j+i|0;f[a+4>>2]=p;b[l>>0]=0;up(o+p|0,l);u=k;return}function Ci(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;c=a+8|0;d=f[c>>2]|0;e=a+4|0;g=f[e>>2]|0;if(d-g>>2>>>0>=b>>>0){sj(g|0,0,b<<2|0)|0;f[e>>2]=g+(b<<2);return}h=f[a>>2]|0;i=g-h|0;g=i>>2;j=g+b|0;if(j>>>0>1073741823)aq(a);k=d-h|0;d=k>>1;l=k>>2>>>0<536870911?(d>>>0<j>>>0?j:d):1073741823;do if(l)if(l>>>0>1073741823){d=ra(8)|0;Oo(d,16035);f[d>>2]=7256;va(d|0,1112,110)}else{d=ln(l<<2)|0;m=d;n=d;break}else{m=0;n=0}while(0);d=m+(g<<2)|0;sj(d|0,0,b<<2|0)|0;if((i|0)>0)kh(n|0,h|0,i|0)|0;f[a>>2]=m;f[e>>2]=d+(b<<2);f[c>>2]=m+(l<<2);if(!h)return;Oq(h);return}function Di(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;g=ln(32)|0;f[a>>2]=g;f[a+4>>2]=c+8;c=a+8|0;b[c>>0]=0;pj(g+8|0,e);h=g+20|0;i=e+12|0;f[h>>2]=0;f[g+24>>2]=0;f[g+28>>2]=0;g=e+16|0;e=f[g>>2]|0;j=f[i>>2]|0;k=e-j|0;if(!k){l=j;m=e;n=0}else{Fi(h,k);l=f[i>>2]|0;m=f[g>>2]|0;n=f[h>>2]|0}kh(n|0,l|0,m-l|0)|0;b[c>>0]=1;c=f[a>>2]|0;f[c+4>>2]=d;f[c>>2]=0;return}function Ei(a,c,d){a=a|0;c=c|0;d=$(d);var e=0,g=0,h=0,i=0,j=0,k=0.0,l=0,m=0,n=0,o=0;e=u;u=u+16|0;g=e;h=c+11|0;i=b[h>>0]|0;if(i<<24>>24<0)j=f[c+4>>2]|0;else j=i&255;k=+d;l=j;j=i;while(1){if(j<<24>>24<0)m=f[c>>2]|0;else m=c;p[g>>3]=k;n=Bn(m,l+1|0,18562,g)|0;if((n|0)>-1)if(n>>>0>l>>>0)o=n;else break;else o=l<<1|1;Hj(c,o,0);l=o;j=b[h>>0]|0}Hj(c,n,0);f[a>>2]=f[c>>2];f[a+4>>2]=f[c+4>>2];f[a+8>>2]=f[c+8>>2];a=0;while(1){if((a|0)==3)break;f[c+(a<<2)>>2]=0;a=a+1|0}u=e;return}function Fi(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0;d=a+8|0;e=f[d>>2]|0;g=a+4|0;h=f[g>>2]|0;if((e-h|0)>>>0>=c>>>0){i=c;j=h;do{b[j>>0]=0;j=(f[g>>2]|0)+1|0;f[g>>2]=j;i=i+-1|0}while((i|0)!=0);return}i=f[a>>2]|0;j=h-i|0;h=j+c|0;if((h|0)<0)aq(a);k=e-i|0;i=k<<1;e=k>>>0<1073741823?(i>>>0<h>>>0?h:i):2147483647;if(!e)l=0;else l=ln(e)|0;i=l+j|0;j=l+e|0;e=c;c=i;l=i;do{b[l>>0]=0;l=c+1|0;c=l;e=e+-1|0}while((e|0)!=0);e=f[a>>2]|0;l=(f[g>>2]|0)-e|0;h=i+(0-l)|0;if((l|0)>0)kh(h|0,e|0,l|0)|0;f[a>>2]=h;f[g>>2]=c;f[d>>2]=j;if(!e)return;Oq(e);return}function Gi(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0;c=a+4|0;d=f[c>>2]|0;e=f[a>>2]|0;g=(d-e|0)/136|0;h=d;if(g>>>0<b>>>0){Ge(a,b-g|0);return}if(g>>>0<=b>>>0)return;g=e+(b*136|0)|0;if((g|0)==(h|0))return;else i=h;do{f[c>>2]=i+-136;h=f[i+-20>>2]|0;if(h|0){b=i+-16|0;e=f[b>>2]|0;if((e|0)!=(h|0))f[b>>2]=e+(~((e+-4-h|0)>>>2)<<2);Oq(h)}h=f[i+-32>>2]|0;if(h|0){e=i+-28|0;b=f[e>>2]|0;if((b|0)!=(h|0))f[e>>2]=b+(~((b+-4-h|0)>>>2)<<2);Oq(h)}Mi(i+-132|0);i=f[c>>2]|0}while((i|0)!=(g|0));return}function Hi(a,b){a=a|0;b=b|0;var c=0,d=Oa,e=0,g=0;if((b|0)!=1)if(!(b+-1&b))c=b;else c=cb(b)|0;else c=2;b=f[a+4>>2]|0;if(c>>>0>b>>>0){Sd(a,c);return}if(c>>>0>=b>>>0)return;d=$((f[a+12>>2]|0)>>>0);e=~~$(W($(d/$(n[a+16>>2]))))>>>0;if(b>>>0>2&(b+-1&b|0)==0)g=1<<32-(_(e+-1|0)|0);else g=cb(e)|0;e=c>>>0<g>>>0?g:c;if(e>>>0>=b>>>0)return;Sd(a,e);return}function Ii(a){a=a|0;var b=0,c=0,d=0;b=f[a+76>>2]|0;if(b|0){c=a+80|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+64>>2]|0;if(b|0){d=a+68|0;if((f[d>>2]|0)!=(b|0))f[d>>2]=b;Oq(b)}b=f[a+48>>2]|0;if(b|0){d=a+52|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+24>>2]|0;if(b|0){c=a+28|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+12>>2]|0;if(b|0){d=a+16|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a>>2]|0;if(!b)return;c=a+4|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function Ji(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;e=u;u=u+16|0;g=e;h=c+11|0;i=b[h>>0]|0;if(i<<24>>24<0)j=f[c+4>>2]|0;else j=i&255;k=j;j=i;while(1){if(j<<24>>24<0)l=f[c>>2]|0;else l=c;f[g>>2]=d;m=Bn(l,k+1|0,18559,g)|0;if((m|0)>-1)if(m>>>0>k>>>0)n=m;else break;else n=k<<1|1;Hj(c,n,0);k=n;j=b[h>>0]|0}Hj(c,m,0);f[a>>2]=f[c>>2];f[a+4>>2]=f[c+4>>2];f[a+8>>2]=f[c+8>>2];a=0;while(1){if((a|0)==3)break;f[c+(a<<2)>>2]=0;a=a+1|0}u=e;return}function Ki(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;b=a+8|0;c=f[b>>2]|0;if((c|0)<0){d=0;return d|0}e=a+4|0;a=f[e>>2]|0;g=a+4|0;h=f[g>>2]|0;i=f[a>>2]|0;j=h-i>>2;k=i;i=h;if(c>>>0<=j>>>0)if(c>>>0<j>>>0?(h=k+(c<<2)|0,(h|0)!=(i|0)):0){f[g>>2]=i+(~((i+-4-h|0)>>>2)<<2);l=c}else l=c;else{Ci(a,c-j|0);l=f[b>>2]|0}if((l|0)<=0){d=1;return d|0}b=f[e>>2]|0;e=f[b>>2]|0;j=(f[b+4>>2]|0)-e>>2;c=e;e=0;while(1){if(j>>>0<=e>>>0){m=10;break}f[c+(e<<2)>>2]=e;e=e+1|0;if((e|0)>=(l|0)){d=1;m=12;break}}if((m|0)==10)aq(b);else if((m|0)==12)return d|0;return 0}function Li(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0;e=u;u=u+16|0;g=e;h=ln(16)|0;f[g>>2]=h;f[g+8>>2]=-2147483632;f[g+4>>2]=14;i=h;j=14408;k=i+14|0;do{b[i>>0]=b[j>>0]|0;i=i+1|0;j=j+1|0}while((i|0)<(k|0));b[h+14>>0]=0;Xj(a,g,c);if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);c=ln(16)|0;f[g>>2]=c;f[g+8>>2]=-2147483632;f[g+4>>2]=14;i=c;j=14423;k=i+14|0;do{b[i>>0]=b[j>>0]|0;i=i+1|0;j=j+1|0}while((i|0)<(k|0));b[c+14>>0]=0;Xj(a,g,d);if((b[g+11>>0]|0)>=0){u=e;return}Oq(f[g>>2]|0);u=e;return}function Mi(a){a=a|0;var b=0,c=0,d=0;b=f[a+84>>2]|0;if(b|0){c=a+88|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+72>>2]|0;if(b|0){d=a+76|0;if((f[d>>2]|0)!=(b|0))f[d>>2]=b;Oq(b)}b=f[a+52>>2]|0;if(b|0){d=a+56|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+40>>2]|0;if(b|0){c=a+44|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+28>>2]|0;if(b|0){d=a+32|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+12>>2]|0;if(b|0)Oq(b);b=f[a>>2]|0;if(!b)return;Oq(b);return}function Ni(a){a=a|0;var b=0,c=0,d=0,e=0;f[a>>2]=1352;b=a+32|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0){b=c+88|0;d=f[b>>2]|0;f[b>>2]=0;if(d|0){b=f[d+8>>2]|0;if(b|0){e=d+12|0;if((f[e>>2]|0)!=(b|0))f[e>>2]=b;Oq(b)}Oq(d)}d=f[c+68>>2]|0;if(d|0){b=c+72|0;e=f[b>>2]|0;if((e|0)!=(d|0))f[b>>2]=e+(~((e+-4-d|0)>>>2)<<2);Oq(d)}d=c+64|0;e=f[d>>2]|0;f[d>>2]=0;if(e|0){d=f[e>>2]|0;if(d|0){b=e+4|0;if((f[b>>2]|0)!=(d|0))f[b>>2]=d;Oq(d)}Oq(e)}Oq(c)}c=f[a+16>>2]|0;if(!c)return;e=a+20|0;a=f[e>>2]|0;if((a|0)!=(c|0))f[e>>2]=a+(~((a+-4-c|0)>>>2)<<2);Oq(c);return}function Oi(){var a=0,b=0,c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0;a=u;u=u+48|0;b=a+32|0;c=a+24|0;d=a+16|0;e=a;g=a+36|0;a=sn()|0;if(a|0?(h=f[a>>2]|0,h|0):0){a=h+48|0;i=f[a>>2]|0;j=f[a+4>>2]|0;if(!((i&-256|0)==1126902528&(j|0)==1129074247)){f[c>>2]=18701;Hn(18651,c)}if((i|0)==1126902529&(j|0)==1129074247)k=f[h+44>>2]|0;else k=h+80|0;f[g>>2]=k;k=f[h>>2]|0;h=f[k+4>>2]|0;if(Sa[f[(f[258]|0)+16>>2]&31](1032,k,g)|0){k=f[g>>2]|0;g=Qa[f[(f[k>>2]|0)+8>>2]&127](k)|0;f[e>>2]=18701;f[e+4>>2]=h;f[e+8>>2]=g;Hn(18565,e)}else{f[d>>2]=18701;f[d+4>>2]=h;Hn(18610,d)}}Hn(18689,b)}function Pi(a,c,d){a=a|0;c=c|0;d=d|0;var e=0;do if(a){if(c>>>0<128){b[a>>0]=c;e=1;break}d=(Jq()|0)+188|0;if(!(f[f[d>>2]>>2]|0))if((c&-128|0)==57216){b[a>>0]=c;e=1;break}else{d=Vq()|0;f[d>>2]=84;e=-1;break}if(c>>>0<2048){b[a>>0]=c>>>6|192;b[a+1>>0]=c&63|128;e=2;break}if(c>>>0<55296|(c&-8192|0)==57344){b[a>>0]=c>>>12|224;b[a+1>>0]=c>>>6&63|128;b[a+2>>0]=c&63|128;e=3;break}if((c+-65536|0)>>>0<1048576){b[a>>0]=c>>>18|240;b[a+1>>0]=c>>>12&63|128;b[a+2>>0]=c>>>6&63|128;b[a+3>>0]=c&63|128;e=4;break}else{d=Vq()|0;f[d>>2]=84;e=-1;break}}else e=1;while(0);return e|0}function Qi(a){a=a|0;var b=0,c=0,d=0;b=f[a+92>>2]|0;if(b|0){c=a+96|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+76>>2]|0;if(b|0){d=a+80|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+64>>2]|0;if(b|0){c=a+68|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+52>>2]|0;if(b|0){d=a+56|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}f[a+4>>2]=3636;b=f[a+24>>2]|0;if(b|0)Oq(b);b=f[a+12>>2]|0;if(!b)return;Oq(b);return}function Ri(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;c=a+4|0;d=f[a>>2]|0;e=(f[c>>2]|0)-d|0;g=e>>2;h=g+1|0;if(h>>>0>1073741823)aq(a);i=a+8|0;j=(f[i>>2]|0)-d|0;k=j>>1;l=j>>2>>>0<536870911?(k>>>0<h>>>0?h:k):1073741823;do if(l)if(l>>>0>1073741823){k=ra(8)|0;Oo(k,16035);f[k>>2]=7256;va(k|0,1112,110)}else{k=ln(l<<2)|0;m=k;n=k;break}else{m=0;n=0}while(0);k=m+(g<<2)|0;f[k>>2]=f[b>>2];if((e|0)>0)kh(n|0,d|0,e|0)|0;f[a>>2]=m;f[c>>2]=k+4;f[i>>2]=m+(l<<2);if(!d)return;Oq(d);return}function Si(a){a=a|0;var c=0,d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0;c=a+104|0;d=f[c>>2]|0;if((d|0)!=0?(f[a+108>>2]|0)>=(d|0):0)e=4;else{d=Wm(a)|0;if((d|0)>=0){g=f[c>>2]|0;c=a+8|0;if(g){i=f[c>>2]|0;j=f[a+4>>2]|0;k=g-(f[a+108>>2]|0)|0;g=i;if((i-j|0)<(k|0)){l=g;m=g}else{l=j+(k+-1)|0;m=g}}else{g=f[c>>2]|0;l=g;m=g}f[a+100>>2]=l;l=a+4|0;if(!m)n=f[l>>2]|0;else{g=f[l>>2]|0;l=a+108|0;f[l>>2]=m+1-g+(f[l>>2]|0);n=g}g=n+-1|0;if((d|0)==(h[g>>0]|0|0))o=d;else{b[g>>0]=d;o=d}}else e=4}if((e|0)==4){f[a+100>>2]=0;o=-1}return o|0}function Ti(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;f[a>>2]=1544;f[a+4>>2]=b;b=a+8|0;f[b>>2]=f[c>>2];f[b+4>>2]=f[c+4>>2];f[b+8>>2]=f[c+8>>2];f[b+12>>2]=f[c+12>>2];f[b+16>>2]=f[c+16>>2];f[b+20>>2]=f[c+20>>2];fk(a+32|0,c+24|0);f[a>>2]=2384;c=a+44|0;f[c>>2]=f[d>>2];f[c+4>>2]=f[d+4>>2];f[c+8>>2]=f[d+8>>2];f[c+12>>2]=f[d+12>>2];f[a>>2]=2440;d=a+112|0;c=a+60|0;b=c+52|0;do{f[c>>2]=0;c=c+4|0}while((c|0)<(b|0));Zm(d);f[a+152>>2]=0;f[a+156>>2]=0;f[a+160>>2]=0;return}function Ui(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;f[a>>2]=1544;f[a+4>>2]=b;b=a+8|0;f[b>>2]=f[c>>2];f[b+4>>2]=f[c+4>>2];f[b+8>>2]=f[c+8>>2];f[b+12>>2]=f[c+12>>2];f[b+16>>2]=f[c+16>>2];f[b+20>>2]=f[c+20>>2];fk(a+32|0,c+24|0);f[a>>2]=1964;c=a+44|0;f[c>>2]=f[d>>2];f[c+4>>2]=f[d+4>>2];f[c+8>>2]=f[d+8>>2];f[c+12>>2]=f[d+12>>2];f[a>>2]=2020;d=a+112|0;c=a+60|0;b=c+52|0;do{f[c>>2]=0;c=c+4|0}while((c|0)<(b|0));Zm(d);f[a+152>>2]=0;f[a+156>>2]=0;f[a+160>>2]=0;return}function Vi(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=2440;b=f[a+152>>2]|0;if(b|0){c=a+156|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+112>>2]|0;if(b|0){d=a+116|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+96>>2]|0;if(b|0)Oq(b);b=f[a+84>>2]|0;if(b|0)Oq(b);b=f[a+72>>2]|0;if(b|0)Oq(b);b=f[a+60>>2]|0;if(b|0)Oq(b);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b)return;c=a+36|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function Wi(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0;d=u;u=u+16|0;e=d;g=f[(f[c+4>>2]|0)+4>>2]|0;if(!g){f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;u=d;return}if(!(Dj(d+12|0,f[c+44>>2]|0,g)|0)){g=ln(32)|0;f[e>>2]=g;f[e+8>>2]=-2147483616;f[e+4>>2]=26;c=g;h=15859;i=c+26|0;do{b[c>>0]=b[h>>0]|0;c=c+1|0;h=h+1|0}while((c|0)<(i|0));b[g+26>>0]=0;f[a>>2]=-1;pj(a+4|0,e);if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0)}else{f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0}u=d;return}function Xi(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0;c=b+48|0;if((mi(f[c>>2]|0)|0)>9){d=0;return d|0}if((Qa[f[(f[b>>2]|0)+8>>2]&127](b)|0)!=1){d=0;return d|0}e=b+4|0;b=(f[(f[(f[e>>2]|0)+8>>2]|0)+(a<<2)>>2]|0)+56|0;a=f[b>>2]|0;do if((a|0)==3)if((mi(f[c>>2]|0)|0)<4){d=5;return d|0}else{g=f[b>>2]|0;break}else g=a;while(0);a=mi(f[c>>2]|0)|0;if((g|0)==1){d=(a|0)<4?6:0;return d|0}if((a|0)>7){d=0;return d|0}if((mi(f[c>>2]|0)|0)>1){d=1;return d|0}else return ((f[(f[e>>2]|0)+80>>2]|0)>>>0<40?1:4)|0;return 0}function Yi(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=2020;b=f[a+152>>2]|0;if(b|0){c=a+156|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+112>>2]|0;if(b|0){d=a+116|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+96>>2]|0;if(b|0)Oq(b);b=f[a+84>>2]|0;if(b|0)Oq(b);b=f[a+72>>2]|0;if(b|0)Oq(b);b=f[a+60>>2]|0;if(b|0)Oq(b);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b)return;c=a+36|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function Zi(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0;g=u;u=u+128|0;h=g+124|0;i=g;j=i;k=6596;l=j+124|0;do{f[j>>2]=f[k>>2];j=j+4|0;k=k+4|0}while((j|0)<(l|0));if((c+-1|0)>>>0>2147483646)if(!c){m=h;n=1;o=4}else{h=Vq()|0;f[h>>2]=75;p=-1}else{m=a;n=c;o=4}if((o|0)==4){o=-2-m|0;c=n>>>0>o>>>0?o:n;f[i+48>>2]=c;n=i+20|0;f[n>>2]=m;f[i+44>>2]=m;o=m+c|0;m=i+16|0;f[m>>2]=o;f[i+28>>2]=o;o=Ah(i,d,e)|0;if(!c)p=o;else{c=f[n>>2]|0;b[c+(((c|0)==(f[m>>2]|0))<<31>>31)>>0]=0;p=o}}u=g;return p|0}function _i(a){a=a|0;var c=0,d=0,e=0,g=0;f[a>>2]=3480;c=a+72|0;d=a+136|0;e=a+4|0;g=e+64|0;do{f[e>>2]=0;e=e+4|0}while((e|0)<(g|0));e=c;g=e+64|0;do{f[e>>2]=0;e=e+4|0}while((e|0)<(g|0));n[d>>2]=$(1.0);d=a+140|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;f[d+12>>2]=0;f[d+16>>2]=0;f[d+20>>2]=0;f[a+164>>2]=-1;d=a+168|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;f[d+12>>2]=0;f[d+16>>2]=0;f[d+20>>2]=0;f[d+24>>2]=0;wn(a+200|0);Gn(a+232|0);d=a+264|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;f[d+12>>2]=0;f[d+16>>2]=0;f[d+20>>2]=0;b[d+24>>0]=0;return}function $i(a,c,d,e){a=a|0;c=c|0;d=d|0;e=+e;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;a=u;u=u+16|0;g=a;if(!c){h=0;u=a;return h|0}f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;i=Gj(d)|0;if(i>>>0>4294967279)aq(g);if(i>>>0<11){b[g+11>>0]=i;if(!i)j=g;else{k=g;l=7}}else{m=i+16&-16;n=ln(m)|0;f[g>>2]=n;f[g+8>>2]=m|-2147483648;f[g+4>>2]=i;k=n;l=7}if((l|0)==7){kh(k|0,d|0,i|0)|0;j=k}b[j+i>>0]=0;Zl(c,g,e);if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);h=1;u=a;return h|0}function aj(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0;a=u;u=u+16|0;g=a;if(!c){h=0;u=a;return h|0}f[g>>2]=0;f[g+4>>2]=0;f[g+8>>2]=0;i=Gj(d)|0;if(i>>>0>4294967279)aq(g);if(i>>>0<11){b[g+11>>0]=i;if(!i)j=g;else{k=g;l=7}}else{m=i+16&-16;n=ln(m)|0;f[g>>2]=n;f[g+8>>2]=m|-2147483648;f[g+4>>2]=i;k=n;l=7}if((l|0)==7){kh(k|0,d|0,i|0)|0;j=k}b[j+i>>0]=0;$l(c,g,e);if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);h=1;u=a;return h|0}function bj(a){a=a|0;var c=0,d=0,e=0,g=0,h=0;c=f[a+28>>2]|0;if(c|0){d=c;do{c=d;d=f[d>>2]|0;e=c+8|0;g=c+20|0;h=f[g>>2]|0;f[g>>2]=0;if(h|0){bj(h);Oq(h)}if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);Oq(c)}while((d|0)!=0)}d=a+20|0;c=f[d>>2]|0;f[d>>2]=0;if(c|0)Oq(c);c=f[a+8>>2]|0;if(c|0){d=c;do{c=d;d=f[d>>2]|0;e=c+8|0;h=f[c+20>>2]|0;if(h|0){g=c+24|0;if((f[g>>2]|0)!=(h|0))f[g>>2]=h;Oq(h)}if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);Oq(c)}while((d|0)!=0)}d=f[a>>2]|0;f[a>>2]=0;if(!d)return;Oq(d);return}function cj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0;e=u;u=u+16|0;g=e;h=f[c+36>>2]|0;if(!h){i=ln(32)|0;f[g>>2]=i;f[g+8>>2]=-2147483616;f[g+4>>2]=23;j=i;k=15706;l=j+23|0;do{b[j>>0]=b[k>>0]|0;j=j+1|0;k=k+1|0}while((j|0)<(l|0));b[i+23>>0]=0;f[a>>2]=-1;pj(a+4|0,g);if((b[g+11>>0]|0)<0)Oq(f[g>>2]|0);u=e;return}g=f[c+40>>2]|0;if(!g){Sc(a,c,h,d);u=e;return}else{bi(a,c,g,d);u=e;return}}function dj(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0;tk(a);b=a+84|0;c=f[b>>2]|0;if((c|0)<=0)return;d=c<<5;e=Lq(c>>>0>134217727|d>>>0>4294967291?-1:d+4|0)|0;f[e>>2]=c;d=e+4|0;e=d+(c<<5)|0;c=d;do{wn(c);c=c+32|0}while((c|0)!=(e|0));e=a+80|0;a=f[e>>2]|0;f[e>>2]=d;if(a|0){d=a+-4|0;c=f[d>>2]|0;if(c|0){g=a+(c<<5)|0;do{g=g+-32|0;Fj(g)}while((g|0)!=(a|0))}Mq(d)}if((f[b>>2]|0)>0)h=0;else return;do{tk((f[e>>2]|0)+(h<<5)|0);h=h+1|0}while((h|0)<(f[b>>2]|0));return}function ej(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0;if(!b){d=0;return d|0}if(f[b+4>>2]|0){d=0;return d|0}a=ln(52)|0;Ub(a,c);f[a+40>>2]=0;f[a+44>>2]=0;f[a+48>>2]=0;c=b+4|0;b=f[c>>2]|0;f[c>>2]=a;if(!b){d=1;return d|0}a=b+40|0;c=f[a>>2]|0;if(c|0){e=b+44|0;g=f[e>>2]|0;if((g|0)==(c|0))h=c;else{i=g;do{g=i+-4|0;f[e>>2]=g;j=f[g>>2]|0;f[g>>2]=0;if(j|0){bj(j);Oq(j)}i=f[e>>2]|0}while((i|0)!=(c|0));h=f[a>>2]|0}Oq(h)}bj(b);Oq(b);d=1;return d|0}function fj(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0;c=f[a>>2]|0;if(b){b=c+8|0;d=b;e=Vn(f[d>>2]|0,f[d+4>>2]|0,1,0)|0;d=b;f[d>>2]=e;f[d+4>>2]=I;d=a+28|0;e=f[d>>2]|0;b=a+24|0;f[b>>2]=f[b>>2]|1<<e;g=d;h=e}else{e=c;d=Vn(f[e>>2]|0,f[e+4>>2]|0,1,0)|0;e=c;f[e>>2]=d;f[e+4>>2]=I;e=a+28|0;g=e;h=f[e>>2]|0}e=h+1|0;f[g>>2]=e;if((e|0)!=32)return;e=a+24|0;h=a+16|0;d=f[h>>2]|0;if((d|0)==(f[a+20>>2]|0))Ri(a+12|0,e);else{f[d>>2]=f[e>>2];f[h>>2]=d+4}f[g>>2]=0;f[e>>2]=0;return}function gj(a,b){a=a|0;b=b|0;var c=0,d=0;c=a+32|0;a=f[b>>2]|0;f[b>>2]=0;b=f[c>>2]|0;f[c>>2]=a;if(!b)return;a=b+88|0;c=f[a>>2]|0;f[a>>2]=0;if(c|0){a=f[c+8>>2]|0;if(a|0){d=c+12|0;if((f[d>>2]|0)!=(a|0))f[d>>2]=a;Oq(a)}Oq(c)}c=f[b+68>>2]|0;if(c|0){a=b+72|0;d=f[a>>2]|0;if((d|0)!=(c|0))f[a>>2]=d+(~((d+-4-c|0)>>>2)<<2);Oq(c)}c=b+64|0;d=f[c>>2]|0;f[c>>2]=0;if(d|0){c=f[d>>2]|0;if(c|0){a=d+4|0;if((f[a>>2]|0)!=(c|0))f[a>>2]=c;Oq(c)}Oq(d)}Oq(b);return}function hj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;e=u;u=u+16|0;g=e;if(c|0){h=a+11|0;i=b[h>>0]|0;if(i<<24>>24<0){j=f[a+4>>2]|0;k=(f[a+8>>2]&2147483647)+-1|0}else{j=i&255;k=10}if((k-j|0)>>>0<c>>>0){xj(a,k,c-k+j|0,j,j,0,0);l=b[h>>0]|0}else l=i;if(l<<24>>24<0)m=f[a>>2]|0;else m=a;Qn(m+j|0,c,d)|0;d=j+c|0;if((b[h>>0]|0)<0)f[a+4>>2]=d;else b[h>>0]=d;b[g>>0]=0;up(m+d|0,g)}u=e;return a|0}function ij(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0;d=u;u=u+48|0;e=d+4|0;g=d;h=f[b+12>>2]|0;i=f[b+4>>2]|0;b=e;j=b+36|0;do{f[b>>2]=0;b=b+4|0}while((b|0)<(j|0));zh(g,c,h,i,e);i=f[e+24>>2]|0;if(!i){k=f[g>>2]|0;f[a>>2]=k;u=d;return}h=e+28|0;e=f[h>>2]|0;if((e|0)!=(i|0))f[h>>2]=e+(~((e+-4-i|0)>>>2)<<2);Oq(i);k=f[g>>2]|0;f[a>>2]=k;u=d;return}function jj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;e=u;u=u+16|0;g=e;h=a+11|0;i=b[h>>0]|0;j=i<<24>>24<0;if(j)k=(f[a+8>>2]&2147483647)+-1|0;else k=10;do if(k>>>0>=d>>>0){if(j)l=f[a>>2]|0;else l=a;Eo(l,c,d)|0;b[g>>0]=0;up(l+d|0,g);if((b[h>>0]|0)<0){f[a+4>>2]=d;break}else{b[h>>0]=d;break}}else{if(j)m=f[a+4>>2]|0;else m=i&255;Bi(a,k,d-k|0,m,0,m,d,c)}while(0);u=e;return a|0}function kj(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0;b=f[a>>2]|0;if(!b)return;c=a+4|0;d=f[c>>2]|0;if((d|0)==(b|0))e=b;else{g=d;do{f[c>>2]=g+-136;d=f[g+-20>>2]|0;if(d|0){h=g+-16|0;i=f[h>>2]|0;if((i|0)!=(d|0))f[h>>2]=i+(~((i+-4-d|0)>>>2)<<2);Oq(d)}d=f[g+-32>>2]|0;if(d|0){i=g+-28|0;h=f[i>>2]|0;if((h|0)!=(d|0))f[i>>2]=h+(~((h+-4-d|0)>>>2)<<2);Oq(d)}Mi(g+-132|0);g=f[c>>2]|0}while((g|0)!=(b|0));e=f[a>>2]|0}Oq(e);return}function lj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0;e=u;u=u+16|0;g=e;h=a+11|0;i=b[h>>0]|0;j=i<<24>>24<0;if(j){k=f[a+4>>2]|0;l=(f[a+8>>2]&2147483647)+-1|0}else{k=i&255;l=10}if((l-k|0)>>>0>=d>>>0){if(d|0){if(j)m=f[a>>2]|0;else m=a;Fo(m+k|0,c,d)|0;j=k+d|0;if((b[h>>0]|0)<0)f[a+4>>2]=j;else b[h>>0]=j;b[g>>0]=0;up(m+j|0,g)}}else Bi(a,l,d-l+k|0,k,k,0,d,c);u=e;return a|0}function mj(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0;f[a>>2]=3932;b=f[a+32>>2]|0;if(b|0){c=a+36|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+20>>2]|0;if(b|0){d=a+24|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=a+8|0;c=f[b>>2]|0;if(!c)return;d=a+12|0;a=f[d>>2]|0;if((a|0)==(c|0))e=c;else{g=a;do{a=g+-4|0;f[d>>2]=a;h=f[a>>2]|0;f[a>>2]=0;if(h|0)Va[f[(f[h>>2]|0)+4>>2]&127](h);g=f[d>>2]|0}while((g|0)!=(c|0));e=f[b>>2]|0}Oq(e);return}function nj(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0;c=a+4|0;if((Qa[f[(f[b>>2]|0)+20>>2]&127](b)|0)<=0){d=1;return d|0}a=0;while(1){e=f[(f[c>>2]|0)+4>>2]|0;g=dm(e,Ra[f[(f[b>>2]|0)+24>>2]&127](b,a)|0)|0;if((g|0)==-1){d=0;h=6;break}e=f[(f[b>>2]|0)+28>>2]|0;i=fl(f[c>>2]|0,g)|0;a=a+1|0;if(!(Ra[e&127](b,i)|0)){d=0;h=6;break}if((a|0)>=(Qa[f[(f[b>>2]|0)+20>>2]&127](b)|0)){d=1;h=6;break}}if((h|0)==6)return d|0;return 0}function oj(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0;if(!(ho(a,b,c)|0)){d=0;return d|0}if(!(Qa[f[(f[a>>2]|0)+52>>2]&127](a)|0)){d=0;return d|0}c=a+4|0;e=a+8|0;g=f[c>>2]|0;if((f[e>>2]|0)==(g|0)){d=1;return d|0}h=a+36|0;a=0;i=g;while(1){g=f[(f[h>>2]|0)+(a<<2)>>2]|0;if(!(Sa[f[(f[g>>2]|0)+8>>2]&31](g,b,f[i+(a<<2)>>2]|0)|0)){d=0;j=7;break}a=a+1|0;i=f[c>>2]|0;if(a>>>0>=(f[e>>2]|0)-i>>2>>>0){d=1;j=7;break}}if((j|0)==7)return d|0;return 0}function pj(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0;d=u;u=u+16|0;e=d;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;if((b[c+11>>0]|0)<0){g=f[c>>2]|0;h=f[c+4>>2]|0;if(h>>>0>4294967279)aq(a);if(h>>>0<11){b[a+11>>0]=h;i=a}else{j=h+16&-16;k=ln(j)|0;f[a>>2]=k;f[a+8>>2]=j|-2147483648;f[a+4>>2]=h;i=k}Fo(i,g,h)|0;b[e>>0]=0;up(i+h|0,e)}else{f[a>>2]=f[c>>2];f[a+4>>2]=f[c+4>>2];f[a+8>>2]=f[c+8>>2]}u=d;return}function qj(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0;b[c+53>>0]=1;do if((f[c+4>>2]|0)==(e|0)){b[c+52>>0]=1;a=c+16|0;h=f[a>>2]|0;if(!h){f[a>>2]=d;f[c+24>>2]=g;f[c+36>>2]=1;if(!((g|0)==1?(f[c+48>>2]|0)==1:0))break;b[c+54>>0]=1;break}if((h|0)!=(d|0)){h=c+36|0;f[h>>2]=(f[h>>2]|0)+1;b[c+54>>0]=1;break}h=c+24|0;a=f[h>>2]|0;if((a|0)==2){f[h>>2]=g;i=g}else i=a;if((i|0)==1?(f[c+48>>2]|0)==1:0)b[c+54>>0]=1}while(0);return}function rj(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0;c=a+36|0;d=a+40|0;e=f[c>>2]|0;if((f[d>>2]|0)!=(e|0)){g=0;h=e;do{vg(h+(g*24|0)|0,b)|0;g=g+1|0;h=f[c>>2]|0}while(g>>>0<(((f[d>>2]|0)-h|0)/24|0)>>>0)}h=a+48|0;d=a+52|0;a=f[h>>2]|0;if((f[d>>2]|0)==(a|0))return 1;else{i=0;j=a}do{a=f[j+(i<<2)>>2]|0;ci(a<<1^a>>31,b)|0;i=i+1|0;j=f[h>>2]|0}while(i>>>0<(f[d>>2]|0)-j>>2>>>0);return 1}function sj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0;e=a+d|0;c=c&255;if((d|0)>=67){while(a&3){b[a>>0]=c;a=a+1|0}g=e&-4|0;h=g-64|0;i=c|c<<8|c<<16|c<<24;while((a|0)<=(h|0)){f[a>>2]=i;f[a+4>>2]=i;f[a+8>>2]=i;f[a+12>>2]=i;f[a+16>>2]=i;f[a+20>>2]=i;f[a+24>>2]=i;f[a+28>>2]=i;f[a+32>>2]=i;f[a+36>>2]=i;f[a+40>>2]=i;f[a+44>>2]=i;f[a+48>>2]=i;f[a+52>>2]=i;f[a+56>>2]=i;f[a+60>>2]=i;a=a+64|0}while((a|0)<(g|0)){f[a>>2]=i;a=a+4|0}}while((a|0)<(e|0)){b[a>>0]=c;a=a+1|0}return e-d|0}function tj(a,c,d,e,g){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0;do if(!(fp(a,f[c+8>>2]|0,g)|0)){if(fp(a,f[c>>2]|0,g)|0){if((f[c+16>>2]|0)!=(d|0)?(h=c+20|0,(f[h>>2]|0)!=(d|0)):0){f[c+32>>2]=e;f[h>>2]=d;h=c+40|0;f[h>>2]=(f[h>>2]|0)+1;if((f[c+36>>2]|0)==1?(f[c+24>>2]|0)==2:0)b[c+54>>0]=1;f[c+44>>2]=4;break}if((e|0)==1)f[c+32>>2]=1}}else Vm(0,c,d,e);while(0);return}function uj(a){a=a|0;var b=0,c=0,d=0,e=0;b=a+80|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0){b=c+-4|0;d=f[b>>2]|0;if(d|0){e=c+(d<<5)|0;do{e=e+-32|0;Fj(e)}while((e|0)!=(c|0))}Mq(b)}b=f[a+68>>2]|0;if(b|0){c=a+72|0;e=f[c>>2]|0;if((e|0)!=(b|0))f[c>>2]=e+(~((e+-4-b|0)>>>2)<<2);Oq(b)}b=a+44|0;e=f[b>>2]|0;f[b>>2]=0;if(e|0)Oq(e);e=f[a+32>>2]|0;if(!e){Fj(a);return}b=a+36|0;if((f[b>>2]|0)!=(e|0))f[b>>2]=e;Oq(e);Fj(a);return}function vj(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3092;b=f[a+136>>2]|0;if(b|0){c=a+140|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+96>>2]|0;if(b|0){d=a+100|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+76>>2]|0;if(b|0)Oq(b);b=f[a+64>>2]|0;if(b|0)Oq(b);b=f[a+52>>2]|0;if(b|0)Oq(b);b=f[a+40>>2]|0;if(!b)return;Oq(b);return}function wj(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0;if((d|0)<0){e=0;return e|0}do if(!b){d=a+4|0;g=f[d>>2]|0;h=f[a>>2]|0;i=g-h|0;if(i>>>0<c>>>0){Fi(a,c-i|0);break}if(i>>>0>c>>>0?(i=h+c|0,(i|0)!=(g|0)):0)f[d>>2]=i}else Cg(a,b,b+c|0);while(0);c=a+24|0;a=c;b=Vn(f[a>>2]|0,f[a+4>>2]|0,1,0)|0;a=c;f[a>>2]=b;f[a+4>>2]=I;e=1;return e|0}function xj(a,c,d,e,g,h,i){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;i=i|0;var j=0,k=0,l=0,m=0;if((-17-c|0)>>>0<d>>>0)aq(a);if((b[a+11>>0]|0)<0)j=f[a>>2]|0;else j=a;if(c>>>0<2147483623){k=d+c|0;d=c<<1;l=k>>>0<d>>>0?d:k;m=l>>>0<11?11:l+16&-16}else m=-17;l=ln(m)|0;if(g|0)Fo(l,j,g)|0;k=e-h-g|0;if(k|0)Fo(l+g+i|0,j+g+h|0,k)|0;if((c|0)!=10)Oq(j);f[a>>2]=l;f[a+8>>2]=m|-2147483648;return}function yj(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=2728;b=f[a+136>>2]|0;if(b|0){c=a+140|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+96>>2]|0;if(b|0){d=a+100|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+76>>2]|0;if(b|0)Oq(b);b=f[a+64>>2]|0;if(b|0)Oq(b);b=f[a+52>>2]|0;if(b|0)Oq(b);b=f[a+40>>2]|0;if(!b)return;Oq(b);return}function zj(a,b){a=a|0;b=b|0;if(!b)return;else{zj(a,f[b>>2]|0);zj(a,f[b+4>>2]|0);Ej(b+20|0,f[b+24>>2]|0);Oq(b);return}}function Aj(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;Yf(a,b,c);c=f[a+100>>2]|0;d=f[a+96>>2]|0;a=d;if((c|0)==(d|0))return;e=f[b>>2]|0;b=(c-d|0)/12|0;d=0;do{c=a+(d*12|0)|0;f[c>>2]=f[e+(f[c>>2]<<2)>>2];c=a+(d*12|0)+4|0;f[c>>2]=f[e+(f[c>>2]<<2)>>2];c=a+(d*12|0)+8|0;f[c>>2]=f[e+(f[c>>2]<<2)>>2];d=d+1|0}while(d>>>0<b>>>0);return}function Bj(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0;d=a+64|0;if((f[d>>2]|0)==0?(e=ln(32)|0,yn(e),g=f[d>>2]|0,f[d>>2]=e,g|0):0){e=f[g>>2]|0;if(e|0){h=g+4|0;if((f[h>>2]|0)!=(e|0))f[h>>2]=e;Oq(e)}Oq(g)}g=Vl(f[a+28>>2]|0)|0;e=X(g,b[a+24>>0]|0)|0;g=((e|0)<0)<<31>>31;h=f[d>>2]|0;i=un(e|0,g|0,c|0,0)|0;if(!(wj(h,0,i,I)|0)){j=0;return j|0}Kk(a,f[d>>2]|0,e,g,0,0);f[a+80>>2]=c;j=1;return j|0}function Cj(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0;d=u;u=u+64|0;e=d;if(!(fp(a,b,0)|0))if((b|0)!=0?(g=Eh(b,1056,1040,0)|0,(g|0)!=0):0){b=e+4|0;h=b+52|0;do{f[b>>2]=0;b=b+4|0}while((b|0)<(h|0));f[e>>2]=g;f[e+8>>2]=a;f[e+12>>2]=-1;f[e+48>>2]=1;Ya[f[(f[g>>2]|0)+28>>2]&3](g,e,f[c>>2]|0,1);if((f[e+24>>2]|0)==1){f[c>>2]=f[e+16>>2];i=1}else i=0;j=i}else j=0;else j=1;u=d;return j|0}function Dj(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0;if(!c){d=0;return d|0}e=c+40|0;g=c+44|0;ci((f[g>>2]|0)-(f[e>>2]|0)>>2,b)|0;h=f[e>>2]|0;e=f[g>>2]|0;if((h|0)!=(e|0)){g=h;do{h=f[g>>2]|0;if(h|0){ci(f[h+40>>2]|0,b)|0;lg(a,b,h)|0}g=g+4|0}while((g|0)!=(e|0))}lg(a,b,c)|0;d=1;return d|0}function Ej(a,c){a=a|0;c=c|0;var d=0;if(!c)return;Ej(a,f[c>>2]|0);Ej(a,f[c+4>>2]|0);a=c+16|0;d=c+28|0;if((b[d+11>>0]|0)<0)Oq(f[d>>2]|0);if((b[a+11>>0]|0)<0)Oq(f[a>>2]|0);Oq(c);return}function Fj(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0;b=u;u=u+16|0;c=b;d=c;f[d>>2]=0;f[d+4>>2]=0;qf(a,2,c);c=f[a+12>>2]|0;d=a+16|0;e=f[d>>2]|0;if((e|0)==(c|0))g=c;else{h=e+(~((e+-4-c|0)>>>2)<<2)|0;f[d>>2]=h;g=h}f[a+24>>2]=0;f[a+28>>2]=0;if(c|0){if((g|0)!=(c|0))f[d>>2]=g+(~((g+-4-c|0)>>>2)<<2);Oq(c)}c=f[a>>2]|0;if(!c){u=b;return}g=a+4|0;a=f[g>>2]|0;if((a|0)!=(c|0))f[g>>2]=a+(~((a+-8-c|0)>>>3)<<3);Oq(c);u=b;return}function Gj(a){a=a|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0,k=0,l=0;c=a;a:do if(!(c&3)){d=a;e=4}else{g=a;h=c;while(1){if(!(b[g>>0]|0)){i=h;break a}j=g+1|0;h=j;if(!(h&3)){d=j;e=4;break}else g=j}}while(0);if((e|0)==4){e=d;while(1){k=f[e>>2]|0;if(!((k&-2139062144^-2139062144)&k+-16843009))e=e+4|0;else break}if(!((k&255)<<24>>24))l=e;else{k=e;while(1){e=k+1|0;if(!(b[e>>0]|0)){l=e;break}else k=e}}i=l}return i-c|0}function Hj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0;e=u;u=u+16|0;g=e;h=a+11|0;i=b[h>>0]|0;j=i<<24>>24<0;if(j)k=f[a+4>>2]|0;else k=i&255;do if(k>>>0>=c>>>0)if(j){i=(f[a>>2]|0)+c|0;b[g>>0]=0;up(i,g);f[a+4>>2]=c;break}else{b[g>>0]=0;up(a+c|0,g);b[h>>0]=c;break}else hj(a,c-k|0,d)|0;while(0);u=e;return}function Ij(a){a=a|0;var b=0,c=0,d=0;if(!a)return;b=a+88|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0){b=f[c+8>>2]|0;if(b|0){d=c+12|0;if((f[d>>2]|0)!=(b|0))f[d>>2]=b;Oq(b)}Oq(c)}c=f[a+68>>2]|0;if(c|0){b=a+72|0;d=f[b>>2]|0;if((d|0)!=(c|0))f[b>>2]=d+(~((d+-4-c|0)>>>2)<<2);Oq(c)}c=a+64|0;d=f[c>>2]|0;f[c>>2]=0;if(d|0){c=f[d>>2]|0;if(c|0){b=d+4|0;if((f[b>>2]|0)!=(c|0))f[b>>2]=c;Oq(c)}Oq(d)}Oq(a);return}function Jj(a,c,d,e,g,h,i,j,k,l){a=a|0;c=c|0;d=d|0;e=e|0;g=g|0;h=h|0;i=i|0;j=j|0;k=k|0;l=l|0;var m=0,n=0,o=0;f[a>>2]=d;if(d|0){m=d+16|0;n=f[m+4>>2]|0;o=a+8|0;f[o>>2]=f[m>>2];f[o+4>>2]=n;n=d+24|0;d=f[n+4>>2]|0;o=a+16|0;f[o>>2]=f[n>>2];f[o+4>>2]=d}b[a+24>>0]=e;f[a+28>>2]=g;b[a+32>>0]=h&1;h=a+40|0;f[h>>2]=i;f[h+4>>2]=j;j=a+48|0;f[j>>2]=k;f[j+4>>2]=l;f[a+56>>2]=c;return}function Kj(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0;c=ln(88)|0;d=c+60|0;e=c;g=e+60|0;do{f[e>>2]=0;e=e+4|0}while((e|0)<(g|0));f[d>>2]=c;d=c+64|0;f[d>>2]=0;f[d+4>>2]=0;f[d+8>>2]=0;f[d+12>>2]=0;f[d+16>>2]=0;f[d+20>>2]=0;d=cg(c,b)|0;f[a>>2]=d?c:0;a=d?0:c;if(d)return;Ii(a);Oq(a);return}function Lj(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0;if((f[c+76>>2]|0)>=0?(Tq(c)|0)!=0:0){d=a&255;e=a&255;if((e|0)!=(b[c+75>>0]|0)?(g=c+20|0,h=f[g>>2]|0,h>>>0<(f[c+16>>2]|0)>>>0):0){f[g>>2]=h+1;b[h>>0]=d;i=e}else i=Nj(c,a)|0;Sq(c);j=i}else k=3;do if((k|0)==3){i=a&255;e=a&255;if((e|0)!=(b[c+75>>0]|0)?(d=c+20|0,h=f[d>>2]|0,h>>>0<(f[c+16>>2]|0)>>>0):0){f[d>>2]=h+1;b[h>>0]=i;j=e;break}j=Nj(c,a)|0}while(0);return j|0}function Mj(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0;d=u;u=u+16|0;e=d+4|0;g=d;h=d+8|0;i=f[a+4>>2]|0;if((i|0)==-1){j=0;u=d;return j|0}b[h>>0]=i;i=c+16|0;a=f[i+4>>2]|0;if(!((a|0)>0|(a|0)==0&(f[i>>2]|0)>>>0>0)){f[g>>2]=f[c+4>>2];f[e>>2]=f[g>>2];Me(c,e,h,h+1|0)|0}j=1;u=d;return j|0}function Nj(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,i=0,j=0,k=0,l=0,m=0,n=0;d=u;u=u+16|0;e=d;g=c&255;b[e>>0]=g;i=a+16|0;j=f[i>>2]|0;if(!j)if(!(vl(a)|0)){k=f[i>>2]|0;l=4}else m=-1;else{k=j;l=4}do if((l|0)==4){j=a+20|0;i=f[j>>2]|0;if(i>>>0<k>>>0?(n=c&255,(n|0)!=(b[a+75>>0]|0)):0){f[j>>2]=i+1;b[i>>0]=g;m=n;break}if((Sa[f[a+36>>2]&31](a,e,1)|0)==1)m=h[e>>0]|0;else m=-1}while(0);u=d;return m|0}function Oj(a,b){a=a|0;b=b|0;if(!b)return;else{Oj(a,f[b>>2]|0);Oj(a,f[b+4>>2]|0);Ej(b+20|0,f[b+24>>2]|0);Oq(b);return}}function Pj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0;e=u;u=u+16|0;g=e;h=e+4|0;f[g>>2]=c;c=ln(32)|0;f[h>>2]=c;f[h+8>>2]=-2147483616;f[h+4>>2]=17;i=c;j=14495;k=i+17|0;do{b[i>>0]=b[j>>0]|0;i=i+1|0;j=j+1|0}while((i|0)<(k|0));b[c+17>>0]=0;Xj(Hd(a,g)|0,h,d);if((b[h+11>>0]|0)>=0){u=e;return}Oq(f[h>>2]|0);u=e;return}function Qj(a,b){a=a|0;b=b|0;var c=0,d=0,e=0;c=f[a+16>>2]|0;if(((f[a+20>>2]|0)-c>>2|0)<=(b|0)){d=0;return d|0}e=f[c+(b<<2)>>2]|0;if((e|0)<0){d=0;return d|0}b=a+48|0;if((f[a+52>>2]|0)>>>0<=e>>>0)Ce(b,e+1|0,0);c=(f[b>>2]|0)+(e>>>5<<2)|0;f[c>>2]=f[c>>2]|1<<(e&31);c=f[a+36>>2]|0;if((f[a+40>>2]|0)-c>>2>>>0<=e>>>0){d=1;return d|0}Bp(f[c+(e<<2)>>2]|0);d=1;return d|0}function Rj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0;if(c>>>0>0|(c|0)==0&a>>>0>4294967295){e=d;f=a;g=c;while(1){c=hn(f|0,g|0,10,0)|0;e=e+-1|0;b[e>>0]=c&255|48;c=f;f=jp(f|0,g|0,10,0)|0;if(!(g>>>0>9|(g|0)==9&c>>>0>4294967295))break;else g=I}h=f;i=e}else{h=a;i=d}if(!h)j=i;else{d=h;h=i;while(1){i=h+-1|0;b[i>>0]=(d>>>0)%10|0|48;if(d>>>0<10){j=i;break}else{d=(d>>>0)/10|0;h=i}}}return j|0}function Sj(a){a=a|0;var c=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0;c=a;while(1){d=c+1|0;if(!(eq(b[c>>0]|0)|0))break;else c=d}a=b[c>>0]|0;switch(a<<24>>24|0){case 45:{e=1;f=5;break}case 43:{e=0;f=5;break}default:{g=0;h=c;i=a}}if((f|0)==5){g=e;h=d;i=b[d>>0]|0}if(!(Aq(i<<24>>24)|0))j=0;else{i=0;d=h;while(1){h=(i*10|0)+48-(b[d>>0]|0)|0;d=d+1|0;if(!(Aq(b[d>>0]|0)|0)){j=h;break}else i=h}}return (g|0?j:0-j|0)|0}function Tj(a,c,d){a=a|0;c=c|0;d=$(d);var e=0,g=0,h=0;e=u;u=u+16|0;g=e;il(g,d);h=Ai(a,c)|0;c=h+11|0;if((b[c>>0]|0)<0){b[f[h>>2]>>0]=0;f[h+4>>2]=0}else{b[h>>0]=0;b[c>>0]=0}gh(h,0);f[h>>2]=f[g>>2];f[h+4>>2]=f[g+4>>2];f[h+8>>2]=f[g+8>>2];u=e;return}function Uj(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0;b=u;u=u+16|0;c=b+8|0;d=b+4|0;e=b;f[e>>2]=f[(f[a+4>>2]|0)+80>>2];g=f[a+44>>2]|0;a=g+16|0;h=f[a+4>>2]|0;if((h|0)>0|(h|0)==0&(f[a>>2]|0)>>>0>0){u=b;return 1}f[d>>2]=f[g+4>>2];f[c>>2]=f[d>>2];Me(g,c,e,e+4|0)|0;u=b;return 1}function Vj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0;e=u;u=u+16|0;g=e;ll(g,d&1);d=Ai(a,c)|0;c=d+11|0;if((b[c>>0]|0)<0){b[f[d>>2]>>0]=0;f[d+4>>2]=0}else{b[d>>0]=0;b[c>>0]=0}gh(d,0);f[d>>2]=f[g>>2];f[d+4>>2]=f[g+4>>2];f[d+8>>2]=f[g+8>>2];u=e;return}function Wj(a){a=a|0;if(!a)return;Ej(a+24|0,f[a+28>>2]|0);zj(a+12|0,f[a+16>>2]|0);Ej(a,f[a+4>>2]|0);Oq(a);return}function Xj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0;e=u;u=u+16|0;g=e;ll(g,d);d=Ai(a,c)|0;c=d+11|0;if((b[c>>0]|0)<0){b[f[d>>2]>>0]=0;f[d+4>>2]=0}else{b[d>>0]=0;b[c>>0]=0}gh(d,0);f[d>>2]=f[g>>2];f[d+4>>2]=f[g+4>>2];f[d+8>>2]=f[g+8>>2];u=e;return}function Yj(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0,i=0,j=0,k=0;e=Rg(a,c)|0;if((e|0)==(a+4|0)){g=-1;h=(g|0)==-1;i=(g|0)!=0;j=h?d:i;return j|0}a=e+28|0;if((b[a+11>>0]|0)<0)k=f[a>>2]|0;else k=a;g=Sj(k)|0;h=(g|0)==-1;i=(g|0)!=0;j=h?d:i;return j|0}function Zj(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0,k=0;d=u;u=u+16|0;e=d;if(c>>>0>10){g=0;u=d;return g|0}h=ln(48)|0;f[e>>2]=h;f[e+8>>2]=-2147483600;f[e+4>>2]=33;i=h;j=15987;k=i+33|0;do{b[i>>0]=b[j>>0]|0;i=i+1|0;j=j+1|0}while((i|0)<(k|0));b[h+33>>0]=0;Xj(a,e,c);if((b[e+11>>0]|0)<0)Oq(f[e>>2]|0);g=1;u=d;return g|0}function _j(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0;c=f[b>>2]|0;if((c|0)==-1)return 1;b=c*3|0;if((b|0)==-1)return 1;c=f[a>>2]|0;a=f[c+(b<<2)>>2]|0;d=b+1|0;e=((d>>>0)%3|0|0)==0?b+-2|0:d;if((e|0)==-1)g=-1;else g=f[c+(e<<2)>>2]|0;e=(((b>>>0)%3|0|0)==0?2:-1)+b|0;if((e|0)==-1)h=-1;else h=f[c+(e<<2)>>2]|0;if((a|0)==(g|0))return 1;else return (a|0)==(h|0)|(g|0)==(h|0)|0;return 0}function $j(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,i=0,j=0,k=0;d=0;while(1){if((h[16654+d>>0]|0)==(a|0)){e=2;break}g=d+1|0;if((g|0)==87){i=16742;j=87;e=5;break}else d=g}if((e|0)==2)if(!d)k=16742;else{i=16742;j=d;e=5}if((e|0)==5)while(1){e=0;d=i;do{a=d;d=d+1|0}while((b[a>>0]|0)!=0);j=j+-1|0;if(!j){k=d;break}else{i=d;e=5}}return jq(k,f[c+20>>2]|0)|0}function ak(a,b){a=+a;b=b|0;var c=0,d=0,e=0,g=0.0,h=0.0,i=0,j=0.0;p[s>>3]=a;c=f[s>>2]|0;d=f[s+4>>2]|0;e=Yn(c|0,d|0,52)|0;switch(e&2047){case 0:{if(a!=0.0){g=+ak(a*18446744073709551616.0,b);h=g;i=(f[b>>2]|0)+-64|0}else{h=a;i=0}f[b>>2]=i;j=h;break}case 2047:{j=a;break}default:{f[b>>2]=(e&2047)+-1022;f[s>>2]=c;f[s+4>>2]=d&-2146435073|1071644672;j=+p[s>>3]}}return +j}function bk(a,b){a=+a;b=b|0;var c=0.0,d=0,e=0,g=0.0,h=0;if((b|0)<=1023)if((b|0)<-1022){c=a*2.2250738585072014e-308;d=(b|0)<-2044;e=b+2044|0;g=d?c*2.2250738585072014e-308:c;h=d?((e|0)>-1022?e:-1022):b+1022|0}else{g=a;h=b}else{c=a*8988465674311579538646525.0e283;e=(b|0)>2046;d=b+-2046|0;g=e?c*8988465674311579538646525.0e283:c;h=e?((d|0)<1023?d:1023):b+-1023|0}b=Tn(h+1023|0,0,52)|0;h=I;f[s>>2]=b;f[s+4>>2]=h;return +(g*+p[s>>3])}function ck(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0;if(!(f[a+80>>2]|0)){b=0;return b|0}c=a+8|0;d=a+12|0;a=f[c>>2]|0;if(((f[d>>2]|0)-a|0)>0){e=0;g=a}else{b=1;return b|0}while(1){a=f[g+(e<<2)>>2]|0;e=e+1|0;if(!(Gl(a,a)|0)){b=0;h=5;break}g=f[c>>2]|0;if((e|0)>=((f[d>>2]|0)-g>>2|0)){b=1;h=5;break}}if((h|0)==5)return b|0;return 0}function dk(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0;c=a+36|0;d=a+40|0;e=f[c>>2]|0;if((f[d>>2]|0)==(e|0)){g=1;return g|0}h=a+60|0;a=0;i=e;while(1){e=f[i+(a<<2)>>2]|0;a=a+1|0;if(!(Sa[f[(f[e>>2]|0)+20>>2]&31](e,h,b)|0)){g=0;j=5;break}i=f[c>>2]|0;if(a>>>0>=(f[d>>2]|0)-i>>2>>>0){g=1;j=5;break}}if((j|0)==5)return g|0;return 0}function ek(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0;c=a+36|0;d=a+40|0;a=f[c>>2]|0;if((f[d>>2]|0)==(a|0)){e=1;return e|0}else{g=0;h=a}while(1){a=f[h+(g<<2)>>2]|0;g=g+1|0;if(!(Ra[f[(f[a>>2]|0)+24>>2]&127](a,b)|0)){e=0;i=4;break}h=f[c>>2]|0;if(g>>>0>=(f[d>>2]|0)-h>>2>>>0){e=1;i=4;break}}if((i|0)==4)return e|0;return 0}function fk(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0;f[a>>2]=0;c=a+4|0;f[c>>2]=0;f[a+8>>2]=0;d=b+4|0;e=(f[d>>2]|0)-(f[b>>2]|0)|0;g=e>>2;if(!g)return;if(g>>>0>1073741823)aq(a);h=ln(e)|0;f[c>>2]=h;f[a>>2]=h;f[a+8>>2]=h+(g<<2);g=f[b>>2]|0;b=(f[d>>2]|0)-g|0;if((b|0)<=0)return;kh(h|0,g|0,b|0)|0;f[c>>2]=h+(b>>>2<<2);return}function gk(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0;c=a+8|0;d=f[a>>2]|0;if((f[c>>2]|0)-d>>2>>>0>=b>>>0)return;e=a+4|0;if(b>>>0>1073741823){g=ra(8)|0;Oo(g,16035);f[g>>2]=7256;va(g|0,1112,110)}g=(f[e>>2]|0)-d|0;h=ln(b<<2)|0;if((g|0)>0)kh(h|0,d|0,g|0)|0;f[a>>2]=h;f[e>>2]=h+(g>>2<<2);f[c>>2]=h+(b<<2);if(!d)return;Oq(d);return}function hk(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0,i=0;b=a+36|0;c=a+40|0;d=f[b>>2]|0;if((f[c>>2]|0)==(d|0)){e=1;return e|0}g=a+60|0;a=0;h=d;while(1){d=f[h+(a<<2)>>2]|0;a=a+1|0;if(!(Ra[f[(f[d>>2]|0)+16>>2]&127](d,g)|0)){e=0;i=5;break}h=f[b>>2]|0;if(a>>>0>=(f[c>>2]|0)-h>>2>>>0){e=1;i=5;break}}if((i|0)==5)return e|0;return 0}function ik(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0;d=f[a+176>>2]|0;e=f[a+172>>2]|0;a=e;if((d|0)==(e|0))return 0;g=(d-e|0)/136|0;e=0;while(1){if((f[a+(e*136|0)>>2]|0)==(c|0)){h=4;break}d=e+1|0;if(d>>>0<g>>>0)e=d;else{h=6;break}}if((h|0)==4)return ((b[a+(e*136|0)+100>>0]|0)==0?0:a+(e*136|0)+4|0)|0;else if((h|0)==6)return 0;return 0}function jk(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,h=0,i=0,j=0;d=u;u=u+16|0;e=d;g=ln(16)|0;f[e>>2]=g;f[e+8>>2]=-2147483632;f[e+4>>2]=15;h=g;i=14479;j=h+15|0;do{b[h>>0]=b[i>>0]|0;h=h+1|0;i=i+1|0}while((h|0)<(j|0));b[g+15>>0]=0;Xj(a,e,c);if((b[e+11>>0]|0)>=0){u=d;return}Oq(f[e>>2]|0);u=d;return}function kk(a,b){a=a|0;b=b|0;var c=0,d=0;c=f[a+72>>2]|0;if(!c){d=0;return d|0}f[c+4>>2]=a+60;if(!(Qa[f[(f[c>>2]|0)+12>>2]&127](c)|0)){d=0;return d|0}if(!(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)){d=0;return d|0}if(!(Ra[f[(f[a>>2]|0)+44>>2]&127](a,b)|0)){d=0;return d|0}d=Ra[f[(f[a>>2]|0)+48>>2]&127](a,b)|0;return d|0}function lk(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;f[a>>2]=0;d=a+4|0;f[d>>2]=0;f[a+8>>2]=0;if(!b)return;if(b>>>0>357913941)aq(a);e=ln(b*12|0)|0;f[d>>2]=e;f[a>>2]=e;f[a+8>>2]=e+(b*12|0);a=b;b=e;do{fk(b,c);b=(f[d>>2]|0)+12|0;f[d>>2]=b;a=a+-1|0}while((a|0)!=0);return}function mk(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0;c=f[b>>2]|0;if(!c){d=0;return d|0}e=a+44|0;g=f[e>>2]|0;if(g>>>0<(f[a+48>>2]|0)>>>0){f[b>>2]=0;f[g>>2]=c;f[e>>2]=(f[e>>2]|0)+4;d=1;return d|0}else{Ug(a+40|0,b);d=1;return d|0}return 0}function nk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3564;b=f[a+64>>2]|0;if(b|0){c=a+68|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}f[a+12>>2]=3588;b=f[a+32>>2]|0;if(b|0)Oq(b);b=f[a+20>>2]|0;if(!b){Oq(a);return}Oq(b);Oq(a);return}function ok(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3344;f[a+40>>2]=1196;b=f[a+48>>2]|0;if(b|0){c=a+52|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}f[a>>2]=1476;b=a+36|0;d=f[b>>2]|0;f[b>>2]=0;if(!d){Ni(a);Oq(a);return}Va[f[(f[d>>2]|0)+4>>2]&127](d);Ni(a);Oq(a);return}function pk(a,c){a=a|0;c=c|0;var d=0,e=0,g=0,i=0;f[c>>2]=2;d=a+4|0;a=c+8|0;e=f[a>>2]|0;g=(f[c+12>>2]|0)-e|0;if(g>>>0<4294967292){Lk(a,g+4|0,0);i=f[a>>2]|0}else i=e;e=i+g|0;g=h[d>>0]|h[d+1>>0]<<8|h[d+2>>0]<<16|h[d+3>>0]<<24;b[e>>0]=g;b[e+1>>0]=g>>8;b[e+2>>0]=g>>16;b[e+3>>0]=g>>24;return}function qk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3612;b=f[a+64>>2]|0;if(b|0){c=a+68|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}f[a+12>>2]=3636;b=f[a+32>>2]|0;if(b|0)Oq(b);b=f[a+20>>2]|0;if(!b){Oq(a);return}Oq(b);Oq(a);return}function rk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=2188;b=f[a+76>>2]|0;if(b|0)Oq(b);b=a+68|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0)Mq(c);f[a>>2]=1544;c=f[a+32>>2]|0;if(!c){Oq(a);return}b=a+36|0;d=f[b>>2]|0;if((d|0)!=(c|0))f[b>>2]=d+(~((d+-4-c|0)>>>2)<<2);Oq(c);Oq(a);return}function sk(a,c,d){a=a|0;c=c|0;d=$(d);var e=0,g=Oa,h=0;e=Rg(a,c)|0;if((e|0)==(a+4|0)){g=d;return $(g)}a=e+28|0;if((b[a+11>>0]|0)<0)h=f[a>>2]|0;else h=a;g=$(+Iq(h));return $(g)}function tk(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0;b=u;u=u+16|0;c=b;d=c;f[d>>2]=0;f[d+4>>2]=0;qf(a,2,c);c=f[a+12>>2]|0;d=a+16|0;e=f[d>>2]|0;if((e|0)==(c|0)){g=a+24|0;f[g>>2]=0;h=a+28|0;f[h>>2]=0;u=b;return}f[d>>2]=e+(~((e+-4-c|0)>>>2)<<2);g=a+24|0;f[g>>2]=0;h=a+28|0;f[h>>2]=0;u=b;return}function uk(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0,i=0,j=0;c=f[a+176>>2]|0;d=f[a+172>>2]|0;e=d;a:do if((c|0)!=(d|0)){g=(c-d|0)/136|0;h=0;while(1){if((f[e+(h*136|0)>>2]|0)==(b|0))break;i=h+1|0;if(i>>>0<g>>>0)h=i;else break a}j=e+(h*136|0)+104|0;return j|0}while(0);j=a+40|0;return j|0}function vk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3564;b=f[a+64>>2]|0;if(b|0){c=a+68|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}f[a+12>>2]=3588;b=f[a+32>>2]|0;if(b|0)Oq(b);b=f[a+20>>2]|0;if(!b)return;Oq(b);return}function wk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=1768;b=f[a+76>>2]|0;if(b|0)Oq(b);b=a+68|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0)Mq(c);f[a>>2]=1544;c=f[a+32>>2]|0;if(!c){Oq(a);return}b=a+36|0;d=f[b>>2]|0;if((d|0)!=(c|0))f[b>>2]=d+(~((d+-4-c|0)>>>2)<<2);Oq(c);Oq(a);return}function xk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3344;f[a+40>>2]=1196;b=f[a+48>>2]|0;if(b|0){c=a+52|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}f[a>>2]=1476;b=a+36|0;d=f[b>>2]|0;f[b>>2]=0;if(!d){Ni(a);return}Va[f[(f[d>>2]|0)+4>>2]&127](d);Ni(a);return}function yk(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,g=0,h=0;Nc(a,b);if((b|0)<=-1)return;c=a+88|0;d=f[c>>2]|0;e=f[a+84>>2]|0;if((d-e>>2|0)<=(b|0))return;a=e+(b<<2)|0;b=a+4|0;e=d-b|0;g=e>>2;if(!g)h=d;else{im(a|0,b|0,e|0)|0;h=f[c>>2]|0}e=a+(g<<2)|0;if((h|0)==(e|0))return;f[c>>2]=h+(~((h+-4-e|0)>>>2)<<2);return}function zk(a){a=a|0;var b=0,c=0,d=0,e=0,g=0,h=0;b=f[a+32>>2]|0;c=f[a+36>>2]|0;if((b|0)==(c|0)){d=1;return d|0}e=a+8|0;g=a+44|0;a=b;while(1){b=f[(f[e>>2]|0)+(f[a>>2]<<2)>>2]|0;a=a+4|0;if(!(Ra[f[(f[b>>2]|0)+20>>2]&127](b,f[g>>2]|0)|0)){d=0;h=5;break}if((a|0)==(c|0)){d=1;h=5;break}}if((h|0)==5)return d|0;return 0}function Ak(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=3612;b=f[a+64>>2]|0;if(b|0){c=a+68|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}f[a+12>>2]=3636;b=f[a+32>>2]|0;if(b|0)Oq(b);b=f[a+20>>2]|0;if(!b)return;Oq(b);return}function Bk(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0,i=0.0;d=u;u=u+128|0;e=d;g=e;h=g+124|0;do{f[g>>2]=0;g=g+4|0}while((g|0)<(h|0));g=e+4|0;f[g>>2]=a;h=e+8|0;f[h>>2]=-1;f[e+44>>2]=a;f[e+76>>2]=-1;Ym(e,0);i=+Rc(e,c,1);c=(f[g>>2]|0)-(f[h>>2]|0)+(f[e+108>>2]|0)|0;if(b|0)f[b>>2]=c|0?a+c|0:a;u=d;return +i}function Ck(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var g=0,h=0;a=c+16|0;g=f[a>>2]|0;do if(g){if((g|0)!=(d|0)){h=c+36|0;f[h>>2]=(f[h>>2]|0)+1;f[c+24>>2]=2;b[c+54>>0]=1;break}h=c+24|0;if((f[h>>2]|0)==2)f[h>>2]=e}else{f[a>>2]=d;f[c+24>>2]=e;f[c+36>>2]=1}while(0);return}function Dk(a){a=a|0;var b=0,c=0;f[a>>2]=2188;b=f[a+76>>2]|0;if(b|0)Oq(b);b=a+68|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0)Mq(c);f[a>>2]=1544;c=f[a+32>>2]|0;if(!c)return;b=a+36|0;a=f[b>>2]|0;if((a|0)!=(c|0))f[b>>2]=a+(~((a+-4-c|0)>>>2)<<2);Oq(c);return}function Ek(a){a=a|0;var c=0,d=0,e=0;c=a+74|0;d=b[c>>0]|0;b[c>>0]=d+255|d;d=a+20|0;c=a+28|0;if((f[d>>2]|0)>>>0>(f[c>>2]|0)>>>0)Sa[f[a+36>>2]&31](a,0,0)|0;f[a+16>>2]=0;f[c>>2]=0;f[d>>2]=0;d=f[a>>2]|0;if(!(d&4)){c=(f[a+44>>2]|0)+(f[a+48>>2]|0)|0;f[a+8>>2]=c;f[a+4>>2]=c;e=d<<27>>31}else{f[a>>2]=d|32;e=-1}return e|0}function Fk(a,c){a=a|0;c=c|0;var d=0,e=0,g=0;d=Rg(a,c)|0;if((d|0)==(a+4|0)){e=0;return e|0}a=d+28|0;if((b[a+11>>0]|0)<0)g=f[a>>2]|0;else g=a;e=((Sj(g)|0)+1|0)>>>0>1;return e|0}function Gk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=6152;b=f[a+96>>2]|0;if(b|0){c=a+100|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~(((d+-12-b|0)>>>0)/12|0)*12|0);Oq(b)}b=f[a+84>>2]|0;if(!b){Og(a);Oq(a);return}d=a+88|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b);Og(a);Oq(a);return}function Hk(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,g=0,h=0;e=Rg(a,c)|0;if((e|0)==(a+4|0)){g=d;return g|0}d=e+28|0;if((b[d+11>>0]|0)<0)h=f[d>>2]|0;else h=d;g=Sj(h)|0;return g|0}function Ik(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0;e=b>>31|((b|0)<0?-1:0)<<1;f=((b|0)<0?-1:0)>>31|((b|0)<0?-1:0)<<1;g=d>>31|((d|0)<0?-1:0)<<1;h=((d|0)<0?-1:0)>>31|((d|0)<0?-1:0)<<1;i=Xn(e^a|0,f^b|0,e|0,f|0)|0;b=I;a=g^e;e=h^f;return Xn((Ld(i,b,Xn(g^c|0,h^d|0,g|0,h|0)|0,I,0)|0)^a|0,I^e|0,a|0,e|0)|0}function Jk(a){a=a|0;var b=0,c=0;f[a>>2]=1768;b=f[a+76>>2]|0;if(b|0)Oq(b);b=a+68|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0)Mq(c);f[a>>2]=1544;c=f[a+32>>2]|0;if(!c)return;b=a+36|0;a=f[b>>2]|0;if((a|0)!=(c|0))f[b>>2]=a+(~((a+-4-c|0)>>>2)<<2);Oq(c);return}function Kk(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0,i=0,j=0;f[a>>2]=b;h=b+16|0;i=f[h+4>>2]|0;j=a+8|0;f[j>>2]=f[h>>2];f[j+4>>2]=i;i=b+24|0;b=f[i+4>>2]|0;j=a+16|0;f[j>>2]=f[i>>2];f[j+4>>2]=b;b=a+40|0;f[b>>2]=c;f[b+4>>2]=d;d=a+48|0;f[d>>2]=e;f[d+4>>2]=g;return}function Lk(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0;c=a+4|0;d=f[c>>2]|0;e=f[a>>2]|0;g=d-e|0;h=e;e=d;if(g>>>0>=b>>>0){if(g>>>0>b>>>0?(d=h+b|0,(d|0)!=(e|0)):0)f[c>>2]=d}else Fi(a,b-g|0);g=a+24|0;a=g;b=Vn(f[a>>2]|0,f[a+4>>2]|0,1,0)|0;a=g;f[a>>2]=b;f[a+4>>2]=I;return}function Mk(a,c){a=a|0;c=c|0;var d=0,e=0,g=0;d=Rg(a,c)|0;if((d|0)==(a+4|0)){e=-1;return e|0}a=d+28|0;if((b[a+11>>0]|0)<0)g=f[a>>2]|0;else g=a;e=Sj(g)|0;return e|0}function Nk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=6152;b=f[a+96>>2]|0;if(b|0){c=a+100|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~(((d+-12-b|0)>>>0)/12|0)*12|0);Oq(b)}b=f[a+84>>2]|0;if(!b){Og(a);return}d=a+88|0;c=f[d>>2]|0;if((c|0)!=(b|0))f[d>>2]=c+(~((c+-4-b|0)>>>2)<<2);Oq(b);Og(a);return}function Ok(a){a=a|0;var c=0,d=0,e=0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;f[a+16>>2]=0;f[a+20>>2]=0;b[a+24>>0]=1;c=a+68|0;d=a+28|0;e=d+40|0;do{f[d>>2]=0;d=d+4|0}while((d|0)<(e|0));f[c>>2]=a;c=a+72|0;f[c>>2]=0;f[c+4>>2]=0;f[c+8>>2]=0;f[c+12>>2]=0;f[c+16>>2]=0;f[c+20>>2]=0;return}function Pk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=2244;b=f[a+76>>2]|0;if(b|0)Oq(b);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b){Oq(a);return}c=a+36|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b);Oq(a);return}function Qk(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;var f=0,g=0,h=0;f=u;u=u+256|0;g=f;if((c|0)>(d|0)&(e&73728|0)==0){e=c-d|0;sj(g|0,b<<24>>24|0,(e>>>0<256?e:256)|0)|0;if(e>>>0>255){b=c-d|0;d=e;do{Xo(a,g,256);d=d+-256|0}while(d>>>0>255);h=b&255}else h=e;Xo(a,g,h)}u=f;return}function Rk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=1824;b=f[a+76>>2]|0;if(b|0)Oq(b);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b){Oq(a);return}c=a+36|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b);Oq(a);return}function Sk(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;var h=0;if(fp(a,f[b+8>>2]|0,g)|0)qj(0,b,c,d,e);else{h=f[a+8>>2]|0;_a[f[(f[h>>2]|0)+20>>2]&3](h,b,c,d,e,g)}return}function Tk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=2300;Fj(a+108|0);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b){Oq(a);return}c=a+36|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b);Oq(a);return}function Uk(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=1880;Fj(a+108|0);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b){Oq(a);return}c=a+36|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b);Oq(a);return}function Vk(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,f=0,g=0,h=0,i=0,j=0;a:do if(!d)e=0;else{f=a;g=d;h=c;while(1){i=b[f>>0]|0;j=b[h>>0]|0;if(i<<24>>24!=j<<24>>24)break;g=g+-1|0;if(!g){e=0;break a}else{f=f+1|0;h=h+1|0}}e=(i&255)-(j&255)|0}while(0);return e|0}function Wk(a){a=a|0;if(!(f[a+44>>2]|0))return 0;if(!(f[a+48>>2]|0))return 0;if(!(f[a+24>>2]|0))return 0;if(!(f[a+28>>2]|0))return 0;if(!(f[a+32>>2]|0))return 0;else return (f[a+36>>2]|0)!=0|0;return 0}function Xk(a){a=a|0;var b=0,c=0;f[a>>2]=2244;b=f[a+76>>2]|0;if(b|0)Oq(b);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b)return;c=a+36|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function Yk(a){a=a|0;var c=0,d=0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;c=0;while(1){if((c|0)==3)break;f[a+(c<<2)>>2]=0;c=c+1|0}if((b[a+11>>0]|0)<0)d=(f[a+8>>2]&2147483647)+-1|0;else d=10;Hj(a,d,0);return}function Zk(a){a=a|0;var b=0,c=0,d=0,e=0.0,g=0.0;b=f[a+8>>2]|0;if((b|0)<2){c=0;d=0;I=c;return d|0}e=+(b|0);g=+Zg(e)*e;e=+W(+(g-+p[a>>3]));c=+K(e)>=1.0?(e>0.0?~~+Y(+J(e/4294967296.0),4294967295.0)>>>0:~~+W((e-+(~~e>>>0))/4294967296.0)>>>0):0;d=~~e>>>0;I=c;return d|0}function _k(a){a=a|0;var b=0,c=0;f[a>>2]=1824;b=f[a+76>>2]|0;if(b|0)Oq(b);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b)return;c=a+36|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function $k(a,b){a=a|0;b=b|0;var c=0,d=0,e=0;c=f[a+16>>2]|0;if(((f[a+20>>2]|0)-c>>2|0)<=(b|0)){d=0;return d|0}e=f[c+(b<<2)>>2]|0;if((e|0)<0){d=0;return d|0}b=f[(f[a+36>>2]|0)+(e<<2)>>2]|0;e=f[b+32>>2]|0;if(e|0){d=e;return d|0}d=f[b+8>>2]|0;return d|0}function al(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=1232;b=f[a+16>>2]|0;if(b|0){c=a+20|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b)}b=f[a+4>>2]|0;if(!b)return;d=a+8|0;a=f[d>>2]|0;if((a|0)!=(b|0))f[d>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function bl(a){a=a|0;var b=0,c=0;f[a>>2]=2300;Fj(a+108|0);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b)return;c=a+36|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function cl(a){a=a|0;if(!(f[a+64>>2]|0))return 0;if(!(f[a+68>>2]|0))return 0;if(!(f[a+44>>2]|0))return 0;if(!(f[a+48>>2]|0))return 0;if(!(f[a+52>>2]|0))return 0;else return (f[a+56>>2]|0)!=0|0;return 0}function dl(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0;if(fp(a,f[b+8>>2]|0,0)|0)Ck(0,b,c,d);else{e=f[a+8>>2]|0;Ya[f[(f[e>>2]|0)+28>>2]&3](e,b,c,d)}return}function el(a){a=a|0;var b=0,c=0;f[a>>2]=1880;Fj(a+108|0);f[a>>2]=1544;b=f[a+32>>2]|0;if(!b)return;c=a+36|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function fl(a,b){a=a|0;b=b|0;var c=0,d=0;if((b|0)<0){c=0;return c|0}d=f[a+4>>2]|0;if(((f[d+12>>2]|0)-(f[d+8>>2]|0)>>2|0)<=(b|0)){c=0;return c|0}d=f[(f[a+8>>2]|0)+(f[(f[a+20>>2]|0)+(b<<2)>>2]<<2)>>2]|0;c=Ra[f[(f[d>>2]|0)+36>>2]&127](d,b)|0;return c|0}function gl(a,b){a=a|0;b=b|0;var c=0,d=0;if((b|0)<0){c=0;return c|0}d=f[a+4>>2]|0;if(((f[d+12>>2]|0)-(f[d+8>>2]|0)>>2|0)<=(b|0)){c=0;return c|0}d=f[(f[a+8>>2]|0)+(f[(f[a+20>>2]|0)+(b<<2)>>2]<<2)>>2]|0;c=Ra[f[(f[d>>2]|0)+32>>2]&127](d,b)|0;return c|0}function hl(a,c){a=a|0;c=c|0;var d=0,e=0,f=0,g=0;d=b[a>>0]|0;e=b[c>>0]|0;if(d<<24>>24==0?1:d<<24>>24!=e<<24>>24){f=e;g=d}else{d=c;c=a;do{c=c+1|0;d=d+1|0;a=b[c>>0]|0;e=b[d>>0]|0}while(!(a<<24>>24==0?1:a<<24>>24!=e<<24>>24));f=e;g=a}return (g&255)-(f&255)|0}function il(a,b){a=a|0;b=$(b);var c=0,d=0;c=u;u=u+16|0;d=c;Yk(d);Ei(a,d,b);Bo(d);u=c;return}function jl(a){a=a|0;var b=0,c=0,d=0,e=0,g=0;b=f[a>>2]|0;c=a+4|0;d=f[c>>2]|0;if((d|0)==(b|0))e=b;else{g=d+(~((d+-4-b|0)>>>2)<<2)|0;f[c>>2]=g;e=g}f[a+12>>2]=0;f[a+16>>2]=0;if(!b)return;if((e|0)!=(b|0))f[c>>2]=e+(~((e+-4-b|0)>>>2)<<2);Oq(b);return}function kl(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0;d=f[a+16>>2]|0;if(((f[a+20>>2]|0)-d>>2|0)<=(b|0)){e=-1;return e|0}g=f[d+(b<<2)>>2]|0;if((g|0)<0){e=-1;return e|0}e=f[(f[(f[(f[a+36>>2]|0)+(g<<2)>>2]|0)+16>>2]|0)+(c<<2)>>2]|0;return e|0}function ll(a,b){a=a|0;b=b|0;var c=0,d=0;c=u;u=u+16|0;d=c;Yk(d);Ji(a,d,b);Bo(d);u=c;return}function ml(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0,h=0;d=u;u=u+32|0;e=d;g=d+20|0;f[e>>2]=f[a+60>>2];f[e+4>>2]=0;f[e+8>>2]=b;f[e+12>>2]=g;f[e+16>>2]=c;if((to(za(140,e|0)|0)|0)<0){f[g>>2]=-1;h=-1}else h=f[g>>2]|0;u=d;return h|0}function nl(a,b){a=a|0;b=b|0;var c=0,d=0;if((b|0)==-1|(b|0)>4){c=0;return c|0}d=f[a+20+(b*12|0)>>2]|0;if(((f[a+20+(b*12|0)+4>>2]|0)-d|0)<=0){c=0;return c|0}b=f[d>>2]|0;if((b|0)==-1){c=0;return c|0}c=f[(f[a+8>>2]|0)+(b<<2)>>2]|0;return c|0}function ol(a,b){a=a|0;b=b|0;var c=0,d=0,e=0;c=f[a+16>>2]|0;if(((f[a+20>>2]|0)-c>>2|0)<=(b|0)){d=0;return d|0}e=f[c+(b<<2)>>2]|0;if((e|0)<0){d=0;return d|0}b=f[(f[a+36>>2]|0)+(e<<2)>>2]|0;d=(f[b+20>>2]|0)-(f[b+16>>2]|0)>>2;return d|0}function pl(a){a=a|0;if(!(f[a+40>>2]|0))return 0;if(!(f[a+24>>2]|0))return 0;if(!(f[a+28>>2]|0))return 0;if(!(f[a+32>>2]|0))return 0;else return (f[a+36>>2]|0)!=0|0;return 0}function ql(a){a=a|0;var b=0;if(!(f[a+24>>2]|0)){b=0;return b|0}if(!(f[a+28>>2]|0)){b=0;return b|0}if(!(f[a+32>>2]|0)){b=0;return b|0}b=(f[a+36>>2]|0)!=0;return b|0}function rl(a,b,c){a=a|0;b=b|0;c=c|0;var d=0;lh(a,c);f[a>>2]=1408;c=a+72|0;d=a+36|0;a=d+36|0;do{f[d>>2]=0;d=d+4|0}while((d|0)<(a|0));d=f[b>>2]|0;f[b>>2]=0;f[c>>2]=d;return}function sl(a){a=a|0;var b=0,c=0;f[a>>2]=3148;b=f[a+56>>2]|0;if(b|0)Oq(b);b=a+48|0;c=f[b>>2]|0;f[b>>2]=0;if(!c){Oq(a);return}Mq(c);Oq(a);return}function tl(a,c){a=a|0;c=c|0;var d=0,e=0;d=a;e=c;c=d+64|0;do{f[d>>2]=f[e>>2];d=d+4|0;e=e+4|0}while((d|0)<(c|0));e=a+64|0;f[a+88>>2]=0;f[e>>2]=0;f[e+4>>2]=0;f[e+8>>2]=0;f[e+12>>2]=0;f[e+16>>2]=0;b[e+20>>0]=0;return}function ul(a,c,d,e){a=a|0;c=c|0;d=d|0;e=e|0;var f=0,g=0;if((a|0)==0&(c|0)==0)f=d;else{g=d;d=c;c=a;while(1){a=g+-1|0;b[a>>0]=h[16636+(c&15)>>0]|0|e;c=Yn(c|0,d|0,4)|0;d=I;if((c|0)==0&(d|0)==0){f=a;break}else g=a}}return f|0}function vl(a){a=a|0;var c=0,d=0,e=0;c=a+74|0;d=b[c>>0]|0;b[c>>0]=d+255|d;d=f[a>>2]|0;if(!(d&8)){f[a+8>>2]=0;f[a+4>>2]=0;c=f[a+44>>2]|0;f[a+28>>2]=c;f[a+20>>2]=c;f[a+16>>2]=c+(f[a+48>>2]|0);e=0}else{f[a>>2]=d|32;e=-1}return e|0}function wl(a){a=a|0;if(!(f[a+60>>2]|0))return 0;if(!(f[a+44>>2]|0))return 0;if(!(f[a+48>>2]|0))return 0;if(!(f[a+52>>2]|0))return 0;else return (f[a+56>>2]|0)!=0|0;return 0}function xl(a,b){a=a|0;b=b|0;var c=0,d=0;c=f[b+88>>2]|0;if(!c){d=0;return d|0}if((f[c>>2]|0)!=2){d=0;return d|0}b=f[c+8>>2]|0;f[a+4>>2]=h[b>>0]|h[b+1>>0]<<8|h[b+2>>0]<<16|h[b+3>>0]<<24;d=1;return d|0}function yl(a){a=a|0;var b=0;if(!(f[a+44>>2]|0)){b=0;return b|0}if(!(f[a+48>>2]|0)){b=0;return b|0}if(!(f[a+52>>2]|0)){b=0;return b|0}b=(f[a+56>>2]|0)!=0;return b|0}function zl(a){a=a|0;vj(a);Oq(a);return}function Al(a){a=a|0;var b=0,c=0;f[a>>2]=2784;b=f[a+56>>2]|0;if(b|0)Oq(b);b=a+48|0;c=f[b>>2]|0;f[b>>2]=0;if(!c){Oq(a);return}Mq(c);Oq(a);return}function Bl(a,c){a=a|0;c=c|0;var d=0;if(f[c+56>>2]|0){d=0;return d|0}if((b[c+24>>0]|0)!=3){d=0;return d|0}f[a+44>>2]=c;d=1;return d|0}function Cl(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0;c=a+4|0;d=f[c>>2]|0;e=f[a>>2]|0;g=d-e|0;if(g>>>0<b>>>0){Fi(a,b-g|0);return}if(g>>>0<=b>>>0)return;g=e+b|0;if((g|0)==(d|0))return;f[c>>2]=g;return}function Dl(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=$(e);f[a+4>>2]=b;Zf(a+8|0,c,c+(d<<2)|0);n[a+20>>2]=e;return}function El(a,b){a=a|0;b=b|0;var c=0;if(!(Qa[f[(f[a>>2]|0)+40>>2]&127](a)|0)){c=0;return c|0}if(!(Ra[f[(f[a>>2]|0)+44>>2]&127](a,b)|0)){c=0;return c|0}c=Ra[f[(f[a>>2]|0)+48>>2]&127](a,b)|0;return c|0}function Fl(a,c){a=a|0;c=c|0;var d=0;if(f[c+56>>2]|0){d=0;return d|0}if((b[c+24>>0]|0)!=3){d=0;return d|0}f[a+40>>2]=c;d=1;return d|0}function Gl(a,b){a=a|0;b=b|0;var c=0,d=0,e=0;c=u;u=u+16|0;d=c+4|0;e=c;f[e>>2]=0;f[d>>2]=f[e>>2];e=vc(a,b,d)|0;u=c;return e|0}function Hl(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0;d=f[c>>2]|0;c=a;e=b-a>>2;while(1){if(!e)break;a=(e|0)/2|0;b=c+(a<<2)|0;g=(f[b>>2]|0)>>>0<d>>>0;c=g?b+4|0:c;e=g?e+-1-a|0:a}return c|0}function Il(a){a=a|0;var c=0;f[a>>2]=0;c=a+8|0;f[c>>2]=0;f[c+4>>2]=0;f[c+8>>2]=0;f[c+12>>2]=0;b[a+24>>0]=1;f[a+28>>2]=9;c=a+40|0;f[c>>2]=0;f[c+4>>2]=0;f[c+8>>2]=0;f[c+12>>2]=0;f[a+56>>2]=-1;f[a+60>>2]=0;return}function Jl(a){a=a|0;yj(a);Oq(a);return}function Kl(a){a=a|0;var b=0;f[a>>2]=3148;b=f[a+56>>2]|0;if(b|0)Oq(b);b=a+48|0;a=f[b>>2]|0;f[b>>2]=0;if(!a)return;Mq(a);return}function Ll(a){a=a|0;var c=0,d=0,e=0,g=0,h=0;if(!(Aq(b[f[a>>2]>>0]|0)|0))c=0;else{d=0;while(1){e=f[a>>2]|0;g=(d*10|0)+-48+(b[e>>0]|0)|0;h=e+1|0;f[a>>2]=h;if(!(Aq(b[h>>0]|0)|0)){c=g;break}else d=g}}return c|0}function Ml(a,c){a=a|0;c=c|0;var d=0;if(f[c+56>>2]|0){d=0;return d|0}if((b[c+24>>0]|0)!=3){d=0;return d|0}f[a+64>>2]=c;d=1;return d|0}function Nl(a){a=a|0;var b=0,c=0;b=f[r>>2]|0;c=b+a|0;if((a|0)>0&(c|0)<(b|0)|(c|0)<0){ea()|0;ya(12);return -1}f[r>>2]=c;if((c|0)>(da()|0)?(ca()|0)==0:0){f[r>>2]=b;ya(12);return -1}return b|0}function Ol(a,c,d){a=a|0;c=c|0;d=d|0;var e=0,f=0;if((a|0)==0&(c|0)==0)e=d;else{f=d;d=c;c=a;while(1){a=f+-1|0;b[a>>0]=c&7|48;c=Yn(c|0,d|0,3)|0;d=I;if((c|0)==0&(d|0)==0){e=a;break}else f=a}}return e|0}function Pl(a,c){a=a|0;c=c|0;var d=0;if(f[c+56>>2]|0){d=0;return d|0}if((b[c+24>>0]|0)!=3){d=0;return d|0}f[a+60>>2]=c;d=1;return d|0}function Ql(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=1544;b=f[a+32>>2]|0;if(!b){Oq(a);return}c=a+36|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b);Oq(a);return}function Rl(a,b,c,d,e,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;g=g|0;if(fp(a,f[b+8>>2]|0,g)|0)qj(0,b,c,d,e);return}function Sl(a){a=a|0;var b=0;f[a>>2]=2784;b=f[a+56>>2]|0;if(b|0)Oq(b);b=a+48|0;a=f[b>>2]|0;f[b>>2]=0;if(!a)return;Mq(a);return}function Tl(a){a=a|0;var c=0,d=0,e=0,g=0;c=u;u=u+16|0;d=c;e=f[a+4>>2]|0;g=(f[e+56>>2]|0)-(f[e+52>>2]|0)>>2;b[d>>0]=0;qh(a+20|0,g,d);u=c;return}function Ul(a){a=a|0;Vi(a);Oq(a);return}function Vl(a){a=a|0;var b=0;switch(a|0){case 11:case 2:case 1:{b=1;break}case 4:case 3:{b=2;break}case 6:case 5:{b=4;break}case 8:case 7:{b=8;break}case 9:{b=4;break}case 10:{b=8;break}default:b=-1}return b|0}function Wl(a){a=a|0;var c=0,d=0,e=0,g=0;c=u;u=u+16|0;d=c;e=f[a+4>>2]|0;g=(f[e+28>>2]|0)-(f[e+24>>2]|0)>>2;b[d>>0]=0;qh(a+20|0,g,d);u=c;return}function Xl(){var a=0,b=0;a=ln(40)|0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;n[a+16>>2]=$(1.0);b=a+20|0;f[b>>2]=0;f[b+4>>2]=0;f[b+8>>2]=0;f[b+12>>2]=0;n[a+36>>2]=$(1.0);return a|0}function Yl(a,b){a=+a;b=+b;var c=0,d=0,e=0;p[s>>3]=a;c=f[s>>2]|0;d=f[s+4>>2]|0;p[s>>3]=b;e=f[s+4>>2]&-2147483648|d&2147483647;f[s>>2]=c;f[s+4>>2]=e;return +(+p[s>>3])}function Zl(a,b,c){a=a|0;b=b|0;c=+c;var d=0,e=0;d=u;u=u+16|0;e=d;p[e>>3]=c;_b(a,b,e);u=d;return}function _l(a){a=a|0;f[a>>2]=3656;Qi(a+8|0);Oq(a);return}function $l(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;d=u;u=u+16|0;e=d;f[e>>2]=c;fc(a,b,e);u=d;return}function am(a,c){a=a|0;c=c|0;var d=0,e=0;if((a|0)!=(c|0)){d=b[c+11>>0]|0;e=d<<24>>24<0;jj(a,e?f[c>>2]|0:c,e?f[c+4>>2]|0:d&255)|0}return a|0}function bm(a,b){a=a|0;b=b|0;var c=0,d=0,e=0,f=0;c=a&65535;d=b&65535;e=X(d,c)|0;f=a>>>16;a=(e>>>16)+(X(d,f)|0)|0;d=b>>>16;b=X(d,c)|0;return (I=(a>>>16)+(X(d,f)|0)+(((a&65535)+b|0)>>>16)|0,a+b<<16|e&65535|0)|0}function cm(a,b){a=a|0;b=b|0;var c=0,d=0,e=0;c=Gj(b)|0;d=ln(c+13|0)|0;f[d>>2]=c;f[d+4>>2]=c;f[d+8>>2]=0;e=Fp(d)|0;kh(e|0,b|0,c+1|0)|0;f[a>>2]=e;return}function dm(a,b){a=a|0;b=b|0;var c=0,d=0;if((b|0)==-1|(b|0)>4){c=-1;return c|0}d=f[a+20+(b*12|0)>>2]|0;if(((f[a+20+(b*12|0)+4>>2]|0)-d|0)<=0){c=-1;return c|0}c=f[d>>2]|0;return c|0}function em(a){a=a|0;Yi(a);Oq(a);return}function fm(a){a=a|0;f[a>>2]=3656;Qi(a+8|0);return}function gm(a){a=a|0;var b=0,c=0;f[a>>2]=1544;b=f[a+32>>2]|0;if(!b)return;c=a+36|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function hm(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;if(fp(a,f[b+8>>2]|0,0)|0)Ck(0,b,c,d);return}function im(a,c,d){a=a|0;c=c|0;d=d|0;var e=0;if((c|0)<(a|0)&(a|0)<(c+d|0)){e=a;c=c+d|0;a=a+d|0;while((d|0)>0){a=a-1|0;c=c-1|0;d=d-1|0;b[a>>0]=b[c>>0]|0}a=e}else kh(a,c,d)|0;return a|0}function jm(a){a=a|0;var b=0,c=0,d=0;f[a>>2]=1196;b=f[a+8>>2]|0;if(!b){Oq(a);return}c=a+12|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);Oq(b);Oq(a);return}function km(a){a=a|0;var b=0;f[a>>2]=3204;b=f[a+56>>2]|0;if(!b){Oq(a);return}Oq(b);Oq(a);return}function lm(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0;d=u;u=u+16|0;e=d;f[e>>2]=f[c>>2];g=Sa[f[(f[a>>2]|0)+16>>2]&31](a,b,e)|0;if(g)f[c>>2]=f[e>>2];u=d;return g&1|0}function mm(a,b){a=a|0;b=b|0;var c=0;if(b>>>0>=2){c=0;return c|0}f[a+28>>2]=b;c=1;return c|0}function nm(a){a=a|0;var b=0,c=0;f[a>>2]=3408;b=a+56|0;c=f[b>>2]|0;f[b>>2]=0;if(!c){mj(a);return}Va[f[(f[c>>2]|0)+4>>2]&127](c);mj(a);return}function om(){var a=0,b=0;a=sn()|0;if((a|0?(b=f[a>>2]|0,b|0):0)?(a=b+48|0,(f[a>>2]&-256|0)==1126902528?(f[a+4>>2]|0)==1129074247:0):0)Ho(f[b+12>>2]|0);Ho(Qp()|0)}function pm(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Qf(a,b,c,d,e,f,6)|0}function qm(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Pf(a,b,c,d,e,f,4)|0}function rm(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Wf(a,b,c,d,e,f,2)|0}function sm(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Pf(a,b,c,d,e,f,3)|0}function tm(a){a=a|0;var b=0;f[a>>2]=2840;b=f[a+56>>2]|0;if(!b){Oq(a);return}Oq(b);Oq(a);return}function um(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Wf(a,b,c,d,e,f,1)|0}function vm(a){a=a|0;var c=0;c=b[w+(a&255)>>0]|0;if((c|0)<8)return c|0;c=b[w+(a>>8&255)>>0]|0;if((c|0)<8)return c+8|0;c=b[w+(a>>16&255)>>0]|0;if((c|0)<8)return c+16|0;return (b[w+(a>>>24)>>0]|0)+24|0}function wm(a,b){a=a|0;b=b|0;var c=0.0,d=0.0,e=0.0,f=0.0;if(!a){c=0.0;return +c}if((b|0)==0|(a|0)==(b|0)){c=0.0;return +c}d=+(b>>>0)/+(a>>>0);e=1.0-d;f=d*+Zg(d);c=-(f+e*+Zg(e));return +c}function xm(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0;if((b|0)>0)d=0;else return;do{e=f[a+(d<<2)>>2]|0;f[c+(d<<2)>>2]=e<<1^e>>31;d=d+1|0}while((d|0)!=(b|0));return}function ym(a){a=a|0;var b=0;zo(a);f[a>>2]=3344;f[a+40>>2]=1196;f[a+44>>2]=-1;b=a+48|0;f[b>>2]=0;f[b+4>>2]=0;f[b+8>>2]=0;f[b+12>>2]=0;return}function zm(a,c){a=a|0;c=c|0;var d=0;b[c+84>>0]=1;a=f[c+68>>2]|0;d=c+72|0;c=f[d>>2]|0;if((c|0)==(a|0))return 1;f[d>>2]=c+(~((c+-4-a|0)>>>2)<<2);return 1}function Am(a){a=a|0;var b=0,c=0;if(pq(a)|0?(b=Mp(f[a>>2]|0)|0,a=b+8|0,c=f[a>>2]|0,f[a>>2]=c+-1,(c+-1|0)<0):0)Oq(b);return}function Bm(a){a=a|0;var b=0,c=0;b=f[a+16>>2]|0;c=(((f[a+12>>2]|0)+1-b|0)/64|0)+b<<3;a=b<<3;b=Vn(c|0,((c|0)<0)<<31>>31|0,a|0,((a|0)<0)<<31>>31|0)|0;return b|0}function Cm(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Qf(a,b,c,d,e,f,5)|0}function Dm(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Qf(a,b,c,d,e,f,9)|0}function Em(a){a=a|0;var b=0;f[a>>2]=3204;b=f[a+56>>2]|0;if(!b)return;Oq(b);return}function Fm(a){a=a|0;var b=0,c=0;f[a>>2]=1476;b=a+36|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0)Va[f[(f[c>>2]|0)+4>>2]&127](c);Ni(a);Oq(a);return}function Gm(a){a=a|0;var b=0,c=0;f[a>>2]=1196;b=f[a+8>>2]|0;if(!b)return;c=a+12|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function Hm(a){a=a|0;var c=0;f[a>>2]=1352;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=-1;c=a+16|0;f[a+32>>2]=0;f[c>>2]=0;f[c+4>>2]=0;f[c+8>>2]=0;b[c+12>>0]=0;return}function Im(a){a=a|0;var b=0;f[a>>2]=2840;b=f[a+56>>2]|0;if(!b)return;Oq(b);return}function Jm(a){a=a|0;var b=0,c=0;f[a>>2]=1476;b=a+36|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0)Va[f[(f[c>>2]|0)+4>>2]&127](c);Ni(a);return}function Km(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=$(f);Fg(a,b,c,d,e,f);return}function Lm(a){a=a|0;var b=0,c=0;f[a>>2]=3408;b=a+56|0;c=f[b>>2]|0;f[b>>2]=0;if(c|0)Va[f[(f[c>>2]|0)+4>>2]&127](c);mj(a);Oq(a);return}function Mm(a){a=a|0;var b=0,c=0,d=0;b=f[a>>2]|0;c=a+4|0;d=f[c>>2]|0;if((d|0)!=(b|0))f[c>>2]=d+(~((d+-4-b|0)>>>2)<<2);f[a+12>>2]=0;f[a+16>>2]=0;return}function Nm(a,b,c){a=a|0;b=b|0;c=c|0;var d=0,e=0,g=0;d=a+20|0;e=f[d>>2]|0;g=(f[a+16>>2]|0)-e|0;a=g>>>0>c>>>0?c:g;kh(e|0,b|0,a|0)|0;f[d>>2]=(f[d>>2]|0)+a;return c|0}function Om(a){a=a|0;var b=0;f[a>>2]=3588;b=f[a+20>>2]|0;if(b|0)Oq(b);b=f[a+8>>2]|0;if(!b){Oq(a);return}Oq(b);Oq(a);return}function Pm(a){a=a|0;var b=0,c=0;b=f[a>>2]|0;if(!b)return;c=a+4|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-8-b|0)>>>3)<<3);Oq(b);return}function Qm(a){a=a|0;var b=0,c=0;b=f[a>>2]|0;if(!b)return;c=a+4|0;a=f[c>>2]|0;if((a|0)!=(b|0))f[c>>2]=a+(~((a+-4-b|0)>>>2)<<2);Oq(b);return}function Rm(a,b){a=a|0;b=b|0;var c=0;c=f[b>>2]|0;return (1<<(c&31)&f[(f[a+28>>2]|0)+(c>>>5<<2)>>2]|0)!=0|0}function Sm(a,b,c){a=a|0;b=b|0;c=c|0;return Sa[f[(f[a>>2]|0)+44>>2]&31](a,b,c)|0}function Tm(a){a=a|0;var c=0;Il(a);c=a+64|0;f[a+88>>2]=0;f[c>>2]=0;f[c+4>>2]=0;f[c+8>>2]=0;f[c+12>>2]=0;f[c+16>>2]=0;b[c+20>>0]=0;return}function Um(a){a=a|0;f[a>>2]=3260;Fj(a+88|0);Oq(a);return}function Vm(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;if((f[b+4>>2]|0)==(c|0)?(c=b+28|0,(f[c>>2]|0)!=1):0)f[c>>2]=d;return}function Wm(a){a=a|0;var b=0,c=0,d=0;b=u;u=u+16|0;c=b;if((Ek(a)|0)==0?(Sa[f[a+32>>2]&31](a,c,1)|0)==1:0)d=h[c>>0]|0;else d=-1;u=b;return d|0}function Xm(a){a=a|0;var b=0;f[a>>2]=3636;b=f[a+20>>2]|0;if(b|0)Oq(b);b=f[a+8>>2]|0;if(!b){Oq(a);return}Oq(b);Oq(a);return}function Ym(a,b){a=a|0;b=b|0;var c=0,d=0,e=0;f[a+104>>2]=b;c=f[a+8>>2]|0;d=f[a+4>>2]|0;e=c-d|0;f[a+108>>2]=e;f[a+100>>2]=(b|0)!=0&(e|0)>(b|0)?d+b|0:c;return}function Zm(a){a=a|0;var b=0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;b=a+16|0;f[b>>2]=0;f[b+4>>2]=0;f[b+8>>2]=0;f[b+12>>2]=0;f[b+16>>2]=0;return}function _m(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=$(f);Km(a,b,c,d,e,f);return}function $m(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return pm(a,b,c,d,e,f)|0}function an(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return qm(a,b,c,d,e,f)|0}function bn(a,b,c){a=a|0;b=b|0;c=c|0;f[a+4>>2]=b;f[a+8>>2]=f[(f[(f[b+4>>2]|0)+8>>2]|0)+(c<<2)>>2];f[a+12>>2]=c;return 1}function cn(a){a=a|0;var b=0,c=0;if(!a)return;b=f[a>>2]|0;if(b|0){c=a+4|0;if((f[c>>2]|0)!=(b|0))f[c>>2]=b;Oq(b)}Oq(a);return}function dn(a){a=a|0;f[a>>2]=2896;Fj(a+88|0);Oq(a);return}function en(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return rm(a,b,c,d,e,f)|0}function fn(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return sm(a,b,c,d,e,f)|0}function gn(a){a=a|0;f[a>>2]=3260;Fj(a+88|0);return}function hn(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0;e=u;u=u+16|0;g=e|0;Ld(a,b,c,d,g)|0;u=e;return (I=f[g+4>>2]|0,f[g>>2]|0)|0}function jn(a){a=a|0;var b=0;eo(a);f[a>>2]=6152;b=a+84|0;f[b>>2]=0;f[b+4>>2]=0;f[b+8>>2]=0;f[b+12>>2]=0;f[b+16>>2]=0;f[b+20>>2]=0;return}function kn(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return um(a,b,c,d,e,f)|0}function ln(a){a=a|0;var b=0,c=0;b=(a|0)==0?1:a;while(1){a=$a(b)|0;if(a|0){c=a;break}a=Op()|0;if(!a){c=0;break}Ua[a&3]()}return c|0}function mn(a,b,c){a=a|0;b=b|0;c=c|0;ac(a,b,c);return}function nn(a){a=a|0;var b=0;f[a>>2]=3588;b=f[a+20>>2]|0;if(b|0)Oq(b);b=f[a+8>>2]|0;if(!b)return;Oq(b);return}function on(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Cm(a,b,c,d,e,f)|0}function pn(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;return Dm(a,b,c,d,e,f)|0}function qn(a){a=a|0;f[a>>2]=2896;Fj(a+88|0);return}function rn(a){a=a|0;var b=0,c=0,d=0;b=u;u=u+16|0;c=b;d=Qq(f[a+60>>2]|0)|0;f[c>>2]=d;d=to(Ba(6,c|0)|0)|0;u=b;return d|0}function sn(){var a=0,b=0;a=u;u=u+16|0;if(!(Ka(19700,3)|0)){b=Ia(f[4926]|0)|0;u=a;return b|0}else Hn(18840,a);return 0}function tn(a){a=a|0;var b=0;f[a>>2]=3636;b=f[a+20>>2]|0;if(b|0)Oq(b);b=f[a+8>>2]|0;if(!b)return;Oq(b);return}function un(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,f=0;e=a;a=c;c=bm(e,a)|0;f=I;return (I=(X(b,a)|0)+(X(d,e)|0)+f|f&0,c|0|0)|0}function vn(a,b){a=a|0;b=b|0;lh(a,b);f[a>>2]=1292;b=a+36|0;a=b+40|0;do{f[b>>2]=0;b=b+4|0}while((b|0)<(a|0));return}function wn(a){a=a|0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;f[a+16>>2]=0;f[a+20>>2]=0;f[a+24>>2]=0;f[a+28>>2]=0;return}function xn(a){a=a|0;var b=0;b=u;u=u+16|0;yc(a);if(!(La(f[4926]|0,0)|0)){u=b;return}else Hn(18939,b)}function yn(a){a=a|0;var b=0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;b=a+16|0;f[b>>2]=0;f[b+4>>2]=0;f[b+8>>2]=0;f[b+12>>2]=0;return}function zn(a,b){a=a|0;b=b|0;return vg(a+40|0,b)|0}function An(a,b){a=a|0;b=b|0;return lj(a,b,lq(b)|0)|0}function Bn(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0,g=0;e=u;u=u+16|0;g=e;f[g>>2]=d;d=Zi(a,b,c,g)|0;u=e;return d|0}function Cn(a,b){a=a|0;b=b|0;return Mj(a+40|0,b)|0}function Dn(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;return Qh(a,b,c,d)|0}function En(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;return uh(a,b,c,d)|0}function Fn(a,b){a=a|0;b=b|0;var c=0;c=f[a+56>>2]|0;return Ra[f[(f[c>>2]|0)+24>>2]&127](c,b)|0}function Gn(a){a=a|0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;f[a+16>>2]=0;f[a+20>>2]=0;b[a+24>>0]=0;return}function Hn(a,b){a=a|0;b=b|0;var c=0,d=0;c=u;u=u+16|0;d=c;f[d>>2]=b;b=f[1556]|0;Ah(b,a,d)|0;Lj(10,b)|0;Ca()}function In(a,b,c,d,e,f,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;g=g|0;return Ta[a&31](b|0,c|0,d|0,e|0,f|0,g|0)|0}function Jn(a,b){a=a|0;b=b|0;var c=0;c=f[a+56>>2]|0;return Ra[f[(f[c>>2]|0)+16>>2]&127](c,b)|0}function Kn(a,b){a=a|0;b=b|0;var c=0;c=f[a+56>>2]|0;return Ra[f[(f[c>>2]|0)+20>>2]&127](c,b)|0}function Ln(a,b){a=a|0;b=b|0;var c=0;c=f[a+56>>2]|0;return Ra[f[(f[c>>2]|0)+12>>2]&127](c,b)|0}function Mn(){var a=0;a=u;u=u+16|0;if(!(Ja(19704,113)|0)){u=a;return}else Hn(18889,a)}function Nn(a,b,c){a=a|0;b=b|0;c=c|0;Pj(a,b,c);return}function On(a){a=a|0;cf(a);Oq(a);return}function Pn(a,b,c,d,e,f,g){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;g=g|0;_a[a&3](b|0,c|0,d|0,e|0,f|0,g|0)}function Qn(a,b,c){a=a|0;b=b|0;c=c|0;if(b|0)sj(a|0,(kq(c)|0)&255|0,b|0)|0;return a|0}function Rn(a){a=a|0;return 4}function Sn(a,b,c){a=a|0;b=b|0;c=c|0;return ej(0,b,c)|0}function Tn(a,b,c){a=a|0;b=b|0;c=c|0;if((c|0)<32){I=b<<c|(a&(1<<c)-1<<32-c)>>>32-c;return a<<c}I=a<<c-32;return 0}function Un(){}function Vn(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0;e=a+c>>>0;return (I=b+d+(e>>>0<a>>>0|0)>>>0,e|0)|0}function Wn(a,b){a=a|0;b=b|0;var c=0;if(!b)c=0;else c=Dh(f[b>>2]|0,f[b+4>>2]|0,a)|0;return (c|0?c:a)|0}function Xn(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;var e=0;e=b-d>>>0;e=b-d-(c>>>0>a>>>0|0)>>>0;return (I=e,a-c>>>0|0)|0}function Yn(a,b,c){a=a|0;b=b|0;c=c|0;if((c|0)<32){I=b>>>c;return a>>>c|(b&(1<<c)-1)<<32-c}I=0;return b>>>c-32|0}function Zn(a){a=a|0;var b=0;f[a>>2]=3932;b=a+4|0;a=b+44|0;do{f[b>>2]=0;b=b+4|0}while((b|0)<(a|0));return}function _n(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;return De(a,b,c,d)|0}function $n(a){a=a|0;ff(a);Oq(a);return}function ao(a,b){a=a|0;b=b|0;ji(a);f[a+36>>2]=b;f[a+40>>2]=0;return}function bo(a,b,c,d){a=a|0;b=b|0;c=c|0;d=+d;return $i(a,b,c,d)|0}function co(a){a=a|0;return 5}function eo(a){a=a|0;var b=0;f[a>>2]=6192;b=a+4|0;a=b+80|0;do{f[b>>2]=0;b=b+4|0}while((b|0)<(a|0));return}function fo(a){a=a|0;return 6}function go(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;return aj(a,b,c,d)|0}function ho(a,b,c){a=a|0;b=b|0;c=c|0;f[a+28>>2]=b;f[a+32>>2]=c;return 1}function io(a,b){a=a|0;b=b|0;ji(a);f[a+36>>2]=b;f[a+40>>2]=b;return}function jo(a,b,c){a=a|0;b=b|0;c=c|0;Nn(a,b,c);return}function ko(a){a=a|0;var b=0;b=f[a+56>>2]|0;return Qa[f[(f[b>>2]|0)+28>>2]&127](b)|0}function lo(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;Ve(a,b,c,d,1);return}function mo(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;Ve(a,b,c,d,0);return}function no(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;return Xg(a,b,c,d)|0}function oo(a,b,c){a=a|0;b=b|0;c=c|0;return fi(a,b,c)|0}function po(a){a=a|0;var b=0;b=f[a+56>>2]|0;return Qa[f[(f[b>>2]|0)+32>>2]&127](b)|0}function qo(a,b,c){a=a|0;b=b|0;c=c|0;return ej(a,b,c)|0}function ro(a,b,c){a=a|0;b=b|0;c=c|0;return Sn(a,b,c)|0}function so(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;Za[a&3](b|0,c|0,d|0,e|0,f|0)}function to(a){a=a|0;var b=0,c=0;if(a>>>0>4294963200){b=Vq()|0;f[b>>2]=0-a;c=-1}else c=a;return c|0}function uo(a,b,c){a=a|0;b=b|0;c=c|0;Li(a,b,c);return}function vo(a){a=a|0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;f[a+12>>2]=0;f[a+16>>2]=0;return}function wo(a,b){a=a|0;b=b|0;f[a+8>>2]=b;f[a+12>>2]=-1;return 1}function xo(a,b){a=a|0;b=b|0;f[a+52>>2]=b;ip(a,b);return}function yo(a){a=+a;var b=0;p[s>>3]=a;b=f[s>>2]|0;I=f[s+4>>2]|0;return b|0}function zo(a){a=a|0;Hm(a);f[a>>2]=1476;f[a+36>>2]=0;return}function Ao(a){a=a|0;var b=0;if(!a)b=0;else b=(Eh(a,1056,1144,0)|0)!=0&1;return b|0}function Bo(a){a=a|0;if((b[a+11>>0]|0)<0)Oq(f[a>>2]|0);return}function Co(a){a=a|0;if(!a)return;Va[f[(f[a>>2]|0)+4>>2]&127](a);return}function Do(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;Ya[a&3](b|0,c|0,d|0,e|0)}function Eo(a,b,c){a=a|0;b=b|0;c=c|0;if(c|0)im(a|0,b|0,c|0)|0;return a|0}function Fo(a,b,c){a=a|0;b=b|0;c=c|0;if(c|0)kh(a|0,b|0,c|0)|0;return a|0}function Go(a,b){a=a|0;b=b|0;return -1}function Ho(a){a=a|0;var b=0;b=u;u=u+16|0;Ua[a&3]();Hn(18992,b)}function Io(a){a=a|0;Lh(a);Oq(a);return}function Jo(a,b,c){a=a|0;b=b|0;c=c|0;Ro(a,b,c);return}function Ko(a,b,c){a=a|0;b=$(b);c=c|0;f[a+4>>2]=c;n[a>>2]=b;return}function Lo(a){a=a|0;To(a);f[a>>2]=3408;f[a+56>>2]=0;return}function Mo(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;return Sa[a&31](b|0,c|0,d|0)|0}function No(a,b){a=a|0;b=b|0;return (wp(a,b)|0)<<24>>24|0}function Oo(a,b){a=a|0;b=b|0;f[a>>2]=7236;cm(a+4|0,b);return}function Po(a,b){a=a|0;b=b|0;var c=0;if(!a)c=0;else c=Pi(a,b,0)|0;return c|0}function Qo(a){a=a|0;return f[a+12>>2]|0}function Ro(a,b,c){a=a|0;b=b|0;c=c|0;uo(a,b,c);return}function So(){var a=0;a=ln(64)|0;Il(a);return a|0}function To(a){a=a|0;Zn(a);f[a>>2]=3764;f[a+52>>2]=0;return}function Uo(a){a=a|0;if(!a)return;bj(a);Oq(a);return}function Vo(a){a=a|0;return Qa[f[(f[a>>2]|0)+60>>2]&127](a)|0}function Wo(a){a=a|0;return f[a+4>>2]|0}function Xo(a,b,c){a=a|0;b=b|0;c=c|0;if(!(f[a>>2]&32))qi(b,c,a)|0;return}function Yo(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;Xa[a&15](b|0,c|0,d|0)}function Zo(){var a=0;a=ln(96)|0;Tm(a);return a|0}function _o(a){a=a|0;var b=0;b=u;u=u+a|0;u=u+15&-16;return b|0}function $o(a){a=a|0;var b=0;b=(Jq()|0)+188|0;return $j(a,f[b>>2]|0)|0}function ap(a){a=a|0;return ((f[a+100>>2]|0)-(f[a+96>>2]|0)|0)/12|0|0}function bp(a,b){a=a|0;b=b|0;kp(a,b);return}function cp(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;aa(3);return 0}function dp(){var a=0;a=ln(12)|0;op(a);return a|0}function ep(a){a=a|0;Ni(a);Oq(a);return}function fp(a,b,c){a=a|0;b=b|0;c=c|0;return (a|0)==(b|0)|0}function gp(a,b){a=a|0;b=b|0;var c=0;c=sp(a|0)|0;return ((b|0)==0?a:c)|0}function hp(a){a=a|0;return (f[a+12>>2]|0)-(f[a+8>>2]|0)>>2|0}function ip(a,b){a=a|0;b=b|0;f[a+4>>2]=b;return}function jp(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;return Ld(a,b,c,d,0)|0}function kp(a,b){a=a|0;b=b|0;jk(a,b);return}function lp(a){a=a|0;f[a+4>>2]=0;f[a+8>>2]=0;f[a>>2]=a+4;return}function mp(){var a=0;a=ln(84)|0;eo(a);return a|0}function np(a){a=a|0;ui(a);Oq(a);return}function op(a){a=a|0;f[a>>2]=0;f[a+4>>2]=0;f[a+8>>2]=0;return}function pp(a){a=a|0;f[a>>2]=7236;Am(a+4|0);return}function qp(a,b,c){a=a|0;b=b|0;c=c|0;return Ra[a&127](b|0,c|0)|0}function rp(a,b,c,d,e,f){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;f=f|0;aa(10)}function sp(a){a=a|0;return (a&255)<<24|(a>>8&255)<<16|(a>>16&255)<<8|a>>>24|0}function tp(a){a=a|0;To(a);f[a>>2]=3836;return}function up(a,c){a=a|0;c=c|0;b[a>>0]=b[c>>0]|0;return}function vp(a,b,c){a=a|0;b=b|0;c=c|0;return -1}function wp(a,c){a=a|0;c=c|0;return b[(f[a>>2]|0)+c>>0]|0}function xp(a){a=a|0;return (f[a+4>>2]|0)-(f[a>>2]|0)|0}function yp(a){a=a|0;mj(a);Oq(a);return}function zp(a){a=a|0;if(!a)return;Oq(a);return}function Ap(a){a=a|0;n[a>>2]=$(1.0);f[a+4>>2]=1;return}function Bp(a){a=a|0;b[a+28>>0]=1;return}function Cp(a,b){a=a|0;b=b|0;if(!x){x=a;y=b}}function Dp(a){a=a|0;ji(a);return}function Ep(a,b){a=a|0;b=b|0;return 1}function Fp(a){a=a|0;return a+12|0}function Gp(a,b){a=a|0;b=b|0;f[a+80>>2]=b;return}function Hp(a,b,c){a=a|0;b=b|0;c=c|0;Wa[a&7](b|0,c|0)}function Ip(){var a=0;a=ln(36)|0;qq(a);return a|0}function Jp(a){a=a|0;return gq(a+4|0)|0}function Kp(){var a=0;a=ln(108)|0;jn(a);return a|0}function Lp(a){a=a|0;return (b[a+32>>0]|0)!=0|0}function Mp(a){a=a|0;return a+-12|0}function Np(a,b,c,d,e){a=a|0;b=b|0;c=c|0;d=d|0;e=e|0;aa(9)}function Op(){var a=0;a=f[4927]|0;f[4927]=a+0;return a|0}function Pp(a){a=a|0;return f[a+56>>2]|0}function Qp(){var a=0;a=f[1786]|0;f[1786]=a+0;return a|0}function Rp(a){a=a|0;Og(a);Oq(a);return}function Sp(a){a=a|0;Sq(a);Oq(a);return}function Tp(a){a=a|0;return b[a+24>>0]|0}function Up(a,b){a=a|0;b=b|0;return 0}function Vp(a){a=a|0;return f[a+40>>2]|0}function Wp(a){a=a|0;return f[a+48>>2]|0}function Xp(a,b){a=a|0;b=b|0;return Qa[a&127](b|0)|0}function Yp(a){a=a|0;return f[a+60>>2]|0}function Zp(a){a=a|0;return f[a+28>>2]|0}function _p(a){a=a|0;sa(a|0)|0;om()}function $p(a){a=a|0;pp(a);Oq(a);return}function aq(a){a=a|0;Ca()}function bq(a,b){a=a|0;b=b|0;return $(+Bk(a,b,0))}function cq(a){a=a|0;return 3}function dq(a,b){a=a|0;b=b|0;u=a;v=b}function eq(a){a=a|0;return ((a|0)==32|(a+-9|0)>>>0<5)&1|0}function fq(a){a=a|0;return f[a+80>>2]|0}function gq(a){a=a|0;return f[a>>2]|0}function hq(a,b,c,d){a=a|0;b=b|0;c=c|0;d=d|0;aa(8)}function iq(a,b){a=a|0;b=b|0;Va[a&127](b|0)}function jq(a,b){a=a|0;b=b|0;return Wn(a,b)|0}function kq(a){a=a|0;return a&255|0}function lq(a){a=a|0;return Gj(a)|0}function mq(a,b){a=a|0;b=b|0;return +(+Bk(a,b,1))}function nq(a,b,c){a=a|0;b=b|0;c=c|0;aa(2);return 0}function oq(a){a=a|0;return 2}function pq(a){a=a|0;return 1}function qq(a){a=a|0;Dp(a);return}function rq(a,b){a=+a;b=+b;return +(+Yl(a,b))}function sq(a,b){a=+a;b=b|0;return +(+bk(a,b))}function tq(a,b){a=+a;b=b|0;return +(+ak(a,b))}function uq(){return 3}function vq(a,b,c){a=a|0;b=b|0;c=c|0;aa(7)}function wq(){return 0}function xq(){return -1}function yq(){return ln(1)|0}function zq(){return 4}function Aq(a){a=a|0;return (a+-48|0)>>>0<10|0}function Bq(){return 1}function Cq(){return 2}function Dq(a,b){a=+a;b=+b;return +(+xd(a,b))}function Eq(a,b){a=a|0;b=b|0;aa(1);return 0}function Fq(a){a=a|0;Ha()}function Gq(a){a=a|0;Ua[a&3]()}function Hq(){ua()}function Iq(a){a=a|0;return +(+mq(a,0))}function Jq(){return Yq()|0}function Kq(a,b){a=a|0;b=b|0;aa(6)}function Lq(a){a=a|0;return ln(a)|0}function Mq(a){a=a|0;Oq(a);return}function Nq(a){a=a|0;u=a}function Oq(a){a=a|0;yc(a);return}function Pq(a){a=a|0;I=a}function Qq(a){a=a|0;return a|0}function Rq(a){a=a|0;aa(0);return 0}function Sq(a){a=a|0;return}function Tq(a){a=a|0;return 0}function Uq(){return I|0}function Vq(){return 19632}function Wq(){return u|0}function Xq(a){a=a|0;aa(5)}function Yq(){return 6352}function Zq(){aa(4)}\n\n// EMSCRIPTEN_END_FUNCS\nvar Qa=[Rq,oq,pq,pq,oq,gb,Tq,Tq,Tq,hk,kg,pq,Wo,Tq,Tq,pq,Tq,pq,pq,yl,oq,yl,cq,wl,pq,co,wl,pq,fo,cl,pq,Zp,Rn,yl,pq,yl,oq,yl,cq,wl,pq,co,wl,pq,fo,cl,pq,Zp,Rn,yl,pq,cq,Tq,Wo,pq,Tq,pq,cq,pq,ql,oq,ql,Rn,ql,cq,pl,pq,co,pl,pq,fo,Wk,pq,Zp,pq,ql,oq,ql,Rn,ql,cq,pl,pq,co,pl,pq,fo,Wk,pq,Zp,pq,oq,pq,pq,Nd,pq,Vo,Xe,mh,zk,po,ko,pb,Qo,Wo,Mg,Wg,Lf,rb,Qo,Wo,pq,Tq,Tq,zc,Ki,Tq,pq,pq,Uj,Tq,Uj,ck,rn,Jp,Rq,Rq,Rq];var Ra=[Eq,xl,nh,Ie,El,Up,Up,Up,Ep,jb,rj,wo,Ep,Ep,ti,nj,ii,kk,ol,Qj,$k,dk,ek,Te,Go,Up,ni,Up,Pl,$d,Up,Pl,nf,Up,Ml,sh,mm,Ed,Up,Pl,$d,Up,Pl,nf,Up,Ml,sh,mm,Ed,Cn,Go,Up,li,Dd,Up,Fl,Zd,Up,Fl,hf,Up,Bl,rh,mm,Dd,Up,Fl,Zd,Up,Fl,hf,Up,Bl,rh,mm,zn,Kn,Fn,Ln,Jn,dh,ik,uk,cc,ye,Rm,og,vf,wf,ah,ik,uk,bc,ye,Rm,Ep,Up,Up,of,zm,mg,of,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq,Eq];var Sa=[nq,ho,vp,bn,Sm,wg,oj,kl,xh,wc,Kh,pg,gi,Rb,di,Ng,ml,Nm,Cj,nq,nq,nq,nq,nq,nq,nq,nq,nq,nq,nq,nq,nq];var Ta=[cp,Xd,Jc,oc,be,Ae,Tb,bb,Lc,pc,ae,ze,Sb,ab,eh,kd,Ic,fb,pf,If,tc,od,Kc,db,kf,Gf,qc,cp,cp,cp,cp,cp];var Ua=[Zq,Hq,Oi,Mn];var Va=[Xq,Sq,Mq,Gm,jm,al,Fq,ui,np,Ni,ep,Lh,Io,Jm,Fm,gm,Fq,Ql,Ql,Ql,Jk,wk,_k,Rk,el,Uk,Sq,Mq,Fq,Yi,em,Ql,Ql,Dk,rk,Xk,Pk,bl,Tk,Sq,Mq,Fq,Vi,Ul,Jm,Fm,Sq,Mq,Mq,Mq,yj,Jl,Sl,Al,Im,tm,qn,dn,Sq,Mq,Mq,Mq,vj,zl,Kl,sl,Em,km,gn,Um,Sq,Mq,xk,ok,nm,Lm,ff,$n,vk,nk,nn,Om,Tl,Ak,qk,tn,Xm,Wl,fm,_l,cf,On,mj,Fq,yp,Sq,Mq,Fq,yp,yp,Nk,Gk,sb,Og,Rp,Sq,Sp,Sq,Sq,Sp,pp,$p,$p,xn,Xq,Xq,Xq,Xq,Xq,Xq,Xq,Xq,Xq,Xq,Xq,Xq,Xq,Xq];var Wa=[Kq,pk,gg,yk,Nc,Kq,Kq,Kq];var Xa=[vq,Ne,ij,$b,ic,yd,$b,ic,$g,Aj,Lg,Yf,vq,vq,vq,vq];var Ya=[hq,hm,dl,hq];var Za=[Np,tj,oh,Np];var _a=[rp,Rl,Sk,rp];return{___cxa_can_catch:lm,___cxa_is_pointer_type:Ao,___divdi3:Ik,___muldi3:un,___udivdi3:jp,___uremdi3:hn,_bitshift64Lshr:Yn,_bitshift64Shl:Tn,_emscripten_bind_DracoInt8Array_DracoInt8Array_0:dp,_emscripten_bind_DracoInt8Array_GetValue_1:No,_emscripten_bind_DracoInt8Array___destroy___0:cn,_emscripten_bind_DracoInt8Array_size_0:xp,_emscripten_bind_Encoder_EncodeMeshToDracoBuffer_2:oo,_emscripten_bind_Encoder_EncodePointCloudToDracoBuffer_3:En,_emscripten_bind_Encoder_Encoder_0:Ip,_emscripten_bind_Encoder_SetAttributeExplicitQuantization_5:_m,_emscripten_bind_Encoder_SetAttributeQuantization_2:jo,_emscripten_bind_Encoder_SetEncodingMethod_1:bp,_emscripten_bind_Encoder_SetSpeedOptions_2:Jo,_emscripten_bind_Encoder___destroy___0:Wj,_emscripten_bind_GeometryAttribute_GeometryAttribute_0:So,_emscripten_bind_GeometryAttribute___destroy___0:zp,_emscripten_bind_MeshBuilder_AddFacesToMesh_3:no,_emscripten_bind_MeshBuilder_AddFloatAttributeToMesh_5:pn,_emscripten_bind_MeshBuilder_AddFloatAttribute_5:pn,_emscripten_bind_MeshBuilder_AddInt16Attribute_5:fn,_emscripten_bind_MeshBuilder_AddInt32AttributeToMesh_5:on,_emscripten_bind_MeshBuilder_AddInt32Attribute_5:on,_emscripten_bind_MeshBuilder_AddInt8Attribute_5:kn,_emscripten_bind_MeshBuilder_AddMetadataToMesh_2:ro,_emscripten_bind_MeshBuilder_AddMetadata_2:qo,_emscripten_bind_MeshBuilder_AddUInt16Attribute_5:an,_emscripten_bind_MeshBuilder_AddUInt32Attribute_5:$m,_emscripten_bind_MeshBuilder_AddUInt8Attribute_5:en,_emscripten_bind_MeshBuilder_MeshBuilder_0:yq,_emscripten_bind_MeshBuilder_SetMetadataForAttribute_3:Dn,_emscripten_bind_MeshBuilder___destroy___0:zp,_emscripten_bind_Mesh_Mesh_0:Kp,_emscripten_bind_Mesh___destroy___0:Co,_emscripten_bind_Mesh_num_attributes_0:hp,_emscripten_bind_Mesh_num_faces_0:ap,_emscripten_bind_Mesh_num_points_0:fq,_emscripten_bind_Mesh_set_num_points_1:Gp,_emscripten_bind_MetadataBuilder_AddDoubleEntry_3:bo,_emscripten_bind_MetadataBuilder_AddIntEntry_3:go,_emscripten_bind_MetadataBuilder_AddStringEntry_3:_n,_emscripten_bind_MetadataBuilder_MetadataBuilder_0:yq,_emscripten_bind_MetadataBuilder___destroy___0:zp,_emscripten_bind_Metadata_Metadata_0:Xl,_emscripten_bind_Metadata___destroy___0:Uo,_emscripten_bind_PointAttribute_PointAttribute_0:Zo,_emscripten_bind_PointAttribute___destroy___0:Ij,_emscripten_bind_PointAttribute_attribute_type_0:Pp,_emscripten_bind_PointAttribute_byte_offset_0:Wp,_emscripten_bind_PointAttribute_byte_stride_0:Vp,_emscripten_bind_PointAttribute_data_type_0:Zp,_emscripten_bind_PointAttribute_normalized_0:Lp,_emscripten_bind_PointAttribute_num_components_0:Tp,_emscripten_bind_PointAttribute_size_0:fq,_emscripten_bind_PointAttribute_unique_id_0:Yp,_emscripten_bind_PointCloudBuilder_AddFloatAttribute_5:pn,_emscripten_bind_PointCloudBuilder_AddInt16Attribute_5:fn,_emscripten_bind_PointCloudBuilder_AddInt32Attribute_5:on,_emscripten_bind_PointCloudBuilder_AddInt8Attribute_5:kn,_emscripten_bind_PointCloudBuilder_AddMetadata_2:qo,_emscripten_bind_PointCloudBuilder_AddUInt16Attribute_5:an,_emscripten_bind_PointCloudBuilder_AddUInt32Attribute_5:$m,_emscripten_bind_PointCloudBuilder_AddUInt8Attribute_5:en,_emscripten_bind_PointCloudBuilder_PointCloudBuilder_0:yq,_emscripten_bind_PointCloudBuilder_SetMetadataForAttribute_3:Dn,_emscripten_bind_PointCloudBuilder___destroy___0:zp,_emscripten_bind_PointCloud_PointCloud_0:mp,_emscripten_bind_PointCloud___destroy___0:Co,_emscripten_bind_PointCloud_num_attributes_0:hp,_emscripten_bind_PointCloud_num_points_0:fq,_emscripten_bind_VoidPtr___destroy___0:zp,_emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE:xq,_emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD:wq,_emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH:Bq,_emscripten_enum_draco_GeometryAttribute_Type_COLOR:Cq,_emscripten_enum_draco_GeometryAttribute_Type_GENERIC:zq,_emscripten_enum_draco_GeometryAttribute_Type_INVALID:xq,_emscripten_enum_draco_GeometryAttribute_Type_NORMAL:Bq,_emscripten_enum_draco_GeometryAttribute_Type_POSITION:wq,_emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD:uq,_emscripten_enum_draco_MeshEncoderMethod_MESH_EDGEBREAKER_ENCODING:Bq,_emscripten_enum_draco_MeshEncoderMethod_MESH_SEQUENTIAL_ENCODING:wq,_emscripten_replace_memory:Pa,_free:yc,_i64Add:Vn,_i64Subtract:Xn,_llvm_bswap_i32:sp,_malloc:$a,_memcpy:kh,_memmove:im,_memset:sj,_sbrk:Nl,dynCall_ii:Xp,dynCall_iii:qp,dynCall_iiii:Mo,dynCall_iiiiiii:In,dynCall_v:Gq,dynCall_vi:iq,dynCall_vii:Hp,dynCall_viii:Yo,dynCall_viiii:Do,dynCall_viiiii:so,dynCall_viiiiii:Pn,establishStackSpace:dq,getTempRet0:Uq,runPostSets:Un,setTempRet0:Pq,setThrew:Cp,stackAlloc:_o,stackRestore:Nq,stackSave:Wq}})\n\n\n// EMSCRIPTEN_END_ASM\n(Module.asmGlobalArg,Module.asmLibraryArg,buffer);var ___cxa_can_catch=Module[\"___cxa_can_catch\"]=asm[\"___cxa_can_catch\"];var ___cxa_is_pointer_type=Module[\"___cxa_is_pointer_type\"]=asm[\"___cxa_is_pointer_type\"];var ___divdi3=Module[\"___divdi3\"]=asm[\"___divdi3\"];var ___muldi3=Module[\"___muldi3\"]=asm[\"___muldi3\"];var ___udivdi3=Module[\"___udivdi3\"]=asm[\"___udivdi3\"];var ___uremdi3=Module[\"___uremdi3\"]=asm[\"___uremdi3\"];var _bitshift64Lshr=Module[\"_bitshift64Lshr\"]=asm[\"_bitshift64Lshr\"];var _bitshift64Shl=Module[\"_bitshift64Shl\"]=asm[\"_bitshift64Shl\"];var _emscripten_bind_DracoInt8Array_DracoInt8Array_0=Module[\"_emscripten_bind_DracoInt8Array_DracoInt8Array_0\"]=asm[\"_emscripten_bind_DracoInt8Array_DracoInt8Array_0\"];var _emscripten_bind_DracoInt8Array_GetValue_1=Module[\"_emscripten_bind_DracoInt8Array_GetValue_1\"]=asm[\"_emscripten_bind_DracoInt8Array_GetValue_1\"];var _emscripten_bind_DracoInt8Array___destroy___0=Module[\"_emscripten_bind_DracoInt8Array___destroy___0\"]=asm[\"_emscripten_bind_DracoInt8Array___destroy___0\"];var _emscripten_bind_DracoInt8Array_size_0=Module[\"_emscripten_bind_DracoInt8Array_size_0\"]=asm[\"_emscripten_bind_DracoInt8Array_size_0\"];var _emscripten_bind_Encoder_EncodeMeshToDracoBuffer_2=Module[\"_emscripten_bind_Encoder_EncodeMeshToDracoBuffer_2\"]=asm[\"_emscripten_bind_Encoder_EncodeMeshToDracoBuffer_2\"];var _emscripten_bind_Encoder_EncodePointCloudToDracoBuffer_3=Module[\"_emscripten_bind_Encoder_EncodePointCloudToDracoBuffer_3\"]=asm[\"_emscripten_bind_Encoder_EncodePointCloudToDracoBuffer_3\"];var _emscripten_bind_Encoder_Encoder_0=Module[\"_emscripten_bind_Encoder_Encoder_0\"]=asm[\"_emscripten_bind_Encoder_Encoder_0\"];var _emscripten_bind_Encoder_SetAttributeExplicitQuantization_5=Module[\"_emscripten_bind_Encoder_SetAttributeExplicitQuantization_5\"]=asm[\"_emscripten_bind_Encoder_SetAttributeExplicitQuantization_5\"];var _emscripten_bind_Encoder_SetAttributeQuantization_2=Module[\"_emscripten_bind_Encoder_SetAttributeQuantization_2\"]=asm[\"_emscripten_bind_Encoder_SetAttributeQuantization_2\"];var _emscripten_bind_Encoder_SetEncodingMethod_1=Module[\"_emscripten_bind_Encoder_SetEncodingMethod_1\"]=asm[\"_emscripten_bind_Encoder_SetEncodingMethod_1\"];var _emscripten_bind_Encoder_SetSpeedOptions_2=Module[\"_emscripten_bind_Encoder_SetSpeedOptions_2\"]=asm[\"_emscripten_bind_Encoder_SetSpeedOptions_2\"];var _emscripten_bind_Encoder___destroy___0=Module[\"_emscripten_bind_Encoder___destroy___0\"]=asm[\"_emscripten_bind_Encoder___destroy___0\"];var _emscripten_bind_GeometryAttribute_GeometryAttribute_0=Module[\"_emscripten_bind_GeometryAttribute_GeometryAttribute_0\"]=asm[\"_emscripten_bind_GeometryAttribute_GeometryAttribute_0\"];var _emscripten_bind_GeometryAttribute___destroy___0=Module[\"_emscripten_bind_GeometryAttribute___destroy___0\"]=asm[\"_emscripten_bind_GeometryAttribute___destroy___0\"];var _emscripten_bind_MeshBuilder_AddFacesToMesh_3=Module[\"_emscripten_bind_MeshBuilder_AddFacesToMesh_3\"]=asm[\"_emscripten_bind_MeshBuilder_AddFacesToMesh_3\"];var _emscripten_bind_MeshBuilder_AddFloatAttributeToMesh_5=Module[\"_emscripten_bind_MeshBuilder_AddFloatAttributeToMesh_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddFloatAttributeToMesh_5\"];var _emscripten_bind_MeshBuilder_AddFloatAttribute_5=Module[\"_emscripten_bind_MeshBuilder_AddFloatAttribute_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddFloatAttribute_5\"];var _emscripten_bind_MeshBuilder_AddInt16Attribute_5=Module[\"_emscripten_bind_MeshBuilder_AddInt16Attribute_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddInt16Attribute_5\"];var _emscripten_bind_MeshBuilder_AddInt32AttributeToMesh_5=Module[\"_emscripten_bind_MeshBuilder_AddInt32AttributeToMesh_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddInt32AttributeToMesh_5\"];var _emscripten_bind_MeshBuilder_AddInt32Attribute_5=Module[\"_emscripten_bind_MeshBuilder_AddInt32Attribute_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddInt32Attribute_5\"];var _emscripten_bind_MeshBuilder_AddInt8Attribute_5=Module[\"_emscripten_bind_MeshBuilder_AddInt8Attribute_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddInt8Attribute_5\"];var _emscripten_bind_MeshBuilder_AddMetadataToMesh_2=Module[\"_emscripten_bind_MeshBuilder_AddMetadataToMesh_2\"]=asm[\"_emscripten_bind_MeshBuilder_AddMetadataToMesh_2\"];var _emscripten_bind_MeshBuilder_AddMetadata_2=Module[\"_emscripten_bind_MeshBuilder_AddMetadata_2\"]=asm[\"_emscripten_bind_MeshBuilder_AddMetadata_2\"];var _emscripten_bind_MeshBuilder_AddUInt16Attribute_5=Module[\"_emscripten_bind_MeshBuilder_AddUInt16Attribute_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddUInt16Attribute_5\"];var _emscripten_bind_MeshBuilder_AddUInt32Attribute_5=Module[\"_emscripten_bind_MeshBuilder_AddUInt32Attribute_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddUInt32Attribute_5\"];var _emscripten_bind_MeshBuilder_AddUInt8Attribute_5=Module[\"_emscripten_bind_MeshBuilder_AddUInt8Attribute_5\"]=asm[\"_emscripten_bind_MeshBuilder_AddUInt8Attribute_5\"];var _emscripten_bind_MeshBuilder_MeshBuilder_0=Module[\"_emscripten_bind_MeshBuilder_MeshBuilder_0\"]=asm[\"_emscripten_bind_MeshBuilder_MeshBuilder_0\"];var _emscripten_bind_MeshBuilder_SetMetadataForAttribute_3=Module[\"_emscripten_bind_MeshBuilder_SetMetadataForAttribute_3\"]=asm[\"_emscripten_bind_MeshBuilder_SetMetadataForAttribute_3\"];var _emscripten_bind_MeshBuilder___destroy___0=Module[\"_emscripten_bind_MeshBuilder___destroy___0\"]=asm[\"_emscripten_bind_MeshBuilder___destroy___0\"];var _emscripten_bind_Mesh_Mesh_0=Module[\"_emscripten_bind_Mesh_Mesh_0\"]=asm[\"_emscripten_bind_Mesh_Mesh_0\"];var _emscripten_bind_Mesh___destroy___0=Module[\"_emscripten_bind_Mesh___destroy___0\"]=asm[\"_emscripten_bind_Mesh___destroy___0\"];var _emscripten_bind_Mesh_num_attributes_0=Module[\"_emscripten_bind_Mesh_num_attributes_0\"]=asm[\"_emscripten_bind_Mesh_num_attributes_0\"];var _emscripten_bind_Mesh_num_faces_0=Module[\"_emscripten_bind_Mesh_num_faces_0\"]=asm[\"_emscripten_bind_Mesh_num_faces_0\"];var _emscripten_bind_Mesh_num_points_0=Module[\"_emscripten_bind_Mesh_num_points_0\"]=asm[\"_emscripten_bind_Mesh_num_points_0\"];var _emscripten_bind_Mesh_set_num_points_1=Module[\"_emscripten_bind_Mesh_set_num_points_1\"]=asm[\"_emscripten_bind_Mesh_set_num_points_1\"];var _emscripten_bind_MetadataBuilder_AddDoubleEntry_3=Module[\"_emscripten_bind_MetadataBuilder_AddDoubleEntry_3\"]=asm[\"_emscripten_bind_MetadataBuilder_AddDoubleEntry_3\"];var _emscripten_bind_MetadataBuilder_AddIntEntry_3=Module[\"_emscripten_bind_MetadataBuilder_AddIntEntry_3\"]=asm[\"_emscripten_bind_MetadataBuilder_AddIntEntry_3\"];var _emscripten_bind_MetadataBuilder_AddStringEntry_3=Module[\"_emscripten_bind_MetadataBuilder_AddStringEntry_3\"]=asm[\"_emscripten_bind_MetadataBuilder_AddStringEntry_3\"];var _emscripten_bind_MetadataBuilder_MetadataBuilder_0=Module[\"_emscripten_bind_MetadataBuilder_MetadataBuilder_0\"]=asm[\"_emscripten_bind_MetadataBuilder_MetadataBuilder_0\"];var _emscripten_bind_MetadataBuilder___destroy___0=Module[\"_emscripten_bind_MetadataBuilder___destroy___0\"]=asm[\"_emscripten_bind_MetadataBuilder___destroy___0\"];var _emscripten_bind_Metadata_Metadata_0=Module[\"_emscripten_bind_Metadata_Metadata_0\"]=asm[\"_emscripten_bind_Metadata_Metadata_0\"];var _emscripten_bind_Metadata___destroy___0=Module[\"_emscripten_bind_Metadata___destroy___0\"]=asm[\"_emscripten_bind_Metadata___destroy___0\"];var _emscripten_bind_PointAttribute_PointAttribute_0=Module[\"_emscripten_bind_PointAttribute_PointAttribute_0\"]=asm[\"_emscripten_bind_PointAttribute_PointAttribute_0\"];var _emscripten_bind_PointAttribute___destroy___0=Module[\"_emscripten_bind_PointAttribute___destroy___0\"]=asm[\"_emscripten_bind_PointAttribute___destroy___0\"];var _emscripten_bind_PointAttribute_attribute_type_0=Module[\"_emscripten_bind_PointAttribute_attribute_type_0\"]=asm[\"_emscripten_bind_PointAttribute_attribute_type_0\"];var _emscripten_bind_PointAttribute_byte_offset_0=Module[\"_emscripten_bind_PointAttribute_byte_offset_0\"]=asm[\"_emscripten_bind_PointAttribute_byte_offset_0\"];var _emscripten_bind_PointAttribute_byte_stride_0=Module[\"_emscripten_bind_PointAttribute_byte_stride_0\"]=asm[\"_emscripten_bind_PointAttribute_byte_stride_0\"];var _emscripten_bind_PointAttribute_data_type_0=Module[\"_emscripten_bind_PointAttribute_data_type_0\"]=asm[\"_emscripten_bind_PointAttribute_data_type_0\"];var _emscripten_bind_PointAttribute_normalized_0=Module[\"_emscripten_bind_PointAttribute_normalized_0\"]=asm[\"_emscripten_bind_PointAttribute_normalized_0\"];var _emscripten_bind_PointAttribute_num_components_0=Module[\"_emscripten_bind_PointAttribute_num_components_0\"]=asm[\"_emscripten_bind_PointAttribute_num_components_0\"];var _emscripten_bind_PointAttribute_size_0=Module[\"_emscripten_bind_PointAttribute_size_0\"]=asm[\"_emscripten_bind_PointAttribute_size_0\"];var _emscripten_bind_PointAttribute_unique_id_0=Module[\"_emscripten_bind_PointAttribute_unique_id_0\"]=asm[\"_emscripten_bind_PointAttribute_unique_id_0\"];var _emscripten_bind_PointCloudBuilder_AddFloatAttribute_5=Module[\"_emscripten_bind_PointCloudBuilder_AddFloatAttribute_5\"]=asm[\"_emscripten_bind_PointCloudBuilder_AddFloatAttribute_5\"];var _emscripten_bind_PointCloudBuilder_AddInt16Attribute_5=Module[\"_emscripten_bind_PointCloudBuilder_AddInt16Attribute_5\"]=asm[\"_emscripten_bind_PointCloudBuilder_AddInt16Attribute_5\"];var _emscripten_bind_PointCloudBuilder_AddInt32Attribute_5=Module[\"_emscripten_bind_PointCloudBuilder_AddInt32Attribute_5\"]=asm[\"_emscripten_bind_PointCloudBuilder_AddInt32Attribute_5\"];var _emscripten_bind_PointCloudBuilder_AddInt8Attribute_5=Module[\"_emscripten_bind_PointCloudBuilder_AddInt8Attribute_5\"]=asm[\"_emscripten_bind_PointCloudBuilder_AddInt8Attribute_5\"];var _emscripten_bind_PointCloudBuilder_AddMetadata_2=Module[\"_emscripten_bind_PointCloudBuilder_AddMetadata_2\"]=asm[\"_emscripten_bind_PointCloudBuilder_AddMetadata_2\"];var _emscripten_bind_PointCloudBuilder_AddUInt16Attribute_5=Module[\"_emscripten_bind_PointCloudBuilder_AddUInt16Attribute_5\"]=asm[\"_emscripten_bind_PointCloudBuilder_AddUInt16Attribute_5\"];var _emscripten_bind_PointCloudBuilder_AddUInt32Attribute_5=Module[\"_emscripten_bind_PointCloudBuilder_AddUInt32Attribute_5\"]=asm[\"_emscripten_bind_PointCloudBuilder_AddUInt32Attribute_5\"];var _emscripten_bind_PointCloudBuilder_AddUInt8Attribute_5=Module[\"_emscripten_bind_PointCloudBuilder_AddUInt8Attribute_5\"]=asm[\"_emscripten_bind_PointCloudBuilder_AddUInt8Attribute_5\"];var _emscripten_bind_PointCloudBuilder_PointCloudBuilder_0=Module[\"_emscripten_bind_PointCloudBuilder_PointCloudBuilder_0\"]=asm[\"_emscripten_bind_PointCloudBuilder_PointCloudBuilder_0\"];var _emscripten_bind_PointCloudBuilder_SetMetadataForAttribute_3=Module[\"_emscripten_bind_PointCloudBuilder_SetMetadataForAttribute_3\"]=asm[\"_emscripten_bind_PointCloudBuilder_SetMetadataForAttribute_3\"];var _emscripten_bind_PointCloudBuilder___destroy___0=Module[\"_emscripten_bind_PointCloudBuilder___destroy___0\"]=asm[\"_emscripten_bind_PointCloudBuilder___destroy___0\"];var _emscripten_bind_PointCloud_PointCloud_0=Module[\"_emscripten_bind_PointCloud_PointCloud_0\"]=asm[\"_emscripten_bind_PointCloud_PointCloud_0\"];var _emscripten_bind_PointCloud___destroy___0=Module[\"_emscripten_bind_PointCloud___destroy___0\"]=asm[\"_emscripten_bind_PointCloud___destroy___0\"];var _emscripten_bind_PointCloud_num_attributes_0=Module[\"_emscripten_bind_PointCloud_num_attributes_0\"]=asm[\"_emscripten_bind_PointCloud_num_attributes_0\"];var _emscripten_bind_PointCloud_num_points_0=Module[\"_emscripten_bind_PointCloud_num_points_0\"]=asm[\"_emscripten_bind_PointCloud_num_points_0\"];var _emscripten_bind_VoidPtr___destroy___0=Module[\"_emscripten_bind_VoidPtr___destroy___0\"]=asm[\"_emscripten_bind_VoidPtr___destroy___0\"];var _emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE=Module[\"_emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE\"]=asm[\"_emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE\"];var _emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD=Module[\"_emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD\"]=asm[\"_emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD\"];var _emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH=Module[\"_emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH\"]=asm[\"_emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH\"];var _emscripten_enum_draco_GeometryAttribute_Type_COLOR=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_COLOR\"]=asm[\"_emscripten_enum_draco_GeometryAttribute_Type_COLOR\"];var _emscripten_enum_draco_GeometryAttribute_Type_GENERIC=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_GENERIC\"]=asm[\"_emscripten_enum_draco_GeometryAttribute_Type_GENERIC\"];var _emscripten_enum_draco_GeometryAttribute_Type_INVALID=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_INVALID\"]=asm[\"_emscripten_enum_draco_GeometryAttribute_Type_INVALID\"];var _emscripten_enum_draco_GeometryAttribute_Type_NORMAL=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_NORMAL\"]=asm[\"_emscripten_enum_draco_GeometryAttribute_Type_NORMAL\"];var _emscripten_enum_draco_GeometryAttribute_Type_POSITION=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_POSITION\"]=asm[\"_emscripten_enum_draco_GeometryAttribute_Type_POSITION\"];var _emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD=Module[\"_emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD\"]=asm[\"_emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD\"];var _emscripten_enum_draco_MeshEncoderMethod_MESH_EDGEBREAKER_ENCODING=Module[\"_emscripten_enum_draco_MeshEncoderMethod_MESH_EDGEBREAKER_ENCODING\"]=asm[\"_emscripten_enum_draco_MeshEncoderMethod_MESH_EDGEBREAKER_ENCODING\"];var _emscripten_enum_draco_MeshEncoderMethod_MESH_SEQUENTIAL_ENCODING=Module[\"_emscripten_enum_draco_MeshEncoderMethod_MESH_SEQUENTIAL_ENCODING\"]=asm[\"_emscripten_enum_draco_MeshEncoderMethod_MESH_SEQUENTIAL_ENCODING\"];var _emscripten_replace_memory=Module[\"_emscripten_replace_memory\"]=asm[\"_emscripten_replace_memory\"];var _free=Module[\"_free\"]=asm[\"_free\"];var _i64Add=Module[\"_i64Add\"]=asm[\"_i64Add\"];var _i64Subtract=Module[\"_i64Subtract\"]=asm[\"_i64Subtract\"];var _llvm_bswap_i32=Module[\"_llvm_bswap_i32\"]=asm[\"_llvm_bswap_i32\"];var _malloc=Module[\"_malloc\"]=asm[\"_malloc\"];var _memcpy=Module[\"_memcpy\"]=asm[\"_memcpy\"];var _memmove=Module[\"_memmove\"]=asm[\"_memmove\"];var _memset=Module[\"_memset\"]=asm[\"_memset\"];var _sbrk=Module[\"_sbrk\"]=asm[\"_sbrk\"];var establishStackSpace=Module[\"establishStackSpace\"]=asm[\"establishStackSpace\"];var getTempRet0=Module[\"getTempRet0\"]=asm[\"getTempRet0\"];var runPostSets=Module[\"runPostSets\"]=asm[\"runPostSets\"];var setTempRet0=Module[\"setTempRet0\"]=asm[\"setTempRet0\"];var setThrew=Module[\"setThrew\"]=asm[\"setThrew\"];var stackAlloc=Module[\"stackAlloc\"]=asm[\"stackAlloc\"];var stackRestore=Module[\"stackRestore\"]=asm[\"stackRestore\"];var stackSave=Module[\"stackSave\"]=asm[\"stackSave\"];var dynCall_ii=Module[\"dynCall_ii\"]=asm[\"dynCall_ii\"];var dynCall_iii=Module[\"dynCall_iii\"]=asm[\"dynCall_iii\"];var dynCall_iiii=Module[\"dynCall_iiii\"]=asm[\"dynCall_iiii\"];var dynCall_iiiiiii=Module[\"dynCall_iiiiiii\"]=asm[\"dynCall_iiiiiii\"];var dynCall_v=Module[\"dynCall_v\"]=asm[\"dynCall_v\"];var dynCall_vi=Module[\"dynCall_vi\"]=asm[\"dynCall_vi\"];var dynCall_vii=Module[\"dynCall_vii\"]=asm[\"dynCall_vii\"];var dynCall_viii=Module[\"dynCall_viii\"]=asm[\"dynCall_viii\"];var dynCall_viiii=Module[\"dynCall_viiii\"]=asm[\"dynCall_viiii\"];var dynCall_viiiii=Module[\"dynCall_viiiii\"]=asm[\"dynCall_viiiii\"];var dynCall_viiiiii=Module[\"dynCall_viiiiii\"]=asm[\"dynCall_viiiiii\"];Module[\"asm\"]=asm;if(memoryInitializer){if(!isDataURI(memoryInitializer)){if(typeof Module[\"locateFile\"]===\"function\"){memoryInitializer=Module[\"locateFile\"](memoryInitializer)}else if(Module[\"memoryInitializerPrefixURL\"]){memoryInitializer=Module[\"memoryInitializerPrefixURL\"]+memoryInitializer}}if(ENVIRONMENT_IS_NODE||ENVIRONMENT_IS_SHELL){var data=Module[\"readBinary\"](memoryInitializer);HEAPU8.set(data,GLOBAL_BASE)}else{addRunDependency(\"memory initializer\");var applyMemoryInitializer=(function(data){if(data.byteLength)data=new Uint8Array(data);HEAPU8.set(data,GLOBAL_BASE);if(Module[\"memoryInitializerRequest\"])delete Module[\"memoryInitializerRequest\"].response;removeRunDependency(\"memory initializer\")});function doBrowserLoad(){Module[\"readAsync\"](memoryInitializer,applyMemoryInitializer,(function(){throw\"could not load memory initializer \"+memoryInitializer}))}var memoryInitializerBytes=tryParseAsDataURI(memoryInitializer);if(memoryInitializerBytes){applyMemoryInitializer(memoryInitializerBytes.buffer)}else if(Module[\"memoryInitializerRequest\"]){function useRequest(){var request=Module[\"memoryInitializerRequest\"];var response=request.response;if(request.status!==200&&request.status!==0){var data=tryParseAsDataURI(Module[\"memoryInitializerRequestURL\"]);if(data){response=data.buffer}else{console.warn(\"a problem seems to have happened with Module.memoryInitializerRequest, status: \"+request.status+\", retrying \"+memoryInitializer);doBrowserLoad();return}}applyMemoryInitializer(response)}if(Module[\"memoryInitializerRequest\"].response){setTimeout(useRequest,0)}else{Module[\"memoryInitializerRequest\"].addEventListener(\"load\",useRequest)}}else{doBrowserLoad()}}}Module[\"then\"]=(function(func){if(Module[\"calledRun\"]){func(Module)}else{var old=Module[\"onRuntimeInitialized\"];Module[\"onRuntimeInitialized\"]=(function(){if(old)old();func(Module)})}return Module});function ExitStatus(status){this.name=\"ExitStatus\";this.message=\"Program terminated with exit(\"+status+\")\";this.status=status}ExitStatus.prototype=new Error;ExitStatus.prototype.constructor=ExitStatus;var initialStackTop;dependenciesFulfilled=function runCaller(){if(!Module[\"calledRun\"])run();if(!Module[\"calledRun\"])dependenciesFulfilled=runCaller};function run(args){args=args||Module[\"arguments\"];if(runDependencies>0){return}preRun();if(runDependencies>0)return;if(Module[\"calledRun\"])return;function doRun(){if(Module[\"calledRun\"])return;Module[\"calledRun\"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout((function(){setTimeout((function(){Module[\"setStatus\"](\"\")}),1);doRun()}),1)}else{doRun()}}Module[\"run\"]=run;function exit(status,implicit){if(implicit&&Module[\"noExitRuntime\"]&&status===0){return}if(Module[\"noExitRuntime\"]){}else{ABORT=true;EXITSTATUS=status;STACKTOP=initialStackTop;exitRuntime();if(Module[\"onExit\"])Module[\"onExit\"](status)}if(ENVIRONMENT_IS_NODE){process[\"exit\"](status)}Module[\"quit\"](status,new ExitStatus(status))}Module[\"exit\"]=exit;function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}if(what!==undefined){Module.print(what);Module.printErr(what);what=JSON.stringify(what)}else{what=\"\"}ABORT=true;EXITSTATUS=1;throw\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\"}Module[\"abort\"]=abort;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}Module[\"noExitRuntime\"]=true;run();function WrapperObject(){}WrapperObject.prototype=Object.create(WrapperObject.prototype);WrapperObject.prototype.constructor=WrapperObject;WrapperObject.prototype.__class__=WrapperObject;WrapperObject.__cache__={};Module[\"WrapperObject\"]=WrapperObject;function getCache(__class__){return(__class__||WrapperObject).__cache__}Module[\"getCache\"]=getCache;function wrapPointer(ptr,__class__){var cache=getCache(__class__);var ret=cache[ptr];if(ret)return ret;ret=Object.create((__class__||WrapperObject).prototype);ret.ptr=ptr;return cache[ptr]=ret}Module[\"wrapPointer\"]=wrapPointer;function castObject(obj,__class__){return wrapPointer(obj.ptr,__class__)}Module[\"castObject\"]=castObject;Module[\"NULL\"]=wrapPointer(0);function destroy(obj){if(!obj[\"__destroy__\"])throw\"Error: Cannot destroy object. (Did you create it yourself?)\";obj[\"__destroy__\"]();delete getCache(obj.__class__)[obj.ptr]}Module[\"destroy\"]=destroy;function compare(obj1,obj2){return obj1.ptr===obj2.ptr}Module[\"compare\"]=compare;function getPointer(obj){return obj.ptr}Module[\"getPointer\"]=getPointer;function getClass(obj){return obj.__class__}Module[\"getClass\"]=getClass;var ensureCache={buffer:0,size:0,pos:0,temps:[],needed:0,prepare:(function(){if(ensureCache.needed){for(var i=0;i<ensureCache.temps.length;i++){Module[\"_free\"](ensureCache.temps[i])}ensureCache.temps.length=0;Module[\"_free\"](ensureCache.buffer);ensureCache.buffer=0;ensureCache.size+=ensureCache.needed;ensureCache.needed=0}if(!ensureCache.buffer){ensureCache.size+=128;ensureCache.buffer=Module[\"_malloc\"](ensureCache.size);assert(ensureCache.buffer)}ensureCache.pos=0}),alloc:(function(array,view){assert(ensureCache.buffer);var bytes=view.BYTES_PER_ELEMENT;var len=array.length*bytes;len=len+7&-8;var ret;if(ensureCache.pos+len>=ensureCache.size){assert(len>0);ensureCache.needed+=len;ret=Module[\"_malloc\"](len);ensureCache.temps.push(ret)}else{ret=ensureCache.buffer+ensureCache.pos;ensureCache.pos+=len}return ret}),copy:(function(array,view,offset){var offsetShifted=offset;var bytes=view.BYTES_PER_ELEMENT;switch(bytes){case 2:offsetShifted>>=1;break;case 4:offsetShifted>>=2;break;case 8:offsetShifted>>=3;break}for(var i=0;i<array.length;i++){view[offsetShifted+i]=array[i]}})};function ensureString(value){if(typeof value===\"string\"){var intArray=intArrayFromString(value);var offset=ensureCache.alloc(intArray,HEAP8);ensureCache.copy(intArray,HEAP8,offset);return offset}return value}function ensureInt8(value){if(typeof value===\"object\"){var offset=ensureCache.alloc(value,HEAP8);ensureCache.copy(value,HEAP8,offset);return offset}return value}function ensureInt16(value){if(typeof value===\"object\"){var offset=ensureCache.alloc(value,HEAP16);ensureCache.copy(value,HEAP16,offset);return offset}return value}function ensureInt32(value){if(typeof value===\"object\"){var offset=ensureCache.alloc(value,HEAP32);ensureCache.copy(value,HEAP32,offset);return offset}return value}function ensureFloat32(value){if(typeof value===\"object\"){var offset=ensureCache.alloc(value,HEAPF32);ensureCache.copy(value,HEAPF32,offset);return offset}return value}function PointCloud(){this.ptr=_emscripten_bind_PointCloud_PointCloud_0();getCache(PointCloud)[this.ptr]=this}PointCloud.prototype=Object.create(WrapperObject.prototype);PointCloud.prototype.constructor=PointCloud;PointCloud.prototype.__class__=PointCloud;PointCloud.__cache__={};Module[\"PointCloud\"]=PointCloud;PointCloud.prototype[\"num_attributes\"]=PointCloud.prototype.num_attributes=(function(){var self=this.ptr;return _emscripten_bind_PointCloud_num_attributes_0(self)});PointCloud.prototype[\"num_points\"]=PointCloud.prototype.num_points=(function(){var self=this.ptr;return _emscripten_bind_PointCloud_num_points_0(self)});PointCloud.prototype[\"__destroy__\"]=PointCloud.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_PointCloud___destroy___0(self)});function PointAttribute(){this.ptr=_emscripten_bind_PointAttribute_PointAttribute_0();getCache(PointAttribute)[this.ptr]=this}PointAttribute.prototype=Object.create(WrapperObject.prototype);PointAttribute.prototype.constructor=PointAttribute;PointAttribute.prototype.__class__=PointAttribute;PointAttribute.__cache__={};Module[\"PointAttribute\"]=PointAttribute;PointAttribute.prototype[\"size\"]=PointAttribute.prototype.size=(function(){var self=this.ptr;return _emscripten_bind_PointAttribute_size_0(self)});PointAttribute.prototype[\"attribute_type\"]=PointAttribute.prototype.attribute_type=(function(){var self=this.ptr;return _emscripten_bind_PointAttribute_attribute_type_0(self)});PointAttribute.prototype[\"data_type\"]=PointAttribute.prototype.data_type=(function(){var self=this.ptr;return _emscripten_bind_PointAttribute_data_type_0(self)});PointAttribute.prototype[\"num_components\"]=PointAttribute.prototype.num_components=(function(){var self=this.ptr;return _emscripten_bind_PointAttribute_num_components_0(self)});PointAttribute.prototype[\"normalized\"]=PointAttribute.prototype.normalized=(function(){var self=this.ptr;return!!_emscripten_bind_PointAttribute_normalized_0(self)});PointAttribute.prototype[\"byte_stride\"]=PointAttribute.prototype.byte_stride=(function(){var self=this.ptr;return _emscripten_bind_PointAttribute_byte_stride_0(self)});PointAttribute.prototype[\"byte_offset\"]=PointAttribute.prototype.byte_offset=(function(){var self=this.ptr;return _emscripten_bind_PointAttribute_byte_offset_0(self)});PointAttribute.prototype[\"unique_id\"]=PointAttribute.prototype.unique_id=(function(){var self=this.ptr;return _emscripten_bind_PointAttribute_unique_id_0(self)});PointAttribute.prototype[\"__destroy__\"]=PointAttribute.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_PointAttribute___destroy___0(self)});function Encoder(){this.ptr=_emscripten_bind_Encoder_Encoder_0();getCache(Encoder)[this.ptr]=this}Encoder.prototype=Object.create(WrapperObject.prototype);Encoder.prototype.constructor=Encoder;Encoder.prototype.__class__=Encoder;Encoder.__cache__={};Module[\"Encoder\"]=Encoder;Encoder.prototype[\"SetEncodingMethod\"]=Encoder.prototype.SetEncodingMethod=(function(arg0){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;_emscripten_bind_Encoder_SetEncodingMethod_1(self,arg0)});Encoder.prototype[\"SetAttributeQuantization\"]=Encoder.prototype.SetAttributeQuantization=(function(arg0,arg1){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;_emscripten_bind_Encoder_SetAttributeQuantization_2(self,arg0,arg1)});Encoder.prototype[\"SetAttributeExplicitQuantization\"]=Encoder.prototype.SetAttributeExplicitQuantization=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(typeof arg3==\"object\"){arg3=ensureFloat32(arg3)}if(arg4&&typeof arg4===\"object\")arg4=arg4.ptr;_emscripten_bind_Encoder_SetAttributeExplicitQuantization_5(self,arg0,arg1,arg2,arg3,arg4)});Encoder.prototype[\"SetSpeedOptions\"]=Encoder.prototype.SetSpeedOptions=(function(arg0,arg1){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;_emscripten_bind_Encoder_SetSpeedOptions_2(self,arg0,arg1)});Encoder.prototype[\"EncodeMeshToDracoBuffer\"]=Encoder.prototype.EncodeMeshToDracoBuffer=(function(arg0,arg1){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;return _emscripten_bind_Encoder_EncodeMeshToDracoBuffer_2(self,arg0,arg1)});Encoder.prototype[\"EncodePointCloudToDracoBuffer\"]=Encoder.prototype.EncodePointCloudToDracoBuffer=(function(arg0,arg1,arg2){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;return _emscripten_bind_Encoder_EncodePointCloudToDracoBuffer_3(self,arg0,arg1,arg2)});Encoder.prototype[\"__destroy__\"]=Encoder.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_Encoder___destroy___0(self)});function MeshBuilder(){this.ptr=_emscripten_bind_MeshBuilder_MeshBuilder_0();getCache(MeshBuilder)[this.ptr]=this}MeshBuilder.prototype=Object.create(WrapperObject.prototype);MeshBuilder.prototype.constructor=MeshBuilder;MeshBuilder.prototype.__class__=MeshBuilder;MeshBuilder.__cache__={};Module[\"MeshBuilder\"]=MeshBuilder;MeshBuilder.prototype[\"AddFacesToMesh\"]=MeshBuilder.prototype.AddFacesToMesh=(function(arg0,arg1,arg2){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(typeof arg2==\"object\"){arg2=ensureInt32(arg2)}return!!_emscripten_bind_MeshBuilder_AddFacesToMesh_3(self,arg0,arg1,arg2)});MeshBuilder.prototype[\"AddFloatAttributeToMesh\"]=MeshBuilder.prototype.AddFloatAttributeToMesh=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureFloat32(arg4)}return _emscripten_bind_MeshBuilder_AddFloatAttributeToMesh_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddInt32AttributeToMesh\"]=MeshBuilder.prototype.AddInt32AttributeToMesh=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt32(arg4)}return _emscripten_bind_MeshBuilder_AddInt32AttributeToMesh_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddMetadataToMesh\"]=MeshBuilder.prototype.AddMetadataToMesh=(function(arg0,arg1){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;return!!_emscripten_bind_MeshBuilder_AddMetadataToMesh_2(self,arg0,arg1)});MeshBuilder.prototype[\"AddFloatAttribute\"]=MeshBuilder.prototype.AddFloatAttribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureFloat32(arg4)}return _emscripten_bind_MeshBuilder_AddFloatAttribute_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddInt8Attribute\"]=MeshBuilder.prototype.AddInt8Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt8(arg4)}return _emscripten_bind_MeshBuilder_AddInt8Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddUInt8Attribute\"]=MeshBuilder.prototype.AddUInt8Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt8(arg4)}return _emscripten_bind_MeshBuilder_AddUInt8Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddInt16Attribute\"]=MeshBuilder.prototype.AddInt16Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt16(arg4)}return _emscripten_bind_MeshBuilder_AddInt16Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddUInt16Attribute\"]=MeshBuilder.prototype.AddUInt16Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt16(arg4)}return _emscripten_bind_MeshBuilder_AddUInt16Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddInt32Attribute\"]=MeshBuilder.prototype.AddInt32Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt32(arg4)}return _emscripten_bind_MeshBuilder_AddInt32Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddUInt32Attribute\"]=MeshBuilder.prototype.AddUInt32Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt32(arg4)}return _emscripten_bind_MeshBuilder_AddUInt32Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});MeshBuilder.prototype[\"AddMetadata\"]=MeshBuilder.prototype.AddMetadata=(function(arg0,arg1){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;return!!_emscripten_bind_MeshBuilder_AddMetadata_2(self,arg0,arg1)});MeshBuilder.prototype[\"SetMetadataForAttribute\"]=MeshBuilder.prototype.SetMetadataForAttribute=(function(arg0,arg1,arg2){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;return!!_emscripten_bind_MeshBuilder_SetMetadataForAttribute_3(self,arg0,arg1,arg2)});MeshBuilder.prototype[\"__destroy__\"]=MeshBuilder.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_MeshBuilder___destroy___0(self)});function DracoInt8Array(){this.ptr=_emscripten_bind_DracoInt8Array_DracoInt8Array_0();getCache(DracoInt8Array)[this.ptr]=this}DracoInt8Array.prototype=Object.create(WrapperObject.prototype);DracoInt8Array.prototype.constructor=DracoInt8Array;DracoInt8Array.prototype.__class__=DracoInt8Array;DracoInt8Array.__cache__={};Module[\"DracoInt8Array\"]=DracoInt8Array;DracoInt8Array.prototype[\"GetValue\"]=DracoInt8Array.prototype.GetValue=(function(arg0){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;return _emscripten_bind_DracoInt8Array_GetValue_1(self,arg0)});DracoInt8Array.prototype[\"size\"]=DracoInt8Array.prototype.size=(function(){var self=this.ptr;return _emscripten_bind_DracoInt8Array_size_0(self)});DracoInt8Array.prototype[\"__destroy__\"]=DracoInt8Array.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_DracoInt8Array___destroy___0(self)});function MetadataBuilder(){this.ptr=_emscripten_bind_MetadataBuilder_MetadataBuilder_0();getCache(MetadataBuilder)[this.ptr]=this}MetadataBuilder.prototype=Object.create(WrapperObject.prototype);MetadataBuilder.prototype.constructor=MetadataBuilder;MetadataBuilder.prototype.__class__=MetadataBuilder;MetadataBuilder.__cache__={};Module[\"MetadataBuilder\"]=MetadataBuilder;MetadataBuilder.prototype[\"AddStringEntry\"]=MetadataBuilder.prototype.AddStringEntry=(function(arg0,arg1,arg2){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;else arg1=ensureString(arg1);if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;else arg2=ensureString(arg2);return!!_emscripten_bind_MetadataBuilder_AddStringEntry_3(self,arg0,arg1,arg2)});MetadataBuilder.prototype[\"AddIntEntry\"]=MetadataBuilder.prototype.AddIntEntry=(function(arg0,arg1,arg2){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;else arg1=ensureString(arg1);if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;return!!_emscripten_bind_MetadataBuilder_AddIntEntry_3(self,arg0,arg1,arg2)});MetadataBuilder.prototype[\"AddDoubleEntry\"]=MetadataBuilder.prototype.AddDoubleEntry=(function(arg0,arg1,arg2){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;else arg1=ensureString(arg1);if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;return!!_emscripten_bind_MetadataBuilder_AddDoubleEntry_3(self,arg0,arg1,arg2)});MetadataBuilder.prototype[\"__destroy__\"]=MetadataBuilder.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_MetadataBuilder___destroy___0(self)});function GeometryAttribute(){this.ptr=_emscripten_bind_GeometryAttribute_GeometryAttribute_0();getCache(GeometryAttribute)[this.ptr]=this}GeometryAttribute.prototype=Object.create(WrapperObject.prototype);GeometryAttribute.prototype.constructor=GeometryAttribute;GeometryAttribute.prototype.__class__=GeometryAttribute;GeometryAttribute.__cache__={};Module[\"GeometryAttribute\"]=GeometryAttribute;GeometryAttribute.prototype[\"__destroy__\"]=GeometryAttribute.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_GeometryAttribute___destroy___0(self)});function Mesh(){this.ptr=_emscripten_bind_Mesh_Mesh_0();getCache(Mesh)[this.ptr]=this}Mesh.prototype=Object.create(WrapperObject.prototype);Mesh.prototype.constructor=Mesh;Mesh.prototype.__class__=Mesh;Mesh.__cache__={};Module[\"Mesh\"]=Mesh;Mesh.prototype[\"num_faces\"]=Mesh.prototype.num_faces=(function(){var self=this.ptr;return _emscripten_bind_Mesh_num_faces_0(self)});Mesh.prototype[\"num_attributes\"]=Mesh.prototype.num_attributes=(function(){var self=this.ptr;return _emscripten_bind_Mesh_num_attributes_0(self)});Mesh.prototype[\"num_points\"]=Mesh.prototype.num_points=(function(){var self=this.ptr;return _emscripten_bind_Mesh_num_points_0(self)});Mesh.prototype[\"set_num_points\"]=Mesh.prototype.set_num_points=(function(arg0){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;_emscripten_bind_Mesh_set_num_points_1(self,arg0)});Mesh.prototype[\"__destroy__\"]=Mesh.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_Mesh___destroy___0(self)});function PointCloudBuilder(){this.ptr=_emscripten_bind_PointCloudBuilder_PointCloudBuilder_0();getCache(PointCloudBuilder)[this.ptr]=this}PointCloudBuilder.prototype=Object.create(WrapperObject.prototype);PointCloudBuilder.prototype.constructor=PointCloudBuilder;PointCloudBuilder.prototype.__class__=PointCloudBuilder;PointCloudBuilder.__cache__={};Module[\"PointCloudBuilder\"]=PointCloudBuilder;PointCloudBuilder.prototype[\"AddFloatAttribute\"]=PointCloudBuilder.prototype.AddFloatAttribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureFloat32(arg4)}return _emscripten_bind_PointCloudBuilder_AddFloatAttribute_5(self,arg0,arg1,arg2,arg3,arg4)});PointCloudBuilder.prototype[\"AddInt8Attribute\"]=PointCloudBuilder.prototype.AddInt8Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt8(arg4)}return _emscripten_bind_PointCloudBuilder_AddInt8Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});PointCloudBuilder.prototype[\"AddUInt8Attribute\"]=PointCloudBuilder.prototype.AddUInt8Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt8(arg4)}return _emscripten_bind_PointCloudBuilder_AddUInt8Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});PointCloudBuilder.prototype[\"AddInt16Attribute\"]=PointCloudBuilder.prototype.AddInt16Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt16(arg4)}return _emscripten_bind_PointCloudBuilder_AddInt16Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});PointCloudBuilder.prototype[\"AddUInt16Attribute\"]=PointCloudBuilder.prototype.AddUInt16Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt16(arg4)}return _emscripten_bind_PointCloudBuilder_AddUInt16Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});PointCloudBuilder.prototype[\"AddInt32Attribute\"]=PointCloudBuilder.prototype.AddInt32Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt32(arg4)}return _emscripten_bind_PointCloudBuilder_AddInt32Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});PointCloudBuilder.prototype[\"AddUInt32Attribute\"]=PointCloudBuilder.prototype.AddUInt32Attribute=(function(arg0,arg1,arg2,arg3,arg4){var self=this.ptr;ensureCache.prepare();if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;if(arg3&&typeof arg3===\"object\")arg3=arg3.ptr;if(typeof arg4==\"object\"){arg4=ensureInt32(arg4)}return _emscripten_bind_PointCloudBuilder_AddUInt32Attribute_5(self,arg0,arg1,arg2,arg3,arg4)});PointCloudBuilder.prototype[\"AddMetadata\"]=PointCloudBuilder.prototype.AddMetadata=(function(arg0,arg1){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;return!!_emscripten_bind_PointCloudBuilder_AddMetadata_2(self,arg0,arg1)});PointCloudBuilder.prototype[\"SetMetadataForAttribute\"]=PointCloudBuilder.prototype.SetMetadataForAttribute=(function(arg0,arg1,arg2){var self=this.ptr;if(arg0&&typeof arg0===\"object\")arg0=arg0.ptr;if(arg1&&typeof arg1===\"object\")arg1=arg1.ptr;if(arg2&&typeof arg2===\"object\")arg2=arg2.ptr;return!!_emscripten_bind_PointCloudBuilder_SetMetadataForAttribute_3(self,arg0,arg1,arg2)});PointCloudBuilder.prototype[\"__destroy__\"]=PointCloudBuilder.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_PointCloudBuilder___destroy___0(self)});function VoidPtr(){throw\"cannot construct a VoidPtr, no constructor in IDL\"}VoidPtr.prototype=Object.create(WrapperObject.prototype);VoidPtr.prototype.constructor=VoidPtr;VoidPtr.prototype.__class__=VoidPtr;VoidPtr.__cache__={};Module[\"VoidPtr\"]=VoidPtr;VoidPtr.prototype[\"__destroy__\"]=VoidPtr.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_VoidPtr___destroy___0(self)});function Metadata(){this.ptr=_emscripten_bind_Metadata_Metadata_0();getCache(Metadata)[this.ptr]=this}Metadata.prototype=Object.create(WrapperObject.prototype);Metadata.prototype.constructor=Metadata;Metadata.prototype.__class__=Metadata;Metadata.__cache__={};Module[\"Metadata\"]=Metadata;Metadata.prototype[\"__destroy__\"]=Metadata.prototype.__destroy__=(function(){var self=this.ptr;_emscripten_bind_Metadata___destroy___0(self)});((function(){function setupEnums(){Module[\"MESH_SEQUENTIAL_ENCODING\"]=_emscripten_enum_draco_MeshEncoderMethod_MESH_SEQUENTIAL_ENCODING();Module[\"MESH_EDGEBREAKER_ENCODING\"]=_emscripten_enum_draco_MeshEncoderMethod_MESH_EDGEBREAKER_ENCODING();Module[\"INVALID_GEOMETRY_TYPE\"]=_emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE();Module[\"POINT_CLOUD\"]=_emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD();Module[\"TRIANGULAR_MESH\"]=_emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH();Module[\"INVALID\"]=_emscripten_enum_draco_GeometryAttribute_Type_INVALID();Module[\"POSITION\"]=_emscripten_enum_draco_GeometryAttribute_Type_POSITION();Module[\"NORMAL\"]=_emscripten_enum_draco_GeometryAttribute_Type_NORMAL();Module[\"COLOR\"]=_emscripten_enum_draco_GeometryAttribute_Type_COLOR();Module[\"TEX_COORD\"]=_emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD();Module[\"GENERIC\"]=_emscripten_enum_draco_GeometryAttribute_Type_GENERIC()}if(Module[\"calledRun\"])setupEnums();else addOnPreMain(setupEnums)}))();if(typeof Module[\"onModuleParsed\"]===\"function\"){Module[\"onModuleParsed\"]()}\n\n\n\n\n\n\n  return DracoEncoderModule;\n};\nif (typeof exports === 'object' && typeof module === 'object')\n  module.exports = DracoEncoderModule;\nelse if (typeof define === 'function' && define['amd'])\n  define([], function() { return DracoEncoderModule; });\nelse if (typeof exports === 'object')\n  exports[\"DracoEncoderModule\"] = DracoEncoderModule;\n"
  },
  {
    "path": "public/assets/draco/gltf/draco_wasm_wrapper.js",
    "content": "var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(f){var m=0;return function(){return m<f.length?{done:!1,value:f[m++]}:{done:!0}}};$jscomp.arrayIterator=function(f){return{next:$jscomp.arrayIteratorImpl(f)}};$jscomp.makeIterator=function(f){var m=\"undefined\"!=typeof Symbol&&Symbol.iterator&&f[Symbol.iterator];return m?m.call(f):$jscomp.arrayIterator(f)};\n$jscomp.getGlobal=function(f){return\"undefined\"!=typeof window&&window===f?f:\"undefined\"!=typeof global&&null!=global?global:f};$jscomp.global=$jscomp.getGlobal(this);$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||\"function\"==typeof Object.defineProperties?Object.defineProperty:function(f,m,v){f!=Array.prototype&&f!=Object.prototype&&(f[m]=v.value)};\n$jscomp.polyfill=function(f,m,v,t){if(m){v=$jscomp.global;f=f.split(\".\");for(t=0;t<f.length-1;t++){var h=f[t];h in v||(v[h]={});v=v[h]}f=f[f.length-1];t=v[f];m=m(t);m!=t&&null!=m&&$jscomp.defineProperty(v,f,{configurable:!0,writable:!0,value:m})}};$jscomp.FORCE_POLYFILL_PROMISE=!1;\n$jscomp.polyfill(\"Promise\",function(f){function m(){this.batch_=null}function v(e){return e instanceof h?e:new h(function(l,f){l(e)})}if(f&&!$jscomp.FORCE_POLYFILL_PROMISE)return f;m.prototype.asyncExecute=function(e){if(null==this.batch_){this.batch_=[];var l=this;this.asyncExecuteFunction(function(){l.executeBatch_()})}this.batch_.push(e)};var t=$jscomp.global.setTimeout;m.prototype.asyncExecuteFunction=function(e){t(e,0)};m.prototype.executeBatch_=function(){for(;this.batch_&&this.batch_.length;){var e=\nthis.batch_;this.batch_=[];for(var l=0;l<e.length;++l){var f=e[l];e[l]=null;try{f()}catch(z){this.asyncThrow_(z)}}}this.batch_=null};m.prototype.asyncThrow_=function(e){this.asyncExecuteFunction(function(){throw e;})};var h=function(e){this.state_=0;this.result_=void 0;this.onSettledCallbacks_=[];var l=this.createResolveAndReject_();try{e(l.resolve,l.reject)}catch(S){l.reject(S)}};h.prototype.createResolveAndReject_=function(){function e(e){return function(h){f||(f=!0,e.call(l,h))}}var l=this,f=!1;\nreturn{resolve:e(this.resolveTo_),reject:e(this.reject_)}};h.prototype.resolveTo_=function(e){if(e===this)this.reject_(new TypeError(\"A Promise cannot resolve to itself\"));else if(e instanceof h)this.settleSameAsPromise_(e);else{a:switch(typeof e){case \"object\":var l=null!=e;break a;case \"function\":l=!0;break a;default:l=!1}l?this.resolveToNonPromiseObj_(e):this.fulfill_(e)}};h.prototype.resolveToNonPromiseObj_=function(e){var l=void 0;try{l=e.then}catch(S){this.reject_(S);return}\"function\"==typeof l?\nthis.settleSameAsThenable_(l,e):this.fulfill_(e)};h.prototype.reject_=function(e){this.settle_(2,e)};h.prototype.fulfill_=function(e){this.settle_(1,e)};h.prototype.settle_=function(e,l){if(0!=this.state_)throw Error(\"Cannot settle(\"+e+\", \"+l+\"): Promise already settled in state\"+this.state_);this.state_=e;this.result_=l;this.executeOnSettledCallbacks_()};h.prototype.executeOnSettledCallbacks_=function(){if(null!=this.onSettledCallbacks_){for(var e=0;e<this.onSettledCallbacks_.length;++e)X.asyncExecute(this.onSettledCallbacks_[e]);\nthis.onSettledCallbacks_=null}};var X=new m;h.prototype.settleSameAsPromise_=function(e){var l=this.createResolveAndReject_();e.callWhenSettled_(l.resolve,l.reject)};h.prototype.settleSameAsThenable_=function(e,l){var f=this.createResolveAndReject_();try{e.call(l,f.resolve,f.reject)}catch(z){f.reject(z)}};h.prototype.then=function(e,f){function l(e,f){return\"function\"==typeof e?function(f){try{m(e(f))}catch(p){v(p)}}:f}var m,v,t=new h(function(e,f){m=e;v=f});this.callWhenSettled_(l(e,m),l(f,v));return t};\nh.prototype.catch=function(e){return this.then(void 0,e)};h.prototype.callWhenSettled_=function(e,f){function l(){switch(h.state_){case 1:e(h.result_);break;case 2:f(h.result_);break;default:throw Error(\"Unexpected state: \"+h.state_);}}var h=this;null==this.onSettledCallbacks_?X.asyncExecute(l):this.onSettledCallbacks_.push(l)};h.resolve=v;h.reject=function(e){return new h(function(f,h){h(e)})};h.race=function(e){return new h(function(f,h){for(var l=$jscomp.makeIterator(e),m=l.next();!m.done;m=l.next())v(m.value).callWhenSettled_(f,\nh)})};h.all=function(e){var f=$jscomp.makeIterator(e),m=f.next();return m.done?v([]):new h(function(e,h){function l(f){return function(h){t[f]=h;z--;0==z&&e(t)}}var t=[],z=0;do t.push(void 0),z++,v(m.value).callWhenSettled_(l(t.length-1),h),m=f.next();while(!m.done)})};return h},\"es6\",\"es3\");\nvar DracoDecoderModule=function(){var f=\"undefined\"!==typeof document&&document.currentScript?document.currentScript.src:void 0;\"undefined\"!==typeof __filename&&(f=f||__filename);return function(m){function v(k){return a.locateFile?a.locateFile(k,M):M+k}function t(a,c){a||z(\"Assertion failed: \"+c)}function h(a,c,b){var d=c+b;for(b=c;a[b]&&!(b>=d);)++b;if(16<b-c&&a.subarray&&xa)return xa.decode(a.subarray(c,b));for(d=\"\";c<b;){var k=a[c++];if(k&128){var e=a[c++]&63;if(192==(k&224))d+=String.fromCharCode((k&\n31)<<6|e);else{var f=a[c++]&63;k=224==(k&240)?(k&15)<<12|e<<6|f:(k&7)<<18|e<<12|f<<6|a[c++]&63;65536>k?d+=String.fromCharCode(k):(k-=65536,d+=String.fromCharCode(55296|k>>10,56320|k&1023))}}else d+=String.fromCharCode(k)}return d}function X(a,c){return a?h(ca,a,c):\"\"}function e(a,c){0<a%c&&(a+=c-a%c);return a}function l(k){ka=k;a.HEAP8=T=new Int8Array(k);a.HEAP16=new Int16Array(k);a.HEAP32=P=new Int32Array(k);a.HEAPU8=ca=new Uint8Array(k);a.HEAPU16=new Uint16Array(k);a.HEAPU32=new Uint32Array(k);\na.HEAPF32=new Float32Array(k);a.HEAPF64=new Float64Array(k)}function S(k){for(;0<k.length;){var c=k.shift();if(\"function\"==typeof c)c();else{var b=c.func;\"number\"===typeof b?void 0===c.arg?a.dynCall_v(b):a.dynCall_vi(b,c.arg):b(void 0===c.arg?null:c.arg)}}}function z(k){if(a.onAbort)a.onAbort(k);k+=\"\";ya(k);Y(k);za=!0;throw new WebAssembly.RuntimeError(\"abort(\"+k+\"). Build with -s ASSERTIONS=1 for more info.\");}function va(a){return String.prototype.startsWith?a.startsWith(\"data:application/octet-stream;base64,\"):\n0===a.indexOf(\"data:application/octet-stream;base64,\")}function wa(){try{if(da)return new Uint8Array(da);if(la)return la(U);throw\"both async and sync fetching of the wasm failed\";}catch(k){z(k)}}function Ma(){return da||!ea&&!Z||\"function\"!==typeof fetch?new Promise(function(a,c){a(wa())}):fetch(U,{credentials:\"same-origin\"}).then(function(a){if(!a.ok)throw\"failed to load wasm binary file at '\"+U+\"'\";return a.arrayBuffer()}).catch(function(){return wa()})}function ba(){if(!ba.strings){var a={USER:\"web_user\",\nLOGNAME:\"web_user\",PATH:\"/\",PWD:\"/\",HOME:\"/home/web_user\",LANG:(\"object\"===typeof navigator&&navigator.languages&&navigator.languages[0]||\"C\").replace(\"-\",\"_\")+\".UTF-8\",_:na},c;for(c in Aa)a[c]=Aa[c];var b=[];for(c in a)b.push(c+\"=\"+a[c]);ba.strings=b}return ba.strings}function ma(k){function c(){if(!fa&&(fa=!0,!za)){Ba=!0;S(Ca);S(Da);if(a.onRuntimeInitialized)a.onRuntimeInitialized();if(a.postRun)for(\"function\"==typeof a.postRun&&(a.postRun=[a.postRun]);a.postRun.length;)Ea.unshift(a.postRun.shift());\nS(Ea)}}if(!(0<aa)){if(a.preRun)for(\"function\"==typeof a.preRun&&(a.preRun=[a.preRun]);a.preRun.length;)Fa.unshift(a.preRun.shift());S(Fa);0<aa||(a.setStatus?(a.setStatus(\"Running...\"),setTimeout(function(){setTimeout(function(){a.setStatus(\"\")},1);c()},1)):c())}}function p(){}function u(a){return(a||p).__cache__}function N(a,c){var b=u(c),d=b[a];if(d)return d;d=Object.create((c||p).prototype);d.ptr=a;return b[a]=d}function V(a){if(\"string\"===typeof a){for(var c=0,b=0;b<a.length;++b){var d=a.charCodeAt(b);\n55296<=d&&57343>=d&&(d=65536+((d&1023)<<10)|a.charCodeAt(++b)&1023);127>=d?++c:c=2047>=d?c+2:65535>=d?c+3:c+4}c=Array(c+1);b=0;d=c.length;if(0<d){d=b+d-1;for(var k=0;k<a.length;++k){var e=a.charCodeAt(k);if(55296<=e&&57343>=e){var f=a.charCodeAt(++k);e=65536+((e&1023)<<10)|f&1023}if(127>=e){if(b>=d)break;c[b++]=e}else{if(2047>=e){if(b+1>=d)break;c[b++]=192|e>>6}else{if(65535>=e){if(b+2>=d)break;c[b++]=224|e>>12}else{if(b+3>=d)break;c[b++]=240|e>>18;c[b++]=128|e>>12&63}c[b++]=128|e>>6&63}c[b++]=128|\ne&63}}c[b]=0}a=n.alloc(c,T);n.copy(c,T,a)}return a}function x(){throw\"cannot construct a Status, no constructor in IDL\";}function A(){this.ptr=Oa();u(A)[this.ptr]=this}function B(){this.ptr=Pa();u(B)[this.ptr]=this}function C(){this.ptr=Qa();u(C)[this.ptr]=this}function D(){this.ptr=Ra();u(D)[this.ptr]=this}function E(){this.ptr=Sa();u(E)[this.ptr]=this}function q(){this.ptr=Ta();u(q)[this.ptr]=this}function J(){this.ptr=Ua();u(J)[this.ptr]=this}function w(){this.ptr=Va();u(w)[this.ptr]=this}function F(){this.ptr=\nWa();u(F)[this.ptr]=this}function r(){this.ptr=Xa();u(r)[this.ptr]=this}function G(){this.ptr=Ya();u(G)[this.ptr]=this}function H(){this.ptr=Za();u(H)[this.ptr]=this}function O(){this.ptr=$a();u(O)[this.ptr]=this}function K(){this.ptr=ab();u(K)[this.ptr]=this}function g(){this.ptr=bb();u(g)[this.ptr]=this}function y(){this.ptr=cb();u(y)[this.ptr]=this}function Q(){throw\"cannot construct a VoidPtr, no constructor in IDL\";}function I(){this.ptr=db();u(I)[this.ptr]=this}function L(){this.ptr=eb();u(L)[this.ptr]=\nthis}m=m||{};var a=\"undefined\"!==typeof m?m:{},Ga=!1,Ha=!1;a.onRuntimeInitialized=function(){Ga=!0;if(Ha&&\"function\"===typeof a.onModuleLoaded)a.onModuleLoaded(a)};a.onModuleParsed=function(){Ha=!0;if(Ga&&\"function\"===typeof a.onModuleLoaded)a.onModuleLoaded(a)};a.isVersionSupported=function(a){if(\"string\"!==typeof a)return!1;a=a.split(\".\");return 2>a.length||3<a.length?!1:1==a[0]&&0<=a[1]&&3>=a[1]?!0:0!=a[0]||10<a[1]?!1:!0};var ha={},W;for(W in a)a.hasOwnProperty(W)&&(ha[W]=a[W]);var na=\"./this.program\",\nea=!1,Z=!1,oa=!1,fb=!1,Ia=!1;ea=\"object\"===typeof window;Z=\"function\"===typeof importScripts;oa=(fb=\"object\"===typeof process&&\"object\"===typeof process.versions&&\"string\"===typeof process.versions.node)&&!ea&&!Z;Ia=!ea&&!oa&&!Z;var M=\"\",pa,qa;if(oa){M=__dirname+\"/\";var ra=function(a,c){pa||(pa=require(\"fs\"));qa||(qa=require(\"path\"));a=qa.normalize(a);return pa.readFileSync(a,c?null:\"utf8\")};var la=function(a){a=ra(a,!0);a.buffer||(a=new Uint8Array(a));t(a.buffer);return a};1<process.argv.length&&\n(na=process.argv[1].replace(/\\\\/g,\"/\"));process.argv.slice(2);process.on(\"uncaughtException\",function(a){throw a;});process.on(\"unhandledRejection\",z);a.inspect=function(){return\"[Emscripten Module object]\"}}else if(Ia)\"undefined\"!=typeof read&&(ra=function(a){return read(a)}),la=function(a){if(\"function\"===typeof readbuffer)return new Uint8Array(readbuffer(a));a=read(a,\"binary\");t(\"object\"===typeof a);return a},\"undefined\"!==typeof print&&(\"undefined\"===typeof console&&(console={}),console.log=print,\nconsole.warn=console.error=\"undefined\"!==typeof printErr?printErr:print);else if(ea||Z)Z?M=self.location.href:document.currentScript&&(M=document.currentScript.src),f&&(M=f),M=0!==M.indexOf(\"blob:\")?M.substr(0,M.lastIndexOf(\"/\")+1):\"\",ra=function(a){var c=new XMLHttpRequest;c.open(\"GET\",a,!1);c.send(null);return c.responseText},Z&&(la=function(a){var c=new XMLHttpRequest;c.open(\"GET\",a,!1);c.responseType=\"arraybuffer\";c.send(null);return new Uint8Array(c.response)});var ya=a.print||console.log.bind(console),\nY=a.printErr||console.warn.bind(console);for(W in ha)ha.hasOwnProperty(W)&&(a[W]=ha[W]);ha=null;a.thisProgram&&(na=a.thisProgram);var da;a.wasmBinary&&(da=a.wasmBinary);\"object\"!==typeof WebAssembly&&Y(\"no native wasm support detected\");var ia,gb=new WebAssembly.Table({initial:293,maximum:293,element:\"anyfunc\"}),za=!1,xa=\"undefined\"!==typeof TextDecoder?new TextDecoder(\"utf8\"):void 0;\"undefined\"!==typeof TextDecoder&&new TextDecoder(\"utf-16le\");var T,ca,P,Ja=a.TOTAL_MEMORY||16777216;if(ia=a.wasmMemory?\na.wasmMemory:new WebAssembly.Memory({initial:Ja/65536}))var ka=ia.buffer;Ja=ka.byteLength;l(ka);P[3416]=5256704;var Fa=[],Ca=[],Da=[],Ea=[],Ba=!1,aa=0,sa=null,ja=null;a.preloadedImages={};a.preloadedAudios={};var U=\"draco_decoder.wasm\";va(U)||(U=v(U));Ca.push({func:function(){hb()}});var Aa={},R={buffers:[null,[],[]],printChar:function(a,c){var b=R.buffers[a];0===c||10===c?((1===a?ya:Y)(h(b,0)),b.length=0):b.push(c)},varargs:0,get:function(a){R.varargs+=4;return P[R.varargs-4>>2]},getStr:function(){return X(R.get())},\nget64:function(){var a=R.get();R.get();return a},getZero:function(){R.get()}},Ka={__cxa_allocate_exception:function(a){return ib(a)},__cxa_throw:function(a,c,b){\"uncaught_exception\"in ta?ta.uncaught_exceptions++:ta.uncaught_exceptions=1;throw a;},abort:function(){z()},emscripten_get_sbrk_ptr:function(){return 13664},emscripten_memcpy_big:function(a,c,b){ca.set(ca.subarray(c,c+b),a)},emscripten_resize_heap:function(a){if(2147418112<a)return!1;for(var c=Math.max(T.length,16777216);c<a;)c=536870912>=\nc?e(2*c,65536):Math.min(e((3*c+2147483648)/4,65536),2147418112);a:{try{ia.grow(c-ka.byteLength+65535>>16);l(ia.buffer);var b=1;break a}catch(d){}b=void 0}return b?!0:!1},environ_get:function(a,c){var b=0;ba().forEach(function(d,e){var f=c+b;e=P[a+4*e>>2]=f;for(f=0;f<d.length;++f)T[e++>>0]=d.charCodeAt(f);T[e>>0]=0;b+=d.length+1});return 0},environ_sizes_get:function(a,c){var b=ba();P[a>>2]=b.length;var d=0;b.forEach(function(a){d+=a.length+1});P[c>>2]=d;return 0},fd_close:function(a){return 0},fd_seek:function(a,\nc,b,d,e){return 0},fd_write:function(a,c,b,d){try{for(var e=0,f=0;f<b;f++){for(var g=P[c+8*f>>2],k=P[c+(8*f+4)>>2],h=0;h<k;h++)R.printChar(a,ca[g+h]);e+=k}P[d>>2]=e;return 0}catch(ua){return\"undefined\"!==typeof FS&&ua instanceof FS.ErrnoError||z(ua),ua.errno}},memory:ia,setTempRet0:function(a){},table:gb},La=function(){function e(c,b){a.asm=c.exports;aa--;a.monitorRunDependencies&&a.monitorRunDependencies(aa);0==aa&&(null!==sa&&(clearInterval(sa),sa=null),ja&&(c=ja,ja=null,c()))}function c(a){e(a.instance)}\nfunction b(a){return Ma().then(function(a){return WebAssembly.instantiate(a,d)}).then(a,function(a){Y(\"failed to asynchronously prepare wasm: \"+a);z(a)})}var d={env:Ka,wasi_unstable:Ka};aa++;a.monitorRunDependencies&&a.monitorRunDependencies(aa);if(a.instantiateWasm)try{return a.instantiateWasm(d,e)}catch(Na){return Y(\"Module.instantiateWasm callback failed with error: \"+Na),!1}(function(){if(da||\"function\"!==typeof WebAssembly.instantiateStreaming||va(U)||\"function\"!==typeof fetch)return b(c);fetch(U,\n{credentials:\"same-origin\"}).then(function(a){return WebAssembly.instantiateStreaming(a,d).then(c,function(a){Y(\"wasm streaming compile failed: \"+a);Y(\"falling back to ArrayBuffer instantiation\");b(c)})})})();return{}}();a.asm=La;var hb=a.___wasm_call_ctors=function(){return a.asm.__wasm_call_ctors.apply(null,arguments)},jb=a._emscripten_bind_Status_code_0=function(){return a.asm.emscripten_bind_Status_code_0.apply(null,arguments)},kb=a._emscripten_bind_Status_ok_0=function(){return a.asm.emscripten_bind_Status_ok_0.apply(null,\narguments)},lb=a._emscripten_bind_Status_error_msg_0=function(){return a.asm.emscripten_bind_Status_error_msg_0.apply(null,arguments)},mb=a._emscripten_bind_Status___destroy___0=function(){return a.asm.emscripten_bind_Status___destroy___0.apply(null,arguments)},Oa=a._emscripten_bind_DracoUInt16Array_DracoUInt16Array_0=function(){return a.asm.emscripten_bind_DracoUInt16Array_DracoUInt16Array_0.apply(null,arguments)},nb=a._emscripten_bind_DracoUInt16Array_GetValue_1=function(){return a.asm.emscripten_bind_DracoUInt16Array_GetValue_1.apply(null,\narguments)},ob=a._emscripten_bind_DracoUInt16Array_size_0=function(){return a.asm.emscripten_bind_DracoUInt16Array_size_0.apply(null,arguments)},pb=a._emscripten_bind_DracoUInt16Array___destroy___0=function(){return a.asm.emscripten_bind_DracoUInt16Array___destroy___0.apply(null,arguments)},Pa=a._emscripten_bind_PointCloud_PointCloud_0=function(){return a.asm.emscripten_bind_PointCloud_PointCloud_0.apply(null,arguments)},qb=a._emscripten_bind_PointCloud_num_attributes_0=function(){return a.asm.emscripten_bind_PointCloud_num_attributes_0.apply(null,\narguments)},rb=a._emscripten_bind_PointCloud_num_points_0=function(){return a.asm.emscripten_bind_PointCloud_num_points_0.apply(null,arguments)},sb=a._emscripten_bind_PointCloud___destroy___0=function(){return a.asm.emscripten_bind_PointCloud___destroy___0.apply(null,arguments)},Qa=a._emscripten_bind_DracoUInt8Array_DracoUInt8Array_0=function(){return a.asm.emscripten_bind_DracoUInt8Array_DracoUInt8Array_0.apply(null,arguments)},tb=a._emscripten_bind_DracoUInt8Array_GetValue_1=function(){return a.asm.emscripten_bind_DracoUInt8Array_GetValue_1.apply(null,\narguments)},ub=a._emscripten_bind_DracoUInt8Array_size_0=function(){return a.asm.emscripten_bind_DracoUInt8Array_size_0.apply(null,arguments)},vb=a._emscripten_bind_DracoUInt8Array___destroy___0=function(){return a.asm.emscripten_bind_DracoUInt8Array___destroy___0.apply(null,arguments)},Ra=a._emscripten_bind_DracoUInt32Array_DracoUInt32Array_0=function(){return a.asm.emscripten_bind_DracoUInt32Array_DracoUInt32Array_0.apply(null,arguments)},wb=a._emscripten_bind_DracoUInt32Array_GetValue_1=function(){return a.asm.emscripten_bind_DracoUInt32Array_GetValue_1.apply(null,\narguments)},xb=a._emscripten_bind_DracoUInt32Array_size_0=function(){return a.asm.emscripten_bind_DracoUInt32Array_size_0.apply(null,arguments)},yb=a._emscripten_bind_DracoUInt32Array___destroy___0=function(){return a.asm.emscripten_bind_DracoUInt32Array___destroy___0.apply(null,arguments)},Sa=a._emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0=function(){return a.asm.emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0.apply(null,arguments)},zb=a._emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1=\nfunction(){return a.asm.emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1.apply(null,arguments)},Ab=a._emscripten_bind_AttributeOctahedronTransform_quantization_bits_0=function(){return a.asm.emscripten_bind_AttributeOctahedronTransform_quantization_bits_0.apply(null,arguments)},Bb=a._emscripten_bind_AttributeOctahedronTransform___destroy___0=function(){return a.asm.emscripten_bind_AttributeOctahedronTransform___destroy___0.apply(null,arguments)},Ta=a._emscripten_bind_PointAttribute_PointAttribute_0=\nfunction(){return a.asm.emscripten_bind_PointAttribute_PointAttribute_0.apply(null,arguments)},Cb=a._emscripten_bind_PointAttribute_size_0=function(){return a.asm.emscripten_bind_PointAttribute_size_0.apply(null,arguments)},Db=a._emscripten_bind_PointAttribute_GetAttributeTransformData_0=function(){return a.asm.emscripten_bind_PointAttribute_GetAttributeTransformData_0.apply(null,arguments)},Eb=a._emscripten_bind_PointAttribute_attribute_type_0=function(){return a.asm.emscripten_bind_PointAttribute_attribute_type_0.apply(null,\narguments)},Fb=a._emscripten_bind_PointAttribute_data_type_0=function(){return a.asm.emscripten_bind_PointAttribute_data_type_0.apply(null,arguments)},Gb=a._emscripten_bind_PointAttribute_num_components_0=function(){return a.asm.emscripten_bind_PointAttribute_num_components_0.apply(null,arguments)},Hb=a._emscripten_bind_PointAttribute_normalized_0=function(){return a.asm.emscripten_bind_PointAttribute_normalized_0.apply(null,arguments)},Ib=a._emscripten_bind_PointAttribute_byte_stride_0=function(){return a.asm.emscripten_bind_PointAttribute_byte_stride_0.apply(null,\narguments)},Jb=a._emscripten_bind_PointAttribute_byte_offset_0=function(){return a.asm.emscripten_bind_PointAttribute_byte_offset_0.apply(null,arguments)},Kb=a._emscripten_bind_PointAttribute_unique_id_0=function(){return a.asm.emscripten_bind_PointAttribute_unique_id_0.apply(null,arguments)},Lb=a._emscripten_bind_PointAttribute___destroy___0=function(){return a.asm.emscripten_bind_PointAttribute___destroy___0.apply(null,arguments)},Ua=a._emscripten_bind_AttributeTransformData_AttributeTransformData_0=\nfunction(){return a.asm.emscripten_bind_AttributeTransformData_AttributeTransformData_0.apply(null,arguments)},Mb=a._emscripten_bind_AttributeTransformData_transform_type_0=function(){return a.asm.emscripten_bind_AttributeTransformData_transform_type_0.apply(null,arguments)},Nb=a._emscripten_bind_AttributeTransformData___destroy___0=function(){return a.asm.emscripten_bind_AttributeTransformData___destroy___0.apply(null,arguments)},Va=a._emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0=\nfunction(){return a.asm.emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0.apply(null,arguments)},Ob=a._emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1=function(){return a.asm.emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1.apply(null,arguments)},Pb=a._emscripten_bind_AttributeQuantizationTransform_quantization_bits_0=function(){return a.asm.emscripten_bind_AttributeQuantizationTransform_quantization_bits_0.apply(null,arguments)},\nQb=a._emscripten_bind_AttributeQuantizationTransform_min_value_1=function(){return a.asm.emscripten_bind_AttributeQuantizationTransform_min_value_1.apply(null,arguments)},Rb=a._emscripten_bind_AttributeQuantizationTransform_range_0=function(){return a.asm.emscripten_bind_AttributeQuantizationTransform_range_0.apply(null,arguments)},Sb=a._emscripten_bind_AttributeQuantizationTransform___destroy___0=function(){return a.asm.emscripten_bind_AttributeQuantizationTransform___destroy___0.apply(null,arguments)},\nWa=a._emscripten_bind_DracoInt8Array_DracoInt8Array_0=function(){return a.asm.emscripten_bind_DracoInt8Array_DracoInt8Array_0.apply(null,arguments)},Tb=a._emscripten_bind_DracoInt8Array_GetValue_1=function(){return a.asm.emscripten_bind_DracoInt8Array_GetValue_1.apply(null,arguments)},Ub=a._emscripten_bind_DracoInt8Array_size_0=function(){return a.asm.emscripten_bind_DracoInt8Array_size_0.apply(null,arguments)},Vb=a._emscripten_bind_DracoInt8Array___destroy___0=function(){return a.asm.emscripten_bind_DracoInt8Array___destroy___0.apply(null,\narguments)},Xa=a._emscripten_bind_MetadataQuerier_MetadataQuerier_0=function(){return a.asm.emscripten_bind_MetadataQuerier_MetadataQuerier_0.apply(null,arguments)},Wb=a._emscripten_bind_MetadataQuerier_HasEntry_2=function(){return a.asm.emscripten_bind_MetadataQuerier_HasEntry_2.apply(null,arguments)},Xb=a._emscripten_bind_MetadataQuerier_GetIntEntry_2=function(){return a.asm.emscripten_bind_MetadataQuerier_GetIntEntry_2.apply(null,arguments)},Yb=a._emscripten_bind_MetadataQuerier_GetIntEntryArray_3=\nfunction(){return a.asm.emscripten_bind_MetadataQuerier_GetIntEntryArray_3.apply(null,arguments)},Zb=a._emscripten_bind_MetadataQuerier_GetDoubleEntry_2=function(){return a.asm.emscripten_bind_MetadataQuerier_GetDoubleEntry_2.apply(null,arguments)},$b=a._emscripten_bind_MetadataQuerier_GetStringEntry_2=function(){return a.asm.emscripten_bind_MetadataQuerier_GetStringEntry_2.apply(null,arguments)},ac=a._emscripten_bind_MetadataQuerier_NumEntries_1=function(){return a.asm.emscripten_bind_MetadataQuerier_NumEntries_1.apply(null,\narguments)},bc=a._emscripten_bind_MetadataQuerier_GetEntryName_2=function(){return a.asm.emscripten_bind_MetadataQuerier_GetEntryName_2.apply(null,arguments)},cc=a._emscripten_bind_MetadataQuerier___destroy___0=function(){return a.asm.emscripten_bind_MetadataQuerier___destroy___0.apply(null,arguments)},Ya=a._emscripten_bind_DracoInt16Array_DracoInt16Array_0=function(){return a.asm.emscripten_bind_DracoInt16Array_DracoInt16Array_0.apply(null,arguments)},dc=a._emscripten_bind_DracoInt16Array_GetValue_1=\nfunction(){return a.asm.emscripten_bind_DracoInt16Array_GetValue_1.apply(null,arguments)},ec=a._emscripten_bind_DracoInt16Array_size_0=function(){return a.asm.emscripten_bind_DracoInt16Array_size_0.apply(null,arguments)},fc=a._emscripten_bind_DracoInt16Array___destroy___0=function(){return a.asm.emscripten_bind_DracoInt16Array___destroy___0.apply(null,arguments)},Za=a._emscripten_bind_DracoFloat32Array_DracoFloat32Array_0=function(){return a.asm.emscripten_bind_DracoFloat32Array_DracoFloat32Array_0.apply(null,\narguments)},gc=a._emscripten_bind_DracoFloat32Array_GetValue_1=function(){return a.asm.emscripten_bind_DracoFloat32Array_GetValue_1.apply(null,arguments)},hc=a._emscripten_bind_DracoFloat32Array_size_0=function(){return a.asm.emscripten_bind_DracoFloat32Array_size_0.apply(null,arguments)},ic=a._emscripten_bind_DracoFloat32Array___destroy___0=function(){return a.asm.emscripten_bind_DracoFloat32Array___destroy___0.apply(null,arguments)},$a=a._emscripten_bind_GeometryAttribute_GeometryAttribute_0=function(){return a.asm.emscripten_bind_GeometryAttribute_GeometryAttribute_0.apply(null,\narguments)},jc=a._emscripten_bind_GeometryAttribute___destroy___0=function(){return a.asm.emscripten_bind_GeometryAttribute___destroy___0.apply(null,arguments)},ab=a._emscripten_bind_DecoderBuffer_DecoderBuffer_0=function(){return a.asm.emscripten_bind_DecoderBuffer_DecoderBuffer_0.apply(null,arguments)},kc=a._emscripten_bind_DecoderBuffer_Init_2=function(){return a.asm.emscripten_bind_DecoderBuffer_Init_2.apply(null,arguments)},lc=a._emscripten_bind_DecoderBuffer___destroy___0=function(){return a.asm.emscripten_bind_DecoderBuffer___destroy___0.apply(null,\narguments)},bb=a._emscripten_bind_Decoder_Decoder_0=function(){return a.asm.emscripten_bind_Decoder_Decoder_0.apply(null,arguments)},mc=a._emscripten_bind_Decoder_GetEncodedGeometryType_1=function(){return a.asm.emscripten_bind_Decoder_GetEncodedGeometryType_1.apply(null,arguments)},nc=a._emscripten_bind_Decoder_DecodeBufferToPointCloud_2=function(){return a.asm.emscripten_bind_Decoder_DecodeBufferToPointCloud_2.apply(null,arguments)},oc=a._emscripten_bind_Decoder_DecodeBufferToMesh_2=function(){return a.asm.emscripten_bind_Decoder_DecodeBufferToMesh_2.apply(null,\narguments)},pc=a._emscripten_bind_Decoder_GetAttributeId_2=function(){return a.asm.emscripten_bind_Decoder_GetAttributeId_2.apply(null,arguments)},qc=a._emscripten_bind_Decoder_GetAttributeIdByName_2=function(){return a.asm.emscripten_bind_Decoder_GetAttributeIdByName_2.apply(null,arguments)},rc=a._emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3.apply(null,arguments)},sc=a._emscripten_bind_Decoder_GetAttribute_2=\nfunction(){return a.asm.emscripten_bind_Decoder_GetAttribute_2.apply(null,arguments)},tc=a._emscripten_bind_Decoder_GetAttributeByUniqueId_2=function(){return a.asm.emscripten_bind_Decoder_GetAttributeByUniqueId_2.apply(null,arguments)},uc=a._emscripten_bind_Decoder_GetMetadata_1=function(){return a.asm.emscripten_bind_Decoder_GetMetadata_1.apply(null,arguments)},vc=a._emscripten_bind_Decoder_GetAttributeMetadata_2=function(){return a.asm.emscripten_bind_Decoder_GetAttributeMetadata_2.apply(null,\narguments)},wc=a._emscripten_bind_Decoder_GetFaceFromMesh_3=function(){return a.asm.emscripten_bind_Decoder_GetFaceFromMesh_3.apply(null,arguments)},xc=a._emscripten_bind_Decoder_GetTriangleStripsFromMesh_2=function(){return a.asm.emscripten_bind_Decoder_GetTriangleStripsFromMesh_2.apply(null,arguments)},yc=a._emscripten_bind_Decoder_GetTrianglesUInt16Array_3=function(){return a.asm.emscripten_bind_Decoder_GetTrianglesUInt16Array_3.apply(null,arguments)},zc=a._emscripten_bind_Decoder_GetTrianglesUInt32Array_3=\nfunction(){return a.asm.emscripten_bind_Decoder_GetTrianglesUInt32Array_3.apply(null,arguments)},Ac=a._emscripten_bind_Decoder_GetAttributeFloat_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeFloat_3.apply(null,arguments)},Bc=a._emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3.apply(null,arguments)},Cc=a._emscripten_bind_Decoder_GetAttributeIntForAllPoints_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeIntForAllPoints_3.apply(null,\narguments)},Dc=a._emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3.apply(null,arguments)},Ec=a._emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3.apply(null,arguments)},Fc=a._emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3.apply(null,arguments)},\nGc=a._emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeUInt16ForAllPoints_3.apply(null,arguments)},Hc=a._emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeInt32ForAllPoints_3.apply(null,arguments)},Ic=a._emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3=function(){return a.asm.emscripten_bind_Decoder_GetAttributeUInt32ForAllPoints_3.apply(null,arguments)},Jc=\na._emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5=function(){return a.asm.emscripten_bind_Decoder_GetAttributeDataArrayForAllPoints_5.apply(null,arguments)},Kc=a._emscripten_bind_Decoder_SkipAttributeTransform_1=function(){return a.asm.emscripten_bind_Decoder_SkipAttributeTransform_1.apply(null,arguments)},Lc=a._emscripten_bind_Decoder___destroy___0=function(){return a.asm.emscripten_bind_Decoder___destroy___0.apply(null,arguments)},cb=a._emscripten_bind_Mesh_Mesh_0=function(){return a.asm.emscripten_bind_Mesh_Mesh_0.apply(null,\narguments)},Mc=a._emscripten_bind_Mesh_num_faces_0=function(){return a.asm.emscripten_bind_Mesh_num_faces_0.apply(null,arguments)},Nc=a._emscripten_bind_Mesh_num_attributes_0=function(){return a.asm.emscripten_bind_Mesh_num_attributes_0.apply(null,arguments)},Oc=a._emscripten_bind_Mesh_num_points_0=function(){return a.asm.emscripten_bind_Mesh_num_points_0.apply(null,arguments)},Pc=a._emscripten_bind_Mesh___destroy___0=function(){return a.asm.emscripten_bind_Mesh___destroy___0.apply(null,arguments)},\nQc=a._emscripten_bind_VoidPtr___destroy___0=function(){return a.asm.emscripten_bind_VoidPtr___destroy___0.apply(null,arguments)},db=a._emscripten_bind_DracoInt32Array_DracoInt32Array_0=function(){return a.asm.emscripten_bind_DracoInt32Array_DracoInt32Array_0.apply(null,arguments)},Rc=a._emscripten_bind_DracoInt32Array_GetValue_1=function(){return a.asm.emscripten_bind_DracoInt32Array_GetValue_1.apply(null,arguments)},Sc=a._emscripten_bind_DracoInt32Array_size_0=function(){return a.asm.emscripten_bind_DracoInt32Array_size_0.apply(null,\narguments)},Tc=a._emscripten_bind_DracoInt32Array___destroy___0=function(){return a.asm.emscripten_bind_DracoInt32Array___destroy___0.apply(null,arguments)},eb=a._emscripten_bind_Metadata_Metadata_0=function(){return a.asm.emscripten_bind_Metadata_Metadata_0.apply(null,arguments)},Uc=a._emscripten_bind_Metadata___destroy___0=function(){return a.asm.emscripten_bind_Metadata___destroy___0.apply(null,arguments)},Vc=a._emscripten_enum_draco_StatusCode_OK=function(){return a.asm.emscripten_enum_draco_StatusCode_OK.apply(null,\narguments)},Wc=a._emscripten_enum_draco_StatusCode_DRACO_ERROR=function(){return a.asm.emscripten_enum_draco_StatusCode_DRACO_ERROR.apply(null,arguments)},Xc=a._emscripten_enum_draco_StatusCode_IO_ERROR=function(){return a.asm.emscripten_enum_draco_StatusCode_IO_ERROR.apply(null,arguments)},Yc=a._emscripten_enum_draco_StatusCode_INVALID_PARAMETER=function(){return a.asm.emscripten_enum_draco_StatusCode_INVALID_PARAMETER.apply(null,arguments)},Zc=a._emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION=\nfunction(){return a.asm.emscripten_enum_draco_StatusCode_UNSUPPORTED_VERSION.apply(null,arguments)},$c=a._emscripten_enum_draco_StatusCode_UNKNOWN_VERSION=function(){return a.asm.emscripten_enum_draco_StatusCode_UNKNOWN_VERSION.apply(null,arguments)},ad=a._emscripten_enum_draco_DataType_DT_INVALID=function(){return a.asm.emscripten_enum_draco_DataType_DT_INVALID.apply(null,arguments)},bd=a._emscripten_enum_draco_DataType_DT_INT8=function(){return a.asm.emscripten_enum_draco_DataType_DT_INT8.apply(null,\narguments)},cd=a._emscripten_enum_draco_DataType_DT_UINT8=function(){return a.asm.emscripten_enum_draco_DataType_DT_UINT8.apply(null,arguments)},dd=a._emscripten_enum_draco_DataType_DT_INT16=function(){return a.asm.emscripten_enum_draco_DataType_DT_INT16.apply(null,arguments)},ed=a._emscripten_enum_draco_DataType_DT_UINT16=function(){return a.asm.emscripten_enum_draco_DataType_DT_UINT16.apply(null,arguments)},fd=a._emscripten_enum_draco_DataType_DT_INT32=function(){return a.asm.emscripten_enum_draco_DataType_DT_INT32.apply(null,\narguments)},gd=a._emscripten_enum_draco_DataType_DT_UINT32=function(){return a.asm.emscripten_enum_draco_DataType_DT_UINT32.apply(null,arguments)},hd=a._emscripten_enum_draco_DataType_DT_INT64=function(){return a.asm.emscripten_enum_draco_DataType_DT_INT64.apply(null,arguments)},id=a._emscripten_enum_draco_DataType_DT_UINT64=function(){return a.asm.emscripten_enum_draco_DataType_DT_UINT64.apply(null,arguments)},jd=a._emscripten_enum_draco_DataType_DT_FLOAT32=function(){return a.asm.emscripten_enum_draco_DataType_DT_FLOAT32.apply(null,\narguments)},kd=a._emscripten_enum_draco_DataType_DT_FLOAT64=function(){return a.asm.emscripten_enum_draco_DataType_DT_FLOAT64.apply(null,arguments)},ld=a._emscripten_enum_draco_DataType_DT_BOOL=function(){return a.asm.emscripten_enum_draco_DataType_DT_BOOL.apply(null,arguments)},md=a._emscripten_enum_draco_DataType_DT_TYPES_COUNT=function(){return a.asm.emscripten_enum_draco_DataType_DT_TYPES_COUNT.apply(null,arguments)},nd=a._emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE=function(){return a.asm.emscripten_enum_draco_EncodedGeometryType_INVALID_GEOMETRY_TYPE.apply(null,\narguments)},od=a._emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD=function(){return a.asm.emscripten_enum_draco_EncodedGeometryType_POINT_CLOUD.apply(null,arguments)},pd=a._emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH=function(){return a.asm.emscripten_enum_draco_EncodedGeometryType_TRIANGULAR_MESH.apply(null,arguments)},qd=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM=function(){return a.asm.emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_INVALID_TRANSFORM.apply(null,\narguments)},rd=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM=function(){return a.asm.emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_NO_TRANSFORM.apply(null,arguments)},sd=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM=function(){return a.asm.emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_QUANTIZATION_TRANSFORM.apply(null,arguments)},td=a._emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM=function(){return a.asm.emscripten_enum_draco_AttributeTransformType_ATTRIBUTE_OCTAHEDRON_TRANSFORM.apply(null,\narguments)},ud=a._emscripten_enum_draco_GeometryAttribute_Type_INVALID=function(){return a.asm.emscripten_enum_draco_GeometryAttribute_Type_INVALID.apply(null,arguments)},vd=a._emscripten_enum_draco_GeometryAttribute_Type_POSITION=function(){return a.asm.emscripten_enum_draco_GeometryAttribute_Type_POSITION.apply(null,arguments)},wd=a._emscripten_enum_draco_GeometryAttribute_Type_NORMAL=function(){return a.asm.emscripten_enum_draco_GeometryAttribute_Type_NORMAL.apply(null,arguments)},xd=a._emscripten_enum_draco_GeometryAttribute_Type_COLOR=\nfunction(){return a.asm.emscripten_enum_draco_GeometryAttribute_Type_COLOR.apply(null,arguments)},yd=a._emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD=function(){return a.asm.emscripten_enum_draco_GeometryAttribute_Type_TEX_COORD.apply(null,arguments)},zd=a._emscripten_enum_draco_GeometryAttribute_Type_GENERIC=function(){return a.asm.emscripten_enum_draco_GeometryAttribute_Type_GENERIC.apply(null,arguments)};a._setThrew=function(){return a.asm.setThrew.apply(null,arguments)};var ta=a.__ZSt18uncaught_exceptionv=\nfunction(){return a.asm._ZSt18uncaught_exceptionv.apply(null,arguments)};a._free=function(){return a.asm.free.apply(null,arguments)};var ib=a._malloc=function(){return a.asm.malloc.apply(null,arguments)};a.stackSave=function(){return a.asm.stackSave.apply(null,arguments)};a.stackAlloc=function(){return a.asm.stackAlloc.apply(null,arguments)};a.stackRestore=function(){return a.asm.stackRestore.apply(null,arguments)};a.__growWasmMemory=function(){return a.asm.__growWasmMemory.apply(null,arguments)};\na.dynCall_ii=function(){return a.asm.dynCall_ii.apply(null,arguments)};a.dynCall_vi=function(){return a.asm.dynCall_vi.apply(null,arguments)};a.dynCall_iii=function(){return a.asm.dynCall_iii.apply(null,arguments)};a.dynCall_vii=function(){return a.asm.dynCall_vii.apply(null,arguments)};a.dynCall_iiii=function(){return a.asm.dynCall_iiii.apply(null,arguments)};a.dynCall_v=function(){return a.asm.dynCall_v.apply(null,arguments)};a.dynCall_viii=function(){return a.asm.dynCall_viii.apply(null,arguments)};\na.dynCall_viiii=function(){return a.asm.dynCall_viiii.apply(null,arguments)};a.dynCall_iiiiiii=function(){return a.asm.dynCall_iiiiiii.apply(null,arguments)};a.dynCall_iidiiii=function(){return a.asm.dynCall_iidiiii.apply(null,arguments)};a.dynCall_jiji=function(){return a.asm.dynCall_jiji.apply(null,arguments)};a.dynCall_viiiiii=function(){return a.asm.dynCall_viiiiii.apply(null,arguments)};a.dynCall_viiiii=function(){return a.asm.dynCall_viiiii.apply(null,arguments)};a.asm=La;var fa;a.then=function(e){if(fa)e(a);\nelse{var c=a.onRuntimeInitialized;a.onRuntimeInitialized=function(){c&&c();e(a)}}return a};ja=function c(){fa||ma();fa||(ja=c)};a.run=ma;if(a.preInit)for(\"function\"==typeof a.preInit&&(a.preInit=[a.preInit]);0<a.preInit.length;)a.preInit.pop()();ma();p.prototype=Object.create(p.prototype);p.prototype.constructor=p;p.prototype.__class__=p;p.__cache__={};a.WrapperObject=p;a.getCache=u;a.wrapPointer=N;a.castObject=function(a,b){return N(a.ptr,b)};a.NULL=N(0);a.destroy=function(a){if(!a.__destroy__)throw\"Error: Cannot destroy object. (Did you create it yourself?)\";\na.__destroy__();delete u(a.__class__)[a.ptr]};a.compare=function(a,b){return a.ptr===b.ptr};a.getPointer=function(a){return a.ptr};a.getClass=function(a){return a.__class__};var n={buffer:0,size:0,pos:0,temps:[],needed:0,prepare:function(){if(n.needed){for(var c=0;c<n.temps.length;c++)a._free(n.temps[c]);n.temps.length=0;a._free(n.buffer);n.buffer=0;n.size+=n.needed;n.needed=0}n.buffer||(n.size+=128,n.buffer=a._malloc(n.size),t(n.buffer));n.pos=0},alloc:function(c,b){t(n.buffer);c=c.length*b.BYTES_PER_ELEMENT;\nc=c+7&-8;n.pos+c>=n.size?(t(0<c),n.needed+=c,b=a._malloc(c),n.temps.push(b)):(b=n.buffer+n.pos,n.pos+=c);return b},copy:function(a,b,d){switch(b.BYTES_PER_ELEMENT){case 2:d>>=1;break;case 4:d>>=2;break;case 8:d>>=3}for(var c=0;c<a.length;c++)b[d+c]=a[c]}};x.prototype=Object.create(p.prototype);x.prototype.constructor=x;x.prototype.__class__=x;x.__cache__={};a.Status=x;x.prototype.code=x.prototype.code=function(){return jb(this.ptr)};x.prototype.ok=x.prototype.ok=function(){return!!kb(this.ptr)};x.prototype.error_msg=\nx.prototype.error_msg=function(){return X(lb(this.ptr))};x.prototype.__destroy__=x.prototype.__destroy__=function(){mb(this.ptr)};A.prototype=Object.create(p.prototype);A.prototype.constructor=A;A.prototype.__class__=A;A.__cache__={};a.DracoUInt16Array=A;A.prototype.GetValue=A.prototype.GetValue=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return nb(c,a)};A.prototype.size=A.prototype.size=function(){return ob(this.ptr)};A.prototype.__destroy__=A.prototype.__destroy__=function(){pb(this.ptr)};\nB.prototype=Object.create(p.prototype);B.prototype.constructor=B;B.prototype.__class__=B;B.__cache__={};a.PointCloud=B;B.prototype.num_attributes=B.prototype.num_attributes=function(){return qb(this.ptr)};B.prototype.num_points=B.prototype.num_points=function(){return rb(this.ptr)};B.prototype.__destroy__=B.prototype.__destroy__=function(){sb(this.ptr)};C.prototype=Object.create(p.prototype);C.prototype.constructor=C;C.prototype.__class__=C;C.__cache__={};a.DracoUInt8Array=C;C.prototype.GetValue=\nC.prototype.GetValue=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return tb(c,a)};C.prototype.size=C.prototype.size=function(){return ub(this.ptr)};C.prototype.__destroy__=C.prototype.__destroy__=function(){vb(this.ptr)};D.prototype=Object.create(p.prototype);D.prototype.constructor=D;D.prototype.__class__=D;D.__cache__={};a.DracoUInt32Array=D;D.prototype.GetValue=D.prototype.GetValue=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return wb(c,a)};D.prototype.size=D.prototype.size=\nfunction(){return xb(this.ptr)};D.prototype.__destroy__=D.prototype.__destroy__=function(){yb(this.ptr)};E.prototype=Object.create(p.prototype);E.prototype.constructor=E;E.prototype.__class__=E;E.__cache__={};a.AttributeOctahedronTransform=E;E.prototype.InitFromAttribute=E.prototype.InitFromAttribute=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return!!zb(c,a)};E.prototype.quantization_bits=E.prototype.quantization_bits=function(){return Ab(this.ptr)};E.prototype.__destroy__=E.prototype.__destroy__=\nfunction(){Bb(this.ptr)};q.prototype=Object.create(p.prototype);q.prototype.constructor=q;q.prototype.__class__=q;q.__cache__={};a.PointAttribute=q;q.prototype.size=q.prototype.size=function(){return Cb(this.ptr)};q.prototype.GetAttributeTransformData=q.prototype.GetAttributeTransformData=function(){return N(Db(this.ptr),J)};q.prototype.attribute_type=q.prototype.attribute_type=function(){return Eb(this.ptr)};q.prototype.data_type=q.prototype.data_type=function(){return Fb(this.ptr)};q.prototype.num_components=\nq.prototype.num_components=function(){return Gb(this.ptr)};q.prototype.normalized=q.prototype.normalized=function(){return!!Hb(this.ptr)};q.prototype.byte_stride=q.prototype.byte_stride=function(){return Ib(this.ptr)};q.prototype.byte_offset=q.prototype.byte_offset=function(){return Jb(this.ptr)};q.prototype.unique_id=q.prototype.unique_id=function(){return Kb(this.ptr)};q.prototype.__destroy__=q.prototype.__destroy__=function(){Lb(this.ptr)};J.prototype=Object.create(p.prototype);J.prototype.constructor=\nJ;J.prototype.__class__=J;J.__cache__={};a.AttributeTransformData=J;J.prototype.transform_type=J.prototype.transform_type=function(){return Mb(this.ptr)};J.prototype.__destroy__=J.prototype.__destroy__=function(){Nb(this.ptr)};w.prototype=Object.create(p.prototype);w.prototype.constructor=w;w.prototype.__class__=w;w.__cache__={};a.AttributeQuantizationTransform=w;w.prototype.InitFromAttribute=w.prototype.InitFromAttribute=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return!!Ob(c,a)};\nw.prototype.quantization_bits=w.prototype.quantization_bits=function(){return Pb(this.ptr)};w.prototype.min_value=w.prototype.min_value=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return Qb(c,a)};w.prototype.range=w.prototype.range=function(){return Rb(this.ptr)};w.prototype.__destroy__=w.prototype.__destroy__=function(){Sb(this.ptr)};F.prototype=Object.create(p.prototype);F.prototype.constructor=F;F.prototype.__class__=F;F.__cache__={};a.DracoInt8Array=F;F.prototype.GetValue=F.prototype.GetValue=\nfunction(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return Tb(c,a)};F.prototype.size=F.prototype.size=function(){return Ub(this.ptr)};F.prototype.__destroy__=F.prototype.__destroy__=function(){Vb(this.ptr)};r.prototype=Object.create(p.prototype);r.prototype.constructor=r;r.prototype.__class__=r;r.__cache__={};a.MetadataQuerier=r;r.prototype.HasEntry=r.prototype.HasEntry=function(a,b){var c=this.ptr;n.prepare();a&&\"object\"===typeof a&&(a=a.ptr);b=b&&\"object\"===typeof b?b.ptr:V(b);return!!Wb(c,\na,b)};r.prototype.GetIntEntry=r.prototype.GetIntEntry=function(a,b){var c=this.ptr;n.prepare();a&&\"object\"===typeof a&&(a=a.ptr);b=b&&\"object\"===typeof b?b.ptr:V(b);return Xb(c,a,b)};r.prototype.GetIntEntryArray=r.prototype.GetIntEntryArray=function(a,b,d){var c=this.ptr;n.prepare();a&&\"object\"===typeof a&&(a=a.ptr);b=b&&\"object\"===typeof b?b.ptr:V(b);d&&\"object\"===typeof d&&(d=d.ptr);Yb(c,a,b,d)};r.prototype.GetDoubleEntry=r.prototype.GetDoubleEntry=function(a,b){var c=this.ptr;n.prepare();a&&\"object\"===\ntypeof a&&(a=a.ptr);b=b&&\"object\"===typeof b?b.ptr:V(b);return Zb(c,a,b)};r.prototype.GetStringEntry=r.prototype.GetStringEntry=function(a,b){var c=this.ptr;n.prepare();a&&\"object\"===typeof a&&(a=a.ptr);b=b&&\"object\"===typeof b?b.ptr:V(b);return X($b(c,a,b))};r.prototype.NumEntries=r.prototype.NumEntries=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return ac(c,a)};r.prototype.GetEntryName=r.prototype.GetEntryName=function(a,b){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===\ntypeof b&&(b=b.ptr);return X(bc(c,a,b))};r.prototype.__destroy__=r.prototype.__destroy__=function(){cc(this.ptr)};G.prototype=Object.create(p.prototype);G.prototype.constructor=G;G.prototype.__class__=G;G.__cache__={};a.DracoInt16Array=G;G.prototype.GetValue=G.prototype.GetValue=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return dc(c,a)};G.prototype.size=G.prototype.size=function(){return ec(this.ptr)};G.prototype.__destroy__=G.prototype.__destroy__=function(){fc(this.ptr)};H.prototype=\nObject.create(p.prototype);H.prototype.constructor=H;H.prototype.__class__=H;H.__cache__={};a.DracoFloat32Array=H;H.prototype.GetValue=H.prototype.GetValue=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return gc(c,a)};H.prototype.size=H.prototype.size=function(){return hc(this.ptr)};H.prototype.__destroy__=H.prototype.__destroy__=function(){ic(this.ptr)};O.prototype=Object.create(p.prototype);O.prototype.constructor=O;O.prototype.__class__=O;O.__cache__={};a.GeometryAttribute=O;O.prototype.__destroy__=\nO.prototype.__destroy__=function(){jc(this.ptr)};K.prototype=Object.create(p.prototype);K.prototype.constructor=K;K.prototype.__class__=K;K.__cache__={};a.DecoderBuffer=K;K.prototype.Init=K.prototype.Init=function(a,b){var c=this.ptr;n.prepare();if(\"object\"==typeof a&&\"object\"===typeof a){var e=n.alloc(a,T);n.copy(a,T,e);a=e}b&&\"object\"===typeof b&&(b=b.ptr);kc(c,a,b)};K.prototype.__destroy__=K.prototype.__destroy__=function(){lc(this.ptr)};g.prototype=Object.create(p.prototype);g.prototype.constructor=\ng;g.prototype.__class__=g;g.__cache__={};a.Decoder=g;g.prototype.GetEncodedGeometryType=g.prototype.GetEncodedGeometryType=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return mc(c,a)};g.prototype.DecodeBufferToPointCloud=g.prototype.DecodeBufferToPointCloud=function(a,b){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);return N(nc(c,a,b),x)};g.prototype.DecodeBufferToMesh=g.prototype.DecodeBufferToMesh=function(a,b){var c=this.ptr;a&&\"object\"===typeof a&&\n(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);return N(oc(c,a,b),x)};g.prototype.GetAttributeId=g.prototype.GetAttributeId=function(a,b){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);return pc(c,a,b)};g.prototype.GetAttributeIdByName=g.prototype.GetAttributeIdByName=function(a,b){var c=this.ptr;n.prepare();a&&\"object\"===typeof a&&(a=a.ptr);b=b&&\"object\"===typeof b?b.ptr:V(b);return qc(c,a,b)};g.prototype.GetAttributeIdByMetadataEntry=g.prototype.GetAttributeIdByMetadataEntry=\nfunction(a,b,d){var c=this.ptr;n.prepare();a&&\"object\"===typeof a&&(a=a.ptr);b=b&&\"object\"===typeof b?b.ptr:V(b);d=d&&\"object\"===typeof d?d.ptr:V(d);return rc(c,a,b,d)};g.prototype.GetAttribute=g.prototype.GetAttribute=function(a,b){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);return N(sc(c,a,b),q)};g.prototype.GetAttributeByUniqueId=g.prototype.GetAttributeByUniqueId=function(a,b){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);\nreturn N(tc(c,a,b),q)};g.prototype.GetMetadata=g.prototype.GetMetadata=function(a){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return N(uc(c,a),L)};g.prototype.GetAttributeMetadata=g.prototype.GetAttributeMetadata=function(a,b){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);return N(vc(c,a,b),L)};g.prototype.GetFaceFromMesh=g.prototype.GetFaceFromMesh=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===\ntypeof d&&(d=d.ptr);return!!wc(c,a,b,d)};g.prototype.GetTriangleStripsFromMesh=g.prototype.GetTriangleStripsFromMesh=function(a,b){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);return xc(c,a,b)};g.prototype.GetTrianglesUInt16Array=g.prototype.GetTrianglesUInt16Array=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!yc(c,a,b,d)};g.prototype.GetTrianglesUInt32Array=g.prototype.GetTrianglesUInt32Array=\nfunction(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!zc(c,a,b,d)};g.prototype.GetAttributeFloat=g.prototype.GetAttributeFloat=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!Ac(c,a,b,d)};g.prototype.GetAttributeFloatForAllPoints=g.prototype.GetAttributeFloatForAllPoints=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&\n(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!Bc(c,a,b,d)};g.prototype.GetAttributeIntForAllPoints=g.prototype.GetAttributeIntForAllPoints=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!Cc(c,a,b,d)};g.prototype.GetAttributeInt8ForAllPoints=g.prototype.GetAttributeInt8ForAllPoints=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&\n(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!Dc(c,a,b,d)};g.prototype.GetAttributeUInt8ForAllPoints=g.prototype.GetAttributeUInt8ForAllPoints=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!Ec(c,a,b,d)};g.prototype.GetAttributeInt16ForAllPoints=g.prototype.GetAttributeInt16ForAllPoints=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&\n(d=d.ptr);return!!Fc(c,a,b,d)};g.prototype.GetAttributeUInt16ForAllPoints=g.prototype.GetAttributeUInt16ForAllPoints=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!Gc(c,a,b,d)};g.prototype.GetAttributeInt32ForAllPoints=g.prototype.GetAttributeInt32ForAllPoints=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!Hc(c,\na,b,d)};g.prototype.GetAttributeUInt32ForAllPoints=g.prototype.GetAttributeUInt32ForAllPoints=function(a,b,d){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);return!!Ic(c,a,b,d)};g.prototype.GetAttributeDataArrayForAllPoints=g.prototype.GetAttributeDataArrayForAllPoints=function(a,b,d,e,f){var c=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);b&&\"object\"===typeof b&&(b=b.ptr);d&&\"object\"===typeof d&&(d=d.ptr);e&&\"object\"===typeof e&&\n(e=e.ptr);f&&\"object\"===typeof f&&(f=f.ptr);return!!Jc(c,a,b,d,e,f)};g.prototype.SkipAttributeTransform=g.prototype.SkipAttributeTransform=function(a){var b=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);Kc(b,a)};g.prototype.__destroy__=g.prototype.__destroy__=function(){Lc(this.ptr)};y.prototype=Object.create(p.prototype);y.prototype.constructor=y;y.prototype.__class__=y;y.__cache__={};a.Mesh=y;y.prototype.num_faces=y.prototype.num_faces=function(){return Mc(this.ptr)};y.prototype.num_attributes=y.prototype.num_attributes=\nfunction(){return Nc(this.ptr)};y.prototype.num_points=y.prototype.num_points=function(){return Oc(this.ptr)};y.prototype.__destroy__=y.prototype.__destroy__=function(){Pc(this.ptr)};Q.prototype=Object.create(p.prototype);Q.prototype.constructor=Q;Q.prototype.__class__=Q;Q.__cache__={};a.VoidPtr=Q;Q.prototype.__destroy__=Q.prototype.__destroy__=function(){Qc(this.ptr)};I.prototype=Object.create(p.prototype);I.prototype.constructor=I;I.prototype.__class__=I;I.__cache__={};a.DracoInt32Array=I;I.prototype.GetValue=\nI.prototype.GetValue=function(a){var b=this.ptr;a&&\"object\"===typeof a&&(a=a.ptr);return Rc(b,a)};I.prototype.size=I.prototype.size=function(){return Sc(this.ptr)};I.prototype.__destroy__=I.prototype.__destroy__=function(){Tc(this.ptr)};L.prototype=Object.create(p.prototype);L.prototype.constructor=L;L.prototype.__class__=L;L.__cache__={};a.Metadata=L;L.prototype.__destroy__=L.prototype.__destroy__=function(){Uc(this.ptr)};(function(){function c(){a.OK=Vc();a.DRACO_ERROR=Wc();a.IO_ERROR=Xc();a.INVALID_PARAMETER=\nYc();a.UNSUPPORTED_VERSION=Zc();a.UNKNOWN_VERSION=$c();a.DT_INVALID=ad();a.DT_INT8=bd();a.DT_UINT8=cd();a.DT_INT16=dd();a.DT_UINT16=ed();a.DT_INT32=fd();a.DT_UINT32=gd();a.DT_INT64=hd();a.DT_UINT64=id();a.DT_FLOAT32=jd();a.DT_FLOAT64=kd();a.DT_BOOL=ld();a.DT_TYPES_COUNT=md();a.INVALID_GEOMETRY_TYPE=nd();a.POINT_CLOUD=od();a.TRIANGULAR_MESH=pd();a.ATTRIBUTE_INVALID_TRANSFORM=qd();a.ATTRIBUTE_NO_TRANSFORM=rd();a.ATTRIBUTE_QUANTIZATION_TRANSFORM=sd();a.ATTRIBUTE_OCTAHEDRON_TRANSFORM=td();a.INVALID=ud();\na.POSITION=vd();a.NORMAL=wd();a.COLOR=xd();a.TEX_COORD=yd();a.GENERIC=zd()}Ba?c():Da.unshift(c)})();if(\"function\"===typeof a.onModuleParsed)a.onModuleParsed();return m}}();\"object\"===typeof exports&&\"object\"===typeof module?module.exports=DracoDecoderModule:\"function\"===typeof define&&define.amd?define([],function(){return DracoDecoderModule}):\"object\"===typeof exports&&(exports.DracoDecoderModule=DracoDecoderModule);\n"
  },
  {
    "path": "public/models/collada/elf/elf.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<COLLADA xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" version=\"1.4.1\">\r\n  <asset>\r\n    <contributor>\r\n      <author>Blender User</author>\r\n      <authoring_tool>Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0</authoring_tool>\r\n    </contributor>\r\n    <created>2017-06-29T18:18:46</created>\r\n    <modified>2017-06-29T18:18:46</modified>\r\n    <unit name=\"meter\" meter=\"1\"/>\r\n    <up_axis>Z_UP</up_axis>\r\n  </asset>\r\n  <library_images>\r\n    <image id=\"ce_jpg\" name=\"ce_jpg\">\r\n      <init_from>ce.jpg</init_from>\r\n    </image>\r\n    <image id=\"Body_tex_003_jpg\" name=\"Body_tex_003_jpg\">\r\n      <init_from>Body_tex_003.jpg</init_from>\r\n    </image>\r\n    <image id=\"Face_tex_002_toObj_jpg\" name=\"Face_tex_002_toObj_jpg\">\r\n      <init_from>Face_tex_002_toObj.jpg</init_from>\r\n    </image>\r\n    <image id=\"Hair_tex_001_jpg\" name=\"Hair_tex_001_jpg\">\r\n      <init_from>Hair_tex_001.jpg</init_from>\r\n    </image>\r\n  </library_images>\r\n  <library_effects>\r\n    <effect id=\"pasted__lambert2SG_001-effect\">\r\n      <profile_COMMON>\r\n        <newparam sid=\"ce_jpg-surface\">\r\n          <surface type=\"2D\">\r\n            <init_from>ce_jpg</init_from>\r\n          </surface>\r\n        </newparam>\r\n        <newparam sid=\"ce_jpg-sampler\">\r\n          <sampler2D>\r\n            <source>ce_jpg-surface</source>\r\n          </sampler2D>\r\n        </newparam>\r\n        <technique sid=\"common\">\r\n          <phong>\r\n            <emission>\r\n              <color sid=\"emission\">0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color sid=\"ambient\">0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <texture texture=\"ce_jpg-sampler\" texcoord=\"UVMap\"/>\r\n            </diffuse>\r\n            <specular>\r\n              <color sid=\"specular\">0.05 0.05 0.05 1</color>\r\n            </specular>\r\n            <shininess>\r\n              <float sid=\"shininess\">50</float>\r\n            </shininess>\r\n            <reflective>\r\n              <color>0 0 0 1</color>\r\n            </reflective>\r\n            <reflectivity>\r\n              <float>1</float>\r\n            </reflectivity>\r\n            <index_of_refraction>\r\n              <float sid=\"index_of_refraction\">1</float>\r\n            </index_of_refraction>\r\n          </phong>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n    <effect id=\"lambert22SG_001-effect\">\r\n      <profile_COMMON>\r\n        <newparam sid=\"Body_tex_003_jpg-surface\">\r\n          <surface type=\"2D\">\r\n            <init_from>Body_tex_003_jpg</init_from>\r\n          </surface>\r\n        </newparam>\r\n        <newparam sid=\"Body_tex_003_jpg-sampler\">\r\n          <sampler2D>\r\n            <source>Body_tex_003_jpg-surface</source>\r\n          </sampler2D>\r\n        </newparam>\r\n        <technique sid=\"common\">\r\n          <phong>\r\n            <emission>\r\n              <color sid=\"emission\">0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color sid=\"ambient\">0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <texture texture=\"Body_tex_003_jpg-sampler\" texcoord=\"UVMap\"/>\r\n            </diffuse>\r\n            <specular>\r\n              <color sid=\"specular\">0.1 0.1 0.1 1</color>\r\n            </specular>\r\n            <shininess>\r\n              <float sid=\"shininess\">50</float>\r\n            </shininess>\r\n            <reflective>\r\n              <color>0 0 0 1</color>\r\n            </reflective>\r\n            <reflectivity>\r\n              <float>1</float>\r\n            </reflectivity>\r\n            <index_of_refraction>\r\n              <float sid=\"index_of_refraction\">1</float>\r\n            </index_of_refraction>\r\n          </phong>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n    <effect id=\"Rig2_lambert23SG_001-effect\">\r\n      <profile_COMMON>\r\n        <newparam sid=\"Face_tex_002_toObj_jpg-surface\">\r\n          <surface type=\"2D\">\r\n            <init_from>Face_tex_002_toObj_jpg</init_from>\r\n          </surface>\r\n        </newparam>\r\n        <newparam sid=\"Face_tex_002_toObj_jpg-sampler\">\r\n          <sampler2D>\r\n            <source>Face_tex_002_toObj_jpg-surface</source>\r\n          </sampler2D>\r\n        </newparam>\r\n        <technique sid=\"common\">\r\n          <phong>\r\n            <emission>\r\n              <color sid=\"emission\">0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color sid=\"ambient\">0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <texture texture=\"Face_tex_002_toObj_jpg-sampler\" texcoord=\"UVMap\"/>\r\n            </diffuse>\r\n            <specular>\r\n              <color sid=\"specular\">0.05 0.05 0.05 1</color>\r\n            </specular>\r\n            <shininess>\r\n              <float sid=\"shininess\">50</float>\r\n            </shininess>\r\n            <reflective>\r\n              <color>0 0 0 1</color>\r\n            </reflective>\r\n            <reflectivity>\r\n              <float>1</float>\r\n            </reflectivity>\r\n            <index_of_refraction>\r\n              <float sid=\"index_of_refraction\">1</float>\r\n            </index_of_refraction>\r\n          </phong>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n    <effect id=\"lambert25SG_001-effect\">\r\n      <profile_COMMON>\r\n        <newparam sid=\"Hair_tex_001_jpg-surface\">\r\n          <surface type=\"2D\">\r\n            <init_from>Hair_tex_001_jpg</init_from>\r\n          </surface>\r\n        </newparam>\r\n        <newparam sid=\"Hair_tex_001_jpg-sampler\">\r\n          <sampler2D>\r\n            <source>Hair_tex_001_jpg-surface</source>\r\n          </sampler2D>\r\n        </newparam>\r\n        <technique sid=\"common\">\r\n          <phong>\r\n            <emission>\r\n              <color sid=\"emission\">0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color sid=\"ambient\">0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <texture texture=\"Hair_tex_001_jpg-sampler\" texcoord=\"UVMap\"/>\r\n            </diffuse>\r\n            <specular>\r\n              <color sid=\"specular\">0.05 0.05 0.05 1</color>\r\n            </specular>\r\n            <shininess>\r\n              <float sid=\"shininess\">50</float>\r\n            </shininess>\r\n            <reflective>\r\n              <color>0 0 0 1</color>\r\n            </reflective>\r\n            <reflectivity>\r\n              <float>1</float>\r\n            </reflectivity>\r\n            <index_of_refraction>\r\n              <float sid=\"index_of_refraction\">1</float>\r\n            </index_of_refraction>\r\n          </phong>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n  </library_effects>\r\n  <library_materials>\r\n    <material id=\"pasted__lambert2SG_001-material\" name=\"pasted__lambert2SG_001\">\r\n      <instance_effect url=\"#pasted__lambert2SG_001-effect\"/>\r\n    </material>\r\n    <material id=\"lambert22SG_001-material\" name=\"lambert22SG_001\">\r\n      <instance_effect url=\"#lambert22SG_001-effect\"/>\r\n    </material>\r\n    <material id=\"Rig2_lambert23SG_001-material\" name=\"Rig2_lambert23SG_001\">\r\n      <instance_effect url=\"#Rig2_lambert23SG_001-effect\"/>\r\n    </material>\r\n    <material id=\"lambert25SG_001-material\" name=\"lambert25SG_001\">\r\n      <instance_effect url=\"#lambert25SG_001-effect\"/>\r\n    </material>\r\n  </library_materials>\r\n  <library_geometries>\r\n    <geometry id=\"Elf01_posed_002-mesh\" name=\"Elf01_posed.002\">\r\n      <mesh>\r\n        <source id=\"Elf01_posed_002-mesh-positions\">\r\n          <float_array id=\"Elf01_posed_002-mesh-positions-array\" count=\"22797\">-14.47453 1.673838 -4.05562 -14.16501 1.673838 -5.611667 -14.84679 1.115991 -5.79435 -15.17432 1.115991 -4.147749 -13.65504 1.673838 -7.114002 -14.30714 1.115991 -7.384111 -12.95333 1.673838 -8.536919 -13.5646 1.115991 -8.889835 -12.0719 1.673838 -9.856073 -12.63188 1.115991 -10.28575 -11.02583 1.673838 -11.04889 -11.52493 1.115991 -11.54799 -9.833013 1.673838 -12.09496 -10.2627 1.115991 -12.65494 -8.513861 1.673838 -12.97639 -8.866777 1.115991 -13.58766 -7.090943 1.673838 -13.6781 -7.361054 1.115991 -14.3302 -5.588609 1.673838 -14.18807 -5.771292 1.115991 -14.86985 -4.032562 1.673838 -14.49759 -4.124692 1.115991 -15.19738 -2.449428 1.673838 -14.60135 -2.449428 1.115991 -15.30718 -0.866293 1.673838 -14.49759 -0.774164 1.115991 -15.19738 0.689754 1.673838 -14.18807 0.872436 1.115991 -14.86985 2.192088 1.673838 -13.6781 2.462198 1.115991 -14.3302 3.615005 1.673838 -12.97639 3.967921 1.115991 -13.58766 4.934158 1.673838 -12.09496 5.363841 1.115991 -12.65494 6.126975 1.673838 -11.04889 6.626073 1.115991 -11.54799 7.173049 1.673838 -9.856074 7.733021 1.115991 -10.28575 8.054478 1.673838 -8.53692 8.665745 1.115991 -8.889836 8.756183 1.673838 -7.114004 9.408286 1.115991 -7.384114 9.266157 1.673838 -5.61167 9.947936 1.115991 -5.794352 9.575674 1.673838 -4.055623 10.27546 1.115991 -4.147752 9.679436 1.673838 -2.472489 10.38527 1.115991 -2.472489 9.575673 1.673838 -0.889355 10.27546 1.115991 -0.797225 9.266156 1.673838 0.666691 9.947934 1.115991 0.849374 8.756181 1.673838 2.169025 9.408284 1.115991 2.439135 8.054476 1.673838 3.591942 8.665743 1.115991 3.944857 7.173046 1.673838 4.911094 7.733019 1.115991 5.340777 6.126974 1.673838 6.103911 6.626072 1.115991 6.603008 4.934157 1.673838 7.149983 5.363839 1.115991 7.709956 3.615004 1.673838 8.031413 3.967919 1.115991 8.642681 2.192088 1.673838 8.733118 2.462197 1.115991 9.385219 0.689754 1.673838 9.243089 0.872436 1.115991 9.924869 -0.866292 1.673838 9.552606 -0.774163 1.115991 10.2524 -2.449425 1.673838 9.65637 -2.449425 1.115991 10.3622 -4.032558 1.673838 9.552605 -4.124688 1.115991 10.2524 -5.588604 1.673838 9.243088 -5.771287 1.115991 9.924869 -7.090937 1.673838 8.733115 -7.361047 1.115991 9.385216 -8.513854 1.673838 8.031411 -8.866768 1.115991 8.642678 -9.833004 1.673838 7.149981 -10.26269 1.115991 7.709953 -11.02582 1.673838 6.103908 -11.52492 1.115991 6.603006 -12.07189 1.673838 4.911092 -12.63187 1.115991 5.340774 -12.95332 1.673838 3.59194 -13.56459 1.115991 3.944855 -13.65502 1.673838 2.169024 -14.30713 1.115991 2.439134 -14.165 1.673838 0.666691 -14.84678 1.115991 0.849374 -14.47451 1.673838 -0.889354 -15.1743 1.115991 -0.797225 -14.57828 1.673838 -2.472487 -15.28411 1.115991 -2.472487 -2.449426 1.673838 -2.472487 -16.43928 -0.55755 -4.314284 -16.07919 -0.55755 -6.124569 -2.449427 -0.55755 -2.472487 -15.48589 -0.55755 -7.872366 -14.66954 -0.55755 -9.52777 -13.6441 -0.55755 -11.06246 -12.42711 -0.55755 -12.45016 -11.0394 -0.55755 -13.66715 -9.504714 -0.55755 -14.6926 -7.84931 -0.55755 -15.50895 -6.101513 -0.55755 -16.10225 -4.291228 -0.55755 -16.46234 -2.449429 -0.55755 -16.58306 -0.60763 -0.55755 -16.46234 1.202656 -0.55755 -16.10225 2.950452 -0.55755 -15.50895 4.605856 -0.55755 -14.6926 6.140542 -0.55755 -13.66715 7.52825 -0.55755 -12.45017 8.745239 -0.55755 -11.06246 9.770683 -0.55755 -9.527771 10.58704 -0.55755 -7.872369 11.18033 -0.55755 -6.124572 11.54042 -0.55755 -4.314287 11.66114 -0.55755 -2.472489 11.54042 -0.55755 -0.63069 11.18033 -0.55755 1.179594 10.58703 -0.55755 2.927391 9.770682 -0.55755 4.582793 8.745237 -0.55755 6.117478 7.528249 -0.55755 7.505187 6.14054 -0.55755 8.722174 4.605855 -0.55755 9.747618 2.950452 -0.55755 10.56397 1.202656 -0.55755 11.15727 -0.607628 -0.55755 11.51735 -2.449426 -0.55755 11.63807 -4.291223 -0.55755 11.51735 -6.101507 -0.55755 11.15727 -7.849303 -0.55755 10.56397 -9.504705 -0.55755 9.747614 -11.03939 -0.55755 8.722171 -12.4271 -0.55755 7.505185 -13.64408 -0.55755 6.117476 -14.66953 -0.55755 4.582791 -15.48588 -0.55755 2.927389 -16.07918 -0.55755 1.179594 -16.43926 -0.55755 -0.63069 -16.55998 -0.55755 -2.472486 -7.746557 2.97e-4 -15.26088 -6.032018 2.97e-4 -15.84289 -9.37046 2.97e-4 -14.46006 -10.87594 2.97e-4 -13.45413 -12.23725 2.97e-4 -12.2603 -13.43108 2.97e-4 -10.899 -14.43701 2.97e-4 -9.393517 -15.23783 2.97e-4 -7.769613 -15.81983 2.97e-4 -6.055075 -16.17307 2.97e-4 -4.279237 -16.29147 2.97e-4 -2.472487 -16.17305 2.97e-4 -0.665737 -15.81982 2.97e-4 1.110099 -15.23781 2.97e-4 2.824636 -14.43699 2.97e-4 4.448538 -13.43106 2.97e-4 5.954019 -12.23723 2.97e-4 7.315321 -10.87593 2.97e-4 8.509152 -9.370451 2.97e-4 9.515082 -7.74655 2.97e-4 10.3159 -6.032012 2.97e-4 10.89791 -4.256176 2.97e-4 11.25115 -2.449426 2.97e-4 11.36957 -0.642675 2.97e-4 11.25115 1.133161 2.97e-4 10.89791 2.847699 2.97e-4 10.3159 4.471601 2.97e-4 9.515086 5.977083 2.97e-4 8.509154 7.338385 2.97e-4 7.315323 8.532216 2.97e-4 5.954021 9.538148 2.97e-4 4.448541 10.33897 2.97e-4 2.824638 10.92097 2.97e-4 1.1101 11.27421 2.97e-4 -0.665737 11.39263 2.97e-4 -2.472489 11.27421 2.97e-4 -4.27924 10.92098 2.97e-4 -6.055077 10.33897 2.97e-4 -7.769615 9.538149 2.97e-4 -9.393519 8.532218 2.97e-4 -10.899 7.338388 2.97e-4 -12.2603 5.977086 2.97e-4 -13.45413 4.471603 2.97e-4 -14.46006 2.847699 2.97e-4 -15.26088 1.133161 2.97e-4 -15.84289 -0.642677 2.97e-4 -16.19613 -2.449429 2.97e-4 -16.31455 -4.25618 2.97e-4 -16.19613 -7.595645 0.558144 -14.89655 -5.929952 0.558144 -15.46198 -9.173284 0.558144 -14.11854 -10.63588 0.558144 -13.14127 -11.9584 0.558144 -11.98145 -13.11821 0.558144 -10.65893 -14.09549 0.558144 -9.196341 -14.87349 0.558144 -7.618701 -15.43892 0.558144 -5.953009 -15.78209 0.558144 -4.227763 -15.89712 0.558144 -2.472487 -15.78207 0.558144 -0.71721 -15.4389 0.558144 1.008033 -14.87348 0.558144 2.673724 -14.09547 0.558144 4.251362 -13.1182 0.558144 5.713953 -11.95838 0.558144 7.036472 -10.63587 0.558144 8.19629 -9.173275 0.558144 9.173563 -7.595637 0.558144 9.951566 -5.929946 0.558144 10.51699 -4.204702 0.558144 10.86017 -2.449425 0.558144 10.97521 -0.694148 0.558144 10.86017 1.031096 0.558144 10.51699 2.696787 0.558144 9.95157 4.274426 0.558144 9.173566 5.737017 0.558144 8.196292 7.059537 0.558144 7.036474 8.219355 0.558144 5.713955 9.196629 0.558144 4.251364 9.974634 0.558144 2.673726 10.54006 0.558144 1.008034 10.88323 0.558144 -0.717211 10.99828 0.558144 -2.472489 10.88323 0.558144 -4.227767 10.54006 0.558144 -5.953012 9.974637 0.558144 -7.618704 9.19663 0.558144 -9.196343 8.219357 0.558144 -10.65893 7.059539 0.558144 -11.98145 5.73702 0.558144 -13.14127 4.274428 0.558144 -14.11855 2.696787 0.558144 -14.89655 1.031096 0.558144 -15.46198 -0.69415 0.558144 -15.80515 -2.449428 0.558144 -15.9202 -4.204707 0.558144 -15.80515 6.734066 -0.968913 3.226322 -11.63292 -0.968913 3.226322 -11.63292 -0.968913 -8.171297 6.734066 -0.968913 -8.171297 2.532056 24.98538 -6.700233 2.748429 25.08286 -6.503367 2.937784 24.78863 -6.649049 2.617506 24.71565 -6.842228 2.448263 24.36956 -6.569436 2.668682 24.36269 -6.368389 2.348513 24.64626 -6.16923 2.250749 24.65712 -6.394146 2.371424 24.7733 -6.612619 2.441888 24.5121 -6.735034 3.884326 23.93405 -7.47779 3.781025 24.03608 -7.400921 3.765819 24.18157 -7.180488 4.053661 23.90354 -7.350808 3.262051 23.50079 -7.381974 3.11883 23.59561 -7.301085 3.113179 23.73672 -7.418223 3.267167 23.61845 -7.513439 3.551363 23.476 -7.288115 3.702773 23.48327 -7.195193 3.579542 23.57659 -7.108016 3.371586 23.62554 -7.150411 4.092566 23.77774 -6.406679 3.967988 23.54764 -6.456311 4.052024 23.52227 -6.492403 4.202578 23.71566 -6.481403 3.865796 23.57965 -6.723155 4.007283 23.45857 -6.802876 4.057054 23.44315 -6.646 3.993017 23.50396 -6.604977 2.510391 24.61751 -5.937867 2.827422 24.35846 -6.230048 2.939679 24.32204 -6.091524 2.674726 24.56377 -5.771497 3.179511 24.77975 -6.357767 2.957775 25.07496 -6.205013 3.029969 24.91405 -5.793015 3.266988 24.60694 -5.91784 4.40496 23.82921 -6.628588 4.376185 23.88194 -6.795334 4.272741 23.94692 -6.77222 4.31986 23.91063 -6.561313 3.923838 23.48732 -6.9477 3.772108 23.58836 -6.865079 3.580088 23.71968 -6.957564 3.822366 23.49308 -7.100284 4.183158 23.90673 -7.16352 4.081664 24.00178 -7.108525 4.165806 24.046 -6.915161 4.308217 23.90707 -6.989556 3.689368 24.48598 -6.648447 3.798721 24.32131 -6.181944 3.427356 24.4921 -6.969109 3.093612 24.40308 -7.194004 2.674777 23.98025 -6.93393 2.540436 24.13853 -6.791933 2.544815 24.30399 -6.929979 2.66565 24.13484 -7.061375 2.932528 23.96734 -6.852559 3.214848 23.99197 -6.713378 3.369405 23.96197 -6.598359 3.470974 23.88831 -6.432011 3.246044 23.71552 -5.612491 3.198193 23.67708 -5.802417 3.560795 23.33045 -5.908302 3.577711 23.37584 -5.765512 2.94346 24.0378 -5.723994 3.050267 24.09977 -5.647343 3.745622 24.09694 -5.892869 3.366705 24.35838 -5.744711 3.430843 23.71349 -6.273207 2.987445 24.09664 -5.972051 3.900442 23.63129 -6.327513 4.019516 23.83214 -6.319932 3.904874 23.75551 -6.16151 3.771045 23.55412 -6.261665 2.81901 24.37719 -5.756053 3.129621 24.50448 -5.673799 2.882976 24.68601 -5.73751 2.941482 24.46562 -5.691474 3.623446 23.8395 -5.692442 3.878615 23.64336 -5.765714 3.957521 23.87692 -5.993242 3.334956 23.6169 -6.031685 4.622981 22.85887 -6.452079 4.752372 22.89608 -6.4281 4.797571 22.82813 -6.415738 4.661125 22.78737 -6.423101 3.168758 24.16245 -5.557645 3.296259 23.95295 -5.523772 3.001801 23.67706 -7.219964 3.190872 23.75569 -7.028306 2.813811 23.84868 -7.051481 3.673659 23.8818 -7.56763 3.500307 23.85223 -7.62122 3.464258 23.91864 -7.559964 3.524684 24.02116 -7.476748 2.745857 24.29954 -7.176765 2.617683 24.50499 -7.023269 2.11275 24.97632 -6.023415 2.040381 24.99621 -6.263008 2.330768 25.29766 -6.585353 2.570448 25.37408 -6.398277 2.132439 25.09904 -6.470596 2.435071 25.01812 -5.57557 2.260118 24.95908 -5.732357 2.646718 25.15022 -5.569998 2.727302 25.35396 -6.076084 2.746763 25.25201 -5.689763 3.99758 23.58073 -6.170882 3.866504 23.44172 -6.241258 3.97426 23.49478 -5.877501 4.045801 23.61507 -6.048275 3.74947 23.22264 -5.994213 3.807694 23.24805 -5.851986 3.600734 23.43122 -6.105577 3.763797 23.31046 -6.154672 3.998406 24.2067 -6.826765 4.084464 24.07541 -6.37651 3.370355 24.17399 -7.375814 2.894283 24.14847 -7.314818 2.80657 24.00276 -7.182856 3.771628 23.72402 -6.679309 3.723593 23.50875 -5.66983 3.859199 23.34773 -5.796429 4.645198 22.7116 -6.379973 4.78888 22.72022 -6.331574 4.73544 22.67407 -6.23814 4.616523 22.67735 -6.308786 4.412705 23.7227 -7.129878 4.404438 23.75742 -7.0366 4.138329 23.75271 -7.430331 4.210044 23.70062 -7.431224 3.631528 23.72509 -7.723844 3.75371 23.75415 -7.647349 3.4643 23.38519 -7.527714 3.448755 23.50788 -7.639692 3.793734 23.30025 -7.422136 3.694632 23.3696 -7.427411 3.898236 23.29312 -7.351419 4.174327 23.24604 -7.152166 4.277127 23.28048 -7.030336 4.307439 23.28849 -6.796743 4.259106 23.3054 -6.932971 4.275369 23.64724 -6.534999 4.115718 23.47081 -6.530769 4.359507 23.31698 -6.677683 4.452292 23.51195 -6.652959 4.494284 23.77226 -6.866322 4.523498 23.71355 -6.709479 3.845392 23.75191 -7.617195 3.552939 23.3676 -7.464195 3.385221 23.49177 -7.329514 4.016572 23.81413 -7.550847 4.007728 23.31816 -7.275063 4.137039 23.27703 -7.289959 4.334129 23.77351 -7.298325 4.334968 22.82075 -8.5142 4.306398 22.83734 -8.537189 4.317283 22.85835 -8.577782 4.364283 22.85982 -8.569772 3.766854 23.54013 -7.54261 3.819753 23.50385 -7.552799 5.097662 22.64128 -8.638346 5.142595 22.64423 -8.613107 5.098953 22.60647 -8.563558 5.075126 22.61751 -8.589403 4.109459 23.53044 -7.3251 4.177884 23.49886 -7.372444 5.712681 22.58457 -8.357956 5.732473 22.59707 -8.303964 5.675879 22.56298 -8.26874 5.650893 22.54166 -8.306879 4.379441 23.47917 -7.077286 4.343814 23.50634 -7.015518 5.768997 22.68475 -7.579374 5.808847 22.67814 -7.543197 5.736449 22.64242 -7.506788 5.72724 22.65716 -7.541636 3.559479 23.3176 -7.625234 3.635454 23.29584 -7.564147 3.538183 23.43567 -7.728163 3.492169 23.64313 -7.731688 3.715364 23.63546 -7.805952 3.588914 23.56483 -7.797715 3.747205 23.31301 -7.563362 3.831735 23.48101 -7.651205 4.103757 23.72082 -7.632776 3.980957 23.65067 -7.668603 4.069891 23.2437 -7.357004 4.167585 23.46333 -7.385967 3.890126 23.2274 -7.503342 3.977976 23.22442 -7.42554 3.888927 23.42171 -7.627826 4.492136 23.63328 -7.210816 4.407293 23.69799 -7.368065 4.33346 23.22935 -7.08747 4.444057 23.42871 -7.103332 4.236436 23.19761 -7.197852 4.230174 23.44783 -7.428576 4.201382 23.23906 -7.331748 4.585145 23.69435 -6.915725 4.509159 23.6668 -7.070486 4.448593 23.26155 -6.72818 4.539724 23.44703 -6.70573 4.35355 23.249 -6.972438 4.398155 23.23423 -6.840626 4.412982 23.45778 -7.069707 5.603621 22.72418 -8.218315 5.638803 22.70587 -8.218045 5.698624 22.67567 -8.278455 5.669036 22.68833 -8.323681 5.419483 22.56787 -8.228127 5.44825 22.64941 -8.281513 5.586066 22.61446 -8.369372 5.540748 22.54881 -8.300325 5.529746 22.58615 -8.078868 5.461597 22.54495 -8.144728 5.565324 22.53103 -8.233422 5.627751 22.56184 -8.195404 5.575599 22.64973 -8.084228 5.687291 22.61936 -8.2127 4.129653 23.0044 -6.293941 4.220754 23.14371 -6.368965 4.440324 22.98425 -6.450082 4.351874 22.85173 -6.359944 4.110239 22.91349 -6.136911 4.349535 22.77157 -6.226986 4.173636 22.93927 -6.023377 4.430887 22.76283 -6.114959 4.798892 22.81018 -6.243456 4.639544 22.92898 -6.184554 4.618331 22.87292 -6.152996 4.701532 22.97192 -6.28341 4.665118 22.96495 -6.240999 4.812257 22.87407 -6.323372 4.342221 23.26163 -6.301791 4.553965 23.07048 -6.392611 4.324463 23.34993 -6.160639 4.292251 23.22972 -6.021845 4.370168 23.15075 -6.072281 4.393969 23.2786 -6.202137 4.243705 23.01559 -5.999124 4.170731 23.08496 -5.957064 3.960094 23.04948 -6.084917 3.980042 23.12542 -6.222631 4.096302 23.0078 -5.984587 4.18049 23.29972 -5.998275 4.096212 23.15495 -5.930142 4.24044 23.40539 -6.131474 4.07135 23.27178 -6.304779 4.265841 23.3335 -6.262239 4.511787 22.75867 -6.381798 4.546682 22.68526 -6.289886 4.665954 22.676 -6.203166 4.8535 22.76301 -6.268998 4.823955 22.713 -6.228121 4.871185 22.69479 -6.26013 4.897828 22.72061 -6.292304 4.894075 22.76099 -6.331357 4.859958 22.81073 -6.330848 5.027466 23.3308 -7.140738 4.962909 23.305 -7.267393 4.881522 23.15466 -7.259837 4.82886 23.0016 -7.175879 4.858908 22.98235 -7.066276 4.988183 23.14143 -6.96418 4.905173 23.0032 -6.977698 4.955549 23.1774 -7.601372 4.911602 23.2758 -7.740293 4.737589 23.07232 -7.770527 4.715254 22.94079 -7.708339 4.838198 22.9477 -7.513985 4.751628 22.90915 -7.598728 4.914442 23.05893 -7.530886 4.399088 23.26586 -8.049273 4.502149 23.31472 -8.016498 4.32299 22.9809 -7.902914 4.326949 23.11816 -8.00355 4.383959 22.96894 -7.827761 4.47532 22.99454 -7.789282 4.557986 23.14176 -7.828923 3.816548 23.32833 -8.067235 3.932855 23.37806 -8.071647 3.79544 23.14178 -7.93419 3.778073 23.23266 -8.015008 3.859695 23.11709 -7.873632 3.951235 23.1496 -7.874219 4.015287 23.27009 -7.933946 5.666827 22.5951 -8.388626 5.628115 22.55763 -8.337262 5.553029 22.72274 -8.289152 5.577501 22.73334 -8.251536 4.796203 23.174 -7.807364 4.307071 23.62212 -7.463665 4.194255 24.01747 -6.464079 4.597266 23.6437 -6.784003 5.043484 23.28713 -7.029966 5.808721 22.68165 -7.484501 5.760353 22.65126 -7.479411 2.982848 23.83506 -7.332928 3.369419 23.53916 -7.275817 3.049823 23.99022 -7.44108 4.180574 23.66898 -7.526197 4.569763 23.2843 -7.925553 5.1729 22.65515 -8.573315 5.132653 22.62094 -8.55231 3.192766 23.87626 -7.532012 3.344264 23.75759 -7.622409 3.827559 23.6417 -7.760488 4.014653 23.37863 -8.018798 4.362739 22.84196 -8.494215 4.386159 22.87072 -8.528039 4.975364 22.61113 -8.530471 4.987216 22.66146 -8.594029 5.000707 22.59251 -8.457926 5.089959 22.64159 -8.451301 5.137136 22.69091 -8.48021 5.188554 22.67514 -8.669245 5.164999 22.69752 -8.648115 5.188014 22.68991 -8.616711 5.203076 22.67648 -8.640156 5.132528 22.68492 -8.665112 5.157517 22.66874 -8.678599 4.932866 22.61788 -8.388112 4.888751 22.63916 -8.4654 4.902956 22.69031 -8.529107 5.020116 22.75778 -8.58323 5.021981 22.78042 -8.561074 5.105051 22.74488 -8.593497 5.062052 22.72922 -8.620341 5.136961 22.73766 -8.550532 5.072194 22.78672 -8.516376 5.094541 22.77432 -8.511995 5.072989 22.72745 -8.380484 5.019386 22.66551 -8.357714 4.400263 22.88726 -8.622953 4.380467 22.91229 -8.605992 4.401765 22.91564 -8.572155 4.411812 22.89832 -8.595535 4.343862 22.8979 -8.613854 4.368982 22.88258 -8.625461 4.245726 22.83522 -8.489034 4.250917 22.8743 -8.545009 4.278909 22.81222 -8.42788 4.342363 22.86073 -8.431401 4.36708 22.89689 -8.455822 4.222283 22.83837 -8.346297 4.175916 22.86457 -8.417853 4.167906 22.90788 -8.473107 4.261189 22.98115 -8.511182 4.284666 22.9963 -8.495784 4.336658 22.9536 -8.558263 4.310533 22.99327 -8.483316 4.321324 22.94869 -8.375658 4.283226 22.898 -8.345895 5.738114 22.6519 -8.326102 5.716482 22.66126 -8.361575 5.633091 22.67276 -8.364104 5.689352 22.65209 -8.393651 5.756389 22.78005 -7.515759 5.773167 22.76346 -7.470639 5.840938 22.71359 -7.512685 5.826268 22.72672 -7.550579 5.733426 22.77239 -7.560013 5.808819 22.71813 -7.585001 5.643832 22.6357 -7.532147 5.681047 22.69499 -7.577549 5.648689 22.61341 -7.46101 5.697529 22.63146 -7.421049 5.746384 22.68821 -7.413148 5.516653 22.6195 -7.397504 5.504058 22.64989 -7.489079 5.534926 22.73279 -7.538548 5.68892 22.80574 -7.540709 5.675921 22.83264 -7.431411 5.65222 22.84773 -7.464826 5.632258 22.70396 -7.333975 5.574725 22.62781 -7.332626 5.104571 22.83289 -8.036821 5.076991 22.71999 -7.977614 4.846745 22.85858 -7.805923 4.870856 22.98359 -7.866971 4.884599 22.82835 -7.70022 5.117825 22.69222 -7.879063 5.197124 22.74017 -7.804208 4.967559 22.87028 -7.620573 5.270862 22.82424 -7.823383 5.043363 22.97202 -7.637443 5.043521 23.16743 -7.840981 5.085614 23.07891 -7.705589 5.31471 22.90967 -7.888567 5.275548 22.97972 -8.018379 5.167518 22.91275 -8.076316 4.930882 23.07768 -7.904696 5.18003 22.81389 -7.331685 4.965587 22.92724 -7.235388 5.016125 23.0677 -7.315442 5.227591 22.93393 -7.406109 4.992085 22.90649 -7.131006 5.200553 22.79002 -7.234887 5.24708 22.80531 -7.159918 5.038575 22.92529 -7.046484 5.325033 22.91428 -7.151894 5.119338 23.05238 -7.034575 5.155222 23.22875 -7.203308 5.172948 23.18665 -7.097167 5.376706 23.03038 -7.208876 5.35611 23.07062 -7.306094 5.297781 23.04926 -7.416606 5.09301 23.20471 -7.324026 4.610441 23.20719 -8.123381 4.676327 23.18158 -8.035121 4.85422 23.01464 -8.213123 4.790881 23.03122 -8.297723 4.699429 22.99226 -8.331049 4.512323 23.16202 -8.155379 4.626668 22.78342 -8.203098 4.4371 22.90445 -8.017158 4.444134 23.02885 -8.111878 4.637493 22.88471 -8.290864 4.492662 22.8914 -7.940068 4.672443 22.76833 -8.121049 4.766827 22.80263 -8.093896 4.584912 22.91989 -7.905106 4.840533 22.91299 -8.131006 4.664159 23.05389 -7.943759 4.009252 23.29143 -8.16702 4.085747 23.29454 -8.111348 4.188028 23.17037 -8.242985 4.122691 23.16277 -8.302505 4.012801 23.12311 -8.300254 3.893153 23.24502 -8.164283 3.990928 22.98418 -8.185359 3.873161 23.073 -8.038102 3.857284 23.15706 -8.114713 3.979314 23.05271 -8.254633 3.936008 23.04754 -7.975431 4.051268 22.95519 -8.125746 4.128934 23.0021 -8.126612 4.023267 23.08548 -7.976148 4.182942 23.09404 -8.172952 4.084288 23.19694 -8.031135 4.961282 22.75088 -8.573136 4.774403 22.9234 -8.401397 4.968219 22.79167 -8.548708 4.702802 22.73308 -8.277643 4.714865 22.82553 -8.362469 4.744843 22.71731 -8.194074 4.839671 22.7536 -8.169866 4.911067 22.85483 -8.20619 5.061488 22.80933 -8.473666 4.925283 22.94672 -8.284737 5.096329 22.78481 -8.453087 5.172471 22.66207 -8.047258 5.200886 22.76946 -8.104661 5.213686 22.63605 -7.952507 5.290612 22.68542 -7.880346 5.362561 22.76189 -7.900033 5.559978 22.7525 -8.157373 5.406315 22.83846 -7.963244 5.603915 22.71529 -8.130163 5.494837 22.74426 -8.268974 5.263963 22.84304 -8.144196 5.368773 22.90089 -8.089169 5.524418 22.76737 -8.207458 5.611264 22.8155 -7.56171 5.386137 22.98548 -7.459505 5.592493 22.85563 -7.509682 5.269028 22.75991 -7.373943 5.316645 22.87532 -7.448125 5.287843 22.73429 -7.277564 5.335535 22.74866 -7.204283 5.414351 22.85361 -7.197482 5.444469 23.00639 -7.350045 5.466639 22.96584 -7.25373 5.64398 22.84322 -7.39357 5.621706 22.87091 -7.448833 4.172651 23.10488 -8.36468 4.233874 23.11413 -8.303764 4.29849 23.01527 -8.440471 4.256841 23.02036 -8.463163 4.21482 22.98842 -8.488845 4.065073 23.06772 -8.362607 4.044385 22.93958 -8.253871 4.033581 23.00291 -8.319669 4.101918 22.9107 -8.19342 4.176038 22.96089 -8.194337 4.227497 23.04548 -8.237545 3.821521 23.18814 -8.073459 3.858701 23.2813 -8.124857 3.97778 23.32994 -8.127743 4.05795 23.33201 -8.072295 4.057302 23.22792 -7.988674 4.388535 23.07169 -8.059074 4.45837 23.21133 -8.103454 4.558158 23.25805 -8.07179 4.62468 23.23018 -7.982615 4.612847 23.09587 -7.888897 4.866305 23.1234 -7.855027 4.980174 23.22069 -7.791641 5.020855 23.1257 -7.655734 4.979581 23.01481 -7.587747 4.80781 23.02701 -7.818267 5.033203 23.25282 -7.300537 5.097571 23.27798 -7.174957 5.114899 23.23462 -7.064553 5.059668 23.09323 -6.999617 4.953054 23.10772 -7.292546 4.036516 23.09797 -8.328569 4.145896 23.13668 -8.330751 4.209663 23.14507 -8.270281 4.003222 23.03018 -8.283428 4.203909 23.07191 -8.201683 4.823904 22.99789 -8.328995 4.886425 22.98292 -8.245527 4.863099 22.95995 -8.367704 4.673576 22.85758 -8.322916 4.734129 22.96021 -8.362337 4.872555 22.8862 -8.165425 5.212184 22.88072 -8.107879 5.319072 22.94367 -8.051101 5.357611 22.87693 -7.922669 5.313656 22.79534 -7.858196 5.148966 22.80351 -8.068242 5.39589 23.04038 -7.326389 5.417068 23.00025 -7.230179 5.268413 22.90709 -7.425073 5.33792 23.01935 -7.435743 5.36537 22.88662 -7.174043 4.193285 23.38717 -6.23531 4.02767 23.07795 -5.962794 4.60848 23.05238 -6.257144 4.640441 23.04067 -6.337205 4.519601 22.88295 -6.097338 4.562636 22.98418 -6.154827 4.208863 22.95099 -8.514443 4.269852 22.90629 -8.568515 4.325697 22.88611 -8.606954 4.377473 22.89601 -8.599285 4.402521 22.9048 -8.557761 4.383102 22.94244 -8.496763 4.33823 22.99526 -8.430641 5.028278 22.70807 -8.623291 5.111421 22.66933 -8.666901 5.160479 22.67356 -8.641226 5.190843 22.68507 -8.601539 5.14951 22.72774 -8.52475 5.487009 22.70783 -8.302128 5.609646 22.64037 -8.379507 5.686655 22.63742 -8.398648 5.728327 22.6434 -8.374063 5.742649 22.64048 -8.319674 5.712765 22.64801 -8.2446 5.710714 22.73824 -7.587912 5.797507 22.7135 -7.588876 5.834815 22.6993 -7.553071 5.836445 22.70934 -7.50098 5.77991 22.72502 -7.432121 5.683773 22.79539 -7.379193 4.803686 22.89948 -6.381784 4.8505 22.83617 -6.364032 4.852307 22.73555 -6.301991 4.797553 22.68562 -6.215845 4.717698 22.68959 -6.185745 4.529443 22.79704 -6.099062 1.606421 26.98573 -6.293721 1.810724 27.08319 -6.488307 1.536412 26.7571 -5.636356 1.501495 26.88216 -6.109391 1.855739 26.81434 -5.271904 2.468708 26.89017 -5.290073 2.701834 27.0584 -5.773341 2.652723 26.96332 -5.472302 2.617734 27.12644 -6.127263 2.36064 27.18263 -6.453953 5.636353 22.83699 -7.505356 5.723501 22.79906 -7.445921 5.7777 22.73921 -7.45364 5.719601 22.75033 -7.575084 5.613716 22.84304 -7.50736 5.626554 22.81391 -7.535332 5.657518 22.83216 -7.41071 5.63486 22.85466 -7.455606 5.681186 22.79934 -7.408359 5.86178 22.69306 -7.534549 5.837875 22.69583 -7.588997 5.862992 22.69082 -7.568319 4.629365 22.82204 -6.139772 4.759622 22.74271 -6.192804 4.5812 22.86894 -6.140956 4.606198 22.94293 -6.183658 4.63852 22.98953 -6.249641 4.672413 22.99742 -6.303271 4.810649 22.88263 -6.350217 4.738571 22.71351 -6.189843 4.58918 22.80507 -6.1294 5.627193 22.70299 -8.189739 5.586558 22.72598 -8.196763 5.709125 22.66058 -8.266891 5.556364 22.73883 -8.235088 5.529655 22.72563 -8.279322 5.535226 22.7003 -8.314682 5.622003 22.65917 -8.373052 5.570745 22.70058 -8.319937 5.754127 22.63734 -8.352865 5.719987 22.63845 -8.402857 5.749275 22.63972 -8.389538 5.141948 22.73247 -8.537863 5.041429 22.71553 -8.621085 4.997655 22.77822 -8.550345 4.994343 22.75159 -8.582201 5.094654 22.77526 -8.491963 5.060412 22.79405 -8.498107 5.016003 22.8166 -8.515918 5.026321 22.80266 -8.522351 5.043728 22.79396 -8.5364 4.37559 22.94471 -8.507565 4.277881 22.91657 -8.569269 4.272556 22.99956 -8.481135 4.245309 22.97913 -8.500936 4.24016 22.95286 -8.521814 4.305799 22.99648 -8.466156 4.334664 22.98331 -8.458472 4.256475 22.95568 -8.531108 4.290318 22.93016 -8.573885 4.369576 22.95076 -8.516777 4.336493 22.98097 -8.476895 -2.780677 6.499812 0.679466 -2.685804 5.862812 0.77642 -2.892682 5.780818 1.407011 -2.880662 6.557475 1.211562 -2.651155 6.487648 0.358544 -2.549489 5.895089 0.356717 -2.11813 6.337373 1.641902 -1.983218 5.787051 1.799744 -1.613042 5.744316 1.698563 -1.779199 6.264655 1.597814 -1.406747 5.747087 1.431696 -1.612089 6.368 1.309226 -1.531673 6.053466 0.631182 -1.79322 6.731615 0.679875 -1.903548 5.952667 0.512107 -2.083127 6.647228 0.434664 -2.18735 5.930246 0.4352 -2.401548 6.554327 0.384036 -3.067856 7.419427 0.929521 -2.525256 7.5697 1.403211 -3.079037 7.325179 0.462186 -2.88042 7.309417 0.167344 -2.589723 7.376677 0.09658795 -2.287043 7.47848 0.2219099 -2.011297 7.584918 0.495004 -1.96999 7.624615 1.019091 -2.187658 7.619418 1.329073 -2.749736 5.366253 1.434846 -2.399853 4.841246 1.764309 -2.799115 5.487881 0.622085 -2.60097 5.534198 0.228004 -2.225612 5.532154 0.221606 -1.863365 5.463423 0.406459 -1.61897 5.43111 0.621077 -1.427873 4.811187 1.00381 -2.23526 4.705635 -0.09676396 -2.704798 4.724416 0.02174395 -1.909942 4.665553 0.09855395 -1.614871 4.568033 0.445082 -1.590265 4.182936 0.886997 -2.920138 4.596545 1.081231 -2.786134 4.431063 1.616014 -2.995495 4.648571 0.490639 -1.908618 4.470473 2.170062 -1.353528 4.488209 2.030464 -2.301783 4.143936 2.147735 -1.125726 4.47951 1.663888 -1.110211 4.094611 1.250484 -1.423486 3.683111 1.244881 -2.567933 3.848695 2.114196 -2.899718 8.811648 1.188474 -2.479793 8.867078 1.140713 -3.429472 8.661699 0.679813 -3.481341 8.552883 0.1714709 -3.239328 8.533987 -0.195354 -2.868271 8.55731 -0.351922 -2.524918 8.642017 -0.208118 -2.238719 8.749344 0.175408 -2.242722 8.832692 0.764271 -3.344095 28.53518 -1.136149 -4.329332 27.90205 -1.488643 -4.683365 27.76052 -0.619532 -3.566423 28.54085 -0.527829 -2.658719 28.53175 -1.739994 -3.298625 27.79332 -2.300574 -1.960959 28.48271 -2.014619 -2.427172 27.52208 -2.654564 -3.058807 28.43502 0.428142 -3.941208 27.24012 0.649166 -3.183502 26.97719 0.709523 -2.456606 28.43046 0.658412 -3.39834 28.43461 0.04479598 -4.447071 27.4808 0.317347 -3.88282 24.33706 -3.529685 -3.255812 24.2442 -3.127377 -3.46432 23.82752 -3.013822 -2.612578 23.24582 -1.241246 -2.89689 23.33555 -1.098253 -3.205795 23.38496 -2.137338 -2.999986 23.75441 -2.339535 -2.455477 26.8878 -2.829175 -2.359701 26.73241 -2.619702 -2.625608 26.16267 -2.867061 -2.715464 26.29412 -3.167312 -3.969276 25.78367 0.728289 -3.75672 25.24571 0.479486 -3.347071 25.10406 0.392729 -3.447263 25.71212 0.612888 -4.874975 27.42774 -1.741113 -5.571358 26.79967 -1.907875 -5.793149 26.60544 -0.655965 -5.236527 27.21857 -0.639725 -4.936724 26.8642 0.434296 -5.264023 26.32028 0.467963 -4.575603 26.05528 0.833061 -4.285836 26.4907 0.79883 -4.177672 25.67296 0.79182 -3.981361 25.22051 0.574647 -3.084578 23.57214 -1.202546 -2.961673 22.82022 -1.24979 -3.584997 23.07556 -1.993468 -3.337753 23.46797 -2.104629 -6.525916 24.49315 -1.712361 -6.407445 23.36781 -1.33634 -6.295712 23.5792 -0.05489099 -6.367146 24.61407 -0.276427 -3.737839 23.47495 -2.679956 -4.18864 23.46755 -3.035067 -6.120974 24.37413 -2.423139 -6.056476 23.30272 -1.940821 -5.579293 24.58048 0.831295 -5.453627 23.66353 0.999488 -4.408155 23.68898 1.001538 -4.600329 24.47367 0.941481 -2.996994 23.82858 -0.331396 -3.535186 24.60686 0.176716 -3.108182 22.83528 -0.08839195 -4.662049 24.34206 -3.485264 -4.93726 23.45158 -2.983881 -5.540304 23.34696 -2.552626 -5.57816 24.33796 -3.00124 -2.373467 23.26701 -0.640434 -2.797788 23.50169 -0.46131 -6.177624 22.50228 -1.192718 -5.859558 21.2577 -1.010678 -5.753437 21.30303 0.2425799 -6.129042 22.55795 0.102116 -5.830646 22.55131 -1.751265 -5.673029 22.02278 -1.639439 -5.245996 22.67391 1.10208 -4.926337 21.42643 1.131159 -3.86049 21.63056 1.086905 -4.176679 22.79155 1.060236 -2.947232 21.74706 -0.001281976 -2.73261 21.75189 -1.216861 -3.359528 21.698 -2.024471 -3.976744 22.91374 -2.359499 -3.830783 22.01078 -2.336094 -4.109046 21.57205 -2.38404 -4.339482 22.82249 -2.441223 -4.912233 22.71816 -2.381114 -4.854549 22.20582 -2.197201 -2.691869 23.67939 -0.12222 -2.273217 23.43209 -0.308407 -2.172061 27.24679 -2.450623 -1.700158 28.34706 -2.028774 -2.51664 26.77267 0.870844 -1.867929 28.4491 0.879966 -2.877159 24.9771 0.394475 -2.838751 25.55568 0.600908 -3.735688 27.37785 -2.627547 -3.166747 27.26007 -2.917271 -3.610569 26.65683 -3.400614 -4.382531 26.78995 -3.061832 -4.355834 27.44584 -2.230935 -5.034173 26.82798 -2.53607 -3.37815 26.27219 0.699042 -2.716215 26.07817 0.723751 -3.900116 27.67959 -2.143397 -3.088375 27.51492 -2.621359 -3.449057 27.64752 -2.415548 -2.646119 27.06179 -3.014197 -2.420767 27.21381 -2.689017 -5.336875 22.63689 -2.204738 -3.12193 24.54005 0.248457 -2.569113 23.9168 0.07479399 -2.79625 24.44166 0.270292 -3.356434 24.52294 0.203918 -4.703753 25.44022 0.880037 -5.49792 25.63273 0.628523 -6.1084 25.87991 -2.049775 -6.204197 25.79082 -0.570169 -5.693667 25.81132 -2.698434 -4.232511 25.5389 -3.704246 -5.104517 25.68591 -3.311337 -2.960348 25.11974 -2.889956 -3.152403 25.23462 -3.520131 -2.182927 23.74036 0.07132899 -2.141456 24.22474 0.233189 -1.513986 26.5495 0.808863 -1.023962 28.38046 0.780915 -1.750763 25.82772 0.66205 -1.941233 25.28166 0.510317 -2.099406 24.71496 0.310152 -5.458987 20.07268 -0.879148 -5.323792 20.13115 0.292988 -5.080743 21.40555 -1.906989 -4.798268 20.16367 -1.73173 -4.564086 20.24537 1.131612 -3.459327 20.34791 1.127214 -2.74322 20.47923 0.137853 -2.619435 20.52573 -1.042275 -3.239533 20.40627 -1.838773 -3.924361 20.28309 -2.107775 -4.482273 17.01739 -0.54065 -4.351484 15.89913 -0.04101496 -4.456505 17.07664 0.04611897 -3.36063 16.58816 0.748386 -3.263449 15.86987 0.753278 -2.869558 15.90058 0.72893 -2.9124 16.652 0.657635 -2.584965 15.93414 0.47469 -2.601767 16.65166 0.406071 -2.397263 17.31357 0.165973 -2.360332 16.09772 -0.001296997 -2.508445 16.09205 -0.756083 -2.57106 17.23595 -0.674214 -3.134338 15.89211 -1.299687 -3.035371 17.18 -1.256189 -3.540804 17.04845 -1.472819 -3.807304 15.93898 0.585671 -3.769192 17.21192 0.709803 -3.82585 15.2198 0.420464 -3.805452 14.26821 0.615428 -3.032035 14.26073 0.578369 -3.050396 15.24268 0.442646 -4.501297 14.90914 0.03274095 -4.584058 14.1299 0.01696896 -4.575301 14.78579 -0.81075 -4.734362 13.95851 -0.842901 -4.24763 14.7578 -1.372575 -4.321549 13.92594 -1.520303 -3.679941 14.75282 -1.687836 -3.671307 13.77922 -1.870148 -3.104757 14.87518 -1.380883 -3.026095 13.73086 -1.53471 -2.688633 15.11512 -0.724785 -2.482869 13.89136 -0.859902 -2.596087 15.27771 0.005169987 -2.617734 14.09069 -0.01162499 -3.908267 13.3407 0.711843 -3.84281 12.49703 0.782171 -3.032931 12.39356 0.694215 -3.061232 13.21799 0.631758 -4.665415 13.1909 0.081604 -4.609717 12.38191 0.151907 -4.853899 13.08356 -0.735548 -4.812565 12.25812 -0.696183 -4.409497 13.0963 -1.504319 -4.380336 12.26724 -1.410589 -3.641883 12.92163 -1.870399 -3.564968 12.14067 -1.783271 -2.976553 12.67482 -1.589881 -2.954909 11.95441 -1.521809 -2.394725 12.73427 -0.911343 -2.397823 12.04044 -0.840958 -2.6477 12.993 0.03220599 -2.620739 12.22983 0.104088 -3.67263 11.65165 0.836989 -3.43909 10.67783 0.93632 -2.81758 10.67295 0.907448 -2.941271 11.5827 0.800424 -4.451923 11.56095 0.240019 -4.111425 10.56912 0.350454 -4.633817 11.45529 -0.587604 -4.274714 10.42703 -0.395253 -4.248314 11.45716 -1.234952 -3.92749 10.42013 -0.930217 -3.447114 11.37713 -1.598949 -3.282642 10.36854 -1.245314 -2.916358 11.24843 -1.373735 -2.810854 10.34464 -1.028184 -2.403656 11.35585 -0.71006 -2.407122 10.45578 -0.42444 -2.568305 11.4664 0.204566 -2.498436 10.57631 0.37665 -3.19193 9.707748 1.05056 -2.665643 9.768756 1.026728 -3.747954 9.559879 0.47451 -3.851808 9.430456 -0.106119 -3.553225 9.40708 -0.567412 -3.079145 9.38478 -0.821887 -2.673816 9.454538 -0.650523 -2.356614 9.564728 -0.129447 -2.4003 9.692089 0.559814 -4.971002 19.01772 0.250169 -4.932296 18.85164 0.2376019 -4.156467 18.93762 1.089234 -4.201674 19.10778 1.101621 -5.07085 18.96564 -0.733648 -5.024417 18.79712 -0.724978 -4.521919 18.99762 -1.547718 -4.487076 18.82459 -1.530553 -3.773043 19.08072 -1.863316 -3.754398 18.90737 -1.833513 -3.153081 19.18924 -1.682491 -3.132512 19.02002 -1.661033 -2.526064 19.33068 -0.884284 -2.503206 19.15856 -0.874421 -2.513702 19.3139 0.22377 -2.474457 19.13654 0.229346 -3.168638 19.20557 1.059126 -3.127697 19.03094 1.060933 -3.305282 15.58136 0.618467 -2.9252 15.49689 0.627316 -4.086039 16.9968 -1.156318 -2.649562 15.6158 0.38874 -2.931817 17.28929 0.714999 -4.648009 18.11965 0.130729 -3.908302 18.16643 0.90749 -4.695817 18.05943 -0.648445 -4.259542 18.05739 -1.342687 -3.665332 18.12291 -1.559873 -3.08985 18.23973 -1.440837 -2.507756 18.34718 -0.777573 -2.405117 18.29779 0.2071329 -2.989652 18.2168 0.947153 -4.687865 19.60655 -1.677834 -5.312954 19.54387 -0.819314 -3.848282 19.71085 -2.036361 -3.192971 19.82764 -1.828224 -2.539382 19.97034 -0.982152 -2.598699 19.94103 0.1943629 -3.306385 19.81736 1.132208 -4.404428 19.70847 1.161664 -5.189648 19.60196 0.293358 -2.990303 24.3461 -2.667689 -3.478677 25.36232 -3.681209 -2.998358 26.47511 -3.39131 -5.150858 21.78054 -1.97405 -2.982969 24.02083 -2.479351 -2.25513 27.07398 -2.521862 -3.206903 19.30209 1.023559 -4.217222 19.2099 1.069653 -3.212868 19.41164 1.078977 -4.26578 19.30908 1.125633 -5.040307 19.21735 0.267518 -4.96536 19.12661 0.241419 -5.148222 19.16222 -0.757046 -5.066397 19.07544 -0.729993 -4.574974 19.19884 -1.587104 -4.523518 19.10623 -1.526603 -3.796816 19.28334 -1.917632 -3.783922 19.18397 -1.839903 -3.170891 19.39303 -1.731637 -3.180821 19.28813 -1.661009 -2.534413 19.53861 -0.910755 -2.569988 19.42541 -0.87702 -2.543784 19.52151 0.217629 -2.56728 19.40695 0.205117 -4.043046 7.391231 -8.96756 -3.546505 7.241259 -8.944656 -3.639426 6.594616 -9.410224 -4.231637 6.821105 -9.296291 -4.372532 7.481503 -8.924865 -4.63975 6.973351 -9.245693 -3.557657 6.614712 -8.388422 -3.744122 6.451409 -8.150827 -3.806254 6.09649 -8.202331 -3.585816 6.218768 -8.497238 -4.035951 6.562391 -8.017136 -4.123251 6.089437 -8.087179 -4.393412 7.135917 -8.064195 -4.756697 6.565979 -8.268606 -4.499165 7.305665 -8.373416 -4.743066 6.671487 -8.652917 -4.434118 7.403849 -8.683279 -4.701739 6.809591 -8.909866 -3.400204 8.058422 -8.576722 -3.188359 7.693596 -7.993494 -3.815716 8.228388 -8.711688 -4.15379 8.275781 -8.613234 -4.316282 8.22673 -8.357893 -4.308794 8.098436 -8.042728 -4.165186 7.915123 -7.724202 -3.729623 7.66731 -7.586276 -3.377438 7.610623 -7.710078 -3.580768 5.50922 -9.171305 -3.741206 6.162546 -9.449234 -4.451674 6.565032 -9.655232 -4.866464 6.677665 -9.55218 -5.005848 6.530799 -9.22648 -4.979053 6.255443 -8.892938 -4.861633 6.070055 -8.620709 -4.608706 5.3663 -8.50024 -5.188921 5.981333 -10.05339 -5.452434 5.807959 -9.659599 -5.367552 5.574129 -9.303324 -5.11986 5.288708 -8.927892 -4.71224 4.829667 -8.8435 -3.654176 5.241318 -9.709618 -4.127179 5.573296 -9.974313 -4.667553 5.853384 -10.21621 -3.673002 4.884488 -8.206905 -3.361516 4.988126 -8.675776 -3.294249 4.761537 -9.144127 -4.09606 4.874063 -8.108804 -4.518911 4.57302 -8.310435 -4.457324 4.25313 -8.709348 -3.281468 4.54016 -9.499011 -2.792324 8.842138 -7.543655 -2.994639 8.712117 -7.191289 -3.041064 9.23885 -8.125906 -3.481752 9.445469 -8.312749 -3.90059 9.508759 -8.194739 -4.184323 9.434765 -7.917714 -4.183486 9.263438 -7.577222 -3.949166 9.011972 -7.229503 -3.424665 8.771342 -7.088282 0.218743 28.41292 -1.993358 0.655061 28.35979 -1.526446 0.883555 26.72896 -1.864746 0.252384 27.01549 -2.493845 -0.664575 28.44869 -2.21586 -0.978644 27.27485 -2.79593 -1.396842 28.46744 -2.150594 -1.954541 27.40825 -2.744415 0.637732 28.28022 -0.462138 0.209106 28.33085 0.032709 -0.01900094 26.29753 0.02122497 0.664944 26.28445 -0.376254 0.809182 28.32993 -0.982243 1.00294 26.39894 -0.915517 -3.124108 24.08757 -3.390496 -3.15272 23.64373 -2.787632 -3.237556 24.24121 -3.129077 -2.959277 23.33016 -2.150904 -2.29889 23.09135 -1.155856 -2.314623 26.85091 -2.845385 -2.642259 26.26679 -3.140351 0.011204 24.6496 -0.1728619 -0.503309 24.86328 -0.02060997 -0.877376 24.32118 -0.115451 -0.436386 24.22167 -0.24513 0.195303 26.31612 -2.875484 0.884532 25.88357 -2.078696 0.883234 25.14039 -2.353506 0.1609899 25.54585 -3.245597 1.058176 25.47331 -1.000495 0.601946 25.27279 -0.334195 0.656836 24.6564 -0.443109 1.054278 24.78734 -1.157002 -0.18419 24.05715 -0.296224 0.187141 24.42406 -0.232043 -2.090154 22.95322 -1.195166 -2.734252 22.97338 -1.855967 -2.400156 22.26581 -1.891321 -2.013247 21.69442 -1.093121 -0.323862 23.6973 -3.807743 0.744278 23.47335 -2.931996 0.685734 22.59272 -3.209179 -0.410149 22.73634 -3.883641 -2.924658 22.98712 -2.906426 -2.93585 22.99765 -2.426786 -1.110866 23.70731 -3.885543 -1.099519 22.743 -3.843379 1.21223 23.09142 -1.735858 0.710912 22.90643 -0.849065 0.718309 22.0951 -1.088113 1.229046 22.2411 -2.032638 -0.729793 23.50936 -0.36564 -1.359467 22.83185 -0.483704 -0.914022 21.40508 -0.721961 -2.629922 23.90342 -3.652657 -1.822784 23.75963 -3.836869 -1.839094 22.81702 -3.661235 -2.462852 22.9423 -3.393687 -1.845109 23.13925 -0.620597 -0.54276 21.93059 -3.967376 0.608851 21.64422 -3.438656 0.438635 20.40907 -3.603224 -0.670535 20.70701 -4.127036 -1.22169 21.4904 -3.871322 -1.180343 22.01867 -3.84284 1.15601 21.29702 -2.296948 0.669951 21.16706 -1.310536 0.507953 19.98061 -1.547634 0.947468 20.08059 -2.565331 -0.874934 20.14747 -1.002144 -2.051095 20.38252 -1.24173 -2.541523 20.68182 -2.084921 -2.528458 22.18681 -2.393924 -2.423455 22.13833 -2.742032 -2.578056 20.83543 -2.907542 -2.612218 21.18497 -2.495758 -2.111185 22.10746 -3.224381 -2.035624 21.57323 -3.274498 -1.760835 23.39356 -0.327778 -0.19743 28.37728 0.476677 -0.572489 26.3447 0.451805 -1.064548 25.03733 0.229971 -1.319773 24.47635 0.08442097 -1.041936 26.74925 -3.193464 -1.181009 26.03616 -3.701652 -1.944769 26.24952 -3.686579 -1.650418 26.89939 -3.221418 -0.39555 26.53794 -3.08856 -0.476342 25.78977 -3.522749 -0.246775 25.469 0.01405495 -0.844038 25.59132 0.322241 -0.55125 26.91007 -2.866301 -1.006641 27.08186 -2.940409 -1.445701 27.12075 -2.96546 -2.143131 27.14204 -2.741753 -2.174752 26.94593 -3.0912 -1.778612 22.07906 -3.546318 -1.155087 23.94046 -0.17287 -1.47498 24.04198 -0.008668959 -1.81829 23.71359 -0.114221 -0.932852 23.73768 -0.306413 0.67949 23.95173 -0.572081 1.130432 24.06553 -1.329491 0.825174 24.41155 -2.628408 -0.076523 24.7246 -3.596118 -0.727081 24.82986 -3.843426 -1.498667 24.94472 -4.014555 -2.338303 25.10892 -3.94628 -3.103417 25.18919 -3.392801 0.196213 19.22531 -3.712212 -0.837854 19.49066 -4.209448 -1.774047 20.83384 -3.678304 -1.858073 19.57588 -3.858913 0.294105 18.6551 -1.734448 0.699915 18.89936 -2.750801 -0.879448 18.80287 -1.342991 -2.005228 19.09134 -1.585827 -2.515609 19.35377 -2.425842 -2.518544 19.50864 -3.15743 -1.195898 16.32685 -4.409607 -0.666692 16.21915 -4.203215 -0.922522 15.1751 -4.584147 -0.470203 15.15539 -3.230649 -0.713032 15.08128 -2.845124 -0.837959 14.26782 -3.197458 -0.662134 14.40306 -3.524554 -1.057914 15.04106 -2.646959 -1.163331 14.29408 -2.995671 -1.266718 15.68377 -2.262992 -1.990676 15.92035 -2.69269 -2.239232 14.90038 -3.121964 -1.623621 14.56203 -2.815541 -2.362683 16.18359 -3.288648 -2.522581 15.15323 -3.877266 -2.382346 16.29708 -3.830265 -0.281757 15.92681 -3.347002 -0.566163 14.77339 -3.956591 -0.922531 14.27301 -4.436491 -1.232387 13.93424 -3.818765 -1.455024 13.13887 -4.394642 -1.078838 13.47318 -4.973039 -1.054031 14.50241 -5.213127 -1.28835 14.00687 -5.755833 -1.781874 14.80931 -5.502028 -2.008676 14.36802 -6.124169 -2.411566 14.91107 -5.364875 -2.767926 14.48249 -5.935765 -2.916428 14.77572 -4.974945 -3.384144 14.24826 -5.57111 -2.855877 14.49881 -4.385266 -3.390287 13.77164 -5.037096 -2.398322 14.21866 -3.793225 -3.009036 13.33073 -4.411205 -1.772797 13.9706 -3.500918 -2.181425 13.1225 -4.26732 -1.261202 12.8025 -5.610245 -1.741113 12.3715 -5.050146 -1.975731 11.73457 -5.528871 -1.511275 12.13136 -6.070324 -1.514147 13.35449 -6.390018 -1.746992 12.71751 -6.833688 -2.157206 13.77123 -6.735156 -2.414403 13.15026 -7.203079 -2.990362 13.95672 -6.506049 -3.198692 13.31988 -6.976792 -3.683515 13.66525 -6.073237 -3.903906 13.04542 -6.480498 -3.81543 13.05475 -5.662496 -4.009581 12.5061 -6.081306 -3.481342 12.49985 -5.071858 -3.652838 11.97176 -5.492848 -2.50017 12.32742 -4.966065 -2.704447 11.73056 -5.404645 -1.819252 11.41857 -6.451836 -2.192544 11.05397 -5.938867 -2.452998 10.28588 -6.382415 -2.157685 10.56017 -6.854291 -2.013038 12.0143 -7.203345 -2.395426 11.0916 -7.533287 -2.666531 12.44488 -7.541691 -2.999861 11.44811 -7.866011 -3.376811 12.5997 -7.345101 -3.602023 11.55816 -7.68643 -4.054446 12.36127 -6.831143 -4.161981 11.38635 -7.268678 -4.136872 11.91244 -6.463892 -4.19077 11.041 -6.883832 -3.766369 11.41675 -5.897791 -3.821243 10.62547 -6.408315 -2.893108 11.10515 -5.816226 -3.069476 10.34281 -6.279383 -2.487417 9.690011 -7.240736 -2.714456 9.503269 -6.799848 -2.781044 10.13657 -7.853198 -3.267343 10.3902 -8.105031 -3.791617 10.4729 -7.961105 -4.217062 10.36897 -7.647761 -4.224623 10.14409 -7.263955 -3.887074 9.809149 -6.868582 -3.246861 9.566164 -6.715455 -0.09275895 18.11518 -3.864171 0.423397 17.74985 -2.896379 0.377949 17.58078 -2.925163 -0.136182 17.9539 -3.897898 -0.969316 18.33169 -4.264855 -0.996365 18.16102 -4.285907 -1.915438 18.38146 -4.01057 -1.930456 18.2085 -4.040648 -2.471801 18.2983 -3.416534 -2.46868 18.12647 -3.456635 -2.521326 18.16027 -2.779699 -2.525737 17.99286 -2.818981 -1.999662 17.90176 -1.93557 -2.015252 17.73208 -1.978106 -0.981982 17.61359 -1.59648 -1.007738 17.43335 -1.62809 0.01806497 17.51748 -1.959198 -0.01213794 17.34025 -1.989386 -1.035196 13.99042 -3.517855 -0.855144 14.22971 -3.766854 -1.904677 16.34273 -4.243211 -1.313943 14.079 -3.266022 -0.577042 15.71073 -2.587004 -0.415835 17.21858 -3.962032 0.04159098 16.82921 -3.056411 -1.122964 17.36573 -4.256887 -1.918384 17.39292 -4.074828 -2.325876 17.31633 -3.590277 -2.413866 17.20955 -3.007124 -2.001171 16.95589 -2.256857 -1.132239 16.62509 -1.889279 -0.247422 16.55745 -2.213424 -0.895629 18.95228 -4.272916 -1.909372 19.02017 -3.960797 -2.539111 18.94132 -3.293303 -2.577828 18.79727 -2.610971 -2.025756 18.52634 -1.723985 -0.921731 18.235 -1.428118 0.19411 18.11334 -1.815469 0.614839 18.35154 -2.819576 0.09030497 18.70469 -3.809272 -2.903946 25.19913 -3.641277 -2.463616 26.33351 -3.440017 -1.762939 21.20623 -3.61404 0.410155 17.85675 -2.880567 0.008641958 17.62869 -1.966511 0.489682 17.95009 -2.867262 0.07226896 17.71952 -1.91207 -0.09120398 18.21504 -3.819687 -0.02990597 18.31498 -3.841095 -0.955699 18.42967 -4.217409 -0.941125 18.54044 -4.262507 -1.883957 18.47614 -3.964155 -1.911024 18.59116 -3.991642 -2.435701 18.39076 -3.379836 -2.492638 18.5044 -3.376517 -2.481485 18.255 -2.759659 -2.54003 18.36555 -2.731655 -1.967895 18.00197 -1.93499 -2.001549 18.10432 -1.869629 -0.971072 17.72231 -1.612438 -0.957727 17.81919 -1.542584 -9.899973 24.98253 -2.414458 -10.04171 24.73009 -2.554914 -10.10362 24.63835 -2.194739 -9.898968 24.94968 -2.092399 -9.680732 24.44211 -2.684797 -9.475042 24.65455 -2.551362 -9.367166 24.56422 -2.34746 -9.662254 24.30883 -2.428863 -9.82046 24.60339 -2.717286 -9.716156 24.8217 -2.564463 -11.23199 23.6873 -2.527586 -11.24046 23.5589 -2.356836 -10.95602 23.88547 -2.308772 -11.11859 23.80286 -2.500442 -10.7169 23.54456 -3.066568 -10.83085 23.67707 -3.084661 -10.67416 23.8234 -3.07339 -10.57423 23.67014 -3.067183 -10.83495 23.37421 -2.844252 -10.6257 23.5542 -2.804103 -10.72341 23.41165 -2.670253 -10.86216 23.29631 -2.691807 -10.53525 23.21964 -1.833557 -10.65275 23.13307 -1.830263 -10.54618 23.03273 -2.029034 -10.47096 23.08708 -2.057906 -10.60695 23.20985 -2.252551 -10.59222 23.06714 -2.142133 -10.65625 22.99276 -2.149182 -10.74695 23.06247 -2.268364 -9.27776 24.45584 -2.109543 -9.219252 24.34253 -1.944252 -9.611505 24.1082 -2.117595 -9.65041 24.21822 -2.256264 -10.033 24.47361 -1.865003 -9.737821 24.18719 -1.614944 -9.516963 24.54794 -1.55313 -9.802692 24.81725 -1.768636 -10.90459 23.17976 -1.732186 -10.80789 23.27062 -1.707579 -10.94285 23.37061 -1.847426 -11.01966 23.27558 -1.825792 -10.80558 23.15661 -2.394054 -10.858 23.24008 -2.548633 -10.61864 23.50796 -2.511746 -10.65651 23.29015 -2.394298 -11.17995 23.46409 -2.159457 -11.12772 23.37072 -1.97454 -10.99403 23.53566 -1.955274 -11.08334 23.57753 -2.146835 -10.53336 24.06075 -1.893792 -10.23445 23.7668 -1.631013 -10.61183 24.25162 -2.252851 -10.56141 24.36733 -2.645228 -10.05609 24.10571 -2.949449 -10.16489 24.27324 -2.95748 -10.0091 24.43453 -2.871412 -9.88366 24.25755 -2.868667 -10.15202 23.97474 -2.748567 -10.22829 23.84436 -2.471317 -10.2358 23.72589 -2.316638 -10.16706 23.59025 -2.195523 -9.399045 23.33362 -1.949356 -9.704348 22.94434 -2.017769 -9.794279 22.95418 -2.137684 -9.504324 23.37631 -2.113819 -9.308176 23.77184 -2.034687 -9.327919 23.75696 -1.891519 -9.972015 23.52328 -1.618928 -9.633579 23.8691 -1.625995 -9.526892 23.87226 -2.128062 -10.00938 23.43695 -2.234215 -10.34569 23.16765 -2.001744 -10.21177 23.15034 -2.100271 -10.24122 23.2341 -1.84842 -10.43149 23.28124 -1.809953 -9.287631 24.12175 -1.95767 -9.434991 24.0858 -1.657174 -9.354992 24.36617 -1.739986 -9.325809 24.13492 -1.802149 -10.16719 23.27177 -1.662687 -9.928592 23.04201 -1.697413 -9.721756 23.29887 -1.706898 -9.75936 23.33107 -2.200181 -10.86431 22.24917 -2.069777 -10.86206 22.16322 -2.065873 -10.95139 22.13666 -1.957951 -10.93634 22.21781 -1.957843 -9.387406 23.4894 -1.742479 -9.345587 23.73413 -1.732747 -10.44645 23.77305 -3.056963 -10.21631 23.96446 -2.99697 -10.42842 23.72082 -2.787966 -11.16269 23.74965 -2.741821 -11.01213 23.9148 -2.717227 -11.02653 23.86791 -2.851372 -11.08873 23.80767 -2.89347 -10.14786 24.60376 -2.78466 -10.32118 24.41208 -2.897697 -9.253317 24.99947 -2.527918 -9.108294 24.92022 -2.343195 -9.711034 25.27541 -2.067602 -9.701272 25.28808 -2.384605 -9.481817 25.11508 -2.537683 -8.97416 24.80946 -2.070956 -8.968598 24.7889 -1.824932 -9.10078 24.88151 -1.613965 -9.261387 24.98542 -1.570336 -9.555183 25.1643 -1.770312 -10.25322 23.01151 -2.095326 -10.30072 23.05303 -1.90135 -10.2461 23.02679 -1.781732 -10.0627 22.90631 -1.785262 -9.910714 22.76071 -1.997337 -9.974631 22.80557 -2.132118 -9.974963 23.07903 -2.179969 -10.11051 22.92082 -2.175899 -10.83688 23.72674 -1.933995 -10.53593 23.47298 -1.673531 -10.85261 24.09103 -2.683974 -10.49994 24.25439 -2.962379 -10.32795 24.13356 -3.008571 -10.52874 23.36596 -2.218681 -9.743035 22.96671 -1.80326 -9.912909 22.80727 -1.881134 -10.81285 22.09299 -2.088239 -10.73807 22.05555 -2.079885 -10.76504 21.98067 -1.966713 -10.87386 22.02396 -1.967514 -11.28229 23.19601 -2.07774 -11.21007 23.20828 -2.011064 -11.3437 23.40727 -2.424612 -11.38611 23.32999 -2.403864 -11.23566 23.66915 -2.935664 -11.26295 23.62207 -2.801654 -10.94154 23.39844 -3.084323 -11.02403 23.54165 -3.097161 -11.07925 23.15613 -2.877448 -11.02736 23.26599 -2.928517 -11.09159 23.08639 -2.764942 -11.06737 22.84201 -2.306321 -11.0952 22.88144 -2.464127 -10.90889 22.7864 -2.146326 -10.98624 22.85009 -2.250999 -10.73122 23.0538 -1.845079 -10.91529 22.89098 -1.864496 -10.8533 22.76436 -2.029134 -10.60934 22.96842 -2.032786 -11.13699 23.14611 -1.843842 -11.02801 23.048 -1.758383 -11.29317 23.57782 -2.722321 -10.95617 23.32575 -3.005903 -10.75755 23.47009 -2.962507 -11.3587 23.54411 -2.543164 -11.09729 23.04491 -2.620438 -11.18456 22.95314 -2.558583 -11.36597 23.31423 -2.206937 -12.17342 22.91449 -3.61909 -12.23639 22.95332 -3.618003 -12.20679 22.97663 -3.647266 -12.16943 22.94953 -3.638498 -11.17519 23.41426 -2.867895 -11.21332 23.35504 -2.83857 -12.76516 22.35663 -3.121363 -12.7115 22.33276 -3.116915 -12.70695 22.3062 -3.09179 -12.77639 22.33332 -3.076695 -11.29919 23.14955 -2.48005 -11.22379 23.19873 -2.485593 -12.87998 21.85937 -2.384657 -12.79746 21.83807 -2.416337 -12.78446 21.84013 -2.367758 -12.8502 21.85301 -2.334304 -11.19103 22.98341 -2.176743 -11.12679 23.00784 -2.152526 -12.33141 21.77426 -1.881397 -12.2731 21.76053 -1.899835 -12.24931 21.73717 -1.879716 -12.326 21.74493 -1.836115 -11.07638 23.26411 -3.06781 -11.06611 23.33601 -3.132515 -11.1334 23.47956 -3.144449 -11.13526 23.66324 -3.059245 -11.23157 23.58694 -3.090281 -11.33704 23.59038 -2.991476 -11.30062 23.35728 -2.922911 -11.15917 23.22796 -3.002122 -11.40706 23.44924 -2.719759 -11.4675 23.44791 -2.585024 -11.29953 23.131 -2.517592 -11.19652 22.97374 -2.676679 -11.18686 23.01467 -2.78856 -11.18848 23.07639 -2.89368 -11.29723 23.28079 -2.875127 -11.45671 23.22779 -2.230459 -11.37854 23.10346 -2.110587 -11.24168 22.91934 -2.170249 -11.13696 22.7866 -2.323225 -11.16144 22.82118 -2.468734 -11.25047 22.89832 -2.552523 -11.36923 23.09065 -2.498186 -11.29307 23.08671 -2.001898 -11.22106 23.04958 -1.84754 -11.00025 22.80906 -1.86633 -10.93918 22.68824 -2.023557 -10.99264 22.70679 -2.134956 -11.07004 22.7641 -2.235188 -11.20835 22.94164 -2.158872 -12.72137 22.00548 -2.318493 -12.83962 21.9643 -2.349912 -12.81952 21.9329 -2.308794 -12.73971 21.97442 -2.301997 -12.60107 21.94444 -2.519081 -12.72798 21.88925 -2.485466 -12.81788 21.9408 -2.465691 -12.67066 22.01438 -2.494769 -12.54957 21.88914 -2.34861 -12.69742 21.84659 -2.358999 -12.68701 21.85165 -2.437471 -12.55669 21.8921 -2.451659 -12.58878 21.9277 -2.29248 -12.75348 21.87607 -2.302967 -10.43075 22.54144 -2.196913 -10.61447 22.33396 -2.181272 -10.75189 22.43478 -2.114477 -10.55937 22.64252 -2.115826 -10.29373 22.42676 -2.159879 -10.50759 22.22803 -2.143034 -10.2545 22.3883 -2.039233 -10.47841 22.15277 -2.030209 -10.82341 22.07078 -1.861584 -10.6415 22.17638 -1.883421 -10.68395 22.22416 -1.86096 -10.8022 22.26258 -1.861539 -10.89704 22.14267 -1.869257 -10.74592 22.26012 -1.861337 -10.793 22.44235 -1.966472 -10.60117 22.67076 -1.940491 -10.49303 22.71298 -1.820332 -10.56381 22.63402 -1.840256 -10.44066 22.49761 -1.841412 -10.35833 22.58414 -1.817207 -10.29015 22.41596 -1.942869 -10.21646 22.49459 -1.925709 -10.28882 22.68889 -2.18171 -10.16704 22.5928 -2.149058 -10.18024 22.46905 -2.027131 -10.15298 22.5788 -1.918376 -10.27244 22.68549 -1.834416 -10.42025 22.78828 -1.824852 -10.52746 22.75388 -1.926026 -10.42347 22.79796 -2.101208 -10.72922 22.19155 -2.145773 -10.69295 22.00232 -1.986445 -10.67814 22.08712 -2.106531 -10.87459 22.01426 -1.868379 -10.91767 21.96564 -1.877568 -10.87382 21.94583 -1.887383 -10.82023 21.97256 -1.887095 -10.92882 22.07012 -1.877551 -10.94759 22.01304 -1.882825 -11.61933 22.58109 -1.840589 -11.67708 22.60846 -1.969624 -11.60358 22.50808 -2.08711 -11.48671 22.37913 -2.141561 -11.41589 22.32927 -2.065507 -11.4335 22.39751 -1.848566 -11.37694 22.31237 -1.973858 -11.99908 22.70443 -2.280198 -11.90225 22.57424 -2.211944 -11.89515 22.60045 -2.505869 -11.81621 22.48168 -2.542337 -11.73519 22.40296 -2.342181 -11.74647 22.41946 -2.467479 -11.80728 22.47347 -2.250957 -11.92707 23.03918 -2.882905 -11.97565 23.02798 -2.77428 -11.73961 22.78552 -2.97909 -11.83074 22.93018 -2.972064 -11.72272 22.72941 -2.901234 -11.7571 22.70285 -2.809248 -11.85582 22.80535 -2.710114 -11.55059 23.39436 -3.290141 -11.64513 23.38352 -3.207903 -11.42555 23.20413 -3.322729 -11.47669 23.31549 -3.331096 -11.4301 23.13247 -3.266527 -11.50179 23.11705 -3.202827 -11.60248 23.20732 -3.140462 -12.8786 21.89316 -2.429497 -12.81017 21.86703 -2.442729 -12.74773 22.03745 -2.395059 -12.73352 22.03025 -2.351785 -11.4634 23.21987 -2.388541 -11.97168 22.67309 -2.442634 -10.66562 23.39493 -1.680595 -11.11934 22.97426 -1.784872 -11.53653 22.51546 -1.784759 -12.24317 21.72989 -1.843546 -12.28003 21.73734 -1.800248 -10.53686 23.9451 -3.060832 -10.71155 23.50643 -2.919195 -10.67834 24.07729 -3.008655 -11.43389 23.34197 -2.497583 -11.94959 22.94885 -2.691701 -12.7223 22.30134 -3.05697 -12.76792 22.31929 -3.028197 -10.82598 23.93763 -3.02269 -10.97624 23.79116 -3.031037 -11.38844 23.52876 -2.901665 -11.67058 23.32685 -3.132905 -12.18307 22.91146 -3.580126 -12.22608 22.93656 -3.573824 -12.60109 22.35425 -3.145402 -12.66117 22.40953 -3.152331 -12.56205 22.30814 -3.094393 -12.621 22.31071 -3.011109 -12.67858 22.34086 -2.975471 -12.85159 22.35527 -3.067598 -12.83969 22.34253 -3.040122 -12.81363 22.35437 -3.028403 -12.82252 22.37909 -3.05813 -12.81244 22.38656 -3.094801 -12.83739 22.36547 -3.095636 -12.46779 22.34058 -3.080876 -12.4982 22.39827 -3.145061 -12.56004 22.45328 -3.150227 -12.68444 22.4759 -3.07797 -12.73693 22.44312 -3.088957 -12.74695 22.43119 -3.038241 -12.67144 22.48882 -3.052064 -12.73539 22.39996 -2.995734 -12.68231 22.43957 -2.98018 -12.67203 22.461 -2.990549 -12.56563 22.37346 -2.935805 -12.50711 22.33677 -2.985391 -12.30138 22.97882 -3.618811 -12.29297 22.97224 -3.588926 -12.27197 22.98211 -3.568696 -12.27831 23.00177 -3.603092 -12.25485 23.00984 -3.634608 -12.2794 22.99029 -3.638602 -12.09237 22.95764 -3.638474 -12.13777 23.00768 -3.649555 -12.0737 22.9011 -3.595759 -12.12842 22.91253 -3.538594 -12.16698 22.9395 -3.52127 -11.98062 22.91773 -3.555687 -11.99681 22.98677 -3.609802 -12.03245 23.04598 -3.624489 -12.13495 23.07662 -3.560646 -12.21889 23.03738 -3.569853 -12.14379 23.07236 -3.53029 -12.15429 23.05343 -3.511185 -12.08577 22.97239 -3.461884 -12.03213 22.93782 -3.490772 -12.89455 21.92686 -2.350857 -12.87792 21.9034 -2.319443 -12.84866 21.97233 -2.404891 -12.90294 21.9355 -2.392135 -12.2854 21.85253 -1.810352 -12.34831 21.78202 -1.807069 -12.3256 21.75722 -1.780748 -12.25782 21.82244 -1.779908 -12.30557 21.86354 -1.855254 -12.36393 21.78808 -1.842878 -12.2128 21.77502 -1.96034 -12.27834 21.82021 -1.935398 -12.15681 21.74015 -1.925259 -12.15687 21.7282 -1.860719 -12.18703 21.75645 -1.79778 -12.02803 21.78976 -1.97484 -12.0965 21.83883 -2.02355 -12.16436 21.90841 -1.994811 -12.26769 21.90842 -1.859306 -12.17693 21.91777 -1.792124 -12.19092 21.94731 -1.821072 -12.05785 21.80419 -1.821754 -12.01277 21.76069 -1.893769 -12.29496 22.27945 -2.510668 -12.03992 22.48224 -2.508236 -11.96163 22.37024 -2.543758 -12.21758 22.18001 -2.544399 -11.89606 22.30932 -2.469534 -12.15978 22.12128 -2.471188 -12.15291 22.11815 -2.352304 -11.8868 22.29847 -2.347957 -12.22214 22.16574 -2.276038 -11.95759 22.36057 -2.261266 -12.14392 22.56987 -2.294252 -12.39943 22.33603 -2.318278 -12.31053 22.23489 -2.246461 -12.05003 22.45006 -2.225192 -12.11705 22.54767 -2.447831 -12.37349 22.33126 -2.455447 -11.79767 22.09258 -2.078152 -11.89986 22.19263 -2.036232 -11.71767 22.38417 -2.067057 -11.60672 22.26622 -2.11676 -11.53769 22.21748 -2.046842 -11.73066 22.04498 -2.018116 -11.70135 22.02514 -1.935857 -11.50126 22.19902 -1.957456 -11.75537 22.08741 -1.829935 -11.55615 22.27547 -1.839307 -11.73272 22.44773 -1.83556 -11.91511 22.24127 -1.82982 -11.84578 22.17904 -1.776753 -11.6544 22.38343 -1.780035 -11.78762 22.47482 -1.959144 -11.96462 22.26722 -1.943607 -12.11612 22.91779 -2.826949 -12.34764 22.7347 -2.909374 -12.32497 22.67093 -2.82653 -12.09151 22.84416 -2.74473 -12.07056 22.9291 -2.929357 -12.30809 22.74889 -3.00543 -12.14415 22.56553 -3.074598 -12.2266 22.67172 -3.071922 -11.97993 22.83157 -3.01029 -11.89252 22.70195 -3.017735 -11.87064 22.64655 -2.942557 -12.11191 22.51124 -3.003412 -12.15752 22.4934 -2.911638 -11.90846 22.62253 -2.850161 -12.24478 22.56717 -2.834608 -12.00288 22.71478 -2.759024 -11.75517 23.31416 -3.282191 -11.91448 23.20886 -3.388541 -11.92412 23.16291 -3.313276 -11.77511 23.26091 -3.206507 -11.82728 23.22631 -3.464338 -11.6623 23.32882 -3.364655 -11.71917 23.08136 -3.481146 -11.7643 23.16781 -3.492087 -11.59296 23.25576 -3.401192 -11.54436 23.15209 -3.392382 -11.54634 23.07942 -3.335462 -11.72093 23.00812 -3.429488 -11.78421 23.01077 -3.364504 -11.61559 23.07037 -3.270843 -11.70977 23.1529 -3.211776 -11.86526 23.07752 -3.314607 -12.63735 22.49239 -3.111456 -12.62781 22.51823 -3.072092 -12.40316 22.67594 -3.036299 -12.32515 22.60645 -3.097316 -12.24493 22.50922 -3.098204 -12.20903 22.45552 -3.028729 -12.25732 22.43999 -2.937504 -12.34157 22.50664 -2.865917 -12.63542 22.47382 -2.95979 -12.64073 22.4323 -2.93774 -12.41848 22.6008 -2.860121 -12.39819 22.19431 -2.510999 -12.32243 22.10046 -2.543957 -12.26809 22.04378 -2.471928 -12.26215 22.04338 -2.355625 -12.32979 22.08501 -2.284189 -12.65047 22.03849 -2.301035 -12.6502 21.98229 -2.271091 -12.41546 22.14596 -2.257374 -12.69988 22.07747 -2.4142 -12.67119 22.07519 -2.348134 -12.50129 22.23896 -2.329129 -12.47605 22.24048 -2.458433 -12.23878 21.95377 -1.919918 -12.19138 21.98779 -1.884339 -12.04373 22.18111 -1.937165 -11.97934 22.11065 -2.026508 -11.87788 22.01478 -2.066553 -11.80995 21.96642 -2.008697 -11.78256 21.94558 -1.927046 -11.83757 22.00415 -1.823038 -11.995 22.15495 -1.824198 -12.16281 21.97786 -1.822092 -12.12916 21.93374 -1.786901 -11.92729 22.09194 -1.77073 -11.98617 23.16243 -3.43771 -12.10427 23.09237 -3.508942 -12.11942 23.06074 -3.476606 -11.99203 23.11917 -3.362619 -12.08666 23.09539 -3.564854 -11.90108 23.1809 -3.511036 -11.84199 23.12701 -3.536301 -11.79915 23.04642 -3.524999 -11.79829 22.97424 -3.474121 -11.85935 22.98118 -3.40902 -11.93561 23.042 -3.362611 -11.54263 23.28185 -3.374104 -11.71017 23.34502 -3.249959 -11.61474 23.35918 -3.335089 -11.73285 23.28933 -3.173212 -11.66512 23.17444 -3.179626 -11.90815 22.87839 -2.99106 -12.04822 22.97045 -2.802465 -12.00116 22.98105 -2.906464 -12.02313 22.89435 -2.720407 -11.93231 22.75848 -2.736307 -12.07369 22.63535 -2.286293 -12.0449 22.60688 -2.443802 -11.97775 22.51027 -2.220717 -11.88553 22.41683 -2.257944 -11.96916 22.53892 -2.504707 -11.68176 22.51061 -1.836169 -11.73906 22.5385 -1.964564 -11.59967 22.44458 -1.778975 -11.49772 22.33055 -1.841134 -11.66661 22.44216 -2.078626 -11.94745 23.1877 -3.410508 -11.86078 23.20571 -3.485548 -11.95539 23.14276 -3.33494 -11.79856 23.14941 -3.512002 -11.89735 23.06077 -3.335696 -12.38943 22.70005 -2.924623 -12.44037 22.66075 -2.942903 -12.36722 22.63832 -2.842186 -12.27161 22.64132 -3.082713 -12.35113 22.71463 -3.019024 -12.2889 22.53943 -2.849189 -12.44682 22.29133 -2.322825 -12.42112 22.28946 -2.456793 -12.35905 22.19364 -2.250803 -12.27164 22.12808 -2.279201 -12.34265 22.2401 -2.510969 -11.95132 22.20133 -1.828175 -11.88315 22.13913 -1.775255 -11.93606 22.15501 -2.031593 -12.00017 22.22721 -1.940888 -11.7937 22.04987 -1.82785 -10.46384 22.82332 -1.925891 -10.12449 22.55233 -2.019276 -10.8072 22.36333 -1.895831 -10.72774 22.36396 -1.860418 -10.5353 22.21162 -1.90408 -10.61549 22.29598 -1.860972 -12.09503 23.07744 -3.606081 -12.17098 23.03359 -3.636911 -12.23551 23.00606 -3.64594 -12.26981 22.9875 -3.609653 -12.26175 22.96765 -3.565269 -12.21114 22.9842 -3.513505 -12.14002 23.02274 -3.462196 -12.7147 22.44004 -3.122015 -12.79827 22.38257 -3.116595 -12.81203 22.35848 -3.068487 -12.80374 22.34497 -3.019723 -12.72353 22.3792 -2.97705 -12.71719 22.05391 -2.454608 -12.84309 21.95584 -2.444041 -12.90352 21.92438 -2.403258 -12.90931 21.90813 -2.357659 -12.87407 21.89021 -2.317543 -12.7975 21.8965 -2.291425 -12.30971 21.84795 -1.90216 -12.35961 21.78947 -1.854872 -12.35203 21.75453 -1.814907 -12.31313 21.75321 -1.778819 -12.22672 21.77842 -1.769827 -12.13583 21.87183 -1.772739 -10.93671 22.18501 -1.896901 -10.94927 22.10555 -1.890368 -10.89574 22.00094 -1.903293 -10.79109 21.95711 -1.909667 -10.71585 21.9864 -1.937584 -10.53555 22.13457 -1.943371 -8.875385 26.79396 -2.851726 -9.142477 26.91764 -2.802058 -8.336316 26.52024 -2.518927 -8.675823 26.67025 -2.827516 -8.221014 26.55268 -2.04598 -8.590398 26.66183 -1.56281 -9.105717 26.88483 -1.657416 -8.842473 26.76225 -1.520312 -9.346043 26.98343 -1.92801 -9.436341 27.04622 -2.335485 -12.21204 21.95191 -1.860346 -12.21285 21.87051 -1.783283 -12.24413 21.79589 -1.777638 -12.30643 21.85257 -1.883252 -12.22696 21.94107 -1.894801 -12.20076 21.96722 -1.874179 -12.17406 21.95911 -1.824361 -12.14946 21.92134 -1.792683 -12.15779 21.88178 -1.789829 -12.35286 21.73419 -1.788546 -12.37996 21.73788 -1.808509 -12.3818 21.75674 -1.835425 -10.75378 22.01557 -1.889211 -10.6346 22.12437 -1.894877 -10.66224 22.25026 -1.873396 -10.60744 22.1856 -1.90059 -10.79967 22.30272 -1.878108 -10.73671 22.29514 -1.870027 -10.91655 22.15846 -1.882155 -10.73495 21.99894 -1.915155 -10.59858 22.12431 -1.921587 -12.69432 22.0105 -2.317008 -12.70993 21.97183 -2.294867 -12.81466 21.91307 -2.301394 -12.72642 22.04809 -2.404245 -12.70859 22.04114 -2.354466 -12.84756 21.96636 -2.423619 -12.75478 22.02923 -2.431866 -12.78001 22.01558 -2.410272 -12.90693 21.88832 -2.330207 -12.93358 21.89876 -2.353761 -12.92672 21.91213 -2.382241 -12.72875 22.38999 -2.987435 -12.72249 22.44028 -3.10888 -12.66602 22.48129 -3.096282 -12.64715 22.49447 -3.061564 -12.65138 22.46754 -2.982984 -12.66759 22.43504 -2.967346 -12.63749 22.51071 -3.010207 -12.64771 22.49595 -3.014659 -12.66881 22.48471 -3.016834 -12.21301 22.99349 -3.522903 -12.17857 23.03849 -3.627477 -12.11618 23.07844 -3.563019 -12.12548 23.07508 -3.524887 -12.12327 23.06737 -3.59432 -12.13976 23.05179 -3.50054 -12.15451 23.02509 -3.48893 -12.19237 23.04549 -3.616453 -12.14182 23.06564 -3.590651 -12.16783 23.02923 -3.501322 -12.21536 23.00457 -3.52834 -6.225271 32.4747 -4.933272 -6.835847 32.24423 -4.672709 -6.625573 32.93907 -4.458012 -6.08864 33.16817 -4.697662 -7.473265 32.0373 -4.370499 -7.114828 32.77558 -4.253242 -8.116693 31.7947 -3.719353 -7.644884 32.589 -3.736962 -2.677483 33.84088 1.723867 -1.640574 33.9928 1.56444 -1.789583 34.35594 1.089334 -2.778981 34.21851 1.235156 -3.909345 33.55937 1.745543 -3.855107 33.95723 1.213948 -4.7972 33.14599 1.325562 -4.636509 33.5726 0.855269 -5.338978 32.7484 0.468676 -5.163531 33.22735 0.150463 -5.690754 32.37469 -0.129981 -5.459853 32.97383 -0.434614 -6.118909 32.03503 -0.578354 -5.854823 32.7187 -0.838241 -6.679763 31.70619 -0.850669 -6.29406 32.50714 -1.141545 -7.537946 31.53239 -1.211082 -7.039708 32.27804 -1.437123 -8.30299 31.58915 -1.851734 -7.810889 32.3227 -2.076511 -8.560801 31.65901 -2.881212 -8.025829 32.40719 -2.995585 -5.684272 32.65887 -5.21422 -5.553426 33.35897 -4.999259 -4.757306 32.914 -5.731902 -4.661103 33.59885 -5.515697 -3.84308 33.01753 -6.007407 -3.749499 33.70273 -5.800561 -2.483525 32.99259 2.226853 -1.401067 33.19801 2.071718 -1.444626 33.35674 2.057044 -2.514532 33.18232 2.231136 -3.825946 32.68516 2.325494 -3.873114 32.87303 2.325986 -4.884061 32.29928 1.870898 -4.920046 32.46635 1.834246 -5.424309 31.86038 0.902781 -5.483744 32.0289 0.895888 -5.840346 31.42453 0.251618 -5.956255 31.62155 0.319692 -6.205863 30.92753 -0.477413 -6.258088 31.09413 -0.415826 -6.883611 30.41735 -0.850411 -6.907666 30.591 -0.760127 -7.818486 30.2439 -1.267872 -7.834506 30.42004 -1.17113 -8.521961 30.29999 -1.802053 -8.568557 30.47649 -1.743849 -8.779029 30.35382 -2.774976 -8.866909 30.54059 -2.789093 -8.260717 30.48493 -3.619764 -8.361272 30.66407 -3.669357 -7.548979 30.81281 -4.346469 -7.640915 30.98377 -4.415619 -6.821707 31.07137 -4.671125 -6.898226 31.23902 -4.761571 -6.141723 31.31949 -4.911028 -6.214099 31.48246 -5.011102 -5.584272 31.52811 -5.154643 -5.65782 31.68581 -5.258705 -4.679223 31.83198 -5.663751 -4.740289 31.98659 -5.772424 -3.85722 31.94912 -6.011697 -3.897033 32.10136 -6.115712 -1.872925 34.38897 0.717312 -2.810755 34.25454 0.836814 -2.797323 34.27203 1.086667 -1.828238 34.40763 0.943494 -3.769358 34.00393 0.827399 -3.824628 34.01117 1.063336 -4.436803 33.66369 0.525264 -4.571997 33.63953 0.722996 -4.93945 33.3708 -0.1324999 -5.092744 33.3151 0.03995198 -5.274196 33.15372 -0.724145 -5.389832 33.0786 -0.531422 -5.716455 32.92287 -1.140174 -5.791194 32.83377 -0.927837 -6.169546 32.71977 -1.446755 -6.226991 32.62392 -1.232086 -6.853201 32.48418 -1.713845 -6.949518 32.39074 -1.517748 -7.516949 32.50041 -2.255994 -7.702033 32.42597 -2.141085 -7.686426 32.59764 -2.960415 -7.894321 32.51642 -3.005013 -7.361887 32.81478 -3.550691 -7.52922 32.7173 -3.709454 -6.913277 33.01623 -4.000562 -7.022646 32.90702 -4.191635 -6.483765 33.17581 -4.171096 -6.565385 33.06587 -4.374412 -5.939567 33.40719 -4.420788 -6.039457 33.29234 -4.613143 -5.388282 33.6113 -4.736384 -5.502687 33.48617 -4.919838 -4.519083 33.849 -5.24181 -4.620414 33.72452 -5.432218 -3.626701 33.94662 -5.511283 -3.710394 33.82633 -5.709771 -2.559579 33.39583 2.149267 -3.910502 33.08213 2.231321 -1.491434 33.57176 1.974398 -4.92409 32.66581 1.723064 -5.489954 32.2301 0.804201 -5.989214 31.8318 0.259208 -6.289101 31.31147 -0.420387 -6.930364 30.8237 -0.726075 -7.853083 30.6658 -1.129406 -8.590435 30.72277 -1.717432 -8.88633 30.78587 -2.772769 -8.396402 30.90319 -3.662258 -7.681405 31.21856 -4.414193 -6.937553 31.47205 -4.777027 -6.257453 31.7117 -5.039834 -5.703961 31.90807 -5.29601 -4.771128 32.19733 -5.810711 -3.905196 32.31198 -6.143525 -1.874949 34.23743 0.635541 -2.80763 34.14684 0.741232 -3.749448 33.93447 0.754674 -4.426888 33.62958 0.496468 -6.472679 33.12918 -4.114201 -5.914257 33.36408 -4.370104 -5.355762 33.56577 -4.684673 -4.489532 33.80556 -5.190692 -3.60577 33.90309 -5.458263 -4.879384 33.31605 -0.1968179 -5.246537 33.09387 -0.766381 -6.906563 32.96439 -3.936477 -5.712432 32.86479 -1.197725 -6.187184 32.66616 -1.505195 -6.869238 32.43663 -1.774992 -7.48742 32.45162 -2.289226 -7.649488 32.54574 -2.932989 -7.344446 32.75452 -3.485975 -2.597767 32.88222 2.061388 -1.5261 32.99146 1.898539 -3.919277 32.64156 2.124496 -4.856754 32.27297 1.709217 -5.364495 31.84835 0.849845 -5.714134 31.37032 0.106873 -6.174223 30.92833 -0.538547 -6.852064 30.4274 -0.905351 -7.800448 30.25564 -1.3258 -8.47914 30.30583 -1.84382 -8.717732 30.36209 -2.769085 -8.20615 30.50075 -3.581959 -7.506658 30.83164 -4.294784 -6.791947 31.09234 -4.613855 -6.114785 31.34179 -4.856735 -5.555612 31.54994 -5.104058 -4.650114 31.84851 -5.609156 -3.833885 31.9652 -5.952778 -0.608302 34.11771 1.293281 -0.81099 34.48189 0.825627 0.605741 34.10346 0.775178 0.242803 34.45646 0.341023 1.373759 33.82114 -0.01995396 0.942894 34.19271 -0.343178 1.67457 33.42874 -1.00784 1.273893 33.86661 -1.222578 1.761374 33.00078 -1.803313 1.361712 33.56433 -1.931587 1.941136 32.68389 -2.499279 1.550204 33.33472 -2.569611 2.244494 32.33482 -3.197216 1.750134 33.10527 -3.20535 2.564483 32.03949 -4.29057 2.060998 32.77871 -4.143297 2.502487 31.95034 -5.467782 2.012244 32.6851 -5.314509 1.817841 31.94524 -6.40714 1.39855 32.71185 -6.128976 0.898014 32.09672 -6.645751 0.598981 32.90871 -6.350383 0.03244495 32.36656 -6.65972 -0.102828 33.11503 -6.349188 -0.587271 32.57593 -6.490117 -0.561278 33.27793 -6.202667 -1.195459 32.77079 -6.365925 -1.106355 33.47117 -6.107417 -1.809296 32.89292 -6.323265 -1.735141 33.59465 -6.089634 -2.923652 33.02104 -6.27455 -2.826159 33.70613 -6.061956 -0.36604 33.29971 1.776475 -0.381523 33.49108 1.776642 0.966175 33.31331 1.267697 0.962008 33.50777 1.261905 1.767307 33.01267 0.465955 1.788321 33.17754 0.394489 1.998745 32.44628 -0.765761 2.019783 32.61987 -0.789608 2.023257 32.01278 -1.610378 2.067495 32.18429 -1.612773 2.113925 31.59569 -2.465172 2.182221 31.76497 -2.443672 2.409833 31.06301 -3.299292 2.488701 31.23804 -3.253466 2.648573 30.71757 -4.516435 2.74164 30.89758 -4.468647 2.579944 30.62197 -5.552394 2.666931 30.79785 -5.561759 1.918019 30.60245 -6.425047 1.975014 30.78332 -6.517168 0.965025 30.77375 -6.578022 1.001913 30.94511 -6.703854 0.062711 31.1617 -6.586721 0.07731097 31.32443 -6.71886 -0.581666 31.43675 -6.400603 -0.594422 31.59671 -6.534103 -1.203341 31.6412 -6.266901 -1.225791 31.79882 -6.397902 -1.814893 31.77198 -6.224089 -1.836412 31.92779 -6.352118 -2.949925 31.93017 -6.200627 -2.978275 32.08578 -6.319815 -0.866679 34.5308 0.685497 -0.951071 34.50394 0.450554 0.142101 34.4959 0.220219 -0.003400981 34.46571 0.02796298 0.815622 34.24118 -0.429487 0.603029 34.22975 -0.546817 1.147202 33.93889 -1.282179 0.918334 33.96265 -1.357798 1.242426 33.65845 -1.975279 1.031435 33.71431 -2.077297 1.44082 33.44133 -2.607934 1.247283 33.51613 -2.741361 1.637408 33.2156 -3.236943 1.448007 33.2997 -3.372832 1.941214 32.89092 -4.140597 1.729737 32.97901 -4.217118 1.895501 32.79308 -5.280468 1.687791 32.87551 -5.219392 1.312612 32.82952 -6.040554 1.218451 32.92537 -5.855577 0.550741 33.04332 -6.2529 0.569195 33.15261 -6.027012 -0.114715 33.24984 -6.246206 -0.04058295 33.36619 -6.03961 -0.538705 33.40695 -6.10416 -0.439989 33.52389 -5.902793 -1.077326 33.59704 -6.013782 -1.001709 33.71801 -5.805036 -1.71235 33.72227 -5.998877 -1.65784 33.84955 -5.789516 -2.793071 33.83222 -5.974254 -2.727027 33.95686 -5.769359 0.910077 33.71873 1.17599 -0.42625 33.70624 1.697256 1.73219 33.37572 0.294392 1.983789 32.83044 -0.860472 2.062824 32.40195 -1.663355 2.19848 31.98352 -2.465013 2.527293 31.47051 -3.246248 2.804752 31.15336 -4.4498 2.732228 31.05588 -5.562836 2.035024 31.03825 -6.534538 1.058905 31.18697 -6.749318 0.115164 31.55259 -6.775621 -0.585982 31.81877 -6.593916 -1.2313 32.0193 -6.453619 -1.841359 32.1471 -6.402453 -2.978951 32.29987 -6.356211 -0.946292 34.29762 0.368447 -0.005142986 34.24652 -0.04424899 0.565247 34.06633 -0.527431 -0.40742 33.47765 -5.854909 -0.985325 33.67528 -5.749319 -1.64202 33.80543 -5.725683 -2.712816 33.91432 -5.708654 0.862182 33.82263 -1.384988 0.989011 33.65171 -2.097327 0.002317965 33.31545 -5.990328 1.21011 33.45615 -2.784639 1.42144 33.24486 -3.426216 1.695944 32.93177 -4.264302 1.646469 32.83243 -5.209133 1.219802 32.87977 -5.803054 0.60868 33.09571 -5.967861 -0.459915 33.04541 1.617339 0.898214 33.07695 1.135508 1.682495 32.78771 0.310036 1.920529 32.42837 -0.776908 1.965828 32.0011 -1.64478 2.050511 31.59276 -2.493944 2.348459 31.07119 -3.317569 2.597543 30.7326 -4.53674 2.528925 30.63608 -5.539238 1.895225 30.62107 -6.3704 0.968977 30.797 -6.513644 0.075809 31.18264 -6.524778 -0.564494 31.45675 -6.341284 -1.190958 31.66216 -6.206279 -1.805638 31.79362 -6.161038 -2.932047 31.94822 -6.134497 -1.774069 33.90134 0.963685 -1.642137 33.42987 1.442619 -2.666328 33.31396 1.571611 -2.740702 33.79761 1.074379 -3.85562 33.07539 1.603821 -3.735492 33.57519 1.055301 -6.37107 32.0772 -1.280999 -6.648983 31.16237 -1.080126 -7.641446 30.94929 -1.489002 -7.189525 31.82402 -1.634243 -8.236145 30.98992 -1.979162 -7.823505 31.8473 -2.165193 -8.460833 31.06516 -2.754393 -8.002717 31.93257 -2.864351 -8.05202 31.20056 -3.423316 -7.574934 32.17512 -3.528721 -5.994876 32.81859 -4.513125 -6.094231 32.01059 -4.70105 -5.528179 32.21355 -4.977767 -5.435472 33.0302 -4.813304 -4.603955 32.48771 -5.483817 -4.522482 33.22906 -5.29805 -5.154986 32.34948 0.450248 -5.586281 31.91375 -0.251218 -5.377919 32.62498 -0.559453 -4.980602 32.91186 0.06183797 -6.537307 32.61317 -4.279281 -6.769277 31.76675 -4.426535 -6.118639 31.51381 -0.818328 -5.882061 32.35027 -1.037685 -7.058694 32.38211 -4.039689 -7.436688 31.51656 -4.094847 -4.635612 32.72858 1.22346 -4.490132 33.25041 0.761373 -3.763701 32.59665 -5.799715 -3.675142 33.35739 -5.604965 -0.809756 33.95531 0.69071 -0.618696 33.47631 1.156953 0.191734 33.90182 0.268282 0.588977 33.43236 0.691049 1.714968 32.67967 -3.335741 2.016231 32.3277 -4.347744 2.409412 31.44288 -4.541356 2.071214 31.79199 -3.326024 1.963005 32.23271 -5.319963 2.342211 31.3609 -5.452659 1.495453 32.25986 -5.978405 1.833369 31.36838 -6.197005 0.710559 32.50895 -6.133349 1.060415 31.51672 -6.353084 -1.051533 33.12486 -5.894323 -1.696358 33.26856 -5.859172 -1.755098 32.45252 -6.03532 -1.120916 32.31784 -6.087572 -2.754711 33.33992 -5.801363 -2.868047 32.59354 -5.988602 1.507826 32.90964 -0.981961 1.116664 33.44251 -1.214603 1.242869 33.20716 -1.991504 1.629158 32.52717 -1.85371 -0.458996 32.11204 -6.237805 -0.502559 32.95482 -6.004359 1.45957 32.96326 -2.743175 1.811394 32.15835 -2.692029 0.199764 31.85847 -6.40572 0.008712947 32.72871 -6.142759 0.841788 33.70779 -0.313906 1.265997 33.20953 -0.01716798 -1.580409 26.35676 -4.81151 -3.427711 26.91737 -4.463683 -3.216819 26.94534 -4.223862 -1.510902 26.423 -4.50795 0.12035 25.69941 -4.574686 0.06095498 25.804 -4.281963 1.391416 25.10636 -3.846909 1.247006 25.22153 -3.59897 2.16446 24.5757 -2.390609 1.952538 24.70839 -2.202928 2.155201 24.26111 -0.904739 1.904722 24.41489 -0.820719 1.617136 24.15221 0.351382 1.37319 24.32145 0.336705 0.592687 24.22461 1.372593 0.396224 24.39973 1.257057 -1.660176 24.8925 2.331911 -1.633136 24.75635 2.564909 -0.632171 24.46998 2.177873 -0.739277 24.62863 1.986159 -2.456191 25.04181 -5.654629 -4.474386 25.62831 -5.217414 -4.285223 26.00655 -5.114747 -2.356223 25.4472 -5.539299 -4.471245 25.33744 -5.160162 -2.565464 24.79133 -5.579878 -0.387311 24.3037 -5.530048 -0.234428 24.66614 -5.406453 -0.632486 24.07955 -5.425909 0.963986 23.7214 -4.87153 1.125245 24.06367 -4.767443 0.763401 23.4417 -4.739969 2.168808 23.01295 -3.345848 2.241085 23.38011 -3.174073 1.8699 22.76661 -3.341114 2.33648 22.56826 -1.611322 2.377479 22.95922 -1.44244 2.038381 22.34339 -1.751058 1.812564 22.39649 -0.07424598 1.844198 22.80284 0.06373399 1.540072 22.20132 -0.30901 0.670704 22.47652 1.280683 0.714949 22.87471 1.365531 0.439752 22.29436 0.984613 -1.830258 23.48587 3.01322 -1.917385 23.11356 3.071129 -0.732025 22.76382 2.463835 -0.671371 23.15094 2.4643 -2.011488 22.90479 2.799446 -0.888323 22.57014 2.168831 -2.186805 25.80546 -5.353775 -4.044587 26.34934 -4.96218 -0.10449 25.01488 -5.19442 1.248984 24.42335 -4.505177 2.163484 23.81563 -2.885356 2.252703 23.4343 -1.253052 1.725865 23.28939 0.154402 0.648325 23.34845 1.358333 -1.76799 23.92854 2.835059 -0.67344 23.60919 2.335315 -2.125311 26.34505 1.748401 -1.303465 26.1565 1.677315 -1.143867 27.1345 1.411118 -1.84496 27.24043 1.472198 -4.018782 26.84251 1.450304 -3.101942 26.58928 1.720836 -2.701268 27.41281 1.40172 -3.499034 27.57179 1.202659 -4.722658 27.0804 0.835148 -4.078076 27.69208 0.664288 -1.066329 28.0662 1.19525 -1.671369 28.13863 1.243631 -2.439845 28.2266 1.18555 -3.107506 28.294 0.959785 -3.622621 28.39814 0.466074 -4.491626 28.02083 -1.065759 -5.386673 27.37394 -1.295257 -5.214405 27.36918 -0.2079769 -4.468813 27.95068 -0.1241289 -4.444732 27.42095 -3.307154 -3.001734 27.1401 -3.997129 -4.746747 27.24647 -3.476542 -5.461364 27.42355 -2.324464 -5.718164 27.21729 -2.420932 -5.936491 27.24175 -1.223441 -6.206751 27.0364 -1.366315 -6.02434 26.66629 0.03346395 -5.473042 26.32069 1.042628 -4.676555 25.98875 1.732282 -3.653763 25.58115 2.06524 -2.552249 25.18672 2.291956 -1.782191 28.78085 -2.598336 -2.643551 28.83404 -2.247526 -2.786285 29.67824 -2.559349 -1.85512 29.67482 -2.981504 -3.32461 28.88559 -1.676146 -3.561288 29.64425 -1.920958 -3.715262 28.94341 -0.970031 -3.92982 29.63941 -1.223564 -3.727333 29.00112 -0.239251 -3.881552 29.73552 -0.419627 -3.376611 29.04754 0.335602 -3.497302 29.85564 0.305537 -2.925735 29.08567 0.779476 -3.041414 29.96054 0.779625 -2.305139 29.08651 1.028084 -2.41235 30.07321 1.015458 -1.606461 29.04484 1.085597 -1.053367 29.00874 1.04624 -1.090556 30.01593 1.046636 -1.682951 30.04023 1.082644 -3.295714 31.30126 -3.536217 -2.283279 31.39534 -3.912071 -4.279472 31.13527 -2.772689 -4.346371 30.62461 -1.510245 -4.105656 30.32409 -0.578265 -2.557198 30.68087 1.025561 -3.251744 30.61384 0.641506 -1.143137 30.73542 1.086212 -1.808676 30.70923 1.069277 -4.381105 30.70316 -0.658704 -6.971234 31.09197 -3.595636 -7.611436 31.40054 -3.378896 -7.485408 31.8543 -3.393399 -6.76196 32.03972 -3.765859 -7.912957 31.44239 -2.69669 -7.763691 31.74072 -2.771694 -7.635872 31.37505 -2.136732 -7.587873 31.6664 -2.140862 -6.981261 31.28513 -1.745568 -6.847206 31.61747 -1.759768 -6.367006 31.13725 -1.74074 -5.942882 31.85074 -1.578711 -6.035017 30.91036 -2.280139 -5.770857 31.42939 -2.213187 -5.997006 31.44909 -3.022231 -6.316906 30.87757 -2.988827 -2.091206 31.68047 2.127941 -1.930103 31.17228 1.589647 -1.136313 31.23666 1.449677 -1.094387 31.79749 2.03112 -4.619956 31.23437 0.663512 -4.234463 30.82869 0.495227 -3.634208 30.99576 1.180724 -4.031487 31.40696 1.604362 -3.095677 31.60311 2.101294 -2.735341 31.15231 1.537202 -1.140493 32.46995 2.090648 -2.195624 32.34979 2.252908 -1.421195 33.40054 1.897603 -2.507402 33.29014 2.049227 -3.374411 32.28463 2.252866 -3.559237 33.12877 2.02594 -4.360031 32.04954 1.659945 -4.946234 31.77843 0.626013 -4.540516 32.76127 1.437993 -5.111269 32.43278 0.529404 -4.795475 31.2976 -1.812121 -5.038964 31.7783 -2.050818 -4.707877 31.07789 -0.73777 -4.953693 31.5125 -0.802337 -4.027833 33.13217 0.985 -5.103019 32.95941 0.06235796 -2.397475 33.66015 1.507398 -3.364773 33.47232 1.521619 -1.50401 33.75867 1.370557 -5.186521 32.08034 -0.972472 -5.351452 32.4091 -1.115907 -5.245039 32.00991 -2.334878 -4.807724 32.35641 -3.861361 -3.717385 32.52102 -4.297101 -2.618931 32.61587 -4.490567 -5.468684 31.84957 -2.703447 -5.55057 32.30192 -3.945646 -5.608924 32.17913 -1.307137 -5.647773 31.84116 -1.918581 -5.717752 31.71909 -2.948903 -6.197097 32.19005 -3.869454 -5.037709 32.39769 -0.906012 -5.495702 32.09176 -1.316119 -3.759844 30.5086 0.225154 -3.907297 28.03868 -1.958752 -4.657264 27.3163 -2.353061 -4.211027 28.06432 -0.12616 -4.170672 28.187 -0.997792 -3.655763 28.17348 -1.783261 -2.891099 28.11648 -2.412448 -3.043914 27.9419 -2.61899 -2.035598 27.84088 -3.014093 -1.928217 28.05285 -2.772119 -3.664981 27.20936 -3.127921 -2.41247 26.97789 -3.678115 -3.883163 28.51424 -0.140748 -3.891597 28.56041 -0.972495 -3.425034 28.52078 -1.704922 -2.724957 28.46669 -2.296142 -1.836449 28.413 -2.649083 -0.523909 26.02466 1.361391 -0.491124 27.02179 1.145614 1.105396 25.80749 0.197207 0.926563 26.87803 0.125068 0.270433 26.94117 0.682789 0.367146 25.89186 0.878045 1.508089 25.82673 -0.693656 1.239709 26.88252 -0.637869 -0.50194 28.0003 0.966271 0.696659 27.88806 0.05358999 0.176428 27.93092 0.564283 0.98319 27.94317 -0.634763 0.94466 27.20204 -2.412709 1.302193 27.0522 -1.549481 1.536318 25.96 -1.8725 1.197845 25.98901 -2.924227 -1.376377 26.63996 -4.235854 0.146392 26.03489 -4.075424 1.355211 25.4172 -3.34633 -0.875285 29.69238 -3.004943 -0.86646 28.74231 -2.677308 -0.01423895 29.7417 -2.735636 -0.03886699 28.73075 -2.460914 0.52832 29.87807 -2.222634 0.586195 28.75326 -1.98605 0.820169 30.04225 -1.479825 0.877692 28.80614 -1.316571 0.815673 30.12116 -0.680261 0.780624 28.87601 -0.632307 0.632496 30.18853 -0.06043297 0.553098 28.92654 -0.02897596 0.157644 30.19238 0.432268 0.089293 28.94937 0.474441 -0.536088 28.96623 0.838786 -0.530057 30.01493 0.826794 -1.188782 31.45786 -3.943134 -0.07579195 31.51417 -3.682575 0.535911 31.10018 -2.620097 0.806207 30.81635 -1.690042 0.587169 30.97921 -0.2191759 0.166212 30.89179 0.416671 -0.53538 30.71492 0.79537 0.92107 31.2777 -1.870549 0.407576 31.64389 -5.53628 0.17587 32.61734 -5.640443 0.878605 32.34554 -5.858587 0.904328 31.85527 -5.924043 1.425683 32.1468 -5.695163 1.543653 31.82216 -5.752174 1.776388 32.06662 -5.166023 1.780309 31.75488 -5.191439 1.869711 32.31434 -4.385905 1.879903 31.89936 -4.433486 1.358607 32.59661 -3.373155 1.498508 31.8119 -3.848508 0.766052 32.16963 -3.643544 0.887788 31.606 -3.918828 0.288747 32.13086 -4.44393 0.451985 31.50609 -4.597411 -0.1315979 31.75297 1.7349 -0.353749 31.20731 1.26207 1.512458 31.99357 -0.694894 1.363514 32.06412 0.438459 1.019896 31.54633 0.146308 1.244306 31.47992 -0.722695 0.4084 31.41595 0.847242 0.761308 31.95475 1.290097 -0.09803199 32.44672 1.845656 -0.363634 33.44208 1.652348 0.815652 32.64668 1.41116 0.588443 33.48364 1.229084 1.581412 32.52507 -0.764829 1.407038 32.70552 0.471073 1.226516 33.30757 0.336864 1.513414 33.1642 -0.883671 0.670386 31.78108 -3.033078 0.676825 32.27676 -3.305825 1.153358 32.16014 -2.17827 1.059113 31.68846 -2.032265 1.014993 33.54228 -1.083683 0.910603 33.54372 0.082071 0.378409 33.74473 0.838723 -0.545875 33.7834 1.17125 1.11742 32.75996 -2.3428 1.1199 33.13206 -2.529568 -0.92064 32.90764 -4.81715 0.454634 32.5609 -3.589892 -1.587877 32.74112 -4.742206 -0.838989 32.96149 -5.259671 0.278427 32.50009 -3.936378 1.238111 32.90979 -2.73148 0.145898 32.39422 -4.264928 0.877144 32.58562 -3.219372 -0.441159 32.77885 -5.503287 1.035571 33.11671 -2.097115 1.156372 32.84999 -2.758714 0.834098 30.98267 -0.806637 0.07716095 27.46501 -2.94708 0.125109 26.32001 -3.535943 0.790278 27.55779 -2.218809 1.146268 27.32529 -1.441516 0.01824599 27.73091 -2.689633 -0.917153 27.88685 -2.900159 -0.962463 27.65233 -3.135288 -1.051899 26.67437 -3.773697 0.682076 28.15734 -2.077632 0.997332 28.05638 -1.312783 -0.02923595 28.23255 -2.529966 -0.893674 28.31312 -2.743734 -8.446738 24.97639 -1.624232 -8.292951 24.93034 -2.13812 -8.218095 24.90581 -2.140827 -8.385869 24.95669 -1.5833 -8.347428 24.98196 -2.745366 -8.287711 24.95215 -2.813163 -8.897837 25.23487 -2.952078 -8.906941 25.21627 -3.039131 -9.512883 25.47282 -2.773393 -9.567249 25.45975 -2.839814 -9.748605 25.51374 -2.230287 -9.821875 25.509 -2.235884 -9.577957 25.43209 -1.613893 -9.628355 25.4258 -1.574214 -9.060812 25.19686 -1.321422 -9.055452 25.18132 -1.254145 -7.97377 26.46889 -2.883708 -7.858949 26.41898 -2.275381 -8.082581 25.53286 -2.198943 -8.183388 25.57092 -2.818087 -8.678222 26.76302 -3.143186 -8.80446 25.80483 -3.035029 -9.268501 26.96908 -2.840131 -9.455643 26.01592 -2.818176 -9.676199 27.05454 -2.291917 -9.710743 26.04377 -2.237905 -8.039793 26.5798 -1.550849 -8.282917 25.6078 -1.575218 -9.439942 27.01986 -1.594939 -9.514333 25.9699 -1.623018 -8.759509 26.84613 -1.207027 -8.887701 25.79096 -1.303142 -8.287503 25.16514 -1.531589 -9.003579 25.38278 -1.180822 -8.107291 25.12397 -2.139261 -8.203118 25.16135 -2.85331 -8.884929 25.41173 -3.089628 -9.594445 25.64158 -2.870214 -9.864516 25.69145 -2.221052 -9.642942 25.61836 -1.519703 -7.271965 30.35128 -3.482692 -7.960108 30.65343 -3.221144 -8.334454 30.63474 -2.585212 -8.056868 30.62147 -1.894017 -7.322847 30.49148 -1.55607 -6.676858 30.37094 -1.664161 -6.374948 30.14484 -2.292471 -6.584681 30.01394 -3.004133 -8.649398 30.15229 -2.447468 -8.225112 30.11658 -3.099011 -8.75423 29.01398 -3.113388 -8.910181 29.23664 -2.424904 -8.388051 30.02425 -1.756947 -8.683637 29.17281 -1.650049 -7.635178 29.86311 -1.398046 -7.942106 28.99273 -1.267677 -6.926083 29.66558 -1.629139 -7.239001 28.43314 -1.508001 -8.473222 27.97328 -1.169352 -9.176087 28.11446 -1.572365 -7.66108 27.53705 -1.536751 -7.367623 27.11198 -2.166077 -7.599314 27.20901 -2.918534 -8.34518 27.71118 -3.32512 -9.120554 28.12991 -3.020714 -9.470805 28.26951 -2.31452 -6.523566 29.2462 -2.563428 -6.722754 29.08821 -3.092264 -7.514021 29.70164 -3.363549 -7.207957 27.8976 -2.97381 -6.929014 27.94894 -2.149212 -8.068867 28.38444 -3.441945 1.840649 24.7261 -5.08605 2.613896 23.85108 -5.321168 3.185835 24.23707 -5.102438 2.443318 24.9497 -4.843171 3.569752 24.88283 -5.624993 3.097941 25.29948 -5.328926 1.295895 24.6489 -5.621967 1.809549 23.80419 -5.789082 3.337761 25.08028 -6.299295 3.088471 25.49438 -6.095676 2.736838 24.94936 -6.959221 2.585322 25.44766 -6.731616 1.370579 24.9053 -6.348417 1.741468 24.1135 -6.502476 2.019398 24.59873 -7.104225 1.861942 25.2531 -6.895702 3.782552 23.62068 -5.544506 3.262321 23.34177 -5.794017 2.144422 24.8826 -5.427533 2.330004 24.98371 -5.33841 4.022552 24.21227 -5.960958 2.416879 25.19501 -5.487775 2.754194 23.13582 -6.220421 1.969733 24.80762 -5.582266 3.798772 24.60324 -6.662039 2.341312 25.34017 -5.742636 3.162657 24.40885 -7.2822 2.112639 25.2692 -5.963852 2.542995 23.43716 -6.847607 1.893575 24.91618 -5.807053 2.604647 23.93912 -7.386786 1.91392 25.09884 -6.000278 1.345585 25.11732 -5.655701 1.786912 25.15291 -5.24196 2.26672 25.24925 -5.06443 2.834149 25.44793 -5.404719 2.88802 25.5968 -6.023785 1.475814 25.29488 -6.254132 2.499225 25.59239 -6.539918 1.945156 25.50535 -6.670769 3.806726 23.61181 -5.452322 4.084381 24.26387 -5.915443 4.038855 24.45083 -5.787452 3.703731 23.73489 -5.249252 3.235153 23.29288 -5.721234 3.080215 23.35414 -5.559078 2.666452 23.06757 -6.180526 2.421376 23.11638 -6.045631 3.846222 24.6678 -6.6743 3.792175 24.84907 -6.605352 2.441358 23.39359 -6.863176 2.205546 23.46494 -6.796229 3.161235 24.46596 -7.348309 3.065378 24.64316 -7.338234 2.527766 23.94939 -7.461754 2.330734 24.08152 -7.465592 -8.198725 24.51006 -2.108796 -8.392206 24.60112 -1.421802 -9.032601 23.66498 -1.391504 -8.783397 23.6217 -2.077637 -9.192403 24.94587 -1.072801 -9.731235 24.21731 -1.139706 -8.667024 23.85346 -2.873128 -8.276575 24.60491 -2.870251 -9.791482 25.27678 -1.464351 -10.1267 24.73665 -1.521653 -9.975405 25.4051 -2.244261 -10.24812 24.91995 -2.39537 -9.201019 24.31088 -3.205659 -8.900806 24.96692 -3.152215 -9.646027 25.33449 -2.975333 -9.879145 24.81754 -3.150595 -9.659564 22.94871 -1.563313 -9.455205 22.99631 -2.231314 -9.216898 23.07519 -2.190432 -9.434075 23.05075 -1.425412 -10.23929 23.51263 -1.346979 -10.12136 23.67466 -1.182503 -9.411244 23.11026 -2.916767 -9.143452 23.20565 -2.96294 -10.68875 24.14872 -1.704794 -10.61951 24.34597 -1.578037 -10.74568 24.40136 -2.643807 -10.69838 24.61128 -2.592703 -9.820611 23.64075 -3.314961 -9.617421 23.76983 -3.389655 -10.38242 24.22777 -3.356766 -10.27353 24.4207 -3.41633 -9.508113 23.05541 -2.23171 -9.692723 23.00126 -1.619741 -8.712398 24.852 -1.772357 -8.66097 24.86268 -1.99476 -10.2156 23.52194 -1.42586 -8.914875 25.0127 -1.701156 -9.474544 23.16275 -2.8643 -8.67137 24.89902 -2.235377 -10.63129 24.12336 -1.760054 -9.097673 25.2055 -1.83003 -10.67983 24.3588 -2.63694 -9.13063 25.27901 -2.143058 -9.851564 23.65913 -3.235265 -8.823686 25.05623 -2.364539 -10.35597 24.19903 -3.281999 -9.018215 25.22889 -2.376602 1.138597 31.03178 -6.054844 0.546242 30.81536 -5.64631 1.819353 30.95364 -5.9677 2.176247 30.95461 -5.328905 2.080509 30.97397 -4.523953 1.778006 31.03417 -4.084761 1.039663 30.76793 -4.186193 0.490513 30.55783 -4.764966 2.060981 30.4069 -6.134042 2.165363 29.43931 -6.249967 1.518729 29.22628 -6.5157 1.322968 30.40827 -6.204122 2.430711 30.31158 -5.500887 2.633027 29.41958 -5.598082 2.267167 30.22088 -4.644615 2.493064 29.33056 -4.763959 1.872297 30.23682 -4.243438 1.850587 28.85556 -4.285204 2.809884 28.25134 -5.021259 2.869905 27.07864 -5.161324 2.971498 27.16831 -5.953748 2.95428 28.40006 -5.861585 2.011765 27.90179 -4.549488 2.160547 26.87798 -4.767034 1.316427 27.49154 -4.652266 1.470679 26.71715 -5.042305 0.7492 27.43508 -5.284188 1.057116 26.73741 -5.500171 1.014125 27.94607 -6.184997 1.27687 26.94766 -6.244006 1.733857 28.28498 -6.667391 1.873623 27.09978 -6.554188 2.514056 28.39716 -6.530277 2.551687 27.15749 -6.557776 1.010059 29.74849 -4.369776 0.530978 29.59319 -4.900959 0.703163 30.07783 -5.757806 1.140493 28.40041 -4.371009 0.554196 28.19144 -5.064194 0.828618 28.6645 -6.10089 1.175795 25.76247 -5.585799 1.611191 25.76405 -5.137744 1.357508 25.93431 -6.230193 1.904035 26.10746 -6.642239 2.512017 26.14362 -6.507736 2.223144 25.85207 -4.937339 2.885507 26.11462 -5.982525 2.786563 25.99956 -5.277174 2.263675 25.23521 -4.989457 1.738784 25.14152 -5.180654 1.252787 25.10696 -5.64355 1.412461 25.28732 -6.308296 1.928712 25.49517 -6.748991 2.542512 25.58563 -6.598823 2.953641 25.58787 -6.038196 2.888726 25.43334 -5.357797 2.926614 25.61634 -5.28873 2.246172 25.43653 -4.899462 1.664316 25.36882 -5.110698 1.154958 25.34612 -5.615118 1.352109 25.51591 -6.328907 1.925682 25.70201 -6.792511 2.59349 25.7753 -6.628715 3.022494 25.76901 -6.026835 -5.032607 27.21833 -3.589524 -6.03729 27.18184 -2.432369 -6.51875 26.98524 -1.316049 -6.447826 26.63142 -0.175338 -5.870751 26.29952 1.104776 -4.875059 25.92491 1.91533 -3.796079 25.49741 2.282149 -2.605241 25.07694 2.526575 -6.216425 25.92197 -4.111458 -5.976016 26.28129 -4.021664 -6.209598 25.66843 -4.22563 -7.2211 25.86592 -2.707096 -7.003567 26.21387 -2.628309 -7.156245 25.58208 -2.859179 -7.582476 25.61611 -1.464291 -7.416649 25.94949 -1.386488 -7.510579 25.3 -1.512316 -7.472298 25.23036 -0.05545198 -7.278853 25.55565 -0.052549 -7.393147 24.92512 -0.204852 -6.696374 24.78257 1.426563 -6.542018 25.14113 1.395042 -6.658184 24.48928 1.218004 -5.644555 24.36027 2.323865 -5.504724 24.73351 2.273528 -5.626585 24.07493 2.098891 -4.523195 23.93527 2.801013 -4.378422 24.30781 2.729797 -4.553052 23.67712 2.563703 -3.002033 23.85421 3.010458 -3.111428 23.47425 3.077074 -3.164418 23.23284 2.809132 -5.709141 26.62679 -3.916126 -6.73884 26.55628 -2.565597 -7.161676 26.30815 -1.31094 -6.958207 25.90621 -0.118788 -6.274783 25.52804 1.268564 -5.26746 25.14023 2.113615 -4.159029 24.7085 2.531446 -2.861186 24.27334 2.798466 -2.847266 21.74295 2.678515 -3.786681 22.01697 3.143813 -4.185524 20.98752 3.303964 -3.165678 20.70448 2.832106 -1.980688 21.4929 3.005049 -2.218837 20.43028 3.198809 -1.319829 21.30756 2.06266 -1.476802 20.23254 2.263974 -0.474204 21.13733 1.821426 -0.521272 20.06549 2.142203 -0.07176399 20.95333 0.797062 -0.09383696 19.9401 1.01889 1.000174 20.80316 0.269031 0.912699 19.71354 0.32007 1.344251 20.66472 -0.881856 1.240893 19.58166 -0.982844 1.968231 20.6524 -2.106613 1.924173 19.5776 -2.285562 1.662352 20.93257 -3.046163 1.515913 19.89597 -3.483129 1.373939 21.2888 -4.282032 1.151599 20.42984 -4.710426 0.599624 21.66333 -4.704085 0.462113 20.84039 -5.360465 0.285633 22.14667 -5.338125 0.153177 21.40839 -6.118374 -0.714831 22.42166 -5.288362 -0.914944 21.68202 -6.069015 -1.488698 22.85681 -5.695294 -1.697266 22.10814 -6.433864 -2.344233 22.81786 -5.472144 -2.550642 22.03365 -6.061868 -3.244475 23.08771 -5.654535 -3.529227 22.24622 -6.21761 -3.959827 23.13455 -5.119409 -4.215513 22.16596 -5.492472 -5.156949 23.4611 -5.284085 -5.538185 22.49369 -5.639493 -5.955435 23.58886 -4.714427 -6.313748 22.57245 -4.985829 -6.98174 23.90372 -4.446283 -7.48386 22.93788 -4.746542 -7.249847 23.8028 -3.66477 -7.819388 22.93158 -3.889773 -7.926884 23.91591 -2.94844 -8.685135 23.14027 -3.124531 -8.076287 23.75433 -2.245025 -8.915198 23.05691 -2.292639 -8.473441 23.791 -1.42727 -9.32138 23.19846 -1.413638 -8.177035 23.6784 -0.124974 -8.829185 22.85396 0.122782 -8.065614 23.60183 0.769835 -8.817732 22.8484 0.723169 -7.35649 23.10006 1.319002 -8.096783 22.28547 1.425308 -6.765895 22.84456 1.836 -7.392719 21.95661 1.940863 -5.986331 22.54232 2.034994 -6.522695 21.59631 2.153902 -5.46794 22.47951 2.822977 -5.954398 21.49569 2.951218 -4.562197 22.20111 2.547852 -5.001801 21.20359 2.690815 -7.926857 24.53534 -1.422014 -7.558614 24.58118 -2.184564 -8.343848 23.72503 -2.259349 -8.758604 23.78164 -1.432127 -7.514256 24.80673 -2.823694 -6.797521 24.78326 -3.561514 -7.392221 23.74454 -3.773146 -8.241737 23.88629 -2.963423 -6.535524 24.8941 -4.319775 -5.661417 24.66223 -4.620989 -6.109857 23.52554 -4.864346 -7.126622 23.83761 -4.619245 -4.912467 24.54215 -5.03485 -3.808904 24.21309 -4.994737 -4.053912 23.07267 -5.303385 -5.307978 23.40644 -5.403619 -3.473592 23.04629 2.941933 -4.187232 23.20299 2.320206 -4.653684 22.11675 2.680678 -3.859338 21.92865 3.311935 -5.024622 23.47341 2.575021 -5.475811 23.51652 1.825595 -6.107751 22.47685 2.154205 -5.579517 22.4075 2.958484 -6.193138 23.78584 1.692309 -6.862741 24.02812 1.334352 -7.631402 23.11845 1.554378 -6.911008 22.79569 1.970092 -7.381912 24.28407 0.68256 -7.513965 24.40439 -0.11142 -8.358078 23.62514 -0.04156094 -8.222357 23.5339 0.925303 -2.626099 22.80337 2.508733 -2.8967 21.6441 2.837549 1.598746 22.30168 -3.74904 1.800574 22.02578 -2.635116 1.811648 20.79036 -3.122804 1.611543 21.19392 -4.360928 0.519907 22.89818 -4.800375 0.862481 22.54483 -4.186434 0.830154 21.53927 -4.890564 0.383859 22.05735 -5.520987 -1.28786 23.62794 -5.373218 -0.476929 23.23797 -4.910564 -0.646207 22.35084 -5.484558 -1.459658 22.77948 -5.904699 -3.080466 24.10115 -5.42107 -2.128504 23.78103 -5.250513 -2.326872 22.79328 -5.679324 -3.307185 23.04803 -5.877675 -1.785906 22.58689 2.767879 -1.980165 21.39004 3.171728 -0.263345 22.21419 1.614897 -1.099801 22.38093 1.95707 -1.265567 21.19032 2.209836 -0.350648 21.04772 1.991896 1.202367 21.86517 0.322713 0.219999 22.06108 0.749297 0.121872 20.8838 0.889381 1.167024 20.65187 0.34782 2.153425 21.82501 -1.818936 1.496535 21.80657 -0.725329 1.509839 20.52443 -0.859392 2.189955 20.54003 -2.144163 -1.678669 23.07019 2.57727 -2.497571 23.26949 2.23872 -1.036455 22.87244 1.762077 -0.22731 22.70641 1.470084 0.237164 22.56412 0.667299 0.956778 22.45749 0.142752 1.423301 22.37281 -0.686593 1.900129 22.43414 -1.720747 1.723138 22.69664 -2.457333 1.554916 22.92647 -3.575449 0.896021 23.28799 -3.932476 0.589175 23.61965 -4.501961 -0.312341 23.93303 -4.707885 -1.084781 24.3903 -5.169267 -1.900343 24.59798 -5.057014 -2.83546 24.92385 -5.180492 -3.552722 25.0826 -4.774013 -4.550923 25.3724 -4.772707 -5.263061 25.49076 -4.449676 -6.071207 25.67548 -4.118459 -6.300024 25.5334 -3.382876 -6.987553 25.52283 -2.717283 -7.001184 25.27956 -2.143759 -7.340305 25.18401 -1.408786 -7.014515 24.96663 -0.2259809 -6.743687 24.84784 0.404169 -6.37515 24.53909 1.115001 -5.819388 24.18346 1.446768 -5.125338 23.93101 1.557436 -4.73813 23.88318 2.268686 -3.922334 23.62989 2.043592 -3.298758 23.4407 2.632758 -8.311907 23.22753 -3.127671 -8.52143 23.10767 -2.334841 -7.490531 23.03154 -3.835943 -5.362983 22.66454 -5.469 -6.075449 22.72811 -4.861898 -4.159492 22.36518 -5.310987 -5.744994 21.63653 2.703243 -4.841518 21.36274 2.464365 -6.28539 21.7267 1.935889 -8.571609 22.94228 0.614425 -7.770122 22.34518 1.121082 -8.566202 22.91114 -0.249572 -8.902208 23.20864 -1.495465 -7.164949 23.05291 -4.634841 -4.070322 21.16053 3.061461 -3.113139 20.89991 2.614962 -7.11594 22.06565 1.725937 9.98e-4 21.52864 -5.780645 -1.007093 21.77176 -5.737835 0.293443 21.00848 -5.068291 -3.489316 22.40639 -5.954229 -2.560288 22.1493 -5.775339 -0.643795 20.2944 1.952783 -0.249783 20.17363 0.88707 -1.529212 20.45996 2.069108 1.652575 19.84322 -2.182328 1.27757 20.11792 -3.30831 1.002526 19.8492 -0.981204 0.939344 20.62397 -4.468593 -1.747615 22.18327 -6.111636 -2.22368 20.6464 2.948631 0.697315 19.96399 0.235534 -7.245722 23.79382 -3.136239 -7.397952 23.60301 -2.465584 -6.544576 23.65701 -3.68761 -4.814228 23.43162 -4.958457 -5.372561 23.47595 -4.499747 -3.865028 23.14666 -4.726968 -5.094177 22.34359 1.999382 -4.338907 22.11794 1.823031 -5.54983 22.41235 1.321341 -7.464573 23.32533 -0.01367795 -6.697072 22.82987 0.363597 -7.418566 23.31148 -0.622231 -7.713546 23.61728 -1.743804 -6.260658 23.70951 -4.323222 -3.699121 21.95742 2.358736 -2.913656 21.76243 1.982509 -6.25369 22.69152 1.108862 -0.296938 22.17197 -4.75814 -1.1665 22.37879 -4.729608 -0.04863297 21.77428 -4.166835 -3.300338 23.1159 -5.156648 -2.500554 22.79819 -4.904272 -0.893512 21.27646 1.407957 -0.582165 21.18257 0.507083 -1.616817 21.42076 1.495736 1.030221 20.90447 -1.909275 0.743524 21.0849 -2.773312 0.45755 20.92754 -0.983748 0.482874 21.47416 -3.702266 -1.802497 22.7526 -5.13424 -2.184537 21.56253 2.236336 0.2035959 21.01602 -3.43e-4 -6.410426 24.66085 -3.099461 -6.535589 24.4518 -2.536871 -5.78821 24.56252 -3.510172 -4.303048 24.42203 -4.502809 -4.773691 24.4581 -4.1408 -3.487912 24.14872 -4.226538 -4.543119 23.30957 1.475775 -3.908091 23.11072 1.3455 -4.933342 23.37322 0.871141 -6.438953 24.04871 -0.505045 -6.02229 23.77978 0.17789 -6.52529 24.10562 -1.419156 -6.796906 24.42374 -1.915549 -5.531753 24.63343 -4.022589 -3.368689 22.98317 1.832056 -2.72536 22.83397 1.509106 -5.545006 23.62576 0.670752 -0.296695 23.1259 -4.01193 -1.064689 23.32061 -3.983477 -0.08906799 22.80769 -3.487921 -3.003118 24.07053 -4.520673 -2.287469 23.74471 -4.217923 -0.976064 22.44514 1.042848 -0.696268 22.3743 0.283641 -1.619215 22.56693 1.083862 0.781046 22.13594 -1.590474 0.562467 22.25863 -2.290679 0.241392 22.16888 -0.872039 0.430746 22.51687 -2.933934 -1.641899 23.64685 -4.40343 -2.100178 22.67341 1.718572 1.65e-4 22.23368 -0.08725398 -5.402932 25.60321 -2.83812 -5.590569 25.48924 -2.333378 -4.890873 25.53266 -3.153702 -3.513506 25.36752 -3.925832 -3.99148 25.43284 -3.642253 -2.870535 25.16335 -3.678948 -3.961304 24.64183 1.000021 -3.486868 24.49615 0.923534 -4.304905 24.70053 0.533764 -5.526121 25.21225 -0.612886 -5.207195 25.02545 -0.05283099 -5.6352 25.26358 -1.408823 -5.807464 25.47769 -1.834642 -4.600198 25.57318 -3.568936 -3.006246 24.40138 1.288249 -2.488924 24.27884 1.071003 -4.795091 24.8971 0.359103 -0.05204099 24.24523 -3.364959 -0.659994 24.41943 -3.427562 0.152791 24.03699 -2.902992 -2.40285 25.04079 -3.877457 -1.73846 24.78238 -3.679473 -0.920626 23.90313 0.760231 -0.608408 23.83415 0.240402 -1.473838 24.03537 0.771832 0.780297 23.60691 -1.194031 0.692667 23.66282 -1.795168 0.30599 23.65268 -0.604106 0.576711 23.83391 -2.326323 -1.236875 24.66133 -3.700283 -1.920702 24.14645 1.193588 -0.01000297 23.71959 -0.01297199 0.05652695 25.28654 -0.008639991 -0.382901 25.39594 0.166748 -0.08399397 27.1452 0.109059 0.238602 27.0197 -0.03981697 0.389688 25.19199 -0.449806 0.601038 26.92484 -0.342233 0.761302 25.15415 -0.918208 0.830803 26.85691 -0.716154 0.797691 25.17587 -1.421955 0.929251 26.81652 -1.126319 0.689463 25.27625 -1.865724 0.797388 26.79402 -1.483326 0.427944 25.37595 -2.279983 0.613528 26.8198 -1.866046 0.150551 25.52659 -2.842245 0.361785 26.86951 -2.19814 -0.309203 25.65565 -2.971157 0.01304095 26.9465 -2.411436 -0.873214 25.84135 -3.092552 -0.547136 27.06297 -2.411074 -1.245516 25.94565 -3.204422 -0.808219 27.13459 -2.692613 -1.848995 26.15507 -3.262891 -1.366028 27.28898 -2.600342 -2.285131 26.28368 -3.145251 -1.764307 27.40227 -2.575686 -2.751988 26.41496 -3.34326 -2.079856 27.48096 -2.709878 -3.226661 26.50903 -3.161706 -2.545702 27.60086 -2.610287 -3.716376 26.61753 -3.078273 -2.916872 27.68153 -2.484696 -4.057395 26.63796 -2.737658 -3.298491 27.75047 -2.196138 -4.476538 26.70034 -2.458461 -3.634404 27.79163 -1.926382 -4.725017 26.66732 -2.051229 -3.954716 27.81119 -1.546811 -4.873949 26.64771 -1.641816 -4.007811 27.78052 -1.17042 -4.699726 26.50884 -1.080637 -4.020063 27.75215 -0.834182 -4.643853 26.46152 -0.59804 -3.919359 27.70332 -0.45341 -4.392642 26.33598 -0.172341 -3.723219 27.65221 -0.120684 -4.043722 26.2328 0.147982 -3.386359 27.58888 0.105306 -3.664932 26.11013 0.305567 -3.09382 27.55432 0.282867 -3.351591 26.05995 0.62227 -2.78249 27.53801 0.4922 -2.98801 25.97012 0.602067 -2.49784 27.51943 0.544996 -2.538116 25.88597 0.815744 -2.059313 27.45315 0.576805 -2.100588 25.79218 0.714548 -1.678423 27.41369 0.56948 -1.600983 25.67761 0.738332 -1.239734 27.3158 0.453542 -1.162889 25.57827 0.516471 -0.819707 27.25828 0.382095 -0.718477 25.47017 0.48549 -0.45234 27.20591 0.288059 -3.09001 36.39868 -4.086902 -2.778844 36.37834 -4.151512 -2.780077 36.35952 -4.205793 -3.109779 36.38088 -4.136795 -3.354623 36.41596 -3.902626 -3.38951 36.39852 -3.940462 -3.532547 36.41257 -3.594033 -3.577963 36.39485 -3.617171 -3.597351 36.38168 -3.247719 -3.645976 36.36196 -3.250014 -3.537477 36.32887 -2.917691 -3.584248 36.30478 -2.899182 -3.362326 36.27425 -2.627584 -3.40092 36.24465 -2.588718 -3.099855 36.22693 -2.42461 -3.123478 36.19138 -2.368077 -2.790785 36.19615 -2.35335 -2.793326 36.15738 -2.290298 -3.131892 36.32099 -4.189853 -2.784053 36.29887 -4.263198 -2.812355 35.86706 -4.386255 -3.212023 35.89218 -4.303584 -3.426877 36.33857 -3.981217 -3.550984 35.91138 -4.068483 -3.624952 36.33508 -3.643989 -3.778485 35.90874 -3.719174 -3.696725 36.30003 -3.256613 -3.860785 35.871 -3.301272 -3.631214 36.23961 -2.884474 -3.785222 35.80595 -2.883942 -3.437438 36.17665 -2.557101 -3.562488 35.73588 -2.526532 -3.144941 36.12142 -2.325742 -3.22628 35.67468 -2.277232 -2.798003 36.08603 -2.244507 -2.827578 35.6348 -2.18969 -2.816943 35.79706 -4.323683 -3.203652 35.82134 -4.245824 -3.531627 35.83982 -4.024387 -3.75189 35.83512 -3.700266 -3.831507 35.79883 -3.308175 -3.758248 35.73812 -2.915016 -3.542589 35.67258 -2.583113 -3.217203 35.6146 -2.349808 -2.831403 35.57645 -2.267882 -2.780938 36.34638 -4.120121 -3.082424 36.36668 -4.057299 -3.337795 36.38491 -3.878696 -3.509028 36.38282 -3.581614 -3.570949 36.35407 -3.250355 -3.514104 36.30341 -2.933597 -3.346272 36.25004 -2.65455 -3.092919 36.20287 -2.45752 -2.792351 36.17226 -2.387723 -2.467684 36.35789 -4.086902 -2.450409 36.33766 -4.136795 -2.203081 36.34048 -3.902626 -2.170768 36.31864 -3.940462 -2.02712 36.3139 -3.594033 -1.984406 36.2904 -3.617171 -1.966903 36.27482 -3.247719 -1.921268 36.24892 -3.250014 -2.033158 36.23027 -2.917691 -1.989932 36.20028 -2.899182 -2.213941 36.19898 -2.627584 -2.17954 36.16459 -2.588718 -2.480342 36.18632 -2.42461 -2.461561 36.148 -2.368077 -2.436302 36.2754 -4.189853 -2.412826 35.8398 -4.303584 -2.141546 36.25432 -3.981217 -2.07426 35.81459 -4.068483 -1.945621 36.22501 -3.643989 -1.849051 35.78228 -3.719174 -1.879037 36.18089 -3.256613 -1.77238 35.73412 -3.301272 -1.951874 36.12954 -2.884474 -1.855787 35.67949 -2.883942 -2.15221 36.09242 -2.557101 -2.085763 35.63909 -2.526532 -2.449414 36.07583 -2.325742 -2.427082 35.6223 -2.277232 -2.430373 35.77066 -4.245824 -2.102792 35.74617 -4.024387 -1.885026 35.71276 -3.700266 -1.810827 35.66639 -3.308175 -1.891384 35.61576 -2.915016 -2.113753 35.57892 -2.583113 -2.443922 35.56392 -2.349808 -2.479383 36.32715 -4.057299 -2.223818 36.3119 -3.878696 -2.054322 36.28747 -3.581614 -1.996683 36.25089 -3.250355 -2.059654 36.20808 -2.933597 -2.233016 36.17707 -2.65455 -2.49036 36.16337 -2.45752 -3.203845 6.193706 0.741494 -3.187254 6.041562 0.731468 -2.882254 6.070666 1.735281 -2.928667 6.30228 1.707811 -2.768043 6.23474 0.082484 -2.767282 6.068767 0.06067395 -2.215925 6.430581 2.279062 -2.132767 6.097488 2.307595 -1.336677 6.138955 2.172481 -1.422772 6.511059 2.142611 -0.970052 6.218572 1.545116 -1.021392 6.563915 1.480792 -1.173011 6.254025 0.784695 -1.228657 6.540361 0.787043 -1.340036 6.243584 0.523219 -2.02997 6.16573 -0.03667098 -2.047372 6.341658 -0.02597296 -1.398965 6.496665 0.517763 -3.381799 4.991142 0.518545 -3.46306 4.684669 0.451651 -3.208362 4.389241 1.525363 -3.062511 4.744936 1.674625 -3.020071 5.090382 -0.197136 -3.108025 4.806704 -0.25074 0.276027 2.039969 4.264972 0.245347 2.278276 4.208721 -0.111136 2.300481 4.350287 -0.117883 2.035079 4.414584 0.512533 2.031598 3.996805 0.47629 2.293606 3.988233 -0.822869 4.41731 1.583722 -0.985402 3.85723 0.767341 -1.366794 4.367966 0.149685 -1.271804 4.750786 0.338525 -2.329551 4.710088 -0.400595 -2.260528 5.051391 -0.311361 -2.78341 3.876154 2.074729 -2.094947 4.449933 2.419375 -1.937165 3.788042 2.754583 -1.034177 3.939229 2.419072 -1.181963 4.511913 2.210156 -2.618788 3.335284 2.520123 -0.572588 3.816247 1.865505 -0.673631 3.316031 1.100066 -1.647124 3.218869 3.193503 -1.106248 2.783422 3.760956 -0.322882 2.955478 3.404404 -0.779645 3.419307 2.77561 -2.461233 2.760632 2.930142 -1.608186 2.303294 3.826382 0.2092069 2.801598 2.920689 -0.272933 3.272076 2.215626 0.249643 2.259857 2.482322 -0.389218 2.731707 1.413138 0.380982 2.543636 3.34274 0.498634 2.101523 3.135528 -0.1095589 2.70047 3.704354 -0.696323 2.543515 4.083694 -1.004563 2.121525 4.192582 -0.99781 2.869634 0.750577 -1.260799 3.429349 0.491532 0.111527 1.81807 2.397965 -0.54243 2.143915 1.271523 0.375492 1.717038 3.107846 0.217065 1.764197 4.220673 0.433958 1.747481 3.957424 -0.150022 1.758523 4.345657 -1.65664 1.857843 3.679735 -0.948855 1.770469 4.107267 -2.525682 2.172729 2.715372 -3.023675 3.445551 1.778389 -2.871059 2.889995 2.117479 -3.196169 3.762573 1.199442 -3.480879 4.131299 0.321519 -3.16324 4.22155 -0.2497529 -2.497573 4.121949 -0.391758 -1.723176 3.750461 0.125041 -0.684639 2.269104 1.070716 -2.680263 2.328482 2.504056 -2.160777 3.417964 1.135654 -1.947224 2.851304 1.432338 -1.688407 2.279065 1.791909 -0.784017 1.838136 3.047528 -1.538996 2.144953 1.998822 -0.317791 1.675128 3.618834 0.450441 1.737385 3.604266 0.56392 2.038077 3.589898 0.462402 2.385477 3.663754 -0.518984 2.052271 4.368081 -0.390065 2.404443 4.234572 -0.495445 1.758132 4.274049 -2.870741 6.2772 1.664103 -3.127299 6.171844 0.761679 -2.721359 6.209196 0.146804 -1.464724 6.475209 2.071697 -2.215511 6.406021 2.193956 -1.090895 6.527092 1.454882 -1.282203 6.507135 0.824899 -2.051639 6.314963 0.04620498 -1.461866 6.461425 0.544234 -2.510005 5.302254 1.518389 -2.698495 5.292511 0.889287 -2.415081 5.318054 0.445385 -1.491122 5.157994 1.736007 -2.018013 5.215776 1.859817 -1.235955 5.163521 1.27922 -1.371361 5.225288 0.870855 -1.92761 5.363423 0.369929 -1.559016 5.276031 0.623842 -1.993641 5.278602 1.095006 -3.029603 3.521575 1.314 -2.977402 3.451258 0.959351 -2.473551 3.425926 0.69117 -2.37875 3.505527 0.83246 -2.025819 3.443209 0.265562 -1.701519 3.509693 0.344274 -2.904745 2.568244 0.390908 -2.963033 2.603585 0.211292 -2.881571 2.610343 0.103271 -2.704788 2.549977 0.345483 -2.752333 2.601081 0.05887699 -2.589731 2.564813 0.161377 -3.0914 3.720467 -0.163995 -3.331859 3.68082 0.287376 -2.583408 3.679248 -0.27055 -1.192041 4.649407 2.195365 -0.837275 4.683531 1.589848 -2.082797 4.761684 2.324466 -2.944792 4.952627 1.735693 -3.334602 5.104064 0.555912 -2.981226 5.1816 -0.165961 -2.217114 5.163458 -0.26129 -1.202324 4.917359 0.541636 -1.383716 4.987702 0.304815 -2.912107 5.866943 1.807439 -2.106164 5.870166 2.412447 -3.256892 5.869276 0.725931 -2.800316 5.911573 -0.02209395 -1.978623 5.988444 -0.132504 -1.277426 6.022395 0.424873 -0.825019 5.97209 1.562324 -1.031321 6.019797 0.801457 -1.232068 5.899738 2.257594 -2.117187 5.003099 2.407824 -2.945299 5.145637 1.800134 -3.341286 5.262232 0.578827 -2.967142 5.334192 -0.164964 -2.177356 5.332941 -0.261029 -1.379503 5.202916 0.286677 -1.131528 5.126813 0.622784 -0.774424 4.961849 1.622083 -1.164889 4.931625 2.254824 -4.00213 7.322709 -9.598745 -3.204286 6.904992 -9.079738 -3.272823 6.717159 -9.183439 -4.078569 7.178572 -9.694562 -4.74228 7.437675 -9.354551 -4.828918 7.281301 -9.474783 -2.928873 6.540297 -8.294743 -3.322794 6.359719 -7.596483 -3.410759 6.091029 -7.679707 -3.019256 6.300301 -8.366398 -4.052715 6.44376 -7.377345 -4.090941 6.197576 -7.482968 -4.59587 6.744105 -7.712017 -4.690178 6.544226 -7.822292 -4.867662 6.696175 -8.030143 -4.778348 6.891509 -7.931935 -5.064284 7.278933 -8.691037 -5.148387 7.117223 -8.798972 -4.416118 6.151358 -10.40166 -3.449862 5.604434 -9.831167 -3.556374 5.302673 -10.08232 -4.477978 5.829172 -10.57445 -5.207448 6.24973 -10.23777 -5.247577 5.957615 -10.41293 -2.137091 2.432543 -6.448002 -1.868008 2.449018 -6.771879 -1.964758 2.703193 -6.797416 -2.210607 2.661062 -6.505188 -2.494327 2.645695 -6.358725 -2.464211 2.387197 -6.310689 -4.234531 4.819448 -7.822261 -5.264251 5.391264 -8.527645 -5.425305 5.069216 -8.744134 -5.000777 4.390559 -8.360026 -5.55997 6.021971 -9.573198 -5.642526 5.680234 -9.748506 -3.053144 4.994419 -8.767286 -3.199037 4.621934 -9.641208 -3.5351 4.874841 -7.967453 -3.399963 4.296793 -7.884377 -2.816449 4.289918 -8.671154 -2.869669 3.972387 -9.512275 -4.085003 4.144686 -7.66083 -4.822839 3.728776 -8.124575 -2.536692 3.612311 -8.433921 -3.173401 3.694253 -7.673315 -2.796359 3.150393 -7.239796 -2.208377 3.065885 -7.886168 -2.563122 3.26687 -9.398161 -1.968063 2.638438 -8.382168 -3.893621 3.503438 -7.437636 -3.419609 2.943931 -6.909288 -4.647448 3.010056 -7.91984 -3.826483 2.408036 -7.05812 -3.275358 2.339386 -6.605028 -3.100158 2.80586 -6.667878 -2.621965 3.011624 -7.021408 -2.055228 2.909163 -7.447011 -1.798237 2.506663 -7.685535 -5.20906 4.026103 -8.815705 -5.079279 3.328402 -8.647102 -4.729386 2.398084 -8.20194 -3.803339 1.959225 -7.197405 -3.211426 1.955013 -6.714252 -2.43874 2.10056 -6.385771 -2.123696 2.153455 -6.506481 -1.886314 2.165738 -6.812921 -2.031993 2.177304 -8.456655 -1.850873 2.14713 -7.64569 -2.740996 2.643654 -9.617927 -3.439783 4.245705 -10.07471 -3.19941 3.560878 -9.98495 -3.913443 4.680189 -10.31656 -4.629426 5.235591 -10.73053 -5.264532 5.330188 -10.57852 -5.61934 5.085453 -10.04192 -5.391255 4.49579 -9.264992 -4.879847 2.565936 -8.380685 -2.898597 2.850193 -9.80706 -4.307715 4.157529 -9.441971 -4.129131 3.475269 -9.309376 -3.88468 2.729027 -9.095371 -3.731344 2.535956 -8.913496 -2.905828 2.069651 -7.835069 -2.501575 1.984694 -7.202858 -2.86288 2.338156 -6.393842 -2.773553 2.042492 -6.483862 -2.805579 2.692621 -6.480546 -1.78311 2.460718 -7.166841 -1.995708 2.791143 -7.102877 -1.840793 2.156467 -7.162617 -4.012402 7.265911 -9.53244 -3.269631 6.873217 -9.050568 -4.701304 7.375885 -9.30284 -3.013871 6.533047 -8.318671 -3.380437 6.366435 -7.667022 -4.059697 6.447656 -7.461336 -4.550728 6.721539 -7.766173 -4.739457 6.87595 -7.996356 -5.000692 7.228605 -8.683962 -4.285105 6.25709 -9.588953 -3.718915 6.039896 -9.189642 -4.783905 6.320475 -9.437708 -3.552248 5.810502 -8.65538 -3.836413 5.660455 -8.216236 -4.349417 5.669918 -8.111159 -4.691362 5.809516 -8.339647 -4.864545 5.929095 -8.572549 -5.011853 6.204631 -9.004516 -4.281778 5.963297 -8.837861 -3.871473 4.385667 -10.19045 -4.525711 4.314719 -9.717376 -4.638318 4.256211 -9.873742 -4.229134 4.338871 -10.26477 -5.183511 4.219557 -9.585311 -5.204458 4.220298 -9.241801 -4.837238 3.33364 -10.60531 -4.942634 3.284935 -10.4352 -5.117064 3.397364 -10.66167 -4.989291 3.395227 -10.70685 -5.153065 3.294204 -10.38032 -5.199478 3.36863 -10.55605 -4.747439 4.704591 -10.74143 -5.24862 4.746298 -10.64077 -5.509198 4.617898 -10.20887 -3.542967 4.998709 -7.953081 -4.220352 5.052764 -7.786065 -3.138731 5.281042 -8.721352 -3.419673 5.767251 -9.654271 -4.387561 6.249082 -10.31303 -5.182382 6.344226 -10.1677 -5.517667 6.126606 -9.488242 -5.082064 5.506901 -8.364298 -5.249376 5.651839 -8.584918 -2.976374 6.12618 -8.400425 -3.253491 6.554335 -9.297566 -4.120593 7.033693 -9.867807 -4.954806 7.146045 -9.63322 -5.319387 6.952194 -8.89245 -5.041274 6.538651 -8.116608 -4.782807 6.324728 -7.807861 -4.169415 5.994086 -7.450487 -3.408815 5.89364 -7.653327 -3.349455 5.938805 -9.587837 -3.042241 5.4838 -8.67129 -4.353912 6.426792 -10.26249 -5.169607 6.533681 -10.1057 -5.5152 6.311806 -9.399855 -5.257191 5.866594 -8.53328 -4.213503 5.250305 -7.672267 -5.021573 5.674963 -8.229693 -3.497103 5.203393 -7.856526 -0.654144 41.03882 -2.348112 -0.851327 41.49375 -1.84502 -0.74561 41.17703 -1.532715 -0.528747 40.68649 -2.077948 -1.240101 41.89711 -1.437894 -1.174257 41.61745 -1.084146 -1.814711 42.19175 -1.193389 -1.804551 41.93795 -0.815947 -2.487679 42.33282 -1.148725 -2.540323 42.09129 -0.767075 -0.508093 39.73763 -3.13616 -0.538296 39.85 -3.21573 -0.771304 41.06731 -2.397796 -0.954504 41.50252 -1.919588 -1.31473 41.88058 -1.542959 -1.850431 42.15779 -1.31583 -2.480061 42.29061 -1.274388 -0.605846 40.30784 -1.824917 -0.81943 40.80061 -1.279979 -0.922532 40.72264 -1.273271 -0.718792 40.2489 -1.794206 -1.240542 41.23752 -0.838988 -1.320678 41.1363 -0.86078 -1.862949 41.55667 -0.574144 -1.908885 41.43869 -0.613071 -2.591893 41.70948 -0.525767 -2.598238 41.58349 -0.568197 -0.579374 39.84941 -3.243588 -0.52133 39.60031 -3.037005 -0.560022 39.56648 -3.041056 -0.568284 39.70813 -3.16317 -1.317704 41.50844 -1.201869 -0.938518 41.11258 -1.596429 -1.879658 41.79824 -0.96445 -2.53915 41.93705 -0.921293 -0.745048 40.65811 -2.096001 -4.267401 41.3272 -2.664021 -4.491383 41.00275 -2.424402 -4.297318 41.46049 -1.843242 -4.090811 41.7523 -2.128249 -3.888543 41.83407 -1.321457 -3.719495 42.09499 -1.654669 -3.271469 42.05503 -0.9442 -3.156549 42.29885 -1.310706 -4.41757 40.1596 -3.554897 -4.478348 40.0545 -3.483281 -3.976247 41.74369 -2.18378 -4.140427 41.3362 -2.69236 -3.631413 42.06547 -1.745508 -3.106048 42.25801 -1.425609 -4.519653 40.6202 -2.167103 -4.424403 40.54465 -2.118189 -4.241553 40.98753 -1.563454 -4.328375 41.08066 -1.586767 -3.860428 41.339 -1.082831 -3.926172 41.45186 -1.073794 -3.283594 41.5484 -0.733262 -3.316401 41.67267 -0.70122 -4.372915 40.15217 -3.575258 -4.504191 39.91818 -3.385228 -4.471195 39.87863 -3.383012 -4.419806 40.01552 -3.499909 -4.1089 41.36561 -1.873617 -3.74592 41.70224 -1.414169 -3.194821 41.9032 -1.079435 -4.282415 40.94042 -2.405274 -2.510586 42.10069 -1.140168 -2.484854 42.20138 -1.299001 -2.517582 42.20457 -1.306352 -2.565503 42.10589 -1.152765 -2.454525 42.32848 -1.530662 -2.621655 42.11205 -1.173407 -2.551252 42.20845 -1.318677 -2.593457 42.21413 -1.340508 -2.692907 42.12101 -1.210054 -2.636616 42.2205 -1.367204 -2.764762 42.13091 -1.254705 -2.688218 42.227 -1.390421 -2.852073 42.14106 -1.290577 -2.732057 42.23744 -1.437365 -2.924013 42.15668 -1.36805 -2.781489 42.25859 -1.495473 -3.005501 42.18955 -1.465089 -2.817072 42.3133 -1.592151 -3.055705 42.31783 -1.704868 -3.068955 42.27712 -1.632583 -2.80827 42.28665 -1.54553 -3.050372 42.2339 -1.553081 -4.194467 40.09418 -1.256705 -4.327035 39.94063 -1.350293 -4.318359 39.8973 -1.256807 -4.162603 40.04511 -1.094945 -4.463254 39.76514 -1.440185 -4.467411 39.75992 -1.439158 -3.559323 41.49355 -1.128872 -3.679106 41.2056 -1.081602 -3.593316 41.19791 -0.857276 -3.457412 41.49146 -0.931309 -3.732852 40.86785 -0.822421 -3.801872 40.85581 -1.082096 -3.265895 41.92395 -1.223504 -3.418391 41.73701 -1.173367 -3.306378 41.73176 -1.012731 -3.155666 41.90941 -1.097943 -3.872797 40.62553 -1.081261 -3.829437 40.60377 -0.833796 -3.921235 40.37805 -0.885745 -3.960534 40.42818 -1.106267 -4.074951 40.23637 -1.17912 -4.041306 40.15784 -0.991715 -3.131855 41.69879 -0.959319 -3.007543 41.89181 -1.048201 -3.256519 41.44849 -0.875882 -3.380057 41.12168 -0.798699 -3.528248 40.66719 -0.80187 -3.653818 40.42761 -0.863969 -3.806481 40.16599 -0.984327 -3.965013 40.02161 -1.09626 -4.106909 39.94865 -1.181953 -4.285227 39.84837 -1.311727 -4.463859 39.76036 -1.439553 -3.101232 42.05757 -1.29208 -3.005762 42.03981 -1.191176 -2.886046 42.02822 -1.146545 -4.346407 40.56512 -1.527536 -4.472465 40.40812 -1.583953 -4.487281 40.30998 -1.495828 -4.349796 40.42383 -1.361964 -4.597962 40.19472 -1.644803 -4.599831 40.1924 -1.643417 -3.771693 41.59571 -1.549405 -3.893202 41.35766 -1.546161 -3.827098 41.3286 -1.255599 -3.703713 41.57472 -1.299766 -3.937986 41.09125 -1.226466 -3.974488 41.13488 -1.527714 -3.457755 42.01768 -1.549785 -3.628006 41.82074 -1.549095 -3.553906 41.79034 -1.337574 -3.38576 41.9674 -1.375949 -4.065952 40.92692 -1.529424 -4.026235 40.87848 -1.215964 -4.118022 40.7072 -1.233772 -4.115638 40.81229 -1.558149 -4.220932 40.70442 -1.509427 -4.211402 40.54454 -1.266316 -3.897543 40.68487 -1.112008 -4.00408 40.54858 -1.156613 -4.13205 40.40267 -1.237811 -4.275326 40.32197 -1.337433 -4.439297 40.2543 -1.478865 -4.597898 40.19198 -1.641709 -3.265462 42.14921 -1.551971 -3.204462 42.09593 -1.421135 -4.534253 39.71819 -2.362205 -4.479438 39.07085 -2.36246 -4.491806 39.40394 -2.235906 -4.048584 41.69247 -2.085003 -4.070188 41.38003 -1.726821 -3.919008 41.63927 -1.705465 -3.549986 42.14811 -1.889363 -3.730992 41.88232 -1.695697 -3.522943 42.07942 -1.687362 -4.27543 41.11477 -2.226527 -4.272913 40.90004 -1.795757 -4.18725 41.12637 -1.757629 -3.304837 42.20524 -1.666782 -4.380608 40.80381 -2.306083 -4.403596 40.43768 -1.891261 -4.341638 40.6799 -1.842427 -4.220982 40.41135 -1.718578 -4.276707 40.16621 -1.847311 -4.452213 40.18955 -1.949224 -4.498074 39.69974 -2.122653 -4.408793 39.44418 -2.221187 -4.368724 39.71372 -2.098751 -4.444815 39.15152 -2.338218 -4.478503 40.24723 -2.348577 -4.484983 39.95373 -2.027951 -4.326958 39.94379 -1.974775 -3.53275 39.57486 -0.904122 -3.530053 39.5768 -0.903188 -3.435831 39.79645 -0.738694 -3.54036 39.82472 -0.745006 -3.527804 40.06932 -0.617297 -3.362179 40.00561 -0.598256 -3.140453 40.98122 -0.442151 -3.05594 41.26029 -0.530377 -3.241082 41.19416 -0.670136 -3.318416 40.99869 -0.594493 -3.107946 41.49928 -0.777324 -2.951694 41.53582 -0.650585 -2.859478 41.73729 -0.780989 -2.997334 41.71699 -0.87697 -2.888795 41.89081 -0.978387 -2.770425 41.89006 -0.913158 -3.254144 40.39815 -0.430783 -3.212284 40.67685 -0.399986 -3.391349 40.73028 -0.542067 -3.436976 40.51182 -0.533891 -3.303891 40.19544 -0.499788 -3.494664 40.2782 -0.558668 -3.425058 40.96555 -0.794992 -3.442133 40.74753 -0.775054 -3.471397 40.51303 -0.739959 -3.504146 40.31008 -0.743773 -3.531874 40.097 -0.777342 -3.5334 39.57729 -0.904985 -3.542065 39.85319 -0.83736 -2.788964 42.01995 -1.089231 -2.692392 42.01073 -1.040656 -3.44185 39.12532 -0.883553 -3.437876 39.12781 -0.882284 -3.245319 39.2616 -0.765192 -3.31435 39.24344 -0.71537 -3.192362 39.37776 -0.564297 -3.081861 39.39272 -0.667052 -2.386712 40.79358 -0.349967 -2.356015 41.17765 -0.450419 -2.515159 41.21315 -0.406169 -2.546383 40.8464 -0.291621 -2.497374 41.51144 -0.539908 -2.347373 41.48241 -0.5744 -2.359532 41.70703 -0.719093 -2.48946 41.72466 -0.695802 -2.477102 41.86862 -0.847136 -2.371792 41.85864 -0.859514 -2.547386 40.12289 -0.361524 -2.447739 40.46305 -0.312006 -2.610945 40.51856 -0.223263 -2.699615 40.18933 -0.20546 -2.391927 42.09271 -1.143642 -2.413996 42.19679 -1.301213 -2.450644 42.19882 -1.297416 -2.453088 42.09635 -1.137515 -2.796898 39.65579 -0.504918 -2.661817 39.86766 -0.420412 -2.812814 39.92882 -0.25078 -2.949908 39.6847 -0.33308 -2.655977 41.53184 -0.534548 -2.616238 41.73518 -0.695022 -2.7393 41.73814 -0.72448 -2.809913 41.5371 -0.574913 -2.673665 41.88375 -0.873764 -2.577509 41.87702 -0.850544 -2.769213 40.91561 -0.271397 -2.711007 41.24686 -0.391885 -2.897661 41.25721 -0.444205 -2.979248 40.95507 -0.3415 -2.926604 40.28946 -0.168949 -2.845589 40.60083 -0.195684 -3.063531 40.6485 -0.279094 -3.137648 40.36372 -0.264008 -3.146081 39.76045 -0.286418 -3.030334 40.01754 -0.209296 -3.233612 40.09163 -0.298822 -3.328793 39.84731 -0.368772 -3.447272 39.1284 -0.88391 -3.445508 39.12384 -0.884548 -3.387181 39.25413 -0.688581 -3.454265 39.30515 -0.722557 -3.434761 39.48023 -0.579201 -3.315616 39.40845 -0.515737 -3.236733 39.57301 -0.38811 -3.394073 39.65454 -0.465259 -2.933786 39.51531 -0.58641 -3.071474 39.5199 -0.439545 -2.541373 41.99588 -0.994291 -2.616096 42.00285 -1.012056 -2.379773 41.98376 -0.998239 -2.462993 41.98957 -0.990424 -3.05095 39.23942 -0.924864 -3.04799 39.24225 -0.924877 -2.816597 39.41216 -0.815031 -2.844073 39.40093 -0.706495 -2.651812 39.59631 -0.532342 -2.612906 39.58956 -0.717967 -2.106383 40.68918 -0.596551 -2.046496 41.12049 -0.648791 -2.195627 41.13247 -0.527457 -2.223504 40.74575 -0.428026 -2.194548 41.43812 -0.63995 -2.04966 41.39097 -0.720881 -2.079483 41.64506 -0.81963 -2.217828 41.67812 -0.767987 -2.246314 41.84514 -0.891864 -2.121886 41.83292 -0.925139 -2.282032 40.07662 -0.630388 -2.174312 40.37441 -0.604746 -2.280352 40.43048 -0.380861 -2.372649 40.10106 -0.388626 -2.241614 42.08676 -1.186253 -2.323668 42.19385 -1.326775 -2.368619 42.19512 -1.312556 -2.315431 42.08936 -1.162301 -2.429373 39.81514 -0.662302 -2.48603 39.84891 -0.429347 -2.651604 39.8576 -0.429404 -2.781697 39.61647 -0.547701 -3.052187 39.24219 -0.923925 -2.921672 39.42678 -0.721544 -2.276302 41.97763 -1.022205 -2.174062 41.97426 -1.048129 -3.322819 40.13309 -0.473865 -3.393695 39.90825 -0.555707 -3.443067 39.71365 -0.640411 -3.46833 39.53298 -0.713945 -3.448721 39.13396 -0.882999 -3.473909 39.34859 -0.794275 -2.248121 39.9121 -0.691364 -2.24707 39.91375 -0.69316 -2.05152 40.07942 -0.725368 -2.065911 40.09411 -0.624888 -1.906277 40.27773 -0.598693 -1.890806 40.22598 -0.759044 -1.656846 40.82198 -0.902025 -1.613425 41.09055 -0.910154 -1.765012 41.16894 -0.674702 -1.752671 40.95613 -0.629467 -1.799155 41.41966 -0.7401 -1.630643 41.35554 -0.951212 -1.675904 41.60466 -1.00937 -1.855004 41.64912 -0.839838 -1.926335 41.8236 -0.949242 -1.754132 41.80675 -1.079379 -1.718305 40.51798 -0.847466 -1.686707 40.66222 -0.880537 -1.744705 40.77761 -0.622463 -1.760681 40.61837 -0.620308 -2.022133 42.08247 -1.273572 -2.194774 42.19328 -1.379061 -2.254804 42.19071 -1.339243 -2.124256 42.0805 -1.204422 -1.765436 40.39562 -0.800068 -1.78185 40.48326 -0.603076 -2.098452 40.85762 -0.631719 -2.063475 40.72373 -0.625171 -2.035443 40.59312 -0.617576 -2.026011 40.47576 -0.612119 -2.059216 40.32405 -0.615024 -2.248474 39.91335 -0.691929 -2.14569 40.13477 -0.641008 -2.014828 41.96353 -1.07137 -1.871815 41.96067 -1.16936 -1.757218 39.74602 -1.098923 -1.757164 39.74613 -1.099126 -1.599009 39.88846 -1.207014 -1.597587 39.90766 -1.059346 -1.458951 40.07981 -1.039383 -1.459734 40.02727 -1.28319 -1.174605 40.82542 -1.33242 -1.210559 41.11055 -1.321405 -1.332487 41.13882 -1.029675 -1.312926 40.87508 -1.002607 -1.388269 41.39585 -1.071552 -1.279163 41.38589 -1.324359 -1.378576 41.6427 -1.346444 -1.485461 41.63339 -1.140145 -1.613622 41.82871 -1.212447 -1.512177 41.86592 -1.374871 -1.223681 40.35879 -1.376572 -1.17501 40.58489 -1.339362 -1.311119 40.64001 -1.010496 -1.33667 40.43331 -1.016072 -1.885613 42.14068 -1.44861 -2.114199 42.23114 -1.482595 -2.147339 42.20716 -1.427346 -1.942827 42.10301 -1.355215 -1.356974 40.16221 -1.337468 -1.369533 40.24811 -1.033245 -1.646608 40.62092 -0.918364 -1.633751 40.44508 -0.929509 -1.633901 40.29258 -0.946478 -1.665795 40.11826 -0.979839 -1.757234 39.74619 -1.098841 -1.711869 39.94709 -1.019231 -1.764887 41.98182 -1.282609 -1.682463 42.02631 -1.409571 -0.811208 39.11053 -1.915553 -0.699996 39.41218 -2.026974 -0.779062 39.40301 -1.79786 -1.003432 41.12727 -1.459404 -0.930199 40.85651 -1.47561 -0.766053 40.86869 -1.913198 -1.247159 41.68261 -1.475307 -1.356092 41.97301 -1.69755 -1.421445 41.91316 -1.501314 -0.881171 40.61824 -1.503791 -0.84593 40.38906 -1.543159 -0.686768 40.52629 -1.985104 -1.623854 42.07108 -1.519813 -0.807623 40.14457 -1.580937 -0.776785 39.89622 -1.62788 -0.673276 39.94353 -2.015885 -1.847799 42.17966 -1.525816 -1.107032 41.40961 -1.45827 -1.098141 40.13741 -1.467981 -1.01587 39.89279 -1.578495 -0.859375 38.87081 -2.047835 -0.855153 38.78159 -2.045588 -0.878976 39.16518 -1.924121 -0.904516 39.43788 -1.798713 -0.768465 39.65712 -1.703015 -0.950532 39.67 -1.685739 -1.841809 42.22095 -1.598737 -2.093997 42.25559 -1.528932 -4.615173 39.70745 -2.157993 -4.609887 38.97661 -2.139744 -4.332366 42.05392 -1.883775 -4.533681 41.2642 -2.030384 -3.665229 42.52448 -1.677184 -4.517722 40.83244 -2.101013 -4.573629 40.23944 -2.136525 -3.053124 42.43901 -1.881683 -2.42635 42.43255 -1.757943 -4.512743 38.16217 -2.075058 -4.41201 38.12888 -2.295968 -5.242548 38.93355 -3.000062 -5.150198 38.93014 -3.479997 -5.121253 38.05597 -3.374964 -5.158557 38.04869 -2.901528 -5.240906 39.66269 -3.038454 -5.125644 39.64332 -3.535049 -5.164021 40.28594 -3.024295 -5.077514 40.25634 -3.513915 -5.073329 40.88942 -2.975316 -4.975536 40.88002 -3.470039 -4.810195 41.52626 -2.867379 -4.715282 41.55992 -3.364277 -4.440575 42.17692 -2.685815 -4.327301 42.17228 -3.166371 -3.609096 42.59768 -2.393921 -3.589806 42.583 -2.769428 -3.010678 42.59597 -2.321063 -2.986735 42.64461 -2.524835 -2.376262 42.57941 -2.199149 -2.357677 42.62272 -2.371011 -5.116986 38.94159 -2.491357 -4.984543 38.03557 -2.399272 -5.132603 39.67739 -2.511043 -5.060449 40.29774 -2.494389 -4.977138 40.87104 -2.439569 -5.645799 41.33884 -2.53758 -5.773219 41.46942 -2.825995 -5.639944 41.23237 -2.598534 -5.606217 41.40901 -2.565253 -5.544492 41.44518 -2.649917 -3.62369 42.6348 -1.96848 -4.413226 42.20871 -2.166434 -3.033972 42.51408 -2.076907 -2.402996 42.50548 -1.960902 -4.40046 37.77626 -2.078178 -4.336653 37.74953 -2.312549 -5.017599 37.57851 -3.259736 -5.045455 37.59157 -2.791435 -4.866705 37.63433 -2.32251 -4.705031 38.05274 -3.467751 -4.666416 37.6035 -3.414426 -4.402962 38.05919 -3.153843 -4.397747 37.64917 -3.155885 -4.25755 37.39595 -2.089134 -4.112329 36.93918 -2.168161 -4.135317 36.88363 -2.404392 -4.23957 37.38077 -2.334554 -4.896485 37.14248 -2.660253 -4.896448 37.10912 -3.122281 -4.818783 36.56615 -2.972026 -4.747217 36.68038 -2.527525 -4.709013 37.23438 -2.238038 -4.519107 36.82063 -2.180355 -4.643235 37.16341 -3.352724 -4.648633 36.55532 -3.264356 -4.409812 37.25069 -3.149064 -4.406519 36.65848 -3.134613 -5.397644 34.54569 -0.788787 -5.555846 34.0276 -0.193377 -5.565188 34.01919 -0.190448 -5.677878 34.37008 -0.787262 -5.32778 34.60497 -0.772399 -5.553934 34.03146 -0.193728 -5.479678 34.64189 -0.613746 -5.558568 34.02984 -0.185639 -5.640924 34.60341 -0.581281 -5.785614 34.47729 -0.605271 -5.568804 34.02077 -0.182269 -5.564063 34.02566 -0.182541 -5.786705 34.40883 -0.706666 -5.569016 34.01769 -0.186433 -5.084593 35.07564 -1.336871 -5.283709 34.85278 -1.057386 -5.655571 34.65803 -1.172821 -5.535379 34.86381 -1.529636 -4.980721 35.15416 -1.237968 -5.197058 34.91914 -0.990159 -5.282443 35.21631 -0.987862 -5.431198 34.93224 -0.780492 -5.562668 35.13251 -1.031602 -5.77039 35.00272 -1.208724 -5.826688 34.76744 -0.913593 -5.639046 34.86385 -0.793721 -5.737578 34.86343 -1.464705 -5.832472 34.6355 -1.065351 -4.495467 35.51066 -1.910948 -4.784096 35.26166 -1.626864 -5.258104 35.01857 -1.919757 -4.97998 35.16422 -2.203261 -4.39152 35.62587 -1.76026 -4.676917 35.35439 -1.495474 -4.733387 35.71578 -1.513201 -5.01079 35.46615 -1.255927 -5.037784 35.60432 -1.611975 -5.182443 35.47336 -1.797288 -5.498087 35.25672 -1.547518 -5.314478 35.39354 -1.342127 -5.175373 35.14237 -2.148495 -5.440997 35.02413 -1.8749 -4.096718 36.37492 -2.41736 -4.242374 35.91171 -2.168659 -4.630939 35.49094 -2.562796 -4.448761 36.02767 -2.930748 -4.03493 36.46123 -2.198968 -4.156661 36.04371 -2.001204 -4.398191 36.48077 -2.027199 -4.493398 36.06114 -1.782398 -4.656854 36.28059 -2.268154 -4.816263 36.06816 -2.664017 -4.902852 35.6939 -2.102412 -4.775614 35.89019 -1.923616 -4.874035 35.59166 -2.72627 -4.994016 35.43168 -2.546402 -4.995034 35.62538 -2.280969 -4.9045 35.75415 -2.456108 -4.838986 35.44673 -2.549649 -4.685671 35.94489 -2.990114 -5.295051 35.20087 -2.252442 -5.324011 35.41194 -1.999326 -4.703533 39.60058 -3.65362 -4.729206 38.91616 -3.602261 -5.504528 41.42586 -2.748986 -5.494215 41.34347 -2.805174 -5.549113 41.24932 -2.766395 -5.601812 41.2114 -2.688084 -4.437022 39.70841 -3.305252 -4.414905 38.98508 -3.234906 -5.466339 35.14432 -1.479534 -5.416847 34.92663 -1.779631 -5.493672 35.0378 -2.002483 -5.596863 35.19861 -1.737629 -5.728675 34.81952 -1.848646 -5.926356 34.53256 -1.742303 -5.994248 34.59748 -1.607177 -5.854743 34.88184 -1.636162 -5.649838 34.72581 -1.669031 -5.853193 34.48345 -1.617128 -5.74744 34.79934 -1.435238 -5.890968 34.5797 -1.486171 -6.148801 34.24474 -1.511843 -6.147305 34.24434 -1.509416 -6.147716 34.24252 -1.51262 -6.145892 34.24221 -1.511679 -4.641168 40.2369 -3.629025 -4.478202 40.23436 -3.358408 -4.555092 40.83862 -3.56203 -4.382934 40.82514 -3.406817 -4.655449 41.26502 -2.046506 -4.822851 41.04624 -2.204887 -4.997774 40.98477 -2.435091 -4.630451 41.63763 -2.012264 -4.694422 41.77513 -2.260568 -4.865089 41.48877 -2.837227 -4.753645 41.77894 -2.678179 -5.005173 41.18635 -2.803735 -5.125848 41.24993 -2.140275 -5.155864 41.05093 -2.198947 -5.173932 41.00884 -2.402261 -5.117458 41.44151 -2.203073 -5.061723 41.51547 -2.354913 -5.027572 41.38508 -2.753264 -5.021744 41.47976 -2.652681 -5.100253 41.13422 -2.727591 -5.399378 41.26961 -2.294954 -5.420418 41.09173 -2.375793 -5.379074 41.0424 -2.528828 -5.346796 41.39274 -2.332906 -5.26378 41.44635 -2.473772 -5.229619 41.29483 -2.751574 -5.213861 41.42148 -2.673636 -5.28315 41.13591 -2.706206 -4.80868 40.84469 -4.011149 -4.874606 40.20227 -4.109788 -5.056259 40.23064 -3.603131 -4.582978 41.57173 -3.867341 -4.194599 42.20989 -3.667835 -2.30261 42.68564 -2.943403 -2.841244 42.77185 -3.295982 -2.900875 42.74781 -3.077459 -3.463894 42.63655 -3.298201 -4.972953 39.56805 -4.231872 -5.04948 39.61276 -3.842408 -3.369747 42.66002 -3.604634 -4.023919 42.2355 -4.083029 -4.394505 41.57847 -4.36248 -4.610678 40.82329 -4.527462 -4.714344 40.17852 -4.607889 -4.837164 39.52606 -4.674381 -9.149527 34.93431 -6.252293 -9.395145 33.82175 -6.820978 -9.378624 33.81077 -6.800582 -9.168322 34.7442 -5.830048 -8.4714 35.79338 -5.914423 -8.602035 35.54831 -5.36471 -8.007293 36.10058 -5.755944 -8.132646 35.88243 -5.166679 -6.936323 36.56703 -5.450558 -7.480281 36.37406 -5.617548 -7.535403 36.25433 -5.01038 -7.000909 36.42477 -4.855631 -5.90846 37.023 -5.157581 -6.403267 36.77627 -5.291066 -6.477108 36.62641 -4.725592 -5.980794 36.8911 -4.620461 -5.133916 37.9132 -4.841938 -5.478629 37.33441 -4.988964 -5.548886 37.23202 -4.514875 -5.175875 37.90735 -4.398219 -4.908008 39.1337 -4.712153 -5.017267 39.18085 -4.321288 -8.732323 34.75949 -6.548461 -9.365516 33.82116 -6.820652 -7.986051 35.5661 -6.417179 -7.532402 35.88606 -6.262295 -6.569325 36.32846 -5.886559 -7.073095 36.14805 -6.094646 -5.600245 36.80309 -5.519975 -6.067081 36.53065 -5.687836 -4.864542 37.77386 -5.21488 -5.19946 37.15658 -5.358574 -4.522353 39.47152 -5.050088 -4.593469 39.06594 -5.09033 -4.468058 40.14396 -5.010797 -4.399716 40.80377 -4.937166 -4.189291 41.57936 -4.738401 -3.82514 42.25252 -4.43558 -3.236183 42.67118 -3.885943 -2.766781 42.78191 -3.432184 -5.02342 39.1685 -4.179328 -5.049431 38.86236 -4.379228 -5.085946 38.5398 -4.345583 -5.059351 38.85486 -4.263732 -4.945516 38.81226 -4.738011 -4.644385 38.73749 -5.119356 -5.008785 38.49457 -4.779328 -4.707133 38.41447 -5.148721 -4.426397 40.05121 -3.136414 -4.321887 40.66775 -2.996166 -4.390414 39.60544 -3.396316 -9.337834 33.81651 -6.777223 -8.74576 34.46093 -5.642081 -8.126791 34.91445 -5.211307 -7.705471 35.1657 -5.00985 -7.168082 35.51983 -4.804323 -6.662749 35.74546 -4.665252 -6.168764 35.99436 -4.550743 -5.592198 36.32944 -4.415147 -5.063999 36.73436 -4.253283 -4.563809 37.53692 -4.014516 -4.390629 39.29547 -3.682403 -4.31546 38.2833 -3.950894 -4.269082 38.9307 -3.96927 -4.181663 37.99522 -3.786601 -4.114763 38.47705 -3.780742 -3.063141 37.21963 -3.715895 -3.003598 37.63733 -3.623209 -3.358279 37.70092 -3.609025 -3.369886 37.27035 -3.844661 -3.67472 37.50215 -3.724474 -3.623929 37.90178 -3.609923 -3.884781 38.10031 -3.642081 -3.942966 37.74758 -3.741356 -5.919711 33.75178 -6.455247 -6.343156 32.88936 -6.473116 -6.324414 32.84791 -6.46644 -5.584262 33.36706 -6.214408 -5.431636 34.41783 -6.197289 -4.935789 34.02412 -5.98785 -5.002239 35.09868 -6.023039 -4.371321 34.71757 -5.787175 -4.448558 35.66133 -5.441563 -3.884295 35.30992 -5.278621 -4.02792 36.14556 -4.844298 -3.523245 35.89757 -4.699249 -3.545312 36.67933 -4.334368 -3.138373 36.48574 -4.212292 -7.408602 33.4839 -5.975742 -7.406413 32.62631 -6.241889 -7.378178 32.62253 -6.21269 -6.97095 33.32391 -5.829104 -7.058001 34.15806 -5.628816 -6.580622 33.85804 -5.475589 -6.563702 34.78018 -5.349658 -5.955975 34.54255 -5.179654 -5.94484 35.46437 -4.941639 -5.355624 35.16774 -4.830622 -5.277941 36.02367 -4.597682 -4.790904 35.69507 -4.463125 -4.610389 36.53829 -4.268395 -4.175973 36.28649 -4.109969 -8.155909 34.02597 -5.618319 -8.302963 33.08687 -5.77621 -8.314226 33.09554 -5.745431 -7.862319 33.77291 -5.408796 -7.753948 34.81813 -5.374297 -7.364053 34.45419 -5.183811 -7.208838 35.49514 -5.122691 -6.7451 35.10708 -4.983503 -6.518012 36.13261 -4.933459 -6.051426 35.74441 -4.722482 -5.848036 36.55418 -4.620779 -5.417149 36.29273 -4.403418 -4.825978 37.17827 -4.218526 -4.584486 36.92308 -3.970269 -4.353315 36.47516 -4.278809 -5.171775 35.74584 -4.977218 -5.792629 35.2003 -5.333538 -6.458106 34.69657 -5.632981 -7.099237 34.17685 -5.756421 -7.661942 33.66282 -5.900036 -8.296035 33.08401 -5.782623 -3.906619 35.94376 -4.520801 -4.513795 35.34135 -4.96578 -5.072878 34.77103 -5.453261 -5.622547 34.22394 -5.851063 -6.189917 33.66605 -6.072146 -6.747349 33.21845 -6.321857 -7.387413 32.61432 -6.256869 -2.66153 37.14245 -3.879646 -2.648813 37.5737 -3.637392 -2.845715 36.31949 -4.613516 -3.18303 35.75086 -5.216074 -3.569381 35.09978 -5.883287 -4.064619 34.44292 -6.526744 -4.676535 33.71598 -6.7578 -5.477223 33.0936 -6.862964 -6.307816 32.82353 -6.517851 -2.185688 40.62631 -6.160571 -2.243312 39.92016 -6.128049 -2.631927 39.94466 -6.149128 -2.565075 40.64649 -6.176246 -2.949539 40.67035 -6.155036 -3.023905 39.97531 -6.131633 -3.480785 40.02066 -5.949079 -3.4128 40.711 -5.930794 -3.835825 40.75235 -5.613472 -3.904123 40.07083 -5.681968 -4.215826 40.10872 -5.403348 -4.139291 40.78 -5.295566 -2.495079 41.5265 -5.829447 -2.1457 41.51744 -5.804482 -3.274255 41.55619 -5.648153 -2.849016 41.53919 -5.817482 -3.94746 41.57723 -5.087308 -3.662999 41.57126 -5.392668 -2.443918 42.21493 -5.191079 -2.145729 42.20286 -5.178469 -3.065554 42.24683 -5.06798 -2.75026 42.23092 -5.167072 -3.609628 42.25909 -4.695429 -3.360268 42.25893 -4.915717 -2.610913 42.7775 -3.613933 -2.526737 42.76813 -3.663562 -2.435195 42.75836 -3.696194 -2.332933 42.75077 -3.70336 -2.382985 42.65651 -4.261267 -2.19343 42.635 -4.238406 -2.768794 42.6731 -4.238805 -2.581549 42.66331 -4.245812 -3.104831 42.67723 -4.063896 -2.944764 42.68438 -4.201421 -2.694339 42.78363 -3.529737 -2.231691 42.74727 -3.698306 -3.957295 39.36841 -5.675816 -4.30939 39.43396 -5.444025 -3.104542 39.26809 -6.053236 -3.58195 39.32246 -5.9055 -2.310292 39.19563 -6.046072 -2.706406 39.23266 -6.07084 -3.561206 33.83469 -7.719701 -3.98131 33.29064 -7.909627 -4.473274 33.64962 -8.13066 -4.074379 34.26436 -7.914188 -2.455254 37.80091 -5.87546 -2.559398 36.47971 -6.277571 -3.069753 36.79772 -6.552178 -2.871666 37.89408 -6.139456 -2.784879 35.24123 -7.027041 -3.197795 34.38745 -7.471642 -3.712231 34.83664 -7.663134 -3.376195 35.63581 -7.2033 -4.669209 32.45118 -7.816936 -5.547774 31.54057 -7.390319 -5.575247 31.52317 -7.396267 -5.042152 32.64224 -8.028759 -7.54214 34.27764 -7.357167 -8.575785 33.08531 -6.915684 -8.593397 33.08199 -6.903917 -7.922804 34.41516 -7.181014 -6.83884 34.83422 -7.275145 -7.321552 35.17055 -7.068289 -6.371318 35.19447 -7.091292 -6.837822 35.58923 -6.850637 -5.139766 36.15427 -6.482781 -5.952938 35.57249 -6.927402 -6.404315 35.96263 -6.672662 -5.505097 36.54519 -6.222073 -4.440558 37.09137 -5.886691 -4.842579 37.37202 -5.666243 -4.028107 38.24148 -5.6577 -4.42595 38.3655 -5.470259 -3.224813 38.08601 -6.046985 -3.737482 38.21028 -5.99177 -6.478824 33.28186 -7.875535 -7.584553 32.43444 -7.273562 -7.634816 32.4345 -7.271418 -6.947156 33.60805 -7.940361 -5.698398 34.01095 -7.933661 -6.180909 34.4736 -7.969782 -4.748631 34.87758 -7.387026 -5.211011 34.40948 -7.710815 -5.640808 34.93211 -7.729949 -5.146642 35.41735 -7.368619 -4.11617 35.75848 -6.915564 -4.627839 36.13744 -6.866191 -3.510072 36.84839 -6.325709 -4.007348 37.06111 -6.260461 -4.634019 38.39636 -4.989032 -5.108412 37.29838 -5.077478 -5.749148 36.4776 -5.537491 -6.593745 35.94969 -5.97336 -7.469462 35.18361 -6.374864 -7.015864 35.57343 -6.137595 -7.978463 34.5659 -6.680694 -8.594771 33.09768 -6.889042 -4.085689 38.235 -5.646646 -4.361395 37.04725 -5.812317 -5.079195 36.1548 -6.426228 -5.604913 35.57935 -6.760705 -6.004615 35.17647 -7.076957 -6.945332 33.9283 -7.494757 -6.439018 34.74315 -7.331461 -7.598986 32.45876 -7.261113 -3.36852 37.96024 -5.909811 -3.656776 36.87855 -6.174249 -4.042889 35.7808 -6.712368 -4.288428 35.1241 -7.032863 -4.826213 34.08069 -7.569965 -4.547196 34.62369 -7.315267 -5.210946 33.0646 -7.564423 -5.560087 31.55354 -7.380027 0.028898 40.45856 -3.587842 0.08546197 40.46737 -3.030494 0.104528 39.81833 -3.150559 0.01162898 39.81171 -3.680398 -0.101153 41.21403 -3.475355 -0.06116294 41.18845 -2.957283 -0.41284 41.90806 -3.337148 -0.376206 41.85694 -2.820889 -1.687978 42.651 -2.971413 -1.704492 42.68112 -3.196592 -1.097142 42.38406 -2.551484 -1.119961 42.44948 -3.093259 -1.716033 42.54319 -2.413735 0.04517495 39.20557 -3.394315 0.02968597 39.16578 -3.792036 -1.15496 42.48326 -3.410977 -0.503122 41.95452 -3.775115 -0.197749 41.24361 -3.99524 -0.07706397 40.46179 -4.130062 -0.060853 39.80815 -4.197953 -0.02934795 39.14361 -4.249749 1.585129 33.1648 -6.836546 1.506465 32.88882 -6.470803 0.917703 32.38375 -7.555487 0.934975 32.38356 -7.573963 1.618792 34.06088 -6.149425 1.594709 33.63525 -5.704228 1.462983 34.48134 -5.781694 1.456548 34.09918 -5.269301 1.006293 35.35613 -5.106771 0.987562 35.10336 -4.554119 1.239022 34.6742 -4.887353 1.245157 34.93029 -5.44819 0.527696 36.33103 -4.702112 0.500445 36.12122 -4.187783 0.734218 35.59046 -4.347102 0.762878 35.83323 -4.877691 0.1297889 37.53125 -4.369317 0.115516 37.4975 -3.92241 0.290256 36.68177 -4.061942 0.302987 36.83977 -4.521571 0.03481298 38.77482 -3.876919 -0.004723966 38.74991 -4.277654 1.136104 33.37116 -7.043602 0.913274 32.40454 -7.568855 1.067761 34.32761 -6.558513 0.929689 34.72015 -6.207055 0.551837 35.45701 -5.513984 0.757634 35.10016 -5.871502 0.149009 36.34043 -5.074508 0.337821 35.87553 -5.267372 -0.134132 37.50182 -4.7759 -0.01546394 36.83269 -4.916834 -0.281314 39.13222 -4.674813 -0.252694 38.74585 -4.700242 -0.238613 39.80771 -4.639071 -0.215668 40.46994 -4.571054 -0.332642 41.27157 -4.40116 -0.633016 41.99776 -4.156479 -1.234581 42.51144 -3.71094 -1.751829 42.70091 -3.343446 0.01736897 38.768 -3.733458 0.04409098 38.45949 -3.929476 0.038405 38.45221 -3.811538 0.04855096 38.13986 -3.890634 0.009353995 38.43609 -4.295022 -0.228778 38.43244 -4.716065 0.05398595 38.121 -4.32504 -0.2017329 38.12152 -4.735806 -0.647045 40.37424 -2.674201 -0.615599 39.74713 -2.801117 -0.66897 39.31111 -3.065648 1.013105 32.86886 -6.221924 0.897016 32.41138 -7.534015 0.848713 33.39057 -5.554877 0.698388 33.77368 -5.138084 0.313494 34.73184 -4.41392 0.523039 34.28877 -4.729008 -0.150399 35.81561 -4.022346 0.103312 35.21911 -4.22017 -0.648472 37.32674 -3.619808 -0.406393 36.42677 -3.843077 -0.655708 39.00725 -3.345299 -0.764095 38.67879 -3.64284 -0.805731 38.05633 -3.61368 -1.049633 37.77194 -3.500987 -1.037896 38.25231 -3.500191 -2.290639 37.15906 -3.648224 -1.962436 37.16001 -3.721428 -1.946021 37.58974 -3.485155 -2.298518 37.58189 -3.561337 -1.649766 37.34722 -3.546057 -1.344043 37.552 -3.510808 -1.360766 37.90774 -3.417864 -1.654473 37.75014 -3.435869 -4.257313 32.33535 -6.946543 -4.57458 32.50678 -6.512803 -5.196152 31.80285 -6.815219 -5.158512 31.79207 -6.839325 -3.493559 33.1246 -6.698537 -3.926816 33.35073 -6.24885 -2.978756 33.81835 -6.528901 -3.455192 34.13769 -6.016241 -2.549369 34.59793 -5.861499 -3.044361 34.83976 -5.464303 -2.277834 35.31848 -5.155296 -2.722334 35.51928 -4.841529 -2.0697 36.01236 -4.578465 -2.433038 36.16696 -4.329077 -1.663027 32.80521 -7.154516 -1.988881 33.06543 -6.909216 -2.465308 32.45337 -7.33461 -2.453289 32.43628 -7.369488 -1.253213 33.41902 -6.757679 -1.750592 33.57498 -6.513418 -1.089063 34.14364 -6.314059 -1.643206 34.37559 -6.024584 -1.008447 34.90438 -5.62464 -1.628584 35.05205 -5.428199 -1.089361 35.59145 -4.985878 -1.661815 35.63554 -4.803681 -1.17887 36.20465 -4.307471 -1.658693 36.25193 -4.093325 -0.789614 32.38625 -6.990747 -1.11628 32.46776 -6.712549 -1.527322 31.81112 -7.116851 -1.56762 31.81634 -7.137451 -0.299617 33.21296 -6.637965 -0.792283 33.25581 -6.380728 -0.09691697 34.09532 -6.145354 -0.681285 34.1268 -5.951429 -0.120789 34.98331 -5.5926 -0.712245 34.93311 -5.332826 -0.27566 35.58 -5.018714 -0.75791 35.60137 -4.756044 -0.552073 36.49462 -4.13166 -0.899899 36.3734 -3.904927 -1.393726 36.33193 -4.242412 -1.345574 35.60977 -5.351002 -1.305224 34.94252 -5.994503 -1.222197 34.24705 -6.561013 -1.225946 33.42653 -6.889197 -1.37725 32.66875 -7.143007 -1.574273 31.82197 -7.142017 -2.109762 36.36702 -4.473267 -2.126446 35.75471 -5.28001 -2.133685 35.18101 -6.02357 -2.149194 34.59458 -6.624505 -2.189783 33.89706 -7.010132 -2.256621 33.28833 -7.33588 -2.474764 32.44922 -7.379272 -4.550726 33.63203 -6.790338 -5.054491 32.73342 -6.987895 -5.235937 31.83069 -6.8492 -1.810908 40.5863 -6.110309 -1.859516 39.88211 -6.08157 -1.436973 40.54963 -6.022791 -1.018784 40.51994 -5.721475 -1.056273 39.82695 -5.736797 -1.474907 39.85084 -5.995959 -0.655659 40.49855 -5.335412 -0.410944 40.48254 -4.969407 -0.422439 39.8077 -5.070344 -0.68224 39.81361 -5.399434 -1.800248 41.47104 -5.768697 -1.456157 41.42803 -5.695704 -1.069196 41.3802 -5.455362 -0.732879 41.33741 -5.136481 -0.507983 41.30274 -4.78657 -1.851708 42.16766 -5.139302 -1.555456 42.13556 -5.062611 -1.26346 42.10301 -4.910422 -1.001243 42.07065 -4.709466 -0.796735 42.03459 -4.449491 -1.872741 42.71858 -3.549394 -1.947507 42.7219 -3.612919 -2.032429 42.72621 -3.66098 -2.131823 42.73472 -3.685777 -2.001786 42.62609 -4.227938 -1.627902 42.58205 -4.139056 -1.810305 42.60176 -4.178382 -1.330665 42.53564 -3.908779 -1.461467 42.566 -4.071735 -1.805176 42.71266 -3.451997 -0.431949 39.12503 -5.103985 -0.747197 39.11278 -5.395672 -1.073578 39.12026 -5.678573 -1.520573 39.14449 -5.906093 -1.915784 39.16006 -6.001466 -3.326872 33.66538 -7.744328 -2.792592 33.33728 -8.048974 -3.27681 32.67082 -8.253971 -3.688418 33.04995 -7.939744 -1.976629 37.79525 -6.065367 -1.980278 36.56081 -6.512918 -2.159 35.21696 -7.237961 -2.420175 34.05093 -7.787493 -3.050632 34.29921 -7.485912 -4.381921 32.19892 -7.8458 -4.172788 31.87592 -8.115921 -5.15777 31.14925 -7.437751 -5.142764 31.17782 -7.430564 -0.223402 33.22362 -7.755127 0.088705 32.91989 -7.6899 -0.829112 31.69297 -7.618141 -0.834417 31.71276 -7.624466 -0.229586 34.08206 -7.467837 0.352946 33.88201 -7.376075 -0.2657 34.61521 -7.141722 0.362367 34.48308 -7.001651 -0.601715 35.879 -6.112217 -0.05311399 35.9032 -5.873621 0.262163 35.03338 -6.601538 -0.356528 35.08328 -6.799673 -0.765551 36.87386 -5.546951 -0.279904 36.88197 -5.311312 -0.785374 38.07256 -5.299419 -0.394228 38.02609 -5.066944 -1.07418 38.0176 -5.721256 -1.567473 38.03807 -5.83421 -1.906028 33.36472 -8.55 -1.516085 33.04733 -8.827738 -2.624937 32.01388 -8.828723 -2.631661 32.05583 -8.801794 -1.692361 34.12555 -8.207638 -1.067502 33.97106 -8.39131 -1.54115 34.97275 -7.286524 -0.866627 35.00811 -7.328853 -0.904505 34.49222 -7.882084 -1.570955 34.56121 -7.758756 -1.516543 35.70331 -6.746865 -0.862909 35.75584 -6.692655 -1.523213 36.86497 -6.077223 -0.975147 36.80402 -5.998261 -0.250269 37.94893 -4.5704 -0.107836 36.63694 -4.734272 0.139188 35.5482 -5.26632 0.452446 34.73104 -5.971328 0.545763 34.17098 -6.361558 0.534397 33.61323 -6.745508 0.305637 32.8164 -7.222942 -0.81256 31.69442 -7.604246 -0.763152 37.92581 -5.319704 -0.690018 36.58638 -5.570747 -0.479584 35.48406 -6.288579 -0.395381 34.56806 -6.899776 -0.454208 34.04722 -7.418233 -0.65461 33.59647 -7.904648 -1.227241 32.81347 -8.423994 -2.606432 32.03871 -8.796796 -1.521884 37.75633 -5.756952 -1.439635 36.39642 -6.094353 -1.520845 34.91293 -6.784184 -1.841868 33.65705 -7.270092 -2.227726 32.9479 -7.559031 -2.718836 32.34885 -7.78666 -3.681756 31.72183 -7.71806 -5.127536 31.16612 -7.423009 -0.831721 38.67098 -1.815788 -0.694973 39.39427 -1.815688 -0.909262 41.44192 -1.810531 -0.515081 40.94644 -1.678387 -0.611127 41.75692 -1.558425 -1.221376 42.32943 -1.463517 -0.630738 40.45436 -1.770027 -0.642314 39.92957 -1.793823 -1.794752 42.33858 -1.771663 -1.134194 37.87093 -2.023923 -1.088945 37.88833 -1.795385 -0.100987 38.51114 -2.56262 -0.374112 37.67105 -2.521257 -0.335543 37.68513 -2.99746 -0.108006 38.52757 -3.051047 0.04275298 39.22686 -2.580686 0.01175796 39.228 -3.089922 0.08610695 39.85307 -2.569983 0.07868099 39.83597 -3.067707 0.09888595 40.46572 -2.526409 -0.05991494 41.14712 -2.452031 -0.348225 41.85031 -2.328006 -1.140834 42.40069 -2.178116 -1.735549 42.4942 -2.209578 -0.628621 37.68933 -2.054745 -0.308739 38.54097 -2.082451 -0.148564 39.26425 -2.078567 -0.100464 39.88968 -2.064502 -0.08752995 40.47231 -2.014754 -0.1820009 41.10589 -1.927085 -0.459392 41.89315 -1.820748 -1.194168 42.4409 -1.756066 -1.767893 42.41303 -1.966213 -1.299766 37.50918 -2.073221 -1.282491 37.52978 -1.835446 -0.578626 37.24772 -2.457911 -0.533817 37.22734 -2.92499 -0.822566 37.32329 -2.02307 -0.845752 37.30582 -3.119124 -0.72853 37.7466 -3.157323 -1.118433 37.39063 -2.897225 -1.026529 37.79381 -2.879439 -1.484933 37.18339 -1.923815 -1.467784 37.15236 -2.167691 -1.606903 36.66154 -2.23071 -1.660205 36.73783 -2.004085 -0.795482 36.83343 -2.37565 -0.997443 36.39552 -2.246162 -0.85877 36.2379 -2.673639 -0.728743 36.76642 -2.830683 -1.034337 36.97206 -1.992427 -1.266601 36.58088 -1.941044 -0.940074 36.85024 -3.085609 -0.984264 36.21973 -2.986377 -1.195137 36.97174 -2.937669 -1.240698 36.34378 -2.906633 -1.65387 34.66868 -0.217643 -1.507597 34.43874 -0.064758 -2.028654 34.36419 0.421628 -2.028765 34.36468 0.421134 -1.686009 34.74464 -0.258776 -2.028736 34.3649 0.421017 -1.615337 34.79671 -0.07291799 -2.028781 34.36491 0.42154 -1.510842 34.67455 0.05344897 -2.024398 34.36148 0.423032 -2.024328 34.36117 0.423233 -1.440266 34.53548 0.1334969 -1.454597 34.4295 0.06325197 -2.02863 34.36414 0.421943 -1.372278 34.98355 -0.941048 -1.033512 34.59099 -0.808507 -1.22656 34.50203 -0.425412 -1.475403 34.83557 -0.55296 -1.462295 35.11965 -0.930954 -1.54097 34.94554 -0.559331 -1.325379 35.1699 -0.560648 -1.449031 34.95938 -0.282415 -1.128175 34.99572 -0.422712 -1.311086 34.80984 -0.1453559 -1.170222 34.64696 -0.112632 -0.946509 34.76295 -0.403706 -0.911471 34.55971 -0.612871 -1.145773 34.46331 -0.258536 -1.419347 35.4213 -1.679715 -0.907362 34.92639 -1.71725 -0.927998 34.74418 -1.303604 -1.372255 35.1772 -1.331808 -1.542801 35.58262 -1.593586 -1.485072 35.32788 -1.285321 -1.303643 35.63465 -1.232475 -1.290422 35.39055 -0.904449 -0.983925 35.45267 -1.207693 -1.022189 35.2188 -0.811893 -0.804588 35.0013 -0.883206 -0.711813 35.29076 -1.349804 -0.666131 34.8769 -1.590961 -0.783755 34.71587 -1.169543 -1.657835 36.17046 -2.244162 -1.215909 35.71918 -2.671798 -1.044851 35.21726 -2.230815 -1.547469 35.76531 -1.97789 -1.746538 36.28887 -2.048651 -1.657622 35.93216 -1.848386 -1.411611 36.29413 -1.820216 -1.3726 35.9381 -1.558766 -1.1204 36.04176 -2.005684 -1.049576 35.716 -1.630921 -0.823924 35.47627 -1.781142 -0.861478 35.75237 -2.363658 -0.756612 35.24461 -2.35277 -0.771155 35.46028 -2.122924 -0.650536 35.35233 -1.917485 -0.601037 35.09465 -2.115134 -0.936532 35.59062 -2.686906 -0.778539 35.13274 -2.165702 -0.412648 35.17153 -1.497159 -0.397159 34.88685 -1.664407 -0.482043 38.59062 -3.239643 -0.360695 39.25901 -3.276188 -0.78095 38.69505 -2.917198 -0.633456 39.40484 -2.972706 -0.481663 34.82247 -1.131935 -0.515945 35.16134 -0.969231 -0.247739 34.80144 -1.294593 -0.234363 35.07373 -1.107846 -0.168915 34.69617 -0.91928 -0.164285 34.88117 -0.738925 -0.246291 34.70135 -0.490607 -0.253475 34.56209 -0.578634 -0.371517 34.74469 -0.835966 -0.39436 34.61656 -0.553995 -0.392413 34.95445 -0.671025 -0.387263 34.77621 -0.504365 -0.411386 34.52417 -0.17283 -0.408927 34.52268 -0.172944 -0.410468 34.52061 -0.173186 -0.412286 34.52111 -0.174042 -0.295919 39.8901 -3.24911 -0.50145 39.91697 -3.010714 -0.296404 40.49872 -3.18964 -0.492709 40.51465 -3.066658 -0.911157 38.1067 -3.074216 -0.962485 37.99479 -3.086118 -0.881503 38.10413 -3.119225 0.47454 38.0779 -3.774705 0.619286 38.10447 -3.704166 0.653192 38.00698 -3.719797 0.372927 37.96942 -3.764146 0.091627 38.14167 -3.804322 -0.602165 38.00994 -3.48871 -0.767188 37.92617 -3.355451 -0.860193 37.95805 -3.479537 -0.685712 38.0687 -3.612121 0.2404029 38.41476 -3.783573 -0.270245 38.80835 -3.6695 -0.176317 38.84469 -3.454188 0.225553 38.59099 -3.571864 -0.865664 37.84524 -3.222322 -0.962524 37.81235 -3.172497 -0.982022 37.83147 -3.297748 -0.906468 37.84293 -3.320864 0.520104 38.26113 -3.675949 0.665005 38.02753 -3.64202 0.422722 38.02848 -3.640904 0.690571 37.95754 -3.655466 0.425278 37.92374 -3.676075 0.565956 37.90094 -3.678859 -0.51128 38.1026 -3.436816 -0.662488 38.07194 -3.289317 -0.692821 37.95605 -3.306737 -0.485817 38.00802 -3.435373 0.005738973 38.09389 -3.612619 -0.285434 38.10107 -3.547089 -0.262328 38.00972 -3.53868 0.138884 37.9647 -3.629949 -0.691561 38.87892 -3.636771 -0.650915 39.01507 -3.354017 -0.393929 38.62237 -3.395913 -0.223812 38.81635 -3.354146 -0.710213 38.92827 -3.247782 -0.760759 38.70574 -3.19514 -1.022873 37.82179 -3.161155 -1.022138 37.8337 -3.29725 -0.789302 38.02361 -3.132161 -0.931938 37.86228 -3.121491 -0.836629 37.89054 -3.142113 -0.06035 38.51659 -3.470807 0.208943 38.25618 -3.56972 0.555598 38.21036 -3.612803 0.238759 38.5517 -3.4867 -0.368401 38.13628 -3.734563 -0.347997 38.06149 -3.60643 -0.6555 38.61268 -3.236109 -0.009151995 38.02188 -3.699762 -0.852239 38.28711 -3.100063 -0.813066 38.21044 -3.194721 -0.335849 38.31848 -3.578134 -0.02878898 38.28517 -3.643404 -0.558295 38.31105 -3.470546 -0.704074 38.29138 -3.380815 0.54105 37.95988 -3.75035 -0.9363 37.98844 -3.481426 -0.483509 38.66798 -3.751641 -0.757798 38.69199 -3.659601 -0.04911899 38.32164 -3.82169 -0.857778 38.39471 -3.602505 -0.747762 38.38927 -3.67322 0.657911 37.90769 -3.670619 0.62581 37.96512 -3.732464 -2.096168 37.06592 -2.630611 -1.824234 37.19454 -2.49122 -2.116166 37.11228 -2.020732 -2.409604 36.9827 -2.212301 -0.446101 40.11756 -3.595625 -0.501172 40.08073 -4.28046 -0.567262 40.62025 -4.292756 -0.491532 40.61766 -3.60242 -0.536321 39.50912 -4.228241 -0.529428 39.63249 -3.556266 -2.342415 37.02914 -1.715903 -2.475458 36.98237 -1.868032 -1.122512 37.79876 -3.791365 -1.034541 37.86426 -3.662448 -1.2314 37.59519 -3.492062 -1.553293 37.40948 -3.468142 -1.237415 37.52728 -3.230515 -1.527521 37.32373 -2.893765 -1.815434 37.1831 -3.049631 -0.645749 38.93724 -4.141697 -0.589471 39.20803 -4.185226 -0.602723 39.27569 -3.507045 -0.663925 39.02777 -3.355111 -2.876956 36.89413 -1.660981 -2.860669 36.87934 -1.861219 -2.632264 36.91789 -1.958291 -2.629241 36.93206 -1.678561 -2.577357 36.96646 -1.491857 -2.74629 36.9344 -1.363636 -2.777376 36.91295 -1.527682 -2.894248 36.90075 -1.457152 -2.90784 36.90601 -1.296895 -1.737376 41.40911 -1.629132 -1.775633 41.80373 -2.058304 -2.125058 41.84142 -1.997974 -2.163558 41.45088 -1.557297 -2.452193 41.84957 -1.99572 -2.521097 41.47569 -1.548926 -2.584598 40.99329 -1.262966 -2.63105 40.52445 -1.159641 -2.2263 40.53636 -1.149015 -2.184594 41.00329 -1.25894 -1.755948 40.48773 -1.237087 -1.737809 40.94883 -1.363981 -1.755471 41.9802 -2.69028 -2.122656 42.05504 -2.56321 -2.393596 42.06199 -2.472038 -1.060603 41.62778 -2.936269 -1.127943 41.51679 -2.388468 -0.926778 41.16242 -2.274679 -0.75455 41.12597 -2.881407 -0.875232 40.68136 -2.016387 -0.898332 40.16028 -1.87659 -0.542624 40.1204 -2.80504 -0.621402 40.6369 -2.818522 -1.041061 41.69819 -3.4989 -0.66241 41.14464 -3.589154 -1.784015 42.07151 -3.317626 -2.129229 42.15306 -3.240335 -2.318068 42.17524 -3.232528 -0.641698 39.29411 -3.046038 -0.703249 39.01192 -3.071281 -1.335855 37.44898 -2.747546 -1.590382 37.33613 -2.359322 -2.666728 40.06635 -1.169753 -2.278615 40.07799 -1.158934 -1.829187 40.07561 -1.229937 -0.715109 39.23331 -2.668103 -0.769264 38.93257 -2.673278 -2.53205 37.00495 -1.374018 -2.736845 36.9662 -1.29508 -1.172639 37.79679 -2.140082 -1.040343 37.89236 -2.575441 -0.930627 38.20846 -2.55389 -1.039434 38.1075 -2.095897 -0.841353 38.57814 -2.558616 -0.860638 38.86661 -2.314364 -0.942761 38.5325 -2.178241 -1.392427 37.50078 -2.276758 -1.166193 37.61768 -2.675686 -0.814031 39.13955 -2.331756 -1.191934 37.57872 -2.974553 -0.92706 38.08533 -3.01332 -1.091413 37.72885 -2.980295 -0.861199 38.28135 -3.03364 -0.763645 38.67978 -3.058126 -2.685538 39.71048 -1.279463 -2.283988 39.69336 -1.268149 -0.977142 38.84259 -2.077154 -1.072929 38.61404 -1.92701 -1.895721 39.78373 -1.29105 -0.931565 39.05459 -2.096812 -1.410979 37.70109 -1.773097 -1.669381 37.64007 -1.477944 -1.861192 37.3869 -1.525619 -1.623048 37.41043 -1.858064 -1.832139 37.2531 -1.920993 -2.202932 37.11008 -1.551259 -2.205205 39.58733 -1.386384 -1.880713 39.6783 -1.439485 -2.440132 39.41768 -1.330088 -2.702512 39.44812 -1.324821 -2.717237 39.24335 -1.343317 -2.505492 39.20366 -1.350979 -1.023474 38.83964 -2.016596 -1.117699 38.64868 -1.893595 -0.979273 39.02627 -2.031401 -2.415437 39.1803 -1.35908 -2.350809 39.37416 -1.376311 -1.687627 38.25216 -1.323386 -1.279839 38.31443 -1.630039 -1.332371 38.47476 -1.627143 -1.715328 38.42576 -1.358862 -1.311303 38.01914 -1.691072 -1.576806 37.93805 -1.432201 -2.600363 38.66466 -1.114088 -2.557363 38.81577 -1.243863 -2.75987 38.89545 -1.173271 -2.780727 38.7667 -1.052241 -1.356255 38.5155 -1.645144 -1.714531 38.47974 -1.418835 -2.032061 38.53538 -1.326585 -2.394912 38.72063 -1.269216 -2.376311 38.57452 -1.184052 -2.058087 38.47472 -1.267533 -2.43938 38.98256 -1.335512 -2.536808 39.01007 -1.314085 -2.737192 39.05896 -1.283396 -2.677141 38.5239 -0.914797 -2.812854 38.5847 -0.85093 -2.138576 38.34068 -1.133834 -2.444614 38.42631 -1.034433 -2.600276 38.31924 -0.900407 -2.794463 38.45862 -0.652069 -2.84164 38.47066 -0.625814 -2.844355 38.32443 -0.731313 -1.916949 37.65139 -1.324532 -2.039756 37.45167 -1.363883 -2.539699 37.17641 -1.275635 -2.740464 37.14065 -1.227199 -1.91059 37.85809 -1.260778 -2.298294 38.20144 -1.059118 -2.898598 37.13577 -1.219963 -2.90991 36.94364 -1.239275 -2.214599 37.54997 -1.259074 -2.14338 37.69007 -1.237337 -2.543954 37.3708 -1.207908 -2.724199 37.33589 -1.182995 -2.143284 37.80611 -1.19545 -2.848357 38.14226 -0.862722 -2.636968 38.11053 -0.927871 -2.421868 38.03592 -1.027495 -2.725578 37.59514 -1.049542 -2.879419 37.60405 -1.036695 -2.879315 37.52057 -1.113106 -2.724609 37.49527 -1.126123 -2.886664 37.33587 -1.185176 -2.682355 37.95502 -0.949457 -2.857426 37.97294 -0.916383 -2.864302 37.87284 -0.939206 -2.712618 37.8428 -0.965912 -2.378957 37.68205 -1.180441 -2.330907 37.63337 -1.205679 -2.287116 37.71671 -1.197487 -2.354161 37.72509 -1.179893 -2.513751 37.90277 -1.032223 -2.565998 37.80726 -1.033256 -2.303336 37.78544 -1.164271 -2.391669 37.75903 -1.14546 -2.563326 37.51557 -1.155145 -2.557696 37.62224 -1.098111 -2.041898 38.06337 -1.178846 -2.245866 37.93951 -1.112475 -2.386432 37.85657 -1.105403 -2.463546 37.79341 -1.103674 -2.45045 37.65442 -1.150834 -2.428772 37.56721 -1.194271 -2.365833 37.44471 -1.23373 -2.292113 37.29855 -1.308125 -0.570903 39.6232 -2.97987 -0.684573 39.6033 -2.477526 -0.830268 39.47929 -2.146335 -1.032428 39.82029 -1.761144 -0.977462 39.34912 -1.953125 -1.175674 39.59795 -1.68547 -1.228827 39.51251 -1.725246 -1.034079 39.29767 -1.918825 -1.497529 39.74718 -1.411198 -1.523445 39.63933 -1.579241 -1.430063 40.03546 -1.402275 -1.311044 40.37778 -1.460433 -1.251699 40.8623 -1.625727 -1.441338 41.70201 -2.19678 -1.326198 41.32767 -1.836464 -1.437627 41.86055 -2.826152 -1.469479 41.93034 -3.425594 -1.880846 39.56809 -1.382407 -2.135035 39.47436 -1.363781 -2.064865 39.37039 -1.459847 -1.859665 39.4464 -1.498213 -2.264495 39.32051 -1.382061 -2.168352 39.24832 -1.452998 -2.325801 39.14387 -1.37352 -2.220154 39.10052 -1.442563 -1.069593 38.83472 -1.961489 -1.026172 38.99662 -1.97608 -1.103384 38.94906 -1.947033 -1.139836 38.83065 -1.920254 -1.095546 39.23262 -1.846102 -1.294658 39.41682 -1.638411 -1.378056 39.32674 -1.691379 -1.186583 39.1652 -1.844298 -1.572525 39.53318 -1.47021 -1.606727 39.41903 -1.567697 -1.162876 38.68918 -1.856286 -1.224697 38.73044 -1.842556 -2.341109 38.95218 -1.35575 -2.2275 38.92721 -1.440455 -2.264892 38.74976 -1.339438 -2.150305 38.77926 -1.449546 -1.998936 38.60897 -1.384519 -1.952751 38.67398 -1.498856 -1.710343 38.55074 -1.475622 -1.706463 38.61249 -1.562281 -1.379905 38.56986 -1.657749 -1.421342 38.61843 -1.697174 -2.870711 37.79838 -0.934364 -2.727791 37.775 -0.953693 -2.577575 37.75761 -1.026044 -2.473056 37.75974 -1.096682 -2.422304 37.74905 -1.134935 -2.408919 37.73718 -1.159611 -2.423533 37.71588 -1.150224 -2.462309 37.6897 -1.123902 -2.561143 37.66547 -1.053413 -2.729215 37.64011 -0.985227 -2.882901 37.64419 -0.960486 -2.725966 37.72507 -0.98938 -2.87113 37.74956 -0.974795 -2.586112 37.72536 -1.046201 -2.432108 37.74905 -1.136309 -2.420684 37.73965 -1.156351 -2.475194 37.74589 -1.112654 -2.431267 37.73156 -1.150329 -2.462049 37.72377 -1.121976 -2.563944 37.71002 -1.063776 -2.71476 37.70668 -0.998873 -2.875432 37.71973 -0.976699 -2.722421 37.70212 -1.052685 -2.866801 37.7191 -1.053068 -2.580126 37.71123 -1.076422 -2.47247 37.73527 -1.130608 -2.433597 37.74107 -1.153559 -2.42756 37.74104 -1.154786 -2.433022 37.74122 -1.150474 -2.460991 37.73825 -1.125179 -2.556405 37.72953 -1.070913 -2.706826 37.7213 -1.023805 -2.871093 37.73205 -1.014837 -1.162095 37.63933 -3.29188 -0.811487 38.43529 -4.018253 -0.886781 38.29198 -3.797035 -2.021926 39.305 -1.597575 -1.840621 39.3745 -1.65018 -2.097172 39.20238 -1.575993 -2.141537 39.07249 -1.573001 -1.131761 38.93385 -1.977247 -1.181496 38.82741 -1.933808 -1.420591 39.26589 -1.797403 -1.236161 39.1259 -1.902413 -1.620892 39.3603 -1.682386 -1.255504 38.74759 -1.877852 -2.125739 38.90893 -1.566031 -2.062427 38.79095 -1.577966 -1.932348 38.7007 -1.617425 -1.706598 38.63612 -1.672785 -1.461431 38.62974 -1.763239 -2.717142 37.70783 -1.112596 -2.5739 37.71624 -1.140031 -2.431082 37.73311 -1.206834 -2.425009 37.73351 -1.207345 -2.467892 37.73081 -1.184839 -2.43039 37.73456 -1.202495 -2.459773 37.73347 -1.1765 -2.554498 37.72849 -1.122662 -2.70309 37.72385 -1.07877 -2.861628 37.72059 -1.111515 -2.867011 37.73164 -1.061407 -4.353838 38.38146 -3.37521 -4.375315 38.38298 -3.42469 -4.319492 38.26272 -3.379623 -5.584635 38.58911 -4.3071 -5.778816 38.54721 -4.284704 -5.73325 38.63882 -4.262177 -5.19758 38.59215 -4.269502 -5.50472 38.46564 -4.280623 -4.597213 38.33304 -3.838415 -4.485599 38.3762 -3.94476 -4.356598 38.23912 -3.785407 -4.4734 38.224 -3.679686 -5.301985 38.88179 -4.270543 -5.296025 39.05034 -4.056444 -4.885578 39.23234 -3.867087 -4.762887 39.17848 -4.063434 -4.413689 38.12841 -3.532527 -4.357384 38.11835 -3.622579 -4.289709 38.09546 -3.58694 -4.333278 38.08137 -3.467203 -5.616875 38.77713 -4.215024 -5.800528 38.57077 -4.209889 -5.83403 38.50513 -4.228462 -5.565145 38.53392 -4.167058 -5.577933 38.42982 -4.203508 -5.717743 38.42927 -4.230789 -4.680021 38.43959 -3.801709 -4.719815 38.3503 -3.80598 -4.549444 38.2659 -3.644123 -4.563702 38.38529 -3.630596 -5.154246 38.53255 -4.066366 -5.301374 38.42642 -4.108247 -4.918817 38.40107 -3.947727 -4.880646 38.48744 -3.950776 -4.415645 39.31553 -3.683168 -4.348781 39.17081 -3.956524 -4.719198 38.97586 -3.774887 -4.38492 38.99499 -3.512002 -4.389962 39.22195 -3.569504 -4.861068 39.19797 -3.76072 -4.250901 38.09117 -3.578248 -4.275076 38.08134 -3.445466 -4.475409 38.3178 -3.454439 -4.448622 38.17882 -3.457911 -4.363955 38.13619 -3.421553 -5.04724 38.93429 -3.908767 -5.329752 39.01493 -3.975396 -5.670284 38.73318 -4.159619 -5.33353 38.72384 -4.056758 -4.76245 38.50424 -4.120426 -4.815876 38.43749 -3.99896 -4.494843 38.9191 -3.571784 -5.136447 38.45839 -4.150689 -4.378272 38.56853 -3.408345 -4.412105 38.49768 -3.509386 -5.085172 38.71353 -4.08791 -4.792367 38.6937 -3.969693 -4.595792 38.63734 -3.823942 -4.472963 38.59403 -3.71051 -5.67194 38.48262 -4.296107 -4.278649 38.25489 -3.771774 -4.31012 38.97543 -3.969728 -4.563706 39.00012 -4.109 -5.028552 38.74033 -4.259123 -4.36447 38.68184 -3.98981 -4.269308 38.66698 -3.900743 -5.756561 38.50121 -4.293011 -5.807458 38.4503 -4.238413 -3.435546 37.1709 -2.735927 -3.222017 37.04754 -2.283064 -3.520038 37.22429 -2.143242 -3.70277 37.34184 -2.639388 -4.399588 40.43309 -3.94128 -4.275517 40.91966 -3.933255 -4.082429 40.90079 -4.600089 -4.23374 40.37863 -4.6068 -4.298548 39.80939 -4.557174 -4.40171 39.94153 -3.89482 -3.217745 37.04162 -1.932924 -3.365991 37.11083 -1.805392 -4.073138 38.03425 -4.049331 -3.771275 37.58649 -3.662061 -4.05091 37.82022 -3.738573 -4.17059 38.11455 -3.936634 -3.628218 37.32158 -3.170152 -3.90951 37.50741 -3.062625 -4.100952 37.75577 -3.48056 -4.297091 39.22865 -4.460935 -4.400809 39.32601 -3.681827 -4.395092 39.57836 -3.838613 -4.301682 39.50429 -4.509786 -3.108818 36.97034 -1.72049 -3.059852 36.95204 -1.995638 -3.186051 37.01504 -1.545075 -3.048946 36.95855 -1.390097 -2.993807 36.93022 -1.546604 -3.279805 41.53221 -1.763987 -2.871215 41.50735 -1.619168 -2.771182 41.89299 -2.054465 -3.106478 41.90995 -2.17466 -2.972667 41.06619 -1.327841 -3.024572 40.60007 -1.218808 -3.397563 41.08129 -1.509094 -3.47439 40.62488 -1.387331 -2.642419 42.09652 -2.608654 -2.989323 42.07868 -2.798156 -3.678042 41.83668 -3.165112 -4.064089 41.3901 -3.170761 -3.99551 41.40734 -2.542979 -3.724501 41.72402 -2.615486 -4.165897 40.94399 -2.304091 -4.281387 40.929 -3.138515 -4.441617 40.43159 -3.14593 -4.249569 40.42774 -2.16959 -3.588937 41.90154 -3.721662 -4.028696 41.41331 -3.88347 -2.503833 42.18295 -3.273087 -2.839012 42.15571 -3.409865 -4.41401 39.30808 -3.395714 -4.433794 39.59676 -3.377582 -3.937701 37.52337 -2.563905 -4.100703 37.66943 -2.987938 -3.044146 40.13909 -1.225865 -3.469283 40.2065 -1.373331 -4.430946 39.22481 -2.99342 -4.437153 39.53037 -2.993523 -3.065026 36.99241 -1.323778 -3.244477 37.06185 -1.436318 -4.309454 38.04714 -2.414335 -4.397687 38.37552 -2.389511 -4.408615 38.48604 -2.857972 -4.347974 38.15634 -2.864629 -4.436415 38.86506 -2.872933 -4.410587 38.80926 -2.481434 -4.414371 39.15024 -2.625068 -4.251552 37.86392 -2.945391 -4.118759 37.71836 -2.515097 -4.413727 39.42684 -2.646479 -4.181136 37.81726 -3.235794 -4.352241 38.35869 -3.312785 -4.254241 37.98127 -3.256818 -4.38192 38.56234 -3.341458 -4.409835 38.97079 -3.376914 -3.080635 39.75694 -1.3378 -4.314506 38.87274 -2.210422 -4.345776 39.11144 -2.371675 -3.439995 39.90698 -1.426067 -4.353329 39.32769 -2.395978 -4.156051 37.92018 -2.013099 -3.980948 37.59862 -2.064215 -3.810555 37.5426 -1.696078 -3.965327 37.82334 -1.678686 -3.517367 37.21504 -1.666195 -3.79174 37.40961 -2.09295 -3.153542 39.66302 -1.469297 -3.445588 39.8032 -1.576303 -2.961522 39.4593 -1.375673 -2.928056 39.23738 -1.387924 -4.31163 39.10207 -2.304081 -4.271282 38.90036 -2.169314 -4.322679 39.2931 -2.323716 -3.017903 39.22838 -1.411754 -3.047256 39.42974 -1.437201 -3.877888 38.427 -1.514887 -3.817473 38.59354 -1.542653 -4.135869 38.6985 -1.872254 -4.211688 38.54842 -1.886372 -4.016347 38.1328 -1.645501 -4.217053 38.25104 -1.945123 -2.961504 38.69348 -1.145662 -2.957149 38.84768 -1.278816 -4.103126 38.73473 -1.885304 -3.79941 38.64613 -1.601116 -3.497805 38.65236 -1.454735 -3.492232 38.58918 -1.392921 -3.181488 38.63878 -1.254449 -3.125715 38.77895 -1.33311 -3.029811 39.02968 -1.387134 -2.934442 39.0418 -1.34885 -2.943372 38.54515 -0.938074 -3.458185 38.44605 -1.249221 -3.16422 38.48374 -1.097351 -3.053357 38.3556 -0.940099 -2.884882 38.46583 -0.659975 -3.658182 37.58475 -1.506189 -3.750588 37.79944 -1.485134 -3.050188 37.16645 -1.25467 -3.231177 37.23387 -1.336804 -3.736092 38.00656 -1.420864 -3.339624 38.28642 -1.150633 -3.492647 37.65913 -1.372134 -3.543622 37.80976 -1.361001 -3.044635 37.3637 -1.211946 -3.20964 37.42819 -1.267485 -3.530111 37.92122 -1.317371 -3.047631 38.14445 -0.964328 -3.251516 38.10479 -1.100748 -3.027481 37.62312 -1.078259 -3.030806 37.52331 -1.154708 -3.024804 37.98375 -0.980265 -3.012703 37.86952 -0.985919 -3.326339 37.76705 -1.264737 -3.343626 37.81365 -1.267704 -3.407066 37.81551 -1.29671 -3.376427 37.72594 -1.298593 -3.182808 37.9595 -1.091674 -3.148756 37.85948 -1.085776 -3.384394 37.87845 -1.259694 -3.3071 37.84079 -1.226633 -3.178632 37.57102 -1.211052 -3.177035 37.67867 -1.154555 -3.590197 38.18949 -1.314709 -3.423471 38.03733 -1.216126 -3.302245 37.93533 -1.18648 -3.23915 37.8633 -1.17293 -3.266475 37.72827 -1.224036 -3.293952 37.64444 -1.271748 -3.366821 37.53097 -1.322741 -3.446839 37.39429 -1.409968 -4.462239 39.93377 -3.32009 -4.441469 39.90314 -2.805993 -4.376435 39.76231 -2.456377 -4.192607 40.07251 -2.037439 -4.287117 39.61326 -2.242489 -4.101369 39.83145 -1.941265 -4.056276 39.73817 -1.97245 -4.246078 39.55402 -2.199651 -3.812215 39.93192 -1.613572 -3.775017 39.81903 -1.776096 -3.833976 40.22732 -1.61245 -3.885791 40.58327 -1.685544 -3.838722 41.06877 -1.851912 -3.656685 41.51366 -2.040219 -3.423666 41.86022 -2.370095 -3.293787 42.00869 -2.988437 -3.148459 42.06435 -3.572387 -3.47265 39.69514 -1.521579 -3.492249 39.57751 -1.640999 -3.311484 39.46989 -1.56884 -3.243454 39.56282 -1.46069 -3.231255 39.33315 -1.545928 -3.138639 39.39027 -1.458487 -3.20595 39.1792 -1.528752 -3.108304 39.20632 -1.441935 -4.277063 39.09071 -2.24192 -4.216511 39.0762 -2.189255 -4.2287 39.1985 -2.220281 -4.291283 39.25721 -2.26155 -4.20909 39.48112 -2.11832 -4.131494 39.40024 -2.101772 -3.946254 39.53171 -1.915918 -4.022302 39.63451 -1.87689 -3.730704 39.58855 -1.753397 -3.762804 39.70799 -1.661706 -4.22741 38.93376 -2.124225 -4.163167 38.96495 -2.099481 -3.22645 39.00694 -1.527807 -3.126658 39.01488 -1.424434 -3.323238 38.87287 -1.552112 -3.235447 38.82722 -1.424302 -3.523412 38.79933 -1.636171 -3.508445 38.72944 -1.516494 -3.761636 38.77652 -1.741944 -3.782519 38.71612 -1.656784 -4.014661 38.8254 -1.923919 -4.069397 38.78451 -1.892896 -3.010111 37.79985 -0.979851 -3.146725 37.8091 -1.077383 -3.236507 37.82897 -1.164856 -3.280714 37.8262 -1.211145 -3.291982 37.81718 -1.238161 -3.282891 37.7938 -1.226898 -3.253997 37.76168 -1.195037 -3.174654 37.72134 -1.109426 -3.027989 37.66794 -1.01379 -3.014007 37.75095 -1.011754 -3.140149 37.77589 -1.096186 -3.280727 37.81775 -1.232918 -3.271455 37.82545 -1.210967 -3.233959 37.81511 -1.180365 -3.249186 37.7955 -1.192638 -3.272896 37.80803 -1.225472 -3.029167 37.73574 -1.02871 -3.162961 37.76508 -1.118422 -3.009828 37.72829 -1.079076 -3.142295 37.76307 -1.13681 -3.235247 37.80505 -1.198634 -3.268308 37.81708 -1.227826 -3.274092 37.81801 -1.230189 -3.269641 37.81729 -1.225171 -3.24737 37.80998 -1.195719 -3.165854 37.78572 -1.126404 -3.030213 37.7512 -1.054354 -4.145977 37.87742 -3.552464 -4.223728 38.55831 -4.088786 -4.236235 38.70862 -4.31768 -3.496061 39.50662 -1.794916 -3.339779 39.41018 -1.712795 -3.286488 39.2973 -1.679976 -3.2643 39.16207 -1.67139 -4.174175 39.06626 -2.195466 -4.198292 39.17859 -2.245356 -4.079451 39.35283 -2.151002 -3.896191 39.46347 -2.013846 -3.706399 39.52674 -1.864722 -4.124424 38.97655 -2.128696 -3.30592 39.0024 -1.679903 -3.384019 38.89586 -1.700293 -3.518599 38.82729 -1.756099 -3.738726 38.79831 -1.850439 -3.962506 38.82935 -1.981919 -3.13753 37.76821 -1.190739 -3.003838 37.73428 -1.138847 -3.268699 37.80993 -1.282538 -3.262755 37.80857 -1.280849 -3.231031 37.80054 -1.252877 -3.240496 37.80458 -1.246486 -3.264357 37.81012 -1.277005 -3.023827 37.75364 -1.108923 -3.158901 37.78424 -1.177614 -4.91604 34.06028 -1.178572 -4.880804 33.92721 -0.680836 -4.534237 34.25534 -0.70507 -4.526964 34.40712 -1.094051 -4.069458 34.60071 -0.986704 -4.068618 34.47151 -0.682503 -3.5097 34.52766 -0.484851 -3.515115 34.61929 -0.891587 -3.003416 34.54932 -0.705469 -3.006896 34.43295 -0.207422 -2.520539 34.28874 0.05741196 -2.401749 34.3166 -0.497217 -1.671103 33.18377 0.374279 -1.657318 33.24048 0.840799 -1.473129 32.45664 1.101994 -1.430834 32.35283 0.684044 -1.702446 31.54219 0.817432 -1.747721 31.6762 1.247128 -3.066517 31.11306 1.13563 -2.931127 31.05745 0.726996 -4.033305 31.21668 0.784074 -4.011909 31.08927 0.306426 -4.535576 31.54224 0.362899 -4.577943 31.39401 -0.151664 -5.044205 31.79825 -0.514671 -4.908782 31.9797 0.050641 -5.061013 32.61474 -0.218348 -5.104789 32.44659 -0.67571 -4.795343 33.75339 -0.02790999 -4.669034 33.5814 0.579897 -4.375391 33.88303 0.526892 -4.491298 34.12268 -0.09739798 -3.99089 34.33463 -0.07936698 -3.931519 34.08517 0.534618 -3.550518 34.12309 0.626973 -3.502192 34.38398 0.07992595 -3.022556 34.31927 0.305908 -3.134995 34.08609 0.777254 -2.800756 34.00282 0.942309 -2.631464 34.18466 0.522871 -1.826829 33.27491 1.151023 -2.146549 33.24199 1.442319 -2.083202 32.70099 1.642817 -1.722751 32.58081 1.410224 -1.969352 31.87338 1.601044 -2.315545 32.07332 1.798228 -3.173531 31.64679 1.684915 -3.116086 31.35854 1.455575 -3.878469 31.69952 1.444573 -3.96889 31.44341 1.140258 -4.408927 31.92947 1.136674 -4.439947 31.74908 0.79765 -4.736852 32.19006 0.538714 -4.636317 32.3668 0.921228 -4.74885 32.8006 0.737872 -4.886733 32.75164 0.319401 -4.439522 33.43488 1.042831 -4.149587 33.33079 1.441156 -4.017949 33.51354 1.420672 -4.238634 33.69342 1.026598 -3.917094 33.85481 1.051946 -3.81892 33.63166 1.427177 -3.583803 33.68391 1.454581 -3.595212 33.89022 1.114138 -3.221325 33.85762 1.217882 -3.304134 33.64522 1.525388 -3.160965 33.6007 1.604724 -2.992309 33.78987 1.32586 -2.510818 33.19902 1.682239 -2.830859 33.1772 1.856972 -2.836957 32.89056 1.925643 -2.464685 32.79619 1.809279 -2.641068 32.28952 1.917537 -3.016105 32.5499 1.968148 -3.436285 32.25251 1.944936 -3.325393 31.96865 1.83707 -3.816781 32.27433 1.83702 -3.84423 32.02059 1.699358 -4.098547 32.45915 1.704264 -4.232241 32.20289 1.487249 -4.419526 32.55785 1.284922 -4.181801 32.7287 1.584549 -4.209168 32.9334 1.513365 -4.507387 32.85466 1.13937 -3.686276 33.1247 1.887896 -3.601314 33.05907 1.942332 -3.672206 33.13795 1.894151 -3.652916 33.1561 1.902727 -3.621648 33.17036 1.902364 -3.577176 33.16522 1.904598 -3.550416 33.15273 1.916657 -3.514012 32.99041 1.968601 -3.491352 33.04 1.96364 -3.583172 32.94347 1.97307 -3.657904 32.94628 1.945752 -3.693172 32.9801 1.932405 -3.705258 33.02309 1.923808 -3.7051 33.05666 1.911944 -3.961593 30.45096 -1.316259 -4.279916 30.87384 -1.671682 -3.869386 30.94806 -2.113947 -3.642897 30.57671 -1.875715 -4.493367 35.40137 -3.46266 -4.456913 35.41608 -3.854244 -4.795517 35.29033 -3.846114 -4.730918 35.32414 -3.438346 -3.422055 30.95263 -2.573918 -3.296896 30.63697 -2.336746 -4.389877 35.29829 -4.027872 -4.785736 34.97707 -4.257897 -4.753303 35.01153 -2.051798 -4.443781 35.04408 -1.923022 -4.352947 35.24033 -2.245957 -4.621443 35.2188 -2.387509 -5.107567 32.40347 -2.804026 -5.23739 32.77159 -3.099779 -5.323144 32.6654 -3.55476 -4.997685 32.4506 -3.427983 -4.771486 34.58683 -4.380816 -5.254934 34.59865 -4.234905 -5.227286 34.93763 -4.126124 -5.187151 35.22715 -3.744635 -5.168148 35.25537 -3.382868 -4.561071 35.28023 -2.52606 -4.941447 35.26257 -2.69947 -4.991506 35.22613 -2.567774 -5.550361 34.89566 -3.981376 -5.934103 34.80194 -3.787404 -5.825214 35.07784 -3.49474 -5.56185 35.16352 -3.637643 -6.105137 34.86148 -3.442122 -6.152747 34.90677 -3.119451 -5.925815 35.12708 -3.212991 -5.578763 35.16408 -2.86855 -5.636131 35.16942 -2.989778 -5.854194 34.96943 -2.780347 -5.607773 34.91007 -2.607625 -5.245642 34.71948 -1.908509 -5.201443 34.10268 -1.660222 -4.872891 34.75273 -1.714944 -5.605218 34.60816 -2.430295 -5.64832 34.08572 -2.211831 -5.446581 34.12959 -1.971004 -5.451837 34.64289 -2.192593 -5.907616 34.61353 -2.519704 -6.056154 34.09222 -2.308627 -6.595159 34.03234 -2.809851 -6.318918 34.62457 -2.96751 -6.351069 34.57163 -3.338269 -6.647317 33.9948 -3.272161 -6.343163 33.85995 -3.735234 -6.170207 34.39398 -3.758258 -5.67787 33.50495 -3.955282 -5.604898 34.24283 -4.115518 -4.604415 33.05533 -4.035194 -5.210315 33.21265 -3.956645 -5.224153 34.07764 -4.190361 -4.717089 34.10559 -4.364781 -4.409764 35.29639 -3.000682 -4.643974 35.24769 -3.008037 -5.094574 35.20488 -3.057304 -5.996679 34.94087 -2.869007 -5.81846 35.15069 -3.096781 -6.258766 34.03963 -2.434314 -6.094975 34.63998 -2.654849 -5.218169 33.13943 -1.155742 -5.176525 33.20948 -1.819995 -5.190522 32.88648 -2.427716 -5.110042 32.60192 -2.0581 -3.553482 30.66128 0.08133995 -3.902613 31.04972 -0.04944598 -4.242017 30.92807 -0.911329 -3.974256 30.40538 -0.664377 -2.806791 31.03984 -2.939175 -2.673863 30.69473 -2.69196 -4.178072 34.05872 -4.450391 -3.566453 34.02773 -4.545358 -3.430309 32.98609 -4.306981 -4.020904 33.01713 -4.167387 -4.188671 35.2694 -4.124188 -3.501895 35.27275 -4.328189 -3.567683 35.03523 -4.434185 -4.238702 35.00619 -4.368419 -1.096446 31.33222 0.67107 -1.122478 31.72393 0.60979 -1.426269 31.5058 0.710272 -1.491915 31.29591 0.719314 -2.062867 31.11922 -3.0941 -1.978319 30.74094 -2.853465 -2.672981 30.86676 0.622023 -2.737899 31.03802 0.570271 -4.727947 31.56245 -2.212199 -4.934739 31.85266 -2.490613 -4.670826 31.80691 -3.017098 -4.4783 31.51999 -2.794384 -4.792248 31.81668 -0.809689 -4.979772 32.38002 -0.998115 -4.874836 32.04857 -1.581921 -4.701559 31.66405 -1.37237 -3.867287 31.69957 -3.30679 -3.745317 31.4224 -3.086318 -3.080645 31.77269 -3.576081 -3.006021 31.48772 -3.38298 -2.34092 31.90368 -3.634807 -2.242593 31.59222 -3.464024 -3.562014 35.12437 -1.673193 -2.957011 35.18886 -1.539729 -2.970435 35.37376 -1.834462 -3.504635 35.34797 -1.931787 -2.92225 35.79565 -4.198295 -2.964449 35.55255 -4.313759 -3.422875 35.52883 -4.231857 -3.308625 35.79729 -4.103321 -4.178051 35.35867 -2.990949 -3.737954 35.57766 -3.032777 -3.705865 35.74345 -3.455275 -4.25765 35.51072 -3.48952 -3.606744 35.80244 -3.838805 -4.118503 35.53282 -3.884408 -5.380166 33.36158 -2.006332 -5.667121 33.5901 -2.189492 -6.125955 33.64376 -2.264355 -6.725951 33.59174 -2.734486 -6.82526 33.57415 -3.165874 -6.497795 33.44728 -3.703553 -5.744775 32.96693 -3.697181 -6.394309 33.60007 -2.367465 -4.02931 32.3425 -3.713803 -3.234144 32.36735 -3.938937 -2.771403 35.35293 -1.811803 -2.647636 35.28073 -1.70017 -2.696283 33.06158 -4.282699 -2.450439 32.52279 -3.952004 -2.990872 35.29394 -4.387577 -3.011592 35.04179 -4.458925 -1.194101 31.95692 0.563625 -3.526883 35.45576 -2.592775 -3.95532 35.30226 -2.247317 -3.450979 35.3349 -2.062023 -3.232855 35.46049 -2.288843 -2.899703 34.05643 -4.531735 -5.306975 35.23863 -2.88396 -5.342498 35.22425 -2.755637 -5.385768 34.96895 -2.459273 -4.305264 35.28751 -2.398062 -2.955865 35.35808 -1.966268 -2.53091 35.31021 -1.928902 -2.785302 35.34116 -1.950522 -2.509311 35.28429 -1.823626 -5.096313 34.99922 -2.251383 -5.584891 34.60893 -4.093265 -6.057289 34.61098 -3.771666 -5.648967 35.24021 -3.284799 -5.546979 35.23558 -3.116658 -4.222891 34.5516 -4.466816 -3.581682 34.54602 -4.527428 -2.976931 34.57093 -4.522354 -4.53 31.39563 -0.519474 -4.513404 31.31665 -1.136691 -4.512185 31.21638 -1.942849 -4.170148 31.19725 -2.436545 -3.582973 31.18405 -2.827797 -2.903686 31.2601 -3.162691 -2.149095 31.35272 -3.281823 -2.294248 34.35264 -0.507051 -2.713684 34.59569 -0.749166 -1.327745 32.57512 0.415583 -1.702015 33.13466 0.200246 -2.634962 34.98666 -1.251642 -2.943655 34.96859 -1.234893 -3.546134 34.90301 -1.326082 -4.512807 34.78747 -1.590572 -3.932657 33.20602 1.649538 -3.845131 33.28972 1.653234 -3.766444 33.35294 1.661895 -3.623753 33.38269 1.682113 -3.482664 33.37108 1.712986 -3.382043 33.32867 1.760811 -3.217235 33.09243 1.900336 -3.209671 32.94684 1.92308 -3.298359 32.77189 1.936225 -3.530481 32.59833 1.93356 -3.74707 32.62855 1.881401 -3.892281 32.71807 1.817821 -3.962117 32.83816 1.756168 -3.991511 32.95925 1.704655 -3.727314 33.10515 1.788926 -3.709377 33.13791 1.794861 -3.690328 33.16096 1.804201 -3.627323 33.18806 1.806338 -3.564555 33.18708 1.812506 -3.519725 33.16737 1.833106 -3.435938 33.05953 1.900522 -3.432512 32.99858 1.909877 -3.468374 32.92457 1.915361 -3.591896 32.84968 1.913548 -3.682828 32.86008 1.874189 -3.738515 32.908 1.853125 -3.759719 32.966 1.84118 -3.758362 33.01165 1.823892 -3.722039 33.11204 1.811005 -3.705322 33.138 1.818505 -3.567883 33.18909 1.832618 -3.525572 33.17013 1.851827 -3.446978 33.06687 1.915145 -3.443385 33.00875 1.924258 -3.477141 32.93864 1.929704 -3.571439 32.86594 1.937733 -3.680313 32.87747 1.891764 -3.732749 32.92318 1.872018 -3.752493 32.97881 1.860652 -3.751283 33.02255 1.844243 -3.630193 33.19051 1.82709 -3.495751 33.08303 1.955862 -2.420093 32.20116 -3.790266 -3.145624 32.06193 -3.747158 -3.94198 31.98545 -3.505244 -4.881413 32.16693 -3.371886 -5.049242 32.1829 -2.680845 -5.146302 32.97451 -1.047205 -4.997635 32.32771 -1.758016 -5.148128 33.10569 -0.819164 -5.084731 33.16001 -0.388372 -4.753882 33.17891 0.641345 -4.895795 33.19298 0.1856459 -4.213736 33.11282 1.464911 -4.525221 33.129 1.062763 -3.97407 33.09185 1.662971 -3.747836 33.05519 1.806731 -3.741374 33.06428 1.827942 -3.699046 33.08856 1.900155 -5.527321 32.9088 -3.274489 -5.337021 33.00275 -2.707184 -1.81719 33.58014 0.164335 -1.777007 33.55749 0.08625698 -1.840185 33.64675 0.605168 -2.033496 33.65103 0.956011 -2.282006 33.58493 1.285389 -2.657955 33.42975 1.56633 -2.914622 33.36674 1.781171 -3.248414 33.18432 1.861433 -3.454972 33.10124 1.881221 -3.464775 33.10676 1.896971 -3.506508 33.11418 1.943158 -2.594912 35.48112 -2.186662 -3.187042 35.64872 -2.489225 -2.926709 35.63935 -2.347241 -2.975337 36.13586 -2.470974 -3.192006 36.18096 -2.641198 -3.355742 36.24549 -2.901452 -3.412991 35.75598 -2.784243 -3.478214 36.31141 -3.179753 -3.529517 35.85049 -3.122049 -3.50778 36.39503 -3.484521 -3.582275 35.96561 -3.44696 -3.416152 36.44988 -3.765868 -3.500448 36.05156 -3.77901 -3.134635 36.48232 -3.984783 -3.217837 36.09328 -4.012412 -2.82736 36.505 -4.043248 -2.877403 36.08284 -4.103359 -2.899098 35.47039 -2.197009 -2.6805 35.63792 -2.319721 -2.772361 36.10088 -2.446996 -3.688616 33.16395 1.826003 -4.012812 35.29884 -2.095745 -4.089681 35.06874 -1.806241 -4.106151 34.84305 -1.47845 -2.009005 33.94429 -0.06067699 -2.110598 33.98531 0.349336 -2.308103 33.9688 0.745925 -2.535419 33.83712 1.114155 -2.823975 33.65473 1.439033 -3.039235 33.52869 1.689412 -3.302147 33.26237 1.814228 -3.482011 33.1375 1.858057 -3.490083 33.14157 1.875209 -3.523654 33.14023 1.928717 -2.693827 35.16755 -1.531745 -1.838329 34.02694 -0.09157699 -2.481037 35.23785 -1.692772 -2.434628 35.14153 -1.522679 -2.344279 35.02324 -1.30366 -2.148628 34.69912 -0.873318 -2.021223 34.4027 -0.549784 -5.827867 33.18564 -2.170219 -5.532587 33.07119 -2.278443 -5.540431 32.87085 -2.717072 -5.736118 32.73818 -3.358625 -6.005051 32.80369 -3.674351 -6.642549 33.06736 -3.598964 -6.954617 33.20387 -3.111624 -6.865088 33.20372 -2.680625 -6.60598 33.21967 -2.304716 -6.318558 33.26179 -2.212937 -6.439876 31.66147 -1.826256 -6.122373 31.43491 -2.162406 -6.287347 31.39444 -2.674871 -6.562924 31.4026 -3.211877 -6.863211 31.5112 -3.474277 -7.322011 31.84637 -3.384378 -7.502579 31.93817 -2.90371 -7.42287 31.98001 -2.471399 -7.170922 31.96621 -2.119397 -6.912804 31.88606 -1.910603 -7.567438 30.47628 -1.824649 -7.093832 30.28994 -1.791917 -8.031359 30.53511 -2.132495 -7.829012 30.52367 -1.934542 -8.073739 30.54353 -2.541386 -7.935866 30.49021 -2.9485 -7.583351 30.20323 -3.179479 -7.236855 30.06068 -2.949996 -6.805416 30.05578 -2.085278 -6.935661 29.98714 -2.623612 -3.481878 37.08021 -3.194255 -3.338007 36.97647 -2.822664 -3.194388 36.90217 -2.518984 -3.009846 36.86219 -2.322121 -2.602442 37.56202 -4.286035 -2.647693 37.32832 -4.156726 -3.001487 37.33047 -4.070266 -3.031559 37.60874 -4.210227 -3.443109 37.60997 -4.02215 -3.319309 37.29164 -3.83389 -3.50473 37.20362 -3.512897 -3.329704 36.70357 -2.884925 -3.446987 36.77437 -3.197349 -3.178714 36.64992 -2.624525 -2.987737 36.62843 -2.437575 -2.760329 36.96968 -4.062228 -3.073183 36.97348 -3.982197 -3.343472 36.93557 -3.762156 -3.463771 36.85665 -3.48394 -3.684214 37.97209 -4.379256 -3.126806 37.88229 -4.526941 -2.551292 37.82371 -4.537256 -2.827053 36.83097 -2.247408 -2.806111 36.61943 -2.353494 0.313548 34.63595 -2.353378 -0.09133297 34.85112 -2.07711 0.100287 34.73212 -1.710004 0.481306 34.49476 -1.833722 -0.525117 34.95592 -1.730271 -0.98164 34.8702 -1.424688 -0.778787 34.79941 -1.072057 -0.347398 34.84508 -1.488103 -1.385559 34.70135 -1.03798 -1.684457 34.41082 -0.657401 -1.399063 34.41101 -0.181609 -1.114029 34.62071 -0.609043 -1.375078 32.3558 0.671597 -1.373919 32.46339 1.080824 -0.969134 31.58617 0.651869 0.168057 31.23759 0.02379798 0.213427 31.34193 0.445251 -0.85308 31.73365 1.050114 0.915914 31.41958 -0.795884 1.046353 31.59826 -0.33413 1.133172 31.97105 -1.451331 1.321344 32.1217 -0.984649 1.161009 32.41898 -1.827148 1.037766 33.17902 -2.013956 1.124247 33.29362 -1.547503 1.316363 32.61708 -1.320215 0.705254 34.32777 -1.207804 0.340395 34.62135 -1.144425 0.549238 34.35204 -0.563273 0.887849 34.10509 -0.656485 -0.122153 34.71925 -0.931025 -0.498004 34.67719 -0.580869 -0.160431 34.42068 -0.136696 0.145374 34.46946 -0.37973 -0.836269 34.53855 -0.167777 -1.059398 34.35166 0.182512 -0.657216 34.18484 0.457513 -0.454682 34.31104 0.171963 -1.310001 33.32984 1.039525 -1.05848 32.63977 1.265724 -0.682292 32.84521 1.334658 -0.853444 33.3581 1.147088 -0.537792 31.9944 1.281376 0.383696 31.61409 0.709918 0.559622 31.98676 0.859386 -0.232057 32.28007 1.334003 1.070989 31.8779 0.03290098 1.065807 32.17441 0.350719 1.309525 32.31397 -0.48818 1.316355 32.4702 -0.167995 1.313996 32.82015 -0.792681 1.170368 33.39057 -1.001507 1.185067 33.35433 -0.598261 1.28797 32.93089 -0.419049 0.8908 33.92761 -0.1379719 0.656329 34.14973 -0.05224496 0.597402 34.00182 0.461114 0.753235 33.84753 0.425231 0.356919 34.24734 0.107181 0.08721995 34.22792 0.302707 0.205772 34.08858 0.660078 0.40371 34.07978 0.546796 -0.180928 34.12732 0.541388 -0.319526 34.03305 0.731199 -0.080473 33.93199 0.954665 1.58e-4 33.99946 0.830026 -0.44184 33.40254 1.218329 -0.332572 33.02935 1.341688 -0.03518295 33.19607 1.32233 -0.146064 33.47008 1.281866 -0.01355898 32.56244 1.342588 0.616726 32.36278 0.980124 0.635914 32.67887 1.073375 0.209797 32.89421 1.276096 0.997081 32.51279 0.650257 0.914966 32.77551 0.826725 1.188122 32.76697 0.321691 1.052057 33.00677 0.61226 1.166158 33.11885 0.06576597 1.096893 33.38531 -0.09560596 0.921601 33.47508 0.447552 0.987252 33.2777 0.502071 0.558431 33.573 1.006809 0.545587 33.58341 1.018651 0.516859 33.49401 1.08751 0.527979 33.59767 1.034886 0.496902 33.60534 1.047464 0.458921 33.59149 1.066813 0.442175 33.5744 1.087903 0.430432 33.45421 1.149583 0.462737 33.41042 1.143134 0.536029 33.37852 1.118034 0.591777 33.39511 1.063632 0.611337 33.43472 1.038905 0.61011 33.47886 1.028053 0.598521 33.51119 1.018628 0.361869 30.65529 -2.327381 -0.04446798 30.65988 -2.778245 0.01020795 31.14541 -3.088057 0.40324 31.20547 -2.745914 -1.336982 35.66942 -4.124935 -1.12779 35.63928 -4.254768 -1.262237 35.63164 -4.628687 -1.543392 35.68686 -4.436044 -0.566813 30.70722 -3.021035 -0.598956 31.10112 -3.282768 -1.429529 35.32465 -4.989978 -1.677671 35.57285 -4.571038 -0.400555 35.37591 -3.086211 -0.698298 35.5087 -3.321246 -0.861737 35.48551 -3.064161 -0.621168 35.35038 -2.823282 0.149572 33.18027 -4.034583 -0.253404 33.1432 -4.547634 -0.219072 33.41672 -4.759668 -0.106712 33.52791 -4.277938 -1.464026 34.95111 -5.11463 -1.003029 35.34875 -5.094042 -1.030625 35.03023 -5.226851 -0.730154 35.64057 -4.451201 -0.884464 35.62433 -4.757057 -0.826656 35.55945 -3.406801 -0.46758 35.57654 -3.659405 -0.583755 35.60293 -3.74713 -0.676217 35.34387 -5.145878 -0.512171 35.61024 -4.874998 -0.215542 35.54843 -4.913408 -0.27722 35.27722 -5.202568 0.02950698 35.61684 -4.723124 0.274387 35.39178 -4.84422 0.02401196 35.33517 -5.064199 -0.08716297 35.61341 -4.221755 0.15516 35.38647 -4.041577 0.2457309 35.45868 -4.336071 -0.104349 35.62611 -4.356516 0.1201 35.27212 -3.211594 -0.1330209 35.24031 -2.858444 0.409605 34.72578 -2.967286 0.318458 35.1222 -3.912073 0.272745 35.20145 -3.583962 0.483344 34.72498 -3.398352 0.532705 34.63897 -3.765733 0.514852 35.10228 -4.241185 0.774372 34.59464 -4.19284 0.734283 34.45949 -4.987679 0.44611 34.44426 -5.31502 0.207612 35.0095 -5.179981 0.465691 35.07249 -4.903644 -0.02783799 34.37101 -5.396428 -0.147588 34.86212 -5.31483 -0.48273 34.13664 -5.1637 -0.68771 34.76899 -5.285821 -1.050329 33.60365 -4.858307 -1.413058 34.51259 -5.108308 -0.938438 34.68091 -5.178627 -0.638185 33.89133 -5.013735 -1.188009 35.56193 -3.713483 -0.989499 35.54853 -3.867677 -0.624303 35.57451 -4.137626 -0.004854977 35.63155 -4.547773 0.319074 35.43152 -4.528978 0.806167 34.49587 -4.476178 0.551541 35.11511 -4.495469 0.811685 33.95244 -2.622328 0.437924 33.44234 -3.384569 0.162723 33.65039 -3.641978 0.454237 33.92422 -3.080112 0.63828 30.76576 -0.914752 0.610553 30.63241 -1.712192 0.645644 31.28357 -2.009575 0.747645 31.33836 -1.110161 -1.286922 30.73524 -3.040291 -1.323914 31.12591 -3.312349 -1.833035 34.338 -4.947247 -1.563334 33.35092 -4.740968 -2.084491 33.17335 -4.61595 -2.362018 34.18724 -4.794724 -1.876419 35.50729 -4.561851 -1.920867 35.26275 -4.835398 -2.492682 35.16039 -4.627079 -2.509917 35.37588 -4.490557 -0.726156 31.29682 0.526438 -0.828031 31.51499 0.560167 0.261699 30.87803 -0.115353 0.199132 31.09955 -0.143657 0.402983 32.15372 -3.377623 -0.204978 31.95842 -3.809374 -0.245656 32.30858 -4.025232 0.27482 32.51635 -3.671566 0.933396 32.36098 -2.081101 0.759963 32.48548 -2.683079 0.680112 32.8971 -2.890517 0.806219 33.05 -2.254898 -0.728231 31.78895 -3.846669 -0.830097 32.11793 -4.06943 -1.644583 31.96778 -3.939672 -1.516683 31.6699 -3.759526 -1.359012 35.30023 -2.12965 -1.552481 35.48988 -2.318541 -2.07897 35.44764 -1.996683 -1.93529 35.27379 -1.731871 -2.527956 35.82508 -4.182543 -2.519605 35.598 -4.351879 -1.395739 35.5851 -3.581931 -1.526189 35.69916 -3.960048 -1.990584 35.79489 -3.638473 -1.84242 35.68133 -3.314251 -1.812751 35.71846 -4.265648 -2.176023 35.84805 -3.983802 0.483154 33.99487 -3.37784 0.578666 34.15374 -3.753472 0.846672 34.14547 -4.200731 0.845354 34.00405 -5.019941 0.611597 34.00547 -5.35904 0.04684197 33.9286 -5.464808 -0.237731 33.65038 -4.978491 0.923456 34.04524 -4.521498 -1.07716 32.74079 -4.425115 -1.854318 32.55644 -4.274879 -2.269976 35.39691 -1.902554 -2.333894 35.30825 -1.756969 -1.837708 35.59241 -2.909001 -2.035058 35.56672 -2.505867 -1.661609 35.46831 -2.409914 -1.23294 35.4943 -2.84113 -0.334147 35.65053 -4.086317 -0.233044 35.64189 -3.99517 0.043383 35.45118 -3.777943 -0.982516 35.52485 -3.171445 -2.144145 35.42661 -2.113065 -2.302721 35.38311 -2.037472 -0.1641899 35.43588 -3.43072 -0.715055 35.06903 -5.262285 -0.204821 35.08138 -5.262345 -0.258438 35.69771 -4.613704 -0.254869 35.67951 -4.414501 -1.900616 34.81712 -4.952818 -2.454471 34.68634 -4.750882 0.91339 31.88557 -1.731579 0.757471 31.84819 -2.351645 -0.06853699 31.57088 -3.454319 0.404203 31.67719 -3.058438 -0.643507 31.45699 -3.565166 -1.407486 31.40145 -3.539378 -1.62926 34.72364 -0.982932 -1.76881 34.42624 -0.62648 -2.049139 35.05316 -1.371442 -1.747367 35.08044 -1.476557 -1.181355 35.1154 -1.832502 -0.384341 35.17868 -2.561465 0.573076 33.75582 0.737053 0.663335 33.69002 0.698013 0.374 33.80582 0.85067 0.495864 33.80319 0.776998 0.201511 33.70837 1.014802 0.261678 33.76734 0.934342 0.216386 33.31383 1.202372 0.169216 33.45316 1.191943 0.57445 33.03701 1.071545 0.328647 33.15828 1.175812 0.735245 33.10663 0.942252 0.808723 33.21691 0.837838 0.792156 33.4641 0.71236 0.819991 33.34502 0.76034 0.539833 33.58666 0.91288 0.56023 33.55796 0.898983 0.460688 33.61981 0.957781 0.521242 33.60564 0.930213 0.37887 33.57912 1.023862 0.407014 33.60654 0.988114 0.364913 33.39964 1.121633 0.351985 33.4596 1.11425 0.539444 33.28602 1.055992 0.414202 33.33463 1.109442 0.603462 33.31278 0.984469 0.63546 33.36995 0.945205 0.620817 33.47416 0.914894 0.63806 33.43048 0.928319 0.545571 33.58696 0.936136 0.562873 33.56459 0.921574 0.390907 33.58377 1.038871 0.417488 33.61001 1.005361 0.378254 33.41237 1.130988 0.366147 33.46959 1.123643 0.527303 33.29883 1.086944 0.424853 33.35074 1.119755 0.604591 33.33002 1.002333 0.634636 33.38444 0.965466 0.620261 33.48425 0.936828 0.636636 33.44237 0.949587 0.47093 33.62365 0.975807 0.422623 33.49687 1.142513 -1.747601 32.25087 -4.101141 -0.920241 32.44768 -4.245694 -0.430001 32.61874 -4.216256 0.202861 32.85583 -3.864756 0.806374 33.79392 -2.366493 0.625205 33.19478 -3.082566 0.827729 33.76818 -2.080841 0.897195 33.78383 -1.618808 1.060652 33.727 -0.651242 0.996818 33.80601 -1.079967 0.864997 33.64813 0.412209 1.031086 33.64355 -0.169658 0.729532 33.58737 0.68886 0.595731 33.51391 0.905162 0.596529 33.52242 0.927512 0.582009 33.54071 1.011523 -0.129679 33.61822 -4.495259 0.025002 33.68171 -3.884673 -1.774111 33.58495 0.1549209 -1.66503 33.66561 0.568149 -1.302693 33.73115 0.798237 -0.892766 33.71807 0.974297 -0.403081 33.61855 1.048752 -0.1596789 33.66558 1.194883 0.159439 33.54678 1.149556 0.353045 33.50342 1.090779 0.366908 33.51145 1.101616 0.420988 33.52898 1.127915 -2.249745 35.69573 -2.615316 -2.3754 36.15967 -2.678112 -2.578884 36.1258 -2.489089 -2.455269 35.66434 -2.412326 -2.10933 35.82205 -2.961659 -2.233452 36.22004 -2.955001 -2.094841 35.89533 -3.282032 -2.135713 36.28312 -3.241278 -2.124877 36.01136 -3.607372 -2.132095 36.36765 -3.549559 -2.248063 36.42486 -3.825863 -2.235898 36.06168 -3.886429 -2.527672 36.46525 -4.011481 -2.522262 36.08982 -4.061459 -2.312411 35.52183 -2.30222 0.52826 33.60931 0.950703 -1.103126 35.49652 -2.744503 -0.891504 35.31559 -2.53019 -0.707577 35.15146 -2.248249 -1.806054 33.96691 -0.104396 -1.614619 34.03824 0.245456 -1.215285 34.08717 0.510234 -0.773621 33.97262 0.70981 -0.366978 33.85963 0.879671 -0.133505 33.84212 1.074501 0.161502 33.6289 1.093996 0.360875 33.54337 1.060376 0.374026 33.54969 1.073123 0.42543 33.55731 1.108993 -2.198524 35.21265 -1.623595 0.415225 33.62295 -3.700564 0.711745 33.73865 -3.842539 0.160072 33.51059 -4.027363 -0.113876 33.41489 -5.10052 -0.07394695 33.38761 -4.675649 0.228658 33.56198 -5.476493 0.708147 33.61748 -5.404182 0.955719 33.60638 -5.068588 1.109231 33.67171 -4.598255 1.010262 33.76028 -4.282982 0.887577 31.9716 -3.974615 1.356051 32.18424 -4.000947 0.655887 31.93713 -4.453129 0.457446 32.01105 -5.461341 0.471052 31.93483 -5.047246 0.729864 32.26227 -5.768233 1.161188 32.31891 -5.607358 1.467517 32.38552 -5.255237 1.606572 32.42027 -4.801896 1.600587 32.36796 -4.449246 1.743332 30.76205 -4.414444 2.013216 30.9018 -4.83012 2.089978 30.92352 -5.115805 2.028286 30.89161 -5.425206 1.721894 30.88148 -5.727322 1.318914 30.83647 -5.87232 0.956608 30.60016 -5.715927 0.934829 30.49819 -5.282376 0.993756 30.45421 -4.825154 1.323118 30.54127 -4.369853 -1.991354 36.97136 -3.12273 -2.203437 36.88922 -2.741149 -2.406452 36.8408 -2.457854 -2.631349 36.8324 -2.290907 -2.174536 37.54034 -4.135298 -2.311162 37.27788 -4.02494 -1.806819 37.47941 -3.879318 -1.905897 37.07997 -3.396453 -2.034141 37.19338 -3.74723 -2.236267 36.6413 -2.858188 -2.094895 36.69943 -3.178103 -2.405304 36.60438 -2.603577 -2.617689 36.6044 -2.423313 -2.4482 36.93992 -3.985572 -2.057819 36.77711 -3.465605 -2.18113 36.87324 -3.767756 -1.453572 37.79407 -4.184231 -1.984247 37.79111 -4.427048 -2.684789 37.92486 -1.183749 -2.559617 37.91519 -1.209842 -2.250239 37.74641 -1.299271 -2.423367 37.90303 -1.230617 -2.311922 37.85557 -1.279783 -2.257302 37.60789 -1.297709 -2.414648 37.58486 -1.229767 -2.540035 37.58092 -1.184373 -2.701012 37.57765 -1.145244 -2.871891 37.58595 -1.138472 -2.839132 37.92098 -1.185977 -2.802254 38.03782 -1.503308 -2.369522 37.99068 -1.464259 -2.195256 37.95143 -1.489495 -2.114794 37.75761 -1.50244 -2.252939 37.39099 -1.489985 -2.44334 37.29006 -1.454555 -2.869787 37.29534 -1.425278 -2.73156 37.98878 -2.570853 -2.208694 37.95641 -2.513974 -2.046988 37.9094 -2.498632 -1.956566 37.55707 -2.520664 -2.012919 37.35625 -2.447391 -2.261843 37.21237 -2.427663 -2.779633 37.23289 -2.460406 -2.731261 37.33633 -2.92713 -2.222652 37.30165 -2.883476 -2.98885 37.95235 -1.211415 -3.107825 37.96451 -1.259117 -3.420709 37.84858 -1.402961 -3.346595 37.94646 -1.371548 -3.239021 37.97557 -1.303294 -3.298784 37.6637 -1.308835 -3.436347 37.71049 -1.402346 -3.037403 37.60869 -1.176653 -3.185763 37.63947 -1.242904 -3.237161 38.06563 -1.541235 -3.513828 37.87405 -1.62512 -3.407915 38.05367 -1.596536 -3.279355 37.36169 -1.528986 -3.438825 37.48932 -1.594408 -3.21379 38.03652 -2.60138 -3.589434 37.63095 -2.574371 -3.382607 38.01511 -2.613626 -3.289922 37.29392 -2.514784 -3.512072 37.4726 -2.573001 -3.238824 37.3814 -2.966929 -0.922463 38.03379 -4.093174 -0.684269 38.39516 -4.304558 -0.517275 38.66763 -3.811393 -0.660924 38.37585 -3.724289 -2.053455 37.70371 -4.708699 -1.917721 38.13465 -5.202979 -1.166889 38.17652 -4.830778 -1.387 37.8203 -4.414365 -2.552445 37.68547 -4.829639 -2.478109 38.15196 -5.309007 -2.756265 36.52495 -4.097839 -2.631262 37.21218 -4.449083 -2.192719 37.2663 -4.316833 -2.378578 36.60851 -3.966988 -1.608332 37.45766 -4.103929 -1.973809 36.94421 -3.758057 -1.160658 37.67243 -3.881791 -1.537474 37.31713 -3.477488 -0.804573 38.08406 -3.637186 -1.206474 37.59319 -3.489881 -2.350258 38.94062 -5.817057 -1.658064 38.89175 -5.686871 -0.838713 38.85762 -5.274506 -0.418645 38.89328 -4.509061 -0.401599 38.94371 -3.649989 -2.254761 40.02988 -5.914993 -1.562568 39.98101 -5.784808 -0.743216 39.94688 -5.372443 -0.331677 39.93301 -4.554665 -0.264942 39.92021 -3.638817 -0.400202 39.92576 -3.059804 -0.517193 39.90961 -2.709522 -0.676398 38.96276 -2.687351 -0.631124 38.95389 -3.133394 -0.328005 39.91756 -3.406493 -0.650984 39.01509 -3.354024 -0.77484 38.74163 -2.64975 -0.780948 38.69505 -2.917189 -4.203021 38.29092 -4.351188 -4.442687 38.67767 -4.05493 -4.521413 38.9872 -4.161476 -4.346491 38.68219 -4.592589 -3.055223 37.78223 -4.787488 -3.733054 38.00418 -4.598881 -3.827832 38.38507 -5.040059 -3.043989 38.22293 -5.29156 -3.121204 36.6591 -3.978658 -3.070411 37.33383 -4.378163 -3.472083 37.04855 -3.795093 -3.641386 37.61431 -4.246823 -3.819757 37.49276 -3.637083 -4.059551 37.89964 -4.109787 -4.081599 37.82001 -3.727729 -4.363959 38.36814 -3.948385 -3.05346 39.00312 -5.808871 -4.461487 39.21594 -4.862527 -3.926648 39.10407 -5.544485 -4.618266 39.28024 -4.018654 -2.957963 40.09238 -5.906808 -4.37452 40.25566 -4.908132 -3.831151 40.19333 -5.642422 -4.599356 40.26615 -4.017776 -4.56681 40.2583 -3.424092 -4.482566 39.26128 -3.470126 -4.514065 39.26905 -3.02288 -4.515998 40.22876 -3.059139 -4.415575 39.31554 -3.683163 -4.578516 40.2568 -3.778117 -4.414911 38.98508 -3.234908 -4.459636 39.03572 -2.971913 -4.23374 40.37863 -4.6068 -4.082429 40.90079 -4.600089 -3.616076 40.89036 -5.253787 -3.8055 40.31867 -5.314537 -2.263896 40.11286 -5.734749 -3.115243 40.18779 -5.735052 -2.947997 40.76018 -5.672318 -2.232231 40.554 -5.694247 -2.315462 39.52118 -5.685072 -3.183051 39.56576 -5.66665 -3.863436 39.69017 -5.224901 -4.298548 39.80939 -4.557174 -3.199123 38.29196 -5.006651 -3.224362 38.87546 -5.421134 -2.390923 38.8176 -5.464238 -2.473398 38.20508 -5.080054 -3.85358 39.00376 -5.062068 -3.7781 38.43668 -4.752766 -4.236235 38.70862 -4.31768 -4.297091 39.22865 -4.460935 -4.073139 38.03425 -4.049335 -3.684214 37.97209 -4.379257 -3.126803 37.88229 -4.526942 -2.551292 37.82371 -4.537256 -3.862567 39.32785 -5.146472 -4.301681 39.5043 -4.509786 -3.207834 39.19944 -5.548843 -2.354449 39.14892 -5.578972 -0.501172 40.08073 -4.28046 -0.804969 40.0792 -5.052199 -0.909641 40.67436 -5.017162 -0.567262 40.62025 -4.292756 -1.507573 40.64522 -5.546382 -1.424235 40.05283 -5.587206 -1.468012 39.42889 -5.516704 -0.536321 39.50912 -4.228241 -0.863027 39.45071 -4.962574 -1.766712 38.17764 -4.881415 -1.578844 38.74414 -5.277266 -1.008741 38.77671 -4.813343 -0.645749 38.93724 -4.141697 -0.811487 38.43529 -4.018253 -1.224738 38.23289 -4.529524 -1.122506 37.79875 -3.79136 -1.453571 37.79407 -4.184231 -1.984244 37.79111 -4.427047 -0.934431 39.09415 -4.890464 -0.589472 39.20803 -4.185226 -1.521895 39.06488 -5.401441 -2.854966 37.44961 -1.405421 -3.036368 37.49781 -1.337835 -3.173086 37.5258 -1.461552 -3.120809 37.50048 -1.518874 -3.049746 37.53934 -1.299675 -3.196802 37.56573 -1.432072 -2.863373 37.47603 -1.285145 -2.863552 37.51957 -1.243353 -3.16678 37.60875 -1.457962 -3.029555 37.58744 -1.333956 -3.002812 37.63667 -1.442132 -3.110178 37.64031 -1.51282 -2.856053 37.57232 -1.280976 -2.841539 37.62623 -1.397776 -2.996534 37.68162 -1.625659 -3.144373 37.67266 -1.655903 -2.994884 37.71632 -1.846651 -3.161069 37.70524 -1.862066 -2.820673 37.67324 -1.593516 -2.797248 37.7087 -1.829076 -2.775929 37.7276 -2.055659 -2.980281 37.73487 -2.072583 -3.152209 37.72444 -2.087221 -3.164712 37.55998 -2.094342 -2.793036 37.50259 -2.065399 -2.815587 37.46748 -1.839516 -3.174496 37.52862 -1.869712 -3.156876 37.5082 -1.663023 -2.83778 37.44823 -1.603255 -3.295546 37.65588 -2.10521 -3.264517 37.60696 -2.102919 -3.27044 37.57668 -1.876628 -3.299941 37.62747 -1.877444 -3.257704 37.69658 -2.099038 -3.263119 37.67298 -1.87246 -3.23817 37.64048 -1.648987 -3.273263 37.59617 -1.637208 -3.244985 37.55085 -1.652865 -2.951494 37.74608 -2.410227 -3.127477 37.73838 -2.425042 -2.74545 37.73988 -2.393059 -3.127192 37.56992 -2.431119 -2.762556 37.51488 -2.402801 -3.240126 37.62465 -2.440555 -3.275834 37.6673 -2.444098 -3.223781 37.70772 -2.436039 -2.907165 37.72513 -2.805144 -3.075121 37.71799 -2.819251 -2.712396 37.72035 -2.788945 -3.071164 37.54966 -2.824912 -2.729516 37.49517 -2.798696 -3.182568 37.60388 -2.834388 -3.213342 37.64288 -2.837489 -3.160998 37.68549 -2.829197 -2.568899 37.45643 -1.47062 -2.523965 37.47399 -1.404799 -2.682644 37.46958 -1.306909 -2.499703 37.5101 -1.371124 -2.669681 37.50901 -1.266446 -2.517659 37.55694 -1.401209 -2.558269 37.59626 -1.464567 -2.675429 37.61054 -1.413509 -2.675831 37.5592 -1.303029 -2.495252 37.62086 -1.59915 -2.64281 37.65339 -1.594733 -2.438339 37.64756 -1.798878 -2.600845 37.68487 -1.8122 -2.573163 37.70238 -2.036988 -2.405104 37.66482 -2.021901 -2.417607 37.50036 -2.029022 -2.451767 37.47093 -1.806523 -2.507755 37.4564 -1.60627 -2.273419 37.5743 -2.015846 -2.312894 37.5487 -1.791146 -2.349716 37.5032 -1.796129 -2.311686 37.53092 -2.019613 -2.342395 37.59949 -1.791961 -2.304873 37.62053 -2.015732 -2.410306 37.57441 -1.576607 -2.38519 37.5253 -1.559564 -2.41712 37.48478 -1.580485 -2.368703 37.67782 -2.358703 -2.541164 37.71334 -2.374351 -2.39445 37.51144 -2.367055 -2.274395 37.54758 -2.356121 -2.23235 37.58401 -2.352866 -2.277992 37.63224 -2.353348 -2.354843 37.6605 -2.756277 -2.519464 37.69419 -2.771248 -2.384211 37.49483 -2.764852 -2.265718 37.53071 -2.754228 -2.22912 37.56433 -2.751438 -2.274741 37.61476 -2.751711 -1.198638 39.94433 -1.588009 -0.979138 39.80641 -1.793389 -0.993617 39.83784 -1.769698 -1.181304 39.99006 -1.584159 -2.046629 40.13628 -1.160682 -1.820926 40.13495 -1.203264 -1.811065 40.19964 -1.198292 -2.036936 40.19755 -1.155399 -2.296916 40.08887 -1.142845 -2.237643 40.10903 -1.132763 -2.230824 40.15218 -1.125991 -2.27887 40.11557 -1.133617 -1.417548 40.0484 -1.392773 -1.398499 40.10312 -1.386121 -1.620716 40.10599 -1.286137 -1.611182 40.16813 -1.28095 -0.996126 39.81027 -1.851817 -1.010605 39.8417 -1.828125 -1.176844 39.98477 -1.640005 -1.806605 40.19435 -1.254139 -2.032476 40.19225 -1.211245 -2.292456 40.08358 -1.198691 -2.233183 40.10373 -1.188609 -2.226364 40.14688 -1.181838 -2.27441 40.11027 -1.189463 -1.394039 40.09782 -1.441967 -1.606722 40.16284 -1.336796 -1.616256 40.10069 -1.341983 -1.413087 40.04311 -1.448619 -1.194178 39.93904 -1.643855 -1.816466 40.12965 -1.25911 -2.042169 40.13099 -1.216529 -1.840621 39.37447 -1.650177 -2.021925 39.30498 -1.597572 -2.370558 39.64037 -1.727364 -2.023554 39.79512 -1.774779 -2.097131 39.20261 -1.576038 -2.510474 39.42439 -1.701077 -2.141535 39.07245 -1.572992 -2.596384 39.1663 -1.670865 -1.181506 38.82746 -1.933739 -1.131765 38.93378 -1.977256 -1.018625 39.00761 -2.16118 -1.236159 39.126 -1.902437 -1.420596 39.26585 -1.7974 -1.282619 39.5985 -1.945045 -1.079822 39.37456 -2.113824 -1.620895 39.36025 -1.682381 -1.65745 39.79041 -1.797402 -1.255507 38.7476 -1.877835 -1.221407 38.44583 -2.047051 -2.125602 38.90887 -1.565963 -2.616047 38.82886 -1.652422 -2.062376 38.79098 -1.577953 -2.51472 38.57058 -1.650543 -1.932335 38.70072 -1.617419 -2.227902 38.37258 -1.677883 -1.706589 38.63616 -1.672771 -1.786285 38.23327 -1.725166 -1.461431 38.62979 -1.763214 -1.37437 38.24365 -1.862866 -2.348844 39.6146 -1.999258 -2.00184 39.76934 -2.046672 -2.488759 39.39861 -1.972971 -2.57467 39.14052 -1.942759 -1.058108 39.34878 -2.385717 -0.996909 38.98184 -2.433074 -1.260904 39.57272 -2.216938 -1.635736 39.76464 -2.069295 -1.199693 38.42005 -2.318944 -2.594333 38.80308 -1.924315 -2.493006 38.5448 -1.922436 -2.206188 38.3468 -1.949776 -1.76457 38.20749 -1.997059 -1.352656 38.21787 -2.134759 -1.801509 38.97671 -2.412059 -1.77429 39.64943 -1.43701 -1.849388 39.66298 -1.414126 -1.847917 39.63974 -1.412749 -2.018103 39.60546 -1.373717 -2.027366 39.6446 -1.375717 -2.09656 39.62719 -1.366571 -2.077906 39.58857 -1.365671 -2.254978 39.50652 -1.362198 -2.280805 39.44482 -1.360116 -2.233797 39.49509 -1.363695 -1.904625 39.66405 -1.39897 -1.899921 39.63153 -1.397546 -1.9668 39.65668 -1.386661 -1.96072 39.61936 -1.385156 -2.16 39.59783 -1.365063 -2.210883 39.56196 -1.365402 -2.191923 39.53001 -1.365049 -2.136731 39.56587 -1.365203 -1.576435 39.16982 -1.869165 -1.398874 39.26034 -1.83725 -1.423387 39.36326 -1.839025 -1.58884 39.22227 -1.870196 -1.608316 39.272 -1.869683 -1.46177 39.46078 -1.837725 -1.511164 39.53858 -1.833021 -1.633433 39.31165 -1.86743 -1.664745 39.34531 -1.863622 -1.572675 39.6046 -1.825283 -1.640685 39.64588 -1.814842 -1.699473 39.36636 -1.85838 -1.737132 39.37859 -1.852039 -1.71443 39.66986 -1.802308 -1.791508 39.66712 -1.78762 -1.776617 39.37722 -1.844524 -1.81446 39.36677 -1.836755 -1.865342 39.64661 -1.7725 -1.938242 39.59864 -1.755924 -1.851892 39.34235 -1.828189 -1.884955 39.31167 -1.820041 -2.002549 39.5384 -1.740195 -2.060095 39.45444 -1.72418 -1.914537 39.2689 -1.811745 -1.937881 39.22165 -1.804304 -2.105437 39.36174 -1.70982 -2.139335 39.25466 -1.696507 -1.955293 39.16708 -1.797442 -1.965179 39.11042 -1.791805 -2.158617 39.14353 -1.685509 -2.162948 39.02992 -1.676943 -1.967329 39.05249 -1.787469 -1.962693 38.99493 -1.784391 -2.154106 38.91701 -1.670761 -2.130205 38.81419 -1.667941 -1.950284 38.94247 -1.783071 -1.9308 38.89274 -1.783247 -2.092479 38.71665 -1.668022 -2.043106 38.64019 -1.671751 -1.905351 38.85372 -1.785277 -1.874362 38.81941 -1.788682 -1.982842 38.57292 -1.678201 -1.915797 38.53107 -1.687841 -1.839979 38.79805 -1.793658 -1.801969 38.78613 -1.800005 -1.841611 38.50772 -1.70024 -1.764246 38.51053 -1.715265 -1.762465 38.78755 -1.807613 -1.724645 38.79795 -1.815549 -1.690174 38.53093 -1.730985 -1.616658 38.57883 -1.74865 -1.687216 38.82237 -1.824416 -1.654162 38.85307 -1.83289 -1.5517 38.63903 -1.765553 -1.493513 38.72289 -1.782773 -1.624588 38.89583 -1.841521 -1.601246 38.9431 -1.849252 -1.447545 38.8156 -1.79819 -1.413288 38.9226 -1.812176 -1.58384 38.99766 -1.856301 -1.573953 39.05433 -1.86201 -1.39384 39.03377 -1.823438 -1.389676 39.14742 -1.831721 -1.571802 39.11226 -1.866267 -1.766328 39.08018 -1.853445 -1.369422 39.26758 -1.88546 -1.395446 39.37734 -1.887299 -1.43626 39.48136 -1.88585 -1.488861 39.56432 -1.880769 -1.554405 39.63473 -1.872469 -1.627018 39.67877 -1.861304 -1.705768 39.70434 -1.847937 -1.788232 39.70145 -1.832303 -1.867264 39.6796 -1.81623 -1.945378 39.62849 -1.798631 -2.014347 39.56427 -1.781933 -2.076059 39.47478 -1.764939 -2.124728 39.37591 -1.749687 -2.161063 39.26173 -1.735534 -2.181702 39.14321 -1.723819 -2.186243 39.02201 -1.714664 -2.176638 38.90158 -1.708027 -2.150844 38.79186 -1.704951 -2.110265 38.68781 -1.704955 -2.057226 38.6062 -1.708852 -1.992585 38.53445 -1.715653 -1.920796 38.48976 -1.725878 -1.841414 38.46484 -1.739075 -1.758806 38.46782 -1.755097 -1.679727 38.48958 -1.771893 -1.601379 38.54067 -1.790784 -1.532177 38.6049 -1.808872 -1.470239 38.69435 -1.827303 -1.421332 38.79324 -1.843801 -1.384873 38.90738 -1.858754 -1.364164 39.02595 -1.87078 -1.359686 39.14715 -1.879598 -1.487371 38.69407 -1.775468 -1.49817 38.72108 -1.761747 -1.528184 38.66496 -1.733711 -1.514457 38.73984 -1.745255 -1.533754 38.7475 -1.728502 -1.553124 38.74289 -1.714037 -1.569617 38.72671 -1.704064 -1.580722 38.70142 -1.700101 -1.584749 38.67088 -1.702752 -1.581085 38.63973 -1.711611 -1.570287 38.61272 -1.725331 -1.553998 38.59396 -1.741825 -1.534701 38.5863 -1.758578 -1.515332 38.59091 -1.773042 -1.498838 38.6071 -1.783015 -1.487733 38.63238 -1.786977 -1.483706 38.66292 -1.784328 -2.014823 38.84247 -1.616558 -1.967334 38.86436 -1.606173 -2.076957 38.92481 -1.602144 -1.936273 38.89569 -1.597614 -1.926362 38.9317 -1.59218 -1.939114 38.96691 -1.590701 -1.972588 38.99594 -1.593401 -2.021688 39.0144 -1.59987 -2.078936 39.01945 -1.609123 -2.13562 39.01034 -1.61975 -2.183108 38.98846 -1.630134 -2.214173 38.95712 -1.638695 -2.224081 38.92111 -1.644128 -2.211328 38.88591 -1.645607 -2.177856 38.85687 -1.642907 -2.128758 38.83842 -1.636438 -2.071508 38.83336 -1.627186 -1.171648 39.13105 -1.793617 -1.099736 39.03752 -1.849678 -1.063965 39.09512 -1.857206 -1.130289 39.19515 -1.783466 -1.365808 39.29822 -1.61892 -1.337461 39.38099 -1.581831 -1.5741 39.39355 -1.494538 -1.554474 39.48163 -1.440727 -1.732867 39.42521 -1.436778 -1.734823 39.51726 -1.378556 -1.99337 39.39634 -1.375759 -1.946625 39.40851 -1.388761 -1.953229 39.48896 -1.323858 -2.009829 39.46631 -1.308758 -1.880724 39.42133 -1.399092 -1.886485 39.50823 -1.339512 -1.053906 38.96391 -1.896749 -1.010897 38.98559 -1.91863 -1.03101 39.0202 -1.898777 -1.072528 38.87646 -1.920385 -1.107407 38.92418 -1.885902 -1.118495 38.88411 -1.892194 -1.107325 38.85424 -1.909068 -1.986623 39.34445 -1.45775 -1.92886 39.34318 -1.495469 -1.857015 39.35479 -1.520101 -1.730062 39.35191 -1.558435 -1.597111 39.33612 -1.607064 -1.39993 39.25433 -1.707024 -1.235471 39.10266 -1.810717 -1.161322 39.00325 -1.85294 -1.026441 38.91225 -1.931226 -2.064325 39.44146 -1.294287 -2.055834 39.39913 -1.322342 -2.10446 39.38976 -1.302532 -2.111932 39.41154 -1.281679 -2.182763 39.37271 -1.288654 -2.03551 39.32983 -1.434144 -2.053925 39.35553 -1.393376 -2.091264 39.31973 -1.395026 -2.078469 39.30805 -1.415861 -1.163578 38.82656 -1.896781 -1.152308 38.82487 -1.904495 -0.986794 38.94415 -1.937642 -1.235326 38.75914 -1.901646 -2.038608 39.24989 -1.573208 -2.053091 39.2577 -1.537894 -2.099284 39.19522 -1.567154 -1.907314 39.30392 -1.604633 -1.981751 39.31867 -1.507685 -1.95937 39.29063 -1.587654 -1.269198 39.086 -1.882482 -1.205972 38.98912 -1.922758 -1.432085 39.22861 -1.775038 -1.620433 39.30949 -1.669502 -1.839913 39.31894 -1.631746 -1.722197 39.32147 -1.649655 -1.164977 38.91756 -1.941936 -1.165649 38.89402 -1.938605 -1.185732 38.83151 -1.921077 -1.998628 39.27544 -1.575652 -2.01609 39.28768 -1.522336 -2.136262 39.26818 -1.402892 -1.181163 39.1586 -1.820494 -1.147924 39.21945 -1.833325 -1.091422 39.11347 -1.905065 -1.117985 39.04984 -1.88127 -1.374749 39.32662 -1.669776 -1.342713 39.41286 -1.629538 -1.572635 39.42353 -1.543296 -1.560653 39.51716 -1.487499 -1.736775 39.45901 -1.488053 -1.73953 39.55435 -1.42691 -2.017486 39.42822 -1.4235 -2.029866 39.49709 -1.359281 -1.967145 39.52489 -1.376451 -1.961177 39.4488 -1.439193 -1.889081 39.46082 -1.450906 -1.894563 39.54627 -1.392792 -1.077343 38.96833 -1.923341 -1.056641 39.0177 -1.955551 -1.044083 38.98352 -1.969257 -1.13935 38.82556 -1.924821 -1.171294 38.81574 -1.917216 -2.01098 39.37197 -1.484355 -1.948161 39.37586 -1.519243 -1.868933 39.39175 -1.54368 -1.733315 39.38722 -1.581448 -1.603111 39.37099 -1.62908 -1.40267 39.28643 -1.732502 -1.219438 39.13383 -1.840809 -1.146852 39.02577 -1.889588 -2.072215 39.42261 -1.38294 -2.083389 39.46684 -1.342783 -2.133793 39.39986 -1.33515 -2.137701 39.42196 -1.317633 -2.052875 39.34946 -1.460304 -2.101419 39.31568 -1.439772 -2.116452 39.3329 -1.414417 -2.073546 39.3903 -1.414058 -1.119098 38.84767 -1.9482 -1.13318 38.87448 -1.922455 -1.088134 38.88237 -1.961344 -1.098639 38.93841 -1.923823 -1.054077 38.922 -1.967999 -1.036912 38.94519 -1.974432 -2.056186 39.26132 -1.588774 -2.075316 39.26406 -1.553845 -1.924784 39.34041 -1.623175 -1.977754 39.31854 -1.60842 -2.003482 39.35184 -1.528555 -1.174822 39.01298 -1.945086 -1.242719 39.11565 -1.901822 -1.419358 39.2639 -1.794035 -1.618646 39.3479 -1.685896 -1.722678 39.36198 -1.664868 -1.849728 39.35836 -1.647737 -1.155022 38.88608 -1.961166 -1.144329 38.93698 -1.971182 -1.182675 38.82565 -1.940001 -2.045991 39.31386 -1.5438 -2.024331 39.297 -1.59695 -4.041321 40.17121 -1.836546 -4.051641 40.21914 -1.835114 -4.226108 40.09582 -2.052316 -4.241048 40.06674 -2.078579 -3.260242 40.23314 -1.266789 -3.260935 40.29524 -1.262414 -3.472836 40.33227 -1.343582 -3.472575 40.26676 -1.347668 -3.027413 40.14717 -1.206712 -3.042349 40.1765 -1.200368 -3.084619 40.22032 -1.200639 -3.083613 40.17655 -1.206726 -3.845747 40.2422 -1.605071 -3.856804 40.29932 -1.601052 -3.657519 40.26854 -1.464215 -3.657901 40.33148 -1.459895 -4.198906 40.09616 -2.106879 -4.213847 40.06708 -2.133143 -4.047182 40.21385 -1.89096 -3.256475 40.28994 -1.31826 -3.468376 40.32697 -1.399428 -3.079153 40.17125 -1.262572 -3.022953 40.14188 -1.262559 -3.037889 40.17121 -1.256214 -3.080159 40.21503 -1.256485 -3.852344 40.29402 -1.656898 -3.653441 40.32619 -1.515741 -3.841287 40.23691 -1.660918 -3.653059 40.26325 -1.520061 -4.036861 40.16591 -1.892392 -3.468115 40.26147 -1.403514 -3.255782 40.22785 -1.322635 -3.554042 39.79146 -1.592613 -3.488159 39.77064 -1.556156 -3.482834 39.79334 -1.556938 -3.334805 39.71054 -1.488837 -3.2807 39.68456 -1.470832 -3.256328 39.71974 -1.467969 -3.319292 39.7477 -1.48867 -3.122038 39.57571 -1.438005 -3.144174 39.56774 -1.443289 -3.106996 39.51075 -1.43235 -3.441507 39.75456 -1.532327 -3.431568 39.78591 -1.532471 -3.374395 39.76901 -1.509727 -3.38644 39.73315 -1.509807 -3.199524 39.68078 -1.455948 -3.227155 39.65289 -1.460539 -3.179161 39.60879 -1.451364 -3.155634 39.63736 -1.448002 -3.496067 39.50659 -1.794914 -3.230487 39.89144 -1.880302 -2.92561 39.68467 -1.775893 -3.339784 39.41016 -1.712793 -2.828094 39.44974 -1.728847 -3.286485 39.29753 -1.680023 -2.790395 39.18178 -1.687828 -3.264323 39.16206 -1.67116 -4.17417 39.06629 -2.195396 -4.264973 39.2667 -2.445009 -4.198298 39.17852 -2.245365 -4.079433 39.35292 -2.151025 -4.15587 39.62005 -2.382764 -3.952532 39.81159 -2.178476 -3.896192 39.46343 -2.013842 -3.583311 39.94412 -1.965781 -3.706404 39.5267 -1.864718 -4.124423 38.97656 -2.128679 -4.175909 38.68162 -2.305364 -2.827573 38.84575 -1.670916 -3.306075 39.00236 -1.679861 -2.967081 38.60668 -1.690093 -3.384065 38.8959 -1.700288 -3.272425 38.45594 -1.769206 -3.518609 38.82732 -1.756095 -3.715612 38.38725 -1.893847 -3.73873 38.79835 -1.850427 -4.090761 38.46044 -2.100361 -3.962503 38.8294 -1.981894 -3.208772 39.86567 -2.152194 -2.903895 39.65889 -2.047786 -2.806379 39.42396 -2.000741 -2.76868 39.156 -1.959721 -4.243258 39.24093 -2.716903 -4.134156 39.59428 -2.654657 -3.930818 39.78581 -2.450369 -3.561597 39.91834 -2.237674 -4.154195 38.65584 -2.577257 -2.805858 38.81997 -1.942809 -2.945367 38.5809 -1.961987 -3.25071 38.43016 -2.041099 -3.693897 38.36147 -2.16574 -4.069046 38.43467 -2.372254 -3.465329 39.1095 -2.557527 -4.022059 39.13924 -2.071847 -4.053443 39.0403 -2.08556 -3.980906 39.13245 -2.033296 -3.948873 39.11171 -2.004347 -3.930845 39.0802 -1.989411 -3.929564 39.04269 -1.990764 -3.945225 39.00491 -2.008195 -3.975445 38.9726 -2.039055 -4.015621 38.95068 -2.078642 -4.059639 38.9425 -2.120932 -4.100796 38.94929 -2.159486 -4.132823 38.97002 -2.188429 -4.150853 39.00154 -2.203367 -4.152135 39.03904 -2.202015 -4.13647 39.07683 -2.184579 -4.106254 39.10913 -2.153723 -4.066075 39.13105 -2.114134 -3.582491 38.94245 -1.798034 -3.523032 38.90088 -1.788187 -3.568202 38.9723 -1.794762 -3.546908 38.99177 -1.792803 -3.521839 38.99792 -1.792453 -3.496822 38.9898 -1.793766 -3.475661 38.96864 -1.796543 -3.461581 38.93768 -1.800361 -3.45672 38.90161 -1.804639 -3.461823 38.86594 -1.808724 -3.476112 38.8361 -1.811996 -3.49741 38.81661 -1.813956 -3.522475 38.81047 -1.814306 -3.547492 38.81859 -1.812992 -3.568654 38.83975 -1.810215 -3.582737 38.87071 -1.806397 -3.587596 38.90678 -1.80212 -3.884278 39.36474 -2.194747 -3.863051 39.41398 -2.189073 -4.000614 39.58371 -2.211179 -4.042336 39.48714 -2.222605 -3.836357 39.45925 -2.179614 -3.806902 39.49363 -2.16701 -3.890399 39.73992 -2.167253 -3.948191 39.67249 -2.192288 -3.773381 39.52101 -2.151061 -3.739493 39.53541 -2.133139 -3.758339 39.82186 -2.100422 -3.824651 39.79361 -2.135685 -3.704888 39.54061 -2.113561 -3.67147 39.53214 -2.09285 -3.625394 39.8155 -2.021528 -3.690612 39.83209 -2.061971 -3.641286 39.51507 -2.072874 -3.614281 39.48436 -2.052916 -3.513957 39.72185 -1.943842 -3.566514 39.78207 -1.982596 -3.592276 39.44829 -2.035145 -3.575701 39.401 -2.018982 -3.439069 39.55838 -1.878123 -3.471215 39.65114 -1.909415 -3.565372 39.35042 -2.005989 -3.561611 39.29374 -1.995925 -3.411955 39.34807 -1.833502 -3.419138 39.45924 -1.853014 -3.564718 39.23637 -1.989719 -3.574712 39.17914 -1.987479 -3.437642 39.12331 -1.81693 -3.418128 39.23556 -1.821422 -3.590435 39.12351 -1.988761 -3.611768 39.07428 -1.994165 -3.509809 38.91758 -1.829451 -3.468302 39.01414 -1.819221 -3.638587 39.02901 -2.003312 -3.668311 38.99532 -2.015795 -3.619933 38.76259 -1.871028 -3.562058 38.82869 -1.846973 -3.701795 38.96725 -2.031283 -3.735514 38.95249 -2.048849 -3.751016 38.6785 -1.935214 -3.685207 38.70747 -1.901011 -3.770383 38.94765 -2.068542 -3.803778 38.95617 -2.089344 -3.884435 38.68567 -2.01452 -3.819084 38.66896 -1.973664 -3.83389 38.97319 -2.10947 -3.860787 39.00389 -2.12971 -3.996099 38.77927 -2.094092 -3.943344 38.71903 -2.054102 -3.882668 39.03997 -2.147782 -3.899118 39.08725 -2.164256 -4.071366 38.94279 -2.162495 -4.039033 38.85004 -2.129846 -3.909342 39.13783 -2.17752 -3.913033 39.1945 -2.187756 -4.098792 39.15318 -2.209081 -4.091501 39.04203 -2.188812 -3.909899 39.25188 -2.19403 -3.899935 39.30911 -2.196197 -4.073098 39.37801 -2.225632 -4.092673 39.26575 -2.221465 -3.731394 39.24198 -2.11795 -4.006865 39.60164 -2.265482 -4.051232 39.49863 -2.277678 -3.889546 39.76828 -2.218586 -3.951087 39.69635 -2.245318 -3.74871 39.85568 -2.147229 -3.819498 39.82555 -2.184895 -3.606574 39.84886 -2.062991 -3.676385 39.86657 -2.106187 -3.487067 39.74892 -1.980033 -3.543493 39.81317 -2.021418 -3.406461 39.57452 -1.90984 -3.441097 39.67346 -1.943253 -3.377048 39.35015 -1.862181 -3.384897 39.46873 -1.883011 -3.404455 39.11041 -1.844504 -3.383559 39.23014 -1.849285 -3.481915 38.89101 -1.857924 -3.437333 38.994 -1.846968 -3.600101 38.72577 -1.902369 -3.537988 38.79626 -1.876654 -3.740562 38.63615 -1.970928 -3.670087 38.66704 -1.934403 -3.883202 38.64384 -2.055609 -3.81341 38.62602 -2.012003 -4.002284 38.74367 -2.140557 -3.946092 38.67943 -2.097879 -4.082326 38.91807 -2.213557 -4.047979 38.81915 -2.178719 -4.111359 39.14244 -2.263261 -4.103669 39.02389 -2.241635 -4.083959 39.38223 -2.280912 -4.104795 39.2625 -2.276469 -4.160131 39.36956 -2.054901 -4.192007 39.43951 -2.051152 -4.259529 39.35016 -2.136595 -4.235112 39.28776 -2.123805 -3.975148 39.50648 -1.847055 -3.996079 39.59317 -1.814275 -3.779056 39.56953 -1.687319 -3.793555 39.66033 -1.63649 -3.629655 39.57659 -1.602615 -3.623303 39.66798 -1.543667 -3.391418 39.50792 -1.497991 -3.375955 39.57534 -1.428199 -3.42482 39.60641 -1.452519 -3.432713 39.52712 -1.51869 -3.492994 39.55001 -1.540053 -3.483987 39.63572 -1.479182 -4.283146 39.22163 -2.179083 -4.296198 39.2808 -2.184253 -4.317779 39.24952 -2.207752 -4.274727 39.13203 -2.200354 -4.246341 39.10477 -2.183513 -4.233688 39.13274 -2.164557 -4.239247 39.17413 -2.15972 -3.392009 39.45661 -1.580624 -3.441872 39.46393 -1.627752 -3.505654 39.48637 -1.664242 -3.622942 39.50298 -1.72393 -3.746317 39.50765 -1.79497 -3.933686 39.45655 -1.928551 -4.099593 39.33124 -2.061129 -4.180059 39.24418 -2.11687 -4.312038 39.17448 -2.218487 -3.339453 39.50158 -1.434569 -3.329371 39.54242 -1.404891 -3.297062 39.48495 -1.406802 -3.226001 39.45597 -1.379865 -3.289964 39.50556 -1.384675 -3.350846 39.43481 -1.549145 -3.315654 39.40679 -1.524028 -3.304968 39.41659 -1.50114 -3.335924 39.45785 -1.505461 -4.208014 39.06875 -2.171656 -4.198119 39.06875 -2.162092 -4.344461 39.21213 -2.231204 -4.13813 38.99081 -2.155439 -3.336436 39.35347 -1.686677 -3.287087 39.29002 -1.671004 -3.327213 39.35939 -1.649291 -3.450177 39.42705 -1.739526 -3.404579 39.40597 -1.714009 -3.392193 39.43124 -1.631001 -4.126828 39.22224 -2.178129 -4.057045 39.3085 -2.126224 -3.894741 39.42515 -1.990349 -3.717064 39.47682 -1.852811 -3.619649 39.47291 -1.81555 -3.508675 39.45212 -1.777646 -4.178274 39.13446 -2.202 -4.174648 39.15777 -2.205073 -4.171608 39.06982 -2.182134 -3.361156 39.39503 -1.639935 -3.370869 39.38495 -1.695627 -3.267972 39.3585 -1.501838 -4.141908 39.3949 -2.079353 -4.209979 39.29661 -2.151604 -4.22169 39.3633 -2.178745 -4.162437 39.46004 -2.096885 -3.953214 39.53241 -1.895212 -3.977729 39.62316 -1.859918 -3.767354 39.59869 -1.73518 -3.773888 39.6938 -1.681003 -3.611693 39.60865 -1.651978 -3.604549 39.70319 -1.589969 -3.354719 39.53494 -1.540415 -3.403525 39.56391 -1.565298 -3.396564 39.63898 -1.501425 -3.342914 39.60188 -1.474082 -3.469716 39.58697 -1.589101 -3.460956 39.67129 -1.529742 -4.255075 39.22195 -2.201172 -4.277107 39.24155 -2.251921 -4.261878 39.27351 -2.235785 -4.217 39.07119 -2.193901 -4.188797 39.05656 -2.181037 -3.359405 39.47959 -1.602248 -3.413859 39.49284 -1.64739 -3.484182 39.52066 -1.684902 -3.610252 39.53702 -1.745549 -3.731197 39.54084 -1.81514 -3.921576 39.48746 -1.952731 -4.105086 39.36414 -2.093102 -4.184265 39.26819 -2.15515 -3.298476 39.56382 -1.449019 -3.30938 39.52135 -1.491106 -3.261326 39.48985 -1.43373 -3.257067 39.5113 -1.4155 -3.32636 39.45109 -1.571646 -3.307805 39.48881 -1.52197 -3.275058 39.42537 -1.515714 -3.288014 39.41039 -1.543516 -4.22918 39.09589 -2.220116 -4.215707 39.1205 -2.191962 -4.25156 39.13484 -2.237924 -4.238995 39.18904 -2.198385 -4.277288 39.17925 -2.249805 -4.289221 39.20475 -2.258782 -3.31486 39.36177 -1.698821 -3.30185 39.36195 -1.661082 -3.424247 39.46009 -1.754273 -3.362242 39.46029 -1.647352 -3.37873 39.43035 -1.730907 -4.074791 39.34167 -2.149431 -4.14951 39.2504 -2.205164 -3.898283 39.46175 -2.010768 -3.709928 39.51481 -1.868737 -3.490168 39.48929 -1.791162 -3.610183 39.51262 -1.829893 -4.186625 39.17979 -2.237171 -4.185966 39.12799 -2.226162 -4.17224 39.06425 -2.20138 -3.338809 39.4019 -1.711876 -3.324258 39.41588 -1.65556</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#Elf01_posed_002-mesh-positions-array\" count=\"7599\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"Elf01_posed_002-mesh-normals\">\r\n          <float_array id=\"Elf01_posed_002-mesh-normals-array\" count=\"24084\">-0.3286843 0.9403058 -0.08807641 -0.6256905 0.761803 -0.1676381 -0.6422315 0.761803 -0.08453625 -0.3144017 0.9403058 -0.1302224 -0.598468 0.761803 -0.2478713 -0.2946867 0.9403058 -0.1701406 -0.5609912 0.761803 -0.3238624 -0.2699667 0.9403058 -0.2071596 -0.5139012 0.761803 -0.3943297 -0.2406079 0.9403058 -0.2406079 -0.4580218 0.761803 -0.4580523 -0.2071596 0.9403058 -0.2699667 -0.3943297 0.761803 -0.5139012 -0.1701406 0.9403058 -0.2946867 -0.3238624 0.761803 -0.5609912 -0.1302224 0.9403058 -0.3144017 -0.2478713 0.761803 -0.598468 -0.08807641 0.9403058 -0.3286843 -0.1676381 0.761803 -0.6256905 -0.04440438 0.9403058 -0.3373821 -0.08453625 0.761803 -0.6422315 0 0.9403058 -0.3402814 0 0.761803 -0.6477554 0.04440438 0.9403058 -0.3373821 0.08453625 0.761803 -0.6422315 0.08807641 0.9403058 -0.3286843 0.1676381 0.761803 -0.6256905 0.1302224 0.9403058 -0.3144017 0.2478713 0.761803 -0.598468 0.1701406 0.9403058 -0.2946867 0.3238624 0.761803 -0.5609912 0.2071596 0.9403058 -0.2699667 0.3943297 0.761803 -0.5139012 0.2406079 0.9403058 -0.2406079 0.4580523 0.761803 -0.4580523 0.2699667 0.9403058 -0.2071596 0.5139012 0.761803 -0.3943297 0.2946867 0.9403058 -0.1701406 0.5609912 0.761803 -0.3238624 0.3144017 0.9403058 -0.1302224 0.598468 0.761803 -0.2478713 0.3286843 0.9403058 -0.08807641 0.6256905 0.761803 -0.1676381 0.3373821 0.9403058 -0.04440438 0.6422315 0.761803 -0.08453625 0.3402814 0.9403058 0 0.6477554 0.761803 0 0.3373821 0.9403058 0.04440438 0.6422315 0.761803 0.08453625 0.3286843 0.9403058 0.08807641 0.6256905 0.761803 0.1676381 0.3144017 0.9403058 0.1302224 0.598468 0.761803 0.2478713 0.2946867 0.9403058 0.1701406 0.5609912 0.761803 0.3238624 0.2699667 0.9403058 0.2071596 0.5139012 0.761803 0.3943297 0.2406079 0.9403058 0.2406079 0.4580523 0.761803 0.4580523 0.2071596 0.9403058 0.2699667 0.3943297 0.761803 0.5139012 0.1701406 0.9403058 0.2946867 0.3238624 0.761803 0.5609912 0.1302224 0.9403058 0.3144017 0.2478713 0.761803 0.598468 0.08807641 0.9403058 0.3286843 0.1676381 0.761803 0.6256905 0.04440438 0.9403058 0.3373821 0.08453625 0.761803 0.6422315 0 0.9403058 0.3402814 0 0.761803 0.6477554 -0.04440438 0.9403058 0.3373821 -0.08453625 0.761803 0.6422315 -0.08807641 0.9403058 0.3286843 -0.1676381 0.761803 0.6256905 -0.1302224 0.9403058 0.3144017 -0.2478713 0.761803 0.598468 -0.1701406 0.9403058 0.2946867 -0.3238624 0.761803 0.5609912 -0.2071596 0.9403058 0.2699667 -0.3943297 0.761803 0.5139012 -0.2406079 0.9403058 0.2406079 -0.4580523 0.761803 0.4580523 -0.2699667 0.9403058 0.2071596 -0.5139012 0.761803 0.3943297 -0.2946867 0.9403058 0.1701406 -0.5609912 0.761803 0.3238624 -0.3144017 0.9403058 0.1302224 -0.598468 0.761803 0.2478713 -0.3286843 0.9403058 0.08807641 -0.6256905 0.761803 0.1676381 -0.3373821 0.9403058 0.04440438 -0.6422315 0.761803 0.08453625 -0.3402814 0.9403058 0 -0.6477554 0.761803 0 -0.3373821 0.9403058 -0.04440438 0 1 0 -0.8487503 -0.5168005 -0.1117283 -0.826899 -0.5168005 -0.2215644 0 -1 0 -0.7909177 -0.5168005 -0.3275856 -0.7413862 -0.5168005 -0.4280221 -0.6791589 -0.5168005 -0.5211341 -0.6053346 -0.5168005 -0.6053346 -0.5211341 -0.5168005 -0.6791589 -0.4280221 -0.5168005 -0.7413862 -0.3275856 -0.5168005 -0.7909177 -0.2215644 -0.5168005 -0.826899 -0.1117283 -0.5168005 -0.8487503 0 -0.5168005 -0.8560747 0.1117283 -0.5168005 -0.8487503 0.2215644 -0.5168005 -0.826899 0.3275856 -0.5168005 -0.7909177 0.4280221 -0.5168005 -0.7413862 0.5211341 -0.5168005 -0.6791589 0.6053346 -0.5168005 -0.6053346 0.6791589 -0.5168005 -0.5211341 0.7413862 -0.5168005 -0.4280221 0.7909177 -0.5168005 -0.3275856 0.826899 -0.5168005 -0.2215644 0.8487503 -0.5168005 -0.1117283 0.8560747 -0.5168005 0 0.8487503 -0.5168005 0.1117283 0.826899 -0.5168005 0.2215644 0.7909177 -0.5168005 0.3275856 0.7413862 -0.5168005 0.4280221 0.6791589 -0.5168005 0.5211341 0.6053346 -0.5168005 0.6053346 0.5211341 -0.5168005 0.6791589 0.4280221 -0.5168005 0.7413862 0.3275856 -0.5168005 0.7909177 0.2215644 -0.5168005 0.826899 0.1117283 -0.5168005 0.8487503 0 -0.5168005 0.8560747 -0.1117283 -0.5168005 0.8487503 -0.2215644 -0.5168005 0.826899 -0.3275856 -0.5168005 0.7909177 -0.4280221 -0.5168005 0.7413862 -0.5211341 -0.5168005 0.6791589 -0.6053346 -0.5168005 0.6053346 -0.6791589 -0.5168005 0.5211341 -0.7413862 -0.5168005 0.4280221 -0.7909177 -0.5168005 0.3275856 -0.826899 -0.5168005 0.2215644 -0.8487503 -0.5168005 0.1117283 -0.8560747 -0.5168005 0 -0.2232734 0.5057222 -0.8332774 -0.4313181 0.5057222 -0.7470626 -0.3301187 0.5057222 -0.7970214 -0.5251625 0.5057222 -0.6844081 -0.610004 0.5057222 -0.610004 -0.7470626 0.5057222 -0.4313181 -0.6844081 0.5057222 -0.5251625 -0.8332774 0.5057222 -0.2232734 -0.7970214 0.5057222 -0.3301187 -0.8553118 0.5057222 -0.1125828 -0.8553118 0.5057222 0.1125828 -0.8626667 0.5057222 0 -0.8332774 0.5057222 0.2232734 -0.7970214 0.5057222 0.3301187 -0.6844081 0.5057222 0.5251625 -0.7470626 0.5057222 0.4313181 -0.610004 0.5057222 0.610004 -0.5251625 0.5057222 0.6844081 -0.4313181 0.5057222 0.7470626 -0.2232734 0.5057222 0.8332774 -0.3301187 0.5057222 0.7970214 0 0.5057222 0.8626667 -0.1125828 0.5057222 0.8553118 0.2232734 0.5057222 0.8332774 0.1125828 0.5057222 0.8553118 0.3301187 0.5057222 0.7970214 0.4313181 0.5057222 0.7470626 0.5251625 0.5057222 0.6844081 0.610004 0.5057222 0.610004 0.7470626 0.5057222 0.4313181 0.6844081 0.5057222 0.5251625 0.7970214 0.5057222 0.3301187 0.8332774 0.5057222 0.2232734 0.8553118 0.5057222 0.1125828 0.8626667 0.5057222 0 0.8332774 0.5057222 -0.2232734 0.8553118 0.5057222 -0.1125828 0.7970214 0.5057222 -0.3301187 0.6844081 0.5057222 -0.5251625 0.7470626 0.5057222 -0.4313181 0.610004 0.5057222 -0.610004 0.5251625 0.5057222 -0.6844081 0.4313181 0.5057222 -0.7470626 0.3301187 0.5057222 -0.7970214 0.2232734 0.5057222 -0.8332774 0.1125828 0.5057222 -0.8553118 -0.1125828 0.5057222 -0.8553118 0 0.5057222 -0.8626667 -0.2874538 0.6600849 -0.6939909 -0.1944029 0.6600849 -0.7255775 -0.4572893 0.6600849 -0.5959349 -0.3755913 0.6600849 -0.6505326 -0.5311442 0.6600849 -0.5311442 -0.5959349 0.6600849 -0.4572893 -0.6505326 0.6600849 -0.3755913 -0.6939909 0.6600849 -0.2874538 -0.7255775 0.6600849 -0.1944029 -0.7447432 0.6600849 -0.09802544 -0.7447432 0.6600849 0.09802544 -0.7511826 0.6600849 0 -0.6939909 0.6600849 0.2874538 -0.7255775 0.6600849 0.1944029 -0.6505326 0.6600849 0.3755913 -0.5959349 0.6600849 0.4572893 -0.4572893 0.6600849 0.5959349 -0.5311442 0.6600849 0.5311442 -0.3755913 0.6600849 0.6505326 -0.2874538 0.6600849 0.6939909 -0.1944029 0.6600849 0.7255775 -0.09802544 0.6600849 0.7447432 0 0.6600849 0.7511826 0.09802544 0.6600849 0.7447432 0.1944029 0.6600849 0.7255775 0.3755913 0.6600849 0.6505326 0.2874538 0.6600849 0.6939909 0.4572893 0.6600849 0.5959349 0.5311442 0.6600849 0.5311442 0.6505326 0.6600849 0.3755913 0.5959349 0.6600849 0.4572893 0.7255775 0.6600849 0.1944029 0.6939909 0.6600849 0.2874538 0.7447432 0.6600849 0.09802544 0.7511826 0.6600849 0 0.7447432 0.6600849 -0.09802544 0.7255775 0.6600849 -0.1944029 0.6939909 0.6600849 -0.2874538 0.6505326 0.6600849 -0.3755913 0.5311442 0.6600849 -0.5311442 0.5959349 0.6600849 -0.4572893 0.4572893 0.6600849 -0.5959349 0.3755913 0.6600849 -0.6505326 0.2874538 0.6600849 -0.6939909 0.1944029 0.6600849 -0.7255775 0.09802544 0.6600849 -0.7447432 0 0.6600849 -0.7511826 -0.09802544 0.6600849 -0.7447432 0 -1 0 -0.06329536 0.3871883 -0.9197974 0.5338603 0.6096988 -0.5858638 0.3746452 0.7640309 -0.5252236 -0.7734916 -0.6198309 0.1320536 -0.4193548 -0.8183233 0.3929868 -0.6217536 -0.7140416 0.3217261 -0.8334605 -0.5469527 -0.07843255 -0.7375714 -0.06591993 -0.6720176 0.298349 0.7482223 -0.5925474 0.4027833 0.7769402 -0.4838099 0.504532 0.7380596 -0.4479507 -0.5824763 -0.8127689 -0.009033441 -0.6746422 -0.3634144 -0.6424452 -0.6730858 -0.3909116 -0.6277657 -0.2590716 -0.8234505 0.5047151 -0.2947783 -0.7864925 0.5426802 -0.2666097 -0.7784357 0.5682547 0.5680105 -0.2289499 0.7904905 -0.2384105 -0.7912534 0.563036 -0.0376293 -0.6768701 0.7350993 -0.5114597 -0.8405408 0.1784722 -0.4785302 -0.8432264 0.2448195 -0.5194861 -0.8245186 0.2241584 -0.4733421 -0.8436232 0.2533951 -0.7073885 -0.7008576 -0.09134185 -0.459975 -0.5629444 0.686636 0.6098819 0.7838069 -0.1168859 0.7481918 0.6438795 -0.1598864 0.7035432 0.4488357 0.5509201 0.7358318 0.4385204 0.5159459 0.6729637 0.7390057 -0.03106784 0.6436964 0.7652516 -0.001434326 -0.5932493 -0.7454451 0.3038728 -0.3828242 -0.7914365 0.4764855 -0.4253975 -0.8165227 0.3902402 -0.5521714 -0.7427595 0.3786737 0.5208594 0.7620777 -0.3845943 0.5941343 0.7796869 -0.1976073 0.6321604 0.737785 -0.236671 0.6895962 0.6192206 0.3754387 0.6644185 0.6678976 0.3352458 0.5455183 0.8313547 -0.1057772 0.3205664 0.8268074 -0.4621418 0.01892143 0.6912443 -0.7223426 -0.7450178 -0.6405835 0.1859188 -0.8849757 -0.09408855 -0.455977 -0.8057497 -0.2401501 -0.5413373 -0.2465285 -0.7811823 0.5735344 -0.3216956 -0.8312327 0.4533525 -0.4762108 -0.8551592 0.2046571 -0.7730949 -0.6332896 0.03482156 -0.5867794 -0.8094729 -0.01989805 -0.310007 -0.7117527 0.6302683 -0.8565325 -0.4198126 0.3000885 -0.4540544 -0.506241 0.7331461 0.5592212 0.4557939 0.6924345 -0.5672475 -0.7643971 -0.3064364 -0.5157323 -0.5590075 -0.6492202 -0.8068178 -0.4523453 -0.3799554 0.2806482 -0.9166234 0.2845851 0.7859432 -0.3441572 0.513596 0.9768365 -0.1369365 -0.1642811 -0.8175604 -0.3230994 0.4766076 0.2317575 0.3527329 0.9065523 -0.2987152 0.08056885 0.9509263 0.5216224 0.2889493 0.8027284 0.6695761 0.154973 0.7263711 0.8685263 0.2711875 0.4147771 0.4082461 0.3172399 -0.8559526 0.4802393 -0.1970885 -0.8546709 0.06894129 -0.4285409 -0.9008454 -0.06817835 0.1615039 0.9844966 -0.5408796 -0.1527451 0.8270821 -0.6145207 -0.7886593 0.01812797 -0.2335581 -0.7900326 0.5667898 -0.2157048 -0.7846004 0.581225 0.1590625 0.6471145 -0.7455977 -0.06881922 0.5666067 -0.82107 -0.07351905 0.5837886 -0.8085269 -0.8814051 -0.01855522 -0.4719687 -0.5285501 0.2486648 -0.8116093 -0.5676443 0.3763542 -0.7322001 -0.8129215 -0.4894863 0.3154698 -0.9043855 -0.3910031 -0.1708426 -0.1468856 0.1288796 -0.9807123 -0.7052828 -0.159978 -0.6906339 -0.07657092 -0.3491012 0.9339274 0.03567612 0.01315343 0.9992676 0.5026093 -0.09979552 0.8586993 0.9026154 0.3612781 -0.2339243 0.9128696 0.1892147 0.3617054 -0.5803705 -0.4970244 0.6450392 -0.04980617 -0.4750816 -0.8784753 0.484695 0.4586627 -0.7447432 0.7066256 0.1261025 0.6962187 0.8768578 0.4758141 0.06863611 -0.580462 -0.8126469 -0.05124056 -0.1787469 -0.7305521 0.6590167 -0.1426129 -0.008239984 -0.9897153 -0.5572985 -0.4842677 -0.674398 0.8239082 0.4235969 0.3764153 0.601001 0.781579 -0.1669667 0.06289863 0.6555681 -0.7524644 -0.4893643 0.2066713 -0.8472244 -0.6769616 -0.726249 0.1191747 -0.7686087 -0.2891018 -0.5706351 -0.6393628 -0.7637867 0.08853417 -0.6096683 -0.7640614 0.2108523 0.6258736 0.4528031 0.6349681 0.01791435 0.01113921 0.9997559 0.2884304 -0.2274239 0.9300821 0.3299967 -0.3211463 0.8876613 0.01269567 -0.7463302 -0.6654256 0.3534349 -0.7578051 -0.5484176 0.1474654 -0.9884335 -0.03500473 -0.542375 -0.6169317 -0.5702689 -0.6655782 -0.6028932 -0.4398633 0.8791162 0.4598529 0.1250343 0.7504196 0.577044 -0.322306 0.6132695 0.5927 -0.5221107 -0.07806634 0.3466597 -0.9347209 -0.02777183 0.6124455 -0.7900021 -0.5998413 -0.7973876 -0.06558424 -0.5657827 -0.8245186 -9.15555e-4 -0.5955687 -0.8014771 -0.05389565 -0.1968749 -0.974395 0.1085543 -0.2952361 -0.8173467 0.494705 -0.5105441 -0.8299509 0.2246467 -0.4723655 -0.8487808 0.2374645 0.1612598 -0.7436445 0.648793 -0.4205756 -0.8816187 0.2140873 -0.03802603 -0.6692404 0.7420271 0.006775081 -0.6781213 0.7348857 0.4917753 -0.127079 0.8613544 0.746971 0.3891415 0.5389874 0.3907285 0.5519273 -0.7366558 -0.00640887 0.2990814 -0.9541918 -0.2535478 -0.8349559 0.4883572 0.3876156 0.6954558 -0.6050295 0.334788 0.6996063 -0.6312143 -0.0934782 -0.8420362 0.5312052 -0.6638997 -0.6375316 -0.3907895 -0.3885922 -0.9206213 -0.03759878 0.5330973 0.7532884 -0.3851131 -0.2159795 -0.8578448 -0.4662618 -0.2024598 -0.7054964 -0.6791589 0.4598834 -0.7565233 -0.464919 -0.4667196 -0.2907193 -0.8352306 0.4547868 -0.8011414 -0.3889584 0.2578509 -0.960326 -0.1059908 -0.09759819 -0.886166 -0.4529252 0.6866665 -0.3614612 -0.630726 0.8518021 -0.5008698 0.1532334 0.5555589 -0.7845088 0.2754296 0.249794 -0.9575487 -0.1437422 0.6199225 -0.3265175 -0.7134617 0.4956511 -0.8249458 -0.2714927 0.2930693 -0.9380169 -0.1849421 0.1180761 -0.8366649 -0.5347759 -0.2322458 -0.8811914 0.4117558 -0.6594135 -0.7476119 -0.07892084 -0.7198706 -0.364513 -0.5906247 -0.790643 -0.2994476 -0.5340129 -0.02752768 0.6765953 -0.7358013 -0.5542162 0.2213813 -0.8023622 0.7820368 -0.35609 -0.5114292 0.5484787 -0.5614795 0.6195563 0.3424787 0.7610401 -0.5508591 -0.3279519 0.3488876 -0.8778954 0.2806177 -0.6301157 0.7239906 0.7787714 0.01217687 0.6271554 -0.6549882 -0.7446821 -0.1280251 -0.7039399 -0.1661427 -0.6905118 0.5254982 0.75338 -0.3952452 0.7829219 0.4865261 0.3876461 0.1592761 -0.6343272 0.7564318 0.6193426 -0.01977598 0.7848445 -0.4086734 -0.8881802 0.2098453 -0.5156407 -0.1594897 -0.8417921 -0.6208075 -0.1010773 -0.777398 0.6802576 0.7263405 -0.09802544 0.6229743 0.7751396 -0.1048921 0.002441465 -0.6779077 0.7350993 0.4828944 -0.09048736 0.8709372 -0.600879 -0.6549272 -0.4582049 -0.4056825 -0.8907132 0.2048707 -0.446089 -0.04672384 -0.8937346 0.5451521 0.8177435 0.1845454 0.5959044 0.7906736 0.1403546 0.2957243 0.9219947 -0.2498855 -0.5743584 -0.136021 -0.8072146 -0.422895 -0.2711265 -0.8646504 -0.3489486 -0.7668386 -0.5386517 0.3827021 -0.671865 0.6340831 -0.1025422 -0.9779962 0.1815851 0.04040646 -0.9974975 0.05789357 0.6784875 -0.133549 0.7223426 0.486343 -0.7388836 0.4663534 -0.2496414 0.1552782 -0.9557787 -0.1545763 0.06167787 -0.9860225 -0.4816431 -0.5278787 -0.6995148 -0.5863826 -0.4326304 -0.6847743 -0.492172 -0.8660237 -0.08798485 -0.2146061 -0.6762902 0.7046419 -0.6054262 -0.795526 -0.02343821 0.6169927 0.4070559 0.673452 0.4257637 0.49559 0.7570117 0.3403119 0.3267617 0.8816797 0.5057833 0.6475113 0.5699637 0.7186499 0.6089053 0.3357341 0.2863857 0.6657918 -0.6889554 0.3225806 0.6058534 -0.727195 0.5689871 0.2862026 0.7708976 0.6085696 0.2706686 0.7458724 0.7099521 0.7001556 0.07556378 0.2824488 -0.1903744 0.9401837 -0.6549882 -0.7554247 -0.01586961 -0.6133 -0.4201483 -0.6687826 -0.2567217 -0.6105533 0.7491684 0.5560168 0.2988983 0.7755364 0.2628254 -0.1587573 0.9516587 0.2510452 -0.1611682 0.9544359 0.6644795 0.7333903 0.1433759 -0.2278817 0.1497543 -0.962096 0.2808924 0.6904202 -0.6666158 -0.003295958 -0.09970396 -0.9949949 -0.06637775 -0.9559923 -0.2857143 -0.3418989 -0.6166265 -0.7090976 -0.1797235 -0.7604297 0.6240425 -0.3088473 -0.9332866 -0.1831415 0.6707053 0.3920407 0.6296274 0.5459151 0.07116913 0.8347728 0.5790887 -0.7893002 0.2040162 0.8857998 -0.4560381 -0.08575701 0.8153935 -0.107242 -0.5688345 -0.04934841 -0.9157384 0.3986938 0.5832393 0.8061159 -0.09985655 0.07638782 0.5765557 -0.8134403 0.0866115 0.5652028 -0.8203681 -0.4301279 -0.06530958 -0.9003876 -0.5733818 -0.6644795 -0.4792321 -0.4042177 -0.8960235 0.1835688 0.4433424 -0.05444496 0.8946806 0.7676931 0.446852 0.4592425 0.4255501 0.8214362 -0.3796502 -0.6078372 -0.10477 -0.7871029 -0.6746727 -0.590991 -0.4421522 -0.6944487 -0.5777154 -0.4288766 0.2424696 -0.6309702 0.7369304 -0.3885312 0.3954588 -0.8322398 -0.7120579 -0.1490219 -0.6861171 -0.2417371 -0.8774377 0.4142888 -0.6518144 -0.7323222 -0.1969664 0.7631764 0.05624556 0.6436964 -0.5933104 0.3078707 -0.7437361 -0.7014985 -0.7075411 -0.08499401 -0.1848506 -0.9058809 0.3810236 0.5697806 -0.4621112 0.6795251 0.8489639 0.1054719 0.517777 0.8843959 0.08471935 0.4589374 -0.3555406 -0.9088412 0.2181158 -0.5219886 -0.7030244 -0.4829554 0.6052431 -0.6611225 -0.4433424 -0.093997 -0.820246 -0.5641957 0.003570616 0.8886075 -0.4586017 0.2116764 0.964507 -0.1576891 -0.3241981 0.3539842 -0.877224 -0.228492 0.393292 -0.8905606 0.4615009 0.7834407 -0.4161199 -0.6316721 -0.738731 0.2349315 0.7616199 0.4506668 0.4656209 0.4718466 -0.1551866 0.8678854 0.7296366 0.4487442 0.5159459 0.6691489 0.4894863 0.5590991 0.6714988 -0.647145 0.3608814 0.4989471 -0.8417921 0.2059389 2.44148e-4 -0.6736046 0.7390667 0.07708972 0.6731163 -0.7354961 -0.7295755 -0.3239235 -0.6022828 -0.2375255 -0.7974181 0.5546434 -0.4630268 0.177221 -0.8684042 0.8292185 0.5404523 0.1422467 0.7862789 0.5869014 0.1929075 0.2965484 0.8023622 -0.5178991 0.850734 -0.5120396 0.1183202 0.6052736 -0.7817011 0.1502121 -0.2067934 -0.9049959 0.3716849 -0.446089 0.18717 -0.8751793 -0.4827723 0.1309854 -0.8658711 0.7270424 0.6697287 -0.1510361 0.7217018 0.6873074 -0.08188116 -0.008636713 0.7376629 -0.6750695 0.2801904 -0.9475692 -0.153447 0.8848842 -0.4624165 0.05575728 -0.1378826 -0.8908963 0.4326914 -0.5121311 0.1457869 -0.8464003 -0.5368206 -0.3995483 -0.7430647 -0.07174897 -0.7129124 -0.6975311 -0.3916745 -0.8339488 -0.3886837 0.5810114 -0.6433607 0.4984588 0.03549301 -0.9840694 0.174047 0.8538469 -0.1426435 0.5005341 0.3040864 0.833369 -0.4615009 0.6307871 0.7727897 -0.06958216 0.9616993 -0.2614826 -0.08188116 0.6899014 -0.1991027 -0.6959441 0.1390118 -0.4424878 -0.8859218 -0.6004211 -0.7370525 -0.3101902 -0.6790979 -0.2509537 -0.6897794 -0.1502731 0.7003388 -0.6977752 -0.08691668 0.8097171 -0.5803095 0.2923673 0.8472244 -0.4434645 0.4426404 0.8815577 -0.1639454 0.5602283 0.8220466 -0.1017792 0.7883847 -0.02465891 0.6146428 0.4953154 -0.5703299 0.6552324 -0.09146398 -0.9504075 0.2971892 0.2070375 0.7542344 -0.6230659 0.7429121 0.66039 -0.1093173 0.9476302 -0.2662435 -0.1763054 0.6376537 -0.4254586 -0.64214 0.02423167 -0.6466262 -0.7623829 -0.6048159 -0.4635456 -0.6475113 -0.4714804 -0.8177435 -0.3300882 0.713126 -0.4878689 0.5033723 0.09326452 -0.9700614 0.2242195 0.8903775 -0.1185949 0.439436 0.7454451 -0.634785 0.2032532 -0.6230659 -0.751854 -0.2155827 -0.7530137 -0.3330485 -0.5674612 -0.3019806 0.7581103 -0.577929 0.001708984 0.9254738 -0.3787652 0.1435285 0.8335826 -0.533372 0.3279519 0.9228492 -0.201941 0.8446913 0.02026426 0.5348064 0.6633809 -0.3992126 0.6328318 0.02673417 -0.9240089 0.3813288 0.7684866 -0.2529984 0.5876644 0.6728416 0.7315592 0.109653 0.3518479 0.9000824 -0.2569658 -0.005951106 0.7047945 -0.7093417 0.03848379 -0.5162206 -0.8555559 0.6586199 0.6696677 0.3430891 0.7518845 0.6044191 0.2632832 0.5774713 0.7899106 -0.206183 0.2556231 0.7072359 -0.6591082 0.5292825 0.8336131 -0.1579027 -0.1663869 -0.3649098 -0.9160436 0.132786 -0.6161382 -0.7763298 -0.1189001 -0.7814875 -0.6124455 0.4128544 -0.8131657 0.4101993 0.06143373 -0.9931638 -0.0991851 0.6041444 -0.3251137 0.7275002 -0.4233833 -0.7001251 -0.5748772 -0.3812372 -0.1773125 -0.9072848 0.2365489 0.784753 -0.5728324 0.5389874 0.7786188 0.3212378 0.3781243 0.9188818 -0.1123996 0.5084689 -0.1771599 0.842616 0.1783502 -0.7693716 0.613361 -0.2541887 -0.9667348 0.02783286 -0.6192816 -0.09106719 -0.7798395 -0.6733909 -0.6054567 -0.4241462 -0.6806543 -0.5960875 -0.4257943 -0.3065584 -0.9074069 0.2873623 0.2581561 -0.5966063 0.7598499 0.2428358 -0.6076235 0.7561571 -0.3328959 -0.9055452 0.262978 0.6112247 -0.03295993 0.7907346 0.3963744 0.8509781 -0.3444929 0.7384869 0.4588458 0.4940031 0.742851 0.4723655 0.4743492 -0.3304544 0.3879818 -0.8603473 -0.357738 0.3765374 -0.8545183 -0.5970947 -0.6274605 -0.4997406 -0.5747246 -0.6564837 -0.4885403 -0.4166082 -0.09195226 -0.904416 -0.4437086 -0.8832057 0.151738 -0.01046782 -0.6633198 0.7482223 0.001373291 -0.6751915 0.7376019 -0.4169133 -0.8940398 0.1637623 0.4610736 -0.07431256 0.8842128 0.5937376 0.7962585 -0.1158177 0.687582 0.4796594 0.5450911 0.6737266 0.4953154 0.5483871 0.5701773 0.8137151 -0.1128879 0.05887019 0.5790277 -0.8131657 0.09274572 0.5592212 -0.8237861 0.2743003 0.81283 -0.5138401 0.7662282 0.6176031 0.1771904 0.7644276 0.625782 0.154973 -0.3712882 0.4206671 -0.827723 -0.3918576 0.4189886 -0.8190557 -0.6861171 -0.6894437 -0.2320932 -0.6799219 -0.7023225 -0.2107608 -0.731956 -0.1447492 -0.6657613 -0.2042298 -0.8972136 0.3914914 0.3900876 -0.5528428 0.7363201 -0.2113712 -0.8973052 0.387463 0.7531053 0.06393623 0.6547441 0.4107791 -0.5272988 0.7437666 0.04422128 0.7376324 -0.6737266 0.7413557 0.6663106 -0.07965326 0.7341228 0.676809 -0.05447548 -0.5599536 0.3139134 -0.7667165 -0.5625172 0.2988373 -0.7708671 -0.7066256 -0.6985992 -0.112186 -0.7034822 -0.7042452 -0.09543138 -0.8171331 -0.2691122 -0.5097202 -0.1158177 -0.87875 0.4629658 0.5843074 -0.4380322 0.6831263 -0.08578753 -0.8792383 0.4685507 0.6087833 -0.4055604 0.6817835 0.8431349 0.09497356 0.5292215 0.8568987 0.08239996 0.5087741 -0.4085818 0.3287454 -0.8514359 -0.371868 0.4423963 -0.816065 -0.04992824 0.6280099 -0.776574 -0.6656392 -0.7035127 -0.2489395 -0.7295145 -0.1598254 -0.6649983 0.4293954 -0.5417035 0.7225868 -0.1768242 -0.9114353 0.3714408 0.7529832 0.05502486 0.6556902 0.5682241 0.7749871 -0.2765587 0.7472152 0.6490371 0.1427655 0.8042543 0.5724662 0.1594897 -0.6262398 -0.6505631 -0.4295786 -0.6093936 -0.09939879 -0.7865841 0.2842799 -0.6212348 0.7302164 -0.2411878 -0.9327678 0.2678915 0.6296274 -0.06869715 0.7738273 0.6006043 0.7993408 0.01620531 0.7457808 0.4899442 0.4513382 0.7482833 0.5180212 0.4142888 0.078341 0.7676626 -0.6360058 -0.305887 0.4219184 -0.8534501 0.4067812 0.852504 -0.3281961 0.09634691 0.4843593 -0.8695029 0.03704947 0.5816523 -0.8125858 0.4621723 0.7766045 -0.4280526 -0.5893735 -0.6286508 -0.5073397 -0.4571978 -0.08722186 -0.8850368 -9.76592e-4 -0.6729332 0.7396771 -0.4360179 -0.8907132 0.1282998 0.4399243 -0.06735432 0.8954741 0.5469833 0.8298898 -0.1097751 0.6607257 0.5013276 0.5586413 0.704886 0.6897488 0.1652577 0.0615558 0.7766351 -0.6269112 0.7432478 0.6678366 -0.03930783 0.4161809 0.8025453 -0.4273812 -0.2101809 0.6297494 -0.7477951 -0.5555589 0.3262429 -0.7647634 -0.6843776 -0.7167577 -0.13361 -0.8116093 -0.2859889 -0.5093845 0.6271859 -0.4068117 0.6641438 -0.0539872 -0.8945891 0.4435865 0.8475906 0.05804616 0.5274209 -0.8389844 -0.2491531 -0.4837183 -0.5820795 0.3191931 -0.7478256 0.0305795 0.7495346 -0.6612141 0.7295145 0.6808069 -0.06512647 -0.8395642 -0.2381969 -0.4882046 0.8488419 0.09613329 0.5197913 -0.7297281 -0.1459395 -0.6679281 -0.3935362 0.4086123 -0.823481 0.2814722 0.8093814 -0.5153661 0.7760857 0.6029542 0.1846675 0.3713492 -0.5867794 0.7195349 0.7573779 0.06082338 0.6501053 -0.3601794 0.3576464 -0.861568 0.744377 0.4433119 0.4993133 0.6252022 -0.03118991 0.7798089 0.4063845 0.8449355 -0.3477279 -0.6228828 -0.09277623 -0.7767571 0.08441418 0.5664235 -0.8197577 0.5856807 0.8028504 -0.1112094 0.6725059 0.4907681 0.5539415 0.4418165 -0.06259346 0.8948943 -0.4225593 -0.08236944 -0.9025544 -0.5611438 0.3225806 -0.7622303 0.06289863 0.7558825 -0.6516618 0.7431257 0.6670736 -0.05221712 0.05337685 0.7518845 -0.6571245 -0.8300424 -0.2637104 -0.4913785 0.8464919 0.07953119 0.5263833 0.2746666 0.807062 -0.52266 0.760857 0.6320078 0.1470687 -0.728782 -0.150853 -0.6678671 -0.3677785 0.4307382 -0.8240913 -0.7232276 -0.1524094 -0.6735435 0.7542344 0.06402778 0.6534624 0.2789697 0.803766 -0.5254677 -0.3134251 0.3934141 -0.8642536 0.4174627 0.8384655 -0.3502304 0.7518235 0.4722129 0.4601275 0.6215705 -0.04754781 0.7818842 0.4046144 0.8463393 -0.3463546 -0.6140019 -0.09277623 -0.7838069 0.6519059 0.5128636 0.5585193 -0.4646443 -0.07480084 -0.8823207 0.03613388 0.589465 -0.8069704 -0.4477981 -0.07882928 -0.8906217 0.4261299 -0.05423134 0.9030122 0.5494552 0.828486 -0.108005 0.3032929 0.6536455 -0.6933195 -0.2626728 -0.6342967 0.727073 0.7271035 0.5478377 0.4136174 0.6635335 0.7376629 -0.1245765 0.4645223 0.1127964 0.8783227 0.6155583 0.3092746 0.7248451 -0.2983184 0.5367596 -0.7892087 -0.8238777 -0.2635579 -0.5016938 -0.525193 0.2803735 -0.8034303 -0.5492111 0.06631672 -0.8330027 -0.3292337 -0.3471786 -0.8780786 0.2777184 -0.9602344 0.02832114 0.9903256 -0.1207007 0.06805628 0.8811304 0.4688559 0.06106752 0.8096256 0.5850399 0.04666274 -0.4043397 0.1963866 -0.8932462 -0.153386 -0.2541887 -0.9548937 0.2957854 -0.9453719 -0.1368449 0.9970702 -0.01306188 0.07486188 0.8550981 0.4873195 0.1767937 0.7547227 0.06576734 0.6526994 -0.6340221 -0.0859096 -0.7684866 -0.3148289 0.4180426 -0.8521073 -0.296823 0.2062135 -0.932371 0.03259372 -0.04385507 -0.9984741 0.2869656 -0.9311808 -0.2246772 0.9839168 0.06735432 0.1652577 0.8597064 0.3178808 0.3997619 0.6173589 -0.0368663 0.7857906 0.6451308 -0.04480117 0.7627491 0.7809382 -0.08697772 0.6184881 0.05331581 0.2873318 -0.956328 0.1411786 -0.09488201 -0.9854122 0.05075228 -0.9964293 -0.06729328 0.8461257 -0.1223487 0.5186926 0.745201 0.2475966 0.619129 0.7026277 0.432844 0.564745 0.4505142 -0.06894129 0.8900724 0.7438277 0.4471267 0.4967498 0.4797204 -0.1681264 0.8611408 0.6572161 0.7419965 0.1321146 0.7308878 0.6171758 -0.2912687 0.8866543 0.2020936 -0.4158452 0.1069979 -0.7385174 -0.6656697 0.4307687 -0.7545396 0.4950407 0.2467421 -0.5850093 0.7725456 0.2523881 -0.2770776 0.9270913 -0.6979888 -0.1423688 -0.7017731 -0.1693472 -0.01965391 -0.9853511 -0.8839381 -0.3291116 0.3321024 -0.929136 -0.2500992 -0.2722251 -0.4755394 -0.2914823 0.8299814 0.7883237 -0.03872793 0.6140019 0.9977722 0.02682572 0.06088441 0.9289835 0.05130159 -0.3664968 0.6031373 0.3430585 -0.7200843 0.5726188 0.06595045 -0.8171331 0.1937315 -0.1538133 0.9689016 0.6004211 0.782281 -0.165746 0.233314 0.8610187 -0.451857 0.634724 0.6753136 0.3755608 0.6541948 0.6232185 0.4284799 0.1923276 0.6494033 -0.7356792 0.4351024 0.7857906 -0.4395276 0.3444014 0.7638783 -0.545732 0.6758934 0.7076327 0.2058473 0.5189062 0.844142 -0.1345866 0.6796777 0.6396374 0.3589282 0.8154546 -0.4842677 0.3169652 0.2816248 -0.4217353 -0.8618427 0.8176825 -0.4282662 -0.3846248 0.3191626 0.6351817 -0.7032991 0.359508 0.1349833 0.923307 0.4574419 0.0846278 0.8851894 0.4338511 0.2273018 0.8718222 0.606708 0.5987732 0.5228126 0.650502 0.6926481 0.3115329 0.358684 -0.09930723 0.9281289 0.7302774 0.6613972 0.1709342 0.5164342 0.4260384 0.74279 0.3834345 0.05746632 0.9217506 0.62331 0.6908475 0.3662831 0.7694327 0.5422834 0.3373821 0.5653249 0.8082827 0.1644337 0.4969634 0.8676717 0.01290929 0.7004303 0.6697592 0.2465896 0.4165776 0.8518326 -0.3175145 0.319071 0.9201636 -0.226783 -0.1241798 0.6964629 -0.7067171 -0.1885128 0.5640126 -0.8039186 0.3878597 0.9157994 0.1042207 0.0871303 0.8436537 -0.5297403 -0.04409921 0.7995849 -0.5988953 0.9086276 -0.4140751 -0.05355995 0.3863338 -0.3252357 -0.863094 0.7665334 -0.2120731 -0.6061281 -0.03991818 0.7671133 -0.6402173 0.649495 0.7580187 -0.05908381 -0.2232734 0.542436 -0.8098697 -0.01635789 0.7061068 -0.7078768 -0.1859493 0.6280099 -0.7556383 0.5790887 0.7996155 -0.1587573 -0.08651995 0.6054872 -0.7911008 0.6116825 0.7855464 -0.09332555 -0.109653 0.6496475 -0.7522507 0.2591632 0.8200934 -0.5101474 0.3229163 0.7474594 -0.5804926 0.2823267 0.7945799 -0.5374615 0.1873531 0.9089938 -0.3722953 0.5067598 0.8126164 -0.2877895 0.6687216 0.7318339 -0.1311686 -0.4726402 0.3797418 -0.7952208 0.1096225 0.776452 -0.6205329 0.04715108 0.8618427 -0.5049288 -0.2361827 0.6906339 -0.6834926 -0.3628651 0.5648976 -0.7410504 0.373394 0.8774682 -0.3009735 0.4832911 0.8360851 -0.2595294 -0.2732933 0.4006165 -0.8745079 -0.4259468 0.5716422 -0.7012543 0.6391797 0.7602466 -0.1159703 0.5439925 0.8308359 -0.1171605 -0.37257 0.5119785 -0.7739494 -0.9665212 -0.00427258 -0.2564775 -0.8892483 0.06006038 0.453383 -0.8933073 -0.04843282 0.446791 -0.4998627 0.2009643 -0.8424329 -0.9343547 -0.2381664 -0.2649922 -0.09057891 0.2477187 0.964568 0.5450301 0.3220008 0.7740715 0.5105441 0.3293252 0.7942442 0.9472335 0.2585223 0.1893673 0.8991058 0.3477279 0.2658467 0.8233589 0.1785943 -0.5386517 0.854091 0.1900388 -0.4841151 0.3909726 0.1232032 -0.9121067 0.4328135 -0.0295419 -0.9009674 0.2272713 0.1710257 -0.958678 0.1755424 -0.1293069 -0.9759209 -0.132786 0.2198858 0.9664297 -0.2565386 0.1156041 0.959563 -0.8806726 -0.164922 0.4440443 -0.4954985 -0.2520219 -0.8312327 -0.9146397 -0.3388165 -0.2204046 -0.5183569 -0.3848689 -0.7636342 0.5678884 -0.126255 -0.8133488 0.9062471 0.099765 -0.4107486 0.9306619 0.2791223 0.2363048 0.5048677 0.286172 0.8143254 -0.842555 0.1091647 0.5274209 -0.5988342 0.2254402 0.7684561 -0.9559618 0.2042909 -0.2106082 -0.5204932 0.3699148 -0.7695242 0.2054201 0.3439741 -0.9161962 0.5369427 0.213599 -0.8160955 0.834254 0.06009089 -0.5480514 0.9253823 0.0376293 -0.3771477 0.1953489 0.3208716 -0.926725 -0.5518968 0.3111362 -0.7736442 0.6119266 0.2429578 -0.7526475 0.8837855 0.05005031 -0.4651021 0.7324748 -0.1334879 -0.6675314 -0.9341105 0.1742607 0.3114719 -0.7106235 0.2519913 0.6568499 -0.9577624 0.2281563 -0.1749016 -0.1940367 0.2965484 0.9350872 0.5519883 0.3048189 0.7761162 -0.5533921 0.3272805 0.7658925 0.9627979 0.2653585 0.05056911 0.7462691 -0.03576767 -0.6646321 0.5750297 -0.1688284 -0.8005005 -0.5872372 0.3557237 0.7270119 0.5126804 0.2439344 0.8231757 -0.3221534 0.0527665 0.9451888 -0.8584857 -0.1934568 0.4748985 -0.9108554 -0.377514 -0.16657 0.06054872 -0.4026307 -0.9133275 0.1256752 -0.2842799 -0.950438 0.6450087 -0.1940977 -0.7390667 0.9468673 0.05581831 -0.3166906 0.9403363 0.2319406 0.2488784 -0.4990692 0.8103275 -0.3070162 -0.6375927 0.7605823 0.1221045 -0.5684072 0.8156377 0.1076693 -0.2229377 0.7537462 -0.6181524 -0.4516129 0.8203986 -0.3506271 0.295175 0.455916 -0.8396252 -0.26133 0.710532 -0.6533097 -0.2796411 0.3476364 0.8949248 -0.2352367 0.3209326 0.9173864 -0.134373 0.08877831 0.9869381 -0.5112766 0.6601764 0.5501877 -0.5281838 0.5977966 0.6030153 0.1779229 -0.3744316 -0.9100009 0.6894131 -0.3580431 -0.6296579 0.4998932 -0.5962706 -0.6281015 -0.4495071 -0.8814966 0.1445356 -0.4440443 -0.8873867 0.1238746 0.06817835 -0.9608142 -0.2685934 0.8115788 0.008850336 -0.5841548 -0.09509563 0.5758538 -0.8119755 -0.07501447 0.5562609 -0.8275704 0.1542405 -0.3444319 0.9260231 -0.01974546 -0.3194677 0.9473861 0.03772085 -0.2429578 0.9692679 -0.7291787 0.6235237 -0.28193 -0.8075197 0.5552843 0.1988281 -0.7111423 0.6821802 0.169866 -0.548967 0.484756 0.680868 -0.5871456 0.3975036 0.7051302 -0.103946 0.1317484 0.9858089 0.2109439 -0.1487777 0.966094 0.256386 -0.1201208 0.9590442 0.3869442 -0.1620838 0.9077121 0.2707907 -0.9599597 0.07135224 0.9623707 0.07461774 -0.2612385 0.7800836 -0.1716971 -0.6016114 -0.9606617 -0.2109744 -0.1803949 -0.9242531 -0.06836146 0.3755303 -0.938261 0.1075778 0.3287454 0.418012 -0.7099826 -0.5666677 0.1650441 -0.6063112 -0.7778863 -0.7641835 -0.3318888 -0.5529954 -0.9731437 0.01373332 -0.2297738 -0.4460585 0.05093538 0.8935209 0.3480331 0.1180761 0.9299905 0.2403637 0.08865624 0.9666128 0.08688616 -0.5726493 0.8151494 0.3010346 -0.2405164 0.9227576 0.887753 0.1491745 0.4354381 -0.2472915 -0.5075533 -0.8253426 -0.5525681 -0.4215217 -0.718955 -0.6106449 -0.1524094 -0.7770623 -0.2732322 -0.8847011 0.3776055 -0.5048372 -0.7596362 0.4098941 -0.9039583 -0.3191015 -0.284524 -0.8782312 -0.2513199 0.4068117 -0.9058199 -0.1741386 0.3861202 -0.9304483 -0.2826624 -0.2330393 -0.7149876 -0.3480941 -0.6063112 -0.6928312 -0.32313 -0.644612 -0.3809015 -0.09082305 0.9201331 0.4172796 0.1260109 0.8999909 0.3941161 0.1231421 0.9107639 0.8938567 0.1906491 0.4057435 0.9569689 0.1204565 -0.2639851 0.6508988 8.24e-4 -0.759148 0.4279 -0.01257359 -0.9037141 0.01742607 -0.1712698 -0.9850459 0.08609271 -0.403241 -0.911008 -0.2960295 -0.2424696 -0.9238563 -0.1223487 -0.7730339 0.6223945 0.1783196 0.460799 -0.8693808 -0.2161015 0.5193945 -0.8267464 -0.09012115 -0.04104739 0.995056 -0.05642867 0.03915524 0.9976196 -0.2335581 0.1572924 0.9595019 -0.04928737 -0.289285 0.9559618 -0.03671371 -0.2765892 0.9602649 -0.2446669 0.7395856 -0.6269723 -0.0390942 0.6631978 -0.7473983 -0.07876825 0.478164 -0.874691 -0.5365459 0.6247139 -0.567278 -0.5821406 0.7612537 -0.2855922 -0.006622493 -0.06384468 0.9979248 -0.0500198 -0.1761528 0.9830622 -0.3917966 0.7619251 -0.5156713 -0.06830042 0.718894 -0.6917325 0.4485915 0.3857845 -0.8061465 0.7671133 0.08148437 -0.6362804 -0.3982055 -0.02673417 0.9168676 -0.237495 -0.4389783 -0.8665121 -0.4777672 -0.4159063 -0.7737663 0.5271157 -0.3101902 -0.7911313 0.3745842 -0.8345592 -0.4039125 -0.2056642 -0.4144414 0.8865017 -0.3021332 -0.6616718 0.6861782 -0.1846064 -0.4843593 0.8551592 -0.3153783 -0.5508896 0.7726677 0.03033536 0.0615558 0.9976196 -0.5754876 0.2621845 0.7746208 -0.8841823 0.3486434 -0.310831 -0.9074984 0.3418989 0.2439649 -0.7168188 0.311655 -0.6236763 -0.1896725 0.1215247 -0.9742729 -0.5266274 0.239967 -0.8154851 -0.3596912 0.5931273 -0.7202674 -0.2182683 0.23014 -0.9483322 0.688345 -0.2096621 -0.6943877 0.7825556 -0.08563494 -0.6166265 0.03329569 -0.5542162 0.8316904 0.1045564 -0.2982574 0.9487289 0.1833246 -0.145024 0.9722892 0.1376079 -0.2576373 0.9563586 0.1040986 -0.3084811 0.9454939 0.1025117 -0.2757347 0.9557176 -0.5255287 0.1306802 0.8406323 -0.9148228 -0.2976775 -0.2728049 -0.8700522 -0.2549516 0.4218574 -0.5755181 -0.2370678 -0.7826472 -0.3832514 -0.09393596 0.9188207 0.430311 0.1470077 0.8905912 0.9010895 0.2148197 0.3765984 0.9574877 0.1039766 -0.2689901 0.6101565 -0.02764976 -0.7917722 0.002777159 -0.14597 -0.9892575 -0.5510422 -0.2743003 -0.7880795 -0.9720146 -0.1022675 -0.2113407 -0.8738059 -0.001678466 0.4862514 -0.8993499 -0.1538438 0.4092227 -0.05810719 -0.00991851 0.9982299 -0.08236944 -0.1547288 0.9844966 0.3967406 -0.1181066 0.9102756 0.4053163 0.0444349 0.9130833 0.7929014 -0.1218909 0.5970031 0.9869686 -0.09460735 0.1299783 0.8967559 -0.04608291 -0.4400769 0.9026765 -0.007080256 -0.4301584 0.6202582 0.01791435 -0.7841731 0.5763115 -0.04223757 -0.816126 -0.01892143 -0.03720206 -0.999115 -0.4809412 -0.1029694 0.8706626 -0.2832423 0.1246986 0.9508957 0.4603412 0.07721179 0.8843654 0.3765374 -0.2718589 0.8855861 -0.8654134 0.1228675 0.4857326 -0.8629109 0.1372112 0.4863125 -0.9649953 0.1398663 -0.221717 -0.968688 0.1333048 -0.209357 -0.6842555 0.1485641 -0.7139195 -0.669332 0.11301 -0.7343059 -0.01767021 0.152562 -0.9880978 -0.008636713 0.1008942 -0.9948424 0.6171453 0.1098971 -0.779107 0.9565111 0.09454631 -0.2758263 0.6275216 0.1041902 -0.771569 0.9327678 0.03680527 0.3585314 0.932371 -0.005645871 -0.3614307 0.9473556 -0.1790521 0.2653279 -0.296762 0.03982663 0.9541001 0.5144505 0.1141392 0.8498489 0.5041963 0.06216615 0.8613239 -0.8602557 0.05999934 0.5063021 -0.8456679 -0.06521803 0.5296487 -0.9883725 0.01608324 -0.1511582 -0.9775384 -0.1467024 -0.1510361 -0.669454 -0.1813104 -0.7203589 -0.02697831 -0.0390942 -0.9988403 -0.04513686 -0.1712088 -0.9841914 0.5922727 -0.008362054 -0.8056581 0.5807672 -0.1098971 -0.8066042 0.9676198 0.02572709 -0.2510758 0.9708548 -0.01684617 -0.2390515 0.9208655 0.08319342 0.3808405 0.9178747 0.03860586 0.39494 -0.3266091 0.007629573 0.9450972 0.5119785 0.175695 0.8408154 0.5126499 0.1524094 0.8449355 -0.8224738 -0.2123172 0.5276345 -0.2972198 0.01815849 0.954619 -0.9130527 -0.3848384 -0.1348612 -0.8282418 -0.1610462 0.5366985 -0.6175115 -0.4174627 -0.6665853 -0.9470504 -0.2899563 -0.137791 -0.04165774 -0.2876675 -0.9568163 -0.03515732 -0.3770257 -0.9255043 0.58858 -0.191351 -0.7854244 0.6278878 -0.221778 -0.7459945 0.9696951 -0.03714102 -0.2414319 0.9721366 -0.02319401 -0.2331614 0.9337138 0.1136204 0.3394574 0.9440901 0.1388897 0.2989288 0.5098117 0.2081972 0.8346812 -0.3550524 0.01580858 0.9346904 -0.842616 -0.2208319 0.4911038 -0.5702078 -0.4512467 -0.6864223 -0.9006623 -0.4132816 -0.1340067 -5.49333e-4 -0.4389172 -0.8984954 0.6516007 -0.234962 -0.7212134 0.9654225 0.01019316 -0.2604144 0.9471725 0.184759 0.2620319 -0.8590961 -0.3167821 0.4019288 -0.3632008 -0.2113102 0.9074069 -0.3888974 0.04715108 0.9200415 -0.9654225 -0.09637743 -0.2421338 -0.9180883 -0.3250526 -0.226783 -0.6295663 -0.04773092 -0.7754753 -0.5904111 -0.2908109 -0.7528306 -0.02914518 -0.2314829 -0.9723808 0.5549486 -0.1141697 -0.8239693 -0.06115907 0.03027433 -0.9976501 0.900174 0.274514 -0.3380841 0.9350261 0.04171878 -0.352031 0.8832667 0.3414716 0.3212073 0.942381 0.1183508 0.3127842 0.4397717 0.006775081 0.8980682 0.4064455 0.2545549 0.8774682 -0.113712 -0.3647572 0.9241005 0.3471786 -0.467513 0.8129215 -0.3860286 -0.01599168 0.9223304 -0.6762596 -0.04239016 -0.7354046 0.7687308 -0.3791009 0.5150609 0.4185003 -0.07806634 0.9048128 0.7604297 0.02459788 0.6489151 -0.6445814 -0.3209937 -0.6938383 -0.5940123 -0.4760582 -0.6484268 -0.3142186 0.08343756 0.9456465 -0.6834926 -0.02853477 -0.7293924 -0.858974 -0.311655 0.4062014 -0.3794671 -0.1468245 0.9134495 -0.9207434 -0.3136082 -0.2320322 -0.6026185 -0.2905973 -0.7432173 -0.03390604 -0.2299875 -0.9725944 0.5606555 -0.1474959 -0.8147832 0.9578234 -0.003479063 0.2872707 0.9599903 -0.0122379 0.2797327 0.4337596 -0.1141087 0.8937651 -0.5778375 -0.2750328 -0.768395 -0.9124729 -0.3277688 -0.2447584 -0.01315343 -0.1820734 -0.9831843 0.5800043 -0.07171845 -0.8114261 0.9526963 0.06723225 -0.2963347 0.9228492 0.1688284 0.3461104 0.4446241 0.08261358 0.891873 -0.3712272 -0.1469771 0.9168065 -0.8642231 -0.2865688 0.4134953 -0.1210058 -0.3293557 0.9363994 -0.8006531 -0.09448528 -0.5915708 -0.256325 -0.2581256 -0.9314554 -0.4130375 -0.8715476 -0.2641377 0.2604755 -0.05368202 -0.9639577 0.3598437 0.2448805 -0.9002655 -0.5123447 -0.294351 -0.8067263 -0.4819177 -0.8137761 -0.3247475 -0.4918058 -0.8368785 -0.2402417 -0.1239051 0.5049593 -0.8541826 -0.0565508 0.5152135 -0.8551897 -0.200415 0.7723929 -0.602649 -0.3109226 0.7956175 -0.5198523 0.4645223 0.043733 0.8844569 -0.3631398 -0.2111575 0.9074679 0.4737998 -0.1767327 0.8626973 -0.3056429 -0.3829768 0.8717002 -0.7755669 -0.4972686 0.3888058 -0.84991 -0.3351848 0.4065065 -0.9071016 -0.08706927 0.4117558 -0.8178961 -0.5368816 -0.2067629 -0.9060335 -0.3632923 -0.216956 -0.5133519 -0.4990081 -0.6981414 -0.5939512 -0.3086337 -0.7429121 0.0114749 -0.433607 -0.9009979 -0.02710038 -0.2295907 -0.9728996 0.5741142 -0.3214514 -0.7530137 0.5888241 -0.1076388 -0.8010193 0.5304117 0.1387676 -0.8362682 0.9422895 -0.1646779 -0.2913907 0.9491257 0.03198337 -0.3131809 0.9407331 -0.07187104 0.3313699 0.9363079 0.1321451 0.3252663 -0.348796 -0.2620319 0.8997772 0.924192 -0.04690694 -0.3789789 0.7279886 0.1773735 -0.6622211 0.7060152 0.2840358 -0.648732 0.1364177 0.5366985 -0.832667 -0.568926 0.498703 -0.6538896 0.07882928 0.4242073 -0.9020966 0.6056703 -0.3091525 0.7331767 0.5880306 -0.07480084 0.8053224 0.9740898 -0.02844321 0.224311 -0.04721212 -0.2426832 0.9689322 -0.1291849 -0.1217994 0.9840999 -0.7191076 0.00451672 0.6948454 -0.7657399 0.06729328 0.6395764 -0.9528794 0.2556536 0.1631519 -0.9181494 0.3422346 0.1995911 -0.935728 0.3401593 -0.09317296 -0.8760339 0.4736472 0.0903958 -0.4835658 0.7441328 -0.46086 0.9610889 -0.2291024 0.1542405 0.9521775 -0.3053682 0.007568538 0.6987823 0.06396675 -0.7124241 0.09030425 0.309122 -0.9467147 -0.5453352 0.3698843 -0.7521592 -0.9450362 0.2376476 -0.2245246 -0.7018036 -0.1414228 0.6981414 -0.969512 0.07266455 0.2339549 -0.1107822 -0.368572 0.9229408 0.5657216 -0.4689779 0.6781823 0.9323099 0.2311167 -0.2781457 0.7813959 0.2458266 -0.5735649 0.1946165 0.569567 -0.7985473 -0.4578692 0.7512131 -0.4754173 -0.8514664 0.5103 0.1207007 -0.891873 0.2598651 0.3701285 -0.7870724 -0.02829062 0.6161992 -0.4927518 0.6696066 -0.5556505 -0.8864101 0.4522843 0.09839165 -0.8657796 0.2099673 0.454207 -0.7213355 -0.08001953 0.6879177 -0.6591693 -0.1288796 0.7408368 0.863094 0.2972198 -0.4082766 0.6439406 0.3411359 -0.6847743 0.2315134 0.5356304 -0.812067 0.5705741 0.04315316 0.8200934 0.9663076 0.1968443 0.1656544 -0.2434461 0.02520829 0.969573 -0.8634602 -0.104709 0.4933927 -0.8709983 -0.1973631 0.4498123 -0.9494308 -0.1777092 0.2587664 0.9183935 0.3274331 -0.2220526 0.5505844 -0.4976959 0.6701254 0.948851 -0.3078707 -0.06949061 0.7058321 0.01300084 -0.7082126 0.1271706 0.2397839 -0.9624317 -0.9259621 0.1569872 -0.3433638 -0.479812 0.2974029 -0.8254036 -0.9628285 -0.05539107 0.2642903 -0.6543779 -0.2378002 0.7177648 -0.1179845 -0.4053468 0.9064913 0.8948943 0.1900693 -0.4037293 0.9078036 0.1612903 -0.3871273 0.5651723 0.3299356 -0.7560961 0.1492355 0.4052248 -0.9019135 0.5334635 0.3021027 -0.7900021 -0.2741478 0.538316 -0.7968688 0.1560106 0.5074313 -0.847438 0.645497 -0.06118959 0.7612842 0.5572985 -0.09823906 0.8244575 0.7227699 -0.00653094 0.6910001 0.7823115 0.02694779 0.6222724 0.9781488 0.05771046 0.1996826 -0.7757805 -0.1939756 -0.6003906 -0.9881283 -0.1259194 0.08774071 -0.9989624 0.0152592 -0.04251223 -0.9131138 -0.2808313 0.2953886 -0.8865932 0.4462111 -0.1216773 0.2843409 -0.2572405 0.9235512 0.2487564 -0.3313089 0.910123 0.1258888 -0.2603534 0.9572436 0.9230934 0.1314737 -0.3613086 0.9162572 0.1101108 -0.3851131 0.6376842 0.2345347 -0.7336955 0.6274911 -0.06692707 0.7757195 0.6566057 -0.1137425 0.7455672 0.9820857 -0.00326544 0.1882687 0.2478713 -0.1690725 0.953917 0.1627857 -0.2437818 0.9560533 -0.6855373 -0.4075136 0.6032594 -0.8364513 -0.3368023 0.4322947 -0.9004791 -0.1578722 0.4051942 0.3901181 0.06357002 -0.9185461 0.8234505 0.09759819 -0.558916 0.7606128 0.08905297 -0.643025 -0.8378552 -0.4100162 -0.360332 0.02893149 -0.0394299 -0.9987792 0.2673116 0.07617419 -0.9605701 0.9969176 -0.01251256 0.07715076 0.5872372 -0.2287362 0.7763603 0.6214789 -0.1928769 0.75927 0.0628376 -0.2199469 0.9734489 -0.1973326 -0.238319 0.9508957 -0.6695151 -0.1082186 0.7348552 -0.163213 -0.1490829 -0.9752495 -0.3547166 -0.1821955 -0.9170202 -0.5645009 -0.3492844 -0.7478561 -0.6014283 -0.6841945 0.4124577 -0.2848598 -0.7163 0.6369518 0.7152318 0.03848379 -0.6977752 0.6945098 -0.0298776 -0.718833 0.06100648 0.07992798 -0.9949034 -0.3468123 0.0907315 -0.9335002 -0.2857753 0.04861593 -0.9570605 0.1484725 0.09527873 -0.984283 0.993408 -0.1127353 -0.02063047 0.6566362 -0.2033448 0.726249 0.6740928 -0.234901 0.7002472 -0.01815849 -0.1719717 0.9849238 0.02929776 -0.2183599 0.9754021 -0.6205634 -0.1519211 0.7692496 -0.9565111 -0.05130159 0.2870876 -0.8914456 -0.1901608 -0.4112369 -0.9221473 0.05365151 -0.3830073 -0.9991455 0.04055905 0.00225836 -0.7275307 0.08005005 -0.6813563 -0.4271675 0.6287118 -0.6497391 0.5229347 -0.09308141 0.8472549 0.2697836 -0.3128147 0.9106723 0.2534257 -0.3158055 0.9143345 0.1957762 0.3742485 -0.9063997 -0.1134373 0.436964 -0.8922697 0.01361125 0.618244 -0.7858516 0.6178777 0.333781 -0.7118747 0.3771783 0.3247475 -0.8673055 0.4051942 -0.1611987 0.8998993 0.4560381 -0.1744438 0.8726768 0.9744255 -1.83111e-4 0.2246467 0.3296304 0.5255593 -0.7842647 0.2113712 0.5942564 -0.7759636 0.06830042 0.6492508 -0.7574694 -0.8202765 0.5243995 -0.2282479 -0.4950102 0.6547136 -0.5711844 0.9987182 -0.04541152 0.02191227 -0.1501205 -0.02059996 -0.9884335 -0.5316935 -0.07156586 -0.8438978 -0.700766 -0.1593981 -0.6953337 -0.9768365 -0.203711 0.06530958 0.259682 -0.4415418 0.8588214 0.2701498 -0.3782769 0.8853725 0.2171087 -0.5418866 0.8118839 0.08169806 -0.3132115 0.9461348 0.1307718 -0.6740623 0.7269814 0.28193 -0.2034059 0.9376202 0.616657 -0.1924802 0.7632985 0.8802759 0.09024322 -0.4657735 0.5390179 0.1209753 -0.8335216 0.04187136 0.0579546 -0.9974365 -0.9559007 0.2412488 -0.167394 0.3501999 -0.2625507 0.8991058 0.231727 -0.0527665 0.9713126 0.9855953 0.1042512 0.1330301 0.9866939 -0.004882931 0.162389 0.6905729 -0.03729361 -0.7222511 0.06189149 0.09979552 -0.9930723 -0.5313273 0.1577501 -0.8323313 0.6782739 -0.2231513 0.7000641 0.98175 -0.1699575 -0.0849635 0.02880942 -0.2087771 0.9775078 -0.6057924 -0.1775566 0.7755364 -0.9635304 -0.05224764 0.2623371 -0.926725 0.09317296 -0.3639332 -0.5419477 0.1180761 -0.8320261 0.9835506 -0.1692251 -0.06289863 0.1761223 0.2933744 -0.9396039 0.6879482 0.04782247 -0.7241432 0.7984253 0.136021 -0.5864742 0.9359416 -0.2730796 0.2222357 0.6946929 -0.3634449 0.6206855 0.624897 -0.6166265 0.4787744 0.3131809 -0.4306772 0.8464003 0.1797845 -0.644612 0.7430341 -0.7282937 -0.1943113 0.6571245 -0.7454757 -0.2399975 0.6218146 -0.2847682 -0.4982757 0.8189032 -0.9698477 -0.03061002 0.2417066 -0.9327372 0.03576767 0.358745 -0.9273965 0.2363658 -0.2898648 0.9674978 -0.2258675 -0.1135594 0.9458907 -0.2219001 -0.2365489 0.5089267 -0.8095645 0.2924283 0.5681936 -0.6189764 0.5421919 0.9597156 -0.2804956 0.01553392 0.8222602 0.2417371 -0.5151525 0.9426252 -0.3021027 -0.1420026 0.2667928 0.6392102 -0.7212134 0.8233284 0.2589495 -0.5050203 -0.2995697 0.7534105 -0.585284 0.2774743 0.6782433 -0.6804102 -0.8066042 0.586108 -0.07626575 -0.2957243 0.7976318 -0.5256203 -0.787286 0.611713 -0.07702869 -0.8805811 0.2148503 0.4223456 -0.888699 0.182226 0.4206671 -0.6089358 -0.2369457 0.7569506 -0.6888943 -0.2701193 0.6726279 -0.07638782 -0.6010316 0.795526 -0.2080447 -0.6975005 0.6856899 0.5204932 -0.6403089 0.5648061 0.5231788 -0.6009705 0.6042054 0.9407331 -0.3352763 -0.05053859 0.8146611 0.1840266 -0.5499131 0.9554735 -0.292581 -0.03784292 0.2999664 0.5611133 -0.7714469 0.7884762 0.07071137 -0.6109501 0.245735 0.432905 -0.867275 -0.3765679 0.5645619 -0.7344279 -0.8339793 0.5188452 -0.1877193 -0.3300577 0.6919156 -0.6420789 -0.9327983 0.1469466 0.3289895 -0.8608967 0.4195075 -0.2878201 -0.9634388 0.07586902 0.2568743 -0.623249 -0.3400983 0.7041536 -0.6172979 -0.3026826 0.7261269 -0.04663223 -0.5677359 0.8218635 -0.0451979 -0.6095157 0.7914365 0.5349285 -0.5665151 0.6267892 0.541612 -0.5462508 0.6389355 0.9372234 -0.3350932 -0.09619432 0.9351482 -0.3484298 -0.06381416 0.7286905 -0.04513686 -0.6833094 0.7557909 -0.01040679 -0.6546831 0.1545152 0.2189397 -0.9634083 0.1978515 0.3065584 -0.9310282 -0.4304636 0.3354595 -0.8379162 -0.8792688 0.3160497 -0.3563341 -0.409772 0.4355602 -0.8014466 -0.9765008 -3.05185e-4 0.2154912 -0.8860744 0.2282479 -0.4033936 -0.6312143 -0.3522751 0.6909696 -0.9704276 -0.06308174 0.2329173 -0.077578 -0.5273599 0.8460646 -0.6213569 -0.3471175 0.7023835 -0.1087069 -0.492111 0.8637043 0.5493942 -0.5198828 0.6540727 0.9435713 -0.3097018 -0.1170079 0.7036042 -0.02258366 -0.7101963 0.1398663 0.1910153 -0.9715567 -0.8990753 0.1510056 -0.4109012 -0.4451735 0.2704245 -0.8536027 -0.9640492 -0.09741508 0.2471999 -0.630604 -0.305948 0.7132176 -0.1265297 -0.4424268 0.887814 0.9980773 -0.04174929 -0.04553359 0.951323 -0.2813807 -0.1255837 0.6513565 -0.1067842 -0.7511826 0.1156041 0.2804346 -0.9528489 0.7032991 0.1175268 -0.7010712 -0.4943999 0.3382672 -0.8006836 0.08505505 0.0491653 -0.9951476 -0.5171667 0.09378337 -0.8507035 -0.9132359 0.01629686 -0.4070559 -0.8968474 0.2763451 -0.3452864 -0.9771111 -0.09689623 0.1893673 -0.6156804 0.03567612 0.7871334 -0.9544664 0.1464583 0.2598041 0.009308099 -0.04556411 0.9989013 -0.6650899 -0.1805475 0.7245705 0.6914884 -0.09601122 0.7159337 -0.04382455 -0.2594074 0.9647511 0.6747947 -0.3329569 0.6585894 0.8774071 -0.4729148 0.08017212 0.428663 -0.886105 0.1760613 -0.4285104 0.4243599 -0.7976623 0.01849418 -0.8534501 0.5207984 0.6855373 -0.4026307 0.6065249 -0.08471935 -0.3857234 0.9186987 0.7481002 -0.6533708 -0.1157567 0.6518754 -0.1037935 -0.7511521 0.9355144 -0.3252052 -0.1379131 0.07675403 0.0521866 -0.9956664 -0.5084384 0.08163696 -0.8572039 -0.9112217 0.008941888 -0.4117558 -0.6961882 -0.2476271 0.6737571 -0.974334 -0.1325418 0.1818292 -0.08453625 -0.364513 0.9273355 0.6658529 -0.4347361 0.6062807 0.07473981 0.06140321 -0.9953002 -0.5274514 0.1184423 -0.8412733 -0.921659 0.06527906 -0.3823969 -0.9718009 -0.07211524 0.2244026 -0.6229743 -0.1947996 0.757561 -0.005310177 -0.2416455 0.970336 0.6697897 -0.2816248 0.6870632 0.9693289 -0.2237312 -0.101474 0.6719871 -0.07065033 -0.7371441 0.2511368 0.10477 -0.9622486 -0.2716453 0.08551281 -0.9585559 -0.4369335 -0.2233344 -0.8713034 -0.6573382 0.1778008 -0.7322916 -0.5629444 0.5022431 -0.6563616 0.3768426 0.4726096 -0.7965942 -0.5676138 0.09173864 -0.8181402 -0.858272 0.4940031 -0.1388592 -0.9249245 -0.3676565 0.09628587 0.2421643 0.5565661 -0.794702 0.9509263 -0.2832423 -0.1243324 0.6547746 -0.3107395 0.6889554 0.8793603 -0.4520707 -0.1494491 0.6054262 -0.5153661 0.6064333 0.6517533 -0.1249427 -0.7480392 0.5924558 -0.2911466 -0.7510911 0.08758813 0.01443523 -0.9960326 0.04788351 -0.1736808 -0.9836116 -0.507004 0.08273565 -0.8579363 -0.5147252 -0.1269569 -0.8478958 -0.9138463 0.02185124 -0.4054079 -0.9679861 -0.1066622 0.2270882 -0.9400006 -0.3077791 0.1470382 -0.6368297 -0.2106082 0.7416608 -0.6347545 -0.3934446 0.6650288 -0.03061002 -0.2597125 0.9651784 -0.05029445 -0.4511551 0.8910184 -0.8832667 -0.1926023 -0.4274117 -0.7028413 0.5676748 -0.428663 -0.4730979 0.7862789 -0.3973205 -0.7332987 0.6280404 0.2603229 0.536607 -0.2213507 -0.8142644 0.6693625 -0.5337687 -0.5167394 0.6504715 -0.6425367 -0.4049806 0.2411572 0.4904019 -0.8374279 -0.04715108 0.3648793 -0.929838 -0.7405316 0.5379498 0.4026917 -0.7082736 0.6220282 0.3337504 -0.7219764 0.6662496 0.1865596 -0.01901298 0.1009552 -0.9946898 -0.03808706 0.1170995 -0.9923704 0.4445021 -0.4636067 -0.7664418 0.6360363 -0.7294229 -0.2517167 0.6671041 -0.7235023 -0.1773125 0.6869106 -0.7001861 -0.194525 0.3386944 -0.616596 0.710654 0.4060183 -0.540025 0.7372051 0.6826381 -0.7239906 0.09897148 0.5870846 -0.5517441 -0.5923337 0.5831172 -0.5933104 -0.5548875 0.5507676 -0.5619068 -0.6171453 0.6888638 -0.5508896 -0.4711142 0.8879361 -0.4558244 -0.06131166 0.4685202 -0.2616657 -0.8437758 -0.5937986 0.4311655 0.6793115 -0.1807001 0.083346 0.9799799 -0.03796499 -0.001617431 0.9992676 -0.1172521 -0.04568618 0.9920347 -0.1264382 -0.04007077 0.9911496 -0.4915006 0.3974425 0.774865 0.6545915 -0.6259346 -0.4238716 0.6918851 -0.6414685 -0.3312784 0.6888638 -0.4719077 -0.5501877 0.5907773 -0.5992004 -0.5402692 -0.8343455 0.4902799 0.2518693 -0.6613667 0.4335154 0.6120487 -0.6111027 0.4770043 0.6316111 -0.7060152 0.5360576 0.4627217 -0.2367016 0.1644032 0.9575487 -0.6557512 0.6909086 0.3043001 -0.630726 0.7683035 -0.108829 0.1490219 0.2775048 -0.9490646 0.2460707 0.4241462 -0.8714866 0.6939299 -0.2856838 -0.6609088 0.6753441 -0.7159643 -0.1767327 0.6748558 -0.227607 -0.7019257 0.6389355 -0.6974395 -0.3244423 0.1762749 -0.3176671 -0.9316385 0.5485397 -0.5921506 -0.5902585 0.7354656 -0.6558428 -0.169988 0.4488052 -0.4281747 -0.7843257 0.5952025 -0.2130802 -0.7747734 0.8310801 -0.06543165 -0.5522325 0.9880978 -0.1241188 0.09082305 0.8894925 -0.4481948 -0.08877831 0.1429182 -0.09103667 0.9855343 0.2806787 0.08832055 -0.9557176 -0.1263771 -0.04037594 -0.9911496 0.2233955 -0.9673147 -0.1197851 -0.5932493 -0.0691244 -0.8020265 -0.7209693 -0.5140233 0.4646748 0.9224219 -0.03164768 -0.3848079 0.5511032 -0.06961268 0.8315073 0.8980987 -0.06497389 0.4349192 -0.2462538 -0.2904446 0.9246498 0.08035522 -0.3747063 0.9236427 0.2239143 -0.2152165 0.9505295 0.1634266 -0.09237951 -0.9822077 -0.6736351 -0.1340678 -0.7267678 -0.9348125 -0.1284829 -0.3310343 -0.933195 0.3418378 -0.1107516 0.7275918 -0.2869961 0.6230354 0.7632374 -0.1066316 0.6372265 0.4843593 -0.4350413 -0.7590259 0.5586718 -0.4119694 -0.7198096 0.6650288 -0.730369 -0.1557359 -0.7376934 0.6735435 -0.04593032 -0.6819971 0.7262185 -0.08648943 -0.6309092 0.7217628 -0.2844935 0.610126 -0.3649709 -0.7032075 -0.2059389 0.7699515 -0.6039308 -0.2879726 0.6496781 -0.7035127 0.3777886 -0.2623371 -0.8879361 0.7165746 -0.4310129 -0.5483261 -0.924131 0.3449202 0.16422 -0.7494431 0.263039 -0.607532 -0.1723991 0.03799551 -0.984283 0.8678548 -0.4661397 -0.1718192 0.7917417 -0.4212775 0.4423047 0.3872799 -0.2556536 0.8857693 0.7219459 -0.2242805 0.654561 -0.21189 0.02880942 0.9768365 -0.6850795 0.2637715 0.6790063 -0.6426588 0.3397015 0.686697 -0.6279489 0.3721122 -0.6834926 -0.9060335 0.4172185 0.07080292 -0.5778985 0.001312255 0.816065 0.03308206 -0.406476 0.9130222 0.6708579 -0.7368999 -0.08285772 0.4223151 -0.4241768 -0.8010498 -0.0877102 0.0426343 -0.9952086 -0.2476271 -0.08536022 0.9650563 -0.5397198 0.5038606 0.6743675 -0.6839808 0.7208777 -0.1116367 -0.3492233 0.5840327 -0.7327494 0.09115874 0.2150639 -0.9723197 0.6235847 -0.4554888 -0.6353038 0.04730367 -0.09793388 0.9940489 0.5138707 -0.5905331 0.6222114 0.4635151 -0.6753441 0.5736259 -0.4340037 -0.4490188 -0.7809992 -0.08206427 -0.7037263 -0.70571 -0.03689682 -0.896939 -0.4405652 -0.01355022 -0.1117893 -0.9936217 -0.504532 0.02038633 0.8631245 -0.7882016 0.25309 0.5609302 -0.8544572 0.3748894 0.3595691 -0.7239601 0.5203101 -0.4528642 -0.6129032 0.7668081 -0.190466 -0.8862575 0.4572588 0.0737937 0.4524064 -0.400586 -0.7967467 0.1018708 0.184698 -0.9774773 0.3994567 -0.4709616 -0.7864925 0.2875454 -0.863979 -0.4133121 0.6824854 -0.6919767 -0.2351451 0.4967193 -0.8550676 0.1486251 0.5699332 -0.5986205 -0.5628224 0.5849788 -0.5619984 -0.5847346 0.5278176 -0.6426588 -0.5552843 0.30665 -0.6402478 -0.7042757 0.3782464 -0.5034944 0.7767876 0.6465041 -0.7520371 0.1282082 0.6747032 -0.7306131 0.1044954 -0.09591966 -0.09054839 0.9912412 -0.530076 0.3682973 0.7637562 -0.7748345 0.5080416 -0.3761101 0.4472488 -0.4783166 -0.7557299 0.6212653 -0.7375103 -0.2646565 -0.7787103 0.5889157 0.2161931 0.5265969 -0.8347117 -0.1608631 0.1529282 -0.221839 -0.9629811 -0.7126377 0.5237587 0.4666585 -0.5633717 -0.6479385 -0.5125584 -0.221717 -0.2237312 -0.9490646 -0.05319374 -0.4198431 -0.906003 -0.4000672 0.1358989 -0.9063387 -0.1844844 -0.6047243 -0.7747429 -0.1541795 -0.9124424 -0.3789789 -0.5105746 -0.784051 -0.352855 -0.3459578 0.2284615 -0.9099704 -0.8682821 -0.4819177 -0.1172826 -0.1445356 -0.934141 -0.3262734 -0.01254308 -0.9791558 0.2026124 -0.3200171 -0.8285775 0.4593646 -0.8984039 -0.408063 -0.1621448 -0.3896908 -0.6945098 -0.6047853 -0.2062441 -0.9225135 -0.3261513 -0.4103824 -0.8920255 -0.1893368 0.5513779 -0.7692191 -0.3227943 0.4943999 -0.7990356 -0.3421735 0.5145421 -0.2869656 -0.8079776 0.2554399 0.3065279 -0.9169286 -0.1578112 0.7218849 -0.6737266 -0.5498825 0.8288522 -0.1029694 -0.8410902 -0.5263527 0.1244544 -0.29606 -0.4906766 0.8194831 0.1006805 -0.9019135 0.4199652 -0.4912564 0.6763817 -0.5487533 -0.7120884 0.6554766 0.2514114 -0.04910427 -0.4903104 0.8701438 0.4201788 -0.8587298 0.2932524 0.6448866 -0.7101963 -0.2822657 0.5523545 -0.7668386 -0.3268532 0.3945433 -0.3485824 -0.8501541 -0.06656086 0.3391827 -0.9383526 -0.7193518 0.5279397 0.4513688 -0.702414 0.5774713 0.4160283 -0.2219001 0.03927731 0.9742424 0.2538225 -0.4152653 0.8735313 0.5829645 -0.7669302 0.2681661 0.5145421 -0.6585284 -0.5491501 0.1342204 -0.1585131 -0.9781793 -0.2500076 0.2990204 -0.920896 -0.7665639 0.6179082 -0.1747184 -0.5553453 0.443495 0.7034822 0.4037293 -0.4504227 0.796289 0.6605426 -0.7393414 0.130375 0.5155187 -0.6551408 -0.552263 0.07992798 -0.2410352 -0.9671926 -0.4300668 0.3120823 -0.8471023 -0.4874111 0.7425153 0.4594256 -0.3377789 0.4331492 0.8355968 -0.2758568 0.4708701 0.8379467 -0.128605 -0.4464247 -0.8854945 -0.4056215 0.08276617 -0.9102451 -0.2869045 0.2566606 -0.9229103 0.3616138 -0.8681295 0.3398541 0.1749016 -0.9423505 0.285226 0.1449324 -0.9171118 -0.3712882 0.1908627 -0.5261391 0.8286691 0.04495376 -0.6471755 0.7610096 -0.1482284 -0.03830069 -0.9881893 -0.6306345 0.4060488 -0.6613361 -0.5533311 0.5181738 -0.65215 0.340495 -0.4996185 -0.7964721 -0.07577741 0.08407849 -0.9935606 0.7238075 -0.6882229 -0.04892116 0.6484268 -0.7517014 -0.1201514 0.04919582 -0.1158788 0.9920347 0.3950011 -0.1247596 0.9101535 0.230842 0.01831108 0.972808 -0.2860195 0.1101718 0.9518418 0.02575761 0.1674855 0.9855037 -0.806299 0.5879696 0.0643025 -0.7597278 0.6428114 0.09765923 -0.480575 0.2672811 0.8352001 0.120426 -0.2495803 0.9608142 0.1639759 -0.2263863 0.9601123 0.52266 -0.5577563 0.644734 0.5515915 -0.5233619 0.6494033 0.457625 -0.4091006 -0.7894223 -0.04803609 0.1050142 -0.993286 0.779046 -0.6267892 -0.01348912 0.4927824 -0.3556017 -0.7941527 0.5414899 -0.5255898 0.6561174 0.1755424 -0.2130802 0.9611194 -0.4035462 0.2949919 0.8660848 -0.407239 0.3093966 0.8592792 -0.7415998 0.6601154 0.1192052 -0.5695059 0.5109409 -0.643849 -0.7239906 0.2050538 -0.6585894 -0.2408215 -0.1718497 -0.9552294 0.4085513 -0.8753929 -0.2583392 0.1536607 -0.6089358 -0.7781609 -0.01770073 -0.139256 0.9900815 -0.6148259 -0.7484054 0.2486343 -0.1663259 -0.9837031 0.06814783 -0.3128452 0.03085416 0.9492782 -0.9555345 -0.2801599 0.09161657 -0.5742058 -0.6405835 -0.5097812 -0.5287027 0.4876247 0.6947234 -0.4440138 0.2885525 -0.848262 0.4991302 -0.6577349 -0.5640736 0.04828023 -0.2591326 -0.9645985 0.4525589 -0.3944823 0.799707 0.6691794 -0.7309183 0.1338236 -0.6552324 0.6206855 0.4305246 -0.1418195 6.71407e-4 0.9898679 -0.2575152 0.2943205 -0.9203467 0.5218055 -0.7910398 0.3193151 0.4945524 -0.7003388 -0.5146947 -0.4076357 0.7301248 -0.5483566 -0.6604205 0.7027803 0.2643208 -0.03353983 0.3549607 -0.9342631 0.5000458 -0.7950377 -0.3432416 0.3540452 -0.3113803 -0.8818323 -0.03460794 -0.451796 0.8914456 -0.08383435 0.8002259 -0.5937681 -0.5219581 0.8528093 -0.01495403 0.5465865 -0.2179937 -0.8084964 0.3311258 0.3762016 -0.8653218 0.4900968 -0.8173772 -0.3027131 0.07943964 -0.8872036 0.4544206 0.1177709 -0.1714224 -0.9781183 0.01022368 -0.3268837 -0.9449751 -0.2931608 -0.5960265 -0.7474899 -0.6299631 -0.7663503 -0.1258278 -0.4768822 0.8703574 0.1223792 -0.3694876 0.7996765 0.4732505 -0.6280099 0.5978576 -0.4980926 0.6541643 -0.4342479 -0.6192511 -0.590991 0.4683676 0.6567583 -0.1491439 -0.04309213 0.9878537 0.6835231 -0.7008881 -0.203711 0.3950011 -0.5309916 0.7496262 -0.5841243 0.3728752 0.7209082 -0.09405803 -0.01086455 0.9954833 -0.01757866 0.05191195 0.9984741 -0.03341776 -0.9957885 0.08517712 -0.0389111 -0.9244056 0.3793451 -0.7692191 0.61742 0.1643727 0.02719199 0.1625721 -0.9862972 0.6607868 -0.7258217 -0.1909543 -0.3913083 0.5428022 -0.7430952 -0.4947661 0.07995849 0.8653218 -0.4371777 0.1191747 0.8914151 -0.211066 -0.9741203 0.08056885 -0.42378 -0.8373669 0.3451948 -0.4088565 0.544847 -0.732078 -0.3617969 0.5177465 -0.7752007 -0.6840724 0.2545854 0.6835231 -0.666097 0.2547075 0.7009797 -0.5649892 -0.7990967 0.205298 -0.2022156 -0.8359935 -0.5100864 -0.2732627 0.5986205 -0.7529221 -0.6346935 0.7157506 -0.2912687 -0.400647 -0.4012573 -0.8236641 -0.1579943 0.08035522 -0.9841304 0.0525223 -0.4509415 -0.8909879 0.0502029 -0.9363079 0.3475448 -0.1782281 -0.6204108 0.7637257 -0.670919 -0.6151616 0.4140141 -0.5453352 0.417249 0.7269509 -0.6268502 0.7127903 0.3146153 -0.7069308 -0.2075564 -0.6761071 -0.9539781 -0.2827235 -0.09979552 0.2034669 -0.9121067 -0.3558458 0.2393566 -0.2988067 -0.9237953 -0.03903317 0.255501 -0.9660024 -0.488876 0.8543351 -0.1762444 -0.5512558 0.8075503 -0.2095706 -0.6070132 0.7250282 0.3252663 -0.5274819 0.4984283 0.6879482 -0.5019379 0.6165655 0.6064944 -0.06176942 -0.5206458 0.8514969 0.2162236 -0.8780176 0.4269234 -0.7875912 -0.5829645 0.19953 -0.6962187 0.2337412 0.6786706 -0.6517533 0.7462386 0.135258 -0.4511246 -0.2488784 -0.8570208 -0.8497574 -0.3961303 -0.3477889 0.06942957 0.1439253 -0.9871212 0.2215338 -0.3212683 -0.9206824 -0.1379742 -0.9078036 0.3959776 -0.344554 -0.9293802 0.1322367 -0.3530687 -0.6670431 0.6559954 0.1892452 -0.909299 -0.3705557 0.4021729 -0.2413709 -0.8831446 0.2174444 0.2872707 -0.9328288 -0.2458876 0.9655751 -0.08456677 -0.5541856 0.8059328 0.2080752 -0.3570055 0.8874172 0.2914823 -0.4804529 0.6700949 0.5657522 -0.2716453 -0.569567 0.7757195 -0.02523881 -0.8617511 0.5066988 -0.523545 0.700766 0.4845119 -0.4004944 0.3535569 0.8453017 -0.6484573 0.7533494 -0.1091647 -0.6411023 -0.3299051 -0.6928923 -0.6077151 0.494583 0.6212958 -0.319071 0.1702628 0.9322794 -0.2080447 0.2529374 0.9448226 -0.7614673 0.6402478 0.1009857 -0.8256173 0.5575426 0.08627581 -0.6164739 -0.4607685 -0.6384472 -0.577868 -0.08566546 -0.8116093 -0.3152562 -0.5310831 -0.786462 0.1760002 -0.9714041 0.159215 0.2511063 -0.6772973 0.6915189 0.007507503 -0.8892178 -0.4573809 -0.1125828 -0.3369854 -0.9347209 -0.4649495 0.1700186 -0.8688315 -0.6914884 0.7013459 0.1730094 -0.5460372 0.5448775 0.6363109 -0.1668447 0.4042177 0.8992889 -0.4297617 0.6761376 0.5984069 0.3812067 -0.5265969 0.7598193 0.4720298 -0.870571 0.1387676 -0.244026 0.3108005 -0.9185766 -0.2269051 0.3196508 -0.91995 0.1365092 -0.1751152 -0.9750359 0.5219275 -0.7314066 -0.4388256 0.1346476 -0.1867427 -0.9731132 0.5262612 -0.7705924 0.359386 0.5177465 -0.7145909 -0.4703818 0.5337992 -0.773339 0.3419599 0.2727439 -0.4200568 0.8655049 -0.6136357 0.6534013 0.4432814 -0.6194037 0.6461379 0.4458449 -0.1193579 0.0303964 0.9923704 -0.5157323 0.6319773 -0.5784173 -0.5379498 0.6317942 -0.558031 0.04220706 -0.212775 -0.9761651 -0.4239326 0.2825403 -0.8604694 -0.4519486 0.2602008 -0.853206 0.4958648 -0.6239509 -0.6039613 0.04116946 -0.2500687 -0.9673452 0.6789148 -0.721305 0.1368449 0.4908597 -0.6471145 -0.5833003 0.6660054 -0.7338176 0.1337931 0.4298227 -0.4229255 0.7977233 -0.5469833 0.4767602 0.6880703 -0.5326396 0.5016938 0.6815699 -0.03353983 0.05420082 0.9979553 -0.7751702 0.6079592 -0.171575 -0.6440016 0.7216101 0.253975 -0.6548357 0.7148351 0.2452162 -0.4521927 0.1736198 0.8748436 -0.3914609 0.7463302 -0.538255 -0.4116642 0.7412946 -0.530076 0.3493759 -0.241676 -0.9052705 -0.00753802 0.355266 -0.9347209 0.003204405 0.363506 -0.931547 0.5150609 -0.7921079 -0.3274636 0.363567 -0.2599261 -0.8945586 0.5159764 -0.7883847 -0.3349406 0.3427534 -0.8401135 0.4203314 0.3336894 -0.8281198 0.4503616 -0.01739555 -0.4395581 0.8980377 -0.563158 0.8262276 0.01242101 -0.5604724 0.8273568 0.03592026 -0.6551408 0.2305978 0.7194128 -0.1304666 0.7954039 -0.5918149 0.5266274 -0.1986755 -0.8265328 0.3056429 0.3512986 -0.8849452 0.2959685 0.3467208 -0.8900113 0.4922636 -0.828547 -0.2666707 0.4736167 -0.8450881 -0.2479628 0.07046723 -0.8758812 0.4773095 0.04831075 -0.8601337 0.507767 -0.3049409 -0.5153051 0.8008973 -0.3955504 0.6840113 -0.6129032 -0.6066775 0.7697989 -0.1982787 -0.404767 0.7572253 -0.5125584 0.003692686 0.3492538 -0.9370098 0.3756523 -0.8613239 -0.3419904 0.3246864 -0.2581561 -0.9098789 0.4834132 -0.8108463 -0.3298746 0.3070467 -0.8429518 0.4417249 -0.01574754 -0.4474624 0.8941618 -0.6581317 0.5005951 0.5623341 -0.4698935 0.1092867 0.8759117 -0.4521927 0.2042909 0.86816 -0.2542497 0.3004242 -0.9192786 0.3256325 -0.8613239 -0.3899044 0.1079745 -0.2457655 -0.9632862 0.4708396 -0.7779473 -0.4159978 0.4902188 -0.7983947 0.349559 0.2527848 -0.45674 0.8529008 -0.4405347 0.4602191 0.770745 -0.1760002 0.07919549 0.9811701 -0.1415753 0.04882961 0.9887081 -0.6476028 0.7617115 0.01879936 -0.6041749 0.6411023 0.4731895 -0.6069521 0.6476333 0.4605548 -0.8041628 0.5483871 -0.2291635 -0.7118442 0.572161 0.407239 -0.7355877 0.6493728 -0.1928159 -0.4128544 0.2780541 -0.8673055 0.2943815 -0.7555468 -0.5851619 0.03170871 -0.2157048 -0.9759209 0.4736472 -0.6295663 -0.615833 0.6676535 -0.7322611 0.1340067 0.4505447 -0.4098941 0.793054 -0.5182043 0.5253151 0.6748864 -0.588641 0.4707175 0.6571856 -0.3787347 0.2837916 0.8809168 -0.5493026 0.8323313 0.07391583 -0.5805231 0.807825 0.1016571 -0.6819056 0.616596 0.3934141 -0.4120304 0.8832362 -0.2237922 0.2939848 0.3304544 -0.8968474 0.3375653 -0.9002655 -0.2748497 0.498001 -0.2155217 -0.8399304 0.4352855 -0.8626973 -0.2573626 0.02316349 -0.8629719 0.5046846 -0.2829371 -0.5376446 0.7942442 0.3312174 0.3657033 -0.8697775 0.5370342 -0.2101809 -0.8169195 -0.5451216 0.8380688 0.0208441 -0.09787285 0.8046815 -0.5855587 -0.1296121 0.7859737 -0.6044801 -0.676046 0.2282174 0.7005829 -0.6592609 0.2399365 0.7125767 -0.2936796 -0.5044099 0.811945 0.00238043 0.3612476 -0.932432 -0.6490676 0.7165746 0.2552873 -0.3922544 0.7402875 -0.5459457 -0.4360179 0.1599169 0.8855556 -0.4384289 0.1403546 0.8876919 0.3455916 -0.8583025 0.379284 -0.02694779 -0.4447767 0.8951994 -0.6212653 0.6442458 0.4459975 -0.5177465 0.6171148 -0.5925168 -0.0994293 0.01678514 0.9948729 -0.09646898 -9.15555e-5 0.9953307 0.2560198 -0.4222541 0.8695334 -0.5528428 0.6011841 -0.5769524 -0.2392651 0.3102817 -0.920011 -0.5383771 0.4854884 0.6887418 -0.7679678 0.6169927 -0.1717276 -0.04251223 0.03503525 0.9984741 0.4539018 -0.4016846 0.7953429 -0.02307194 0.05212557 0.998352 -0.7596057 0.6279183 -0.1693472 -0.4481033 0.2708823 -0.8519242 -0.5643483 0.8242134 0.04647964 -0.1275979 0.801294 -0.58446 -0.1337931 0.8026368 -0.581225 -0.6508072 0.213538 0.7285684 0.3170568 0.3501389 -0.8813745 -0.2852565 -0.519425 0.805475 -0.6592304 0.2178106 0.7196875 -0.6502274 0.7188025 0.2459181 -0.6319773 0.7333598 0.2504654 1.83111e-4 0.3574938 -0.9338969 -0.4123051 0.7475204 -0.5207068 -0.01913505 -0.4395886 0.8979766 -0.4563432 0.1826533 0.8708457 -0.5511338 0.6506851 -0.5223243 -0.6291086 0.6344188 0.4490799 0.2613911 -0.4358654 0.8612018 -0.1359599 0.02893149 0.9902646 -0.5517441 0.6302378 -0.5461593 -0.2500992 0.3077486 -0.9179663 -0.01837211 0.06314277 0.9978027 -0.01458781 0.07715076 0.9968871 -0.4077273 0.2916959 -0.8652303 -0.5181432 0.5226905 0.6769616 -0.7315897 0.6556597 -0.1866817 0.4632099 -0.3937498 0.793939 -0.7488632 0.6378979 -0.1795098 -0.7704398 0.6302073 0.09601122 0.7687918 -0.6380505 -0.04272586 -0.6006959 0.377514 0.7047029 -0.2287362 0.03183078 0.9729301 0.3284707 -0.3601794 0.873104 -0.1767327 0.7661367 -0.6178777 -0.1545152 0.6153142 -0.7729728 -0.3004242 0.1976379 -0.9330729 -0.07827997 -0.9128086 -0.4007691 -0.6732994 -0.5761284 0.463332 -0.663686 -0.04754781 0.7464827 -0.6334727 0.08429211 0.7691275 -0.2826014 -0.5064241 0.8146306 -0.2974639 -0.4965056 0.8154546 -0.416364 0.5787835 -0.7011322 -0.5834834 0.09833061 -0.8061465 -0.6023133 -0.4569231 0.6545 -0.203711 -0.9075289 -0.3671987 -0.4821925 0.009338617 0.8759728 -0.02014219 -0.4380932 0.8986786 -0.5442976 0.6507157 -0.5293741 -0.5928831 0.4679098 -0.6553545 -0.8096256 0.1186559 -0.5747856 -0.4584185 -0.3785211 0.8040712 -0.2288888 -0.1433454 0.9628285 0.2656636 -0.4252449 0.8651692 0.2325205 -0.4390088 0.8678548 0.009582757 -0.5264748 0.8500931 -0.8224738 0.4076357 -0.3966796 -0.8510087 0.03656113 -0.5238502 -0.08426159 -0.561388 0.8232368 0.03952145 -0.8934293 -0.4474014 0.00991851 -0.2087771 0.9779046 -0.03033536 -0.01635789 0.9993897 0.4401684 -0.4147771 0.79635 0.003173887 -0.774102 0.6330149 -0.7581713 0.2938322 0.582049 -0.917539 -0.09158605 0.3869137 -0.497879 -0.4831995 -0.7201148 0.1446577 -0.9741508 0.1734061 0.457625 -0.8302255 0.3181555 0.5407575 -0.6148564 0.5739921 -0.2394787 -0.1115757 -0.964446 0.7424238 -0.3879207 -0.5461593 0.9209571 -0.3804743 0.08407849 0.0916776 -0.06094545 0.9938963 -0.4670858 0.07724231 0.8807947 -0.8185675 0.1480758 0.5549486 -0.9848323 0.1684316 -0.04080319 0.258919 -0.2647786 -0.9288614 0.6676229 -0.2324594 0.7072359 -0.6034425 0.7482223 0.2756127 -0.1687063 0.262093 0.9501633 -0.1322977 0.1979736 0.971221 -0.7766656 0.6297494 -0.01239049 -0.7323222 0.632252 0.2528153 -0.7057405 0.5938902 0.3862423 -0.52266 0.5543687 0.6476333 -0.3315225 0.3044832 0.8929411 -0.2045961 0.2145146 0.9550462 -0.1803339 -0.8326975 0.5235145 -0.7423627 -0.6554155 0.1387981 -0.7975402 -0.33549 -0.5013276 0.09677416 -0.2135685 0.9721061 0.3407697 -0.3830989 0.8585162 0.4298837 -0.3086947 0.8484451 0.1659291 -0.07617419 0.9831843 0.3340251 -0.2472915 0.9095126 -0.2657857 0.2181768 0.9389935 -0.07214576 0.09579759 0.9927671 -0.4201788 0.1976989 0.8856166 0.4547563 -0.5096591 0.7303385 0.41966 -0.3848079 0.8220466 -0.2070375 0.2125614 0.9549547 0.2455824 -0.4183477 0.8744164 -0.3903012 0.5649586 0.7269204 -0.3026826 0.4574725 0.8360851 -0.300058 0.2634053 0.9168065 -0.5774713 0.8076113 0.1193579 -0.4826197 0.7271645 0.4881131 -0.5985595 0.7200537 -0.3509933 -0.5754265 0.794763 -0.1928464 -0.258919 0.6377453 0.7253944 -0.5809503 0.8112735 -0.0655232 -0.5495163 0.8348948 -0.03036588 -0.5291604 -0.7393109 0.4163945 -0.23426 -0.9122288 -0.3360698 -0.9103061 -0.4048585 0.08594012 -0.876339 -0.3032624 -0.3741874 -0.5484482 0.3936277 0.7376934 -0.5083163 0.7786188 -0.3678396 -0.501175 0.8223212 -0.2693869 -0.5854976 0.8048036 -0.0970183 -0.6295968 0.5623341 0.5360271 -0.5801874 0.4860683 0.6535234 -0.5910215 0.7697989 -0.2408826 -0.4542985 0.8907743 -0.01116973 -0.5516526 0.442671 0.7068697 -0.7192297 0.661977 0.2108523 -0.6650899 0.7086703 0.2354198 -0.4907987 0.8044374 0.3346049 -0.6639302 0.3335673 0.6692404 -0.2213507 0.8191473 -0.5290689 -0.3570055 0.9203467 -0.1596728 -0.4672079 0.8623005 0.1952879 -0.2873928 0.8982513 -0.3324381 -0.5747246 0.649556 0.4976959 -0.6238288 0.5504319 0.5548265 -0.423719 0.7743766 -0.4698324 -0.2961211 0.872219 -0.3892025 -0.2150639 0.9177221 -0.333842 -0.5735344 0.4653157 0.6741234 -0.6352123 0.3643299 0.6809595 -0.4818283 0.3885016 -0.7854349 -0.4929299 0.3647756 -0.7899106 -0.7196974 0.415156 -0.5564901 -0.01985532 0.7913323 0.6110638 -0.1958365 0.755876 0.6247397 -0.5532771 0.692998 0.4622102 -0.7915133 0.5622384 0.2395716 -0.854142 0.4661077 0.2306187 -0.7546724 0.5042623 0.4197489 -0.6433126 0.4763377 0.5993757 -0.4470807 0.4876285 0.7498915 -0.5161476 0.5451435 0.6606136 -0.7728494 0.5900372 0.2335801 -0.7898403 0.51349 -0.3353811 -0.5238987 0.3647411 -0.7697363 -0.528088 0.337903 -0.7790665 -0.3064253 0.3254481 -0.8945319 0.1177943 0.1234192 0.9853386 0.07207387 -0.01073622 0.9973415 -0.3907344 -0.1004961 0.9150012 -0.8420453 -0.0638644 0.5356128 -0.6778439 -0.2102428 0.7045039 -0.5620034 -0.5454793 0.6217753 -0.1772165 -0.3896531 0.9037504 -0.2827844 -0.4730049 0.8344456 -0.574832 -0.4334547 0.6940355 -0.9209608 -0.3175837 0.2257692 -0.7546015 -0.3946607 -0.5242324 -0.5070828 -0.4823663 -0.7142758 -0.218049 -0.4644379 -0.8583427 -0.1138611 -0.5114722 -0.8517229 -0.1444976 -0.563614 -0.8133018 -0.2246013 -0.6075223 -0.7618864 -0.2297927 -0.6187896 -0.7511956 -0.1471807 0.9872157 -0.06118029 -0.243338 0.9660633 -0.08664989 -0.3840509 0.9108367 -0.1512659 -0.4200512 0.9038364 -0.08146685 -0.5444359 0.8388023 2.62011e-4 -0.561237 0.8149595 0.1444091 -0.5222271 0.8219586 0.2272949 -0.3821959 0.8929618 0.2377934 -0.1965354 0.9365683 0.2901961 -0.3913894 0.9021351 0.1815675 -0.5219286 0.8525725 0.02666246 -0.5371837 0.827112 -0.1652862 -0.4320389 0.8544324 -0.2885962 -0.4752986 0.8418092 -0.2558287 -0.4696413 0.8377605 -0.2785577 -0.4218891 0.845223 -0.3280363 -0.2262791 0.8723782 -0.4333057 -0.02523177 0.3532631 0.9351837 0.08946913 0.3742474 0.9230028 -0.5186438 0.2739407 0.8099167 -0.8780993 0.2192516 0.4252886 -0.7955807 0.2307308 0.5601916 -0.9082728 -0.02219384 0.4177892 -0.4058167 -0.03874534 0.9131329 -0.3701725 -0.1697545 0.9133212 -0.6138498 -0.1770168 0.7693202 -0.9584151 -0.1132371 0.26195 -0.8644592 -0.03507512 -0.5014779 -0.6993706 -0.08166497 -0.7100786 -0.403226 -0.06399387 -0.9128601 -0.3043442 -0.1140872 -0.9457054 -0.3441163 -0.1805602 -0.9214022 -0.4155188 -0.2337937 -0.8790247 -0.3427386 -0.2162405 -0.9142047 -0.07860904 0.9328834 0.3514958 -0.2376347 0.9040846 0.3551913 -0.5071936 0.8388316 0.1977777 -0.6251288 0.7755998 0.08751535 -0.7286162 0.680917 0.07396173 -0.6759769 0.6902424 0.2581098 -0.614817 0.6672896 0.4203864 -0.4470681 0.694172 0.5641413 -0.4184558 0.725655 0.5461863 -0.6035469 0.7686797 0.2118081 -0.6384567 0.7563367 -0.1425755 -0.6316004 0.6574842 -0.4108474 -0.4699248 0.6227764 -0.6255559 -0.5245415 0.6279974 -0.5748699 -0.5429641 0.6087981 -0.5784074 -0.5169457 0.5921611 -0.6181525 -0.300915 0.5933303 -0.7465984 -0.1774824 0.4691655 -0.8650918 -0.1632374 0.6522054 -0.7402579 -0.04929107 0.7155098 -0.6968618 -0.02146124 0.7562095 0.6539776 0.07155847 0.7770997 0.6252962 0.1362819 0.7844592 0.6050214 0.09849447 0.7856445 0.6107876 0.4344902 0.6513521 -0.6220601 0.2723371 0.8432192 -0.46348 -0.03295892 0.7698419 0.6373831 0.3214858 0.6406812 -0.6972622 0.15695 0.700613 -0.6960661 0.01153868 0.7350575 -0.6779066 0.5108752 0.6084885 -0.6072465 0.8108609 0.5727199 -0.1204016 0.5255438 0.6586011 0.5385614 0.2770576 0.7393198 0.6137143 0.229874 -0.7032223 0.6727825 0.231661 -0.8755093 0.4240482 0.3206724 -0.9455209 0.05620926 0.3630536 -0.9080133 0.2090551 0.2173707 -0.8696626 0.4432121 0.1907837 -0.8529729 0.485838 0.48858 -0.8382989 0.2419594 0.2041997 -0.9769957 -0.06149601 0.05893808 -0.9817689 -0.1807102 0.06512045 -0.9952572 -0.07226729 0.1397776 -0.9878751 -0.06756329 0.3363602 -0.9370932 -0.09337067 0.3543434 -0.933772 0.05010765 0.3816978 -0.9141664 0.1364058 0.4084534 -0.8975555 0.1660119 0.3961963 -0.9031726 0.1652509 0.2121623 -0.9609401 0.1777109 0.05711615 0.8017683 0.5948995 0.2592105 0.8132562 0.520984 0.5279958 0.8190261 0.224537 0.6643535 0.7469335 -0.02692407 0.7669986 0.6190162 -0.1689144 0.8120654 0.5827853 0.03018492 0.8506579 0.5195997 0.0799821 0.8377784 0.5385129 0.0901733 0.8164145 0.5719404 -0.07969707 0.6764264 0.5483666 -0.4916721 0.3376355 0.4290931 -0.8377836 0.115573 0.3983947 -0.9099035 -0.1567119 0.379221 -0.911939 -0.0392996 0.3503928 -0.935778 0.03450399 0.312415 -0.949319 0.008121728 0.3151042 -0.9490223 -0.2591886 0.3197 -0.9113799 0.233918 0.1529582 0.960149 0.3573188 0.02809429 0.9335598 0.7303878 0.03596687 0.6820852 0.9776326 -0.03468787 0.20744 0.9881647 -0.10431 0.1124718 0.9384101 -0.2385529 0.2499583 0.7601819 -0.3741512 0.5311633 0.8370268 -0.456236 0.302051 0.8902162 -0.4551284 -0.01931792 0.7460622 -0.3974356 -0.5342622 0.05383276 -0.5985051 -0.7993083 -0.2338051 -0.6001728 -0.7649364 -0.428766 -0.5987786 -0.6764791 -0.3508375 -0.6276108 -0.6949948 -0.1908095 -0.6387983 -0.7453378 -0.1074032 -0.6168081 -0.7797514 -0.1850512 -0.5869277 -0.7882081 -0.1430439 0.9878009 -0.0615462 -0.02778154 0.9905195 -0.1345331 0.09899252 0.9570246 -0.2725883 0.1109264 0.9495079 -0.2934794 0.2081773 0.9162982 -0.3421401 0.3426976 0.9163516 -0.2070222 0.4556028 0.8735844 -0.1711034 0.4869504 0.8611896 -0.1457116 0.4117057 0.9064235 -0.09431254 0.3918202 0.8830841 -0.2581461 0.3333994 0.8956437 -0.2943929 0.2443176 0.8047978 -0.5409339 0.1365947 0.8413864 -0.522887 0.1966333 0.8157502 -0.543955 0.1503522 0.8269147 -0.5418545 0.07339936 0.8413645 -0.5354608 -0.1408365 0.8718802 -0.4690309 0.3320297 0.3864896 0.8604546 0.1889308 0.3878799 0.9021388 0.7425427 0.4012145 0.5363368 0.9511107 0.3020169 0.06460994 0.9853466 0.1704578 0.006024301 0.9887923 0.05360239 0.139344 0.9144557 -0.02861326 0.4036734 0.9504615 -0.1659439 0.2628412 0.970728 -0.2363827 -0.04254877 0.7971412 -0.2040939 -0.568253 0.1971089 -0.1127524 -0.9738762 -0.06249928 -0.2311663 -0.9709048 -0.3262655 -0.2342687 -0.9157888 -0.2773219 -0.2419033 -0.9298254 -0.1280705 -0.224603 -0.9659976 -0.06248384 -0.1674671 -0.9838957 -0.2165708 -0.1642896 -0.9623441 -0.02894276 0.9397081 0.3407507 0.1570467 0.9501871 0.2692227 0.3586298 0.9334619 0.005803942 0.5265571 0.8448431 -0.09475094 0.6515535 0.730126 -0.2058987 0.6329399 0.7713616 -0.06624519 0.7037418 0.7096076 -0.03470605 0.7021538 0.7117537 -0.01966893 0.679831 0.7278577 -0.08973836 0.5689166 0.7175065 -0.4018932 0.367445 0.6282769 -0.6857495 0.1806151 0.6070794 -0.7738429 -0.038706 0.61066 -0.7909463 0.07080078 0.5847932 -0.8080868 0.09240001 0.5660516 -0.8191752 0.03980481 0.5743525 -0.8176398 -0.2260886 0.5955083 -0.7708785 -0.2798348 0.3493725 -0.8942211 -0.3705282 0.2932856 -0.8813016 -0.6351172 0.0554443 -0.7704233 0.3593659 0.7885469 0.4990491 0.1799452 0.8054108 0.5647417 0.09312558 0.8296924 0.5503981 0.1425569 0.8259396 0.5454369 -0.8211874 0.4069991 -0.4000035 -0.7517729 0.5982407 -0.2773909 0.455931 0.7747882 0.4379845 -0.6272261 0.6723666 -0.3930783 -0.5850033 0.6932103 -0.4209878 -0.46296 0.7698878 -0.4392503 -0.7253479 0.6875269 -0.03430938 -0.5789275 0.6669513 0.4690618 0.09043538 0.7531968 0.6515489 0.2602694 0.7768786 0.5733405 0.2755452 -0.5809845 0.7658537 0.3071973 -0.5302812 0.7902098 0.4932972 -0.5283255 0.6910354 0.7381068 -0.5495546 0.3913925 0.1366088 -0.8797029 0.4554786 -0.07523 -0.8992942 0.4308253 -0.2498735 -0.8538433 0.4566342 -0.1961486 -0.9527524 0.231924 -0.3201056 -0.9411984 0.1080649 -0.2552624 -0.9427316 0.2147049 -0.2085213 -0.9490305 0.2363473 -0.3748737 -0.8643706 0.3351615 -0.2765222 -0.8911867 0.3596131 -0.2181336 -0.9038904 0.3679672 -0.1735074 -0.9234219 0.3423265 -0.1260529 -0.9478509 0.2927271 0.03212189 -0.9673824 0.2512761 0.09665882 0.711707 0.6957946 0.2743452 0.7327735 0.622718 0.5801285 0.7611148 0.2900952 0.7822188 0.6229351 -0.00924623 0.8934507 0.4289352 -0.1332688 0.8907584 0.4538739 0.02341008 0.9113804 0.3457956 0.2231841 0.9355456 0.2950963 0.194094 0.9593964 0.2729285 -0.07119327 0.7782734 0.2662426 -0.5686876 0.2720399 0.1562047 -0.9495233 0.06171023 0.146844 -0.9872329 -0.2198801 0.1321267 -0.9665378 -0.1609182 0.121964 -0.979403 -0.04762965 0.1074864 -0.993065 -0.03021353 0.1147501 -0.9929349 -0.2771356 0.1290626 -0.9521232 -0.3691324 0.1086179 -0.9230078 -0.5054742 0.1065325 -0.8562399 -0.4568011 0.1419143 -0.878176 -0.4078835 0.1747885 -0.8961473 -0.4777283 0.1674721 -0.8623971 -0.7503105 0.1949532 -0.6316862 -0.8588018 0.2657888 -0.4379679 -0.8997424 0.3407754 0.2726457 -0.601923 0.2890496 0.7444052 -0.4169631 0.242096 0.8760886 -0.5531638 0.2998024 0.7772569 -0.7534321 0.6026779 0.2629055 -0.8729237 0.4175735 0.2522627 -0.8353501 0.4643337 0.2942523 -0.5529418 0.5950304 0.5832617 -0.1390021 0.6647701 0.7340021 0.007544994 0.6989596 0.7151214 -0.00656706 -0.7172989 -0.6967346 0.1321818 -0.7469254 -0.6516367 0.4202803 -0.355734 -0.8347561 0.5587278 -0.4236095 -0.7130065 0.8370682 -0.4653024 -0.2877681 0.8215038 -0.3799754 0.4251472 0.4967822 -0.2540928 0.829846 0.5184493 -0.2249959 0.8249771 0.8735073 -0.3850101 -0.2979131 0.4448897 -0.2704612 0.8537703 0.7934157 -0.3542136 -0.4949992 0.5084319 -0.2740581 0.8163266 0.5876401 -0.3397552 -0.7343335 0.7688735 -0.3162906 0.5556921 0.5479075 -0.6349925 -0.5445933 0.3692234 -0.2638649 0.8910945 0.8097751 -0.4820889 -0.3344465 -0.02356314 -0.7515826 -0.6592179 0.110256 -0.7701726 -0.6282339 0.4945245 -0.7348691 -0.4641259 0.7939381 -0.5799561 -0.1825191 0.9140377 -0.3500697 -0.2049059 0.8619551 -0.282882 -0.4207267 0.6294103 -0.3400656 -0.6987116 0.4314859 -0.2991511 -0.851075 0.5528644 -0.3463232 -0.7578926 0.8947592 -0.3678972 -0.2530959 0.8271776 -0.3120137 0.4673594 0.7468019 -0.29913 0.5939764 0.4764899 -0.2908696 0.82967 0.4087598 -0.256973 0.875717 0.4607884 -0.2146271 0.8611673 0.5238072 -0.1800997 0.8325803 0.4044784 -0.2040197 0.8915004 -0.1560057 -0.7202104 -0.6759875 -0.2585827 -0.758026 -0.5987751 -0.9154403 -0.3745906 -0.1471429 -0.9061963 -0.4099441 0.1037024 -0.7510999 -0.411328 0.5163895 -0.2753522 -0.299395 0.9135336 0.006164491 -0.2114182 0.9773762 0.009695291 -0.2446968 0.9695513 -0.8142587 -0.5789005 0.0430935 0.1369069 -0.2578512 0.9564357 -0.8590497 -0.5049861 -0.08380091 0.1446449 -0.2569779 0.9555314 -0.8945932 -0.4032579 -0.1925775 -0.1095686 -0.3094763 0.9445736 -0.6011235 -0.7192429 -0.3483393 0.1981135 -0.2646676 0.9437702 -0.7506448 -0.6597908 -0.03476077 -0.1470887 -0.7469642 -0.6483898 -0.1722009 -0.8242951 -0.5393369 -0.57129 -0.7745874 -0.2713707 -0.7613139 -0.6482954 0.01068741 -0.8594639 -0.4749823 0.1889802 -0.9279542 -0.3635025 0.08226168 -0.927371 -0.3579782 -0.1087878 -0.9588659 -0.2547859 -0.1251412 -0.9617214 -0.258576 0.09072196 -0.776971 -0.202608 0.5960419 -0.2283952 -0.184248 0.9559751 -0.1199191 -0.1508666 0.9812536 0.1768282 -0.1812352 0.9674118 0.1599363 -0.1923711 0.9682013 0.0404154 -0.1902536 0.9809027 0.01283758 -0.2217101 0.9750281 0.1866624 -0.2509823 0.9498236 -0.006741762 -0.6996253 -0.7144781 0.1404752 -0.6691837 -0.7296984 0.5012761 -0.5437409 -0.6731033 0.8323228 -0.4312613 -0.3482128 0.8239465 -0.4371064 -0.3606247 0.7170047 -0.4396318 -0.5409512 0.6104682 -0.4117256 -0.676617 0.4541969 -0.4372879 -0.7761986 0.5635107 -0.4532982 -0.6906349 0.8163918 -0.5097361 -0.2714288 0.8218662 -0.4318644 0.3715226 0.7273545 -0.3335931 0.5997258 0.4996451 -0.2760783 0.8210576 0.4749227 -0.321546 0.8191804 0.5350199 -0.2873685 0.794464 0.4968094 -0.2718864 0.8241712 0.3597098 -0.1906545 0.9133782 -0.1549817 -0.7092532 -0.6877069 -0.2987092 -0.7290222 -0.6158728 -0.582181 -0.6976699 -0.4175187 -0.7645596 -0.6391748 -0.08309227 -0.8281918 -0.5602934 -0.01302009 -0.8481511 -0.5144376 -0.1264661 -0.8787896 -0.4564757 -0.1391362 -0.8845323 -0.4544476 -0.1052613 -0.8730944 -0.4782997 0.09452742 -0.7265383 -0.4751979 0.4963155 -0.2934748 -0.3787749 0.8777256 -0.1024681 -0.2864564 0.952598 0.1498795 -0.2470759 0.9573346 0.1008023 -0.2903538 0.9515953 -0.003951549 -0.2543026 0.9671166 0.03643351 -0.2446069 0.9689376 0.1954234 -0.2777041 0.9405796 0.2599872 0.779046 -0.570452 0.01962339 0.8525345 -0.5222327 0.07983642 0.8905912 -0.447676 0.4704123 0.7144383 -0.5178991 0.2768945 0.8276315 -0.4881741 0.717948 0.5995666 -0.3535875 0.4725486 0.7525254 -0.4586322 0.8721885 0.4841151 -0.07000946 0.6590472 0.6896573 -0.2999359 0.8771935 0.4138615 0.2433241 0.7892697 0.6137577 0.01818901 0.7627797 0.3909116 0.5150609 0.774926 0.5721915 0.2684103 0.6165655 0.4237495 0.6635029 0.6745811 0.5462508 0.4964751 0.3072603 0.5577258 0.7710196 0.5048677 0.4862209 0.713187 0.4643697 0.5926389 0.6581012 -0.06323432 0.01599168 -0.9978637 -0.3485824 0.1885128 -0.9180883 -0.254738 0.4527421 -0.8544572 -0.4107486 -0.6506546 -0.6386609 0.0401318 0.3616138 -0.9314554 0.3441267 0.2701804 -0.8991973 0.2068239 -0.1431013 -0.9678335 -0.2469252 -0.7965942 -0.5517136 0.5058748 -0.2783593 -0.8164312 -0.1077609 -0.8747521 -0.472396 0.8001343 -0.3903318 -0.4554277 0.6800439 0.1637623 -0.7146214 0.169042 -0.9090548 -0.38081 0.8633686 -0.5045015 0.00665301 0.9470809 0.08258306 -0.3100681 0.1032746 -0.9775384 -0.1836909 0.7116001 -0.5917844 0.3786126 0.9906003 0.006225764 0.1364482 0.009186029 -0.999939 -0.003997921 0.5153966 -0.6062502 0.6056093 0.8625141 -0.06485182 0.5018159 -0.1875057 -0.9812311 -0.04464852 0.1029389 -0.3890194 0.9154332 0.366741 -0.531724 0.7633595 0.5413068 0.05423134 0.8390454 -0.1656239 -0.9797357 0.1123691 0.1122471 0.5287637 -0.8413038 -0.1673024 0.6106144 -0.7740409 0.4073305 0.443495 -0.7983337 0.7322916 0.3387554 -0.5907163 0.9523912 0.2078616 -0.2229377 0.9780267 0.109653 0.177221 0.849025 0.0520035 0.5257729 0.6740013 0.07803583 0.73455 0.2725913 0.290231 0.9172949 0.5285196 0.1692251 0.831843 0.6886807 -0.04757833 0.7234718 0.2742698 0.1946775 0.9417096 -0.2338328 -0.9722587 0.004058957 0.5565661 0.5500656 0.6225776 0.2765282 0.2948088 0.9146397 0.2640767 0.2068544 0.9420453 0.05984675 0.2616352 0.9632862 -0.06631672 0.3810236 0.9221473 -0.08886986 0.3392742 0.9364604 -0.3314005 0.4821314 0.8109683 -0.2886441 0.5024873 0.8149358 -0.542436 0.6144902 0.5728019 0.2506485 0.1744743 0.9522081 0.02911466 0.2057558 0.9781488 -0.154271 0.2636189 0.9521775 -0.4236885 0.3778496 0.8232063 -0.6837672 0.464217 0.5629444 -0.5084994 0.8536332 -0.1125217 -0.2990814 0.9537034 -0.03076261 -0.5594043 0.7696158 0.3077486 -0.04153567 0.9720451 -0.2309946 0.1245155 0.9289529 -0.3485824 -0.2592242 0.9583117 -0.1199072 -0.1326334 0.9399701 -0.3143712 -0.4536576 0.8843959 0.1095615 -0.2993561 0.9479659 -0.1081881 -0.3498642 0.9262978 0.1397137 -0.3383587 0.8655354 0.3692129 -0.4844508 0.6435744 0.5925168 -0.2378307 0.8337047 0.4983062 -0.07415997 0.7545396 0.6519975 0.07089447 0.6761681 0.7332987 0.07296973 0.3411054 0.9371624 0.1642811 0.6715598 0.7224647 0.315714 0.6562395 0.6852931 -0.224311 -0.1080965 -0.9684744 -0.511063 -0.09479045 -0.8542741 -0.4359569 -0.4807581 -0.7607654 -0.7604602 -0.0650044 -0.6460769 -0.6904508 -0.4842372 -0.5373394 -0.9724113 0.01763969 -0.2324594 -0.9074984 -0.3901792 -0.1554002 -0.9541001 0.1187475 0.2748191 -0.928251 -0.2364268 0.2870876 -0.7778252 0.1422773 0.6121402 -0.7746208 -0.1322977 0.6183966 -0.5173803 0.1192969 0.847377 -0.5337382 -0.06387519 0.8432264 -0.201941 0.09897148 0.9743645 -0.2323374 -0.01940977 0.9724113 0.005371212 0.087466 0.9961242 0.2341074 0.07959222 0.9689322 0.2197638 0.002990782 0.9755241 -0.1793267 -0.4478591 -0.8759117 -0.3088473 -0.5757317 -0.7570117 -0.6023133 -0.6224555 -0.4997101 -0.8316904 -0.537492 -0.1391644 -0.8408765 -0.4907987 0.2280037 -0.188757 -0.4718161 0.8612323 -0.4210638 -0.5256508 0.7391583 -0.01983702 -0.006591975 0.9997559 0.1969054 -0.3785516 0.9043855 0.007202327 -0.3887753 0.9212623 -0.7368694 -0.6664022 0.1134373 0.1307412 -0.1756645 -0.9757073 -0.6548662 0.1416974 -0.7423017 -0.6322215 0.09839165 -0.7684866 -0.9154332 0.4023255 -0.008484125 -0.9415571 0.3248695 -0.0889309 -0.6537065 0.3827021 0.6527909 -0.7055574 0.2653585 0.657033 -0.2197943 0.1626942 0.9618518 -0.2532731 0.0122379 0.9672842 0.4050722 -0.2251656 0.886105 0.4544816 -0.6177557 0.6416822 0.8899503 -0.434431 0.138615 0.8340404 -0.5353862 0.1330301 0.6764733 -0.5116428 -0.5296792 0.7514268 -0.3434858 -0.5633106 0.06790363 -0.7202674 0.6903592 0.1623279 -0.6821192 0.7129429 0.1922666 -0.4129765 0.8901944 -0.7201453 -0.6026796 0.34373 -0.5285196 -0.7756279 0.3450422 -0.2475051 -0.8069399 0.5362408 0.08011108 -0.4697714 0.8791162 -0.1395306 -0.519303 0.8431044 -0.06537061 -0.7748955 0.6286813 0.1869869 0.07260352 0.9796442 0.1089816 0.575396 0.8105411 -0.02966398 0.5709708 0.8203986 0.06024348 0.03305155 0.9976196 -0.2631306 -0.03637802 0.9640492 -0.3715628 0.5569018 0.74279 -0.4562212 -0.5868709 0.6688742 -0.6625568 -0.1756035 0.7281106 -0.7187719 0.4017761 0.5673696 -0.9328593 0.1269875 0.3370464 -0.886227 -0.3299967 0.3250221 -0.8267769 -0.5365765 -0.1687673 -0.8283029 -0.5456709 -0.1268959 -0.8101749 -0.5838801 0.05117952 -0.8991973 -0.436201 0.03341776 -0.5567492 0.7801446 0.285226 -0.06222718 0.832667 0.5502488 -0.3205359 0.8548235 0.408063 0.04629653 0.8290353 0.5572375 -0.9436933 -0.3230384 0.07095551 -0.9162572 0.3436689 0.2057863 -0.2382274 -0.9710074 -0.01825004 -0.1927854 -0.8448134 -0.4990692 -0.2437818 -0.5870846 -0.7719047 -0.1277505 -0.5073397 -0.8521988 -0.882046 0.01049834 -0.4709922 0.4854884 -0.8709983 -0.07473981 0.9042329 -0.1604968 -0.3956725 0.6691184 -0.7097384 0.220191 0.3132115 -0.8879055 -0.3368938 0.5751518 -0.737083 -0.3547471 0.4053468 0.7177648 -0.5660573 0.6587115 0.4867397 -0.5737175 0.3153477 -0.7558519 -0.573748 -0.6430555 -0.567156 0.5145421 -0.1540574 0.9743034 -0.1641895 -0.5113682 0.8110904 0.2838221 -0.6076846 0.748619 0.2649922 -0.5945311 0.7924742 -0.1358989 -0.4769738 0.7468184 -0.463332 -0.3873104 0.8215888 -0.4182257 -0.2503128 0.7619556 -0.5972473 -0.07052826 0.6919767 -0.7184363 -0.3254188 0.6801965 -0.6567888 -0.03003019 0.9589831 -0.2817164 0.101413 0.8937651 -0.4369029 -0.8371838 0.4896084 0.2436903 -0.8411817 0.4838099 -0.2415235 -0.6707968 0.4121525 -0.6165044 -0.1249732 0.5894955 -0.7980285 -0.4580218 0.338786 -0.821833 -0.2020936 0.2760399 -0.9396344 0.4654378 0.2339854 0.8535722 0.455855 0.1740165 0.8728294 0.8009278 0.1970275 0.5653554 0.5939207 0.1749931 0.7852413 0.6003906 0.2017273 0.7737968 0.9454329 0.2282174 0.2324289 0.7979065 0.195532 0.5701163 0.4531999 0.1478011 0.8790246 0.8130131 0.183111 0.5526597 0.6088748 0.1497543 0.7789545 0.9544054 0.2048707 0.2169865 0.7375409 0.4663228 -0.4884182 0.9229713 0.375164 -0.08551281 0.9499191 0.2912076 -0.1131321 0.2683798 0.8276925 -0.4927824 0.4846339 0.6470534 -0.5885494 0.7929319 0.4436476 -0.4176153 0.9425642 0.2265999 0.2453078 0.1252785 -0.3945433 -0.9102756 0.1067842 -0.09286779 -0.9899289 0.5156102 -0.2925505 -0.8052919 0.4595782 -0.03433328 -0.8874477 0.8421888 -0.1368449 -0.5214698 0.8062075 0.04751729 -0.5896787 0.9869076 -0.02594071 -0.1590625 0.9828791 0.01242101 0.1836909 0.9721977 0.08740496 0.2171087 0.8630024 0.02929776 0.5042878 0.8453322 0.06491285 0.5302286 0.6317636 0.02630692 0.7747124 0.4391003 0.01272618 0.8983429 -0.1401104 -0.5089267 -0.8492996 0.08511608 -0.4913175 -0.8667867 0.4923551 -0.3931699 -0.776513 0.8247932 -0.3078097 -0.4742577 0.9542223 -0.2298959 -0.1912595 0.8409376 -0.340495 0.4205451 0.6625263 -0.3704031 0.6510208 0.4343089 -0.3277078 0.8390149 0.6178472 0.06186097 0.7838374 0.8742943 -0.4202704 -0.2427442 -0.8749657 -0.1334574 -0.4653157 -0.7560656 -0.5394147 -0.3706168 -0.181402 0.01016265 -0.9833369 -0.1677907 0.07806634 -0.982696 0.5645924 0.2208014 -0.7952513 0.6068911 0.3008515 -0.7356182 0.9530931 0.1217383 -0.277047 0.9599903 -0.05819875 0.2738426 0.9684744 0.08890038 0.2326425 0.3165075 -0.6415906 0.6986603 0.4889981 -0.2444838 0.8373059 -0.4308298 -0.5595569 0.7079684 -0.8180181 -0.5317545 0.2191839 -0.9207434 -0.2457045 0.3030183 -0.4281136 -0.3869747 0.8166753 0.3581347 -0.4648579 0.8096866 0.9482406 -0.3169652 -0.01892143 0.8683127 -0.3573412 0.3438826 0.7076632 -0.6387524 0.3019806 0.5493942 -0.6902981 0.470748 0.6384167 -0.422132 0.6435744 0.3430891 0.04626601 0.938139 0.2353282 0.5807367 0.7792901 0.6545915 0.09320348 0.750206 0.5122837 0.6132389 0.6012147 0.9983215 -0.008819818 -0.05697804 0.9278237 0.1001923 0.3592944 0.7837764 0.5644704 0.258919 0.7985168 -0.3338115 -0.5009003 0.8093814 -0.1736808 -0.5609912 0.9306314 -0.1635792 -0.3273415 0.8924223 -0.3440046 -0.2919095 0.9077121 0.4136174 -0.07016205 0.7407147 0.6621601 -0.1131931 0.5657522 0.8169195 0.1117283 0.3839533 0.8550066 0.3485214 0.1439863 0.8386486 0.5252541 0.9333781 0.09607225 -0.3457137 -0.007995843 0.09814751 -0.995117 -0.03009122 -0.8602252 -0.5089877 0.4755089 -0.8402661 -0.2604144 0.04052853 -0.5170751 -0.8549456 -0.5012665 -0.8596149 0.09884941 -0.5685904 -0.7399213 0.359386 -0.990051 0.02227848 0.1387066 -0.6443373 -0.7349773 0.2111575 -0.3524582 -0.666158 0.6572161 -0.5677359 -0.8231757 0.004364132 -0.9655141 0.1732841 -0.1941893 -0.6004211 0.7743766 -0.1994384 0.3330485 -0.6940214 0.6382641 0.9389325 -0.3197424 0.1269875 0.8409681 -0.5391705 0.04489272 0.7549364 0.480575 -0.4461501 0.4675741 0.6304819 -0.6195257 0.7388531 0.4466689 -0.504532 0.4111453 0.5502793 -0.7267068 0.4132511 0.4982452 -0.7621998 0.1532945 0.6171453 -0.7717216 0.1354411 0.5443892 -0.8278146 0.2663655 0.7620167 -0.5901669 0.765038 0.2318186 -0.6007874 0.96704 0.2109744 -0.1424909 0.4107181 0.2356334 -0.8807642 0.09405803 0.2442091 -0.9651173 0.4424878 0.07055878 0.8939787 0.9844356 0.09393596 -0.1483504 0.9260231 0.3642994 -0.09869682 0.6179082 -0.7835627 0.06445509 0.4181646 -0.9071322 0.04663223 0.2858363 -0.8559221 0.4308908 0.3278604 -0.8332164 -0.4451735 0.3085727 -0.8471938 -0.4324473 -0.1387981 -0.6095157 -0.7805109 -0.2304147 -0.7557299 -0.6129643 -0.6366466 -0.5073702 -0.5807062 -0.5637074 -0.6913053 -0.4519486 -0.910947 -0.4051942 -0.07724231 -0.7005524 -0.7112644 -0.05728322 -0.7540513 -0.4541764 0.4744102 -0.6432386 -0.6925566 0.326426 -0.1221656 -0.6253853 0.7706534 -0.2445753 -0.7562487 0.6067996 0.4242073 -0.7665639 0.4820399 0.9271829 -0.3694876 0.06128114 0.9889218 -0.1332133 0.06537061 0.754387 -0.1055635 -0.6478775 0.6565142 -0.3159276 -0.6849269 0.01065093 0.0295419 -0.9994812 -0.08575701 -0.1153294 -0.9895932 -0.6338695 0.17069 -0.754326 -0.9886166 0.111423 -0.1010162 -0.6630756 0.02587968 -0.7480697 0.6511124 -0.2537309 0.7152928 0.7438277 -0.06024348 0.6656392 -0.7611927 0.09097564 0.6420789 -0.9671316 0.2440565 -0.07095551 -0.07535016 -0.04599136 0.9960936 -0.7233802 0.2261116 0.6523331 0.02740561 0.09714037 0.9948729 0.7247536 -0.2063966 0.6573382 0.9661855 -0.2421948 0.08813744 0.7358318 -0.2111575 -0.6433607 -0.01092559 -0.05175936 -0.9985961 -0.6818445 0.06436353 -0.7286294 -0.9927671 0.1164281 -0.02868735 -0.03421121 -0.03793448 0.9986877 -0.7404401 0.1149937 0.6621601 0.06280708 -0.1157262 -0.9912717 -0.6355174 0.1651356 -0.7541734 -0.8783838 0.4714499 -0.07821893 -0.5872372 0.4867092 0.6466872 -0.08075195 0.2466811 0.9656972 0.5355388 -0.1127353 0.8369091 0.9413434 -0.2947173 0.1642811 0.7548753 -0.1962035 -0.6258125 -0.6267586 0.21601 -0.7486495 -0.6270638 0.249855 -0.737785 -0.9174475 0.3947569 -0.04934841 -0.6469008 0.3930174 0.6534624 -0.9053316 0.4235054 -0.03088468 -0.6632588 0.3471175 0.6629841 -0.02694779 0.1150853 0.9929807 0.6112247 -0.1035493 0.7846309 -0.0451979 0.1915646 0.9804071 -0.7102573 0.2662129 0.6516312 0.5599536 -0.2744224 0.7817316 -0.08880883 0.04776144 0.9948729 0.8634297 -0.483932 0.1424298 0.6317942 -0.4050722 -0.6608173 -0.05594038 -0.1467024 -0.987579 -0.6764122 0.1269569 -0.725486 -0.9491562 0.3109226 -0.04910427 0.9747002 -0.2203741 0.03714102 0.7098605 -0.2251656 -0.6673178 0.02621537 -0.0303964 -0.999176 0.6683554 -0.3574328 -0.6523026 -0.01080352 -0.06460767 -0.9978332 0.6056398 -0.1587268 0.7797174 0.9058504 -0.3775445 0.1919004 -0.2614521 -0.5121311 0.8181097 0.2497329 -0.09189122 0.9639272 0.02716147 0.1545152 0.987579 0.6922208 0.5555894 0.4605548 0.5703299 0.604236 0.556383 -0.4818567 -0.1541795 0.8625447 -0.9113438 -0.2224494 0.3462935 -0.7155064 -0.6168401 0.3278909 0.5966674 0.7681204 -0.2322458 0.6195563 0.765801 -0.1721854 0.1567431 0.638905 -0.7531053 0.2908719 0.6480301 -0.7038484 -0.933256 -0.003112852 -0.3591724 -0.8554949 -0.3842585 -0.3470565 -0.5602588 0.1269264 -0.8185064 -0.4628437 0.3804438 -0.8006226 0.6118351 -0.2844935 -0.7380291 0.3382977 0.4418775 -0.8308054 -0.1382793 0.002533018 -0.9903867 0.2737815 -0.7268899 -0.6297799 0.488876 -0.5517441 -0.6756798 0.7535325 -0.3671987 -0.5452437 0.7256386 0.5154576 -0.4557329 0.3050935 -0.8910184 -0.3360698 -0.5493637 -0.6321604 -0.5463729 -0.3903318 -0.9139683 0.1105991 0.1025117 -0.7937559 0.5995056 0.8736839 -0.3439436 -0.3439741 0.9363689 0.3326823 0.1118198 0.5323039 -0.8431044 -0.07593005 0.7678152 -0.248207 0.5905942 0.7601245 -0.6114078 -0.2198858 -0.3392742 -0.718955 0.6066164 0.06179994 -0.695883 0.7154759 0.7004914 -0.5264748 0.4817346 -0.5699637 -0.8157293 0.09845268 0.4548784 -0.4818262 -0.7489242 -0.1049836 -0.6230659 -0.7750481 -0.5551622 -0.6860256 -0.4702292 0.9824213 -0.1728873 -0.06991785 0.8467666 0.3832514 0.3688772 0.4662923 -0.3029878 0.8311106 0.7247841 -0.6374401 0.2613911 -0.05349892 -0.7356792 0.6751915 0.1065401 -0.9853511 -0.1330301 0.3600268 -0.9215369 0.1453902 0.8505814 0.008056879 -0.5257118 0.6642048 0.6790674 -0.312479 -0.03286838 -0.827601 -0.5603199 -0.4357738 -0.8710288 0.2265999 0.5246132 -0.1027863 -0.8450881 0.1896114 0.5435041 -0.8176825 0.08651995 -0.4678792 -0.8795129 -0.4497513 -0.07666248 -0.8898282 -0.6442763 -0.6465041 -0.4085208 0.7531968 -0.04882961 0.6559343 0.5627003 -0.4246345 0.7092196 0.8146001 -0.5668813 0.1225928 0.07821893 0.2962431 0.9518723 -0.111301 0.03549301 0.9931333 0.7406537 -0.4175848 -0.5263222 0.8366649 -0.05566573 -0.544847 0.97763 -0.1813104 0.106357 -0.513657 0.6130558 0.600238 -0.6308176 0.4574725 0.6266976 -0.699942 0.7134922 -0.03125095 -0.721366 0.6880398 -0.07879877 0.2875149 0.02685624 -0.9573656 0.2830897 0.2883388 -0.9147008 -0.3284402 0.6253548 -0.7078158 -0.2741783 0.519425 -0.8093203 -0.2896817 -0.9300516 0.2258675 -0.1821345 -0.9732963 -0.1395611 0.5942259 -0.8033692 0.03772085 -0.701651 -0.6033204 0.3790094 0.330546 -0.6968902 0.636433 -0.1857661 -0.8854945 -0.4257943 0.5204321 -0.6643574 -0.5364239 -0.934019 -0.3149205 0.1683401 -0.3176671 -0.1812189 0.9306619 -0.7573779 0.3340251 0.5610218 -0.7981811 0.5858028 -0.1403546 -0.4215217 -0.6216925 -0.6601154 0.1705985 -0.1919004 -0.9664602 -0.9448836 -0.2334971 -0.2293771 -0.3538926 0.3578906 -0.8640705 -0.7034516 -0.3110752 -0.6390271 -0.9681082 -0.1689504 -0.1849727 -0.8008973 -0.3826716 -0.4604938 -0.6771447 0.3008515 -0.6715293 -0.5163426 -0.5150304 -0.6841639 -0.02887046 -0.1592456 -0.9867855 -0.8987091 0.4303415 -0.08413952 -0.8691061 0.2485122 0.4275949 -0.2237617 -0.8359325 -0.501114 0.4249702 -0.6401258 -0.6400037 -0.1315042 -0.9902341 -0.04599136 0.4980316 -0.8653218 0.05594038 -0.7684255 -0.5195471 0.373516 -0.9218116 -0.3798944 0.07699817 -0.4837794 -0.8356884 0.2598956 0.01080352 -0.6665242 0.7453536 -0.5326396 -0.1296731 0.8363292 -0.2269051 0.147557 -0.9626454 -0.86816 -0.0521866 -0.4934843 0.5265969 0.3951537 -0.7526475 0.9281594 0.2731102 -0.2528153 0.913419 0.3740043 -0.1603747 0.9163488 0.191351 0.3516648 0.4747154 -0.07983642 0.8764916 -0.3984497 -0.2298043 0.8879055 0.5298013 0.2847682 -0.7988525 -0.2101199 0.171575 -0.9624928 -0.2238532 0.1821345 -0.9574267 0.9404584 0.2939543 -0.1705985 0.9466842 0.2779015 -0.1627857 0.8386181 0.09970396 0.5354778 0.3766595 -0.05926692 0.9244362 0.2619099 -0.08511608 0.9613025 0.8491165 0.03527939 0.5269631 0.8413038 -0.0750755 0.5352947 0.9721061 -0.01876884 -0.2336192 0.2817774 -0.1980651 0.9388104 0.181524 -0.1940977 0.9640187 -0.379223 -0.3755913 0.8456069 -0.4915006 -0.291818 0.8204901 -0.9213538 -0.3564257 0.1549425 -0.7506027 -0.1370586 -0.6463515 -0.7505417 -0.1168553 -0.65038 -0.211127 -0.03372293 -0.976867 0.5103 -0.006347835 -0.8599506 -0.1769768 0.04071164 -0.9833369 0.5344707 0.183874 -0.8249153 -0.4568621 -0.09576708 0.8843349 -0.9407941 -0.1391949 0.3089999 -0.8452407 0.009033441 -0.5342876 0.5526902 0.321482 -0.7688528 0.8735313 0.1332743 0.4680929 -0.3942076 -0.205298 0.8957793 -0.953032 -0.1985229 0.2286446 -0.8069399 -0.01947081 -0.5902585 0.9581897 0.1916257 -0.2123478 -0.9680166 -0.05459761 0.2447584 -0.540025 -0.0768761 0.8380993 -0.8323618 0.05111849 -0.5518357 -0.9482712 -0.2757652 0.1571703 -0.2508926 0.1576586 -0.9550768 0.5155187 0.1854915 -0.8365429 0.1015655 -0.02621537 0.9944761 0.9629811 0.1524094 -0.2221747 0.8055971 0.07089447 0.5881832 0.1931821 -0.8044679 0.5616322 -0.2117679 -0.8421583 0.4958648 -0.5641041 -0.8200629 0.0961638 -0.4294565 -0.7623218 -0.4841151 -0.06411939 -0.7018647 -0.7094027 0.3885617 -0.7404096 -0.5484176 0.6162603 -0.7450178 -0.2552263 0.8278451 -0.4319285 -0.35786 0.6209296 -0.7578051 0.2002624 0.8412427 -0.04382455 0.5388348 0.108951 -0.1593371 0.9811701 -0.5051424 -0.1940977 0.840907 -0.953795 -0.1929685 0.2302621 -0.8215278 -0.05667287 -0.5673086 -0.2018189 0.04940944 -0.9781488 0.5676748 0.06765949 -0.8204596 0.9722282 0.05511641 -0.2273629 -0.9616687 -0.07620471 0.2632832 -0.2279427 0.9033173 -0.3633229 -0.3945433 0.9089328 -0.1346781 -0.5025788 0.784814 0.3625293 -0.3986938 0.7383038 0.5439314 -0.1452376 0.6873074 0.7116611 0.02853477 0.6449171 0.7636952 0.1185033 0.626423 0.7703787 -0.5479904 0.5541856 -0.6265145 -0.5283059 -0.5818354 -0.6183356 -0.6585589 0.3379925 -0.6723228 -0.753441 0.5814387 -0.3069247 -0.7110508 -0.5385296 -0.4520096 -0.8882107 0.2793359 -0.3646962 -0.8314463 0.5529954 0.05313271 -0.7994018 -0.5587329 -0.2207708 -0.9842219 0.1662343 -0.06009089 -0.7644581 0.5219886 0.3782464 -0.5995361 -0.7998291 -0.028077 -0.9508347 0.05945003 0.3039033 -0.6010621 0.4717856 0.6450392 -0.5651723 -0.8231757 0.0539872 -0.7819758 -0.0374462 0.6221199 -0.3608509 0.3975646 0.8436232 -0.4926603 -0.808771 0.3211768 -0.5513474 -0.1232337 0.8250984 -0.1529588 0.3532212 0.9229103 -0.4096499 -0.8782922 0.246437 -0.3467818 -0.2017579 0.915952 -6.71407e-4 0.3053377 0.9522386 -0.1731315 -0.2785424 0.94467 -0.3216345 -0.9263588 0.1958678 -0.4654683 0.6740928 -0.5734733 -0.4933927 0.8595843 0.1327555 -0.6764428 0.6795251 -0.2838832 -0.7587512 0.6450697 0.09024322 -0.7094638 0.5897397 0.3857234 -0.5645924 0.533433 0.6298105 -0.3135471 0.4529557 0.8345286 0.01623582 0.3744621 0.9270608 -0.112949 0.4085818 0.9056673 -0.2973113 -0.9199805 0.2553178 -0.2743614 -0.6881008 0.6717429 -0.2452467 -0.9386273 0.2425001 -0.2344737 -0.9405195 0.2457655 -0.1800592 -0.7326884 0.65627 0.008606195 -0.7454757 0.6664632 -0.01049834 -0.9794305 0.2014832 0.1708426 -0.9107028 0.375988 0.169866 -0.7694632 0.6156499 0.3148595 -0.7623524 0.5653554 0.0514847 -0.9631336 0.2639241 0.1581164 -0.9558092 0.2477187 0.4563127 -0.7084872 0.5382855 0.3910337 -0.8967559 0.2070986 0.2948088 -0.8405103 0.4544816 0.2597736 -0.9595019 -0.10889 0.1889401 -0.9762871 0.1054719 0.4030274 -0.8319346 -0.3813288 0.4925993 -0.8682821 -0.05798512 0.2372204 -0.8435011 -0.4818262 0.2754296 -0.8854335 -0.3743095 0.3755608 -0.5670034 -0.7330851 0.3050935 -0.7049471 -0.6402783 0.07663196 -0.7980896 -0.5976135 0.06918543 -0.7393414 -0.6697287 0.2170171 -0.329661 -0.9187902 -0.01272618 -0.6122318 -0.7905515 -0.09945982 -0.7113865 -0.6956694 -0.03833121 -0.3830683 -0.9229103 -0.2041078 -0.3770257 -0.903409 -0.06854456 -0.2782678 -0.9580065 -0.321604 -0.7141332 -0.6217536 -0.0331431 -0.7468795 -0.6641133 -0.2635884 -0.4901883 -0.8307749 -0.03061002 -0.9352397 -0.3526414 -0.4167608 -0.7984253 -0.434492 -0.3713492 -0.5203101 -0.7689749 -0.2187261 -0.6753136 -0.7043062 -0.4582354 -0.8463393 -0.2713706 -0.3690909 -0.835139 -0.4077578 -0.4415113 -0.6089969 -0.6588946 -0.6019471 -0.4999542 -0.6226081 -0.6749169 -0.7119053 -0.1940062 -0.6608783 -0.6237373 -0.4173101 -0.7207251 -0.4886319 -0.4916837 -0.8695944 -0.2831202 -0.4044618 -0.8227485 -0.3673208 -0.4336985 -0.8481094 -0.5192419 -0.1052583 -0.8384045 -0.5005646 -0.2155827 -0.8759422 -0.4607685 0.1426435 -0.9741814 -0.2045655 -0.09540086 -0.6545915 -0.7047945 0.2733848 -0.7879879 -0.5741142 0.2223578 -0.8955657 -0.3257851 0.3029572 -0.7087314 -0.5744804 0.4094363 -0.7012543 -0.4756615 0.5309916 -0.5527513 -0.6148869 0.5624256 -0.5479599 -0.7031465 0.4530778 -0.4777062 -0.8307138 0.2858058 -0.5943174 -0.551622 0.5851925 -0.4503311 -0.5806452 0.6782433 -0.3549302 -0.9163793 0.1850032 -0.3350932 -0.9144871 0.2266914 -0.3244118 -0.6719565 0.6657308 -0.7092807 0.7047334 -0.01532024 -0.7557299 0.6492508 -0.08542126 -0.8050783 -0.5439314 -0.2364574 -0.7447127 0.6144292 -0.2604144 -0.7269814 0.5448775 -0.4177679 -0.5681936 -0.7239296 -0.3911862 -0.5953856 0.4973601 -0.6309397 -0.311716 0.3597827 -0.8793908 -0.4290292 -0.755913 -0.4944609 -0.1576891 0.3299661 -0.930723 -0.1747184 0.3189184 -0.9315165 -0.3358867 -0.8196356 -0.4640339 0.006805598 0.4481643 0.8938872 -0.04812765 0.4650716 0.8839381 -0.4023255 -0.8655965 0.2980132 -0.1839045 0.5346843 0.8247627 -0.3558153 0.5865657 0.7275307 -0.4788354 -0.8013855 0.3584094 -0.3348186 0.5854366 0.7383343 -0.7322001 -0.4470962 0.5137181 -0.4806055 -0.5832087 0.6548357 -0.5392315 0.7131565 0.4478591 -0.6510208 0.7113865 0.264626 -0.8521683 -0.4836878 0.1995605 -0.8648335 -0.3326823 -0.375927 -0.2529984 -0.620777 -0.7419965 -0.4386425 -0.5080416 0.7412336 -0.9334391 -0.2336192 0.2721641 -0.9523301 -0.2989898 -0.06009089 -0.7134312 -0.4217353 -0.5595569 -0.2454603 -0.604358 0.7579272 -0.2729881 -0.8801538 0.388287 -0.1270485 0.4662312 0.875454 0.8616291 0.2310861 -0.4518265 0.9624623 0.159215 -0.2197027 0.4063234 -0.8394116 -0.3608814 0.6442458 0.3251747 -0.6921903 0.7494431 0.2650532 -0.606647 0.1854915 -0.6798303 -0.7094943 0.2445448 0.3219398 -0.9146092 0.4034852 0.3343303 -0.85168 -0.03585922 -0.7049471 -0.7083346 0.07498395 0.3245033 -0.9428999 -0.03558456 -0.7306131 -0.6818445 -0.2145756 -0.4825587 -0.849147 0.3333231 0.2805871 0.9000519 0.1542405 0.352977 0.9228187 0.6016724 0.1618701 0.7821283 0.03088468 -0.917478 0.396527 0.3966491 -0.6767174 0.6202277 0.7627491 0.1482589 0.6294137 0.7146214 0.1149021 0.6899625 0.193762 -0.9142735 0.3556627 0.9854122 0.1293374 0.1104465 0.9131138 0.09320348 0.3968322 0.3097323 -0.9324015 0.1861324 0.2112186 -0.4077578 -0.8883023 -0.1258583 0.3393658 -0.9321879 0.6714683 0.149266 0.7258217 0.6092715 -0.7883847 -0.08499401 0.4776757 -0.582812 -0.6573687 0.01046782 -0.4552446 -0.890286 0.07013154 -0.6741844 0.7351909 0.3678091 -0.7900326 0.4903714 -0.314066 -0.8759728 0.365978 -0.1256752 -0.5907163 0.7969909 0.2799768 -0.7902768 0.5450301 0.00640887 -0.9301126 0.3671682 0.1732535 -0.9321573 0.3178808 0.3783074 -0.812891 0.4427625 0.5385602 -0.8133488 0.2199164 0.443556 -0.8748741 -0.1943724 0.3093051 -0.7441328 -0.5920591 0.5071566 -0.7580187 -0.4100772 0.3488571 -0.6202277 -0.7025361 -0.1430097 -0.7750176 -0.6154973 0.06955164 -0.5755486 -0.8147832 -0.1467024 -0.5486618 -0.8230232 -0.2340464 -0.8101749 -0.5373699 -0.3271279 -0.4647664 -0.8227485 -0.3475143 -0.6935026 -0.6310617 -0.289407 -0.637959 -0.7135838 -0.4208807 -0.523423 -0.7408368 -0.4799951 -0.7267373 -0.4913175 -0.8160344 -0.2972808 -0.4956511 -0.7421491 -0.4896695 -0.457625 -0.9651173 -0.07852411 -0.2496719 -0.9416791 -0.2475051 -0.2278512 -0.8418836 -0.5349285 0.07089447 -0.8787195 -0.4611042 0.1232032 -0.8207343 -0.5168005 0.2434766 -0.411359 -0.4464858 0.7945799 -0.4982452 -0.611774 0.6143682 -0.6595661 -0.2173223 0.7195044 -0.2723777 -0.7168188 0.6418348 -0.3812372 -0.4155095 0.8258004 0.3019806 -0.9242225 0.2335886 0.2847072 -0.9559923 0.0705893 0.366741 -0.8570818 0.3617054 0.0587176 -0.6937468 0.7177954 0.2071291 -0.6799524 0.7033601 0.1235694 -0.6613361 0.7397992 -0.02435374 -0.8040102 -0.5941038 0.1391644 -0.8228706 -0.5508896 0.07797479 -0.9429609 -0.3235877 0.1773735 -0.9745171 -0.1371197 0.1498153 -0.9882809 -0.02844321 0.2197943 -0.8102359 0.5432905 -0.139317 -0.7236244 -0.675924 -0.05172884 -0.6997894 -0.7124241 -0.03344827 -0.8279672 -0.55974 -0.05319374 -0.8495438 -0.5247963 -0.5734733 -0.8070315 0.1406598 -0.7563402 -0.6467788 0.0979644 0.1102328 -0.8175604 0.5651723 -0.08059936 -0.8534501 0.5148473 -0.5572985 -0.6230049 -0.5488449 -0.5029756 -0.5454878 -0.6703696 -0.7758721 -0.6080203 -0.1681874 -0.7963195 -0.5325175 -0.2867825 -0.7209082 -0.6871243 0.09006011 -0.7801446 -0.6246224 0.03460794 -0.1952879 -0.9207739 0.3376568 -0.3956725 -0.8628498 0.3144627 -0.3746452 -0.6556597 -0.6555376 -0.2016358 -0.6195868 -0.7585681 -0.7007355 -0.5910215 -0.3995178 -0.7162389 -0.5258339 -0.4587543 0.5414289 -0.7689444 0.3398846 0.5678274 -0.8178961 0.09262365 0.5441451 -0.6955168 0.4691305 0.07730334 -0.550615 0.8311411 0.2794275 -0.5476546 0.7886288 0.07364112 -0.5348064 0.841731 0.1032136 -0.6581622 -0.7457503 0.305063 -0.6749779 -0.6717734 0.2699057 -0.8805811 -0.3894467 0.4380627 -0.8826258 -0.1704459 0.4473708 -0.8920255 -0.0640583 0.3737907 -0.6573687 0.6543169 -0.06039613 -0.5726798 -0.8175299 0.05908381 -0.5467086 -0.8352306 0.1919919 -0.6971343 -0.6907255 0.2530595 -0.7313761 -0.6332591 -0.6309702 -0.6426283 0.434553 -0.8394421 -0.4492325 0.3057344 0.0351268 -0.671041 0.7405622 -0.1379742 -0.6704001 0.7290261 -0.6219672 -0.4113284 -0.6662496 -0.5114292 -0.3707999 -0.7751702 -0.9197974 -0.3573718 -0.1619922 -0.8885464 -0.2671896 -0.3729057 -0.8381909 -0.4732505 0.2709433 -0.9115879 -0.3823359 0.1509751 -0.2418286 -0.7367168 0.6314585 -0.4206976 -0.6731163 0.6081728 -0.3746147 -0.4872585 -0.7888119 -0.1628468 -0.4581438 -0.8738059 -0.782342 -0.3397626 -0.5219581 -0.769158 -0.2936491 -0.5675528 0.6176641 -0.6759545 0.4018983 0.7063509 -0.6996673 0.1072115 0.5637379 -0.6458938 0.5147557 0.05764943 -0.4989776 0.864681 0.2439039 -0.5296792 0.8123417 -0.03445535 -0.4475845 0.8935514 0.2220526 -0.4893643 -0.8432875 0.425367 -0.5043794 -0.7513962 0.6200751 -0.688406 -0.3762322 0.6248665 -0.6995148 -0.3466902 0.6766259 -0.7269814 -0.1167638 0.4098941 -0.6184271 0.6704306 0.01464885 -0.4170354 -0.9087496 0.1403546 -0.4013184 -0.9050874 0.3556932 -0.4930265 -0.793939 0.507767 -0.5637074 -0.6514176 -0.6225166 -0.3831599 0.6823328 -0.869686 -0.2012085 0.4506974 -0.02691727 -0.5246437 0.8508866 -0.1952269 -0.4732505 0.8590045 -0.6057924 -0.2039857 -0.7690054 -0.4837489 -0.2163762 -0.8480178 -0.9795221 -0.05893123 -0.1924497 -0.9689627 -0.1220435 0.2149418 -0.889645 -0.003082334 -0.456618 -0.9051179 -0.1909543 0.3798028 -0.2651143 -0.5050508 0.8213447 -0.4039735 -0.4366588 0.8037965 -0.3473007 -0.3202307 -0.881344 -0.1466414 -0.3251137 -0.9342021 -0.7674185 -0.07348853 -0.6368908 -0.7445906 -0.07913446 -0.662801 0.5783258 -0.6693015 0.4663839 0.7219154 -0.666036 0.1875667 0.5096591 -0.657857 0.5544603 -0.0527665 -0.4585101 0.887112 0.1832331 -0.5503708 0.814539 -0.1011383 -0.4177984 0.9028596 0.2780236 -0.3791009 -0.8825648 0.4685507 -0.3955199 -0.7899106 0.7468795 -0.5631886 -0.3534654 0.6073794 -0.4830775 -0.630604 0.7556078 -0.5555589 -0.3469344 0.7665944 -0.6296579 -0.1256752 0.3375347 -0.6227607 0.7058321 0.05713063 -0.3234657 -0.9444869 0.1470382 -0.3109836 -0.938963 0.3942381 -0.3877071 -0.8331859 -0.6459853 -0.2134464 0.7328715 -0.3424482 -0.3215125 0.8827784 -0.8683737 -0.07263404 0.4905545 -0.09393596 -0.4416639 0.8922086 -0.2048707 -0.3796502 0.9021577 -0.5195471 -0.09152501 -0.8495132 -0.4082461 -0.1334269 -0.9030427 -0.9584338 0.07275611 -0.2757652 -0.9831538 0.001678466 0.1826533 -0.838435 0.09527873 -0.5365765 -0.9170507 -0.05569624 0.394818 -0.3044527 -0.3565782 0.8832362 -0.3037507 -0.2180852 -0.927427 -0.1497848 -0.2476882 -0.9571825 -0.6765648 0.0433973 -0.7350688 -0.6640523 0.01879936 -0.7474288 -0.2976165 -0.7470321 -0.594409 -0.5443282 0.02996915 -0.8383129 -0.4859462 0.03143405 -0.8733787 -0.5430464 0.06064027 -0.837489 -0.5931883 0.05362099 -0.8032472 -0.7556383 0.1066011 -0.6461989 -0.7880489 0.09585863 -0.6080508 -0.9066439 0.1052888 -0.4085208 -0.9307535 0.08563494 -0.3554491 -0.9979248 0.05285805 0.03653061 -0.9938048 0.02865684 0.107242 -0.9280068 -0.01199376 0.3722953 -0.9219337 -0.02917569 0.3862117 -0.8708152 -0.0527665 0.4887539 -0.8682516 -0.05945003 0.4925077 -0.7151708 -0.1728263 0.6772058 -0.6626484 -0.1853083 0.7256081 -0.3305155 -0.3447981 0.8785364 -0.3217261 -0.317423 0.8920255 -0.3627735 -0.3239845 0.8737144 -0.3522141 -0.3089694 0.8834193 -0.3654897 -0.3179113 0.8748131 -0.2779931 -0.3332011 0.9009064 -0.04965358 -0.4490188 0.8921171 -0.06665241 -0.4315623 0.8995941 -0.1844233 -0.3928953 0.9008759 -0.1760002 -0.3798639 0.9081088 -0.2150334 -0.3814508 0.8990142 -0.1291849 -0.4095584 0.9030732 0.112064 -0.5281228 0.8417005 0.1417585 -0.5270852 0.8378857 0.2629169 -0.5895871 0.7636647 0.2923063 -0.5865352 0.7553026 0.4308908 -0.6343272 0.6418043 0.46498 -0.6328013 0.6190985 0.5116123 -0.642964 0.5699027 0.5421308 -0.6369823 0.5479599 0.7070223 -0.6427503 0.2948698 0.8102359 -0.5835139 -0.05447548 0.7171545 -0.6378979 0.2805261 0.8254036 -0.504532 -0.253212 0.8308359 -0.5522935 -0.06823939 0.7970519 -0.4810022 -0.3650624 0.8562273 -0.4658345 -0.2232734 0.6492508 -0.3945738 -0.6501969 0.8191168 -0.416364 -0.3944823 0.4467299 -0.29606 -0.8442335 0.6549882 -0.3218177 -0.6836451 0.492935 -0.3021942 -0.8158819 0.4700155 -0.230903 -0.8518937 0.3104953 -0.2621235 -0.9136937 0.5207068 -0.2431715 -0.8183538 0.1472213 -0.2015442 -0.9683218 0.291879 -0.1679738 -0.9415876 0.0462355 -0.2044435 -0.977752 0.1505172 -0.1260414 -0.9805292 -0.1333659 -0.1540574 -0.9790033 0.02758872 -0.1192358 -0.9924619 -0.2587359 -0.1266518 -0.9575793 -0.1309549 -0.09060943 -0.9872127 -0.2977996 -0.08468884 -0.9508347 -0.231666 -0.07431256 -0.9699088 -0.2446364 -0.05813771 -0.967864 -0.3835261 -0.01583909 -0.923368 -0.4269844 -0.04077267 -0.9033173 0.06454664 0.9855953 0.1562547 0.05383461 0.8218024 -0.567217 -0.1801813 0.8298898 -0.5280007 0.1185339 0.9828791 0.1408429 -0.4022645 0.8287912 -0.3888974 0.139317 0.9838557 0.112064 -0.5559557 0.8152409 -0.1619006 0.1547288 0.9809259 0.1174047 -0.6090579 0.787347 0.09524822 0.1457259 0.9832453 0.1093173 0.1479232 0.9812311 0.1235389 0.1292154 0.9887081 0.07553327 -0.5625172 0.7547838 0.3373516 0.09576708 0.9935911 0.05960261 -0.4313181 0.7326273 0.5264748 0.06527906 0.9963073 0.05533003 -0.224372 0.7128819 0.664388 -0.3166295 0.4977874 -0.8073977 0.03140354 0.4794763 -0.8769799 -0.0134586 -0.2053591 -0.978576 -0.6161382 0.5129551 -0.5976745 -0.3932005 -0.1650136 -0.9045076 -0.807947 0.5148778 -0.2864772 -0.7148045 -0.09067046 -0.6934111 -0.8693808 0.4909512 0.05569624 -0.9259621 -0.0185247 -0.3770867 -0.8065737 0.4501175 0.3831599 -0.9998779 -0.01092559 -0.00854516 -0.6350597 0.4074831 0.6561785 -0.9325541 -0.08560442 0.3506882 -0.3533738 0.3624988 0.8623616 -0.7370525 -0.2030396 0.6445814 0.02136296 0.3267922 0.9448226 -0.4254586 -0.3111972 0.8497574 -0.06521803 -0.9952086 0.072573 -0.0539872 -0.9971618 0.0521866 -0.06082338 -0.9980163 -0.01492351 -0.1012909 -0.990997 -0.08734393 -0.1283913 -0.9839778 -0.1235694 -0.1172521 -0.9824824 -0.1446272 -0.07251197 -0.9816889 -0.1760002 -0.05169832 -0.9749748 -0.2161931 -0.06347846 -0.9687185 -0.2398144 0.3994262 0.2000793 0.8946501 0.7236244 0.180578 0.6661275 0.920011 0.1627552 0.3564257 0.9828791 0.1819208 0.02862632 0.9246498 0.2203741 -0.3105258 0.7435225 0.2799463 -0.6072573 0.4391919 0.3458358 -0.8290963 0.02572709 0.3928037 -0.9192481 0.04544204 0.6938993 0.7185888 0.01480144 0.2261116 0.9739677 0.2869656 0.7992492 -0.5280007 0.507004 0.7691885 -0.3888974 0.01074248 0.9899594 0.1408429 0.6576129 0.7357097 -0.1619312 -0.009735405 0.9936522 0.112064 0.7066256 0.7011322 0.09524822 -0.02536088 0.9927366 0.1174047 -0.01617479 0.9938658 0.1093478 0.6562395 0.6749169 0.3373516 9.15555e-4 0.9971313 0.07556378 0.5232704 0.6700644 0.5264748 0.03469949 0.9975891 0.05960261 0.3155003 0.6775109 0.664388 0.3788873 0.4521927 -0.8073977 0.3682973 -0.2149113 -0.9045076 0.6778161 0.4281442 -0.597644 0.6968291 -0.1832026 -0.6934111 0.8682516 0.4050111 -0.2864772 0.9156469 -0.1392254 -0.3770562 0.9260231 0.3733024 0.05569624 0.9898984 -0.1413312 -0.00854516 0.8584247 0.3409833 0.3831599 0.9133885 -0.2065798 0.3506882 0.6828212 0.3211157 0.6561785 0.7042452 -0.2975249 0.6445509 0.3976867 0.3132725 0.8623616 0.3812067 -0.3640553 0.8497574 -0.0242927 -0.3709525 0.928312 -0.07657092 -0.9956664 0.0521866 -0.06991785 -0.9974365 -0.01492351 -0.02887046 -0.9957579 -0.08731341 -0.001098632 -0.9923093 -0.1235694 -0.01196324 -0.9894101 -0.1446272 -0.05618453 -0.982757 -0.1760002 -0.07596057 -0.9733878 -0.2161931 -0.3698843 0.2504654 0.8946501 -0.6938383 0.2735069 0.6661275 -0.8908963 0.2814417 0.3564257 -0.9507126 0.3086337 0.02862632 -0.8879666 0.3391827 -0.3104953 -0.700644 0.3746147 -0.6072268 -0.3903012 0.4002197 -0.8290963 -0.01855522 0.9921568 0.1235389 -0.9771721 0.1630604 -0.1359599 -0.8156072 0.1134983 0.5673391 -0.6523026 0.6882229 0.317484 -0.4326914 0.7128514 -0.5518968 -0.5455489 0.2781152 -0.7905515 -0.2378002 0.2280648 0.9441206 0.5059053 0.3528245 0.7871029 0.2691122 0.7924131 0.54738 0.9107334 0.3773308 0.1677907 0.56386 0.8248543 0.04031491 0.863918 0.312357 -0.3949705 0.7077853 0.311716 -0.6339 0.219306 0.3297525 -0.9182104 0.08236944 0.7656789 -0.6378979 -0.2953276 0.7156285 0.6329234 -0.9315165 0.3613697 -0.04071164 -0.9851985 0.1528062 -0.07754749 -0.8848842 0.07663196 0.4594256 -0.5945311 0.2072511 -0.7768792 0.5651723 -0.02356028 0.8246101 0.4709922 0.530198 0.7049776 0.1266823 0.5489059 0.8261971 0.9147313 -0.05130159 0.4007691 0.7645192 0.5099338 0.3942686 0.8445387 0.06204408 -0.5318155 0.6957915 0.002563536 -0.7181921 0.8033082 0.1708121 -0.5704825 0.1896725 0.08072143 -0.978515 0.2171697 0.2775658 -0.9358196 -0.5448775 0.4027222 -0.7354351 -0.7799615 0.2425001 0.5768914 -0.7529527 0.1422467 0.6425062 -0.240028 0.3109226 0.9195837 -0.2035279 0.482223 0.8520463 0.4857326 0.5707266 0.6620075 -0.727958 0.2287362 0.6462905 0.8941008 0.4448072 0.0514847 0.9742424 0.2239448 0.02624589 0.8440199 0.1486556 -0.515244 -0.1792352 0.6821192 0.7089145 0.3011872 0.8514969 0.4291818 0.3704947 0.7713248 0.5174108 -0.5800653 0.1416974 0.802118 -0.2108218 0.6157109 0.759209 0.7772759 0.6286203 -0.02502512 0.8241218 0.5653249 -0.03430277 0.9118015 0.06976526 -0.4045839 0.7936033 0.6055788 0.0585345 0.9717704 0.005920588 -0.2358165 0.3094577 0.84579 0.4345225 -0.1131321 0.6620991 0.7408063 -0.4173406 0.08532971 0.9047212 0.1651661 -0.3847469 -0.9081088 0.3177892 -0.478988 -0.8182623 0.501236 -0.754326 -0.4239326 0.3989685 -0.7112339 -0.5787225 0.8533281 0.09915459 -0.5118259 0.56798 -0.7908872 -0.227607 0.3863949 -0.7079378 0.5911741 0.6210822 -0.7318949 0.2802209 0.1017182 0.01144438 0.9947203 -0.5361797 -0.7437971 0.398999 -0.3491623 -0.7706229 0.5330973 -0.7269509 0.1501205 0.6700644 -0.910947 -0.4060183 0.07254248 -0.9295938 -0.3465682 -0.1252174 -0.9271218 -0.3098544 0.2107303 -0.9754326 -0.1580553 -0.1532639 -0.6088443 -0.06210511 -0.7908262 0.1074251 -0.2046876 -0.9728996 0.4541459 -0.3812677 -0.8052003 0.2285836 -0.5687124 -0.7900937 -0.8402051 -0.5408185 -0.03872793 -0.4871059 -0.5748161 -0.6574603 -0.3912168 -0.7606128 -0.5180517 -0.1339762 -0.9797357 -0.1488388 -0.2219001 -0.9338054 -0.2804956 -0.3430585 -0.8195441 -0.4589374 -0.6749779 -0.7138584 0.1865291 0.6370434 -0.7707755 -0.003662168 0.9986572 -0.0414136 -0.03051847 -0.2507706 0.0414136 0.9671316 0.05932796 -0.7167882 0.6947234 -0.182165 -0.7519761 0.6335032 -0.04635757 -0.9987487 -0.01843315 -0.05911433 0.6432996 0.7632985 0.8079776 0.5778375 0.1151768 0.4835352 0.764153 -0.4268624 0.5688955 0.820307 0.05838185 -0.7486495 0.6571245 -0.08758813 0.2494277 0.8008667 0.5443587 -0.4504532 0.7132176 -0.5369732 0.07763904 0.7685476 -0.6350291 -0.7596668 0.6462905 -0.07171845 0.4182257 0.8711814 -0.2570879 -0.3028962 0.7104709 0.6351512 -0.6513565 0.5869014 0.4808496 0.2923368 0.8467666 -0.44438 0.5485397 0.7477645 -0.3740043 0.610767 0.7875607 0.08160644 0.2875149 0.7674795 0.572924 -0.3868526 0.7529832 -0.5322734 0.1778008 0.7505722 -0.636372 -0.6935636 0.7202063 -0.01522868 -0.7577136 0.5760369 0.306589 -0.223365 0.66863 0.7092502 -0.4340648 0.7136753 0.5497299 0.07632678 0.9941099 0.07663196 -0.4586932 -0.7801752 0.4252754 0.3617359 -0.7774285 0.5145115 0.02108824 -0.9988403 0.04290902 0.5374004 -0.784814 -0.3085727 0.1044648 -0.8806116 -0.4621418 -0.3351542 -0.8026978 0.4932706 -0.7183752 -0.6825464 -0.1341593 -0.4340648 -0.6884365 -0.5809808 0.3080233 -0.8434095 0.4401379 0.06698811 -0.6893521 -0.7212744 -0.5250099 -0.8491775 -0.05661183 -0.5769524 -0.2533036 -0.7764825 -0.9246498 -0.3538316 -0.1406598 0.1199988 -0.3449202 -0.9309061 0.572161 -0.8018434 -0.1721854 0.5588855 0.3255409 0.7626575 0.9939574 -0.07641834 0.07843255 0.5735649 -0.04074215 0.8181097 -0.228492 -0.03610336 0.972869 -0.9752495 0.2189702 -0.0298776 -0.5566881 0.2827845 -0.7810602 0.8926054 0.008636713 -0.4506974 0.2641377 0.1169774 -0.9573351 0.6840419 0.06329536 -0.7266762 -0.5808283 0.7159948 0.3872494 -0.7914365 0.1712088 0.5867488 -0.2119815 0.1928159 0.9580065 -0.9640797 0.2584307 -0.06118959 -0.5124363 0.3666188 -0.776513 0.2815333 0.3090609 -0.9083834 0.7052828 0.2456434 -0.6649678 0.9544969 0.2703024 0.1258888 0.8900113 0.241676 -0.3865475 0.5412763 0.2463148 0.8039186 -0.2523576 -0.1482589 0.9561755 -0.8027589 -0.09085357 0.5892819 -0.7893612 0.03021329 0.6131474 -0.9927061 0.08401745 -0.08639788 -0.5677969 0.1713309 -0.8051088 0.2263252 0.06329536 -0.971984 0.690878 -0.03088468 -0.7222816 0.8876919 -0.06042665 -0.4563738 0.9890744 -0.08984649 0.1167943 0.5554674 -0.115482 0.8234505 0.377514 0.8737144 -0.306711 0.7087008 0.6980804 -0.1017182 0.8290353 0.2203436 -0.5139317 -0.1627552 0.9798578 -0.115482 0.2731102 0.6005432 -0.7514878 0.5779901 0.3668325 0.7289041 0.615772 -0.147557 0.7739494 0.9940794 -0.05764943 0.09189122 -0.004242062 0.4360179 0.8998993 -0.106418 -0.05636763 0.9927061 -0.1865596 0.6366466 0.7482223 -0.6129032 0.100589 0.7836848 -0.7598499 0.2453383 0.6019776 -0.2770776 0.7480392 0.6030153 -0.397473 0.8487503 0.3486739 -0.4432508 0.7624439 -0.4713584 -0.8165838 0.5571154 0.1508835 0.273629 0.5303507 -0.8023622 0.8132572 0.3165685 -0.4882046 0.7216407 0.1782891 -0.6688742 0.2313303 0.32078 -0.918424 -0.5533921 0.3780022 -0.7421796 0.5912046 0.08737444 0.8017517 0.897 0.1463667 0.4170659 0.6614887 0.6558428 0.3636586 0.4382153 0.6199835 0.6508072 0.05423134 0.5569018 0.8287606 0.08395642 0.001373291 0.9964599 -0.7818232 0.06640827 0.6199225 -0.8926359 -0.04782247 0.4482253 -0.7637867 -0.05163729 0.6433607 -0.950499 0.3106479 -0.004577755 -0.9850764 0.1472213 -0.08896142 -0.5336161 0.5628529 -0.6311838 0.9586474 0.2583392 0.1192969 0.8530534 0.207831 -0.4786218 0.5656606 0.1468856 0.8114261 0.5078585 0.3689383 0.7784051 0.9046602 0.3949095 0.1598864 -0.2562334 0.01791435 0.9664297 -0.215247 0.2217475 0.9510178 -0.7477645 0.01940977 0.663625 0.4156621 0.6069827 0.6772973 0.2636494 0.8340404 0.4845729 0.7178869 0.6899014 0.09286779 0.8319346 0.5378582 0.1362041 0.9357585 0.1986755 -0.2912687 -0.2908719 0.3681448 0.8830836 -0.3312784 0.5294046 0.7809687 -0.7553637 -0.01977598 0.6549882 -0.6753441 -0.02874839 0.7369304 -0.5371258 -0.03097623 0.8428907 -0.2813501 0.6151616 0.7364422 0.1851863 0.9030427 0.387524 0.6387219 0.7622303 0.10477 0.9731437 0.2050233 -0.1044954 -0.9091769 -0.4113895 -0.06411939 -0.9322794 -0.2810755 -0.227607 -0.6713767 -0.7375103 0.07290869 -0.4947355 -0.8182318 0.2927336 -0.2959074 -0.8159124 0.4966582 0.1547899 -0.6885281 0.7084567 0.519364 -0.6219062 0.5860469 0.7240517 -0.6158025 0.3106174 0.587695 -0.695761 -0.4128849 0.3719596 -0.620014 -0.690756 0.8616901 0.2039857 -0.4645833 0.3155614 -0.2038941 -0.926725 0.8517106 0.2775048 -0.444441 0.4788659 -0.1217994 -0.8693808 0.1528977 0.06567579 -0.9860531 -0.5704825 0.1618701 -0.8051698 -0.9721366 -0.08517712 -0.2183599 -0.9328288 -0.3409528 0.1163976 -0.837489 -0.5221412 -0.1609851 0.1182592 -0.120426 -0.9856258 -0.5158239 -0.3433333 -0.7848445 -0.410474 -0.6012147 -0.6855678 -0.206061 -0.8717002 -0.4445631 -0.02621537 -0.9764092 -0.2143009 0.7127293 -0.6900845 -0.1255226 -0.3485824 -0.04763936 0.9360332 -0.1112704 -0.7656789 0.6334727 0.9821162 0.173162 0.0736106 0.6508988 0.7412641 0.1636402 0.1269875 -0.9918516 -0.007873773 0.7499313 -0.6583758 0.06399726 -0.230079 0.586108 0.7768487 0.03317362 0.4825282 0.8752403 0.5832393 0.4192938 0.6956694 0.8388012 0.4901578 0.2368847 -0.472396 0.8406628 0.2646565 -0.2116153 0.9634083 -0.1643422 0.3206885 0.8801844 -0.3498337 0.8194525 0.5568712 -0.1355327 0.8429213 0.4886624 0.2249825 -0.4069948 0.6173895 0.6731468 0.006347835 0.469039 0.8831141 0.5853145 0.3746758 0.7190161 -0.5137791 0.8208258 0.2494277 -0.2543718 0.9474776 -0.193762 0.6909696 0.6602985 -0.2941374 0.2882778 0.8888211 -0.356151 0.7271035 0.6864833 3.66222e-4 0.8480789 0.4668111 0.250557 -0.4082156 0.6480606 0.6429029 0.1356853 0.913358 0.3838008 0.1807001 -0.3733634 -0.9098789 0.002838194 -0.9856563 -0.1686758 0.3707389 -0.8550066 0.3626209 0.5660879 -0.6857204 -0.4574725 -0.498001 -0.816187 0.2929167 0.5769829 -0.7521897 -0.318186 0.314005 -0.9087802 0.2747886 -0.4513688 -0.5132908 -0.7298807 -0.3679311 -0.8604084 0.3525193 -0.7470626 -0.5994141 -0.2871792 -0.3818781 -0.6563921 -0.6505936 0.0630207 -0.7102573 -0.7010712 -0.5153051 -0.8230537 -0.2387158 0.1497848 -0.08252203 -0.9852595 -0.5722526 0.01464885 -0.8199103 -0.9516282 -0.2081667 -0.2258064 0.08197271 -0.4982147 -0.863155 0.5995972 -0.2461928 0.7614673 -0.2423169 -0.2991729 0.9228492 0.9941405 -0.08914452 0.06070131 0.3009125 0.420484 -0.8559221 0.8373669 0.1333964 -0.5300455 -0.5684378 0.4718466 -0.6739403 -0.7069613 -0.1316874 0.6948454 -0.8991668 0.006591975 0.4375134 -0.984344 0.1761528 -0.002014219 0.6003601 0.776452 -0.191412 0.9899594 0.01440471 0.1404767 0.8387097 0.2582781 -0.4794152 0.3043611 0.5733208 -0.7606738 -0.4883877 0.7132786 -0.5026704 -0.876278 0.460097 0.1429182 -0.8057497 0.193701 0.5596485 -0.6187933 0.04919582 0.78399 -0.1792352 -0.06988734 0.9812921 0.6000244 -0.1224707 0.790521 0.8060854 0.0216071 -0.5913877 0.9704276 -0.2409436 -0.01428264 0.2401501 0.3544114 -0.9036836 -0.5676443 0.4518876 -0.6881313 -0.9810785 0.1894589 -0.03970456 -0.9080477 -0.0655232 0.4136784 -0.2340769 -0.3719291 0.8982513 -0.7296366 -0.2100284 0.6507462 0.587695 -0.3992736 0.7036653 0.765923 0.5267495 -0.3685415 0.7273476 0.6690878 -0.1524399 0.9039583 0.2928251 0.3115329 0.5899838 0.8071535 0.01886039 0.7004303 0.4775841 0.5303202 0.3512986 0.9266335 0.1337016 0.3754692 0.6305429 0.67922 0.06491285 0.9854427 0.1569262 -0.005584836 0.705771 0.7083957 0.9876095 0.1298562 0.08795434 0.887051 -0.2280648 -0.4013794 0.7578356 0.1225928 -0.6407971 -0.4643086 0.5069735 -0.726188 -0.4153264 0.5077975 -0.7547227 -0.2681356 0.4222846 -0.8658711 -0.08853417 0.3500168 -0.9325236 0.1075778 0.3149205 -0.9429609 0.8123417 -0.3776971 0.4442579 0.7325663 -0.1948301 0.6521806 -0.4021424 -0.7768182 0.4845424 0.5457015 -0.03390604 0.8372753 -0.339671 -0.8472244 0.4083987 0.256447 0.09140288 0.9622181 -0.2387768 -0.9091769 0.3411054 -0.07391583 0.1530198 0.9854427 -0.1033661 -0.9402753 0.3242592 -0.3509018 0.01806694 -0.9362163 0.8169195 -0.5725578 -0.06900233 -0.4041261 -0.7855159 0.4686117 -0.403882 -0.5471969 -0.7330851 -0.2644734 -0.9515976 -0.1564073 -0.7022309 -0.478164 -0.5274514 -0.9056063 -0.2921537 -0.3073519 -0.3771172 -0.6317026 -0.6772668 0.005340695 -0.7073275 -0.7068392 -0.9793695 -0.1563463 -0.1279031 -0.5982849 0.635609 -0.4878384 -0.9550157 0.2849208 -0.08188116 -0.8866237 0.4357128 0.154973 -0.5756402 0.7730949 -0.2663655 -0.6973479 0.5891293 0.408124 -0.4498733 0.8901639 -0.07202368 -0.3829768 0.6910917 0.6129032 -0.2187871 0.9721366 0.08386486 -0.6070742 0.2315134 -0.7601245 -0.8292185 -0.09109771 -0.5514084 0.6139103 0.4256417 -0.6647236 0.6565142 0.4175238 -0.628193 0.476516 0.3628651 -0.8007447 0.3020111 0.3188879 -0.8983734 -0.9259621 -0.2389599 0.2922757 0.1885128 -0.8328196 0.5204321 0.1851863 -0.8236946 0.535905 -0.8554643 -0.0680868 0.5133213 0.1264687 -0.8844264 0.4491714 -0.6803491 0.06393623 0.7300638 0.03024381 -0.9306314 0.3646351 -0.4009217 0.1438642 0.9047212 0.5055086 -0.05023342 -0.8613239 -0.8725547 -0.437727 -0.2167119 0.1343119 -0.9834285 -0.1215552 0.4330271 -0.6140019 -0.6599017 0.8876003 -0.435255 -0.1505783 0.6985077 -0.5899533 -0.4049806 0.3840449 -0.6924345 -0.6107364 0.949736 -0.3103122 0.04071164 0.004669308 0.8598895 0.5104221 -0.05688649 0.8641316 0.4999848 -0.07864618 0.8333995 0.5469833 0.02435374 0.8818323 0.4709006 -0.1367839 0.837489 0.5290079 -0.1065401 0.8683127 0.4843898 -0.1438337 0.8727073 0.4665365 -0.1832331 0.8407239 0.509476 -0.1344645 0.8687704 0.4765465 -0.1677297 0.8325755 0.5278481 -0.15833 0.8813135 0.445143 -0.1991027 0.847438 0.492111 -0.1863155 0.8879055 0.4205451 -0.2472304 0.8594318 0.4474624 -0.1647694 0.8517411 0.4973296 -0.1285134 0.9204993 0.3689383 -0.17893 0.7505112 0.6361278 -0.2657247 0.8412427 0.4708396 -0.241676 0.8316599 0.4998627 -0.1612903 0.8383129 0.5207374 -0.2544328 0.8207343 0.5114902 -0.7994323 0.507889 0.32078 -0.8125858 0.4990081 0.3010346 -0.6543779 -0.1828058 0.7336955 -0.6387524 -0.2726829 0.7194433 -0.7424543 0.369396 0.5587939 -0.5709708 0.3365276 0.7488021 -0.5201575 0.4581744 0.7207251 -0.6143987 0.2106997 0.7603076 -0.479873 0.6997284 0.529191 -0.601825 0.5742668 0.5549486 -0.438612 0.5593127 0.7033906 -0.7701346 0.2949919 0.565508 -0.9198279 0.3293557 0.2130802 -0.6155889 0.07986694 0.78399 -0.5910215 -0.03183078 0.8059939 -0.896939 0.3658864 0.2481765 -0.8366039 0.4519181 0.3095797 -0.5688955 -0.1348002 0.8112735 -0.62743 -0.1269569 0.7682119 -0.344615 0.6736046 0.6537981 -0.3469039 0.5285501 0.7747429 -0.412244 0.4319895 0.802118 -0.4972991 0.3277078 0.8032777 -0.1004059 -0.03469949 0.9943236 -0.04324471 -0.2398754 0.9698172 -0.01184117 -0.4503921 0.8927274 -0.04895168 -0.6031068 0.7961364 -0.07165741 -0.6944792 0.7159032 -0.06738483 -0.7719047 0.6320994 -0.06866663 -0.7509689 0.6566973 -0.3434858 0.8046205 0.4842982 -0.2586749 0.7821283 0.5668508 -0.2188177 0.7672964 0.6027711 -0.2848903 0.6513871 0.703177 -0.8071535 0.4606769 0.3690603 -0.785638 0.09695726 0.6109806 -0.7079989 0.1700796 0.6853542 -0.8535417 0.4183782 0.3104343 -0.8415784 0.1482284 0.5193335 -0.793878 0.3755303 0.4781945 -0.7589954 0.3980224 0.5152135 -0.7222205 0.4835963 0.4944304 -0.8390759 0.3408612 0.4239021 -0.5537584 0.6689963 0.4957122 -0.6744896 0.5493026 0.4932096 -0.6486709 0.5767998 0.4964751 -0.77163 0.3389996 0.5381634 -0.8651998 0.3253273 0.3815119 -0.7517319 0.3097934 0.5821406 -0.8497574 0.2923978 0.438612 -0.7152013 0.3210547 0.620777 -0.7520066 0.5703299 0.3303629 -0.7463607 0.524308 0.4099246 -0.6576739 0.2420117 0.7133091 -0.5226295 0.6901761 0.5004425 -0.6813563 0.4670553 0.5635548 -0.4777978 0.152562 0.8650777 -0.4695273 0.06375312 0.8805811 -0.5320597 -0.1755119 0.8283029 -0.486404 -0.06387519 0.8713645 -0.5908078 -0.2659688 0.7616505 -0.61919 -0.3109531 0.7210303 -0.3921324 0.7720572 0.5001068 -0.3640858 0.7867977 0.4983673 0.8394116 -0.010773 0.5433515 0.9376507 0.03485208 0.3457747 -0.6478164 -0.2999054 0.7002472 -0.3694266 0.01812797 0.929075 -0.8086795 0.3496506 0.4730064 -0.7264931 0.4523453 0.5172277 -0.3492844 0.251442 0.9026154 -0.6727195 0.5764946 0.4637287 -0.5651112 0.6945708 0.4451735 -0.3792535 0.05175936 0.9238258 -0.8874477 0.2472915 0.3888669 -0.8509781 0.3228248 0.4142277 -0.4074831 0.8309274 0.3787347 0.4045228 -0.05322426 0.9129612 -0.8908658 0.04480117 0.4519791 -0.900296 0.1405377 0.4119083 -0.7440108 0.4521927 0.4918668 -0.6966766 -0.078341 0.713065 -0.5431074 -0.2214423 0.8099002 -0.7116916 -0.2553483 0.6544084 -0.028077 -0.375988 0.9261757 0.06662189 -0.3641163 0.9289529 0.8602862 -0.07464826 0.5042878 -0.7978454 -0.155919 0.5822932 -0.8514054 -0.05893123 0.5211646 -0.3487045 -0.3375347 0.8742943 -0.169927 -0.380108 0.9091769 -0.7589343 -0.3664357 0.538255 -0.1868648 -0.5338603 0.8246406 -0.2141789 -0.4948271 0.8421583 -0.7714469 -0.3128758 0.5540025 -0.2775964 -0.3738212 0.8849757 -0.5377666 0.3452559 0.7691275 -0.523423 0.457503 0.7188025 -0.6659749 0.4417859 0.6010316 -0.5940733 0.516831 0.6163519 -0.4892422 0.5553453 0.6724143 -0.4023255 0.6620075 0.632313 -0.4928434 0.6069521 0.6234321 -0.3671377 0.7025056 0.6096377 -0.5962096 0.1819819 0.7819147 -0.7970519 0.1965087 0.5710013 -0.8053224 0.09808647 0.5846431 -0.7406537 0.3393353 0.5798822 -0.7842952 -0.1769768 0.5945311 -0.3761406 -0.1878719 0.9072848 -0.6510514 0.06970423 0.7557909 -0.7995544 -0.01263463 0.6004211 -0.9421674 0.2010559 0.2680441 -0.9692984 0.1856135 0.1611682 -0.8714866 0.2934355 0.3928648 -0.9820246 0.1629688 0.09494304 -0.9997254 3.96741e-4 0.02218693 -0.9956359 0.08130127 0.04565566 -0.252327 0.7876827 0.5619984 -0.2857448 0.7399213 0.6089358 -0.1898862 0.7954649 0.575457 0.4282968 -0.8596149 0.2785424 0.4439527 -0.8340404 0.3274941 0.2660909 -0.8440504 0.4655293 0.2692038 -0.781518 0.5627613 0.4000366 0.2749718 0.8742638 0.2317575 0.3285318 0.9155858 0.2800683 0.1940062 0.9401532 0.3634755 0.4305246 0.8261361 0.1894283 0.4845119 0.8539994 0.2961516 0.5916013 0.7498398 0.1028168 0.7324748 0.6729637 0.1447187 0.6439711 0.7512131 0.4181036 -0.0653401 0.9060335 0.333018 0.01892143 0.9427168 0.3622547 -0.2002014 0.9103061 0.4211249 0.1301004 0.8975799 0.1398358 0.8160955 0.5607166 0.129429 0.8523514 0.5066378 0.07086396 0.8555254 0.5128331 0.5655691 -0.48558 0.6665548 0.3418378 -0.3876766 0.8560442 0.2977996 -0.5570544 0.7752007 0.3657643 -0.259743 0.8937041 -0.0464186 0.5332499 0.8446608 -0.04153567 0.6777856 0.7340312 -0.2306283 0.6843165 0.6917325 -0.1633656 0.7569201 0.6327098 -0.04550307 0.3938719 0.9179968 -0.3255409 0.4316538 0.8412122 -0.3700064 0.3293557 0.8686789 -0.2892239 0.5558642 0.7793207 -0.07660144 0.1662343 0.9830927 -0.4727622 0.2119205 0.8553118 -0.5805231 0.1225013 0.8049562 -0.04535049 0.2871487 0.9567858 -0.212714 -0.3057344 0.9280374 -0.1700796 -0.1530198 0.9734489 -0.6641743 0.07165741 0.7441023 -0.7516099 -0.4583269 0.4742882 -0.3491928 -0.7308878 0.5863826 -0.3111057 -0.6970733 0.6459548 -0.8343455 -0.2128971 0.5084078 -0.8548235 -0.3118991 0.414655 -0.281991 -0.590228 0.7563402 -0.2539445 -0.4617756 0.8498489 -0.7966247 -0.1084933 0.5946226 -0.7337566 -0.007904291 0.679342 0.4535356 -0.7998902 0.3929258 0.4670553 -0.7489852 0.469924 0.2692343 -0.6980499 0.6634419 -0.03118991 0.7538682 0.6562395 -0.01843315 0.7913755 0.6110111 -0.1110873 0.7968688 0.5938292 -0.005951106 0.8281198 0.5604724 0.2159184 0.6977142 0.6830348 0.1622974 0.7651906 0.6229743 0.07901239 0.7796564 0.6211737 0.07196265 0.8215888 0.565447 -0.002410948 -0.8042543 0.5942564 0.5753655 -0.8159734 0.05554366 0.6021302 -0.7931761 0.09088408 0.2037721 -0.8110294 0.5483261 0.6876431 -0.704062 0.177282 0.8032472 -0.0527665 0.5932493 0.352092 0.1811884 0.9182409 0.5768303 0.1952269 0.7931455 0.488937 0.3647878 0.7923521 0.298349 0.3324992 0.8946501 0.2488479 0.4780725 0.8423109 0.3899655 0.5229042 0.7579272 0.2038636 0.6253548 0.7532274 0.8569293 -0.2242195 0.4640644 0.6352123 -0.1405682 0.7594226 0.5764641 -0.320658 0.7515488 0.6391186 0.03613388 0.7682424 0.1565905 0.849086 0.5044404 0.1701406 0.8511307 0.4965667 0.1821345 0.8145695 0.550676 0.3411969 -0.6665242 0.662801 0.7883542 -0.5525681 0.270394 0.8480789 -0.3839228 0.3651235 0.4768517 -0.4812158 0.7355266 0.2775048 0.6537981 0.7039094 -0.0293588 -0.3132725 0.9491867 -0.3014618 -0.5577868 0.773278 -0.1810358 -0.4723655 0.8625752 0.2051149 0.7537156 0.6243477 0.172338 0.7504807 0.63802 0.1620838 0.8146916 0.5567492 -0.1195105 0.002624571 0.9927976 0.1410565 -0.8564104 0.4965667 -0.860561 0.1758781 0.4779809 -0.9509873 0.0754112 0.2998138 -0.9145482 0.1458784 0.3771783 -0.9696035 -0.1832331 0.1619922 -0.9696035 -0.01739555 0.2439954 -0.973632 -0.1205176 0.1935788 0.2120426 -0.5197607 0.8275704 0.6550798 -0.7307047 0.1921445 0.6790674 -0.6989044 0.2244331 0.3195898 -0.5029451 0.8030335 0.7605823 -0.5936766 0.2626728 0.6419569 0.1033051 0.7597278 0.5147557 0.1699575 0.8402966 0.5403608 0.04467904 0.8402356 0.6147649 0.2727744 0.7399823 0.4578081 0.3274941 0.8265023 0.575457 0.4316843 0.6945708 0.398999 0.4730674 0.7854549 0.5039827 0.605945 0.6154363 0.9588305 -0.08447521 0.2710349 0.6097598 -0.02133244 0.7922605 0.6240425 -0.06411939 0.7787103 0.6930449 -0.01742607 0.7206336 0.2400891 0.8639485 0.4426099 0.1910153 0.8587298 0.4754784 0.2192755 0.8279977 0.5160375 0.4460585 -0.3803827 0.8101139 0.8963286 -0.3656117 0.2507706 0.9582812 -0.1615039 0.235786 0.6030153 -0.1840266 0.7761772 0.3307901 0.6262398 0.7059541 -0.01089507 0.03738516 0.9992371 -0.007049739 0.07715076 0.9969787 -0.04049801 0.05896174 0.9974365 -0.01089507 0.06094545 0.9980773 -0.2026124 -0.06942957 0.9767754 -0.1074251 -0.004211544 0.9942015 0.264748 0.7584155 0.5955382 0.3932005 0.7540819 0.526017 0.2986236 0.8299509 0.4711447 0.6982024 -0.7107761 0.08526867 0.7307657 -0.6747337 0.1033356 0.5453658 -0.5859859 0.5993225 0.8066958 -0.5756402 0.1336405 0.7611927 0.1502426 0.6308481 0.6953337 0.1638538 0.6997284 0.6729027 0.03094571 0.7390667 0.7449568 0.2937712 0.5988953 0.6805017 0.3137913 0.6620991 0.6846218 0.4419385 0.5796076 0.5470443 0.6110111 0.572161 0.637318 0.461684 0.6169317 0.7359234 -0.1094698 0.6681112 0.6740928 -0.07855463 0.7344279 0.6642048 -0.2006286 0.7200843 0.7498398 0.03320413 0.6607562 0.2117374 0.8353832 0.5072177 0.2232124 0.8508256 0.4756615 0.2985016 0.8164617 0.4942167 0.6233711 -0.474807 0.6212043 0.8726768 -0.4430983 0.2050843 0.7337871 -0.2373424 0.6365551 0.6830958 -0.3497116 0.6411023 0.274575 -0.04828023 0.960326 0.2708212 -0.1593981 0.9493088 0.2765892 -0.08520764 0.9571825 0.5583972 -0.6710715 0.4876552 0.2031617 -0.3330485 0.9207434 0.2403942 -0.2403027 0.9404278 0.413129 0.7432783 0.5261086 0.5733513 0.5982238 0.5597705 0.4249397 0.731956 0.532548 0.2977386 0.802179 0.5175329 0.3441572 -0.4242988 0.83755 -0.9540086 0.147618 0.2609027 0.5179601 -0.3640248 0.7740409 0.7431562 0.174749 0.6458327 0.7576525 0.112125 0.6429334 0.2046876 0.02691727 0.9784234 0.6806238 0.4681844 0.5634632 0.2275765 0.2161015 0.9494614 0.5913267 0.6195563 0.5161901 0.7508774 0.01498454 0.6602374 0.7305521 -0.02758872 0.6822718 -0.7941222 -0.1070894 0.5981933 0.4614093 0.7753838 0.4310434 0.7199927 -0.07113862 0.6902981 0.6911527 -0.1630299 0.704062 -0.9681692 0.08188116 0.2364574 0.3107089 0.8036744 0.5074923 0.6992706 0.3097628 0.6442152 0.3546861 -0.1571703 0.921659 0.2316049 -0.2761315 0.9327678 -0.6422315 -0.2673422 0.7183447 -0.9724418 0.2152776 0.08923608 -0.356212 -0.3567613 0.8635823 0.6313669 -0.270394 0.7267678 -0.09308141 -0.391705 0.9153417 0.07889032 -0.3652455 0.9275491 0.1824702 0.7216407 0.667745 0.2074038 0.8973968 0.3893857 0.2446974 -8.24e-4 0.969573 0.2123783 0.07040619 0.9746391 -0.4197821 0.1960204 0.886166 0.05798512 -0.2345957 0.970336 -0.1454512 0.4622638 0.8747215 0.1668142 -0.2257759 0.9597766 0.234962 -0.07989746 0.968688 0.04535049 0.7976623 0.6013367 0.03466898 0.9030122 0.4281442 0.2365489 0.09360027 0.9670705 0.9707022 0.1283608 0.2030091 -0.9984741 -0.04092532 0.03689682 -0.739433 -0.08047729 -0.6683554 -0.7542955 -0.1952269 -0.6267892 -0.998413 0.05594038 -0.004638791 -0.7228309 0.03064054 -0.6902981 -0.7195349 0.1313822 -0.6818751 -0.9419843 0.2339549 -0.2406079 -0.9913633 0.1308023 -0.007263362 -0.8634602 0.46498 -0.1953184 -0.9750359 0.2166509 -0.04837179 -0.6637471 0.7379071 -0.122013 -0.806238 0.4901273 -0.3312479 -0.3105258 0.9505295 0.00213629 -0.6655477 0.7416303 -0.08355963 -0.05563521 0.9895627 0.1328165 -0.222663 0.9748528 -0.004821896 0.06033504 0.9774773 0.2021546 -0.004058957 0.9861141 0.1658986 -0.8265328 -0.02148503 0.5624561 -0.7927793 -0.0921964 0.6024659 -0.8403272 0.04272586 0.5403608 -0.8440809 0.07650989 0.5306864 -0.8543962 -0.06695759 0.5152745 -0.7918027 0.1202734 0.5988037 -0.7247231 0.4513993 -0.5205543 -0.8109378 -0.5401777 0.2248298 -0.4201483 0.7658925 0.4866787 -0.02356028 0.9955748 0.0909146 -0.1556138 0.9607532 0.2295907 -0.6729027 0.7116916 0.2015442 0.06247138 0.9616077 0.2671285 0.04593032 0.9415876 0.3335978 0.3813288 0.1494796 0.9122288 0.980102 0.188818 0.06082338 -0.9837031 -0.1499679 0.099002 -0.7890561 -0.2896206 -0.541734 -0.7275002 -0.1422162 0.6711631 0.2598346 -0.1275979 -0.957152 0.1900998 -0.1593981 -0.9687185 0.9320048 0.02276676 -0.3617054 0.8988922 0.04318368 -0.4360179 0.7596668 0.1945555 0.6205024 0.961333 0.1065401 -0.2538225 0.976043 0.1985229 -0.08874779 -0.9383831 -0.2293161 0.2584918 -0.8893704 -0.2538835 -0.3801996 -0.9674367 -0.1453596 -0.2070986 -0.4746849 -3.66222e-4 0.8801233 0.5461898 0.167394 0.8207343 -0.1871089 -0.2849819 -0.9400616 0.765038 -0.09726244 -0.6365551 0.02899253 -0.1842402 -0.9824213 0.8501541 0.02667313 -0.5258034 0.5064547 -0.7125767 -0.4854884 -0.2161321 -0.85815 -0.4656514 -0.01388591 -0.8377636 -0.5458235 0.9635304 -0.209479 0.1663259 0.573046 -0.6741539 -0.4659261 0.354564 0.4767907 0.8042848 0.216956 0.5402387 0.8130131 -0.8697775 0.1650746 0.4649495 -0.8527177 0.07391583 0.5170751 -0.3565782 0.4984283 0.7901548 -0.8666036 -0.4988555 -0.01080352 -0.8454238 -0.5093234 -0.1607105 0.5998718 -0.7250893 -0.3381451 0.1095615 -0.847499 -0.519303 0.1523789 -0.9179357 -0.3662831 0.887875 -0.2953886 0.3526719 0.5579394 -0.8250374 -0.08932763 0.1647694 0.6118656 0.7735832 0.2183599 0.5121616 0.8306528 -0.8710593 0.4910733 0.007080256 -0.9083834 0.3235572 0.2647175 -0.4431593 0.6144902 0.6526383 -0.8369091 -0.4308603 -0.3374737 -0.7712028 -0.2981353 -0.5624256 0.5721915 -0.8200934 0.001434326 0.1961424 -0.9339274 -0.2987152 0.3324686 -0.8676412 -0.3696097 0.7678457 -0.4071779 0.4945524 0.7059847 -0.7056795 -0.05972468 0.1112704 0.6079897 0.7860957 0.1702017 0.6291391 0.758385 -0.5655996 0.8243049 0.02380442 -0.7382122 0.6405225 -0.2114017 -0.4965056 0.8383129 0.2250435 -0.6679891 -0.2937712 -0.6837062 0.03231906 -0.8344981 -0.5500351 0.842494 -0.5101169 -0.1729789 0.5385602 -0.6987518 -0.4707785 0.6738487 -0.4091922 -0.6151921 0.8984344 -0.12125 0.4219794 0.9351482 -0.1957152 -0.2952361 -0.1831415 0.3426618 0.9214149 -0.006225764 0.5341655 0.8453322 -0.8724632 0.3018891 0.3841975 -0.9872127 0.1299783 -0.09198278 -0.7755364 0.6294443 0.04794454 -0.542375 -0.3507187 -0.76339 -0.8193915 0.5538194 -0.1477401 -0.9311503 0.3394269 -0.1329996 0.1491745 -0.7494431 -0.6450087 -0.3351848 -0.4429762 -0.8314768 0.9283425 0.06906336 0.3651845 -0.9285562 -0.06274604 0.3657948 0.8435011 -0.3138218 0.4358654 -0.5634632 0.8097782 0.1635487 -0.5553453 -0.3113803 -0.7710807 -0.7127293 0.6835841 -0.1570482 0.7796564 -0.4006165 0.4812158 -0.5071261 0.7451705 0.4330271 0.9530625 -0.2627033 0.1503036 -0.3243202 0.5555589 0.7655873 0.3057954 -0.02853477 -0.9516587 0.2816248 -0.09653002 -0.9546495 0.05203402 0.958678 0.2796411 0.2191839 0.8331859 -0.5076754 0.1495712 0.0730918 -0.9860225 -0.1885433 -0.5863521 -0.7877743 -0.5377972 -0.7694022 -0.3446455 -0.9577624 -0.2356639 0.1646168 -0.6178472 -0.1556749 0.7707145 -0.7333598 0.6316111 0.2514114 0.9605396 -0.00991851 -0.2779015 0.9501633 -0.003753721 -0.3116245 -0.5233314 -0.390759 -0.7572253 0.235786 0.2979217 0.9249855 0.6961577 -0.7177038 0.01480144 -0.4913785 -0.3486739 -0.7980591 -0.7424238 0.6696677 -0.01776176 -0.2285531 -0.3209326 -0.9190955 -0.9085055 0.4177069 0.01159703 -0.8488724 0.5281228 0.02197331 0.7117527 -0.7023225 -0.009216547 0.6910001 -0.7223426 -0.02636796 0.001159667 -0.1140171 0.9934691 -0.2898038 -0.2359691 -0.9275186 0.004242062 -0.005035519 0.9999695 -0.9184545 0.394818 -0.02307194 -0.001800537 -0.066805 0.9977416 -0.2943205 -0.4422742 -0.8471938 0.6250191 -0.7794733 -0.04144412 0.3287454 0.01693773 -0.9442427 0.9473861 -0.08441418 -0.3087252 0.3559069 0.001861572 -0.9345073 0.9302347 -0.1444441 -0.33726 -0.2822352 -0.1510361 0.9473556 -0.3379925 -0.4913785 0.8026673 -0.6165044 -0.7525559 0.2314218 -0.4920805 0.2420117 0.8362072 -0.7317118 0.6363415 0.2442396 -0.725425 0.4466384 -0.5236366 -0.7350078 0.6260262 -0.2604144 -0.8440809 0.1069063 -0.5253762 -0.3520005 -0.08478039 0.9321268 -0.2755821 -0.6950896 0.6639607 -0.1276589 -0.9915769 -0.0203253 -0.4638508 0.5508286 0.6938078 -0.4942473 0.8569293 0.1461226 -0.4513382 0.3598437 -0.8165532 -0.5081942 0.7715384 -0.3826106 -0.1321146 -0.6525163 -0.7461165 -0.591876 -0.6504715 0.4759361 -0.2973418 -0.9379864 -0.1779534 -0.4387951 0.700766 0.5624256 -0.2081972 0.9767144 0.0516678 0.04379403 0.1107822 -0.9928587 -0.06579786 0.8547624 -0.5148168 -0.03118991 -0.6758934 -0.7362896 -0.610828 0.07626575 0.7880489 -0.9131749 0.2548601 -0.3179724 -0.9346904 0.1707816 -0.3116245 -0.9499496 -0.04907375 0.3084201 -0.8474685 0.4555193 -0.2724692 -0.6566362 0.7360454 -0.1643422 0.06787312 0.9895932 0.1267433 -0.0720542 0.9959105 0.05435341 -0.07742542 0.9915464 0.103824 -0.3441877 0.9388715 -0.006805598 -0.9532151 0.1599475 -0.2564775 -0.9105197 -0.249794 0.3294168 -0.3361309 0.938139 -0.08288824 -0.6239509 0.7387616 -0.2546769 -0.8108463 0.4530778 -0.3704336 -0.877987 0.2533951 -0.4060488 -0.8835414 0.1764275 -0.4337901 -0.7849361 0.5124973 -0.3480941 -0.8167058 0.3849605 -0.4297922 -0.9559618 -0.07217627 0.2843714 -0.8594012 0.01443523 0.511063 -0.7020783 0.3580431 0.6155278 -0.6039918 0.7469405 -0.277871 -0.5586718 0.48558 0.6723533 -0.2680441 0.9418012 -0.2027649 -0.3441267 0.9140294 -0.2146061 -0.4637287 0.6083865 0.6440016 -0.3298441 0.9139989 -0.2361217 -0.4311655 0.5905637 0.6821192 -0.515183 0.5565966 0.6517228 -0.8414258 0.3747063 -0.3892636 -0.6534929 0.6755883 -0.3412579 -0.6795557 0.425428 0.597644 -0.8644368 0.1870174 -0.466628 -0.8621174 0.1726432 -0.4763634 -0.9696646 0.1408123 -0.1996521 -0.3770257 0.5182043 -0.7676321 -0.3460494 0.478988 -0.8066958 -0.3475143 0.6581012 -0.6678976 -0.4612873 0.8586993 -0.2232124 -0.1741081 0.8182318 -0.5478377 -0.1669057 0.7775811 -0.6061891 -0.4376965 0.8500931 -0.2928251 -0.6594135 0.3830378 -0.6468398 -0.4463637 0.6161992 -0.6488235 -0.8234505 0.1406598 -0.5496383 -0.7456282 0.1742302 -0.6431471 -0.8256478 0.1535386 -0.5428327 -0.8169805 0.2533646 -0.5179907 -0.750145 0.4612568 -0.4737998 -0.5685293 0.7448042 -0.3492538 -0.2993561 0.9416486 -0.1537827 -0.043733 0.9988403 0.01864677 -0.9023103 -0.2298959 0.3646046 -0.9758294 0.1310769 -0.1747184 -0.8965117 0.107303 0.4297922 -0.8660848 -0.06393623 0.4957732 -0.8714866 0.1694692 -0.4601581 -0.7457808 0.1882992 -0.638966 -0.8808863 0.2053896 -0.4263741 -0.736961 0.2269967 -0.6366466 -0.5956908 -0.2232734 0.7715079 -0.6053041 -0.08236944 0.7916806 -0.5255593 -0.4553056 0.7186499 -0.5922117 -0.5201269 0.6154057 -0.538194 -0.2977996 0.7884457 -0.43202 -0.09567552 0.8967559 -0.3588366 0.005188107 0.9333781 -0.3213294 0.08221685 0.9433577 -0.2958159 0.1181066 0.9479049 -0.406476 0.6081728 0.6817835 -0.2857143 0.12949 0.9494919 -0.3213599 0.1264382 0.9384441 -0.4117863 0.0914945 0.9066439 -0.4715415 0.05349892 0.8801844 -0.4190496 -0.5442366 0.7267373 -0.5793024 0.05432289 0.8132877 -0.4494156 -0.2271187 0.8639485 -0.26957 0.7629933 -0.5874813 -0.8293405 0.2264473 0.5107578 -0.2601703 0.7276223 -0.6346935 -0.1183202 0.8253121 -0.5520799 -0.6336558 0.04849386 0.7720572 -0.04119998 -0.3606677 0.9317606 -0.1452376 -0.3635975 0.9201636 -0.1109347 -0.4510636 0.8855556 -0.2153996 -0.2808008 0.9352703 -0.3753777 -0.1102023 0.9202551 -0.2157658 -0.2195501 0.9514145 -0.4143193 0.1744438 0.8932462 0.07672351 -0.5077365 0.8580584 0.06775104 -0.4585711 0.8860439 -0.4018983 0.02880942 0.9151891 -0.4296396 0.1030305 0.8970611 -0.4184088 -0.1395611 0.8974578 0.1284829 -0.4330881 0.8921171 -0.4782861 -0.3910947 0.7862789 0.0592364 -0.5728629 0.8174688 -0.4590594 -0.4398328 0.7718436 -0.00741595 -0.6885586 0.7250893 -0.4310129 -0.4329355 0.7916806 -0.02951139 -0.6674093 0.7440718 0.01446574 -0.6217536 0.7830439 -0.4161809 -0.253853 0.873104 -0.4185308 -0.2545854 0.8717612 0.1757866 -0.5709097 0.8019349 -0.380047 -0.1927854 0.9046297 0.07116913 -0.5808283 0.8108768 -0.3317667 -0.1631214 0.929136 0.04016232 -0.5155187 0.8559221 -0.3258767 -0.2278206 0.9175085 0.05014187 -0.5186926 0.8534806 -0.3513596 -0.1854609 0.9176611 -0.02148503 -0.5323039 0.8462477 -0.3658559 -0.1501815 0.9184545 -0.06350898 -0.4879605 0.87051 -0.01022368 -0.4082156 0.9128086 -0.1284524 -0.3232215 0.9375286 -0.6453749 0.005462765 0.7638173 -0.01016265 -0.4639424 0.8857998 0.01367229 -0.436079 0.8997772 -0.557329 0.01516765 0.830134 0.03476053 -0.3954588 0.9178137 -0.3475448 0.01226842 0.9375591 -0.4236274 0.01004058 0.9057589 -0.3729667 0.01480144 0.9277017 0.01110869 -0.3856319 0.9225745 -0.4516129 0.04388558 0.89111 -0.08429211 -0.3828242 0.91995 -0.5678274 0.1326639 0.8123722 -0.2199469 -0.3199561 0.9215064 -0.2363963 -0.2180547 0.9468368 -0.4662007 -0.02804648 0.8842128 0.03561508 -0.5764946 0.8162786 0.1481368 -0.6713462 0.7261574 0.2721641 -0.6850185 0.6757408 0.4013184 -0.6769921 0.6169317 0.524308 -0.6623737 0.5351116 0.6090579 -0.648732 0.4562212 0.6509598 -0.6352733 0.4154484 0.2608722 -0.6311533 0.73043 0.2483596 -0.7265542 0.640614 0.3291726 -0.7345195 0.5933714 0.4337596 -0.7046114 0.5615406 0.4755089 -0.717185 0.5093845 0.5687124 -0.6954253 0.4391919 0.6651815 -0.6310007 0.3991516 -0.1107822 -0.3657948 0.92407 -0.04461801 -0.4670248 0.8831141 -0.1707205 -0.6213569 0.7646718 -0.1325418 -0.503769 0.8536027 -0.1586962 -0.6527909 0.7407147 -0.1788079 -0.623188 0.7613148 -0.08188116 -0.4719687 0.8777734 0.5668203 -0.6883144 0.4526506 0.4872585 -0.7614673 0.4274423 0.4276864 -0.802057 0.4168218 0.07998901 -0.08301031 -0.9933165 -0.002502501 -0.07431256 -0.9972229 0.009399652 0.1654713 -0.9861446 -0.2130191 -0.03445535 -0.9764092 -0.4556413 0.03286838 -0.889523 -0.4653157 0.2122867 -0.8592792 -0.6148869 0.2360911 -0.7524033 -0.5909605 0.09607225 -0.8009278 -0.7412336 0.1362041 -0.6572161 0.02490305 0.5285501 -0.8485061 0.1156957 0.5287637 -0.8408154 0.09872734 0.1619617 -0.981811 -0.379162 0.5112461 -0.7712333 -0.1586047 0.5269631 -0.8349254 -0.737846 0.2500687 -0.6268807 -0.6693015 0.4712973 -0.5743584 -0.5429548 0.4872585 -0.6839198 0.03881949 0.8025147 -0.5953246 0.1152989 0.8001343 -0.58858 -0.2021546 0.7923521 -0.5755486 -0.0743736 0.8015381 -0.5932493 -0.4896084 0.7574999 -0.4317759 -0.3560594 0.7749871 -0.5220801 0.04275637 0.9981384 -0.0428785 0.08322393 0.9946593 -0.06064027 0.06942957 0.9956664 -0.0615558 0.06320381 0.9965209 -0.05389565 0.05862605 0.9485153 -0.3111972 0.1021454 0.9471725 -0.3039643 -0.0295419 0.9492172 -0.3131504 0.01141387 0.9522691 -0.305002 -0.145909 0.947203 -0.2854701 -0.2470778 0.9456465 -0.2113102 -0.5538499 0.06271553 -0.8302255 -0.7309488 0.0878933 -0.6767174 -0.2150334 -0.01641893 -0.9764397 -0.426252 0.0374462 -0.9037752 0.07913446 -0.08456677 -0.9932554 0.01696825 -0.07113862 -0.9973144 0.3490707 -0.120426 -0.9293192 -0.1645863 0.1726127 -0.9711295 -0.01181066 0.3716849 -0.928251 0.0934782 0.1185949 -0.988525 0.09653002 0.3895993 -0.915891 0.08297979 0.407239 -0.9095126 0.0635395 0.1440473 -0.987518 0.09823906 0.4300363 -0.8974273 0.453383 0.1799066 -0.8729515 0.03430277 0.4281747 -0.9030122 0.2431104 -0.4156621 -0.8764001 0.1967223 -0.5576342 -0.8064211 -0.4951323 -0.2495498 -0.8321787 0.05981624 0.473281 -0.878872 -0.3755608 -0.129429 -0.9176916 -0.006744563 0.9999085 -0.01089507 -0.41966 0.02502512 -0.9073153 -0.7506332 0.253975 -0.6099124 -0.6479385 0.3823359 -0.658742 -0.2924588 0.2365184 -0.9265419 -0.4517045 0.6431165 -0.618305 -0.112125 0.4314707 -0.8951079 -0.3806879 0.7214881 -0.5783258 -0.01532024 0.5277566 -0.8492386 -0.3302713 0.7625965 -0.5561388 -0.3116855 0.75515 -0.5766777 -0.1486556 0.4596393 -0.8755455 0.00854516 0.5699942 -0.8215888 -0.3916135 0.1842097 -0.9014863 -0.5426496 0.5405439 -0.6429029 -0.6771142 0.22425 -0.7008271 -0.1110873 0.1503341 -0.9823603 -0.413007 0.1766106 -0.8933988 -0.1574144 -0.4217963 -0.89288 -0.6179082 -0.09823906 -0.7800531 -0.5561388 0.1206091 -0.8222602 -0.04953151 -0.2355418 -0.9705802 -0.2488479 0.4116642 -0.8766747 0.3261513 0.3070772 -0.8940398 0.3118381 0.2354503 -0.9204688 -0.04129153 0.5621815 -0.825953 0.2215949 0.3869442 -0.8950468 -0.04312264 0.5915098 -0.8051088 0.06329536 0.3418684 -0.9375897 -0.1534165 0.6113468 -0.7763298 -0.2987457 0.4590289 -0.8366649 -0.8797265 0.2545549 -0.4015625 -0.7795648 0.5595569 -0.2811976 -0.6116214 0.7747734 -0.160039 -0.5540941 0.8231452 -0.1239967 -0.6610309 0.7304605 -0.1715445 -0.6133305 0.7768487 -0.1424604 -0.7942748 0.5658437 -0.2211676 -0.8868679 0.4018067 -0.2279732 -0.6711326 0.1950438 -0.7152013 -0.6373485 0.5145115 -0.5735954 -0.492233 0.7104404 -0.5029451 -0.4293344 0.741905 -0.5149694 -0.4051332 0.7632374 -0.5032503 -0.7705008 0.5063326 -0.3871273 -0.5402692 0.6802271 -0.4953154 -0.8985565 0.3826106 -0.2149113 -0.2110965 0.1841487 -0.9599292 -0.3525193 0.1952269 -0.9151891 -0.4227119 0.4362926 -0.7943053 -0.4311349 0.5359355 -0.7258523 -0.4394055 0.5685904 -0.6953948 -0.5602283 0.4697714 -0.6822108 -0.4418775 0.5757317 -0.6879177 -0.783105 0.2604144 -0.5647145 -0.8855251 0.1617481 -0.4354686 0.08398693 0.995056 -0.05240023 -0.05078279 0.4823756 -0.8744774 0.1584826 0.06164735 -0.9854122 0.4202399 0.07565534 -0.9042329 0.9840388 0.1054719 -0.1432539 0.9956969 0.06952112 -0.06082338 0.863918 -0.1816766 0.4696798 0.9443953 0.3093661 -0.1112704 0.949675 0.3113498 -0.03353983 0.7826472 0.6212348 -0.03836172 0.213477 0.9683523 0.1292764 0.2174444 0.972808 0.07965326 0.7825862 0.6225166 0.004455685 0.4836268 0.8727989 0.06558424 0.4511857 0.8897367 0.06872767 0.1869564 0.970214 0.1540269 0.9900815 0.0228278 -0.1385845 0.7923521 -0.3771477 0.4794458 0.7668691 0.6278268 -0.1330912 0.4887539 0.8723106 -0.010773 0.9234901 0.315012 -0.2188177 0.9633473 0.1083102 -0.2453383 0.9615772 0.03219699 -0.2725303 0.9961852 0.01779228 -0.08532971 0.8969085 0.003601133 -0.4421522 0.708121 -0.6616413 0.246437 0.6465651 -0.7628102 0.007385432 0.9155858 0.3157445 -0.24897 0.8180792 -0.352031 0.4546953 0.8760644 0.4622943 -0.1368755 0.7951292 -0.1931821 0.5748161 0.8241524 0.550615 -0.1325418 0.7459639 0.009704828 0.6658834 0.8041017 -0.04419076 0.5927916 0.7255165 0.1123996 0.6789148 0.7177648 0.08896142 0.6905423 0.8416395 0.5035859 -0.1949217 0.7861874 0.06845301 0.6141545 0.7582018 0.0894497 0.6458327 0.9051179 0.3464156 -0.2463759 0.9503769 0.05615401 -0.305948 0.9991455 0.02746665 -0.03033536 0.5633106 0.3845027 -0.7312845 0.8023927 -0.140263 -0.5800348 0.632313 0.5413068 -0.5541551 0.8308359 0.5395672 -0.1362041 0.5986816 0.6756188 -0.4301584 0.8590961 0.4548174 -0.2346568 0.6028932 0.5469222 -0.5807977 0.802118 0.2173528 -0.5561693 0.9466232 0.1961424 -0.2557451 0.9142735 0.02667313 -0.4041872 0.9472945 0.07010102 -0.3125706 0.9195837 0.01623582 -0.3925291 0.9230629 0.1155736 -0.3667715 0.8835108 0.3310648 -0.3312784 0.7302164 0.6411939 -0.235786 0.465804 0.8805811 -0.08688616 0.1965697 0.9796747 0.03967404 0.7906125 -0.3360088 0.5118259 0.9989624 0.04492324 -0.007080256 0.7700125 -0.1316263 0.6242561 0.8165227 0.04629653 0.5754265 0.8602252 0.08581805 -0.5026093 0.9522996 0.08783227 -0.2921537 0.8577837 0.1085543 -0.5023957 0.9538865 0.1213721 -0.2744835 0.4457839 -0.1530198 0.8819544 0.4166692 -0.2935881 0.8603168 0.3212683 -0.5142674 0.7951598 0.2857143 -0.7981811 0.5303202 0.15833 -0.9314554 0.3274941 0.3565172 -0.6415601 0.6791589 0.3700674 -0.5235145 0.7674185 0.3591113 -0.3166295 0.8779259 0.3869137 -0.4271065 0.8172246 0.3100986 -0.1423078 0.9399701 0.3477889 -0.0371105 0.9367962 0.3406476 -0.113071 0.9333476 0.2034974 -0.5871456 0.7834407 0.245674 -0.2705771 0.9308146 0.4010742 -0.03445535 0.9153722 0.6301462 0.6375622 -0.4431593 0.8427381 0.1369365 -0.5205543 0.6358227 0.4803919 -0.6040834 0.5848872 0.6485183 -0.4871364 0.3104648 -0.1983703 0.9296243 0.3909726 -0.02319401 0.920072 -0.1490524 -0.4833216 0.8626362 -0.07324439 -0.3703421 0.9259926 -0.1773735 -0.3502914 0.9196753 0.01867729 -0.3228248 0.9462569 0.1653493 -0.1580553 0.9734794 0.003875792 -0.30018 0.953856 -0.09952086 -0.2878506 0.9524827 -0.2199469 -0.2014832 0.9544359 0.4537187 -0.6494644 0.6101565 0.4610126 -0.5537584 0.6933805 -0.07901239 -0.2717978 0.9590747 0.377636 -0.5875729 0.7156285 -0.1930295 -0.4167608 0.8882718 0.2136601 -0.7022615 0.6790674 -0.2678915 -0.554796 0.7876522 0.1875667 -0.6967681 0.6923124 -0.2641072 -0.5561999 0.7879269 0.2179327 -0.6367687 0.7395856 -0.1729484 -0.5636464 0.8076724 -0.150914 -0.4509415 0.8796655 0.1247596 -0.6311838 0.7654958 -0.3997924 -0.4054384 0.8220161 -0.4600055 -0.2653279 0.8473159 0.1756035 -0.5855892 0.791345 -0.3288064 -0.4752037 0.8160955 0.1719107 -0.5859249 0.7918943 -0.3568834 -0.5691702 0.7406842 0.09891045 -0.6779992 0.7283548 -0.3249916 -0.6717429 0.6656392 0.1408429 -0.7094638 0.6904813 -0.2718284 -0.7185888 0.6400647 0.2239143 -0.6358532 0.7385784 -0.1572924 -0.6014893 0.7831965 -0.005920588 -0.4130985 0.9106418 -0.2304452 -0.3827326 0.8946196 -0.2433546 -0.4030579 0.8821986 0.4320811 -0.6832789 0.5885494 -0.2265694 -0.4074221 0.88464 0.4216132 -0.5955382 0.6837672 0.3104953 -0.5076144 0.8036744 -0.224311 -0.5295267 0.8180792 0.3336284 -0.5587024 0.75927 -0.1662954 -0.6346019 0.7546922 0.3976256 -0.5893735 0.7032075 -0.02841269 -0.7143468 0.6991791 0.5274819 -0.4045228 0.7470321 0.1040071 -0.5154882 0.8505203 0.3021637 -0.1742302 0.9371624 -0.3782464 -0.6334117 0.6750389 -0.5551927 -0.6191595 0.5552843 -0.6532487 -0.5119785 0.5577563 -0.7331156 -0.3377484 0.5902585 -0.7882931 -0.09530925 0.6078372 -0.7944273 0.08111816 0.601886 -0.5790887 -0.5596485 0.5927916 -0.6525468 -0.5848872 0.4816736 -0.7184668 -0.4947355 0.488876 -0.7750786 -0.3344218 0.5360881 -0.8083133 -0.1910458 0.5568407 -0.8241218 0.02459788 0.5658132 -0.6113468 0.1678212 0.7733085 -0.6156499 0.2169255 0.7575305 0.1869258 0.1514023 -0.9706107 0.1651356 -0.08880883 -0.9822382 0.6341136 0.1252174 -0.7629933 0.6009095 -0.05420082 -0.7974486 0.3725394 -0.08429211 -0.9241615 0.7649465 0.1265602 -0.6315195 0.8649251 0.1227149 -0.4866176 0.8552507 0.009124994 -0.5180822 0.2052674 0.5141453 -0.8327586 0.3997009 0.1358379 -0.9064913 0.3811457 0.4838709 -0.7877438 0.7225868 0.3862423 -0.5732597 0.1912289 0.7903684 -0.581988 0.5821406 0.4345225 -0.6871853 0.3007904 0.7715995 -0.5604419 0.8239998 0.3521226 -0.4438307 0.5582446 0.7020173 -0.4421216 0.122898 0.99176 -0.03588974 0.08609271 0.9944456 -0.06039613 0.09979552 0.9932554 -0.05893123 0.1046785 0.9932249 -0.05026394 0.1459395 0.9415571 -0.3035676 0.2321543 0.9283425 -0.2902615 0.4205451 0.7426679 -0.5211036 0.6697592 0.6649678 -0.3303934 0.3401898 0.9083834 -0.2429578 0.1658375 0.9861141 0.004181027 0.4255501 0.8919645 -0.1525009 0.1913815 0.9378948 -0.2892544 0.7279275 -0.01016265 -0.6855678 0.8274789 -0.0216071 -0.5610523 0.5639821 -0.05505537 -0.8239082 0.3706168 -0.0758385 -0.9256569 0.1481063 -0.07968378 -0.9857479 0.2321237 0.1768853 -0.9564501 0.09033477 -0.04269534 -0.9949644 -0.3366497 0.3791009 -0.8619037 0.1359599 0.1432844 -0.9802851 0.1792657 0.3886227 -0.9037752 0.2252571 0.4041872 -0.8864712 0.2732017 0.2763451 -0.9213843 -0.2385021 0.457503 -0.8565936 -0.5460677 0.2646565 -0.7948241 -0.1743828 -0.3060396 -0.9358806 -0.2793054 -0.4406262 -0.8531144 0.5816218 -0.1856135 -0.7919553 0.471511 -0.3952452 -0.7882931 0.09442424 -0.1257362 -0.9875485 0.7127293 0.2208929 -0.6657003 0.2386853 0.1290017 -0.9624623 0.7227088 0.4215522 -0.5476852 0.3020722 0.4073916 -0.8618122 0.7069613 0.5287942 -0.4695883 0.6950286 0.5458235 -0.4679098 0.2808008 0.6386914 -0.716361 0.4079409 0.3763847 -0.831782 0.7728813 0.3149815 -0.5507981 0.5388959 0.07422101 -0.8390759 0.8086184 0.08569598 -0.582049 0.5550706 0.09207433 -0.8266549 0.2701804 0.09939879 -0.9576403 0.2752159 3.05185e-4 -0.9613636 0.03469949 -0.05417031 -0.9979248 -0.340495 0.3603931 -0.8684042 0.4074221 0.3864559 -0.8273873 -0.2405774 0.4289071 -0.8706931 0.4357433 0.6031373 -0.6680502 0.4531999 0.58623 -0.6714683 -0.05386513 0.7286905 -0.6826991 0.02649003 0.580462 -0.8138371 0.4818872 0.5347759 -0.694113 0.1496322 0.371807 -0.9161351 0.5540636 0.3628041 -0.7492294 0.9595935 0.0819422 -0.2691428 0.9561144 0.2251961 -0.1873531 0.9316385 0.3474227 -0.1063265 0.9335002 0.3425092 -0.1060213 0.9615467 0.2057863 -0.1817377 0.9573656 0.03015226 -0.2872402 0.8671835 -0.2755821 -0.414716 0.7011322 -0.5475631 -0.4566485 0.6811732 -0.04080319 -0.7309488 0.7908262 0.08490246 -0.6060671 0.8282418 0.2955718 -0.4760277 0.8014466 0.395703 -0.4484084 0.7978149 0.3900876 -0.4596393 0.8118534 0.3217261 -0.4871975 0.8001343 0.1064485 -0.5902585 0.6871853 -0.2797021 -0.6704306 0.5132603 -0.5743889 -0.6376537 0.5275735 0.1121555 -0.8420667 0.6234321 0.2720725 -0.732963 0.6566973 0.2231208 -0.7203589 0.6589556 0.05508589 -0.7501145 0.6140934 -0.1011383 -0.7827082 0.4997101 -0.3374432 -0.7977233 0.3100375 -0.6615192 -0.6827906 0.2132023 -0.8140813 -0.5401166 0.2923673 0.558031 -0.776574 -0.1052583 0.6087833 -0.7862789 -0.2365489 0.4394055 -0.8665731 -0.4078494 0.1252174 0.9043855 -0.4696188 0.05484175 0.8811304 0.2036195 -0.03259372 0.9784845 0.05429238 -0.1168859 0.991638 0.300882 0.07101655 0.9509873 -0.4253365 -0.1319315 0.895352 -0.4580828 -0.03231906 0.8883023 0.06335639 0.4455702 0.8929716 -0.02221745 0.8030946 0.5954161 -0.9389325 0.3440046 -0.005066037 -0.3932005 0.1473739 0.9075289 0.9497055 -0.2402417 0.2007202 0.9063997 -0.3384197 0.2526932 0.7960754 -0.3295999 -0.5075228 0.9767449 -0.1372112 0.1645558 0.8169195 -0.2269356 -0.530198 0.8266854 -0.1175573 -0.5501877 0.8403272 -0.01556444 -0.5417951 0.9853511 -0.05661183 0.1606189 0.9854122 0.07574689 0.1523483 0.9541918 0.27369 0.1207922 0.8011719 0.5941038 0.07144379 0.3707999 0.927488 0.04705953 0.1305581 0.9753715 0.1776787 0.6544084 -0.257973 0.7107151 0.7052522 -0.1859798 0.6841029 0.7319254 -0.1128574 0.6719565 0.7418745 -0.06863611 0.6670126 0.774926 -0.02148503 0.6316416 0.8352611 0.1144139 0.5377972 0.7593921 0.5353252 0.3697317 0.2629474 0.9273355 0.2661824 0.04452645 0.9630421 0.265511 -0.907651 0.4025086 -0.1187475 -0.5090183 0.2089297 0.8349865 0.8677633 -0.3827326 0.3169347 0.814478 -0.3917966 -0.4278695 0.567156 -0.2905057 0.7706534 -0.07504498 -0.08288824 -0.9937132 -0.1686148 -0.04345834 -0.9847102 -0.7954039 0.2450941 -0.5542772 -0.8503983 0.2367931 -0.4697714 -0.9055147 0.3316141 -0.264687 -0.9018525 0.1474959 -0.4060488 -0.8307443 0.2677389 0.4880215 0.8565325 -0.3120213 0.4110538 0.8544267 -0.06115907 0.5159154 0.9897763 -0.1314127 -0.05520796 -0.6816614 0.2652974 0.6818445 0.3200476 0.01178014 0.9472945 0.9107334 -0.3262124 -0.2531815 0.3007904 -0.305826 -0.9032868 0.09961241 -0.155034 -0.9828486 -0.6558428 -0.09588915 -0.7487411 -0.7310709 0.1457259 -0.6664937 -0.2424085 -0.8973357 -0.3687247 -0.1215857 -0.9533067 -0.2764061 -0.4769738 -0.6514787 -0.5899533 -0.5439314 -0.6000854 -0.5865047 -0.9116489 0.1187475 -0.3933836 -0.328135 0.840907 0.430311 -0.9184851 0.1471297 -0.3670156 0.144383 0.647908 0.7478866 0.4694662 -0.145085 0.8709372 0.5409101 0.03689682 0.8402356 0.3098239 -0.8932157 0.3258156 0.3946959 -0.8568682 0.3315836 -0.2642598 -0.9008759 -0.3442793 -0.2716147 -0.8899198 -0.3663442 -0.6435133 -0.5768914 -0.5030366 -0.7150182 -0.598468 -0.3612781 -0.9651479 0.1719412 -0.197119 -0.2342905 0.8438978 0.4826197 -0.999176 0.003601133 -0.0401318 0.3270058 0.6490371 0.6868496 0.6980193 0.08835107 0.7105625 0.8373974 0.1421857 0.5277566 0.5019685 -0.8347117 0.2263863 0.686697 -0.7235023 0.07052826 -0.3508408 -0.8488724 -0.3953368 -0.2901089 -0.8824122 -0.3702811 -0.7339091 -0.6051821 -0.308359 -0.7677236 -0.5816218 -0.2688986 -0.9953612 -0.07617419 0.0585345 -0.2125919 0.7497788 0.6265755 -0.9805902 -0.1229895 0.1526231 0.5615711 0.7086093 0.4271675 0.5196081 0.6848964 0.5107578 0.8971526 0.2501297 0.3640248 0.589343 0.7036042 0.3969542 0.7069918 -0.7038484 -0.06881922 0.01159703 -0.9809259 -0.1939756 -0.5945616 -0.4604633 -0.6591387 -0.479873 -0.7375409 -0.4750816 -0.8247017 -0.4974517 -0.2689596 -0.888699 -0.2153386 -0.404706 -0.9626148 -0.05877864 0.2643818 0.04144412 0.3762932 0.9255654 -0.9727165 0.09991759 0.2093265 0.8027284 0.3581347 0.4768212 0.6753746 0.645497 0.3565477 0.7190771 0.6704611 0.1826838 0.8995331 0.4218574 -0.1133762 0.8239998 0.557268 -0.1022675 0.6349681 -0.4554582 -0.6239509 0.4366588 -0.4847865 -0.7578051 -0.1793878 -0.8510697 -0.4934232 0.9775995 0.2098758 0.01416057 -0.09341716 0.6447646 0.7586291 0.7665029 0.6291086 -0.1290932 0.6552324 -0.5883969 -0.4737083 -0.2821436 0.7923826 0.540788 0.4539018 0.6600543 0.598529 -0.2610553 0.8432264 0.4698324 0.2115238 0.6558428 0.7246315 -0.1602526 -0.02587968 -0.9867244 -0.1591845 0.01849418 -0.9870601 0.459151 -0.2219611 0.8601337 -0.2245857 0.8183844 0.5288858 -0.8824732 0.1926633 -0.4290292 -0.8968474 0.1514939 -0.4155095 0.553972 -0.4500259 -0.7003693 -0.6705222 -0.7363811 0.089877 0.6832484 -0.6371654 -0.3565782 0.7924131 0.6099429 -2.74667e-4 -0.4859768 0.6867886 0.5404828 0.8538774 0.4109622 0.3192846 0.8090762 0.2715842 0.5211341 0.4657735 -0.8799707 -0.09320348 -0.7614979 -0.6373485 -0.1176794 0.6564531 -0.7119053 -0.2494277 -0.8205512 -0.5255898 -0.2244941 -0.5812861 0.6299631 0.5149694 -0.4695273 0.6461989 0.6015809 -0.5767693 0.6704916 0.466628 0.8066347 0.2306588 0.5441451 0.3745232 -0.9259926 0.04757833 -0.8105106 -0.5583972 -0.1766106 -0.14597 0.0582903 -0.9875485 -0.8845485 0.06875818 -0.4612873 -0.1828974 0.0432142 -0.9821772 -0.8701132 -2.74667e-4 -0.4928129 0.7506441 0.5554205 0.3578291 0.9679654 -0.0537936 0.245253 0.9563071 0.006701767 0.2922871 0.9269729 0.1417047 0.3473346 0.9090809 0.1580781 0.3854647 0.4805175 0.8368836 0.2621618 -0.3807095 0.9056158 0.1868698 -0.7048336 0.6632803 0.2515329 -0.9257808 0.3107952 0.215258 -0.9478211 0.2830747 0.1466426 -0.9818933 0.1656901 0.09182894 -0.9919709 0.1026294 0.07389765 0.8901944 -0.3350932 0.3085727 0.737785 -0.3724784 0.5629444 0.6436659 -0.03543198 0.7644581 0.2475051 0.07724231 -0.9657887 0.7325358 0.4498733 -0.5108188 0.7261269 0.1351054 -0.6741234 -0.07174897 -0.612415 -0.7872555 -0.07440412 -0.3160497 -0.9457991 0.1105075 -0.9297159 -0.3512375 0.3714408 -0.8973968 -0.2380748 -0.08731341 -0.7033601 -0.7054353 0.1898251 0.6872463 -0.7011322 0.4514603 0.891995 0.02142399 0.608417 0.7860957 -0.108829 0.4148381 -0.9096347 0.02099668 0.04882961 -0.9321268 0.3588061 -0.05471968 -0.9252602 -0.3753471 0.7190161 0.5767998 -0.3876461 0.3407086 0.4468826 -0.8271431 0.1936705 -0.8981292 -0.3947264 0.7553942 0.1813104 0.6296274 0.02624589 -0.209418 0.9774468 0.882992 -0.2652059 0.3872494 -0.0806604 -0.9241615 0.3733024 0.01089507 -0.9725639 0.2323374 0.6967376 0.09833061 0.710532 0.6432996 -0.6962187 0.3184607 0.4674825 -0.7431257 0.4787133 0.1194189 0.02832114 0.9924314 0.3272194 0.177221 0.9281594 0.1605274 -0.8095645 0.5645924 0.8769799 0.2190313 -0.4276559 0.9022492 0.3799249 0.2038941 0.2881863 -0.3236793 0.9011811 0.3704642 0.3360088 0.8659017 0.8669393 -0.04177981 0.4966277 0.5548265 -0.7983947 0.2338023 0.4707175 -0.8475906 -0.244911 0.147618 -0.5467696 0.8241218 0.5308085 -0.5618458 0.6344493 -0.03469949 -0.2703329 0.9621266 0.6658529 0.2816858 0.690817 0.5307169 0.3102817 0.7886593 0.5910215 0.001922607 0.8066042 0.5159459 0.1686453 0.8398389 -0.09042632 -0.8789636 -0.4682149 -0.2154912 -0.5965758 -0.7730644 0.5969726 -0.0736106 0.7988525 0.8436232 -0.1528367 0.5146642 -0.06863611 -0.8590961 0.5071566 -0.1930601 -0.8033692 -0.5632801 0.9003571 -0.1974852 0.3877376 0.04260379 -0.4214912 0.9058199 0.297708 -0.1674245 0.939848 -0.02026426 -0.272042 0.962035 0.516129 -0.08151489 0.8525956 0.7217933 -0.03964352 0.6909391 0.7541429 0.04055905 0.6554155 0.09732353 -0.5042878 -0.8580279 0.4399243 -0.6485489 -0.6211127 -0.144261 0.2017273 -0.9687491 0.6506241 -0.1370281 -0.74691 -0.03723257 0.0462355 -0.9982299 0.5089572 -0.391583 -0.7665334 -0.3468734 -0.1080965 -0.9316385 -0.1819514 -0.4817652 -0.8571734 0.5010529 -0.8458815 0.1827448 0.4022645 -0.3425092 -0.8489944 0.5602588 -0.804529 0.1969969 0.4322642 -0.8990753 0.0691244 0.4000061 -0.9135411 0.07333594 0.9978637 -0.004455685 -0.06485182 0.9898068 0.1043733 -0.09674364 0.9834285 0.1710257 0.05960261 0.9996338 -9.76592e-4 0.02587968 0.9869076 -0.1554002 0.04284799 0.3722342 -0.924894 0.07733386 0.3468123 -0.9366741 0.04843282 0.6290475 -0.7177954 -0.2983795 0.8240913 -0.5427412 -0.1620532 0.6324656 -0.741905 -0.2224799 0.538316 -0.7977233 -0.2717063 0.635609 -0.7643971 -0.1078524 0.4976959 -0.8670614 -0.02136296 0.9671316 -0.2493057 0.04980617 0.9801935 -0.1944944 0.03671371 0.9779962 -0.1999267 0.05935847 0.5966674 -0.8015686 0.03747671 -0.08716082 -0.9922178 0.08859521 0.2739036 -0.952147 0.1355022 0.2548601 -0.9650868 0.05993831 0.3131199 -0.9399091 0.1358989 0.1841792 -0.9808954 0.06210511 -0.08185064 -0.9962767 0.02673417 -0.08285772 -0.9957885 0.03897213 0.26133 -0.9396954 0.2206183 0.3386944 0.5967895 0.7273781 0.31489 0.8261666 0.4671468 0.1379742 0.8455458 0.5157628 0.02111876 0.8468582 0.5313273 -0.01480144 0.6482742 0.7612232 0.1189306 0.63802 0.7607349 -0.05102694 0.3746147 0.9257485 -0.07882928 0.09872734 0.9919736 0.08725237 0.1069368 0.9904172 0.3341166 0.1034577 0.9367962 0.3583788 0.3524888 0.8644368 0.1131321 0.3826716 0.9168981 0.3254188 0.9251992 0.1951353 0.1630299 0.9568774 0.2403942 0.05041652 0.9543443 0.2943815 0.7022004 0.6458938 0.2995392 0.8280892 0.4265572 0.3636891 0.896115 0.4046754 0.182165 0.8561663 0.2144535 0.4700461 0.842555 0.01333653 0.5384076 0.9726859 0.01058989 0.2318491 0.7014679 0.7045198 0.1073946 0.7014985 0.695822 0.1538743 0.3400372 0.9334391 0.1142613 0.176397 0.9741814 0.1408123 0.06591993 0.9869686 0.1467024 0.9709769 -0.2040773 0.124607 0.9744865 -0.1967223 0.107944 0.970214 -0.2239448 0.09225744 0.6176641 -0.7833796 0.06894129 0.5337687 -0.836787 0.1216773 -0.09833061 -0.1553697 0.9829401 0.05911433 -0.1452376 0.9876095 0.2640156 -0.1209448 0.9568774 0.9606311 -0.188818 0.203711 0.9705191 -0.1671804 0.1735282 0.4051637 -0.7467574 0.5273904 0.3136387 -0.6526688 0.6896573 0.8939787 -0.4283578 0.1313211 0.9494003 -0.278695 0.1445966 0.8973052 -0.2722251 0.3474227 0.9682608 -0.1819819 0.1712393 0.9384136 -0.1277199 0.3209326 0.8220161 -0.4919584 0.2867519 0.6855068 -0.6996063 0.2013916 0.7885678 -0.6051821 0.1090426 0.9293192 -0.1604968 0.3324992 0.7318644 -0.6814173 -0.003692686 0.855678 -0.5163121 0.0341807 0.9268472 -0.3653981 0.08609271 0.9593493 -0.2677999 0.08877831 0.9770196 -0.2017579 0.06863611 -0.1029389 -0.2296823 0.9677724 0.1543626 -0.3745537 0.914243 0.9229713 -0.1192052 0.3658864 0.8544267 -0.0711081 0.5146642 0.2156133 -0.4899442 0.8446303 0.8466445 -0.148503 0.511002 0.6097293 -0.4441969 0.6563921 0.5522935 -0.6355479 0.5394757 0.6367992 -0.7112033 0.297708 0.5116123 -0.8408154 0.1766716 0.4727317 -0.7928709 0.3844722 0.2259285 -0.285165 0.9314554 0.2322763 -0.2939237 0.9271523 -0.09714037 -0.1372417 0.9857479 -0.08124023 0.07089447 0.9941405 0.1477706 0.03979611 0.9881893 0.7672964 -0.02328562 0.6408277 0.6651204 0.2165288 0.7146214 0.7874386 0.08005005 0.6111332 0.7841731 -0.1327555 0.6061586 0.2124393 -0.1167638 0.9701529 0.1734367 -0.1982482 0.9646596 0.5072787 0.08380383 0.8576617 0.7453231 -0.0185247 0.6664022 0.6154363 0.3093051 0.7249062 0.7423933 -0.5019685 0.4436476 0.7727287 -0.2511978 0.5829035 0.6118961 -0.2226325 0.7589343 0.4909207 0.5391095 0.6843165 0.3866085 0.4202094 0.8209174 -0.02874839 0.552324 0.8330943 0.3545335 0.5907773 0.7247536 0.4093142 0.4704123 0.7817316 0.3424787 0.5463729 0.764275 0.3795282 0.4160283 0.8263497 0.416303 0.5331584 0.7364422 0.195532 0.03387552 0.9800714 0.2441175 0.2598651 0.9342631 -0.05395668 0.3486434 0.935667 0.6028321 0.5120396 0.6118656 -0.007721126 0.6929228 0.7209388 0.4058046 0.2726829 0.8723106 0.361034 0.5150609 0.7773675 0.4957427 0.3944517 0.7736747 0.5537584 -0.03704947 0.8318125 0.6493423 0.0970183 0.754265 0.01928764 0.8385266 0.5445113 -0.06387519 0.2541581 0.9650258 -0.116306 -0.5384076 0.8345897 0.4125492 -0.3556627 0.8385876 0.4145329 -0.4539933 0.7886593 0.3411054 -0.3982666 0.8514664 0.1971495 -0.2782983 0.9400311 0.4148076 -0.2169865 0.8836329 0.4079409 -0.001464843 0.9129917 -0.1046479 -0.2046876 0.9732047 -0.116306 -0.5952941 0.7950072 0.2722251 -0.3111972 0.9104892 0.2468947 -0.2902615 0.9245277 0.1174963 -0.2882168 0.9503159 -0.1102023 -0.3244728 0.9394208 0.3424787 -0.2587664 0.9031648 0.3596301 -0.2122257 0.9086276 0.1609241 -0.701651 0.6940519 -0.1308023 -0.7601855 0.636372 -0.1259804 -0.5091098 0.8514054 -0.1098971 -0.2633442 0.9584033 0.2693564 -0.2345957 0.9339885 -0.09991759 -0.2090823 0.9727775 -0.08377331 -0.05310219 0.995056 0.2770776 -0.2246772 0.9342021 0.2327342 -0.3082675 0.9223609 0.2878811 -0.3226722 0.9016389 0.2865688 -0.0745567 0.9551378 0.4564348 -0.1235694 0.8810999 0.249916 -0.3919187 0.8853725 0.3069552 -0.4625996 0.831721 0.2946257 -0.368633 0.8816187 0.4069033 -0.5382855 0.7379681 0.2908109 -0.2957854 0.9098789 0.3960998 -0.1001617 0.9127171 0.3202002 -0.3569445 0.8774987 0.4627522 -0.2274239 0.8568072 0.3388165 -0.2675558 0.9019746 0.3671072 -0.2114322 0.9057894 0.3973205 -0.4398022 0.8053835 0.3028047 -0.2727134 0.9131749 0.1190221 -0.4589068 0.880459 0.2983795 -0.2595905 0.9184545 0.3281045 -0.2447279 0.9123814 0.3678396 -0.2866604 0.884579 0.472335 -0.3441267 0.8114261 0.2615131 0.1885128 0.9465926 0.9747307 -0.1536301 0.1620532 0.9431135 -0.1243324 0.3083285 0.8800318 -0.1398053 0.4538102 0.7404096 -0.2161321 0.6364025 0.7528306 -0.1145359 0.6481216 0.5356609 -0.2427442 0.808771 0.6919156 -0.1729179 0.7009491 0.3699454 -0.272103 0.8883023 0.5257118 -0.3859676 0.7580493 0.5101474 -0.1015961 0.85403 0.5964537 0.07260352 0.7993408 0.5211036 0.7613758 0.3856319 0.5959655 0.5277566 0.6052126 0.4792627 0.8629109 0.1601611 0.4680318 0.8782312 0.09811699 0.3404034 -0.4846034 0.8057497 0.5010224 0.4547868 0.7362896 0.221015 -0.03714102 0.9745476 0.1464278 -0.1096835 0.9830927 0.4630879 -0.5681936 0.6801965 0.2358775 -0.1108127 0.9654225 0.6187018 -0.3169347 0.7188025 0.3530992 -3.66222e-4 0.9355754 0.6857509 -0.08304083 0.723075 0.6271859 0.03924679 0.7778558 0.6573687 -0.1625111 0.7358013 0.01266515 -0.16245 0.9866329 0.6101871 -0.2020325 0.7660451 0.5067293 -0.1529588 0.848384 0.05026394 -0.7267373 0.685049 0.3591113 -0.06668293 0.9308756 0.07049775 -0.7753227 0.6275826 0.23249 -0.7414472 0.6294137 0.5515 0.2846767 0.784051 0.0371105 0.4224372 0.9056063 0.4389783 0.1633045 0.8835108 0.699881 0.1744438 0.6926176 0.4491409 0.3951537 0.801294 0.6099429 0.5165563 0.6009095 0.3831599 0.5887631 0.7116916 0.4248176 0.781457 0.4569842 0.3532823 0.6304209 0.6911832 0.2663961 0.8679159 0.4192022 0.4274423 0.5129551 0.744377 0.1325113 0.8366344 0.5314493 0.08108764 0.6849575 0.7240211 0.9557176 0.1934873 0.2216864 0.6344798 0.2978911 0.713187 -0.1018708 -0.9481796 0.3008515 -0.0999481 -0.2434766 0.9647206 0.2223883 -0.2754296 0.9352092 0.4619892 -0.2988678 0.8349865 0.5067903 -0.3820002 0.7727897 0.2942289 -0.6124455 0.7336955 0.301828 -0.4094973 0.8609272 0.4951018 -0.05780202 0.8668783 0.5638905 -0.182165 0.805475 0.4678792 -0.276223 0.8395032 0.2327952 -0.3850826 0.8930021 -0.1212806 -0.3830683 0.9157079 -0.1225928 -0.776574 0.6179388 0.0884121 -0.7867672 0.6108585 0.1977294 -0.8674886 0.4564348 0.2002319 -0.472396 0.8583025 0.3746452 -0.7710807 0.5147863 0.5178381 0.1487167 0.8424329 0.5577563 0.1082797 0.8228706 0.4053773 0.2939237 0.865566 0.2431104 0.5125889 0.823481 -0.02221745 0.5955382 0.803003 0.3205054 -0.7505417 0.577868 -0.101535 -0.9833979 0.1502731 -0.006164729 -0.9873349 0.1584826 0.2225409 -0.948851 0.2238532 0.2882168 -0.9197363 0.2664266 0.1357158 -0.9536424 0.2685018 0.3075045 -0.4056825 0.8607136 0.2933134 0.8345592 0.4663228 0.3452559 0.7704092 0.535905 0.2315439 0.8049867 0.5462203 0.1273843 0.9166539 0.3787652 0.06668293 0.9688101 0.2385937 0.764153 -0.637959 -0.09515666 0.9386273 -0.3437605 0.02758872 0.9296854 -0.3621326 -0.06707966 0.5524156 -0.6688131 0.4974517 0.755913 -0.3763237 0.5356609 0.8188726 -0.1004669 0.5650502 -0.5834834 0.03988766 0.8111209 0.0444349 -0.5858333 0.8091983 -0.1702322 -0.8134709 0.5561083 -0.05188143 -0.8799402 0.4721824 0.1864986 -0.8690146 0.4582659 -0.3949095 0.6261483 0.6722617 0.7911313 0.2264473 0.5681326 0.6420789 0.6259651 0.4424878 0.4100162 0.8659627 0.2862941 0.1741081 0.9639882 0.2009338 -0.07406842 0.9525743 0.295053 -0.2650532 0.8044374 0.5315714 -0.06201356 -0.8122807 -0.5799127 -0.2642292 -0.7832881 -0.5626392 -0.09595018 -0.8203986 -0.5636464 -0.3456221 0.6943572 -0.6311533 -0.3447371 0.7410199 -0.5761895 -0.3353068 -0.8457595 -0.4150212 -0.2338023 0.8142644 -0.5312662 -0.08023315 0.8561357 -0.5104526 -0.0406506 -0.8190557 -0.5722221 -0.02142399 -0.8125553 -0.5824458 0.1252174 0.8753319 -0.4669942 0.988525 -0.1509445 7.32444e-4 -0.356151 -0.6427198 0.6782433 -0.9715567 -0.1864986 0.1457259 -0.7632985 0.07684558 0.6414075 -0.873104 -0.2438734 0.4221015 -0.06213563 0.103946 -0.9926145 -0.5685293 0.2365489 -0.7878658 -0.5540025 0.5546129 -0.6208381 0.1819819 -0.3332621 -0.9250771 0.1097751 -0.6269418 -0.7712638 -0.20777 -0.8963286 -0.391644 0.2356639 -0.6324961 -0.7378155 0.09622484 -0.7137364 -0.6937468 -0.4397717 0.877224 -0.1923887 -0.2865688 0.9572436 -0.03885 0.0592364 0.7041536 -0.7075411 -0.5524766 -0.8308359 -0.06643879 -0.2625507 -0.8590961 -0.4392834 -0.02471995 -0.9254738 -0.3779412 -0.5382245 0.684347 -0.4918668 -0.1141697 0.4918058 -0.863155 -0.4660481 -0.826014 -0.3169347 -0.8153935 0.306589 0.4909818 -0.966979 -0.1179845 0.2258064 -0.2270882 -0.1896725 0.9551988 -0.1306192 -0.9199194 0.3696097 -0.2021851 -0.9555956 0.2142399 -0.6700034 -0.6566362 0.3462325 -0.7929014 -0.5801874 0.1861934 -0.7842037 0.2168034 0.5813776 -0.2812586 0.05929744 0.9577929 -0.158391 -0.8512223 0.5002899 -0.4041261 -0.7661367 0.4996796 -0.8456984 0.5307779 0.05481123 -0.4958342 -0.2636494 0.8273873 -0.9335612 -0.01022368 0.3581957 -0.9347209 0.1003143 0.3408307 -0.256386 -0.9077121 0.3320719 -0.5486618 -0.767449 -0.3315836 -0.7154759 -0.4626911 0.523423 -0.371868 -0.505295 0.7786798 -0.5982238 0.4012573 0.6935942 -0.7190771 0.3941771 0.5722526 -0.1757866 -0.2639241 0.9483627 -0.7141026 0.1051362 0.6920682 -0.6156804 0.2575457 0.7446821 -0.4444715 0.2372814 0.8637654 0.006561458 -0.8776818 -0.4791711 -0.7320475 0.02801597 0.6806238 0.147618 -0.8281198 -0.540727 -0.9734184 -0.04794454 0.2238532 -0.8392896 0.1685537 0.516831 -0.2704855 -0.4042787 0.8737144 -0.1915341 -0.266335 0.9446395 -0.4817346 -0.1142002 0.8688009 -0.6629841 0.01669359 0.7484054 -0.8279672 0.08435314 0.5543687 -0.4509415 0.4056825 0.7950072 -0.02545243 -0.4944609 -0.8688009 -0.7058931 -0.697409 0.1237831 -0.4197821 -0.5824152 -0.6960662 -0.7383648 0.3523362 -0.5749992 -0.5202795 -0.04477065 -0.8528093 0.345439 0.163274 -0.9241005 0.217719 0.02649003 -0.9756463 0.4820399 -0.1728263 -0.858913 -0.4235359 -0.3196508 -0.8475906 0.235786 -0.5145115 -0.8243965 -0.2985626 -0.2874538 -0.910062 -0.6514176 -0.7541734 0.08273565 -0.704062 -0.7027803 0.1018097 -0.6033204 -0.7900326 0.1086153 -0.5450606 -0.8383129 -0.0104373 -0.9396344 0.3245033 -0.1084628 -0.9293192 0.2575457 -0.2645344 -0.9598071 0.1517685 -0.2359996 -0.9914854 0.002471983 -0.1300699 -0.9766228 0.1567431 -0.1468856 -0.4930265 -0.8696249 -0.02520829 -0.5208594 -0.8536332 -8.85037e-4 -0.6732383 -0.6138493 -0.4122135 -0.6056703 -0.7044588 -0.3699454 -0.693289 -0.6362194 -0.3383587 -0.7147435 -0.6964019 -0.06399726 -0.616657 -0.7797784 -0.1077609 -0.9882199 -0.09317296 -0.1211889 -0.9945372 -0.06717121 -0.07950067 -0.9926756 -0.04266482 -0.1128879 -0.5723441 -0.8198493 -0.01382488 -0.4100772 -0.9120151 0.001770019 -0.4385815 -0.8958404 0.0712912 -0.4758446 -0.8769494 0.06686604 -0.3442183 -0.9387494 0.01586961 -0.4400464 -0.8837245 0.159215 -0.3608203 0.6526383 0.6662191 -0.1463972 0.6591998 0.7375409 -0.08999907 0.8637349 0.4958037 -0.2078921 0.4082766 0.8888516 -0.2388073 0.1329691 0.9619129 -0.4420606 0.4163945 0.7944579 -0.4701376 0.1676687 0.8664816 -0.04934841 0.9738152 0.2218085 -0.2044129 0.9674978 0.1488083 -0.2566912 0.8717917 0.417188 -0.8390454 0.5431379 0.03045743 -0.8007752 0.5565661 0.2212897 -0.6327708 0.7524338 0.1828058 -0.8797876 0.3530076 0.318247 -0.9370709 0.344554 0.05618453 -0.9840999 0.1667836 0.06076234 -0.5897092 0.8075808 -0.005462765 -0.8363597 0.5476241 -0.02380442 -0.0424512 0.991638 0.1216773 -0.2034059 0.9768059 0.06674396 -0.9971313 -0.03933835 -0.06442457 -0.9977416 -0.04690694 -0.04748678 -0.671926 -0.7403485 0.01818901 -0.250679 -0.120487 0.9605091 -0.4407788 -0.06469923 0.8952605 -0.999939 -0.00991851 0.00125122 -0.9989318 -0.03244113 0.0323801 -0.52678 -0.5870846 0.6146733 -0.6025269 -0.6667989 0.4384594 -0.97528 -0.1227759 0.1836909 -0.9919736 -0.1237525 -0.02508616 -0.9593493 -0.2804346 -0.03064054 -0.9996643 -0.02490305 -7.93481e-4 -0.979339 0.03259372 0.1995605 -0.9879452 0.02600175 0.1525009 -0.8808863 -0.4718466 -0.03689682 -0.8114566 -0.5801264 0.07061982 -0.9261757 -0.3524277 0.1338847 -0.9862362 -0.007629573 0.1650136 -0.7378155 -0.6731773 -0.04919582 -0.8182623 -0.5577258 -0.1390423 -0.9192481 -0.3746452 -0.1208838 -0.9902951 -0.112186 -0.08163696 -0.9736015 -0.2137211 -0.08001953 -0.9935911 -0.04446542 -0.1036714 -0.3667104 -0.3329874 0.8686789 -0.8584552 0.2114322 0.4672384 -0.9307535 0.07132172 0.3585619 -0.4324167 -0.4382458 0.7879879 -0.9347209 -0.006317317 0.3552355 -0.7824641 -0.5979492 0.1735892 -0.7300943 -0.5333415 0.427137 -0.7761772 -0.3337504 0.5348979 -0.6510208 -0.7031159 0.2859584 -0.4252144 -0.2331919 0.8745079 -0.3078097 0.07617419 0.9483627 -0.8602557 0.1066011 0.4985198 -0.8879055 6.71407e-4 0.4599444 -0.3662221 -0.1551866 0.917478 -0.3922544 -0.06851404 0.9172644 -0.6282541 0.1750236 0.7580493 -0.4587543 0.5397809 0.705771 -0.6747337 0.4123051 0.6121097 -0.7613148 -0.11301 0.6384167 -0.8914456 -0.1183813 0.4373608 -0.8774071 -0.3726921 0.3019806 -0.5105136 0.6190375 0.596759 -0.3767205 0.6490982 0.6608173 -0.3787958 0.6039613 0.7011933 -0.404004 0.57622 0.7104404 -0.4478286 0.6021912 0.6608783 -0.3575549 0.3078707 0.8816492 -0.3538621 0.07770007 0.9320353 -0.6106754 0.6095157 0.5054781 -0.5017548 0.3470565 0.7923216 -0.5525987 0.4801172 0.6812342 -0.6878872 0.06421095 0.7229225 -0.746086 0.2092654 0.6320689 -0.6104007 -0.370922 0.6998199 -0.6010926 -0.2746055 0.7504807 -0.4012573 -0.2329478 0.8858303 -0.5436872 -0.3283792 0.7723319 -0.590289 -0.1366313 0.7954955 -0.5540941 0.0781579 0.8287301 -0.4693441 -0.2527238 0.8460341 -0.3304849 -0.2501602 0.9100314 -0.447615 -0.2319712 0.8635823 -0.5401471 -0.1408429 0.8296762 -0.4052858 -0.6505326 0.6422621 -0.3530992 -0.4166997 0.8376415 -0.4549089 -0.02670365 0.8901029 -0.4850307 -0.2658162 0.8330943 -0.4319285 -0.258919 0.863918 -0.4651326 -0.1651356 0.8696554 -0.6223945 -0.0424512 0.781518 -0.4648885 -0.1625721 0.8702964 -0.4553667 -0.342143 0.821894 -0.5012055 -0.3006379 0.8113956 -0.8425855 0.1081881 0.527543 -0.5586413 -0.02246159 0.8290963 -0.4846339 -0.2365184 0.8420972 -0.5179907 -0.292642 0.8037355 -0.5131382 -0.4049501 0.7567369 -0.545732 -0.1387371 0.8263802 -0.5279702 -0.196173 0.8262581 -0.4937285 -0.2080447 0.8443251 -0.5947753 -0.3598437 0.7188025 -0.6598102 -0.7477951 0.07330542 -0.4899442 -0.1944029 0.8497574 -0.5144505 -0.1784722 0.8387097 -0.5609302 -0.2078616 0.801294 -0.5311136 -0.1880856 0.8261361 -0.6147649 -0.451857 0.646382 -0.632252 -0.1406292 0.7618641 -0.4513382 0.4870754 0.7476425 -0.3878597 0.2403637 0.8897977 -0.9999085 0.003936886 -0.01055938 -0.9897763 0.02990812 0.1393475 -0.9559923 0.006683528 0.2932829 -0.8618427 0.01431316 0.506943 -0.9100009 0.1532334 0.3851741 -0.8637349 -0.08810693 0.4961699 -0.7026582 -0.2879116 0.6506546 -0.6985382 -0.1442304 0.7008576 -0.5557116 -0.1982177 0.8073672 -0.5462203 -0.4138615 0.7282327 -0.6593219 -0.008270502 0.751793 -0.7063814 0.1765801 0.6854152 -0.6007874 0.623249 0.5005646 -0.4533525 0.839137 0.3004242 -0.357799 0.9297159 0.08697772 -0.5991089 0.7996155 0.04016232 -0.3337504 0.9422284 0.02801597 -0.4319895 -0.2409131 0.8690756 -0.6930449 0.4038515 0.5971252 -0.7358623 0.3283792 0.5921201 -0.3890805 0.01089507 0.9211097 -0.4512772 -0.6865749 0.5700247 -0.6575824 -0.4784692 0.5818964 -0.7754753 -0.2057558 0.5968505 -0.4132816 -0.05902278 0.9086581 -0.8068178 0.03265476 0.5898618 -0.5047456 0.06805628 0.860561 -0.737785 0.1481978 0.6585284 -0.1256752 0.4354076 0.8913846 -0.2080447 -0.1448408 0.9673147 -0.7572253 -0.09286779 0.6464736 -0.2749718 -0.5603199 0.7812433 -0.2814112 -0.7002472 0.6560564 -0.6631062 -0.05960261 0.7461165 -0.2981353 -0.7458724 0.5955992 -0.5200049 0.002899229 0.854152 -0.6266061 0.3787347 0.6810816 -0.09579759 0.699118 0.7085483 -0.7775811 0.2923673 0.5565966 -0.5535142 0.2425306 0.7967162 -0.6158025 0.6212653 0.4845424 -0.5126804 0.4719382 0.717185 -0.3663136 0.8472244 0.3846858 -0.4026002 0.6514787 0.6429945 -0.1947386 0.9046907 0.3788873 -0.3634755 0.687582 0.6285287 -0.08877831 0.8543351 0.5120396 -0.4632099 0.5840632 0.6665242 -0.4260079 -0.2355723 0.8734703 -0.6464736 -0.2155217 0.7318339 -0.686636 -0.2878201 0.6675619 -0.497177 -0.5678274 0.6559954 -0.5021821 -0.3543809 0.7887814 -0.6379284 0.03112888 0.7694327 -0.6549272 -0.2521134 0.7123631 -0.6467483 -0.1842097 0.7400739 -0.7159032 -0.07809686 0.6937773 -0.4551531 -0.3260598 0.828547 -0.5397198 -0.692465 0.4787133 -0.3353984 -0.7476119 0.5731681 -0.4001587 -0.4412366 0.8031861 -0.3989685 -0.8307443 0.3881649 -0.563921 -0.7195044 0.4052553 -0.6650288 0.2041688 0.7183142 -0.62154 0.236671 0.7467574 -0.2923673 0.5572375 0.7771539 -0.4930265 0.3650624 0.7896969 -0.3959776 -0.9097568 0.1245155 -0.196173 -0.9725028 0.1254616 -0.4736472 -0.8599506 0.1900388 -0.3347575 -0.9139378 0.2292855 -0.4982452 -0.3510544 0.7927793 -0.2222968 0.8769189 0.4260689 -0.296701 0.8237556 0.483047 -0.1778313 0.8387402 0.5146031 -0.02600175 0.929136 0.3687247 -0.8269906 -0.511124 -0.2340159 -0.7191076 -0.6572161 -0.2255318 -0.9493393 -0.2122867 -0.2316049 -0.9715262 -0.1913815 -0.1394696 -0.8586993 -0.4083682 -0.3095492 -0.3975951 -0.8211005 0.4094973 -0.728843 -0.5652943 0.3862423 -0.8866543 -0.2453383 0.3918882 -0.9130527 0.03225803 0.4065065 0.3666493 0.5653249 0.7388531 0.4337596 -0.04129153 0.9000519 0.1281472 -0.6813563 0.7206031 -0.05838185 -0.8223823 0.5659047 -0.1691336 -0.8700827 0.4629353 0.2927336 0.7599414 0.5803095 -0.8394116 0.3617054 0.4056215 -0.6012147 0.7329325 0.3182775 -0.3096713 0.9251992 0.2192144 -0.05215609 0.9820551 0.1810663 0.1711173 0.9330424 0.3163854 -0.004242062 -0.8195136 -0.572985 0.01806694 -0.8158513 -0.577929 0.2694174 -0.8925749 -0.3614612 0.2280343 -0.8242744 -0.5182043 0.04980617 -0.8325755 -0.5516526 0.5584277 0.6642964 -0.4968108 0.5649892 0.6147344 -0.5503098 0.3243812 0.8190863 -0.4730674 0.4606464 0.7539903 -0.4682455 -0.985107 0.00653094 -0.1717886 -0.8208869 -0.05215609 0.5686819 -0.7916806 -0.04684591 0.6091189 -0.446028 0.4819177 0.7541429 -0.5425276 0.5380718 0.6450392 -0.3295388 -0.07187104 0.941374 -0.8152409 0.4475845 0.3674123 -0.8378857 0.5048372 0.2074343 -0.558977 0.7852107 0.2663655 -0.2934355 0.912595 0.2846156 -0.05697804 0.9674978 0.2462843 -0.1122165 0.8992889 0.4226813 0.139256 0.9680166 0.2085635 0.3679006 0.9093601 0.1940672 0.1300699 0.8352306 0.5342876 0.2008118 0.5402387 0.8171636 0.9424726 0.03216648 0.3326823 0.8964812 0.09686571 0.4323252 0.6769921 -0.5737785 0.46086 0.03161716 -0.9036531 0.427015 0.07889032 -0.9680166 0.2381359 -0.4622638 -0.8081912 0.3648488 -0.3512375 -0.9279153 0.1247596 -0.7464217 -0.5739006 0.3368633 -0.8793603 -0.4662007 -0.09653002 -0.9003571 -0.2967925 0.318186 -0.9697256 -0.03509628 0.2414014 -0.8239082 0.4897916 0.2850124 -0.7982727 0.4540238 0.395703 -0.5336772 0.7447432 0.4006165 -0.2931913 0.868923 0.3986938 -0.1318094 0.8993194 0.4168828 -0.09610277 0.9425947 0.3197424 -0.02069151 0.8971831 0.4411451 0.1229285 0.8665121 0.4837489 0.2327647 0.9060946 0.3532212 0.5124363 0.4525895 0.7297586 0.5148168 0.1996216 0.8337047 0.7185278 0.1436811 0.6804712 0.3162938 -0.2487564 0.9154332 -0.07104706 -0.562273 0.8238472 -0.03363138 -0.7272561 0.6855068 -0.4512772 -0.5781121 0.6797693 -0.491409 -0.6683859 0.5583361 -0.758507 -0.3979919 0.5159764 -0.9032868 -0.2380138 0.3568834 -0.8894009 -0.1587573 0.4286324 -0.9153417 0.005127072 0.4025697 -0.6224555 0.3829157 0.6825464 -0.4850917 0.5706046 0.6626179 -0.5347759 0.680868 0.500412 -0.3126621 0.6920377 0.6505936 -0.1481673 0.7440413 0.6514481 -0.1313211 0.8691061 0.4768212 -0.0916776 0.7444685 0.6613056 -0.04055905 0.7226783 0.6899625 0.08258306 0.8304392 0.5509201 0.4190496 0.429548 0.7999207 0.2451857 0.3723563 0.8950774 0.1947996 0.1675771 0.9663991 0.06720173 -0.02502512 0.997406 -0.1386455 -0.2132939 0.9670705 -0.1155431 -0.4245735 0.8979766 -0.3994873 -0.2460097 0.8830836 -0.4334544 -0.4587543 0.7756279 -0.6375927 -0.09308141 0.7647023 -0.8221076 -0.02853477 0.5685598 -0.7283242 0.078341 0.6806543 -0.7243568 0.1520737 0.6723838 -0.6974395 0.4191107 0.5812861 -0.2189397 0.2557756 0.9415876 -0.6786706 0.3233436 0.6593829 -0.4750816 0.5407575 0.6941435 -0.1440778 0.7473678 0.6485489 0.04702901 0.7599414 0.6482437 0.05456709 0.7128514 0.6991485 0.2285531 -0.07791376 0.9703971 0.3218177 0.08853417 0.9426252 -0.08536022 -0.1747184 0.9808954 -0.4173101 -0.1964476 0.8872341 -0.5227211 -0.07785272 0.8489334 -0.5847041 0.1458479 0.797998 -0.617542 0.3340861 0.7119969 -0.7006134 -0.6808069 -0.213538 -0.4634846 -0.7555162 -0.4629658 -0.5192419 -0.6851406 -0.5107883 -0.3187353 0.9396344 0.1242713 -0.3317973 0.8821375 -0.3342387 -0.2719199 0.8963897 -0.3500168 -0.3655202 -0.7376934 -0.5676138 -0.4615924 -0.6494033 -0.6042665 -0.2480544 0.7227699 -0.6449782 -0.2886441 0.8247627 0.4862209 -0.2758568 0.8189032 0.5032197 -0.2336192 0.9133275 0.3334757 -0.769982 -0.6212043 0.1456038 -0.516831 -0.7589648 -0.3959776 -0.5973998 -0.6000244 -0.5319986 -0.3244118 0.132786 -0.9365215 -0.3236182 0.560625 -0.7621693 -0.2471694 0.5316935 -0.8100223 -0.2288888 0.9072237 -0.352855 -0.09961241 0.9949034 0.01419109 -0.2195807 0.9714652 0.08941918 -0.1330301 0.9831233 0.1254006 -0.07989746 0.9950255 0.05941951 -0.227485 0.9013642 0.3684499 -0.5798212 0.536607 -0.6130253 -0.5401777 0.7492905 -0.3830378 -0.3287149 0.8583636 -0.3938413 -0.739433 0.5848262 -0.3334452 -0.7409894 0.6657308 0.08777123 -0.5626087 0.8264412 -0.02023375 -0.3656423 0.8474685 0.3847469 -0.3161718 0.8834803 0.3456526 -0.3881039 0.7032991 0.5955687 -0.8198798 0.174047 0.5454268 -0.4599139 0.6594135 0.5946531 -0.5118564 0.188879 0.8380383 -0.765801 0.08847314 0.6369213 -0.7310404 0.4146855 0.5418256 -0.3774224 0.4904325 0.7854854 -0.359508 0.2935575 0.8857387 -0.8121891 0.5224463 0.2594989 -0.8535417 0.4502701 -0.262093 -0.9019135 0.3473312 -0.2566301 -0.6653035 0.2108829 -0.7161474 -0.614246 0.06720173 -0.7861874 -0.3713797 -0.03915524 -0.9276406 -0.2128666 -0.4207282 -0.8818323 -0.2590716 -0.1731925 -0.9501633 -0.2277291 -0.1746879 -0.957915 -0.1332743 0.9879452 0.07846307 -0.02465891 0.9995422 0.01696825 -0.5484482 0.6918241 0.4696188 -0.4001587 0.8699911 0.2880337 -0.6015809 0.3438521 0.7209998 -0.5979797 0.5163121 0.6129948 -0.9607227 -0.150151 0.233253 -0.9103671 -0.3835566 0.1550645 -0.9731132 -0.2229987 0.05737477 -0.5937376 -0.7404096 0.315012 -0.8168889 -0.5450301 0.1886349 -0.8501541 -0.4280526 0.3064974 -0.1844844 -0.6787011 -0.7108371 -0.2284615 -0.6135136 -0.7558519 -0.07101655 -0.1222571 -0.9899289 -0.07995849 -0.3932615 -0.9159215 -0.2222357 -0.4235054 -0.8782007 -0.2315134 0.648732 -0.7249367 -0.1803644 0.4731284 -0.8622699 -0.09805595 0.3421735 -0.9344767 0.2448805 0.106357 0.963683 -0.09707933 -0.1477401 0.9842219 0.1858272 0.04470956 0.9815363 -0.1556444 -0.6243477 -0.7654348 -0.176397 -0.5732597 -0.8001343 -0.1345255 -0.5139927 0.8471328 -0.6334422 -0.1879635 0.7506027 -0.1722465 -0.1573229 -0.9723808 -0.2337718 -0.4507279 -0.8614765 -0.8521073 -0.5170751 -0.08087402 -0.5560778 -0.6863918 -0.4686422 -0.5008698 -0.7455672 -0.4395886 -0.8479568 -0.493759 -0.1926938 -0.9434492 -0.2983184 -0.1445356 -0.9330729 -0.3536485 0.0653401 -0.2633137 -0.6480301 -0.7146214 -0.2730186 -0.7300028 -0.6265145 -0.1125217 -0.6459853 -0.7549669 -0.1395611 -0.528367 -0.8374584 -0.1269569 -0.6061891 -0.7850887 -0.308237 0.05246126 0.9498581 -0.03872793 0.1394085 0.9894711 -0.2124698 0.7990356 0.5624561 -0.08096557 0.8232063 0.5619068 -0.02465891 0.9697256 0.2428358 -0.1564073 0.4327524 -0.887814 -0.2651143 0.5187537 -0.8127689 -0.3625904 0.4879605 -0.793939 -0.5170751 0.7891171 0.331492 -0.6581927 0.7451094 0.1073641 -0.380169 0.9160131 0.1277505 -0.6126286 0.6578875 -0.4379711 -0.379223 0.8266243 -0.4157232 -0.9835506 -0.1615344 -0.08059936 -0.9860836 0.02337718 0.1644948 -0.3624378 -0.009308099 0.9319437 -0.8415784 0.4028138 0.3597522 -0.9318522 0.3021332 -0.2008728 -0.5465255 0.004455685 -0.8373974 -0.2735069 -0.2410352 -0.9311503 -0.5604724 0.3271584 0.760796 -0.06833094 -0.5216834 -0.8503677 0.1395306 0.8838466 0.4464247 -0.1471297 -0.4186224 -0.8961455 -0.1606494 -0.5255898 -0.8353832 -0.1896725 0.3708915 -0.9090548 -0.1992553 0.2621235 -0.9442121 -0.4182562 -0.2744224 0.8658711 -0.2368847 -0.5222327 -0.8192083 0.5300149 -0.6237983 0.5743584 -0.4082156 0.8292185 0.3817255 -0.1633656 0.9800714 0.1128879 -0.1056856 0.9896848 0.09665209 -0.1944639 -0.1394085 -0.9709464 -0.09225744 0.9954833 0.02108824 -0.313242 0.8869289 0.3393964 -0.466506 0.6109806 0.6395459 -0.2213507 0.9028901 0.3684499 -0.1595507 0.9783319 0.1318094 -0.01498454 0.9865719 0.1625721 -0.03122043 0.9600818 0.2779321 0.08154541 0.9682608 0.2361522 0.1175878 0.96292 0.2427442 -0.3909421 0.7791376 0.4899747 -0.4384594 0.1964781 -0.8769799 -0.6540117 0.3627735 -0.6638081 -0.2576373 0.9646901 -0.05435341 -0.1459395 0.9764092 0.1590014 -0.162389 0.4469131 -0.879696 -0.1383404 0.0936613 -0.985931 -0.2340769 0.1027253 -0.9667654 -0.05810719 0.09405803 -0.9938658 -0.2030701 0.07818841 -0.9760125 -0.638081 -0.7673269 0.06320381 -0.6872158 -0.7261574 -0.01937925 -0.8399304 -0.5351726 0.08984649 -0.7308267 -0.6664022 -0.147618 -0.4387035 -0.8037355 -0.4018678 -0.2774743 -0.7968993 -0.5365765 -0.1249427 -0.6668599 -0.734611 -0.06295967 0.7066561 0.7047334 -0.01867729 0.7331767 0.6797388 -0.1717581 0.6974395 0.6957305 -0.4233222 -0.3182165 0.8482314 -0.08273565 0.8083438 0.582812 0.0295419 0.8982208 0.4384594 -0.1816461 0.8209784 0.5412458 -0.4919279 0.7473068 0.4466689 -0.351207 0.7513962 0.5585803 -0.495529 0.3457442 0.7967773 -0.4450209 0.4200873 0.7908567 -0.3336894 0.5165868 0.7885068 -0.1760918 0.5704215 0.8022401 -0.1462447 0.5743584 0.805414 -0.1661427 0.557329 0.8134709 -0.002044737 0.2805261 0.9598071 -0.001678466 0.142674 0.9897458 -0.04098635 0.07492291 0.9963378 -0.1671499 0.01635789 0.9857784 -0.3322245 0.00979644 0.9431135 -0.4667501 0.07773059 0.8809473 -0.5614795 0.1682485 0.8101749 -0.5783258 0.2453383 0.7780084 -0.7066561 0.4166692 0.5717948 -0.7061068 0.4746544 0.5254067 -0.5858944 0.6705527 0.45497 -0.2142094 0.8623921 0.4586017 0.01498454 0.8508256 0.525193 0.1813409 0.817011 0.5473189 0.4304941 0.3292031 0.8403882 0.3462935 0.02246159 0.9378338 0.2598651 -0.2161626 0.9411298 -0.1876888 -0.295938 0.9365521 -0.4221931 -0.1972411 0.8847621 -0.5843074 -0.09595018 0.8058108 -0.7342448 0.08182013 0.6739097 -0.770043 0.277047 0.5746635 -0.8652913 0.4623859 0.1934873 -0.8215583 0.5294351 0.2114322 0.192053 0.9754021 0.108005 0.422132 0.8883023 0.1807306 0.7619861 0.3448897 0.5480514 0.7135533 -0.03833121 0.6995148 0.5511948 -0.4160588 0.7231971 0.1535081 -0.6567278 0.7383038 -0.5041047 -0.5018464 0.7028108 -0.7409894 -0.3062227 0.5975829 -0.8828089 -7.62963e-4 0.4697104 -0.9119236 0.24073 0.3322245 0.3014008 0.3435469 0.8894314 -0.1387981 -0.5073397 -0.8504593 -0.07864618 -0.5220191 -0.8492691 -0.2378917 -0.5758843 -0.7821283 -0.5883663 -0.5488144 -0.5937681 -0.9368572 -0.3489486 -0.02136296 -0.9501938 -0.3006684 0.08133178 -0.9897763 0.1043123 0.09704881 -0.9429914 0.1742607 0.2834559 -0.7302164 0.4173406 0.5409101 -0.8179571 0.1849421 0.5446944 -0.7028718 0.2233344 0.6753136 -0.5440535 0.2934355 0.7860042 -0.8950163 0.370922 0.2476271 -0.6151616 0.4213996 0.6663106 -0.03729361 -0.9979553 0.05188143 -0.06143373 -0.5823237 -0.8106021 -0.632313 -0.3428754 0.6946623 -0.1561937 -0.9374371 0.3110752 -0.623249 0.5296792 0.5752739 -0.5342571 0.6580096 0.5306254 -0.429487 0.5570544 -0.7107761 -0.9150364 -0.3971374 -0.07000946 -0.7961059 -0.5988647 -0.08682513 -0.7664418 -0.6183661 -0.1736198 -0.2826319 0.931547 0.2286446 -0.2103335 0.965331 0.1544236 -0.2742393 0.1797235 0.9447005 -0.1243629 -0.7195349 -0.6831874 -0.8992889 -0.4348277 0.04672384 -0.7750481 -0.4672689 0.425367 -0.7076022 -0.2682882 0.653676 -0.9671316 0.1588793 0.1984618 -0.9479049 -0.0167241 0.3180029 0.4982147 -0.3869747 0.7758721 0.6983551 0.460738 0.5476852 0.05197298 0.9420453 0.3313394 -0.2894375 0.9058809 0.3091525 -0.5467696 0.7809382 0.3018586 -0.9048738 0.1720938 0.3892636 -0.8301645 0.07098603 0.5529344 0.2058168 -0.1433759 0.9680166 0.3885922 0.1898251 0.9016084 -0.03192234 0.865627 0.4996185 -0.3133335 0.8245796 0.4710227 -0.1001923 -0.5527207 -0.8272958 -0.9896237 -0.1382793 0.03827017 -0.7546617 0.3741874 0.5389264 0.8478042 0.4810022 0.2231819 -0.1161839 0.4049501 0.906888 0.8018128 0.5710623 0.1758781 0.5937376 0.6631367 0.4557329 0.4281136 0.6384778 0.6395459 0.3646351 0.607654 0.7055269 -0.04647964 0.4238716 0.9045076 0.3893551 0.5943785 0.7036042 0.7071139 0.5963927 0.3798334 0.04593032 0.7927793 0.6077456 -0.5367901 0.4716941 0.6995148 -0.2420423 0.4779503 0.8443556 -0.417188 0.06509596 0.9064608 -0.7261269 0.09656053 0.6807154 -0.8745384 0.1116062 0.4718772 -0.7415083 0.4189276 0.5240333 -0.9559923 0.1184423 0.2683798 -0.8581805 0.3950621 0.3277688 -0.9877316 0.1356242 -0.07715076 -0.9375591 0.3469954 0.02380442 -0.8213447 0.322367 -0.4705344 -0.4397107 0.2739036 -0.8553118 -0.8224738 0.1466414 -0.5495468 -0.07245093 0.2531815 -0.9646901 -0.4341258 0.1092257 -0.8941923 -0.2607501 0.8398999 0.4759666 -0.1148411 0.4321116 -0.8944365 0.0469985 0.08172857 0.9955138 0.07165741 0.5024262 0.8616291 -0.1097446 0.8025758 0.5863216 -0.2034059 0.9757989 0.07989746 -0.6412854 0.7497177 0.163213 -0.19718 0.9329814 0.3010041 -0.25309 0.802057 0.5409101 -0.2581561 0.8118839 0.5235756 -0.2751549 0.8661763 0.417127 0.4109622 0.7554857 0.5101779 0.6269723 0.7557299 0.1889401 0.4307077 0.8109378 0.3959776 0.2934965 0.7754143 0.5590686 0.2492141 0.7357708 0.6296579 0.1020234 0.6508377 0.7523118 -0.1133762 0.5027314 0.8569598 0.2990509 0.7272256 0.6177862 0.5876339 0.7670217 0.2574847 0.2076174 0.6839808 0.6993011 0.2713096 0.5438703 0.7940917 0.04882961 0.8373364 0.5444502 -0.5332194 0.4417554 0.721427 0.2053591 0.5387738 0.817011 -0.255562 0.4484084 0.8564409 -0.1404156 0.9506821 0.2765282 0.0114749 0.8801233 0.4745628 -0.03836172 0.9699088 0.2403942 0.0167241 0.8518632 0.523484 0.002471983 0.8171941 0.5763115 0.04663223 0.7708976 0.6352123 0.0458998 0.7593616 0.6490371 0.2595905 0.6120182 0.7470015 0.04333627 0.01162755 0.9989624 0.5625172 -0.5186011 0.6438795 0.7720878 -0.6353648 -0.01348912 0.6643269 -0.6159856 -0.4232917 0.190466 -0.3415937 -0.9203162 -0.5294351 0.0778222 -0.8447218 -0.9207739 0.3419904 -0.1875057 -0.8356884 0.4114505 0.3637501 -0.8402051 0.3730278 0.3934751 -0.5875424 0.3876461 0.7102573 -0.2370067 0.2688375 0.9335612 0.2721946 -0.006164729 0.9621876 0.8569903 -0.344554 0.3831599 0.8550981 -0.4408704 -0.2727744 0.6588641 -0.450972 -0.6020691 0.1067537 -0.2644734 -0.9584338 -0.6226692 0.1365398 -0.7704703 -0.9160131 0.3693655 -0.1563463 -0.8334605 0.4263131 0.3514512 -0.5931883 0.3739128 0.7129124 -0.2570879 0.2439039 0.9350872 -0.289407 0.1983703 0.9363994 0.2882473 -0.1008026 0.9522081 -0.8247627 0.4230781 0.3751335 -0.5954467 0.3626209 0.7168798 -0.9277017 0.3614307 -0.093234 -0.7190466 0.1338236 -0.6819056 0.03930783 -0.2612079 -0.9644765 0.6051821 -0.4176763 -0.677694 0.8717612 -0.408887 0.2697836 0.8153325 -0.4288156 -0.3889584 -0.9354534 -0.3349711 0.1126438 -0.8902249 -0.3395184 0.3035676 -0.5655996 -0.6779687 0.4694357 0.03128147 -0.3804132 -0.9242531 -0.3583178 -0.3390301 -0.8698385 -0.2572405 -0.6367687 -0.7268288 -0.634846 -0.3635975 -0.681692 -0.8734092 -0.3862423 -0.2964873 -0.441847 -0.6761071 -0.5895871 -0.9763482 -0.01745659 0.2153691 -0.5385296 -0.2459181 0.8058718 -0.796289 -0.4555193 0.3979919 -0.01873832 -0.1214331 -0.9924009 -0.4425794 -0.04651015 -0.8955046 -0.7900021 0.001068115 -0.6130558 -0.9858089 -0.001708984 -0.1676992 -0.2141484 -0.7504196 -0.6252632 -2.74667e-4 -0.7445296 -0.6675619 -0.7995239 -0.130375 0.5862911 -0.9079562 -0.05081331 0.4159063 -0.04101687 0.06347846 -0.9971313 -0.1098666 -0.8371227 0.535844 -0.04422128 -0.32078 0.9461043 0.7420271 0.6650288 0.08371227 0.4330881 0.8734092 0.2225104 0.4276559 0.9016084 0.06463819 0.08804589 0.9280984 0.3617359 -0.02655106 0.9690237 0.2454603 0.1951963 0.9651784 0.1741081 -0.04788351 0.8236946 0.5649892 -0.4321116 0.8272958 0.3588977 -0.2101809 0.9335917 0.2900784 -0.9069185 -0.4206366 0.02252262 -0.7489547 -0.2837306 0.5987427 -0.553209 -0.7120579 0.4322642 0.281045 -0.868099 0.4091311 0.2306588 -0.8724632 0.4307382 0.6918241 -0.7220069 0.00653094 0.7458419 -0.6422926 0.1763665 0.8420972 -0.446852 -0.3019501 0.9602344 -0.2725303 -0.06009089 0.8735923 -0.1649525 -0.4578081 0.9024323 0.1326639 -0.4098331 0.9436628 0.2694174 -0.1920835 0.7623218 0.6453749 -0.04818868 0.4563127 0.8833888 0.1064485 0.5154882 0.8314158 0.2073122 0.06326484 0.9481796 0.3112888 0.1344645 0.9149144 0.3805048 0.2721946 0.9125034 0.3052766 -0.1685232 0.8595538 0.4823756 -0.02426218 0.8377636 0.5454573 0.07055878 0.8973662 0.4355297 -0.3390301 -0.02670365 0.9403668 -0.1511887 0.1007721 0.9833369 -0.2120121 0.3658559 0.9061861 0.435194 -0.6440016 0.6291391 0.5502182 -0.4462111 0.7057405 0.1507004 -0.253914 0.9553819 0.8130436 -0.4816736 0.3269753 0.8298593 -0.351146 0.4335765 0.9833064 -0.1520127 0.0999481 0.9788812 -0.08777123 0.1844539 0.9914854 0.1282693 -0.02209538 0.9498886 0.3014313 -0.08249151 0.954619 0.2936796 0.04892116 0.5697196 0.7825556 0.2509232 0.5891293 0.6980193 0.4069643 0.7574389 0.527543 0.3845943 0.09955137 0.9269082 0.3617664 0.1957152 0.8331859 0.5171667 0.3863033 0.8026063 0.4544816 -0.1051973 0.8324229 0.544023 0.05624556 0.7699515 0.635609 0.1342204 0.8210089 0.554857 -0.2064882 0.3754692 0.9035005 -0.05716115 0.1256142 0.9904172 0.1503036 0.1535386 0.9766228 0.2255623 -0.1390728 0.9642323 0.5628834 -0.294351 0.7723319 0.5549791 -0.09292882 0.8266243 0.8115177 -0.2147282 0.5434126 0.7546922 -0.03802603 0.6549577 0.9466842 0.04025387 0.3195898 0.8718833 0.1711783 0.4587848 0.9410993 0.2760399 0.1952269 0.9284341 0.3233741 0.1828058 0.8640705 0.3725394 0.3384503 0.7697378 0.5749992 0.2771386 0.802881 0.4810022 0.3521226 0.5156713 0.333903 0.7890256 0.5905637 0.6538591 0.4729453 0.2347179 0.7874996 0.5698416 0.06057924 0.7615284 0.6452528 0.08319342 0.7160558 0.6930449 0.06460767 0.06106752 0.9960326 0.1926633 -0.08169806 0.9778436 0.4976043 -0.1126133 0.8600421 0.7628712 -0.0707724 0.6426283 0.8184759 0.06497389 0.5708182 0.8089236 0.2941984 0.5089572 0.766686 0.4812769 0.4248481 0.5062716 -0.5095981 -0.6956694 0.4859768 -0.5085604 -0.7107456 0.7874081 -0.3824275 -0.4834437 0.1074251 0.9921262 0.06427198 -0.07989746 0.9334391 -0.3496506 -0.0482192 0.9524217 -0.3009125 0.1799066 -0.5466476 -0.817774 -0.2751854 0.5728935 -0.7720267 -0.2428663 0.7940001 -0.5572375 0.2290109 0.9258705 0.3004853 0.1810052 0.9483932 0.2602924 0.2012695 0.95468 0.2192144 0.5033723 -0.3878292 -0.7721183 0.58034 -0.4000977 -0.7092807 0.9216895 0.04745626 -0.384991 -0.1890011 0.5994751 -0.7777032 -0.2106692 0.1499679 -0.9659719 -0.03125095 0.9982299 0.05017238 -0.1058382 0.9289529 -0.3546556 0.04721212 0.9906613 0.1278725 0.1595507 0.9528489 0.257973 -0.03192234 0.882931 -0.4683981 0.1611377 0.7799005 -0.6047853 0.09585863 0.5469222 -0.8316599 0.3806879 0.8729515 -0.3049715 0.6104923 0.6642964 -0.4312571 0.3464461 0.5764641 -0.7400128 0.3810846 0.9151586 0.1311991 0.6522721 0.727195 0.2136906 0.6033204 0.7621082 0.2348399 0.4361705 0.8329722 0.3403729 0.8914151 0.432844 0.1340067 0.7812433 0.6118046 0.123722 0.9529405 0.2659688 0.1453902 0.9211097 0.2622761 0.2876675 0.8092898 0.5272073 0.2589495 0.8111209 0.5429243 0.2173833 0.455031 0.2912076 -0.8414869 0.4224982 0.3984497 -0.8140507 0.7604602 0.4744102 -0.4434034 -0.1035493 0.01962339 -0.9944151 0.03723257 0.1681569 -0.9850459 -0.2080141 -0.08468884 -0.9744255 -0.1999573 -0.1745353 -0.9641103 -0.2080141 -0.1901303 -0.9594409 -0.1654408 -0.4335765 -0.8857693 0.0386669 0.995117 0.09051787 0.1768547 0.9825129 0.05810719 -0.1004669 0.9910581 0.08761864 0.399823 0.9150059 0.05368202 0.6982635 0.7158116 0.002838194 0.9508042 0.3072298 -0.03921627 0.8474075 0.33961 -0.4080935 0.8620563 0.1637012 -0.4796289 0.8992584 -0.04208499 -0.435316 0.9314554 0.1770684 -0.3177587 0.9690847 -0.1850032 -0.163213 0.9380169 -0.272927 -0.213477 0.9060335 -0.4225288 -0.02288883 0.1530808 -0.5817438 -0.7987915 -0.1072725 -0.5673391 -0.8164312 -0.08160644 -0.3717154 -0.9247108 -0.2422864 -0.4052553 -0.8814966 -0.3272194 -0.1398358 -0.9345073 -0.3380535 0.4867702 -0.8054445 -0.346324 0.3645741 -0.8643453 -0.2362437 0.5441145 -0.8050478 0.5221717 0.1857356 0.8323313 0.2651754 -0.3210547 0.9091464 0.9689322 -0.01767021 0.2465896 0.7350383 -0.3108615 0.6025269 -0.0477004 -0.3895688 -0.9197363 -0.2425001 -0.1504257 -0.9584033 0.4264351 -0.4801172 -0.7665639 0.4324473 -0.375042 -0.8199408 0.7622608 -0.1994079 -0.6157414 0.942259 -0.05868709 -0.3296304 0.9435713 -0.01342809 -0.3308817 0.9163793 0.03033536 -0.3991211 0.1214026 -0.5742668 -0.8095645 0.09042632 -0.4931486 -0.8651998 -0.123722 -0.6029847 -0.7880489 -0.1659291 -0.53502 -0.8283639 0.7900937 0.1357158 0.5977355 0.1211889 0.9672842 0.2227851 -0.02203434 0.9695425 0.2438428 0.1499069 0.8517411 0.5020295 0.1117283 0.5643483 -0.8179266 -0.0909146 0.6208381 -0.7786188 0.2041993 0.9692068 0.1375469 0.2265083 0.9713126 0.07229834 0.5673696 0.8231147 -0.02258366 0.01879936 0.9349346 -0.3542283 0.4082461 0.7648854 -0.4982452 0.8879971 -0.1535081 -0.4334239 0.9398175 0.2863857 -0.1862545 0.9051179 0.03268527 0.4238716 0.9157079 0.2129581 0.3407391 0.9107028 0.3055208 0.2779015 0.5060274 0.2310556 -0.830958 -0.2998443 -0.07864618 -0.9507126 -0.5575426 -0.5089572 -0.6558123 -0.3628651 -0.2955412 -0.8836939 0.9454634 0.3238014 -0.03476053 0.8634297 0.3077181 -0.3997009 -0.1961119 -0.5281533 -0.8261666 -0.1123996 0.8616901 0.4947966 0.04165774 -0.4983367 -0.8659627 0.3462325 0.9135106 0.2134464 0.2585833 0.8957488 0.3615528 0.01498454 0.9969176 0.07690662 -0.04635757 0.9975585 0.05169832 0.2598956 0.9521775 0.1605884 0.5475326 0.8180487 0.1759392 0.08465832 0.9896848 0.115421 -0.1697134 0.9398175 0.2964263 0.3199256 0.9067965 0.2744835 -0.1181982 0.2099368 -0.9705191 -0.07724231 0.5831477 -0.8086795 0.07641834 0.9906919 -0.1123996 -0.2909635 0.122837 -0.94879 -0.3481857 0.1001617 -0.9320353 -0.371868 0.08163696 -0.9246803 0.8598895 -0.4096499 -0.3045442 0.924131 -0.256325 -0.2832423 0.4627522 -0.5148168 -0.7216407 0.7834712 -0.3475448 -0.5151219 0.145146 -0.6161687 -0.774102 -0.09781181 -0.6098514 -0.7864315 -0.09607225 -0.649617 -0.7541429 0.1672109 0.7630238 0.6243172 0.2198553 0.7283853 0.6488845 0.00112915 0.8926664 0.4506668 0.1697744 0.8451491 0.5068209 0.21601 0.8838771 0.4148076 0.634724 0.5268716 0.5652028 0.3654592 0.6236152 0.6910306 0.3696097 0.6072573 0.7032685 0.3416547 0.6221504 0.7043977 0.3663442 0.1806085 0.9127476 0.3233741 0.3144322 0.8924833 0.3376568 0.01156651 0.9411908 0.5361186 0.1193579 0.8356273 0.6580706 0.160741 0.7355877 0.7297586 0.2513809 0.6357616 0.8721885 0.3442183 0.3474532 0.7605212 0.4182562 0.4966277 0.7456588 0.6296884 0.2177801 0.7771844 0.5741142 0.2575762 0.5135655 0.6002991 0.6130558 0.2019104 0.9061251 0.3716544 -0.1090731 0.7858211 0.6087222 0.02490305 0.851619 0.5235145 0.05413979 -0.008270502 0.9984741 0.4190801 0.1304056 0.8984954 0.5939818 -0.2046266 0.7780084 0.7665944 -0.0554521 0.639668 0.8577227 0.06796467 0.5095371 0.8573565 0.4593341 0.2321543 0.9037752 0.2671285 0.3343303 0.7090671 0.6962798 -0.1112704 0.7584155 0.6353038 -0.1454512 -0.4860073 0.79223 0.3689688 -0.3254494 0.9207129 0.2152776 -0.1203955 0.2701498 0.9552294 -0.3572497 -0.1524704 0.9214759 0.1818292 -0.2240974 0.9574267 0.2847072 -0.6428114 0.7111423 0.8296762 -0.3597827 0.4268013 0.9613941 -0.1247901 0.2450941 0.8999298 0.4337596 -0.04385507 0.9766839 0.1973021 0.08453625 -0.1263161 -0.4881741 0.8635212 -0.5374004 0.2066103 0.8175909 -0.1893368 -0.5163121 -0.8351696 0.08145385 -0.4926603 -0.8663595 0.3632313 -0.4421827 -0.8200629 0.8394421 -0.03540146 -0.5422529 0.9360637 -0.03549301 -0.3499863 0.9166845 0.3476669 -0.1969664 0.961333 0.2349315 -0.1436506 0.7347026 0.6732994 -0.08252203 0.9040803 0.4098331 -0.1209448 0.7976623 0.5981933 0.07638782 0.8478347 0.3966796 0.3517869 0.911832 0.3663442 0.1852168 0.8041017 0.5550706 0.212775 0.6924345 0.4680624 0.5489975 0.7339091 0.4378491 0.5192419 0.8252816 0.5537584 -0.1104465 0.812891 0.5441756 0.2073428 0.7290567 0.5641652 0.3874935 0.2629169 -0.9641408 0.03579819 0.5791803 -0.7884152 0.2070986 0.9414045 -0.2895291 0.1727958 0.5981933 0.7558825 0.2659688 -0.04525893 0.9940794 0.09872734 0.08438366 0.9882809 0.1269569 0.7761162 -0.1981872 -0.59859 0.7932676 -0.2542192 -0.553209 0.8370617 -0.3387249 -0.4296091 0.07254248 0.9945677 0.07446515 0.4529252 0.8807642 0.1380657 0.1248817 0.985931 0.1108432 0.3427839 0.9256874 0.1598864 0.8644673 0.5009613 -0.04092532 0.985168 0.02764976 -0.1692861 0.9808039 0.1799677 0.07492291 0.7682424 0.3530687 0.5339518 0.8949858 0.4085513 -0.178991 -0.3849605 -0.6897488 0.6131779 -0.4209113 0.3042696 0.8545183 -0.03982663 0.9244362 0.379162 0.2122867 0.9520554 0.2201605 0.9231849 0.3829157 0.03262424 0.004364132 0.9092075 0.416303 0.3068026 0.9027985 0.3013398 -0.03176975 -0.4331187 0.9007538 -0.9438765 0.08905297 0.3180334 -0.8093509 0.3356731 0.4819177 -0.3881039 0.563921 0.7289041 -0.1718192 0.5830562 0.7940306 -0.2759178 0.5645314 0.7778863 -0.02227848 0.3578906 0.9334697 0.318247 0.4639729 0.8266854 -0.1065401 0.5368511 0.8368785 -0.1892147 0.5349895 0.8233894 -0.6049074 0.4570757 0.6519975 0.01062041 0.3126316 0.949797 -0.1435285 0.9497055 0.2782372 0.5715202 0.6113773 0.5472884 0.7785882 0.115482 0.6167791 0.4821009 0.09433269 0.8709983 0.7683645 0.5481735 0.3302408 0.9195227 0.07406842 0.385937 0.8794214 0.4624165 0.112949 0.9891964 0.001525878 0.1464583 0.9278542 0.3249 -0.18305 0.9800409 -0.02194279 -0.1974547 0.7375714 0.2987152 -0.6055483 0.7735832 0.03027433 -0.6329234 0.3131809 0.2699057 -0.9105197 0.3571887 0.05917537 -0.9321268 0.1629383 0.8485061 0.5034639 0.3604541 0.5566881 0.7484054 0.01806694 0.9993286 0.03176975 0.487289 0.8699301 -0.07547223 0.2633748 0.9121677 0.3138828 0.1856746 0.960326 0.2079531 0.3507492 0.8714255 0.3428144 0.2750939 0.8983429 0.3424177 0.2214728 0.9356975 0.274575 0.5664235 0.7977843 0.2064882 -0.6188849 0.5328227 0.5770745 -0.6723228 0.5890988 0.4482253 -0.2998749 0.7350688 0.6080203 -0.1192052 0.7243874 0.6789758 -0.2468032 0.690115 0.6802576 -0.07950067 0.6551103 0.7513047 0.3465682 0.5486313 0.760796 -0.1689199 0.6787317 0.714652 -0.5800958 0.6432996 0.4996185 -0.04837179 0.6569414 0.7523423 -0.04007077 0.5108188 0.8587298 0.07254248 0.8309885 0.5515 0.2829982 0.8612629 0.4219794 0.3014008 0.8831141 0.359508 0.1082797 0.3467513 -0.9316691 -0.2355418 0.7331156 -0.637959 -0.06479078 0.981872 0.1780755 0.01382488 0.8403882 0.541734 0.02075254 0.8313242 0.5553758 -0.08780175 -0.4519181 0.8876919 -0.7272256 -0.5056002 0.464156 -0.8840297 -0.3024079 -0.3563341 -0.8834803 -0.4296091 0.1866207 -0.3090609 0.01132231 -0.9509568 0.8203986 0.3624073 -0.4422132 0.4937285 0.2745445 -0.8250984 0.9173254 0.389935 -0.08005005 0.7190466 0.05462813 0.6928007 -0.3372295 -0.2908414 0.895352 0.5651417 0.02731406 0.8245186 -0.84579 -0.3493759 0.40318 -0.8561357 -0.2419507 -0.4565263 -0.932371 -0.3426923 0.1149327 -0.2145451 0.07217627 -0.9740288 0.493698 0.294351 -0.8182623 0.8007447 0.3679617 -0.4725791 0.9329814 0.3519089 -0.07516705 0.8841823 0.3205054 0.3397626 0.9008454 0.2498245 0.3549607 0.5557116 -0.07715076 0.8277536 0.9437544 0.3188879 -0.08719134 0.8061159 0.3488571 -0.4779503 0.5304728 0.2763146 -0.8013855 -0.111362 0.06024348 -0.9919431 -0.8440199 -0.2351756 -0.4819483 -0.879574 -0.3237098 0.3485824 -0.4166082 -0.3405255 0.8428602 -0.9495834 -0.3061922 0.06704914 0.9252907 0.1818597 0.3327738 0.8215278 -0.5398114 0.1834467 0.4455092 -0.8718528 0.2033448 0.3846553 -0.7351909 0.558092 0.01416057 -0.6360058 -0.7715384 0.2696005 -0.6833094 -0.678518 0.3995483 -0.4290292 -0.8100833 0.7882626 -0.5841548 -0.1933042 0.6270333 -0.5084994 -0.5900754 0.4217963 -0.7470321 -0.5137791 0.9440901 -0.258034 0.2050843 0.7741935 -0.4990997 0.3892025 0.6543779 -0.5602588 0.5077975 0.4623554 -0.2728354 0.8436537 0.4153569 -0.1595813 -0.8955046 0.9453719 -0.2596515 -0.1969359 0.7565233 -0.1940672 -0.6244698 0.1967833 -0.7840205 -0.588702 0.3530687 -0.8189337 -0.4523453 0.7542344 -0.2132939 0.6209601 0.8772546 -0.2139958 0.4296396 -0.0821253 -0.6914274 -0.7177343 -0.7111728 -0.05047756 -0.7011628 -0.3257546 -0.595996 -0.7339091 -0.6579486 0.3048494 -0.6885586 -0.4039735 0.3980529 -0.823603 -0.2550737 0.4967803 -0.8295236 -0.1016266 0.5608081 -0.8216499 -0.1797235 -0.6828517 -0.70806 0.1281472 0.5692007 -0.8121281 0.006591975 -0.6746727 -0.7380596 -0.07080292 -0.9862667 -0.1491745 -0.5475631 -0.4309824 -0.7172155 -0.6572772 -0.6955168 -0.29017 -0.2132023 -0.9520859 -0.2192144 -0.6889554 0.600879 -0.4052553 -0.9446395 -0.03918576 -0.3257241 -0.2388989 0.8703879 -0.4304636 0.114658 0.8930326 -0.4351024 -0.1131016 -0.8431654 0.5255898 -0.6559038 -0.659505 0.3671377 -0.1930601 -0.8520157 0.4865566 -0.7972961 0.6034425 0.01062041 -0.2446058 0.9693594 0.02157658 -0.9658192 0.006805598 0.2590106 0.07415997 0.9945982 0.07242041 -0.04324471 0.420484 0.9062471 -0.3936582 0.4244819 0.8153325 0.178106 -0.715659 -0.6753441 0.08499401 -0.7067782 -0.7022615 0.806238 -0.1743217 -0.5652638 0.5872372 -0.5271157 -0.614185 0.3416852 -0.6555681 -0.6733909 0.5989563 0.314005 -0.7366253 0.8088931 0.1855525 -0.5578784 0.3435774 0.5212562 -0.7811518 0.4754784 0.4332408 -0.7656179 0.08926659 -0.9782708 -0.1869869 0.9677114 -0.1849116 -0.1711173 0.5693839 -0.8029115 -0.1762749 0.4471572 0.8129826 -0.3729362 0.8126164 0.5084384 -0.2847377 -0.02819907 -0.8625752 0.5050814 0.9522996 -0.06204408 0.2987762 0.4644917 -0.7403485 0.4858852 0.3807795 0.921598 0.07495343 0.8164617 0.5541856 0.1620227 0.3122959 0.3686941 0.8754845 0.7919248 -0.5724662 -0.2123478 0.8829615 -0.4685812 -0.02780234 0.843257 -0.5309916 -0.08319342 0.2393566 -0.6756798 -0.6972259 0.5172888 -0.6812647 -0.5179296 0.4957732 -0.7240822 -0.4794152 0.009949028 -0.648732 -0.760918 0.2863246 -0.7259438 -0.6252632 0.7357097 -0.629078 -0.2509537 0.008941888 -0.576159 -0.8172551 0.4019593 -0.6245308 -0.6695761 0.4266182 -0.540849 -0.7248756 0.5494552 -0.706412 -0.4461196 0.5908689 -0.6537675 -0.4726707 0.6814478 -0.6919462 -0.2382885 0.6513565 -0.7332682 -0.1948912 0.8018128 -0.5827204 -0.1321146 0.7158116 -0.6959441 -0.05700856 0.05517745 -0.3309732 -0.9420148 0.2905973 -0.3564562 -0.8879361 0.6460158 -0.3666188 -0.6694846 0.9131444 -0.3192846 -0.2533341 0.9574877 -0.2323984 0.1707816 0.1767807 -0.1035033 -0.978793 0.8862231 -0.1179755 -0.4479848 0.4424279 -0.1187118 -0.8889122 0.9877575 -0.1373863 -0.07389354 0.960326 -0.200415 0.193823 0.937254 -0.3210547 0.1358989 0.9507431 -0.2859584 0.1193579 0.9171118 -0.2414319 0.3171483 0.9288614 -0.2501907 0.2731102 0.9022797 -0.4231391 0.08239996 0.9022797 -0.4231391 0.08239996 0.9615772 -0.2426832 0.1282387 0.001190185 -0.7014679 -0.7126682 -0.901822 -0.3841059 -0.1977905 -0.9383221 -0.3019501 -0.1682791 -0.8372143 -0.4305856 -0.3371074 -0.5217444 -0.6427198 -0.5609302 -0.5319986 -0.5938597 -0.6035341 -0.2286141 -0.6384167 -0.7349162 -0.2956633 -0.6783959 -0.6725669 -0.7824336 -0.5063631 -0.3624378 -0.4420301 -0.4590594 -0.7705924 -0.4034242 -0.5495163 -0.7315897 -0.6335337 -0.5435041 -0.5506455 -0.5912961 -0.6040834 -0.534196 -0.7382122 -0.6061586 -0.2958769 -0.7454757 -0.5712149 -0.3433943 -0.8105716 -0.562212 -0.1639149 -0.8615375 -0.4425794 -0.2486648 -0.1865901 -0.317484 -0.9297159 -0.8949858 -0.1666921 -0.4137395 -0.569689 -0.2657857 -0.7776727 -0.9975891 -0.06927698 0.001953184 -0.01940089 -0.0878458 -0.9959452 -0.7832332 0.03829407 -0.6205476 -0.2955985 -0.05980962 -0.9534381 -0.9693398 0.01881027 -0.2450032 -0.9900815 -0.1310464 -0.05029445 -0.9853206 -0.1676076 -0.03213596 -0.9987487 -0.04409921 0.02255314 -0.9896543 -0.09704881 0.1053498 -0.9844661 -0.08966338 0.150914 -0.9581592 -0.274636 -0.08023315 -0.9953002 -0.08648943 -0.04281747 -0.7953429 0.2808619 -0.5371258 -0.6447035 0.2660604 -0.7166051 -0.6873379 0.128605 -0.7148351 0.08667254 -0.005249142 -0.9962157 -0.2783898 0.04901272 -0.9591968 -0.2426527 0.1757255 -0.9540391 0.06970423 -0.1977294 -0.977752 -0.2979827 -0.1658986 -0.9400311 -0.7113865 -0.08258306 -0.6978973 -0.8426771 -0.03656113 -0.5371258 -0.8283639 0.1488998 -0.5399945 -0.3070772 -0.4206061 -0.8536638 0.04110842 -0.4575945 -0.8881802 0.009216547 -0.6837062 -0.7296671 -0.6690268 -0.3134251 -0.6738792 -0.5902585 -0.5060884 -0.6288034 -0.7479476 -0.381756 -0.5429243 -0.6867581 -0.4682455 -0.5559252 -0.2409436 -0.7435835 -0.6237068 -0.2775658 -0.6385693 -0.7177343 -0.5398114 -0.5857723 -0.6045107 -0.7008881 -0.1779534 -0.6906949 -0.8116093 -0.2219916 -0.5403302 -0.3070162 -0.2808008 -0.909299 0.05667287 -0.3239235 -0.9443648 -0.8324229 -0.1180151 -0.5413984 0.8118534 0.008941888 -0.5837581 0.7923521 0.1513718 -0.5909605 0.910184 0.1447492 -0.3880123 0.09411907 0.09372234 -0.9911191 0.4281136 0.1221656 -0.8954131 0.4438002 -0.008606195 -0.896054 0.9220252 0.009216547 -0.3869442 0.9062777 -0.1761528 -0.3841975 0.7990661 -0.2031311 -0.5658437 0.3795892 -0.4754173 -0.7936033 0.7173986 -0.4240852 -0.5526597 0.8474075 -0.3544114 -0.3952757 0.760796 -0.5021821 -0.4110233 0.6899319 -0.5781121 -0.4355602 0.5369122 -0.6716819 -0.5103915 0.6027101 -0.6013062 -0.5245217 0.2247688 -0.7807551 -0.5829645 -0.01116973 -0.798883 -0.6013367 0.2931303 -0.6841029 -0.6678366 0.7726066 -0.2955718 -0.5618458 0.8841823 -0.2550432 -0.3913083 0.4111453 -0.3381146 -0.8465224 0.4257332 -0.2236701 -0.8767358 -0.3592944 -0.8437147 0.3987548 -0.550737 -0.8001038 0.2376476 -0.2842799 -0.9577013 0.04431283 -0.492172 -0.03534042 0.869747 -0.8159124 0.01290929 0.5779901 -0.1120945 -0.8604694 0.4969634 -0.08804589 -0.9907834 0.1028473 -0.4369029 0.7958312 0.4192022 -0.2312082 0.7819147 0.5788751 -0.08862572 0.9444258 0.3165075 0.004058957 0.7612842 0.6483963 0.0451979 0.9392987 0.3400067 -0.04406869 0.9794915 0.1965697 -0.2018494 0.9574877 0.2060304 -0.1934568 0.9397565 0.2818079 -0.02710038 0.9924924 0.1190221 0.06039613 0.97763 0.2013611 0.0682699 0.9900815 0.1227149 0.07373267 0.9951476 0.06488233 -0.0167241 0.9981079 0.05862605 -0.1745964 0.9832453 0.05178987 -0.1930906 0.9733573 0.1235389 -0.07095551 -0.9929502 -0.09472942 -0.06903284 -0.9909665 -0.1149632 -0.3022859 -0.9469894 -0.1085543 -0.07620471 -0.9963683 -0.03784292 -0.3092135 -0.9505295 -0.02868735 -0.6557818 -0.7486801 -0.09698778 -0.6770532 -0.7332987 -0.06201356 -0.9961547 0.07193213 0.04992824 -0.2930082 -0.9502854 -0.1052888 -0.5175634 0.8550371 0.03149509 -0.5579699 0.8204901 0.1242103 -0.9931333 0.1089816 -0.04239016 -0.542375 0.8038576 0.244087 -0.9667959 0.05319374 0.2498855 -0.6632283 -0.7459029 0.06097596 -0.008301019 0.9999085 -0.008728265 -0.1755424 0.9840694 -0.02746665 0.07962274 0.9967955 -0.00112915 -0.2965484 -0.9545885 -0.0275582 -0.07947015 -0.9968261 -9.15555e-4 -0.632191 -0.7720267 -0.06527906 -0.9853511 0.1249427 -0.1156957 -0.4771264 0.8764001 -0.06488233 -0.002838194 0.9985961 -0.05243074 -0.1770378 0.981109 -0.07763904 0.08325445 0.9955748 -0.04354989 -0.2924283 -0.956206 0.00943017 -0.08285772 -0.9957885 0.03885 -0.6093326 -0.7914365 -0.04809713 -0.9849238 0.0700705 -0.1580553 -0.4661702 0.876278 -0.1216773 0.1180151 -0.9898068 0.07947015 0.368572 -0.8734703 0.3180334 0.1478011 -0.8841823 0.4430983 0.6956999 -0.1077303 0.7101657 0.3230079 -0.1004364 0.9410383 -0.09265416 -0.07348853 0.9929502 0.4778283 0.7228004 0.4991607 0.2874538 0.9013642 0.3238624 0.1802423 0.9229713 0.3400067 0.2480849 0.7436445 0.6208075 0.3114719 0.9165014 0.2509232 0.1631519 0.9629505 0.2146977 0.3196814 0.932432 0.1683706 0.1620838 0.9773858 0.1355937 0.3156224 0.9441206 0.0946989 0.1633045 0.9837337 0.07440412 0.1635792 -0.9841914 -0.06781208 0.1559801 -0.9876706 0.01190221 0.9713126 -0.08505505 0.2219611 0.5536057 -0.8315073 0.04556411 0.5365154 -0.8438368 0.007232844 0.1534776 -0.9859005 -0.06625568 0.6502884 0.7240517 0.2298654 0.9901425 -0.04928737 0.1309854 0.6118351 0.7117527 0.3449812 0.9053621 -0.09619432 0.4135563 0.5169531 -0.840083 0.164159 0.3303323 0.9436933 0.01669359 0.1669667 0.985931 0.006591975 0.1428571 -0.9896543 0.01083403 0.5044404 -0.8627278 0.03405863 0.6324046 0.7632679 0.1320536 0.6131169 0.7893918 0.0303964 0.9977722 -0.0333262 0.05764943 0.3400067 0.939848 -0.03244113 0.1690115 0.9848933 -0.03738516 0.1322062 -0.990112 0.04657119 0.4761803 -0.8780786 0.04678487 0.9959716 -0.08804589 0.01513713 0.6122013 0.7902158 -0.02734458 0.1016571 -0.8096561 0.5779901 0.7532579 -0.6533097 0.07535016 0.8485671 0.3199866 0.421308 0.1657155 -0.6869412 0.7075411 0.2429884 0.6869717 0.6848354 0.01605272 0.7238075 0.6898099 -0.04395484 -0.1481051 0.9879944 0.1676381 -0.7604907 0.6272774 0.7351604 0.450209 0.5067293 0.1745791 -0.1119792 0.978255 0.3951575 -0.2452055 0.8852823 0.422132 0.6469008 0.6350597 0.8217424 0.5321993 -0.2037236 0.5718991 0.8125602 -0.1125943 -0.02755683 0.9949485 -0.09653091 0.3024495 -0.9463382 0.1138779 -0.5891295 0.7986577 -0.1227694 -0.8028754 0.584048 -0.119495 0.4234321 0.904438 -0.05193424 -0.2423293 0.9638536 -0.1107371 0.2595142 0.9631558 -0.07059216 0.1211382 0.9890667 -0.08409959 -0.2363078 -0.9689327 0.07299315 -0.3872717 -0.9202442 0.05631411 -0.5033652 -0.8630704 0.04162853 -0.1079757 -0.9904885 0.08528578 0.01209837 -0.9953717 0.09533625 0.1555735 -0.9821696 0.105545 0.05154573 -0.2945036 -0.9542528 0.5098422 -0.694937 -0.507004 0.1216468 -0.8594012 -0.4965667 0.1703543 -0.1943113 -0.9660024 0.7300943 -0.4133732 -0.544084 0.1927854 -0.0974456 -0.9763787 0.7976928 -0.1889706 -0.5726493 -0.8445692 0.2318491 -0.4826197 -0.8464308 0.08896142 -0.5249794 -0.9501327 0.05227816 -0.3073519 -0.7209693 -0.1151158 -0.6833094 -0.5743278 -0.1794488 -0.7986999 -0.6593219 -0.6020386 -0.4503311 -0.3286538 -0.2595294 -0.9080783 -0.2857143 -0.794641 -0.5355693 -0.06958216 -0.3143101 -0.9467452 -0.8703879 0.3486434 -0.3475753 0.1630909 0.02294987 -0.9863277 0.8020875 0.1169164 -0.5855892 0.06247138 0.1694082 -0.9835506 0.6138493 0.5111851 -0.6015198 -0.04983669 0.2117374 -0.976043 0.2797021 0.7253639 -0.628956 -0.2085329 0.1878414 -0.9597766 -0.02923673 0.7536546 -0.6566057 -0.5200354 0.1660512 -0.8378247 -0.5100253 0.6653035 -0.5451521 -0.7879574 0.1962645 -0.5835444 0.5864437 -0.60506 0.5384991 0.7823725 -0.3159276 0.536668 0.850673 -0.119541 0.511887 -0.868862 -0.3666493 -0.3325602 -0.6020081 -0.4727317 0.6434828 -0.3448591 -0.7777642 0.5254677 -0.1295205 -0.8487503 0.5126194 0.2088686 -0.7986694 0.5642873 -0.7395551 0.08758813 0.6673178 -0.5108494 0.5916318 0.6236763 0.8579668 0.1602221 0.4880215 0.701529 0.5545824 0.4474929 0.4222541 0.7906125 0.4434034 0.1945555 0.8948332 0.4017151 -0.3071688 0.86816 0.3897213 0.2607806 0.02618485 0.9650258 0.3030934 0.0754742 0.9499673 0.1402935 0.07800531 0.9869991 0.05676442 0.04446542 0.9973754 0.0644856 0.04907375 0.996704 0.07231837 0.0033831 0.9973759 0.2832728 0.07672351 0.9559313 0.22425 0.0736106 0.9717399 0.2253181 0.07373267 0.9714652 0.1397747 0.07797479 0.9870907 0.1770684 0.0745567 0.9813532 0.01568651 0.005706906 0.9998474 0.02038633 0.006805598 0.9997559 0.003784239 0.00955224 0.999939 0.05706959 0.007293879 0.9983215 0.05349892 0.008209466 0.9985046 0.002807676 0.008331537 0.999939 0.1774041 0.07431256 0.9812921 0.4201788 0.09207433 0.9027375 0.414655 0.1268349 0.9010895 -0.04611343 -0.006622493 0.9989013 0.4117558 0.1694998 0.895352 0.3887448 0.2161321 0.8956267 0.01928764 -0.06357002 0.9977722 0.3572192 0.2786645 0.8914456 0.293527 0.3256325 0.8987396 0.110538 -0.09921562 0.9888913 0.1599475 -0.1077609 0.9812006 0.2056337 0.3867 0.8989532 0.1065401 0.3962218 0.9119236 0.2540971 -0.0994293 0.962035 -0.01217687 0.4037293 0.9147618 -0.0869472 0.364391 0.9271523 0.3271889 -0.06796467 0.9425032 -0.1690115 0.3267617 0.9298685 -0.2120731 0.2717673 0.9386883 0.3763542 -0.0205084 0.9262368 -0.2476882 0.2204657 0.9433882 -0.2677694 0.1661427 0.9490341 -0.2788476 0.1118808 0.9537644 -0.2770165 0.06024348 0.9589526 0.3992736 0.06656086 0.9143956 -0.2746666 0.006195247 0.9615162 -0.250679 -0.0525223 0.9666128 0.3778191 0.1259804 0.9172338 -0.2218695 -0.1152378 0.9682303 -0.1530503 -0.1686453 0.9736931 0.3272805 0.1805475 0.927488 -0.09335607 -0.2225714 0.9704276 0.02008116 -0.2490615 0.9682608 0.2507401 0.2223273 0.9421674 0.2026124 0.2360911 0.9503464 0.1256142 -0.2617267 0.9569079 0.2245246 -0.2246772 0.9481796 0.1042207 0.2388378 0.9654225 0.3023469 -0.1976379 0.9324625 0.3451948 -0.1383709 0.928251 0.01696825 0.2118595 0.9771416 0.3832209 -0.1028473 0.9179052 0.3951842 -0.05728322 0.916776 -0.04617446 0.1612598 0.9858089 0.4072085 -0.02453684 0.9129917 0.4115726 0.006988704 0.9113438 0.4153264 0.03579819 0.9089328 0.4141972 0.06271553 0.9080172 -0.07599109 0.06082338 0.9952391 -0.01559495 -0.03833121 0.999115 0.1804254 0.06622517 0.9813532 -0.06476026 0.02563554 0.9975585 0.06384468 -0.08594012 0.994232 0.3985717 0.03759878 0.9163488 0.3912473 0.09726244 0.9150975 0.354503 0.1563463 0.9218726 0.2926115 0.2040467 0.9341716 -0.07544171 0.09442424 0.992645 0.8329722 0.1520432 0.5319986 0.8024842 0.2555925 0.53914 0.74926 0.3645741 0.5528733 0.6727805 0.4727317 0.5690481 0.5590991 0.5836665 0.5888241 0.4150517 0.6805627 0.6037477 0.231788 0.7542955 0.6142155 0.01446574 0.79223 0.610004 -0.1950438 0.7785577 0.5964537 -0.4067202 0.7155064 0.56798 -0.554796 0.6279489 0.545732 -0.6867581 0.5066072 0.5212256 -0.7673269 0.3897519 0.5091708 -0.8223212 0.2624592 0.5048066 -0.8495438 0.1343424 0.5100558 -0.8521683 0.01272618 0.5230873 -0.8283029 -0.1160314 0.5480819 -0.7763909 -0.2453993 0.580462 -0.6778771 -0.3846553 0.626484 -0.5580005 -0.4952849 0.6657918 -0.375164 -0.5957213 0.7101352 -0.1672109 -0.6567278 0.7353129 0.05883967 -0.6698813 0.7401044 0.2512283 -0.6429334 0.7235023 0.4203314 -0.5824763 0.6956999 0.5568712 -0.5051119 0.6593219 0.6543779 -0.422071 0.627369 0.7350993 -0.3269753 0.5938597 0.787347 -0.2371288 0.5690176 0.8239693 -0.1405682 0.5488754 0.8431654 -0.04239016 0.535905 0.8463393 0.05188143 0.530076 -0.06729328 0.1285134 0.9894101 0.392346 0.008087396 0.9197669 0.3571581 -0.04437386 0.9329814 -0.0208441 0.1875362 0.9820246 0.1542405 0.2399365 0.9584338 0.05789357 0.2273934 0.9720451 0.2090212 -0.1057772 0.9721671 0.2944731 -0.08471935 0.9518723 0.7388836 -0.0754112 0.6695761 0.7144078 -0.0328989 0.6989349 0.6109806 -0.1491745 0.7774285 0.6738792 -0.009643793 0.7387616 0.6247139 -0.007110774 0.7807856 0.5734123 -0.02319401 0.8189032 0.5242775 -0.05612349 0.8496658 0.4836268 -0.1042512 0.8690146 0.4607074 -0.1621143 0.8726158 0.4632405 -0.2191839 0.8586688 0.4918363 -0.2632527 0.8299204 0.5382245 -0.2862636 0.7926573 0.5915098 -0.2871792 0.75338 0.6432386 -0.2690512 0.7168188 0.6890469 -0.2346873 0.6856288 0.7241127 -0.1864376 0.6639607 0.7421796 -0.1301614 0.6573992 -0.1131931 -0.2535783 0.9606617 -0.08120971 -0.2121952 0.9738152 -0.1667531 -0.1018097 0.9807123 -0.06418043 -0.1567736 0.9855343 -0.06118959 -0.09851372 0.9932249 -0.07031464 -0.04055905 0.9966735 -0.09298986 0.01409953 0.9955443 -0.1290322 0.05447548 0.990112 -0.1738029 0.0687887 0.9823603 -0.2172613 0.05160677 0.9747307 -0.2497329 0.009277582 0.9682608 -0.2672811 -0.04626601 0.9624928 -0.2704855 -0.1039766 0.9570605 -0.2612079 -0.1609546 0.9517502 -0.2380748 -0.2146672 0.947203 -0.2015137 -0.2545854 0.9457991 -0.1564683 -0.269509 0.9501633 0.2009949 -0.4719077 0.8583941 0.3362529 -0.3033845 0.8915372 0.8894009 0.2128971 0.4044923 0.1281472 -0.6718955 0.7294534 0.8097476 0.1794793 0.5586108 0.1218604 -0.7115085 0.6920072 0.6649067 0.1486251 0.731956 0.1615039 -0.7045809 0.6909696 0.4654378 0.1698049 0.8686178 0.1862545 -0.7437056 0.6419874 0.3283792 -0.6901456 0.6448256 0.132847 0.1941282 0.971923 0.2467116 -0.6913053 0.6791284 0.2862331 0.2238227 0.9316385 0.4236885 -0.2629169 0.8667867 0.9260231 0.2868435 0.2453078 0.9175085 0.2234565 0.3289285 0.6641743 -0.6781823 0.3144932 -0.03955197 -0.3524277 0.9349651 -0.07477033 -0.08835107 0.9932554 0.1210974 -0.9921262 -0.03122043 0.1163976 -0.8737144 0.472274 0.2063356 -0.8785669 0.4306772 0.06076234 -0.9074069 0.4157842 -0.06414991 -0.897763 0.4357128 -0.2034974 -0.831721 0.5164952 -0.2962126 -0.6988739 0.6509598 -0.2464675 -0.5406659 0.8042848 0.1697439 0.2107303 0.9626759 0.1087374 0.2555315 0.9606311 0.3010651 -0.9024323 0.3080843 0.2974639 -0.9127476 0.2799463 -0.01562547 0.1415753 0.9897763 -0.8331859 -0.4645223 0.2999359 0.02499461 -0.1492355 0.988464 0.04901272 -0.1530198 0.9869991 0.5322123 -0.8444777 0.05935847 0.6033815 -0.6390271 0.4770043 -0.1008331 -0.02746665 0.9945067 0.9797357 -0.1992553 -0.01913505 -0.6857204 -0.708121 0.1682485 0.5286722 -0.6165044 0.5834224 0.5645314 -0.7775506 -0.2768334 -0.01986753 -0.4171575 0.9085971 -0.5589465 -0.8275399 -0.05233919 -0.05172884 -0.3475753 0.9362163 0.2446364 -0.9283425 -0.2797632 -0.798822 -0.5292825 -0.2857753 -0.6335642 -0.7239906 -0.2727134 -0.3327433 -0.8956878 -0.2949004 -0.01660203 -0.8992889 -0.436964 -0.1041902 -0.9081088 -0.4054994 -0.9844966 -0.1708731 -0.0394299 -0.8441115 0.494705 0.2067018 -0.9623402 0.2282174 0.147557 0.1207922 -0.9405805 -0.3173009 0.358745 -0.933195 -0.01974546 0.424604 -0.873043 -0.2397229 7.01926e-4 -0.4582964 0.8887906 -0.5873898 -0.7817927 0.2090212 0.6689352 -0.7138279 0.2071291 -0.8645589 -0.4582659 -0.206122 -0.2871792 0.4259468 -0.8579363 0.2547075 0.7234718 -0.6415906 0.1217383 0.5436872 -0.8303781 -0.1647084 0.6259651 -0.7622303 0.3136082 0.8710288 -0.3780633 -0.136021 0.6762902 -0.7239296 0.22837 0.9511704 -0.2075259 -0.1499374 0.6664022 -0.7303079 0.03793448 0.9861141 -0.1615039 -0.4555498 0.8859218 -0.08673357 -0.3342692 0.9352397 -0.1164891 -0.3533738 0.6225776 -0.6982024 -0.2354198 0.6448561 -0.7271035 -0.1676076 0.9750664 -0.1452986 -0.574633 0.2043214 -0.7924742 -0.02624589 0.45085 -0.8921781 -0.05941951 0.368572 -0.9276711 0.2311472 -0.7679983 -0.5972167 0.1421247 -0.3407086 -0.9293497 -0.471511 -0.02096617 -0.8815882 -0.6567888 0.4994659 -0.5648671 -0.2107913 0.8443861 -0.4924772 -0.06067079 0.8866543 -0.458388 0.04834127 0.8834803 -0.4658955 0.1914426 0.8285165 -0.5261696 0.3094577 0.6980804 -0.6456496 -0.4366893 0.2422254 -0.8663595 -0.5570544 -0.284402 -0.7802362 -0.578753 0.8102359 -0.09222692 -0.4825282 -0.3957945 -0.7813044 -0.6995453 0.7112339 -0.06906336 -0.364513 -0.1668447 -0.9161046 -0.338023 -0.2587969 -0.9048128 -0.8708457 0.4800257 0.1055635 0.05038601 -0.1239967 -0.990997 -0.04260379 -0.3462325 -0.9371624 -0.01092559 -0.5336467 -0.8456069 -0.06024348 -0.2593768 -0.9638661 -0.03112888 0.3632618 -0.9311503 0.07760852 -0.03671371 -0.9962767 -0.3339335 -0.003570616 -0.9425642 -0.8962676 0.3703116 0.2439954 -0.5689871 0.6944792 -0.4402905 -0.3235267 0.1727347 -0.9302957 -0.5926389 0.7467269 0.3019196 0.3073824 0.5381634 -0.784753 0.06332588 0.3810236 -0.9223609 0.02475047 0.4803919 -0.8766747 -0.1396222 0.5143895 -0.8460952 -0.1745048 0.4977569 -0.8495438 -0.1286355 0.4580828 -0.8795434 -0.2363658 0.3979003 -0.8864406 -0.1076998 -0.2724082 -0.9561144 0.1288796 0.04495376 -0.9906308 -0.2229682 -0.2719504 -0.9360942 -0.3500473 0.2979522 -0.8880581 -0.7706229 0.5900754 0.240669 -0.3476058 0.1546373 -0.9247719 0.1638233 0.229194 0.9594714 -0.7125462 0.6895962 0.1292154 -0.3259682 -0.7755059 0.5406354 -0.7313761 0.5672475 0.3785516 -0.847377 0.4553362 0.2730491 -0.02059996 0.7267373 0.6865749 -0.2462233 0.7260354 0.6420484 -0.3912778 -0.6424757 0.6588336 -0.1509435 -0.1395545 0.9786422 -0.3909116 -0.7159337 0.5784478 -0.599231 0.6279489 0.4965667 -0.3560763 -0.06962895 0.9318591 -0.5712833 -0.05965322 0.8185823 -0.4181646 0.7139806 0.5615406 -0.3884091 -0.6848049 0.6165655 -0.6801277 0.6520546 -0.3350389 -0.408782 0.8908246 -0.1983155 0.2000454 0.9767851 -0.07663327 -0.4627476 -0.8852447 0.04697477 0.7197179 0.6942166 -0.008339464 0.8932533 0.4486303 0.02879959 -0.2604145 0.9590118 -0.1117169 0.406463 0.9120693 -0.05401211 -0.08855468 0.9909351 -0.1010233 0.05240988 0.9945519 -0.09010851 0.06464147 -0.9929553 0.09930348 0.2220042 -0.9688677 0.1095881 0.3162872 -0.9364216 0.1519111 -0.06563079 -0.9938681 0.08898782 -0.1848819 -0.9796512 0.07811677 -0.3240695 -0.9438923 0.06360942 -0.4466514 0.1352566 0.8844254 -0.2268746 0.07229834 0.971221 -0.220191 0.06656086 0.9731742 -0.294351 0.1126743 0.9490036 -0.2417724 0.02844971 0.9699158 -0.4281442 0.1334574 0.8937651 -0.4286935 0.1335185 0.8934904 -0.375042 0.1216468 0.9189428 -0.3296915 0.1149937 0.9370403 -0.2938627 0.1125828 0.9491867 -0.1746269 0.0237739 0.984344 -0.1911679 0.02368235 0.9812616 -0.1867427 0.02185124 0.9821467 -0.2228766 0.03027433 0.974334 -0.2264473 0.02990812 0.9735404 -0.1738639 0.02243107 0.9844966 -0.3300272 0.1148411 0.9369183 -0.1679128 -0.8362987 -0.521897 -0.517716 -0.6129338 -0.5968505 0.06805628 -0.2958159 -0.9527879 -0.6811732 -0.3007294 -0.6674703 -0.02966398 -0.1783502 -0.9834895 -0.7045809 -0.06295967 -0.7067782 0.9409467 0.08935815 -0.3265175 0.985107 -0.1021454 -0.1381573 0.9275796 -0.0525223 -0.3698843 0.8007447 -0.2365489 -0.5502488 0.8444777 -0.5033723 -0.1827448 0.6239814 -0.7044588 -0.3381146 0.2450941 -0.8370312 -0.4891507 0.435316 -0.3205054 -0.8412733 0.1814325 -0.3343608 -0.9248024 0.9611499 0.2024598 -0.1874446 -0.02716147 -0.06936854 -0.9971923 -0.6560564 0.2353282 -0.7170324 0.02716147 0.03421121 -0.9990234 -0.4131901 0.5863826 -0.6967071 0.1371197 0.1474044 -0.9794915 -0.05151522 0.7483139 -0.6613056 0.2478103 0.1811884 -0.9516892 0.2603229 0.7305521 -0.6312754 0.6946623 0.5691702 -0.4398328 0.6762902 0.07055878 -0.7332377 -0.4261299 -0.7480087 0.5087741 -0.7583239 -0.4977264 0.4209113 -0.9030427 -0.181402 0.3893246 -0.9342631 0.02288883 0.3558153 0.6178472 -0.02072203 0.7860042 0.4000061 -0.5526902 0.7310709 0.1222876 -0.8150273 0.5663015 -0.09604173 -0.8514359 0.5155492 0.4823145 0.5123447 0.7105014 -0.8931852 0.2999969 0.3349101 -0.6719871 0.6642048 0.3274025 -0.3625904 0.8532365 0.3747978 -0.1176183 0.9197363 0.3744316 0.3681142 0.8142644 0.4487442 -0.4158452 0.08017212 0.9058504 -0.6813868 0.1159703 0.7226478 -0.6880703 -0.04873806 0.7239601 -0.6515397 0.08532971 0.7537767 -0.6284982 0.03665268 0.7769402 -0.6133305 -0.01815849 0.7896054 -0.60506 -0.0748924 0.7926267 -0.6048159 -0.1330912 0.7851497 -0.615833 -0.1832026 0.7662587 -0.6400037 -0.2131107 0.7382122 -0.6738487 -0.2131718 0.707419 -0.7086703 -0.1844233 0.6809595 -0.736961 -0.1365092 0.661977 -0.7548143 -0.08114868 0.6508682 -0.762566 -0.02313297 0.6464736 -0.7589954 0.03683578 0.6500138 -0.7422712 0.088229 0.6642354 -0.7142247 0.1177709 0.6899014 -0.1939756 -0.04535049 0.9799494 0.01058989 -0.1185339 0.9928892 -0.1360515 0.005127072 0.9906613 -0.06039613 0.03479105 0.9975585 0.01989805 0.04364144 0.9988403 0.0994293 0.03308206 0.9944761 0.1712393 0.001739501 0.9851985 0.2223578 -0.04925686 0.9736931 0.2403942 -0.1135899 0.9639882 0.2196417 -0.1788995 0.9590137 0.1656544 -0.2322153 0.9584338 0.09115874 -0.2657247 0.9597156 0.009094476 -0.2774743 0.9606617 -0.07412946 -0.2675253 0.9606617 -0.1500595 -0.2341074 0.9605396 -0.2031617 -0.17893 0.9626454 -0.219306 -0.1109347 0.9692984 -0.308359 0.006927669 0.9512314 -0.6736046 0.2209234 0.7052828 -0.6855373 0.1878719 0.7033296 -0.378399 -0.03698843 0.924894 -0.6317636 0.3037812 0.713126 -0.6612751 0.2621845 0.7028108 -0.4655598 -0.05536055 0.8832667 -0.5255898 0.3939024 0.7540208 -0.5900754 0.3593555 0.722953 -0.5098422 -0.05478072 0.8584857 -0.5514389 -0.04397714 0.8330027 -0.3456221 0.4290292 0.8345286 -0.5881832 -0.02966398 0.8081607 -0.6190985 -0.007965326 0.7852413 -0.1787164 0.3624378 0.9147008 -0.6428724 0.01428264 0.7658315 -0.662801 0.04275637 0.7475509 -0.08447521 0.2485427 0.9649037 -0.6737877 0.06961268 0.7356182 -0.6810511 0.1005585 0.7252724 -0.05594038 0.1347392 0.9892575 -0.6750084 0.1591845 0.7203894 -0.07003998 0.02917569 0.9970702 -0.0572527 0.07947015 0.9951781 -0.6455581 0.2136601 0.7331767 -0.1172826 -0.07660144 0.990112 -0.08285772 -0.02337718 0.9962767 -0.5928526 0.2581866 0.7627797 -0.2304757 -0.1725516 0.9576403 -0.1556444 -0.132847 0.9788202 -0.5200964 0.2854396 0.8049867 -0.402234 -0.2197332 0.88876 -0.2938627 -0.2145756 0.9314249 -0.4762414 0.2902615 0.8300119 -0.4338817 0.2853175 0.8545793 -0.5787225 -0.1584826 0.7999512 -0.3905759 0.2751549 0.8784753 -0.3523972 0.2555315 0.9002655 -0.6671347 -0.05185091 0.7430952 -0.3193457 0.2328257 0.9185766 -0.2906278 0.2020325 0.9352397 -0.6944182 0.03677475 0.7185888 -0.2734153 0.1716055 0.9464401 -0.2611774 0.1356242 0.9556871 -0.6959746 0.1028473 0.7106235 -0.2674032 0.06765949 0.9611805 -0.6871853 0.1580248 0.7090671 -0.6934111 0.1318094 0.7083652 -0.342204 -0.01855522 0.9394208 -0.2848903 0.03518784 0.9578844 -0.422132 -0.05078279 0.9050874 -0.6802576 0.1306192 0.7212134 -0.6623127 0.1879025 0.7252418 -0.6202582 0.2392956 0.746971 -0.5590991 0.2750328 0.7821283 -0.2609637 0.1006805 0.9600513 -0.8802149 0.4110538 0.2371288 -0.9244362 0.3147374 0.2152165 -0.7322916 0.6011536 0.319834 -0.8164312 0.5085909 0.2733238 -0.4700461 0.7585681 0.4511857 -0.4338511 0.4376659 0.7874996 -0.08386486 0.7945189 0.6013672 -0.2360301 0.4146245 0.8788415 0.3042696 0.6405225 0.7050386 -0.1110873 0.3103427 0.9440901 0.5402692 0.3825495 0.7494736 -0.06265449 0.1916868 0.9794305 0.6266061 0.1172826 0.7704398 0.602588 -0.1331523 0.7868282 0.6266671 -0.0134586 0.7791376 0.4662618 -0.3715628 0.8028199 0.5486618 -0.254738 0.7962585 0.1905881 -0.5749687 0.7956175 0.3344523 -0.4892422 0.8054445 -0.2220221 -0.6599933 0.7176733 -0.01107817 -0.638966 0.7691275 -0.600116 -0.5694754 0.5616932 -0.4339427 -0.6311228 0.6429029 -0.6398816 -0.117893 0.7593616 -0.8337657 -0.3791009 0.4013489 -0.6920377 -0.01016265 0.7217628 -0.9425337 -0.1726127 0.2859889 -0.6982635 0.07101655 0.712302 -0.9748528 0.02594071 0.2211982 -0.9541001 0.2187566 0.2043214 -0.970275 0.1256447 0.2067323 0.5974914 0.2526017 0.7610096 -0.9656972 -0.07522809 0.2485122 -0.4975432 -0.2129581 0.8408765 -0.7349162 -0.4794763 0.4795068 -0.8972136 -0.2801904 0.3412274 -0.6147038 0.6896268 0.3827632 -0.29194 0.7974181 0.5280618 0.1110263 0.7421491 0.6609393 0.4322947 0.5266885 0.7318949 -0.4177374 -0.4225288 0.8043153 -0.8554338 0.312357 0.4130375 -0.901059 0.3557848 0.2479323 -0.356151 -0.6332591 0.6870937 -0.7493515 0.2614826 0.6083254 -0.3498337 -0.6738487 0.6507767 -0.5756096 0.2528764 0.7776116 -0.3870968 -0.6607868 0.643025 -0.4037598 0.2789087 0.8713034 -0.408887 -0.6962187 0.5899533 -0.2979217 0.2480544 0.9217811 -0.2662129 0.225959 0.9370403 -0.465804 -0.6344493 0.6168096 -0.2886746 0.2652974 0.9199194 -0.6028321 -0.1809747 0.7770318 -0.9136937 0.3696097 0.1687979 -0.8975799 0.4323862 0.08587908 -0.8067873 -0.5607776 0.1858577 -0.7695242 -0.5294656 0.356975 -0.1124607 -0.08532971 0.9899594 -0.2685323 -0.9610279 -0.06530958 -0.53914 -0.6208991 0.5689871 -0.4131901 -0.8290963 0.3765374 -0.2736595 -0.8807032 0.3865475 -0.1540574 -0.8906217 0.4278085 -0.02209538 -0.8462172 0.5323344 -0.5284585 -0.2343821 0.8159429 0.01586961 -0.5616322 0.8272042 -0.7985779 -0.5966674 0.07879877 -0.4879299 -0.8394727 0.239082 -0.2311472 0.2826624 0.9309366 -0.4812158 -0.8505814 0.211829 0.6854763 -0.5855892 0.4326304 -0.1331217 0.1509751 0.9795221 -0.6606952 -0.7492905 -0.04483169 -0.2419202 -0.1297647 0.9615467 -0.2182683 -0.1297952 0.9671926 -0.7116916 -0.5174413 0.4750511 -0.07773059 -0.02929776 0.9965209 -0.9807123 -0.04275637 -0.1905881 0.5262612 -0.8046815 0.2747886 -0.6235847 -0.6827601 -0.3807489 0.422132 -0.9058809 0.0333262 -0.2030091 -0.4025391 0.8925749 -0.3321329 -0.8378857 0.4330881 -0.3357647 -0.8820155 -0.330546 -0.1658375 -0.3384503 0.9262368 0.8040712 -0.5914182 -0.06024348 0.742729 -0.6523331 -0.1510056 0.06576734 -0.7278054 0.6826075 0.5491195 -0.8183844 -0.1692861 0.2334055 -0.9408857 -0.2453993 0.02832114 -0.9186987 -0.3939329 -0.04998928 -0.8966338 -0.4398633 0.9462264 0.07589954 0.3144322 0.9371624 -0.3242287 0.1285439 0.8629719 0.3584399 0.3559984 -0.2107913 -0.9141209 -0.3462935 -0.4923246 -0.8652913 -0.09414958 -0.2261116 -0.440199 0.868923 0.4123051 -0.8614155 0.2965179 -0.5089572 -0.7985168 -0.3213599 -0.1782281 -0.3413801 0.9228492 0.4942167 0.3635975 -0.7896054 0.6121402 0.1585131 -0.7746819 0.1103854 0.5446028 -0.8313853 0.3901181 0.5816828 -0.7137364 -0.02313297 0.7456588 -0.6659139 0.363567 0.6364025 -0.6802576 -0.1026337 0.9042634 -0.4144414 0.3766289 0.6243782 -0.684286 -0.03656113 0.9723197 -0.2306588 0.5620289 0.5495163 -0.6181524 0.4923246 0.8692587 -0.04419076 0.5973998 0.8019044 0.005310177 0.4558244 0.5896787 -0.6666768 0.1461836 0.9774773 -0.1520432 0.7275307 0.1003754 -0.6786401 0.2757652 0.3418073 -0.8983734 0.2503738 0.4287545 -0.8680074 -0.2427442 -0.7302164 -0.6385998 -0.03170871 -0.3268227 -0.9445174 0.6072268 -0.1069979 -0.7872555 0.7385174 0.5901364 -0.3259682 0.4228034 0.7938169 -0.4370861 0.2775964 0.8596454 -0.4288156 0.1723991 0.8735923 -0.4550615 0.03494364 0.8410291 -0.5398419 -0.07968378 0.7291482 -0.6796777 -0.07882928 0.5689871 -0.8185369 0.7061983 0.7076937 0.02011168 0.631428 -0.379284 -0.6763207 0.5416425 -0.4775536 -0.6917631 0.8040712 0.5912046 0.06234931 0.4861599 -0.2347179 -0.841731 0.779107 0.5705741 0.2595905 0.9041414 0.3383587 0.2607501 0.1023285 -0.1281472 -0.9864498 0.148503 -0.3614917 -0.9204382 0.2480849 0.3409528 -0.9067354 0.1839961 -0.2788171 -0.9425337 0.09051787 -0.03772085 -0.9951476 0.4866787 -0.06906336 -0.8708152 0.8876919 0.2279427 0.3999756 0.6417127 0.6482132 0.4098636 0.5022126 0.1068453 -0.8580889 0.2027344 0.4662007 -0.8611103 0.3626819 0.4743187 -0.8021485 0.3945433 0.4523758 -0.799768 0.4453261 0.3434858 -0.826838 0.3488571 0.4199652 -0.8377941 0.05258339 0.05111849 -0.9972839 0.3354595 -0.316599 -0.8872341 0.2267525 -0.2990814 -0.9268777 0.5403913 0.2269356 -0.8102054 0.8146916 0.3820307 -0.436201 0.5218055 0.08520764 -0.8487503 0.8006836 0.4646748 0.3780633 0.4439833 -0.3212378 -0.8364513 0.157445 0.373516 -0.9141209 0.3415021 0.9344462 -0.1007721 0.07245093 -0.5403302 -0.8383129 0 -1 0 -0.1075778 0.1659291 0.980224 0.8942229 0.3641774 -0.2601703 -0.7090671 0.04666274 -0.7035737 -0.5049076 0.3652032 -0.7821094 -0.463006 0.3865691 -0.797615 -0.7028547 0.4311025 -0.5658144 -0.02118462 0.7889833 0.6140493 -0.1719514 0.7970144 0.5789653 -0.5435444 0.7057157 0.4544498 -0.7886273 0.5135452 0.3381395 -0.8641642 0.4487788 0.2276353 -0.7898684 0.4595012 0.4061609 -0.599089 0.5120422 0.6155527 -0.4189504 0.5080704 0.752559 -0.5132482 0.5469673 0.6613646 -0.7733176 0.5888659 0.2349826 -0.8219473 0.4814829 -0.3042645 -0.5505545 0.3373526 -0.7635987 -0.5375795 0.3215966 -0.7794767 -0.3155914 0.3134713 -0.8956215 0.1599902 0.0038625 0.987111 0.06987273 0.01493132 0.9974442 -0.4248301 0.1057376 0.8990767 -0.7901501 -0.2558858 0.5569428 -0.5055644 -0.5321055 0.6791675 -0.6511188 -0.4342349 0.6224824 -0.1256807 -0.4712789 0.8729837 -0.2813351 -0.4814786 0.8300776 -0.5765691 -0.3891274 0.7184344 -0.8874042 -0.4002326 0.2287527 -0.7030023 -0.5268513 -0.4777191 -0.4793402 -0.5381751 -0.6932536 -0.1991366 -0.5341452 -0.8216042 -0.1043238 -0.5536754 -0.8261719 -0.1385852 -0.5896869 -0.7956529 -0.2202254 -0.6176674 -0.7549753 -0.2344613 -0.5894695 -0.773016 -0.1482102 0.9875764 -0.05221605 -0.252065 0.9661985 -0.05407071 -0.4059973 0.905573 -0.1228979 -0.3775765 0.91433 -0.1464123 -0.4598519 0.8791808 -0.1248094 -0.5297918 0.8480336 0.01264649 -0.5204743 0.8371717 0.1680771 -0.4084455 0.8691563 0.2788184 -0.2387135 0.9169552 0.3197013 -0.2604999 0.9459379 0.1932386 -0.3757917 0.9241491 0.06876802 -0.4296723 0.8976256 -0.09823417 -0.4092029 0.8731564 -0.2648599 -0.4792422 0.8380442 -0.2607849 -0.4588572 0.8472498 -0.2676153 -0.4161658 0.8508152 -0.3208105 -0.2319375 0.8661124 -0.4427802 -0.02915847 0.4079293 0.9125477 0.08946716 0.3729872 0.923513 -0.5133526 0.4098579 0.7539799 -0.8733835 0.1793866 0.4527933 -0.7899009 0.0519542 0.6110298 -0.8864616 -0.1170979 0.4477431 -0.3560523 -0.1692109 0.9190182 -0.3702132 -0.1826233 0.9108188 -0.6240279 -0.137936 0.7691314 -0.9588614 -0.09375864 0.2679445 -0.8640354 -0.1123685 -0.4907301 -0.6951703 -0.1155751 -0.7094933 -0.3993522 -0.1276117 -0.9078728 -0.3008503 -0.1744065 -0.9375882 -0.3426786 -0.2242565 -0.912294 -0.4176514 -0.2212186 -0.8812659 -0.3396735 -0.1360566 -0.9306507 -0.07874751 0.9347019 0.3465996 -0.2313965 0.9298168 0.2861752 -0.5007147 0.8458839 0.1837533 -0.6624784 0.7323995 0.1572047 -0.7621758 0.6333175 0.134153 -0.7153418 0.6303552 0.3015603 -0.6113624 0.6734021 0.4156507 -0.434124 0.7275224 0.5312696 -0.3963221 0.7494325 0.5303581 -0.614621 0.7586089 0.2162257 -0.7122423 0.6796861 -0.1753214 -0.6397147 0.6447565 -0.4183949 -0.4668907 0.6304587 -0.6201089 -0.5300275 0.6105353 -0.5884875 -0.5506569 0.5889743 -0.5915119 -0.5200314 0.5829988 -0.6242433 -0.2909325 0.6244735 -0.7248387 -0.1475982 0.6540932 -0.7418739 -0.1656658 0.690123 -0.7044751 8.42801e-4 0.6451658 -0.7640421 -0.03184813 0.7699764 0.6372769 0.07592189 0.7715541 0.6316171 0.1307541 0.7914556 0.5970773 0.09725624 0.7876851 0.608353 0.2093622 0.83241 -0.5130897 0.5065461 0.6410514 -0.5765972 -0.03599542 0.7750892 0.6308256 0.2846152 0.6846369 -0.6710191 0.1539624 0.704473 -0.6928299 -0.02552431 0.792334 -0.6095535 0.4823374 0.67344 -0.5602047 0.8388393 0.52892 -0.1288116 0.4826398 0.7020579 0.5236158 0.2508352 0.7652683 0.5928288 0.1598132 -0.8685958 0.4690427 0.1835629 -0.9748682 0.1262405 0.2804547 -0.9387765 0.2001099 0.1424209 -0.9182281 0.3695586 0.1728848 -0.8633261 0.4741086 0.4792658 -0.8450509 0.237051 0.5373703 -0.828611 0.1569619 0.2337688 -0.9645101 -0.1227701 0.01819974 -0.9926068 -0.1200017 0.142193 -0.9851173 -0.09656679 0.27335 -0.9618818 0.007950067 0.4180992 -0.9083303 -0.01136744 0.3906948 -0.9112021 0.1306453 0.3948858 -0.9019932 0.1745663 0.4053558 -0.9002599 0.1588045 0.357208 -0.9295922 0.09088796 0.2123491 -0.9608255 0.1781074 0.06002199 0.7999992 0.5969913 0.2218384 0.8390572 0.4967603 0.533486 0.8150901 0.225878 0.7461705 0.6647357 -0.03682631 0.8201797 0.5363593 -0.1990578 0.8577693 0.5138842 -0.01243555 0.8373997 0.538318 0.09473979 0.8314744 0.5472909 0.09551453 0.8203794 0.5653135 -0.08601385 0.6726062 0.5516622 -0.493224 0.2932472 0.4637411 -0.8360324 0.1338204 0.3819233 -0.9144543 -0.1313573 0.3595467 -0.9238352 -0.06655967 0.3802085 -0.9225028 0.003603518 0.345858 -0.9382799 -0.007549762 0.2973454 -0.9547402 -0.2662115 0.3117088 -0.9121235 0.2723219 0.02119278 0.9619728 0.3562313 0.03544437 0.9337253 0.7292684 0.1917538 0.656809 0.9710296 -0.08711606 0.222514 0.9573608 -0.2447888 0.1534237 0.87644 -0.3895411 0.2830381 0.7034107 -0.4590306 0.5426825 0.8120959 -0.4998139 0.3011417 0.8958218 -0.4440339 -0.01836746 0.7013306 -0.4864105 -0.5210953 0.0575816 -0.4674456 -0.8821445 -0.2262795 -0.5443949 -0.8077325 -0.4385128 -0.5424941 -0.716524 -0.3539134 -0.61576 -0.703978 -0.1895175 -0.6434304 -0.7416741 -0.1049289 -0.6399717 -0.7612004 -0.1725408 -0.6185666 -0.7665539 -0.1389924 0.9888125 -0.05413925 -0.00910896 0.9938514 -0.1103476 0.1340745 0.9583988 -0.2519836 0.1795784 0.9529897 -0.2440535 0.3601648 0.8978481 -0.2532786 0.432055 0.8929926 -0.1260663 0.4848695 0.8630364 -0.1416681 0.4351317 0.8802721 -0.1891598 0.3383101 0.9345051 -0.1106643 0.3217365 0.9324685 -0.1642802 0.3970081 0.8130657 -0.4258038 0.3056808 0.8470631 -0.4347912 0.1384459 0.8254505 -0.5472332 0.1822383 0.8088507 -0.5590615 0.1536601 0.8297808 -0.5365188 0.07461404 0.843365 -0.5321356 -0.1472412 0.8653991 -0.4789617 0.3194505 0.4238071 0.8475487 0.1889615 0.374245 0.9078735 0.7229988 0.463515 0.5122761 0.9751569 0.199257 0.09677642 0.9986578 0.03106361 0.0414465 0.9846683 -0.05716264 0.1648051 0.8840752 -0.1603916 0.4389597 0.9317881 -0.2493483 0.2638114 0.9684668 -0.2452598 -0.04381364 0.7907816 -0.2249319 -0.5692716 0.149101 -0.2165068 -0.9648283 -0.05461055 -0.1720269 -0.9835774 -0.3269685 -0.1767077 -0.9283674 -0.2775128 -0.2400186 -0.9302569 -0.1240418 -0.2460256 -0.9612935 -0.05858999 -0.2245727 -0.9726944 -0.2234057 -0.1361095 -0.9651757 -0.02942705 0.9400415 0.3397882 0.1220784 0.9690408 0.2146086 0.3545116 0.9350488 0.002298951 0.4440807 0.881625 -0.1597799 0.5682873 0.7799555 -0.2621432 0.7054483 0.7072601 -0.04610717 0.7039993 0.7093561 -0.03462749 0.6830723 0.729825 -0.02770918 0.6626541 0.743851 -0.08703637 0.5582843 0.7286441 -0.3967324 0.3447185 0.711709 -0.6120781 0.1805307 0.6185095 -0.7647578 -0.03956651 0.6043744 -0.7957173 0.07215768 0.5972577 -0.798797 0.09116899 0.5807475 -0.8089627 0.03671437 0.5641086 -0.8248841 -0.2155262 0.6214609 -0.7532165 -0.2993919 0.4561814 -0.8380113 -0.3723017 0.3357094 -0.8652691 -0.6123538 0.2517614 -0.7494257 0.3603161 0.7814375 0.5094386 0.1788159 0.8295351 0.5290523 0.09334629 0.8254911 0.5566426 0.1596543 0.7929291 0.5880255 -0.9009576 0.1604764 -0.4031412 -0.8722552 0.4034712 -0.2763724 0.4505754 0.788152 0.4192832 -0.6922518 0.5982722 -0.4035565 -0.6009511 0.6779447 -0.4233776 -0.5485306 0.7043419 -0.4505738 -0.7992938 0.6002624 -0.02853751 -0.6367596 0.5740776 0.5147545 0.0869987 0.7463568 0.6598355 0.2602533 0.7767954 0.5734607 0.2149146 -0.7005841 0.6804364 0.2839153 -0.5817785 0.7621849 0.4511284 -0.6170074 0.6448139 0.1633099 -0.9254984 0.3417343 -0.07957112 -0.8959633 0.4369416 -0.1475425 -0.8970159 0.4166456 -0.1779124 -0.859192 0.4797251 -0.3446336 -0.9202915 0.1851788 -0.2387061 -0.9649281 0.1092392 -0.2178346 -0.9586006 0.183393 -0.2262151 -0.9116485 0.3431092 -0.3726125 -0.8524069 0.3668275 -0.2710596 -0.8856096 0.3771237 -0.2201639 -0.9071511 0.3586151 -0.1707583 -0.9199314 0.3529419 -0.1201574 -0.9334653 0.3379418 0.03313672 -0.966436 0.2547619 0.08911508 0.7175965 0.6907342 0.2202169 0.7818503 0.5832793 0.6258105 0.7182362 0.304135 0.8902609 0.4549727 -0.02086591 0.8973213 0.4199669 -0.1358022 0.9387684 0.3439288 -0.02066063 0.9345148 0.2944246 0.1999905 0.9595738 0.2313898 0.1602404 0.9628221 0.2563526 -0.08518791 0.7820794 0.2610124 -0.5658836 0.2385925 0.1908786 -0.9521759 0.07642477 0.1261118 -0.9890678 -0.2071956 0.1172406 -0.971249 -0.1707418 0.1335383 -0.9762247 -0.05832195 0.1184528 -0.9912453 -0.02608007 0.1066544 -0.9939541 -0.216598 0.203286 -0.9548613 -0.3036687 0.2061936 -0.9301987 -0.5065909 0.10389 -0.8559045 -0.4867173 0.107208 -0.866956 -0.4335278 0.1425551 -0.8897931 -0.4682548 0.1785808 -0.8653591 -0.7336339 0.2208023 -0.6426724 -0.8722756 0.2466315 -0.4222655 -0.8968458 0.3653413 0.2493857 -0.578297 0.3089123 0.7550801 -0.4228425 0.2362234 0.874873 -0.5748757 0.2721922 0.7716408 -0.9403999 0.2671391 0.2104396 -0.7579517 0.6000652 0.2557951 -0.8343762 0.4495274 0.3189691 -0.5403521 0.6166883 0.5724641 -0.1222049 0.7081429 0.6954132 0.004350125 0.6915641 0.722302 -0.003747344 -0.7131491 -0.7010025 0.1685628 -0.6938462 -0.7001174 0.4572601 -0.3210161 -0.8293743 0.5753656 -0.4143415 -0.7051777 0.836129 -0.4761227 -0.2723885 0.8375189 -0.3661284 0.4056009 0.5254085 -0.2249021 0.8205882 0.4964608 -0.2619367 0.8275964 0.8257693 -0.4706809 -0.3107483 0.4624979 -0.2544099 0.8493358 0.7325342 -0.439785 -0.5195987 0.5004582 -0.2796995 0.8193349 0.5678518 -0.35532 -0.7424904 0.7257292 -0.3545063 0.5896121 0.5004802 -0.6916942 -0.5206522 0.3638172 -0.27053 0.8913196 0.81373 -0.4956707 -0.3035686 -0.005544185 -0.7215022 -0.69239 0.1293652 -0.7348008 -0.6658322 0.5432598 -0.6764827 -0.4972322 0.7948817 -0.5449968 -0.266724 0.837587 -0.5087959 -0.198934 0.7861094 -0.4582588 -0.4147663 0.6022831 -0.3900209 -0.6965191 0.4187129 -0.3179736 -0.8506304 0.5918229 -0.310664 -0.7437968 0.90021 -0.3228263 -0.2922416 0.8418142 -0.2887821 0.4560196 0.769602 -0.2501199 0.5874972 0.5039018 -0.2468448 0.8277383 0.4339461 -0.2168923 0.8744419 0.4839261 -0.182868 0.8557891 0.515608 -0.2005769 0.833017 0.3691142 -0.257488 0.8930032 -0.1497614 -0.7249144 -0.672362 -0.3005139 -0.7241074 -0.6207736 -0.9177572 -0.3698983 -0.1445579 -0.9025849 -0.4208853 0.09053272 -0.7560148 -0.4068777 0.51273 -0.2458906 -0.317752 0.9157356 0.03008979 -0.2352176 0.9714769 0.03892445 -0.2135146 0.9761641 -0.8736792 -0.478422 0.08830106 0.1184792 -0.240859 0.9633014 -0.9155436 -0.4015979 -0.0223394 0.1449064 -0.2571625 0.955442 -0.9152116 -0.3690653 -0.1617976 -0.1645612 -0.2682282 0.9491961 -0.5391308 -0.7678401 -0.3460628 0.1962862 -0.2665272 0.9436286 -0.8027023 -0.5961682 -0.0158897 -0.1391148 -0.7312522 -0.6677703 -0.262397 -0.7480163 -0.6096061 -0.5394099 -0.7995644 -0.2640715 -0.7340923 -0.6761423 0.06277149 -0.7816925 -0.6038085 0.1561158 -0.8496406 -0.5253157 0.04641664 -0.8977476 -0.4228218 -0.1235768 -0.9215814 -0.356283 -0.1541107 -0.9625499 -0.2543383 0.09385985 -0.7961882 -0.269788 0.5415707 -0.1922681 -0.2368779 0.9523245 -0.1004179 -0.2044634 0.9737098 0.1881062 -0.2037549 0.9607809 0.1512173 -0.1778936 0.9723617 0.03351795 -0.1815128 0.9828172 -0.002551794 -0.1872271 0.9823132 0.1997985 -0.2348805 0.9512685 -0.01464903 -0.6916497 -0.7220846 0.1555264 -0.6303561 -0.7605674 0.4979581 -0.5509452 -0.6696993 0.8288068 -0.4067137 -0.3842696 0.845798 -0.3951678 -0.3584244 0.735298 -0.4102272 -0.5394909 0.5850514 -0.4416074 -0.6802189 0.4661628 -0.422333 -0.7773846 0.5620735 -0.4544276 -0.6910636 0.8181246 -0.5025776 -0.279442 0.8656345 -0.3692982 0.3380768 0.750106 -0.3004086 0.5891482 0.461057 -0.3222445 0.8267919 0.4964358 -0.2880682 0.8188822 0.5449049 -0.2716259 0.7932831 0.5332963 -0.1842336 0.8256229 0.3064065 -0.2832633 0.9087777 -0.1505941 -0.7134108 -0.6843731 -0.3132474 -0.7142124 -0.6259208 -0.5747089 -0.705014 -0.4155296 -0.81207 -0.5783936 -0.07747972 -0.8692294 -0.4943352 0.008546233 -0.8834941 -0.4561282 -0.1067013 -0.8679767 -0.4743195 -0.1470963 -0.8747265 -0.4719195 -0.1102058 -0.8738852 -0.4765852 0.09587144 -0.7357124 -0.466135 0.491371 -0.3481194 -0.3099652 0.8847228 -0.1264187 -0.25072 0.9597696 0.1894463 -0.3015779 0.9344308 0.08548104 -0.2634189 0.9608868 -0.01264154 -0.2400714 0.9706729 -4.99356e-4 -0.1593024 0.9872297 0.2679561 -0.1725278 0.9478574 0.1949522 -0.3971679 -0.8967864 -0.8195136 0.4928129 0.2923673 -0.9992371 -0.03659164 0.01309239 0.5132298 -0.6378369 0.5742058 -0.3413496 -0.5729545 0.7450789 -0.2531815 -0.1010773 0.962096 0.17893 -0.3971374 0.9001129 0.5016938 0.3277078 -0.800531 0.7154149 0.3779412 -0.5876339 0.4552141 -0.6213874 0.6376537 0.1086153 -0.6379284 0.7623829 0.3582262 -0.5046846 0.7854549 -0.7834101 0.1554307 0.6017335 -0.8007447 0.2009949 0.5642262 -0.6197088 0.233375 0.7492905 -0.6592914 0.2062441 -0.723014 0.3071078 0.6028932 -0.7363201 -0.04947048 0.6860866 -0.7258217 0.9035615 0.4087649 0.1282693 -0.990051 -0.03723257 -0.1355327 -0.3942076 -0.7593005 -0.5176855 -0.01669359 -0.4851832 -0.8742333 0.1767825 -0.1035023 -0.9787927 0.8746216 -0.09401887 -0.4756023 0.4424284 -0.1187114 -0.8889121 0.996356 -0.08399146 -0.01483982 0.9564806 -0.1583605 0.2450331 -0.01940232 -0.08784466 -0.9959452 -0.8030467 0.01684576 -0.595678 -0.2955987 -0.05980938 -0.9534381 -0.9794789 0.07369977 -0.1875885 -0.9972229 -0.002410948 0.07422101 -0.9581592 -0.274636 -0.08023315 0.174749 -0.6899014 0.7024751 -0.06521505 -0.2863505 0.9559029 0.5958739 0.5325785 0.6010316 0.1672032 -0.1785883 0.9696129 0.4049394 -0.1375718 0.9039347 0.1635487 -0.728843 0.6648152 0.8217533 0.5321658 -0.2037674 0.6142501 0.7886921 -0.02572119 -0.02755671 0.9949483 -0.09653258 0.3024495 -0.9463383 0.113878 -0.5891308 0.7986564 -0.1227717 -0.8028754 0.584048 -0.119495 0.4234321 0.904438 -0.05193436 -0.2423296 0.9638538 -0.110735 0.2595143 0.9631558 -0.07059204 0.1211383 0.9890667 -0.08409839 -0.2363089 -0.9689328 0.0729891 -0.3872677 -0.9202454 0.05632114 -0.4811566 -0.8727748 0.08217328 -0.1079758 -0.9904885 0.08528578 0.01209825 -0.9953714 0.0953381 0.155574 -0.9821699 0.1055424 0.2838832 0.07669299 0.9557787 -0.848262 -0.5255593 -0.06476026 -0.3996399 -0.6440321 0.6522416 -0.1465024 -0.2798179 0.9488092 -0.357899 -0.1366719 0.923704 -0.5754992 -0.1677362 0.8004156 -0.6801325 0.6520363 -0.335065 -0.4686929 0.8751186 -0.1203925 0.2000454 0.9767851 -0.07663327 -0.4627482 -0.8852443 0.04697549 0.7197179 0.6942166 -0.008339464 0.8932501 0.4486362 0.02880316 -0.2604109 0.9590123 -0.1117211 0.406463 0.9120693 -0.05401211 -0.0885545 0.990935 -0.1010236 0.05240988 0.9945519 -0.09010851 0.06464064 -0.9929552 0.09930533 0.222005 -0.9688676 0.1095873 0.3464164 -0.9308907 0.1159231 -0.06563085 -0.9938681 0.08898812 -0.1848818 -0.9796513 0.07811588 -0.3240695 -0.9438923 0.06361079 -0.3740653 0.1213721 0.9194006 0.6679281 -0.2786034 -0.6900845 0.897702 0.06170839 -0.436201 0.3978698 0.1394696 -0.9067659 -0.4972991 0.1199377 0.8592181</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#Elf01_posed_002-mesh-normals-array\" count=\"8028\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"Elf01_posed_002-mesh-map\">\r\n          <float_array id=\"Elf01_posed_002-mesh-map-array\" count=\"85248\">0.01878499 0.436789 0.01878499 0.466293 0.017394 0.466293 0.01878499 0.436789 0.02017599 0.436789 0.02017599 0.466293 0.02017599 0.436789 0.02156698 0.436789 0.02156698 0.466293 0.02156698 0.436789 0.02295798 0.436789 0.02295798 0.466293 0.02295798 0.436789 0.02434897 0.436789 0.02434897 0.466293 0.02434897 0.436789 0.02573996 0.436789 0.02573996 0.466293 0.02573996 0.436789 0.02713096 0.436789 0.02713096 0.466293 0.02713096 0.436789 0.02852195 0.436789 0.02852195 0.466293 0.02852195 0.436789 0.02991294 0.436789 0.02991294 0.466293 0.02991294 0.436789 0.031304 0.436789 0.031304 0.466293 0.031304 0.436789 0.03269499 0.436789 0.03269499 0.466293 0.03269499 0.436789 0.03408598 0.436789 0.03408598 0.466293 0.03408598 0.436789 0.03547698 0.436789 0.03547698 0.466293 0.03547698 0.436789 0.03686797 0.436789 0.03686797 0.466293 0.03825896 0.436789 0.03825896 0.466293 0.03686797 0.466293 0.03964996 0.436789 0.03964996 0.466293 0.03825896 0.466293 0.04104095 0.436789 0.04104095 0.466293 0.03964996 0.466293 0.04104095 0.436789 0.04243195 0.436789 0.04243195 0.466293 0.04243195 0.436789 0.043823 0.436789 0.043823 0.466293 0.04521399 0.436789 0.04521399 0.466293 0.043823 0.466293 0.04521399 0.436789 0.04660499 0.436789 0.04660499 0.466293 0.04799598 0.436789 0.04799598 0.466293 0.04660499 0.466293 0.04938596 0.436789 0.04938596 0.466293 0.04799598 0.466293 0.05077695 0.436789 0.05077695 0.466293 0.04938596 0.466293 0.05216795 0.436789 0.05216795 0.466293 0.05077695 0.466293 0.053559 0.436789 0.053559 0.466293 0.05216795 0.466293 0.053559 0.436789 0.05494999 0.436789 0.05494999 0.466293 0.05494999 0.436789 0.05634099 0.436789 0.05634099 0.466293 0.05634099 0.436789 0.05773198 0.436789 0.05773198 0.466293 0.05773198 0.436789 0.05912297 0.436789 0.05912297 0.466293 0.06051397 0.436789 0.06051397 0.466293 0.05912297 0.466293 0.06190496 0.436789 0.06190496 0.466293 0.06051397 0.466293 0.06190496 0.436789 0.06329596 0.436789 0.06329596 0.466293 0.06468695 0.436789 0.06468695 0.466293 0.06329596 0.466293 0.066078 0.436789 0.066078 0.466293 0.06468695 0.466293 0.066078 0.436789 0.067469 0.436789 0.067469 0.466293 0.06885999 0.436789 0.06885999 0.466293 0.067469 0.466293 0.06885999 0.436789 0.07025098 0.436789 0.07025098 0.466293 0.07164198 0.436789 0.07164198 0.466293 0.07025098 0.466293 0.07164198 0.436789 0.07303297 0.436789 0.07303297 0.466293 0.07442396 0.436789 0.07442396 0.466293 0.07303297 0.466293 0.07581496 0.436789 0.07581496 0.466293 0.07442396 0.466293 0.07720595 0.436789 0.07720595 0.466293 0.07581496 0.466293 0.07720595 0.436789 0.078597 0.436789 0.078597 0.466293 0.078597 0.436789 0.079988 0.436789 0.079988 0.466293 0.079988 0.436789 0.08137899 0.436789 0.08137899 0.466293 0.08276998 0.436789 0.08276998 0.466293 0.08137899 0.466293 0.08416098 0.436789 0.08416098 0.466293 0.08276998 0.466293 0.480813 0.688517 0.486912 0.719176 0.249976 0.74081 0.470765 0.658915 0.480813 0.688517 0.249976 0.74081 0.456939 0.630879 0.470765 0.658915 0.249976 0.74081 0.439572 0.604887 0.456939 0.630879 0.249976 0.74081 0.418961 0.581385 0.439572 0.604887 0.249976 0.74081 0.395458 0.560773 0.418961 0.581385 0.249976 0.74081 0.369466 0.543406 0.395458 0.560773 0.249976 0.74081 0.34143 0.52958 0.369466 0.543406 0.249976 0.74081 0.311829 0.519532 0.34143 0.52958 0.249976 0.74081 0.281169 0.513433 0.311829 0.519532 0.249976 0.74081 0.249976 0.511389 0.281169 0.513433 0.249976 0.74081 0.218783 0.513433 0.249976 0.511389 0.249976 0.74081 0.188123 0.519532 0.218783 0.513433 0.249976 0.74081 0.158522 0.52958 0.188123 0.519532 0.249976 0.74081 0.130486 0.543406 0.158522 0.52958 0.249976 0.74081 0.104494 0.560773 0.130486 0.543406 0.249976 0.74081 0.08099097 0.581385 0.104494 0.560773 0.249976 0.74081 0.06037998 0.604887 0.08099097 0.581385 0.249976 0.74081 0.04301297 0.630879 0.06037998 0.604887 0.249976 0.74081 0.02918696 0.658915 0.04301297 0.630879 0.249976 0.74081 0.01913797 0.688517 0.02918696 0.658915 0.249976 0.74081 0.01303994 0.719176 0.01913797 0.688517 0.249976 0.74081 0.01099497 0.750369 0.01303994 0.719176 0.249976 0.74081 0.01303994 0.781563 0.01099497 0.750369 0.249976 0.74081 0.01913797 0.812222 0.01303994 0.781563 0.249976 0.74081 0.02918696 0.841823 0.01913797 0.812222 0.249976 0.74081 0.04301297 0.86986 0.02918696 0.841823 0.249976 0.74081 0.06037998 0.895852 0.04301297 0.86986 0.249976 0.74081 0.08099097 0.919354 0.06037998 0.895852 0.249976 0.74081 0.104494 0.939965 0.08099097 0.919354 0.249976 0.74081 0.130486 0.957332 0.104494 0.939965 0.249976 0.74081 0.158522 0.971158 0.130486 0.957332 0.249976 0.74081 0.188123 0.981207 0.158522 0.971158 0.249976 0.74081 0.218783 0.987305 0.188123 0.981207 0.249976 0.74081 0.249976 0.98935 0.218783 0.987305 0.249976 0.74081 0.281169 0.987305 0.249976 0.98935 0.249976 0.74081 0.311829 0.981207 0.281169 0.987305 0.249976 0.74081 0.34143 0.971158 0.311829 0.981207 0.249976 0.74081 0.369466 0.957332 0.34143 0.971158 0.249976 0.74081 0.395458 0.939965 0.369466 0.957332 0.249976 0.74081 0.41896 0.919354 0.395458 0.939965 0.249976 0.74081 0.439572 0.895851 0.41896 0.919354 0.249976 0.74081 0.456939 0.86986 0.439572 0.895851 0.249976 0.74081 0.470765 0.841823 0.456939 0.86986 0.249976 0.74081 0.480813 0.812222 0.470765 0.841823 0.249976 0.74081 0.486912 0.781563 0.480813 0.812222 0.249976 0.74081 0.488956 0.750369 0.486912 0.781563 0.249976 0.74081 0.486912 0.719176 0.488956 0.750369 0.249976 0.74081 0.485636 0.281498 0.479571 0.311991 0.249985 0.240967 0.479571 0.311991 0.469577 0.341432 0.249985 0.240967 0.469577 0.341432 0.455826 0.369316 0.249985 0.240967 0.455826 0.369316 0.438553 0.395167 0.249985 0.240967 0.438553 0.395167 0.418054 0.418542 0.249985 0.240967 0.418054 0.418542 0.394679 0.439042 0.249985 0.240967 0.394679 0.439042 0.368828 0.456315 0.249985 0.240967 0.368828 0.456315 0.340943 0.470066 0.249985 0.240967 0.340943 0.470066 0.311503 0.48006 0.249985 0.240967 0.311503 0.48006 0.281009 0.486125 0.249985 0.240967 0.281009 0.486125 0.249985 0.488159 0.249985 0.240967 0.249985 0.488159 0.218961 0.486125 0.249985 0.240967 0.218961 0.486125 0.188468 0.48006 0.249985 0.240967 0.188468 0.48006 0.159027 0.470066 0.249985 0.240967 0.159027 0.470066 0.131143 0.456315 0.249985 0.240967 0.131143 0.456315 0.105292 0.439042 0.249985 0.240967 0.105292 0.439042 0.08191698 0.418542 0.249985 0.240967 0.08191698 0.418542 0.06141698 0.395167 0.249985 0.240967 0.06141698 0.395167 0.04414397 0.369316 0.249985 0.240967 0.04414397 0.369316 0.030393 0.341432 0.249985 0.240967 0.030393 0.341432 0.02039998 0.311991 0.249985 0.240967 0.02039998 0.311991 0.01433396 0.281498 0.249985 0.240967 0.01433396 0.281498 0.01230096 0.250474 0.249985 0.240967 0.01230096 0.250474 0.01433396 0.2194499 0.249985 0.240967 0.01433396 0.2194499 0.02039998 0.188957 0.249985 0.240967 0.02039998 0.188957 0.030393 0.159516 0.249985 0.240967 0.030393 0.159516 0.04414397 0.131632 0.249985 0.240967 0.04414397 0.131632 0.06141698 0.105781 0.249985 0.240967 0.06141698 0.105781 0.08191698 0.08240598 0.249985 0.240967 0.08191698 0.08240598 0.105292 0.06190598 0.249985 0.240967 0.105292 0.06190598 0.131143 0.04463297 0.249985 0.240967 0.131143 0.04463297 0.159027 0.030882 0.249985 0.240967 0.159027 0.030882 0.188468 0.02088797 0.249985 0.240967 0.188468 0.02088797 0.218961 0.01482295 0.249985 0.240967 0.218961 0.01482295 0.249985 0.01278895 0.249985 0.240967 0.249985 0.01278895 0.281009 0.01482295 0.249985 0.240967 0.281009 0.01482295 0.311503 0.02088797 0.249985 0.240967 0.311503 0.02088797 0.340943 0.030882 0.249985 0.240967 0.340943 0.030882 0.368828 0.04463297 0.249985 0.240967 0.368828 0.04463297 0.394679 0.06190598 0.249985 0.240967 0.394679 0.06190598 0.418054 0.08240598 0.249985 0.240967 0.418054 0.08240598 0.438553 0.105781 0.249985 0.240967 0.438553 0.105781 0.455826 0.131632 0.249985 0.240967 0.455826 0.131632 0.469577 0.159516 0.249985 0.240967 0.469577 0.159516 0.479571 0.188957 0.249985 0.240967 0.479571 0.188957 0.485637 0.2194499 0.249985 0.240967 0.485637 0.2194499 0.48767 0.250474 0.249985 0.240967 0.48767 0.250474 0.485636 0.281498 0.249985 0.240967 0.02991294 0.525303 0.02991294 0.554807 0.02852195 0.554807 0.02713096 0.525303 0.02852195 0.525303 0.02852195 0.554807 0.02573996 0.525303 0.02713096 0.525303 0.02713096 0.554807 0.02573996 0.525303 0.02573996 0.554807 0.02434897 0.554807 0.02434897 0.525303 0.02434897 0.554807 0.02295798 0.554807 0.02156698 0.525303 0.02295798 0.525303 0.02295798 0.554807 0.02156698 0.525303 0.02156698 0.554807 0.02017599 0.554807 0.01878499 0.525303 0.02017599 0.525303 0.02017599 0.554807 0.017394 0.525303 0.01878499 0.525303 0.01878499 0.554807 0.08416098 0.525303 0.08416098 0.554807 0.08276998 0.554807 0.08137899 0.525303 0.08276998 0.525303 0.08276998 0.554807 0.079988 0.525303 0.08137899 0.525303 0.08137899 0.554807 0.079988 0.525303 0.079988 0.554807 0.078597 0.554807 0.078597 0.525303 0.078597 0.554807 0.07720595 0.554807 0.07581496 0.525303 0.07720595 0.525303 0.07720595 0.554807 0.07442396 0.525303 0.07581496 0.525303 0.07581496 0.554807 0.07442396 0.525303 0.07442396 0.554807 0.07303297 0.554807 0.07303297 0.525303 0.07303297 0.554807 0.07164198 0.554807 0.07164198 0.525303 0.07164198 0.554807 0.07025098 0.554807 0.06885999 0.525303 0.07025098 0.525303 0.07025098 0.554807 0.06885999 0.525303 0.06885999 0.554807 0.067469 0.554807 0.066078 0.525303 0.067469 0.525303 0.067469 0.554807 0.066078 0.525303 0.066078 0.554807 0.06468695 0.554807 0.06329596 0.525303 0.06468695 0.525303 0.06468695 0.554807 0.06190496 0.525303 0.06329596 0.525303 0.06329596 0.554807 0.06051397 0.525303 0.06190496 0.525303 0.06190496 0.554807 0.05912297 0.525303 0.06051397 0.525303 0.06051397 0.554807 0.05773198 0.525303 0.05912297 0.525303 0.05912297 0.554807 0.05773198 0.525303 0.05773198 0.554807 0.05634099 0.554807 0.05494999 0.525303 0.05634099 0.525303 0.05634099 0.554807 0.053559 0.525303 0.05494999 0.525303 0.05494999 0.554807 0.05216795 0.525303 0.053559 0.525303 0.053559 0.554807 0.05077695 0.525303 0.05216795 0.525303 0.05216795 0.554807 0.04938596 0.525303 0.05077695 0.525303 0.05077695 0.554807 0.04938596 0.525303 0.04938596 0.554807 0.04799598 0.554807 0.04660499 0.525303 0.04799598 0.525303 0.04799598 0.554807 0.04521399 0.525303 0.04660499 0.525303 0.04660499 0.554807 0.04521399 0.525303 0.04521399 0.554807 0.043823 0.554807 0.04243195 0.525303 0.043823 0.525303 0.043823 0.554807 0.04104095 0.525303 0.04243195 0.525303 0.04243195 0.554807 0.03964996 0.525303 0.04104095 0.525303 0.04104095 0.554807 0.03825896 0.525303 0.03964996 0.525303 0.03964996 0.554807 0.03825896 0.525303 0.03825896 0.554807 0.03686797 0.554807 0.03686797 0.525303 0.03686797 0.554807 0.03547698 0.554807 0.03547698 0.525303 0.03547698 0.554807 0.03408598 0.554807 0.03408598 0.525303 0.03408598 0.554807 0.03269499 0.554807 0.031304 0.525303 0.03269499 0.525303 0.03269499 0.554807 0.02991294 0.525303 0.031304 0.525303 0.031304 0.554807 0.02852195 0.495798 0.02991294 0.495798 0.02991294 0.525303 0.02852195 0.495798 0.02852195 0.525303 0.02713096 0.525303 0.02573996 0.495798 0.02713096 0.495798 0.02713096 0.525303 0.02434897 0.495798 0.02573996 0.495798 0.02573996 0.525303 0.02295798 0.495798 0.02434897 0.495798 0.02434897 0.525303 0.02156698 0.495798 0.02295798 0.495798 0.02295798 0.525303 0.02017599 0.495798 0.02156698 0.495798 0.02156698 0.525303 0.01878499 0.495798 0.02017599 0.495798 0.02017599 0.525303 0.01878499 0.495798 0.01878499 0.525303 0.017394 0.525303 0.08416098 0.495798 0.08416098 0.525303 0.08276998 0.525303 0.08137899 0.495798 0.08276998 0.495798 0.08276998 0.525303 0.08137899 0.495798 0.08137899 0.525303 0.079988 0.525303 0.078597 0.495798 0.079988 0.495798 0.079988 0.525303 0.07720595 0.495798 0.078597 0.495798 0.078597 0.525303 0.07581496 0.495798 0.07720595 0.495798 0.07720595 0.525303 0.07581496 0.495798 0.07581496 0.525303 0.07442396 0.525303 0.07303297 0.495798 0.07442396 0.495798 0.07442396 0.525303 0.07164198 0.495798 0.07303297 0.495798 0.07303297 0.525303 0.07164198 0.495798 0.07164198 0.525303 0.07025098 0.525303 0.07025098 0.495798 0.07025098 0.525303 0.06885999 0.525303 0.06885999 0.495798 0.06885999 0.525303 0.067469 0.525303 0.067469 0.495798 0.067469 0.525303 0.066078 0.525303 0.066078 0.495798 0.066078 0.525303 0.06468695 0.525303 0.06468695 0.495798 0.06468695 0.525303 0.06329596 0.525303 0.06329596 0.495798 0.06329596 0.525303 0.06190496 0.525303 0.06051397 0.495798 0.06190496 0.495798 0.06190496 0.525303 0.06051397 0.495798 0.06051397 0.525303 0.05912297 0.525303 0.05912297 0.495798 0.05912297 0.525303 0.05773198 0.525303 0.05773198 0.495798 0.05773198 0.525303 0.05634099 0.525303 0.05494999 0.495798 0.05634099 0.495798 0.05634099 0.525303 0.05494999 0.495798 0.05494999 0.525303 0.053559 0.525303 0.05216795 0.495798 0.053559 0.495798 0.053559 0.525303 0.05216795 0.495798 0.05216795 0.525303 0.05077695 0.525303 0.05077695 0.495798 0.05077695 0.525303 0.04938596 0.525303 0.04938596 0.495798 0.04938596 0.525303 0.04799598 0.525303 0.04799598 0.495798 0.04799598 0.525303 0.04660499 0.525303 0.04660499 0.495798 0.04660499 0.525303 0.04521399 0.525303 0.04521399 0.495798 0.04521399 0.525303 0.043823 0.525303 0.043823 0.495798 0.043823 0.525303 0.04243195 0.525303 0.04104095 0.495798 0.04243195 0.495798 0.04243195 0.525303 0.03964996 0.495798 0.04104095 0.495798 0.04104095 0.525303 0.03825896 0.495798 0.03964996 0.495798 0.03964996 0.525303 0.03686797 0.495798 0.03825896 0.495798 0.03825896 0.525303 0.03547698 0.495798 0.03686797 0.495798 0.03686797 0.525303 0.03408598 0.495798 0.03547698 0.495798 0.03547698 0.525303 0.03269499 0.495798 0.03408598 0.495798 0.03408598 0.525303 0.031304 0.495798 0.03269499 0.495798 0.03269499 0.525303 0.031304 0.495798 0.031304 0.525303 0.02991294 0.525303 0.02852195 0.466293 0.02991294 0.466293 0.02991294 0.495798 0.02713096 0.466293 0.02852195 0.466293 0.02852195 0.495798 0.02573996 0.466293 0.02713096 0.466293 0.02713096 0.495798 0.02434897 0.466293 0.02573996 0.466293 0.02573996 0.495798 0.02295798 0.466293 0.02434897 0.466293 0.02434897 0.495798 0.02156698 0.466293 0.02295798 0.466293 0.02295798 0.495798 0.02017599 0.466293 0.02156698 0.466293 0.02156698 0.495798 0.01878499 0.466293 0.02017599 0.466293 0.02017599 0.495798 0.017394 0.466293 0.01878499 0.466293 0.01878499 0.495798 0.08416098 0.466293 0.08416098 0.495798 0.08276998 0.495798 0.08137899 0.466293 0.08276998 0.466293 0.08276998 0.495798 0.08137899 0.466293 0.08137899 0.495798 0.079988 0.495798 0.078597 0.466293 0.079988 0.466293 0.079988 0.495798 0.07720595 0.466293 0.078597 0.466293 0.078597 0.495798 0.07581496 0.466293 0.07720595 0.466293 0.07720595 0.495798 0.07581496 0.466293 0.07581496 0.495798 0.07442396 0.495798 0.07303297 0.466293 0.07442396 0.466293 0.07442396 0.495798 0.07303297 0.466293 0.07303297 0.495798 0.07164198 0.495798 0.07164198 0.466293 0.07164198 0.495798 0.07025098 0.495798 0.06885999 0.466293 0.07025098 0.466293 0.07025098 0.495798 0.067469 0.466293 0.06885999 0.466293 0.06885999 0.495798 0.066078 0.466293 0.067469 0.466293 0.067469 0.495798 0.06468695 0.466293 0.066078 0.466293 0.066078 0.495798 0.06329596 0.466293 0.06468695 0.466293 0.06468695 0.495798 0.06190496 0.466293 0.06329596 0.466293 0.06329596 0.495798 0.06051397 0.466293 0.06190496 0.466293 0.06190496 0.495798 0.06051397 0.466293 0.06051397 0.495798 0.05912297 0.495798 0.05912297 0.466293 0.05912297 0.495798 0.05773198 0.495798 0.05773198 0.466293 0.05773198 0.495798 0.05634099 0.495798 0.05494999 0.466293 0.05634099 0.466293 0.05634099 0.495798 0.05494999 0.466293 0.05494999 0.495798 0.053559 0.495798 0.053559 0.466293 0.053559 0.495798 0.05216795 0.495798 0.05077695 0.466293 0.05216795 0.466293 0.05216795 0.495798 0.04938596 0.466293 0.05077695 0.466293 0.05077695 0.495798 0.04799598 0.466293 0.04938596 0.466293 0.04938596 0.495798 0.04660499 0.466293 0.04799598 0.466293 0.04799598 0.495798 0.04521399 0.466293 0.04660499 0.466293 0.04660499 0.495798 0.04521399 0.466293 0.04521399 0.495798 0.043823 0.495798 0.04243195 0.466293 0.043823 0.466293 0.043823 0.495798 0.04104095 0.466293 0.04243195 0.466293 0.04243195 0.495798 0.03964996 0.466293 0.04104095 0.466293 0.04104095 0.495798 0.03825896 0.466293 0.03964996 0.466293 0.03964996 0.495798 0.03686797 0.466293 0.03825896 0.466293 0.03825896 0.495798 0.03547698 0.466293 0.03686797 0.466293 0.03686797 0.495798 0.03408598 0.466293 0.03547698 0.466293 0.03547698 0.495798 0.03408598 0.466293 0.03408598 0.495798 0.03269499 0.495798 0.031304 0.466293 0.03269499 0.466293 0.03269499 0.495798 0.02991294 0.466293 0.031304 0.466293 0.031304 0.495798 0.97249 0.116969 0.97249 0.375706 0.555541 0.375706 0.474191 0.122141 0.46606 0.126766 0.461386 0.114618 0.430689 0.332335 0.438523 0.330412 0.439595 0.340875 0.430689 0.332335 0.432367 0.340982 0.425497 0.341257 0.449063 0.06944495 0.444652 0.07932299 0.437429 0.06154799 0.413541 0.305838 0.410268 0.309081 0.40691 0.304845 0.412171 0.292301 0.41626 0.285324 0.420213 0.291184 0.458399 0.2716 0.450175 0.276307 0.449049 0.272521 0.435517 0.270844 0.442598 0.269782 0.44394 0.273593 0.444495 0.329088 0.450139 0.327553 0.455368 0.339766 0.449599 0.118772 0.4561 0.13058 0.443339 0.135773 0.409811 0.08515197 0.413379 0.07991898 0.417515 0.08244496 0.43158 0.282816 0.427936 0.292312 0.419881 0.279423 0.448289 0.340191 0.439595 0.340875 0.438523 0.330412 0.4561 0.13058 0.449599 0.118772 0.461386 0.114618 0.431034 0.07259196 0.424856 0.07944297 0.418532 0.07314997 0.449599 0.118772 0.435925 0.125613 0.425903 0.110038 0.449599 0.118772 0.439258 0.100782 0.451997 0.09611099 0.461386 0.114618 0.451997 0.09611099 0.465013 0.09340995 0.42575 0.325301 0.421715 0.32843 0.419288 0.323289 0.427721 0.315032 0.435098 0.308812 0.438523 0.330412 0.444495 0.329088 0.438523 0.330412 0.435098 0.308812 0.450139 0.327553 0.444495 0.329088 0.440469 0.304591 0.46679 0.313673 0.473338 0.30059 0.476204 0.303733 0.464456 0.325618 0.46679 0.313673 0.471817 0.316486 0.425903 0.110038 0.435925 0.125613 0.425384 0.12812 0.447372 0.301688 0.455671 0.301752 0.456827 0.323236 0.456238 0.280442 0.461008 0.274029 0.462832 0.277212 0.450139 0.327553 0.456827 0.323236 0.45873 0.334212 0.435925 0.125613 0.443339 0.135773 0.429299 0.135172 0.455368 0.339766 0.45873 0.334212 0.462736 0.337565 0.410699 0.123622 0.404336 0.118053 0.410417 0.110959 0.46679 0.313673 0.456827 0.323236 0.455671 0.301752 0.488998 0.266007 0.491176 0.265588 0.490671 0.269203 0.456827 0.323236 0.46679 0.313673 0.464456 0.325618 0.425384 0.12812 0.429299 0.135172 0.419829 0.134626 0.45873 0.334212 0.464456 0.325618 0.467831 0.327477 0.416358 0.3092 0.418822 0.298526 0.423484 0.305083 0.458199 0.06362199 0.465463 0.06623297 0.464268 0.069678 0.427721 0.315032 0.430689 0.332335 0.42575 0.325301 0.430689 0.332335 0.425271 0.334604 0.421715 0.32843 0.465013 0.09340995 0.475171 0.09567499 0.476245 0.103719 0.439595 0.340875 0.438578 0.353754 0.43211 0.352533 0.46606 0.126766 0.474191 0.122141 0.480192 0.134167 0.432367 0.340982 0.43211 0.352533 0.425615 0.351202 0.448289 0.340191 0.455368 0.339766 0.454164 0.355167 0.461409 0.34457 0.460534 0.356666 0.454164 0.355167 0.4561 0.13058 0.46247 0.142328 0.451887 0.147473 0.448289 0.340191 0.447442 0.35471 0.438578 0.353754 0.46247 0.142328 0.4561 0.13058 0.46606 0.126766 0.461167 0.286984 0.462832 0.277212 0.466209 0.2789 0.404336 0.118053 0.399612 0.115139 0.402094 0.109488 0.473338 0.30059 0.476542 0.294342 0.48009 0.297234 0.461167 0.286984 0.467754 0.28517 0.471907 0.290553 0.439258 0.100782 0.425903 0.110038 0.418299 0.09853297 0.439258 0.100782 0.430784 0.08721995 0.444652 0.07932299 0.451997 0.09611099 0.444652 0.07932299 0.461046 0.080976 0.465013 0.09340995 0.461046 0.080976 0.47426 0.08825498 0.423162 0.320235 0.419288 0.323289 0.416499 0.31863 0.427721 0.315032 0.423162 0.320235 0.420364 0.315582 0.423484 0.305083 0.427936 0.292312 0.435098 0.308812 0.440469 0.304591 0.435098 0.308812 0.427936 0.292312 0.447372 0.301688 0.440469 0.304591 0.440334 0.286856 0.455671 0.301752 0.447372 0.301688 0.456238 0.280442 0.425903 0.110038 0.41759 0.116974 0.410417 0.110959 0.425384 0.12812 0.414545 0.132217 0.410699 0.123622 0.410699 0.123622 0.414545 0.132217 0.402146 0.123169 0.396841 0.119834 0.399612 0.115139 0.404336 0.118053 0.492291 0.270405 0.494615 0.267391 0.496598 0.270122 0.467455 0.296367 0.471907 0.290553 0.476542 0.294342 0.463371 0.306229 0.467455 0.296367 0.473338 0.30059 0.455671 0.301752 0.461167 0.286984 0.467455 0.296367 0.412415 0.06073498 0.418532 0.07314997 0.411329 0.06643897 0.433072 0.05186897 0.437429 0.06154799 0.427789 0.04888498 0.466223 0.058106 0.465463 0.06623297 0.458199 0.06362199 0.404061 0.296979 0.410347 0.301893 0.40691 0.304845 0.404745 0.279083 0.412171 0.292301 0.404009 0.28641 0.404745 0.279083 0.407246 0.273173 0.41626 0.285324 0.427793 0.274524 0.417825 0.253996 0.425191 0.249833 0.440026 0.255249 0.442598 0.269782 0.435517 0.270844 0.447677 0.269295 0.445774 0.256605 0.453309 0.257994 0.413379 0.07991898 0.409811 0.08515197 0.404956 0.08161598 0.459122 0.05522596 0.458199 0.06362199 0.454036 0.05245399 0.411446 0.298095 0.410347 0.301893 0.404061 0.296979 0.444293 0.05252796 0.447362 0.062168 0.437429 0.06154799 0.409451 0.264448 0.410409 0.255043 0.419881 0.279423 0.435517 0.270844 0.425191 0.249833 0.431262 0.25269 0.427096 0.066863 0.418532 0.07314997 0.412415 0.06073498 0.36937 0.29642 0.368383 0.297008 0.367718 0.295893 0.395831 0.281339 0.404745 0.279083 0.404009 0.28641 0.351528 0.253803 0.353566 0.254352 0.353204 0.255242 0.410409 0.255043 0.409451 0.264448 0.400639 0.255012 0.38894 0.1911309 0.389792 0.193406 0.388541 0.194178 0.429879 0.240075 0.431262 0.25269 0.425191 0.249833 0.466849 0.199983 0.465734 0.202771 0.464758 0.201991 0.405047 0.293235 0.404061 0.296979 0.399804 0.29523 0.404061 0.296979 0.401862 0.300957 0.39864 0.299162 0.466223 0.058106 0.468376 0.05210697 0.472889 0.05484497 0.395514 0.283807 0.404009 0.28641 0.397693 0.289219 0.444293 0.05252796 0.442598 0.04529899 0.448351 0.04447698 0.409451 0.264448 0.402518 0.265515 0.398394 0.257183 0.407246 0.273173 0.404745 0.279083 0.399988 0.273207 0.404745 0.279083 0.395831 0.281339 0.395023 0.278207 0.420819 0.05584394 0.412415 0.06073498 0.410773 0.05430096 0.425191 0.249833 0.420828 0.246939 0.425171 0.238843 0.417825 0.253996 0.416057 0.250125 0.420828 0.246939 0.410409 0.255043 0.401428 0.25264 0.402214 0.250305 0.411329 0.06643897 0.407699 0.07612597 0.403041 0.07422196 0.445774 0.256605 0.446235 0.252036 0.453344 0.253977 0.431262 0.25269 0.436449 0.2472259 0.441506 0.250018 0.431262 0.25269 0.429879 0.240075 0.431876 0.239455 0.848903 0.314889 0.847818 0.320891 0.844051 0.320629 0.386467 0.200944 0.385357 0.195964 0.388188 0.1972579 0.394615 0.19868 0.392021 0.200202 0.3902 0.196883 0.396236 0.196756 0.394615 0.19868 0.391747 0.1951709 0.479595 0.276792 0.484682 0.272369 0.487278 0.275695 0.482573 0.280333 0.487278 0.275695 0.490241 0.277907 0.488534 0.28575 0.485824 0.283598 0.490241 0.277907 0.868063 0.323171 0.868767 0.309311 0.873285 0.309913 0.864019 0.310016 0.868063 0.323171 0.861051 0.322602 0.476865 0.273228 0.48307 0.269114 0.484682 0.272369 0.390162 0.109205 0.387876 0.107829 0.390157 0.104604 0.386032 0.111781 0.387876 0.107829 0.390162 0.109205 0.485824 0.283598 0.481933 0.287611 0.478744 0.284369 0.486808 0.288213 0.481933 0.287611 0.485824 0.283598 0.392746 0.110835 0.390193 0.114514 0.388082 0.113131 0.394438 0.106721 0.392746 0.110835 0.390162 0.109205 0.479595 0.276792 0.475226 0.280161 0.474504 0.274727 0.475226 0.280161 0.479595 0.276792 0.482573 0.280333 0.48307 0.269114 0.488998 0.266007 0.488701 0.269372 0.493479 0.27188 0.490206 0.272736 0.492291 0.270405 0.493701 0.278859 0.490241 0.277907 0.492874 0.273427 0.490206 0.272736 0.488701 0.269372 0.490671 0.269203 0.867883 0.328386 0.872742 0.328253 0.871151 0.332067 0.867883 0.328386 0.867819 0.332937 0.864018 0.331827 0.490671 0.269203 0.491176 0.265588 0.494615 0.267391 0.493479 0.27188 0.496598 0.270122 0.496419 0.272349 0.490206 0.272736 0.490671 0.269203 0.492291 0.270405 0.492874 0.273427 0.490206 0.272736 0.493479 0.27188 0.38377 0.07024997 0.383986 0.06615 0.403805 0.06769096 0.443109 0.226126 0.447958 0.229356 0.436449 0.2472259 0.436449 0.2472259 0.447958 0.229356 0.451168 0.231477 0.458982 0.235496 0.453344 0.253977 0.446235 0.252036 0.410773 0.05430096 0.397804 0.03652399 0.402614 0.033436 0.396905 0.229714 0.401095 0.22765 0.410258 0.250482 0.408564 0.224798 0.420828 0.246939 0.416057 0.250125 0.425171 0.238843 0.420828 0.246939 0.408564 0.224798 0.444872 0.02925896 0.448351 0.04447698 0.442598 0.04529899 0.399988 0.273207 0.395023 0.278207 0.378402 0.269988 0.401799 0.269545 0.399988 0.273207 0.380277 0.265614 0.38207 0.255251 0.398394 0.257183 0.402518 0.265515 0.47807 0.04208099 0.472889 0.05484497 0.468376 0.05210697 0.388405 0.295703 0.399804 0.29523 0.39864 0.299162 0.399829 0.292007 0.399804 0.29523 0.388405 0.295703 0.386895 0.291262 0.385695 0.288056 0.393611 0.285191 0.417825 0.253996 0.427793 0.274524 0.419881 0.279423 0.416057 0.250125 0.417825 0.253996 0.410409 0.255043 0.410258 0.250482 0.401095 0.22765 0.40489 0.226613 0.3902 0.196883 0.392021 0.200202 0.389381 0.201059 0.387016 0.191768 0.388541 0.194178 0.387471 0.194688 0.841481 0.312504 0.844586 0.31221 0.844051 0.320629 0.402614 0.033436 0.406579 0.02973699 0.421453 0.04563897 0.427789 0.04888498 0.420819 0.05584394 0.417628 0.05071598 0.437429 0.06154799 0.427096 0.066863 0.420819 0.05584394 0.437429 0.06154799 0.444652 0.07932299 0.431034 0.07259196 0.427793 0.274524 0.435517 0.270844 0.438308 0.279596 0.431034 0.07259196 0.444652 0.07932299 0.430784 0.08721995 0.416408 0.09368598 0.424856 0.07944297 0.430784 0.08721995 0.456238 0.280442 0.450175 0.276307 0.458399 0.2716 0.440334 0.286856 0.438308 0.279596 0.450175 0.276307 0.43158 0.282816 0.438308 0.279596 0.440334 0.286856 0.418532 0.07314997 0.424856 0.07944297 0.417515 0.08244496 0.417515 0.08244496 0.424856 0.07944297 0.416408 0.09368598 0.44394 0.273593 0.449049 0.272521 0.450175 0.276307 0.44394 0.273593 0.442598 0.269782 0.447677 0.269295 0.449049 0.272521 0.447677 0.269295 0.454687 0.265344 0.407699 0.07612597 0.404956 0.08161598 0.401552 0.07889997 0.403041 0.07422196 0.401552 0.07889997 0.383199 0.07365697 0.466849 0.199983 0.468338 0.2014999 0.466955 0.202931 0.454166 0.233274 0.446235 0.252036 0.441506 0.250018 0.440026 0.255249 0.441506 0.250018 0.446235 0.252036 0.442598 0.269782 0.440026 0.255249 0.445774 0.256605 0.418532 0.07314997 0.413379 0.07991898 0.407699 0.07612597 0.444652 0.07932299 0.449063 0.06944495 0.459521 0.07239395 0.449063 0.06944495 0.447362 0.062168 0.458199 0.06362199 0.419881 0.279423 0.427936 0.292312 0.420213 0.291184 0.418822 0.298526 0.420213 0.291184 0.427936 0.292312 0.420364 0.315582 0.416499 0.31863 0.412887 0.312783 0.41373 0.298539 0.413541 0.305838 0.410347 0.301893 0.461046 0.080976 0.459521 0.07239395 0.473237 0.08082395 0.433072 0.05186897 0.436567 0.04484897 0.442598 0.04529899 0.436567 0.04484897 0.43802 0.028943 0.441442 0.02907997 0.351528 0.253803 0.352115 0.252329 0.353401 0.253351 0.402518 0.265515 0.401799 0.269545 0.381276 0.262914 0.407246 0.273173 0.401799 0.269545 0.402518 0.265515 0.447362 0.062168 0.444293 0.05252796 0.454036 0.05245399 0.407246 0.273173 0.409451 0.264448 0.419881 0.279423 0.412171 0.292301 0.418822 0.298526 0.41373 0.298539 0.418822 0.298526 0.416358 0.3092 0.413541 0.305838 0.410268 0.309081 0.413541 0.305838 0.416358 0.3092 0.472346 0.074579 0.473237 0.08082395 0.459521 0.07239395 0.4718 0.06770199 0.472346 0.074579 0.464268 0.069678 0.459122 0.05522596 0.464954 0.04907494 0.468376 0.05210697 0.464954 0.04907494 0.472767 0.03773796 0.475188 0.03946697 0.369383 0.295584 0.367718 0.295893 0.368029 0.294688 0.397693 0.289219 0.399829 0.292007 0.388103 0.293381 0.404009 0.28641 0.405047 0.293235 0.399829 0.292007 0.412171 0.292301 0.411446 0.298095 0.405047 0.293235 0.465463 0.06623297 0.466223 0.058106 0.471944 0.06025999 0.353909 0.257934 0.351516 0.255415 0.353204 0.255242 0.355739 0.256804 0.353204 0.255242 0.353566 0.254352 0.356305 0.252909 0.356975 0.255367 0.353566 0.254352 0.355142 0.251074 0.356305 0.252909 0.353401 0.253351 0.791773 0.325198 0.794471 0.325322 0.793882 0.327364 0.791773 0.325198 0.79169 0.327847 0.789555 0.327063 0.358143 0.258145 0.355739 0.256804 0.356975 0.255367 0.356469 0.259447 0.353909 0.257934 0.355739 0.256804 0.788198 0.314263 0.789702 0.312751 0.791902 0.318849 0.791902 0.318849 0.794322 0.312986 0.795581 0.314204 0.358969 0.251079 0.359421 0.253471 0.356305 0.252909 0.359421 0.253471 0.359263 0.256137 0.356975 0.255367 0.825442 0.324568 0.827993 0.323958 0.827414 0.325937 0.825442 0.324568 0.825507 0.327043 0.823506 0.326127 0.370021 0.297843 0.368383 0.297008 0.36937 0.29642 0.370963 0.29668 0.36937 0.29642 0.369383 0.295584 0.370382 0.293985 0.371335 0.295301 0.369383 0.295584 0.369427 0.293249 0.370382 0.293985 0.369181 0.294796 0.373078 0.296921 0.370963 0.29668 0.371335 0.295301 0.372547 0.298346 0.370021 0.297843 0.370963 0.29668 0.823271 0.313542 0.825487 0.313372 0.825446 0.319557 0.827388 0.313869 0.825446 0.319557 0.825487 0.313372 0.371755 0.291887 0.372722 0.293281 0.370382 0.293985 0.372722 0.293281 0.373341 0.295068 0.371335 0.295301 0.392285 0.192487 0.391747 0.1951709 0.389792 0.193406 0.844051 0.320629 0.847818 0.320891 0.846641 0.325217 0.844051 0.320629 0.843767 0.32509 0.840897 0.325063 0.385357 0.195964 0.385577 0.193189 0.387471 0.194688 0.388541 0.194178 0.3902 0.196883 0.388188 0.1972579 0.391747 0.1951709 0.3902 0.196883 0.388541 0.194178 0.811365 0.3209 0.810616 0.327287 0.807761 0.326933 0.804449 0.320671 0.807907 0.320521 0.807761 0.326933 0.462289 0.2015759 0.464906 0.1998389 0.464758 0.201991 0.463061 0.204088 0.464758 0.201991 0.465734 0.202771 0.466437 0.2056789 0.464498 0.205635 0.465734 0.202771 0.468811 0.204883 0.466437 0.2056789 0.466955 0.202931 0.46057 0.207357 0.463061 0.204088 0.464498 0.205635 0.458716 0.2051129 0.462289 0.2015759 0.463061 0.204088 0.804485 0.316766 0.807907 0.320521 0.804449 0.320671 0.810815 0.312534 0.807907 0.320521 0.808071 0.311537 0.467867 0.209697 0.464885 0.209655 0.466437 0.2056789 0.464885 0.209655 0.462619 0.2090809 0.464498 0.205635 0.390741 0.214668 0.394609 0.213169 0.39874 0.222262 0.39874 0.222262 0.394609 0.213169 0.397867 0.212099 0.401216 0.210568 0.405792 0.219552 0.402276 0.2212139 0.409003 0.2170979 0.405792 0.219552 0.401216 0.210568 0.39871 0.02840298 0.394358 0.031403 0.388335 0.02266597 0.395581 0.01725995 0.402486 0.02516198 0.39871 0.02840298 0.454865 0.217369 0.450751 0.224692 0.446218 0.2217389 0.450751 0.224692 0.454865 0.217369 0.457548 0.2192029 0.460126 0.220472 0.45648 0.228219 0.453719 0.226638 0.460923 0.230226 0.45648 0.228219 0.460126 0.220472 0.379027 0.06943297 0.378478 0.07251596 0.37127 0.07081997 0.371842 0.06813299 0.372092 0.06488698 0.379278 0.06571495 0.441216 0.02386695 0.438147 0.023889 0.438091 0.01595497 0.443456 0.01594299 0.444289 0.02403396 0.441216 0.02386695 0.36789 0.261462 0.375503 0.263959 0.373786 0.267936 0.375503 0.263959 0.36789 0.261462 0.369117 0.259181 0.37669 0.258631 0.376522 0.261482 0.369117 0.259181 0.377373 0.254347 0.37669 0.258631 0.369188 0.256365 0.477311 0.03567695 0.475027 0.03428798 0.478043 0.02945095 0.482366 0.03260296 0.47988 0.03810399 0.477311 0.03567695 0.380071 0.296425 0.384881 0.295984 0.384906 0.298668 0.384613 0.293842 0.384881 0.295984 0.380071 0.296425 0.383648 0.291848 0.384613 0.293842 0.379802 0.294379 0.379053 0.292448 0.378125 0.289948 0.382631 0.288868 0.44217 0.006167948 0.443095 0.01286697 0.441573 0.007194995 0.358143 0.258145 0.364928 0.260402 0.363093 0.263277 0.364928 0.260402 0.358143 0.258145 0.359263 0.256137 0.366221 0.255531 0.366203 0.258265 0.359263 0.256137 0.366321 0.252075 0.366221 0.255531 0.359421 0.253471 0.438996 0.007281959 0.438102 0.01293694 0.438171 0.00664699 0.389381 0.201059 0.39311 0.209453 0.389398 0.210543 0.39311 0.209453 0.389381 0.201059 0.392021 0.200202 0.394615 0.19868 0.39928 0.207043 0.396121 0.208514 0.401389 0.2045789 0.39928 0.207043 0.394615 0.19868 0.383451 0.01156598 0.385903 0.019131 0.381622 0.01157099 0.386138 0.008875966 0.392801 0.01405894 0.389414 0.01631999 0.36225 0.06399899 0.36918 0.06458097 0.363402 0.06494897 0.46057 0.207357 0.456653 0.21437 0.453045 0.211564 0.456653 0.21437 0.46057 0.207357 0.462619 0.2090809 0.461611 0.2172729 0.45917 0.216123 0.462619 0.2090809 0.465408 0.218519 0.461611 0.2172729 0.464885 0.209655 0.368956 0.06761997 0.368375 0.07014197 0.362863 0.06775701 0.481357 0.02825999 0.479368 0.02743399 0.482257 0.02436697 0.484224 0.025303 0.483397 0.03024297 0.481357 0.02825999 0.373078 0.296921 0.377879 0.296559 0.377634 0.298623 0.377879 0.296559 0.373078 0.296921 0.373341 0.295068 0.377019 0.292797 0.377689 0.294642 0.373341 0.295068 0.376073 0.290539 0.377019 0.292797 0.372722 0.293281 0.384906 0.298668 0.384881 0.295984 0.38638 0.298656 0.47988 0.03810399 0.479114 0.03976595 0.476418 0.03722995 0.474086 0.03572696 0.475027 0.03428798 0.477311 0.03567695 0.479114 0.03976595 0.47807 0.04208099 0.475188 0.03946697 0.38638 0.298656 0.388405 0.295703 0.38839 0.298683 0.388103 0.293381 0.388405 0.295703 0.384881 0.295984 0.386895 0.291262 0.388103 0.293381 0.384613 0.293842 0.383928 0.288529 0.386895 0.291262 0.383648 0.291848 0.472767 0.03773796 0.474086 0.03572696 0.476418 0.03722995 0.375503 0.263959 0.376016 0.268889 0.373786 0.267936 0.444289 0.02403396 0.444556 0.02651196 0.441319 0.02632898 0.438104 0.02628898 0.438147 0.023889 0.441216 0.02386695 0.444556 0.02651196 0.444872 0.02925896 0.441442 0.02907997 0.378402 0.269988 0.376016 0.268889 0.380277 0.265614 0.380277 0.265614 0.375503 0.263959 0.376522 0.261482 0.381444 0.259859 0.381276 0.262914 0.376522 0.261482 0.379636 0.254818 0.381444 0.259859 0.37669 0.258631 0.43802 0.028943 0.438104 0.02628898 0.441319 0.02632898 0.39871 0.02840298 0.402486 0.02516198 0.404457 0.02737498 0.396031 0.03387695 0.394358 0.031403 0.39871 0.02840298 0.402276 0.2212139 0.40489 0.226613 0.401095 0.22765 0.405792 0.219552 0.408564 0.224798 0.40489 0.226613 0.410485 0.219577 0.408564 0.224798 0.405792 0.219552 0.397804 0.03652399 0.396031 0.03387695 0.400573 0.03084498 0.400573 0.03084498 0.404457 0.02737498 0.406579 0.02973699 0.39874 0.222262 0.401095 0.22765 0.39581 0.22689 0.381429 0.06591796 0.381189 0.06978899 0.379027 0.06943297 0.381189 0.06978899 0.380649 0.073013 0.378478 0.07251596 0.447958 0.229356 0.450751 0.224692 0.453719 0.226638 0.45648 0.228219 0.454166 0.233274 0.451168 0.231477 0.460014 0.2326509 0.454166 0.233274 0.45648 0.228219 0.38377 0.07024997 0.383199 0.07365697 0.380649 0.073013 0.381189 0.06978899 0.381429 0.06591796 0.383986 0.06615 0.444778 0.223758 0.447958 0.229356 0.443109 0.226126 0.483397 0.03024297 0.482844 0.03151297 0.480704 0.02941495 0.480704 0.02941495 0.478643 0.02851599 0.479368 0.02743399 0.482844 0.03151297 0.482366 0.03260296 0.480158 0.03042 0.377879 0.296559 0.380071 0.296425 0.37891 0.298675 0.379802 0.294379 0.380071 0.296425 0.377879 0.296559 0.379053 0.292448 0.379802 0.294379 0.377689 0.294642 0.377192 0.290204 0.379053 0.292448 0.377019 0.292797 0.480158 0.03042 0.478043 0.02945095 0.478643 0.02851599 0.44071 0.01440995 0.438083 0.014557 0.438102 0.01293694 0.363093 0.263277 0.364928 0.260402 0.364738 0.264069 0.443095 0.01286697 0.443293 0.01451694 0.44071 0.01440995 0.364738 0.264069 0.36789 0.261462 0.366129 0.264716 0.36789 0.261462 0.364928 0.260402 0.366203 0.258265 0.369188 0.256365 0.369117 0.259181 0.366203 0.258265 0.368066 0.252362 0.369188 0.256365 0.366221 0.255531 0.440796 0.01581197 0.438091 0.01595497 0.438083 0.014557 0.443293 0.01451694 0.443456 0.01594299 0.440796 0.01581197 0.392801 0.01405894 0.394294 0.01578396 0.390828 0.01816898 0.390828 0.01816898 0.387204 0.02103596 0.385903 0.019131 0.396121 0.208514 0.397867 0.212099 0.394609 0.213169 0.39928 0.207043 0.401216 0.210568 0.397867 0.212099 0.402734 0.206446 0.401216 0.210568 0.39928 0.207043 0.392061 0.01976197 0.388335 0.02266597 0.387204 0.02103596 0.394294 0.01578396 0.395581 0.01725995 0.392061 0.01976197 0.39311 0.209453 0.394609 0.213169 0.390073 0.2127799 0.369921 0.07050198 0.368375 0.07014197 0.368956 0.06761997 0.453045 0.211564 0.456653 0.21437 0.451891 0.213212 0.368956 0.06761997 0.36918 0.06458097 0.370743 0.06473296 0.451891 0.213212 0.454865 0.217369 0.450947 0.214608 0.454865 0.217369 0.456653 0.21437 0.45917 0.216123 0.460126 0.220472 0.457548 0.2192029 0.45917 0.216123 0.464722 0.220413 0.460126 0.220472 0.461611 0.2172729 0.37127 0.07081997 0.369921 0.07050198 0.370506 0.06788796 0.372092 0.06488698 0.371842 0.06813299 0.370506 0.06788796 0.402094 0.109488 0.399612 0.115139 0.392746 0.110835 0.467754 0.28517 0.466209 0.2789 0.472616 0.276174 0.467754 0.28517 0.475226 0.280161 0.478744 0.284369 0.471907 0.290553 0.478744 0.284369 0.481933 0.287611 0.476542 0.294342 0.481933 0.287611 0.484967 0.290291 0.399612 0.115139 0.396841 0.119834 0.390193 0.114514 0.490206 0.272736 0.487278 0.275695 0.484682 0.272369 0.490241 0.277907 0.487278 0.275695 0.490206 0.272736 0.390157 0.104604 0.384029 0.102625 0.383545 0.101034 0.381633 0.10678 0.383177 0.104989 0.387876 0.107829 0.474191 0.122141 0.481981 0.118467 0.487609 0.129102 0.481981 0.118467 0.474191 0.122141 0.473548 0.112048 0.482803 0.109934 0.473548 0.112048 0.476245 0.103719 0.482404 0.1017889 0.476245 0.103719 0.475171 0.09567499 0.480536 0.08825296 0.481676 0.09454399 0.475171 0.09567499 0.479091 0.08017098 0.480536 0.08825296 0.47426 0.08825498 0.478261 0.07484996 0.479091 0.08017098 0.473237 0.08082395 0.477693 0.06848996 0.478261 0.07484996 0.472346 0.074579 0.477186 0.06082999 0.477693 0.06848996 0.4718 0.06770199 0.477713 0.05598896 0.477186 0.06082999 0.471944 0.06025999 0.481262 0.04345095 0.477713 0.05598896 0.472889 0.05484497 0.482108 0.04107797 0.481262 0.04345095 0.47807 0.04208099 0.482649 0.03934794 0.482108 0.04107797 0.479114 0.03976595 0.484531 0.03374898 0.482649 0.03934794 0.47988 0.03810399 0.484898 0.03259998 0.484531 0.03374898 0.482366 0.03260296 0.485285 0.03120899 0.484898 0.03259998 0.482844 0.03151297 0.486427 0.02580195 0.485285 0.03120899 0.483397 0.03024297 0.486151 0.02314096 0.486427 0.02580195 0.485103 0.024827 0.48539 0.02188599 0.486151 0.02314096 0.485318 0.02298098 0.484721 0.02148896 0.48539 0.02188599 0.484926 0.02211499 0.484721 0.02148896 0.484549 0.021981 0.484138 0.02191299 0.483179 0.02229297 0.482411 0.02144396 0.48392 0.02127099 0.481926 0.02348899 0.48052 0.02275699 0.482411 0.02144396 0.479368 0.02743399 0.477381 0.02617895 0.48052 0.02275699 0.478643 0.02851599 0.476475 0.02711498 0.477381 0.02617895 0.476475 0.02711498 0.478643 0.02851599 0.478043 0.02945095 0.475708 0.027969 0.478043 0.02945095 0.475027 0.03428798 0.471105 0.03344595 0.472205 0.03221094 0.475027 0.03428798 0.469631 0.03525197 0.471105 0.03344595 0.474086 0.03572696 0.462333 0.043446 0.469631 0.03525197 0.472767 0.03773796 0.459755 0.04388195 0.462333 0.043446 0.464954 0.04907494 0.454036 0.05245399 0.45763 0.04244798 0.459755 0.04388195 0.45763 0.04244798 0.454036 0.05245399 0.448351 0.04447698 0.454543 0.03885197 0.448351 0.04447698 0.444872 0.02925896 0.449604 0.02826797 0.444872 0.02925896 0.444556 0.02651196 0.444289 0.02403396 0.448448 0.023319 0.448991 0.02566599 0.446808 0.01554298 0.448448 0.023319 0.444289 0.02403396 0.446443 0.01413196 0.446808 0.01554298 0.443456 0.01594299 0.446008 0.01253497 0.446443 0.01413196 0.443293 0.01451694 0.444277 0.006348967 0.446008 0.01253497 0.443095 0.01286697 0.442805 0.003811955 0.444277 0.006348967 0.44217 0.006167948 0.440784 0.002125978 0.442805 0.003811955 0.441439 0.004094958 0.440366 0.002622961 0.439997 0.002421975 0.439958 0.001884996 0.439958 0.001884996 0.439997 0.002421975 0.439671 0.002707958 0.438722 0.00415796 0.437528 0.004000961 0.439156 0.002267956 0.438171 0.00664699 0.436073 0.007027983 0.437528 0.004000961 0.438102 0.01293694 0.435157 0.012932 0.436073 0.007027983 0.435157 0.012932 0.438102 0.01293694 0.438083 0.014557 0.438091 0.01595497 0.434718 0.01592195 0.434911 0.01452398 0.438147 0.023889 0.433991 0.02357 0.434718 0.01592195 0.438147 0.023889 0.438104 0.02628898 0.433719 0.025837 0.433423 0.02830499 0.433719 0.025837 0.438104 0.02628898 0.430429 0.03764498 0.433423 0.02830499 0.43802 0.028943 0.428645 0.03947597 0.430429 0.03764498 0.436567 0.04484897 0.428645 0.03947597 0.433072 0.05186897 0.427789 0.04888498 0.426219 0.03985095 0.427789 0.04888498 0.421453 0.04563897 0.406579 0.02973699 0.409569 0.02723199 0.423211 0.03897196 0.407448 0.02514398 0.409569 0.02723199 0.406579 0.02973699 0.405524 0.02307397 0.407448 0.02514398 0.404457 0.02737498 0.398562 0.015661 0.405524 0.02307397 0.402486 0.02516198 0.397239 0.01425099 0.398562 0.015661 0.395581 0.01725995 0.395696 0.01263594 0.397239 0.01425099 0.394294 0.01578396 0.388094 0.006185948 0.395696 0.01263594 0.392801 0.01405894 0.383689 0.004185974 0.388094 0.006185948 0.3864 0.007463991 0.38167 0.004242956 0.383689 0.004185974 0.383057 0.004802942 0.381701 0.005083978 0.381218 0.005501985 0.380571 0.004686951 0.380606 0.005871951 0.379787 0.005584955 0.380571 0.004686951 0.380056 0.007230997 0.379101 0.00801897 0.379787 0.005584955 0.381622 0.01157099 0.379657 0.013134 0.379101 0.00801897 0.385903 0.019131 0.383614 0.02158898 0.379657 0.013134 0.383614 0.02158898 0.385903 0.019131 0.387204 0.02103596 0.388335 0.02266597 0.385787 0.02523398 0.38476 0.02354997 0.394358 0.031403 0.391105 0.03402799 0.385787 0.02523398 0.391105 0.03402799 0.394358 0.031403 0.396031 0.03387695 0.397804 0.03652399 0.394091 0.03903698 0.39261 0.03645098 0.397804 0.03652399 0.410773 0.05430096 0.402214 0.05425596 0.402415 0.05712699 0.402214 0.05425596 0.410773 0.05430096 0.412415 0.06073498 0.411329 0.06643897 0.4016 0.05947899 0.4016 0.05947899 0.411329 0.06643897 0.403805 0.06769096 0.383986 0.06615 0.383706 0.06150096 0.399334 0.06105095 0.383706 0.06150096 0.383986 0.06615 0.381429 0.06591796 0.379278 0.06571495 0.379175 0.06152695 0.381242 0.06150597 0.379175 0.06152695 0.379278 0.06571495 0.372092 0.06488698 0.372228 0.06140297 0.372092 0.06488698 0.370743 0.06473296 0.36918 0.06458097 0.3693 0.06140595 0.370871 0.06139898 0.362664 0.06139796 0.3693 0.06140595 0.36918 0.06458097 0.359308 0.06297099 0.362664 0.06139796 0.36225 0.06399899 0.357999 0.06444799 0.359308 0.06297099 0.35953 0.06411397 0.358284 0.06503295 0.357947 0.06536996 0.357571 0.06529295 0.357571 0.06529295 0.357947 0.06536996 0.358123 0.06588697 0.358855 0.067227 0.35852 0.068349 0.357675 0.06638199 0.361496 0.06825399 0.360771 0.07083499 0.35852 0.068349 0.368375 0.07014197 0.367474 0.07330995 0.360771 0.07083499 0.367474 0.07330995 0.368375 0.07014197 0.369921 0.07050198 0.369921 0.07050198 0.37127 0.07081997 0.370312 0.07428395 0.37127 0.07081997 0.378478 0.07251596 0.377135 0.07649499 0.379157 0.07722395 0.377135 0.07649499 0.378478 0.07251596 0.380649 0.073013 0.383199 0.07365697 0.38159 0.07805401 0.383199 0.07365697 0.401552 0.07889997 0.397243 0.08388298 0.400002 0.08596795 0.397243 0.08388298 0.401552 0.07889997 0.405009 0.09074199 0.400002 0.08596795 0.404956 0.08161598 0.412756 0.088499 0.407177 0.09315198 0.405009 0.09074199 0.416408 0.09368598 0.408933 0.09699696 0.407177 0.09315198 0.410194 0.100325 0.408933 0.09699696 0.416408 0.09368598 0.410194 0.100325 0.418299 0.09853297 0.410417 0.110959 0.407203 0.105486 0.410417 0.110959 0.402094 0.109488 0.401954 0.1057479 0.402094 0.109488 0.394438 0.106721 0.39324 0.103372 0.395247 0.104067 0.394438 0.106721 0.39324 0.103372 0.392169 0.105709 0.390157 0.104604 0.385263 0.09989595 0.391018 0.102329 0.390157 0.104604 0.380243 0.09951496 0.385263 0.09989595 0.383545 0.101034 0.378957 0.100137 0.380243 0.09951496 0.379956 0.100535 0.37772 0.101517 0.378957 0.100137 0.379209 0.101036 0.37772 0.101517 0.378398 0.101861 0.378 0.10277 0.377293 0.103004 0.378 0.10277 0.377757 0.103703 0.380009 0.106984 0.379472 0.1089619 0.377193 0.104338 0.386032 0.111781 0.384555 0.113597 0.379472 0.1089619 0.386522 0.1151 0.384555 0.113597 0.386032 0.111781 0.38843 0.116461 0.386522 0.1151 0.388082 0.113131 0.393956 0.121379 0.38843 0.116461 0.390193 0.114514 0.398302 0.127308 0.393956 0.121379 0.396841 0.119834 0.408742 0.134485 0.398302 0.127308 0.402146 0.123169 0.418744 0.138635 0.408742 0.134485 0.414545 0.132217 0.428658 0.140121 0.418744 0.138635 0.419829 0.134626 0.435172 0.140163 0.428658 0.140121 0.429299 0.135172 0.446187 0.150113 0.435172 0.140163 0.443339 0.135773 0.51973 0.169718 0.513347 0.175074 0.480192 0.134167 0.436703 0.397594 0.42512 0.397316 0.43211 0.352533 0.436703 0.397594 0.438578 0.353754 0.447442 0.35471 0.448183 0.39916 0.447442 0.35471 0.454164 0.355167 0.470912 0.192254 0.446187 0.150113 0.451887 0.147473 0.479434 0.189914 0.451887 0.147473 0.46247 0.142328 0.489262 0.1868489 0.46247 0.142328 0.472111 0.138204 0.513347 0.175074 0.500225 0.183162 0.472111 0.138204 0.42512 0.397316 0.419004 0.397581 0.425615 0.351202 0.460534 0.356666 0.468881 0.39882 0.462255 0.398279 0.486808 0.288213 0.485824 0.283598 0.488534 0.28575 0.484967 0.290291 0.481933 0.287611 0.486808 0.288213 0.475226 0.280161 0.472616 0.276174 0.474504 0.274727 0.479595 0.276792 0.474504 0.274727 0.476865 0.273228 0.45648 0.228219 0.460923 0.230226 0.460014 0.2326509 0.460014 0.2326509 0.458982 0.235496 0.454166 0.233274 0.450751 0.224692 0.447958 0.229356 0.444778 0.223758 0.446218 0.2217389 0.450751 0.224692 0.444778 0.223758 0.461611 0.2172729 0.465408 0.218519 0.464722 0.220413 0.464722 0.220413 0.464124 0.222011 0.460126 0.220472 0.456653 0.21437 0.454865 0.217369 0.451891 0.213212 0.405792 0.219552 0.409003 0.2170979 0.410485 0.219577 0.410485 0.219577 0.412086 0.222199 0.408564 0.224798 0.39581 0.22689 0.401095 0.22765 0.396905 0.229714 0.394729 0.224232 0.39874 0.222262 0.39581 0.22689 0.390073 0.2127799 0.394609 0.213169 0.390741 0.214668 0.389398 0.210543 0.39311 0.209453 0.390073 0.2127799 0.39928 0.207043 0.401389 0.2045789 0.402734 0.206446 0.402734 0.206446 0.403799 0.208113 0.401216 0.210568 0.377373 0.254347 0.379636 0.254818 0.37669 0.258631 0.381444 0.259859 0.379636 0.254818 0.38207 0.255251 0.375503 0.263959 0.380277 0.265614 0.376016 0.268889 0.366221 0.255531 0.366321 0.252075 0.368066 0.252362 0.368066 0.252362 0.369526 0.252627 0.369188 0.256365 0.364928 0.260402 0.36789 0.261462 0.364738 0.264069 0.37891 0.298675 0.380071 0.296425 0.379929 0.298699 0.377634 0.298623 0.377879 0.296559 0.37891 0.298675 0.376073 0.290539 0.377192 0.290204 0.377019 0.292797 0.379053 0.292448 0.377192 0.290204 0.378125 0.289948 0.383648 0.291848 0.382631 0.288868 0.383928 0.288529 0.386895 0.291262 0.383928 0.288529 0.385695 0.288056 0.384881 0.295984 0.388405 0.295703 0.38638 0.298656 0.36918 0.06458097 0.368956 0.06761997 0.363426 0.06644797 0.807907 0.320521 0.805028 0.311985 0.808071 0.311537 0.362863 0.06775701 0.368375 0.07014197 0.361496 0.06825399 0.811337 0.316477 0.807907 0.320521 0.810815 0.312534 0.358855 0.067227 0.358123 0.06588697 0.35907 0.06678998 0.358284 0.06503295 0.35953 0.06411397 0.359623 0.06447798 0.363402 0.06494897 0.362897 0.06514799 0.362127 0.06463396 0.35953 0.06411397 0.36225 0.06399899 0.362127 0.06463396 0.362863 0.06775701 0.362425 0.06743395 0.362962 0.06637495 0.363426 0.06644797 0.362962 0.06637495 0.362897 0.06514799 0.361496 0.06825399 0.361537 0.06760197 0.362425 0.06743395 0.358855 0.067227 0.35907 0.06678998 0.361537 0.06760197 0.811365 0.3209 0.813264 0.321639 0.811474 0.32699 0.802421 0.31299 0.804207 0.310525 0.805028 0.311985 0.802421 0.321167 0.802421 0.31299 0.804485 0.316766 0.80821 0.310089 0.811967 0.311018 0.810815 0.312534 0.80821 0.310089 0.808071 0.311537 0.805028 0.311985 0.813476 0.313359 0.811337 0.316477 0.810815 0.312534 0.813264 0.321639 0.811365 0.3209 0.811337 0.316477 0.825034 0.294168 0.828298 0.295701 0.826389 0.296917 0.828298 0.295701 0.830435 0.296925 0.828446 0.297948 0.804449 0.320671 0.805102 0.327228 0.804244 0.326986 0.828298 0.295701 0.831603 0.294168 0.830435 0.296925 0.826389 0.296917 0.828298 0.295701 0.828446 0.297948 0.810616 0.327287 0.811474 0.32699 0.809963 0.329726 0.807761 0.326933 0.810616 0.327287 0.809963 0.329726 0.807761 0.326933 0.807743 0.330696 0.805648 0.329692 0.804244 0.326986 0.805102 0.327228 0.805648 0.329692 0.811365 0.3209 0.807907 0.320521 0.811337 0.316477 0.804485 0.316766 0.805028 0.311985 0.807907 0.320521 0.387876 0.107829 0.383177 0.104989 0.384029 0.102625 0.868063 0.323171 0.864019 0.310016 0.868767 0.309311 0.380009 0.106984 0.381633 0.10678 0.386032 0.111781 0.873285 0.309913 0.875945 0.312375 0.874366 0.323122 0.383177 0.104989 0.381633 0.10678 0.381018 0.105497 0.384029 0.102625 0.382745 0.10274 0.382576 0.101631 0.379956 0.100535 0.383545 0.101034 0.382576 0.101631 0.377757 0.103703 0.378 0.10277 0.378088 0.103426 0.379209 0.101036 0.379956 0.100535 0.379814 0.100987 0.383177 0.104989 0.382146 0.104267 0.382745 0.10274 0.380009 0.106984 0.379914 0.105812 0.381018 0.105497 0.377757 0.103703 0.378088 0.103426 0.379914 0.105812 0.868946 0.306844 0.875067 0.307845 0.873285 0.309913 0.859104 0.310065 0.862944 0.307653 0.864019 0.310016 0.859104 0.322681 0.859104 0.310065 0.861041 0.31237 0.872742 0.328253 0.87546 0.32795 0.871151 0.332067 0.869557 0.298254 0.872787 0.300404 0.869133 0.301551 0.862182 0.29595 0.869557 0.298254 0.865989 0.300425 0.859615 0.327048 0.862491 0.327899 0.864018 0.331827 0.868946 0.306844 0.868767 0.309311 0.864019 0.310016 0.875067 0.307845 0.878605 0.310804 0.875945 0.312375 0.876821 0.32331 0.874366 0.323122 0.875945 0.312375 0.859615 0.327048 0.859104 0.322681 0.861051 0.322602 0.868063 0.323171 0.867883 0.328386 0.862491 0.327899 0.868063 0.323171 0.874366 0.323122 0.872742 0.328253 0.87546 0.32795 0.872742 0.328253 0.874366 0.323122 0.869557 0.298254 0.877259 0.29595 0.872787 0.300404 0.865989 0.300425 0.869557 0.298254 0.869133 0.301551 0.381622 0.01157099 0.381703 0.00980699 0.382942 0.01011699 0.380056 0.007230997 0.38053 0.006927967 0.381703 0.00980699 0.386138 0.008875966 0.385033 0.01063996 0.3842 0.009432971 0.383057 0.004802942 0.3864 0.007463991 0.385063 0.007047951 0.380056 0.007230997 0.380606 0.005871951 0.38053 0.006927967 0.381701 0.005083978 0.383057 0.004802942 0.382836 0.00524795 0.850332 0.313362 0.848903 0.314889 0.847476 0.312617 0.849188 0.32147 0.847818 0.320891 0.848903 0.314889 0.84103 0.310799 0.844717 0.310333 0.844586 0.31221 0.838899 0.320713 0.838899 0.312979 0.84025 0.315065 0.849188 0.32147 0.847491 0.32564 0.846641 0.325217 0.805508 0.295208 0.80911 0.296501 0.806897 0.297159 0.80911 0.296501 0.81105 0.297203 0.809149 0.298288 0.838899 0.320713 0.840238 0.320629 0.840897 0.325063 0.846641 0.325217 0.847491 0.32564 0.845832 0.327444 0.843767 0.32509 0.846641 0.325217 0.845832 0.327444 0.843767 0.32509 0.843401 0.328408 0.841433 0.327344 0.839951 0.325556 0.840897 0.325063 0.841433 0.327344 0.80911 0.296501 0.812159 0.295208 0.81105 0.297203 0.806897 0.297159 0.80911 0.296501 0.809149 0.298288 0.84025 0.315065 0.841481 0.312504 0.844051 0.320629 0.838899 0.312979 0.84103 0.310799 0.841481 0.312504 0.3864 0.007463991 0.386138 0.008875966 0.38517 0.008251965 0.3864 0.007463991 0.392801 0.01405894 0.386138 0.008875966 0.844586 0.31221 0.847476 0.312617 0.844051 0.320629 0.844717 0.310333 0.848199 0.310861 0.847476 0.312617 0.385033 0.01063996 0.383451 0.01156598 0.382942 0.01011699 0.389414 0.01631999 0.385903 0.019131 0.383451 0.01156598 0.438722 0.00415796 0.439671 0.002707958 0.438993 0.004224956 0.440366 0.002622961 0.441439 0.004094958 0.441179 0.004145979 0.44217 0.006167948 0.441573 0.007194995 0.441139 0.006559967 0.441439 0.004094958 0.44217 0.006167948 0.441592 0.005676984 0.438996 0.007281959 0.438171 0.00664699 0.438811 0.00604999 0.438722 0.00415796 0.438993 0.004224956 0.438811 0.00604999 0.794471 0.325322 0.795546 0.325055 0.793882 0.327364 0.78717 0.297084 0.79056 0.297886 0.788271 0.299673 0.79056 0.297886 0.792367 0.299713 0.790294 0.300572 0.787397 0.324626 0.789176 0.324873 0.789555 0.327063 0.788729 0.311224 0.789702 0.312751 0.788198 0.314263 0.786676 0.318138 0.786676 0.313244 0.788198 0.314263 0.79668 0.313392 0.795581 0.314204 0.794322 0.312986 0.796578 0.318752 0.795585 0.318833 0.795581 0.314204 0.787397 0.324626 0.786676 0.318138 0.788316 0.318544 0.791902 0.318849 0.791773 0.325198 0.789176 0.324873 0.794471 0.325322 0.791773 0.325198 0.791902 0.318849 0.795546 0.325055 0.794471 0.325322 0.795585 0.318833 0.788271 0.299673 0.79056 0.297886 0.790294 0.300572 0.79056 0.297886 0.794248 0.297084 0.792367 0.299713 0.441573 0.007194995 0.443095 0.01286697 0.440622 0.01277697 0.441139 0.006559967 0.441573 0.007194995 0.440286 0.007456958 0.789702 0.312751 0.788729 0.311224 0.791923 0.310665 0.791902 0.318849 0.789702 0.312751 0.792032 0.312311 0.794322 0.312986 0.791902 0.318849 0.792032 0.312311 0.794754 0.311484 0.794322 0.312986 0.792032 0.312311 0.440286 0.007456958 0.438996 0.007281959 0.439375 0.006722986 0.440622 0.01277697 0.438102 0.01293694 0.438996 0.007281959 0.483179 0.02229297 0.484138 0.02191299 0.483345 0.02241694 0.484926 0.02211499 0.485318 0.02298098 0.485106 0.02296698 0.482988 0.02503997 0.48329 0.02445095 0.484109 0.02458596 0.485318 0.02298098 0.485103 0.024827 0.484744 0.02426999 0.482257 0.02436697 0.482765 0.02394497 0.48329 0.02445095 0.483179 0.02229297 0.483345 0.02241694 0.482491 0.02338695 0.827993 0.323958 0.829207 0.32394 0.827414 0.325937 0.841533 0.297577 0.84457 0.29899 0.842487 0.300082 0.84457 0.29899 0.847905 0.297577 0.846194 0.300292 0.821413 0.323743 0.822883 0.324124 0.823506 0.326127 0.825454 0.312022 0.825487 0.313372 0.823271 0.313542 0.820536 0.319148 0.820757 0.314181 0.821651 0.315175 0.827936 0.312742 0.827388 0.313869 0.825487 0.313372 0.829898 0.319189 0.829027 0.319132 0.829066 0.314991 0.821413 0.323743 0.820536 0.319148 0.821823 0.319332 0.825446 0.319557 0.825442 0.324568 0.822883 0.324124 0.827993 0.323958 0.825442 0.324568 0.825446 0.319557 0.829207 0.32394 0.827993 0.323958 0.829027 0.319132 0.84457 0.29899 0.846194 0.300292 0.844278 0.301282 0.842487 0.300082 0.84457 0.29899 0.844278 0.301282 0.482257 0.02436697 0.479368 0.02743399 0.481926 0.02348899 0.482765 0.02394497 0.482257 0.02436697 0.481926 0.02348899 0.827936 0.312742 0.829898 0.313974 0.829066 0.314991 0.829027 0.319132 0.825446 0.319557 0.827388 0.313869 0.821651 0.315175 0.823271 0.313542 0.825446 0.319557 0.820757 0.314181 0.822447 0.312488 0.823271 0.313542 0.485103 0.024827 0.484224 0.025303 0.484109 0.02458596 0.485103 0.024827 0.483397 0.03024297 0.484224 0.025303 1.610153 0.07234197 1.594872 0.06868797 1.593322 0.08994895 1.621885 0.074431 1.610153 0.07234197 1.608614 0.09161698 1.571247 0.06771296 1.561454 0.06742495 1.563296 0.07786297 1.563296 0.07786297 1.561454 0.06742495 1.552848 0.06900399 1.554832 0.08167296 1.552848 0.06900399 1.536773 0.08129698 1.642792 0.09834295 1.647603 0.08398598 1.639054 0.07941895 1.634027 0.09663599 1.639054 0.07941895 1.631742 0.07753598 1.62555 0.09459197 1.631742 0.07753598 1.621885 0.074431 1.594872 0.06868797 1.571247 0.06771296 1.572224 0.08003199 1.593322 0.08994895 1.572224 0.08003199 1.574287 0.113219 1.608614 0.09161698 1.593322 0.08994895 1.593546 0.115422 1.618478 0.09295296 1.608614 0.09161698 1.606234 0.116636 1.62555 0.09459197 1.618478 0.09295296 1.615694 0.11728 1.632005 0.118215 1.634027 0.09663599 1.62555 0.09459197 1.641298 0.117852 1.642792 0.09834295 1.634027 0.09663599 1.555787 0.112583 1.554832 0.08167296 1.543019 0.09412896 1.565241 0.112589 1.563296 0.07786297 1.554832 0.08167296 1.572224 0.08003199 1.563296 0.07786297 1.565241 0.112589 1.594582 0.05801397 1.582899 0.04492396 1.571247 0.06771296 1.610153 0.07234197 1.614234 0.06129598 1.594582 0.05801397 1.621885 0.074431 1.624135 0.06292295 1.614234 0.06129598 1.632916 0.06511896 1.624135 0.06292295 1.621885 0.074431 1.642967 0.06755095 1.632916 0.06511896 1.631742 0.07753598 1.650696 0.07069295 1.642967 0.06755095 1.639054 0.07941895 1.552848 0.06900399 1.534214 0.05406898 1.531025 0.07022899 1.632916 0.06511896 1.639673 0.04486 1.628603 0.04301899 1.648658 0.04831099 1.639673 0.04486 1.632916 0.06511896 1.659723 0.053119 1.648658 0.04831099 1.642967 0.06755095 1.534214 0.05406898 1.523809 0.04420399 1.519457 0.05608499 1.603669 0.03973299 1.591884 0.03568899 1.582899 0.04492396 1.614234 0.06129598 1.616897 0.04053395 1.603669 0.03973299 1.628603 0.04301899 1.616897 0.04053395 1.614234 0.06129598 1.568706 0.03635895 1.55599 0.03776597 1.561454 0.06742495 1.582899 0.04492396 1.576436 0.02856898 1.568706 0.03635895 1.561454 0.06742495 1.55599 0.03776597 1.546662 0.04025095 1.546662 0.04025095 1.535 0.03596097 1.534214 0.05406898 1.535 0.03596097 1.525543 0.030707 1.523809 0.04420399 1.591884 0.03568899 1.581892 0.02182495 1.576436 0.02856898 1.574287 0.113219 1.565241 0.112589 1.562768 0.144466 1.593546 0.115422 1.574287 0.113219 1.573052 0.146283 1.606234 0.116636 1.593546 0.115422 1.591267 0.149569 1.615694 0.11728 1.606234 0.116636 1.604101 0.150835 1.624859 0.150499 1.623484 0.118066 1.615694 0.11728 1.63385 0.148588 1.632005 0.118215 1.623484 0.118066 1.644634 0.145292 1.641298 0.117852 1.632005 0.118215 1.552181 0.142621 1.555787 0.112583 1.543423 0.113637 1.565241 0.112589 1.555787 0.112583 1.552181 0.142621 1.870687 0.534937 1.851155 0.528213 1.850091 0.560307 1.897989 0.544989 1.870687 0.534937 1.86574 0.564757 1.920611 0.551684 1.897989 0.544989 1.887493 0.573022 1.823255 0.561034 1.814111 0.525983 1.796423 0.531383 1.836264 0.558838 1.828726 0.524758 1.814111 0.525983 1.941493 0.477983 1.949405 0.482525 1.952972 0.472901 1.993076 0.451154 1.989976 0.443832 1.96689 0.458848 1.932425 0.539962 1.93866 0.542082 1.945242 0.526463 1.778925 0.486396 1.768281 0.489708 1.780079 0.502366 1.876387 0.502519 1.852783 0.497069 1.85154 0.512231 1.826833 0.507637 1.82661 0.494071 1.807044 0.493589 1.791561 0.49594 1.794648 0.490567 1.78426 0.482431 1.989086 0.438058 1.982866 0.414833 1.963326 0.431995 1.879138 0.443402 1.853055 0.442722 1.852847 0.461461 1.952972 0.472901 1.954944 0.453298 1.942595 0.454924 1.893536 0.443835 1.879138 0.443402 1.880221 0.463711 1.826708 0.43982 1.801387 0.438595 1.802055 0.456804 1.801387 0.438595 1.746114 0.449824 1.76593 0.469756 1.76156 0.41681 1.731259 0.412387 1.720491 0.436946 1.925979 0.452332 1.910301 0.446963 1.910224 0.467393 1.714894 0.441021 1.708224 0.44537 1.717574 0.457671 1.720491 0.436946 1.714894 0.441021 1.731559 0.453247 1.880211 0.399516 1.853686 0.397325 1.853599 0.423031 1.880277 0.426039 1.894664 0.427635 1.89445 0.415942 1.828723 0.394133 1.803727 0.392221 1.80203 0.418305 1.803727 0.392221 1.76904 0.388148 1.76156 0.41681 1.76156 0.41681 1.76904 0.388148 1.739319 0.382876 1.982866 0.414833 1.975782 0.386185 1.952686 0.395083 1.943244 0.407294 1.933093 0.399292 1.937522 0.431114 1.937522 0.431114 1.933093 0.399292 1.918608 0.417238 1.731559 0.453247 1.717574 0.457671 1.722264 0.467489 1.920611 0.551684 1.904814 0.580696 1.912993 0.582266 1.780689 0.537268 1.795075 0.573292 1.808386 0.567033 1.768281 0.489708 1.757469 0.495326 1.766353 0.509045 1.900888 0.530334 1.91394 0.534228 1.918923 0.517187 1.890263 0.507293 1.876387 0.502519 1.874305 0.519338 1.788259 0.514987 1.77304 0.521315 1.780689 0.537268 1.788259 0.514987 1.796423 0.531383 1.814111 0.525983 1.814111 0.525983 1.828726 0.524758 1.826833 0.507637 1.851155 0.528213 1.870687 0.534937 1.874305 0.519338 1.887159 0.52476 1.874305 0.519338 1.870687 0.534937 1.897989 0.544989 1.920611 0.551684 1.908918 0.541403 1.925643 0.537486 1.920611 0.551684 1.927551 0.547045 1.801387 0.438595 1.80203 0.418305 1.76156 0.41681 1.827591 0.419952 1.80203 0.418305 1.801387 0.438595 1.880277 0.426039 1.853599 0.423031 1.853055 0.442722 1.894664 0.427635 1.880277 0.426039 1.879138 0.443402 1.921919 0.430127 1.910264 0.42919 1.910301 0.446963 1.948138 0.432091 1.937522 0.431114 1.942595 0.454924 1.989086 0.438058 1.969727 0.448477 1.96689 0.458848 1.757423 0.479737 1.735582 0.465666 1.737352 0.475705 1.761949 0.473949 1.731559 0.453247 1.735582 0.465666 1.746114 0.449824 1.731559 0.453247 1.761949 0.473949 1.804635 0.478916 1.78426 0.482431 1.794648 0.490567 1.826334 0.478837 1.804635 0.478916 1.807044 0.493589 1.880363 0.485561 1.853605 0.481567 1.852783 0.497069 1.893741 0.487782 1.880363 0.485561 1.876387 0.502519 1.924177 0.494773 1.908451 0.490498 1.904425 0.5121 1.957135 0.502134 1.9438 0.499215 1.93806 0.523887 1.807044 0.493589 1.794648 0.490567 1.791561 0.49594 1.791561 0.49594 1.780079 0.502366 1.788259 0.514987 1.780079 0.502366 1.766353 0.509045 1.77304 0.521315 1.737352 0.475705 1.727583 0.479738 1.733616 0.492007 1.735582 0.465666 1.722264 0.467489 1.727583 0.479738 1.795075 0.573292 1.780689 0.537268 1.758449 0.547644 1.751414 0.531429 1.758449 0.547644 1.780689 0.537268 1.766353 0.509045 1.745762 0.518344 1.751414 0.531429 1.757469 0.495326 1.739377 0.503775 1.745762 0.518344 1.851155 0.528213 1.828726 0.524758 1.836264 0.558838 1.828726 0.524758 1.851155 0.528213 1.85154 0.512231 1.852783 0.497069 1.82661 0.494071 1.826833 0.507637 1.853605 0.481567 1.826334 0.478837 1.82661 0.494071 1.853055 0.442722 1.826708 0.43982 1.826672 0.457899 1.853599 0.423031 1.827591 0.419952 1.826708 0.43982 1.853686 0.397325 1.828723 0.394133 1.827591 0.419952 1.879735 0.372969 1.854039 0.37178 1.853686 0.397325 1.903753 0.371745 1.879735 0.372969 1.880211 0.399516 1.830094 0.368472 1.806279 0.362863 1.803727 0.392221 1.803727 0.392221 1.806279 0.362863 1.77854 0.358057 1.76904 0.388148 1.77854 0.358057 1.750842 0.352771 1.975782 0.386185 1.966341 0.355777 1.943147 0.364395 1.952686 0.395083 1.943147 0.364395 1.925892 0.368777 1.925892 0.368777 1.903753 0.371745 1.906853 0.400313 1.854039 0.37178 1.830094 0.368472 1.828723 0.394133 1.599638 0.339353 1.583928 0.310032 1.584061 0.341163 1.550707 0.32641 1.550008 0.309685 1.541749 0.309927 1.539849 0.326762 1.541749 0.309927 1.534089 0.309834 1.52261 0.311198 1.505571 0.307328 1.501817 0.333421 1.668887 0.315689 1.649278 0.309954 1.650778 0.341517 1.650778 0.341517 1.649278 0.309954 1.636449 0.338899 1.584061 0.341163 1.583928 0.310032 1.562904 0.311755 1.564017 0.26909 1.546537 0.267989 1.544358 0.292997 1.583859 0.285012 1.585774 0.267497 1.564017 0.26909 1.603708 0.282565 1.603983 0.264355 1.585774 0.267497 1.619011 0.282097 1.61984 0.263968 1.603983 0.264355 1.634395 0.281854 1.634287 0.260642 1.61984 0.263968 1.649204 0.259335 1.634287 0.260642 1.634395 0.281854 1.6689 0.262217 1.649204 0.259335 1.649785 0.285685 1.53042 0.263171 1.511671 0.256738 1.511195 0.284426 1.546537 0.267989 1.53042 0.263171 1.527968 0.2916 1.568145 0.231571 1.551353 0.226317 1.549273 0.244607 1.586946 0.24838 1.587498 0.232984 1.568145 0.231571 1.602605 0.24755 1.603324 0.232976 1.587498 0.232984 1.617888 0.233484 1.603324 0.232976 1.602605 0.24755 1.634031 0.2443619 1.633597 0.2299309 1.617888 0.233484 1.647106 0.237727 1.644949 0.2235569 1.633597 0.2299309 1.666176 0.235374 1.663215 0.219756 1.644949 0.2235569 1.535587 0.221269 1.514199 0.215944 1.51194 0.231178 1.551353 0.226317 1.535587 0.221269 1.53326 0.238361 1.569957 0.191978 1.556681 0.187726 1.553684 0.208237 1.58867 0.196317 1.569957 0.191978 1.568693 0.213622 1.604202 0.1976799 1.58867 0.196317 1.588012 0.217186 1.616625 0.197842 1.604202 0.1976799 1.603673 0.21836 1.632858 0.215425 1.630409 0.194855 1.616625 0.197842 1.642546 0.209506 1.639839 0.190008 1.630409 0.194855 1.659605 0.20448 1.654426 0.184116 1.639839 0.190008 1.538331 0.20416 1.54289 0.183971 1.524592 0.180648 1.556681 0.187726 1.54289 0.183971 1.538331 0.20416 1.573052 0.146283 1.562768 0.144466 1.55996 0.166549 1.591267 0.149569 1.573052 0.146283 1.572098 0.1691769 1.604101 0.150835 1.591267 0.149569 1.590518 0.172888 1.614986 0.151283 1.604101 0.150835 1.603984 0.174308 1.62732 0.172697 1.624859 0.150499 1.614986 0.151283 1.63633 0.169673 1.63385 0.148588 1.624859 0.150499 1.648649 0.164249 1.644634 0.145292 1.63385 0.148588 1.547628 0.163383 1.552181 0.142621 1.53833 0.141272 1.562768 0.144466 1.552181 0.142621 1.547628 0.163383 1.581806 0.385858 1.558252 0.384522 1.558237 0.38821 1.602196 0.389143 1.602192 0.385487 1.581806 0.385858 1.622025 0.388351 1.62196 0.384658 1.602192 0.385487 1.638403 0.384066 1.62196 0.384658 1.622025 0.388351 1.651663 0.383462 1.638403 0.384066 1.638747 0.387681 1.671349 0.385502 1.671101 0.382103 1.651663 0.383462 1.514144 0.383119 1.514573 0.379159 1.49016 0.377777 1.536786 0.381226 1.514573 0.379159 1.514144 0.383119 1.558252 0.384522 1.536786 0.381226 1.5366 0.385064 1.550008 0.309685 1.551245 0.302396 1.542796 0.301108 1.583928 0.310032 1.583859 0.285012 1.564744 0.292984 1.599638 0.339353 1.603708 0.282565 1.583928 0.310032 1.619616 0.33825 1.619011 0.282097 1.603708 0.282565 1.634395 0.281854 1.619011 0.282097 1.619616 0.33825 1.649278 0.309954 1.649785 0.285685 1.634395 0.281854 1.66812 0.292274 1.649785 0.285685 1.649278 0.309954 1.527968 0.2916 1.511195 0.284426 1.505571 0.307328 1.541749 0.309927 1.542796 0.301108 1.534534 0.30252 1.550707 0.32641 1.539849 0.326762 1.538601 0.341952 1.562904 0.311755 1.550008 0.309685 1.550707 0.32641 1.538601 0.341952 1.539849 0.326762 1.530776 0.325288 1.530776 0.325288 1.534089 0.309834 1.52261 0.311198 1.544358 0.292997 1.542796 0.301108 1.551245 0.302396 1.551245 0.302396 1.550008 0.309685 1.562904 0.311755 1.52261 0.311198 1.534089 0.309834 1.534534 0.30252 1.534534 0.30252 1.542796 0.301108 1.544358 0.292997 1.649278 0.309954 1.634395 0.281854 1.636449 0.338899 1.603708 0.282565 1.583859 0.285012 1.583928 0.310032 1.568693 0.213622 1.553684 0.208237 1.551353 0.226317 1.588012 0.217186 1.568693 0.213622 1.568145 0.231571 1.603673 0.21836 1.588012 0.217186 1.587498 0.232984 1.617147 0.218764 1.603673 0.21836 1.603324 0.232976 1.633597 0.2299309 1.632858 0.215425 1.617147 0.218764 1.644949 0.2235569 1.642546 0.209506 1.632858 0.215425 1.663215 0.219756 1.659605 0.20448 1.642546 0.209506 1.538331 0.20416 1.51763 0.200817 1.514199 0.215944 1.553684 0.208237 1.538331 0.20416 1.535587 0.221269 1.572098 0.1691769 1.55996 0.166549 1.556681 0.187726 1.590518 0.172888 1.572098 0.1691769 1.569957 0.191978 1.603984 0.174308 1.590518 0.172888 1.58867 0.196317 1.615953 0.174524 1.603984 0.174308 1.604202 0.1976799 1.630409 0.194855 1.62732 0.172697 1.615953 0.174524 1.639839 0.190008 1.63633 0.169673 1.62732 0.172697 1.654426 0.184116 1.648649 0.164249 1.63633 0.169673 1.54289 0.183971 1.547628 0.163383 1.531631 0.160286 1.55996 0.166549 1.547628 0.163383 1.54289 0.183971 1.567137 0.2490659 1.549273 0.244607 1.546537 0.267989 1.585774 0.267497 1.586946 0.24838 1.567137 0.2490659 1.603983 0.264355 1.602605 0.24755 1.586946 0.24838 1.618627 0.2482129 1.602605 0.24755 1.603983 0.264355 1.634287 0.260642 1.634031 0.2443619 1.618627 0.2482129 1.649204 0.259335 1.647106 0.237727 1.634031 0.2443619 1.666176 0.235374 1.647106 0.237727 1.649204 0.259335 1.53326 0.238361 1.51194 0.231178 1.511671 0.256738 1.549273 0.244607 1.53326 0.238361 1.53042 0.263171 1.582826 0.368029 1.584061 0.341163 1.559137 0.342935 1.601832 0.367172 1.599638 0.339353 1.584061 0.341163 1.619616 0.33825 1.599638 0.339353 1.601832 0.367172 1.636449 0.338899 1.619616 0.33825 1.621565 0.366259 1.650778 0.341517 1.636449 0.338899 1.636838 0.365973 1.668116 0.342013 1.650778 0.341517 1.650723 0.366607 1.517097 0.360997 1.521114 0.338934 1.501817 0.333421 1.538601 0.341952 1.521114 0.338934 1.517097 0.360997 1.559137 0.342935 1.538601 0.341952 1.537565 0.363657 1.902161 0.359183 1.879108 0.361109 1.879735 0.372969 1.92253 0.355917 1.902161 0.359183 1.903753 0.371745 1.937825 0.351728 1.92253 0.355917 1.925892 0.368777 1.961572 0.342319 1.937825 0.351728 1.943147 0.364395 1.77854 0.358057 1.78221 0.34579 1.755589 0.339858 1.77854 0.358057 1.806279 0.362863 1.807632 0.351025 1.830712 0.356691 1.807632 0.351025 1.806279 0.362863 1.854889 0.360207 1.830712 0.356691 1.830094 0.368472 1.879108 0.361109 1.854889 0.360207 1.854039 0.37178 1.749259 0.484061 1.733616 0.492007 1.739377 0.503775 1.757423 0.479737 1.749259 0.484061 1.757469 0.495326 1.761949 0.473949 1.757423 0.479737 1.768281 0.489708 1.76593 0.469756 1.761949 0.473949 1.778925 0.486396 1.802055 0.456804 1.76593 0.469756 1.78426 0.482431 1.826672 0.457899 1.802055 0.456804 1.804635 0.478916 1.852847 0.461461 1.826672 0.457899 1.826334 0.478837 1.880221 0.463711 1.852847 0.461461 1.853605 0.481567 1.895584 0.464683 1.880221 0.463711 1.880363 0.485561 1.928374 0.473063 1.910224 0.467393 1.908451 0.490498 1.957135 0.502134 1.962951 0.483941 1.949405 0.482525 1.937522 0.431114 1.921919 0.430127 1.925979 0.452332 1.942595 0.454924 1.925979 0.452332 1.928374 0.473063 1.941493 0.477983 1.928374 0.473063 1.924177 0.494773 1.936837 0.498098 1.924177 0.494773 1.918923 0.517187 1.91394 0.534228 1.925643 0.537486 1.930232 0.521497 1.910264 0.42919 1.894664 0.427635 1.893536 0.443835 1.910301 0.446963 1.893536 0.443835 1.895584 0.464683 1.910224 0.467393 1.895584 0.464683 1.893741 0.487782 1.908451 0.490498 1.893741 0.487782 1.890263 0.507293 1.904425 0.5121 1.890263 0.507293 1.887159 0.52476 1.910264 0.42919 1.921919 0.430127 1.918608 0.417238 1.89445 0.415942 1.894664 0.427635 1.910264 0.42919 1.906853 0.400313 1.880211 0.399516 1.89445 0.415942 1.906853 0.400313 1.907949 0.408917 1.918608 0.417238 1.925643 0.537486 1.932425 0.539962 1.93806 0.523887 1.9438 0.499215 1.936837 0.498098 1.930232 0.521497 1.941493 0.477983 1.936837 0.498098 1.9438 0.499215 1.963326 0.431995 1.952686 0.395083 1.943244 0.407294 1.963326 0.431995 1.948138 0.432091 1.954944 0.453298 1.96689 0.458848 1.969727 0.448477 1.954944 0.453298 1.949405 0.482525 1.962951 0.483941 1.965924 0.475707 1.965924 0.475707 1.968834 0.467602 1.96689 0.458848 1.930765 0.554429 1.933629 0.549947 1.927551 0.547045 1.933629 0.549947 1.93866 0.542082 1.932425 0.539962 1.925643 0.537486 1.91394 0.534228 1.908918 0.541403 1.897989 0.544989 1.899132 0.539503 1.888994 0.534743 1.900888 0.530334 1.887159 0.52476 1.888994 0.534743 1.908918 0.541403 1.91394 0.534228 1.900888 0.530334 1.952686 0.395083 1.933093 0.399292 1.943244 0.407294 1.558237 0.38821 1.5366 0.385064 1.536469 0.388045 1.831657 0.344491 1.809001 0.338791 1.80868 0.341913 1.831365 0.347676 1.855538 0.351245 1.855859 0.348098 1.558397 0.391193 1.581503 0.392369 1.581562 0.389455 1.855538 0.351245 1.878551 0.351969 1.878326 0.348977 1.602243 0.391852 1.602196 0.389143 1.581562 0.389455 1.878551 0.351969 1.900747 0.349556 1.900209 0.346699 1.622029 0.390836 1.622025 0.388351 1.602196 0.389143 1.900747 0.349556 1.919906 0.346122 1.919071 0.34328 1.638947 0.389894 1.638747 0.387681 1.622025 0.388351 1.934539 0.341939 1.933742 0.338868 1.919071 0.34328 1.638947 0.389894 1.652157 0.389086 1.651881 0.386809 1.957159 0.332221 1.955514 0.329306 1.933742 0.338868 1.652157 0.389086 1.671349 0.388052 1.671349 0.385502 1.785099 0.336542 1.785956 0.333418 1.761842 0.327156 1.513788 0.386258 1.514144 0.383119 1.489616 0.381756 1.785099 0.336542 1.80868 0.341913 1.809001 0.338791 1.536469 0.388045 1.5366 0.385064 1.514144 0.383119 1.557902 0.366437 1.537565 0.363657 1.536786 0.381226 1.582826 0.368029 1.557902 0.366437 1.558252 0.384522 1.602192 0.385487 1.601832 0.367172 1.582826 0.368029 1.62196 0.384658 1.621565 0.366259 1.601832 0.367172 1.636838 0.365973 1.621565 0.366259 1.62196 0.384658 1.650723 0.366607 1.636838 0.365973 1.638403 0.384066 1.671101 0.382103 1.669592 0.365737 1.650723 0.366607 1.514573 0.379159 1.517097 0.360997 1.494552 0.35886 1.537565 0.363657 1.517097 0.360997 1.514573 0.379159 1.831365 0.347676 1.80868 0.341913 1.807632 0.351025 1.855538 0.351245 1.831365 0.347676 1.830712 0.356691 1.878551 0.351969 1.855538 0.351245 1.854889 0.360207 1.900747 0.349556 1.878551 0.351969 1.879108 0.361109 1.919906 0.346122 1.900747 0.349556 1.902161 0.359183 1.934539 0.341939 1.919906 0.346122 1.92253 0.355917 1.961572 0.342319 1.957159 0.332221 1.934539 0.341939 1.78221 0.34579 1.785099 0.336542 1.760046 0.330209 1.80868 0.341913 1.785099 0.336542 1.78221 0.34579 0.593322 0.08994895 0.594872 0.06868797 0.610153 0.07234197 0.618478 0.09295296 0.608614 0.09161698 0.610153 0.07234197 0.563296 0.07786297 0.561454 0.06742495 0.571247 0.06771296 0.563296 0.07786297 0.554832 0.08167296 0.552848 0.06900399 0.554832 0.08167296 0.543019 0.09412896 0.536774 0.08129698 0.634027 0.09663599 0.639054 0.07941895 0.647603 0.08398598 0.634027 0.09663599 0.62555 0.09459197 0.631742 0.07753598 0.62555 0.09459197 0.618478 0.09295296 0.621885 0.074431 0.572224 0.08003199 0.571247 0.06771296 0.594872 0.06868797 0.574287 0.113219 0.572224 0.08003199 0.593322 0.08994895 0.593546 0.115422 0.593322 0.08994895 0.608614 0.09161698 0.606234 0.116636 0.608614 0.09161698 0.618478 0.09295296 0.615694 0.11728 0.618478 0.09295296 0.62555 0.09459197 0.623484 0.118066 0.62555 0.09459197 0.634027 0.09663599 0.641298 0.117852 0.632005 0.118215 0.634027 0.09663599 0.555787 0.112583 0.543423 0.113637 0.543019 0.09412896 0.565241 0.112589 0.555787 0.112583 0.554832 0.08167296 0.565241 0.112589 0.563296 0.07786297 0.572224 0.08003199 0.571247 0.06771296 0.582899 0.04492396 0.594582 0.05801397 0.610153 0.07234197 0.594872 0.06868797 0.594582 0.05801397 0.621885 0.074431 0.610153 0.07234197 0.614234 0.06129598 0.621885 0.074431 0.624135 0.06292295 0.632916 0.06511896 0.631742 0.07753598 0.632916 0.06511896 0.642967 0.06755095 0.639054 0.07941895 0.642967 0.06755095 0.650696 0.07069295 0.552848 0.06900399 0.536774 0.08129698 0.531025 0.07022899 0.632916 0.06511896 0.624135 0.06292295 0.628603 0.04301899 0.642967 0.06755095 0.632916 0.06511896 0.639673 0.04486 0.642967 0.06755095 0.648658 0.04831099 0.659723 0.053119 0.534214 0.05406898 0.531025 0.07022899 0.519457 0.05608499 0.594582 0.05801397 0.582899 0.04492396 0.591884 0.03568899 0.614234 0.06129598 0.594582 0.05801397 0.603669 0.03973299 0.614234 0.06129598 0.616897 0.04053395 0.628603 0.04301899 0.561454 0.06742495 0.555989 0.03776597 0.568706 0.03635895 0.582899 0.04492396 0.571247 0.06771296 0.568706 0.03635895 0.561454 0.06742495 0.552848 0.06900399 0.546662 0.04025095 0.534214 0.05406898 0.535 0.03596097 0.546662 0.04025095 0.523809 0.04420399 0.525543 0.030707 0.535 0.03596097 0.591884 0.03568899 0.582899 0.04492396 0.576436 0.02856898 0.562768 0.144466 0.565241 0.112589 0.574287 0.113219 0.573052 0.146283 0.574287 0.113219 0.593546 0.115422 0.591267 0.149569 0.593546 0.115422 0.606234 0.116636 0.604101 0.150835 0.606234 0.116636 0.615694 0.11728 0.624859 0.150499 0.614986 0.151283 0.615694 0.11728 0.63385 0.148588 0.624859 0.150499 0.623484 0.118066 0.644634 0.145292 0.63385 0.148588 0.632005 0.118215 0.552181 0.142621 0.53833 0.141272 0.543423 0.113637 0.552181 0.142621 0.555787 0.112583 0.565241 0.112589 0.850091 0.560307 0.851155 0.528213 0.870687 0.534937 0.887493 0.573022 0.86574 0.564757 0.870687 0.534937 0.904814 0.580696 0.887493 0.573022 0.897989 0.544989 0.808386 0.567033 0.796423 0.531383 0.814112 0.525983 0.823255 0.561034 0.814112 0.525983 0.828726 0.524758 0.941493 0.477983 0.952972 0.472901 0.949405 0.482525 0.993076 0.451154 0.968834 0.467602 0.96689 0.458848 0.93806 0.523887 0.945242 0.526463 0.93866 0.542082 0.780079 0.502366 0.768281 0.489708 0.778925 0.486396 0.85154 0.512231 0.852783 0.497069 0.876387 0.502519 0.808175 0.506546 0.807044 0.493589 0.82661 0.494071 0.791561 0.49594 0.778925 0.486396 0.78426 0.482431 0.989086 0.438058 0.969727 0.448477 0.963326 0.431995 0.880221 0.463711 0.852847 0.461461 0.853055 0.442722 0.952972 0.472901 0.941493 0.477983 0.942595 0.454924 0.895584 0.464683 0.880221 0.463711 0.879138 0.443402 0.826672 0.457899 0.802055 0.456804 0.801387 0.438595 0.802055 0.456804 0.76593 0.469756 0.746114 0.449824 0.746114 0.449824 0.720491 0.436946 0.731259 0.412387 0.910224 0.467393 0.910301 0.446963 0.925979 0.452332 0.714894 0.441021 0.731559 0.453247 0.717574 0.457671 0.731559 0.453247 0.714894 0.441021 0.720491 0.436946 0.853599 0.423031 0.853686 0.397325 0.880211 0.399516 0.89445 0.415942 0.894664 0.427635 0.880277 0.426039 0.827591 0.419952 0.80203 0.418305 0.803727 0.392221 0.80203 0.418305 0.76156 0.41681 0.76904 0.388148 0.76156 0.41681 0.731259 0.412387 0.739319 0.382876 0.982866 0.414833 0.963326 0.431995 0.952686 0.395083 0.937522 0.431114 0.933093 0.399292 0.943244 0.407294 0.918608 0.417238 0.933093 0.399292 0.937522 0.431114 0.722264 0.467489 0.717574 0.457671 0.731559 0.453247 0.912993 0.582266 0.904814 0.580696 0.920611 0.551684 0.796423 0.531383 0.808386 0.567033 0.795075 0.573292 0.766353 0.509045 0.757469 0.495326 0.768281 0.489708 0.904425 0.5121 0.918923 0.517187 0.91394 0.534228 0.874305 0.519338 0.876387 0.502519 0.890263 0.507293 0.788259 0.514987 0.796423 0.531383 0.780689 0.537268 0.808175 0.506546 0.814112 0.525983 0.796423 0.531383 0.826833 0.507637 0.828726 0.524758 0.814112 0.525983 0.874305 0.519338 0.870687 0.534937 0.851155 0.528213 0.888994 0.534743 0.870687 0.534937 0.874305 0.519338 0.897989 0.544989 0.899132 0.539503 0.908918 0.541403 0.927551 0.547045 0.920611 0.551684 0.925643 0.537486 0.801387 0.438595 0.746114 0.449824 0.76156 0.41681 0.826708 0.43982 0.801387 0.438595 0.80203 0.418305 0.879138 0.443402 0.853055 0.442722 0.853599 0.423031 0.893536 0.443835 0.879138 0.443402 0.880277 0.426039 0.910301 0.446963 0.910264 0.42919 0.921919 0.430127 0.942595 0.454924 0.937522 0.431114 0.948138 0.432091 0.989976 0.443832 0.96689 0.458848 0.969727 0.448477 0.757423 0.479737 0.749259 0.484061 0.737352 0.475705 0.761949 0.473949 0.757423 0.479737 0.735582 0.465666 0.761949 0.473949 0.731559 0.453247 0.746114 0.449824 0.794648 0.490567 0.78426 0.482431 0.804635 0.478916 0.82661 0.494071 0.807044 0.493589 0.804635 0.478916 0.876387 0.502519 0.852783 0.497069 0.853605 0.481567 0.890263 0.507293 0.876387 0.502519 0.880363 0.485561 0.918923 0.517187 0.904425 0.5121 0.908451 0.490498 0.945242 0.526463 0.93806 0.523887 0.9438 0.499215 0.791561 0.49594 0.794648 0.490567 0.807044 0.493589 0.788259 0.514987 0.780079 0.502366 0.791561 0.49594 0.77304 0.521315 0.766353 0.509045 0.780079 0.502366 0.733616 0.492007 0.727583 0.479738 0.737352 0.475705 0.737352 0.475705 0.727583 0.479738 0.722264 0.467489 0.775649 0.582266 0.758449 0.547644 0.780689 0.537268 0.77304 0.521315 0.780689 0.537268 0.758449 0.547644 0.766353 0.509045 0.77304 0.521315 0.751414 0.531429 0.766353 0.509045 0.745762 0.518344 0.739377 0.503775 0.836264 0.558838 0.828726 0.524758 0.851155 0.528213 0.85154 0.512231 0.851155 0.528213 0.828726 0.524758 0.852783 0.497069 0.85154 0.512231 0.826833 0.507637 0.852783 0.497069 0.82661 0.494071 0.826334 0.478837 0.852847 0.461461 0.826672 0.457899 0.826708 0.43982 0.853599 0.423031 0.853055 0.442722 0.826708 0.43982 0.853686 0.397325 0.853599 0.423031 0.827591 0.419952 0.853686 0.397325 0.854039 0.37178 0.879735 0.372969 0.880211 0.399516 0.879735 0.372969 0.903753 0.371745 0.803727 0.392221 0.806279 0.362863 0.830094 0.368472 0.803727 0.392221 0.76904 0.388148 0.77854 0.358057 0.76904 0.388148 0.739319 0.382876 0.750842 0.352771 0.975782 0.386185 0.952686 0.395083 0.943147 0.364395 0.933093 0.399292 0.925892 0.368777 0.943147 0.364395 0.906853 0.400313 0.903753 0.371745 0.925892 0.368777 0.828723 0.394133 0.830094 0.368472 0.854039 0.37178 0.599638 0.339353 0.584061 0.341163 0.583928 0.310032 0.550707 0.32641 0.539849 0.326762 0.541749 0.309927 0.539849 0.326762 0.530776 0.325288 0.534089 0.309834 0.501817 0.333421 0.505571 0.307328 0.52261 0.311198 0.650778 0.341517 0.649278 0.309954 0.668887 0.315689 0.650778 0.341517 0.636449 0.338899 0.649278 0.309954 0.584061 0.341163 0.559137 0.342935 0.562904 0.311755 0.544358 0.292997 0.546537 0.267989 0.564017 0.26909 0.583859 0.285012 0.564744 0.292984 0.564017 0.26909 0.603708 0.282565 0.583859 0.285012 0.585774 0.267497 0.619011 0.282097 0.603708 0.282565 0.603983 0.264355 0.634395 0.281854 0.619011 0.282097 0.61984 0.263968 0.634395 0.281854 0.634287 0.260642 0.649204 0.259335 0.649785 0.285685 0.649204 0.259335 0.6689 0.262217 0.511195 0.284426 0.511671 0.256738 0.53042 0.263171 0.527968 0.2916 0.53042 0.263171 0.546537 0.267989 0.549273 0.244607 0.551353 0.226317 0.568145 0.231571 0.586946 0.24838 0.567136 0.2490659 0.568145 0.231571 0.602605 0.24755 0.586946 0.24838 0.587498 0.232984 0.602605 0.24755 0.603324 0.232976 0.617888 0.233484 0.634031 0.2443619 0.618627 0.2482129 0.617888 0.233484 0.647106 0.237727 0.634031 0.2443619 0.633597 0.2299309 0.647106 0.237727 0.644949 0.2235569 0.663215 0.219756 0.51194 0.231178 0.514199 0.215944 0.535587 0.221269 0.53326 0.238361 0.535587 0.221269 0.551353 0.226317 0.553684 0.208237 0.556681 0.187726 0.569957 0.191978 0.568693 0.213622 0.569957 0.191978 0.58867 0.196317 0.588012 0.217186 0.58867 0.196317 0.604202 0.1976799 0.603673 0.21836 0.604202 0.1976799 0.616625 0.197842 0.632858 0.215425 0.617147 0.218764 0.616625 0.197842 0.642546 0.209506 0.632858 0.215425 0.630409 0.194855 0.659605 0.20448 0.642546 0.209506 0.639839 0.190008 0.538331 0.20416 0.51763 0.200817 0.524592 0.180648 0.538331 0.20416 0.54289 0.183971 0.556681 0.187726 0.55996 0.166549 0.562768 0.144466 0.573052 0.146283 0.572098 0.1691769 0.573052 0.146283 0.591267 0.149569 0.590518 0.172888 0.591267 0.149569 0.604101 0.150835 0.603984 0.174308 0.604101 0.150835 0.614986 0.151283 0.62732 0.172697 0.615953 0.174524 0.614986 0.151283 0.63633 0.169673 0.62732 0.172697 0.624859 0.150499 0.648649 0.164249 0.63633 0.169673 0.63385 0.148588 0.547628 0.163383 0.531631 0.160286 0.53833 0.141272 0.547628 0.163383 0.552181 0.142621 0.562768 0.144466 0.558237 0.38821 0.558252 0.384522 0.581806 0.385858 0.602196 0.389143 0.581562 0.389455 0.581806 0.385858 0.622025 0.388351 0.602196 0.389143 0.602192 0.385487 0.622025 0.388351 0.62196 0.384658 0.638403 0.384066 0.638746 0.387681 0.638403 0.384066 0.651663 0.383462 0.671349 0.385502 0.651881 0.386809 0.651663 0.383462 0.514144 0.383119 0.489616 0.381756 0.49016 0.377777 0.5366 0.385064 0.514144 0.383119 0.514573 0.379159 0.5366 0.385064 0.536786 0.381226 0.558252 0.384522 0.550008 0.309685 0.541749 0.309927 0.542796 0.301108 0.583928 0.310032 0.562904 0.311755 0.564744 0.292984 0.599638 0.339353 0.583928 0.310032 0.603708 0.282565 0.619616 0.33825 0.599638 0.339353 0.603708 0.282565 0.619616 0.33825 0.619011 0.282097 0.634395 0.281854 0.649278 0.309954 0.634395 0.281854 0.649785 0.285685 0.649278 0.309954 0.649785 0.285685 0.66812 0.292274 0.505571 0.307328 0.511195 0.284426 0.527968 0.2916 0.541749 0.309927 0.534089 0.309834 0.534534 0.30252 0.538601 0.341952 0.539849 0.326762 0.550707 0.32641 0.562904 0.311755 0.559137 0.342935 0.550707 0.32641 0.538601 0.341952 0.521114 0.338934 0.530776 0.325288 0.52261 0.311198 0.534089 0.309834 0.530776 0.325288 0.544358 0.292997 0.564744 0.292984 0.551245 0.302396 0.562904 0.311755 0.550008 0.309685 0.551245 0.302396 0.52261 0.311198 0.527968 0.2916 0.534534 0.30252 0.544358 0.292997 0.542796 0.301108 0.534534 0.30252 0.649278 0.309954 0.636449 0.338899 0.634395 0.281854 0.603708 0.282565 0.583928 0.310032 0.583859 0.285012 0.551353 0.226317 0.553684 0.208237 0.568693 0.213622 0.568145 0.231571 0.568693 0.213622 0.588012 0.217186 0.587498 0.232984 0.588012 0.217186 0.603673 0.21836 0.603324 0.232976 0.603673 0.21836 0.617147 0.218764 0.633597 0.2299309 0.617888 0.233484 0.617147 0.218764 0.644949 0.2235569 0.633597 0.2299309 0.632858 0.215425 0.663215 0.219756 0.644949 0.2235569 0.642546 0.209506 0.514199 0.215944 0.51763 0.200817 0.538331 0.20416 0.535587 0.221269 0.538331 0.20416 0.553684 0.208237 0.556681 0.187726 0.55996 0.166549 0.572098 0.1691769 0.569957 0.191978 0.572098 0.1691769 0.590518 0.172888 0.58867 0.196317 0.590518 0.172888 0.603984 0.174308 0.604202 0.1976799 0.603984 0.174308 0.615953 0.174524 0.630409 0.194855 0.616625 0.197842 0.615953 0.174524 0.639839 0.190008 0.630409 0.194855 0.62732 0.172697 0.654426 0.184116 0.639839 0.190008 0.63633 0.169673 0.54289 0.183971 0.524592 0.180648 0.531631 0.160286 0.54289 0.183971 0.547628 0.163383 0.55996 0.166549 0.546537 0.267989 0.549273 0.244607 0.567136 0.2490659 0.585774 0.267497 0.564017 0.26909 0.567136 0.2490659 0.603983 0.264355 0.585774 0.267497 0.586946 0.24838 0.603983 0.264355 0.602605 0.24755 0.618627 0.2482129 0.634287 0.260642 0.61984 0.263968 0.618627 0.2482129 0.649204 0.259335 0.634287 0.260642 0.634031 0.2443619 0.649204 0.259335 0.647106 0.237727 0.666176 0.235374 0.511671 0.256738 0.51194 0.231178 0.53326 0.238361 0.53042 0.263171 0.53326 0.238361 0.549273 0.244607 0.582826 0.368029 0.557902 0.366437 0.559137 0.342935 0.601832 0.367172 0.582826 0.368029 0.584061 0.341163 0.601832 0.367172 0.599638 0.339353 0.619616 0.33825 0.621565 0.366259 0.619616 0.33825 0.636449 0.338899 0.636838 0.365973 0.636449 0.338899 0.650778 0.341517 0.669592 0.365737 0.650723 0.366607 0.650778 0.341517 0.517097 0.360997 0.494552 0.35886 0.501817 0.333421 0.517097 0.360997 0.521114 0.338934 0.538601 0.341952 0.537565 0.363657 0.538601 0.341952 0.559137 0.342935 0.879735 0.372969 0.879108 0.361109 0.902161 0.359183 0.903753 0.371745 0.902161 0.359183 0.92253 0.355917 0.925892 0.368777 0.92253 0.355917 0.937825 0.351728 0.943147 0.364395 0.937825 0.351728 0.961572 0.342319 0.77854 0.358057 0.750842 0.352771 0.755589 0.339858 0.78221 0.34579 0.807632 0.351025 0.806279 0.362863 0.806279 0.362863 0.807632 0.351025 0.830712 0.356691 0.830094 0.368472 0.830712 0.356691 0.854889 0.360207 0.854039 0.37178 0.854889 0.360207 0.879108 0.361109 0.757469 0.495326 0.739377 0.503775 0.733616 0.492007 0.757469 0.495326 0.749259 0.484061 0.757423 0.479737 0.768281 0.489708 0.757423 0.479737 0.761949 0.473949 0.778925 0.486396 0.761949 0.473949 0.76593 0.469756 0.804635 0.478916 0.78426 0.482431 0.76593 0.469756 0.826334 0.478837 0.804635 0.478916 0.802055 0.456804 0.853605 0.481567 0.826334 0.478837 0.826672 0.457899 0.880363 0.485561 0.853605 0.481567 0.852847 0.461461 0.893741 0.487782 0.880363 0.485561 0.880221 0.463711 0.924177 0.494773 0.908451 0.490498 0.910224 0.467393 0.957135 0.502134 0.9438 0.499215 0.949405 0.482525 0.925979 0.452332 0.921919 0.430127 0.937522 0.431114 0.928374 0.473063 0.925979 0.452332 0.942595 0.454924 0.936837 0.498098 0.924177 0.494773 0.928374 0.473063 0.930232 0.521497 0.918923 0.517187 0.924177 0.494773 0.918923 0.517187 0.930232 0.521497 0.925643 0.537486 0.893536 0.443835 0.894664 0.427635 0.910264 0.42919 0.895584 0.464683 0.893536 0.443835 0.910301 0.446963 0.908451 0.490498 0.893741 0.487782 0.895584 0.464683 0.904425 0.5121 0.890263 0.507293 0.893741 0.487782 0.887159 0.52476 0.890263 0.507293 0.904425 0.5121 0.918608 0.417238 0.921919 0.430127 0.910264 0.42919 0.910264 0.42919 0.894664 0.427635 0.89445 0.415942 0.906853 0.400313 0.90795 0.408917 0.89445 0.415942 0.906853 0.400313 0.933093 0.399292 0.918608 0.417238 0.930232 0.521497 0.93806 0.523887 0.932426 0.539962 0.93806 0.523887 0.930232 0.521497 0.936837 0.498098 0.9438 0.499215 0.936837 0.498098 0.941493 0.477983 0.963326 0.431995 0.948138 0.432091 0.943244 0.407294 0.969727 0.448477 0.954944 0.453298 0.948138 0.432091 0.96689 0.458848 0.952972 0.472901 0.954944 0.453298 0.952972 0.472901 0.965924 0.475707 0.962951 0.483941 0.952972 0.472901 0.96689 0.458848 0.968834 0.467602 0.930765 0.554429 0.920611 0.551684 0.927551 0.547045 0.933629 0.549947 0.927551 0.547045 0.932426 0.539962 0.908918 0.541403 0.91394 0.534228 0.925643 0.537486 0.897989 0.544989 0.870687 0.534937 0.888994 0.534743 0.888994 0.534743 0.887159 0.52476 0.900888 0.530334 0.908918 0.541403 0.899132 0.539503 0.900888 0.530334 0.952686 0.395083 0.943244 0.407294 0.933093 0.399292 0.558237 0.38821 0.558397 0.391193 0.536469 0.388045 0.831657 0.344491 0.831365 0.347676 0.80868 0.341913 0.831365 0.347676 0.831657 0.344491 0.855859 0.348098 0.558397 0.391193 0.558237 0.38821 0.581562 0.389455 0.855538 0.351245 0.855859 0.348098 0.878326 0.348977 0.581562 0.389455 0.602196 0.389143 0.602243 0.391852 0.878551 0.351969 0.878326 0.348977 0.900209 0.346699 0.602196 0.389143 0.622025 0.388351 0.622029 0.390836 0.900747 0.349556 0.900209 0.346699 0.919071 0.34328 0.622025 0.388351 0.638746 0.387681 0.638947 0.389894 0.919071 0.34328 0.933742 0.338868 0.934539 0.341939 0.638947 0.389894 0.638746 0.387681 0.651881 0.386809 0.933742 0.338868 0.955514 0.329306 0.957159 0.332221 0.652157 0.389086 0.651881 0.386809 0.671349 0.385502 0.761842 0.327156 0.785956 0.333418 0.785099 0.336542 0.489616 0.381756 0.514144 0.383119 0.513788 0.386258 0.785099 0.336542 0.785956 0.333418 0.809002 0.338791 0.514144 0.383119 0.5366 0.385064 0.536469 0.388045 0.536786 0.381226 0.537565 0.363657 0.557902 0.366437 0.558252 0.384522 0.557902 0.366437 0.582826 0.368029 0.602192 0.385487 0.581806 0.385858 0.582826 0.368029 0.62196 0.384658 0.602192 0.385487 0.601832 0.367172 0.62196 0.384658 0.621565 0.366259 0.636838 0.365973 0.638403 0.384066 0.636838 0.365973 0.650723 0.366607 0.671101 0.382103 0.651663 0.383462 0.650723 0.366607 0.514573 0.379159 0.49016 0.377777 0.494552 0.35886 0.514573 0.379159 0.517097 0.360997 0.537565 0.363657 0.807632 0.351025 0.80868 0.341913 0.831365 0.347676 0.830712 0.356691 0.831365 0.347676 0.855538 0.351245 0.854889 0.360207 0.855538 0.351245 0.878551 0.351969 0.879108 0.361109 0.878551 0.351969 0.900747 0.349556 0.902161 0.359183 0.900747 0.349556 0.919906 0.346122 0.92253 0.355917 0.919906 0.346122 0.934539 0.341939 0.961572 0.342319 0.937825 0.351728 0.934539 0.341939 0.78221 0.34579 0.755589 0.339858 0.760046 0.330209 0.807632 0.351025 0.78221 0.34579 0.785099 0.336542 1.474191 0.122141 1.473548 0.112048 1.461385 0.114618 1.432367 0.340982 1.439595 0.340875 1.438523 0.330412 1.425271 0.334604 1.425497 0.341257 1.432367 0.340982 1.437429 0.06154799 1.444652 0.07932299 1.449063 0.06944495 1.40691 0.304845 1.410268 0.309081 1.413541 0.305838 1.412171 0.292301 1.418822 0.298526 1.420213 0.291184 1.458399 0.2716 1.456496 0.26823 1.449049 0.272521 1.44394 0.273593 1.442598 0.269782 1.435517 0.270844 1.448289 0.340191 1.455368 0.339766 1.450139 0.327553 1.449599 0.118772 1.435925 0.125613 1.443339 0.135773 1.409811 0.08515197 1.412756 0.088499 1.417515 0.08244496 1.419881 0.279423 1.427936 0.292312 1.43158 0.282816 1.444495 0.329088 1.438523 0.330412 1.439595 0.340875 1.46606 0.126766 1.461385 0.114618 1.449599 0.118772 1.418532 0.07314997 1.424856 0.07944297 1.431034 0.07259196 1.425903 0.110038 1.435925 0.125613 1.449599 0.118772 1.449599 0.118772 1.461385 0.114618 1.451997 0.09611099 1.465013 0.09340995 1.451997 0.09611099 1.461385 0.114618 1.419288 0.323289 1.421715 0.32843 1.42575 0.325301 1.427721 0.315032 1.430689 0.332335 1.438523 0.330412 1.435098 0.308812 1.438523 0.330412 1.444495 0.329088 1.450139 0.327553 1.447372 0.301688 1.440469 0.304591 1.476204 0.303733 1.473338 0.30059 1.46679 0.313673 1.464456 0.325618 1.467831 0.327477 1.471817 0.316486 1.425384 0.12812 1.435925 0.125613 1.425903 0.110038 1.456826 0.323236 1.455671 0.301752 1.447372 0.301688 1.456238 0.280442 1.461167 0.286984 1.462832 0.277212 1.45873 0.334212 1.456826 0.323236 1.450139 0.327553 1.435925 0.125613 1.425384 0.12812 1.429299 0.135172 1.462736 0.337565 1.45873 0.334212 1.455368 0.339766 1.410417 0.110959 1.404336 0.118053 1.410699 0.123622 1.46679 0.313673 1.463371 0.306229 1.455671 0.301752 1.490671 0.269203 1.491176 0.265588 1.488998 0.266007 1.464456 0.325618 1.46679 0.313673 1.456826 0.323236 1.425384 0.12812 1.414545 0.132217 1.419829 0.134626 1.467831 0.327477 1.464456 0.325618 1.45873 0.334212 1.416358 0.3092 1.420364 0.315582 1.423484 0.305083 1.458199 0.06362199 1.459521 0.07239395 1.464268 0.069678 1.427721 0.315032 1.423162 0.320235 1.42575 0.325301 1.430689 0.332335 1.42575 0.325301 1.421715 0.32843 1.476245 0.103719 1.475171 0.09567499 1.465013 0.09340995 1.43211 0.352533 1.438578 0.353754 1.439595 0.340875 1.46606 0.126766 1.472111 0.138204 1.480192 0.134167 1.425615 0.351202 1.43211 0.352533 1.432367 0.340982 1.448289 0.340191 1.447442 0.35471 1.454164 0.355167 1.454164 0.355167 1.460534 0.356666 1.461408 0.34457 1.451887 0.147473 1.46247 0.142328 1.4561 0.13058 1.439595 0.340875 1.438578 0.353754 1.447442 0.35471 1.46606 0.126766 1.4561 0.13058 1.46247 0.142328 1.461167 0.286984 1.467754 0.28517 1.466209 0.2789 1.402094 0.109488 1.399612 0.115139 1.404336 0.118053 1.48009 0.297234 1.476542 0.294342 1.473338 0.30059 1.471907 0.290553 1.467754 0.28517 1.461167 0.286984 1.418299 0.09853297 1.425903 0.110038 1.439258 0.100782 1.439258 0.100782 1.451997 0.09611099 1.444652 0.07932299 1.461046 0.080976 1.444652 0.07932299 1.451997 0.09611099 1.47426 0.08825498 1.461046 0.080976 1.465013 0.09340995 1.416499 0.31863 1.419288 0.323289 1.423162 0.320235 1.420364 0.315582 1.423162 0.320235 1.427721 0.315032 1.423484 0.305083 1.427721 0.315032 1.435098 0.308812 1.427936 0.292312 1.435098 0.308812 1.440469 0.304591 1.447372 0.301688 1.456238 0.280442 1.440334 0.286856 1.461167 0.286984 1.456238 0.280442 1.447372 0.301688 1.410417 0.110959 1.41759 0.116974 1.425903 0.110038 1.410699 0.123622 1.414545 0.132217 1.425384 0.12812 1.410699 0.123622 1.404336 0.118053 1.402146 0.123169 1.396841 0.119834 1.402146 0.123169 1.404336 0.118053 1.492291 0.270405 1.493479 0.27188 1.496598 0.270122 1.476542 0.294342 1.471907 0.290553 1.467455 0.296367 1.473338 0.30059 1.467455 0.296367 1.463371 0.306229 1.467455 0.296367 1.461167 0.286984 1.455671 0.301752 1.412415 0.06073498 1.41133 0.06643897 1.418532 0.07314997 1.433072 0.05186897 1.427789 0.04888498 1.437429 0.06154799 1.466223 0.058106 1.459122 0.05522596 1.458199 0.06362199 1.404061 0.296979 1.401862 0.300957 1.40691 0.304845 1.404745 0.279083 1.404009 0.28641 1.412171 0.292301 1.404745 0.279083 1.412171 0.292301 1.41626 0.285324 1.425191 0.249833 1.417825 0.253996 1.427793 0.274524 1.440026 0.255249 1.431262 0.25269 1.435517 0.270844 1.453309 0.257994 1.445774 0.256605 1.447677 0.269295 1.404956 0.08161598 1.409811 0.08515197 1.413379 0.07991898 1.459122 0.05522596 1.454036 0.05245399 1.458199 0.06362199 1.404061 0.296979 1.410347 0.301893 1.411446 0.298095 1.444293 0.05252796 1.433072 0.05186897 1.437429 0.06154799 1.409451 0.264448 1.419881 0.279423 1.410409 0.255043 1.435517 0.270844 1.431262 0.25269 1.425191 0.249833 1.412415 0.06073498 1.418532 0.07314997 1.427096 0.066863 1.367718 0.295893 1.368383 0.297008 1.36937 0.29642 1.404009 0.28641 1.404745 0.279083 1.395831 0.281339 1.353204 0.255242 1.353566 0.254352 1.351528 0.253803 1.410409 0.255043 1.401428 0.25264 1.400639 0.255012 1.388541 0.194178 1.389792 0.193406 1.38894 0.1911309 1.425191 0.249833 1.431262 0.25269 1.429879 0.240075 1.464758 0.201991 1.465734 0.202771 1.466849 0.199983 1.405047 0.293235 1.399829 0.292007 1.399804 0.29523 1.399804 0.29523 1.39864 0.299162 1.401862 0.300957 1.472889 0.05484497 1.468376 0.05210697 1.466223 0.058106 1.395514 0.283807 1.393611 0.285191 1.397693 0.289219 1.448351 0.04447698 1.442598 0.04529899 1.444293 0.05252796 1.398394 0.257183 1.402518 0.265515 1.409451 0.264448 1.407246 0.273173 1.401799 0.269545 1.399988 0.273207 1.404745 0.279083 1.399988 0.273207 1.395023 0.278207 1.420819 0.05584394 1.417628 0.05071598 1.410773 0.05430096 1.425171 0.238843 1.420828 0.246939 1.425191 0.249833 1.420828 0.246939 1.416057 0.250125 1.417825 0.253996 1.410409 0.255043 1.410258 0.250482 1.402214 0.250305 1.41133 0.06643897 1.403805 0.06769096 1.403041 0.07422196 1.453344 0.253977 1.446235 0.252036 1.445774 0.256605 1.441506 0.250018 1.436449 0.2472259 1.431262 0.25269 1.431262 0.25269 1.436449 0.2472259 1.431876 0.239455 1.844051 0.320629 1.847818 0.320891 1.848903 0.314889 1.388188 0.1972579 1.385357 0.195964 1.386467 0.200944 1.394615 0.19868 1.391747 0.1951709 1.3902 0.196883 1.396236 0.196756 1.392285 0.192487 1.391747 0.1951709 1.487278 0.275695 1.484682 0.272369 1.479595 0.276792 1.490241 0.277907 1.487278 0.275695 1.482573 0.280333 1.488534 0.28575 1.493701 0.278859 1.490241 0.277907 1.868063 0.323171 1.873285 0.309913 1.868767 0.309311 1.861051 0.322602 1.868063 0.323171 1.864019 0.310016 1.484682 0.272369 1.48307 0.269114 1.476865 0.273228 1.390157 0.104604 1.387876 0.107829 1.390162 0.109205 1.386032 0.111781 1.388082 0.113131 1.390162 0.109205 1.485824 0.283598 1.482573 0.280333 1.478744 0.284369 1.486808 0.288213 1.485824 0.283598 1.481933 0.287611 1.388082 0.113131 1.390193 0.114514 1.392746 0.110835 1.394438 0.106721 1.392169 0.105709 1.390162 0.109205 1.479595 0.276792 1.474504 0.274727 1.475226 0.280161 1.482573 0.280333 1.479595 0.276792 1.475226 0.280161 1.488701 0.269372 1.488998 0.266007 1.48307 0.269114 1.493479 0.27188 1.492291 0.270405 1.490206 0.272736 1.493701 0.278859 1.496419 0.272349 1.492874 0.273427 1.490206 0.272736 1.490671 0.269203 1.488701 0.269372 1.867883 0.328386 1.867819 0.332937 1.871151 0.332067 1.867883 0.328386 1.862491 0.327899 1.864018 0.331827 1.490671 0.269203 1.492291 0.270405 1.494615 0.267391 1.493479 0.27188 1.492874 0.273427 1.496419 0.272349 1.490206 0.272736 1.492291 0.270405 1.490671 0.269203 1.492874 0.273427 1.493479 0.27188 1.490206 0.272736 1.38377 0.07024997 1.403041 0.07422196 1.403805 0.06769096 1.443109 0.226126 1.431876 0.239455 1.436449 0.2472259 1.451168 0.231477 1.447958 0.229356 1.436449 0.2472259 1.458982 0.235496 1.454166 0.233274 1.446235 0.252036 1.402614 0.033436 1.397804 0.03652399 1.410773 0.05430096 1.396905 0.229714 1.402214 0.250305 1.410258 0.250482 1.408564 0.224798 1.40489 0.226613 1.416057 0.250125 1.408564 0.224798 1.420828 0.246939 1.425171 0.238843 1.444872 0.02925896 1.441442 0.02907997 1.442598 0.04529899 1.378402 0.269988 1.395023 0.278207 1.399988 0.273207 1.401799 0.269545 1.381276 0.262914 1.380277 0.265614 1.402518 0.265515 1.398394 0.257183 1.38207 0.255251 1.47807 0.04208099 1.475188 0.03946697 1.468376 0.05210697 1.388405 0.295703 1.38839 0.298683 1.39864 0.299162 1.399829 0.292007 1.388103 0.293381 1.388405 0.295703 1.386895 0.291262 1.397693 0.289219 1.393611 0.285191 1.417825 0.253996 1.410409 0.255043 1.419881 0.279423 1.416057 0.250125 1.410258 0.250482 1.410409 0.255043 1.40489 0.226613 1.401095 0.22765 1.410258 0.250482 1.3902 0.196883 1.388188 0.1972579 1.389381 0.201059 1.387471 0.194688 1.388541 0.194178 1.387016 0.191768 1.841481 0.312504 1.844051 0.320629 1.844586 0.31221 1.402614 0.033436 1.417628 0.05071598 1.421453 0.04563897 1.427789 0.04888498 1.421453 0.04563897 1.417628 0.05071598 1.420819 0.05584394 1.427096 0.066863 1.437429 0.06154799 1.437429 0.06154799 1.427096 0.066863 1.431034 0.07259196 1.427793 0.274524 1.43158 0.282816 1.438308 0.279596 1.431034 0.07259196 1.424856 0.07944297 1.430784 0.08721995 1.416408 0.09368598 1.418299 0.09853297 1.430784 0.08721995 1.458399 0.2716 1.450175 0.276307 1.456238 0.280442 1.440334 0.286856 1.456238 0.280442 1.450175 0.276307 1.43158 0.282816 1.427936 0.292312 1.440334 0.286856 1.417515 0.08244496 1.424856 0.07944297 1.418532 0.07314997 1.416408 0.09368598 1.424856 0.07944297 1.417515 0.08244496 1.450175 0.276307 1.449049 0.272521 1.44394 0.273593 1.44394 0.273593 1.449049 0.272521 1.447677 0.269295 1.454687 0.265344 1.447677 0.269295 1.449049 0.272521 1.407699 0.07612597 1.403041 0.07422196 1.401552 0.07889997 1.403041 0.07422196 1.38377 0.07024997 1.383199 0.07365697 1.466955 0.202931 1.468338 0.2014999 1.466849 0.199983 1.454166 0.233274 1.451168 0.231477 1.441506 0.250018 1.446235 0.252036 1.441506 0.250018 1.440026 0.255249 1.445774 0.256605 1.440026 0.255249 1.442598 0.269782 1.407699 0.07612597 1.413379 0.07991898 1.418532 0.07314997 1.459521 0.07239395 1.449063 0.06944495 1.444652 0.07932299 1.458199 0.06362199 1.447361 0.062168 1.449063 0.06944495 1.420213 0.291184 1.427936 0.292312 1.419881 0.279423 1.418822 0.298526 1.423484 0.305083 1.427936 0.292312 1.412887 0.312783 1.416499 0.31863 1.420364 0.315582 1.410347 0.301893 1.413541 0.305838 1.41373 0.298539 1.461046 0.080976 1.47426 0.08825498 1.473237 0.08082395 1.442598 0.04529899 1.436567 0.04484897 1.433072 0.05186897 1.441442 0.02907997 1.43802 0.028943 1.436567 0.04484897 1.353401 0.253351 1.352115 0.252329 1.351528 0.253803 1.381276 0.262914 1.401799 0.269545 1.402518 0.265515 1.402518 0.265515 1.401799 0.269545 1.407246 0.273173 1.454036 0.05245399 1.444293 0.05252796 1.447361 0.062168 1.41626 0.285324 1.419881 0.279423 1.409451 0.264448 1.412171 0.292301 1.411446 0.298095 1.41373 0.298539 1.413541 0.305838 1.416358 0.3092 1.418822 0.298526 1.410268 0.309081 1.412887 0.312783 1.416358 0.3092 1.459521 0.07239395 1.473237 0.08082395 1.472346 0.074579 1.464268 0.069678 1.472346 0.074579 1.471799 0.06770199 1.468376 0.05210697 1.464954 0.04907494 1.459122 0.05522596 1.475188 0.03946697 1.472767 0.03773796 1.464954 0.04907494 1.368029 0.294688 1.367718 0.295893 1.369383 0.295584 1.388103 0.293381 1.399829 0.292007 1.397693 0.289219 1.404009 0.28641 1.397693 0.289219 1.399829 0.292007 1.405047 0.293235 1.411446 0.298095 1.412171 0.292301 1.471944 0.06025999 1.466223 0.058106 1.465463 0.06623297 1.353204 0.255242 1.351516 0.255415 1.353909 0.257934 1.353566 0.254352 1.353204 0.255242 1.355739 0.256804 1.356305 0.252909 1.353401 0.253351 1.353566 0.254352 1.355142 0.251074 1.352115 0.252329 1.353401 0.253351 1.793882 0.327364 1.794471 0.325322 1.791773 0.325198 1.789555 0.327063 1.79169 0.327847 1.791773 0.325198 1.356975 0.255367 1.355739 0.256804 1.358143 0.258145 1.355739 0.256804 1.353909 0.257934 1.356469 0.259447 1.788198 0.314263 1.788316 0.318544 1.791902 0.318849 1.795581 0.314204 1.794322 0.312986 1.791902 0.318849 1.358969 0.251079 1.355142 0.251074 1.356305 0.252909 1.359421 0.253471 1.356305 0.252909 1.356975 0.255367 1.827414 0.325937 1.827993 0.323958 1.825442 0.324568 1.823506 0.326127 1.825507 0.327043 1.825442 0.324568 1.36937 0.29642 1.368383 0.297008 1.370021 0.297843 1.369383 0.295584 1.36937 0.29642 1.370963 0.29668 1.370382 0.293985 1.36918 0.294796 1.369383 0.295584 1.369427 0.293249 1.368029 0.294688 1.36918 0.294796 1.371335 0.295301 1.370963 0.29668 1.373078 0.296921 1.370963 0.29668 1.370021 0.297843 1.372547 0.298346 1.823271 0.313542 1.825446 0.319557 1.825487 0.313372 1.827388 0.313869 1.825487 0.313372 1.825446 0.319557 1.371755 0.291887 1.369427 0.293249 1.370382 0.293985 1.372722 0.293281 1.370382 0.293985 1.371335 0.295301 1.392285 0.192487 1.38894 0.1911309 1.389792 0.193406 1.844051 0.320629 1.843767 0.32509 1.846641 0.325217 1.840897 0.325063 1.843767 0.32509 1.844051 0.320629 1.387471 0.194688 1.385577 0.193189 1.385357 0.195964 1.388541 0.194178 1.387471 0.194688 1.388188 0.1972579 1.391747 0.1951709 1.389792 0.193406 1.388541 0.194178 1.807761 0.326933 1.810616 0.327287 1.811365 0.3209 1.804449 0.320671 1.805102 0.327228 1.807761 0.326933 1.464758 0.201991 1.464906 0.1998389 1.462289 0.2015759 1.465734 0.202771 1.464758 0.201991 1.463061 0.204088 1.466437 0.2056789 1.466955 0.202931 1.465734 0.202771 1.468812 0.204883 1.468338 0.2014999 1.466955 0.202931 1.464499 0.205635 1.463061 0.204088 1.46057 0.207357 1.463061 0.204088 1.462289 0.2015759 1.458716 0.2051129 1.804485 0.316766 1.804449 0.320671 1.807907 0.320521 1.810815 0.312534 1.808071 0.311537 1.807907 0.320521 1.467867 0.209697 1.468812 0.204883 1.466437 0.2056789 1.464885 0.209655 1.466437 0.2056789 1.464499 0.205635 1.390741 0.214668 1.394729 0.224232 1.39874 0.222262 1.397867 0.212099 1.394609 0.213169 1.39874 0.222262 1.401216 0.210568 1.397867 0.212099 1.402276 0.2212139 1.401216 0.210568 1.405792 0.219552 1.409003 0.2170979 1.39871 0.02840298 1.392061 0.01976197 1.388335 0.02266597 1.39871 0.02840298 1.402486 0.02516198 1.395581 0.01725995 1.454865 0.217369 1.450947 0.214608 1.446218 0.2217389 1.457548 0.2192029 1.454865 0.217369 1.450751 0.224692 1.460126 0.220472 1.457548 0.2192029 1.453719 0.226638 1.460126 0.220472 1.45648 0.228219 1.460923 0.230226 1.379027 0.06943297 1.371842 0.06813299 1.37127 0.07081997 1.371842 0.06813299 1.379027 0.06943297 1.379278 0.06571495 1.441216 0.02386695 1.440796 0.01581197 1.438091 0.01595497 1.441216 0.02386695 1.444289 0.02403396 1.443456 0.01594299 1.36789 0.261462 1.366129 0.264716 1.373786 0.267936 1.369117 0.259181 1.36789 0.261462 1.375504 0.263959 1.369117 0.259181 1.376523 0.261482 1.37669 0.258631 1.369189 0.256365 1.37669 0.258631 1.377373 0.254347 1.477311 0.03567695 1.480158 0.03042 1.478043 0.02945095 1.482366 0.03260296 1.480158 0.03042 1.477311 0.03567695 1.380071 0.296425 1.379929 0.298699 1.384906 0.298668 1.384613 0.293842 1.379802 0.294379 1.380071 0.296425 1.379802 0.294379 1.384613 0.293842 1.383648 0.291848 1.379053 0.292448 1.383648 0.291848 1.382631 0.288868 1.44217 0.006167948 1.441573 0.007194995 1.443095 0.01286697 1.358143 0.258145 1.356469 0.259447 1.363093 0.263277 1.359263 0.256137 1.358143 0.258145 1.364928 0.260402 1.359263 0.256137 1.366203 0.258265 1.366221 0.255531 1.359421 0.253471 1.366221 0.255531 1.366321 0.252075 1.438996 0.007281959 1.438171 0.00664699 1.438102 0.01293694 1.389381 0.201059 1.386467 0.200944 1.389398 0.210543 1.392021 0.200202 1.389381 0.201059 1.39311 0.209453 1.394615 0.19868 1.392021 0.200202 1.396121 0.208514 1.394615 0.19868 1.399281 0.207043 1.401389 0.2045789 1.383451 0.01156598 1.381622 0.01157099 1.385903 0.019131 1.386138 0.008875966 1.385033 0.01063996 1.389414 0.01631999 1.36225 0.06399899 1.363402 0.06494897 1.36918 0.06458097 1.46057 0.207357 1.458716 0.2051129 1.453045 0.211564 1.462619 0.2090809 1.46057 0.207357 1.456653 0.21437 1.462619 0.2090809 1.45917 0.216123 1.461611 0.2172729 1.464885 0.209655 1.461611 0.2172729 1.465408 0.218519 1.368956 0.06761997 1.363426 0.06644797 1.362863 0.06775701 1.481357 0.02825999 1.482988 0.02503997 1.482257 0.02436697 1.484224 0.025303 1.482988 0.02503997 1.481357 0.02825999 1.373078 0.296921 1.372547 0.298346 1.377634 0.298623 1.373341 0.295068 1.373078 0.296921 1.377879 0.296559 1.373341 0.295068 1.377689 0.294642 1.377019 0.292797 1.372722 0.293281 1.377019 0.292797 1.376073 0.290539 1.384906 0.298668 1.38638 0.298656 1.384881 0.295984 1.476418 0.03722995 1.479114 0.03976595 1.47988 0.03810399 1.477311 0.03567695 1.475027 0.03428798 1.474086 0.03572696 1.479114 0.03976595 1.476418 0.03722995 1.475188 0.03946697 1.38638 0.298656 1.38839 0.298683 1.388405 0.295703 1.388103 0.293381 1.384613 0.293842 1.384881 0.295984 1.384613 0.293842 1.388103 0.293381 1.386895 0.291262 1.383928 0.288529 1.383648 0.291848 1.386895 0.291262 1.476418 0.03722995 1.474086 0.03572696 1.472767 0.03773796 1.375504 0.263959 1.373786 0.267936 1.376016 0.268889 1.441319 0.02632898 1.444556 0.02651196 1.444289 0.02403396 1.441216 0.02386695 1.438147 0.023889 1.438104 0.02628898 1.444556 0.02651196 1.441319 0.02632898 1.441442 0.02907997 1.378402 0.269988 1.380277 0.265614 1.376016 0.268889 1.376523 0.261482 1.375504 0.263959 1.380277 0.265614 1.376523 0.261482 1.381276 0.262914 1.381444 0.259859 1.379636 0.254818 1.37669 0.258631 1.381444 0.259859 1.441319 0.02632898 1.438104 0.02628898 1.43802 0.028943 1.39871 0.02840298 1.400573 0.03084498 1.404457 0.02737498 1.39871 0.02840298 1.394358 0.031403 1.396031 0.03387695 1.402276 0.2212139 1.39874 0.222262 1.401095 0.22765 1.405792 0.219552 1.402276 0.2212139 1.40489 0.226613 1.410485 0.219577 1.405792 0.219552 1.408564 0.224798 1.400573 0.03084498 1.396031 0.03387695 1.397804 0.03652399 1.400573 0.03084498 1.402614 0.033436 1.406579 0.02973699 1.39874 0.222262 1.39581 0.22689 1.401095 0.22765 1.379027 0.06943297 1.381189 0.06978899 1.381429 0.06591796 1.381189 0.06978899 1.379027 0.06943297 1.378478 0.07251596 1.453719 0.226638 1.450751 0.224692 1.447958 0.229356 1.45648 0.228219 1.453719 0.226638 1.451168 0.231477 1.460014 0.2326509 1.45648 0.228219 1.454166 0.233274 1.38377 0.07024997 1.381189 0.06978899 1.380649 0.073013 1.381189 0.06978899 1.38377 0.07024997 1.383986 0.06615 1.444778 0.223758 1.443109 0.226126 1.447958 0.229356 1.480704 0.02941495 1.482844 0.03151297 1.483397 0.03024297 1.480704 0.02941495 1.481357 0.02825999 1.479368 0.02743399 1.482844 0.03151297 1.480704 0.02941495 1.480158 0.03042 1.377879 0.296559 1.37891 0.298675 1.380071 0.296425 1.379802 0.294379 1.377689 0.294642 1.377879 0.296559 1.377689 0.294642 1.379802 0.294379 1.379053 0.292448 1.377192 0.290204 1.377019 0.292797 1.379053 0.292448 1.480158 0.03042 1.480704 0.02941495 1.478643 0.02851599 1.44071 0.01440995 1.440622 0.01277697 1.438102 0.01293694 1.363093 0.263277 1.364738 0.264069 1.364928 0.260402 1.44071 0.01440995 1.443293 0.01451694 1.443095 0.01286697 1.364738 0.264069 1.366129 0.264716 1.36789 0.261462 1.366203 0.258265 1.364928 0.260402 1.36789 0.261462 1.366203 0.258265 1.369117 0.259181 1.369189 0.256365 1.368066 0.252362 1.366221 0.255531 1.369189 0.256365 1.440796 0.01581197 1.44071 0.01440995 1.438083 0.014557 1.443293 0.01451694 1.44071 0.01440995 1.440796 0.01581197 1.392801 0.01405894 1.389414 0.01631999 1.390828 0.01816898 1.390828 0.01816898 1.389414 0.01631999 1.385903 0.019131 1.396121 0.208514 1.39311 0.209453 1.394609 0.213169 1.399281 0.207043 1.396121 0.208514 1.397867 0.212099 1.402734 0.206446 1.399281 0.207043 1.401216 0.210568 1.392061 0.01976197 1.390828 0.01816898 1.387204 0.02103596 1.392061 0.01976197 1.395581 0.01725995 1.394294 0.01578396 1.39311 0.209453 1.390073 0.2127799 1.394609 0.213169 1.368956 0.06761997 1.368375 0.07014197 1.369921 0.07050198 1.453045 0.211564 1.451891 0.213212 1.456653 0.21437 1.368956 0.06761997 1.370506 0.06788796 1.370743 0.06473296 1.451891 0.213212 1.450947 0.214608 1.454865 0.217369 1.45917 0.216123 1.456653 0.21437 1.454865 0.217369 1.45917 0.216123 1.457548 0.2192029 1.460126 0.220472 1.464722 0.220413 1.461611 0.2172729 1.460126 0.220472 1.370506 0.06788796 1.369921 0.07050198 1.37127 0.07081997 1.370506 0.06788796 1.371842 0.06813299 1.372092 0.06488698 1.402094 0.109488 1.394438 0.106721 1.392746 0.110835 1.467754 0.28517 1.475226 0.280161 1.472616 0.276174 1.478744 0.284369 1.475226 0.280161 1.467754 0.28517 1.481933 0.287611 1.478744 0.284369 1.471907 0.290553 1.484967 0.290291 1.481933 0.287611 1.476542 0.294342 1.390193 0.114514 1.396841 0.119834 1.399612 0.115139 1.490206 0.272736 1.488701 0.269372 1.484682 0.272369 1.490241 0.277907 1.492874 0.273427 1.490206 0.272736 1.390157 0.104604 1.383545 0.101034 1.384029 0.102625 1.381633 0.10678 1.386032 0.111781 1.387876 0.107829 1.474191 0.122141 1.480192 0.134167 1.487609 0.129102 1.473548 0.112048 1.474191 0.122141 1.481981 0.118467 1.476245 0.103719 1.473548 0.112048 1.482803 0.109934 1.475171 0.09567499 1.476245 0.103719 1.482404 0.1017889 1.480536 0.08825296 1.47426 0.08825498 1.475171 0.09567499 1.479091 0.08017098 1.473237 0.08082395 1.47426 0.08825498 1.473237 0.08082395 1.479091 0.08017098 1.478261 0.07484996 1.477693 0.06848996 1.471799 0.06770199 1.472346 0.074579 1.477185 0.06082999 1.471944 0.06025999 1.471799 0.06770199 1.477713 0.05598896 1.472889 0.05484497 1.471944 0.06025999 1.481261 0.04345095 1.47807 0.04208099 1.472889 0.05484497 1.482108 0.04107797 1.479114 0.03976595 1.47807 0.04208099 1.479114 0.03976595 1.482108 0.04107797 1.482649 0.03934794 1.484531 0.03374898 1.482366 0.03260296 1.47988 0.03810399 1.484898 0.03259998 1.482844 0.03151297 1.482366 0.03260296 1.482844 0.03151297 1.484898 0.03259998 1.485285 0.03120899 1.486427 0.02580195 1.485103 0.024827 1.483397 0.03024297 1.486151 0.02314096 1.485318 0.02298098 1.485103 0.024827 1.48539 0.02188599 1.484926 0.02211499 1.485318 0.02298098 1.484721 0.02148896 1.484549 0.021981 1.484926 0.02211499 1.484138 0.02191299 1.484549 0.021981 1.484721 0.02148896 1.483179 0.02229297 1.484138 0.02191299 1.48392 0.02127099 1.481926 0.02348899 1.483179 0.02229297 1.482411 0.02144396 1.48052 0.02275699 1.477381 0.02617895 1.479368 0.02743399 1.477381 0.02617895 1.476475 0.02711498 1.478643 0.02851599 1.478043 0.02945095 1.478643 0.02851599 1.476475 0.02711498 1.475027 0.03428798 1.478043 0.02945095 1.475708 0.027969 1.471105 0.03344595 1.474086 0.03572696 1.475027 0.03428798 1.469631 0.03525197 1.472767 0.03773796 1.474086 0.03572696 1.462333 0.043446 1.464954 0.04907494 1.472767 0.03773796 1.464954 0.04907494 1.462333 0.043446 1.459755 0.04388195 1.459755 0.04388195 1.45763 0.04244798 1.454036 0.05245399 1.448351 0.04447698 1.454036 0.05245399 1.45763 0.04244798 1.444872 0.02925896 1.448351 0.04447698 1.454543 0.03885197 1.444556 0.02651196 1.444872 0.02925896 1.449604 0.02826797 1.444289 0.02403396 1.444556 0.02651196 1.448991 0.02566599 1.446808 0.01554298 1.443456 0.01594299 1.444289 0.02403396 1.446443 0.01413196 1.443293 0.01451694 1.443456 0.01594299 1.443293 0.01451694 1.446443 0.01413196 1.446008 0.01253497 1.444277 0.006348967 1.44217 0.006167948 1.443095 0.01286697 1.442805 0.003811955 1.441439 0.004094958 1.44217 0.006167948 1.440784 0.002125978 1.440366 0.002622961 1.441439 0.004094958 1.440366 0.002622961 1.440784 0.002125978 1.439958 0.001884996 1.439671 0.002707958 1.439997 0.002421975 1.439958 0.001884996 1.438722 0.00415796 1.439671 0.002707958 1.439156 0.002267956 1.438171 0.00664699 1.438722 0.00415796 1.437528 0.004000961 1.436073 0.007027983 1.435157 0.012932 1.438102 0.01293694 1.438083 0.014557 1.438102 0.01293694 1.435157 0.012932 1.434911 0.01452398 1.434718 0.01592195 1.438091 0.01595497 1.434718 0.01592195 1.433991 0.02357 1.438147 0.023889 1.438147 0.023889 1.433991 0.02357 1.433719 0.025837 1.433423 0.02830499 1.43802 0.028943 1.438104 0.02628898 1.430429 0.03764498 1.436567 0.04484897 1.43802 0.028943 1.436567 0.04484897 1.430429 0.03764498 1.428645 0.03947597 1.427789 0.04888498 1.433072 0.05186897 1.428645 0.03947597 1.421453 0.04563897 1.427789 0.04888498 1.426219 0.03985095 1.406579 0.02973699 1.421453 0.04563897 1.423211 0.03897196 1.407448 0.02514398 1.404457 0.02737498 1.406579 0.02973699 1.404457 0.02737498 1.407448 0.02514398 1.405524 0.02307397 1.402486 0.02516198 1.405524 0.02307397 1.398562 0.015661 1.397239 0.01425099 1.394294 0.01578396 1.395581 0.01725995 1.394294 0.01578396 1.397239 0.01425099 1.395696 0.01263594 1.388094 0.006185948 1.3864 0.007463991 1.392801 0.01405894 1.383689 0.004185974 1.383057 0.004802942 1.3864 0.007463991 1.38167 0.004242956 1.381701 0.005083978 1.383057 0.004802942 1.381701 0.005083978 1.38167 0.004242956 1.380571 0.004686951 1.380571 0.004686951 1.379787 0.005584955 1.380606 0.005871951 1.380056 0.007230997 1.380606 0.005871951 1.379787 0.005584955 1.381622 0.01157099 1.380056 0.007230997 1.379101 0.00801897 1.379657 0.013134 1.383614 0.02158898 1.385903 0.019131 1.387204 0.02103596 1.385903 0.019131 1.383614 0.02158898 1.38476 0.02354997 1.385787 0.02523398 1.388335 0.02266597 1.385787 0.02523398 1.391105 0.03402799 1.394358 0.031403 1.396031 0.03387695 1.394358 0.031403 1.391105 0.03402799 1.39261 0.03645098 1.394091 0.03903698 1.397804 0.03652399 1.397804 0.03652399 1.394091 0.03903698 1.402214 0.05425596 1.410773 0.05430096 1.402214 0.05425596 1.402415 0.05712699 1.412415 0.06073498 1.402415 0.05712699 1.4016 0.05947899 1.403805 0.06769096 1.41133 0.06643897 1.4016 0.05947899 1.383986 0.06615 1.403805 0.06769096 1.399334 0.06105095 1.381429 0.06591796 1.383986 0.06615 1.383706 0.06150096 1.379278 0.06571495 1.381429 0.06591796 1.381242 0.06150597 1.372092 0.06488698 1.379278 0.06571495 1.379175 0.06152695 1.370743 0.06473296 1.372092 0.06488698 1.372228 0.06140297 1.36918 0.06458097 1.370743 0.06473296 1.370871 0.06139898 1.362664 0.06139796 1.36225 0.06399899 1.36918 0.06458097 1.359308 0.06297099 1.35953 0.06411397 1.36225 0.06399899 1.357999 0.06444799 1.358284 0.06503295 1.35953 0.06411397 1.358284 0.06503295 1.357999 0.06444799 1.357571 0.06529295 1.358123 0.06588697 1.357947 0.06536996 1.357571 0.06529295 1.358855 0.067227 1.358123 0.06588697 1.357675 0.06638199 1.361496 0.06825399 1.358855 0.067227 1.35852 0.068349 1.360771 0.07083499 1.367474 0.07330995 1.368375 0.07014197 1.369921 0.07050198 1.368375 0.07014197 1.367474 0.07330995 1.369921 0.07050198 1.368995 0.07382798 1.370312 0.07428395 1.37127 0.07081997 1.370312 0.07428395 1.377135 0.07649499 1.379157 0.07722395 1.380649 0.073013 1.378478 0.07251596 1.380649 0.073013 1.379157 0.07722395 1.38159 0.07805401 1.383199 0.07365697 1.38159 0.07805401 1.397243 0.08388298 1.401552 0.07889997 1.397243 0.08388298 1.400002 0.08596795 1.404956 0.08161598 1.400002 0.08596795 1.405009 0.09074199 1.412756 0.088499 1.409811 0.08515197 1.405009 0.09074199 1.416408 0.09368598 1.412756 0.088499 1.407177 0.09315198 1.416408 0.09368598 1.408933 0.09699696 1.410194 0.100325 1.410417 0.110959 1.418299 0.09853297 1.410194 0.100325 1.402094 0.109488 1.410417 0.110959 1.407203 0.105486 1.394438 0.106721 1.402094 0.109488 1.401954 0.1057479 1.39324 0.103372 1.392169 0.105709 1.394438 0.106721 1.390157 0.104604 1.392169 0.105709 1.39324 0.103372 1.385263 0.09989595 1.383545 0.101034 1.390157 0.104604 1.380243 0.09951496 1.379956 0.100535 1.383545 0.101034 1.378957 0.100137 1.37921 0.101036 1.379956 0.100535 1.37772 0.101517 1.378397 0.101861 1.37921 0.101036 1.378 0.10277 1.378397 0.101861 1.37772 0.101517 1.377757 0.103703 1.378 0.10277 1.377293 0.103004 1.380009 0.106984 1.377757 0.103703 1.377193 0.104338 1.386032 0.111781 1.380009 0.106984 1.379472 0.1089619 1.386032 0.111781 1.384555 0.113597 1.386522 0.1151 1.388082 0.113131 1.386522 0.1151 1.38843 0.116461 1.390193 0.114514 1.38843 0.116461 1.393956 0.121379 1.396841 0.119834 1.393956 0.121379 1.398302 0.127308 1.402146 0.123169 1.398302 0.127308 1.408742 0.134485 1.418744 0.138635 1.419829 0.134626 1.414545 0.132217 1.419829 0.134626 1.418744 0.138635 1.428658 0.140121 1.429299 0.135172 1.428658 0.140121 1.435172 0.140163 1.446187 0.150113 1.451887 0.147473 1.443339 0.135773 1.51973 0.169718 1.487609 0.129102 1.480192 0.134167 1.436702 0.397594 1.438578 0.353754 1.43211 0.352533 1.447442 0.35471 1.438578 0.353754 1.436702 0.397594 1.454164 0.355167 1.447442 0.35471 1.448183 0.39916 1.451887 0.147473 1.446187 0.150113 1.470912 0.192254 1.46247 0.142328 1.451887 0.147473 1.479434 0.189914 1.472111 0.138204 1.46247 0.142328 1.489262 0.1868489 1.480192 0.134167 1.472111 0.138204 1.500225 0.183162 1.42512 0.397316 1.43211 0.352533 1.425615 0.351202 1.460534 0.356666 1.454164 0.355167 1.462255 0.398279 1.486808 0.288213 1.488534 0.28575 1.485824 0.283598 1.484967 0.290291 1.486808 0.288213 1.481933 0.287611 1.475226 0.280161 1.474504 0.274727 1.472616 0.276174 1.479595 0.276792 1.476865 0.273228 1.474504 0.274727 1.45648 0.228219 1.460014 0.2326509 1.460923 0.230226 1.460014 0.2326509 1.454166 0.233274 1.458982 0.235496 1.450751 0.224692 1.444778 0.223758 1.447958 0.229356 1.446218 0.2217389 1.444778 0.223758 1.450751 0.224692 1.461611 0.2172729 1.464722 0.220413 1.465408 0.218519 1.464722 0.220413 1.460126 0.220472 1.464124 0.222011 1.456653 0.21437 1.451891 0.213212 1.454865 0.217369 1.405792 0.219552 1.410485 0.219577 1.409003 0.2170979 1.410485 0.219577 1.408564 0.224798 1.412086 0.222199 1.39581 0.22689 1.396905 0.229714 1.401095 0.22765 1.394729 0.224232 1.39581 0.22689 1.39874 0.222262 1.390073 0.2127799 1.390741 0.214668 1.394609 0.213169 1.389398 0.210543 1.390073 0.2127799 1.39311 0.209453 1.399281 0.207043 1.402734 0.206446 1.401389 0.2045789 1.402734 0.206446 1.401216 0.210568 1.403799 0.208113 1.377373 0.254347 1.37669 0.258631 1.379636 0.254818 1.381444 0.259859 1.38207 0.255251 1.379636 0.254818 1.375504 0.263959 1.376016 0.268889 1.380277 0.265614 1.366221 0.255531 1.368066 0.252362 1.366321 0.252075 1.368066 0.252362 1.369189 0.256365 1.369526 0.252627 1.364928 0.260402 1.364738 0.264069 1.36789 0.261462 1.37891 0.298675 1.379929 0.298699 1.380071 0.296425 1.377634 0.298623 1.37891 0.298675 1.377879 0.296559 1.376073 0.290539 1.377019 0.292797 1.377192 0.290204 1.379053 0.292448 1.378125 0.289948 1.377192 0.290204 1.383648 0.291848 1.383928 0.288529 1.382631 0.288868 1.386895 0.291262 1.385695 0.288056 1.383928 0.288529 1.384881 0.295984 1.38638 0.298656 1.388405 0.295703 1.363426 0.06644797 1.368956 0.06761997 1.36918 0.06458097 1.807907 0.320521 1.808071 0.311537 1.805028 0.311985 1.362863 0.06775701 1.361496 0.06825399 1.368375 0.07014197 1.811337 0.316477 1.810815 0.312534 1.807907 0.320521 1.358855 0.067227 1.35907 0.06678998 1.358123 0.06588697 1.358284 0.06503295 1.359623 0.06447798 1.35953 0.06411397 1.362128 0.06463396 1.362897 0.06514799 1.363402 0.06494897 1.35953 0.06411397 1.359623 0.06447798 1.362128 0.06463396 1.362962 0.06637495 1.362425 0.06743395 1.362863 0.06775701 1.362897 0.06514799 1.362962 0.06637495 1.363426 0.06644797 1.362425 0.06743395 1.361537 0.06760197 1.361496 0.06825399 1.361537 0.06760197 1.35907 0.06678998 1.358855 0.067227 1.811365 0.3209 1.810616 0.327287 1.811474 0.32699 1.802421 0.31299 1.804485 0.316766 1.805028 0.311985 1.802421 0.321167 1.804449 0.320671 1.804485 0.316766 1.80821 0.310089 1.808071 0.311537 1.810815 0.312534 1.805028 0.311985 1.808071 0.311537 1.80821 0.310089 1.810815 0.312534 1.811337 0.316477 1.813476 0.313359 1.811337 0.316477 1.811365 0.3209 1.813264 0.321639 1.825034 0.294168 1.826389 0.296917 1.828298 0.295701 1.828298 0.295701 1.828446 0.297948 1.830435 0.296925 1.804449 0.320671 1.802421 0.321167 1.804244 0.326986 1.828298 0.295701 1.830435 0.296925 1.831603 0.294168 1.826389 0.296917 1.828446 0.297948 1.828298 0.295701 1.810616 0.327287 1.809963 0.329726 1.811474 0.32699 1.807761 0.326933 1.807743 0.330696 1.809963 0.329726 1.805648 0.329692 1.807743 0.330696 1.807761 0.326933 1.804244 0.326986 1.805648 0.329692 1.805102 0.327228 1.811365 0.3209 1.811337 0.316477 1.807907 0.320521 1.804485 0.316766 1.807907 0.320521 1.805028 0.311985 1.384029 0.102625 1.383177 0.104989 1.387876 0.107829 1.868063 0.323171 1.868767 0.309311 1.864019 0.310016 1.380009 0.106984 1.386032 0.111781 1.381633 0.10678 1.874366 0.323122 1.875945 0.312375 1.873285 0.309913 1.383177 0.104989 1.382146 0.104267 1.381018 0.105497 1.382576 0.101631 1.382745 0.10274 1.384029 0.102625 1.379956 0.100535 1.379814 0.100987 1.382576 0.101631 1.377757 0.103703 1.378088 0.103426 1.378 0.10277 1.37921 0.101036 1.379814 0.100987 1.379956 0.100535 1.382745 0.10274 1.382146 0.104267 1.383177 0.104989 1.381018 0.105497 1.379914 0.105812 1.380009 0.106984 1.379914 0.105812 1.378088 0.103426 1.377757 0.103703 1.868946 0.306844 1.868767 0.309311 1.873285 0.309913 1.859104 0.310065 1.861041 0.31237 1.864019 0.310016 1.859104 0.322681 1.861051 0.322602 1.861041 0.31237 1.872742 0.328253 1.871151 0.332067 1.87546 0.32795 1.869557 0.298254 1.869133 0.301551 1.872787 0.300404 1.862182 0.29595 1.865989 0.300425 1.869557 0.298254 1.859615 0.327048 1.864018 0.331827 1.862491 0.327899 1.864019 0.310016 1.868767 0.309311 1.868946 0.306844 1.875067 0.307845 1.873285 0.309913 1.875945 0.312375 1.875945 0.312375 1.874366 0.323122 1.876821 0.32331 1.859615 0.327048 1.862491 0.327899 1.861051 0.322602 1.868063 0.323171 1.861051 0.322602 1.862491 0.327899 1.868063 0.323171 1.867883 0.328386 1.872742 0.328253 1.874366 0.323122 1.872742 0.328253 1.87546 0.32795 1.869557 0.298254 1.872787 0.300404 1.877259 0.29595 1.865989 0.300425 1.869133 0.301551 1.869557 0.298254 1.382942 0.01011699 1.381703 0.00980699 1.381622 0.01157099 1.381703 0.00980699 1.38053 0.006927967 1.380056 0.007230997 1.386138 0.008875966 1.38517 0.008251965 1.3842 0.009432971 1.383057 0.004802942 1.382836 0.00524795 1.385063 0.007047951 1.380056 0.007230997 1.38053 0.006927967 1.380606 0.005871951 1.381701 0.005083978 1.382836 0.00524795 1.383057 0.004802942 1.847476 0.312617 1.848903 0.314889 1.850332 0.313362 1.848903 0.314889 1.847818 0.320891 1.849188 0.32147 1.84103 0.310799 1.841481 0.312504 1.844586 0.31221 1.838899 0.320713 1.840238 0.320629 1.84025 0.315065 1.849188 0.32147 1.847818 0.320891 1.846641 0.325217 1.805508 0.295208 1.806897 0.297159 1.80911 0.296501 1.80911 0.296501 1.809149 0.298288 1.81105 0.297203 1.840897 0.325063 1.840238 0.320629 1.838899 0.320713 1.846641 0.325217 1.845832 0.327444 1.847491 0.32564 1.843767 0.32509 1.843401 0.328408 1.845832 0.327444 1.841433 0.327344 1.843401 0.328408 1.843767 0.32509 1.839951 0.325556 1.841433 0.327344 1.840897 0.325063 1.80911 0.296501 1.81105 0.297203 1.812159 0.295208 1.806897 0.297159 1.809149 0.298288 1.80911 0.296501 1.84025 0.315065 1.840238 0.320629 1.844051 0.320629 1.838899 0.312979 1.84025 0.315065 1.841481 0.312504 1.3864 0.007463991 1.385063 0.007047951 1.38517 0.008251965 1.3864 0.007463991 1.386138 0.008875966 1.392801 0.01405894 1.844586 0.31221 1.844051 0.320629 1.847476 0.312617 1.844717 0.310333 1.844586 0.31221 1.847476 0.312617 1.385033 0.01063996 1.3842 0.009432971 1.382942 0.01011699 1.389414 0.01631999 1.385033 0.01063996 1.383451 0.01156598 1.438722 0.00415796 1.438993 0.004224956 1.439671 0.002707958 1.440366 0.002622961 1.441179 0.004145979 1.441439 0.004094958 1.44217 0.006167948 1.441592 0.005676984 1.441139 0.006559967 1.441439 0.004094958 1.441179 0.004145979 1.441592 0.005676984 1.438996 0.007281959 1.439375 0.006722986 1.438811 0.00604999 1.438811 0.00604999 1.438993 0.004224956 1.438722 0.00415796 1.794471 0.325322 1.793882 0.327364 1.795546 0.325055 1.78717 0.297084 1.788271 0.299673 1.79056 0.297886 1.79056 0.297886 1.790293 0.300572 1.792367 0.299713 1.787397 0.324626 1.789555 0.327063 1.789176 0.324873 1.788198 0.314263 1.789702 0.312751 1.788729 0.311224 1.786676 0.318138 1.788316 0.318544 1.788198 0.314263 1.794322 0.312986 1.795581 0.314204 1.79668 0.313392 1.795581 0.314204 1.795585 0.318833 1.796578 0.318752 1.787397 0.324626 1.789176 0.324873 1.788316 0.318544 1.789176 0.324873 1.791773 0.325198 1.791902 0.318849 1.794471 0.325322 1.795585 0.318833 1.791902 0.318849 1.795585 0.318833 1.794471 0.325322 1.795546 0.325055 1.788271 0.299673 1.790293 0.300572 1.79056 0.297886 1.79056 0.297886 1.792367 0.299713 1.794248 0.297084 1.441573 0.007194995 1.440286 0.007456958 1.440622 0.01277697 1.441139 0.006559967 1.440234 0.007003962 1.440286 0.007456958 1.789702 0.312751 1.792032 0.312311 1.791923 0.310665 1.791902 0.318849 1.792032 0.312311 1.789702 0.312751 1.794322 0.312986 1.792032 0.312311 1.791902 0.318849 1.792032 0.312311 1.794322 0.312986 1.794754 0.311484 1.440286 0.007456958 1.440234 0.007003962 1.439375 0.006722986 1.440622 0.01277697 1.440286 0.007456958 1.438996 0.007281959 1.483179 0.02229297 1.483345 0.02241694 1.484138 0.02191299 1.484926 0.02211499 1.485106 0.02296698 1.485318 0.02298098 1.484109 0.02458596 1.48329 0.02445095 1.482988 0.02503997 1.485318 0.02298098 1.485106 0.02296698 1.484744 0.02426999 1.48329 0.02445095 1.482765 0.02394497 1.482257 0.02436697 1.482491 0.02338695 1.483345 0.02241694 1.483179 0.02229297 1.827993 0.323958 1.827414 0.325937 1.829207 0.32394 1.841533 0.297577 1.842487 0.300082 1.84457 0.29899 1.84457 0.29899 1.846194 0.300292 1.847905 0.297577 1.821414 0.323743 1.823506 0.326127 1.822883 0.324124 1.823271 0.313542 1.825487 0.313372 1.825454 0.312022 1.820536 0.319148 1.821823 0.319332 1.821651 0.315175 1.825487 0.313372 1.827388 0.313869 1.827936 0.312742 1.829066 0.314991 1.829027 0.319132 1.829898 0.319189 1.821414 0.323743 1.822883 0.324124 1.821823 0.319332 1.822883 0.324124 1.825442 0.324568 1.825446 0.319557 1.827993 0.323958 1.829027 0.319132 1.825446 0.319557 1.829027 0.319132 1.827993 0.323958 1.829207 0.32394 1.84457 0.29899 1.844278 0.301282 1.846194 0.300292 1.842487 0.300082 1.844278 0.301282 1.84457 0.29899 1.482257 0.02436697 1.481926 0.02348899 1.479368 0.02743399 1.482765 0.02394497 1.482491 0.02338695 1.481926 0.02348899 1.829066 0.314991 1.829898 0.313974 1.827936 0.312742 1.829027 0.319132 1.829066 0.314991 1.827388 0.313869 1.821651 0.315175 1.821823 0.319332 1.825446 0.319557 1.820757 0.314181 1.821651 0.315175 1.823271 0.313542 1.485103 0.024827 1.484744 0.02426999 1.484109 0.02458596 1.485103 0.024827 1.484224 0.025303 1.483397 0.03024297 1.120364 0.903472 1.139041 0.905176 1.136953 0.886322 1.139041 0.905176 1.155779 0.906916 1.151002 0.889086 1.155779 0.906916 1.175001 0.908869 1.169597 0.891416 1.439327 0.909539 1.439327 0.890891 1.406765 0.891559 1.407025 0.910165 1.406765 0.891559 1.371251 0.892681 1.369815 0.911088 1.371251 0.892681 1.341995 0.89449 1.315124 0.91204 1.340806 0.912149 1.341995 0.89449 1.315124 0.91204 1.316391 0.894942 1.297854 0.89452 1.294632 0.912405 1.297854 0.89452 1.279624 0.895381 1.275016 0.913061 1.279624 0.895381 1.261914 0.89548 1.255849 0.913258 1.261914 0.89548 1.237435 0.896041 1.232351 0.912374 1.237435 0.896041 1.211607 0.895005 1.19257 0.91048 1.211365 0.911171 1.211607 0.895005 1.175001 0.908869 1.19257 0.91048 1.189673 0.894156 1.101262 0.902584 1.120364 0.903472 1.120008 0.883433 1.066507 0.901362 1.101262 0.902584 1.101035 0.881981 1.034924 0.900869 1.066507 0.901362 1.067092 0.880661 1.407314 0.941227 1.439327 0.940992 1.439327 0.935228 1.407314 0.941227 1.407368 0.935562 1.368393 0.935561 1.368292 0.940647 1.368393 0.935561 1.339662 0.935535 1.339498 0.940299 1.339662 0.935535 1.314039 0.935411 1.313889 0.940639 1.314039 0.935411 1.291438 0.936277 1.291143 0.941043 1.291438 0.936277 1.270174 0.936045 1.269732 0.940306 1.270174 0.936045 1.249481 0.934851 1.249071 0.938017 1.249481 0.934851 1.226971 0.932266 1.22651 0.935309 1.226971 0.932266 1.210915 0.930659 1.195503 0.932797 1.210702 0.933447 1.210915 0.930659 1.180425 0.933413 1.195503 0.932797 1.195288 0.929963 1.160523 0.933327 1.180425 0.933413 1.180365 0.930016 1.141277 0.934013 1.160523 0.933327 1.160555 0.929191 1.120755 0.934577 1.141277 0.934013 1.141233 0.929197 1.101359 0.934731 1.120755 0.934577 1.120713 0.929242 1.065711 0.934049 1.101359 0.934731 1.101346 0.929164 1.034924 0.933349 1.065711 0.934049 1.065733 0.928225 1.406396 0.878272 1.406641 0.886525 1.439327 0.885619 1.371903 0.879705 1.371676 0.887664 1.406641 0.886525 1.343441 0.881094 1.342434 0.889404 1.371676 0.887664 1.343441 0.881094 1.317385 0.882892 1.316643 0.890341 1.317385 0.882892 1.298366 0.884039 1.298383 0.890341 1.298366 0.884039 1.28006 0.885307 1.280364 0.891472 1.28006 0.885307 1.26253 0.885827 1.262828 0.891744 1.238286 0.886048 1.238412 0.892242 1.262828 0.891744 1.211923 0.885336 1.211652 0.891233 1.238412 0.892242 1.189946 0.883685 1.189112 0.889984 1.211652 0.891233 1.189946 0.883685 1.169553 0.880942 1.168452 0.88735 1.169553 0.880942 1.151348 0.878299 1.150111 0.884856 1.151348 0.878299 1.138159 0.875384 1.136794 0.881933 1.138159 0.875384 1.121121 0.872596 1.120162 0.879136 1.121121 0.872596 1.101825 0.870379 1.101158 0.877484 1.101825 0.870379 1.067677 0.868225 1.067316 0.87595 1.067677 0.868225 1.034924 0.868264 1.034924 0.876078 1.407368 0.935562 1.407284 0.928772 1.36838 0.929495 1.439327 0.935228 1.439327 0.928187 1.407284 0.928772 1.368393 0.935561 1.36838 0.929495 1.339618 0.929807 1.314039 0.935411 1.339662 0.935535 1.339618 0.929807 1.314039 0.935411 1.313857 0.929138 1.29141 0.93029 1.291438 0.936277 1.29141 0.93029 1.270408 0.930741 1.270174 0.936045 1.270408 0.930741 1.249783 0.931036 1.249481 0.934851 1.249783 0.931036 1.227267 0.928706 1.210915 0.930659 1.226971 0.932266 1.227267 0.928706 1.210915 0.930659 1.211124 0.927338 1.195467 0.926804 1.180365 0.930016 1.195288 0.929963 1.195467 0.926804 1.160555 0.929191 1.180365 0.930016 1.180405 0.926322 1.141233 0.929197 1.160555 0.929191 1.160555 0.924747 1.120713 0.929242 1.141233 0.929197 1.14113 0.92403 1.101346 0.929164 1.120713 0.929242 1.12072 0.923511 1.065733 0.928225 1.101346 0.929164 1.10149 0.923187 1.034924 0.927369 1.065733 0.928225 1.065921 0.922064 1.439327 0.890891 1.439327 0.885619 1.406641 0.886525 1.406765 0.891559 1.406641 0.886525 1.371676 0.887664 1.371251 0.892681 1.371676 0.887664 1.342434 0.889404 1.316391 0.894942 1.341995 0.89449 1.342434 0.889404 1.297854 0.89452 1.316391 0.894942 1.316643 0.890341 1.297854 0.89452 1.298383 0.890341 1.280364 0.891472 1.279624 0.895381 1.280364 0.891472 1.262828 0.891744 1.261914 0.89548 1.262828 0.891744 1.238412 0.892242 1.237435 0.896041 1.238412 0.892242 1.211652 0.891233 1.189673 0.894156 1.211607 0.895005 1.211652 0.891233 1.169597 0.891416 1.189673 0.894156 1.189112 0.889984 1.151002 0.889086 1.169597 0.891416 1.168452 0.88735 1.136953 0.886322 1.151002 0.889086 1.150111 0.884856 1.120008 0.883433 1.136953 0.886322 1.136794 0.881933 1.101035 0.881981 1.120008 0.883433 1.120162 0.879136 1.067092 0.880661 1.101035 0.881981 1.101158 0.877484 1.034924 0.880805 1.067092 0.880661 1.067316 0.87595 1.406396 0.878272 1.439327 0.877824 1.439327 0.874711 1.371903 0.879705 1.406396 0.878272 1.406283 0.875591 1.343441 0.881094 1.371903 0.879705 1.371575 0.877154 1.121697 0.870669 1.121121 0.872596 1.138159 0.875384 1.121121 0.872596 1.121697 0.870669 1.102226 0.868202 1.101825 0.870379 1.102226 0.868202 1.067784 0.865706 1.034924 0.868264 1.067677 0.868225 1.067784 0.865706 1.317385 0.882892 1.343441 0.881094 1.343539 0.878406 1.298366 0.884039 1.317385 0.882892 1.317591 0.880538 1.139193 0.87354 1.138159 0.875384 1.151348 0.878299 1.28006 0.885307 1.298366 0.884039 1.298063 0.882169 1.26253 0.885827 1.28006 0.885307 1.279407 0.883388 1.238286 0.886048 1.26253 0.885827 1.26162 0.884048 1.211923 0.885336 1.238286 0.886048 1.237428 0.883969 1.211923 0.885336 1.212114 0.883258 1.191233 0.881566 1.189946 0.883685 1.191233 0.881566 1.171436 0.879059 1.169553 0.880942 1.171436 0.879059 1.152888 0.876306 1.439327 0.943342 1.439327 0.940992 1.407314 0.941227 1.407291 0.943222 1.407314 0.941227 1.368292 0.940647 1.368411 0.942418 1.368292 0.940647 1.339498 0.940299 1.339614 0.941966 1.339498 0.940299 1.313889 0.940639 1.313936 0.942501 1.313889 0.940639 1.291143 0.941043 1.291133 0.942672 1.291143 0.941043 1.269732 0.940306 1.249341 0.939109 1.269695 0.94173 1.269732 0.940306 1.226459 0.936343 1.249341 0.939109 1.249071 0.938017 1.226459 0.936343 1.22651 0.935309 1.210702 0.933447 1.210627 0.934416 1.210702 0.933447 1.195503 0.932797 1.195494 0.933731 1.195503 0.932797 1.180425 0.933413 1.180299 0.934557 1.180425 0.933413 1.160523 0.933327 1.160385 0.934719 1.160523 0.933327 1.141277 0.934013 1.141224 0.935612 1.141277 0.934013 1.120755 0.934577 1.120742 0.936351 1.120755 0.934577 1.101359 0.934731 1.101339 0.936575 1.101359 0.934731 1.065711 0.934049 1.065718 0.935992 1.065711 0.934049 1.034924 0.933349 0.406765 0.891559 0.439327 0.890891 0.439327 0.909539 0.371251 0.892681 0.406765 0.891559 0.407025 0.910165 0.341995 0.89449 0.371251 0.892681 0.369815 0.911088 0.31639 0.894943 0.341995 0.89449 0.340806 0.912149 0.297854 0.89452 0.31639 0.894943 0.315123 0.91204 0.279624 0.895381 0.297854 0.89452 0.294632 0.912405 0.261914 0.89548 0.279624 0.895381 0.275016 0.913061 0.237435 0.896041 0.261914 0.89548 0.255849 0.913258 0.211607 0.895005 0.237435 0.896041 0.232351 0.912373 0.19257 0.91048 0.189673 0.894156 0.211607 0.895005 0.175001 0.908869 0.169597 0.891416 0.189673 0.894156 0.155778 0.906916 0.151002 0.889086 0.169597 0.891416 0.139041 0.905176 0.1369529 0.886322 0.151002 0.889086 0.120364 0.903472 0.120008 0.883433 0.1369529 0.886322 0.101262 0.902584 0.1010349 0.881981 0.120008 0.883433 0.067092 0.880661 0.1010349 0.881981 0.101262 0.902584 0.03492397 0.880805 0.067092 0.880661 0.06650596 0.901362 0.407368 0.935562 0.439327 0.935228 0.439327 0.940992 0.368393 0.935561 0.407368 0.935562 0.407314 0.941227 0.339662 0.935535 0.368393 0.935561 0.368292 0.940647 0.314039 0.935411 0.339662 0.935535 0.339498 0.940299 0.291438 0.936278 0.314039 0.935411 0.313889 0.940639 0.270174 0.936045 0.291438 0.936278 0.291143 0.941043 0.249481 0.934851 0.270174 0.936045 0.269732 0.940306 0.226971 0.932266 0.249481 0.934851 0.249071 0.938017 0.210915 0.930659 0.226971 0.932266 0.22651 0.935309 0.195288 0.929963 0.210915 0.930659 0.210702 0.933447 0.180425 0.933413 0.180365 0.930016 0.195288 0.929963 0.1605229 0.933327 0.160555 0.929191 0.180365 0.930016 0.141277 0.934013 0.141233 0.929197 0.160555 0.929191 0.120755 0.934577 0.120713 0.929242 0.141233 0.929197 0.101359 0.934731 0.101346 0.929164 0.120713 0.929242 0.06571 0.934049 0.06573295 0.928225 0.101346 0.929164 0.03492397 0.933349 0.03492397 0.927369 0.06573295 0.928225 0.439327 0.885619 0.406641 0.886525 0.406396 0.878272 0.406641 0.886525 0.371676 0.887664 0.371903 0.879705 0.371676 0.887664 0.342434 0.889404 0.343441 0.881094 0.343441 0.881094 0.342434 0.889404 0.316643 0.890341 0.317385 0.882892 0.316643 0.890341 0.298384 0.890341 0.298366 0.884039 0.298384 0.890341 0.280364 0.891472 0.28006 0.885308 0.280364 0.891472 0.262828 0.891744 0.26253 0.885827 0.262828 0.891744 0.238412 0.892242 0.238286 0.886048 0.238412 0.892242 0.211652 0.891233 0.211652 0.891233 0.189112 0.889984 0.1899459 0.883685 0.1899459 0.883685 0.189112 0.889984 0.168452 0.88735 0.168452 0.88735 0.150111 0.884856 0.1513479 0.878299 0.1513479 0.878299 0.150111 0.884856 0.136794 0.881933 0.136794 0.881933 0.120162 0.879136 0.121121 0.872596 0.120162 0.879136 0.101158 0.877484 0.1018249 0.870379 0.101158 0.877484 0.06731599 0.87595 0.06767696 0.868225 0.06731599 0.87595 0.03492397 0.876078 0.03492397 0.868264 0.36838 0.929495 0.407284 0.928772 0.407368 0.935562 0.439327 0.928187 0.439327 0.935228 0.407368 0.935562 0.339618 0.929807 0.36838 0.929495 0.368393 0.935561 0.313856 0.929138 0.339618 0.929807 0.339662 0.935535 0.29141 0.93029 0.313856 0.929138 0.314039 0.935411 0.270408 0.930741 0.29141 0.93029 0.291438 0.936278 0.249783 0.931036 0.270408 0.930741 0.270174 0.936045 0.227267 0.928706 0.249783 0.931036 0.249481 0.934851 0.211125 0.927338 0.227267 0.928706 0.226971 0.932266 0.1954669 0.926804 0.211125 0.927338 0.210915 0.930659 0.180405 0.926322 0.1954669 0.926804 0.195288 0.929963 0.160555 0.929191 0.160555 0.924747 0.180405 0.926322 0.141233 0.929197 0.14113 0.92403 0.160555 0.924747 0.120713 0.929242 0.12072 0.923511 0.14113 0.92403 0.101346 0.929164 0.101489 0.923187 0.12072 0.923511 0.06573295 0.928225 0.065921 0.922064 0.101489 0.923187 0.065921 0.922064 0.06573295 0.928225 0.03492397 0.927369 0.406641 0.886525 0.439327 0.885619 0.439327 0.890891 0.371676 0.887664 0.406641 0.886525 0.406765 0.891559 0.342434 0.889404 0.371676 0.887664 0.371251 0.892681 0.31639 0.894943 0.316643 0.890341 0.342434 0.889404 0.297854 0.89452 0.298384 0.890341 0.316643 0.890341 0.280364 0.891472 0.298384 0.890341 0.297854 0.89452 0.262828 0.891744 0.280364 0.891472 0.279624 0.895381 0.238412 0.892242 0.262828 0.891744 0.261914 0.89548 0.211652 0.891233 0.238412 0.892242 0.237435 0.896041 0.189673 0.894156 0.189112 0.889984 0.211652 0.891233 0.169597 0.891416 0.168452 0.88735 0.189112 0.889984 0.151002 0.889086 0.150111 0.884856 0.168452 0.88735 0.1369529 0.886322 0.136794 0.881933 0.150111 0.884856 0.120008 0.883433 0.120162 0.879136 0.136794 0.881933 0.1010349 0.881981 0.101158 0.877484 0.120162 0.879136 0.06731599 0.87595 0.101158 0.877484 0.1010349 0.881981 0.03492397 0.876078 0.06731599 0.87595 0.067092 0.880661 0.406396 0.878272 0.406283 0.875591 0.439327 0.874711 0.371903 0.879705 0.371575 0.877154 0.406283 0.875591 0.343441 0.881094 0.343539 0.878406 0.371575 0.877154 0.138159 0.875384 0.121121 0.872596 0.121697 0.870669 0.102226 0.868202 0.121697 0.870669 0.121121 0.872596 0.06778395 0.865706 0.102226 0.868202 0.1018249 0.870379 0.03492397 0.865263 0.06778395 0.865706 0.06767696 0.868225 0.317385 0.882892 0.317591 0.880538 0.343539 0.878406 0.298366 0.884039 0.298063 0.882169 0.317591 0.880538 0.1513479 0.878299 0.138159 0.875384 0.1391929 0.87354 0.28006 0.885308 0.279407 0.883388 0.298063 0.882169 0.26253 0.885827 0.26162 0.884048 0.279407 0.883388 0.238286 0.886048 0.237428 0.883969 0.26162 0.884048 0.211923 0.885336 0.212114 0.883258 0.237428 0.883969 0.191233 0.881566 0.212114 0.883258 0.211923 0.885336 0.171436 0.879059 0.191233 0.881566 0.1899459 0.883685 0.169553 0.880942 0.1513479 0.878299 0.152888 0.876306 0.407291 0.943222 0.407314 0.941227 0.439327 0.940992 0.368411 0.942418 0.368292 0.940647 0.407314 0.941227 0.339498 0.940299 0.368292 0.940647 0.368411 0.942418 0.313889 0.940639 0.339498 0.940299 0.339614 0.941966 0.291143 0.941043 0.313889 0.940639 0.313936 0.942501 0.269732 0.940306 0.291143 0.941043 0.291133 0.942672 0.249341 0.939109 0.249071 0.938017 0.269732 0.940306 0.22651 0.935309 0.249071 0.938017 0.249341 0.939109 0.210702 0.933447 0.22651 0.935309 0.226459 0.936343 0.1954939 0.933731 0.1955029 0.932797 0.210702 0.933447 0.180425 0.933413 0.1955029 0.932797 0.1954939 0.933731 0.1605229 0.933327 0.180425 0.933413 0.180299 0.934557 0.141277 0.934013 0.1605229 0.933327 0.160385 0.934719 0.120755 0.934577 0.141277 0.934013 0.141224 0.935612 0.101339 0.936575 0.101359 0.934731 0.120755 0.934577 0.06571698 0.935992 0.06571 0.934049 0.101359 0.934731 0.03492397 0.935726 0.03492397 0.933349 0.06571 0.934049 0.407025 0.910165 0.439327 0.909539 0.439327 0.928187 0.369815 0.911088 0.407025 0.910165 0.407284 0.928772 0.340806 0.912149 0.369815 0.911088 0.36838 0.929495 0.315123 0.91204 0.340806 0.912149 0.339618 0.929807 0.294632 0.912405 0.315123 0.91204 0.313856 0.929138 0.275016 0.913061 0.294632 0.912405 0.29141 0.93029 0.255849 0.913258 0.275016 0.913061 0.270408 0.930741 0.232351 0.912373 0.255849 0.913258 0.249783 0.931036 0.2113659 0.911172 0.232351 0.912373 0.227267 0.928706 0.1954669 0.926804 0.19257 0.91048 0.2113659 0.911172 0.180405 0.926322 0.175001 0.908869 0.19257 0.91048 0.160555 0.924747 0.155778 0.906916 0.175001 0.908869 0.14113 0.92403 0.139041 0.905176 0.155778 0.906916 0.12072 0.923511 0.120364 0.903472 0.139041 0.905176 0.101489 0.923187 0.101262 0.902584 0.120364 0.903472 0.065921 0.922064 0.06650596 0.901362 0.101262 0.902584 0.03492397 0.900869 0.06650596 0.901362 0.065921 0.922064 1.034924 0.922094 1.065921 0.922064 1.066507 0.901362 1.065921 0.922064 1.10149 0.923187 1.101262 0.902584 1.10149 0.923187 1.12072 0.923511 1.120364 0.903472 1.12072 0.923511 1.14113 0.92403 1.139041 0.905176 1.14113 0.92403 1.160555 0.924747 1.155779 0.906916 1.160555 0.924747 1.180405 0.926322 1.175001 0.908869 1.180405 0.926322 1.195467 0.926804 1.19257 0.91048 1.195467 0.926804 1.211124 0.927338 1.211365 0.911171 1.227267 0.928706 1.232351 0.912374 1.211365 0.911171 1.249783 0.931036 1.255849 0.913258 1.232351 0.912374 1.270408 0.930741 1.275016 0.913061 1.255849 0.913258 1.29141 0.93029 1.294632 0.912405 1.275016 0.913061 1.313857 0.929138 1.315124 0.91204 1.294632 0.912405 1.313857 0.929138 1.339618 0.929807 1.340806 0.912149 1.36838 0.929495 1.369815 0.911088 1.340806 0.912149 1.407284 0.928772 1.407025 0.910165 1.369815 0.911088 1.439327 0.928187 1.439327 0.909539 1.407025 0.910165 1.439327 0.834756 1.404392 0.835858 1.405594 0.858941 1.404392 0.835858 1.363748 0.837033 1.369718 0.86004 1.254198 0.85007 1.22944 0.848907 1.234051 0.866975 1.22944 0.848907 1.21562 0.848179 1.213801 0.865414 1.213801 0.865414 1.21562 0.848179 1.203304 0.846835 1.197881 0.863732 1.203304 0.846835 1.191313 0.846641 1.12594 0.855453 1.133358 0.832872 1.111621 0.82707 1.105428 0.851944 1.111621 0.82707 1.071654 0.82063 1.311156 0.847856 1.289581 0.850924 1.295155 0.869269 1.143497 0.859032 1.154951 0.839271 1.133358 0.832872 1.289581 0.850924 1.269612 0.852016 1.275352 0.870581 1.160008 0.861139 1.173141 0.844182 1.154951 0.839271 1.269612 0.852016 1.254198 0.85007 1.258682 0.869108 1.179018 0.86451 1.191313 0.846641 1.173141 0.844182 1.363748 0.837033 1.335639 0.840714 1.340502 0.861627 1.068994 0.846823 1.071654 0.82063 1.034924 0.817077 1.311156 0.847856 1.315566 0.866259 1.340502 0.861627 1.439327 0.943342 1.407291 0.943222 1.406905 0.962587 1.407291 0.943222 1.368411 0.942418 1.369226 0.960907 1.368411 0.942418 1.339614 0.941966 1.341177 0.959556 1.341177 0.959556 1.339614 0.941966 1.313936 0.942501 1.313936 0.942501 1.291133 0.942672 1.291345 0.95908 1.291133 0.942672 1.269695 0.94173 1.269143 0.95667 1.269695 0.94173 1.249341 0.939109 1.251632 0.952677 1.249341 0.939109 1.226459 0.936343 1.226029 0.948478 1.226459 0.936343 1.210627 0.934416 1.209621 0.946427 1.209621 0.946427 1.210627 0.934416 1.195494 0.933731 1.194531 0.945622 1.195494 0.933731 1.180299 0.934557 1.179483 0.946925 1.180299 0.934557 1.160385 0.934719 1.159949 0.948761 1.160385 0.934719 1.141224 0.935612 1.141609 0.951204 1.141224 0.935612 1.120742 0.936351 1.121169 0.953398 1.120742 0.936351 1.101339 0.936575 1.101211 0.954574 1.101339 0.936575 1.065718 0.935992 1.065774 0.954834 1.065718 0.935992 1.034924 0.935726 0.405594 0.858941 0.404392 0.835858 0.439327 0.834756 0.369718 0.86004 0.363748 0.837033 0.404392 0.835858 0.234051 0.866975 0.22944 0.848907 0.254198 0.85007 0.213801 0.865414 0.215619 0.848179 0.22944 0.848907 0.213801 0.865414 0.197881 0.863732 0.2033039 0.846835 0.197881 0.863732 0.179018 0.86451 0.191313 0.846641 0.12594 0.855453 0.105428 0.851944 0.111621 0.82707 0.06899398 0.846823 0.07165396 0.82063 0.111621 0.82707 0.311156 0.847856 0.315566 0.866259 0.295155 0.869269 0.133358 0.832872 0.154951 0.839271 0.143497 0.859032 0.289581 0.850924 0.295155 0.869269 0.275352 0.870581 0.154951 0.839271 0.173141 0.844182 0.160008 0.861139 0.269612 0.852016 0.275352 0.870581 0.258682 0.869108 0.179018 0.86451 0.160008 0.861139 0.173141 0.844182 0.340502 0.861627 0.335639 0.840714 0.363748 0.837033 0.03492397 0.84476 0.03492397 0.817077 0.07165396 0.82063 0.335639 0.840714 0.340502 0.861627 0.315566 0.866259 0.439327 0.963446 0.406905 0.962587 0.407291 0.943222 0.369226 0.960907 0.368411 0.942418 0.407291 0.943222 0.341177 0.959556 0.339614 0.941966 0.368411 0.942418 0.341177 0.959556 0.315021 0.96017 0.313936 0.942501 0.291345 0.95908 0.291133 0.942672 0.313936 0.942501 0.269143 0.95667 0.269695 0.94173 0.291133 0.942672 0.251632 0.952677 0.249341 0.939109 0.269695 0.94173 0.226029 0.948477 0.226459 0.936343 0.249341 0.939109 0.209621 0.946427 0.210627 0.934416 0.226459 0.936343 0.194531 0.945622 0.1954939 0.933731 0.210627 0.934416 0.194531 0.945622 0.1794829 0.946925 0.180299 0.934557 0.1794829 0.946925 0.159949 0.948761 0.160385 0.934719 0.159949 0.948761 0.141609 0.951204 0.141224 0.935612 0.141609 0.951204 0.121169 0.953398 0.120742 0.936351 0.121169 0.953398 0.101211 0.954574 0.101339 0.936575 0.101211 0.954574 0.06577396 0.954834 0.06571698 0.935992 0.03492397 0.955386 0.03492397 0.935726 0.06571698 0.935992 1.439327 0.874711 1.439327 0.858027 1.405594 0.858941 1.371575 0.877154 1.406283 0.875591 1.405594 0.858941 1.343539 0.878406 1.371575 0.877154 1.369718 0.86004 1.315566 0.866259 1.317591 0.880538 1.343539 0.878406 1.298063 0.882169 1.317591 0.880538 1.315566 0.866259 1.279407 0.883388 1.298063 0.882169 1.295155 0.869269 1.26162 0.884048 1.279407 0.883388 1.275352 0.870581 1.237428 0.883969 1.26162 0.884048 1.258682 0.869108 1.212114 0.883258 1.237428 0.883969 1.234051 0.866975 1.212114 0.883258 1.213801 0.865414 1.197881 0.863732 1.191233 0.881566 1.197881 0.863732 1.179018 0.86451 1.171436 0.879059 1.179018 0.86451 1.160008 0.861139 1.152888 0.876306 1.160008 0.861139 1.143497 0.859032 1.139193 0.87354 1.143497 0.859032 1.12594 0.855453 1.121697 0.870669 1.12594 0.855453 1.105428 0.851944 1.102226 0.868202 1.105428 0.851944 1.068994 0.846823 1.067784 0.865706 1.068994 0.846823 1.034924 0.84476 0.406283 0.875591 0.405594 0.858941 0.439327 0.858027 0.371575 0.877154 0.369718 0.86004 0.405594 0.858941 0.343539 0.878406 0.340502 0.861627 0.369718 0.86004 0.340502 0.861627 0.343539 0.878406 0.317591 0.880538 0.315566 0.866259 0.317591 0.880538 0.298063 0.882169 0.295155 0.869269 0.298063 0.882169 0.279407 0.883388 0.275352 0.870581 0.279407 0.883388 0.26162 0.884048 0.237428 0.883969 0.234051 0.866975 0.258682 0.869108 0.212114 0.883258 0.213801 0.865414 0.234051 0.866975 0.197881 0.863732 0.213801 0.865414 0.212114 0.883258 0.179018 0.86451 0.197881 0.863732 0.191233 0.881566 0.160008 0.861139 0.179018 0.86451 0.171436 0.879059 0.143497 0.859032 0.160008 0.861139 0.152888 0.876306 0.12594 0.855453 0.143497 0.859032 0.1391929 0.87354 0.105428 0.851944 0.12594 0.855453 0.121697 0.870669 0.06899398 0.846823 0.105428 0.851944 0.102226 0.868202 0.03492397 0.865263 0.03492397 0.84476 0.06899398 0.846823 0.712186 0.956682 0.748483 0.98959 0.742497 0.99468 0.677234 0.930585 0.712186 0.956682 0.708191 0.963129 0.645055 0.91094 0.677234 0.930585 0.674316 0.937346 0.611231 0.896164 0.645055 0.91094 0.642599 0.917483 0.579184 0.887491 0.611231 0.896164 0.608837 0.902387 0.550705 0.88303 0.579184 0.887491 0.576899 0.89357 0.520366 0.881647 0.550705 0.88303 0.548498 0.888804 0.461426 0.882087 0.487584 0.881091 0.487269 0.886967 0.740583 0.915656 0.784389 0.949567 0.776141 0.959735 0.788883 0.942899 0.784389 0.949567 0.740583 0.915656 0.740583 0.915656 0.734218 0.926412 0.69587 0.900088 0.740583 0.915656 0.702227 0.890434 0.709005 0.88481 0.667781 0.871973 0.702227 0.890434 0.69587 0.900088 0.702227 0.890434 0.667781 0.871973 0.670939 0.863734 0.627679 0.855247 0.667781 0.871973 0.662088 0.880826 0.667781 0.871973 0.627679 0.855247 0.630822 0.84681 0.59021 0.845346 0.627679 0.855247 0.623808 0.864653 0.627679 0.855247 0.59021 0.845346 0.592889 0.836943 0.557807 0.840391 0.59021 0.845346 0.587664 0.855048 0.59021 0.845346 0.557807 0.840391 0.5595 0.832044 0.524056 0.837002 0.557807 0.840391 0.556188 0.850118 0.557807 0.840391 0.524056 0.837002 0.525053 0.828491 0.458945 0.834404 0.487908 0.835317 0.487636 0.845716 0.487908 0.835317 0.458945 0.834404 0.460238 0.825594 0.727549 0.936585 0.767621 0.969542 0.748483 0.98959 0.690079 0.909923 0.727549 0.936585 0.712186 0.956682 0.655614 0.890448 0.690079 0.909923 0.677234 0.930585 0.619317 0.875669 0.655614 0.890448 0.645055 0.91094 0.584562 0.866361 0.619317 0.875669 0.611231 0.896164 0.554014 0.861595 0.584562 0.866361 0.579184 0.887491 0.521891 0.859116 0.554014 0.861595 0.550705 0.88303 0.459682 0.858147 0.487419 0.858053 0.487584 0.881091 0.734218 0.926412 0.776141 0.959735 0.767621 0.969542 0.69587 0.900088 0.734218 0.926412 0.727549 0.936585 0.662088 0.880826 0.69587 0.900088 0.690079 0.909923 0.623808 0.864653 0.662088 0.880826 0.655614 0.890448 0.587664 0.855048 0.623808 0.864653 0.619317 0.875669 0.556188 0.850118 0.587664 0.855048 0.584562 0.866361 0.52322 0.84707 0.556188 0.850118 0.554014 0.861595 0.458976 0.845289 0.487636 0.845716 0.487419 0.858053 0.524056 0.837002 0.487908 0.835317 0.488832 0.826853 0.487908 0.835317 0.524056 0.837002 0.52322 0.84707 0.487584 0.881091 0.520366 0.881647 0.518747 0.887486 0.487419 0.858053 0.521891 0.859116 0.520366 0.881647 0.487636 0.845716 0.52322 0.84707 0.521891 0.859116 0.07815295 0.547649 0.07815295 0.570028 0.06034499 0.565856 0.04046696 0.53845 0.03776699 0.560956 0.01529997 0.554434 1.137454 0.530652 1.141006 0.554434 1.164351 0.549417 0.07815295 0.570028 0.07815295 0.591459 0.06002497 0.58869 0.03776699 0.560956 0.03644496 0.584704 0.01377296 0.580315 1.167182 0.578459 1.164351 0.549417 1.141006 0.554434 1.222709 0.547572 1.223808 0.511171 1.193034 0.518628 1.301708 0.516872 1.338907 0.534199 1.342324 0.52719 1.263667 0.503828 1.301708 0.516872 1.303619 0.509134 1.224513 0.497461 1.263667 0.503828 1.263767 0.49608 1.224513 0.497461 1.224932 0.489899 1.185727 0.48985 1.161015 0.523695 1.193034 0.518628 1.185727 0.48985 1.161015 0.523695 1.153331 0.4969 1.129469 0.506655 0.01885294 0.530652 0.026838 0.506655 0.04650598 0.516804 0.06103497 0.544369 0.06432598 0.522419 0.07815295 0.520609 1.308283 0.59738 1.283393 0.598536 1.286704 0.627634 1.283393 0.598536 1.253697 0.599553 1.25642 0.633828 1.253697 0.599553 1.22296 0.600519 1.228936 0.636288 1.22296 0.600519 1.193892 0.602695 1.199185 0.63784 1.193892 0.602695 1.167706 0.60557 1.169663 0.638019 1.167706 0.60557 1.144232 0.608246 1.146589 0.63861 0.01207494 0.608246 0.03590095 0.61057 0.03309899 0.639527 0.05981194 0.612293 0.07815295 0.613371 0.07815295 0.637053 1.314022 0.619924 1.286704 0.627634 1.308431 0.679891 1.286704 0.627634 1.25642 0.633828 1.276734 0.693036 1.25642 0.633828 1.228936 0.636288 1.236955 0.677253 1.228936 0.636288 1.199185 0.63784 1.20394 0.662677 0.03204494 0.65864 0.006424963 0.661487 0.009716987 0.63861 0.05862599 0.638172 0.07815295 0.637053 0.07815295 0.654012 0.06103497 0.544369 0.06034499 0.565856 0.03776699 0.560956 0.06034499 0.565856 0.06002497 0.58869 0.03644496 0.584704 0.05862599 0.638172 0.03309899 0.639527 0.03590095 0.61057 0.057181 0.655805 0.03204494 0.65864 0.03309899 0.639527 0.04046696 0.53845 0.04650598 0.516804 0.06432598 0.522419 1.236955 0.677253 1.20394 0.662677 1.207246 0.679195 1.281068 0.797495 1.300877 0.807383 1.30808 0.794982 1.300877 0.807383 1.321886 0.822484 1.32472 0.811034 1.321886 0.822484 1.343172 0.830729 1.3465 0.82083 1.221738 0.816443 1.214603 0.812332 1.210737 0.832136 1.227061 0.801299 1.214104 0.786495 1.214603 0.812332 1.227061 0.801299 1.240299 0.79009 1.235251 0.776053 1.261732 0.770926 1.235251 0.776053 1.240299 0.79009 1.261732 0.770926 1.258777 0.789512 1.281068 0.797495 0.05701899 0.674097 0.07815295 0.668842 0.07815295 0.689057 1.168134 0.698022 1.169883 0.683213 1.145469 0.682638 0.05580997 0.692325 0.03504496 0.69663 0.03499698 0.678267 0.05580997 0.692325 0.07815295 0.689057 0.07815295 0.705416 0.07815295 0.728375 0.056005 0.72735 0.05587399 0.707348 0.05587399 0.707348 0.03558498 0.711037 0.03504496 0.69663 0.056005 0.72735 0.03682398 0.727344 0.03558498 0.711037 1.168134 0.698022 1.142576 0.698498 1.141643 0.713061 1.140944 0.72837 1.1679 0.728795 1.168387 0.712993 1.276734 0.693036 1.236955 0.677253 1.243918 0.704929 1.250302 0.723842 1.276734 0.693036 1.243918 0.704929 1.209407 0.695069 1.2106 0.71091 1.243918 0.704929 1.236955 0.677253 1.207246 0.679195 1.209407 0.695069 1.1679 0.728795 1.140944 0.72837 1.139288 0.740037 0.056005 0.72735 0.056921 0.740427 0.03716999 0.738487 0.07815295 0.728375 0.07815295 0.74486 0.056921 0.740427 1.212366 0.730364 1.1679 0.728795 1.171407 0.746194 1.276734 0.693036 1.250302 0.723842 1.255364 0.735939 1.308431 0.679891 1.276734 0.693036 1.302206 0.728239 1.308431 0.679891 1.327469 0.712135 1.353355 0.696007 1.250302 0.723842 1.212366 0.730364 1.214991 0.743293 0.03682398 0.727344 0.03716999 0.738487 0.01701796 0.740037 0.03682398 0.727344 0.01536196 0.72837 0.01466298 0.713061 0.01372998 0.698498 0.03504496 0.69663 0.03558498 0.711037 0.01083695 0.682638 0.03499698 0.678267 0.03504496 0.69663 1.302206 0.728239 1.255364 0.735939 1.259851 0.745743 1.255364 0.735939 1.214991 0.743293 1.221466 0.75282 1.259851 0.745743 1.221466 0.75282 1.228551 0.764063 1.295705 0.745065 1.259851 0.745743 1.261282 0.757884 1.214991 0.743293 1.171407 0.746194 1.191432 0.759281 1.221466 0.75282 1.191432 0.759281 1.20536 0.772634 1.228551 0.764063 1.20536 0.772634 1.214104 0.786495 1.261282 0.757884 1.228551 0.764063 1.235251 0.776053 1.293952 0.760115 1.261282 0.757884 1.261732 0.770926 1.243918 0.704929 1.2106 0.71091 1.212366 0.730364 0.057181 0.655805 0.07815295 0.654012 0.07815295 0.668842 0.05701899 0.674097 0.03499698 0.678267 0.03204494 0.65864 0.03204494 0.65864 0.03499698 0.678267 0.01083695 0.682638 1.169883 0.683213 1.17223 0.664053 1.149882 0.661487 1.17223 0.664053 1.20394 0.662677 1.199185 0.63784 1.207246 0.679195 1.20394 0.662677 1.17223 0.664053 1.1679 0.728795 1.212366 0.730364 1.2106 0.71091 1.209407 0.695069 1.207246 0.679195 1.169883 0.683213 1.2106 0.71091 1.209407 0.695069 1.168134 0.698022 1.260668 0.519051 1.223808 0.511171 1.222709 0.547572 1.192369 0.5483 1.19162 0.557685 1.222411 0.56067 1.222411 0.56067 1.254441 0.566266 1.255953 0.555054 1.263667 0.503828 1.224513 0.497461 1.223808 0.511171 1.288084 0.56313 1.255953 0.555054 1.254441 0.566266 1.315626 0.573958 1.288084 0.56313 1.285508 0.572306 1.295397 0.530986 1.260668 0.519051 1.255953 0.555054 1.330628 0.546567 1.295397 0.530986 1.288084 0.56313 1.301708 0.516872 1.263667 0.503828 1.260668 0.519051 1.338907 0.534199 1.301708 0.516872 1.295397 0.530986 1.222411 0.56067 1.19162 0.557685 1.191435 0.579754 1.254441 0.566266 1.222411 0.56067 1.222625 0.580515 1.285508 0.572306 1.254441 0.566266 1.254158 0.583063 1.311831 0.580991 1.285508 0.572306 1.284104 0.585599 0.06002497 0.58869 0.07815295 0.591459 0.07815295 0.613371 0.06002497 0.58869 0.05981194 0.612293 0.03590095 0.61057 0.03644496 0.584704 0.03590095 0.61057 0.01207494 0.608246 1.167706 0.60557 1.167182 0.578459 1.142534 0.580315 1.191435 0.579754 1.167182 0.578459 1.167706 0.60557 1.222625 0.580515 1.191435 0.579754 1.193892 0.602695 1.254158 0.583063 1.222625 0.580515 1.22296 0.600519 1.284104 0.585599 1.254158 0.583063 1.253697 0.599553 1.309069 0.589389 1.284104 0.585599 1.283393 0.598536 1.224513 0.497461 1.193034 0.518628 1.223808 0.511171 1.19162 0.557685 1.164351 0.549417 1.167182 0.578459 1.192369 0.5483 1.164351 0.549417 1.19162 0.557685 1.192369 0.5483 1.193034 0.518628 1.161015 0.523695 1.149882 0.661487 1.17223 0.664053 1.169663 0.638019 0.09527099 0.544368 0.09596097 0.565856 0.07815295 0.570028 0.1410059 0.554434 0.11854 0.560956 0.115839 0.53845 0.164351 0.549417 0.1410059 0.554434 0.137454 0.530652 0.09628099 0.58869 0.07815295 0.591459 0.07815295 0.570028 0.142534 0.580315 0.119862 0.584704 0.11854 0.560956 0.1410059 0.554434 0.164351 0.549417 0.167182 0.578459 0.222709 0.547572 0.1923699 0.5483 0.1930339 0.518628 0.303619 0.509134 0.342324 0.52719 0.338907 0.534199 0.263767 0.49608 0.303619 0.509134 0.301709 0.516872 0.224932 0.489899 0.263767 0.49608 0.263667 0.503828 0.185727 0.48985 0.224932 0.489899 0.2245129 0.497461 0.153331 0.4969 0.185727 0.48985 0.1930339 0.518628 0.129469 0.506655 0.153331 0.4969 0.161015 0.523695 0.1098 0.516804 0.129469 0.506655 0.137454 0.530652 0.07815295 0.547649 0.07815295 0.520609 0.09198099 0.52242 0.308283 0.59738 0.314022 0.619924 0.286704 0.627634 0.283393 0.598536 0.286704 0.627634 0.25642 0.633828 0.253697 0.599553 0.25642 0.633828 0.228936 0.636288 0.2229599 0.600519 0.228936 0.636288 0.199185 0.63784 0.199185 0.63784 0.169664 0.638019 0.167706 0.60557 0.169664 0.638019 0.146589 0.63861 0.144232 0.608246 0.144232 0.608246 0.146589 0.63861 0.123207 0.639527 0.09768098 0.638172 0.07815295 0.637053 0.07815295 0.613371 0.314022 0.619924 0.336248 0.666586 0.308431 0.679891 0.286704 0.627634 0.308431 0.679891 0.276734 0.693036 0.25642 0.633828 0.276734 0.693036 0.236955 0.677253 0.20394 0.662677 0.199185 0.63784 0.228936 0.636288 0.146589 0.63861 0.149882 0.661487 0.124261 0.65864 0.09912598 0.655805 0.07815295 0.654012 0.07815295 0.637053 0.09527099 0.544368 0.115839 0.53845 0.11854 0.560956 0.09596097 0.565856 0.11854 0.560956 0.119862 0.584704 0.120405 0.61057 0.123207 0.639527 0.09768098 0.638172 0.123207 0.639527 0.124261 0.65864 0.09912598 0.655805 0.09527099 0.544368 0.09198099 0.52242 0.1098 0.516804 0.236955 0.677253 0.207246 0.679195 0.20394 0.662677 0.281068 0.797495 0.296076 0.774514 0.30808 0.794982 0.300877 0.807383 0.30808 0.794982 0.32472 0.811034 0.321886 0.822484 0.32472 0.811034 0.346501 0.82083 0.210737 0.832136 0.214603 0.812332 0.221738 0.816443 0.214603 0.812332 0.214105 0.786495 0.227061 0.801299 0.227061 0.801299 0.214105 0.786495 0.235251 0.776053 0.261732 0.770926 0.258777 0.789512 0.240299 0.79009 0.281068 0.797495 0.258777 0.789512 0.261732 0.770926 0.100497 0.692325 0.07815295 0.689057 0.07815295 0.668842 0.168134 0.698022 0.142576 0.698498 0.14547 0.682638 0.121309 0.678267 0.121262 0.696631 0.100497 0.692325 0.100432 0.707348 0.07815295 0.705416 0.07815295 0.689057 0.07815295 0.705416 0.100432 0.707348 0.100301 0.72735 0.121262 0.696631 0.120722 0.711037 0.100432 0.707348 0.100432 0.707348 0.120722 0.711037 0.119483 0.727344 0.1683869 0.712993 0.141643 0.713061 0.142576 0.698498 0.140944 0.72837 0.141643 0.713061 0.1683869 0.712993 0.276734 0.693036 0.243918 0.704929 0.236955 0.677253 0.250302 0.723842 0.243918 0.704929 0.276734 0.693036 0.243918 0.704929 0.2106 0.71091 0.209407 0.695069 0.236955 0.677253 0.209407 0.695069 0.207246 0.679195 0.1679 0.728795 0.171407 0.746194 0.139288 0.740037 0.100301 0.72735 0.119483 0.727344 0.119137 0.738487 0.09938597 0.740427 0.07815295 0.74486 0.07815295 0.728375 0.212366 0.730364 0.214991 0.743293 0.171407 0.746194 0.276734 0.693036 0.302206 0.728239 0.255364 0.735939 0.308431 0.679891 0.327469 0.712135 0.302206 0.728239 0.336248 0.666586 0.353355 0.696007 0.327469 0.712135 0.250302 0.723842 0.255364 0.735939 0.214991 0.743293 0.140944 0.72837 0.139288 0.740037 0.119137 0.738487 0.120722 0.711037 0.141643 0.713061 0.140944 0.72837 0.142576 0.698498 0.141643 0.713061 0.120722 0.711037 0.142576 0.698498 0.121262 0.696631 0.121309 0.678267 0.302206 0.728239 0.295705 0.745065 0.259851 0.745743 0.255364 0.735939 0.259851 0.745743 0.221466 0.75282 0.259851 0.745743 0.261282 0.757884 0.228551 0.764063 0.295705 0.745065 0.293952 0.760115 0.261282 0.757884 0.214991 0.743293 0.221466 0.75282 0.1914319 0.759281 0.221466 0.75282 0.228551 0.764063 0.2053599 0.772634 0.228551 0.764063 0.235251 0.776053 0.214105 0.786495 0.261282 0.757884 0.261732 0.770926 0.235251 0.776053 0.296076 0.774514 0.261732 0.770926 0.261282 0.757884 0.250302 0.723842 0.212366 0.730364 0.2106 0.71091 0.09928798 0.674097 0.07815295 0.668842 0.07815295 0.654012 0.124261 0.65864 0.121309 0.678267 0.09928798 0.674097 0.14547 0.682638 0.121309 0.678267 0.124261 0.65864 0.149882 0.661487 0.17223 0.664053 0.169883 0.683213 0.17223 0.664053 0.169664 0.638019 0.199185 0.63784 0.17223 0.664053 0.20394 0.662677 0.207246 0.679195 0.1683869 0.712993 0.2106 0.71091 0.212366 0.730364 0.209407 0.695069 0.168134 0.698022 0.169883 0.683213 0.168134 0.698022 0.209407 0.695069 0.2106 0.71091 0.222709 0.547572 0.223808 0.511171 0.260668 0.519051 0.1923699 0.5483 0.222709 0.547572 0.222411 0.56067 0.222411 0.56067 0.222709 0.547572 0.255953 0.555054 0.260668 0.519051 0.223808 0.511171 0.2245129 0.497461 0.254441 0.566266 0.255953 0.555054 0.288084 0.56313 0.311831 0.580991 0.285508 0.572306 0.288084 0.56313 0.295397 0.530986 0.288084 0.56313 0.255953 0.555054 0.330628 0.546567 0.315626 0.573958 0.288084 0.56313 0.295397 0.530986 0.260668 0.519051 0.263667 0.503828 0.330628 0.546567 0.295397 0.530986 0.301709 0.516872 0.222411 0.56067 0.222625 0.580515 0.1914359 0.579754 0.254441 0.566266 0.254158 0.583063 0.222625 0.580515 0.285508 0.572306 0.284104 0.585599 0.254158 0.583063 0.284104 0.585599 0.285508 0.572306 0.311831 0.580991 0.09649395 0.612293 0.07815295 0.613371 0.07815295 0.591459 0.09628099 0.58869 0.119862 0.584704 0.120405 0.61057 0.144232 0.608246 0.120405 0.61057 0.119862 0.584704 0.142534 0.580315 0.167182 0.578459 0.167706 0.60557 0.1914359 0.579754 0.193892 0.602695 0.167706 0.60557 0.222625 0.580515 0.2229599 0.600519 0.193892 0.602695 0.254158 0.583063 0.253697 0.599553 0.2229599 0.600519 0.283393 0.598536 0.253697 0.599553 0.254158 0.583063 0.308283 0.59738 0.283393 0.598536 0.284104 0.585599 0.2245129 0.497461 0.223808 0.511171 0.1930339 0.518628 0.19162 0.557685 0.1914359 0.579754 0.167182 0.578459 0.1923699 0.5483 0.19162 0.557685 0.164351 0.549417 0.1923699 0.5483 0.164351 0.549417 0.161015 0.523695 0.149882 0.661487 0.146589 0.63861 0.169664 0.638019 0.684185 0.448473 0.684644 0.4504 0.67216 0.452416 0.698362 0.444904 0.699988 0.446724 0.684644 0.4504 0.580039 0.418348 0.597071 0.430131 0.59545 0.432328 0.613812 0.439155 0.61241 0.441083 0.59545 0.432328 0.613812 0.439155 0.628372 0.443885 0.627698 0.445845 0.642977 0.447905 0.642615 0.449959 0.627698 0.445845 0.656716 0.450286 0.657049 0.452413 0.642615 0.449959 0.671813 0.450479 0.67216 0.452416 0.657049 0.452413 0.691525 0.485639 0.687291 0.46276 0.70276 0.46016 0.559683 0.464082 0.568838 0.436391 0.588168 0.447451 0.58167 0.474475 0.588168 0.447451 0.606795 0.455683 0.616672 0.483875 0.599803 0.480408 0.606795 0.455683 0.691525 0.485639 0.671702 0.488899 0.671582 0.464747 0.633413 0.486965 0.616672 0.483875 0.623055 0.459856 0.651527 0.489284 0.633413 0.486965 0.638721 0.462852 0.671702 0.488899 0.651527 0.489284 0.655826 0.465276 0.657049 0.452413 0.67216 0.452416 0.671979 0.456415 0.685216 0.454739 0.671979 0.456415 0.67216 0.452416 0.685216 0.454739 0.684644 0.4504 0.699988 0.446724 0.573099 0.424548 0.576825 0.419719 0.59545 0.432328 0.593135 0.437137 0.59545 0.432328 0.61241 0.441083 0.610804 0.445698 0.61241 0.441083 0.627698 0.445845 0.626429 0.450459 0.627698 0.445845 0.642615 0.449959 0.656469 0.456493 0.64149 0.454278 0.642615 0.449959 0.671582 0.464747 0.655826 0.465276 0.656469 0.456493 0.685216 0.454739 0.687291 0.46276 0.671582 0.464747 0.701713 0.451068 0.70276 0.46016 0.687291 0.46276 0.593135 0.437137 0.588168 0.447451 0.568838 0.436391 0.610804 0.445698 0.606795 0.455683 0.588168 0.447451 0.623055 0.459856 0.606795 0.455683 0.610804 0.445698 0.638721 0.462852 0.623055 0.459856 0.626429 0.450459 0.655826 0.465276 0.638721 0.462852 0.64149 0.454278 0.578003 0.602656 0.556493 0.600285 0.559541 0.576889 0.599956 0.599576 0.578003 0.602656 0.582014 0.578793 0.618176 0.601055 0.599956 0.599576 0.602028 0.573868 0.618176 0.601055 0.621861 0.576495 0.643608 0.583228 0.640267 0.608152 0.643608 0.583228 0.662525 0.590924 0.683189 0.618629 0.660186 0.614955 0.662525 0.590924 0.685957 0.593517 0.709639 0.592579 0.707031 0.619288 0.559541 0.576889 0.556493 0.600285 0.53101 0.595081 0.585702 0.561416 0.590199 0.530784 0.607241 0.535696 0.623016 0.558946 0.605103 0.558829 0.607241 0.535696 0.623016 0.558946 0.626711 0.537648 0.646976 0.541759 0.664721 0.569806 0.644356 0.563885 0.646976 0.541759 0.629466 0.511283 0.633413 0.486965 0.651527 0.489284 0.671086 0.514402 0.647418 0.515201 0.651527 0.489284 0.69082 0.507895 0.671086 0.514402 0.671702 0.488899 0.691525 0.485639 0.708179 0.483861 0.711897 0.506194 0.58167 0.474475 0.573663 0.501227 0.549604 0.487352 0.573663 0.501227 0.58167 0.474475 0.599803 0.480408 0.594954 0.508984 0.599803 0.480408 0.616672 0.483875 0.629466 0.511283 0.612165 0.510785 0.616672 0.483875 0.696671 0.568548 0.713439 0.565687 0.709639 0.592579 0.563145 0.556183 0.559541 0.576889 0.534963 0.569663 0.559541 0.576889 0.563145 0.556183 0.585702 0.561416 0.602028 0.573868 0.582014 0.578793 0.585702 0.561416 0.621861 0.576495 0.602028 0.573868 0.605103 0.558829 0.621861 0.576495 0.623016 0.558946 0.644356 0.563885 0.643608 0.583228 0.644356 0.563885 0.664721 0.569806 0.685957 0.593517 0.662525 0.590924 0.664721 0.569806 0.69082 0.507895 0.711897 0.506194 0.714173 0.528495 0.573663 0.501227 0.569172 0.519526 0.541613 0.509198 0.569172 0.519526 0.573663 0.501227 0.594954 0.508984 0.607241 0.535696 0.590199 0.530784 0.594954 0.508984 0.626711 0.537648 0.607241 0.535696 0.612165 0.510785 0.626711 0.537648 0.629466 0.511283 0.647418 0.515201 0.670072 0.538259 0.646976 0.541759 0.647418 0.515201 0.690778 0.531685 0.670072 0.538259 0.671086 0.514402 0.563145 0.556183 0.569172 0.519526 0.590199 0.530784 0.569172 0.519526 0.563145 0.556183 0.536191 0.543871 0.690778 0.531685 0.714173 0.528495 0.713439 0.565687 0.696671 0.568548 0.664721 0.569806 0.670072 0.538259 0.631415 0.785668 0.627169 0.767485 0.64491 0.765116 0.627169 0.767485 0.625275 0.744083 0.643397 0.742154 0.649349 0.782039 0.65602 0.801688 0.636709 0.806371 0.625275 0.744083 0.627446 0.721917 0.645379 0.722447 0.627446 0.721917 0.630298 0.698024 0.647997 0.702013 0.665267 0.642563 0.658222 0.66241 0.641085 0.655244 0.630298 0.698024 0.635432 0.676871 0.651937 0.682814 0.635432 0.676871 0.641085 0.655244 0.658222 0.66241 0.605399 0.790478 0.547027 0.795826 0.546171 0.78903 0.600354 0.748744 0.602901 0.771519 0.542869 0.764278 0.605399 0.790478 0.609109 0.809431 0.554194 0.810919 0.601462 0.721042 0.600354 0.748744 0.538443 0.731227 0.601462 0.721042 0.541182 0.703969 0.542784 0.693267 0.616426 0.647185 0.564778 0.632484 0.566417 0.625455 0.605724 0.691497 0.547962 0.673303 0.550213 0.665189 0.616426 0.647185 0.611861 0.668922 0.55733 0.648587 0.65602 0.801688 0.649349 0.782039 0.657888 0.779106 0.649349 0.782039 0.64491 0.765116 0.653509 0.763442 0.64491 0.765116 0.643397 0.742154 0.652183 0.742489 0.652183 0.742489 0.643397 0.742154 0.645379 0.722447 0.658222 0.66241 0.665267 0.642563 0.672153 0.648896 0.645379 0.722447 0.647997 0.702013 0.656798 0.70287 0.647997 0.702013 0.651937 0.682814 0.660074 0.685379 0.651937 0.682814 0.658222 0.66241 0.665774 0.666385 0.602939 0.748517 0.608954 0.747606 0.610741 0.770449 0.605036 0.771229 0.610741 0.770449 0.614027 0.789138 0.61186 0.810323 0.607957 0.789994 0.614027 0.789138 0.604387 0.721334 0.610577 0.721751 0.608954 0.747606 0.619032 0.647736 0.623688 0.626833 0.630131 0.627141 0.604387 0.721334 0.608514 0.692147 0.614216 0.693827 0.614344 0.669683 0.619605 0.671242 0.614216 0.693827 0.614344 0.669683 0.619032 0.647736 0.624596 0.648992 0.631415 0.785668 0.636709 0.806371 0.618339 0.81068 0.64722 0.634731 0.641085 0.655244 0.624596 0.648992 0.619605 0.671242 0.624596 0.648992 0.641085 0.655244 0.614216 0.693827 0.619605 0.671242 0.635432 0.676871 0.610577 0.721751 0.614216 0.693827 0.630298 0.698024 0.625275 0.744083 0.608954 0.747606 0.610577 0.721751 0.627169 0.767485 0.610741 0.770449 0.608954 0.747606 0.614027 0.789138 0.610741 0.770449 0.627169 0.767485 0.470729 0.680422 0.453459 0.675769 0.460017 0.658347 0.466245 0.703014 0.44852 0.698714 0.453459 0.675769 0.467881 0.638547 0.486391 0.645635 0.477296 0.66423 0.466245 0.703014 0.465607 0.722862 0.447743 0.720989 0.465442 0.74352 0.447333 0.745055 0.447743 0.720989 0.452045 0.788977 0.470067 0.784292 0.47424 0.805001 0.466701 0.763141 0.449498 0.766736 0.447333 0.745055 0.470067 0.784292 0.452045 0.788977 0.449498 0.766736 0.479037 0.683198 0.470729 0.680422 0.477296 0.66423 0.431495 0.668948 0.436803 0.650941 0.443301 0.652708 0.47501 0.703835 0.466245 0.703014 0.470729 0.680422 0.426329 0.69116 0.431495 0.668948 0.437595 0.670656 0.443154 0.631448 0.450256 0.631954 0.443301 0.652708 0.485375 0.668229 0.477296 0.66423 0.486391 0.645635 0.47501 0.703835 0.474536 0.723893 0.465607 0.722862 0.424171 0.718458 0.426329 0.69116 0.432804 0.69306 0.474536 0.723893 0.474302 0.743872 0.465442 0.74352 0.424171 0.718458 0.431029 0.718909 0.430833 0.747004 0.430041 0.814604 0.428484 0.793311 0.434808 0.792819 0.481981 0.799689 0.47424 0.805001 0.470067 0.784292 0.475139 0.761724 0.466701 0.763141 0.465442 0.74352 0.4243 0.747987 0.430833 0.747004 0.433056 0.770099 0.478128 0.781404 0.470067 0.784292 0.466701 0.763141 0.427033 0.770996 0.433056 0.770099 0.434808 0.792819 0.434664 0.650229 0.42969 0.668449 0.376161 0.645518 0.424084 0.690755 0.366886 0.675725 0.368955 0.667703 0.434664 0.650229 0.384226 0.630231 0.386429 0.623761 0.421556 0.718402 0.35933 0.710001 0.360337 0.699984 0.421556 0.718402 0.421771 0.748159 0.359848 0.738012 0.42614 0.79344 0.427652 0.81372 0.373353 0.807626 0.421771 0.748159 0.424755 0.771324 0.363338 0.766461 0.42614 0.79344 0.368594 0.791535 0.368012 0.783616 0.450256 0.631954 0.467881 0.638547 0.460017 0.658347 0.434808 0.792819 0.452045 0.788977 0.455201 0.810215 0.452045 0.788977 0.434808 0.792819 0.433056 0.770099 0.449498 0.766736 0.433056 0.770099 0.430833 0.747004 0.447333 0.745055 0.430833 0.747004 0.431029 0.718909 0.44852 0.698714 0.447743 0.720989 0.431029 0.718909 0.453459 0.675769 0.44852 0.698714 0.432804 0.69306 0.453459 0.675769 0.437595 0.670656 0.443301 0.652708 0.609109 0.809431 0.605399 0.790478 0.607957 0.789994 0.602901 0.771519 0.605036 0.771229 0.607957 0.789994 0.602901 0.771519 0.600354 0.748744 0.602939 0.748517 0.600354 0.748744 0.601462 0.721042 0.604387 0.721334 0.620863 0.627397 0.623688 0.626833 0.619032 0.647736 0.601462 0.721042 0.605724 0.691497 0.608514 0.692147 0.611861 0.668922 0.614344 0.669683 0.608514 0.692147 0.611861 0.668922 0.616426 0.647185 0.619032 0.647736 0.42969 0.668449 0.434664 0.650229 0.436803 0.650941 0.436803 0.650941 0.434664 0.650229 0.440657 0.63193 0.42969 0.668449 0.431495 0.668948 0.426329 0.69116 0.424084 0.690755 0.426329 0.69116 0.424171 0.718458 0.428484 0.793311 0.430041 0.814604 0.427652 0.81372 0.421556 0.718402 0.424171 0.718458 0.4243 0.747987 0.424755 0.771324 0.421771 0.748159 0.4243 0.747987 0.428484 0.793311 0.42614 0.79344 0.424755 0.771324 0.470029 0.580469 0.490914 0.58425 0.488343 0.605929 0.448522 0.595114 0.452899 0.570961 0.470029 0.580469 0.431378 0.592004 0.433916 0.568484 0.452899 0.570961 0.412139 0.569578 0.433916 0.568484 0.431378 0.592004 0.392938 0.572476 0.412139 0.569578 0.40944 0.593191 0.367918 0.591357 0.371303 0.570071 0.392938 0.572476 0.371303 0.570071 0.367918 0.591357 0.347129 0.588524 0.512096 0.606536 0.488343 0.605929 0.490914 0.58425 0.457928 0.533887 0.475224 0.533658 0.471001 0.563762 0.437119 0.551823 0.439062 0.530668 0.457928 0.533887 0.418664 0.529674 0.439062 0.530668 0.437119 0.551823 0.395201 0.552437 0.397527 0.52081 0.418664 0.529674 0.424787 0.503973 0.427659 0.477265 0.446562 0.480272 0.401964 0.497605 0.407036 0.471967 0.427659 0.477265 0.383986 0.487239 0.387311 0.46501 0.407036 0.471967 0.387311 0.46501 0.383986 0.487239 0.362595 0.480083 0.523425 0.504912 0.497569 0.51135 0.498512 0.485532 0.480625 0.484762 0.498512 0.485532 0.497569 0.51135 0.463865 0.482485 0.480625 0.484762 0.476499 0.51245 0.446562 0.480272 0.463865 0.482485 0.460067 0.509356 0.371676 0.544176 0.371303 0.570071 0.350599 0.564204 0.513803 0.583098 0.490914 0.58425 0.493061 0.565106 0.471001 0.563762 0.493061 0.565106 0.490914 0.58425 0.452899 0.570961 0.453857 0.556255 0.471001 0.563762 0.433916 0.568484 0.437119 0.551823 0.453857 0.556255 0.415874 0.551354 0.437119 0.551823 0.433916 0.568484 0.395201 0.552437 0.415874 0.551354 0.412139 0.569578 0.371303 0.570071 0.371676 0.544176 0.395201 0.552437 0.383986 0.487239 0.379465 0.510008 0.356476 0.500791 0.52381 0.525761 0.496888 0.528353 0.497569 0.51135 0.476499 0.51245 0.497569 0.51135 0.496888 0.528353 0.460067 0.509356 0.476499 0.51245 0.475224 0.533658 0.44352 0.506916 0.460067 0.509356 0.457928 0.533887 0.424787 0.503973 0.44352 0.506916 0.439062 0.530668 0.397527 0.52081 0.401964 0.497605 0.424787 0.503973 0.379465 0.510008 0.383986 0.487239 0.401964 0.497605 0.378307 0.437782 0.394891 0.441514 0.387311 0.46501 0.502737 0.459899 0.521854 0.459037 0.520079 0.484015 0.483346 0.459378 0.502737 0.459899 0.498512 0.485532 0.466352 0.456992 0.483346 0.459378 0.480625 0.484762 0.387311 0.46501 0.394891 0.441514 0.412223 0.445894 0.449284 0.453999 0.466352 0.456992 0.463865 0.482485 0.427659 0.477265 0.430009 0.450489 0.449284 0.453999 0.407036 0.471967 0.412223 0.445894 0.430009 0.450489 0.413901 0.430982 0.398828 0.427714 0.399365 0.425674 0.398828 0.427714 0.381599 0.423505 0.383204 0.421711 0.522883 0.443896 0.503628 0.444247 0.503441 0.441708 0.503628 0.444247 0.484623 0.44338 0.484259 0.441048 0.484259 0.441048 0.484623 0.44338 0.467676 0.441405 0.467676 0.441405 0.450503 0.43896 0.450992 0.436776 0.450503 0.43896 0.432915 0.435309 0.434043 0.43308 0.432915 0.435309 0.413901 0.430982 0.41469 0.428819 0.432915 0.435309 0.432175 0.440401 0.413352 0.436009 0.397964 0.432693 0.398828 0.427714 0.413901 0.430982 0.381599 0.423505 0.398828 0.427714 0.397964 0.432693 0.503628 0.444247 0.522883 0.443896 0.523489 0.448914 0.484623 0.44338 0.503628 0.444247 0.503156 0.449238 0.467676 0.441405 0.484623 0.44338 0.483927 0.448416 0.450503 0.43896 0.467676 0.441405 0.466975 0.446526 0.450503 0.43896 0.44978 0.444033 0.432175 0.440401 0.432175 0.440401 0.430009 0.450489 0.412223 0.445894 0.413352 0.436009 0.412223 0.445894 0.394891 0.441514 0.379711 0.428205 0.397964 0.432693 0.394891 0.441514 0.503156 0.449238 0.523489 0.448914 0.521854 0.459037 0.483927 0.448416 0.503156 0.449238 0.502737 0.459899 0.466975 0.446526 0.483927 0.448416 0.483346 0.459378 0.466975 0.446526 0.466352 0.456992 0.449284 0.453999 0.44978 0.444033 0.449284 0.453999 0.430009 0.450489 0.516337 0.560406 0.493061 0.565106 0.496888 0.528353 0.353716 0.539861 0.356476 0.500791 0.379465 0.510008 0.371676 0.544176 0.379465 0.510008 0.397527 0.52081 0.493061 0.565106 0.471001 0.563762 0.475224 0.533658 1.708191 0.963129 1.742497 0.99468 1.748483 0.98959 1.674316 0.937346 1.708191 0.963129 1.712186 0.956682 1.642599 0.917483 1.674316 0.937346 1.677234 0.930585 1.611231 0.896164 1.608837 0.902387 1.642599 0.917483 1.579184 0.887491 1.576899 0.89357 1.608837 0.902387 1.550704 0.88303 1.548498 0.888804 1.576899 0.89357 1.520366 0.881647 1.518747 0.887486 1.548498 0.888804 1.462529 0.888108 1.487269 0.886967 1.487584 0.881091 1.734218 0.926412 1.776141 0.959735 1.784389 0.949567 1.746411 0.91033 1.740583 0.915656 1.784389 0.949567 1.69587 0.900088 1.734218 0.926412 1.740583 0.915656 1.709005 0.88481 1.702227 0.890434 1.740583 0.915656 1.662088 0.880826 1.69587 0.900088 1.702227 0.890434 1.670939 0.863734 1.667781 0.871973 1.702227 0.890434 1.623808 0.864653 1.662088 0.880826 1.667781 0.871973 1.630822 0.84681 1.627679 0.855247 1.667781 0.871973 1.587664 0.855048 1.623808 0.864653 1.627679 0.855247 1.592889 0.836943 1.59021 0.845346 1.627679 0.855247 1.556188 0.850118 1.587664 0.855048 1.59021 0.845346 1.5595 0.832044 1.557807 0.840391 1.59021 0.845346 1.52322 0.84707 1.556188 0.850118 1.557807 0.840391 1.525053 0.828491 1.524056 0.837002 1.557807 0.840391 1.458976 0.845289 1.487636 0.845716 1.487908 0.835317 1.487908 0.835317 1.488832 0.826853 1.460238 0.825594 1.712186 0.956682 1.748483 0.98959 1.767621 0.969542 1.677234 0.930585 1.712186 0.956682 1.727549 0.936585 1.645055 0.91094 1.677234 0.930585 1.690079 0.909923 1.611231 0.896164 1.645055 0.91094 1.655614 0.890448 1.579184 0.887491 1.611231 0.896164 1.619317 0.875669 1.550704 0.88303 1.579184 0.887491 1.584562 0.866361 1.520366 0.881647 1.550704 0.88303 1.554014 0.861595 1.461426 0.882087 1.487584 0.881091 1.487419 0.858053 1.727549 0.936585 1.767621 0.969542 1.776141 0.959735 1.690079 0.909923 1.727549 0.936585 1.734218 0.926412 1.655614 0.890448 1.690079 0.909923 1.69587 0.900088 1.619317 0.875669 1.655614 0.890448 1.662088 0.880826 1.584562 0.866361 1.619317 0.875669 1.623808 0.864653 1.554014 0.861595 1.584562 0.866361 1.587664 0.855048 1.554014 0.861595 1.556188 0.850118 1.52322 0.84707 1.459682 0.858147 1.487419 0.858053 1.487636 0.845716 1.488832 0.826853 1.487908 0.835317 1.524056 0.837002 1.487636 0.845716 1.52322 0.84707 1.524056 0.837002 1.487584 0.881091 1.487269 0.886967 1.518747 0.887486 1.487584 0.881091 1.520366 0.881647 1.521891 0.859116 1.487636 0.845716 1.487419 0.858053 1.521891 0.859116 0.179607 0.331041 0.177425 0.305466 0.198868 0.307426 0.2190459 0.331276 0.1993589 0.330702 0.198868 0.307426 0.2190459 0.331276 0.220337 0.305776 0.243418 0.308768 0.261814 0.338194 0.240633 0.335635 0.243418 0.308768 0.261814 0.338194 0.265646 0.310785 0.287829 0.315878 0.305011 0.34906 0.282799 0.343355 0.287829 0.315878 0.32747 0.355993 0.305011 0.34906 0.311473 0.321964 0.352137 0.365187 0.32747 0.355993 0.335372 0.329289 0.374156 0.375014 0.352137 0.365187 0.361039 0.339173 0.04293596 0.151836 0.02320599 0.1623589 0.01007395 0.142204 0.063434 0.144264 0.04293596 0.151836 0.03078496 0.131547 0.08685898 0.138209 0.063434 0.144264 0.05174398 0.12133 0.08685898 0.138209 0.07584899 0.113219 0.100166 0.106176 0.132973 0.127725 0.109652 0.132989 0.100166 0.106176 0.15541 0.124177 0.132973 0.127725 0.125165 0.09983897 0.178867 0.121419 0.15541 0.124177 0.149115 0.096201 0.178867 0.121419 0.174983 0.09297895 0.201044 0.09371799 0.2252939 0.1199499 0.202222 0.1213369 0.201044 0.09371799 0.2252939 0.1199499 0.22674 0.09202897 0.251103 0.09432798 0.268864 0.123688 0.247509 0.121496 0.251103 0.09432798 0.268864 0.123688 0.273841 0.09663099 0.296829 0.101503 0.312206 0.132081 0.290437 0.127961 0.296829 0.101503 0.33472 0.1372669 0.312206 0.132081 0.320152 0.106366 0.356613 0.144423 0.33472 0.1372669 0.343379 0.111882 0.379018 0.153589 0.356613 0.144423 0.366045 0.119413 0.04535597 0.359945 0.02284896 0.368517 0.01179999 0.342512 0.04535597 0.359945 0.03564298 0.333774 0.06148099 0.32519 0.07017797 0.352036 0.06148099 0.32519 0.08592897 0.319081 0.09312295 0.346273 0.08592897 0.319081 0.109581 0.313801 0.115361 0.341298 0.109581 0.313801 0.132062 0.309552 0.136673 0.336978 0.132062 0.309552 0.154215 0.307959 0.15784 0.334813 0.154215 0.307959 0.177425 0.305466 0.345129 0.179702 0.324951 0.172616 0.335907 0.145442 0.304116 0.166592 0.284175 0.164276 0.291118 0.135555 0.264385 0.160176 0.2442899 0.159502 0.247597 0.130253 0.2242839 0.158193 0.203999 0.159929 0.202758 0.130849 0.179612 0.369073 0.158648 0.372738 0.154422 0.343457 0.13848 0.373272 0.119186 0.377848 0.112085 0.349251 0.07936799 0.388583 0.06799596 0.361013 0.09017497 0.35379 0.05696499 0.396405 0.03843796 0.407668 0.02270996 0.381511 0.324951 0.172616 0.304116 0.166592 0.313385 0.138905 0.2442899 0.159502 0.2242839 0.158193 0.2254379 0.128515 0.13848 0.373272 0.132955 0.344286 0.154422 0.343457 0.05696499 0.396405 0.04367095 0.369819 0.06799596 0.361013 0.345129 0.179702 0.357741 0.153585 0.378563 0.166299 0.284175 0.164276 0.264385 0.160176 0.269286 0.131029 0.179612 0.369073 0.1771219 0.339657 0.199268 0.341556 0.09926795 0.381774 0.09017497 0.35379 0.112085 0.349251 0.05922394 0.186904 0.04012995 0.200829 0.02188497 0.176663 0.102026 0.17148 0.079934 0.178669 0.06575798 0.1525509 0.14305 0.163083 0.122592 0.167959 0.112601 0.139728 0.163303 0.161235 0.1572639 0.1321859 0.179975 0.129564 0.220006 0.369495 0.19982 0.371091 0.199268 0.341556 0.240904 0.373736 0.243991 0.344418 0.265468 0.345542 0.299928 0.384358 0.279999 0.379865 0.286044 0.351225 0.341718 0.401193 0.319398 0.392218 0.329697 0.36459 0.102026 0.17148 0.089688 0.14451 0.112601 0.139728 0.183696 0.1591719 0.179975 0.129564 0.202758 0.130849 0.261025 0.374533 0.265468 0.345542 0.286044 0.351225 0.353925 0.374554 0.374372 0.387309 0.359704 0.413554 0.04330694 0.162208 0.06575798 0.1525509 0.079934 0.178669 0.14305 0.163083 0.135288 0.134185 0.1572639 0.1321859 0.220006 0.369495 0.221414 0.340081 0.243991 0.344418 0.307964 0.356372 0.329697 0.36459 0.319398 0.392218 0.21991 0.375419 0.200136 0.377484 0.19982 0.371091 0.21991 0.375419 0.220006 0.369495 0.240904 0.373736 0.240387 0.379944 0.240904 0.373736 0.261025 0.374533 0.260287 0.380371 0.261025 0.374533 0.279999 0.379865 0.298397 0.390087 0.278859 0.386018 0.279999 0.379865 0.317328 0.398142 0.298397 0.390087 0.299928 0.384358 0.339271 0.406543 0.317328 0.398142 0.319398 0.392218 0.339271 0.406543 0.341718 0.401193 0.359704 0.413554 0.06252896 0.191779 0.04419296 0.205721 0.04012995 0.200829 0.079934 0.178669 0.08303695 0.184137 0.06252896 0.191779 0.08303695 0.184137 0.079934 0.178669 0.102026 0.17148 0.1046 0.17686 0.102026 0.17148 0.122592 0.167959 0.124728 0.1737239 0.122592 0.167959 0.14305 0.163083 0.164756 0.167246 0.144743 0.168752 0.14305 0.163083 0.164756 0.167246 0.163303 0.161235 0.183696 0.1591719 0.203999 0.159929 0.2044669 0.1660889 0.184631 0.165059 0.224252 0.164148 0.2044669 0.1660889 0.203999 0.159929 0.24382 0.16557 0.224252 0.164148 0.2242839 0.158193 0.263664 0.165979 0.24382 0.16557 0.2442899 0.159502 0.283075 0.170254 0.263664 0.165979 0.264385 0.160176 0.302577 0.1722649 0.283075 0.170254 0.284175 0.164276 0.322955 0.178477 0.302577 0.1722649 0.304116 0.166592 0.342773 0.18508 0.322955 0.178477 0.324951 0.172616 0.342773 0.18508 0.345129 0.179702 0.363781 0.192209 0.05997598 0.4016 0.04211997 0.413011 0.03843796 0.407668 0.08205896 0.394364 0.05997598 0.4016 0.05696499 0.396405 0.08205896 0.394364 0.07936799 0.388583 0.09926795 0.381774 0.101389 0.387386 0.09926795 0.381774 0.119186 0.377848 0.13981 0.379039 0.120953 0.383902 0.119186 0.377848 0.13981 0.379039 0.13848 0.373272 0.158648 0.372738 0.180305 0.374984 0.1597869 0.378904 0.158648 0.372738 0.180305 0.374984 0.179612 0.369073 0.19982 0.371091 0.02082395 0.03116899 0.03538697 0.03116899 0.03538697 0.031708 0.02082395 0.03055495 0.03538697 0.03055495 0.03538697 0.03116899 0.02082395 0.02909696 0.03538697 0.02909696 0.03538697 0.02967095 0.02082395 0.02847498 0.03538697 0.02847498 0.03538697 0.02909696 0.02082395 0.03632599 0.02082395 0.03576898 0.03538697 0.03576898 0.02082395 0.03522396 0.03538697 0.03522396 0.03538697 0.03576898 0.02082395 0.03404599 0.02082395 0.03343397 0.03538697 0.03343397 0.02082395 0.03288096 0.03538697 0.03288096 0.03538697 0.03343397 0.02082395 0.03228199 0.03538697 0.03228199 0.03538697 0.03288096 0.02082395 0.031708 0.03538697 0.031708 0.03538697 0.03228199 0.02082395 0.03020596 0.03538697 0.03020596 0.03538697 0.03055495 0.02082395 0.02967095 0.03538697 0.02967095 0.03538697 0.03020596 0.02082395 0.03750497 0.02082395 0.03691399 0.03538697 0.03691399 0.02082395 0.03632599 0.03538697 0.03632599 0.03538697 0.03691399 0.02082395 0.03522396 0.02082395 0.03463196 0.03538697 0.03463196 0.02082395 0.03463196 0.02082395 0.03404599 0.03538697 0.03404599 0.02082395 0.02593296 0.02082395 0.02524596 0.03538697 0.02524596 0.02082395 0.02457696 0.03538697 0.02457696 0.03538697 0.02524596 0.02082395 0.02847498 0.02082395 0.02780699 0.03538697 0.02780699 0.02082395 0.02721297 0.03538697 0.02721297 0.03538697 0.02780699 0.02082395 0.03975999 0.02082395 0.039231 0.03538697 0.039231 0.02082395 0.03867799 0.03538697 0.03867799 0.03538697 0.039231 0.02082395 0.04217898 0.02082395 0.041547 0.03538697 0.041547 0.02082395 0.04091697 0.03538697 0.04091697 0.03538697 0.041547 0.02082395 0.02457696 0.02082395 0.02377796 0.03538697 0.02377694 0.02082395 0.02299696 0.03538697 0.02299696 0.03538697 0.02377694 0.02082395 0.02721297 0.02082395 0.02658694 0.03538697 0.02658694 0.02082395 0.02593296 0.03538697 0.02593296 0.03538697 0.02658694 0.02082395 0.03867799 0.02082395 0.038091 0.03538697 0.038091 0.02082395 0.03750497 0.03538697 0.03750497 0.03538697 0.038091 0.02082395 0.04034399 0.03538697 0.04034399 0.03538697 0.04091697 0.02082395 0.03975999 0.03538697 0.03975999 0.03538697 0.04034399 0.03538697 0.03116899 0.06518298 0.03116899 0.06518298 0.031708 0.03538697 0.03055495 0.06518298 0.03055495 0.06518298 0.03116899 0.03538697 0.02909696 0.06518298 0.02909696 0.06518298 0.02967095 0.03538697 0.02847498 0.06518298 0.02847498 0.06518298 0.02909696 0.03538697 0.03632599 0.03538697 0.03576898 0.06518298 0.03576898 0.03538697 0.03522396 0.06518298 0.03522396 0.06518298 0.03576898 0.03538697 0.03404599 0.03538697 0.03343397 0.06518298 0.03343397 0.03538697 0.03288096 0.06518298 0.03288096 0.06518298 0.03343397 0.03538697 0.03228199 0.06518298 0.03228199 0.06518298 0.03288096 0.03538697 0.031708 0.06518298 0.031708 0.06518298 0.03228199 0.03538697 0.03020596 0.06518298 0.03020596 0.06518298 0.03055495 0.03538697 0.02967095 0.06518298 0.02967095 0.06518298 0.03020596 0.03538697 0.03750497 0.03538697 0.03691399 0.06518298 0.03691399 0.03538697 0.03632599 0.06518298 0.03632599 0.06518298 0.03691399 0.03538697 0.03522396 0.03538697 0.03463196 0.06518298 0.03463196 0.03538697 0.03404599 0.06518298 0.03404599 0.06518298 0.03463196 0.03538697 0.02593296 0.03538697 0.02524596 0.06518298 0.02524596 0.03538697 0.02457696 0.06518298 0.02457696 0.06518298 0.02524596 0.03538697 0.02847498 0.03538697 0.02780699 0.06518298 0.02780699 0.03538697 0.02721297 0.06518298 0.02721297 0.06518298 0.02780699 0.03538697 0.03975999 0.03538697 0.039231 0.06518298 0.039231 0.03538697 0.03867799 0.06518298 0.03867799 0.06518298 0.039231 0.03538697 0.04217898 0.03538697 0.041547 0.06518298 0.041547 0.03538697 0.04091697 0.06518298 0.04091697 0.06518298 0.041547 0.03538697 0.02457696 0.03538697 0.02377694 0.06518298 0.02377694 0.03538697 0.02299696 0.06518298 0.02299696 0.06518298 0.02377694 0.03538697 0.02721297 0.03538697 0.02658694 0.06518298 0.02658694 0.03538697 0.02593296 0.06518298 0.02593296 0.06518298 0.02658694 0.03538697 0.03867799 0.03538697 0.038091 0.06518298 0.038091 0.03538697 0.03750497 0.06518298 0.03750497 0.06518298 0.038091 0.03538697 0.04034399 0.06518298 0.04034399 0.06518298 0.04091697 0.03538697 0.03975999 0.06518298 0.03975999 0.06518298 0.04034399 0.06518298 0.03116899 0.09011697 0.03116899 0.09011697 0.031708 0.06518298 0.03055495 0.09011697 0.03055495 0.09011697 0.03116899 0.06518298 0.02909696 0.09011697 0.02909696 0.09011697 0.02967095 0.06518298 0.02847498 0.09011697 0.02847498 0.09011697 0.02909696 0.06518298 0.03632599 0.06518298 0.03576898 0.09011697 0.03576898 0.06518298 0.03522396 0.09011697 0.03522396 0.09011697 0.03576898 0.06518298 0.03404599 0.06518298 0.03343397 0.09011697 0.03343397 0.06518298 0.03288096 0.09011697 0.03288096 0.09011697 0.03343397 0.06518298 0.03228199 0.09011697 0.03228199 0.09011697 0.03288096 0.06518298 0.031708 0.09011697 0.031708 0.09011697 0.03228199 0.06518298 0.03020596 0.09011697 0.03020596 0.09011697 0.03055495 0.06518298 0.02967095 0.09011697 0.02967095 0.09011697 0.03020596 0.06518298 0.03750497 0.06518298 0.03691399 0.09011697 0.03691399 0.06518298 0.03632599 0.09011697 0.03632599 0.09011697 0.03691399 0.06518298 0.03522396 0.06518298 0.03463196 0.09011697 0.03463196 0.06518298 0.03404599 0.09011697 0.03404599 0.09011697 0.03463196 0.06518298 0.02593296 0.06518298 0.02524596 0.09011697 0.02524596 0.06518298 0.02457696 0.09011697 0.02457696 0.09011697 0.02524596 0.06518298 0.02847498 0.06518298 0.02780699 0.09011697 0.02780699 0.06518298 0.02721297 0.09011697 0.02721297 0.09011697 0.02780699 0.06518298 0.03975999 0.06518298 0.039231 0.09011697 0.039231 0.06518298 0.03867799 0.09011697 0.03867799 0.09011697 0.039231 0.06518298 0.041547 0.09011697 0.041547 0.09011697 0.04217898 0.06518298 0.04091697 0.09011697 0.04091697 0.09011697 0.041547 0.06518298 0.02377694 0.09011697 0.02377694 0.09011697 0.02457696 0.06518298 0.02299696 0.09011697 0.02299696 0.09011697 0.02377694 0.06518298 0.02721297 0.06518298 0.02658694 0.09011697 0.02658694 0.06518298 0.02593296 0.09011697 0.02593296 0.09011697 0.02658694 0.06518298 0.03867799 0.06518298 0.038091 0.09011697 0.038091 0.06518298 0.03750497 0.09011697 0.03750497 0.09011697 0.038091 0.06518298 0.04034399 0.09011697 0.04034399 0.09011697 0.04091697 0.06518298 0.03975999 0.09011697 0.03975999 0.09011697 0.04034399 0.09011697 0.03116899 0.131775 0.03116899 0.131775 0.031708 0.09011697 0.03055495 0.131775 0.03055495 0.131775 0.03116899 0.09011697 0.02909696 0.131775 0.02909696 0.131775 0.02967095 0.09011697 0.02847498 0.131775 0.02847498 0.131775 0.02909696 0.09011697 0.03632599 0.09011697 0.03576898 0.131775 0.03576898 0.09011697 0.03522396 0.131775 0.03522396 0.131775 0.03576898 0.09011697 0.03343397 0.131775 0.03343397 0.131775 0.03404599 0.09011697 0.03288096 0.131775 0.03288096 0.131775 0.03343397 0.09011697 0.03228199 0.131775 0.03228199 0.131775 0.03288096 0.09011697 0.031708 0.131775 0.031708 0.131775 0.03228199 0.09011697 0.03020596 0.131775 0.03020596 0.131775 0.03055495 0.09011697 0.02967095 0.131775 0.02967095 0.131775 0.03020596 0.09011697 0.03750497 0.09011697 0.03691399 0.131775 0.03691399 0.09011697 0.03632599 0.131775 0.03632599 0.131775 0.03691399 0.09011697 0.03522396 0.09011697 0.03463196 0.131775 0.03463196 0.09011697 0.03463196 0.09011697 0.03404599 0.131775 0.03404599 0.09011697 0.02524596 0.131775 0.02524596 0.131775 0.02593296 0.09011697 0.02457696 0.131775 0.02457696 0.131775 0.02524596 0.09011697 0.02780699 0.131775 0.02780699 0.131775 0.02847498 0.09011697 0.02721297 0.131775 0.02721297 0.131775 0.02780699 0.09011697 0.03975999 0.09011697 0.039231 0.131775 0.039231 0.09011697 0.03867799 0.131775 0.03867799 0.131775 0.039231 0.09011697 0.041547 0.131775 0.041547 0.131775 0.04217898 0.09011697 0.04091697 0.131775 0.04091697 0.131775 0.041547 0.09011697 0.02377694 0.131775 0.02377694 0.131775 0.02457696 0.09011697 0.02299696 0.131775 0.02299696 0.131775 0.02377694 0.09011697 0.02658694 0.131775 0.02658694 0.131775 0.02721297 0.09011697 0.02593296 0.131775 0.02593296 0.131775 0.02658694 0.09011697 0.03867799 0.09011697 0.038091 0.131775 0.038091 0.09011697 0.03750497 0.131775 0.03750497 0.131775 0.038091 0.09011697 0.04034399 0.131775 0.04034399 0.131775 0.04091697 0.09011697 0.03975999 0.131775 0.03975999 0.131775 0.04034399 0.09562599 0.06859797 0.08483898 0.06859797 0.08483898 0.06326895 0.09562599 0.06859797 0.09562599 0.06326895 0.106405 0.06326895 0.11639 0.06859797 0.106405 0.06859797 0.106405 0.06326895 0.11639 0.06859797 0.11639 0.06326895 0.126595 0.06326895 0.133381 0.06859797 0.126595 0.06859797 0.126595 0.06326895 0.133381 0.06859797 0.133381 0.06326895 0.144453 0.06326895 0.144453 0.06859797 0.144453 0.06326895 0.152173 0.06326895 0.152173 0.06859797 0.152173 0.06326895 0.1624799 0.06326895 0.1639609 0.06859797 0.1624799 0.06859797 0.1624799 0.06326895 0.164186 0.07170295 0.164186 0.076873 0.160264 0.076873 0.150951 0.07170295 0.160264 0.07170295 0.160264 0.076873 0.150951 0.07170295 0.150951 0.076873 0.14379 0.076873 0.1332589 0.07170295 0.14379 0.07170295 0.14379 0.076873 0.1332589 0.07170295 0.1332589 0.076873 0.123783 0.076873 0.1134639 0.07170295 0.123783 0.07170295 0.123783 0.076873 0.1134639 0.07170295 0.1134639 0.076873 0.103703 0.076873 0.09369599 0.07170295 0.103703 0.07170295 0.103703 0.076873 0.09369599 0.07170295 0.09369599 0.076873 0.08373999 0.076873 0.08373999 0.07170295 0.08373999 0.076873 0.07337796 0.076873 0.07337796 0.07170295 0.07337796 0.076873 0.06382095 0.076873 0.05502998 0.07170295 0.06382095 0.07170295 0.06382095 0.076873 0.05502998 0.07170295 0.05502998 0.076873 0.04453897 0.076873 0.04453897 0.07170295 0.04453897 0.076873 0.03807997 0.076873 0.03807997 0.07170295 0.03807997 0.076873 0.02984899 0.076873 0.02817797 0.07170295 0.02984899 0.07170295 0.02984899 0.076873 0.02797394 0.06859797 0.02797394 0.06326895 0.03114795 0.06326895 0.03765499 0.06859797 0.03114795 0.06859797 0.03114795 0.06326895 0.04578596 0.06859797 0.03765499 0.06859797 0.03765499 0.06326895 0.05633097 0.06859797 0.04578596 0.06859797 0.04578596 0.06326895 0.05633097 0.06859797 0.05633097 0.06326895 0.06413698 0.06326895 0.07489097 0.06859797 0.06413698 0.06859797 0.06413698 0.06326895 0.07489097 0.06859797 0.07489097 0.06326895 0.08483898 0.06326895 0.260913 0.07242095 0.268568 0.07422095 0.265171 0.07540696 0.268568 0.07422095 0.277833 0.07367396 0.276976 0.07590597 0.277833 0.07367396 0.285475 0.07482397 0.276976 0.07590597 0.285475 0.07482397 0.293261 0.07455396 0.292211 0.07642495 0.293261 0.07455396 0.300895 0.07502597 0.292211 0.07642495 0.300895 0.07502597 0.309333 0.07451999 0.306886 0.07621997 0.306886 0.07621997 0.309333 0.07451999 0.320469 0.07401096 0.319715 0.07335996 0.325396 0.07065999 0.320469 0.07401096 0.325396 0.07065999 0.33352 0.06936299 0.320469 0.07401096 0.218067 0.05481594 0.225708 0.06136798 0.214659 0.054398 0.225291 0.05764997 0.229095 0.06061094 0.225708 0.06136798 0.229095 0.06061094 0.238663 0.06575196 0.225708 0.06136798 0.237789 0.06251597 0.245112 0.06500697 0.238663 0.06575196 0.245112 0.06500697 0.25731 0.06812399 0.238663 0.06575196 0.254045 0.06502395 0.262089 0.06652498 0.25731 0.06812399 0.262089 0.06652498 0.275435 0.06866997 0.25731 0.06812399 0.270583 0.06538897 0.278629 0.06683897 0.275435 0.06866997 0.287069 0.065647 0.295259 0.06673997 0.275435 0.06866997 0.287069 0.065647 0.295178 0.06597197 0.295259 0.06673997 0.295178 0.06597197 0.302616 0.06357598 0.295259 0.06673997 0.302616 0.06357598 0.311934 0.06372296 0.295259 0.06673997 0.312279 0.062509 0.324321 0.05888998 0.311934 0.06372296 0.317355 0.05981194 0.324461 0.05767995 0.324321 0.05888998 0.324461 0.05767995 0.327769 0.05475598 0.33317 0.05377995 0.327769 0.05475598 0.332177 0.05175799 0.33317 0.05377995 0.211099 0.07027196 0.218748 0.07207196 0.210451 0.07203996 0.218748 0.07207196 0.227411 0.071451 0.2236 0.07428199 0.235474 0.072609 0.238273 0.074018 0.2236 0.07428199 0.235474 0.072609 0.244091 0.07160699 0.238273 0.074018 0.244091 0.07160699 0.252142 0.073291 0.253505 0.07454395 0.260913 0.07242095 0.265171 0.07540696 0.253505 0.07454395 0.210451 0.07203996 0.218748 0.07207196 0.2236 0.07428199 0.324461 0.05767995 0.33317 0.05377995 0.324321 0.05888998 0.312279 0.062509 0.317355 0.05981194 0.324321 0.05888998 0.302616 0.06357598 0.312279 0.062509 0.311934 0.06372296 0.262089 0.06652498 0.270583 0.06538897 0.275435 0.06866997 0.245112 0.06500697 0.254045 0.06502395 0.25731 0.06812399 0.229095 0.06061094 0.237789 0.06251597 0.238663 0.06575196 0.218067 0.05481594 0.225291 0.05764997 0.225708 0.06136798 0.325396 0.07065999 0.333489 0.06800699 0.33352 0.06936299 0.320469 0.07401096 0.309333 0.07451999 0.319715 0.07335996 0.292211 0.07642495 0.300895 0.07502597 0.306886 0.07621997 0.282032 0.05817496 0.270796 0.05715894 0.287179 0.05679094 0.282032 0.05817496 0.27308 0.05857896 0.270796 0.05715894 0.173432 0.03975999 0.215089 0.03975999 0.215089 0.04034399 0.173432 0.04034399 0.215089 0.04034399 0.215089 0.04091697 0.173432 0.04091697 0.215089 0.04091697 0.215089 0.041547 0.173432 0.041547 0.215089 0.041547 0.215089 0.04217898 0.173432 0.02299696 0.215089 0.02299696 0.215089 0.02377694 0.173432 0.02377694 0.215089 0.02377694 0.215089 0.02457696 0.173432 0.02457696 0.215089 0.02457696 0.215089 0.02524596 0.173432 0.02524596 0.215089 0.02524596 0.215089 0.02593296 0.173432 0.02593296 0.215089 0.02593296 0.215089 0.02658694 0.173432 0.02658694 0.215089 0.02658694 0.215089 0.02721297 0.173432 0.02721297 0.215089 0.02721297 0.215089 0.02780699 0.173432 0.02780699 0.215089 0.02780699 0.215089 0.02847498 0.173432 0.02847498 0.215089 0.02847498 0.215089 0.02909696 0.173432 0.02909696 0.215089 0.02909696 0.215089 0.02967095 0.173432 0.02967095 0.215089 0.02967095 0.215089 0.03020596 0.173432 0.03020596 0.215089 0.03020596 0.215089 0.03055495 0.173432 0.03055495 0.215089 0.03055495 0.215089 0.03116899 0.173432 0.03116899 0.215089 0.03116899 0.215089 0.031708 0.173432 0.03228199 0.173432 0.031708 0.215089 0.031708 0.173432 0.03288096 0.173432 0.03228199 0.215089 0.03228199 0.173432 0.03343397 0.173432 0.03288096 0.215089 0.03288096 0.173432 0.03404599 0.173432 0.03343397 0.215089 0.03343397 0.173432 0.03463196 0.173432 0.03404599 0.215089 0.03404599 0.173432 0.03522396 0.173432 0.03463196 0.215089 0.03463196 0.173432 0.03576898 0.173432 0.03522396 0.215089 0.03522396 0.173432 0.03632599 0.173432 0.03576898 0.215089 0.03576898 0.173432 0.03691399 0.173432 0.03632599 0.215089 0.03632599 0.173432 0.03750497 0.173432 0.03691399 0.215089 0.03691399 0.173432 0.038091 0.173432 0.03750497 0.215089 0.03750497 0.173432 0.03867799 0.173432 0.038091 0.215089 0.038091 0.173432 0.03867799 0.215089 0.03867799 0.215089 0.039231 0.173432 0.03975999 0.173432 0.039231 0.215089 0.039231 0.131775 0.03975999 0.173432 0.03975999 0.173432 0.04034399 0.131775 0.04034399 0.173432 0.04034399 0.173432 0.04091697 0.131775 0.04091697 0.173432 0.04091697 0.173432 0.041547 0.131775 0.041547 0.173432 0.041547 0.173432 0.04217898 0.131775 0.02299696 0.173432 0.02299696 0.173432 0.02377694 0.131775 0.02377694 0.173432 0.02377694 0.173432 0.02457696 0.131775 0.02457696 0.173432 0.02457696 0.173432 0.02524596 0.131775 0.02524596 0.173432 0.02524596 0.173432 0.02593296 0.131775 0.02593296 0.173432 0.02593296 0.173432 0.02658694 0.131775 0.02658694 0.173432 0.02658694 0.173432 0.02721297 0.131775 0.02721297 0.173432 0.02721297 0.173432 0.02780699 0.131775 0.02780699 0.173432 0.02780699 0.173432 0.02847498 0.131775 0.02847498 0.173432 0.02847498 0.173432 0.02909696 0.131775 0.02909696 0.173432 0.02909696 0.173432 0.02967095 0.131775 0.02967095 0.173432 0.02967095 0.173432 0.03020596 0.131775 0.03020596 0.173432 0.03020596 0.173432 0.03055495 0.131775 0.03055495 0.173432 0.03055495 0.173432 0.03116899 0.131775 0.03116899 0.173432 0.03116899 0.173432 0.031708 0.131775 0.031708 0.173432 0.031708 0.173432 0.03228199 0.131775 0.03288096 0.131775 0.03228199 0.173432 0.03228199 0.131775 0.03343397 0.131775 0.03288096 0.173432 0.03288096 0.131775 0.03404599 0.131775 0.03343397 0.173432 0.03343397 0.131775 0.03463196 0.131775 0.03404599 0.173432 0.03404599 0.131775 0.03522396 0.131775 0.03463196 0.173432 0.03463196 0.131775 0.03576898 0.131775 0.03522396 0.173432 0.03522396 0.131775 0.03632599 0.131775 0.03576898 0.173432 0.03576898 0.131775 0.03632599 0.173432 0.03632599 0.173432 0.03691399 0.131775 0.03750497 0.131775 0.03691399 0.173432 0.03691399 0.131775 0.03750497 0.173432 0.03750497 0.173432 0.038091 0.131775 0.03867799 0.131775 0.038091 0.173432 0.038091 0.131775 0.03867799 0.173432 0.03867799 0.173432 0.039231 0.131775 0.03975999 0.131775 0.039231 0.173432 0.039231 0.620575 0.947396 0.620575 0.951887 0.601257 0.952125 0.601188 0.94875 0.601257 0.952125 0.581401 0.951807 0.581236 0.948616 0.581401 0.951807 0.559361 0.951227 0.559133 0.948069 0.559361 0.951227 0.537024 0.950969 0.515571 0.947842 0.53705 0.947834 0.537024 0.950969 0.493998 0.948162 0.515571 0.947842 0.51534 0.951218 0.473441 0.948383 0.493998 0.948162 0.493647 0.951817 0.454318 0.947396 0.473441 0.948383 0.473165 0.952458 0.601361 0.956845 0.620575 0.95721 0.620575 0.98046 0.581551 0.956397 0.601361 0.956845 0.600712 0.980346 0.559575 0.955796 0.581551 0.956397 0.580305 0.980283 0.536954 0.955597 0.559575 0.955796 0.558955 0.98039 0.514994 0.955954 0.536954 0.955597 0.536624 0.98048 0.493274 0.956496 0.514994 0.955954 0.514496 0.980501 0.472945 0.957083 0.493274 0.956496 0.493287 0.980274 0.454318 0.95721 0.472945 0.957083 0.473273 0.980183 0.600712 0.980346 0.620575 0.98046 0.620575 0.985296 0.580305 0.980283 0.600712 0.980346 0.600117 0.984911 0.558955 0.98039 0.580305 0.980283 0.579433 0.984622 0.536624 0.98048 0.558955 0.98039 0.558369 0.984579 0.536624 0.98048 0.536538 0.984595 0.514907 0.984562 0.514496 0.980501 0.514907 0.984562 0.49415 0.9845 0.493287 0.980274 0.49415 0.9845 0.473995 0.984664 0.473273 0.980183 0.473995 0.984664 0.454318 0.985296 0.601089 0.945988 0.60262 0.914687 0.620575 0.91812 0.580975 0.945986 0.581904 0.911789 0.60262 0.914687 0.558877 0.945645 0.559898 0.90957 0.581904 0.911789 0.53701 0.945453 0.536707 0.908669 0.559898 0.90957 0.515693 0.945425 0.51355 0.909161 0.536707 0.908669 0.494273 0.945723 0.491566 0.911291 0.51355 0.909161 0.473649 0.945872 0.471283 0.914531 0.491566 0.911291 0.454318 0.944857 0.454318 0.91812 0.471283 0.914531 0.620575 0.951887 0.620575 0.95721 0.601361 0.956845 0.601257 0.952125 0.601361 0.956845 0.581551 0.956397 0.581401 0.951807 0.581551 0.956397 0.559575 0.955796 0.559361 0.951227 0.559575 0.955796 0.536954 0.955597 0.51534 0.951218 0.537024 0.950969 0.536954 0.955597 0.493647 0.951817 0.51534 0.951218 0.514994 0.955954 0.473165 0.952458 0.493647 0.951817 0.493274 0.956496 0.454318 0.951887 0.473165 0.952458 0.472945 0.957083 0.620575 0.944857 0.620575 0.947396 0.601188 0.94875 0.601089 0.945988 0.601188 0.94875 0.581236 0.948616 0.580975 0.945986 0.581236 0.948616 0.559133 0.948069 0.558877 0.945645 0.559133 0.948069 0.53705 0.947834 0.515693 0.945425 0.53701 0.945453 0.53705 0.947834 0.494273 0.945723 0.515693 0.945425 0.515571 0.947842 0.473649 0.945872 0.494273 0.945723 0.493998 0.948162 0.454318 0.944857 0.473649 0.945872 0.473441 0.948383 1.601257 0.952125 1.620575 0.951887 1.620575 0.947396 1.581401 0.951807 1.601257 0.952125 1.601188 0.94875 1.559361 0.951227 1.581401 0.951807 1.581236 0.948616 1.537024 0.950969 1.559361 0.951227 1.559134 0.948069 1.515571 0.947842 1.51534 0.951218 1.537024 0.950969 1.493998 0.948162 1.493647 0.951817 1.51534 0.951218 1.473441 0.948383 1.473166 0.952458 1.493647 0.951817 1.454318 0.947396 1.454318 0.951887 1.473166 0.952458 1.601361 0.956845 1.600712 0.980346 1.620575 0.98046 1.581551 0.956397 1.580305 0.980283 1.600712 0.980346 1.559575 0.955796 1.558955 0.98039 1.580305 0.980283 1.536954 0.955597 1.536624 0.98048 1.558955 0.98039 1.514994 0.955954 1.514496 0.980501 1.536624 0.98048 1.493274 0.956496 1.493287 0.980274 1.514496 0.980501 1.472945 0.957083 1.473273 0.980183 1.493287 0.980274 1.454318 0.95721 1.454318 0.98046 1.473273 0.980183 1.600712 0.980346 1.600117 0.984911 1.620575 0.985296 1.580305 0.980283 1.579433 0.984622 1.600117 0.984911 1.558955 0.98039 1.558369 0.984579 1.579433 0.984622 1.536624 0.98048 1.536538 0.984595 1.558369 0.984579 1.514907 0.984562 1.536538 0.984595 1.536624 0.98048 1.49415 0.9845 1.514907 0.984562 1.514496 0.980501 1.473995 0.984664 1.49415 0.9845 1.493287 0.980274 1.454318 0.985296 1.473995 0.984664 1.473273 0.980183 1.620575 0.91812 1.60262 0.914687 1.601089 0.945988 1.60262 0.914687 1.581904 0.911789 1.580975 0.945986 1.581904 0.911789 1.559898 0.90957 1.558877 0.945645 1.559898 0.90957 1.536707 0.908669 1.53701 0.945453 1.536707 0.908669 1.51355 0.909161 1.515693 0.945425 1.51355 0.909161 1.491566 0.911291 1.494273 0.945723 1.491566 0.911291 1.471283 0.914531 1.473649 0.945872 1.471283 0.914531 1.454318 0.91812 1.454318 0.944857 1.601361 0.956845 1.620575 0.95721 1.620575 0.951887 1.581551 0.956397 1.601361 0.956845 1.601257 0.952125 1.559575 0.955796 1.581551 0.956397 1.581401 0.951807 1.536954 0.955597 1.559575 0.955796 1.559361 0.951227 1.51534 0.951218 1.514994 0.955954 1.536954 0.955597 1.493647 0.951817 1.493274 0.956496 1.514994 0.955954 1.473166 0.952458 1.472945 0.957083 1.493274 0.956496 1.454318 0.951887 1.454318 0.95721 1.472945 0.957083 1.601188 0.94875 1.620575 0.947396 1.620575 0.944857 1.581236 0.948616 1.601188 0.94875 1.601089 0.945988 1.559134 0.948069 1.581236 0.948616 1.580975 0.945986 1.53705 0.947834 1.559134 0.948069 1.558877 0.945645 1.515693 0.945425 1.515571 0.947842 1.53705 0.947834 1.494273 0.945723 1.493998 0.948162 1.515571 0.947842 1.473649 0.945872 1.473441 0.948383 1.493998 0.948162 1.454318 0.944857 1.454318 0.947396 1.473441 0.948383 0.882764 0.853031 0.859804 0.824414 0.853116 0.829425 0.890225 0.879604 0.896439 0.876818 0.882764 0.853031 0.837073 0.800234 0.813019 0.782928 0.808188 0.792803 0.808188 0.792803 0.813019 0.782928 0.787161 0.774347 0.782983 0.783182 0.787161 0.774347 0.758836 0.770513 0.747819 0.769898 0.717111 0.768456 0.718152 0.774814 0.717111 0.768456 0.69131 0.770238 0.692936 0.776887 0.830895 0.808361 0.853116 0.829425 0.859804 0.824414 0.92183 0.831683 0.932123 0.825394 0.91444 0.791682 0.946554 0.848348 0.932123 0.825394 0.92183 0.831683 0.888091 0.618953 0.885982 0.624656 0.893908 0.629005 0.879283 0.616768 0.879099 0.623026 0.885982 0.624656 0.77388 0.693259 0.747759 0.708816 0.751716 0.722728 0.747759 0.708816 0.708973 0.714418 0.709502 0.726591 0.708973 0.714418 0.681423 0.715637 0.682731 0.727123 0.900567 0.795752 0.91444 0.791682 0.910801 0.760689 0.8731 0.753904 0.886599 0.725284 0.84788 0.708507 0.910801 0.760689 0.918849 0.735436 0.886599 0.725284 0.84788 0.708507 0.819853 0.693356 0.805755 0.720817 0.819853 0.693356 0.789245 0.673166 0.77388 0.693259 0.900813 0.664354 0.87358 0.653588 0.860148 0.682093 0.924655 0.665869 0.900813 0.664354 0.897425 0.696069 0.860148 0.682093 0.87358 0.653588 0.853066 0.641485 0.8326 0.667638 0.853066 0.641485 0.836637 0.627495 0.853066 0.641485 0.863642 0.631975 0.856352 0.61962 0.87358 0.653588 0.878537 0.642683 0.863642 0.631975 0.899403 0.6471 0.878537 0.642683 0.87358 0.653588 0.915665 0.643722 0.899403 0.6471 0.900813 0.664354 0.789245 0.673166 0.772249 0.658019 0.760619 0.677211 0.830804 0.614125 0.791718 0.63176 0.800742 0.650604 0.853403 0.608029 0.830804 0.614125 0.836637 0.627495 0.888091 0.618953 0.891308 0.610794 0.880184 0.60847 0.891308 0.610794 0.888091 0.618953 0.897988 0.623318 0.939973 0.660151 0.924677 0.635245 0.915665 0.643722 0.939973 0.660151 0.924655 0.665869 0.930518 0.711861 0.931927 0.761675 0.941934 0.740969 0.918849 0.735436 0.93789 0.784046 0.931927 0.761675 0.910801 0.760689 0.932123 0.825394 0.949086 0.814915 0.93789 0.784046 0.962553 0.832195 0.949086 0.814915 0.932123 0.825394 0.707769 0.694032 0.684413 0.693032 0.681423 0.715637 0.739723 0.685313 0.707769 0.694032 0.708973 0.714418 0.77388 0.693259 0.760619 0.677211 0.739723 0.685313 0.800742 0.650604 0.784556 0.636751 0.772249 0.658019 0.8326 0.667638 0.800742 0.650604 0.789245 0.673166 0.860148 0.682093 0.8326 0.667638 0.819853 0.693356 0.886599 0.725284 0.897425 0.696069 0.860148 0.682093 0.930518 0.711861 0.897425 0.696069 0.886599 0.725284 0.941934 0.740969 0.952652 0.718049 0.930518 0.711861 0.774722 0.798973 0.755401 0.797145 0.755186 0.829732 0.733721 0.829524 0.755186 0.829732 0.755401 0.797145 0.687025 0.798269 0.686787 0.829109 0.725411 0.829454 0.686787 0.829109 0.687025 0.798269 0.666391 0.803726 0.774203 0.860309 0.774719 0.829884 0.755186 0.829732 0.733721 0.829524 0.733818 0.863729 0.754724 0.862069 0.686385 0.859162 0.725046 0.863575 0.725411 0.829454 0.665085 0.849912 0.686385 0.859162 0.686787 0.829109 0.880184 0.60847 0.869004 0.607116 0.868847 0.616864 0.879099 0.623026 0.879283 0.616768 0.868847 0.616864 0.878537 0.642683 0.885982 0.624656 0.879099 0.623026 0.893908 0.629005 0.885982 0.624656 0.878537 0.642683 0.906463 0.63074 0.897988 0.623318 0.893908 0.629005 0.903004 0.616494 0.897988 0.623318 0.906463 0.63074 0.646693 0.835652 0.653926 0.842333 0.665898 0.827639 0.646062 0.816083 0.665898 0.827639 0.653838 0.809992 0.906463 0.63074 0.896741 0.636735 0.899403 0.6471 0.899403 0.6471 0.896741 0.636735 0.878537 0.642683 0.878537 0.642683 0.87165 0.625972 0.863642 0.631975 0.863642 0.631975 0.87165 0.625972 0.868847 0.616864 0.869004 0.607116 0.853403 0.608029 0.856352 0.61962 0.665898 0.827639 0.666391 0.803726 0.653838 0.809992 0.653926 0.842333 0.665085 0.849912 0.665898 0.827639 0.924677 0.635245 0.912901 0.6231 0.906463 0.63074 0.941764 0.886235 0.943108 0.889461 0.967838 0.887471 0.969169 0.884006 0.967838 0.887471 0.988367 0.90401 0.921549 0.9294 0.92415 0.903699 0.92066 0.902248 0.937503 0.950374 0.939293 0.947427 0.921549 0.9294 0.939293 0.947427 0.937503 0.950374 0.961853 0.950702 0.98826 0.928385 0.973417 0.941954 0.974361 0.94495 0.988367 0.90401 0.98826 0.928385 0.991709 0.929088 0.92415 0.903699 0.943108 0.889461 0.941764 0.886235 0.827507 0.87553 0.839983 0.907437 0.853909 0.905732 0.872749 0.877652 0.853909 0.905732 0.861473 0.912933 0.799219 0.938762 0.831924 0.927161 0.83118 0.916491 0.825346 0.96307 0.839366 0.933034 0.831924 0.927161 0.839366 0.933034 0.825346 0.96307 0.853892 0.96264 0.861528 0.922847 0.854026 0.931133 0.865464 0.958085 0.861473 0.912933 0.861528 0.922847 0.889725 0.9351 0.799219 0.90239 0.83118 0.916491 0.839983 0.907437 0.839983 0.907437 0.846359 0.919896 0.853909 0.905732 0.853909 0.905732 0.846359 0.919896 0.861473 0.912933 0.831924 0.927161 0.846359 0.919896 0.83118 0.916491 0.839366 0.933034 0.846359 0.919896 0.831924 0.927161 0.846359 0.919896 0.854026 0.931133 0.861528 0.922847 0.861473 0.912933 0.846359 0.919896 0.861528 0.922847 0.83118 0.916491 0.846359 0.919896 0.839983 0.907437 0.952652 0.718049 0.953103 0.70713 0.930518 0.711861 0.725046 0.863575 0.733818 0.863729 0.733721 0.829524 0.72566 0.79504 0.725411 0.829454 0.733721 0.829524 0.800742 0.650604 0.791718 0.63176 0.784556 0.636751 0.896741 0.636735 0.893908 0.629005 0.878537 0.642683 0.878537 0.642683 0.879099 0.623026 0.87165 0.625972 0.643554 0.825287 0.646693 0.835652 0.665898 0.827639 0.646062 0.816083 0.643554 0.825287 0.665898 0.827639 0.79275 0.846263 0.791204 0.829639 0.785638 0.829849 0.792879 0.812438 0.785429 0.806495 0.785638 0.829849 0.821142 0.834742 0.826422 0.833251 0.827687 0.829609 0.819601 0.829638 0.827687 0.829609 0.82637 0.825773 0.785139 0.852988 0.785638 0.829849 0.774719 0.829884 0.93789 0.784046 0.941899 0.773954 0.931927 0.761675 0.774719 0.829884 0.785638 0.829849 0.785429 0.806495 0.745091 0.675649 0.734709 0.670549 0.739723 0.685313 0.973957 0.817809 0.961948 0.805284 0.949086 0.814915 0.961948 0.805284 0.953074 0.779837 0.93789 0.784046 0.739723 0.685313 0.734709 0.670549 0.708121 0.677937 0.707769 0.694032 0.708121 0.677937 0.690233 0.67497 0.93789 0.784046 0.953074 0.779837 0.941899 0.773954 0.760619 0.677211 0.745091 0.675649 0.739723 0.685313 0.821142 0.834742 0.819601 0.829638 0.791204 0.829639 0.998946 0.783144 0.994668 0.77933 0.961948 0.805284 0.994668 0.77933 0.991659 0.773493 0.953074 0.779837 0.791204 0.829639 0.819601 0.829638 0.82092 0.824112 0.734709 0.670549 0.718281 0.63497 0.711542 0.635687 0.708121 0.677937 0.711542 0.635687 0.705971 0.634392 0.836314 0.733956 0.805755 0.720817 0.80284 0.730417 0.836314 0.733956 0.833852 0.738982 0.866404 0.764149 0.900567 0.795752 0.8731 0.753904 0.866404 0.764149 0.917337 0.833914 0.92183 0.831683 0.900567 0.795752 0.933337 0.857741 0.936937 0.855582 0.92183 0.831683 0.709502 0.726591 0.682731 0.727123 0.6834 0.730964 0.805755 0.720817 0.751716 0.722728 0.757817 0.730021 0.709502 0.726591 0.710668 0.731459 0.746575 0.730117 0.960846 0.947751 0.961853 0.950702 0.974361 0.94495 0.747819 0.769898 0.747687 0.777303 0.758586 0.778704 0.854026 0.931133 0.847691 0.933503 0.853892 0.96264 0.846359 0.919896 0.847691 0.933503 0.854026 0.931133 0.751716 0.722728 0.746575 0.730117 0.757817 0.730021 0.865519 0.819155 0.841708 0.793936 0.837073 0.800234 0.889491 0.848853 0.865519 0.819155 0.859804 0.824414 0.896439 0.876818 0.904241 0.874642 0.889491 0.848853 0.717111 0.768456 0.716798 0.761072 0.68911 0.763236 0.746307 0.762387 0.716798 0.761072 0.717111 0.768456 0.787161 0.774347 0.789194 0.767018 0.761661 0.763563 0.813019 0.782928 0.816229 0.775919 0.789194 0.767018 0.841708 0.793936 0.816229 0.775919 0.813019 0.782928 0.861289 0.772089 0.885943 0.80229 0.892162 0.798359 0.892162 0.798359 0.885943 0.80229 0.912086 0.837378 0.912086 0.837378 0.928258 0.861623 0.933337 0.857741 0.683019 0.737571 0.710813 0.737666 0.710668 0.731459 0.710668 0.731459 0.710813 0.737666 0.744485 0.736878 0.759569 0.737588 0.800313 0.739753 0.80284 0.730417 0.800313 0.739753 0.829471 0.748357 0.833852 0.738982 0.829471 0.748357 0.861289 0.772089 0.866404 0.764149 0.846359 0.919896 0.839366 0.933034 0.847691 0.933503 0.757817 0.730021 0.746575 0.730117 0.744485 0.736878 0.758836 0.770513 0.761661 0.763563 0.746307 0.762387 0.759569 0.737588 0.744485 0.736878 0.746307 0.762387 0.759569 0.737588 0.761661 0.763563 0.789194 0.767018 0.800313 0.739753 0.789194 0.767018 0.816229 0.775919 0.861289 0.772089 0.829471 0.748357 0.816229 0.775919 0.885943 0.80229 0.861289 0.772089 0.841708 0.793936 0.904241 0.874642 0.928258 0.861623 0.912086 0.837378 0.889491 0.848853 0.912086 0.837378 0.885943 0.80229 0.68911 0.763236 0.716798 0.761072 0.710813 0.737666 0.716798 0.761072 0.746307 0.762387 0.744485 0.736878 0.876889 0.855882 0.853116 0.829425 0.859804 0.824414 0.890225 0.879604 0.876889 0.855882 0.882764 0.853031 0.808188 0.792803 0.813019 0.782928 0.837073 0.800234 0.782983 0.783182 0.787161 0.774347 0.813019 0.782928 0.758586 0.778704 0.758836 0.770513 0.787161 0.774347 0.747819 0.769898 0.747687 0.777303 0.718152 0.774814 0.692936 0.776887 0.69131 0.770238 0.717111 0.768456 0.837073 0.800234 0.859804 0.824414 0.853116 0.829425 0.92183 0.831683 0.900567 0.795752 0.91444 0.791682 0.92183 0.831683 0.932123 0.825394 0.946554 0.848348 0.888091 0.618953 0.897988 0.623318 0.893908 0.629005 0.885982 0.624656 0.879099 0.623026 0.879283 0.616768 0.751716 0.722728 0.747759 0.708816 0.77388 0.693259 0.709502 0.726591 0.708973 0.714418 0.747759 0.708816 0.682731 0.727123 0.681423 0.715637 0.708973 0.714418 0.900567 0.795752 0.8731 0.753904 0.910801 0.760689 0.836314 0.733956 0.84788 0.708507 0.886599 0.725284 0.910801 0.760689 0.8731 0.753904 0.886599 0.725284 0.836314 0.733956 0.805755 0.720817 0.819853 0.693356 0.77388 0.693259 0.789245 0.673166 0.819853 0.693356 0.860148 0.682093 0.87358 0.653588 0.900813 0.664354 0.897425 0.696069 0.900813 0.664354 0.924655 0.665869 0.860148 0.682093 0.8326 0.667638 0.853066 0.641485 0.8326 0.667638 0.800742 0.650604 0.836637 0.627495 0.853066 0.641485 0.836637 0.627495 0.856352 0.61962 0.87358 0.653588 0.853066 0.641485 0.863642 0.631975 0.87358 0.653588 0.878537 0.642683 0.899403 0.6471 0.900813 0.664354 0.899403 0.6471 0.915665 0.643722 0.760619 0.677211 0.772249 0.658019 0.789245 0.673166 0.836637 0.627495 0.800742 0.650604 0.791718 0.63176 0.836637 0.627495 0.830804 0.614125 0.853403 0.608029 0.880184 0.60847 0.891308 0.610794 0.888091 0.618953 0.891308 0.610794 0.903004 0.616494 0.897988 0.623318 0.939973 0.660151 0.924655 0.665869 0.915665 0.643722 0.953103 0.70713 0.930518 0.711861 0.924655 0.665869 0.931927 0.761675 0.910801 0.760689 0.918849 0.735436 0.910801 0.760689 0.931927 0.761675 0.93789 0.784046 0.91444 0.791682 0.93789 0.784046 0.949086 0.814915 0.932123 0.825394 0.949086 0.814915 0.962553 0.832195 0.708973 0.714418 0.681423 0.715637 0.684413 0.693032 0.708973 0.714418 0.707769 0.694032 0.739723 0.685313 0.739723 0.685313 0.760619 0.677211 0.77388 0.693259 0.772249 0.658019 0.784556 0.636751 0.800742 0.650604 0.789245 0.673166 0.800742 0.650604 0.8326 0.667638 0.819853 0.693356 0.8326 0.667638 0.860148 0.682093 0.886599 0.725284 0.84788 0.708507 0.860148 0.682093 0.918849 0.735436 0.886599 0.725284 0.897425 0.696069 0.941934 0.740969 0.918849 0.735436 0.930518 0.711861 0.755186 0.829732 0.755401 0.797145 0.774722 0.798973 0.755401 0.797145 0.755186 0.829732 0.733721 0.829524 0.687025 0.798269 0.72566 0.79504 0.725411 0.829454 0.666391 0.803726 0.687025 0.798269 0.686787 0.829109 0.774203 0.860309 0.754724 0.862069 0.755186 0.829732 0.733721 0.829524 0.755186 0.829732 0.754724 0.862069 0.725411 0.829454 0.725046 0.863575 0.686385 0.859162 0.686787 0.829109 0.686385 0.859162 0.665085 0.849912 0.868847 0.616864 0.869004 0.607116 0.880184 0.60847 0.868847 0.616864 0.879283 0.616768 0.879099 0.623026 0.878537 0.642683 0.879099 0.623026 0.885982 0.624656 0.893908 0.629005 0.878537 0.642683 0.885982 0.624656 0.906463 0.63074 0.896741 0.636735 0.893908 0.629005 0.906463 0.63074 0.897988 0.623318 0.903004 0.616494 0.646693 0.835652 0.665898 0.827639 0.653926 0.842333 0.646062 0.816083 0.653838 0.809992 0.665898 0.827639 0.899403 0.6471 0.896741 0.636735 0.906463 0.63074 0.899403 0.6471 0.878537 0.642683 0.896741 0.636735 0.878537 0.642683 0.863642 0.631975 0.87165 0.625972 0.863642 0.631975 0.856352 0.61962 0.868847 0.616864 0.869004 0.607116 0.868847 0.616864 0.856352 0.61962 0.665898 0.827639 0.653838 0.809992 0.666391 0.803726 0.653926 0.842333 0.665898 0.827639 0.665085 0.849912 0.924677 0.635245 0.915665 0.643722 0.906463 0.63074 0.941764 0.886235 0.969169 0.884006 0.967838 0.887471 0.969169 0.884006 0.991709 0.902133 0.988367 0.90401 0.92066 0.902248 0.92415 0.903699 0.921549 0.9294 0.937503 0.950374 0.917964 0.930585 0.921549 0.9294 0.961853 0.950702 0.937503 0.950374 0.939293 0.947427 0.974361 0.94495 0.973417 0.941954 0.98826 0.928385 0.991709 0.929088 0.98826 0.928385 0.988367 0.90401 0.941764 0.886235 0.943108 0.889461 0.92415 0.903699 0.827507 0.87553 0.872749 0.877652 0.853909 0.905732 0.872749 0.877652 0.892895 0.904795 0.861473 0.912933 0.799219 0.938762 0.799219 0.90239 0.83118 0.916491 0.825346 0.96307 0.799219 0.938762 0.831924 0.927161 0.853892 0.96264 0.825346 0.96307 0.839366 0.933034 0.865464 0.958085 0.854026 0.931133 0.861528 0.922847 0.889725 0.9351 0.861528 0.922847 0.861473 0.912933 0.827507 0.87553 0.839983 0.907437 0.83118 0.916491 0.839983 0.907437 0.853909 0.905732 0.846359 0.919896 0.853909 0.905732 0.861473 0.912933 0.846359 0.919896 0.831924 0.927161 0.83118 0.916491 0.846359 0.919896 0.839366 0.933034 0.831924 0.927161 0.846359 0.919896 0.846359 0.919896 0.861528 0.922847 0.854026 0.931133 0.861473 0.912933 0.861528 0.922847 0.846359 0.919896 0.83118 0.916491 0.839983 0.907437 0.846359 0.919896 0.952652 0.718049 0.930518 0.711861 0.953103 0.70713 0.733721 0.829524 0.733818 0.863729 0.725046 0.863575 0.73353 0.79504 0.733721 0.829524 0.725411 0.829454 0.800742 0.650604 0.784556 0.636751 0.791718 0.63176 0.896741 0.636735 0.878537 0.642683 0.893908 0.629005 0.878537 0.642683 0.87165 0.625972 0.879099 0.623026 0.643554 0.825287 0.665898 0.827639 0.646693 0.835652 0.646062 0.816083 0.665898 0.827639 0.643554 0.825287 0.785638 0.829849 0.791204 0.829639 0.79275 0.846263 0.792879 0.812438 0.791204 0.829639 0.785638 0.829849 0.821142 0.834742 0.819601 0.829638 0.827687 0.829609 0.819601 0.829638 0.82092 0.824112 0.82637 0.825773 0.774719 0.829884 0.785638 0.829849 0.785139 0.852988 0.93789 0.784046 0.931927 0.761675 0.941899 0.773954 0.774719 0.829884 0.774722 0.798973 0.785429 0.806495 0.745091 0.675649 0.739723 0.685313 0.734709 0.670549 0.949086 0.814915 0.961948 0.805284 0.973957 0.817809 0.93789 0.784046 0.953074 0.779837 0.961948 0.805284 0.739723 0.685313 0.707769 0.694032 0.708121 0.677937 0.707769 0.694032 0.684413 0.693032 0.690233 0.67497 0.93789 0.784046 0.941899 0.773954 0.953074 0.779837 0.760619 0.677211 0.739723 0.685313 0.745091 0.675649 0.791204 0.829639 0.819601 0.829638 0.821142 0.834742 0.961948 0.805284 0.994668 0.77933 0.998946 0.783144 0.953074 0.779837 0.991659 0.773493 0.994668 0.77933 0.791204 0.829639 0.792879 0.812438 0.82092 0.824112 0.734709 0.670549 0.708121 0.677937 0.711542 0.635687 0.708121 0.677937 0.690233 0.67497 0.705971 0.634392 0.833852 0.738982 0.80284 0.730417 0.805755 0.720817 0.866404 0.764149 0.833852 0.738982 0.836314 0.733956 0.866404 0.764149 0.8731 0.753904 0.900567 0.795752 0.917337 0.833914 0.892162 0.798359 0.900567 0.795752 0.917337 0.833914 0.92183 0.831683 0.936937 0.855582 0.6834 0.730964 0.682731 0.727123 0.709502 0.726591 0.757817 0.730021 0.751716 0.722728 0.805755 0.720817 0.746575 0.730117 0.710668 0.731459 0.709502 0.726591 0.974361 0.94495 0.961853 0.950702 0.960846 0.947751 0.758836 0.770513 0.758586 0.778704 0.747687 0.777303 0.865464 0.958085 0.853892 0.96264 0.847691 0.933503 0.846359 0.919896 0.854026 0.931133 0.847691 0.933503 0.751716 0.722728 0.757817 0.730021 0.746575 0.730117 0.837073 0.800234 0.841708 0.793936 0.865519 0.819155 0.882764 0.853031 0.859804 0.824414 0.865519 0.819155 0.896439 0.876818 0.882764 0.853031 0.889491 0.848853 0.69131 0.770238 0.68911 0.763236 0.716798 0.761072 0.717111 0.768456 0.716798 0.761072 0.746307 0.762387 0.787161 0.774347 0.758836 0.770513 0.761661 0.763563 0.787161 0.774347 0.789194 0.767018 0.816229 0.775919 0.813019 0.782928 0.816229 0.775919 0.841708 0.793936 0.892162 0.798359 0.885943 0.80229 0.861289 0.772089 0.892162 0.798359 0.917337 0.833914 0.912086 0.837378 0.933337 0.857741 0.928258 0.861623 0.912086 0.837378 0.710668 0.731459 0.710813 0.737666 0.683019 0.737571 0.710668 0.731459 0.746575 0.730117 0.744485 0.736878 0.80284 0.730417 0.800313 0.739753 0.759569 0.737588 0.80284 0.730417 0.833852 0.738982 0.829471 0.748357 0.866404 0.764149 0.861289 0.772089 0.829471 0.748357 0.846359 0.919896 0.847691 0.933503 0.839366 0.933034 0.759569 0.737588 0.744485 0.736878 0.746575 0.730117 0.747819 0.769898 0.746307 0.762387 0.761661 0.763563 0.746307 0.762387 0.744485 0.736878 0.759569 0.737588 0.789194 0.767018 0.761661 0.763563 0.759569 0.737588 0.816229 0.775919 0.789194 0.767018 0.800313 0.739753 0.861289 0.772089 0.841708 0.793936 0.816229 0.775919 0.865519 0.819155 0.841708 0.793936 0.861289 0.772089 0.912086 0.837378 0.928258 0.861623 0.904241 0.874642 0.889491 0.848853 0.865519 0.819155 0.885943 0.80229 0.68911 0.763236 0.683019 0.737571 0.710813 0.737666 0.716798 0.761072 0.710813 0.737666 0.744485 0.736878 0.07721495 0.473398 0.077322 0.502398 0.095766 0.500853 0.077322 0.502398 0.07756197 0.531382 0.09590196 0.530555 0.07756197 0.531382 0.07769095 0.560132 0.09593296 0.559748 0.07769095 0.560132 0.07773798 0.588668 0.09593796 0.588668 0.095501 0.470948 0.09397798 0.413046 0.08817499 0.413831 0.07721495 0.473398 0.07192599 0.473054 0.07187396 0.502395 0.077322 0.502398 0.07187396 0.502395 0.07201695 0.531133 0.07756197 0.531382 0.07201695 0.531133 0.07208698 0.559954 0.07211196 0.588668 0.07773798 0.588668 0.07769095 0.560132 0.113843 0.46846 0.113934 0.499398 0.119194 0.499365 0.113934 0.499398 0.113883 0.529523 0.119193 0.529343 0.113883 0.529523 0.113821 0.559206 0.119193 0.559083 0.113821 0.559206 0.113795 0.588668 0.119193 0.588668 0.08817499 0.413831 0.08634901 0.412933 0.07192599 0.473054 0.100956 0.412102 0.113843 0.46846 0.119194 0.468007 0.08817499 0.413831 0.09397798 0.413046 0.09377497 0.410061 0.09593296 0.559748 0.09593796 0.588668 0.113795 0.588668 0.09590196 0.530555 0.09593296 0.559748 0.113821 0.559206 0.095766 0.500853 0.09590196 0.530555 0.113883 0.529523 0.095501 0.470948 0.095766 0.500853 0.113934 0.499398 0.09397798 0.413046 0.095501 0.470948 0.113843 0.46846 0.100956 0.412102 0.101877 0.410055 0.09377497 0.410061 0.02872794 0.528775 0.049703 0.529924 0.04971599 0.500535 0.02872794 0.558774 0.04984694 0.559329 0.049703 0.529924 0.02872794 0.588668 0.04991495 0.588668 0.04984694 0.559329 0.04455995 0.408166 0.02872896 0.467265 0.05032396 0.4702 0.05032396 0.4702 0.02872896 0.467265 0.02872896 0.498616 0.04991495 0.588668 0.07211196 0.588668 0.07208698 0.559954 0.04984694 0.559329 0.07208698 0.559954 0.07201695 0.531133 0.049703 0.529924 0.07201695 0.531133 0.07187396 0.502395 0.07192599 0.473054 0.05032396 0.4702 0.04971599 0.500535 0.05032396 0.4702 0.07192599 0.473054 0.05930095 0.410369 0.07721596 0.4734 0.095501 0.470949 0.09576499 0.500853 0.077322 0.502399 0.09576499 0.500853 0.09590196 0.530555 0.07756197 0.531382 0.09590196 0.530555 0.095932 0.559748 0.07769095 0.560132 0.095932 0.559748 0.09593796 0.588668 0.08817499 0.413839 0.09397697 0.41305 0.095501 0.470949 0.07187396 0.502396 0.07192599 0.473055 0.07721596 0.4734 0.07201796 0.531133 0.07187396 0.502396 0.077322 0.502399 0.07208698 0.559954 0.07201796 0.531133 0.07756197 0.531382 0.07211196 0.588668 0.07208698 0.559954 0.07769095 0.560132 0.113842 0.468462 0.119192 0.468009 0.119192 0.499365 0.113933 0.499398 0.119192 0.499365 0.119192 0.529343 0.113882 0.529523 0.119192 0.529343 0.119193 0.559083 0.113821 0.559206 0.119193 0.559083 0.119193 0.588668 0.07192599 0.473055 0.08634901 0.412937 0.08817499 0.413839 0.100956 0.412109 0.102746 0.410929 0.119192 0.468009 0.08817499 0.413839 0.086928 0.412052 0.09377396 0.410067 0.095932 0.559748 0.113821 0.559206 0.113795 0.588668 0.09590196 0.530555 0.113882 0.529523 0.113821 0.559206 0.09576499 0.500853 0.113933 0.499398 0.113882 0.529523 0.095501 0.470949 0.113842 0.468462 0.113933 0.499398 0.09397697 0.41305 0.100956 0.412109 0.113842 0.468462 0.09377396 0.410067 0.101876 0.410061 0.100956 0.412109 0.04971694 0.500536 0.04970395 0.529924 0.02872794 0.528774 0.04970395 0.529924 0.04984694 0.559328 0.02872794 0.558774 0.04984694 0.559328 0.04991495 0.588668 0.02872794 0.588667 0.04456299 0.408169 0.05255597 0.40863 0.05032598 0.470201 0.02872794 0.498616 0.02872699 0.467266 0.05032598 0.470201 0.07208698 0.559954 0.07211196 0.588668 0.04991495 0.588668 0.07201796 0.531133 0.07208698 0.559954 0.04984694 0.559328 0.07187396 0.502396 0.07201796 0.531133 0.04970395 0.529924 0.04971694 0.500536 0.05032598 0.470201 0.07192599 0.473055 0.05930298 0.410372 0.07192599 0.473055 0.05032598 0.470201 0.690768 0.947055 0.688411 0.94731 0.686798 0.934214 0.690768 0.947055 0.69042 0.967706 0.688411 0.94731 0.682691 0.935099 0.685937 0.94788 0.682754 0.949011 0.685937 0.94788 0.69042 0.967706 0.682754 0.949011 0.677315 0.936865 0.682754 0.949011 0.67943 0.950459 0.682754 0.949011 0.69042 0.967706 0.67943 0.950459 0.688411 0.94731 0.685937 0.94788 0.682691 0.935099 0.688411 0.94731 0.69042 0.967706 0.685937 0.94788 0.671738 0.939135 0.67943 0.950459 0.675542 0.951618 0.67943 0.950459 0.69042 0.967706 0.675542 0.951618 0.665184 0.940752 0.675542 0.951618 0.671877 0.954496 0.675542 0.951618 0.69042 0.967706 0.671877 0.954496 0.658984 0.945263 0.671877 0.954496 0.667702 0.958397 0.671877 0.954496 0.69042 0.967706 0.667702 0.958397 0.66413 0.966102 0.644983 0.970898 0.645033 0.964596 0.651832 0.951535 0.667702 0.958397 0.665252 0.96229 0.667702 0.958397 0.69042 0.967706 0.665252 0.96229 0.64744 0.958175 0.665252 0.96229 0.66413 0.966102 0.665252 0.96229 0.69042 0.967706 0.66413 0.966102 0.570755 0.796871 0.567884 0.779937 0.576413 0.779486 0.568039 0.759284 0.576413 0.779486 0.567884 0.779937 0.600171 0.87493 0.616579 0.867271 0.62619 0.886975 0.608077 0.848331 0.616579 0.867271 0.600171 0.87493 0.635732 0.923809 0.623841 0.910504 0.636103 0.903601 0.62619 0.886975 0.636103 0.903601 0.623841 0.910504 0.588021 0.853252 0.582661 0.838445 0.601788 0.834336 0.596536 0.822798 0.601788 0.834336 0.582661 0.838445 0.578403 0.824726 0.574441 0.811378 0.591171 0.811224 0.58481 0.797556 0.591171 0.811224 0.574441 0.811378 0.646007 0.917646 0.636103 0.903601 0.648793 0.900091 0.64063 0.881909 0.648793 0.900091 0.636103 0.903601 0.62619 0.886975 0.616579 0.867271 0.63315 0.860783 0.63315 0.860783 0.616579 0.867271 0.608077 0.848331 0.625669 0.83623 0.608077 0.848331 0.601788 0.834336 0.617411 0.823892 0.601788 0.834336 0.596536 0.822798 0.60912 0.811065 0.596536 0.822798 0.591171 0.811224 0.600615 0.799891 0.591171 0.811224 0.58481 0.797556 0.591501 0.788369 0.58481 0.797556 0.576413 0.779486 0.568039 0.759284 0.568338 0.759328 0.580485 0.774301 0.658984 0.945263 0.647103 0.93512 0.655492 0.929654 0.646007 0.917646 0.655492 0.929654 0.647103 0.93512 0.665184 0.940752 0.655492 0.929654 0.664321 0.927872 0.656827 0.915409 0.664321 0.927872 0.655492 0.929654 0.520976 0.813699 0.529047 0.806931 0.539195 0.82045 0.519401 0.793365 0.519544 0.793154 0.529047 0.806931 0.568817 0.903025 0.586229 0.888733 0.598342 0.905743 0.586229 0.888733 0.568817 0.903025 0.555347 0.887663 0.615469 0.944243 0.599446 0.932564 0.611238 0.920501 0.598342 0.905743 0.611238 0.920501 0.599446 0.932564 0.575135 0.872089 0.555347 0.887663 0.543598 0.873414 0.565651 0.858519 0.543598 0.873414 0.535608 0.864681 0.557039 0.846242 0.535608 0.864681 0.528962 0.845486 0.525315 0.830741 0.539195 0.82045 0.548361 0.833506 0.624468 0.932922 0.611238 0.920501 0.623841 0.910504 0.623841 0.910504 0.611238 0.920501 0.598342 0.905743 0.611782 0.894413 0.598342 0.905743 0.586229 0.888733 0.600171 0.87493 0.586229 0.888733 0.575135 0.872089 0.588021 0.853252 0.575135 0.872089 0.565651 0.858519 0.578445 0.843335 0.565651 0.858519 0.557039 0.846242 0.568743 0.834515 0.557039 0.846242 0.548361 0.833506 0.546832 0.81438 0.558281 0.824778 0.548361 0.833506 0.539195 0.82045 0.529047 0.806931 0.533938 0.803864 0.519739 0.793197 0.533938 0.803864 0.529047 0.806931 0.64744 0.958175 0.63109 0.952369 0.637649 0.943093 0.624468 0.932922 0.637649 0.943093 0.63109 0.952369 0.651832 0.951535 0.637649 0.943093 0.647103 0.93512 0.635732 0.923809 0.647103 0.93512 0.637649 0.943093 0.429538 0.845735 0.403996 0.804672 0.424484 0.820371 0.550288 0.952527 0.553532 0.915284 0.571315 0.929492 0.602555 0.969341 0.590026 0.943142 0.608825 0.954349 0.510599 0.927053 0.522539 0.889878 0.537096 0.901629 0.644983 0.970898 0.626856 0.960948 0.645033 0.964596 0.485163 0.90852 0.492813 0.867329 0.508253 0.878831 0.615469 0.944243 0.63109 0.952369 0.626856 0.960948 0.645033 0.964596 0.626856 0.960948 0.63109 0.952369 0.608825 0.954349 0.590026 0.943142 0.599446 0.932564 0.583604 0.918369 0.599446 0.932564 0.590026 0.943142 0.571315 0.929492 0.553532 0.915284 0.568817 0.903025 0.555347 0.887663 0.568817 0.903025 0.553532 0.915284 0.537096 0.901629 0.522539 0.889878 0.543598 0.873414 0.535608 0.864681 0.543598 0.873414 0.522539 0.889878 0.508253 0.878831 0.492813 0.867329 0.509463 0.851425 0.488963 0.842742 0.509463 0.851425 0.492813 0.867329 0.444062 0.834198 0.424484 0.820371 0.430556 0.81689 0.410806 0.805815 0.430556 0.81689 0.424484 0.820371 0.455906 0.878733 0.461129 0.845593 0.476897 0.856094 0.476897 0.856094 0.461129 0.845593 0.469915 0.835294 0.451229 0.826911 0.469915 0.835294 0.461129 0.845593 0.631544 0.707832 0.631756 0.707995 0.63972 0.729267 0.631474 0.731174 0.63972 0.729267 0.645974 0.749494 0.6587 0.832785 0.662296 0.856282 0.646727 0.858604 0.653136 0.88059 0.646727 0.858604 0.662296 0.856282 0.666884 0.878076 0.671312 0.895513 0.659889 0.898193 0.666274 0.912658 0.659889 0.898193 0.671312 0.895513 0.656438 0.810218 0.63915 0.812424 0.636913 0.791147 0.6587 0.832785 0.642097 0.834917 0.63915 0.812424 0.632841 0.753142 0.645974 0.749494 0.650953 0.768285 0.65458 0.786214 0.636913 0.791147 0.634751 0.772088 0.653136 0.88059 0.659889 0.898193 0.648793 0.900091 0.656827 0.915409 0.648793 0.900091 0.659889 0.898193 0.642097 0.834917 0.646727 0.858604 0.63315 0.860783 0.64063 0.881909 0.63315 0.860783 0.646727 0.858604 0.63915 0.812424 0.621014 0.813878 0.619428 0.790889 0.642097 0.834917 0.625743 0.836279 0.621014 0.813878 0.632841 0.753142 0.634751 0.772088 0.618919 0.770332 0.619428 0.790889 0.618919 0.770332 0.634751 0.772088 0.631544 0.707832 0.631474 0.731174 0.624136 0.72955 0.620552 0.750476 0.624136 0.72955 0.631474 0.731174 0.666274 0.912658 0.671936 0.925113 0.664321 0.927872 0.671738 0.939135 0.664321 0.927872 0.671936 0.925113 0.675503 0.91014 0.679269 0.922927 0.671936 0.925113 0.677315 0.936865 0.671936 0.925113 0.679269 0.922927 0.689921 0.682685 0.700358 0.699756 0.693619 0.700476 0.697383 0.717171 0.693619 0.700476 0.700358 0.699756 0.71315 0.857544 0.701519 0.856481 0.704076 0.832554 0.701519 0.856481 0.71315 0.857544 0.709303 0.879507 0.698852 0.87815 0.709303 0.879507 0.706097 0.896114 0.696215 0.908758 0.69722 0.894761 0.706097 0.896114 0.719795 0.810276 0.7056 0.810024 0.706056 0.788647 0.716709 0.833253 0.704076 0.832554 0.7056 0.810024 0.698962 0.934768 0.695727 0.947678 0.693178 0.947185 0.695727 0.947678 0.69042 0.967706 0.693178 0.947185 0.723061 0.765403 0.705205 0.768405 0.703385 0.749734 0.72302 0.786083 0.706056 0.788647 0.705205 0.768405 0.688266 0.877251 0.688726 0.89406 0.680238 0.894294 0.68259 0.908877 0.680238 0.894294 0.688726 0.89406 0.687963 0.855794 0.674722 0.85561 0.672209 0.832284 0.677687 0.877146 0.674722 0.85561 0.687963 0.855794 0.687804 0.810634 0.67078 0.810251 0.670137 0.788601 0.687798 0.832451 0.672209 0.832284 0.67078 0.810251 0.687478 0.750044 0.687644 0.769142 0.670407 0.7671 0.670137 0.788601 0.670407 0.7671 0.687644 0.769142 0.68825 0.68208 0.689017 0.682045 0.687564 0.700886 0.676278 0.716018 0.68051 0.69994 0.687564 0.700886 0.687355 0.718015 0.687367 0.733596 0.673492 0.731114 0.671587 0.74745 0.673492 0.731114 0.687367 0.733596 0.708944 0.715346 0.715863 0.729999 0.700647 0.733101 0.703385 0.749734 0.700647 0.733101 0.715863 0.729999 0.689345 0.908362 0.690129 0.921281 0.684831 0.921809 0.690719 0.933807 0.686798 0.934214 0.684831 0.921809 0.703425 0.909878 0.701276 0.922465 0.695557 0.921537 0.694735 0.934011 0.695557 0.921537 0.701276 0.922465 0.746917 0.699663 0.747076 0.699934 0.751014 0.723178 0.742573 0.725326 0.751014 0.723178 0.754508 0.745859 0.746206 0.83519 0.739441 0.861271 0.726121 0.859066 0.721061 0.88117 0.726121 0.859066 0.739441 0.861271 0.721061 0.88117 0.732978 0.883 0.726737 0.900289 0.716402 0.898111 0.726737 0.900289 0.720813 0.914533 0.752902 0.813033 0.733307 0.812735 0.735803 0.791758 0.746206 0.83519 0.730282 0.834902 0.733307 0.812735 0.701954 0.949955 0.698855 0.948723 0.704232 0.936385 0.701954 0.949955 0.69042 0.967706 0.698855 0.948723 0.74017 0.750199 0.754508 0.745859 0.756664 0.768528 0.755991 0.791198 0.735803 0.791758 0.737981 0.771443 0.698855 0.948723 0.695727 0.947678 0.698962 0.934768 0.698855 0.948723 0.69042 0.967706 0.695727 0.947678 0.716402 0.898111 0.706097 0.896114 0.709303 0.879507 0.706097 0.896114 0.716402 0.898111 0.712194 0.911987 0.726121 0.859066 0.71315 0.857544 0.716709 0.833253 0.721061 0.88117 0.709303 0.879507 0.71315 0.857544 0.735803 0.791758 0.733307 0.812735 0.719795 0.810276 0.730282 0.834902 0.716709 0.833253 0.719795 0.810276 0.74017 0.750199 0.737981 0.771443 0.727152 0.765512 0.72302 0.786083 0.727152 0.765512 0.737981 0.771443 0.746917 0.699663 0.742573 0.725326 0.737264 0.721671 0.731874 0.744203 0.737264 0.721671 0.742573 0.725326 0.712194 0.911987 0.708411 0.92442 0.701276 0.922465 0.698962 0.934768 0.701276 0.922465 0.708411 0.92442 0.712194 0.911987 0.720813 0.914533 0.71534 0.926805 0.709343 0.938318 0.704232 0.936385 0.708411 0.92442 0.693178 0.947185 0.690768 0.947055 0.690719 0.933807 0.693178 0.947185 0.69042 0.967706 0.690768 0.947055 0.696215 0.908758 0.695557 0.921537 0.690129 0.921281 0.690719 0.933807 0.690129 0.921281 0.695557 0.921537 0.698852 0.87815 0.69722 0.894761 0.688726 0.89406 0.689345 0.908362 0.688726 0.89406 0.69722 0.894761 0.701519 0.856481 0.687963 0.855794 0.687798 0.832451 0.698852 0.87815 0.688266 0.877251 0.687963 0.855794 0.7056 0.810024 0.687804 0.810634 0.68781 0.789684 0.704076 0.832554 0.687798 0.832451 0.687804 0.810634 0.703385 0.749734 0.705205 0.768405 0.687644 0.769142 0.706056 0.788647 0.68781 0.789684 0.687644 0.769142 0.697383 0.717171 0.700647 0.733101 0.687367 0.733596 0.687478 0.750044 0.687367 0.733596 0.700647 0.733101 0.689541 0.682362 0.693619 0.700476 0.687564 0.700886 0.687355 0.718015 0.687564 0.700886 0.693619 0.700476 0.68259 0.908877 0.684831 0.921809 0.679269 0.922927 0.686798 0.934214 0.682691 0.935099 0.679269 0.922927 0.677687 0.877146 0.680238 0.894294 0.671312 0.895513 0.675503 0.91014 0.671312 0.895513 0.680238 0.894294 0.672209 0.832284 0.674722 0.85561 0.662296 0.856282 0.666884 0.878076 0.662296 0.856282 0.674722 0.85561 0.67078 0.810251 0.656438 0.810218 0.65458 0.786214 0.672209 0.832284 0.6587 0.832785 0.656438 0.810218 0.671587 0.74745 0.670407 0.7671 0.654838 0.763589 0.65458 0.786214 0.654838 0.763589 0.670407 0.7671 0.676278 0.716018 0.673492 0.731114 0.659986 0.725469 0.656363 0.742425 0.659986 0.725469 0.673492 0.731114 0.687641 0.682268 0.68825 0.68208 0.68051 0.69994 0.66595 0.710848 0.674118 0.697053 0.68051 0.69994 0.802705 0.758157 0.802831 0.75833 0.802708 0.779135 0.794527 0.777884 0.802708 0.779135 0.801067 0.797585 0.777926 0.878781 0.757342 0.872255 0.76478 0.855038 0.757342 0.872255 0.777926 0.878781 0.76809 0.896829 0.749519 0.889738 0.76809 0.896829 0.758092 0.912211 0.742049 0.904459 0.758092 0.912211 0.747748 0.924989 0.792662 0.844081 0.770739 0.8415 0.776239 0.828632 0.788641 0.8582 0.76478 0.855038 0.770739 0.8415 0.710853 0.954352 0.706764 0.951227 0.71755 0.940143 0.710853 0.954352 0.69042 0.967706 0.706764 0.951227 0.788019 0.796594 0.801067 0.797585 0.798836 0.814751 0.795844 0.830555 0.776239 0.828632 0.782053 0.813377 0.706764 0.951227 0.701954 0.949955 0.709343 0.938318 0.706764 0.951227 0.69042 0.967706 0.701954 0.949955 0.742049 0.904459 0.726737 0.900289 0.732978 0.883 0.726737 0.900289 0.742049 0.904459 0.734483 0.917301 0.76478 0.855038 0.757342 0.872255 0.739441 0.861271 0.732978 0.883 0.739441 0.861271 0.757342 0.872255 0.776239 0.828632 0.770739 0.8415 0.753292 0.824027 0.746206 0.83519 0.753292 0.824027 0.770739 0.8415 0.788019 0.796594 0.782053 0.813377 0.769032 0.801881 0.76126 0.813414 0.769032 0.801881 0.782053 0.813377 0.802705 0.758157 0.794527 0.777884 0.788556 0.773555 0.778259 0.789001 0.788556 0.773555 0.794527 0.777884 0.720813 0.914533 0.734483 0.917301 0.726565 0.928961 0.71755 0.940143 0.709343 0.938318 0.71534 0.926805 0.734483 0.917301 0.747748 0.924989 0.736908 0.935616 0.724731 0.94523 0.71755 0.940143 0.726565 0.928961 0.864533 0.806127 0.863668 0.824832 0.852994 0.820147 0.852994 0.820147 0.863668 0.824832 0.860516 0.840765 0.813582 0.908385 0.794836 0.894392 0.805841 0.879412 0.794836 0.894392 0.813582 0.908385 0.798564 0.922639 0.783434 0.909382 0.798564 0.922639 0.782394 0.935804 0.758042 0.934706 0.771137 0.922933 0.782394 0.935804 0.839445 0.880339 0.816386 0.866239 0.826092 0.854558 0.8273 0.893973 0.805841 0.879412 0.816386 0.866239 0.715765 0.96291 0.713893 0.958288 0.730111 0.951637 0.715765 0.96291 0.69042 0.967706 0.713893 0.958288 0.843226 0.833251 0.860516 0.840765 0.856235 0.854218 0.851665 0.868012 0.826092 0.854558 0.834748 0.84403 0.713893 0.958288 0.710853 0.954352 0.724731 0.94523 0.713893 0.958288 0.69042 0.967706 0.710853 0.954352 0.783434 0.909382 0.771137 0.922933 0.758092 0.912211 0.758092 0.912211 0.771137 0.922933 0.758042 0.934706 0.805841 0.879412 0.794836 0.894392 0.777926 0.878781 0.76809 0.896829 0.777926 0.878781 0.794836 0.894392 0.826092 0.854558 0.816386 0.866239 0.799537 0.845857 0.788641 0.8582 0.799537 0.845857 0.816386 0.866239 0.843226 0.833251 0.834748 0.84403 0.821677 0.827538 0.826092 0.854558 0.810675 0.836213 0.821677 0.827538 0.864516 0.806129 0.852994 0.820147 0.846967 0.812086 0.833579 0.819588 0.846967 0.812086 0.852994 0.820147 0.747748 0.924989 0.758042 0.934706 0.744578 0.944007 0.730111 0.951637 0.724731 0.94523 0.736908 0.935616 0.758042 0.934706 0.766077 0.946682 0.750228 0.954132 0.733704 0.959336 0.730111 0.951637 0.744578 0.944007 0.959778 0.833836 0.953274 0.858076 0.939795 0.846095 0.828303 0.920824 0.845011 0.908113 0.86991 0.934308 0.79125 0.946691 0.777896 0.972 0.772235 0.956997 0.859825 0.897153 0.874398 0.886861 0.895862 0.91717 0.754117 0.962933 0.772235 0.956997 0.777896 0.972 0.890144 0.876187 0.906342 0.865792 0.92609 0.889128 0.750228 0.954132 0.754117 0.962933 0.735853 0.966002 0.754117 0.962933 0.750228 0.954132 0.766077 0.946682 0.79125 0.946691 0.782394 0.935804 0.798564 0.922639 0.772235 0.956997 0.766077 0.946682 0.782394 0.935804 0.828303 0.920824 0.813582 0.908385 0.8273 0.893973 0.810255 0.93402 0.798564 0.922639 0.813582 0.908385 0.874398 0.886861 0.859825 0.897153 0.839445 0.880339 0.845011 0.908113 0.8273 0.893973 0.839445 0.880339 0.890144 0.876187 0.873629 0.859101 0.894905 0.852005 0.874398 0.886861 0.851665 0.868012 0.873629 0.859101 0.975686 0.821317 0.981006 0.821042 0.959778 0.833836 0.954257 0.830493 0.959778 0.833836 0.939795 0.846095 0.922429 0.856224 0.92609 0.889128 0.906342 0.865792 0.933338 0.838727 0.939795 0.846095 0.922429 0.856224 0.906342 0.865792 0.894905 0.852005 0.914155 0.845556 0.735703 0.972303 0.69042 0.967706 0.716718 0.966896 0.733704 0.959336 0.735853 0.966002 0.716718 0.966896 0.716718 0.966896 0.69042 0.967706 0.715765 0.96291 0.654902 0.420579 0.65349 0.376705 0.669184 0.382259 0.667049 0.542892 0.644064 0.552493 0.650023 0.512158 0.669536 0.580535 0.652303 0.585553 0.644064 0.552493 0.668875 0.50641 0.650023 0.512158 0.654521 0.485451 0.669418 0.486235 0.654521 0.485451 0.655265 0.453037 0.655265 0.453037 0.654902 0.420579 0.668989 0.420925 0.661699 0.611731 0.652303 0.585553 0.669536 0.580535 0.677844 0.644855 0.661699 0.611731 0.673613 0.609757 0.65349 0.376705 0.652602 0.329255 0.666388 0.327281 0.591055 0.379463 0.565408 0.380808 0.566775 0.334868 0.590613 0.417848 0.564058 0.417787 0.565408 0.380808 0.565094 0.449444 0.564058 0.417787 0.590613 0.417848 0.565905 0.482944 0.565094 0.449444 0.591143 0.450804 0.570386 0.522273 0.565905 0.482944 0.592458 0.483101 0.582505 0.559804 0.570386 0.522273 0.595948 0.518485 0.606904 0.600047 0.582505 0.559804 0.606181 0.554276 0.627295 0.6277 0.606904 0.600047 0.624921 0.595879 0.64516 0.658805 0.627295 0.6277 0.637814 0.623125 0.65349 0.376705 0.619181 0.377855 0.620854 0.327598 0.619394 0.418319 0.619181 0.377855 0.65349 0.376705 0.620332 0.452669 0.619394 0.418319 0.654902 0.420579 0.621662 0.484747 0.620332 0.452669 0.655265 0.453037 0.561184 0.618036 0.577425 0.601637 0.566747 0.623508 0.558752 0.612897 0.557118 0.605076 0.577425 0.601637 0.642471 0.590998 0.629721 0.55485 0.644064 0.552493 0.661699 0.611731 0.65078 0.6172 0.642471 0.590998 0.666927 0.649465 0.65078 0.6172 0.661699 0.611731 0.654441 0.306309 0.66801 0.304695 0.666388 0.327281 0.592023 0.332097 0.566775 0.334868 0.56821 0.307775 0.624085 0.30414 0.654441 0.306309 0.652602 0.329255 0.543997 0.331545 0.546798 0.305923 0.56821 0.307775 0.715297 0.323799 0.715405 0.300492 0.73571 0.298463 0.715297 0.323799 0.666388 0.327281 0.66801 0.304695 0.660737 0.257628 0.673746 0.254872 0.670337 0.282636 0.600129 0.27778 0.571385 0.278185 0.577205 0.243586 0.636014 0.252487 0.660737 0.257628 0.657114 0.283888 0.556486 0.244532 0.577205 0.243586 0.571385 0.278185 0.716961 0.2445369 0.732097 0.238495 0.733432 0.272986 0.673746 0.254872 0.716961 0.2445369 0.716172 0.277618 0.621079 0.02454996 0.62133 0.02393096 0.655677 0.05421996 0.621005 0.02477598 0.621079 0.02454996 0.642712 0.06817996 0.626314 0.06992298 0.620545 0.02460497 0.621005 0.02477598 0.609414 0.06546896 0.619894 0.02428597 0.620202 0.02443397 0.619631 0.02421796 0.619894 0.02428597 0.609414 0.06546896 0.62133 0.02393096 0.621426 0.02363497 0.659802 0.04767894 0.652692 0.092763 0.671757 0.07435995 0.687004 0.09678 0.645916 0.09708595 0.652692 0.092763 0.662232 0.118299 0.632101 0.11086 0.629308 0.08899396 0.645916 0.09708595 0.602705 0.100995 0.606285 0.08225798 0.617464 0.08468598 0.595942 0.08369499 0.606285 0.08225798 0.602705 0.100995 0.671757 0.07435995 0.675889 0.064233 0.691833 0.08400696 0.669818 0.145252 0.700729 0.123368 0.710068 0.148102 0.658401 0.1503069 0.669818 0.145252 0.675536 0.172238 0.63813 0.16301 0.6352 0.136011 0.658401 0.1503069 0.596964 0.154684 0.599918 0.126943 0.617313 0.128482 0.578865 0.132076 0.599918 0.126943 0.596964 0.154684 0.700729 0.123368 0.705821 0.113313 0.718692 0.137317 0.676583 0.201526 0.715362 0.182759 0.716484 0.2131209 0.663608 0.206874 0.676583 0.201526 0.676052 0.228366 0.641869 0.22435 0.641156 0.193838 0.663608 0.206874 0.61482 0.215884 0.583669 0.212149 0.596876 0.18093 0.93277 0.747877 0.950909 0.747783 0.948713 0.761586 0.715362 0.182759 0.727084 0.173341 0.730635 0.2057819 0.663847 0.232658 0.676052 0.228366 0.673746 0.254872 0.641869 0.22435 0.663847 0.232658 0.660737 0.257628 0.607436 0.2467499 0.577205 0.243586 0.583669 0.212149 0.56187 0.210741 0.583669 0.212149 0.577205 0.243586 0.716484 0.2131209 0.730635 0.2057819 0.732097 0.238495 0.676052 0.228366 0.716484 0.2131209 0.716961 0.2445369 0.675536 0.172238 0.710068 0.148102 0.715362 0.182759 0.662622 0.177649 0.675536 0.172238 0.676583 0.201526 0.641156 0.193838 0.63813 0.16301 0.662622 0.177649 0.596876 0.18093 0.596964 0.154684 0.616908 0.154439 0.936053 0.72047 0.952974 0.720438 0.950909 0.747783 0.710068 0.148102 0.718692 0.137317 0.727084 0.173341 0.662232 0.118299 0.687004 0.09678 0.700729 0.123368 0.653055 0.12317 0.662232 0.118299 0.669818 0.145252 0.6352 0.136011 0.632101 0.11086 0.653055 0.12317 0.599918 0.126943 0.602705 0.100995 0.617236 0.104273 0.588517 0.1045989 0.602705 0.100995 0.599918 0.126943 0.687004 0.09678 0.691833 0.08400696 0.705821 0.113313 0.642712 0.06817996 0.655677 0.05421996 0.671757 0.07435995 0.638519 0.07174795 0.642712 0.06817996 0.652692 0.092763 0.629308 0.08899396 0.626314 0.06992298 0.638519 0.07174795 0.606285 0.08225798 0.609414 0.06546896 0.617384 0.067478 0.602925 0.06402295 0.609414 0.06546896 0.606285 0.08225798 0.655677 0.05421996 0.659802 0.04767894 0.675889 0.064233 0.541069 0.416957 0.542287 0.379721 0.565408 0.380808 0.542287 0.379721 0.543997 0.331545 0.566775 0.334868 0.654258 0.654974 0.637814 0.623125 0.65078 0.6172 0.65078 0.6172 0.637814 0.623125 0.624921 0.595879 0.624921 0.595879 0.606181 0.554276 0.629721 0.55485 0.557273 0.597146 0.558416 0.590031 0.577425 0.601637 0.577425 0.601637 0.563322 0.583755 0.568734 0.579136 0.592458 0.483101 0.591143 0.450804 0.620332 0.452669 0.591143 0.450804 0.590613 0.417848 0.619394 0.418319 0.619394 0.418319 0.590613 0.417848 0.591055 0.379463 0.619181 0.377855 0.591055 0.379463 0.592023 0.332097 0.620854 0.327598 0.592023 0.332097 0.59509 0.305812 0.628845 0.279983 0.600129 0.27778 0.607436 0.2467499 0.636014 0.252487 0.607436 0.2467499 0.61482 0.215884 0.61482 0.215884 0.617329 0.184895 0.641156 0.193838 0.617329 0.184895 0.616908 0.154439 0.63813 0.16301 0.616908 0.154439 0.617313 0.128482 0.6352 0.136011 0.617313 0.128482 0.617236 0.104273 0.632101 0.11086 0.617236 0.104273 0.617464 0.08468598 0.629308 0.08899396 0.617464 0.08468598 0.617384 0.067478 0.626314 0.06992298 0.617384 0.067478 0.620202 0.02443397 0.620545 0.02460497 0.748722 0.412118 0.724798 0.419133 0.7202 0.377343 0.724798 0.419133 0.668989 0.420925 0.669184 0.382259 0.738596 0.323999 0.745866 0.373467 0.7202 0.377343 0.7202 0.377343 0.669184 0.382259 0.666388 0.327281 0.930658 0.763252 0.948713 0.761586 0.948344 0.778791 0.948713 0.761586 0.950909 0.747783 0.964848 0.749831 0.924626 0.753436 0.93277 0.747877 0.930658 0.763252 0.964848 0.749831 0.950909 0.747783 0.952974 0.720438 0.922483 0.718079 0.936053 0.72047 0.93277 0.747877 0.895525 0.71386 0.902301 0.688922 0.923734 0.692739 0.922483 0.718079 0.923734 0.692739 0.937691 0.700413 0.937691 0.700413 0.954673 0.69806 0.952974 0.720438 0.954673 0.69806 0.972392 0.69702 0.971711 0.723389 0.941014 0.660844 0.950715 0.660043 0.953678 0.676309 0.927311 0.673574 0.932436 0.656497 0.941014 0.660844 0.922019 0.655136 0.932436 0.656497 0.927311 0.673574 0.953678 0.676309 0.950715 0.660043 0.96012 0.657984 0.939559 0.678936 0.953678 0.676309 0.954673 0.69806 0.923734 0.692739 0.927311 0.673574 0.939559 0.678936 0.91248 0.668477 0.927311 0.673574 0.923734 0.692739 0.953678 0.676309 0.96753 0.673611 0.972392 0.69702 0.950715 0.660043 0.941921 0.635687 0.942035 0.635586 0.941788 0.635648 0.941921 0.635687 0.950715 0.660043 0.932436 0.656497 0.941683 0.635633 0.941788 0.635648 0.941513 0.635535 0.941683 0.635633 0.932436 0.656497 0.565094 0.449444 0.541597 0.451785 0.541069 0.416957 0.747838 0.448583 0.729446 0.449895 0.724798 0.419133 0.724798 0.419133 0.729446 0.449895 0.66978 0.452873 0.565905 0.482944 0.542767 0.484777 0.541597 0.451785 0.746432 0.483483 0.733259 0.484852 0.729446 0.449895 0.729446 0.449895 0.733259 0.484852 0.669418 0.486235 0.650023 0.512158 0.643767 0.510747 0.634793 0.497154 0.634793 0.497154 0.620695 0.490799 0.621662 0.484747 0.638676 0.527586 0.643767 0.510747 0.650023 0.512158 0.625684 0.531376 0.638676 0.527586 0.644064 0.552493 0.595948 0.518485 0.598214 0.515511 0.606277 0.529913 0.606181 0.554276 0.606277 0.529913 0.625684 0.531376 0.621662 0.484747 0.620695 0.490799 0.600607 0.498922 0.600607 0.498922 0.598214 0.515511 0.595948 0.518485 0.525641 0.642524 0.53576 0.651206 0.519655 0.664536 0.53576 0.651206 0.54749 0.657646 0.539153 0.667936 0.517824 0.629806 0.525641 0.642524 0.498767 0.65908 0.479656 0.618885 0.513433 0.615996 0.517824 0.629806 0.505541 0.575676 0.520188 0.579534 0.515575 0.590753 0.485073 0.588659 0.515575 0.590753 0.513433 0.615996 0.534459 0.539011 0.545934 0.544714 0.53234 0.564584 0.52268 0.564119 0.53234 0.564584 0.520188 0.579534 0.561184 0.618036 0.566747 0.623508 0.552365 0.640497 0.566747 0.623508 0.573668 0.625935 0.562116 0.646071 0.536296 0.623628 0.558752 0.612897 0.561184 0.618036 0.532379 0.610163 0.557118 0.605076 0.558752 0.612897 0.539013 0.581502 0.558416 0.590031 0.557273 0.597146 0.533588 0.59246 0.557273 0.597146 0.557118 0.605076 0.568734 0.579136 0.563322 0.583755 0.54629 0.570777 0.54629 0.570777 0.563322 0.583755 0.558416 0.590031 0.54749 0.657646 0.53576 0.651206 0.552365 0.640497 0.54629 0.570777 0.53234 0.564584 0.545934 0.544714 0.536296 0.623628 0.542427 0.631787 0.525641 0.642524 0.532379 0.610163 0.536296 0.623628 0.517824 0.629806 0.532379 0.610163 0.513433 0.615996 0.515575 0.590753 0.533588 0.59246 0.515575 0.590753 0.520188 0.579534 0.539013 0.581502 0.520188 0.579534 0.53234 0.564584 0.542427 0.631787 0.552365 0.640497 0.53576 0.651206 0.557118 0.605076 0.557273 0.597146 0.577425 0.601637 0.558752 0.612897 0.577425 0.601637 0.561184 0.618036 0.577425 0.601637 0.573668 0.625935 0.566747 0.623508 0.577425 0.601637 0.558416 0.590031 0.563322 0.583755 0.715405 0.300492 0.66801 0.304695 0.670337 0.282636 0.73571 0.298463 0.715405 0.300492 0.716172 0.277618 0.56821 0.307775 0.546798 0.305923 0.550796 0.280274 0.59509 0.305812 0.56821 0.307775 0.571385 0.278185 0.624085 0.30414 0.59509 0.305812 0.600129 0.27778 0.654441 0.306309 0.624085 0.30414 0.628845 0.279983 0.66801 0.304695 0.654441 0.306309 0.657114 0.283888 1.257179 0.645931 1.250481 0.612269 1.225419 0.62324 1.229178 0.655733 1.239335 0.694272 1.26557 0.685433 1.239335 0.694272 1.249691 0.734862 1.275859 0.724496 1.323016 0.831513 1.31448 0.796012 1.303714 0.802356 1.289918 0.771568 1.275859 0.724496 1.249691 0.734862 1.303714 0.802356 1.289918 0.771568 1.263047 0.785891 1.323016 0.831513 1.303714 0.802356 1.277467 0.821357 1.250481 0.612269 1.240759 0.576783 1.223063 0.589744 1.31448 0.796012 1.305285 0.764178 1.289918 0.771568 1.305285 0.764178 1.297826 0.717829 1.275859 0.724496 1.26557 0.685433 1.275859 0.724496 1.297826 0.717829 1.257179 0.645931 1.26557 0.685433 1.291629 0.677799 1.250481 0.612269 1.257179 0.645931 1.284717 0.636904 1.240759 0.576783 1.250481 0.612269 1.277291 0.601764 1.103917 0.199038 1.049585 0.157495 1.048608 0.1586509 1.103917 0.199038 1.086262 0.215111 1.114755 0.259558 1.142145 0.244418 1.114755 0.259558 1.127587 0.286248 1.182575 0.329578 1.170495 0.299454 1.139928 0.315581 1.194331 0.361713 1.160915 0.374735 1.174525 0.407793 1.227735 0.466561 1.216522 0.430047 1.188301 0.441389 1.265565 0.563417 1.255828 0.539963 1.232929 0.553361 1.117933 0.180204 1.050837 0.1563799 1.049585 0.157495 1.117933 0.180204 1.103917 0.199038 1.142145 0.244418 1.173479 0.221288 1.142145 0.244418 1.156924 0.270023 1.207312 0.28956 1.170495 0.299454 1.182575 0.329578 1.227854 0.353545 1.194331 0.361713 1.205954 0.395247 1.254318 0.453865 1.244294 0.418161 1.216522 0.430047 1.296059 0.551778 1.285103 0.526422 1.255828 0.539963 1.265565 0.563417 1.277291 0.601764 1.303596 0.593839 1.277291 0.601764 1.284717 0.636904 1.308419 0.630751 1.312632 0.673188 1.308419 0.630751 1.284717 0.636904 1.317311 0.7135 1.312632 0.673188 1.291629 0.677799 1.320442 0.758816 1.317311 0.7135 1.297826 0.717829 1.322512 0.793387 1.320442 0.758816 1.305285 0.764178 1.240759 0.576783 1.232929 0.553361 1.224305 0.55723 1.227378 0.533568 1.216077 0.516525 1.220884 0.536487 1.255828 0.539963 1.248021 0.521114 1.227378 0.533568 1.285103 0.526422 1.276084 0.507547 1.248021 0.521114 1.248021 0.521114 1.240476 0.501969 1.216077 0.516525 1.276084 0.507547 1.267798 0.48962 1.240476 0.501969 1.225419 0.62324 1.186265 0.628137 1.188643 0.659662 1.184842 0.60301 1.186265 0.628137 1.225419 0.62324 1.047148 0.1605499 1.06298 0.232287 1.086262 0.215111 1.06298 0.232287 1.075939 0.278537 1.114755 0.259558 1.075939 0.278537 1.085551 0.306832 1.127587 0.286248 1.096435 0.33469 1.108091 0.363399 1.150052 0.344239 1.120241 0.391563 1.135484 0.42641 1.174525 0.407793 1.188301 0.441389 1.147871 0.460676 1.157159 0.497019 1.186609 0.583056 1.184842 0.60301 1.223063 0.589744 1.216077 0.516525 1.167014 0.532699 1.179884 0.561671 1.323016 0.831513 1.322512 0.793387 1.31448 0.796012 1.193263 0.253295 1.156924 0.270023 1.170495 0.299454 1.156924 0.270023 1.127587 0.286248 1.139928 0.315581 1.096435 0.33469 1.139928 0.315581 1.127587 0.286248 1.267798 0.48962 1.254318 0.453865 1.227735 0.466561 1.240476 0.501969 1.227735 0.466561 1.202525 0.479124 1.167014 0.532699 1.216077 0.516525 1.202525 0.479124 1.244294 0.418161 1.236153 0.386156 1.205954 0.395247 1.216522 0.430047 1.205954 0.395247 1.174525 0.407793 1.135484 0.42641 1.147871 0.460676 1.188301 0.441389 1.218245 0.321491 1.182575 0.329578 1.194331 0.361713 1.194331 0.361713 1.182575 0.329578 1.150052 0.344239 1.108091 0.363399 1.120241 0.391563 1.160915 0.374735 1.179884 0.561671 1.186609 0.583056 1.224305 0.55723 1.232929 0.553361 1.227378 0.533568 1.220884 0.536487 1.048038 0.957921 1.03538 0.969427 1.054663 0.965852 1.050347 0.927524 1.055169 0.931649 1.067083 0.920527 1.056825 0.942271 1.056345 0.948744 1.069094 0.945959 1.179698 0.74978 1.178665 0.748657 1.159333 0.773468 1.15869 0.811228 1.17526 0.78287 1.159333 0.773468 1.143846 0.836421 1.15869 0.811228 1.139272 0.800785 1.120887 0.86335 1.143846 0.836421 1.119529 0.82707 1.101598 0.884425 1.120887 0.86335 1.100253 0.85353 1.081596 0.905228 1.101598 0.884425 1.083991 0.877 1.067083 0.920527 1.081596 0.905228 1.067882 0.899282 1.233573 0.857146 1.249653 0.831384 1.248408 0.830811 1.210895 0.874706 1.233573 0.857146 1.221429 0.845912 1.186722 0.890951 1.210895 0.874706 1.197976 0.860133 1.159137 0.907707 1.186722 0.890951 1.168149 0.87797 1.132927 0.92043 1.159137 0.907707 1.142302 0.893183 1.106669 0.931895 1.132927 0.92043 1.119024 0.906308 1.106669 0.931895 1.09394 0.920655 1.067747 0.933952 1.282545 0.93903 1.282318 0.938331 1.253439 0.942082 1.256034 0.956311 1.253439 0.942082 1.226265 0.945882 1.200887 0.970532 1.229482 0.964749 1.226265 0.945882 1.170418 0.97362 1.200887 0.970532 1.195328 0.950423 1.143783 0.971606 1.170418 0.97362 1.164737 0.953312 1.103458 0.969827 1.143783 0.971606 1.136008 0.955149 1.103458 0.969827 1.100192 0.956122 1.063376 0.955914 1.056345 0.948744 1.048038 0.957921 1.063376 0.955914 1.100192 0.956122 1.105505 0.937418 1.069094 0.945959 1.136008 0.955149 1.144053 0.928846 1.105505 0.937418 1.164737 0.953312 1.171675 0.925038 1.144053 0.928846 1.195328 0.950423 1.2025 0.923786 1.171675 0.925038 1.226265 0.945882 1.230622 0.922945 1.2025 0.923786 1.253439 0.942082 1.256401 0.92449 1.230622 0.922945 1.282318 0.938331 1.282304 0.937397 1.256401 0.92449 1.055169 0.931649 1.056825 0.942271 1.067747 0.933952 1.09394 0.920655 1.089165 0.902322 1.067083 0.920527 1.119024 0.906308 1.113798 0.88478 1.089165 0.902322 1.142302 0.893183 1.136362 0.867583 1.113798 0.88478 1.168149 0.87797 1.163456 0.851063 1.136362 0.867583 1.197976 0.860133 1.190413 0.836651 1.163456 0.851063 1.221429 0.845912 1.218301 0.827507 1.190413 0.836651 1.248408 0.830811 1.248807 0.829318 1.218301 0.827507 1.040435 0.921198 1.050347 0.927524 1.057458 0.915252 1.067882 0.899282 1.057644 0.885306 1.046632 0.907405 1.083991 0.877 1.070426 0.861027 1.057644 0.885306 1.100253 0.85353 1.085378 0.834589 1.070426 0.861027 1.119529 0.82707 1.103021 0.803572 1.085378 0.834589 1.139272 0.800785 1.123125 0.776835 1.103021 0.803572 1.159333 0.773468 1.147329 0.753456 1.123125 0.776835 1.177474 0.747098 1.147329 0.753456 1.159333 0.773468 1.461832 0.594417 1.438281 0.590088 1.431958 0.631074 1.414811 0.586629 1.385333 0.584595 1.383622 0.623845 1.355148 0.624248 1.355267 0.585258 1.330538 0.588116 1.416912 0.68107 1.434319 0.689655 1.453228 0.637317 1.383622 0.623845 1.376958 0.670038 1.399708 0.674182 1.331706 0.626575 1.333455 0.670026 1.353956 0.668671 1.395564 0.726005 1.409227 0.734746 1.434319 0.689655 1.376958 0.670038 1.365551 0.714324 1.38139 0.718962 1.333455 0.670026 1.333553 0.711801 1.349588 0.711744 1.335403 0.791739 1.323016 0.831513 1.340668 0.792715 1.345696 0.794624 1.323016 0.831513 1.350321 0.797976 1.367329 0.772032 1.375376 0.778867 1.409227 0.734746 1.350405 0.761024 1.358419 0.766495 1.38139 0.718962 1.342146 0.757069 1.349588 0.711744 1.333553 0.711801 1.335403 0.791739 1.342146 0.757069 1.331499 0.756835 1.358419 0.766495 1.350405 0.761024 1.340668 0.792715 1.375376 0.778867 1.367329 0.772032 1.350321 0.797976 1.355267 0.585258 1.353279 0.540334 1.325282 0.545677 1.417432 0.540302 1.383323 0.539357 1.385333 0.584595 1.468249 0.549505 1.443389 0.544786 1.438281 0.590088 1.538948 0.147184 1.507066 0.142504 1.501085 0.180402 1.491171 0.463962 1.512071 0.377644 1.473636 0.371508 1.468249 0.549505 1.491171 0.463962 1.459678 0.457811 1.528631 0.291126 1.535388 0.2280319 1.495498 0.2221 1.541547 0.09145796 1.532707 0.02580195 1.53169 0.02454698 1.512071 0.377644 1.528631 0.291126 1.487619 0.287838 1.538948 0.147184 1.541547 0.09145796 1.519179 0.08957898 1.323016 0.831513 1.328975 0.792137 1.322512 0.793387 1.228996 0.08154898 1.227959 0.08119195 1.249363 0.153116 1.271106 0.15216 1.249363 0.153116 1.260455 0.199928 1.291646 0.19565 1.260455 0.199928 1.266721 0.233446 1.30775 0.263358 1.27318 0.268888 1.287345 0.332756 1.330473 0.393641 1.319768 0.323485 1.287345 0.332756 1.341396 0.471801 1.330473 0.393641 1.30017 0.402951 1.353279 0.540334 1.341396 0.471801 1.313335 0.475677 1.417432 0.540302 1.417067 0.462053 1.383893 0.462807 1.386776 0.04626899 1.384727 0.045008 1.379273 0.114713 1.405672 0.1168799 1.379273 0.114713 1.380023 0.164885 1.415811 0.237686 1.415184 0.200515 1.379959 0.200901 1.41475 0.298218 1.415811 0.237686 1.379421 0.240769 1.414546 0.37764 1.41475 0.298218 1.377665 0.302269 1.417067 0.462053 1.414546 0.37764 1.381127 0.377191 1.328975 0.792137 1.331499 0.756835 1.320442 0.758816 1.331499 0.756835 1.333553 0.711801 1.317311 0.7135 1.312632 0.673188 1.317311 0.7135 1.333553 0.711801 1.308419 0.630751 1.312632 0.673188 1.333455 0.670026 1.303596 0.593839 1.308419 0.630751 1.331706 0.626575 1.296059 0.551778 1.303596 0.593839 1.330538 0.588116 1.281336 0.481923 1.296059 0.551778 1.325282 0.545677 1.30017 0.402951 1.262959 0.413227 1.281336 0.481923 1.247387 0.344339 1.262959 0.413227 1.30017 0.402951 1.236266 0.282148 1.247387 0.344339 1.287345 0.332756 1.226054 0.209874 1.230046 0.245689 1.266721 0.233446 1.225389 0.163017 1.226054 0.209874 1.260455 0.199928 1.227214 0.081954 1.225389 0.163017 1.249363 0.153116 1.350405 0.761024 1.342146 0.757069 1.335403 0.791739 1.342146 0.757069 1.350405 0.761024 1.365551 0.714324 1.353956 0.668671 1.349588 0.711744 1.365551 0.714324 1.355148 0.624248 1.353956 0.668671 1.376958 0.670038 1.355267 0.585258 1.355148 0.624248 1.383622 0.623845 1.383323 0.539357 1.353279 0.540334 1.355267 0.585258 1.383893 0.462807 1.351469 0.462047 1.353279 0.540334 1.381127 0.377191 1.346902 0.379582 1.351469 0.462047 1.341635 0.302017 1.346902 0.379582 1.381127 0.377191 1.337417 0.243833 1.341635 0.302017 1.377665 0.302269 1.33956 0.205826 1.337417 0.243833 1.379421 0.240769 1.354312 0.118412 1.34444 0.169588 1.380023 0.164885 1.383059 0.04629194 1.354312 0.118412 1.379273 0.114713 1.367329 0.772032 1.358419 0.766495 1.345696 0.794624 1.358419 0.766495 1.367329 0.772032 1.395564 0.726005 1.38139 0.718962 1.395564 0.726005 1.416912 0.68107 1.399708 0.674182 1.416912 0.68107 1.431958 0.631074 1.438281 0.590088 1.414811 0.586629 1.411305 0.62627 1.443389 0.544786 1.417432 0.540302 1.414811 0.586629 1.459678 0.457811 1.425316 0.452821 1.417432 0.540302 1.431097 0.370757 1.425316 0.452821 1.459678 0.457811 1.438231 0.285011 1.431097 0.370757 1.473636 0.371508 1.446971 0.222532 1.438231 0.285011 1.487619 0.287838 1.467163 0.143904 1.455824 0.181729 1.501085 0.180402 1.487958 0.08998095 1.467163 0.143904 1.507066 0.142504 1.530024 0.02532994 1.487958 0.08998095 1.519179 0.08957898 1.323016 0.831513 1.354529 0.801834 1.350321 0.797976 1.323016 0.831513 1.345696 0.794624 1.340668 0.792715 1.323016 0.831513 1.335403 0.791739 1.328975 0.792137 1.300904 0.2288359 1.266721 0.233446 1.27318 0.268888 1.230046 0.245689 1.236266 0.282148 1.27318 0.268888 1.34444 0.169588 1.33956 0.205826 1.379959 0.200901 1.412554 0.16516 1.380023 0.164885 1.379959 0.200901 1.535388 0.2280319 1.538017 0.186595 1.501085 0.180402 1.455824 0.181729 1.446971 0.222532 1.495498 0.2221 0.257179 0.645931 0.229178 0.655733 0.225419 0.62324 0.229178 0.655733 0.257179 0.645931 0.26557 0.685433 0.239335 0.694272 0.26557 0.685433 0.275859 0.724496 0.323016 0.831513 0.303714 0.802356 0.31448 0.796012 0.249691 0.734862 0.275859 0.724496 0.289918 0.771568 0.263047 0.785891 0.289918 0.771568 0.303714 0.802356 0.323016 0.831513 0.29757 0.853469 0.277466 0.821357 0.250481 0.612269 0.225419 0.62324 0.223063 0.589744 0.31448 0.796012 0.303714 0.802356 0.289918 0.771568 0.275859 0.724496 0.297826 0.717829 0.305285 0.764178 0.26557 0.685433 0.291629 0.677799 0.297826 0.717829 0.257179 0.645931 0.284717 0.636904 0.291629 0.677799 0.284717 0.636904 0.257179 0.645931 0.250481 0.612269 0.277291 0.601764 0.250481 0.612269 0.240759 0.576783 0.103917 0.199038 0.08626198 0.215111 0.048608 0.1586509 0.142145 0.244418 0.114755 0.259558 0.08626198 0.215111 0.156924 0.270023 0.127587 0.286248 0.114755 0.259558 0.182575 0.329578 0.150052 0.344239 0.139928 0.315581 0.174525 0.407793 0.160915 0.374735 0.194331 0.361713 0.202525 0.479124 0.188301 0.441389 0.216522 0.430047 0.265565 0.563417 0.240759 0.576783 0.232929 0.553361 0.117933 0.180204 0.103917 0.199038 0.04958498 0.157495 0.142145 0.244418 0.103917 0.199038 0.117933 0.180204 0.156924 0.270023 0.142145 0.244418 0.173479 0.221288 0.182575 0.329578 0.170495 0.299454 0.207312 0.28956 0.205954 0.395247 0.194331 0.361713 0.227854 0.353545 0.254318 0.453865 0.227735 0.466561 0.216522 0.430047 0.29606 0.551778 0.265565 0.563417 0.255828 0.539963 0.303595 0.593839 0.277291 0.601764 0.265565 0.563417 0.308419 0.630751 0.284717 0.636904 0.277291 0.601764 0.284717 0.636904 0.308419 0.630751 0.312632 0.673188 0.291629 0.677799 0.312632 0.673188 0.317311 0.7135 0.297826 0.717829 0.317311 0.7135 0.320442 0.758816 0.322512 0.793387 0.31448 0.796012 0.305285 0.764178 0.240759 0.576783 0.223063 0.589744 0.224305 0.55723 0.227378 0.533568 0.220884 0.536487 0.216077 0.516525 0.255828 0.539963 0.232929 0.553361 0.227378 0.533568 0.285103 0.526422 0.255828 0.539963 0.248021 0.521114 0.248021 0.521114 0.227378 0.533568 0.216077 0.516525 0.276084 0.507547 0.248021 0.521114 0.240476 0.501969 0.229178 0.655733 0.188643 0.659662 0.186265 0.628137 0.225419 0.62324 0.186265 0.628137 0.184842 0.60301 0.08626198 0.215111 0.06297999 0.232287 0.04714798 0.1605499 0.114755 0.259558 0.07593899 0.278537 0.06297999 0.232287 0.127587 0.286248 0.08555096 0.306832 0.07593899 0.278537 0.150052 0.344239 0.1080909 0.363399 0.09643501 0.33469 0.160915 0.374735 0.174525 0.407793 0.135484 0.42641 0.202525 0.479124 0.157159 0.497019 0.147871 0.460676 0.223063 0.589744 0.184842 0.60301 0.186609 0.583056 0.220884 0.536487 0.179884 0.561671 0.167014 0.532699 0.323016 0.831513 0.31448 0.796012 0.322512 0.793387 0.170495 0.299454 0.156924 0.270023 0.1932629 0.253295 0.170495 0.299454 0.139928 0.315581 0.127587 0.286248 0.08555096 0.306832 0.127587 0.286248 0.139928 0.315581 0.267798 0.48962 0.240476 0.501969 0.227735 0.466561 0.240476 0.501969 0.216077 0.516525 0.202525 0.479124 0.157159 0.497019 0.202525 0.479124 0.216077 0.516525 0.216522 0.430047 0.205954 0.395247 0.2361519 0.386156 0.188301 0.441389 0.174525 0.407793 0.205954 0.395247 0.135484 0.42641 0.174525 0.407793 0.188301 0.441389 0.194331 0.361713 0.182575 0.329578 0.218245 0.321491 0.194331 0.361713 0.160915 0.374735 0.150052 0.344239 0.150052 0.344239 0.160915 0.374735 0.120241 0.391563 0.224305 0.55723 0.186609 0.583056 0.179884 0.561671 0.232929 0.553361 0.224305 0.55723 0.220884 0.536487 0.054663 0.965852 0.03537994 0.969427 0.04803794 0.957921 0.067083 0.920527 0.05516898 0.931649 0.05034697 0.927524 0.069094 0.945959 0.05634498 0.948744 0.05682498 0.942271 0.159333 0.773468 0.178665 0.748657 0.179698 0.74978 0.15869 0.811228 0.139272 0.800785 0.159333 0.773468 0.143846 0.836421 0.119529 0.82707 0.139272 0.800785 0.120887 0.86335 0.100253 0.85353 0.119529 0.82707 0.101598 0.884425 0.08399099 0.877 0.100253 0.85353 0.08159595 0.905228 0.067882 0.899282 0.08399099 0.877 0.067083 0.920527 0.05745798 0.915252 0.067882 0.899282 0.233573 0.857146 0.221429 0.845912 0.248408 0.830811 0.210895 0.874706 0.1979759 0.860133 0.221429 0.845912 0.186722 0.890951 0.1681489 0.87797 0.1979759 0.860133 0.159137 0.907707 0.142301 0.893183 0.1681489 0.87797 0.132927 0.92043 0.119024 0.906308 0.142301 0.893183 0.106669 0.931895 0.09393996 0.920655 0.119024 0.906308 0.06774699 0.933952 0.09393996 0.920655 0.106669 0.931895 0.253439 0.942082 0.282318 0.938331 0.282545 0.93903 0.226265 0.945882 0.253439 0.942082 0.256034 0.956311 0.200887 0.970532 0.1953279 0.950423 0.226265 0.945882 0.170418 0.97362 0.164737 0.953312 0.1953279 0.950423 0.143783 0.971606 0.136008 0.955149 0.164737 0.953312 0.103458 0.969827 0.100192 0.956122 0.136008 0.955149 0.063376 0.955914 0.100192 0.956122 0.103458 0.969827 0.063376 0.955914 0.04803794 0.957921 0.05634498 0.948744 0.100192 0.956122 0.063376 0.955914 0.069094 0.945959 0.136008 0.955149 0.100192 0.956122 0.105505 0.937418 0.164737 0.953312 0.136008 0.955149 0.144053 0.928846 0.1953279 0.950423 0.164737 0.953312 0.171675 0.925038 0.226265 0.945882 0.1953279 0.950423 0.2025 0.923786 0.253439 0.942082 0.226265 0.945882 0.2306219 0.922945 0.282318 0.938331 0.253439 0.942082 0.256401 0.92449 0.06774699 0.933952 0.05682498 0.942271 0.05516898 0.931649 0.09393996 0.920655 0.06774699 0.933952 0.067083 0.920527 0.119024 0.906308 0.09393996 0.920655 0.08916497 0.902322 0.142301 0.893183 0.119024 0.906308 0.113798 0.88478 0.1681489 0.87797 0.142301 0.893183 0.136362 0.867583 0.1979759 0.860133 0.1681489 0.87797 0.163456 0.851063 0.221429 0.845912 0.1979759 0.860133 0.1904129 0.836651 0.248408 0.830811 0.221429 0.845912 0.2183009 0.827507 0.05745798 0.915252 0.05034697 0.927524 0.04043495 0.921198 0.067882 0.899282 0.05745798 0.915252 0.04663199 0.907405 0.08399099 0.877 0.067882 0.899282 0.05764394 0.885306 0.100253 0.85353 0.08399099 0.877 0.07042598 0.861027 0.119529 0.82707 0.100253 0.85353 0.08537799 0.834589 0.139272 0.800785 0.119529 0.82707 0.103021 0.803572 0.159333 0.773468 0.139272 0.800785 0.123125 0.776835 0.178665 0.748657 0.159333 0.773468 0.147329 0.753456 0.431958 0.631074 0.438281 0.590088 0.461832 0.594417 0.383622 0.623845 0.385333 0.584595 0.414811 0.586629 0.355148 0.624248 0.331706 0.626575 0.330538 0.588116 0.453228 0.637317 0.434319 0.689655 0.416912 0.68107 0.383622 0.623845 0.411305 0.62627 0.399708 0.674182 0.331706 0.626575 0.355148 0.624248 0.353956 0.668671 0.434319 0.689655 0.409227 0.734746 0.395564 0.726005 0.376958 0.670038 0.399708 0.674182 0.38139 0.718962 0.333455 0.670026 0.353956 0.668671 0.349588 0.711744 0.335403 0.791739 0.340668 0.792715 0.323016 0.831513 0.345696 0.794624 0.350321 0.797976 0.323016 0.831513 0.367329 0.772032 0.395564 0.726005 0.409227 0.734746 0.350405 0.761024 0.365551 0.714324 0.38139 0.718962 0.333553 0.711801 0.349588 0.711744 0.342146 0.757069 0.335403 0.791739 0.328975 0.792137 0.331499 0.756835 0.340668 0.792715 0.350405 0.761024 0.358419 0.766495 0.375376 0.778867 0.354529 0.801834 0.350321 0.797976 0.355267 0.585258 0.330538 0.588116 0.325282 0.545677 0.385333 0.584595 0.383323 0.539357 0.417432 0.540302 0.438281 0.590088 0.443389 0.544786 0.468249 0.549505 0.501085 0.180402 0.507066 0.142504 0.538948 0.147184 0.459678 0.457811 0.473636 0.371508 0.512071 0.377644 0.468249 0.549505 0.443389 0.544786 0.459678 0.457811 0.487619 0.287838 0.495498 0.2221 0.535389 0.2280319 0.541547 0.09145796 0.519179 0.08957898 0.53169 0.02454698 0.473636 0.371508 0.487619 0.287838 0.528631 0.291126 0.507066 0.142504 0.519179 0.08957898 0.541547 0.09145796 0.323016 0.831513 0.322512 0.793387 0.328975 0.792137 0.249363 0.153116 0.227959 0.08119195 0.228996 0.08154898 0.260455 0.199928 0.249363 0.153116 0.271106 0.15216 0.266722 0.233446 0.260455 0.199928 0.291646 0.19565 0.287345 0.332756 0.27318 0.268888 0.30775 0.263358 0.330473 0.393641 0.30017 0.402951 0.287345 0.332756 0.341396 0.471801 0.313335 0.475677 0.30017 0.402951 0.325282 0.545677 0.313335 0.475677 0.341396 0.471801 0.383323 0.539357 0.383893 0.462807 0.417067 0.462053 0.379273 0.114713 0.384727 0.045008 0.386776 0.04626899 0.380023 0.164885 0.379273 0.114713 0.405672 0.1168799 0.379421 0.240769 0.379959 0.200901 0.415184 0.200515 0.41475 0.298218 0.377665 0.302269 0.379421 0.240769 0.414546 0.37764 0.381127 0.377191 0.377665 0.302269 0.383893 0.462807 0.381127 0.377191 0.414546 0.37764 0.328975 0.792137 0.322512 0.793387 0.320442 0.758816 0.317311 0.7135 0.333553 0.711801 0.331499 0.756835 0.312632 0.673188 0.333455 0.670026 0.333553 0.711801 0.308419 0.630751 0.331706 0.626575 0.333455 0.670026 0.331706 0.626575 0.308419 0.630751 0.303595 0.593839 0.330538 0.588116 0.303595 0.593839 0.29606 0.551778 0.313335 0.475677 0.325282 0.545677 0.29606 0.551778 0.30017 0.402951 0.313335 0.475677 0.281336 0.481923 0.287345 0.332756 0.30017 0.402951 0.262959 0.413227 0.287345 0.332756 0.247387 0.344339 0.236266 0.282148 0.266722 0.233446 0.230046 0.245689 0.226054 0.209874 0.260455 0.199928 0.226054 0.209874 0.225389 0.163017 0.249363 0.153116 0.225389 0.163017 0.227214 0.081954 0.335403 0.791739 0.342146 0.757069 0.350405 0.761024 0.342146 0.757069 0.349588 0.711744 0.365551 0.714324 0.353956 0.668671 0.376958 0.670038 0.365551 0.714324 0.355148 0.624248 0.383622 0.623845 0.376958 0.670038 0.383622 0.623845 0.355148 0.624248 0.355267 0.585258 0.383323 0.539357 0.385333 0.584595 0.355267 0.585258 0.383893 0.462807 0.383323 0.539357 0.353279 0.540334 0.381127 0.377191 0.383893 0.462807 0.351469 0.462047 0.377665 0.302269 0.381127 0.377191 0.346902 0.379582 0.379421 0.240769 0.377665 0.302269 0.341635 0.302017 0.379421 0.240769 0.337417 0.243833 0.339559 0.205826 0.380023 0.164885 0.34444 0.169588 0.354312 0.118412 0.379273 0.114713 0.354312 0.118412 0.383059 0.04629194 0.367329 0.772032 0.350321 0.797976 0.345696 0.794624 0.358419 0.766495 0.38139 0.718962 0.395564 0.726005 0.416912 0.68107 0.395564 0.726005 0.38139 0.718962 0.431958 0.631074 0.416912 0.68107 0.399708 0.674182 0.438281 0.590088 0.431958 0.631074 0.411305 0.62627 0.443389 0.544786 0.438281 0.590088 0.414811 0.586629 0.459678 0.457811 0.443389 0.544786 0.417432 0.540302 0.473636 0.371508 0.459678 0.457811 0.425316 0.452821 0.473636 0.371508 0.431097 0.370757 0.438231 0.285011 0.487619 0.287838 0.438231 0.285011 0.446971 0.222532 0.501085 0.180402 0.455824 0.181729 0.467163 0.143904 0.507066 0.142504 0.467163 0.143904 0.487958 0.08998095 0.519179 0.08957898 0.487958 0.08998095 0.530024 0.02532994 0.323016 0.831513 0.350321 0.797976 0.354529 0.801834 0.323016 0.831513 0.340668 0.792715 0.345696 0.794624 0.323016 0.831513 0.328975 0.792137 0.335403 0.791739 0.27318 0.268888 0.266722 0.233446 0.300904 0.2288359 0.230046 0.245689 0.266722 0.233446 0.27318 0.268888 0.379959 0.200901 0.339559 0.205826 0.34444 0.169588 0.379959 0.200901 0.380023 0.164885 0.412554 0.16516 0.495498 0.2221 0.501085 0.180402 0.538017 0.186595 0.455824 0.181729 0.501085 0.180402 0.495498 0.2221 0.847238 0.375698 0.862982 0.369872 0.862187 0.414196 0.846977 0.536555 0.8488 0.499763 0.867862 0.506733 0.841636 0.574875 0.846977 0.536555 0.86902 0.548582 0.8488 0.499763 0.848395 0.480342 0.86327 0.479621 0.847562 0.446896 0.862184 0.44697 0.86327 0.479621 0.847961 0.414695 0.862187 0.414196 0.862184 0.44697 0.841636 0.574875 0.858806 0.581005 0.848328 0.606603 0.849202 0.320389 0.863061 0.322125 0.862982 0.369872 0.926232 0.371475 0.923985 0.32359 0.949489 0.325586 0.927475 0.410666 0.926232 0.371475 0.952395 0.372144 0.927475 0.410666 0.954809 0.410106 0.954312 0.443092 0.927224 0.444572 0.954312 0.443092 0.95349 0.478662 0.925386 0.477863 0.95349 0.478662 0.946346 0.520706 0.919167 0.51516 0.946346 0.520706 0.931236 0.559535 0.907251 0.552398 0.931236 0.559535 0.90343 0.598436 0.8857 0.593049 0.90343 0.598436 0.881409 0.624275 0.871318 0.619142 0.881409 0.624275 0.862238 0.653661 0.862982 0.369872 0.863061 0.322125 0.894896 0.319803 0.862982 0.369872 0.897668 0.370445 0.898114 0.411514 0.862187 0.414196 0.898114 0.411514 0.89741 0.446437 0.862184 0.44697 0.89741 0.446437 0.895888 0.478763 0.867862 0.506733 0.86327 0.479621 0.895888 0.478763 0.86902 0.548582 0.867862 0.506733 0.890976 0.512435 0.86902 0.548582 0.883297 0.552018 0.868416 0.58707 0.848328 0.606603 0.858806 0.581005 0.868416 0.58707 0.848328 0.606603 0.85884 0.612566 0.841402 0.643166 0.849202 0.320389 0.847212 0.297816 0.860805 0.299182 0.923985 0.32359 0.920181 0.297299 0.947122 0.298445 0.863061 0.322125 0.860805 0.299182 0.891127 0.29637 0.947122 0.298445 0.968393 0.295831 0.972319 0.32135 0.779484 0.292425 0.799801 0.29428 0.800123 0.317569 0.800123 0.317569 0.799801 0.29428 0.847212 0.297816 0.844533 0.275856 0.840694 0.248335 0.853648 0.250819 0.91441 0.269434 0.906333 0.2387419 0.936319 0.23467 0.857729 0.276857 0.853648 0.250819 0.878094 0.245181 0.943081 0.269023 0.936319 0.23467 0.957091 0.234961 0.781674 0.267078 0.782786 0.233012 0.797768 0.238782 0.798847 0.271522 0.797768 0.238782 0.840694 0.248335 0.854977 0.05197 0.887753 0.02323698 0.887806 0.02344697 0.867517 0.06530797 0.887806 0.02344697 0.887829 0.02352499 0.883142 0.06671798 0.871566 0.06867998 0.887829 0.02352499 0.888875 0.02402597 0.888962 0.02395296 0.90005 0.06234997 0.90005 0.06234997 0.888962 0.02395296 0.889504 0.022475 0.851016 0.04562896 0.887732 0.02313995 0.887753 0.02323698 0.825269 0.09356796 0.839622 0.07167696 0.85836 0.08918195 0.849605 0.114072 0.85836 0.08918195 0.864994 0.09324097 0.878674 0.106285 0.858608 0.11864 0.864994 0.09324097 0.8921 0.08068495 0.90282 0.07800799 0.906905 0.09601795 0.906905 0.09601795 0.90282 0.07800799 0.912957 0.07918095 0.820447 0.08130496 0.835421 0.06194299 0.839622 0.07167696 0.803376 0.143753 0.812273 0.119487 0.842682 0.1404229 0.83753 0.166918 0.842682 0.1404229 0.853916 0.145152 0.873982 0.157126 0.85029 0.171981 0.853916 0.145152 0.894516 0.1482329 0.893464 0.123013 0.910339 0.121062 0.913992 0.147903 0.910339 0.121062 0.930956 0.125455 0.794832 0.133237 0.807258 0.109739 0.812273 0.119487 0.797867 0.207807 0.798566 0.177889 0.836995 0.195709 0.837971 0.222156 0.836995 0.195709 0.849866 0.200715 0.871668 0.217463 0.850107 0.226155 0.849866 0.200715 0.898173 0.208383 0.894878 0.178005 0.914819 0.173511 0.742604 0.654061 0.74042 0.640261 0.758564 0.640366 0.783848 0.200817 0.78691 0.168788 0.798566 0.177889 0.840694 0.248335 0.837971 0.222156 0.850107 0.226155 0.853648 0.250819 0.850107 0.226155 0.871668 0.217463 0.906333 0.2387419 0.898173 0.208383 0.928777 0.2036229 0.936319 0.23467 0.928777 0.2036229 0.95049 0.2012439 0.782786 0.233012 0.783848 0.200817 0.797867 0.207807 0.797768 0.238782 0.797867 0.207807 0.837971 0.222156 0.798566 0.177889 0.803376 0.143753 0.83753 0.166918 0.836995 0.195709 0.83753 0.166918 0.85029 0.171981 0.871695 0.187396 0.849866 0.200715 0.85029 0.171981 0.894516 0.1482329 0.913992 0.147903 0.914819 0.173511 0.74042 0.640261 0.738415 0.612919 0.755323 0.612958 0.78691 0.168788 0.794832 0.133237 0.803376 0.143753 0.812273 0.119487 0.825269 0.09356796 0.849605 0.114072 0.842682 0.1404229 0.849605 0.114072 0.858608 0.11864 0.876242 0.13075 0.853916 0.145152 0.858608 0.11864 0.892907 0.099568 0.906905 0.09601795 0.910339 0.121062 0.910339 0.121062 0.906905 0.09601795 0.920793 0.09908497 0.807258 0.109739 0.820447 0.08130496 0.825269 0.09356796 0.839622 0.07167696 0.854977 0.05197 0.867517 0.06530797 0.85836 0.08918195 0.867517 0.06530797 0.871566 0.06867998 0.880826 0.08510398 0.864994 0.09324097 0.871566 0.06867998 0.892651 0.06444495 0.90005 0.06234997 0.90282 0.07800799 0.90282 0.07800799 0.90005 0.06234997 0.905358 0.06038898 0.835421 0.06194299 0.851016 0.04562896 0.854977 0.05197 0.952395 0.372144 0.975978 0.370231 0.978606 0.408597 0.949489 0.325586 0.972319 0.32135 0.975978 0.370231 0.831037 0.637936 0.819042 0.632273 0.836694 0.604186 0.85884 0.612566 0.871318 0.619142 0.853518 0.649375 0.85884 0.612566 0.868416 0.58707 0.8857 0.593049 0.883297 0.552018 0.907251 0.552398 0.8857 0.593049 0.890976 0.512435 0.919167 0.51516 0.907251 0.552398 0.895888 0.478763 0.925386 0.477863 0.919167 0.51516 0.89741 0.446437 0.927224 0.444572 0.925386 0.477863 0.898114 0.411514 0.927475 0.410666 0.927224 0.444572 0.898114 0.411514 0.897668 0.370445 0.926232 0.371475 0.897668 0.370445 0.894896 0.319803 0.923985 0.32359 0.894896 0.319803 0.891127 0.29637 0.920181 0.297299 0.885833 0.272362 0.878094 0.245181 0.906333 0.2387419 0.878094 0.245181 0.871668 0.217463 0.898173 0.208383 0.871695 0.187396 0.894878 0.178005 0.898173 0.208383 0.873982 0.157126 0.894516 0.1482329 0.894878 0.178005 0.876242 0.13075 0.893464 0.123013 0.894516 0.1482329 0.878674 0.106285 0.892907 0.099568 0.893464 0.123013 0.880826 0.08510398 0.8921 0.08068495 0.892907 0.099568 0.883142 0.06671798 0.892651 0.06444495 0.8921 0.08068495 0.887972 0.02349698 0.888875 0.02402597 0.892651 0.06444495 0.795785 0.371378 0.79162 0.413527 0.76736 0.406684 0.847238 0.375698 0.847961 0.414695 0.79162 0.413527 0.776735 0.317991 0.800123 0.317569 0.795785 0.371378 0.849202 0.320389 0.847238 0.375698 0.795785 0.371378 0.742998 0.67126 0.742604 0.654061 0.760667 0.655735 0.72647 0.642336 0.74042 0.640261 0.742604 0.654061 0.766719 0.645924 0.763013 0.677372 0.760667 0.655735 0.719629 0.615892 0.738415 0.612919 0.74042 0.640261 0.768889 0.610561 0.766719 0.645924 0.758564 0.640366 0.795814 0.606346 0.768889 0.610561 0.767596 0.585223 0.768889 0.610561 0.755323 0.612958 0.753644 0.592894 0.738415 0.612919 0.736678 0.590531 0.753644 0.592894 0.738415 0.612919 0.719629 0.615892 0.718941 0.589528 0.73766 0.568777 0.740632 0.552556 0.750315 0.55337 0.764035 0.566054 0.751772 0.571396 0.750315 0.55337 0.764035 0.566054 0.758908 0.549021 0.769322 0.547656 0.73766 0.568777 0.723808 0.566105 0.731206 0.55055 0.736678 0.590531 0.73766 0.568777 0.751772 0.571396 0.767596 0.585223 0.753644 0.592894 0.751772 0.571396 0.789033 0.581417 0.767596 0.585223 0.764035 0.566054 0.736678 0.590531 0.718941 0.589528 0.723808 0.566105 0.740632 0.552556 0.731206 0.55055 0.74926 0.528109 0.740632 0.552556 0.749412 0.52816 0.749551 0.528106 0.758908 0.549021 0.750315 0.55337 0.749551 0.528106 0.758908 0.549021 0.749669 0.528114 0.74986 0.528044 0.954809 0.410106 0.978606 0.408597 0.979086 0.445146 0.79162 0.413527 0.787322 0.444611 0.768694 0.443536 0.79162 0.413527 0.847961 0.414695 0.847562 0.446896 0.979086 0.445146 0.978333 0.480363 0.95349 0.478662 0.787322 0.444611 0.784009 0.479875 0.770705 0.478716 0.787322 0.444611 0.847562 0.446896 0.848395 0.480342 0.847212 0.297816 0.844533 0.275856 0.857729 0.276857 0.860805 0.299182 0.857729 0.276857 0.885833 0.272362 0.891127 0.29637 0.885833 0.272362 0.91441 0.269434 0.920181 0.297299 0.91441 0.269434 0.943081 0.269023 0.947122 0.298445 0.943081 0.269023 0.963635 0.270532 0.779484 0.292425 0.781674 0.267078 0.798847 0.271522 0.799801 0.29428 0.798847 0.271522 0.844533 0.275856 0.79125 0.946691 0.829988 0.957485 0.777896 0.972 0.79125 0.946691 0.810255 0.93402 0.829988 0.957485 0.959778 0.833836 0.981006 0.821042 0.953274 0.858076 0.922429 0.856224 0.939795 0.846095 0.953274 0.858076 0.922429 0.856224 0.953274 0.858076 0.92609 0.889128 0.890144 0.876187 0.895862 0.91717 0.874398 0.886861 0.890144 0.876187 0.92609 0.889128 0.895862 0.91717 0.859825 0.897153 0.86991 0.934308 0.845011 0.908113 0.859825 0.897153 0.895862 0.91717 0.86991 0.934308 0.828303 0.920824 0.829988 0.957485 0.810255 0.93402 0.828303 0.920824 0.86991 0.934308 0.829988 0.957485 0.8488 0.499763 0.86327 0.479621 0.867862 0.506733 0.754117 0.962933 0.735703 0.972303 0.735853 0.966002 0.754117 0.962933 0.777896 0.972 0.735703 0.972303 0.735703 0.972303 0.716718 0.966896 0.735853 0.966002 0.66413 0.966102 0.69042 0.967706 0.644983 0.970898 0.626856 0.960948 0.602555 0.969341 0.608825 0.954349 0.644983 0.970898 0.602555 0.969341 0.626856 0.960948 0.590026 0.943142 0.550288 0.952527 0.571315 0.929492 0.602555 0.969341 0.550288 0.952527 0.590026 0.943142 0.553532 0.915284 0.510599 0.927053 0.537096 0.901629 0.550288 0.952527 0.510599 0.927053 0.553532 0.915284 0.522539 0.889878 0.485163 0.90852 0.508253 0.878831 0.510599 0.927053 0.485163 0.90852 0.522539 0.889878 0.492813 0.867329 0.455906 0.878733 0.476897 0.856094 0.485163 0.90852 0.455906 0.878733 0.492813 0.867329 0.461129 0.845593 0.429538 0.845735 0.444062 0.834198 0.455906 0.878733 0.429538 0.845735 0.461129 0.845593 0.429538 0.845735 0.424484 0.820371 0.444062 0.834198 0.719351 0.854447 0.722153 0.841488 0.724857 0.856078 0.717719 0.759181 0.7055 0.772003 0.696851 0.764798 0.717719 0.759181 0.719857 0.743657 0.754458 0.741477 0.814092 0.672952 0.829124 0.650793 0.843244 0.661906 0.819932 0.779588 0.816787 0.804795 0.766582 0.797055 0.836694 0.630962 0.84643 0.621203 0.852487 0.634882 0.723453 0.780942 0.756835 0.772271 0.766582 0.797055 0.829124 0.650793 0.836694 0.630962 0.845078 0.639639 0.880413 0.962239 0.86842 0.948755 0.882864 0.959568 0.877049 0.943387 0.882818 0.953038 0.86842 0.948755 0.757492 0.861646 0.760459 0.848336 0.786057 0.865366 0.833369 0.919306 0.807037 0.894877 0.815406 0.887253 0.819932 0.779588 0.86138 0.766855 0.87044 0.800771 0.761066 0.934995 0.763684 0.963051 0.714314 0.947564 0.84643 0.621203 0.853142 0.618167 0.857084 0.633803 0.722153 0.841488 0.732184 0.831396 0.73946 0.837359 0.835959 0.948484 0.864649 0.968815 0.818081 0.971724 0.737881 0.850422 0.73946 0.837359 0.760459 0.848336 0.807037 0.894877 0.779212 0.874367 0.786057 0.865366 0.787643 0.698395 0.814092 0.672952 0.827001 0.685078 0.73162 0.918333 0.761066 0.934995 0.716902 0.922906 0.854168 0.920858 0.877049 0.943387 0.86842 0.948755 0.754458 0.741477 0.719857 0.743657 0.755459 0.721896 0.718864 0.8752 0.719351 0.854447 0.724857 0.856078 0.796495 0.94879 0.761066 0.934995 0.78969 0.912832 0.835959 0.948484 0.796495 0.94879 0.81674 0.9305 0.766917 0.895612 0.73162 0.918333 0.750839 0.886835 0.833369 0.919306 0.86842 0.948755 0.835959 0.948484 0.737881 0.850422 0.732274 0.870348 0.724857 0.856078 0.779212 0.874367 0.766917 0.895612 0.750839 0.886835 0.779212 0.874367 0.807037 0.894877 0.78969 0.912832 0.807037 0.894877 0.833369 0.919306 0.81674 0.9305 0.757492 0.861646 0.750839 0.886835 0.732274 0.870348 0.766917 0.895612 0.78969 0.912832 0.761066 0.934995 0.718864 0.8752 0.732274 0.870348 0.73162 0.918333 0.73162 0.918333 0.732274 0.870348 0.750839 0.886835 0.716913 0.962965 0.714314 0.947564 0.763684 0.963051 0.766985 0.974493 0.763684 0.963051 0.818081 0.971724 0.861795 0.976999 0.816754 0.981659 0.818081 0.971724 0.864649 0.968815 0.880413 0.962239 0.878956 0.970964 0.891337 0.949464 0.882818 0.953038 0.877049 0.943387 0.883204 0.932244 0.877049 0.943387 0.854168 0.920858 0.850462 0.900281 0.854168 0.920858 0.815406 0.887253 0.81702 0.872576 0.815406 0.887253 0.786057 0.865366 0.760459 0.848336 0.761847 0.838274 0.784959 0.850367 0.744461 0.829719 0.761847 0.838274 0.760459 0.848336 0.732184 0.831396 0.734045 0.823682 0.744461 0.829719 0.732184 0.831396 0.722153 0.841488 0.72754 0.821301 0.852487 0.634882 0.857084 0.633803 0.853111 0.662172 0.830303 0.753554 0.859976 0.745197 0.86138 0.766855 0.717719 0.759181 0.776211 0.747372 0.756835 0.772271 0.754458 0.741477 0.776211 0.747372 0.717719 0.759181 0.843244 0.661906 0.853111 0.662172 0.859508 0.709835 0.827001 0.685078 0.845882 0.715578 0.795759 0.711881 0.845882 0.715578 0.859508 0.709835 0.859976 0.745197 0.795759 0.711881 0.845882 0.715578 0.830303 0.753554 0.754458 0.741477 0.795759 0.711881 0.776211 0.747372 0.819932 0.779588 0.756835 0.772271 0.776211 0.747372 0.796495 0.94879 0.818081 0.971724 0.763684 0.963051 0.843244 0.661906 0.845078 0.639639 0.852487 0.634882 0.795759 0.711881 0.754458 0.741477 0.755459 0.721896 0.827001 0.685078 0.843244 0.661906 0.845882 0.715578 0.880413 0.962239 0.882864 0.959568 0.887482 0.963722 0.723453 0.780942 0.7055 0.772003 0.717719 0.759181 0.86842 0.948755 0.880413 0.962239 0.864649 0.968815 0.882864 0.959568 0.883624 0.957287 0.889771 0.958344 0.882818 0.953038 0.891337 0.949464 0.889771 0.958344 0.717719 0.759181 0.696851 0.764798 0.696904 0.759169 0.717719 0.759181 0.696904 0.759169 0.704344 0.75324 0.719857 0.743657 0.717719 0.759181 0.704344 0.75324 0.86842 0.948755 0.882818 0.953038 0.883624 0.957287 0.882864 0.959568 0.86842 0.948755 0.883624 0.957287 0.692114 0.01397395 0.698196 0.06379997 0.621473 0.06560397 0.962687 0.534648 0.93724 0.612201 0.83931 0.575571 0.962687 0.534648 0.865368 0.508769 0.88049 0.441167 0.621473 0.06560397 0.570394 0.07343196 0.565895 0.04564595 0.931947 0.1450189 0.911106 0.1652179 0.874346 0.1184 0.859043 0.05878096 0.833772 0.119025 0.769311 0.08298498 0.989071 0.355927 0.986826 0.400695 0.885106 0.389075 0.773263 0.02835798 0.769311 0.08298498 0.698196 0.06379997 0.499964 0.027408 0.548538 0.01971995 0.533977 0.060247 0.565895 0.04564595 0.533977 0.060247 0.548538 0.01971995 0.570394 0.07343196 0.532891 0.08291995 0.533977 0.060247 0.51206 0.07440596 0.533977 0.060247 0.532891 0.08291995 0.499967 0.05825197 0.533977 0.060247 0.51206 0.07440596 0.49997 0.08153796 0.51206 0.07440596 0.512964 0.09043097 0.564928 0.532234 0.562204 0.583044 0.529678 0.580471 0.500021 0.578413 0.500016 0.527693 0.529278 0.529393 0.500011 0.482183 0.500007 0.443524 0.532175 0.447762 0.570636 0.449912 0.567444 0.488695 0.531072 0.486038 0.562204 0.583044 0.574088 0.649953 0.529717 0.641562 0.500027 0.630056 0.500021 0.578413 0.529678 0.580471 0.63766 0.585062 0.659821 0.548735 0.718287 0.583402 0.663774 0.496087 0.668259 0.444268 0.769446 0.472901 0.769446 0.472901 0.865368 0.508769 0.83931 0.575571 0.714286 0.700662 0.671344 0.637739 0.718287 0.583402 0.574088 0.649953 0.586833 0.733824 0.529895 0.730782 0.500037 0.729049 0.500027 0.630056 0.529717 0.641562 0.822896 0.379054 0.830697 0.341134 0.869274 0.349004 0.769311 0.08298498 0.764713 0.119033 0.702569 0.104052 0.500007 0.443524 0.500003 0.40523 0.532873 0.409639 0.532175 0.447762 0.532873 0.409639 0.570901 0.415054 0.776225 0.36394 0.779895 0.326154 0.830697 0.341134 0.532873 0.09671497 0.512911 0.09711098 0.512964 0.09043097 0.759819 0.192835 0.763208 0.234346 0.708042 0.22587 0.766446 0.280971 0.779895 0.326154 0.735877 0.314473 0.704919 0.187248 0.705736 0.140126 0.763964 0.152838 0.779895 0.326154 0.776225 0.36394 0.73642 0.34723 0.800628 0.137396 0.764713 0.119033 0.769311 0.08298498 0.759819 0.192835 0.763964 0.152838 0.80708 0.161626 0.820504 0.213135 0.825939 0.240733 0.763208 0.234346 0.779895 0.326154 0.766446 0.280971 0.830821 0.295551 0.500003 0.40523 0.5 0.371801 0.537429 0.374378 0.719934 0.274117 0.735877 0.314473 0.705534 0.308879 0.571055 0.388272 0.570901 0.415054 0.532873 0.409639 0.735877 0.314473 0.73642 0.34723 0.707604 0.333905 0.615967 0.17339 0.603944 0.1407819 0.648235 0.1375409 0.621473 0.06560397 0.633035 0.09789699 0.573535 0.1005769 0.546092 0.365657 0.574303 0.379112 0.571055 0.388272 0.499997 0.346015 0.499995 0.324884 0.522151 0.323216 0.697278 0.307671 0.681516 0.284505 0.687972 0.281136 0.699339 0.330504 0.697278 0.307671 0.705534 0.308879 0.535688 0.342269 0.526241 0.345545 0.522151 0.323216 0.603224 0.234992 0.65176 0.245934 0.646231 0.262102 0.656395 0.178755 0.656142 0.215462 0.619676 0.205958 0.517859 0.26524 0.521654 0.28295 0.499991 0.284 0.60339 0.25902 0.601343 0.251682 0.646231 0.262102 0.57244 0.262546 0.538987 0.277792 0.540491 0.261306 0.531476 0.321962 0.522151 0.323216 0.521286 0.302994 0.499993 0.304284 0.521286 0.302994 0.522151 0.323216 0.510097 0.247159 0.517859 0.26524 0.499989 0.267552 0.558246 0.239666 0.56874 0.255252 0.540491 0.261306 0.530493 0.24474 0.540491 0.261306 0.517859 0.26524 0.516049 0.233901 0.530493 0.24474 0.510097 0.247159 0.502833 0.2389619 0.510097 0.247159 0.499987 0.2474319 0.502833 0.2389619 0.499986 0.238826 0.499986 0.233192 0.587848 0.171571 0.580317 0.147698 0.603944 0.1407819 0.532873 0.09671497 0.53123 0.1174229 0.513031 0.114891 0.585231 0.194368 0.587848 0.171571 0.615967 0.17339 0.544352 0.225405 0.558246 0.239666 0.530493 0.24474 0.499973 0.114 0.499972 0.097889 0.512911 0.09711098 0.580317 0.147698 0.587848 0.171571 0.566005 0.171524 0.53123 0.1174229 0.529576 0.136628 0.513802 0.132733 0.566005 0.171524 0.587848 0.171571 0.585231 0.194368 0.499984 0.220139 0.515753 0.217642 0.516049 0.233901 0.516049 0.233901 0.515753 0.217642 0.534479 0.211043 0.510849 0.156387 0.499978 0.156111 0.499977 0.148138 0.499975 0.131758 0.499973 0.114 0.513031 0.114891 0.513185 0.205953 0.499983 0.2071509 0.499982 0.200262 0.547753 0.163451 0.551313 0.172719 0.543837 0.172971 0.513185 0.205953 0.511334 0.198502 0.523289 0.1919749 0.547668 0.182445 0.538068 0.1781409 0.543837 0.172971 0.526139 0.149893 0.523838 0.159736 0.510849 0.156387 0.825939 0.240733 0.830821 0.295551 0.766446 0.280971 0.763208 0.234346 0.766446 0.280971 0.719934 0.274117 0.619676 0.205958 0.656142 0.215462 0.65176 0.245934 0.585231 0.194368 0.619676 0.205958 0.603224 0.234992 0.562942 0.1869159 0.585231 0.194368 0.570102 0.213379 0.53898 0.191998 0.531562 0.184547 0.538068 0.1781409 0.538607 0.155692 0.547753 0.163451 0.541607 0.167849 0.555119 0.129913 0.580317 0.147698 0.560565 0.156453 0.580317 0.147698 0.555119 0.129913 0.573535 0.1005769 0.603944 0.1407819 0.573535 0.1005769 0.633035 0.09789699 0.705736 0.140126 0.702569 0.104052 0.764713 0.119033 0.763964 0.152838 0.764713 0.119033 0.800628 0.137396 0.512596 0.147008 0.499977 0.148138 0.499975 0.131758 0.529576 0.136628 0.526139 0.149893 0.512596 0.147008 0.547753 0.163451 0.538607 0.155692 0.546154 0.144736 0.551313 0.172719 0.547753 0.163451 0.560565 0.156453 0.562942 0.1869159 0.547668 0.182445 0.551313 0.172719 0.55115 0.200817 0.53898 0.191998 0.547668 0.182445 0.515753 0.217642 0.513185 0.205953 0.52731 0.200117 0.515753 0.217642 0.499984 0.220139 0.499983 0.2071509 0.570394 0.07343196 0.573535 0.1005769 0.532873 0.09671497 0.532873 0.09671497 0.573535 0.1005769 0.555119 0.129913 0.529576 0.136628 0.53123 0.1174229 0.555119 0.129913 0.546154 0.144736 0.538607 0.155692 0.526139 0.149893 0.538607 0.155692 0.533949 0.163905 0.523838 0.159736 0.52731 0.200117 0.523289 0.1919749 0.531562 0.184547 0.534479 0.211043 0.52731 0.200117 0.53898 0.191998 0.544352 0.225405 0.534479 0.211043 0.55115 0.200817 0.570102 0.213379 0.603224 0.234992 0.558246 0.239666 0.603224 0.234992 0.601343 0.251682 0.56874 0.255252 0.57244 0.262546 0.56874 0.255252 0.601343 0.251682 0.499991 0.284 0.521654 0.28295 0.521286 0.302994 0.53139 0.301856 0.521286 0.302994 0.521654 0.28295 0.865368 0.508769 0.769446 0.472901 0.806864 0.420354 0.769446 0.472901 0.668259 0.444268 0.747491 0.404592 0.711124 0.382799 0.747491 0.404592 0.668259 0.444268 0.687479 0.364413 0.711124 0.382799 0.660094 0.408564 0.645346 0.375498 0.679975 0.357956 0.687479 0.364413 0.546092 0.365657 0.537429 0.374378 0.526241 0.345545 0.5 0.371801 0.499997 0.346015 0.526241 0.345545 0.607999 0.382536 0.645346 0.375498 0.649479 0.38431 0.649479 0.38431 0.660094 0.408564 0.608144 0.418417 0.612634 0.449937 0.608144 0.418417 0.660094 0.408564 0.612634 0.449937 0.668259 0.444268 0.663774 0.496087 0.63766 0.585062 0.59715 0.585771 0.604104 0.538031 0.617347 0.652368 0.59715 0.585771 0.63766 0.585062 0.644111 0.729895 0.617347 0.652368 0.671344 0.637739 0.574303 0.379112 0.607999 0.382536 0.608247 0.392101 0.608247 0.392101 0.608144 0.418417 0.570901 0.415054 0.570636 0.449912 0.570901 0.415054 0.608144 0.418417 0.567444 0.488695 0.570636 0.449912 0.612634 0.449937 0.604104 0.538031 0.59715 0.585771 0.562204 0.583044 0.574088 0.649953 0.562204 0.583044 0.59715 0.585771 0.586833 0.733824 0.574088 0.649953 0.617347 0.652368 0.698196 0.06379997 0.702569 0.104052 0.633035 0.09789699 0.648235 0.1375409 0.633035 0.09789699 0.702569 0.104052 0.656395 0.178755 0.648235 0.1375409 0.705736 0.140126 0.656142 0.215462 0.656395 0.178755 0.704919 0.187248 0.65176 0.245934 0.656142 0.215462 0.708042 0.22587 0.65176 0.245934 0.719934 0.274117 0.687972 0.281136 0.681516 0.284505 0.64482 0.267102 0.646231 0.262102 0.57755 0.369951 0.554756 0.356936 0.565494 0.34678 0.545136 0.338993 0.556984 0.333331 0.565494 0.34678 0.5408 0.320707 0.553187 0.318602 0.556984 0.333331 0.689021 0.306463 0.691074 0.327103 0.68286 0.320401 0.672471 0.351499 0.641213 0.366686 0.637384 0.355761 0.641213 0.366686 0.607751 0.37297 0.610218 0.360191 0.607751 0.37297 0.57755 0.369951 0.584661 0.357061 0.67506 0.287874 0.689021 0.306463 0.680485 0.305578 0.541494 0.300718 0.554906 0.302022 0.553187 0.318602 0.549257 0.28075 0.563115 0.287991 0.554906 0.302022 0.576141 0.269841 0.583066 0.280106 0.563115 0.287991 0.605436 0.266358 0.60852 0.275613 0.583066 0.280106 0.643409 0.272102 0.641158 0.279205 0.60852 0.275613 0.643409 0.272102 0.67506 0.287874 0.66869 0.292473 0.718287 0.583402 0.745654 0.529325 0.83931 0.575571 0.659821 0.548735 0.663774 0.496087 0.745654 0.529325 0.613025 0.494188 0.663774 0.496087 0.659821 0.548735 0.564928 0.532234 0.567444 0.488695 0.613025 0.494188 0.567444 0.488695 0.564928 0.532234 0.529278 0.529393 0.500016 0.527693 0.500011 0.482183 0.531072 0.486038 0.512911 0.09711098 0.499972 0.097889 0.499971 0.09369999 0.511334 0.198502 0.499982 0.200262 0.499982 0.195039 0.511334 0.198502 0.509736 0.193431 0.521318 0.188282 0.523289 0.1919749 0.521318 0.188282 0.529921 0.182638 0.531562 0.184547 0.529921 0.182638 0.534756 0.178569 0.538068 0.1781409 0.534756 0.178569 0.536567 0.173957 0.541607 0.167849 0.543837 0.172971 0.536567 0.173957 0.533949 0.163905 0.541607 0.167849 0.534908 0.170948 0.523838 0.159736 0.533949 0.163905 0.531035 0.167073 0.510849 0.156387 0.523838 0.159736 0.521562 0.163898 0.509351 0.161339 0.499978 0.161186 0.499978 0.156111 0.509736 0.193431 0.499982 0.195039 0.499981 0.190932 0.521318 0.188282 0.509736 0.193431 0.509956 0.189236 0.534756 0.178569 0.533518 0.177546 0.534562 0.174277 0.534756 0.178569 0.529921 0.182638 0.52956 0.180454 0.534908 0.170948 0.533263 0.172516 0.530209 0.169848 0.534908 0.170948 0.536567 0.173957 0.534562 0.174277 0.521562 0.163898 0.521149 0.167029 0.509829 0.165669 0.499979 0.1653749 0.499978 0.161186 0.509351 0.161339 0.531035 0.167073 0.530209 0.169848 0.521149 0.167029 0.529921 0.182638 0.521318 0.188282 0.520451 0.185108 0.509956 0.189236 0.499981 0.190932 0.499981 0.185291 0.520451 0.185108 0.509956 0.189236 0.510256 0.184414 0.52956 0.180454 0.520451 0.185108 0.520893 0.182174 0.533518 0.177546 0.52956 0.180454 0.529644 0.17846 0.534562 0.174277 0.533518 0.177546 0.532053 0.176281 0.533263 0.172516 0.534562 0.174277 0.533097 0.174436 0.533263 0.172516 0.532352 0.173139 0.530031 0.170979 0.530209 0.169848 0.530031 0.170979 0.52166 0.168427 0.521149 0.167029 0.52166 0.168427 0.510503 0.167734 0.499979 0.167807 0.499979 0.1653749 0.509829 0.165669 0.846804 0.136189 0.80708 0.161626 0.800628 0.137396 0.874346 0.1184 0.846804 0.136189 0.833772 0.119025 0.931947 0.1450189 0.979136 0.26548 0.940571 0.23878 0.989071 0.355927 0.914186 0.333935 0.919507 0.304811 0.869274 0.349004 0.869361 0.346456 0.914186 0.333935 0.979136 0.26548 0.919507 0.304811 0.910377 0.257027 0.869274 0.349004 0.830697 0.341134 0.855406 0.331209 0.830821 0.295551 0.849362 0.299221 0.855406 0.331209 0.830821 0.295551 0.825939 0.240733 0.835039 0.241339 0.820504 0.213135 0.80708 0.161626 0.828164 0.19864 0.80708 0.161626 0.846804 0.136189 0.83457 0.172472 0.825939 0.240733 0.820504 0.213135 0.829204 0.215596 0.940571 0.23878 0.910377 0.257027 0.884688 0.193509 0.911106 0.1652179 0.884688 0.193509 0.853844 0.170893 0.846804 0.136189 0.874346 0.1184 0.853844 0.170893 0.584661 0.357061 0.565494 0.34678 0.575878 0.336475 0.565494 0.34678 0.556984 0.333331 0.568829 0.327698 0.553187 0.318602 0.564798 0.31699 0.568829 0.327698 0.680485 0.305578 0.68286 0.320401 0.679674 0.317587 0.665441 0.342896 0.637384 0.355761 0.638494 0.342642 0.637384 0.355761 0.610218 0.360191 0.614002 0.348176 0.610218 0.360191 0.584661 0.357061 0.593013 0.34331 0.66869 0.292473 0.680485 0.305578 0.676182 0.306284 0.554906 0.302022 0.566123 0.303157 0.564798 0.31699 0.563115 0.287991 0.573131 0.294201 0.566123 0.303157 0.583066 0.280106 0.588522 0.289181 0.573131 0.294201 0.60852 0.275613 0.612215 0.286163 0.588522 0.289181 0.641158 0.279205 0.639053 0.287131 0.612215 0.286163 0.66869 0.292473 0.666518 0.297445 0.639053 0.287131 0.520893 0.182174 0.510256 0.184414 0.510303 0.180853 0.533097 0.174436 0.532053 0.176281 0.530854 0.175227 0.532053 0.176281 0.529644 0.17846 0.5297 0.175543 0.532352 0.173139 0.530977 0.174045 0.529854 0.173339 0.533097 0.174436 0.531236 0.1746219 0.530977 0.174045 0.52166 0.168427 0.522252 0.172158 0.510865 0.170796 0.530031 0.170979 0.529854 0.173339 0.522252 0.172158 0.529644 0.17846 0.520893 0.182174 0.521113 0.178103 0.510256 0.184414 0.499981 0.185291 0.49998 0.1819159 0.510503 0.167734 0.510865 0.170796 0.499979 0.170826 0.885106 0.389075 0.986826 0.400695 0.981384 0.448921 0.88049 0.441167 0.806864 0.420354 0.822896 0.379054 0.806864 0.420354 0.747491 0.404592 0.776225 0.36394 0.73642 0.34723 0.776225 0.36394 0.747491 0.404592 0.707604 0.333905 0.73642 0.34723 0.711124 0.382799 0.679975 0.357956 0.699339 0.330504 0.707604 0.333905 0.691074 0.327103 0.672471 0.351499 0.665441 0.342896 0.68286 0.320401 0.665441 0.342896 0.662897 0.334272 0.517859 0.26524 0.540491 0.261306 0.538987 0.277792 0.57755 0.369951 0.574303 0.379112 0.546092 0.365657 0.607751 0.37297 0.607999 0.382536 0.574303 0.379112 0.607999 0.382536 0.607751 0.37297 0.641213 0.366686 0.672471 0.351499 0.679975 0.357956 0.645346 0.375498 0.672471 0.351499 0.691074 0.327103 0.699339 0.330504 0.691074 0.327103 0.689021 0.306463 0.697278 0.307671 0.689021 0.306463 0.67506 0.287874 0.681516 0.284505 0.67506 0.287874 0.643409 0.272102 0.64482 0.267102 0.605436 0.266358 0.60339 0.25902 0.64482 0.267102 0.576141 0.269841 0.57244 0.262546 0.60339 0.25902 0.549257 0.28075 0.538987 0.277792 0.57244 0.262546 0.541494 0.300718 0.53139 0.301856 0.538987 0.277792 0.5408 0.320707 0.531476 0.321962 0.53139 0.301856 0.545136 0.338993 0.535688 0.342269 0.531476 0.321962 0.554756 0.356936 0.546092 0.365657 0.535688 0.342269 1.719351 0.854447 1.724857 0.856078 1.722153 0.841488 1.717719 0.759181 1.696851 0.764798 1.7055 0.772003 1.717719 0.759181 1.754458 0.741477 1.719857 0.743657 1.814092 0.672952 1.827001 0.685078 1.843244 0.661906 1.766582 0.797055 1.816787 0.804795 1.819932 0.779588 1.836694 0.630962 1.845078 0.639639 1.852487 0.634882 1.723453 0.780942 1.766582 0.797055 1.756835 0.772271 1.845078 0.639639 1.836694 0.630962 1.829124 0.650793 1.880413 0.962239 1.882864 0.959568 1.86842 0.948755 1.877049 0.943387 1.86842 0.948755 1.882818 0.953038 1.786057 0.865366 1.760459 0.848336 1.757492 0.861646 1.833369 0.919306 1.854168 0.920858 1.815406 0.887253 1.819932 0.779588 1.816787 0.804795 1.87044 0.800771 1.761066 0.934995 1.716902 0.922906 1.714314 0.947564 1.84643 0.621203 1.852487 0.634882 1.857084 0.633803 1.73946 0.837359 1.732184 0.831396 1.722153 0.841488 1.818081 0.971724 1.864649 0.968815 1.835959 0.948484 1.760459 0.848336 1.73946 0.837359 1.737881 0.850422 1.786057 0.865366 1.779212 0.874367 1.807037 0.894877 1.827001 0.685078 1.814092 0.672952 1.787643 0.698395 1.73162 0.918333 1.716902 0.922906 1.761066 0.934995 1.854168 0.920858 1.833369 0.919306 1.86842 0.948755 1.754458 0.741477 1.755459 0.721896 1.719857 0.743657 1.718864 0.8752 1.732274 0.870348 1.724857 0.856078 1.796495 0.94879 1.81674 0.9305 1.78969 0.912832 1.835959 0.948484 1.81674 0.9305 1.796495 0.94879 1.766917 0.895612 1.750839 0.886835 1.73162 0.918333 1.833369 0.919306 1.81674 0.9305 1.835959 0.948484 1.724857 0.856078 1.732274 0.870348 1.737881 0.850422 1.750839 0.886835 1.766917 0.895612 1.779212 0.874367 1.779212 0.874367 1.766917 0.895612 1.78969 0.912832 1.807037 0.894877 1.78969 0.912832 1.81674 0.9305 1.732274 0.870348 1.750839 0.886835 1.757492 0.861646 1.761066 0.934995 1.78969 0.912832 1.766917 0.895612 1.73162 0.918333 1.732274 0.870348 1.718864 0.8752 1.73162 0.918333 1.750839 0.886835 1.732274 0.870348 1.763684 0.963051 1.714314 0.947564 1.716913 0.962965 1.818081 0.971724 1.763684 0.963051 1.766985 0.974493 1.818081 0.971724 1.816754 0.981659 1.861795 0.976999 1.864649 0.968815 1.861795 0.976999 1.878956 0.970964 1.877049 0.943387 1.882818 0.953038 1.891337 0.949464 1.854168 0.920858 1.877049 0.943387 1.883204 0.932244 1.815406 0.887253 1.854168 0.920858 1.850462 0.900281 1.786057 0.865366 1.815406 0.887253 1.81702 0.872576 1.784959 0.850367 1.761847 0.838274 1.760459 0.848336 1.744462 0.829719 1.73946 0.837359 1.760459 0.848336 1.744462 0.829719 1.734045 0.823682 1.732184 0.831396 1.732184 0.831396 1.734045 0.823682 1.72754 0.821301 1.853111 0.662172 1.857084 0.633803 1.852487 0.634882 1.86138 0.766855 1.859976 0.745197 1.830303 0.753554 1.717719 0.759181 1.756835 0.772271 1.776211 0.747372 1.754458 0.741477 1.717719 0.759181 1.776211 0.747372 1.843244 0.661906 1.845882 0.715578 1.859508 0.709835 1.827001 0.685078 1.795759 0.711881 1.845882 0.715578 1.845882 0.715578 1.830303 0.753554 1.859976 0.745197 1.795759 0.711881 1.776211 0.747372 1.830303 0.753554 1.754458 0.741477 1.776211 0.747372 1.795759 0.711881 1.776211 0.747372 1.756835 0.772271 1.819932 0.779588 1.796495 0.94879 1.761066 0.934995 1.763684 0.963051 1.843244 0.661906 1.852487 0.634882 1.845078 0.639639 1.795759 0.711881 1.787643 0.698395 1.755459 0.721896 1.827001 0.685078 1.845882 0.715578 1.843244 0.661906 1.880413 0.962239 1.878956 0.970964 1.887482 0.963722 1.723453 0.780942 1.756835 0.772271 1.717719 0.759181 1.864649 0.968815 1.880413 0.962239 1.86842 0.948755 1.882864 0.959568 1.887482 0.963722 1.889771 0.958344 1.889771 0.958344 1.891337 0.949464 1.882818 0.953038 1.717719 0.759181 1.696904 0.759169 1.696851 0.764798 1.717719 0.759181 1.704344 0.75324 1.696904 0.759169 1.719857 0.743657 1.704344 0.75324 1.717719 0.759181 1.86842 0.948755 1.883624 0.957287 1.882818 0.953038 1.882864 0.959568 1.883624 0.957287 1.86842 0.948755 0.69213 0.01401394 0.609568 0.01162099 0.621478 0.06562995 0.839209 0.575641 0.937132 0.612291 0.962595 0.534744 0.880418 0.441246 0.865281 0.508845 0.962595 0.534744 0.565904 0.04565995 0.570397 0.07344698 0.621478 0.06562995 0.931935 0.1451089 0.85905 0.05885499 0.87434 0.118478 0.85905 0.05885499 0.773276 0.02841496 0.769312 0.08304095 0.989016 0.356029 0.86922 0.349081 0.885044 0.389155 0.773276 0.02841496 0.69213 0.01401394 0.698201 0.06384098 0.533983 0.06025397 0.548552 0.01972997 0.500051 0.027408 0.548552 0.01972997 0.533983 0.06025397 0.565904 0.04565995 0.533983 0.06025397 0.532893 0.08292698 0.570397 0.07344698 0.532893 0.08292698 0.533983 0.06025397 0.512063 0.074409 0.512063 0.074409 0.533983 0.06025397 0.500047 0.05825197 0.512964 0.09043395 0.512063 0.074409 0.500045 0.08153796 0.564837 0.532248 0.529187 0.529399 0.529577 0.580477 0.529187 0.529399 0.499999 0.527693 0.499993 0.578413 0.500003 0.482183 0.53099 0.486044 0.532101 0.447769 0.53099 0.486044 0.567361 0.488709 0.570561 0.449927 0.529603 0.641568 0.573972 0.649968 0.562102 0.583056 0.499988 0.630056 0.529603 0.641568 0.529577 0.580477 0.718185 0.583447 0.659726 0.548768 0.637557 0.58509 0.66369 0.496121 0.745563 0.529375 0.769366 0.472957 0.839209 0.575641 0.865281 0.508845 0.769366 0.472957 0.714159 0.700707 0.792362 0.640906 0.718185 0.583447 0.529762 0.730788 0.586699 0.733842 0.573972 0.649968 0.499978 0.729049 0.529762 0.730788 0.529603 0.641568 0.86922 0.349081 0.830645 0.341203 0.822836 0.379121 0.769312 0.08304095 0.698201 0.06384098 0.702566 0.104094 0.532807 0.409645 0.500011 0.40523 0.500007 0.443524 0.570833 0.415069 0.532807 0.409645 0.532101 0.447769 0.830645 0.341203 0.779846 0.326212 0.776168 0.363998 0.512964 0.09043395 0.512909 0.09711396 0.532872 0.096722 0.708014 0.225913 0.763178 0.234401 0.759797 0.192889 0.766406 0.281026 0.719895 0.274163 0.73583 0.314522 0.76395 0.152893 0.705726 0.140169 0.704899 0.18729 0.779846 0.326212 0.73583 0.314522 0.736367 0.347279 0.769312 0.08304095 0.764707 0.119088 0.800618 0.137459 0.807065 0.1616899 0.76395 0.152893 0.759797 0.192889 0.763178 0.234401 0.825907 0.2408 0.820479 0.213201 0.830778 0.29562 0.766406 0.281026 0.779846 0.326212 0.53737 0.374386 0.500015 0.371801 0.500011 0.40523 0.719895 0.274163 0.687932 0.281175 0.705489 0.308921 0.570993 0.388286 0.53737 0.374386 0.532807 0.409645 0.73583 0.314522 0.705489 0.308921 0.707554 0.333949 0.648226 0.137572 0.603933 0.140803 0.615949 0.173414 0.621478 0.06562995 0.570397 0.07344698 0.573533 0.100592 0.546035 0.365667 0.53737 0.374386 0.570993 0.388286 0.522103 0.323221 0.50002 0.324884 0.500017 0.346015 0.697232 0.307712 0.705489 0.308921 0.687932 0.281175 0.699289 0.330546 0.707554 0.333949 0.705489 0.308921 0.522103 0.323221 0.526188 0.34555 0.535636 0.342276 0.603194 0.235013 0.60131 0.251703 0.646195 0.262132 0.619651 0.205982 0.656116 0.215494 0.656376 0.1787869 0.517822 0.265243 0.500026 0.267552 0.500024 0.284 0.646195 0.262132 0.60131 0.251703 0.603355 0.259041 0.572404 0.262561 0.568705 0.255266 0.540455 0.261314 0.521242 0.302998 0.522103 0.323221 0.531427 0.321968 0.522103 0.323221 0.521242 0.302998 0.500022 0.304284 0.510064 0.247162 0.500028 0.2474319 0.500026 0.267552 0.558215 0.239678 0.530461 0.244746 0.540455 0.261314 0.530461 0.244746 0.510064 0.247162 0.517822 0.265243 0.516019 0.233905 0.50272 0.2389619 0.510064 0.247162 0.500028 0.2474319 0.510064 0.247162 0.50272 0.2389619 0.50272 0.2389619 0.516019 0.233905 0.500029 0.233192 0.603933 0.140803 0.580305 0.147715 0.587831 0.171589 0.513026 0.114894 0.531224 0.11743 0.532872 0.096722 0.585209 0.194386 0.619651 0.205982 0.615949 0.173414 0.544324 0.225415 0.516019 0.233905 0.530461 0.244746 0.512909 0.09711396 0.500043 0.097889 0.500042 0.114 0.565988 0.1715379 0.587831 0.171589 0.580305 0.147715 0.513793 0.132736 0.529566 0.136634 0.531224 0.11743 0.585209 0.194386 0.587831 0.171589 0.565988 0.1715379 0.500031 0.220139 0.500029 0.233192 0.516019 0.233905 0.516019 0.233905 0.544324 0.225415 0.534454 0.211051 0.510835 0.1563889 0.512584 0.147011 0.500038 0.148138 0.513026 0.114894 0.500042 0.114 0.50004 0.131758 0.511312 0.198505 0.500033 0.200262 0.500032 0.2071509 0.54382 0.17298 0.551296 0.17273 0.547737 0.16346 0.523268 0.19198 0.511312 0.198505 0.513161 0.205956 0.547648 0.182455 0.551296 0.17273 0.54382 0.17298 0.526127 0.1498979 0.512584 0.147011 0.510835 0.1563889 0.766406 0.281026 0.830778 0.29562 0.825907 0.2408 0.719895 0.274163 0.766406 0.281026 0.763178 0.234401 0.619651 0.205982 0.603194 0.235013 0.651727 0.245965 0.603194 0.235013 0.619651 0.205982 0.585209 0.194386 0.570076 0.213394 0.585209 0.194386 0.562922 0.186929 0.538959 0.192006 0.547648 0.182455 0.538049 0.178149 0.541591 0.167858 0.547737 0.16346 0.538594 0.1557 0.560551 0.1564649 0.580305 0.147715 0.55511 0.129925 0.573533 0.100592 0.55511 0.129925 0.580305 0.147715 0.633033 0.097925 0.573533 0.100592 0.603933 0.140803 0.764707 0.119088 0.702566 0.104094 0.705726 0.140169 0.800618 0.137459 0.764707 0.119088 0.76395 0.152893 0.512584 0.147011 0.513793 0.132736 0.50004 0.131758 0.529566 0.136634 0.513793 0.132736 0.512584 0.147011 0.547737 0.16346 0.560551 0.1564649 0.546142 0.144746 0.551296 0.17273 0.565988 0.1715379 0.560551 0.1564649 0.562922 0.186929 0.565988 0.1715379 0.551296 0.17273 0.551127 0.200828 0.562922 0.186929 0.547648 0.182455 0.527287 0.2001219 0.513161 0.205956 0.515726 0.217645 0.515726 0.217645 0.513161 0.205956 0.500032 0.2071509 0.570397 0.07344698 0.532893 0.08292698 0.532872 0.096722 0.55511 0.129925 0.573533 0.100592 0.532872 0.096722 0.529566 0.136634 0.546142 0.144746 0.55511 0.129925 0.546142 0.144746 0.529566 0.136634 0.526127 0.1498979 0.538594 0.1557 0.526127 0.1498979 0.523823 0.159741 0.531542 0.184554 0.523268 0.19198 0.527287 0.2001219 0.538959 0.192006 0.527287 0.2001219 0.534454 0.211051 0.544324 0.225415 0.570076 0.213394 0.551127 0.200828 0.570076 0.213394 0.544324 0.225415 0.558215 0.239678 0.603194 0.235013 0.558215 0.239678 0.568705 0.255266 0.60131 0.251703 0.568705 0.255266 0.572404 0.262561 0.521242 0.302998 0.521614 0.282955 0.500024 0.284 0.521614 0.282955 0.521242 0.302998 0.531346 0.301863 0.865281 0.508845 0.880418 0.441246 0.806795 0.420418 0.769366 0.472957 0.806795 0.420418 0.747425 0.404644 0.711063 0.382843 0.660028 0.408597 0.668185 0.444303 0.687422 0.364452 0.649418 0.384341 0.660028 0.408597 0.645287 0.375528 0.649418 0.384341 0.687422 0.364452 0.526188 0.34555 0.53737 0.374386 0.546035 0.365667 0.526188 0.34555 0.500017 0.346015 0.500015 0.371801 0.649418 0.384341 0.645287 0.375528 0.607938 0.382558 0.649418 0.384341 0.608185 0.392123 0.608076 0.41844 0.660028 0.408597 0.608076 0.41844 0.612559 0.449961 0.66369 0.496121 0.668185 0.444303 0.612559 0.449961 0.604011 0.538053 0.597047 0.585791 0.637557 0.58509 0.61723 0.652393 0.67123 0.637775 0.637557 0.58509 0.643978 0.729925 0.714159 0.700707 0.67123 0.637775 0.574243 0.379127 0.570993 0.388286 0.608185 0.392123 0.608185 0.392123 0.570993 0.388286 0.570833 0.415069 0.608076 0.41844 0.570833 0.415069 0.570561 0.449927 0.567361 0.488709 0.612941 0.494211 0.612559 0.449961 0.604011 0.538053 0.564837 0.532248 0.562102 0.583056 0.573972 0.649968 0.61723 0.652393 0.597047 0.585791 0.586699 0.733842 0.643978 0.729925 0.61723 0.652393 0.698201 0.06384098 0.621478 0.06562995 0.633033 0.097925 0.702566 0.104094 0.633033 0.097925 0.648226 0.137572 0.705726 0.140169 0.648226 0.137572 0.656376 0.1787869 0.656116 0.215494 0.708014 0.225913 0.704899 0.18729 0.651727 0.245965 0.719895 0.274163 0.708014 0.225913 0.687932 0.281175 0.719895 0.274163 0.651727 0.245965 0.681475 0.284543 0.687932 0.281175 0.646195 0.262132 0.577492 0.369967 0.584606 0.357079 0.56544 0.346793 0.56544 0.346793 0.556934 0.333342 0.545084 0.339002 0.556934 0.333342 0.55314 0.318613 0.540752 0.320716 0.688977 0.306502 0.68044 0.305615 0.682812 0.320439 0.672417 0.351535 0.665388 0.34293 0.637329 0.355789 0.641156 0.366715 0.637329 0.355789 0.610162 0.360214 0.607692 0.372992 0.610162 0.360214 0.584606 0.357079 0.675018 0.28791 0.668648 0.292508 0.68044 0.305615 0.55314 0.318613 0.554862 0.302034 0.54145 0.300727 0.554862 0.302034 0.563074 0.288004 0.549217 0.28076 0.563074 0.288004 0.583026 0.280124 0.576103 0.269857 0.583026 0.280124 0.608482 0.275635 0.6054 0.26638 0.608482 0.275635 0.641119 0.279235 0.643371 0.272132 0.643371 0.272132 0.641119 0.279235 0.668648 0.292508 0.718185 0.583447 0.792362 0.640906 0.839209 0.575641 0.659726 0.548768 0.718185 0.583447 0.745563 0.529375 0.659726 0.548768 0.66369 0.496121 0.612941 0.494211 0.564837 0.532248 0.604011 0.538053 0.612941 0.494211 0.567361 0.488709 0.53099 0.486044 0.529187 0.529399 0.499999 0.527693 0.529187 0.529399 0.53099 0.486044 0.500044 0.09369999 0.500043 0.097889 0.512909 0.09711396 0.511312 0.198505 0.509714 0.193433 0.500033 0.195039 0.521297 0.188286 0.509714 0.193433 0.511312 0.198505 0.529901 0.182644 0.521297 0.188286 0.523268 0.19198 0.534737 0.178577 0.529901 0.182644 0.531542 0.184554 0.536549 0.173965 0.534737 0.178577 0.538049 0.178149 0.536549 0.173965 0.54382 0.17298 0.541591 0.167858 0.534891 0.170956 0.541591 0.167858 0.533933 0.1639119 0.523823 0.159741 0.521547 0.163902 0.531019 0.16708 0.510835 0.1563889 0.509336 0.161341 0.521547 0.163902 0.509336 0.161341 0.510835 0.1563889 0.500037 0.156111 0.500034 0.190932 0.500033 0.195039 0.509714 0.193433 0.521297 0.188286 0.520431 0.1851119 0.509935 0.189238 0.534544 0.174284 0.5335 0.1775529 0.534737 0.178577 0.534737 0.178577 0.5335 0.1775529 0.529541 0.18046 0.530192 0.169854 0.533246 0.172523 0.534891 0.170956 0.533246 0.172523 0.534544 0.174284 0.536549 0.173965 0.509813 0.165672 0.521133 0.167034 0.521547 0.163902 0.509336 0.161341 0.500037 0.161186 0.500036 0.1653749 0.521133 0.167034 0.530192 0.169854 0.531019 0.16708 0.529901 0.182644 0.529541 0.18046 0.520431 0.1851119 0.500034 0.185291 0.500034 0.190932 0.509935 0.189238 0.520431 0.1851119 0.520874 0.182179 0.510237 0.1844159 0.529541 0.18046 0.529626 0.178466 0.520874 0.182179 0.5335 0.1775529 0.532035 0.176288 0.529626 0.178466 0.534544 0.174284 0.533079 0.174443 0.532035 0.176288 0.533246 0.172523 0.532334 0.173146 0.533079 0.174443 0.530014 0.170985 0.532334 0.173146 0.533246 0.172523 0.521644 0.1684319 0.530014 0.170985 0.530192 0.169854 0.510487 0.1677359 0.521644 0.1684319 0.521133 0.167034 0.509813 0.165672 0.500036 0.1653749 0.500036 0.167807 0.800618 0.137459 0.807065 0.1616899 0.846794 0.136261 0.833766 0.119095 0.846794 0.136261 0.87434 0.118478 0.94054 0.238871 0.979099 0.265579 0.931935 0.1451089 0.919463 0.304898 0.914136 0.334021 0.989016 0.356029 0.914136 0.334021 0.869308 0.346532 0.86922 0.349081 0.910343 0.257112 0.919463 0.304898 0.979099 0.265579 0.86922 0.349081 0.869308 0.346532 0.855356 0.331283 0.855356 0.331283 0.849319 0.299294 0.830778 0.29562 0.830778 0.29562 0.849319 0.299294 0.835007 0.241409 0.820479 0.213201 0.829178 0.215664 0.828142 0.1987079 0.807065 0.1616899 0.828142 0.1987079 0.834553 0.172541 0.825907 0.2408 0.835007 0.241409 0.829178 0.215664 0.884667 0.193589 0.910343 0.257112 0.94054 0.238871 0.853827 0.170967 0.884667 0.193589 0.91109 0.165303 0.846794 0.136261 0.834553 0.172541 0.853827 0.170967 0.584606 0.357079 0.592961 0.343329 0.575827 0.33649 0.56544 0.346793 0.575827 0.33649 0.568779 0.327712 0.568779 0.327712 0.564751 0.317004 0.55314 0.318613 0.68044 0.305615 0.676137 0.306321 0.679627 0.317624 0.665388 0.34293 0.662846 0.334305 0.638442 0.342671 0.637329 0.355789 0.638442 0.342671 0.613948 0.348199 0.610162 0.360214 0.613948 0.348199 0.592961 0.343329 0.668648 0.292508 0.666475 0.29748 0.676137 0.306321 0.564751 0.317004 0.566079 0.303171 0.554862 0.302034 0.566079 0.303171 0.573089 0.294217 0.563074 0.288004 0.573089 0.294217 0.58848 0.289199 0.583026 0.280124 0.58848 0.289199 0.612174 0.286186 0.608482 0.275635 0.612174 0.286186 0.639012 0.287159 0.641119 0.279235 0.639012 0.287159 0.666475 0.29748 0.668648 0.292508 0.520874 0.182179 0.521095 0.178108 0.510284 0.180856 0.533079 0.174443 0.531219 0.174628 0.530837 0.175233 0.532035 0.176288 0.530837 0.175233 0.529682 0.175549 0.529836 0.173346 0.53096 0.174051 0.532334 0.173146 0.53096 0.174051 0.531219 0.174628 0.533079 0.174443 0.510848 0.170799 0.522235 0.172163 0.521644 0.1684319 0.522235 0.172163 0.529836 0.173346 0.530014 0.170985 0.529626 0.178466 0.529682 0.175549 0.521095 0.178108 0.510237 0.1844159 0.510284 0.180856 0.500034 0.1819159 0.500036 0.170826 0.510848 0.170799 0.510487 0.1677359 0.885044 0.389155 0.880418 0.441246 0.98131 0.449021 0.880418 0.441246 0.885044 0.389155 0.822836 0.379121 0.806795 0.420418 0.822836 0.379121 0.776168 0.363998 0.736367 0.347279 0.711063 0.382843 0.747425 0.404644 0.707554 0.333949 0.687422 0.364452 0.711063 0.382843 0.679919 0.357993 0.687422 0.364452 0.707554 0.333949 0.665388 0.34293 0.672417 0.351535 0.691025 0.327143 0.662846 0.334305 0.665388 0.34293 0.682812 0.320439 0.517822 0.265243 0.521614 0.282955 0.538948 0.2778 0.546035 0.365667 0.574243 0.379127 0.577492 0.369967 0.574243 0.379127 0.607938 0.382558 0.607692 0.372992 0.641156 0.366715 0.607692 0.372992 0.607938 0.382558 0.645287 0.375528 0.679919 0.357993 0.672417 0.351535 0.672417 0.351535 0.679919 0.357993 0.699289 0.330546 0.691025 0.327143 0.699289 0.330546 0.697232 0.307712 0.688977 0.306502 0.697232 0.307712 0.681475 0.284543 0.675018 0.28791 0.681475 0.284543 0.644783 0.267132 0.644783 0.267132 0.603355 0.259041 0.6054 0.26638 0.603355 0.259041 0.572404 0.262561 0.576103 0.269857 0.572404 0.262561 0.538948 0.2778 0.549217 0.28076 0.538948 0.2778 0.531346 0.301863 0.54145 0.300727 0.531346 0.301863 0.531427 0.321968 0.540752 0.320716 0.531427 0.321968 0.535636 0.342276 0.545084 0.339002 0.535636 0.342276 0.546035 0.365667 0.554701 0.356948 1.788092 0.176463 1.775201 0.185802 1.785023 0.195783 1.791359 0.208522 1.790943 0.2234809 1.801382 0.221318 1.78648 0.2366279 1.78092 0.247547 1.793088 0.249623 1.756201 0.26694 1.744039 0.272305 1.745658 0.279945 1.728944 0.274401 1.704149 0.266927 1.699977 0.275186 1.680218 0.222438 1.687795 0.23083 1.700093 0.208896 1.693804 0.199452 1.700093 0.208896 1.709517 0.1951979 1.717225 0.175766 1.720926 0.187757 1.736831 0.182565 1.762137 0.198188 1.753126 0.209231 1.759873 0.21387 1.764817 0.221845 1.766083 0.229696 1.77793 0.226952 1.765014 0.237781 1.762493 0.243907 1.770831 0.245542 1.748782 0.256366 1.73993 0.259311 1.741777 0.265966 1.728616 0.259671 1.711599 0.252353 1.708012 0.259238 1.69621 0.235885 1.704675 0.23843 1.71116 0.222795 1.705624 0.216316 1.71116 0.222795 1.718394 0.213329 1.724491 0.199145 1.7279 0.209083 1.737309 0.2067739 1.743357 0.224376 1.746508 0.226204 1.752217 0.220768 1.748655 0.2292 1.74988 0.232762 1.756537 0.231537 1.749656 0.237292 1.748786 0.239754 1.754799 0.241801 1.745078 0.250783 1.742328 0.245962 1.737898 0.2471089 1.731595 0.24617 1.722551 0.240042 1.71689 0.245249 1.722551 0.240042 1.723684 0.2314119 1.718211 0.22837 1.718211 0.22837 1.723684 0.2314119 1.727515 0.22603 1.73045 0.217252 1.732619 0.224193 1.736425 0.223479 1.738757 0.234343 1.73801 0.235608 1.738914 0.234544 1.739097 0.234802 1.73801 0.235608 1.739329 0.235108 1.739419 0.235623 1.73801 0.235608 1.739299 0.235996 1.73801 0.235608 1.73736 0.236841 1.738019 0.236998 1.73736 0.236841 1.73801 0.235608 1.736658 0.236127 1.736658 0.236127 1.73801 0.235608 1.7365 0.235127 1.7365 0.235127 1.73801 0.235608 1.736874 0.234587 1.737405 0.234374 1.73801 0.235608 1.737841 0.234273 1.953876 0.06066 1.958209 0.07261198 1.968332 0.06686997 1.871121 0.179872 1.88206 0.176037 1.877476 0.167232 1.958209 0.07261198 1.96486 0.08480095 1.97235 0.07859098 1.877476 0.167232 1.88206 0.176037 1.887994 0.173644 1.828603 0.183198 1.827707 0.19286 1.83883 0.193942 1.906771 0.08628696 1.905547 0.099204 1.914505 0.100103 1.886343 0.145047 1.880651 0.151904 1.88876 0.159162 1.870496 0.158933 1.861965 0.162671 1.867852 0.173363 1.845044 0.18594 1.84647 0.1743209 1.842441 0.17394 1.867721 0.139481 1.860294 0.14608 1.86457 0.1512179 1.858807 0.1384 1.850848 0.139405 1.852693 0.146235 1.845629 0.156486 1.848327 0.15442 1.841762 0.14789 1.799023 0.161862 1.788092 0.176463 1.816827 0.180809 1.813895 0.141601 1.807219 0.151353 1.823086 0.157697 1.834322 0.141101 1.824921 0.129556 1.813895 0.141601 1.848406 0.132394 1.857316 0.130001 1.854347 0.114684 1.854347 0.114684 1.857316 0.130001 1.868709 0.128167 1.869544 0.11425 1.868709 0.128167 1.88378 0.133413 1.900915 0.117211 1.891441 0.137163 1.902238 0.143434 1.871121 0.179872 1.867852 0.173363 1.857365 0.179578 1.854497 0.167489 1.857365 0.179578 1.867852 0.173363 1.844696 0.143555 1.850026 0.149438 1.852693 0.146235 1.830842 0.1237969 1.839609 0.137251 1.848406 0.132394 1.771522 0.146548 1.745693 0.12244 1.737658 0.129462 1.687775 0.192164 1.685942 0.168431 1.670444 0.176328 1.96486 0.08480095 1.973469 0.09793496 1.981165 0.09132796 1.925091 0.157034 1.938273 0.138205 1.926958 0.130658 1.893776 0.175861 1.911294 0.183998 1.913113 0.177356 1.728872 0.29593 1.734969 0.289691 1.726147 0.287828 1.985484 0.109379 1.992223 0.102056 1.981165 0.09132796 1.675994 0.21921 1.687775 0.192164 1.674282 0.1963779 1.912932 0.149626 1.926958 0.130658 1.91456 0.123439 1.927528 0.07851397 1.933177 0.089742 1.940586 0.08491897 1.713874 0.166947 1.731019 0.161175 1.721857 0.1440719 1.944813 0.102562 1.950963 0.09662598 1.940586 0.08491897 1.962973 0.109041 1.950963 0.09662598 1.944813 0.102562 1.970858 0.125523 1.97615 0.119545 1.962973 0.109041 1.698425 0.279325 1.696207 0.28288 1.721321 0.290414 1.826286 0.217891 1.825673 0.233433 1.834145 0.232508 1.921031 0.195095 1.909826 0.190997 1.908881 0.1994889 1.867464 0.207539 1.880657 0.203082 1.874263 0.186841 1.880657 0.203082 1.894639 0.199246 1.887575 0.1847299 1.894639 0.199246 1.908881 0.1994889 1.909826 0.190997 1.680218 0.222438 1.693804 0.199452 1.687775 0.192164 1.713874 0.166947 1.717225 0.175766 1.734009 0.170305 1.760035 0.157406 1.788092 0.176463 1.799023 0.161862 1.807219 0.151353 1.813895 0.141601 1.800303 0.13091 1.800303 0.13091 1.813895 0.141601 1.824921 0.129556 1.842828 0.117367 1.854347 0.114684 1.850774 0.10295 1.854347 0.114684 1.869544 0.11425 1.868918 0.101782 1.868918 0.101782 1.869544 0.11425 1.889832 0.114884 1.91456 0.123439 1.914505 0.100103 1.905547 0.099204 1.826019 0.111853 1.830842 0.1237969 1.842828 0.117367 1.926958 0.130658 1.938273 0.138205 1.94825 0.126877 1.834145 0.232508 1.825673 0.233433 1.830642 0.240252 1.951831 0.147182 1.961004 0.13662 1.94825 0.126877 1.911294 0.183998 1.923562 0.189312 1.926415 0.1836439 1.726147 0.287828 1.734969 0.289691 1.73914 0.286999 1.91456 0.123439 1.926958 0.130658 1.933782 0.1152819 1.727001 0.284067 1.699977 0.275186 1.698425 0.279325 1.855153 0.215854 1.842138 0.205112 1.839496 0.219819 1.938273 0.138205 1.925091 0.157034 1.938091 0.165274 1.847893 0.163447 1.848327 0.15442 1.845629 0.156486 1.844373 0.163301 1.845629 0.156486 1.836453 0.1539829 1.84042 0.185299 1.83883 0.193942 1.843644 0.194129 1.834145 0.232508 1.837472 0.232885 1.839496 0.219819 1.83589 0.242896 1.836801 0.23706 1.833505 0.2372069 1.830985 0.171709 1.828603 0.183198 1.84042 0.185299 1.879633 0.140493 1.868092 0.1341429 1.867721 0.139481 1.858807 0.1384 1.860294 0.14608 1.867721 0.139481 1.860294 0.14608 1.852693 0.146235 1.855605 0.152595 1.850026 0.149438 1.852241 0.156064 1.855605 0.152595 1.899315 0.167725 1.906004 0.158709 1.895786 0.1517249 1.913113 0.177356 1.918784 0.166729 1.906004 0.158709 1.913113 0.177356 1.926415 0.1836439 1.93205 0.174248 1.880651 0.151904 1.870496 0.158933 1.877476 0.167232 1.687775 0.192164 1.693804 0.199452 1.705163 0.184258 1.70229 0.176212 1.698589 0.1599529 1.685942 0.168431 1.944379 0.06675398 1.949343 0.07844096 1.958209 0.07261198 1.949343 0.07844096 1.957737 0.09058499 1.96486 0.08480095 1.973469 0.09793496 1.96486 0.08480095 1.957737 0.09058499 1.980808 0.114449 1.985484 0.109379 1.973469 0.09793496 1.793088 0.249623 1.794168 0.251932 1.801201 0.241481 1.761905 0.274374 1.745658 0.279945 1.751433 0.282454 1.816131 0.234517 1.799037 0.235543 1.801201 0.241481 1.816131 0.234517 1.815172 0.2191489 1.801382 0.221318 1.796666 0.192191 1.815582 0.191707 1.816827 0.180809 1.743357 0.224376 1.740798 0.229039 1.742232 0.230322 1.748655 0.2292 1.743293 0.231527 1.744012 0.233687 1.749656 0.237292 1.744117 0.23594 1.743535 0.237685 1.739898 0.24108 1.737567 0.241658 1.737898 0.2471089 1.731595 0.24617 1.734438 0.241031 1.730501 0.237781 1.730501 0.237781 1.730596 0.233526 1.723684 0.2314119 1.730596 0.233526 1.732174 0.230753 1.727515 0.22603 1.732619 0.224193 1.734306 0.229224 1.736478 0.228467 1.739043 0.232842 1.739508 0.233188 1.742232 0.230322 1.743293 0.231527 1.739857 0.233609 1.740455 0.234544 1.74069 0.235502 1.740451 0.236271 1.743535 0.237685 1.739898 0.24108 1.738782 0.237955 1.737797 0.238238 1.734438 0.241031 1.736457 0.237966 1.735126 0.236174 1.735126 0.236174 1.734885 0.2344419 1.730596 0.233526 1.734885 0.2344419 1.735627 0.2333739 1.732174 0.230753 1.736606 0.232917 1.737394 0.232753 1.736478 0.228467 1.738998 0.233196 1.739339 0.233521 1.739508 0.233188 1.740376 0.235512 1.740184 0.236184 1.740451 0.236271 1.738782 0.237955 1.738721 0.237639 1.737875 0.2379299 1.736457 0.237966 1.736707 0.237685 1.735634 0.236384 1.735126 0.236174 1.735634 0.236384 1.735265 0.234577 1.735265 0.234577 1.735935 0.233639 1.735627 0.2333739 1.736814 0.233267 1.737502 0.2331089 1.737394 0.232753 1.739329 0.235108 1.739419 0.235623 1.740376 0.235512 1.738757 0.234343 1.738914 0.234544 1.739339 0.233521 1.737405 0.234374 1.737841 0.234273 1.737502 0.2331089 1.7365 0.235127 1.736874 0.234587 1.735935 0.233639 1.735634 0.236384 1.736658 0.236127 1.7365 0.235127 1.736707 0.237685 1.73736 0.236841 1.736658 0.236127 1.738721 0.237639 1.738501 0.2368119 1.738019 0.236998 1.739419 0.235623 1.739299 0.235996 1.740184 0.236184 1.965975 0.131049 1.953358 0.120918 1.94825 0.126877 1.94825 0.126877 1.953358 0.120918 1.939213 0.108398 1.933782 0.1152819 1.939213 0.108398 1.926445 0.09443199 1.914501 0.08544898 1.914505 0.100103 1.926445 0.09443199 1.760035 0.157406 1.737658 0.129462 1.729863 0.137615 1.753771 0.168429 1.788092 0.176463 1.760035 0.157406 1.775201 0.185802 1.788092 0.176463 1.753771 0.168429 1.753126 0.209231 1.762137 0.198188 1.748032 0.196215 1.743357 0.224376 1.747529 0.217564 1.742083 0.2156029 1.740798 0.229039 1.743357 0.224376 1.739661 0.223291 1.739043 0.232842 1.740798 0.229039 1.738848 0.228464 1.738192 0.233085 1.738998 0.233196 1.739043 0.232842 1.73827 0.234265 1.738757 0.234343 1.738998 0.233196 1.73801 0.235608 1.738757 0.234343 1.73827 0.234265 1.900654 0.08499896 1.893274 0.09621697 1.905547 0.099204 1.78114 0.137691 1.752954 0.116599 1.745693 0.12244 1.799023 0.161862 1.807219 0.151353 1.78114 0.137691 1.807219 0.151353 1.799023 0.161862 1.819384 0.168629 1.834037 0.161116 1.830985 0.171709 1.842441 0.17394 1.84647 0.1743209 1.847893 0.163447 1.844373 0.163301 1.852241 0.156064 1.854497 0.167489 1.861965 0.162671 1.86457 0.1512179 1.855605 0.152595 1.861965 0.162671 1.874439 0.146404 1.86457 0.1512179 1.870496 0.158933 1.879633 0.140493 1.874439 0.146404 1.880651 0.151904 1.889832 0.114884 1.88378 0.133413 1.891441 0.137163 1.893274 0.09621697 1.889832 0.114884 1.900915 0.117211 1.752954 0.116599 1.737416 0.09950995 1.731337 0.10405 1.745693 0.12244 1.731337 0.10405 1.7241 0.110368 1.737658 0.129462 1.7241 0.110368 1.717783 0.1155019 1.721857 0.1440719 1.710041 0.122749 1.701969 0.13084 1.698589 0.1599529 1.691879 0.140025 1.68171 0.148528 1.685942 0.168431 1.68171 0.148528 1.668703 0.159285 1.855153 0.215854 1.867464 0.207539 1.861763 0.192957 1.859424 0.1862 1.857365 0.179578 1.845044 0.18594 1.84647 0.1743209 1.845044 0.18594 1.857365 0.179578 1.847893 0.163447 1.84647 0.1743209 1.854497 0.167489 1.848327 0.15442 1.847893 0.163447 1.852241 0.156064 1.841762 0.14789 1.848327 0.15442 1.850026 0.149438 1.824921 0.129556 1.834322 0.141101 1.839609 0.137251 1.817401 0.118698 1.824921 0.129556 1.830842 0.1237969 1.97615 0.119545 1.980808 0.114449 1.96813 0.10343 1.962973 0.109041 1.96813 0.10343 1.957737 0.09058499 1.950963 0.09662598 1.957737 0.09058499 1.949343 0.07844096 1.934904 0.07297796 1.940586 0.08491897 1.949343 0.07844096 1.710989 0.151076 1.701969 0.13084 1.691879 0.140025 1.713874 0.166947 1.710989 0.151076 1.698589 0.1599529 1.717225 0.175766 1.713874 0.166947 1.70229 0.176212 1.720926 0.187757 1.717225 0.175766 1.705163 0.184258 1.7279 0.209083 1.724491 0.199145 1.713998 0.205264 1.732619 0.224193 1.73045 0.217252 1.722937 0.220684 1.732174 0.230753 1.734306 0.229224 1.732619 0.224193 1.735627 0.2333739 1.736606 0.232917 1.734306 0.229224 1.735935 0.233639 1.736814 0.233267 1.736606 0.232917 1.736874 0.234587 1.737405 0.234374 1.736814 0.233267 1.762137 0.198188 1.775201 0.185802 1.751521 0.181824 1.720926 0.187757 1.724491 0.199145 1.737623 0.196156 1.724491 0.199145 1.720926 0.187757 1.709517 0.1951979 1.700093 0.208896 1.705624 0.216316 1.713998 0.205264 1.687795 0.23083 1.69621 0.235885 1.705624 0.216316 1.728924 0.26656 1.708012 0.259238 1.704149 0.266927 1.756201 0.26694 1.752645 0.261807 1.741777 0.265966 1.775 0.237492 1.770831 0.245542 1.78092 0.247547 1.777468 0.215626 1.77793 0.226952 1.790943 0.2234809 1.775201 0.185802 1.762137 0.198188 1.771438 0.204555 1.747529 0.217564 1.753126 0.209231 1.745099 0.206811 1.7279 0.209083 1.73045 0.217252 1.736742 0.215736 1.73045 0.217252 1.7279 0.209083 1.718394 0.213329 1.71116 0.222795 1.718211 0.22837 1.722937 0.220684 1.714342 0.23974 1.718211 0.22837 1.71116 0.222795 1.729618 0.253338 1.71689 0.245249 1.711599 0.252353 1.745078 0.250783 1.738516 0.253007 1.73993 0.259311 1.756266 0.237959 1.754799 0.241801 1.762493 0.243907 1.755391 0.226121 1.756537 0.231537 1.766083 0.229696 1.753126 0.209231 1.747529 0.217564 1.752217 0.220768 1.965975 0.131049 1.970858 0.125523 1.958062 0.115171 1.958062 0.115171 1.944813 0.102562 1.939213 0.108398 1.939213 0.108398 1.944813 0.102562 1.933177 0.089742 1.920563 0.083081 1.926445 0.09443199 1.933177 0.089742 1.729863 0.137615 1.717783 0.1155019 1.710041 0.122749 1.731019 0.161175 1.752679 0.159906 1.729863 0.137615 1.734009 0.170305 1.753771 0.168429 1.752679 0.159906 1.751521 0.181824 1.753771 0.168429 1.734009 0.170305 1.748032 0.196215 1.751521 0.181824 1.736831 0.182565 1.745099 0.206811 1.748032 0.196215 1.737623 0.196156 1.742083 0.2156029 1.745099 0.206811 1.737309 0.2067739 1.739661 0.223291 1.742083 0.2156029 1.736742 0.215736 1.738848 0.228464 1.739661 0.223291 1.736425 0.223479 1.737394 0.232753 1.738165 0.232712 1.738848 0.228464 1.737502 0.2331089 1.738192 0.233085 1.738165 0.232712 1.737841 0.234273 1.73827 0.234265 1.738192 0.233085 1.745658 0.279945 1.727001 0.284067 1.73914 0.286999 1.728944 0.274401 1.727001 0.284067 1.745658 0.279945 1.728924 0.26656 1.728944 0.274401 1.744039 0.272305 1.73993 0.259311 1.728616 0.259671 1.728924 0.26656 1.738516 0.253007 1.729618 0.253338 1.728616 0.259671 1.731595 0.24617 1.729618 0.253338 1.738516 0.253007 1.737567 0.241658 1.734438 0.241031 1.731595 0.24617 1.736457 0.237966 1.734438 0.241031 1.737567 0.241658 1.736707 0.237685 1.736457 0.237966 1.737797 0.238238 1.73736 0.236841 1.736707 0.237685 1.737875 0.2379299 1.771401 0.269362 1.761905 0.274374 1.764147 0.277736 1.764365 0.26316 1.756201 0.26694 1.761905 0.274374 1.759144 0.257674 1.752645 0.261807 1.756201 0.26694 1.754128 0.253072 1.748782 0.256366 1.752645 0.261807 1.749056 0.248236 1.745078 0.250783 1.748782 0.256366 1.742328 0.245962 1.745078 0.250783 1.749056 0.248236 1.741313 0.240269 1.739898 0.24108 1.742328 0.245962 1.738782 0.237955 1.739898 0.24108 1.741313 0.240269 1.738721 0.237639 1.738782 0.237955 1.739452 0.23751 1.738501 0.2368119 1.738721 0.237639 1.739299 0.237266 1.84273 0.2418 1.836801 0.23706 1.83589 0.242896 1.854093 0.229136 1.849708 0.236509 1.862446 0.243341 1.868245 0.237964 1.876132 0.232245 1.864407 0.222241 1.876132 0.232245 1.884735 0.227169 1.874882 0.216437 1.884735 0.227169 1.894464 0.223247 1.886562 0.212197 1.898062 0.208796 1.886562 0.212197 1.894464 0.223247 1.909226 0.207734 1.898062 0.208796 1.903366 0.2199569 1.918064 0.207076 1.909226 0.207734 1.912679 0.217016 1.880657 0.203082 1.867464 0.207539 1.874882 0.216437 1.849708 0.236509 1.854093 0.229136 1.846806 0.22547 1.918967 0.200992 1.908881 0.1994889 1.909226 0.207734 1.894639 0.199246 1.880657 0.203082 1.886562 0.212197 1.908881 0.1994889 1.894639 0.199246 1.898062 0.208796 1.867464 0.207539 1.855153 0.215854 1.864407 0.222241 1.855153 0.215854 1.846806 0.22547 1.854093 0.229136 1.858851 0.247105 1.862446 0.243341 1.849708 0.236509 1.84758 0.242211 1.849708 0.236509 1.843883 0.234755 1.790943 0.2234809 1.78648 0.2366279 1.799037 0.235543 1.77793 0.226952 1.775 0.237492 1.78648 0.2366279 1.766083 0.229696 1.765014 0.237781 1.775 0.237492 1.756537 0.231537 1.756266 0.237959 1.765014 0.237781 1.74988 0.232762 1.749656 0.237292 1.756266 0.237959 1.744117 0.23594 1.749656 0.237292 1.74988 0.232762 1.739097 0.234802 1.739329 0.235108 1.740172 0.2346529 1.739634 0.233896 1.740172 0.2346529 1.740455 0.234544 1.74069 0.235502 1.744117 0.23594 1.744012 0.233687 1.740376 0.235512 1.74069 0.235502 1.740455 0.234544 1.887994 0.173644 1.893776 0.175861 1.899315 0.167725 1.874263 0.186841 1.887575 0.1847299 1.88206 0.176037 1.874263 0.186841 1.871121 0.179872 1.859424 0.1862 1.861763 0.192957 1.859424 0.1862 1.843644 0.194129 1.83883 0.193942 1.837529 0.204576 1.842138 0.205112 1.827707 0.19286 1.826816 0.203352 1.837529 0.204576 1.815507 0.203609 1.815582 0.191707 1.796666 0.192191 1.791359 0.208522 1.80018 0.206184 1.796666 0.192191 1.771438 0.204555 1.777468 0.215626 1.791359 0.208522 1.764817 0.221845 1.777468 0.215626 1.771438 0.204555 1.755391 0.226121 1.764817 0.221845 1.759873 0.21387 1.746508 0.226204 1.748655 0.2292 1.755391 0.226121 1.743293 0.231527 1.748655 0.2292 1.746508 0.226204 1.739857 0.233609 1.743293 0.231527 1.742232 0.230322 1.739339 0.233521 1.739634 0.233896 1.739857 0.233609 1.738914 0.234544 1.739097 0.234802 1.739634 0.233896 1.73801 0.235608 1.739419 0.235623 1.739329 0.235108 1.73801 0.235608 1.739097 0.234802 1.738914 0.234544 1.793088 0.249623 1.781358 0.262902 1.794168 0.251932 1.78092 0.247547 1.772821 0.257564 1.781358 0.262902 1.770831 0.245542 1.765429 0.252134 1.772821 0.257564 1.762493 0.243907 1.758978 0.248827 1.765429 0.252134 1.754799 0.241801 1.752604 0.2450349 1.758978 0.248827 1.748786 0.239754 1.74748 0.241861 1.752604 0.2450349 1.743535 0.237685 1.74256 0.239222 1.74748 0.241861 1.740016 0.236963 1.74256 0.239222 1.743535 0.237685 1.740184 0.236184 1.739795 0.236786 1.740016 0.236963 1.739299 0.235996 1.73915 0.236342 1.739795 0.236786 1.73801 0.235608 1.738858 0.236608 1.73915 0.236342 1.73801 0.235608 1.73915 0.236342 1.739299 0.235996 1.825717 0.239582 1.825673 0.233433 1.816131 0.234517 1.815172 0.2191489 1.816131 0.234517 1.825673 0.233433 1.815582 0.191707 1.815507 0.203609 1.826816 0.203352 1.816827 0.180809 1.815582 0.191707 1.827707 0.19286 1.819384 0.168629 1.816827 0.180809 1.828603 0.183198 1.823086 0.157697 1.819384 0.168629 1.830985 0.171709 1.828243 0.150206 1.823086 0.157697 1.834037 0.161116 1.834322 0.141101 1.828243 0.150206 1.836453 0.1539829 1.839609 0.137251 1.834322 0.141101 1.841762 0.14789 1.848406 0.132394 1.839609 0.137251 1.844696 0.143555 1.857316 0.130001 1.848406 0.132394 1.850848 0.139405 1.857316 0.130001 1.858807 0.1384 1.868092 0.1341429 1.88378 0.133413 1.868709 0.128167 1.868092 0.1341429 1.88378 0.133413 1.879633 0.140493 1.886343 0.145047 1.891441 0.137163 1.886343 0.145047 1.895786 0.1517249 1.906004 0.158709 1.912932 0.149626 1.902238 0.143434 1.918784 0.166729 1.925091 0.157034 1.912932 0.149626 1.925091 0.157034 1.918784 0.166729 1.93205 0.174248 1.909826 0.190997 1.921031 0.195095 1.923562 0.189312 1.887575 0.1847299 1.909826 0.190997 1.911294 0.183998 1.887575 0.1847299 1.893776 0.175861 1.887994 0.173644 1.73915 0.236342 1.738858 0.236608 1.739299 0.237266 1.739299 0.237266 1.739452 0.23751 1.740016 0.236963 1.739452 0.23751 1.741313 0.240269 1.74256 0.239222 1.74256 0.239222 1.741313 0.240269 1.74509 0.244153 1.74748 0.241861 1.74509 0.244153 1.749056 0.248236 1.752604 0.2450349 1.749056 0.248236 1.754128 0.253072 1.758978 0.248827 1.754128 0.253072 1.759144 0.257674 1.765429 0.252134 1.759144 0.257674 1.764365 0.26316 1.772821 0.257564 1.764365 0.26316 1.771401 0.269362 1.781358 0.262902 1.771401 0.269362 1.772258 0.271117 1.73801 0.235608 1.738501 0.2368119 1.738858 0.236608 1.73801 0.235608 1.73827 0.234265 1.737841 0.234273 1.73801 0.235608 1.737405 0.234374 1.736874 0.234587 1.738501 0.2368119 1.73801 0.235608 1.738019 0.236998 1.815172 0.2191489 1.815507 0.203609 1.80018 0.206184 1.815507 0.203609 1.815172 0.2191489 1.826286 0.217891 1.826286 0.217891 1.83571 0.21889 1.837529 0.204576 1.842138 0.205112 1.837529 0.204576 1.83571 0.21889 1.846806 0.22547 1.839496 0.219819 1.837472 0.232885 1.836801 0.23706 1.837472 0.232885 1.834145 0.232508 1.843883 0.234755 1.837472 0.232885 1.836801 0.23706 1.830642 0.240252 1.830315 0.244146 1.833441 0.243393 1.830642 0.240252 1.825673 0.233433 1.825717 0.239582 1.825717 0.239582 1.825845 0.245489 1.830315 0.244146 1.825845 0.245489 1.825717 0.239582 1.817202 0.241384 1.817202 0.241384 1.801201 0.241481 1.806527 0.253382 1.794168 0.251932 1.796716 0.258004 1.806527 0.253382 1.781358 0.262902 1.782499 0.265293 1.794168 0.251932 1.782499 0.265293 1.796716 0.258004 1.794168 0.251932 1.794485 0.115503 1.775878 0.121228 1.78114 0.137691 1.775878 0.121228 1.757937 0.10931 1.752954 0.116599 1.894671 0.08162498 1.88588 0.08796197 1.893274 0.09621697 1.88588 0.08796197 1.865827 0.09068995 1.868918 0.101782 1.850774 0.10295 1.868918 0.101782 1.865827 0.09068995 1.848457 0.09234398 1.836228 0.09452599 1.839141 0.105747 1.822922 0.09920495 1.826019 0.111853 1.839141 0.105747 1.817401 0.118698 1.813665 0.105438 1.794485 0.115503 1.79385 0.06444698 1.780002 0.06436395 1.775878 0.121228 1.780002 0.06436395 1.76624 0.06227797 1.757937 0.10931 1.876445 0.04401695 1.866769 0.048029 1.88588 0.08796197 1.866769 0.048029 1.852972 0.05426698 1.865827 0.09068995 1.852972 0.05426698 1.839566 0.05599695 1.848457 0.09234398 1.839566 0.05599695 1.827463 0.05848199 1.836228 0.09452599 1.836228 0.09452599 1.827463 0.05848199 1.816271 0.06140398 1.813665 0.105438 1.807674 0.06286996 1.79385 0.06444698 1.807674 0.06286996 1.804208 0.02529597 1.79184 0.02815699 1.827463 0.05848199 1.818849 0.02026998 1.811232 0.02281296 1.829456 0.01909697 1.818849 0.02026998 1.827463 0.05848199 1.840023 0.018314 1.829456 0.01909697 1.839566 0.05599695 1.866769 0.048029 1.852173 0.01307195 1.840023 0.018314 1.876445 0.04401695 1.86264 0.008869946 1.852173 0.01307195 1.780298 0.02789896 1.767511 0.02575498 1.76624 0.06227797 1.79184 0.02815699 1.780298 0.02789896 1.780002 0.06436395 1.767511 0.02575498 1.757414 0.02402299 1.751931 0.05917495 1.76624 0.06227797 1.751931 0.05917495 1.741103 0.09319698 1.757937 0.10931 1.741103 0.09319698 1.737416 0.09950995 1.813665 0.105438 1.817401 0.118698 1.826019 0.111853 1.807674 0.06286996 1.813665 0.105438 1.822922 0.09920495 1.804208 0.02529597 1.807674 0.06286996 1.816271 0.06140398 1.898362 0.244361 1.888053 0.248836 1.891105 0.253828 1.874132 0.257862 1.874179 0.266193 1.880546 0.261034 1.929573 0.228177 1.924067 0.233415 1.928978 0.238305 1.915981 0.2385759 1.906862 0.242249 1.913844 0.251535 1.924067 0.233415 1.915981 0.2385759 1.922232 0.245404 1.888053 0.248836 1.898362 0.244361 1.893318 0.237758 1.87147 0.252318 1.874132 0.257862 1.880375 0.25399 1.924192 0.223204 1.918388 0.227256 1.924067 0.233415 1.910346 0.231357 1.901653 0.234526 1.906862 0.242249 1.918388 0.227256 1.910346 0.231357 1.915981 0.2385759 1.922232 0.245404 1.913844 0.251535 1.923114 0.261393 1.935826 0.243848 1.928978 0.238305 1.922232 0.245404 1.928978 0.238305 1.935826 0.243848 1.940569 0.233532 1.898362 0.244361 1.906862 0.242249 1.901653 0.234526 1.906862 0.242249 1.898362 0.244361 1.902112 0.250034 1.880375 0.25399 1.880546 0.261034 1.891105 0.253828 1.877109 0.247859 1.880375 0.25399 1.888053 0.248836 1.868245 0.237964 1.862446 0.243341 1.87147 0.252318 1.877109 0.247859 1.884324 0.2426429 1.876132 0.232245 1.884324 0.2426429 1.893318 0.237758 1.884735 0.227169 1.893318 0.237758 1.901653 0.234526 1.894464 0.223247 1.903366 0.2199569 1.894464 0.223247 1.901653 0.234526 1.912679 0.217016 1.903366 0.2199569 1.910346 0.231357 1.919629 0.21523 1.912679 0.217016 1.918388 0.227256 1.869425 0.259546 1.86901 0.268435 1.874179 0.266193 1.867471 0.255287 1.869425 0.259546 1.874132 0.257862 1.867471 0.255287 1.87147 0.252318 1.862446 0.243341 0.788092 0.176463 0.796666 0.192191 0.785023 0.195783 0.801382 0.221318 0.790943 0.2234809 0.791359 0.208522 0.793088 0.249623 0.78092 0.247547 0.78648 0.2366279 0.745658 0.279945 0.744039 0.272305 0.756201 0.26694 0.727001 0.284067 0.699977 0.275186 0.704149 0.266927 0.680218 0.222438 0.693804 0.199452 0.700093 0.208896 0.693804 0.199452 0.705163 0.184258 0.709517 0.1951979 0.717225 0.175766 0.734009 0.170305 0.736831 0.182565 0.762137 0.198188 0.771438 0.204555 0.759873 0.21387 0.77793 0.226952 0.766082 0.229696 0.764817 0.221845 0.770831 0.245542 0.762493 0.243907 0.765014 0.237781 0.741777 0.265966 0.73993 0.259311 0.748782 0.256366 0.708012 0.259238 0.711599 0.252353 0.728616 0.259671 0.69621 0.235885 0.705624 0.216316 0.71116 0.222795 0.705624 0.216316 0.713998 0.205264 0.718394 0.213329 0.724491 0.199145 0.737623 0.196156 0.737309 0.2067739 0.752217 0.220768 0.746508 0.226204 0.743357 0.224376 0.756537 0.231537 0.74988 0.232762 0.748655 0.2292 0.754799 0.241801 0.748786 0.239754 0.749656 0.237292 0.745078 0.250783 0.738516 0.253007 0.737898 0.2471089 0.729618 0.253338 0.71689 0.245249 0.722551 0.240042 0.714342 0.23974 0.718211 0.22837 0.723684 0.2314119 0.718211 0.22837 0.722937 0.220684 0.727515 0.22603 0.73045 0.217252 0.736742 0.215736 0.736425 0.223479 0.738757 0.234343 0.738914 0.234544 0.73801 0.235608 0.739097 0.234802 0.739329 0.235108 0.73801 0.235608 0.739419 0.235623 0.739299 0.235996 0.73801 0.235608 0.73801 0.235608 0.738019 0.236998 0.73736 0.236841 0.73736 0.236841 0.736658 0.236127 0.73801 0.235608 0.736658 0.236127 0.7365 0.235127 0.73801 0.235608 0.7365 0.235127 0.736874 0.234587 0.73801 0.235608 0.737405 0.234374 0.737841 0.234273 0.73801 0.235608 0.968332 0.06686997 0.958209 0.07261198 0.953876 0.06066 0.867852 0.173363 0.877476 0.167232 0.88206 0.176037 0.958209 0.07261198 0.968332 0.06686997 0.97235 0.07859098 0.877476 0.167232 0.88876 0.159162 0.887994 0.173644 0.828603 0.183198 0.84042 0.185299 0.83883 0.193942 0.914505 0.100103 0.905547 0.099204 0.906771 0.08628696 0.88876 0.159162 0.880652 0.151904 0.886343 0.145047 0.867852 0.173363 0.861965 0.162671 0.870496 0.158933 0.845044 0.18594 0.84042 0.185299 0.842441 0.17394 0.86457 0.1512179 0.860294 0.14608 0.867721 0.139481 0.852693 0.146235 0.850848 0.139405 0.858807 0.1384 0.845629 0.156486 0.836453 0.1539829 0.841762 0.14789 0.816827 0.180809 0.788092 0.176463 0.799023 0.161862 0.823086 0.157697 0.807219 0.151353 0.813895 0.141601 0.834322 0.141101 0.828243 0.150206 0.813895 0.141601 0.854347 0.114684 0.857316 0.130001 0.848406 0.132394 0.869544 0.11425 0.868709 0.128167 0.857316 0.130001 0.88378 0.133413 0.868709 0.128167 0.869544 0.11425 0.902238 0.143434 0.891441 0.137163 0.900915 0.117211 0.857365 0.179578 0.867852 0.173363 0.871121 0.179872 0.867852 0.173363 0.857365 0.179578 0.854497 0.167489 0.852693 0.146235 0.850026 0.149438 0.844696 0.143555 0.830842 0.1237969 0.842828 0.117367 0.848406 0.132394 0.737658 0.129462 0.745693 0.12244 0.771522 0.146548 0.670444 0.176328 0.685942 0.168431 0.687775 0.192164 0.96486 0.08480095 0.97235 0.07859098 0.981165 0.09132796 0.926958 0.130658 0.938273 0.138205 0.925091 0.157034 0.899315 0.167725 0.913113 0.177356 0.911294 0.183998 0.728872 0.29593 0.721321 0.290414 0.726147 0.287828 0.981165 0.09132796 0.992223 0.102056 0.985484 0.109379 0.674282 0.1963779 0.687775 0.192164 0.675994 0.21921 0.91456 0.123439 0.926958 0.130658 0.912932 0.149626 0.940586 0.08491897 0.933178 0.089742 0.927528 0.07851397 0.710989 0.151076 0.721857 0.1440719 0.731019 0.161175 0.940586 0.08491897 0.950963 0.09662598 0.944813 0.102562 0.944813 0.102562 0.950963 0.09662598 0.962973 0.109041 0.958062 0.115171 0.962973 0.109041 0.97615 0.119545 0.721321 0.290414 0.696207 0.28288 0.698425 0.279325 0.83571 0.21889 0.834145 0.232508 0.825673 0.233433 0.918968 0.200992 0.908881 0.1994889 0.909826 0.190997 0.861764 0.192957 0.874263 0.186841 0.880657 0.203082 0.887575 0.1847299 0.894639 0.199246 0.880657 0.203082 0.909826 0.190997 0.908881 0.1994889 0.894639 0.199246 0.675994 0.21921 0.687775 0.192164 0.693804 0.199452 0.713874 0.166947 0.731019 0.161175 0.734009 0.170305 0.760035 0.157406 0.771522 0.146548 0.799023 0.161862 0.800303 0.13091 0.813895 0.141601 0.807219 0.151353 0.800303 0.13091 0.817401 0.118698 0.824921 0.129556 0.850774 0.10295 0.854347 0.114684 0.842828 0.117367 0.868918 0.101782 0.869544 0.11425 0.854347 0.114684 0.868918 0.101782 0.893274 0.09621697 0.889832 0.114884 0.905547 0.099204 0.914505 0.100103 0.91456 0.123439 0.826019 0.111853 0.839141 0.105747 0.842828 0.117367 0.94825 0.126877 0.938273 0.138205 0.926958 0.130658 0.830642 0.240252 0.825673 0.233433 0.834145 0.232508 0.94825 0.126877 0.961004 0.13662 0.951831 0.147182 0.913113 0.177356 0.926415 0.1836439 0.923562 0.189312 0.727001 0.284067 0.73914 0.286999 0.734969 0.289691 0.91456 0.123439 0.914505 0.100103 0.933782 0.1152819 0.726147 0.287828 0.698425 0.279325 0.699977 0.275186 0.855153 0.215854 0.846806 0.22547 0.839496 0.219819 0.938273 0.138205 0.951831 0.147182 0.938091 0.165274 0.847893 0.163447 0.844373 0.163301 0.845629 0.156486 0.844373 0.163301 0.834037 0.161116 0.836453 0.1539829 0.84042 0.185299 0.845044 0.18594 0.843644 0.194129 0.834145 0.232508 0.83571 0.21889 0.839496 0.219819 0.83589 0.242896 0.833441 0.243393 0.833505 0.2372069 0.84042 0.185299 0.828603 0.183198 0.830985 0.171709 0.879633 0.140493 0.874439 0.146404 0.867721 0.139481 0.867721 0.139481 0.860294 0.14608 0.858807 0.1384 0.855605 0.152595 0.852693 0.146235 0.860294 0.14608 0.850026 0.149438 0.852693 0.146235 0.855605 0.152595 0.895786 0.1517249 0.906004 0.158709 0.899315 0.167725 0.913113 0.177356 0.899315 0.167725 0.906004 0.158709 0.918784 0.166729 0.93205 0.174248 0.926415 0.1836439 0.880652 0.151904 0.88876 0.159162 0.877476 0.167232 0.687775 0.192164 0.70229 0.176212 0.705163 0.184258 0.685942 0.168431 0.698589 0.1599529 0.70229 0.176212 0.958209 0.07261198 0.949343 0.07844096 0.944379 0.06675398 0.949343 0.07844096 0.958209 0.07261198 0.96486 0.08480095 0.957737 0.09058499 0.96486 0.08480095 0.973469 0.09793496 0.96813 0.10343 0.973469 0.09793496 0.985484 0.109379 0.801201 0.241481 0.794168 0.251932 0.793088 0.249623 0.761905 0.274374 0.764147 0.277736 0.751433 0.282454 0.801201 0.241481 0.799036 0.235543 0.816131 0.234517 0.801382 0.221318 0.815172 0.2191489 0.816131 0.234517 0.796666 0.192191 0.788092 0.176463 0.816827 0.180809 0.743357 0.224376 0.746508 0.226204 0.742232 0.230322 0.748655 0.2292 0.74988 0.232762 0.744012 0.233687 0.748786 0.239754 0.743535 0.237685 0.744117 0.23594 0.737898 0.2471089 0.737567 0.241658 0.739898 0.24108 0.731595 0.24617 0.722551 0.240042 0.730501 0.237781 0.722551 0.240042 0.723684 0.2314119 0.730596 0.233526 0.723684 0.2314119 0.727515 0.22603 0.732174 0.230753 0.732619 0.224193 0.736425 0.223479 0.736478 0.228467 0.742232 0.230322 0.739508 0.233188 0.739043 0.232842 0.743293 0.231527 0.744012 0.233687 0.740455 0.234544 0.743535 0.237685 0.740451 0.236271 0.74069 0.235502 0.739898 0.24108 0.737567 0.241658 0.737797 0.238238 0.734438 0.241031 0.730501 0.237781 0.735126 0.236174 0.730596 0.233526 0.734885 0.2344419 0.735126 0.236174 0.732174 0.230753 0.735627 0.2333739 0.734885 0.2344419 0.736478 0.228467 0.737394 0.232753 0.736606 0.232917 0.739508 0.233188 0.739339 0.233521 0.738998 0.233196 0.740451 0.236271 0.740184 0.236184 0.740376 0.235512 0.738782 0.237955 0.737797 0.238238 0.737875 0.2379299 0.736457 0.237966 0.735126 0.236174 0.735634 0.236384 0.735126 0.236174 0.734885 0.2344419 0.735265 0.234577 0.735627 0.2333739 0.735935 0.233639 0.735265 0.234577 0.737394 0.232753 0.737502 0.2331089 0.736814 0.233267 0.740376 0.235512 0.739419 0.235623 0.739329 0.235108 0.739339 0.233521 0.738914 0.234544 0.738757 0.234343 0.737502 0.2331089 0.737841 0.234273 0.737405 0.234374 0.735935 0.233639 0.736874 0.234587 0.7365 0.235127 0.735634 0.236384 0.735265 0.234577 0.7365 0.235127 0.736707 0.237685 0.735634 0.236384 0.736658 0.236127 0.738721 0.237639 0.737875 0.2379299 0.738019 0.236998 0.740184 0.236184 0.739299 0.235996 0.739419 0.235623 0.961004 0.13662 0.94825 0.126877 0.953358 0.120918 0.933782 0.1152819 0.939213 0.108398 0.953358 0.120918 0.926445 0.09443199 0.939213 0.108398 0.933782 0.1152819 0.926445 0.09443199 0.914505 0.100103 0.914501 0.08544898 0.729863 0.137615 0.737658 0.129462 0.760035 0.157406 0.753771 0.168429 0.752679 0.159906 0.760035 0.157406 0.753771 0.168429 0.788092 0.176463 0.775201 0.185802 0.748032 0.196215 0.762137 0.198188 0.753126 0.209231 0.739661 0.223291 0.742083 0.2156029 0.747529 0.217564 0.739661 0.223291 0.743357 0.224376 0.740798 0.229039 0.738848 0.228464 0.740798 0.229039 0.739043 0.232842 0.738192 0.233085 0.738165 0.232712 0.739043 0.232842 0.73827 0.234265 0.738192 0.233085 0.738998 0.233196 0.73801 0.235608 0.73827 0.234265 0.738757 0.234343 0.905547 0.099204 0.893274 0.09621697 0.900654 0.08499896 0.745693 0.12244 0.752954 0.116599 0.78114 0.137691 0.799023 0.161862 0.771522 0.146548 0.78114 0.137691 0.819384 0.168629 0.799023 0.161862 0.807219 0.151353 0.842441 0.17394 0.830985 0.171709 0.834037 0.161116 0.84647 0.1743209 0.842441 0.17394 0.844373 0.163301 0.861965 0.162671 0.854497 0.167489 0.852241 0.156064 0.861965 0.162671 0.855605 0.152595 0.86457 0.1512179 0.874439 0.146404 0.880652 0.151904 0.870496 0.158933 0.880652 0.151904 0.874439 0.146404 0.879633 0.140493 0.891441 0.137163 0.88378 0.133413 0.889832 0.114884 0.893274 0.09621697 0.905547 0.099204 0.900915 0.117211 0.731337 0.10405 0.737416 0.09950995 0.752954 0.116599 0.7241 0.110368 0.731337 0.10405 0.745693 0.12244 0.717783 0.1155019 0.7241 0.110368 0.737658 0.129462 0.701969 0.13084 0.710041 0.122749 0.721857 0.1440719 0.68171 0.148528 0.691879 0.140025 0.698589 0.1599529 0.668703 0.159285 0.68171 0.148528 0.685942 0.168431 0.842138 0.205112 0.861764 0.192957 0.867464 0.207539 0.845044 0.18594 0.857365 0.179578 0.859424 0.1862 0.857365 0.179578 0.845044 0.18594 0.84647 0.1743209 0.854497 0.167489 0.84647 0.1743209 0.847893 0.163447 0.848327 0.15442 0.850026 0.149438 0.852241 0.156064 0.850026 0.149438 0.848327 0.15442 0.841762 0.14789 0.824921 0.129556 0.830842 0.1237969 0.839609 0.137251 0.817401 0.118698 0.826019 0.111853 0.830842 0.1237969 0.962973 0.109041 0.96813 0.10343 0.980808 0.114449 0.950963 0.09662598 0.957737 0.09058499 0.96813 0.10343 0.940586 0.08491897 0.949343 0.07844096 0.957737 0.09058499 0.949343 0.07844096 0.940586 0.08491897 0.934904 0.07297796 0.691879 0.140025 0.701969 0.13084 0.710989 0.151076 0.698589 0.1599529 0.710989 0.151076 0.713874 0.166947 0.70229 0.176212 0.713874 0.166947 0.717225 0.175766 0.705163 0.184258 0.717225 0.175766 0.720926 0.187757 0.713998 0.205264 0.724491 0.199145 0.7279 0.209083 0.727515 0.22603 0.722937 0.220684 0.73045 0.217252 0.732174 0.230753 0.727515 0.22603 0.732619 0.224193 0.735627 0.2333739 0.732174 0.230753 0.734306 0.229224 0.735935 0.233639 0.735627 0.2333739 0.736606 0.232917 0.736874 0.234587 0.735935 0.233639 0.736814 0.233267 0.751521 0.181824 0.775201 0.185802 0.762137 0.198188 0.720926 0.187757 0.736831 0.182565 0.737623 0.196156 0.709517 0.1951979 0.720926 0.187757 0.724491 0.199145 0.700093 0.208896 0.709517 0.1951979 0.713998 0.205264 0.687795 0.23083 0.700093 0.208896 0.705624 0.216316 0.728944 0.274401 0.704149 0.266927 0.708012 0.259238 0.744039 0.272305 0.741777 0.265966 0.752645 0.261807 0.78092 0.247547 0.770831 0.245542 0.775 0.237492 0.790943 0.2234809 0.77793 0.226952 0.777468 0.215626 0.775201 0.185802 0.785023 0.195783 0.771438 0.204555 0.745099 0.206811 0.753126 0.209231 0.747529 0.217564 0.7279 0.209083 0.737309 0.2067739 0.736742 0.215736 0.718394 0.213329 0.7279 0.209083 0.73045 0.217252 0.71116 0.222795 0.718394 0.213329 0.722937 0.220684 0.704675 0.23843 0.71116 0.222795 0.718211 0.22837 0.728616 0.259671 0.711599 0.252353 0.71689 0.245249 0.73993 0.259311 0.738516 0.253007 0.745078 0.250783 0.762493 0.243907 0.754799 0.241801 0.756266 0.237959 0.766082 0.229696 0.756537 0.231537 0.755391 0.226121 0.753126 0.209231 0.759873 0.21387 0.752217 0.220768 0.965975 0.131049 0.953358 0.120918 0.958062 0.115171 0.939213 0.108398 0.944813 0.102562 0.958062 0.115171 0.926445 0.09443199 0.933178 0.089742 0.944813 0.102562 0.933178 0.089742 0.926445 0.09443199 0.920563 0.083081 0.710041 0.122749 0.717783 0.1155019 0.729863 0.137615 0.731019 0.161175 0.721857 0.1440719 0.729863 0.137615 0.731019 0.161175 0.752679 0.159906 0.753771 0.168429 0.734009 0.170305 0.753771 0.168429 0.751521 0.181824 0.736831 0.182565 0.751521 0.181824 0.748032 0.196215 0.737623 0.196156 0.748032 0.196215 0.745099 0.206811 0.737309 0.2067739 0.745099 0.206811 0.742083 0.2156029 0.736742 0.215736 0.742083 0.2156029 0.739661 0.223291 0.736425 0.223479 0.739661 0.223291 0.738848 0.228464 0.737394 0.232753 0.736478 0.228467 0.738848 0.228464 0.737502 0.2331089 0.737394 0.232753 0.738165 0.232712 0.737841 0.234273 0.737502 0.2331089 0.738192 0.233085 0.745658 0.279945 0.751433 0.282454 0.73914 0.286999 0.745658 0.279945 0.727001 0.284067 0.728944 0.274401 0.741777 0.265966 0.744039 0.272305 0.728944 0.274401 0.73993 0.259311 0.741777 0.265966 0.728924 0.26656 0.73993 0.259311 0.728616 0.259671 0.729618 0.253338 0.738516 0.253007 0.729618 0.253338 0.731595 0.24617 0.737898 0.2471089 0.731595 0.24617 0.734438 0.241031 0.737567 0.241658 0.734438 0.241031 0.736457 0.237966 0.737797 0.238238 0.736457 0.237966 0.736707 0.237685 0.737875 0.2379299 0.736707 0.237685 0.73736 0.236841 0.771401 0.269362 0.772258 0.271117 0.764147 0.277736 0.764365 0.26316 0.771401 0.269362 0.761905 0.274374 0.759144 0.257674 0.764365 0.26316 0.756201 0.26694 0.754128 0.253072 0.759144 0.257674 0.752645 0.261807 0.749056 0.248236 0.754128 0.253072 0.748782 0.256366 0.749056 0.248236 0.745078 0.250783 0.742328 0.245962 0.741313 0.240269 0.74509 0.244153 0.742328 0.245962 0.741313 0.240269 0.739898 0.24108 0.738782 0.237955 0.739452 0.23751 0.738782 0.237955 0.738721 0.237639 0.739299 0.237266 0.738721 0.237639 0.738501 0.2368119 0.84273 0.2418 0.83589 0.242896 0.836801 0.23706 0.854093 0.229136 0.868245 0.237964 0.862446 0.243341 0.864407 0.222241 0.876132 0.232245 0.868245 0.237964 0.874882 0.216437 0.884735 0.227169 0.876132 0.232245 0.886562 0.212197 0.894464 0.223247 0.884735 0.227169 0.894464 0.223247 0.886562 0.212197 0.898062 0.208796 0.903366 0.2199569 0.898062 0.208796 0.909226 0.207734 0.919629 0.21523 0.912679 0.217016 0.909226 0.207734 0.874882 0.216437 0.867464 0.207539 0.880657 0.203082 0.843883 0.234755 0.846806 0.22547 0.854093 0.229136 0.918064 0.207076 0.909226 0.207734 0.908881 0.1994889 0.886562 0.212197 0.880657 0.203082 0.894639 0.199246 0.909226 0.207734 0.898062 0.208796 0.894639 0.199246 0.864407 0.222241 0.855153 0.215854 0.867464 0.207539 0.854093 0.229136 0.846806 0.22547 0.855153 0.215854 0.84758 0.242211 0.849708 0.236509 0.862446 0.243341 0.84273 0.2418 0.843883 0.234755 0.849708 0.236509 0.799036 0.235543 0.78648 0.2366279 0.790943 0.2234809 0.77793 0.226952 0.790943 0.2234809 0.78648 0.2366279 0.766082 0.229696 0.77793 0.226952 0.775 0.237492 0.756537 0.231537 0.766082 0.229696 0.765014 0.237781 0.74988 0.232762 0.756537 0.231537 0.756266 0.237959 0.744012 0.233687 0.74988 0.232762 0.749656 0.237292 0.740172 0.2346529 0.739329 0.235108 0.739097 0.234802 0.740455 0.234544 0.740172 0.2346529 0.739634 0.233896 0.744012 0.233687 0.744117 0.23594 0.74069 0.235502 0.740455 0.234544 0.74069 0.235502 0.740376 0.235512 0.887994 0.173644 0.88876 0.159162 0.899315 0.167725 0.874263 0.186841 0.871121 0.179872 0.88206 0.176037 0.859424 0.1862 0.871121 0.179872 0.874263 0.186841 0.843644 0.194129 0.859424 0.1862 0.861764 0.192957 0.83883 0.193942 0.843644 0.194129 0.842138 0.205112 0.827707 0.19286 0.83883 0.193942 0.837529 0.204576 0.796666 0.192191 0.815582 0.191707 0.815507 0.203609 0.796666 0.192191 0.80018 0.206184 0.791359 0.208522 0.771438 0.204555 0.785023 0.195783 0.791359 0.208522 0.771438 0.204555 0.777468 0.215626 0.764817 0.221845 0.752217 0.220768 0.759873 0.21387 0.764817 0.221845 0.746508 0.226204 0.752217 0.220768 0.755391 0.226121 0.746508 0.226204 0.748655 0.2292 0.743293 0.231527 0.742232 0.230322 0.743293 0.231527 0.739857 0.233609 0.739339 0.233521 0.739508 0.233188 0.739857 0.233609 0.738914 0.234544 0.739339 0.233521 0.739634 0.233896 0.73801 0.235608 0.739329 0.235108 0.739419 0.235623 0.73801 0.235608 0.738914 0.234544 0.739097 0.234802 0.793088 0.249623 0.794168 0.251932 0.781358 0.262902 0.78092 0.247547 0.793088 0.249623 0.781358 0.262902 0.770831 0.245542 0.78092 0.247547 0.772821 0.257564 0.762493 0.243907 0.770831 0.245542 0.765429 0.252134 0.754799 0.241801 0.762493 0.243907 0.758978 0.248827 0.748786 0.239754 0.754799 0.241801 0.752604 0.2450349 0.743535 0.237685 0.748786 0.239754 0.74748 0.241861 0.740451 0.236271 0.743535 0.237685 0.74256 0.239222 0.740184 0.236184 0.740451 0.236271 0.740016 0.236963 0.739299 0.235996 0.740184 0.236184 0.739795 0.236786 0.73801 0.235608 0.73915 0.236342 0.738858 0.236608 0.73801 0.235608 0.739299 0.235996 0.73915 0.236342 0.817202 0.241384 0.816131 0.234517 0.825673 0.233433 0.815172 0.2191489 0.826286 0.217891 0.825673 0.233433 0.815582 0.191707 0.827707 0.19286 0.826816 0.203352 0.816827 0.180809 0.828603 0.183198 0.827707 0.19286 0.828603 0.183198 0.816827 0.180809 0.819384 0.168629 0.830985 0.171709 0.819384 0.168629 0.823086 0.157697 0.834037 0.161116 0.823086 0.157697 0.828243 0.150206 0.836453 0.1539829 0.828243 0.150206 0.834322 0.141101 0.844696 0.143555 0.841762 0.14789 0.834322 0.141101 0.850848 0.139405 0.844696 0.143555 0.839609 0.137251 0.850848 0.139405 0.848406 0.132394 0.857316 0.130001 0.868092 0.1341429 0.858807 0.1384 0.857316 0.130001 0.88378 0.133413 0.879633 0.140493 0.868092 0.1341429 0.886343 0.145047 0.879633 0.140493 0.88378 0.133413 0.895786 0.1517249 0.886343 0.145047 0.891441 0.137163 0.902238 0.143434 0.912932 0.149626 0.906004 0.158709 0.918784 0.166729 0.906004 0.158709 0.912932 0.149626 0.925091 0.157034 0.938091 0.165274 0.93205 0.174248 0.911294 0.183998 0.923562 0.189312 0.921031 0.195095 0.893776 0.175861 0.911294 0.183998 0.909826 0.190997 0.887994 0.173644 0.893776 0.175861 0.887575 0.1847299 0.73915 0.236342 0.739795 0.236786 0.739299 0.237266 0.740016 0.236963 0.739452 0.23751 0.739299 0.237266 0.740016 0.236963 0.74256 0.239222 0.741313 0.240269 0.74256 0.239222 0.74748 0.241861 0.74509 0.244153 0.74748 0.241861 0.752604 0.2450349 0.749056 0.248236 0.752604 0.2450349 0.758978 0.248827 0.754128 0.253072 0.758978 0.248827 0.765429 0.252134 0.759144 0.257674 0.765429 0.252134 0.772821 0.257564 0.764365 0.26316 0.772821 0.257564 0.781358 0.262902 0.771401 0.269362 0.781358 0.262902 0.782499 0.265293 0.772258 0.271117 0.73801 0.235608 0.738858 0.236608 0.738501 0.2368119 0.73801 0.235608 0.737841 0.234273 0.73827 0.234265 0.73801 0.235608 0.736874 0.234587 0.737405 0.234374 0.738501 0.2368119 0.738019 0.236998 0.73801 0.235608 0.815172 0.2191489 0.801382 0.221318 0.80018 0.206184 0.815507 0.203609 0.826816 0.203352 0.826286 0.217891 0.837529 0.204576 0.83571 0.21889 0.826286 0.217891 0.83571 0.21889 0.837529 0.204576 0.842138 0.205112 0.846806 0.22547 0.843883 0.234755 0.837472 0.232885 0.836801 0.23706 0.833505 0.2372069 0.834145 0.232508 0.836801 0.23706 0.837472 0.232885 0.843883 0.234755 0.833441 0.243393 0.830315 0.244146 0.830642 0.240252 0.830642 0.240252 0.825717 0.239582 0.825673 0.233433 0.830315 0.244146 0.825845 0.245489 0.825717 0.239582 0.819553 0.247828 0.817202 0.241384 0.825717 0.239582 0.806527 0.253382 0.801201 0.241481 0.817202 0.241384 0.794168 0.251932 0.801201 0.241481 0.806527 0.253382 0.781358 0.262902 0.794168 0.251932 0.782499 0.265293 0.782499 0.265293 0.794168 0.251932 0.796716 0.258004 0.800303 0.13091 0.78114 0.137691 0.775878 0.121228 0.752954 0.116599 0.757937 0.10931 0.775878 0.121228 0.893274 0.09621697 0.88588 0.08796197 0.894671 0.08162498 0.868918 0.101782 0.865827 0.09068995 0.88588 0.08796197 0.865827 0.09068995 0.868918 0.101782 0.850774 0.10295 0.839141 0.105747 0.836228 0.09452599 0.848457 0.09234398 0.822922 0.09920495 0.836228 0.09452599 0.839141 0.105747 0.817401 0.118698 0.800303 0.13091 0.794485 0.115503 0.775878 0.121228 0.780002 0.06436395 0.79385 0.06444698 0.757937 0.10931 0.76624 0.06227797 0.780002 0.06436395 0.88588 0.08796197 0.866769 0.048029 0.876445 0.04401695 0.865827 0.09068995 0.852972 0.05426698 0.866769 0.048029 0.848457 0.09234398 0.839566 0.05599695 0.852972 0.05426698 0.836228 0.09452599 0.827463 0.05848199 0.839566 0.05599695 0.836228 0.09452599 0.822922 0.09920495 0.816271 0.06140398 0.813665 0.105438 0.794485 0.115503 0.79385 0.06444698 0.807674 0.06286996 0.79385 0.06444698 0.79184 0.02815699 0.827463 0.05848199 0.816271 0.06140398 0.811232 0.02281296 0.827463 0.05848199 0.818849 0.02026998 0.829456 0.01909697 0.839566 0.05599695 0.829456 0.01909697 0.840023 0.018314 0.866769 0.048029 0.852972 0.05426698 0.840023 0.018314 0.876445 0.04401695 0.866769 0.048029 0.852173 0.01307195 0.76624 0.06227797 0.767511 0.02575498 0.780298 0.02789896 0.780002 0.06436395 0.780298 0.02789896 0.79184 0.02815699 0.751931 0.05917495 0.757414 0.02402299 0.767511 0.02575498 0.741103 0.09319698 0.751931 0.05917495 0.76624 0.06227797 0.737416 0.09950995 0.741103 0.09319698 0.757937 0.10931 0.813665 0.105438 0.822922 0.09920495 0.826019 0.111853 0.822922 0.09920495 0.813665 0.105438 0.807674 0.06286996 0.816271 0.06140398 0.807674 0.06286996 0.804208 0.02529597 0.898362 0.244361 0.902113 0.250034 0.891105 0.253828 0.880546 0.261034 0.874179 0.266193 0.874132 0.257862 0.933981 0.230906 0.928978 0.238305 0.924067 0.233415 0.913844 0.251535 0.906861 0.242249 0.915981 0.2385759 0.928978 0.238305 0.922232 0.245404 0.915981 0.2385759 0.893318 0.237758 0.898362 0.244361 0.888053 0.248836 0.880375 0.25399 0.874132 0.257862 0.87147 0.252318 0.929573 0.228177 0.924067 0.233415 0.918388 0.227256 0.915981 0.2385759 0.906861 0.242249 0.901653 0.234526 0.924067 0.233415 0.915981 0.2385759 0.910346 0.231357 0.923114 0.261393 0.913844 0.251535 0.922232 0.245404 0.935826 0.243848 0.930346 0.253933 0.922232 0.245404 0.940569 0.233532 0.935826 0.243848 0.928978 0.238305 0.901653 0.234526 0.906861 0.242249 0.898362 0.244361 0.906861 0.242249 0.913844 0.251535 0.902113 0.250034 0.891105 0.253828 0.880546 0.261034 0.880375 0.25399 0.877109 0.247859 0.884324 0.2426429 0.888053 0.248836 0.877109 0.247859 0.87147 0.252318 0.862446 0.243341 0.868245 0.237964 0.876132 0.232245 0.884324 0.2426429 0.884735 0.227169 0.893318 0.237758 0.884324 0.2426429 0.894464 0.223247 0.901653 0.234526 0.893318 0.237758 0.901653 0.234526 0.894464 0.223247 0.903366 0.2199569 0.918388 0.227256 0.910346 0.231357 0.903366 0.2199569 0.924192 0.223204 0.918388 0.227256 0.912679 0.217016 0.869425 0.259546 0.874132 0.257862 0.874179 0.266193 0.867471 0.255287 0.87147 0.252318 0.874132 0.257862 0.858851 0.247105 0.862446 0.243341 0.87147 0.252318 0.353635 0.964912 0.34827 0.969998 0.364334 0.972508 0.361729 0.959425 0.361376 0.959729 0.370663 0.956672 0.361376 0.959729 0.358931 0.961233 0.373172 0.96397 0.3613 0.94509 0.371957 0.944902 0.372019 0.941339 0.371957 0.944902 0.361915 0.945289 0.370206 0.947833 0.352988 0.940063 0.365927 0.937705 0.359763 0.932652 0.358843 0.943725 0.372019 0.941339 0.365927 0.937705 0.358931 0.961233 0.353635 0.964912 0.368641 0.968508 0.346972 0.934965 0.359763 0.932652 0.354614 0.927392 0.359257 0.977896 0.364334 0.972508 0.34827 0.969998 0.368641 0.968508 0.364334 0.972508 0.389573 0.982004 0.370663 0.956672 0.377562 0.959761 0.399203 0.964183 0.377562 0.959761 0.373172 0.96397 0.395396 0.968179 0.372019 0.941339 0.371957 0.944902 0.393208 0.94038 0.371957 0.944902 0.370206 0.947833 0.394464 0.952244 0.359763 0.932652 0.365927 0.937705 0.389394 0.935147 0.365927 0.937705 0.372019 0.941339 0.389394 0.935147 0.373172 0.96397 0.368641 0.968508 0.395396 0.968179 0.364334 0.972508 0.359257 0.977896 0.389573 0.982004 0.354614 0.927392 0.359763 0.932652 0.3801 0.922988 0.395396 0.968179 0.389573 0.982004 0.459494 0.986619 0.394464 0.952244 0.399203 0.964183 0.465087 0.965278 0.399203 0.964183 0.395396 0.968179 0.464049 0.970987 0.393208 0.94038 0.4573 0.942343 0.454047 0.934422 0.394464 0.952244 0.462057 0.952153 0.4573 0.942343 0.389394 0.935147 0.454047 0.934422 0.449066 0.918666 0.464049 0.970987 0.459494 0.986619 0.502329 0.989179 0.462057 0.952153 0.465087 0.965278 0.497513 0.95213 0.465087 0.965278 0.464049 0.970987 0.509253 0.968423 0.454047 0.934422 0.4573 0.942343 0.49028 0.934757 0.4573 0.942343 0.462057 0.952153 0.494287 0.944366 0.454047 0.934422 0.48881 0.932382 0.484865 0.916772 0.359257 0.977896 0.34405 0.975453 0.34827 0.969998 0.353635 0.964912 0.368641 0.968508 0.364334 0.972508 0.370663 0.956672 0.377562 0.959761 0.361376 0.959729 0.361376 0.959729 0.377562 0.959761 0.373172 0.96397 0.372019 0.941339 0.371957 0.944902 0.3613 0.94509 0.371957 0.944902 0.370206 0.947833 0.361915 0.945289 0.359763 0.932652 0.365927 0.937705 0.352988 0.940063 0.365927 0.937705 0.372019 0.941339 0.358843 0.943725 0.358931 0.961233 0.373172 0.96397 0.368641 0.968508 0.354614 0.927392 0.359763 0.932652 0.346972 0.934965 0.368641 0.968508 0.395396 0.968179 0.389573 0.982004 0.370663 0.956672 0.394464 0.952244 0.399203 0.964183 0.377562 0.959761 0.399203 0.964183 0.395396 0.968179 0.372019 0.941339 0.389394 0.935147 0.393208 0.94038 0.371957 0.944902 0.393208 0.94038 0.394464 0.952244 0.359763 0.932652 0.3801 0.922988 0.389394 0.935147 0.365927 0.937705 0.389394 0.935147 0.372019 0.941339 0.373172 0.96397 0.395396 0.968179 0.368641 0.968508 0.364334 0.972508 0.389573 0.982004 0.359257 0.977896 0.354614 0.927392 0.3801 0.922988 0.359763 0.932652 0.395396 0.968179 0.464049 0.970987 0.459494 0.986619 0.394464 0.952244 0.462057 0.952153 0.465087 0.965278 0.399203 0.964183 0.465087 0.965278 0.464049 0.970987 0.454047 0.934422 0.4573 0.942343 0.393208 0.94038 0.393208 0.94038 0.4573 0.942343 0.462057 0.952153 0.449066 0.918666 0.454047 0.934422 0.389394 0.935147 0.506403 0.973346 0.502329 0.989179 0.459494 0.986619 0.462057 0.952153 0.497513 0.95213 0.465087 0.965278 0.465087 0.965278 0.509253 0.968423 0.464049 0.970987 0.454047 0.934422 0.49028 0.934757 0.4573 0.942343 0.4573 0.942343 0.494287 0.944366 0.462057 0.952153 0.484865 0.916772 0.48881 0.932382 0.454047 0.934422 0.3613 0.94509 0.361915 0.945289 0.371957 0.944902 0.3613 0.94509 0.371957 0.944902 0.361915 0.945289 0.361729 0.959425 0.370663 0.956672 0.361376 0.959729 0.370663 0.956672 0.361376 0.959729 0.377562 0.959761 0.71592 0.416105 0.724191 0.418679 0.723923 0.413322 0.693842 0.409269 0.705566 0.412882 0.707067 0.406422 0.685749 0.406017 0.693842 0.409269 0.696592 0.402246 0.705566 0.412882 0.71592 0.416105 0.716628 0.410332 0.692838 0.391835 0.699342 0.395224 0.704315 0.383337 0.699342 0.395224 0.708567 0.399962 0.711582 0.387376 0.708567 0.399962 0.717336 0.404559 0.718789 0.391558 0.717336 0.404559 0.723654 0.407964 0.721619 0.397777 0.681363 0.420106 0.690776 0.422461 0.693842 0.409269 0.705566 0.412882 0.703181 0.424627 0.714936 0.42458 0.690776 0.422461 0.703181 0.424627 0.705566 0.412882 0.714936 0.42458 0.727326 0.42303 0.724191 0.418679 0.678437 0.436567 0.688318 0.438325 0.690776 0.422461 0.703181 0.424627 0.702009 0.440114 0.715725 0.43966 0.688318 0.438325 0.702009 0.440114 0.703181 0.424627 0.715725 0.43966 0.729413 0.43779 0.727326 0.42303 0.743887 0.436099 0.7434 0.421589 0.736628 0.421899 0.733019 0.437302 0.73327 0.422792 0.727326 0.42303 0.7434 0.421589 0.743887 0.417918 0.739825 0.417326 0.738362 0.436941 0.736628 0.421899 0.73327 0.422792 0.689294 0.398926 0.696592 0.402246 0.699342 0.395224 0.696592 0.402246 0.707067 0.406422 0.708567 0.399962 0.707067 0.406422 0.716628 0.410332 0.717336 0.404559 0.716628 0.410332 0.723923 0.413322 0.723654 0.407964 0.723923 0.413322 0.724191 0.418679 0.71592 0.416105 0.707067 0.406422 0.705566 0.412882 0.693842 0.409269 0.696592 0.402246 0.693842 0.409269 0.685749 0.406017 0.716628 0.410332 0.71592 0.416105 0.705566 0.412882 0.704315 0.383337 0.699342 0.395224 0.692838 0.391835 0.711582 0.387376 0.708567 0.399962 0.699342 0.395224 0.718789 0.391558 0.717336 0.404559 0.708567 0.399962 0.721619 0.397777 0.723654 0.407964 0.717336 0.404559 0.693842 0.409269 0.690776 0.422461 0.681363 0.420106 0.705566 0.412882 0.71592 0.416105 0.714936 0.42458 0.705566 0.412882 0.703181 0.424627 0.690776 0.422461 0.724191 0.418679 0.727326 0.42303 0.714936 0.42458 0.690776 0.422461 0.688318 0.438325 0.678437 0.436567 0.703181 0.424627 0.714936 0.42458 0.715725 0.43966 0.703181 0.424627 0.702009 0.440114 0.688318 0.438325 0.727326 0.42303 0.729413 0.43779 0.715725 0.43966 0.736628 0.421899 0.7434 0.421589 0.743887 0.436099 0.727326 0.42303 0.73327 0.422792 0.733019 0.437302 0.7434 0.421589 0.736628 0.421899 0.739825 0.417326 0.73327 0.422792 0.736628 0.421899 0.738362 0.436941 0.699342 0.395224 0.696592 0.402246 0.689294 0.398926 0.708567 0.399962 0.707067 0.406422 0.696592 0.402246 0.717336 0.404559 0.716628 0.410332 0.707067 0.406422 0.723654 0.407964 0.723923 0.413322 0.716628 0.410332 1.967283 0.300317 1.977864 0.289046 1.968567 0.282446 1.986977 0.258301 1.97723 0.270664 1.986732 0.276344 1.977749 0.251351 1.968163 0.264174 1.97723 0.270664 1.959444 0.275706 1.949853 0.287377 1.95873 0.294285 1.957249 0.257082 1.965503 0.24388 1.952703 0.23791 1.949595 0.267633 1.939985 0.26054 1.933434 0.27228 1.923114 0.261393 1.933434 0.27228 1.939985 0.26054 1.935826 0.243848 1.946279 0.250197 1.952703 0.23791 1.97723 0.270664 1.968567 0.282446 1.977864 0.289046 1.959444 0.275706 1.968567 0.282446 1.97723 0.270664 1.949595 0.267633 1.957249 0.257082 1.946279 0.250197 1.930346 0.253933 1.939985 0.26054 1.946279 0.250197 1.954264 0.271495 1.949595 0.267633 1.941279 0.279774 1.957249 0.257082 1.949595 0.267633 1.954264 0.271495 1.965503 0.24388 1.957249 0.257082 1.962494 0.260393 1.971388 0.247291 1.962494 0.260393 1.968163 0.264174 1.959444 0.275706 1.968163 0.264174 1.962494 0.260393 1.959444 0.275706 1.954264 0.271495 1.945304 0.283445 0.968567 0.282446 0.977864 0.289046 0.967283 0.300317 0.986977 0.258301 0.993459 0.263785 0.986733 0.276344 0.977749 0.251351 0.986977 0.258301 0.97723 0.270664 0.95873 0.294285 0.949853 0.287377 0.959444 0.275706 0.952703 0.23791 0.965503 0.24388 0.957249 0.257082 0.949595 0.267633 0.941279 0.279774 0.933434 0.27228 0.923114 0.261393 0.930346 0.253933 0.939985 0.26054 0.935826 0.243848 0.940569 0.233532 0.952703 0.23791 0.97723 0.270664 0.986733 0.276344 0.977864 0.289046 0.97723 0.270664 0.968567 0.282446 0.959444 0.275706 0.946279 0.250197 0.957249 0.257082 0.949595 0.267633 0.930346 0.253933 0.935826 0.243848 0.946279 0.250197 0.954264 0.271495 0.945304 0.283445 0.941279 0.279774 0.957249 0.257082 0.962494 0.260393 0.954264 0.271495 0.965503 0.24388 0.971388 0.247291 0.962494 0.260393 0.971388 0.247291 0.977749 0.251351 0.968163 0.264174 0.962494 0.260393 0.968163 0.264174 0.959444 0.275706 0.959444 0.275706 0.949853 0.287377 0.945304 0.283445 0.379036 0.853364 0.385735 0.844128 0.389608 0.847311 0.379036 0.853364 0.375581 0.851919 0.383233 0.841743 0.375581 0.851919 0.379036 0.853364 0.376714 0.864161 0.376714 0.864161 0.379036 0.853364 0.384264 0.864231 0.565524 0.885747 0.558723 0.876298 0.56622 0.875357 0.558723 0.876298 0.556492 0.8652 0.564515 0.8652 0.556492 0.8652 0.558723 0.876298 0.554867 0.877693 0.558723 0.876298 0.565524 0.885747 0.562618 0.88811 0.577868 0.876235 0.578581 0.885618 0.569744 0.8825 0.578581 0.885618 0.577868 0.876235 0.59172 0.877615 0.577868 0.876235 0.57697 0.8652 0.59181 0.8652 0.57697 0.8652 0.577868 0.876235 0.56622 0.875357 0.606173 0.865199 0.605989 0.87819 0.59172 0.877615 0.605989 0.87819 0.605693 0.889182 0.591439 0.888111 0.425493 0.864611 0.411021 0.864478 0.410853 0.841617 0.396267 0.864341 0.384264 0.864231 0.389608 0.847311 0.411021 0.864478 0.396267 0.864341 0.39819 0.844236 0.425259 0.833073 0.410731 0.834844 0.410581 0.831107 0.410731 0.834844 0.425259 0.833073 0.425281 0.840271 0.605693 0.889182 0.605546 0.896225 0.591049 0.894932 0.591049 0.894932 0.605546 0.896225 0.605412 0.899859 0.577033 0.891682 0.565524 0.885747 0.569744 0.8825 0.565524 0.885747 0.577033 0.891682 0.575166 0.894945 0.577033 0.891682 0.591049 0.894932 0.590509 0.898663 0.577033 0.891682 0.578581 0.885618 0.591439 0.888111 0.396965 0.838243 0.39819 0.844236 0.389608 0.847311 0.396965 0.838243 0.410731 0.834844 0.410853 0.841617 0.410731 0.834844 0.396965 0.838243 0.395512 0.834983 0.395512 0.834983 0.396965 0.838243 0.385735 0.844128 0.627648 0.878501 0.627415 0.889882 0.605693 0.889182 0.606173 0.865199 0.62779 0.865199 0.627648 0.878501 0.447373 0.840615 0.447506 0.864814 0.425493 0.864611 0.425259 0.833073 0.447376 0.832383 0.447373 0.840615 0.42531 0.829303 0.447443 0.828746 0.447376 0.832383 0.627415 0.889882 0.627434 0.896471 0.605546 0.896225 0.627434 0.896471 0.627602 0.900825 0.605412 0.899859 0.627648 0.878501 0.65364 0.878154 0.653456 0.889337 0.62779 0.865199 0.653723 0.865199 0.65364 0.878154 0.473313 0.842534 0.473356 0.865053 0.447506 0.864814 0.473329 0.834453 0.473313 0.842534 0.447373 0.840615 0.473356 0.830984 0.473329 0.834453 0.447376 0.832383 0.627415 0.889882 0.653456 0.889337 0.653588 0.895448 0.653588 0.895448 0.653915 0.899943 0.627602 0.900825 0.389296 0.881246 0.385364 0.884357 0.378836 0.874999 0.382819 0.886695 0.375356 0.87638 0.378836 0.874999 0.375356 0.87638 0.372948 0.864127 0.376714 0.864161 0.376714 0.864161 0.384264 0.864231 0.378836 0.874999 0.565523 0.844653 0.569743 0.8479 0.566219 0.855043 0.564515 0.8652 0.556492 0.8652 0.558723 0.854103 0.556492 0.8652 0.552325 0.865201 0.554866 0.852708 0.562617 0.84229 0.565523 0.844653 0.558723 0.854103 0.569743 0.8479 0.57858 0.844781 0.577867 0.854165 0.57858 0.844781 0.591438 0.842288 0.59172 0.852784 0.59181 0.8652 0.57697 0.8652 0.577867 0.854165 0.57697 0.8652 0.564515 0.8652 0.566219 0.855043 0.606173 0.865199 0.59181 0.8652 0.59172 0.852784 0.591438 0.842288 0.605693 0.841217 0.605989 0.852209 0.410432 0.887331 0.411021 0.864478 0.425493 0.864611 0.389296 0.881246 0.384264 0.864231 0.396267 0.864341 0.411021 0.864478 0.410432 0.887331 0.397819 0.884479 0.409966 0.897834 0.410185 0.894101 0.424677 0.896139 0.410185 0.894101 0.410432 0.887331 0.424831 0.888943 0.605693 0.841217 0.591438 0.842288 0.591048 0.835467 0.591048 0.835467 0.590508 0.831736 0.605412 0.83054 0.569743 0.8479 0.565523 0.844653 0.577032 0.838717 0.565523 0.844653 0.562617 0.84229 0.575165 0.835454 0.590508 0.831736 0.591048 0.835467 0.577032 0.838717 0.591438 0.842288 0.57858 0.844781 0.577032 0.838717 0.389296 0.881246 0.397819 0.884479 0.396483 0.890448 0.410432 0.887331 0.410185 0.894101 0.396483 0.890448 0.410185 0.894101 0.409966 0.897834 0.394971 0.893681 0.394971 0.893681 0.382819 0.886695 0.385364 0.884357 0.605693 0.841217 0.627415 0.840516 0.627648 0.851897 0.606173 0.865199 0.605989 0.852209 0.627648 0.851897 0.425493 0.864611 0.447506 0.864814 0.446927 0.889007 0.424677 0.896139 0.424831 0.888943 0.446927 0.889007 0.424659 0.89991 0.424677 0.896139 0.446778 0.897238 0.605546 0.834173 0.627434 0.833927 0.627415 0.840516 0.605412 0.83054 0.627602 0.829573 0.627434 0.833927 0.627648 0.851897 0.627415 0.840516 0.653456 0.841061 0.62779 0.865199 0.627648 0.851897 0.65364 0.852244 0.447506 0.864814 0.473356 0.865053 0.472898 0.887567 0.446927 0.889007 0.472898 0.887567 0.472764 0.895646 0.446778 0.897238 0.472764 0.895646 0.472727 0.899116 0.627415 0.840516 0.627434 0.833927 0.653588 0.83495 0.627602 0.829573 0.653915 0.830455 0.653588 0.83495 0.1432099 0.96719 0.174835 0.967542 0.171555 0.968892 0.06917697 0.951469 0.06690299 0.957447 0.04623895 0.946195 0.032323 0.928346 0.03082996 0.932126 0.02928197 0.927292 0.113414 0.964564 0.1432099 0.96719 0.1422179 0.97217 0.04849696 0.940233 0.04623895 0.946195 0.03082996 0.932126 0.09024 0.959089 0.113414 0.964564 0.112099 0.969979 0.087978 0.96489 0.06690299 0.957447 0.06917697 0.951469 0.174835 0.967542 0.177836 0.963871 0.175903 0.972393 0.171555 0.968892 0.175903 0.972393 0.146243 0.976148 0.06690299 0.957447 0.06678199 0.963149 0.04409998 0.951757 0.02902698 0.925221 0.02834999 0.922 0.03562599 0.924246 0.02928197 0.927292 0.03082996 0.932126 0.02659398 0.935761 0.02902698 0.925221 0.02928197 0.927292 0.02477699 0.926174 0.1422179 0.97217 0.146243 0.976148 0.115132 0.974529 0.04623895 0.946195 0.04409998 0.951757 0.02659398 0.935761 0.112099 0.969979 0.115132 0.974529 0.08955699 0.97046 0.087978 0.96489 0.08955699 0.97046 0.06678199 0.963149 0.113414 0.964564 0.09024 0.959089 0.09436899 0.955261 0.1432099 0.96719 0.113414 0.964564 0.117519 0.960986 0.174835 0.967542 0.1432099 0.96719 0.147233 0.963386 0.09024 0.959089 0.06917697 0.951469 0.07323098 0.947597 0.06917697 0.951469 0.04849696 0.940233 0.05264395 0.936216 0.04849696 0.940233 0.032323 0.928346 0.03562599 0.924246 0.91449 0.912449 0.914424 0.889738 0.93146 0.896398 0.89383 0.903564 0.88897 0.898403 0.905492 0.879867 0.881963 0.886648 0.879064 0.879885 0.899788 0.867219 0.976906 0.843774 0.97826 0.849702 0.971691 0.854167 0.987069 0.878171 0.982599 0.890372 0.965687 0.885039 0.964335 0.90635 0.948679 0.896516 0.965687 0.885039 0.939652 0.915292 0.93146 0.896398 0.948679 0.896516 0.976906 0.843774 0.971691 0.854167 0.965291 0.832936 0.876662 0.866138 0.875306 0.857468 0.898855 0.850776 0.876747 0.837623 0.879343 0.830459 0.903612 0.837454 0.897621 0.814536 0.904293 0.809355 0.915983 0.826061 0.916793 0.807434 0.927395 0.803621 0.935213 0.818475 0.952273 0.804414 0.954575 0.821124 0.935213 0.818475 0.972325 0.814117 0.980766 0.825379 0.965291 0.832936 0.93146 0.896398 0.914424 0.889738 0.92191 0.88102 0.914424 0.889738 0.905492 0.879867 0.915799 0.873769 0.905492 0.879867 0.899788 0.867219 0.911542 0.864354 0.971691 0.854167 0.972659 0.869186 0.96491 0.864907 0.972659 0.869186 0.965687 0.885039 0.961163 0.874526 0.965687 0.885039 0.948679 0.896516 0.948481 0.884883 0.948679 0.896516 0.93146 0.896398 0.935043 0.885705 0.971691 0.854167 0.964482 0.855229 0.958684 0.839097 0.898855 0.850776 0.910473 0.851694 0.911542 0.864354 0.903612 0.837454 0.913836 0.842302 0.910473 0.851694 0.915983 0.826061 0.923569 0.834366 0.913836 0.842302 0.935213 0.818475 0.939566 0.828789 0.923569 0.834366 0.954575 0.821124 0.95404 0.831404 0.939566 0.828789 0.965291 0.832936 0.958684 0.839097 0.95404 0.831404 0.935043 0.885705 0.92191 0.88102 0.941932 0.856808 0.92191 0.88102 0.915799 0.873769 0.941932 0.856808 0.915799 0.873769 0.911542 0.864354 0.941932 0.856808 0.964482 0.855229 0.96491 0.864907 0.941932 0.856808 0.96491 0.864907 0.961163 0.874526 0.941932 0.856808 0.961163 0.874526 0.948481 0.884883 0.941932 0.856808 0.948481 0.884883 0.935043 0.885705 0.941932 0.856808 0.958684 0.839097 0.964482 0.855229 0.941932 0.856808 0.911542 0.864354 0.910473 0.851694 0.941932 0.856808 0.910473 0.851694 0.913836 0.842302 0.941932 0.856808 0.913836 0.842302 0.923569 0.834366 0.941932 0.856808 0.923569 0.834366 0.939566 0.828789 0.941932 0.856808 0.939566 0.828789 0.95404 0.831404 0.941932 0.856808 0.95404 0.831404 0.958684 0.839097 0.941932 0.856808 0.984559 0.859282 0.972659 0.869186 0.971691 0.854167 0.149698 0.950219 0.135211 0.950219 0.136149 0.945967 0.102787 0.941126 0.09064197 0.935779 0.095137 0.929202 0.06576198 0.908869 0.06299901 0.896725 0.06994795 0.9074 0.135211 0.950219 0.124868 0.948605 0.126669 0.942737 0.102787 0.941126 0.105586 0.934165 0.115781 0.938555 0.07204198 0.920409 0.07640999 0.915074 0.085231 0.923295 0.06576198 0.908869 0.06994795 0.9074 0.07640999 0.915074 0.09064197 0.935779 0.08008396 0.928497 0.085231 0.923295 0.113594 0.945266 0.115781 0.938555 0.126669 0.942737 0.139209 0.751051 0.133982 0.765952 0.111429 0.742462 0.126742 0.779879 0.118164 0.790762 0.103536 0.754857 0.1079 0.799748 0.096996 0.805037 0.09292495 0.761915 0.08710795 0.763165 0.08538997 0.807675 0.073529 0.806354 0.07558298 0.760276 0.06228697 0.802361 0.05130696 0.794243 0.06558495 0.750973 0.04175299 0.784195 0.03338599 0.770444 0.05874699 0.73657 0.02713698 0.75525 0.02306598 0.737749 0.02171897 0.719706 0.023135 0.70154 0.05695998 0.71044 0.027031 0.683926 0.03325796 0.668465 0.06161397 0.694218 0.04163795 0.654418 0.05121797 0.644037 0.07018995 0.681929 0.06223297 0.635508 0.07352 0.630974 0.08116495 0.675133 0.08709996 0.674228 0.08538699 0.629404 0.09711098 0.63173 0.09840697 0.677674 0.107913 0.636579 0.118112 0.645396 0.107836 0.687251 0.126749 0.655829 0.13398 0.669538 0.114047 0.70147 0.139215 0.684254 0.1424919 0.70078 0.143548 0.717583 0.142359 0.734471 0.115604 0.726684 0.107826 0.749429 0.08763897 0.718785 0.114038 0.735002 0.09840297 0.759329 0.08763897 0.718785 0.107826 0.749429 0.08710795 0.763165 0.08763897 0.718785 0.09840297 0.759329 0.07558298 0.760276 0.08763897 0.718785 0.08710795 0.763165 0.06558495 0.750973 0.08763897 0.718785 0.07558298 0.760276 0.05874699 0.73657 0.08763897 0.718785 0.06558495 0.750973 0.05629295 0.719256 0.08763897 0.718785 0.05874699 0.73657 0.05872195 0.701847 0.08763897 0.718785 0.05629295 0.719256 0.06555396 0.687191 0.08763897 0.718785 0.05872195 0.701847 0.07555997 0.677524 0.08763897 0.718785 0.06555396 0.687191 0.08709996 0.674228 0.08763897 0.718785 0.07555997 0.677524 0.09840697 0.677674 0.08763897 0.718785 0.08709996 0.674228 0.107836 0.687251 0.08763897 0.718785 0.09840697 0.677674 0.114047 0.70147 0.08763897 0.718785 0.107836 0.687251 0.116204 0.718199 0.08763897 0.718785 0.114047 0.70147 0.114038 0.735002 0.08763897 0.718785 0.116204 0.718199 0.147305 0.753857 0.1416299 0.770104 0.133982 0.765952 0.133722 0.785319 0.124298 0.797313 0.118164 0.790762 0.1079 0.799748 0.112955 0.807232 0.1008419 0.813255 0.08538997 0.807675 0.08779799 0.816325 0.07434296 0.815187 0.06228697 0.802361 0.06141698 0.810929 0.04874598 0.80219 0.04175299 0.784195 0.03769999 0.791121 0.028005 0.775999 0.02713698 0.75525 0.02075695 0.759179 0.016038 0.739806 0.01447898 0.719789 0.01607996 0.699662 0.023135 0.70154 0.02059698 0.680179 0.02780497 0.663057 0.03325796 0.668465 0.03750199 0.647609 0.04855597 0.636179 0.05121797 0.644037 0.06124895 0.626981 0.07425296 0.622152 0.07352 0.630974 0.08773499 0.620728 0.100917 0.623466 0.09711098 0.63173 0.107913 0.636579 0.112932 0.629036 0.12422 0.638764 0.126749 0.655829 0.1336989 0.650284 0.141616 0.665271 0.139215 0.684254 0.147306 0.681322 0.150856 0.699285 0.152001 0.717529 0.150719 0.735847 0.142359 0.734471 0.1424919 0.70078 0.150856 0.699285 0.152001 0.717529 0.115681 0.709758 0.1424919 0.70078 0.143548 0.717583 0.150719 0.735847 0.147305 0.753857 0.139209 0.751051 0.142359 0.734471 0.139209 0.751051 0.114038 0.735002 0.02306598 0.737749 0.016038 0.739806 0.01447898 0.719789 0.05689895 0.72802 0.02306598 0.737749 0.02171897 0.719706 0.01607996 0.699662 0.02059698 0.680179 0.027031 0.683926 0.023135 0.70154 0.027031 0.683926 0.05872195 0.701847 0.03338599 0.770444 0.028005 0.775999 0.02075695 0.759179 0.06164699 0.744079 0.03338599 0.770444 0.02713698 0.75525 0.02780497 0.663057 0.03750199 0.647609 0.04163795 0.654418 0.03325796 0.668465 0.04163795 0.654418 0.06555396 0.687191 0.1416299 0.770104 0.133722 0.785319 0.126742 0.779879 0.133982 0.765952 0.126742 0.779879 0.107826 0.749429 0.13398 0.669538 0.141616 0.665271 0.147306 0.681322 0.111436 0.694107 0.13398 0.669538 0.139215 0.684254 0.07425296 0.622152 0.08773499 0.620728 0.08538699 0.629404 0.07352 0.630974 0.08538699 0.629404 0.08709996 0.674228 0.100917 0.623466 0.112932 0.629036 0.107913 0.636579 0.09297597 0.675314 0.09711098 0.63173 0.107913 0.636579 0.04855597 0.636179 0.06124895 0.626981 0.06223297 0.635508 0.05121797 0.644037 0.06223297 0.635508 0.07555997 0.677524 0.118112 0.645396 0.12422 0.638764 0.1336989 0.650284 0.103508 0.682059 0.118112 0.645396 0.126749 0.655829 0.124298 0.797313 0.112955 0.807232 0.1079 0.799748 0.118164 0.790762 0.1079 0.799748 0.09840297 0.759329 0.096996 0.805037 0.1008419 0.813255 0.08779799 0.816325 0.096996 0.805037 0.08538997 0.807675 0.08710795 0.763165 0.073529 0.806354 0.07434296 0.815187 0.06141698 0.810929 0.08117395 0.762386 0.073529 0.806354 0.06228697 0.802361 0.05130696 0.794243 0.04874598 0.80219 0.03769999 0.791121 0.070216 0.756075 0.05130696 0.794243 0.04175299 0.784195 0.149143 0.860247 0.148005 0.870495 0.129227 0.854687 0.148005 0.870495 0.1440449 0.878309 0.129227 0.854687 0.1440449 0.878309 0.1378639 0.882533 0.129227 0.854687 0.1378639 0.882533 0.1303769 0.882548 0.129227 0.854687 0.1303769 0.882548 0.12269 0.87835 0.129227 0.854687 0.12269 0.87835 0.115951 0.870543 0.129227 0.854687 0.115951 0.870543 0.111226 0.860268 0.129227 0.854687 0.111226 0.860268 0.1093119 0.849122 0.129227 0.854687 0.1093119 0.849122 0.110454 0.838876 0.129227 0.854687 0.110454 0.838876 0.114416 0.831066 0.129227 0.854687 0.114416 0.831066 0.120598 0.826844 0.129227 0.854687 0.120598 0.826844 0.128082 0.826831 0.129227 0.854687 0.128082 0.826831 0.135766 0.831032 0.129227 0.854687 0.135766 0.831032 0.1425 0.838834 0.129227 0.854687 0.1425 0.838834 0.147224 0.849105 0.129227 0.854687 0.147224 0.849105 0.149143 0.860247 0.129227 0.854687 0.06224197 0.867769 0.05693197 0.877026 0.04636996 0.854507 0.05693197 0.877026 0.05006897 0.882812 0.04636996 0.854507 0.05006897 0.882812 0.04267597 0.884283 0.04636996 0.854507 0.04267597 0.884283 0.03584694 0.881222 0.04636996 0.854507 0.03584694 0.881222 0.03058999 0.874081 0.04636996 0.854507 0.03058999 0.874081 0.02769398 0.863909 0.04636996 0.854507 0.02769398 0.863909 0.02766096 0.852217 0.04636996 0.854507 0.02766096 0.852217 0.03055799 0.840855 0.04636996 0.854507 0.03055799 0.840855 0.03586697 0.831602 0.04636996 0.854507 0.03586697 0.831602 0.04272794 0.825819 0.04636996 0.854507 0.04272794 0.825819 0.05011898 0.824349 0.04636996 0.854507 0.05011898 0.824349 0.05694597 0.827409 0.04636996 0.854507 0.05694597 0.827409 0.06220096 0.834549 0.04636996 0.854507 0.06220096 0.834549 0.06509399 0.844717 0.04636996 0.854507 0.06509399 0.844717 0.06513196 0.856404 0.04636996 0.854507 0.06513196 0.856404 0.06224197 0.867769 0.04636996 0.854507 0.2456189 0.953607 0.255408 0.950455 0.255804 0.953908 0.222659 0.957082 0.2456189 0.953607 0.246757 0.956762 0.203153 0.956758 0.222659 0.957082 0.222461 0.960896 0.190369 0.952631 0.203153 0.956758 0.200649 0.960896 0.172142 0.939939 0.175554 0.94309 0.171898 0.947446 0.179874 0.946679 0.190369 0.952631 0.186526 0.95709 0.264665 0.947713 0.265738 0.951425 0.262294 0.952165 0.267969 0.944595 0.264146 0.944457 0.267821 0.938855 0.176337 0.936113 0.181347 0.937931 0.175554 0.94309 0.186719 0.941324 0.196296 0.946158 0.190369 0.952631 0.196296 0.946158 0.2062979 0.949625 0.203153 0.956758 0.2062979 0.949625 0.224604 0.951546 0.222659 0.957082 0.224604 0.951546 0.245017 0.950079 0.2456189 0.953607 0.255348 0.947511 0.255408 0.950455 0.2456189 0.953607 0.264665 0.947713 0.264146 0.944457 0.267969 0.944595 0.168038 0.943929 0.164936 0.94055 0.167897 0.937791 0.163329 0.934917 0.161541 0.936297 0.158579 0.93212 0.169238 0.936213 0.16648 0.932205 0.168644 0.931158 0.270626 0.939173 0.267821 0.938855 0.270995 0.93414 0.267221 0.950989 0.265738 0.951425 0.264665 0.947713 0.273869 0.928244 0.272519 0.934398 0.270995 0.93414 0.179727 0.924792 0.17688 0.925367 0.17709 0.920645 0.181347 0.937931 0.186719 0.941324 0.179874 0.946679 0.171898 0.947446 0.175554 0.94309 0.179874 0.946679 0.181347 0.937931 0.179082 0.934017 0.184744 0.930539 0.255348 0.947511 0.245017 0.950079 0.245635 0.945127 0.245017 0.950079 0.224604 0.951546 0.226502 0.94684 0.224604 0.951546 0.2062979 0.949625 0.2083089 0.945408 0.196296 0.946158 0.186719 0.941324 0.193366 0.936483 0.2062979 0.949625 0.196296 0.946158 0.201189 0.941837 0.267821 0.938855 0.264146 0.944457 0.261071 0.939696 0.273869 0.928244 0.270995 0.93414 0.268685 0.932646 0.270995 0.93414 0.267821 0.938855 0.264519 0.936737 0.186719 0.941324 0.181347 0.937931 0.188169 0.933234 0.169238 0.936213 0.17229 0.934195 0.176337 0.936113 0.179727 0.924792 0.181816 0.927833 0.177866 0.929765 0.164936 0.94055 0.161541 0.936297 0.163329 0.934917 0.168644 0.931158 0.16648 0.932205 0.164391 0.927904 0.267221 0.950989 0.264665 0.947713 0.268319 0.946849 0.181816 0.927833 0.184744 0.930539 0.179082 0.934017 0.255348 0.947511 0.255414 0.943104 0.261071 0.939696 0.255408 0.950455 0.255348 0.947511 0.264146 0.944457 0.255408 0.950455 0.264665 0.947713 0.262294 0.952165 0.2456189 0.953607 0.246757 0.956762 0.255804 0.953908 0.222659 0.957082 0.222461 0.960896 0.246757 0.956762 0.203153 0.956758 0.200649 0.960896 0.222461 0.960896 0.190369 0.952631 0.186526 0.95709 0.200649 0.960896 0.168038 0.943929 0.171898 0.947446 0.175554 0.94309 0.179874 0.946679 0.17632 0.951036 0.186526 0.95709 0.264665 0.947713 0.262294 0.952165 0.265738 0.951425 0.272949 0.93457 0.273869 0.928244 0.271542 0.934184 0.176337 0.936113 0.172142 0.939939 0.175554 0.94309 0.186719 0.941324 0.179874 0.946679 0.190369 0.952631 0.196296 0.946158 0.190369 0.952631 0.203153 0.956758 0.2062979 0.949625 0.203153 0.956758 0.222659 0.957082 0.224604 0.951546 0.222659 0.957082 0.2456189 0.953607 0.245017 0.950079 0.2456189 0.953607 0.255408 0.950455 0.167897 0.937791 0.164936 0.94055 0.168038 0.943929 0.163329 0.934917 0.158579 0.93212 0.161541 0.936297 0.17229 0.934195 0.168644 0.931158 0.16648 0.932205 0.272949 0.93457 0.271542 0.934184 0.268865 0.938912 0.269004 0.944572 0.271343 0.939378 0.268865 0.938912 0.268319 0.946849 0.269004 0.944572 0.26554 0.944538 0.267221 0.950989 0.264665 0.947713 0.265738 0.951425 0.179727 0.924792 0.17709 0.920645 0.17688 0.925367 0.181347 0.937931 0.175554 0.94309 0.179874 0.946679 0.171898 0.947446 0.17632 0.951036 0.179874 0.946679 0.184744 0.930539 0.179082 0.934017 0.181347 0.937931 0.255348 0.947511 0.255414 0.943104 0.245635 0.945127 0.245017 0.950079 0.245635 0.945127 0.226502 0.94684 0.224604 0.951546 0.226502 0.94684 0.2083089 0.945408 0.196296 0.946158 0.201189 0.941837 0.193366 0.936483 0.2062979 0.949625 0.2083089 0.945408 0.201189 0.941837 0.268865 0.938912 0.264519 0.936737 0.261071 0.939696 0.273869 0.928244 0.268685 0.932646 0.271542 0.934184 0.268685 0.932646 0.264519 0.936737 0.268865 0.938912 0.186719 0.941324 0.193366 0.936483 0.188169 0.933234 0.172142 0.939939 0.176337 0.936113 0.17229 0.934195 0.179727 0.924792 0.17688 0.925367 0.177866 0.929765 0.163329 0.934917 0.161541 0.936297 0.164936 0.94055 0.168644 0.931158 0.164391 0.927904 0.16648 0.932205 0.267221 0.950989 0.268319 0.946849 0.264665 0.947713 0.181816 0.927833 0.177866 0.929765 0.179082 0.934017 0.26554 0.944538 0.261071 0.939696 0.255414 0.943104 0.264665 0.947713 0.26554 0.944538 0.255348 0.947511 0.262294 0.952165 0.264665 0.947713 0.255408 0.950455 0.255804 0.953908 0.246757 0.956762 0.246757 0.956762 0.222461 0.960896 0.222461 0.960896 0.246757 0.956762 0.200649 0.960896 0.200649 0.960896 0.222461 0.960896 0.186526 0.95709 0.186526 0.95709 0.200649 0.960896 0.168038 0.943929 0.168038 0.943929 0.171898 0.947446 0.17632 0.951036 0.17632 0.951036 0.186526 0.95709 0.262294 0.952165 0.262294 0.952165 0.265738 0.951425 0.273869 0.928244 0.272949 0.93457 0.272519 0.934398 0.181347 0.937931 0.181347 0.937931 0.176337 0.936113 0.164936 0.94055 0.164936 0.94055 0.168038 0.943929 0.167897 0.937791 0.172142 0.939939 0.172142 0.939939 0.161541 0.936297 0.158579 0.93212 0.161541 0.936297 0.158579 0.93212 0.163329 0.934917 0.163329 0.934917 0.16648 0.932205 0.16648 0.932205 0.169238 0.936213 0.17229 0.934195 0.17229 0.934195 0.168644 0.931158 0.272949 0.93457 0.271343 0.939378 0.270626 0.939173 0.271343 0.939378 0.269004 0.944572 0.267969 0.944595 0.268319 0.946849 0.268319 0.946849 0.267969 0.944595 0.267221 0.950989 0.265738 0.951425 0.265738 0.951425 0.17688 0.925367 0.17709 0.920645 0.17688 0.925367 0.17709 0.920645 0.179727 0.924792 0.179727 0.924792 0.171898 0.947446 0.171898 0.947446 0.17632 0.951036 0.181347 0.937931 0.179082 0.934017 0.179082 0.934017 0.188169 0.933234 0.188169 0.933234 0.184744 0.930539 0.245635 0.945127 0.255414 0.943104 0.255414 0.943104 0.226502 0.94684 0.245635 0.945127 0.245635 0.945127 0.2083089 0.945408 0.226502 0.94684 0.226502 0.94684 0.201189 0.941837 0.201189 0.941837 0.193366 0.936483 0.2083089 0.945408 0.2083089 0.945408 0.201189 0.941837 0.264519 0.936737 0.264519 0.936737 0.261071 0.939696 0.268685 0.932646 0.273869 0.928244 0.268685 0.932646 0.268685 0.932646 0.268685 0.932646 0.264519 0.936737 0.188169 0.933234 0.193366 0.936483 0.193366 0.936483 0.172142 0.939939 0.169238 0.936213 0.169238 0.936213 0.17229 0.934195 0.176337 0.936113 0.176337 0.936113 0.181816 0.927833 0.181816 0.927833 0.179727 0.924792 0.177866 0.929765 0.17688 0.925367 0.17688 0.925367 0.161541 0.936297 0.161541 0.936297 0.164936 0.94055 0.163329 0.934917 0.167897 0.937791 0.167897 0.937791 0.16648 0.932205 0.164391 0.927904 0.16648 0.932205 0.164391 0.927904 0.168644 0.931158 0.168644 0.931158 0.267221 0.950989 0.267221 0.950989 0.268319 0.946849 0.184744 0.930539 0.184744 0.930539 0.181816 0.927833 0.179082 0.934017 0.177866 0.929765 0.177866 0.929765 0.261071 0.939696 0.261071 0.939696 0.255414 0.943104 0.255804 0.953908 0.255804 0.953908 0.262294 0.952165 1.143043 0.967345 1.142206 0.972247 1.171201 0.969256 1.046311 0.946268 1.066711 0.957537 1.069125 0.951288 1.029029 0.927252 1.031115 0.932741 1.032812 0.928596 1.1134 0.964423 1.112191 0.970188 1.142206 0.972247 1.031115 0.932741 1.046311 0.946268 1.048585 0.94034 1.090082 0.958955 1.087755 0.964957 1.112191 0.970188 1.087755 0.964957 1.090082 0.958955 1.069125 0.951288 1.171398 0.969401 1.17487 0.96749 1.174673 0.967345 1.14458 0.972551 1.171398 0.969401 1.171201 0.969256 1.048685 0.946572 1.069085 0.95784 1.066711 0.957537 1.035186 0.9289 1.031437 0.924392 1.029063 0.924089 1.029029 0.927252 1.031403 0.927556 1.033489 0.933044 1.029063 0.924089 1.031437 0.924392 1.031403 0.927556 1.114565 0.970492 1.14458 0.972551 1.142206 0.972247 1.033489 0.933044 1.048685 0.946572 1.046311 0.946268 1.090129 0.96526 1.114565 0.970492 1.112191 0.970188 1.069085 0.95784 1.090129 0.96526 1.087755 0.964957 1.1134 0.964423 1.115774 0.964727 1.092456 0.959258 1.143043 0.967345 1.145418 0.967649 1.115774 0.964727 1.174673 0.967345 1.17487 0.96749 1.145418 0.967649 1.090082 0.958955 1.092456 0.959258 1.071499 0.951591 1.069125 0.951288 1.071499 0.951591 1.050959 0.940643 1.048585 0.94034 1.050959 0.940643 1.035186 0.9289 0.149698 0.950219 0.136149 0.945967 0.135211 0.950219 0.095137 0.929202 0.09064197 0.935779 0.102787 0.941126 0.06576198 0.908869 0.06994795 0.9074 0.06299901 0.896725 0.135211 0.950219 0.136149 0.945967 0.126669 0.942737 0.115781 0.938555 0.105586 0.934165 0.102787 0.941126 0.085231 0.923295 0.07640999 0.915074 0.07204198 0.920409 0.07640999 0.915074 0.06994795 0.9074 0.06576198 0.908869 0.085231 0.923295 0.08008396 0.928497 0.09064197 0.935779 0.126669 0.942737 0.115781 0.938555 0.113594 0.945266 1.93146 0.896398 1.914424 0.889738 1.91449 0.912449 1.89383 0.903564 1.914424 0.889738 1.905492 0.879867 1.881963 0.886648 1.905492 0.879867 1.899788 0.867219 1.976906 0.843774 1.971691 0.854167 1.97826 0.849702 1.987069 0.878171 1.972659 0.869186 1.965687 0.885039 1.965687 0.885039 1.948679 0.896516 1.964335 0.90635 1.948679 0.896516 1.93146 0.896398 1.939652 0.915292 1.965291 0.832936 1.971691 0.854167 1.976906 0.843774 1.876662 0.866138 1.899788 0.867219 1.898855 0.850776 1.876747 0.837623 1.898855 0.850776 1.903612 0.837454 1.897621 0.814536 1.903612 0.837454 1.915983 0.826061 1.916793 0.807434 1.915983 0.826061 1.935213 0.818475 1.935213 0.818475 1.954575 0.821124 1.952273 0.804414 1.972325 0.814117 1.954575 0.821124 1.965291 0.832936 1.93146 0.896398 1.935043 0.885705 1.92191 0.88102 1.914424 0.889738 1.92191 0.88102 1.915799 0.873769 1.905492 0.879867 1.915799 0.873769 1.911542 0.864354 1.971691 0.854167 1.964482 0.855229 1.96491 0.864907 1.972659 0.869186 1.96491 0.864907 1.961163 0.874526 1.965687 0.885039 1.961163 0.874526 1.948481 0.884883 1.948679 0.896516 1.948481 0.884883 1.935043 0.885705 1.958684 0.839097 1.964482 0.855229 1.971691 0.854167 1.911542 0.864354 1.910473 0.851694 1.898855 0.850776 1.910473 0.851694 1.913836 0.842302 1.903612 0.837454 1.913836 0.842302 1.923569 0.834366 1.915983 0.826061 1.923569 0.834366 1.939566 0.828789 1.935213 0.818475 1.939566 0.828789 1.95404 0.831404 1.954575 0.821124 1.95404 0.831404 1.958684 0.839097 1.965291 0.832936 1.935043 0.885705 1.941932 0.856808 1.92191 0.88102 1.92191 0.88102 1.941932 0.856808 1.915799 0.873769 1.915799 0.873769 1.941932 0.856808 1.911542 0.864354 1.964482 0.855229 1.941932 0.856808 1.96491 0.864907 1.96491 0.864907 1.941932 0.856808 1.961163 0.874526 1.961163 0.874526 1.941932 0.856808 1.948481 0.884883 1.948481 0.884883 1.941932 0.856808 1.935043 0.885705 1.958684 0.839097 1.941932 0.856808 1.964482 0.855229 1.911542 0.864354 1.941932 0.856808 1.910473 0.851694 1.910473 0.851694 1.941932 0.856808 1.913836 0.842302 1.913836 0.842302 1.941932 0.856808 1.923569 0.834366 1.923569 0.834366 1.941932 0.856808 1.939566 0.828789 1.939566 0.828789 1.941932 0.856808 1.95404 0.831404 1.95404 0.831404 1.941932 0.856808 1.958684 0.839097 1.971691 0.854167 1.972659 0.869186 1.984559 0.859282 1.149143 0.860247 1.129227 0.854687 1.148005 0.870495 1.148005 0.870495 1.129227 0.854687 1.144045 0.878309 1.144045 0.878309 1.129227 0.854687 1.137864 0.882533 1.137864 0.882533 1.129227 0.854687 1.130377 0.882548 1.130377 0.882548 1.129227 0.854687 1.12269 0.87835 1.12269 0.87835 1.129227 0.854687 1.115951 0.870543 1.115951 0.870543 1.129227 0.854687 1.111226 0.860268 1.111226 0.860268 1.129227 0.854687 1.109312 0.849122 1.109312 0.849122 1.129227 0.854687 1.110454 0.838876 1.110454 0.838876 1.129227 0.854687 1.114416 0.831066 1.114416 0.831066 1.129227 0.854687 1.120597 0.826844 1.120597 0.826844 1.129227 0.854687 1.128082 0.826831 1.128082 0.826831 1.129227 0.854687 1.135766 0.831032 1.135766 0.831032 1.129227 0.854687 1.1425 0.838834 1.1425 0.838834 1.129227 0.854687 1.147224 0.849105 1.147224 0.849105 1.129227 0.854687 1.149143 0.860247 1.062242 0.867769 1.04637 0.854507 1.056932 0.877026 1.056932 0.877026 1.04637 0.854507 1.050068 0.882812 1.050068 0.882812 1.04637 0.854507 1.042676 0.884283 1.042676 0.884283 1.04637 0.854507 1.035847 0.881222 1.035847 0.881222 1.04637 0.854507 1.03059 0.874081 1.03059 0.874081 1.04637 0.854507 1.027694 0.863909 1.027694 0.863909 1.04637 0.854507 1.027661 0.852217 1.027661 0.852217 1.04637 0.854507 1.030558 0.840855 1.030558 0.840855 1.04637 0.854507 1.035867 0.831602 1.035867 0.831602 1.04637 0.854507 1.042728 0.825819 1.042728 0.825819 1.04637 0.854507 1.050119 0.824349 1.050119 0.824349 1.04637 0.854507 1.056946 0.827409 1.056946 0.827409 1.04637 0.854507 1.062201 0.834549 1.062201 0.834549 1.04637 0.854507 1.065094 0.844717 1.065094 0.844717 1.04637 0.854507 1.065132 0.856404 1.065132 0.856404 1.04637 0.854507 1.062242 0.867769 1.11104 0.742476 1.13385 0.765674 1.138863 0.750822 1.103235 0.754954 1.118582 0.790642 1.126891 0.779635 1.092644 0.762151 1.097819 0.805203 1.108551 0.799822 1.086791 0.763479 1.0809 0.762702 1.074648 0.80636 1.07531 0.760603 1.069894 0.7564 1.051908 0.794943 1.065199 0.751281 1.06118 0.744341 1.033088 0.771324 1.058208 0.736764 1.056305 0.728123 1.022105 0.738143 1.056361 0.710338 1.022156 0.701178 1.020648 0.719725 1.061138 0.693953 1.032921 0.667584 1.026314 0.683233 1.069862 0.681597 1.051797 0.643314 1.041778 0.653523 1.080894 0.67481 1.074652 0.630958 1.063198 0.635142 1.086791 0.673909 1.092703 0.675075 1.097934 0.631581 1.098142 0.677506 1.103215 0.681956 1.118539 0.645519 1.107504 0.687197 1.111054 0.694086 1.133871 0.669817 1.113621 0.701466 1.115221 0.70976 1.14202 0.700911 1.11514 0.726677 1.141875 0.73435 1.14302 0.717589 1.107486 0.749477 1.11104 0.742476 1.113606 0.734999 1.098129 0.759491 1.103235 0.754954 1.107486 0.749477 1.086791 0.763479 1.092644 0.762151 1.098129 0.759491 1.07531 0.760603 1.0809 0.762702 1.086791 0.763479 1.065199 0.751281 1.069894 0.7564 1.07531 0.760603 1.058208 0.736764 1.06118 0.744341 1.065199 0.751281 1.055677 0.719258 1.056305 0.728123 1.058208 0.736764 1.058175 0.701652 1.056361 0.710338 1.055677 0.719258 1.06516 0.686878 1.061138 0.693953 1.058175 0.701652 1.075285 0.677191 1.069862 0.681597 1.06516 0.686878 1.086791 0.673909 1.080894 0.67481 1.075285 0.677191 1.098142 0.677506 1.092703 0.675075 1.086791 0.673909 1.107504 0.687197 1.103215 0.681956 1.098142 0.677506 1.113621 0.701466 1.111054 0.694086 1.107504 0.687197 1.11573 0.718197 1.115221 0.70976 1.113621 0.701466 1.113606 0.734999 1.11514 0.726677 1.11573 0.718197 1.13385 0.765674 1.141497 0.769683 1.146915 0.753531 1.118582 0.790642 1.124876 0.797048 1.133935 0.784906 1.108551 0.799822 1.097819 0.805203 1.101349 0.813864 1.086791 0.80766 1.074648 0.80636 1.075354 0.814571 1.063255 0.802703 1.051908 0.794943 1.049618 0.803081 1.041927 0.785075 1.033088 0.771324 1.027709 0.777101 1.026455 0.75596 1.022105 0.738143 1.014925 0.740293 1.022156 0.701178 1.014943 0.699219 1.013221 0.719813 1.032921 0.667584 1.027461 0.661956 1.019781 0.679317 1.051797 0.643314 1.049398 0.635258 1.037759 0.646483 1.074652 0.630958 1.075305 0.622749 1.062636 0.626679 1.097934 0.631581 1.101432 0.622885 1.086791 0.6208 1.10857 0.636516 1.118539 0.645519 1.124804 0.639031 1.126916 0.656074 1.133871 0.669817 1.141507 0.665694 1.13889 0.684489 1.14202 0.700911 1.15032 0.69947 1.141875 0.73435 1.15017 0.735681 1.151397 0.717539 1.14202 0.700911 1.14302 0.717589 1.151397 0.717539 1.115221 0.70976 1.11573 0.718197 1.14302 0.717589 1.138863 0.750822 1.146915 0.753531 1.15017 0.735681 1.113606 0.734999 1.138863 0.750822 1.141875 0.73435 1.022105 0.738143 1.020648 0.719725 1.013221 0.719813 1.056305 0.728123 1.055677 0.719258 1.020648 0.719725 1.026314 0.683233 1.019781 0.679317 1.014943 0.699219 1.058175 0.701652 1.026314 0.683233 1.022156 0.701178 1.033088 0.771324 1.026455 0.75596 1.019985 0.760065 1.06118 0.744341 1.058208 0.736764 1.026455 0.75596 1.041778 0.653523 1.037759 0.646483 1.027461 0.661956 1.06516 0.686878 1.041778 0.653523 1.032921 0.667584 1.126891 0.779635 1.133935 0.784906 1.141497 0.769683 1.107486 0.749477 1.126891 0.779635 1.13385 0.765674 1.133871 0.669817 1.13889 0.684489 1.146939 0.681658 1.111054 0.694086 1.113621 0.701466 1.13889 0.684489 1.086791 0.629424 1.086791 0.6208 1.075305 0.622749 1.086791 0.673909 1.086791 0.629424 1.074652 0.630958 1.10857 0.636516 1.113776 0.628907 1.101432 0.622885 1.092703 0.675075 1.098142 0.677506 1.10857 0.636516 1.063198 0.635142 1.062636 0.626679 1.049398 0.635258 1.075285 0.677191 1.063198 0.635142 1.051797 0.643314 1.118539 0.645519 1.126916 0.656074 1.133932 0.650697 1.103215 0.681956 1.107504 0.687197 1.126916 0.656074 1.108551 0.799822 1.113795 0.807372 1.124876 0.797048 1.098129 0.759491 1.108551 0.799822 1.118582 0.790642 1.097819 0.805203 1.086791 0.80766 1.086791 0.816285 1.086791 0.763479 1.086791 0.80766 1.097819 0.805203 1.074648 0.80636 1.063255 0.802703 1.062805 0.81119 1.0809 0.762702 1.07531 0.760603 1.063255 0.802703 1.051908 0.794943 1.041927 0.785075 1.038002 0.792231 1.069894 0.7564 1.065199 0.751281 1.041927 0.785075 0.2456189 0.953607 0.246757 0.956762 0.255804 0.953908 0.222659 0.957082 0.222461 0.960896 0.246757 0.956762 0.203153 0.956758 0.200649 0.960896 0.222461 0.960896 0.190369 0.952631 0.186526 0.95709 0.200649 0.960896 0.172142 0.939939 0.168038 0.943929 0.171898 0.947446 0.179874 0.946679 0.17632 0.951036 0.186526 0.95709 0.264665 0.947713 0.262294 0.952165 0.265738 0.951425 0.267969 0.944595 0.270626 0.939173 0.267821 0.938855 0.176337 0.936113 0.172142 0.939939 0.175554 0.94309 0.186719 0.941324 0.179874 0.946679 0.190369 0.952631 0.196296 0.946158 0.190369 0.952631 0.203153 0.956758 0.2062979 0.949625 0.203153 0.956758 0.222659 0.957082 0.224604 0.951546 0.222659 0.957082 0.2456189 0.953607 0.2456189 0.953607 0.255408 0.950455 0.255348 0.947511 0.264665 0.947713 0.268319 0.946849 0.267969 0.944595 0.167897 0.937791 0.164936 0.94055 0.168038 0.943929 0.163329 0.934917 0.158579 0.93212 0.161541 0.936297 0.168644 0.931158 0.16648 0.932205 0.169238 0.936213 0.270626 0.939173 0.272519 0.934398 0.270995 0.93414 0.267221 0.950989 0.264665 0.947713 0.265738 0.951425 0.273869 0.928244 0.270995 0.93414 0.272519 0.934398 0.179727 0.924792 0.17709 0.920645 0.17688 0.925367 0.181347 0.937931 0.175554 0.94309 0.179874 0.946679 0.171898 0.947446 0.17632 0.951036 0.179874 0.946679 0.184744 0.930539 0.179082 0.934017 0.181347 0.937931 0.255348 0.947511 0.255414 0.943104 0.245635 0.945127 0.245017 0.950079 0.245635 0.945127 0.226502 0.94684 0.224604 0.951546 0.226502 0.94684 0.2083089 0.945408 0.196296 0.946158 0.201189 0.941837 0.193366 0.936483 0.2062979 0.949625 0.2083089 0.945408 0.201189 0.941837 0.267821 0.938855 0.264519 0.936737 0.261071 0.939696 0.273869 0.928244 0.268685 0.932646 0.270995 0.93414 0.270995 0.93414 0.268685 0.932646 0.264519 0.936737 0.186719 0.941324 0.193366 0.936483 0.188169 0.933234 0.176337 0.936113 0.17229 0.934195 0.169238 0.936213 0.179727 0.924792 0.17688 0.925367 0.177866 0.929765 0.163329 0.934917 0.161541 0.936297 0.164936 0.94055 0.168644 0.931158 0.164391 0.927904 0.16648 0.932205 0.267221 0.950989 0.268319 0.946849 0.264665 0.947713 0.181816 0.927833 0.177866 0.929765 0.179082 0.934017 0.261071 0.939696 0.255414 0.943104 0.255348 0.947511 0.255408 0.950455 0.264665 0.947713 0.264146 0.944457 0.262294 0.952165 0.264665 0.947713 0.255408 0.950455 0.2456189 0.953607 0.255408 0.950455 0.255804 0.953908 0.222659 0.957082 0.2456189 0.953607 0.246757 0.956762 0.203153 0.956758 0.222659 0.957082 0.222461 0.960896 0.190369 0.952631 0.203153 0.956758 0.200649 0.960896 0.175554 0.94309 0.171898 0.947446 0.168038 0.943929 0.179874 0.946679 0.190369 0.952631 0.186526 0.95709 0.264665 0.947713 0.265738 0.951425 0.262294 0.952165 0.272949 0.93457 0.271542 0.934184 0.273869 0.928244 0.176337 0.936113 0.181347 0.937931 0.175554 0.94309 0.186719 0.941324 0.196296 0.946158 0.190369 0.952631 0.196296 0.946158 0.2062979 0.949625 0.203153 0.956758 0.2062979 0.949625 0.224604 0.951546 0.222659 0.957082 0.224604 0.951546 0.245017 0.950079 0.2456189 0.953607 0.245017 0.950079 0.255348 0.947511 0.255408 0.950455 0.168038 0.943929 0.164936 0.94055 0.167897 0.937791 0.163329 0.934917 0.161541 0.936297 0.158579 0.93212 0.17229 0.934195 0.169238 0.936213 0.16648 0.932205 0.268865 0.938912 0.271542 0.934184 0.272949 0.93457 0.269004 0.944572 0.26554 0.944538 0.268865 0.938912 0.26554 0.944538 0.269004 0.944572 0.268319 0.946849 0.267221 0.950989 0.265738 0.951425 0.264665 0.947713 0.179727 0.924792 0.17688 0.925367 0.17709 0.920645 0.181347 0.937931 0.186719 0.941324 0.179874 0.946679 0.171898 0.947446 0.175554 0.94309 0.179874 0.946679 0.181347 0.937931 0.179082 0.934017 0.184744 0.930539 0.255348 0.947511 0.245017 0.950079 0.245635 0.945127 0.245017 0.950079 0.224604 0.951546 0.226502 0.94684 0.224604 0.951546 0.2062979 0.949625 0.2083089 0.945408 0.196296 0.946158 0.186719 0.941324 0.193366 0.936483 0.2062979 0.949625 0.196296 0.946158 0.201189 0.941837 0.268865 0.938912 0.26554 0.944538 0.261071 0.939696 0.273869 0.928244 0.271542 0.934184 0.268685 0.932646 0.268865 0.938912 0.264519 0.936737 0.268685 0.932646 0.186719 0.941324 0.181347 0.937931 0.188169 0.933234 0.172142 0.939939 0.169238 0.936213 0.17229 0.934195 0.179727 0.924792 0.181816 0.927833 0.177866 0.929765 0.164936 0.94055 0.161541 0.936297 0.163329 0.934917 0.168644 0.931158 0.16648 0.932205 0.164391 0.927904 0.267221 0.950989 0.264665 0.947713 0.268319 0.946849 0.181816 0.927833 0.184744 0.930539 0.179082 0.934017 0.26554 0.944538 0.255348 0.947511 0.255414 0.943104 0.255348 0.947511 0.26554 0.944538 0.264665 0.947713 0.255408 0.950455 0.264665 0.947713 0.262294 0.952165 0.255804 0.953908 0.255804 0.953908 0.246757 0.956762 0.246757 0.956762 0.222461 0.960896 0.222461 0.960896 0.222461 0.960896 0.200649 0.960896 0.200649 0.960896 0.200649 0.960896 0.186526 0.95709 0.186526 0.95709 0.171898 0.947446 0.168038 0.943929 0.168038 0.943929 0.186526 0.95709 0.17632 0.951036 0.17632 0.951036 0.265738 0.951425 0.262294 0.952165 0.262294 0.952165 0.273869 0.928244 0.272519 0.934398 0.272949 0.93457 0.176337 0.936113 0.181347 0.937931 0.181347 0.937931 0.168038 0.943929 0.164936 0.94055 0.164936 0.94055 0.167897 0.937791 0.167897 0.937791 0.172142 0.939939 0.161541 0.936297 0.161541 0.936297 0.158579 0.93212 0.158579 0.93212 0.163329 0.934917 0.163329 0.934917 0.169238 0.936213 0.16648 0.932205 0.16648 0.932205 0.168644 0.931158 0.17229 0.934195 0.17229 0.934195 0.272949 0.93457 0.272519 0.934398 0.270626 0.939173 0.271343 0.939378 0.270626 0.939173 0.267969 0.944595 0.267969 0.944595 0.268319 0.946849 0.268319 0.946849 0.267221 0.950989 0.267221 0.950989 0.265738 0.951425 0.17688 0.925367 0.17688 0.925367 0.17709 0.920645 0.17709 0.920645 0.179727 0.924792 0.179727 0.924792 0.17632 0.951036 0.171898 0.947446 0.171898 0.947446 0.181347 0.937931 0.181347 0.937931 0.179082 0.934017 0.184744 0.930539 0.188169 0.933234 0.188169 0.933234 0.245635 0.945127 0.245635 0.945127 0.255414 0.943104 0.226502 0.94684 0.226502 0.94684 0.245635 0.945127 0.2083089 0.945408 0.2083089 0.945408 0.226502 0.94684 0.193366 0.936483 0.201189 0.941837 0.201189 0.941837 0.201189 0.941837 0.2083089 0.945408 0.2083089 0.945408 0.261071 0.939696 0.264519 0.936737 0.264519 0.936737 0.268685 0.932646 0.268685 0.932646 0.273869 0.928244 0.264519 0.936737 0.268685 0.932646 0.268685 0.932646 0.188169 0.933234 0.188169 0.933234 0.193366 0.936483 0.172142 0.939939 0.172142 0.939939 0.169238 0.936213 0.17229 0.934195 0.17229 0.934195 0.176337 0.936113 0.179727 0.924792 0.181816 0.927833 0.181816 0.927833 0.177866 0.929765 0.177866 0.929765 0.17688 0.925367 0.164936 0.94055 0.161541 0.936297 0.161541 0.936297 0.163329 0.934917 0.163329 0.934917 0.167897 0.937791 0.16648 0.932205 0.16648 0.932205 0.164391 0.927904 0.164391 0.927904 0.168644 0.931158 0.168644 0.931158 0.268319 0.946849 0.267221 0.950989 0.267221 0.950989 0.181816 0.927833 0.184744 0.930539 0.184744 0.930539 0.179082 0.934017 0.179082 0.934017 0.177866 0.929765 0.255414 0.943104 0.261071 0.939696 0.261071 0.939696 0.262294 0.952165 0.255804 0.953908 0.255804 0.953908 0.017394 0.436789 0.01878499 0.436789 0.017394 0.466293 0.01878499 0.466293 0.01878499 0.436789 0.02017599 0.466293 0.02017599 0.466293 0.02017599 0.436789 0.02156698 0.466293 0.02156698 0.466293 0.02156698 0.436789 0.02295798 0.466293 0.02295798 0.466293 0.02295798 0.436789 0.02434897 0.466293 0.02434897 0.466293 0.02434897 0.436789 0.02573996 0.466293 0.02573996 0.466293 0.02573996 0.436789 0.02713096 0.466293 0.02713096 0.466293 0.02713096 0.436789 0.02852195 0.466293 0.02852195 0.466293 0.02852195 0.436789 0.02991294 0.466293 0.02991294 0.466293 0.02991294 0.436789 0.031304 0.466293 0.031304 0.466293 0.031304 0.436789 0.03269499 0.466293 0.03269499 0.466293 0.03269499 0.436789 0.03408598 0.466293 0.03408598 0.466293 0.03408598 0.436789 0.03547698 0.466293 0.03547698 0.466293 0.03547698 0.436789 0.03686797 0.466293 0.03686797 0.436789 0.03825896 0.436789 0.03686797 0.466293 0.03825896 0.436789 0.03964996 0.436789 0.03825896 0.466293 0.03964996 0.436789 0.04104095 0.436789 0.03964996 0.466293 0.04104095 0.466293 0.04104095 0.436789 0.04243195 0.466293 0.04243195 0.466293 0.04243195 0.436789 0.043823 0.466293 0.043823 0.436789 0.04521399 0.436789 0.043823 0.466293 0.04521399 0.466293 0.04521399 0.436789 0.04660499 0.466293 0.04660499 0.436789 0.04799598 0.436789 0.04660499 0.466293 0.04799598 0.436789 0.04938596 0.436789 0.04799598 0.466293 0.04938596 0.436789 0.05077695 0.436789 0.04938596 0.466293 0.05077695 0.436789 0.05216795 0.436789 0.05077695 0.466293 0.05216795 0.436789 0.053559 0.436789 0.05216795 0.466293 0.053559 0.466293 0.053559 0.436789 0.05494999 0.466293 0.05494999 0.466293 0.05494999 0.436789 0.05634099 0.466293 0.05634099 0.466293 0.05634099 0.436789 0.05773198 0.466293 0.05773198 0.466293 0.05773198 0.436789 0.05912297 0.466293 0.05912297 0.436789 0.06051397 0.436789 0.05912297 0.466293 0.06051397 0.436789 0.06190496 0.436789 0.06051397 0.466293 0.06190496 0.466293 0.06190496 0.436789 0.06329596 0.466293 0.06329596 0.436789 0.06468695 0.436789 0.06329596 0.466293 0.06468695 0.436789 0.066078 0.436789 0.06468695 0.466293 0.066078 0.466293 0.066078 0.436789 0.067469 0.466293 0.067469 0.436789 0.06885999 0.436789 0.067469 0.466293 0.06885999 0.466293 0.06885999 0.436789 0.07025098 0.466293 0.07025098 0.436789 0.07164198 0.436789 0.07025098 0.466293 0.07164198 0.466293 0.07164198 0.436789 0.07303297 0.466293 0.07303297 0.436789 0.07442396 0.436789 0.07303297 0.466293 0.07442396 0.436789 0.07581496 0.436789 0.07442396 0.466293 0.07581496 0.436789 0.07720595 0.436789 0.07581496 0.466293 0.07720595 0.466293 0.07720595 0.436789 0.078597 0.466293 0.078597 0.466293 0.078597 0.436789 0.079988 0.466293 0.079988 0.466293 0.079988 0.436789 0.08137899 0.466293 0.08137899 0.436789 0.08276998 0.436789 0.08137899 0.466293 0.08276998 0.436789 0.08416098 0.436789 0.08276998 0.466293 0.02852195 0.525303 0.02991294 0.525303 0.02852195 0.554807 0.02713096 0.554807 0.02713096 0.525303 0.02852195 0.554807 0.02573996 0.554807 0.02573996 0.525303 0.02713096 0.554807 0.02434897 0.525303 0.02573996 0.525303 0.02434897 0.554807 0.02295798 0.525303 0.02434897 0.525303 0.02295798 0.554807 0.02156698 0.554807 0.02156698 0.525303 0.02295798 0.554807 0.02017599 0.525303 0.02156698 0.525303 0.02017599 0.554807 0.01878499 0.554807 0.01878499 0.525303 0.02017599 0.554807 0.017394 0.554807 0.017394 0.525303 0.01878499 0.554807 0.08276998 0.525303 0.08416098 0.525303 0.08276998 0.554807 0.08137899 0.554807 0.08137899 0.525303 0.08276998 0.554807 0.079988 0.554807 0.079988 0.525303 0.08137899 0.554807 0.078597 0.525303 0.079988 0.525303 0.078597 0.554807 0.07720595 0.525303 0.078597 0.525303 0.07720595 0.554807 0.07581496 0.554807 0.07581496 0.525303 0.07720595 0.554807 0.07442396 0.554807 0.07442396 0.525303 0.07581496 0.554807 0.07303297 0.525303 0.07442396 0.525303 0.07303297 0.554807 0.07164198 0.525303 0.07303297 0.525303 0.07164198 0.554807 0.07025098 0.525303 0.07164198 0.525303 0.07025098 0.554807 0.06885999 0.554807 0.06885999 0.525303 0.07025098 0.554807 0.067469 0.525303 0.06885999 0.525303 0.067469 0.554807 0.066078 0.554807 0.066078 0.525303 0.067469 0.554807 0.06468695 0.525303 0.066078 0.525303 0.06468695 0.554807 0.06329596 0.554807 0.06329596 0.525303 0.06468695 0.554807 0.06190496 0.554807 0.06190496 0.525303 0.06329596 0.554807 0.06051397 0.554807 0.06051397 0.525303 0.06190496 0.554807 0.05912297 0.554807 0.05912297 0.525303 0.06051397 0.554807 0.05773198 0.554807 0.05773198 0.525303 0.05912297 0.554807 0.05634099 0.525303 0.05773198 0.525303 0.05634099 0.554807 0.05494999 0.554807 0.05494999 0.525303 0.05634099 0.554807 0.053559 0.554807 0.053559 0.525303 0.05494999 0.554807 0.05216795 0.554807 0.05216795 0.525303 0.053559 0.554807 0.05077695 0.554807 0.05077695 0.525303 0.05216795 0.554807 0.04938596 0.554807 0.04938596 0.525303 0.05077695 0.554807 0.04799598 0.525303 0.04938596 0.525303 0.04799598 0.554807 0.04660499 0.554807 0.04660499 0.525303 0.04799598 0.554807 0.04521399 0.554807 0.04521399 0.525303 0.04660499 0.554807 0.043823 0.525303 0.04521399 0.525303 0.043823 0.554807 0.04243195 0.554807 0.04243195 0.525303 0.043823 0.554807 0.04104095 0.554807 0.04104095 0.525303 0.04243195 0.554807 0.03964996 0.554807 0.03964996 0.525303 0.04104095 0.554807 0.03825896 0.554807 0.03825896 0.525303 0.03964996 0.554807 0.03686797 0.525303 0.03825896 0.525303 0.03686797 0.554807 0.03547698 0.525303 0.03686797 0.525303 0.03547698 0.554807 0.03408598 0.525303 0.03547698 0.525303 0.03408598 0.554807 0.03269499 0.525303 0.03408598 0.525303 0.03269499 0.554807 0.031304 0.554807 0.031304 0.525303 0.03269499 0.554807 0.02991294 0.554807 0.02991294 0.525303 0.031304 0.554807 0.02852195 0.525303 0.02852195 0.495798 0.02991294 0.525303 0.02713096 0.495798 0.02852195 0.495798 0.02713096 0.525303 0.02573996 0.525303 0.02573996 0.495798 0.02713096 0.525303 0.02434897 0.525303 0.02434897 0.495798 0.02573996 0.525303 0.02295798 0.525303 0.02295798 0.495798 0.02434897 0.525303 0.02156698 0.525303 0.02156698 0.495798 0.02295798 0.525303 0.02017599 0.525303 0.02017599 0.495798 0.02156698 0.525303 0.01878499 0.525303 0.01878499 0.495798 0.02017599 0.525303 0.017394 0.495798 0.01878499 0.495798 0.017394 0.525303 0.08276998 0.495798 0.08416098 0.495798 0.08276998 0.525303 0.08137899 0.525303 0.08137899 0.495798 0.08276998 0.525303 0.079988 0.495798 0.08137899 0.495798 0.079988 0.525303 0.078597 0.525303 0.078597 0.495798 0.079988 0.525303 0.07720595 0.525303 0.07720595 0.495798 0.078597 0.525303 0.07581496 0.525303 0.07581496 0.495798 0.07720595 0.525303 0.07442396 0.495798 0.07581496 0.495798 0.07442396 0.525303 0.07303297 0.525303 0.07303297 0.495798 0.07442396 0.525303 0.07164198 0.525303 0.07164198 0.495798 0.07303297 0.525303 0.07025098 0.495798 0.07164198 0.495798 0.07025098 0.525303 0.06885999 0.495798 0.07025098 0.495798 0.06885999 0.525303 0.067469 0.495798 0.06885999 0.495798 0.067469 0.525303 0.066078 0.495798 0.067469 0.495798 0.066078 0.525303 0.06468695 0.495798 0.066078 0.495798 0.06468695 0.525303 0.06329596 0.495798 0.06468695 0.495798 0.06329596 0.525303 0.06190496 0.495798 0.06329596 0.495798 0.06190496 0.525303 0.06051397 0.525303 0.06051397 0.495798 0.06190496 0.525303 0.05912297 0.495798 0.06051397 0.495798 0.05912297 0.525303 0.05773198 0.495798 0.05912297 0.495798 0.05773198 0.525303 0.05634099 0.495798 0.05773198 0.495798 0.05634099 0.525303 0.05494999 0.525303 0.05494999 0.495798 0.05634099 0.525303 0.053559 0.495798 0.05494999 0.495798 0.053559 0.525303 0.05216795 0.525303 0.05216795 0.495798 0.053559 0.525303 0.05077695 0.495798 0.05216795 0.495798 0.05077695 0.525303 0.04938596 0.495798 0.05077695 0.495798 0.04938596 0.525303 0.04799598 0.495798 0.04938596 0.495798 0.04799598 0.525303 0.04660499 0.495798 0.04799598 0.495798 0.04660499 0.525303 0.04521399 0.495798 0.04660499 0.495798 0.04521399 0.525303 0.043823 0.495798 0.04521399 0.495798 0.043823 0.525303 0.04243195 0.495798 0.043823 0.495798 0.04243195 0.525303 0.04104095 0.525303 0.04104095 0.495798 0.04243195 0.525303 0.03964996 0.525303 0.03964996 0.495798 0.04104095 0.525303 0.03825896 0.525303 0.03825896 0.495798 0.03964996 0.525303 0.03686797 0.525303 0.03686797 0.495798 0.03825896 0.525303 0.03547698 0.525303 0.03547698 0.495798 0.03686797 0.525303 0.03408598 0.525303 0.03408598 0.495798 0.03547698 0.525303 0.03269499 0.525303 0.03269499 0.495798 0.03408598 0.525303 0.031304 0.525303 0.031304 0.495798 0.03269499 0.525303 0.02991294 0.495798 0.031304 0.495798 0.02991294 0.525303 0.02852195 0.495798 0.02852195 0.466293 0.02991294 0.495798 0.02713096 0.495798 0.02713096 0.466293 0.02852195 0.495798 0.02573996 0.495798 0.02573996 0.466293 0.02713096 0.495798 0.02434897 0.495798 0.02434897 0.466293 0.02573996 0.495798 0.02295798 0.495798 0.02295798 0.466293 0.02434897 0.495798 0.02156698 0.495798 0.02156698 0.466293 0.02295798 0.495798 0.02017599 0.495798 0.02017599 0.466293 0.02156698 0.495798 0.01878499 0.495798 0.01878499 0.466293 0.02017599 0.495798 0.017394 0.495798 0.017394 0.466293 0.01878499 0.495798 0.08276998 0.466293 0.08416098 0.466293 0.08276998 0.495798 0.08137899 0.495798 0.08137899 0.466293 0.08276998 0.495798 0.079988 0.466293 0.08137899 0.466293 0.079988 0.495798 0.078597 0.495798 0.078597 0.466293 0.079988 0.495798 0.07720595 0.495798 0.07720595 0.466293 0.078597 0.495798 0.07581496 0.495798 0.07581496 0.466293 0.07720595 0.495798 0.07442396 0.466293 0.07581496 0.466293 0.07442396 0.495798 0.07303297 0.495798 0.07303297 0.466293 0.07442396 0.495798 0.07164198 0.466293 0.07303297 0.466293 0.07164198 0.495798 0.07025098 0.466293 0.07164198 0.466293 0.07025098 0.495798 0.06885999 0.495798 0.06885999 0.466293 0.07025098 0.495798 0.067469 0.495798 0.067469 0.466293 0.06885999 0.495798 0.066078 0.495798 0.066078 0.466293 0.067469 0.495798 0.06468695 0.495798 0.06468695 0.466293 0.066078 0.495798 0.06329596 0.495798 0.06329596 0.466293 0.06468695 0.495798 0.06190496 0.495798 0.06190496 0.466293 0.06329596 0.495798 0.06051397 0.495798 0.06051397 0.466293 0.06190496 0.495798 0.05912297 0.466293 0.06051397 0.466293 0.05912297 0.495798 0.05773198 0.466293 0.05912297 0.466293 0.05773198 0.495798 0.05634099 0.466293 0.05773198 0.466293 0.05634099 0.495798 0.05494999 0.495798 0.05494999 0.466293 0.05634099 0.495798 0.053559 0.466293 0.05494999 0.466293 0.053559 0.495798 0.05216795 0.466293 0.053559 0.466293 0.05216795 0.495798 0.05077695 0.495798 0.05077695 0.466293 0.05216795 0.495798 0.04938596 0.495798 0.04938596 0.466293 0.05077695 0.495798 0.04799598 0.495798 0.04799598 0.466293 0.04938596 0.495798 0.04660499 0.495798 0.04660499 0.466293 0.04799598 0.495798 0.04521399 0.495798 0.04521399 0.466293 0.04660499 0.495798 0.043823 0.466293 0.04521399 0.466293 0.043823 0.495798 0.04243195 0.495798 0.04243195 0.466293 0.043823 0.495798 0.04104095 0.495798 0.04104095 0.466293 0.04243195 0.495798 0.03964996 0.495798 0.03964996 0.466293 0.04104095 0.495798 0.03825896 0.495798 0.03825896 0.466293 0.03964996 0.495798 0.03686797 0.495798 0.03686797 0.466293 0.03825896 0.495798 0.03547698 0.495798 0.03547698 0.466293 0.03686797 0.495798 0.03408598 0.495798 0.03408598 0.466293 0.03547698 0.495798 0.03269499 0.466293 0.03408598 0.466293 0.03269499 0.495798 0.031304 0.495798 0.031304 0.466293 0.03269499 0.495798 0.02991294 0.495798 0.02991294 0.466293 0.031304 0.495798 0.555541 0.116969 0.97249 0.116969 0.555541 0.375706 0.473548 0.112048 0.474191 0.122141 0.461386 0.114618 0.432367 0.340982 0.430689 0.332335 0.439595 0.340875 0.425271 0.334604 0.430689 0.332335 0.425497 0.341257 0.447362 0.062168 0.449063 0.06944495 0.437429 0.06154799 0.410347 0.301893 0.413541 0.305838 0.40691 0.304845 0.418822 0.298526 0.412171 0.292301 0.420213 0.291184 0.456496 0.26823 0.458399 0.2716 0.449049 0.272521 0.438308 0.279596 0.435517 0.270844 0.44394 0.273593 0.448289 0.340191 0.444495 0.329088 0.455368 0.339766 0.435925 0.125613 0.449599 0.118772 0.443339 0.135773 0.412756 0.088499 0.409811 0.08515197 0.417515 0.08244496 0.427793 0.274524 0.43158 0.282816 0.419881 0.279423 0.444495 0.329088 0.448289 0.340191 0.438523 0.330412 0.46606 0.126766 0.4561 0.13058 0.461386 0.114618 0.427096 0.066863 0.431034 0.07259196 0.418532 0.07314997 0.439258 0.100782 0.449599 0.118772 0.425903 0.110038 0.461386 0.114618 0.449599 0.118772 0.451997 0.09611099 0.473548 0.112048 0.461386 0.114618 0.465013 0.09340995 0.423162 0.320235 0.42575 0.325301 0.419288 0.323289 0.430689 0.332335 0.427721 0.315032 0.438523 0.330412 0.440469 0.304591 0.444495 0.329088 0.435098 0.308812 0.447372 0.301688 0.450139 0.327553 0.440469 0.304591 0.471817 0.316486 0.46679 0.313673 0.476204 0.303733 0.467831 0.327477 0.464456 0.325618 0.471817 0.316486 0.41759 0.116974 0.425903 0.110038 0.425384 0.12812 0.450139 0.327553 0.447372 0.301688 0.456827 0.323236 0.461167 0.286984 0.456238 0.280442 0.462832 0.277212 0.455368 0.339766 0.450139 0.327553 0.45873 0.334212 0.425384 0.12812 0.435925 0.125613 0.429299 0.135172 0.461409 0.34457 0.455368 0.339766 0.462736 0.337565 0.41759 0.116974 0.410699 0.123622 0.410417 0.110959 0.463371 0.306229 0.46679 0.313673 0.455671 0.301752 0.488701 0.269372 0.488998 0.266007 0.490671 0.269203 0.45873 0.334212 0.456827 0.323236 0.464456 0.325618 0.414545 0.132217 0.425384 0.12812 0.419829 0.134626 0.462736 0.337565 0.45873 0.334212 0.467831 0.327477 0.420364 0.315582 0.416358 0.3092 0.423484 0.305083 0.459521 0.07239395 0.458199 0.06362199 0.464268 0.069678 0.423162 0.320235 0.427721 0.315032 0.42575 0.325301 0.42575 0.325301 0.430689 0.332335 0.421715 0.32843 0.473548 0.112048 0.465013 0.09340995 0.476245 0.103719 0.432367 0.340982 0.439595 0.340875 0.43211 0.352533 0.472111 0.138204 0.46606 0.126766 0.480192 0.134167 0.425497 0.341257 0.432367 0.340982 0.425615 0.351202 0.447442 0.35471 0.448289 0.340191 0.454164 0.355167 0.455368 0.339766 0.461409 0.34457 0.454164 0.355167 0.443339 0.135773 0.4561 0.13058 0.451887 0.147473 0.439595 0.340875 0.448289 0.340191 0.438578 0.353754 0.472111 0.138204 0.46247 0.142328 0.46606 0.126766 0.467754 0.28517 0.461167 0.286984 0.466209 0.2789 0.410417 0.110959 0.404336 0.118053 0.402094 0.109488 0.476204 0.303733 0.473338 0.30059 0.48009 0.297234 0.467455 0.296367 0.461167 0.286984 0.471907 0.290553 0.430784 0.08721995 0.439258 0.100782 0.418299 0.09853297 0.451997 0.09611099 0.439258 0.100782 0.444652 0.07932299 0.465013 0.09340995 0.451997 0.09611099 0.461046 0.080976 0.475171 0.09567499 0.465013 0.09340995 0.47426 0.08825498 0.420364 0.315582 0.423162 0.320235 0.416499 0.31863 0.423484 0.305083 0.427721 0.315032 0.420364 0.315582 0.427721 0.315032 0.423484 0.305083 0.435098 0.308812 0.440334 0.286856 0.440469 0.304591 0.427936 0.292312 0.456238 0.280442 0.447372 0.301688 0.440334 0.286856 0.461167 0.286984 0.455671 0.301752 0.456238 0.280442 0.418299 0.09853297 0.425903 0.110038 0.410417 0.110959 0.41759 0.116974 0.425384 0.12812 0.410699 0.123622 0.404336 0.118053 0.410699 0.123622 0.402146 0.123169 0.402146 0.123169 0.396841 0.119834 0.404336 0.118053 0.493479 0.27188 0.492291 0.270405 0.496598 0.270122 0.473338 0.30059 0.467455 0.296367 0.476542 0.294342 0.46679 0.313673 0.463371 0.306229 0.473338 0.30059 0.463371 0.306229 0.455671 0.301752 0.467455 0.296367 0.459122 0.05522596 0.466223 0.058106 0.458199 0.06362199 0.401862 0.300957 0.404061 0.296979 0.40691 0.304845 0.412171 0.292301 0.404745 0.279083 0.41626 0.285324 0.435517 0.270844 0.427793 0.274524 0.425191 0.249833 0.431262 0.25269 0.440026 0.255249 0.435517 0.270844 0.454687 0.265344 0.447677 0.269295 0.453309 0.257994 0.407699 0.07612597 0.413379 0.07991898 0.404956 0.08161598 0.405047 0.293235 0.411446 0.298095 0.404061 0.296979 0.433072 0.05186897 0.444293 0.05252796 0.437429 0.06154799 0.420819 0.05584394 0.427096 0.066863 0.412415 0.06073498 0.369383 0.295584 0.36937 0.29642 0.367718 0.295893 0.395514 0.283807 0.395831 0.281339 0.404009 0.28641 0.351516 0.255415 0.351528 0.253803 0.353204 0.255242 0.401428 0.25264 0.410409 0.255043 0.400639 0.255012 0.387016 0.191768 0.38894 0.1911309 0.388541 0.194178 0.427955 0.239799 0.429879 0.240075 0.425191 0.249833 0.464906 0.1998389 0.466849 0.199983 0.464758 0.201991 0.399829 0.292007 0.405047 0.293235 0.399804 0.29523 0.399804 0.29523 0.404061 0.296979 0.39864 0.299162 0.471944 0.06025999 0.466223 0.058106 0.472889 0.05484497 0.393611 0.285191 0.395514 0.283807 0.397693 0.289219 0.454036 0.05245399 0.444293 0.05252796 0.448351 0.04447698 0.400639 0.255012 0.409451 0.264448 0.398394 0.257183 0.401799 0.269545 0.407246 0.273173 0.399988 0.273207 0.399988 0.273207 0.404745 0.279083 0.395023 0.278207 0.417628 0.05071598 0.420819 0.05584394 0.410773 0.05430096 0.427955 0.239799 0.425191 0.249833 0.425171 0.238843 0.425191 0.249833 0.417825 0.253996 0.420828 0.246939 0.410258 0.250482 0.410409 0.255043 0.402214 0.250305 0.403805 0.06769096 0.411329 0.06643897 0.403041 0.07422196 0.453309 0.257994 0.445774 0.256605 0.453344 0.253977 0.440026 0.255249 0.431262 0.25269 0.441506 0.250018 0.436449 0.2472259 0.431262 0.25269 0.431876 0.239455 0.847476 0.312617 0.848903 0.314889 0.844051 0.320629 0.389381 0.201059 0.386467 0.200944 0.388188 0.1972579 0.391747 0.1951709 0.394615 0.19868 0.3902 0.196883 0.392285 0.192487 0.396236 0.196756 0.391747 0.1951709 0.482573 0.280333 0.479595 0.276792 0.487278 0.275695 0.485824 0.283598 0.482573 0.280333 0.490241 0.277907 0.493701 0.278859 0.488534 0.28575 0.490241 0.277907 0.861041 0.31237 0.864019 0.310016 0.861051 0.322602 0.479595 0.276792 0.476865 0.273228 0.484682 0.272369 0.392169 0.105709 0.390162 0.109205 0.390157 0.104604 0.388082 0.113131 0.386032 0.111781 0.390162 0.109205 0.482573 0.280333 0.485824 0.283598 0.478744 0.284369 0.390162 0.109205 0.392746 0.110835 0.388082 0.113131 0.392169 0.105709 0.394438 0.106721 0.390162 0.109205 0.478744 0.284369 0.475226 0.280161 0.482573 0.280333 0.484682 0.272369 0.48307 0.269114 0.488701 0.269372 0.496419 0.272349 0.493701 0.278859 0.492874 0.273427 0.867819 0.332937 0.867883 0.328386 0.871151 0.332067 0.862491 0.327899 0.867883 0.328386 0.864018 0.331827 0.492291 0.270405 0.490671 0.269203 0.494615 0.267391 0.492874 0.273427 0.493479 0.27188 0.496419 0.272349 0.403041 0.07422196 0.38377 0.07024997 0.403805 0.06769096 0.431876 0.239455 0.443109 0.226126 0.436449 0.2472259 0.441506 0.250018 0.436449 0.2472259 0.451168 0.231477 0.454166 0.233274 0.458982 0.235496 0.446235 0.252036 0.417628 0.05071598 0.410773 0.05430096 0.402614 0.033436 0.402214 0.250305 0.396905 0.229714 0.410258 0.250482 0.40489 0.226613 0.408564 0.224798 0.416057 0.250125 0.412086 0.222199 0.425171 0.238843 0.408564 0.224798 0.441442 0.02907997 0.444872 0.02925896 0.442598 0.04529899 0.380277 0.265614 0.399988 0.273207 0.378402 0.269988 0.381276 0.262914 0.401799 0.269545 0.380277 0.265614 0.381444 0.259859 0.38207 0.255251 0.402518 0.265515 0.475188 0.03946697 0.47807 0.04208099 0.468376 0.05210697 0.38839 0.298683 0.388405 0.295703 0.39864 0.299162 0.388103 0.293381 0.399829 0.292007 0.388405 0.295703 0.397693 0.289219 0.386895 0.291262 0.393611 0.285191 0.410409 0.255043 0.417825 0.253996 0.419881 0.279423 0.410258 0.250482 0.416057 0.250125 0.410409 0.255043 0.416057 0.250125 0.410258 0.250482 0.40489 0.226613 0.388188 0.1972579 0.3902 0.196883 0.389381 0.201059 0.385577 0.193189 0.387016 0.191768 0.387471 0.194688 0.417628 0.05071598 0.402614 0.033436 0.421453 0.04563897 0.421453 0.04563897 0.427789 0.04888498 0.417628 0.05071598 0.427789 0.04888498 0.437429 0.06154799 0.420819 0.05584394 0.427096 0.066863 0.437429 0.06154799 0.431034 0.07259196 0.43158 0.282816 0.427793 0.274524 0.438308 0.279596 0.424856 0.07944297 0.431034 0.07259196 0.430784 0.08721995 0.418299 0.09853297 0.416408 0.09368598 0.430784 0.08721995 0.461008 0.274029 0.456238 0.280442 0.458399 0.2716 0.456238 0.280442 0.440334 0.286856 0.450175 0.276307 0.427936 0.292312 0.43158 0.282816 0.440334 0.286856 0.413379 0.07991898 0.418532 0.07314997 0.417515 0.08244496 0.412756 0.088499 0.417515 0.08244496 0.416408 0.09368598 0.438308 0.279596 0.44394 0.273593 0.450175 0.276307 0.449049 0.272521 0.44394 0.273593 0.447677 0.269295 0.456496 0.26823 0.449049 0.272521 0.454687 0.265344 0.403041 0.07422196 0.407699 0.07612597 0.401552 0.07889997 0.38377 0.07024997 0.403041 0.07422196 0.383199 0.07365697 0.465734 0.202771 0.466849 0.199983 0.466955 0.202931 0.451168 0.231477 0.454166 0.233274 0.441506 0.250018 0.445774 0.256605 0.440026 0.255249 0.446235 0.252036 0.447677 0.269295 0.442598 0.269782 0.445774 0.256605 0.411329 0.06643897 0.418532 0.07314997 0.407699 0.07612597 0.461046 0.080976 0.444652 0.07932299 0.459521 0.07239395 0.459521 0.07239395 0.449063 0.06944495 0.458199 0.06362199 0.41626 0.285324 0.419881 0.279423 0.420213 0.291184 0.423484 0.305083 0.418822 0.298526 0.427936 0.292312 0.416358 0.3092 0.420364 0.315582 0.412887 0.312783 0.411446 0.298095 0.41373 0.298539 0.410347 0.301893 0.47426 0.08825498 0.461046 0.080976 0.473237 0.08082395 0.444293 0.05252796 0.433072 0.05186897 0.442598 0.04529899 0.442598 0.04529899 0.436567 0.04484897 0.441442 0.02907997 0.353566 0.254352 0.351528 0.253803 0.353401 0.253351 0.381444 0.259859 0.402518 0.265515 0.381276 0.262914 0.409451 0.264448 0.407246 0.273173 0.402518 0.265515 0.458199 0.06362199 0.447362 0.062168 0.454036 0.05245399 0.41626 0.285324 0.407246 0.273173 0.419881 0.279423 0.411446 0.298095 0.412171 0.292301 0.41373 0.298539 0.41373 0.298539 0.418822 0.298526 0.413541 0.305838 0.412887 0.312783 0.410268 0.309081 0.416358 0.3092 0.464268 0.069678 0.472346 0.074579 0.459521 0.07239395 0.465463 0.06623297 0.4718 0.06770199 0.464268 0.069678 0.466223 0.058106 0.459122 0.05522596 0.468376 0.05210697 0.468376 0.05210697 0.464954 0.04907494 0.475188 0.03946697 0.369181 0.294796 0.369383 0.295584 0.368029 0.294688 0.386895 0.291262 0.397693 0.289219 0.388103 0.293381 0.397693 0.289219 0.404009 0.28641 0.399829 0.292007 0.404009 0.28641 0.412171 0.292301 0.405047 0.293235 0.4718 0.06770199 0.465463 0.06623297 0.471944 0.06025999 0.355739 0.256804 0.353909 0.257934 0.353204 0.255242 0.356975 0.255367 0.355739 0.256804 0.353566 0.254352 0.353401 0.253351 0.356305 0.252909 0.353566 0.254352 0.352115 0.252329 0.355142 0.251074 0.353401 0.253351 0.79169 0.327847 0.791773 0.325198 0.793882 0.327364 0.789176 0.324873 0.791773 0.325198 0.789555 0.327063 0.359263 0.256137 0.358143 0.258145 0.356975 0.255367 0.358143 0.258145 0.356469 0.259447 0.355739 0.256804 0.788316 0.318544 0.788198 0.314263 0.791902 0.318849 0.795585 0.318833 0.791902 0.318849 0.795581 0.314204 0.355142 0.251074 0.358969 0.251079 0.356305 0.252909 0.356305 0.252909 0.359421 0.253471 0.356975 0.255367 0.825507 0.327043 0.825442 0.324568 0.827414 0.325937 0.822883 0.324124 0.825442 0.324568 0.823506 0.326127 0.370963 0.29668 0.370021 0.297843 0.36937 0.29642 0.371335 0.295301 0.370963 0.29668 0.369383 0.295584 0.369181 0.294796 0.370382 0.293985 0.369383 0.295584 0.368029 0.294688 0.369427 0.293249 0.369181 0.294796 0.373341 0.295068 0.373078 0.296921 0.371335 0.295301 0.373078 0.296921 0.372547 0.298346 0.370963 0.29668 0.369427 0.293249 0.371755 0.291887 0.370382 0.293985 0.370382 0.293985 0.372722 0.293281 0.371335 0.295301 0.38894 0.1911309 0.392285 0.192487 0.389792 0.193406 0.843767 0.32509 0.844051 0.320629 0.846641 0.325217 0.840238 0.320629 0.844051 0.320629 0.840897 0.325063 0.388188 0.1972579 0.385357 0.195964 0.387471 0.194688 0.387471 0.194688 0.388541 0.194178 0.388188 0.1972579 0.389792 0.193406 0.391747 0.1951709 0.388541 0.194178 0.807907 0.320521 0.811365 0.3209 0.807761 0.326933 0.805102 0.327228 0.804449 0.320671 0.807761 0.326933 0.463061 0.204088 0.462289 0.2015759 0.464758 0.201991 0.464498 0.205635 0.463061 0.204088 0.465734 0.202771 0.466955 0.202931 0.466437 0.2056789 0.465734 0.202771 0.468338 0.2014999 0.468811 0.204883 0.466955 0.202931 0.462619 0.2090809 0.46057 0.207357 0.464498 0.205635 0.46057 0.207357 0.458716 0.2051129 0.463061 0.204088 0.468811 0.204883 0.467867 0.209697 0.466437 0.2056789 0.466437 0.2056789 0.464885 0.209655 0.464498 0.205635 0.394729 0.224232 0.390741 0.214668 0.39874 0.222262 0.402276 0.2212139 0.39874 0.222262 0.397867 0.212099 0.397867 0.212099 0.401216 0.210568 0.402276 0.2212139 0.403799 0.208113 0.409003 0.2170979 0.401216 0.210568 0.392061 0.01976197 0.39871 0.02840298 0.388335 0.02266597 0.392061 0.01976197 0.395581 0.01725995 0.39871 0.02840298 0.450947 0.214608 0.454865 0.217369 0.446218 0.2217389 0.453719 0.226638 0.450751 0.224692 0.457548 0.2192029 0.457548 0.2192029 0.460126 0.220472 0.453719 0.226638 0.464124 0.222011 0.460923 0.230226 0.460126 0.220472 0.371842 0.06813299 0.379027 0.06943297 0.37127 0.07081997 0.379027 0.06943297 0.371842 0.06813299 0.379278 0.06571495 0.440796 0.01581197 0.441216 0.02386695 0.438091 0.01595497 0.440796 0.01581197 0.443456 0.01594299 0.441216 0.02386695 0.366129 0.264716 0.36789 0.261462 0.373786 0.267936 0.376522 0.261482 0.375503 0.263959 0.369117 0.259181 0.369188 0.256365 0.37669 0.258631 0.369117 0.259181 0.369526 0.252627 0.377373 0.254347 0.369188 0.256365 0.480158 0.03042 0.477311 0.03567695 0.478043 0.02945095 0.480158 0.03042 0.482366 0.03260296 0.477311 0.03567695 0.379929 0.298699 0.380071 0.296425 0.384906 0.298668 0.379802 0.294379 0.384613 0.293842 0.380071 0.296425 0.379053 0.292448 0.383648 0.291848 0.379802 0.294379 0.383648 0.291848 0.379053 0.292448 0.382631 0.288868 0.356469 0.259447 0.358143 0.258145 0.363093 0.263277 0.366203 0.258265 0.364928 0.260402 0.359263 0.256137 0.359421 0.253471 0.366221 0.255531 0.359263 0.256137 0.358969 0.251079 0.366321 0.252075 0.359421 0.253471 0.386467 0.200944 0.389381 0.201059 0.389398 0.210543 0.396121 0.208514 0.39311 0.209453 0.392021 0.200202 0.392021 0.200202 0.394615 0.19868 0.396121 0.208514 0.396236 0.196756 0.401389 0.2045789 0.394615 0.19868 0.385033 0.01063996 0.386138 0.008875966 0.389414 0.01631999 0.458716 0.2051129 0.46057 0.207357 0.453045 0.211564 0.45917 0.216123 0.456653 0.21437 0.462619 0.2090809 0.464885 0.209655 0.461611 0.2172729 0.462619 0.2090809 0.467867 0.209697 0.465408 0.218519 0.464885 0.209655 0.363426 0.06644797 0.368956 0.06761997 0.362863 0.06775701 0.482988 0.02503997 0.481357 0.02825999 0.482257 0.02436697 0.482988 0.02503997 0.484224 0.025303 0.481357 0.02825999 0.372547 0.298346 0.373078 0.296921 0.377634 0.298623 0.377689 0.294642 0.377879 0.296559 0.373341 0.295068 0.372722 0.293281 0.377019 0.292797 0.373341 0.295068 0.371755 0.291887 0.376073 0.290539 0.372722 0.293281 0.477311 0.03567695 0.47988 0.03810399 0.476418 0.03722995 0.476418 0.03722995 0.474086 0.03572696 0.477311 0.03567695 0.476418 0.03722995 0.479114 0.03976595 0.475188 0.03946697 0.384613 0.293842 0.388103 0.293381 0.384881 0.295984 0.383648 0.291848 0.386895 0.291262 0.384613 0.293842 0.475188 0.03946697 0.472767 0.03773796 0.476418 0.03722995 0.441216 0.02386695 0.444289 0.02403396 0.441319 0.02632898 0.441319 0.02632898 0.438104 0.02628898 0.441216 0.02386695 0.441319 0.02632898 0.444556 0.02651196 0.441442 0.02907997 0.381276 0.262914 0.380277 0.265614 0.376522 0.261482 0.37669 0.258631 0.381444 0.259859 0.376522 0.261482 0.441442 0.02907997 0.43802 0.028943 0.441319 0.02632898 0.400573 0.03084498 0.39871 0.02840298 0.404457 0.02737498 0.400573 0.03084498 0.396031 0.03387695 0.39871 0.02840298 0.39874 0.222262 0.402276 0.2212139 0.401095 0.22765 0.402276 0.2212139 0.405792 0.219552 0.40489 0.226613 0.402614 0.033436 0.397804 0.03652399 0.400573 0.03084498 0.402614 0.033436 0.400573 0.03084498 0.406579 0.02973699 0.379278 0.06571495 0.381429 0.06591796 0.379027 0.06943297 0.379027 0.06943297 0.381189 0.06978899 0.378478 0.07251596 0.451168 0.231477 0.447958 0.229356 0.453719 0.226638 0.453719 0.226638 0.45648 0.228219 0.451168 0.231477 0.381189 0.06978899 0.38377 0.07024997 0.380649 0.073013 0.38377 0.07024997 0.381189 0.06978899 0.383986 0.06615 0.481357 0.02825999 0.483397 0.03024297 0.480704 0.02941495 0.481357 0.02825999 0.480704 0.02941495 0.479368 0.02743399 0.480704 0.02941495 0.482844 0.03151297 0.480158 0.03042 0.377689 0.294642 0.379802 0.294379 0.377879 0.296559 0.377019 0.292797 0.379053 0.292448 0.377689 0.294642 0.480704 0.02941495 0.480158 0.03042 0.478643 0.02851599 0.440622 0.01277697 0.44071 0.01440995 0.438102 0.01293694 0.440622 0.01277697 0.443095 0.01286697 0.44071 0.01440995 0.369117 0.259181 0.36789 0.261462 0.366203 0.258265 0.366221 0.255531 0.369188 0.256365 0.366203 0.258265 0.44071 0.01440995 0.440796 0.01581197 0.438083 0.014557 0.44071 0.01440995 0.443293 0.01451694 0.440796 0.01581197 0.389414 0.01631999 0.392801 0.01405894 0.390828 0.01816898 0.389414 0.01631999 0.390828 0.01816898 0.385903 0.019131 0.39311 0.209453 0.396121 0.208514 0.394609 0.213169 0.396121 0.208514 0.39928 0.207043 0.397867 0.212099 0.390828 0.01816898 0.392061 0.01976197 0.387204 0.02103596 0.390828 0.01816898 0.394294 0.01578396 0.392061 0.01976197 0.370506 0.06788796 0.369921 0.07050198 0.368956 0.06761997 0.370506 0.06788796 0.368956 0.06761997 0.370743 0.06473296 0.457548 0.2192029 0.454865 0.217369 0.45917 0.216123 0.461611 0.2172729 0.460126 0.220472 0.45917 0.216123 0.371842 0.06813299 0.37127 0.07081997 0.370506 0.06788796 0.370743 0.06473296 0.372092 0.06488698 0.370506 0.06788796 0.394438 0.106721 0.402094 0.109488 0.392746 0.110835 0.475226 0.280161 0.467754 0.28517 0.472616 0.276174 0.471907 0.290553 0.467754 0.28517 0.478744 0.284369 0.476542 0.294342 0.471907 0.290553 0.481933 0.287611 0.48009 0.297234 0.476542 0.294342 0.484967 0.290291 0.392746 0.110835 0.399612 0.115139 0.390193 0.114514 0.488701 0.269372 0.490206 0.272736 0.484682 0.272369 0.492874 0.273427 0.490241 0.277907 0.490206 0.272736 0.386032 0.111781 0.381633 0.10678 0.387876 0.107829 0.480192 0.134167 0.474191 0.122141 0.487609 0.129102 0.482803 0.109934 0.481981 0.118467 0.473548 0.112048 0.482404 0.1017889 0.482803 0.109934 0.476245 0.103719 0.481676 0.09454399 0.482404 0.1017889 0.475171 0.09567499 0.47426 0.08825498 0.480536 0.08825296 0.475171 0.09567499 0.473237 0.08082395 0.479091 0.08017098 0.47426 0.08825498 0.472346 0.074579 0.478261 0.07484996 0.473237 0.08082395 0.4718 0.06770199 0.477693 0.06848996 0.472346 0.074579 0.471944 0.06025999 0.477186 0.06082999 0.4718 0.06770199 0.472889 0.05484497 0.477713 0.05598896 0.471944 0.06025999 0.47807 0.04208099 0.481262 0.04345095 0.472889 0.05484497 0.479114 0.03976595 0.482108 0.04107797 0.47807 0.04208099 0.47988 0.03810399 0.482649 0.03934794 0.479114 0.03976595 0.482366 0.03260296 0.484531 0.03374898 0.47988 0.03810399 0.482844 0.03151297 0.484898 0.03259998 0.482366 0.03260296 0.483397 0.03024297 0.485285 0.03120899 0.482844 0.03151297 0.485103 0.024827 0.486427 0.02580195 0.483397 0.03024297 0.485318 0.02298098 0.486151 0.02314096 0.485103 0.024827 0.484926 0.02211499 0.48539 0.02188599 0.485318 0.02298098 0.484549 0.021981 0.484721 0.02148896 0.484926 0.02211499 0.48392 0.02127099 0.484721 0.02148896 0.484138 0.02191299 0.484138 0.02191299 0.483179 0.02229297 0.48392 0.02127099 0.483179 0.02229297 0.481926 0.02348899 0.482411 0.02144396 0.481926 0.02348899 0.479368 0.02743399 0.48052 0.02275699 0.479368 0.02743399 0.478643 0.02851599 0.477381 0.02617895 0.475708 0.027969 0.476475 0.02711498 0.478043 0.02945095 0.472205 0.03221094 0.475708 0.027969 0.475027 0.03428798 0.474086 0.03572696 0.471105 0.03344595 0.475027 0.03428798 0.472767 0.03773796 0.469631 0.03525197 0.474086 0.03572696 0.464954 0.04907494 0.462333 0.043446 0.472767 0.03773796 0.459122 0.05522596 0.459755 0.04388195 0.464954 0.04907494 0.459122 0.05522596 0.454036 0.05245399 0.459755 0.04388195 0.454543 0.03885197 0.45763 0.04244798 0.448351 0.04447698 0.449604 0.02826797 0.454543 0.03885197 0.444872 0.02925896 0.448991 0.02566599 0.449604 0.02826797 0.444556 0.02651196 0.444556 0.02651196 0.444289 0.02403396 0.448991 0.02566599 0.443456 0.01594299 0.446808 0.01554298 0.444289 0.02403396 0.443293 0.01451694 0.446443 0.01413196 0.443456 0.01594299 0.443095 0.01286697 0.446008 0.01253497 0.443293 0.01451694 0.44217 0.006167948 0.444277 0.006348967 0.443095 0.01286697 0.441439 0.004094958 0.442805 0.003811955 0.44217 0.006167948 0.440366 0.002622961 0.440784 0.002125978 0.441439 0.004094958 0.440784 0.002125978 0.440366 0.002622961 0.439958 0.001884996 0.439156 0.002267956 0.439958 0.001884996 0.439671 0.002707958 0.439671 0.002707958 0.438722 0.00415796 0.439156 0.002267956 0.438722 0.00415796 0.438171 0.00664699 0.437528 0.004000961 0.438171 0.00664699 0.438102 0.01293694 0.436073 0.007027983 0.434911 0.01452398 0.435157 0.012932 0.438083 0.014557 0.438083 0.014557 0.438091 0.01595497 0.434911 0.01452398 0.438091 0.01595497 0.438147 0.023889 0.434718 0.01592195 0.433991 0.02357 0.438147 0.023889 0.433719 0.025837 0.43802 0.028943 0.433423 0.02830499 0.438104 0.02628898 0.436567 0.04484897 0.430429 0.03764498 0.43802 0.028943 0.433072 0.05186897 0.428645 0.03947597 0.436567 0.04484897 0.426219 0.03985095 0.428645 0.03947597 0.427789 0.04888498 0.423211 0.03897196 0.426219 0.03985095 0.421453 0.04563897 0.421453 0.04563897 0.406579 0.02973699 0.423211 0.03897196 0.404457 0.02737498 0.407448 0.02514398 0.406579 0.02973699 0.402486 0.02516198 0.405524 0.02307397 0.404457 0.02737498 0.395581 0.01725995 0.398562 0.015661 0.402486 0.02516198 0.394294 0.01578396 0.397239 0.01425099 0.395581 0.01725995 0.392801 0.01405894 0.395696 0.01263594 0.394294 0.01578396 0.3864 0.007463991 0.388094 0.006185948 0.392801 0.01405894 0.383057 0.004802942 0.383689 0.004185974 0.3864 0.007463991 0.381701 0.005083978 0.38167 0.004242956 0.383057 0.004802942 0.38167 0.004242956 0.381701 0.005083978 0.380571 0.004686951 0.381218 0.005501985 0.380606 0.005871951 0.380571 0.004686951 0.380606 0.005871951 0.380056 0.007230997 0.379787 0.005584955 0.380056 0.007230997 0.381622 0.01157099 0.379101 0.00801897 0.381622 0.01157099 0.385903 0.019131 0.379657 0.013134 0.38476 0.02354997 0.383614 0.02158898 0.387204 0.02103596 0.387204 0.02103596 0.388335 0.02266597 0.38476 0.02354997 0.388335 0.02266597 0.394358 0.031403 0.385787 0.02523398 0.39261 0.03645098 0.391105 0.03402799 0.396031 0.03387695 0.396031 0.03387695 0.397804 0.03652399 0.39261 0.03645098 0.394091 0.03903698 0.397804 0.03652399 0.402214 0.05425596 0.412415 0.06073498 0.402415 0.05712699 0.410773 0.05430096 0.402415 0.05712699 0.412415 0.06073498 0.4016 0.05947899 0.399334 0.06105095 0.4016 0.05947899 0.403805 0.06769096 0.403805 0.06769096 0.383986 0.06615 0.399334 0.06105095 0.381242 0.06150597 0.383706 0.06150096 0.381429 0.06591796 0.381429 0.06591796 0.379278 0.06571495 0.381242 0.06150597 0.372228 0.06140297 0.379175 0.06152695 0.372092 0.06488698 0.370871 0.06139898 0.372228 0.06140297 0.370743 0.06473296 0.370743 0.06473296 0.36918 0.06458097 0.370871 0.06139898 0.36225 0.06399899 0.362664 0.06139796 0.36918 0.06458097 0.35953 0.06411397 0.359308 0.06297099 0.36225 0.06399899 0.358284 0.06503295 0.357999 0.06444799 0.35953 0.06411397 0.357999 0.06444799 0.358284 0.06503295 0.357571 0.06529295 0.357675 0.06638199 0.357571 0.06529295 0.358123 0.06588697 0.358123 0.06588697 0.358855 0.067227 0.357675 0.06638199 0.358855 0.067227 0.361496 0.06825399 0.35852 0.068349 0.361496 0.06825399 0.368375 0.07014197 0.360771 0.07083499 0.368995 0.07382798 0.367474 0.07330995 0.369921 0.07050198 0.368995 0.07382798 0.369921 0.07050198 0.370312 0.07428395 0.370312 0.07428395 0.37127 0.07081997 0.377135 0.07649499 0.380649 0.073013 0.379157 0.07722395 0.378478 0.07251596 0.379157 0.07722395 0.380649 0.073013 0.38159 0.07805401 0.38159 0.07805401 0.383199 0.07365697 0.397243 0.08388298 0.404956 0.08161598 0.400002 0.08596795 0.401552 0.07889997 0.409811 0.08515197 0.405009 0.09074199 0.404956 0.08161598 0.409811 0.08515197 0.412756 0.088499 0.405009 0.09074199 0.412756 0.088499 0.416408 0.09368598 0.407177 0.09315198 0.418299 0.09853297 0.410194 0.100325 0.416408 0.09368598 0.407203 0.105486 0.410194 0.100325 0.410417 0.110959 0.401954 0.1057479 0.407203 0.105486 0.402094 0.109488 0.395247 0.104067 0.401954 0.1057479 0.394438 0.106721 0.392169 0.105709 0.39324 0.103372 0.394438 0.106721 0.391018 0.102329 0.39324 0.103372 0.390157 0.104604 0.383545 0.101034 0.385263 0.09989595 0.390157 0.104604 0.379956 0.100535 0.380243 0.09951496 0.383545 0.101034 0.379209 0.101036 0.378957 0.100137 0.379956 0.100535 0.378398 0.101861 0.37772 0.101517 0.379209 0.101036 0.377293 0.103004 0.37772 0.101517 0.378 0.10277 0.377193 0.104338 0.377293 0.103004 0.377757 0.103703 0.377757 0.103703 0.380009 0.106984 0.377193 0.104338 0.380009 0.106984 0.386032 0.111781 0.379472 0.1089619 0.388082 0.113131 0.386522 0.1151 0.386032 0.111781 0.390193 0.114514 0.38843 0.116461 0.388082 0.113131 0.396841 0.119834 0.393956 0.121379 0.390193 0.114514 0.402146 0.123169 0.398302 0.127308 0.396841 0.119834 0.414545 0.132217 0.408742 0.134485 0.402146 0.123169 0.419829 0.134626 0.418744 0.138635 0.414545 0.132217 0.429299 0.135172 0.428658 0.140121 0.419829 0.134626 0.443339 0.135773 0.435172 0.140163 0.429299 0.135172 0.451887 0.147473 0.446187 0.150113 0.443339 0.135773 0.487609 0.129102 0.51973 0.169718 0.480192 0.134167 0.438578 0.353754 0.436703 0.397594 0.43211 0.352533 0.448183 0.39916 0.436703 0.397594 0.447442 0.35471 0.462255 0.398279 0.448183 0.39916 0.454164 0.355167 0.479434 0.189914 0.470912 0.192254 0.451887 0.147473 0.489262 0.1868489 0.479434 0.189914 0.46247 0.142328 0.500225 0.183162 0.489262 0.1868489 0.472111 0.138204 0.480192 0.134167 0.513347 0.175074 0.472111 0.138204 0.43211 0.352533 0.42512 0.397316 0.425615 0.351202 0.454164 0.355167 0.460534 0.356666 0.462255 0.398279 0.363402 0.06494897 0.36918 0.06458097 0.363426 0.06644797 0.36225 0.06399899 0.363402 0.06494897 0.362127 0.06463396 0.359623 0.06447798 0.35953 0.06411397 0.362127 0.06463396 0.363426 0.06644797 0.362863 0.06775701 0.362962 0.06637495 0.363402 0.06494897 0.363426 0.06644797 0.362897 0.06514799 0.362863 0.06775701 0.361496 0.06825399 0.362425 0.06743395 0.361496 0.06825399 0.358855 0.067227 0.361537 0.06760197 0.810616 0.327287 0.811365 0.3209 0.811474 0.32699 0.804485 0.316766 0.802421 0.31299 0.805028 0.311985 0.804449 0.320671 0.802421 0.321167 0.804485 0.316766 0.808071 0.311537 0.80821 0.310089 0.810815 0.312534 0.804207 0.310525 0.80821 0.310089 0.805028 0.311985 0.811967 0.311018 0.813476 0.313359 0.810815 0.312534 0.813476 0.313359 0.813264 0.321639 0.811337 0.316477 0.802421 0.321167 0.804449 0.320671 0.804244 0.326986 0.807743 0.330696 0.807761 0.326933 0.809963 0.329726 0.805102 0.327228 0.807761 0.326933 0.805648 0.329692 0.390157 0.104604 0.387876 0.107829 0.384029 0.102625 0.868063 0.323171 0.873285 0.309913 0.874366 0.323122 0.382146 0.104267 0.383177 0.104989 0.381018 0.105497 0.383545 0.101034 0.384029 0.102625 0.382576 0.101631 0.379814 0.100987 0.379956 0.100535 0.382576 0.101631 0.384029 0.102625 0.383177 0.104989 0.382745 0.10274 0.381633 0.10678 0.380009 0.106984 0.381018 0.105497 0.380009 0.106984 0.377757 0.103703 0.379914 0.105812 0.868767 0.309311 0.868946 0.306844 0.873285 0.309913 0.861041 0.31237 0.859104 0.310065 0.864019 0.310016 0.861051 0.322602 0.859104 0.322681 0.861041 0.31237 0.862944 0.307653 0.868946 0.306844 0.864019 0.310016 0.873285 0.309913 0.875067 0.307845 0.875945 0.312375 0.878605 0.310804 0.876821 0.32331 0.875945 0.312375 0.862491 0.327899 0.859615 0.327048 0.861051 0.322602 0.861051 0.322602 0.868063 0.323171 0.862491 0.327899 0.867883 0.328386 0.868063 0.323171 0.872742 0.328253 0.876821 0.32331 0.87546 0.32795 0.874366 0.323122 0.383451 0.01156598 0.381622 0.01157099 0.382942 0.01011699 0.381622 0.01157099 0.380056 0.007230997 0.381703 0.00980699 0.38517 0.008251965 0.386138 0.008875966 0.3842 0.009432971 0.382836 0.00524795 0.383057 0.004802942 0.385063 0.007047951 0.848199 0.310861 0.850332 0.313362 0.847476 0.312617 0.850332 0.313362 0.849188 0.32147 0.848903 0.314889 0.841481 0.312504 0.84103 0.310799 0.844586 0.31221 0.840238 0.320629 0.838899 0.320713 0.84025 0.315065 0.847818 0.320891 0.849188 0.32147 0.846641 0.325217 0.839951 0.325556 0.838899 0.320713 0.840897 0.325063 0.843401 0.328408 0.843767 0.32509 0.845832 0.327444 0.840897 0.325063 0.843767 0.32509 0.841433 0.327344 0.840238 0.320629 0.84025 0.315065 0.844051 0.320629 0.84025 0.315065 0.838899 0.312979 0.841481 0.312504 0.385063 0.007047951 0.3864 0.007463991 0.38517 0.008251965 0.844586 0.31221 0.844717 0.310333 0.847476 0.312617 0.3842 0.009432971 0.385033 0.01063996 0.382942 0.01011699 0.385033 0.01063996 0.389414 0.01631999 0.383451 0.01156598 0.441592 0.005676984 0.44217 0.006167948 0.441139 0.006559967 0.441179 0.004145979 0.441439 0.004094958 0.441592 0.005676984 0.439375 0.006722986 0.438996 0.007281959 0.438811 0.00604999 0.438171 0.00664699 0.438722 0.00415796 0.438811 0.00604999 0.786676 0.313244 0.788729 0.311224 0.788198 0.314263 0.788316 0.318544 0.786676 0.318138 0.788198 0.314263 0.794754 0.311484 0.79668 0.313392 0.794322 0.312986 0.79668 0.313392 0.796578 0.318752 0.795581 0.314204 0.789176 0.324873 0.787397 0.324626 0.788316 0.318544 0.788316 0.318544 0.791902 0.318849 0.789176 0.324873 0.795585 0.318833 0.794471 0.325322 0.791902 0.318849 0.796578 0.318752 0.795546 0.325055 0.795585 0.318833 0.440286 0.007456958 0.441573 0.007194995 0.440622 0.01277697 0.440234 0.007003962 0.441139 0.006559967 0.440286 0.007456958 0.792032 0.312311 0.789702 0.312751 0.791923 0.310665 0.791923 0.310665 0.794754 0.311484 0.792032 0.312311 0.440234 0.007003962 0.440286 0.007456958 0.439375 0.006722986 0.440286 0.007456958 0.440622 0.01277697 0.438996 0.007281959 0.484224 0.025303 0.482988 0.02503997 0.484109 0.02458596 0.485106 0.02296698 0.485318 0.02298098 0.484744 0.02426999 0.482988 0.02503997 0.482257 0.02436697 0.48329 0.02445095 0.481926 0.02348899 0.483179 0.02229297 0.482491 0.02338695 0.822635 0.312323 0.825454 0.312022 0.823271 0.313542 0.821823 0.319332 0.820536 0.319148 0.821651 0.315175 0.825454 0.312022 0.827936 0.312742 0.825487 0.313372 0.829898 0.313974 0.829898 0.319189 0.829066 0.314991 0.822883 0.324124 0.821413 0.323743 0.821823 0.319332 0.821823 0.319332 0.825446 0.319557 0.822883 0.324124 0.829027 0.319132 0.827993 0.323958 0.825446 0.319557 0.829898 0.319189 0.829207 0.32394 0.829027 0.319132 0.482491 0.02338695 0.482765 0.02394497 0.481926 0.02348899 0.827388 0.313869 0.827936 0.312742 0.829066 0.314991 0.829066 0.314991 0.829027 0.319132 0.827388 0.313869 0.821823 0.319332 0.821651 0.315175 0.825446 0.319557 0.821651 0.315175 0.820757 0.314181 0.823271 0.313542 0.484744 0.02426999 0.485103 0.024827 0.484109 0.02458596 1.608614 0.09161698 1.610153 0.07234197 1.593322 0.08994895 1.618478 0.09295296 1.621885 0.074431 1.608614 0.09161698 1.572224 0.08003199 1.571247 0.06771296 1.563296 0.07786297 1.554832 0.08167296 1.563296 0.07786297 1.552848 0.06900399 1.543019 0.09412896 1.554832 0.08167296 1.536773 0.08129698 1.634027 0.09663599 1.642792 0.09834295 1.639054 0.07941895 1.62555 0.09459197 1.634027 0.09663599 1.631742 0.07753598 1.618478 0.09295296 1.62555 0.09459197 1.621885 0.074431 1.593322 0.08994895 1.594872 0.06868797 1.572224 0.08003199 1.593546 0.115422 1.593322 0.08994895 1.574287 0.113219 1.606234 0.116636 1.608614 0.09161698 1.593546 0.115422 1.615694 0.11728 1.618478 0.09295296 1.606234 0.116636 1.623484 0.118066 1.62555 0.09459197 1.615694 0.11728 1.623484 0.118066 1.632005 0.118215 1.62555 0.09459197 1.632005 0.118215 1.641298 0.117852 1.634027 0.09663599 1.543423 0.113637 1.555787 0.112583 1.543019 0.09412896 1.555787 0.112583 1.565241 0.112589 1.554832 0.08167296 1.574287 0.113219 1.572224 0.08003199 1.565241 0.112589 1.594872 0.06868797 1.594582 0.05801397 1.571247 0.06771296 1.594872 0.06868797 1.610153 0.07234197 1.594582 0.05801397 1.610153 0.07234197 1.621885 0.074431 1.614234 0.06129598 1.631742 0.07753598 1.632916 0.06511896 1.621885 0.074431 1.639054 0.07941895 1.642967 0.06755095 1.631742 0.07753598 1.647603 0.08398598 1.650696 0.07069295 1.639054 0.07941895 1.536773 0.08129698 1.552848 0.06900399 1.531025 0.07022899 1.624135 0.06292295 1.632916 0.06511896 1.628603 0.04301899 1.642967 0.06755095 1.648658 0.04831099 1.632916 0.06511896 1.650696 0.07069295 1.659723 0.053119 1.642967 0.06755095 1.531025 0.07022899 1.534214 0.05406898 1.519457 0.05608499 1.594582 0.05801397 1.603669 0.03973299 1.582899 0.04492396 1.594582 0.05801397 1.614234 0.06129598 1.603669 0.03973299 1.624135 0.06292295 1.628603 0.04301899 1.614234 0.06129598 1.571247 0.06771296 1.568706 0.03635895 1.561454 0.06742495 1.571247 0.06771296 1.582899 0.04492396 1.568706 0.03635895 1.552848 0.06900399 1.561454 0.06742495 1.546662 0.04025095 1.552848 0.06900399 1.546662 0.04025095 1.534214 0.05406898 1.534214 0.05406898 1.535 0.03596097 1.523809 0.04420399 1.582899 0.04492396 1.591884 0.03568899 1.576436 0.02856898 1.573052 0.146283 1.574287 0.113219 1.562768 0.144466 1.591267 0.149569 1.593546 0.115422 1.573052 0.146283 1.604101 0.150835 1.606234 0.116636 1.591267 0.149569 1.614986 0.151283 1.615694 0.11728 1.604101 0.150835 1.614986 0.151283 1.624859 0.150499 1.615694 0.11728 1.624859 0.150499 1.63385 0.148588 1.623484 0.118066 1.63385 0.148588 1.644634 0.145292 1.632005 0.118215 1.53833 0.141272 1.552181 0.142621 1.543423 0.113637 1.562768 0.144466 1.565241 0.112589 1.552181 0.142621 1.86574 0.564757 1.870687 0.534937 1.850091 0.560307 1.887493 0.573022 1.897989 0.544989 1.86574 0.564757 1.904814 0.580696 1.920611 0.551684 1.887493 0.573022 1.808386 0.567033 1.823255 0.561034 1.796423 0.531383 1.823255 0.561034 1.836264 0.558838 1.814111 0.525983 1.968834 0.467602 1.993076 0.451154 1.96689 0.458848 1.93806 0.523887 1.932425 0.539962 1.945242 0.526463 1.791561 0.49594 1.778925 0.486396 1.780079 0.502366 1.874305 0.519338 1.876387 0.502519 1.85154 0.512231 1.808175 0.506546 1.826833 0.507637 1.807044 0.493589 1.778925 0.486396 1.791561 0.49594 1.78426 0.482431 1.969727 0.448477 1.989086 0.438058 1.963326 0.431995 1.880221 0.463711 1.879138 0.443402 1.852847 0.461461 1.941493 0.477983 1.952972 0.472901 1.942595 0.454924 1.895584 0.464683 1.893536 0.443835 1.880221 0.463711 1.826672 0.457899 1.826708 0.43982 1.802055 0.456804 1.802055 0.456804 1.801387 0.438595 1.76593 0.469756 1.746114 0.449824 1.76156 0.41681 1.720491 0.436946 1.928374 0.473063 1.925979 0.452332 1.910224 0.467393 1.731559 0.453247 1.714894 0.441021 1.717574 0.457671 1.746114 0.449824 1.720491 0.436946 1.731559 0.453247 1.880277 0.426039 1.880211 0.399516 1.853599 0.423031 1.880211 0.399516 1.880277 0.426039 1.89445 0.415942 1.827591 0.419952 1.828723 0.394133 1.80203 0.418305 1.80203 0.418305 1.803727 0.392221 1.76156 0.41681 1.731259 0.412387 1.76156 0.41681 1.739319 0.382876 1.963326 0.431995 1.982866 0.414833 1.952686 0.395083 1.948138 0.432091 1.943244 0.407294 1.937522 0.431114 1.921919 0.430127 1.937522 0.431114 1.918608 0.417238 1.735582 0.465666 1.731559 0.453247 1.722264 0.467489 1.930765 0.554429 1.920611 0.551684 1.912993 0.582266 1.796423 0.531383 1.780689 0.537268 1.808386 0.567033 1.780079 0.502366 1.768281 0.489708 1.766353 0.509045 1.904425 0.5121 1.900888 0.530334 1.918923 0.517187 1.887159 0.52476 1.890263 0.507293 1.874305 0.519338 1.796423 0.531383 1.788259 0.514987 1.780689 0.537268 1.808175 0.506546 1.788259 0.514987 1.814111 0.525983 1.808175 0.506546 1.814111 0.525983 1.826833 0.507637 1.85154 0.512231 1.851155 0.528213 1.874305 0.519338 1.888994 0.534743 1.887159 0.52476 1.870687 0.534937 1.899132 0.539503 1.897989 0.544989 1.908918 0.541403 1.932425 0.539962 1.925643 0.537486 1.927551 0.547045 1.746114 0.449824 1.801387 0.438595 1.76156 0.41681 1.826708 0.43982 1.827591 0.419952 1.801387 0.438595 1.879138 0.443402 1.880277 0.426039 1.853055 0.442722 1.893536 0.443835 1.894664 0.427635 1.879138 0.443402 1.925979 0.452332 1.921919 0.430127 1.910301 0.446963 1.954944 0.453298 1.948138 0.432091 1.942595 0.454924 1.989976 0.443832 1.989086 0.438058 1.96689 0.458848 1.749259 0.484061 1.757423 0.479737 1.737352 0.475705 1.757423 0.479737 1.761949 0.473949 1.735582 0.465666 1.76593 0.469756 1.746114 0.449824 1.761949 0.473949 1.807044 0.493589 1.804635 0.478916 1.794648 0.490567 1.82661 0.494071 1.826334 0.478837 1.807044 0.493589 1.876387 0.502519 1.880363 0.485561 1.852783 0.497069 1.890263 0.507293 1.893741 0.487782 1.876387 0.502519 1.918923 0.517187 1.924177 0.494773 1.904425 0.5121 1.945242 0.526463 1.957135 0.502134 1.93806 0.523887 1.808175 0.506546 1.807044 0.493589 1.791561 0.49594 1.808175 0.506546 1.791561 0.49594 1.788259 0.514987 1.788259 0.514987 1.780079 0.502366 1.77304 0.521315 1.749259 0.484061 1.737352 0.475705 1.733616 0.492007 1.737352 0.475705 1.735582 0.465666 1.727583 0.479738 1.775649 0.582266 1.795075 0.573292 1.758449 0.547644 1.77304 0.521315 1.751414 0.531429 1.780689 0.537268 1.77304 0.521315 1.766353 0.509045 1.751414 0.531429 1.766353 0.509045 1.757469 0.495326 1.745762 0.518344 1.850091 0.560307 1.851155 0.528213 1.836264 0.558838 1.826833 0.507637 1.828726 0.524758 1.85154 0.512231 1.85154 0.512231 1.852783 0.497069 1.826833 0.507637 1.852783 0.497069 1.853605 0.481567 1.82661 0.494071 1.852847 0.461461 1.853055 0.442722 1.826672 0.457899 1.853055 0.442722 1.853599 0.423031 1.826708 0.43982 1.853599 0.423031 1.853686 0.397325 1.827591 0.419952 1.880211 0.399516 1.879735 0.372969 1.853686 0.397325 1.906853 0.400313 1.903753 0.371745 1.880211 0.399516 1.828723 0.394133 1.830094 0.368472 1.803727 0.392221 1.76904 0.388148 1.803727 0.392221 1.77854 0.358057 1.739319 0.382876 1.76904 0.388148 1.750842 0.352771 1.952686 0.395083 1.975782 0.386185 1.943147 0.364395 1.933093 0.399292 1.952686 0.395083 1.925892 0.368777 1.933093 0.399292 1.925892 0.368777 1.906853 0.400313 1.853686 0.397325 1.854039 0.37178 1.828723 0.394133 1.539849 0.326762 1.550707 0.32641 1.541749 0.309927 1.530776 0.325288 1.539849 0.326762 1.534089 0.309834 1.521114 0.338934 1.52261 0.311198 1.501817 0.333421 1.668116 0.342013 1.668887 0.315689 1.650778 0.341517 1.559137 0.342935 1.584061 0.341163 1.562904 0.311755 1.564744 0.292984 1.564017 0.26909 1.544358 0.292997 1.564744 0.292984 1.583859 0.285012 1.564017 0.26909 1.583859 0.285012 1.603708 0.282565 1.585774 0.267497 1.603708 0.282565 1.619011 0.282097 1.603983 0.264355 1.619011 0.282097 1.634395 0.281854 1.61984 0.263968 1.649785 0.285685 1.649204 0.259335 1.634395 0.281854 1.66812 0.292274 1.6689 0.262217 1.649785 0.285685 1.527968 0.2916 1.53042 0.263171 1.511195 0.284426 1.544358 0.292997 1.546537 0.267989 1.527968 0.2916 1.567137 0.2490659 1.568145 0.231571 1.549273 0.244607 1.567137 0.2490659 1.586946 0.24838 1.568145 0.231571 1.586946 0.24838 1.602605 0.24755 1.587498 0.232984 1.618627 0.2482129 1.617888 0.233484 1.602605 0.24755 1.618627 0.2482129 1.634031 0.2443619 1.617888 0.233484 1.634031 0.2443619 1.647106 0.237727 1.633597 0.2299309 1.647106 0.237727 1.666176 0.235374 1.644949 0.2235569 1.53326 0.238361 1.535587 0.221269 1.51194 0.231178 1.549273 0.244607 1.551353 0.226317 1.53326 0.238361 1.568693 0.213622 1.569957 0.191978 1.553684 0.208237 1.588012 0.217186 1.58867 0.196317 1.568693 0.213622 1.603673 0.21836 1.604202 0.1976799 1.588012 0.217186 1.617147 0.218764 1.616625 0.197842 1.603673 0.21836 1.617147 0.218764 1.632858 0.215425 1.616625 0.197842 1.632858 0.215425 1.642546 0.209506 1.630409 0.194855 1.642546 0.209506 1.659605 0.20448 1.639839 0.190008 1.51763 0.200817 1.538331 0.20416 1.524592 0.180648 1.553684 0.208237 1.556681 0.187726 1.538331 0.20416 1.572098 0.1691769 1.573052 0.146283 1.55996 0.166549 1.590518 0.172888 1.591267 0.149569 1.572098 0.1691769 1.603984 0.174308 1.604101 0.150835 1.590518 0.172888 1.615953 0.174524 1.614986 0.151283 1.603984 0.174308 1.615953 0.174524 1.62732 0.172697 1.614986 0.151283 1.62732 0.172697 1.63633 0.169673 1.624859 0.150499 1.63633 0.169673 1.648649 0.164249 1.63385 0.148588 1.531631 0.160286 1.547628 0.163383 1.53833 0.141272 1.55996 0.166549 1.562768 0.144466 1.547628 0.163383 1.581562 0.389455 1.581806 0.385858 1.558237 0.38821 1.581562 0.389455 1.602196 0.389143 1.581806 0.385858 1.602196 0.389143 1.622025 0.388351 1.602192 0.385487 1.638747 0.387681 1.638403 0.384066 1.622025 0.388351 1.651881 0.386809 1.651663 0.383462 1.638747 0.387681 1.651881 0.386809 1.671349 0.385502 1.651663 0.383462 1.489616 0.381756 1.514144 0.383119 1.49016 0.377777 1.5366 0.385064 1.536786 0.381226 1.514144 0.383119 1.558237 0.38821 1.558252 0.384522 1.5366 0.385064 1.541749 0.309927 1.550008 0.309685 1.542796 0.301108 1.562904 0.311755 1.583928 0.310032 1.564744 0.292984 1.599638 0.339353 1.619616 0.33825 1.603708 0.282565 1.636449 0.338899 1.634395 0.281854 1.619616 0.33825 1.668887 0.315689 1.66812 0.292274 1.649278 0.309954 1.52261 0.311198 1.527968 0.2916 1.505571 0.307328 1.534089 0.309834 1.541749 0.309927 1.534534 0.30252 1.559137 0.342935 1.550707 0.32641 1.538601 0.341952 1.559137 0.342935 1.562904 0.311755 1.550707 0.32641 1.521114 0.338934 1.538601 0.341952 1.530776 0.325288 1.521114 0.338934 1.530776 0.325288 1.52261 0.311198 1.564744 0.292984 1.544358 0.292997 1.551245 0.302396 1.564744 0.292984 1.551245 0.302396 1.562904 0.311755 1.527968 0.2916 1.52261 0.311198 1.534534 0.30252 1.527968 0.2916 1.534534 0.30252 1.544358 0.292997 1.568145 0.231571 1.568693 0.213622 1.551353 0.226317 1.587498 0.232984 1.588012 0.217186 1.568145 0.231571 1.603324 0.232976 1.603673 0.21836 1.587498 0.232984 1.617888 0.233484 1.617147 0.218764 1.603324 0.232976 1.617888 0.233484 1.633597 0.2299309 1.617147 0.218764 1.633597 0.2299309 1.644949 0.2235569 1.632858 0.215425 1.644949 0.2235569 1.663215 0.219756 1.642546 0.209506 1.535587 0.221269 1.538331 0.20416 1.514199 0.215944 1.551353 0.226317 1.553684 0.208237 1.535587 0.221269 1.569957 0.191978 1.572098 0.1691769 1.556681 0.187726 1.58867 0.196317 1.590518 0.172888 1.569957 0.191978 1.604202 0.1976799 1.603984 0.174308 1.58867 0.196317 1.616625 0.197842 1.615953 0.174524 1.604202 0.1976799 1.616625 0.197842 1.630409 0.194855 1.615953 0.174524 1.630409 0.194855 1.639839 0.190008 1.62732 0.172697 1.639839 0.190008 1.654426 0.184116 1.63633 0.169673 1.524592 0.180648 1.54289 0.183971 1.531631 0.160286 1.556681 0.187726 1.55996 0.166549 1.54289 0.183971 1.564017 0.26909 1.567137 0.2490659 1.546537 0.267989 1.564017 0.26909 1.585774 0.267497 1.567137 0.2490659 1.585774 0.267497 1.603983 0.264355 1.586946 0.24838 1.61984 0.263968 1.618627 0.2482129 1.603983 0.264355 1.61984 0.263968 1.634287 0.260642 1.618627 0.2482129 1.634287 0.260642 1.649204 0.259335 1.634031 0.2443619 1.6689 0.262217 1.666176 0.235374 1.649204 0.259335 1.53042 0.263171 1.53326 0.238361 1.511671 0.256738 1.546537 0.267989 1.549273 0.244607 1.53042 0.263171 1.557902 0.366437 1.582826 0.368029 1.559137 0.342935 1.582826 0.368029 1.601832 0.367172 1.584061 0.341163 1.621565 0.366259 1.619616 0.33825 1.601832 0.367172 1.636838 0.365973 1.636449 0.338899 1.621565 0.366259 1.650723 0.366607 1.650778 0.341517 1.636838 0.365973 1.669592 0.365737 1.668116 0.342013 1.650723 0.366607 1.494552 0.35886 1.517097 0.360997 1.501817 0.333421 1.537565 0.363657 1.538601 0.341952 1.517097 0.360997 1.557902 0.366437 1.559137 0.342935 1.537565 0.363657 1.903753 0.371745 1.902161 0.359183 1.879735 0.372969 1.925892 0.368777 1.92253 0.355917 1.903753 0.371745 1.943147 0.364395 1.937825 0.351728 1.925892 0.368777 1.966341 0.355777 1.961572 0.342319 1.943147 0.364395 1.750842 0.352771 1.77854 0.358057 1.755589 0.339858 1.78221 0.34579 1.77854 0.358057 1.807632 0.351025 1.830094 0.368472 1.830712 0.356691 1.806279 0.362863 1.854039 0.37178 1.854889 0.360207 1.830094 0.368472 1.879735 0.372969 1.879108 0.361109 1.854039 0.37178 1.757469 0.495326 1.749259 0.484061 1.739377 0.503775 1.768281 0.489708 1.757423 0.479737 1.757469 0.495326 1.778925 0.486396 1.761949 0.473949 1.768281 0.489708 1.78426 0.482431 1.76593 0.469756 1.778925 0.486396 1.804635 0.478916 1.802055 0.456804 1.78426 0.482431 1.826334 0.478837 1.826672 0.457899 1.804635 0.478916 1.853605 0.481567 1.852847 0.461461 1.826334 0.478837 1.880363 0.485561 1.880221 0.463711 1.853605 0.481567 1.893741 0.487782 1.895584 0.464683 1.880363 0.485561 1.924177 0.494773 1.928374 0.473063 1.908451 0.490498 1.9438 0.499215 1.957135 0.502134 1.949405 0.482525 1.942595 0.454924 1.937522 0.431114 1.925979 0.452332 1.941493 0.477983 1.942595 0.454924 1.928374 0.473063 1.936837 0.498098 1.941493 0.477983 1.924177 0.494773 1.930232 0.521497 1.936837 0.498098 1.918923 0.517187 1.918923 0.517187 1.91394 0.534228 1.930232 0.521497 1.910301 0.446963 1.910264 0.42919 1.893536 0.443835 1.910224 0.467393 1.910301 0.446963 1.895584 0.464683 1.908451 0.490498 1.910224 0.467393 1.893741 0.487782 1.904425 0.5121 1.908451 0.490498 1.890263 0.507293 1.900888 0.530334 1.904425 0.5121 1.887159 0.52476 1.907949 0.408917 1.910264 0.42919 1.918608 0.417238 1.907949 0.408917 1.89445 0.415942 1.910264 0.42919 1.907949 0.408917 1.906853 0.400313 1.89445 0.415942 1.933093 0.399292 1.906853 0.400313 1.918608 0.417238 1.930232 0.521497 1.925643 0.537486 1.93806 0.523887 1.93806 0.523887 1.9438 0.499215 1.930232 0.521497 1.949405 0.482525 1.941493 0.477983 1.9438 0.499215 1.948138 0.432091 1.963326 0.431995 1.943244 0.407294 1.969727 0.448477 1.963326 0.431995 1.954944 0.453298 1.952972 0.472901 1.96689 0.458848 1.954944 0.453298 1.952972 0.472901 1.949405 0.482525 1.965924 0.475707 1.952972 0.472901 1.965924 0.475707 1.96689 0.458848 1.920611 0.551684 1.930765 0.554429 1.927551 0.547045 1.927551 0.547045 1.933629 0.549947 1.932425 0.539962 1.920611 0.551684 1.925643 0.537486 1.908918 0.541403 1.870687 0.534937 1.897989 0.544989 1.888994 0.534743 1.899132 0.539503 1.900888 0.530334 1.888994 0.534743 1.899132 0.539503 1.908918 0.541403 1.900888 0.530334 1.558397 0.391193 1.558237 0.38821 1.536469 0.388045 1.831365 0.347676 1.831657 0.344491 1.80868 0.341913 1.831657 0.344491 1.831365 0.347676 1.855859 0.348098 1.558237 0.38821 1.558397 0.391193 1.581562 0.389455 1.855859 0.348098 1.855538 0.351245 1.878326 0.348977 1.581503 0.392369 1.602243 0.391852 1.581562 0.389455 1.878326 0.348977 1.878551 0.351969 1.900209 0.346699 1.602243 0.391852 1.622029 0.390836 1.602196 0.389143 1.900209 0.346699 1.900747 0.349556 1.919071 0.34328 1.622029 0.390836 1.638947 0.389894 1.622025 0.388351 1.919906 0.346122 1.934539 0.341939 1.919071 0.34328 1.638747 0.387681 1.638947 0.389894 1.651881 0.386809 1.934539 0.341939 1.957159 0.332221 1.933742 0.338868 1.651881 0.386809 1.652157 0.389086 1.671349 0.385502 1.760046 0.330209 1.785099 0.336542 1.761842 0.327156 1.489658 0.385089 1.513788 0.386258 1.489616 0.381756 1.785956 0.333418 1.785099 0.336542 1.809001 0.338791 1.513788 0.386258 1.536469 0.388045 1.514144 0.383119 1.558252 0.384522 1.557902 0.366437 1.536786 0.381226 1.581806 0.385858 1.582826 0.368029 1.558252 0.384522 1.581806 0.385858 1.602192 0.385487 1.582826 0.368029 1.602192 0.385487 1.62196 0.384658 1.601832 0.367172 1.638403 0.384066 1.636838 0.365973 1.62196 0.384658 1.651663 0.383462 1.650723 0.366607 1.638403 0.384066 1.651663 0.383462 1.671101 0.382103 1.650723 0.366607 1.49016 0.377777 1.514573 0.379159 1.494552 0.35886 1.536786 0.381226 1.537565 0.363657 1.514573 0.379159 1.830712 0.356691 1.831365 0.347676 1.807632 0.351025 1.854889 0.360207 1.855538 0.351245 1.830712 0.356691 1.879108 0.361109 1.878551 0.351969 1.854889 0.360207 1.902161 0.359183 1.900747 0.349556 1.879108 0.361109 1.92253 0.355917 1.919906 0.346122 1.902161 0.359183 1.937825 0.351728 1.934539 0.341939 1.92253 0.355917 1.937825 0.351728 1.961572 0.342319 1.934539 0.341939 1.755589 0.339858 1.78221 0.34579 1.760046 0.330209 1.807632 0.351025 1.80868 0.341913 1.78221 0.34579 0.608614 0.09161698 0.593322 0.08994895 0.610153 0.07234197 0.621885 0.074431 0.618478 0.09295296 0.610153 0.07234197 0.572224 0.08003199 0.563296 0.07786297 0.571247 0.06771296 0.561454 0.06742495 0.563296 0.07786297 0.552848 0.06900399 0.552848 0.06900399 0.554832 0.08167296 0.536774 0.08129698 0.642792 0.09834295 0.634027 0.09663599 0.647603 0.08398598 0.639054 0.07941895 0.634027 0.09663599 0.631742 0.07753598 0.631742 0.07753598 0.62555 0.09459197 0.621885 0.074431 0.593322 0.08994895 0.572224 0.08003199 0.594872 0.06868797 0.593546 0.115422 0.574287 0.113219 0.593322 0.08994895 0.606234 0.116636 0.593546 0.115422 0.608614 0.09161698 0.615694 0.11728 0.606234 0.116636 0.618478 0.09295296 0.623484 0.118066 0.615694 0.11728 0.62555 0.09459197 0.632005 0.118215 0.623484 0.118066 0.634027 0.09663599 0.642792 0.09834295 0.641298 0.117852 0.634027 0.09663599 0.554832 0.08167296 0.555787 0.112583 0.543019 0.09412896 0.563296 0.07786297 0.565241 0.112589 0.554832 0.08167296 0.574287 0.113219 0.565241 0.112589 0.572224 0.08003199 0.594872 0.06868797 0.571247 0.06771296 0.594582 0.05801397 0.614234 0.06129598 0.610153 0.07234197 0.594582 0.05801397 0.624135 0.06292295 0.621885 0.074431 0.614234 0.06129598 0.631742 0.07753598 0.621885 0.074431 0.632916 0.06511896 0.639054 0.07941895 0.631742 0.07753598 0.642967 0.06755095 0.647603 0.08398598 0.639054 0.07941895 0.650696 0.07069295 0.534214 0.05406898 0.552848 0.06900399 0.531025 0.07022899 0.639673 0.04486 0.632916 0.06511896 0.628603 0.04301899 0.648658 0.04831099 0.642967 0.06755095 0.639673 0.04486 0.650696 0.07069295 0.642967 0.06755095 0.659723 0.053119 0.523809 0.04420399 0.534214 0.05406898 0.519457 0.05608499 0.603669 0.03973299 0.594582 0.05801397 0.591884 0.03568899 0.616897 0.04053395 0.614234 0.06129598 0.603669 0.03973299 0.624135 0.06292295 0.614234 0.06129598 0.628603 0.04301899 0.571247 0.06771296 0.561454 0.06742495 0.568706 0.03635895 0.576436 0.02856898 0.582899 0.04492396 0.568706 0.03635895 0.555989 0.03776597 0.561454 0.06742495 0.546662 0.04025095 0.552848 0.06900399 0.534214 0.05406898 0.546662 0.04025095 0.534214 0.05406898 0.523809 0.04420399 0.535 0.03596097 0.581892 0.02182495 0.591884 0.03568899 0.576436 0.02856898 0.573052 0.146283 0.562768 0.144466 0.574287 0.113219 0.591267 0.149569 0.573052 0.146283 0.593546 0.115422 0.604101 0.150835 0.591267 0.149569 0.606234 0.116636 0.614986 0.151283 0.604101 0.150835 0.615694 0.11728 0.623484 0.118066 0.624859 0.150499 0.615694 0.11728 0.632005 0.118215 0.63385 0.148588 0.623484 0.118066 0.641298 0.117852 0.644634 0.145292 0.632005 0.118215 0.555787 0.112583 0.552181 0.142621 0.543423 0.113637 0.562768 0.144466 0.552181 0.142621 0.565241 0.112589 0.86574 0.564757 0.850091 0.560307 0.870687 0.534937 0.897989 0.544989 0.887493 0.573022 0.870687 0.534937 0.920611 0.551684 0.904814 0.580696 0.897989 0.544989 0.823255 0.561034 0.808386 0.567033 0.814112 0.525983 0.836264 0.558838 0.823255 0.561034 0.828726 0.524758 0.989976 0.443832 0.993076 0.451154 0.96689 0.458848 0.932426 0.539962 0.93806 0.523887 0.93866 0.542082 0.791561 0.49594 0.780079 0.502366 0.778925 0.486396 0.874305 0.519338 0.85154 0.512231 0.876387 0.502519 0.826833 0.507637 0.808175 0.506546 0.82661 0.494071 0.794648 0.490567 0.791561 0.49594 0.78426 0.482431 0.982866 0.414833 0.989086 0.438058 0.963326 0.431995 0.879138 0.443402 0.880221 0.463711 0.853055 0.442722 0.954944 0.453298 0.952972 0.472901 0.942595 0.454924 0.893536 0.443835 0.895584 0.464683 0.879138 0.443402 0.826708 0.43982 0.826672 0.457899 0.801387 0.438595 0.801387 0.438595 0.802055 0.456804 0.746114 0.449824 0.76156 0.41681 0.746114 0.449824 0.731259 0.412387 0.928374 0.473063 0.910224 0.467393 0.925979 0.452332 0.708224 0.44537 0.714894 0.441021 0.717574 0.457671 0.746114 0.449824 0.731559 0.453247 0.720491 0.436946 0.880277 0.426039 0.853599 0.423031 0.880211 0.399516 0.880211 0.399516 0.89445 0.415942 0.880277 0.426039 0.828723 0.394133 0.827591 0.419952 0.803727 0.392221 0.803727 0.392221 0.80203 0.418305 0.76904 0.388148 0.76904 0.388148 0.76156 0.41681 0.739319 0.382876 0.975782 0.386185 0.982866 0.414833 0.952686 0.395083 0.948138 0.432091 0.937522 0.431114 0.943244 0.407294 0.921919 0.430127 0.918608 0.417238 0.937522 0.431114 0.735582 0.465666 0.722264 0.467489 0.731559 0.453247 0.930765 0.554429 0.912993 0.582266 0.920611 0.551684 0.780689 0.537268 0.796423 0.531383 0.795075 0.573292 0.780079 0.502366 0.766353 0.509045 0.768281 0.489708 0.900888 0.530334 0.904425 0.5121 0.91394 0.534228 0.887159 0.52476 0.874305 0.519338 0.890263 0.507293 0.77304 0.521315 0.788259 0.514987 0.780689 0.537268 0.788259 0.514987 0.808175 0.506546 0.796423 0.531383 0.808175 0.506546 0.826833 0.507637 0.814112 0.525983 0.85154 0.512231 0.874305 0.519338 0.851155 0.528213 0.887159 0.52476 0.888994 0.534743 0.874305 0.519338 0.920611 0.551684 0.897989 0.544989 0.908918 0.541403 0.932426 0.539962 0.927551 0.547045 0.925643 0.537486 0.80203 0.418305 0.801387 0.438595 0.76156 0.41681 0.827591 0.419952 0.826708 0.43982 0.80203 0.418305 0.880277 0.426039 0.879138 0.443402 0.853599 0.423031 0.894664 0.427635 0.893536 0.443835 0.880277 0.426039 0.925979 0.452332 0.910301 0.446963 0.921919 0.430127 0.954944 0.453298 0.942595 0.454924 0.948138 0.432091 0.989086 0.438058 0.989976 0.443832 0.969727 0.448477 0.735582 0.465666 0.757423 0.479737 0.737352 0.475705 0.731559 0.453247 0.761949 0.473949 0.735582 0.465666 0.76593 0.469756 0.761949 0.473949 0.746114 0.449824 0.807044 0.493589 0.794648 0.490567 0.804635 0.478916 0.826334 0.478837 0.82661 0.494071 0.804635 0.478916 0.880363 0.485561 0.876387 0.502519 0.853605 0.481567 0.893741 0.487782 0.890263 0.507293 0.880363 0.485561 0.924177 0.494773 0.918923 0.517187 0.908451 0.490498 0.957135 0.502134 0.945242 0.526463 0.9438 0.499215 0.808175 0.506546 0.791561 0.49594 0.807044 0.493589 0.808175 0.506546 0.788259 0.514987 0.791561 0.49594 0.788259 0.514987 0.77304 0.521315 0.780079 0.502366 0.749259 0.484061 0.733616 0.492007 0.737352 0.475705 0.735582 0.465666 0.737352 0.475705 0.722264 0.467489 0.795075 0.573292 0.775649 0.582266 0.780689 0.537268 0.751414 0.531429 0.77304 0.521315 0.758449 0.547644 0.745762 0.518344 0.766353 0.509045 0.751414 0.531429 0.757469 0.495326 0.766353 0.509045 0.739377 0.503775 0.850091 0.560307 0.836264 0.558838 0.851155 0.528213 0.826833 0.507637 0.85154 0.512231 0.828726 0.524758 0.82661 0.494071 0.852783 0.497069 0.826833 0.507637 0.853605 0.481567 0.852783 0.497069 0.826334 0.478837 0.853055 0.442722 0.852847 0.461461 0.826708 0.43982 0.827591 0.419952 0.853599 0.423031 0.826708 0.43982 0.828723 0.394133 0.853686 0.397325 0.827591 0.419952 0.880211 0.399516 0.853686 0.397325 0.879735 0.372969 0.906853 0.400313 0.880211 0.399516 0.903753 0.371745 0.828723 0.394133 0.803727 0.392221 0.830094 0.368472 0.806279 0.362863 0.803727 0.392221 0.77854 0.358057 0.77854 0.358057 0.76904 0.388148 0.750842 0.352771 0.966341 0.355777 0.975782 0.386185 0.943147 0.364395 0.952686 0.395083 0.933093 0.399292 0.943147 0.364395 0.933093 0.399292 0.906853 0.400313 0.925892 0.368777 0.853686 0.397325 0.828723 0.394133 0.854039 0.37178 0.550008 0.309685 0.550707 0.32641 0.541749 0.309927 0.541749 0.309927 0.539849 0.326762 0.534089 0.309834 0.521114 0.338934 0.501817 0.333421 0.52261 0.311198 0.668116 0.342013 0.650778 0.341517 0.668887 0.315689 0.583928 0.310032 0.584061 0.341163 0.562904 0.311755 0.564744 0.292984 0.544358 0.292997 0.564017 0.26909 0.585774 0.267497 0.583859 0.285012 0.564017 0.26909 0.603983 0.264355 0.603708 0.282565 0.585774 0.267497 0.61984 0.263968 0.619011 0.282097 0.603983 0.264355 0.634287 0.260642 0.634395 0.281854 0.61984 0.263968 0.649785 0.285685 0.634395 0.281854 0.649204 0.259335 0.66812 0.292274 0.649785 0.285685 0.6689 0.262217 0.527968 0.2916 0.511195 0.284426 0.53042 0.263171 0.544358 0.292997 0.527968 0.2916 0.546537 0.267989 0.567136 0.2490659 0.549273 0.244607 0.568145 0.231571 0.587498 0.232984 0.586946 0.24838 0.568145 0.231571 0.603324 0.232976 0.602605 0.24755 0.587498 0.232984 0.618627 0.2482129 0.602605 0.24755 0.617888 0.233484 0.633597 0.2299309 0.634031 0.2443619 0.617888 0.233484 0.644949 0.2235569 0.647106 0.237727 0.633597 0.2299309 0.666176 0.235374 0.647106 0.237727 0.663215 0.219756 0.53326 0.238361 0.51194 0.231178 0.535587 0.221269 0.549273 0.244607 0.53326 0.238361 0.551353 0.226317 0.568693 0.213622 0.553684 0.208237 0.569957 0.191978 0.588012 0.217186 0.568693 0.213622 0.58867 0.196317 0.603673 0.21836 0.588012 0.217186 0.604202 0.1976799 0.617147 0.218764 0.603673 0.21836 0.616625 0.197842 0.630409 0.194855 0.632858 0.215425 0.616625 0.197842 0.639839 0.190008 0.642546 0.209506 0.630409 0.194855 0.654426 0.184116 0.659605 0.20448 0.639839 0.190008 0.54289 0.183971 0.538331 0.20416 0.524592 0.180648 0.553684 0.208237 0.538331 0.20416 0.556681 0.187726 0.572098 0.1691769 0.55996 0.166549 0.573052 0.146283 0.590518 0.172888 0.572098 0.1691769 0.591267 0.149569 0.603984 0.174308 0.590518 0.172888 0.604101 0.150835 0.615953 0.174524 0.603984 0.174308 0.614986 0.151283 0.624859 0.150499 0.62732 0.172697 0.614986 0.151283 0.63385 0.148588 0.63633 0.169673 0.624859 0.150499 0.644634 0.145292 0.648649 0.164249 0.63385 0.148588 0.552181 0.142621 0.547628 0.163383 0.53833 0.141272 0.55996 0.166549 0.547628 0.163383 0.562768 0.144466 0.581562 0.389455 0.558237 0.38821 0.581806 0.385858 0.602192 0.385487 0.602196 0.389143 0.581806 0.385858 0.62196 0.384658 0.622025 0.388351 0.602192 0.385487 0.638746 0.387681 0.622025 0.388351 0.638403 0.384066 0.651881 0.386809 0.638746 0.387681 0.651663 0.383462 0.671101 0.382103 0.671349 0.385502 0.651663 0.383462 0.514573 0.379159 0.514144 0.383119 0.49016 0.377777 0.536786 0.381226 0.5366 0.385064 0.514573 0.379159 0.558237 0.38821 0.5366 0.385064 0.558252 0.384522 0.551245 0.302396 0.550008 0.309685 0.542796 0.301108 0.583859 0.285012 0.583928 0.310032 0.564744 0.292984 0.619011 0.282097 0.619616 0.33825 0.603708 0.282565 0.636449 0.338899 0.619616 0.33825 0.634395 0.281854 0.668887 0.315689 0.649278 0.309954 0.66812 0.292274 0.52261 0.311198 0.505571 0.307328 0.527968 0.2916 0.542796 0.301108 0.541749 0.309927 0.534534 0.30252 0.559137 0.342935 0.538601 0.341952 0.550707 0.32641 0.550008 0.309685 0.562904 0.311755 0.550707 0.32641 0.539849 0.326762 0.538601 0.341952 0.530776 0.325288 0.521114 0.338934 0.52261 0.311198 0.530776 0.325288 0.542796 0.301108 0.544358 0.292997 0.551245 0.302396 0.564744 0.292984 0.562904 0.311755 0.551245 0.302396 0.534089 0.309834 0.52261 0.311198 0.534534 0.30252 0.527968 0.2916 0.544358 0.292997 0.534534 0.30252 0.568145 0.231571 0.551353 0.226317 0.568693 0.213622 0.587498 0.232984 0.568145 0.231571 0.588012 0.217186 0.603324 0.232976 0.587498 0.232984 0.603673 0.21836 0.617888 0.233484 0.603324 0.232976 0.617147 0.218764 0.632858 0.215425 0.633597 0.2299309 0.617147 0.218764 0.642546 0.209506 0.644949 0.2235569 0.632858 0.215425 0.659605 0.20448 0.663215 0.219756 0.642546 0.209506 0.535587 0.221269 0.514199 0.215944 0.538331 0.20416 0.551353 0.226317 0.535587 0.221269 0.553684 0.208237 0.569957 0.191978 0.556681 0.187726 0.572098 0.1691769 0.58867 0.196317 0.569957 0.191978 0.590518 0.172888 0.604202 0.1976799 0.58867 0.196317 0.603984 0.174308 0.616625 0.197842 0.604202 0.1976799 0.615953 0.174524 0.62732 0.172697 0.630409 0.194855 0.615953 0.174524 0.63633 0.169673 0.639839 0.190008 0.62732 0.172697 0.648649 0.164249 0.654426 0.184116 0.63633 0.169673 0.547628 0.163383 0.54289 0.183971 0.531631 0.160286 0.556681 0.187726 0.54289 0.183971 0.55996 0.166549 0.564017 0.26909 0.546537 0.267989 0.567136 0.2490659 0.586946 0.24838 0.585774 0.267497 0.567136 0.2490659 0.602605 0.24755 0.603983 0.264355 0.586946 0.24838 0.61984 0.263968 0.603983 0.264355 0.618627 0.2482129 0.634031 0.2443619 0.634287 0.260642 0.618627 0.2482129 0.647106 0.237727 0.649204 0.259335 0.634031 0.2443619 0.6689 0.262217 0.649204 0.259335 0.666176 0.235374 0.53042 0.263171 0.511671 0.256738 0.53326 0.238361 0.546537 0.267989 0.53042 0.263171 0.549273 0.244607 0.584061 0.341163 0.582826 0.368029 0.559137 0.342935 0.599638 0.339353 0.601832 0.367172 0.584061 0.341163 0.621565 0.366259 0.601832 0.367172 0.619616 0.33825 0.636838 0.365973 0.621565 0.366259 0.636449 0.338899 0.650723 0.366607 0.636838 0.365973 0.650778 0.341517 0.668116 0.342013 0.669592 0.365737 0.650778 0.341517 0.521114 0.338934 0.517097 0.360997 0.501817 0.333421 0.537565 0.363657 0.517097 0.360997 0.538601 0.341952 0.557902 0.366437 0.537565 0.363657 0.559137 0.342935 0.903753 0.371745 0.879735 0.372969 0.902161 0.359183 0.925892 0.368777 0.903753 0.371745 0.92253 0.355917 0.943147 0.364395 0.925892 0.368777 0.937825 0.351728 0.966341 0.355777 0.943147 0.364395 0.961572 0.342319 0.78221 0.34579 0.77854 0.358057 0.755589 0.339858 0.77854 0.358057 0.78221 0.34579 0.806279 0.362863 0.830094 0.368472 0.806279 0.362863 0.830712 0.356691 0.854039 0.37178 0.830094 0.368472 0.854889 0.360207 0.879735 0.372969 0.854039 0.37178 0.879108 0.361109 0.749259 0.484061 0.757469 0.495326 0.733616 0.492007 0.768281 0.489708 0.757469 0.495326 0.757423 0.479737 0.778925 0.486396 0.768281 0.489708 0.761949 0.473949 0.78426 0.482431 0.778925 0.486396 0.76593 0.469756 0.802055 0.456804 0.804635 0.478916 0.76593 0.469756 0.826672 0.457899 0.826334 0.478837 0.802055 0.456804 0.852847 0.461461 0.853605 0.481567 0.826672 0.457899 0.880221 0.463711 0.880363 0.485561 0.852847 0.461461 0.895584 0.464683 0.893741 0.487782 0.880221 0.463711 0.928374 0.473063 0.924177 0.494773 0.910224 0.467393 0.962951 0.483941 0.957135 0.502134 0.949405 0.482525 0.942595 0.454924 0.925979 0.452332 0.937522 0.431114 0.941493 0.477983 0.928374 0.473063 0.942595 0.454924 0.941493 0.477983 0.936837 0.498098 0.928374 0.473063 0.936837 0.498098 0.930232 0.521497 0.924177 0.494773 0.91394 0.534228 0.918923 0.517187 0.925643 0.537486 0.910301 0.446963 0.893536 0.443835 0.910264 0.42919 0.910224 0.467393 0.895584 0.464683 0.910301 0.446963 0.910224 0.467393 0.908451 0.490498 0.895584 0.464683 0.908451 0.490498 0.904425 0.5121 0.893741 0.487782 0.900888 0.530334 0.887159 0.52476 0.904425 0.5121 0.90795 0.408917 0.918608 0.417238 0.910264 0.42919 0.90795 0.408917 0.910264 0.42919 0.89445 0.415942 0.880211 0.399516 0.906853 0.400313 0.89445 0.415942 0.90795 0.408917 0.906853 0.400313 0.918608 0.417238 0.925643 0.537486 0.930232 0.521497 0.932426 0.539962 0.9438 0.499215 0.93806 0.523887 0.936837 0.498098 0.949405 0.482525 0.9438 0.499215 0.941493 0.477983 0.952686 0.395083 0.963326 0.431995 0.943244 0.407294 0.963326 0.431995 0.969727 0.448477 0.948138 0.432091 0.969727 0.448477 0.96689 0.458848 0.954944 0.453298 0.949405 0.482525 0.952972 0.472901 0.962951 0.483941 0.965924 0.475707 0.952972 0.472901 0.968834 0.467602 0.933629 0.549947 0.930765 0.554429 0.927551 0.547045 0.93866 0.542082 0.933629 0.549947 0.932426 0.539962 0.920611 0.551684 0.908918 0.541403 0.925643 0.537486 0.899132 0.539503 0.897989 0.544989 0.888994 0.534743 0.899132 0.539503 0.888994 0.534743 0.900888 0.530334 0.91394 0.534228 0.908918 0.541403 0.900888 0.530334 0.5366 0.385064 0.558237 0.38821 0.536469 0.388045 0.809002 0.338791 0.831657 0.344491 0.80868 0.341913 0.855538 0.351245 0.831365 0.347676 0.855859 0.348098 0.581503 0.392369 0.558397 0.391193 0.581562 0.389455 0.878551 0.351969 0.855538 0.351245 0.878326 0.348977 0.581503 0.392369 0.581562 0.389455 0.602243 0.391852 0.900747 0.349556 0.878551 0.351969 0.900209 0.346699 0.602243 0.391852 0.602196 0.389143 0.622029 0.390836 0.919906 0.346122 0.900747 0.349556 0.919071 0.34328 0.622029 0.390836 0.622025 0.388351 0.638947 0.389894 0.919906 0.346122 0.919071 0.34328 0.934539 0.341939 0.652157 0.389086 0.638947 0.389894 0.651881 0.386809 0.934539 0.341939 0.933742 0.338868 0.957159 0.332221 0.671349 0.388052 0.652157 0.389086 0.671349 0.385502 0.760046 0.330209 0.761842 0.327156 0.785099 0.336542 0.489658 0.385089 0.489616 0.381756 0.513788 0.386258 0.80868 0.341913 0.785099 0.336542 0.809002 0.338791 0.513788 0.386258 0.514144 0.383119 0.536469 0.388045 0.558252 0.384522 0.536786 0.381226 0.557902 0.366437 0.581806 0.385858 0.558252 0.384522 0.582826 0.368029 0.601832 0.367172 0.602192 0.385487 0.582826 0.368029 0.621565 0.366259 0.62196 0.384658 0.601832 0.367172 0.638403 0.384066 0.62196 0.384658 0.636838 0.365973 0.651663 0.383462 0.638403 0.384066 0.650723 0.366607 0.669592 0.365737 0.671101 0.382103 0.650723 0.366607 0.517097 0.360997 0.514573 0.379159 0.494552 0.35886 0.536786 0.381226 0.514573 0.379159 0.537565 0.363657 0.830712 0.356691 0.807632 0.351025 0.831365 0.347676 0.854889 0.360207 0.830712 0.356691 0.855538 0.351245 0.879108 0.361109 0.854889 0.360207 0.878551 0.351969 0.902161 0.359183 0.879108 0.361109 0.900747 0.349556 0.92253 0.355917 0.902161 0.359183 0.919906 0.346122 0.937825 0.351728 0.92253 0.355917 0.934539 0.341939 0.957159 0.332221 0.961572 0.342319 0.934539 0.341939 0.785099 0.336542 0.78221 0.34579 0.760046 0.330209 0.80868 0.341913 0.807632 0.351025 0.785099 0.336542 1.46606 0.126766 1.474191 0.122141 1.461385 0.114618 1.430689 0.332335 1.432367 0.340982 1.438523 0.330412 1.430689 0.332335 1.425271 0.334604 1.432367 0.340982 1.447361 0.062168 1.437429 0.06154799 1.449063 0.06944495 1.410347 0.301893 1.40691 0.304845 1.413541 0.305838 1.41626 0.285324 1.412171 0.292301 1.420213 0.291184 1.450175 0.276307 1.458399 0.2716 1.449049 0.272521 1.438308 0.279596 1.44394 0.273593 1.435517 0.270844 1.444495 0.329088 1.448289 0.340191 1.450139 0.327553 1.4561 0.13058 1.449599 0.118772 1.443339 0.135773 1.413379 0.07991898 1.409811 0.08515197 1.417515 0.08244496 1.427793 0.274524 1.419881 0.279423 1.43158 0.282816 1.448289 0.340191 1.444495 0.329088 1.439595 0.340875 1.4561 0.13058 1.46606 0.126766 1.449599 0.118772 1.427096 0.066863 1.418532 0.07314997 1.431034 0.07259196 1.439258 0.100782 1.425903 0.110038 1.449599 0.118772 1.439258 0.100782 1.449599 0.118772 1.451997 0.09611099 1.473548 0.112048 1.465013 0.09340995 1.461385 0.114618 1.423162 0.320235 1.419288 0.323289 1.42575 0.325301 1.435098 0.308812 1.427721 0.315032 1.438523 0.330412 1.440469 0.304591 1.435098 0.308812 1.444495 0.329088 1.444495 0.329088 1.450139 0.327553 1.440469 0.304591 1.471817 0.316486 1.476204 0.303733 1.46679 0.313673 1.46679 0.313673 1.464456 0.325618 1.471817 0.316486 1.41759 0.116974 1.425384 0.12812 1.425903 0.110038 1.450139 0.327553 1.456826 0.323236 1.447372 0.301688 1.461008 0.274029 1.456238 0.280442 1.462832 0.277212 1.455368 0.339766 1.45873 0.334212 1.450139 0.327553 1.443339 0.135773 1.435925 0.125613 1.429299 0.135172 1.461408 0.34457 1.462736 0.337565 1.455368 0.339766 1.41759 0.116974 1.410417 0.110959 1.410699 0.123622 1.456826 0.323236 1.46679 0.313673 1.455671 0.301752 1.488701 0.269372 1.490671 0.269203 1.488998 0.266007 1.45873 0.334212 1.464456 0.325618 1.456826 0.323236 1.429299 0.135172 1.425384 0.12812 1.419829 0.134626 1.462736 0.337565 1.467831 0.327477 1.45873 0.334212 1.418822 0.298526 1.416358 0.3092 1.423484 0.305083 1.465463 0.06623297 1.458199 0.06362199 1.464268 0.069678 1.430689 0.332335 1.427721 0.315032 1.42575 0.325301 1.425271 0.334604 1.430689 0.332335 1.421715 0.32843 1.473548 0.112048 1.476245 0.103719 1.465013 0.09340995 1.432367 0.340982 1.43211 0.352533 1.439595 0.340875 1.474191 0.122141 1.46606 0.126766 1.480192 0.134167 1.425497 0.341257 1.425615 0.351202 1.432367 0.340982 1.455368 0.339766 1.448289 0.340191 1.454164 0.355167 1.455368 0.339766 1.454164 0.355167 1.461408 0.34457 1.443339 0.135773 1.451887 0.147473 1.4561 0.13058 1.448289 0.340191 1.439595 0.340875 1.447442 0.35471 1.472111 0.138204 1.46606 0.126766 1.46247 0.142328 1.462832 0.277212 1.461167 0.286984 1.466209 0.2789 1.410417 0.110959 1.402094 0.109488 1.404336 0.118053 1.476204 0.303733 1.48009 0.297234 1.473338 0.30059 1.467455 0.296367 1.471907 0.290553 1.461167 0.286984 1.430784 0.08721995 1.418299 0.09853297 1.439258 0.100782 1.430784 0.08721995 1.439258 0.100782 1.444652 0.07932299 1.465013 0.09340995 1.461046 0.080976 1.451997 0.09611099 1.475171 0.09567499 1.47426 0.08825498 1.465013 0.09340995 1.420364 0.315582 1.416499 0.31863 1.423162 0.320235 1.423484 0.305083 1.420364 0.315582 1.427721 0.315032 1.427936 0.292312 1.423484 0.305083 1.435098 0.308812 1.440334 0.286856 1.427936 0.292312 1.440469 0.304591 1.440469 0.304591 1.447372 0.301688 1.440334 0.286856 1.455671 0.301752 1.461167 0.286984 1.447372 0.301688 1.418299 0.09853297 1.410417 0.110959 1.425903 0.110038 1.41759 0.116974 1.410699 0.123622 1.425384 0.12812 1.414545 0.132217 1.410699 0.123622 1.402146 0.123169 1.399612 0.115139 1.396841 0.119834 1.404336 0.118053 1.494615 0.267391 1.492291 0.270405 1.496598 0.270122 1.473338 0.30059 1.476542 0.294342 1.467455 0.296367 1.46679 0.313673 1.473338 0.30059 1.463371 0.306229 1.463371 0.306229 1.467455 0.296367 1.455671 0.301752 1.465463 0.06623297 1.466223 0.058106 1.458199 0.06362199 1.410347 0.301893 1.404061 0.296979 1.40691 0.304845 1.407246 0.273173 1.404745 0.279083 1.41626 0.285324 1.435517 0.270844 1.425191 0.249833 1.427793 0.274524 1.442598 0.269782 1.440026 0.255249 1.435517 0.270844 1.454687 0.265344 1.453309 0.257994 1.447677 0.269295 1.407699 0.07612597 1.404956 0.08161598 1.413379 0.07991898 1.405047 0.293235 1.404061 0.296979 1.411446 0.298095 1.447361 0.062168 1.444293 0.05252796 1.437429 0.06154799 1.420819 0.05584394 1.412415 0.06073498 1.427096 0.066863 1.369383 0.295584 1.367718 0.295893 1.36937 0.29642 1.395514 0.283807 1.404009 0.28641 1.395831 0.281339 1.351516 0.255415 1.353204 0.255242 1.351528 0.253803 1.409451 0.264448 1.410409 0.255043 1.400639 0.255012 1.387016 0.191768 1.388541 0.194178 1.38894 0.1911309 1.427955 0.239799 1.425191 0.249833 1.429879 0.240075 1.464906 0.1998389 1.464758 0.201991 1.466849 0.199983 1.404061 0.296979 1.405047 0.293235 1.399804 0.29523 1.404061 0.296979 1.399804 0.29523 1.401862 0.300957 1.471944 0.06025999 1.472889 0.05484497 1.466223 0.058106 1.404009 0.28641 1.395514 0.283807 1.397693 0.289219 1.454036 0.05245399 1.448351 0.04447698 1.444293 0.05252796 1.400639 0.255012 1.398394 0.257183 1.409451 0.264448 1.404745 0.279083 1.407246 0.273173 1.399988 0.273207 1.395831 0.281339 1.404745 0.279083 1.395023 0.278207 1.412415 0.06073498 1.420819 0.05584394 1.410773 0.05430096 1.427955 0.239799 1.425171 0.238843 1.425191 0.249833 1.425191 0.249833 1.420828 0.246939 1.417825 0.253996 1.401428 0.25264 1.410409 0.255043 1.402214 0.250305 1.407699 0.07612597 1.41133 0.06643897 1.403041 0.07422196 1.453309 0.257994 1.453344 0.253977 1.445774 0.256605 1.440026 0.255249 1.441506 0.250018 1.431262 0.25269 1.429879 0.240075 1.431262 0.25269 1.431876 0.239455 1.847476 0.312617 1.844051 0.320629 1.848903 0.314889 1.389381 0.201059 1.388188 0.1972579 1.386467 0.200944 1.392021 0.200202 1.394615 0.19868 1.3902 0.196883 1.394615 0.19868 1.396236 0.196756 1.391747 0.1951709 1.482573 0.280333 1.487278 0.275695 1.479595 0.276792 1.485824 0.283598 1.490241 0.277907 1.482573 0.280333 1.485824 0.283598 1.488534 0.28575 1.490241 0.277907 1.861041 0.31237 1.861051 0.322602 1.864019 0.310016 1.479595 0.276792 1.484682 0.272369 1.476865 0.273228 1.392169 0.105709 1.390157 0.104604 1.390162 0.109205 1.387876 0.107829 1.386032 0.111781 1.390162 0.109205 1.481933 0.287611 1.485824 0.283598 1.478744 0.284369 1.390162 0.109205 1.388082 0.113131 1.392746 0.110835 1.392746 0.110835 1.394438 0.106721 1.390162 0.109205 1.478744 0.284369 1.482573 0.280333 1.475226 0.280161 1.484682 0.272369 1.488701 0.269372 1.48307 0.269114 1.490241 0.277907 1.493701 0.278859 1.492874 0.273427 1.872742 0.328253 1.867883 0.328386 1.871151 0.332067 1.867819 0.332937 1.867883 0.328386 1.864018 0.331827 1.491176 0.265588 1.490671 0.269203 1.494615 0.267391 1.496598 0.270122 1.493479 0.27188 1.496419 0.272349 1.383986 0.06615 1.38377 0.07024997 1.403805 0.06769096 1.447958 0.229356 1.443109 0.226126 1.436449 0.2472259 1.441506 0.250018 1.451168 0.231477 1.436449 0.2472259 1.453344 0.253977 1.458982 0.235496 1.446235 0.252036 1.417628 0.05071598 1.402614 0.033436 1.410773 0.05430096 1.401095 0.22765 1.396905 0.229714 1.410258 0.250482 1.420828 0.246939 1.408564 0.224798 1.416057 0.250125 1.412086 0.222199 1.408564 0.224798 1.425171 0.238843 1.448351 0.04447698 1.444872 0.02925896 1.442598 0.04529899 1.380277 0.265614 1.378402 0.269988 1.399988 0.273207 1.399988 0.273207 1.401799 0.269545 1.380277 0.265614 1.381444 0.259859 1.402518 0.265515 1.38207 0.255251 1.472889 0.05484497 1.47807 0.04208099 1.468376 0.05210697 1.399804 0.29523 1.388405 0.295703 1.39864 0.299162 1.399804 0.29523 1.399829 0.292007 1.388405 0.295703 1.385695 0.288056 1.386895 0.291262 1.393611 0.285191 1.427793 0.274524 1.417825 0.253996 1.419881 0.279423 1.417825 0.253996 1.416057 0.250125 1.410409 0.255043 1.416057 0.250125 1.40489 0.226613 1.410258 0.250482 1.392021 0.200202 1.3902 0.196883 1.389381 0.201059 1.385577 0.193189 1.387471 0.194688 1.387016 0.191768 1.406579 0.02973699 1.402614 0.033436 1.421453 0.04563897 1.420819 0.05584394 1.427789 0.04888498 1.417628 0.05071598 1.427789 0.04888498 1.420819 0.05584394 1.437429 0.06154799 1.444652 0.07932299 1.437429 0.06154799 1.431034 0.07259196 1.435517 0.270844 1.427793 0.274524 1.438308 0.279596 1.444652 0.07932299 1.431034 0.07259196 1.430784 0.08721995 1.424856 0.07944297 1.416408 0.09368598 1.430784 0.08721995 1.461008 0.274029 1.458399 0.2716 1.456238 0.280442 1.438308 0.279596 1.440334 0.286856 1.450175 0.276307 1.438308 0.279596 1.43158 0.282816 1.440334 0.286856 1.413379 0.07991898 1.417515 0.08244496 1.418532 0.07314997 1.412756 0.088499 1.416408 0.09368598 1.417515 0.08244496 1.438308 0.279596 1.450175 0.276307 1.44394 0.273593 1.442598 0.269782 1.44394 0.273593 1.447677 0.269295 1.456496 0.26823 1.454687 0.265344 1.449049 0.272521 1.404956 0.08161598 1.407699 0.07612597 1.401552 0.07889997 1.401552 0.07889997 1.403041 0.07422196 1.383199 0.07365697 1.465734 0.202771 1.466955 0.202931 1.466849 0.199983 1.446235 0.252036 1.454166 0.233274 1.441506 0.250018 1.445774 0.256605 1.446235 0.252036 1.440026 0.255249 1.447677 0.269295 1.445774 0.256605 1.442598 0.269782 1.41133 0.06643897 1.407699 0.07612597 1.418532 0.07314997 1.461046 0.080976 1.459521 0.07239395 1.444652 0.07932299 1.459521 0.07239395 1.458199 0.06362199 1.449063 0.06944495 1.41626 0.285324 1.420213 0.291184 1.419881 0.279423 1.420213 0.291184 1.418822 0.298526 1.427936 0.292312 1.416358 0.3092 1.412887 0.312783 1.420364 0.315582 1.411446 0.298095 1.410347 0.301893 1.41373 0.298539 1.459521 0.07239395 1.461046 0.080976 1.473237 0.08082395 1.444293 0.05252796 1.442598 0.04529899 1.433072 0.05186897 1.442598 0.04529899 1.441442 0.02907997 1.436567 0.04484897 1.353566 0.254352 1.353401 0.253351 1.351528 0.253803 1.381444 0.259859 1.381276 0.262914 1.402518 0.265515 1.409451 0.264448 1.402518 0.265515 1.407246 0.273173 1.458199 0.06362199 1.454036 0.05245399 1.447361 0.062168 1.407246 0.273173 1.41626 0.285324 1.409451 0.264448 1.418822 0.298526 1.412171 0.292301 1.41373 0.298539 1.41373 0.298539 1.413541 0.305838 1.418822 0.298526 1.413541 0.305838 1.410268 0.309081 1.416358 0.3092 1.464268 0.069678 1.459521 0.07239395 1.472346 0.074579 1.465463 0.06623297 1.464268 0.069678 1.471799 0.06770199 1.466223 0.058106 1.468376 0.05210697 1.459122 0.05522596 1.468376 0.05210697 1.475188 0.03946697 1.464954 0.04907494 1.36918 0.294796 1.368029 0.294688 1.369383 0.295584 1.386895 0.291262 1.388103 0.293381 1.397693 0.289219 1.405047 0.293235 1.404009 0.28641 1.399829 0.292007 1.404009 0.28641 1.405047 0.293235 1.412171 0.292301 1.471799 0.06770199 1.471944 0.06025999 1.465463 0.06623297 1.355739 0.256804 1.353204 0.255242 1.353909 0.257934 1.356975 0.255367 1.353566 0.254352 1.355739 0.256804 1.356975 0.255367 1.356305 0.252909 1.353566 0.254352 1.356305 0.252909 1.355142 0.251074 1.353401 0.253351 1.79169 0.327847 1.793882 0.327364 1.791773 0.325198 1.789176 0.324873 1.789555 0.327063 1.791773 0.325198 1.359263 0.256137 1.356975 0.255367 1.358143 0.258145 1.358143 0.258145 1.355739 0.256804 1.356469 0.259447 1.789702 0.312751 1.788198 0.314263 1.791902 0.318849 1.795585 0.318833 1.795581 0.314204 1.791902 0.318849 1.359421 0.253471 1.358969 0.251079 1.356305 0.252909 1.359263 0.256137 1.359421 0.253471 1.356975 0.255367 1.825507 0.327043 1.827414 0.325937 1.825442 0.324568 1.822883 0.324124 1.823506 0.326127 1.825442 0.324568 1.370963 0.29668 1.36937 0.29642 1.370021 0.297843 1.371335 0.295301 1.369383 0.295584 1.370963 0.29668 1.371335 0.295301 1.370382 0.293985 1.369383 0.295584 1.370382 0.293985 1.369427 0.293249 1.36918 0.294796 1.373341 0.295068 1.371335 0.295301 1.373078 0.296921 1.373078 0.296921 1.370963 0.29668 1.372547 0.298346 1.372722 0.293281 1.371755 0.291887 1.370382 0.293985 1.373341 0.295068 1.372722 0.293281 1.371335 0.295301 1.391747 0.1951709 1.392285 0.192487 1.389792 0.193406 1.847818 0.320891 1.844051 0.320629 1.846641 0.325217 1.840238 0.320629 1.840897 0.325063 1.844051 0.320629 1.388188 0.1972579 1.387471 0.194688 1.385357 0.195964 1.3902 0.196883 1.388541 0.194178 1.388188 0.1972579 1.3902 0.196883 1.391747 0.1951709 1.388541 0.194178 1.807907 0.320521 1.807761 0.326933 1.811365 0.3209 1.807907 0.320521 1.804449 0.320671 1.807761 0.326933 1.463061 0.204088 1.464758 0.201991 1.462289 0.2015759 1.464499 0.205635 1.465734 0.202771 1.463061 0.204088 1.464499 0.205635 1.466437 0.2056789 1.465734 0.202771 1.466437 0.2056789 1.468812 0.204883 1.466955 0.202931 1.462619 0.2090809 1.464499 0.205635 1.46057 0.207357 1.46057 0.207357 1.463061 0.204088 1.458716 0.2051129 1.464885 0.209655 1.467867 0.209697 1.466437 0.2056789 1.462619 0.2090809 1.464885 0.209655 1.464499 0.205635 1.394609 0.213169 1.390741 0.214668 1.39874 0.222262 1.402276 0.2212139 1.397867 0.212099 1.39874 0.222262 1.405792 0.219552 1.401216 0.210568 1.402276 0.2212139 1.403799 0.208113 1.401216 0.210568 1.409003 0.2170979 1.394358 0.031403 1.39871 0.02840298 1.388335 0.02266597 1.392061 0.01976197 1.39871 0.02840298 1.395581 0.01725995 1.450751 0.224692 1.454865 0.217369 1.446218 0.2217389 1.453719 0.226638 1.457548 0.2192029 1.450751 0.224692 1.45648 0.228219 1.460126 0.220472 1.453719 0.226638 1.464124 0.222011 1.460126 0.220472 1.460923 0.230226 1.378478 0.07251596 1.379027 0.06943297 1.37127 0.07081997 1.372092 0.06488698 1.371842 0.06813299 1.379278 0.06571495 1.438147 0.023889 1.441216 0.02386695 1.438091 0.01595497 1.440796 0.01581197 1.441216 0.02386695 1.443456 0.01594299 1.375504 0.263959 1.36789 0.261462 1.373786 0.267936 1.376523 0.261482 1.369117 0.259181 1.375504 0.263959 1.369189 0.256365 1.369117 0.259181 1.37669 0.258631 1.369526 0.252627 1.369189 0.256365 1.377373 0.254347 1.475027 0.03428798 1.477311 0.03567695 1.478043 0.02945095 1.47988 0.03810399 1.482366 0.03260296 1.477311 0.03567695 1.384881 0.295984 1.380071 0.296425 1.384906 0.298668 1.384881 0.295984 1.384613 0.293842 1.380071 0.296425 1.379053 0.292448 1.379802 0.294379 1.383648 0.291848 1.378125 0.289948 1.379053 0.292448 1.382631 0.288868 1.364928 0.260402 1.358143 0.258145 1.363093 0.263277 1.366203 0.258265 1.359263 0.256137 1.364928 0.260402 1.359421 0.253471 1.359263 0.256137 1.366221 0.255531 1.358969 0.251079 1.359421 0.253471 1.366321 0.252075 1.39311 0.209453 1.389381 0.201059 1.389398 0.210543 1.396121 0.208514 1.392021 0.200202 1.39311 0.209453 1.399281 0.207043 1.394615 0.19868 1.396121 0.208514 1.396236 0.196756 1.394615 0.19868 1.401389 0.2045789 1.392801 0.01405894 1.386138 0.008875966 1.389414 0.01631999 1.456653 0.21437 1.46057 0.207357 1.453045 0.211564 1.45917 0.216123 1.462619 0.2090809 1.456653 0.21437 1.464885 0.209655 1.462619 0.2090809 1.461611 0.2172729 1.467867 0.209697 1.464885 0.209655 1.465408 0.218519 1.368375 0.07014197 1.368956 0.06761997 1.362863 0.06775701 1.479368 0.02743399 1.481357 0.02825999 1.482257 0.02436697 1.483397 0.03024297 1.484224 0.025303 1.481357 0.02825999 1.377879 0.296559 1.373078 0.296921 1.377634 0.298623 1.377689 0.294642 1.373341 0.295068 1.377879 0.296559 1.372722 0.293281 1.373341 0.295068 1.377019 0.292797 1.371755 0.291887 1.372722 0.293281 1.376073 0.290539 1.477311 0.03567695 1.476418 0.03722995 1.47988 0.03810399 1.476418 0.03722995 1.477311 0.03567695 1.474086 0.03572696 1.47807 0.04208099 1.479114 0.03976595 1.475188 0.03946697 1.388405 0.295703 1.388103 0.293381 1.384881 0.295984 1.383648 0.291848 1.384613 0.293842 1.386895 0.291262 1.475188 0.03946697 1.476418 0.03722995 1.472767 0.03773796 1.441216 0.02386695 1.441319 0.02632898 1.444289 0.02403396 1.441319 0.02632898 1.441216 0.02386695 1.438104 0.02628898 1.444872 0.02925896 1.444556 0.02651196 1.441442 0.02907997 1.381276 0.262914 1.376523 0.261482 1.380277 0.265614 1.37669 0.258631 1.376523 0.261482 1.381444 0.259859 1.441442 0.02907997 1.441319 0.02632898 1.43802 0.028943 1.402486 0.02516198 1.39871 0.02840298 1.404457 0.02737498 1.400573 0.03084498 1.39871 0.02840298 1.396031 0.03387695 1.40489 0.226613 1.402276 0.2212139 1.401095 0.22765 1.408564 0.224798 1.405792 0.219552 1.40489 0.226613 1.402614 0.033436 1.400573 0.03084498 1.397804 0.03652399 1.404457 0.02737498 1.400573 0.03084498 1.406579 0.02973699 1.379278 0.06571495 1.379027 0.06943297 1.381429 0.06591796 1.380649 0.073013 1.381189 0.06978899 1.378478 0.07251596 1.451168 0.231477 1.453719 0.226638 1.447958 0.229356 1.454166 0.233274 1.45648 0.228219 1.451168 0.231477 1.383199 0.07365697 1.38377 0.07024997 1.380649 0.073013 1.381429 0.06591796 1.381189 0.06978899 1.383986 0.06615 1.481357 0.02825999 1.480704 0.02941495 1.483397 0.03024297 1.478643 0.02851599 1.480704 0.02941495 1.479368 0.02743399 1.482366 0.03260296 1.482844 0.03151297 1.480158 0.03042 1.380071 0.296425 1.379802 0.294379 1.377879 0.296559 1.377019 0.292797 1.377689 0.294642 1.379053 0.292448 1.478043 0.02945095 1.480158 0.03042 1.478643 0.02851599 1.438083 0.014557 1.44071 0.01440995 1.438102 0.01293694 1.440622 0.01277697 1.44071 0.01440995 1.443095 0.01286697 1.369117 0.259181 1.366203 0.258265 1.36789 0.261462 1.366221 0.255531 1.366203 0.258265 1.369189 0.256365 1.438091 0.01595497 1.440796 0.01581197 1.438083 0.014557 1.443456 0.01594299 1.443293 0.01451694 1.440796 0.01581197 1.394294 0.01578396 1.392801 0.01405894 1.390828 0.01816898 1.387204 0.02103596 1.390828 0.01816898 1.385903 0.019131 1.397867 0.212099 1.396121 0.208514 1.394609 0.213169 1.401216 0.210568 1.399281 0.207043 1.397867 0.212099 1.388335 0.02266597 1.392061 0.01976197 1.387204 0.02103596 1.390828 0.01816898 1.392061 0.01976197 1.394294 0.01578396 1.370506 0.06788796 1.368956 0.06761997 1.369921 0.07050198 1.36918 0.06458097 1.368956 0.06761997 1.370743 0.06473296 1.457548 0.2192029 1.45917 0.216123 1.454865 0.217369 1.461611 0.2172729 1.45917 0.216123 1.460126 0.220472 1.371842 0.06813299 1.370506 0.06788796 1.37127 0.07081997 1.370743 0.06473296 1.370506 0.06788796 1.372092 0.06488698 1.399612 0.115139 1.402094 0.109488 1.392746 0.110835 1.466209 0.2789 1.467754 0.28517 1.472616 0.276174 1.471907 0.290553 1.478744 0.284369 1.467754 0.28517 1.476542 0.294342 1.481933 0.287611 1.471907 0.290553 1.48009 0.297234 1.484967 0.290291 1.476542 0.294342 1.392746 0.110835 1.390193 0.114514 1.399612 0.115139 1.487278 0.275695 1.490206 0.272736 1.484682 0.272369 1.487278 0.275695 1.490241 0.277907 1.490206 0.272736 1.383177 0.104989 1.381633 0.10678 1.387876 0.107829 1.481981 0.118467 1.474191 0.122141 1.487609 0.129102 1.482803 0.109934 1.473548 0.112048 1.481981 0.118467 1.482404 0.1017889 1.476245 0.103719 1.482803 0.109934 1.481676 0.09454399 1.475171 0.09567499 1.482404 0.1017889 1.481676 0.09454399 1.480536 0.08825296 1.475171 0.09567499 1.480536 0.08825296 1.479091 0.08017098 1.47426 0.08825498 1.472346 0.074579 1.473237 0.08082395 1.478261 0.07484996 1.478261 0.07484996 1.477693 0.06848996 1.472346 0.074579 1.477693 0.06848996 1.477185 0.06082999 1.471799 0.06770199 1.477185 0.06082999 1.477713 0.05598896 1.471944 0.06025999 1.477713 0.05598896 1.481261 0.04345095 1.472889 0.05484497 1.481261 0.04345095 1.482108 0.04107797 1.47807 0.04208099 1.47988 0.03810399 1.479114 0.03976595 1.482649 0.03934794 1.482649 0.03934794 1.484531 0.03374898 1.47988 0.03810399 1.484531 0.03374898 1.484898 0.03259998 1.482366 0.03260296 1.483397 0.03024297 1.482844 0.03151297 1.485285 0.03120899 1.485285 0.03120899 1.486427 0.02580195 1.483397 0.03024297 1.486427 0.02580195 1.486151 0.02314096 1.485103 0.024827 1.486151 0.02314096 1.48539 0.02188599 1.485318 0.02298098 1.48539 0.02188599 1.484721 0.02148896 1.484926 0.02211499 1.48392 0.02127099 1.484138 0.02191299 1.484721 0.02148896 1.482411 0.02144396 1.483179 0.02229297 1.48392 0.02127099 1.48052 0.02275699 1.481926 0.02348899 1.482411 0.02144396 1.481926 0.02348899 1.48052 0.02275699 1.479368 0.02743399 1.479368 0.02743399 1.477381 0.02617895 1.478643 0.02851599 1.475708 0.027969 1.478043 0.02945095 1.476475 0.02711498 1.472205 0.03221094 1.475027 0.03428798 1.475708 0.027969 1.472205 0.03221094 1.471105 0.03344595 1.475027 0.03428798 1.471105 0.03344595 1.469631 0.03525197 1.474086 0.03572696 1.469631 0.03525197 1.462333 0.043446 1.472767 0.03773796 1.459122 0.05522596 1.464954 0.04907494 1.459755 0.04388195 1.459122 0.05522596 1.459755 0.04388195 1.454036 0.05245399 1.454543 0.03885197 1.448351 0.04447698 1.45763 0.04244798 1.449604 0.02826797 1.444872 0.02925896 1.454543 0.03885197 1.448991 0.02566599 1.444556 0.02651196 1.449604 0.02826797 1.448448 0.023319 1.444289 0.02403396 1.448991 0.02566599 1.448448 0.023319 1.446808 0.01554298 1.444289 0.02403396 1.446808 0.01554298 1.446443 0.01413196 1.443456 0.01594299 1.443095 0.01286697 1.443293 0.01451694 1.446008 0.01253497 1.446008 0.01253497 1.444277 0.006348967 1.443095 0.01286697 1.444277 0.006348967 1.442805 0.003811955 1.44217 0.006167948 1.442805 0.003811955 1.440784 0.002125978 1.441439 0.004094958 1.439997 0.002421975 1.440366 0.002622961 1.439958 0.001884996 1.439156 0.002267956 1.439671 0.002707958 1.439958 0.001884996 1.437528 0.004000961 1.438722 0.00415796 1.439156 0.002267956 1.436073 0.007027983 1.438171 0.00664699 1.437528 0.004000961 1.438171 0.00664699 1.436073 0.007027983 1.438102 0.01293694 1.434911 0.01452398 1.438083 0.014557 1.435157 0.012932 1.438083 0.014557 1.434911 0.01452398 1.438091 0.01595497 1.438091 0.01595497 1.434718 0.01592195 1.438147 0.023889 1.438104 0.02628898 1.438147 0.023889 1.433719 0.025837 1.433719 0.025837 1.433423 0.02830499 1.438104 0.02628898 1.433423 0.02830499 1.430429 0.03764498 1.43802 0.028943 1.433072 0.05186897 1.436567 0.04484897 1.428645 0.03947597 1.426219 0.03985095 1.427789 0.04888498 1.428645 0.03947597 1.423211 0.03897196 1.421453 0.04563897 1.426219 0.03985095 1.409569 0.02723199 1.406579 0.02973699 1.423211 0.03897196 1.409569 0.02723199 1.407448 0.02514398 1.406579 0.02973699 1.402486 0.02516198 1.404457 0.02737498 1.405524 0.02307397 1.395581 0.01725995 1.402486 0.02516198 1.398562 0.015661 1.398562 0.015661 1.397239 0.01425099 1.395581 0.01725995 1.392801 0.01405894 1.394294 0.01578396 1.395696 0.01263594 1.395696 0.01263594 1.388094 0.006185948 1.392801 0.01405894 1.388094 0.006185948 1.383689 0.004185974 1.3864 0.007463991 1.383689 0.004185974 1.38167 0.004242956 1.383057 0.004802942 1.381218 0.005501985 1.381701 0.005083978 1.380571 0.004686951 1.381218 0.005501985 1.380571 0.004686951 1.380606 0.005871951 1.379101 0.00801897 1.380056 0.007230997 1.379787 0.005584955 1.379657 0.013134 1.381622 0.01157099 1.379101 0.00801897 1.381622 0.01157099 1.379657 0.013134 1.385903 0.019131 1.38476 0.02354997 1.387204 0.02103596 1.383614 0.02158898 1.387204 0.02103596 1.38476 0.02354997 1.388335 0.02266597 1.388335 0.02266597 1.385787 0.02523398 1.394358 0.031403 1.39261 0.03645098 1.396031 0.03387695 1.391105 0.03402799 1.396031 0.03387695 1.39261 0.03645098 1.397804 0.03652399 1.410773 0.05430096 1.397804 0.03652399 1.402214 0.05425596 1.412415 0.06073498 1.410773 0.05430096 1.402415 0.05712699 1.41133 0.06643897 1.412415 0.06073498 1.4016 0.05947899 1.399334 0.06105095 1.403805 0.06769096 1.4016 0.05947899 1.383706 0.06150096 1.383986 0.06615 1.399334 0.06105095 1.381242 0.06150597 1.381429 0.06591796 1.383706 0.06150096 1.379175 0.06152695 1.379278 0.06571495 1.381242 0.06150597 1.372228 0.06140297 1.372092 0.06488698 1.379175 0.06152695 1.370871 0.06139898 1.370743 0.06473296 1.372228 0.06140297 1.3693 0.06140595 1.36918 0.06458097 1.370871 0.06139898 1.3693 0.06140595 1.362664 0.06139796 1.36918 0.06458097 1.362664 0.06139796 1.359308 0.06297099 1.36225 0.06399899 1.359308 0.06297099 1.357999 0.06444799 1.35953 0.06411397 1.357947 0.06536996 1.358284 0.06503295 1.357571 0.06529295 1.357675 0.06638199 1.358123 0.06588697 1.357571 0.06529295 1.35852 0.068349 1.358855 0.067227 1.357675 0.06638199 1.360771 0.07083499 1.361496 0.06825399 1.35852 0.068349 1.361496 0.06825399 1.360771 0.07083499 1.368375 0.07014197 1.368995 0.07382798 1.369921 0.07050198 1.367474 0.07330995 1.37127 0.07081997 1.369921 0.07050198 1.370312 0.07428395 1.378478 0.07251596 1.37127 0.07081997 1.377135 0.07649499 1.377135 0.07649499 1.379157 0.07722395 1.378478 0.07251596 1.383199 0.07365697 1.380649 0.073013 1.38159 0.07805401 1.401552 0.07889997 1.383199 0.07365697 1.397243 0.08388298 1.404956 0.08161598 1.401552 0.07889997 1.400002 0.08596795 1.409811 0.08515197 1.404956 0.08161598 1.405009 0.09074199 1.407177 0.09315198 1.412756 0.088499 1.405009 0.09074199 1.408933 0.09699696 1.416408 0.09368598 1.407177 0.09315198 1.418299 0.09853297 1.416408 0.09368598 1.410194 0.100325 1.407203 0.105486 1.410417 0.110959 1.410194 0.100325 1.401954 0.1057479 1.402094 0.109488 1.407203 0.105486 1.395247 0.104067 1.394438 0.106721 1.401954 0.1057479 1.395247 0.104067 1.39324 0.103372 1.394438 0.106721 1.391018 0.102329 1.390157 0.104604 1.39324 0.103372 1.391018 0.102329 1.385263 0.09989595 1.390157 0.104604 1.385263 0.09989595 1.380243 0.09951496 1.383545 0.101034 1.380243 0.09951496 1.378957 0.100137 1.379956 0.100535 1.378957 0.100137 1.37772 0.101517 1.37921 0.101036 1.377293 0.103004 1.378 0.10277 1.37772 0.101517 1.377193 0.104338 1.377757 0.103703 1.377293 0.103004 1.379472 0.1089619 1.380009 0.106984 1.377193 0.104338 1.384555 0.113597 1.386032 0.111781 1.379472 0.1089619 1.388082 0.113131 1.386032 0.111781 1.386522 0.1151 1.390193 0.114514 1.388082 0.113131 1.38843 0.116461 1.396841 0.119834 1.390193 0.114514 1.393956 0.121379 1.402146 0.123169 1.396841 0.119834 1.398302 0.127308 1.414545 0.132217 1.402146 0.123169 1.408742 0.134485 1.408742 0.134485 1.418744 0.138635 1.414545 0.132217 1.429299 0.135172 1.419829 0.134626 1.428658 0.140121 1.443339 0.135773 1.429299 0.135172 1.435172 0.140163 1.435172 0.140163 1.446187 0.150113 1.443339 0.135773 1.513347 0.175074 1.51973 0.169718 1.480192 0.134167 1.42512 0.397316 1.436702 0.397594 1.43211 0.352533 1.448183 0.39916 1.447442 0.35471 1.436702 0.397594 1.462255 0.398279 1.454164 0.355167 1.448183 0.39916 1.479434 0.189914 1.451887 0.147473 1.470912 0.192254 1.489262 0.1868489 1.46247 0.142328 1.479434 0.189914 1.500225 0.183162 1.472111 0.138204 1.489262 0.1868489 1.513347 0.175074 1.480192 0.134167 1.500225 0.183162 1.419004 0.397581 1.42512 0.397316 1.425615 0.351202 1.468881 0.39882 1.460534 0.356666 1.462255 0.398279 1.363402 0.06494897 1.363426 0.06644797 1.36918 0.06458097 1.36225 0.06399899 1.362128 0.06463396 1.363402 0.06494897 1.36225 0.06399899 1.35953 0.06411397 1.362128 0.06463396 1.363426 0.06644797 1.362962 0.06637495 1.362863 0.06775701 1.363402 0.06494897 1.362897 0.06514799 1.363426 0.06644797 1.362863 0.06775701 1.362425 0.06743395 1.361496 0.06825399 1.361496 0.06825399 1.361537 0.06760197 1.358855 0.067227 1.813264 0.321639 1.811365 0.3209 1.811474 0.32699 1.804207 0.310525 1.802421 0.31299 1.805028 0.311985 1.802421 0.31299 1.802421 0.321167 1.804485 0.316766 1.811967 0.311018 1.80821 0.310089 1.810815 0.312534 1.804207 0.310525 1.805028 0.311985 1.80821 0.310089 1.811967 0.311018 1.810815 0.312534 1.813476 0.313359 1.813476 0.313359 1.811337 0.316477 1.813264 0.321639 1.805102 0.327228 1.804449 0.320671 1.804244 0.326986 1.810616 0.327287 1.807761 0.326933 1.809963 0.329726 1.805102 0.327228 1.805648 0.329692 1.807761 0.326933 1.390157 0.104604 1.384029 0.102625 1.387876 0.107829 1.868063 0.323171 1.874366 0.323122 1.873285 0.309913 1.381633 0.10678 1.383177 0.104989 1.381018 0.105497 1.383545 0.101034 1.382576 0.101631 1.384029 0.102625 1.383545 0.101034 1.379956 0.100535 1.382576 0.101631 1.384029 0.102625 1.382745 0.10274 1.383177 0.104989 1.381633 0.10678 1.381018 0.105497 1.380009 0.106984 1.380009 0.106984 1.379914 0.105812 1.377757 0.103703 1.875067 0.307845 1.868946 0.306844 1.873285 0.309913 1.862944 0.307653 1.859104 0.310065 1.864019 0.310016 1.859104 0.310065 1.859104 0.322681 1.861041 0.31237 1.862944 0.307653 1.864019 0.310016 1.868946 0.306844 1.878605 0.310804 1.875067 0.307845 1.875945 0.312375 1.878605 0.310804 1.875945 0.312375 1.876821 0.32331 1.859104 0.322681 1.859615 0.327048 1.861051 0.322602 1.867883 0.328386 1.868063 0.323171 1.862491 0.327899 1.874366 0.323122 1.868063 0.323171 1.872742 0.328253 1.876821 0.32331 1.874366 0.323122 1.87546 0.32795 1.383451 0.01156598 1.382942 0.01011699 1.381622 0.01157099 1.381622 0.01157099 1.381703 0.00980699 1.380056 0.007230997 1.385033 0.01063996 1.386138 0.008875966 1.3842 0.009432971 1.3864 0.007463991 1.383057 0.004802942 1.385063 0.007047951 1.848199 0.310861 1.847476 0.312617 1.850332 0.313362 1.850332 0.313362 1.848903 0.314889 1.849188 0.32147 1.844717 0.310333 1.84103 0.310799 1.844586 0.31221 1.838899 0.312979 1.838899 0.320713 1.84025 0.315065 1.847491 0.32564 1.849188 0.32147 1.846641 0.325217 1.839951 0.325556 1.840897 0.325063 1.838899 0.320713 1.846641 0.325217 1.843767 0.32509 1.845832 0.327444 1.840897 0.325063 1.841433 0.327344 1.843767 0.32509 1.841481 0.312504 1.84025 0.315065 1.844051 0.320629 1.84103 0.310799 1.838899 0.312979 1.841481 0.312504 1.386138 0.008875966 1.3864 0.007463991 1.38517 0.008251965 1.848199 0.310861 1.844717 0.310333 1.847476 0.312617 1.383451 0.01156598 1.385033 0.01063996 1.382942 0.01011699 1.385903 0.019131 1.389414 0.01631999 1.383451 0.01156598 1.441573 0.007194995 1.44217 0.006167948 1.441139 0.006559967 1.44217 0.006167948 1.441439 0.004094958 1.441592 0.005676984 1.438171 0.00664699 1.438996 0.007281959 1.438811 0.00604999 1.438171 0.00664699 1.438811 0.00604999 1.438722 0.00415796 1.786676 0.313244 1.788198 0.314263 1.788729 0.311224 1.786676 0.313244 1.786676 0.318138 1.788198 0.314263 1.794754 0.311484 1.794322 0.312986 1.79668 0.313392 1.79668 0.313392 1.795581 0.314204 1.796578 0.318752 1.786676 0.318138 1.787397 0.324626 1.788316 0.318544 1.788316 0.318544 1.789176 0.324873 1.791902 0.318849 1.791773 0.325198 1.794471 0.325322 1.791902 0.318849 1.796578 0.318752 1.795585 0.318833 1.795546 0.325055 1.443095 0.01286697 1.441573 0.007194995 1.440622 0.01277697 1.441573 0.007194995 1.441139 0.006559967 1.440286 0.007456958 1.788729 0.311224 1.789702 0.312751 1.791923 0.310665 1.791923 0.310665 1.792032 0.312311 1.794754 0.311484 1.438996 0.007281959 1.440286 0.007456958 1.439375 0.006722986 1.438102 0.01293694 1.440622 0.01277697 1.438996 0.007281959 1.484224 0.025303 1.484109 0.02458596 1.482988 0.02503997 1.485103 0.024827 1.485318 0.02298098 1.484744 0.02426999 1.482988 0.02503997 1.48329 0.02445095 1.482257 0.02436697 1.481926 0.02348899 1.482491 0.02338695 1.483179 0.02229297 1.822635 0.312323 1.823271 0.313542 1.825454 0.312022 1.820757 0.314181 1.820536 0.319148 1.821651 0.315175 1.825454 0.312022 1.825487 0.313372 1.827936 0.312742 1.829898 0.313974 1.829066 0.314991 1.829898 0.319189 1.820536 0.319148 1.821414 0.323743 1.821823 0.319332 1.821823 0.319332 1.822883 0.324124 1.825446 0.319557 1.825442 0.324568 1.827993 0.323958 1.825446 0.319557 1.829898 0.319189 1.829027 0.319132 1.829207 0.32394 1.482257 0.02436697 1.482765 0.02394497 1.481926 0.02348899 1.827388 0.313869 1.829066 0.314991 1.827936 0.312742 1.825446 0.319557 1.829027 0.319132 1.827388 0.313869 1.823271 0.313542 1.821651 0.315175 1.825446 0.319557 1.822447 0.312488 1.820757 0.314181 1.823271 0.313542 1.484224 0.025303 1.485103 0.024827 1.484109 0.02458596 1.120008 0.883433 1.120364 0.903472 1.136953 0.886322 1.136953 0.886322 1.139041 0.905176 1.151002 0.889086 1.151002 0.889086 1.155779 0.906916 1.169597 0.891416 1.407025 0.910165 1.439327 0.909539 1.406765 0.891559 1.369815 0.911088 1.407025 0.910165 1.371251 0.892681 1.340806 0.912149 1.369815 0.911088 1.341995 0.89449 1.316391 0.894942 1.315124 0.91204 1.341995 0.89449 1.294632 0.912405 1.315124 0.91204 1.297854 0.89452 1.275016 0.913061 1.294632 0.912405 1.279624 0.895381 1.255849 0.913258 1.275016 0.913061 1.261914 0.89548 1.232351 0.912374 1.255849 0.913258 1.237435 0.896041 1.211365 0.911171 1.232351 0.912374 1.211607 0.895005 1.189673 0.894156 1.19257 0.91048 1.211607 0.895005 1.169597 0.891416 1.175001 0.908869 1.189673 0.894156 1.101035 0.881981 1.101262 0.902584 1.120008 0.883433 1.067092 0.880661 1.066507 0.901362 1.101035 0.881981 1.034924 0.880805 1.034924 0.900869 1.067092 0.880661 1.407368 0.935562 1.407314 0.941227 1.439327 0.935228 1.368292 0.940647 1.407314 0.941227 1.368393 0.935561 1.339498 0.940299 1.368292 0.940647 1.339662 0.935535 1.313889 0.940639 1.339498 0.940299 1.314039 0.935411 1.291143 0.941043 1.313889 0.940639 1.291438 0.936277 1.269732 0.940306 1.291143 0.941043 1.270174 0.936045 1.249071 0.938017 1.269732 0.940306 1.249481 0.934851 1.22651 0.935309 1.249071 0.938017 1.226971 0.932266 1.210702 0.933447 1.22651 0.935309 1.210915 0.930659 1.195288 0.929963 1.195503 0.932797 1.210915 0.930659 1.180365 0.930016 1.180425 0.933413 1.195288 0.929963 1.160555 0.929191 1.160523 0.933327 1.180365 0.930016 1.141233 0.929197 1.141277 0.934013 1.160555 0.929191 1.120713 0.929242 1.120755 0.934577 1.141233 0.929197 1.101346 0.929164 1.101359 0.934731 1.120713 0.929242 1.065733 0.928225 1.065711 0.934049 1.101346 0.929164 1.034924 0.927369 1.034924 0.933349 1.065733 0.928225 1.439327 0.877824 1.406396 0.878272 1.439327 0.885619 1.406396 0.878272 1.371903 0.879705 1.406641 0.886525 1.371903 0.879705 1.343441 0.881094 1.371676 0.887664 1.342434 0.889404 1.343441 0.881094 1.316643 0.890341 1.316643 0.890341 1.317385 0.882892 1.298383 0.890341 1.298383 0.890341 1.298366 0.884039 1.280364 0.891472 1.280364 0.891472 1.28006 0.885307 1.262828 0.891744 1.26253 0.885827 1.238286 0.886048 1.262828 0.891744 1.238286 0.886048 1.211923 0.885336 1.238412 0.892242 1.211923 0.885336 1.189946 0.883685 1.211652 0.891233 1.189112 0.889984 1.189946 0.883685 1.168452 0.88735 1.168452 0.88735 1.169553 0.880942 1.150111 0.884856 1.150111 0.884856 1.151348 0.878299 1.136794 0.881933 1.136794 0.881933 1.138159 0.875384 1.120162 0.879136 1.120162 0.879136 1.121121 0.872596 1.101158 0.877484 1.101158 0.877484 1.101825 0.870379 1.067316 0.87595 1.067316 0.87595 1.067677 0.868225 1.034924 0.876078 1.368393 0.935561 1.407368 0.935562 1.36838 0.929495 1.407368 0.935562 1.439327 0.935228 1.407284 0.928772 1.339662 0.935535 1.368393 0.935561 1.339618 0.929807 1.313857 0.929138 1.314039 0.935411 1.339618 0.929807 1.291438 0.936277 1.314039 0.935411 1.29141 0.93029 1.270174 0.936045 1.291438 0.936277 1.270408 0.930741 1.249481 0.934851 1.270174 0.936045 1.249783 0.931036 1.226971 0.932266 1.249481 0.934851 1.227267 0.928706 1.211124 0.927338 1.210915 0.930659 1.227267 0.928706 1.195288 0.929963 1.210915 0.930659 1.195467 0.926804 1.180405 0.926322 1.180365 0.930016 1.195467 0.926804 1.160555 0.924747 1.160555 0.929191 1.180405 0.926322 1.14113 0.92403 1.141233 0.929197 1.160555 0.924747 1.12072 0.923511 1.120713 0.929242 1.14113 0.92403 1.10149 0.923187 1.101346 0.929164 1.12072 0.923511 1.065921 0.922064 1.065733 0.928225 1.10149 0.923187 1.034924 0.922094 1.034924 0.927369 1.065921 0.922064 1.406765 0.891559 1.439327 0.890891 1.406641 0.886525 1.371251 0.892681 1.406765 0.891559 1.371676 0.887664 1.341995 0.89449 1.371251 0.892681 1.342434 0.889404 1.316643 0.890341 1.316391 0.894942 1.342434 0.889404 1.298383 0.890341 1.297854 0.89452 1.316643 0.890341 1.279624 0.895381 1.297854 0.89452 1.280364 0.891472 1.261914 0.89548 1.279624 0.895381 1.262828 0.891744 1.237435 0.896041 1.261914 0.89548 1.238412 0.892242 1.211607 0.895005 1.237435 0.896041 1.211652 0.891233 1.189112 0.889984 1.189673 0.894156 1.211652 0.891233 1.168452 0.88735 1.169597 0.891416 1.189112 0.889984 1.150111 0.884856 1.151002 0.889086 1.168452 0.88735 1.136794 0.881933 1.136953 0.886322 1.150111 0.884856 1.120162 0.879136 1.120008 0.883433 1.136794 0.881933 1.101158 0.877484 1.101035 0.881981 1.120162 0.879136 1.067316 0.87595 1.067092 0.880661 1.101158 0.877484 1.034924 0.876078 1.034924 0.880805 1.067316 0.87595 1.406283 0.875591 1.406396 0.878272 1.439327 0.874711 1.371575 0.877154 1.371903 0.879705 1.406283 0.875591 1.343539 0.878406 1.343441 0.881094 1.371575 0.877154 1.139193 0.87354 1.121697 0.870669 1.138159 0.875384 1.101825 0.870379 1.121121 0.872596 1.102226 0.868202 1.067677 0.868225 1.101825 0.870379 1.067784 0.865706 1.034924 0.865263 1.034924 0.868264 1.067784 0.865706 1.317591 0.880538 1.317385 0.882892 1.343539 0.878406 1.298063 0.882169 1.298366 0.884039 1.317591 0.880538 1.152888 0.876306 1.139193 0.87354 1.151348 0.878299 1.279407 0.883388 1.28006 0.885307 1.298063 0.882169 1.26162 0.884048 1.26253 0.885827 1.279407 0.883388 1.237428 0.883969 1.238286 0.886048 1.26162 0.884048 1.212114 0.883258 1.211923 0.885336 1.237428 0.883969 1.189946 0.883685 1.211923 0.885336 1.191233 0.881566 1.169553 0.880942 1.189946 0.883685 1.171436 0.879059 1.151348 0.878299 1.169553 0.880942 1.152888 0.876306 1.407291 0.943222 1.439327 0.943342 1.407314 0.941227 1.368411 0.942418 1.407291 0.943222 1.368292 0.940647 1.339614 0.941966 1.368411 0.942418 1.339498 0.940299 1.313936 0.942501 1.339614 0.941966 1.313889 0.940639 1.291133 0.942672 1.313936 0.942501 1.291143 0.941043 1.269695 0.94173 1.291133 0.942672 1.269732 0.940306 1.249071 0.938017 1.249341 0.939109 1.269732 0.940306 1.22651 0.935309 1.226459 0.936343 1.249071 0.938017 1.210627 0.934416 1.226459 0.936343 1.210702 0.933447 1.195494 0.933731 1.210627 0.934416 1.195503 0.932797 1.180299 0.934557 1.195494 0.933731 1.180425 0.933413 1.160385 0.934719 1.180299 0.934557 1.160523 0.933327 1.141224 0.935612 1.160385 0.934719 1.141277 0.934013 1.120742 0.936351 1.141224 0.935612 1.120755 0.934577 1.101339 0.936575 1.120742 0.936351 1.101359 0.934731 1.065718 0.935992 1.101339 0.936575 1.065711 0.934049 1.034924 0.935726 1.065718 0.935992 1.034924 0.933349 0.407025 0.910165 0.406765 0.891559 0.439327 0.909539 0.369815 0.911088 0.371251 0.892681 0.407025 0.910165 0.340806 0.912149 0.341995 0.89449 0.369815 0.911088 0.315123 0.91204 0.31639 0.894943 0.340806 0.912149 0.294632 0.912405 0.297854 0.89452 0.315123 0.91204 0.275016 0.913061 0.279624 0.895381 0.294632 0.912405 0.255849 0.913258 0.261914 0.89548 0.275016 0.913061 0.232351 0.912373 0.237435 0.896041 0.255849 0.913258 0.2113659 0.911172 0.211607 0.895005 0.232351 0.912373 0.2113659 0.911172 0.19257 0.91048 0.211607 0.895005 0.19257 0.91048 0.175001 0.908869 0.189673 0.894156 0.175001 0.908869 0.155778 0.906916 0.169597 0.891416 0.155778 0.906916 0.139041 0.905176 0.151002 0.889086 0.139041 0.905176 0.120364 0.903472 0.1369529 0.886322 0.120364 0.903472 0.101262 0.902584 0.120008 0.883433 0.06650596 0.901362 0.067092 0.880661 0.101262 0.902584 0.03492397 0.900869 0.03492397 0.880805 0.06650596 0.901362 0.407314 0.941227 0.407368 0.935562 0.439327 0.940992 0.368292 0.940647 0.368393 0.935561 0.407314 0.941227 0.339498 0.940299 0.339662 0.935535 0.368292 0.940647 0.313889 0.940639 0.314039 0.935411 0.339498 0.940299 0.291143 0.941043 0.291438 0.936278 0.313889 0.940639 0.269732 0.940306 0.270174 0.936045 0.291143 0.941043 0.249071 0.938017 0.249481 0.934851 0.269732 0.940306 0.22651 0.935309 0.226971 0.932266 0.249071 0.938017 0.210702 0.933447 0.210915 0.930659 0.22651 0.935309 0.1955029 0.932797 0.195288 0.929963 0.210702 0.933447 0.1955029 0.932797 0.180425 0.933413 0.195288 0.929963 0.180425 0.933413 0.1605229 0.933327 0.180365 0.930016 0.1605229 0.933327 0.141277 0.934013 0.160555 0.929191 0.141277 0.934013 0.120755 0.934577 0.141233 0.929197 0.120755 0.934577 0.101359 0.934731 0.120713 0.929242 0.101359 0.934731 0.06571 0.934049 0.101346 0.929164 0.06571 0.934049 0.03492397 0.933349 0.06573295 0.928225 0.439327 0.877824 0.439327 0.885619 0.406396 0.878272 0.406396 0.878272 0.406641 0.886525 0.371903 0.879705 0.371903 0.879705 0.371676 0.887664 0.343441 0.881094 0.317385 0.882892 0.343441 0.881094 0.316643 0.890341 0.298366 0.884039 0.317385 0.882892 0.298384 0.890341 0.28006 0.885308 0.298366 0.884039 0.280364 0.891472 0.26253 0.885827 0.28006 0.885308 0.262828 0.891744 0.238286 0.886048 0.26253 0.885827 0.238412 0.892242 0.211923 0.885336 0.238286 0.886048 0.211652 0.891233 0.211923 0.885336 0.211652 0.891233 0.1899459 0.883685 0.169553 0.880942 0.1899459 0.883685 0.168452 0.88735 0.169553 0.880942 0.168452 0.88735 0.1513479 0.878299 0.138159 0.875384 0.1513479 0.878299 0.136794 0.881933 0.138159 0.875384 0.136794 0.881933 0.121121 0.872596 0.121121 0.872596 0.120162 0.879136 0.1018249 0.870379 0.1018249 0.870379 0.101158 0.877484 0.06767696 0.868225 0.06767696 0.868225 0.06731599 0.87595 0.03492397 0.868264 0.368393 0.935561 0.36838 0.929495 0.407368 0.935562 0.407284 0.928772 0.439327 0.928187 0.407368 0.935562 0.339662 0.935535 0.339618 0.929807 0.368393 0.935561 0.314039 0.935411 0.313856 0.929138 0.339662 0.935535 0.291438 0.936278 0.29141 0.93029 0.314039 0.935411 0.270174 0.936045 0.270408 0.930741 0.291438 0.936278 0.249481 0.934851 0.249783 0.931036 0.270174 0.936045 0.226971 0.932266 0.227267 0.928706 0.249481 0.934851 0.210915 0.930659 0.211125 0.927338 0.226971 0.932266 0.195288 0.929963 0.1954669 0.926804 0.210915 0.930659 0.180365 0.930016 0.180405 0.926322 0.195288 0.929963 0.180365 0.930016 0.160555 0.929191 0.180405 0.926322 0.160555 0.929191 0.141233 0.929197 0.160555 0.924747 0.141233 0.929197 0.120713 0.929242 0.14113 0.92403 0.120713 0.929242 0.101346 0.929164 0.12072 0.923511 0.101346 0.929164 0.06573295 0.928225 0.101489 0.923187 0.03492397 0.922094 0.065921 0.922064 0.03492397 0.927369 0.406765 0.891559 0.406641 0.886525 0.439327 0.890891 0.371251 0.892681 0.371676 0.887664 0.406765 0.891559 0.341995 0.89449 0.342434 0.889404 0.371251 0.892681 0.341995 0.89449 0.31639 0.894943 0.342434 0.889404 0.31639 0.894943 0.297854 0.89452 0.316643 0.890341 0.279624 0.895381 0.280364 0.891472 0.297854 0.89452 0.261914 0.89548 0.262828 0.891744 0.279624 0.895381 0.237435 0.896041 0.238412 0.892242 0.261914 0.89548 0.211607 0.895005 0.211652 0.891233 0.237435 0.896041 0.211607 0.895005 0.189673 0.894156 0.211652 0.891233 0.189673 0.894156 0.169597 0.891416 0.189112 0.889984 0.169597 0.891416 0.151002 0.889086 0.168452 0.88735 0.151002 0.889086 0.1369529 0.886322 0.150111 0.884856 0.1369529 0.886322 0.120008 0.883433 0.136794 0.881933 0.120008 0.883433 0.1010349 0.881981 0.120162 0.879136 0.067092 0.880661 0.06731599 0.87595 0.1010349 0.881981 0.03492397 0.880805 0.03492397 0.876078 0.067092 0.880661 0.439327 0.877824 0.406396 0.878272 0.439327 0.874711 0.406396 0.878272 0.371903 0.879705 0.406283 0.875591 0.371903 0.879705 0.343441 0.881094 0.371575 0.877154 0.1391929 0.87354 0.138159 0.875384 0.121697 0.870669 0.1018249 0.870379 0.102226 0.868202 0.121121 0.872596 0.06767696 0.868225 0.06778395 0.865706 0.1018249 0.870379 0.03492397 0.868264 0.03492397 0.865263 0.06767696 0.868225 0.343441 0.881094 0.317385 0.882892 0.343539 0.878406 0.317385 0.882892 0.298366 0.884039 0.317591 0.880538 0.152888 0.876306 0.1513479 0.878299 0.1391929 0.87354 0.298366 0.884039 0.28006 0.885308 0.298063 0.882169 0.28006 0.885308 0.26253 0.885827 0.279407 0.883388 0.26253 0.885827 0.238286 0.886048 0.26162 0.884048 0.238286 0.886048 0.211923 0.885336 0.237428 0.883969 0.1899459 0.883685 0.191233 0.881566 0.211923 0.885336 0.169553 0.880942 0.171436 0.879059 0.1899459 0.883685 0.171436 0.879059 0.169553 0.880942 0.152888 0.876306 0.439327 0.943341 0.407291 0.943222 0.439327 0.940992 0.407291 0.943222 0.368411 0.942418 0.407314 0.941227 0.339614 0.941966 0.339498 0.940299 0.368411 0.942418 0.313936 0.942501 0.313889 0.940639 0.339614 0.941966 0.291133 0.942672 0.291143 0.941043 0.313936 0.942501 0.269695 0.94173 0.269732 0.940306 0.291133 0.942672 0.269695 0.94173 0.249341 0.939109 0.269732 0.940306 0.226459 0.936343 0.22651 0.935309 0.249341 0.939109 0.210627 0.934416 0.210702 0.933447 0.226459 0.936343 0.210627 0.934416 0.1954939 0.933731 0.210702 0.933447 0.180299 0.934557 0.180425 0.933413 0.1954939 0.933731 0.160385 0.934719 0.1605229 0.933327 0.180299 0.934557 0.141224 0.935612 0.141277 0.934013 0.160385 0.934719 0.120742 0.936351 0.120755 0.934577 0.141224 0.935612 0.120742 0.936351 0.101339 0.936575 0.120755 0.934577 0.101339 0.936575 0.06571698 0.935992 0.101359 0.934731 0.06571698 0.935992 0.03492397 0.935726 0.06571 0.934049 0.407284 0.928772 0.407025 0.910165 0.439327 0.928187 0.36838 0.929495 0.369815 0.911088 0.407284 0.928772 0.339618 0.929807 0.340806 0.912149 0.36838 0.929495 0.313856 0.929138 0.315123 0.91204 0.339618 0.929807 0.29141 0.93029 0.294632 0.912405 0.313856 0.929138 0.270408 0.930741 0.275016 0.913061 0.29141 0.93029 0.249783 0.931036 0.255849 0.913258 0.270408 0.930741 0.227267 0.928706 0.232351 0.912373 0.249783 0.931036 0.211125 0.927338 0.2113659 0.911172 0.227267 0.928706 0.211125 0.927338 0.1954669 0.926804 0.2113659 0.911172 0.1954669 0.926804 0.180405 0.926322 0.19257 0.91048 0.180405 0.926322 0.160555 0.924747 0.175001 0.908869 0.160555 0.924747 0.14113 0.92403 0.155778 0.906916 0.14113 0.92403 0.12072 0.923511 0.139041 0.905176 0.12072 0.923511 0.101489 0.923187 0.120364 0.903472 0.101489 0.923187 0.065921 0.922064 0.101262 0.902584 0.03492397 0.922094 0.03492397 0.900869 0.065921 0.922064 1.034924 0.900869 1.034924 0.922094 1.066507 0.901362 1.066507 0.901362 1.065921 0.922064 1.101262 0.902584 1.101262 0.902584 1.10149 0.923187 1.120364 0.903472 1.120364 0.903472 1.12072 0.923511 1.139041 0.905176 1.139041 0.905176 1.14113 0.92403 1.155779 0.906916 1.155779 0.906916 1.160555 0.924747 1.175001 0.908869 1.175001 0.908869 1.180405 0.926322 1.19257 0.91048 1.19257 0.91048 1.195467 0.926804 1.211365 0.911171 1.211124 0.927338 1.227267 0.928706 1.211365 0.911171 1.227267 0.928706 1.249783 0.931036 1.232351 0.912374 1.249783 0.931036 1.270408 0.930741 1.255849 0.913258 1.270408 0.930741 1.29141 0.93029 1.275016 0.913061 1.29141 0.93029 1.313857 0.929138 1.294632 0.912405 1.315124 0.91204 1.313857 0.929138 1.340806 0.912149 1.339618 0.929807 1.36838 0.929495 1.340806 0.912149 1.36838 0.929495 1.407284 0.928772 1.369815 0.911088 1.407284 0.928772 1.439327 0.928187 1.407025 0.910165 1.439327 0.858027 1.439327 0.834756 1.405594 0.858941 1.405594 0.858941 1.404392 0.835858 1.369718 0.86004 1.258682 0.869108 1.254198 0.85007 1.234051 0.866975 1.234051 0.866975 1.22944 0.848907 1.213801 0.865414 1.197881 0.863732 1.213801 0.865414 1.203304 0.846835 1.179018 0.86451 1.197881 0.863732 1.191313 0.846641 1.105428 0.851944 1.12594 0.855453 1.111621 0.82707 1.068994 0.846823 1.105428 0.851944 1.071654 0.82063 1.315566 0.866259 1.311156 0.847856 1.295155 0.869269 1.12594 0.855453 1.143497 0.859032 1.133358 0.832872 1.295155 0.869269 1.289581 0.850924 1.275352 0.870581 1.143497 0.859032 1.160008 0.861139 1.154951 0.839271 1.275352 0.870581 1.269612 0.852016 1.258682 0.869108 1.160008 0.861139 1.179018 0.86451 1.173141 0.844182 1.369718 0.86004 1.363748 0.837033 1.340502 0.861627 1.034924 0.84476 1.068994 0.846823 1.034924 0.817077 1.335639 0.840714 1.311156 0.847856 1.340502 0.861627 1.439327 0.963446 1.439327 0.943342 1.406905 0.962587 1.406905 0.962587 1.407291 0.943222 1.369226 0.960907 1.369226 0.960907 1.368411 0.942418 1.341177 0.959556 1.315021 0.96017 1.341177 0.959556 1.313936 0.942501 1.315021 0.96017 1.313936 0.942501 1.291345 0.95908 1.291345 0.95908 1.291133 0.942672 1.269143 0.95667 1.269143 0.95667 1.269695 0.94173 1.251632 0.952677 1.251632 0.952677 1.249341 0.939109 1.226029 0.948478 1.226029 0.948478 1.226459 0.936343 1.209621 0.946427 1.194531 0.945622 1.209621 0.946427 1.195494 0.933731 1.179483 0.946925 1.194531 0.945622 1.180299 0.934557 1.159949 0.948761 1.179483 0.946925 1.160385 0.934719 1.141609 0.951204 1.159949 0.948761 1.141224 0.935612 1.121169 0.953398 1.141609 0.951204 1.120742 0.936351 1.101211 0.954574 1.121169 0.953398 1.101339 0.936575 1.065774 0.954834 1.101211 0.954574 1.065718 0.935992 1.034924 0.955386 1.065774 0.954834 1.034924 0.935726 0.439327 0.858027 0.405594 0.858941 0.439327 0.834756 0.405594 0.858941 0.369718 0.86004 0.404392 0.835858 0.258682 0.869108 0.234051 0.866975 0.254198 0.85007 0.234051 0.866975 0.213801 0.865414 0.22944 0.848907 0.215619 0.848179 0.213801 0.865414 0.2033039 0.846835 0.2033039 0.846835 0.197881 0.863732 0.191313 0.846641 0.133358 0.832872 0.12594 0.855453 0.111621 0.82707 0.105428 0.851944 0.06899398 0.846823 0.111621 0.82707 0.289581 0.850924 0.311156 0.847856 0.295155 0.869269 0.12594 0.855453 0.133358 0.832872 0.143497 0.859032 0.269612 0.852016 0.289581 0.850924 0.275352 0.870581 0.143497 0.859032 0.154951 0.839271 0.160008 0.861139 0.254198 0.85007 0.269612 0.852016 0.258682 0.869108 0.191313 0.846641 0.179018 0.86451 0.173141 0.844182 0.369718 0.86004 0.340502 0.861627 0.363748 0.837033 0.06899398 0.846823 0.03492397 0.84476 0.07165396 0.82063 0.311156 0.847856 0.335639 0.840714 0.315566 0.866259 0.439327 0.943341 0.439327 0.963446 0.407291 0.943222 0.406905 0.962587 0.369226 0.960907 0.407291 0.943222 0.369226 0.960907 0.341177 0.959556 0.368411 0.942418 0.339614 0.941966 0.341177 0.959556 0.313936 0.942501 0.315021 0.96017 0.291345 0.95908 0.313936 0.942501 0.291345 0.95908 0.269143 0.95667 0.291133 0.942672 0.269143 0.95667 0.251632 0.952677 0.269695 0.94173 0.251632 0.952677 0.226029 0.948477 0.249341 0.939109 0.226029 0.948477 0.209621 0.946427 0.226459 0.936343 0.209621 0.946427 0.194531 0.945622 0.210627 0.934416 0.1954939 0.933731 0.194531 0.945622 0.180299 0.934557 0.180299 0.934557 0.1794829 0.946925 0.160385 0.934719 0.160385 0.934719 0.159949 0.948761 0.141224 0.935612 0.141224 0.935612 0.141609 0.951204 0.120742 0.936351 0.120742 0.936351 0.121169 0.953398 0.101339 0.936575 0.101339 0.936575 0.101211 0.954574 0.06571698 0.935992 0.06577396 0.954834 0.03492397 0.955386 0.06571698 0.935992 1.406283 0.875591 1.439327 0.874711 1.405594 0.858941 1.369718 0.86004 1.371575 0.877154 1.405594 0.858941 1.340502 0.861627 1.343539 0.878406 1.369718 0.86004 1.340502 0.861627 1.315566 0.866259 1.343539 0.878406 1.295155 0.869269 1.298063 0.882169 1.315566 0.866259 1.275352 0.870581 1.279407 0.883388 1.295155 0.869269 1.258682 0.869108 1.26162 0.884048 1.275352 0.870581 1.234051 0.866975 1.237428 0.883969 1.258682 0.869108 1.213801 0.865414 1.212114 0.883258 1.234051 0.866975 1.191233 0.881566 1.212114 0.883258 1.197881 0.863732 1.171436 0.879059 1.191233 0.881566 1.179018 0.86451 1.152888 0.876306 1.171436 0.879059 1.160008 0.861139 1.139193 0.87354 1.152888 0.876306 1.143497 0.859032 1.121697 0.870669 1.139193 0.87354 1.12594 0.855453 1.102226 0.868202 1.121697 0.870669 1.105428 0.851944 1.067784 0.865706 1.102226 0.868202 1.068994 0.846823 1.034924 0.865263 1.067784 0.865706 1.034924 0.84476 0.439327 0.874711 0.406283 0.875591 0.439327 0.858027 0.406283 0.875591 0.371575 0.877154 0.405594 0.858941 0.371575 0.877154 0.343539 0.878406 0.369718 0.86004 0.315566 0.866259 0.340502 0.861627 0.317591 0.880538 0.295155 0.869269 0.315566 0.866259 0.298063 0.882169 0.275352 0.870581 0.295155 0.869269 0.279407 0.883388 0.258682 0.869108 0.275352 0.870581 0.26162 0.884048 0.26162 0.884048 0.237428 0.883969 0.258682 0.869108 0.237428 0.883969 0.212114 0.883258 0.234051 0.866975 0.191233 0.881566 0.197881 0.863732 0.212114 0.883258 0.171436 0.879059 0.179018 0.86451 0.191233 0.881566 0.152888 0.876306 0.160008 0.861139 0.171436 0.879059 0.1391929 0.87354 0.143497 0.859032 0.152888 0.876306 0.121697 0.870669 0.12594 0.855453 0.1391929 0.87354 0.102226 0.868202 0.105428 0.851944 0.121697 0.870669 0.06778395 0.865706 0.06899398 0.846823 0.102226 0.868202 0.06778395 0.865706 0.03492397 0.865263 0.06899398 0.846823 0.708191 0.963129 0.712186 0.956682 0.742497 0.99468 0.674316 0.937346 0.677234 0.930585 0.708191 0.963129 0.642599 0.917483 0.645055 0.91094 0.674316 0.937346 0.608837 0.902387 0.611231 0.896164 0.642599 0.917483 0.576899 0.89357 0.579184 0.887491 0.608837 0.902387 0.548498 0.888804 0.550705 0.88303 0.576899 0.89357 0.518747 0.887486 0.520366 0.881647 0.548498 0.888804 0.462529 0.888108 0.461426 0.882087 0.487269 0.886967 0.734218 0.926412 0.740583 0.915656 0.776141 0.959735 0.746411 0.91033 0.788883 0.942899 0.740583 0.915656 0.702227 0.890434 0.740583 0.915656 0.69587 0.900088 0.746411 0.91033 0.740583 0.915656 0.709005 0.88481 0.662088 0.880826 0.667781 0.871973 0.69587 0.900088 0.709005 0.88481 0.702227 0.890434 0.670939 0.863734 0.623808 0.864653 0.627679 0.855247 0.662088 0.880826 0.670939 0.863734 0.667781 0.871973 0.630822 0.84681 0.587664 0.855048 0.59021 0.845346 0.623808 0.864653 0.630822 0.84681 0.627679 0.855247 0.592889 0.836943 0.556188 0.850118 0.557807 0.840391 0.587664 0.855048 0.592889 0.836943 0.59021 0.845346 0.5595 0.832044 0.52322 0.84707 0.524056 0.837002 0.556188 0.850118 0.5595 0.832044 0.557807 0.840391 0.525053 0.828491 0.458976 0.845289 0.458945 0.834404 0.487636 0.845716 0.488832 0.826853 0.487908 0.835317 0.460238 0.825594 0.712186 0.956682 0.727549 0.936585 0.748483 0.98959 0.677234 0.930585 0.690079 0.909923 0.712186 0.956682 0.645055 0.91094 0.655614 0.890448 0.677234 0.930585 0.611231 0.896164 0.619317 0.875669 0.645055 0.91094 0.579184 0.887491 0.584562 0.866361 0.611231 0.896164 0.550705 0.88303 0.554014 0.861595 0.579184 0.887491 0.520366 0.881647 0.521891 0.859116 0.550705 0.88303 0.461426 0.882087 0.459682 0.858147 0.487584 0.881091 0.727549 0.936585 0.734218 0.926412 0.767621 0.969542 0.690079 0.909923 0.69587 0.900088 0.727549 0.936585 0.655614 0.890448 0.662088 0.880826 0.690079 0.909923 0.619317 0.875669 0.623808 0.864653 0.655614 0.890448 0.584562 0.866361 0.587664 0.855048 0.619317 0.875669 0.554014 0.861595 0.556188 0.850118 0.584562 0.866361 0.521891 0.859116 0.52322 0.84707 0.554014 0.861595 0.459682 0.858147 0.458976 0.845289 0.487419 0.858053 0.525053 0.828491 0.524056 0.837002 0.488832 0.826853 0.487636 0.845716 0.487908 0.835317 0.52322 0.84707 0.487269 0.886967 0.487584 0.881091 0.518747 0.887486 0.487584 0.881091 0.487419 0.858053 0.520366 0.881647 0.487419 0.858053 0.487636 0.845716 0.521891 0.859116 0.06103497 0.544369 0.07815295 0.547649 0.06034499 0.565856 0.01885294 0.530652 0.04046696 0.53845 0.01529997 0.554434 1.161015 0.523695 1.137454 0.530652 1.164351 0.549417 0.06034499 0.565856 0.07815295 0.570028 0.06002497 0.58869 0.01529997 0.554434 0.03776699 0.560956 0.01377296 0.580315 1.142534 0.580315 1.167182 0.578459 1.141006 0.554434 1.192369 0.5483 1.222709 0.547572 1.193034 0.518628 1.303619 0.509134 1.301708 0.516872 1.342324 0.52719 1.263767 0.49608 1.263667 0.503828 1.303619 0.509134 1.224932 0.489899 1.224513 0.497461 1.263767 0.49608 1.193034 0.518628 1.224513 0.497461 1.185727 0.48985 1.153331 0.4969 1.161015 0.523695 1.185727 0.48985 1.137454 0.530652 1.161015 0.523695 1.129469 0.506655 0.04046696 0.53845 0.01885294 0.530652 0.04650598 0.516804 0.07815295 0.547649 0.06103497 0.544369 0.07815295 0.520609 1.314022 0.619924 1.308283 0.59738 1.286704 0.627634 1.286704 0.627634 1.283393 0.598536 1.25642 0.633828 1.25642 0.633828 1.253697 0.599553 1.228936 0.636288 1.228936 0.636288 1.22296 0.600519 1.199185 0.63784 1.199185 0.63784 1.193892 0.602695 1.169663 0.638019 1.169663 0.638019 1.167706 0.60557 1.146589 0.63861 0.009716987 0.63861 0.01207494 0.608246 0.03309899 0.639527 0.05862599 0.638172 0.05981194 0.612293 0.07815295 0.637053 1.336248 0.666586 1.314022 0.619924 1.308431 0.679891 1.308431 0.679891 1.286704 0.627634 1.276734 0.693036 1.276734 0.693036 1.25642 0.633828 1.236955 0.677253 1.236955 0.677253 1.228936 0.636288 1.20394 0.662677 0.03309899 0.639527 0.03204494 0.65864 0.009716987 0.63861 0.057181 0.655805 0.05862599 0.638172 0.07815295 0.654012 0.04046696 0.53845 0.06103497 0.544369 0.03776699 0.560956 0.03776699 0.560956 0.06034499 0.565856 0.03644496 0.584704 0.05981194 0.612293 0.05862599 0.638172 0.03590095 0.61057 0.05862599 0.638172 0.057181 0.655805 0.03309899 0.639527 0.06103497 0.544369 0.04046696 0.53845 0.06432598 0.522419 1.296076 0.774514 1.281068 0.797495 1.30808 0.794982 1.30808 0.794982 1.300877 0.807383 1.32472 0.811034 1.32472 0.811034 1.321886 0.822484 1.3465 0.82083 1.21722 0.834001 1.221738 0.816443 1.210737 0.832136 1.221738 0.816443 1.227061 0.801299 1.214603 0.812332 1.214104 0.786495 1.227061 0.801299 1.235251 0.776053 1.258777 0.789512 1.261732 0.770926 1.240299 0.79009 1.296076 0.774514 1.261732 0.770926 1.281068 0.797495 0.05580997 0.692325 0.05701899 0.674097 0.07815295 0.689057 1.142576 0.698498 1.168134 0.698022 1.145469 0.682638 0.05701899 0.674097 0.05580997 0.692325 0.03499698 0.678267 0.05587399 0.707348 0.05580997 0.692325 0.07815295 0.705416 0.07815295 0.705416 0.07815295 0.728375 0.05587399 0.707348 0.05580997 0.692325 0.05587399 0.707348 0.03504496 0.69663 0.05587399 0.707348 0.056005 0.72735 0.03558498 0.711037 1.168387 0.712993 1.168134 0.698022 1.141643 0.713061 1.141643 0.713061 1.140944 0.72837 1.168387 0.712993 1.236955 0.677253 1.209407 0.695069 1.243918 0.704929 1.171407 0.746194 1.1679 0.728795 1.139288 0.740037 0.03682398 0.727344 0.056005 0.72735 0.03716999 0.738487 0.056005 0.72735 0.07815295 0.728375 0.056921 0.740427 1.214991 0.743293 1.212366 0.730364 1.171407 0.746194 1.302206 0.728239 1.276734 0.693036 1.255364 0.735939 1.327469 0.712135 1.308431 0.679891 1.302206 0.728239 1.336248 0.666586 1.308431 0.679891 1.353355 0.696007 1.255364 0.735939 1.250302 0.723842 1.214991 0.743293 0.01536196 0.72837 0.03682398 0.727344 0.01701796 0.740037 0.03558498 0.711037 0.03682398 0.727344 0.01466298 0.713061 0.01466298 0.713061 0.01372998 0.698498 0.03558498 0.711037 0.01372998 0.698498 0.01083695 0.682638 0.03504496 0.69663 1.295705 0.745065 1.302206 0.728239 1.259851 0.745743 1.259851 0.745743 1.255364 0.735939 1.221466 0.75282 1.261282 0.757884 1.259851 0.745743 1.228551 0.764063 1.293952 0.760115 1.295705 0.745065 1.261282 0.757884 1.221466 0.75282 1.214991 0.743293 1.191432 0.759281 1.228551 0.764063 1.221466 0.75282 1.20536 0.772634 1.235251 0.776053 1.228551 0.764063 1.214104 0.786495 1.261732 0.770926 1.261282 0.757884 1.235251 0.776053 1.296076 0.774514 1.293952 0.760115 1.261732 0.770926 1.250302 0.723842 1.243918 0.704929 1.212366 0.730364 0.05701899 0.674097 0.057181 0.655805 0.07815295 0.668842 0.057181 0.655805 0.05701899 0.674097 0.03204494 0.65864 0.006424963 0.661487 0.03204494 0.65864 0.01083695 0.682638 1.145469 0.682638 1.169883 0.683213 1.149882 0.661487 1.169663 0.638019 1.17223 0.664053 1.199185 0.63784 1.169883 0.683213 1.207246 0.679195 1.17223 0.664053 1.168387 0.712993 1.1679 0.728795 1.2106 0.71091 1.168134 0.698022 1.209407 0.695069 1.169883 0.683213 1.168387 0.712993 1.2106 0.71091 1.168134 0.698022 1.255953 0.555054 1.260668 0.519051 1.222709 0.547572 1.222709 0.547572 1.192369 0.5483 1.222411 0.56067 1.222709 0.547572 1.222411 0.56067 1.255953 0.555054 1.260668 0.519051 1.263667 0.503828 1.223808 0.511171 1.285508 0.572306 1.288084 0.56313 1.254441 0.566266 1.311831 0.580991 1.315626 0.573958 1.285508 0.572306 1.288084 0.56313 1.295397 0.530986 1.255953 0.555054 1.315626 0.573958 1.330628 0.546567 1.288084 0.56313 1.295397 0.530986 1.301708 0.516872 1.260668 0.519051 1.330628 0.546567 1.338907 0.534199 1.295397 0.530986 1.222625 0.580515 1.222411 0.56067 1.191435 0.579754 1.254158 0.583063 1.254441 0.566266 1.222625 0.580515 1.284104 0.585599 1.285508 0.572306 1.254158 0.583063 1.309069 0.589389 1.311831 0.580991 1.284104 0.585599 0.05981194 0.612293 0.06002497 0.58869 0.07815295 0.613371 0.03644496 0.584704 0.06002497 0.58869 0.03590095 0.61057 0.01377296 0.580315 0.03644496 0.584704 0.01207494 0.608246 1.144232 0.608246 1.167706 0.60557 1.142534 0.580315 1.193892 0.602695 1.191435 0.579754 1.167706 0.60557 1.22296 0.600519 1.222625 0.580515 1.193892 0.602695 1.253697 0.599553 1.254158 0.583063 1.22296 0.600519 1.283393 0.598536 1.284104 0.585599 1.253697 0.599553 1.308283 0.59738 1.309069 0.589389 1.283393 0.598536 1.191435 0.579754 1.19162 0.557685 1.167182 0.578459 1.164351 0.549417 1.192369 0.5483 1.161015 0.523695 1.146589 0.63861 1.149882 0.661487 1.169663 0.638019 0.07815295 0.547649 0.09527099 0.544368 0.07815295 0.570028 0.137454 0.530652 0.1410059 0.554434 0.115839 0.53845 0.161015 0.523695 0.164351 0.549417 0.137454 0.530652 0.09596097 0.565856 0.09628099 0.58869 0.07815295 0.570028 0.1410059 0.554434 0.142534 0.580315 0.11854 0.560956 0.142534 0.580315 0.1410059 0.554434 0.167182 0.578459 0.223808 0.511171 0.222709 0.547572 0.1930339 0.518628 0.301709 0.516872 0.303619 0.509134 0.338907 0.534199 0.263667 0.503828 0.263767 0.49608 0.301709 0.516872 0.2245129 0.497461 0.224932 0.489899 0.263667 0.503828 0.1930339 0.518628 0.185727 0.48985 0.2245129 0.497461 0.161015 0.523695 0.153331 0.4969 0.1930339 0.518628 0.137454 0.530652 0.129469 0.506655 0.161015 0.523695 0.115839 0.53845 0.1098 0.516804 0.137454 0.530652 0.09527099 0.544368 0.07815295 0.547649 0.09198099 0.52242 0.283393 0.598536 0.308283 0.59738 0.286704 0.627634 0.253697 0.599553 0.283393 0.598536 0.25642 0.633828 0.2229599 0.600519 0.253697 0.599553 0.228936 0.636288 0.193892 0.602695 0.2229599 0.600519 0.199185 0.63784 0.193892 0.602695 0.199185 0.63784 0.167706 0.60557 0.167706 0.60557 0.169664 0.638019 0.144232 0.608246 0.120405 0.61057 0.144232 0.608246 0.123207 0.639527 0.09649395 0.612293 0.09768098 0.638172 0.07815295 0.613371 0.286704 0.627634 0.314022 0.619924 0.308431 0.679891 0.25642 0.633828 0.286704 0.627634 0.276734 0.693036 0.228936 0.636288 0.25642 0.633828 0.236955 0.677253 0.236955 0.677253 0.20394 0.662677 0.228936 0.636288 0.123207 0.639527 0.146589 0.63861 0.124261 0.65864 0.09768098 0.638172 0.09912598 0.655805 0.07815295 0.637053 0.09596097 0.565856 0.09527099 0.544368 0.11854 0.560956 0.09628099 0.58869 0.09596097 0.565856 0.119862 0.584704 0.09649395 0.612293 0.120405 0.61057 0.09768098 0.638172 0.09768098 0.638172 0.123207 0.639527 0.09912598 0.655805 0.115839 0.53845 0.09527099 0.544368 0.1098 0.516804 0.300877 0.807383 0.281068 0.797495 0.30808 0.794982 0.321886 0.822484 0.300877 0.807383 0.32472 0.811034 0.343172 0.830729 0.321886 0.822484 0.346501 0.82083 0.21722 0.834001 0.210737 0.832136 0.221738 0.816443 0.221738 0.816443 0.214603 0.812332 0.227061 0.801299 0.240299 0.79009 0.227061 0.801299 0.235251 0.776053 0.235251 0.776053 0.261732 0.770926 0.240299 0.79009 0.296076 0.774514 0.281068 0.797495 0.261732 0.770926 0.09928798 0.674097 0.100497 0.692325 0.07815295 0.668842 0.169883 0.683213 0.168134 0.698022 0.14547 0.682638 0.09928798 0.674097 0.121309 0.678267 0.100497 0.692325 0.100497 0.692325 0.100432 0.707348 0.07815295 0.689057 0.07815295 0.728375 0.07815295 0.705416 0.100301 0.72735 0.100497 0.692325 0.121262 0.696631 0.100432 0.707348 0.100301 0.72735 0.100432 0.707348 0.119483 0.727344 0.168134 0.698022 0.1683869 0.712993 0.142576 0.698498 0.1679 0.728795 0.140944 0.72837 0.1683869 0.712993 0.236955 0.677253 0.243918 0.704929 0.209407 0.695069 0.140944 0.72837 0.1679 0.728795 0.139288 0.740037 0.09938597 0.740427 0.100301 0.72735 0.119137 0.738487 0.100301 0.72735 0.09938597 0.740427 0.07815295 0.728375 0.1679 0.728795 0.212366 0.730364 0.171407 0.746194 0.250302 0.723842 0.276734 0.693036 0.255364 0.735939 0.276734 0.693036 0.308431 0.679891 0.302206 0.728239 0.308431 0.679891 0.336248 0.666586 0.327469 0.712135 0.212366 0.730364 0.250302 0.723842 0.214991 0.743293 0.119483 0.727344 0.140944 0.72837 0.119137 0.738487 0.119483 0.727344 0.120722 0.711037 0.140944 0.72837 0.121262 0.696631 0.142576 0.698498 0.120722 0.711037 0.14547 0.682638 0.142576 0.698498 0.121309 0.678267 0.255364 0.735939 0.302206 0.728239 0.259851 0.745743 0.214991 0.743293 0.255364 0.735939 0.221466 0.75282 0.221466 0.75282 0.259851 0.745743 0.228551 0.764063 0.259851 0.745743 0.295705 0.745065 0.261282 0.757884 0.171407 0.746194 0.214991 0.743293 0.1914319 0.759281 0.1914319 0.759281 0.221466 0.75282 0.2053599 0.772634 0.2053599 0.772634 0.228551 0.764063 0.214105 0.786495 0.228551 0.764063 0.261282 0.757884 0.235251 0.776053 0.293952 0.760115 0.296076 0.774514 0.261282 0.757884 0.243918 0.704929 0.250302 0.723842 0.2106 0.71091 0.09912598 0.655805 0.09928798 0.674097 0.07815295 0.654012 0.09912598 0.655805 0.124261 0.65864 0.09928798 0.674097 0.149882 0.661487 0.14547 0.682638 0.124261 0.65864 0.14547 0.682638 0.149882 0.661487 0.169883 0.683213 0.20394 0.662677 0.17223 0.664053 0.199185 0.63784 0.169883 0.683213 0.17223 0.664053 0.207246 0.679195 0.1679 0.728795 0.1683869 0.712993 0.212366 0.730364 0.207246 0.679195 0.209407 0.695069 0.169883 0.683213 0.1683869 0.712993 0.168134 0.698022 0.2106 0.71091 0.255953 0.555054 0.222709 0.547572 0.260668 0.519051 0.19162 0.557685 0.1923699 0.5483 0.222411 0.56067 0.254441 0.566266 0.222411 0.56067 0.255953 0.555054 0.263667 0.503828 0.260668 0.519051 0.2245129 0.497461 0.285508 0.572306 0.254441 0.566266 0.288084 0.56313 0.315626 0.573958 0.311831 0.580991 0.288084 0.56313 0.260668 0.519051 0.295397 0.530986 0.255953 0.555054 0.295397 0.530986 0.330628 0.546567 0.288084 0.56313 0.301709 0.516872 0.295397 0.530986 0.263667 0.503828 0.338907 0.534199 0.330628 0.546567 0.301709 0.516872 0.19162 0.557685 0.222411 0.56067 0.1914359 0.579754 0.222411 0.56067 0.254441 0.566266 0.222625 0.580515 0.254441 0.566266 0.285508 0.572306 0.254158 0.583063 0.309069 0.589389 0.284104 0.585599 0.311831 0.580991 0.09628099 0.58869 0.09649395 0.612293 0.07815295 0.591459 0.09649395 0.612293 0.09628099 0.58869 0.120405 0.61057 0.142534 0.580315 0.144232 0.608246 0.119862 0.584704 0.144232 0.608246 0.142534 0.580315 0.167706 0.60557 0.167182 0.578459 0.1914359 0.579754 0.167706 0.60557 0.1914359 0.579754 0.222625 0.580515 0.193892 0.602695 0.222625 0.580515 0.254158 0.583063 0.2229599 0.600519 0.284104 0.585599 0.283393 0.598536 0.254158 0.583063 0.309069 0.589389 0.308283 0.59738 0.284104 0.585599 0.164351 0.549417 0.19162 0.557685 0.167182 0.578459 0.1930339 0.518628 0.1923699 0.5483 0.161015 0.523695 0.17223 0.664053 0.149882 0.661487 0.169664 0.638019 0.671813 0.450479 0.684185 0.448473 0.67216 0.452416 0.684185 0.448473 0.698362 0.444904 0.684644 0.4504 0.576825 0.419719 0.580039 0.418348 0.59545 0.432328 0.597071 0.430131 0.613812 0.439155 0.59545 0.432328 0.61241 0.441083 0.613812 0.439155 0.627698 0.445845 0.628372 0.443885 0.642977 0.447905 0.627698 0.445845 0.642977 0.447905 0.656716 0.450286 0.642615 0.449959 0.656716 0.450286 0.671813 0.450479 0.657049 0.452413 0.708179 0.483861 0.691525 0.485639 0.70276 0.46016 0.58167 0.474475 0.559683 0.464082 0.588168 0.447451 0.599803 0.480408 0.58167 0.474475 0.606795 0.455683 0.623055 0.459856 0.616672 0.483875 0.606795 0.455683 0.687291 0.46276 0.691525 0.485639 0.671582 0.464747 0.638721 0.462852 0.633413 0.486965 0.623055 0.459856 0.655826 0.465276 0.651527 0.489284 0.638721 0.462852 0.671582 0.464747 0.671702 0.488899 0.655826 0.465276 0.656469 0.456493 0.657049 0.452413 0.671979 0.456415 0.684644 0.4504 0.685216 0.454739 0.67216 0.452416 0.701713 0.451068 0.685216 0.454739 0.699988 0.446724 0.593135 0.437137 0.573099 0.424548 0.59545 0.432328 0.610804 0.445698 0.593135 0.437137 0.61241 0.441083 0.626429 0.450459 0.610804 0.445698 0.627698 0.445845 0.64149 0.454278 0.626429 0.450459 0.642615 0.449959 0.657049 0.452413 0.656469 0.456493 0.642615 0.449959 0.671979 0.456415 0.671582 0.464747 0.656469 0.456493 0.671979 0.456415 0.685216 0.454739 0.671582 0.464747 0.685216 0.454739 0.701713 0.451068 0.687291 0.46276 0.573099 0.424548 0.593135 0.437137 0.568838 0.436391 0.593135 0.437137 0.610804 0.445698 0.588168 0.447451 0.626429 0.450459 0.623055 0.459856 0.610804 0.445698 0.64149 0.454278 0.638721 0.462852 0.626429 0.450459 0.656469 0.456493 0.655826 0.465276 0.64149 0.454278 0.582014 0.578793 0.578003 0.602656 0.559541 0.576889 0.602028 0.573868 0.599956 0.599576 0.582014 0.578793 0.621861 0.576495 0.618176 0.601055 0.602028 0.573868 0.640267 0.608152 0.618176 0.601055 0.643608 0.583228 0.660186 0.614955 0.640267 0.608152 0.662525 0.590924 0.685957 0.593517 0.683189 0.618629 0.662525 0.590924 0.683189 0.618629 0.685957 0.593517 0.707031 0.619288 0.534963 0.569663 0.559541 0.576889 0.53101 0.595081 0.605103 0.558829 0.585702 0.561416 0.607241 0.535696 0.626711 0.537648 0.623016 0.558946 0.607241 0.535696 0.644356 0.563885 0.623016 0.558946 0.646976 0.541759 0.670072 0.538259 0.664721 0.569806 0.646976 0.541759 0.647418 0.515201 0.629466 0.511283 0.651527 0.489284 0.671702 0.488899 0.671086 0.514402 0.651527 0.489284 0.691525 0.485639 0.69082 0.507895 0.671702 0.488899 0.69082 0.507895 0.691525 0.485639 0.711897 0.506194 0.559683 0.464082 0.58167 0.474475 0.549604 0.487352 0.594954 0.508984 0.573663 0.501227 0.599803 0.480408 0.612165 0.510785 0.594954 0.508984 0.616672 0.483875 0.633413 0.486965 0.629466 0.511283 0.616672 0.483875 0.685957 0.593517 0.696671 0.568548 0.709639 0.592579 0.536191 0.543871 0.563145 0.556183 0.534963 0.569663 0.582014 0.578793 0.559541 0.576889 0.585702 0.561416 0.605103 0.558829 0.602028 0.573868 0.585702 0.561416 0.623016 0.558946 0.621861 0.576495 0.605103 0.558829 0.643608 0.583228 0.621861 0.576495 0.644356 0.563885 0.662525 0.590924 0.643608 0.583228 0.664721 0.569806 0.696671 0.568548 0.685957 0.593517 0.664721 0.569806 0.690778 0.531685 0.69082 0.507895 0.714173 0.528495 0.549604 0.487352 0.573663 0.501227 0.541613 0.509198 0.590199 0.530784 0.569172 0.519526 0.594954 0.508984 0.612165 0.510785 0.607241 0.535696 0.594954 0.508984 0.629466 0.511283 0.626711 0.537648 0.612165 0.510785 0.646976 0.541759 0.626711 0.537648 0.647418 0.515201 0.671086 0.514402 0.670072 0.538259 0.647418 0.515201 0.69082 0.507895 0.690778 0.531685 0.671086 0.514402 0.585702 0.561416 0.563145 0.556183 0.590199 0.530784 0.541613 0.509198 0.569172 0.519526 0.536191 0.543871 0.696671 0.568548 0.690778 0.531685 0.713439 0.565687 0.690778 0.531685 0.696671 0.568548 0.670072 0.538259 0.649349 0.782039 0.631415 0.785668 0.64491 0.765116 0.64491 0.765116 0.627169 0.767485 0.643397 0.742154 0.631415 0.785668 0.649349 0.782039 0.636709 0.806371 0.643397 0.742154 0.625275 0.744083 0.645379 0.722447 0.645379 0.722447 0.627446 0.721917 0.647997 0.702013 0.64722 0.634731 0.665267 0.642563 0.641085 0.655244 0.647997 0.702013 0.630298 0.698024 0.651937 0.682814 0.651937 0.682814 0.635432 0.676871 0.658222 0.66241 0.602901 0.771519 0.605399 0.790478 0.546171 0.78903 0.541879 0.756086 0.600354 0.748744 0.542869 0.764278 0.552794 0.804216 0.605399 0.790478 0.554194 0.810919 0.538763 0.721176 0.601462 0.721042 0.538443 0.731227 0.605724 0.691497 0.601462 0.721042 0.542784 0.693267 0.620863 0.627397 0.616426 0.647185 0.566417 0.625455 0.611861 0.668922 0.605724 0.691497 0.550213 0.665189 0.559044 0.640811 0.616426 0.647185 0.55733 0.648587 0.663528 0.795892 0.65602 0.801688 0.657888 0.779106 0.657888 0.779106 0.649349 0.782039 0.653509 0.763442 0.653509 0.763442 0.64491 0.765116 0.652183 0.742489 0.654345 0.722616 0.652183 0.742489 0.645379 0.722447 0.665774 0.666385 0.658222 0.66241 0.672153 0.648896 0.654345 0.722616 0.645379 0.722447 0.656798 0.70287 0.656798 0.70287 0.647997 0.702013 0.660074 0.685379 0.660074 0.685379 0.651937 0.682814 0.665774 0.666385 0.605036 0.771229 0.602939 0.748517 0.610741 0.770449 0.607957 0.789994 0.605036 0.771229 0.614027 0.789138 0.618339 0.81068 0.61186 0.810323 0.614027 0.789138 0.602939 0.748517 0.604387 0.721334 0.608954 0.747606 0.624596 0.648992 0.619032 0.647736 0.630131 0.627141 0.610577 0.721751 0.604387 0.721334 0.614216 0.693827 0.608514 0.692147 0.614344 0.669683 0.614216 0.693827 0.619605 0.671242 0.614344 0.669683 0.624596 0.648992 0.614027 0.789138 0.631415 0.785668 0.618339 0.81068 0.630131 0.627141 0.64722 0.634731 0.624596 0.648992 0.635432 0.676871 0.619605 0.671242 0.641085 0.655244 0.630298 0.698024 0.614216 0.693827 0.635432 0.676871 0.627446 0.721917 0.610577 0.721751 0.630298 0.698024 0.627446 0.721917 0.625275 0.744083 0.610577 0.721751 0.625275 0.744083 0.627169 0.767485 0.608954 0.747606 0.631415 0.785668 0.614027 0.789138 0.627169 0.767485 0.477296 0.66423 0.470729 0.680422 0.460017 0.658347 0.470729 0.680422 0.466245 0.703014 0.453459 0.675769 0.460017 0.658347 0.467881 0.638547 0.477296 0.66423 0.44852 0.698714 0.466245 0.703014 0.447743 0.720989 0.465607 0.722862 0.465442 0.74352 0.447743 0.720989 0.455201 0.810215 0.452045 0.788977 0.47424 0.805001 0.465442 0.74352 0.466701 0.763141 0.447333 0.745055 0.466701 0.763141 0.470067 0.784292 0.449498 0.766736 0.485375 0.668229 0.479037 0.683198 0.477296 0.66423 0.437595 0.670656 0.431495 0.668948 0.443301 0.652708 0.479037 0.683198 0.47501 0.703835 0.470729 0.680422 0.432804 0.69306 0.426329 0.69116 0.437595 0.670656 0.436803 0.650941 0.443154 0.631448 0.443301 0.652708 0.493085 0.652323 0.485375 0.668229 0.486391 0.645635 0.466245 0.703014 0.47501 0.703835 0.465607 0.722862 0.431029 0.718909 0.424171 0.718458 0.432804 0.69306 0.465607 0.722862 0.474536 0.723893 0.465442 0.74352 0.4243 0.747987 0.424171 0.718458 0.430833 0.747004 0.437129 0.815301 0.430041 0.814604 0.434808 0.792819 0.478128 0.781404 0.481981 0.799689 0.470067 0.784292 0.474302 0.743872 0.475139 0.761724 0.465442 0.74352 0.427033 0.770996 0.4243 0.747987 0.433056 0.770099 0.475139 0.761724 0.478128 0.781404 0.466701 0.763141 0.428484 0.793311 0.427033 0.770996 0.434808 0.792819 0.377921 0.639012 0.434664 0.650229 0.376161 0.645518 0.42969 0.668449 0.424084 0.690755 0.368955 0.667703 0.440657 0.63193 0.434664 0.650229 0.386429 0.623761 0.424084 0.690755 0.421556 0.718402 0.360337 0.699984 0.359693 0.727224 0.421556 0.718402 0.359848 0.738012 0.372763 0.800413 0.42614 0.79344 0.373353 0.807626 0.362239 0.758137 0.421771 0.748159 0.363338 0.766461 0.424755 0.771324 0.42614 0.79344 0.368012 0.783616 0.443301 0.652708 0.450256 0.631954 0.460017 0.658347 0.437129 0.815301 0.434808 0.792819 0.455201 0.810215 0.449498 0.766736 0.452045 0.788977 0.433056 0.770099 0.447333 0.745055 0.449498 0.766736 0.430833 0.747004 0.447743 0.720989 0.447333 0.745055 0.431029 0.718909 0.432804 0.69306 0.44852 0.698714 0.431029 0.718909 0.437595 0.670656 0.453459 0.675769 0.432804 0.69306 0.460017 0.658347 0.453459 0.675769 0.443301 0.652708 0.61186 0.810323 0.609109 0.809431 0.607957 0.789994 0.605399 0.790478 0.602901 0.771519 0.607957 0.789994 0.605036 0.771229 0.602901 0.771519 0.602939 0.748517 0.602939 0.748517 0.600354 0.748744 0.604387 0.721334 0.616426 0.647185 0.620863 0.627397 0.619032 0.647736 0.604387 0.721334 0.601462 0.721042 0.608514 0.692147 0.605724 0.691497 0.611861 0.668922 0.608514 0.692147 0.614344 0.669683 0.611861 0.668922 0.619032 0.647736 0.431495 0.668948 0.42969 0.668449 0.436803 0.650941 0.443154 0.631448 0.436803 0.650941 0.440657 0.63193 0.424084 0.690755 0.42969 0.668449 0.426329 0.69116 0.421556 0.718402 0.424084 0.690755 0.424171 0.718458 0.42614 0.79344 0.428484 0.793311 0.427652 0.81372 0.421771 0.748159 0.421556 0.718402 0.4243 0.747987 0.427033 0.770996 0.424755 0.771324 0.4243 0.747987 0.427033 0.770996 0.428484 0.793311 0.424755 0.771324 0.468022 0.603212 0.470029 0.580469 0.488343 0.605929 0.468022 0.603212 0.448522 0.595114 0.470029 0.580469 0.448522 0.595114 0.431378 0.592004 0.452899 0.570961 0.40944 0.593191 0.412139 0.569578 0.431378 0.592004 0.389821 0.594787 0.392938 0.572476 0.40944 0.593191 0.389821 0.594787 0.367918 0.591357 0.392938 0.572476 0.350599 0.564204 0.371303 0.570071 0.347129 0.588524 0.513803 0.583098 0.512096 0.606536 0.490914 0.58425 0.453857 0.556255 0.457928 0.533887 0.471001 0.563762 0.453857 0.556255 0.437119 0.551823 0.457928 0.533887 0.415874 0.551354 0.418664 0.529674 0.437119 0.551823 0.415874 0.551354 0.395201 0.552437 0.418664 0.529674 0.44352 0.506916 0.424787 0.503973 0.446562 0.480272 0.424787 0.503973 0.401964 0.497605 0.427659 0.477265 0.401964 0.497605 0.383986 0.487239 0.407036 0.471967 0.370786 0.461008 0.387311 0.46501 0.362595 0.480083 0.520079 0.484015 0.523425 0.504912 0.498512 0.485532 0.476499 0.51245 0.480625 0.484762 0.497569 0.51135 0.460067 0.509356 0.463865 0.482485 0.476499 0.51245 0.44352 0.506916 0.446562 0.480272 0.460067 0.509356 0.353716 0.539861 0.371676 0.544176 0.350599 0.564204 0.516337 0.560406 0.513803 0.583098 0.493061 0.565106 0.470029 0.580469 0.471001 0.563762 0.490914 0.58425 0.470029 0.580469 0.452899 0.570961 0.471001 0.563762 0.452899 0.570961 0.433916 0.568484 0.453857 0.556255 0.412139 0.569578 0.415874 0.551354 0.433916 0.568484 0.392938 0.572476 0.395201 0.552437 0.412139 0.569578 0.392938 0.572476 0.371303 0.570071 0.395201 0.552437 0.362595 0.480083 0.383986 0.487239 0.356476 0.500791 0.523425 0.504912 0.52381 0.525761 0.497569 0.51135 0.475224 0.533658 0.476499 0.51245 0.496888 0.528353 0.457928 0.533887 0.460067 0.509356 0.475224 0.533658 0.439062 0.530668 0.44352 0.506916 0.457928 0.533887 0.418664 0.529674 0.424787 0.503973 0.439062 0.530668 0.418664 0.529674 0.397527 0.52081 0.424787 0.503973 0.397527 0.52081 0.379465 0.510008 0.401964 0.497605 0.370786 0.461008 0.378307 0.437782 0.387311 0.46501 0.498512 0.485532 0.502737 0.459899 0.520079 0.484015 0.480625 0.484762 0.483346 0.459378 0.498512 0.485532 0.463865 0.482485 0.466352 0.456992 0.480625 0.484762 0.407036 0.471967 0.387311 0.46501 0.412223 0.445894 0.446562 0.480272 0.449284 0.453999 0.463865 0.482485 0.446562 0.480272 0.427659 0.477265 0.449284 0.453999 0.427659 0.477265 0.407036 0.471967 0.430009 0.450489 0.41469 0.428819 0.413901 0.430982 0.399365 0.425674 0.399365 0.425674 0.398828 0.427714 0.383204 0.421711 0.521203 0.441462 0.522883 0.443896 0.503441 0.441708 0.503441 0.441708 0.503628 0.444247 0.484259 0.441048 0.467814 0.439359 0.484259 0.441048 0.467676 0.441405 0.467814 0.439359 0.467676 0.441405 0.450992 0.436776 0.450992 0.436776 0.450503 0.43896 0.434043 0.43308 0.434043 0.43308 0.432915 0.435309 0.41469 0.428819 0.413901 0.430982 0.432915 0.435309 0.413352 0.436009 0.413352 0.436009 0.397964 0.432693 0.413901 0.430982 0.379711 0.428205 0.381599 0.423505 0.397964 0.432693 0.503156 0.449238 0.503628 0.444247 0.523489 0.448914 0.483927 0.448416 0.484623 0.44338 0.503156 0.449238 0.466975 0.446526 0.467676 0.441405 0.483927 0.448416 0.44978 0.444033 0.450503 0.43896 0.466975 0.446526 0.432915 0.435309 0.450503 0.43896 0.432175 0.440401 0.413352 0.436009 0.432175 0.440401 0.412223 0.445894 0.397964 0.432693 0.413352 0.436009 0.394891 0.441514 0.378307 0.437782 0.379711 0.428205 0.394891 0.441514 0.502737 0.459899 0.503156 0.449238 0.521854 0.459037 0.483346 0.459378 0.483927 0.448416 0.502737 0.459899 0.466352 0.456992 0.466975 0.446526 0.483346 0.459378 0.44978 0.444033 0.466975 0.446526 0.449284 0.453999 0.432175 0.440401 0.44978 0.444033 0.430009 0.450489 0.52381 0.525761 0.516337 0.560406 0.496888 0.528353 0.371676 0.544176 0.353716 0.539861 0.379465 0.510008 0.395201 0.552437 0.371676 0.544176 0.397527 0.52081 0.496888 0.528353 0.493061 0.565106 0.475224 0.533658 1.712186 0.956682 1.708191 0.963129 1.748483 0.98959 1.677234 0.930585 1.674316 0.937346 1.712186 0.956682 1.645055 0.91094 1.642599 0.917483 1.677234 0.930585 1.645055 0.91094 1.611231 0.896164 1.642599 0.917483 1.611231 0.896164 1.579184 0.887491 1.608837 0.902387 1.579184 0.887491 1.550704 0.88303 1.576899 0.89357 1.550704 0.88303 1.520366 0.881647 1.548498 0.888804 1.461426 0.882087 1.462529 0.888108 1.487584 0.881091 1.740583 0.915656 1.734218 0.926412 1.784389 0.949567 1.788883 0.942899 1.746411 0.91033 1.784389 0.949567 1.702227 0.890434 1.69587 0.900088 1.740583 0.915656 1.746411 0.91033 1.709005 0.88481 1.740583 0.915656 1.667781 0.871973 1.662088 0.880826 1.702227 0.890434 1.709005 0.88481 1.670939 0.863734 1.702227 0.890434 1.627679 0.855247 1.623808 0.864653 1.667781 0.871973 1.670939 0.863734 1.630822 0.84681 1.667781 0.871973 1.59021 0.845346 1.587664 0.855048 1.627679 0.855247 1.630822 0.84681 1.592889 0.836943 1.627679 0.855247 1.557807 0.840391 1.556188 0.850118 1.59021 0.845346 1.592889 0.836943 1.5595 0.832044 1.59021 0.845346 1.524056 0.837002 1.52322 0.84707 1.557807 0.840391 1.5595 0.832044 1.525053 0.828491 1.557807 0.840391 1.458945 0.834404 1.458976 0.845289 1.487908 0.835317 1.458945 0.834404 1.487908 0.835317 1.460238 0.825594 1.727549 0.936585 1.712186 0.956682 1.767621 0.969542 1.690079 0.909923 1.677234 0.930585 1.727549 0.936585 1.655614 0.890448 1.645055 0.91094 1.690079 0.909923 1.619317 0.875669 1.611231 0.896164 1.655614 0.890448 1.584562 0.866361 1.579184 0.887491 1.619317 0.875669 1.554014 0.861595 1.550704 0.88303 1.584562 0.866361 1.521891 0.859116 1.520366 0.881647 1.554014 0.861595 1.459682 0.858147 1.461426 0.882087 1.487419 0.858053 1.734218 0.926412 1.727549 0.936585 1.776141 0.959735 1.69587 0.900088 1.690079 0.909923 1.734218 0.926412 1.662088 0.880826 1.655614 0.890448 1.69587 0.900088 1.623808 0.864653 1.619317 0.875669 1.662088 0.880826 1.587664 0.855048 1.584562 0.866361 1.623808 0.864653 1.556188 0.850118 1.554014 0.861595 1.587664 0.855048 1.521891 0.859116 1.554014 0.861595 1.52322 0.84707 1.458976 0.845289 1.459682 0.858147 1.487636 0.845716 1.525053 0.828491 1.488832 0.826853 1.524056 0.837002 1.487908 0.835317 1.487636 0.845716 1.524056 0.837002 1.520366 0.881647 1.487584 0.881091 1.518747 0.887486 1.487419 0.858053 1.487584 0.881091 1.521891 0.859116 1.52322 0.84707 1.487636 0.845716 1.521891 0.859116 0.1993589 0.330702 0.179607 0.331041 0.198868 0.307426 0.220337 0.305776 0.2190459 0.331276 0.198868 0.307426 0.240633 0.335635 0.2190459 0.331276 0.243418 0.308768 0.265646 0.310785 0.261814 0.338194 0.243418 0.308768 0.282799 0.343355 0.261814 0.338194 0.287829 0.315878 0.311473 0.321964 0.305011 0.34906 0.287829 0.315878 0.335372 0.329289 0.32747 0.355993 0.311473 0.321964 0.361039 0.339173 0.352137 0.365187 0.335372 0.329289 0.384349 0.349182 0.374156 0.375014 0.361039 0.339173 0.03078496 0.131547 0.04293596 0.151836 0.01007395 0.142204 0.05174398 0.12133 0.063434 0.144264 0.03078496 0.131547 0.07584899 0.113219 0.08685898 0.138209 0.05174398 0.12133 0.109652 0.132989 0.08685898 0.138209 0.100166 0.106176 0.125165 0.09983897 0.132973 0.127725 0.100166 0.106176 0.149115 0.096201 0.15541 0.124177 0.125165 0.09983897 0.174983 0.09297895 0.178867 0.121419 0.149115 0.096201 0.202222 0.1213369 0.178867 0.121419 0.201044 0.09371799 0.22674 0.09202897 0.2252939 0.1199499 0.201044 0.09371799 0.247509 0.121496 0.2252939 0.1199499 0.251103 0.09432798 0.273841 0.09663099 0.268864 0.123688 0.251103 0.09432798 0.290437 0.127961 0.268864 0.123688 0.296829 0.101503 0.320152 0.106366 0.312206 0.132081 0.296829 0.101503 0.343379 0.111882 0.33472 0.1372669 0.320152 0.106366 0.366045 0.119413 0.356613 0.144423 0.343379 0.111882 0.38949 0.128538 0.379018 0.153589 0.366045 0.119413 0.03564298 0.333774 0.04535597 0.359945 0.01179999 0.342512 0.07017797 0.352036 0.04535597 0.359945 0.06148099 0.32519 0.09312295 0.346273 0.07017797 0.352036 0.08592897 0.319081 0.115361 0.341298 0.09312295 0.346273 0.109581 0.313801 0.136673 0.336978 0.115361 0.341298 0.132062 0.309552 0.15784 0.334813 0.136673 0.336978 0.154215 0.307959 0.179607 0.331041 0.15784 0.334813 0.177425 0.305466 0.357741 0.153585 0.345129 0.179702 0.335907 0.145442 0.313385 0.138905 0.304116 0.166592 0.291118 0.135555 0.269286 0.131029 0.264385 0.160176 0.247597 0.130253 0.2254379 0.128515 0.2242839 0.158193 0.202758 0.130849 0.1771219 0.339657 0.179612 0.369073 0.154422 0.343457 0.132955 0.344286 0.13848 0.373272 0.112085 0.349251 0.09926795 0.381774 0.07936799 0.388583 0.09017497 0.35379 0.04367095 0.369819 0.05696499 0.396405 0.02270996 0.381511 0.335907 0.145442 0.324951 0.172616 0.313385 0.138905 0.247597 0.130253 0.2442899 0.159502 0.2254379 0.128515 0.158648 0.372738 0.13848 0.373272 0.154422 0.343457 0.07936799 0.388583 0.05696499 0.396405 0.06799596 0.361013 0.363781 0.192209 0.345129 0.179702 0.378563 0.166299 0.291118 0.135555 0.284175 0.164276 0.269286 0.131029 0.19982 0.371091 0.179612 0.369073 0.199268 0.341556 0.119186 0.377848 0.09926795 0.381774 0.112085 0.349251 0.04330694 0.162208 0.05922394 0.186904 0.02188497 0.176663 0.089688 0.14451 0.102026 0.17148 0.06575798 0.1525509 0.135288 0.134185 0.14305 0.163083 0.112601 0.139728 0.183696 0.1591719 0.163303 0.161235 0.179975 0.129564 0.221414 0.340081 0.220006 0.369495 0.199268 0.341556 0.261025 0.374533 0.240904 0.373736 0.265468 0.345542 0.307964 0.356372 0.299928 0.384358 0.286044 0.351225 0.353925 0.374554 0.341718 0.401193 0.329697 0.36459 0.122592 0.167959 0.102026 0.17148 0.112601 0.139728 0.203999 0.159929 0.183696 0.1591719 0.202758 0.130849 0.279999 0.379865 0.261025 0.374533 0.286044 0.351225 0.341718 0.401193 0.353925 0.374554 0.359704 0.413554 0.05922394 0.186904 0.04330694 0.162208 0.079934 0.178669 0.163303 0.161235 0.14305 0.163083 0.1572639 0.1321859 0.240904 0.373736 0.220006 0.369495 0.243991 0.344418 0.299928 0.384358 0.307964 0.356372 0.319398 0.392218 0.220006 0.369495 0.21991 0.375419 0.19982 0.371091 0.240387 0.379944 0.21991 0.375419 0.240904 0.373736 0.260287 0.380371 0.240387 0.379944 0.261025 0.374533 0.278859 0.386018 0.260287 0.380371 0.279999 0.379865 0.299928 0.384358 0.298397 0.390087 0.279999 0.379865 0.319398 0.392218 0.317328 0.398142 0.299928 0.384358 0.341718 0.401193 0.339271 0.406543 0.319398 0.392218 0.3566 0.419082 0.339271 0.406543 0.359704 0.413554 0.05922394 0.186904 0.06252896 0.191779 0.04012995 0.200829 0.05922394 0.186904 0.079934 0.178669 0.06252896 0.191779 0.1046 0.17686 0.08303695 0.184137 0.102026 0.17148 0.124728 0.1737239 0.1046 0.17686 0.122592 0.167959 0.144743 0.168752 0.124728 0.1737239 0.14305 0.163083 0.163303 0.161235 0.164756 0.167246 0.14305 0.163083 0.184631 0.165059 0.164756 0.167246 0.183696 0.1591719 0.183696 0.1591719 0.203999 0.159929 0.184631 0.165059 0.2242839 0.158193 0.224252 0.164148 0.203999 0.159929 0.2442899 0.159502 0.24382 0.16557 0.2242839 0.158193 0.264385 0.160176 0.263664 0.165979 0.2442899 0.159502 0.284175 0.164276 0.283075 0.170254 0.264385 0.160176 0.304116 0.166592 0.302577 0.1722649 0.284175 0.164276 0.324951 0.172616 0.322955 0.178477 0.304116 0.166592 0.345129 0.179702 0.342773 0.18508 0.324951 0.172616 0.360708 0.197735 0.342773 0.18508 0.363781 0.192209 0.05696499 0.396405 0.05997598 0.4016 0.03843796 0.407668 0.07936799 0.388583 0.08205896 0.394364 0.05696499 0.396405 0.101389 0.387386 0.08205896 0.394364 0.09926795 0.381774 0.120953 0.383902 0.101389 0.387386 0.119186 0.377848 0.13848 0.373272 0.13981 0.379039 0.119186 0.377848 0.1597869 0.378904 0.13981 0.379039 0.158648 0.372738 0.179612 0.369073 0.180305 0.374984 0.158648 0.372738 0.200136 0.377484 0.180305 0.374984 0.19982 0.371091 0.02082395 0.031708 0.02082395 0.03116899 0.03538697 0.031708 0.02082395 0.03116899 0.02082395 0.03055495 0.03538697 0.03116899 0.02082395 0.02967095 0.02082395 0.02909696 0.03538697 0.02967095 0.02082395 0.02909696 0.02082395 0.02847498 0.03538697 0.02909696 0.03538697 0.03632599 0.02082395 0.03632599 0.03538697 0.03576898 0.02082395 0.03576898 0.02082395 0.03522396 0.03538697 0.03576898 0.03538697 0.03404599 0.02082395 0.03404599 0.03538697 0.03343397 0.02082395 0.03343397 0.02082395 0.03288096 0.03538697 0.03343397 0.02082395 0.03288096 0.02082395 0.03228199 0.03538697 0.03288096 0.02082395 0.03228199 0.02082395 0.031708 0.03538697 0.03228199 0.02082395 0.03055495 0.02082395 0.03020596 0.03538697 0.03055495 0.02082395 0.03020596 0.02082395 0.02967095 0.03538697 0.03020596 0.03538697 0.03750497 0.02082395 0.03750497 0.03538697 0.03691399 0.02082395 0.03691399 0.02082395 0.03632599 0.03538697 0.03691399 0.03538697 0.03522396 0.02082395 0.03522396 0.03538697 0.03463196 0.03538697 0.03463196 0.02082395 0.03463196 0.03538697 0.03404599 0.03538697 0.02593296 0.02082395 0.02593296 0.03538697 0.02524596 0.02082395 0.02524596 0.02082395 0.02457696 0.03538697 0.02524596 0.03538697 0.02847498 0.02082395 0.02847498 0.03538697 0.02780699 0.02082395 0.02780699 0.02082395 0.02721297 0.03538697 0.02780699 0.03538697 0.03975999 0.02082395 0.03975999 0.03538697 0.039231 0.02082395 0.039231 0.02082395 0.03867799 0.03538697 0.039231 0.03538697 0.04217898 0.02082395 0.04217898 0.03538697 0.041547 0.02082395 0.041547 0.02082395 0.04091697 0.03538697 0.041547 0.03538697 0.02457696 0.02082395 0.02457696 0.03538697 0.02377694 0.02082395 0.02377796 0.02082395 0.02299696 0.03538697 0.02377694 0.03538697 0.02721297 0.02082395 0.02721297 0.03538697 0.02658694 0.02082395 0.02658694 0.02082395 0.02593296 0.03538697 0.02658694 0.03538697 0.03867799 0.02082395 0.03867799 0.03538697 0.038091 0.02082395 0.038091 0.02082395 0.03750497 0.03538697 0.038091 0.02082395 0.04091697 0.02082395 0.04034399 0.03538697 0.04091697 0.02082395 0.04034399 0.02082395 0.03975999 0.03538697 0.04034399 0.03538697 0.031708 0.03538697 0.03116899 0.06518298 0.031708 0.03538697 0.03116899 0.03538697 0.03055495 0.06518298 0.03116899 0.03538697 0.02967095 0.03538697 0.02909696 0.06518298 0.02967095 0.03538697 0.02909696 0.03538697 0.02847498 0.06518298 0.02909696 0.06518298 0.03632599 0.03538697 0.03632599 0.06518298 0.03576898 0.03538697 0.03576898 0.03538697 0.03522396 0.06518298 0.03576898 0.06518298 0.03404599 0.03538697 0.03404599 0.06518298 0.03343397 0.03538697 0.03343397 0.03538697 0.03288096 0.06518298 0.03343397 0.03538697 0.03288096 0.03538697 0.03228199 0.06518298 0.03288096 0.03538697 0.03228199 0.03538697 0.031708 0.06518298 0.03228199 0.03538697 0.03055495 0.03538697 0.03020596 0.06518298 0.03055495 0.03538697 0.03020596 0.03538697 0.02967095 0.06518298 0.03020596 0.06518298 0.03750497 0.03538697 0.03750497 0.06518298 0.03691399 0.03538697 0.03691399 0.03538697 0.03632599 0.06518298 0.03691399 0.06518298 0.03522396 0.03538697 0.03522396 0.06518298 0.03463196 0.03538697 0.03463196 0.03538697 0.03404599 0.06518298 0.03463196 0.06518298 0.02593296 0.03538697 0.02593296 0.06518298 0.02524596 0.03538697 0.02524596 0.03538697 0.02457696 0.06518298 0.02524596 0.06518298 0.02847498 0.03538697 0.02847498 0.06518298 0.02780699 0.03538697 0.02780699 0.03538697 0.02721297 0.06518298 0.02780699 0.06518298 0.03975999 0.03538697 0.03975999 0.06518298 0.039231 0.03538697 0.039231 0.03538697 0.03867799 0.06518298 0.039231 0.06518298 0.04217898 0.03538697 0.04217898 0.06518298 0.041547 0.03538697 0.041547 0.03538697 0.04091697 0.06518298 0.041547 0.06518298 0.02457696 0.03538697 0.02457696 0.06518298 0.02377694 0.03538697 0.02377694 0.03538697 0.02299696 0.06518298 0.02377694 0.06518298 0.02721297 0.03538697 0.02721297 0.06518298 0.02658694 0.03538697 0.02658694 0.03538697 0.02593296 0.06518298 0.02658694 0.06518298 0.03867799 0.03538697 0.03867799 0.06518298 0.038091 0.03538697 0.038091 0.03538697 0.03750497 0.06518298 0.038091 0.03538697 0.04091697 0.03538697 0.04034399 0.06518298 0.04091697 0.03538697 0.04034399 0.03538697 0.03975999 0.06518298 0.04034399 0.06518298 0.031708 0.06518298 0.03116899 0.09011697 0.031708 0.06518298 0.03116899 0.06518298 0.03055495 0.09011697 0.03116899 0.06518298 0.02967095 0.06518298 0.02909696 0.09011697 0.02967095 0.06518298 0.02909696 0.06518298 0.02847498 0.09011697 0.02909696 0.09011697 0.03632599 0.06518298 0.03632599 0.09011697 0.03576898 0.06518298 0.03576898 0.06518298 0.03522396 0.09011697 0.03576898 0.09011697 0.03404599 0.06518298 0.03404599 0.09011697 0.03343397 0.06518298 0.03343397 0.06518298 0.03288096 0.09011697 0.03343397 0.06518298 0.03288096 0.06518298 0.03228199 0.09011697 0.03288096 0.06518298 0.03228199 0.06518298 0.031708 0.09011697 0.03228199 0.06518298 0.03055495 0.06518298 0.03020596 0.09011697 0.03055495 0.06518298 0.03020596 0.06518298 0.02967095 0.09011697 0.03020596 0.09011697 0.03750497 0.06518298 0.03750497 0.09011697 0.03691399 0.06518298 0.03691399 0.06518298 0.03632599 0.09011697 0.03691399 0.09011697 0.03522396 0.06518298 0.03522396 0.09011697 0.03463196 0.06518298 0.03463196 0.06518298 0.03404599 0.09011697 0.03463196 0.09011697 0.02593296 0.06518298 0.02593296 0.09011697 0.02524596 0.06518298 0.02524596 0.06518298 0.02457696 0.09011697 0.02524596 0.09011697 0.02847498 0.06518298 0.02847498 0.09011697 0.02780699 0.06518298 0.02780699 0.06518298 0.02721297 0.09011697 0.02780699 0.09011697 0.03975999 0.06518298 0.03975999 0.09011697 0.039231 0.06518298 0.039231 0.06518298 0.03867799 0.09011697 0.039231 0.06518298 0.04217898 0.06518298 0.041547 0.09011697 0.04217898 0.06518298 0.041547 0.06518298 0.04091697 0.09011697 0.041547 0.06518298 0.02457696 0.06518298 0.02377694 0.09011697 0.02457696 0.06518298 0.02377694 0.06518298 0.02299696 0.09011697 0.02377694 0.09011697 0.02721297 0.06518298 0.02721297 0.09011697 0.02658694 0.06518298 0.02658694 0.06518298 0.02593296 0.09011697 0.02658694 0.09011697 0.03867799 0.06518298 0.03867799 0.09011697 0.038091 0.06518298 0.038091 0.06518298 0.03750497 0.09011697 0.038091 0.06518298 0.04091697 0.06518298 0.04034399 0.09011697 0.04091697 0.06518298 0.04034399 0.06518298 0.03975999 0.09011697 0.04034399 0.09011697 0.031708 0.09011697 0.03116899 0.131775 0.031708 0.09011697 0.03116899 0.09011697 0.03055495 0.131775 0.03116899 0.09011697 0.02967095 0.09011697 0.02909696 0.131775 0.02967095 0.09011697 0.02909696 0.09011697 0.02847498 0.131775 0.02909696 0.131775 0.03632599 0.09011697 0.03632599 0.131775 0.03576898 0.09011697 0.03576898 0.09011697 0.03522396 0.131775 0.03576898 0.09011697 0.03404599 0.09011697 0.03343397 0.131775 0.03404599 0.09011697 0.03343397 0.09011697 0.03288096 0.131775 0.03343397 0.09011697 0.03288096 0.09011697 0.03228199 0.131775 0.03288096 0.09011697 0.03228199 0.09011697 0.031708 0.131775 0.03228199 0.09011697 0.03055495 0.09011697 0.03020596 0.131775 0.03055495 0.09011697 0.03020596 0.09011697 0.02967095 0.131775 0.03020596 0.131775 0.03750497 0.09011697 0.03750497 0.131775 0.03691399 0.09011697 0.03691399 0.09011697 0.03632599 0.131775 0.03691399 0.131775 0.03522396 0.09011697 0.03522396 0.131775 0.03463196 0.131775 0.03463196 0.09011697 0.03463196 0.131775 0.03404599 0.09011697 0.02593296 0.09011697 0.02524596 0.131775 0.02593296 0.09011697 0.02524596 0.09011697 0.02457696 0.131775 0.02524596 0.09011697 0.02847498 0.09011697 0.02780699 0.131775 0.02847498 0.09011697 0.02780699 0.09011697 0.02721297 0.131775 0.02780699 0.131775 0.03975999 0.09011697 0.03975999 0.131775 0.039231 0.09011697 0.039231 0.09011697 0.03867799 0.131775 0.039231 0.09011697 0.04217898 0.09011697 0.041547 0.131775 0.04217898 0.09011697 0.041547 0.09011697 0.04091697 0.131775 0.041547 0.09011697 0.02457696 0.09011697 0.02377694 0.131775 0.02457696 0.09011697 0.02377694 0.09011697 0.02299696 0.131775 0.02377694 0.09011697 0.02721297 0.09011697 0.02658694 0.131775 0.02721297 0.09011697 0.02658694 0.09011697 0.02593296 0.131775 0.02658694 0.131775 0.03867799 0.09011697 0.03867799 0.131775 0.038091 0.09011697 0.038091 0.09011697 0.03750497 0.131775 0.038091 0.09011697 0.04091697 0.09011697 0.04034399 0.131775 0.04091697 0.09011697 0.04034399 0.09011697 0.03975999 0.131775 0.04034399 0.09562599 0.06326895 0.09562599 0.06859797 0.08483898 0.06326895 0.106405 0.06859797 0.09562599 0.06859797 0.106405 0.06326895 0.11639 0.06326895 0.11639 0.06859797 0.106405 0.06326895 0.126595 0.06859797 0.11639 0.06859797 0.126595 0.06326895 0.133381 0.06326895 0.133381 0.06859797 0.126595 0.06326895 0.144453 0.06859797 0.133381 0.06859797 0.144453 0.06326895 0.152173 0.06859797 0.144453 0.06859797 0.152173 0.06326895 0.1624799 0.06859797 0.152173 0.06859797 0.1624799 0.06326895 0.1639609 0.06326895 0.1639609 0.06859797 0.1624799 0.06326895 0.160264 0.07170295 0.164186 0.07170295 0.160264 0.076873 0.150951 0.076873 0.150951 0.07170295 0.160264 0.076873 0.14379 0.07170295 0.150951 0.07170295 0.14379 0.076873 0.1332589 0.076873 0.1332589 0.07170295 0.14379 0.076873 0.123783 0.07170295 0.1332589 0.07170295 0.123783 0.076873 0.1134639 0.076873 0.1134639 0.07170295 0.123783 0.076873 0.103703 0.07170295 0.1134639 0.07170295 0.103703 0.076873 0.09369599 0.076873 0.09369599 0.07170295 0.103703 0.076873 0.08373999 0.07170295 0.09369599 0.07170295 0.08373999 0.076873 0.07337796 0.07170295 0.08373999 0.07170295 0.07337796 0.076873 0.06382095 0.07170295 0.07337796 0.07170295 0.06382095 0.076873 0.05502998 0.076873 0.05502998 0.07170295 0.06382095 0.076873 0.04453897 0.07170295 0.05502998 0.07170295 0.04453897 0.076873 0.03807997 0.07170295 0.04453897 0.07170295 0.03807997 0.076873 0.02984899 0.07170295 0.03807997 0.07170295 0.02984899 0.076873 0.02817797 0.076873 0.02817797 0.07170295 0.02984899 0.076873 0.03114795 0.06859797 0.02797394 0.06859797 0.03114795 0.06326895 0.03765499 0.06326895 0.03765499 0.06859797 0.03114795 0.06326895 0.04578596 0.06326895 0.04578596 0.06859797 0.03765499 0.06326895 0.05633097 0.06326895 0.05633097 0.06859797 0.04578596 0.06326895 0.06413698 0.06859797 0.05633097 0.06859797 0.06413698 0.06326895 0.07489097 0.06326895 0.07489097 0.06859797 0.06413698 0.06326895 0.08483898 0.06859797 0.07489097 0.06859797 0.08483898 0.06326895 0.265171 0.07540696 0.268568 0.07422095 0.276976 0.07590597 0.276976 0.07590597 0.285475 0.07482397 0.292211 0.07642495 0.278629 0.06683897 0.287069 0.065647 0.275435 0.06866997 0.227411 0.071451 0.235474 0.072609 0.2236 0.07428199 0.238273 0.074018 0.244091 0.07160699 0.253505 0.07454395 0.252142 0.073291 0.260913 0.07242095 0.253505 0.07454395 0.173432 0.04034399 0.173432 0.03975999 0.215089 0.04034399 0.173432 0.04091697 0.173432 0.04034399 0.215089 0.04091697 0.173432 0.041547 0.173432 0.04091697 0.215089 0.041547 0.173432 0.04217898 0.173432 0.041547 0.215089 0.04217898 0.173432 0.02377694 0.173432 0.02299696 0.215089 0.02377694 0.173432 0.02457696 0.173432 0.02377694 0.215089 0.02457696 0.173432 0.02524596 0.173432 0.02457696 0.215089 0.02524596 0.173432 0.02593296 0.173432 0.02524596 0.215089 0.02593296 0.173432 0.02658694 0.173432 0.02593296 0.215089 0.02658694 0.173432 0.02721297 0.173432 0.02658694 0.215089 0.02721297 0.173432 0.02780699 0.173432 0.02721297 0.215089 0.02780699 0.173432 0.02847498 0.173432 0.02780699 0.215089 0.02847498 0.173432 0.02909696 0.173432 0.02847498 0.215089 0.02909696 0.173432 0.02967095 0.173432 0.02909696 0.215089 0.02967095 0.173432 0.03020596 0.173432 0.02967095 0.215089 0.03020596 0.173432 0.03055495 0.173432 0.03020596 0.215089 0.03055495 0.173432 0.03116899 0.173432 0.03055495 0.215089 0.03116899 0.173432 0.031708 0.173432 0.03116899 0.215089 0.031708 0.215089 0.03228199 0.173432 0.03228199 0.215089 0.031708 0.215089 0.03288096 0.173432 0.03288096 0.215089 0.03228199 0.215089 0.03343397 0.173432 0.03343397 0.215089 0.03288096 0.215089 0.03404599 0.173432 0.03404599 0.215089 0.03343397 0.215089 0.03463196 0.173432 0.03463196 0.215089 0.03404599 0.215089 0.03522396 0.173432 0.03522396 0.215089 0.03463196 0.215089 0.03576898 0.173432 0.03576898 0.215089 0.03522396 0.215089 0.03632599 0.173432 0.03632599 0.215089 0.03576898 0.215089 0.03691399 0.173432 0.03691399 0.215089 0.03632599 0.215089 0.03750497 0.173432 0.03750497 0.215089 0.03691399 0.215089 0.038091 0.173432 0.038091 0.215089 0.03750497 0.215089 0.03867799 0.173432 0.03867799 0.215089 0.038091 0.173432 0.039231 0.173432 0.03867799 0.215089 0.039231 0.215089 0.03975999 0.173432 0.03975999 0.215089 0.039231 0.131775 0.04034399 0.131775 0.03975999 0.173432 0.04034399 0.131775 0.04091697 0.131775 0.04034399 0.173432 0.04091697 0.131775 0.041547 0.131775 0.04091697 0.173432 0.041547 0.131775 0.04217898 0.131775 0.041547 0.173432 0.04217898 0.131775 0.02377694 0.131775 0.02299696 0.173432 0.02377694 0.131775 0.02457696 0.131775 0.02377694 0.173432 0.02457696 0.131775 0.02524596 0.131775 0.02457696 0.173432 0.02524596 0.131775 0.02593296 0.131775 0.02524596 0.173432 0.02593296 0.131775 0.02658694 0.131775 0.02593296 0.173432 0.02658694 0.131775 0.02721297 0.131775 0.02658694 0.173432 0.02721297 0.131775 0.02780699 0.131775 0.02721297 0.173432 0.02780699 0.131775 0.02847498 0.131775 0.02780699 0.173432 0.02847498 0.131775 0.02909696 0.131775 0.02847498 0.173432 0.02909696 0.131775 0.02967095 0.131775 0.02909696 0.173432 0.02967095 0.131775 0.03020596 0.131775 0.02967095 0.173432 0.03020596 0.131775 0.03055495 0.131775 0.03020596 0.173432 0.03055495 0.131775 0.03116899 0.131775 0.03055495 0.173432 0.03116899 0.131775 0.031708 0.131775 0.03116899 0.173432 0.031708 0.131775 0.03228199 0.131775 0.031708 0.173432 0.03228199 0.173432 0.03288096 0.131775 0.03288096 0.173432 0.03228199 0.173432 0.03343397 0.131775 0.03343397 0.173432 0.03288096 0.173432 0.03404599 0.131775 0.03404599 0.173432 0.03343397 0.173432 0.03463196 0.131775 0.03463196 0.173432 0.03404599 0.173432 0.03522396 0.131775 0.03522396 0.173432 0.03463196 0.173432 0.03576898 0.131775 0.03576898 0.173432 0.03522396 0.173432 0.03632599 0.131775 0.03632599 0.173432 0.03576898 0.131775 0.03691399 0.131775 0.03632599 0.173432 0.03691399 0.173432 0.03750497 0.131775 0.03750497 0.173432 0.03691399 0.131775 0.038091 0.131775 0.03750497 0.173432 0.038091 0.173432 0.03867799 0.131775 0.03867799 0.173432 0.038091 0.131775 0.039231 0.131775 0.03867799 0.173432 0.039231 0.173432 0.03975999 0.131775 0.03975999 0.173432 0.039231 0.601188 0.94875 0.620575 0.947396 0.601257 0.952125 0.581236 0.948616 0.601188 0.94875 0.581401 0.951807 0.559133 0.948069 0.581236 0.948616 0.559361 0.951227 0.53705 0.947834 0.559133 0.948069 0.537024 0.950969 0.51534 0.951218 0.515571 0.947842 0.537024 0.950969 0.493647 0.951817 0.493998 0.948162 0.51534 0.951218 0.473165 0.952458 0.473441 0.948383 0.493647 0.951817 0.454318 0.951887 0.454318 0.947396 0.473165 0.952458 0.600712 0.980346 0.601361 0.956845 0.620575 0.98046 0.580305 0.980283 0.581551 0.956397 0.600712 0.980346 0.558955 0.98039 0.559575 0.955796 0.580305 0.980283 0.536624 0.98048 0.536954 0.955597 0.558955 0.98039 0.514496 0.980501 0.514994 0.955954 0.536624 0.98048 0.493287 0.980274 0.493274 0.956496 0.514496 0.980501 0.473273 0.980183 0.472945 0.957083 0.493287 0.980274 0.454318 0.98046 0.454318 0.95721 0.473273 0.980183 0.600117 0.984911 0.600712 0.980346 0.620575 0.985296 0.579433 0.984622 0.580305 0.980283 0.600117 0.984911 0.558369 0.984579 0.558955 0.98039 0.579433 0.984622 0.536538 0.984595 0.536624 0.98048 0.558369 0.984579 0.514496 0.980501 0.536624 0.98048 0.514907 0.984562 0.493287 0.980274 0.514496 0.980501 0.49415 0.9845 0.473273 0.980183 0.493287 0.980274 0.473995 0.984664 0.454318 0.98046 0.473273 0.980183 0.454318 0.985296 0.620575 0.944857 0.601089 0.945988 0.620575 0.91812 0.601089 0.945988 0.580975 0.945986 0.60262 0.914687 0.580975 0.945986 0.558877 0.945645 0.581904 0.911789 0.558877 0.945645 0.53701 0.945453 0.559898 0.90957 0.53701 0.945453 0.515693 0.945425 0.536707 0.908669 0.515693 0.945425 0.494273 0.945723 0.51355 0.909161 0.494273 0.945723 0.473649 0.945872 0.491566 0.911291 0.473649 0.945872 0.454318 0.944857 0.471283 0.914531 0.601257 0.952125 0.620575 0.951887 0.601361 0.956845 0.581401 0.951807 0.601257 0.952125 0.581551 0.956397 0.559361 0.951227 0.581401 0.951807 0.559575 0.955796 0.537024 0.950969 0.559361 0.951227 0.536954 0.955597 0.514994 0.955954 0.51534 0.951218 0.536954 0.955597 0.493274 0.956496 0.493647 0.951817 0.514994 0.955954 0.472945 0.957083 0.473165 0.952458 0.493274 0.956496 0.454318 0.95721 0.454318 0.951887 0.472945 0.957083 0.601089 0.945988 0.620575 0.944857 0.601188 0.94875 0.580975 0.945986 0.601089 0.945988 0.581236 0.948616 0.558877 0.945645 0.580975 0.945986 0.559133 0.948069 0.53701 0.945453 0.558877 0.945645 0.53705 0.947834 0.515571 0.947842 0.515693 0.945425 0.53705 0.947834 0.493998 0.948162 0.494273 0.945723 0.515571 0.947842 0.473441 0.948383 0.473649 0.945872 0.493998 0.948162 0.454318 0.947396 0.454318 0.944857 0.473441 0.948383 1.601188 0.94875 1.601257 0.952125 1.620575 0.947396 1.581236 0.948616 1.581401 0.951807 1.601188 0.94875 1.559134 0.948069 1.559361 0.951227 1.581236 0.948616 1.53705 0.947834 1.537024 0.950969 1.559134 0.948069 1.53705 0.947834 1.515571 0.947842 1.537024 0.950969 1.515571 0.947842 1.493998 0.948162 1.51534 0.951218 1.493998 0.948162 1.473441 0.948383 1.493647 0.951817 1.473441 0.948383 1.454318 0.947396 1.473166 0.952458 1.620575 0.95721 1.601361 0.956845 1.620575 0.98046 1.601361 0.956845 1.581551 0.956397 1.600712 0.980346 1.581551 0.956397 1.559575 0.955796 1.580305 0.980283 1.559575 0.955796 1.536954 0.955597 1.558955 0.98039 1.536954 0.955597 1.514994 0.955954 1.536624 0.98048 1.514994 0.955954 1.493274 0.956496 1.514496 0.980501 1.493274 0.956496 1.472945 0.957083 1.493287 0.980274 1.472945 0.957083 1.454318 0.95721 1.473273 0.980183 1.620575 0.98046 1.600712 0.980346 1.620575 0.985296 1.600712 0.980346 1.580305 0.980283 1.600117 0.984911 1.580305 0.980283 1.558955 0.98039 1.579433 0.984622 1.558955 0.98039 1.536624 0.98048 1.558369 0.984579 1.514496 0.980501 1.514907 0.984562 1.536624 0.98048 1.493287 0.980274 1.49415 0.9845 1.514496 0.980501 1.473273 0.980183 1.473995 0.984664 1.493287 0.980274 1.454318 0.98046 1.454318 0.985296 1.473273 0.980183 1.620575 0.944857 1.620575 0.91812 1.601089 0.945988 1.601089 0.945988 1.60262 0.914687 1.580975 0.945986 1.580975 0.945986 1.581904 0.911789 1.558877 0.945645 1.558877 0.945645 1.559898 0.90957 1.53701 0.945453 1.53701 0.945453 1.536707 0.908669 1.515693 0.945425 1.515693 0.945425 1.51355 0.909161 1.494273 0.945723 1.494273 0.945723 1.491566 0.911291 1.473649 0.945872 1.473649 0.945872 1.471283 0.914531 1.454318 0.944857 1.601257 0.952125 1.601361 0.956845 1.620575 0.951887 1.581401 0.951807 1.581551 0.956397 1.601257 0.952125 1.559361 0.951227 1.559575 0.955796 1.581401 0.951807 1.537024 0.950969 1.536954 0.955597 1.559361 0.951227 1.537024 0.950969 1.51534 0.951218 1.536954 0.955597 1.51534 0.951218 1.493647 0.951817 1.514994 0.955954 1.493647 0.951817 1.473166 0.952458 1.493274 0.956496 1.473166 0.952458 1.454318 0.951887 1.472945 0.957083 1.601089 0.945988 1.601188 0.94875 1.620575 0.944857 1.580975 0.945986 1.581236 0.948616 1.601089 0.945988 1.558877 0.945645 1.559134 0.948069 1.580975 0.945986 1.53701 0.945453 1.53705 0.947834 1.558877 0.945645 1.53701 0.945453 1.515693 0.945425 1.53705 0.947834 1.515693 0.945425 1.494273 0.945723 1.515571 0.947842 1.494273 0.945723 1.473649 0.945872 1.493998 0.948162 1.473649 0.945872 1.454318 0.944857 1.473441 0.948383 0.876889 0.855882 0.882764 0.853031 0.853116 0.829425 0.876889 0.855882 0.890225 0.879604 0.882764 0.853031 0.830895 0.808361 0.837073 0.800234 0.808188 0.792803 0.782983 0.783182 0.808188 0.792803 0.787161 0.774347 0.758586 0.778704 0.782983 0.783182 0.758836 0.770513 0.747687 0.777303 0.747819 0.769898 0.718152 0.774814 0.718152 0.774814 0.717111 0.768456 0.692936 0.776887 0.837073 0.800234 0.830895 0.808361 0.859804 0.824414 0.900567 0.795752 0.92183 0.831683 0.91444 0.791682 0.936937 0.855582 0.946554 0.848348 0.92183 0.831683 0.897988 0.623318 0.888091 0.618953 0.893908 0.629005 0.888091 0.618953 0.879283 0.616768 0.885982 0.624656 0.805755 0.720817 0.77388 0.693259 0.751716 0.722728 0.751716 0.722728 0.747759 0.708816 0.709502 0.726591 0.709502 0.726591 0.708973 0.714418 0.682731 0.727123 0.8731 0.753904 0.900567 0.795752 0.910801 0.760689 0.836314 0.733956 0.8731 0.753904 0.84788 0.708507 0.8731 0.753904 0.910801 0.760689 0.886599 0.725284 0.836314 0.733956 0.84788 0.708507 0.805755 0.720817 0.805755 0.720817 0.819853 0.693356 0.77388 0.693259 0.897425 0.696069 0.900813 0.664354 0.860148 0.682093 0.930518 0.711861 0.924655 0.665869 0.897425 0.696069 0.8326 0.667638 0.860148 0.682093 0.853066 0.641485 0.800742 0.650604 0.8326 0.667638 0.836637 0.627495 0.836637 0.627495 0.853066 0.641485 0.856352 0.61962 0.853066 0.641485 0.87358 0.653588 0.863642 0.631975 0.900813 0.664354 0.899403 0.6471 0.87358 0.653588 0.924655 0.665869 0.915665 0.643722 0.900813 0.664354 0.77388 0.693259 0.789245 0.673166 0.760619 0.677211 0.836637 0.627495 0.830804 0.614125 0.800742 0.650604 0.856352 0.61962 0.853403 0.608029 0.836637 0.627495 0.879283 0.616768 0.888091 0.618953 0.880184 0.60847 0.903004 0.616494 0.891308 0.610794 0.897988 0.623318 0.924655 0.665869 0.939973 0.660151 0.915665 0.643722 0.953103 0.70713 0.939973 0.660151 0.930518 0.711861 0.910801 0.760689 0.931927 0.761675 0.918849 0.735436 0.91444 0.791682 0.93789 0.784046 0.910801 0.760689 0.91444 0.791682 0.932123 0.825394 0.93789 0.784046 0.946554 0.848348 0.962553 0.832195 0.932123 0.825394 0.708973 0.714418 0.707769 0.694032 0.681423 0.715637 0.747759 0.708816 0.739723 0.685313 0.708973 0.714418 0.747759 0.708816 0.77388 0.693259 0.739723 0.685313 0.789245 0.673166 0.800742 0.650604 0.772249 0.658019 0.819853 0.693356 0.8326 0.667638 0.789245 0.673166 0.84788 0.708507 0.860148 0.682093 0.819853 0.693356 0.84788 0.708507 0.886599 0.725284 0.860148 0.682093 0.918849 0.735436 0.930518 0.711861 0.886599 0.725284 0.918849 0.735436 0.941934 0.740969 0.930518 0.711861 0.774719 0.829884 0.774722 0.798973 0.755186 0.829732 0.73353 0.79504 0.733721 0.829524 0.755401 0.797145 0.72566 0.79504 0.687025 0.798269 0.725411 0.829454 0.665898 0.827639 0.686787 0.829109 0.666391 0.803726 0.754724 0.862069 0.774203 0.860309 0.755186 0.829732 0.755186 0.829732 0.733721 0.829524 0.754724 0.862069 0.686787 0.829109 0.686385 0.859162 0.725411 0.829454 0.665898 0.827639 0.665085 0.849912 0.686787 0.829109 0.879283 0.616768 0.880184 0.60847 0.868847 0.616864 0.87165 0.625972 0.879099 0.623026 0.868847 0.616864 0.896741 0.636735 0.906463 0.63074 0.893908 0.629005 0.912901 0.6231 0.903004 0.616494 0.906463 0.63074 0.915665 0.643722 0.906463 0.63074 0.899403 0.6471 0.856352 0.61962 0.863642 0.631975 0.868847 0.616864 0.868847 0.616864 0.869004 0.607116 0.856352 0.61962 0.915665 0.643722 0.924677 0.635245 0.906463 0.63074 0.969169 0.884006 0.941764 0.886235 0.967838 0.887471 0.991709 0.902133 0.969169 0.884006 0.988367 0.90401 0.917964 0.930585 0.921549 0.9294 0.92066 0.902248 0.917964 0.930585 0.937503 0.950374 0.921549 0.9294 0.960846 0.947751 0.939293 0.947427 0.961853 0.950702 0.991709 0.929088 0.98826 0.928385 0.974361 0.94495 0.991709 0.902133 0.988367 0.90401 0.991709 0.929088 0.92066 0.902248 0.92415 0.903699 0.941764 0.886235 0.872749 0.877652 0.827507 0.87553 0.853909 0.905732 0.892895 0.904795 0.872749 0.877652 0.861473 0.912933 0.799219 0.90239 0.799219 0.938762 0.83118 0.916491 0.799219 0.938762 0.825346 0.96307 0.831924 0.927161 0.847691 0.933503 0.839366 0.933034 0.853892 0.96264 0.889725 0.9351 0.861528 0.922847 0.865464 0.958085 0.892895 0.904795 0.861473 0.912933 0.889725 0.9351 0.827507 0.87553 0.799219 0.90239 0.839983 0.907437 0.725411 0.829454 0.725046 0.863575 0.733721 0.829524 0.73353 0.79504 0.72566 0.79504 0.733721 0.829524 0.785139 0.852988 0.79275 0.846263 0.785638 0.829849 0.791204 0.829639 0.792879 0.812438 0.785638 0.829849 0.819601 0.829638 0.821142 0.834742 0.827687 0.829609 0.82092 0.824112 0.819601 0.829638 0.82637 0.825773 0.774203 0.860309 0.785139 0.852988 0.774719 0.829884 0.774722 0.798973 0.774719 0.829884 0.785429 0.806495 0.962553 0.832195 0.973957 0.817809 0.949086 0.814915 0.949086 0.814915 0.961948 0.805284 0.93789 0.784046 0.707769 0.694032 0.739723 0.685313 0.708121 0.677937 0.684413 0.693032 0.707769 0.694032 0.690233 0.67497 0.79275 0.846263 0.821142 0.834742 0.791204 0.829639 0.973957 0.817809 0.998946 0.783144 0.961948 0.805284 0.961948 0.805284 0.994668 0.77933 0.953074 0.779837 0.792879 0.812438 0.791204 0.829639 0.82092 0.824112 0.708121 0.677937 0.734709 0.670549 0.711542 0.635687 0.690233 0.67497 0.708121 0.677937 0.705971 0.634392 0.833852 0.738982 0.836314 0.733956 0.80284 0.730417 0.8731 0.753904 0.836314 0.733956 0.866404 0.764149 0.892162 0.798359 0.900567 0.795752 0.866404 0.764149 0.892162 0.798359 0.917337 0.833914 0.900567 0.795752 0.917337 0.833914 0.933337 0.857741 0.92183 0.831683 0.710668 0.731459 0.709502 0.726591 0.6834 0.730964 0.80284 0.730417 0.805755 0.720817 0.757817 0.730021 0.751716 0.722728 0.709502 0.726591 0.746575 0.730117 0.973417 0.941954 0.960846 0.947751 0.974361 0.94495 0.758836 0.770513 0.747819 0.769898 0.758586 0.778704 0.865464 0.958085 0.854026 0.931133 0.853892 0.96264 0.859804 0.824414 0.865519 0.819155 0.837073 0.800234 0.882764 0.853031 0.889491 0.848853 0.859804 0.824414 0.882764 0.853031 0.896439 0.876818 0.889491 0.848853 0.69131 0.770238 0.717111 0.768456 0.68911 0.763236 0.747819 0.769898 0.746307 0.762387 0.717111 0.768456 0.758836 0.770513 0.787161 0.774347 0.761661 0.763563 0.787161 0.774347 0.813019 0.782928 0.789194 0.767018 0.837073 0.800234 0.841708 0.793936 0.813019 0.782928 0.866404 0.764149 0.861289 0.772089 0.892162 0.798359 0.917337 0.833914 0.892162 0.798359 0.912086 0.837378 0.917337 0.833914 0.912086 0.837378 0.933337 0.857741 0.6834 0.730964 0.683019 0.737571 0.710668 0.731459 0.746575 0.730117 0.710668 0.731459 0.744485 0.736878 0.757817 0.730021 0.759569 0.737588 0.80284 0.730417 0.80284 0.730417 0.800313 0.739753 0.833852 0.738982 0.833852 0.738982 0.829471 0.748357 0.866404 0.764149 0.759569 0.737588 0.757817 0.730021 0.744485 0.736878 0.747819 0.769898 0.758836 0.770513 0.746307 0.762387 0.761661 0.763563 0.759569 0.737588 0.746307 0.762387 0.800313 0.739753 0.759569 0.737588 0.789194 0.767018 0.829471 0.748357 0.800313 0.739753 0.816229 0.775919 0.841708 0.793936 0.861289 0.772089 0.816229 0.775919 0.865519 0.819155 0.885943 0.80229 0.841708 0.793936 0.889491 0.848853 0.904241 0.874642 0.912086 0.837378 0.865519 0.819155 0.889491 0.848853 0.885943 0.80229 0.683019 0.737571 0.68911 0.763236 0.710813 0.737666 0.710813 0.737666 0.716798 0.761072 0.744485 0.736878 0.882764 0.853031 0.876889 0.855882 0.859804 0.824414 0.896439 0.876818 0.890225 0.879604 0.882764 0.853031 0.830895 0.808361 0.808188 0.792803 0.837073 0.800234 0.808188 0.792803 0.782983 0.783182 0.813019 0.782928 0.782983 0.783182 0.758586 0.778704 0.787161 0.774347 0.717111 0.768456 0.747819 0.769898 0.718152 0.774814 0.718152 0.774814 0.692936 0.776887 0.717111 0.768456 0.830895 0.808361 0.837073 0.800234 0.853116 0.829425 0.932123 0.825394 0.92183 0.831683 0.91444 0.791682 0.936937 0.855582 0.92183 0.831683 0.946554 0.848348 0.885982 0.624656 0.888091 0.618953 0.893908 0.629005 0.888091 0.618953 0.885982 0.624656 0.879283 0.616768 0.805755 0.720817 0.751716 0.722728 0.77388 0.693259 0.751716 0.722728 0.709502 0.726591 0.747759 0.708816 0.709502 0.726591 0.682731 0.727123 0.708973 0.714418 0.91444 0.791682 0.900567 0.795752 0.910801 0.760689 0.8731 0.753904 0.836314 0.733956 0.886599 0.725284 0.918849 0.735436 0.910801 0.760689 0.886599 0.725284 0.84788 0.708507 0.836314 0.733956 0.819853 0.693356 0.805755 0.720817 0.77388 0.693259 0.819853 0.693356 0.897425 0.696069 0.860148 0.682093 0.900813 0.664354 0.930518 0.711861 0.897425 0.696069 0.924655 0.665869 0.87358 0.653588 0.860148 0.682093 0.853066 0.641485 0.853066 0.641485 0.8326 0.667638 0.836637 0.627495 0.863642 0.631975 0.853066 0.641485 0.856352 0.61962 0.878537 0.642683 0.87358 0.653588 0.863642 0.631975 0.900813 0.664354 0.87358 0.653588 0.899403 0.6471 0.924655 0.665869 0.900813 0.664354 0.915665 0.643722 0.77388 0.693259 0.760619 0.677211 0.789245 0.673166 0.830804 0.614125 0.836637 0.627495 0.791718 0.63176 0.856352 0.61962 0.836637 0.627495 0.853403 0.608029 0.879283 0.616768 0.880184 0.60847 0.888091 0.618953 0.888091 0.618953 0.891308 0.610794 0.897988 0.623318 0.924677 0.635245 0.939973 0.660151 0.915665 0.643722 0.939973 0.660151 0.953103 0.70713 0.924655 0.665869 0.941934 0.740969 0.931927 0.761675 0.918849 0.735436 0.91444 0.791682 0.910801 0.760689 0.93789 0.784046 0.932123 0.825394 0.91444 0.791682 0.949086 0.814915 0.946554 0.848348 0.932123 0.825394 0.962553 0.832195 0.707769 0.694032 0.708973 0.714418 0.684413 0.693032 0.747759 0.708816 0.708973 0.714418 0.739723 0.685313 0.747759 0.708816 0.739723 0.685313 0.77388 0.693259 0.789245 0.673166 0.772249 0.658019 0.800742 0.650604 0.819853 0.693356 0.789245 0.673166 0.8326 0.667638 0.84788 0.708507 0.819853 0.693356 0.860148 0.682093 0.897425 0.696069 0.886599 0.725284 0.860148 0.682093 0.930518 0.711861 0.918849 0.735436 0.897425 0.696069 0.952652 0.718049 0.941934 0.740969 0.930518 0.711861 0.774719 0.829884 0.755186 0.829732 0.774722 0.798973 0.73353 0.79504 0.755401 0.797145 0.733721 0.829524 0.686787 0.829109 0.687025 0.798269 0.725411 0.829454 0.665898 0.827639 0.666391 0.803726 0.686787 0.829109 0.774719 0.829884 0.774203 0.860309 0.755186 0.829732 0.733818 0.863729 0.733721 0.829524 0.754724 0.862069 0.686787 0.829109 0.725411 0.829454 0.686385 0.859162 0.665898 0.827639 0.686787 0.829109 0.665085 0.849912 0.879283 0.616768 0.868847 0.616864 0.880184 0.60847 0.87165 0.625972 0.868847 0.616864 0.879099 0.623026 0.897988 0.623318 0.906463 0.63074 0.893908 0.629005 0.912901 0.6231 0.906463 0.63074 0.903004 0.616494 0.915665 0.643722 0.899403 0.6471 0.906463 0.63074 0.87165 0.625972 0.863642 0.631975 0.868847 0.616864 0.853403 0.608029 0.869004 0.607116 0.856352 0.61962 0.912901 0.6231 0.924677 0.635245 0.906463 0.63074 0.943108 0.889461 0.941764 0.886235 0.967838 0.887471 0.967838 0.887471 0.969169 0.884006 0.988367 0.90401 0.917964 0.930585 0.92066 0.902248 0.921549 0.9294 0.939293 0.947427 0.937503 0.950374 0.921549 0.9294 0.960846 0.947751 0.961853 0.950702 0.939293 0.947427 0.991709 0.929088 0.974361 0.94495 0.98826 0.928385 0.991709 0.902133 0.991709 0.929088 0.988367 0.90401 0.92066 0.902248 0.941764 0.886235 0.92415 0.903699 0.839983 0.907437 0.827507 0.87553 0.853909 0.905732 0.853909 0.905732 0.872749 0.877652 0.861473 0.912933 0.831924 0.927161 0.799219 0.938762 0.83118 0.916491 0.839366 0.933034 0.825346 0.96307 0.831924 0.927161 0.847691 0.933503 0.853892 0.96264 0.839366 0.933034 0.889725 0.9351 0.865464 0.958085 0.861528 0.922847 0.892895 0.904795 0.889725 0.9351 0.861473 0.912933 0.799219 0.90239 0.827507 0.87553 0.83118 0.916491 0.725411 0.829454 0.733721 0.829524 0.725046 0.863575 0.72566 0.79504 0.73353 0.79504 0.725411 0.829454 0.785139 0.852988 0.785638 0.829849 0.79275 0.846263 0.785429 0.806495 0.792879 0.812438 0.785638 0.829849 0.826422 0.833251 0.821142 0.834742 0.827687 0.829609 0.827687 0.829609 0.819601 0.829638 0.82637 0.825773 0.774203 0.860309 0.774719 0.829884 0.785139 0.852988 0.785638 0.829849 0.774719 0.829884 0.785429 0.806495 0.962553 0.832195 0.949086 0.814915 0.973957 0.817809 0.949086 0.814915 0.93789 0.784046 0.961948 0.805284 0.734709 0.670549 0.739723 0.685313 0.708121 0.677937 0.708121 0.677937 0.707769 0.694032 0.690233 0.67497 0.79275 0.846263 0.791204 0.829639 0.821142 0.834742 0.973957 0.817809 0.961948 0.805284 0.998946 0.783144 0.961948 0.805284 0.953074 0.779837 0.994668 0.77933 0.819601 0.829638 0.791204 0.829639 0.82092 0.824112 0.718281 0.63497 0.734709 0.670549 0.711542 0.635687 0.711542 0.635687 0.708121 0.677937 0.705971 0.634392 0.836314 0.733956 0.833852 0.738982 0.805755 0.720817 0.8731 0.753904 0.866404 0.764149 0.836314 0.733956 0.892162 0.798359 0.866404 0.764149 0.900567 0.795752 0.92183 0.831683 0.917337 0.833914 0.900567 0.795752 0.933337 0.857741 0.917337 0.833914 0.936937 0.855582 0.710668 0.731459 0.6834 0.730964 0.709502 0.726591 0.80284 0.730417 0.757817 0.730021 0.805755 0.720817 0.751716 0.722728 0.746575 0.730117 0.709502 0.726591 0.973417 0.941954 0.974361 0.94495 0.960846 0.947751 0.747819 0.769898 0.758836 0.770513 0.747687 0.777303 0.854026 0.931133 0.865464 0.958085 0.847691 0.933503 0.859804 0.824414 0.837073 0.800234 0.865519 0.819155 0.889491 0.848853 0.882764 0.853031 0.865519 0.819155 0.904241 0.874642 0.896439 0.876818 0.889491 0.848853 0.717111 0.768456 0.69131 0.770238 0.716798 0.761072 0.747819 0.769898 0.717111 0.768456 0.746307 0.762387 0.789194 0.767018 0.787161 0.774347 0.761661 0.763563 0.813019 0.782928 0.787161 0.774347 0.816229 0.775919 0.837073 0.800234 0.813019 0.782928 0.841708 0.793936 0.866404 0.764149 0.892162 0.798359 0.861289 0.772089 0.885943 0.80229 0.892162 0.798359 0.912086 0.837378 0.917337 0.833914 0.933337 0.857741 0.912086 0.837378 0.6834 0.730964 0.710668 0.731459 0.683019 0.737571 0.710813 0.737666 0.710668 0.731459 0.744485 0.736878 0.757817 0.730021 0.80284 0.730417 0.759569 0.737588 0.800313 0.739753 0.80284 0.730417 0.829471 0.748357 0.833852 0.738982 0.866404 0.764149 0.829471 0.748357 0.757817 0.730021 0.759569 0.737588 0.746575 0.730117 0.758836 0.770513 0.747819 0.769898 0.761661 0.763563 0.761661 0.763563 0.746307 0.762387 0.759569 0.737588 0.800313 0.739753 0.789194 0.767018 0.759569 0.737588 0.829471 0.748357 0.816229 0.775919 0.800313 0.739753 0.829471 0.748357 0.861289 0.772089 0.816229 0.775919 0.885943 0.80229 0.865519 0.819155 0.861289 0.772089 0.889491 0.848853 0.912086 0.837378 0.904241 0.874642 0.912086 0.837378 0.889491 0.848853 0.885943 0.80229 0.716798 0.761072 0.68911 0.763236 0.710813 0.737666 0.746307 0.762387 0.716798 0.761072 0.744485 0.736878 0.095501 0.470948 0.07721495 0.473398 0.095766 0.500853 0.095766 0.500853 0.077322 0.502398 0.09590196 0.530555 0.09590196 0.530555 0.07756197 0.531382 0.09593296 0.559748 0.09593296 0.559748 0.07769095 0.560132 0.09593796 0.588668 0.07721495 0.473398 0.095501 0.470948 0.08817499 0.413831 0.077322 0.502398 0.07721495 0.473398 0.07187396 0.502395 0.07756197 0.531382 0.077322 0.502398 0.07201695 0.531133 0.07769095 0.560132 0.07756197 0.531382 0.07208698 0.559954 0.07208698 0.559954 0.07211196 0.588668 0.07769095 0.560132 0.119194 0.468007 0.113843 0.46846 0.119194 0.499365 0.119194 0.499365 0.113934 0.499398 0.119193 0.529343 0.119193 0.529343 0.113883 0.529523 0.119193 0.559083 0.119193 0.559083 0.113821 0.559206 0.119193 0.588668 0.07721495 0.473398 0.08817499 0.413831 0.07192599 0.473054 0.102747 0.410924 0.100956 0.412102 0.119194 0.468007 0.086928 0.412047 0.08817499 0.413831 0.09377497 0.410061 0.113821 0.559206 0.09593296 0.559748 0.113795 0.588668 0.113883 0.529523 0.09590196 0.530555 0.113821 0.559206 0.113934 0.499398 0.095766 0.500853 0.113883 0.529523 0.113843 0.46846 0.095501 0.470948 0.113934 0.499398 0.100956 0.412102 0.09397798 0.413046 0.113843 0.46846 0.09397798 0.413046 0.100956 0.412102 0.09377497 0.410061 0.02872896 0.498616 0.02872794 0.528775 0.04971599 0.500535 0.02872794 0.528775 0.02872794 0.558774 0.049703 0.529924 0.02872794 0.558774 0.02872794 0.588668 0.04984694 0.559329 0.05255299 0.408627 0.04455995 0.408166 0.05032396 0.4702 0.04971599 0.500535 0.05032396 0.4702 0.02872896 0.498616 0.04984694 0.559329 0.04991495 0.588668 0.07208698 0.559954 0.049703 0.529924 0.04984694 0.559329 0.07201695 0.531133 0.04971599 0.500535 0.049703 0.529924 0.07187396 0.502395 0.07187396 0.502395 0.07192599 0.473054 0.04971599 0.500535 0.05255299 0.408627 0.05032396 0.4702 0.05930095 0.410369 0.077322 0.502399 0.07721596 0.4734 0.09576499 0.500853 0.07756197 0.531382 0.077322 0.502399 0.09590196 0.530555 0.07769095 0.560132 0.07756197 0.531382 0.095932 0.559748 0.07773798 0.588668 0.07769095 0.560132 0.09593796 0.588668 0.07721596 0.4734 0.08817499 0.413839 0.095501 0.470949 0.077322 0.502399 0.07187396 0.502396 0.07721596 0.4734 0.07756197 0.531382 0.07201796 0.531133 0.077322 0.502399 0.07769095 0.560132 0.07208698 0.559954 0.07756197 0.531382 0.07773798 0.588668 0.07211196 0.588668 0.07769095 0.560132 0.113933 0.499398 0.113842 0.468462 0.119192 0.499365 0.113882 0.529523 0.113933 0.499398 0.119192 0.529343 0.113821 0.559206 0.113882 0.529523 0.119193 0.559083 0.113795 0.588668 0.113821 0.559206 0.119193 0.588668 0.07721596 0.4734 0.07192599 0.473055 0.08817499 0.413839 0.113842 0.468462 0.100956 0.412109 0.119192 0.468009 0.09397697 0.41305 0.08817499 0.413839 0.09377396 0.410067 0.09593796 0.588668 0.095932 0.559748 0.113795 0.588668 0.095932 0.559748 0.09590196 0.530555 0.113821 0.559206 0.09590196 0.530555 0.09576499 0.500853 0.113882 0.529523 0.09576499 0.500853 0.095501 0.470949 0.113933 0.499398 0.095501 0.470949 0.09397697 0.41305 0.113842 0.468462 0.09397697 0.41305 0.09377396 0.410067 0.100956 0.412109 0.02872794 0.498616 0.04971694 0.500536 0.02872794 0.528774 0.02872794 0.528774 0.04970395 0.529924 0.02872794 0.558774 0.02872794 0.558774 0.04984694 0.559328 0.02872794 0.588667 0.02872699 0.467266 0.04456299 0.408169 0.05032598 0.470201 0.04971694 0.500536 0.02872794 0.498616 0.05032598 0.470201 0.04984694 0.559328 0.07208698 0.559954 0.04991495 0.588668 0.04970395 0.529924 0.07201796 0.531133 0.04984694 0.559328 0.04971694 0.500536 0.07187396 0.502396 0.04970395 0.529924 0.07187396 0.502396 0.04971694 0.500536 0.07192599 0.473055 0.05255597 0.40863 0.05930298 0.410372 0.05032598 0.470201 0.690719 0.933807 0.690768 0.947055 0.686798 0.934214 0.677315 0.936865 0.682691 0.935099 0.682754 0.949011 0.671738 0.939135 0.677315 0.936865 0.67943 0.950459 0.686798 0.934214 0.688411 0.94731 0.682691 0.935099 0.665184 0.940752 0.671738 0.939135 0.675542 0.951618 0.658984 0.945263 0.665184 0.940752 0.671877 0.954496 0.651832 0.951535 0.658984 0.945263 0.667702 0.958397 0.64744 0.958175 0.651832 0.951535 0.665252 0.96229 0.645033 0.964596 0.64744 0.958175 0.66413 0.966102 0.58481 0.797556 0.570755 0.796871 0.576413 0.779486 0.567757 0.759787 0.568039 0.759284 0.567884 0.779937 0.611782 0.894413 0.600171 0.87493 0.62619 0.886975 0.588021 0.853252 0.608077 0.848331 0.600171 0.87493 0.646007 0.917646 0.635732 0.923809 0.636103 0.903601 0.611782 0.894413 0.62619 0.886975 0.623841 0.910504 0.608077 0.848331 0.588021 0.853252 0.601788 0.834336 0.578403 0.824726 0.596536 0.822798 0.582661 0.838445 0.596536 0.822798 0.578403 0.824726 0.591171 0.811224 0.570755 0.796871 0.58481 0.797556 0.574441 0.811378 0.656827 0.915409 0.646007 0.917646 0.648793 0.900091 0.62619 0.886975 0.64063 0.881909 0.636103 0.903601 0.64063 0.881909 0.62619 0.886975 0.63315 0.860783 0.625669 0.83623 0.63315 0.860783 0.608077 0.848331 0.617411 0.823892 0.625669 0.83623 0.601788 0.834336 0.60912 0.811065 0.617411 0.823892 0.596536 0.822798 0.600615 0.799891 0.60912 0.811065 0.591171 0.811224 0.591501 0.788369 0.600615 0.799891 0.58481 0.797556 0.580485 0.774301 0.591501 0.788369 0.576413 0.779486 0.576413 0.779486 0.568039 0.759284 0.580485 0.774301 0.665184 0.940752 0.658984 0.945263 0.655492 0.929654 0.635732 0.923809 0.646007 0.917646 0.647103 0.93512 0.671738 0.939135 0.665184 0.940752 0.664321 0.927872 0.646007 0.917646 0.656827 0.915409 0.655492 0.929654 0.525315 0.830741 0.520976 0.813699 0.539195 0.82045 0.520976 0.813699 0.519401 0.793365 0.529047 0.806931 0.583604 0.918369 0.568817 0.903025 0.598342 0.905743 0.575135 0.872089 0.586229 0.888733 0.555347 0.887663 0.624468 0.932922 0.615469 0.944243 0.611238 0.920501 0.583604 0.918369 0.598342 0.905743 0.599446 0.932564 0.565651 0.858519 0.575135 0.872089 0.543598 0.873414 0.557039 0.846242 0.565651 0.858519 0.535608 0.864681 0.548361 0.833506 0.557039 0.846242 0.528962 0.845486 0.528962 0.845486 0.525315 0.830741 0.548361 0.833506 0.635732 0.923809 0.624468 0.932922 0.623841 0.910504 0.611782 0.894413 0.623841 0.910504 0.598342 0.905743 0.600171 0.87493 0.611782 0.894413 0.586229 0.888733 0.588021 0.853252 0.600171 0.87493 0.575135 0.872089 0.578445 0.843335 0.588021 0.853252 0.565651 0.858519 0.568743 0.834515 0.578445 0.843335 0.557039 0.846242 0.558281 0.824778 0.568743 0.834515 0.548361 0.833506 0.539195 0.82045 0.546832 0.81438 0.548361 0.833506 0.546832 0.81438 0.539195 0.82045 0.533938 0.803864 0.519544 0.793154 0.519739 0.793197 0.529047 0.806931 0.651832 0.951535 0.64744 0.958175 0.637649 0.943093 0.615469 0.944243 0.624468 0.932922 0.63109 0.952369 0.658984 0.945263 0.651832 0.951535 0.647103 0.93512 0.624468 0.932922 0.635732 0.923809 0.637649 0.943093 0.608825 0.954349 0.615469 0.944243 0.626856 0.960948 0.64744 0.958175 0.645033 0.964596 0.63109 0.952369 0.615469 0.944243 0.608825 0.954349 0.599446 0.932564 0.571315 0.929492 0.583604 0.918369 0.590026 0.943142 0.583604 0.918369 0.571315 0.929492 0.568817 0.903025 0.537096 0.901629 0.555347 0.887663 0.553532 0.915284 0.555347 0.887663 0.537096 0.901629 0.543598 0.873414 0.508253 0.878831 0.535608 0.864681 0.522539 0.889878 0.535608 0.864681 0.508253 0.878831 0.509463 0.851425 0.476897 0.856094 0.488963 0.842742 0.492813 0.867329 0.451229 0.826911 0.444062 0.834198 0.430556 0.81689 0.403996 0.804672 0.410806 0.805815 0.424484 0.820371 0.488963 0.842742 0.476897 0.856094 0.469915 0.835294 0.444062 0.834198 0.451229 0.826911 0.461129 0.845593 0.631474 0.731174 0.631544 0.707832 0.63972 0.729267 0.632841 0.753142 0.631474 0.731174 0.645974 0.749494 0.642097 0.834917 0.6587 0.832785 0.646727 0.858604 0.666884 0.878076 0.653136 0.88059 0.662296 0.856282 0.653136 0.88059 0.666884 0.878076 0.659889 0.898193 0.675503 0.91014 0.666274 0.912658 0.671312 0.895513 0.65458 0.786214 0.656438 0.810218 0.636913 0.791147 0.656438 0.810218 0.6587 0.832785 0.63915 0.812424 0.634751 0.772088 0.632841 0.753142 0.650953 0.768285 0.650953 0.768285 0.65458 0.786214 0.634751 0.772088 0.64063 0.881909 0.653136 0.88059 0.648793 0.900091 0.666274 0.912658 0.656827 0.915409 0.659889 0.898193 0.625743 0.836279 0.642097 0.834917 0.63315 0.860783 0.653136 0.88059 0.64063 0.881909 0.646727 0.858604 0.636913 0.791147 0.63915 0.812424 0.619428 0.790889 0.63915 0.812424 0.642097 0.834917 0.621014 0.813878 0.620552 0.750476 0.632841 0.753142 0.618919 0.770332 0.636913 0.791147 0.619428 0.790889 0.634751 0.772088 0.631388 0.70795 0.631544 0.707832 0.624136 0.72955 0.632841 0.753142 0.620552 0.750476 0.631474 0.731174 0.656827 0.915409 0.666274 0.912658 0.664321 0.927872 0.677315 0.936865 0.671738 0.939135 0.671936 0.925113 0.666274 0.912658 0.675503 0.91014 0.671936 0.925113 0.682691 0.935099 0.677315 0.936865 0.679269 0.922927 0.689541 0.682362 0.689921 0.682685 0.693619 0.700476 0.708944 0.715346 0.697383 0.717171 0.700358 0.699756 0.716709 0.833253 0.71315 0.857544 0.704076 0.832554 0.698852 0.87815 0.701519 0.856481 0.709303 0.879507 0.69722 0.894761 0.698852 0.87815 0.706097 0.896114 0.703425 0.909878 0.696215 0.908758 0.706097 0.896114 0.72302 0.786083 0.719795 0.810276 0.706056 0.788647 0.719795 0.810276 0.716709 0.833253 0.7056 0.810024 0.694735 0.934011 0.698962 0.934768 0.693178 0.947185 0.720926 0.745982 0.723061 0.765403 0.703385 0.749734 0.723061 0.765403 0.72302 0.786083 0.705205 0.768405 0.677687 0.877146 0.688266 0.877251 0.680238 0.894294 0.689345 0.908362 0.68259 0.908877 0.688726 0.89406 0.687798 0.832451 0.687963 0.855794 0.672209 0.832284 0.688266 0.877251 0.677687 0.877146 0.687963 0.855794 0.68781 0.789684 0.687804 0.810634 0.670137 0.788601 0.687804 0.810634 0.687798 0.832451 0.67078 0.810251 0.671587 0.74745 0.687478 0.750044 0.670407 0.7671 0.68781 0.789684 0.670137 0.788601 0.687644 0.769142 0.68051 0.69994 0.68825 0.68208 0.687564 0.700886 0.687355 0.718015 0.676278 0.716018 0.687564 0.700886 0.676278 0.716018 0.687355 0.718015 0.673492 0.731114 0.687478 0.750044 0.671587 0.74745 0.687367 0.733596 0.697383 0.717171 0.708944 0.715346 0.700647 0.733101 0.720926 0.745982 0.703385 0.749734 0.715863 0.729999 0.68259 0.908877 0.689345 0.908362 0.684831 0.921809 0.690129 0.921281 0.690719 0.933807 0.684831 0.921809 0.696215 0.908758 0.703425 0.909878 0.695557 0.921537 0.698962 0.934768 0.694735 0.934011 0.701276 0.922465 0.742573 0.725326 0.746917 0.699663 0.751014 0.723178 0.74017 0.750199 0.742573 0.725326 0.754508 0.745859 0.730282 0.834902 0.746206 0.83519 0.726121 0.859066 0.732978 0.883 0.721061 0.88117 0.739441 0.861271 0.716402 0.898111 0.721061 0.88117 0.726737 0.900289 0.712194 0.911987 0.716402 0.898111 0.720813 0.914533 0.755991 0.791198 0.752902 0.813033 0.735803 0.791758 0.752902 0.813033 0.746206 0.83519 0.733307 0.812735 0.709343 0.938318 0.701954 0.949955 0.704232 0.936385 0.737981 0.771443 0.74017 0.750199 0.756664 0.768528 0.756664 0.768528 0.755991 0.791198 0.737981 0.771443 0.704232 0.936385 0.698855 0.948723 0.698962 0.934768 0.721061 0.88117 0.716402 0.898111 0.709303 0.879507 0.703425 0.909878 0.706097 0.896114 0.712194 0.911987 0.730282 0.834902 0.726121 0.859066 0.716709 0.833253 0.726121 0.859066 0.721061 0.88117 0.71315 0.857544 0.72302 0.786083 0.735803 0.791758 0.719795 0.810276 0.733307 0.812735 0.730282 0.834902 0.719795 0.810276 0.731874 0.744203 0.74017 0.750199 0.727152 0.765512 0.735803 0.791758 0.72302 0.786083 0.737981 0.771443 0.746674 0.699713 0.746917 0.699663 0.737264 0.721671 0.74017 0.750199 0.731874 0.744203 0.742573 0.725326 0.703425 0.909878 0.712194 0.911987 0.701276 0.922465 0.704232 0.936385 0.698962 0.934768 0.708411 0.92442 0.708411 0.92442 0.712194 0.911987 0.71534 0.926805 0.71534 0.926805 0.709343 0.938318 0.708411 0.92442 0.694735 0.934011 0.693178 0.947185 0.690719 0.933807 0.689345 0.908362 0.696215 0.908758 0.690129 0.921281 0.694735 0.934011 0.690719 0.933807 0.695557 0.921537 0.688266 0.877251 0.698852 0.87815 0.688726 0.89406 0.696215 0.908758 0.689345 0.908362 0.69722 0.894761 0.704076 0.832554 0.701519 0.856481 0.687798 0.832451 0.701519 0.856481 0.698852 0.87815 0.687963 0.855794 0.706056 0.788647 0.7056 0.810024 0.68781 0.789684 0.7056 0.810024 0.704076 0.832554 0.687804 0.810634 0.687478 0.750044 0.703385 0.749734 0.687644 0.769142 0.705205 0.768405 0.706056 0.788647 0.687644 0.769142 0.687355 0.718015 0.697383 0.717171 0.687367 0.733596 0.703385 0.749734 0.687478 0.750044 0.700647 0.733101 0.689017 0.682045 0.689541 0.682362 0.687564 0.700886 0.697383 0.717171 0.687355 0.718015 0.693619 0.700476 0.675503 0.91014 0.68259 0.908877 0.679269 0.922927 0.684831 0.921809 0.686798 0.934214 0.679269 0.922927 0.666884 0.878076 0.677687 0.877146 0.671312 0.895513 0.68259 0.908877 0.675503 0.91014 0.680238 0.894294 0.6587 0.832785 0.672209 0.832284 0.662296 0.856282 0.677687 0.877146 0.666884 0.878076 0.674722 0.85561 0.670137 0.788601 0.67078 0.810251 0.65458 0.786214 0.67078 0.810251 0.672209 0.832284 0.656438 0.810218 0.656363 0.742425 0.671587 0.74745 0.654838 0.763589 0.670137 0.788601 0.65458 0.786214 0.670407 0.7671 0.66595 0.710848 0.676278 0.716018 0.659986 0.725469 0.671587 0.74745 0.656363 0.742425 0.673492 0.731114 0.674118 0.697053 0.687641 0.682268 0.68051 0.69994 0.676278 0.716018 0.66595 0.710848 0.68051 0.69994 0.794527 0.777884 0.802705 0.758157 0.802708 0.779135 0.788019 0.796594 0.794527 0.777884 0.801067 0.797585 0.788641 0.8582 0.777926 0.878781 0.76478 0.855038 0.749519 0.889738 0.757342 0.872255 0.76809 0.896829 0.742049 0.904459 0.749519 0.889738 0.758092 0.912211 0.734483 0.917301 0.742049 0.904459 0.747748 0.924989 0.795844 0.830555 0.792662 0.844081 0.776239 0.828632 0.792662 0.844081 0.788641 0.8582 0.770739 0.8415 0.724731 0.94523 0.710853 0.954352 0.71755 0.940143 0.782053 0.813377 0.788019 0.796594 0.798836 0.814751 0.798836 0.814751 0.795844 0.830555 0.782053 0.813377 0.71755 0.940143 0.706764 0.951227 0.709343 0.938318 0.749519 0.889738 0.742049 0.904459 0.732978 0.883 0.720813 0.914533 0.726737 0.900289 0.734483 0.917301 0.746206 0.83519 0.76478 0.855038 0.739441 0.861271 0.749519 0.889738 0.732978 0.883 0.757342 0.872255 0.76126 0.813414 0.776239 0.828632 0.753292 0.824027 0.76478 0.855038 0.746206 0.83519 0.770739 0.8415 0.778259 0.789001 0.788019 0.796594 0.769032 0.801881 0.776239 0.828632 0.76126 0.813414 0.782053 0.813377 0.802592 0.75815 0.802705 0.758157 0.788556 0.773555 0.788019 0.796594 0.778259 0.789001 0.794527 0.777884 0.71534 0.926805 0.720813 0.914533 0.726565 0.928961 0.726565 0.928961 0.71755 0.940143 0.71534 0.926805 0.726565 0.928961 0.734483 0.917301 0.736908 0.935616 0.736908 0.935616 0.724731 0.94523 0.726565 0.928961 0.864516 0.806129 0.864533 0.806127 0.852994 0.820147 0.843226 0.833251 0.852994 0.820147 0.860516 0.840765 0.8273 0.893973 0.813582 0.908385 0.805841 0.879412 0.783434 0.909382 0.794836 0.894392 0.798564 0.922639 0.771137 0.922933 0.783434 0.909382 0.782394 0.935804 0.766077 0.946682 0.758042 0.934706 0.782394 0.935804 0.851665 0.868012 0.839445 0.880339 0.826092 0.854558 0.839445 0.880339 0.8273 0.893973 0.816386 0.866239 0.733704 0.959336 0.715765 0.96291 0.730111 0.951637 0.834748 0.84403 0.843226 0.833251 0.856235 0.854218 0.856235 0.854218 0.851665 0.868012 0.834748 0.84403 0.730111 0.951637 0.713893 0.958288 0.724731 0.94523 0.76809 0.896829 0.783434 0.909382 0.758092 0.912211 0.747748 0.924989 0.758092 0.912211 0.758042 0.934706 0.788641 0.8582 0.805841 0.879412 0.777926 0.878781 0.783434 0.909382 0.76809 0.896829 0.794836 0.894392 0.810675 0.836213 0.826092 0.854558 0.799537 0.845857 0.805841 0.879412 0.788641 0.8582 0.816386 0.866239 0.833579 0.819588 0.843226 0.833251 0.821677 0.827538 0.834748 0.84403 0.826092 0.854558 0.821677 0.827538 0.864499 0.806122 0.864516 0.806129 0.846967 0.812086 0.843226 0.833251 0.833579 0.819588 0.852994 0.820147 0.736908 0.935616 0.747748 0.924989 0.744578 0.944007 0.744578 0.944007 0.730111 0.951637 0.736908 0.935616 0.744578 0.944007 0.758042 0.934706 0.750228 0.954132 0.750228 0.954132 0.733704 0.959336 0.744578 0.944007 0.733704 0.959336 0.750228 0.954132 0.735853 0.966002 0.772235 0.956997 0.754117 0.962933 0.766077 0.946682 0.810255 0.93402 0.79125 0.946691 0.798564 0.922639 0.79125 0.946691 0.772235 0.956997 0.782394 0.935804 0.845011 0.908113 0.828303 0.920824 0.8273 0.893973 0.828303 0.920824 0.810255 0.93402 0.813582 0.908385 0.851665 0.868012 0.874398 0.886861 0.839445 0.880339 0.859825 0.897153 0.845011 0.908113 0.839445 0.880339 0.906342 0.865792 0.890144 0.876187 0.894905 0.852005 0.890144 0.876187 0.874398 0.886861 0.873629 0.859101 0.954257 0.830493 0.975686 0.821317 0.959778 0.833836 0.933338 0.838727 0.954257 0.830493 0.939795 0.846095 0.914155 0.845556 0.933338 0.838727 0.922429 0.856224 0.922429 0.856224 0.906342 0.865792 0.914155 0.845556 0.715765 0.96291 0.733704 0.959336 0.716718 0.966896 0.668989 0.420925 0.654902 0.420579 0.669184 0.382259 0.668875 0.50641 0.667049 0.542892 0.650023 0.512158 0.667049 0.542892 0.669536 0.580535 0.644064 0.552493 0.669418 0.486235 0.668875 0.50641 0.654521 0.485451 0.66978 0.452873 0.669418 0.486235 0.655265 0.453037 0.66978 0.452873 0.655265 0.453037 0.668989 0.420925 0.673613 0.609757 0.661699 0.611731 0.669536 0.580535 0.69057 0.639776 0.677844 0.644855 0.673613 0.609757 0.669184 0.382259 0.65349 0.376705 0.666388 0.327281 0.592023 0.332097 0.591055 0.379463 0.566775 0.334868 0.591055 0.379463 0.590613 0.417848 0.565408 0.380808 0.591143 0.450804 0.565094 0.449444 0.590613 0.417848 0.592458 0.483101 0.565905 0.482944 0.591143 0.450804 0.595948 0.518485 0.570386 0.522273 0.592458 0.483101 0.606181 0.554276 0.582505 0.559804 0.595948 0.518485 0.624921 0.595879 0.606904 0.600047 0.606181 0.554276 0.637814 0.623125 0.627295 0.6277 0.624921 0.595879 0.654258 0.654974 0.64516 0.658805 0.637814 0.623125 0.652602 0.329255 0.65349 0.376705 0.620854 0.327598 0.654902 0.420579 0.619394 0.418319 0.65349 0.376705 0.655265 0.453037 0.620332 0.452669 0.654902 0.420579 0.654521 0.485451 0.621662 0.484747 0.655265 0.453037 0.652303 0.585553 0.642471 0.590998 0.644064 0.552493 0.652303 0.585553 0.661699 0.611731 0.642471 0.590998 0.677844 0.644855 0.666927 0.649465 0.661699 0.611731 0.652602 0.329255 0.654441 0.306309 0.666388 0.327281 0.59509 0.305812 0.592023 0.332097 0.56821 0.307775 0.620854 0.327598 0.624085 0.30414 0.652602 0.329255 0.566775 0.334868 0.543997 0.331545 0.56821 0.307775 0.738596 0.323999 0.715297 0.323799 0.73571 0.298463 0.715405 0.300492 0.715297 0.323799 0.66801 0.304695 0.657114 0.283888 0.660737 0.257628 0.670337 0.282636 0.607436 0.2467499 0.600129 0.27778 0.577205 0.243586 0.628845 0.279983 0.636014 0.252487 0.657114 0.283888 0.550796 0.280274 0.556486 0.244532 0.571385 0.278185 0.716172 0.277618 0.716961 0.2445369 0.733432 0.272986 0.670337 0.282636 0.673746 0.254872 0.716172 0.277618 0.642712 0.06817996 0.621079 0.02454996 0.655677 0.05421996 0.638519 0.07174795 0.621005 0.02477598 0.642712 0.06817996 0.638519 0.07174795 0.626314 0.06992298 0.621005 0.02477598 0.617384 0.067478 0.609414 0.06546896 0.620202 0.02443397 0.602925 0.06402295 0.619631 0.02421796 0.609414 0.06546896 0.655677 0.05421996 0.62133 0.02393096 0.659802 0.04767894 0.662232 0.118299 0.652692 0.092763 0.687004 0.09678 0.653055 0.12317 0.645916 0.09708595 0.662232 0.118299 0.653055 0.12317 0.632101 0.11086 0.645916 0.09708595 0.617236 0.104273 0.602705 0.100995 0.617464 0.08468598 0.588517 0.1045989 0.595942 0.08369499 0.602705 0.100995 0.687004 0.09678 0.671757 0.07435995 0.691833 0.08400696 0.675536 0.172238 0.669818 0.145252 0.710068 0.148102 0.662622 0.177649 0.658401 0.1503069 0.675536 0.172238 0.662622 0.177649 0.63813 0.16301 0.658401 0.1503069 0.616908 0.154439 0.596964 0.154684 0.617313 0.128482 0.5707 0.155879 0.578865 0.132076 0.596964 0.154684 0.710068 0.148102 0.700729 0.123368 0.718692 0.137317 0.676052 0.228366 0.676583 0.201526 0.716484 0.2131209 0.663847 0.232658 0.663608 0.206874 0.676052 0.228366 0.663847 0.232658 0.641869 0.22435 0.663608 0.206874 0.617329 0.184895 0.61482 0.215884 0.596876 0.18093 0.930658 0.763252 0.93277 0.747877 0.948713 0.761586 0.716484 0.2131209 0.715362 0.182759 0.730635 0.2057819 0.660737 0.257628 0.663847 0.232658 0.673746 0.254872 0.636014 0.252487 0.641869 0.22435 0.660737 0.257628 0.61482 0.215884 0.607436 0.2467499 0.583669 0.212149 0.556486 0.244532 0.56187 0.210741 0.577205 0.243586 0.716961 0.2445369 0.716484 0.2131209 0.732097 0.238495 0.673746 0.254872 0.676052 0.228366 0.716961 0.2445369 0.676583 0.201526 0.675536 0.172238 0.715362 0.182759 0.663608 0.206874 0.662622 0.177649 0.676583 0.201526 0.663608 0.206874 0.641156 0.193838 0.662622 0.177649 0.617329 0.184895 0.596876 0.18093 0.616908 0.154439 0.93277 0.747877 0.936053 0.72047 0.950909 0.747783 0.715362 0.182759 0.710068 0.148102 0.727084 0.173341 0.669818 0.145252 0.662232 0.118299 0.700729 0.123368 0.658401 0.1503069 0.653055 0.12317 0.669818 0.145252 0.658401 0.1503069 0.6352 0.136011 0.653055 0.12317 0.617313 0.128482 0.599918 0.126943 0.617236 0.104273 0.578865 0.132076 0.588517 0.1045989 0.599918 0.126943 0.700729 0.123368 0.687004 0.09678 0.705821 0.113313 0.652692 0.092763 0.642712 0.06817996 0.671757 0.07435995 0.645916 0.09708595 0.638519 0.07174795 0.652692 0.092763 0.645916 0.09708595 0.629308 0.08899396 0.638519 0.07174795 0.617464 0.08468598 0.606285 0.08225798 0.617384 0.067478 0.595942 0.08369499 0.602925 0.06402295 0.606285 0.08225798 0.671757 0.07435995 0.655677 0.05421996 0.675889 0.064233 0.564058 0.417787 0.541069 0.416957 0.565408 0.380808 0.565408 0.380808 0.542287 0.379721 0.566775 0.334868 0.666927 0.649465 0.654258 0.654974 0.65078 0.6172 0.642471 0.590998 0.65078 0.6172 0.624921 0.595879 0.642471 0.590998 0.624921 0.595879 0.629721 0.55485 0.621662 0.484747 0.592458 0.483101 0.620332 0.452669 0.620332 0.452669 0.591143 0.450804 0.619394 0.418319 0.619181 0.377855 0.619394 0.418319 0.591055 0.379463 0.620854 0.327598 0.619181 0.377855 0.592023 0.332097 0.624085 0.30414 0.620854 0.327598 0.59509 0.305812 0.636014 0.252487 0.628845 0.279983 0.607436 0.2467499 0.641869 0.22435 0.636014 0.252487 0.61482 0.215884 0.641869 0.22435 0.61482 0.215884 0.641156 0.193838 0.641156 0.193838 0.617329 0.184895 0.63813 0.16301 0.63813 0.16301 0.616908 0.154439 0.6352 0.136011 0.6352 0.136011 0.617313 0.128482 0.632101 0.11086 0.632101 0.11086 0.617236 0.104273 0.629308 0.08899396 0.629308 0.08899396 0.617464 0.08468598 0.626314 0.06992298 0.626314 0.06992298 0.617384 0.067478 0.620545 0.02460497 0.745866 0.373467 0.748722 0.412118 0.7202 0.377343 0.7202 0.377343 0.724798 0.419133 0.669184 0.382259 0.715297 0.323799 0.738596 0.323999 0.7202 0.377343 0.715297 0.323799 0.7202 0.377343 0.666388 0.327281 0.928339 0.784882 0.930658 0.763252 0.948344 0.778791 0.948344 0.778791 0.948713 0.761586 0.964848 0.749831 0.928339 0.784882 0.924626 0.753436 0.930658 0.763252 0.971711 0.723389 0.964848 0.749831 0.952974 0.720438 0.924626 0.753436 0.922483 0.718079 0.93277 0.747877 0.922483 0.718079 0.895525 0.71386 0.923734 0.692739 0.936053 0.72047 0.922483 0.718079 0.937691 0.700413 0.936053 0.72047 0.937691 0.700413 0.952974 0.720438 0.952974 0.720438 0.954673 0.69806 0.971711 0.723389 0.939559 0.678936 0.941014 0.660844 0.953678 0.676309 0.939559 0.678936 0.927311 0.673574 0.941014 0.660844 0.91248 0.668477 0.922019 0.655136 0.927311 0.673574 0.96753 0.673611 0.953678 0.676309 0.96012 0.657984 0.937691 0.700413 0.939559 0.678936 0.954673 0.69806 0.937691 0.700413 0.923734 0.692739 0.939559 0.678936 0.902301 0.688922 0.91248 0.668477 0.923734 0.692739 0.954673 0.69806 0.953678 0.676309 0.972392 0.69702 0.96012 0.657984 0.950715 0.660043 0.942035 0.635586 0.941014 0.660844 0.941788 0.635648 0.950715 0.660043 0.941014 0.660844 0.932436 0.656497 0.941788 0.635648 0.922019 0.655136 0.941513 0.635535 0.932436 0.656497 0.564058 0.417787 0.565094 0.449444 0.541069 0.416957 0.748722 0.412118 0.747838 0.448583 0.724798 0.419133 0.668989 0.420925 0.724798 0.419133 0.66978 0.452873 0.565094 0.449444 0.565905 0.482944 0.541597 0.451785 0.747838 0.448583 0.746432 0.483483 0.729446 0.449895 0.66978 0.452873 0.729446 0.449895 0.669418 0.486235 0.654521 0.485451 0.650023 0.512158 0.634793 0.497154 0.654521 0.485451 0.634793 0.497154 0.621662 0.484747 0.644064 0.552493 0.638676 0.527586 0.650023 0.512158 0.629721 0.55485 0.625684 0.531376 0.644064 0.552493 0.606181 0.554276 0.595948 0.518485 0.606277 0.529913 0.629721 0.55485 0.606181 0.554276 0.625684 0.531376 0.592458 0.483101 0.621662 0.484747 0.600607 0.498922 0.592458 0.483101 0.600607 0.498922 0.595948 0.518485 0.498767 0.65908 0.525641 0.642524 0.519655 0.664536 0.519655 0.664536 0.53576 0.651206 0.539153 0.667936 0.479503 0.63995 0.517824 0.629806 0.498767 0.65908 0.479503 0.63995 0.479656 0.618885 0.517824 0.629806 0.485073 0.588659 0.505541 0.575676 0.515575 0.590753 0.479656 0.618885 0.485073 0.588659 0.513433 0.615996 0.52268 0.564119 0.534459 0.539011 0.53234 0.564584 0.505541 0.575676 0.52268 0.564119 0.520188 0.579534 0.542427 0.631787 0.561184 0.618036 0.552365 0.640497 0.552365 0.640497 0.566747 0.623508 0.562116 0.646071 0.542427 0.631787 0.536296 0.623628 0.561184 0.618036 0.536296 0.623628 0.532379 0.610163 0.558752 0.612897 0.533588 0.59246 0.539013 0.581502 0.557273 0.597146 0.532379 0.610163 0.533588 0.59246 0.557118 0.605076 0.556729 0.559643 0.568734 0.579136 0.54629 0.570777 0.539013 0.581502 0.54629 0.570777 0.558416 0.590031 0.562116 0.646071 0.54749 0.657646 0.552365 0.640497 0.556729 0.559643 0.54629 0.570777 0.545934 0.544714 0.517824 0.629806 0.536296 0.623628 0.525641 0.642524 0.513433 0.615996 0.532379 0.610163 0.517824 0.629806 0.533588 0.59246 0.532379 0.610163 0.515575 0.590753 0.539013 0.581502 0.533588 0.59246 0.520188 0.579534 0.54629 0.570777 0.539013 0.581502 0.53234 0.564584 0.525641 0.642524 0.542427 0.631787 0.53576 0.651206 0.716172 0.277618 0.715405 0.300492 0.670337 0.282636 0.733432 0.272986 0.73571 0.298463 0.716172 0.277618 0.571385 0.278185 0.56821 0.307775 0.550796 0.280274 0.600129 0.27778 0.59509 0.305812 0.571385 0.278185 0.628845 0.279983 0.624085 0.30414 0.600129 0.27778 0.657114 0.283888 0.654441 0.306309 0.628845 0.279983 0.670337 0.282636 0.66801 0.304695 0.657114 0.283888 1.229178 0.655733 1.257179 0.645931 1.225419 0.62324 1.257179 0.645931 1.229178 0.655733 1.26557 0.685433 1.26557 0.685433 1.239335 0.694272 1.275859 0.724496 1.263047 0.785891 1.289918 0.771568 1.249691 0.734862 1.277467 0.821357 1.303714 0.802356 1.263047 0.785891 1.29757 0.853469 1.323016 0.831513 1.277467 0.821357 1.225419 0.62324 1.250481 0.612269 1.223063 0.589744 1.303714 0.802356 1.31448 0.796012 1.289918 0.771568 1.289918 0.771568 1.305285 0.764178 1.275859 0.724496 1.291629 0.677799 1.26557 0.685433 1.297826 0.717829 1.284717 0.636904 1.257179 0.645931 1.291629 0.677799 1.277291 0.601764 1.250481 0.612269 1.284717 0.636904 1.265565 0.563417 1.240759 0.576783 1.277291 0.601764 1.086262 0.215111 1.103917 0.199038 1.048608 0.1586509 1.142145 0.244418 1.103917 0.199038 1.114755 0.259558 1.156924 0.270023 1.142145 0.244418 1.127587 0.286248 1.150052 0.344239 1.182575 0.329578 1.139928 0.315581 1.205954 0.395247 1.194331 0.361713 1.174525 0.407793 1.202525 0.479124 1.227735 0.466561 1.188301 0.441389 1.240759 0.576783 1.265565 0.563417 1.232929 0.553361 1.103917 0.199038 1.117933 0.180204 1.049585 0.157495 1.173479 0.221288 1.117933 0.180204 1.142145 0.244418 1.193263 0.253295 1.173479 0.221288 1.156924 0.270023 1.218245 0.321491 1.207312 0.28956 1.182575 0.329578 1.236153 0.386156 1.227854 0.353545 1.205954 0.395247 1.227735 0.466561 1.254318 0.453865 1.216522 0.430047 1.265565 0.563417 1.296059 0.551778 1.255828 0.539963 1.296059 0.551778 1.265565 0.563417 1.303596 0.593839 1.303596 0.593839 1.277291 0.601764 1.308419 0.630751 1.291629 0.677799 1.312632 0.673188 1.284717 0.636904 1.297826 0.717829 1.317311 0.7135 1.291629 0.677799 1.305285 0.764178 1.320442 0.758816 1.297826 0.717829 1.31448 0.796012 1.322512 0.793387 1.305285 0.764178 1.223063 0.589744 1.240759 0.576783 1.224305 0.55723 1.232929 0.553361 1.255828 0.539963 1.227378 0.533568 1.255828 0.539963 1.285103 0.526422 1.248021 0.521114 1.227378 0.533568 1.248021 0.521114 1.216077 0.516525 1.248021 0.521114 1.276084 0.507547 1.240476 0.501969 1.229178 0.655733 1.225419 0.62324 1.188643 0.659662 1.223063 0.589744 1.184842 0.60301 1.225419 0.62324 1.048608 0.1586509 1.047148 0.1605499 1.086262 0.215111 1.086262 0.215111 1.06298 0.232287 1.114755 0.259558 1.114755 0.259558 1.075939 0.278537 1.127587 0.286248 1.139928 0.315581 1.096435 0.33469 1.150052 0.344239 1.160915 0.374735 1.120241 0.391563 1.174525 0.407793 1.202525 0.479124 1.188301 0.441389 1.157159 0.497019 1.224305 0.55723 1.186609 0.583056 1.223063 0.589744 1.220884 0.536487 1.216077 0.516525 1.179884 0.561671 1.207312 0.28956 1.193263 0.253295 1.170495 0.299454 1.170495 0.299454 1.156924 0.270023 1.139928 0.315581 1.085551 0.306832 1.096435 0.33469 1.127587 0.286248 1.240476 0.501969 1.267798 0.48962 1.227735 0.466561 1.216077 0.516525 1.240476 0.501969 1.202525 0.479124 1.157159 0.497019 1.167014 0.532699 1.202525 0.479124 1.216522 0.430047 1.244294 0.418161 1.205954 0.395247 1.188301 0.441389 1.216522 0.430047 1.174525 0.407793 1.174525 0.407793 1.135484 0.42641 1.188301 0.441389 1.227854 0.353545 1.218245 0.321491 1.194331 0.361713 1.160915 0.374735 1.194331 0.361713 1.150052 0.344239 1.150052 0.344239 1.108091 0.363399 1.160915 0.374735 1.220884 0.536487 1.179884 0.561671 1.224305 0.55723 1.224305 0.55723 1.232929 0.553361 1.220884 0.536487 1.063376 0.955914 1.048038 0.957921 1.054663 0.965852 1.057458 0.915252 1.050347 0.927524 1.067083 0.920527 1.067747 0.933952 1.056825 0.942271 1.069094 0.945959 1.17526 0.78287 1.179698 0.74978 1.159333 0.773468 1.139272 0.800785 1.15869 0.811228 1.159333 0.773468 1.119529 0.82707 1.143846 0.836421 1.139272 0.800785 1.100253 0.85353 1.120887 0.86335 1.119529 0.82707 1.083991 0.877 1.101598 0.884425 1.100253 0.85353 1.067882 0.899282 1.081596 0.905228 1.083991 0.877 1.057458 0.915252 1.067083 0.920527 1.067882 0.899282 1.221429 0.845912 1.233573 0.857146 1.248408 0.830811 1.197976 0.860133 1.210895 0.874706 1.221429 0.845912 1.168149 0.87797 1.186722 0.890951 1.197976 0.860133 1.142302 0.893183 1.159137 0.907707 1.168149 0.87797 1.119024 0.906308 1.132927 0.92043 1.142302 0.893183 1.09394 0.920655 1.106669 0.931895 1.119024 0.906308 1.069094 0.945959 1.106669 0.931895 1.067747 0.933952 1.256034 0.956311 1.282545 0.93903 1.253439 0.942082 1.229482 0.964749 1.256034 0.956311 1.226265 0.945882 1.195328 0.950423 1.200887 0.970532 1.226265 0.945882 1.164737 0.953312 1.170418 0.97362 1.195328 0.950423 1.136008 0.955149 1.143783 0.971606 1.164737 0.953312 1.100192 0.956122 1.103458 0.969827 1.136008 0.955149 1.054663 0.965852 1.103458 0.969827 1.063376 0.955914 1.069094 0.945959 1.056345 0.948744 1.063376 0.955914 1.063376 0.955914 1.100192 0.956122 1.069094 0.945959 1.100192 0.956122 1.136008 0.955149 1.105505 0.937418 1.136008 0.955149 1.164737 0.953312 1.144053 0.928846 1.164737 0.953312 1.195328 0.950423 1.171675 0.925038 1.195328 0.950423 1.226265 0.945882 1.2025 0.923786 1.226265 0.945882 1.253439 0.942082 1.230622 0.922945 1.253439 0.942082 1.282318 0.938331 1.256401 0.92449 1.067083 0.920527 1.055169 0.931649 1.067747 0.933952 1.067747 0.933952 1.09394 0.920655 1.067083 0.920527 1.09394 0.920655 1.119024 0.906308 1.089165 0.902322 1.119024 0.906308 1.142302 0.893183 1.113798 0.88478 1.142302 0.893183 1.168149 0.87797 1.136362 0.867583 1.168149 0.87797 1.197976 0.860133 1.163456 0.851063 1.197976 0.860133 1.221429 0.845912 1.190413 0.836651 1.221429 0.845912 1.248408 0.830811 1.218301 0.827507 1.046632 0.907405 1.040435 0.921198 1.057458 0.915252 1.057458 0.915252 1.067882 0.899282 1.046632 0.907405 1.067882 0.899282 1.083991 0.877 1.057644 0.885306 1.083991 0.877 1.100253 0.85353 1.070426 0.861027 1.100253 0.85353 1.119529 0.82707 1.085378 0.834589 1.119529 0.82707 1.139272 0.800785 1.103021 0.803572 1.139272 0.800785 1.159333 0.773468 1.123125 0.776835 1.178665 0.748657 1.177474 0.747098 1.159333 0.773468 1.453228 0.637317 1.461832 0.594417 1.431958 0.631074 1.411305 0.62627 1.414811 0.586629 1.383622 0.623845 1.331706 0.626575 1.355148 0.624248 1.330538 0.588116 1.431958 0.631074 1.416912 0.68107 1.453228 0.637317 1.411305 0.62627 1.383622 0.623845 1.399708 0.674182 1.355148 0.624248 1.331706 0.626575 1.353956 0.668671 1.416912 0.68107 1.395564 0.726005 1.434319 0.689655 1.399708 0.674182 1.376958 0.670038 1.38139 0.718962 1.353956 0.668671 1.333455 0.670026 1.349588 0.711744 1.395564 0.726005 1.367329 0.772032 1.409227 0.734746 1.365551 0.714324 1.350405 0.761024 1.38139 0.718962 1.331499 0.756835 1.342146 0.757069 1.333553 0.711801 1.328975 0.792137 1.335403 0.791739 1.331499 0.756835 1.345696 0.794624 1.358419 0.766495 1.340668 0.792715 1.354529 0.801834 1.375376 0.778867 1.350321 0.797976 1.330538 0.588116 1.355267 0.585258 1.325282 0.545677 1.414811 0.586629 1.417432 0.540302 1.385333 0.584595 1.461832 0.594417 1.468249 0.549505 1.438281 0.590088 1.538017 0.186595 1.538948 0.147184 1.501085 0.180402 1.459678 0.457811 1.491171 0.463962 1.473636 0.371508 1.443389 0.544786 1.468249 0.549505 1.459678 0.457811 1.487619 0.287838 1.528631 0.291126 1.495498 0.2221 1.519179 0.08957898 1.541547 0.09145796 1.53169 0.02454698 1.473636 0.371508 1.512071 0.377644 1.487619 0.287838 1.507066 0.142504 1.538948 0.147184 1.519179 0.08957898 1.271106 0.15216 1.228996 0.08154898 1.249363 0.153116 1.291646 0.19565 1.271106 0.15216 1.260455 0.199928 1.300904 0.2288359 1.291646 0.19565 1.266721 0.233446 1.319768 0.323485 1.30775 0.263358 1.287345 0.332756 1.30017 0.402951 1.330473 0.393641 1.287345 0.332756 1.313335 0.475677 1.341396 0.471801 1.30017 0.402951 1.325282 0.545677 1.353279 0.540334 1.313335 0.475677 1.383323 0.539357 1.417432 0.540302 1.383893 0.462807 1.405672 0.1168799 1.386776 0.04626899 1.379273 0.114713 1.412554 0.16516 1.405672 0.1168799 1.380023 0.164885 1.379421 0.240769 1.415811 0.237686 1.379959 0.200901 1.377665 0.302269 1.41475 0.298218 1.379421 0.240769 1.381127 0.377191 1.414546 0.37764 1.377665 0.302269 1.383893 0.462807 1.417067 0.462053 1.381127 0.377191 1.322512 0.793387 1.328975 0.792137 1.320442 0.758816 1.320442 0.758816 1.331499 0.756835 1.317311 0.7135 1.333455 0.670026 1.312632 0.673188 1.333553 0.711801 1.331706 0.626575 1.308419 0.630751 1.333455 0.670026 1.330538 0.588116 1.303596 0.593839 1.331706 0.626575 1.325282 0.545677 1.296059 0.551778 1.330538 0.588116 1.313335 0.475677 1.281336 0.481923 1.325282 0.545677 1.313335 0.475677 1.30017 0.402951 1.281336 0.481923 1.287345 0.332756 1.247387 0.344339 1.30017 0.402951 1.27318 0.268888 1.236266 0.282148 1.287345 0.332756 1.260455 0.199928 1.226054 0.209874 1.266721 0.233446 1.249363 0.153116 1.225389 0.163017 1.260455 0.199928 1.227959 0.08119195 1.227214 0.081954 1.249363 0.153116 1.340668 0.792715 1.350405 0.761024 1.335403 0.791739 1.349588 0.711744 1.342146 0.757069 1.365551 0.714324 1.376958 0.670038 1.353956 0.668671 1.365551 0.714324 1.383622 0.623845 1.355148 0.624248 1.376958 0.670038 1.385333 0.584595 1.355267 0.585258 1.383622 0.623845 1.385333 0.584595 1.383323 0.539357 1.355267 0.585258 1.383323 0.539357 1.383893 0.462807 1.353279 0.540334 1.383893 0.462807 1.381127 0.377191 1.351469 0.462047 1.377665 0.302269 1.341635 0.302017 1.381127 0.377191 1.379421 0.240769 1.337417 0.243833 1.377665 0.302269 1.379959 0.200901 1.33956 0.205826 1.379421 0.240769 1.379273 0.114713 1.354312 0.118412 1.380023 0.164885 1.384727 0.045008 1.383059 0.04629194 1.379273 0.114713 1.350321 0.797976 1.367329 0.772032 1.345696 0.794624 1.38139 0.718962 1.358419 0.766495 1.395564 0.726005 1.399708 0.674182 1.38139 0.718962 1.416912 0.68107 1.411305 0.62627 1.399708 0.674182 1.431958 0.631074 1.431958 0.631074 1.438281 0.590088 1.411305 0.62627 1.438281 0.590088 1.443389 0.544786 1.414811 0.586629 1.443389 0.544786 1.459678 0.457811 1.417432 0.540302 1.473636 0.371508 1.431097 0.370757 1.459678 0.457811 1.487619 0.287838 1.438231 0.285011 1.473636 0.371508 1.495498 0.2221 1.446971 0.222532 1.487619 0.287838 1.507066 0.142504 1.467163 0.143904 1.501085 0.180402 1.519179 0.08957898 1.487958 0.08998095 1.507066 0.142504 1.53169 0.02454698 1.530024 0.02532994 1.519179 0.08957898 1.30775 0.263358 1.300904 0.2288359 1.27318 0.268888 1.266721 0.233446 1.230046 0.245689 1.27318 0.268888 1.380023 0.164885 1.34444 0.169588 1.379959 0.200901 1.415184 0.200515 1.412554 0.16516 1.379959 0.200901 1.495498 0.2221 1.535388 0.2280319 1.501085 0.180402 1.501085 0.180402 1.455824 0.181729 1.495498 0.2221 0.250481 0.612269 0.257179 0.645931 0.225419 0.62324 0.239335 0.694272 0.229178 0.655733 0.26557 0.685433 0.249691 0.734862 0.239335 0.694272 0.275859 0.724496 0.263047 0.785891 0.249691 0.734862 0.289918 0.771568 0.277466 0.821357 0.263047 0.785891 0.303714 0.802356 0.303714 0.802356 0.323016 0.831513 0.277466 0.821357 0.240759 0.576783 0.250481 0.612269 0.223063 0.589744 0.305285 0.764178 0.31448 0.796012 0.289918 0.771568 0.289918 0.771568 0.275859 0.724496 0.305285 0.764178 0.275859 0.724496 0.26557 0.685433 0.297826 0.717829 0.26557 0.685433 0.257179 0.645931 0.291629 0.677799 0.277291 0.601764 0.284717 0.636904 0.250481 0.612269 0.265565 0.563417 0.277291 0.601764 0.240759 0.576783 0.04958498 0.157495 0.103917 0.199038 0.048608 0.1586509 0.103917 0.199038 0.142145 0.244418 0.08626198 0.215111 0.142145 0.244418 0.156924 0.270023 0.114755 0.259558 0.170495 0.299454 0.182575 0.329578 0.139928 0.315581 0.205954 0.395247 0.174525 0.407793 0.194331 0.361713 0.227735 0.466561 0.202525 0.479124 0.216522 0.430047 0.255828 0.539963 0.265565 0.563417 0.232929 0.553361 0.05083698 0.1563799 0.117933 0.180204 0.04958498 0.157495 0.173479 0.221288 0.142145 0.244418 0.117933 0.180204 0.1932629 0.253295 0.156924 0.270023 0.173479 0.221288 0.218245 0.321491 0.182575 0.329578 0.207312 0.28956 0.2361519 0.386156 0.205954 0.395247 0.227854 0.353545 0.244294 0.418161 0.254318 0.453865 0.216522 0.430047 0.285103 0.526422 0.29606 0.551778 0.255828 0.539963 0.29606 0.551778 0.303595 0.593839 0.265565 0.563417 0.303595 0.593839 0.308419 0.630751 0.277291 0.601764 0.291629 0.677799 0.284717 0.636904 0.312632 0.673188 0.297826 0.717829 0.291629 0.677799 0.317311 0.7135 0.305285 0.764178 0.297826 0.717829 0.320442 0.758816 0.320442 0.758816 0.322512 0.793387 0.305285 0.764178 0.232929 0.553361 0.240759 0.576783 0.224305 0.55723 0.248021 0.521114 0.255828 0.539963 0.227378 0.533568 0.276084 0.507547 0.285103 0.526422 0.248021 0.521114 0.240476 0.501969 0.248021 0.521114 0.216077 0.516525 0.267798 0.48962 0.276084 0.507547 0.240476 0.501969 0.225419 0.62324 0.229178 0.655733 0.186265 0.628137 0.223063 0.589744 0.225419 0.62324 0.184842 0.60301 0.048608 0.1586509 0.08626198 0.215111 0.04714798 0.1605499 0.08626198 0.215111 0.114755 0.259558 0.06297999 0.232287 0.114755 0.259558 0.127587 0.286248 0.07593899 0.278537 0.139928 0.315581 0.150052 0.344239 0.09643501 0.33469 0.120241 0.391563 0.160915 0.374735 0.135484 0.42641 0.188301 0.441389 0.202525 0.479124 0.147871 0.460676 0.224305 0.55723 0.223063 0.589744 0.186609 0.583056 0.216077 0.516525 0.220884 0.536487 0.167014 0.532699 0.207312 0.28956 0.170495 0.299454 0.1932629 0.253295 0.156924 0.270023 0.170495 0.299454 0.127587 0.286248 0.09643501 0.33469 0.08555096 0.306832 0.139928 0.315581 0.254318 0.453865 0.267798 0.48962 0.227735 0.466561 0.227735 0.466561 0.240476 0.501969 0.202525 0.479124 0.167014 0.532699 0.157159 0.497019 0.216077 0.516525 0.244294 0.418161 0.216522 0.430047 0.2361519 0.386156 0.216522 0.430047 0.188301 0.441389 0.205954 0.395247 0.147871 0.460676 0.135484 0.42641 0.188301 0.441389 0.227854 0.353545 0.194331 0.361713 0.218245 0.321491 0.182575 0.329578 0.194331 0.361713 0.150052 0.344239 0.1080909 0.363399 0.150052 0.344239 0.120241 0.391563 0.220884 0.536487 0.224305 0.55723 0.179884 0.561671 0.227378 0.533568 0.232929 0.553361 0.220884 0.536487 0.063376 0.955914 0.054663 0.965852 0.04803794 0.957921 0.05745798 0.915252 0.067083 0.920527 0.05034697 0.927524 0.06774699 0.933952 0.069094 0.945959 0.05682498 0.942271 0.17526 0.78287 0.159333 0.773468 0.179698 0.74978 0.17526 0.78287 0.15869 0.811228 0.159333 0.773468 0.15869 0.811228 0.143846 0.836421 0.139272 0.800785 0.143846 0.836421 0.120887 0.86335 0.119529 0.82707 0.120887 0.86335 0.101598 0.884425 0.100253 0.85353 0.101598 0.884425 0.08159595 0.905228 0.08399099 0.877 0.08159595 0.905228 0.067083 0.920527 0.067882 0.899282 0.249653 0.831384 0.233573 0.857146 0.248408 0.830811 0.233573 0.857146 0.210895 0.874706 0.221429 0.845912 0.210895 0.874706 0.186722 0.890951 0.1979759 0.860133 0.186722 0.890951 0.159137 0.907707 0.1681489 0.87797 0.159137 0.907707 0.132927 0.92043 0.142301 0.893183 0.132927 0.92043 0.106669 0.931895 0.119024 0.906308 0.069094 0.945959 0.06774699 0.933952 0.106669 0.931895 0.256034 0.956311 0.253439 0.942082 0.282545 0.93903 0.2294819 0.964749 0.226265 0.945882 0.256034 0.956311 0.2294819 0.964749 0.200887 0.970532 0.226265 0.945882 0.200887 0.970532 0.170418 0.97362 0.1953279 0.950423 0.170418 0.97362 0.143783 0.971606 0.164737 0.953312 0.143783 0.971606 0.103458 0.969827 0.136008 0.955149 0.054663 0.965852 0.063376 0.955914 0.103458 0.969827 0.069094 0.945959 0.063376 0.955914 0.05634498 0.948744 0.105505 0.937418 0.100192 0.956122 0.069094 0.945959 0.144053 0.928846 0.136008 0.955149 0.105505 0.937418 0.171675 0.925038 0.164737 0.953312 0.144053 0.928846 0.2025 0.923786 0.1953279 0.950423 0.171675 0.925038 0.2306219 0.922945 0.226265 0.945882 0.2025 0.923786 0.256401 0.92449 0.253439 0.942082 0.2306219 0.922945 0.282304 0.937397 0.282318 0.938331 0.256401 0.92449 0.067083 0.920527 0.06774699 0.933952 0.05516898 0.931649 0.08916497 0.902322 0.09393996 0.920655 0.067083 0.920527 0.113798 0.88478 0.119024 0.906308 0.08916497 0.902322 0.136362 0.867583 0.142301 0.893183 0.113798 0.88478 0.163456 0.851063 0.1681489 0.87797 0.136362 0.867583 0.1904129 0.836651 0.1979759 0.860133 0.163456 0.851063 0.2183009 0.827507 0.221429 0.845912 0.1904129 0.836651 0.248807 0.829318 0.248408 0.830811 0.2183009 0.827507 0.04663199 0.907405 0.05745798 0.915252 0.04043495 0.921198 0.05764394 0.885306 0.067882 0.899282 0.04663199 0.907405 0.07042598 0.861027 0.08399099 0.877 0.05764394 0.885306 0.08537799 0.834589 0.100253 0.85353 0.07042598 0.861027 0.103021 0.803572 0.119529 0.82707 0.08537799 0.834589 0.123125 0.776835 0.139272 0.800785 0.103021 0.803572 0.147329 0.753456 0.159333 0.773468 0.123125 0.776835 0.177474 0.747098 0.178665 0.748657 0.147329 0.753456 0.453228 0.637317 0.431958 0.631074 0.461832 0.594417 0.411305 0.62627 0.383622 0.623845 0.414811 0.586629 0.355267 0.585258 0.355148 0.624248 0.330538 0.588116 0.431958 0.631074 0.453228 0.637317 0.416912 0.68107 0.376958 0.670038 0.383622 0.623845 0.399708 0.674182 0.333455 0.670026 0.331706 0.626575 0.353956 0.668671 0.416912 0.68107 0.434319 0.689655 0.395564 0.726005 0.365551 0.714324 0.376958 0.670038 0.38139 0.718962 0.333553 0.711801 0.333455 0.670026 0.349588 0.711744 0.375376 0.778867 0.367329 0.772032 0.409227 0.734746 0.358419 0.766495 0.350405 0.761024 0.38139 0.718962 0.331499 0.756835 0.333553 0.711801 0.342146 0.757069 0.342146 0.757069 0.335403 0.791739 0.331499 0.756835 0.345696 0.794624 0.340668 0.792715 0.358419 0.766495 0.367329 0.772032 0.375376 0.778867 0.350321 0.797976 0.353279 0.540334 0.355267 0.585258 0.325282 0.545677 0.414811 0.586629 0.385333 0.584595 0.417432 0.540302 0.461832 0.594417 0.438281 0.590088 0.468249 0.549505 0.538017 0.186595 0.501085 0.180402 0.538948 0.147184 0.491172 0.463962 0.459678 0.457811 0.512071 0.377644 0.491172 0.463962 0.468249 0.549505 0.459678 0.457811 0.528631 0.291126 0.487619 0.287838 0.535389 0.2280319 0.532707 0.02580195 0.541547 0.09145796 0.53169 0.02454698 0.512071 0.377644 0.473636 0.371508 0.528631 0.291126 0.538948 0.147184 0.507066 0.142504 0.541547 0.09145796 0.271106 0.15216 0.249363 0.153116 0.228996 0.08154898 0.291646 0.19565 0.260455 0.199928 0.271106 0.15216 0.300904 0.2288359 0.266722 0.233446 0.291646 0.19565 0.319768 0.323485 0.287345 0.332756 0.30775 0.263358 0.319768 0.323485 0.330473 0.393641 0.287345 0.332756 0.330473 0.393641 0.341396 0.471801 0.30017 0.402951 0.353279 0.540334 0.325282 0.545677 0.341396 0.471801 0.417432 0.540302 0.383323 0.539357 0.417067 0.462053 0.405672 0.1168799 0.379273 0.114713 0.386776 0.04626899 0.412554 0.16516 0.380023 0.164885 0.405672 0.1168799 0.415811 0.237686 0.379421 0.240769 0.415184 0.200515 0.415811 0.237686 0.41475 0.298218 0.379421 0.240769 0.41475 0.298218 0.414546 0.37764 0.377665 0.302269 0.417067 0.462053 0.383893 0.462807 0.414546 0.37764 0.331499 0.756835 0.328975 0.792137 0.320442 0.758816 0.320442 0.758816 0.317311 0.7135 0.331499 0.756835 0.317311 0.7135 0.312632 0.673188 0.333553 0.711801 0.312632 0.673188 0.308419 0.630751 0.333455 0.670026 0.330538 0.588116 0.331706 0.626575 0.303595 0.593839 0.325282 0.545677 0.330538 0.588116 0.29606 0.551778 0.281336 0.481923 0.313335 0.475677 0.29606 0.551778 0.262959 0.413227 0.30017 0.402951 0.281336 0.481923 0.247387 0.344339 0.287345 0.332756 0.262959 0.413227 0.27318 0.268888 0.287345 0.332756 0.236266 0.282148 0.260455 0.199928 0.266722 0.233446 0.226054 0.209874 0.249363 0.153116 0.260455 0.199928 0.225389 0.163017 0.227959 0.08119195 0.249363 0.153116 0.227214 0.081954 0.340668 0.792715 0.335403 0.791739 0.350405 0.761024 0.350405 0.761024 0.342146 0.757069 0.365551 0.714324 0.349588 0.711744 0.353956 0.668671 0.365551 0.714324 0.353956 0.668671 0.355148 0.624248 0.376958 0.670038 0.385333 0.584595 0.383622 0.623845 0.355267 0.585258 0.353279 0.540334 0.383323 0.539357 0.355267 0.585258 0.351469 0.462047 0.383893 0.462807 0.353279 0.540334 0.346902 0.379582 0.381127 0.377191 0.351469 0.462047 0.341635 0.302017 0.377665 0.302269 0.346902 0.379582 0.337417 0.243833 0.379421 0.240769 0.341635 0.302017 0.379959 0.200901 0.379421 0.240769 0.339559 0.205826 0.379273 0.114713 0.380023 0.164885 0.354312 0.118412 0.384727 0.045008 0.379273 0.114713 0.383059 0.04629194 0.358419 0.766495 0.367329 0.772032 0.345696 0.794624 0.367329 0.772032 0.358419 0.766495 0.395564 0.726005 0.399708 0.674182 0.416912 0.68107 0.38139 0.718962 0.411305 0.62627 0.431958 0.631074 0.399708 0.674182 0.414811 0.586629 0.438281 0.590088 0.411305 0.62627 0.417432 0.540302 0.443389 0.544786 0.414811 0.586629 0.425316 0.452821 0.459678 0.457811 0.417432 0.540302 0.431097 0.370757 0.473636 0.371508 0.425316 0.452821 0.487619 0.287838 0.473636 0.371508 0.438231 0.285011 0.495498 0.2221 0.487619 0.287838 0.446971 0.222532 0.507066 0.142504 0.501085 0.180402 0.467163 0.143904 0.519179 0.08957898 0.507066 0.142504 0.487958 0.08998095 0.53169 0.02454698 0.519179 0.08957898 0.530024 0.02532994 0.30775 0.263358 0.27318 0.268888 0.300904 0.2288359 0.236266 0.282148 0.230046 0.245689 0.27318 0.268888 0.380023 0.164885 0.379959 0.200901 0.34444 0.169588 0.415184 0.200515 0.379959 0.200901 0.412554 0.16516 0.535389 0.2280319 0.495498 0.2221 0.538017 0.186595 0.446971 0.222532 0.455824 0.181729 0.495498 0.2221 0.847961 0.414695 0.847238 0.375698 0.862187 0.414196 0.86902 0.548582 0.846977 0.536555 0.867862 0.506733 0.858806 0.581005 0.841636 0.574875 0.86902 0.548582 0.848395 0.480342 0.847562 0.446896 0.86327 0.479621 0.847562 0.446896 0.847961 0.414695 0.862184 0.44697 0.836694 0.604186 0.841636 0.574875 0.848328 0.606603 0.847238 0.375698 0.849202 0.320389 0.862982 0.369872 0.952395 0.372144 0.926232 0.371475 0.949489 0.325586 0.954809 0.410106 0.927475 0.410666 0.952395 0.372144 0.927224 0.444572 0.927475 0.410666 0.954312 0.443092 0.925386 0.477863 0.927224 0.444572 0.95349 0.478662 0.919167 0.51516 0.925386 0.477863 0.946346 0.520706 0.907251 0.552398 0.919167 0.51516 0.931236 0.559535 0.8857 0.593049 0.907251 0.552398 0.90343 0.598436 0.871318 0.619142 0.8857 0.593049 0.881409 0.624275 0.853518 0.649375 0.871318 0.619142 0.862238 0.653661 0.897668 0.370445 0.862982 0.369872 0.894896 0.319803 0.862187 0.414196 0.862982 0.369872 0.898114 0.411514 0.862184 0.44697 0.862187 0.414196 0.89741 0.446437 0.86327 0.479621 0.862184 0.44697 0.895888 0.478763 0.890976 0.512435 0.867862 0.506733 0.895888 0.478763 0.883297 0.552018 0.86902 0.548582 0.890976 0.512435 0.858806 0.581005 0.86902 0.548582 0.868416 0.58707 0.85884 0.612566 0.848328 0.606603 0.868416 0.58707 0.831037 0.637936 0.848328 0.606603 0.841402 0.643166 0.863061 0.322125 0.849202 0.320389 0.860805 0.299182 0.949489 0.325586 0.923985 0.32359 0.947122 0.298445 0.894896 0.319803 0.863061 0.322125 0.891127 0.29637 0.949489 0.325586 0.947122 0.298445 0.972319 0.32135 0.776735 0.317991 0.779484 0.292425 0.800123 0.317569 0.849202 0.320389 0.800123 0.317569 0.847212 0.297816 0.857729 0.276857 0.844533 0.275856 0.853648 0.250819 0.943081 0.269023 0.91441 0.269434 0.936319 0.23467 0.885833 0.272362 0.857729 0.276857 0.878094 0.245181 0.963635 0.270532 0.943081 0.269023 0.957091 0.234961 0.798847 0.271522 0.781674 0.267078 0.797768 0.238782 0.844533 0.275856 0.798847 0.271522 0.840694 0.248335 0.867517 0.06530797 0.854977 0.05197 0.887806 0.02344697 0.871566 0.06867998 0.867517 0.06530797 0.887829 0.02352499 0.887972 0.02349698 0.883142 0.06671798 0.887829 0.02352499 0.892651 0.06444495 0.888875 0.02402597 0.90005 0.06234997 0.905358 0.06038898 0.90005 0.06234997 0.889504 0.022475 0.854977 0.05197 0.851016 0.04562896 0.887753 0.02323698 0.849605 0.114072 0.825269 0.09356796 0.85836 0.08918195 0.858608 0.11864 0.849605 0.114072 0.864994 0.09324097 0.880826 0.08510398 0.878674 0.106285 0.864994 0.09324097 0.892907 0.099568 0.8921 0.08068495 0.906905 0.09601795 0.920793 0.09908497 0.906905 0.09601795 0.912957 0.07918095 0.825269 0.09356796 0.820447 0.08130496 0.839622 0.07167696 0.83753 0.166918 0.803376 0.143753 0.842682 0.1404229 0.85029 0.171981 0.83753 0.166918 0.853916 0.145152 0.876242 0.13075 0.873982 0.157126 0.853916 0.145152 0.913992 0.147903 0.894516 0.1482329 0.910339 0.121062 0.939499 0.148324 0.913992 0.147903 0.930956 0.125455 0.803376 0.143753 0.794832 0.133237 0.812273 0.119487 0.837971 0.222156 0.797867 0.207807 0.836995 0.195709 0.850107 0.226155 0.837971 0.222156 0.849866 0.200715 0.871695 0.187396 0.871668 0.217463 0.849866 0.200715 0.928777 0.2036229 0.898173 0.208383 0.914819 0.173511 0.760667 0.655735 0.742604 0.654061 0.758564 0.640366 0.797867 0.207807 0.783848 0.200817 0.798566 0.177889 0.853648 0.250819 0.840694 0.248335 0.850107 0.226155 0.878094 0.245181 0.853648 0.250819 0.871668 0.217463 0.936319 0.23467 0.906333 0.2387419 0.928777 0.2036229 0.957091 0.234961 0.936319 0.23467 0.95049 0.2012439 0.797768 0.238782 0.782786 0.233012 0.797867 0.207807 0.840694 0.248335 0.797768 0.238782 0.837971 0.222156 0.836995 0.195709 0.798566 0.177889 0.83753 0.166918 0.849866 0.200715 0.836995 0.195709 0.85029 0.171981 0.873982 0.157126 0.871695 0.187396 0.85029 0.171981 0.894878 0.178005 0.894516 0.1482329 0.914819 0.173511 0.758564 0.640366 0.74042 0.640261 0.755323 0.612958 0.798566 0.177889 0.78691 0.168788 0.803376 0.143753 0.842682 0.1404229 0.812273 0.119487 0.849605 0.114072 0.853916 0.145152 0.842682 0.1404229 0.858608 0.11864 0.878674 0.106285 0.876242 0.13075 0.858608 0.11864 0.893464 0.123013 0.892907 0.099568 0.910339 0.121062 0.930956 0.125455 0.910339 0.121062 0.920793 0.09908497 0.812273 0.119487 0.807258 0.109739 0.825269 0.09356796 0.85836 0.08918195 0.839622 0.07167696 0.867517 0.06530797 0.864994 0.09324097 0.85836 0.08918195 0.871566 0.06867998 0.883142 0.06671798 0.880826 0.08510398 0.871566 0.06867998 0.8921 0.08068495 0.892651 0.06444495 0.90282 0.07800799 0.912957 0.07918095 0.90282 0.07800799 0.905358 0.06038898 0.839622 0.07167696 0.835421 0.06194299 0.854977 0.05197 0.954809 0.410106 0.952395 0.372144 0.978606 0.408597 0.952395 0.372144 0.949489 0.325586 0.975978 0.370231 0.848328 0.606603 0.831037 0.637936 0.836694 0.604186 0.841402 0.643166 0.85884 0.612566 0.853518 0.649375 0.871318 0.619142 0.85884 0.612566 0.8857 0.593049 0.868416 0.58707 0.883297 0.552018 0.8857 0.593049 0.883297 0.552018 0.890976 0.512435 0.907251 0.552398 0.890976 0.512435 0.895888 0.478763 0.919167 0.51516 0.895888 0.478763 0.89741 0.446437 0.925386 0.477863 0.89741 0.446437 0.898114 0.411514 0.927224 0.444572 0.927475 0.410666 0.898114 0.411514 0.926232 0.371475 0.926232 0.371475 0.897668 0.370445 0.923985 0.32359 0.923985 0.32359 0.894896 0.319803 0.920181 0.297299 0.91441 0.269434 0.885833 0.272362 0.906333 0.2387419 0.906333 0.2387419 0.878094 0.245181 0.898173 0.208383 0.871668 0.217463 0.871695 0.187396 0.898173 0.208383 0.871695 0.187396 0.873982 0.157126 0.894878 0.178005 0.873982 0.157126 0.876242 0.13075 0.894516 0.1482329 0.876242 0.13075 0.878674 0.106285 0.893464 0.123013 0.878674 0.106285 0.880826 0.08510398 0.892907 0.099568 0.880826 0.08510398 0.883142 0.06671798 0.8921 0.08068495 0.883142 0.06671798 0.887972 0.02349698 0.892651 0.06444495 0.769891 0.367724 0.795785 0.371378 0.76736 0.406684 0.795785 0.371378 0.847238 0.375698 0.79162 0.413527 0.769891 0.367724 0.776735 0.317991 0.795785 0.371378 0.800123 0.317569 0.849202 0.320389 0.795785 0.371378 0.763013 0.677372 0.742998 0.67126 0.760667 0.655735 0.742998 0.67126 0.72647 0.642336 0.742604 0.654061 0.758564 0.640366 0.766719 0.645924 0.760667 0.655735 0.72647 0.642336 0.719629 0.615892 0.74042 0.640261 0.755323 0.612958 0.768889 0.610561 0.758564 0.640366 0.789033 0.581417 0.795814 0.606346 0.767596 0.585223 0.767596 0.585223 0.768889 0.610561 0.753644 0.592894 0.755323 0.612958 0.738415 0.612919 0.753644 0.592894 0.736678 0.590531 0.738415 0.612919 0.718941 0.589528 0.751772 0.571396 0.73766 0.568777 0.750315 0.55337 0.758908 0.549021 0.764035 0.566054 0.750315 0.55337 0.77885 0.56099 0.764035 0.566054 0.769322 0.547656 0.740632 0.552556 0.73766 0.568777 0.731206 0.55055 0.753644 0.592894 0.736678 0.590531 0.751772 0.571396 0.764035 0.566054 0.767596 0.585223 0.751772 0.571396 0.77885 0.56099 0.789033 0.581417 0.764035 0.566054 0.73766 0.568777 0.736678 0.590531 0.723808 0.566105 0.749412 0.52816 0.740632 0.552556 0.74926 0.528109 0.750315 0.55337 0.740632 0.552556 0.749551 0.528106 0.749669 0.528114 0.758908 0.549021 0.749551 0.528106 0.769322 0.547656 0.758908 0.549021 0.74986 0.528044 0.954312 0.443092 0.954809 0.410106 0.979086 0.445146 0.76736 0.406684 0.79162 0.413527 0.768694 0.443536 0.787322 0.444611 0.79162 0.413527 0.847562 0.446896 0.954312 0.443092 0.979086 0.445146 0.95349 0.478662 0.768694 0.443536 0.787322 0.444611 0.770705 0.478716 0.784009 0.479875 0.787322 0.444611 0.848395 0.480342 0.860805 0.299182 0.847212 0.297816 0.857729 0.276857 0.891127 0.29637 0.860805 0.299182 0.885833 0.272362 0.920181 0.297299 0.891127 0.29637 0.91441 0.269434 0.947122 0.298445 0.920181 0.297299 0.943081 0.269023 0.968393 0.295831 0.947122 0.298445 0.963635 0.270532 0.799801 0.29428 0.779484 0.292425 0.798847 0.271522 0.847212 0.297816 0.799801 0.29428 0.844533 0.275856 0.827001 0.685078 0.814092 0.672952 0.843244 0.661906 0.756835 0.772271 0.819932 0.779588 0.766582 0.797055 0.845078 0.639639 0.836694 0.630962 0.852487 0.634882 0.843244 0.661906 0.829124 0.650793 0.845078 0.639639 0.779212 0.874367 0.757492 0.861646 0.786057 0.865366 0.854168 0.920858 0.833369 0.919306 0.815406 0.887253 0.816787 0.804795 0.819932 0.779588 0.87044 0.800771 0.716902 0.922906 0.761066 0.934995 0.714314 0.947564 0.852487 0.634882 0.84643 0.621203 0.857084 0.633803 0.737881 0.850422 0.722153 0.841488 0.73946 0.837359 0.796495 0.94879 0.835959 0.948484 0.818081 0.971724 0.757492 0.861646 0.737881 0.850422 0.760459 0.848336 0.815406 0.887253 0.807037 0.894877 0.786057 0.865366 0.795759 0.711881 0.787643 0.698395 0.827001 0.685078 0.833369 0.919306 0.854168 0.920858 0.86842 0.948755 0.732274 0.870348 0.718864 0.8752 0.724857 0.856078 0.81674 0.9305 0.796495 0.94879 0.78969 0.912832 0.81674 0.9305 0.833369 0.919306 0.835959 0.948484 0.722153 0.841488 0.737881 0.850422 0.724857 0.856078 0.757492 0.861646 0.779212 0.874367 0.750839 0.886835 0.766917 0.895612 0.779212 0.874367 0.78969 0.912832 0.78969 0.912832 0.807037 0.894877 0.81674 0.9305 0.737881 0.850422 0.757492 0.861646 0.732274 0.870348 0.73162 0.918333 0.766917 0.895612 0.761066 0.934995 0.716902 0.922906 0.718864 0.8752 0.73162 0.918333 0.766985 0.974493 0.716913 0.962965 0.763684 0.963051 0.816754 0.981659 0.766985 0.974493 0.818081 0.971724 0.864649 0.968815 0.861795 0.976999 0.818081 0.971724 0.861795 0.976999 0.864649 0.968815 0.878956 0.970964 0.883204 0.932244 0.891337 0.949464 0.877049 0.943387 0.850462 0.900281 0.883204 0.932244 0.854168 0.920858 0.81702 0.872576 0.850462 0.900281 0.815406 0.887253 0.784959 0.850367 0.81702 0.872576 0.786057 0.865366 0.786057 0.865366 0.760459 0.848336 0.784959 0.850367 0.73946 0.837359 0.744461 0.829719 0.760459 0.848336 0.73946 0.837359 0.732184 0.831396 0.744461 0.829719 0.734045 0.823682 0.732184 0.831396 0.72754 0.821301 0.843244 0.661906 0.852487 0.634882 0.853111 0.662172 0.819932 0.779588 0.830303 0.753554 0.86138 0.766855 0.845882 0.715578 0.843244 0.661906 0.859508 0.709835 0.830303 0.753554 0.845882 0.715578 0.859976 0.745197 0.776211 0.747372 0.795759 0.711881 0.830303 0.753554 0.830303 0.753554 0.819932 0.779588 0.776211 0.747372 0.761066 0.934995 0.796495 0.94879 0.763684 0.963051 0.787643 0.698395 0.795759 0.711881 0.755459 0.721896 0.878956 0.970964 0.880413 0.962239 0.887482 0.963722 0.756835 0.772271 0.723453 0.780942 0.717719 0.759181 0.835959 0.948484 0.86842 0.948755 0.864649 0.968815 0.887482 0.963722 0.882864 0.959568 0.889771 0.958344 0.883624 0.957287 0.882818 0.953038 0.889771 0.958344 0.609552 0.01159799 0.692114 0.01397395 0.621473 0.06560397 0.865368 0.508769 0.962687 0.534648 0.83931 0.575571 0.981384 0.448921 0.962687 0.534648 0.88049 0.441167 0.609552 0.01159799 0.621473 0.06560397 0.565895 0.04564595 0.859043 0.05878096 0.931947 0.1450189 0.874346 0.1184 0.773263 0.02835798 0.859043 0.05878096 0.769311 0.08298498 0.869274 0.349004 0.989071 0.355927 0.885106 0.389075 0.692114 0.01397395 0.773263 0.02835798 0.698196 0.06379997 0.499967 0.05825197 0.499964 0.027408 0.533977 0.060247 0.609552 0.01159799 0.565895 0.04564595 0.548538 0.01971995 0.565895 0.04564595 0.570394 0.07343196 0.533977 0.060247 0.512964 0.09043097 0.51206 0.07440596 0.532891 0.08291995 0.49997 0.08153796 0.499967 0.05825197 0.51206 0.07440596 0.499971 0.09369999 0.49997 0.08153796 0.512964 0.09043097 0.529278 0.529393 0.564928 0.532234 0.529678 0.580471 0.529678 0.580471 0.500021 0.578413 0.529278 0.529393 0.531072 0.486038 0.500011 0.482183 0.532175 0.447762 0.532175 0.447762 0.570636 0.449912 0.531072 0.486038 0.529678 0.580471 0.562204 0.583044 0.529717 0.641562 0.529717 0.641562 0.500027 0.630056 0.529678 0.580471 0.671344 0.637739 0.63766 0.585062 0.718287 0.583402 0.745654 0.529325 0.663774 0.496087 0.769446 0.472901 0.745654 0.529325 0.769446 0.472901 0.83931 0.575571 0.792476 0.640846 0.714286 0.700662 0.718287 0.583402 0.529717 0.641562 0.574088 0.649953 0.529895 0.730782 0.529895 0.730782 0.500037 0.729049 0.529717 0.641562 0.885106 0.389075 0.822896 0.379054 0.869274 0.349004 0.698196 0.06379997 0.769311 0.08298498 0.702569 0.104052 0.532175 0.447762 0.500007 0.443524 0.532873 0.409639 0.570636 0.449912 0.532175 0.447762 0.570901 0.415054 0.822896 0.379054 0.776225 0.36394 0.830697 0.341134 0.532891 0.08291995 0.532873 0.09671497 0.512964 0.09043097 0.704919 0.187248 0.759819 0.192835 0.708042 0.22587 0.719934 0.274117 0.766446 0.280971 0.735877 0.314473 0.759819 0.192835 0.704919 0.187248 0.763964 0.152838 0.735877 0.314473 0.779895 0.326154 0.73642 0.34723 0.833772 0.119025 0.800628 0.137396 0.769311 0.08298498 0.820504 0.213135 0.759819 0.192835 0.80708 0.161626 0.759819 0.192835 0.820504 0.213135 0.763208 0.234346 0.830697 0.341134 0.779895 0.326154 0.830821 0.295551 0.532873 0.409639 0.500003 0.40523 0.537429 0.374378 0.687972 0.281136 0.719934 0.274117 0.705534 0.308879 0.537429 0.374378 0.571055 0.388272 0.532873 0.409639 0.705534 0.308879 0.735877 0.314473 0.707604 0.333905 0.656395 0.178755 0.615967 0.17339 0.648235 0.1375409 0.570394 0.07343196 0.621473 0.06560397 0.573535 0.1005769 0.537429 0.374378 0.546092 0.365657 0.571055 0.388272 0.526241 0.345545 0.499997 0.346015 0.522151 0.323216 0.705534 0.308879 0.697278 0.307671 0.687972 0.281136 0.707604 0.333905 0.699339 0.330504 0.705534 0.308879 0.531476 0.321962 0.535688 0.342269 0.522151 0.323216 0.601343 0.251682 0.603224 0.234992 0.646231 0.262102 0.615967 0.17339 0.656395 0.178755 0.619676 0.205958 0.499989 0.267552 0.517859 0.26524 0.499991 0.284 0.64482 0.267102 0.60339 0.25902 0.646231 0.262102 0.56874 0.255252 0.57244 0.262546 0.540491 0.261306 0.53139 0.301856 0.531476 0.321962 0.521286 0.302994 0.499995 0.324884 0.499993 0.304284 0.522151 0.323216 0.499987 0.2474319 0.510097 0.247159 0.499989 0.267552 0.530493 0.24474 0.558246 0.239666 0.540491 0.261306 0.510097 0.247159 0.530493 0.24474 0.517859 0.26524 0.502833 0.2389619 0.516049 0.233901 0.510097 0.247159 0.499986 0.238826 0.502833 0.2389619 0.499987 0.2474319 0.516049 0.233901 0.502833 0.2389619 0.499986 0.233192 0.615967 0.17339 0.587848 0.171571 0.603944 0.1407819 0.512911 0.09711098 0.532873 0.09671497 0.513031 0.114891 0.619676 0.205958 0.585231 0.194368 0.615967 0.17339 0.516049 0.233901 0.544352 0.225405 0.530493 0.24474 0.513031 0.114891 0.499973 0.114 0.512911 0.09711098 0.560565 0.156453 0.580317 0.147698 0.566005 0.171524 0.513031 0.114891 0.53123 0.1174229 0.513802 0.132733 0.562942 0.1869159 0.566005 0.171524 0.585231 0.194368 0.499986 0.233192 0.499984 0.220139 0.516049 0.233901 0.544352 0.225405 0.516049 0.233901 0.534479 0.211043 0.512596 0.147008 0.510849 0.156387 0.499977 0.148138 0.513802 0.132733 0.499975 0.131758 0.513031 0.114891 0.511334 0.198502 0.513185 0.205953 0.499982 0.200262 0.541607 0.167849 0.547753 0.163451 0.543837 0.172971 0.52731 0.200117 0.513185 0.205953 0.523289 0.1919749 0.551313 0.172719 0.547668 0.182445 0.543837 0.172971 0.512596 0.147008 0.526139 0.149893 0.510849 0.156387 0.763208 0.234346 0.825939 0.240733 0.766446 0.280971 0.708042 0.22587 0.763208 0.234346 0.719934 0.274117 0.603224 0.234992 0.619676 0.205958 0.65176 0.245934 0.570102 0.213379 0.585231 0.194368 0.603224 0.234992 0.55115 0.200817 0.562942 0.1869159 0.570102 0.213379 0.547668 0.182445 0.53898 0.191998 0.538068 0.1781409 0.533949 0.163905 0.538607 0.155692 0.541607 0.167849 0.546154 0.144736 0.555119 0.129913 0.560565 0.156453 0.603944 0.1407819 0.580317 0.147698 0.573535 0.1005769 0.648235 0.1375409 0.603944 0.1407819 0.633035 0.09789699 0.763964 0.152838 0.705736 0.140126 0.764713 0.119033 0.80708 0.161626 0.763964 0.152838 0.800628 0.137396 0.513802 0.132733 0.512596 0.147008 0.499975 0.131758 0.513802 0.132733 0.529576 0.136628 0.512596 0.147008 0.560565 0.156453 0.547753 0.163451 0.546154 0.144736 0.566005 0.171524 0.551313 0.172719 0.560565 0.156453 0.566005 0.171524 0.562942 0.1869159 0.551313 0.172719 0.562942 0.1869159 0.55115 0.200817 0.547668 0.182445 0.534479 0.211043 0.515753 0.217642 0.52731 0.200117 0.513185 0.205953 0.515753 0.217642 0.499983 0.2071509 0.532891 0.08291995 0.570394 0.07343196 0.532873 0.09671497 0.53123 0.1174229 0.532873 0.09671497 0.555119 0.129913 0.546154 0.144736 0.529576 0.136628 0.555119 0.129913 0.529576 0.136628 0.546154 0.144736 0.526139 0.149893 0.526139 0.149893 0.538607 0.155692 0.523838 0.159736 0.53898 0.191998 0.52731 0.200117 0.531562 0.184547 0.55115 0.200817 0.534479 0.211043 0.53898 0.191998 0.570102 0.213379 0.544352 0.225405 0.55115 0.200817 0.544352 0.225405 0.570102 0.213379 0.558246 0.239666 0.558246 0.239666 0.603224 0.234992 0.56874 0.255252 0.60339 0.25902 0.57244 0.262546 0.601343 0.251682 0.499993 0.304284 0.499991 0.284 0.521286 0.302994 0.538987 0.277792 0.53139 0.301856 0.521654 0.28295 0.88049 0.441167 0.865368 0.508769 0.806864 0.420354 0.806864 0.420354 0.769446 0.472901 0.747491 0.404592 0.660094 0.408564 0.711124 0.382799 0.668259 0.444268 0.649479 0.38431 0.687479 0.364413 0.660094 0.408564 0.649479 0.38431 0.645346 0.375498 0.687479 0.364413 0.535688 0.342269 0.546092 0.365657 0.526241 0.345545 0.537429 0.374378 0.5 0.371801 0.526241 0.345545 0.608247 0.392101 0.607999 0.382536 0.649479 0.38431 0.608247 0.392101 0.649479 0.38431 0.608144 0.418417 0.668259 0.444268 0.612634 0.449937 0.660094 0.408564 0.613025 0.494188 0.612634 0.449937 0.663774 0.496087 0.659821 0.548735 0.63766 0.585062 0.604104 0.538031 0.671344 0.637739 0.617347 0.652368 0.63766 0.585062 0.714286 0.700662 0.644111 0.729895 0.671344 0.637739 0.571055 0.388272 0.574303 0.379112 0.608247 0.392101 0.571055 0.388272 0.608247 0.392101 0.570901 0.415054 0.612634 0.449937 0.570636 0.449912 0.608144 0.418417 0.613025 0.494188 0.567444 0.488695 0.612634 0.449937 0.564928 0.532234 0.604104 0.538031 0.562204 0.583044 0.617347 0.652368 0.574088 0.649953 0.59715 0.585771 0.644111 0.729895 0.586833 0.733824 0.617347 0.652368 0.621473 0.06560397 0.698196 0.06379997 0.633035 0.09789699 0.705736 0.140126 0.648235 0.1375409 0.702569 0.104052 0.704919 0.187248 0.656395 0.178755 0.705736 0.140126 0.708042 0.22587 0.656142 0.215462 0.704919 0.187248 0.719934 0.274117 0.65176 0.245934 0.708042 0.22587 0.646231 0.262102 0.65176 0.245934 0.687972 0.281136 0.687972 0.281136 0.681516 0.284505 0.646231 0.262102 0.584661 0.357061 0.57755 0.369951 0.565494 0.34678 0.554756 0.356936 0.545136 0.338993 0.565494 0.34678 0.545136 0.338993 0.5408 0.320707 0.556984 0.333331 0.680485 0.305578 0.689021 0.306463 0.68286 0.320401 0.665441 0.342896 0.672471 0.351499 0.637384 0.355761 0.637384 0.355761 0.641213 0.366686 0.610218 0.360191 0.610218 0.360191 0.607751 0.37297 0.584661 0.357061 0.66869 0.292473 0.67506 0.287874 0.680485 0.305578 0.5408 0.320707 0.541494 0.300718 0.553187 0.318602 0.541494 0.300718 0.549257 0.28075 0.554906 0.302022 0.549257 0.28075 0.576141 0.269841 0.563115 0.287991 0.576141 0.269841 0.605436 0.266358 0.583066 0.280106 0.605436 0.266358 0.643409 0.272102 0.60852 0.275613 0.641158 0.279205 0.643409 0.272102 0.66869 0.292473 0.792476 0.640846 0.718287 0.583402 0.83931 0.575571 0.718287 0.583402 0.659821 0.548735 0.745654 0.529325 0.604104 0.538031 0.613025 0.494188 0.659821 0.548735 0.604104 0.538031 0.564928 0.532234 0.613025 0.494188 0.531072 0.486038 0.567444 0.488695 0.529278 0.529393 0.529278 0.529393 0.500016 0.527693 0.531072 0.486038 0.512964 0.09043097 0.512911 0.09711098 0.499971 0.09369999 0.509736 0.193431 0.511334 0.198502 0.499982 0.195039 0.523289 0.1919749 0.511334 0.198502 0.521318 0.188282 0.531562 0.184547 0.523289 0.1919749 0.529921 0.182638 0.538068 0.1781409 0.531562 0.184547 0.534756 0.178569 0.543837 0.172971 0.538068 0.1781409 0.536567 0.173957 0.534908 0.170948 0.541607 0.167849 0.536567 0.173957 0.531035 0.167073 0.533949 0.163905 0.534908 0.170948 0.521562 0.163898 0.523838 0.159736 0.531035 0.167073 0.509351 0.161339 0.510849 0.156387 0.521562 0.163898 0.510849 0.156387 0.509351 0.161339 0.499978 0.156111 0.509956 0.189236 0.509736 0.193431 0.499981 0.190932 0.520451 0.185108 0.521318 0.188282 0.509956 0.189236 0.536567 0.173957 0.534756 0.178569 0.534562 0.174277 0.533518 0.177546 0.534756 0.178569 0.52956 0.180454 0.531035 0.167073 0.534908 0.170948 0.530209 0.169848 0.533263 0.172516 0.534908 0.170948 0.534562 0.174277 0.509351 0.161339 0.521562 0.163898 0.509829 0.165669 0.509829 0.165669 0.499979 0.1653749 0.509351 0.161339 0.521562 0.163898 0.531035 0.167073 0.521149 0.167029 0.52956 0.180454 0.529921 0.182638 0.520451 0.185108 0.510256 0.184414 0.509956 0.189236 0.499981 0.185291 0.520893 0.182174 0.520451 0.185108 0.510256 0.184414 0.529644 0.17846 0.52956 0.180454 0.520893 0.182174 0.532053 0.176281 0.533518 0.177546 0.529644 0.17846 0.533097 0.174436 0.534562 0.174277 0.532053 0.176281 0.532352 0.173139 0.533263 0.172516 0.533097 0.174436 0.530209 0.169848 0.533263 0.172516 0.530031 0.170979 0.521149 0.167029 0.530209 0.169848 0.52166 0.168427 0.509829 0.165669 0.521149 0.167029 0.510503 0.167734 0.510503 0.167734 0.499979 0.167807 0.509829 0.165669 0.833772 0.119025 0.846804 0.136189 0.800628 0.137396 0.859043 0.05878096 0.874346 0.1184 0.833772 0.119025 0.911106 0.1652179 0.931947 0.1450189 0.940571 0.23878 0.979136 0.26548 0.989071 0.355927 0.919507 0.304811 0.989071 0.355927 0.869274 0.349004 0.914186 0.333935 0.940571 0.23878 0.979136 0.26548 0.910377 0.257027 0.869361 0.346456 0.869274 0.349004 0.855406 0.331209 0.830697 0.341134 0.830821 0.295551 0.855406 0.331209 0.849362 0.299221 0.830821 0.295551 0.835039 0.241339 0.829204 0.215596 0.820504 0.213135 0.828164 0.19864 0.828164 0.19864 0.80708 0.161626 0.83457 0.172472 0.835039 0.241339 0.825939 0.240733 0.829204 0.215596 0.911106 0.1652179 0.940571 0.23878 0.884688 0.193509 0.874346 0.1184 0.911106 0.1652179 0.853844 0.170893 0.83457 0.172472 0.846804 0.136189 0.853844 0.170893 0.593013 0.34331 0.584661 0.357061 0.575878 0.336475 0.575878 0.336475 0.565494 0.34678 0.568829 0.327698 0.556984 0.333331 0.553187 0.318602 0.568829 0.327698 0.676182 0.306284 0.680485 0.305578 0.679674 0.317587 0.662897 0.334272 0.665441 0.342896 0.638494 0.342642 0.638494 0.342642 0.637384 0.355761 0.614002 0.348176 0.614002 0.348176 0.610218 0.360191 0.593013 0.34331 0.666518 0.297445 0.66869 0.292473 0.676182 0.306284 0.553187 0.318602 0.554906 0.302022 0.564798 0.31699 0.554906 0.302022 0.563115 0.287991 0.566123 0.303157 0.563115 0.287991 0.583066 0.280106 0.573131 0.294201 0.583066 0.280106 0.60852 0.275613 0.588522 0.289181 0.60852 0.275613 0.641158 0.279205 0.612215 0.286163 0.641158 0.279205 0.66869 0.292473 0.639053 0.287131 0.521113 0.178103 0.520893 0.182174 0.510303 0.180853 0.531236 0.1746219 0.533097 0.174436 0.530854 0.175227 0.530854 0.175227 0.532053 0.176281 0.5297 0.175543 0.530031 0.170979 0.532352 0.173139 0.529854 0.173339 0.532352 0.173139 0.533097 0.174436 0.530977 0.174045 0.510503 0.167734 0.52166 0.168427 0.510865 0.170796 0.52166 0.168427 0.530031 0.170979 0.522252 0.172158 0.5297 0.175543 0.529644 0.17846 0.521113 0.178103 0.510303 0.180853 0.510256 0.184414 0.49998 0.1819159 0.499979 0.167807 0.510503 0.167734 0.499979 0.170826 0.88049 0.441167 0.885106 0.389075 0.981384 0.448921 0.885106 0.389075 0.88049 0.441167 0.822896 0.379054 0.822896 0.379054 0.806864 0.420354 0.776225 0.36394 0.711124 0.382799 0.73642 0.34723 0.747491 0.404592 0.687479 0.364413 0.707604 0.333905 0.711124 0.382799 0.687479 0.364413 0.679975 0.357956 0.707604 0.333905 0.68286 0.320401 0.691074 0.327103 0.665441 0.342896 0.679674 0.317587 0.68286 0.320401 0.662897 0.334272 0.521654 0.28295 0.517859 0.26524 0.538987 0.277792 0.554756 0.356936 0.57755 0.369951 0.546092 0.365657 0.57755 0.369951 0.607751 0.37297 0.574303 0.379112 0.645346 0.375498 0.607999 0.382536 0.641213 0.366686 0.641213 0.366686 0.672471 0.351499 0.645346 0.375498 0.679975 0.357956 0.672471 0.351499 0.699339 0.330504 0.699339 0.330504 0.691074 0.327103 0.697278 0.307671 0.697278 0.307671 0.689021 0.306463 0.681516 0.284505 0.681516 0.284505 0.67506 0.287874 0.64482 0.267102 0.643409 0.272102 0.605436 0.266358 0.64482 0.267102 0.605436 0.266358 0.576141 0.269841 0.60339 0.25902 0.576141 0.269841 0.549257 0.28075 0.57244 0.262546 0.549257 0.28075 0.541494 0.300718 0.538987 0.277792 0.541494 0.300718 0.5408 0.320707 0.53139 0.301856 0.5408 0.320707 0.545136 0.338993 0.531476 0.321962 0.545136 0.338993 0.554756 0.356936 0.535688 0.342269 1.829124 0.650793 1.814092 0.672952 1.843244 0.661906 1.756835 0.772271 1.766582 0.797055 1.819932 0.779588 1.84643 0.621203 1.836694 0.630962 1.852487 0.634882 1.843244 0.661906 1.845078 0.639639 1.829124 0.650793 1.779212 0.874367 1.786057 0.865366 1.757492 0.861646 1.807037 0.894877 1.833369 0.919306 1.815406 0.887253 1.86138 0.766855 1.819932 0.779588 1.87044 0.800771 1.763684 0.963051 1.761066 0.934995 1.714314 0.947564 1.853142 0.618167 1.84643 0.621203 1.857084 0.633803 1.737881 0.850422 1.73946 0.837359 1.722153 0.841488 1.796495 0.94879 1.818081 0.971724 1.835959 0.948484 1.757492 0.861646 1.760459 0.848336 1.737881 0.850422 1.815406 0.887253 1.786057 0.865366 1.807037 0.894877 1.795759 0.711881 1.827001 0.685078 1.787643 0.698395 1.877049 0.943387 1.854168 0.920858 1.86842 0.948755 1.719351 0.854447 1.718864 0.8752 1.724857 0.856078 1.761066 0.934995 1.796495 0.94879 1.78969 0.912832 1.86842 0.948755 1.833369 0.919306 1.835959 0.948484 1.722153 0.841488 1.724857 0.856078 1.737881 0.850422 1.757492 0.861646 1.750839 0.886835 1.779212 0.874367 1.807037 0.894877 1.779212 0.874367 1.78969 0.912832 1.833369 0.919306 1.807037 0.894877 1.81674 0.9305 1.737881 0.850422 1.732274 0.870348 1.757492 0.861646 1.73162 0.918333 1.761066 0.934995 1.766917 0.895612 1.716902 0.922906 1.73162 0.918333 1.718864 0.8752 1.766985 0.974493 1.763684 0.963051 1.716913 0.962965 1.816754 0.981659 1.818081 0.971724 1.766985 0.974493 1.864649 0.968815 1.818081 0.971724 1.861795 0.976999 1.880413 0.962239 1.864649 0.968815 1.878956 0.970964 1.883204 0.932244 1.877049 0.943387 1.891337 0.949464 1.850462 0.900281 1.854168 0.920858 1.883204 0.932244 1.81702 0.872576 1.815406 0.887253 1.850462 0.900281 1.784959 0.850367 1.786057 0.865366 1.81702 0.872576 1.786057 0.865366 1.784959 0.850367 1.760459 0.848336 1.761847 0.838274 1.744462 0.829719 1.760459 0.848336 1.73946 0.837359 1.744462 0.829719 1.732184 0.831396 1.722153 0.841488 1.732184 0.831396 1.72754 0.821301 1.843244 0.661906 1.853111 0.662172 1.852487 0.634882 1.819932 0.779588 1.86138 0.766855 1.830303 0.753554 1.853111 0.662172 1.843244 0.661906 1.859508 0.709835 1.859508 0.709835 1.845882 0.715578 1.859976 0.745197 1.845882 0.715578 1.795759 0.711881 1.830303 0.753554 1.830303 0.753554 1.776211 0.747372 1.819932 0.779588 1.818081 0.971724 1.796495 0.94879 1.763684 0.963051 1.754458 0.741477 1.795759 0.711881 1.755459 0.721896 1.882864 0.959568 1.880413 0.962239 1.887482 0.963722 1.7055 0.772003 1.723453 0.780942 1.717719 0.759181 1.835959 0.948484 1.864649 0.968815 1.86842 0.948755 1.883624 0.957287 1.882864 0.959568 1.889771 0.958344 1.883624 0.957287 1.889771 0.958344 1.882818 0.953038 0.698201 0.06384098 0.69213 0.01401394 0.621478 0.06562995 0.865281 0.508845 0.839209 0.575641 0.962595 0.534744 0.98131 0.449021 0.880418 0.441246 0.962595 0.534744 0.609568 0.01162099 0.565904 0.04565995 0.621478 0.06562995 0.91109 0.165303 0.931935 0.1451089 0.87434 0.118478 0.833766 0.119095 0.85905 0.05885499 0.769312 0.08304095 0.986761 0.400796 0.989016 0.356029 0.885044 0.389155 0.769312 0.08304095 0.773276 0.02841496 0.698201 0.06384098 0.500047 0.05825197 0.533983 0.06025397 0.500051 0.027408 0.609568 0.01162099 0.548552 0.01972997 0.565904 0.04565995 0.565904 0.04565995 0.533983 0.06025397 0.570397 0.07344698 0.512964 0.09043395 0.532893 0.08292698 0.512063 0.074409 0.500045 0.08153796 0.512063 0.074409 0.500047 0.05825197 0.500044 0.09369999 0.512964 0.09043395 0.500045 0.08153796 0.562102 0.583056 0.564837 0.532248 0.529577 0.580477 0.529577 0.580477 0.529187 0.529399 0.499993 0.578413 0.500007 0.443524 0.500003 0.482183 0.532101 0.447769 0.532101 0.447769 0.53099 0.486044 0.570561 0.449927 0.529577 0.580477 0.529603 0.641568 0.562102 0.583056 0.499993 0.578413 0.499988 0.630056 0.529577 0.580477 0.67123 0.637775 0.718185 0.583447 0.637557 0.58509 0.668185 0.444303 0.66369 0.496121 0.769366 0.472957 0.745563 0.529375 0.839209 0.575641 0.769366 0.472957 0.67123 0.637775 0.714159 0.700707 0.718185 0.583447 0.529603 0.641568 0.529762 0.730788 0.573972 0.649968 0.499988 0.630056 0.499978 0.729049 0.529603 0.641568 0.885044 0.389155 0.86922 0.349081 0.822836 0.379121 0.764707 0.119088 0.769312 0.08304095 0.702566 0.104094 0.532101 0.447769 0.532807 0.409645 0.500007 0.443524 0.570561 0.449927 0.570833 0.415069 0.532101 0.447769 0.822836 0.379121 0.830645 0.341203 0.776168 0.363998 0.532893 0.08292698 0.512964 0.09043395 0.532872 0.096722 0.704899 0.18729 0.708014 0.225913 0.759797 0.192889 0.779846 0.326212 0.766406 0.281026 0.73583 0.314522 0.759797 0.192889 0.76395 0.152893 0.704899 0.18729 0.776168 0.363998 0.779846 0.326212 0.736367 0.347279 0.833766 0.119095 0.769312 0.08304095 0.800618 0.137459 0.820479 0.213201 0.807065 0.1616899 0.759797 0.192889 0.759797 0.192889 0.763178 0.234401 0.820479 0.213201 0.830645 0.341203 0.830778 0.29562 0.779846 0.326212 0.532807 0.409645 0.53737 0.374386 0.500011 0.40523 0.73583 0.314522 0.719895 0.274163 0.705489 0.308921 0.570833 0.415069 0.570993 0.388286 0.532807 0.409645 0.736367 0.347279 0.73583 0.314522 0.707554 0.333949 0.656376 0.1787869 0.648226 0.137572 0.615949 0.173414 0.633033 0.097925 0.621478 0.06562995 0.573533 0.100592 0.574243 0.379127 0.546035 0.365667 0.570993 0.388286 0.526188 0.34555 0.522103 0.323221 0.500017 0.346015 0.681475 0.284543 0.697232 0.307712 0.687932 0.281175 0.697232 0.307712 0.699289 0.330546 0.705489 0.308921 0.531427 0.321968 0.522103 0.323221 0.535636 0.342276 0.651727 0.245965 0.603194 0.235013 0.646195 0.262132 0.615949 0.173414 0.619651 0.205982 0.656376 0.1787869 0.521614 0.282955 0.517822 0.265243 0.500024 0.284 0.644783 0.267132 0.646195 0.262132 0.603355 0.259041 0.538948 0.2778 0.572404 0.262561 0.540455 0.261314 0.531346 0.301863 0.521242 0.302998 0.531427 0.321968 0.50002 0.324884 0.522103 0.323221 0.500022 0.304284 0.517822 0.265243 0.510064 0.247162 0.500026 0.267552 0.568705 0.255266 0.558215 0.239678 0.540455 0.261314 0.540455 0.261314 0.530461 0.244746 0.517822 0.265243 0.530461 0.244746 0.516019 0.233905 0.510064 0.247162 0.500029 0.238826 0.500028 0.2474319 0.50272 0.2389619 0.500029 0.238826 0.50272 0.2389619 0.500029 0.233192 0.615949 0.173414 0.603933 0.140803 0.587831 0.171589 0.512909 0.09711396 0.513026 0.114894 0.532872 0.096722 0.587831 0.171589 0.585209 0.194386 0.615949 0.173414 0.558215 0.239678 0.544324 0.225415 0.530461 0.244746 0.513026 0.114894 0.512909 0.09711396 0.500042 0.114 0.560551 0.1564649 0.565988 0.1715379 0.580305 0.147715 0.513026 0.114894 0.513793 0.132736 0.531224 0.11743 0.562922 0.186929 0.585209 0.194386 0.565988 0.1715379 0.515726 0.217645 0.500031 0.220139 0.516019 0.233905 0.515726 0.217645 0.516019 0.233905 0.534454 0.211051 0.500037 0.156111 0.510835 0.1563889 0.500038 0.148138 0.513793 0.132736 0.513026 0.114894 0.50004 0.131758 0.513161 0.205956 0.511312 0.198505 0.500032 0.2071509 0.541591 0.167858 0.54382 0.17298 0.547737 0.16346 0.527287 0.2001219 0.523268 0.19198 0.513161 0.205956 0.538049 0.178149 0.547648 0.182455 0.54382 0.17298 0.523823 0.159741 0.526127 0.1498979 0.510835 0.1563889 0.763178 0.234401 0.766406 0.281026 0.825907 0.2408 0.708014 0.225913 0.719895 0.274163 0.763178 0.234401 0.656116 0.215494 0.619651 0.205982 0.651727 0.245965 0.570076 0.213394 0.603194 0.235013 0.585209 0.194386 0.551127 0.200828 0.570076 0.213394 0.562922 0.186929 0.531542 0.184554 0.538959 0.192006 0.538049 0.178149 0.533933 0.1639119 0.541591 0.167858 0.538594 0.1557 0.546142 0.144746 0.560551 0.1564649 0.55511 0.129925 0.603933 0.140803 0.573533 0.100592 0.580305 0.147715 0.648226 0.137572 0.633033 0.097925 0.603933 0.140803 0.76395 0.152893 0.764707 0.119088 0.705726 0.140169 0.807065 0.1616899 0.800618 0.137459 0.76395 0.152893 0.500038 0.148138 0.512584 0.147011 0.50004 0.131758 0.526127 0.1498979 0.529566 0.136634 0.512584 0.147011 0.538594 0.1557 0.547737 0.16346 0.546142 0.144746 0.547737 0.16346 0.551296 0.17273 0.560551 0.1564649 0.547648 0.182455 0.562922 0.186929 0.551296 0.17273 0.538959 0.192006 0.551127 0.200828 0.547648 0.182455 0.534454 0.211051 0.527287 0.2001219 0.515726 0.217645 0.500031 0.220139 0.515726 0.217645 0.500032 0.2071509 0.573533 0.100592 0.570397 0.07344698 0.532872 0.096722 0.531224 0.11743 0.55511 0.129925 0.532872 0.096722 0.531224 0.11743 0.529566 0.136634 0.55511 0.129925 0.538594 0.1557 0.546142 0.144746 0.526127 0.1498979 0.533933 0.1639119 0.538594 0.1557 0.523823 0.159741 0.538959 0.192006 0.531542 0.184554 0.527287 0.2001219 0.551127 0.200828 0.538959 0.192006 0.534454 0.211051 0.534454 0.211051 0.544324 0.225415 0.551127 0.200828 0.603194 0.235013 0.570076 0.213394 0.558215 0.239678 0.60131 0.251703 0.603194 0.235013 0.568705 0.255266 0.603355 0.259041 0.60131 0.251703 0.572404 0.262561 0.500022 0.304284 0.521242 0.302998 0.500024 0.284 0.538948 0.2778 0.521614 0.282955 0.531346 0.301863 0.769366 0.472957 0.865281 0.508845 0.806795 0.420418 0.668185 0.444303 0.769366 0.472957 0.747425 0.404644 0.747425 0.404644 0.711063 0.382843 0.668185 0.444303 0.711063 0.382843 0.687422 0.364452 0.660028 0.408597 0.679919 0.357993 0.645287 0.375528 0.687422 0.364452 0.535636 0.342276 0.526188 0.34555 0.546035 0.365667 0.53737 0.374386 0.526188 0.34555 0.500015 0.371801 0.608185 0.392123 0.649418 0.384341 0.607938 0.382558 0.660028 0.408597 0.649418 0.384341 0.608076 0.41844 0.668185 0.444303 0.660028 0.408597 0.612559 0.449961 0.612941 0.494211 0.66369 0.496121 0.612559 0.449961 0.659726 0.548768 0.604011 0.538053 0.637557 0.58509 0.597047 0.585791 0.61723 0.652393 0.637557 0.58509 0.61723 0.652393 0.643978 0.729925 0.67123 0.637775 0.607938 0.382558 0.574243 0.379127 0.608185 0.392123 0.608076 0.41844 0.608185 0.392123 0.570833 0.415069 0.612559 0.449961 0.608076 0.41844 0.570561 0.449927 0.570561 0.449927 0.567361 0.488709 0.612559 0.449961 0.597047 0.585791 0.604011 0.538053 0.562102 0.583056 0.562102 0.583056 0.573972 0.649968 0.597047 0.585791 0.573972 0.649968 0.586699 0.733842 0.61723 0.652393 0.702566 0.104094 0.698201 0.06384098 0.633033 0.097925 0.705726 0.140169 0.702566 0.104094 0.648226 0.137572 0.704899 0.18729 0.705726 0.140169 0.656376 0.1787869 0.656376 0.1787869 0.656116 0.215494 0.704899 0.18729 0.656116 0.215494 0.651727 0.245965 0.708014 0.225913 0.646195 0.262132 0.687932 0.281175 0.651727 0.245965 0.644783 0.267132 0.681475 0.284543 0.646195 0.262132 0.554701 0.356948 0.577492 0.369967 0.56544 0.346793 0.554701 0.356948 0.56544 0.346793 0.545084 0.339002 0.545084 0.339002 0.556934 0.333342 0.540752 0.320716 0.691025 0.327143 0.688977 0.306502 0.682812 0.320439 0.641156 0.366715 0.672417 0.351535 0.637329 0.355789 0.607692 0.372992 0.641156 0.366715 0.610162 0.360214 0.577492 0.369967 0.607692 0.372992 0.584606 0.357079 0.688977 0.306502 0.675018 0.28791 0.68044 0.305615 0.540752 0.320716 0.55314 0.318613 0.54145 0.300727 0.54145 0.300727 0.554862 0.302034 0.549217 0.28076 0.549217 0.28076 0.563074 0.288004 0.576103 0.269857 0.576103 0.269857 0.583026 0.280124 0.6054 0.26638 0.6054 0.26638 0.608482 0.275635 0.643371 0.272132 0.675018 0.28791 0.643371 0.272132 0.668648 0.292508 0.745563 0.529375 0.718185 0.583447 0.839209 0.575641 0.66369 0.496121 0.659726 0.548768 0.745563 0.529375 0.604011 0.538053 0.659726 0.548768 0.612941 0.494211 0.567361 0.488709 0.564837 0.532248 0.612941 0.494211 0.564837 0.532248 0.567361 0.488709 0.529187 0.529399 0.500003 0.482183 0.499999 0.527693 0.53099 0.486044 0.512964 0.09043395 0.500044 0.09369999 0.512909 0.09711396 0.500033 0.200262 0.511312 0.198505 0.500033 0.195039 0.523268 0.19198 0.521297 0.188286 0.511312 0.198505 0.531542 0.184554 0.529901 0.182644 0.523268 0.19198 0.538049 0.178149 0.534737 0.178577 0.531542 0.184554 0.54382 0.17298 0.536549 0.173965 0.538049 0.178149 0.534891 0.170956 0.536549 0.173965 0.541591 0.167858 0.531019 0.16708 0.534891 0.170956 0.533933 0.1639119 0.533933 0.1639119 0.523823 0.159741 0.531019 0.16708 0.523823 0.159741 0.510835 0.1563889 0.521547 0.163902 0.500037 0.161186 0.509336 0.161341 0.500037 0.156111 0.509935 0.189238 0.500034 0.190932 0.509714 0.193433 0.509714 0.193433 0.521297 0.188286 0.509935 0.189238 0.536549 0.173965 0.534544 0.174284 0.534737 0.178577 0.529901 0.182644 0.534737 0.178577 0.529541 0.18046 0.531019 0.16708 0.530192 0.169854 0.534891 0.170956 0.534891 0.170956 0.533246 0.172523 0.536549 0.173965 0.509336 0.161341 0.509813 0.165672 0.521547 0.163902 0.509813 0.165672 0.509336 0.161341 0.500036 0.1653749 0.521547 0.163902 0.521133 0.167034 0.531019 0.16708 0.521297 0.188286 0.529901 0.182644 0.520431 0.1851119 0.510237 0.1844159 0.500034 0.185291 0.509935 0.189238 0.509935 0.189238 0.520431 0.1851119 0.510237 0.1844159 0.520431 0.1851119 0.529541 0.18046 0.520874 0.182179 0.529541 0.18046 0.5335 0.1775529 0.529626 0.178466 0.5335 0.1775529 0.534544 0.174284 0.532035 0.176288 0.534544 0.174284 0.533246 0.172523 0.533079 0.174443 0.530192 0.169854 0.530014 0.170985 0.533246 0.172523 0.521133 0.167034 0.521644 0.1684319 0.530192 0.169854 0.509813 0.165672 0.510487 0.1677359 0.521133 0.167034 0.510487 0.1677359 0.509813 0.165672 0.500036 0.167807 0.833766 0.119095 0.800618 0.137459 0.846794 0.136261 0.85905 0.05885499 0.833766 0.119095 0.87434 0.118478 0.91109 0.165303 0.94054 0.238871 0.931935 0.1451089 0.979099 0.265579 0.919463 0.304898 0.989016 0.356029 0.989016 0.356029 0.914136 0.334021 0.86922 0.349081 0.94054 0.238871 0.910343 0.257112 0.979099 0.265579 0.830645 0.341203 0.86922 0.349081 0.855356 0.331283 0.830645 0.341203 0.855356 0.331283 0.830778 0.29562 0.825907 0.2408 0.830778 0.29562 0.835007 0.241409 0.807065 0.1616899 0.820479 0.213201 0.828142 0.1987079 0.846794 0.136261 0.807065 0.1616899 0.834553 0.172541 0.820479 0.213201 0.825907 0.2408 0.829178 0.215664 0.91109 0.165303 0.884667 0.193589 0.94054 0.238871 0.87434 0.118478 0.853827 0.170967 0.91109 0.165303 0.87434 0.118478 0.846794 0.136261 0.853827 0.170967 0.56544 0.346793 0.584606 0.357079 0.575827 0.33649 0.556934 0.333342 0.56544 0.346793 0.568779 0.327712 0.556934 0.333342 0.568779 0.327712 0.55314 0.318613 0.682812 0.320439 0.68044 0.305615 0.679627 0.317624 0.637329 0.355789 0.665388 0.34293 0.638442 0.342671 0.610162 0.360214 0.637329 0.355789 0.613948 0.348199 0.584606 0.357079 0.610162 0.360214 0.592961 0.343329 0.68044 0.305615 0.668648 0.292508 0.676137 0.306321 0.55314 0.318613 0.564751 0.317004 0.554862 0.302034 0.554862 0.302034 0.566079 0.303171 0.563074 0.288004 0.563074 0.288004 0.573089 0.294217 0.583026 0.280124 0.583026 0.280124 0.58848 0.289199 0.608482 0.275635 0.608482 0.275635 0.612174 0.286186 0.641119 0.279235 0.641119 0.279235 0.639012 0.287159 0.668648 0.292508 0.510237 0.1844159 0.520874 0.182179 0.510284 0.180856 0.532035 0.176288 0.533079 0.174443 0.530837 0.175233 0.529626 0.178466 0.532035 0.176288 0.529682 0.175549 0.530014 0.170985 0.529836 0.173346 0.532334 0.173146 0.532334 0.173146 0.53096 0.174051 0.533079 0.174443 0.510487 0.1677359 0.510848 0.170799 0.521644 0.1684319 0.521644 0.1684319 0.522235 0.172163 0.530014 0.170985 0.520874 0.182179 0.529626 0.178466 0.521095 0.178108 0.500034 0.185291 0.510237 0.1844159 0.500034 0.1819159 0.500036 0.167807 0.500036 0.170826 0.510487 0.1677359 0.986761 0.400796 0.885044 0.389155 0.98131 0.449021 0.806795 0.420418 0.880418 0.441246 0.822836 0.379121 0.747425 0.404644 0.806795 0.420418 0.776168 0.363998 0.776168 0.363998 0.736367 0.347279 0.747425 0.404644 0.736367 0.347279 0.707554 0.333949 0.711063 0.382843 0.699289 0.330546 0.679919 0.357993 0.707554 0.333949 0.682812 0.320439 0.665388 0.34293 0.691025 0.327143 0.679627 0.317624 0.662846 0.334305 0.682812 0.320439 0.540455 0.261314 0.517822 0.265243 0.538948 0.2778 0.554701 0.356948 0.546035 0.365667 0.577492 0.369967 0.577492 0.369967 0.574243 0.379127 0.607692 0.372992 0.645287 0.375528 0.641156 0.366715 0.607938 0.382558 0.641156 0.366715 0.645287 0.375528 0.672417 0.351535 0.691025 0.327143 0.672417 0.351535 0.699289 0.330546 0.688977 0.306502 0.691025 0.327143 0.697232 0.307712 0.675018 0.28791 0.688977 0.306502 0.681475 0.284543 0.643371 0.272132 0.675018 0.28791 0.644783 0.267132 0.643371 0.272132 0.644783 0.267132 0.6054 0.26638 0.6054 0.26638 0.603355 0.259041 0.576103 0.269857 0.576103 0.269857 0.572404 0.262561 0.549217 0.28076 0.549217 0.28076 0.538948 0.2778 0.54145 0.300727 0.54145 0.300727 0.531346 0.301863 0.540752 0.320716 0.540752 0.320716 0.531427 0.321968 0.545084 0.339002 0.545084 0.339002 0.535636 0.342276 0.554701 0.356948 1.796666 0.192191 1.788092 0.176463 1.785023 0.195783 1.80018 0.206184 1.791359 0.208522 1.801382 0.221318 1.799037 0.235543 1.78648 0.2366279 1.793088 0.249623 1.761905 0.274374 1.756201 0.26694 1.745658 0.279945 1.727001 0.284067 1.728944 0.274401 1.699977 0.275186 1.693804 0.199452 1.680218 0.222438 1.700093 0.208896 1.705163 0.184258 1.693804 0.199452 1.709517 0.1951979 1.734009 0.170305 1.717225 0.175766 1.736831 0.182565 1.771438 0.204555 1.762137 0.198188 1.759873 0.21387 1.777468 0.215626 1.764817 0.221845 1.77793 0.226952 1.775 0.237492 1.765014 0.237781 1.770831 0.245542 1.752645 0.261807 1.748782 0.256366 1.741777 0.265966 1.728924 0.26656 1.728616 0.259671 1.708012 0.259238 1.705624 0.216316 1.69621 0.235885 1.71116 0.222795 1.713998 0.205264 1.705624 0.216316 1.718394 0.213329 1.737623 0.196156 1.724491 0.199145 1.737309 0.2067739 1.747529 0.217564 1.743357 0.224376 1.752217 0.220768 1.755391 0.226121 1.748655 0.2292 1.756537 0.231537 1.756266 0.237959 1.749656 0.237292 1.754799 0.241801 1.738516 0.253007 1.745078 0.250783 1.737898 0.2471089 1.729618 0.253338 1.731595 0.24617 1.71689 0.245249 1.714342 0.23974 1.722551 0.240042 1.718211 0.22837 1.722937 0.220684 1.718211 0.22837 1.727515 0.22603 1.736742 0.215736 1.73045 0.217252 1.736425 0.223479 1.965768 0.05305999 1.953876 0.06066 1.968332 0.06686997 1.867852 0.173363 1.871121 0.179872 1.877476 0.167232 1.968332 0.06686997 1.958209 0.07261198 1.97235 0.07859098 1.88876 0.159162 1.877476 0.167232 1.887994 0.173644 1.84042 0.185299 1.828603 0.183198 1.83883 0.193942 1.914501 0.08544898 1.906771 0.08628696 1.914505 0.100103 1.895786 0.1517249 1.886343 0.145047 1.88876 0.159162 1.877476 0.167232 1.870496 0.158933 1.867852 0.173363 1.84042 0.185299 1.845044 0.18594 1.842441 0.17394 1.874439 0.146404 1.867721 0.139481 1.86457 0.1512179 1.860294 0.14608 1.858807 0.1384 1.852693 0.146235 1.836453 0.1539829 1.845629 0.156486 1.841762 0.14789 1.819384 0.168629 1.799023 0.161862 1.816827 0.180809 1.828243 0.150206 1.813895 0.141601 1.823086 0.157697 1.828243 0.150206 1.834322 0.141101 1.813895 0.141601 1.842828 0.117367 1.848406 0.132394 1.854347 0.114684 1.869544 0.11425 1.854347 0.114684 1.868709 0.128167 1.889832 0.114884 1.869544 0.11425 1.88378 0.133413 1.91456 0.123439 1.900915 0.117211 1.902238 0.143434 1.859424 0.1862 1.871121 0.179872 1.857365 0.179578 1.861965 0.162671 1.854497 0.167489 1.867852 0.173363 1.850848 0.139405 1.844696 0.143555 1.852693 0.146235 1.842828 0.117367 1.830842 0.1237969 1.848406 0.132394 1.760035 0.157406 1.771522 0.146548 1.737658 0.129462 1.674282 0.1963779 1.687775 0.192164 1.670444 0.176328 1.97235 0.07859098 1.96486 0.08480095 1.981165 0.09132796 1.912932 0.149626 1.925091 0.157034 1.926958 0.130658 1.899315 0.167725 1.893776 0.175861 1.913113 0.177356 1.721321 0.290414 1.728872 0.29593 1.726147 0.287828 1.973469 0.09793496 1.985484 0.109379 1.981165 0.09132796 1.671301 0.21839 1.675994 0.21921 1.674282 0.1963779 1.902238 0.143434 1.912932 0.149626 1.91456 0.123439 1.934904 0.07297796 1.927528 0.07851397 1.940586 0.08491897 1.710989 0.151076 1.713874 0.166947 1.721857 0.1440719 1.933177 0.089742 1.944813 0.102562 1.940586 0.08491897 1.958062 0.115171 1.962973 0.109041 1.944813 0.102562 1.958062 0.115171 1.970858 0.125523 1.962973 0.109041 1.726147 0.287828 1.698425 0.279325 1.721321 0.290414 1.83571 0.21889 1.826286 0.217891 1.834145 0.232508 1.918967 0.200992 1.921031 0.195095 1.908881 0.1994889 1.861763 0.192957 1.867464 0.207539 1.874263 0.186841 1.874263 0.186841 1.880657 0.203082 1.887575 0.1847299 1.887575 0.1847299 1.894639 0.199246 1.909826 0.190997 1.675994 0.21921 1.680218 0.222438 1.687775 0.192164 1.731019 0.161175 1.713874 0.166947 1.734009 0.170305 1.771522 0.146548 1.760035 0.157406 1.799023 0.161862 1.78114 0.137691 1.807219 0.151353 1.800303 0.13091 1.817401 0.118698 1.800303 0.13091 1.824921 0.129556 1.839141 0.105747 1.842828 0.117367 1.850774 0.10295 1.850774 0.10295 1.854347 0.114684 1.868918 0.101782 1.893274 0.09621697 1.868918 0.101782 1.889832 0.114884 1.900915 0.117211 1.91456 0.123439 1.905547 0.099204 1.839141 0.105747 1.826019 0.111853 1.842828 0.117367 1.933782 0.1152819 1.926958 0.130658 1.94825 0.126877 1.833505 0.2372069 1.834145 0.232508 1.830642 0.240252 1.938273 0.138205 1.951831 0.147182 1.94825 0.126877 1.913113 0.177356 1.911294 0.183998 1.926415 0.1836439 1.727001 0.284067 1.726147 0.287828 1.73914 0.286999 1.914505 0.100103 1.91456 0.123439 1.933782 0.1152819 1.726147 0.287828 1.727001 0.284067 1.698425 0.279325 1.846806 0.22547 1.855153 0.215854 1.839496 0.219819 1.951831 0.147182 1.938273 0.138205 1.938091 0.165274 1.844373 0.163301 1.847893 0.163447 1.845629 0.156486 1.834037 0.161116 1.844373 0.163301 1.836453 0.1539829 1.845044 0.18594 1.84042 0.185299 1.843644 0.194129 1.83571 0.21889 1.834145 0.232508 1.839496 0.219819 1.833441 0.243393 1.83589 0.242896 1.833505 0.2372069 1.842441 0.17394 1.830985 0.171709 1.84042 0.185299 1.874439 0.146404 1.879633 0.140493 1.867721 0.139481 1.868092 0.1341429 1.858807 0.1384 1.867721 0.139481 1.86457 0.1512179 1.860294 0.14608 1.855605 0.152595 1.852693 0.146235 1.850026 0.149438 1.855605 0.152595 1.88876 0.159162 1.899315 0.167725 1.895786 0.1517249 1.899315 0.167725 1.913113 0.177356 1.906004 0.158709 1.918784 0.166729 1.913113 0.177356 1.93205 0.174248 1.88876 0.159162 1.880651 0.151904 1.877476 0.167232 1.70229 0.176212 1.687775 0.192164 1.705163 0.184258 1.687775 0.192164 1.70229 0.176212 1.685942 0.168431 1.953876 0.06066 1.944379 0.06675398 1.958209 0.07261198 1.958209 0.07261198 1.949343 0.07844096 1.96486 0.08480095 1.96813 0.10343 1.973469 0.09793496 1.957737 0.09058499 1.96813 0.10343 1.980808 0.114449 1.973469 0.09793496 1.799037 0.235543 1.793088 0.249623 1.801201 0.241481 1.764147 0.277736 1.761905 0.274374 1.751433 0.282454 1.817202 0.241384 1.816131 0.234517 1.801201 0.241481 1.799037 0.235543 1.816131 0.234517 1.801382 0.221318 1.788092 0.176463 1.796666 0.192191 1.816827 0.180809 1.746508 0.226204 1.743357 0.224376 1.742232 0.230322 1.74988 0.232762 1.748655 0.2292 1.744012 0.233687 1.748786 0.239754 1.749656 0.237292 1.743535 0.237685 1.742328 0.245962 1.739898 0.24108 1.737898 0.2471089 1.722551 0.240042 1.731595 0.24617 1.730501 0.237781 1.722551 0.240042 1.730501 0.237781 1.723684 0.2314119 1.723684 0.2314119 1.730596 0.233526 1.727515 0.22603 1.736425 0.223479 1.732619 0.224193 1.736478 0.228467 1.740798 0.229039 1.739043 0.232842 1.742232 0.230322 1.744012 0.233687 1.743293 0.231527 1.740455 0.234544 1.744117 0.23594 1.74069 0.235502 1.743535 0.237685 1.737567 0.241658 1.739898 0.24108 1.737797 0.238238 1.730501 0.237781 1.734438 0.241031 1.735126 0.236174 1.730501 0.237781 1.735126 0.236174 1.730596 0.233526 1.730596 0.233526 1.734885 0.2344419 1.732174 0.230753 1.734306 0.229224 1.736606 0.232917 1.736478 0.228467 1.739043 0.232842 1.738998 0.233196 1.739508 0.233188 1.74069 0.235502 1.740376 0.235512 1.740451 0.236271 1.737797 0.238238 1.738782 0.237955 1.737875 0.2379299 1.735126 0.236174 1.736457 0.237966 1.735634 0.236384 1.734885 0.2344419 1.735126 0.236174 1.735265 0.234577 1.734885 0.2344419 1.735265 0.234577 1.735627 0.2333739 1.736606 0.232917 1.736814 0.233267 1.737394 0.232753 1.740172 0.2346529 1.739329 0.235108 1.740376 0.235512 1.738998 0.233196 1.738757 0.234343 1.739339 0.233521 1.736814 0.233267 1.737405 0.234374 1.737502 0.2331089 1.735265 0.234577 1.7365 0.235127 1.735935 0.233639 1.735265 0.234577 1.735634 0.236384 1.7365 0.235127 1.735634 0.236384 1.736707 0.237685 1.736658 0.236127 1.737875 0.2379299 1.738721 0.237639 1.738019 0.236998 1.740376 0.235512 1.739419 0.235623 1.740184 0.236184 1.961004 0.13662 1.965975 0.131049 1.94825 0.126877 1.933782 0.1152819 1.94825 0.126877 1.939213 0.108398 1.914505 0.100103 1.933782 0.1152819 1.926445 0.09443199 1.920563 0.083081 1.914501 0.08544898 1.926445 0.09443199 1.752679 0.159906 1.760035 0.157406 1.729863 0.137615 1.752679 0.159906 1.753771 0.168429 1.760035 0.157406 1.751521 0.181824 1.775201 0.185802 1.753771 0.168429 1.745099 0.206811 1.753126 0.209231 1.748032 0.196215 1.739661 0.223291 1.743357 0.224376 1.742083 0.2156029 1.738848 0.228464 1.740798 0.229039 1.739661 0.223291 1.738165 0.232712 1.739043 0.232842 1.738848 0.228464 1.738165 0.232712 1.738192 0.233085 1.739043 0.232842 1.738192 0.233085 1.73827 0.234265 1.738998 0.233196 1.906771 0.08628696 1.900654 0.08499896 1.905547 0.099204 1.771522 0.146548 1.78114 0.137691 1.745693 0.12244 1.771522 0.146548 1.799023 0.161862 1.78114 0.137691 1.823086 0.157697 1.807219 0.151353 1.819384 0.168629 1.844373 0.163301 1.834037 0.161116 1.842441 0.17394 1.842441 0.17394 1.84647 0.1743209 1.844373 0.163301 1.855605 0.152595 1.852241 0.156064 1.861965 0.162671 1.870496 0.158933 1.86457 0.1512179 1.861965 0.162671 1.880651 0.151904 1.874439 0.146404 1.870496 0.158933 1.886343 0.145047 1.879633 0.140493 1.880651 0.151904 1.900915 0.117211 1.889832 0.114884 1.891441 0.137163 1.905547 0.099204 1.893274 0.09621697 1.900915 0.117211 1.745693 0.12244 1.752954 0.116599 1.731337 0.10405 1.737658 0.129462 1.745693 0.12244 1.7241 0.110368 1.729863 0.137615 1.737658 0.129462 1.717783 0.1155019 1.710989 0.151076 1.721857 0.1440719 1.701969 0.13084 1.685942 0.168431 1.698589 0.1599529 1.68171 0.148528 1.670444 0.176328 1.685942 0.168431 1.668703 0.159285 1.842138 0.205112 1.855153 0.215854 1.861763 0.192957 1.843644 0.194129 1.859424 0.1862 1.845044 0.18594 1.854497 0.167489 1.84647 0.1743209 1.857365 0.179578 1.852241 0.156064 1.847893 0.163447 1.854497 0.167489 1.850026 0.149438 1.848327 0.15442 1.852241 0.156064 1.844696 0.143555 1.841762 0.14789 1.850026 0.149438 1.830842 0.1237969 1.824921 0.129556 1.839609 0.137251 1.826019 0.111853 1.817401 0.118698 1.830842 0.1237969 1.962973 0.109041 1.97615 0.119545 1.96813 0.10343 1.950963 0.09662598 1.962973 0.109041 1.957737 0.09058499 1.940586 0.08491897 1.950963 0.09662598 1.949343 0.07844096 1.944379 0.06675398 1.934904 0.07297796 1.949343 0.07844096 1.698589 0.1599529 1.710989 0.151076 1.691879 0.140025 1.70229 0.176212 1.713874 0.166947 1.698589 0.1599529 1.705163 0.184258 1.717225 0.175766 1.70229 0.176212 1.709517 0.1951979 1.720926 0.187757 1.705163 0.184258 1.718394 0.213329 1.7279 0.209083 1.713998 0.205264 1.727515 0.22603 1.732619 0.224193 1.722937 0.220684 1.727515 0.22603 1.732174 0.230753 1.732619 0.224193 1.732174 0.230753 1.735627 0.2333739 1.734306 0.229224 1.735627 0.2333739 1.735935 0.233639 1.736606 0.232917 1.735935 0.233639 1.736874 0.234587 1.736814 0.233267 1.748032 0.196215 1.762137 0.198188 1.751521 0.181824 1.736831 0.182565 1.720926 0.187757 1.737623 0.196156 1.713998 0.205264 1.724491 0.199145 1.709517 0.1951979 1.709517 0.1951979 1.700093 0.208896 1.713998 0.205264 1.700093 0.208896 1.687795 0.23083 1.705624 0.216316 1.728944 0.274401 1.728924 0.26656 1.704149 0.266927 1.744039 0.272305 1.756201 0.26694 1.741777 0.265966 1.78648 0.2366279 1.775 0.237492 1.78092 0.247547 1.791359 0.208522 1.777468 0.215626 1.790943 0.2234809 1.785023 0.195783 1.775201 0.185802 1.771438 0.204555 1.742083 0.2156029 1.747529 0.217564 1.745099 0.206811 1.737309 0.2067739 1.7279 0.209083 1.736742 0.215736 1.722937 0.220684 1.73045 0.217252 1.718394 0.213329 1.718394 0.213329 1.71116 0.222795 1.722937 0.220684 1.704675 0.23843 1.714342 0.23974 1.71116 0.222795 1.728616 0.259671 1.729618 0.253338 1.711599 0.252353 1.748782 0.256366 1.745078 0.250783 1.73993 0.259311 1.765014 0.237781 1.756266 0.237959 1.762493 0.243907 1.764817 0.221845 1.755391 0.226121 1.766083 0.229696 1.759873 0.21387 1.753126 0.209231 1.752217 0.220768 1.953358 0.120918 1.965975 0.131049 1.958062 0.115171 1.953358 0.120918 1.958062 0.115171 1.939213 0.108398 1.926445 0.09443199 1.939213 0.108398 1.933177 0.089742 1.927528 0.07851397 1.920563 0.083081 1.933177 0.089742 1.721857 0.1440719 1.729863 0.137615 1.710041 0.122749 1.721857 0.1440719 1.731019 0.161175 1.729863 0.137615 1.731019 0.161175 1.734009 0.170305 1.752679 0.159906 1.736831 0.182565 1.751521 0.181824 1.734009 0.170305 1.737623 0.196156 1.748032 0.196215 1.736831 0.182565 1.737309 0.2067739 1.745099 0.206811 1.737623 0.196156 1.736742 0.215736 1.742083 0.2156029 1.737309 0.2067739 1.736425 0.223479 1.739661 0.223291 1.736742 0.215736 1.736478 0.228467 1.738848 0.228464 1.736425 0.223479 1.736478 0.228467 1.737394 0.232753 1.738848 0.228464 1.737394 0.232753 1.737502 0.2331089 1.738165 0.232712 1.737502 0.2331089 1.737841 0.234273 1.738192 0.233085 1.751433 0.282454 1.745658 0.279945 1.73914 0.286999 1.744039 0.272305 1.728944 0.274401 1.745658 0.279945 1.741777 0.265966 1.728924 0.26656 1.744039 0.272305 1.741777 0.265966 1.73993 0.259311 1.728924 0.26656 1.73993 0.259311 1.738516 0.253007 1.728616 0.259671 1.737898 0.2471089 1.731595 0.24617 1.738516 0.253007 1.737898 0.2471089 1.737567 0.241658 1.731595 0.24617 1.737797 0.238238 1.736457 0.237966 1.737567 0.241658 1.737875 0.2379299 1.736707 0.237685 1.737797 0.238238 1.738019 0.236998 1.73736 0.236841 1.737875 0.2379299 1.772258 0.271117 1.771401 0.269362 1.764147 0.277736 1.771401 0.269362 1.764365 0.26316 1.761905 0.274374 1.764365 0.26316 1.759144 0.257674 1.756201 0.26694 1.759144 0.257674 1.754128 0.253072 1.752645 0.261807 1.754128 0.253072 1.749056 0.248236 1.748782 0.256366 1.74509 0.244153 1.742328 0.245962 1.749056 0.248236 1.74509 0.244153 1.741313 0.240269 1.742328 0.245962 1.739452 0.23751 1.738782 0.237955 1.741313 0.240269 1.739299 0.237266 1.738721 0.237639 1.739452 0.23751 1.738858 0.236608 1.738501 0.2368119 1.739299 0.237266 1.868245 0.237964 1.854093 0.229136 1.862446 0.243341 1.854093 0.229136 1.868245 0.237964 1.864407 0.222241 1.864407 0.222241 1.876132 0.232245 1.874882 0.216437 1.874882 0.216437 1.884735 0.227169 1.886562 0.212197 1.903366 0.2199569 1.898062 0.208796 1.894464 0.223247 1.912679 0.217016 1.909226 0.207734 1.903366 0.2199569 1.919629 0.21523 1.918064 0.207076 1.912679 0.217016 1.886562 0.212197 1.880657 0.203082 1.874882 0.216437 1.843883 0.234755 1.849708 0.236509 1.846806 0.22547 1.918064 0.207076 1.918967 0.200992 1.909226 0.207734 1.898062 0.208796 1.894639 0.199246 1.886562 0.212197 1.909226 0.207734 1.908881 0.1994889 1.898062 0.208796 1.874882 0.216437 1.867464 0.207539 1.864407 0.222241 1.864407 0.222241 1.855153 0.215854 1.854093 0.229136 1.84758 0.242211 1.858851 0.247105 1.849708 0.236509 1.84273 0.2418 1.84758 0.242211 1.843883 0.234755 1.801382 0.221318 1.790943 0.2234809 1.799037 0.235543 1.790943 0.2234809 1.77793 0.226952 1.78648 0.2366279 1.77793 0.226952 1.766083 0.229696 1.775 0.237492 1.766083 0.229696 1.756537 0.231537 1.765014 0.237781 1.756537 0.231537 1.74988 0.232762 1.756266 0.237959 1.744012 0.233687 1.744117 0.23594 1.74988 0.232762 1.739634 0.233896 1.739097 0.234802 1.740172 0.2346529 1.739857 0.233609 1.739634 0.233896 1.740455 0.234544 1.740455 0.234544 1.74069 0.235502 1.744012 0.233687 1.740172 0.2346529 1.740376 0.235512 1.740455 0.234544 1.88876 0.159162 1.887994 0.173644 1.899315 0.167725 1.871121 0.179872 1.874263 0.186841 1.88206 0.176037 1.861763 0.192957 1.874263 0.186841 1.859424 0.1862 1.842138 0.205112 1.861763 0.192957 1.843644 0.194129 1.843644 0.194129 1.83883 0.193942 1.842138 0.205112 1.83883 0.193942 1.827707 0.19286 1.837529 0.204576 1.80018 0.206184 1.815507 0.203609 1.796666 0.192191 1.785023 0.195783 1.791359 0.208522 1.796666 0.192191 1.785023 0.195783 1.771438 0.204555 1.791359 0.208522 1.759873 0.21387 1.764817 0.221845 1.771438 0.204555 1.752217 0.220768 1.755391 0.226121 1.759873 0.21387 1.752217 0.220768 1.746508 0.226204 1.755391 0.226121 1.742232 0.230322 1.743293 0.231527 1.746508 0.226204 1.739508 0.233188 1.739857 0.233609 1.742232 0.230322 1.739508 0.233188 1.739339 0.233521 1.739857 0.233609 1.739339 0.233521 1.738914 0.234544 1.739634 0.233896 1.793088 0.249623 1.78092 0.247547 1.781358 0.262902 1.78092 0.247547 1.770831 0.245542 1.772821 0.257564 1.770831 0.245542 1.762493 0.243907 1.765429 0.252134 1.762493 0.243907 1.754799 0.241801 1.758978 0.248827 1.754799 0.241801 1.748786 0.239754 1.752604 0.2450349 1.748786 0.239754 1.743535 0.237685 1.74748 0.241861 1.740451 0.236271 1.740016 0.236963 1.743535 0.237685 1.740451 0.236271 1.740184 0.236184 1.740016 0.236963 1.740184 0.236184 1.739299 0.235996 1.739795 0.236786 1.817202 0.241384 1.825717 0.239582 1.816131 0.234517 1.826286 0.217891 1.815172 0.2191489 1.825673 0.233433 1.827707 0.19286 1.815582 0.191707 1.826816 0.203352 1.828603 0.183198 1.816827 0.180809 1.827707 0.19286 1.830985 0.171709 1.819384 0.168629 1.828603 0.183198 1.834037 0.161116 1.823086 0.157697 1.830985 0.171709 1.836453 0.1539829 1.828243 0.150206 1.834037 0.161116 1.841762 0.14789 1.834322 0.141101 1.836453 0.1539829 1.844696 0.143555 1.839609 0.137251 1.841762 0.14789 1.850848 0.139405 1.848406 0.132394 1.844696 0.143555 1.858807 0.1384 1.857316 0.130001 1.850848 0.139405 1.868709 0.128167 1.857316 0.130001 1.868092 0.1341429 1.879633 0.140493 1.88378 0.133413 1.868092 0.1341429 1.891441 0.137163 1.88378 0.133413 1.886343 0.145047 1.902238 0.143434 1.891441 0.137163 1.895786 0.1517249 1.895786 0.1517249 1.906004 0.158709 1.902238 0.143434 1.906004 0.158709 1.918784 0.166729 1.912932 0.149626 1.938091 0.165274 1.925091 0.157034 1.93205 0.174248 1.911294 0.183998 1.909826 0.190997 1.923562 0.189312 1.893776 0.175861 1.887575 0.1847299 1.911294 0.183998 1.88206 0.176037 1.887575 0.1847299 1.887994 0.173644 1.739795 0.236786 1.73915 0.236342 1.739299 0.237266 1.739795 0.236786 1.739299 0.237266 1.740016 0.236963 1.740016 0.236963 1.739452 0.23751 1.74256 0.239222 1.74748 0.241861 1.74256 0.239222 1.74509 0.244153 1.752604 0.2450349 1.74748 0.241861 1.749056 0.248236 1.758978 0.248827 1.752604 0.2450349 1.754128 0.253072 1.765429 0.252134 1.758978 0.248827 1.759144 0.257674 1.772821 0.257564 1.765429 0.252134 1.764365 0.26316 1.781358 0.262902 1.772821 0.257564 1.771401 0.269362 1.782499 0.265293 1.781358 0.262902 1.772258 0.271117 1.801382 0.221318 1.815172 0.2191489 1.80018 0.206184 1.826816 0.203352 1.815507 0.203609 1.826286 0.217891 1.826816 0.203352 1.826286 0.217891 1.837529 0.204576 1.839496 0.219819 1.842138 0.205112 1.83571 0.21889 1.843883 0.234755 1.846806 0.22547 1.837472 0.232885 1.833505 0.2372069 1.836801 0.23706 1.834145 0.232508 1.84273 0.2418 1.843883 0.234755 1.836801 0.23706 1.833505 0.2372069 1.830642 0.240252 1.833441 0.243393 1.830642 0.240252 1.825717 0.239582 1.830315 0.244146 1.819553 0.247828 1.825845 0.245489 1.817202 0.241384 1.819553 0.247828 1.817202 0.241384 1.806527 0.253382 1.801201 0.241481 1.794168 0.251932 1.806527 0.253382 1.800303 0.13091 1.794485 0.115503 1.78114 0.137691 1.78114 0.137691 1.775878 0.121228 1.752954 0.116599 1.900654 0.08499896 1.894671 0.08162498 1.893274 0.09621697 1.893274 0.09621697 1.88588 0.08796197 1.868918 0.101782 1.848457 0.09234398 1.850774 0.10295 1.865827 0.09068995 1.850774 0.10295 1.848457 0.09234398 1.839141 0.105747 1.836228 0.09452599 1.822922 0.09920495 1.839141 0.105747 1.800303 0.13091 1.817401 0.118698 1.794485 0.115503 1.794485 0.115503 1.79385 0.06444698 1.775878 0.121228 1.775878 0.121228 1.780002 0.06436395 1.757937 0.10931 1.894671 0.08162498 1.876445 0.04401695 1.88588 0.08796197 1.88588 0.08796197 1.866769 0.048029 1.865827 0.09068995 1.865827 0.09068995 1.852972 0.05426698 1.848457 0.09234398 1.848457 0.09234398 1.839566 0.05599695 1.836228 0.09452599 1.822922 0.09920495 1.836228 0.09452599 1.816271 0.06140398 1.794485 0.115503 1.813665 0.105438 1.79385 0.06444698 1.79385 0.06444698 1.807674 0.06286996 1.79184 0.02815699 1.816271 0.06140398 1.827463 0.05848199 1.811232 0.02281296 1.839566 0.05599695 1.829456 0.01909697 1.827463 0.05848199 1.852972 0.05426698 1.840023 0.018314 1.839566 0.05599695 1.852972 0.05426698 1.866769 0.048029 1.840023 0.018314 1.866769 0.048029 1.876445 0.04401695 1.852173 0.01307195 1.780002 0.06436395 1.780298 0.02789896 1.76624 0.06227797 1.79385 0.06444698 1.79184 0.02815699 1.780002 0.06436395 1.76624 0.06227797 1.767511 0.02575498 1.751931 0.05917495 1.757937 0.10931 1.76624 0.06227797 1.741103 0.09319698 1.752954 0.116599 1.757937 0.10931 1.737416 0.09950995 1.822922 0.09920495 1.813665 0.105438 1.826019 0.111853 1.816271 0.06140398 1.807674 0.06286996 1.822922 0.09920495 1.811232 0.02281296 1.804208 0.02529597 1.816271 0.06140398 1.902112 0.250034 1.898362 0.244361 1.891105 0.253828 1.880375 0.25399 1.874132 0.257862 1.880546 0.261034 1.933981 0.230906 1.929573 0.228177 1.928978 0.238305 1.922232 0.245404 1.915981 0.2385759 1.913844 0.251535 1.928978 0.238305 1.924067 0.233415 1.922232 0.245404 1.884324 0.2426429 1.888053 0.248836 1.893318 0.237758 1.877109 0.247859 1.87147 0.252318 1.880375 0.25399 1.929573 0.228177 1.924192 0.223204 1.924067 0.233415 1.915981 0.2385759 1.910346 0.231357 1.906862 0.242249 1.924067 0.233415 1.918388 0.227256 1.915981 0.2385759 1.930346 0.253933 1.922232 0.245404 1.923114 0.261393 1.930346 0.253933 1.935826 0.243848 1.922232 0.245404 1.933981 0.230906 1.928978 0.238305 1.940569 0.233532 1.893318 0.237758 1.898362 0.244361 1.901653 0.234526 1.913844 0.251535 1.906862 0.242249 1.902112 0.250034 1.888053 0.248836 1.880375 0.25399 1.891105 0.253828 1.884324 0.2426429 1.877109 0.247859 1.888053 0.248836 1.877109 0.247859 1.868245 0.237964 1.87147 0.252318 1.868245 0.237964 1.877109 0.247859 1.876132 0.232245 1.876132 0.232245 1.884324 0.2426429 1.884735 0.227169 1.884735 0.227169 1.893318 0.237758 1.894464 0.223247 1.910346 0.231357 1.903366 0.2199569 1.901653 0.234526 1.918388 0.227256 1.912679 0.217016 1.910346 0.231357 1.924192 0.223204 1.919629 0.21523 1.918388 0.227256 1.874132 0.257862 1.869425 0.259546 1.874179 0.266193 1.87147 0.252318 1.867471 0.255287 1.874132 0.257862 1.858851 0.247105 1.867471 0.255287 1.862446 0.243341 0.775201 0.185802 0.788092 0.176463 0.785023 0.195783 0.80018 0.206184 0.801382 0.221318 0.791359 0.208522 0.799036 0.235543 0.793088 0.249623 0.78648 0.2366279 0.761905 0.274374 0.745658 0.279945 0.756201 0.26694 0.728944 0.274401 0.727001 0.284067 0.704149 0.266927 0.687795 0.23083 0.680218 0.222438 0.700093 0.208896 0.700093 0.208896 0.693804 0.199452 0.709517 0.1951979 0.720926 0.187757 0.717225 0.175766 0.736831 0.182565 0.753126 0.209231 0.762137 0.198188 0.759873 0.21387 0.777468 0.215626 0.77793 0.226952 0.764817 0.221845 0.775 0.237492 0.770831 0.245542 0.765014 0.237781 0.752645 0.261807 0.741777 0.265966 0.748782 0.256366 0.728924 0.26656 0.708012 0.259238 0.728616 0.259671 0.704675 0.23843 0.69621 0.235885 0.71116 0.222795 0.71116 0.222795 0.705624 0.216316 0.718394 0.213329 0.7279 0.209083 0.724491 0.199145 0.737309 0.2067739 0.747529 0.217564 0.752217 0.220768 0.743357 0.224376 0.755391 0.226121 0.756537 0.231537 0.748655 0.2292 0.756266 0.237959 0.754799 0.241801 0.749656 0.237292 0.742328 0.245962 0.745078 0.250783 0.737898 0.2471089 0.731595 0.24617 0.729618 0.253338 0.722551 0.240042 0.722551 0.240042 0.714342 0.23974 0.723684 0.2314119 0.723684 0.2314119 0.718211 0.22837 0.727515 0.22603 0.732619 0.224193 0.73045 0.217252 0.736425 0.223479 0.965768 0.05305999 0.968332 0.06686997 0.953876 0.06066 0.871121 0.179872 0.867852 0.173363 0.88206 0.176037 0.96486 0.08480095 0.958209 0.07261198 0.97235 0.07859098 0.88206 0.176037 0.877476 0.167232 0.887994 0.173644 0.827707 0.19286 0.828603 0.183198 0.83883 0.193942 0.914501 0.08544898 0.914505 0.100103 0.906771 0.08628696 0.895786 0.1517249 0.88876 0.159162 0.886343 0.145047 0.877476 0.167232 0.867852 0.173363 0.870496 0.158933 0.84647 0.1743209 0.845044 0.18594 0.842441 0.17394 0.874439 0.146404 0.86457 0.1512179 0.867721 0.139481 0.860294 0.14608 0.852693 0.146235 0.858807 0.1384 0.848327 0.15442 0.845629 0.156486 0.841762 0.14789 0.819384 0.168629 0.816827 0.180809 0.799023 0.161862 0.828243 0.150206 0.823086 0.157697 0.813895 0.141601 0.824921 0.129556 0.834322 0.141101 0.813895 0.141601 0.842828 0.117367 0.854347 0.114684 0.848406 0.132394 0.854347 0.114684 0.869544 0.11425 0.857316 0.130001 0.889832 0.114884 0.88378 0.133413 0.869544 0.11425 0.91456 0.123439 0.902238 0.143434 0.900915 0.117211 0.859424 0.1862 0.857365 0.179578 0.871121 0.179872 0.861965 0.162671 0.867852 0.173363 0.854497 0.167489 0.850848 0.139405 0.852693 0.146235 0.844696 0.143555 0.839609 0.137251 0.830842 0.1237969 0.848406 0.132394 0.760035 0.157406 0.737658 0.129462 0.771522 0.146548 0.674282 0.1963779 0.670444 0.176328 0.687775 0.192164 0.973469 0.09793496 0.96486 0.08480095 0.981165 0.09132796 0.912932 0.149626 0.926958 0.130658 0.925091 0.157034 0.893776 0.175861 0.899315 0.167725 0.911294 0.183998 0.734969 0.289691 0.728872 0.29593 0.726147 0.287828 0.973469 0.09793496 0.981165 0.09132796 0.985484 0.109379 0.671301 0.21839 0.674282 0.1963779 0.675994 0.21921 0.902238 0.143434 0.91456 0.123439 0.912932 0.149626 0.934904 0.07297796 0.940586 0.08491897 0.927528 0.07851397 0.713874 0.166947 0.710989 0.151076 0.731019 0.161175 0.933178 0.089742 0.940586 0.08491897 0.944813 0.102562 0.958062 0.115171 0.944813 0.102562 0.962973 0.109041 0.970858 0.125523 0.958062 0.115171 0.97615 0.119545 0.726147 0.287828 0.721321 0.290414 0.698425 0.279325 0.826286 0.217891 0.83571 0.21889 0.825673 0.233433 0.921031 0.195095 0.918968 0.200992 0.909826 0.190997 0.867464 0.207539 0.861764 0.192957 0.880657 0.203082 0.874263 0.186841 0.887575 0.1847299 0.880657 0.203082 0.887575 0.1847299 0.909826 0.190997 0.894639 0.199246 0.680218 0.222438 0.675994 0.21921 0.693804 0.199452 0.717225 0.175766 0.713874 0.166947 0.734009 0.170305 0.788092 0.176463 0.760035 0.157406 0.799023 0.161862 0.78114 0.137691 0.800303 0.13091 0.807219 0.151353 0.813895 0.141601 0.800303 0.13091 0.824921 0.129556 0.839141 0.105747 0.850774 0.10295 0.842828 0.117367 0.850774 0.10295 0.868918 0.101782 0.854347 0.114684 0.869544 0.11425 0.868918 0.101782 0.889832 0.114884 0.900915 0.117211 0.905547 0.099204 0.91456 0.123439 0.830842 0.1237969 0.826019 0.111853 0.842828 0.117367 0.933782 0.1152819 0.94825 0.126877 0.926958 0.130658 0.833505 0.2372069 0.830642 0.240252 0.834145 0.232508 0.938273 0.138205 0.94825 0.126877 0.951831 0.147182 0.911294 0.183998 0.913113 0.177356 0.923562 0.189312 0.726147 0.287828 0.727001 0.284067 0.734969 0.289691 0.926958 0.130658 0.91456 0.123439 0.933782 0.1152819 0.727001 0.284067 0.726147 0.287828 0.699977 0.275186 0.842138 0.205112 0.855153 0.215854 0.839496 0.219819 0.925091 0.157034 0.938273 0.138205 0.938091 0.165274 0.848327 0.15442 0.847893 0.163447 0.845629 0.156486 0.845629 0.156486 0.844373 0.163301 0.836453 0.1539829 0.83883 0.193942 0.84042 0.185299 0.843644 0.194129 0.837472 0.232885 0.834145 0.232508 0.839496 0.219819 0.836801 0.23706 0.83589 0.242896 0.833505 0.2372069 0.842441 0.17394 0.84042 0.185299 0.830985 0.171709 0.868092 0.1341429 0.879633 0.140493 0.867721 0.139481 0.868092 0.1341429 0.867721 0.139481 0.858807 0.1384 0.86457 0.1512179 0.855605 0.152595 0.860294 0.14608 0.852241 0.156064 0.850026 0.149438 0.855605 0.152595 0.88876 0.159162 0.895786 0.1517249 0.899315 0.167725 0.918784 0.166729 0.913113 0.177356 0.906004 0.158709 0.913113 0.177356 0.918784 0.166729 0.926415 0.1836439 0.870496 0.158933 0.880652 0.151904 0.877476 0.167232 0.693804 0.199452 0.687775 0.192164 0.705163 0.184258 0.687775 0.192164 0.685942 0.168431 0.70229 0.176212 0.953876 0.06066 0.958209 0.07261198 0.944379 0.06675398 0.957737 0.09058499 0.949343 0.07844096 0.96486 0.08480095 0.96813 0.10343 0.957737 0.09058499 0.973469 0.09793496 0.980808 0.114449 0.96813 0.10343 0.985484 0.109379 0.799036 0.235543 0.801201 0.241481 0.793088 0.249623 0.745658 0.279945 0.761905 0.274374 0.751433 0.282454 0.817202 0.241384 0.801201 0.241481 0.816131 0.234517 0.799036 0.235543 0.801382 0.221318 0.816131 0.234517 0.815582 0.191707 0.796666 0.192191 0.816827 0.180809 0.740798 0.229039 0.743357 0.224376 0.742232 0.230322 0.743293 0.231527 0.748655 0.2292 0.744012 0.233687 0.749656 0.237292 0.748786 0.239754 0.744117 0.23594 0.742328 0.245962 0.737898 0.2471089 0.739898 0.24108 0.734438 0.241031 0.731595 0.24617 0.730501 0.237781 0.730501 0.237781 0.722551 0.240042 0.730596 0.233526 0.730596 0.233526 0.723684 0.2314119 0.732174 0.230753 0.734306 0.229224 0.732619 0.224193 0.736478 0.228467 0.740798 0.229039 0.742232 0.230322 0.739043 0.232842 0.739857 0.233609 0.743293 0.231527 0.740455 0.234544 0.744117 0.23594 0.743535 0.237685 0.74069 0.235502 0.738782 0.237955 0.739898 0.24108 0.737797 0.238238 0.736457 0.237966 0.734438 0.241031 0.735126 0.236174 0.730501 0.237781 0.730596 0.233526 0.735126 0.236174 0.730596 0.233526 0.732174 0.230753 0.734885 0.2344419 0.734306 0.229224 0.736478 0.228467 0.736606 0.232917 0.739043 0.232842 0.739508 0.233188 0.738998 0.233196 0.74069 0.235502 0.740451 0.236271 0.740376 0.235512 0.738721 0.237639 0.738782 0.237955 0.737875 0.2379299 0.736707 0.237685 0.736457 0.237966 0.735634 0.236384 0.735634 0.236384 0.735126 0.236174 0.735265 0.234577 0.734885 0.2344419 0.735627 0.2333739 0.735265 0.234577 0.736606 0.232917 0.737394 0.232753 0.736814 0.233267 0.740172 0.2346529 0.740376 0.235512 0.739329 0.235108 0.738998 0.233196 0.739339 0.233521 0.738757 0.234343 0.736814 0.233267 0.737502 0.2331089 0.737405 0.234374 0.735265 0.234577 0.735935 0.233639 0.7365 0.235127 0.736658 0.236127 0.735634 0.236384 0.7365 0.235127 0.73736 0.236841 0.736707 0.237685 0.736658 0.236127 0.738501 0.2368119 0.738721 0.237639 0.738019 0.236998 0.740376 0.235512 0.740184 0.236184 0.739419 0.235623 0.965975 0.131049 0.961004 0.13662 0.953358 0.120918 0.94825 0.126877 0.933782 0.1152819 0.953358 0.120918 0.914505 0.100103 0.926445 0.09443199 0.933782 0.1152819 0.920563 0.083081 0.926445 0.09443199 0.914501 0.08544898 0.752679 0.159906 0.729863 0.137615 0.760035 0.157406 0.788092 0.176463 0.753771 0.168429 0.760035 0.157406 0.751521 0.181824 0.753771 0.168429 0.775201 0.185802 0.745099 0.206811 0.748032 0.196215 0.753126 0.209231 0.743357 0.224376 0.739661 0.223291 0.747529 0.217564 0.738848 0.228464 0.739661 0.223291 0.740798 0.229039 0.738165 0.232712 0.738848 0.228464 0.739043 0.232842 0.738998 0.233196 0.738192 0.233085 0.739043 0.232842 0.738757 0.234343 0.73827 0.234265 0.738998 0.233196 0.906771 0.08628696 0.905547 0.099204 0.900654 0.08499896 0.771522 0.146548 0.745693 0.12244 0.78114 0.137691 0.807219 0.151353 0.799023 0.161862 0.78114 0.137691 0.823086 0.157697 0.819384 0.168629 0.807219 0.151353 0.844373 0.163301 0.842441 0.17394 0.834037 0.161116 0.847893 0.163447 0.84647 0.1743209 0.844373 0.163301 0.855605 0.152595 0.861965 0.162671 0.852241 0.156064 0.870496 0.158933 0.861965 0.162671 0.86457 0.1512179 0.86457 0.1512179 0.874439 0.146404 0.870496 0.158933 0.886343 0.145047 0.880652 0.151904 0.879633 0.140493 0.900915 0.117211 0.891441 0.137163 0.889832 0.114884 0.889832 0.114884 0.893274 0.09621697 0.900915 0.117211 0.745693 0.12244 0.731337 0.10405 0.752954 0.116599 0.737658 0.129462 0.7241 0.110368 0.745693 0.12244 0.729863 0.137615 0.717783 0.1155019 0.737658 0.129462 0.710989 0.151076 0.701969 0.13084 0.721857 0.1440719 0.685942 0.168431 0.68171 0.148528 0.698589 0.1599529 0.670444 0.176328 0.668703 0.159285 0.685942 0.168431 0.855153 0.215854 0.842138 0.205112 0.867464 0.207539 0.843644 0.194129 0.845044 0.18594 0.859424 0.1862 0.854497 0.167489 0.857365 0.179578 0.84647 0.1743209 0.852241 0.156064 0.854497 0.167489 0.847893 0.163447 0.847893 0.163447 0.848327 0.15442 0.852241 0.156064 0.844696 0.143555 0.850026 0.149438 0.841762 0.14789 0.834322 0.141101 0.824921 0.129556 0.839609 0.137251 0.824921 0.129556 0.817401 0.118698 0.830842 0.1237969 0.97615 0.119545 0.962973 0.109041 0.980808 0.114449 0.962973 0.109041 0.950963 0.09662598 0.96813 0.10343 0.950963 0.09662598 0.940586 0.08491897 0.957737 0.09058499 0.944379 0.06675398 0.949343 0.07844096 0.934904 0.07297796 0.698589 0.1599529 0.691879 0.140025 0.710989 0.151076 0.70229 0.176212 0.698589 0.1599529 0.713874 0.166947 0.705163 0.184258 0.70229 0.176212 0.717225 0.175766 0.709517 0.1951979 0.705163 0.184258 0.720926 0.187757 0.718394 0.213329 0.713998 0.205264 0.7279 0.209083 0.732619 0.224193 0.727515 0.22603 0.73045 0.217252 0.734306 0.229224 0.732174 0.230753 0.732619 0.224193 0.736606 0.232917 0.735627 0.2333739 0.734306 0.229224 0.736814 0.233267 0.735935 0.233639 0.736606 0.232917 0.737405 0.234374 0.736874 0.234587 0.736814 0.233267 0.748032 0.196215 0.751521 0.181824 0.762137 0.198188 0.724491 0.199145 0.720926 0.187757 0.737623 0.196156 0.713998 0.205264 0.709517 0.1951979 0.724491 0.199145 0.705624 0.216316 0.700093 0.208896 0.713998 0.205264 0.69621 0.235885 0.687795 0.23083 0.705624 0.216316 0.728924 0.26656 0.728944 0.274401 0.708012 0.259238 0.756201 0.26694 0.744039 0.272305 0.752645 0.261807 0.78648 0.2366279 0.78092 0.247547 0.775 0.237492 0.791359 0.208522 0.790943 0.2234809 0.777468 0.215626 0.762137 0.198188 0.775201 0.185802 0.771438 0.204555 0.742083 0.2156029 0.745099 0.206811 0.747529 0.217564 0.73045 0.217252 0.7279 0.209083 0.736742 0.215736 0.722937 0.220684 0.718394 0.213329 0.73045 0.217252 0.718211 0.22837 0.71116 0.222795 0.722937 0.220684 0.714342 0.23974 0.704675 0.23843 0.718211 0.22837 0.729618 0.253338 0.728616 0.259671 0.71689 0.245249 0.748782 0.256366 0.73993 0.259311 0.745078 0.250783 0.765014 0.237781 0.762493 0.243907 0.756266 0.237959 0.764817 0.221845 0.766082 0.229696 0.755391 0.226121 0.747529 0.217564 0.753126 0.209231 0.752217 0.220768 0.970858 0.125523 0.965975 0.131049 0.958062 0.115171 0.953358 0.120918 0.939213 0.108398 0.958062 0.115171 0.939213 0.108398 0.926445 0.09443199 0.944813 0.102562 0.927528 0.07851397 0.933178 0.089742 0.920563 0.083081 0.721857 0.1440719 0.710041 0.122749 0.729863 0.137615 0.752679 0.159906 0.731019 0.161175 0.729863 0.137615 0.734009 0.170305 0.731019 0.161175 0.753771 0.168429 0.736831 0.182565 0.734009 0.170305 0.751521 0.181824 0.737623 0.196156 0.736831 0.182565 0.748032 0.196215 0.737309 0.2067739 0.737623 0.196156 0.745099 0.206811 0.736742 0.215736 0.737309 0.2067739 0.742083 0.2156029 0.736425 0.223479 0.736742 0.215736 0.739661 0.223291 0.736478 0.228467 0.736425 0.223479 0.738848 0.228464 0.738165 0.232712 0.737394 0.232753 0.738848 0.228464 0.738192 0.233085 0.737502 0.2331089 0.738165 0.232712 0.73827 0.234265 0.737841 0.234273 0.738192 0.233085 0.727001 0.284067 0.745658 0.279945 0.73914 0.286999 0.744039 0.272305 0.745658 0.279945 0.728944 0.274401 0.728924 0.26656 0.741777 0.265966 0.728944 0.274401 0.728616 0.259671 0.73993 0.259311 0.728924 0.26656 0.738516 0.253007 0.73993 0.259311 0.729618 0.253338 0.737898 0.2471089 0.738516 0.253007 0.731595 0.24617 0.737567 0.241658 0.737898 0.2471089 0.734438 0.241031 0.737797 0.238238 0.737567 0.241658 0.736457 0.237966 0.737875 0.2379299 0.737797 0.238238 0.736707 0.237685 0.738019 0.236998 0.737875 0.2379299 0.73736 0.236841 0.761905 0.274374 0.771401 0.269362 0.764147 0.277736 0.756201 0.26694 0.764365 0.26316 0.761905 0.274374 0.752645 0.261807 0.759144 0.257674 0.756201 0.26694 0.748782 0.256366 0.754128 0.253072 0.752645 0.261807 0.745078 0.250783 0.749056 0.248236 0.748782 0.256366 0.74509 0.244153 0.749056 0.248236 0.742328 0.245962 0.739898 0.24108 0.741313 0.240269 0.742328 0.245962 0.739452 0.23751 0.741313 0.240269 0.738782 0.237955 0.739299 0.237266 0.739452 0.23751 0.738721 0.237639 0.738858 0.236608 0.739299 0.237266 0.738501 0.2368119 0.849708 0.236509 0.854093 0.229136 0.862446 0.243341 0.854093 0.229136 0.864407 0.222241 0.868245 0.237964 0.864407 0.222241 0.874882 0.216437 0.876132 0.232245 0.874882 0.216437 0.886562 0.212197 0.884735 0.227169 0.903366 0.2199569 0.894464 0.223247 0.898062 0.208796 0.912679 0.217016 0.903366 0.2199569 0.909226 0.207734 0.918064 0.207076 0.919629 0.21523 0.909226 0.207734 0.886562 0.212197 0.874882 0.216437 0.880657 0.203082 0.849708 0.236509 0.843883 0.234755 0.854093 0.229136 0.918968 0.200992 0.918064 0.207076 0.908881 0.1994889 0.898062 0.208796 0.886562 0.212197 0.894639 0.199246 0.908881 0.1994889 0.909226 0.207734 0.894639 0.199246 0.874882 0.216437 0.864407 0.222241 0.867464 0.207539 0.864407 0.222241 0.854093 0.229136 0.855153 0.215854 0.858851 0.247105 0.84758 0.242211 0.862446 0.243341 0.84758 0.242211 0.84273 0.2418 0.849708 0.236509 0.801382 0.221318 0.799036 0.235543 0.790943 0.2234809 0.775 0.237492 0.77793 0.226952 0.78648 0.2366279 0.765014 0.237781 0.766082 0.229696 0.775 0.237492 0.756266 0.237959 0.756537 0.231537 0.765014 0.237781 0.749656 0.237292 0.74988 0.232762 0.756266 0.237959 0.744117 0.23594 0.744012 0.233687 0.749656 0.237292 0.739634 0.233896 0.740172 0.2346529 0.739097 0.234802 0.739857 0.233609 0.740455 0.234544 0.739634 0.233896 0.740455 0.234544 0.744012 0.233687 0.74069 0.235502 0.740172 0.2346529 0.740455 0.234544 0.740376 0.235512 0.893776 0.175861 0.887994 0.173644 0.899315 0.167725 0.887575 0.1847299 0.874263 0.186841 0.88206 0.176037 0.861764 0.192957 0.859424 0.1862 0.874263 0.186841 0.842138 0.205112 0.843644 0.194129 0.861764 0.192957 0.837529 0.204576 0.83883 0.193942 0.842138 0.205112 0.826816 0.203352 0.827707 0.19286 0.837529 0.204576 0.80018 0.206184 0.796666 0.192191 0.815507 0.203609 0.785023 0.195783 0.796666 0.192191 0.791359 0.208522 0.777468 0.215626 0.771438 0.204555 0.791359 0.208522 0.759873 0.21387 0.771438 0.204555 0.764817 0.221845 0.755391 0.226121 0.752217 0.220768 0.764817 0.221845 0.748655 0.2292 0.746508 0.226204 0.755391 0.226121 0.742232 0.230322 0.746508 0.226204 0.743293 0.231527 0.739508 0.233188 0.742232 0.230322 0.739857 0.233609 0.739634 0.233896 0.739339 0.233521 0.739857 0.233609 0.739097 0.234802 0.738914 0.234544 0.739634 0.233896 0.772821 0.257564 0.78092 0.247547 0.781358 0.262902 0.765429 0.252134 0.770831 0.245542 0.772821 0.257564 0.758978 0.248827 0.762493 0.243907 0.765429 0.252134 0.752604 0.2450349 0.754799 0.241801 0.758978 0.248827 0.74748 0.241861 0.748786 0.239754 0.752604 0.2450349 0.74256 0.239222 0.743535 0.237685 0.74748 0.241861 0.740016 0.236963 0.740451 0.236271 0.74256 0.239222 0.739795 0.236786 0.740184 0.236184 0.740016 0.236963 0.73915 0.236342 0.739299 0.235996 0.739795 0.236786 0.825717 0.239582 0.817202 0.241384 0.825673 0.233433 0.816131 0.234517 0.815172 0.2191489 0.825673 0.233433 0.815507 0.203609 0.815582 0.191707 0.826816 0.203352 0.815582 0.191707 0.816827 0.180809 0.827707 0.19286 0.830985 0.171709 0.828603 0.183198 0.819384 0.168629 0.834037 0.161116 0.830985 0.171709 0.823086 0.157697 0.836453 0.1539829 0.834037 0.161116 0.828243 0.150206 0.841762 0.14789 0.836453 0.1539829 0.834322 0.141101 0.839609 0.137251 0.844696 0.143555 0.834322 0.141101 0.848406 0.132394 0.850848 0.139405 0.839609 0.137251 0.858807 0.1384 0.850848 0.139405 0.857316 0.130001 0.868709 0.128167 0.868092 0.1341429 0.857316 0.130001 0.868709 0.128167 0.88378 0.133413 0.868092 0.1341429 0.891441 0.137163 0.886343 0.145047 0.88378 0.133413 0.902238 0.143434 0.895786 0.1517249 0.891441 0.137163 0.895786 0.1517249 0.902238 0.143434 0.906004 0.158709 0.925091 0.157034 0.918784 0.166729 0.912932 0.149626 0.918784 0.166729 0.925091 0.157034 0.93205 0.174248 0.909826 0.190997 0.911294 0.183998 0.921031 0.195095 0.887575 0.1847299 0.893776 0.175861 0.909826 0.190997 0.88206 0.176037 0.887994 0.173644 0.887575 0.1847299 0.738858 0.236608 0.73915 0.236342 0.739299 0.237266 0.739795 0.236786 0.740016 0.236963 0.739299 0.237266 0.739452 0.23751 0.740016 0.236963 0.741313 0.240269 0.741313 0.240269 0.74256 0.239222 0.74509 0.244153 0.74509 0.244153 0.74748 0.241861 0.749056 0.248236 0.749056 0.248236 0.752604 0.2450349 0.754128 0.253072 0.754128 0.253072 0.758978 0.248827 0.759144 0.257674 0.759144 0.257674 0.765429 0.252134 0.764365 0.26316 0.764365 0.26316 0.772821 0.257564 0.771401 0.269362 0.771401 0.269362 0.781358 0.262902 0.772258 0.271117 0.815507 0.203609 0.815172 0.2191489 0.80018 0.206184 0.815172 0.2191489 0.815507 0.203609 0.826286 0.217891 0.826816 0.203352 0.837529 0.204576 0.826286 0.217891 0.839496 0.219819 0.83571 0.21889 0.842138 0.205112 0.839496 0.219819 0.846806 0.22547 0.837472 0.232885 0.837472 0.232885 0.836801 0.23706 0.834145 0.232508 0.84273 0.2418 0.836801 0.23706 0.843883 0.234755 0.833505 0.2372069 0.833441 0.243393 0.830642 0.240252 0.830642 0.240252 0.830315 0.244146 0.825717 0.239582 0.825845 0.245489 0.819553 0.247828 0.825717 0.239582 0.819553 0.247828 0.806527 0.253382 0.817202 0.241384 0.796716 0.258004 0.794168 0.251932 0.806527 0.253382 0.794485 0.115503 0.800303 0.13091 0.775878 0.121228 0.78114 0.137691 0.752954 0.116599 0.775878 0.121228 0.900654 0.08499896 0.893274 0.09621697 0.894671 0.08162498 0.893274 0.09621697 0.868918 0.101782 0.88588 0.08796197 0.848457 0.09234398 0.865827 0.09068995 0.850774 0.10295 0.850774 0.10295 0.839141 0.105747 0.848457 0.09234398 0.826019 0.111853 0.822922 0.09920495 0.839141 0.105747 0.813665 0.105438 0.817401 0.118698 0.794485 0.115503 0.794485 0.115503 0.775878 0.121228 0.79385 0.06444698 0.775878 0.121228 0.757937 0.10931 0.780002 0.06436395 0.894671 0.08162498 0.88588 0.08796197 0.876445 0.04401695 0.88588 0.08796197 0.865827 0.09068995 0.866769 0.048029 0.865827 0.09068995 0.848457 0.09234398 0.852972 0.05426698 0.848457 0.09234398 0.836228 0.09452599 0.839566 0.05599695 0.827463 0.05848199 0.836228 0.09452599 0.816271 0.06140398 0.807674 0.06286996 0.813665 0.105438 0.79385 0.06444698 0.804208 0.02529597 0.807674 0.06286996 0.79184 0.02815699 0.818849 0.02026998 0.827463 0.05848199 0.811232 0.02281296 0.839566 0.05599695 0.827463 0.05848199 0.829456 0.01909697 0.852972 0.05426698 0.839566 0.05599695 0.840023 0.018314 0.852173 0.01307195 0.866769 0.048029 0.840023 0.018314 0.86264 0.008869946 0.876445 0.04401695 0.852173 0.01307195 0.780002 0.06436395 0.76624 0.06227797 0.780298 0.02789896 0.79385 0.06444698 0.780002 0.06436395 0.79184 0.02815699 0.76624 0.06227797 0.751931 0.05917495 0.767511 0.02575498 0.757937 0.10931 0.741103 0.09319698 0.76624 0.06227797 0.752954 0.116599 0.737416 0.09950995 0.757937 0.10931 0.817401 0.118698 0.813665 0.105438 0.826019 0.111853 0.816271 0.06140398 0.822922 0.09920495 0.807674 0.06286996 0.811232 0.02281296 0.816271 0.06140398 0.804208 0.02529597 0.888053 0.248836 0.898362 0.244361 0.891105 0.253828 0.880375 0.25399 0.880546 0.261034 0.874132 0.257862 0.929573 0.228177 0.933981 0.230906 0.924067 0.233415 0.922232 0.245404 0.913844 0.251535 0.915981 0.2385759 0.924067 0.233415 0.928978 0.238305 0.915981 0.2385759 0.884324 0.2426429 0.893318 0.237758 0.888053 0.248836 0.877109 0.247859 0.880375 0.25399 0.87147 0.252318 0.924192 0.223204 0.929573 0.228177 0.918388 0.227256 0.910346 0.231357 0.915981 0.2385759 0.901653 0.234526 0.918388 0.227256 0.924067 0.233415 0.910346 0.231357 0.930346 0.253933 0.923114 0.261393 0.922232 0.245404 0.928978 0.238305 0.935826 0.243848 0.922232 0.245404 0.933981 0.230906 0.940569 0.233532 0.928978 0.238305 0.893318 0.237758 0.901653 0.234526 0.898362 0.244361 0.898362 0.244361 0.906861 0.242249 0.902113 0.250034 0.888053 0.248836 0.891105 0.253828 0.880375 0.25399 0.880375 0.25399 0.877109 0.247859 0.888053 0.248836 0.868245 0.237964 0.877109 0.247859 0.862446 0.243341 0.877109 0.247859 0.868245 0.237964 0.884324 0.2426429 0.876132 0.232245 0.884735 0.227169 0.884324 0.2426429 0.884735 0.227169 0.894464 0.223247 0.893318 0.237758 0.910346 0.231357 0.901653 0.234526 0.903366 0.2199569 0.912679 0.217016 0.918388 0.227256 0.903366 0.2199569 0.919629 0.21523 0.924192 0.223204 0.912679 0.217016 0.86901 0.268435 0.869425 0.259546 0.874179 0.266193 0.869425 0.259546 0.867471 0.255287 0.874132 0.257862 0.867471 0.255287 0.858851 0.247105 0.87147 0.252318 0.368641 0.968508 0.353635 0.964912 0.364334 0.972508 0.377562 0.959761 0.361376 0.959729 0.373172 0.96397 0.358843 0.943725 0.3613 0.94509 0.372019 0.941339 0.346972 0.934965 0.352988 0.940063 0.359763 0.932652 0.352988 0.940063 0.358843 0.943725 0.365927 0.937705 0.373172 0.96397 0.358931 0.961233 0.368641 0.968508 0.3421 0.929746 0.346972 0.934965 0.354614 0.927392 0.34405 0.975453 0.359257 0.977896 0.34827 0.969998 0.395396 0.968179 0.368641 0.968508 0.389573 0.982004 0.394464 0.952244 0.370663 0.956672 0.399203 0.964183 0.399203 0.964183 0.377562 0.959761 0.395396 0.968179 0.389394 0.935147 0.372019 0.941339 0.393208 0.94038 0.393208 0.94038 0.371957 0.944902 0.394464 0.952244 0.3801 0.922988 0.359763 0.932652 0.389394 0.935147 0.464049 0.970987 0.395396 0.968179 0.459494 0.986619 0.462057 0.952153 0.394464 0.952244 0.465087 0.965278 0.465087 0.965278 0.399203 0.964183 0.464049 0.970987 0.389394 0.935147 0.393208 0.94038 0.454047 0.934422 0.393208 0.94038 0.394464 0.952244 0.4573 0.942343 0.3801 0.922988 0.389394 0.935147 0.449066 0.918666 0.506403 0.973346 0.464049 0.970987 0.502329 0.989179 0.449066 0.918666 0.454047 0.934422 0.484865 0.916772 0.364334 0.972508 0.359257 0.977896 0.34827 0.969998 0.34827 0.969998 0.353635 0.964912 0.364334 0.972508 0.358931 0.961233 0.361376 0.959729 0.373172 0.96397 0.358843 0.943725 0.372019 0.941339 0.3613 0.94509 0.346972 0.934965 0.359763 0.932652 0.352988 0.940063 0.352988 0.940063 0.365927 0.937705 0.358843 0.943725 0.353635 0.964912 0.358931 0.961233 0.368641 0.968508 0.3421 0.929746 0.354614 0.927392 0.346972 0.934965 0.364334 0.972508 0.368641 0.968508 0.389573 0.982004 0.377562 0.959761 0.370663 0.956672 0.399203 0.964183 0.373172 0.96397 0.377562 0.959761 0.395396 0.968179 0.371957 0.944902 0.372019 0.941339 0.393208 0.94038 0.370206 0.947833 0.371957 0.944902 0.394464 0.952244 0.365927 0.937705 0.359763 0.932652 0.389394 0.935147 0.389573 0.982004 0.395396 0.968179 0.459494 0.986619 0.399203 0.964183 0.394464 0.952244 0.465087 0.965278 0.395396 0.968179 0.399203 0.964183 0.464049 0.970987 0.389394 0.935147 0.454047 0.934422 0.393208 0.94038 0.394464 0.952244 0.393208 0.94038 0.462057 0.952153 0.3801 0.922988 0.449066 0.918666 0.389394 0.935147 0.464049 0.970987 0.506403 0.973346 0.459494 0.986619 0.449066 0.918666 0.484865 0.916772 0.454047 0.934422 0.716628 0.410332 0.71592 0.416105 0.723923 0.413322 0.696592 0.402246 0.693842 0.409269 0.707067 0.406422 0.689294 0.398926 0.685749 0.406017 0.696592 0.402246 0.707067 0.406422 0.705566 0.412882 0.716628 0.410332 0.699533 0.38092 0.692838 0.391835 0.704315 0.383337 0.704315 0.383337 0.699342 0.395224 0.711582 0.387376 0.711582 0.387376 0.708567 0.399962 0.718789 0.391558 0.718789 0.391558 0.717336 0.404559 0.721619 0.397777 0.685749 0.406017 0.681363 0.420106 0.693842 0.409269 0.71592 0.416105 0.705566 0.412882 0.714936 0.42458 0.693842 0.409269 0.690776 0.422461 0.705566 0.412882 0.71592 0.416105 0.714936 0.42458 0.724191 0.418679 0.681363 0.420106 0.678437 0.436567 0.690776 0.422461 0.714936 0.42458 0.703181 0.424627 0.715725 0.43966 0.690776 0.422461 0.688318 0.438325 0.703181 0.424627 0.714936 0.42458 0.715725 0.43966 0.727326 0.42303 0.738362 0.436941 0.743887 0.436099 0.736628 0.421899 0.729413 0.43779 0.733019 0.437302 0.727326 0.42303 0.736628 0.421899 0.7434 0.421589 0.739825 0.417326 0.733019 0.437302 0.738362 0.436941 0.73327 0.422792 0.692838 0.391835 0.689294 0.398926 0.699342 0.395224 0.699342 0.395224 0.696592 0.402246 0.708567 0.399962 0.708567 0.399962 0.707067 0.406422 0.717336 0.404559 0.717336 0.404559 0.716628 0.410332 0.723654 0.407964 0.716628 0.410332 0.723923 0.413322 0.71592 0.416105 0.696592 0.402246 0.707067 0.406422 0.693842 0.409269 0.689294 0.398926 0.696592 0.402246 0.685749 0.406017 0.707067 0.406422 0.716628 0.410332 0.705566 0.412882 0.699533 0.38092 0.704315 0.383337 0.692838 0.391835 0.704315 0.383337 0.711582 0.387376 0.699342 0.395224 0.711582 0.387376 0.718789 0.391558 0.708567 0.399962 0.718789 0.391558 0.721619 0.397777 0.717336 0.404559 0.685749 0.406017 0.693842 0.409269 0.681363 0.420106 0.703181 0.424627 0.705566 0.412882 0.714936 0.42458 0.693842 0.409269 0.705566 0.412882 0.690776 0.422461 0.71592 0.416105 0.724191 0.418679 0.714936 0.42458 0.681363 0.420106 0.690776 0.422461 0.678437 0.436567 0.702009 0.440114 0.703181 0.424627 0.715725 0.43966 0.690776 0.422461 0.703181 0.424627 0.688318 0.438325 0.714936 0.42458 0.727326 0.42303 0.715725 0.43966 0.738362 0.436941 0.736628 0.421899 0.743887 0.436099 0.729413 0.43779 0.727326 0.42303 0.733019 0.437302 0.743887 0.417918 0.7434 0.421589 0.739825 0.417326 0.733019 0.437302 0.73327 0.422792 0.738362 0.436941 0.692838 0.391835 0.699342 0.395224 0.689294 0.398926 0.699342 0.395224 0.708567 0.399962 0.696592 0.402246 0.708567 0.399962 0.717336 0.404559 0.707067 0.406422 0.717336 0.404559 0.723654 0.407964 0.716628 0.410332 1.95873 0.294285 1.967283 0.300317 1.968567 0.282446 1.993459 0.263785 1.986977 0.258301 1.986732 0.276344 1.986977 0.258301 1.977749 0.251351 1.97723 0.270664 1.968567 0.282446 1.959444 0.275706 1.95873 0.294285 1.946279 0.250197 1.957249 0.257082 1.952703 0.23791 1.941279 0.279774 1.949595 0.267633 1.933434 0.27228 1.930346 0.253933 1.923114 0.261393 1.939985 0.26054 1.940569 0.233532 1.935826 0.243848 1.952703 0.23791 1.986732 0.276344 1.97723 0.270664 1.977864 0.289046 1.968163 0.264174 1.959444 0.275706 1.97723 0.270664 1.939985 0.26054 1.949595 0.267633 1.946279 0.250197 1.935826 0.243848 1.930346 0.253933 1.946279 0.250197 1.945304 0.283445 1.954264 0.271495 1.941279 0.279774 1.962494 0.260393 1.957249 0.257082 1.954264 0.271495 1.971388 0.247291 1.965503 0.24388 1.962494 0.260393 1.977749 0.251351 1.971388 0.247291 1.968163 0.264174 1.954264 0.271495 1.959444 0.275706 1.962494 0.260393 1.949853 0.287377 1.959444 0.275706 1.945304 0.283445 0.95873 0.294285 0.968567 0.282446 0.967283 0.300317 0.97723 0.270664 0.986977 0.258301 0.986733 0.276344 0.968163 0.264174 0.977749 0.251351 0.97723 0.270664 0.968567 0.282446 0.95873 0.294285 0.959444 0.275706 0.946279 0.250197 0.952703 0.23791 0.957249 0.257082 0.939985 0.26054 0.949595 0.267633 0.933434 0.27228 0.933434 0.27228 0.923114 0.261393 0.939985 0.26054 0.946279 0.250197 0.935826 0.243848 0.952703 0.23791 0.968567 0.282446 0.97723 0.270664 0.977864 0.289046 0.968163 0.264174 0.97723 0.270664 0.959444 0.275706 0.939985 0.26054 0.946279 0.250197 0.949595 0.267633 0.939985 0.26054 0.930346 0.253933 0.946279 0.250197 0.949595 0.267633 0.954264 0.271495 0.941279 0.279774 0.949595 0.267633 0.957249 0.257082 0.954264 0.271495 0.957249 0.257082 0.965503 0.24388 0.962494 0.260393 0.962494 0.260393 0.971388 0.247291 0.968163 0.264174 0.954264 0.271495 0.962494 0.260393 0.959444 0.275706 0.954264 0.271495 0.959444 0.275706 0.945304 0.283445 0.384264 0.864231 0.379036 0.853364 0.389608 0.847311 0.385735 0.844128 0.379036 0.853364 0.383233 0.841743 0.372948 0.864127 0.375581 0.851919 0.376714 0.864161 0.569744 0.8825 0.565524 0.885747 0.56622 0.875357 0.56622 0.875357 0.558723 0.876298 0.564515 0.8652 0.552325 0.865201 0.556492 0.8652 0.554867 0.877693 0.554867 0.877693 0.558723 0.876298 0.562618 0.88811 0.56622 0.875357 0.577868 0.876235 0.569744 0.8825 0.591439 0.888111 0.578581 0.885618 0.59172 0.877615 0.59172 0.877615 0.577868 0.876235 0.59181 0.8652 0.564515 0.8652 0.57697 0.8652 0.56622 0.875357 0.59181 0.8652 0.606173 0.865199 0.59172 0.877615 0.59172 0.877615 0.605989 0.87819 0.591439 0.888111 0.425281 0.840271 0.425493 0.864611 0.410853 0.841617 0.39819 0.844236 0.396267 0.864341 0.389608 0.847311 0.410853 0.841617 0.411021 0.864478 0.39819 0.844236 0.42531 0.829303 0.425259 0.833073 0.410581 0.831107 0.410853 0.841617 0.410731 0.834844 0.425281 0.840271 0.591439 0.888111 0.605693 0.889182 0.591049 0.894932 0.590509 0.898663 0.591049 0.894932 0.605412 0.899859 0.578581 0.885618 0.577033 0.891682 0.569744 0.8825 0.562618 0.88811 0.565524 0.885747 0.575166 0.894945 0.575166 0.894945 0.577033 0.891682 0.590509 0.898663 0.591049 0.894932 0.577033 0.891682 0.591439 0.888111 0.385735 0.844128 0.396965 0.838243 0.389608 0.847311 0.39819 0.844236 0.396965 0.838243 0.410853 0.841617 0.410581 0.831107 0.410731 0.834844 0.395512 0.834983 0.383233 0.841743 0.395512 0.834983 0.385735 0.844128 0.605989 0.87819 0.627648 0.878501 0.605693 0.889182 0.605989 0.87819 0.606173 0.865199 0.627648 0.878501 0.425281 0.840271 0.447373 0.840615 0.425493 0.864611 0.425281 0.840271 0.425259 0.833073 0.447373 0.840615 0.425259 0.833073 0.42531 0.829303 0.447376 0.832383 0.605693 0.889182 0.627415 0.889882 0.605546 0.896225 0.605546 0.896225 0.627434 0.896471 0.605412 0.899859 0.627415 0.889882 0.627648 0.878501 0.653456 0.889337 0.627648 0.878501 0.62779 0.865199 0.65364 0.878154 0.447373 0.840615 0.473313 0.842534 0.447506 0.864814 0.447376 0.832383 0.473329 0.834453 0.447373 0.840615 0.447443 0.828746 0.473356 0.830984 0.447376 0.832383 0.627434 0.896471 0.627415 0.889882 0.653588 0.895448 0.627434 0.896471 0.653588 0.895448 0.627602 0.900825 0.384264 0.864231 0.389296 0.881246 0.378836 0.874999 0.385364 0.884357 0.382819 0.886695 0.378836 0.874999 0.378836 0.874999 0.375356 0.87638 0.376714 0.864161 0.558723 0.854103 0.565523 0.844653 0.566219 0.855043 0.566219 0.855043 0.564515 0.8652 0.558723 0.854103 0.558723 0.854103 0.556492 0.8652 0.554866 0.852708 0.554866 0.852708 0.562617 0.84229 0.558723 0.854103 0.566219 0.855043 0.569743 0.8479 0.577867 0.854165 0.577867 0.854165 0.57858 0.844781 0.59172 0.852784 0.59172 0.852784 0.59181 0.8652 0.577867 0.854165 0.577867 0.854165 0.57697 0.8652 0.566219 0.855043 0.605989 0.852209 0.606173 0.865199 0.59172 0.852784 0.59172 0.852784 0.591438 0.842288 0.605989 0.852209 0.424831 0.888943 0.410432 0.887331 0.425493 0.864611 0.397819 0.884479 0.389296 0.881246 0.396267 0.864341 0.396267 0.864341 0.411021 0.864478 0.397819 0.884479 0.424659 0.89991 0.409966 0.897834 0.424677 0.896139 0.424677 0.896139 0.410185 0.894101 0.424831 0.888943 0.605546 0.834173 0.605693 0.841217 0.591048 0.835467 0.605546 0.834173 0.591048 0.835467 0.605412 0.83054 0.57858 0.844781 0.569743 0.8479 0.577032 0.838717 0.577032 0.838717 0.565523 0.844653 0.575165 0.835454 0.575165 0.835454 0.590508 0.831736 0.577032 0.838717 0.591048 0.835467 0.591438 0.842288 0.577032 0.838717 0.385364 0.884357 0.389296 0.881246 0.396483 0.890448 0.397819 0.884479 0.410432 0.887331 0.396483 0.890448 0.396483 0.890448 0.410185 0.894101 0.394971 0.893681 0.396483 0.890448 0.394971 0.893681 0.385364 0.884357 0.605989 0.852209 0.605693 0.841217 0.627648 0.851897 0.62779 0.865199 0.606173 0.865199 0.627648 0.851897 0.424831 0.888943 0.425493 0.864611 0.446927 0.889007 0.446778 0.897238 0.424677 0.896139 0.446927 0.889007 0.446777 0.900875 0.424659 0.89991 0.446778 0.897238 0.605693 0.841217 0.605546 0.834173 0.627415 0.840516 0.605546 0.834173 0.605412 0.83054 0.627434 0.833927 0.65364 0.852244 0.627648 0.851897 0.653456 0.841061 0.653723 0.865199 0.62779 0.865199 0.65364 0.852244 0.446927 0.889007 0.447506 0.864814 0.472898 0.887567 0.446778 0.897238 0.446927 0.889007 0.472764 0.895646 0.446777 0.900875 0.446778 0.897238 0.472727 0.899116 0.653456 0.841061 0.627415 0.840516 0.653588 0.83495 0.627434 0.833927 0.627602 0.829573 0.653588 0.83495 0.1422179 0.97217 0.1432099 0.96719 0.171555 0.968892 0.04849696 0.940233 0.06917697 0.951469 0.04623895 0.946195 0.02902698 0.925221 0.032323 0.928346 0.02928197 0.927292 0.112099 0.969979 0.113414 0.964564 0.1422179 0.97217 0.032323 0.928346 0.04849696 0.940233 0.03082996 0.932126 0.087978 0.96489 0.09024 0.959089 0.112099 0.969979 0.09024 0.959089 0.087978 0.96489 0.06917697 0.951469 0.171555 0.968892 0.174835 0.967542 0.175903 0.972393 0.1422179 0.97217 0.171555 0.968892 0.146243 0.976148 0.04623895 0.946195 0.06690299 0.957447 0.04409998 0.951757 0.032323 0.928346 0.02902698 0.925221 0.03562599 0.924246 0.02477699 0.926174 0.02928197 0.927292 0.02659398 0.935761 0.02834999 0.922 0.02902698 0.925221 0.02477699 0.926174 0.112099 0.969979 0.1422179 0.97217 0.115132 0.974529 0.03082996 0.932126 0.04623895 0.946195 0.02659398 0.935761 0.087978 0.96489 0.112099 0.969979 0.08955699 0.97046 0.06690299 0.957447 0.087978 0.96489 0.06678199 0.963149 0.117519 0.960986 0.113414 0.964564 0.09436899 0.955261 0.147233 0.963386 0.1432099 0.96719 0.117519 0.960986 0.177836 0.963871 0.174835 0.967542 0.147233 0.963386 0.09436899 0.955261 0.09024 0.959089 0.07323098 0.947597 0.07323098 0.947597 0.06917697 0.951469 0.05264395 0.936216 0.05264395 0.936216 0.04849696 0.940233 0.03562599 0.924246 0.923824 0.915852 0.91449 0.912449 0.93146 0.896398 0.914424 0.889738 0.89383 0.903564 0.905492 0.879867 0.905492 0.879867 0.881963 0.886648 0.899788 0.867219 0.972659 0.869186 0.987069 0.878171 0.965687 0.885039 0.973586 0.899141 0.964335 0.90635 0.965687 0.885039 0.950507 0.915551 0.939652 0.915292 0.948679 0.896516 0.97704 0.838745 0.976906 0.843774 0.965291 0.832936 0.899788 0.867219 0.876662 0.866138 0.898855 0.850776 0.898855 0.850776 0.876747 0.837623 0.903612 0.837454 0.903612 0.837454 0.897621 0.814536 0.915983 0.826061 0.915983 0.826061 0.916793 0.807434 0.935213 0.818475 0.940279 0.802285 0.952273 0.804414 0.935213 0.818475 0.954575 0.821124 0.972325 0.814117 0.965291 0.832936 0.935043 0.885705 0.93146 0.896398 0.92191 0.88102 0.92191 0.88102 0.914424 0.889738 0.915799 0.873769 0.915799 0.873769 0.905492 0.879867 0.911542 0.864354 0.964482 0.855229 0.971691 0.854167 0.96491 0.864907 0.96491 0.864907 0.972659 0.869186 0.961163 0.874526 0.961163 0.874526 0.965687 0.885039 0.948481 0.884883 0.948481 0.884883 0.948679 0.896516 0.935043 0.885705 0.965291 0.832936 0.971691 0.854167 0.958684 0.839097 0.899788 0.867219 0.898855 0.850776 0.911542 0.864354 0.898855 0.850776 0.903612 0.837454 0.910473 0.851694 0.903612 0.837454 0.915983 0.826061 0.913836 0.842302 0.915983 0.826061 0.935213 0.818475 0.923569 0.834366 0.935213 0.818475 0.954575 0.821124 0.939566 0.828789 0.954575 0.821124 0.965291 0.832936 0.95404 0.831404 0.97826 0.849702 0.984559 0.859282 0.971691 0.854167 0.105586 0.934165 0.102787 0.941126 0.095137 0.929202 0.136149 0.945967 0.135211 0.950219 0.126669 0.942737 0.113594 0.945266 0.102787 0.941126 0.115781 0.938555 0.08008396 0.928497 0.07204198 0.920409 0.085231 0.923295 0.07204198 0.920409 0.06576198 0.908869 0.07640999 0.915074 0.095137 0.929202 0.09064197 0.935779 0.085231 0.923295 0.124868 0.948605 0.113594 0.945266 0.126669 0.942737 0.114038 0.735002 0.139209 0.751051 0.111429 0.742462 0.107826 0.749429 0.126742 0.779879 0.103536 0.754857 0.09840297 0.759329 0.1079 0.799748 0.09292495 0.761915 0.08117395 0.762386 0.08710795 0.763165 0.073529 0.806354 0.070216 0.756075 0.07558298 0.760276 0.05130696 0.794243 0.06164699 0.744079 0.06558495 0.750973 0.03338599 0.770444 0.05689895 0.72802 0.05874699 0.73657 0.02306598 0.737749 0.05629295 0.719256 0.02171897 0.719706 0.05695998 0.71044 0.05872195 0.701847 0.027031 0.683926 0.06161397 0.694218 0.06555396 0.687191 0.04163795 0.654418 0.07018995 0.681929 0.07555997 0.677524 0.06223297 0.635508 0.08116495 0.675133 0.09297597 0.675314 0.08709996 0.674228 0.09711098 0.63173 0.103508 0.682059 0.09840697 0.677674 0.118112 0.645396 0.111436 0.694107 0.107836 0.687251 0.13398 0.669538 0.115681 0.709758 0.114047 0.70147 0.1424919 0.70078 0.116204 0.718199 0.143548 0.717583 0.115604 0.726684 0.111429 0.742462 0.107826 0.749429 0.114038 0.735002 0.103536 0.754857 0.09840297 0.759329 0.107826 0.749429 0.09292495 0.761915 0.08710795 0.763165 0.09840297 0.759329 0.08117395 0.762386 0.07558298 0.760276 0.08710795 0.763165 0.070216 0.756075 0.06558495 0.750973 0.07558298 0.760276 0.06164699 0.744079 0.05874699 0.73657 0.06558495 0.750973 0.05689895 0.72802 0.05629295 0.719256 0.05874699 0.73657 0.05695998 0.71044 0.05872195 0.701847 0.05629295 0.719256 0.06161397 0.694218 0.06555396 0.687191 0.05872195 0.701847 0.07018995 0.681929 0.07555997 0.677524 0.06555396 0.687191 0.08116495 0.675133 0.08709996 0.674228 0.07555997 0.677524 0.09297597 0.675314 0.09840697 0.677674 0.08709996 0.674228 0.103508 0.682059 0.107836 0.687251 0.09840697 0.677674 0.111436 0.694107 0.114047 0.70147 0.107836 0.687251 0.115681 0.709758 0.116204 0.718199 0.114047 0.70147 0.115604 0.726684 0.114038 0.735002 0.116204 0.718199 0.139209 0.751051 0.147305 0.753857 0.133982 0.765952 0.126742 0.779879 0.133722 0.785319 0.118164 0.790762 0.096996 0.805037 0.1079 0.799748 0.1008419 0.813255 0.073529 0.806354 0.08538997 0.807675 0.07434296 0.815187 0.05130696 0.794243 0.06228697 0.802361 0.04874598 0.80219 0.03338599 0.770444 0.04175299 0.784195 0.028005 0.775999 0.02306598 0.737749 0.02713698 0.75525 0.016038 0.739806 0.02171897 0.719706 0.01447898 0.719789 0.023135 0.70154 0.027031 0.683926 0.02059698 0.680179 0.03325796 0.668465 0.04163795 0.654418 0.03750199 0.647609 0.05121797 0.644037 0.06223297 0.635508 0.06124895 0.626981 0.07352 0.630974 0.08538699 0.629404 0.08773499 0.620728 0.09711098 0.63173 0.118112 0.645396 0.107913 0.636579 0.12422 0.638764 0.13398 0.669538 0.126749 0.655829 0.141616 0.665271 0.1424919 0.70078 0.139215 0.684254 0.150856 0.699285 0.143548 0.717583 0.152001 0.717529 0.142359 0.734471 0.143548 0.717583 0.1424919 0.70078 0.152001 0.717529 0.116204 0.718199 0.115681 0.709758 0.143548 0.717583 0.142359 0.734471 0.150719 0.735847 0.139209 0.751051 0.115604 0.726684 0.142359 0.734471 0.114038 0.735002 0.02171897 0.719706 0.02306598 0.737749 0.01447898 0.719789 0.05629295 0.719256 0.05689895 0.72802 0.02171897 0.719706 0.023135 0.70154 0.01607996 0.699662 0.027031 0.683926 0.05695998 0.71044 0.023135 0.70154 0.05872195 0.701847 0.02713698 0.75525 0.03338599 0.770444 0.02075695 0.759179 0.05874699 0.73657 0.06164699 0.744079 0.02713698 0.75525 0.03325796 0.668465 0.02780497 0.663057 0.04163795 0.654418 0.06161397 0.694218 0.03325796 0.668465 0.06555396 0.687191 0.133982 0.765952 0.1416299 0.770104 0.126742 0.779879 0.111429 0.742462 0.133982 0.765952 0.107826 0.749429 0.139215 0.684254 0.13398 0.669538 0.147306 0.681322 0.114047 0.70147 0.111436 0.694107 0.139215 0.684254 0.07352 0.630974 0.07425296 0.622152 0.08538699 0.629404 0.08116495 0.675133 0.07352 0.630974 0.08709996 0.674228 0.09711098 0.63173 0.100917 0.623466 0.107913 0.636579 0.09840697 0.677674 0.09297597 0.675314 0.107913 0.636579 0.05121797 0.644037 0.04855597 0.636179 0.06223297 0.635508 0.07018995 0.681929 0.05121797 0.644037 0.07555997 0.677524 0.126749 0.655829 0.118112 0.645396 0.1336989 0.650284 0.107836 0.687251 0.103508 0.682059 0.126749 0.655829 0.118164 0.790762 0.124298 0.797313 0.1079 0.799748 0.103536 0.754857 0.118164 0.790762 0.09840297 0.759329 0.08538997 0.807675 0.096996 0.805037 0.08779799 0.816325 0.09292495 0.761915 0.096996 0.805037 0.08710795 0.763165 0.06228697 0.802361 0.073529 0.806354 0.06141698 0.810929 0.07558298 0.760276 0.08117395 0.762386 0.06228697 0.802361 0.04175299 0.784195 0.05130696 0.794243 0.03769999 0.791121 0.06558495 0.750973 0.070216 0.756075 0.04175299 0.784195 0.246757 0.956762 0.2456189 0.953607 0.255804 0.953908 0.222461 0.960896 0.222659 0.957082 0.246757 0.956762 0.200649 0.960896 0.203153 0.956758 0.222461 0.960896 0.186526 0.95709 0.190369 0.952631 0.200649 0.960896 0.168038 0.943929 0.172142 0.939939 0.171898 0.947446 0.17632 0.951036 0.179874 0.946679 0.186526 0.95709 0.270626 0.939173 0.267969 0.944595 0.267821 0.938855 0.172142 0.939939 0.176337 0.936113 0.175554 0.94309 0.179874 0.946679 0.186719 0.941324 0.190369 0.952631 0.190369 0.952631 0.196296 0.946158 0.203153 0.956758 0.203153 0.956758 0.2062979 0.949625 0.222659 0.957082 0.222659 0.957082 0.224604 0.951546 0.2456189 0.953607 0.245017 0.950079 0.255348 0.947511 0.2456189 0.953607 0.268319 0.946849 0.264665 0.947713 0.267969 0.944595 0.172142 0.939939 0.168038 0.943929 0.167897 0.937791 0.17229 0.934195 0.169238 0.936213 0.168644 0.931158 0.272519 0.934398 0.270626 0.939173 0.270995 0.93414 0.175554 0.94309 0.181347 0.937931 0.179874 0.946679 0.17632 0.951036 0.171898 0.947446 0.179874 0.946679 0.188169 0.933234 0.181347 0.937931 0.184744 0.930539 0.255414 0.943104 0.255348 0.947511 0.245635 0.945127 0.245635 0.945127 0.245017 0.950079 0.226502 0.94684 0.226502 0.94684 0.224604 0.951546 0.2083089 0.945408 0.201189 0.941837 0.196296 0.946158 0.193366 0.936483 0.2083089 0.945408 0.2062979 0.949625 0.201189 0.941837 0.264519 0.936737 0.267821 0.938855 0.261071 0.939696 0.268685 0.932646 0.270995 0.93414 0.264519 0.936737 0.193366 0.936483 0.186719 0.941324 0.188169 0.933234 0.172142 0.939939 0.169238 0.936213 0.176337 0.936113 0.17688 0.925367 0.179727 0.924792 0.177866 0.929765 0.167897 0.937791 0.164936 0.94055 0.163329 0.934917 0.177866 0.929765 0.181816 0.927833 0.179082 0.934017 0.264146 0.944457 0.255348 0.947511 0.261071 0.939696 0.264665 0.947713 0.255408 0.950455 0.264146 0.944457 0.255804 0.953908 0.255408 0.950455 0.262294 0.952165 0.255408 0.950455 0.2456189 0.953607 0.255804 0.953908 0.2456189 0.953607 0.222659 0.957082 0.246757 0.956762 0.222659 0.957082 0.203153 0.956758 0.222461 0.960896 0.203153 0.956758 0.190369 0.952631 0.200649 0.960896 0.172142 0.939939 0.168038 0.943929 0.175554 0.94309 0.190369 0.952631 0.179874 0.946679 0.186526 0.95709 0.181347 0.937931 0.176337 0.936113 0.175554 0.94309 0.196296 0.946158 0.186719 0.941324 0.190369 0.952631 0.2062979 0.949625 0.196296 0.946158 0.203153 0.956758 0.224604 0.951546 0.2062979 0.949625 0.222659 0.957082 0.245017 0.950079 0.224604 0.951546 0.2456189 0.953607 0.255348 0.947511 0.245017 0.950079 0.255408 0.950455 0.172142 0.939939 0.167897 0.937791 0.168038 0.943929 0.169238 0.936213 0.17229 0.934195 0.16648 0.932205 0.271343 0.939378 0.272949 0.93457 0.268865 0.938912 0.26554 0.944538 0.269004 0.944572 0.268865 0.938912 0.264665 0.947713 0.268319 0.946849 0.26554 0.944538 0.186719 0.941324 0.181347 0.937931 0.179874 0.946679 0.175554 0.94309 0.171898 0.947446 0.179874 0.946679 0.188169 0.933234 0.184744 0.930539 0.181347 0.937931 0.245017 0.950079 0.255348 0.947511 0.245635 0.945127 0.224604 0.951546 0.245017 0.950079 0.226502 0.94684 0.2062979 0.949625 0.224604 0.951546 0.2083089 0.945408 0.186719 0.941324 0.196296 0.946158 0.193366 0.936483 0.196296 0.946158 0.2062979 0.949625 0.201189 0.941837 0.26554 0.944538 0.268865 0.938912 0.261071 0.939696 0.271542 0.934184 0.268685 0.932646 0.268865 0.938912 0.181347 0.937931 0.186719 0.941324 0.188169 0.933234 0.169238 0.936213 0.172142 0.939939 0.17229 0.934195 0.181816 0.927833 0.179727 0.924792 0.177866 0.929765 0.167897 0.937791 0.163329 0.934917 0.164936 0.94055 0.184744 0.930539 0.181816 0.927833 0.179082 0.934017 0.255348 0.947511 0.26554 0.944538 0.255414 0.943104 0.255408 0.950455 0.264665 0.947713 0.255348 0.947511 0.255804 0.953908 0.262294 0.952165 0.255408 0.950455 0.255804 0.953908 0.255804 0.953908 0.246757 0.956762 0.246757 0.956762 0.222461 0.960896 0.246757 0.956762 0.222461 0.960896 0.200649 0.960896 0.222461 0.960896 0.200649 0.960896 0.186526 0.95709 0.200649 0.960896 0.171898 0.947446 0.168038 0.943929 0.171898 0.947446 0.186526 0.95709 0.17632 0.951036 0.186526 0.95709 0.265738 0.951425 0.262294 0.952165 0.265738 0.951425 0.176337 0.936113 0.181347 0.937931 0.176337 0.936113 0.168038 0.943929 0.164936 0.94055 0.168038 0.943929 0.167897 0.937791 0.167897 0.937791 0.172142 0.939939 0.169238 0.936213 0.16648 0.932205 0.169238 0.936213 0.168644 0.931158 0.17229 0.934195 0.168644 0.931158 0.272519 0.934398 0.272949 0.93457 0.270626 0.939173 0.270626 0.939173 0.271343 0.939378 0.267969 0.944595 0.269004 0.944572 0.268319 0.946849 0.267969 0.944595 0.267221 0.950989 0.267221 0.950989 0.265738 0.951425 0.17632 0.951036 0.171898 0.947446 0.17632 0.951036 0.181347 0.937931 0.181347 0.937931 0.179082 0.934017 0.184744 0.930539 0.188169 0.933234 0.184744 0.930539 0.245635 0.945127 0.245635 0.945127 0.255414 0.943104 0.226502 0.94684 0.226502 0.94684 0.245635 0.945127 0.2083089 0.945408 0.2083089 0.945408 0.226502 0.94684 0.193366 0.936483 0.201189 0.941837 0.193366 0.936483 0.201189 0.941837 0.2083089 0.945408 0.201189 0.941837 0.261071 0.939696 0.264519 0.936737 0.261071 0.939696 0.264519 0.936737 0.268685 0.932646 0.264519 0.936737 0.188169 0.933234 0.188169 0.933234 0.193366 0.936483 0.172142 0.939939 0.172142 0.939939 0.169238 0.936213 0.17229 0.934195 0.17229 0.934195 0.176337 0.936113 0.179727 0.924792 0.181816 0.927833 0.179727 0.924792 0.177866 0.929765 0.177866 0.929765 0.17688 0.925367 0.164936 0.94055 0.161541 0.936297 0.164936 0.94055 0.163329 0.934917 0.163329 0.934917 0.167897 0.937791 0.268319 0.946849 0.267221 0.950989 0.268319 0.946849 0.181816 0.927833 0.184744 0.930539 0.181816 0.927833 0.179082 0.934017 0.179082 0.934017 0.177866 0.929765 0.255414 0.943104 0.261071 0.939696 0.255414 0.943104 0.262294 0.952165 0.255804 0.953908 0.262294 0.952165 1.174673 0.967345 1.143043 0.967345 1.171201 0.969256 1.048585 0.94034 1.046311 0.946268 1.069125 0.951288 1.029063 0.924089 1.029029 0.927252 1.032812 0.928596 1.143043 0.967345 1.1134 0.964423 1.142206 0.972247 1.032812 0.928596 1.031115 0.932741 1.048585 0.94034 1.1134 0.964423 1.090082 0.958955 1.112191 0.970188 1.066711 0.957537 1.087755 0.964957 1.069125 0.951288 1.171201 0.969256 1.171398 0.969401 1.174673 0.967345 1.142206 0.972247 1.14458 0.972551 1.171201 0.969256 1.046311 0.946268 1.048685 0.946572 1.066711 0.957537 1.032812 0.928596 1.035186 0.9289 1.029063 0.924089 1.031115 0.932741 1.029029 0.927252 1.033489 0.933044 1.029029 0.927252 1.029063 0.924089 1.031403 0.927556 1.112191 0.970188 1.114565 0.970492 1.142206 0.972247 1.031115 0.932741 1.033489 0.933044 1.046311 0.946268 1.087755 0.964957 1.090129 0.96526 1.112191 0.970188 1.066711 0.957537 1.069085 0.95784 1.087755 0.964957 1.090082 0.958955 1.1134 0.964423 1.092456 0.959258 1.1134 0.964423 1.143043 0.967345 1.115774 0.964727 1.143043 0.967345 1.174673 0.967345 1.145418 0.967649 1.069125 0.951288 1.090082 0.958955 1.071499 0.951591 1.048585 0.94034 1.069125 0.951288 1.050959 0.940643 1.032812 0.928596 1.048585 0.94034 1.035186 0.9289 0.105586 0.934165 0.095137 0.929202 0.102787 0.941126 0.124868 0.948605 0.135211 0.950219 0.126669 0.942737 0.113594 0.945266 0.115781 0.938555 0.102787 0.941126 0.08008396 0.928497 0.085231 0.923295 0.07204198 0.920409 0.07204198 0.920409 0.07640999 0.915074 0.06576198 0.908869 0.095137 0.929202 0.085231 0.923295 0.09064197 0.935779 0.124868 0.948605 0.126669 0.942737 0.113594 0.945266 1.923824 0.915852 1.93146 0.896398 1.91449 0.912449 1.88897 0.898403 1.89383 0.903564 1.905492 0.879867 1.879064 0.879885 1.881963 0.886648 1.899788 0.867219 1.982599 0.890372 1.987069 0.878171 1.965687 0.885039 1.973586 0.899141 1.965687 0.885039 1.964335 0.90635 1.950507 0.915551 1.948679 0.896516 1.939652 0.915292 1.97704 0.838745 1.965291 0.832936 1.976906 0.843774 1.875306 0.857468 1.876662 0.866138 1.898855 0.850776 1.879343 0.830459 1.876747 0.837623 1.903612 0.837454 1.904293 0.809355 1.897621 0.814536 1.915983 0.826061 1.927395 0.803621 1.916793 0.807434 1.935213 0.818475 1.940279 0.802285 1.935213 0.818475 1.952273 0.804414 1.980766 0.825379 1.972325 0.814117 1.965291 0.832936 1.914424 0.889738 1.93146 0.896398 1.92191 0.88102 1.905492 0.879867 1.914424 0.889738 1.915799 0.873769 1.899788 0.867219 1.905492 0.879867 1.911542 0.864354 1.972659 0.869186 1.971691 0.854167 1.96491 0.864907 1.965687 0.885039 1.972659 0.869186 1.961163 0.874526 1.948679 0.896516 1.965687 0.885039 1.948481 0.884883 1.93146 0.896398 1.948679 0.896516 1.935043 0.885705 1.965291 0.832936 1.958684 0.839097 1.971691 0.854167 1.899788 0.867219 1.911542 0.864354 1.898855 0.850776 1.898855 0.850776 1.910473 0.851694 1.903612 0.837454 1.903612 0.837454 1.913836 0.842302 1.915983 0.826061 1.915983 0.826061 1.923569 0.834366 1.935213 0.818475 1.935213 0.818475 1.939566 0.828789 1.954575 0.821124 1.954575 0.821124 1.95404 0.831404 1.965291 0.832936 1.97826 0.849702 1.971691 0.854167 1.984559 0.859282 1.113606 0.734999 1.11104 0.742476 1.138863 0.750822 1.107486 0.749477 1.103235 0.754954 1.126891 0.779635 1.098129 0.759491 1.092644 0.762151 1.108551 0.799822 1.086791 0.80766 1.086791 0.763479 1.074648 0.80636 1.063255 0.802703 1.07531 0.760603 1.051908 0.794943 1.041927 0.785075 1.065199 0.751281 1.033088 0.771324 1.026455 0.75596 1.058208 0.736764 1.022105 0.738143 1.055677 0.719258 1.056361 0.710338 1.020648 0.719725 1.058175 0.701652 1.061138 0.693953 1.026314 0.683233 1.06516 0.686878 1.069862 0.681597 1.041778 0.653523 1.075285 0.677191 1.080894 0.67481 1.063198 0.635142 1.086791 0.629424 1.086791 0.673909 1.097934 0.631581 1.10857 0.636516 1.098142 0.677506 1.118539 0.645519 1.126916 0.656074 1.107504 0.687197 1.133871 0.669817 1.13889 0.684489 1.113621 0.701466 1.14202 0.700911 1.11573 0.718197 1.11514 0.726677 1.14302 0.717589 1.086791 0.71878 1.107486 0.749477 1.113606 0.734999 1.086791 0.71878 1.098129 0.759491 1.107486 0.749477 1.086791 0.71878 1.086791 0.763479 1.098129 0.759491 1.086791 0.71878 1.07531 0.760603 1.086791 0.763479 1.086791 0.71878 1.065199 0.751281 1.07531 0.760603 1.086791 0.71878 1.058208 0.736764 1.065199 0.751281 1.086791 0.71878 1.055677 0.719258 1.058208 0.736764 1.086791 0.71878 1.058175 0.701652 1.055677 0.719258 1.086791 0.71878 1.06516 0.686878 1.058175 0.701652 1.086791 0.71878 1.075285 0.677191 1.06516 0.686878 1.086791 0.71878 1.086791 0.673909 1.075285 0.677191 1.086791 0.71878 1.098142 0.677506 1.086791 0.673909 1.086791 0.71878 1.107504 0.687197 1.098142 0.677506 1.086791 0.71878 1.113621 0.701466 1.107504 0.687197 1.086791 0.71878 1.11573 0.718197 1.113621 0.701466 1.086791 0.71878 1.113606 0.734999 1.11573 0.718197 1.138863 0.750822 1.13385 0.765674 1.146915 0.753531 1.126891 0.779635 1.118582 0.790642 1.133935 0.784906 1.113795 0.807372 1.108551 0.799822 1.101349 0.813864 1.086791 0.816285 1.086791 0.80766 1.075354 0.814571 1.062805 0.81119 1.063255 0.802703 1.049618 0.803081 1.038002 0.792231 1.041927 0.785075 1.027709 0.777101 1.019985 0.760065 1.026455 0.75596 1.014925 0.740293 1.020648 0.719725 1.022156 0.701178 1.013221 0.719813 1.026314 0.683233 1.032921 0.667584 1.019781 0.679317 1.041778 0.653523 1.051797 0.643314 1.037759 0.646483 1.063198 0.635142 1.074652 0.630958 1.062636 0.626679 1.086791 0.629424 1.097934 0.631581 1.086791 0.6208 1.113776 0.628907 1.10857 0.636516 1.124804 0.639031 1.133932 0.650697 1.126916 0.656074 1.141507 0.665694 1.146939 0.681658 1.13889 0.684489 1.15032 0.69947 1.14302 0.717589 1.141875 0.73435 1.151397 0.717539 1.15032 0.69947 1.14202 0.700911 1.151397 0.717539 1.14202 0.700911 1.115221 0.70976 1.14302 0.717589 1.141875 0.73435 1.138863 0.750822 1.15017 0.735681 1.11514 0.726677 1.113606 0.734999 1.141875 0.73435 1.014925 0.740293 1.022105 0.738143 1.013221 0.719813 1.022105 0.738143 1.056305 0.728123 1.020648 0.719725 1.022156 0.701178 1.026314 0.683233 1.014943 0.699219 1.056361 0.710338 1.058175 0.701652 1.022156 0.701178 1.027709 0.777101 1.033088 0.771324 1.019985 0.760065 1.033088 0.771324 1.06118 0.744341 1.026455 0.75596 1.032921 0.667584 1.041778 0.653523 1.027461 0.661956 1.061138 0.693953 1.06516 0.686878 1.032921 0.667584 1.13385 0.765674 1.126891 0.779635 1.141497 0.769683 1.11104 0.742476 1.107486 0.749477 1.13385 0.765674 1.141507 0.665694 1.133871 0.669817 1.146939 0.681658 1.133871 0.669817 1.111054 0.694086 1.13889 0.684489 1.074652 0.630958 1.086791 0.629424 1.075305 0.622749 1.080894 0.67481 1.086791 0.673909 1.074652 0.630958 1.097934 0.631581 1.10857 0.636516 1.101432 0.622885 1.097934 0.631581 1.092703 0.675075 1.10857 0.636516 1.051797 0.643314 1.063198 0.635142 1.049398 0.635258 1.069862 0.681597 1.075285 0.677191 1.051797 0.643314 1.124804 0.639031 1.118539 0.645519 1.133932 0.650697 1.118539 0.645519 1.103215 0.681956 1.126916 0.656074 1.118582 0.790642 1.108551 0.799822 1.124876 0.797048 1.103235 0.754954 1.098129 0.759491 1.118582 0.790642 1.101349 0.813864 1.097819 0.805203 1.086791 0.816285 1.092644 0.762151 1.086791 0.763479 1.097819 0.805203 1.075354 0.814571 1.074648 0.80636 1.062805 0.81119 1.074648 0.80636 1.0809 0.762702 1.063255 0.802703 1.049618 0.803081 1.051908 0.794943 1.038002 0.792231 1.051908 0.794943 1.069894 0.7564 1.041927 0.785075 0.255408 0.950455 0.2456189 0.953607 0.255804 0.953908 0.2456189 0.953607 0.222659 0.957082 0.246757 0.956762 0.222659 0.957082 0.203153 0.956758 0.222461 0.960896 0.203153 0.956758 0.190369 0.952631 0.200649 0.960896 0.175554 0.94309 0.172142 0.939939 0.171898 0.947446 0.190369 0.952631 0.179874 0.946679 0.186526 0.95709 0.264146 0.944457 0.267969 0.944595 0.267821 0.938855 0.181347 0.937931 0.176337 0.936113 0.175554 0.94309 0.196296 0.946158 0.186719 0.941324 0.190369 0.952631 0.2062979 0.949625 0.196296 0.946158 0.203153 0.956758 0.224604 0.951546 0.2062979 0.949625 0.222659 0.957082 0.245017 0.950079 0.224604 0.951546 0.2456189 0.953607 0.245017 0.950079 0.2456189 0.953607 0.255348 0.947511 0.264146 0.944457 0.264665 0.947713 0.267969 0.944595 0.172142 0.939939 0.167897 0.937791 0.168038 0.943929 0.17229 0.934195 0.168644 0.931158 0.169238 0.936213 0.267821 0.938855 0.270626 0.939173 0.270995 0.93414 0.186719 0.941324 0.181347 0.937931 0.179874 0.946679 0.175554 0.94309 0.171898 0.947446 0.179874 0.946679 0.188169 0.933234 0.184744 0.930539 0.181347 0.937931 0.245017 0.950079 0.255348 0.947511 0.245635 0.945127 0.224604 0.951546 0.245017 0.950079 0.226502 0.94684 0.2062979 0.949625 0.224604 0.951546 0.2083089 0.945408 0.186719 0.941324 0.196296 0.946158 0.193366 0.936483 0.196296 0.946158 0.2062979 0.949625 0.201189 0.941837 0.264146 0.944457 0.267821 0.938855 0.261071 0.939696 0.267821 0.938855 0.270995 0.93414 0.264519 0.936737 0.181347 0.937931 0.186719 0.941324 0.188169 0.933234 0.172142 0.939939 0.176337 0.936113 0.169238 0.936213 0.181816 0.927833 0.179727 0.924792 0.177866 0.929765 0.167897 0.937791 0.163329 0.934917 0.164936 0.94055 0.184744 0.930539 0.181816 0.927833 0.179082 0.934017 0.264146 0.944457 0.261071 0.939696 0.255348 0.947511 0.255348 0.947511 0.255408 0.950455 0.264146 0.944457 0.255804 0.953908 0.262294 0.952165 0.255408 0.950455 0.246757 0.956762 0.2456189 0.953607 0.255804 0.953908 0.222461 0.960896 0.222659 0.957082 0.246757 0.956762 0.200649 0.960896 0.203153 0.956758 0.222461 0.960896 0.186526 0.95709 0.190369 0.952631 0.200649 0.960896 0.172142 0.939939 0.175554 0.94309 0.168038 0.943929 0.17632 0.951036 0.179874 0.946679 0.186526 0.95709 0.172142 0.939939 0.176337 0.936113 0.175554 0.94309 0.179874 0.946679 0.186719 0.941324 0.190369 0.952631 0.190369 0.952631 0.196296 0.946158 0.203153 0.956758 0.203153 0.956758 0.2062979 0.949625 0.222659 0.957082 0.222659 0.957082 0.224604 0.951546 0.2456189 0.953607 0.2456189 0.953607 0.245017 0.950079 0.255408 0.950455 0.172142 0.939939 0.168038 0.943929 0.167897 0.937791 0.168644 0.931158 0.17229 0.934195 0.16648 0.932205 0.271343 0.939378 0.268865 0.938912 0.272949 0.93457 0.271343 0.939378 0.269004 0.944572 0.268865 0.938912 0.264665 0.947713 0.26554 0.944538 0.268319 0.946849 0.175554 0.94309 0.181347 0.937931 0.179874 0.946679 0.17632 0.951036 0.171898 0.947446 0.179874 0.946679 0.188169 0.933234 0.181347 0.937931 0.184744 0.930539 0.255414 0.943104 0.255348 0.947511 0.245635 0.945127 0.245635 0.945127 0.245017 0.950079 0.226502 0.94684 0.226502 0.94684 0.224604 0.951546 0.2083089 0.945408 0.201189 0.941837 0.196296 0.946158 0.193366 0.936483 0.2083089 0.945408 0.2062979 0.949625 0.201189 0.941837 0.264519 0.936737 0.268865 0.938912 0.261071 0.939696 0.271542 0.934184 0.268865 0.938912 0.268685 0.932646 0.193366 0.936483 0.186719 0.941324 0.188169 0.933234 0.176337 0.936113 0.172142 0.939939 0.17229 0.934195 0.17688 0.925367 0.179727 0.924792 0.177866 0.929765 0.167897 0.937791 0.164936 0.94055 0.163329 0.934917 0.177866 0.929765 0.181816 0.927833 0.179082 0.934017 0.261071 0.939696 0.26554 0.944538 0.255414 0.943104 0.255408 0.950455 0.255348 0.947511 0.264665 0.947713 0.255804 0.953908 0.255408 0.950455 0.262294 0.952165 0.246757 0.956762 0.255804 0.953908 0.246757 0.956762 0.246757 0.956762 0.246757 0.956762 0.222461 0.960896 0.222461 0.960896 0.222461 0.960896 0.200649 0.960896 0.200649 0.960896 0.200649 0.960896 0.186526 0.95709 0.171898 0.947446 0.171898 0.947446 0.168038 0.943929 0.186526 0.95709 0.186526 0.95709 0.17632 0.951036 0.265738 0.951425 0.265738 0.951425 0.262294 0.952165 0.176337 0.936113 0.176337 0.936113 0.181347 0.937931 0.168038 0.943929 0.168038 0.943929 0.164936 0.94055 0.172142 0.939939 0.167897 0.937791 0.172142 0.939939 0.169238 0.936213 0.169238 0.936213 0.16648 0.932205 0.168644 0.931158 0.168644 0.931158 0.17229 0.934195 0.271343 0.939378 0.272949 0.93457 0.270626 0.939173 0.269004 0.944572 0.271343 0.939378 0.267969 0.944595 0.269004 0.944572 0.267969 0.944595 0.268319 0.946849 0.265738 0.951425 0.267221 0.950989 0.265738 0.951425 0.17632 0.951036 0.17632 0.951036 0.171898 0.947446 0.179082 0.934017 0.181347 0.937931 0.179082 0.934017 0.184744 0.930539 0.184744 0.930539 0.188169 0.933234 0.255414 0.943104 0.245635 0.945127 0.255414 0.943104 0.245635 0.945127 0.226502 0.94684 0.245635 0.945127 0.226502 0.94684 0.2083089 0.945408 0.226502 0.94684 0.193366 0.936483 0.193366 0.936483 0.201189 0.941837 0.201189 0.941837 0.201189 0.941837 0.2083089 0.945408 0.261071 0.939696 0.261071 0.939696 0.264519 0.936737 0.264519 0.936737 0.264519 0.936737 0.268685 0.932646 0.193366 0.936483 0.188169 0.933234 0.193366 0.936483 0.169238 0.936213 0.172142 0.939939 0.169238 0.936213 0.176337 0.936113 0.17229 0.934195 0.176337 0.936113 0.179727 0.924792 0.179727 0.924792 0.181816 0.927833 0.17688 0.925367 0.177866 0.929765 0.17688 0.925367 0.164936 0.94055 0.164936 0.94055 0.161541 0.936297 0.167897 0.937791 0.163329 0.934917 0.167897 0.937791 0.268319 0.946849 0.268319 0.946849 0.267221 0.950989 0.181816 0.927833 0.181816 0.927833 0.184744 0.930539 0.177866 0.929765 0.179082 0.934017 0.177866 0.929765 0.255414 0.943104 0.255414 0.943104 0.261071 0.939696 0.262294 0.952165 0.262294 0.952165 0.255804 0.953908</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#Elf01_posed_002-mesh-map-array\" count=\"42624\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"Elf01_posed_002-mesh-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#Elf01_posed_002-mesh-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"pasted__lambert2SG_001-material\" count=\"482\">\r\n          <input semantic=\"VERTEX\" source=\"#Elf01_posed_002-mesh-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#Elf01_posed_002-mesh-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#Elf01_posed_002-mesh-map\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>\r\n          <p>1 0 0 2 1 1 3 2 2 1 0 3 4 3 4 5 4 5 4 3 6 6 5 7 7 6 8 6 5 9 8 7 10 9 8 11 8 7 12 10 9 13 11 10 14 10 9 15 12 11 16 13 12 17 12 11 18 14 13 19 15 14 20 14 13 21 16 15 22 17 16 23 16 15 24 18 17 25 19 18 26 18 17 27 20 19 28 21 20 29 20 19 30 22 21 31 23 22 32 22 21 33 24 23 34 25 24 35 24 23 36 26 25 37 27 26 38 26 25 39 28 27 40 29 28 41 30 29 42 31 30 43 29 28 44 32 31 45 33 32 46 31 30 47 34 33 48 35 34 49 33 32 50 34 33 51 36 35 52 37 36 53 36 35 54 38 37 55 39 38 56 40 39 57 41 40 58 39 38 59 40 39 60 42 41 61 43 42 62 44 43 63 45 44 64 43 42 65 46 45 66 47 46 67 45 44 68 48 47 69 49 48 70 47 46 71 50 49 72 51 50 73 49 48 74 52 51 75 53 52 76 51 50 77 52 51 78 54 53 79 55 54 80 54 53 81 56 55 82 57 56 83 56 55 84 58 57 85 59 58 86 58 57 87 60 59 88 61 60 89 62 61 90 63 62 91 61 60 92 64 63 93 65 64 94 63 62 95 64 63 96 66 65 97 67 66 98 68 67 99 69 68 100 67 66 101 70 69 102 71 70 103 69 68 104 70 69 105 72 71 106 73 72 107 74 73 108 75 74 109 73 72 110 74 73 111 76 75 112 77 76 113 78 77 114 79 78 115 77 76 116 78 77 117 80 79 118 81 80 119 82 81 120 83 82 121 81 80 122 84 83 123 85 84 124 83 82 125 86 85 126 87 86 127 85 84 128 86 85 129 88 87 130 89 88 131 88 87 132 90 89 133 91 90 134 90 89 135 92 91 136 93 92 137 94 93 138 95 94 139 93 92 140 0 95 141 3 2 142 95 94 143 1 0 144 0 95 145 96 96 146 4 3 147 1 0 148 96 96 149 6 5 150 4 3 151 96 96 152 8 7 153 6 5 154 96 96 155 10 9 156 8 7 157 96 96 158 12 11 159 10 9 160 96 96 161 14 13 162 12 11 163 96 96 164 16 15 165 14 13 166 96 96 167 18 17 168 16 15 169 96 96 170 20 19 171 18 17 172 96 96 173 22 21 174 20 19 175 96 96 176 24 23 177 22 21 178 96 96 179 26 25 180 24 23 181 96 96 182 28 27 183 26 25 184 96 96 185 30 29 186 28 27 187 96 96 188 32 31 189 30 29 190 96 96 191 34 33 192 32 31 193 96 96 194 36 35 195 34 33 196 96 96 197 38 37 198 36 35 199 96 96 200 40 39 201 38 37 202 96 96 203 42 41 204 40 39 205 96 96 206 44 43 207 42 41 208 96 96 209 46 45 210 44 43 211 96 96 212 48 47 213 46 45 214 96 96 215 50 49 216 48 47 217 96 96 218 52 51 219 50 49 220 96 96 221 54 53 222 52 51 223 96 96 224 56 55 225 54 53 226 96 96 227 58 57 228 56 55 229 96 96 230 60 59 231 58 57 232 96 96 233 62 61 234 60 59 235 96 96 236 64 63 237 62 61 238 96 96 239 66 65 240 64 63 241 96 96 242 68 67 243 66 65 244 96 96 245 70 69 246 68 67 247 96 96 248 72 71 249 70 69 250 96 96 251 74 73 252 72 71 253 96 96 254 76 75 255 74 73 256 96 96 257 78 77 258 76 75 259 96 96 260 80 79 261 78 77 262 96 96 263 82 81 264 80 79 265 96 96 266 84 83 267 82 81 268 96 96 269 86 85 270 84 83 271 96 96 272 88 87 273 86 85 274 96 96 275 90 89 276 88 87 277 96 96 278 92 91 279 90 89 280 96 96 281 94 93 282 92 91 283 96 96 284 0 95 285 94 93 286 96 96 287 97 97 288 98 98 289 99 99 290 98 98 291 100 100 292 99 99 293 100 100 294 101 101 295 99 99 296 101 101 297 102 102 298 99 99 299 102 102 300 103 103 301 99 99 302 103 103 303 104 104 304 99 99 305 104 104 306 105 105 307 99 99 308 105 105 309 106 106 310 99 99 311 106 106 312 107 107 313 99 99 314 107 107 315 108 108 316 99 99 317 108 108 318 109 109 319 99 99 320 109 109 321 110 110 322 99 99 323 110 110 324 111 111 325 99 99 326 111 111 327 112 112 328 99 99 329 112 112 330 113 113 331 99 99 332 113 113 333 114 114 334 99 99 335 114 114 336 115 115 337 99 99 338 115 115 339 116 116 340 99 99 341 116 116 342 117 117 343 99 99 344 117 117 345 118 118 346 99 99 347 118 118 348 119 119 349 99 99 350 119 119 351 120 120 352 99 99 353 120 120 354 121 121 355 99 99 356 121 121 357 122 122 358 99 99 359 122 122 360 123 123 361 99 99 362 123 123 363 124 124 364 99 99 365 124 124 366 125 125 367 99 99 368 125 125 369 126 126 370 99 99 371 126 126 372 127 127 373 99 99 374 127 127 375 128 128 376 99 99 377 128 128 378 129 129 379 99 99 380 129 129 381 130 130 382 99 99 383 130 130 384 131 131 385 99 99 386 131 131 387 132 132 388 99 99 389 132 132 390 133 133 391 99 99 392 133 133 393 134 134 394 99 99 395 134 134 396 135 135 397 99 99 398 135 135 399 136 136 400 99 99 401 136 136 402 137 137 403 99 99 404 137 137 405 138 138 406 99 99 407 138 138 408 139 139 409 99 99 410 139 139 411 140 140 412 99 99 413 140 140 414 141 141 415 99 99 416 141 141 417 142 142 418 99 99 419 142 142 420 143 143 421 99 99 422 143 143 423 144 144 424 99 99 425 144 144 426 145 145 427 99 99 428 145 145 429 97 97 430 99 99 431 147 146 432 107 107 433 106 106 434 148 147 435 146 148 436 106 106 437 149 149 438 148 147 439 105 105 440 149 149 441 104 104 442 103 103 443 150 150 444 103 103 445 102 102 446 152 151 447 151 152 448 102 102 449 152 151 450 101 101 451 100 100 452 154 153 453 153 154 454 100 100 455 155 155 456 154 153 457 98 98 458 155 155 459 97 97 460 145 145 461 157 156 462 156 157 463 145 145 464 158 158 465 157 156 466 144 144 467 158 158 468 143 143 469 142 142 470 159 159 471 142 142 472 141 141 473 161 160 474 160 161 475 141 141 476 162 162 477 161 160 478 140 140 479 162 162 480 139 139 481 138 138 482 163 163 483 138 138 484 137 137 485 164 164 486 137 137 487 136 136 488 166 165 489 165 166 490 136 136 491 166 165 492 135 135 493 134 134 494 168 167 495 167 168 496 134 134 497 168 167 498 133 133 499 132 132 500 170 169 501 169 170 502 132 132 503 171 171 504 170 169 505 131 131 506 172 172 507 171 171 508 130 130 509 173 173 510 172 172 511 129 129 512 174 174 513 173 173 514 128 128 515 174 174 516 127 127 517 126 126 518 176 175 519 175 176 520 126 126 521 177 177 522 176 175 523 125 125 524 178 178 525 177 177 526 124 124 527 179 179 528 178 178 529 123 123 530 180 180 531 179 179 532 122 122 533 180 180 534 121 121 535 120 120 536 182 181 537 181 182 538 120 120 539 183 183 540 182 181 541 119 119 542 183 183 543 118 118 544 117 117 545 185 184 546 184 185 547 117 117 548 186 186 549 185 184 550 116 116 551 187 187 552 186 186 553 115 115 554 188 188 555 187 187 556 114 114 557 188 188 558 113 113 559 112 112 560 189 189 561 112 112 562 111 111 563 190 190 564 111 111 565 110 110 566 191 191 567 110 110 568 109 109 569 193 192 570 192 193 571 109 109 572 147 146 573 193 192 574 108 108 575 194 194 576 195 195 577 147 146 578 194 194 579 146 148 580 148 147 581 197 196 582 196 197 583 148 147 584 198 198 585 197 196 586 149 149 587 199 199 588 198 198 589 150 150 590 200 200 591 199 199 592 151 152 593 201 201 594 200 200 595 152 151 596 202 202 597 201 201 598 153 154 599 202 202 600 154 153 601 155 155 602 203 203 603 155 155 604 156 157 605 205 204 606 204 205 607 156 157 608 205 204 609 157 156 610 158 158 611 207 206 612 206 207 613 158 158 614 208 208 615 207 206 616 159 159 617 209 209 618 208 208 619 160 161 620 209 209 621 161 160 622 162 162 623 211 210 624 210 211 625 162 162 626 212 212 627 211 210 628 163 163 629 212 212 630 164 164 631 165 166 632 213 213 633 165 166 634 166 165 635 214 214 636 166 165 637 167 168 638 215 215 639 167 168 640 168 167 641 216 216 642 168 167 643 169 170 644 217 217 645 169 170 646 170 169 647 218 218 648 170 169 649 171 171 650 220 219 651 219 220 652 171 171 653 220 219 654 172 172 655 173 173 656 221 221 657 173 173 658 174 174 659 222 222 660 174 174 661 175 176 662 224 223 663 223 224 664 175 176 665 224 223 666 176 175 667 177 177 668 226 225 669 225 226 670 177 177 671 226 225 672 178 178 673 179 179 674 227 227 675 179 179 676 180 180 677 228 228 678 180 180 679 181 182 680 229 229 681 181 182 682 182 181 683 230 230 684 182 181 685 183 183 686 231 231 687 183 183 688 184 185 689 232 232 690 184 185 691 185 184 692 234 233 693 233 234 694 185 184 695 235 235 696 234 233 697 186 186 698 236 236 699 235 235 700 187 187 701 237 237 702 236 236 703 188 188 704 238 238 705 237 237 706 189 189 707 239 239 708 238 238 709 190 190 710 240 240 711 239 239 712 191 191 713 241 241 714 240 240 715 192 193 716 241 241 717 193 192 718 147 146 719 17 16 720 19 18 721 195 195 722 15 14 723 17 16 724 194 194 725 13 12 726 15 14 727 196 197 728 11 10 729 13 12 730 197 196 731 9 8 732 11 10 733 198 198 734 7 6 735 9 8 736 199 199 737 5 4 738 7 6 739 200 200 740 2 1 741 5 4 742 201 201 743 3 2 744 2 1 745 202 202 746 3 2 747 203 203 748 204 205 749 93 92 750 95 94 751 204 205 752 93 92 753 205 204 754 206 207 755 89 88 756 91 90 757 206 207 758 87 86 759 89 88 760 207 206 761 85 84 762 87 86 763 208 208 764 85 84 765 209 209 766 210 211 767 81 80 768 83 82 769 210 211 770 81 80 771 211 210 772 212 212 773 79 78 774 212 212 775 213 213 776 75 74 777 77 76 778 213 213 779 73 72 780 75 74 781 214 214 782 71 70 783 73 72 784 215 215 785 69 68 786 71 70 787 216 216 788 67 66 789 69 68 790 217 217 791 65 64 792 67 66 793 218 218 794 63 62 795 65 64 796 219 220 797 63 62 798 220 219 799 221 221 800 61 60 801 221 221 802 222 222 803 59 58 804 222 222 805 223 224 806 55 54 807 57 56 808 223 224 809 55 54 810 224 223 811 225 226 812 53 52 813 225 226 814 226 225 815 49 48 816 51 50 817 226 225 818 47 46 819 49 48 820 227 227 821 45 44 822 47 46 823 228 228 824 43 42 825 45 44 826 229 229 827 41 40 828 43 42 829 230 230 830 41 40 831 231 231 832 232 232 833 37 36 834 39 38 835 232 232 836 35 34 837 37 36 838 233 234 839 33 32 840 35 34 841 234 233 842 31 30 843 33 32 844 235 235 845 29 28 846 31 30 847 236 236 848 27 26 849 29 28 850 237 237 851 25 24 852 27 26 853 238 238 854 25 24 855 239 239 856 240 240 857 21 20 858 23 22 859 240 240 860 19 18 861 21 20 862 241 241 863 243 242 864 244 242 865 245 242 866 0 95 22548 1 0 22549 3 2 22550 2 1 22551 1 0 22552 5 4 22553 5 4 22554 4 3 22555 7 6 22556 7 6 22557 6 5 22558 9 8 22559 9 8 22560 8 7 22561 11 10 22562 11 10 22563 10 9 22564 13 12 22565 13 12 22566 12 11 22567 15 14 22568 15 14 22569 14 13 22570 17 16 22571 17 16 22572 16 15 22573 19 18 22574 19 18 22575 18 17 22576 21 20 22577 21 20 22578 20 19 22579 23 22 22580 23 22 22581 22 21 22582 25 24 22583 25 24 22584 24 23 22585 27 26 22586 27 26 22587 26 25 22588 29 28 22589 28 27 22590 30 29 22591 29 28 22592 30 29 22593 32 31 22594 31 30 22595 32 31 22596 34 33 22597 33 32 22598 35 34 22599 34 33 22600 37 36 22601 37 36 22602 36 35 22603 39 38 22604 38 37 22605 40 39 22606 39 38 22607 41 40 22608 40 39 22609 43 42 22610 42 41 22611 44 43 22612 43 42 22613 44 43 22614 46 45 22615 45 44 22616 46 45 22617 48 47 22618 47 46 22619 48 47 22620 50 49 22621 49 48 22622 50 49 22623 52 51 22624 51 50 22625 53 52 22626 52 51 22627 55 54 22628 55 54 22629 54 53 22630 57 56 22631 57 56 22632 56 55 22633 59 58 22634 59 58 22635 58 57 22636 61 60 22637 60 59 22638 62 61 22639 61 60 22640 62 61 22641 64 63 22642 63 62 22643 65 64 22644 64 63 22645 67 66 22646 66 65 22647 68 67 22648 67 66 22649 68 67 22650 70 69 22651 69 68 22652 71 70 22653 70 69 22654 73 72 22655 72 71 22656 74 73 22657 73 72 22658 75 74 22659 74 73 22660 77 76 22661 76 75 22662 78 77 22663 77 76 22664 79 78 22665 78 77 22666 81 80 22667 80 79 22668 82 81 22669 81 80 22670 82 81 22671 84 83 22672 83 82 22673 84 83 22674 86 85 22675 85 84 22676 87 86 22677 86 85 22678 89 88 22679 89 88 22680 88 87 22681 91 90 22682 91 90 22683 90 89 22684 93 92 22685 92 91 22686 94 93 22687 93 92 22688 94 93 22689 0 95 22690 95 94 22691 146 148 22692 147 146 22693 106 106 22694 105 105 22695 148 147 22696 106 106 22697 104 104 22698 149 149 22699 105 105 22700 150 150 22701 149 149 22702 103 103 22703 151 152 22704 150 150 22705 102 102 22706 101 101 22707 152 151 22708 102 102 22709 153 154 22710 152 151 22711 100 100 22712 98 98 22713 154 153 22714 100 100 22715 97 97 22716 155 155 22717 98 98 22718 156 157 22719 155 155 22720 145 145 22721 144 144 22722 157 156 22723 145 145 22724 143 143 22725 158 158 22726 144 144 22727 159 159 22728 158 158 22729 142 142 22730 160 161 22731 159 159 22732 141 141 22733 140 140 22734 161 160 22735 141 141 22736 139 139 22737 162 162 22738 140 140 22739 163 163 22740 162 162 22741 138 138 22742 164 164 22743 163 163 22744 137 137 22745 165 166 22746 164 164 22747 136 136 22748 135 135 22749 166 165 22750 136 136 22751 167 168 22752 166 165 22753 134 134 22754 133 133 22755 168 167 22756 134 134 22757 169 170 22758 168 167 22759 132 132 22760 131 131 22761 170 169 22762 132 132 22763 130 130 22764 171 171 22765 131 131 22766 129 129 22767 172 172 22768 130 130 22769 128 128 22770 173 173 22771 129 129 22772 127 127 22773 174 174 22774 128 128 22775 175 176 22776 174 174 22777 126 126 22778 125 125 22779 176 175 22780 126 126 22781 124 124 22782 177 177 22783 125 125 22784 123 123 22785 178 178 22786 124 124 22787 122 122 22788 179 179 22789 123 123 22790 121 121 22791 180 180 22792 122 122 22793 181 182 22794 180 180 22795 120 120 22796 119 119 22797 182 181 22798 120 120 22799 118 118 22800 183 183 22801 119 119 22802 184 185 22803 183 183 22804 117 117 22805 116 116 22806 185 184 22807 117 117 22808 115 115 22809 186 186 22810 116 116 22811 114 114 22812 187 187 22813 115 115 22814 113 113 22815 188 188 22816 114 114 22817 189 189 22818 188 188 22819 112 112 22820 190 190 22821 189 189 22822 111 111 22823 191 191 22824 190 190 22825 110 110 22826 192 193 22827 191 191 22828 109 109 22829 108 108 22830 193 192 22831 109 109 22832 107 107 22833 147 146 22834 108 108 22835 146 148 22836 194 194 22837 147 146 22838 196 197 22839 194 194 22840 148 147 22841 149 149 22842 197 196 22843 148 147 22844 150 150 22845 198 198 22846 149 149 22847 151 152 22848 199 199 22849 150 150 22850 152 151 22851 200 200 22852 151 152 22853 153 154 22854 201 201 22855 152 151 22856 154 153 22857 202 202 22858 153 154 22859 203 203 22860 202 202 22861 155 155 22862 204 205 22863 203 203 22864 156 157 22865 157 156 22866 205 204 22867 156 157 22868 206 207 22869 205 204 22870 158 158 22871 159 159 22872 207 206 22873 158 158 22874 160 161 22875 208 208 22876 159 159 22877 161 160 22878 209 209 22879 160 161 22880 210 211 22881 209 209 22882 162 162 22883 163 163 22884 211 210 22885 162 162 22886 164 164 22887 212 212 22888 163 163 22889 213 213 22890 212 212 22891 165 166 22892 214 214 22893 213 213 22894 166 165 22895 215 215 22896 214 214 22897 167 168 22898 216 216 22899 215 215 22900 168 167 22901 217 217 22902 216 216 22903 169 170 22904 218 218 22905 217 217 22906 170 169 22907 219 220 22908 218 218 22909 171 171 22910 172 172 22911 220 219 22912 171 171 22913 221 221 22914 220 219 22915 173 173 22916 222 222 22917 221 221 22918 174 174 22919 223 224 22920 222 222 22921 175 176 22922 176 175 22923 224 223 22924 175 176 22925 225 226 22926 224 223 22927 177 177 22928 178 178 22929 226 225 22930 177 177 22931 227 227 22932 226 225 22933 179 179 22934 228 228 22935 227 227 22936 180 180 22937 229 229 22938 228 228 22939 181 182 22940 230 230 22941 229 229 22942 182 181 22943 231 231 22944 230 230 22945 183 183 22946 232 232 22947 231 231 22948 184 185 22949 233 234 22950 232 232 22951 185 184 22952 186 186 22953 234 233 22954 185 184 22955 187 187 22956 235 235 22957 186 186 22958 188 188 22959 236 236 22960 187 187 22961 189 189 22962 237 237 22963 188 188 22964 190 190 22965 238 238 22966 189 189 22967 191 191 22968 239 239 22969 190 190 22970 192 193 22971 240 240 22972 191 191 22973 193 192 22974 241 241 22975 192 193 22976 195 195 22977 241 241 22978 147 146 22979 194 194 22980 17 16 22981 195 195 22982 196 197 22983 15 14 22984 194 194 22985 197 196 22986 13 12 22987 196 197 22988 198 198 22989 11 10 22990 197 196 22991 199 199 22992 9 8 22993 198 198 22994 200 200 22995 7 6 22996 199 199 22997 201 201 22998 5 4 22999 200 200 23000 202 202 23001 2 1 23002 201 201 23003 203 203 23004 3 2 23005 202 202 23006 95 94 23007 3 2 23008 204 205 23009 205 204 23010 93 92 23011 204 205 23012 91 90 23013 93 92 23014 206 207 23015 207 206 23016 89 88 23017 206 207 23018 208 208 23019 87 86 23020 207 206 23021 209 209 23022 85 84 23023 208 208 23024 83 82 23025 85 84 23026 210 211 23027 211 210 23028 81 80 23029 210 211 23030 79 78 23031 81 80 23032 212 212 23033 77 76 23034 79 78 23035 213 213 23036 214 214 23037 75 74 23038 213 213 23039 215 215 23040 73 72 23041 214 214 23042 216 216 23043 71 70 23044 215 215 23045 217 217 23046 69 68 23047 216 216 23048 218 218 23049 67 66 23050 217 217 23051 219 220 23052 65 64 23053 218 218 23054 220 219 23055 63 62 23056 219 220 23057 61 60 23058 63 62 23059 221 221 23060 59 58 23061 61 60 23062 222 222 23063 57 56 23064 59 58 23065 223 224 23066 224 223 23067 55 54 23068 223 224 23069 53 52 23070 55 54 23071 225 226 23072 51 50 23073 53 52 23074 226 225 23075 227 227 23076 49 48 23077 226 225 23078 228 228 23079 47 46 23080 227 227 23081 229 229 23082 45 44 23083 228 228 23084 230 230 23085 43 42 23086 229 229 23087 231 231 23088 41 40 23089 230 230 23090 39 38 23091 41 40 23092 232 232 23093 233 234 23094 37 36 23095 232 232 23096 234 233 23097 35 34 23098 233 234 23099 235 235 23100 33 32 23101 234 233 23102 236 236 23103 31 30 23104 235 235 23105 237 237 23106 29 28 23107 236 236 23108 238 238 23109 27 26 23110 237 237 23111 239 239 23112 25 24 23113 238 238 23114 23 22 23115 25 24 23116 240 240 23117 241 241 23118 21 20 23119 240 240 23120 195 195 23121 19 18 23122 241 241 23123 242 7568 23124 243 7568 23125 245 7568 23126</p>\r\n        </polylist>\r\n        <polylist material=\"lambert22SG_001-material\" count=\"8826\">\r\n          <input semantic=\"VERTEX\" source=\"#Elf01_posed_002-mesh-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#Elf01_posed_002-mesh-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#Elf01_posed_002-mesh-map\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>\r\n          <p>246 243 867 247 244 868 248 245 869 250 246 870 251 247 871 252 248 872 250 246 873 253 249 874 254 250 875 257 251 876 258 252 877 259 253 878 261 254 879 262 255 880 263 256 881 264 257 882 265 258 883 266 259 884 268 260 885 269 261 886 270 262 887 273 263 888 274 264 889 275 265 890 277 266 891 278 267 892 279 268 893 280 269 894 281 270 895 282 271 896 284 272 897 285 273 898 286 274 899 289 275 900 290 276 901 291 277 902 276 278 903 252 248 904 251 247 905 281 270 906 280 269 907 248 245 908 293 279 909 294 280 910 295 281 911 280 269 912 283 282 913 297 283 914 280 269 915 296 284 916 298 285 917 248 245 918 298 285 919 299 286 920 301 287 921 302 288 922 303 289 923 304 290 924 305 291 925 251 247 926 277 266 927 251 247 928 305 291 929 278 267 930 277 266 931 306 292 932 309 293 933 310 294 934 311 295 935 312 296 936 309 293 937 308 297 938 297 283 939 283 282 940 315 298 941 307 299 942 316 300 943 317 301 944 318 302 945 319 303 946 320 304 947 278 267 948 317 301 949 322 305 950 283 282 951 282 271 952 323 306 953 279 268 954 322 305 955 325 307 956 326 308 957 327 309 958 328 310 959 309 293 960 317 301 961 316 300 962 331 311 963 332 312 964 333 313 965 317 301 966 309 293 967 312 296 968 315 298 969 323 306 970 334 314 971 322 305 972 312 296 973 313 315 974 336 316 975 267 317 976 337 318 977 339 319 978 340 320 979 341 321 980 304 290 981 250 246 982 301 287 983 250 246 984 255 322 985 302 288 986 299 286 987 343 323 988 344 324 989 252 248 990 345 325 991 346 326 992 247 244 993 246 243 994 347 327 995 253 249 996 346 326 997 349 328 998 276 278 999 279 268 1000 350 329 1001 324 330 1002 352 331 1003 350 329 1004 281 270 1005 353 332 1006 354 333 1007 276 278 1008 351 334 1009 345 325 1010 353 332 1011 281 270 1012 247 244 1013 321 335 1014 320 304 1015 355 336 1016 327 309 1017 357 337 1018 358 338 1019 310 294 1020 359 339 1021 360 340 1022 321 335 1023 356 341 1024 362 342 1025 296 284 1026 297 283 1027 364 343 1028 296 284 1029 363 344 1030 258 252 1031 298 285 1032 258 252 1033 365 345 1034 299 286 1035 365 345 1036 366 346 1037 300 347 1038 303 289 1039 367 348 1040 304 290 1041 300 347 1042 338 349 1043 337 318 1044 290 276 1045 305 291 1046 306 292 1047 305 291 1048 290 276 1049 307 299 1050 306 292 1051 368 350 1052 316 300 1053 307 299 1054 318 302 1055 297 283 1056 314 351 1057 328 310 1058 315 298 1059 335 352 1060 326 308 1061 326 308 1062 335 352 1063 369 353 1064 370 354 1065 357 337 1066 327 309 1067 371 355 1068 372 356 1069 373 357 1070 361 358 1071 362 342 1072 359 339 1073 329 359 1074 361 358 1075 310 294 1076 316 300 1077 321 335 1078 361 358 1079 375 360 1080 295 281 1081 376 361 1082 377 362 1083 259 253 1084 378 363 1085 379 364 1086 340 320 1087 339 319 1088 381 365 1089 260 366 1090 263 256 1091 383 367 1092 264 257 1093 384 368 1094 383 367 1095 385 369 1096 265 258 1097 288 370 1098 386 371 1099 387 372 1100 388 373 1101 274 264 1102 273 263 1103 391 374 1104 392 375 1105 393 376 1106 285 273 1107 284 272 1108 395 377 1109 380 378 1110 339 319 1111 396 379 1112 398 380 1113 260 366 1114 381 365 1115 399 381 1116 256 382 1117 259 253 1118 400 383 1119 401 384 1120 291 277 1121 273 263 1122 387 372 1123 389 385 1124 292 386 1125 295 281 1126 375 360 1127 404 387 1128 405 388 1129 406 389 1130 408 390 1131 383 367 1132 384 368 1133 410 391 1134 411 392 1135 412 393 1136 401 384 1137 400 383 1138 413 394 1139 416 395 1140 417 396 1141 418 397 1142 420 398 1143 389 385 1144 387 372 1145 422 399 1146 423 400 1147 424 401 1148 397 402 1149 381 365 1150 425 403 1151 381 365 1152 382 404 1153 427 405 1154 379 364 1155 429 406 1156 430 407 1157 407 408 1158 384 368 1159 431 409 1160 399 381 1161 433 410 1162 434 411 1163 400 383 1164 435 412 1165 436 413 1166 385 369 1167 383 367 1168 437 414 1169 383 367 1170 408 390 1171 439 415 1172 402 416 1173 375 360 1174 440 417 1175 387 372 1176 442 418 1177 443 419 1178 386 371 1179 444 420 1180 442 418 1181 401 384 1182 414 421 1183 445 422 1184 376 361 1185 394 423 1186 447 424 1187 392 375 1188 449 425 1189 450 426 1190 389 385 1191 451 427 1192 452 428 1193 389 385 1194 420 398 1195 453 429 1196 455 430 1197 456 431 1198 457 432 1199 459 433 1200 460 434 1201 461 435 1202 462 436 1203 463 437 1204 464 438 1205 466 439 1206 462 436 1207 465 440 1208 469 441 1209 470 442 1210 471 443 1211 468 444 1212 471 443 1213 473 445 1214 474 446 1215 472 447 1216 473 445 1217 476 448 1218 477 449 1219 478 450 1220 480 451 1221 476 448 1222 481 452 1223 482 453 1224 483 454 1225 470 442 1226 485 455 1227 486 456 1228 487 457 1229 488 458 1230 486 456 1231 485 455 1232 472 447 1233 490 459 1234 491 460 1235 492 461 1236 490 459 1237 472 447 1238 493 462 1239 494 463 1240 489 464 1241 495 465 1242 493 462 1243 485 455 1244 469 441 1245 496 466 1246 497 467 1247 496 466 1248 469 441 1249 468 444 1250 483 454 1251 331 311 1252 330 468 1253 374 469 1254 498 470 1255 371 355 1256 475 471 1257 473 445 1258 499 472 1259 498 470 1260 330 468 1261 333 313 1262 501 473 1263 502 474 1264 503 475 1265 501 473 1266 504 476 1267 505 477 1268 333 313 1269 332 312 1270 372 356 1271 374 469 1272 373 357 1273 500 478 1274 498 470 1275 333 313 1276 371 355 1277 499 472 1278 498 470 1279 374 469 1280 507 479 1281 508 480 1282 448 481 1283 509 482 1284 510 483 1285 451 427 1286 451 427 1287 510 483 1288 511 484 1289 512 485 1290 450 426 1291 449 425 1292 440 417 1293 514 486 1294 515 487 1295 516 488 1296 517 489 1297 446 490 1298 518 491 1299 442 418 1300 444 420 1301 443 419 1302 442 418 1303 518 491 1304 521 492 1305 434 411 1306 433 410 1307 437 414 1308 439 415 1309 524 493 1310 438 494 1311 437 414 1312 523 495 1313 527 496 1314 436 413 1315 435 412 1316 528 497 1317 430 407 1318 429 406 1319 530 498 1320 425 403 1321 427 405 1322 426 499 1323 425 403 1324 530 498 1325 533 500 1326 534 501 1327 432 502 1328 386 371 1329 288 370 1330 291 277 1331 444 420 1332 386 371 1333 401 384 1334 446 490 1335 517 489 1336 519 503 1337 464 438 1338 463 437 1339 458 504 1340 415 505 1341 418 397 1342 536 506 1343 537 507 1344 538 508 1345 457 432 1346 515 487 1347 539 509 1348 540 510 1349 378 363 1350 402 416 1351 441 511 1352 259 253 1353 292 386 1354 402 416 1355 259 253 1356 258 252 1357 293 279 1358 288 370 1359 273 263 1360 272 512 1361 293 279 1362 258 252 1363 363 344 1364 541 513 1365 294 280 1366 363 344 1367 318 302 1368 269 261 1369 268 260 1370 368 350 1371 272 512 1372 269 261 1373 289 275 1374 272 512 1375 368 350 1376 295 281 1377 294 280 1378 286 274 1379 286 274 1380 294 280 1381 541 513 1382 275 265 1383 270 262 1384 269 261 1385 275 265 1386 274 264 1387 391 374 1388 270 262 1389 391 374 1390 390 514 1391 394 423 1392 395 377 1393 542 515 1394 447 424 1395 542 515 1396 543 516 1397 422 399 1398 544 517 1399 545 518 1400 513 519 1401 449 425 1402 452 428 1403 388 373 1404 452 428 1405 449 425 1406 274 264 1407 388 373 1408 392 375 1409 295 281 1410 285 273 1411 394 423 1412 258 252 1413 257 251 1414 342 520 1415 257 251 1416 256 382 1417 339 319 1418 291 277 1419 290 276 1420 266 259 1421 267 317 1422 266 259 1423 290 276 1424 338 349 1425 367 348 1426 546 521 1427 547 522 1428 261 254 1429 260 366 1430 365 345 1431 342 520 1432 548 523 1433 377 362 1434 549 524 1435 433 410 1436 549 524 1437 550 525 1438 522 526 1439 410 391 1440 551 527 1441 552 528 1442 435 412 1443 438 494 1444 525 529 1445 385 369 1446 438 494 1447 435 412 1448 256 382 1449 399 381 1450 396 379 1451 385 369 1452 400 383 1453 291 277 1454 264 257 1455 267 317 1456 547 522 1457 267 317 1458 336 316 1459 261 254 1460 262 255 1461 261 254 1462 336 316 1463 553 530 1464 548 523 1465 342 520 1466 554 531 1467 553 530 1468 341 321 1469 380 378 1470 555 532 1471 429 406 1472 555 532 1473 556 533 1474 529 534 1475 403 535 1476 406 389 1477 558 536 1478 431 409 1479 426 499 1480 532 537 1481 384 368 1482 397 402 1483 426 499 1484 264 257 1485 398 380 1486 397 402 1487 340 320 1488 379 364 1489 428 538 1490 560 539 1491 409 540 1492 412 393 1493 559 541 1494 412 393 1495 411 392 1496 562 542 1497 561 543 1498 411 392 1499 563 544 1500 562 542 1501 552 528 1502 565 545 1503 566 546 1504 567 547 1505 565 545 1506 564 548 1507 569 549 1508 571 550 1509 559 541 1510 561 543 1511 572 551 1512 560 539 1513 559 541 1514 573 552 1515 574 553 1516 575 554 1517 575 554 1518 578 555 1519 579 556 1520 580 557 1521 581 558 1522 562 542 1523 581 558 1524 570 559 1525 561 543 1526 583 560 1527 584 561 1528 585 562 1529 583 560 1530 582 563 1531 587 564 1532 589 565 1533 405 388 1534 404 387 1535 588 566 1536 404 387 1537 403 535 1538 591 567 1539 590 568 1540 403 535 1541 592 569 1542 591 567 1543 557 570 1544 594 571 1545 588 566 1546 590 568 1547 595 572 1548 589 565 1549 588 566 1550 596 573 1551 597 574 1552 598 575 1553 599 576 1554 598 575 1555 597 574 1556 600 577 1557 601 578 1558 591 567 1559 601 578 1560 593 579 1561 590 568 1562 467 580 1563 465 440 1564 417 396 1565 457 432 1566 456 431 1567 602 581 1568 457 432 1569 603 582 1570 605 583 1571 460 434 1572 535 584 1573 536 506 1574 418 397 1575 464 438 1576 461 435 1577 465 440 1578 464 438 1579 418 397 1580 607 585 1581 608 586 1582 609 587 1583 610 588 1584 606 589 1585 609 587 1586 613 590 1587 421 591 1588 424 401 1589 612 592 1590 424 401 1591 423 400 1592 615 593 1593 614 594 1594 423 400 1595 616 595 1596 615 593 1597 545 518 1598 618 596 1599 612 592 1600 614 594 1601 619 597 1602 613 590 1603 612 592 1604 620 598 1605 606 589 1606 610 588 1607 621 599 1608 606 589 1609 622 600 1610 623 601 1611 624 602 1612 615 593 1613 624 602 1614 617 603 1615 614 594 1616 625 604 1617 626 605 1618 627 606 1619 627 606 1620 626 605 1621 630 607 1622 631 608 1623 632 609 1624 629 610 1625 634 611 1626 632 609 1627 631 608 1628 635 612 1629 636 613 1630 637 614 1631 639 615 1632 640 616 1633 635 612 1634 641 617 1635 642 618 1636 643 619 1637 642 618 1638 641 617 1639 646 620 1640 647 621 1641 648 622 1642 645 623 1643 650 624 1644 648 622 1645 647 621 1646 651 625 1647 652 626 1648 653 627 1649 654 628 1650 655 629 1651 656 630 1652 657 631 1653 658 632 1654 659 633 1655 661 634 1656 662 635 1657 657 631 1658 663 636 1659 664 637 1660 665 638 1661 664 637 1662 663 636 1663 668 639 1664 670 640 1665 667 641 1666 668 639 1667 672 642 1668 670 640 1669 669 643 1670 673 644 1671 674 645 1672 675 646 1673 677 647 1674 678 648 1675 673 644 1676 679 649 1677 680 650 1678 681 651 1679 683 652 1680 680 650 1681 679 649 1682 686 653 1683 683 652 1684 684 654 1685 685 655 1686 687 656 1687 688 657 1688 689 658 1689 690 659 1690 691 660 1691 571 550 1692 692 661 1693 693 662 1694 692 661 1695 571 550 1696 570 559 1697 695 663 1698 694 664 1699 570 559 1700 696 665 1701 695 663 1702 581 558 1703 697 666 1704 698 667 1705 699 668 1706 458 504 1707 700 669 1708 701 670 1709 700 669 1710 458 504 1711 463 437 1712 462 436 1713 703 671 1714 702 672 1715 704 673 1716 703 671 1717 462 436 1718 705 674 1719 706 675 1720 707 676 1721 708 677 1722 709 678 1723 710 679 1724 712 680 1725 713 681 1726 714 682 1727 618 596 1728 715 683 1729 716 684 1730 715 683 1731 618 596 1732 617 603 1733 718 685 1734 717 686 1735 617 603 1736 719 687 1737 718 685 1738 624 602 1739 720 688 1740 721 689 1741 722 690 1742 724 691 1743 725 692 1744 726 693 1745 728 694 1746 729 695 1747 724 691 1748 594 571 1749 730 696 1750 731 697 1751 730 696 1752 594 571 1753 593 579 1754 733 698 1755 732 699 1756 593 579 1757 734 700 1758 733 698 1759 601 578 1760 681 651 1761 680 650 1762 735 701 1763 678 648 1764 736 702 1765 737 703 1766 738 704 1767 674 645 1768 673 644 1769 736 702 1770 528 497 1771 529 534 1772 735 701 1773 530 498 1774 531 705 1775 532 537 1776 530 498 1777 680 650 1778 533 500 1779 532 537 1780 683 652 1781 739 706 1782 533 500 1783 686 653 1784 556 533 1785 738 704 1786 737 703 1787 664 637 1788 740 707 1789 665 638 1790 662 635 1791 741 708 1792 742 709 1793 743 710 1794 658 632 1795 657 631 1796 741 708 1797 521 492 1798 522 526 1799 524 493 1800 740 707 1801 523 495 1802 523 495 1803 664 637 1804 667 641 1805 526 711 1806 525 529 1807 667 641 1808 744 712 1809 526 711 1810 670 640 1811 550 525 1812 743 710 1813 742 709 1814 635 612 1815 640 616 1816 745 713 1817 747 714 1818 636 613 1819 635 612 1820 629 610 1821 519 503 1822 517 489 1823 632 609 1824 518 491 1825 519 503 1826 748 715 1827 518 491 1828 632 609 1829 514 486 1830 747 714 1831 746 716 1832 746 716 1833 745 713 1834 539 509 1835 627 606 1836 517 489 1837 749 717 1838 750 718 1839 751 719 1840 651 625 1841 751 719 1842 752 720 1843 652 626 1844 510 483 1845 642 618 1846 645 623 1847 648 622 1848 513 519 1849 511 484 1850 753 721 1851 513 519 1852 648 622 1853 507 479 1854 543 516 1855 752 720 1856 751 719 1857 750 718 1858 508 480 1859 754 722 1860 510 483 1861 509 482 1862 729 695 1863 755 723 1864 756 724 1865 756 724 1866 757 725 1867 725 692 1868 755 723 1869 677 647 1870 676 726 1871 730 696 1872 679 649 1873 758 727 1874 684 654 1875 679 649 1876 730 696 1877 685 655 1878 684 654 1879 732 699 1880 759 728 1881 685 655 1882 733 698 1883 676 726 1884 675 646 1885 757 725 1886 760 729 1887 761 730 1888 698 667 1889 693 662 1890 692 661 1891 763 731 1892 690 659 1893 764 732 1894 760 729 1895 763 731 1896 663 636 1897 666 733 1898 663 636 1899 692 661 1900 694 664 1901 669 643 1902 668 639 1903 694 664 1904 765 734 1905 669 643 1906 695 663 1907 660 735 1908 659 633 1909 761 730 1910 764 732 1911 661 634 1912 660 735 1913 709 678 1914 766 736 1915 767 737 1916 767 737 1917 768 738 1918 706 675 1919 702 672 1920 630 607 1921 626 605 1922 703 671 1923 631 608 1924 630 607 1925 769 739 1926 631 608 1927 703 671 1928 638 740 1929 637 614 1930 768 738 1931 766 736 1932 639 615 1933 638 740 1934 700 669 1935 626 605 1936 770 741 1937 772 742 1938 721 689 1939 720 688 1940 716 684 1941 715 683 1942 773 743 1943 720 688 1944 713 681 1945 774 744 1946 773 743 1947 641 617 1948 644 745 1949 641 617 1950 715 683 1951 717 686 1952 647 621 1953 646 620 1954 717 686 1955 775 746 1956 647 621 1957 718 685 1958 653 627 1959 772 742 1960 771 747 1961 655 629 1962 654 628 1963 771 747 1964 358 338 1965 357 337 1966 493 462 1967 356 341 1968 355 336 1969 776 748 1970 356 341 1971 496 466 1972 491 460 1973 362 342 1974 491 460 1975 490 459 1976 359 339 1977 490 459 1978 777 749 1979 357 337 1980 370 354 1981 494 463 1982 498 470 1983 471 443 1984 470 442 1985 473 445 1986 471 443 1987 498 470 1988 487 457 1989 778 750 1990 779 751 1991 780 752 1992 781 753 1993 486 456 1994 246 243 1995 254 250 1996 349 328 1997 254 250 1998 246 243 1999 249 754 2000 255 322 2001 249 754 2002 344 324 2003 302 288 2004 344 324 2005 343 323 2006 367 348 2007 303 289 2008 343 323 2009 546 521 2010 367 348 2011 366 346 2012 262 255 2013 546 521 2014 548 523 2015 263 256 2016 262 255 2017 553 530 2018 382 404 2019 263 256 2020 554 531 2021 427 405 2022 382 404 2023 428 538 2024 531 705 2025 427 405 2026 430 407 2027 735 701 2028 531 705 2029 528 497 2030 681 651 2031 735 701 2032 736 702 2033 682 755 2034 681 651 2035 678 648 2036 758 727 2037 682 755 2038 677 647 2039 731 697 2040 758 727 2041 755 723 2042 595 572 2043 731 697 2044 729 695 2045 589 565 2046 595 572 2047 782 756 2048 405 388 2049 589 565 2050 783 757 2051 406 389 2052 405 388 2053 784 758 2054 406 389 2055 785 759 2056 786 760 2057 787 761 2058 592 569 2059 558 536 2060 788 762 2061 600 577 2062 592 569 2063 725 692 2064 734 700 2065 600 577 2066 757 725 2067 759 728 2068 734 700 2069 759 728 2070 757 725 2071 675 646 2072 687 656 2073 675 646 2074 674 645 2075 739 706 2076 688 657 2077 674 645 2078 534 501 2079 739 706 2080 738 704 2081 432 502 2082 534 501 2083 556 533 2084 407 408 2085 432 502 2086 555 532 2087 396 379 2088 408 390 2089 407 408 2090 408 390 2091 396 379 2092 434 411 2093 439 415 2094 434 411 2095 521 492 2096 524 493 2097 521 492 2098 741 708 2099 662 635 2100 665 638 2101 740 707 2102 666 733 2103 665 638 2104 662 635 2105 763 731 2106 666 733 2107 661 634 2108 693 662 2109 763 731 2110 764 732 2111 572 551 2112 693 662 2113 690 659 2114 560 539 2115 572 551 2116 689 658 2117 409 540 2118 560 539 2119 789 763 2120 790 764 2121 791 765 2122 410 391 2123 410 391 2124 791 765 2125 792 766 2126 793 767 2127 563 544 2128 551 527 2129 699 668 2130 580 557 2131 563 544 2132 698 667 2133 696 665 2134 580 557 2135 696 665 2136 698 667 2137 761 730 2138 659 633 2139 671 768 2140 765 734 2141 658 632 2142 672 642 2143 671 768 2144 658 632 2145 743 710 2146 744 712 2147 527 496 2148 744 712 2149 743 710 2150 436 413 2151 527 496 2152 550 525 2153 413 394 2154 436 413 2155 549 524 2156 413 394 2157 377 362 2158 378 363 2159 414 421 2160 378 363 2161 540 510 2162 539 509 2163 516 488 2164 445 422 2165 749 717 2166 516 488 2167 539 509 2168 628 769 2169 749 717 2170 745 713 2171 625 604 2172 628 769 2173 640 616 2174 770 741 2175 625 604 2176 639 615 2177 701 670 2178 770 741 2179 766 736 2180 459 433 2181 701 670 2182 709 678 2183 460 434 2184 459 433 2185 794 770 2186 535 584 2187 460 434 2188 795 771 2189 796 772 2190 797 773 2191 415 505 2192 798 774 2193 416 395 2194 415 505 2195 799 775 2196 467 580 2197 416 395 2198 707 676 2199 466 439 2200 467 580 2201 706 675 2202 704 673 2203 466 439 2204 704 673 2205 706 675 2206 768 738 2207 637 614 2208 633 776 2209 769 739 2210 636 613 2211 634 611 2212 633 776 2213 634 611 2214 636 613 2215 747 714 2216 514 486 2217 520 777 2218 748 715 2219 514 486 2220 440 417 2221 443 419 2222 419 778 2223 443 419 2224 440 417 2225 375 360 2226 376 361 2227 420 398 2228 420 398 2229 376 361 2230 448 481 2231 508 480 2232 509 482 2233 453 429 2234 509 482 2235 508 480 2236 750 718 2237 656 630 2238 643 619 2239 754 722 2240 643 619 2241 656 630 2242 655 629 2243 644 745 2244 655 629 2245 774 744 2246 713 681 2247 716 684 2248 773 743 2249 619 597 2250 716 684 2251 713 681 2252 613 590 2253 619 597 2254 712 680 2255 421 591 2256 613 590 2257 800 779 2258 801 780 2259 802 781 2260 422 399 2261 422 399 2262 802 781 2263 803 782 2264 804 783 2265 616 595 2266 544 517 2267 805 784 2268 623 601 2269 616 595 2270 721 689 2271 719 687 2272 623 601 2273 719 687 2274 721 689 2275 772 742 2276 772 742 2277 653 627 2278 649 785 2279 653 627 2280 652 626 2281 650 624 2282 753 721 2283 650 624 2284 652 626 2285 752 720 2286 543 516 2287 512 485 2288 543 516 2289 542 515 2290 450 426 2291 393 376 2292 450 426 2293 542 515 2294 390 514 2295 393 376 2296 395 377 2297 287 786 2298 271 787 2299 390 514 2300 541 513 2301 268 260 2302 271 787 2303 319 303 2304 268 260 2305 541 513 2306 319 303 2307 364 343 2308 328 310 2309 320 304 2310 328 310 2311 358 338 2312 355 336 2313 358 338 2314 495 465 2315 497 467 2316 776 748 2317 495 465 2318 497 467 2319 484 788 2320 487 457 2321 483 454 2322 482 453 2323 487 457 2324 331 311 2325 483 454 2326 779 751 2327 332 312 2328 331 311 2329 806 789 2330 372 356 2331 332 312 2332 807 790 2333 372 356 2334 808 791 2335 809 792 2336 373 357 2337 809 792 2338 810 793 2339 811 794 2340 475 471 2341 500 478 2342 488 458 2343 474 446 2344 475 471 2345 492 461 2346 474 446 2347 488 458 2348 777 749 2349 492 461 2350 489 464 2351 360 340 2352 777 749 2353 494 463 2354 311 295 2355 360 340 2356 370 354 2357 308 297 2358 311 295 2359 369 353 2360 313 315 2361 308 297 2362 335 352 2363 325 307 2364 313 315 2365 334 314 2366 324 330 2367 325 307 2368 323 306 2369 352 331 2370 324 330 2371 282 271 2372 812 795 2373 813 796 2374 347 327 2375 814 797 2376 815 798 2377 346 326 2378 814 797 2379 345 325 2380 351 334 2381 816 799 2382 351 334 2383 350 329 2384 819 800 2385 352 331 2386 354 333 2387 818 801 2388 354 333 2389 353 332 2390 820 802 2391 353 332 2392 348 803 2393 813 796 2394 821 804 2395 348 803 2396 815 798 2397 812 795 2398 349 328 2399 352 331 2400 819 800 2401 817 805 2402 492 461 2403 472 447 2404 474 446 2405 777 749 2406 490 459 2407 492 461 2408 496 466 2409 776 748 2410 497 467 2411 469 441 2412 497 467 2413 482 453 2414 648 622 2415 650 624 2416 753 721 2417 753 721 2418 512 485 2419 513 519 2420 642 618 2421 510 483 2422 754 722 2423 643 619 2424 642 618 2425 754 722 2426 718 685 2427 719 687 2428 775 746 2429 775 746 2430 649 785 2431 647 621 2432 715 683 2433 641 617 2434 773 743 2435 632 609 2436 634 611 2437 748 715 2438 748 715 2439 520 777 2440 518 491 2441 749 717 2442 517 489 2443 516 488 2444 628 769 2445 627 606 2446 749 717 2447 770 741 2448 626 605 2449 625 604 2450 701 670 2451 700 669 2452 770 741 2453 703 671 2454 704 673 2455 769 739 2456 769 739 2457 633 776 2458 631 608 2459 672 642 2460 744 712 2461 670 640 2462 526 711 2463 744 712 2464 527 496 2465 664 637 2466 523 495 2467 740 707 2468 695 663 2469 696 665 2470 765 734 2471 765 734 2472 671 768 2473 669 643 2474 692 661 2475 663 636 2476 763 731 2477 758 727 2478 679 649 2479 682 755 2480 731 697 2481 730 696 2482 758 727 2483 734 700 2484 759 728 2485 733 698 2486 685 655 2487 759 728 2488 687 656 2489 686 653 2490 688 657 2491 739 706 2492 533 500 2493 739 706 2494 534 501 2495 680 650 2496 530 498 2497 735 701 2498 713 681 2499 720 688 2500 723 806 2501 606 589 2502 822 807 2503 622 600 2504 722 690 2505 721 689 2506 805 784 2507 823 808 2508 606 589 2509 621 599 2510 804 783 2511 803 782 2512 824 809 2513 801 780 2514 800 779 2515 825 810 2516 714 682 2517 826 811 2518 827 812 2519 800 779 2520 712 680 2521 827 812 2522 722 690 2523 828 813 2524 829 814 2525 723 806 2526 829 814 2527 826 811 2528 805 784 2529 830 815 2530 828 813 2531 804 783 2532 824 809 2533 830 815 2534 607 585 2535 824 809 2536 803 782 2537 827 812 2538 826 811 2539 822 807 2540 825 810 2541 827 812 2542 620 598 2543 829 814 2544 828 813 2545 621 599 2546 829 814 2547 622 600 2548 822 807 2549 830 815 2550 823 808 2551 621 599 2552 824 809 2553 607 585 2554 823 808 2555 803 782 2556 802 781 2557 831 816 2558 802 781 2559 832 817 2560 833 818 2561 610 588 2562 611 819 2563 801 780 2564 802 781 2565 801 780 2566 832 817 2567 831 816 2568 802 781 2569 833 818 2570 608 586 2571 803 782 2572 831 816 2573 609 587 2574 608 586 2575 831 816 2576 609 587 2577 833 818 2578 832 817 2579 801 780 2580 611 819 2581 832 817 2582 607 585 2583 606 589 2584 823 808 2585 620 598 2586 822 807 2587 606 589 2588 486 456 2589 781 753 2590 778 750 2591 476 448 2592 480 451 2593 477 449 2594 811 794 2595 780 752 2596 488 458 2597 478 450 2598 834 820 2599 835 821 2600 781 753 2601 780 752 2602 836 822 2603 778 750 2604 838 823 2605 839 824 2606 806 789 2607 779 751 2608 839 824 2609 810 793 2610 809 792 2611 841 825 2612 807 790 2613 806 789 2614 840 826 2615 781 753 2616 837 827 2617 838 823 2618 811 794 2619 842 828 2620 836 822 2621 810 793 2622 841 825 2623 842 828 2624 837 827 2625 836 822 2626 478 450 2627 839 824 2628 838 823 2629 480 451 2630 840 826 2631 839 824 2632 479 829 2633 502 474 2634 809 792 2635 503 475 2636 808 791 2637 505 477 2638 504 476 2639 809 792 2640 808 791 2641 503 475 2642 807 790 2643 506 830 2644 505 477 2645 837 827 2646 477 449 2647 480 451 2648 836 822 2649 842 828 2650 834 820 2651 841 825 2652 835 821 2653 834 820 2654 807 790 2655 840 826 2656 481 452 2657 476 448 2658 501 473 2659 506 830 2660 476 448 2661 835 821 2662 502 474 2663 809 792 2664 502 474 2665 835 821 2666 808 791 2667 807 790 2668 505 477 2669 503 475 2670 808 791 2671 504 476 2672 707 676 2673 843 831 2674 844 832 2675 799 775 2676 845 833 2677 843 831 2678 708 677 2679 711 834 2680 846 835 2681 795 771 2682 794 770 2683 848 836 2684 799 775 2685 798 774 2686 845 833 2687 796 772 2688 795 771 2689 849 837 2690 843 831 2691 455 430 2692 454 838 2693 845 833 2694 456 431 2695 455 430 2696 847 839 2697 846 835 2698 538 508 2699 849 837 2700 848 836 2701 850 840 2702 845 833 2703 798 774 2704 602 581 2705 798 774 2706 797 773 2707 851 841 2708 797 773 2709 852 842 2710 853 843 2711 849 837 2712 604 844 2713 605 583 2714 602 581 2715 798 774 2716 851 841 2717 603 582 2718 602 581 2719 851 841 2720 603 582 2721 853 843 2722 852 842 2723 796 772 2724 605 583 2725 852 842 2726 797 773 2727 796 772 2728 852 842 2729 851 841 2730 797 773 2731 853 843 2732 850 840 2733 537 507 2734 457 432 2735 848 836 2736 847 839 2737 537 507 2738 794 770 2739 708 677 2740 847 839 2741 794 770 2742 709 678 2743 708 677 2744 538 508 2745 454 838 2746 457 432 2747 846 835 2748 844 832 2749 454 838 2750 711 834 2751 705 674 2752 844 832 2753 710 679 2754 706 675 2755 705 674 2756 793 767 2757 792 766 2758 854 845 2759 790 764 2760 789 763 2761 855 846 2762 689 658 2763 691 660 2764 856 847 2765 789 763 2766 689 658 2767 857 848 2768 697 666 2769 699 668 2770 858 849 2771 793 767 2772 854 845 2773 858 849 2774 566 546 2775 792 766 2776 567 547 2777 792 766 2778 791 765 2779 567 547 2780 791 765 2781 569 549 2782 564 548 2783 790 764 2784 568 850 2785 569 549 2786 856 847 2787 574 553 2788 573 552 2789 855 846 2790 857 848 2791 573 552 2792 858 849 2793 579 556 2794 578 555 2795 854 845 2796 577 851 2797 579 556 2798 790 764 2799 855 846 2800 576 852 2801 575 554 2802 565 545 2803 568 850 2804 566 546 2805 565 545 2806 575 554 2807 792 766 2808 566 546 2809 577 851 2810 567 547 2811 791 765 2812 564 548 2813 791 765 2814 790 764 2815 569 549 2816 691 660 2817 690 659 2818 762 853 2819 856 847 2820 691 660 2821 860 854 2822 574 553 2823 856 847 2824 861 855 2825 575 554 2826 574 553 2827 862 856 2828 578 555 2829 575 554 2830 862 856 2831 859 857 2832 578 555 2833 862 856 2834 860 854 2835 697 666 2836 859 857 2837 762 853 2838 698 667 2839 697 666 2840 787 761 2841 786 760 2842 863 858 2843 784 758 2844 783 757 2845 864 859 2846 727 860 2847 865 861 2848 866 862 2849 783 757 2850 782 756 2851 867 863 2852 726 693 2853 868 864 2854 865 861 2855 787 761 2856 863 858 2857 869 865 2858 584 561 2859 786 760 2860 585 562 2861 786 760 2862 785 759 2863 585 562 2864 785 759 2865 784 758 2866 587 564 2867 784 758 2868 586 866 2869 587 564 2870 865 861 2871 597 574 2872 596 573 2873 864 859 2874 867 863 2875 870 867 2876 868 864 2877 599 576 2878 597 574 2879 863 858 2880 872 868 2881 873 869 2882 784 758 2883 864 859 2884 871 870 2885 598 575 2886 583 560 2887 586 866 2888 584 561 2889 583 560 2890 598 575 2891 786 760 2892 584 561 2893 872 868 2894 785 759 2895 587 564 2896 582 563 2897 585 562 2898 785 759 2899 582 563 2900 726 693 2901 725 692 2902 788 762 2903 868 864 2904 726 693 2905 788 762 2906 868 864 2907 869 865 2908 873 869 2909 872 868 2910 598 575 2911 599 576 2912 870 867 2913 596 573 2914 598 575 2915 867 863 2916 866 862 2917 596 573 2918 782 756 2919 728 694 2920 866 862 2921 782 756 2922 729 695 2923 728 694 2924 875 871 2925 876 872 2926 877 873 2927 879 874 2928 875 871 2929 874 875 2930 881 876 2931 882 877 2932 883 878 2933 883 878 2934 882 877 2935 884 879 2936 885 880 2937 884 879 2938 886 881 2939 887 882 2940 886 881 2941 888 883 2942 889 884 2943 888 883 2944 890 885 2945 891 886 2946 890 885 2947 879 874 2948 876 872 2949 881 876 2950 880 887 2951 877 873 2952 880 887 2953 893 888 2954 874 875 2955 877 873 2956 892 889 2957 878 890 2958 874 875 2959 894 891 2960 891 886 2961 878 890 2962 895 892 2963 897 893 2964 889 884 2965 891 886 2966 898 894 2967 887 882 2968 889 884 2969 899 895 2970 885 880 2971 887 882 2972 900 896 2973 883 878 2974 885 880 2975 880 887 2976 883 878 2977 900 896 2978 901 897 2979 902 898 2980 881 876 2981 875 871 2982 903 899 2983 901 897 2984 879 874 2985 904 900 2986 903 899 2987 905 901 2988 904 900 2989 879 874 2990 906 902 2991 905 901 2992 890 885 2993 907 903 2994 906 902 2995 888 883 2996 884 879 2997 908 904 2998 907 903 2999 905 901 3000 909 905 3001 910 906 3002 911 907 3003 909 905 3004 905 901 3005 912 908 3006 911 907 3007 906 902 3008 908 904 3009 913 909 3010 912 908 3011 914 910 3012 915 911 3013 902 898 3014 903 899 3015 916 912 3016 914 910 3017 910 906 3018 916 912 3019 903 899 3020 917 913 3021 918 914 3022 882 877 3023 902 898 3024 919 915 3025 917 913 3026 882 877 3027 918 914 3028 920 916 3029 920 916 3030 921 917 3031 908 904 3032 921 917 3033 922 918 3034 913 909 3035 915 911 3036 923 919 3037 919 915 3038 893 888 3039 900 896 3040 925 920 3041 892 889 3042 893 888 3043 924 921 3044 894 891 3045 892 889 3046 926 922 3047 895 892 3048 894 891 3049 927 923 3050 929 924 3051 896 925 3052 895 892 3053 930 926 3054 897 893 3055 896 925 3056 931 927 3057 898 894 3058 897 893 3059 932 928 3060 899 895 3061 898 894 3062 900 896 3063 899 895 3064 932 928 3065 934 929 3066 935 930 3067 936 931 3068 938 932 3069 934 929 3070 933 933 3071 940 934 3072 938 932 3073 937 935 3074 941 936 3075 942 937 3076 943 938 3077 945 939 3078 946 940 3079 942 937 3080 947 941 3081 948 942 3082 949 943 3083 950 944 3084 951 945 3085 952 946 3086 954 947 3087 955 948 3088 956 949 3089 959 950 3090 960 951 3091 961 952 3092 963 953 3093 964 954 3094 965 955 3095 966 956 3096 967 957 3097 968 958 3098 958 959 3099 970 960 3100 971 961 3101 972 962 3102 973 963 3103 974 964 3104 977 965 3105 978 966 3106 979 967 3107 949 943 3108 980 968 3109 981 969 3110 983 970 3111 977 965 3112 976 971 3113 985 972 3114 986 973 3115 987 974 3116 986 973 3117 988 975 3118 989 976 3119 990 977 3120 973 963 3121 972 962 3122 992 978 3123 993 979 3124 994 980 3125 951 945 3126 950 944 3127 995 981 3128 972 962 3129 951 945 3130 996 982 3131 998 983 3132 999 984 3133 1000 985 3134 997 986 3135 1001 987 3136 1002 988 3137 1004 989 3138 1005 990 3139 1006 991 3140 1005 990 3141 1007 992 3142 990 977 3143 990 977 3144 1007 992 3145 1008 993 3146 973 963 3147 1008 993 3148 1009 994 3149 1011 995 3150 1012 996 3151 1013 997 3152 1013 997 3153 1012 996 3154 1015 998 3155 996 982 3156 995 981 3157 1017 999 3158 940 934 3159 939 1000 3160 1019 1001 3161 1020 1002 3162 1021 1003 3163 944 1004 3164 960 951 3165 1022 1005 3166 1023 1006 3167 1024 1007 3168 1025 1008 3169 1026 1009 3170 1029 1010 3171 963 953 3172 962 1011 3173 1030 1012 3174 1031 1013 3175 1020 1002 3176 1030 1012 3177 943 938 3178 942 937 3179 942 937 3180 946 940 3181 966 956 3182 935 930 3183 934 929 3184 962 1011 3185 1028 1014 3186 962 1011 3187 934 929 3188 938 932 3189 940 934 3190 1033 1015 3191 1035 1016 3192 940 934 3193 1036 1017 3194 986 973 3195 1006 991 3196 990 977 3197 1003 1018 3198 1006 991 3199 986 973 3200 997 986 3201 1000 985 3202 978 966 3203 1001 987 3204 997 986 3205 977 965 3206 1014 1019 3207 1037 1020 3208 993 979 3209 1010 1021 3210 1013 997 3211 981 969 3212 972 962 3213 975 1022 3214 952 946 3215 1038 1023 3216 1016 1024 3217 1039 1025 3218 1041 1026 3219 996 982 3220 1016 1024 3221 988 975 3222 996 982 3223 1041 1026 3224 1042 1027 3225 971 961 3226 970 960 3227 1043 1028 3228 1042 1027 3229 968 958 3230 1044 1029 3231 1045 1030 3232 964 954 3233 1046 1031 3234 1044 1029 3235 963 953 3236 1047 1032 3237 1048 1033 3238 1027 1034 3239 1049 1035 3240 1050 1036 3241 957 1037 3242 968 958 3243 970 960 3244 958 959 3245 958 959 3246 961 952 3247 1030 1012 3248 961 952 3249 1023 1006 3250 1031 1013 3251 1039 1025 3252 1051 1038 3253 1052 1039 3254 1016 1024 3255 1017 999 3256 1051 1038 3257 1021 1003 3258 1020 1002 3259 1053 1040 3260 1055 1041 3261 1053 1040 3262 1020 1002 3263 1023 1006 3264 1056 1042 3265 1055 1041 3266 1022 1005 3267 1057 1043 3268 1056 1042 3269 935 930 3270 946 940 3271 945 939 3272 946 940 3273 935 930 3274 965 955 3275 964 954 3276 967 957 3277 966 956 3278 1045 1030 3279 1043 1028 3280 967 957 3281 978 966 3282 985 972 3283 984 1044 3284 1000 985 3285 1003 1018 3286 985 972 3287 999 984 3288 1004 989 3289 1003 1018 3290 1058 1045 3291 1059 1046 3292 999 984 3293 1061 1047 3294 1058 1045 3295 998 983 3296 1062 1048 3297 1063 1049 3298 1005 990 3299 1005 990 3300 1063 1049 3301 1064 1050 3302 1007 992 3303 1064 1050 3304 1065 1051 3305 1008 993 3306 1065 1051 3307 1066 1052 3308 1009 994 3309 1066 1052 3310 1067 1053 3311 1067 1053 3312 1061 1047 3313 1060 1054 3314 1059 1046 3315 1062 1048 3316 1004 989 3317 1068 1055 3318 1069 1056 3319 1070 1057 3320 1071 1058 3321 1072 1059 3322 1073 1060 3323 1074 1061 3324 1073 1060 3325 1075 1062 3326 1078 1063 3327 1079 1064 3328 1080 1065 3329 1079 1064 3330 1081 1066 3331 1082 1067 3332 1082 1067 3333 1081 1066 3334 1083 1068 3335 1070 1057 3336 1069 1056 3337 1084 1069 3338 1087 1070 3339 1088 1071 3340 1089 1072 3341 1090 1073 3342 1091 1074 3343 1087 1070 3344 1092 1075 3345 1093 1076 3346 1091 1074 3347 1094 1077 3348 1095 1078 3349 1093 1076 3350 1096 1079 3351 1097 1080 3352 1095 1078 3353 1099 1081 3354 1097 1080 3355 1096 1079 3356 1101 1082 3357 1099 1081 3358 1098 1083 3359 1103 1084 3360 1101 1082 3361 1100 1085 3362 1088 1071 3363 1103 1084 3364 1102 1086 3365 1105 1087 3366 1106 1088 3367 1107 1089 3368 1108 1090 3369 1109 1091 3370 1105 1087 3371 1110 1092 3372 1111 1093 3373 1109 1091 3374 1113 1094 3375 1111 1093 3376 1110 1092 3377 1114 1095 3378 1115 1096 3379 1113 1094 3380 1116 1097 3381 1117 1098 3382 1115 1096 3383 1118 1099 3384 1119 1100 3385 1117 1098 3386 1121 1101 3387 1119 1100 3388 1118 1099 3389 1106 1088 3390 1121 1101 3391 1120 1102 3392 1123 1103 3393 1124 1104 3394 1125 1105 3395 1127 1106 3396 1123 1103 3397 1122 1107 3398 1129 1108 3399 1127 1106 3400 1126 1109 3401 1131 1110 3402 1129 1108 3403 1128 1111 3404 1132 1112 3405 1133 1113 3406 1131 1110 3407 1134 1114 3408 1135 1115 3409 1133 1113 3410 1136 1116 3411 1137 1117 3412 1135 1115 3413 1138 1118 3414 1139 1119 3415 1137 1117 3416 1124 1104 3417 1139 1119 3418 1138 1118 3419 924 921 3420 925 920 3421 1141 1120 3422 926 922 3423 924 921 3424 1140 1121 3425 927 923 3426 926 922 3427 1142 1122 3428 928 1123 3429 927 923 3430 1143 1124 3431 1145 1125 3432 929 924 3433 928 1123 3434 1146 1126 3435 930 926 3436 929 924 3437 1147 1127 3438 931 927 3439 930 926 3440 1148 1128 3441 932 928 3442 931 927 3443 925 920 3444 932 928 3445 1148 1128 3446 1150 1129 3447 1151 1130 3448 1152 1131 3449 1153 1132 3450 1154 1133 3451 1150 1129 3452 1155 1134 3453 1156 1135 3454 1154 1133 3455 1158 1136 3456 1156 1135 3457 1155 1134 3458 1160 1137 3459 1158 1136 3460 1157 1138 3461 1161 1139 3462 1162 1140 3463 1160 1137 3464 1163 1141 3465 1164 1142 3466 1162 1140 3467 1166 1143 3468 1164 1142 3469 1163 1141 3470 1151 1130 3471 1166 1143 3472 1165 1144 3473 1072 1059 3474 1167 1145 3475 1168 1146 3476 1069 1056 3477 1090 1073 3478 1086 1147 3479 1068 1055 3480 1092 1075 3481 1069 1056 3482 1169 1148 3483 1094 1077 3484 1092 1075 3485 1096 1079 3486 1094 1077 3487 1169 1148 3488 1081 1066 3489 1098 1083 3490 1096 1079 3491 1100 1085 3492 1098 1083 3493 1081 1066 3494 1102 1086 3495 1100 1085 3496 1079 1064 3497 1073 1060 3498 1168 1146 3499 1170 1149 3500 1071 1058 3501 1074 1061 3502 1171 1150 3503 1084 1069 3504 1072 1059 3505 1071 1058 3506 1171 1150 3507 1074 1061 3508 1076 1151 3509 1076 1151 3510 1075 1062 3511 1078 1063 3512 1089 1072 3513 1168 1146 3514 1167 1145 3515 1167 1145 3516 1072 1059 3517 1084 1069 3518 1078 1063 3519 1075 1062 3520 1170 1149 3521 1170 1149 3522 1168 1146 3523 1089 1072 3524 1081 1066 3525 1096 1079 3526 1083 1068 3527 1092 1075 3528 1090 1073 3529 1069 1056 3530 1122 1107 3531 1125 1105 3532 1106 1088 3533 1126 1109 3534 1122 1107 3535 1105 1087 3536 1128 1111 3537 1126 1109 3538 1109 1091 3539 1130 1152 3540 1128 1111 3541 1111 1093 3542 1115 1096 3543 1132 1112 3544 1130 1152 3545 1117 1098 3546 1134 1114 3547 1132 1112 3548 1119 1100 3549 1136 1116 3550 1134 1114 3551 1138 1118 3552 1136 1116 3553 1119 1100 3554 1125 1105 3555 1138 1118 3556 1121 1101 3557 1140 1121 3558 1141 1120 3559 1124 1104 3560 1142 1122 3561 1140 1121 3562 1123 1103 3563 1143 1124 3564 1142 1122 3565 1127 1106 3566 1144 1153 3567 1143 1124 3568 1129 1108 3569 1133 1113 3570 1145 1125 3571 1144 1153 3572 1135 1115 3573 1146 1126 3574 1145 1125 3575 1137 1117 3576 1147 1127 3577 1146 1126 3578 1139 1119 3579 1148 1128 3580 1147 1127 3581 1141 1120 3582 1148 1128 3583 1139 1119 3584 1104 1154 3585 1107 1089 3586 1088 1071 3587 1091 1074 3588 1108 1090 3589 1104 1154 3590 1093 1076 3591 1110 1092 3592 1108 1090 3593 1112 1155 3594 1110 1092 3595 1093 1076 3596 1097 1080 3597 1114 1095 3598 1112 1155 3599 1099 1081 3600 1116 1097 3601 1114 1095 3602 1118 1099 3603 1116 1097 3604 1099 1081 3605 1120 1102 3606 1118 1099 3607 1101 1082 3608 1107 1089 3609 1120 1102 3610 1103 1084 3611 1172 1156 3612 1070 1057 3613 1085 1157 3614 1174 1158 3615 1068 1055 3616 1070 1057 3617 1169 1148 3618 1068 1055 3619 1174 1158 3620 1083 1068 3621 1169 1148 3622 1175 1159 3623 1082 1067 3624 1083 1068 3625 1176 1160 3626 1080 1065 3627 1082 1067 3628 1177 1161 3629 1179 1162 3630 1077 1163 3631 1080 1065 3632 1171 1150 3633 1077 1163 3634 1179 1162 3635 1085 1157 3636 1171 1150 3637 1180 1164 3638 1181 1165 3639 1182 1166 3640 1058 1045 3641 1183 1167 3642 1181 1165 3643 1061 1047 3644 1184 1168 3645 1183 1167 3646 1067 1053 3647 1185 1169 3648 1184 1168 3649 1066 1052 3650 1064 1050 3651 1186 1170 3652 1185 1169 3653 1064 1050 3654 1063 1049 3655 1187 1171 3656 1188 1172 3657 1187 1171 3658 1063 1049 3659 1189 1173 3660 1188 1172 3661 1062 1048 3662 1182 1166 3663 1189 1173 3664 1059 1046 3665 1040 1174 3666 1052 1039 3667 1057 1043 3668 1038 1023 3669 1040 1174 3670 1022 1005 3671 1041 1026 3672 1038 1023 3673 960 951 3674 989 976 3675 1041 1026 3676 959 950 3677 987 974 3678 989 976 3679 971 961 3680 984 1044 3681 987 974 3682 1042 1027 3683 979 967 3684 984 1044 3685 1043 1028 3686 976 971 3687 979 967 3688 1045 1030 3689 982 1175 3690 976 971 3691 1044 1029 3692 991 1176 3693 994 980 3694 1048 1033 3695 1049 1035 3696 1190 1177 3697 948 942 3698 1013 997 3699 1014 1019 3700 992 978 3701 981 969 3702 992 978 3703 991 1176 3704 947 941 3705 991 1176 3706 1047 1032 3707 1191 1178 3708 1047 1032 3709 1026 1009 3710 1025 1008 3711 1035 1016 3712 1192 1179 3713 1037 1020 3714 1001 987 3715 983 970 3716 993 979 3717 983 970 3718 982 1175 3719 994 980 3720 982 1175 3721 1046 1031 3722 1048 1033 3723 1046 1031 3724 1029 1010 3725 1027 1034 3726 1029 1010 3727 1028 1014 3728 1037 1020 3729 1014 1019 3730 1015 998 3731 1002 988 3732 1001 987 3733 1037 1020 3734 1060 1054 3735 998 983 3736 1002 988 3737 1060 1054 3738 1193 1180 3739 1015 998 3740 1035 1016 3741 954 947 3742 957 1037 3743 1050 1036 3744 1191 1178 3745 1192 1179 3746 947 941 3747 1191 1178 3748 1050 1036 3749 974 964 3750 1009 994 3751 1011 995 3752 974 964 3753 1010 1021 3754 980 968 3755 952 946 3756 975 1022 3757 980 968 3758 948 942 3759 1190 1177 3760 1194 1181 3761 1194 1181 3762 953 1182 3763 952 946 3764 1018 1183 3765 1195 1184 3766 1036 1017 3767 1195 1184 3768 955 948 3769 954 947 3770 1035 1016 3771 1025 1008 3772 1033 1015 3773 938 932 3774 1034 1185 3775 1032 1186 3776 1024 1007 3777 1028 1014 3778 1032 1186 3779 1033 1015 3780 1025 1008 3781 1024 1007 3782 1009 994 3783 1012 996 3784 1011 995 3785 1152 1131 3786 1165 1144 3787 1196 1187 3788 1197 1188 3789 1196 1187 3790 1198 1189 3791 1199 1190 3792 1200 1191 3793 1201 1192 3794 1197 1188 3795 1201 1192 3796 1149 1193 3797 1200 1191 3798 1202 1194 3799 1203 1195 3800 1203 1195 3801 1153 1132 3802 1149 1193 3803 1202 1194 3804 1204 1196 3805 1205 1197 3806 1205 1197 3807 1155 1134 3808 1153 1132 3809 1204 1196 3810 1206 1198 3811 1207 1199 3812 1207 1199 3813 1157 1138 3814 1155 1134 3815 1208 1200 3816 1209 1201 3817 1207 1199 3818 1207 1199 3819 1209 1201 3820 1159 1202 3821 1210 1203 3822 1211 1204 3823 1209 1201 3824 1209 1201 3825 1211 1204 3826 1161 1139 3827 1212 1205 3828 1213 1206 3829 1211 1204 3830 1213 1206 3831 1163 1141 3832 1161 1139 3833 1212 1205 3834 1198 1189 3835 1196 1187 3836 1196 1187 3837 1165 1144 3838 1163 1141 3839 1173 1207 3840 1180 1164 3841 1166 1143 3842 1172 1156 3843 1173 1207 3844 1151 1130 3845 1154 1133 3846 1174 1158 3847 1172 1156 3848 1156 1135 3849 1175 1159 3850 1174 1158 3851 1176 1160 3852 1175 1159 3853 1156 1135 3854 1177 1161 3855 1176 1160 3856 1158 1136 3857 1162 1140 3858 1178 1208 3859 1177 1161 3860 1164 1142 3861 1179 1162 3862 1178 1208 3863 1180 1164 3864 1179 1162 3865 1164 1142 3866 1199 1190 3867 1198 1189 3868 1187 1171 3869 1200 1191 3870 1199 1190 3871 1188 1172 3872 1202 1194 3873 1200 1191 3874 1189 1173 3875 1204 1196 3876 1202 1194 3877 1182 1166 3878 1206 1198 3879 1204 1196 3880 1181 1165 3881 1208 1200 3882 1206 1198 3883 1183 1167 3884 1185 1169 3885 1210 1203 3886 1208 1200 3887 1186 1170 3888 1212 1205 3889 1210 1203 3890 1198 1189 3891 1212 1205 3892 1186 1170 3893 1215 1209 3894 1216 1210 3895 1217 1211 3896 1218 1212 3897 1214 1213 3898 1217 1211 3899 1221 1214 3900 1222 1215 3901 1223 1216 3902 1221 1214 3903 1224 1217 3904 1225 1218 3905 1224 1217 3906 1226 1219 3907 1227 1220 3908 1228 1221 3909 1229 1222 3910 1227 1220 3911 1228 1221 3912 1230 1223 3913 1231 1224 3914 1230 1223 3915 1218 1212 3916 1219 1225 3917 1220 1226 3918 1223 1216 3919 1216 1210 3920 1233 1227 3921 1220 1226 3922 1215 1209 3923 1232 1228 3924 1215 1209 3925 1214 1213 3926 1234 1229 3927 1214 1213 3928 1218 1212 3929 1235 1230 3930 1218 1212 3931 1230 1223 3932 1236 1231 3933 1230 1223 3934 1228 1221 3935 1238 1232 3936 1237 1233 3937 1228 1221 3938 1239 1234 3939 1238 1232 3940 1226 1219 3941 1240 1235 3942 1239 1234 3943 1224 1217 3944 1240 1235 3945 1221 1214 3946 1220 1226 3947 1223 1216 3948 1241 1236 3949 1242 1237 3950 1217 1211 3951 1216 1210 3952 1242 1237 3953 1219 1225 3954 1217 1211 3955 1243 1238 3956 1219 1225 3957 1244 1239 3958 1245 1240 3959 1231 1224 3960 1245 1240 3961 1246 1241 3962 1229 1222 3963 1246 1241 3964 1247 1242 3965 1225 1218 3966 1227 1220 3967 1247 1242 3968 1245 1240 3969 1244 1239 3970 1249 1243 3971 1246 1241 3972 1245 1240 3973 1250 1244 3974 1246 1241 3975 1251 1245 3976 1252 1246 3977 1248 1247 3978 1247 1242 3979 1252 1246 3980 1242 1237 3981 1241 1236 3982 1254 1248 3983 1243 1238 3984 1242 1237 3985 1255 1249 3986 1243 1238 3987 1256 1250 3988 1249 1243 3989 1222 1215 3990 1257 1251 3991 1258 1252 3992 1241 1236 3993 1223 1216 3994 1258 1252 3995 1222 1215 3996 1225 1218 3997 1260 1253 3998 1248 1247 3999 1261 1254 4000 1260 1253 4001 1253 1255 4002 1262 1256 4003 1261 1254 4004 1254 1248 4005 1241 1236 4006 1259 1257 4007 1265 1258 4008 1240 1235 4009 1233 1227 4010 1264 1259 4011 1233 1227 4012 1232 1228 4013 1266 1260 4014 1232 1228 4015 1234 1229 4016 1267 1261 4017 1234 1229 4018 1235 1230 4019 1269 1262 4020 1268 1263 4021 1235 1230 4022 1270 1264 4023 1269 1262 4024 1236 1231 4025 1271 1265 4026 1270 1264 4027 1237 1233 4028 1272 1266 4029 1271 1265 4030 1238 1232 4031 1272 1266 4032 1239 1234 4033 1240 1235 4034 1274 1267 4035 1275 1268 4036 1276 1269 4037 1277 1270 4038 1273 1271 4039 1276 1269 4040 1279 1272 4041 1277 1270 4042 1278 1273 4043 1282 1274 4044 1283 1275 4045 1284 1276 4046 1281 1277 4047 1284 1276 4048 1286 1278 4049 1287 1279 4050 1288 1280 4051 1289 1281 4052 950 944 4053 953 1182 4054 1290 1282 4055 1293 1283 4056 956 949 4057 955 948 4058 1295 1284 4059 1296 1285 4060 1297 1286 4061 1299 1287 4062 1300 1288 4063 1301 1289 4064 1303 1290 4065 1304 1291 4066 1305 1292 4067 1294 1293 4068 1297 1286 4069 1306 1294 4070 1308 1295 4071 1309 1296 4072 1310 1297 4073 1312 1298 4074 1313 1299 4075 1314 1300 4076 1288 1280 4077 1287 1279 4078 1316 1301 4079 1318 1302 4080 1312 1298 4081 1315 1303 4082 1320 1304 4083 1321 1305 4084 1322 1306 4085 1321 1305 4086 1324 1307 4087 1325 1308 4088 1325 1308 4089 1308 1295 4090 1311 1309 4091 1328 1310 4092 1329 1311 4093 1330 1312 4094 1291 1313 4095 1331 1314 4096 995 981 4097 1331 1314 4098 1291 1313 4099 1308 1295 4100 1333 1315 4101 1334 1316 4102 1335 1317 4103 1336 1318 4104 1337 1319 4105 1332 1320 4106 1338 1321 4107 1339 1322 4108 1340 1323 4109 1339 1322 4110 1326 1324 4111 1342 1325 4112 1326 1324 4113 1311 1309 4114 1343 1326 4115 1311 1309 4116 1310 1297 4117 1344 1327 4118 1346 1328 4119 1347 1329 4120 1348 1330 4121 1350 1331 4122 1347 1329 4123 1346 1328 4124 1017 999 4125 995 981 4126 1331 1314 4127 1019 1001 4128 1279 1272 4129 1280 1332 4130 1283 1275 4131 1282 1274 4132 1352 1333 4133 1354 1334 4134 1355 1335 4135 1296 1285 4136 1357 1336 4137 1358 1337 4138 1359 1338 4139 1298 1339 4140 1301 1289 4141 1361 1340 4142 1362 1341 4143 1283 1275 4144 1353 1342 4145 1303 1290 4146 1284 1276 4147 1283 1275 4148 1302 1343 4149 1286 1278 4150 1284 1276 4151 1298 1339 4152 1276 1269 4153 1275 1268 4154 1364 1344 4155 1276 1269 4156 1298 1339 4157 1278 1273 4158 1365 1345 4159 1366 1346 4160 1367 1347 4161 1280 1332 4162 1368 1348 4163 1322 1306 4164 1325 1308 4165 1326 1324 4166 1323 1349 4167 1322 1306 4168 1339 1322 4169 1315 1303 4170 1314 1300 4171 1333 1315 4172 1319 1350 4173 1315 1303 4174 1332 1320 4175 1329 1311 4176 1369 1351 4177 1349 1352 4178 1316 1301 4179 1346 1328 4180 1345 1353 4181 1291 1313 4182 1290 1282 4183 1309 1296 4184 1370 1354 4185 1371 1355 4186 1372 1356 4187 1373 1357 4188 1370 1354 4189 1351 1358 4190 1373 1357 4191 1331 1314 4192 1325 1308 4193 1307 1359 4194 1306 1294 4195 1374 1360 4196 1305 1292 4197 1304 1291 4198 1374 1360 4199 1301 1289 4200 1300 1288 4201 1376 1361 4202 1361 1340 4203 1301 1289 4204 1377 1362 4205 1358 1337 4206 1357 1336 4207 1379 1363 4208 956 949 4209 1293 1283 4210 1381 1364 4211 1294 1293 4212 1307 1359 4213 1304 1291 4214 1362 1341 4215 1295 1284 4216 1294 1293 4217 1363 1365 4218 1354 1334 4219 1295 1284 4220 1052 1039 4221 1051 1038 4222 1372 1356 4223 1372 1356 4224 1051 1038 4225 1017 999 4226 1054 1366 4227 1053 1040 4228 1353 1342 4229 1363 1365 4230 1353 1342 4231 1053 1040 4232 1354 1334 4233 1363 1365 4234 1055 1041 4235 1354 1334 4236 1056 1042 4237 1057 1043 4238 1285 1367 4239 1286 1278 4240 1275 1268 4241 1299 1287 4242 1275 1268 4243 1286 1278 4244 1300 1288 4245 1299 1287 4246 1302 1343 4247 1300 1288 4248 1305 1292 4249 1375 1368 4250 1313 1299 4251 1320 1304 4252 1323 1349 4253 1333 1315 4254 1314 1300 4255 1323 1349 4256 1334 1316 4257 1333 1315 4258 1338 1321 4259 1334 1316 4260 1382 1369 4261 1383 1370 4262 1335 1317 4263 1383 1370 4264 1385 1371 4265 1340 1323 4266 1386 1372 4267 1387 1373 4268 1340 1323 4269 1342 1325 4270 1388 1374 4271 1342 1325 4272 1343 1326 4273 1389 1375 4274 1343 1326 4275 1344 1327 4276 1390 1376 4277 1347 1329 4278 1391 1377 4279 1390 1376 4280 1384 1378 4281 1385 1371 4282 1391 1377 4283 1341 1379 4284 1387 1373 4285 1382 1369 4286 1392 1380 4287 1393 1381 4288 1394 1382 4289 1395 1383 4290 1396 1384 4291 1397 1385 4292 1396 1384 4293 1399 1386 4294 1400 1387 4295 1402 1388 4296 1403 1389 4297 1404 1390 4298 1405 1391 4299 1406 1392 4300 1403 1389 4301 1405 1391 4302 1407 1393 4303 1406 1392 4304 1393 1381 4305 1408 1394 4306 1409 1395 4307 1411 1396 4308 1412 1397 4309 1413 1398 4310 1414 1399 4311 1410 1400 4312 1413 1398 4313 1416 1401 4314 1414 1399 4315 1415 1402 4316 1418 1403 4317 1416 1401 4318 1417 1404 4319 1420 1405 4320 1418 1403 4321 1419 1406 4322 1420 1405 4323 1421 1407 4324 1423 1408 4325 1422 1409 4326 1423 1408 4327 1425 1410 4328 1424 1411 4329 1425 1410 4330 1427 1412 4331 1426 1413 4332 1427 1412 4333 1412 1397 4334 1429 1414 4335 1430 1415 4336 1431 1416 4337 1432 1417 4338 1428 1418 4339 1431 1416 4340 1434 1419 4341 1432 1417 4342 1433 1420 4343 1434 1419 4344 1435 1421 4345 1437 1422 4346 1438 1423 4347 1436 1424 4348 1437 1422 4349 1440 1425 4350 1438 1423 4351 1439 1426 4352 1440 1425 4353 1441 1427 4354 1443 1428 4355 1442 1429 4356 1443 1428 4357 1445 1430 4358 1444 1431 4359 1445 1430 4360 1430 1415 4361 1447 1432 4362 1448 1433 4363 1449 1434 4364 1446 1435 4365 1449 1434 4366 1451 1436 4367 1450 1437 4368 1451 1436 4369 1453 1438 4370 1452 1439 4371 1453 1438 4372 1455 1440 4373 1456 1441 4374 1454 1442 4375 1455 1440 4376 1458 1443 4377 1456 1441 4378 1457 1444 4379 1460 1445 4380 1458 1443 4381 1459 1446 4382 1462 1447 4383 1460 1445 4384 1461 1448 4385 1462 1447 4386 1463 1449 4387 1448 1433 4388 1465 1450 4389 1265 1258 4390 1264 1259 4391 1464 1451 4392 1264 1259 4393 1266 1260 4394 1466 1452 4395 1266 1260 4396 1267 1261 4397 1467 1453 4398 1267 1261 4399 1268 1263 4400 1469 1454 4401 1468 1455 4402 1268 1263 4403 1470 1456 4404 1469 1454 4405 1269 1262 4406 1471 1457 4407 1470 1456 4408 1270 1264 4409 1472 1458 4410 1471 1457 4411 1271 1265 4412 1472 1458 4413 1272 1266 4414 1265 1258 4415 1474 1459 4416 1475 1460 4417 1476 1461 4418 1477 1462 4419 1473 1463 4420 1476 1461 4421 1479 1464 4422 1477 1462 4423 1478 1465 4424 1479 1464 4425 1480 1466 4426 1482 1467 4427 1481 1468 4428 1482 1467 4429 1484 1469 4430 1485 1470 4431 1483 1471 4432 1484 1469 4433 1487 1472 4434 1485 1470 4435 1486 1473 4436 1489 1474 4437 1487 1472 4438 1488 1475 4439 1489 1474 4440 1490 1476 4441 1475 1460 4442 1398 1477 4443 1397 1385 4444 1491 1478 4445 1394 1382 4446 1409 1395 4447 1410 1400 4448 1392 1380 4449 1394 1382 4450 1416 1401 4451 1493 1479 4452 1392 1380 4453 1416 1401 4454 1493 1479 4455 1418 1403 4456 1420 1405 4457 1406 1392 4458 1420 1405 4459 1422 1409 4460 1406 1392 4461 1422 1409 4462 1424 1411 4463 1403 1389 4464 1424 1411 4465 1426 1413 4466 1397 1385 4467 1400 1387 4468 1494 1480 4469 1495 1481 4470 1396 1384 4471 1395 1383 4472 1409 1395 4473 1408 1394 4474 1395 1383 4475 1495 1481 4476 1401 1482 4477 1399 1386 4478 1404 1390 4479 1400 1387 4480 1399 1386 4481 1411 1396 4482 1410 1400 4483 1492 1483 4484 1409 1395 4485 1398 1477 4486 1492 1483 4487 1404 1390 4488 1426 1413 4489 1494 1480 4490 1411 1396 4491 1491 1478 4492 1494 1480 4493 1406 1392 4494 1407 1393 4495 1420 1405 4496 1416 1401 4497 1394 1382 4498 1414 1399 4499 1430 1415 4500 1447 1432 4501 1446 1435 4502 1431 1416 4503 1446 1435 4504 1450 1437 4505 1433 1420 4506 1450 1437 4507 1452 1439 4508 1435 1421 4509 1452 1439 4510 1454 1442 4511 1439 1426 4512 1437 1422 4513 1454 1442 4514 1441 1427 4515 1439 1426 4516 1456 1441 4517 1443 1428 4518 1441 1427 4519 1458 1443 4520 1443 1428 4521 1460 1445 4522 1462 1447 4523 1445 1430 4524 1462 1447 4525 1447 1432 4526 1448 1433 4527 1465 1450 4528 1464 1451 4529 1449 1434 4530 1464 1451 4531 1466 1452 4532 1451 1436 4533 1466 1452 4534 1467 1453 4535 1453 1438 4536 1467 1453 4537 1468 1455 4538 1457 1444 4539 1455 1440 4540 1468 1455 4541 1459 1446 4542 1457 1444 4543 1469 1454 4544 1461 1448 4545 1459 1446 4546 1470 1456 4547 1463 1449 4548 1461 1448 4549 1471 1457 4550 1463 1449 4551 1472 1458 4552 1465 1450 4553 1412 1397 4554 1429 1414 4555 1428 1418 4556 1415 1402 4557 1413 1398 4558 1428 1418 4559 1417 1404 4560 1415 1402 4561 1432 1417 4562 1417 1404 4563 1434 1419 4564 1436 1424 4565 1421 1407 4566 1419 1406 4567 1436 1424 4568 1423 1408 4569 1421 1407 4570 1438 1423 4571 1423 1408 4572 1440 1425 4573 1442 1429 4574 1425 1410 4575 1442 1429 4576 1444 1431 4577 1427 1412 4578 1444 1431 4579 1429 1414 4580 1496 1484 4581 1497 1485 4582 1408 1394 4583 1498 1486 4584 1496 1484 4585 1393 1381 4586 1498 1486 4587 1392 1380 4588 1493 1479 4589 1499 1487 4590 1493 1479 4591 1407 1393 4592 1500 1488 4593 1407 1393 4594 1405 1391 4595 1502 1489 4596 1501 1490 4597 1405 1391 4598 1503 1491 4599 1502 1489 4600 1402 1388 4601 1503 1491 4602 1401 1482 4603 1495 1481 4604 1504 1492 4605 1495 1481 4606 1408 1394 4607 1383 1370 4608 1505 1493 4609 1506 1494 4610 1385 1371 4611 1506 1494 4612 1507 1495 4613 1391 1377 4614 1507 1495 4615 1508 1496 4616 1390 1376 4617 1508 1496 4618 1509 1497 4619 1388 1374 4620 1389 1375 4621 1509 1497 4622 1510 1498 4623 1511 1499 4624 1386 1372 4625 1386 1372 4626 1511 1499 4627 1512 1500 4628 1387 1373 4629 1512 1500 4630 1513 1501 4631 1382 1369 4632 1513 1501 4633 1505 1493 4634 1355 1335 4635 1057 1043 4636 1052 1039 4637 1355 1335 4638 1371 1355 4639 1370 1354 4640 1296 1285 4641 1370 1354 4642 1373 1357 4643 1297 1286 4644 1373 1357 4645 1324 1307 4646 1374 1360 4647 1306 1294 4648 1324 1307 4649 1375 1368 4650 1374 1360 4651 1321 1305 4652 1376 1361 4653 1375 1368 4654 1320 1304 4655 1377 1362 4656 1376 1361 4657 1313 1299 4658 1378 1502 4659 1377 1362 4660 1312 1298 4661 1380 1503 4662 1379 1363 4663 1328 1310 4664 1049 1035 4665 1381 1364 4666 1289 1281 4667 1330 1312 4668 1349 1352 4669 1346 1328 4670 1327 1504 4671 1330 1312 4672 1316 1301 4673 1514 1505 4674 1380 1503 4675 1327 1504 4676 1515 1506 4677 1358 1337 4678 1380 1503 4679 1358 1337 4680 1515 1506 4681 1368 1348 4682 1319 1350 4683 1337 1319 4684 1369 1351 4685 1318 1302 4686 1319 1350 4687 1329 1311 4688 1379 1363 4689 1378 1502 4690 1318 1302 4691 1357 1336 4692 1361 1340 4693 1378 1502 4694 1360 1507 4695 1361 1340 4696 1357 1336 4697 1350 1331 4698 1349 1352 4699 1369 1351 4700 1369 1351 4701 1337 1319 4702 1336 1318 4703 1384 1378 4704 1516 1508 4705 1336 1318 4706 1384 1378 4707 1347 1329 4708 1350 1331 4709 1515 1506 4710 1293 1283 4711 1292 1509 4712 1293 1283 4713 1515 1506 4714 1514 1505 4715 1381 1364 4716 1514 1505 4717 1287 1279 4718 1310 1297 4719 1345 1353 4720 1348 1330 4721 1309 1296 4722 1317 1510 4723 1345 1353 4724 1290 1282 4725 1288 1280 4726 1317 1510 4727 1288 1280 4728 1194 1181 4729 1190 1177 4730 1288 1280 4731 1290 1282 4732 953 1182 4733 1018 1183 4734 1280 1332 4735 1367 1347 4736 1195 1184 4737 1367 1347 4738 1292 1509 4739 1366 1346 4740 1359 1338 4741 1368 1348 4742 1278 1273 4743 1276 1269 4744 1364 1344 4745 1364 1344 4746 1360 1507 4747 1356 1511 4748 1366 1346 4749 1365 1345 4750 1356 1511 4751 1344 1327 4752 1348 1330 4753 1347 1329 4754 1474 1459 4755 1517 1512 4756 1518 1513 4757 1517 1512 4758 1519 1514 4759 1520 1515 4760 1519 1514 4761 1517 1512 4762 1521 1516 4763 1517 1512 4764 1474 1459 4765 1473 1463 4766 1522 1517 4767 1521 1516 4768 1523 1518 4769 1473 1463 4770 1477 1462 4771 1523 1518 4772 1524 1519 4773 1523 1518 4774 1525 1520 4775 1477 1462 4776 1479 1464 4777 1525 1520 4778 1526 1521 4779 1525 1520 4780 1527 1522 4781 1479 1464 4782 1481 1468 4783 1527 1522 4784 1527 1522 4785 1529 1523 4786 1530 1524 4787 1527 1522 4788 1481 1468 4789 1483 1471 4790 1529 1523 4791 1531 1525 4792 1532 1526 4793 1529 1523 4794 1483 1471 4795 1485 1470 4796 1531 1525 4797 1533 1527 4798 1534 1528 4799 1485 1470 4800 1487 1472 4801 1533 1527 4802 1534 1528 4803 1533 1527 4804 1518 1513 4805 1487 1472 4806 1489 1474 4807 1518 1513 4808 1490 1476 4809 1504 1492 4810 1497 1485 4811 1475 1460 4812 1497 1485 4813 1496 1484 4814 1478 1465 4815 1476 1461 4816 1496 1484 4817 1480 1466 4818 1478 1465 4819 1498 1486 4820 1480 1466 4821 1499 1487 4822 1500 1488 4823 1482 1467 4824 1500 1488 4825 1501 1490 4826 1486 1473 4827 1484 1469 4828 1501 1490 4829 1488 1475 4830 1486 1473 4831 1502 1489 4832 1488 1475 4833 1503 1491 4834 1504 1492 4835 1511 1499 4836 1520 1515 4837 1519 1514 4838 1512 1500 4839 1519 1514 4840 1522 1517 4841 1513 1501 4842 1522 1517 4843 1524 1519 4844 1505 1493 4845 1524 1519 4846 1526 1521 4847 1506 1494 4848 1526 1521 4849 1528 1529 4850 1507 1495 4851 1528 1529 4852 1530 1524 4853 1509 1497 4854 1508 1496 4855 1530 1524 4856 1510 1498 4857 1509 1497 4858 1532 1526 4859 1511 1499 4860 1510 1498 4861 1534 1528 4862 1535 1530 4863 1536 1531 4864 1537 1532 4865 1540 1533 4866 1541 1534 4867 1542 1535 4868 1543 1536 4869 1544 1537 4870 1540 1533 4871 1546 1538 4872 1547 1539 4873 1548 1540 4874 1550 1541 4875 1551 1542 4876 1552 1543 4877 1553 1544 4878 1554 1545 4879 1555 1546 4880 1557 1547 4881 1558 1548 4882 1559 1549 4883 1562 1550 4884 1563 1551 4885 1564 1552 4886 1565 1553 4887 1566 1554 4888 1567 1555 4889 1569 1556 4890 1570 1557 4891 1571 1558 4892 1573 1559 4893 1574 1560 4894 1575 1561 4895 1578 1562 4896 1579 1563 4897 1580 1564 4898 1568 1565 4899 1542 1535 4900 1541 1534 4901 1538 1566 4902 1537 1532 4903 1569 1556 4904 1582 1567 4905 1583 1568 4906 1584 1569 4907 1586 1570 4908 1570 1557 4909 1569 1556 4910 1569 1556 4911 1537 1532 4912 1587 1571 4913 1588 1572 4914 1587 1571 4915 1537 1532 4916 1590 1573 4917 1591 1574 4918 1592 1575 4919 1593 1576 4920 1539 1577 4921 1542 1535 4922 1594 1578 4923 1542 1535 4924 1568 1565 4925 1567 1555 4926 1596 1579 4927 1595 1580 4928 1598 1581 4929 1599 1582 4930 1600 1583 4931 1601 1584 4932 1602 1585 4933 1597 1586 4934 1604 1587 4935 1570 1557 4936 1586 1570 4937 1605 1588 4938 1606 1589 4939 1596 1579 4940 1607 1590 4941 1608 1591 4942 1609 1592 4943 1611 1593 4944 1605 1588 4945 1567 1555 4946 1570 1557 4947 1604 1587 4948 1612 1594 4949 1614 1595 4950 1611 1593 4951 1566 1554 4952 1615 1596 4953 1616 1597 4954 1617 1598 4955 1600 1583 4956 1618 1599 4957 1606 1589 4958 1620 1600 4959 1621 1601 4960 1622 1602 4961 1601 1584 4962 1600 1583 4963 1605 1588 4964 1604 1587 4965 1623 1603 4966 1624 1604 4967 1602 1585 4968 1601 1584 4969 1611 1593 4970 1625 1605 4971 1626 1606 4972 1627 1607 4973 1628 1608 4974 1629 1609 4975 1630 1610 4976 1593 1576 4977 1589 1611 4978 1592 1575 4979 1539 1577 4980 1592 1575 4981 1591 1574 4982 1632 1612 4983 1633 1613 4984 1588 1572 4985 1634 1614 4986 1635 1615 4987 1541 1534 4988 1538 1566 4989 1636 1616 4990 1637 1617 4991 1638 1618 4992 1634 1614 4993 1540 1533 4994 1565 1553 4995 1639 1619 4996 1640 1620 4997 1640 1620 4998 1641 1621 4999 1613 1622 5000 1642 1623 5001 1643 1624 5002 1572 1625 5003 1541 1534 5004 1635 1615 5005 1639 1619 5006 1538 1566 5007 1572 1625 5008 1643 1624 5009 1608 1591 5010 1644 1626 5011 1645 1627 5012 1646 1628 5013 1647 1629 5014 1616 1597 5015 1648 1630 5016 1649 1631 5017 1599 1582 5018 1651 1632 5019 1644 1626 5020 1608 1591 5021 1653 1633 5022 1586 1570 5023 1585 1634 5024 1585 1634 5025 1587 1571 5026 1547 1539 5027 1654 1635 5028 1547 1539 5029 1587 1571 5030 1655 1636 5031 1654 1635 5032 1588 1572 5033 1656 1637 5034 1590 1573 5035 1589 1611 5036 1626 1606 5037 1589 1611 5038 1593 1576 5039 1627 1607 5040 1593 1576 5041 1594 1578 5042 1579 1563 5043 1594 1578 5044 1595 1580 5045 1596 1579 5046 1607 1590 5047 1657 1638 5048 1608 1591 5049 1607 1590 5050 1596 1579 5051 1615 1596 5052 1603 1639 5053 1586 1570 5054 1617 1598 5055 1623 1603 5056 1604 1587 5057 1617 1598 5058 1616 1597 5059 1658 1640 5060 1659 1641 5061 1658 1640 5062 1616 1597 5063 1660 1642 5064 1661 1643 5065 1662 1644 5066 1649 1631 5067 1651 1632 5068 1650 1645 5069 1599 1582 5070 1650 1645 5071 1618 1599 5072 1650 1645 5073 1608 1591 5074 1606 1589 5075 1664 1646 5076 1665 1647 5077 1582 1567 5078 1666 1648 5079 1667 1649 5080 1546 1538 5081 1668 1650 5082 1669 1651 5083 1628 1608 5084 1670 1652 5085 1671 1653 5086 1550 1541 5087 1672 1654 5088 1673 1655 5089 1553 1544 5090 1672 1654 5091 1553 1544 5092 1556 1656 5093 1675 1657 5094 1676 1658 5095 1577 1659 5096 1677 1660 5097 1678 1661 5098 1564 1552 5099 1680 1662 5100 1681 1663 5101 1682 1664 5102 1684 1665 5103 1573 1559 5104 1576 1666 5105 1669 1651 5106 1685 1667 5107 1628 1608 5108 1670 1652 5109 1549 1668 5110 1687 1669 5111 1688 1670 5112 1666 1648 5113 1546 1538 5114 1689 1671 5115 1578 1562 5116 1690 1672 5117 1564 1552 5118 1678 1661 5119 1675 1657 5120 1664 1646 5121 1582 1567 5122 1581 1673 5123 1693 1674 5124 1694 1675 5125 1695 1676 5126 1673 1655 5127 1672 1654 5128 1697 1677 5129 1699 1678 5130 1700 1679 5131 1701 1680 5132 1690 1672 5133 1702 1681 5134 1703 1682 5135 1705 1683 5136 1706 1684 5137 1707 1685 5138 1675 1657 5139 1678 1661 5140 1709 1686 5141 1711 1687 5142 1712 1688 5143 1713 1689 5144 1686 1690 5145 1714 1691 5146 1715 1692 5147 1715 1692 5148 1716 1693 5149 1671 1653 5150 1718 1694 5151 1719 1695 5152 1668 1650 5153 1696 1696 5154 1720 1697 5155 1721 1698 5156 1722 1699 5157 1723 1700 5158 1688 1670 5159 1724 1701 5160 1725 1702 5161 1689 1671 5162 1674 1703 5163 1726 1704 5164 1727 1705 5165 1672 1654 5166 1727 1705 5167 1728 1706 5168 1691 1707 5169 1729 1708 5170 1730 1709 5171 1731 1710 5172 1732 1711 5173 1675 1657 5174 1732 1711 5175 1733 1712 5176 1676 1658 5177 1690 1672 5178 1734 1713 5179 1735 1714 5180 1665 1647 5181 1736 1715 5182 1737 1716 5183 1738 1717 5184 1739 1718 5185 1681 1663 5186 1740 1719 5187 1741 1720 5188 1678 1661 5189 1678 1661 5190 1741 1720 5191 1742 1721 5192 1744 1722 5193 1745 1723 5194 1746 1724 5195 1748 1725 5196 1749 1726 5197 1750 1727 5198 1751 1728 5199 1752 1729 5200 1753 1730 5201 1755 1731 5202 1756 1732 5203 1752 1729 5204 1758 1733 5205 1759 1734 5206 1760 1735 5207 1762 1736 5208 1758 1733 5209 1757 1737 5210 1763 1738 5211 1764 1739 5212 1762 1736 5213 1765 1740 5214 1766 1741 5215 1767 1742 5216 1769 1743 5217 1765 1740 5218 1770 1744 5219 1759 1734 5220 1771 1745 5221 1772 1746 5222 1774 1747 5223 1775 1748 5224 1776 1749 5225 1777 1750 5226 1778 1751 5227 1776 1749 5228 1761 1752 5229 1757 1737 5230 1779 1753 5231 1781 1754 5232 1761 1752 5233 1780 1755 5234 1778 1751 5235 1782 1756 5236 1783 1757 5237 1784 1758 5238 1773 1759 5239 1776 1749 5240 1760 1735 5241 1785 1760 5242 1786 1761 5243 1757 1737 5244 1760 1735 5245 1786 1761 5246 1619 1762 5247 1622 1602 5248 1771 1745 5249 1661 1643 5250 1660 1642 5251 1787 1763 5252 1764 1739 5253 1788 1764 5254 1789 1765 5255 1787 1763 5256 1620 1600 5257 1619 1762 5258 1790 1766 5259 1791 1767 5260 1792 1768 5261 1790 1766 5262 1794 1769 5263 1795 1770 5264 1620 1600 5265 1660 1642 5266 1663 1771 5267 1661 1643 5268 1789 1765 5269 1788 1764 5270 1787 1763 5271 1660 1642 5272 1620 1600 5273 1789 1765 5274 1661 1643 5275 1787 1763 5276 1796 1772 5277 1737 1716 5278 1736 1715 5279 1798 1773 5280 1742 1721 5281 1741 1720 5282 1800 1774 5283 1799 1775 5284 1741 1720 5285 1801 1776 5286 1802 1777 5287 1739 1718 5288 1803 1778 5289 1804 1779 5290 1730 1709 5291 1805 1780 5292 1735 1714 5293 1734 1713 5294 1807 1781 5295 1808 1782 5296 1733 1712 5297 1807 1781 5298 1732 1711 5299 1731 1710 5300 1810 1783 5301 1811 1784 5302 1723 1700 5303 1813 1785 5304 1728 1706 5305 1727 1705 5306 1726 1704 5307 1814 1786 5308 1812 1787 5309 1725 1702 5310 1724 1701 5311 1816 1788 5312 1817 1789 5313 1818 1790 5314 1719 1695 5315 1819 1791 5316 1820 1792 5317 1716 1693 5318 1714 1691 5319 1821 1793 5320 1819 1791 5321 1822 1794 5322 1721 1698 5323 1720 1697 5324 1676 1658 5325 1690 1672 5326 1578 1562 5327 1733 1712 5328 1734 1713 5329 1690 1672 5330 1808 1782 5331 1806 1795 5332 1734 1713 5333 1753 1730 5334 1748 1725 5335 1747 1796 5336 1825 1797 5337 1705 1683 5338 1704 1798 5339 1826 1799 5340 1744 1722 5341 1827 1800 5342 1803 1778 5343 1729 1708 5344 1828 1801 5345 1667 1649 5346 1828 1801 5347 1729 1708 5348 1691 1707 5349 1581 1673 5350 1546 1538 5351 1546 1538 5352 1581 1673 5353 1584 1569 5354 1577 1659 5355 1580 1564 5356 1561 1802 5357 1584 1569 5358 1583 1568 5359 1652 1803 5360 1830 1804 5361 1653 1633 5362 1652 1803 5363 1557 1547 5364 1560 1805 5365 1607 1590 5366 1657 1638 5367 1607 1590 5368 1560 1805 5369 1580 1564 5370 1579 1563 5371 1657 1638 5372 1575 1561 5373 1583 1568 5374 1582 1567 5375 1830 1804 5376 1583 1568 5377 1575 1561 5378 1560 1805 5379 1559 1549 5380 1562 1550 5381 1562 1550 5382 1559 1549 5383 1682 1664 5384 1679 1806 5385 1682 1664 5386 1559 1549 5387 1683 1807 5388 1737 1716 5389 1831 1808 5390 1737 1716 5391 1796 1772 5392 1832 1809 5393 1833 1810 5394 1834 1811 5395 1713 1689 5396 1802 1777 5397 1800 1774 5398 1740 1719 5399 1739 1718 5400 1740 1719 5401 1677 1660 5402 1681 1663 5403 1677 1660 5404 1563 1551 5405 1683 1807 5406 1576 1666 5407 1582 1567 5408 1629 1609 5409 1548 1540 5410 1547 1539 5411 1628 1608 5412 1545 1812 5413 1548 1540 5414 1555 1546 5415 1579 1563 5416 1578 1562 5417 1554 1545 5418 1627 1607 5419 1579 1563 5420 1835 1813 5421 1656 1637 5422 1626 1606 5423 1549 1668 5424 1552 1543 5425 1836 1814 5426 1654 1635 5427 1655 1636 5428 1837 1815 5429 1723 1700 5430 1838 1816 5431 1666 1648 5432 1811 1784 5433 1839 1817 5434 1838 1816 5435 1840 1818 5436 1841 1819 5437 1701 1680 5438 1814 1786 5439 1726 1704 5440 1725 1702 5441 1725 1702 5442 1726 1704 5443 1674 1703 5444 1685 1667 5445 1688 1670 5446 1545 1812 5447 1556 1656 5448 1578 1562 5449 1689 1671 5450 1553 1544 5451 1687 1669 5452 1836 1814 5453 1552 1543 5454 1625 1605 5455 1554 1545 5456 1551 1542 5457 1835 1813 5458 1625 1605 5459 1629 1609 5460 1837 1815 5461 1842 1820 5462 1630 1610 5463 1842 1820 5464 1843 1821 5465 1719 1695 5466 1844 1822 5467 1669 1651 5468 1818 1790 5469 1845 1823 5470 1844 1822 5471 1847 1824 5472 1693 1674 5473 1692 1825 5474 1821 1793 5475 1714 1691 5476 1721 1698 5477 1673 1655 5478 1721 1698 5479 1714 1691 5480 1686 1690 5481 1687 1669 5482 1553 1544 5483 1717 1826 5484 1668 1650 5485 1631 1827 5486 1699 1678 5487 1698 1828 5488 1849 1829 5489 1700 1679 5490 1699 1678 5491 1848 1830 5492 1851 1831 5493 1840 1818 5494 1700 1679 5495 1852 1832 5496 1841 1819 5497 1840 1818 5498 1854 1833 5499 1855 1834 5500 1856 1835 5501 1858 1836 5502 1853 1837 5503 1856 1835 5504 1850 1838 5505 1848 1830 5506 1860 1839 5507 1848 1830 5508 1849 1829 5509 1861 1840 5510 1862 1841 5511 1863 1842 5512 1864 1843 5513 1867 1844 5514 1868 1845 5515 1864 1843 5516 1869 1846 5517 1852 1832 5518 1851 1831 5519 1870 1847 5520 1851 1831 5521 1850 1838 5522 1872 1848 5523 1873 1849 5524 1874 1850 5525 1876 1851 5526 1871 1852 5527 1874 1850 5528 1695 1676 5529 1694 1675 5530 1878 1853 5531 1692 1825 5532 1695 1676 5533 1877 1854 5534 1880 1855 5535 1846 1856 5536 1692 1825 5537 1881 1857 5538 1847 1824 5539 1846 1856 5540 1879 1858 5541 1877 1854 5542 1883 1859 5543 1877 1854 5544 1878 1853 5545 1884 1860 5546 1885 1861 5547 1886 1862 5548 1887 1863 5549 1888 1864 5550 1887 1863 5551 1886 1862 5552 1889 1865 5553 1881 1857 5554 1880 1855 5555 1890 1866 5556 1880 1855 5557 1879 1858 5558 1756 1732 5559 1707 1685 5560 1706 1684 5561 1744 1722 5562 1891 1867 5563 1892 1868 5564 1894 1869 5565 1891 1867 5566 1744 1722 5567 1825 1797 5568 1824 1870 5569 1749 1726 5570 1705 1683 5571 1825 1797 5572 1748 1725 5573 1752 1729 5574 1706 1684 5575 1705 1683 5576 1896 1871 5577 1897 1872 5578 1898 1873 5579 1899 1874 5580 1900 1875 5581 1896 1871 5582 1711 1687 5583 1710 1876 5584 1902 1877 5585 1712 1688 5586 1711 1687 5587 1901 1878 5588 1904 1879 5589 1833 1810 5590 1712 1688 5591 1905 1880 5592 1834 1811 5593 1833 1810 5594 1903 1881 5595 1901 1878 5596 1907 1882 5597 1901 1878 5598 1902 1877 5599 1908 1883 5600 1909 1884 5601 1899 1874 5602 1895 1885 5603 1910 1886 5604 1911 1887 5605 1895 1885 5606 1912 1888 5607 1905 1880 5608 1904 1879 5609 1913 1889 5610 1904 1879 5611 1903 1881 5612 1914 1890 5613 1915 1891 5614 1916 1892 5615 1919 1893 5616 1917 1894 5617 1916 1892 5618 1920 1895 5619 1919 1893 5620 1918 1896 5621 1920 1895 5622 1921 1897 5623 1923 1898 5624 1924 1899 5625 1925 1900 5626 1926 1901 5627 1924 1899 5628 1928 1902 5629 1929 1903 5630 1930 1904 5631 1931 1905 5632 1932 1906 5633 1935 1907 5634 1930 1904 5635 1933 1908 5636 1936 1909 5637 1935 1907 5638 1934 1910 5639 1936 1909 5640 1937 1911 5641 1939 1912 5642 1940 1913 5643 1941 1914 5644 1942 1915 5645 1941 1914 5646 1940 1913 5647 1944 1916 5648 1946 1917 5649 1947 1918 5650 1948 1919 5651 1946 1917 5652 1950 1920 5653 1951 1921 5654 1952 1922 5655 1953 1923 5656 1954 1924 5657 1957 1925 5658 1952 1922 5659 1955 1926 5660 1957 1925 5661 1956 1927 5662 1959 1928 5663 1958 1929 5664 1959 1928 5665 1961 1930 5666 1962 1931 5667 1963 1932 5668 1964 1933 5669 1966 1934 5670 1963 1932 5671 1962 1931 5672 1968 1935 5673 1969 1936 5674 1970 1937 5675 1972 1938 5676 1973 1939 5677 1968 1935 5678 1973 1939 5679 1972 1938 5680 1975 1940 5681 1974 1941 5682 1975 1940 5683 1976 1942 5684 1978 1943 5685 1979 1944 5686 1980 1945 5687 1860 1839 5688 1861 1840 5689 1981 1946 5690 1859 1947 5691 1860 1839 5692 1982 1948 5693 1859 1947 5694 1983 1949 5695 1984 1950 5696 1870 1847 5697 1984 1950 5698 1985 1951 5699 1986 1952 5700 1987 1953 5701 1988 1954 5702 1747 1796 5703 1750 1727 5704 1989 1955 5705 1754 1956 5706 1747 1796 5707 1990 1957 5708 1751 1728 5709 1754 1956 5710 1991 1958 5711 1751 1728 5712 1992 1959 5713 1993 1960 5714 1994 1961 5715 1995 1962 5716 1996 1963 5717 1997 1964 5718 1998 1965 5719 1999 1966 5720 2001 1967 5721 2002 1968 5722 2003 1969 5723 1907 1882 5724 1908 1883 5725 2004 1970 5726 1906 1971 5727 1907 1882 5728 2005 1972 5729 1906 1971 5730 2006 1973 5731 2007 1974 5732 1913 1889 5733 2007 1974 5734 2008 1975 5735 2009 1976 5736 2010 1977 5737 2011 1978 5738 2013 1979 5739 2014 1980 5740 2015 1981 5741 2017 1982 5742 2014 1980 5743 2013 1979 5744 1883 1859 5745 1884 1860 5746 2019 1983 5747 1882 1984 5748 1883 1859 5749 2020 1985 5750 1882 1984 5751 2021 1986 5752 2022 1987 5753 1890 1866 5754 2022 1987 5755 2023 1988 5756 1970 1937 5757 2024 1989 5758 1971 1990 5759 2025 1991 5760 2026 1992 5761 1967 1993 5762 1962 1931 5763 1965 1994 5764 2027 1995 5765 2026 1992 5766 2025 1991 5767 1818 1790 5768 2024 1989 5769 1820 1792 5770 1819 1791 5771 1821 1793 5772 1972 1938 5773 1971 1990 5774 1972 1938 5775 1821 1793 5776 1822 1794 5777 2028 1996 5778 1975 1940 5779 1822 1794 5780 2025 1991 5781 2027 1995 5782 1845 1823 5783 1955 1926 5784 1954 1924 5785 2029 1997 5786 2030 1998 5787 2031 1999 5788 1950 1920 5789 1946 1917 5790 1949 2000 5791 2032 2001 5792 2031 1999 5793 2030 1998 5794 1811 1784 5795 1813 1785 5796 1812 1787 5797 2029 1997 5798 1956 1927 5799 1955 1926 5800 1812 1787 5801 1956 1927 5802 1814 1786 5803 1815 2002 5804 2033 2003 5805 1959 1928 5806 1815 2002 5807 2030 1998 5808 2032 2001 5809 1839 1817 5810 1924 1899 5811 2034 2004 5812 2035 2005 5813 1924 1899 5814 1927 2006 5815 2036 2007 5816 1918 1896 5817 1916 1892 5818 1806 1795 5819 1921 1897 5820 1918 1896 5821 1808 1782 5822 2037 2008 5823 1921 1897 5824 1807 1781 5825 2034 2004 5826 2036 2007 5827 1804 1779 5828 2034 2004 5829 1803 1778 5830 1829 2009 5831 1916 1892 5832 2038 2010 5833 1806 1795 5834 1940 1913 5835 2039 2011 5836 2040 2012 5837 2039 2011 5838 1940 1913 5839 1943 2013 5840 1934 1910 5841 1933 1908 5842 1799 1775 5843 1937 1911 5844 1934 1910 5845 1800 1774 5846 2042 2014 5847 1937 1911 5848 1802 1777 5849 1796 1772 5850 2039 2011 5851 2041 2015 5852 2039 2011 5853 1796 1772 5854 1797 2016 5855 2043 2017 5856 1798 1773 5857 1799 1775 5858 2044 2018 5859 2045 2019 5860 2018 2020 5861 2044 2018 5862 2013 1979 5863 2016 2021 5864 2045 2019 5865 2044 2018 5866 1963 1932 5867 2020 1985 5868 2047 2022 5869 1968 1935 5870 1973 1939 5871 2021 1986 5872 2020 1985 5873 2021 1986 5874 1973 1939 5875 1974 1941 5876 2048 2023 5877 2022 1987 5878 1974 1941 5879 1963 1932 5880 2044 2018 5881 2046 2024 5882 2049 2025 5883 2050 2026 5884 1988 1954 5885 1981 1946 5886 2052 2027 5887 1982 1948 5888 2049 2025 5889 2053 2028 5890 1980 1945 5891 2052 2027 5892 1953 1923 5893 1952 1922 5894 1983 1949 5895 1982 1948 5896 1952 1922 5897 1983 1949 5898 1957 1925 5899 1958 1929 5900 2054 2029 5901 1984 1950 5902 1958 1929 5903 1947 1918 5904 2049 2025 5905 2051 2030 5906 2053 2028 5907 2049 2025 5908 1947 1918 5909 2000 2031 5910 1999 1966 5911 2055 2032 5912 2055 2032 5913 1999 1966 5914 1996 1963 5915 1991 1958 5916 1990 1957 5917 1917 1894 5918 1992 1959 5919 1991 1958 5920 1919 1893 5921 2058 2033 5922 1992 1959 5923 1920 1895 5924 1925 1900 5925 2055 2032 5926 2057 2034 5927 1925 1900 5928 1929 1903 5929 2056 2035 5930 1990 1957 5931 2059 2036 5932 1917 1894 5933 2009 1976 5934 2012 2037 5935 2061 2038 5936 2004 1970 5937 2062 2039 5938 2005 1972 5939 2009 1976 5940 2060 2040 5941 2063 2041 5942 2062 2039 5943 1931 1905 5944 1930 1904 5945 2006 1973 5946 2005 1972 5947 1930 1904 5948 2006 1973 5949 1935 1907 5950 1936 1909 5951 2064 2042 5952 2007 1974 5953 1936 1909 5954 2060 2040 5955 2061 2038 5956 1942 1915 5957 2060 2040 5958 1941 1914 5959 1945 2043 5960 1646 1628 5961 1784 1758 5962 1783 1757 5963 1644 1626 5964 1786 1761 5965 2065 2044 5966 1779 1753 5967 1786 1761 5968 1644 1626 5969 1780 1755 5970 1779 1753 5971 1651 1632 5972 2066 2045 5973 1780 1755 5974 1649 1631 5975 1782 1756 5976 1659 1641 5977 1647 1629 5978 1787 1763 5979 1619 1762 5980 1759 1734 5981 1762 1736 5982 1789 1765 5983 1787 1763 5984 1774 1747 5985 2067 2046 5986 2068 2047 5987 2069 2048 5988 1777 1750 5989 1775 1748 5990 1535 1530 5991 1637 1617 5992 1638 1618 5993 1536 1531 5994 1535 1530 5995 1544 1537 5996 1632 1612 5997 1536 1531 5998 1543 1536 5999 1633 1613 6000 1632 1612 6001 1591 1574 6002 1656 1637 6003 1655 1636 6004 1633 1613 6005 1835 1813 6006 1837 1815 6007 1655 1636 6008 1837 1815 6009 1835 1813 6010 1551 1542 6011 1550 1541 6012 1843 1821 6013 1842 1820 6014 1671 1653 6015 1717 1826 6016 1843 1821 6017 1716 1693 6018 1718 1694 6019 1717 1826 6020 1820 1792 6021 1817 1789 6022 1718 1694 6023 2024 1989 6024 2026 1992 6025 1817 1789 6026 2026 1992 6027 2024 1989 6028 1970 1937 6029 1969 1936 6030 1966 1934 6031 1967 1993 6032 2047 2022 6033 2045 2019 6034 1966 1934 6035 2045 2019 6036 2047 2022 6037 2019 1983 6038 1884 1860 6039 2071 2049 6040 2018 2020 6041 1878 1853 6042 2072 2050 6043 2071 2049 6044 1694 1675 6045 2073 2051 6046 2072 2050 6047 1693 1674 6048 2074 2052 6049 2073 2051 6050 2075 2053 6051 2074 2052 6052 1693 1674 6053 2076 2054 6054 2075 2053 6055 1847 1824 6056 2077 2055 6057 2076 2054 6058 1881 1857 6059 1889 1865 6060 2023 1988 6061 2016 2021 6062 2023 1988 6063 2048 2023 6064 2046 2024 6065 1964 1933 6066 2046 2024 6067 2048 2023 6068 1965 1994 6069 1964 1933 6070 1977 2056 6071 2028 1996 6072 2027 1995 6073 1965 1994 6074 1823 2057 6075 1845 1823 6076 2027 1995 6077 1720 1697 6078 1844 1822 6079 1845 1823 6080 1844 1822 6081 1720 1697 6082 1696 1696 6083 1696 1696 6084 1697 1677 6085 1685 1667 6086 1722 1699 6087 1685 1667 6088 1697 1677 6089 1810 1783 6090 1722 1699 6091 1728 1706 6092 2031 1999 6093 1810 1783 6094 1813 1785 6095 1950 1920 6096 2031 1999 6097 2029 1997 6098 1953 1923 6099 1951 1921 6100 1950 1920 6101 2052 2027 6102 2053 2028 6103 1951 1921 6104 2053 2028 6105 2052 2027 6106 1981 1946 6107 1861 1840 6108 1978 1943 6109 1980 1945 6110 1849 1829 6111 2078 2058 6112 1978 1943 6113 1698 1828 6114 2079 2059 6115 2078 2058 6116 2079 2059 6117 1698 1828 6118 1701 1680 6119 2081 2060 6120 2080 2061 6121 1701 1680 6122 2082 2062 6123 2081 2060 6124 1841 1819 6125 1987 1953 6126 2082 2062 6127 1852 1832 6128 1869 1846 6129 1985 1951 6130 1988 1954 6131 2051 2030 6132 1988 1954 6133 1985 1951 6134 2054 2029 6135 1960 2063 6136 1948 1919 6137 1960 2063 6138 1961 1930 6139 1949 2000 6140 1949 2000 6141 1961 1930 6142 2033 2003 6143 1816 1788 6144 1839 1817 6145 2032 2001 6146 1724 1701 6147 1838 1816 6148 1839 1817 6149 1838 1816 6150 1724 1701 6151 1703 1682 6152 1667 1649 6153 1666 1648 6154 1703 1682 6155 1828 1801 6156 1667 1649 6157 1702 1681 6158 1829 2009 6159 1828 1801 6160 1735 1714 6161 2038 2010 6162 2035 2005 6163 1829 2009 6164 2035 2005 6165 2038 2010 6166 1915 1891 6167 1928 1902 6168 1915 1891 6169 1914 1890 6170 2059 2036 6171 2056 2035 6172 1929 1903 6173 2056 2035 6174 2059 2036 6175 1989 1955 6176 1750 1727 6177 2083 2064 6178 2000 2031 6179 1749 1726 6180 2084 2065 6181 2083 2064 6182 1824 1870 6183 2085 2066 6184 2084 2065 6185 2085 2066 6186 1824 1870 6187 1704 1798 6188 1704 1798 6189 1707 1685 6190 2087 2067 6191 2088 2068 6192 2087 2067 6193 1707 1685 6194 1995 1962 6195 2088 2068 6196 1756 1732 6197 1755 1731 6198 1993 1960 6199 1996 1963 6200 2057 2034 6201 1996 1963 6202 1993 1960 6203 2058 2033 6204 1922 2069 6205 1926 1901 6206 1922 2069 6207 1923 1898 6208 1927 2006 6209 2036 2007 6210 1927 2006 6211 1923 1898 6212 2037 2008 6213 1809 2070 6214 1804 1779 6215 1804 1779 6216 1809 2070 6217 1731 1710 6218 1730 1709 6219 1731 1710 6220 1708 2071 6221 1664 1646 6222 1708 2071 6223 1709 1686 6224 1736 1715 6225 1665 1647 6226 1709 1686 6227 1797 2016 6228 1736 1715 6229 1742 1721 6230 2040 2012 6231 1797 2016 6232 1798 1773 6233 1944 1916 6234 2040 2012 6235 2043 2017 6236 1945 2043 6237 1944 1916 6238 1932 1906 6239 2063 2041 6240 1945 2043 6241 1931 1905 6242 2003 1969 6243 2063 2041 6244 2062 2039 6245 1908 1883 6246 2001 1967 6247 2003 1969 6248 1902 1877 6249 2089 2072 6250 2001 1967 6251 1710 1876 6252 2090 2073 6253 2089 2072 6254 2090 2073 6255 1710 1876 6256 1713 1689 6257 2092 2074 6258 2091 2075 6259 1713 1689 6260 2093 2076 6261 2092 2074 6262 1834 1811 6263 2094 2077 6264 2093 2076 6265 1905 1880 6266 1912 1888 6267 2008 1975 6268 2012 2037 6269 2061 2038 6270 2012 2037 6271 2008 1975 6272 2061 2038 6273 2064 2042 6274 1938 2078 6275 1942 1915 6276 1938 2078 6277 1939 1912 6278 2042 2014 6279 2041 2015 6280 1943 2013 6281 2041 2015 6282 2042 2014 6283 1801 1776 6284 1832 1809 6285 1801 1776 6286 1738 1717 6287 1831 1808 6288 1738 1717 6289 1680 1662 6290 1684 1665 6291 1680 1662 6292 1679 1806 6293 1574 1560 6294 1573 1559 6295 1679 1806 6296 1830 1804 6297 1574 1560 6298 1558 1548 6299 1830 1804 6300 1557 1547 6301 1610 2079 6302 1615 1596 6303 1653 1633 6304 1610 2079 6305 1646 1628 6306 1615 1596 6307 1609 1592 6308 1784 1758 6309 1646 1628 6310 1645 1627 6311 1785 1760 6312 1773 1759 6313 1784 1758 6314 1774 1747 6315 1773 1759 6316 1785 1760 6317 1771 1745 6318 2067 2046 6319 1774 1747 6320 1622 1602 6321 2095 2080 6322 2067 2046 6323 1621 1601 6324 2096 2081 6325 2095 2080 6326 1663 1771 6327 2097 2082 6328 2096 2081 6329 2098 2083 6330 2097 2082 6331 1663 1771 6332 2099 2084 6333 2098 2083 6334 1662 1644 6335 2100 2085 6336 2099 2084 6337 1788 1764 6338 1777 1750 6339 2100 2085 6340 1764 1739 6341 1777 1750 6342 1763 1738 6343 1781 1754 6344 1778 1751 6345 1781 1754 6346 2066 2045 6347 1782 1756 6348 2066 2045 6349 1648 1630 6350 1659 1641 6351 1648 1630 6352 1598 1581 6353 1658 1640 6354 1598 1581 6355 1597 1586 6356 1602 1585 6357 1624 1604 6358 1623 1603 6359 1624 1604 6360 1602 1585 6361 1614 1595 6362 1612 1594 6363 1614 1595 6364 1613 1622 6365 1641 1621 6366 1642 1623 6367 1571 1558 6368 2101 2086 6369 1638 1618 6370 1637 1617 6371 2103 2087 6372 1635 1615 6373 1634 1614 6374 1639 1619 6375 1635 1615 6376 2103 2087 6377 1640 1620 6378 1639 1619 6379 2105 2088 6380 1642 1623 6381 1641 1621 6382 2108 2089 6383 1643 1624 6384 1642 1623 6385 2107 2090 6386 1636 1616 6387 1643 1624 6388 2109 2091 6389 1637 1617 6390 1636 1616 6391 2110 2092 6392 2104 2093 6393 1634 1614 6394 1638 1618 6395 1641 1621 6396 1640 1620 6397 2106 2094 6398 1781 1754 6399 1763 1738 6400 1761 1752 6401 2066 2045 6402 1781 1754 6403 1780 1755 6404 1786 1761 6405 1785 1760 6406 2065 2044 6407 1760 1735 6408 1772 1746 6409 1785 1760 6410 1937 1911 6411 2042 2014 6412 1939 1912 6413 2042 2014 6414 1802 1777 6415 1801 1776 6416 1933 1908 6417 2043 2017 6418 1799 1775 6419 1932 1906 6420 2043 2017 6421 1933 1908 6422 2007 1974 6423 2064 2042 6424 2008 1975 6425 2064 2042 6426 1936 1909 6427 1938 2078 6428 2005 1972 6429 2062 2039 6430 1930 1904 6431 1921 1897 6432 2037 2008 6433 1923 1898 6434 2037 2008 6435 1807 1781 6436 1809 2070 6437 2038 2010 6438 1805 1780 6439 1806 1795 6440 1915 1891 6441 2038 2010 6442 1916 1892 6443 2059 2036 6444 1914 1890 6445 1917 1894 6446 1989 1955 6447 2059 2036 6448 1990 1957 6449 1992 1959 6450 2058 2033 6451 1993 1960 6452 2058 2033 6453 1920 1895 6454 1922 2069 6455 1961 1930 6456 1959 1928 6457 2033 2003 6458 1815 2002 6459 1816 1788 6460 2033 2003 6461 1955 1926 6462 2029 1997 6463 1812 1787 6464 1984 1950 6465 2054 2029 6466 1985 1951 6467 2054 2029 6468 1958 1929 6469 1960 2063 6470 1982 1948 6471 2052 2027 6472 1952 1922 6473 2047 2022 6474 1969 1936 6475 1968 1935 6476 2019 1983 6477 2047 2022 6478 2020 1985 6479 2023 1988 6480 2022 1987 6481 2048 2023 6482 1974 1941 6483 1977 2056 6484 2048 2023 6485 1975 1940 6486 2028 1996 6487 1976 1942 6488 1822 1794 6489 1823 2057 6490 2028 1996 6491 1971 1990 6492 2024 1989 6493 1819 1791 6494 2010 1977 6495 2009 1976 6496 2003 1969 6497 1895 1885 6498 1911 1887 6499 2111 2095 6500 2011 1978 6501 2094 2077 6502 2012 2037 6503 2112 2096 6504 1910 1886 6505 1895 1885 6506 2093 2076 6507 2113 2097 6508 2092 2074 6509 2090 2073 6510 2114 2098 6511 2089 2072 6512 2115 2099 6513 2116 2100 6514 2002 1968 6515 2089 2072 6516 2114 2098 6517 2115 2099 6518 2117 2101 6519 2118 2102 6520 2011 1978 6521 2116 2100 6522 2117 2101 6523 2010 1977 6524 2118 2102 6525 2119 2103 6526 2094 2077 6527 2119 2103 6528 2113 2097 6529 2093 2076 6530 1898 1873 6531 1897 1872 6532 2092 2074 6533 2115 2099 6534 1909 1884 6535 2111 2095 6536 2114 2098 6537 1899 1874 6538 1909 1884 6539 2117 2101 6540 1911 1887 6541 1910 1886 6542 2111 2095 6543 1911 1887 6544 2117 2101 6545 1910 1886 6546 2112 2096 6547 2119 2103 6548 2112 2096 6549 1898 1873 6550 2113 2097 6551 2092 2074 6552 2120 2104 6553 2091 2075 6554 2091 2075 6555 2121 2105 6556 2122 2106 6557 1899 1874 6558 2114 2098 6559 2090 2073 6560 2091 2075 6561 2122 2106 6562 2090 2073 6563 2120 2104 6564 2121 2105 6565 2091 2075 6566 1897 1872 6567 2120 2104 6568 2092 2074 6569 1896 1871 6570 2121 2105 6571 2120 2104 6572 2122 2106 6573 2121 2105 6574 1896 1871 6575 2090 2073 6576 2122 2106 6577 1900 1875 6578 1898 1873 6579 2112 2096 6580 1895 1885 6581 1909 1884 6582 1895 1885 6583 2111 2095 6584 2068 2047 6585 2070 2107 6586 1775 1748 6587 1765 1740 6588 1767 1742 6589 1770 1744 6590 2100 2085 6591 1777 1750 6592 2069 2048 6593 2123 2108 6594 2124 2109 6595 1766 1741 6596 2070 2107 6597 2125 2110 6598 2126 2111 6599 2127 2112 6600 2128 2113 6601 2068 2047 6602 2095 2080 6603 2129 2114 6604 2127 2112 6605 2099 2084 6606 2130 2115 6607 2098 2083 6608 2096 2081 6609 2129 2114 6610 2095 2080 6611 2128 2113 6612 2125 2110 6613 2070 2107 6614 2126 2111 6615 2131 2116 6616 2100 2085 6617 2131 2116 6618 2130 2115 6619 2099 2084 6620 2125 2110 6621 1767 1742 6622 1766 1741 6623 2127 2112 6624 1768 2117 6625 1770 1744 6626 2129 2114 6627 1769 1743 6628 1768 2117 6629 1793 2118 6630 1792 1768 6631 2098 2083 6632 2097 2082 6633 1791 1767 6634 1795 1770 6635 2098 2083 6636 1792 1768 6637 2097 2082 6638 2096 2081 6639 1795 1770 6640 1794 1769 6641 1770 1744 6642 1767 1742 6643 2125 2110 6644 2126 2111 6645 1766 1741 6646 2124 2109 6647 2124 2109 6648 2123 2108 6649 2130 2115 6650 2096 2081 6651 1794 1769 6652 1769 1743 6653 1765 1740 6654 1769 1743 6655 1794 1769 6656 1765 1740 6657 1790 1766 6658 1793 2118 6659 2123 2108 6660 1793 2118 6661 2098 2083 6662 2097 2082 6663 1795 1770 6664 2096 2081 6665 1792 1768 6666 1791 1767 6667 2097 2082 6668 2132 2119 6669 2133 2120 6670 1995 1962 6671 2133 2120 6672 2134 2121 6673 2088 2068 6674 1997 1964 6675 2135 2122 6676 2136 2123 6677 2084 2065 6678 2137 2124 6679 2138 2125 6680 2088 2068 6681 2134 2121 6682 2087 2067 6683 2085 2066 6684 2137 2124 6685 2084 2065 6686 1743 2126 6687 1746 1724 6688 2133 2120 6689 1746 1724 6690 1745 1723 6691 2134 2121 6692 2135 2122 6693 1826 1799 6694 1827 1800 6695 2137 2124 6696 1893 2127 6697 2139 2128 6698 2134 2121 6699 1745 1723 6700 1892 1868 6701 2087 2067 6702 2140 2129 6703 2086 2130 6704 2086 2130 6705 2141 2131 6706 2142 2132 6707 1894 1869 6708 1893 2127 6709 2137 2124 6710 1892 1868 6711 2140 2129 6712 2087 2067 6713 1891 1867 6714 2141 2131 6715 2140 2129 6716 2142 2132 6717 2141 2131 6718 1891 1867 6719 2085 2066 6720 2142 2132 6721 1894 1869 6722 2086 2130 6723 2142 2132 6724 2085 2066 6725 2140 2129 6726 2141 2131 6727 2086 2130 6728 2139 2128 6729 1893 2127 6730 1744 1722 6731 2138 2125 6732 2139 2128 6733 1826 1799 6734 2083 2064 6735 2138 2125 6736 2135 2122 6737 2083 2064 6738 1997 1964 6739 2000 2031 6740 1827 1800 6741 1744 1722 6742 1743 2126 6743 2136 2123 6744 1827 1800 6745 1743 2126 6746 1998 1965 6747 2136 2123 6748 2132 2119 6749 1999 1966 6750 1998 1965 6751 1994 1961 6752 2082 2062 6753 2143 2133 6754 2081 2060 6755 2079 2059 6756 2144 2134 6757 2078 2058 6758 1978 1943 6759 2145 2135 6760 2146 2136 6761 2078 2058 6762 2144 2134 6763 2145 2135 6764 1986 1952 6765 2147 2137 6766 2148 2138 6767 2148 2138 6768 2143 2133 6769 2082 2062 6770 1855 1834 6771 1854 1833 6772 2081 2060 6773 2081 2060 6774 1854 1833 6775 2080 2061 6776 2080 2061 6777 1853 1837 6778 1858 1836 6779 2079 2059 6780 1858 1836 6781 1857 2139 6782 1862 1841 6783 1865 2140 6784 2146 2136 6785 2144 2134 6786 1863 1842 6787 1862 1841 6788 1868 1845 6789 1867 1844 6790 2148 2138 6791 1867 1844 6792 1866 2141 6793 2143 2133 6794 2079 2059 6795 1857 2139 6796 1863 1842 6797 1857 2139 6798 1856 1835 6799 1864 1843 6800 1855 1834 6801 1866 2141 6802 1864 1843 6803 1866 2141 6804 1855 1834 6805 2081 2060 6806 1854 1833 6807 1853 1837 6808 2080 2061 6809 2080 2061 6810 1858 1836 6811 2079 2059 6812 1979 1944 6813 2149 2142 6814 2050 2026 6815 2146 2136 6816 2150 2143 6817 2149 2142 6818 1865 2140 6819 2151 2144 6820 2150 2143 6821 1864 1843 6822 2151 2144 6823 1865 2140 6824 1868 1845 6825 2151 2144 6826 1864 1843 6827 2151 2144 6828 1868 1845 6829 2147 2137 6830 2149 2142 6831 2150 2143 6832 2147 2137 6833 2050 2026 6834 2149 2142 6835 1986 1952 6836 2076 2054 6837 2152 2145 6838 2075 2053 6839 2073 2051 6840 2153 2146 6841 2072 2050 6842 2154 2147 6843 2155 2148 6844 2014 1980 6845 2072 2050 6846 2153 2146 6847 2156 2149 6848 2155 2148 6849 2157 2150 6850 2015 1981 6851 2158 2151 6852 2152 2145 6853 2076 2054 6854 1873 1849 6855 1872 1848 6856 2075 2053 6857 2075 2053 6858 1872 1848 6859 2074 2052 6860 2074 2052 6861 1876 1851 6862 2073 2051 6863 2073 2051 6864 1876 1851 6865 1875 2152 6866 1885 1861 6867 1887 1863 6868 2155 2148 6869 2153 2146 6870 2159 2153 6871 2160 2154 6872 1887 1863 6873 1888 1864 6874 2157 2150 6875 2161 2155 6876 2162 2156 6877 2152 2145 6878 2073 2051 6879 1875 2152 6880 2159 2153 6881 1875 2152 6882 1874 1850 6883 1886 1862 6884 1873 1849 6885 2162 2156 6886 1886 1862 6887 2162 2156 6888 1873 1849 6889 2075 2053 6890 2074 2052 6891 1871 1852 6892 1876 1851 6893 1872 1848 6894 1871 1852 6895 2074 2052 6896 2015 1981 6897 2077 2055 6898 2016 2021 6899 2157 2150 6900 2158 2151 6901 2077 2055 6902 2161 2155 6903 2158 2151 6904 2157 2150 6905 2162 2156 6906 2161 2155 6907 1888 1864 6908 2160 2154 6909 2159 2153 6910 1886 1862 6911 2156 2149 6912 2160 2154 6913 1885 1861 6914 2071 2049 6915 2156 2149 6916 2154 2147 6917 2071 2049 6918 2017 1982 6919 2018 2020 6920 2163 2157 6921 2164 2157 6922 2165 2157 6923 2164 2158 6924 2167 2158 6925 2168 2158 6926 2167 2159 6927 2169 2159 6928 2170 2159 6929 2172 2160 6930 2173 2160 6931 2174 2160 6932 2171 2161 6933 2174 2161 6934 2176 2161 6935 2175 2162 6936 2176 2162 6937 2178 2162 6938 2179 2163 6939 2177 2163 6940 2178 2163 6941 2179 2164 6942 2180 2164 6943 2182 2164 6944 2181 2165 6945 2182 2165 6946 2184 2165 6947 2183 2166 6948 2184 2166 6949 2186 2166 6950 2185 2167 6951 2186 2167 6952 2188 2167 6953 2187 2168 6954 2188 2168 6955 2190 2168 6956 2191 2169 6957 2189 2169 6958 2190 2169 6959 2169 2170 6960 2191 2170 6961 2192 2170 6962 2193 2171 6963 2163 2171 6964 2166 2171 6965 2195 2172 6966 2193 2172 6967 2194 2172 6968 2197 2173 6969 2195 2173 6970 2196 2173 6971 2199 2174 6972 2200 2174 6973 2201 2174 6974 2199 2175 6975 2202 2175 6976 2204 2175 6977 2203 2176 6978 2204 2176 6979 2206 2176 6980 2205 2177 6981 2206 2177 6982 2208 2177 6983 2207 2178 6984 2208 2178 6985 2210 2178 6986 2209 2179 6987 2210 2179 6988 2212 2179 6989 2211 2180 6990 2212 2180 6991 2214 2180 6992 2213 2181 6993 2214 2181 6994 2216 2181 6995 2215 2182 6996 2216 2182 6997 2218 2182 6998 2219 2183 6999 2217 2183 7000 2218 2183 7001 2221 2184 7002 2219 2184 7003 2220 2184 7004 2223 2185 7005 2221 2185 7006 2222 2185 7007 2225 2186 7008 2223 2186 7009 2224 2186 7010 2227 2187 7011 2225 2187 7012 2226 2187 7013 2229 2188 7014 2227 2188 7015 2228 2188 7016 2231 2189 7017 2229 2189 7018 2230 2189 7019 2233 2190 7020 2231 2190 7021 2232 2190 7022 2236 2191 7023 2237 2191 7024 2238 2191 7025 2239 2192 7026 2240 2192 7027 2237 2192 7028 2241 2193 7029 2242 2193 7030 2240 2193 7031 2241 2194 7032 2243 2194 7033 2244 2194 7034 2243 2195 7035 2245 2195 7036 2246 2195 7037 2245 2196 7038 2247 2196 7039 2248 2196 7040 2247 2197 7041 2249 2197 7042 2250 2197 7043 2251 2198 7044 2252 2198 7045 2250 2198 7046 2253 2199 7047 2254 2199 7048 2252 2199 7049 2255 2200 7050 2256 2200 7051 2254 2200 7052 2255 2201 7053 2257 2201 7054 2258 2201 7055 2257 2202 7056 2259 2202 7057 2260 2202 7058 2259 2203 7059 2261 2203 7060 2262 2203 7061 2261 2204 7062 2263 2204 7063 2264 2204 7064 2263 2205 7065 2265 2205 7066 2266 2205 7067 2265 2206 7068 2267 2206 7069 2268 2206 7070 2267 2207 7071 2269 2207 7072 2270 2207 7073 2202 2208 7074 2271 2208 7075 2272 2208 7076 2201 2209 7077 2273 2209 7078 2271 2209 7079 2204 2210 7080 2272 2210 7081 2274 2210 7082 2208 2211 7083 2206 2211 7084 2274 2211 7085 2208 2212 7086 2275 2212 7087 2276 2212 7088 2210 2213 7089 2276 2213 7090 2277 2213 7091 2212 2214 7092 2277 2214 7093 2278 2214 7094 2214 2215 7095 2278 2215 7096 2279 2215 7097 2218 2216 7098 2216 2216 7099 2279 2216 7100 2218 2217 7101 2280 2217 7102 2281 2217 7103 2222 2218 7104 2220 2218 7105 2281 2218 7106 2224 2219 7107 2222 2219 7108 2282 2219 7109 2226 2220 7110 2224 2220 7111 2283 2220 7112 2228 2221 7113 2226 2221 7114 2284 2221 7115 2230 2222 7116 2228 2222 7117 2285 2222 7118 2232 2223 7119 2230 2223 7120 2286 2223 7121 2234 2224 7122 2232 2224 7123 2287 2224 7124 2173 2225 7125 2238 2225 7126 2237 2225 7127 2174 2226 7128 2237 2226 7129 2240 2226 7130 2176 2227 7131 2240 2227 7132 2242 2227 7133 2180 2228 7134 2178 2228 7135 2242 2228 7136 2182 2229 7137 2180 2229 7138 2244 2229 7139 2182 2230 7140 2246 2230 7141 2248 2230 7142 2184 2231 7143 2248 2231 7144 2250 2231 7145 2186 2232 7146 2250 2232 7147 2252 2232 7148 2188 2233 7149 2252 2233 7150 2254 2233 7151 2192 2234 7152 2190 2234 7153 2254 2234 7154 2170 2235 7155 2192 2235 7156 2256 2235 7157 2168 2236 7158 2170 2236 7159 2258 2236 7160 2165 2237 7161 2168 2237 7162 2260 2237 7163 2166 2238 7164 2165 2238 7165 2262 2238 7166 2194 2239 7167 2166 2239 7168 2264 2239 7169 2196 2240 7170 2194 2240 7171 2266 2240 7172 2198 2241 7173 2196 2241 7174 2268 2241 7175 2236 2242 7176 2235 2242 7177 2289 2242 7178 2239 2243 7179 2236 2243 7180 2290 2243 7181 2241 2244 7182 2239 2244 7183 2291 2244 7184 2294 2245 7185 2263 2245 7186 2261 2245 7187 2263 2246 7188 2294 2246 7189 2295 2246 7190 2265 2247 7191 2295 2247 7192 2296 2247 7193 2269 2248 7194 2267 2248 7195 2296 2248 7196 2243 2249 7197 2241 2249 7198 2292 2249 7199 2245 2250 7200 2243 2250 7201 2298 2250 7202 2293 2251 7203 2261 2251 7204 2259 2251 7205 2247 2252 7206 2245 2252 7207 2299 2252 7208 2249 2253 7209 2247 2253 7210 2301 2253 7211 2251 2254 7212 2249 2254 7213 2302 2254 7214 2253 2255 7215 2251 2255 7216 2303 2255 7217 2253 2256 7218 2304 2256 7219 2305 2256 7220 2255 2257 7221 2305 2257 7222 2306 2257 7223 2257 2258 7224 2306 2258 7225 2300 2258 7226 2308 2259 7227 2200 2259 7228 2199 2259 7229 2307 2260 7230 2199 2260 7231 2203 2260 7232 2309 2261 7233 2203 2261 7234 2205 2261 7235 2310 2262 7236 2205 2262 7237 2207 2262 7238 2311 2263 7239 2207 2263 7240 2209 2263 7241 2312 2264 7242 2209 2264 7243 2211 2264 7244 2314 2265 7245 2313 2265 7246 2211 2265 7247 2315 2266 7248 2314 2266 7249 2213 2266 7250 2315 2267 7251 2215 2267 7252 2217 2267 7253 2316 2268 7254 2217 2268 7255 2219 2268 7256 2317 2269 7257 2219 2269 7258 2221 2269 7259 2318 2270 7260 2221 2270 7261 2223 2270 7262 2319 2271 7263 2223 2271 7264 2225 2271 7265 2320 2272 7266 2225 2272 7267 2227 2272 7268 2321 2273 7269 2227 2273 7270 2229 2273 7271 2322 2274 7272 2229 2274 7273 2231 2274 7274 2323 2275 7275 2231 2275 7276 2233 2275 7277 2326 2276 7278 2173 2276 7279 2172 2276 7280 2328 2277 7281 2326 2277 7282 2325 2277 7283 2330 2278 7284 2328 2278 7285 2327 2278 7286 2332 2279 7287 2330 2279 7288 2329 2279 7289 2334 2280 7290 2332 2280 7291 2331 2280 7292 2336 2281 7293 2334 2281 7294 2333 2281 7295 2338 2282 7296 2336 2282 7297 2335 2282 7298 2340 2283 7299 2338 2283 7300 2337 2283 7301 2342 2284 7302 2340 2284 7303 2339 2284 7304 2343 2285 7305 2344 2285 7306 2342 2285 7307 2345 2286 7308 2346 2286 7309 2344 2286 7310 2347 2287 7311 2348 2287 7312 2346 2287 7313 2349 2288 7314 2350 2288 7315 2348 2288 7316 2351 2289 7317 2352 2289 7318 2350 2289 7319 2353 2290 7320 2354 2290 7321 2352 2290 7322 2356 2291 7323 2354 2291 7324 2353 2291 7325 2198 2292 7326 2356 2292 7327 2355 2292 7328 2358 2293 7329 2201 2293 7330 2200 2293 7331 2360 2294 7332 2358 2294 7333 2357 2294 7334 2362 2295 7335 2360 2295 7336 2359 2295 7337 2364 2296 7338 2362 2296 7339 2361 2296 7340 2366 2297 7341 2364 2297 7342 2363 2297 7343 2368 2298 7344 2366 2298 7345 2365 2298 7346 2370 2299 7347 2368 2299 7348 2367 2299 7349 2372 2300 7350 2370 2300 7351 2369 2300 7352 2374 2301 7353 2372 2301 7354 2371 2301 7355 2376 2302 7356 2374 2302 7357 2373 2302 7358 2377 2303 7359 2378 2303 7360 2376 2303 7361 2379 2304 7362 2380 2304 7363 2378 2304 7364 2381 2305 7365 2382 2305 7366 2380 2305 7367 2383 2306 7368 2384 2306 7369 2382 2306 7370 2385 2307 7371 2386 2307 7372 2384 2307 7373 2387 2308 7374 2388 2308 7375 2386 2308 7376 2233 2309 7377 2234 2309 7378 2388 2309 7379 2238 2310 7380 2389 2310 7381 2390 2310 7382 2389 2311 7383 2391 2311 7384 2392 2311 7385 2391 2312 7386 2393 2312 7387 2394 2312 7388 2394 2313 7389 2393 2313 7390 2395 2313 7391 2396 2314 7392 2395 2314 7393 2397 2314 7394 2398 2315 7395 2397 2315 7396 2399 2315 7397 2400 2316 7398 2399 2316 7399 2401 2316 7400 2402 2317 7401 2401 2317 7402 2403 2317 7403 2404 2318 7404 2403 2318 7405 2405 2318 7406 2405 2319 7407 2407 2319 7408 2408 2319 7409 2408 2320 7410 2407 2320 7411 2409 2320 7412 2409 2321 7413 2411 2321 7414 2412 2321 7415 2412 2322 7416 2411 2322 7417 2413 2322 7418 2413 2323 7419 2415 2323 7420 2416 2323 7421 2415 2324 7422 2417 2324 7423 2418 2324 7424 2417 2325 7425 2419 2325 7426 2420 2325 7427 2419 2326 7428 2270 2326 7429 2269 2326 7430 2421 2327 7431 2422 2327 7432 2358 2327 7433 2273 2328 7434 2201 2328 7435 2358 2328 7436 2423 2329 7437 2421 2329 7438 2360 2329 7439 2424 2330 7440 2423 2330 7441 2362 2330 7442 2425 2331 7443 2424 2331 7444 2364 2331 7445 2426 2332 7446 2425 2332 7447 2366 2332 7448 2427 2333 7449 2426 2333 7450 2368 2333 7451 2428 2334 7452 2427 2334 7453 2370 2334 7454 2429 2335 7455 2428 2335 7456 2372 2335 7457 2430 2336 7458 2429 2336 7459 2374 2336 7460 2431 2337 7461 2430 2337 7462 2376 2337 7463 2380 2338 7464 2432 2338 7465 2431 2338 7466 2382 2339 7467 2433 2339 7468 2432 2339 7469 2384 2340 7470 2434 2340 7471 2433 2340 7472 2386 2341 7473 2435 2341 7474 2434 2341 7475 2388 2342 7476 2436 2342 7477 2435 2342 7478 2436 2343 7479 2388 2343 7480 2234 2343 7481 2389 2344 7482 2238 2344 7483 2173 2344 7484 2391 2345 7485 2389 2345 7486 2326 2345 7487 2393 2346 7488 2391 2346 7489 2328 2346 7490 2332 2347 7491 2395 2347 7492 2393 2347 7493 2334 2348 7494 2397 2348 7495 2395 2348 7496 2399 2349 7497 2397 2349 7498 2334 2349 7499 2401 2350 7500 2399 2350 7501 2336 2350 7502 2403 2351 7503 2401 2351 7504 2338 2351 7505 2405 2352 7506 2403 2352 7507 2340 2352 7508 2344 2353 7509 2407 2353 7510 2405 2353 7511 2346 2354 7512 2409 2354 7513 2407 2354 7514 2348 2355 7515 2411 2355 7516 2409 2355 7517 2350 2356 7518 2413 2356 7519 2411 2356 7520 2352 2357 7521 2415 2357 7522 2413 2357 7523 2354 2358 7524 2417 2358 7525 2415 2358 7526 2419 2359 7527 2417 2359 7528 2354 2359 7529 2270 2360 7530 2419 2360 7531 2356 2360 7532 2390 2361 7533 2437 2361 7534 2289 2361 7535 2392 2362 7536 2438 2362 7537 2437 2362 7538 2394 2363 7539 2439 2363 7540 2438 2363 7541 2414 2364 7542 2416 2364 7543 2441 2364 7544 2442 2365 7545 2441 2365 7546 2416 2365 7547 2443 2366 7548 2442 2366 7549 2418 2366 7550 2297 2367 7551 2443 2367 7552 2420 2367 7553 2396 2368 7554 2444 2368 7555 2439 2368 7556 2398 2369 7557 2445 2369 7558 2444 2369 7559 2412 2370 7560 2414 2370 7561 2440 2370 7562 2400 2371 7563 2447 2371 7564 2445 2371 7565 2402 2372 7566 2448 2372 7567 2447 2372 7568 2404 2373 7569 2449 2373 7570 2448 2373 7571 2406 2374 7572 2450 2374 7573 2449 2374 7574 2451 2375 7575 2450 2375 7576 2406 2375 7577 2452 2376 7578 2451 2376 7579 2408 2376 7580 2410 2377 7581 2412 2377 7582 2446 2377 7583 2453 2378 7584 2357 2378 7585 2200 2378 7586 2454 2379 7587 2359 2379 7588 2357 2379 7589 2361 2380 7590 2359 2380 7591 2454 2380 7592 2363 2381 7593 2361 2381 7594 2455 2381 7595 2365 2382 7596 2363 2382 7597 2456 2382 7598 2367 2383 7599 2365 2383 7600 2457 2383 7601 2459 2384 7602 2369 2384 7603 2367 2384 7604 2371 2385 7605 2369 2385 7606 2459 2385 7607 2373 2386 7608 2371 2386 7609 2460 2386 7610 2462 2387 7611 2375 2387 7612 2373 2387 7613 2377 2388 7614 2375 2388 7615 2462 2388 7616 2379 2389 7617 2377 2389 7618 2463 2389 7619 2381 2390 7620 2379 2390 7621 2464 2390 7622 2383 2391 7623 2381 2391 7624 2465 2391 7625 2467 2392 7626 2385 2392 7627 2383 2392 7628 2468 2393 7629 2387 2393 7630 2385 2393 7631 2324 2394 7632 2233 2394 7633 2387 2394 7634 2325 2395 7635 2172 2395 7636 2273 2395 7637 2327 2396 7638 2325 2396 7639 2422 2396 7640 2329 2397 7641 2327 2397 7642 2421 2397 7643 2331 2398 7644 2329 2398 7645 2423 2398 7646 2333 2399 7647 2331 2399 7648 2424 2399 7649 2335 2400 7650 2333 2400 7651 2425 2400 7652 2337 2401 7653 2335 2401 7654 2426 2401 7655 2339 2402 7656 2337 2402 7657 2427 2402 7658 2341 2403 7659 2339 2403 7660 2428 2403 7661 2430 2404 7662 2343 2404 7663 2341 2404 7664 2431 2405 7665 2345 2405 7666 2343 2405 7667 2432 2406 7668 2347 2406 7669 2345 2406 7670 2433 2407 7671 2349 2407 7672 2347 2407 7673 2434 2408 7674 2351 2408 7675 2349 2408 7676 2435 2409 7677 2353 2409 7678 2351 2409 7679 2436 2410 7680 2355 2410 7681 2353 2410 7682 2197 2411 7683 2355 2411 7684 2436 2411 7685 2288 2412 7686 2287 2412 7687 2195 2412 7688 2287 2413 7689 2286 2413 7690 2193 2413 7691 2286 2414 7692 2285 2414 7693 2163 2414 7694 2285 2415 7695 2284 2415 7696 2164 2415 7697 2284 2416 7698 2283 2416 7699 2167 2416 7700 2283 2417 7701 2282 2417 7702 2169 2417 7703 2282 2418 7704 2281 2418 7705 2191 2418 7706 2281 2419 7707 2280 2419 7708 2189 2419 7709 2279 2420 7710 2187 2420 7711 2189 2420 7712 2278 2421 7713 2185 2421 7714 2187 2421 7715 2277 2422 7716 2183 2422 7717 2185 2422 7718 2276 2423 7719 2181 2423 7720 2183 2423 7721 2275 2424 7722 2179 2424 7723 2181 2424 7724 2275 2425 7725 2274 2425 7726 2177 2425 7727 2272 2426 7728 2175 2426 7729 2177 2426 7730 2271 2427 7731 2171 2427 7732 2175 2427 7733 2273 2428 7734 2172 2428 7735 2171 2428 7736 2470 2429 7737 2471 2429 7738 2472 2429 7739 2471 2430 7740 2473 2430 7741 2474 2430 7742 2476 2431 7743 2477 2431 7744 2478 2431 7745 2477 2432 7746 2479 2432 7747 2480 2432 7748 2480 2433 7749 2479 2433 7750 2481 2433 7751 2482 2434 7752 2481 2434 7753 2483 2434 7754 2485 2435 7755 2486 2435 7756 2487 2435 7757 2488 2436 7758 2487 2436 7759 2489 2436 7760 2491 2437 7761 2492 2437 7762 2493 2437 7763 2495 2438 7764 2496 2438 7765 2486 2438 7766 2492 2439 7767 2497 2439 7768 2498 2439 7769 2499 2440 7770 2500 2440 7771 2496 2440 7772 2497 2441 7773 2476 2441 7774 2475 2441 7775 2484 2442 7776 2483 2442 7777 2500 2442 7778 2473 2443 7779 2501 2443 7780 2502 2443 7781 2490 2444 7782 2489 2444 7783 2503 2444 7784 2491 2445 7785 2494 2445 7786 2502 2445 7787 2308 2446 7788 2307 2446 7789 2471 2446 7790 2307 2447 7791 2309 2447 7792 2473 2447 7793 2309 2448 7794 2310 2448 7795 2501 2448 7796 2501 2449 7797 2310 2449 7798 2311 2449 7799 2311 2450 7800 2312 2450 7801 2492 2450 7802 2312 2451 7803 2313 2451 7804 2497 2451 7805 2313 2452 7806 2314 2452 7807 2476 2452 7808 2314 2453 7809 2315 2453 7810 2477 2453 7811 2315 2454 7812 2316 2454 7813 2479 2454 7814 2479 2455 7815 2316 2455 7816 2317 2455 7817 2481 2456 7818 2317 2456 7819 2318 2456 7820 2483 2457 7821 2318 2457 7822 2319 2457 7823 2500 2458 7824 2319 2458 7825 2320 2458 7826 2496 2459 7827 2320 2459 7828 2321 2459 7829 2486 2460 7830 2321 2460 7831 2322 2460 7832 2487 2461 7833 2322 2461 7834 2323 2461 7835 2489 2462 7836 2323 2462 7837 2324 2462 7838 2505 2463 7839 2506 2463 7840 2470 2463 7841 2507 2464 7842 2508 2464 7843 2506 2464 7844 2510 2465 7845 2511 2465 7846 2512 2465 7847 2513 2466 7848 2514 2466 7849 2511 2466 7850 2513 2467 7851 2515 2467 7852 2516 2467 7853 2515 2468 7854 2517 2468 7855 2518 2468 7856 2519 2469 7857 2520 2469 7858 2521 2469 7859 2523 2470 7860 2524 2470 7861 2521 2470 7862 2525 2471 7863 2526 2471 7864 2527 2471 7865 2522 2472 7866 2529 2472 7867 2530 2472 7868 2528 2473 7869 2527 2473 7870 2531 2473 7871 2529 2474 7872 2533 2474 7873 2534 2474 7874 2532 2475 7875 2531 2475 7876 2509 2475 7877 2517 2476 7878 2534 2476 7879 2533 2476 7880 2535 2477 7881 2536 2477 7882 2508 2477 7883 2504 2478 7884 2503 2478 7885 2524 2478 7886 2536 2479 7887 2535 2479 7888 2526 2479 7889 2470 2480 7890 2506 2480 7891 2453 2480 7892 2508 2481 7893 2454 2481 7894 2453 2481 7895 2536 2482 7896 2455 2482 7897 2454 2482 7898 2536 2483 7899 2525 2483 7900 2456 2483 7901 2528 2484 7902 2457 2484 7903 2456 2484 7904 2532 2485 7905 2458 2485 7906 2457 2485 7907 2512 2486 7908 2459 2486 7909 2458 2486 7910 2511 2487 7911 2460 2487 7912 2459 2487 7913 2514 2488 7914 2461 2488 7915 2460 2488 7916 2516 2489 7917 2462 2489 7918 2461 2489 7919 2516 2490 7920 2518 2490 7921 2463 2490 7922 2518 2491 7923 2533 2491 7924 2464 2491 7925 2533 2492 7926 2529 2492 7927 2465 2492 7928 2529 2493 7929 2522 2493 7930 2466 2493 7931 2522 2494 7932 2521 2494 7933 2467 2494 7934 2521 2495 7935 2524 2495 7936 2468 2495 7937 2503 2496 7938 2324 2496 7939 2468 2496 7940 2289 2497 7941 2469 2497 7942 2472 2497 7943 2291 2498 7944 2290 2498 7945 2472 2498 7946 2292 2499 7947 2291 2499 7948 2474 2499 7949 2494 2500 7950 2298 2500 7951 2292 2500 7952 2299 2501 7953 2298 2501 7954 2494 2501 7955 2301 2502 7956 2299 2502 7957 2493 2502 7958 2302 2503 7959 2301 2503 7960 2498 2503 7961 2303 2504 7962 2302 2504 7963 2475 2504 7964 2304 2505 7965 2303 2505 7966 2478 2505 7967 2304 2506 7968 2480 2506 7969 2482 2506 7970 2305 2507 7971 2482 2507 7972 2484 2507 7973 2306 2508 7974 2484 2508 7975 2499 2508 7976 2300 2509 7977 2499 2509 7978 2495 2509 7979 2293 2510 7980 2495 2510 7981 2485 2510 7982 2294 2511 7983 2485 2511 7984 2488 2511 7985 2295 2512 7986 2488 2512 7987 2490 2512 7988 2296 2513 7989 2490 2513 7990 2504 2513 7991 2437 2514 7992 2505 2514 7993 2469 2514 7994 2438 2515 7995 2507 2515 7996 2505 2515 7997 2439 2516 7998 2535 2516 7999 2507 2516 8000 2535 2517 8001 2439 2517 8002 2444 2517 8003 2526 2518 8004 2444 2518 8005 2445 2518 8006 2527 2519 8007 2445 2519 8008 2447 2519 8009 2531 2520 8010 2447 2520 8011 2448 2520 8012 2449 2521 8013 2510 2521 8014 2509 2521 8015 2450 2522 8016 2513 2522 8017 2510 2522 8018 2515 2523 8019 2513 2523 8020 2450 2523 8021 2517 2524 8022 2515 2524 8023 2451 2524 8024 2534 2525 8025 2517 2525 8026 2452 2525 8027 2530 2526 8028 2534 2526 8029 2446 2526 8030 2519 2527 8031 2530 2527 8032 2440 2527 8033 2520 2528 8034 2519 2528 8035 2441 2528 8036 2523 2529 8037 2520 2529 8038 2442 2529 8039 2297 2530 8040 2504 2530 8041 2523 2530 8042 2537 2531 8043 2538 2532 8044 2539 2533 8045 2541 2534 8046 2537 2531 8047 2540 2535 8048 2543 2536 8049 2541 2534 8050 2542 2537 8051 2545 2538 8052 2543 2536 8053 2544 2539 8054 2547 2540 8055 2545 2538 8056 2546 2541 8057 2549 2542 8058 2547 2540 8059 2548 2543 8060 2551 2544 8061 2549 2542 8062 2550 2545 8063 2554 2546 8064 2555 2547 8065 2556 2548 8066 2557 2549 8067 2558 2550 8068 2559 2551 8069 2561 2552 8070 2558 2550 8071 2557 2549 8072 2557 2549 8073 2560 2553 8074 2564 2554 8075 2557 2549 8076 2563 2555 8077 2565 2556 8078 2566 2557 8079 2563 2555 8080 2564 2554 8081 2563 2555 8082 2566 2557 8083 2568 2558 8084 2569 2559 8085 2566 2557 8086 2567 2560 8087 2566 2557 8088 2569 2559 8089 2571 2561 8090 2572 2562 8091 2569 2559 8092 2570 2563 8093 2569 2559 8094 2572 2562 8095 2574 2564 8096 2575 2565 8097 2572 2562 8098 2573 2566 8099 2572 2562 8100 2575 2565 8101 2577 2567 8102 2578 2568 8103 2575 2565 8104 2576 2569 8105 2575 2565 8106 2578 2568 8107 2580 2570 8108 2582 2571 8109 2583 2572 8110 2584 2573 8111 2583 2572 8112 2582 2571 8113 2585 2574 8114 2587 2575 8115 2588 2576 8116 2538 2532 8117 2589 2577 8118 2587 2575 8119 2537 2531 8120 2590 2578 8121 2589 2577 8122 2541 2534 8123 2591 2579 8124 2590 2578 8125 2543 2536 8126 2592 2580 8127 2591 2579 8128 2545 2538 8129 2593 2581 8130 2592 2580 8131 2547 2540 8132 2594 2582 8133 2593 2581 8134 2549 2542 8135 2595 2583 8136 2596 2584 8137 2555 2547 8138 2560 2553 8139 2559 2551 8140 2588 2576 8141 2564 2554 8142 2560 2553 8143 2587 2575 8144 2567 2560 8145 2564 2554 8146 2589 2577 8147 2570 2563 8148 2567 2560 8149 2590 2578 8150 2573 2566 8151 2570 2563 8152 2591 2579 8153 2576 2569 8154 2573 2566 8155 2592 2580 8156 2579 2585 8157 2576 2569 8158 2593 2581 8159 2581 2586 8160 2584 2573 8161 2596 2584 8162 2578 2568 8163 2583 2572 8164 2586 2587 8165 2583 2572 8166 2578 2568 8167 2579 2585 8168 2555 2547 8169 2551 2544 8170 2552 2588 8171 2596 2584 8172 2594 2582 8173 2551 2544 8174 2584 2573 8175 2579 2585 8176 2594 2582 8177 2598 2589 8178 2599 2590 8179 2600 2591 8180 2602 2592 8181 2603 2593 8182 2604 2594 8183 2601 2595 8184 2604 2594 8185 2606 2596 8186 2599 2590 8187 2607 2597 8188 2608 2598 8189 2603 2593 8190 2609 2599 8191 2610 2600 8192 2611 2601 8193 2606 2596 8194 2604 2594 8195 2612 2602 8196 2613 2603 8197 2614 2604 8198 2616 2605 8199 2617 2606 8200 2539 2533 8201 2619 2607 8202 2616 2605 8203 2618 2608 8204 2621 2609 8205 2619 2607 8206 2620 2610 8207 2621 2609 8208 2622 2611 8209 2623 2612 8210 2605 2613 8211 2614 2604 8212 2623 2612 8213 2605 2613 8214 2624 2614 8215 2625 2615 8216 2601 2595 8217 2625 2615 8218 2626 2616 8219 2597 2617 8220 2627 2618 8221 2553 2619 8222 2628 2620 8223 2629 2621 8224 2630 2622 8225 2629 2621 8226 2632 2623 8227 2633 2624 8228 2632 2623 8229 2634 2625 8230 2635 2626 8231 2634 2625 8232 2636 2627 8233 2637 2628 8234 2636 2627 8235 2638 2629 8236 2639 2630 8237 2638 2629 8238 2640 2631 8239 2641 2632 8240 2640 2631 8241 2642 2633 8242 2643 2634 8243 2644 2635 8244 2645 2636 8245 2646 2637 8246 2631 2638 8247 2630 2622 8248 2648 2639 8249 2630 2622 8250 2633 2624 8251 2650 2640 8252 2633 2624 8253 2635 2626 8254 2651 2641 8255 2635 2626 8256 2637 2628 8257 2652 2642 8258 2653 2643 8259 2654 2644 8260 2641 2632 8261 2647 2645 8262 2646 2637 8263 2655 2646 8264 2597 2617 8265 2600 2591 8266 2603 2593 8267 2600 2591 8268 2608 2598 8269 2609 2599 8270 2647 2645 8271 2643 2634 8272 2642 2633 8273 2656 2647 8274 2653 2643 8275 2643 2634 8276 2602 2592 8277 2626 2616 8278 2627 2618 8279 2651 2641 8280 2652 2642 8281 2657 2648 8282 2658 2649 8283 2659 2650 8284 2660 2651 8285 2659 2650 8286 2662 2652 8287 2663 2653 8288 2662 2652 8289 2664 2654 8290 2665 2655 8291 2666 2656 8292 2667 2657 8293 2665 2655 8294 2668 2658 8295 2669 2659 8296 2667 2657 8297 2668 2658 8298 2670 2660 8299 2671 2661 8300 2672 2662 8301 2671 2661 8302 2670 2660 8303 2672 2662 8304 2673 2663 8305 2658 2649 8306 2675 2664 8307 2676 2665 8308 2677 2666 8309 2678 2667 8310 2679 2668 8311 2680 2669 8312 2674 2670 8313 2682 2671 8314 2683 2672 8315 2674 2670 8316 2677 2666 8317 2684 2673 8318 2686 2674 8319 2687 2675 8320 2685 2676 8321 2685 2676 8322 2688 2677 8323 2682 2671 8324 2687 2675 8325 2689 2678 8326 2688 2677 8327 2678 2667 8328 2681 2679 8329 2690 2680 8330 2692 2681 8331 2693 2682 8332 2691 2683 8333 2650 2640 8334 2651 2641 8335 2694 2684 8336 2695 2685 8337 2650 2640 8338 2694 2684 8339 2696 2686 8340 2697 2687 8341 2694 2684 8342 2651 2641 8343 2657 2648 8344 2696 2686 8345 2693 2682 8346 2692 2681 8347 2698 2688 8348 2687 2675 8349 2700 2689 8350 2701 2690 8351 2686 2674 8352 2702 2691 8353 2700 2689 8354 2703 2692 8355 2693 2682 8356 2699 2693 8357 2650 2640 8358 2695 2685 8359 2705 2694 8360 2648 2639 8361 2650 2640 8362 2706 2695 8363 2648 2639 8364 2707 2696 8365 2708 2697 8366 2695 2685 8367 2703 2692 8368 2704 2698 8369 2689 2678 8370 2701 2690 8371 2698 2688 8372 2689 2678 8373 2692 2681 8374 2690 2680 8375 2681 2679 8376 2682 2671 8377 2688 2677 8378 2680 2669 8379 2683 2672 8380 2682 2671 8381 2706 2695 8382 2705 2694 8383 2709 2699 8384 2705 2694 8385 2704 2698 8386 2711 2700 8387 2709 2699 8388 2711 2700 8389 2712 2701 8390 2710 2702 8391 2709 2699 8392 2713 2703 8393 2704 2698 8394 2699 2693 8395 2715 2704 8396 2711 2700 8397 2715 2704 8398 2716 2705 8399 2712 2701 8400 2716 2705 8401 2669 2659 8402 2713 2703 8403 2712 2701 8404 2671 2661 8405 2714 2706 8406 2713 2703 8407 2672 2662 8408 2694 2684 8409 2697 2687 8410 2703 2692 8411 2656 2647 8412 2655 2646 8413 2676 2665 8414 2675 2664 8415 2683 2672 8416 2653 2643 8417 2653 2643 8418 2683 2672 8419 2680 2669 8420 2679 2668 8421 2717 2707 8422 2654 2644 8423 2717 2707 8424 2652 2642 8425 2637 2628 8426 2657 2648 8427 2652 2642 8428 2717 2707 8429 2693 2682 8430 2703 2692 8431 2697 2687 8432 2696 2686 8433 2657 2648 8434 2679 2668 8435 2697 2687 8436 2696 2686 8437 2678 2667 8438 2719 2708 8439 2613 2603 8440 2612 2602 8441 2615 2709 8442 2720 2710 8443 2721 2711 8444 2721 2711 8445 2722 2712 8446 2718 2713 8447 2619 2607 8448 2621 2609 8449 2613 2603 8450 2724 2714 8451 2718 2713 8452 2722 2712 8453 2725 2715 8454 2724 2714 8455 2723 2716 8456 2727 2717 8457 2719 2708 8458 2718 2713 8459 2728 2718 8460 2727 2717 8461 2724 2714 8462 2616 2605 8463 2619 2607 8464 2719 2708 8465 2617 2606 8466 2616 2605 8467 2727 2717 8468 2721 2711 8469 2720 2710 8470 2729 2719 8471 2722 2712 8472 2721 2711 8473 2730 2720 8474 2723 2716 8475 2722 2712 8476 2731 2721 8477 2726 2722 8478 2723 2716 8479 2732 2723 8480 2608 2598 8481 2607 2597 8482 2645 2636 8483 2608 2598 8484 2644 2635 8485 2642 2633 8486 2609 2599 8487 2642 2633 8488 2640 2631 8489 2638 2629 8490 2611 2601 8491 2610 2600 8492 2729 2719 8493 2611 2601 8494 2638 2629 8495 2730 2720 8496 2729 2719 8497 2636 2627 8498 2731 2721 8499 2730 2720 8500 2634 2625 8501 2732 2723 8502 2731 2721 8503 2632 2623 8504 2733 2724 8505 2732 2723 8506 2629 2621 8507 2621 2609 8508 2614 2604 8509 2613 2603 8510 2720 2710 8511 2606 2596 8512 2611 2601 8513 2615 2709 8514 2606 2596 8515 2720 2710 8516 2615 2709 8517 2614 2604 8518 2605 2613 8519 2654 2644 8520 2717 2707 8521 2639 2630 8522 2734 2725 8523 2735 2726 8524 2599 2590 8525 2737 2727 8526 2738 2728 8527 2739 2729 8528 2741 2730 8529 2737 2727 8530 2736 2731 8531 2742 2732 8532 2607 2597 8533 2599 2590 8534 2743 2733 8535 2744 2734 8536 2738 2728 8537 2737 2727 8538 2741 2730 8539 2745 2735 8540 2746 2736 8541 2747 2737 8542 2748 2738 8543 2540 2535 8544 2539 2533 8545 2617 2606 8546 2542 2537 8547 2540 2535 8548 2750 2739 8549 2544 2539 8550 2542 2537 8551 2751 2740 8552 2546 2541 8553 2544 2539 8554 2752 2741 8555 2548 2543 8556 2546 2541 8557 2748 2738 8558 2550 2545 8559 2548 2543 8560 2740 2742 8561 2552 2588 8562 2550 2545 8563 2736 2731 8564 2598 2589 8565 2553 2619 8566 2556 2548 8567 2628 2620 8568 2631 2638 8569 2753 2743 8570 2754 2744 8571 2753 2743 8572 2755 2745 8573 2756 2746 8574 2755 2745 8575 2757 2747 8576 2758 2748 8577 2757 2747 8578 2759 2749 8579 2759 2749 8580 2761 2750 8581 2762 2751 8582 2761 2750 8583 2763 2752 8584 2764 2753 8585 2764 2753 8586 2763 2752 8587 2765 2754 8588 2768 2755 8589 2646 2637 8590 2645 2636 8591 2631 2638 8592 2649 2756 8593 2769 2757 8594 2753 2743 8595 2769 2757 8596 2770 2758 8597 2755 2745 8598 2770 2758 8599 2771 2759 8600 2772 2760 8601 2759 2749 8602 2757 2747 8603 2763 2752 8604 2773 2761 8605 2774 2762 8606 2775 2763 8607 2655 2646 8608 2646 2637 8609 2734 2725 8610 2739 2729 8611 2738 2728 8612 2735 2726 8613 2738 2728 8614 2744 2734 8615 2766 2764 8616 2765 2754 8617 2768 2755 8618 2765 2754 8619 2774 2762 8620 2775 2763 8621 2734 2725 8622 2556 2548 8623 2552 2588 8624 2771 2759 8625 2776 2765 8626 2772 2760 8627 2777 2766 8628 2778 2767 8629 2779 2768 8630 2780 2769 8631 2779 2768 8632 2781 2770 8633 2782 2771 8634 2781 2770 8635 2783 2772 8636 2783 2772 8637 2785 2773 8638 2786 2774 8639 2785 2773 8640 2787 2775 8641 2788 2776 8642 2788 2776 8643 2787 2775 8644 2789 2777 8645 2791 2778 8646 2792 2779 8647 2790 2780 8648 2777 2766 8649 2792 2779 8650 2791 2778 8651 2793 2781 8652 2677 2666 8653 2676 2665 8654 2795 2782 8655 2796 2783 8656 2797 2784 8657 2799 2785 8658 2800 2786 8659 2793 2781 8660 2801 2787 8661 2684 2673 8662 2677 2666 8663 2684 2673 8664 2801 2787 8665 2802 2788 8666 2800 2786 8667 2803 2789 8668 2801 2787 8669 2801 2787 8670 2803 2789 8671 2804 2790 8672 2805 2791 8673 2806 2792 8674 2796 2783 8675 2807 2793 8676 2806 2792 8677 2805 2791 8678 2770 2758 8679 2809 2794 8680 2771 2759 8681 2810 2795 8682 2809 2794 8683 2770 2758 8684 2809 2794 8685 2811 2796 8686 2812 2797 8687 2771 2759 8688 2812 2797 8689 2776 2765 8690 2808 2798 8691 2813 2799 8692 2814 2800 8693 2802 2788 8694 2804 2790 8695 2815 2801 8696 2816 2802 8697 2702 2691 8698 2686 2674 8699 2817 2803 8700 2818 2804 8701 2813 2799 8702 2770 2758 8703 2819 2805 8704 2820 2806 8705 2769 2757 8706 2821 2807 8707 2819 2805 8708 2649 2756 8709 2708 2697 8710 2821 2807 8711 2810 2795 8712 2820 2806 8713 2818 2804 8714 2807 2793 8715 2814 2800 8716 2815 2801 8717 2803 2789 8718 2806 2792 8719 2807 2793 8720 2796 2783 8721 2806 2792 8722 2803 2789 8723 2796 2783 8724 2800 2786 8725 2799 2785 8726 2819 2805 8727 2822 2808 8728 2823 2809 8729 2820 2806 8730 2823 2809 8731 2824 2810 8732 2823 2809 8733 2825 2811 8734 2826 2812 8735 2822 2808 8736 2827 2813 8737 2825 2811 8738 2818 2804 8739 2824 2810 8740 2828 2814 8741 2824 2810 8742 2826 2812 8743 2829 2815 8744 2826 2812 8745 2789 2777 8746 2787 2775 8747 2825 2811 8748 2791 2778 8749 2789 2777 8750 2778 2767 8751 2791 2778 8752 2825 2811 8753 2810 2795 8754 2817 2803 8755 2811 2796 8756 2794 2816 8757 2676 2665 8758 2655 2646 8759 2774 2762 8760 2799 2785 8761 2794 2816 8762 2797 2784 8763 2799 2785 8764 2774 2762 8765 2773 2761 8766 2830 2817 8767 2798 2818 8768 2830 2817 8769 2761 2750 8770 2759 2749 8771 2830 2817 8772 2772 2760 8773 2776 2765 8774 2805 2791 8775 2811 2796 8776 2817 2803 8777 2812 2797 8778 2795 2782 8779 2798 2818 8780 2795 2782 8781 2812 2797 8782 2811 2796 8783 2746 2736 8784 2749 2819 8785 2832 2820 8786 2747 2737 8787 2746 2736 8788 2833 2821 8789 2833 2821 8790 2746 2736 8791 2831 2822 8792 2832 2820 8793 2749 2819 8794 2752 2741 8795 2835 2823 8796 2831 2822 8797 2837 2824 8798 2726 2722 8799 2836 2825 8800 2837 2824 8801 2838 2826 8802 2837 2824 8803 2831 2822 8804 2728 2718 8805 2725 2715 8806 2837 2824 8807 2838 2826 8808 2832 2820 8809 2751 2740 8810 2728 2718 8811 2838 2826 8812 2750 2739 8813 2833 2821 8814 2839 2827 8815 2840 2828 8816 2835 2823 8817 2841 2829 8818 2839 2827 8819 2836 2825 8820 2842 2830 8821 2841 2829 8822 2842 2830 8823 2836 2825 8824 2726 2722 8825 2767 2831 8826 2645 2636 8827 2607 2597 8828 2742 2732 8829 2744 2734 8830 2766 2764 8831 2764 2753 8832 2766 2764 8833 2744 2734 8834 2743 2733 8835 2745 2735 8836 2762 2751 8837 2840 2828 8838 2760 2832 8839 2762 2751 8840 2839 2827 8841 2758 2748 8842 2760 2832 8843 2841 2829 8844 2756 2746 8845 2758 2748 8846 2754 2744 8847 2756 2746 8848 2841 2829 8849 2628 2620 8850 2754 2744 8851 2842 2830 8852 2752 2741 8853 2749 2819 8854 2748 2738 8855 2834 2833 8856 2840 2828 8857 2745 2735 8858 2747 2737 8859 2834 2833 8860 2741 2730 8861 2747 2737 8862 2741 2730 8863 2740 2742 8864 2773 2761 8865 2763 2752 8866 2761 2750 8867 2844 2834 8868 2845 2835 8869 2846 2836 8870 2847 2837 8871 2848 2838 8872 2845 2835 8873 2847 2837 8874 2849 2839 8875 2850 2840 8876 2851 2841 8877 2852 2842 8878 2850 2840 8879 2851 2841 8880 2853 2843 8881 2854 2844 8882 2855 2845 8883 2856 2846 8884 2854 2844 8885 2857 2847 8886 2858 2848 8887 2856 2846 8888 2843 2849 8889 2846 2836 8890 2858 2848 8891 2860 2850 8892 2861 2851 8893 2862 2852 8894 2859 2853 8895 2862 2852 8896 2864 2854 8897 2863 2855 8898 2864 2854 8899 2866 2856 8900 2867 2857 8901 2865 2858 8902 2866 2856 8903 2860 2850 8904 2869 2859 8905 2870 2860 8906 2871 2861 8907 2867 2857 8908 2868 2862 8909 2873 2863 8910 2871 2861 8911 2872 2864 8912 2869 2859 8913 2873 2863 8914 2874 2865 8915 2858 2848 8916 2846 2836 8917 2875 2866 8918 2877 2867 8919 2875 2866 8920 2846 2836 8921 2877 2867 8922 2845 2835 8923 2848 2838 8924 2878 2868 8925 2848 2838 8926 2850 2840 8927 2879 2869 8928 2850 2840 8929 2852 2842 8930 2880 2870 8931 2852 2842 8932 2854 2844 8933 2881 2871 8934 2854 2844 8935 2856 2846 8936 2876 2872 8937 2882 2873 8938 2856 2846 8939 2870 2860 8940 2874 2865 8941 2876 2872 8942 2877 2867 8943 2861 2851 8944 2870 2860 8945 2878 2868 8946 2862 2852 8947 2861 2851 8948 2879 2869 8949 2864 2854 8950 2862 2852 8951 2880 2870 8952 2866 2856 8953 2864 2854 8954 2868 2862 8955 2866 2856 8956 2880 2870 8957 2872 2864 8958 2868 2862 8959 2881 2871 8960 2874 2865 8961 2872 2864 8962 2882 2873 8963 2659 2650 8964 2658 2649 8965 2883 2874 8966 2662 2652 8967 2659 2650 8968 2884 2875 8969 2664 2654 8970 2662 2652 8971 2885 2876 8972 2664 2654 8973 2886 2877 8974 2887 2878 8975 2666 2656 8976 2887 2878 8977 2888 2879 8978 2670 2660 8979 2668 2658 8980 2888 2879 8981 2889 2880 8982 2890 2881 8983 2673 2663 8984 2883 2874 8985 2658 2649 8986 2673 2663 8987 2892 2882 8988 2893 2883 8989 2894 2884 8990 2895 2885 8991 2891 2886 8992 2894 2884 8993 2895 2885 8994 2896 2887 8995 2898 2888 8996 2899 2889 8997 2897 2890 8998 2898 2888 8999 2902 2891 9000 2871 2861 9001 2873 2863 9002 2903 2892 9003 2901 2893 9004 2873 2863 9005 2904 2894 9006 2903 2892 9007 2869 2859 9008 2860 2850 9009 2859 2853 9010 2905 2895 9011 2863 2855 9012 2906 2896 9013 2905 2895 9014 2906 2896 9015 2863 2855 9016 2865 2858 9017 2907 2897 9018 2865 2858 9019 2867 2857 9020 2902 2891 9021 2908 2898 9022 2867 2857 9023 2909 2899 9024 2910 2900 9025 2890 2881 9026 2911 2901 9027 2883 2874 9028 2890 2881 9029 2883 2874 9030 2911 2901 9031 2892 2882 9032 2885 2876 9033 2884 2875 9034 2892 2882 9035 2886 2877 9036 2885 2876 9037 2891 2886 9038 2886 2877 9039 2895 2885 9040 2897 2890 9041 2887 2878 9042 2897 2890 9043 2899 2889 9044 2889 2880 9045 2888 2879 9046 2899 2889 9047 2904 2894 9048 2905 2895 9049 2912 2902 9050 2906 2896 9051 2914 2903 9052 2912 2902 9053 2914 2903 9054 2906 2896 9055 2907 2897 9056 2894 2884 9057 2893 2883 9058 2907 2897 9059 2896 2887 9060 2894 2884 9061 2908 2898 9062 2896 2887 9063 2902 2891 9064 2901 2893 9065 2900 2904 9066 2898 2888 9067 2901 2893 9068 2913 2905 9069 2900 2904 9070 2903 2892 9071 2911 2901 9072 2914 2903 9073 2893 2883 9074 2914 2903 9075 2911 2901 9076 2910 2900 9077 2913 2905 9078 2912 2902 9079 2910 2900 9080 2909 2899 9081 2899 2889 9082 2900 2904 9083 2916 2906 9084 2917 2907 9085 2918 2908 9086 2917 2907 9087 2919 2909 9088 2920 2910 9089 2915 2911 9090 2921 2912 9091 2922 2913 9092 2919 2909 9093 2923 2914 9094 2924 2915 9095 2923 2914 9096 2925 2916 9097 2926 2917 9098 2921 2912 9099 2927 2918 9100 2928 2919 9101 2925 2916 9102 2929 2920 9103 2930 2921 9104 2929 2920 9105 2928 2919 9106 2927 2918 9107 2932 2922 9108 2933 2923 9109 2934 2924 9110 2935 2925 9111 2931 2926 9112 2934 2924 9113 2932 2922 9114 2937 2927 9115 2938 2928 9116 2939 2929 9117 2935 2925 9118 2936 2930 9119 2939 2929 9120 2940 2931 9121 2942 2932 9122 2943 2933 9123 2944 2934 9124 2938 2928 9125 2941 2935 9126 2942 2932 9127 2946 2936 9128 2943 2933 9129 2945 2937 9130 2946 2936 9131 2921 2912 9132 2915 2911 9133 2948 2938 9134 2915 2911 9135 2918 2908 9136 2949 2939 9137 2918 2908 9138 2920 2910 9139 2950 2940 9140 2950 2940 9141 2920 2910 9142 2924 2915 9143 2927 2918 9144 2921 2912 9145 2947 2941 9146 2924 2915 9147 2926 2917 9148 2953 2942 9149 2926 2917 9150 2930 2921 9151 2954 2943 9152 2930 2921 9153 2927 2918 9154 2952 2944 9155 2956 2945 9156 2957 2946 9157 2958 2947 9158 2955 2948 9159 2958 2947 9160 2960 2949 9161 2961 2950 9162 2959 2951 9163 2960 2949 9164 2963 2952 9165 2964 2953 9166 2957 2946 9167 2965 2954 9168 2961 2950 9169 2962 2955 9170 2963 2952 9171 2967 2956 9172 2968 2957 9173 2969 2958 9174 2970 2959 9175 2968 2957 9176 2969 2958 9177 2965 2954 9178 2966 2960 9179 2916 2906 9180 2922 2913 9181 2962 2955 9182 2922 2913 9183 2928 2919 9184 2966 2960 9185 2970 2959 9186 2966 2960 9187 2928 2919 9188 2968 2957 9189 2970 2959 9190 2929 2920 9191 2964 2953 9192 2968 2957 9193 2925 2916 9194 2919 2909 9195 2957 2946 9196 2964 2953 9197 2917 2907 9198 2958 2947 9199 2957 2946 9200 2960 2949 9201 2958 2947 9202 2917 2907 9203 2972 2961 9204 2973 2962 9205 2974 2963 9206 2975 2964 9207 2976 2965 9208 2973 2962 9209 2977 2966 9210 2978 2967 9211 2971 2968 9212 2975 2964 9213 2979 2969 9214 2980 2970 9215 2981 2971 9216 2982 2972 9217 2980 2970 9218 2983 2973 9219 2984 2974 9220 2978 2967 9221 2985 2975 9222 2986 2976 9223 2982 2972 9224 2984 2974 9225 2983 2973 9226 2986 2976 9227 2843 2849 9228 2972 2961 9229 2971 2968 9230 2987 2977 9231 2988 2978 9232 2989 2979 9233 2857 2847 9234 2975 2964 9235 2972 2961 9236 2991 2980 9237 2987 2977 9238 2990 2981 9239 2993 2982 9240 2994 2983 9241 2989 2979 9242 2844 2834 9243 2971 2968 9244 2978 2967 9245 2857 2847 9246 2855 2845 9247 2979 2969 9248 2995 2984 9249 2991 2980 9250 2992 2985 9251 2855 2845 9252 2853 2843 9253 2981 2971 9254 2995 2984 9255 2996 2986 9256 2998 2987 9257 2993 2982 9258 2999 2988 9259 3000 2989 9260 2847 2837 9261 2978 2967 9262 2984 2974 9263 2851 2841 9264 2985 2975 9265 2981 2971 9266 2997 2990 9267 2998 2987 9268 3002 2991 9269 2849 2839 9270 2984 2974 9271 2985 2975 9272 3001 2992 9273 3002 2991 9274 3000 2989 9275 3003 2993 9276 3004 2994 9277 3005 2995 9278 3007 2996 9279 3008 2997 9280 3005 2995 9281 3003 2993 9282 3006 2998 9283 3010 2999 9284 3011 3000 9285 3012 3001 9286 3008 2997 9287 3011 3000 9288 3013 3002 9289 3014 3003 9290 3015 3004 9291 3009 3005 9292 3010 2999 9293 3013 3002 9294 3017 3006 9295 3018 3007 9296 3015 3004 9297 3016 3008 9298 3018 3007 9299 2994 2983 9300 2977 2966 9301 2974 2963 9302 3000 2989 9303 2983 2973 9304 2977 2966 9305 2983 2973 9306 3000 2989 9307 3002 2991 9308 2986 2976 9309 3002 2991 9310 2998 2987 9311 2982 2972 9312 2998 2987 9313 2996 2986 9314 2976 2965 9315 2980 2970 9316 2996 2986 9317 2973 2962 9318 2976 2965 9319 2992 2985 9320 2973 2962 9321 2990 2981 9322 2989 2979 9323 2937 2927 9324 2932 2922 9325 2959 2951 9326 2931 2926 9327 2955 2948 9328 2959 2951 9329 2931 2926 9330 2935 2925 9331 2956 2945 9332 2935 2925 9333 2939 2929 9334 2963 2952 9335 2937 2927 9336 2961 2950 9337 2965 2954 9338 2939 2929 9339 2941 2935 9340 2967 2956 9341 2945 2937 9342 2969 2958 9343 2967 2956 9344 2945 2937 9345 2943 2933 9346 2965 2954 9347 3004 2994 9348 3003 2993 9349 2988 2978 9350 2988 2978 9351 3003 2993 9352 3009 3005 9353 3004 2994 9354 2987 2977 9355 2991 2980 9356 3007 2996 9357 2991 2980 9358 2995 2984 9359 2999 2988 9360 2993 2982 9361 3009 3005 9362 3011 3000 9363 2995 2984 9364 2997 2990 9365 3017 3006 9366 3013 3002 9367 2997 2990 9368 2999 2988 9369 3015 3004 9370 3017 3006 9371 3019 3009 9372 3020 3010 9373 2777 2766 9374 2782 2771 9375 3021 3011 9376 3019 3009 9377 2784 3012 9378 3022 3013 9379 3021 3011 9380 3023 3014 9381 3022 3013 9382 2784 3012 9383 3024 3015 9384 3023 3014 9385 2786 2774 9386 2790 2780 9387 3025 3016 9388 3024 3015 9389 3025 3016 9390 2790 2780 9391 2792 2779 9392 2792 2779 9393 2777 2766 9394 3020 3010 9395 3028 3017 9396 3029 3018 9397 3030 3019 9398 3031 3020 9399 3032 3021 9400 3028 3017 9401 3034 3022 9402 3032 3021 9403 3031 3020 9404 3035 3023 9405 3036 3024 9406 3034 3022 9407 3037 3025 9408 3038 3026 9409 3039 3027 9410 3041 3028 9411 3042 3029 9412 3038 3026 9413 3043 3030 9414 3044 3031 9415 3042 3029 9416 3044 3031 9417 3043 3030 9418 3045 3032 9419 3045 3032 9420 3047 3033 9421 3048 3034 9422 3050 3035 9423 3048 3034 9424 3047 3033 9425 3052 3036 9426 3050 3035 9427 3049 3037 9428 3039 3027 9429 3052 3036 9430 3051 3038 9431 3053 3039 9432 3025 3016 9433 3026 3040 9434 3026 3040 9435 3020 3010 9436 3055 3041 9437 3030 3019 9438 3055 3041 9439 3020 3010 9440 3021 3011 9441 3027 3042 9442 3030 3019 9443 3022 3013 9444 3031 3020 9445 3027 3042 9446 3033 3043 9447 3031 3020 9448 3022 3013 9449 3035 3023 9450 3033 3043 9451 3023 3014 9452 3025 3016 9453 3053 3039 9454 3035 3023 9455 3043 3030 9456 3056 3044 9457 3057 3045 9458 3057 3045 9459 3058 3046 9460 3047 3033 9461 3049 3037 9462 3047 3033 9463 3058 3046 9464 3051 3038 9465 3049 3037 9466 3029 3018 9467 3040 3047 9468 3051 3038 9469 3028 3017 9470 3037 3025 9471 3040 3047 9472 3032 3021 9473 3036 3024 9474 3041 3028 9475 3037 3025 9476 3056 3044 9477 3043 3030 9478 3041 3028 9479 3059 3048 9480 3060 3049 9481 3044 3031 9482 3061 3050 9483 3059 3048 9484 3046 3051 9485 3062 3052 9486 3061 3050 9487 3048 3034 9488 3063 3053 9489 3062 3052 9490 3050 3035 9491 3044 3031 9492 3060 3049 9493 3064 3054 9494 3065 3055 9495 3063 3053 9496 3052 3036 9497 3038 3026 9498 3066 3056 9499 3065 3055 9500 3042 3029 9501 3064 3054 9502 3066 3056 9503 3067 3057 9504 3068 3058 9505 2948 2938 9506 3068 3058 9507 3069 3059 9508 2947 2941 9509 3069 3059 9510 3070 3060 9511 2952 2944 9512 3070 3060 9513 3071 3061 9514 2954 2943 9515 2954 2943 9516 3071 3061 9517 3072 3062 9518 3072 3062 9519 3073 3063 9520 2951 3064 9521 3073 3063 9522 3074 3065 9523 2950 2940 9524 3074 3065 9525 3067 3057 9526 2949 2939 9527 3074 3065 9528 3075 3066 9529 3076 3067 9530 3077 3068 9531 3068 3058 9532 3067 3057 9533 3069 3059 9534 3068 3058 9535 3077 3068 9536 3070 3060 9537 3069 3059 9538 3078 3069 9539 3071 3061 9540 3070 3060 9541 3079 3070 9542 3072 3062 9543 3071 3061 9544 3080 3071 9545 3073 3063 9546 3072 3062 9547 3081 3072 9548 3073 3063 9549 3082 3073 9550 3075 3066 9551 3075 3066 9552 3066 3056 9553 3064 3054 9554 3076 3067 9555 3064 3054 9556 3060 3049 9557 3078 3069 9558 3077 3068 9559 3060 3049 9560 3079 3070 9561 3078 3069 9562 3059 3048 9563 3080 3071 9564 3079 3070 9565 3061 3050 9566 3081 3072 9567 3080 3071 9568 3062 3052 9569 3081 3072 9570 3063 3053 9571 3065 3055 9572 3082 3073 9573 3065 3055 9574 3066 3056 9575 3054 3074 9576 3055 3041 9577 3058 3046 9578 3054 3074 9579 3057 3045 9580 3056 3044 9581 3053 3039 9582 3056 3044 9583 3036 3024 9584 3055 3041 9585 3030 3019 9586 3029 3018 9587 2618 2608 9588 2539 2533 9589 2538 2532 9590 2620 2610 9591 2618 2608 9592 3083 3075 9593 2622 2611 9594 2620 2610 9595 3084 3076 9596 3086 3077 9597 2623 2612 9598 2622 2611 9599 3087 3078 9600 2624 2614 9601 2623 2612 9602 3088 3079 9603 2625 2615 9604 2624 2614 9605 3089 3080 9606 2626 2616 9607 2625 2615 9608 2553 2619 9609 2627 2618 9610 3090 3081 9611 3092 3082 9612 2559 2551 9613 2558 2550 9614 3093 3083 9615 3091 3084 9616 2558 2550 9617 3095 3085 9618 3092 3082 9619 3091 3084 9620 3096 3086 9621 3094 3087 9622 3091 3084 9623 3098 3088 9624 3095 3085 9625 3094 3087 9626 3099 3089 9627 3097 3090 9628 3094 3087 9629 3101 3091 9630 3098 3088 9631 3097 3090 9632 3102 3092 9633 3100 3093 9634 3097 3090 9635 3104 3094 9636 3101 3091 9637 3100 3093 9638 3105 3095 9639 3103 3096 9640 3100 3093 9641 3107 3097 9642 3104 3094 9643 3103 3096 9644 3108 3098 9645 3106 3099 9646 3103 3096 9647 3110 3100 9648 3107 3097 9649 3106 3099 9650 3111 3101 9651 3109 3102 9652 3106 3099 9653 2581 2586 9654 3112 3103 9655 3113 3104 9656 3113 3104 9657 3114 3105 9658 2585 2574 9659 3083 3075 9660 2538 2532 9661 2588 2576 9662 3084 3076 9663 3083 3075 9664 3115 3106 9665 3085 3107 9666 3084 3076 9667 3116 3108 9668 3086 3077 9669 3085 3107 9670 3117 3109 9671 3087 3078 9672 3086 3077 9673 3118 3110 9674 3088 3079 9675 3087 3078 9676 3119 3111 9677 3089 3080 9678 3088 3079 9679 3120 3112 9680 2554 2546 9681 3090 3081 9682 3122 3113 9683 3115 3106 9684 2588 2576 9685 2559 2551 9686 3116 3108 9687 3115 3106 9688 3092 3082 9689 3117 3109 9690 3116 3108 9691 3095 3085 9692 3118 3110 9693 3117 3109 9694 3098 3088 9695 3119 3111 9696 3118 3110 9697 3101 3091 9698 3120 3112 9699 3119 3111 9700 3104 3094 9701 3120 3112 9702 3107 3097 9703 3110 3100 9704 2595 2583 9705 3122 3113 9706 3112 3103 9707 3114 3105 9708 3113 3104 9709 3109 3102 9710 3112 3103 9711 3110 3100 9712 3109 3102 9713 3090 3081 9714 2627 2618 9715 2626 2616 9716 3090 3081 9717 3089 3080 9718 3121 3114 9719 3112 3103 9720 3122 3113 9721 3121 3114 9722 3124 3115 9723 3125 3116 9724 3126 3117 9725 3127 3118 9726 3123 3119 9727 3126 3117 9728 3127 3118 9729 3128 3120 9730 3130 3121 9731 3131 3122 9732 3129 3123 9733 3130 3121 9734 3131 3122 9735 3132 3124 9736 3134 3125 9737 3135 3126 9738 3133 3127 9739 3134 3125 9740 3137 3128 9741 3135 3126 9742 3136 3129 9743 3139 3130 9744 3137 3128 9745 3138 3131 9746 3141 3132 9747 3139 3130 9748 3140 3133 9749 3143 3134 9750 3141 3132 9751 3142 3135 9752 3145 3136 9753 3143 3134 9754 3144 3137 9755 3147 3138 9756 3145 3136 9757 3146 3139 9758 3147 3138 9759 3148 3140 9760 3150 3141 9761 3151 3142 9762 3149 3143 9763 3150 3141 9764 3153 3144 9765 3151 3142 9766 3152 3145 9767 3155 3146 9768 3153 3144 9769 3154 3147 9770 3155 3146 9771 3156 3148 9772 3158 3149 9773 3159 3150 9774 3157 3151 9775 3158 3149 9776 3159 3150 9777 3160 3152 9778 3162 3153 9779 3163 3154 9780 3161 3155 9781 3162 3153 9782 3163 3154 9783 3164 3156 9784 3166 3157 9785 3167 3158 9786 3165 3159 9787 3166 3157 9788 3169 3160 9789 3167 3158 9790 3168 3161 9791 3171 3162 9792 3169 3160 9793 3170 3163 9794 3173 3164 9795 3171 3162 9796 3172 3165 9797 3175 3166 9798 3173 3164 9799 3174 3167 9800 3175 3166 9801 3176 3168 9802 3178 3169 9803 3177 3170 9804 3178 3169 9805 3180 3171 9806 3179 3172 9807 3180 3171 9808 3182 3173 9809 3181 3174 9810 3182 3173 9811 3184 3175 9812 3183 3176 9813 3184 3175 9814 3186 3177 9815 3185 3178 9816 3186 3177 9817 3125 3116 9818 3187 3179 9819 3188 3180 9820 3189 3181 9821 3191 3182 9822 3192 3183 9823 3193 3184 9824 3195 3185 9825 3196 3186 9826 3197 3187 9827 3199 3188 9828 3200 3189 9829 3201 3190 9830 3203 3191 9831 3204 3192 9832 3205 3193 9833 3207 3194 9834 3208 3195 9835 3209 3196 9836 3212 3197 9837 3213 3198 9838 3214 3199 9839 3215 3200 9840 3216 3201 9841 3217 3202 9842 3188 3180 9843 3191 3182 9844 3194 3203 9845 3196 3186 9846 3199 3188 9847 3202 3204 9848 3207 3194 9849 3210 3205 9850 3205 3193 9851 3215 3200 9852 3218 3206 9853 3213 3198 9854 3187 3179 9855 3190 3207 9856 3217 3202 9857 3192 3183 9858 3195 3185 9859 3198 3208 9860 3203 3191 9861 3206 3209 9862 3220 3210 9863 3211 3211 9864 3214 3199 9865 3209 3196 9866 3221 3212 9867 3222 3213 9868 3223 3214 9869 3225 3215 9870 3226 3216 9871 3227 3217 9872 3229 3218 9873 3230 3219 9874 3231 3220 9875 3234 3221 9876 3235 3222 9877 3236 3223 9878 3237 3224 9879 3219 3225 9880 3220 3210 9881 3240 3226 9882 3241 3227 9883 3242 3228 9884 3243 3229 9885 3244 3230 9886 3245 3231 9887 3247 3232 9888 3248 3233 9889 3249 3234 9890 3225 3215 9891 3228 3235 9892 3231 3220 9893 3233 3236 9894 3236 3223 9895 3201 3190 9896 3239 3237 9897 3242 3228 9898 3245 3231 9899 3250 3238 9900 3223 3214 9901 3222 3213 9902 3224 3239 9903 3227 3217 9904 3226 3216 9905 3229 3218 9906 3232 3240 9907 3235 3222 9908 3237 3224 9909 3238 3241 9910 3241 3227 9911 3246 3242 9912 3249 3234 9913 3248 3233 9914 3251 3243 9915 3252 3244 9916 3219 3225 9917 3251 3243 9918 3237 3224 9919 3240 3226 9920 3253 3245 9921 3240 3226 9922 3239 3237 9923 3254 3246 9924 3239 3237 9925 3244 3230 9926 3256 3247 9927 3255 3248 9928 3244 3230 9929 3257 3249 9930 3256 3247 9931 3243 3229 9932 3258 3250 9933 3257 3249 9934 3248 3233 9935 3258 3250 9936 3247 3232 9937 3222 3213 9938 3260 3251 9939 3259 3252 9940 3222 3213 9941 3226 3216 9942 3261 3253 9943 3260 3251 9944 3261 3253 9945 3226 3216 9946 3225 3215 9947 3262 3254 9948 3225 3215 9949 3230 3219 9950 3263 3255 9951 3230 3219 9952 3229 3218 9953 3265 3256 9954 3264 3257 9955 3229 3218 9956 3265 3256 9957 3234 3221 9958 3233 3236 9959 3200 3189 9960 3267 3258 9961 3266 3259 9962 3268 3260 9963 3267 3258 9964 3200 3189 9965 3269 3261 9966 3268 3260 9967 3199 3188 9968 3270 3262 9969 3269 3261 9970 3196 3186 9971 3271 3263 9972 3270 3262 9973 3195 3185 9974 3272 3264 9975 3271 3263 9976 3192 3183 9977 3273 3265 9978 3272 3264 9979 3191 3182 9980 3274 3266 9981 3273 3265 9982 3188 3180 9983 3274 3266 9984 3187 3179 9985 3216 3201 9986 3276 3267 9987 3275 3268 9988 3216 3201 9989 3277 3269 9990 3276 3267 9991 3215 3200 9992 3277 3269 9993 3212 3197 9994 3211 3211 9995 3278 3270 9996 3211 3211 9997 3208 3195 9998 3280 3271 9999 3279 3272 10000 3208 3195 10001 3280 3271 10002 3207 3194 10003 3204 3192 10004 3282 3273 10005 3281 3274 10006 3204 3192 10007 3282 3273 10008 3203 3191 10009 3219 3225 10010 3168 3161 10011 3283 3275 10012 3284 3276 10013 3166 3157 10014 3285 3277 10015 3283 3275 10016 3160 3152 10017 3286 3278 10018 3287 3279 10019 3158 3149 10020 3288 3280 10021 3286 3278 10022 3186 3177 10023 3184 3175 10024 3289 3281 10025 3182 3173 10026 3291 3282 10027 3289 3281 10028 3178 3169 10029 3176 3168 10030 3292 3283 10031 3174 3167 10032 3294 3284 10033 3292 3283 10034 3172 3165 10035 3295 3285 10036 3294 3284 10037 3170 3163 10038 3284 3276 10039 3295 3285 10040 3164 3156 10041 3296 3286 10042 3285 3277 10043 3162 3153 10044 3287 3279 10045 3296 3286 10046 3126 3117 10047 3125 3116 10048 3297 3287 10049 3186 3177 10050 3290 3288 10051 3297 3287 10052 3182 3173 10053 3180 3171 10054 3299 3289 10055 3180 3171 10056 3178 3169 10057 3293 3290 10058 3150 3141 10059 3148 3140 10060 3300 3291 10061 3146 3139 10062 3302 3292 10063 3300 3291 10064 3158 3149 10065 3156 3148 10066 3303 3293 10067 3154 3147 10068 3304 3294 10069 3303 3293 10070 3134 3125 10071 3132 3124 10072 3305 3295 10073 3130 3121 10074 3307 3296 10075 3305 3295 10076 3142 3135 10077 3140 3133 10078 3308 3297 10079 3138 3131 10080 3310 3298 10081 3308 3297 10082 3146 3139 10083 3144 3137 10084 3311 3299 10085 3142 3135 10086 3309 3300 10087 3311 3299 10088 3154 3147 10089 3152 3145 10090 3312 3301 10091 3150 3141 10092 3301 3302 10093 3312 3301 10094 3130 3121 10095 3128 3120 10096 3313 3303 10097 3126 3117 10098 3298 3304 10099 3313 3303 10100 3136 3129 10101 3314 3305 10102 3310 3298 10103 3134 3125 10104 3306 3306 10105 3314 3305 10106 3283 3275 10107 3315 3307 10108 3316 3308 10109 3285 3277 10110 3317 3309 10111 3315 3307 10112 3286 3278 10113 3318 3310 10114 3319 3311 10115 3288 3280 10116 3320 3312 10117 3318 3310 10118 3290 3288 10119 3289 3281 10120 3321 3313 10121 3291 3282 10122 3323 3314 10123 3321 3313 10124 3293 3290 10125 3292 3283 10126 3324 3315 10127 3294 3284 10128 3326 3316 10129 3324 3315 10130 3295 3285 10131 3327 3317 10132 3326 3316 10133 3284 3276 10134 3316 3308 10135 3327 3317 10136 3296 3286 10137 3328 3318 10138 3317 3309 10139 3287 3279 10140 3319 3311 10141 3328 3318 10142 3298 3304 10143 3297 3287 10144 3329 3319 10145 3290 3288 10146 3322 3320 10147 3329 3319 10148 3291 3282 10149 3299 3289 10150 3331 3321 10151 3293 3290 10152 3325 3322 10153 3331 3321 10154 3301 3302 10155 3300 3291 10156 3332 3323 10157 3302 3292 10158 3334 3324 10159 3332 3323 10160 3288 3280 10161 3303 3293 10162 3335 3325 10163 3304 3294 10164 3336 3326 10165 3335 3325 10166 3306 3306 10167 3305 3295 10168 3337 3327 10169 3307 3296 10170 3339 3328 10171 3337 3327 10172 3309 3300 10173 3308 3297 10174 3340 3329 10175 3310 3298 10176 3342 3330 10177 3340 3329 10178 3302 3292 10179 3311 3299 10180 3343 3331 10181 3309 3300 10182 3341 3332 10183 3343 3331 10184 3304 3294 10185 3312 3301 10186 3344 3333 10187 3301 3302 10188 3333 3334 10189 3344 3333 10190 3307 3296 10191 3313 3303 10192 3345 3335 10193 3298 3304 10194 3330 3336 10195 3345 3335 10196 3314 3305 10197 3346 3337 10198 3342 3330 10199 3306 3306 10200 3338 3338 10201 3346 3337 10202 3315 3307 10203 3347 3339 10204 3348 3340 10205 3317 3309 10206 3349 3341 10207 3347 3339 10208 3318 3310 10209 3350 3342 10210 3351 3343 10211 3320 3312 10212 3352 3344 10213 3350 3342 10214 3322 3320 10215 3321 3313 10216 3353 3345 10217 3323 3314 10218 3355 3346 10219 3353 3345 10220 3325 3322 10221 3324 3315 10222 3356 3347 10223 3326 3316 10224 3358 3348 10225 3356 3347 10226 3327 3317 10227 3359 3349 10228 3358 3348 10229 3316 3308 10230 3348 3340 10231 3359 3349 10232 3328 3318 10233 3360 3350 10234 3349 3341 10235 3319 3311 10236 3351 3343 10237 3360 3350 10238 3330 3336 10239 3329 3319 10240 3361 3351 10241 3322 3320 10242 3354 3352 10243 3361 3351 10244 3323 3314 10245 3331 3321 10246 3363 3353 10247 3325 3322 10248 3357 3354 10249 3363 3353 10250 3333 3334 10251 3332 3323 10252 3364 3355 10253 3334 3324 10254 3366 3356 10255 3364 3355 10256 3320 3312 10257 3335 3325 10258 3367 3357 10259 3336 3326 10260 3368 3358 10261 3367 3357 10262 3338 3338 10263 3337 3327 10264 3369 3359 10265 3339 3328 10266 3371 3360 10267 3369 3359 10268 3340 3329 10269 3372 3361 10270 3373 3362 10271 3342 3330 10272 3374 3363 10273 3372 3361 10274 3343 3331 10275 3375 3364 10276 3366 3356 10277 3341 3332 10278 3373 3362 10279 3375 3364 10280 3336 3326 10281 3344 3333 10282 3376 3365 10283 3333 3334 10284 3365 3366 10285 3376 3365 10286 3339 3328 10287 3345 3335 10288 3377 3367 10289 3330 3336 10290 3362 3368 10291 3377 3367 10292 3346 3337 10293 3378 3369 10294 3374 3363 10295 3338 3338 10296 3370 3370 10297 3378 3369 10298 3347 3339 10299 3379 3371 10300 3380 3372 10301 3349 3341 10302 3381 3373 10303 3379 3371 10304 3350 3342 10305 3382 3374 10306 3383 3375 10307 3352 3344 10308 3384 3376 10309 3382 3374 10310 3354 3352 10311 3353 3345 10312 3385 3377 10313 3355 3346 10314 3387 3378 10315 3385 3377 10316 3356 3347 10317 3388 3379 10318 3389 3380 10319 3358 3348 10320 3390 3381 10321 3388 3379 10322 3359 3349 10323 3391 3382 10324 3390 3381 10325 3348 3340 10326 3380 3372 10327 3391 3382 10328 3360 3350 10329 3392 3383 10330 3381 3373 10331 3351 3343 10332 3383 3375 10333 3392 3383 10334 3362 3368 10335 3361 3351 10336 3393 3384 10337 3354 3352 10338 3386 3385 10339 3393 3384 10340 3355 3346 10341 3363 3353 10342 3395 3386 10343 3363 3353 10344 3357 3354 10345 3389 3380 10346 3364 3355 10347 3396 3387 10348 3397 3388 10349 3366 3356 10350 3398 3389 10351 3396 3387 10352 3367 3357 10353 3399 3390 10354 3384 3376 10355 3368 3358 10356 3400 3391 10357 3399 3390 10358 3370 3370 10359 3369 3359 10360 3401 3392 10361 3371 3360 10362 3403 3393 10363 3401 3392 10364 3372 3361 10365 3404 3394 10366 3405 3395 10367 3374 3363 10368 3406 3396 10369 3404 3394 10370 3375 3364 10371 3407 3397 10372 3398 3389 10373 3373 3362 10374 3405 3395 10375 3407 3397 10376 3376 3365 10377 3408 3398 10378 3400 3391 10379 3365 3366 10380 3397 3388 10381 3408 3398 10382 3371 3360 10383 3377 3367 10384 3409 3399 10385 3362 3368 10386 3394 3400 10387 3409 3399 10388 3378 3369 10389 3410 3401 10390 3406 3396 10391 3370 3370 10392 3402 3402 10393 3410 3401 10394 3220 3210 10395 3206 3209 10396 3124 3115 10397 3220 3210 10398 3123 3119 10399 3127 3118 10400 3241 3227 10401 3238 3241 10402 3127 3118 10403 3241 3227 10404 3129 3123 10405 3131 3122 10406 3245 3231 10407 3242 3228 10408 3131 3122 10409 3245 3231 10410 3133 3127 10411 3135 3126 10412 3246 3242 10413 3135 3126 10414 3137 3128 10415 3249 3234 10416 3137 3128 10417 3139 3130 10418 3223 3214 10419 3250 3238 10420 3139 3130 10421 3223 3214 10422 3141 3132 10423 3143 3134 10424 3227 3217 10425 3224 3239 10426 3143 3134 10427 3227 3217 10428 3145 3136 10429 3147 3138 10430 3231 3220 10431 3228 3235 10432 3147 3138 10433 3231 3220 10434 3149 3143 10435 3151 3142 10436 3235 3222 10437 3232 3240 10438 3151 3142 10439 3235 3222 10440 3153 3144 10441 3155 3146 10442 3201 3190 10443 3236 3223 10444 3155 3146 10445 3201 3190 10446 3157 3151 10447 3159 3150 10448 3202 3204 10449 3159 3150 10450 3161 3155 10451 3197 3187 10452 3161 3155 10453 3163 3154 10454 3193 3184 10455 3198 3208 10456 3163 3154 10457 3193 3184 10458 3165 3159 10459 3167 3158 10460 3194 3203 10461 3167 3158 10462 3169 3160 10463 3189 3181 10464 3169 3160 10465 3171 3162 10466 3217 3202 10467 3190 3207 10468 3171 3162 10469 3217 3202 10470 3173 3164 10471 3175 3166 10472 3213 3198 10473 3218 3206 10474 3175 3166 10475 3214 3199 10476 3213 3198 10477 3177 3170 10478 3209 3196 10479 3214 3199 10480 3179 3172 10481 3209 3196 10482 3181 3174 10483 3183 3176 10484 3205 3193 10485 3210 3205 10486 3183 3176 10487 3205 3193 10488 3185 3178 10489 3124 3115 10490 3252 3244 10491 3251 3243 10492 2585 2574 10493 3251 3243 10494 3253 3245 10495 2586 2587 10496 3253 3245 10497 3254 3246 10498 2586 2587 10499 3254 3246 10500 3255 3248 10501 2580 2570 10502 3255 3248 10503 3256 3247 10504 2580 2570 10505 3256 3247 10506 3257 3249 10507 2577 2567 10508 2577 2567 10509 3257 3249 10510 2574 2564 10511 3258 3250 10512 3259 3252 10513 2574 2564 10514 3259 3252 10515 2571 2561 10516 2574 2564 10517 3260 3251 10518 2568 2558 10519 2571 2561 10520 3261 3253 10521 3262 3254 10522 2568 2558 10523 3262 3254 10524 2565 2556 10525 2568 2558 10526 3263 3255 10527 3264 3257 10528 2565 2556 10529 3264 3257 10530 2562 3403 10531 2565 2556 10532 3265 3256 10533 3266 3259 10534 2562 3403 10535 3266 3259 10536 2561 2552 10537 2562 3403 10538 3267 3258 10539 3268 3260 10540 2561 2552 10541 3269 3261 10542 3093 3083 10543 2561 2552 10544 3269 3261 10545 3270 3262 10546 3093 3083 10547 3270 3262 10548 3271 3263 10549 3093 3083 10550 3271 3263 10551 3096 3086 10552 3093 3083 10553 3272 3264 10554 3099 3089 10555 3096 3086 10556 3273 3265 10557 3274 3266 10558 3099 3089 10559 3274 3266 10560 3275 3268 10561 3102 3092 10562 3275 3268 10563 3276 3267 10564 3102 3092 10565 3277 3269 10566 3278 3270 10567 3105 3095 10568 3278 3270 10569 3279 3272 10570 3108 3098 10571 3280 3271 10572 3111 3101 10573 3108 3098 10574 3280 3271 10575 3281 3274 10576 3111 3101 10577 3281 3274 10578 3282 3273 10579 3114 3105 10580 3252 3244 10581 2585 2574 10582 3114 3105 10583 3105 3095 10584 3278 3270 10585 3108 3098 10586 3274 3266 10587 3102 3092 10588 3099 3089 10589 3272 3264 10590 3273 3265 10591 3099 3089 10592 3271 3263 10593 3272 3264 10594 3096 3086 10595 3266 3259 10596 3267 3258 10597 2561 2552 10598 3264 3257 10599 3265 3256 10600 2562 3403 10601 3262 3254 10602 3263 3255 10603 2565 2556 10604 3260 3251 10605 3261 3253 10606 2568 2558 10607 3259 3252 10608 3260 3251 10609 2571 2561 10610 2574 2564 10611 3257 3249 10612 3258 3250 10613 2580 2570 10614 3256 3247 10615 2577 2567 10616 3276 3267 10617 3105 3095 10618 3102 3092 10619 3276 3267 10620 3277 3269 10621 3105 3095 10622 3412 3404 10623 3413 3405 10624 3414 3406 10625 3411 3407 10626 3414 3406 10627 3416 3408 10628 3415 3409 10629 3416 3408 10630 3418 3410 10631 3417 3411 10632 3418 3410 10633 3420 3412 10634 3419 3413 10635 3420 3412 10636 3422 3414 10637 3421 3415 10638 3422 3414 10639 3424 3416 10640 3423 3417 10641 3424 3416 10642 3426 3418 10643 3425 3419 10644 3426 3418 10645 3428 3420 10646 3427 3421 10647 3428 3420 10648 3430 3422 10649 3429 3423 10650 3430 3422 10651 3432 3424 10652 3431 3425 10653 3432 3424 10654 3434 3426 10655 3433 3427 10656 3434 3426 10657 3436 3428 10658 3435 3429 10659 3436 3428 10660 3438 3430 10661 3437 3431 10662 3438 3430 10663 3440 3432 10664 3439 3433 10665 3440 3432 10666 3442 3434 10667 3441 3435 10668 3442 3434 10669 3444 3436 10670 3443 3437 10671 3444 3436 10672 3446 3438 10673 3445 3439 10674 3446 3438 10675 3448 3440 10676 3449 3441 10677 3447 3442 10678 3448 3440 10679 3451 3443 10680 3449 3441 10681 3450 3444 10682 3453 3445 10683 3451 3443 10684 3452 3446 10685 3455 3447 10686 3453 3445 10687 3454 3448 10688 3457 3449 10689 3455 3447 10690 3456 3450 10691 3459 3451 10692 3457 3449 10693 3458 3452 10694 3461 3453 10695 3459 3451 10696 3460 3454 10697 3463 3455 10698 3461 3453 10699 3462 3456 10700 3465 3457 10701 3463 3455 10702 3464 3458 10703 3467 3459 10704 3465 3457 10705 3466 3460 10706 3469 3461 10707 3467 3459 10708 3468 3462 10709 3471 3463 10710 3469 3461 10711 3470 3464 10712 3471 3463 10713 3472 3465 10714 3474 3466 10715 3412 3404 10716 3473 3467 10717 3474 3466 10718 3402 3402 10719 3412 3404 10720 3411 3407 10721 3410 3401 10722 3411 3407 10723 3415 3409 10724 3406 3396 10725 3415 3409 10726 3417 3411 10727 3404 3394 10728 3417 3411 10729 3419 3413 10730 3405 3395 10731 3419 3413 10732 3421 3415 10733 3407 3397 10734 3421 3415 10735 3423 3417 10736 3398 3389 10737 3423 3417 10738 3425 3419 10739 3396 3387 10740 3425 3419 10741 3427 3421 10742 3397 3388 10743 3427 3421 10744 3429 3423 10745 3408 3398 10746 3429 3423 10747 3431 3425 10748 3400 3391 10749 3431 3425 10750 3433 3427 10751 3399 3390 10752 3433 3427 10753 3435 3429 10754 3384 3376 10755 3435 3429 10756 3437 3431 10757 3382 3374 10758 3437 3431 10759 3439 3433 10760 3383 3375 10761 3439 3433 10762 3441 3435 10763 3392 3383 10764 3441 3435 10765 3443 3437 10766 3381 3373 10767 3443 3437 10768 3445 3439 10769 3379 3371 10770 3445 3439 10771 3447 3442 10772 3380 3372 10773 3447 3442 10774 3449 3441 10775 3390 3381 10776 3391 3382 10777 3449 3441 10778 3388 3379 10779 3390 3381 10780 3451 3443 10781 3389 3380 10782 3388 3379 10783 3453 3445 10784 3395 3386 10785 3389 3380 10786 3455 3447 10787 3387 3378 10788 3395 3386 10789 3457 3449 10790 3385 3377 10791 3387 3378 10792 3459 3451 10793 3386 3385 10794 3385 3377 10795 3461 3453 10796 3386 3385 10797 3463 3455 10798 3465 3457 10799 3394 3400 10800 3393 3384 10801 3465 3457 10802 3394 3400 10803 3467 3459 10804 3469 3461 10805 3403 3393 10806 3409 3399 10807 3469 3461 10808 3403 3393 10809 3471 3463 10810 3473 3467 10811 3402 3402 10812 3401 3392 10813 3473 3467 10814 3476 3468 10815 3477 3469 10816 3478 3470 10817 3475 3471 10818 3478 3470 10819 3480 3472 10820 3479 3473 10821 3480 3472 10822 3482 3474 10823 3481 3475 10824 3482 3474 10825 3484 3476 10826 3485 3477 10827 3483 3478 10828 3484 3476 10829 3487 3479 10830 3485 3477 10831 3486 3480 10832 3489 3481 10833 3487 3479 10834 3488 3482 10835 3491 3483 10836 3489 3481 10837 3490 3484 10838 3493 3485 10839 3494 3486 10840 3495 3487 10841 3497 3488 10842 3493 3485 10843 3496 3489 10844 3499 3490 10845 3497 3488 10846 3498 3491 10847 3501 3492 10848 3499 3490 10849 3500 3493 10850 3503 3494 10851 3501 3492 10852 3502 3495 10853 3505 3496 10854 3503 3494 10855 3504 3497 10856 3507 3498 10857 3505 3496 10858 3506 3499 10859 3509 3500 10860 3507 3498 10861 3508 3501 10862 3496 3489 10863 3495 3487 10864 3511 3502 10865 3498 3491 10866 3496 3489 10867 3512 3503 10868 3500 3493 10869 3498 3491 10870 3513 3504 10871 3502 3495 10872 3500 3493 10873 3514 3505 10874 3502 3495 10875 3515 3506 10876 3516 3507 10877 3504 3497 10878 3516 3507 10879 3517 3508 10880 3506 3499 10881 3517 3508 10882 3518 3509 10883 3508 3501 10884 3518 3509 10885 3519 3510 10886 3521 3511 10887 3512 3503 10888 3511 3502 10889 3522 3512 10890 3513 3504 10891 3512 3503 10892 3523 3513 10893 3514 3505 10894 3513 3504 10895 3524 3514 10896 3515 3506 10897 3514 3505 10898 3525 3515 10899 3516 3507 10900 3515 3506 10901 3526 3516 10902 3517 3508 10903 3516 3507 10904 3527 3517 10905 3518 3509 10906 3517 3508 10907 3528 3518 10908 3519 3510 10909 3518 3509 10910 3477 3469 10911 3494 3486 10912 3493 3485 10913 3478 3470 10914 3493 3485 10915 3497 3488 10916 3480 3472 10917 3497 3488 10918 3499 3490 10919 3482 3474 10920 3499 3490 10921 3501 3492 10922 3486 3480 10923 3484 3476 10924 3501 3492 10925 3488 3482 10926 3486 3480 10927 3503 3494 10928 3490 3484 10929 3488 3482 10930 3505 3496 10931 3492 3519 10932 3490 3484 10933 3507 3498 10934 3520 3520 10935 3476 3468 10936 3475 3471 10937 3521 3511 10938 3475 3471 10939 3479 3473 10940 3522 3512 10941 3479 3473 10942 3481 3475 10943 3523 3513 10944 3481 3475 10945 3483 3478 10946 3525 3515 10947 3524 3514 10948 3483 3478 10949 3526 3516 10950 3525 3515 10951 3485 3477 10952 3527 3517 10953 3526 3516 10954 3487 3479 10955 3528 3518 10956 3527 3517 10957 3489 3481 10958 3530 3521 10959 3477 3469 10960 3476 3468 10961 3532 3522 10962 3530 3521 10963 3529 3523 10964 3534 3524 10965 3532 3522 10966 3531 3525 10967 3536 3526 10968 3534 3524 10969 3533 3527 10970 3537 3528 10971 3538 3529 10972 3536 3526 10973 3539 3530 10974 3540 3531 10975 3538 3529 10976 3541 3532 10977 3542 3533 10978 3540 3531 10979 3491 3483 10980 3492 3519 10981 3542 3533 10982 3543 3534 10983 3544 3535 10984 3495 3487 10985 3545 3536 10986 3546 3537 10987 3544 3535 10988 3547 3538 10989 3548 3539 10990 3546 3537 10991 3549 3540 10992 3550 3541 10993 3548 3539 10994 3551 3542 10995 3552 3543 10996 3550 3541 10997 3553 3544 10998 3554 3545 10999 3552 3543 11000 3555 3546 11001 3556 3547 11002 3554 3545 11003 3509 3500 11004 3510 3548 11005 3556 3547 11006 3544 3535 11007 3557 3549 11008 3511 3502 11009 3546 3537 11010 3558 3550 11011 3557 3549 11012 3548 3539 11013 3559 3551 11014 3558 3550 11015 3550 3541 11016 3560 3552 11017 3559 3551 11018 3561 3553 11019 3560 3552 11020 3550 3541 11021 3562 3554 11022 3561 3553 11023 3552 3543 11024 3563 3555 11025 3562 3554 11026 3554 3545 11027 3519 3510 11028 3563 3555 11029 3556 3547 11030 3511 3502 11031 3557 3549 11032 3564 3556 11033 3557 3549 11034 3558 3550 11035 3565 3557 11036 3558 3550 11037 3559 3551 11038 3566 3558 11039 3559 3551 11040 3560 3552 11041 3567 3559 11042 3560 3552 11043 3561 3553 11044 3568 3560 11045 3561 3553 11046 3562 3554 11047 3569 3561 11048 3562 3554 11049 3563 3555 11050 3570 3562 11051 3563 3555 11052 3519 3510 11053 3528 3518 11054 3543 3534 11055 3494 3486 11056 3477 3469 11057 3545 3536 11058 3543 3534 11059 3530 3521 11060 3547 3538 11061 3545 3536 11062 3532 3522 11063 3549 3540 11064 3547 3538 11065 3534 3524 11066 3538 3529 11067 3551 3542 11068 3549 3540 11069 3540 3531 11070 3553 3544 11071 3551 3542 11072 3542 3533 11073 3555 3546 11074 3553 3544 11075 3492 3519 11076 3509 3500 11077 3555 3546 11078 3529 3523 11079 3476 3468 11080 3520 3520 11081 3531 3525 11082 3529 3523 11083 3564 3556 11084 3533 3527 11085 3531 3525 11086 3565 3557 11087 3535 3563 11088 3533 3527 11089 3566 3558 11090 3568 3560 11091 3537 3528 11092 3535 3563 11093 3569 3561 11094 3539 3530 11095 3537 3528 11096 3570 3562 11097 3541 3532 11098 3539 3530 11099 3528 3518 11100 3491 3483 11101 3541 3532 11102 3572 3564 11103 3573 3565 11104 3574 3566 11105 3575 3567 11106 3576 3568 11107 3572 3564 11108 3578 3569 11109 3579 3570 11110 3580 3571 11111 3580 3571 11112 3579 3570 11113 3581 3572 11114 3582 3573 11115 3581 3572 11116 3583 3574 11117 3585 3575 11118 3586 3576 11119 3587 3577 11120 3586 3576 11121 3576 3568 11122 3575 3567 11123 3577 3578 11124 3574 3566 11125 3573 3565 11126 3589 3579 11127 3590 3580 11128 3591 3581 11129 3594 3582 11130 3590 3580 11131 3589 3579 11132 3595 3583 11133 3596 3584 11134 3597 3585 11135 3599 3586 11136 3600 3587 11137 3596 3584 11138 3602 3588 11139 3603 3589 11140 3604 3590 11141 3603 3589 11142 3605 3591 11143 3606 3592 11144 3605 3591 11145 3594 3582 11146 3593 3593 11147 3592 3594 11148 3591 3581 11149 3607 3595 11150 3608 3596 11151 3609 3597 11152 3610 3598 11153 3607 3595 11154 3612 3599 11155 3609 3597 11156 3610 3598 11157 3613 3600 11158 3601 3601 11159 3613 3600 11160 3614 3602 11161 3602 3588 11162 3616 3603 11163 3617 3604 11164 3618 3605 11165 3620 3606 11166 3616 3603 11167 3615 3607 11168 3618 3605 11169 3617 3604 11170 3621 3608 11171 3622 3609 11172 3621 3608 11173 3623 3610 11174 3621 3608 11175 3625 3611 11176 3626 3612 11177 3617 3604 11178 3627 3613 11179 3625 3611 11180 3628 3614 11181 3627 3613 11182 3617 3604 11183 3629 3615 11184 3628 3614 11185 3616 3603 11186 3614 3602 11187 3630 3616 11188 3631 3617 11189 3632 3618 11190 3633 3619 11191 3624 3620 11192 3634 3621 11193 3632 3618 11194 3623 3610 11195 3595 3583 11196 3635 3622 11197 3636 3623 11198 3635 3622 11199 3595 3583 11200 3598 3624 11201 3638 3625 11202 3639 3626 11203 3629 3615 11204 3638 3625 11205 3620 3606 11206 3619 3627 11207 3641 3628 11208 3642 3629 11209 3612 3599 11210 3643 3630 11211 3641 3628 11212 3607 3595 11213 3590 3580 11214 3644 3631 11215 3643 3630 11216 3645 3632 11217 3644 3631 11218 3590 3580 11219 3646 3633 11220 3645 3632 11221 3594 3582 11222 3647 3634 11223 3646 3633 11224 3605 3591 11225 3602 3588 11226 3631 3617 11227 3647 3634 11228 3624 3620 11229 3648 3635 11230 3630 3616 11231 3622 3609 11232 3624 3620 11233 3614 3602 11234 3618 3605 11235 3622 3609 11236 3613 3600 11237 3609 3597 11238 3615 3607 11239 3618 3605 11240 3619 3627 11241 3615 3607 11242 3609 3597 11243 3642 3629 11244 3649 3636 11245 3619 3627 11246 3631 3617 11247 3630 3616 11248 3651 3637 11249 3652 3638 11250 3651 3637 11251 3630 3616 11252 3632 3618 11253 3653 3639 11254 3654 3640 11255 3653 3639 11256 3632 3618 11257 3634 3621 11258 3641 3628 11259 3650 3641 11260 3651 3637 11261 3652 3638 11262 3649 3636 11263 3642 3629 11264 3638 3625 11265 3640 3642 11266 3654 3640 11267 3639 3626 11268 3638 3625 11269 3653 3639 11270 3636 3623 11271 3656 3643 11272 3657 3644 11273 3600 3587 11274 3599 3586 11275 3657 3644 11276 3627 3613 11277 3596 3584 11278 3600 3587 11279 3597 3585 11280 3596 3584 11281 3627 3613 11282 3659 3645 11283 3598 3624 11284 3597 3585 11285 3637 3646 11286 3598 3624 11287 3659 3645 11288 3637 3646 11289 3661 3647 11290 3655 3648 11291 3636 3623 11292 3655 3648 11293 3656 3643 11294 3659 3645 11295 3660 3649 11296 3628 3614 11297 3628 3614 11298 3660 3649 11299 3627 3613 11300 3627 3613 11301 3658 3650 11302 3625 3611 11303 3625 3611 11304 3658 3650 11305 3657 3644 11306 3656 3643 11307 3634 3621 11308 3626 3612 11309 3655 3648 11310 3634 3621 11311 3656 3643 11312 3661 3647 11313 3639 3626 11314 3655 3648 11315 3639 3626 11316 3661 3647 11317 3659 3645 11318 3574 3566 11319 3662 3651 11320 3663 3652 11321 3571 3653 11322 3663 3652 11323 3664 3654 11324 3665 3655 11325 3666 3656 11326 3577 3578 11327 3582 3573 11328 3667 3657 11329 3665 3655 11330 3667 3657 11331 3582 3573 11332 3584 3658 11333 3669 3659 11334 3670 3660 11335 3588 3661 11336 3664 3654 11337 3669 3659 11338 3587 3577 11339 3666 3656 11340 3662 3651 11341 3574 3566 11342 3662 3651 11343 3671 3662 11344 3672 3663 11345 3663 3652 11346 3672 3663 11347 3673 3664 11348 3665 3655 11349 3674 3665 11350 3675 3666 11351 3667 3657 11352 3676 3667 11353 3674 3665 11354 3676 3667 11355 3667 3657 11356 3668 3668 11357 3678 3669 11358 3679 3670 11359 3670 3660 11360 3673 3664 11361 3678 3669 11362 3669 3659 11363 3666 3656 11364 3675 3666 11365 3671 3662 11366 3671 3662 11367 3680 3671 11368 3672 3663 11369 3672 3663 11370 3680 3671 11371 3673 3664 11372 3674 3665 11373 3680 3671 11374 3675 3666 11375 3676 3667 11376 3680 3671 11377 3674 3665 11378 3680 3671 11379 3679 3670 11380 3678 3669 11381 3673 3664 11382 3680 3671 11383 3678 3669 11384 3675 3666 11385 3680 3671 11386 3671 3662 11387 3649 3636 11388 3640 3642 11389 3619 3627 11390 3640 3642 11391 3649 3636 11392 3652 3638 11393 3633 3619 11394 3654 3640 11395 3652 3638 11396 3624 3620 11397 3633 3619 11398 3648 3635 11399 3660 3649 11400 3597 3585 11401 3627 3613 11402 3627 3613 11403 3600 3587 11404 3658 3650 11405 3635 3622 11406 3637 3646 11407 3655 3648 11408 3636 3623 11409 3635 3622 11410 3655 3648 11411 3682 3672 11412 3683 3673 11413 3684 3674 11414 3685 3675 11415 3686 3676 11416 3684 3674 11417 3687 3677 11418 3688 3678 11419 3689 3679 11420 3690 3680 11421 3689 3679 11422 3691 3681 11423 3681 3682 11424 3684 3674 11425 3650 3641 11426 3643 3630 11427 3681 3682 11428 3641 3628 11429 3650 3641 11430 3684 3674 11431 3686 3676 11432 3686 3676 11433 3685 3675 11434 3647 3634 11435 3693 3683 11436 3694 3684 11437 3644 3631 11438 3694 3684 11439 3682 3672 11440 3643 3630 11441 3647 3634 11442 3685 3675 11443 3695 3685 11444 3646 3633 11445 3695 3685 11446 3693 3683 11447 3643 3630 11448 3682 3672 11449 3681 3682 11450 3631 3617 11451 3686 3676 11452 3647 3634 11453 3687 3677 11454 3690 3680 11455 3683 3673 11456 3689 3679 11457 3688 3678 11458 3694 3684 11459 3688 3678 11460 3687 3677 11461 3682 3672 11462 3683 3673 11463 3690 3680 11464 3692 3686 11465 3685 3675 11466 3692 3686 11467 3691 3681 11468 3695 3685 11469 3691 3681 11470 3689 3679 11471 3611 3687 11472 3601 3601 11473 3697 3688 11474 3611 3687 11475 3696 3689 11476 3698 3690 11477 3592 3594 11478 3608 3596 11479 3698 3690 11480 3700 3691 11481 3589 3579 11482 3592 3594 11483 3701 3692 11484 3593 3593 11485 3589 3579 11486 3606 3592 11487 3593 3593 11488 3701 3692 11489 3601 3601 11490 3604 3590 11491 3703 3693 11492 3606 3592 11493 3702 3694 11494 3704 3695 11495 3668 3668 11496 3584 3658 11497 3588 3661 11498 3585 3575 11499 3588 3661 11500 3584 3658 11501 3679 3670 11502 3677 3696 11503 3668 3668 11504 3680 3671 11505 3677 3696 11506 3679 3670 11507 3604 3590 11508 3704 3695 11509 3703 3693 11510 3705 3697 11511 3706 3698 11512 3578 3569 11513 3707 3699 11514 3705 3697 11515 3573 3565 11516 3576 3568 11517 3708 3700 11518 3707 3699 11519 3586 3576 11520 3709 3701 11521 3708 3700 11522 3710 3702 11523 3709 3701 11524 3586 3576 11525 3581 3572 11526 3711 3703 11527 3712 3704 11528 3579 3570 11529 3713 3705 11530 3711 3703 11531 3706 3698 11532 3713 3705 11533 3579 3570 11534 3714 3706 11535 3715 3707 11536 3699 3708 11537 3699 3708 11538 3715 3707 11539 3716 3709 11540 3716 3709 11541 3717 3710 11542 3701 3692 11543 3717 3710 11544 3718 3711 11545 3702 3694 11546 3702 3694 11547 3718 3711 11548 3719 3712 11549 3720 3713 11550 3721 3714 11551 3697 3688 11552 3721 3714 11553 3722 3715 11554 3696 3689 11555 3722 3715 11556 3714 3706 11557 3698 3690 11558 3680 3671 11559 3676 3667 11560 3677 3696 11561 3703 3693 11562 3704 3695 11563 3719 3712 11564 3583 3574 11565 3712 3704 11566 3710 3702 11567 3720 3713 11568 3719 3712 11569 3710 3702 11570 3720 3713 11571 3712 3704 11572 3711 3703 11573 3721 3714 11574 3711 3703 11575 3713 3705 11576 3714 3706 11577 3722 3715 11578 3713 3705 11579 3715 3707 11580 3714 3706 11581 3706 3698 11582 3708 3700 11583 3717 3710 11584 3716 3709 11585 3707 3699 11586 3716 3709 11587 3715 3707 11588 3708 3700 11589 3709 3701 11590 3718 3711 11591 3709 3701 11592 3710 3702 11593 3719 3712 11594 3723 3716 11595 3724 3717 11596 3725 3718 11597 3727 3719 11598 3723 3716 11599 3726 3720 11600 3730 3721 11601 3731 3722 11602 3732 3723 11603 3733 3724 11604 3734 3725 11605 3731 3722 11606 3735 3726 11607 3736 3727 11608 3734 3725 11609 3737 3728 11610 3738 3729 11611 3739 3730 11612 3727 3719 11613 3728 3731 11614 3740 3732 11615 3732 3723 11616 3725 3718 11617 3724 3717 11618 3741 3733 11619 3742 3734 11620 3743 3735 11621 3741 3733 11622 3744 3736 11623 3746 3737 11624 3747 3738 11625 3748 3739 11626 3749 3740 11627 3750 3741 11628 3751 3742 11629 3752 3743 11630 3754 3744 11631 3755 3745 11632 3756 3746 11633 3757 3747 11634 3758 3748 11635 3755 3745 11636 3745 3749 11637 3746 3737 11638 3758 3748 11639 3742 3734 11640 3759 3750 11641 3760 3751 11642 3761 3752 11643 3762 3753 11644 3763 3754 11645 3760 3751 11646 3759 3750 11647 3763 3754 11648 3761 3752 11649 3753 3755 11650 3765 3756 11651 3756 3746 11652 3766 3757 11653 3765 3756 11654 3768 3758 11655 3769 3759 11656 3770 3760 11657 3767 3761 11658 3770 3760 11659 3772 3762 11660 3768 3758 11661 3773 3763 11662 3774 3764 11663 3773 3763 11664 3775 3765 11665 3776 3766 11666 3774 3764 11667 3776 3766 11668 3777 3767 11669 3769 3759 11670 3774 3764 11671 3778 3768 11672 3769 3759 11673 3779 3769 11674 3780 3770 11675 3770 3760 11676 3780 3770 11677 3781 3771 11678 3782 3772 11679 3783 3773 11680 3766 3757 11681 3776 3766 11682 3775 3765 11683 3784 3774 11684 3776 3766 11685 3785 3775 11686 3786 3776 11687 3787 3777 11688 3788 3778 11689 3747 3738 11690 3788 3778 11691 3789 3779 11692 3748 3739 11693 3790 3780 11694 3772 3762 11695 3781 3771 11696 3792 3781 11697 3771 3782 11698 3772 3762 11699 3793 3783 11700 3760 3751 11701 3764 3784 11702 3760 3751 11703 3793 3783 11704 3795 3785 11705 3743 3735 11706 3795 3785 11707 3796 3786 11708 3744 3736 11709 3796 3786 11710 3797 3787 11711 3758 3748 11712 3746 3737 11713 3797 3787 11714 3758 3748 11715 3798 3788 11716 3799 3789 11717 3799 3789 11718 3782 3772 11719 3756 3746 11720 3783 3773 11721 3800 3790 11722 3775 3765 11723 3766 3757 11724 3775 3765 11725 3773 3763 11726 3765 3756 11727 3773 3763 11728 3768 3758 11729 3763 3754 11730 3762 3753 11731 3768 3758 11732 3764 3784 11733 3763 3754 11734 3767 3761 11735 3794 3791 11736 3764 3784 11737 3771 3782 11738 3803 3792 11739 3783 3773 11740 3782 3772 11741 3783 3773 11742 3803 3792 11743 3804 3793 11744 3785 3775 11745 3784 3774 11746 3805 3794 11747 3786 3776 11748 3785 3775 11749 3806 3795 11750 3793 3783 11751 3794 3791 11752 3803 3792 11753 3804 3793 11754 3803 3792 11755 3794 3791 11756 3805 3794 11757 3792 3781 11758 3790 3780 11759 3806 3795 11760 3790 3780 11761 3791 3796 11762 3808 3797 11763 3809 3798 11764 3787 3777 11765 3808 3797 11766 3752 3743 11767 3751 3742 11768 3779 3769 11769 3751 3742 11770 3750 3741 11771 3749 3740 11772 3779 3769 11773 3750 3741 11774 3811 3799 11775 3812 3800 11776 3749 3740 11777 3811 3799 11778 3748 3739 11779 3789 3779 11780 3789 3779 11781 3807 3801 11782 3813 3802 11783 3787 3777 11784 3809 3798 11785 3807 3801 11786 3780 3770 11787 3812 3800 11788 3811 3799 11789 3780 3770 11790 3779 3769 11791 3812 3800 11792 3779 3769 11793 3778 3768 11794 3810 3803 11795 3778 3768 11796 3777 3767 11797 3808 3797 11798 3809 3798 11799 3808 3797 11800 3777 3767 11801 3807 3801 11802 3809 3798 11803 3786 3776 11804 3813 3802 11805 3807 3801 11806 3791 3796 11807 3791 3796 11808 3781 3771 11809 3811 3799 11810 3724 3717 11811 3723 3716 11812 3814 3804 11813 3723 3716 11814 3727 3719 11815 3816 3805 11816 3729 3806 11817 3817 3807 11818 3818 3808 11819 3733 3724 11820 3730 3721 11821 3818 3808 11822 3735 3726 11823 3733 3724 11824 3819 3809 11825 3738 3729 11826 3821 3810 11827 3822 3811 11828 3739 3730 11829 3822 3811 11830 3816 3805 11831 3724 3717 11832 3815 3812 11833 3817 3807 11834 3815 3812 11835 3814 3804 11836 3823 3813 11837 3814 3804 11838 3816 3805 11839 3825 3814 11840 3818 3808 11841 3817 3807 11842 3826 3815 11843 3819 3809 11844 3818 3808 11845 3827 3816 11846 3820 3817 11847 3819 3809 11848 3828 3818 11849 3821 3810 11850 3830 3819 11851 3831 3820 11852 3822 3811 11853 3831 3820 11854 3825 3814 11855 3815 3812 11856 3824 3821 11857 3826 3815 11858 3824 3821 11859 3823 3813 11860 3832 3822 11861 3823 3813 11862 3825 3814 11863 3832 3822 11864 3827 3816 11865 3826 3815 11866 3832 3822 11867 3828 3818 11868 3827 3816 11869 3832 3822 11870 3832 3822 11871 3831 3820 11872 3830 3819 11873 3825 3814 11874 3831 3820 11875 3832 3822 11876 3826 3815 11877 3824 3821 11878 3832 3822 11879 3801 3823 11880 3771 3782 11881 3792 3781 11882 3804 3793 11883 3801 3823 11884 3792 3781 11885 3800 3790 11886 3804 3793 11887 3805 3794 11888 3775 3765 11889 3800 3790 11890 3784 3774 11891 3812 3800 11892 3779 3769 11893 3749 3740 11894 3779 3769 11895 3810 3803 11896 3751 3742 11897 3788 3778 11898 3807 3801 11899 3789 3779 11900 3787 3777 11901 3807 3801 11902 3788 3778 11903 3834 3824 11904 3835 3825 11905 3836 3826 11906 3837 3827 11907 3835 3825 11908 3834 3824 11909 3839 3828 11910 3840 3829 11911 3841 3830 11912 3840 3829 11913 3843 3831 11914 3844 3832 11915 3802 3833 11916 3834 3824 11917 3833 3834 11918 3795 3785 11919 3793 3783 11920 3833 3834 11921 3802 3833 11922 3782 3772 11923 3838 3835 11924 3838 3835 11925 3799 3789 11926 3837 3827 11927 3796 3786 11928 3845 3836 11929 3846 3837 11930 3795 3785 11931 3836 3826 11932 3845 3836 11933 3799 3789 11934 3798 3788 11935 3847 3838 11936 3798 3788 11937 3797 3787 11938 3846 3837 11939 3795 3785 11940 3833 3834 11941 3836 3826 11942 3782 3772 11943 3799 3789 11944 3838 3835 11945 3835 3825 11946 3840 3829 11947 3839 3828 11948 3845 3836 11949 3842 3839 11950 3841 3830 11951 3836 3826 11952 3839 3828 11953 3842 3839 11954 3835 3825 11955 3837 3827 11956 3843 3831 11957 3837 3827 11958 3847 3838 11959 3844 3832 11960 3847 3838 11961 3846 3837 11962 3841 3830 11963 3848 3840 11964 3849 3841 11965 3753 3755 11966 3850 3842 11967 3848 3840 11968 3761 3752 11969 3850 3842 11970 3759 3750 11971 3742 3734 11972 3852 3843 11973 3851 3844 11974 3742 3734 11975 3852 3843 11976 3741 3733 11977 3745 3749 11978 3853 3845 11979 3745 3749 11980 3757 3747 11981 3855 3846 11982 3754 3744 11983 3753 3755 11984 3856 3847 11985 3854 3848 11986 3757 3747 11987 3738 3729 11988 3735 3726 11989 3820 3817 11990 3736 3727 11991 3735 3726 11992 3738 3729 11993 3821 3810 11994 3820 3817 11995 3829 3849 11996 3832 3822 11997 3830 3819 11998 3829 3849 11999 3754 3744 12000 3855 3846 12001 3856 3847 12002 3732 3723 12003 3857 3850 12004 3858 3851 12005 3726 3720 12006 3725 3718 12007 3858 3851 12008 3728 3731 12009 3726 3720 12010 3859 3852 12011 3728 3731 12012 3860 3853 12013 3861 3854 12014 3740 3732 12015 3861 3854 12016 3862 3855 12017 3734 3725 12018 3736 3727 12019 3863 3856 12020 3734 3725 12021 3864 3857 12022 3865 3858 12023 3731 3722 12024 3865 3858 12025 3857 3850 12026 3851 3844 12027 3866 3859 12028 3867 3860 12029 3851 3844 12030 3852 3843 12031 3868 3861 12032 3853 3845 12033 3869 3862 12034 3868 3861 12035 3854 3848 12036 3870 3863 12037 3869 3862 12038 3854 3848 12039 3856 3847 12040 3871 3864 12041 3849 3841 12042 3872 3865 12043 3873 3866 12044 3849 3841 12045 3848 3840 12046 3874 3867 12047 3850 3842 12048 3867 3860 12049 3874 3867 12050 3832 3822 12051 3829 3849 12052 3828 3818 12053 3873 3866 12054 3871 3864 12055 3856 3847 12056 3737 3728 12057 3862 3855 12058 3863 3856 12059 3862 3855 12060 3871 3864 12061 3873 3866 12062 3864 3857 12063 3863 3856 12064 3873 3866 12065 3865 3858 12066 3864 3857 12067 3872 3865 12068 3867 3860 12069 3857 3850 12070 3865 3858 12071 3858 3851 12072 3857 3850 12073 3867 3860 12074 3868 3861 12075 3869 3862 12076 3860 3853 12077 3859 3852 12078 3858 3851 12079 3866 3859 12080 3860 3853 12081 3869 3862 12082 3870 3863 12083 3861 3854 12084 3870 3863 12085 3871 3864 12086 5809 5794 17376 5810 5795 17377 5811 5796 17378 5814 5797 17379 5815 5798 17380 5816 5799 17381 5818 5800 17382 5819 5801 17383 5820 5802 17384 5822 5803 17385 5823 5804 17386 5824 5805 17387 5826 5806 17388 5827 5807 17389 5828 5808 17390 5828 5808 17391 5827 5807 17392 5829 5809 17393 5830 5810 17394 5829 5809 17395 5831 5811 17396 5833 5812 17397 5834 5813 17398 5835 5814 17399 5837 5815 17400 5838 5816 17401 5839 5817 17402 5842 5818 17403 5843 5819 17404 5844 5820 17405 5846 5821 17406 5847 5822 17407 5848 5823 17408 5850 5824 17409 5851 5825 17410 5852 5826 17411 5854 5827 17412 5855 5828 17413 5856 5829 17414 5856 5829 17415 5855 5828 17416 5857 5830 17417 5858 5831 17418 5857 5830 17419 5859 5832 17420 5861 5833 17421 5862 5834 17422 5863 5835 17423 5866 5836 17424 5867 5837 17425 5868 5838 17426 5870 5839 17427 5871 5840 17428 5872 5841 17429 5874 5842 17430 5875 5843 17431 5876 5844 17432 5877 5845 17433 5878 5846 17434 5879 5847 17435 5882 5848 17436 5883 5849 17437 5884 5850 17438 5883 5849 17439 5885 5851 17440 5886 5852 17441 5886 5852 17442 5885 5851 17443 5887 5853 17444 5889 5854 17445 5890 5855 17446 5891 5856 17447 5893 5857 17448 5894 5858 17449 5895 5859 17450 5896 5860 17451 5894 5858 17452 5897 5861 17453 5898 5862 17454 5894 5858 17455 5899 5863 17456 5894 5858 17457 5900 5864 17458 5901 5865 17459 5900 5864 17460 5894 5858 17461 5902 5866 17462 5902 5866 17463 5894 5858 17464 5903 5867 17465 5903 5867 17466 5894 5858 17467 5904 5868 17468 5905 5869 17469 5894 5858 17470 5906 5870 17471 5908 5871 17472 5909 5872 17473 5910 5873 17474 5911 5874 17475 5912 5875 17476 5913 5876 17477 5909 5872 17478 5915 5877 17479 5916 5878 17480 5913 5876 17481 5912 5875 17482 5917 5879 17483 5919 5880 17484 5920 5881 17485 5921 5882 17486 5924 5883 17487 5925 5884 17488 5926 5885 17489 5928 5886 17490 5929 5887 17491 5918 5888 17492 5930 5889 17493 5931 5890 17494 5914 5891 17495 5932 5892 17496 5933 5893 17497 5934 5894 17498 5936 5895 17499 5937 5896 17500 5938 5897 17501 5939 5898 17502 5940 5899 17503 5941 5900 17504 5942 5901 17505 5943 5902 17506 5944 5903 17507 5947 5904 17508 5809 5794 17509 5948 5905 17510 5950 5906 17511 5951 5907 17512 5952 5908 17513 5953 5909 17514 5954 5910 17515 5950 5906 17516 5956 5911 17517 5957 5912 17518 5958 5913 17519 5958 5913 17520 5957 5912 17521 5960 5914 17522 5959 5915 17523 5960 5914 17524 5962 5916 17525 5964 5917 17526 5965 5918 17527 5966 5919 17528 5911 5874 17529 5914 5891 17530 5968 5920 17531 5969 5921 17532 5968 5920 17533 5914 5891 17534 5970 5922 17535 5971 5923 17536 5941 5900 17537 5972 5924 17538 5973 5925 17539 5956 5911 17540 5975 5926 17541 5976 5927 17542 5977 5928 17543 5979 5929 17544 5980 5930 17545 5981 5931 17546 5915 5877 17547 5982 5932 17548 5983 5933 17549 5985 5934 17550 5986 5935 17551 5987 5936 17552 5988 5937 17553 5989 5938 17554 5990 5939 17555 5992 5940 17556 5993 5941 17557 5994 5942 17558 5996 5943 17559 5997 5944 17560 5983 5933 17561 5999 5945 17562 5979 5929 17563 5978 5946 17564 5984 5947 17565 5987 5936 17566 5963 5948 17567 6001 5949 17568 6002 5950 17569 6003 5951 17570 6004 5952 17571 6005 5953 17572 6006 5954 17573 6008 5955 17574 6009 5956 17575 6003 5951 17576 6011 5957 17577 6009 5956 17578 6008 5955 17579 6012 5958 17580 6013 5959 17581 6011 5957 17582 5999 5945 17583 5998 5960 17584 5995 5961 17585 6014 5962 17586 6015 5963 17587 6016 5964 17588 6019 5965 17589 6020 5966 17590 6021 5967 17591 6023 5968 17592 6024 5969 17593 6025 5970 17594 6024 5969 17595 6026 5971 17596 6027 5972 17597 6026 5971 17598 6021 5967 17599 6020 5966 17600 5828 5808 17601 5830 5810 17602 5979 5929 17603 6004 5952 17604 5833 5812 17605 5836 5973 17606 5974 5974 17607 5809 5794 17608 5947 5904 17609 5951 5907 17610 5950 5906 17611 6029 5975 17612 6029 5975 17613 5950 5906 17614 5954 5910 17615 5955 5976 17616 5958 5913 17617 6032 5977 17618 5958 5913 17619 5959 5915 17620 6033 5978 17621 6033 5978 17622 5959 5915 17623 5961 5979 17624 5963 5948 17625 5926 5885 17626 5925 5884 17627 6035 5980 17628 5972 5924 17629 5955 5976 17630 5987 5936 17631 5986 5935 17632 6037 5981 17633 6016 5964 17634 6015 5963 17635 6039 5982 17636 6040 5983 17637 6041 5984 17638 6037 5981 17639 5989 5938 17640 6042 5985 17641 6043 5986 17642 5994 5942 17643 5993 5941 17644 6044 5987 17645 5963 5948 17646 5987 5936 17647 6036 5988 17648 5825 5989 17649 5828 5808 17650 5999 5945 17651 6045 5990 17652 6046 5991 17653 6047 5992 17654 5986 5935 17655 5985 5934 17656 6049 5993 17657 6050 5994 17658 5943 5902 17659 5942 5901 17660 6051 5995 17661 5942 5901 17662 5945 5996 17663 5922 5997 17664 5921 5882 17665 6053 5998 17666 6016 5964 17667 6054 5999 17668 6047 5992 17669 6055 6000 17670 6056 6001 17671 6038 6002 17672 6058 6003 17673 5919 5880 17674 5922 5997 17675 6059 6004 17676 6060 6005 17677 5936 5895 17678 5939 5898 17679 5937 5896 17680 5936 5895 17681 5937 5896 17682 5941 5900 17683 6061 6006 17684 5971 5923 17685 6062 6007 17686 6061 6006 17687 5991 6008 17688 6063 6009 17689 5927 6010 17690 5990 5939 17691 6064 6011 17692 6063 6009 17693 5990 5939 17694 6043 5986 17695 6065 6012 17696 5929 5887 17697 5930 5889 17698 5913 5876 17699 5979 5929 17700 5830 5810 17701 5832 6013 17702 6066 6014 17703 6067 6015 17704 5980 5930 17705 6068 6016 17706 6069 6017 17707 5909 5872 17708 6069 6017 17709 6070 6018 17710 5915 5877 17711 5982 5932 17712 5915 5877 17713 6070 6018 17714 6072 6019 17715 5996 5943 17716 5982 5932 17717 5820 5802 17718 6073 6020 17719 6074 6021 17720 5821 6022 17721 5824 5805 17722 6075 6023 17723 6078 6024 17724 5817 6025 17725 6074 6021 17726 6078 6024 17727 6079 6026 17728 5816 5799 17729 5812 6027 17730 6080 6028 17731 5948 5905 17732 5866 5836 17733 6081 6029 17734 6082 6030 17735 5870 5839 17736 6083 6031 17737 6084 6032 17738 5874 5842 17739 6085 6033 17740 6086 6034 17741 6087 6035 17742 6088 6036 17743 5879 5847 17744 5882 5848 17745 6089 6037 17746 6090 6038 17747 6090 6038 17748 6091 6039 17749 5885 5851 17750 6091 6039 17751 6092 6040 17752 5887 5853 17753 5890 5855 17754 6093 6041 17755 6094 6042 17756 6095 6043 17757 6096 6044 17758 6082 6030 17759 6083 6031 17760 6097 6045 17761 6098 6046 17762 6099 6047 17763 6100 6048 17764 6086 6034 17765 6087 6035 17766 6101 6049 17767 6102 6050 17768 6089 6037 17769 6103 6051 17770 6104 6052 17771 6104 6052 17772 6105 6053 17773 6091 6039 17774 6105 6053 17775 6106 6054 17776 6092 6040 17777 6107 6055 17778 6108 6056 17779 6094 6042 17780 6109 6057 17781 6110 6058 17782 6096 6044 17783 6111 6059 17784 6112 6060 17785 6100 6048 17786 6101 6049 17787 6113 6061 17788 6114 6062 17789 6103 6051 17790 6115 6063 17791 6116 6064 17792 6104 6052 17793 6116 6064 17794 6117 6065 17795 6117 6065 17796 6118 6066 17797 6106 6054 17798 6119 6067 17799 6120 6068 17800 6108 6056 17801 5897 5861 17802 5898 5862 17803 6111 6059 17804 5893 5857 17805 5895 5859 17806 6110 6058 17807 5905 5869 17808 5906 5870 17809 6120 6068 17810 5903 5867 17811 5904 5868 17812 6118 6066 17813 6116 6064 17814 5902 5866 17815 5903 5867 17816 6115 6063 17817 5900 5864 17818 5902 5866 17819 6113 6061 17820 6122 6069 17821 5901 5865 17822 5898 5862 17823 5899 5863 17824 6112 6060 17825 6123 6070 17826 6124 6071 17827 6037 5981 17828 6037 5981 17829 6124 6071 17830 6125 6072 17831 6036 5988 17832 6125 6072 17833 6126 6073 17834 5923 6074 17835 5926 5885 17836 6126 6073 17837 5974 5974 17838 5977 5928 17839 6129 6075 17840 6130 6076 17841 5809 5794 17842 5974 5974 17843 5810 5795 17844 5809 5794 17845 6130 6076 17846 5838 5816 17847 5837 5815 17848 6133 6077 17849 5866 5836 17850 5865 6078 17851 6135 6079 17852 6081 6029 17853 5866 5836 17854 6134 6080 17855 6095 6043 17856 6081 6029 17857 6136 6081 17858 6138 6082 17859 6109 6057 17860 6095 6043 17861 6139 6083 17862 5893 5857 17863 6109 6057 17864 5894 5858 17865 5893 5857 17866 6139 6083 17867 6140 6084 17868 6034 6085 17869 5925 5884 17870 6028 6086 17871 6141 6087 17872 5976 5927 17873 5947 5904 17874 5951 5907 17875 6028 6086 17876 5951 5907 17877 5947 5904 17878 5946 6088 17879 6052 6089 17880 6058 6003 17881 5934 5894 17882 5933 5893 17883 6050 5994 17884 6051 5995 17885 6062 6007 17886 5969 5921 17887 5931 5890 17888 5938 5897 17889 6061 6006 17890 5931 5890 17891 5935 6090 17892 5938 5897 17893 5930 5889 17894 6059 6004 17895 5935 6090 17896 5929 5887 17897 5961 5979 17898 5962 5916 17899 5965 5918 17900 6034 6085 17901 5961 5979 17902 5964 5917 17903 6141 6087 17904 6140 6084 17905 5924 5883 17906 5976 5927 17907 5924 5883 17908 5923 6074 17909 5977 5928 17910 5923 6074 17911 6127 6091 17912 6006 5954 17913 6001 5949 17914 6000 6092 17915 6067 6015 17916 6068 6016 17917 5908 5871 17918 5980 5930 17919 5908 5871 17920 5907 6093 17921 6045 5990 17922 6023 5968 17923 6022 6094 17924 5967 6095 17925 5968 5920 17926 5932 5892 17927 5933 5893 17928 5932 5892 17929 5968 5920 17930 6050 5994 17931 5933 5893 17932 5969 5921 17933 5943 5902 17934 6050 5994 17935 6062 6007 17936 5944 5903 17937 5943 5902 17938 5971 5923 17939 5954 5910 17940 5953 5909 17941 5973 5925 17942 6030 6096 17943 5954 5910 17944 5972 5924 17945 6013 5959 17946 6072 6019 17947 6071 6097 17948 6011 5957 17949 6071 6097 17950 6070 6018 17951 6009 5956 17952 6070 6018 17953 6069 6017 17954 6000 6092 17955 6003 5951 17956 6069 6017 17957 6007 6098 17958 6000 6092 17959 6068 6016 17960 6004 5952 17961 6007 6098 17962 6067 6015 17963 5833 5812 17964 6004 5952 17965 6066 6014 17966 5834 5813 17967 5833 5812 17968 5832 6013 17969 5862 5834 17970 5861 5833 17971 5860 6099 17972 5890 5855 17973 5889 5854 17974 5888 6100 17975 6092 6040 17976 6093 6041 17977 5890 5855 17978 6106 6054 17979 6107 6055 17980 6093 6041 17981 6118 6066 17982 6119 6067 17983 6107 6055 17984 5904 5868 17985 5905 5869 17986 6119 6067 17987 5837 5815 17988 5810 5795 17989 6131 6101 17990 5834 5813 17991 5861 5833 17992 5864 6102 17993 5861 5833 17994 5834 5813 17995 5831 5811 17996 5829 5809 17997 5858 5831 17998 5860 6099 17999 5827 5807 18000 5856 5829 18001 5858 5831 18002 5853 6103 18003 5856 5829 18004 5827 5807 18005 5822 5803 18006 5849 6104 18007 5852 5826 18008 5845 6105 18009 5848 5823 18010 5819 5801 18011 5841 6106 18012 5844 5820 18013 5815 5798 18014 5810 5795 18015 5837 5815 18016 5840 6107 18017 5865 6078 18018 5838 5816 18019 6132 6108 18020 5862 5834 18021 5889 5854 18022 5892 6109 18023 5889 5854 18024 5862 5834 18025 5859 5832 18026 5857 5830 18027 5886 5852 18028 5888 6100 18029 5884 5850 18030 5886 5852 18031 5857 5830 18032 5881 6110 18033 5884 5850 18034 5855 5828 18035 5877 5845 18036 5880 6111 18037 5851 5825 18038 5873 6112 18039 5876 5844 18040 5847 5822 18041 5869 6113 18042 5872 5841 18043 5843 5819 18044 5838 5816 18045 5865 6078 18046 5868 5838 18047 6123 6070 18048 6012 5958 18049 6010 6114 18050 6010 6114 18051 6008 5955 18052 6125 6072 18053 6125 6072 18054 6008 5955 18055 6002 5950 18056 6127 6091 18057 6126 6073 18058 6002 5950 18059 6129 6075 18060 6127 6091 18061 6001 5949 18062 6005 5953 18063 6128 6115 18064 6129 6075 18065 5836 5973 18066 6130 6076 18067 6128 6115 18068 6131 6101 18069 6130 6076 18070 5836 5973 18071 6133 6077 18072 6131 6101 18073 5835 5814 18074 6132 6108 18075 6133 6077 18076 5864 6102 18077 6135 6079 18078 6132 6108 18079 5863 5835 18080 6134 6080 18081 6135 6079 18082 5892 6109 18083 6136 6081 18084 6134 6080 18085 5891 5856 18086 6108 6056 18087 6137 6116 18088 6136 6081 18089 6120 6068 18090 6138 6082 18091 6137 6116 18092 5906 5870 18093 6139 6083 18094 6138 6082 18095 5824 5805 18096 5825 5989 18097 6044 5987 18098 5826 5806 18099 5825 5989 18100 5824 5805 18101 5853 6103 18102 5826 5806 18103 5823 5804 18104 5851 5825 18105 5854 5827 18106 5853 6103 18107 5880 6111 18108 5881 6110 18109 5854 5827 18110 5882 5848 18111 5881 6110 18112 5880 6111 18113 6088 6036 18114 6089 6037 18115 5882 5848 18116 6103 6051 18117 6089 6037 18118 6088 6036 18119 6115 6063 18120 6103 6051 18121 6102 6050 18122 5900 5864 18123 6115 6063 18124 6114 6062 18125 6142 6117 18126 5821 6022 18127 6076 6118 18128 6144 6119 18129 5822 5803 18130 5821 6022 18131 6145 6120 18132 5849 6104 18133 5822 5803 18134 6146 6121 18135 5850 5824 18136 5849 6104 18137 6147 6122 18138 5877 5845 18139 5850 5824 18140 5878 5846 18141 5877 5845 18142 6147 6122 18143 6149 6123 18144 6087 6035 18145 5878 5846 18146 6101 6049 18147 6087 6035 18148 6149 6123 18149 6113 6061 18150 6101 6049 18151 6150 6124 18152 6122 6069 18153 6113 6061 18154 6151 6125 18155 6153 6126 18156 6056 6001 18157 6055 6000 18158 6154 6127 18159 6155 6128 18160 6156 6129 18161 6157 6130 18162 6158 6131 18163 6159 6132 18164 6158 6131 18165 6160 6133 18166 6161 6134 18167 6160 6133 18168 6162 6135 18169 6163 6136 18170 6165 6137 18171 6163 6136 18172 6162 6135 18173 6167 6138 18174 6165 6137 18175 6164 6139 18176 6169 6140 18177 6167 6138 18178 6166 6141 18179 6024 5969 18180 6023 5968 18181 6161 6134 18182 6155 6128 18183 6154 6127 18184 6048 6142 18185 6018 6143 18186 6021 5967 18187 6167 6138 18188 6026 5971 18189 6024 5969 18190 6163 6136 18191 6021 5967 18192 6026 5971 18193 6165 6137 18194 6023 5968 18195 6045 5990 18196 6159 6132 18197 6045 5990 18198 6048 6142 18199 6154 6127 18200 6172 6144 18201 6156 6129 18202 6155 6128 18203 6171 6145 18204 6155 6128 18205 6170 6146 18206 5815 5798 18207 5818 5800 18208 5817 6025 18209 5844 5820 18210 5845 6105 18211 5818 5800 18212 5843 5819 18213 5846 5821 18214 5845 6105 18215 5872 5841 18216 5873 6112 18217 5846 5821 18218 5871 5840 18219 5874 5842 18220 5873 6112 18221 6085 6033 18222 5874 5842 18223 5871 5840 18224 5896 5860 18225 5897 5861 18226 6121 6147 18227 6173 6148 18228 6121 6147 18229 6098 6046 18230 6099 6047 18231 6085 6033 18232 6084 6032 18233 6111 6059 18234 6099 6047 18235 6098 6046 18236 5917 5879 18237 5988 5937 18238 5991 6008 18239 6025 5970 18240 6027 5972 18241 5912 5875 18242 6025 5970 18243 5911 5874 18244 5967 6095 18245 6022 6094 18246 5967 6095 18247 6053 5998 18248 5921 5882 18249 6174 6149 18250 6046 5991 18251 5920 5881 18252 6175 6150 18253 6174 6149 18254 6176 6151 18255 6080 6028 18256 5812 6027 18257 5814 5797 18258 5813 6152 18259 5812 6027 18260 5840 6107 18261 5841 6106 18262 5814 5797 18263 5842 5818 18264 5841 6106 18265 5840 6107 18266 5869 6113 18267 5842 5818 18268 5839 5817 18269 5867 5837 18270 5870 5839 18271 5869 6113 18272 6083 6031 18273 5870 5839 18274 5867 5837 18275 6097 6045 18276 6083 6031 18277 6082 6030 18278 6110 6058 18279 6173 6148 18280 6097 6045 18281 5895 5859 18282 5896 5860 18283 6173 6148 18284 5894 5858 18285 5898 5862 18286 5897 5861 18287 5894 5858 18288 5896 5860 18289 5895 5859 18290 5820 5802 18291 6177 6153 18292 6073 6020 18293 5819 5801 18294 6178 6154 18295 6177 6153 18296 5848 5823 18297 6179 6155 18298 6178 6154 18299 5847 5822 18300 6180 6156 18301 6179 6155 18302 5876 5844 18303 6181 6157 18304 6180 6156 18305 5875 5843 18306 6182 6158 18307 6181 6157 18308 6086 6034 18309 6183 6159 18310 6182 6158 18311 6184 6160 18312 6183 6159 18313 6086 6034 18314 6112 6060 18315 6185 6161 18316 6184 6160 18317 5899 5863 18318 6186 6162 18319 6185 6161 18320 5894 5858 18321 6152 6163 18322 6186 6162 18323 5894 5858 18324 6186 6162 18325 5899 5863 18326 6187 6164 18327 6015 5963 18328 6078 6024 18329 6079 6026 18330 6078 6024 18331 6015 5963 18332 6080 6028 18333 6176 6151 18334 6175 6150 18335 5948 5905 18336 6080 6028 18337 5920 5881 18338 5946 6088 18339 5948 5905 18340 5919 5880 18341 5952 5908 18342 5946 6088 18343 6058 6003 18344 5949 6165 18345 5952 5908 18346 6052 6089 18347 5953 5909 18348 5949 6165 18349 5945 5996 18350 5973 5925 18351 5953 5909 18352 5944 5903 18353 5956 5911 18354 5973 5925 18355 5970 5922 18356 5957 5912 18357 5956 5911 18358 5940 5899 18359 5957 5912 18360 5939 5898 18361 6060 6005 18362 5962 5916 18363 5960 5914 18364 6060 6005 18365 5962 5916 18366 6059 6004 18367 5928 5886 18368 5965 5918 18369 5928 5886 18370 5927 6010 18371 6063 6009 18372 5984 5947 18373 5966 5919 18374 6064 6011 18375 5985 5934 18376 5984 5947 18377 5985 5934 18378 6064 6011 18379 6065 6012 18380 6020 5966 18381 6019 5965 18382 6042 5985 18383 6027 5972 18384 6020 5966 18385 5989 5938 18386 6027 5972 18387 5988 5937 18388 5917 5879 18389 6186 6162 18390 6152 6163 18391 6151 6125 18392 6151 6125 18393 6150 6124 18394 6184 6160 18395 6150 6124 18396 6149 6123 18397 6183 6159 18398 6183 6159 18399 6149 6123 18400 6148 6166 18401 6182 6158 18402 6148 6166 18403 6147 6122 18404 6181 6157 18405 6147 6122 18406 6146 6121 18407 6180 6156 18408 6146 6121 18409 6145 6120 18410 6179 6155 18411 6145 6120 18412 6144 6119 18413 6178 6154 18414 6144 6119 18415 6142 6117 18416 6177 6153 18417 6142 6117 18418 6143 6167 18419 5894 5858 18420 6122 6069 18421 6152 6163 18422 5894 5858 18423 6139 6083 18424 5906 5870 18425 5894 5858 18426 5905 5869 18427 5904 5868 18428 6122 6069 18429 5894 5858 18430 5901 5865 18431 6079 6026 18432 6176 6151 18433 5813 6152 18434 6176 6151 18435 6079 6026 18436 6014 5962 18437 6014 5962 18438 6017 6168 18439 6174 6149 18440 6046 5991 18441 6174 6149 18442 6017 6168 18443 6048 6142 18444 6047 5992 18445 6054 5999 18446 6056 6001 18447 6054 5999 18448 6016 5964 18449 6170 6146 18450 6054 5999 18451 6056 6001 18452 6039 5982 18453 6189 6169 18454 6057 6170 18455 6039 5982 18456 6015 5963 18457 6187 6164 18458 6187 6164 18459 6190 6171 18460 6189 6169 18461 6190 6171 18462 6187 6164 18463 6077 6172 18464 6077 6172 18465 6074 6021 18466 6192 6173 18467 6073 6020 18468 6193 6174 18469 6192 6173 18470 6177 6153 18471 6188 6175 18472 6073 6020 18473 6188 6175 18474 6193 6174 18475 6073 6020 18476 6194 6176 18477 6195 6177 18478 6028 6086 18479 6195 6177 18480 6196 6178 18481 6141 6087 18482 6197 6179 18483 6198 6180 18484 6034 6085 18485 6198 6180 18486 6199 6181 18487 6033 5978 18488 6032 5977 18489 6033 5978 18490 6199 6181 18491 6200 6182 18492 6201 6183 18493 6031 6184 18494 6202 6185 18495 6035 5980 18496 6031 6184 18497 6030 6096 18498 6203 6186 18499 6194 6176 18500 6204 6187 18501 6205 6188 18502 6195 6177 18503 6205 6188 18504 6206 6189 18505 6196 6178 18506 6207 6190 18507 6208 6191 18508 6198 6180 18509 6208 6191 18510 6209 6192 18511 6199 6181 18512 6209 6192 18513 6210 6193 18514 6200 6182 18515 6210 6193 18516 6211 6194 18517 6201 6183 18518 6201 6183 18519 6211 6194 18520 6212 6195 18521 6203 6186 18522 6213 6196 18523 6204 6187 18524 6213 6196 18525 6214 6197 18526 6215 6198 18527 6211 6194 18528 6216 6199 18529 6217 6200 18530 6218 6201 18531 6216 6199 18532 6211 6194 18533 6219 6202 18534 6218 6201 18535 6210 6193 18536 6208 6191 18537 6220 6203 18538 6219 6202 18539 6207 6190 18540 6221 6204 18541 6220 6203 18542 6222 6205 18543 6223 6206 18544 6206 6189 18545 6215 6198 18546 6222 6205 18547 6205 6188 18548 6223 6206 18549 6221 6204 18550 6207 6190 18551 6206 6189 18552 6207 6190 18553 6197 6179 18554 6196 6178 18555 6197 6179 18556 6140 6084 18557 6203 6186 18558 6030 6096 18559 6035 5980 18560 6213 6196 18561 6203 6186 18562 6202 6185 18563 6214 6197 18564 6213 6196 18565 6212 6195 18566 6224 6207 18567 6225 6208 18568 5557 5543 18569 6227 6209 18570 5581 5563 18571 5558 5544 18572 6229 6210 18573 6230 6211 18574 6231 6212 18575 6233 6213 18576 6234 6214 18577 5570 5554 18578 6230 6211 18579 6233 6213 18580 6232 6215 18581 6225 6208 18582 6224 6207 18583 6236 6216 18584 6238 6217 18585 6227 6209 18586 6226 6218 18587 6239 6219 18588 6240 6220 18589 6230 6211 18590 6241 6221 18591 6242 6222 18592 6234 6214 18593 6240 6220 18594 6241 6221 18595 6233 6213 18596 6232 6215 18597 5570 5554 18598 5569 5553 18599 6244 6223 18600 6231 6212 18601 6232 6215 18602 6231 6212 18603 6244 6223 18604 6245 6224 18605 6224 6207 18606 6234 6214 18607 6242 6222 18608 6234 6214 18609 6224 6207 18610 5573 5556 18611 6226 6218 18612 5558 5544 18613 5557 5543 18614 6237 6225 18615 6226 6218 18616 6225 6208 18617 6157 6130 18618 6156 6129 18619 6238 6217 18620 6237 6225 18621 6235 6226 18622 6158 6131 18623 6235 6226 18624 6236 6216 18625 6160 6133 18626 6236 6216 18627 6242 6222 18628 6162 6135 18629 6164 6139 18630 6162 6135 18631 6242 6222 18632 6166 6141 18633 6164 6139 18634 6241 6221 18635 6168 6227 18636 6166 6141 18637 6240 6220 18638 6246 6228 18639 5225 5209 18640 5581 5563 18641 6247 6229 18642 6246 6228 18643 6227 6209 18644 6247 6229 18645 6238 6217 18646 6156 6129 18647 6248 6230 18648 6249 6231 18649 6250 6232 18650 6253 6233 18651 6254 6234 18652 6255 6235 18653 6257 6236 18654 6258 6237 18655 6259 6238 18656 6260 6239 18657 6261 6240 18658 5822 5803 18659 6262 6241 18660 6263 6242 18661 6264 6243 18662 6263 6242 18663 6266 6244 18664 6267 6245 18665 6266 6244 18666 6268 6246 18667 6269 6247 18668 6270 6248 18669 6271 6249 18670 6272 6250 18671 6274 6251 18672 6275 6252 18673 6276 6253 18674 6279 6254 18675 6280 6255 18676 6281 6256 18677 6283 6257 18678 6284 6258 18679 6285 6259 18680 6287 6260 18681 6288 6261 18682 6289 6262 18683 6291 6263 18684 6292 6264 18685 6293 6265 18686 6291 6263 18687 6294 6266 18688 6295 6267 18689 6294 6266 18690 6296 6268 18691 6297 6269 18692 6298 6270 18693 6299 6271 18694 6300 6272 18695 6303 6273 18696 6304 6274 18697 6305 6275 18698 6307 6276 18699 6308 6277 18700 6309 6278 18701 6311 6279 18702 6312 6280 18703 6313 6281 18704 6314 6282 18705 6315 6283 18706 6316 6284 18707 6318 6285 18708 6319 6286 18709 6320 6287 18710 6319 6286 18711 6322 6288 18712 6323 6289 18713 6322 6288 18714 6324 6290 18715 6325 6291 18716 6326 6292 18717 6327 6293 18718 6328 6294 18719 6330 6295 18720 6331 6296 18721 6332 6297 18722 6333 6298 18723 6334 6299 18724 6332 6297 18725 6335 6300 18726 6336 6301 18727 6332 6297 18728 6332 6297 18729 6337 6302 18730 6338 6303 18731 6338 6303 18732 6339 6304 18733 6332 6297 18734 6339 6304 18735 6340 6305 18736 6332 6297 18737 6340 6305 18738 6341 6306 18739 6332 6297 18740 6342 6307 18741 6343 6308 18742 6332 6297 18743 6345 6309 18744 6346 6310 18745 6347 6311 18746 6349 6312 18747 6350 6313 18748 6351 6314 18749 6346 6310 18750 6345 6309 18751 6352 6315 18752 6350 6313 18753 6354 6316 18754 6355 6317 18755 6356 6318 18756 6357 6319 18757 6358 6320 18758 6361 6321 18759 6362 6322 18760 6363 6323 18761 6354 6316 18762 6365 6324 18763 6366 6325 18764 6349 6312 18765 6367 6326 18766 6368 6327 18767 6369 6328 18768 6357 6319 18769 6370 6329 18770 6373 6330 18771 6374 6331 18772 6375 6332 18773 6376 6333 18774 6377 6334 18775 6378 6335 18776 6379 6336 18777 6380 6337 18778 6381 6338 18779 6384 6339 18780 6248 6230 18781 6385 6340 18782 6387 6341 18783 6388 6342 18784 6389 6343 18785 6390 6344 18786 6386 6345 18787 6389 6343 18788 6393 6346 18789 6394 6347 18790 6395 6348 18791 6396 6349 18792 6397 6350 18793 6394 6347 18794 6399 6351 18795 6397 6350 18796 6396 6349 18797 6401 6352 18798 6402 6353 18799 6403 6354 18800 6405 6355 18801 6349 6312 18802 6348 6356 18803 6349 6312 18804 6405 6355 18805 6406 6357 18806 6376 6333 18807 6407 6358 18808 6408 6359 18809 6409 6360 18810 6392 6361 18811 6395 6348 18812 6412 6362 18813 6413 6363 18814 6414 6364 18815 6416 6365 18816 6417 6366 18817 6418 6367 18818 6353 6368 18819 6352 6315 18820 6419 6369 18821 6422 6370 18822 6423 6371 18823 6424 6372 18824 6426 6373 18825 6427 6374 18826 6428 6375 18827 5992 5940 18828 6429 6376 18829 6430 6377 18830 6419 6369 18831 5997 5944 18832 5996 5943 18833 6415 6378 18834 6418 6367 18835 6432 6379 18836 6400 6380 18837 6422 6370 18838 6421 6381 18839 6434 6382 18840 6435 6383 18841 6436 6384 18842 6438 6385 18843 6439 6386 18844 6440 6387 18845 6434 6382 18846 6441 6388 18847 6442 6389 18848 6442 6389 18849 6441 6388 18850 6444 6390 18851 6443 6391 18852 6444 6390 18853 6013 5959 18854 6429 6376 18855 6431 6392 18856 6432 6379 18857 6446 6393 18858 6447 6394 18859 6448 6395 18860 6018 6143 18861 6449 6396 18862 6450 6397 18863 6451 6398 18864 6452 6399 18865 6453 6400 18866 6455 6401 18867 6456 6402 18868 6453 6400 18869 6450 6397 18870 6449 6396 18871 6456 6402 18872 6432 6379 18873 6418 6367 18874 6266 6244 18875 6437 6403 18876 6440 6387 18877 6271 6249 18878 6411 6404 18879 6414 6364 18880 6385 6340 18881 6458 6405 18882 6389 6343 18883 6388 6342 18884 6458 6405 18885 6459 6406 18886 6391 6407 18887 6461 6408 18888 6393 6346 18889 6392 6361 18890 6462 6409 18891 6396 6349 18892 6393 6346 18893 6462 6409 18894 6463 6410 18895 6398 6411 18896 6362 6322 18897 6361 6321 18898 6400 6380 18899 6464 6412 18900 6460 6413 18901 6392 6361 18902 6466 6414 18903 6423 6371 18904 6422 6370 18905 6468 6415 18906 6448 6395 18907 6447 6394 18908 6466 6414 18909 6041 5984 18910 6040 5983 18911 6427 6374 18912 6043 5986 18913 6042 5985 18914 6262 6241 18915 6044 5987 18916 5993 5941 18917 6400 6380 18918 6361 6321 18919 6465 6416 18920 6430 6377 18921 6432 6379 18922 6263 6242 18923 6469 6417 18924 6470 6418 18925 6471 6419 18926 6423 6371 18927 6040 5983 18928 6049 5993 18929 6473 6420 18930 6474 6421 18931 6379 6336 18932 6474 6421 18933 6475 6422 18934 6380 6337 18935 6357 6319 18936 6369 6328 18937 6476 6423 18938 6447 6394 18939 6446 6393 18940 6471 6419 18941 6055 6000 18942 6057 6170 18943 6467 6424 18944 6357 6319 18945 6356 6318 18946 6479 6425 18947 6480 6426 18948 6372 6427 18949 6375 6332 18950 6375 6332 18951 6374 6331 18952 6378 6335 18953 6482 6428 18954 6376 6333 18955 6374 6331 18956 6407 6358 18957 6376 6333 18958 6482 6428 18959 6364 6429 18960 6484 6430 18961 6426 6373 18962 6427 6374 18963 6426 6373 18964 6484 6430 18965 6485 6431 18966 6065 6012 18967 6043 5986 18968 6365 6324 18969 6354 6316 18970 6350 6313 18971 6418 6367 18972 6486 6432 18973 6268 6246 18974 6417 6366 18975 6487 6433 18976 6486 6432 18977 6346 6310 18978 6488 6434 18979 6489 6435 18980 6488 6434 18981 6346 6310 18982 6353 6368 18983 6490 6436 18984 6353 6368 18985 6420 6437 18986 6491 6438 18987 6420 6437 18988 5996 5943 18989 6492 6439 18990 6493 6440 18991 6257 6236 18992 5821 6022 18993 6076 6118 18994 6075 6023 18995 6492 6439 18996 6256 6441 18997 6495 6442 18998 6253 6233 18999 6496 6443 19000 6495 6442 19001 6249 6231 19002 6248 6230 19003 6384 6339 19004 6305 6275 19005 6304 6274 19006 6498 6444 19007 6309 6278 19008 6308 6277 19009 6500 6445 19010 6312 6280 19011 6502 6446 19012 6503 6447 19013 6316 6284 19014 6504 6448 19015 6505 6449 19016 6321 6450 19017 6320 6287 19018 6506 6451 19019 6320 6287 19020 6323 6289 19021 6508 6452 19022 6323 6289 19023 6325 6291 19024 6509 6453 19025 6329 6454 19026 6328 6294 19027 6510 6455 19028 6498 6444 19029 6512 6456 19030 6513 6457 19031 6501 6458 19032 6500 6445 19033 6514 6459 19034 6502 6446 19035 6516 6460 19036 6517 6461 19037 6505 6449 19038 6504 6448 19039 6518 6462 19040 6507 6463 19041 6506 6451 19042 6520 6464 19043 6508 6452 19044 6522 6465 19045 6520 6464 19046 6509 6453 19047 6523 6466 19048 6522 6465 19049 6510 6455 19050 6524 6467 19051 6525 6468 19052 6512 6456 19053 6526 6469 19054 6527 6470 19055 6516 6460 19056 6528 6471 19057 6529 6472 19058 6519 6473 19059 6518 6462 19060 6530 6474 19061 6521 6475 19062 6520 6464 19063 6532 6476 19064 6520 6464 19065 6522 6465 19066 6534 6477 19067 6523 6466 19068 6535 6478 19069 6534 6477 19070 6524 6467 19071 6536 6479 19072 6537 6480 19073 6529 6472 19074 6335 6300 19075 6334 6299 19076 6526 6469 19077 6331 6296 19078 6330 6295 19079 6536 6479 19080 6343 6308 19081 6342 6307 19082 6535 6478 19083 6341 6306 19084 6340 6305 19085 6532 6476 19086 6534 6477 19087 6340 6305 19088 6533 6481 19089 6532 6476 19090 6339 6304 19091 6531 6482 19092 6530 6474 19093 6337 6302 19094 6528 6471 19095 6336 6301 19096 6335 6300 19097 6041 5984 19098 6466 6414 19099 6540 6483 19100 6465 6416 19101 6541 6484 19102 6540 6483 19103 6542 6485 19104 6541 6484 19105 6465 6416 19106 6542 6485 19107 6361 6321 19108 6360 6486 19109 6545 6487 19110 6412 6362 19111 6411 6404 19112 6546 6488 19113 6544 6489 19114 6411 6404 19115 6546 6488 19116 6248 6230 19117 6251 6490 19118 6549 6491 19119 6274 6251 19120 6277 6492 19121 6550 6493 19122 6551 6494 19123 6302 6495 19124 6550 6493 19125 6305 6275 19126 6499 6496 19127 6552 6497 19128 6499 6496 19129 6513 6457 19130 6554 6498 19131 6553 6499 19132 6513 6457 19133 6555 6500 19134 6554 6498 19135 6527 6470 19136 6332 6297 19137 6555 6500 19138 6330 6295 19139 6362 6322 19140 6463 6410 19141 6556 6501 19142 6413 6363 19143 6557 6502 19144 6457 6503 19145 6385 6340 19146 6414 6364 19147 6457 6503 19148 6383 6504 19149 6385 6340 19150 6388 6342 19151 6370 6329 19152 6479 6425 19153 6475 6422 19154 6371 6505 19155 6370 6329 19156 6474 6421 19157 6367 6326 19158 6406 6357 19159 6483 6506 19160 6367 6326 19161 6482 6428 19162 6373 6330 19163 6372 6427 19164 6365 6324 19165 6368 6327 19166 6365 6324 19167 6372 6427 19168 6480 6426 19169 6402 6353 19170 6399 6351 19171 6398 6411 19172 6463 6410 19173 6362 6322 19174 6403 6354 19175 6363 6323 19176 6556 6501 19177 6557 6502 19178 6360 6486 19179 6363 6323 19180 6413 6363 19181 6543 6507 19182 6360 6486 19183 6412 6362 19184 6433 6508 19185 6436 6384 19186 6439 6386 19187 6347 6311 19188 6489 6435 19189 6487 6433 19190 6344 6509 19191 6347 6311 19192 6417 6366 19193 6472 6510 19194 6451 6398 19195 6454 6511 19196 6369 6328 19197 6405 6355 19198 6404 6512 19199 6405 6355 19200 6369 6328 19201 6371 6505 19202 6406 6357 19203 6371 6505 19204 6473 6420 19205 6382 6513 19206 6407 6358 19207 6483 6506 19208 6407 6358 19209 6382 6513 19210 6381 6338 19211 6391 6407 19212 6409 6360 19213 6410 6514 19214 6459 6406 19215 6464 6412 19216 6409 6360 19217 6444 6390 19218 6491 6438 19219 6072 6019 19220 6441 6388 19221 6490 6436 19222 6491 6438 19223 6434 6382 19224 6488 6434 19225 6490 6436 19226 6488 6434 19227 6434 6382 19228 6433 6508 19229 6489 6435 19230 6433 6508 19231 6438 6385 19232 6487 6433 19233 6438 6385 19234 6437 6403 19235 6486 6432 19236 6437 6403 19237 6270 6248 19238 6268 6246 19239 6270 6248 19240 6273 6515 19241 6296 6268 19242 6298 6270 19243 6301 6516 19244 6325 6291 19245 6324 6290 19246 6326 6292 19247 6509 6453 19248 6325 6291 19249 6329 6454 19250 6523 6466 19251 6509 6453 19252 6511 6517 19253 6535 6478 19254 6523 6466 19255 6525 6468 19256 6341 6306 19257 6535 6478 19258 6537 6480 19259 6547 6518 19260 6251 6490 19261 6274 6251 19262 6273 6515 19263 6272 6250 19264 6299 6271 19265 6269 6247 19266 6273 6515 19267 6298 6270 19268 6267 6245 19269 6269 6247 19270 6296 6268 19271 6264 6243 19272 6267 6245 19273 6294 6266 19274 6265 6519 19275 6264 6243 19276 6291 6263 19277 6261 6240 19278 6287 6260 19279 6286 6520 19280 6258 6237 19281 6283 6257 19282 6282 6521 19283 6254 6234 19284 6279 6254 19285 6278 6522 19286 6251 6490 19287 6250 6232 19288 6275 6252 19289 6548 6523 19290 6277 6492 19291 6302 6495 19292 6301 6516 19293 6300 6272 19294 6327 6293 19295 6297 6269 19296 6301 6516 19297 6326 6292 19298 6295 6267 19299 6297 6269 19300 6324 6290 19301 6292 6264 19302 6295 6267 19303 6322 6288 19304 6293 6265 19305 6292 6264 19306 6319 6286 19307 6288 6261 19308 6315 6283 19309 6314 6282 19310 6284 6258 19311 6311 6279 19312 6310 6524 19313 6280 6255 19314 6307 6276 19315 6306 6525 19316 6277 6492 19317 6276 6253 19318 6303 6273 19319 6123 6070 19320 6540 6483 19321 6443 6391 19322 6541 6484 19323 6442 6389 19324 6443 6391 19325 6542 6485 19326 6435 6383 19327 6442 6389 19328 6435 6383 19329 6542 6485 19330 6543 6507 19331 6436 6384 19332 6543 6507 19333 6545 6487 19334 6440 6387 19335 6439 6386 19336 6545 6487 19337 6440 6387 19338 6544 6489 19339 6546 6488 19340 6271 6249 19341 6546 6488 19342 6547 6518 19343 6272 6250 19344 6547 6518 19345 6549 6491 19346 6299 6271 19347 6549 6491 19348 6548 6523 19349 6300 6272 19350 6548 6523 19351 6551 6494 19352 6327 6293 19353 6551 6494 19354 6550 6493 19355 6328 6294 19356 6550 6493 19357 6552 6497 19358 6524 6467 19359 6510 6455 19360 6552 6497 19361 6536 6479 19362 6524 6467 19363 6553 6499 19364 6343 6308 19365 6536 6479 19366 6554 6498 19367 6260 6239 19368 6075 6023 19369 6044 5987 19370 6260 6239 19371 6262 6241 19372 6265 6519 19373 6287 6260 19374 6261 6240 19375 6265 6519 19376 6288 6261 19377 6287 6260 19378 6290 6526 19379 6288 6261 19380 6293 6265 19381 6318 6285 19382 6315 6283 19383 6318 6285 19384 6321 6450 19385 6316 6284 19386 6321 6450 19387 6507 6463 19388 6504 6448 19389 6507 6463 19390 6521 6475 19391 6518 6462 19392 6521 6475 19393 6533 6481 19394 6530 6474 19395 6533 6481 19396 6338 6303 19397 6558 6527 19398 6143 6167 19399 6076 6118 19400 6559 6528 19401 6558 6527 19402 5821 6022 19403 6560 6529 19404 6559 6528 19405 5822 5803 19406 6561 6530 19407 6560 6529 19408 6286 6520 19409 6562 6531 19410 6561 6530 19411 6289 6262 19412 6562 6531 19413 6314 6282 19414 6317 6532 19415 6564 6533 19416 6563 6534 19417 6317 6532 19418 6564 6533 19419 6505 6449 19420 6519 6473 19421 6565 6535 19422 6519 6473 19423 6531 6482 19424 6566 6536 19425 6531 6482 19426 6539 6537 19427 6153 6126 19428 6055 6000 19429 6478 6538 19430 6568 6539 19431 6569 6540 19432 6570 6541 19433 6572 6542 19434 6573 6543 19435 6569 6540 19436 6574 6544 19437 6575 6545 19438 6573 6543 19439 6576 6546 19440 6577 6547 19441 6575 6545 19442 6577 6547 19443 6576 6546 19444 6579 6548 19445 6578 6549 19446 6579 6548 19447 6581 6550 19448 6168 6227 19449 6580 6551 19450 6581 6550 19451 6574 6544 19452 6454 6511 19453 6453 6400 19454 6582 6552 19455 6470 6418 19456 6568 6539 19457 6169 6140 19458 6581 6550 19459 6449 6396 19460 6576 6546 19461 6453 6400 19462 6456 6402 19463 6581 6550 19464 6579 6548 19465 6456 6402 19466 6572 6542 19467 6469 6417 19468 6454 6511 19469 6568 6539 19470 6470 6418 19471 6469 6417 19472 6171 6145 19473 6571 6553 19474 6570 6541 19475 6153 6126 19476 6582 6552 19477 6571 6553 19478 6256 6441 19479 6259 6238 19480 6254 6234 19481 6279 6254 19482 6254 6234 19483 6259 6238 19484 6280 6255 19485 6279 6254 19486 6282 6521 19487 6307 6276 19488 6280 6255 19489 6285 6259 19490 6308 6277 19491 6307 6276 19492 6310 6524 19493 6500 6445 19494 6308 6277 19495 6313 6281 19496 6538 6554 19497 6334 6299 19498 6333 6298 19499 6514 6459 19500 6538 6554 19501 6583 6555 19502 6500 6445 19503 6503 6447 19504 6517 6461 19505 6514 6459 19506 6517 6461 19507 6529 6472 19508 6355 6317 19509 6354 6316 19510 6426 6373 19511 6452 6399 19512 6348 6356 19513 6351 6314 19514 6404 6512 19515 6348 6356 19516 6452 6399 19517 6476 6423 19518 6404 6512 19519 6451 6398 19520 6358 6320 19521 6476 6423 19522 6472 6510 19523 6359 6556 19524 6358 6320 19525 6584 6557 19526 6249 6231 19527 6497 6558 19528 6586 6559 19529 6249 6231 19530 6252 6560 19531 6255 6235 19532 6275 6252 19533 6250 6232 19534 6255 6235 19535 6275 6252 19536 6278 6522 19537 6281 6256 19538 6303 6273 19539 6276 6253 19540 6281 6256 19541 6304 6274 19542 6303 6273 19543 6306 6525 19544 6304 6274 19545 6309 6278 19546 6501 6458 19547 6498 6444 19548 6501 6458 19549 6515 6561 19550 6526 6469 19551 6512 6456 19552 6515 6561 19553 6331 6296 19554 6526 6469 19555 6583 6555 19556 6332 6297 19557 6334 6299 19558 6335 6300 19559 6332 6297 19560 6331 6296 19561 6333 6298 19562 6257 6236 19563 6493 6440 19564 6587 6562 19565 6258 6237 19566 6257 6236 19567 6587 6562 19568 6283 6257 19569 6258 6237 19570 6588 6563 19571 6284 6258 19572 6283 6257 19573 6589 6564 19574 6311 6279 19575 6284 6258 19576 6590 6565 19577 6312 6280 19578 6311 6279 19579 6591 6566 19580 6502 6446 19581 6312 6280 19582 6592 6567 19583 6516 6460 19584 6502 6446 19585 6593 6568 19586 6528 6471 19587 6516 6460 19588 6594 6569 19589 6336 6301 19590 6528 6471 19591 6595 6570 19592 6332 6297 19593 6596 6571 19594 6567 6572 19595 6332 6297 19596 6336 6301 19597 6596 6571 19598 6494 6573 19599 6495 6442 19600 6448 6395 19601 6496 6443 19602 6445 6574 19603 6448 6395 19604 6497 6558 19605 6359 6556 19606 6585 6575 19607 6384 6339 19608 6356 6318 19609 6359 6556 19610 6356 6318 19611 6384 6339 19612 6383 6504 19613 6479 6425 19614 6383 6504 19615 6387 6341 19616 6475 6422 19617 6387 6341 19618 6386 6345 19619 6380 6337 19620 6386 6345 19621 6390 6344 19622 6408 6359 19623 6381 6338 19624 6390 6344 19625 6377 6334 19626 6408 6359 19627 6410 6514 19628 6377 6334 19629 6395 6348 19630 6394 6347 19631 6481 6576 19632 6378 6335 19633 6394 6347 19634 6399 6351 19635 6480 6426 19636 6481 6576 19637 6366 6325 19638 6480 6426 19639 6399 6351 19640 6364 6429 19641 6366 6325 19642 6402 6353 19643 6401 6352 19644 6421 6381 19645 6484 6430 19646 6485 6431 19647 6484 6430 19648 6421 6381 19649 6424 6372 19650 6049 5993 19651 6065 6012 19652 6428 6375 19653 6042 5985 19654 6019 5965 19655 6425 6577 19656 6428 6375 19657 6450 6397 19658 6355 6317 19659 6425 6577 19660 6455 6401 19661 6596 6571 19662 6595 6570 19663 6566 6536 19664 6594 6569 19665 6565 6535 19666 6566 6536 19667 6594 6569 19668 6593 6568 19669 6564 6533 19670 6593 6568 19671 6592 6567 19672 6563 6534 19673 6592 6567 19674 6591 6566 19675 6562 6531 19676 6591 6566 19677 6590 6565 19678 6561 6530 19679 6590 6565 19680 6589 6564 19681 6560 6529 19682 6589 6564 19683 6588 6563 19684 6559 6528 19685 6588 6563 19686 6587 6562 19687 6558 6527 19688 6587 6562 19689 6188 6175 19690 6143 6167 19691 6332 6297 19692 6567 6572 19693 6539 6537 19694 6332 6297 19695 6343 6308 19696 6555 6500 19697 6332 6297 19698 6341 6306 19699 6342 6307 19700 6539 6537 19701 6337 6302 19702 6332 6297 19703 6496 6443 19704 6253 6233 19705 6252 6560 19706 6586 6559 19707 6585 6575 19708 6445 6574 19709 6584 6557 19710 6446 6393 19711 6445 6574 19712 6446 6393 19713 6584 6557 19714 6472 6510 19715 6470 6418 19716 6582 6552 19717 6477 6578 19718 6478 6538 19719 6467 6424 19720 6447 6394 19721 6478 6538 19722 6477 6578 19723 6582 6552 19724 6057 6170 19725 6189 6169 19726 6468 6415 19727 6468 6415 19728 6597 6579 19729 6448 6395 19730 6189 6169 19731 6190 6171 19732 6597 6579 19733 6191 6580 19734 6494 6573 19735 6597 6579 19736 6192 6173 19737 6492 6439 19738 6494 6573 19739 6493 6440 19740 6492 6439 19741 6192 6173 19742 6587 6562 19743 6493 6440 19744 6188 6175 19745 6188 6175 19746 6493 6440 19747 6193 6174 19748 6458 6405 19749 6457 6503 19750 6598 6581 19751 6557 6502 19752 6600 6582 19753 6598 6581 19754 6463 6410 19755 6601 6583 19756 6602 6584 19757 6462 6409 19758 6603 6585 19759 6601 6583 19760 6603 6585 19761 6462 6409 19762 6461 6408 19763 6460 6413 19764 6605 6586 19765 6604 6587 19766 6606 6588 19767 6605 6586 19768 6460 6413 19769 6459 6406 19770 6458 6405 19771 6599 6589 19772 6598 6581 19773 6608 6590 19774 6609 6591 19775 6600 6582 19776 6610 6592 19777 6608 6590 19778 6601 6583 19779 6611 6593 19780 6612 6594 19781 6603 6585 19782 6613 6595 19783 6611 6593 19784 6604 6587 19785 6614 6596 19786 6613 6595 19787 6605 6586 19788 6615 6597 19789 6614 6596 19790 6605 6586 19791 6606 6588 19792 6616 6598 19793 6607 6599 19794 6599 6589 19795 6609 6591 19796 6617 6600 19797 6609 6591 19798 6618 6601 19799 6615 6597 19800 6616 6598 19801 6620 6602 19802 6615 6597 19803 6621 6603 19804 6622 6604 19805 6614 6596 19806 6622 6604 19807 6623 6605 19808 6611 6593 19809 6613 6595 19810 6623 6605 19811 6612 6594 19812 6611 6593 19813 6624 6606 19814 6610 6592 19815 6626 6607 19816 6627 6608 19817 6608 6590 19818 6627 6608 19819 6618 6601 19820 6612 6594 19821 6625 6609 19822 6626 6607 19823 6602 6584 19824 6612 6594 19825 6610 6592 19826 6556 6501 19827 6602 6584 19828 6600 6582 19829 6607 6599 19830 6606 6588 19831 6464 6412 19832 6606 6588 19833 6607 6599 19834 6617 6600 19835 6616 6598 19836 6617 6600 19837 6619 6610 19838 6628 6611 19839 5219 5208 19840 5201 5189 19841 5204 6612 19842 5226 5210 19843 6631 6613 19844 6228 6614 19845 6632 6615 19846 6633 6616 19847 5216 5202 19848 6635 6617 19849 6636 6618 19850 6632 6615 19851 6634 6619 19852 6636 6618 19853 6638 6620 19854 6628 6611 19855 6629 6621 19856 6630 6622 19857 6631 6613 19858 6640 6623 19859 6229 6210 19860 6633 6616 19861 6641 6624 19862 6636 6618 19863 6635 6617 19864 6642 6625 19865 6633 6616 19866 6636 6618 19867 6643 6626 19868 5213 5199 19869 5216 5202 19870 6634 6619 19871 6645 6627 19872 6644 6628 19873 6634 6619 19874 6245 6224 19875 6645 6627 19876 6632 6615 19877 6642 6625 19878 6635 6617 19879 6628 6611 19880 6635 6617 19881 5216 5202 19882 5219 5208 19883 5201 5189 19884 5204 6612 19885 6630 6622 19886 6639 6629 19887 6637 6630 19888 6629 6621 19889 6639 6629 19890 6640 6623 19891 6570 6541 19892 6569 6540 19893 6573 6543 19894 6637 6630 19895 6575 6545 19896 6638 6620 19897 6637 6630 19898 6577 6547 19899 6642 6625 19900 6638 6620 19901 6642 6625 19902 6577 6547 19903 6578 6549 19904 6641 6624 19905 6643 6626 19906 6578 6549 19907 6239 6219 19908 6641 6624 19909 6580 6551 19910 6246 6228 19911 6631 6613 19912 5226 5210 19913 6247 6229 19914 6640 6623 19915 6631 6613 19916 6172 6144 19917 6570 6541 19918 6640 6623 19919 6764 6745 20268 6765 6746 20269 6766 6747 20270 6767 6748 20271 6768 6749 20272 6769 6750 20273 6771 6751 20274 6772 6752 20275 6768 6749 20276 6773 6753 20277 6774 6754 20278 6763 6755 20279 6776 6756 20280 6777 6757 20281 6778 6758 20282 6779 6759 20283 6780 6760 20284 6781 6761 20285 6783 6762 20286 6781 6761 20287 6780 6760 20288 6785 6763 20289 6775 6764 20290 6778 6758 20291 6768 6749 20292 6766 6747 20293 6765 6746 20294 6773 6753 20295 6766 6747 20296 6768 6749 20297 6779 6759 20298 6776 6756 20299 6775 6764 20300 6784 6765 20301 6780 6760 20302 6775 6764 20303 6787 6766 20304 6779 6759 20305 6782 6767 20306 6776 6756 20307 6779 6759 20308 6787 6766 20309 6777 6757 20310 6776 6756 20311 6789 6768 20312 6790 6769 20313 6789 6768 20314 6772 6752 20315 6773 6753 20316 6772 6752 20317 6789 6768 20318 6773 6753 20319 6787 6766 20320 6788 6770 20321 6792 6771 20322 6793 6772 20323 6794 6773 20324 6767 6748 20325 6770 6774 20326 6795 6775 20327 6771 6751 20328 6767 6748 20329 6796 6776 20330 6791 6777 20331 6798 6778 20332 6799 6779 20333 6778 6758 20334 6777 6757 20335 6801 6780 20336 6802 6781 20337 6803 6782 20338 6804 6783 20339 6806 6784 20340 6807 6785 20341 6805 6786 20342 6808 6787 20343 6786 6788 20344 6778 6758 20345 6796 6776 20346 6795 6775 20347 6793 6772 20348 6796 6776 20349 6792 6771 20350 6799 6779 20351 6800 6789 20352 6801 6780 20353 6802 6781 20354 6807 6785 20355 6808 6787 20356 6800 6789 20357 6809 6790 20358 6810 6791 20359 6803 6782 20360 6801 6780 20361 6811 6792 20362 6809 6790 20363 6777 6757 20364 6790 6769 20365 6811 6792 20366 6790 6769 20367 6771 6751 20368 6797 6793 20369 6811 6792 20370 6797 6793 20371 6799 6779 20372 6799 6779 20373 6798 6778 20374 6810 6791 20375 249 754 23127 246 243 23128 248 245 23129 253 249 23130 250 246 23131 252 248 23132 255 322 23133 250 246 23134 254 250 23135 256 382 23136 257 251 23137 259 253 23138 260 366 23139 261 254 23140 263 256 23141 267 317 23142 264 257 23143 266 259 23144 271 787 23145 268 260 23146 270 262 23147 272 512 23148 273 263 23149 275 265 23150 276 278 23151 277 266 23152 279 268 23153 283 282 23154 280 269 23155 282 271 23156 287 786 23157 284 272 23158 286 274 23159 288 370 23160 289 275 23161 291 277 23162 277 266 23163 276 278 23164 251 247 23165 247 244 23166 281 270 23167 248 245 23168 292 386 23169 293 279 23170 295 281 23171 296 284 23172 280 269 23173 297 283 23174 248 245 23175 280 269 23176 298 285 23177 249 754 23178 248 245 23179 299 286 23180 300 347 23181 301 287 23182 303 289 23183 250 246 23184 304 290 23185 251 247 23186 306 292 23187 277 266 23188 305 291 23189 307 299 23190 278 267 23191 306 292 23192 308 297 23193 309 293 23194 311 295 23195 313 315 23196 312 296 23197 308 297 23198 314 351 23199 297 283 23200 315 298 23201 278 267 23202 307 299 23203 317 301 23204 321 335 23205 318 302 23206 320 304 23207 279 268 23208 278 267 23209 322 305 23210 315 298 23211 283 282 23212 323 306 23213 324 330 23214 279 268 23215 325 307 23216 314 351 23217 326 308 23218 328 310 23219 329 359 23220 309 293 23221 316 300 23222 330 468 23223 331 311 23224 333 313 23225 322 305 23226 317 301 23227 312 296 23228 335 352 23229 315 298 23230 334 314 23231 325 307 23232 322 305 23233 313 315 23234 338 349 23235 336 316 23236 337 318 23237 342 520 23238 339 319 23239 341 321 23240 300 347 23241 304 290 23242 301 287 23243 301 287 23244 250 246 23245 302 288 23246 249 754 23247 299 286 23248 344 324 23249 253 249 23250 252 248 23251 346 326 23252 348 803 23253 247 244 23254 347 327 23255 254 250 23256 253 249 23257 349 328 23258 351 334 23259 276 278 23260 350 329 23261 279 268 23262 324 330 23263 350 329 23264 282 271 23265 281 270 23266 354 333 23267 252 248 23268 276 278 23269 345 325 23270 348 803 23271 353 332 23272 247 244 23273 356 341 23274 321 335 23275 355 336 23276 328 310 23277 327 309 23278 358 338 23279 311 295 23280 310 294 23281 360 340 23282 361 358 23283 321 335 23284 362 342 23285 363 344 23286 296 284 23287 364 343 23288 298 285 23289 296 284 23290 258 252 23291 299 286 23292 298 285 23293 365 345 23294 343 323 23295 299 286 23296 366 346 23297 338 349 23298 300 347 23299 367 348 23300 337 318 23301 304 290 23302 338 349 23303 304 290 23304 337 318 23305 305 291 23306 368 350 23307 306 292 23308 290 276 23309 318 302 23310 307 299 23311 368 350 23312 321 335 23313 316 300 23314 318 302 23315 364 343 23316 297 283 23317 328 310 23318 314 351 23319 315 298 23320 326 308 23321 327 309 23322 326 308 23323 369 353 23324 369 353 23325 370 354 23326 327 309 23327 374 469 23328 371 355 23329 373 357 23330 310 294 23331 361 358 23332 359 339 23333 309 293 23334 329 359 23335 310 294 23336 329 359 23337 316 300 23338 361 358 23339 380 378 23340 379 364 23341 339 319 23342 382 404 23343 381 365 23344 263 256 23345 264 257 23346 383 367 23347 265 258 23348 273 263 23349 288 370 23350 387 372 23351 389 385 23352 388 373 23353 273 263 23354 390 514 23355 391 374 23356 393 376 23357 394 423 23358 285 273 23359 395 377 23360 397 402 23361 398 380 23362 381 365 23363 377 362 23364 399 381 23365 259 253 23366 402 416 23367 292 386 23368 375 360 23369 403 535 23370 404 387 23371 406 389 23372 407 408 23373 408 390 23374 384 368 23375 409 540 23376 410 391 23377 412 393 23378 414 421 23379 401 384 23380 413 394 23381 415 505 23382 416 395 23383 418 397 23384 419 778 23385 420 398 23386 387 372 23387 421 591 23388 422 399 23389 424 401 23390 426 499 23391 397 402 23392 425 403 23393 425 403 23394 381 365 23395 427 405 23396 428 538 23397 379 364 23398 430 407 23399 432 502 23400 407 408 23401 431 409 23402 396 379 23403 399 381 23404 434 411 23405 413 394 23406 400 383 23407 436 413 23408 438 494 23409 385 369 23410 437 414 23411 437 414 23412 383 367 23413 439 415 23414 441 511 23415 402 416 23416 440 417 23417 419 778 23418 387 372 23419 443 419 23420 387 372 23421 386 371 23422 442 418 23423 446 490 23424 401 384 23425 445 422 23426 448 481 23427 376 361 23428 447 424 23429 393 376 23430 392 375 23431 450 426 23432 388 373 23433 389 385 23434 452 428 23435 451 427 23436 389 385 23437 453 429 23438 454 838 23439 455 430 23440 457 432 23441 458 504 23442 459 433 23443 461 435 23444 465 440 23445 462 436 23446 464 438 23447 467 580 23448 466 439 23449 465 440 23450 468 444 23451 469 441 23452 471 443 23453 472 447 23454 468 444 23455 473 445 23456 475 471 23457 474 446 23458 473 445 23459 479 829 23460 480 451 23461 481 452 23462 469 441 23463 482 453 23464 470 442 23465 484 788 23466 485 455 23467 487 457 23468 489 464 23469 488 458 23470 485 455 23471 468 444 23472 472 447 23473 491 460 23474 485 455 23475 493 462 23476 489 464 23477 484 788 23478 495 465 23479 485 455 23480 491 460 23481 496 466 23482 468 444 23483 470 442 23484 483 454 23485 330 468 23486 500 478 23487 475 471 23488 499 472 23489 504 476 23490 501 473 23491 503 475 23492 506 830 23493 501 473 23494 505 477 23495 371 355 23496 333 313 23497 372 356 23498 499 472 23499 374 469 23500 500 478 23501 447 424 23502 507 479 23503 448 481 23504 453 429 23505 509 482 23506 451 427 23507 452 428 23508 451 427 23509 511 484 23510 513 519 23511 512 485 23512 449 425 23513 441 511 23514 440 417 23515 515 487 23516 445 422 23517 516 488 23518 446 490 23519 519 503 23520 518 491 23521 444 420 23522 520 777 23523 443 419 23524 518 491 23525 522 526 23526 521 492 23527 433 410 23528 523 495 23529 437 414 23530 524 493 23531 525 529 23532 438 494 23533 523 495 23534 526 711 23535 527 496 23536 435 412 23537 529 534 23538 528 497 23539 429 406 23540 531 705 23541 530 498 23542 427 405 23543 532 537 23544 426 499 23545 530 498 23546 431 409 23547 533 500 23548 432 502 23549 401 384 23550 386 371 23551 291 277 23552 446 490 23553 444 420 23554 401 384 23555 444 420 23556 446 490 23557 519 503 23558 461 435 23559 464 438 23560 458 504 23561 535 584 23562 415 505 23563 536 506 23564 441 511 23565 515 487 23566 540 510 23567 540 510 23568 378 363 23569 441 511 23570 378 363 23571 259 253 23572 402 416 23573 292 386 23574 259 253 23575 293 279 23576 289 275 23577 288 370 23578 272 512 23579 294 280 23580 293 279 23581 363 344 23582 364 343 23583 541 513 23584 363 344 23585 319 303 23586 318 302 23587 268 260 23588 318 302 23589 368 350 23590 269 261 23591 290 276 23592 289 275 23593 368 350 23594 285 273 23595 295 281 23596 286 274 23597 287 786 23598 286 274 23599 541 513 23600 272 512 23601 275 265 23602 269 261 23603 270 262 23604 275 265 23605 391 374 23606 271 787 23607 270 262 23608 390 514 23609 447 424 23610 394 423 23611 542 515 23612 507 479 23613 447 424 23614 543 516 23615 423 400 23616 422 399 23617 545 518 23618 511 484 23619 513 519 23620 452 428 23621 392 375 23622 388 373 23623 449 425 23624 391 374 23625 274 264 23626 392 375 23627 376 361 23628 295 281 23629 394 423 23630 365 345 23631 258 252 23632 342 520 23633 342 520 23634 257 251 23635 339 319 23636 265 258 23637 291 277 23638 266 259 23639 337 318 23640 267 317 23641 290 276 23642 336 316 23643 338 349 23644 546 521 23645 398 380 23646 547 522 23647 260 366 23648 366 346 23649 365 345 23650 548 523 23651 399 381 23652 377 362 23653 433 410 23654 433 410 23655 549 524 23656 522 526 23657 411 392 23658 410 391 23659 552 528 23660 526 711 23661 435 412 23662 525 529 23663 400 383 23664 385 369 23665 435 412 23666 339 319 23667 256 382 23668 396 379 23669 265 258 23670 385 369 23671 291 277 23672 398 380 23673 264 257 23674 547 522 23675 547 522 23676 267 317 23677 261 254 23678 546 521 23679 262 255 23680 336 316 23681 341 321 23682 553 530 23683 342 520 23684 340 320 23685 554 531 23686 341 321 23687 379 364 23688 380 378 23689 429 406 23690 429 406 23691 555 532 23692 529 534 23693 557 570 23694 403 535 23695 558 536 23696 533 500 23697 431 409 23698 532 537 23699 431 409 23700 384 368 23701 426 499 23702 384 368 23703 264 257 23704 397 402 23705 554 531 23706 340 320 23707 428 538 23708 559 541 23709 560 539 23710 412 393 23711 561 543 23712 559 541 23713 411 392 23714 552 528 23715 562 542 23716 411 392 23717 551 527 23718 563 544 23719 552 528 23720 564 548 23721 565 545 23722 567 547 23723 568 850 23724 565 545 23725 569 549 23726 570 559 23727 571 550 23728 561 543 23729 571 550 23730 572 551 23731 559 541 23732 576 852 23733 573 552 23734 575 554 23735 577 851 23736 575 554 23737 579 556 23738 563 544 23739 580 557 23740 562 542 23741 562 542 23742 581 558 23743 561 543 23744 582 563 23745 583 560 23746 585 562 23747 586 866 23748 583 560 23749 587 564 23750 588 566 23751 589 565 23752 404 387 23753 590 568 23754 588 566 23755 403 535 23756 557 570 23757 591 567 23758 403 535 23759 558 536 23760 592 569 23761 557 570 23762 593 579 23763 594 571 23764 590 568 23765 594 571 23766 595 572 23767 588 566 23768 592 569 23769 600 577 23770 591 567 23771 591 567 23772 601 578 23773 590 568 23774 416 395 23775 467 580 23776 417 396 23777 603 582 23778 457 432 23779 602 581 23780 604 844 23781 457 432 23782 605 583 23783 461 435 23784 460 434 23785 536 506 23786 536 506 23787 418 397 23788 461 435 23789 417 396 23790 465 440 23791 418 397 23792 606 589 23793 607 585 23794 609 587 23795 611 819 23796 610 588 23797 609 587 23798 612 592 23799 613 590 23800 424 401 23801 614 594 23802 612 592 23803 423 400 23804 545 518 23805 615 593 23806 423 400 23807 544 517 23808 616 595 23809 545 518 23810 617 603 23811 618 596 23812 614 594 23813 618 596 23814 619 597 23815 612 592 23816 616 595 23817 623 601 23818 615 593 23819 615 593 23820 624 602 23821 614 594 23822 628 769 23823 625 604 23824 627 606 23825 629 610 23826 627 606 23827 630 607 23828 630 607 23829 631 608 23830 629 610 23831 633 776 23832 634 611 23833 631 608 23834 638 740 23835 635 612 23836 637 614 23837 638 740 23838 639 615 23839 635 612 23840 644 745 23841 641 617 23842 643 619 23843 645 623 23844 642 618 23845 646 620 23846 646 620 23847 647 621 23848 645 623 23849 649 785 23850 650 624 23851 647 621 23852 654 628 23853 651 625 23854 653 627 23855 651 625 23856 654 628 23857 656 630 23858 660 735 23859 657 631 23860 659 633 23861 660 735 23862 661 634 23863 657 631 23864 666 733 23865 663 636 23866 665 638 23867 667 641 23868 664 637 23869 668 639 23870 669 643 23871 670 640 23872 668 639 23873 671 768 23874 672 642 23875 669 643 23876 676 726 23877 673 644 23878 675 646 23879 676 726 23880 677 647 23881 673 644 23882 682 755 23883 679 649 23884 681 651 23885 684 654 23886 683 652 23887 679 649 23888 685 655 23889 686 653 23890 684 654 23891 686 653 23892 685 655 23893 688 657 23894 572 551 23895 571 550 23896 693 662 23897 694 664 23898 692 661 23899 570 559 23900 581 558 23901 695 663 23902 570 559 23903 580 557 23904 696 665 23905 581 558 23906 459 433 23907 458 504 23908 701 670 23909 702 672 23910 700 669 23911 463 437 23912 463 437 23913 462 436 23914 702 672 23915 466 439 23916 704 673 23917 462 436 23918 711 834 23919 708 677 23920 710 679 23921 619 597 23922 618 596 23923 716 684 23924 717 686 23925 715 683 23926 617 603 23927 624 602 23928 718 685 23929 617 603 23930 623 601 23931 719 687 23932 624 602 23933 723 806 23934 720 688 23935 722 690 23936 727 860 23937 724 691 23938 726 693 23939 727 860 23940 728 694 23941 724 691 23942 595 572 23943 594 571 23944 731 697 23945 732 699 23946 730 696 23947 593 579 23948 601 578 23949 733 698 23950 593 579 23951 600 577 23952 734 700 23953 601 578 23954 673 644 23955 678 648 23956 737 703 23957 737 703 23958 738 704 23959 673 644 23960 737 703 23961 736 702 23962 529 534 23963 683 652 23964 532 537 23965 680 650 23966 686 653 23967 533 500 23968 683 652 23969 529 534 23970 556 533 23971 737 703 23972 657 631 23973 662 635 23974 742 709 23975 742 709 23976 743 710 23977 657 631 23978 742 709 23979 741 708 23980 522 526 23981 525 529 23982 523 495 23983 667 641 23984 670 640 23985 526 711 23986 667 641 23987 522 526 23988 550 525 23989 742 709 23990 746 716 23991 635 612 23992 745 713 23993 746 716 23994 747 714 23995 635 612 23996 627 606 23997 629 610 23998 517 489 23999 629 610 24000 632 609 24001 519 503 24002 515 487 24003 514 486 24004 746 716 24005 515 487 24006 746 716 24007 539 509 24008 656 630 24009 750 718 24010 651 625 24011 651 625 24012 751 719 24013 652 626 24014 511 484 24015 510 483 24016 645 623 24017 645 623 24018 648 622 24019 511 484 24020 751 719 24021 507 479 24022 752 720 24023 507 479 24024 751 719 24025 508 480 24026 724 691 24027 729 695 24028 756 724 24029 724 691 24030 756 724 24031 725 692 24032 756 724 24033 755 723 24034 676 726 24035 732 699 24036 684 654 24037 730 696 24038 733 698 24039 685 655 24040 732 699 24041 756 724 24042 676 726 24043 757 725 24044 762 853 24045 760 729 24046 698 667 24047 762 853 24048 690 659 24049 760 729 24050 668 639 24051 663 636 24052 694 664 24053 695 663 24054 669 643 24055 694 664 24056 760 729 24057 660 735 24058 761 730 24059 760 729 24060 764 732 24061 660 735 24062 710 679 24063 709 678 24064 767 737 24065 710 679 24066 767 737 24067 706 675 24068 700 669 24069 702 672 24070 626 605 24071 702 672 24072 703 671 24073 630 607 24074 767 737 24075 638 740 24076 768 738 24077 767 737 24078 766 736 24079 638 740 24080 771 747 24081 772 742 24082 720 688 24083 771 747 24084 720 688 24085 774 744 24086 646 620 24087 641 617 24088 717 686 24089 718 685 24090 647 621 24091 717 686 24092 654 628 24093 653 627 24094 771 747 24095 774 744 24096 655 629 24097 771 747 24098 495 465 24099 358 338 24100 493 462 24101 496 466 24102 356 341 24103 776 748 24104 362 342 24105 356 341 24106 491 460 24107 359 339 24108 362 342 24109 490 459 24110 360 340 24111 359 339 24112 777 749 24113 493 462 24114 357 337 24115 494 463 24116 330 468 24117 498 470 24118 470 442 24119 499 472 24120 473 445 24121 498 470 24122 488 458 24123 780 752 24124 486 456 24125 347 327 24126 246 243 24127 349 328 24128 255 322 24129 254 250 24130 249 754 24131 302 288 24132 255 322 24133 344 324 24134 303 289 24135 302 288 24136 343 323 24137 366 346 24138 367 348 24139 343 323 24140 548 523 24141 546 521 24142 366 346 24143 553 530 24144 262 255 24145 548 523 24146 554 531 24147 263 256 24148 553 530 24149 428 538 24150 382 404 24151 554 531 24152 430 407 24153 427 405 24154 428 538 24155 528 497 24156 531 705 24157 430 407 24158 736 702 24159 735 701 24160 528 497 24161 678 648 24162 681 651 24163 736 702 24164 677 647 24165 682 755 24166 678 648 24167 755 723 24168 758 727 24169 677 647 24170 729 695 24171 731 697 24172 755 723 24173 782 756 24174 595 572 24175 729 695 24176 783 757 24177 589 565 24178 782 756 24179 784 758 24180 405 388 24181 783 757 24182 785 759 24183 406 389 24184 784 758 24185 558 536 24186 406 389 24187 786 760 24188 786 760 24189 787 761 24190 558 536 24191 787 761 24192 788 762 24193 592 569 24194 788 762 24195 725 692 24196 600 577 24197 725 692 24198 757 725 24199 734 700 24200 687 656 24201 759 728 24202 675 646 24203 688 657 24204 687 656 24205 674 645 24206 738 704 24207 739 706 24208 674 645 24209 556 533 24210 534 501 24211 738 704 24212 555 532 24213 432 502 24214 556 533 24215 380 378 24216 407 408 24217 555 532 24218 380 378 24219 396 379 24220 407 408 24221 439 415 24222 408 390 24223 434 411 24224 524 493 24225 439 415 24226 521 492 24227 740 707 24228 524 493 24229 741 708 24230 741 708 24231 662 635 24232 740 707 24233 661 634 24234 666 733 24235 662 635 24236 764 732 24237 763 731 24238 661 634 24239 690 659 24240 693 662 24241 764 732 24242 689 658 24243 572 551 24244 690 659 24245 789 763 24246 560 539 24247 689 658 24248 790 764 24249 409 540 24250 789 763 24251 409 540 24252 790 764 24253 410 391 24254 551 527 24255 410 391 24256 792 766 24257 792 766 24258 793 767 24259 551 527 24260 793 767 24261 699 668 24262 563 544 24263 699 668 24264 698 667 24265 580 557 24266 765 734 24267 696 665 24268 761 730 24269 761 730 24270 659 633 24271 765 734 24272 659 633 24273 658 632 24274 671 768 24275 672 642 24276 658 632 24277 744 712 24278 550 525 24279 527 496 24280 743 710 24281 549 524 24282 436 413 24283 550 525 24284 377 362 24285 413 394 24286 549 524 24287 414 421 24288 413 394 24289 378 363 24290 445 422 24291 414 421 24292 540 510 24293 540 510 24294 539 509 24295 445 422 24296 745 713 24297 749 717 24298 539 509 24299 640 616 24300 628 769 24301 745 713 24302 639 615 24303 625 604 24304 640 616 24305 766 736 24306 770 741 24307 639 615 24308 709 678 24309 701 670 24310 766 736 24311 794 770 24312 459 433 24313 709 678 24314 795 771 24315 460 434 24316 794 770 24317 796 772 24318 535 584 24319 795 771 24320 535 584 24321 796 772 24322 415 505 24323 797 773 24324 798 774 24325 415 505 24326 798 774 24327 799 775 24328 416 395 24329 799 775 24330 707 676 24331 467 580 24332 707 676 24333 706 675 24334 466 439 24335 769 739 24336 704 673 24337 768 738 24338 768 738 24339 637 614 24340 769 739 24341 637 614 24342 636 613 24343 633 776 24344 748 715 24345 634 611 24346 747 714 24347 747 714 24348 514 486 24349 748 715 24350 520 777 24351 514 486 24352 443 419 24353 375 360 24354 419 778 24355 440 417 24356 419 778 24357 375 360 24358 420 398 24359 453 429 24360 420 398 24361 448 481 24362 448 481 24363 508 480 24364 453 429 24365 754 722 24366 509 482 24367 750 718 24368 750 718 24369 656 630 24370 754 722 24371 644 745 24372 643 619 24373 655 629 24374 773 743 24375 644 745 24376 774 744 24377 774 744 24378 713 681 24379 773 743 24380 712 680 24381 619 597 24382 713 681 24383 800 779 24384 613 590 24385 712 680 24386 801 780 24387 421 591 24388 800 779 24389 421 591 24390 801 780 24391 422 399 24392 544 517 24393 422 399 24394 803 782 24395 803 782 24396 804 783 24397 544 517 24398 804 783 24399 805 784 24400 616 595 24401 805 784 24402 721 689 24403 623 601 24404 775 746 24405 719 687 24406 772 742 24407 775 746 24408 772 742 24409 649 785 24410 649 785 24411 653 627 24412 650 624 24413 752 720 24414 753 721 24415 652 626 24416 753 721 24417 752 720 24418 512 485 24419 512 485 24420 543 516 24421 450 426 24422 395 377 24423 393 376 24424 542 515 24425 284 272 24426 390 514 24427 395 377 24428 284 272 24429 287 786 24430 390 514 24431 287 786 24432 541 513 24433 271 787 24434 364 343 24435 319 303 24436 541 513 24437 320 304 24438 319 303 24439 328 310 24440 355 336 24441 320 304 24442 358 338 24443 776 748 24444 355 336 24445 495 465 24446 484 788 24447 497 467 24448 495 465 24449 482 453 24450 497 467 24451 487 457 24452 779 751 24453 483 454 24454 487 457 24455 806 789 24456 331 311 24457 779 751 24458 807 790 24459 332 312 24460 806 789 24461 808 791 24462 372 356 24463 807 790 24464 373 357 24465 372 356 24466 809 792 24467 500 478 24468 373 357 24469 810 793 24470 810 793 24471 811 794 24472 500 478 24473 811 794 24474 488 458 24475 475 471 24476 489 464 24477 492 461 24478 488 458 24479 494 463 24480 777 749 24481 489 464 24482 370 354 24483 360 340 24484 494 463 24485 369 353 24486 311 295 24487 370 354 24488 335 352 24489 308 297 24490 369 353 24491 334 314 24492 313 315 24493 335 352 24494 323 306 24495 325 307 24496 334 314 24497 282 271 24498 324 330 24499 323 306 24500 354 333 24501 352 331 24502 282 271 24503 349 328 24504 812 795 24505 347 327 24506 345 325 24507 814 797 24508 346 326 24509 816 799 24510 814 797 24511 351 334 24512 817 805 24513 816 799 24514 350 329 24515 818 801 24516 819 800 24517 354 333 24518 820 802 24519 818 801 24520 353 332 24521 821 804 24522 820 802 24523 348 803 24524 347 327 24525 813 796 24526 348 803 24527 346 326 24528 815 798 24529 349 328 24530 350 329 24531 352 331 24532 817 805 24533 714 682 24534 713 681 24535 723 806 24536 712 680 24537 714 682 24538 827 812 24539 825 810 24540 800 779 24541 827 812 24542 723 806 24543 722 690 24544 829 814 24545 714 682 24546 723 806 24547 826 811 24548 722 690 24549 805 784 24550 828 813 24551 805 784 24552 804 783 24553 830 815 24554 608 586 24555 607 585 24556 803 782 24557 620 598 24558 827 812 24559 822 807 24560 610 588 24561 825 810 24562 620 598 24563 622 600 24564 829 814 24565 621 599 24566 826 811 24567 829 814 24568 822 807 24569 828 813 24570 830 815 24571 621 599 24572 830 815 24573 824 809 24574 823 808 24575 825 810 24576 610 588 24577 801 780 24578 833 818 24579 609 587 24580 831 816 24581 611 819 24582 609 587 24583 832 817 24584 487 457 24585 486 456 24586 778 750 24587 476 448 24588 478 450 24589 835 821 24590 837 827 24591 781 753 24592 836 822 24593 779 751 24594 778 750 24595 839 824 24596 840 826 24597 806 789 24598 839 824 24599 778 750 24600 781 753 24601 838 823 24602 780 752 24603 811 794 24604 836 822 24605 811 794 24606 810 793 24607 842 828 24608 477 449 24609 837 827 24610 478 450 24611 479 829 24612 839 824 24613 480 451 24614 481 452 24615 840 826 24616 479 829 24617 838 823 24618 837 827 24619 480 451 24620 478 450 24621 836 822 24622 834 820 24623 842 828 24624 841 825 24625 834 820 24626 506 830 24627 807 790 24628 481 452 24629 481 452 24630 476 448 24631 506 830 24632 501 473 24633 476 448 24634 502 474 24635 841 825 24636 809 792 24637 835 821 24638 705 674 24639 707 676 24640 844 832 24641 707 676 24642 799 775 24643 843 831 24644 847 839 24645 708 677 24646 846 835 24647 849 837 24648 795 771 24649 848 836 24650 844 832 24651 843 831 24652 454 838 24653 843 831 24654 845 833 24655 455 430 24656 537 507 24657 847 839 24658 538 508 24659 604 844 24660 849 837 24661 850 840 24662 456 431 24663 845 833 24664 602 581 24665 796 772 24666 849 837 24667 605 583 24668 853 843 24669 603 582 24670 851 841 24671 605 583 24672 603 582 24673 852 842 24674 604 844 24675 850 840 24676 457 432 24677 850 840 24678 848 836 24679 537 507 24680 848 836 24681 794 770 24682 847 839 24683 538 508 24684 846 835 24685 454 838 24686 846 835 24687 711 834 24688 844 832 24689 711 834 24690 710 679 24691 705 674 24692 857 848 24693 689 658 24694 856 847 24695 855 846 24696 789 763 24697 857 848 24698 859 857 24699 697 666 24700 858 849 24701 699 668 24702 793 767 24703 858 849 24704 857 848 24705 856 847 24706 573 552 24707 576 852 24708 855 846 24709 573 552 24710 859 857 24711 858 849 24712 578 555 24713 858 849 24714 854 845 24715 579 556 24716 568 850 24717 790 764 24718 576 852 24719 576 852 24720 575 554 24721 568 850 24722 577 851 24723 566 546 24724 575 554 24725 854 845 24726 792 766 24727 577 851 24728 860 854 24729 691 660 24730 762 853 24731 861 855 24732 856 847 24733 860 854 24734 862 856 24735 574 553 24736 861 855 24737 861 855 24738 859 857 24739 862 856 24740 861 855 24741 860 854 24742 859 857 24743 860 854 24744 762 853 24745 697 666 24746 728 694 24747 727 860 24748 866 862 24749 864 859 24750 783 757 24751 867 863 24752 727 860 24753 726 693 24754 865 861 24755 788 762 24756 787 761 24757 869 865 24758 866 862 24759 865 861 24760 596 573 24761 871 870 24762 864 859 24763 870 867 24764 865 861 24765 868 864 24766 597 574 24767 869 865 24768 863 858 24769 873 869 24770 586 866 24771 784 758 24772 871 870 24773 871 870 24774 598 575 24775 586 866 24776 872 868 24777 584 561 24778 598 575 24779 863 858 24780 786 760 24781 872 868 24782 869 865 24783 868 864 24784 788 762 24785 599 576 24786 868 864 24787 873 869 24788 873 869 24789 872 868 24790 599 576 24791 871 870 24792 870 867 24793 598 575 24794 870 867 24795 867 863 24796 596 573 24797 867 863 24798 782 756 24799 866 862 24800 874 875 24801 875 871 24802 877 873 24803 878 890 24804 879 874 24805 874 875 24806 880 887 24807 881 876 24808 883 878 24809 885 880 24810 883 878 24811 884 879 24812 887 882 24813 885 880 24814 886 881 24815 889 884 24816 887 882 24817 888 883 24818 891 886 24819 889 884 24820 890 885 24821 878 890 24822 891 886 24823 879 874 24824 877 873 24825 876 872 24826 880 887 24827 892 889 24828 877 873 24829 893 888 24830 894 891 24831 874 875 24832 892 889 24833 895 892 24834 878 890 24835 894 891 24836 896 925 24837 891 886 24838 895 892 24839 896 925 24840 897 893 24841 891 886 24842 897 893 24843 898 894 24844 889 884 24845 898 894 24846 899 895 24847 887 882 24848 899 895 24849 900 896 24850 885 880 24851 893 888 24852 880 887 24853 900 896 24854 876 872 24855 901 897 24856 881 876 24857 876 872 24858 875 871 24859 901 897 24860 875 871 24861 879 874 24862 903 899 24863 890 885 24864 905 901 24865 879 874 24866 888 883 24867 906 902 24868 890 885 24869 886 881 24870 907 903 24871 888 883 24872 886 881 24873 884 879 24874 907 903 24875 904 900 24876 905 901 24877 910 906 24878 906 902 24879 911 907 24880 905 901 24881 907 903 24882 912 908 24883 906 902 24884 907 903 24885 908 904 24886 912 908 24887 901 897 24888 914 910 24889 902 898 24890 901 897 24891 903 899 24892 914 910 24893 904 900 24894 910 906 24895 903 899 24896 881 876 24897 917 913 24898 882 877 24899 881 876 24900 902 898 24901 917 913 24902 884 879 24903 882 877 24904 920 916 24905 884 879 24906 920 916 24907 908 904 24908 908 904 24909 921 917 24910 913 909 24911 902 898 24912 915 911 24913 919 915 24914 924 921 24915 893 888 24916 925 920 24917 926 922 24918 892 889 24919 924 921 24920 927 923 24921 894 891 24922 926 922 24923 928 1123 24924 895 892 24925 927 923 24926 928 1123 24927 929 924 24928 895 892 24929 929 924 24930 930 926 24931 896 925 24932 930 926 24933 931 927 24934 897 893 24935 931 927 24936 932 928 24937 898 894 24938 925 920 24939 900 896 24940 932 928 24941 933 933 24942 934 929 24943 936 931 24944 937 935 24945 938 932 24946 933 933 24947 939 1000 24948 940 934 24949 937 935 24950 944 1004 24951 941 936 24952 943 938 24953 941 936 24954 945 939 24955 942 937 24956 953 1182 24957 950 944 24958 952 946 24959 957 1037 24960 954 947 24961 956 949 24962 958 959 24963 959 950 24964 961 952 24965 962 1011 24966 963 953 24967 965 955 24968 969 7569 24969 966 956 24970 968 958 24971 959 950 24972 958 959 24973 971 961 24974 975 1022 24975 972 962 24976 974 964 24977 976 971 24978 977 965 24979 979 967 24980 947 941 24981 949 943 24982 981 969 24983 982 1175 24984 983 970 24985 976 971 24986 984 1044 24987 985 972 24988 987 974 24989 987 974 24990 986 973 24991 989 976 24992 988 975 24993 990 977 24994 972 962 24995 991 1176 24996 992 978 24997 994 980 24998 996 982 24999 951 945 25000 995 981 25001 988 975 25002 972 962 25003 996 982 25004 997 986 25005 998 983 25006 1000 985 25007 998 983 25008 997 986 25009 1002 988 25010 1003 1018 25011 1004 989 25012 1006 991 25013 1006 991 25014 1005 990 25015 990 977 25016 973 963 25017 990 977 25018 1008 993 25019 974 964 25020 973 963 25021 1009 994 25022 1010 1021 25023 1011 995 25024 1013 997 25025 1014 1019 25026 1013 997 25027 1015 998 25028 1016 1024 25029 996 982 25030 1017 999 25031 1018 1183 25032 940 934 25033 1019 1001 25034 943 938 25035 1020 1002 25036 944 1004 25037 961 952 25038 960 951 25039 1023 1006 25040 1027 1034 25041 1024 1007 25042 1026 1009 25043 1028 1014 25044 1029 1010 25045 962 1011 25046 943 938 25047 1030 1012 25048 1020 1002 25049 969 7569 25050 1030 1012 25051 942 937 25052 969 7569 25053 942 937 25054 966 956 25055 965 955 25056 935 930 25057 962 1011 25058 1032 1186 25059 1028 1014 25060 934 929 25061 1034 1185 25062 938 932 25063 1033 1015 25064 954 947 25065 1035 1016 25066 1036 1017 25067 988 975 25068 986 973 25069 990 977 25070 985 972 25071 1003 1018 25072 986 973 25073 977 965 25074 997 986 25075 978 966 25076 983 970 25077 1001 987 25078 977 965 25079 992 978 25080 1014 1019 25081 993 979 25082 980 968 25083 1010 1021 25084 981 969 25085 951 945 25086 972 962 25087 952 946 25088 1040 1174 25089 1038 1023 25090 1039 1025 25091 1038 1023 25092 1041 1026 25093 1016 1024 25094 989 976 25095 988 975 25096 1041 1026 25097 968 958 25098 1042 1027 25099 970 960 25100 967 957 25101 1043 1028 25102 968 958 25103 963 953 25104 1044 1029 25105 964 954 25106 1029 1010 25107 1046 1031 25108 963 953 25109 1026 1009 25110 1047 1032 25111 1027 1034 25112 956 949 25113 1049 1035 25114 957 1037 25115 969 7569 25116 968 958 25117 958 959 25118 969 7569 25119 958 959 25120 1030 1012 25121 1030 1012 25122 961 952 25123 1031 1013 25124 1040 1174 25125 1039 1025 25126 1052 1039 25127 1039 1025 25128 1016 1024 25129 1051 1038 25130 1054 1366 25131 1021 1003 25132 1053 1040 25133 1031 1013 25134 1055 1041 25135 1020 1002 25136 1031 1013 25137 1023 1006 25138 1055 1041 25139 1023 1006 25140 1022 1005 25141 1056 1042 25142 936 931 25143 935 930 25144 945 939 25145 966 956 25146 946 940 25147 965 955 25148 965 955 25149 964 954 25150 966 956 25151 964 954 25152 1045 1030 25153 967 957 25154 979 967 25155 978 966 25156 984 1044 25157 978 966 25158 1000 985 25159 985 972 25160 1000 985 25161 999 984 25162 1003 1018 25163 998 983 25164 1058 1045 25165 999 984 25166 1060 1054 25167 1061 1047 25168 998 983 25169 1004 989 25170 1062 1048 25171 1005 990 25172 1007 992 25173 1005 990 25174 1064 1050 25175 1008 993 25176 1007 992 25177 1065 1051 25178 1009 994 25179 1008 993 25180 1066 1052 25181 1012 996 25182 1009 994 25183 1067 1053 25184 1012 996 25185 1067 1053 25186 1060 1054 25187 999 984 25188 1059 1046 25189 1004 989 25190 1074 1061 25191 1071 1058 25192 1073 1060 25193 1076 1151 25194 1074 1061 25195 1075 1062 25196 1077 1163 25197 1078 1063 25198 1080 1065 25199 1080 1065 25200 1079 1064 25201 1082 1067 25202 1085 1157 25203 1070 1057 25204 1084 1069 25205 1086 1147 25206 1087 1070 25207 1089 1072 25208 1086 1147 25209 1090 1073 25210 1087 1070 25211 1090 1073 25212 1092 1075 25213 1091 1074 25214 1092 1075 25215 1094 1077 25216 1093 1076 25217 1094 1077 25218 1096 1079 25219 1095 1078 25220 1098 1083 25221 1099 1081 25222 1096 1079 25223 1100 1085 25224 1101 1082 25225 1098 1083 25226 1102 1086 25227 1103 1084 25228 1100 1085 25229 1089 1072 25230 1088 1071 25231 1102 1086 25232 1104 1154 25233 1105 1087 25234 1107 1089 25235 1104 1154 25236 1108 1090 25237 1105 1087 25238 1108 1090 25239 1110 1092 25240 1109 1091 25241 1112 1155 25242 1113 1094 25243 1110 1092 25244 1112 1155 25245 1114 1095 25246 1113 1094 25247 1114 1095 25248 1116 1097 25249 1115 1096 25250 1116 1097 25251 1118 1099 25252 1117 1098 25253 1120 1102 25254 1121 1101 25255 1118 1099 25256 1107 1089 25257 1106 1088 25258 1120 1102 25259 1122 1107 25260 1123 1103 25261 1125 1105 25262 1126 1109 25263 1127 1106 25264 1122 1107 25265 1128 1111 25266 1129 1108 25267 1126 1109 25268 1130 1152 25269 1131 1110 25270 1128 1111 25271 1130 1152 25272 1132 1112 25273 1131 1110 25274 1132 1112 25275 1134 1114 25276 1133 1113 25277 1134 1114 25278 1136 1116 25279 1135 1115 25280 1136 1116 25281 1138 1118 25282 1137 1117 25283 1125 1105 25284 1124 1104 25285 1138 1118 25286 1140 1121 25287 924 921 25288 1141 1120 25289 1142 1122 25290 926 922 25291 1140 1121 25292 1143 1124 25293 927 923 25294 1142 1122 25295 1144 1153 25296 928 1123 25297 1143 1124 25298 1144 1153 25299 1145 1125 25300 928 1123 25301 1145 1125 25302 1146 1126 25303 929 924 25304 1146 1126 25305 1147 1127 25306 930 926 25307 1147 1127 25308 1148 1128 25309 931 927 25310 1141 1120 25311 925 920 25312 1148 1128 25313 1149 1193 25314 1150 1129 25315 1152 1131 25316 1149 1193 25317 1153 1132 25318 1150 1129 25319 1153 1132 25320 1155 1134 25321 1154 1133 25322 1157 1138 25323 1158 1136 25324 1155 1134 25325 1159 1202 25326 1160 1137 25327 1157 1138 25328 1159 1202 25329 1161 1139 25330 1160 1137 25331 1161 1139 25332 1163 1141 25333 1162 1140 25334 1165 1144 25335 1166 1143 25336 1163 1141 25337 1152 1131 25338 1151 1130 25339 1165 1144 25340 1073 1060 25341 1072 1059 25342 1168 1146 25343 1084 1069 25344 1069 1056 25345 1086 1147 25346 1068 1055 25347 1169 1148 25348 1092 1075 25349 1083 1068 25350 1096 1079 25351 1169 1148 25352 1079 1064 25353 1100 1085 25354 1081 1066 25355 1078 1063 25356 1102 1086 25357 1079 1064 25358 1075 1062 25359 1073 1060 25360 1170 1149 25361 1085 1157 25362 1071 1058 25363 1171 1150 25364 1085 1157 25365 1084 1069 25366 1071 1058 25367 1077 1163 25368 1171 1150 25369 1076 1151 25370 1077 1163 25371 1076 1151 25372 1078 1063 25373 1086 1147 25374 1089 1072 25375 1167 1145 25376 1086 1147 25377 1167 1145 25378 1084 1069 25379 1102 1086 25380 1078 1063 25381 1170 1149 25382 1102 1086 25383 1170 1149 25384 1089 1072 25385 1105 1087 25386 1122 1107 25387 1106 1088 25388 1109 1091 25389 1126 1109 25390 1105 1087 25391 1111 1093 25392 1128 1111 25393 1109 1091 25394 1113 1094 25395 1130 1152 25396 1111 1093 25397 1113 1094 25398 1115 1096 25399 1130 1152 25400 1115 1096 25401 1117 1098 25402 1132 1112 25403 1117 1098 25404 1119 1100 25405 1134 1114 25406 1121 1101 25407 1138 1118 25408 1119 1100 25409 1106 1088 25410 1125 1105 25411 1121 1101 25412 1123 1103 25413 1140 1121 25414 1124 1104 25415 1127 1106 25416 1142 1122 25417 1123 1103 25418 1129 1108 25419 1143 1124 25420 1127 1106 25421 1131 1110 25422 1144 1153 25423 1129 1108 25424 1131 1110 25425 1133 1113 25426 1144 1153 25427 1133 1113 25428 1135 1115 25429 1145 1125 25430 1135 1115 25431 1137 1117 25432 1146 1126 25433 1137 1117 25434 1139 1119 25435 1147 1127 25436 1124 1104 25437 1141 1120 25438 1139 1119 25439 1087 1070 25440 1104 1154 25441 1088 1071 25442 1087 1070 25443 1091 1074 25444 1104 1154 25445 1091 1074 25446 1093 1076 25447 1108 1090 25448 1095 1078 25449 1112 1155 25450 1093 1076 25451 1095 1078 25452 1097 1080 25453 1112 1155 25454 1097 1080 25455 1099 1081 25456 1114 1095 25457 1101 1082 25458 1118 1099 25459 1099 1081 25460 1103 1084 25461 1120 1102 25462 1101 1082 25463 1088 1071 25464 1107 1089 25465 1103 1084 25466 1173 1207 25467 1172 1156 25468 1085 1157 25469 1172 1156 25470 1174 1158 25471 1070 1057 25472 1175 1159 25473 1169 1148 25474 1174 1158 25475 1176 1160 25476 1083 1068 25477 1175 1159 25478 1177 1161 25479 1082 1067 25480 1176 1160 25481 1178 1208 25482 1080 1065 25483 1177 1161 25484 1178 1208 25485 1179 1162 25486 1080 1065 25487 1180 1164 25488 1171 1150 25489 1179 1162 25490 1173 1207 25491 1085 1157 25492 1180 1164 25493 1061 1047 25494 1181 1165 25495 1058 1045 25496 1067 1053 25497 1183 1167 25498 1061 1047 25499 1066 1052 25500 1184 1168 25501 1067 1053 25502 1065 1051 25503 1185 1169 25504 1066 1052 25505 1065 1051 25506 1064 1050 25507 1185 1169 25508 1186 1170 25509 1064 1050 25510 1187 1171 25511 1062 1048 25512 1188 1172 25513 1063 1049 25514 1059 1046 25515 1189 1173 25516 1062 1048 25517 1058 1045 25518 1182 1166 25519 1059 1046 25520 1022 1005 25521 1040 1174 25522 1057 1043 25523 960 951 25524 1038 1023 25525 1022 1005 25526 959 950 25527 1041 1026 25528 960 951 25529 971 961 25530 989 976 25531 959 950 25532 1042 1027 25533 987 974 25534 971 961 25535 1043 1028 25536 984 1044 25537 1042 1027 25538 1045 1030 25539 979 967 25540 1043 1028 25541 1044 1029 25542 976 971 25543 1045 1030 25544 1046 1031 25545 982 1175 25546 1044 1029 25547 1047 1032 25548 991 1176 25549 1048 1033 25550 1050 1036 25551 1049 1035 25552 948 942 25553 981 969 25554 1013 997 25555 992 978 25556 947 941 25557 981 969 25558 991 1176 25559 1191 1178 25560 947 941 25561 1047 1032 25562 1192 1179 25563 1191 1178 25564 1026 1009 25565 1026 1009 25566 1025 1008 25567 1192 1179 25568 993 979 25569 1037 1020 25570 983 970 25571 994 980 25572 993 979 25573 982 1175 25574 1048 1033 25575 994 980 25576 1046 1031 25577 1027 1034 25578 1048 1033 25579 1029 1010 25580 1024 1007 25581 1027 1034 25582 1028 1014 25583 1193 1180 25584 1037 1020 25585 1015 998 25586 1193 1180 25587 1002 988 25588 1037 1020 25589 1193 1180 25590 1060 1054 25591 1002 988 25592 1012 996 25593 1060 1054 25594 1015 998 25595 1192 1179 25596 1035 1016 25597 957 1037 25598 957 1037 25599 1050 1036 25600 1192 1179 25601 948 942 25602 947 941 25603 1050 1036 25604 1010 1021 25605 974 964 25606 1011 995 25607 975 1022 25608 974 964 25609 980 968 25610 949 943 25611 952 946 25612 980 968 25613 949 943 25614 948 942 25615 1194 1181 25616 949 943 25617 1194 1181 25618 952 946 25619 940 934 25620 1018 1183 25621 1036 1017 25622 1036 1017 25623 1195 1184 25624 954 947 25625 940 934 25626 1035 1016 25627 1033 1015 25628 934 929 25629 938 932 25630 1032 1186 25631 1034 1185 25632 1024 1007 25633 1032 1186 25634 1034 1185 25635 1033 1015 25636 1024 1007 25637 1197 1188 25638 1152 1131 25639 1196 1187 25640 1199 1190 25641 1197 1188 25642 1198 1189 25643 1197 1188 25644 1199 1190 25645 1201 1192 25646 1152 1131 25647 1197 1188 25648 1149 1193 25649 1201 1192 25650 1200 1191 25651 1203 1195 25652 1201 1192 25653 1203 1195 25654 1149 1193 25655 1203 1195 25656 1202 1194 25657 1205 1197 25658 1203 1195 25659 1205 1197 25660 1153 1132 25661 1205 1197 25662 1204 1196 25663 1207 1199 25664 1205 1197 25665 1207 1199 25666 1155 1134 25667 1206 1198 25668 1208 1200 25669 1207 1199 25670 1157 1138 25671 1207 1199 25672 1159 1202 25673 1208 1200 25674 1210 1203 25675 1209 1201 25676 1159 1202 25677 1209 1201 25678 1161 1139 25679 1210 1203 25680 1212 1205 25681 1211 1204 25682 1211 1204 25683 1213 1206 25684 1161 1139 25685 1213 1206 25686 1212 1205 25687 1196 1187 25688 1213 1206 25689 1196 1187 25690 1163 1141 25691 1151 1130 25692 1173 1207 25693 1166 1143 25694 1150 1129 25695 1172 1156 25696 1151 1130 25697 1150 1129 25698 1154 1133 25699 1172 1156 25700 1154 1133 25701 1156 1135 25702 1174 1158 25703 1158 1136 25704 1176 1160 25705 1156 1135 25706 1160 1137 25707 1177 1161 25708 1158 1136 25709 1160 1137 25710 1162 1140 25711 1177 1161 25712 1162 1140 25713 1164 1142 25714 1178 1208 25715 1166 1143 25716 1180 1164 25717 1164 1142 25718 1188 1172 25719 1199 1190 25720 1187 1171 25721 1189 1173 25722 1200 1191 25723 1188 1172 25724 1182 1166 25725 1202 1194 25726 1189 1173 25727 1181 1165 25728 1204 1196 25729 1182 1166 25730 1183 1167 25731 1206 1198 25732 1181 1165 25733 1184 1168 25734 1208 1200 25735 1183 1167 25736 1184 1168 25737 1185 1169 25738 1208 1200 25739 1185 1169 25740 1186 1170 25741 1210 1203 25742 1187 1171 25743 1198 1189 25744 1186 1170 25745 1214 1213 25746 1215 1209 25747 1217 1211 25748 1219 1225 25749 1218 1212 25750 1217 1211 25751 1220 1226 25752 1221 1214 25753 1223 1216 25754 1222 1215 25755 1221 1214 25756 1225 1218 25757 1225 1218 25758 1224 1217 25759 1227 1220 25760 1226 1219 25761 1228 1221 25762 1227 1220 25763 1229 1222 25764 1228 1221 25765 1231 1224 25766 1231 1224 25767 1230 1223 25768 1219 1225 25769 1215 1209 25770 1220 1226 25771 1216 1210 25772 1232 1228 25773 1233 1227 25774 1215 1209 25775 1234 1229 25776 1232 1228 25777 1214 1213 25778 1235 1230 25779 1234 1229 25780 1218 1212 25781 1236 1231 25782 1235 1230 25783 1230 1223 25784 1237 1233 25785 1236 1231 25786 1228 1221 25787 1226 1219 25788 1238 1232 25789 1228 1221 25790 1224 1217 25791 1239 1234 25792 1226 1219 25793 1221 1214 25794 1240 1235 25795 1224 1217 25796 1233 1227 25797 1240 1235 25798 1220 1226 25799 1216 1210 25800 1223 1216 25801 1242 1237 25802 1243 1238 25803 1217 1211 25804 1242 1237 25805 1244 1239 25806 1219 1225 25807 1243 1238 25808 1231 1224 25809 1219 1225 25810 1245 1240 25811 1229 1222 25812 1231 1224 25813 1246 1241 25814 1227 1220 25815 1229 1222 25816 1247 1242 25817 1248 1247 25818 1225 1218 25819 1247 1242 25820 1250 1244 25821 1245 1240 25822 1249 1243 25823 1251 1245 25824 1246 1241 25825 1250 1244 25826 1247 1242 25827 1246 1241 25828 1252 1246 25829 1253 1255 25830 1248 1247 25831 1252 1246 25832 1255 1249 25833 1242 1237 25834 1254 1248 25835 1256 1250 25836 1243 1238 25837 1255 1249 25838 1244 1239 25839 1243 1238 25840 1249 1243 25841 1223 1216 25842 1222 1215 25843 1258 1252 25844 1259 1257 25845 1241 1236 25846 1258 1252 25847 1257 1251 25848 1222 1215 25849 1260 1253 25850 1225 1218 25851 1248 1247 25852 1260 1253 25853 1248 1247 25854 1253 1255 25855 1261 1254 25856 1263 7570 25857 1254 1248 25858 1259 1257 25859 1264 1259 25860 1265 1258 25861 1233 1227 25862 1266 1260 25863 1264 1259 25864 1232 1228 25865 1267 1261 25866 1266 1260 25867 1234 1229 25868 1268 1263 25869 1267 1261 25870 1235 1230 25871 1236 1231 25872 1269 1262 25873 1235 1230 25874 1237 1233 25875 1270 1264 25876 1236 1231 25877 1238 1232 25878 1271 1265 25879 1237 1233 25880 1239 1234 25881 1272 1266 25882 1238 1232 25883 1265 1258 25884 1272 1266 25885 1240 1235 25886 1273 1271 25887 1274 1267 25888 1276 1269 25889 1278 1273 25890 1277 1270 25891 1276 1269 25892 1280 1332 25893 1279 1272 25894 1278 1273 25895 1281 1277 25896 1282 1274 25897 1284 1276 25898 1285 1367 25899 1281 1277 25900 1286 1278 25901 1291 1313 25902 950 944 25903 1290 1282 25904 1292 1509 25905 1293 1283 25906 955 948 25907 1294 1293 25908 1295 1284 25909 1297 1286 25910 1298 1339 25911 1299 1287 25912 1301 1289 25913 1302 1343 25914 1303 1290 25915 1305 1292 25916 1307 1359 25917 1294 1293 25918 1306 1294 25919 1311 1309 25920 1308 1295 25921 1310 1297 25922 1315 1303 25923 1312 1298 25924 1314 1300 25925 1317 1510 25926 1288 1280 25927 1316 1301 25928 1319 1350 25929 1318 1302 25930 1315 1303 25931 1323 1349 25932 1320 1304 25933 1322 1306 25934 1322 1306 25935 1321 1305 25936 1325 1308 25937 1326 1324 25938 1325 1308 25939 1311 1309 25940 1327 1504 25941 1328 1310 25942 1330 1312 25943 950 944 25944 1291 1313 25945 995 981 25946 1325 1308 25947 1331 1314 25948 1308 1295 25949 1332 1320 25950 1333 1315 25951 1335 1317 25952 1335 1317 25953 1336 1318 25954 1332 1320 25955 1341 1379 25956 1338 1321 25957 1340 1323 25958 1340 1323 25959 1339 1322 25960 1342 1325 25961 1342 1325 25962 1326 1324 25963 1343 1326 25964 1343 1326 25965 1311 1309 25966 1344 1327 25967 1345 1353 25968 1346 1328 25969 1348 1330 25970 1349 1352 25971 1350 1331 25972 1346 1328 25973 1351 1358 25974 1017 999 25975 1331 1314 25976 1018 1183 25977 1019 1001 25978 1280 1332 25979 1353 1342 25980 1283 1275 25981 1352 1333 25982 1295 1284 25983 1354 1334 25984 1296 1285 25985 1356 1511 25986 1357 1336 25987 1359 1338 25988 1360 1507 25989 1298 1339 25990 1361 1340 25991 1363 1365 25992 1362 1341 25993 1353 1342 25994 1362 1341 25995 1303 1290 25996 1283 1275 25997 1303 1290 25998 1302 1343 25999 1284 1276 26000 1299 1287 26001 1298 1339 26002 1275 1268 26003 1360 1507 26004 1364 1344 26005 1298 1339 26006 1280 1332 26007 1278 1273 26008 1366 1346 26009 1292 1509 26010 1367 1347 26011 1368 1348 26012 1339 1322 26013 1322 1306 26014 1326 1324 26015 1338 1321 26016 1323 1349 26017 1339 1322 26018 1332 1320 26019 1315 1303 26020 1333 1315 26021 1337 1319 26022 1319 1350 26023 1332 1320 26024 1330 1312 26025 1329 1311 26026 1349 1352 26027 1317 1510 26028 1316 1301 26029 1345 1353 26030 1308 1295 26031 1291 1313 26032 1309 1296 26033 1351 1358 26034 1370 1354 26035 1372 1356 26036 1331 1314 26037 1373 1357 26038 1351 1358 26039 1324 1307 26040 1373 1357 26041 1325 1308 26042 1304 1291 26043 1307 1359 26044 1374 1360 26045 1375 1368 26046 1305 1292 26047 1374 1360 26048 1377 1362 26049 1301 1289 26050 1376 1361 26051 1378 1502 26052 1361 1340 26053 1377 1362 26054 1380 1503 26055 1358 1337 26056 1379 1363 26057 1049 1035 26058 956 949 26059 1381 1364 26060 1303 1290 26061 1294 1293 26062 1304 1291 26063 1303 1290 26064 1362 1341 26065 1294 1293 26066 1362 1341 26067 1363 1365 26068 1295 1284 26069 1371 1355 26070 1052 1039 26071 1372 1356 26072 1351 1358 26073 1372 1356 26074 1017 999 26075 1352 1333 26076 1054 1366 26077 1353 1342 26078 1055 1041 26079 1363 1365 26080 1053 1040 26081 1056 1042 26082 1354 1334 26083 1055 1041 26084 1355 1335 26085 1354 1334 26086 1057 1043 26087 1274 1267 26088 1285 1367 26089 1275 1268 26090 1302 1343 26091 1299 1287 26092 1286 1278 26093 1305 1292 26094 1300 1288 26095 1302 1343 26096 1376 1361 26097 1300 1288 26098 1375 1368 26099 1314 1300 26100 1313 1299 26101 1323 1349 26102 1338 1321 26103 1333 1315 26104 1323 1349 26105 1341 1379 26106 1334 1316 26107 1338 1321 26108 1335 1317 26109 1334 1316 26110 1383 1370 26111 1384 1378 26112 1335 1317 26113 1385 1371 26114 1341 1379 26115 1340 1323 26116 1387 1373 26117 1386 1372 26118 1340 1323 26119 1388 1374 26120 1388 1374 26121 1342 1325 26122 1389 1375 26123 1389 1375 26124 1343 1326 26125 1390 1376 26126 1344 1327 26127 1347 1329 26128 1390 1376 26129 1347 1329 26130 1384 1378 26131 1391 1377 26132 1334 1316 26133 1341 1379 26134 1382 1369 26135 1398 1477 26136 1395 1383 26137 1397 1385 26138 1397 1385 26139 1396 1384 26140 1400 1387 26141 1401 1482 26142 1402 1388 26143 1404 1390 26144 1402 1388 26145 1405 1391 26146 1403 1389 26147 1394 1382 26148 1393 1381 26149 1409 1395 26150 1410 1400 26151 1411 1396 26152 1413 1398 26153 1415 1402 26154 1414 1399 26155 1413 1398 26156 1417 1404 26157 1416 1401 26158 1415 1402 26159 1419 1406 26160 1418 1403 26161 1417 1404 26162 1421 1407 26163 1420 1405 26164 1419 1406 26165 1422 1409 26166 1420 1405 26167 1423 1408 26168 1424 1411 26169 1422 1409 26170 1425 1410 26171 1426 1413 26172 1424 1411 26173 1427 1412 26174 1411 1396 26175 1426 1413 26176 1412 1397 26177 1428 1418 26178 1429 1414 26179 1431 1416 26180 1433 1420 26181 1432 1417 26182 1431 1416 26183 1435 1421 26184 1434 1419 26185 1433 1420 26186 1436 1424 26187 1434 1419 26188 1437 1422 26189 1439 1426 26190 1438 1423 26191 1437 1422 26192 1441 1427 26193 1440 1425 26194 1439 1426 26195 1442 1429 26196 1440 1425 26197 1443 1428 26198 1444 1431 26199 1442 1429 26200 1445 1430 26201 1429 1414 26202 1444 1431 26203 1430 1415 26204 1446 1435 26205 1447 1432 26206 1449 1434 26207 1450 1437 26208 1446 1435 26209 1451 1436 26210 1452 1439 26211 1450 1437 26212 1453 1438 26213 1454 1442 26214 1452 1439 26215 1455 1440 26216 1457 1444 26217 1456 1441 26218 1455 1440 26219 1459 1446 26220 1458 1443 26221 1457 1444 26222 1461 1448 26223 1460 1445 26224 1459 1446 26225 1463 1449 26226 1462 1447 26227 1461 1448 26228 1447 1432 26229 1462 1447 26230 1448 1433 26231 1464 1451 26232 1465 1450 26233 1264 1259 26234 1466 1452 26235 1464 1451 26236 1266 1260 26237 1467 1453 26238 1466 1452 26239 1267 1261 26240 1468 1455 26241 1467 1453 26242 1268 1263 26243 1269 1262 26244 1469 1454 26245 1268 1263 26246 1270 1264 26247 1470 1456 26248 1269 1262 26249 1271 1265 26250 1471 1457 26251 1270 1264 26252 1272 1266 26253 1472 1458 26254 1271 1265 26255 1465 1450 26256 1472 1458 26257 1265 1258 26258 1473 1463 26259 1474 1459 26260 1476 1461 26261 1478 1465 26262 1477 1462 26263 1476 1461 26264 1480 1466 26265 1479 1464 26266 1478 1465 26267 1481 1468 26268 1479 1464 26269 1482 1467 26270 1483 1471 26271 1481 1468 26272 1484 1469 26273 1486 1473 26274 1485 1470 26275 1484 1469 26276 1488 1475 26277 1487 1472 26278 1486 1473 26279 1490 1476 26280 1489 1474 26281 1488 1475 26282 1474 1459 26283 1489 1474 26284 1475 1460 26285 1492 1483 26286 1398 1477 26287 1491 1478 26288 1414 1399 26289 1394 1382 26290 1410 1400 26291 1418 1403 26292 1493 1479 26293 1416 1401 26294 1407 1393 26295 1493 1479 26296 1420 1405 26297 1403 1389 26298 1406 1392 26299 1424 1411 26300 1404 1390 26301 1403 1389 26302 1426 1413 26303 1491 1478 26304 1397 1385 26305 1494 1480 26306 1408 1394 26307 1495 1481 26308 1395 1383 26309 1398 1477 26310 1409 1395 26311 1395 1383 26312 1396 1384 26313 1495 1481 26314 1399 1386 26315 1401 1482 26316 1404 1390 26317 1399 1386 26318 1491 1478 26319 1411 1396 26320 1492 1483 26321 1410 1400 26322 1409 1395 26323 1492 1483 26324 1400 1387 26325 1404 1390 26326 1494 1480 26327 1426 1413 26328 1411 1396 26329 1494 1480 26330 1431 1416 26331 1430 1415 26332 1446 1435 26333 1433 1420 26334 1431 1416 26335 1450 1437 26336 1435 1421 26337 1433 1420 26338 1452 1439 26339 1437 1422 26340 1435 1421 26341 1454 1442 26342 1456 1441 26343 1439 1426 26344 1454 1442 26345 1458 1443 26346 1441 1427 26347 1456 1441 26348 1460 1445 26349 1443 1428 26350 1458 1443 26351 1445 1430 26352 1443 1428 26353 1462 1447 26354 1430 1415 26355 1445 1430 26356 1447 1432 26357 1449 1434 26358 1448 1433 26359 1464 1451 26360 1451 1436 26361 1449 1434 26362 1466 1452 26363 1453 1438 26364 1451 1436 26365 1467 1453 26366 1455 1440 26367 1453 1438 26368 1468 1455 26369 1469 1454 26370 1457 1444 26371 1468 1455 26372 1470 1456 26373 1459 1446 26374 1469 1454 26375 1471 1457 26376 1461 1448 26377 1470 1456 26378 1472 1458 26379 1463 1449 26380 1471 1457 26381 1448 1433 26382 1463 1449 26383 1465 1450 26384 1413 1398 26385 1412 1397 26386 1428 1418 26387 1432 1417 26388 1415 1402 26389 1428 1418 26390 1434 1419 26391 1417 1404 26392 1432 1417 26393 1419 1406 26394 1417 1404 26395 1436 1424 26396 1438 1423 26397 1421 1407 26398 1436 1424 26399 1440 1425 26400 1423 1408 26401 1438 1423 26402 1425 1410 26403 1423 1408 26404 1442 1429 26405 1427 1412 26406 1425 1410 26407 1444 1431 26408 1412 1397 26409 1427 1412 26410 1429 1414 26411 1393 1381 26412 1496 1484 26413 1408 1394 26414 1392 1380 26415 1498 1486 26416 1393 1381 26417 1499 1487 26418 1498 1486 26419 1493 1479 26420 1500 1488 26421 1499 1487 26422 1407 1393 26423 1501 1490 26424 1500 1488 26425 1405 1391 26426 1402 1388 26427 1502 1489 26428 1405 1391 26429 1401 1482 26430 1503 1491 26431 1402 1388 26432 1504 1492 26433 1503 1491 26434 1495 1481 26435 1497 1485 26436 1504 1492 26437 1408 1394 26438 1385 1371 26439 1383 1370 26440 1506 1494 26441 1391 1377 26442 1385 1371 26443 1507 1495 26444 1390 1376 26445 1391 1377 26446 1508 1496 26447 1389 1375 26448 1390 1376 26449 1509 1497 26450 1510 1498 26451 1388 1374 26452 1509 1497 26453 1388 1374 26454 1510 1498 26455 1386 1372 26456 1387 1373 26457 1386 1372 26458 1512 1500 26459 1382 1369 26460 1387 1373 26461 1513 1501 26462 1383 1370 26463 1382 1369 26464 1505 1493 26465 1371 1355 26466 1355 1335 26467 1052 1039 26468 1296 1285 26469 1355 1335 26470 1370 1354 26471 1297 1286 26472 1296 1285 26473 1373 1357 26474 1306 1294 26475 1297 1286 26476 1324 1307 26477 1321 1305 26478 1374 1360 26479 1324 1307 26480 1320 1304 26481 1375 1368 26482 1321 1305 26483 1313 1299 26484 1376 1361 26485 1320 1304 26486 1312 1298 26487 1377 1362 26488 1313 1299 26489 1318 1302 26490 1378 1502 26491 1312 1298 26492 1327 1504 26493 1380 1503 26494 1328 1310 26495 1190 1177 26496 1049 1035 26497 1289 1281 26498 1316 1301 26499 1330 1312 26500 1346 1328 26501 1287 1279 26502 1327 1504 26503 1316 1301 26504 1287 1279 26505 1514 1505 26506 1327 1504 26507 1514 1505 26508 1515 1506 26509 1380 1503 26510 1359 1338 26511 1358 1337 26512 1368 1348 26513 1329 1311 26514 1319 1350 26515 1369 1351 26516 1328 1310 26517 1318 1302 26518 1329 1311 26519 1328 1310 26520 1379 1363 26521 1318 1302 26522 1379 1363 26523 1357 1336 26524 1378 1502 26525 1356 1511 26526 1360 1507 26527 1357 1336 26528 1516 1508 26529 1350 1331 26530 1369 1351 26531 1516 1508 26532 1369 1351 26533 1336 1318 26534 1335 1317 26535 1384 1378 26536 1336 1318 26537 1516 1508 26538 1384 1378 26539 1350 1331 26540 1368 1348 26541 1515 1506 26542 1292 1509 26543 1381 1364 26544 1293 1283 26545 1514 1505 26546 1289 1281 26547 1381 1364 26548 1287 1279 26549 1344 1327 26550 1310 1297 26551 1348 1330 26552 1310 1297 26553 1309 1296 26554 1345 1353 26555 1309 1296 26556 1290 1282 26557 1317 1510 26558 1289 1281 26559 1288 1280 26560 1190 1177 26561 1194 1181 26562 1288 1280 26563 953 1182 26564 1195 1184 26565 1018 1183 26566 1367 1347 26567 955 948 26568 1195 1184 26569 1292 1509 26570 1280 1332 26571 1366 1346 26572 1368 1348 26573 1365 1345 26574 1278 1273 26575 1364 1344 26576 1365 1345 26577 1364 1344 26578 1356 1511 26579 1359 1338 26580 1366 1346 26581 1356 1511 26582 1489 1474 26583 1474 1459 26584 1518 1513 26585 1518 1513 26586 1517 1512 26587 1520 1515 26588 1522 1517 26589 1519 1514 26590 1521 1516 26591 1521 1516 26592 1517 1512 26593 1473 1463 26594 1524 1519 26595 1522 1517 26596 1523 1518 26597 1521 1516 26598 1473 1463 26599 1523 1518 26600 1526 1521 26601 1524 1519 26602 1525 1520 26603 1523 1518 26604 1477 1462 26605 1525 1520 26606 1528 1529 26607 1526 1521 26608 1527 1522 26609 1525 1520 26610 1479 1464 26611 1527 1522 26612 1528 1529 26613 1527 1522 26614 1530 1524 26615 1529 1523 26616 1527 1522 26617 1483 1471 26618 1530 1524 26619 1529 1523 26620 1532 1526 26621 1531 1525 26622 1529 1523 26623 1485 1470 26624 1532 1526 26625 1531 1525 26626 1534 1528 26627 1531 1525 26628 1485 1470 26629 1533 1527 26630 1520 1515 26631 1534 1528 26632 1518 1513 26633 1533 1527 26634 1487 1472 26635 1518 1513 26636 1475 1460 26637 1490 1476 26638 1497 1485 26639 1476 1461 26640 1475 1460 26641 1496 1484 26642 1498 1486 26643 1478 1465 26644 1496 1484 26645 1499 1487 26646 1480 1466 26647 1498 1486 26648 1482 1467 26649 1480 1466 26650 1500 1488 26651 1484 1469 26652 1482 1467 26653 1501 1490 26654 1502 1489 26655 1486 1473 26656 1501 1490 26657 1503 1491 26658 1488 1475 26659 1502 1489 26660 1490 1476 26661 1488 1475 26662 1504 1492 26663 1512 1500 26664 1511 1499 26665 1519 1514 26666 1513 1501 26667 1512 1500 26668 1522 1517 26669 1505 1493 26670 1513 1501 26671 1524 1519 26672 1506 1494 26673 1505 1493 26674 1526 1521 26675 1507 1495 26676 1506 1494 26677 1528 1529 26678 1508 1496 26679 1507 1495 26680 1530 1524 26681 1532 1526 26682 1509 1497 26683 1530 1524 26684 1534 1528 26685 1510 1498 26686 1532 1526 26687 1520 1515 26688 1511 1499 26689 1534 1528 26690 1538 1566 26691 1535 1530 26692 1537 1532 26693 1539 1577 26694 1540 1533 26695 1542 1535 26696 1539 1577 26697 1543 1536 26698 1540 1533 26699 1545 1812 26700 1546 1538 26701 1548 1540 26702 1549 1668 26703 1550 1541 26704 1552 1543 26705 1556 1656 26706 1553 1544 26707 1555 1546 26708 1560 1805 26709 1557 1547 26710 1559 1549 26711 1561 1802 26712 1562 1550 26713 1564 1552 26714 1568 1565 26715 1565 1553 26716 1567 1555 26717 1572 1625 26718 1569 1556 26719 1571 1558 26720 1576 1666 26721 1573 1559 26722 1575 1561 26723 1577 1659 26724 1578 1562 26725 1580 1564 26726 1565 1553 26727 1568 1565 26728 1541 1534 26729 1572 1625 26730 1538 1566 26731 1569 1556 26732 1581 1673 26733 1582 1567 26734 1584 1569 26735 1585 1634 26736 1586 1570 26737 1569 1556 26738 1585 1634 26739 1569 1556 26740 1587 1571 26741 1536 1531 26742 1588 1572 26743 1537 1532 26744 1589 1611 26745 1590 1573 26746 1592 1575 26747 1594 1578 26748 1593 1576 26749 1542 1535 26750 1595 1580 26751 1594 1578 26752 1568 1565 26753 1568 1565 26754 1567 1555 26755 1595 1580 26756 1597 1586 26757 1598 1581 26758 1600 1583 26759 1600 1583 26760 1601 1584 26761 1597 1586 26762 1603 1639 26763 1604 1587 26764 1586 1570 26765 1567 1555 26766 1605 1588 26767 1596 1579 26768 1610 2079 26769 1607 1590 26770 1609 1592 26771 1566 1554 26772 1611 1593 26773 1567 1555 26774 1571 1558 26775 1570 1557 26776 1612 1594 26777 1613 1622 26778 1614 1595 26779 1566 1554 26780 1603 1639 26781 1615 1596 26782 1617 1598 26783 1605 1588 26784 1600 1583 26785 1606 1589 26786 1619 1762 26787 1620 1600 26788 1622 1602 26789 1611 1593 26790 1601 1584 26791 1605 1588 26792 1612 1594 26793 1604 1587 26794 1624 1604 26795 1614 1595 26796 1602 1585 26797 1611 1593 26798 1554 1545 26799 1625 1605 26800 1627 1607 26801 1631 1827 26802 1628 1608 26803 1630 1610 26804 1539 1577 26805 1593 1576 26806 1592 1575 26807 1543 1536 26808 1539 1577 26809 1591 1574 26810 1536 1531 26811 1632 1612 26812 1588 1572 26813 1540 1533 26814 1634 1614 26815 1541 1534 26816 1535 1530 26817 1538 1566 26818 1637 1617 26819 1544 1537 26820 1638 1618 26821 1540 1533 26822 1566 1554 26823 1565 1553 26824 1640 1620 26825 1566 1554 26826 1640 1620 26827 1613 1622 26828 1571 1558 26829 1642 1623 26830 1572 1625 26831 1565 1553 26832 1541 1534 26833 1639 1619 26834 1636 1616 26835 1538 1566 26836 1643 1624 26837 1609 1592 26838 1608 1591 26839 1645 1627 26840 1615 1596 26841 1646 1628 26842 1616 1597 26843 1598 1581 26844 1648 1630 26845 1599 1582 26846 1650 1645 26847 1651 1632 26848 1608 1591 26849 1652 1803 26850 1653 1633 26851 1585 1634 26852 1652 1803 26853 1585 1634 26854 1547 1539 26855 1588 1572 26856 1654 1635 26857 1587 1571 26858 1633 1613 26859 1655 1636 26860 1588 1572 26861 1626 1606 26862 1656 1637 26863 1589 1611 26864 1627 1607 26865 1626 1606 26866 1593 1576 26867 1579 1563 26868 1627 1607 26869 1594 1578 26870 1657 1638 26871 1579 1563 26872 1595 1580 26873 1595 1580 26874 1596 1579 26875 1657 1638 26876 1606 1589 26877 1608 1591 26878 1596 1579 26879 1653 1633 26880 1615 1596 26881 1586 1570 26882 1603 1639 26883 1617 1598 26884 1604 1587 26885 1623 1603 26886 1617 1598 26887 1658 1640 26888 1647 1629 26889 1659 1641 26890 1616 1597 26891 1663 1771 26892 1660 1642 26893 1662 1644 26894 1599 1582 26895 1649 1631 26896 1650 1645 26897 1600 1583 26898 1599 1582 26899 1618 1599 26900 1618 1599 26901 1650 1645 26902 1606 1589 26903 1631 1827 26904 1668 1650 26905 1628 1608 26906 1549 1668 26907 1670 1652 26908 1550 1541 26909 1674 1703 26910 1672 1654 26911 1556 1656 26912 1564 1552 26913 1675 1657 26914 1577 1659 26915 1563 1551 26916 1677 1660 26917 1564 1552 26918 1679 1806 26919 1680 1662 26920 1682 1664 26921 1683 1807 26922 1684 1665 26923 1576 1666 26924 1686 1690 26925 1670 1652 26926 1687 1669 26927 1545 1812 26928 1688 1670 26929 1546 1538 26930 1691 1707 26931 1664 1646 26932 1581 1673 26933 1692 1825 26934 1693 1674 26935 1695 1676 26936 1696 1696 26937 1673 1655 26938 1697 1677 26939 1698 1828 26940 1699 1678 26941 1701 1680 26942 1689 1671 26943 1690 1672 26944 1703 1682 26945 1704 1798 26946 1705 1683 26947 1707 1685 26948 1708 2071 26949 1675 1657 26950 1709 1686 26951 1710 1876 26952 1711 1687 26953 1713 1689 26954 1670 1652 26955 1686 1690 26956 1715 1692 26957 1670 1652 26958 1715 1692 26959 1671 1653 26960 1717 1826 26961 1718 1694 26962 1668 1650 26963 1673 1655 26964 1696 1696 26965 1721 1698 26966 1685 1667 26967 1722 1699 26968 1688 1670 26969 1703 1682 26970 1724 1701 26971 1689 1671 26972 1672 1654 26973 1674 1703 26974 1727 1705 26975 1697 1677 26976 1672 1654 26977 1728 1706 26978 1664 1646 26979 1691 1707 26980 1730 1709 26981 1708 2071 26982 1731 1710 26983 1675 1657 26984 1675 1657 26985 1732 1711 26986 1676 1658 26987 1702 1681 26988 1690 1672 26989 1735 1714 26990 1683 1807 26991 1665 1647 26992 1737 1716 26993 1680 1662 26994 1738 1717 26995 1681 1663 26996 1677 1660 26997 1740 1719 26998 1678 1661 26999 1709 1686 27000 1678 1661 27001 1742 1721 27002 1743 2126 27003 1744 1722 27004 1746 1724 27005 1747 1796 27006 1748 1725 27007 1750 1727 27008 1754 1956 27009 1751 1728 27010 1753 1730 27011 1751 1728 27012 1755 1731 27013 1752 1729 27014 1757 1737 27015 1758 1733 27016 1760 1735 27017 1761 1752 27018 1762 1736 27019 1757 1737 27020 1761 1752 27021 1763 1738 27022 1762 1736 27023 1768 2117 27024 1769 1743 27025 1770 1744 27026 1760 1735 27027 1759 1734 27028 1772 1746 27029 1773 1759 27030 1774 1747 27031 1776 1749 27032 1775 1748 27033 1777 1750 27034 1776 1749 27035 1780 1755 27036 1761 1752 27037 1779 1753 27038 1776 1749 27039 1778 1751 27040 1783 1757 27041 1783 1757 27042 1784 1758 27043 1776 1749 27044 1779 1753 27045 1757 1737 27046 1786 1761 27047 1759 1734 27048 1619 1762 27049 1771 1745 27050 1762 1736 27051 1764 1739 27052 1789 1765 27053 1793 2118 27054 1790 1766 27055 1792 1768 27056 1791 1767 27057 1790 1766 27058 1795 1770 27059 1621 1601 27060 1620 1600 27061 1663 1771 27062 1662 1644 27063 1661 1643 27064 1788 1764 27065 1797 2016 27066 1796 1772 27067 1736 1715 27068 1799 1775 27069 1798 1773 27070 1741 1720 27071 1740 1719 27072 1800 1774 27073 1741 1720 27074 1738 1717 27075 1801 1776 27076 1739 1718 27077 1729 1708 27078 1803 1778 27079 1730 1709 27080 1806 1795 27081 1805 1780 27082 1734 1713 27083 1732 1711 27084 1807 1781 27085 1733 1712 27086 1809 2070 27087 1807 1781 27088 1731 1710 27089 1722 1699 27090 1810 1783 27091 1723 1700 27092 1812 1787 27093 1813 1785 27094 1727 1705 27095 1727 1705 27096 1726 1704 27097 1812 1787 27098 1815 2002 27099 1725 1702 27100 1816 1788 27101 1718 1694 27102 1817 1789 27103 1719 1695 27104 1715 1692 27105 1819 1791 27106 1716 1693 27107 1715 1692 27108 1714 1691 27109 1819 1791 27110 1823 2057 27111 1822 1794 27112 1720 1697 27113 1577 1659 27114 1676 1658 27115 1578 1562 27116 1676 1658 27117 1733 1712 27118 1690 1672 27119 1733 1712 27120 1808 1782 27121 1734 1713 27122 1754 1956 27123 1753 1730 27124 1747 1796 27125 1824 1870 27126 1825 1797 27127 1704 1798 27128 1829 2009 27129 1803 1778 27130 1828 1801 27131 1691 1707 27132 1667 1649 27133 1729 1708 27134 1667 1649 27135 1691 1707 27136 1546 1538 27137 1547 1539 27138 1546 1538 27139 1584 1569 27140 1564 1552 27141 1577 1659 27142 1561 1802 27143 1547 1539 27144 1584 1569 27145 1652 1803 27146 1583 1568 27147 1830 1804 27148 1652 1803 27149 1610 2079 27150 1557 1547 27151 1607 1590 27152 1561 1802 27153 1657 1638 27154 1560 1805 27155 1561 1802 27156 1580 1564 27157 1657 1638 27158 1576 1666 27159 1575 1561 27160 1582 1567 27161 1574 1560 27162 1830 1804 27163 1575 1561 27164 1561 1802 27165 1560 1805 27166 1562 1550 27167 1563 1551 27168 1562 1550 27169 1682 1664 27170 1558 1548 27171 1679 1806 27172 1559 1549 27173 1684 1665 27174 1683 1807 27175 1831 1808 27176 1831 1808 27177 1737 1716 27178 1832 1809 27179 1712 1688 27180 1833 1810 27181 1713 1689 27182 1739 1718 27183 1802 1777 27184 1740 1719 27185 1681 1663 27186 1739 1718 27187 1677 1660 27188 1682 1664 27189 1681 1663 27190 1563 1551 27191 1665 1647 27192 1683 1807 27193 1582 1567 27194 1654 1635 27195 1629 1609 27196 1547 1539 27197 1629 1609 27198 1628 1608 27199 1548 1540 27200 1556 1656 27201 1555 1546 27202 1578 1562 27203 1555 1546 27204 1554 1545 27205 1579 1563 27206 1625 1605 27207 1835 1813 27208 1626 1606 27209 1687 1669 27210 1549 1668 27211 1836 1814 27212 1629 1609 27213 1654 1635 27214 1837 1815 27215 1688 1670 27216 1723 1700 27217 1666 1648 27218 1723 1700 27219 1811 1784 27220 1838 1816 27221 1700 1679 27222 1840 1818 27223 1701 1680 27224 1815 2002 27225 1814 1786 27226 1725 1702 27227 1689 1671 27228 1725 1702 27229 1674 1703 27230 1628 1608 27231 1685 1667 27232 1545 1812 27233 1674 1703 27234 1556 1656 27235 1689 1671 27236 1554 1545 27237 1553 1544 27238 1836 1814 27239 1836 1814 27240 1552 1543 27241 1554 1545 27242 1552 1543 27243 1551 1542 27244 1625 1605 27245 1630 1610 27246 1629 1609 27247 1842 1820 27248 1631 1827 27249 1630 1610 27250 1843 1821 27251 1668 1650 27252 1719 1695 27253 1669 1651 27254 1719 1695 27255 1818 1790 27256 1844 1822 27257 1846 1856 27258 1847 1824 27259 1692 1825 27260 1822 1794 27261 1821 1793 27262 1721 1698 27263 1686 1690 27264 1673 1655 27265 1714 1691 27266 1673 1655 27267 1686 1690 27268 1553 1544 27269 1843 1821 27270 1717 1826 27271 1631 1827 27272 1848 1830 27273 1699 1678 27274 1849 1829 27275 1850 1838 27276 1700 1679 27277 1848 1830 27278 1850 1838 27279 1851 1831 27280 1700 1679 27281 1851 1831 27282 1852 1832 27283 1840 1818 27284 1853 1837 27285 1854 1833 27286 1856 1835 27287 1857 2139 27288 1858 1836 27289 1856 1835 27290 1859 1947 27291 1850 1838 27292 1860 1839 27293 1860 1839 27294 1848 1830 27295 1861 1840 27296 1865 2140 27297 1862 1841 27298 1864 1843 27299 1866 2141 27300 1867 1844 27301 1864 1843 27302 1870 1847 27303 1869 1846 27304 1851 1831 27305 1859 1947 27306 1870 1847 27307 1850 1838 27308 1871 1852 27309 1872 1848 27310 1874 1850 27311 1875 2152 27312 1876 1851 27313 1874 1850 27314 1877 1854 27315 1695 1676 27316 1878 1853 27317 1879 1858 27318 1692 1825 27319 1877 1854 27320 1879 1858 27321 1880 1855 27322 1692 1825 27323 1880 1855 27324 1881 1857 27325 1846 1856 27326 1882 1984 27327 1879 1858 27328 1883 1859 27329 1883 1859 27330 1877 1854 27331 1884 1860 27332 1890 1866 27333 1889 1865 27334 1880 1855 27335 1882 1984 27336 1890 1866 27337 1879 1858 27338 1752 1729 27339 1756 1732 27340 1706 1684 27341 1745 1723 27342 1744 1722 27343 1892 1868 27344 1893 2127 27345 1894 1869 27346 1744 1722 27347 1748 1725 27348 1825 1797 27349 1749 1726 27350 1753 1730 27351 1705 1683 27352 1748 1725 27353 1753 1730 27354 1752 1729 27355 1705 1683 27356 1895 1885 27357 1896 1871 27358 1898 1873 27359 1895 1885 27360 1899 1874 27361 1896 1871 27362 1901 1878 27363 1711 1687 27364 1902 1877 27365 1903 1881 27366 1712 1688 27367 1901 1878 27368 1903 1881 27369 1904 1879 27370 1712 1688 27371 1904 1879 27372 1905 1880 27373 1833 1810 27374 1906 1971 27375 1903 1881 27376 1907 1882 27377 1907 1882 27378 1901 1878 27379 1908 1883 27380 1913 1889 27381 1912 1888 27382 1904 1879 27383 1906 1971 27384 1913 1889 27385 1903 1881 27386 1917 1894 27387 1914 1890 27388 1916 1892 27389 1918 1896 27390 1919 1893 27391 1916 1892 27392 1921 1897 27393 1920 1895 27394 1918 1896 27395 1922 2069 27396 1920 1895 27397 1923 1898 27398 1927 2006 27399 1924 1899 27400 1926 1901 27401 1925 1900 27402 1924 1899 27403 1929 1903 27404 1933 1908 27405 1930 1904 27406 1932 1906 27407 1934 1910 27408 1935 1907 27409 1933 1908 27410 1937 1911 27411 1936 1909 27412 1934 1910 27413 1938 2078 27414 1936 1909 27415 1939 1912 27416 1943 2013 27417 1940 1913 27418 1942 1915 27419 1945 2043 27420 1941 1914 27421 1944 1916 27422 1949 2000 27423 1946 1917 27424 1948 1919 27425 1947 1918 27426 1946 1917 27427 1951 1921 27428 1955 1926 27429 1952 1922 27430 1954 1924 27431 1956 1927 27432 1957 1925 27433 1955 1926 27434 1958 1929 27435 1957 1925 27436 1959 1928 27437 1960 2063 27438 1958 1929 27439 1961 1930 27440 1965 1994 27441 1962 1931 27442 1964 1933 27443 1967 1993 27444 1966 1934 27445 1962 1931 27446 1971 1990 27447 1968 1935 27448 1970 1937 27449 1971 1990 27450 1972 1938 27451 1968 1935 27452 1974 1941 27453 1973 1939 27454 1975 1940 27455 1977 2056 27456 1974 1941 27457 1976 1942 27458 1982 1948 27459 1860 1839 27460 1981 1946 27461 1983 1949 27462 1859 1947 27463 1982 1948 27464 1870 1847 27465 1859 1947 27466 1984 1950 27467 1869 1846 27468 1870 1847 27469 1985 1951 27470 1990 1957 27471 1747 1796 27472 1989 1955 27473 1991 1958 27474 1754 1956 27475 1990 1957 27476 1992 1959 27477 1751 1728 27478 1991 1958 27479 1755 1731 27480 1751 1728 27481 1993 1960 27482 2000 2031 27483 1997 1964 27484 1999 1966 27485 2005 1972 27486 1907 1882 27487 2004 1970 27488 2006 1973 27489 1906 1971 27490 2005 1972 27491 1913 1889 27492 1906 1971 27493 2007 1974 27494 1912 1888 27495 1913 1889 27496 2008 1975 27497 2012 2037 27498 2009 1976 27499 2011 1978 27500 2016 2021 27501 2013 1979 27502 2015 1981 27503 2018 2020 27504 2017 1982 27505 2013 1979 27506 2020 1985 27507 1883 1859 27508 2019 1983 27509 2021 1986 27510 1882 1984 27511 2020 1985 27512 1890 1866 27513 1882 1984 27514 2022 1987 27515 1889 1865 27516 1890 1866 27517 2023 1988 27518 1962 1931 27519 2025 1991 27520 1967 1993 27521 2025 1991 27522 1962 1931 27523 2027 1995 27524 1817 1789 27525 2026 1992 27526 1818 1790 27527 1819 1791 27528 1821 1793 27529 1971 1990 27530 1975 1940 27531 1972 1938 27532 1822 1794 27533 1818 1790 27534 2025 1991 27535 1845 1823 27536 1946 1917 27537 2030 1998 27538 1950 1920 27539 2030 1998 27540 1946 1917 27541 2032 2001 27542 1810 1783 27543 2031 1999 27544 1811 1784 27545 1814 1786 27546 1956 1927 27547 1812 1787 27548 1959 1928 27549 1956 1927 27550 1815 2002 27551 1811 1784 27552 2030 1998 27553 1839 1817 27554 1928 1902 27555 1924 1899 27556 2035 2005 27557 2034 2004 27558 1924 1899 27559 2036 2007 27560 1808 1782 27561 1918 1896 27562 1806 1795 27563 1807 1781 27564 1921 1897 27565 1808 1782 27566 1803 1778 27567 2034 2004 27568 1804 1779 27569 2035 2005 27570 2034 2004 27571 1829 2009 27572 1944 1916 27573 1940 1913 27574 2040 2012 27575 2041 2015 27576 2039 2011 27577 1943 2013 27578 1800 1774 27579 1934 1910 27580 1799 1775 27581 1802 1777 27582 1937 1911 27583 1800 1774 27584 1832 1809 27585 1796 1772 27586 2041 2015 27587 2040 2012 27588 2039 2011 27589 1797 2016 27590 2013 1979 27591 2044 2018 27592 2018 2020 27593 2046 2024 27594 2044 2018 27595 2016 2021 27596 1966 1934 27597 2045 2019 27598 1963 1932 27599 1968 1935 27600 1973 1939 27601 2020 1985 27602 2022 1987 27603 2021 1986 27604 1974 1941 27605 1964 1933 27606 1963 1932 27607 2046 2024 27608 2051 2030 27609 2049 2025 27610 1988 1954 27611 2050 2026 27612 2049 2025 27613 1980 1945 27614 1957 1925 27615 1983 1949 27616 1952 1922 27617 1984 1950 27618 1983 1949 27619 1958 1929 27620 1948 1919 27621 1947 1918 27622 2051 2030 27623 1951 1921 27624 2053 2028 27625 1947 1918 27626 2056 2035 27627 2000 2031 27628 2055 2032 27629 2057 2034 27630 2055 2032 27631 1996 1963 27632 1919 1893 27633 1991 1958 27634 1917 1894 27635 1920 1895 27636 1992 1959 27637 1919 1893 27638 1926 1901 27639 1925 1900 27640 2057 2034 27641 2055 2032 27642 1925 1900 27643 2056 2035 27644 2060 2040 27645 2009 1976 27646 2061 2038 27647 2003 1969 27648 2009 1976 27649 2063 2041 27650 1935 1907 27651 2006 1973 27652 1930 1904 27653 2007 1974 27654 2006 1973 27655 1936 1909 27656 1941 1914 27657 2060 2040 27658 1942 1915 27659 2063 2041 27660 2060 2040 27661 1945 2043 27662 1647 1629 27663 1646 1628 27664 1783 1757 27665 1645 1627 27666 1644 1626 27667 2065 2044 27668 1651 1632 27669 1779 1753 27670 1644 1626 27671 1649 1631 27672 1780 1755 27673 1651 1632 27674 1648 1630 27675 2066 2045 27676 1649 1631 27677 1783 1757 27678 1782 1756 27679 1647 1629 27680 1758 1733 27681 1787 1763 27682 1759 1734 27683 1758 1733 27684 1762 1736 27685 1787 1763 27686 2070 2107 27687 2069 2048 27688 1775 1748 27689 1544 1537 27690 1535 1530 27691 1638 1618 27692 1543 1536 27693 1536 1531 27694 1544 1537 27695 1591 1574 27696 1632 1612 27697 1543 1536 27698 1590 1573 27699 1633 1613 27700 1591 1574 27701 1590 1573 27702 1656 1637 27703 1633 1613 27704 1656 1637 27705 1835 1813 27706 1655 1636 27707 1842 1820 27708 1837 1815 27709 1551 1542 27710 1551 1542 27711 1550 1541 27712 1842 1820 27713 1550 1541 27714 1671 1653 27715 1843 1821 27716 1671 1653 27717 1716 1693 27718 1717 1826 27719 1716 1693 27720 1820 1792 27721 1718 1694 27722 1820 1792 27723 2024 1989 27724 1817 1789 27725 1967 1993 27726 2026 1992 27727 1970 1937 27728 1970 1937 27729 1969 1936 27730 1967 1993 27731 1969 1936 27732 2047 2022 27733 1966 1934 27734 2018 2020 27735 2045 2019 27736 2019 1983 27737 2019 1983 27738 1884 1860 27739 2018 2020 27740 1884 1860 27741 1878 1853 27742 2071 2049 27743 1878 1853 27744 1694 1675 27745 2072 2050 27746 1694 1675 27747 1693 1674 27748 2073 2051 27749 1847 1824 27750 2075 2053 27751 1693 1674 27752 1881 1857 27753 2076 2054 27754 1847 1824 27755 1889 1865 27756 2077 2055 27757 1881 1857 27758 2077 2055 27759 1889 1865 27760 2016 2021 27761 2016 2021 27762 2023 1988 27763 2046 2024 27764 1977 2056 27765 1964 1933 27766 2048 2023 27767 1976 1942 27768 1965 1994 27769 1977 2056 27770 1976 1942 27771 2028 1996 27772 1965 1994 27773 2028 1996 27774 1823 2057 27775 2027 1995 27776 1823 2057 27777 1720 1697 27778 1845 1823 27779 1669 1651 27780 1844 1822 27781 1696 1696 27782 1669 1651 27783 1696 1696 27784 1685 1667 27785 1728 1706 27786 1722 1699 27787 1697 1677 27788 1813 1785 27789 1810 1783 27790 1728 1706 27791 2029 1997 27792 2031 1999 27793 1813 1785 27794 1954 1924 27795 1950 1920 27796 2029 1997 27797 1954 1924 27798 1953 1923 27799 1950 1920 27800 1953 1923 27801 2052 2027 27802 1951 1921 27803 1980 1945 27804 2053 2028 27805 1981 1946 27806 1981 1946 27807 1861 1840 27808 1980 1945 27809 1861 1840 27810 1849 1829 27811 1978 1943 27812 1849 1829 27813 1698 1828 27814 2078 2058 27815 2080 2061 27816 2079 2059 27817 1701 1680 27818 1841 1819 27819 2081 2060 27820 1701 1680 27821 1852 1832 27822 2082 2062 27823 1841 1819 27824 1869 1846 27825 1987 1953 27826 1852 1832 27827 1987 1953 27828 1869 1846 27829 1988 1954 27830 2054 2029 27831 2051 2030 27832 1985 1951 27833 2051 2030 27834 2054 2029 27835 1948 1919 27836 1948 1919 27837 1960 2063 27838 1949 2000 27839 2032 2001 27840 1949 2000 27841 2033 2003 27842 2033 2003 27843 1816 1788 27844 2032 2001 27845 1816 1788 27846 1724 1701 27847 1839 1817 27848 1666 1648 27849 1838 1816 27850 1703 1682 27851 1702 1681 27852 1667 1649 27853 1703 1682 27854 1735 1714 27855 1828 1801 27856 1702 1681 27857 1805 1780 27858 1829 2009 27859 1735 1714 27860 1805 1780 27861 2038 2010 27862 1829 2009 27863 1928 1902 27864 2035 2005 27865 1915 1891 27866 1929 1903 27867 1928 1902 27868 1914 1890 27869 1914 1890 27870 2059 2036 27871 1929 1903 27872 2000 2031 27873 2056 2035 27874 1989 1955 27875 1989 1955 27876 1750 1727 27877 2000 2031 27878 1750 1727 27879 1749 1726 27880 2083 2064 27881 1749 1726 27882 1824 1870 27883 2084 2065 27884 2086 2130 27885 2085 2066 27886 1704 1798 27887 2086 2130 27888 1704 1798 27889 2087 2067 27890 1756 1732 27891 2088 2068 27892 1707 1685 27893 1755 1731 27894 1995 1962 27895 1756 1732 27896 1995 1962 27897 1755 1731 27898 1996 1963 27899 2058 2033 27900 2057 2034 27901 1993 1960 27902 2057 2034 27903 2058 2033 27904 1926 1901 27905 1926 1901 27906 1922 2069 27907 1927 2006 27908 2037 2008 27909 2036 2007 27910 1923 1898 27911 2036 2007 27912 2037 2008 27913 1804 1779 27914 1730 1709 27915 1804 1779 27916 1731 1710 27917 1664 1646 27918 1730 1709 27919 1708 2071 27920 1665 1647 27921 1664 1646 27922 1709 1686 27923 1742 1721 27924 1736 1715 27925 1709 1686 27926 1798 1773 27927 1797 2016 27928 1742 1721 27929 2043 2017 27930 2040 2012 27931 1798 1773 27932 1932 1906 27933 1944 1916 27934 2043 2017 27935 1931 1905 27936 1945 2043 27937 1932 1906 27938 2062 2039 27939 2063 2041 27940 1931 1905 27941 2004 1970 27942 2003 1969 27943 2062 2039 27944 2004 1970 27945 1908 1883 27946 2003 1969 27947 1908 1883 27948 1902 1877 27949 2001 1967 27950 1902 1877 27951 1710 1876 27952 2089 2072 27953 2091 2075 27954 2090 2073 27955 1713 1689 27956 1834 1811 27957 2092 2074 27958 1713 1689 27959 1905 1880 27960 2093 2076 27961 1834 1811 27962 1912 1888 27963 2094 2077 27964 1905 1880 27965 2094 2077 27966 1912 1888 27967 2012 2037 27968 2064 2042 27969 2061 2038 27970 2008 1975 27971 1942 1915 27972 2061 2038 27973 1938 2078 27974 1943 2013 27975 1942 1915 27976 1939 1912 27977 1939 1912 27978 2042 2014 27979 1943 2013 27980 1832 1809 27981 2041 2015 27982 1801 1776 27983 1831 1808 27984 1832 1809 27985 1738 1717 27986 1684 1665 27987 1831 1808 27988 1680 1662 27989 1573 1559 27990 1684 1665 27991 1679 1806 27992 1558 1548 27993 1574 1560 27994 1679 1806 27995 1557 1547 27996 1830 1804 27997 1558 1548 27998 1653 1633 27999 1830 1804 28000 1610 2079 28001 1609 1592 28002 1615 1596 28003 1610 2079 28004 1645 1627 28005 1646 1628 28006 1609 1592 28007 2065 2044 28008 1784 1758 28009 1645 1627 28010 2065 2044 28011 1785 1760 28012 1784 1758 28013 1772 1746 28014 1774 1747 28015 1785 1760 28016 1772 1746 28017 1771 1745 28018 1774 1747 28019 1771 1745 28020 1622 1602 28021 2067 2046 28022 1622 1602 28023 1621 1601 28024 2095 2080 28025 1621 1601 28026 1663 1771 28027 2096 2081 28028 1662 1644 28029 2098 2083 28030 1663 1771 28031 1788 1764 28032 2099 2084 28033 1662 1644 28034 1764 1739 28035 2100 2085 28036 1788 1764 28037 1763 1738 28038 1777 1750 28039 1764 1739 28040 1778 1751 28041 1777 1750 28042 1781 1754 28043 1782 1756 28044 1778 1751 28045 2066 2045 28046 1659 1641 28047 1782 1756 28048 1648 1630 28049 1658 1640 28050 1659 1641 28051 1598 1581 28052 1623 1603 28053 1658 1640 28054 1597 1586 28055 1597 1586 28056 1602 1585 28057 1623 1603 28058 1612 1594 28059 1624 1604 28060 1614 1595 28061 1571 1558 28062 1612 1594 28063 1613 1622 28064 1613 1622 28065 1641 1621 28066 1571 1558 28067 2102 7571 28068 2101 2086 28069 1637 1617 28070 2104 2093 28071 2103 2087 28072 1634 1614 28073 2105 2088 28074 1639 1619 28075 2103 2087 28076 2106 2094 28077 1640 1620 28078 2105 2088 28079 2107 2090 28080 1642 1623 28081 2108 2089 28082 2109 2091 28083 1643 1624 28084 2107 2090 28085 2110 2092 28086 1636 1616 28087 2109 2091 28088 2102 7571 28089 1637 1617 28090 2110 2092 28091 2101 2086 28092 2104 2093 28093 1638 1618 28094 2108 2089 28095 1641 1621 28096 2106 2094 28097 2002 1968 28098 2010 1977 28099 2003 1969 28100 2001 1967 28101 2115 2099 28102 2002 1968 28103 2001 1967 28104 2089 2072 28105 2115 2099 28106 2010 1977 28107 2117 2101 28108 2011 1978 28109 2002 1968 28110 2116 2100 28111 2010 1977 28112 2011 1978 28113 2118 2102 28114 2094 2077 28115 2094 2077 28116 2119 2103 28117 2093 2076 28118 2113 2097 28119 1898 1873 28120 2092 2074 28121 2116 2100 28122 2115 2099 28123 2111 2095 28124 2115 2099 28125 2114 2098 28126 1909 1884 28127 2118 2102 28128 2117 2101 28129 1910 1886 28130 2116 2100 28131 2111 2095 28132 2117 2101 28133 2118 2102 28134 1910 1886 28135 2119 2103 28136 2119 2103 28137 2112 2096 28138 2113 2097 28139 1900 1875 28140 1899 1874 28141 2090 2073 28142 1897 1872 28143 1896 1871 28144 2120 2104 28145 1900 1875 28146 2122 2106 28147 1896 1871 28148 1774 1747 28149 2068 2047 28150 1775 1748 28151 1765 1740 28152 2123 2108 28153 1766 1741 28154 2069 2048 28155 2070 2107 28156 2126 2111 28157 2067 2046 28158 2127 2112 28159 2068 2047 28160 2067 2046 28161 2095 2080 28162 2127 2112 28163 2068 2047 28164 2128 2113 28165 2070 2107 28166 2069 2048 28167 2126 2111 28168 2100 2085 28169 2100 2085 28170 2131 2116 28171 2099 2084 28172 2126 2111 28173 2125 2110 28174 1766 1741 28175 2128 2113 28176 2127 2112 28177 1770 1744 28178 2127 2112 28179 2129 2114 28180 1768 2117 28181 2128 2113 28182 1770 1744 28183 2125 2110 28184 2131 2116 28185 2126 2111 28186 2124 2109 28187 2131 2116 28188 2124 2109 28189 2130 2115 28190 2129 2114 28191 2096 2081 28192 1769 1743 28193 1790 1766 28194 1765 1740 28195 1794 1769 28196 2123 2108 28197 1765 1740 28198 1793 2118 28199 2130 2115 28200 2123 2108 28201 2098 2083 28202 1994 1961 28203 2132 2119 28204 1995 1962 28205 1995 1962 28206 2133 2120 28207 2088 2068 28208 1998 1965 28209 1997 1964 28210 2136 2123 28211 2083 2064 28212 2084 2065 28213 2138 2125 28214 2132 2119 28215 1743 2126 28216 2133 2120 28217 2133 2120 28218 1746 1724 28219 2134 2121 28220 2136 2123 28221 2135 2122 28222 1827 1800 28223 2138 2125 28224 2137 2124 28225 2139 2128 28226 2087 2067 28227 2134 2121 28228 1892 1868 28229 2085 2066 28230 1894 1869 28231 2137 2124 28232 1892 1868 28233 1891 1867 28234 2140 2129 28235 1894 1869 28236 2142 2132 28237 1891 1867 28238 1826 1799 28239 2139 2128 28240 1744 1722 28241 2135 2122 28242 2138 2125 28243 1826 1799 28244 1997 1964 28245 2083 2064 28246 2135 2122 28247 2132 2119 28248 2136 2123 28249 1743 2126 28250 1994 1961 28251 1998 1965 28252 2132 2119 28253 1996 1963 28254 1999 1966 28255 1994 1961 28256 1979 1944 28257 1978 1943 28258 2146 2136 28259 1978 1943 28260 2078 2058 28261 2145 2135 28262 1987 1953 28263 1986 1952 28264 2148 2138 28265 1987 1953 28266 2148 2138 28267 2082 2062 28268 2145 2135 28269 1862 1841 28270 2146 2136 28271 2145 2135 28272 2144 2134 28273 1862 1841 28274 2147 2137 28275 1868 1845 28276 2148 2138 28277 2148 2138 28278 1867 1844 28279 2143 2133 28280 2144 2134 28281 2079 2059 28282 1863 1842 28283 1863 1842 28284 1857 2139 28285 1864 1843 28286 1856 1835 28287 1855 1834 28288 1864 1843 28289 2143 2133 28290 1866 2141 28291 2081 2060 28292 1980 1945 28293 1979 1944 28294 2050 2026 28295 1979 1944 28296 2146 2136 28297 2149 2142 28298 2146 2136 28299 1865 2140 28300 2150 2143 28301 2150 2143 28302 2151 2144 28303 2147 2137 28304 1986 1952 28305 2149 2142 28306 2147 2137 28307 1988 1954 28308 2050 2026 28309 1986 1952 28310 2017 1982 28311 2154 2147 28312 2014 1980 28313 2071 2049 28314 2072 2050 28315 2156 2149 28316 2014 1980 28317 2155 2148 28318 2015 1981 28319 2077 2055 28320 2158 2151 28321 2076 2054 28322 2154 2147 28323 1885 1861 28324 2155 2148 28325 2156 2149 28326 2153 2146 28327 2160 2154 28328 2155 2148 28329 1887 1863 28330 2157 2150 28331 2158 2151 28332 2161 2155 28333 2152 2145 28334 2153 2146 28335 2073 2051 28336 2159 2153 28337 2159 2153 28338 1875 2152 28339 1886 1862 28340 1874 1850 28341 1873 1849 28342 1886 1862 28343 2152 2145 28344 2162 2156 28345 2075 2053 28346 2015 1981 28347 2157 2150 28348 2077 2055 28349 1888 1864 28350 2161 2155 28351 2157 2150 28352 1886 1862 28353 2162 2156 28354 1888 1864 28355 1885 1861 28356 2160 2154 28357 1886 1862 28358 2154 2147 28359 2156 2149 28360 1885 1861 28361 2017 1982 28362 2071 2049 28363 2154 2147 28364 2166 7572 28365 2163 7572 28366 2165 7572 28367 2165 7573 28368 2164 7573 28369 2168 7573 28370 2168 7574 28371 2167 7574 28372 2170 7574 28373 2171 7575 28374 2172 7575 28375 2174 7575 28376 2175 7576 28377 2171 7576 28378 2176 7576 28379 2177 7577 28380 2175 7577 28381 2178 7577 28382 2180 7578 28383 2179 7578 28384 2178 7578 28385 2181 7579 28386 2179 7579 28387 2182 7579 28388 2183 7580 28389 2181 7580 28390 2184 7580 28391 2185 7581 28392 2183 7581 28393 2186 7581 28394 2187 7582 28395 2185 7582 28396 2188 7582 28397 2189 7583 28398 2187 7583 28399 2190 7583 28400 2192 7584 28401 2191 7584 28402 2190 7584 28403 2170 7585 28404 2169 7585 28405 2192 7585 28406 2194 7586 28407 2193 7586 28408 2166 7586 28409 2196 7587 28410 2195 7587 28411 2194 7587 28412 2198 7588 28413 2197 7588 28414 2196 7588 28415 2202 7589 28416 2199 7589 28417 2201 7589 28418 2203 7590 28419 2199 7590 28420 2204 7590 28421 2205 7591 28422 2203 7591 28423 2206 7591 28424 2207 7592 28425 2205 7592 28426 2208 7592 28427 2209 7593 28428 2207 7593 28429 2210 7593 28430 2211 7594 28431 2209 7594 28432 2212 7594 28433 2213 7595 28434 2211 7595 28435 2214 7595 28436 2215 7596 28437 2213 7596 28438 2216 7596 28439 2217 7597 28440 2215 7597 28441 2218 7597 28442 2220 7598 28443 2219 7598 28444 2218 7598 28445 2222 7599 28446 2221 7599 28447 2220 7599 28448 2224 7600 28449 2223 7600 28450 2222 7600 28451 2226 7601 28452 2225 7601 28453 2224 7601 28454 2228 7602 28455 2227 7602 28456 2226 7602 28457 2230 7603 28458 2229 7603 28459 2228 7603 28460 2232 7604 28461 2231 7604 28462 2230 7604 28463 2234 7605 28464 2233 7605 28465 2232 7605 28466 2235 7606 28467 2236 7606 28468 2238 7606 28469 2236 7607 28470 2239 7607 28471 2237 7607 28472 2239 7608 28473 2241 7608 28474 2240 7608 28475 2242 7609 28476 2241 7609 28477 2244 7609 28478 2244 7610 28479 2243 7610 28480 2246 7610 28481 2246 7611 28482 2245 7611 28483 2248 7611 28484 2248 7612 28485 2247 7612 28486 2250 7612 28487 2249 7613 28488 2251 7613 28489 2250 7613 28490 2251 7614 28491 2253 7614 28492 2252 7614 28493 2253 7615 28494 2255 7615 28495 2254 7615 28496 2256 7616 28497 2255 7616 28498 2258 7616 28499 2258 7617 28500 2257 7617 28501 2260 7617 28502 2260 7618 28503 2259 7618 28504 2262 7618 28505 2262 7619 28506 2261 7619 28507 2264 7619 28508 2264 7620 28509 2263 7620 28510 2266 7620 28511 2266 7621 28512 2265 7621 28513 2268 7621 28514 2268 7622 28515 2267 7622 28516 2270 7622 28517 2204 7623 28518 2202 7623 28519 2272 7623 28520 2202 7624 28521 2201 7624 28522 2271 7624 28523 2206 7625 28524 2204 7625 28525 2274 7625 28526 2275 7626 28527 2208 7626 28528 2274 7626 28529 2210 7627 28530 2208 7627 28531 2276 7627 28532 2212 7628 28533 2210 7628 28534 2277 7628 28535 2214 7629 28536 2212 7629 28537 2278 7629 28538 2216 7630 28539 2214 7630 28540 2279 7630 28541 2280 7631 28542 2218 7631 28543 2279 7631 28544 2220 7632 28545 2218 7632 28546 2281 7632 28547 2282 7633 28548 2222 7633 28549 2281 7633 28550 2283 7634 28551 2224 7634 28552 2282 7634 28553 2284 7635 28554 2226 7635 28555 2283 7635 28556 2285 7636 28557 2228 7636 28558 2284 7636 28559 2286 7637 28560 2230 7637 28561 2285 7637 28562 2287 7638 28563 2232 7638 28564 2286 7638 28565 2288 7639 28566 2234 7639 28567 2287 7639 28568 2174 7640 28569 2173 7640 28570 2237 7640 28571 2176 7641 28572 2174 7641 28573 2240 7641 28574 2178 7642 28575 2176 7642 28576 2242 7642 28577 2244 7643 28578 2180 7643 28579 2242 7643 28580 2246 7644 28581 2182 7644 28582 2244 7644 28583 2184 7645 28584 2182 7645 28585 2248 7645 28586 2186 7646 28587 2184 7646 28588 2250 7646 28589 2188 7647 28590 2186 7647 28591 2252 7647 28592 2190 7648 28593 2188 7648 28594 2254 7648 28595 2256 7649 28596 2192 7649 28597 2254 7649 28598 2258 7650 28599 2170 7650 28600 2256 7650 28601 2260 7651 28602 2168 7651 28603 2258 7651 28604 2262 7652 28605 2165 7652 28606 2260 7652 28607 2264 7653 28608 2166 7653 28609 2262 7653 28610 2266 7654 28611 2194 7654 28612 2264 7654 28613 2268 7655 28614 2196 7655 28615 2266 7655 28616 2270 7656 28617 2198 7656 28618 2268 7656 28619 2290 7657 28620 2236 7657 28621 2289 7657 28622 2291 7658 28623 2239 7658 28624 2290 7658 28625 2292 7659 28626 2241 7659 28627 2291 7659 28628 2293 7660 28629 2294 7660 28630 2261 7660 28631 2265 7661 28632 2263 7661 28633 2295 7661 28634 2267 7662 28635 2265 7662 28636 2296 7662 28637 2297 7663 28638 2269 7663 28639 2296 7663 28640 2298 7664 28641 2243 7664 28642 2292 7664 28643 2299 7665 28644 2245 7665 28645 2298 7665 28646 2300 7666 28647 2293 7666 28648 2259 7666 28649 2301 7667 28650 2247 7667 28651 2299 7667 28652 2302 7668 28653 2249 7668 28654 2301 7668 28655 2303 7669 28656 2251 7669 28657 2302 7669 28658 2304 7670 28659 2253 7670 28660 2303 7670 28661 2255 7671 28662 2253 7671 28663 2305 7671 28664 2257 7672 28665 2255 7672 28666 2306 7672 28667 2259 7673 28668 2257 7673 28669 2300 7673 28670 2307 7674 28671 2308 7674 28672 2199 7674 28673 2309 7675 28674 2307 7675 28675 2203 7675 28676 2310 7676 28677 2309 7676 28678 2205 7676 28679 2311 7677 28680 2310 7677 28681 2207 7677 28682 2312 7678 28683 2311 7678 28684 2209 7678 28685 2313 7679 28686 2312 7679 28687 2211 7679 28688 2213 7680 28689 2314 7680 28690 2211 7680 28691 2215 7681 28692 2315 7681 28693 2213 7681 28694 2316 7682 28695 2315 7682 28696 2217 7682 28697 2317 7683 28698 2316 7683 28699 2219 7683 28700 2318 7684 28701 2317 7684 28702 2221 7684 28703 2319 7685 28704 2318 7685 28705 2223 7685 28706 2320 7686 28707 2319 7686 28708 2225 7686 28709 2321 7687 28710 2320 7687 28711 2227 7687 28712 2322 7688 28713 2321 7688 28714 2229 7688 28715 2323 7689 28716 2322 7689 28717 2231 7689 28718 2324 7690 28719 2323 7690 28720 2233 7690 28721 2325 7691 28722 2326 7691 28723 2172 7691 28724 2327 7692 28725 2328 7692 28726 2325 7692 28727 2329 7693 28728 2330 7693 28729 2327 7693 28730 2331 7694 28731 2332 7694 28732 2329 7694 28733 2333 7695 28734 2334 7695 28735 2331 7695 28736 2335 7696 28737 2336 7696 28738 2333 7696 28739 2337 7697 28740 2338 7697 28741 2335 7697 28742 2339 7698 28743 2340 7698 28744 2337 7698 28745 2341 7699 28746 2342 7699 28747 2339 7699 28748 2341 7700 28749 2343 7700 28750 2342 7700 28751 2343 7701 28752 2345 7701 28753 2344 7701 28754 2345 7702 28755 2347 7702 28756 2346 7702 28757 2347 7703 28758 2349 7703 28759 2348 7703 28760 2349 7704 28761 2351 7704 28762 2350 7704 28763 2351 7705 28764 2353 7705 28765 2352 7705 28766 2355 7706 28767 2356 7706 28768 2353 7706 28769 2197 7707 28770 2198 7707 28771 2355 7707 28772 2357 7708 28773 2358 7708 28774 2200 7708 28775 2359 7709 28776 2360 7709 28777 2357 7709 28778 2361 7710 28779 2362 7710 28780 2359 7710 28781 2363 7711 28782 2364 7711 28783 2361 7711 28784 2365 7712 28785 2366 7712 28786 2363 7712 28787 2367 7713 28788 2368 7713 28789 2365 7713 28790 2369 7714 28791 2370 7714 28792 2367 7714 28793 2371 7715 28794 2372 7715 28795 2369 7715 28796 2373 7716 28797 2374 7716 28798 2371 7716 28799 2375 7717 28800 2376 7717 28801 2373 7717 28802 2375 7718 28803 2377 7718 28804 2376 7718 28805 2377 7719 28806 2379 7719 28807 2378 7719 28808 2379 7720 28809 2381 7720 28810 2380 7720 28811 2381 7721 28812 2383 7721 28813 2382 7721 28814 2383 7722 28815 2385 7722 28816 2384 7722 28817 2385 7723 28818 2387 7723 28819 2386 7723 28820 2387 7724 28821 2233 7724 28822 2388 7724 28823 2235 7725 28824 2238 7725 28825 2390 7725 28826 2390 7726 28827 2389 7726 28828 2392 7726 28829 2392 7727 28830 2391 7727 28831 2394 7727 28832 2396 7728 28833 2394 7728 28834 2395 7728 28835 2398 7729 28836 2396 7729 28837 2397 7729 28838 2400 7730 28839 2398 7730 28840 2399 7730 28841 2402 7731 28842 2400 7731 28843 2401 7731 28844 2404 7732 28845 2402 7732 28846 2403 7732 28847 2406 7733 28848 2404 7733 28849 2405 7733 28850 2406 7734 28851 2405 7734 28852 2408 7734 28853 2410 7735 28854 2408 7735 28855 2409 7735 28856 2410 7736 28857 2409 7736 28858 2412 7736 28859 2414 7737 28860 2412 7737 28861 2413 7737 28862 2414 7738 28863 2413 7738 28864 2416 7738 28865 2416 7739 28866 2415 7739 28867 2418 7739 28868 2418 7740 28869 2417 7740 28870 2420 7740 28871 2420 7741 28872 2419 7741 28873 2269 7741 28874 2360 7742 28875 2421 7742 28876 2358 7742 28877 2422 7743 28878 2273 7743 28879 2358 7743 28880 2362 7744 28881 2423 7744 28882 2360 7744 28883 2364 7745 28884 2424 7745 28885 2362 7745 28886 2366 7746 28887 2425 7746 28888 2364 7746 28889 2368 7747 28890 2426 7747 28891 2366 7747 28892 2370 7748 28893 2427 7748 28894 2368 7748 28895 2372 7749 28896 2428 7749 28897 2370 7749 28898 2374 7750 28899 2429 7750 28900 2372 7750 28901 2376 7751 28902 2430 7751 28903 2374 7751 28904 2378 7752 28905 2431 7752 28906 2376 7752 28907 2378 7753 28908 2380 7753 28909 2431 7753 28910 2380 7754 28911 2382 7754 28912 2432 7754 28913 2382 7755 28914 2384 7755 28915 2433 7755 28916 2384 7756 28917 2386 7756 28918 2434 7756 28919 2386 7757 28920 2388 7757 28921 2435 7757 28922 2288 7758 28923 2436 7758 28924 2234 7758 28925 2326 7759 28926 2389 7759 28927 2173 7759 28928 2328 7760 28929 2391 7760 28930 2326 7760 28931 2330 7761 28932 2393 7761 28933 2328 7761 28934 2330 7762 28935 2332 7762 28936 2393 7762 28937 2332 7763 28938 2334 7763 28939 2395 7763 28940 2336 7764 28941 2399 7764 28942 2334 7764 28943 2338 7765 28944 2401 7765 28945 2336 7765 28946 2340 7766 28947 2403 7766 28948 2338 7766 28949 2342 7767 28950 2405 7767 28951 2340 7767 28952 2342 7768 28953 2344 7768 28954 2405 7768 28955 2344 7769 28956 2346 7769 28957 2407 7769 28958 2346 7770 28959 2348 7770 28960 2409 7770 28961 2348 7771 28962 2350 7771 28963 2411 7771 28964 2350 7772 28965 2352 7772 28966 2413 7772 28967 2352 7773 28968 2354 7773 28969 2415 7773 28970 2356 7774 28971 2419 7774 28972 2354 7774 28973 2198 7775 28974 2270 7775 28975 2356 7775 28976 2235 7776 28977 2390 7776 28978 2289 7776 28979 2390 7777 28980 2392 7777 28981 2437 7777 28982 2392 7778 28983 2394 7778 28984 2438 7778 28985 2440 7779 28986 2414 7779 28987 2441 7779 28988 2418 7780 28989 2442 7780 28990 2416 7780 28991 2420 7781 28992 2443 7781 28993 2418 7781 28994 2269 7782 28995 2297 7782 28996 2420 7782 28997 2394 7783 28998 2396 7783 28999 2439 7783 29000 2396 7784 29001 2398 7784 29002 2444 7784 29003 2446 7785 29004 2412 7785 29005 2440 7785 29006 2398 7786 29007 2400 7786 29008 2445 7786 29009 2400 7787 29010 2402 7787 29011 2447 7787 29012 2402 7788 29013 2404 7788 29014 2448 7788 29015 2404 7789 29016 2406 7789 29017 2449 7789 29018 2408 7790 29019 2451 7790 29020 2406 7790 29021 2410 7791 29022 2452 7791 29023 2408 7791 29024 2452 7792 29025 2410 7792 29026 2446 7792 29027 2308 7793 29028 2453 7793 29029 2200 7793 29030 2453 7794 29031 2454 7794 29032 2357 7794 29033 2455 7795 29034 2361 7795 29035 2454 7795 29036 2456 7796 29037 2363 7796 29038 2455 7796 29039 2457 7797 29040 2365 7797 29041 2456 7797 29042 2458 7798 29043 2367 7798 29044 2457 7798 29045 2458 7799 29046 2459 7799 29047 2367 7799 29048 2460 7800 29049 2371 7800 29050 2459 7800 29051 2461 7801 29052 2373 7801 29053 2460 7801 29054 2461 7802 29055 2462 7802 29056 2373 7802 29057 2463 7803 29058 2377 7803 29059 2462 7803 29060 2464 7804 29061 2379 7804 29062 2463 7804 29063 2465 7805 29064 2381 7805 29065 2464 7805 29066 2466 7806 29067 2383 7806 29068 2465 7806 29069 2466 7807 29070 2467 7807 29071 2383 7807 29072 2467 7808 29073 2468 7808 29074 2385 7808 29075 2468 7809 29076 2324 7809 29077 2387 7809 29078 2422 7810 29079 2325 7810 29080 2273 7810 29081 2421 7811 29082 2327 7811 29083 2422 7811 29084 2423 7812 29085 2329 7812 29086 2421 7812 29087 2424 7813 29088 2331 7813 29089 2423 7813 29090 2425 7814 29091 2333 7814 29092 2424 7814 29093 2426 7815 29094 2335 7815 29095 2425 7815 29096 2427 7816 29097 2337 7816 29098 2426 7816 29099 2428 7817 29100 2339 7817 29101 2427 7817 29102 2429 7818 29103 2341 7818 29104 2428 7818 29105 2429 7819 29106 2430 7819 29107 2341 7819 29108 2430 7820 29109 2431 7820 29110 2343 7820 29111 2431 7821 29112 2432 7821 29113 2345 7821 29114 2432 7822 29115 2433 7822 29116 2347 7822 29117 2433 7823 29118 2434 7823 29119 2349 7823 29120 2434 7824 29121 2435 7824 29122 2351 7824 29123 2435 7825 29124 2436 7825 29125 2353 7825 29126 2288 7826 29127 2197 7826 29128 2436 7826 29129 2197 7827 29130 2288 7827 29131 2195 7827 29132 2195 7828 29133 2287 7828 29134 2193 7828 29135 2193 7829 29136 2286 7829 29137 2163 7829 29138 2163 7830 29139 2285 7830 29140 2164 7830 29141 2164 7831 29142 2284 7831 29143 2167 7831 29144 2167 7832 29145 2283 7832 29146 2169 7832 29147 2169 7833 29148 2282 7833 29149 2191 7833 29150 2191 7834 29151 2281 7834 29152 2189 7834 29153 2280 7835 29154 2279 7835 29155 2189 7835 29156 2279 7836 29157 2278 7836 29158 2187 7836 29159 2278 7837 29160 2277 7837 29161 2185 7837 29162 2277 7838 29163 2276 7838 29164 2183 7838 29165 2276 7839 29166 2275 7839 29167 2181 7839 29168 2179 7840 29169 2275 7840 29170 2177 7840 29171 2274 7841 29172 2272 7841 29173 2177 7841 29174 2272 7842 29175 2271 7842 29176 2175 7842 29177 2271 7843 29178 2273 7843 29179 2171 7843 29180 2469 7844 29181 2470 7844 29182 2472 7844 29183 2472 7845 29184 2471 7845 29185 2474 7845 29186 2475 7846 29187 2476 7846 29188 2478 7846 29189 2478 7847 29190 2477 7847 29191 2480 7847 29192 2482 7848 29193 2480 7848 29194 2481 7848 29195 2484 7849 29196 2482 7849 29197 2483 7849 29198 2488 7850 29199 2485 7850 29200 2487 7850 29201 2490 7851 29202 2488 7851 29203 2489 7851 29204 2494 7852 29205 2491 7852 29206 2493 7852 29207 2485 7853 29208 2495 7853 29209 2486 7853 29210 2493 7854 29211 2492 7854 29212 2498 7854 29213 2495 7855 29214 2499 7855 29215 2496 7855 29216 2498 7856 29217 2497 7856 29218 2475 7856 29219 2499 7857 29220 2484 7857 29221 2500 7857 29222 2474 7858 29223 2473 7858 29224 2502 7858 29225 2504 7859 29226 2490 7859 29227 2503 7859 29228 2501 7860 29229 2491 7860 29230 2502 7860 29231 2470 7861 29232 2308 7861 29233 2471 7861 29234 2471 7862 29235 2307 7862 29236 2473 7862 29237 2473 7863 29238 2309 7863 29239 2501 7863 29240 2491 7864 29241 2501 7864 29242 2311 7864 29243 2491 7865 29244 2311 7865 29245 2492 7865 29246 2492 7866 29247 2312 7866 29248 2497 7866 29249 2497 7867 29250 2313 7867 29251 2476 7867 29252 2476 7868 29253 2314 7868 29254 2477 7868 29255 2477 7869 29256 2315 7869 29257 2479 7869 29258 2481 7870 29259 2479 7870 29260 2317 7870 29261 2483 7871 29262 2481 7871 29263 2318 7871 29264 2500 7872 29265 2483 7872 29266 2319 7872 29267 2496 7873 29268 2500 7873 29269 2320 7873 29270 2486 7874 29271 2496 7874 29272 2321 7874 29273 2487 7875 29274 2486 7875 29275 2322 7875 29276 2489 7876 29277 2487 7876 29278 2323 7876 29279 2503 7877 29280 2489 7877 29281 2324 7877 29282 2469 7878 29283 2505 7878 29284 2470 7878 29285 2505 7879 29286 2507 7879 29287 2506 7879 29288 2509 7880 29289 2510 7880 29290 2512 7880 29291 2510 7881 29292 2513 7881 29293 2511 7881 29294 2514 7882 29295 2513 7882 29296 2516 7882 29297 2516 7883 29298 2515 7883 29299 2518 7883 29300 2522 7884 29301 2519 7884 29302 2521 7884 29303 2520 7885 29304 2523 7885 29305 2521 7885 29306 2528 7886 29307 2525 7886 29308 2527 7886 29309 2519 7887 29310 2522 7887 29311 2530 7887 29312 2532 7888 29313 2528 7888 29314 2531 7888 29315 2530 7889 29316 2529 7889 29317 2534 7889 29318 2512 7890 29319 2532 7890 29320 2509 7890 29321 2518 7891 29322 2517 7891 29323 2533 7891 29324 2507 7892 29325 2535 7892 29326 2508 7892 29327 2523 7893 29328 2504 7893 29329 2524 7893 29330 2525 7894 29331 2536 7894 29332 2526 7894 29333 2308 7895 29334 2470 7895 29335 2453 7895 29336 2506 7896 29337 2508 7896 29338 2453 7896 29339 2508 7897 29340 2536 7897 29341 2454 7897 29342 2455 7898 29343 2536 7898 29344 2456 7898 29345 2525 7899 29346 2528 7899 29347 2456 7899 29348 2528 7900 29349 2532 7900 29350 2457 7900 29351 2532 7901 29352 2512 7901 29353 2458 7901 29354 2512 7902 29355 2511 7902 29356 2459 7902 29357 2511 7903 29358 2514 7903 29359 2460 7903 29360 2514 7904 29361 2516 7904 29362 2461 7904 29363 2462 7905 29364 2516 7905 29365 2463 7905 29366 2463 7906 29367 2518 7906 29368 2464 7906 29369 2464 7907 29370 2533 7907 29371 2465 7907 29372 2465 7908 29373 2529 7908 29374 2466 7908 29375 2466 7909 29376 2522 7909 29377 2467 7909 29378 2467 7910 29379 2521 7910 29380 2468 7910 29381 2524 7911 29382 2503 7911 29383 2468 7911 29384 2290 7912 29385 2289 7912 29386 2472 7912 29387 2474 7913 29388 2291 7913 29389 2472 7913 29390 2502 7914 29391 2292 7914 29392 2474 7914 29393 2502 7915 29394 2494 7915 29395 2292 7915 29396 2493 7916 29397 2299 7916 29398 2494 7916 29399 2498 7917 29400 2301 7917 29401 2493 7917 29402 2475 7918 29403 2302 7918 29404 2498 7918 29405 2478 7919 29406 2303 7919 29407 2475 7919 29408 2480 7920 29409 2304 7920 29410 2478 7920 29411 2305 7921 29412 2304 7921 29413 2482 7921 29414 2306 7922 29415 2305 7922 29416 2484 7922 29417 2300 7923 29418 2306 7923 29419 2499 7923 29420 2293 7924 29421 2300 7924 29422 2495 7924 29423 2294 7925 29424 2293 7925 29425 2485 7925 29426 2295 7926 29427 2294 7926 29428 2488 7926 29429 2296 7927 29430 2295 7927 29431 2490 7927 29432 2297 7928 29433 2296 7928 29434 2504 7928 29435 2289 7929 29436 2437 7929 29437 2469 7929 29438 2437 7930 29439 2438 7930 29440 2505 7930 29441 2438 7931 29442 2439 7931 29443 2507 7931 29444 2526 7932 29445 2535 7932 29446 2444 7932 29447 2527 7933 29448 2526 7933 29449 2445 7933 29450 2531 7934 29451 2527 7934 29452 2447 7934 29453 2509 7935 29454 2531 7935 29455 2448 7935 29456 2448 7936 29457 2449 7936 29458 2509 7936 29459 2449 7937 29460 2450 7937 29461 2510 7937 29462 2451 7938 29463 2515 7938 29464 2450 7938 29465 2452 7939 29466 2517 7939 29467 2451 7939 29468 2446 7940 29469 2534 7940 29470 2452 7940 29471 2440 7941 29472 2530 7941 29473 2446 7941 29474 2441 7942 29475 2519 7942 29476 2440 7942 29477 2442 7943 29478 2520 7943 29479 2441 7943 29480 2443 7944 29481 2523 7944 29482 2442 7944 29483 2443 7945 29484 2297 7945 29485 2523 7945 29486 2540 2535 29487 2537 2531 29488 2539 2533 29489 2542 2537 29490 2541 2534 29491 2540 2535 29492 2544 2539 29493 2543 2536 29494 2542 2537 29495 2546 2541 29496 2545 2538 29497 2544 2539 29498 2548 2543 29499 2547 2540 29500 2546 2541 29501 2550 2545 29502 2549 2542 29503 2548 2543 29504 2552 2588 29505 2551 2544 29506 2550 2545 29507 2553 2619 29508 2554 2546 29509 2556 2548 29510 2560 2553 29511 2557 2549 29512 2559 2551 29513 2562 3403 29514 2561 2552 29515 2557 2549 29516 2563 2555 29517 2557 2549 29518 2564 2554 29519 2562 3403 29520 2557 2549 29521 2565 2556 29522 2567 2560 29523 2566 2557 29524 2564 2554 29525 2565 2556 29526 2563 2555 29527 2568 2558 29528 2570 2563 29529 2569 2559 29530 2567 2560 29531 2568 2558 29532 2566 2557 29533 2571 2561 29534 2573 2566 29535 2572 2562 29536 2570 2563 29537 2571 2561 29538 2569 2559 29539 2574 2564 29540 2576 2569 29541 2575 2565 29542 2573 2566 29543 2574 2564 29544 2572 2562 29545 2577 2567 29546 2579 2585 29547 2578 2568 29548 2576 2569 29549 2577 2567 29550 2575 2565 29551 2580 2570 29552 2581 2586 29553 2582 2571 29554 2584 2573 29555 2586 2587 29556 2583 2572 29557 2585 2574 29558 2537 2531 29559 2587 2575 29560 2538 2532 29561 2541 2534 29562 2589 2577 29563 2537 2531 29564 2543 2536 29565 2590 2578 29566 2541 2534 29567 2545 2538 29568 2591 2579 29569 2543 2536 29570 2547 2540 29571 2592 2580 29572 2545 2538 29573 2549 2542 29574 2593 2581 29575 2547 2540 29576 2551 2544 29577 2594 2582 29578 2549 2542 29579 2554 2546 29580 2595 2583 29581 2555 2547 29582 2587 2575 29583 2560 2553 29584 2588 2576 29585 2589 2577 29586 2564 2554 29587 2587 2575 29588 2590 2578 29589 2567 2560 29590 2589 2577 29591 2591 2579 29592 2570 2563 29593 2590 2578 29594 2592 2580 29595 2573 2566 29596 2591 2579 29597 2593 2581 29598 2576 2569 29599 2592 2580 29600 2594 2582 29601 2579 2585 29602 2593 2581 29603 2595 2583 29604 2581 2586 29605 2596 2584 29606 2580 2570 29607 2578 2568 29608 2586 2587 29609 2584 2573 29610 2583 2572 29611 2579 2585 29612 2556 2548 29613 2555 2547 29614 2552 2588 29615 2555 2547 29616 2596 2584 29617 2551 2544 29618 2596 2584 29619 2584 2573 29620 2594 2582 29621 2597 2617 29622 2598 2589 29623 2600 2591 29624 2601 2595 29625 2602 2592 29626 2604 2594 29627 2605 2613 29628 2601 2595 29629 2606 2596 29630 2600 2591 29631 2599 2590 29632 2608 2598 29633 2604 2594 29634 2603 2593 29635 2610 2600 29636 2610 2600 29637 2611 2601 29638 2604 2594 29639 2615 2709 29640 2612 2602 29641 2614 2604 29642 2618 2608 29643 2616 2605 29644 2539 2533 29645 2620 2610 29646 2619 2607 29647 2618 2608 29648 2622 2611 29649 2621 2609 29650 2620 2610 29651 2614 2604 29652 2621 2609 29653 2623 2612 29654 2624 2614 29655 2605 2613 29656 2623 2612 29657 2601 2595 29658 2605 2613 29659 2625 2615 29660 2602 2592 29661 2601 2595 29662 2626 2616 29663 2598 2589 29664 2597 2617 29665 2553 2619 29666 2631 2638 29667 2628 2620 29668 2630 2622 29669 2630 2622 29670 2629 2621 29671 2633 2624 29672 2633 2624 29673 2632 2623 29674 2635 2626 29675 2635 2626 29676 2634 2625 29677 2637 2628 29678 2637 2628 29679 2636 2627 29680 2639 2630 29681 2639 2630 29682 2638 2629 29683 2641 2632 29684 2641 2632 29685 2640 2631 29686 2643 2634 29687 2647 2645 29688 2644 2635 29689 2646 2637 29690 2649 2756 29691 2631 2638 29692 2648 2639 29693 2648 2639 29694 2630 2622 29695 2650 2640 29696 2650 2640 29697 2633 2624 29698 2651 2641 29699 2651 2641 29700 2635 2626 29701 2652 2642 29702 2643 2634 29703 2653 2643 29704 2641 2632 29705 2656 2647 29706 2647 2645 29707 2655 2646 29708 2602 2592 29709 2597 2617 29710 2603 2593 29711 2603 2593 29712 2600 2591 29713 2609 2599 29714 2644 2635 29715 2647 2645 29716 2642 2633 29717 2647 2645 29718 2656 2647 29719 2643 2634 29720 2597 2617 29721 2602 2592 29722 2627 2618 29723 2661 7946 29724 2658 2649 29725 2660 2651 29726 2660 2651 29727 2659 2650 29728 2663 2653 29729 2663 2653 29730 2662 2652 29731 2665 2655 29732 2664 2654 29733 2666 2656 29734 2665 2655 29735 2666 2656 29736 2668 2658 29737 2667 2657 29738 2669 2659 29739 2668 2658 29740 2671 2661 29741 2673 2663 29742 2672 2662 29743 2670 2660 29744 2661 7946 29745 2672 2662 29746 2658 2649 29747 2674 2670 29748 2675 2664 29749 2677 2666 29750 2681 2679 29751 2678 2667 29752 2680 2669 29753 2675 2664 29754 2674 2670 29755 2683 2672 29756 2685 2676 29757 2674 2670 29758 2684 2673 29759 2684 2673 29760 2686 2674 29761 2685 2676 29762 2674 2670 29763 2685 2676 29764 2682 2671 29765 2685 2676 29766 2687 2675 29767 2688 2677 29768 2691 2683 29769 2678 2667 29770 2690 2680 29771 2690 2680 29772 2692 2681 29773 2691 2683 29774 2651 2641 29775 2696 2686 29776 2694 2684 29777 2699 2693 29778 2693 2682 29779 2698 2688 29780 2689 2678 29781 2687 2675 29782 2701 2690 29783 2687 2675 29784 2686 2674 29785 2700 2689 29786 2704 2698 29787 2703 2692 29788 2699 2693 29789 2706 2695 29790 2650 2640 29791 2705 2694 29792 2707 2696 29793 2648 2639 29794 2706 2695 29795 2649 2756 29796 2648 2639 29797 2708 2697 29798 2705 2694 29799 2695 2685 29800 2704 2698 29801 2692 2681 29802 2689 2678 29803 2698 2688 29804 2688 2677 29805 2689 2678 29806 2690 2680 29807 2690 2680 29808 2681 2679 29809 2688 2677 29810 2681 2679 29811 2680 2669 29812 2682 2671 29813 2710 2702 29814 2706 2695 29815 2709 2699 29816 2709 2699 29817 2705 2694 29818 2711 2700 29819 2713 2703 29820 2709 2699 29821 2712 2701 29822 2714 2706 29823 2710 2702 29824 2713 2703 29825 2711 2700 29826 2704 2698 29827 2715 2704 29828 2712 2701 29829 2711 2700 29830 2716 2705 29831 2671 2661 29832 2712 2701 29833 2669 2659 29834 2672 2662 29835 2713 2703 29836 2671 2661 29837 2661 7946 29838 2714 2706 29839 2672 2662 29840 2695 2685 29841 2694 2684 29842 2703 2692 29843 2675 2664 29844 2656 2647 29845 2676 2665 29846 2656 2647 29847 2675 2664 29848 2653 2643 29849 2654 2644 29850 2653 2643 29851 2680 2669 29852 2680 2669 29853 2679 2668 29854 2654 2644 29855 2639 2630 29856 2717 2707 29857 2637 2628 29858 2679 2668 29859 2657 2648 29860 2717 2707 29861 2691 2683 29862 2693 2682 29863 2697 2687 29864 2678 2667 29865 2696 2686 29866 2679 2668 29867 2691 2683 29868 2697 2687 29869 2678 2667 29870 2718 2713 29871 2719 2708 29872 2612 2602 29873 2612 2602 29874 2615 2709 29875 2721 2711 29876 2612 2602 29877 2721 2711 29878 2718 2713 29879 2719 2708 29880 2619 2607 29881 2613 2603 29882 2723 2716 29883 2724 2714 29884 2722 2712 29885 2726 2722 29886 2725 2715 29887 2723 2716 29888 2724 2714 29889 2727 2717 29890 2718 2713 29891 2725 2715 29892 2728 2718 29893 2724 2714 29894 2727 2717 29895 2616 2605 29896 2719 2708 29897 2728 2718 29898 2617 2606 29899 2727 2717 29900 2730 2720 29901 2721 2711 29902 2729 2719 29903 2731 2721 29904 2722 2712 29905 2730 2720 29906 2732 2723 29907 2723 2716 29908 2731 2721 29909 2733 2724 29910 2726 2722 29911 2732 2723 29912 2644 2635 29913 2608 2598 29914 2645 2636 29915 2609 2599 29916 2608 2598 29917 2642 2633 29918 2610 2600 29919 2609 2599 29920 2640 2631 29921 2640 2631 29922 2638 2629 29923 2610 2600 29924 2636 2627 29925 2729 2719 29926 2638 2629 29927 2634 2625 29928 2730 2720 29929 2636 2627 29930 2632 2623 29931 2731 2721 29932 2634 2625 29933 2629 2621 29934 2732 2723 29935 2632 2623 29936 2628 2620 29937 2733 2724 29938 2629 2621 29939 2729 2719 29940 2720 2710 29941 2611 2601 29942 2606 2596 29943 2615 2709 29944 2605 2613 29945 2641 2632 29946 2654 2644 29947 2639 2630 29948 2598 2589 29949 2734 2725 29950 2599 2590 29951 2736 2731 29952 2737 2727 29953 2739 2729 29954 2740 2742 29955 2741 2730 29956 2736 2731 29957 2735 2726 29958 2742 2732 29959 2599 2590 29960 2737 2727 29961 2743 2733 29962 2738 2728 29963 2743 2733 29964 2737 2727 29965 2745 2735 29966 2749 2819 29967 2746 2736 29968 2748 2738 29969 2750 2739 29970 2540 2535 29971 2617 2606 29972 2751 2740 29973 2542 2537 29974 2750 2739 29975 2752 2741 29976 2544 2539 29977 2751 2740 29978 2748 2738 29979 2546 2541 29980 2752 2741 29981 2740 2742 29982 2548 2543 29983 2748 2738 29984 2736 2731 29985 2550 2545 29986 2740 2742 29987 2739 2729 29988 2552 2588 29989 2736 2731 29990 2734 2725 29991 2598 2589 29992 2556 2548 29993 2754 2744 29994 2628 2620 29995 2753 2743 29996 2756 2746 29997 2754 2744 29998 2755 2745 29999 2758 2748 30000 2756 2746 30001 2757 2747 30002 2760 2832 30003 2758 2748 30004 2759 2749 30005 2760 2832 30006 2759 2749 30007 2762 2751 30008 2762 2751 30009 2761 2750 30010 2764 2753 30011 2766 2764 30012 2764 2753 30013 2765 2754 30014 2767 2831 30015 2768 2755 30016 2645 2636 30017 2753 2743 30018 2631 2638 30019 2769 2757 30020 2755 2745 30021 2753 2743 30022 2770 2758 30023 2757 2747 30024 2755 2745 30025 2771 2759 30026 2771 2759 30027 2772 2760 30028 2757 2747 30029 2765 2754 30030 2763 2752 30031 2774 2762 30032 2768 2755 30033 2775 2763 30034 2646 2637 30035 2735 2726 30036 2734 2725 30037 2738 2728 30038 2742 2732 30039 2735 2726 30040 2744 2734 30041 2767 2831 30042 2766 2764 30043 2768 2755 30044 2768 2755 30045 2765 2754 30046 2775 2763 30047 2739 2729 30048 2734 2725 30049 2552 2588 30050 2780 2769 30051 2777 2766 30052 2779 2768 30053 2782 2771 30054 2780 2769 30055 2781 2770 30056 2784 3012 30057 2782 2771 30058 2783 2772 30059 2784 3012 30060 2783 2772 30061 2786 2774 30062 2786 2774 30063 2785 2773 30064 2788 2776 30065 2790 2780 30066 2788 2776 30067 2789 2777 30068 2789 2777 30069 2791 2778 30070 2790 2780 30071 2778 2767 30072 2777 2766 30073 2791 2778 30074 2794 2816 30075 2793 2781 30076 2676 2665 30077 2798 2818 30078 2795 2782 30079 2797 2784 30080 2794 2816 30081 2799 2785 30082 2793 2781 30083 2793 2781 30084 2801 2787 30085 2677 2666 30086 2686 2674 30087 2684 2673 30088 2802 2788 30089 2793 2781 30090 2800 2786 30091 2801 2787 30092 2802 2788 30093 2801 2787 30094 2804 2790 30095 2795 2782 30096 2805 2791 30097 2796 2783 30098 2808 2798 30099 2807 2793 30100 2805 2791 30101 2771 2759 30102 2809 2794 30103 2812 2797 30104 2807 2793 30105 2808 2798 30106 2814 2800 30107 2816 2802 30108 2802 2788 30109 2815 2801 30110 2802 2788 30111 2816 2802 30112 2686 2674 30113 2808 2798 30114 2817 2803 30115 2813 2799 30116 2810 2795 30117 2770 2758 30118 2820 2806 30119 2770 2758 30120 2769 2757 30121 2819 2805 30122 2769 2757 30123 2649 2756 30124 2821 2807 30125 2817 2803 30126 2810 2795 30127 2818 2804 30128 2804 2790 30129 2807 2793 30130 2815 2801 30131 2804 2790 30132 2803 2789 30133 2807 2793 30134 2800 2786 30135 2796 2783 30136 2803 2789 30137 2797 2784 30138 2796 2783 30139 2799 2785 30140 2820 2806 30141 2819 2805 30142 2823 2809 30143 2818 2804 30144 2820 2806 30145 2824 2810 30146 2824 2810 30147 2823 2809 30148 2826 2812 30149 2823 2809 30150 2822 2808 30151 2825 2811 30152 2813 2799 30153 2818 2804 30154 2828 2814 30155 2828 2814 30156 2824 2810 30157 2829 2815 30158 2829 2815 30159 2826 2812 30160 2787 2775 30161 2826 2812 30162 2825 2811 30163 2789 2777 30164 2827 2813 30165 2778 2767 30166 2825 2811 30167 2809 2794 30168 2810 2795 30169 2811 2796 30170 2775 2763 30171 2794 2816 30172 2655 2646 30173 2775 2763 30174 2774 2762 30175 2794 2816 30176 2773 2761 30177 2797 2784 30178 2774 2762 30179 2797 2784 30180 2773 2761 30181 2798 2818 30182 2772 2760 30183 2830 2817 30184 2759 2749 30185 2798 2818 30186 2830 2817 30187 2776 2765 30188 2808 2798 30189 2805 2791 30190 2817 2803 30191 2776 2765 30192 2812 2797 30193 2798 2818 30194 2805 2791 30195 2795 2782 30196 2811 2796 30197 2831 2822 30198 2746 2736 30199 2832 2820 30200 2834 2833 30201 2747 2737 30202 2833 2821 30203 2835 2823 30204 2833 2821 30205 2831 2822 30206 2751 2740 30207 2832 2820 30208 2752 2741 30209 2836 2825 30210 2835 2823 30211 2837 2824 30212 2725 2715 30213 2726 2722 30214 2837 2824 30215 2832 2820 30216 2838 2826 30217 2831 2822 30218 2838 2826 30219 2728 2718 30220 2837 2824 30221 2750 2739 30222 2838 2826 30223 2751 2740 30224 2617 2606 30225 2728 2718 30226 2750 2739 30227 2834 2833 30228 2833 2821 30229 2840 2828 30230 2833 2821 30231 2835 2823 30232 2839 2827 30233 2835 2823 30234 2836 2825 30235 2841 2829 30236 2733 2724 30237 2842 2830 30238 2726 2722 30239 2742 2732 30240 2767 2831 30241 2607 2597 30242 2767 2831 30243 2742 2732 30244 2766 2764 30245 2743 2733 30246 2764 2753 30247 2744 2734 30248 2764 2753 30249 2743 2733 30250 2762 2751 30251 2745 2735 30252 2840 2828 30253 2762 2751 30254 2840 2828 30255 2839 2827 30256 2760 2832 30257 2839 2827 30258 2841 2829 30259 2758 2748 30260 2842 2830 30261 2754 2744 30262 2841 2829 30263 2733 2724 30264 2628 2620 30265 2842 2830 30266 2741 2730 30267 2834 2833 30268 2745 2735 30269 2748 2738 30270 2747 2737 30271 2740 2742 30272 2830 2817 30273 2773 2761 30274 2761 2750 30275 2843 2849 30276 2844 2834 30277 2846 2836 30278 2844 2834 30279 2847 2837 30280 2845 2835 30281 2848 2838 30282 2847 2837 30283 2850 2840 30284 2849 2839 30285 2851 2841 30286 2850 2840 30287 2852 2842 30288 2851 2841 30289 2854 2844 30290 2853 2843 30291 2855 2845 30292 2854 2844 30293 2855 2845 30294 2857 2847 30295 2856 2846 30296 2857 2847 30297 2843 2849 30298 2858 2848 30299 2859 2853 30300 2860 2850 30301 2862 2852 30302 2863 2855 30303 2859 2853 30304 2864 2854 30305 2865 2858 30306 2863 2855 30307 2866 2856 30308 2868 2862 30309 2867 2857 30310 2866 2856 30311 2861 2851 30312 2860 2850 30313 2870 2860 30314 2872 2864 30315 2871 2861 30316 2868 2862 30317 2874 2865 30318 2873 2863 30319 2872 2864 30320 2870 2860 30321 2869 2859 30322 2874 2865 30323 2876 2872 30324 2858 2848 30325 2875 2866 30326 2845 2835 30327 2877 2867 30328 2846 2836 30329 2878 2868 30330 2877 2867 30331 2848 2838 30332 2879 2869 30333 2878 2868 30334 2850 2840 30335 2880 2870 30336 2879 2869 30337 2852 2842 30338 2881 2871 30339 2880 2870 30340 2854 2844 30341 2882 2873 30342 2881 2871 30343 2856 2846 30344 2858 2848 30345 2876 2872 30346 2856 2846 30347 2875 2866 30348 2870 2860 30349 2876 2872 30350 2875 2866 30351 2877 2867 30352 2870 2860 30353 2877 2867 30354 2878 2868 30355 2861 2851 30356 2878 2868 30357 2879 2869 30358 2862 2852 30359 2879 2869 30360 2880 2870 30361 2864 2854 30362 2881 2871 30363 2868 2862 30364 2880 2870 30365 2882 2873 30366 2872 2864 30367 2881 2871 30368 2876 2872 30369 2874 2865 30370 2882 2873 30371 2884 2875 30372 2659 2650 30373 2883 2874 30374 2885 2876 30375 2662 2652 30376 2884 2875 30377 2886 2877 30378 2664 2654 30379 2885 2876 30380 2666 2656 30381 2664 2654 30382 2887 2878 30383 2668 2658 30384 2666 2656 30385 2888 2879 30386 2889 2880 30387 2670 2660 30388 2888 2879 30389 2670 2660 30390 2889 2880 30391 2673 2663 30392 2890 2881 30393 2883 2874 30394 2673 2663 30395 2891 2886 30396 2892 2882 30397 2894 2884 30398 2896 2887 30399 2895 2885 30400 2894 2884 30401 2897 2890 30402 2895 2885 30403 2898 2888 30404 2900 2904 30405 2899 2889 30406 2898 2888 30407 2901 2893 30408 2902 2891 30409 2873 2863 30410 2869 2859 30411 2903 2892 30412 2873 2863 30413 2860 2850 30414 2904 2894 30415 2869 2859 30416 2904 2894 30417 2860 2850 30418 2905 2895 30419 2859 2853 30420 2863 2855 30421 2905 2895 30422 2907 2897 30423 2906 2896 30424 2865 2858 30425 2908 2898 30426 2907 2897 30427 2867 2857 30428 2871 2861 30429 2902 2891 30430 2867 2857 30431 2889 2880 30432 2909 2899 30433 2890 2881 30434 2910 2900 30435 2911 2901 30436 2890 2881 30437 2884 2875 30438 2883 2874 30439 2892 2882 30440 2891 2886 30441 2885 2876 30442 2892 2882 30443 2895 2885 30444 2886 2877 30445 2891 2886 30446 2887 2878 30447 2886 2877 30448 2897 2890 30449 2888 2879 30450 2887 2878 30451 2899 2889 30452 2909 2899 30453 2889 2880 30454 2899 2889 30455 2913 2905 30456 2904 2894 30457 2912 2902 30458 2905 2895 30459 2906 2896 30460 2912 2902 30461 2893 2883 30462 2914 2903 30463 2907 2897 30464 2908 2898 30465 2894 2884 30466 2907 2897 30467 2902 2891 30468 2896 2887 30469 2908 2898 30470 2898 2888 30471 2896 2887 30472 2901 2893 30473 2903 2892 30474 2900 2904 30475 2901 2893 30476 2904 2894 30477 2913 2905 30478 2903 2892 30479 2892 2882 30480 2911 2901 30481 2893 2883 30482 2912 2902 30483 2914 2903 30484 2910 2900 30485 2909 2899 30486 2913 2905 30487 2910 2900 30488 2913 2905 30489 2909 2899 30490 2900 2904 30491 2915 2911 30492 2916 2906 30493 2918 2908 30494 2918 2908 30495 2917 2907 30496 2920 2910 30497 2916 2906 30498 2915 2911 30499 2922 2913 30500 2920 2910 30501 2919 2909 30502 2924 2915 30503 2924 2915 30504 2923 2914 30505 2926 2917 30506 2922 2913 30507 2921 2912 30508 2928 2919 30509 2926 2917 30510 2925 2916 30511 2930 2921 30512 2930 2921 30513 2929 2920 30514 2927 2918 30515 2931 2926 30516 2932 2922 30517 2934 2924 30518 2936 2930 30519 2935 2925 30520 2934 2924 30521 2933 2923 30522 2932 2922 30523 2938 2928 30524 2940 2931 30525 2939 2929 30526 2936 2930 30527 2941 2935 30528 2939 2929 30529 2942 2932 30530 2937 2927 30531 2943 2933 30532 2938 2928 30533 2945 2937 30534 2941 2935 30535 2946 2936 30536 2944 2934 30537 2943 2933 30538 2946 2936 30539 2947 2941 30540 2921 2912 30541 2948 2938 30542 2948 2938 30543 2915 2911 30544 2949 2939 30545 2949 2939 30546 2918 2908 30547 2950 2940 30548 2951 3064 30549 2950 2940 30550 2924 2915 30551 2952 2944 30552 2927 2918 30553 2947 2941 30554 2951 3064 30555 2924 2915 30556 2953 2942 30557 2953 2942 30558 2926 2917 30559 2954 2943 30560 2954 2943 30561 2930 2921 30562 2952 2944 30563 2955 2948 30564 2956 2945 30565 2958 2947 30566 2959 2951 30567 2955 2948 30568 2960 2949 30569 2962 2955 30570 2961 2950 30571 2960 2949 30572 2956 2945 30573 2963 2952 30574 2957 2946 30575 2966 2960 30576 2965 2954 30577 2962 2955 30578 2964 2953 30579 2963 2952 30580 2968 2957 30581 2967 2956 30582 2969 2958 30583 2968 2957 30584 2970 2959 30585 2969 2958 30586 2966 2960 30587 2960 2949 30588 2916 2906 30589 2962 2955 30590 2962 2955 30591 2922 2913 30592 2966 2960 30593 2929 2920 30594 2970 2959 30595 2928 2919 30596 2925 2916 30597 2968 2957 30598 2929 2920 30599 2923 2914 30600 2964 2953 30601 2925 2916 30602 2923 2914 30603 2919 2909 30604 2964 2953 30605 2919 2909 30606 2917 2907 30607 2957 2946 30608 2916 2906 30609 2960 2949 30610 2917 2907 30611 2971 2968 30612 2972 2961 30613 2974 2963 30614 2972 2961 30615 2975 2964 30616 2973 2962 30617 2974 2963 30618 2977 2966 30619 2971 2968 30620 2976 2965 30621 2975 2964 30622 2980 2970 30623 2979 2969 30624 2981 2971 30625 2980 2970 30626 2977 2966 30627 2983 2973 30628 2978 2967 30629 2981 2971 30630 2985 2975 30631 2982 2972 30632 2985 2975 30633 2984 2974 30634 2986 2976 30635 2844 2834 30636 2843 2849 30637 2971 2968 30638 2990 2981 30639 2987 2977 30640 2989 2979 30641 2843 2849 30642 2857 2847 30643 2972 2961 30644 2992 2985 30645 2991 2980 30646 2990 2981 30647 2988 2978 30648 2993 2982 30649 2989 2979 30650 2847 2837 30651 2844 2834 30652 2978 2967 30653 2975 2964 30654 2857 2847 30655 2979 2969 30656 2996 2986 30657 2995 2984 30658 2992 2985 30659 2979 2969 30660 2855 2845 30661 2981 2971 30662 2997 2990 30663 2995 2984 30664 2998 2987 30665 2994 2983 30666 2993 2982 30667 3000 2989 30668 2849 2839 30669 2847 2837 30670 2984 2974 30671 2853 2843 30672 2851 2841 30673 2981 2971 30674 3001 2992 30675 2997 2990 30676 3002 2991 30677 2851 2841 30678 2849 2839 30679 2985 2975 30680 2999 2988 30681 3001 2992 30682 3000 2989 30683 3006 2998 30684 3003 2993 30685 3005 2995 30686 3004 2994 30687 3007 2996 30688 3005 2995 30689 3009 3005 30690 3003 2993 30691 3010 2999 30692 3007 2996 30693 3011 3000 30694 3008 2997 30695 3012 3001 30696 3011 3000 30697 3014 3003 30698 3016 3008 30699 3015 3004 30700 3010 2999 30701 3014 3003 30702 3013 3002 30703 3018 3007 30704 3017 3006 30705 3015 3004 30706 3018 3007 30707 2989 2979 30708 2994 2983 30709 2974 2963 30710 2994 2983 30711 3000 2989 30712 2977 2966 30713 2986 2976 30714 2983 2973 30715 3002 2991 30716 2982 2972 30717 2986 2976 30718 2998 2987 30719 2980 2970 30720 2982 2972 30721 2996 2986 30722 2992 2985 30723 2976 2965 30724 2996 2986 30725 2990 2981 30726 2973 2962 30727 2992 2985 30728 2974 2963 30729 2973 2962 30730 2989 2979 30731 2961 2950 30732 2937 2927 30733 2959 2951 30734 2932 2922 30735 2931 2926 30736 2959 2951 30737 2955 2948 30738 2931 2926 30739 2956 2945 30740 2956 2945 30741 2935 2925 30742 2963 2952 30743 2943 2933 30744 2937 2927 30745 2965 2954 30746 2963 2952 30747 2939 2929 30748 2967 2956 30749 2941 2935 30750 2945 2937 30751 2967 2956 30752 2969 2958 30753 2945 2937 30754 2965 2954 30755 2987 2977 30756 3004 2994 30757 2988 2978 30758 2993 2982 30759 2988 2978 30760 3009 3005 30761 3007 2996 30762 3004 2994 30763 2991 2980 30764 3011 3000 30765 3007 2996 30766 2995 2984 30767 3015 3004 30768 2999 2988 30769 3009 3005 30770 3013 3002 30771 3011 3000 30772 2997 2990 30773 3001 2992 30774 3017 3006 30775 2997 2990 30776 3001 2992 30777 2999 2988 30778 3017 3006 30779 2780 2769 30780 3019 3009 30781 2777 2766 30782 2780 2769 30783 2782 2771 30784 3019 3009 30785 2782 2771 30786 2784 3012 30787 3021 3011 30788 2786 2774 30789 3023 3014 30790 2784 3012 30791 2788 2776 30792 3024 3015 30793 2786 2774 30794 2788 2776 30795 2790 2780 30796 3024 3015 30797 3026 3040 30798 3025 3016 30799 2792 2779 30800 3026 3040 30801 2792 2779 30802 3020 3010 30803 3027 3042 30804 3028 3017 30805 3030 3019 30806 3027 3042 30807 3031 3020 30808 3028 3017 30809 3033 3043 30810 3034 3022 30811 3031 3020 30812 3033 3043 30813 3035 3023 30814 3034 3022 30815 3040 3047 30816 3037 3025 30817 3039 3027 30818 3037 3025 30819 3041 3028 30820 3038 3026 30821 3041 3028 30822 3043 3030 30823 3042 3029 30824 3046 3051 30825 3044 3031 30826 3045 3032 30827 3046 3051 30828 3045 3032 30829 3048 3034 30830 3049 3037 30831 3050 3035 30832 3047 3033 30833 3051 3038 30834 3052 3036 30835 3049 3037 30836 3040 3047 30837 3039 3027 30838 3051 3038 30839 3054 3074 30840 3053 3039 30841 3026 3040 30842 3054 3074 30843 3026 3040 30844 3055 3041 30845 3019 3009 30846 3030 3019 30847 3020 3010 30848 3019 3009 30849 3021 3011 30850 3030 3019 30851 3021 3011 30852 3022 3013 30853 3027 3042 30854 3023 3014 30855 3033 3043 30856 3022 3013 30857 3024 3015 30858 3035 3023 30859 3023 3014 30860 3024 3015 30861 3025 3016 30862 3035 3023 30863 3045 3032 30864 3043 3030 30865 3057 3045 30866 3045 3032 30867 3057 3045 30868 3047 3033 30869 3029 3018 30870 3049 3037 30871 3058 3046 30872 3028 3017 30873 3051 3038 30874 3029 3018 30875 3032 3021 30876 3040 3047 30877 3028 3017 30878 3034 3022 30879 3037 3025 30880 3032 3021 30881 3034 3022 30882 3036 3024 30883 3037 3025 30884 3036 3024 30885 3056 3044 30886 3041 3028 30887 3046 3051 30888 3059 3048 30889 3044 3031 30890 3048 3034 30891 3061 3050 30892 3046 3051 30893 3050 3035 30894 3062 3052 30895 3048 3034 30896 3052 3036 30897 3063 3053 30898 3050 3035 30899 3042 3029 30900 3044 3031 30901 3064 3054 30902 3039 3027 30903 3065 3055 30904 3052 3036 30905 3039 3027 30906 3038 3026 30907 3065 3055 30908 3038 3026 30909 3042 3029 30910 3066 3056 30911 2949 2939 30912 3067 3057 30913 2948 2938 30914 2948 2938 30915 3068 3058 30916 2947 2941 30917 2947 2941 30918 3069 3059 30919 2952 2944 30920 2952 2944 30921 3070 3060 30922 2954 2943 30923 2953 2942 30924 2954 2943 30925 3072 3062 30926 2953 2942 30927 3072 3062 30928 2951 3064 30929 2951 3064 30930 3073 3063 30931 2950 2940 30932 2950 2940 30933 3074 3065 30934 2949 2939 30935 3067 3057 30936 3074 3065 30937 3076 3067 30938 3076 3067 30939 3077 3068 30940 3067 3057 30941 3078 3069 30942 3069 3059 30943 3077 3068 30944 3079 3070 30945 3070 3060 30946 3078 3069 30947 3080 3071 30948 3071 3061 30949 3079 3070 30950 3081 3072 30951 3072 3062 30952 3080 3071 30953 3082 3073 30954 3073 3063 30955 3081 3072 30956 3074 3065 30957 3073 3063 30958 3075 3066 30959 3076 3067 30960 3075 3066 30961 3064 3054 30962 3077 3068 30963 3076 3067 30964 3060 3049 30965 3059 3048 30966 3078 3069 30967 3060 3049 30968 3061 3050 30969 3079 3070 30970 3059 3048 30971 3062 3052 30972 3080 3071 30973 3061 3050 30974 3063 3053 30975 3081 3072 30976 3062 3052 30977 3082 3073 30978 3081 3072 30979 3065 3055 30980 3075 3066 30981 3082 3073 30982 3066 3056 30983 3057 3045 30984 3054 3074 30985 3058 3046 30986 3053 3039 30987 3054 3074 30988 3056 3044 30989 3035 3023 30990 3053 3039 30991 3036 3024 30992 3058 3046 30993 3055 3041 30994 3029 3018 30995 3083 3075 30996 2618 2608 30997 2538 2532 30998 3084 3076 30999 2620 2610 31000 3083 3075 31001 3085 3107 31002 2622 2611 31003 3084 3076 31004 3085 3107 31005 3086 3077 31006 2622 2611 31007 3086 3077 31008 3087 3078 31009 2623 2612 31010 3087 3078 31011 3088 3079 31012 2624 2614 31013 3088 3079 31014 3089 3080 31015 2625 2615 31016 2554 2546 31017 2553 2619 31018 3090 3081 31019 3091 3084 31020 3092 3082 31021 2558 2550 31022 2561 2552 31023 3093 3083 31024 2558 2550 31025 3094 3087 31026 3095 3085 31027 3091 3084 31028 3093 3083 31029 3096 3086 31030 3091 3084 31031 3097 3090 31032 3098 3088 31033 3094 3087 31034 3096 3086 31035 3099 3089 31036 3094 3087 31037 3100 3093 31038 3101 3091 31039 3097 3090 31040 3099 3089 31041 3102 3092 31042 3097 3090 31043 3103 3096 31044 3104 3094 31045 3100 3093 31046 3102 3092 31047 3105 3095 31048 3100 3093 31049 3106 3099 31050 3107 3097 31051 3103 3096 31052 3105 3095 31053 3108 3098 31054 3103 3096 31055 3109 3102 31056 3110 3100 31057 3106 3099 31058 3108 3098 31059 3111 3101 31060 3106 3099 31061 2582 2571 31062 2581 2586 31063 3113 3104 31064 2582 2571 31065 3113 3104 31066 2585 2574 31067 3115 3106 31068 3083 3075 31069 2588 2576 31070 3116 3108 31071 3084 3076 31072 3115 3106 31073 3117 3109 31074 3085 3107 31075 3116 3108 31076 3118 3110 31077 3086 3077 31078 3117 3109 31079 3119 3111 31080 3087 3078 31081 3118 3110 31082 3120 3112 31083 3088 3079 31084 3119 3111 31085 3121 3114 31086 3089 3080 31087 3120 3112 31088 2595 2583 31089 2554 2546 31090 3122 3113 31091 3092 3082 31092 3115 3106 31093 2559 2551 31094 3095 3085 31095 3116 3108 31096 3092 3082 31097 3098 3088 31098 3117 3109 31099 3095 3085 31100 3101 3091 31101 3118 3110 31102 3098 3088 31103 3104 3094 31104 3119 3111 31105 3101 3091 31106 3107 3097 31107 3120 3112 31108 3104 3094 31109 3121 3114 31110 3120 3112 31111 3110 3100 31112 2581 2586 31113 2595 2583 31114 3112 3103 31115 3111 3101 31116 3114 3105 31117 3109 3102 31118 3113 3104 31119 3112 3103 31120 3109 3102 31121 3089 3080 31122 3090 3081 31123 2626 2616 31124 3122 3113 31125 3090 3081 31126 3121 3114 31127 3110 3100 31128 3112 3103 31129 3121 3114 31130 3123 3119 31131 3124 3115 31132 3126 3117 31133 3128 3120 31134 3127 3118 31135 3126 3117 31136 3129 3123 31137 3127 3118 31138 3130 3121 31139 3132 3124 31140 3131 3122 31141 3130 3121 31142 3133 3127 31143 3131 3122 31144 3134 3125 31145 3136 3129 31146 3135 3126 31147 3134 3125 31148 3138 3131 31149 3137 3128 31150 3136 3129 31151 3140 3133 31152 3139 3130 31153 3138 3131 31154 3142 3135 31155 3141 3132 31156 3140 3133 31157 3144 3137 31158 3143 3134 31159 3142 3135 31160 3146 3139 31161 3145 3136 31162 3144 3137 31163 3148 3140 31164 3147 3138 31165 3146 3139 31166 3149 3143 31167 3147 3138 31168 3150 3141 31169 3152 3145 31170 3151 3142 31171 3150 3141 31172 3154 3147 31173 3153 3144 31174 3152 3145 31175 3156 3148 31176 3155 3146 31177 3154 3147 31178 3157 3151 31179 3155 3146 31180 3158 3149 31181 3160 3152 31182 3159 3150 31183 3158 3149 31184 3161 3155 31185 3159 3150 31186 3162 3153 31187 3164 3156 31188 3163 3154 31189 3162 3153 31190 3165 3159 31191 3163 3154 31192 3166 3157 31193 3168 3161 31194 3167 3158 31195 3166 3157 31196 3170 3163 31197 3169 3160 31198 3168 3161 31199 3172 3165 31200 3171 3162 31201 3170 3163 31202 3174 3167 31203 3173 3164 31204 3172 3165 31205 3176 3168 31206 3175 3166 31207 3174 3167 31208 3177 3170 31209 3175 3166 31210 3178 3169 31211 3179 3172 31212 3177 3170 31213 3180 3171 31214 3181 3174 31215 3179 3172 31216 3182 3173 31217 3183 3176 31218 3181 3174 31219 3184 3175 31220 3185 3178 31221 3183 3176 31222 3186 3177 31223 3124 3115 31224 3185 3178 31225 3125 3116 31226 3190 3207 31227 3187 3179 31228 3189 3181 31229 3194 3203 31230 3191 3182 31231 3193 3184 31232 3198 3208 31233 3195 3185 31234 3197 3187 31235 3202 3204 31236 3199 3188 31237 3201 3190 31238 3206 3209 31239 3203 3191 31240 3205 3193 31241 3210 3205 31242 3207 3194 31243 3209 3196 31244 3211 3211 31245 3212 3197 31246 3214 3199 31247 3218 3206 31248 3215 3200 31249 3217 3202 31250 3189 3181 31251 3188 3180 31252 3194 3203 31253 3197 3187 31254 3196 3186 31255 3202 3204 31256 3204 3192 31257 3207 3194 31258 3205 3193 31259 3212 3197 31260 3215 3200 31261 3213 3198 31262 3216 3201 31263 3187 3179 31264 3217 3202 31265 3193 3184 31266 3192 3183 31267 3198 3208 31268 3219 3225 31269 3203 3191 31270 3220 3210 31271 3208 3195 31272 3211 3211 31273 3209 3196 31274 3224 3239 31275 3221 3212 31276 3223 3214 31277 3228 3235 31278 3225 3215 31279 3227 3217 31280 3232 3240 31281 3229 3218 31282 3231 3220 31283 3233 3236 31284 3234 3221 31285 3236 3223 31286 3238 3241 31287 3237 3224 31288 3220 3210 31289 3239 3237 31290 3240 3226 31291 3242 3228 31292 3246 3242 31293 3243 3229 31294 3245 3231 31295 3250 3238 31296 3247 3232 31297 3249 3234 31298 3230 3219 31299 3225 3215 31300 3231 3220 31301 3200 3189 31302 3233 3236 31303 3201 3190 31304 3244 3230 31305 3239 3237 31306 3245 3231 31307 3247 3232 31308 3250 3238 31309 3222 3213 31310 3221 3212 31311 3224 3239 31312 3226 3216 31313 3234 3221 31314 3229 3218 31315 3235 3222 31316 3240 3226 31317 3237 3224 31318 3241 3227 31319 3243 3229 31320 3246 3242 31321 3248 3233 31322 3237 3224 31323 3251 3243 31324 3219 3225 31325 3253 3245 31326 3251 3243 31327 3240 3226 31328 3254 3246 31329 3253 3245 31330 3239 3237 31331 3255 3248 31332 3254 3246 31333 3244 3230 31334 3243 3229 31335 3256 3247 31336 3244 3230 31337 3248 3233 31338 3257 3249 31339 3243 3229 31340 3247 3232 31341 3258 3250 31342 3248 3233 31343 3259 3252 31344 3258 3250 31345 3222 3213 31346 3221 3212 31347 3260 3251 31348 3222 3213 31349 3221 3212 31350 3226 3216 31351 3260 3251 31352 3262 3254 31353 3261 3253 31354 3225 3215 31355 3263 3255 31356 3262 3254 31357 3230 3219 31358 3264 3257 31359 3263 3255 31360 3229 3218 31361 3234 3221 31362 3265 3256 31363 3229 3218 31364 3266 3259 31365 3265 3256 31366 3233 3236 31367 3233 3236 31368 3200 3189 31369 3266 3259 31370 3199 3188 31371 3268 3260 31372 3200 3189 31373 3196 3186 31374 3269 3261 31375 3199 3188 31376 3195 3185 31377 3270 3262 31378 3196 3186 31379 3192 3183 31380 3271 3263 31381 3195 3185 31382 3191 3182 31383 3272 3264 31384 3192 3183 31385 3188 3180 31386 3273 3265 31387 3191 3182 31388 3187 3179 31389 3274 3266 31390 3188 3180 31391 3275 3268 31392 3274 3266 31393 3216 3201 31394 3215 3200 31395 3276 3267 31396 3216 3201 31397 3212 3197 31398 3277 3269 31399 3215 3200 31400 3278 3270 31401 3277 3269 31402 3211 3211 31403 3279 3272 31404 3278 3270 31405 3208 3195 31406 3207 3194 31407 3280 3271 31408 3208 3195 31409 3281 3274 31410 3280 3271 31411 3204 3192 31412 3203 3191 31413 3282 3273 31414 3204 3192 31415 3252 3244 31416 3282 3273 31417 3219 3225 31418 3170 3163 31419 3168 3161 31420 3284 3276 31421 3168 3161 31422 3166 3157 31423 3283 3275 31424 3162 3153 31425 3160 3152 31426 3287 3279 31427 3160 3152 31428 3158 3149 31429 3286 3278 31430 3290 3288 31431 3186 3177 31432 3289 3281 31433 3184 3175 31434 3182 3173 31435 3289 3281 31436 3293 3290 31437 3178 3169 31438 3292 3283 31439 3176 3168 31440 3174 3167 31441 3292 3283 31442 3174 3167 31443 3172 3165 31444 3294 3284 31445 3172 3165 31446 3170 3163 31447 3295 3285 31448 3166 3157 31449 3164 3156 31450 3285 3277 31451 3164 3156 31452 3162 3153 31453 3296 3286 31454 3298 3304 31455 3126 3117 31456 3297 3287 31457 3125 3116 31458 3186 3177 31459 3297 3287 31460 3291 3282 31461 3182 3173 31462 3299 3289 31463 3299 3289 31464 3180 3171 31465 3293 3290 31466 3301 3302 31467 3150 3141 31468 3300 3291 31469 3148 3140 31470 3146 3139 31471 3300 3291 31472 3288 3280 31473 3158 3149 31474 3303 3293 31475 3156 3148 31476 3154 3147 31477 3303 3293 31478 3306 3306 31479 3134 3125 31480 3305 3295 31481 3132 3124 31482 3130 3121 31483 3305 3295 31484 3309 3300 31485 3142 3135 31486 3308 3297 31487 3140 3133 31488 3138 3131 31489 3308 3297 31490 3302 3292 31491 3146 3139 31492 3311 3299 31493 3144 3137 31494 3142 3135 31495 3311 3299 31496 3304 3294 31497 3154 3147 31498 3312 3301 31499 3152 3145 31500 3150 3141 31501 3312 3301 31502 3307 3296 31503 3130 3121 31504 3313 3303 31505 3128 3120 31506 3126 3117 31507 3313 3303 31508 3138 3131 31509 3136 3129 31510 3310 3298 31511 3136 3129 31512 3134 3125 31513 3314 3305 31514 3284 3276 31515 3283 3275 31516 3316 3308 31517 3283 3275 31518 3285 3277 31519 3315 3307 31520 3287 3279 31521 3286 3278 31522 3319 3311 31523 3286 3278 31524 3288 3280 31525 3318 3310 31526 3322 3320 31527 3290 3288 31528 3321 3313 31529 3289 3281 31530 3291 3282 31531 3321 3313 31532 3325 3322 31533 3293 3290 31534 3324 3315 31535 3292 3283 31536 3294 3284 31537 3324 3315 31538 3294 3284 31539 3295 3285 31540 3326 3316 31541 3295 3285 31542 3284 3276 31543 3327 3317 31544 3285 3277 31545 3296 3286 31546 3317 3309 31547 3296 3286 31548 3287 3279 31549 3328 3318 31550 3330 3336 31551 3298 3304 31552 3329 3319 31553 3297 3287 31554 3290 3288 31555 3329 3319 31556 3323 3314 31557 3291 3282 31558 3331 3321 31559 3299 3289 31560 3293 3290 31561 3331 3321 31562 3333 3334 31563 3301 3302 31564 3332 3323 31565 3300 3291 31566 3302 3292 31567 3332 3323 31568 3320 3312 31569 3288 3280 31570 3335 3325 31571 3303 3293 31572 3304 3294 31573 3335 3325 31574 3338 3338 31575 3306 3306 31576 3337 3327 31577 3305 3295 31578 3307 3296 31579 3337 3327 31580 3341 3332 31581 3309 3300 31582 3340 3329 31583 3308 3297 31584 3310 3298 31585 3340 3329 31586 3334 3324 31587 3302 3292 31588 3343 3331 31589 3311 3299 31590 3309 3300 31591 3343 3331 31592 3336 3326 31593 3304 3294 31594 3344 3333 31595 3312 3301 31596 3301 3302 31597 3344 3333 31598 3339 3328 31599 3307 3296 31600 3345 3335 31601 3313 3303 31602 3298 3304 31603 3345 3335 31604 3310 3298 31605 3314 3305 31606 3342 3330 31607 3314 3305 31608 3306 3306 31609 3346 3337 31610 3316 3308 31611 3315 3307 31612 3348 3340 31613 3315 3307 31614 3317 3309 31615 3347 3339 31616 3319 3311 31617 3318 3310 31618 3351 3343 31619 3318 3310 31620 3320 3312 31621 3350 3342 31622 3354 3352 31623 3322 3320 31624 3353 3345 31625 3321 3313 31626 3323 3314 31627 3353 3345 31628 3357 3354 31629 3325 3322 31630 3356 3347 31631 3324 3315 31632 3326 3316 31633 3356 3347 31634 3326 3316 31635 3327 3317 31636 3358 3348 31637 3327 3317 31638 3316 3308 31639 3359 3349 31640 3317 3309 31641 3328 3318 31642 3349 3341 31643 3328 3318 31644 3319 3311 31645 3360 3350 31646 3362 3368 31647 3330 3336 31648 3361 3351 31649 3329 3319 31650 3322 3320 31651 3361 3351 31652 3355 3346 31653 3323 3314 31654 3363 3353 31655 3331 3321 31656 3325 3322 31657 3363 3353 31658 3365 3366 31659 3333 3334 31660 3364 3355 31661 3332 3323 31662 3334 3324 31663 3364 3355 31664 3352 3344 31665 3320 3312 31666 3367 3357 31667 3335 3325 31668 3336 3326 31669 3367 3357 31670 3370 3370 31671 3338 3338 31672 3369 3359 31673 3337 3327 31674 3339 3328 31675 3369 3359 31676 3341 3332 31677 3340 3329 31678 3373 3362 31679 3340 3329 31680 3342 3330 31681 3372 3361 31682 3334 3324 31683 3343 3331 31684 3366 3356 31685 3343 3331 31686 3341 3332 31687 3375 3364 31688 3368 3358 31689 3336 3326 31690 3376 3365 31691 3344 3333 31692 3333 3334 31693 3376 3365 31694 3371 3360 31695 3339 3328 31696 3377 3367 31697 3345 3335 31698 3330 3336 31699 3377 3367 31700 3342 3330 31701 3346 3337 31702 3374 3363 31703 3346 3337 31704 3338 3338 31705 3378 3369 31706 3348 3340 31707 3347 3339 31708 3380 3372 31709 3347 3339 31710 3349 3341 31711 3379 3371 31712 3351 3343 31713 3350 3342 31714 3383 3375 31715 3350 3342 31716 3352 3344 31717 3382 3374 31718 3386 3385 31719 3354 3352 31720 3385 3377 31721 3353 3345 31722 3355 3346 31723 3385 3377 31724 3357 3354 31725 3356 3347 31726 3389 3380 31727 3356 3347 31728 3358 3348 31729 3388 3379 31730 3358 3348 31731 3359 3349 31732 3390 3381 31733 3359 3349 31734 3348 3340 31735 3391 3382 31736 3349 3341 31737 3360 3350 31738 3381 3373 31739 3360 3350 31740 3351 3343 31741 3392 3383 31742 3394 3400 31743 3362 3368 31744 3393 3384 31745 3361 3351 31746 3354 3352 31747 3393 3384 31748 3387 3378 31749 3355 3346 31750 3395 3386 31751 3395 3386 31752 3363 3353 31753 3389 3380 31754 3365 3366 31755 3364 3355 31756 3397 3388 31757 3364 3355 31758 3366 3356 31759 3396 3387 31760 3352 3344 31761 3367 3357 31762 3384 3376 31763 3367 3357 31764 3368 3358 31765 3399 3390 31766 3402 3402 31767 3370 3370 31768 3401 3392 31769 3369 3359 31770 3371 3360 31771 3401 3392 31772 3373 3362 31773 3372 3361 31774 3405 3395 31775 3372 3361 31776 3374 3363 31777 3404 3394 31778 3366 3356 31779 3375 3364 31780 3398 3389 31781 3375 3364 31782 3373 3362 31783 3407 3397 31784 3368 3358 31785 3376 3365 31786 3400 3391 31787 3376 3365 31788 3365 3366 31789 3408 3398 31790 3403 3393 31791 3371 3360 31792 3409 3399 31793 3377 3367 31794 3362 3368 31795 3409 3399 31796 3374 3363 31797 3378 3369 31798 3406 3396 31799 3378 3369 31800 3370 3370 31801 3410 3401 31802 3123 3119 31803 3220 3210 31804 3124 3115 31805 3238 3241 31806 3220 3210 31807 3127 3118 31808 3129 3123 31809 3241 3227 31810 3127 3118 31811 3242 3228 31812 3241 3227 31813 3131 3122 31814 3133 3127 31815 3245 3231 31816 3131 3122 31817 3246 3242 31818 3245 3231 31819 3135 3126 31820 3249 3234 31821 3246 3242 31822 3137 3128 31823 3250 3238 31824 3249 3234 31825 3139 3130 31826 3141 3132 31827 3223 3214 31828 3139 3130 31829 3224 3239 31830 3223 3214 31831 3143 3134 31832 3145 3136 31833 3227 3217 31834 3143 3134 31835 3228 3235 31836 3227 3217 31837 3147 3138 31838 3149 3143 31839 3231 3220 31840 3147 3138 31841 3232 3240 31842 3231 3220 31843 3151 3142 31844 3153 3144 31845 3235 3222 31846 3151 3142 31847 3236 3223 31848 3235 3222 31849 3155 3146 31850 3157 3151 31851 3201 3190 31852 3155 3146 31853 3202 3204 31854 3201 3190 31855 3159 3150 31856 3197 3187 31857 3202 3204 31858 3161 3155 31859 3198 3208 31860 3197 3187 31861 3163 3154 31862 3165 3159 31863 3193 3184 31864 3163 3154 31865 3194 3203 31866 3193 3184 31867 3167 3158 31868 3189 3181 31869 3194 3203 31870 3169 3160 31871 3190 3207 31872 3189 3181 31873 3171 3162 31874 3173 3164 31875 3217 3202 31876 3171 3162 31877 3218 3206 31878 3217 3202 31879 3175 3166 31880 3177 3170 31881 3213 3198 31882 3175 3166 31883 3179 3172 31884 3214 3199 31885 3177 3170 31886 3181 3174 31887 3209 3196 31888 3179 3172 31889 3210 3205 31890 3209 3196 31891 3183 3176 31892 3185 3178 31893 3205 3193 31894 3183 3176 31895 3206 3209 31896 3205 3193 31897 3124 3115 31898 2585 2574 31899 3251 3243 31900 2586 2587 31901 2586 2587 31902 3254 3246 31903 2580 2570 31904 3268 3260 31905 3269 3261 31906 2561 2552 31907 3279 3272 31908 3280 3271 31909 3108 3098 31910 3111 3101 31911 3281 3274 31912 3114 3105 31913 3282 3273 31914 3252 3244 31915 3114 3105 31916 3411 3407 31917 3412 3404 31918 3414 3406 31919 3415 3409 31920 3411 3407 31921 3416 3408 31922 3417 3411 31923 3415 3409 31924 3418 3410 31925 3419 3413 31926 3417 3411 31927 3420 3412 31928 3421 3415 31929 3419 3413 31930 3422 3414 31931 3423 3417 31932 3421 3415 31933 3424 3416 31934 3425 3419 31935 3423 3417 31936 3426 3418 31937 3427 3421 31938 3425 3419 31939 3428 3420 31940 3429 3423 31941 3427 3421 31942 3430 3422 31943 3431 3425 31944 3429 3423 31945 3432 3424 31946 3433 3427 31947 3431 3425 31948 3434 3426 31949 3435 3429 31950 3433 3427 31951 3436 3428 31952 3437 3431 31953 3435 3429 31954 3438 3430 31955 3439 3433 31956 3437 3431 31957 3440 3432 31958 3441 3435 31959 3439 3433 31960 3442 3434 31961 3443 3437 31962 3441 3435 31963 3444 3436 31964 3445 3439 31965 3443 3437 31966 3446 3438 31967 3447 3442 31968 3445 3439 31969 3448 3440 31970 3450 3444 31971 3449 3441 31972 3448 3440 31973 3452 3446 31974 3451 3443 31975 3450 3444 31976 3454 3448 31977 3453 3445 31978 3452 3446 31979 3456 3450 31980 3455 3447 31981 3454 3448 31982 3458 3452 31983 3457 3449 31984 3456 3450 31985 3460 3454 31986 3459 3451 31987 3458 3452 31988 3462 3456 31989 3461 3453 31990 3460 3454 31991 3464 3458 31992 3463 3455 31993 3462 3456 31994 3466 3460 31995 3465 3457 31996 3464 3458 31997 3468 3462 31998 3467 3459 31999 3466 3460 32000 3470 3464 32001 3469 3461 32002 3468 3462 32003 3472 3465 32004 3471 3463 32005 3470 3464 32006 3473 3467 32007 3471 3463 32008 3474 3466 32009 3413 3405 32010 3412 3404 32011 3474 3466 32012 3410 3401 32013 3402 3402 32014 3411 3407 32015 3406 3396 32016 3410 3401 32017 3415 3409 32018 3404 3394 32019 3406 3396 32020 3417 3411 32021 3405 3395 32022 3404 3394 32023 3419 3413 32024 3407 3397 32025 3405 3395 32026 3421 3415 32027 3398 3389 32028 3407 3397 32029 3423 3417 32030 3396 3387 32031 3398 3389 32032 3425 3419 32033 3397 3388 32034 3396 3387 32035 3427 3421 32036 3408 3398 32037 3397 3388 32038 3429 3423 32039 3400 3391 32040 3408 3398 32041 3431 3425 32042 3399 3390 32043 3400 3391 32044 3433 3427 32045 3384 3376 32046 3399 3390 32047 3435 3429 32048 3382 3374 32049 3384 3376 32050 3437 3431 32051 3383 3375 32052 3382 3374 32053 3439 3433 32054 3392 3383 32055 3383 3375 32056 3441 3435 32057 3381 3373 32058 3392 3383 32059 3443 3437 32060 3379 3371 32061 3381 3373 32062 3445 3439 32063 3380 3372 32064 3379 3371 32065 3447 3442 32066 3391 3382 32067 3380 3372 32068 3449 3441 32069 3451 3443 32070 3390 3381 32071 3449 3441 32072 3453 3445 32073 3388 3379 32074 3451 3443 32075 3455 3447 32076 3389 3380 32077 3453 3445 32078 3457 3449 32079 3395 3386 32080 3455 3447 32081 3459 3451 32082 3387 3378 32083 3457 3449 32084 3461 3453 32085 3385 3377 32086 3459 3451 32087 3463 3455 32088 3386 3385 32089 3461 3453 32090 3393 3384 32091 3386 3385 32092 3465 3457 32093 3467 3459 32094 3394 3400 32095 3465 3457 32096 3409 3399 32097 3394 3400 32098 3469 3461 32099 3471 3463 32100 3403 3393 32101 3469 3461 32102 3401 3392 32103 3403 3393 32104 3473 3467 32105 3412 3404 32106 3402 3402 32107 3473 3467 32108 3475 3471 32109 3476 3468 32110 3478 3470 32111 3479 3473 32112 3475 3471 32113 3480 3472 32114 3481 3475 32115 3479 3473 32116 3482 3474 32117 3483 3478 32118 3481 3475 32119 3484 3476 32120 3486 3480 32121 3485 3477 32122 3484 3476 32123 3488 3482 32124 3487 3479 32125 3486 3480 32126 3490 3484 32127 3489 3481 32128 3488 3482 32129 3492 3519 32130 3491 3483 32131 3490 3484 32132 3496 3489 32133 3493 3485 32134 3495 3487 32135 3498 3491 32136 3497 3488 32137 3496 3489 32138 3500 3493 32139 3499 3490 32140 3498 3491 32141 3502 3495 32142 3501 3492 32143 3500 3493 32144 3504 3497 32145 3503 3494 32146 3502 3495 32147 3506 3499 32148 3505 3496 32149 3504 3497 32150 3508 3501 32151 3507 3498 32152 3506 3499 32153 3510 3548 32154 3509 3500 32155 3508 3501 32156 3512 3503 32157 3496 3489 32158 3511 3502 32159 3513 3504 32160 3498 3491 32161 3512 3503 32162 3514 3505 32163 3500 3493 32164 3513 3504 32165 3515 3506 32166 3502 3495 32167 3514 3505 32168 3504 3497 32169 3502 3495 32170 3516 3507 32171 3506 3499 32172 3504 3497 32173 3517 3508 32174 3508 3501 32175 3506 3499 32176 3518 3509 32177 3510 3548 32178 3508 3501 32179 3519 3510 32180 3520 3520 32181 3521 3511 32182 3511 3502 32183 3521 3511 32184 3522 3512 32185 3512 3503 32186 3522 3512 32187 3523 3513 32188 3513 3504 32189 3523 3513 32190 3524 3514 32191 3514 3505 32192 3524 3514 32193 3525 3515 32194 3515 3506 32195 3525 3515 32196 3526 3516 32197 3516 3507 32198 3526 3516 32199 3527 3517 32200 3517 3508 32201 3527 3517 32202 3528 3518 32203 3518 3509 32204 3478 3470 32205 3477 3469 32206 3493 3485 32207 3480 3472 32208 3478 3470 32209 3497 3488 32210 3482 3474 32211 3480 3472 32212 3499 3490 32213 3484 3476 32214 3482 3474 32215 3501 3492 32216 3503 3494 32217 3486 3480 32218 3501 3492 32219 3505 3496 32220 3488 3482 32221 3503 3494 32222 3507 3498 32223 3490 3484 32224 3505 3496 32225 3509 3500 32226 3492 3519 32227 3507 3498 32228 3521 3511 32229 3520 3520 32230 3475 3471 32231 3522 3512 32232 3521 3511 32233 3479 3473 32234 3523 3513 32235 3522 3512 32236 3481 3475 32237 3524 3514 32238 3523 3513 32239 3483 3478 32240 3485 3477 32241 3525 3515 32242 3483 3478 32243 3487 3479 32244 3526 3516 32245 3485 3477 32246 3489 3481 32247 3527 3517 32248 3487 3479 32249 3491 3483 32250 3528 3518 32251 3489 3481 32252 3529 3523 32253 3530 3521 32254 3476 3468 32255 3531 3525 32256 3532 3522 32257 3529 3523 32258 3533 3527 32259 3534 3524 32260 3531 3525 32261 3535 3563 32262 3536 3526 32263 3533 3527 32264 3535 3563 32265 3537 3528 32266 3536 3526 32267 3537 3528 32268 3539 3530 32269 3538 3529 32270 3539 3530 32271 3541 3532 32272 3540 3531 32273 3541 3532 32274 3491 3483 32275 3542 3533 32276 3494 3486 32277 3543 3534 32278 3495 3487 32279 3543 3534 32280 3545 3536 32281 3544 3535 32282 3545 3536 32283 3547 3538 32284 3546 3537 32285 3547 3538 32286 3549 3540 32287 3548 3539 32288 3549 3540 32289 3551 3542 32290 3550 3541 32291 3551 3542 32292 3553 3544 32293 3552 3543 32294 3553 3544 32295 3555 3546 32296 3554 3545 32297 3555 3546 32298 3509 3500 32299 3556 3547 32300 3495 3487 32301 3544 3535 32302 3511 3502 32303 3544 3535 32304 3546 3537 32305 3557 3549 32306 3546 3537 32307 3548 3539 32308 3558 3550 32309 3548 3539 32310 3550 3541 32311 3559 3551 32312 3552 3543 32313 3561 3553 32314 3550 3541 32315 3554 3545 32316 3562 3554 32317 3552 3543 32318 3556 3547 32319 3563 3555 32320 3554 3545 32321 3510 3548 32322 3519 3510 32323 3556 3547 32324 3520 3520 32325 3511 3502 32326 3564 3556 32327 3564 3556 32328 3557 3549 32329 3565 3557 32330 3565 3557 32331 3558 3550 32332 3566 3558 32333 3566 3558 32334 3559 3551 32335 3567 3559 32336 3567 3559 32337 3560 3552 32338 3568 3560 32339 3568 3560 32340 3561 3553 32341 3569 3561 32342 3569 3561 32343 3562 3554 32344 3570 3562 32345 3570 3562 32346 3563 3555 32347 3528 3518 32348 3530 3521 32349 3543 3534 32350 3477 3469 32351 3532 3522 32352 3545 3536 32353 3530 3521 32354 3534 3524 32355 3547 3538 32356 3532 3522 32357 3536 3526 32358 3549 3540 32359 3534 3524 32360 3536 3526 32361 3538 3529 32362 3549 3540 32363 3538 3529 32364 3540 3531 32365 3551 3542 32366 3540 3531 32367 3542 3533 32368 3553 3544 32369 3542 3533 32370 3492 3519 32371 3555 3546 32372 3564 3556 32373 3529 3523 32374 3520 3520 32375 3565 3557 32376 3531 3525 32377 3564 3556 32378 3566 3558 32379 3533 3527 32380 3565 3557 32381 3567 3559 32382 3535 3563 32383 3566 3558 32384 3567 3559 32385 3568 3560 32386 3535 3563 32387 3568 3560 32388 3569 3561 32389 3537 3528 32390 3569 3561 32391 3570 3562 32392 3539 3530 32393 3570 3562 32394 3528 3518 32395 3541 3532 32396 3571 3653 32397 3572 3564 32398 3574 3566 32399 3571 3653 32400 3575 3567 32401 3572 3564 32402 3577 3578 32403 3578 3569 32404 3580 3571 32405 3582 3573 32406 3580 3571 32407 3581 3572 32408 3584 3658 32409 3582 3573 32410 3583 3574 32411 3588 3661 32412 3585 3575 32413 3587 3577 32414 3587 3577 32415 3586 3576 32416 3575 3567 32417 3578 3569 32418 3577 3578 32419 3573 3565 32420 3592 3594 32421 3589 3579 32422 3591 3581 32423 3593 3593 32424 3594 3582 32425 3589 3579 32426 3598 3624 32427 3595 3583 32428 3597 3585 32429 3595 3583 32430 3599 3586 32431 3596 3584 32432 3601 3601 32433 3602 3588 32434 3604 3590 32435 3604 3590 32436 3603 3589 32437 3606 3592 32438 3606 3592 32439 3605 3591 32440 3593 3593 32441 3608 3596 32442 3592 3594 32443 3607 3595 32444 3611 3687 32445 3608 3596 32446 3610 3598 32447 3608 3596 32448 3607 3595 32449 3609 3597 32450 3611 3687 32451 3610 3598 32452 3601 3601 32453 3601 3601 32454 3613 3600 32455 3602 3588 32456 3615 3607 32457 3616 3603 32458 3618 3605 32459 3619 3627 32460 3620 3606 32461 3615 3607 32462 3622 3609 32463 3618 3605 32464 3621 3608 32465 3624 3620 32466 3622 3609 32467 3623 3610 32468 3623 3610 32469 3621 3608 32470 3626 3612 32471 3621 3608 32472 3617 3604 32473 3625 3611 32474 3616 3603 32475 3628 3614 32476 3617 3604 32477 3620 3606 32478 3629 3615 32479 3616 3603 32480 3602 3588 32481 3614 3602 32482 3631 3617 32483 3623 3610 32484 3632 3618 32485 3624 3620 32486 3626 3612 32487 3634 3621 32488 3623 3610 32489 3599 3586 32490 3595 3583 32491 3636 3623 32492 3637 3646 32493 3635 3622 32494 3598 3624 32495 3620 3606 32496 3638 3625 32497 3629 3615 32498 3640 3642 32499 3638 3625 32500 3619 3627 32501 3607 3595 32502 3641 3628 32503 3612 3599 32504 3591 3581 32505 3643 3630 32506 3607 3595 32507 3591 3581 32508 3590 3580 32509 3643 3630 32510 3594 3582 32511 3645 3632 32512 3590 3580 32513 3605 3591 32514 3646 3633 32515 3594 3582 32516 3603 3589 32517 3647 3634 32518 3605 3591 32519 3603 3589 32520 3602 3588 32521 3647 3634 32522 3614 3602 32523 3624 3620 32524 3630 3616 32525 3613 3600 32526 3622 3609 32527 3614 3602 32528 3610 3598 32529 3618 3605 32530 3613 3600 32531 3610 3598 32532 3609 3597 32533 3618 3605 32534 3612 3599 32535 3619 3627 32536 3609 3597 32537 3612 3599 32538 3642 3629 32539 3619 3627 32540 3650 3641 32541 3631 3617 32542 3651 3637 32543 3648 3635 32544 3652 3638 32545 3630 3616 32546 3633 3619 32547 3632 3618 32548 3654 3640 32549 3655 3648 32550 3653 3639 32551 3634 3621 32552 3642 3629 32553 3641 3628 32554 3651 3637 32555 3651 3637 32556 3652 3638 32557 3642 3629 32558 3653 3639 32559 3638 3625 32560 3654 3640 32561 3655 3648 32562 3639 3626 32563 3653 3639 32564 3599 3586 32565 3636 3623 32566 3657 3644 32567 3658 3650 32568 3600 3587 32569 3657 3644 32570 3660 3649 32571 3659 3645 32572 3597 3585 32573 3661 3647 32574 3637 3646 32575 3659 3645 32576 3629 3615 32577 3659 3645 32578 3628 3614 32579 3626 3612 32580 3625 3611 32581 3657 3644 32582 3657 3644 32583 3656 3643 32584 3626 3612 32585 3629 3615 32586 3639 3626 32587 3659 3645 32588 3571 3653 32589 3574 3566 32590 3663 3652 32591 3575 3567 32592 3571 3653 32593 3664 3654 32594 3580 3571 32595 3665 3655 32596 3577 3578 32597 3580 3571 32598 3582 3573 32599 3665 3655 32600 3668 3668 32601 3667 3657 32602 3584 3658 32603 3587 3577 32604 3669 3659 32605 3588 3661 32606 3575 3567 32607 3664 3654 32608 3587 3577 32609 3577 3578 32610 3666 3656 32611 3574 3566 32612 3663 3652 32613 3662 3651 32614 3672 3663 32615 3664 3654 32616 3663 3652 32617 3673 3664 32618 3666 3656 32619 3665 3655 32620 3675 3666 32621 3665 3655 32622 3667 3657 32623 3674 3665 32624 3677 3696 32625 3676 3667 32626 3668 3668 32627 3669 3659 32628 3678 3669 32629 3670 3660 32630 3664 3654 32631 3673 3664 32632 3669 3659 32633 3662 3651 32634 3666 3656 32635 3671 3662 32636 3654 3640 32637 3640 3642 32638 3652 3638 32639 3648 3635 32640 3633 3619 32641 3652 3638 32642 3681 3682 32643 3682 3672 32644 3684 3674 32645 3683 3673 32646 3685 3675 32647 3684 3674 32648 3690 3680 32649 3687 3677 32650 3689 3679 32651 3692 3686 32652 3690 3680 32653 3691 3681 32654 3641 3628 32655 3681 3682 32656 3650 3641 32657 3631 3617 32658 3650 3641 32659 3686 3676 32660 3645 3632 32661 3693 3683 32662 3644 3631 32663 3644 3631 32664 3694 3684 32665 3643 3630 32666 3646 3633 32667 3647 3634 32668 3695 3685 32669 3645 3632 32670 3646 3633 32671 3693 3683 32672 3682 3672 32673 3687 3677 32674 3683 3673 32675 3693 3683 32676 3689 3679 32677 3694 3684 32678 3694 3684 32679 3688 3678 32680 3682 3672 32681 3685 3675 32682 3683 3673 32683 3692 3686 32684 3695 3685 32685 3685 3675 32686 3691 3681 32687 3693 3683 32688 3695 3685 32689 3689 3679 32690 3696 3689 32691 3611 3687 32692 3697 3688 32693 3608 3596 32694 3611 3687 32695 3698 3690 32696 3699 3708 32697 3592 3594 32698 3698 3690 32699 3699 3708 32700 3700 3691 32701 3592 3594 32702 3700 3691 32703 3701 3692 32704 3589 3579 32705 3702 3694 32706 3606 3592 32707 3701 3692 32708 3697 3688 32709 3601 3601 32710 3703 3693 32711 3604 3590 32712 3606 3592 32713 3704 3695 32714 3670 3660 32715 3668 3668 32716 3588 3661 32717 3583 3574 32718 3585 3575 32719 3584 3658 32720 3670 3660 32721 3679 3670 32722 3668 3668 32723 3573 3565 32724 3705 3697 32725 3578 3569 32726 3572 3564 32727 3707 3699 32728 3573 3565 32729 3572 3564 32730 3576 3568 32731 3707 3699 32732 3576 3568 32733 3586 3576 32734 3708 3700 32735 3585 3575 32736 3710 3702 32737 3586 3576 32738 3583 3574 32739 3581 3572 32740 3712 3704 32741 3581 3572 32742 3579 3570 32743 3711 3703 32744 3578 3569 32745 3706 3698 32746 3579 3570 32747 3698 3690 32748 3714 3706 32749 3699 3708 32750 3700 3691 32751 3699 3708 32752 3716 3709 32753 3700 3691 32754 3716 3709 32755 3701 3692 32756 3701 3692 32757 3717 3710 32758 3702 3694 32759 3704 3695 32760 3702 3694 32761 3719 3712 32762 3703 3693 32763 3720 3713 32764 3697 3688 32765 3697 3688 32766 3721 3714 32767 3696 3689 32768 3696 3689 32769 3722 3715 32770 3698 3690 32771 3720 3713 32772 3703 3693 32773 3719 3712 32774 3585 3575 32775 3583 3574 32776 3710 3702 32777 3712 3704 32778 3720 3713 32779 3710 3702 32780 3721 3714 32781 3720 3713 32782 3711 3703 32783 3722 3715 32784 3721 3714 32785 3713 3705 32786 3706 3698 32787 3714 3706 32788 3713 3705 32789 3705 3697 32790 3715 3707 32791 3706 3698 32792 3707 3699 32793 3708 3700 32794 3716 3709 32795 3705 3697 32796 3707 3699 32797 3715 3707 32798 3717 3710 32799 3708 3700 32800 3718 3711 32801 3718 3711 32802 3709 3701 32803 3719 3712 32804 3726 3720 32805 3723 3716 32806 3725 3718 32807 3728 3731 32808 3727 3719 32809 3726 3720 32810 3729 3806 32811 3730 3721 32812 3732 3723 32813 3730 3721 32814 3733 3724 32815 3731 3722 32816 3733 3724 32817 3735 3726 32818 3734 3725 32819 3740 3732 32820 3737 3728 32821 3739 3730 32822 3739 3730 32823 3727 3719 32824 3740 3732 32825 3729 3806 32826 3732 3723 32827 3724 3717 32828 3744 3736 32829 3741 3733 32830 3743 3735 32831 3745 3749 32832 3741 3733 32833 3746 3737 32834 3750 3741 32835 3747 3738 32836 3749 3740 32837 3747 3738 32838 3750 3741 32839 3752 3743 32840 3753 3755 32841 3754 3744 32842 3756 3746 32843 3754 3744 32844 3757 3747 32845 3755 3745 32846 3757 3747 32847 3745 3749 32848 3758 3748 32849 3743 3735 32850 3742 3734 32851 3760 3751 32852 3759 3750 32853 3761 3752 32854 3763 3754 32855 3764 3784 32856 3760 3751 32857 3763 3754 32858 3762 3753 32859 3761 3752 32860 3765 3756 32861 3753 3755 32862 3756 3746 32863 3765 3756 32864 3767 3761 32865 3768 3758 32866 3770 3760 32867 3771 3782 32868 3767 3761 32869 3772 3762 32870 3769 3759 32871 3768 3758 32872 3774 3764 32873 3774 3764 32874 3773 3763 32875 3776 3766 32876 3778 3768 32877 3774 3764 32878 3777 3767 32879 3779 3769 32880 3769 3759 32881 3778 3768 32882 3770 3760 32883 3769 3759 32884 3780 3770 32885 3772 3762 32886 3770 3760 32887 3781 3771 32888 3756 3746 32889 3782 3772 32890 3766 3757 32891 3785 3775 32892 3776 3766 32893 3784 3774 32894 3777 3767 32895 3776 3766 32896 3786 3776 32897 3752 3743 32898 3787 3777 32899 3747 3738 32900 3747 3738 32901 3788 3778 32902 3748 3739 32903 3791 3796 32904 3790 3780 32905 3781 3771 32906 3790 3780 32907 3792 3781 32908 3772 3762 32909 3794 3791 32910 3793 3783 32911 3764 3784 32912 3743 3735 32913 3760 3751 32914 3795 3785 32915 3744 3736 32916 3743 3735 32917 3796 3786 32918 3746 3737 32919 3744 3736 32920 3797 3787 32921 3798 3788 32922 3758 3748 32923 3797 3787 32924 3755 3745 32925 3758 3748 32926 3799 3789 32927 3755 3745 32928 3799 3789 32929 3756 3746 32930 3766 3757 32931 3783 3773 32932 3775 3765 32933 3765 3756 32934 3766 3757 32935 3773 3763 32936 3762 3753 32937 3765 3756 32938 3768 3758 32939 3767 3761 32940 3763 3754 32941 3768 3758 32942 3771 3782 32943 3764 3784 32944 3767 3761 32945 3801 3823 32946 3794 3791 32947 3771 3782 32948 3802 3833 32949 3803 3792 32950 3782 3772 32951 3800 3790 32952 3783 3773 32953 3804 3793 32954 3806 3795 32955 3785 3775 32956 3805 3794 32957 3807 3801 32958 3786 3776 32959 3806 3795 32960 3802 3833 32961 3793 3783 32962 3803 3792 32963 3801 3823 32964 3804 3793 32965 3794 3791 32966 3806 3795 32967 3805 3794 32968 3790 3780 32969 3807 3801 32970 3806 3795 32971 3791 3796 32972 3752 3743 32973 3808 3797 32974 3787 3777 32975 3810 3803 32976 3808 3797 32977 3751 3742 32978 3748 3739 32979 3811 3799 32980 3749 3740 32981 3813 3802 32982 3811 3799 32983 3789 3779 32984 3781 3771 32985 3780 3770 32986 3811 3799 32987 3810 3803 32988 3778 3768 32989 3808 3797 32990 3786 3776 32991 3809 3798 32992 3777 3767 32993 3813 3802 32994 3791 3796 32995 3811 3799 32996 3815 3812 32997 3724 3717 32998 3814 3804 32999 3814 3804 33000 3723 3716 33001 3816 3805 33002 3730 3721 33003 3729 3806 33004 3818 3808 33005 3819 3809 33006 3733 3724 33007 3818 3808 33008 3820 3817 33009 3735 3726 33010 3819 3809 33011 3739 3730 33012 3738 3729 33013 3822 3811 33014 3727 3719 33015 3739 3730 33016 3816 3805 33017 3729 3806 33018 3724 3717 33019 3817 3807 33020 3824 3821 33021 3815 3812 33022 3823 3813 33023 3823 3813 33024 3814 3804 33025 3825 3814 33026 3827 3816 33027 3818 3808 33028 3826 3815 33029 3828 3818 33030 3819 3809 33031 3827 3816 33032 3829 3849 33033 3820 3817 33034 3828 3818 33035 3822 3811 33036 3821 3810 33037 3831 3820 33038 3816 3805 33039 3822 3811 33040 3825 3814 33041 3817 3807 33042 3815 3812 33043 3826 3815 33044 3805 3794 33045 3804 3793 33046 3792 3781 33047 3784 3774 33048 3800 3790 33049 3805 3794 33050 3833 3834 33051 3834 3824 33052 3836 3826 33053 3838 3835 33054 3837 3827 33055 3834 3824 33056 3842 3839 33057 3839 3828 33058 3841 3830 33059 3841 3830 33060 3840 3829 33061 3844 3832 33062 3793 3783 33063 3802 3833 33064 3833 3834 33065 3834 3824 33066 3802 3833 33067 3838 3835 33068 3797 3787 33069 3796 3786 33070 3846 3837 33071 3796 3786 33072 3795 3785 33073 3845 3836 33074 3837 3827 33075 3799 3789 33076 3847 3838 33077 3847 3838 33078 3798 3788 33079 3846 3837 33080 3836 3826 33081 3835 3825 33082 3839 3828 33083 3846 3837 33084 3845 3836 33085 3841 3830 33086 3845 3836 33087 3836 3826 33088 3842 3839 33089 3840 3829 33090 3835 3825 33091 3843 3831 33092 3843 3831 33093 3837 3827 33094 3844 3832 33095 3844 3832 33096 3847 3838 33097 3841 3830 33098 3761 3752 33099 3848 3840 33100 3753 3755 33101 3759 3750 33102 3850 3842 33103 3761 3752 33104 3851 3844 33105 3850 3842 33106 3742 3734 33107 3741 3733 33108 3852 3843 33109 3742 3734 33110 3853 3845 33111 3852 3843 33112 3745 3749 33113 3854 3848 33114 3853 3845 33115 3757 3747 33116 3849 3841 33117 3855 3846 33118 3753 3755 33119 3754 3744 33120 3856 3847 33121 3757 3747 33122 3821 3810 33123 3738 3729 33124 3820 3817 33125 3737 3728 33126 3736 3727 33127 3738 3729 33128 3830 3819 33129 3821 3810 33130 3829 3849 33131 3725 3718 33132 3732 3723 33133 3858 3851 33134 3859 3852 33135 3726 3720 33136 3858 3851 33137 3860 3853 33138 3728 3731 33139 3859 3852 33140 3740 3732 33141 3728 3731 33142 3861 3854 33143 3737 3728 33144 3740 3732 33145 3862 3855 33146 3864 3857 33147 3734 3725 33148 3863 3856 33149 3731 3722 33150 3734 3725 33151 3865 3858 33152 3732 3723 33153 3731 3722 33154 3857 3850 33155 3850 3842 33156 3851 3844 33157 3867 3860 33158 3866 3859 33159 3851 3844 33160 3868 3861 33161 3852 3843 33162 3853 3845 33163 3868 3861 33164 3853 3845 33165 3854 3848 33166 3869 3862 33167 3870 3863 33168 3854 3848 33169 3871 3864 33170 3855 3846 33171 3849 3841 33172 3873 3866 33173 3872 3865 33174 3849 3841 33175 3874 3867 33176 3848 3840 33177 3850 3842 33178 3874 3867 33179 3855 3846 33180 3873 3866 33181 3856 3847 33182 3736 3727 33183 3737 3728 33184 3863 3856 33185 3863 3856 33186 3862 3855 33187 3873 3866 33188 3872 3865 33189 3864 3857 33190 3873 3866 33191 3874 3867 33192 3865 3858 33193 3872 3865 33194 3874 3867 33195 3867 3860 33196 3865 3858 33197 3866 3859 33198 3858 3851 33199 3867 3860 33200 3859 3852 33201 3868 3861 33202 3860 3853 33203 3868 3861 33204 3859 3852 33205 3866 3859 33206 3861 3854 33207 3860 3853 33208 3870 3863 33209 3862 3855 33210 3861 3854 33211 3871 3864 33212 5812 6027 38100 5809 5794 38101 5811 5796 38102 5813 6152 38103 5814 5797 38104 5816 5799 38105 5817 6025 38106 5818 5800 38107 5820 5802 38108 5821 6022 38109 5822 5803 38110 5824 5805 38111 5825 5989 38112 5826 5806 38113 5828 5808 38114 5830 5810 38115 5828 5808 38116 5829 5809 38117 5832 6013 38118 5830 5810 38119 5831 5811 38120 5836 5973 38121 5833 5812 38122 5835 5814 38123 5840 6107 38124 5837 5815 38125 5839 5817 38126 5841 6106 38127 5842 5818 38128 5844 5820 38129 5845 6105 38130 5846 5821 38131 5848 5823 38132 5849 6104 38133 5850 5824 38134 5852 5826 38135 5853 6103 38136 5854 5827 38137 5856 5829 38138 5858 5831 38139 5856 5829 38140 5857 5830 38141 5860 6099 38142 5858 5831 38143 5859 5832 38144 5864 6102 38145 5861 5833 38146 5863 5835 38147 5865 6078 38148 5866 5836 38149 5868 5838 38150 5869 6113 38151 5870 5839 38152 5872 5841 38153 5873 6112 38154 5874 5842 38155 5876 5844 38156 5880 6111 38157 5877 5845 38158 5879 5847 38159 5881 6110 38160 5882 5848 38161 5884 5850 38162 5884 5850 38163 5883 5849 38164 5886 5852 38165 5888 6100 38166 5886 5852 38167 5887 5853 38168 5892 6109 38169 5889 5854 38170 5891 5856 38171 5907 6093 38172 5908 5871 38173 5910 5873 38174 5914 5891 38175 5911 5874 38176 5913 5876 38177 5910 5873 38178 5909 5872 38179 5916 5878 38180 5918 5888 38181 5913 5876 38182 5917 5879 38183 5922 5997 38184 5919 5880 38185 5921 5882 38186 5923 6074 38187 5924 5883 38188 5926 5885 38189 5927 6010 38190 5928 5886 38191 5918 5888 38192 5913 5876 38193 5930 5889 38194 5914 5891 38195 5922 5997 38196 5932 5892 38197 5934 5894 38198 5935 6090 38199 5936 5895 38200 5938 5897 38201 5937 5896 38202 5939 5898 38203 5941 5900 38204 5945 5996 38205 5942 5901 38206 5944 5903 38207 5946 6088 38208 5947 5904 38209 5948 5905 38210 5949 6165 38211 5950 5906 38212 5952 5908 38213 5949 6165 38214 5953 5909 38215 5950 5906 38216 5955 5976 38217 5956 5911 38218 5958 5913 38219 5959 5915 38220 5958 5913 38221 5960 5914 38222 5961 5979 38223 5959 5915 38224 5962 5916 38225 5963 5948 38226 5964 5917 38227 5966 5919 38228 5967 6095 38229 5911 5874 38230 5968 5920 38231 5931 5890 38232 5969 5921 38233 5914 5891 38234 5940 5899 38235 5970 5922 38236 5941 5900 38237 5955 5976 38238 5972 5924 38239 5956 5911 38240 5974 5974 38241 5975 5926 38242 5977 5928 38243 5978 5946 38244 5979 5929 38245 5981 5931 38246 5916 5878 38247 5915 5877 38248 5983 5933 38249 5984 5947 38250 5985 5934 38251 5987 5936 38252 5991 6008 38253 5988 5937 38254 5990 5939 38255 5995 5961 38256 5992 5940 38257 5994 5942 38258 5982 5932 38259 5996 5943 38260 5983 5933 38261 5998 5960 38262 5999 5945 38263 5978 5946 38264 5966 5919 38265 5984 5947 38266 5963 5948 38267 6000 6092 38268 6001 5949 38269 6003 5951 38270 6007 6098 38271 6004 5952 38272 6006 5954 38273 6002 5950 38274 6008 5955 38275 6003 5951 38276 6010 6114 38277 6011 5957 38278 6008 5955 38279 6010 6114 38280 6012 5958 38281 6011 5957 38282 5994 5942 38283 5999 5945 38284 5995 5961 38285 6017 6168 38286 6014 5962 38287 6016 5964 38288 6018 6143 38289 6019 5965 38290 6021 5967 38291 6022 6094 38292 6023 5968 38293 6025 5970 38294 6025 5970 38295 6024 5969 38296 6027 5972 38297 6027 5972 38298 6026 5971 38299 6020 5966 38300 5999 5945 38301 5828 5808 38302 5979 5929 38303 6005 5953 38304 6004 5952 38305 5836 5973 38306 5975 5926 38307 5974 5974 38308 5947 5904 38309 6028 6086 38310 5951 5907 38311 6029 5975 38312 6030 6096 38313 6029 5975 38314 5954 5910 38315 6031 6184 38316 5955 5976 38317 6032 5977 38318 6032 5977 38319 5958 5913 38320 6033 5978 38321 6034 6085 38322 6033 5978 38323 5961 5979 38324 5964 5917 38325 5963 5948 38326 5925 5884 38327 6031 6184 38328 6035 5980 38329 5955 5976 38330 6036 5988 38331 5987 5936 38332 6037 5981 38333 6038 6002 38334 6016 5964 38335 6039 5982 38336 5986 5935 38337 6040 5983 38338 6037 5981 38339 5990 5939 38340 5989 5938 38341 6043 5986 38342 5825 5989 38343 5994 5942 38344 6044 5987 38345 5926 5885 38346 5963 5948 38347 6036 5988 38348 5994 5942 38349 5825 5989 38350 5999 5945 38351 6048 6142 38352 6045 5990 38353 6047 5992 38354 6040 5983 38355 5986 5935 38356 6049 5993 38357 6051 5995 38358 6050 5994 38359 5942 5901 38360 6052 6089 38361 6051 5995 38362 5945 5996 38363 5932 5892 38364 5922 5997 38365 6053 5998 38366 6017 6168 38367 6016 5964 38368 6047 5992 38369 6057 6170 38370 6055 6000 38371 6038 6002 38372 5934 5894 38373 6058 6003 38374 5922 5997 38375 5935 6090 38376 6059 6004 38377 5936 5895 38378 6060 6005 38379 5939 5898 38380 5936 5895 38381 5938 5897 38382 5937 5896 38383 6061 6006 38384 5941 5900 38385 5971 5923 38386 6061 6006 38387 5918 5888 38388 5991 6008 38389 5927 6010 38390 5991 6008 38391 5990 5939 38392 6063 6009 38393 6064 6011 38394 5990 5939 38395 6065 6012 38396 5918 5888 38397 5929 5887 38398 5913 5876 38399 6066 6014 38400 5979 5929 38401 5832 6013 38402 5979 5929 38403 6066 6014 38404 5980 5930 38405 5908 5871 38406 6068 6016 38407 5909 5872 38408 5909 5872 38409 6069 6017 38410 5915 5877 38411 6071 6097 38412 5982 5932 38413 6070 6018 38414 6071 6097 38415 6072 6019 38416 5982 5932 38417 5817 6025 38418 5820 5802 38419 6074 6021 38420 6076 6118 38421 5821 6022 38422 6075 6023 38423 6077 6172 38424 6078 6024 38425 6074 6021 38426 5817 6025 38427 6078 6024 38428 5816 5799 38429 5809 5794 38430 5812 6027 38431 5948 5905 38432 5867 5837 38433 5866 5836 38434 6082 6030 38435 5871 5840 38436 5870 5839 38437 6084 6032 38438 5875 5843 38439 5874 5842 38440 6086 6034 38441 5878 5846 38442 6087 6035 38443 5879 5847 38444 5883 5849 38445 5882 5848 38446 6090 6038 38447 5883 5849 38448 6090 6038 38449 5885 5851 38450 5885 5851 38451 6091 6039 38452 5887 5853 38453 5891 5856 38454 5890 5855 38455 6094 6042 38456 6081 6029 38457 6095 6043 38458 6082 6030 38459 6084 6032 38460 6083 6031 38461 6098 6046 38462 6085 6033 38463 6099 6047 38464 6086 6034 38465 6088 6036 38466 6087 6035 38467 6102 6050 38468 6090 6038 38469 6089 6037 38470 6104 6052 38471 6090 6038 38472 6104 6052 38473 6091 6039 38474 6091 6039 38475 6105 6053 38476 6092 6040 38477 6093 6041 38478 6107 6055 38479 6094 6042 38480 6095 6043 38481 6109 6057 38482 6096 6044 38483 6099 6047 38484 6111 6059 38485 6100 6048 38486 6102 6050 38487 6101 6049 38488 6114 6062 38489 6104 6052 38490 6103 6051 38491 6116 6064 38492 6105 6053 38493 6104 6052 38494 6117 6065 38495 6105 6053 38496 6117 6065 38497 6106 6054 38498 6107 6055 38499 6119 6067 38500 6108 6056 38501 6121 6147 38502 5897 5861 38503 6111 6059 38504 6109 6057 38505 5893 5857 38506 6110 6058 38507 6119 6067 38508 5905 5869 38509 6120 6068 38510 6117 6065 38511 5903 5867 38512 6118 6066 38513 6117 6065 38514 6116 6064 38515 5903 5867 38516 6116 6064 38517 6115 6063 38518 5902 5866 38519 6114 6062 38520 6113 6061 38521 5901 5865 38522 6111 6059 38523 5898 5862 38524 6112 6060 38525 6041 5984 38526 6123 6070 38527 6037 5981 38528 6036 5988 38529 6037 5981 38530 6125 6072 38531 5926 5885 38532 6036 5988 38533 6126 6073 38534 6127 6091 38535 5923 6074 38536 6126 6073 38537 6128 6115 38538 5974 5974 38539 6129 6075 38540 6128 6115 38541 6130 6076 38542 5974 5974 38543 6131 6101 38544 5810 5795 38545 6130 6076 38546 6132 6108 38547 5838 5816 38548 6133 6077 38549 6134 6080 38550 5866 5836 38551 6135 6079 38552 6136 6081 38553 6081 6029 38554 6134 6080 38555 6137 6116 38556 6095 6043 38557 6136 6081 38558 6137 6116 38559 6138 6082 38560 6095 6043 38561 6138 6082 38562 6139 6083 38563 6109 6057 38564 5924 5883 38565 6140 6084 38566 5925 5884 38567 5975 5926 38568 6028 6086 38569 5976 5927 38570 5975 5926 38571 5947 5904 38572 6028 6086 38573 5952 5908 38574 5951 5907 38575 5946 6088 38576 6051 5995 38577 6052 6089 38578 5934 5894 38579 5934 5894 38580 5933 5893 38581 6051 5995 38582 6061 6006 38583 6062 6007 38584 5931 5890 38585 5930 5889 38586 5938 5897 38587 5931 5890 38588 5929 5887 38589 5935 6090 38590 5930 5889 38591 5928 5886 38592 6059 6004 38593 5929 5887 38594 5964 5917 38595 5961 5979 38596 5965 5918 38597 5925 5884 38598 6034 6085 38599 5964 5917 38600 5976 5927 38601 6141 6087 38602 5924 5883 38603 5977 5928 38604 5976 5927 38605 5923 6074 38606 6129 6075 38607 5977 5928 38608 6127 6091 38609 6007 6098 38610 6006 5954 38611 6000 6092 38612 5980 5930 38613 6067 6015 38614 5908 5871 38615 5981 5931 38616 5980 5930 38617 5907 6093 38618 6046 5991 38619 6045 5990 38620 6022 6094 38621 6053 5998 38622 5967 6095 38623 5932 5892 38624 5969 5921 38625 5933 5893 38626 5968 5920 38627 6062 6007 38628 6050 5994 38629 5969 5921 38630 5971 5923 38631 5943 5902 38632 6062 6007 38633 5970 5922 38634 5944 5903 38635 5971 5923 38636 5972 5924 38637 5954 5910 38638 5973 5925 38639 6035 5980 38640 6030 6096 38641 5972 5924 38642 6011 5957 38643 6013 5959 38644 6071 6097 38645 6009 5956 38646 6011 5957 38647 6070 6018 38648 6003 5951 38649 6009 5956 38650 6069 6017 38651 6068 6016 38652 6000 6092 38653 6069 6017 38654 6067 6015 38655 6007 6098 38656 6068 6016 38657 6066 6014 38658 6004 5952 38659 6067 6015 38660 5832 6013 38661 5833 5812 38662 6066 6014 38663 5831 5811 38664 5834 5813 38665 5832 6013 38666 5859 5832 38667 5862 5834 38668 5860 6099 38669 5887 5853 38670 5890 5855 38671 5888 6100 38672 5887 5853 38673 6092 6040 38674 5890 5855 38675 6092 6040 38676 6106 6054 38677 6093 6041 38678 6106 6054 38679 6118 6066 38680 6107 6055 38681 6118 6066 38682 5904 5868 38683 6119 6067 38684 6133 6077 38685 5837 5815 38686 6131 6101 38687 5835 5814 38688 5834 5813 38689 5864 6102 38690 5860 6099 38691 5861 5833 38692 5831 5811 38693 5831 5811 38694 5829 5809 38695 5860 6099 38696 5829 5809 38697 5827 5807 38698 5858 5831 38699 5826 5806 38700 5853 6103 38701 5827 5807 38702 5823 5804 38703 5822 5803 38704 5852 5826 38705 5818 5800 38706 5845 6105 38707 5819 5801 38708 5814 5797 38709 5841 6106 38710 5815 5798 38711 5811 5796 38712 5810 5795 38713 5840 6107 38714 6135 6079 38715 5865 6078 38716 6132 6108 38717 5863 5835 38718 5862 5834 38719 5892 6109 38720 5888 6100 38721 5889 5854 38722 5859 5832 38723 5859 5832 38724 5857 5830 38725 5888 6100 38726 5855 5828 38727 5884 5850 38728 5857 5830 38729 5854 5827 38730 5881 6110 38731 5855 5828 38732 5850 5824 38733 5877 5845 38734 5851 5825 38735 5846 5821 38736 5873 6112 38737 5847 5822 38738 5842 5818 38739 5869 6113 38740 5843 5819 38741 5839 5817 38742 5838 5816 38743 5868 5838 38744 6124 6071 38745 6123 6070 38746 6010 6114 38747 6124 6071 38748 6010 6114 38749 6125 6072 38750 6126 6073 38751 6125 6072 38752 6002 5950 38753 6001 5949 38754 6127 6091 38755 6002 5950 38756 6006 5954 38757 6129 6075 38758 6001 5949 38759 6006 5954 38760 6005 5953 38761 6129 6075 38762 6005 5953 38763 5836 5973 38764 6128 6115 38765 5835 5814 38766 6131 6101 38767 5836 5973 38768 5864 6102 38769 6133 6077 38770 5835 5814 38771 5863 5835 38772 6132 6108 38773 5864 6102 38774 5892 6109 38775 6135 6079 38776 5863 5835 38777 5891 5856 38778 6134 6080 38779 5892 6109 38780 6094 6042 38781 6136 6081 38782 5891 5856 38783 6094 6042 38784 6108 6056 38785 6136 6081 38786 6108 6056 38787 6120 6068 38788 6137 6116 38789 6120 6068 38790 5906 5870 38791 6138 6082 38792 6075 6023 38793 5824 5805 38794 6044 5987 38795 5823 5804 38796 5826 5806 38797 5824 5805 38798 5852 5826 38799 5853 6103 38800 5823 5804 38801 5852 5826 38802 5851 5825 38803 5853 6103 38804 5851 5825 38805 5880 6111 38806 5854 5827 38807 5879 5847 38808 5882 5848 38809 5880 6111 38810 5879 5847 38811 6088 6036 38812 5882 5848 38813 6102 6050 38814 6103 6051 38815 6088 6036 38816 6114 6062 38817 6115 6063 38818 6102 6050 38819 5901 5865 38820 5900 5864 38821 6114 6062 38822 6143 6167 38823 6142 6117 38824 6076 6118 38825 6142 6117 38826 6144 6119 38827 5821 6022 38828 6144 6119 38829 6145 6120 38830 5822 5803 38831 6145 6120 38832 6146 6121 38833 5849 6104 38834 6146 6121 38835 6147 6122 38836 5850 5824 38837 6148 6166 38838 5878 5846 38839 6147 6122 38840 6148 6166 38841 6149 6123 38842 5878 5846 38843 6150 6124 38844 6101 6049 38845 6149 6123 38846 6151 6125 38847 6113 6061 38848 6150 6124 38849 6152 6163 38850 6122 6069 38851 6151 6125 38852 6157 6130 38853 6154 6127 38854 6156 6129 38855 6154 6127 38856 6157 6130 38857 6159 6132 38858 6159 6132 38859 6158 6131 38860 6161 6134 38861 6161 6134 38862 6160 6133 38863 6163 6136 38864 6164 6139 38865 6165 6137 38866 6162 6135 38867 6166 6141 38868 6167 6138 38869 6164 6139 38870 6168 6227 38871 6169 6140 38872 6166 6141 38873 6163 6136 38874 6024 5969 38875 6161 6134 38876 6170 6146 38877 6155 6128 38878 6048 6142 38879 6169 6140 38880 6018 6143 38881 6167 6138 38882 6165 6137 38883 6026 5971 38884 6163 6136 38885 6167 6138 38886 6021 5967 38887 6165 6137 38888 6161 6134 38889 6023 5968 38890 6159 6132 38891 6159 6132 38892 6045 5990 38893 6154 6127 38894 6171 6145 38895 6172 6144 38896 6155 6128 38897 6153 6126 38898 6171 6145 38899 6170 6146 38900 5816 5799 38901 5815 5798 38902 5817 6025 38903 5815 5798 38904 5844 5820 38905 5818 5800 38906 5844 5820 38907 5843 5819 38908 5845 6105 38909 5843 5819 38910 5872 5841 38911 5846 5821 38912 5872 5841 38913 5871 5840 38914 5873 6112 38915 6084 6032 38916 6085 6033 38917 5871 5840 38918 6173 6148 38919 5896 5860 38920 6121 6147 38921 6097 6045 38922 6173 6148 38923 6098 6046 38924 6098 6046 38925 6099 6047 38926 6084 6032 38927 6121 6147 38928 6111 6059 38929 6098 6046 38930 5918 5888 38931 5917 5879 38932 5991 6008 38933 5911 5874 38934 6025 5970 38935 5912 5875 38936 6022 6094 38937 6025 5970 38938 5967 6095 38939 6046 5991 38940 6022 6094 38941 6053 5998 38942 6053 5998 38943 5921 5882 38944 6046 5991 38945 5921 5882 38946 5920 5881 38947 6174 6149 38948 5813 6152 38949 6176 6151 38950 5812 6027 38951 5811 5796 38952 5814 5797 38953 5812 6027 38954 5811 5796 38955 5840 6107 38956 5814 5797 38957 5839 5817 38958 5842 5818 38959 5840 6107 38960 5868 5838 38961 5869 6113 38962 5839 5817 38963 5868 5838 38964 5867 5837 38965 5869 6113 38966 6082 6030 38967 6083 6031 38968 5867 5837 38969 6096 6044 38970 6097 6045 38971 6082 6030 38972 6096 6044 38973 6110 6058 38974 6097 6045 38975 6110 6058 38976 5895 5859 38977 6173 6148 38978 5820 5802 38979 5819 5801 38980 6177 6153 38981 5819 5801 38982 5848 5823 38983 6178 6154 38984 5848 5823 38985 5847 5822 38986 6179 6155 38987 5847 5822 38988 5876 5844 38989 6180 6156 38990 5876 5844 38991 5875 5843 38992 6181 6157 38993 5875 5843 38994 6086 6034 38995 6182 6158 38996 6100 6048 38997 6184 6160 38998 6086 6034 38999 6100 6048 39000 6112 6060 39001 6184 6160 39002 6112 6060 39003 5899 5863 39004 6185 6161 39005 6077 6172 39006 6187 6164 39007 6078 6024 39008 6014 5962 39009 6079 6026 39010 6015 5963 39011 5920 5881 39012 6080 6028 39013 6175 6150 39014 5919 5880 39015 5948 5905 39016 5920 5881 39017 6058 6003 39018 5946 6088 39019 5919 5880 39020 6052 6089 39021 5952 5908 39022 6058 6003 39023 5945 5996 39024 5949 6165 39025 6052 6089 39026 5944 5903 39027 5953 5909 39028 5945 5996 39029 5970 5922 39030 5973 5925 39031 5944 5903 39032 5940 5899 39033 5956 5911 39034 5970 5922 39035 5939 5898 39036 5957 5912 39037 5940 5899 39038 5960 5914 39039 5957 5912 39040 6060 6005 39041 6059 6004 39042 5962 5916 39043 6060 6005 39044 5965 5918 39045 5962 5916 39046 5928 5886 39047 5966 5919 39048 5965 5918 39049 5927 6010 39050 5927 6010 39051 6063 6009 39052 5966 5919 39053 6063 6009 39054 6064 6011 39055 5984 5947 39056 6049 5993 39057 5985 5934 39058 6065 6012 39059 5989 5938 39060 6020 5966 39061 6042 5985 39062 5988 5937 39063 6027 5972 39064 5989 5938 39065 5912 5875 39066 6027 5972 39067 5917 5879 39068 6185 6161 39069 6186 6162 39070 6151 6125 39071 6185 6161 39072 6151 6125 39073 6184 6160 39074 6184 6160 39075 6150 6124 39076 6183 6159 39077 6182 6158 39078 6183 6159 39079 6148 6166 39080 6181 6157 39081 6182 6158 39082 6147 6122 39083 6180 6156 39084 6181 6157 39085 6146 6121 39086 6179 6155 39087 6180 6156 39088 6145 6120 39089 6178 6154 39090 6179 6155 39091 6144 6119 39092 6177 6153 39093 6178 6154 39094 6142 6117 39095 6188 6175 39096 6177 6153 39097 6143 6167 39098 5816 5799 39099 6079 6026 39100 5813 6152 39101 6175 6150 39102 6176 6151 39103 6014 5962 39104 6175 6150 39105 6014 5962 39106 6174 6149 39107 6047 5992 39108 6046 5991 39109 6017 6168 39110 6170 6146 39111 6048 6142 39112 6054 5999 39113 6038 6002 39114 6056 6001 39115 6016 5964 39116 6153 6126 39117 6170 6146 39118 6056 6001 39119 6038 6002 39120 6039 5982 39121 6057 6170 39122 6039 5982 39123 6187 6164 39124 6189 6169 39125 6191 6580 39126 6190 6171 39127 6077 6172 39128 6191 6580 39129 6077 6172 39130 6192 6173 39131 6074 6021 39132 6073 6020 39133 6192 6173 39134 6029 5975 39135 6194 6176 39136 6028 6086 39137 6028 6086 39138 6195 6177 39139 6141 6087 39140 6140 6084 39141 6197 6179 39142 6034 6085 39143 6034 6085 39144 6198 6180 39145 6033 5978 39146 6200 6182 39147 6032 5977 39148 6199 6181 39149 6032 5977 39150 6200 6182 39151 6031 6184 39152 6201 6183 39153 6202 6185 39154 6031 6184 39155 6029 5975 39156 6030 6096 39157 6194 6176 39158 6194 6176 39159 6204 6187 39160 6195 6177 39161 6195 6177 39162 6205 6188 39163 6196 6178 39164 6197 6179 39165 6207 6190 39166 6198 6180 39167 6198 6180 39168 6208 6191 39169 6199 6181 39170 6199 6181 39171 6209 6192 39172 6200 6182 39173 6200 6182 39174 6210 6193 39175 6201 6183 39176 6202 6185 39177 6201 6183 39178 6212 6195 39179 6194 6176 39180 6203 6186 39181 6204 6187 39182 6204 6187 39183 6213 6196 39184 6215 6198 39185 6212 6195 39186 6211 6194 39187 6217 6200 39188 6210 6193 39189 6218 6201 39190 6211 6194 39191 6209 6192 39192 6219 6202 39193 6210 6193 39194 6209 6192 39195 6208 6191 39196 6219 6202 39197 6208 6191 39198 6207 6190 39199 6220 6203 39200 6205 6188 39201 6222 6205 39202 6206 6189 39203 6204 6187 39204 6215 6198 39205 6205 6188 39206 6206 6189 39207 6223 6206 39208 6207 6190 39209 6196 6178 39210 6206 6189 39211 6197 6179 39212 6141 6087 39213 6196 6178 39214 6140 6084 39215 6202 6185 39216 6203 6186 39217 6035 5980 39218 6212 6195 39219 6213 6196 39220 6202 6185 39221 6217 6200 39222 6214 6197 39223 6212 6195 39224 5573 5556 39225 6224 6207 39226 5557 5543 39227 6226 6218 39228 6227 6209 39229 5558 5544 39230 6228 6614 39231 6229 6210 39232 6231 6212 39233 6232 6215 39234 6233 6213 39235 5570 5554 39236 6231 6212 39237 6230 6211 39238 6232 6215 39239 6235 6226 39240 6225 6208 39241 6236 6216 39242 6237 6225 39243 6238 6217 39244 6226 6218 39245 6229 6210 39246 6239 6219 39247 6230 6211 39248 6233 6213 39249 6241 6221 39250 6234 6214 39251 6230 6211 39252 6240 6220 39253 6233 6213 39254 6243 7966 39255 6232 6215 39256 5569 5553 39257 6243 7966 39258 6244 6223 39259 6232 6215 39260 6228 6614 39261 6231 6212 39262 6245 6224 39263 6236 6216 39264 6224 6207 39265 6242 6222 39266 5570 5554 39267 6234 6214 39268 5573 5556 39269 6225 6208 39270 6226 6218 39271 5557 5543 39272 6235 6226 39273 6237 6225 39274 6225 6208 39275 6237 6225 39276 6157 6130 39277 6238 6217 39278 6157 6130 39279 6237 6225 39280 6158 6131 39281 6158 6131 39282 6235 6226 39283 6160 6133 39284 6160 6133 39285 6236 6216 39286 6162 6135 39287 6241 6221 39288 6164 6139 39289 6242 6222 39290 6240 6220 39291 6166 6141 39292 6241 6221 39293 6239 6219 39294 6168 6227 39295 6240 6220 39296 6227 6209 39297 6246 6228 39298 5581 5563 39299 6238 6217 39300 6247 6229 39301 6227 6209 39302 6172 6144 39303 6247 6229 39304 6156 6129 39305 6251 6490 39306 6248 6230 39307 6250 6232 39308 6252 6560 39309 6253 6233 39310 6255 6235 39311 6256 6441 39312 6257 6236 39313 6259 6238 39314 5821 6022 39315 6260 6239 39316 5822 5803 39317 6265 6519 39318 6262 6241 39319 6264 6243 39320 6264 6243 39321 6263 6242 39322 6267 6245 39323 6267 6245 39324 6266 6244 39325 6269 6247 39326 6273 6515 39327 6270 6248 39328 6272 6250 39329 6277 6492 39330 6274 6251 39331 6276 6253 39332 6278 6522 39333 6279 6254 39334 6281 6256 39335 6282 6521 39336 6283 6257 39337 6285 6259 39338 6286 6520 39339 6287 6260 39340 6289 6262 39341 6290 6526 39342 6291 6263 39343 6293 6265 39344 6292 6264 39345 6291 6263 39346 6295 6267 39347 6295 6267 39348 6294 6266 39349 6297 6269 39350 6301 6516 39351 6298 6270 39352 6300 6272 39353 6302 6495 39354 6303 6273 39355 6305 6275 39356 6306 6525 39357 6307 6276 39358 6309 6278 39359 6310 6524 39360 6311 6279 39361 6313 6281 39362 6317 6532 39363 6314 6282 39364 6316 6284 39365 6321 6450 39366 6318 6285 39367 6320 6287 39368 6320 6287 39369 6319 6286 39370 6323 6289 39371 6323 6289 39372 6322 6288 39373 6325 6291 39374 6329 6454 39375 6326 6292 39376 6328 6294 39377 6344 6509 39378 6345 6309 39379 6347 6311 39380 6348 6356 39381 6349 6312 39382 6351 6314 39383 6353 6368 39384 6346 6310 39385 6352 6315 39386 6351 6314 39387 6350 6313 39388 6355 6317 39389 6359 6556 39390 6356 6318 39391 6358 6320 39392 6360 6486 39393 6361 6321 39394 6363 6323 39395 6364 6429 39396 6354 6316 39397 6366 6325 39398 6350 6313 39399 6349 6312 39400 6368 6327 39401 6371 6505 39402 6369 6328 39403 6370 6329 39404 6372 6427 39405 6373 6330 39406 6375 6332 39407 6374 6331 39408 6376 6333 39409 6378 6335 39410 6382 6513 39411 6379 6336 39412 6381 6338 39413 6383 6504 39414 6384 6339 39415 6385 6340 39416 6386 6345 39417 6387 6341 39418 6389 6343 39419 6391 6407 39420 6390 6344 39421 6389 6343 39422 6392 6361 39423 6393 6346 39424 6395 6348 39425 6393 6346 39426 6396 6349 39427 6394 6347 39428 6398 6411 39429 6399 6351 39430 6396 6349 39431 6400 6380 39432 6401 6352 39433 6403 6354 39434 6404 6512 39435 6405 6355 39436 6348 6356 39437 6367 6326 39438 6349 6312 39439 6406 6357 39440 6377 6334 39441 6376 6333 39442 6408 6359 39443 6410 6514 39444 6409 6360 39445 6395 6348 39446 6411 6404 39447 6412 6362 39448 6414 6364 39449 6415 6378 39450 6416 6365 39451 6418 6367 39452 6420 6437 39453 6353 6368 39454 6419 6369 39455 6421 6381 39456 6422 6370 39457 6424 6372 39458 6425 6577 39459 6426 6373 39460 6428 6375 39461 5993 5941 39462 5992 5940 39463 6430 6377 39464 6420 6437 39465 6419 6369 39466 5996 5943 39467 6431 6392 39468 6415 6378 39469 6432 6379 39470 6401 6352 39471 6400 6380 39472 6421 6381 39473 6433 6508 39474 6434 6382 39475 6436 6384 39476 6437 6403 39477 6438 6385 39478 6440 6387 39479 6435 6383 39480 6434 6382 39481 6442 6389 39482 6443 6391 39483 6442 6389 39484 6444 6390 39485 6012 5958 39486 6443 6391 39487 6013 5959 39488 6430 6377 39489 6429 6376 39490 6432 6379 39491 6445 6574 39492 6446 6393 39493 6448 6395 39494 6019 5965 39495 6018 6143 39496 6450 6397 39497 6454 6511 39498 6451 6398 39499 6453 6400 39500 6452 6399 39501 6455 6401 39502 6453 6400 39503 6455 6401 39504 6450 6397 39505 6456 6402 39506 6263 6242 39507 6432 6379 39508 6266 6244 39509 6270 6248 39510 6437 6403 39511 6271 6249 39512 6248 6230 39513 6411 6404 39514 6385 6340 39515 6457 6503 39516 6458 6405 39517 6388 6342 39518 6389 6343 39519 6458 6405 39520 6391 6407 39521 6460 6413 39522 6461 6408 39523 6392 6361 39524 6461 6408 39525 6462 6409 39526 6393 6346 39527 6396 6349 39528 6462 6409 39529 6398 6411 39530 6403 6354 39531 6362 6322 39532 6400 6380 39533 6409 6360 39534 6464 6412 39535 6392 6361 39536 6465 6416 39537 6466 6414 39538 6422 6370 39539 6467 6424 39540 6468 6415 39541 6447 6394 39542 6423 6371 39543 6466 6414 39544 6040 5983 39545 6428 6375 39546 6427 6374 39547 6042 5985 39548 6430 6377 39549 6262 6241 39550 5993 5941 39551 6422 6370 39552 6400 6380 39553 6465 6416 39554 6262 6241 39555 6430 6377 39556 6263 6242 39557 6472 6510 39558 6469 6417 39559 6471 6419 39560 6424 6372 39561 6423 6371 39562 6049 5993 39563 6382 6513 39564 6473 6420 39565 6379 6336 39566 6379 6336 39567 6474 6421 39568 6380 6337 39569 6358 6320 39570 6357 6319 39571 6476 6423 39572 6477 6578 39573 6447 6394 39574 6471 6419 39575 6478 6538 39576 6055 6000 39577 6467 6424 39578 6370 6329 39579 6357 6319 39580 6479 6425 39581 6481 6576 39582 6480 6426 39583 6375 6332 39584 6481 6576 39585 6375 6332 39586 6378 6335 39587 6373 6330 39588 6482 6428 39589 6374 6331 39590 6483 6506 39591 6407 6358 39592 6482 6428 39593 6354 6316 39594 6364 6429 39595 6426 6373 39596 6485 6431 39597 6427 6374 39598 6484 6430 39599 6427 6374 39600 6485 6431 39601 6043 5986 39602 6368 6327 39603 6365 6324 39604 6350 6313 39605 6266 6244 39606 6418 6367 39607 6268 6246 39608 6418 6367 39609 6417 6366 39610 6486 6432 39611 6347 6311 39612 6346 6310 39613 6489 6435 39614 6490 6436 39615 6488 6434 39616 6353 6368 39617 6491 6438 39618 6490 6436 39619 6420 6437 39620 6072 6019 39621 6491 6438 39622 5996 5943 39623 6256 6441 39624 6492 6439 39625 6257 6236 39626 6260 6239 39627 5821 6022 39628 6075 6023 39629 6494 6573 39630 6492 6439 39631 6495 6442 39632 6256 6441 39633 6253 6233 39634 6495 6442 39635 6497 6558 39636 6249 6231 39637 6384 6339 39638 6499 6496 39639 6305 6275 39640 6498 6444 39641 6501 6458 39642 6309 6278 39643 6500 6445 39644 6313 6281 39645 6312 6280 39646 6503 6447 39647 6317 6532 39648 6316 6284 39649 6505 6449 39650 6507 6463 39651 6321 6450 39652 6506 6451 39653 6506 6451 39654 6320 6287 39655 6508 6452 39656 6508 6452 39657 6323 6289 39658 6509 6453 39659 6511 6517 39660 6329 6454 39661 6510 6455 39662 6499 6496 39663 6498 6444 39664 6513 6457 39665 6515 6561 39666 6501 6458 39667 6514 6459 39668 6503 6447 39669 6502 6446 39670 6517 6461 39671 6519 6473 39672 6505 6449 39673 6518 6462 39674 6521 6475 39675 6507 6463 39676 6520 6464 39677 6506 6451 39678 6508 6452 39679 6520 6464 39680 6508 6452 39681 6509 6453 39682 6522 6465 39683 6511 6517 39684 6510 6455 39685 6525 6468 39686 6513 6457 39687 6512 6456 39688 6527 6470 39689 6517 6461 39690 6516 6460 39691 6529 6472 39692 6531 6482 39693 6519 6473 39694 6530 6474 39695 6533 6481 39696 6521 6475 39697 6532 6476 39698 6532 6476 39699 6520 6464 39700 6534 6477 39701 6522 6465 39702 6523 6466 39703 6534 6477 39704 6525 6468 39705 6524 6467 39706 6537 6480 39707 6538 6554 39708 6529 6472 39709 6334 6299 39710 6527 6470 39711 6526 6469 39712 6330 6295 39713 6537 6480 39714 6536 6479 39715 6342 6307 39716 6534 6477 39717 6535 6478 39718 6340 6305 39719 6339 6304 39720 6532 6476 39721 6340 6305 39722 6338 6303 39723 6533 6481 39724 6339 6304 39725 6539 6537 39726 6531 6482 39727 6337 6302 39728 6529 6472 39729 6528 6471 39730 6335 6300 39731 6123 6070 39732 6041 5984 39733 6540 6483 39734 6466 6414 39735 6465 6416 39736 6540 6483 39737 6361 6321 39738 6542 6485 39739 6465 6416 39740 6543 6507 39741 6542 6485 39742 6360 6486 39743 6544 6489 39744 6545 6487 39745 6411 6404 39746 6248 6230 39747 6546 6488 39748 6411 6404 39749 6547 6518 39750 6546 6488 39751 6251 6490 39752 6548 6523 39753 6549 6491 39754 6277 6492 39755 6305 6275 39756 6550 6493 39757 6302 6495 39758 6552 6497 39759 6550 6493 39760 6499 6496 39761 6553 6499 39762 6552 6497 39763 6513 6457 39764 6527 6470 39765 6554 6498 39766 6513 6457 39767 6330 6295 39768 6555 6500 39769 6527 6470 39770 6363 6323 39771 6362 6322 39772 6556 6501 39773 6414 6364 39774 6413 6363 39775 6457 6503 39776 6388 6342 39777 6385 6340 39778 6457 6503 39779 6387 6341 39780 6383 6504 39781 6388 6342 39782 6474 6421 39783 6370 6329 39784 6475 6422 39785 6473 6420 39786 6371 6505 39787 6474 6421 39788 6482 6428 39789 6367 6326 39790 6483 6506 39791 6368 6327 39792 6367 6326 39793 6373 6330 39794 6373 6330 39795 6372 6427 39796 6368 6327 39797 6366 6325 39798 6365 6324 39799 6480 6426 39800 6403 6354 39801 6402 6353 39802 6398 6411 39803 6398 6411 39804 6463 6410 39805 6403 6354 39806 6413 6363 39807 6363 6323 39808 6557 6502 39809 6412 6362 39810 6360 6486 39811 6413 6363 39812 6545 6487 39813 6543 6507 39814 6412 6362 39815 6438 6385 39816 6433 6508 39817 6439 6386 39818 6417 6366 39819 6347 6311 39820 6487 6433 39821 6416 6365 39822 6344 6509 39823 6417 6366 39824 6469 6417 39825 6472 6510 39826 6454 6511 39827 6476 6423 39828 6369 6328 39829 6404 6512 39830 6406 6357 39831 6405 6355 39832 6371 6505 39833 6483 6506 39834 6406 6357 39835 6473 6420 39836 6473 6420 39837 6382 6513 39838 6483 6506 39839 6408 6359 39840 6407 6358 39841 6381 6338 39842 6390 6344 39843 6391 6407 39844 6410 6514 39845 6391 6407 39846 6459 6406 39847 6409 6360 39848 6013 5959 39849 6444 6390 39850 6072 6019 39851 6444 6390 39852 6441 6388 39853 6491 6438 39854 6441 6388 39855 6434 6382 39856 6490 6436 39857 6489 6435 39858 6488 6434 39859 6433 6508 39860 6487 6433 39861 6489 6435 39862 6438 6385 39863 6486 6432 39864 6487 6433 39865 6437 6403 39866 6268 6246 39867 6486 6432 39868 6270 6248 39869 6269 6247 39870 6268 6246 39871 6273 6515 39872 6297 6269 39873 6296 6268 39874 6301 6516 39875 6329 6454 39876 6325 6291 39877 6326 6292 39878 6511 6517 39879 6509 6453 39880 6329 6454 39881 6525 6468 39882 6523 6466 39883 6511 6517 39884 6537 6480 39885 6535 6478 39886 6525 6468 39887 6342 6307 39888 6341 6306 39889 6537 6480 39890 6549 6491 39891 6547 6518 39892 6274 6251 39893 6298 6270 39894 6273 6515 39895 6299 6271 39896 6296 6268 39897 6269 6247 39898 6298 6270 39899 6294 6266 39900 6267 6245 39901 6296 6268 39902 6291 6263 39903 6264 6243 39904 6294 6266 39905 6290 6526 39906 6265 6519 39907 6291 6263 39908 5822 5803 39909 6261 6240 39910 6286 6520 39911 6259 6238 39912 6258 6237 39913 6282 6521 39914 6255 6235 39915 6254 6234 39916 6278 6522 39917 6274 6251 39918 6251 6490 39919 6275 6252 39920 6551 6494 39921 6548 6523 39922 6302 6495 39923 6326 6292 39924 6301 6516 39925 6327 6293 39926 6324 6290 39927 6297 6269 39928 6326 6292 39929 6322 6288 39930 6295 6267 39931 6324 6290 39932 6319 6286 39933 6292 6264 39934 6322 6288 39935 6318 6285 39936 6293 6265 39937 6319 6286 39938 6289 6262 39939 6288 6261 39940 6314 6282 39941 6285 6259 39942 6284 6258 39943 6310 6524 39944 6281 6256 39945 6280 6255 39946 6306 6525 39947 6302 6495 39948 6277 6492 39949 6303 6273 39950 6012 5958 39951 6123 6070 39952 6443 6391 39953 6540 6483 39954 6541 6484 39955 6443 6391 39956 6541 6484 39957 6542 6485 39958 6442 6389 39959 6436 6384 39960 6435 6383 39961 6543 6507 39962 6439 6386 39963 6436 6384 39964 6545 6487 39965 6544 6489 39966 6440 6387 39967 6545 6487 39968 6271 6249 39969 6440 6387 39970 6546 6488 39971 6272 6250 39972 6271 6249 39973 6547 6518 39974 6299 6271 39975 6272 6250 39976 6549 6491 39977 6300 6272 39978 6299 6271 39979 6548 6523 39980 6327 6293 39981 6300 6272 39982 6551 6494 39983 6328 6294 39984 6327 6293 39985 6550 6493 39986 6510 6455 39987 6328 6294 39988 6552 6497 39989 6553 6499 39990 6524 6467 39991 6552 6497 39992 6554 6498 39993 6536 6479 39994 6553 6499 39995 6555 6500 39996 6343 6308 39997 6554 6498 39998 6262 6241 39999 6260 6239 40000 6044 5987 40001 6261 6240 40002 6260 6239 40003 6265 6519 40004 6290 6526 40005 6287 6260 40006 6265 6519 40007 6293 6265 40008 6288 6261 40009 6290 6526 40010 6315 6283 40011 6288 6261 40012 6318 6285 40013 6316 6284 40014 6315 6283 40015 6321 6450 40016 6504 6448 40017 6316 6284 40018 6507 6463 40019 6518 6462 40020 6504 6448 40021 6521 6475 40022 6530 6474 40023 6518 6462 40024 6533 6481 40025 6337 6302 40026 6530 6474 40027 6338 6303 40028 5821 6022 40029 6558 6527 40030 6076 6118 40031 5822 5803 40032 6559 6528 40033 5821 6022 40034 6286 6520 40035 6560 6529 40036 5822 5803 40037 6289 6262 40038 6561 6530 40039 6286 6520 40040 6314 6282 40041 6562 6531 40042 6289 6262 40043 6563 6534 40044 6562 6531 40045 6317 6532 40046 6505 6449 40047 6564 6533 40048 6317 6532 40049 6565 6535 40050 6564 6533 40051 6519 6473 40052 6566 6536 40053 6565 6535 40054 6531 6482 40055 6567 6572 40056 6566 6536 40057 6539 6537 40058 6571 6553 40059 6568 6539 40060 6570 6541 40061 6568 6539 40062 6572 6542 40063 6569 6540 40064 6572 6542 40065 6574 6544 40066 6573 6543 40067 6574 6544 40068 6576 6546 40069 6575 6545 40070 6578 6549 40071 6577 6547 40072 6579 6548 40073 6580 6551 40074 6578 6549 40075 6581 6550 40076 6169 6140 40077 6168 6227 40078 6581 6550 40079 6576 6546 40080 6574 6544 40081 6453 6400 40082 6571 6553 40083 6582 6552 40084 6568 6539 40085 6018 6143 40086 6169 6140 40087 6449 6396 40088 6579 6548 40089 6576 6546 40090 6456 6402 40091 6449 6396 40092 6581 6550 40093 6456 6402 40094 6574 6544 40095 6572 6542 40096 6454 6511 40097 6572 6542 40098 6568 6539 40099 6469 6417 40100 6172 6144 40101 6171 6145 40102 6570 6541 40103 6171 6145 40104 6153 6126 40105 6571 6553 40106 6253 6233 40107 6256 6441 40108 6254 6234 40109 6282 6521 40110 6279 6254 40111 6259 6238 40112 6285 6259 40113 6280 6255 40114 6282 6521 40115 6310 6524 40116 6307 6276 40117 6285 6259 40118 6313 6281 40119 6308 6277 40120 6310 6524 40121 6503 6447 40122 6500 6445 40123 6313 6281 40124 6583 6555 40125 6538 6554 40126 6333 6298 40127 6515 6561 40128 6514 6459 40129 6583 6555 40130 6514 6459 40131 6500 6445 40132 6517 6461 40133 6538 6554 40134 6514 6459 40135 6529 6472 40136 6425 6577 40137 6355 6317 40138 6426 6373 40139 6455 6401 40140 6452 6399 40141 6351 6314 40142 6451 6398 40143 6404 6512 40144 6452 6399 40145 6472 6510 40146 6476 6423 40147 6451 6398 40148 6584 6557 40149 6358 6320 40150 6472 6510 40151 6585 6575 40152 6359 6556 40153 6584 6557 40154 6252 6560 40155 6249 6231 40156 6586 6559 40157 6250 6232 40158 6249 6231 40159 6255 6235 40160 6278 6522 40161 6275 6252 40162 6255 6235 40163 6276 6253 40164 6275 6252 40165 6281 6256 40166 6306 6525 40167 6303 6273 40168 6281 6256 40169 6309 6278 40170 6304 6274 40171 6306 6525 40172 6498 6444 40173 6304 6274 40174 6501 6458 40175 6512 6456 40176 6498 6444 40177 6515 6561 40178 6583 6555 40179 6526 6469 40180 6515 6561 40181 6333 6298 40182 6331 6296 40183 6583 6555 40184 6588 6563 40185 6258 6237 40186 6587 6562 40187 6589 6564 40188 6283 6257 40189 6588 6563 40190 6590 6565 40191 6284 6258 40192 6589 6564 40193 6591 6566 40194 6311 6279 40195 6590 6565 40196 6592 6567 40197 6312 6280 40198 6591 6566 40199 6593 6568 40200 6502 6446 40201 6592 6567 40202 6594 6569 40203 6516 6460 40204 6593 6568 40205 6595 6570 40206 6528 6471 40207 6594 6569 40208 6596 6571 40209 6336 6301 40210 6595 6570 40211 6597 6579 40212 6494 6573 40213 6448 6395 40214 6495 6442 40215 6496 6443 40216 6448 6395 40217 6586 6559 40218 6497 6558 40219 6585 6575 40220 6497 6558 40221 6384 6339 40222 6359 6556 40223 6479 6425 40224 6356 6318 40225 6383 6504 40226 6475 6422 40227 6479 6425 40228 6387 6341 40229 6380 6337 40230 6475 6422 40231 6386 6345 40232 6381 6338 40233 6380 6337 40234 6390 6344 40235 6410 6514 40236 6408 6359 40237 6390 6344 40238 6395 6348 40239 6377 6334 40240 6410 6514 40241 6378 6335 40242 6377 6334 40243 6394 6347 40244 6397 6350 40245 6481 6576 40246 6394 6347 40247 6397 6350 40248 6399 6351 40249 6481 6576 40250 6402 6353 40251 6366 6325 40252 6399 6351 40253 6401 6352 40254 6364 6429 40255 6402 6353 40256 6364 6429 40257 6401 6352 40258 6484 6430 40259 6424 6372 40260 6485 6431 40261 6421 6381 40262 6485 6431 40263 6424 6372 40264 6065 6012 40265 6450 6397 40266 6428 6375 40267 6019 5965 40268 6455 6401 40269 6425 6577 40270 6450 6397 40271 6351 6314 40272 6355 6317 40273 6455 6401 40274 6567 6572 40275 6596 6571 40276 6566 6536 40277 6595 6570 40278 6594 6569 40279 6566 6536 40280 6565 6535 40281 6594 6569 40282 6564 6533 40283 6564 6533 40284 6593 6568 40285 6563 6534 40286 6563 6534 40287 6592 6567 40288 6562 6531 40289 6562 6531 40290 6591 6566 40291 6561 6530 40292 6561 6530 40293 6590 6565 40294 6560 6529 40295 6560 6529 40296 6589 6564 40297 6559 6528 40298 6559 6528 40299 6588 6563 40300 6558 6527 40301 6558 6527 40302 6587 6562 40303 6143 6167 40304 6586 6559 40305 6496 6443 40306 6252 6560 40307 6496 6443 40308 6586 6559 40309 6445 6574 40310 6585 6575 40311 6584 6557 40312 6445 6574 40313 6471 6419 40314 6446 6393 40315 6472 6510 40316 6471 6419 40317 6470 6418 40318 6477 6578 40319 6477 6578 40320 6478 6538 40321 6447 6394 40322 6153 6126 40323 6478 6538 40324 6582 6552 40325 6467 6424 40326 6057 6170 40327 6468 6415 40328 6468 6415 40329 6189 6169 40330 6597 6579 40331 6190 6171 40332 6191 6580 40333 6597 6579 40334 6191 6580 40335 6192 6173 40336 6494 6573 40337 6193 6174 40338 6493 6440 40339 6192 6173 40340 6599 6589 40341 6458 6405 40342 6598 6581 40343 6457 6503 40344 6557 6502 40345 6598 6581 40346 6556 6501 40347 6463 6410 40348 6602 6584 40349 6463 6410 40350 6462 6409 40351 6601 6583 40352 6604 6587 40353 6603 6585 40354 6461 6408 40355 6461 6408 40356 6460 6413 40357 6604 6587 40358 6464 6412 40359 6606 6588 40360 6460 6413 40361 6607 6599 40362 6459 6406 40363 6599 6589 40364 6599 6589 40365 6598 6581 40366 6609 6591 40367 6598 6581 40368 6600 6582 40369 6608 6590 40370 6602 6584 40371 6601 6583 40372 6612 6594 40373 6601 6583 40374 6603 6585 40375 6611 6593 40376 6603 6585 40377 6604 6587 40378 6613 6595 40379 6604 6587 40380 6605 6586 40381 6614 6596 40382 6615 6597 40383 6605 6586 40384 6616 6598 40385 6617 6600 40386 6607 6599 40387 6609 6591 40388 6619 6610 40389 6617 6600 40390 6618 6601 40391 6621 6603 40392 6615 6597 40393 6620 6602 40394 6614 6596 40395 6615 6597 40396 6622 6604 40397 6613 6595 40398 6614 6596 40399 6623 6605 40400 6624 6606 40401 6611 6593 40402 6623 6605 40403 6625 6609 40404 6612 6594 40405 6624 6606 40406 6608 6590 40407 6610 6592 40408 6627 6608 40409 6609 6591 40410 6608 6590 40411 6618 6601 40412 6610 6592 40413 6612 6594 40414 6626 6607 40415 6600 6582 40416 6602 6584 40417 6610 6592 40418 6557 6502 40419 6556 6501 40420 6600 6582 40421 6459 6406 40422 6607 6599 40423 6464 6412 40424 6616 6598 40425 6606 6588 40426 6617 6600 40427 6620 6602 40428 6616 6598 40429 6619 6610 40430 6629 6621 40431 6628 6611 40432 5201 5189 40433 6630 6622 40434 5204 6612 40435 6631 6613 40436 6229 6210 40437 6228 6614 40438 6633 6616 40439 6634 6619 40440 5216 5202 40441 6636 6618 40442 6633 6616 40443 6632 6615 40444 6636 6618 40445 6637 6630 40446 6638 6620 40447 6629 6621 40448 6639 6629 40449 6630 6622 40450 6640 6623 40451 6239 6219 40452 6229 6210 40453 6641 6624 40454 6643 6626 40455 6636 6618 40456 6642 6625 40457 6641 6624 40458 6633 6616 40459 6643 6626 40460 6644 6628 40461 5213 5199 40462 6634 6619 40463 6632 6615 40464 6645 6627 40465 6634 6619 40466 6228 6614 40467 6245 6224 40468 6632 6615 40469 6638 6620 40470 6642 6625 40471 6628 6611 40472 6628 6611 40473 6635 6617 40474 5219 5208 40475 6629 6621 40476 5201 5189 40477 6630 6622 40478 6630 6622 40479 6639 6629 40480 6629 6621 40481 6569 6540 40482 6639 6629 40483 6570 6541 40484 6639 6629 40485 6569 6540 40486 6637 6630 40487 6573 6543 40488 6575 6545 40489 6637 6630 40490 6575 6545 40491 6577 6547 40492 6638 6620 40493 6643 6626 40494 6642 6625 40495 6578 6549 40496 6580 6551 40497 6641 6624 40498 6578 6549 40499 6168 6227 40500 6239 6219 40501 6580 6551 40502 5225 5209 40503 6246 6228 40504 5226 5210 40505 6246 6228 40506 6247 6229 40507 6631 6613 40508 6247 6229 40509 6172 6144 40510 6640 6623 40511 6763 6755 40788 6764 6745 40789 6766 6747 40790 6770 6774 40791 6767 6748 40792 6769 6750 40793 6767 6748 40794 6771 6751 40795 6768 6749 40796 6766 6747 40797 6773 6753 40798 6763 6755 40799 6775 6764 40800 6776 6756 40801 6778 6758 40802 6782 6767 40803 6779 6759 40804 6781 6761 40805 6784 6765 40806 6783 6762 40807 6780 6760 40808 6786 6788 40809 6785 6763 40810 6778 6758 40811 6769 6750 40812 6768 6749 40813 6765 6746 40814 6772 6752 40815 6773 6753 40816 6768 6749 40817 6780 6760 40818 6779 6759 40819 6775 6764 40820 6785 6763 40821 6784 6765 40822 6775 6764 40823 6788 6770 40824 6787 6766 40825 6782 6767 40826 6789 6768 40827 6776 6756 40828 6787 6766 40829 6790 6769 40830 6777 6757 40831 6789 6768 40832 6771 6751 40833 6790 6769 40834 6772 6752 40835 6787 6766 40836 6773 6753 40837 6789 6768 40838 6774 6754 40839 6773 6753 40840 6788 6770 40841 6791 6777 40842 6792 6771 40843 6794 6773 40844 6796 6776 40845 6767 6748 40846 6795 6775 40847 6797 6793 40848 6771 6751 40849 6796 6776 40850 6792 6771 40851 6791 6777 40852 6799 6779 40853 6800 6789 40854 6778 6758 40855 6801 6780 40856 6805 6786 40857 6802 6781 40858 6804 6783 40859 6804 6783 40860 6806 6784 40861 6805 6786 40862 6800 6789 40863 6808 6787 40864 6778 6758 40865 6792 6771 40866 6796 6776 40867 6793 6772 40868 6797 6793 40869 6796 6776 40870 6799 6779 40871 6805 6786 40872 6800 6789 40873 6802 6781 40874 6805 6786 40875 6807 6785 40876 6800 6789 40877 6802 6781 40878 6809 6790 40879 6803 6782 40880 6802 6781 40881 6801 6780 40882 6809 6790 40883 6801 6780 40884 6777 6757 40885 6811 6792 40886 6811 6792 40887 6790 6769 40888 6797 6793 40889 6809 6790 40890 6811 6792 40891 6799 6779 40892 6809 6790 40893 6799 6779 40894 6810 6791 40895</p>\r\n        </polylist>\r\n        <polylist material=\"Rig2_lambert23SG_001-material\" count=\"2680\">\r\n          <input semantic=\"VERTEX\" source=\"#Elf01_posed_002-mesh-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#Elf01_posed_002-mesh-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#Elf01_posed_002-mesh-map\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>\r\n          <p>5133 5121 15408 5134 5122 15409 5135 5123 15410 5136 5124 15411 5137 5125 15412 5138 5126 15413 5136 5124 15414 5139 5127 15415 5140 5128 15416 5141 5129 15417 5142 5130 15418 5143 5131 15419 5146 5132 15420 5147 5133 15421 5148 5134 15422 5149 5135 15423 5150 5136 15424 5151 5137 15425 5153 5138 15426 5145 5139 15427 5148 5134 15428 5142 5130 15429 5149 5135 15430 5152 5140 15431 5154 5141 15432 5155 5142 15433 5156 5143 15434 5157 5144 15435 5158 5145 15436 5155 5142 15437 5160 5146 15438 5161 5147 15439 5162 5148 15440 5163 5149 15441 5164 5150 15442 5165 5151 15443 5146 5132 15444 5167 5152 15445 5168 5153 15446 5169 5154 15447 5170 5155 15448 5171 5156 15449 5150 5136 15450 5173 5157 15451 5174 5158 15452 5134 5122 15453 5176 5159 15454 5177 5160 15455 5179 5161 15456 5180 5162 15457 5181 5163 15458 5175 5164 15459 5177 5160 15460 5161 5147 15461 5164 5150 15462 5159 5165 15463 5162 5148 15464 5183 5166 15465 5141 5129 15466 5144 5167 15467 5184 5168 15468 5169 5154 15469 5172 5169 15470 5166 5170 15471 5157 5144 15472 5155 5142 15473 5140 5128 15474 5139 5127 15475 5185 5171 15476 5186 5172 15477 5133 5121 15478 5135 5123 15479 5178 5173 15480 5169 5154 15481 5188 5174 15482 5179 5161 15483 5178 5173 15484 5189 5175 15485 5190 5176 15486 5184 5168 15487 5191 5177 15488 5163 5149 15489 5155 5142 15490 5179 5161 15491 5175 5164 15492 5187 5178 15493 5135 5123 15494 5159 5165 15495 5190 5176 15496 5191 5177 15497 5159 5165 15498 5164 5150 15499 5188 5174 15500 5164 5150 15501 5163 5149 15502 5189 5175 15503 5160 5146 15504 5191 5177 15505 5187 5178 15506 5190 5176 15507 5188 5174 15508 5169 5154 15509 5186 5172 15510 5187 5178 15511 5184 5168 15512 5184 5168 15513 5187 5178 15514 5191 5177 15515 5168 5153 15516 5171 5156 15517 5170 5155 15518 5147 5133 15519 5170 5155 15520 5181 5163 15521 5153 5138 15522 5148 5134 15523 5181 5163 15524 5180 5162 15525 5154 5141 15526 5137 5125 15527 5192 5179 15528 5158 5145 15529 5157 5144 15530 5139 5127 15531 5157 5144 15532 5166 5170 15533 5185 5171 15534 5166 5170 15535 5165 5151 15536 5183 5166 15537 5165 5151 15538 5162 5148 15539 5161 5147 15540 5142 5130 15541 5141 5129 15542 5149 5135 15543 5142 5130 15544 5161 5147 15545 5176 5159 15546 5150 5136 15547 5149 5135 15548 5176 5159 15549 5134 5122 15550 5173 5157 15551 5151 5137 15552 5174 5158 15553 5193 5180 15554 5194 5181 15555 5195 5182 15556 5167 5152 15557 5136 5124 15558 5196 5183 15559 5145 5139 15560 5140 5128 15561 5196 5183 15562 5136 5124 15563 5143 5131 15564 5193 5180 15565 5197 5184 15566 5144 5167 15567 5198 5185 15568 5182 5186 15569 5198 5185 15570 5197 5184 15571 5195 5182 15572 5182 5186 15573 5198 5185 15574 5194 5181 15575 5140 5128 15576 5182 5186 15577 5196 5183 15578 5146 5132 15579 5145 5139 15580 5196 5183 15581 5178 5173 15582 5181 5163 15583 5170 5155 15584 5143 5131 15585 5152 5140 15586 5151 5137 15587 5182 5186 15588 5140 5128 15589 5185 5171 15590 5144 5167 15591 5143 5131 15592 5198 5185 15593 5154 5141 15594 5156 5143 15595 5138 5126 15596 5153 5138 15597 5137 5125 15598 5136 5124 15599 5155 5142 15600 5154 5141 15601 5180 5162 15602 5156 5143 15603 5199 5187 15604 5200 5188 15605 5158 5145 15606 5192 5179 15607 5200 5188 15608 5136 5124 15609 5138 5126 15610 5200 5188 15611 5136 5124 15612 5200 5188 15613 5192 5179 15614 5139 5127 15615 5136 5124 15616 5192 5179 15617 5155 5142 15618 5158 5145 15619 5199 5187 15620 5156 5143 15621 5155 5142 15622 5199 5187 15623 5201 5189 15624 5202 5190 15625 5203 5191 15626 5206 5192 15627 5207 5193 15628 5208 5194 15629 5206 5192 15630 5205 5195 15631 5210 5196 15632 5203 5191 15633 5211 5197 15634 5212 5198 15635 5213 5199 15636 5214 5200 15637 5215 5201 15638 5216 5202 15639 5217 5203 15640 5218 5204 15641 5220 5205 15642 5221 5206 15643 5222 5207 15644 5219 5208 15645 5218 5204 15646 5202 5190 15647 5225 5209 15648 5226 5210 15649 5227 5211 15650 5212 5198 15651 5227 5211 15652 5226 5210 15653 5211 5197 15654 5228 5212 15655 5227 5211 15656 5230 5213 15657 5227 5211 15658 5228 5212 15659 5224 5214 15660 5227 5211 15661 5230 5213 15662 5231 5215 15663 5230 5213 15664 5229 5216 15665 5233 5217 15666 5234 5218 15667 5235 5219 15668 5237 5220 15669 5238 5221 15670 5236 5222 15671 5239 5223 15672 5240 5224 15673 5241 5225 15674 5243 5226 15675 5244 5227 15676 5242 5228 15677 5234 5218 15678 5245 5229 15679 5246 5230 15680 5247 5231 15681 5237 5220 15682 5235 5219 15683 5249 5232 15684 5250 5233 15685 5251 5234 15686 5252 5235 15687 5253 5236 15688 5254 5237 15689 5254 5237 15690 5205 5195 15691 5208 5194 15692 5256 5238 15693 5248 5239 15694 5251 5234 15695 5245 5229 15696 5258 5240 15697 5259 5241 15698 5260 5242 15699 5247 5231 15700 5246 5230 15701 5261 5243 15702 5262 5244 15703 5223 5245 15704 5218 5204 15705 5263 5246 15706 5264 5247 15707 5240 5224 15708 5265 5248 15709 5266 5249 15710 5241 5225 15711 5266 5249 15712 5267 5250 15713 5268 5251 15714 5269 5252 15715 5262 5244 15716 5270 5253 15717 5271 5254 15718 5229 5216 15719 5273 5255 15720 5274 5256 15721 5275 5257 15722 5276 5258 15723 5269 5252 15724 5277 5259 15725 5272 5260 15726 5279 5261 15727 5280 5262 15728 5269 5252 15729 5268 5251 15730 5281 5263 15731 5282 5264 15732 5263 5246 15733 5218 5204 15734 5273 5255 15735 5280 5262 15736 5284 5265 15737 5283 5266 15738 5285 5267 15739 5274 5256 15740 5269 5252 15741 5276 5258 15742 5286 5268 15743 5265 5248 15744 5287 5269 15745 5288 5270 15746 5278 5271 15747 5277 5259 15748 5289 5272 15749 5291 5273 15750 5267 5250 15751 5266 5249 15752 5277 5259 15753 5281 5263 15754 5292 5274 15755 5294 5275 15756 5295 5276 15757 5296 5277 15758 5203 5191 15759 5297 5278 15760 5298 5279 15761 5299 5280 15762 5300 5281 15763 5291 5273 15764 5302 5282 15765 5303 5283 15766 5304 5284 15767 5305 5285 15768 5306 5286 15769 5290 5287 15770 5307 5288 15771 5305 5285 15772 5289 5272 15773 5309 5289 15774 5301 5290 15775 5304 5284 15776 5310 5291 15777 5311 5292 15778 5312 5293 15779 5293 5294 15780 5314 5295 15781 5315 5296 15782 5316 5297 15783 5317 5298 15784 5318 5299 15785 5321 5300 15786 5313 5301 15787 5312 5293 15788 5322 5302 15789 5323 5303 15790 5324 5304 15791 5308 5305 15792 5304 5284 15793 5327 5306 15794 5328 5307 15795 5327 5306 15796 5304 5284 15797 5329 5308 15798 5316 5297 15799 5319 5309 15800 5331 5310 15801 5325 5311 15802 5324 5304 15803 5332 5312 15804 5324 5304 15805 5316 5297 15806 5333 5313 15807 5332 5312 15808 5329 5308 15809 5334 5314 15810 5329 5308 15811 5330 5315 15812 5334 5314 15813 5335 5316 15814 5336 5317 15815 5337 5318 15816 5338 5319 15817 5295 5276 15818 5270 5253 15819 5339 5320 15820 5340 5321 15821 5341 5322 15822 5337 5318 15823 5294 5275 15824 5342 5323 15825 5331 5310 15826 5332 5312 15827 5343 5324 15828 5344 5325 15829 5271 5254 15830 5338 5319 15831 5337 5318 15832 5346 5326 15833 5339 5320 15834 5347 5327 15835 5348 5328 15836 5346 5326 15837 5337 5318 15838 5341 5322 15839 5350 5329 15840 5351 5330 15841 5333 5313 15842 5333 5313 15843 5351 5330 15844 5352 5331 15845 5353 5332 15846 5354 5333 15847 5355 5334 15848 5357 5335 15849 5343 5324 15850 5340 5321 15851 5358 5336 15852 5359 5337 15853 5360 5338 15854 5363 5339 15855 5364 5340 15856 5365 5341 15857 5358 5336 15858 5361 5342 15859 5367 5343 15860 5368 5344 15861 5369 5345 15862 5365 5341 15863 5370 5346 15864 5371 5347 15865 5353 5332 15866 5285 5267 15867 5286 5268 15868 5276 5258 15869 5274 5256 15870 5276 5258 15871 5278 5271 15872 5315 5296 15873 5314 5295 15874 5311 5292 15875 5341 5322 15876 5315 5296 15877 5310 5291 15878 5349 5348 15879 5341 5322 15880 5372 5349 15881 5374 5350 15882 5375 5351 15883 5369 5345 15884 5377 5352 15885 5363 5339 15886 5362 5353 15887 5379 5354 15888 5338 5319 15889 5345 5355 15890 5338 5319 15891 5379 5354 15892 5298 5279 15893 5295 5276 15894 5298 5279 15895 5297 5278 15896 5279 5261 15897 5264 5247 15898 5263 5246 15899 5280 5262 15900 5263 5246 15901 5282 5264 15902 5356 5356 15903 5355 5334 15904 5357 5335 15905 5347 5327 15906 5370 5346 15907 5356 5356 15908 5363 5339 15909 5377 5352 15910 5378 5357 15911 5364 5340 15912 5363 5339 15913 5345 5355 15914 5349 5348 15915 5368 5344 15916 5364 5340 15917 5373 5358 15918 5374 5350 15919 5368 5344 15920 5351 5330 15921 5358 5336 15922 5366 5359 15923 5351 5330 15924 5350 5329 15925 5359 5337 15926 5211 5197 15927 5298 5279 15928 5270 5253 15929 5270 5253 15930 5298 5279 15931 5379 5354 15932 5347 5327 15933 5339 5320 15934 5379 5354 15935 5378 5357 15936 5377 5352 15937 5370 5346 15938 5377 5352 15939 5376 5360 15940 5371 5347 15941 5366 5359 15942 5367 5343 15943 5375 5351 15944 5352 5331 15945 5366 5359 15946 5374 5350 15947 5342 5323 15948 5352 5331 15949 5373 5358 15950 5372 5349 15951 5310 5291 15952 5331 5310 15953 5310 5291 15954 5313 5301 15955 5325 5311 15956 5322 5302 15957 5325 5311 15958 5313 5301 15959 5318 5299 15960 5317 5298 15961 5327 5306 15962 5326 5361 15963 5327 5306 15964 5317 5298 15965 5205 5195 15966 5254 5237 15967 5380 5362 15968 5254 5237 15969 5253 5236 15970 5381 5363 15971 5382 5364 15972 5381 5363 15973 5253 5236 15974 5384 5365 15975 5382 5364 15976 5383 5366 15977 5386 5367 15978 5387 5368 15979 5384 5365 15980 5299 5280 15981 5288 5270 15982 5301 5290 15983 5287 5269 15984 5302 5282 15985 5301 5290 15986 5389 5369 15987 5386 5367 15988 5385 5370 15989 5385 5370 15990 5383 5366 15991 5390 5371 15992 5391 5372 15993 5390 5371 15994 5383 5366 15995 5391 5372 15996 5253 5236 15997 5252 5235 15998 5249 5232 15999 5393 5373 16000 5394 5374 16001 5395 5375 16002 5393 5373 16003 5249 5232 16004 5396 5376 16005 5395 5375 16006 5248 5239 16007 5300 5281 16008 5389 5369 16009 5388 5377 16010 5388 5377 16011 5390 5371 16012 5267 5250 16013 5243 5226 16014 5267 5250 16015 5390 5371 16016 5244 5227 16017 5243 5226 16018 5391 5372 16019 5394 5374 16020 5393 5373 16021 5234 5218 16022 5245 5229 16023 5234 5218 16024 5393 5373 16025 5258 5240 16026 5245 5229 16027 5395 5375 16028 5202 5190 16029 5264 5247 16030 5297 5278 16031 5296 5277 16032 5297 5278 16033 5264 5247 16034 5293 5294 16035 5296 5277 16036 5279 5261 16037 5314 5295 16038 5293 5294 16039 5272 5260 16040 5311 5292 16041 5314 5295 16042 5275 5257 16043 5311 5292 16044 5278 5271 16045 5290 5287 16046 5306 5286 16047 5320 5378 16048 5312 5293 16049 5397 5379 16050 5398 5380 16051 5399 5381 16052 5401 5382 16053 5402 5383 16054 5399 5381 16055 5403 5384 16056 5404 5385 16057 5402 5383 16058 5405 5386 16059 5406 5387 16060 5407 5388 16061 5409 5389 16062 5410 5390 16063 5411 5391 16064 5410 5390 16065 5413 5392 16066 5414 5393 16067 5413 5392 16068 5397 5379 16069 5400 5394 16070 5415 5395 16071 5405 5386 16072 5408 5396 16073 5417 5397 16074 5418 5398 16075 5404 5385 16076 5419 5399 16077 5420 5400 16078 5418 5398 16079 5421 5401 16080 5422 5402 16081 5420 5400 16082 5423 5403 16083 5424 5404 16084 5422 5402 16085 5425 5405 16086 5426 5406 16087 5424 5404 16088 5425 5405 16089 5415 5395 16090 5416 5407 16091 5251 5234 16092 5255 5408 16093 5208 5194 16094 5250 5233 16095 5252 5235 16096 5255 5408 16097 5392 5409 16098 5252 5235 16099 5250 5233 16100 5233 5217 16101 5244 5227 16102 5392 5409 16103 5244 5227 16104 5233 5217 16105 5236 5222 16106 5238 5221 16107 5239 5223 16108 5242 5228 16109 5271 5254 16110 5344 5325 16111 5232 5410 16112 5361 5342 16113 5360 5338 16114 5427 5411 16115 5361 5342 16116 5428 5412 16117 5429 5413 16118 5367 5343 16119 5429 5413 16120 5430 5414 16121 5375 5351 16122 5430 5414 16123 5431 5415 16124 5369 5345 16125 5431 5415 16126 5432 5416 16127 5362 5353 16128 5365 5341 16129 5432 5416 16130 5376 5360 16131 5362 5353 16132 5433 5417 16133 5371 5347 16134 5376 5360 16135 5434 5418 16136 5353 5332 16137 5371 5347 16138 5435 5419 16139 5436 5420 16140 5437 5421 16141 5354 5333 16142 5428 5412 16143 5427 5411 16144 5439 5422 16145 5429 5413 16146 5428 5412 16147 5438 5423 16148 5431 5415 16149 5441 5424 16150 5442 5425 16151 5431 5415 16152 5430 5414 16153 5443 5426 16154 5433 5417 16155 5444 5427 16156 5445 5428 16157 5433 5417 16158 5432 5416 16159 5442 5425 16160 5435 5419 16161 5446 5429 16162 5447 5430 16163 5448 5431 16164 5437 5421 16165 5436 5420 16166 5434 5418 16167 5445 5428 16168 5446 5429 16169 5430 5414 16170 5429 5413 16171 5440 5432 16172 5438 5423 16173 5439 5422 16174 5450 5433 16175 5440 5432 16176 5438 5423 16177 5449 5434 16178 5443 5426 16179 5440 5432 16180 5451 5435 16181 5441 5424 16182 5443 5426 16183 5452 5436 16184 5442 5425 16185 5441 5424 16186 5453 5437 16187 5444 5427 16188 5442 5425 16189 5454 5438 16190 5444 5427 16191 5455 5439 16192 5456 5440 16193 5445 5428 16194 5456 5440 16195 5457 5441 16196 5446 5429 16197 5457 5441 16198 5458 5442 16199 5459 5443 16200 5448 5431 16201 5447 5430 16202 5460 5444 16203 5284 5265 16204 5282 5264 16205 5215 5201 16206 5460 5444 16207 5217 5203 16208 5213 5199 16209 5461 5445 16210 5462 5446 16211 5220 5205 16212 5167 5152 16213 5195 5182 16214 5223 5245 16215 5168 5153 16216 5167 5152 16217 5461 5445 16218 5195 5182 16219 5197 5184 16220 5223 5245 16221 5262 5244 16222 5171 5156 16223 5286 5268 16224 5172 5169 16225 5171 5156 16226 5286 5268 16227 5285 5267 16228 5186 5172 16229 5283 5266 16230 5284 5265 16231 5134 5122 16232 5284 5265 16233 5460 5444 16234 5173 5157 16235 5285 5267 16236 5283 5266 16237 5133 5121 16238 5462 5446 16239 5197 5184 16240 5193 5180 16241 5214 5200 16242 5193 5180 16243 5174 5158 16244 5460 5444 16245 5215 5201 16246 5174 5158 16247 5400 5394 16248 5399 5381 16249 5463 5447 16250 5399 5381 16251 5402 5383 16252 5465 5448 16253 5404 5385 16254 5466 5449 16255 5465 5448 16256 5408 5396 16257 5407 5388 16258 5467 5450 16259 5412 5451 16260 5411 5391 16261 5469 5452 16262 5411 5391 16263 5414 5393 16264 5471 5453 16265 5414 5393 16266 5400 5394 16267 5464 5454 16268 5416 5407 16269 5408 5396 16270 5468 5455 16271 5418 5398 16272 5473 5456 16273 5466 5449 16274 5420 5400 16275 5474 5457 16276 5473 5456 16277 5422 5402 16278 5475 5458 16279 5474 5457 16280 5424 5404 16281 5476 5459 16282 5475 5458 16283 5426 5406 16284 5477 5460 16285 5476 5459 16286 5416 5407 16287 5472 5461 16288 5477 5460 16289 5451 5435 16290 5449 5434 16291 5478 5462 16292 5454 5438 16293 5453 5437 16294 5480 5463 16295 5453 5437 16296 5452 5436 16297 5482 5464 16298 5455 5439 16299 5483 5465 16300 5484 5466 16301 5454 5438 16302 5481 5467 16303 5483 5465 16304 5457 5441 16305 5485 5468 16306 5486 5469 16307 5456 5440 16308 5484 5466 16309 5485 5468 16310 5452 5436 16311 5451 5435 16312 5479 5470 16313 5449 5434 16314 5450 5433 16315 5487 5471 16316 5458 5442 16317 5486 5469 16318 5488 5472 16319 5222 5207 16320 5221 5206 16321 5209 5473 16322 5210 5196 16323 5380 5362 16324 5261 5243 16325 5380 5362 16326 5381 5363 16327 5268 5251 16328 5281 5263 16329 5268 5251 16330 5381 5363 16331 5292 5274 16332 5281 5263 16333 5382 5364 16334 5387 5368 16335 5307 5288 16336 5292 5274 16337 5406 5387 16338 5409 5389 16339 5412 5451 16340 5407 5388 16341 5412 5451 16342 5470 5474 16343 5316 5297 16344 5324 5304 16345 5323 5303 16346 5397 5379 16347 5300 5281 16348 5299 5280 16349 5413 5392 16350 5389 5369 16351 5300 5281 16352 5389 5369 16353 5413 5392 16354 5410 5390 16355 5409 5389 16356 5387 5368 16357 5386 5367 16358 5409 5389 16359 5406 5387 16360 5307 5288 16361 5406 5387 16362 5405 5386 16363 5305 5285 16364 5405 5386 16365 5415 5395 16366 5306 5286 16367 5415 5395 16368 5425 5405 16369 5320 5378 16370 5423 5403 16371 5321 5300 16372 5320 5378 16373 5421 5401 16374 5322 5302 16375 5321 5300 16376 5419 5399 16377 5323 5303 16378 5322 5302 16379 5417 5397 16380 5326 5361 16381 5323 5303 16382 5403 5384 16383 5308 5305 16384 5326 5361 16385 5401 5382 16386 5309 5289 16387 5308 5305 16388 5398 5380 16389 5299 5280 16390 5309 5289 16391 5489 5475 16392 5490 5476 16393 5491 5477 16394 5492 5478 16395 5493 5479 16396 5494 5480 16397 5492 5478 16398 5495 5481 16399 5496 5482 16400 5497 5483 16401 5498 5484 16402 5499 5485 16403 5502 5486 16404 5503 5487 16405 5504 5488 16406 5505 5489 16407 5506 5490 16408 5507 5491 16409 5509 5492 16410 5502 5486 16411 5501 5493 16412 5506 5490 16413 5505 5489 16414 5500 5494 16415 5510 5495 16416 5511 5496 16417 5512 5497 16418 5513 5498 16419 5512 5497 16420 5514 5499 16421 5516 5500 16422 5517 5501 16423 5518 5502 16424 5519 5503 16425 5520 5504 16426 5521 5505 16427 5504 5488 16428 5503 5487 16429 5523 5506 16430 5525 5507 16431 5526 5508 16432 5527 5509 16433 5508 5510 16434 5507 5491 16435 5529 5511 16436 5532 5512 16437 5533 5513 16438 5491 5477 16439 5535 5514 16440 5536 5515 16441 5537 5516 16442 5517 5501 16443 5532 5512 16444 5531 5517 16445 5516 5500 16446 5515 5518 16447 5522 5519 16448 5498 5484 16449 5497 5483 16450 5539 5520 16451 5540 5521 16452 5526 5508 16453 5525 5507 16454 5520 5504 16455 5519 5503 16456 5512 5497 16457 5495 5481 16458 5541 5522 16459 5496 5482 16460 5542 5523 16461 5543 5524 16462 5490 5476 16463 5534 5525 16464 5544 5526 16465 5545 5527 16466 5537 5516 16467 5544 5526 16468 5534 5525 16469 5546 5528 16470 5547 5529 16471 5540 5521 16472 5519 5503 16473 5544 5526 16474 5537 5516 16475 5490 5476 16476 5543 5524 16477 5531 5517 16478 5547 5529 16479 5546 5528 16480 5515 5518 16481 5515 5518 16482 5546 5528 16483 5545 5527 16484 5522 5519 16485 5545 5527 16486 5544 5526 16487 5543 5524 16488 5547 5529 16489 5518 5502 16490 5525 5507 16491 5545 5527 16492 5546 5528 16493 5540 5521 16494 5543 5524 16495 5542 5523 16496 5540 5521 16497 5547 5529 16498 5543 5524 16499 5528 5530 16500 5527 5509 16501 5523 5506 16502 5535 5514 16503 5528 5530 16504 5503 5487 16505 5535 5514 16506 5502 5486 16507 5509 5492 16508 5536 5515 16509 5509 5492 16510 5494 5480 16511 5513 5498 16512 5514 5499 16513 5548 5531 16514 5520 5504 16515 5513 5498 16516 5496 5482 16517 5521 5505 16518 5520 5504 16519 5541 5522 16520 5516 5500 16521 5521 5505 16522 5539 5520 16523 5497 5483 16524 5500 5494 16525 5517 5501 16526 5505 5489 16527 5532 5512 16528 5517 5501 16529 5505 5489 16530 5508 5510 16531 5533 5513 16532 5533 5513 16533 5508 5510 16534 5530 5532 16535 5549 5533 16536 5529 5511 16537 5507 5491 16538 5524 5534 16539 5550 5535 16540 5551 5536 16541 5492 5478 16542 5501 5493 16543 5552 5537 16544 5495 5481 16545 5492 5478 16546 5552 5537 16547 5499 5485 16548 5553 5538 16549 5554 5539 16550 5498 5484 16551 5538 5540 16552 5553 5538 16553 5553 5538 16554 5551 5536 16555 5550 5535 16556 5538 5540 16557 5552 5537 16558 5551 5536 16559 5495 5481 16560 5552 5537 16561 5538 5540 16562 5552 5537 16563 5501 5493 16564 5504 5488 16565 5534 5525 16566 5525 5507 16567 5528 5530 16568 5499 5485 16569 5507 5491 16570 5506 5490 16571 5538 5540 16572 5539 5520 16573 5541 5522 16574 5498 5484 16575 5553 5538 16576 5499 5485 16577 5510 5495 16578 5494 5480 16579 5493 5479 16580 5509 5492 16581 5501 5493 16582 5492 5478 16583 5536 5515 16584 5510 5495 16585 5512 5497 16586 5511 5496 16587 5493 5479 16588 5555 5541 16589 5555 5541 16590 5548 5531 16591 5514 5499 16592 5492 5478 16593 5555 5541 16594 5493 5479 16595 5492 5478 16596 5548 5531 16597 5555 5541 16598 5496 5482 16599 5548 5531 16600 5492 5478 16601 5512 5497 16602 5556 5542 16603 5514 5499 16604 5511 5496 16605 5556 5542 16606 5512 5497 16607 5557 5543 16608 5558 5544 16609 5559 5545 16610 5562 5546 16611 5563 5547 16612 5564 5548 16613 5566 5549 16614 5561 5550 16615 5564 5548 16616 5567 5551 16617 5568 5552 16618 5559 5545 16619 5569 5553 16620 5570 5554 16621 5571 5555 16622 5570 5554 16623 5573 5556 16624 5574 5557 16625 5576 5558 16626 5577 5559 16627 5578 5560 16628 5573 5556 16629 5557 5543 16630 5560 5561 16631 5580 5562 16632 5581 5563 16633 5225 5209 16634 5581 5563 16635 5580 5562 16636 5567 5551 16637 5580 5562 16638 5582 5564 16639 5568 5552 16640 5582 5564 16641 5580 5562 16642 5584 5565 16643 5584 5565 16644 5580 5562 16645 5224 5214 16646 5583 5566 16647 5584 5565 16648 5231 5215 16649 5585 5567 16650 5586 5568 16651 5587 5569 16652 5586 5568 16653 5238 5221 16654 5237 5220 16655 5239 5223 16656 5589 5570 16657 5590 5571 16658 5589 5570 16659 5591 5572 16660 5592 5573 16661 5593 5574 16662 5594 5575 16663 5588 5576 16664 5247 5231 16665 5593 5574 16666 5587 5569 16667 5596 5577 16668 5597 5578 16669 5598 5579 16670 5599 5580 16671 5600 5581 16672 5601 5582 16673 5562 5546 16674 5561 5550 16675 5601 5582 16676 5603 5583 16677 5604 5584 16678 5596 5577 16679 5605 5585 16680 5606 5586 16681 5594 5575 16682 5260 5242 16683 5605 5585 16684 5593 5574 16685 5577 5559 16686 5607 5587 16687 5608 5588 16688 5574 5557 16689 5560 5561 16690 5609 5589 16691 5611 5590 16692 5265 5248 16693 5240 5224 16694 5612 5591 16695 5611 5590 16696 5590 5571 16697 5607 5587 16698 5613 5592 16699 5614 5593 16700 5583 5566 16701 5615 5594 16702 5616 5595 16703 5618 5596 16704 5619 5597 16705 5620 5598 16706 5621 5599 16707 5622 5600 16708 5623 5601 16709 5624 5602 16710 5625 5603 16711 5617 5604 16712 5613 5592 16713 5623 5601 16714 5626 5605 16715 5574 5557 16716 5610 5606 16717 5627 5607 16718 5629 5608 16719 5624 5602 16720 5620 5598 16721 5619 5597 16722 5630 5609 16723 5628 5610 16724 5631 5611 16725 5621 5599 16726 5613 5592 16727 5632 5612 16728 5287 5269 16729 5265 5248 16730 5622 5600 16731 5633 5613 16732 5634 5614 16733 5635 5615 16734 5632 5612 16735 5611 5590 16736 5623 5601 16737 5634 5614 16738 5636 5616 16739 5638 5617 16740 5639 5618 16741 5640 5619 16742 5559 5545 16743 5568 5552 16744 5641 5620 16745 5643 5621 16746 5632 5612 16747 5635 5615 16748 5646 5622 16749 5303 5283 16750 5302 5282 16751 5647 5623 16752 5634 5614 16753 5633 5613 16754 5649 5624 16755 5636 5616 16756 5634 5614 16757 5646 5622 16758 5645 5625 16759 5651 5626 16760 5652 5627 16761 5653 5628 16762 5654 5629 16763 5656 5630 16764 5657 5631 16765 5637 5632 16766 5658 5633 16767 5319 5309 16768 5318 5299 16769 5654 5629 16770 5653 5628 16771 5661 5634 16772 5662 5635 16773 5663 5636 16774 5664 5637 16775 5667 5638 16776 5646 5622 16777 5650 5639 16778 5646 5622 16779 5667 5638 16780 5328 5307 16781 5668 5640 16782 5330 5315 16783 5319 5309 16784 5669 5641 16785 5670 5642 16786 5664 5637 16787 5670 5642 16788 5668 5640 16789 5658 5633 16790 5671 5643 16791 5672 5644 16792 5668 5640 16793 5330 5315 16794 5668 5640 16795 5672 5644 16796 5672 5644 16797 5671 5643 16798 5336 5317 16799 5639 5618 16800 5673 5645 16801 5674 5646 16802 5675 5647 16803 5676 5648 16804 5616 5595 16805 5677 5649 16806 5656 5630 16807 5640 5619 16808 5678 5650 16809 5671 5643 16810 5670 5642 16811 5615 5594 16812 5344 5325 16813 5343 5324 16814 5680 5651 16815 5674 5646 16816 5673 5645 16817 5681 5652 16818 5682 5653 16819 5676 5648 16820 5677 5649 16821 5674 5646 16822 5680 5651 16823 5350 5329 16824 5336 5317 16825 5671 5643 16826 5671 5643 16827 5678 5650 16828 5685 5654 16829 5686 5655 16830 5687 5656 16831 5355 5334 16832 5675 5647 16833 5343 5324 16834 5357 5335 16835 5689 5657 16836 5360 5338 16837 5359 5337 16838 5691 5658 16839 5692 5659 16840 5693 5660 16841 5695 5661 16842 5689 5657 16843 5688 5662 16844 5696 5663 16845 5692 5659 16846 5691 5658 16847 5698 5664 16848 5687 5656 16849 5686 5655 16850 5621 5599 16851 5631 5611 16852 5630 5609 16853 5622 5600 16854 5621 5599 16855 5619 5597 16856 5656 5630 16857 5652 5627 16858 5655 5665 16859 5652 5627 16860 5656 5630 16861 5677 5649 16862 5700 5666 16863 5677 5649 16864 5683 5667 16865 5702 5668 16866 5696 5663 16867 5697 5669 16868 5690 5670 16869 5693 5660 16870 5705 5671 16871 5679 5672 16872 5673 5645 16873 5707 5673 16874 5641 5620 16875 5707 5673 16876 5673 5645 16877 5642 5674 16878 5641 5620 16879 5639 5618 16880 5610 5606 16881 5609 5589 16882 5625 5603 16883 5627 5607 16884 5610 5606 16885 5624 5602 16886 5687 5656 16887 5681 5652 16888 5357 5335 16889 5682 5653 16890 5681 5652 16891 5687 5656 16892 5693 5660 16893 5679 5672 16894 5706 5675 16895 5692 5659 16896 5680 5651 16897 5679 5672 16898 5683 5667 16899 5680 5651 16900 5692 5659 16901 5701 5676 16902 5683 5667 16903 5696 5663 16904 5694 5677 16905 5688 5662 16906 5684 5678 16907 5684 5678 16908 5688 5662 16909 5359 5337 16910 5568 5552 16911 5582 5564 16912 5616 5595 16913 5707 5673 16914 5641 5620 16915 5616 5595 16916 5682 5653 16917 5706 5675 16918 5707 5673 16919 5706 5675 16920 5682 5653 16921 5698 5664 16922 5705 5671 16923 5698 5664 16924 5699 5679 16925 5703 5680 16926 5695 5661 16927 5694 5677 16928 5702 5668 16929 5694 5677 16930 5685 5654 16931 5678 5650 16932 5700 5666 16933 5701 5676 16934 5700 5666 16935 5678 5650 16936 5669 5641 16937 5652 5627 16938 5669 5641 16939 5663 5636 16940 5653 5628 16941 5663 5636 16942 5662 5635 16943 5667 5638 16944 5659 5681 16945 5318 5299 16946 5659 5681 16947 5667 5638 16948 5666 5682 16949 5561 5550 16950 5566 5549 16951 5708 5683 16952 5601 5582 16953 5708 5683 16954 5709 5684 16955 5710 5685 16956 5711 5686 16957 5602 5687 16958 5712 5688 16959 5713 5689 16960 5711 5686 16961 5714 5690 16962 5713 5689 16963 5712 5688 16964 5645 5625 16965 5632 5612 16966 5643 5621 16967 5645 5625 16968 5302 5282 16969 5287 5269 16970 5713 5689 16971 5714 5690 16972 5717 5691 16973 5713 5689 16974 5716 5692 16975 5718 5693 16976 5711 5686 16977 5718 5693 16978 5719 5694 16979 5599 5580 16980 5602 5687 16981 5719 5694 16982 5721 5695 16983 5722 5696 16984 5598 5579 16985 5723 5697 16986 5595 5698 16987 5598 5579 16988 5724 5699 16989 5603 5583 16990 5595 5698 16991 5644 5700 16992 5635 5615 16993 5716 5692 16994 5716 5692 16995 5635 5615 16996 5612 5591 16997 5718 5693 16998 5612 5591 16999 5592 5573 17000 5591 5572 17001 5720 5701 17002 5719 5694 17003 5721 5695 17004 5585 5567 17005 5588 5576 17006 5594 5575 17007 5723 5697 17008 5722 5696 17009 5606 5586 17010 5724 5699 17011 5723 5697 17012 5560 5561 17013 5559 5545 17014 5642 5674 17015 5609 5589 17016 5642 5674 17017 5638 5617 17018 5625 5603 17019 5638 5617 17020 5637 5632 17021 5657 5631 17022 5618 5596 17023 5617 5604 17024 5655 5665 17025 5622 5600 17026 5618 5596 17027 5633 5613 17028 5622 5600 17029 5655 5665 17030 5648 5702 17031 5633 5613 17032 5654 5629 17033 5725 5703 17034 5726 5704 17035 5727 5705 17036 5727 5705 17037 5729 5706 17038 5730 5707 17039 5729 5706 17040 5731 5708 17041 5732 5709 17042 5733 5710 17043 5734 5711 17044 5735 5712 17045 5737 5713 17046 5738 5714 17047 5739 5715 17048 5740 5716 17049 5739 5715 17050 5741 5717 17051 5742 5718 17052 5741 5717 17053 5726 5704 17054 5743 5719 17055 5744 5720 17056 5734 5711 17057 5731 5708 17058 5745 5721 17059 5746 5722 17060 5745 5721 17061 5747 5723 17062 5748 5724 17063 5747 5723 17064 5749 5725 17065 5750 5726 17066 5749 5725 17067 5751 5727 17068 5752 5728 17069 5751 5727 17070 5753 5729 17071 5754 5730 17072 5754 5730 17073 5753 5729 17074 5744 5720 17075 5596 5577 17076 5604 5584 17077 5562 5546 17078 5597 5578 17079 5596 5577 17080 5600 5581 17081 5597 5578 17082 5599 5580 17083 5720 5701 17084 5585 5567 17085 5721 5695 17086 5720 5701 17087 5591 5572 17088 5589 5570 17089 5586 5568 17090 5238 5221 17091 5586 5568 17092 5589 5570 17093 5232 5410 17094 5344 5325 17095 5615 5594 17096 5689 5657 17097 5755 5731 17098 5427 5411 17099 5756 5732 17100 5755 5731 17101 5689 5657 17102 5757 5733 17103 5756 5732 17104 5695 5661 17105 5758 5734 17106 5757 5733 17107 5703 5680 17108 5759 5735 17109 5758 5734 17110 5697 5669 17111 5759 5735 17112 5691 5658 17113 5690 5670 17114 5760 5736 17115 5690 5670 17116 5704 5737 17117 5699 5679 17118 5762 5738 17119 5761 5739 17120 5686 5655 17121 5763 5740 17122 5762 5738 17123 5763 5740 17124 5686 5655 17125 5354 5333 17126 5439 5422 17127 5427 5411 17128 5755 5731 17129 5756 5732 17130 5765 5741 17131 5764 5742 17132 5766 5743 17133 5767 5744 17134 5758 5734 17135 5758 5734 17136 5767 5744 17137 5768 5745 17138 5769 5746 17139 5770 5747 17140 5760 5736 17141 5770 5747 17142 5766 5743 17143 5759 5735 17144 5771 5748 17145 5772 5749 17146 5762 5738 17147 5763 5740 17148 5437 5421 17149 5448 5431 17150 5772 5749 17151 5769 5746 17152 5761 5739 17153 5757 5733 17154 5768 5745 17155 5765 5741 17156 5450 5433 17157 5439 5422 17158 5764 5742 17159 5765 5741 17160 5774 5750 17161 5773 5751 17162 5768 5745 17163 5775 5752 17164 5774 5750 17165 5767 5744 17166 5776 5753 17167 5775 5752 17168 5766 5743 17169 5777 5754 17170 5776 5753 17171 5770 5747 17172 5778 5755 17173 5777 5754 17174 5779 5756 17175 5778 5755 17176 5770 5747 17177 5780 5757 17178 5779 5756 17179 5769 5746 17180 5781 5758 17181 5780 5757 17182 5772 5749 17183 5771 5748 17184 5448 5431 17185 5459 5443 17186 5627 5607 17187 5629 5608 17188 5782 5759 17189 5575 5760 17190 5782 5759 17191 5571 5555 17192 5783 5761 17193 5784 5762 17194 5569 5553 17195 5550 5535 17196 5524 5534 17197 5576 5558 17198 5524 5534 17199 5523 5506 17200 5577 5559 17201 5554 5539 17202 5550 5535 17203 5784 5762 17204 5577 5559 17205 5523 5506 17206 5527 5509 17207 5527 5509 17208 5526 5508 17209 5631 5611 17210 5631 5611 17211 5526 5508 17212 5542 5523 17213 5628 5610 17214 5489 5475 17215 5491 5477 17216 5629 5608 17217 5491 5477 17218 5530 5532 17219 5630 5609 17220 5542 5523 17221 5489 5475 17222 5549 5533 17223 5554 5539 17224 5783 5761 17225 5529 5511 17226 5549 5533 17227 5572 5763 17228 5782 5759 17229 5530 5532 17230 5529 5511 17231 5726 5704 17232 5785 5764 17233 5786 5765 17234 5727 5705 17235 5786 5765 17236 5787 5766 17237 5787 5766 17238 5788 5767 17239 5731 5708 17240 5734 5711 17241 5789 5768 17242 5790 5769 17243 5738 5714 17244 5791 5770 17245 5792 5771 17246 5739 5715 17247 5792 5771 17248 5793 5772 17249 5741 5717 17250 5793 5772 17251 5785 5764 17252 5744 5720 17253 5794 5773 17254 5789 5768 17255 5788 5767 17256 5795 5774 17257 5745 5721 17258 5795 5774 17259 5796 5775 17260 5747 5723 17261 5796 5775 17262 5797 5776 17263 5749 5725 17264 5797 5776 17265 5798 5777 17266 5751 5727 17267 5798 5777 17268 5799 5778 17269 5753 5729 17270 5799 5778 17271 5794 5773 17272 5744 5720 17273 5774 5750 17274 5800 5779 17275 5801 5780 17276 5777 5754 17277 5802 5781 17278 5803 5782 17279 5776 5753 17280 5803 5782 17281 5804 5783 17282 5805 5784 17283 5806 5785 17284 5778 5755 17285 5806 5785 17286 5802 5781 17287 5777 5754 17288 5807 5786 17289 5808 5787 17290 5780 5757 17291 5808 5787 17292 5805 5784 17293 5779 5756 17294 5775 5752 17295 5804 5783 17296 5800 5779 17297 5773 5751 17298 5801 5780 17299 5487 5471 17300 5488 5472 17301 5807 5786 17302 5781 5758 17303 5578 5560 17304 5566 5549 17305 5565 5788 17306 5566 5549 17307 5578 5560 17308 5608 5588 17309 5708 5683 17310 5608 5588 17311 5614 5593 17312 5626 5605 17313 5710 5685 17314 5709 5684 17315 5636 5616 17316 5712 5688 17317 5710 5685 17318 5715 5789 17319 5712 5688 17320 5636 5616 17321 5738 5714 17322 5737 5713 17323 5736 5790 17324 5791 5770 17325 5738 5714 17326 5735 5712 17327 5658 5633 17328 5659 5681 17329 5665 5791 17330 5643 5621 17331 5644 5700 17332 5725 5703 17333 5644 5700 17334 5717 5691 17335 5742 5718 17336 5740 5716 17337 5742 5718 17338 5717 5691 17339 5714 5690 17340 5715 5789 17341 5737 5713 17342 5737 5713 17343 5715 5789 17344 5649 5624 17345 5736 5790 17346 5649 5624 17347 5647 5623 17348 5733 5710 17349 5647 5623 17350 5648 5702 17351 5743 5719 17352 5648 5702 17353 5660 5792 17354 5660 5792 17355 5661 5634 17356 5752 5728 17357 5661 5634 17358 5662 5635 17359 5750 5726 17360 5662 5635 17361 5665 5791 17362 5748 5724 17363 5665 5791 17364 5666 5682 17365 5746 5722 17366 5666 5682 17367 5650 5639 17368 5732 5709 17369 5650 5639 17370 5651 5626 17371 5730 5707 17372 5651 5626 17373 5643 5621 17374 5728 5793 17375 5479 5470 19920 5478 5462 19921 6646 6631 19922 5481 5467 19923 5480 5463 19924 6648 6632 19925 5480 5463 19926 5482 5464 19927 6649 6633 19928 5483 5465 19929 6651 6634 19930 6652 6635 19931 6651 6634 19932 5481 5467 19933 6648 6632 19934 5485 5468 19935 6653 6636 19936 6654 6637 19937 5484 5466 19938 6652 6635 19939 6653 6636 19940 5482 5464 19941 5479 5470 19942 6647 6638 19943 5486 5469 19944 6654 6637 19945 6655 6639 19946 6656 6640 19947 6646 6631 19948 5478 5462 19949 6647 6638 19950 6646 6631 19951 6657 6641 19952 6648 6632 19953 6650 6642 19954 6659 6643 19955 6650 6642 19956 6649 6633 19957 6658 6644 19958 6652 6635 19959 6651 6634 19960 6661 6645 19961 6651 6634 19962 6648 6632 19963 6660 6646 19964 6654 6637 19965 6653 6636 19966 6662 6647 19967 6653 6636 19968 6652 6635 19969 6662 6647 19970 6649 6633 19971 6647 6638 19972 6658 6644 19973 6646 6631 19974 6656 6640 19975 6657 6641 19976 6655 6639 19977 6654 6637 19978 6663 6648 19979 6658 6644 19980 6657 6641 19981 6664 6649 19982 6660 6646 19983 6659 6643 19984 6666 6650 19985 6659 6643 19986 6658 6644 19987 6665 6651 19988 6661 6645 19989 6668 6652 19990 6669 6653 19991 6660 6646 19992 6667 6654 19993 6668 6652 19994 6662 6647 19995 6669 6653 19996 6670 6655 19997 6665 6651 19998 6664 6649 19999 6671 6656 20000 6667 6654 20001 6666 6650 20002 6672 6657 20003 6666 6650 20004 6665 6651 20005 6672 6657 20006 6669 6653 20007 6668 6652 20008 6672 6657 20009 6668 6652 20010 6667 6654 20011 6672 6657 20012 6669 6653 20013 6672 6657 20014 6671 6656 20015 6656 6640 20016 5487 5471 20017 5801 5780 20018 5800 5779 20019 6674 6658 20020 6673 6659 20021 6675 6660 20022 6676 6661 20023 5803 5782 20024 5803 5782 20025 6676 6661 20026 6677 6662 20027 6678 6663 20028 6679 6664 20029 5806 5785 20030 6679 6664 20031 6675 6660 20032 5802 5781 20033 6680 6665 20034 6681 6666 20035 5808 5787 20036 6681 6666 20037 6678 6663 20038 5805 5784 20039 5804 5783 20040 6677 6662 20041 6674 6658 20042 6655 6639 20043 6680 6665 20044 5807 5786 20045 6674 6658 20046 6682 6667 20047 6657 6641 20048 6675 6660 20049 6683 6668 20050 6684 6669 20051 6676 6661 20052 6684 6669 20053 6682 6667 20054 6678 6663 20055 6685 6670 20056 6686 6671 20057 6679 6664 20058 6686 6671 20059 6683 6668 20060 6680 6665 20061 6663 6648 20062 6685 6670 20063 6681 6666 20064 6685 6670 20065 6678 6663 20066 6677 6662 20067 6682 6667 20068 6674 6658 20069 6673 6659 20070 6657 6641 20071 6656 6640 20072 6655 6639 20073 6663 6648 20074 6680 6665 20075 6682 6667 20076 6687 6672 20077 6664 6649 20078 6683 6668 20079 6688 6673 20080 6689 6674 20081 6684 6669 20082 6689 6674 20083 6687 6672 20084 6690 6675 20085 6691 6676 20086 6686 6671 20087 6686 6671 20088 6691 6676 20089 6688 6673 20090 6670 6655 20091 6690 6675 20092 6685 6670 20093 6692 6677 20094 6671 6656 20095 6664 6649 20096 6688 6673 20097 6692 6677 20098 6689 6674 20099 6689 6674 20100 6692 6677 20101 6687 6672 20102 6690 6675 20103 6692 6677 20104 6691 6676 20105 6691 6676 20106 6692 6677 20107 6688 6673 20108 6671 6656 20109 6692 6677 20110 6690 6675 20111 5483 5465 20112 5481 5467 20113 6651 6634 20114 5806 5785 20115 6679 6664 20116 5802 5781 20117 5802 5781 20118 6675 6660 20119 5803 5782 20120 6648 6632 20121 5480 5463 20122 6650 6642 20123 6813 6794 20376 6814 6795 20377 6815 6796 20378 6813 6794 20379 6816 6797 20380 6817 6798 20381 6816 6797 20382 6813 6794 20383 6818 6799 20384 6818 6799 20385 6813 6794 20386 6812 6800 20387 6820 6801 20388 6821 6802 20389 6822 6803 20390 6821 6802 20391 6824 6804 20392 6825 6805 20393 6824 6804 20394 6821 6802 20395 6816 6797 20396 6821 6802 20397 6820 6801 20398 6817 6798 20399 6826 6806 20400 6827 6807 20401 6823 6808 20402 6827 6807 20403 6826 6806 20404 6828 6809 20405 6826 6806 20406 6830 6810 20407 6831 6811 20408 6830 6810 20409 6826 6806 20410 6822 6803 20411 6832 6812 20412 6833 6813 20413 6828 6809 20414 6833 6813 20415 6834 6814 20416 6829 6815 20417 6836 6816 20418 6837 6817 20419 6838 6818 20420 6840 6819 20421 6812 6800 20422 6815 6796 20423 6837 6817 20424 6840 6819 20425 6839 6820 20426 6842 6821 20427 6843 6822 20428 6844 6823 20429 6843 6822 20430 6842 6821 20431 6835 6824 20432 6834 6814 20433 6845 6825 20434 6846 6826 20435 6846 6826 20436 6845 6825 20437 6841 6827 20438 6847 6828 20439 6820 6801 20440 6823 6808 20441 6820 6801 20442 6847 6828 20443 6848 6829 20444 6847 6828 20445 6846 6826 20446 6844 6823 20447 6847 6828 20448 6827 6807 20449 6829 6815 20450 6849 6830 20451 6839 6820 20452 6815 6796 20453 6849 6830 20454 6843 6822 20455 6838 6818 20456 6843 6822 20457 6849 6830 20458 6848 6829 20459 6848 6829 20460 6849 6830 20461 6814 6795 20462 6850 6831 20463 6851 6832 20464 6834 6814 20465 6832 6812 20466 6852 6833 20467 6850 6831 20468 6853 6834 20469 6854 6835 20470 6836 6816 20471 6842 6821 20472 6855 6836 20473 6853 6834 20474 6841 6827 20475 6856 6837 20476 6855 6836 20477 6851 6832 20478 6857 6838 20479 6845 6825 20480 6857 6838 20481 6856 6837 20482 6841 6827 20483 6850 6831 20484 6858 6839 20485 6859 6840 20486 6852 6833 20487 6860 6841 20488 6858 6839 20489 6861 6842 20490 6862 6843 20491 6854 6835 20492 6863 6844 20493 6861 6842 20494 6853 6834 20495 6864 6845 20496 6863 6844 20497 6855 6836 20498 6851 6832 20499 6859 6840 20500 6865 6846 20501 6865 6846 20502 6864 6845 20503 6856 6837 20504 6866 6847 20505 6867 6848 20506 6868 6849 20507 6869 6850 20508 6870 6851 20509 6868 6849 20510 6870 6851 20511 6819 6852 20512 6818 6799 20513 6818 6799 20514 6812 6800 20515 6868 6849 20516 6871 6853 20517 6872 6854 20518 6873 6855 20519 6825 6805 20520 6824 6804 20521 6874 6856 20522 6824 6804 20523 6819 6852 20524 6870 6851 20525 6869 6850 20526 6871 6853 20527 6874 6856 20528 6872 6854 20529 6875 6857 20530 6876 6858 20531 6875 6857 20532 6877 6859 20533 6878 6860 20534 6831 6811 20535 6830 6810 20536 6876 6858 20537 6830 6810 20538 6825 6805 20539 6873 6855 20540 6832 6812 20541 6831 6811 20542 6878 6860 20543 6877 6859 20544 6880 6861 20545 6879 6862 20546 6882 6863 20547 6837 6817 20548 6836 6816 20549 6866 6847 20550 6812 6800 20551 6840 6819 20552 6837 6817 20553 6882 6863 20554 6883 6864 20555 6885 6865 20556 6886 6866 20557 6887 6867 20558 6886 6866 20559 6882 6863 20560 6881 6868 20561 6880 6861 20562 6877 6859 20563 6888 6869 20564 6888 6869 20565 6885 6865 20566 6884 6870 20567 6872 6854 20568 6871 6853 20569 6890 6871 20570 6871 6853 20571 6869 6850 20572 6891 6872 20573 6885 6865 20574 6888 6869 20575 6890 6871 20576 6877 6859 20577 6875 6857 20578 6890 6871 20579 6866 6847 20580 6883 6864 20581 6892 6873 20582 6882 6863 20583 6886 6866 20584 6892 6873 20585 6886 6866 20586 6885 6865 20587 6891 6872 20588 6891 6872 20589 6869 6850 20590 6867 6848 20591 6880 6861 20592 6893 6874 20593 6894 6875 20594 6832 6812 20595 6879 6862 20596 6894 6875 20597 6836 6816 20598 6854 6835 20599 6895 6876 20600 6887 6867 20601 6881 6868 20602 6895 6876 20603 6884 6870 20604 6887 6867 20605 6896 6877 20606 6889 6878 20607 6898 6879 20608 6893 6874 20609 6884 6870 20610 6897 6880 20611 6898 6879 20612 6894 6875 20613 6893 6874 20614 6899 6881 20615 6852 6833 20616 6894 6875 20617 6900 6882 20618 6854 6835 20619 6862 6843 20620 6901 6883 20621 6895 6876 20622 6901 6883 20623 6902 6884 20624 6896 6877 20625 6902 6884 20626 6903 6885 20627 6893 6874 20628 6898 6879 20629 6904 6886 20630 6897 6880 20631 6903 6885 20632 6904 6886 20633 6905 6887 20634 6906 6888 20635 6907 6889 20636 6910 6890 20637 6911 6891 20638 6912 6892 20639 6914 6893 20640 6915 6893 20641 6916 6893 20642 6917 6894 20643 6905 6887 20644 6908 6895 20645 6909 6896 20646 6912 6896 20647 6915 6896 20648 6919 6897 20649 6917 6897 20650 6918 6897 20651 6920 6898 20652 6911 6891 20653 6910 6890 20654 6906 6899 20655 6921 6899 20656 6922 6899 20657 6907 6900 20658 6922 6900 20659 6923 6900 20660 6911 6901 20661 6924 6901 20662 6925 6901 20663 6913 6902 20664 6926 6902 20665 6927 6902 20666 6916 6903 20667 6915 6903 20668 6928 6903 20669 6913 6904 20670 6916 6904 20671 6929 6904 20672 6908 6905 20673 6923 6905 20674 6930 6905 20675 6912 6906 20676 6925 6906 20677 6928 6906 20678 6918 6907 20679 6930 6907 20680 6931 6907 20681 6920 6908 20682 6931 6908 20683 6924 6908 20684 6917 6909 20685 6919 6909 20686 6932 6909 20687 6905 6910 20688 6917 6910 20689 6933 6910 20690 6906 6911 20691 6905 6911 20692 6934 6911 20693 6919 6912 20694 6910 6912 20695 6935 6912 20696 6910 6913 20697 6909 6913 20698 6936 6913 20699 6909 6914 20700 6914 6914 20701 6927 6914 20702 6938 6915 20703 6939 6916 20704 6940 6917 20705 6938 6915 20706 6941 6918 20707 6942 6919 20708 6941 6918 20709 6943 6920 20710 6944 6921 20711 6945 6922 20712 6946 6923 20713 6947 6924 20714 6948 6925 20715 6949 6926 20716 6950 6927 20717 6952 6928 20718 6953 6929 20719 6950 6927 20720 6937 6930 20721 6940 6917 20722 6953 6929 20723 6945 6922 20724 6947 6924 20725 6955 6931 20726 6943 6920 20727 6956 6932 20728 6957 6933 20729 6956 6932 20730 6958 6934 20731 6959 6935 20732 6958 6934 20733 6960 6936 20734 6961 6937 20735 6960 6936 20736 6962 6938 20737 6963 6939 20738 6964 6940 20739 6965 6941 20740 6963 6939 20741 6964 6940 20742 6954 6942 20743 6955 6931 20744 6940 6917 20745 6939 6916 20746 6966 6943 20747 6939 6916 20748 6942 6919 20749 6968 6944 20750 6942 6919 20751 6944 6921 20752 6969 6945 20753 6947 6924 20754 6951 6946 20755 6970 6947 20756 6951 6946 20757 6950 6927 20758 6972 6948 20759 6950 6927 20760 6953 6929 20761 6973 6949 20762 6953 6929 20763 6940 6917 20764 6967 6950 20765 6947 6924 20766 6971 6951 20767 6974 6952 20768 6957 6933 20769 6975 6953 20770 6969 6945 20771 6959 6935 20772 6976 6954 20773 6975 6953 20774 6961 6937 20775 6977 6955 20776 6976 6954 20777 6963 6939 20778 6978 6956 20779 6977 6955 20780 6965 6941 20781 6979 6957 20782 6978 6956 20783 6955 6931 20784 6974 6952 20785 6979 6957 20786 6967 6950 20787 6966 6943 20788 6980 6958 20789 6966 6943 20790 6968 6944 20791 6980 6958 20792 6968 6944 20793 6969 6945 20794 6980 6958 20795 6971 6951 20796 6970 6947 20797 6980 6958 20798 6970 6947 20799 6972 6948 20800 6980 6958 20801 6972 6948 20802 6973 6949 20803 6980 6958 20804 6973 6949 20805 6967 6950 20806 6980 6958 20807 6974 6952 20808 6971 6951 20809 6980 6958 20810 6969 6945 20811 6975 6953 20812 6980 6958 20813 6975 6953 20814 6976 6954 20815 6980 6958 20816 6976 6954 20817 6977 6955 20818 6980 6958 20819 6977 6955 20820 6978 6956 20821 6980 6958 20822 6978 6956 20823 6979 6957 20824 6980 6958 20825 6979 6957 20826 6974 6952 20827 6980 6958 20828 6948 6925 20829 6951 6946 20830 6947 6924 20831 6981 6959 20832 6982 6959 20833 6983 6959 20834 6985 6960 20835 6986 6961 20836 6987 6962 20837 6988 6963 20838 6989 6963 20839 6990 6963 20840 6982 6964 20841 6991 6965 20842 6992 6966 20843 6985 6960 20844 6984 6967 20845 6994 6968 20846 6996 6969 20847 6997 6970 20848 6998 6971 20849 6988 6972 20850 6990 6973 20851 6997 6970 20852 6986 6961 20853 6995 6974 20854 6998 6971 20855 6993 6975 20856 6994 6968 20857 6992 6966 20858 7000 6976 20859 7001 6977 20860 7002 6978 20861 7004 6979 20862 7005 6980 20863 7006 6981 20864 7008 6982 20865 7009 6983 20866 7010 6984 20867 7011 6985 20868 7012 6986 20869 7013 6987 20870 7015 6988 20871 7016 6989 20872 7017 6990 20873 7019 6991 20874 7020 6992 20875 7021 6993 20876 7023 6994 20877 7024 6995 20878 7025 6996 20879 7028 6997 20880 7029 6998 20881 7030 6999 20882 7032 7000 20883 7033 7001 20884 7034 7002 20885 7036 7003 20886 7037 7004 20887 7038 7005 20888 7040 7006 20889 7041 7007 20890 7042 7008 20891 7043 7009 20892 7044 7010 20893 7045 7011 20894 7047 7012 20895 7048 7013 20896 7049 7014 20897 7051 7015 20898 7052 7016 20899 7053 7017 20900 7055 7018 20901 7056 7019 20902 7057 7020 20903 7060 7021 20904 7061 7022 20905 7062 7023 20906 7003 7024 20907 7063 7025 20908 6999 7026 20909 7007 7027 20910 7063 7025 20911 7003 7024 20912 7011 6985 20913 7063 7025 20914 7007 7027 20915 7015 6988 20916 7063 7025 20917 7011 6985 20918 7019 6991 20919 7063 7025 20920 7015 6988 20921 7023 6994 20922 7063 7025 20923 7019 6991 20924 7027 7028 20925 7063 7025 20926 7023 6994 20927 7031 7029 20928 7063 7025 20929 7027 7028 20930 7035 7030 20931 7063 7025 20932 7031 7029 20933 7039 7031 20934 7063 7025 20935 7035 7030 20936 7043 7009 20937 7063 7025 20938 7039 7031 20939 7047 7012 20940 7063 7025 20941 7043 7009 20942 7051 7015 20943 7063 7025 20944 7047 7012 20945 7055 7018 20946 7063 7025 20947 7051 7015 20948 7059 7032 20949 7063 7025 20950 7055 7018 20951 6999 7026 20952 7063 7025 20953 7059 7032 20954 7064 7033 20955 7065 7034 20956 7001 6977 20957 7066 7035 20958 7067 7036 20959 7005 6980 20960 7008 6982 20961 7068 7037 20962 7069 7038 20963 7012 6986 20964 7070 7039 20965 7071 7040 20966 7016 6989 20967 7072 7041 20968 7073 7042 20969 7020 6992 20970 7074 7043 20971 7075 7044 20972 7024 6995 20973 7076 7045 20974 7077 7046 20975 7078 7047 20976 7079 7048 20977 7029 6998 20978 7080 7049 20979 7081 7050 20980 7033 7001 20981 7082 7051 20982 7083 7052 20983 7037 7004 20984 7084 7053 20985 7085 7054 20986 7041 7007 20987 7086 7055 20988 7087 7056 20989 7045 7011 20990 7048 7013 20991 7088 7057 20992 7089 7058 20993 7052 7016 20994 7090 7059 20995 7091 7060 20996 7056 7019 20997 7092 7061 20998 7093 7062 20999 7094 7063 21000 7095 7064 21001 7061 7022 21002 7057 7020 21003 7093 7062 21004 7094 7063 21005 7058 7065 21006 7057 7020 21007 7060 7021 21008 7095 7064 21009 7064 7033 21010 7000 6976 21011 7061 7022 21012 7000 6976 21013 6999 7026 21014 7025 6996 21015 7077 7046 21016 7078 7047 21017 7026 7066 21018 7025 6996 21019 7028 6997 21020 7079 7048 21021 7080 7049 21022 7032 7000 21023 7029 6998 21024 7032 7000 21025 7031 7029 21026 7021 6993 21027 7075 7044 21028 7076 7045 21029 7022 7067 21030 7021 6993 21031 7024 6995 21032 7081 7050 21033 7082 7051 21034 7036 7003 21035 7033 7001 21036 7036 7003 21037 7035 7030 21038 7065 7034 21039 7066 7035 21040 7004 6979 21041 7001 6977 21042 7004 6979 21043 7003 7024 21044 7053 7017 21045 7091 7060 21046 7092 7061 21047 7054 7068 21048 7053 7017 21049 7056 7019 21050 7085 7054 21051 7086 7055 21052 7044 7010 21053 7041 7007 21054 7044 7010 21055 7043 7009 21056 7087 7056 21057 7088 7057 21058 7048 7013 21059 7046 7069 21060 7045 7011 21061 7048 7013 21062 7083 7052 21063 7084 7053 21064 7040 7006 21065 7037 7004 21066 7040 7006 21067 7039 7031 21068 7049 7014 21069 7089 7058 21070 7090 7059 21071 7050 7070 21072 7049 7014 21073 7052 7016 21074 7067 7036 21075 7068 7037 21076 7008 6982 21077 7005 6980 21078 7008 6982 21079 7007 7027 21080 7009 6983 21081 7069 7038 21082 7070 7039 21083 7009 6983 21084 7012 6986 21085 7011 6985 21086 7013 6987 21087 7071 7040 21088 7072 7041 21089 7014 7071 21090 7013 6987 21091 7016 6989 21092 7017 6990 21093 7073 7042 21094 7074 7043 21095 7018 7072 21096 7017 6990 21097 7020 6992 21098 7096 7073 21099 7097 7074 21100 7098 7075 21101 7097 7074 21102 7099 7076 21103 7098 7075 21104 7099 7076 21105 7100 7077 21106 7098 7075 21107 7100 7077 21108 7101 7078 21109 7098 7075 21110 7101 7078 21111 7102 7079 21112 7098 7075 21113 7102 7079 21114 7103 7080 21115 7098 7075 21116 7103 7080 21117 7104 7081 21118 7098 7075 21119 7104 7081 21120 7105 7082 21121 7098 7075 21122 7105 7082 21123 7106 7083 21124 7098 7075 21125 7106 7083 21126 7107 7084 21127 7098 7075 21128 7107 7084 21129 7108 7085 21130 7098 7075 21131 7108 7085 21132 7109 7086 21133 7098 7075 21134 7109 7086 21135 7110 7087 21136 7098 7075 21137 7110 7087 21138 7111 7088 21139 7098 7075 21140 7111 7088 21141 7112 7089 21142 7098 7075 21143 7112 7089 21144 7096 7073 21145 7098 7075 21146 7113 7090 21147 7114 7091 21148 7115 7092 21149 7114 7091 21150 7116 7093 21151 7115 7092 21152 7116 7093 21153 7117 7094 21154 7115 7092 21155 7117 7094 21156 7118 7095 21157 7115 7092 21158 7118 7095 21159 7119 7096 21160 7115 7092 21161 7119 7096 21162 7120 7097 21163 7115 7092 21164 7120 7097 21165 7121 7098 21166 7115 7092 21167 7121 7098 21168 7122 7099 21169 7115 7092 21170 7122 7099 21171 7123 7100 21172 7115 7092 21173 7123 7100 21174 7124 7101 21175 7115 7092 21176 7124 7101 21177 7125 7102 21178 7115 7092 21179 7125 7102 21180 7126 7103 21181 7115 7092 21182 7126 7103 21183 7127 7104 21184 7115 7092 21185 7127 7104 21186 7128 7105 21187 7115 7092 21188 7128 7105 21189 7129 7106 21190 7115 7092 21191 7129 7106 21192 7113 7090 21193 7115 7092 21194 7130 7107 21195 7131 7108 21196 7132 7109 21197 7134 7110 21198 7130 7107 21199 7133 7111 21200 7136 7112 21201 7134 7110 21202 7135 7113 21203 7138 7114 21204 7136 7112 21205 7137 7115 21206 7140 7116 21207 7141 7117 21208 7142 7118 21209 7144 7119 21210 7138 7114 21211 7139 7120 21212 7146 7121 21213 7147 7122 21214 7148 7123 21215 7149 7124 21216 7150 7125 21217 7151 7126 21218 7153 7127 21219 7154 7128 21220 7141 7117 21221 7155 7129 21222 7156 7130 21223 7138 7114 21224 7156 7130 21225 7157 7131 21226 7136 7112 21227 7157 7131 21228 7158 7132 21229 7134 7110 21230 7158 7132 21231 7159 7133 21232 7130 7107 21233 7160 7134 21234 7131 7108 21235 7130 7107 21236 7146 7121 21237 7150 7125 21238 7149 7124 21239 7143 7135 21240 7162 7136 21241 7163 7137 21242 7164 7138 21243 7165 7139 21244 7166 7140 21245 7168 7141 21246 7169 7142 21247 7170 7143 21248 7152 7144 21249 7151 7126 21250 7171 7145 21251 7173 7146 21252 7147 7122 21253 7146 7121 21254 7174 7147 21255 7172 7148 21256 7171 7145 21257 7175 7149 21258 7176 7150 21259 7177 7151 21260 7154 7128 21261 7155 7129 21262 7144 7119 21263 7142 7118 21264 7141 7117 21265 7144 7119 21266 7154 7128 21267 7179 7152 21268 7180 7153 21269 7160 7134 21270 7159 7133 21271 7181 7154 21272 7159 7133 21273 7158 7132 21274 7183 7155 21275 7158 7132 21276 7157 7131 21277 7184 7156 21278 7156 7130 21279 7155 7129 21280 7185 7157 21281 7157 7131 21282 7156 7130 21283 7186 7158 21284 7151 7126 21285 7150 7125 21286 7187 7159 21287 7174 7147 21288 7171 7145 21289 7189 7160 21290 7171 7145 21291 7151 7126 21292 7188 7161 21293 7155 7129 21294 7154 7128 21295 7178 7162 21296 7168 7141 21297 7167 7163 21298 7153 7127 21299 7175 7149 21300 7190 7164 21301 7191 7165 21302 7162 7136 21303 7165 7139 21304 7164 7138 21305 7170 7143 21306 7169 7142 21307 7192 7166 21308 7173 7146 21309 7146 7121 21310 7161 7167 21311 7190 7164 21312 7180 7153 21313 7179 7152 21314 7160 7134 21315 7182 7168 21316 7187 7159 21317 7131 7108 21318 7160 7134 21319 7150 7125 21320 7131 7108 21321 7146 7121 21322 7148 7123 21323 7193 7169 21324 7194 7170 21325 7195 7171 21326 7197 7172 21327 7198 7173 21328 7194 7170 21329 7199 7174 21330 7200 7175 21331 7198 7173 21332 7201 7176 21333 7202 7177 21334 7200 7175 21335 7204 7178 21336 7205 7179 21337 7206 7180 21338 7207 7181 21339 7208 7182 21340 7202 7177 21341 7209 7183 21342 7210 7184 21343 7211 7185 21344 7212 7186 21345 7174 7147 21346 7213 7187 21347 7214 7188 21348 7203 7189 21349 7206 7180 21350 7216 7190 21351 7207 7181 21352 7201 7176 21353 7217 7191 21354 7201 7176 21355 7199 7174 21356 7218 7192 21357 7199 7174 21358 7197 7172 21359 7219 7193 21360 7197 7172 21361 7193 7169 21362 7220 7194 21363 7193 7169 21364 7196 7195 21365 7222 7196 21366 7223 7197 21367 7204 7178 21368 7224 7198 21369 7166 7140 21370 7225 7199 21371 7226 7200 21372 7227 7201 21373 7228 7202 21374 7212 7186 21375 7213 7187 21376 7231 7203 21377 7232 7204 21378 7230 7205 21379 7231 7203 21380 7234 7206 21381 7232 7204 21382 7233 7207 21383 7235 7208 21384 7209 7183 21385 7211 7185 21386 7236 7209 21387 7177 7151 21388 7237 7210 21389 7215 7211 21390 7206 7180 21391 7207 7181 21392 7205 7179 21393 7208 7182 21394 7207 7181 21395 7239 7212 21396 7240 7213 21397 7215 7211 21398 7221 7214 21399 7241 7215 21400 7242 7216 21401 7220 7194 21402 7242 7216 21403 7243 7217 21404 7219 7193 21405 7243 7217 21406 7244 7218 21407 7217 7191 21408 7245 7219 21409 7246 7220 21410 7218 7192 21411 7244 7218 21412 7245 7219 21413 7231 7203 21414 7247 7221 21415 7248 7222 21416 7174 7147 21417 7249 7223 21418 7213 7187 21419 7249 7223 21420 7247 7221 21421 7231 7203 21422 7216 7190 21423 7246 7220 21424 7238 7224 21425 7203 7189 21426 7214 7188 21427 7226 7200 21428 7236 7209 21429 7237 7210 21430 7250 7225 21431 7224 7198 21432 7225 7199 21433 7223 7197 21434 7227 7201 21435 7192 7166 21436 7228 7202 21437 7235 7208 21438 7234 7206 21439 7209 7183 21440 7251 7226 21441 7250 7225 21442 7240 7213 21443 7233 7207 21444 7248 7222 21445 7241 7215 21446 7209 7183 21447 7233 7207 21448 7221 7214 21449 7210 7184 21450 7209 7183 21451 7196 7195 21452 7195 7171 21453 7194 7170 21454 7133 7111 21455 7198 7173 21456 7135 7113 21457 7133 7111 21458 7200 7175 21459 7137 7115 21460 7135 7113 21461 7202 7177 21462 7139 7120 21463 7137 7115 21464 7204 7178 21465 7143 7135 21466 7142 7118 21467 7208 7182 21468 7145 7227 21469 7139 7120 21470 7210 7184 21471 7148 7123 21472 7147 7122 21473 7174 7147 21474 7212 7186 21475 7172 7148 21476 7215 7211 21477 7154 7128 21478 7153 7127 21479 7223 7197 21480 7162 7136 21481 7143 7135 21482 7222 7196 21483 7203 7189 21484 7140 7116 21485 7225 7199 21486 7166 7140 21487 7165 7139 21488 7166 7140 21489 7224 7198 21490 7164 7138 21491 7228 7202 21492 7169 7142 21493 7168 7141 21494 7226 7200 21495 7167 7163 21496 7170 7143 21497 7212 7186 21498 7230 7205 21499 7152 7144 21500 7230 7205 21501 7232 7204 21502 7149 7124 21503 7234 7206 21504 7161 7167 21505 7149 7124 21506 7235 7208 21507 7211 7185 21508 7147 7122 21509 7237 7210 21510 7177 7151 21511 7176 7150 21512 7177 7151 21513 7236 7209 21514 7175 7149 21515 7205 7179 21516 7142 7118 21517 7145 7227 21518 7215 7211 21519 7240 7213 21520 7179 7152 21521 7238 7224 21522 7178 7162 21523 7180 7153 21524 7242 7216 21525 7241 7215 21526 7182 7168 21527 7243 7217 21528 7242 7216 21529 7181 7154 21530 7244 7218 21531 7243 7217 21532 7183 7155 21533 7245 7219 21534 7186 7158 21535 7185 7157 21536 7244 7218 21537 7184 7156 21538 7186 7158 21539 7247 7221 21540 7188 7161 21541 7187 7159 21542 7249 7223 21543 7174 7147 21544 7189 7160 21545 7249 7223 21546 7189 7160 21547 7188 7161 21548 7238 7224 21549 7246 7220 21550 7185 7157 21551 7203 7189 21552 7229 7228 21553 7168 7141 21554 7226 7200 21555 7214 7188 21556 7153 7127 21557 7251 7226 21558 7190 7164 21559 7175 7149 21560 7250 7225 21561 7237 7210 21562 7176 7150 21563 7225 7199 21564 7165 7139 21565 7162 7136 21566 7224 7198 21567 7222 7196 21568 7163 7137 21569 7228 7202 21570 7192 7166 21571 7169 7142 21572 7192 7166 21573 7227 7201 21574 7170 7143 21575 7235 7208 21576 7173 7146 21577 7161 7167 21578 7239 7212 21579 7180 7153 21580 7190 7164 21581 7240 7213 21582 7250 7225 21583 7191 7165 21584 7248 7222 21585 7187 7159 21586 7182 7168 21587 7195 7171 21588 7132 7109 21589 7148 7123 21590 7252 7229 21591 7253 7230 21592 7254 7231 21593 7257 7232 21594 7258 7233 21595 7259 7234 21596 7261 7235 21597 7262 7235 21598 7263 7235 21599 7264 7236 21600 7265 7237 21601 7253 7230 21602 7262 7238 21603 7257 7238 21604 7256 7238 21605 7266 7239 21606 7267 7239 21607 7265 7239 21608 7267 7240 21609 7266 7241 21610 7259 7234 21611 7268 7242 21612 7269 7242 21613 7255 7242 21614 7270 7243 21615 7268 7243 21616 7254 7243 21617 7271 7244 21618 7272 7244 21619 7258 7244 21620 7273 7245 21621 7274 7245 21622 7260 7245 21623 7261 7246 21624 7275 7246 21625 7276 7246 21626 7260 7247 21627 7274 7247 21628 7275 7247 21629 7277 7248 21630 7270 7248 21631 7253 7248 21632 7276 7249 21633 7271 7249 21634 7257 7249 21635 7278 7250 21636 7277 7250 21637 7265 7250 21638 7272 7251 21639 7278 7251 21640 7267 7251 21641 7264 7252 21642 7279 7252 21643 7280 7252 21644 7252 7253 21645 7281 7253 21646 7279 7253 21647 7255 7254 21648 7269 7254 21649 7281 7254 21650 7266 7255 21651 7280 7255 21652 7282 7255 21653 7259 7256 21654 7282 7256 21655 7283 7256 21656 7256 7257 21657 7283 7257 21658 7273 7257 21659 7284 7258 21660 7285 7258 21661 7286 7258 21662 7288 7259 21663 7289 7260 21664 7290 7261 21665 7291 7262 21666 7292 7262 21667 7293 7262 21668 7286 7263 21669 7285 7264 21670 7294 7265 21671 7297 7266 21672 7287 7267 21673 7290 7261 21674 7299 7268 21675 7300 7269 21676 7301 7270 21677 7300 7269 21678 7292 7271 21679 7291 7272 21680 7299 7268 21681 7298 7273 21682 7289 7260 21683 7294 7265 21684 7297 7266 21685 7296 7274 21686 7303 7275 21687 7304 7276 21688 7305 7277 21689 7305 7277 21690 7304 7276 21691 7306 7278 21692 7307 7279 21693 7306 7278 21694 7308 7280 21695 7310 7281 21696 7311 7282 21697 7312 7283 21698 7313 7284 21699 7314 7285 21700 7315 7286 21701 7315 7286 21702 7317 7287 21703 7318 7288 21704 7317 7287 21705 7303 7275 21706 7302 7289 21707 7320 7290 21708 7311 7282 21709 7310 7281 21710 7309 7291 21711 7308 7280 21712 7321 7292 21713 7322 7293 21714 7321 7292 21715 7323 7294 21716 7324 7295 21717 7323 7294 21718 7325 7296 21719 7326 7297 21720 7325 7296 21721 7327 7298 21722 7327 7298 21723 7329 7299 21724 7330 7300 21725 7330 7300 21726 7329 7299 21727 7320 7290 21728 7303 7275 21729 7331 7301 21730 7332 7302 21731 7304 7276 21732 7332 7302 21733 7333 7303 21734 7306 7278 21735 7333 7303 21736 7334 7304 21737 7311 7282 21738 7335 7305 21739 7336 7306 21740 7314 7285 21741 7336 7306 21742 7337 7307 21743 7315 7286 21744 7337 7307 21745 7338 7308 21746 7317 7287 21747 7338 7308 21748 7331 7301 21749 7339 7309 21750 7335 7305 21751 7311 7282 21752 7334 7304 21753 7340 7310 21754 7321 7292 21755 7340 7310 21756 7341 7311 21757 7323 7294 21758 7341 7311 21759 7342 7312 21760 7325 7296 21761 7342 7312 21762 7343 7313 21763 7327 7298 21764 7343 7313 21765 7344 7314 21766 7329 7299 21767 7344 7314 21768 7339 7309 21769 7320 7290 21770 7331 7301 21771 7345 7315 21772 7332 7302 21773 7332 7302 21774 7345 7315 21775 7333 7303 21776 7333 7303 21777 7345 7315 21778 7334 7304 21779 7335 7305 21780 7345 7315 21781 7336 7306 21782 7336 7306 21783 7345 7315 21784 7337 7307 21785 7337 7307 21786 7345 7315 21787 7338 7308 21788 7338 7308 21789 7345 7315 21790 7331 7301 21791 7339 7309 21792 7345 7315 21793 7335 7305 21794 7334 7304 21795 7345 7315 21796 7340 7310 21797 7340 7310 21798 7345 7315 21799 7341 7311 21800 7341 7311 21801 7345 7315 21802 7342 7312 21803 7342 7312 21804 7345 7315 21805 7343 7313 21806 7343 7313 21807 7345 7315 21808 7344 7314 21809 7344 7314 21810 7345 7315 21811 7339 7309 21812 7311 7282 21813 7314 7285 21814 7313 7284 21815 7346 7316 21816 7347 7317 21817 7348 7318 21818 7348 7318 21819 7347 7317 21820 7349 7319 21821 7349 7319 21822 7347 7317 21823 7350 7320 21824 7350 7320 21825 7347 7317 21826 7351 7321 21827 7351 7321 21828 7347 7317 21829 7352 7322 21830 7352 7322 21831 7347 7317 21832 7353 7323 21833 7353 7323 21834 7347 7317 21835 7354 7324 21836 7354 7324 21837 7347 7317 21838 7355 7325 21839 7355 7325 21840 7347 7317 21841 7356 7326 21842 7356 7326 21843 7347 7317 21844 7357 7327 21845 7357 7327 21846 7347 7317 21847 7358 7328 21848 7358 7328 21849 7347 7317 21850 7359 7329 21851 7359 7329 21852 7347 7317 21853 7360 7330 21854 7360 7330 21855 7347 7317 21856 7361 7331 21857 7361 7331 21858 7347 7317 21859 7362 7332 21860 7362 7332 21861 7347 7317 21862 7346 7316 21863 7363 7333 21864 7364 7334 21865 7365 7335 21866 7365 7335 21867 7364 7334 21868 7366 7336 21869 7366 7336 21870 7364 7334 21871 7367 7337 21872 7367 7337 21873 7364 7334 21874 7368 7338 21875 7368 7338 21876 7364 7334 21877 7369 7339 21878 7369 7339 21879 7364 7334 21880 7370 7340 21881 7370 7340 21882 7364 7334 21883 7371 7341 21884 7371 7341 21885 7364 7334 21886 7372 7342 21887 7372 7342 21888 7364 7334 21889 7373 7343 21890 7373 7343 21891 7364 7334 21892 7374 7344 21893 7374 7344 21894 7364 7334 21895 7375 7345 21896 7375 7345 21897 7364 7334 21898 7376 7346 21899 7376 7346 21900 7364 7334 21901 7377 7347 21902 7377 7347 21903 7364 7334 21904 7378 7348 21905 7378 7348 21906 7364 7334 21907 7379 7349 21908 7379 7349 21909 7364 7334 21910 7363 7333 21911 7381 7350 21912 7382 7351 21913 7383 7352 21914 7385 7353 21915 7386 7354 21916 7387 7355 21917 7389 7356 21918 7390 7357 21919 7391 7358 21920 7392 7359 21921 7393 7360 21922 7394 7361 21923 7396 7362 21924 7397 7363 21925 7398 7364 21926 7400 7365 21927 7401 7366 21928 7402 7367 21929 7404 7368 21930 7405 7369 21931 7406 7370 21932 7409 7371 21933 7410 7372 21934 7411 7373 21935 7413 7374 21936 7414 7375 21937 7415 7376 21938 7417 7377 21939 7418 7378 21940 7419 7379 21941 7421 7380 21942 7422 7381 21943 7423 7382 21944 7424 7383 21945 7425 7384 21946 7426 7385 21947 7428 7386 21948 7429 7387 21949 7430 7388 21950 7432 7389 21951 7433 7390 21952 7434 7391 21953 7436 7392 21954 7437 7393 21955 7438 7394 21956 7441 7395 21957 7442 7396 21958 7443 7397 21959 7384 7398 21960 7381 7350 21961 7380 7399 21962 7388 7400 21963 7385 7353 21964 7384 7398 21965 7392 7359 21966 7389 7356 21967 7388 7400 21968 7396 7362 21969 7393 7360 21970 7392 7359 21971 7400 7365 21972 7397 7363 21973 7396 7362 21974 7404 7368 21975 7401 7366 21976 7400 7365 21977 7408 7401 21978 7405 7369 21979 7404 7368 21980 7412 7402 21981 7409 7371 21982 7408 7401 21983 7416 7403 21984 7413 7374 21985 7412 7402 21986 7420 7404 21987 7417 7377 21988 7416 7403 21989 7424 7383 21990 7421 7380 21991 7420 7404 21992 7428 7386 21993 7425 7384 21994 7424 7383 21995 7432 7389 21996 7429 7387 21997 7428 7386 21998 7436 7392 21999 7433 7390 22000 7432 7389 22001 7440 7405 22002 7437 7393 22003 7436 7392 22004 7380 7399 22005 7441 7395 22006 7440 7405 22007 7382 7351 22008 7445 7406 22009 7446 7407 22010 7386 7354 22011 7447 7408 22012 7448 7409 22013 7391 7358 22014 7390 7357 22015 7449 7410 22016 7395 7411 22017 7394 7361 22018 7451 7412 22019 7399 7413 22020 7398 7364 22021 7453 7414 22022 7403 7415 22023 7402 7367 22024 7455 7416 22025 7407 7417 22026 7406 7370 22027 7457 7418 22028 7410 7372 22029 7459 7419 22030 7460 7420 22031 7414 7375 22032 7461 7421 22033 7462 7422 22034 7418 7378 22035 7463 7423 22036 7464 7424 22037 7422 7381 22038 7465 7425 22039 7466 7426 22040 7426 7385 22041 7467 7427 22042 7468 7428 22043 7431 7429 22044 7430 7388 22045 7469 7430 22046 7435 7431 22047 7434 7391 22048 7471 7432 22049 7439 7433 22050 7438 7394 22051 7473 7434 22052 7442 7396 22053 7475 7435 22054 7476 7436 22055 7438 7394 22056 7443 7397 22057 7476 7436 22058 7437 7393 22059 7440 7405 22060 7443 7397 22061 7383 7352 22062 7446 7407 22063 7475 7435 22064 7380 7399 22065 7383 7352 22066 7442 7396 22067 7406 7370 22068 7411 7373 22069 7460 7420 22070 7405 7369 22071 7408 7401 22072 7411 7373 22073 7415 7376 22074 7462 7422 22075 7459 7419 22076 7412 7402 22077 7415 7376 22078 7410 7372 22079 7402 7367 22080 7407 7417 22081 7458 7437 22082 7401 7366 22083 7404 7368 22084 7407 7417 22085 7419 7379 22086 7464 7424 22087 7461 7421 22088 7416 7403 22089 7419 7379 22090 7414 7375 22091 7387 7355 22092 7448 7409 22093 7445 7406 22094 7384 7398 22095 7387 7355 22096 7382 7351 22097 7434 7391 22098 7439 7433 22099 7474 7438 22100 7433 7390 22101 7436 7392 22102 7439 7433 22103 7427 7439 22104 7468 7428 22105 7465 7425 22106 7424 7383 22107 7427 7439 22108 7422 7381 22109 7431 7429 22110 7470 7440 22111 7467 7427 22112 7425 7384 22113 7428 7386 22114 7431 7429 22115 7423 7382 22116 7466 7426 22117 7463 7423 22118 7420 7404 22119 7423 7382 22120 7418 7378 22121 7430 7388 22122 7435 7431 22123 7472 7441 22124 7429 7387 22125 7432 7389 22126 7435 7431 22127 7391 7358 22128 7450 7442 22129 7447 7408 22130 7388 7400 22131 7391 7358 22132 7386 7354 22133 7390 7357 22134 7395 7411 22135 7452 7443 22136 7392 7359 22137 7395 7411 22138 7390 7357 22139 7394 7361 22140 7399 7413 22141 7454 7444 22142 7393 7360 22143 7396 7362 22144 7399 7413 22145 7398 7364 22146 7403 7415 22147 7456 7445 22148 7397 7363 22149 7400 7365 22150 7403 7415 22151 7477 7446 22152 7478 7447 22153 7479 7448 22154 7481 7449 22155 7482 7450 22156 7478 7447 22157 7483 7451 22158 7484 7452 22159 7482 7450 22160 7485 7453 22161 7486 7454 22162 7484 7452 22163 7487 7455 22164 7488 7456 22165 7489 7457 22166 7491 7458 22167 7492 7459 22168 7486 7454 22169 7493 7460 22170 7494 7461 22171 7495 7462 22172 7496 7463 22173 7497 7464 22174 7498 7465 22175 7500 7466 22176 7487 7455 22177 7490 7467 22178 7502 7468 22179 7491 7458 22180 7485 7453 22181 7503 7469 22182 7485 7453 22183 7483 7451 22184 7504 7470 22185 7483 7451 22186 7481 7449 22187 7505 7471 22188 7481 7449 22189 7477 7446 22190 7477 7446 22191 7480 7472 22192 7507 7473 22193 7493 7460 22194 7508 7474 22195 7496 7463 22196 7509 7475 22197 7510 7476 22198 7488 7456 22199 7511 7477 22200 7512 7478 22201 7513 7479 22202 7515 7480 22203 7516 7481 22204 7517 7482 22205 7497 7464 22206 7518 7483 22207 7519 7484 22208 7520 7485 22209 7493 7460 22210 7495 7462 22211 7521 7486 22212 7519 7484 22213 7518 7483 22214 7522 7487 22215 7523 7488 22216 7524 7489 22217 7501 7490 22218 7490 7467 22219 7491 7458 22220 7489 7457 22221 7492 7459 22222 7491 7458 22223 7526 7491 22224 7527 7492 22225 7501 7490 22226 7507 7473 22227 7528 7493 22228 7529 7494 22229 7506 7495 22230 7529 7494 22231 7530 7496 22232 7505 7471 22233 7530 7496 22234 7531 7497 22235 7503 7469 22236 7532 7498 22237 7533 7499 22238 7504 7470 22239 7531 7497 22240 7532 7498 22241 7498 7465 22242 7534 7500 22243 7535 7501 22244 7521 7486 22245 7536 7502 22246 7519 7484 22247 7519 7484 22248 7536 7502 22249 7534 7500 22250 7502 7468 22251 7533 7499 22252 7525 7503 22253 7500 7466 22254 7514 7504 22255 7517 7482 22256 7522 7487 22257 7524 7489 22258 7537 7505 22259 7511 7477 22260 7513 7479 22261 7510 7476 22262 7515 7480 22263 7539 7506 22264 7516 7481 22265 7520 7485 22266 7508 7474 22267 7493 7460 22268 7538 7507 22269 7537 7505 22270 7527 7492 22271 7535 7501 22272 7528 7493 22273 7507 7473 22274 7480 7472 22275 7493 7460 22276 7499 7508 22277 7494 7461 22278 7493 7460 22279 7480 7472 22280 7540 7509 22281 7541 7510 22282 7542 7511 22283 7544 7512 22284 7540 7509 22285 7543 7513 22286 7546 7514 22287 7544 7512 22288 7545 7515 22289 7548 7516 22290 7546 7514 22291 7547 7517 22292 7551 7518 22293 7552 7519 22294 7553 7520 22295 7554 7521 22296 7548 7516 22297 7549 7522 22298 7556 7523 22299 7557 7524 22300 7558 7525 22301 7559 7526 22302 7560 7527 22303 7521 7486 22304 7561 7528 22305 7562 7529 22306 7551 7518 22307 7563 7530 22308 7564 7531 22309 7548 7516 22310 7564 7531 22311 7565 7532 22312 7546 7514 22313 7565 7532 22314 7566 7533 22315 7544 7512 22316 7566 7533 22317 7567 7534 22318 7540 7509 22319 7567 7534 22320 7568 7535 22321 7541 7510 22322 7553 7520 22323 7569 7536 22324 7570 7537 22325 7571 7538 22326 7572 7539 22327 7512 7478 22328 7573 7540 22329 7574 7541 22330 7575 7542 22331 7578 7543 22332 7560 7527 22333 7559 7526 22334 7579 7544 22335 7580 7545 22336 7578 7543 22337 7580 7545 22338 7579 7544 22339 7581 7546 22340 7582 7547 22341 7557 7524 22342 7556 7523 22343 7583 7548 22344 7584 7549 22345 7523 7488 22346 7562 7529 22347 7563 7530 22348 7554 7521 22349 7552 7519 22350 7551 7518 22351 7554 7521 22352 7562 7529 22353 7586 7550 22354 7587 7551 22355 7568 7535 22356 7567 7534 22357 7588 7552 22358 7567 7534 22359 7566 7533 22360 7590 7553 22361 7566 7533 22362 7565 7532 22363 7591 7554 22364 7564 7531 22365 7563 7530 22366 7592 7555 22367 7565 7532 22368 7564 7531 22369 7593 7556 22370 7578 7543 22371 7580 7545 22372 7594 7557 22373 7521 7486 22374 7560 7527 22375 7596 7558 22376 7578 7543 22377 7595 7559 22378 7596 7558 22379 7563 7530 22380 7562 7529 22381 7585 7560 22382 7550 7561 22383 7574 7541 22384 7573 7540 22385 7583 7548 22386 7597 7562 22387 7598 7563 22388 7569 7536 22389 7572 7539 22390 7571 7538 22391 7576 7564 22392 7575 7542 22393 7539 7506 22394 7582 7547 22395 7556 7523 22396 7581 7546 22397 7597 7562 22398 7587 7551 22399 7586 7550 22400 7580 7545 22401 7568 7535 22402 7589 7565 22403 7568 7535 22404 7580 7545 22405 7556 7523 22406 7541 7510 22407 7556 7523 22408 7558 7525 22409 7542 7511 22410 7479 7448 22411 7478 7447 22412 7478 7447 22413 7482 7450 22414 7545 7515 22415 7482 7450 22416 7484 7452 22417 7547 7517 22418 7484 7452 22419 7486 7454 22420 7549 7522 22421 7489 7457 22422 7488 7456 22423 7553 7520 22424 7486 7454 22425 7492 7459 22426 7555 7566 22427 7495 7462 22428 7494 7461 22429 7558 7525 22430 7521 7486 22431 7518 7483 22432 7559 7526 22433 7500 7466 22434 7501 7490 22435 7562 7529 22436 7488 7456 22437 7510 7476 22438 7569 7536 22439 7570 7537 22440 7509 7475 22441 7487 7455 22442 7572 7539 22443 7513 7479 22444 7512 7478 22445 7512 7478 22446 7511 7477 22447 7571 7538 22448 7517 7482 22449 7516 7481 22450 7575 7542 22451 7515 7480 22452 7514 7504 22453 7573 7540 22454 7559 7526 22455 7518 7483 22456 7497 7464 22457 7577 7567 22458 7497 7464 22459 7496 7463 22460 7496 7463 22461 7508 7474 22462 7581 7546 22463 7582 7547 22464 7520 7485 22465 7495 7462 22466 7584 7549 22467 7524 7489 22468 7523 7488 22469 7523 7488 22470 7522 7487 22471 7583 7548 22472 7492 7459 22473 7489 7457 22474 7552 7519 22475 7562 7529 22476 7501 7490 22477 7527 7492 22478 7526 7491 22479 7525 7503 22480 7585 7560 22481 7588 7552 22482 7529 7494 22483 7528 7493 22484 7590 7553 22485 7530 7496 22486 7529 7494 22487 7591 7554 22488 7531 7497 22489 7530 7496 22490 7533 7499 22491 7532 7498 22492 7593 7556 22493 7532 7498 22494 7531 7497 22495 7591 7554 22496 7535 7501 22497 7534 7500 22498 7595 7559 22499 7596 7558 22500 7536 7502 22501 7521 7486 22502 7534 7500 22503 7536 7502 22504 7596 7558 22505 7585 7560 22506 7525 7503 22507 7533 7499 22508 7550 7561 22509 7487 7455 22510 7517 7482 22511 7573 7540 22512 7514 7504 22513 7500 7466 22514 7522 7487 22515 7538 7507 22516 7597 7562 22517 7598 7563 22518 7537 7505 22519 7524 7489 22520 7510 7476 22521 7513 7479 22522 7572 7539 22523 7571 7538 22524 7511 7477 22525 7509 7475 22526 7575 7542 22527 7516 7481 22528 7539 7506 22529 7539 7506 22530 7515 7480 22531 7576 7564 22532 7508 7474 22533 7520 7485 22534 7582 7547 22535 7538 7507 22536 7526 7491 22537 7587 7551 22538 7586 7550 22539 7527 7492 22540 7537 7505 22541 7528 7493 22542 7535 7501 22543 7594 7557 22544 7494 7461 22545 7479 7448 22546 7542 7511 22547 5144 5167 36264 5141 5129 36265 5143 5131 36266 5145 5139 36267 5146 5132 36268 5148 5134 36269 5152 5140 36270 5149 5135 36271 5151 5137 36272 5143 5131 36273 5142 5130 36274 5152 5140 36275 5159 5165 36276 5160 5146 36277 5162 5148 36278 5166 5170 36279 5163 5149 36280 5165 5151 36281 5147 5133 36282 5146 5132 36283 5168 5153 36284 5172 5169 36285 5169 5154 36286 5171 5156 36287 5151 5137 36288 5150 5136 36289 5174 5158 36290 5175 5164 36291 5134 5122 36292 5177 5160 36293 5178 5173 36294 5179 5161 36295 5181 5163 36296 5160 5146 36297 5175 5164 36298 5161 5147 36299 5165 5151 36300 5164 5150 36301 5162 5148 36302 5182 5186 36303 5183 5166 36304 5144 5167 36305 5163 5149 36306 5166 5170 36307 5155 5142 36308 5187 5178 36309 5186 5172 36310 5135 5123 36311 5189 5175 36312 5178 5173 36313 5188 5174 36314 5189 5175 36315 5163 5149 36316 5179 5161 36317 5134 5122 36318 5175 5164 36319 5135 5123 36320 5160 5146 36321 5159 5165 36322 5191 5177 36323 5190 5176 36324 5159 5165 36325 5188 5174 36326 5188 5174 36327 5164 5150 36328 5189 5175 36329 5175 5164 36330 5160 5146 36331 5187 5178 36332 5184 5168 36333 5190 5176 36334 5169 5154 36335 5172 5169 36336 5186 5172 36337 5184 5168 36338 5147 5133 36339 5168 5153 36340 5170 5155 36341 5148 5134 36342 5147 5133 36343 5181 5163 36344 5180 5162 36345 5153 5138 36346 5181 5163 36347 5153 5138 36348 5180 5162 36349 5137 5125 36350 5139 5127 36351 5192 5179 36352 5157 5144 36353 5185 5171 36354 5139 5127 36355 5166 5170 36356 5183 5166 36357 5185 5171 36358 5165 5151 36359 5141 5129 36360 5183 5166 36361 5162 5148 36362 5162 5148 36363 5161 5147 36364 5141 5129 36365 5177 5160 36366 5149 5135 36367 5161 5147 36368 5177 5160 36369 5176 5159 36370 5149 5135 36371 5150 5136 36372 5176 5159 36373 5173 5157 36374 5143 5131 36375 5151 5137 36376 5193 5180 36377 5146 5132 36378 5194 5181 36379 5167 5152 36380 5198 5185 36381 5143 5131 36382 5197 5184 36383 5194 5181 36384 5198 5185 36385 5195 5182 36386 5196 5183 36387 5182 5186 36388 5194 5181 36389 5194 5181 36390 5146 5132 36391 5196 5183 36392 5169 5154 36393 5178 5173 36394 5170 5155 36395 5183 5166 36396 5182 5186 36397 5185 5171 36398 5137 5125 36399 5154 5141 36400 5138 5126 36401 5145 5139 36402 5153 5138 36403 5136 5124 36404 5179 5161 36405 5155 5142 36406 5180 5162 36407 5138 5126 36408 5156 5143 36409 5200 5188 36410 5199 5187 36411 5158 5145 36412 5200 5188 36413 5204 6612 36414 5201 5189 36415 5203 5191 36416 5205 5195 36417 5206 5192 36418 5208 5194 36419 5209 5473 36420 5206 5192 36421 5210 5196 36422 5204 6612 36423 5203 5191 36424 5212 5198 36425 5216 5202 36426 5213 5199 36427 5215 5201 36428 5219 5208 36429 5216 5202 36430 5218 5204 36431 5223 5245 36432 5220 5205 36433 5222 5207 36434 5201 5189 36435 5219 5208 36436 5202 5190 36437 5224 5214 36438 5225 5209 36439 5227 5211 36440 5204 6612 36441 5212 5198 36442 5226 5210 36443 5212 5198 36444 5211 5197 36445 5227 5211 36446 5229 5216 36447 5230 5213 36448 5228 5212 36449 5231 5215 36450 5224 5214 36451 5230 5213 36452 5232 5410 36453 5231 5215 36454 5229 5216 36455 5236 5222 36456 5233 5217 36457 5235 5219 36458 5235 5219 36459 5237 5220 36460 5236 5222 36461 5242 5228 36462 5239 5223 36463 5241 5225 36464 5241 5225 36465 5243 5226 36466 5242 5228 36467 5235 5219 36468 5234 5218 36469 5246 5230 36470 5246 5230 36471 5247 5231 36472 5235 5219 36473 5248 5239 36474 5249 5232 36475 5251 5234 36476 5255 5408 36477 5252 5235 36478 5254 5237 36479 5255 5408 36480 5254 5237 36481 5208 5194 36482 5257 7964 36483 5256 5238 36484 5251 5234 36485 5246 5230 36486 5245 5229 36487 5259 5241 36488 5259 5241 36489 5260 5242 36490 5246 5230 36491 5222 5207 36492 5261 5243 36493 5223 5245 36494 5202 5190 36495 5218 5204 36496 5264 5247 36497 5241 5225 36498 5240 5224 36499 5266 5249 36500 5243 5226 36501 5241 5225 36502 5267 5250 36503 5261 5243 36504 5268 5251 36505 5262 5244 36506 5228 5212 36507 5270 5253 36508 5229 5216 36509 5272 5260 36510 5273 5255 36511 5275 5257 36512 5278 5271 36513 5276 5258 36514 5277 5259 36515 5273 5255 36516 5272 5260 36517 5280 5262 36518 5277 5259 36519 5269 5252 36520 5281 5263 36521 5217 5203 36522 5282 5264 36523 5218 5204 36524 5283 5266 36525 5273 5255 36526 5284 5265 36527 5273 5255 36528 5283 5266 36529 5274 5256 36530 5262 5244 36531 5269 5252 36532 5286 5268 36533 5266 5249 36534 5265 5248 36535 5288 5270 36536 5290 5287 36537 5278 5271 36538 5289 5272 36539 5288 5270 36540 5291 5273 36541 5266 5249 36542 5289 5272 36543 5277 5259 36544 5292 5274 36545 5293 5294 36546 5294 5275 36547 5296 5277 36548 5211 5197 36549 5203 5191 36550 5298 5279 36551 5288 5270 36552 5299 5280 36553 5291 5273 36554 5301 5290 36555 5302 5282 36556 5304 5284 36557 5289 5272 36558 5305 5285 36559 5290 5287 36560 5292 5274 36561 5307 5288 36562 5289 5272 36563 5308 5305 36564 5309 5289 36565 5304 5284 36566 5313 5301 36567 5310 5291 36568 5312 5293 36569 5294 5275 36570 5293 5294 36571 5315 5296 36572 5319 5309 36573 5316 5297 36574 5318 5299 36575 5320 5378 36576 5321 5300 36577 5312 5293 36578 5325 5311 36579 5322 5302 36580 5324 5304 36581 5326 5361 36582 5308 5305 36583 5327 5306 36584 5303 5283 36585 5328 5307 36586 5304 5284 36587 5330 5315 36588 5329 5308 36589 5319 5309 36590 5332 5312 36591 5331 5310 36592 5324 5304 36593 5329 5308 36594 5332 5312 36595 5316 5297 36596 5334 5314 36597 5333 5313 36598 5329 5308 36599 5335 5316 36600 5334 5314 36601 5330 5315 36602 5333 5313 36603 5334 5314 36604 5336 5317 36605 5294 5275 36606 5337 5318 36607 5295 5276 36608 5271 5254 36609 5270 5253 36610 5340 5321 36611 5315 5296 36612 5341 5322 36613 5294 5275 36614 5333 5313 36615 5342 5323 36616 5332 5312 36617 5340 5321 36618 5343 5324 36619 5271 5254 36620 5345 5355 36621 5338 5319 36622 5346 5326 36623 5340 5321 36624 5339 5320 36625 5348 5328 36626 5349 5348 36627 5346 5326 36628 5341 5322 36629 5336 5317 36630 5350 5329 36631 5333 5313 36632 5342 5323 36633 5333 5313 36634 5352 5331 36635 5356 5356 36636 5353 5332 36637 5355 5334 36638 5348 5328 36639 5357 5335 36640 5340 5321 36641 5361 5342 36642 5358 5336 36643 5360 5338 36644 5362 5353 36645 5363 5339 36646 5365 5341 36647 5366 5359 36648 5358 5336 36649 5367 5343 36650 5364 5340 36651 5368 5344 36652 5365 5341 36653 5356 5356 36654 5370 5346 36655 5353 5332 36656 5274 5256 36657 5285 5267 36658 5276 5258 36659 5275 5257 36660 5274 5256 36661 5278 5271 36662 5310 5291 36663 5315 5296 36664 5311 5292 36665 5372 5349 36666 5341 5322 36667 5310 5291 36668 5373 5358 36669 5349 5348 36670 5372 5349 36671 5368 5344 36672 5374 5350 36673 5369 5345 36674 5376 5360 36675 5377 5352 36676 5362 5353 36677 5378 5357 36678 5379 5354 36679 5345 5355 36680 5295 5276 36681 5338 5319 36682 5298 5279 36683 5296 5277 36684 5295 5276 36685 5297 5278 36686 5280 5262 36687 5279 5261 36688 5263 5246 36689 5284 5265 36690 5280 5262 36691 5282 5264 36692 5348 5328 36693 5356 5356 36694 5357 5335 36695 5348 5328 36696 5347 5327 36697 5356 5356 36698 5345 5355 36699 5363 5339 36700 5378 5357 36701 5346 5326 36702 5364 5340 36703 5345 5355 36704 5346 5326 36705 5349 5348 36706 5364 5340 36707 5349 5348 36708 5373 5358 36709 5368 5344 36710 5352 5331 36711 5351 5330 36712 5366 5359 36713 5358 5336 36714 5351 5330 36715 5359 5337 36716 5228 5212 36717 5211 5197 36718 5270 5253 36719 5339 5320 36720 5270 5253 36721 5379 5354 36722 5378 5357 36723 5347 5327 36724 5379 5354 36725 5347 5327 36726 5378 5357 36727 5370 5346 36728 5370 5346 36729 5377 5352 36730 5371 5347 36731 5374 5350 36732 5366 5359 36733 5375 5351 36734 5373 5358 36735 5352 5331 36736 5374 5350 36737 5372 5349 36738 5342 5323 36739 5373 5358 36740 5342 5323 36741 5372 5349 36742 5331 5310 36743 5331 5310 36744 5310 5291 36745 5325 5311 36746 5321 5300 36747 5322 5302 36748 5313 5301 36749 5328 5307 36750 5318 5299 36751 5327 5306 36752 5323 5303 36753 5326 5361 36754 5317 5298 36755 5210 5196 36756 5205 5195 36757 5380 5362 36758 5380 5362 36759 5254 5237 36760 5381 5363 36761 5383 5366 36762 5382 5364 36763 5253 5236 36764 5385 5370 36765 5384 5365 36766 5383 5366 36767 5385 5370 36768 5386 5367 36769 5384 5365 36770 5309 5289 36771 5299 5280 36772 5301 5290 36773 5288 5270 36774 5287 5269 36775 5301 5290 36776 5388 5377 36777 5389 5369 36778 5385 5370 36779 5388 5377 36780 5385 5370 36781 5390 5371 36782 5253 5236 36783 5391 5372 36784 5383 5366 36785 5392 5409 36786 5391 5372 36787 5252 5235 36788 5250 5233 36789 5249 5232 36790 5394 5374 36791 5248 5239 36792 5395 5375 36793 5249 5232 36794 5256 5238 36795 5396 5376 36796 5248 5239 36797 5291 5273 36798 5300 5281 36799 5388 5377 36800 5291 5273 36801 5388 5377 36802 5267 5250 36803 5391 5372 36804 5243 5226 36805 5390 5371 36806 5392 5409 36807 5244 5227 36808 5391 5372 36809 5233 5217 36810 5394 5374 36811 5234 5218 36812 5395 5375 36813 5245 5229 36814 5393 5373 36815 5396 5376 36816 5258 5240 36817 5395 5375 36818 5203 5191 36819 5202 5190 36820 5297 5278 36821 5279 5261 36822 5296 5277 36823 5264 5247 36824 5272 5260 36825 5293 5294 36826 5279 5261 36827 5275 5257 36828 5314 5295 36829 5272 5260 36830 5278 5271 36831 5311 5292 36832 5275 5257 36833 5312 5293 36834 5311 5292 36835 5290 5287 36836 5290 5287 36837 5306 5286 36838 5312 5293 36839 5400 5394 36840 5397 5379 36841 5399 5381 36842 5398 5380 36843 5401 5382 36844 5399 5381 36845 5401 5382 36846 5403 5384 36847 5402 5383 36848 5408 5396 36849 5405 5386 36850 5407 5388 36851 5412 5451 36852 5409 5389 36853 5411 5391 36854 5411 5391 36855 5410 5390 36856 5414 5393 36857 5414 5393 36858 5413 5392 36859 5400 5394 36860 5416 5407 36861 5415 5395 36862 5408 5396 36863 5403 5384 36864 5417 5397 36865 5404 5385 36866 5417 5397 36867 5419 5399 36868 5418 5398 36869 5419 5399 36870 5421 5401 36871 5420 5400 36872 5421 5401 36873 5423 5403 36874 5422 5402 36875 5423 5403 36876 5425 5405 36877 5424 5404 36878 5426 5406 36879 5425 5405 36880 5416 5407 36881 5257 7964 36882 5251 5234 36883 5208 5194 36884 5251 5234 36885 5250 5233 36886 5255 5408 36887 5394 5374 36888 5392 5409 36889 5250 5233 36890 5394 5374 36891 5233 5217 36892 5392 5409 36893 5242 5228 36894 5244 5227 36895 5236 5222 36896 5236 5222 36897 5238 5221 36898 5242 5228 36899 5229 5216 36900 5271 5254 36901 5232 5410 36902 5428 5412 36903 5361 5342 36904 5427 5411 36905 5367 5343 36906 5361 5342 36907 5429 5413 36908 5375 5351 36909 5367 5343 36910 5430 5414 36911 5369 5345 36912 5375 5351 36913 5431 5415 36914 5365 5341 36915 5369 5345 36916 5432 5416 36917 5433 5417 36918 5362 5353 36919 5432 5416 36920 5434 5418 36921 5376 5360 36922 5433 5417 36923 5435 5419 36924 5371 5347 36925 5434 5418 36926 5436 5420 36927 5353 5332 36928 5435 5419 36929 5353 5332 36930 5436 5420 36931 5354 5333 36932 5438 5423 36933 5428 5412 36934 5439 5422 36935 5440 5432 36936 5429 5413 36937 5438 5423 36938 5432 5416 36939 5431 5415 36940 5442 5425 36941 5441 5424 36942 5431 5415 36943 5443 5426 36944 5434 5418 36945 5433 5417 36946 5445 5428 36947 5444 5427 36948 5433 5417 36949 5442 5425 36950 5436 5420 36951 5435 5419 36952 5447 5430 36953 5447 5430 36954 5448 5431 36955 5436 5420 36956 5435 5419 36957 5434 5418 36958 5446 5429 36959 5443 5426 36960 5430 5414 36961 5440 5432 36962 5449 5434 36963 5438 5423 36964 5450 5433 36965 5451 5435 36966 5440 5432 36967 5449 5434 36968 5452 5436 36969 5443 5426 36970 5451 5435 36971 5453 5437 36972 5441 5424 36973 5452 5436 36974 5454 5438 36975 5442 5425 36976 5453 5437 36977 5455 5439 36978 5444 5427 36979 5454 5438 36980 5445 5428 36981 5444 5427 36982 5456 5440 36983 5446 5429 36984 5445 5428 36985 5457 5441 36986 5447 5430 36987 5446 5429 36988 5458 5442 36989 5458 5442 36990 5459 5443 36991 5447 5430 36992 5217 5203 36993 5460 5444 36994 5282 5264 36995 5216 5202 36996 5215 5201 36997 5217 5203 36998 5214 5200 36999 5213 5199 37000 5462 5446 37001 5461 5445 37002 5220 5205 37003 5195 5182 37004 5220 5205 37005 5223 5245 37006 5167 5152 37007 5462 5446 37008 5461 5445 37009 5197 5184 37010 5168 5153 37011 5223 5245 37012 5171 5156 37013 5262 5244 37014 5286 5268 37015 5171 5156 37016 5172 5169 37017 5286 5268 37018 5186 5172 37019 5133 5121 37020 5283 5266 37021 5134 5122 37022 5134 5122 37023 5284 5265 37024 5173 5157 37025 5186 5172 37026 5285 5267 37027 5133 5121 37028 5214 5200 37029 5462 5446 37030 5193 5180 37031 5215 5201 37032 5214 5200 37033 5174 5158 37034 5173 5157 37035 5460 5444 37036 5174 5158 37037 5464 5454 37038 5400 5394 37039 5463 5447 37040 5463 5447 37041 5399 5381 37042 5465 5448 37043 5402 5383 37044 5404 5385 37045 5465 5448 37046 5468 5455 37047 5408 5396 37048 5467 5450 37049 5470 5474 37050 5412 5451 37051 5469 5452 37052 5469 5452 37053 5411 5391 37054 5471 5453 37055 5471 5453 37056 5414 5393 37057 5464 5454 37058 5472 5461 37059 5416 5407 37060 5468 5455 37061 5404 5385 37062 5418 5398 37063 5466 5449 37064 5418 5398 37065 5420 5400 37066 5473 5456 37067 5420 5400 37068 5422 5402 37069 5474 5457 37070 5422 5402 37071 5424 5404 37072 5475 5458 37073 5424 5404 37074 5426 5406 37075 5476 5459 37076 5426 5406 37077 5416 5407 37078 5477 5460 37079 5479 5470 37080 5451 5435 37081 5478 5462 37082 5481 5467 37083 5454 5438 37084 5480 5463 37085 5480 5463 37086 5453 5437 37087 5482 5464 37088 5456 5440 37089 5455 5439 37090 5484 5466 37091 5455 5439 37092 5454 5438 37093 5483 5465 37094 5458 5442 37095 5457 5441 37096 5486 5469 37097 5457 5441 37098 5456 5440 37099 5485 5468 37100 5482 5464 37101 5452 5436 37102 5479 5470 37103 5478 5462 37104 5449 5434 37105 5487 5471 37106 5459 5443 37107 5458 5442 37108 5488 5472 37109 5210 5196 37110 5222 5207 37111 5209 5473 37112 5222 5207 37113 5210 5196 37114 5261 5243 37115 5261 5243 37116 5380 5362 37117 5268 5251 37118 5382 5364 37119 5281 5263 37120 5381 5363 37121 5384 5365 37122 5292 5274 37123 5382 5364 37124 5384 5365 37125 5387 5368 37126 5292 5274 37127 5407 5388 37128 5406 5387 37129 5412 5451 37130 5467 5450 37131 5407 5388 37132 5470 5474 37133 5317 5298 37134 5316 5297 37135 5323 5303 37136 5398 5380 37137 5397 5379 37138 5299 5280 37139 5397 5379 37140 5413 5392 37141 5300 5281 37142 5386 5367 37143 5389 5369 37144 5410 5390 37145 5410 5390 37146 5409 5389 37147 5386 5367 37148 5387 5368 37149 5409 5389 37150 5307 5288 37151 5307 5288 37152 5406 5387 37153 5305 5285 37154 5305 5285 37155 5405 5386 37156 5306 5286 37157 5306 5286 37158 5415 5395 37159 5320 5378 37160 5425 5405 37161 5423 5403 37162 5320 5378 37163 5423 5403 37164 5421 5401 37165 5321 5300 37166 5421 5401 37167 5419 5399 37168 5322 5302 37169 5419 5399 37170 5417 5397 37171 5323 5303 37172 5417 5397 37173 5403 5384 37174 5326 5361 37175 5403 5384 37176 5401 5382 37177 5308 5305 37178 5401 5382 37179 5398 5380 37180 5309 5289 37181 5500 5494 37182 5497 5483 37183 5499 5485 37184 5501 5493 37185 5502 5486 37186 5504 5488 37187 5508 5510 37188 5505 5489 37189 5507 5491 37190 5499 5485 37191 5506 5490 37192 5500 5494 37193 5515 5518 37194 5516 5500 37195 5518 5502 37196 5522 5519 37197 5519 5503 37198 5521 5505 37199 5524 5534 37200 5504 5488 37201 5523 5506 37202 5528 5530 37203 5525 5507 37204 5527 5509 37205 5530 5532 37206 5508 5510 37207 5529 5511 37208 5531 5517 37209 5532 5512 37210 5491 5477 37211 5534 5525 37212 5535 5514 37213 5537 5516 37214 5518 5502 37215 5517 5501 37216 5531 5517 37217 5521 5505 37218 5516 5500 37219 5522 5519 37220 5538 5540 37221 5498 5484 37222 5539 5520 37223 5513 5498 37224 5520 5504 37225 5512 5497 37226 5489 5475 37227 5542 5523 37228 5490 5476 37229 5525 5507 37230 5534 5525 37231 5545 5527 37232 5512 5497 37233 5519 5503 37234 5537 5516 37235 5491 5477 37236 5490 5476 37237 5531 5517 37238 5518 5502 37239 5547 5529 37240 5515 5518 37241 5522 5519 37242 5515 5518 37243 5545 5527 37244 5519 5503 37245 5522 5519 37246 5544 5526 37247 5531 5517 37248 5543 5524 37249 5518 5502 37250 5540 5521 37251 5525 5507 37252 5546 5528 37253 5526 5508 37254 5540 5521 37255 5542 5523 37256 5503 5487 37257 5528 5530 37258 5523 5506 37259 5502 5486 37260 5535 5514 37261 5503 5487 37262 5536 5515 37263 5535 5514 37264 5509 5492 37265 5510 5495 37266 5536 5515 37267 5494 5480 37268 5496 5482 37269 5513 5498 37270 5548 5531 37271 5541 5522 37272 5520 5504 37273 5496 5482 37274 5539 5520 37275 5521 5505 37276 5541 5522 37277 5497 5483 37278 5516 5500 37279 5539 5520 37280 5516 5500 37281 5497 5483 37282 5517 5501 37283 5500 5494 37284 5505 5489 37285 5517 5501 37286 5532 5512 37287 5505 5489 37288 5533 5513 37289 5491 5477 37290 5533 5513 37291 5530 5532 37292 5499 5485 37293 5549 5533 37294 5507 5491 37295 5504 5488 37296 5524 5534 37297 5551 5536 37298 5549 5533 37299 5499 5485 37300 5554 5539 37301 5554 5539 37302 5553 5538 37303 5550 5535 37304 5553 5538 37305 5538 5540 37306 5551 5536 37307 5551 5536 37308 5552 5537 37309 5504 5488 37310 5535 5514 37311 5534 5525 37312 5528 5530 37313 5495 5481 37314 5538 5540 37315 5541 5522 37316 5511 5496 37317 5510 5495 37318 5493 5479 37319 5494 5480 37320 5509 5492 37321 5492 5478 37322 5537 5516 37323 5536 5515 37324 5512 5497 37325 5556 5542 37326 5511 5496 37327 5555 5541 37328 5556 5542 37329 5555 5541 37330 5514 5499 37331 5560 5561 37332 5557 5543 37333 5559 5545 37334 5561 5550 37335 5562 5546 37336 5564 5548 37337 5565 5788 37338 5566 5549 37339 5564 5548 37340 5558 5544 37341 5567 5551 37342 5559 5545 37343 5572 5763 37344 5569 5553 37345 5571 5555 37346 5575 5760 37347 5570 5554 37348 5574 5557 37349 5579 7965 37350 5576 5558 37351 5578 5560 37352 5574 5557 37353 5573 5556 37354 5560 5561 37355 5224 5214 37356 5580 5562 37357 5225 5209 37358 5558 5544 37359 5581 5563 37360 5567 5551 37361 5567 5551 37362 5580 5562 37363 5568 5552 37364 5583 5566 37365 5582 5564 37366 5584 5565 37367 5231 5215 37368 5584 5565 37369 5224 5214 37370 5232 5410 37371 5583 5566 37372 5231 5215 37373 5588 5576 37374 5585 5567 37375 5587 5569 37376 5587 5569 37377 5586 5568 37378 5237 5220 37379 5240 5224 37380 5239 5223 37381 5590 5571 37382 5590 5571 37383 5589 5570 37384 5592 5573 37385 5587 5569 37386 5593 5574 37387 5588 5576 37388 5237 5220 37389 5247 5231 37390 5587 5569 37391 5595 5698 37392 5596 5577 37393 5598 5579 37394 5602 5687 37395 5599 5580 37396 5601 5582 37397 5600 5581 37398 5562 5546 37399 5601 5582 37400 5595 5698 37401 5603 5583 37402 5596 5577 37403 5593 5574 37404 5605 5585 37405 5594 5575 37406 5247 5231 37407 5260 5242 37408 5593 5574 37409 5578 5560 37410 5577 5559 37411 5608 5588 37412 5610 5606 37413 5574 5557 37414 5609 5589 37415 5590 5571 37416 5611 5590 37417 5240 5224 37418 5592 5573 37419 5612 5591 37420 5590 5571 37421 5608 5588 37422 5607 5587 37423 5614 5593 37424 5582 5564 37425 5583 5566 37426 5616 5595 37427 5617 5604 37428 5618 5596 37429 5620 5598 37430 5613 5592 37431 5621 5599 37432 5623 5601 37433 5620 5598 37434 5624 5602 37435 5617 5604 37436 5614 5593 37437 5613 5592 37438 5626 5605 37439 5575 5760 37440 5574 5557 37441 5627 5607 37442 5628 5610 37443 5629 5608 37444 5620 5598 37445 5620 5598 37446 5619 5597 37447 5628 5610 37448 5607 5587 37449 5631 5611 37450 5613 5592 37451 5611 5590 37452 5632 5612 37453 5265 5248 37454 5623 5601 37455 5622 5600 37456 5634 5614 37457 5612 5591 37458 5635 5615 37459 5611 5590 37460 5626 5605 37461 5623 5601 37462 5636 5616 37463 5637 5632 37464 5638 5617 37465 5640 5619 37466 5642 5674 37467 5559 5545 37468 5641 5620 37469 5644 5700 37470 5643 5621 37471 5635 5615 37472 5645 5625 37473 5646 5622 37474 5302 5282 37475 5648 5702 37476 5647 5623 37477 5633 5613 37478 5647 5623 37479 5649 5624 37480 5634 5614 37481 5650 5639 37482 5646 5622 37483 5651 5626 37484 5655 5665 37485 5652 5627 37486 5654 5629 37487 5640 5619 37488 5656 5630 37489 5637 5632 37490 5659 5681 37491 5658 5633 37492 5318 5299 37493 5660 5792 37494 5654 5629 37495 5661 5634 37496 5665 5791 37497 5662 5635 37498 5664 5637 37499 5666 5682 37500 5667 5638 37501 5650 5639 37502 5303 5283 37503 5646 5622 37504 5328 5307 37505 5658 5633 37506 5668 5640 37507 5319 5309 37508 5663 5636 37509 5669 5641 37510 5664 5637 37511 5664 5637 37512 5670 5642 37513 5658 5633 37514 5670 5642 37515 5671 5643 37516 5668 5640 37517 5335 5316 37518 5330 5315 37519 5672 5644 37520 5335 5316 37521 5672 5644 37522 5336 5317 37523 5640 5619 37524 5639 5618 37525 5674 5646 37526 5615 5594 37527 5675 5647 37528 5616 5595 37529 5674 5646 37530 5677 5649 37531 5640 5619 37532 5669 5641 37533 5678 5650 37534 5670 5642 37535 5675 5647 37536 5615 5594 37537 5343 5324 37538 5679 5672 37539 5680 5651 37540 5673 5645 37541 5675 5647 37542 5681 5652 37543 5676 5648 37544 5683 5667 37545 5677 5649 37546 5680 5651 37547 5684 5678 37548 5350 5329 37549 5671 5643 37550 5684 5678 37551 5671 5643 37552 5685 5654 37553 5354 5333 37554 5686 5655 37555 5355 5334 37556 5681 5652 37557 5675 5647 37558 5357 5335 37559 5688 5662 37560 5689 5657 37561 5359 5337 37562 5690 5670 37563 5691 5658 37564 5693 5660 37565 5694 5677 37566 5695 5661 37567 5688 5662 37568 5697 5669 37569 5696 5663 37570 5691 5658 37571 5699 5679 37572 5698 5664 37573 5686 5655 37574 5619 5597 37575 5621 5599 37576 5630 5609 37577 5618 5596 37578 5622 5600 37579 5619 5597 37580 5657 5631 37581 5656 5630 37582 5655 5665 37583 5700 5666 37584 5652 5627 37585 5677 5649 37586 5701 5676 37587 5700 5666 37588 5683 5667 37589 5703 5680 37590 5702 5668 37591 5697 5669 37592 5704 5737 37593 5690 5670 37594 5705 5671 37595 5706 5675 37596 5679 5672 37597 5707 5673 37598 5639 5618 37599 5641 5620 37600 5673 5645 37601 5638 5617 37602 5642 5674 37603 5639 5618 37604 5624 5602 37605 5610 5606 37606 5625 5603 37607 5629 5608 37608 5627 5607 37609 5624 5602 37610 5355 5334 37611 5687 5656 37612 5357 5335 37613 5698 5664 37614 5682 5653 37615 5687 5656 37616 5705 5671 37617 5693 5660 37618 5706 5675 37619 5693 5660 37620 5692 5659 37621 5679 5672 37622 5696 5663 37623 5683 5667 37624 5692 5659 37625 5702 5668 37626 5701 5676 37627 5696 5663 37628 5685 5654 37629 5694 5677 37630 5684 5678 37631 5350 5329 37632 5684 5678 37633 5359 5337 37634 5641 5620 37635 5568 5552 37636 5616 5595 37637 5676 5648 37638 5707 5673 37639 5616 5595 37640 5676 5648 37641 5682 5653 37642 5707 5673 37643 5705 5671 37644 5706 5675 37645 5698 5664 37646 5704 5737 37647 5705 5671 37648 5699 5679 37649 5702 5668 37650 5703 5680 37651 5694 5677 37652 5701 5676 37653 5702 5668 37654 5685 5654 37655 5685 5654 37656 5678 5650 37657 5701 5676 37658 5652 5627 37659 5700 5666 37660 5669 5641 37661 5653 5628 37662 5652 5627 37663 5663 5636 37664 5661 5634 37665 5653 5628 37666 5662 5635 37667 5328 5307 37668 5667 5638 37669 5318 5299 37670 5665 5791 37671 5659 5681 37672 5666 5682 37673 5601 5582 37674 5561 5550 37675 5708 5683 37676 5602 5687 37677 5601 5582 37678 5709 5684 37679 5709 5684 37680 5710 5685 37681 5602 5687 37682 5710 5685 37683 5712 5688 37684 5711 5686 37685 5715 5789 37686 5714 5690 37687 5712 5688 37688 5651 5626 37689 5645 5625 37690 5643 5621 37691 5632 5612 37692 5645 5625 37693 5287 5269 37694 5716 5692 37695 5713 5689 37696 5717 5691 37697 5711 5686 37698 5713 5689 37699 5718 5693 37700 5602 5687 37701 5711 5686 37702 5719 5694 37703 5720 5701 37704 5599 5580 37705 5719 5694 37706 5597 5578 37707 5721 5695 37708 5598 5579 37709 5722 5696 37710 5723 5697 37711 5598 5579 37712 5723 5697 37713 5724 5699 37714 5595 5698 37715 5717 5691 37716 5644 5700 37717 5716 5692 37718 5718 5693 37719 5716 5692 37720 5612 5591 37721 5719 5694 37722 5718 5693 37723 5592 5573 37724 5592 5573 37725 5591 5572 37726 5719 5694 37727 5722 5696 37728 5721 5695 37729 5588 5576 37730 5588 5576 37731 5594 5575 37732 5722 5696 37733 5594 5575 37734 5606 5586 37735 5723 5697 37736 5609 5589 37737 5560 5561 37738 5642 5674 37739 5625 5603 37740 5609 5589 37741 5638 5617 37742 5617 5604 37743 5625 5603 37744 5637 5632 37745 5637 5632 37746 5657 5631 37747 5617 5604 37748 5657 5631 37749 5655 5665 37750 5618 5596 37751 5654 5629 37752 5633 5613 37753 5655 5665 37754 5660 5792 37755 5648 5702 37756 5654 5629 37757 5728 5793 37758 5725 5703 37759 5727 5705 37760 5728 5793 37761 5727 5705 37762 5730 5707 37763 5730 5707 37764 5729 5706 37765 5732 5709 37766 5736 5790 37767 5733 5710 37768 5735 5712 37769 5740 5716 37770 5737 5713 37771 5739 5715 37772 5742 5718 37773 5740 5716 37774 5741 5717 37775 5725 5703 37776 5742 5718 37777 5726 5704 37778 5733 5710 37779 5743 5719 37780 5734 5711 37781 5732 5709 37782 5731 5708 37783 5746 5722 37784 5746 5722 37785 5745 5721 37786 5748 5724 37787 5748 5724 37788 5747 5723 37789 5750 5726 37790 5750 5726 37791 5749 5725 37792 5752 5728 37793 5752 5728 37794 5751 5727 37795 5754 5730 37796 5743 5719 37797 5754 5730 37798 5744 5720 37799 5600 5581 37800 5596 5577 37801 5562 5546 37802 5599 5580 37803 5597 5578 37804 5600 5581 37805 5721 5695 37806 5597 5578 37807 5720 5701 37808 5591 5572 37809 5585 5567 37810 5720 5701 37811 5585 5567 37812 5591 5572 37813 5586 5568 37814 5239 5223 37815 5238 5221 37816 5589 5570 37817 5583 5566 37818 5232 5410 37819 5615 5594 37820 5360 5338 37821 5689 5657 37822 5427 5411 37823 5695 5661 37824 5756 5732 37825 5689 5657 37826 5703 5680 37827 5757 5733 37828 5695 5661 37829 5697 5669 37830 5758 5734 37831 5703 5680 37832 5691 5658 37833 5759 5735 37834 5697 5669 37835 5760 5736 37836 5759 5735 37837 5690 5670 37838 5761 5739 37839 5760 5736 37840 5704 5737 37841 5704 5737 37842 5699 5679 37843 5761 5739 37844 5699 5679 37845 5686 5655 37846 5762 5738 37847 5437 5421 37848 5763 5740 37849 5354 5333 37850 5764 5742 37851 5439 5422 37852 5755 5731 37853 5755 5731 37854 5756 5732 37855 5764 5742 37856 5759 5735 37857 5766 5743 37858 5758 5734 37859 5757 5733 37860 5758 5734 37861 5768 5745 37862 5761 5739 37863 5769 5746 37864 5760 5736 37865 5760 5736 37866 5770 5747 37867 5759 5735 37868 5763 5740 37869 5771 5748 37870 5762 5738 37871 5771 5748 37872 5763 5740 37873 5448 5431 37874 5762 5738 37875 5772 5749 37876 5761 5739 37877 5756 5732 37878 5757 5733 37879 5765 5741 37880 5773 5751 37881 5450 5433 37882 5764 5742 37883 5764 5742 37884 5765 5741 37885 5773 5751 37886 5765 5741 37887 5768 5745 37888 5774 5750 37889 5768 5745 37890 5767 5744 37891 5775 5752 37892 5767 5744 37893 5766 5743 37894 5776 5753 37895 5766 5743 37896 5770 5747 37897 5777 5754 37898 5769 5746 37899 5779 5756 37900 5770 5747 37901 5772 5749 37902 5780 5757 37903 5769 5746 37904 5771 5748 37905 5781 5758 37906 5772 5749 37907 5781 5758 37908 5771 5748 37909 5459 5443 37910 5575 5760 37911 5627 5607 37912 5782 5759 37913 5570 5554 37914 5575 5760 37915 5571 5555 37916 5572 5763 37917 5783 5761 37918 5569 5553 37919 5784 5762 37920 5550 5535 37921 5576 5558 37922 5576 5558 37923 5524 5534 37924 5577 5559 37925 5783 5761 37926 5554 5539 37927 5784 5762 37928 5607 5587 37929 5577 5559 37930 5527 5509 37931 5607 5587 37932 5527 5509 37933 5631 5611 37934 5630 5609 37935 5631 5611 37936 5542 5523 37937 5629 5608 37938 5628 5610 37939 5491 5477 37940 5782 5759 37941 5629 5608 37942 5530 5532 37943 5628 5610 37944 5630 5609 37945 5489 5475 37946 5572 5763 37947 5549 5533 37948 5783 5761 37949 5571 5555 37950 5529 5511 37951 5572 5763 37952 5571 5555 37953 5782 5759 37954 5529 5511 37955 5727 5705 37956 5726 5704 37957 5786 5765 37958 5729 5706 37959 5727 5705 37960 5787 5766 37961 5729 5706 37962 5787 5766 37963 5731 5708 37964 5735 5712 37965 5734 5711 37966 5790 5769 37967 5739 5715 37968 5738 5714 37969 5792 5771 37970 5741 5717 37971 5739 5715 37972 5793 5772 37973 5726 5704 37974 5741 5717 37975 5785 5764 37976 5734 5711 37977 5744 5720 37978 5789 5768 37979 5731 5708 37980 5788 5767 37981 5745 5721 37982 5745 5721 37983 5795 5774 37984 5747 5723 37985 5747 5723 37986 5796 5775 37987 5749 5725 37988 5749 5725 37989 5797 5776 37990 5751 5727 37991 5751 5727 37992 5798 5777 37993 5753 5729 37994 5753 5729 37995 5799 5778 37996 5744 5720 37997 5773 5751 37998 5774 5750 37999 5801 5780 38000 5776 5753 38001 5777 5754 38002 5803 5782 38003 5775 5752 38004 5776 5753 38005 5804 5783 38006 5779 5756 38007 5805 5784 38008 5778 5755 38009 5778 5755 38010 5806 5785 38011 5777 5754 38012 5781 5758 38013 5807 5786 38014 5780 5757 38015 5780 5757 38016 5808 5787 38017 5779 5756 38018 5774 5750 38019 5775 5752 38020 5800 5779 38021 5450 5433 38022 5773 5751 38023 5487 5471 38024 5459 5443 38025 5488 5472 38026 5781 5758 38027 5579 7965 38028 5578 5560 38029 5565 5788 38030 5708 5683 38031 5566 5549 38032 5608 5588 38033 5709 5684 38034 5708 5683 38035 5614 5593 38036 5614 5593 38037 5626 5605 38038 5709 5684 38039 5626 5605 38040 5636 5616 38041 5710 5685 38042 5649 5624 38043 5715 5789 38044 5636 5616 38045 5735 5712 38046 5738 5714 38047 5736 5790 38048 5790 5769 38049 5791 5770 38050 5735 5712 38051 5664 5637 38052 5658 5633 38053 5665 5791 38054 5728 5793 38055 5643 5621 38056 5725 5703 38057 5725 5703 38058 5644 5700 38059 5742 5718 38060 5714 5690 38061 5740 5716 38062 5717 5691 38063 5740 5716 38064 5714 5690 38065 5737 5713 38066 5736 5790 38067 5737 5713 38068 5649 5624 38069 5733 5710 38070 5736 5790 38071 5647 5623 38072 5743 5719 38073 5733 5710 38074 5648 5702 38075 5754 5730 38076 5743 5719 38077 5660 5792 38078 5754 5730 38079 5660 5792 38080 5752 5728 38081 5752 5728 38082 5661 5634 38083 5750 5726 38084 5750 5726 38085 5662 5635 38086 5748 5724 38087 5748 5724 38088 5665 5791 38089 5746 5722 38090 5746 5722 38091 5666 5682 38092 5732 5709 38093 5732 5709 38094 5650 5639 38095 5730 5707 38096 5730 5707 38097 5651 5626 38098 5728 5793 38099 6647 6638 40512 5479 5470 40513 6646 6631 40514 6650 6642 40515 5480 5463 40516 6649 6633 40517 5484 5466 40518 5483 5465 40519 6652 6635 40520 5486 5469 40521 5485 5468 40522 6654 6637 40523 5485 5468 40524 5484 5466 40525 6653 6636 40526 6649 6633 40527 5482 5464 40528 6647 6638 40529 5488 5472 40530 5486 5469 40531 6655 6639 40532 5487 5471 40533 6656 6640 40534 5478 5462 40535 6658 6644 40536 6647 6638 40537 6657 6641 40538 6660 6646 40539 6648 6632 40540 6659 6643 40541 6659 6643 40542 6650 6642 40543 6658 6644 40544 6662 6647 40545 6652 6635 40546 6661 6645 40547 6661 6645 40548 6651 6634 40549 6660 6646 40550 6663 6648 40551 6654 6637 40552 6662 6647 40553 6665 6651 40554 6658 6644 40555 6664 6649 40556 6667 6654 40557 6660 6646 40558 6666 6650 40559 6666 6650 40560 6659 6643 40561 6665 6651 40562 6662 6647 40563 6661 6645 40564 6669 6653 40565 6661 6645 40566 6660 6646 40567 6668 6652 40568 6663 6648 40569 6662 6647 40570 6670 6655 40571 6672 6657 40572 6665 6651 40573 6671 6656 40574 6670 6655 40575 6669 6653 40576 6671 6656 40577 6673 6659 40578 6656 6640 40579 5801 5780 40580 5801 5780 40581 5800 5779 40582 6673 6659 40583 5804 5783 40584 5803 5782 40585 6677 6662 40586 5805 5784 40587 6678 6663 40588 5806 5785 40589 5807 5786 40590 6680 6665 40591 5808 5787 40592 5808 5787 40593 6681 6666 40594 5805 5784 40595 5800 5779 40596 5804 5783 40597 6674 6658 40598 5488 5472 40599 6655 6639 40600 5807 5786 40601 6673 6659 40602 6674 6658 40603 6657 6641 40604 6676 6661 40605 6675 6660 40606 6684 6669 40607 6677 6662 40608 6676 6661 40609 6682 6667 40610 6679 6664 40611 6678 6663 40612 6686 6671 40613 6675 6660 40614 6679 6664 40615 6683 6668 40616 6681 6666 40617 6680 6665 40618 6685 6670 40619 6657 6641 40620 6682 6667 40621 6664 6649 40622 6684 6669 40623 6683 6668 40624 6689 6674 40625 6682 6667 40626 6684 6669 40627 6687 6672 40628 6685 6670 40629 6690 6675 40630 6686 6671 40631 6683 6668 40632 6686 6671 40633 6688 6673 40634 6663 6648 40635 6670 6655 40636 6685 6670 40637 6687 6672 40638 6692 6677 40639 6664 6649 40640 6670 6655 40641 6671 6656 40642 6690 6675 40643 6812 6800 40896 6813 6794 40897 6815 6796 40898 6814 6795 40899 6813 6794 40900 6817 6798 40901 6819 6852 40902 6816 6797 40903 6818 6799 40904 6823 6808 40905 6820 6801 40906 6822 6803 40907 6822 6803 40908 6821 6802 40909 6825 6805 40910 6819 6852 40911 6824 6804 40912 6816 6797 40913 6816 6797 40914 6821 6802 40915 6817 6798 40916 6822 6803 40917 6826 6806 40918 6823 6808 40919 6829 6815 40920 6827 6807 40921 6828 6809 40922 6828 6809 40923 6826 6806 40924 6831 6811 40925 6825 6805 40926 6830 6810 40927 6822 6803 40928 6831 6811 40929 6832 6812 40930 6828 6809 40931 6828 6809 40932 6833 6813 40933 6829 6815 40934 6835 6824 40935 6836 6816 40936 6838 6818 40937 6839 6820 40938 6840 6819 40939 6815 6796 40940 6838 6818 40941 6837 6817 40942 6839 6820 40943 6841 6827 40944 6842 6821 40945 6844 6823 40946 6838 6818 40947 6843 6822 40948 6835 6824 40949 6829 6815 40950 6834 6814 40951 6846 6826 40952 6844 6823 40953 6846 6826 40954 6841 6827 40955 6827 6807 40956 6847 6828 40957 6823 6808 40958 6817 6798 40959 6820 6801 40960 6848 6829 40961 6848 6829 40962 6847 6828 40963 6844 6823 40964 6846 6826 40965 6847 6828 40966 6829 6815 40967 6814 6795 40968 6849 6830 40969 6815 6796 40970 6839 6820 40971 6849 6830 40972 6838 6818 40973 6844 6823 40974 6843 6822 40975 6848 6829 40976 6817 6798 40977 6848 6829 40978 6814 6795 40979 6833 6813 40980 6850 6831 40981 6834 6814 40982 6833 6813 40983 6832 6812 40984 6850 6831 40985 6835 6824 40986 6853 6834 40987 6836 6816 40988 6835 6824 40989 6842 6821 40990 6853 6834 40991 6842 6821 40992 6841 6827 40993 6855 6836 40994 6834 6814 40995 6851 6832 40996 6845 6825 40997 6845 6825 40998 6857 6838 40999 6841 6827 41000 6851 6832 41001 6850 6831 41002 6859 6840 41003 6850 6831 41004 6852 6833 41005 6858 6839 41006 6853 6834 41007 6861 6842 41008 6854 6835 41009 6855 6836 41010 6863 6844 41011 6853 6834 41012 6856 6837 41013 6864 6845 41014 6855 6836 41015 6857 6838 41016 6851 6832 41017 6865 6846 41018 6857 6838 41019 6865 6846 41020 6856 6837 41021 6812 6800 41022 6866 6847 41023 6868 6849 41024 6867 6848 41025 6869 6850 41026 6868 6849 41027 6868 6849 41028 6870 6851 41029 6818 6799 41030 6874 6856 41031 6871 6853 41032 6873 6855 41033 6873 6855 41034 6825 6805 41035 6874 6856 41036 6874 6856 41037 6824 6804 41038 6870 6851 41039 6870 6851 41040 6869 6850 41041 6874 6856 41042 6873 6855 41043 6872 6854 41044 6876 6858 41045 6876 6858 41046 6875 6857 41047 6878 6860 41048 6878 6860 41049 6831 6811 41050 6876 6858 41051 6876 6858 41052 6830 6810 41053 6873 6855 41054 6879 6862 41055 6832 6812 41056 6878 6860 41057 6878 6860 41058 6877 6859 41059 6879 6862 41060 6881 6868 41061 6882 6863 41062 6836 6816 41063 6883 6864 41064 6866 6847 41065 6840 6819 41066 6840 6819 41067 6837 6817 41068 6883 6864 41069 6884 6870 41070 6885 6865 41071 6887 6867 41072 6887 6867 41073 6886 6866 41074 6881 6868 41075 6889 6878 41076 6880 6861 41077 6888 6869 41078 6889 6878 41079 6888 6869 41080 6884 6870 41081 6875 6857 41082 6872 6854 41083 6890 6871 41084 6890 6871 41085 6871 6853 41086 6891 6872 41087 6891 6872 41088 6885 6865 41089 6890 6871 41090 6888 6869 41091 6877 6859 41092 6890 6871 41093 6867 6848 41094 6866 6847 41095 6892 6873 41096 6883 6864 41097 6882 6863 41098 6892 6873 41099 6892 6873 41100 6886 6866 41101 6891 6872 41102 6892 6873 41103 6891 6872 41104 6867 6848 41105 6879 6862 41106 6880 6861 41107 6894 6875 41108 6852 6833 41109 6832 6812 41110 6894 6875 41111 6881 6868 41112 6836 6816 41113 6895 6876 41114 6896 6877 41115 6887 6867 41116 6895 6876 41117 6897 6880 41118 6884 6870 41119 6896 6877 41120 6880 6861 41121 6889 6878 41122 6893 6874 41123 6889 6878 41124 6884 6870 41125 6898 6879 41126 6900 6882 41127 6894 6875 41128 6899 6881 41129 6860 6841 41130 6852 6833 41131 6900 6882 41132 6895 6876 41133 6854 6835 41134 6901 6883 41135 6896 6877 41136 6895 6876 41137 6902 6884 41138 6897 6880 41139 6896 6877 41140 6903 6885 41141 6899 6881 41142 6893 6874 41143 6904 6886 41144 6898 6879 41145 6897 6880 41146 6904 6886 41147 6908 6895 41148 6905 6887 41149 6907 6889 41150 6909 7979 41151 6910 6890 41152 6912 6892 41153 6913 7980 41154 6914 7980 41155 6916 7980 41156 6918 7981 41157 6917 6894 41158 6908 6895 41159 6914 7982 41160 6909 7982 41161 6915 7982 41162 6920 7983 41163 6919 7983 41164 6918 7983 41165 6919 7984 41166 6920 6898 41167 6910 6890 41168 6907 7985 41169 6906 7985 41170 6922 7985 41171 6908 7986 41172 6907 7986 41173 6923 7986 41174 6912 7987 41175 6911 7987 41176 6925 7987 41177 6914 7988 41178 6913 7988 41179 6927 7988 41180 6929 7989 41181 6916 7989 41182 6928 7989 41183 6926 7990 41184 6913 7990 41185 6929 7990 41186 6918 7991 41187 6908 7991 41188 6930 7991 41189 6915 7992 41190 6912 7992 41191 6928 7992 41192 6920 7993 41193 6918 7993 41194 6931 7993 41195 6911 7994 41196 6920 7994 41197 6924 7994 41198 6933 7995 41199 6917 7995 41200 6932 7995 41201 6934 7996 41202 6905 7996 41203 6933 7996 41204 6921 7997 41205 6906 7997 41206 6934 7997 41207 6932 7998 41208 6919 7998 41209 6935 7998 41210 6935 7999 41211 6910 7999 41212 6936 7999 41213 6936 8000 41214 6909 8000 41215 6927 8000 41216 6937 6930 41217 6938 6915 41218 6940 6917 41219 6939 6916 41220 6938 6915 41221 6942 6919 41222 6942 6919 41223 6941 6918 41224 6944 6921 41225 6951 6946 41226 6948 6925 41227 6950 6927 41228 6949 6926 41229 6952 6928 41230 6950 6927 41231 6952 6928 41232 6937 6930 41233 6953 6929 41234 6954 6942 41235 6945 6922 41236 6955 6931 41237 6944 6921 41238 6943 6920 41239 6957 6933 41240 6957 6933 41241 6956 6932 41242 6959 6935 41243 6959 6935 41244 6958 6934 41245 6961 6937 41246 6961 6937 41247 6960 6936 41248 6963 6939 41249 6962 6938 41250 6964 6940 41251 6963 6939 41252 6965 6941 41253 6964 6940 41254 6955 6931 41255 6967 6950 41256 6940 6917 41257 6966 6943 41258 6966 6943 41259 6939 6916 41260 6968 6944 41261 6968 6944 41262 6942 6919 41263 6969 6945 41264 6971 6951 41265 6947 6924 41266 6970 6947 41267 6970 6947 41268 6951 6946 41269 6972 6948 41270 6972 6948 41271 6950 6927 41272 6973 6949 41273 6973 6949 41274 6953 6929 41275 6967 6950 41276 6955 6931 41277 6947 6924 41278 6974 6952 41279 6944 6921 41280 6957 6933 41281 6969 6945 41282 6957 6933 41283 6959 6935 41284 6975 6953 41285 6959 6935 41286 6961 6937 41287 6976 6954 41288 6961 6937 41289 6963 6939 41290 6977 6955 41291 6963 6939 41292 6965 6941 41293 6978 6956 41294 6965 6941 41295 6955 6931 41296 6979 6957 41297 6946 6923 41298 6948 6925 41299 6947 6924 41300 6984 6967 41301 6985 6960 41302 6987 6962 41303 6983 8001 41304 6982 6964 41305 6992 6966 41306 6993 6975 41307 6985 6960 41308 6994 6968 41309 6995 6974 41310 6996 6969 41311 6998 6971 41312 6996 6969 41313 6988 6972 41314 6997 6970 41315 6987 6962 41316 6986 6961 41317 6998 6971 41318 6991 6965 41319 6993 6975 41320 6992 6966 41321 6999 7026 41322 7000 6976 41323 7002 6978 41324 7003 7024 41325 7004 6979 41326 7006 6981 41327 7007 7027 41328 7008 6982 41329 7010 6984 41330 7014 7071 41331 7011 6985 41332 7013 6987 41333 7018 7072 41334 7015 6988 41335 7017 6990 41336 7022 7067 41337 7019 6991 41338 7021 6993 41339 7026 7066 41340 7023 6994 41341 7025 6996 41342 7027 7028 41343 7028 6997 41344 7030 6999 41345 7031 7029 41346 7032 7000 41347 7034 7002 41348 7035 7030 41349 7036 7003 41350 7038 7005 41351 7039 7031 41352 7040 7006 41353 7042 7008 41354 7046 7069 41355 7043 7009 41356 7045 7011 41357 7050 7070 41358 7047 7012 41359 7049 7014 41360 7054 7068 41361 7051 7015 41362 7053 7017 41363 7058 7065 41364 7055 7018 41365 7057 7020 41366 7059 7032 41367 7060 7021 41368 7062 7023 41369 7002 6978 41370 7003 7024 41371 6999 7026 41372 7006 6981 41373 7007 7027 41374 7003 7024 41375 7010 6984 41376 7011 6985 41377 7007 7027 41378 7014 7071 41379 7015 6988 41380 7011 6985 41381 7018 7072 41382 7019 6991 41383 7015 6988 41384 7022 7067 41385 7023 6994 41386 7019 6991 41387 7026 7066 41388 7027 7028 41389 7023 6994 41390 7030 6999 41391 7031 7029 41392 7027 7028 41393 7034 7002 41394 7035 7030 41395 7031 7029 41396 7038 7005 41397 7039 7031 41398 7035 7030 41399 7042 7008 41400 7043 7009 41401 7039 7031 41402 7046 7069 41403 7047 7012 41404 7043 7009 41405 7050 7070 41406 7051 7015 41407 7047 7012 41408 7054 7068 41409 7055 7018 41410 7051 7015 41411 7058 7065 41412 7059 7032 41413 7055 7018 41414 7062 7023 41415 6999 7026 41416 7059 7032 41417 7000 6976 41418 7064 7033 41419 7001 6977 41420 7004 6979 41421 7066 7035 41422 7005 6980 41423 7009 6983 41424 7008 6982 41425 7069 7038 41426 7013 6987 41427 7012 6986 41428 7071 7040 41429 7017 6990 41430 7016 6989 41431 7073 7042 41432 7021 6993 41433 7020 6992 41434 7075 7044 41435 7025 6996 41436 7024 6995 41437 7077 7046 41438 7028 6997 41439 7078 7047 41440 7029 6998 41441 7032 7000 41442 7080 7049 41443 7033 7001 41444 7036 7003 41445 7082 7051 41446 7037 7004 41447 7040 7006 41448 7084 7053 41449 7041 7007 41450 7044 7010 41451 7086 7055 41452 7045 7011 41453 7049 7014 41454 7048 7013 41455 7089 7058 41456 7053 7017 41457 7052 7016 41458 7091 7060 41459 7057 7020 41460 7056 7019 41461 7093 7062 41462 7060 7021 41463 7094 7063 41464 7061 7022 41465 7060 7021 41466 7057 7020 41467 7094 7063 41468 7059 7032 41469 7058 7065 41470 7060 7021 41471 7061 7022 41472 7095 7064 41473 7000 6976 41474 7062 7023 41475 7061 7022 41476 6999 7026 41477 7028 6997 41478 7025 6996 41479 7078 7047 41480 7027 7028 41481 7026 7066 41482 7028 6997 41483 7029 6998 41484 7079 7048 41485 7032 7000 41486 7030 6999 41487 7029 6998 41488 7031 7029 41489 7024 6995 41490 7021 6993 41491 7076 7045 41492 7023 6994 41493 7022 7067 41494 7024 6995 41495 7033 7001 41496 7081 7050 41497 7036 7003 41498 7034 7002 41499 7033 7001 41500 7035 7030 41501 7001 6977 41502 7065 7034 41503 7004 6979 41504 7002 6978 41505 7001 6977 41506 7003 7024 41507 7056 7019 41508 7053 7017 41509 7092 7061 41510 7055 7018 41511 7054 7068 41512 7056 7019 41513 7041 7007 41514 7085 7054 41515 7044 7010 41516 7042 7008 41517 7041 7007 41518 7043 7009 41519 7045 7011 41520 7087 7056 41521 7048 7013 41522 7047 7012 41523 7046 7069 41524 7048 7013 41525 7037 7004 41526 7083 7052 41527 7040 7006 41528 7038 7005 41529 7037 7004 41530 7039 7031 41531 7052 7016 41532 7049 7014 41533 7090 7059 41534 7051 7015 41535 7050 7070 41536 7052 7016 41537 7005 6980 41538 7067 7036 41539 7008 6982 41540 7006 6981 41541 7005 6980 41542 7007 7027 41543 7012 6986 41544 7009 6983 41545 7070 7039 41546 7010 6984 41547 7009 6983 41548 7011 6985 41549 7016 6989 41550 7013 6987 41551 7072 7041 41552 7015 6988 41553 7014 7071 41554 7016 6989 41555 7020 6992 41556 7017 6990 41557 7074 7043 41558 7019 6991 41559 7018 7072 41560 7020 6992 41561 7133 7111 41562 7130 7107 41563 7132 7109 41564 7135 7113 41565 7134 7110 41566 7133 7111 41567 7137 7115 41568 7136 7112 41569 7135 7113 41570 7139 7120 41571 7138 7114 41572 7137 7115 41573 7143 7135 41574 7140 7116 41575 7142 7118 41576 7145 7227 41577 7144 7119 41578 7139 7120 41579 7152 7144 41580 7149 7124 41581 7151 7126 41582 7140 7116 41583 7153 7127 41584 7141 7117 41585 7144 7119 41586 7155 7129 41587 7138 7114 41588 7138 7114 41589 7156 7130 41590 7136 7112 41591 7136 7112 41592 7157 7131 41593 7134 7110 41594 7134 7110 41595 7158 7132 41596 7130 7107 41597 7159 7133 41598 7160 7134 41599 7130 7107 41600 7161 7167 41601 7146 7121 41602 7149 7124 41603 7140 7116 41604 7143 7135 41605 7163 7137 41606 7167 7163 41607 7168 7141 41608 7170 7143 41609 7172 7148 41610 7152 7144 41611 7171 7145 41612 7141 7117 41613 7154 7128 41614 7144 7119 41615 7145 7227 41616 7142 7118 41617 7144 7119 41618 7178 7162 41619 7154 7128 41620 7180 7153 41621 7182 7168 41622 7160 7134 41623 7181 7154 41624 7181 7154 41625 7159 7133 41626 7183 7155 41627 7183 7155 41628 7158 7132 41629 7184 7156 41630 7186 7158 41631 7156 7130 41632 7185 7157 41633 7184 7156 41634 7157 7131 41635 7186 7158 41636 7188 7161 41637 7151 7126 41638 7187 7159 41639 7189 7160 41640 7171 7145 41641 7188 7161 41642 7185 7157 41643 7155 7129 41644 7178 7162 41645 7140 7116 41646 7168 7141 41647 7153 7127 41648 7176 7150 41649 7175 7149 41650 7191 7165 41651 7163 7137 41652 7162 7136 41653 7164 7138 41654 7191 7165 41655 7190 7164 41656 7179 7152 41657 7150 7125 41658 7160 7134 41659 7187 7159 41660 7146 7121 41661 7131 7108 41662 7150 7125 41663 7132 7109 41664 7131 7108 41665 7148 7123 41666 7196 7195 41667 7193 7169 41668 7195 7171 41669 7193 7169 41670 7197 7172 41671 7194 7170 41672 7197 7172 41673 7199 7174 41674 7198 7173 41675 7199 7174 41676 7201 7176 41677 7200 7175 41678 7203 7189 41679 7204 7178 41680 7206 7180 41681 7201 7176 41682 7207 7181 41683 7202 7177 41684 7215 7211 41685 7214 7188 41686 7206 7180 41687 7217 7191 41688 7216 7190 41689 7201 7176 41690 7218 7192 41691 7217 7191 41692 7199 7174 41693 7219 7193 41694 7218 7192 41695 7197 7172 41696 7220 7194 41697 7219 7193 41698 7193 7169 41699 7221 7214 41700 7220 7194 41701 7196 7195 41702 7203 7189 41703 7222 7196 41704 7204 7178 41705 7229 7228 41706 7226 7200 41707 7228 7202 41708 7230 7205 41709 7212 7186 41710 7231 7203 41711 7233 7207 41712 7232 7204 41713 7231 7203 41714 7209 7183 41715 7234 7206 41716 7233 7207 41717 7216 7190 41718 7215 7211 41719 7207 7181 41720 7206 7180 41721 7205 7179 41722 7207 7181 41723 7238 7224 41724 7239 7212 41725 7215 7211 41726 7220 7194 41727 7221 7214 41728 7242 7216 41729 7219 7193 41730 7220 7194 41731 7243 7217 41732 7218 7192 41733 7219 7193 41734 7244 7218 41735 7216 7190 41736 7217 7191 41737 7246 7220 41738 7217 7191 41739 7218 7192 41740 7245 7219 41741 7233 7207 41742 7231 7203 41743 7248 7222 41744 7213 7187 41745 7249 7223 41746 7231 7203 41747 7215 7211 41748 7216 7190 41749 7238 7224 41750 7229 7228 41751 7203 7189 41752 7226 7200 41753 7251 7226 41754 7236 7209 41755 7250 7225 41756 7222 7196 41757 7224 7198 41758 7223 7197 41759 7239 7212 41760 7251 7226 41761 7240 7213 41762 7221 7214 41763 7233 7207 41764 7241 7215 41765 7196 7195 41766 7209 7183 41767 7221 7214 41768 7195 7171 41769 7210 7184 41770 7196 7195 41771 7132 7109 41772 7195 7171 41773 7133 7111 41774 7194 7170 41775 7198 7173 41776 7133 7111 41777 7198 7173 41778 7200 7175 41779 7135 7113 41780 7200 7175 41781 7202 7177 41782 7137 7115 41783 7205 7179 41784 7204 7178 41785 7142 7118 41786 7202 7177 41787 7208 7182 41788 7139 7120 41789 7211 7185 41790 7210 7184 41791 7147 7122 41792 7214 7188 41793 7215 7211 41794 7153 7127 41795 7204 7178 41796 7223 7197 41797 7143 7135 41798 7163 7137 41799 7222 7196 41800 7140 7116 41801 7229 7228 41802 7228 7202 41803 7168 7141 41804 7227 7201 41805 7226 7200 41806 7170 7143 41807 7172 7148 41808 7212 7186 41809 7152 7144 41810 7152 7144 41811 7230 7205 41812 7149 7124 41813 7232 7204 41814 7234 7206 41815 7149 7124 41816 7173 7146 41817 7235 7208 41818 7147 7122 41819 7208 7182 41820 7205 7179 41821 7145 7227 41822 7154 7128 41823 7215 7211 41824 7179 7152 41825 7239 7212 41826 7238 7224 41827 7180 7153 41828 7181 7154 41829 7242 7216 41830 7182 7168 41831 7183 7155 41832 7243 7217 41833 7181 7154 41834 7184 7156 41835 7244 7218 41836 7183 7155 41837 7246 7220 41838 7245 7219 41839 7185 7157 41840 7245 7219 41841 7244 7218 41842 7186 7158 41843 7248 7222 41844 7247 7221 41845 7187 7159 41846 7247 7221 41847 7249 7223 41848 7188 7161 41849 7178 7162 41850 7238 7224 41851 7185 7157 41852 7140 7116 41853 7203 7189 41854 7168 7141 41855 7167 7163 41856 7226 7200 41857 7153 7127 41858 7236 7209 41859 7251 7226 41860 7175 7149 41861 7191 7165 41862 7250 7225 41863 7176 7150 41864 7223 7197 41865 7225 7199 41866 7162 7136 41867 7164 7138 41868 7224 7198 41869 7163 7137 41870 7234 7206 41871 7235 7208 41872 7161 7167 41873 7251 7226 41874 7239 7212 41875 7190 7164 41876 7179 7152 41877 7240 7213 41878 7191 7165 41879 7241 7215 41880 7248 7222 41881 7182 7168 41882 7210 7184 41883 7195 7171 41884 7148 7123 41885 7255 8002 41886 7252 7229 41887 7254 7231 41888 7256 8003 41889 7257 7232 41890 7259 7234 41891 7260 8004 41892 7261 8004 41893 7263 8004 41894 7252 7229 41895 7264 7236 41896 7253 7230 41897 7263 8005 41898 7262 8005 41899 7256 8005 41900 7264 8006 41901 7266 8006 41902 7265 8006 41903 7258 7233 41904 7267 7240 41905 7259 7234 41906 7254 8007 41907 7268 8007 41908 7255 8007 41909 7253 8008 41910 7270 8008 41911 7254 8008 41912 7257 8009 41913 7271 8009 41914 7258 8009 41915 7263 8010 41916 7273 8010 41917 7260 8010 41918 7262 8011 41919 7261 8011 41920 7276 8011 41921 7261 8012 41922 7260 8012 41923 7275 8012 41924 7265 8013 41925 7277 8013 41926 7253 8013 41927 7262 8014 41928 7276 8014 41929 7257 8014 41930 7267 8015 41931 7278 8015 41932 7265 8015 41933 7258 8016 41934 7272 8016 41935 7267 8016 41936 7266 8017 41937 7264 8017 41938 7280 8017 41939 7264 8018 41940 7252 8018 41941 7279 8018 41942 7252 8019 41943 7255 8019 41944 7281 8019 41945 7259 8020 41946 7266 8020 41947 7282 8020 41948 7256 8021 41949 7259 8021 41950 7283 8021 41951 7263 8022 41952 7256 8022 41953 7273 8022 41954 7287 7267 41955 7288 7259 41956 7290 7261 41957 7295 8023 41958 7286 7263 41959 7294 7265 41960 7296 7274 41961 7297 7266 41962 7290 7261 41963 7298 7273 41964 7299 7268 41965 7301 7270 41966 7301 7270 41967 7300 7269 41968 7291 7272 41969 7288 7259 41970 7299 7268 41971 7289 7260 41972 7295 8023 41973 7294 7265 41974 7296 7274 41975 7302 7289 41976 7303 7275 41977 7305 7277 41978 7307 7279 41979 7305 7277 41980 7306 7278 41981 7309 7291 41982 7307 7279 41983 7308 7280 41984 7316 8024 41985 7313 7284 41986 7315 7286 41987 7316 8024 41988 7315 7286 41989 7318 7288 41990 7318 7288 41991 7317 7287 41992 7302 7289 41993 7319 8025 41994 7320 7290 41995 7310 7281 41996 7322 7293 41997 7309 7291 41998 7321 7292 41999 7324 7295 42000 7322 7293 42001 7323 7294 42002 7326 7297 42003 7324 7295 42004 7325 7296 42005 7328 8026 42006 7326 7297 42007 7327 7298 42008 7328 8026 42009 7327 7298 42010 7330 7300 42011 7319 8025 42012 7330 7300 42013 7320 7290 42014 7304 7276 42015 7303 7275 42016 7332 7302 42017 7306 7278 42018 7304 7276 42019 7333 7303 42020 7308 7280 42021 7306 7278 42022 7334 7304 42023 7314 7285 42024 7311 7282 42025 7336 7306 42026 7315 7286 42027 7314 7285 42028 7337 7307 42029 7317 7287 42030 7315 7286 42031 7338 7308 42032 7303 7275 42033 7317 7287 42034 7331 7301 42035 7320 7290 42036 7339 7309 42037 7311 7282 42038 7308 7280 42039 7334 7304 42040 7321 7292 42041 7321 7292 42042 7340 7310 42043 7323 7294 42044 7323 7294 42045 7341 7311 42046 7325 7296 42047 7325 7296 42048 7342 7312 42049 7327 7298 42050 7327 7298 42051 7343 7313 42052 7329 7299 42053 7329 7299 42054 7344 7314 42055 7320 7290 42056 7312 7283 42057 7311 7282 42058 7313 7284 42059 7380 7399 42060 7381 7350 42061 7383 7352 42062 7384 7398 42063 7385 7353 42064 7387 7355 42065 7388 7400 42066 7389 7356 42067 7391 7358 42068 7395 7411 42069 7392 7359 42070 7394 7361 42071 7399 7413 42072 7396 7362 42073 7398 7364 42074 7403 7415 42075 7400 7365 42076 7402 7367 42077 7407 7417 42078 7404 7368 42079 7406 7370 42080 7408 7401 42081 7409 7371 42082 7411 7373 42083 7412 7402 42084 7413 7374 42085 7415 7376 42086 7416 7403 42087 7417 7377 42088 7419 7379 42089 7420 7404 42090 7421 7380 42091 7423 7382 42092 7427 7439 42093 7424 7383 42094 7426 7385 42095 7431 7429 42096 7428 7386 42097 7430 7388 42098 7435 7431 42099 7432 7389 42100 7434 7391 42101 7439 7433 42102 7436 7392 42103 7438 7394 42104 7440 7405 42105 7441 7395 42106 7443 7397 42107 7444 8027 42108 7384 7398 42109 7380 7399 42110 7444 8027 42111 7388 7400 42112 7384 7398 42113 7444 8027 42114 7392 7359 42115 7388 7400 42116 7444 8027 42117 7396 7362 42118 7392 7359 42119 7444 8027 42120 7400 7365 42121 7396 7362 42122 7444 8027 42123 7404 7368 42124 7400 7365 42125 7444 8027 42126 7408 7401 42127 7404 7368 42128 7444 8027 42129 7412 7402 42130 7408 7401 42131 7444 8027 42132 7416 7403 42133 7412 7402 42134 7444 8027 42135 7420 7404 42136 7416 7403 42137 7444 8027 42138 7424 7383 42139 7420 7404 42140 7444 8027 42141 7428 7386 42142 7424 7383 42143 7444 8027 42144 7432 7389 42145 7428 7386 42146 7444 8027 42147 7436 7392 42148 7432 7389 42149 7444 8027 42150 7440 7405 42151 7436 7392 42152 7444 8027 42153 7380 7399 42154 7440 7405 42155 7383 7352 42156 7382 7351 42157 7446 7407 42158 7387 7355 42159 7386 7354 42160 7448 7409 42161 7450 7442 42162 7391 7358 42163 7449 7410 42164 7452 7443 42165 7395 7411 42166 7451 7412 42167 7454 7444 42168 7399 7413 42169 7453 7414 42170 7456 7445 42171 7403 7415 42172 7455 7416 42173 7458 7437 42174 7407 7417 42175 7457 7418 42176 7411 7373 42177 7410 7372 42178 7460 7420 42179 7415 7376 42180 7414 7375 42181 7462 7422 42182 7419 7379 42183 7418 7378 42184 7464 7424 42185 7423 7382 42186 7422 7381 42187 7466 7426 42188 7427 7439 42189 7426 7385 42190 7468 7428 42191 7470 7440 42192 7431 7429 42193 7469 7430 42194 7472 7441 42195 7435 7431 42196 7471 7432 42197 7474 7438 42198 7439 7433 42199 7473 7434 42200 7443 7397 42201 7442 7396 42202 7476 7436 42203 7473 7434 42204 7438 7394 42205 7476 7436 42206 7438 7394 42207 7437 7393 42208 7443 7397 42209 7442 7396 42210 7383 7352 42211 7475 7435 42212 7441 7395 42213 7380 7399 42214 7442 7396 42215 7457 7418 42216 7406 7370 42217 7460 7420 42218 7406 7370 42219 7405 7369 42220 7411 7373 42221 7410 7372 42222 7415 7376 42223 7459 7419 42224 7409 7371 42225 7412 7402 42226 7410 7372 42227 7455 7416 42228 7402 7367 42229 7458 7437 42230 7402 7367 42231 7401 7366 42232 7407 7417 42233 7414 7375 42234 7419 7379 42235 7461 7421 42236 7413 7374 42237 7416 7403 42238 7414 7375 42239 7382 7351 42240 7387 7355 42241 7445 7406 42242 7381 7350 42243 7384 7398 42244 7382 7351 42245 7471 7432 42246 7434 7391 42247 7474 7438 42248 7434 7391 42249 7433 7390 42250 7439 7433 42251 7422 7381 42252 7427 7439 42253 7465 7425 42254 7421 7380 42255 7424 7383 42256 7422 7381 42257 7426 7385 42258 7431 7429 42259 7467 7427 42260 7426 7385 42261 7425 7384 42262 7431 7429 42263 7418 7378 42264 7423 7382 42265 7463 7423 42266 7417 7377 42267 7420 7404 42268 7418 7378 42269 7469 7430 42270 7430 7388 42271 7472 7441 42272 7430 7388 42273 7429 7387 42274 7435 7431 42275 7386 7354 42276 7391 7358 42277 7447 7408 42278 7385 7353 42279 7388 7400 42280 7386 7354 42281 7449 7410 42282 7390 7357 42283 7452 7443 42284 7389 7356 42285 7392 7359 42286 7390 7357 42287 7451 7412 42288 7394 7361 42289 7454 7444 42290 7394 7361 42291 7393 7360 42292 7399 7413 42293 7453 7414 42294 7398 7364 42295 7456 7445 42296 7398 7364 42297 7397 7363 42298 7403 7415 42299 7480 7472 42300 7477 7446 42301 7479 7448 42302 7477 7446 42303 7481 7449 42304 7478 7447 42305 7481 7449 42306 7483 7451 42307 7482 7450 42308 7483 7451 42309 7485 7453 42310 7484 7452 42311 7490 7467 42312 7487 7455 42313 7489 7457 42314 7485 7453 42315 7491 7458 42316 7486 7454 42317 7499 7508 42318 7496 7463 42319 7498 7465 42320 7501 7490 42321 7500 7466 42322 7490 7467 42323 7503 7469 42324 7502 7468 42325 7485 7453 42326 7504 7470 42327 7503 7469 42328 7483 7451 42329 7505 7471 42330 7504 7470 42331 7481 7449 42332 7506 7495 42333 7505 7471 42334 7477 7446 42335 7506 7495 42336 7477 7446 42337 7507 7473 42338 7499 7508 42339 7493 7460 42340 7496 7463 42341 7487 7455 42342 7509 7475 42343 7488 7456 42344 7514 7504 42345 7515 7480 42346 7517 7482 42347 7498 7465 42348 7497 7464 42349 7519 7484 42350 7502 7468 42351 7501 7490 42352 7491 7458 42353 7490 7467 42354 7489 7457 42355 7491 7458 42356 7525 7503 42357 7526 7491 42358 7501 7490 42359 7506 7495 42360 7507 7473 42361 7529 7494 42362 7505 7471 42363 7506 7495 42364 7530 7496 42365 7504 7470 42366 7505 7471 42367 7531 7497 42368 7502 7468 42369 7503 7469 42370 7533 7499 42371 7503 7469 42372 7504 7470 42373 7532 7498 42374 7499 7508 42375 7498 7465 42376 7535 7501 42377 7498 7465 42378 7519 7484 42379 7534 7500 42380 7501 7490 42381 7502 7468 42382 7525 7503 42383 7487 7455 42384 7500 7466 42385 7517 7482 42386 7538 7507 42387 7522 7487 42388 7537 7505 42389 7509 7475 42390 7511 7477 42391 7510 7476 42392 7526 7491 42393 7538 7507 42394 7527 7492 42395 7499 7508 42396 7535 7501 42397 7507 7473 42398 7507 7473 42399 7480 7472 42400 7499 7508 42401 7479 7448 42402 7494 7461 42403 7480 7472 42404 7543 7513 42405 7540 7509 42406 7542 7511 42407 7545 7515 42408 7544 7512 42409 7543 7513 42410 7547 7517 42411 7546 7514 42412 7545 7515 42413 7549 7522 42414 7548 7516 42415 7547 7517 42416 7550 7561 42417 7551 7518 42418 7553 7520 42419 7555 7566 42420 7554 7521 42421 7549 7522 42422 7550 7561 42423 7561 7528 42424 7551 7518 42425 7554 7521 42426 7563 7530 42427 7548 7516 42428 7548 7516 42429 7564 7531 42430 7546 7514 42431 7546 7514 42432 7565 7532 42433 7544 7512 42434 7544 7512 42435 7566 7533 42436 7540 7509 42437 7540 7509 42438 7567 7534 42439 7541 7510 42440 7550 7561 42441 7553 7520 42442 7570 7537 42443 7576 7564 42444 7573 7540 42445 7575 7542 42446 7577 7567 42447 7578 7543 42448 7559 7526 42449 7577 7567 42450 7579 7544 42451 7578 7543 42452 7556 7523 42453 7580 7545 42454 7581 7546 42455 7551 7518 42456 7562 7529 42457 7554 7521 42458 7555 7566 42459 7552 7519 42460 7554 7521 42461 7585 7560 42462 7562 7529 42463 7587 7551 42464 7589 7565 42465 7568 7535 42466 7588 7552 42467 7588 7552 42468 7567 7534 42469 7590 7553 42470 7590 7553 42471 7566 7533 42472 7591 7554 42473 7593 7556 42474 7564 7531 42475 7592 7555 42476 7591 7554 42477 7565 7532 42478 7593 7556 42479 7595 7559 42480 7578 7543 42481 7594 7557 42482 7560 7527 42483 7578 7543 42484 7596 7558 42485 7592 7555 42486 7563 7530 42487 7585 7560 42488 7561 7528 42489 7550 7561 42490 7573 7540 42491 7584 7549 42492 7583 7548 42493 7598 7563 42494 7570 7537 42495 7569 7536 42496 7571 7538 42497 7598 7563 42498 7597 7562 42499 7586 7550 42500 7594 7557 42501 7580 7545 42502 7589 7565 42503 7541 7510 42504 7568 7535 42505 7556 7523 42506 7542 7511 42507 7541 7510 42508 7558 7525 42509 7543 7513 42510 7542 7511 42511 7478 7447 42512 7543 7513 42513 7478 7447 42514 7545 7515 42515 7545 7515 42516 7482 7450 42517 7547 7517 42518 7547 7517 42519 7484 7452 42520 7549 7522 42521 7552 7519 42522 7489 7457 42523 7553 7520 42524 7549 7522 42525 7486 7454 42526 7555 7566 42527 7557 7524 42528 7495 7462 42529 7558 7525 42530 7561 7528 42531 7500 7466 42532 7562 7529 42533 7553 7520 42534 7488 7456 42535 7569 7536 42536 7550 7561 42537 7570 7537 42538 7487 7455 42539 7574 7541 42540 7517 7482 42541 7575 7542 42542 7576 7564 42543 7515 7480 42544 7573 7540 42545 7577 7567 42546 7559 7526 42547 7497 7464 42548 7579 7544 42549 7577 7567 42550 7496 7463 42551 7579 7544 42552 7496 7463 42553 7581 7546 42554 7557 7524 42555 7582 7547 42556 7495 7462 42557 7555 7566 42558 7492 7459 42559 7552 7519 42560 7586 7550 42561 7562 7529 42562 7527 7492 42563 7587 7551 42564 7526 7491 42565 7585 7560 42566 7589 7565 42567 7588 7552 42568 7528 7493 42569 7588 7552 42570 7590 7553 42571 7529 7494 42572 7590 7553 42573 7591 7554 42574 7530 7496 42575 7592 7555 42576 7533 7499 42577 7593 7556 42578 7593 7556 42579 7532 7498 42580 7591 7554 42581 7594 7557 42582 7535 7501 42583 7595 7559 42584 7595 7559 42585 7534 7500 42586 7596 7558 42587 7592 7555 42588 7585 7560 42589 7533 7499 42590 7574 7541 42591 7550 7561 42592 7517 7482 42593 7561 7528 42594 7573 7540 42595 7500 7466 42596 7583 7548 42597 7522 7487 42598 7597 7562 42599 7584 7549 42600 7598 7563 42601 7524 7489 42602 7569 7536 42603 7510 7476 42604 7572 7539 42605 7570 7537 42606 7571 7538 42607 7509 7475 42608 7581 7546 42609 7508 7474 42610 7582 7547 42611 7597 7562 42612 7538 7507 42613 7587 7551 42614 7598 7563 42615 7586 7550 42616 7537 7505 42617 7589 7565 42618 7528 7493 42619 7594 7557 42620 7558 7525 42621 7494 7461 42622 7542 7511 42623</p>\r\n        </polylist>\r\n        <polylist material=\"lambert25SG_001-material\" count=\"2220\">\r\n          <input semantic=\"VERTEX\" source=\"#Elf01_posed_002-mesh-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#Elf01_posed_002-mesh-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#Elf01_posed_002-mesh-map\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>\r\n          <p>3875 3868 12087 3876 3869 12088 3877 3870 12089 3876 3869 12090 3879 3871 12091 3880 3872 12092 3879 3871 12093 3881 3873 12094 3882 3874 12095 3881 3873 12096 3883 3875 12097 3884 3876 12098 3878 3877 12099 3885 3878 12100 3886 3879 12101 3875 3868 12102 3887 3880 12103 3888 3881 12104 3876 3869 12105 3888 3881 12106 3889 3882 12107 3879 3871 12108 3889 3882 12109 3890 3883 12110 3891 3884 12111 3883 3875 12112 3881 3873 12113 3892 3885 12114 3893 3886 12115 3894 3887 12116 3893 3886 12117 3896 3888 12118 3897 3889 12119 3896 3888 12120 3898 3890 12121 3899 3891 12122 3898 3890 12123 3900 3892 12124 3901 3893 12125 3886 3879 12126 3902 3894 12127 3887 3880 12128 3903 3895 12129 3892 3885 12130 3895 3896 12131 3886 3879 12132 3885 3878 12133 3905 3897 12134 3882 3874 12135 3884 3876 12136 3900 3892 12137 3880 3872 12138 3882 3874 12139 3898 3890 12140 3877 3870 12141 3880 3872 12142 3896 3888 12143 3878 3877 12144 3877 3870 12145 3893 3886 12146 3885 3878 12147 3878 3877 12148 3892 3885 12149 3903 3895 12150 3904 3898 12151 3905 3897 12152 3897 3889 12153 3906 3899 12154 3907 3900 12155 3899 3891 12156 3908 3901 12157 3906 3899 12158 3901 3893 12159 3909 3902 12160 3908 3901 12161 3904 3898 12162 3895 3896 12163 3910 3903 12164 3910 3903 12165 3895 3896 12166 3894 3887 12167 3909 3902 12168 3891 3884 12169 3890 3883 12170 3908 3901 12171 3890 3883 12172 3889 3882 12173 3906 3899 12174 3889 3882 12175 3888 3881 12176 3887 3880 12177 3910 3903 12178 3907 3900 12179 3910 3903 12180 3887 3880 12181 3902 3894 12182 3911 3904 12183 3912 3905 12184 3913 3906 12185 3914 3907 12186 3913 3906 12187 3915 3908 12188 3916 3909 12189 3915 3908 12190 3917 3910 12191 3918 3911 12192 3917 3910 12193 3884 3876 12194 3919 3912 12195 3920 3913 12196 3912 3905 12197 3921 3914 12198 3922 3915 12199 3911 3904 12200 3923 3916 12201 3921 3914 12202 3914 3907 12203 3924 3917 12204 3923 3916 12205 3916 3909 12206 3891 3884 12207 3924 3917 12208 3918 3911 12209 3925 3918 12210 3926 3919 12211 3927 3920 12212 3928 3921 12213 3927 3920 12214 3929 3922 12215 3930 3923 12216 3929 3922 12217 3931 3924 12218 3932 3925 12219 3931 3924 12220 3901 3893 12221 3922 3915 12222 3933 3926 12223 3919 3912 12224 3934 3927 12225 3935 3928 12226 3926 3919 12227 3919 3912 12228 3933 3926 12229 3936 3929 12230 3917 3910 12231 3932 3925 12232 3900 3892 12233 3915 3908 12234 3930 3923 12235 3932 3925 12236 3913 3906 12237 3928 3921 12238 3930 3923 12239 3912 3905 12240 3925 3918 12241 3928 3921 12242 3920 3913 12243 3934 3927 12244 3925 3918 12245 3936 3929 12246 3935 3928 12247 3934 3927 12248 3937 3930 12249 3938 3931 12250 3929 3922 12251 3938 3931 12252 3939 3932 12253 3931 3924 12254 3939 3932 12255 3909 3902 12256 3901 3893 12257 3935 3928 12258 3936 3929 12259 3940 3933 12260 3927 3920 12261 3926 3919 12262 3940 3933 12263 3924 3917 12264 3891 3884 12265 3909 3902 12266 3923 3916 12267 3924 3917 12268 3939 3932 12269 3921 3914 12270 3923 3916 12271 3938 3931 12272 3937 3930 12273 3940 3933 12274 3922 3915 12275 3933 3926 12276 3922 3915 12277 3940 3933 12278 3942 3934 12279 3943 3935 12280 3944 3936 12281 3942 3934 12282 3945 3937 12283 3943 3935 12284 3946 3938 12285 3947 3939 12286 3948 3940 12287 3947 3939 12288 3945 3937 12289 3948 3940 12290 3949 3941 12291 3948 3940 12292 3950 3942 12293 3948 3940 12294 3945 3937 12295 3950 3942 12296 3943 3935 12297 3947 3939 12298 3946 3938 12299 3943 3935 12300 3945 3937 12301 3947 3939 12302 3951 3943 12303 3950 3942 12304 3952 3944 12305 3950 3942 12306 3945 3937 12307 3952 3944 12308 3953 3945 12309 3952 3944 12310 3954 3946 12311 3952 3944 12312 3945 3937 12313 3954 3946 12314 3955 3947 12315 3954 3946 12316 3956 3948 12317 3954 3946 12318 3945 3937 12319 3956 3948 12320 3958 3949 12321 3959 3950 12322 3960 3951 12323 3957 3952 12324 3956 3948 12325 3961 3953 12326 3956 3948 12327 3945 3937 12328 3961 3953 12329 3962 3954 12330 3961 3953 12331 3958 3949 12332 3961 3953 12333 3945 3937 12334 3958 3949 12335 3963 3955 12336 3964 3956 12337 3965 3957 12338 3968 3958 12339 3965 3957 12340 3964 3956 12341 3970 3959 12342 3971 3960 12343 3972 3961 12344 3973 3962 12345 3971 3960 12346 3970 3959 12347 3975 3963 12348 3976 3964 12349 3977 3965 12350 3972 3961 12351 3977 3965 12352 3976 3964 12353 3974 3966 12354 3979 3967 12355 3980 3968 12356 3981 3969 12357 3980 3968 12358 3979 3967 12359 3982 3970 12360 3983 3971 12361 3984 3972 12362 3966 3973 12363 3984 3972 12364 3983 3971 12365 3978 3974 12366 3977 3965 12367 3985 3975 12368 3987 3976 12369 3985 3975 12370 3977 3965 12371 3972 3961 12372 3971 3960 12373 3988 3977 12374 3988 3977 12375 3971 3960 12376 3973 3962 12377 3989 3978 12378 3973 3962 12379 3980 3968 12380 3990 3979 12381 3980 3968 12382 3981 3969 12383 3991 3980 12384 3981 3969 12385 3984 3972 12386 3992 3981 12387 3984 3972 12388 3966 3973 12389 3993 3982 12390 3966 3973 12391 3965 3957 12392 3968 3958 12393 3995 3983 12394 3994 3984 12395 3955 3947 12396 3996 3985 12397 3997 3986 12398 3978 3974 12399 3997 3986 12400 3996 3985 12401 3953 3945 12402 3997 3986 12403 3998 3987 12404 3986 3988 12405 3998 3987 12406 3997 3986 12407 4000 3989 12408 4001 3990 12409 4002 3991 12410 4003 3992 12411 4004 3993 12412 4001 3990 12413 4006 3994 12414 4007 3995 12415 4008 3996 12416 4007 3995 12417 4006 3994 12418 4010 3997 12419 4011 3998 12420 4012 3999 12421 4013 4000 12422 4008 3996 12423 4013 4000 12424 4012 3999 12425 4009 4001 12426 4010 3997 12427 4015 4002 12428 4016 4003 12429 4015 4002 12430 4018 4004 12431 4017 4005 12432 4018 4004 12433 4019 4006 12434 3999 4007 12435 4002 3991 12436 4020 4008 12437 4014 4009 12438 4013 4000 12439 3976 3964 12440 3976 3964 12441 4013 4000 12442 4008 3996 12443 3969 4010 12444 4008 3996 12445 4007 3995 12446 3970 3959 12447 4007 3995 12448 4009 4001 12449 3974 3966 12450 4009 4001 12451 4016 4003 12452 4021 4011 12453 4016 4003 12454 4017 4005 12455 4022 4012 12456 4017 4005 12457 4020 4008 12458 4024 4013 12459 4023 4014 12460 4020 4008 12461 4002 3991 12462 4001 3990 12463 4025 4015 12464 4026 4016 12465 4025 4015 12466 4001 3990 12467 3962 3954 12468 4027 4017 12469 4028 4018 12470 4014 4009 12471 4028 4018 12472 4027 4017 12473 3957 3952 12474 4028 4018 12475 3996 3985 12476 3975 3963 12477 3996 3985 12478 4028 4018 12479 4029 4019 12480 4030 4020 12481 4031 4021 12482 4032 4022 12483 4033 4023 12484 4034 4024 12485 4035 4025 12486 4036 4026 12487 4037 4027 12488 4038 4028 12489 4039 4029 12490 4040 4030 12491 3959 3950 12492 4041 4031 12493 3960 3951 12494 4042 4032 12495 4043 4033 12496 4044 4034 12497 4011 3998 12498 4027 4017 12499 4041 4031 12500 3960 3951 12501 4041 4031 12502 4027 4017 12503 4037 4027 12504 4036 4026 12505 4012 3999 12506 4005 4035 12507 4012 3999 12508 4036 4026 12509 4034 4024 12510 4033 4023 12511 4006 3994 12512 4010 3997 12513 4006 3994 12514 4033 4023 12515 4040 4030 12516 4039 4029 12517 4015 4002 12518 4018 4004 12519 4015 4002 12520 4039 4029 12521 4044 4034 12522 4043 4033 12523 4045 4036 12524 4046 4037 12525 4045 4036 12526 4043 4033 12527 4048 4038 12528 4031 4021 12529 4049 4039 12530 4051 4040 12531 4049 4039 12532 4031 4021 12533 4052 4041 12534 4053 4042 12535 4047 4043 12536 4047 4043 12537 4053 4042 12538 4054 4044 12539 4050 4045 12540 4054 4044 12541 4053 4042 12542 4055 4046 12543 4056 4047 12544 4057 4048 12545 4058 4049 12546 4057 4048 12547 4060 4050 12548 4061 4051 12549 4062 4052 12550 4063 4053 12551 4065 4054 12552 4063 4053 12553 4062 4052 12554 4066 4055 12555 4067 4056 12556 4068 4057 12557 4069 4058 12558 4068 4057 12559 4067 4056 12560 4072 4059 12561 4073 4060 12562 4074 4061 12563 4061 4051 12564 4064 4062 12565 4073 4060 12566 4059 4063 12567 4060 4050 12568 4075 4064 12569 4071 4065 12570 4074 4061 12571 4076 4066 12572 4065 4054 12573 4068 4057 12574 3985 3975 12575 3986 3988 12576 3985 3975 12577 4068 4057 12578 4064 4062 12579 4063 4053 12580 3988 3977 12581 3987 3976 12582 3988 3977 12583 4063 4053 12584 4073 4060 12585 4078 4067 12586 4079 4068 12587 4064 4062 12588 4077 4069 12589 4078 4067 12590 4059 4063 12591 4076 4066 12592 4080 4070 12593 4079 4068 12594 4080 4070 12595 4076 4066 12596 4055 4046 12597 4058 4049 12598 4083 4071 12599 4081 4072 12600 4083 4071 12601 4058 4049 12602 4069 4058 12603 4084 4073 12604 3998 3987 12605 3951 3943 12606 3998 3987 12607 4084 4073 12608 4070 4074 12609 4085 4075 12610 4084 4073 12611 3949 3941 12612 4084 4073 12613 4085 4075 12614 4087 4076 12615 4088 4077 12616 4089 4078 12617 4090 4079 12618 4089 4078 12619 4088 4077 12620 4093 4080 12621 4094 4081 12622 4095 4082 12623 4094 4081 12624 4093 4080 12625 4097 4083 12626 4096 4084 12627 4097 4083 12628 4098 4085 12629 4100 4086 12630 4099 4087 12631 4098 4085 12632 4103 4088 12633 4104 4089 12634 4105 4090 12635 4092 4091 12636 4095 4082 12637 4104 4089 12638 4106 4092 12639 4107 4093 12640 4108 4094 12641 4107 4093 12642 3945 3937 12643 4108 4094 12644 4111 4095 12645 4112 4096 12646 4113 4097 12647 4102 4098 12648 4105 4090 12649 4112 4096 12650 4114 4099 12651 4115 4100 12652 4116 4101 12653 4118 4102 12654 4116 4101 12655 4115 4100 12656 4121 4103 12657 4122 4104 12658 4123 4105 12659 4117 4106 12660 4122 4104 12661 4121 4103 12662 4125 4107 12663 4126 4108 12664 4127 4109 12665 4120 4110 12666 4123 4105 12667 4126 4108 12668 4128 4111 12669 4129 4112 12670 4130 4113 12671 4127 4109 12672 4130 4113 12673 4129 4112 12674 4132 4114 12675 4133 4115 12676 4134 4116 12677 4136 4117 12678 4135 4118 12679 4134 4116 12680 4137 4119 12681 4138 4120 12682 4139 4121 12683 4131 4122 12684 4139 4121 12685 4138 4120 12686 4091 4123 12687 4140 4124 12688 4141 4125 12689 4113 4097 12690 4141 4125 12691 4140 4124 12692 4119 4126 12693 4142 4127 12694 4143 4128 12695 3941 4129 12696 3944 3936 12697 4143 4128 12698 4101 4130 12699 4144 4131 12700 4145 4132 12701 4109 4133 12702 4145 4132 12703 4144 4131 12704 4146 4134 12705 4147 4135 12706 4148 4136 12707 4149 4137 12708 4148 4136 12709 4151 4138 12710 4152 4139 12711 4153 4140 12712 4154 4141 12713 4156 4142 12714 4154 4141 12715 4153 4140 12716 4156 4142 12717 4157 4143 12718 4158 4144 12719 4159 4145 12720 4158 4144 12721 4161 4146 12722 4163 4147 12723 4164 4148 12724 4165 4149 12725 4152 4139 12726 4155 4150 12727 4164 4148 12728 4167 4151 12729 4168 4152 12730 4169 4153 12731 4167 4151 12732 3945 3937 12733 4168 4152 12734 4150 4154 12735 4151 4138 12736 4170 4155 12737 4162 4156 12738 4165 4149 12739 4171 4157 12740 4168 4152 12741 4107 4093 12742 4106 4092 12743 4168 4152 12744 3945 3937 12745 4107 4093 12746 4159 4145 12747 4098 4085 12748 4097 4083 12749 4098 4085 12750 4159 4145 12751 4160 4158 12752 4154 4141 12753 4093 4080 12754 4092 4091 12755 4156 4142 12756 4097 4083 12757 4093 4080 12758 4165 4149 12759 4164 4148 12760 4103 4088 12761 4155 4150 12762 4092 4091 12763 4103 4088 12764 4150 4154 12765 4171 4157 12766 4172 4159 12767 4102 4098 12768 4172 4159 12769 4171 4157 12770 4146 4134 12771 4149 4137 12772 4175 4160 12773 4173 4161 12774 4175 4160 12775 4149 4137 12776 4160 4158 12777 4176 4162 12778 4144 4131 12779 4106 4092 12780 4144 4131 12781 4176 4162 12782 4160 4158 12783 4161 4146 12784 4177 4163 12785 4166 4164 12786 4169 4153 12787 4176 4162 12788 4108 4094 12789 3942 3934 12790 3941 4129 12791 4108 4094 12792 3945 3937 12793 3942 3934 12794 4100 4086 12795 4145 4132 12796 4142 4127 12797 3941 4129 12798 4142 4127 12799 4145 4132 12800 4096 4084 12801 4099 4087 12802 4115 4100 12803 4119 4126 12804 4115 4100 12805 4099 4087 12806 4094 4081 12807 4121 4103 12808 4120 4110 12809 4096 4084 12810 4114 4099 12811 4121 4103 12812 4104 4089 12813 4125 4107 12814 4124 4165 12815 4095 4082 12816 4120 4110 12817 4125 4107 12818 4113 4097 12819 4112 4096 12820 4129 4112 12821 4105 4090 12822 4124 4165 12823 4129 4112 12824 4090 4079 12825 4141 4125 12826 4138 4120 12827 4128 4111 12828 4138 4120 12829 4141 4125 12830 4086 4166 12831 4089 4078 12832 4134 4116 12833 4137 4119 12834 4134 4116 12835 4089 4078 12836 4118 4102 12837 4143 4128 12838 4085 4075 12839 3944 3936 12840 3946 3938 12841 4085 4075 12842 4117 4106 12843 4116 4101 12844 4067 4056 12845 4070 4074 12846 4067 4056 12847 4116 4101 12848 4123 4105 12849 4122 4104 12850 4062 4052 12851 4066 4055 12852 4062 4052 12853 4122 4104 12854 4126 4108 12855 4072 4059 12856 4071 4065 12857 4123 4105 12858 4061 4051 12859 4072 4059 12860 4131 4122 12861 4130 4113 12862 4178 4167 12863 4071 4065 12864 4178 4167 12865 4130 4113 12866 4136 4117 12867 4139 4121 12868 4180 4168 12869 4179 4169 12870 4180 4168 12871 4139 4121 12872 4182 4170 12873 4132 4114 12874 4135 4118 12875 4181 4171 12876 4183 4172 12877 4135 4118 12878 4184 4173 12879 4185 4174 12880 4186 4175 12881 4187 4176 12882 4186 4175 12883 4189 4177 12884 4191 4178 12885 4192 4179 12886 4193 4180 12887 4192 4179 12888 4191 4178 12889 4195 4181 12890 4194 4182 12891 4195 4181 12892 4196 4183 12893 4197 4184 12894 4196 4183 12895 4199 4185 12896 4201 4186 12897 4202 4187 12898 4203 4188 12899 4190 4189 12900 4193 4180 12901 4202 4187 12902 4205 4190 12903 4206 4191 12904 4207 4192 12905 4205 4190 12906 3945 3937 12907 4206 4191 12908 4188 4193 12909 4189 4177 12910 4208 4194 12911 4200 4195 12912 4203 4188 12913 4209 4196 12914 4206 4191 12915 4167 4151 12916 4166 4164 12917 4206 4191 12918 3945 3937 12919 4167 4151 12920 4197 4184 12921 4158 4144 12922 4157 4143 12923 4158 4144 12924 4197 4184 12925 4198 4197 12926 4193 4180 12927 4192 4179 12928 4153 4140 12929 4157 4143 12930 4153 4140 12931 4192 4179 12932 4203 4188 12933 4202 4187 12934 4211 4198 12935 4210 4199 12936 4211 4198 12937 4202 4187 12938 4188 4193 12939 4209 4196 12940 4213 4200 12941 4212 4201 12942 4213 4200 12943 4209 4196 12944 4184 4173 12945 4187 4176 12946 4216 4202 12947 4214 4203 12948 4216 4202 12949 4187 4176 12950 4161 4146 12951 4198 4197 12952 4217 4204 12953 4207 4192 12954 4166 4164 12955 4177 4163 12956 4198 4197 12957 4199 4185 12958 4218 4205 12959 4204 4206 12960 4207 4192 12961 4217 4204 12962 4220 4207 12963 4221 4208 12964 4222 4209 12965 4222 4209 12966 4221 4208 12967 4224 4210 12968 4226 4211 12969 4227 4212 12970 4228 4213 12971 4227 4212 12972 4226 4211 12973 4230 4214 12974 4229 4215 12975 4230 4214 12976 4231 4216 12977 4233 4217 12978 4232 4218 12979 4231 4216 12980 4236 4219 12981 4237 4220 12982 4238 4221 12983 4225 4222 12984 4228 4213 12985 4237 4220 12986 4240 4223 12987 4241 4224 12988 4242 4225 12989 4240 4223 12990 3945 3937 12991 4241 4224 12992 4223 4226 12993 4224 4210 12994 4243 4227 12995 4235 4228 12996 4238 4221 12997 4244 4229 12998 4241 4224 12999 4205 4190 13000 4204 4206 13001 4241 4224 13002 3945 3937 13003 4205 4190 13004 4229 4215 13005 4232 4218 13006 4196 4183 13007 4196 4183 13008 4232 4218 13009 4233 4217 13010 4228 4213 13011 4227 4212 13012 4191 4178 13013 4195 4181 13014 4191 4178 13015 4227 4212 13016 4238 4221 13017 4237 4220 13018 4245 4230 13019 4190 4189 13020 4245 4230 13021 4237 4220 13022 4223 4226 13023 4244 4229 13024 4247 4231 13025 4238 4221 13026 4246 4232 13027 4247 4231 13028 4219 4233 13029 4222 4209 13030 4250 4234 13031 4248 4235 13032 4250 4234 13033 4222 4209 13034 4199 4185 13035 4233 4217 13036 4251 4236 13037 4242 4225 13038 4204 4206 13039 4218 4205 13040 4233 4217 13041 4234 4237 13042 4252 4238 13043 4239 4239 13044 4242 4225 13045 4251 4236 13046 4253 4240 13047 4254 4241 13048 4255 4242 13049 4256 4243 13050 4257 4244 13051 4258 4245 13052 4259 4246 13053 4260 4247 13054 4261 4248 13055 4262 4249 13056 4263 4250 13057 4264 4251 13058 4265 4252 13059 4261 4248 13060 4260 4247 13061 4266 4253 13062 4267 4254 13063 4268 4255 13064 4252 4238 13065 4265 4252 13066 4269 4256 13067 4265 4252 13068 4252 4238 13069 4234 4237 13070 4259 4246 13071 4231 4216 13072 4230 4214 13073 4261 4248 13074 4234 4237 13075 4231 4216 13076 4256 4243 13077 4226 4211 13078 4225 4222 13079 4270 4257 13080 4230 4214 13081 4226 4211 13082 4263 4250 13083 4262 4249 13084 4236 4219 13085 4257 4244 13086 4225 4222 13087 4236 4219 13088 4266 4253 13089 4271 4258 13090 4272 4259 13091 4263 4250 13092 4235 4228 13093 4271 4258 13094 4273 4260 13095 4274 4261 13096 4253 4240 13097 4275 4262 13098 4253 4240 13099 4255 4242 13100 4277 4263 13101 4268 4255 13102 4267 4254 13103 4276 4264 13104 4255 4242 13105 4277 4263 13106 4267 4254 13107 4272 4259 13108 4278 4265 13109 4279 4266 13110 3945 3937 13111 4280 4267 13112 4239 4239 13113 4269 4256 13114 4280 4267 13115 4280 4267 13116 3945 3937 13117 4240 4223 13118 4281 4268 13119 4282 4269 13120 4030 4020 13121 4032 4022 13122 4283 4270 13123 4284 4271 13124 4035 4025 13125 4285 4272 13126 4283 4270 13127 4038 4028 13128 4284 4271 13129 4286 4273 13130 4042 4032 13131 4286 4273 13132 4287 4274 13133 4287 4274 13134 4281 4268 13135 4029 4019 13136 4288 4275 13137 4285 4272 13138 4035 4025 13139 4289 4276 13140 4288 4275 13141 3959 3950 13142 4282 4269 13143 4290 4277 13144 4291 4278 13145 4292 4279 13146 4293 4280 13147 4294 4281 13148 4296 4282 13149 4297 4283 13150 4293 4280 13151 4299 4284 13152 4297 4283 13153 4296 4282 13154 4301 4285 13155 4299 4284 13156 4298 4286 13157 4303 4287 13158 4301 4285 13159 4300 4288 13160 4305 4289 13161 4303 4287 13162 4302 4290 13163 4307 4291 13164 4305 4289 13165 4304 4292 13166 4309 4293 13167 4307 4291 13168 4306 4294 13169 4311 4295 13170 4309 4293 13171 4308 4296 13172 4282 4269 13173 4312 4297 13174 4313 4298 13175 4314 4299 13176 4312 4297 13177 4282 4269 13178 4315 4300 13179 4314 4299 13180 4281 4268 13181 4316 4301 13182 4315 4300 13183 4287 4274 13184 4317 4302 13185 4318 4303 13186 4319 4304 13187 4320 4305 13188 4321 4306 13189 4318 4303 13190 4322 4307 13191 4323 4308 13192 4283 4270 13193 4288 4275 13194 4324 4309 13195 4322 4307 13196 4325 4310 13197 4324 4309 13198 4288 4275 13199 4326 4311 13200 4327 4312 13201 4291 4278 13202 4295 4313 13203 4294 4281 13204 4328 4314 13205 4330 4315 13206 4326 4311 13207 4290 4277 13208 4331 4316 13209 4332 4317 13210 4328 4314 13211 4333 4318 13212 4334 4319 13213 4332 4317 13214 4333 4318 13215 4291 4278 13216 4327 4312 13217 4336 4320 13218 4337 4321 13219 4338 4322 13220 4339 4323 13221 4340 4324 13222 4341 4325 13223 4344 4326 13224 4336 4320 13225 4335 4327 13226 4346 4328 13227 4341 4325 13228 4340 4324 13229 4348 4329 13230 4346 4328 13231 4345 4330 13232 4337 4321 13233 4348 4329 13234 4347 4331 13235 4350 4332 13236 4351 4333 13237 4352 4334 13238 4354 4335 13239 4350 4332 13240 4349 4336 13241 4355 4337 13242 4356 4338 13243 4354 4335 13244 4358 4339 13245 4359 4340 13246 4360 4341 13247 4362 4342 13248 4359 4340 13249 4358 4339 13250 4351 4333 13251 4362 4342 13252 4361 4343 13253 4364 4344 13254 4365 4345 13255 4366 4346 13256 4368 4347 13257 4364 4344 13258 4363 4348 13259 4369 4349 13260 4370 4350 13261 4368 4347 13262 4372 4351 13263 4373 4352 13264 4374 4353 13265 4376 4354 13266 4373 4352 13267 4372 4351 13268 4365 4345 13269 4376 4354 13270 4375 4355 13271 4378 4356 13272 4379 4357 13273 4380 4358 13274 4382 4359 13275 4378 4356 13276 4377 4360 13277 4383 4361 13278 4384 4362 13279 4382 4359 13280 4386 4363 13281 4387 4364 13282 4388 4365 13283 4390 4366 13284 4387 4364 13285 4386 4363 13286 4379 4357 13287 4390 4366 13288 4389 4367 13289 4392 4368 13290 4393 4369 13291 4394 4370 13292 4396 4371 13293 4392 4368 13294 4391 4372 13295 4397 4373 13296 4398 4374 13297 4396 4371 13298 4399 4375 13299 4400 4376 13300 4401 4377 13301 4404 4378 13302 4405 4379 13303 4406 4380 13304 4393 4369 13305 4407 4381 13306 4408 4382 13307 4395 4383 13308 4391 4372 13309 4337 4321 13310 4397 4373 13311 4395 4383 13312 4336 4320 13313 4342 4384 13314 4341 4325 13315 4400 4376 13316 4408 4382 13317 4400 4376 13318 4341 4325 13319 4394 4370 13320 4408 4382 13321 4346 4328 13322 4391 4372 13323 4394 4370 13324 4348 4329 13325 4377 4360 13326 4380 4358 13327 4393 4369 13328 4381 4385 13329 4377 4360 13330 4392 4368 13331 4398 4374 13332 4383 4361 13333 4381 4385 13334 4401 4377 13335 4386 4363 13336 4385 4386 13337 4409 4387 13338 4410 4388 13339 4405 4379 13340 4380 4358 13341 4389 4367 13342 4407 4381 13343 4363 4348 13344 4366 4346 13345 4379 4357 13346 4367 4389 13347 4363 4348 13348 4378 4356 13349 4384 4362 13350 4369 4349 13351 4367 4389 13352 4387 4364 13353 4372 4351 13354 4371 4390 13355 4375 4355 13356 4372 4351 13357 4387 4364 13358 4366 4346 13359 4375 4355 13360 4390 4366 13361 4349 4336 13362 4352 4334 13363 4365 4345 13364 4353 4391 13365 4349 4336 13366 4364 4344 13367 4370 4350 13368 4355 4337 13369 4353 4391 13370 4373 4352 13371 4358 4339 13372 4357 4392 13373 4361 4343 13374 4358 4339 13375 4373 4352 13376 4352 4334 13377 4361 4343 13378 4376 4354 13379 4411 4393 13380 4412 4394 13381 4293 4280 13382 4412 4394 13383 4331 4316 13384 4294 4281 13385 4310 4395 13386 4308 4296 13387 4324 4309 13388 4324 4309 13389 4308 4296 13390 4306 4294 13391 4306 4294 13392 4304 4292 13393 4323 4308 13394 4413 4396 13395 4414 4397 13396 4318 4303 13397 4318 4303 13398 4415 4398 13399 4416 4399 13400 4300 4288 13401 4298 4286 13402 4315 4300 13403 4298 4286 13404 4296 4282 13405 4314 4299 13406 4314 4299 13407 4296 4282 13408 4292 4279 13409 4312 4297 13410 4292 4279 13411 4295 4313 13412 4313 4298 13413 4295 4313 13414 4329 4400 13415 4343 4401 13416 4339 4323 13417 4342 4384 13418 4344 4326 13419 4342 4384 13420 4399 4375 13421 4399 4375 13422 4402 4402 13423 4398 4374 13424 4402 4402 13425 4385 4386 13426 4383 4361 13427 4385 4386 13428 4388 4365 13429 4384 4362 13430 4388 4365 13431 4371 4390 13432 4369 4349 13433 4371 4390 13434 4374 4353 13435 4370 4350 13436 4374 4353 13437 4357 4392 13438 4355 4337 13439 4357 4392 13440 4360 4341 13441 4356 4338 13442 4411 4393 13443 4417 4403 13444 4418 4404 13445 4417 4403 13446 4029 4019 13447 4030 4020 13448 4331 4316 13449 4412 4394 13450 4418 4404 13451 4418 4404 13452 4030 4020 13453 4291 4278 13454 4403 4405 13455 4406 4380 13456 4400 4376 13457 4406 4380 13458 4405 4379 13459 4401 4377 13460 4407 4381 13461 4404 4378 13462 4403 4405 13463 4401 4377 13464 4405 4379 13465 4410 4388 13466 4389 4367 13467 4409 4387 13468 4404 4378 13469 4386 4363 13470 4419 4406 13471 4420 4407 13472 4389 4367 13473 4420 4407 13474 4421 4408 13475 4421 4408 13476 4422 4409 13477 4410 4388 13478 4422 4409 13479 4419 4406 13480 4386 4363 13481 4424 4410 13482 4425 4411 13483 4426 4412 13484 4427 4413 13485 4428 4414 13486 4424 4410 13487 4430 4415 13488 4428 4414 13489 4427 4413 13490 4426 4412 13491 4425 4411 13492 4430 4415 13493 4423 4416 13494 4426 4412 13495 4422 4409 13496 4420 4407 13497 4427 4413 13498 4423 4416 13499 4429 4417 13500 4427 4413 13501 4420 4407 13502 4426 4412 13503 4429 4417 13504 4419 4406 13505 4425 4411 13506 4431 4418 13507 4432 4419 13508 4433 4420 13509 4431 4418 13510 4425 4411 13511 4428 4414 13512 4434 4421 13513 4433 4420 13514 4432 4419 13515 4434 4421 13516 4428 4414 13517 4299 4284 13518 4435 4422 13519 4411 4393 13520 4435 4422 13521 4436 4423 13522 4417 4403 13523 4417 4403 13524 4436 4423 13525 4052 4041 13526 4301 4285 13527 4437 4424 13528 4435 4422 13529 4437 4424 13530 4438 4425 13531 4436 4423 13532 4436 4423 13533 4438 4425 13534 4042 4032 13535 4284 4271 13536 4439 4426 13537 4440 4427 13538 4440 4427 13539 4441 4428 13540 4316 4301 13541 4442 4429 13542 4439 4426 13543 4284 4271 13544 4443 4430 13545 4442 4429 13546 4283 4270 13547 4302 4290 13548 4444 4431 13549 4445 4432 13550 4304 4292 13551 4445 4432 13552 4443 4430 13553 4316 4301 13554 4441 4428 13555 4446 4433 13556 4446 4433 13557 4444 4431 13558 4302 4290 13559 4447 4434 13560 4448 4435 13561 4440 4427 13562 4448 4435 13563 4449 4436 13564 4441 4428 13565 4450 4437 13566 4447 4434 13567 4439 4426 13568 4443 4430 13569 4451 4438 13570 4450 4437 13571 4444 4431 13572 4452 4439 13573 4453 4440 13574 4445 4432 13575 4453 4440 13576 4451 4438 13577 4441 4428 13578 4449 4436 13579 4454 4441 13580 4446 4433 13581 4454 4441 13582 4452 4439 13583 4317 4302 13584 4319 4304 13585 4456 4442 13586 4319 4304 13587 4416 4399 13588 4457 4443 13589 4458 4444 13590 4320 4305 13591 4317 4302 13592 4459 4445 13593 4321 4306 13594 4320 4305 13595 4460 4446 13596 4414 4397 13597 4413 4396 13598 4461 4447 13599 4413 4396 13600 4321 4306 13601 4416 4399 13602 4415 4398 13603 4462 4448 13604 4462 4448 13605 4415 4398 13606 4414 4397 13607 4449 4436 13608 4448 4435 13609 4456 4442 13610 4462 4448 13611 4454 4441 13612 4449 4436 13613 4458 4444 13614 4455 4449 13615 4447 4434 13616 4459 4445 13617 4458 4444 13618 4450 4437 13619 4459 4445 13620 4451 4438 13621 4453 4440 13622 4461 4447 13623 4453 4440 13624 4452 4439 13625 4460 4446 13626 4452 4439 13627 4454 4441 13628 4455 4449 13629 4456 4442 13630 4448 4435 13631 4321 4306 13632 4413 4396 13633 4318 4303 13634 4320 4305 13635 4318 4303 13636 4317 4302 13637 4318 4303 13638 4416 4399 13639 4319 4304 13640 4318 4303 13641 4414 4397 13642 4415 4398 13643 4334 4319 13644 4327 4312 13645 4338 4322 13646 4332 4317 13647 4334 4319 13648 4347 4331 13649 4328 4314 13650 4332 4317 13651 4345 4330 13652 4329 4400 13653 4328 4314 13654 4340 4324 13655 4330 4315 13656 4329 4400 13657 4339 4323 13658 4326 4311 13659 4330 4315 13660 4343 4401 13661 4327 4312 13662 4326 4311 13663 4335 4327 13664 4463 4450 13665 4464 4451 13666 4465 4452 13667 4301 4285 13668 4303 4287 13669 4466 4453 13670 4303 4287 13671 4305 4289 13672 4467 4454 13673 4468 4455 13674 4469 4456 13675 4470 4457 13676 4471 4458 13677 4467 4454 13678 4305 4289 13679 4470 4457 13680 4471 4458 13681 4307 4291 13682 4468 4455 13683 4470 4457 13684 4309 4293 13685 4464 4451 13686 4472 4459 13687 4473 4460 13688 4469 4456 13689 4474 4461 13690 4471 4458 13691 4474 4461 13692 4475 4462 13693 4467 4454 13694 4466 4453 13695 4467 4454 13696 4475 4462 13697 4463 4450 13698 4466 4453 13699 4476 4463 13700 4464 4451 13701 4463 4450 13702 4477 4464 13703 4472 4459 13704 4464 4451 13705 4478 4465 13706 4480 4466 13707 4481 4467 13708 4482 4468 13709 4480 4466 13710 4483 4469 13711 4485 4470 13712 4484 4471 13713 4485 4470 13714 4487 4472 13715 4488 4473 13716 4489 4474 13717 4490 4475 13718 4493 4476 13719 4494 4477 13720 4495 4478 13721 4496 4479 13722 4497 4480 13723 4498 4481 13724 4479 4482 13725 4500 4483 13726 4501 4484 13727 4502 4485 13728 4503 4486 13729 4481 4467 13730 4502 4485 13731 4480 4466 13732 4484 4471 13733 4504 4487 13734 4484 4471 13735 4486 4488 13736 4507 4489 13737 4489 4474 13738 4488 4473 13739 4509 4490 13740 4493 4476 13741 4492 4491 13742 4510 4492 13743 4511 4493 13744 4497 4480 13745 4512 4494 13746 4513 4495 13747 4500 4483 13748 4479 4482 13749 4478 4465 13750 4514 4496 13751 4478 4465 13752 4477 4464 13753 4515 4497 13754 4516 4498 13755 4515 4497 13756 4477 4464 13757 4517 4499 13758 4516 4498 13759 4476 4463 13760 4518 4500 13761 4517 4499 13762 4475 4462 13763 4519 4501 13764 4518 4500 13765 4474 4461 13766 4472 4459 13767 4501 4484 13768 4520 4502 13769 4521 4503 13770 4522 4504 13771 4523 4505 13772 4500 4483 13773 4524 4506 13774 4521 4503 13775 4513 4495 13776 4525 4507 13777 4524 4506 13778 4524 4506 13779 4526 4508 13780 4522 4504 13781 4525 4507 13782 4527 4509 13783 4526 4508 13784 4465 4452 13785 4528 4510 13786 4529 4511 13787 4530 4512 13788 4528 4510 13789 4465 4452 13790 4531 4513 13791 4532 4514 13792 4483 4469 13793 4532 4514 13794 4533 4515 13795 4485 4470 13796 4533 4515 13797 4534 4516 13798 4487 4472 13799 4535 4517 13800 4536 4518 13801 4491 4519 13802 4537 4520 13803 4538 4521 13804 4495 4478 13805 4498 4481 13806 4539 4522 13807 4540 4523 13808 4541 4524 13809 4530 4512 13810 4473 4460 13811 4522 4504 13812 4542 4525 13813 4543 4526 13814 4468 4455 13815 4519 4501 13816 4469 4456 13817 4505 4527 13818 4486 4488 13819 4489 4474 13820 4486 4488 13821 4487 4472 13822 4490 4475 13823 4535 4517 13824 4490 4475 13825 4487 4472 13826 4527 4509 13827 4510 4492 13828 4496 4479 13829 4526 4508 13830 4496 4479 13831 4499 4528 13832 4542 4525 13833 4522 4504 13834 4499 4528 13835 4511 4493 13836 4508 4529 13837 4492 4491 13838 4497 4480 13839 4492 4491 13840 4495 4478 13841 4538 4521 13842 4539 4522 13843 4498 4481 13844 4506 4530 13845 4488 4473 13846 4493 4476 13847 4493 4476 13848 4488 4473 13849 4491 4519 13850 4536 4518 13851 4537 4520 13852 4494 4477 13853 4543 4526 13854 4541 4524 13855 4520 4502 13856 4501 4484 13857 4521 4503 13858 4523 4505 13859 4545 4531 13860 4543 4526 13861 4542 4525 13862 4547 4532 13863 4548 4533 13864 4549 4534 13865 4551 4535 13866 4552 4536 13867 4553 4537 13868 4555 4538 13869 4556 4539 13870 4557 4540 13871 4558 4541 13872 4554 4542 13873 4557 4540 13874 4560 4543 13875 4558 4541 13876 4559 4544 13877 4562 4545 13878 4560 4543 13879 4561 4546 13880 4564 4547 13881 4562 4545 13882 4563 4548 13883 4566 4549 13884 4564 4547 13885 4565 4550 13886 4549 4534 13887 4566 4549 13888 4567 4551 13889 4568 4552 13890 4569 4553 13891 4570 4554 13892 4572 4555 13893 4568 4552 13894 4571 4556 13895 4574 4557 13896 4572 4555 13897 4573 4558 13898 4576 4559 13899 4574 4557 13900 4575 4560 13901 4578 4561 13902 4576 4559 13903 4577 4562 13904 4580 4563 13905 4578 4561 13906 4579 4564 13907 4580 4563 13908 4581 4565 13909 4550 4566 13910 4583 4567 13911 4584 4568 13912 4585 4569 13913 4582 4570 13914 4585 4569 13915 4587 4571 13916 4588 4572 13917 4586 4573 13918 4587 4571 13919 4590 4574 13920 4588 4572 13921 4589 4575 13922 4592 4576 13923 4590 4574 13924 4591 4577 13925 4594 4578 13926 4592 4576 13927 4593 4579 13928 4594 4578 13929 4595 4580 13930 4544 4581 13931 4552 4536 13932 4545 4531 13933 4544 4581 13934 4595 4580 13935 4596 4582 13936 4553 4537 13937 4593 4579 13938 4597 4583 13939 4596 4582 13940 4591 4577 13941 4598 4584 13942 4597 4583 13943 4589 4575 13944 4599 4585 13945 4598 4584 13946 4587 4571 13947 4600 4586 13948 4599 4585 13949 4585 4569 13950 4601 4587 13951 4600 4586 13952 4584 4568 13953 4602 4588 13954 4601 4587 13955 4548 4533 13956 4551 4535 13957 4550 4566 13958 4581 4565 13959 4603 4589 13960 4549 4534 13961 4579 4564 13962 4604 4590 13963 4603 4589 13964 4577 4562 13965 4605 4591 13966 4604 4590 13967 4575 4560 13968 4606 4592 13969 4605 4591 13970 4573 4558 13971 4607 4593 13972 4606 4592 13973 4571 4556 13974 4608 4594 13975 4607 4593 13976 4570 4554 13977 4609 4595 13978 4608 4594 13979 4611 4596 13980 4547 4532 13981 4546 4597 13982 4567 4551 13983 4612 4598 13984 4610 4599 13985 4565 4550 13986 4613 4600 13987 4612 4598 13988 4563 4548 13989 4614 4601 13990 4613 4600 13991 4561 4546 13992 4615 4602 13993 4614 4601 13994 4559 4544 13995 4616 4603 13996 4615 4602 13997 4557 4540 13998 4617 4604 13999 4616 4603 14000 4618 4605 14001 4617 4604 14002 4557 4540 14003 4620 4606 14004 4621 4607 14005 4622 4608 14006 4624 4609 14007 4625 4610 14008 4626 4611 14009 4627 4612 14010 4628 4613 14011 4629 4614 14012 4631 4615 14013 4632 4616 14014 4619 4617 14015 4626 4611 14016 4633 4618 14017 4634 4619 14018 4630 4620 14019 4635 4621 14020 4636 4622 14021 4637 4623 14022 4638 4624 14023 4632 4616 14024 4633 4618 14025 4639 4625 14026 4640 4626 14027 4635 4621 14028 4641 4627 14029 4642 4628 14030 4643 4629 14031 4468 4455 14032 4644 4630 14033 4645 4631 14034 4468 4455 14035 4646 4632 14036 4647 4633 14037 4648 4634 14038 4638 4624 14039 4649 4635 14040 4650 4636 14041 4640 4626 14042 4652 4637 14043 4642 4628 14044 4641 4627 14045 4643 4629 14046 4652 4637 14047 4651 4638 14048 4650 4636 14049 4649 4635 14050 4644 4630 14051 4648 4634 14052 4647 4633 14053 4646 4632 14054 4628 4613 14055 4655 4639 14056 4656 4640 14057 4657 4641 14058 4658 4642 14059 4625 4610 14060 4659 4643 14061 4660 4644 14062 4621 4607 14063 4662 4645 14064 4663 4646 14065 4664 4647 14066 4665 4648 14067 4666 4649 14068 4667 4650 14069 4659 4643 14070 4665 4648 14071 4668 4651 14072 4669 4652 14073 4670 4653 14074 4671 4654 14075 4673 4655 14076 4674 4656 14077 4675 4657 14078 4666 4649 14079 4669 4652 14080 4672 4658 14081 4662 4645 14082 4673 4655 14083 4676 4659 14084 4468 4455 14085 4653 4660 14086 4519 4501 14087 4678 4661 14088 4679 4662 14089 4680 4663 14090 4677 4664 14091 4680 4663 14092 4682 4665 14093 4681 4666 14094 4682 4665 14095 4684 4667 14096 4686 4668 14097 4687 4669 14098 4688 4670 14099 4689 4671 14100 4685 4672 14101 4688 4670 14102 4691 4673 14103 4689 4671 14104 4690 4674 14105 4655 4639 14106 4691 4673 14107 4692 4675 14108 4657 4641 14109 4693 4676 14110 4694 4677 14111 4696 4678 14112 4697 4679 14113 4698 4680 14114 4695 4681 14115 4698 4680 14116 4700 4682 14117 4701 4683 14118 4702 4684 14119 4703 4685 14120 4705 4686 14121 4701 4683 14122 4704 4687 14123 4707 4688 14124 4705 4686 14125 4706 4689 14126 4693 4676 14127 4707 4688 14128 4708 4690 14129 4653 4660 14130 4651 4638 14131 4518 4500 14132 4651 4638 14133 4641 4627 14134 4517 4499 14135 4516 4498 14136 4517 4499 14137 4641 4627 14138 4515 4497 14139 4516 4498 14140 4635 4621 14141 4514 4496 14142 4515 4497 14143 4630 4620 14144 4512 4494 14145 4514 4496 14146 4629 4614 14147 4709 4691 14148 4512 4494 14149 4656 4640 14150 4690 4674 14151 4710 4692 14152 4709 4691 14153 4711 4693 14154 4710 4692 14155 4690 4674 14156 4712 4694 14157 4711 4693 14158 4688 4670 14159 4713 4695 14160 4714 4696 14161 4684 4667 14162 4715 4697 14163 4713 4695 14164 4682 4665 14165 4716 4698 14166 4715 4697 14167 4680 4663 14168 4649 4635 14169 4652 4637 14170 4643 4629 14171 4652 4637 14172 4649 4635 14173 4639 4625 14174 4636 4622 14175 4642 4628 14176 4639 4625 14177 4627 4612 14178 4636 4622 14179 4633 4618 14180 4628 4613 14181 4627 4612 14182 4626 4611 14183 4658 4642 14184 4655 4639 14185 4628 4613 14186 4694 4677 14187 4717 4699 14188 4655 4639 14189 4708 4690 14190 4718 4700 14191 4717 4699 14192 4719 4701 14193 4718 4700 14194 4708 4690 14195 4720 4702 14196 4719 4701 14197 4706 4689 14198 4721 4703 14199 4720 4702 14200 4704 4687 14201 4722 4704 14202 4723 4705 14203 4700 4682 14204 4724 4706 14205 4722 4704 14206 4698 4680 14207 4647 4633 14208 4650 4636 14209 4645 4631 14210 4650 4636 14211 4647 4633 14212 4637 4623 14213 4640 4626 14214 4637 4623 14215 4631 4615 14216 4634 4619 14217 4631 4615 14218 4622 4608 14219 4621 4607 14220 4624 4609 14221 4623 4707 14222 4660 4644 14223 4657 4641 14224 4624 4609 14225 4668 4651 14226 4725 4708 14227 4657 4641 14228 4726 4709 14229 4725 4708 14230 4668 4651 14231 4727 4710 14232 4726 4709 14233 4667 4650 14234 4728 4711 14235 4727 4710 14236 4672 4658 14237 4729 4712 14238 4730 4713 14239 4664 4647 14240 4731 4714 14241 4729 4712 14242 4663 4646 14243 4732 4715 14244 4731 4714 14245 4676 4659 14246 4468 4455 14247 4654 4716 14248 4646 4632 14249 4468 4455 14250 4645 4631 14251 4644 4630 14252 4468 4455 14253 4643 4629 14254 4653 4660 14255 4683 4717 14256 4684 4667 14257 4687 4669 14258 4714 4696 14259 4712 4694 14260 4687 4669 14261 4723 4705 14262 4721 4703 14263 4703 4685 14264 4699 4718 14265 4700 4682 14266 4703 4685 14267 4670 4653 14268 4661 4719 14269 4664 4647 14270 4730 4713 14271 4728 4711 14272 4671 4654 14273 4733 4720 14274 4734 4721 14275 4735 4722 14276 4734 4721 14277 4733 4720 14278 4737 4723 14279 4738 4724 14280 4737 4723 14281 4739 4725 14282 4468 4455 14283 4741 4726 14284 4742 4727 14285 4740 4728 14286 4739 4725 14287 4744 4729 14288 4743 4730 14289 4744 4729 14290 4741 4726 14291 4468 4455 14292 4311 4295 14293 4745 4731 14294 4736 4732 14295 4735 4722 14296 4746 4733 14297 4742 4727 14298 4741 4726 14299 4744 4729 14300 4739 4725 14301 4749 4734 14302 4748 4735 14303 4737 4723 14304 4750 4736 14305 4749 4734 14306 4733 4720 14307 4751 4737 14308 4750 4736 14309 4751 4737 14310 4733 4720 14311 4736 4732 14312 4752 4738 14313 4736 4732 14314 4747 4739 14315 4754 4740 14316 4755 4741 14317 4756 4742 14318 4758 4743 14319 4759 4744 14320 4755 4741 14321 4760 4745 14322 4761 4746 14323 4759 4744 14324 4762 4747 14325 4763 4748 14326 4764 4749 14327 4767 4750 14328 4768 4751 14329 4769 4752 14330 4771 4753 14331 4772 4754 14332 4773 4755 14333 4753 4756 14334 4747 4739 14335 4774 4757 14336 4776 4758 14337 4754 4740 14338 4757 4759 14339 4758 4743 14340 4754 4740 14341 4776 4758 14342 4760 4745 14343 4758 4743 14344 4778 4760 14345 4762 4747 14346 4765 4761 14347 4781 4762 14348 4766 4763 14349 4769 4752 14350 4783 4764 14351 4784 4765 14352 4770 4766 14353 4773 4755 14354 4786 4767 14355 4753 4756 14356 4775 4768 14357 4788 4769 14358 4752 4738 14359 4753 4756 14360 4789 4770 14361 4751 4737 14362 4752 4738 14363 4751 4737 14364 4789 4770 14365 4790 4771 14366 4750 4736 14367 4790 4771 14368 4791 4772 14369 4749 4734 14370 4791 4772 14371 4792 4773 14372 4793 4774 14373 4742 4727 14374 4748 4735 14375 4747 4739 14376 4746 4733 14377 4794 4775 14378 4795 4776 14379 4796 4777 14380 4797 4778 14381 4775 4768 14382 4774 4757 14383 4795 4776 14384 4787 4779 14385 4775 4768 14386 4798 4780 14387 4798 4780 14388 4795 4776 14389 4797 4778 14390 4799 4781 14391 4798 4780 14392 4800 4782 14393 4734 4721 14394 4802 4783 14395 4803 4784 14396 4735 4722 14397 4803 4784 14398 4804 4785 14399 4755 4741 14400 4805 4786 14401 4806 4787 14402 4759 4744 14403 4807 4788 14404 4805 4786 14405 4761 4746 14406 4808 4789 14407 4807 4788 14408 4763 4748 14409 4809 4790 14410 4810 4791 14411 4768 4751 14412 4767 4750 14413 4811 4792 14414 4771 4753 14415 4813 4793 14416 4814 4794 14417 4746 4733 14418 4804 4785 14419 4815 4795 14420 4796 4777 14421 4816 4796 14422 4817 4797 14423 4468 4455 14424 4742 4727 14425 4793 4774 14426 4765 4761 14427 4760 4745 14428 4779 4798 14429 4765 4761 14430 4764 4749 14431 4761 4746 14432 4808 4789 14433 4761 4746 14434 4764 4749 14435 4801 4799 14436 4800 4782 14437 4770 4766 14438 4800 4782 14439 4797 4778 14440 4771 4753 14441 4813 4793 14442 4771 4753 14443 4797 4778 14444 4773 4755 14445 4766 4763 14446 4782 4800 14447 4772 4754 14448 4767 4750 14449 4766 4763 14450 4811 4792 14451 4767 4750 14452 4772 4754 14453 4769 4752 14454 4762 4747 14455 4780 4801 14456 4769 4752 14457 4768 4751 14458 4763 4748 14459 4763 4748 14460 4768 4751 14461 4812 4802 14462 4794 4775 14463 4815 4795 14464 4816 4796 14465 4774 4757 14466 4794 4775 14467 4796 4777 14468 4817 4797 14469 4816 4796 14470 4819 4803 14471 4821 4804 14472 4822 4805 14473 4823 4806 14474 4825 4807 14475 4826 4808 14476 4827 4809 14477 4829 4810 14478 4830 4811 14479 4831 4812 14480 4832 4813 14481 4833 4814 14482 4829 4810 14483 4834 4815 14484 4835 4816 14485 4833 4814 14486 4836 4817 14487 4837 4818 14488 4835 4816 14489 4838 4819 14490 4839 4820 14491 4837 4818 14492 4840 4821 14493 4841 4822 14494 4839 4820 14495 4821 4804 14496 4820 4823 14497 4841 4822 14498 4842 4824 14499 4843 4825 14500 4844 4826 14501 4846 4827 14502 4847 4828 14503 4843 4825 14504 4848 4829 14505 4849 4830 14506 4847 4828 14507 4850 4831 14508 4851 4832 14509 4849 4830 14510 4852 4833 14511 4853 4834 14512 4851 4832 14513 4854 4835 14514 4855 4836 14515 4853 4834 14516 4824 4837 14517 4855 4836 14518 4854 4835 14519 4857 4838 14520 4858 4839 14521 4859 4840 14522 4861 4841 14523 4857 4838 14524 4856 4842 14525 4862 4843 14526 4863 4844 14527 4861 4841 14528 4864 4845 14529 4865 4846 14530 4863 4844 14531 4866 4847 14532 4867 4848 14533 4865 4846 14534 4868 4849 14535 4869 4850 14536 4867 4848 14537 4818 4851 14538 4869 4850 14539 4868 4849 14540 4818 4851 14541 4819 4803 14542 4826 4808 14543 4869 4850 14544 4818 4851 14545 4825 4807 14546 4867 4848 14547 4869 4850 14548 4870 4852 14549 4865 4846 14550 4867 4848 14551 4871 4853 14552 4863 4844 14553 4865 4846 14554 4872 4854 14555 4861 4841 14556 4863 4844 14557 4873 4855 14558 4857 4838 14559 4861 4841 14560 4874 4856 14561 4858 4839 14562 4857 4838 14563 4875 4857 14564 4824 4837 14565 4827 4809 14566 4822 4805 14567 4855 4836 14568 4824 4837 14569 4821 4804 14570 4853 4834 14571 4855 4836 14572 4877 4858 14573 4851 4832 14574 4853 4834 14575 4878 4859 14576 4849 4830 14577 4851 4832 14578 4879 4860 14579 4847 4828 14580 4849 4830 14581 4880 4861 14582 4843 4825 14583 4847 4828 14584 4881 4862 14585 4844 4826 14586 4843 4825 14587 4882 4863 14588 4820 4823 14589 4823 4806 14590 4611 4596 14591 4841 4822 14592 4820 4823 14593 4610 4599 14594 4839 4820 14595 4841 4822 14596 4612 4598 14597 4837 4818 14598 4839 4820 14599 4613 4600 14600 4835 4816 14601 4837 4818 14602 4614 4601 14603 4833 4814 14604 4835 4816 14605 4615 4602 14606 4829 4810 14607 4833 4814 14608 4884 4864 14609 4830 4811 14610 4829 4810 14611 4885 4865 14612 4887 4866 14613 4888 4867 14614 4620 4606 14615 4890 4868 14616 4891 4869 14617 4892 4870 14618 4893 4871 14619 4894 4872 14620 4895 4873 14621 4619 4617 14622 4632 4616 14623 4897 4874 14624 4890 4868 14625 4889 4875 14626 4898 4876 14627 4894 4872 14628 4893 4871 14629 4900 4877 14630 4632 4616 14631 4638 4624 14632 4902 4878 14633 4899 4879 14634 4898 4876 14635 4903 4880 14636 4901 4881 14637 4900 4877 14638 4905 4882 14639 4907 4883 14640 4908 4884 14641 4468 4455 14642 4909 4885 14643 4910 4886 14644 4468 4455 14645 4911 4887 14646 4902 4878 14647 4638 4624 14648 4912 4888 14649 4904 4889 14650 4903 4880 14651 4906 4890 14652 4905 4882 14653 4915 4891 14654 4907 4883 14655 4916 4892 14656 4914 4893 14657 4908 4884 14658 4912 4888 14659 4913 4894 14660 4648 4634 14661 4654 4716 14662 4910 4886 14663 4896 4895 14664 4895 4873 14665 4917 4896 14666 4891 4869 14667 4919 4897 14668 4920 4898 14669 4888 4867 14670 4921 4899 14671 4659 4643 14672 4923 4900 14673 4924 4901 14674 4925 4902 14675 4926 4903 14676 4927 4904 14677 4666 4649 14678 4659 4643 14679 4921 4899 14680 4926 4903 14681 4928 4905 14682 4929 4906 14683 4930 4907 14684 4931 4908 14685 4932 4909 14686 4933 4910 14687 4927 4904 14688 4928 4905 14689 4669 4652 14690 4924 4901 14691 4932 4909 14692 4931 4908 14693 4468 4455 14694 4793 4774 14695 4916 4892 14696 4936 4911 14697 4937 4912 14698 4938 4913 14699 4940 4914 14700 4936 4911 14701 4935 4915 14702 4942 4916 14703 4940 4914 14704 4939 4917 14705 4944 4918 14706 4945 4919 14707 4946 4920 14708 4947 4921 14709 4948 4922 14710 4944 4918 14711 4949 4923 14712 4950 4924 14713 4948 4922 14714 4917 4896 14715 4950 4924 14716 4949 4923 14717 4919 4897 14718 4951 4925 14719 4952 4926 14720 4954 4927 14721 4955 4928 14722 4956 4929 14723 4958 4930 14724 4954 4927 14725 4953 4931 14726 4960 4932 14727 4961 4933 14728 4962 4934 14729 4963 4935 14730 4964 4936 14731 4960 4932 14732 4965 4937 14733 4966 4938 14734 4964 4936 14735 4951 4925 14736 4966 4938 14737 4965 4937 14738 4916 4892 14739 4793 4774 14740 4792 4773 14741 4791 4772 14742 4906 4890 14743 4914 4893 14744 4790 4771 14745 4901 4881 14746 4906 4890 14747 4789 4770 14748 4894 4872 14749 4901 4881 14750 4894 4872 14751 4789 4770 14752 4788 4769 14753 4895 4873 14754 4788 4769 14755 4786 4767 14756 4950 4924 14757 4917 4896 14758 4786 4767 14759 4948 4922 14760 4950 4924 14761 4967 4939 14762 4944 4918 14763 4948 4922 14764 4968 4940 14765 4944 4918 14766 4969 4941 14767 4970 4942 14768 4942 4916 14769 4971 4943 14770 4972 4944 14771 4940 4914 14772 4972 4944 14773 4973 4945 14774 4936 4911 14775 4973 4945 14776 4974 4946 14777 4907 4883 14778 4915 4891 14779 4912 4888 14780 4915 4891 14781 4905 4882 14782 4904 4889 14783 4900 4877 14784 4899 4879 14785 4904 4889 14786 4893 4871 14787 4890 4868 14788 4899 4879 14789 4890 4868 14790 4893 4871 14791 4896 4895 14792 4919 4897 14793 4891 4869 14794 4896 4895 14795 4951 4925 14796 4919 4897 14797 4918 4947 14798 4966 4938 14799 4951 4925 14800 4975 4948 14801 4964 4936 14802 4966 4938 14803 4976 4949 14804 4960 4932 14805 4964 4936 14806 4977 4950 14807 4960 4932 14808 4978 4951 14809 4979 4952 14810 4958 4930 14811 4980 4953 14812 4981 4954 14813 4954 4927 14814 4981 4954 14815 4982 4955 14816 4911 4887 14817 4910 4886 14818 4909 4885 14819 4913 4894 14820 4903 4880 14821 4902 4878 14822 4897 4874 14823 4902 4878 14824 4903 4880 14825 4887 4866 14826 4897 4874 14827 4898 4876 14828 4888 4867 14829 4887 4866 14830 4889 4875 14831 4921 4899 14832 4888 4867 14833 4892 4870 14834 4926 4903 14835 4921 4899 14836 4920 4898 14837 4927 4904 14838 4926 4903 14839 4983 4956 14840 4927 4904 14841 4984 4957 14842 4985 4958 14843 4928 4905 14844 4985 4958 14845 4986 4959 14846 4923 4900 14847 4987 4960 14848 4988 4961 14849 4924 4901 14850 4988 4961 14851 4989 4962 14852 4932 4909 14853 4989 4962 14854 4990 4963 14855 4468 4455 14856 4910 4886 14857 4654 4716 14858 4468 4455 14859 4908 4884 14860 4909 4885 14861 4468 4455 14862 4916 4892 14863 4907 4883 14864 4945 4919 14865 4942 4916 14866 4941 4964 14867 4971 4943 14868 4942 4916 14869 4945 4919 14870 4961 4933 14871 4979 4952 14872 4980 4953 14873 4961 4933 14874 4958 4930 14875 4957 4965 14876 4929 4906 14877 4923 4900 14878 4922 4966 14879 4987 4960 14880 4923 4900 14881 4929 4906 14882 4274 4261 14883 4991 4967 14884 4992 4968 14885 4993 4969 14886 4258 4245 14887 4994 4970 14888 4260 4247 14889 4993 4969 14890 4995 4971 14891 4258 4245 14892 4264 4251 14893 4997 4972 14894 4268 4255 14895 4998 4973 14896 4997 4972 14897 4254 4241 14898 4992 4968 14899 4998 4973 14900 4260 4247 14901 4996 4974 14902 4999 4975 14903 5000 4976 14904 5001 4977 14905 4991 4967 14906 5002 4978 14907 5003 4979 14908 5004 4980 14909 5006 4981 14910 5002 4978 14911 5005 4982 14912 5006 4981 14913 5007 4983 14914 5009 4984 14915 5008 4985 14916 5009 4984 14917 4734 4721 14918 5010 4986 14919 4734 4721 14920 4738 4724 14921 5011 4987 14922 4738 4724 14923 4740 4728 14924 5012 4988 14925 4740 4728 14926 4743 4730 14927 5013 4989 14928 4743 4730 14929 4745 4731 14930 5014 4990 14931 4745 4731 14932 4311 4295 14933 4991 4967 14934 5001 4977 14935 5015 4991 14936 4991 4967 14937 5016 4992 14938 5017 4993 14939 4992 4968 14940 5017 4993 14941 5018 4994 14942 4998 4973 14943 5018 4994 14944 5019 4995 14945 4994 4970 14946 4997 4972 14947 5019 4995 14948 4995 4971 14949 4994 4970 14950 5020 4996 14951 4995 4971 14952 5021 4997 14953 5022 4998 14954 4999 4975 14955 4996 4974 14956 5022 4998 14957 4999 4975 14958 5023 4999 14959 4325 4310 14960 5000 4976 14961 5024 5000 14962 5025 5001 14963 5003 4979 14964 5026 5002 14965 5027 5003 14966 5001 4977 14967 5025 5001 14968 5028 5004 14969 5027 5003 14970 5029 5005 14971 5030 5006 14972 5029 5005 14973 5031 5007 14974 5032 5008 14975 5032 5008 14976 5031 5007 14977 5024 5000 14978 5034 5009 14979 5035 5010 14980 5036 5011 14981 5037 5012 14982 5038 5013 14983 5039 5014 14984 5033 5015 14985 5036 5011 14986 5042 5016 14987 5040 5017 14988 5039 5014 14989 5044 5018 14990 5043 5019 14991 5044 5018 14992 5046 5020 14993 5045 5021 14994 5046 5020 14995 5035 5010 14996 5048 5022 14997 5049 5023 14998 5050 5024 14999 5047 5025 15000 5050 5024 15001 5052 5026 15002 5053 5027 15003 5051 5028 15004 5052 5026 15005 5056 5029 15006 5057 5030 15007 5058 5031 15008 5058 5031 15009 5057 5030 15010 5060 5032 15011 5059 5033 15012 5060 5032 15013 5049 5023 15014 5062 5034 15015 5063 5035 15016 5064 5036 15017 5061 5037 15018 5064 5036 15019 5066 5038 15020 5067 5039 15021 5065 5040 15022 5066 5038 15023 5070 5041 15024 5071 5042 15025 5072 5043 15026 5072 5043 15027 5071 5042 15028 5074 5044 15029 5073 5045 15030 5074 5044 15031 5063 5035 15032 5076 5046 15033 5077 5047 15034 5078 5048 15035 5075 5049 15036 5078 5048 15037 5080 5050 15038 5081 5051 15039 5079 5052 15040 5080 5050 15041 5083 5053 15042 5084 5054 15043 5085 5055 15044 5086 5056 15045 5085 5055 15046 5088 5057 15047 5087 5058 15048 5088 5057 15049 5077 5047 15050 5090 5059 15051 5091 5060 15052 5092 5061 15053 5089 5062 15054 5092 5061 15055 5094 5063 15056 5095 5064 15057 5093 5065 15058 5094 5063 15059 5097 5066 15060 5098 5067 15061 5099 5068 15062 5102 5069 15063 5103 5070 15064 5104 5071 15065 5105 5072 15066 5106 5073 15067 5091 5060 15068 5035 5010 15069 5089 5062 15070 5093 5065 15071 5036 5011 15072 5093 5065 15073 5095 5064 15074 5038 5013 15075 5097 5066 15076 5100 5074 15077 5039 5014 15078 5100 5074 15079 5105 5072 15080 5044 5018 15081 5105 5072 15082 5090 5059 15083 5046 5020 15084 5090 5059 15085 5089 5062 15086 5091 5060 15087 5076 5046 15088 5075 5049 15089 5092 5061 15090 5075 5049 15091 5079 5052 15092 5096 5075 15093 5094 5063 15094 5079 5052 15095 5083 5053 15096 5086 5056 15097 5099 5068 15098 5103 5070 15099 5107 5076 15100 5108 5077 15101 5106 5073 15102 5087 5058 15103 5076 5046 15104 5077 5047 15105 5062 5034 15106 5061 5037 15107 5078 5048 15108 5061 5037 15109 5065 5040 15110 5082 5078 15111 5080 5050 15112 5065 5040 15113 5069 5079 15114 5072 5043 15115 5085 5055 15116 5085 5055 15117 5072 5043 15118 5073 5045 15119 5088 5057 15120 5073 5045 15121 5062 5034 15122 5063 5035 15123 5048 5022 15124 5047 5025 15125 5064 5036 15126 5047 5025 15127 5051 5028 15128 5068 5080 15129 5066 5038 15130 5051 5028 15131 5055 5081 15132 5058 5031 15133 5071 5042 15134 5071 5042 15135 5058 5031 15136 5059 5033 15137 5074 5044 15138 5059 5033 15139 5048 5022 15140 5005 4982 15141 5109 5082 15142 5110 5083 15143 5004 4980 15144 5030 5006 15145 5109 5082 15146 4289 4276 15147 3945 3937 15148 4279 4266 15149 5023 4999 15150 5014 4990 15151 4310 4395 15152 5023 4999 15153 5022 4998 15154 5013 4989 15155 5021 4997 15156 5012 4988 15157 5013 4989 15158 5020 4996 15159 5011 4987 15160 5012 4988 15161 5019 4995 15162 5010 4986 15163 5011 4987 15164 5018 4994 15165 5008 4985 15166 5010 4986 15167 5017 4993 15168 5006 4981 15169 5008 4985 15170 5017 4993 15171 5016 4992 15172 5002 4978 15173 5016 4992 15174 5015 4991 15175 5003 4979 15176 5015 4991 15177 5028 5004 15178 5026 5002 15179 5041 5084 15180 5042 5016 15181 5038 5013 15182 5042 5016 15183 5095 5064 15184 5097 5066 15185 5096 5075 15186 5098 5067 15187 5097 5066 15188 5081 5051 15189 5083 5053 15190 5098 5067 15191 5082 5078 15192 5084 5054 15193 5083 5053 15194 5067 5039 15195 5069 5079 15196 5084 5054 15197 5068 5080 15198 5070 5041 15199 5069 5079 15200 5053 5027 15201 5055 5081 15202 5070 5041 15203 5054 5085 15204 5056 5029 15205 5055 5081 15206 5111 5086 15207 5112 5087 15208 5110 5083 15209 4274 4261 15210 4254 4241 15211 5112 5087 15212 5030 5006 15213 5032 5008 15214 5111 5086 15215 5000 4976 15216 4274 4261 15217 5111 5086 15218 5100 5074 15219 5102 5069 15220 5101 5088 15221 5099 5068 15222 5103 5070 15223 5102 5069 15224 5106 5073 15225 5105 5072 15226 5101 5088 15227 5086 5056 15228 5107 5076 15229 5103 5070 15230 5087 5058 15231 5106 5073 15232 5104 5071 15233 5086 5056 15234 5087 5058 15235 5113 5089 15236 5087 5058 15237 5108 5077 15238 5115 5090 15239 5107 5076 15240 5116 5091 15241 5115 5090 15242 5107 5076 15243 5086 5056 15244 5114 5092 15245 5118 5093 15246 5119 5094 15247 5120 5095 15248 5121 5096 15249 5117 5097 15250 5120 5095 15251 5121 5096 15252 5122 5098 15253 5124 5099 15254 5118 5093 15255 5123 5100 15256 5124 5099 15257 5116 5091 15258 5118 5093 15259 5117 5097 15260 5113 5089 15261 5115 5090 15262 5117 5097 15263 5114 5092 15264 5113 5089 15265 5121 5096 15266 5116 5091 15267 5114 5092 15268 5123 5100 15269 5119 5094 15270 5124 5099 15271 5125 5101 15272 5119 5094 15273 5126 5102 15274 5127 5103 15275 5122 5098 15276 5120 5095 15277 5127 5103 15278 5122 5098 15279 5128 5104 15280 5125 5101 15281 5007 4983 15282 5110 5083 15283 5129 5105 15284 5112 5087 15285 5130 5106 15286 5129 5105 15287 5112 5087 15288 4254 4241 15289 4268 4255 15290 5129 5105 15291 5131 5107 15292 4734 4721 15293 5130 5106 15294 5132 5108 15295 5131 5107 15296 5130 5106 15297 4268 4255 15298 4264 4251 15299 5024 5000 15300 5034 5009 15301 5033 5015 15302 5025 5001 15303 5033 5015 15304 5041 5084 15305 5028 5004 15306 5041 5084 15307 5037 5012 15308 5026 5002 15309 5037 5012 15310 5040 5017 15311 5027 5003 15312 5040 5017 15313 5043 5019 15314 5029 5005 15315 5043 5019 15316 5045 5021 15317 5031 5007 15318 5045 5021 15319 5034 5009 15320 4259 5109 15321 4993 5109 15322 4260 5109 15323 4259 4246 15324 4270 4257 15325 4993 4969 15326 4253 4240 15327 4274 4261 15328 4254 4241 15329 4277 4263 15330 4255 4242 15331 4254 4241 15332 4277 5110 15333 4254 5110 15334 4268 5110 15335 4266 4253 15336 4264 4251 15337 4263 4250 15338 4266 5111 15339 4268 5111 15340 4264 5111 15341 4262 4249 15342 4258 4245 15343 4257 4244 15344 4262 5112 15345 4264 5112 15346 4258 5112 15347 4256 4243 15348 4993 4969 15349 4270 4257 15350 4256 5113 15351 4258 5113 15352 4993 5113 15353 4258 4245 15354 4997 4972 15355 4994 4970 15356 4265 4252 15357 4279 4266 15358 4269 4256 15359 4265 5114 15360 4260 5114 15361 4279 5114 15362 4279 4266 15363 4280 4267 15364 4269 4256 15365 3958 3949 15366 3945 3937 15367 3959 3950 15368 4041 4031 15369 4035 4025 15370 4037 4027 15371 3959 5115 15372 4035 5115 15373 4041 5115 15374 4036 4026 15375 4032 4022 15376 4034 4024 15377 4035 5116 15378 4032 5116 15379 4036 5116 15380 4033 4023 15381 4038 4028 15382 4040 4030 15383 4032 5117 15384 4038 5117 15385 4033 5117 15386 4039 4029 15387 4042 4032 15388 4044 4034 15389 4038 5118 15390 4042 5118 15391 4039 5118 15392 4043 4033 15393 4052 4041 15394 4047 4043 15395 4042 5119 15396 4052 5119 15397 4043 5119 15398 4053 4042 15399 4029 4019 15400 4048 4038 15401 4052 5120 15402 4029 5120 15403 4053 5120 15404 4029 4019 15405 4031 4021 15406 4048 4038 15407 6694 6678 20124 6695 6679 20125 6696 6680 20126 6698 6681 20127 6699 6682 20128 6700 6683 20129 6702 6684 20130 6698 6681 20131 6697 6685 20132 6699 6682 20133 6694 6678 20134 6693 6686 20135 6704 6687 20136 6705 6688 20137 6706 6689 20138 6705 6688 20139 6707 6690 20140 6708 6691 20141 6707 6690 20142 6709 6692 20143 6710 6693 20144 6709 6692 20145 6711 6694 20146 6712 6695 20147 6713 6696 20148 6714 6697 20149 6698 6681 20150 6699 6682 20151 6715 6698 20152 6716 6699 20153 6714 6697 20154 6715 6698 20155 6699 6682 20156 6716 6699 20157 6717 6700 20158 6695 6679 20159 6718 6701 20160 6719 6701 20161 6714 6701 20162 6715 6702 20163 6720 6702 20164 6721 6702 20165 6719 6703 20166 6720 6703 20167 6715 6703 20168 6721 6704 20169 6722 6704 20170 6717 6704 20171 6724 6705 20172 6725 6706 20173 6726 6707 20174 6727 6708 20175 6728 6709 20176 6717 6700 20177 6725 6706 20178 6729 6710 20179 6730 6711 20180 6723 6712 20181 6726 6707 20182 6728 6709 20183 6701 6713 20184 6697 6685 20185 6705 6688 20186 6697 6685 20187 6700 6683 20188 6707 6690 20189 6700 6683 20190 6693 6686 20191 6709 6692 20192 6693 6686 20193 6696 6680 20194 6711 6694 20195 6732 6714 20196 6733 6715 20197 6734 6716 20198 6736 6717 20199 6737 6718 20200 6738 6719 20201 6735 6720 20202 6738 6719 20203 6702 6684 20204 6731 6721 20205 6734 6716 20206 6737 6718 20207 6739 6722 20208 6740 6723 20209 6704 6687 20210 6741 6724 20211 6742 6725 20212 6740 6723 20213 6743 6726 20214 6744 6727 20215 6742 6725 20216 6745 6728 20217 6746 6729 20218 6744 6727 20219 6738 6719 20220 6747 6730 20221 6713 6696 20222 6737 6718 20223 6734 6716 20224 6748 6731 20225 6737 6718 20226 6749 6732 20227 6747 6730 20228 6733 6715 20229 6750 6733 20230 6748 6731 20231 6747 6734 20232 6751 6734 20233 6718 6734 20234 6749 6735 20235 6748 6735 20236 6752 6735 20237 6749 6736 20238 6753 6736 20239 6751 6736 20240 6750 6737 20241 6754 6737 20242 6752 6737 20243 6756 6738 20244 6757 6739 20245 6758 6740 20246 6750 6733 20247 6759 6741 20248 6760 6742 20249 6757 6739 20250 6756 6738 20251 6761 6743 20252 6759 6741 20253 6756 6738 20254 6755 6744 20255 6740 6723 20256 6735 6720 20257 6701 6713 20258 6742 6725 20259 6736 6717 20260 6735 6720 20261 6744 6727 20262 6731 6721 20263 6736 6717 20264 6746 6729 20265 6732 6714 20266 6731 6721 20267 3878 3877 33213 3875 3868 33214 3877 3870 33215 3877 3870 33216 3876 3869 33217 3880 3872 33218 3880 3872 33219 3879 3871 33220 3882 3874 33221 3882 3874 33222 3881 3873 33223 3884 3876 33224 3875 3868 33225 3878 3877 33226 3886 3879 33227 3876 3869 33228 3875 3868 33229 3888 3881 33230 3879 3871 33231 3876 3869 33232 3889 3882 33233 3881 3873 33234 3879 3871 33235 3890 3883 33236 3890 3883 33237 3891 3884 33238 3881 3873 33239 3895 3896 33240 3892 3885 33241 3894 3887 33242 3894 3887 33243 3893 3886 33244 3897 3889 33245 3897 3889 33246 3896 3888 33247 3899 3891 33248 3899 3891 33249 3898 3890 33250 3901 3893 33251 3875 3868 33252 3886 3879 33253 3887 3880 33254 3904 3898 33255 3903 3895 33256 3895 3896 33257 3902 3894 33258 3886 3879 33259 3905 3897 33260 3898 3890 33261 3882 3874 33262 3900 3892 33263 3896 3888 33264 3880 3872 33265 3898 3890 33266 3893 3886 33267 3877 3870 33268 3896 3888 33269 3892 3885 33270 3878 3877 33271 3893 3886 33272 3903 3895 33273 3885 3878 33274 3892 3885 33275 3885 3878 33276 3903 3895 33277 3905 3897 33278 3894 3887 33279 3897 3889 33280 3907 3900 33281 3897 3889 33282 3899 3891 33283 3906 3899 33284 3899 3891 33285 3901 3893 33286 3908 3901 33287 3905 3897 33288 3904 3898 33289 3910 3903 33290 3907 3900 33291 3910 3903 33292 3894 3887 33293 3908 3901 33294 3909 3902 33295 3890 3883 33296 3906 3899 33297 3908 3901 33298 3889 3882 33299 3907 3900 33300 3906 3899 33301 3888 3881 33302 3888 3881 33303 3887 3880 33304 3907 3900 33305 3905 3897 33306 3910 3903 33307 3902 3894 33308 3914 3907 33309 3911 3904 33310 3913 3906 33311 3916 3909 33312 3914 3907 33313 3915 3908 33314 3918 3911 33315 3916 3909 33316 3917 3910 33317 3883 3875 33318 3918 3911 33319 3884 3876 33320 3911 3904 33321 3919 3912 33322 3912 3905 33323 3914 3907 33324 3921 3914 33325 3911 3904 33326 3916 3909 33327 3923 3916 33328 3914 3907 33329 3918 3911 33330 3924 3917 33331 3916 3909 33332 3883 3875 33333 3891 3884 33334 3918 3911 33335 3928 3921 33336 3925 3918 33337 3927 3920 33338 3930 3923 33339 3928 3921 33340 3929 3922 33341 3932 3925 33342 3930 3923 33343 3931 3924 33344 3900 3892 33345 3932 3925 33346 3901 3893 33347 3911 3904 33348 3922 3915 33349 3919 3912 33350 3925 3918 33351 3934 3927 33352 3926 3919 33353 3920 3913 33354 3919 3912 33355 3936 3929 33356 3884 3876 33357 3917 3910 33358 3900 3892 33359 3917 3910 33360 3915 3908 33361 3932 3925 33362 3915 3908 33363 3913 3906 33364 3930 3923 33365 3913 3906 33366 3912 3905 33367 3928 3921 33368 3912 3905 33369 3920 3913 33370 3925 3918 33371 3920 3913 33372 3936 3929 33373 3934 3927 33374 3927 3920 33375 3937 3930 33376 3929 3922 33377 3929 3922 33378 3938 3931 33379 3931 3924 33380 3931 3924 33381 3939 3932 33382 3901 3893 33383 3926 3919 33384 3935 3928 33385 3940 3933 33386 3937 3930 33387 3927 3920 33388 3940 3933 33389 3939 3932 33390 3924 3917 33391 3909 3902 33392 3938 3931 33393 3923 3916 33394 3939 3932 33395 3937 3930 33396 3921 3914 33397 3938 3931 33398 3921 3914 33399 3937 3930 33400 3922 3915 33401 3936 3929 33402 3933 3926 33403 3940 3933 33404 3941 4129 33405 3942 3934 33406 3944 3936 33407 3949 3941 33408 3946 3938 33409 3948 3940 33410 3951 3943 33411 3949 3941 33412 3950 3942 33413 3944 3936 33414 3943 3935 33415 3946 3938 33416 3953 3945 33417 3951 3943 33418 3952 3944 33419 3955 3947 33420 3953 3945 33421 3954 3946 33422 3957 3952 33423 3955 3947 33424 3956 3948 33425 3962 3954 33426 3957 3952 33427 3961 3953 33428 3960 3951 33429 3962 3954 33430 3958 3949 33431 3966 3973 33432 3963 3955 33433 3965 3957 33434 3967 7947 33435 3968 3958 33436 3964 3956 33437 3969 4010 33438 3970 3959 33439 3972 3961 33440 3974 3966 33441 3973 3962 33442 3970 3959 33443 3978 3974 33444 3975 3963 33445 3977 3965 33446 3969 4010 33447 3972 3961 33448 3976 3964 33449 3973 3962 33450 3974 3966 33451 3980 3968 33452 3982 3970 33453 3981 3969 33454 3979 3967 33455 3981 3969 33456 3982 3970 33457 3984 3972 33458 3963 3955 33459 3966 3973 33460 3983 3971 33461 3986 3988 33462 3978 3974 33463 3985 3975 33464 3972 3961 33465 3987 3976 33466 3977 3965 33467 3987 3976 33468 3972 3961 33469 3988 3977 33470 3989 3978 33471 3988 3977 33472 3973 3962 33473 3990 3979 33474 3989 3978 33475 3980 3968 33476 3991 3980 33477 3990 3979 33478 3981 3969 33479 3992 3981 33480 3991 3980 33481 3984 3972 33482 3993 3982 33483 3992 3981 33484 3966 3973 33485 3994 3984 33486 3993 3982 33487 3965 3957 33488 3965 3957 33489 3968 3958 33490 3994 3984 33491 3953 3945 33492 3955 3947 33493 3997 3986 33494 3975 3963 33495 3978 3974 33496 3996 3985 33497 3951 3943 33498 3953 3945 33499 3998 3987 33500 3978 3974 33501 3986 3988 33502 3997 3986 33503 3999 4007 33504 4000 3989 33505 4002 3991 33506 4000 3989 33507 4003 3992 33508 4001 3990 33509 4005 4035 33510 4006 3994 33511 4008 3996 33512 4009 4001 33513 4007 3995 33514 4010 3997 33515 4014 4009 33516 4011 3998 33517 4013 4000 33518 4005 4035 33519 4008 3996 33520 4012 3999 33521 4016 4003 33522 4009 4001 33523 4015 4002 33524 4017 4005 33525 4016 4003 33526 4018 4004 33527 4020 4008 33528 4017 4005 33529 4019 4006 33530 4019 4006 33531 3999 4007 33532 4020 4008 33533 3975 3963 33534 4014 4009 33535 3976 3964 33536 3969 4010 33537 3976 3964 33538 4008 3996 33539 3970 3959 33540 3969 4010 33541 4007 3995 33542 3974 3966 33543 3970 3959 33544 4009 4001 33545 4021 4011 33546 3974 3966 33547 4016 4003 33548 4022 4012 33549 4021 4011 33550 4017 4005 33551 4023 4014 33552 4022 4012 33553 4020 4008 33554 4002 3991 33555 4024 4013 33556 4020 4008 33557 4024 4013 33558 4002 3991 33559 4025 4015 33560 4004 3993 33561 4026 4016 33562 4001 3990 33563 3957 3952 33564 3962 3954 33565 4028 4018 33566 4011 3998 33567 4014 4009 33568 4027 4017 33569 3955 3947 33570 3957 3952 33571 3996 3985 33572 4014 4009 33573 3975 3963 33574 4028 4018 33575 4037 4027 33576 4011 3998 33577 4041 4031 33578 3962 3954 33579 3960 3951 33580 4027 4017 33581 4011 3998 33582 4037 4027 33583 4012 3999 33584 4034 4024 33585 4005 4035 33586 4036 4026 33587 4005 4035 33588 4034 4024 33589 4006 3994 33590 4040 4030 33591 4010 3997 33592 4033 4023 33593 4010 3997 33594 4040 4030 33595 4015 4002 33596 4044 4034 33597 4018 4004 33598 4039 4029 33599 4018 4004 33600 4044 4034 33601 4045 4036 33602 4047 4043 33603 4046 4037 33604 4043 4033 33605 4050 4045 33606 4048 4038 33607 4049 4039 33608 4030 4020 33609 4051 4040 33610 4031 4021 33611 4046 4037 33612 4047 4043 33613 4054 4044 33614 4048 4038 33615 4050 4045 33616 4053 4042 33617 4058 4049 33618 4055 4046 33619 4057 4048 33620 4059 4063 33621 4058 4049 33622 4060 4050 33623 4064 4062 33624 4061 4051 33625 4063 4053 33626 4066 4055 33627 4065 4054 33628 4062 4052 33629 4065 4054 33630 4066 4055 33631 4068 4057 33632 4070 4074 33633 4069 4058 33634 4067 4056 33635 4071 4065 33636 4072 4059 33637 4074 4061 33638 4072 4059 33639 4061 4051 33640 4073 4060 33641 4076 4066 33642 4059 4063 33643 4075 4064 33644 4075 4064 33645 4071 4065 33646 4076 4066 33647 3987 3976 33648 4065 4054 33649 3985 3975 33650 4069 4058 33651 3986 3988 33652 4068 4057 33653 4077 4069 33654 4064 4062 33655 3988 3977 33656 4065 4054 33657 3987 3976 33658 4063 4053 33659 4074 4061 33660 4073 4060 33661 4079 4068 33662 4073 4060 33663 4064 4062 33664 4078 4067 33665 4081 4072 33666 4059 4063 33667 4080 4070 33668 4074 4061 33669 4079 4068 33670 4076 4066 33671 4082 7948 33672 4055 4046 33673 4083 4071 33674 4059 4063 33675 4081 4072 33676 4058 4049 33677 3986 3988 33678 4069 4058 33679 3998 3987 33680 3949 3941 33681 3951 3943 33682 4084 4073 33683 4069 4058 33684 4070 4074 33685 4084 4073 33686 3946 3938 33687 3949 3941 33688 4085 4075 33689 4086 4166 33690 4087 4076 33691 4089 4078 33692 4091 4123 33693 4090 4079 33694 4088 4077 33695 4092 4091 33696 4093 4080 33697 4095 4082 33698 4096 4084 33699 4094 4081 33700 4097 4083 33701 4099 4087 33702 4096 4084 33703 4098 4085 33704 4101 4130 33705 4100 4086 33706 4098 4085 33707 4102 4098 33708 4103 4088 33709 4105 4090 33710 4103 4088 33711 4092 4091 33712 4104 4089 33713 4109 4133 33714 4106 4092 33715 4108 4094 33716 4110 7949 33717 4111 4095 33718 4113 4097 33719 4111 4095 33720 4102 4098 33721 4112 4096 33722 4117 4106 33723 4114 4099 33724 4116 4101 33725 4119 4126 33726 4118 4102 33727 4115 4100 33728 4120 4110 33729 4121 4103 33730 4123 4105 33731 4114 4099 33732 4117 4106 33733 4121 4103 33734 4124 4165 33735 4125 4107 33736 4127 4109 33737 4125 4107 33738 4120 4110 33739 4126 4108 33740 4131 4122 33741 4128 4111 33742 4130 4113 33743 4124 4165 33744 4127 4109 33745 4129 4112 33746 4135 4118 33747 4132 4114 33748 4134 4116 33749 4137 4119 33750 4136 4117 33751 4134 4116 33752 4136 4117 33753 4137 4119 33754 4139 4121 33755 4128 4111 33756 4131 4122 33757 4138 4120 33758 4090 4079 33759 4091 4123 33760 4141 4125 33761 4110 7949 33762 4113 4097 33763 4140 4124 33764 4118 4102 33765 4119 4126 33766 4143 4128 33767 4142 4127 33768 3941 4129 33769 4143 4128 33770 4100 4086 33771 4101 4130 33772 4145 4132 33773 4106 4092 33774 4109 4133 33775 4144 4131 33776 4149 4137 33777 4146 4134 33778 4148 4136 33779 4150 4154 33780 4149 4137 33781 4151 4138 33782 4155 4150 33783 4152 4139 33784 4154 4141 33785 4157 4143 33786 4156 4142 33787 4153 4140 33788 4159 4145 33789 4156 4142 33790 4158 4144 33791 4160 4158 33792 4159 4145 33793 4161 4146 33794 4162 4156 33795 4163 4147 33796 4165 4149 33797 4163 4147 33798 4152 4139 33799 4164 4148 33800 4166 4164 33801 4167 4151 33802 4169 4153 33803 4171 4157 33804 4150 4154 33805 4170 4155 33806 4170 4155 33807 4162 4156 33808 4171 4157 33809 4169 4153 33810 4168 4152 33811 4106 4092 33812 4156 4142 33813 4159 4145 33814 4097 4083 33815 4101 4130 33816 4098 4085 33817 4160 4158 33818 4155 4150 33819 4154 4141 33820 4092 4091 33821 4154 4141 33822 4156 4142 33823 4093 4080 33824 4102 4098 33825 4165 4149 33826 4103 4088 33827 4164 4148 33828 4155 4150 33829 4103 4088 33830 4173 4161 33831 4150 4154 33832 4172 4159 33833 4165 4149 33834 4102 4098 33835 4171 4157 33836 4174 7950 33837 4146 4134 33838 4175 4160 33839 4150 4154 33840 4173 4161 33841 4149 4137 33842 4101 4130 33843 4160 4158 33844 4144 4131 33845 4169 4153 33846 4106 4092 33847 4176 4162 33848 4176 4162 33849 4160 4158 33850 4177 4163 33851 4177 4163 33852 4166 4164 33853 4176 4162 33854 4109 4133 33855 4108 4094 33856 3941 4129 33857 4119 4126 33858 4100 4086 33859 4142 4127 33860 4109 4133 33861 3941 4129 33862 4145 4132 33863 4114 4099 33864 4096 4084 33865 4115 4100 33866 4100 4086 33867 4119 4126 33868 4099 4087 33869 4095 4082 33870 4094 4081 33871 4120 4110 33872 4094 4081 33873 4096 4084 33874 4121 4103 33875 4105 4090 33876 4104 4089 33877 4124 4165 33878 4104 4089 33879 4095 4082 33880 4125 4107 33881 4128 4111 33882 4113 4097 33883 4129 4112 33884 4112 4096 33885 4105 4090 33886 4129 4112 33887 4137 4119 33888 4090 4079 33889 4138 4120 33890 4113 4097 33891 4128 4111 33892 4141 4125 33893 4133 4115 33894 4086 4166 33895 4134 4116 33896 4090 4079 33897 4137 4119 33898 4089 4078 33899 4070 4074 33900 4118 4102 33901 4085 4075 33902 4143 4128 33903 3944 3936 33904 4085 4075 33905 4066 4055 33906 4117 4106 33907 4067 4056 33908 4118 4102 33909 4070 4074 33910 4116 4101 33911 4061 4051 33912 4123 4105 33913 4062 4052 33914 4117 4106 33915 4066 4055 33916 4122 4104 33917 4127 4109 33918 4126 4108 33919 4071 4065 33920 4126 4108 33921 4123 4105 33922 4072 4059 33923 4179 4169 33924 4131 4122 33925 4178 4167 33926 4127 4109 33927 4071 4065 33928 4130 4113 33929 4181 4171 33930 4136 4117 33931 4180 4168 33932 4131 4122 33933 4179 4169 33934 4139 4121 33935 4183 4172 33936 4182 4170 33937 4135 4118 33938 4136 4117 33939 4181 4171 33940 4135 4118 33941 4187 4176 33942 4184 4173 33943 4186 4175 33944 4188 4193 33945 4187 4176 33946 4189 4177 33947 4190 4189 33948 4191 4178 33949 4193 4180 33950 4194 4182 33951 4192 4179 33952 4195 4181 33953 4197 4184 33954 4194 4182 33955 4196 4183 33956 4198 4197 33957 4197 4184 33958 4199 4185 33959 4200 4195 33960 4201 4186 33961 4203 4188 33962 4201 4186 33963 4190 4189 33964 4202 4187 33965 4204 4206 33966 4205 4190 33967 4207 4192 33968 4209 4196 33969 4188 4193 33970 4208 4194 33971 4208 4194 33972 4200 4195 33973 4209 4196 33974 4207 4192 33975 4206 4191 33976 4166 4164 33977 4194 4182 33978 4197 4184 33979 4157 4143 33980 4161 4146 33981 4158 4144 33982 4198 4197 33983 4210 4199 33984 4193 4180 33985 4153 4140 33986 4194 4182 33987 4157 4143 33988 4192 4179 33989 4212 4201 33990 4203 4188 33991 4211 4198 33992 4193 4180 33993 4210 4199 33994 4202 4187 33995 4214 4203 33996 4188 4193 33997 4213 4200 33998 4203 4188 33999 4212 4201 34000 4209 4196 34001 4215 7951 34002 4184 4173 34003 4216 4202 34004 4188 4193 34005 4214 4203 34006 4187 4176 34007 4177 4163 34008 4161 4146 34009 4217 4204 34010 4217 4204 34011 4207 4192 34012 4177 4163 34013 4217 4204 34014 4198 4197 34015 4218 4205 34016 4218 4205 34017 4204 4206 34018 4217 4204 34019 4219 4233 34020 4220 4207 34021 4222 4209 34022 4223 4226 34023 4222 4209 34024 4224 4210 34025 4225 4222 34026 4226 4211 34027 4228 4213 34028 4229 4215 34029 4227 4212 34030 4230 4214 34031 4232 4218 34032 4229 4215 34033 4231 4216 34034 4234 4237 34035 4233 4217 34036 4231 4216 34037 4235 4228 34038 4236 4219 34039 4238 4221 34040 4236 4219 34041 4225 4222 34042 4237 4220 34043 4239 4239 34044 4240 4223 34045 4242 4225 34046 4244 4229 34047 4223 4226 34048 4243 4227 34049 4243 4227 34050 4235 4228 34051 4244 4229 34052 4242 4225 34053 4241 4224 34054 4204 4206 34055 4195 4181 34056 4229 4215 34057 4196 4183 34058 4199 4185 34059 4196 4183 34060 4233 4217 34061 4190 4189 34062 4228 4213 34063 4191 4178 34064 4229 4215 34065 4195 4181 34066 4227 4212 34067 4246 4232 34068 4238 4221 34069 4245 4230 34070 4228 4213 34071 4190 4189 34072 4237 4220 34073 4248 4235 34074 4223 4226 34075 4247 4231 34076 4244 4229 34077 4238 4221 34078 4247 4231 34079 4249 7952 34080 4219 4233 34081 4250 4234 34082 4223 4226 34083 4248 4235 34084 4222 4209 34085 4218 4205 34086 4199 4185 34087 4251 4236 34088 4251 4236 34089 4242 4225 34090 4218 4205 34091 4251 4236 34092 4233 4217 34093 4252 4238 34094 4252 4238 34095 4239 4239 34096 4251 4236 34097 4239 4239 34098 4252 4238 34099 4269 4256 34100 4261 4248 34101 4265 4252 34102 4234 4237 34103 4270 4257 34104 4259 4246 34105 4230 4214 34106 4259 4246 34107 4261 4248 34108 4231 4216 34109 4257 4244 34110 4256 4243 34111 4225 4222 34112 4256 4243 34113 4270 4257 34114 4226 4211 34115 4235 4228 34116 4263 4250 34117 4236 4219 34118 4262 4249 34119 4257 4244 34120 4236 4219 34121 4267 4254 34122 4266 4253 34123 4272 4259 34124 4266 4253 34125 4263 4250 34126 4271 4258 34127 4275 4262 34128 4273 4260 34129 4253 4240 34130 4276 4264 34131 4275 4262 34132 4255 4242 34133 4278 4265 34134 4276 4264 34135 4277 4263 34136 4277 4263 34137 4267 4254 34138 4278 4265 34139 4240 4223 34140 4239 4239 34141 4280 4267 34142 4029 4019 34143 4281 4268 34144 4030 4020 34145 4038 4028 34146 4032 4022 34147 4284 4271 34148 4032 4022 34149 4035 4025 34150 4283 4270 34151 4042 4032 34152 4038 4028 34153 4286 4273 34154 4052 4041 34155 4042 4032 34156 4287 4274 34157 4052 4041 34158 4287 4274 34159 4029 4019 34160 3959 3950 34161 4288 4275 34162 4035 4025 34163 3945 3937 34164 4289 4276 34165 3959 3950 34166 4030 4020 34167 4282 4269 34168 4291 4278 34169 4295 4313 34170 4292 4279 34171 4294 4281 34172 4292 4279 34173 4296 4282 34174 4293 4280 34175 4298 4286 34176 4299 4284 34177 4296 4282 34178 4300 4288 34179 4301 4285 34180 4298 4286 34181 4302 4290 34182 4303 4287 34183 4300 4288 34184 4304 4292 34185 4305 4289 34186 4302 4290 34187 4306 4294 34188 4307 4291 34189 4304 4292 34190 4308 4296 34191 4309 4293 34192 4306 4294 34193 4310 4395 34194 4311 4295 34195 4308 4296 34196 4290 4277 34197 4282 4269 34198 4313 4298 34199 4281 4268 34200 4314 4299 34201 4282 4269 34202 4287 4274 34203 4315 4300 34204 4281 4268 34205 4286 4273 34206 4316 4301 34207 4287 4274 34208 4285 4272 34209 4322 4307 34210 4283 4270 34211 4285 4272 34212 4288 4275 34213 4322 4307 34214 4289 4276 34215 4325 4310 34216 4288 4275 34217 4290 4277 34218 4326 4311 34219 4291 4278 34220 4329 4400 34221 4295 4313 34222 4328 4314 34223 4313 4298 34224 4330 4315 34225 4290 4277 34226 4294 4281 34227 4331 4316 34228 4328 4314 34229 4331 4316 34230 4333 4318 34231 4332 4317 34232 4334 4319 34233 4333 4318 34234 4327 4312 34235 4335 4327 34236 4336 4320 34237 4338 4322 34238 4342 4384 34239 4339 4323 34240 4341 4325 34241 4343 4401 34242 4344 4326 34243 4335 4327 34244 4345 4330 34245 4346 4328 34246 4340 4324 34247 4347 4331 34248 4348 4329 34249 4345 4330 34250 4338 4322 34251 4337 4321 34252 4347 4331 34253 4349 4336 34254 4350 4332 34255 4352 4334 34256 4353 4391 34257 4354 4335 34258 4349 4336 34259 4353 4391 34260 4355 4337 34261 4354 4335 34262 4357 4392 34263 4358 4339 34264 4360 4341 34265 4361 4343 34266 4362 4342 34267 4358 4339 34268 4352 4334 34269 4351 4333 34270 4361 4343 34271 4363 4348 34272 4364 4344 34273 4366 4346 34274 4367 4389 34275 4368 4347 34276 4363 4348 34277 4367 4389 34278 4369 4349 34279 4368 4347 34280 4371 4390 34281 4372 4351 34282 4374 4353 34283 4375 4355 34284 4376 4354 34285 4372 4351 34286 4366 4346 34287 4365 4345 34288 4375 4355 34289 4377 4360 34290 4378 4356 34291 4380 4358 34292 4381 4385 34293 4382 4359 34294 4377 4360 34295 4381 4385 34296 4383 4361 34297 4382 4359 34298 4385 4386 34299 4386 4363 34300 4388 4365 34301 4389 4367 34302 4390 4366 34303 4386 4363 34304 4380 4358 34305 4379 4357 34306 4389 4367 34307 4391 4372 34308 4392 4368 34309 4394 4370 34310 4395 4383 34311 4396 4371 34312 4391 4372 34313 4395 4383 34314 4397 4373 34315 4396 4371 34316 4402 4402 34317 4399 4375 34318 4401 4377 34319 4403 4405 34320 4404 4378 34321 4406 4380 34322 4394 4370 34323 4393 4369 34324 4408 4382 34325 4336 4320 34326 4395 4383 34327 4337 4321 34328 4344 4326 34329 4397 4373 34330 4336 4320 34331 4399 4375 34332 4342 4384 34333 4400 4376 34334 4346 4328 34335 4408 4382 34336 4341 4325 34337 4348 4329 34338 4394 4370 34339 4346 4328 34340 4337 4321 34341 4391 4372 34342 4348 4329 34343 4392 4368 34344 4377 4360 34345 4393 4369 34346 4396 4371 34347 4381 4385 34348 4392 4368 34349 4396 4371 34350 4398 4374 34351 4381 4385 34352 4402 4402 34353 4401 4377 34354 4385 4386 34355 4404 4378 34356 4409 4387 34357 4405 4379 34358 4393 4369 34359 4380 4358 34360 4407 4381 34361 4378 4356 34362 4363 4348 34363 4379 4357 34364 4382 4359 34365 4367 4389 34366 4378 4356 34367 4382 4359 34368 4384 4362 34369 4367 4389 34370 4388 4365 34371 4387 4364 34372 4371 4390 34373 4390 4366 34374 4375 4355 34375 4387 4364 34376 4379 4357 34377 4366 4346 34378 4390 4366 34379 4364 4344 34380 4349 4336 34381 4365 4345 34382 4368 4347 34383 4353 4391 34384 4364 4344 34385 4368 4347 34386 4370 4350 34387 4353 4391 34388 4374 4353 34389 4373 4352 34390 4357 4392 34391 4376 4354 34392 4361 4343 34393 4373 4352 34394 4365 4345 34395 4352 4334 34396 4376 4354 34397 4297 4283 34398 4411 4393 34399 4293 4280 34400 4293 4280 34401 4412 4394 34402 4294 4281 34403 4325 4310 34404 4310 4395 34405 4324 4309 34406 4322 4307 34407 4324 4309 34408 4306 4294 34409 4322 4307 34410 4306 4294 34411 4323 4308 34412 4316 4301 34413 4300 4288 34414 4315 4300 34415 4315 4300 34416 4298 4286 34417 4314 4299 34418 4312 4297 34419 4314 4299 34420 4292 4279 34421 4313 4298 34422 4312 4297 34423 4295 4313 34424 4330 4315 34425 4313 4298 34426 4329 4400 34427 4344 4326 34428 4343 4401 34429 4342 4384 34430 4397 4373 34431 4344 4326 34432 4399 4375 34433 4397 4373 34434 4399 4375 34435 4398 4374 34436 4398 4374 34437 4402 4402 34438 4383 4361 34439 4383 4361 34440 4385 4386 34441 4384 4362 34442 4384 4362 34443 4388 4365 34444 4369 4349 34445 4369 4349 34446 4371 4390 34447 4370 4350 34448 4370 4350 34449 4374 4353 34450 4355 4337 34451 4355 4337 34452 4357 4392 34453 4356 4338 34454 4412 4394 34455 4411 4393 34456 4418 4404 34457 4418 4404 34458 4417 4403 34459 4030 4020 34460 4333 4318 34461 4331 4316 34462 4418 4404 34463 4333 4318 34464 4418 4404 34465 4291 4278 34466 4408 4382 34467 4403 4405 34468 4400 4376 34469 4400 4376 34470 4406 4380 34471 4401 4377 34472 4408 4382 34473 4407 4381 34474 4403 4405 34475 4386 4363 34476 4401 4377 34477 4410 4388 34478 4407 4381 34479 4389 4367 34480 4404 4378 34481 4389 4367 34482 4386 4363 34483 4420 4407 34484 4409 4387 34485 4389 4367 34486 4421 4408 34487 4409 4387 34488 4421 4408 34489 4410 4388 34490 4410 4388 34491 4422 4409 34492 4386 4363 34493 4423 4416 34494 4424 4410 34495 4426 4412 34496 4423 4416 34497 4427 4413 34498 4424 4410 34499 4429 4417 34500 4430 4415 34501 4427 4413 34502 4429 4417 34503 4426 4412 34504 4430 4415 34505 4421 4408 34506 4423 4416 34507 4422 4409 34508 4421 4408 34509 4420 4407 34510 4423 4416 34511 4419 4406 34512 4429 4417 34513 4420 4407 34514 4422 4409 34515 4426 4412 34516 4419 4406 34517 4430 4415 34518 4425 4411 34519 4432 4419 34520 4424 4410 34521 4433 4420 34522 4425 4411 34523 4424 4410 34524 4428 4414 34525 4433 4420 34526 4430 4415 34527 4432 4419 34528 4428 4414 34529 4297 4283 34530 4299 4284 34531 4411 4393 34532 4411 4393 34533 4435 4422 34534 4417 4403 34535 4029 4019 34536 4417 4403 34537 4052 4041 34538 4299 4284 34539 4301 4285 34540 4435 4422 34541 4435 4422 34542 4437 4424 34543 4436 4423 34544 4052 4041 34545 4436 4423 34546 4042 4032 34547 4286 4273 34548 4284 4271 34549 4440 4427 34550 4286 4273 34551 4440 4427 34552 4316 4301 34553 4283 4270 34554 4442 4429 34555 4284 4271 34556 4323 4308 34557 4443 4430 34558 4283 4270 34559 4304 4292 34560 4302 4290 34561 4445 4432 34562 4323 4308 34563 4304 4292 34564 4443 4430 34565 4300 4288 34566 4316 4301 34567 4446 4433 34568 4300 4288 34569 4446 4433 34570 4302 4290 34571 4439 4426 34572 4447 4434 34573 4440 4427 34574 4440 4427 34575 4448 4435 34576 4441 4428 34577 4442 4429 34578 4450 4437 34579 4439 4426 34580 4442 4429 34581 4443 4430 34582 4450 4437 34583 4445 4432 34584 4444 4431 34585 4453 4440 34586 4443 4430 34587 4445 4432 34588 4451 4438 34589 4446 4433 34590 4441 4428 34591 4454 4441 34592 4444 4431 34593 4446 4433 34594 4452 4439 34595 4455 4449 34596 4317 4302 34597 4456 4442 34598 4456 4442 34599 4319 4304 34600 4457 4443 34601 4455 4449 34602 4458 4444 34603 4317 4302 34604 4458 4444 34605 4459 4445 34606 4320 4305 34607 4461 4447 34608 4460 4446 34609 4413 4396 34610 4459 4445 34611 4461 4447 34612 4321 4306 34613 4457 4443 34614 4416 4399 34615 4462 4448 34616 4460 4446 34617 4462 4448 34618 4414 4397 34619 4457 4443 34620 4449 4436 34621 4456 4442 34622 4457 4443 34623 4462 4448 34624 4449 4436 34625 4450 4437 34626 4458 4444 34627 4447 4434 34628 4451 4438 34629 4459 4445 34630 4450 4437 34631 4461 4447 34632 4459 4445 34633 4453 4440 34634 4460 4446 34635 4461 4447 34636 4452 4439 34637 4462 4448 34638 4460 4446 34639 4454 4441 34640 4447 4434 34641 4455 4449 34642 4448 4435 34643 4347 4331 34644 4334 4319 34645 4338 4322 34646 4345 4330 34647 4332 4317 34648 4347 4331 34649 4340 4324 34650 4328 4314 34651 4345 4330 34652 4339 4323 34653 4329 4400 34654 4340 4324 34655 4343 4401 34656 4330 4315 34657 4339 4323 34658 4335 4327 34659 4326 4311 34660 4343 4401 34661 4338 4322 34662 4327 4312 34663 4335 4327 34664 4301 4285 34665 4463 4450 34666 4465 4452 34667 4463 4450 34668 4301 4285 34669 4466 4453 34670 4466 4453 34671 4303 4287 34672 4467 4454 34673 4307 4291 34674 4471 4458 34675 4305 4289 34676 4309 4293 34677 4470 4457 34678 4307 4291 34679 4311 4295 34680 4468 4455 34681 4309 4293 34682 4465 4452 34683 4464 4451 34684 4473 4460 34685 4470 4457 34686 4469 4456 34687 4471 4458 34688 4471 4458 34689 4474 4461 34690 4467 4454 34691 4476 4463 34692 4466 4453 34693 4475 4462 34694 4477 4464 34695 4463 4450 34696 4476 4463 34697 4478 4465 34698 4464 4451 34699 4477 4464 34700 4479 4482 34701 4472 4459 34702 4478 4465 34703 4483 4469 34704 4480 4466 34705 4482 4468 34706 4484 4471 34707 4480 4466 34708 4485 4470 34709 4486 4488 34710 4484 4471 34711 4487 4472 34712 4491 4519 34713 4488 4473 34714 4490 4475 34715 4492 4491 34716 4493 4476 34717 4495 4478 34718 4499 4528 34719 4496 4479 34720 4498 4481 34721 4472 4459 34722 4479 4482 34723 4501 4484 34724 4480 4466 34725 4502 4485 34726 4481 4467 34727 4504 4487 34728 4502 4485 34729 4484 4471 34730 4505 4527 34731 4504 4487 34732 4486 4488 34733 4506 4530 34734 4507 4489 34735 4488 4473 34736 4508 4529 34737 4509 4490 34738 4492 4491 34739 4496 4479 34740 4510 4492 34741 4497 4480 34742 4479 4482 34743 4512 4494 34744 4500 4483 34745 4512 4494 34746 4479 4482 34747 4514 4496 34748 4514 4496 34749 4478 4465 34750 4515 4497 34751 4476 4463 34752 4516 4498 34753 4477 4464 34754 4475 4462 34755 4517 4499 34756 4476 4463 34757 4474 4461 34758 4518 4500 34759 4475 4462 34760 4469 4456 34761 4519 4501 34762 4474 4461 34763 4473 4460 34764 4472 4459 34765 4520 4502 34766 4501 4484 34767 4500 4483 34768 4521 4503 34769 4500 4483 34770 4513 4495 34771 4524 4506 34772 4521 4503 34773 4524 4506 34774 4522 4504 34775 4524 4506 34776 4525 4507 34777 4526 4508 34778 4301 4285 34779 4465 4452 34780 4529 4511 34781 4473 4460 34782 4530 4512 34783 4465 4452 34784 4482 4468 34785 4531 4513 34786 4483 4469 34787 4483 4469 34788 4532 4514 34789 4485 4470 34790 4485 4470 34791 4533 4515 34792 4487 4472 34793 4490 4475 34794 4535 4517 34795 4491 4519 34796 4494 4477 34797 4537 4520 34798 4495 4478 34799 4499 4528 34800 4498 4481 34801 4540 4523 34802 4520 4502 34803 4541 4524 34804 4473 4460 34805 4523 4505 34806 4522 4504 34807 4543 4526 34808 4507 4489 34809 4505 4527 34810 4489 4474 34811 4489 4474 34812 4486 4488 34813 4490 4475 34814 4534 4516 34815 4535 4517 34816 4487 4472 34817 4526 4508 34818 4527 4509 34819 4496 4479 34820 4522 4504 34821 4526 4508 34822 4499 4528 34823 4540 4523 34824 4542 4525 34825 4499 4528 34826 4497 4480 34827 4511 4493 34828 4492 4491 34829 4498 4481 34830 4497 4480 34831 4495 4478 34832 4495 4478 34833 4538 4521 34834 4498 4481 34835 4509 4490 34836 4506 4530 34837 4493 4476 34838 4494 4477 34839 4493 4476 34840 4491 4519 34841 4491 4519 34842 4536 4518 34843 4494 4477 34844 4523 4505 34845 4543 4526 34846 4520 4502 34847 4520 4502 34848 4501 4484 34849 4523 4505 34850 4544 4581 34851 4545 4531 34852 4542 4525 34853 4546 4597 34854 4547 4532 34855 4549 4534 34856 4550 4566 34857 4551 4535 34858 4553 4537 34859 4554 4542 34860 4555 4538 34861 4557 4540 34862 4559 4544 34863 4558 4541 34864 4557 4540 34865 4561 4546 34866 4560 4543 34867 4559 4544 34868 4563 4548 34869 4562 4545 34870 4561 4546 34871 4565 4550 34872 4564 4547 34873 4563 4548 34874 4567 4551 34875 4566 4549 34876 4565 4550 34877 4546 4597 34878 4549 4534 34879 4567 4551 34880 4571 4556 34881 4568 4552 34882 4570 4554 34883 4573 4558 34884 4572 4555 34885 4571 4556 34886 4575 4560 34887 4574 4557 34888 4573 4558 34889 4577 4562 34890 4576 4559 34891 4575 4560 34892 4579 4564 34893 4578 4561 34894 4577 4562 34895 4581 4565 34896 4580 4563 34897 4579 4564 34898 4553 4537 34899 4580 4563 34900 4550 4566 34901 4582 4570 34902 4583 4567 34903 4585 4569 34904 4586 4573 34905 4582 4570 34906 4587 4571 34907 4589 4575 34908 4588 4572 34909 4587 4571 34910 4591 4577 34911 4590 4574 34912 4589 4575 34913 4593 4579 34914 4592 4576 34915 4591 4577 34916 4595 4580 34917 4594 4578 34918 4593 4579 34919 4542 4525 34920 4594 4578 34921 4544 4581 34922 4553 4537 34923 4552 4536 34924 4544 4581 34925 4544 4581 34926 4595 4580 34927 4553 4537 34928 4595 4580 34929 4593 4579 34930 4596 4582 34931 4593 4579 34932 4591 4577 34933 4597 4583 34934 4591 4577 34935 4589 4575 34936 4598 4584 34937 4589 4575 34938 4587 4571 34939 4599 4585 34940 4587 4571 34941 4585 4569 34942 4600 4586 34943 4585 4569 34944 4584 4568 34945 4601 4587 34946 4549 4534 34947 4548 4533 34948 4550 4566 34949 4550 4566 34950 4581 4565 34951 4549 4534 34952 4581 4565 34953 4579 4564 34954 4603 4589 34955 4579 4564 34956 4577 4562 34957 4604 4590 34958 4577 4562 34959 4575 4560 34960 4605 4591 34961 4575 4560 34962 4573 4558 34963 4606 4592 34964 4573 4558 34965 4571 4556 34966 4607 4593 34967 4571 4556 34968 4570 4554 34969 4608 4594 34970 4610 4599 34971 4611 4596 34972 4546 4597 34973 4546 4597 34974 4567 4551 34975 4610 4599 34976 4567 4551 34977 4565 4550 34978 4612 4598 34979 4565 4550 34980 4563 4548 34981 4613 4600 34982 4563 4548 34983 4561 4546 34984 4614 4601 34985 4561 4546 34986 4559 4544 34987 4615 4602 34988 4559 4544 34989 4557 4540 34990 4616 4603 34991 4556 4539 34992 4618 4605 34993 4557 4540 34994 4619 4617 34995 4620 4606 34996 4622 4608 34997 4623 4707 34998 4624 4609 34999 4626 4611 35000 4630 4620 35001 4627 4612 35002 4629 4614 35003 4622 4608 35004 4631 4615 35005 4619 4617 35006 4623 4707 35007 4626 4611 35008 4634 4619 35009 4627 4612 35010 4630 4620 35011 4636 4622 35012 4631 4615 35013 4637 4623 35014 4632 4616 35015 4634 4619 35016 4633 4618 35017 4640 4626 35018 4636 4622 35019 4635 4621 35020 4642 4628 35021 4637 4623 35022 4647 4633 35023 4638 4624 35024 4639 4625 35025 4649 4635 35026 4640 4626 35027 4651 4638 35028 4652 4637 35029 4641 4627 35030 4653 4660 35031 4643 4629 35032 4651 4638 35033 4645 4631 35034 4650 4636 35035 4644 4630 35036 4654 4716 35037 4648 4634 35038 4646 4632 35039 4629 4614 35040 4628 4613 35041 4656 4640 35042 4624 4609 35043 4657 4641 35044 4625 4610 35045 4620 4606 35046 4659 4643 35047 4621 4607 35048 4661 4719 35049 4662 4645 35050 4664 4647 35051 4668 4651 35052 4665 4648 35053 4667 4650 35054 4660 4644 35055 4659 4643 35056 4668 4651 35057 4672 4658 35058 4669 4652 35059 4671 4654 35060 4676 4659 35061 4673 4655 35062 4675 4657 35063 4667 4650 35064 4666 4649 35065 4672 4658 35066 4663 4646 35067 4662 4645 35068 4676 4659 35069 4677 4664 35070 4678 4661 35071 4680 4663 35072 4681 4666 35073 4677 4664 35074 4682 4665 35075 4683 4717 35076 4681 4666 35077 4684 4667 35078 4685 4672 35079 4686 4668 35080 4688 4670 35081 4690 4674 35082 4689 4671 35083 4688 4670 35084 4692 4675 35085 4691 4673 35086 4690 4674 35087 4656 4640 35088 4655 4639 35089 4692 4675 35090 4658 4642 35091 4657 4641 35092 4694 4677 35093 4695 4681 35094 4696 4678 35095 4698 4680 35096 4699 4718 35097 4695 4681 35098 4700 4682 35099 4704 4687 35100 4701 4683 35101 4703 4685 35102 4706 4689 35103 4705 4686 35104 4704 4687 35105 4708 4690 35106 4707 4688 35107 4706 4689 35108 4694 4677 35109 4693 4676 35110 4708 4690 35111 4519 4501 35112 4653 4660 35113 4518 4500 35114 4518 4500 35115 4651 4638 35116 4517 4499 35117 4635 4621 35118 4516 4498 35119 4641 4627 35120 4630 4620 35121 4515 4497 35122 4635 4621 35123 4629 4614 35124 4514 4496 35125 4630 4620 35126 4656 4640 35127 4512 4494 35128 4629 4614 35129 4692 4675 35130 4709 4691 35131 4656 4640 35132 4692 4675 35133 4690 4674 35134 4709 4691 35135 4688 4670 35136 4711 4693 35137 4690 4674 35138 4687 4669 35139 4712 4694 35140 4688 4670 35141 4682 4665 35142 4713 4695 35143 4684 4667 35144 4680 4663 35145 4715 4697 35146 4682 4665 35147 4679 4662 35148 4716 4698 35149 4680 4663 35150 4644 4630 35151 4649 4635 35152 4643 4629 35153 4642 4628 35154 4652 4637 35155 4639 4625 35156 4633 4618 35157 4636 4622 35158 4639 4625 35159 4626 4611 35160 4627 4612 35161 4633 4618 35162 4625 4610 35163 4628 4613 35164 4626 4611 35165 4625 4610 35166 4658 4642 35167 4628 4613 35168 4658 4642 35169 4694 4677 35170 4655 4639 35171 4694 4677 35172 4708 4690 35173 4717 4699 35174 4706 4689 35175 4719 4701 35176 4708 4690 35177 4704 4687 35178 4720 4702 35179 4706 4689 35180 4703 4685 35181 4721 4703 35182 4704 4687 35183 4698 4680 35184 4722 4704 35185 4700 4682 35186 4697 4679 35187 4724 4706 35188 4698 4680 35189 4646 4632 35190 4647 4633 35191 4645 4631 35192 4640 4626 35193 4650 4636 35194 4637 4623 35195 4634 4619 35196 4640 4626 35197 4631 4615 35198 4623 4707 35199 4634 4619 35200 4622 4608 35201 4622 4608 35202 4621 4607 35203 4623 4707 35204 4621 4607 35205 4660 4644 35206 4624 4609 35207 4660 4644 35208 4668 4651 35209 4657 4641 35210 4667 4650 35211 4726 4709 35212 4668 4651 35213 4672 4658 35214 4727 4710 35215 4667 4650 35216 4671 4654 35217 4728 4711 35218 4672 4658 35219 4663 4646 35220 4729 4712 35221 4664 4647 35222 4676 4659 35223 4731 4714 35224 4663 4646 35225 4675 4657 35226 4732 4715 35227 4676 4659 35228 4686 4668 35229 4683 4717 35230 4687 4669 35231 4684 4667 35232 4714 4696 35233 4687 4669 35234 4700 4682 35235 4723 4705 35236 4703 4685 35237 4702 4684 35238 4699 4718 35239 4703 4685 35240 4671 4654 35241 4670 4653 35242 4664 4647 35243 4664 4647 35244 4730 4713 35245 4671 4654 35246 4736 4732 35247 4733 4720 35248 4735 4722 35249 4738 4724 35250 4734 4721 35251 4737 4723 35252 4740 4728 35253 4738 4724 35254 4739 4725 35255 4743 4730 35256 4740 4728 35257 4744 4729 35258 4745 4731 35259 4743 4730 35260 4741 4726 35261 4741 4726 35262 4468 4455 35263 4745 4731 35264 4747 4739 35265 4736 4732 35266 4746 4733 35267 4748 4735 35268 4742 4727 35269 4744 4729 35270 4744 4729 35271 4739 4725 35272 4748 4735 35273 4739 4725 35274 4737 4723 35275 4749 4734 35276 4737 4723 35277 4733 4720 35278 4750 4736 35279 4752 4738 35280 4751 4737 35281 4736 4732 35282 4753 4756 35283 4752 4738 35284 4747 4739 35285 4757 4759 35286 4754 4740 35287 4756 4742 35288 4754 4740 35289 4758 4743 35290 4755 4741 35291 4758 4743 35292 4760 4745 35293 4759 4744 35294 4765 4761 35295 4762 4747 35296 4764 4749 35297 4766 4763 35298 4767 4750 35299 4769 4752 35300 4770 4766 35301 4771 4753 35302 4773 4755 35303 4775 4768 35304 4753 4756 35305 4774 4757 35306 4777 7953 35307 4776 4758 35308 4757 4759 35309 4778 4760 35310 4758 4743 35311 4776 4758 35312 4779 4798 35313 4760 4745 35314 4778 4760 35315 4780 4801 35316 4762 4747 35317 4781 4762 35318 4782 4800 35319 4766 4763 35320 4783 4764 35321 4785 7954 35322 4784 4765 35323 4773 4755 35324 4787 4779 35325 4786 4767 35326 4775 4768 35327 4786 4767 35328 4788 4769 35329 4753 4756 35330 4788 4769 35331 4789 4770 35332 4752 4738 35333 4750 4736 35334 4751 4737 35335 4790 4771 35336 4749 4734 35337 4750 4736 35338 4791 4772 35339 4748 4735 35340 4749 4734 35341 4792 4773 35342 4792 4773 35343 4793 4774 35344 4748 4735 35345 4774 4757 35346 4747 4739 35347 4794 4775 35348 4798 4780 35349 4775 4768 35350 4795 4776 35351 4799 4781 35352 4787 4779 35353 4798 4780 35354 4800 4782 35355 4798 4780 35356 4797 4778 35357 4801 4799 35358 4799 4781 35359 4800 4782 35360 4735 4722 35361 4734 4721 35362 4803 4784 35363 4746 4733 35364 4735 4722 35365 4804 4785 35366 4756 4742 35367 4755 4741 35368 4806 4787 35369 4755 4741 35370 4759 4744 35371 4805 4786 35372 4759 4744 35373 4761 4746 35374 4807 4788 35375 4764 4749 35376 4763 4748 35377 4810 4791 35378 4812 4802 35379 4768 4751 35380 4811 4792 35381 4772 4754 35382 4771 4753 35383 4814 4794 35384 4794 4775 35385 4746 4733 35386 4815 4795 35387 4797 4778 35388 4796 4777 35389 4817 4797 35390 4781 4762 35391 4765 4761 35392 4779 4798 35393 4760 4745 35394 4765 4761 35395 4761 4746 35396 4810 4791 35397 4808 4789 35398 4764 4749 35399 4784 4765 35400 4801 4799 35401 4770 4766 35402 4770 4766 35403 4800 4782 35404 4771 4753 35405 4817 4797 35406 4813 4793 35407 4797 4778 35408 4785 7954 35409 4773 4755 35410 4782 4800 35411 4773 4755 35412 4772 4754 35413 4766 4763 35414 4814 4794 35415 4811 4792 35416 4772 4754 35417 4783 4764 35418 4769 4752 35419 4780 4801 35420 4762 4747 35421 4769 4752 35422 4763 4748 35423 4809 4790 35424 4763 4748 35425 4812 4802 35426 4796 4777 35427 4794 4775 35428 4816 4796 35429 4795 4776 35430 4774 4757 35431 4796 4777 35432 4818 4851 35433 4817 4797 35434 4819 4803 35435 4820 4823 35436 4821 4804 35437 4823 4806 35438 4824 4837 35439 4825 4807 35440 4827 4809 35441 4828 7955 35442 4829 4810 35443 4831 4812 35444 4828 7955 35445 4832 4813 35446 4829 4810 35447 4832 4813 35448 4834 4815 35449 4833 4814 35450 4834 4815 35451 4836 4817 35452 4835 4816 35453 4836 4817 35454 4838 4819 35455 4837 4818 35456 4838 4819 35457 4840 4821 35458 4839 4820 35459 4840 4821 35460 4821 4804 35461 4841 4822 35462 4845 7956 35463 4842 4824 35464 4844 4826 35465 4842 4824 35466 4846 4827 35467 4843 4825 35468 4846 4827 35469 4848 4829 35470 4847 4828 35471 4848 4829 35472 4850 4831 35473 4849 4830 35474 4850 4831 35475 4852 4833 35476 4851 4832 35477 4852 4833 35478 4854 4835 35479 4853 4834 35480 4825 4807 35481 4824 4837 35482 4854 4835 35483 4856 4842 35484 4857 4838 35485 4859 4840 35486 4860 7957 35487 4861 4841 35488 4856 4842 35489 4860 7957 35490 4862 4843 35491 4861 4841 35492 4862 4843 35493 4864 4845 35494 4863 4844 35495 4864 4845 35496 4866 4847 35497 4865 4846 35498 4866 4847 35499 4868 4849 35500 4867 4848 35501 4817 4797 35502 4818 4851 35503 4868 4849 35504 4825 4807 35505 4818 4851 35506 4826 4808 35507 4870 4852 35508 4869 4850 35509 4825 4807 35510 4871 4853 35511 4867 4848 35512 4870 4852 35513 4872 4854 35514 4865 4846 35515 4871 4853 35516 4873 4855 35517 4863 4844 35518 4872 4854 35519 4874 4856 35520 4861 4841 35521 4873 4855 35522 4875 4857 35523 4857 4838 35524 4874 4856 35525 4876 7958 35526 4858 4839 35527 4875 4857 35528 4821 4804 35529 4824 4837 35530 4822 4805 35531 4877 4858 35532 4855 4836 35533 4821 4804 35534 4878 4859 35535 4853 4834 35536 4877 4858 35537 4879 4860 35538 4851 4832 35539 4878 4859 35540 4880 4861 35541 4849 4830 35542 4879 4860 35543 4881 4862 35544 4847 4828 35545 4880 4861 35546 4882 4863 35547 4843 4825 35548 4881 4862 35549 4883 7959 35550 4844 4826 35551 4882 4863 35552 4610 4599 35553 4820 4823 35554 4611 4596 35555 4612 4598 35556 4841 4822 35557 4610 4599 35558 4613 4600 35559 4839 4820 35560 4612 4598 35561 4614 4601 35562 4837 4818 35563 4613 4600 35564 4615 4602 35565 4835 4816 35566 4614 4601 35567 4884 4864 35568 4833 4814 35569 4615 4602 35570 4885 4865 35571 4829 4810 35572 4884 4864 35573 4886 7960 35574 4830 4811 35575 4885 4865 35576 4619 4617 35577 4887 4866 35578 4620 4606 35579 4889 4875 35580 4890 4868 35581 4892 4870 35582 4896 4895 35583 4893 4871 35584 4895 4873 35585 4887 4866 35586 4619 4617 35587 4897 4874 35588 4899 4879 35589 4890 4868 35590 4898 4876 35591 4901 4881 35592 4894 4872 35593 4900 4877 35594 4897 4874 35595 4632 4616 35596 4902 4878 35597 4904 4889 35598 4899 4879 35599 4903 4880 35600 4906 4890 35601 4901 4881 35602 4905 4882 35603 4648 4634 35604 4911 4887 35605 4638 4624 35606 4913 4894 35607 4912 4888 35608 4903 4880 35609 4914 4893 35610 4906 4890 35611 4915 4891 35612 4915 4891 35613 4907 4883 35614 4914 4893 35615 4909 4885 35616 4908 4884 35617 4913 4894 35618 4911 4887 35619 4648 4634 35620 4910 4886 35621 4918 4947 35622 4896 4895 35623 4917 4896 35624 4892 4870 35625 4891 4869 35626 4920 4898 35627 4620 4606 35628 4888 4867 35629 4659 4643 35630 4922 4966 35631 4923 4900 35632 4925 4902 35633 4665 4648 35634 4926 4903 35635 4666 4649 35636 4665 4648 35637 4659 4643 35638 4926 4903 35639 4669 4652 35640 4928 4905 35641 4930 4907 35642 4934 7961 35643 4931 4908 35644 4933 4910 35645 4666 4649 35646 4927 4904 35647 4669 4652 35648 4925 4902 35649 4924 4901 35650 4931 4908 35651 4935 4915 35652 4936 4911 35653 4938 4913 35654 4939 4917 35655 4940 4914 35656 4935 4915 35657 4941 4964 35658 4942 4916 35659 4939 4917 35660 4943 7962 35661 4944 4918 35662 4946 4920 35663 4943 7962 35664 4947 4921 35665 4944 4918 35666 4947 4921 35667 4949 4923 35668 4948 4922 35669 4918 4947 35670 4917 4896 35671 4949 4923 35672 4920 4898 35673 4919 4897 35674 4952 4926 35675 4953 4931 35676 4954 4927 35677 4956 4929 35678 4957 4965 35679 4958 4930 35680 4953 4931 35681 4959 7963 35682 4960 4932 35683 4962 4934 35684 4959 7963 35685 4963 4935 35686 4960 4932 35687 4963 4935 35688 4965 4937 35689 4964 4936 35690 4952 4926 35691 4951 4925 35692 4965 4937 35693 4914 4893 35694 4916 4892 35695 4792 4773 35696 4792 4773 35697 4791 4772 35698 4914 4893 35699 4791 4772 35700 4790 4771 35701 4906 4890 35702 4790 4771 35703 4789 4770 35704 4901 4881 35705 4895 4873 35706 4894 4872 35707 4788 4769 35708 4917 4896 35709 4895 4873 35710 4786 4767 35711 4967 4939 35712 4950 4924 35713 4786 4767 35714 4968 4940 35715 4948 4922 35716 4967 4939 35717 4969 4941 35718 4944 4918 35719 4968 4940 35720 4945 4919 35721 4944 4918 35722 4970 4942 35723 4940 4914 35724 4942 4916 35725 4972 4944 35726 4936 4911 35727 4940 4914 35728 4973 4945 35729 4937 4912 35730 4936 4911 35731 4974 4946 35732 4908 4884 35733 4907 4883 35734 4912 4888 35735 4912 4888 35736 4915 4891 35737 4904 4889 35738 4905 4882 35739 4900 4877 35740 4904 4889 35741 4900 4877 35742 4893 4871 35743 4899 4879 35744 4891 4869 35745 4890 4868 35746 4896 4895 35747 4918 4947 35748 4919 4897 35749 4896 4895 35750 4975 4948 35751 4951 4925 35752 4918 4947 35753 4976 4949 35754 4966 4938 35755 4975 4948 35756 4977 4950 35757 4964 4936 35758 4976 4949 35759 4978 4951 35760 4960 4932 35761 4977 4950 35762 4961 4933 35763 4960 4932 35764 4979 4952 35765 4954 4927 35766 4958 4930 35767 4981 4954 35768 4955 4928 35769 4954 4927 35770 4982 4955 35771 4913 4894 35772 4911 4887 35773 4909 4885 35774 4911 4887 35775 4913 4894 35776 4902 4878 35777 4898 4876 35778 4897 4874 35779 4903 4880 35780 4889 4875 35781 4887 4866 35782 4898 4876 35783 4892 4870 35784 4888 4867 35785 4889 4875 35786 4920 4898 35787 4921 4899 35788 4892 4870 35789 4983 4956 35790 4926 4903 35791 4920 4898 35792 4984 4957 35793 4927 4904 35794 4983 4956 35795 4928 4905 35796 4927 4904 35797 4985 4958 35798 4929 4906 35799 4928 4905 35800 4986 4959 35801 4924 4901 35802 4923 4900 35803 4988 4961 35804 4932 4909 35805 4924 4901 35806 4989 4962 35807 4933 4910 35808 4932 4909 35809 4990 4963 35810 4946 4920 35811 4945 4919 35812 4941 4964 35813 4970 4942 35814 4971 4943 35815 4945 4919 35816 4958 4930 35817 4961 4933 35818 4980 4953 35819 4962 4934 35820 4961 4933 35821 4957 4965 35822 4930 4907 35823 4929 4906 35824 4922 4966 35825 4986 4959 35826 4987 4960 35827 4929 4906 35828 4254 4241 35829 4274 4261 35830 4992 4968 35831 4995 4971 35832 4993 4969 35833 4994 4970 35834 4996 4974 35835 4260 4247 35836 4995 4971 35837 4264 4251 35838 4268 4255 35839 4997 4972 35840 4268 4255 35841 4254 4241 35842 4998 4973 35843 4279 4266 35844 4260 4247 35845 4999 4975 35846 4274 4261 35847 5000 4976 35848 4991 4967 35849 5005 4982 35850 5002 4978 35851 5004 4980 35852 5007 4983 35853 5006 4981 35854 5005 4982 35855 5008 4985 35856 5006 4981 35857 5009 4984 35858 5010 4986 35859 5008 4985 35860 4734 4721 35861 5011 4987 35862 5010 4986 35863 4738 4724 35864 5012 4988 35865 5011 4987 35866 4740 4728 35867 5013 4989 35868 5012 4988 35869 4743 4730 35870 5014 4990 35871 5013 4989 35872 4745 4731 35873 4310 4395 35874 5014 4990 35875 4311 4295 35876 5016 4992 35877 4991 4967 35878 5015 4991 35879 4992 4968 35880 4991 4967 35881 5017 4993 35882 4998 4973 35883 4992 4968 35884 5018 4994 35885 4997 4972 35886 4998 4973 35887 5019 4995 35888 5020 4996 35889 4994 4970 35890 5019 4995 35891 5021 4997 35892 4995 4971 35893 5020 4996 35894 4996 4974 35895 4995 4971 35896 5022 4998 35897 5023 4999 35898 4999 4975 35899 5022 4998 35900 4289 4276 35901 4999 4975 35902 4325 4310 35903 5001 4977 35904 5000 4976 35905 5025 5001 35906 5004 4980 35907 5003 4979 35908 5027 5003 35909 5015 4991 35910 5001 4977 35911 5028 5004 35912 5004 4980 35913 5027 5003 35914 5030 5006 35915 5030 5006 35916 5029 5005 35917 5032 5008 35918 5000 4976 35919 5032 5008 35920 5024 5000 35921 5033 5015 35922 5034 5009 35923 5036 5011 35924 5040 5017 35925 5037 5012 35926 5039 5014 35927 5041 5084 35928 5033 5015 35929 5042 5016 35930 5043 5019 35931 5040 5017 35932 5044 5018 35933 5045 5021 35934 5043 5019 35935 5046 5020 35936 5034 5009 35937 5045 5021 35938 5035 5010 35939 5047 5025 35940 5048 5022 35941 5050 5024 35942 5051 5028 35943 5047 5025 35944 5052 5026 35945 5054 5085 35946 5053 5027 35947 5052 5026 35948 5055 5081 35949 5056 5029 35950 5058 5031 35951 5059 5033 35952 5058 5031 35953 5060 5032 35954 5048 5022 35955 5059 5033 35956 5049 5023 35957 5061 5037 35958 5062 5034 35959 5064 5036 35960 5065 5040 35961 5061 5037 35962 5066 5038 35963 5068 5080 35964 5067 5039 35965 5066 5038 35966 5069 5079 35967 5070 5041 35968 5072 5043 35969 5073 5045 35970 5072 5043 35971 5074 5044 35972 5062 5034 35973 5073 5045 35974 5063 5035 35975 5075 5049 35976 5076 5046 35977 5078 5048 35978 5079 5052 35979 5075 5049 35980 5080 5050 35981 5082 5078 35982 5081 5051 35983 5080 5050 35984 5086 5056 35985 5083 5053 35986 5085 5055 35987 5087 5058 35988 5086 5056 35989 5088 5057 35990 5076 5046 35991 5087 5058 35992 5077 5047 35993 5089 5062 35994 5090 5059 35995 5092 5061 35996 5093 5065 35997 5089 5062 35998 5094 5063 35999 5096 5075 36000 5095 5064 36001 5094 5063 36002 5100 5074 36003 5097 5066 36004 5099 5068 36005 5101 5088 36006 5102 5069 36007 5104 5071 36008 5090 5059 36009 5105 5072 36010 5091 5060 36011 5036 5011 36012 5035 5010 36013 5093 5065 36014 5042 5016 36015 5036 5011 36016 5095 5064 36017 5039 5014 36018 5038 5013 36019 5100 5074 36020 5044 5018 36021 5039 5014 36022 5105 5072 36023 5046 5020 36024 5044 5018 36025 5090 5059 36026 5035 5010 36027 5046 5020 36028 5089 5062 36029 5092 5061 36030 5091 5060 36031 5075 5049 36032 5094 5063 36033 5092 5061 36034 5079 5052 36035 5081 5051 36036 5096 5075 36037 5079 5052 36038 5098 5067 36039 5083 5053 36040 5099 5068 36041 5104 5071 36042 5103 5070 36043 5108 5077 36044 5091 5060 36045 5106 5073 36046 5076 5046 36047 5078 5048 36048 5077 5047 36049 5061 5037 36050 5080 5050 36051 5078 5048 36052 5065 5040 36053 5067 5039 36054 5082 5078 36055 5065 5040 36056 5084 5054 36057 5069 5079 36058 5085 5055 36059 5088 5057 36060 5085 5055 36061 5073 5045 36062 5077 5047 36063 5088 5057 36064 5062 5034 36065 5064 5036 36066 5063 5035 36067 5047 5025 36068 5066 5038 36069 5064 5036 36070 5051 5028 36071 5053 5027 36072 5068 5080 36073 5051 5028 36074 5070 5041 36075 5055 5081 36076 5071 5042 36077 5074 5044 36078 5071 5042 36079 5059 5033 36080 5063 5035 36081 5074 5044 36082 5048 5022 36083 5007 4983 36084 5005 4982 36085 5110 5083 36086 5005 4982 36087 5004 4980 36088 5109 5082 36089 4999 4975 36090 4289 4276 36091 4279 4266 36092 4325 4310 36093 5023 4999 36094 4310 4395 36095 5014 4990 36096 5023 4999 36097 5013 4989 36098 5022 4998 36099 5021 4997 36100 5013 4989 36101 5021 4997 36102 5020 4996 36103 5012 4988 36104 5020 4996 36105 5019 4995 36106 5011 4987 36107 5019 4995 36108 5018 4994 36109 5010 4986 36110 5018 4994 36111 5017 4993 36112 5008 4985 36113 5006 4981 36114 5017 4993 36115 5002 4978 36116 5002 4978 36117 5016 4992 36118 5003 4979 36119 5003 4979 36120 5015 4991 36121 5026 5002 36122 5037 5012 36123 5041 5084 36124 5038 5013 36125 5038 5013 36126 5042 5016 36127 5097 5066 36128 5095 5064 36129 5096 5075 36130 5097 5066 36131 5096 5075 36132 5081 5051 36133 5098 5067 36134 5081 5051 36135 5082 5078 36136 5083 5053 36137 5082 5078 36138 5067 5039 36139 5084 5054 36140 5067 5039 36141 5068 5080 36142 5069 5079 36143 5068 5080 36144 5053 5027 36145 5070 5041 36146 5053 5027 36147 5054 5085 36148 5055 5081 36149 5109 5082 36150 5111 5086 36151 5110 5083 36152 5111 5086 36153 4274 4261 36154 5112 5087 36155 5109 5082 36156 5030 5006 36157 5111 5086 36158 5032 5008 36159 5000 4976 36160 5111 5086 36161 5105 5072 36162 5100 5074 36163 5101 5088 36164 5100 5074 36165 5099 5068 36166 5102 5069 36167 5104 5071 36168 5106 5073 36169 5101 5088 36170 5099 5068 36171 5086 5056 36172 5103 5070 36173 5108 5077 36174 5087 5058 36175 5104 5071 36176 5114 5092 36177 5086 5056 36178 5113 5089 36179 5113 5089 36180 5087 5058 36181 5115 5090 36182 5108 5077 36183 5107 5076 36184 5115 5090 36185 5116 5091 36186 5107 5076 36187 5114 5092 36188 5117 5097 36189 5118 5093 36190 5120 5095 36191 5122 5098 36192 5121 5096 36193 5120 5095 36194 5123 5100 36195 5121 5096 36196 5124 5099 36197 5119 5094 36198 5118 5093 36199 5124 5099 36200 5115 5090 36201 5116 5091 36202 5117 5097 36203 5121 5096 36204 5113 5089 36205 5117 5097 36206 5123 5100 36207 5114 5092 36208 5121 5096 36209 5118 5093 36210 5116 5091 36211 5123 5100 36212 5126 5102 36213 5119 5094 36214 5125 5101 36215 5120 5095 36216 5119 5094 36217 5127 5103 36218 5128 5104 36219 5122 5098 36220 5127 5103 36221 5124 5099 36222 5122 5098 36223 5125 5101 36224 5009 4984 36225 5007 4983 36226 5129 5105 36227 5110 5083 36228 5112 5087 36229 5129 5105 36230 5130 5106 36231 5112 5087 36232 4268 4255 36233 5009 4984 36234 5129 5105 36235 4734 4721 36236 5129 5105 36237 5130 5106 36238 5131 5107 36239 5132 5108 36240 5130 5106 36241 4264 4251 36242 5025 5001 36243 5024 5000 36244 5033 5015 36245 5028 5004 36246 5025 5001 36247 5041 5084 36248 5026 5002 36249 5028 5004 36250 5037 5012 36251 5027 5003 36252 5026 5002 36253 5040 5017 36254 5029 5005 36255 5027 5003 36256 5043 5019 36257 5031 5007 36258 5029 5005 36259 5045 5021 36260 5024 5000 36261 5031 5007 36262 5034 5009 36263 6693 6686 40644 6694 6678 40645 6696 6680 40646 6697 6685 40647 6698 6681 40648 6700 6683 40649 6701 6713 40650 6702 6684 40651 6697 6685 40652 6700 6683 40653 6699 6682 40654 6693 6686 40655 6703 7967 40656 6704 6687 40657 6706 6689 40658 6706 6689 40659 6705 6688 40660 6708 6691 40661 6708 6691 40662 6707 6690 40663 6710 6693 40664 6710 6693 40665 6709 6692 40666 6712 6695 40667 6702 6684 40668 6713 6696 40669 6698 6681 40670 6694 6678 40671 6699 6682 40672 6716 6699 40673 6698 6681 40674 6714 6697 40675 6699 6682 40676 6694 6678 40677 6716 6699 40678 6695 6679 40679 6713 7968 40680 6718 7968 40681 6714 7968 40682 6716 7969 40683 6715 7969 40684 6721 7969 40685 6714 7970 40686 6719 7970 40687 6715 7970 40688 6716 7971 40689 6721 7971 40690 6717 7971 40691 6723 6712 40692 6724 6705 40693 6726 6707 40694 6722 7972 40695 6727 6708 40696 6717 6700 40697 6726 6707 40698 6725 6706 40699 6730 6711 40700 6727 6708 40701 6723 6712 40702 6728 6709 40703 6704 6687 40704 6701 6713 40705 6705 6688 40706 6705 6688 40707 6697 6685 40708 6707 6690 40709 6707 6690 40710 6700 6683 40711 6709 6692 40712 6709 6692 40713 6693 6686 40714 6711 6694 40715 6731 6721 40716 6732 6714 40717 6734 6716 40718 6735 6720 40719 6736 6717 40720 6738 6719 40721 6701 6713 40722 6735 6720 40723 6702 6684 40724 6736 6717 40725 6731 6721 40726 6737 6718 40727 6703 7967 40728 6739 6722 40729 6704 6687 40730 6739 6722 40731 6741 6724 40732 6740 6723 40733 6741 6724 40734 6743 6726 40735 6742 6725 40736 6743 6726 40737 6745 6728 40738 6744 6727 40739 6702 6684 40740 6738 6719 40741 6713 6696 40742 6749 6732 40743 6737 6718 40744 6748 6731 40745 6738 6719 40746 6737 6718 40747 6747 6730 40748 6734 6716 40749 6733 6715 40750 6748 6731 40751 6713 7973 40752 6747 7973 40753 6718 7973 40754 6753 7974 40755 6749 7974 40756 6752 7974 40757 6747 7975 40758 6749 7975 40759 6751 7975 40760 6748 7976 40761 6750 7976 40762 6752 7976 40763 6755 6744 40764 6756 6738 40765 6758 6740 40766 6754 7977 40767 6750 6733 40768 6760 6742 40769 6762 7978 40770 6757 6739 40771 6761 6743 40772 6760 6742 40773 6759 6741 40774 6755 6744 40775 6704 6687 40776 6740 6723 40777 6701 6713 40778 6740 6723 40779 6742 6725 40780 6735 6720 40781 6742 6725 40782 6744 6727 40783 6736 6717 40784 6744 6727 40785 6746 6729 40786 6731 6721 40787</p>\r\n        </polylist>\r\n      </mesh>\r\n    </geometry>\r\n  </library_geometries>\r\n  <library_controllers/>\r\n  <library_visual_scenes>\r\n    <visual_scene id=\"Scene\" name=\"Scene\">\r\n      <node id=\"Elf01_posed_002\" name=\"Elf01_posed_002\" type=\"NODE\">\r\n        <matrix sid=\"transform\">0.1658046 0 0 0.3918409 0 -2.7013e-8 -0.1658046 -0.5659924 0 0.1658046 -2.7013e-8 0 0 0 0 1</matrix>\r\n        <instance_geometry url=\"#Elf01_posed_002-mesh\">\r\n          <bind_material>\r\n            <technique_common>\r\n              <instance_material symbol=\"pasted__lambert2SG_001-material\" target=\"#pasted__lambert2SG_001-material\">\r\n                <bind_vertex_input semantic=\"UVMap\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n              </instance_material>\r\n              <instance_material symbol=\"lambert22SG_001-material\" target=\"#lambert22SG_001-material\">\r\n                <bind_vertex_input semantic=\"UVMap\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n              </instance_material>\r\n              <instance_material symbol=\"Rig2_lambert23SG_001-material\" target=\"#Rig2_lambert23SG_001-material\">\r\n                <bind_vertex_input semantic=\"UVMap\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n              </instance_material>\r\n              <instance_material symbol=\"lambert25SG_001-material\" target=\"#lambert25SG_001-material\">\r\n                <bind_vertex_input semantic=\"UVMap\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n              </instance_material>\r\n            </technique_common>\r\n          </bind_material>\r\n        </instance_geometry>\r\n      </node>\r\n    </visual_scene>\r\n  </library_visual_scenes>\r\n  <scene>\r\n    <instance_visual_scene url=\"#Scene\"/>\r\n  </scene>\r\n</COLLADA>\r\n"
  },
  {
    "path": "public/models/collada/pump/pump.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<COLLADA xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" version=\"1.4.1\">\r\n  <asset>\r\n    <contributor>\r\n      <author>Kuda Project</author>\r\n      <authoring_tool>OpenCOLLADA2010 x64</authoring_tool>\r\n      <comments>\r\n\t\t\tColladaMaya export options: \r\n\t\t\tbakeTransforms=0;relativePaths=1;copyTextures=1;exportTriangles=0;exportCgfxFileReferences=1;\r\n\t\t\tisSampling=0;curveConstrainSampling=0;removeStaticCurves=0;exportPolygonMeshes=1;exportLights=0;\r\n\t\t\texportCameras=1;exportJointsAndSkin=1;exportAnimations=1;exportInvisibleNodes=1;exportDefaultCameras=0;\r\n\t\t\texportTexCoords=1;exportNormals=1;exportNormalsPerVertex=0;exportVertexColors=0;exportVertexColorsPerVertex=0;\r\n\t\t\texportTexTangents=0;exportTangents=0;exportReferencedMaterials=0;exportMaterialsOnly=0;\r\n\t\t\texportXRefs=0;dereferenceXRefs=1;exportCameraAsLookat=0;cameraXFov=0;cameraYFov=1;doublePrecision=0\r\n\t\t</comments>\r\n      <source_data>./Pump_v19_noAnimVisibility.ma</source_data>\r\n    </contributor>\r\n    <created>2010-08-23T11:30:21</created>\r\n    <modified>2010-08-23T11:30:21</modified>\r\n    <unit name=\"centimeter\" meter=\"0.01\"/>\r\n    <up_axis>Y_UP</up_axis>\r\n  </asset>\r\n  <library_cameras>\r\n    <camera id=\"topShape\" name=\"topShape\">\r\n      <optics>\r\n        <technique_common>\r\n          <orthographic>\r\n            <xmag>106.4359</xmag>\r\n            <aspect_ratio>1.5</aspect_ratio>\r\n            <znear>0.3</znear>\r\n            <zfar>100000</zfar>\r\n          </orthographic>\r\n        </technique_common>\r\n      </optics>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <film_fit>1</film_fit>\r\n          <film_fit_offset>0</film_fit_offset>\r\n          <film_offsetX>0</film_offsetX>\r\n          <film_offsetY>0</film_offsetY>\r\n          <horizontal_aperture>3.599993</horizontal_aperture>\r\n          <lens_squeeze>1</lens_squeeze>\r\n          <originalMayaNodeId>topShape</originalMayaNodeId>\r\n          <vertical_aperture>2.399995</vertical_aperture>\r\n        </technique>\r\n      </extra>\r\n    </camera>\r\n    <camera id=\"sideShape\" name=\"sideShape\">\r\n      <optics>\r\n        <technique_common>\r\n          <orthographic>\r\n            <xmag>42.38836</xmag>\r\n            <aspect_ratio>1.5</aspect_ratio>\r\n            <znear>0.3</znear>\r\n            <zfar>100000</zfar>\r\n          </orthographic>\r\n        </technique_common>\r\n      </optics>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <film_fit>1</film_fit>\r\n          <film_fit_offset>0</film_fit_offset>\r\n          <film_offsetX>0</film_offsetX>\r\n          <film_offsetY>0</film_offsetY>\r\n          <horizontal_aperture>3.599993</horizontal_aperture>\r\n          <lens_squeeze>1</lens_squeeze>\r\n          <originalMayaNodeId>sideShape</originalMayaNodeId>\r\n          <vertical_aperture>2.399995</vertical_aperture>\r\n        </technique>\r\n      </extra>\r\n    </camera>\r\n    <camera id=\"cameraShape1\" name=\"cameraShape1\">\r\n      <optics>\r\n        <technique_common>\r\n          <perspective>\r\n            <yfov>39.8874</yfov>\r\n            <aspect_ratio>1</aspect_ratio>\r\n            <znear>0.00999999</znear>\r\n            <zfar>1000</zfar>\r\n          </perspective>\r\n        </technique_common>\r\n      </optics>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <film_fit>0</film_fit>\r\n          <film_fit_offset>0</film_fit_offset>\r\n          <film_offsetX>0</film_offsetX>\r\n          <film_offsetY>0</film_offsetY>\r\n          <horizontal_aperture>2.54</horizontal_aperture>\r\n          <lens_squeeze>1</lens_squeeze>\r\n          <originalMayaNodeId>cameraShape1</originalMayaNodeId>\r\n          <vertical_aperture>2.54</vertical_aperture>\r\n        </technique>\r\n      </extra>\r\n    </camera>\r\n  </library_cameras>\r\n  <library_materials>\r\n    <material id=\"lambert1\" name=\"lambert1\">\r\n      <instance_effect url=\"#lambert1-fx\"/>\r\n    </material>\r\n    <material id=\"blackRubber_S\" name=\"blackRubber_S\">\r\n      <instance_effect url=\"#blackRubber_S-fx\"/>\r\n    </material>\r\n    <material id=\"Metal_S\" name=\"Metal_S\">\r\n      <instance_effect url=\"#Metal_S-fx\"/>\r\n    </material>\r\n    <material id=\"Teeth_S\" name=\"Teeth_S\">\r\n      <instance_effect url=\"#Teeth_S-fx\"/>\r\n    </material>\r\n    <material id=\"Blue_S\" name=\"Blue_S\">\r\n      <instance_effect url=\"#Blue_S-fx\"/>\r\n    </material>\r\n  </library_materials>\r\n  <library_effects>\r\n    <effect id=\"Blue_S-fx\">\r\n      <profile_COMMON>\r\n        <newparam sid=\"Blue_file-surface\">\r\n          <surface type=\"2D\">\r\n            <init_from>Blue_file</init_from>\r\n          </surface>\r\n        </newparam>\r\n        <newparam sid=\"Blue_file-sampler\">\r\n          <sampler2D>\r\n            <source>Blue_file-surface</source>\r\n          </sampler2D>\r\n        </newparam>\r\n        <technique sid=\"common\">\r\n          <lambert>\r\n            <emission>\r\n              <color>0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color>0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <texture texture=\"Blue_file-sampler\" texcoord=\"TEX0\">\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <blend_mode>NONE</blend_mode>\r\n                  </technique>\r\n                </extra>\r\n              </texture>\r\n            </diffuse>\r\n            <transparent opaque=\"RGB_ZERO\">\r\n              <color>0 0 0 1</color>\r\n            </transparent>\r\n            <transparency>\r\n              <float>1</float>\r\n            </transparency>\r\n          </lambert>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n    <effect id=\"Metal_S-fx\">\r\n      <profile_COMMON>\r\n        <newparam sid=\"Metal_file-surface\">\r\n          <surface type=\"2D\">\r\n            <init_from>Metal_file</init_from>\r\n          </surface>\r\n        </newparam>\r\n        <newparam sid=\"Metal_file-sampler\">\r\n          <sampler2D>\r\n            <source>Metal_file-surface</source>\r\n          </sampler2D>\r\n        </newparam>\r\n        <technique sid=\"common\">\r\n          <lambert>\r\n            <emission>\r\n              <color>0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color>0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <texture texture=\"Metal_file-sampler\" texcoord=\"TEX0\">\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <blend_mode>NONE</blend_mode>\r\n                  </technique>\r\n                </extra>\r\n              </texture>\r\n            </diffuse>\r\n            <transparent opaque=\"RGB_ZERO\">\r\n              <color>0 0 0 1</color>\r\n            </transparent>\r\n            <transparency>\r\n              <float>1</float>\r\n            </transparency>\r\n          </lambert>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n    <effect id=\"Teeth_S-fx\">\r\n      <profile_COMMON>\r\n        <newparam sid=\"Teeth_file-surface\">\r\n          <surface type=\"2D\">\r\n            <init_from>Teeth_file</init_from>\r\n          </surface>\r\n        </newparam>\r\n        <newparam sid=\"Teeth_file-sampler\">\r\n          <sampler2D>\r\n            <source>Teeth_file-surface</source>\r\n          </sampler2D>\r\n        </newparam>\r\n        <technique sid=\"common\">\r\n          <lambert>\r\n            <emission>\r\n              <color>0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color>0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <texture texture=\"Teeth_file-sampler\" texcoord=\"TEX0\">\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <blend_mode>NONE</blend_mode>\r\n                  </technique>\r\n                </extra>\r\n              </texture>\r\n            </diffuse>\r\n            <transparent opaque=\"RGB_ZERO\">\r\n              <color>0 0 0 1</color>\r\n            </transparent>\r\n            <transparency>\r\n              <float>1</float>\r\n            </transparency>\r\n          </lambert>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n    <effect id=\"blackRubber_S-fx\">\r\n      <profile_COMMON>\r\n        <technique sid=\"common\">\r\n          <lambert>\r\n            <emission>\r\n              <color>0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color>0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <color>0.119008 0.119008 0.119008 1</color>\r\n            </diffuse>\r\n            <transparent opaque=\"RGB_ZERO\">\r\n              <color>0 0 0 1</color>\r\n            </transparent>\r\n            <transparency>\r\n              <float>1</float>\r\n            </transparency>\r\n          </lambert>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n    <effect id=\"lambert1-fx\">\r\n      <profile_COMMON>\r\n        <technique sid=\"common\">\r\n          <lambert>\r\n            <emission>\r\n              <color>0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color>0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <color>0.4 0.4 0.4 1</color>\r\n            </diffuse>\r\n            <transparent opaque=\"RGB_ZERO\">\r\n              <color>0 0 0 1</color>\r\n            </transparent>\r\n            <transparency>\r\n              <float>1</float>\r\n            </transparency>\r\n          </lambert>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n  </library_effects>\r\n  <library_images>\r\n    <image id=\"Metal_file\" name=\"Metal_file\">\r\n      <init_from>./pump_metalreflect.jpg</init_from>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <dgnode_type>kFile</dgnode_type>\r\n          <image_sequence>0</image_sequence>\r\n          <originalMayaNodeId>Metal_file</originalMayaNodeId>\r\n        </technique>\r\n      </extra>\r\n    </image>\r\n    <image id=\"Blue_file\" name=\"Blue_file\">\r\n      <init_from>./pump_body.jpg</init_from>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <dgnode_type>kFile</dgnode_type>\r\n          <image_sequence>0</image_sequence>\r\n          <originalMayaNodeId>Blue_file</originalMayaNodeId>\r\n        </technique>\r\n      </extra>\r\n    </image>\r\n    <image id=\"Teeth_file\" name=\"Teeth_file\">\r\n      <init_from>./pump_gears.jpg</init_from>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <dgnode_type>kFile</dgnode_type>\r\n          <image_sequence>0</image_sequence>\r\n          <originalMayaNodeId>Teeth_file</originalMayaNodeId>\r\n        </technique>\r\n      </extra>\r\n    </image>\r\n  </library_images>\r\n  <library_geometries>\r\n    <geometry id=\"baseShape\" name=\"baseShape\">\r\n      <mesh>\r\n        <source id=\"baseShape-positions\" name=\"baseShape-positions\">\r\n          <float_array id=\"baseShape-positions-array\" count=\"126\">-27.70187 -5.893567 16.5766 27.70187 -5.893567 16.5766 -27.70187 0 16.5766 27.70187 0 16.5766 -27.70187 0 -40.31773 27.70187 0 -40.31773 -27.70187 -5.893567 -40.31773 27.70187 -5.893567 -40.31773 27.70187 0 -8.216602 15.89754 0 16.5766 -27.70187 0 -8.216602 -15.89754 0 16.5766 -15.89754 0 -2.920254 15.89754 0 -2.920254 -27.70187 0 -29.25 27.70187 0 -29.25 -3.675277 0 -2.920254 -3.675277 0 16.5766 3.622372 0 -2.920254 3.622373 0 16.5766 13.52182 2.595025 16.5766 14.62728 2.595025 16.5766 14.62728 2.595025 -2.920254 13.52182 2.595025 -2.920254 -14.62728 2.595025 16.5766 -13.57473 2.595025 16.5766 -13.57472 2.595025 -2.920254 -14.62728 2.595025 -2.920254 -13.35482 -2.386842 -3.162518 13.30191 -2.386843 -3.162518 13.64294 2.595026 -29.20501 14.74841 2.595026 -29.20501 -13.57472 2.595026 -29.20501 -14.62728 2.595026 -29.20501 13.64294 -2.386843 -29.20501 -13.57472 -2.386843 -29.20501 14.74841 0 -29.20501 -14.62728 0 -29.20501 7.46542 -2.386843 -40.31773 -7.397198 -2.386843 -40.31773 8.570887 0 -40.31773 -8.449759 0 -40.31773</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#baseShape-positions-array\" count=\"42\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"baseShape-normals\" name=\"baseShape-normals\">\r\n          <float_array id=\"baseShape-normals-array\" count=\"534\">0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0.8981681 0.4396521 0 0.8981681 0.4396521 0 0.8981681 0.4396521 0 0.8981681 0.4396521 0 -0.2535714 0.9673167 0 -0.2535714 0.9673167 0 -0.2535714 0.9673167 0 -0.2535714 0.9673167 0 0 0 1 0 0 1 0 0 1 0 0 1 0.2535714 0.9673167 0 0.2535714 0.9673167 0 0.2535714 0.9673167 0 0.2535714 0.9673167 0 -0.8981681 0.4396521 0 -0.8981681 0.4396521 0 -0.8981681 0.4396521 0 -0.8981681 0.4396521 0 0.401383 0.1964762 0.8945886 0.401383 0.1964762 0.8945886 0.401383 0.1964762 0.8945886 -0.401383 0.1964762 0.8945887 -0.401383 0.1964762 0.8945887 -0.401383 0.1964762 0.8945887 0 0.1009811 -0.9948884 0 0.1009811 -0.9948884 0 0.1009811 -0.9948884 0 0.1009811 -0.9948884 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.1950316 0.9807966 8.98801e-4 0.1957317 0.9806575 4.49524e-4 0.1957317 0.9806575 4.49524e-4 0.1964316 0.9805176 0 -0.1946813 0.9808666 0 -0.1946813 0.9808666 0 -0.1946813 0.9808666 0 -0.1946813 0.9808666 0 -0.01288019 0.04913489 -0.9987092 -0.01288019 0.04913489 -0.9987092 -0.01288019 0.04913489 -0.9987092 -0.01288014 -0.04913489 0.9987092 -0.01288014 -0.04913489 0.9987092 -0.01288014 -0.04913489 0.9987092 -0.9999143 0 -0.01309405 -0.9997152 0.02216596 -0.008851123 -0.9997152 0.02216596 -0.008851123 -0.9990068 0.04432029 -0.004603686 -0.9999644 0 0.00844378 -0.9997479 -0.02205441 0.004222953 -0.9997479 -0.02205441 0.004222953 -0.9990273 -0.04409769 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.003473028 0 -0.999994 -0.003473028 0 -0.999994 -0.003473028 0 -0.999994 0.003440853 0 -0.9999941 0.003440853 0 -0.9999941 0.003440853 0 -0.9999941 0 1 0 0 1 0 0 1 0 0 1 0 -0.8101671 0.3752293 0.4503691 -0.8101671 0.3752293 0.4503691 -0.8101671 0.3752293 0.4503691 -0.8101671 0.3752293 0.4503691 0.8155488 0.3596447 0.4533606 0.8155488 0.3596447 0.4533606 0.8155488 0.3596447 0.4533606 0.8155488 0.3596447 0.4533606 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#baseShape-normals-array\" count=\"178\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"baseShape-map1\" name=\"baseShape-map1\">\r\n          <float_array id=\"baseShape-map1-array\" count=\"256\">0.4485153 0.4959495 0.2981467 0.4243115 0.375 0.25 0.625 0.25 0.3750987 0.1737276 0.6133718 0.1737276 0.7480727 0.1061421 0.7935822 0.1061421 0.7480727 0.1516516 0.7935822 0.1516516 0.3758782 0.442789 0.2981467 0.442789 0.4269724 0.5128331 0.4485153 0.5128331 0.625 0.3687295 0.4418219 0.442789 0.571735 0.25 0.3377731 0.4959495 0.375 0.3567786 0.4407179 0.25 0.3995009 0.3169695 0.6017799 0.3169712 0.3860319 0.5128331 0.4765214 0.4243115 0.322258 0.4610623 0.4886543 0.25 0.3019834 0.4610623 0.5379816 0.25 0.5379816 0.25 0.571735 0.25 0.428445 0.2385145 0.3019834 0.2887479 0.4407179 0.25 0.4886543 0.25 0.322258 0.2887479 0.7237407 0.2385145 0.5670406 0.1476696 0.4671842 0.1476696 0.5777863 0.1696217 0.4156569 0.1476696 0.5155134 0.1476696 0.5262589 0.1696217 0.7782885 0.05193353 0.8280191 0.05193353 0.8939816 0.03566813 0.7123262 0.03566813 0.8954802 0.06961769 0.7108276 0.06961769 0.8649534 0.1851331 0.4389461 0.05973589 0.4389461 0.2400961 0.4936036 0.2398443 0.4936036 0.059484 0.8660241 0.1631131 0.9811327 0.1631131 0.9811327 0.1851331 0.4389461 0.2399927 0.4389461 0.05963111 0.4936036 0.05963111 0.4936036 0.2399927 0.4499595 0.4608353 0.4936972 0.4608353 0.4499595 0.4605263 0.4936972 0.4605263 0.6776766 0.2887479 0.6827128 0.2887479 0.6827128 0.4610623 0.6776766 0.4610623 0.9811327 0.1851331 0.9811327 0.1631131 0.8660241 0.1631131 0.8649534 0.1851331 0.6901312 0.09583002 0.7726874 0.09583002 0.7726874 0.1783862 0.6901312 0.1783862 0.586113 0.1696217 0.5767615 0.1696217 0.5767615 0.1476696 0.586113 0.1274786 0.5262589 0.1696217 0.5351629 0.1696217 0.5351629 0.1274786 0.5262589 0.1476696 0.4671842 0.1476696 0.4156569 0.1476696 0.3915135 0.1978183 0.4661076 0.1978183 0.3915135 0.1749831 0.4701859 0.1885702 0.6903408 0.1780756 0.7723447 0.1780756 0.7537324 0.2115571 0.7089529 0.2115571 0.7355602 0.1731741 0.5972807 0.3813508 0.6237438 0.4286465 0.7366244 0.2204696 0.5973912 0.3813508 0.7355537 0.1731741 0.7366326 0.2204696 0.6236826 0.4286465 0.3821713 0.3815424 0.3821713 0.4286465 0.3821013 0.3815424 0.3821013 0.4286465 0.2999718 0.2887479 0.3220467 0.2887479 0.3220465 0.4610623 0.2999718 0.4610623 0.6133718 0.1990739 0.5626054 0.1990739 0.5098139 0.1990739 0.4784291 0.1990739 0.4258652 0.1990739 0.3750987 0.1990739 0.5320558 0.1978183 0.6061806 0.1978183 0.6061806 0.1749831 0.5277725 0.1885702 0.7237407 0.2644193 0.428445 0.2644193 0.7237407 0.2385145 0.428445 0.2385145 0.428445 0.2644193 0.7237407 0.2644193 0.3377731 0.5128331 0.4765214 0.442789</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#baseShape-map1-array\" count=\"128\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"baseShape-vertices\" name=\"baseShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#baseShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert4SG\" count=\"52\">\r\n          <input semantic=\"VERTEX\" source=\"#baseShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#baseShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#baseShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 4 3 4 3 3 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 3 3 4 3 3 3 3 3 3 4 4 4 3 3 4 4 4 4 4 3 4 3 3 3 3 4 3 3 4 4 3</vcount>\r\n          <p>0 0 4 17 1 113 11 2 114 9 3 16 3 4 3 8 5 14 13 6 21 40 7 116 5 8 117 7 9 118 6 10 6 7 11 7 1 12 9 0 13 8 1 14 1 8 15 10 3 16 11 6 17 0 14 18 12 4 19 13 2 20 2 11 21 19 12 22 20 10 23 18 20 24 24 21 25 26 22 26 31 23 27 34 24 28 109 25 29 108 26 30 107 27 31 106 17 32 67 19 33 66 18 34 65 16 35 64 19 36 27 9 37 16 21 38 29 20 39 28 9 40 30 13 41 35 22 42 120 21 43 121 18 44 65 19 45 66 20 46 24 23 47 34 11 48 19 17 49 25 25 50 33 24 51 32 17 52 67 16 53 64 26 54 107 25 55 108 12 56 122 11 57 123 24 58 124 27 59 125 13 60 36 8 61 37 22 62 38 10 63 39 12 64 40 27 65 41 16 66 42 18 67 43 29 68 44 28 69 45 23 70 49 22 71 50 31 72 51 30 73 52 27 74 56 26 75 57 32 76 58 33 77 59 22 78 50 8 79 60 31 80 51 31 80 51 8 79 60 15 81 61 10 82 62 27 83 56 33 84 59 14 85 63 18 86 43 23 87 46 29 88 44 16 89 42 26 90 47 28 91 45 34 92 69 29 93 70 30 94 68 30 94 68 29 93 70 23 95 71 35 96 54 28 97 53 32 98 55 32 98 55 28 97 53 26 99 48 29 100 72 34 101 73 35 102 74 28 103 75 30 104 76 31 105 77 36 106 78 34 107 79 33 108 80 32 109 81 35 110 82 37 111 83 31 112 77 15 113 84 36 114 78 14 115 85 33 116 80 37 117 83 35 118 90 34 119 91 38 120 92 39 121 93 34 122 94 36 123 95 40 124 96 38 125 97 37 126 98 35 127 99 39 128 100 41 129 101 36 130 95 15 131 102 5 132 103 40 133 96 14 134 104 37 135 98 41 136 101 4 137 105 38 138 119 40 139 116 7 140 118 39 141 89 38 142 119 7 143 118 6 144 88 41 145 87 39 146 89 6 147 88 4 148 86 41 149 87 6 150 88 9 151 111 1 152 5 3 153 110 19 154 112 1 155 5 9 156 111 0 157 4 1 158 5 19 159 112 17 160 113 0 161 4 11 162 114 2 163 115 15 164 15 7 165 23 5 166 127 1 167 1 7 168 23 15 169 15 8 170 10 6 171 0 0 172 17 10 173 22 14 174 12 10 175 22 0 176 17 2 177 126</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>baseShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pistonShape1\" name=\"pistonShape1\">\r\n      <mesh>\r\n        <source id=\"pistonShape1-positions\" name=\"pistonShape1-positions\">\r\n          <float_array id=\"pistonShape1-positions-array\" count=\"1152\">-0.006039034 -7.100944 33.02491 0.7983296 -7.100944 32.86797 1.448424 -7.100944 32.44011 1.918199 -7.100944 31.8258 2.208323 -7.100944 31.07538 2.35277 -7.100944 30.24668 2.542737 -7.100944 29.3441 2.867187 -7.100944 28.67006 3.17781 -7.100944 28.27003 3.581041 -7.100944 27.95657 4.26932 -7.100944 27.63136 5.160552 -7.100944 27.43363 5.994407 -7.100944 27.29315 6.744327 -7.100944 27.00015 7.353564 -7.100944 26.5313 7.785431 -7.100944 25.87779 7.942183 -7.100944 25.07769 7.785261 -7.100944 24.27044 7.354654 -7.100944 23.61205 6.741795 -7.100944 23.14394 6.006222 -7.100944 22.85801 5.186713 -7.100944 22.71129 4.268994 -7.100944 22.52241 3.577554 -7.100944 22.1885 3.186477 -7.100944 21.87508 2.874753 -7.100944 21.47024 2.547039 -7.100944 20.81243 2.355918 -7.100944 19.89488 2.209365 -7.100944 19.06585 1.927743 -7.100944 18.32393 1.463619 -7.100944 17.71104 0.7966686 -7.100944 17.27615 -0.006040115 -7.100944 17.11946 -0.8094933 -7.100944 17.27463 -1.467737 -7.100944 17.70247 -1.936508 -7.100944 18.31943 -2.215362 -7.100944 19.06693 -2.362301 -7.100944 19.8893 -2.557568 -7.100944 20.80402 -2.886736 -7.100944 21.47642 -3.199658 -7.100944 21.87816 -3.600369 -7.100944 22.19212 -4.266727 -7.100944 22.51384 -5.187882 -7.100944 22.71508 -6.005771 -7.100944 22.85172 -6.760551 -7.100944 23.14403 -7.367888 -7.100944 23.61534 -7.79515 -7.100944 24.2686 -7.95142 -7.100944 25.07769 -7.79436 -7.100944 25.87538 -7.367733 -7.100944 26.53103 -6.754092 -7.100944 27.00253 -6.002203 -7.100944 27.28787 -5.183441 -7.100944 27.43104 -4.263872 -7.100944 27.62152 -3.59483 -7.100944 27.95065 -3.197414 -7.100944 28.26341 -2.89026 -7.100944 28.66926 -2.554089 -7.100944 29.33683 -2.364004 -7.100944 30.2395 -2.219692 -7.100944 31.0722 -1.939557 -7.100944 31.82326 -1.471473 -7.100944 32.44064 -0.8078324 -7.100944 32.86813 -0.005856514 -7.100944 28.24233 0.3043857 -7.100944 28.22709 0.6116395 -7.100944 28.18151 0.9129467 -7.100944 28.10604 1.205406 -7.100944 28.00139 1.486199 -7.100944 27.86859 1.752624 -7.100944 27.7089 2.002113 -7.100944 27.52386 2.232264 -7.100944 27.31527 2.440861 -7.100944 27.08512 2.625895 -7.100944 26.83563 2.785583 -7.100944 26.5692 2.918389 -7.100944 26.28841 3.023032 -7.100944 25.99595 3.098506 -7.100944 25.69464 3.144083 -7.100944 25.38739 3.159324 -7.100944 25.07715 3.144082 -7.100944 24.76691 3.098505 -7.100944 24.45965 3.023032 -7.100944 24.15834 2.918389 -7.100944 23.86589 2.785583 -7.100944 23.58509 2.625894 -7.100944 23.31867 2.44086 -7.100944 23.06918 2.232263 -7.100944 22.83903 2.002112 -7.100944 22.63043 1.752623 -7.100944 22.4454 1.486198 -7.100944 22.28571 1.205405 -7.100944 22.1529 0.9129457 -7.100944 22.04826 0.6116385 -7.100944 21.97279 0.3043842 -7.100944 21.92721 -0.005857468 -7.100944 21.91197 -0.3160996 -7.100944 21.92721 -0.6233535 -7.100944 21.97279 -0.9246607 -7.100944 22.04826 -1.21712 -7.100944 22.1529 -1.497913 -7.100944 22.28571 -1.764338 -7.100944 22.4454 -2.013826 -7.100944 22.63043 -2.243978 -7.100944 22.83903 -2.452575 -7.100944 23.06918 -2.637609 -7.100944 23.31867 -2.797297 -7.100944 23.58509 -2.930102 -7.100944 23.86589 -3.034745 -7.100944 24.15834 -3.110219 -7.100944 24.45965 -3.155796 -7.100944 24.76691 -3.171038 -7.100944 25.07715 -3.155797 -7.100944 25.38739 -3.11022 -7.100944 25.69464 -3.034746 -7.100944 25.99595 -2.930103 -7.100944 26.28841 -2.797297 -7.100944 26.5692 -2.637609 -7.100944 26.83563 -2.452575 -7.100944 27.08512 -2.243978 -7.100944 27.31527 -2.013826 -7.100944 27.52386 -1.764337 -7.100944 27.7089 -1.497912 -7.100944 27.86859 -1.217119 -7.100944 28.00139 -0.9246597 -7.100944 28.10604 -0.6233525 -7.100944 28.18151 -0.3160987 -7.100944 28.22709 -0.005856514 -6.138608 28.24233 0.3043857 -6.138608 28.22709 0.6116395 -6.138608 28.18151 0.9129467 -6.138608 28.10604 1.205406 -6.138608 28.00139 1.486199 -6.138608 27.86859 1.752624 -6.138608 27.7089 2.002113 -6.138608 27.52386 2.232264 -6.138608 27.31527 2.440861 -6.138608 27.08512 2.625895 -6.138608 26.83563 2.785583 -6.138608 26.5692 2.918389 -6.138608 26.28841 3.023032 -6.138608 25.99595 3.098506 -6.138608 25.69464 3.144083 -6.138608 25.38739 3.159324 -6.138608 25.07715 3.144082 -6.138608 24.76691 3.098505 -6.138608 24.45965 3.023032 -6.138608 24.15834 2.918389 -6.138608 23.86589 2.785583 -6.138608 23.58509 2.625894 -6.138608 23.31867 2.44086 -6.138608 23.06918 2.232263 -6.138608 22.83903 2.002112 -6.138608 22.63043 1.752623 -6.138608 22.4454 1.486198 -6.138608 22.28571 1.205405 -6.138608 22.1529 0.9129457 -6.138608 22.04826 0.6116385 -6.138608 21.97279 0.3043842 -6.138608 21.92721 -0.005857468 -6.138608 21.91197 -0.3160996 -6.138608 21.92721 -0.6233535 -6.138608 21.97279 -0.9246607 -6.138608 22.04826 -1.21712 -6.138608 22.1529 -1.497913 -6.138608 22.28571 -1.764338 -6.138608 22.4454 -2.013826 -6.138608 22.63043 -2.243978 -6.138608 22.83903 -2.452575 -6.138608 23.06918 -2.637609 -6.138608 23.31867 -2.797297 -6.138608 23.58509 -2.930102 -6.138608 23.86589 -3.034745 -6.138608 24.15834 -3.110219 -6.138608 24.45965 -3.155796 -6.138608 24.76691 -3.171038 -6.138608 25.07715 -3.155797 -6.138608 25.38739 -3.11022 -6.138608 25.69464 -3.034746 -6.138608 25.99595 -2.930103 -6.138608 26.28841 -2.797297 -6.138608 26.5692 -2.637609 -6.138608 26.83563 -2.452575 -6.138608 27.08512 -2.243978 -6.138608 27.31527 -2.013826 -6.138608 27.52386 -1.764337 -6.138608 27.7089 -1.497912 -6.138608 27.86859 -1.217119 -6.138608 28.00139 -0.9246597 -6.138608 28.10604 -0.6233525 -6.138608 28.18151 -0.3160987 -6.138608 28.22709 -0.00585655 -6.138608 26.64584 0.147902 -6.138608 26.63828 0.3001797 -6.138608 26.6157 0.4495101 -6.138608 26.57829 0.5944556 -6.138608 26.52643 0.7336195 -6.138608 26.46061 0.8656613 -6.138608 26.38147 0.9893106 -6.138608 26.28976 1.103375 -6.138608 26.18638 1.206758 -6.138608 26.07232 1.298462 -6.138608 25.94866 1.377605 -6.138608 25.81662 1.443425 -6.138608 25.67746 1.495287 -6.138608 25.53252 1.532692 -6.138608 25.38318 1.555281 -6.138608 25.23091 1.562834 -6.138608 25.07715 1.55528 -6.138608 24.92339 1.532692 -6.138608 24.77111 1.495287 -6.138608 24.62178 1.443425 -6.138608 24.47684 1.377605 -6.138608 24.33767 1.298462 -6.138608 24.20563 1.206757 -6.138608 24.08198 1.103375 -6.138608 23.96791 0.9893097 -6.138608 23.86453 0.8656608 -6.138608 23.77283 0.7336186 -6.138608 23.69369 0.5944551 -6.138608 23.62786 0.4495097 -6.138608 23.576 0.3001792 -6.138608 23.5386 0.1479011 -6.138608 23.51601 -0.005857431 -6.138608 23.50846 -0.159616 -6.138608 23.51601 -0.3118937 -6.138608 23.5386 -0.4612241 -6.138608 23.576 -0.6061696 -6.138608 23.62786 -0.7453334 -6.138608 23.69369 -0.8773753 -6.138608 23.77283 -1.001024 -6.138608 23.86453 -1.115089 -6.138608 23.96791 -1.218472 -6.138608 24.08198 -1.310176 -6.138608 24.20563 -1.389319 -6.138608 24.33767 -1.455139 -6.138608 24.47684 -1.507 -6.138608 24.62178 -1.544406 -6.138608 24.77111 -1.566994 -6.138608 24.92339 -1.574548 -6.138608 25.07715 -1.566995 -6.138608 25.23091 -1.544406 -6.138608 25.38318 -1.507001 -6.138608 25.53252 -1.455139 -6.138608 25.67746 -1.389319 -6.138608 25.81662 -1.310176 -6.138608 25.94866 -1.218472 -6.138608 26.07232 -1.115089 -6.138608 26.18638 -1.001024 -6.138608 26.28976 -0.8773748 -6.138608 26.38147 -0.7453325 -6.138608 26.46061 -0.6061691 -6.138608 26.52643 -0.4612237 -6.138608 26.57829 -0.3118932 -6.138608 26.6157 -0.1596155 -6.138608 26.63828 -0.00585655 -5.101585 26.64584 0.147902 -5.101585 26.63828 0.3001797 -5.101585 26.6157 0.4495101 -5.101585 26.57829 0.5944556 -5.101585 26.52643 0.7336195 -5.101585 26.46061 0.8656613 -5.101585 26.38147 0.9893106 -5.101585 26.28976 1.103375 -5.101585 26.18638 1.206758 -5.101585 26.07232 1.298462 -5.101585 25.94866 1.377605 -5.101585 25.81662 1.443425 -5.101585 25.67746 1.495287 -5.101585 25.53252 1.532692 -5.101585 25.38318 1.555281 -5.101585 25.23091 1.562834 -5.101585 25.07715 1.55528 -5.101585 24.92339 1.532692 -5.101585 24.77111 1.495287 -5.101585 24.62178 1.443425 -5.101585 24.47684 1.377605 -5.101585 24.33767 1.298462 -5.101585 24.20563 1.206757 -5.101585 24.08198 1.103375 -5.101585 23.96791 0.9893097 -5.101585 23.86453 0.8656608 -5.101585 23.77283 0.7336186 -5.101585 23.69369 0.5944551 -5.101585 23.62786 0.4495097 -5.101585 23.576 0.3001792 -5.101585 23.5386 0.1479011 -5.101585 23.51601 -0.005857431 -5.101585 23.50846 -0.159616 -5.101585 23.51601 -0.3118937 -5.101585 23.5386 -0.4612241 -5.101585 23.576 -0.6061696 -5.101585 23.62786 -0.7453334 -5.101585 23.69369 -0.8773753 -5.101585 23.77283 -1.001024 -5.101585 23.86453 -1.115089 -5.101585 23.96791 -1.218472 -5.101585 24.08198 -1.310176 -5.101585 24.20563 -1.389319 -5.101585 24.33767 -1.455139 -5.101585 24.47684 -1.507 -5.101585 24.62178 -1.544406 -5.101585 24.77111 -1.566994 -5.101585 24.92339 -1.574548 -5.101585 25.07715 -1.566995 -5.101585 25.23091 -1.544406 -5.101585 25.38318 -1.507001 -5.101585 25.53252 -1.455139 -5.101585 25.67746 -1.389319 -5.101585 25.81662 -1.310176 -5.101585 25.94866 -1.218472 -5.101585 26.07232 -1.115089 -5.101585 26.18638 -1.001024 -5.101585 26.28976 -0.8773748 -5.101585 26.38147 -0.7453325 -5.101585 26.46061 -0.6061691 -5.101585 26.52643 -0.4612237 -5.101585 26.57829 -0.3118932 -5.101585 26.6157 -0.1596155 -5.101585 26.63828 -0.006039034 -0.9978402 33.02491 0.7983296 -0.9978402 32.86797 1.448424 -0.9978402 32.44011 1.918199 -0.9978402 31.8258 2.208323 -0.9978402 31.07538 2.35277 -0.9978402 30.24668 2.542737 -0.9978402 29.3441 2.867187 -0.9978402 28.67006 3.17781 -0.9978402 28.27003 3.581041 -0.9978402 27.95657 4.26932 -0.9978402 27.63136 5.160552 -0.9978402 27.43363 5.994407 -0.9978402 27.29315 6.744327 -0.9978402 27.00015 7.353564 -0.9978402 26.5313 7.785431 -0.9978402 25.87779 7.942183 -0.9978402 25.07769 7.785261 -0.9978402 24.27044 7.354654 -0.9978402 23.61205 6.741795 -0.9978402 23.14394 6.006222 -0.9978402 22.85801 5.186713 -0.9978402 22.71129 4.268994 -0.9978402 22.52241 3.577554 -0.9978402 22.1885 3.186477 -0.9978411 21.87508 2.874753 -0.9978402 21.47024 2.547039 -0.9978402 20.81243 2.355918 -0.9978402 19.89488 2.209365 -0.9978402 19.06585 1.927743 -0.9978411 18.32393 1.463619 -0.9978402 17.71104 0.7966686 -0.9978402 17.27615 -0.006040115 -0.9978411 17.11946 -0.8094933 -0.9978411 17.27463 -1.467737 -0.9978411 17.70247 -1.936508 -0.9978411 18.31943 -2.215362 -0.9978411 19.06693 -2.362301 -0.9978411 19.8893 -2.557568 -0.9978411 20.80402 -2.886736 -0.9978411 21.47642 -3.199658 -0.9978411 21.87816 -3.600369 -0.9978411 22.19212 -4.266727 -0.9978411 22.51384 -5.187882 -0.9978411 22.71508 -6.005771 -0.9978411 22.85172 -6.760551 -0.9978411 23.14403 -7.367888 -0.9978411 23.61534 -7.79515 -0.9978411 24.2686 -7.95142 -0.9978411 25.07769 -7.79436 -0.9978411 25.87538 -7.367733 -0.9978411 26.53103 -6.754092 -0.9978411 27.00253 -6.002203 -0.9978411 27.28787 -5.183441 -0.9978411 27.43104 -4.263872 -0.9978411 27.62152 -3.59483 -0.9978411 27.95065 -3.197414 -0.9978402 28.26341 -2.89026 -0.9978411 28.66926 -2.554089 -0.9978411 29.33683 -2.364004 -0.9978411 30.2395 -2.219692 -0.9978411 31.0722 -1.939557 -0.9978402 31.82326 -1.471473 -0.9978411 32.44064 -0.8078324 -0.9978411 32.86813</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pistonShape1-positions-array\" count=\"384\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pistonShape1-normals\" name=\"pistonShape1-normals\">\r\n          <float_array id=\"pistonShape1-normals-array\" count=\"3840\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.04906244 0 -0.9987957 -0.04906244 0 -0.9987957 -0.04906244 0 -0.9987957 -0.04906244 0 -0.9987957 -0.1467344 0 -0.989176 -0.1467344 0 -0.989176 -0.1467344 0 -0.989176 -0.1467344 0 -0.989176 -0.2429832 0 -0.9700305 -0.2429832 0 -0.9700305 -0.2429832 0 -0.9700305 -0.2429832 0 -0.9700305 -0.3368901 0 -0.941544 -0.3368901 0 -0.941544 -0.3368901 0 -0.941544 -0.3368901 0 -0.941544 -0.4275559 0 -0.9039889 -0.4275559 0 -0.9039889 -0.4275559 0 -0.9039889 -0.4275559 0 -0.9039889 -0.5141007 0 -0.85773 -0.5141007 0 -0.85773 -0.5141007 0 -0.85773 -0.5141007 0 -0.85773 -0.5957024 0 -0.8032053 -0.5957024 0 -0.8032053 -0.5957024 0 -0.8032053 -0.5957024 0 -0.8032053 -0.6715565 0 -0.7409534 -0.6715565 0 -0.7409534 -0.6715565 0 -0.7409534 -0.6715565 0 -0.7409534 -0.7409514 0 -0.6715587 -0.7409514 0 -0.6715587 -0.7409514 0 -0.6715587 -0.7409514 0 -0.6715587 -0.8032062 0 -0.5957012 -0.8032062 0 -0.5957012 -0.8032062 0 -0.5957012 -0.8032062 0 -0.5957012 -0.8577304 0 -0.5140997 -0.8577304 0 -0.5140997 -0.8577304 0 -0.5140997 -0.8577304 0 -0.5140997 -0.9039895 0 -0.4275546 -0.9039895 0 -0.4275546 -0.9039895 0 -0.4275546 -0.9039895 0 -0.4275546 -0.9415438 0 -0.3368908 -0.9415438 0 -0.3368908 -0.9415438 0 -0.3368908 -0.9415438 0 -0.3368908 -0.9700312 0 -0.2429808 -0.9700312 0 -0.2429808 -0.9700312 0 -0.2429808 -0.9700312 0 -0.2429808 -0.9891766 0 -0.1467299 -0.9891766 0 -0.1467299 -0.9891766 0 -0.1467299 -0.9891766 0 -0.1467299 -0.9987955 0 -0.04906742 -0.9987955 0 -0.04906742 -0.9987955 0 -0.04906742 -0.9987955 0 -0.04906742 -0.9987955 0 0.04906822 -0.9987955 0 0.04906822 -0.9987955 0 0.04906822 -0.9987955 0 0.04906822 -0.9891766 0 0.1467298 -0.9891766 0 0.1467298 -0.9891766 0 0.1467298 -0.9891766 0 0.1467298 -0.9700313 0 0.2429801 -0.9700313 0 0.2429801 -0.9700313 0 0.2429801 -0.9700313 0 0.2429801 -0.9415438 0 0.3368908 -0.9415438 0 0.3368908 -0.9415438 0 0.3368908 -0.9415438 0 0.3368908 -0.9039904 0 0.4275527 -0.9039904 0 0.4275527 -0.9039904 0 0.4275527 -0.9039904 0 0.4275527 -0.8577267 0 0.514106 -0.8577267 0 0.514106 -0.8577267 0 0.514106 -0.8577267 0 0.514106 -0.8032058 0 0.5957016 -0.8032058 0 0.5957016 -0.8032058 0 0.5957016 -0.8032058 0 0.5957016 -0.7409546 0 0.6715552 -0.7409546 0 0.6715552 -0.7409546 0 0.6715552 -0.7409546 0 0.6715552 -0.6715594 0 0.7409508 -0.6715594 0 0.7409508 -0.6715594 0 0.7409508 -0.6715594 0 0.7409508 -0.5956982 0 0.8032083 -0.5956982 0 0.8032083 -0.5956982 0 0.8032083 -0.5956982 0 0.8032083 -0.5140957 0 0.857733 -0.5140957 0 0.857733 -0.5140957 0 0.857733 -0.5140957 0 0.857733 -0.4275665 0 0.9039838 -0.4275665 0 0.9039838 -0.4275665 0 0.9039838 -0.4275665 0 0.9039838 -0.3368788 0 0.9415481 -0.3368788 0 0.9415481 -0.3368788 0 0.9415481 -0.3368788 0 0.9415481 -0.2429832 0 0.9700305 -0.2429832 0 0.9700305 -0.2429832 0 0.9700305 -0.2429832 0 0.9700305 -0.1467342 0 0.989176 -0.1467342 0 0.989176 -0.1467342 0 0.989176 -0.1467342 0 0.989176 -0.04906252 0 0.9987958 -0.04906252 0 0.9987958 -0.04906252 0 0.9987958 -0.04906252 0 0.9987958 0.04906244 0 0.9987957 0.04906244 0 0.9987957 0.04906244 0 0.9987957 0.04906244 0 0.9987957 0.1467344 0 0.989176 0.1467344 0 0.989176 0.1467344 0 0.989176 0.1467344 0 0.989176 0.2429832 0 0.9700305 0.2429832 0 0.9700305 0.2429832 0 0.9700305 0.2429832 0 0.9700305 0.3368901 0 0.941544 0.3368901 0 0.941544 0.3368901 0 0.941544 0.3368901 0 0.941544 0.4275559 0 0.9039889 0.4275559 0 0.9039889 0.4275559 0 0.9039889 0.4275559 0 0.9039889 0.514096 0 0.8577328 0.514096 0 0.8577328 0.514096 0 0.8577328 0.514096 0 0.8577328 0.5957075 0 0.8032015 0.5957075 0 0.8032015 0.5957075 0 0.8032015 0.5957075 0 0.8032015 0.671553 0 0.7409565 0.671553 0 0.7409565 0.671553 0 0.7409565 0.671553 0 0.7409565 0.7409542 0 0.6715556 0.7409542 0 0.6715556 0.7409542 0 0.6715556 0.7409542 0 0.6715556 0.8032062 0 0.5957012 0.8032062 0 0.5957012 0.8032062 0 0.5957012 0.8032062 0 0.5957012 0.8577309 0 0.5140989 0.8577309 0 0.5140989 0.8577309 0 0.5140989 0.8577309 0 0.5140989 0.9039878 0 0.4275585 0.9039878 0 0.4275585 0.9039878 0 0.4275585 0.9039878 0 0.4275585 0.9415442 0 0.3368894 0.9415442 0 0.3368894 0.9415442 0 0.3368894 0.9415442 0 0.3368894 0.9700312 0 0.2429808 0.9700312 0 0.2429808 0.9700312 0 0.2429808 0.9700312 0 0.2429808 0.9891765 0 0.1467305 0.9891765 0 0.1467305 0.9891765 0 0.1467305 0.9891765 0 0.1467305 0.9987954 0 0.04906896 0.9987954 0 0.04906896 0.9987954 0 0.04906896 0.9987954 0 0.04906896 0.9987956 0 -0.0490659 0.9987956 0 -0.0490659 0.9987956 0 -0.0490659 0.9987956 0 -0.0490659 0.9891765 0 -0.1467315 0.9891765 0 -0.1467315 0.9891765 0 -0.1467315 0.9891765 0 -0.1467315 0.9700312 0 -0.2429808 0.9700312 0 -0.2429808 0.9700312 0 -0.2429808 0.9700312 0 -0.2429808 0.9415442 0 -0.3368894 0.9415442 0 -0.3368894 0.9415442 0 -0.3368894 0.9415442 0 -0.3368894 0.9039889 0 -0.427556 0.9039889 0 -0.427556 0.9039889 0 -0.427556 0.9039889 0 -0.427556 0.8577298 0 -0.5141008 0.8577298 0 -0.5141008 0.8577298 0 -0.5141008 0.8577298 0 -0.5141008 0.8032062 0 -0.5957012 0.8032062 0 -0.5957012 0.8032062 0 -0.5957012 0.8032062 0 -0.5957012 0.7409514 0 -0.6715587 0.7409514 0 -0.6715587 0.7409514 0 -0.6715587 0.7409514 0 -0.6715587 0.6715565 0 -0.7409534 0.6715565 0 -0.7409534 0.6715565 0 -0.7409534 0.6715565 0 -0.7409534 0.5957018 0 -0.8032057 0.5957018 0 -0.8032057 0.5957018 0 -0.8032057 0.5957018 0 -0.8032057 0.5141007 0 -0.85773 0.5141007 0 -0.85773 0.5141007 0 -0.85773 0.5141007 0 -0.85773 0.4275559 0 -0.9039889 0.4275559 0 -0.9039889 0.4275559 0 -0.9039889 0.4275559 0 -0.9039889 0.3368901 0 -0.941544 0.3368901 0 -0.941544 0.3368901 0 -0.941544 0.3368901 0 -0.941544 0.2429832 0 -0.9700305 0.2429832 0 -0.9700305 0.2429832 0 -0.9700305 0.2429832 0 -0.9700305 0.1467344 0 -0.989176 0.1467344 0 -0.989176 0.1467344 0 -0.989176 0.1467344 0 -0.989176 0.04906244 0 -0.9987957 0.04906244 0 -0.9987957 0.04906244 0 -0.9987957 0.04906244 0 -0.9987957 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.04906861 0 -0.9987954 -0.04906861 0 -0.9987954 -0.04906861 0 -0.9987954 -0.04906861 0 -0.9987954 -0.1467164 0 -0.9891786 -0.1467164 0 -0.9891786 -0.1467164 0 -0.9891786 -0.1467164 0 -0.9891786 -0.242989 0 -0.9700291 -0.242989 0 -0.9700291 -0.242989 0 -0.9700291 -0.242989 0 -0.9700291 -0.3368956 0 -0.9415421 -0.3368956 0 -0.9415421 -0.3368956 0 -0.9415421 -0.3368956 0 -0.9415421 -0.4275452 0 -0.903994 -0.4275452 0 -0.903994 -0.4275452 0 -0.903994 -0.4275452 0 -0.903994 -0.5141129 0 -0.8577226 -0.5141129 0 -0.8577226 -0.5141129 0 -0.8577226 -0.5141129 0 -0.8577226 -0.5957023 0 -0.8032054 -0.5957023 0 -0.8032054 -0.5957023 0 -0.8032054 -0.5957023 0 -0.8032054 -0.6715478 0 -0.7409613 -0.6715478 0 -0.7409613 -0.6715478 0 -0.7409613 -0.6715478 0 -0.7409613 -0.7409515 0 -0.6715586 -0.7409515 0 -0.6715586 -0.7409515 0 -0.6715586 -0.7409515 0 -0.6715586 -0.8032116 0 -0.5956939 -0.8032116 0 -0.5956939 -0.8032116 0 -0.5956939 -0.8032116 0 -0.5956939 -0.8577291 0 -0.5141019 -0.8577291 0 -0.5141019 -0.8577291 0 -0.5141019 -0.8577291 0 -0.5141019 -0.9039885 0 -0.4275567 -0.9039885 0 -0.4275567 -0.9039885 0 -0.4275567 -0.9039885 0 -0.4275567 -0.9415427 0 -0.3368936 -0.9415427 0 -0.3368936 -0.9415427 0 -0.3368936 -0.9415427 0 -0.3368936 -0.9700321 0 -0.2429769 -0.9700321 0 -0.2429769 -0.9700321 0 -0.2429769 -0.9700321 0 -0.2429769 -0.989176 0 -0.1467339 -0.989176 0 -0.1467339 -0.989176 0 -0.1467339 -0.989176 0 -0.1467339 -0.9987956 0 -0.04906588 -0.9987956 0 -0.04906588 -0.9987956 0 -0.04906588 -0.9987956 0 -0.04906588 -0.9987956 0 0.04906742 -0.9987956 0 0.04906742 -0.9987956 0 0.04906742 -0.9987956 0 0.04906742 -0.9891766 0 0.1467307 -0.9891766 0 0.1467307 -0.9891766 0 0.1467307 -0.9891766 0 0.1467307 -0.9700314 0 0.2429797 -0.9700314 0 0.2429797 -0.9700314 0 0.2429797 -0.9700314 0 0.2429797 -0.9415427 0 0.3368936 -0.9415427 0 0.3368936 -0.9415427 0 0.3368936 -0.9415427 0 0.3368936 -0.9039927 0 0.4275481 -0.9039927 0 0.4275481 -0.9039927 0 0.4275481 -0.9039927 0 0.4275481 -0.8577288 0 0.5141024 -0.8577288 0 0.5141024 -0.8577288 0 0.5141024 -0.8577288 0 0.5141024 -0.8032023 0 0.5957064 -0.8032023 0 0.5957064 -0.8032023 0 0.5957064 -0.8032023 0 0.5957064 -0.7409626 0 0.6715463 -0.7409626 0 0.6715463 -0.7409626 0 0.6715463 -0.7409626 0 0.6715463 -0.671546 0 0.740963 -0.671546 0 0.740963 -0.671546 0 0.740963 -0.671546 0 0.740963 -0.5957112 0 0.8031987 -0.5957112 0 0.8031987 -0.5957112 0 0.8031987 -0.5957112 0 0.8031987 -0.5140852 0 0.8577392 -0.5140852 0 0.8577392 -0.5140852 0 0.8577392 -0.5140852 0 0.8577392 -0.4275658 0 0.9039842 -0.4275658 0 0.9039842 -0.4275658 0 0.9039842 -0.4275658 0 0.9039842 -0.3368956 0 0.9415421 -0.3368956 0 0.9415421 -0.3368956 0 0.9415421 -0.3368956 0 0.9415421 -0.2429665 0 0.9700347 -0.2429665 0 0.9700347 -0.2429665 0 0.9700347 -0.2429665 0 0.9700347 -0.146751 0 0.9891735 -0.146751 0 0.9891735 -0.146751 0 0.9891735 -0.146751 0 0.9891735 -0.04905672 0 0.9987961 -0.04905672 0 0.9987961 -0.04905672 0 0.9987961 -0.04905672 0 0.9987961 0.04905669 0 0.9987961 0.04905669 0 0.9987961 0.04905669 0 0.9987961 0.04905669 0 0.9987961 0.1467515 0 0.9891734 0.1467515 0 0.9891734 0.1467515 0 0.9891734 0.1467515 0 0.9891734 0.2429665 0 0.9700347 0.2429665 0 0.9700347 0.2429665 0 0.9700347 0.2429665 0 0.9700347 0.3368956 0 0.9415421 0.3368956 0 0.9415421 0.3368956 0 0.9415421 0.3368956 0 0.9415421 0.4275648 0 0.9039847 0.4275648 0 0.9039847 0.4275648 0 0.9039847 0.4275648 0 0.9039847 0.5140865 0 0.8577384 0.5140865 0 0.8577384 0.5140865 0 0.8577384 0.5140865 0 0.8577384 0.5957112 0 0.8031987 0.5957112 0 0.8031987 0.5957112 0 0.8031987 0.5957112 0 0.8031987 0.6715467 0 0.7409623 0.6715467 0 0.7409623 0.6715467 0 0.7409623 0.6715467 0 0.7409623 0.7409617 0 0.6715473 0.7409617 0 0.6715473 0.7409617 0 0.6715473 0.7409617 0 0.6715473 0.8032032 0 0.5957053 0.8032032 0 0.5957053 0.8032032 0 0.5957053 0.8032032 0 0.5957053 0.8577303 0 0.5141001 0.8577303 0 0.5141001 0.8577303 0 0.5141001 0.8577303 0 0.5141001 0.9039924 0 0.4275486 0.9039924 0 0.4275486 0.9039924 0 0.4275486 0.9039924 0 0.4275486 0.9415433 0 0.3368921 0.9415433 0 0.3368921 0.9415433 0 0.3368921 0.9415433 0 0.3368921 0.9700308 0 0.242982 0.9700308 0 0.242982 0.9700308 0 0.242982 0.9700308 0 0.242982 0.9891768 0 0.1467292 0.9891768 0 0.1467292 0.9891768 0 0.1467292 0.9891768 0 0.1467292 0.9987954 0 0.04906895 0.9987954 0 0.04906895 0.9987954 0 0.04906895 0.9987954 0 0.04906895 0.9987956 0 -0.04906588 0.9987956 0 -0.04906588 0.9987956 0 -0.04906588 0.9987956 0 -0.04906588 0.989176 0 -0.1467339 0.989176 0 -0.1467339 0.989176 0 -0.1467339 0.989176 0 -0.1467339 0.9700321 0 -0.2429769 0.9700321 0 -0.2429769 0.9700321 0 -0.2429769 0.9700321 0 -0.2429769 0.9415426 0 -0.3368943 0.9415426 0 -0.3368943 0.9415426 0 -0.3368943 0.9415426 0 -0.3368943 0.9039888 0 -0.427556 0.9039888 0 -0.427556 0.9039888 0 -0.427556 0.9039888 0 -0.427556 0.8577291 0 -0.5141019 0.8577291 0 -0.5141019 0.8577291 0 -0.5141019 0.8577291 0 -0.5141019 0.8032116 0 -0.5956939 0.8032116 0 -0.5956939 0.8032116 0 -0.5956939 0.8032116 0 -0.5956939 0.7409509 0 -0.6715592 0.7409509 0 -0.6715592 0.7409509 0 -0.6715592 0.7409509 0 -0.6715592 0.6715467 0 -0.7409623 0.6715467 0 -0.7409623 0.6715467 0 -0.7409623 0.6715467 0 -0.7409623 0.5957021 0 -0.8032055 0.5957021 0 -0.8032055 0.5957021 0 -0.8032055 0.5957021 0 -0.8032055 0.5141115 0 -0.8577234 0.5141115 0 -0.8577234 0.5141115 0 -0.8577234 0.5141115 0 -0.8577234 0.4275463 0 -0.9039935 0.4275463 0 -0.9039935 0.4275463 0 -0.9039935 0.4275463 0 -0.9039935 0.3368956 0 -0.9415421 0.3368956 0 -0.9415421 0.3368956 0 -0.9415421 0.3368956 0 -0.9415421 0.242989 0 -0.9700291 0.242989 0 -0.9700291 0.242989 0 -0.9700291 0.242989 0 -0.9700291 0.1467164 0 -0.9891786 0.1467164 0 -0.9891786 0.1467164 0 -0.9891786 0.1467164 0 -0.9891786 0.04906849 0 -0.9987955 0.04906849 0 -0.9987955 0.04906849 0 -0.9987955 0.04906849 0 -0.9987955 0.1914994 0 0.9814928 0.1914994 0 0.9814928 0.1914994 0 0.9814928 0.1914994 0 0.9814928 0.54976 0 0.8353227 0.54976 0 0.8353227 0.54976 0 0.8353227 0.54976 0 0.8353227 0.7943561 0 0.6074525 0.7943561 0 0.6074525 0.7943561 0 0.6074525 0.7943561 0 0.6074525 0.9327186 0 0.3606051 0.9327186 0 0.3606051 0.9327186 0 0.3606051 0.9327186 0 0.3606051 0.9851464 0 0.1717168 0.9851464 0 0.1717168 0.9851464 0 0.1717168 0.9851464 0 0.1717168 0.978561 0 0.2059577 0.978561 0 0.2059577 0.978561 0 0.2059577 0.978561 0 0.2059577 0.9010482 0 0.433719 0.9010482 0 0.433719 0.9010482 0 0.433719 0.9010482 0 0.433719 0.7898335 0 0.6133215 0.7898335 0 0.6133215 0.7898335 0 0.6133215 0.7898335 0 0.6133215 0.6137513 0 0.7894995 0.6137513 0 0.7894995 0.6137513 0 0.7894995 0.6137513 0 0.7894995 0.4272087 0 0.9041531 0.4272087 0 0.9041531 0.4272087 0 0.9041531 0.4272087 0 0.9041531 0.2165881 0 0.9762631 0.2165881 0 0.9762631 0.2165881 0 0.9762631 0.2165881 0 0.9762631 0.1661317 0 0.9861036 0.1661317 0 0.9861036 0.1661317 0 0.9861036 0.1661317 0 0.9861036 0.3639204 0 0.93143 0.3639204 0 0.93143 0.3639204 0 0.93143 0.3639204 0 0.93143 0.6098802 0 0.7924938 0.6098802 0 0.7924938 0.6098802 0 0.7924938 0.6098802 0 0.7924938 0.8342862 0 0.5513318 0.8342862 0 0.5513318 0.8342862 0 0.5513318 0.8342862 0 0.5513318 0.9813442 0 0.1922591 0.9813442 0 0.1922591 0.9813442 0 0.1922591 0.9813442 0 0.1922591 0.9816251 0 -0.1908195 0.9816251 0 -0.1908195 0.9816251 0 -0.1908195 0.9816251 0 -0.1908195 0.8369002 0 -0.5473557 0.8369002 0 -0.5473557 0.8369002 0 -0.5473557 0.8369002 0 -0.5473557 0.6070014 0 -0.7947008 0.6070014 0 -0.7947008 0.6070014 0 -0.7947008 0.6070014 0 -0.7947008 0.3623012 0 -0.9320611 0.3623012 0 -0.9320611 0.3623012 0 -0.9320611 0.3623012 0 -0.9320611 0.1762377 0 -0.9843476 0.1762377 0 -0.9843476 0.1762377 0 -0.9843476 0.1762377 0 -0.9843476 0.2015869 0 -0.9794707 0.2015869 0 -0.9794707 0.2015869 0 -0.9794707 0.2015869 0 -0.9794707 0.4348693 0 -0.9004936 0.4348693 0 -0.9004936 0.4348693 0 -0.9004936 0.4348693 0 -0.9004936 0.6253756 0 -0.7803239 0.6253756 0 -0.7803239 0.6253756 0 -0.7803239 0.6253756 0 -0.7803239 0.7923318 0 -0.6100905 0.7923318 0 -0.6100905 0.7923318 0 -0.6100905 0.7923318 0 -0.6100905 0.8950738 0 -0.4459182 0.8950738 0 -0.4459182 0.8950738 0 -0.4459182 0.8950738 0 -0.4459182 0.9789879 0 -0.2039187 0.9789879 0 -0.2039187 0.9789879 0 -0.2039187 0.9789879 0 -0.2039187 0.984732 0 -0.1740773 0.984732 0 -0.1740773 0.984732 0 -0.1740773 0.984732 0 -0.1740773 0.9349122 0 -0.354879 0.9349122 0 -0.354879 0.9349122 0 -0.354879 0.9349122 0 -0.354879 0.7972067 0 -0.6037065 0.7972067 0 -0.6037065 0.7972067 0 -0.6037065 0.7972067 0 -0.6037065 0.5462023 0 -0.8376533 0.5462023 0 -0.8376533 0.5462023 0 -0.8376533 0.5462023 0 -0.8376533 0.1915849 0 -0.9814761 0.1915849 0 -0.9814761 0.1915849 0 -0.9814761 0.1915849 0 -0.9814761 -0.1896181 0 -0.981858 -0.1896181 0 -0.981858 -0.1896181 0 -0.981858 -0.1896181 0 -0.981858 -0.5449765 0 -0.8384514 -0.5449765 0 -0.8384514 -0.5449765 0 -0.8384514 -0.5449765 0 -0.8384514 -0.7962362 0 -0.6049858 -0.7962362 0 -0.6049858 -0.7962362 0 -0.6049858 -0.7962362 0 -0.6049858 -0.9369281 0 -0.3495222 -0.9369281 0 -0.3495222 -0.9369281 0 -0.3495222 -0.9369281 0 -0.3495222 -0.9844097 0 -0.1758907 -0.9844097 0 -0.1758907 -0.9844097 0 -0.1758907 -0.9844097 0 -0.1758907 -0.977965 0 -0.2087689 -0.977965 0 -0.2087689 -0.977965 0 -0.2087689 -0.977965 0 -0.2087689 -0.8981514 0 -0.4396864 -0.8981514 0 -0.4396864 -0.8981514 0 -0.4396864 -0.8981514 0 -0.4396864 -0.7889203 0 -0.6144956 -0.7889203 0 -0.6144956 -0.7889203 0 -0.6144956 -0.7889203 0 -0.6144956 -0.6167455 0 -0.7871627 -0.6167455 0 -0.7871627 -0.6167455 0 -0.7871627 -0.6167455 0 -0.7871627 -0.434781 0 -0.9005363 -0.434781 0 -0.9005363 -0.434781 0 -0.9005363 -0.434781 0 -0.9005363 -0.2134371 0 -0.9769568 -0.2134371 0 -0.9769568 -0.2134371 0 -0.9769568 -0.2134371 0 -0.9769568 -0.1647739 0 -0.9863314 -0.1647739 0 -0.9863314 -0.1647739 0 -0.9863314 -0.1647739 0 -0.9863314 -0.3611382 0 -0.9325124 -0.3611382 0 -0.9325124 -0.3611382 0 -0.9325124 -0.3611382 0 -0.9325124 -0.6130803 0 -0.7900206 -0.6130803 0 -0.7900206 -0.6130803 0 -0.7900206 -0.6130803 0 -0.7900206 -0.8368936 0 -0.5473658 -0.8368936 0 -0.5473658 -0.8368936 0 -0.5473658 -0.8368936 0 -0.5473658 -0.9818541 0 -0.1896377 -0.9818541 0 -0.1896377 -0.9818541 0 -0.1896377 -0.9818541 0 -0.1896377 -0.9811625 0 0.1931844 -0.9811625 0 0.1931844 -0.9811625 0 0.1931844 -0.9811625 0 0.1931844 -0.8381783 0 0.5453964 -0.8381783 0 0.5453964 -0.8381783 0 0.5453964 -0.8381783 0 0.5453964 -0.6092744 0 0.7929595 -0.6092744 0 0.7929595 -0.6092744 0 0.7929595 -0.6092744 0 0.7929595 -0.3548147 0 0.9349367 -0.3548147 0 0.9349367 -0.3548147 0 0.9349367 -0.3548147 0 0.9349367 -0.1722447 0 0.9850542 -0.1722447 0 0.9850542 -0.1722447 0 0.9850542 -0.1722447 0 0.9850542 -0.2028351 0 0.9792129 -0.2028351 0 0.9792129 -0.2028351 0 0.9792129 -0.2028351 0 0.9792129 -0.4414251 0 0.8972981 -0.4414251 0 0.8972981 -0.4414251 0 0.8972981 -0.4414251 0 0.8972981 -0.6184339 0 0.7858368 -0.6184339 0 0.7858368 -0.6184339 0 0.7858368 -0.6184339 0 0.7858368 -0.797381 0 0.6034762 -0.797381 0 0.6034762 -0.797381 0 0.6034762 -0.797381 0 0.6034762 -0.8931488 0 0.4497614 -0.8931488 0 0.4497614 -0.8931488 0 0.4497614 -0.8931488 0 0.4497614 -0.9785389 0 0.2060624 -0.9785389 0 0.2060624 -0.9785389 0 0.2060624 -0.9785389 0 0.2060624 -0.9853124 0 0.1707621 -0.9853124 0 0.1707621 -0.9853124 0 0.1707621 -0.9853124 0 0.1707621 -0.9369496 0 0.3494647 -0.9369496 0 0.3494647 -0.9369496 0 0.3494647 -0.9369496 0 0.3494647 -0.7968596 0 0.6041645 -0.7968596 0 0.6041645 -0.7968596 0 0.6041645 -0.7968596 0 0.6041645 -0.5415282 0 0.8406826 -0.5415282 0 0.8406826 -0.5415282 0 0.8406826 -0.5415282 0 0.8406826 -0.1919061 0 0.9814133 -0.1919061 0 0.9814133 -0.1919061 0 0.9814133 -0.1919061 0 0.9814133</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pistonShape1-normals-array\" count=\"1280\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pistonShape1-map1\" name=\"pistonShape1-map1\">\r\n          <float_array id=\"pistonShape1-map1-array\" count=\"1292\">0.8073258 0.5858876 0.8070493 0.5870841 0.8149813 0.5870736 0.8150116 0.5864589 0.8079469 0.5848689 0.8151019 0.5858499 0.8089553 0.5840222 0.8152515 0.5852529 0.8102353 0.5834382 0.8154588 0.5846732 0.8116858 0.5831319 0.815722 0.5841168 0.8133121 0.5828284 0.8160385 0.5835888 0.8145673 0.5823104 0.8164052 0.5830944 0.8153433 0.5817686 0.8168186 0.5826383 0.8159067 0.5811265 0.8172746 0.5822249 0.8165494 0.5799971 0.8177691 0.5818582 0.8169245 0.5784082 0.8182971 0.5815417 0.8171098 0.5769781 0.8188535 0.5812786 0.8175344 0.5756373 0.8194331 0.5810712 0.8183244 0.574503 0.8200302 0.5809216 0.8196164 0.5736204 0.8206391 0.5808313 0.8212504 0.5733463 0.821254 0.5808011 0.820038 0.6005292 0.8212771 0.6007961 0.821254 0.5933462 0.8206391 0.593316 0.818983 0.5999295 0.8200302 0.5932257 0.8181061 0.5989558 0.8194331 0.5930761 0.8175011 0.5977198 0.8188535 0.5928687 0.817184 0.5963193 0.8182971 0.5926056 0.8168697 0.5947491 0.8177691 0.5922891 0.8163332 0.593537 0.8172746 0.5919224 0.8157721 0.5927877 0.8168185 0.591509 0.815107 0.5922437 0.8164052 0.5910529 0.8139374 0.5916232 0.8160385 0.5905585 0.8122919 0.591261 0.815722 0.5900305 0.8108107 0.5910821 0.8154588 0.589474 0.8094221 0.5906721 0.8152515 0.5888945 0.8082474 0.5899093 0.8151019 0.5882974 0.8073333 0.5886618 0.8150116 0.5876884 0.8352017 0.5882547 0.8354782 0.5870584 0.8275265 0.5870736 0.8274963 0.5876884 0.8345807 0.5892735 0.827406 0.5882974 0.8335722 0.5901202 0.8272564 0.5888945 0.8322923 0.5907043 0.827049 0.5894741 0.8308417 0.5910105 0.8267858 0.5900305 0.8292155 0.591314 0.8264694 0.5905585 0.8279603 0.591832 0.8261027 0.5910529 0.8271842 0.5923737 0.8256893 0.591509 0.8266208 0.5930159 0.8252332 0.5919224 0.8259782 0.5941453 0.8247388 0.5922891 0.825603 0.5957342 0.8242108 0.5926056 0.8254178 0.5971643 0.8236544 0.5928687 0.8249931 0.5985051 0.8230748 0.5930761 0.8242031 0.5996394 0.8224776 0.5932257 0.8229111 0.6005219 0.8218688 0.593316 0.8224896 0.5736132 0.8218688 0.5808313 0.8235446 0.5742128 0.8224776 0.5809216 0.8244215 0.5751866 0.8230748 0.5810712 0.8250264 0.5764225 0.8236544 0.5812786 0.8253435 0.5778231 0.8242108 0.5815417 0.8256579 0.5793933 0.8247388 0.5818582 0.8261943 0.5806053 0.8252332 0.5822249 0.8267554 0.5813546 0.8256893 0.5826383 0.8274205 0.5818986 0.8261027 0.5830944 0.8285902 0.5825192 0.8264694 0.5835888 0.8302357 0.5828813 0.8267858 0.5841168 0.8317169 0.5830603 0.827049 0.5846732 0.8331054 0.5834703 0.8272564 0.5852529 0.8342802 0.584233 0.827406 0.5858499 0.8351942 0.5854806 0.8274963 0.5864589 0.8150116 0.5864589 0.8149813 0.5870736 0.8178906 0.5870736 0.8179068 0.586744 0.8151019 0.5858499 0.8179552 0.5864175 0.8152515 0.5852529 0.8180354 0.5860973 0.8154588 0.5846732 0.8181466 0.5857866 0.815722 0.5841168 0.8182877 0.5854882 0.8160385 0.5835888 0.8184574 0.5852051 0.8164052 0.5830944 0.8186541 0.58494 0.8168186 0.5826383 0.8188757 0.5846954 0.8172746 0.5822249 0.8191203 0.5844737 0.8177691 0.5818582 0.8193853 0.5842772 0.8182971 0.5815417 0.8196685 0.5841075 0.8188535 0.5812786 0.8199669 0.5839663 0.8194331 0.5810712 0.8202776 0.5838552 0.8200302 0.5809216 0.8205978 0.5837749 0.8206391 0.5808313 0.8209243 0.5837265 0.821254 0.5808011 0.821254 0.5837103 0.8218688 0.5808313 0.8215836 0.5837265 0.8224776 0.5809216 0.8219101 0.5837749 0.8230748 0.5810712 0.8222303 0.5838552 0.8236544 0.5812786 0.822541 0.5839663 0.8242108 0.5815417 0.8228394 0.5841075 0.8247388 0.5818582 0.8231225 0.5842772 0.8252332 0.5822249 0.8233876 0.5844737 0.8256893 0.5826383 0.8236322 0.5846954 0.8261027 0.5830944 0.8238539 0.58494 0.8264694 0.5835888 0.8240504 0.5852051 0.8267858 0.5841168 0.8242201 0.5854882 0.827049 0.5846732 0.8243613 0.5857866 0.8272564 0.5852529 0.8244724 0.5860973 0.827406 0.5858499 0.8245527 0.5864175 0.8274963 0.5864589 0.8246011 0.586744 0.8275265 0.5870736 0.8246173 0.5870736 0.8274963 0.5876884 0.8246011 0.5874033 0.827406 0.5882974 0.8245527 0.5877298 0.8272564 0.5888945 0.8244724 0.58805 0.827049 0.5894741 0.8243613 0.5883607 0.8267858 0.5900305 0.8242201 0.5886592 0.8264694 0.5905585 0.8240504 0.5889422 0.8261027 0.5910529 0.8238539 0.5892074 0.8256893 0.591509 0.8236322 0.5894519 0.8252332 0.5919224 0.8233876 0.5896736 0.8247388 0.5922891 0.8231225 0.5898702 0.8242108 0.5926056 0.8228394 0.5900398 0.8236544 0.5928687 0.822541 0.590181 0.8230748 0.5930761 0.8222303 0.5902922 0.8224776 0.5932257 0.8219101 0.5903724 0.8218688 0.593316 0.8215836 0.5904208 0.821254 0.5933462 0.821254 0.590437 0.8206391 0.593316 0.8209243 0.5904208 0.8200302 0.5932257 0.8205978 0.5903724 0.8194331 0.5930761 0.8202776 0.5902922 0.8188535 0.5928687 0.8199669 0.590181 0.8182971 0.5926056 0.8196685 0.5900398 0.8177691 0.5922891 0.8193854 0.5898702 0.8172746 0.5919224 0.8191203 0.5896736 0.8168185 0.591509 0.8188757 0.5894519 0.8164052 0.5910529 0.8186541 0.5892074 0.8160385 0.5905585 0.8184574 0.5889422 0.815722 0.5900305 0.8182877 0.5886592 0.8154588 0.589474 0.8181466 0.5883607 0.8152515 0.5888945 0.8180354 0.5880499 0.8151019 0.5882974 0.8179552 0.5877298 0.8150116 0.5876884 0.8179068 0.5874033 0.6183059 0.005559564 0.4956131 0.005559653 0.5156454 0.01611406 0.5156454 0.03124088 0.3896091 0.03124082 0.3896091 0.01611406 0.7166781 0.005842894 0.7166781 0.02131224 0.6239327 0.02131227 0.6239327 0.005842894 0.6183059 0.5312259 0.4956131 0.5312259 0.6183059 0.5471207 0.4956131 0.5471207 0.6183059 0.5620413 0.4956132 0.5620414 0.6183059 0.577177 0.4956131 0.577177 0.6183059 0.5927709 0.4956131 0.5927709 0.6183059 0.6081361 0.4956131 0.6081361 0.6183059 0.6233057 0.4956131 0.6233057 0.6183059 0.6389763 0.4956131 0.6389763 0.6183059 0.6540846 0.4956131 0.6540846 0.6183059 0.6697514 0.4956131 0.6697514 0.6183059 0.6850491 0.4956131 0.685049 0.6183059 0.7009158 0.4956131 0.7009158 0.6183059 0.7163087 0.4956131 0.7163085 0.6183059 0.731799 0.4956131 0.731799 0.6183059 0.7468193 0.4956131 0.7468194 0.6183059 0.7629532 0.4956131 0.7629532 0.6183059 0.778047 0.4956131 0.7780468 0.6183059 0.7933396 0.4956131 0.7933396 0.6183059 0.8084887 0.4956131 0.8084885 0.6183059 0.8242494 0.4956131 0.8242493 0.6183059 0.8398188 0.4956131 0.8398188 0.6183059 0.8553177 0.4956131 0.8553177 0.6183059 0.8703677 0.4956131 0.8703677 0.6183058 0.8860757 0.4956131 0.8860756 0.6183059 0.9011269 0.4956131 0.9011268 0.6183059 0.9193793 0.4956131 0.9193793 0.6183059 0.9363589 0.4956131 0.9363589 0.6183059 0.9533123 0.4956131 0.9533125 0.6183059 0.9633043 0.4956131 0.9633043 0.6183059 0.978853 0.4956131 0.9788529 0.6183059 0.9944403 0.4956131 0.9944402 0.6183059 0.02128243 0.4956131 0.02128239 0.6183059 0.0367856 0.4956131 0.0367856 0.6183059 0.05268049 0.4956132 0.05268043 0.6183059 0.06760114 0.4956131 0.0676011 0.6183059 0.08273667 0.4956131 0.08273668 0.6183059 0.09833044 0.4956131 0.09833047 0.6183059 0.1142577 0.4956131 0.1142576 0.6183059 0.1288654 0.4956131 0.1288654 0.6183059 0.1456597 0.4956131 0.1456597 0.6183059 0.1602061 0.4956131 0.1602061 0.6183059 0.1758729 0.4956131 0.1758729 0.6183059 0.1911706 0.4956131 0.1911707 0.6183059 0.2070374 0.4956131 0.2070374 0.6183059 0.221868 0.4956131 0.2218681 0.6183059 0.2379206 0.4956131 0.2379206 0.6183059 0.2529409 0.4956131 0.2529408 0.6183059 0.2685128 0.4956131 0.2685128 0.6183059 0.2841684 0.4956131 0.2841684 0.6183059 0.299461 0.4956131 0.2994611 0.6183059 0.3146101 0.4956131 0.3146102 0.6183059 0.3303708 0.4956131 0.3303708 0.6183059 0.3459403 0.4956131 0.3459403 0.6183059 0.3614391 0.4956131 0.3614391 0.6183059 0.3764893 0.4956131 0.3764893 0.6183059 0.3921971 0.4956131 0.3921971 0.6183059 0.4076343 0.4956131 0.4076343 0.6183059 0.4232666 0.4956131 0.4232666 0.6183059 0.4384341 0.4956131 0.4384341 0.6183059 0.454257 0.4956132 0.454257 0.6183059 0.469496 0.4956131 0.469496 0.6183059 0.4847287 0.4956131 0.4847287 0.6183059 0.5151607 0.6183059 0.4999999 0.4956131 0.4999999 0.4956131 0.5151607 0.5156454 0.5140035 0.3896091 0.5140035 0.5156454 0.5290406 0.3896091 0.5290405 0.5156454 0.5440774 0.3896091 0.5440774 0.5156454 0.5591146 0.3896091 0.5591145 0.5156454 0.5741521 0.3896091 0.5741521 0.5156454 0.5891909 0.3896091 0.5891909 0.5156454 0.6042312 0.3896091 0.6042312 0.5156454 0.6192732 0.3896091 0.6192732 0.5156454 0.6343176 0.3896091 0.6343176 0.5156454 0.6493648 0.3896091 0.6493648 0.5156454 0.6644149 0.3896091 0.6644149 0.5156454 0.679468 0.3896091 0.679468 0.5156454 0.6945247 0.3896091 0.6945247 0.5156454 0.7095854 0.3896091 0.7095854 0.5156454 0.7246501 0.3896091 0.7246501 0.5156454 0.739719 0.3896091 0.739719 0.5156454 0.7547922 0.3896091 0.7547922 0.5156454 0.7698698 0.3896091 0.7698698 0.5156454 0.7849518 0.3896091 0.7849518 0.5156454 0.8000381 0.3896091 0.8000381 0.5156454 0.8151292 0.3896091 0.8151292 0.5156454 0.8302244 0.3896091 0.8302244 0.5156453 0.8453237 0.3896091 0.8453237 0.5156454 0.8604274 0.3896091 0.8604275 0.5156454 0.8755346 0.3896091 0.8755347 0.5156454 0.8906456 0.3896091 0.8906456 0.5156454 0.9057597 0.3896091 0.9057597 0.5156453 0.9208771 0.3896091 0.9208771 0.5156454 0.9359971 0.3896091 0.9359971 0.5156454 0.9511193 0.3896091 0.9511193 0.5156454 0.9662434 0.3896091 0.9662435 0.5156454 0.9813691 0.3896091 0.9813691 0.5156454 0.04636842 0.3896091 0.04636839 0.5156454 0.06149596 0.3896091 0.06149599 0.5156454 0.0766235 0.3896091 0.0766235 0.5156454 0.09175038 0.3896091 0.09175041 0.5156454 0.1068758 0.3896091 0.1068759 0.5156454 0.1220002 0.3896091 0.1220001 0.5156454 0.1371222 0.3896091 0.1371222 0.5156454 0.1522424 0.3896091 0.1522423 0.5156454 0.1673595 0.3896091 0.1673595 0.5156454 0.1824737 0.3896091 0.1824737 0.5156454 0.1975848 0.3896091 0.1975848 0.5156454 0.2126919 0.3896091 0.2126919 0.5156454 0.2277953 0.3896091 0.2277953 0.5156454 0.2428947 0.3896091 0.2428947 0.5156454 0.2579899 0.3896091 0.2579899 0.5156454 0.2730808 0.3896091 0.2730808 0.5156454 0.2881672 0.3896091 0.2881672 0.5156454 0.303249 0.3896091 0.3032491 0.5156454 0.3183264 0.3896091 0.3183264 0.5156454 0.3333994 0.3896091 0.3333994 0.5156454 0.3484682 0.3896091 0.3484682 0.5156454 0.363533 0.3896091 0.363533 0.5156454 0.3785934 0.3896091 0.3785934 0.5156454 0.3936501 0.3896091 0.3936501 0.5156454 0.4087034 0.3896091 0.4087034 0.5156454 0.4237534 0.3896091 0.4237534 0.5156454 0.4388004 0.3896091 0.4388003 0.6239327 0.4847808 0.6239327 0.5002019 0.716678 0.5002019 0.716678 0.4847808 0.6239327 0.469359 0.716678 0.469359 0.6239327 0.4539362 0.716678 0.4539362 0.6239327 0.438512 0.716678 0.438512 0.6239327 0.4230864 0.716678 0.4230864 0.6239327 0.4076592 0.716678 0.4076592 0.6239326 0.3922301 0.716678 0.3922302 0.6239326 0.3767992 0.7166781 0.3767992 0.6239326 0.3613662 0.7166781 0.3613662 0.6239327 0.3459309 0.7166781 0.3459309 0.6239327 0.3304932 0.7166781 0.3304933 0.6239326 0.3150534 0.7166781 0.3150534 0.6239327 0.2996111 0.7166781 0.2996111 0.6239327 0.2841663 0.7166781 0.2841663 0.6239326 0.268719 0.7166781 0.268719 0.6239327 0.2532693 0.7166781 0.2532693 0.6239327 0.2378173 0.7166781 0.2378173 0.6239326 0.2223628 0.7166781 0.2223628 0.6239326 0.2069062 0.7166781 0.2069061 0.6239327 0.1914476 0.716678 0.1914476 0.6239326 0.1759868 0.7166781 0.1759868 0.6239326 0.1605244 0.716678 0.1605244 0.6239326 0.1450602 0.716678 0.1450602 0.6239327 0.1295946 0.716678 0.1295946 0.6239326 0.1141276 0.716678 0.1141276 0.6239327 0.09865981 0.716678 0.09865981 0.6239326 0.08319101 0.716678 0.08319098 0.6239327 0.06772158 0.7166781 0.06772158 0.6239327 0.05225188 0.7166781 0.05225185 0.6239327 0.036782 0.7166781 0.03678206 0.6239326 0.9943146 0.716678 0.9943148 0.6239327 0.978846 0.7166781 0.978846 0.6239326 0.963378 0.716678 0.963378 0.6239326 0.947911 0.716678 0.947911 0.6239327 0.9324454 0.716678 0.9324453 0.6239326 0.9169811 0.716678 0.9169811 0.6239327 0.9015188 0.7166781 0.9015188 0.6239327 0.886058 0.716678 0.886058 0.6239326 0.8705993 0.7166781 0.8705992 0.6239326 0.8551426 0.716678 0.8551426 0.6239326 0.8396882 0.7166781 0.8396882 0.6239326 0.824236 0.7166781 0.824236 0.6239326 0.8087864 0.7166781 0.8087863 0.6239326 0.7933392 0.716678 0.7933391 0.6239326 0.7778943 0.716678 0.7778941 0.6239326 0.7624519 0.7166781 0.7624518 0.6239326 0.7470118 0.7166781 0.7470118 0.6239326 0.7315742 0.7166781 0.7315742 0.6239326 0.7161388 0.7166781 0.7161388 0.6239326 0.7007058 0.7166781 0.7007057 0.6239326 0.6852748 0.7166781 0.6852748 0.6239326 0.6698458 0.7166781 0.6698458 0.6239326 0.6544185 0.7166781 0.6544185 0.6239327 0.6389929 0.7166781 0.6389929 0.6239327 0.6235688 0.7166781 0.6235686 0.6239327 0.6081459 0.7166781 0.6081458 0.6239327 0.592724 0.7166781 0.5927241 0.6239327 0.5773029 0.7166781 0.5773029 0.6239327 0.5618825 0.716678 0.5618824 0.6239327 0.5464624 0.716678 0.5464624 0.6239327 0.5310424 0.716678 0.5310425 0.6239327 0.5156223 0.716678 0.5156224 0.3896091 0.4839271 0.3896091 0.4989658 0.5156454 0.4989658 0.5156454 0.4839272 0.3896091 0.4688869 0.5156454 0.4688869 0.3896091 0.4538448 0.5156454 0.4538448</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pistonShape1-map1-array\" count=\"646\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pistonShape1-vertices\" name=\"pistonShape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pistonShape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"320\">\r\n          <input semantic=\"VERTEX\" source=\"#pistonShape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pistonShape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pistonShape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 0 0 0 1 1 64 2 2 65 3 3 2 4 4 1 5 0 65 6 3 66 7 5 3 8 6 2 9 4 66 10 5 67 11 7 4 12 8 3 13 6 67 14 7 68 15 9 5 16 10 4 17 8 68 18 9 69 19 11 6 20 12 5 21 10 69 22 11 70 23 13 7 24 14 6 25 12 70 26 13 71 27 15 8 28 16 7 29 14 71 30 15 72 31 17 9 32 18 8 33 16 72 34 17 73 35 19 10 36 20 9 37 18 73 38 19 74 39 21 11 40 22 10 41 20 74 42 21 75 43 23 12 44 24 11 45 22 75 46 23 76 47 25 13 48 26 12 49 24 76 50 25 77 51 27 14 52 28 13 53 26 77 54 27 78 55 29 15 56 30 14 57 28 78 58 29 79 59 31 16 60 32 15 61 30 79 62 31 80 63 33 49 64 34 48 65 35 112 66 36 113 67 37 50 68 38 49 69 34 113 70 37 114 71 39 51 72 40 50 73 38 114 74 39 115 75 41 52 76 42 51 77 40 115 78 41 116 79 43 53 80 44 52 81 42 116 82 43 117 83 45 54 84 46 53 85 44 117 86 45 118 87 47 55 88 48 54 89 46 118 90 47 119 91 49 56 92 50 55 93 48 119 94 49 120 95 51 57 96 52 56 97 50 120 98 51 121 99 53 58 100 54 57 101 52 121 102 53 122 103 55 59 104 56 58 105 54 122 106 55 123 107 57 60 108 58 59 109 56 123 110 57 124 111 59 61 112 60 60 113 58 124 114 59 125 115 61 62 116 62 61 117 60 125 118 61 126 119 63 63 120 64 62 121 62 126 122 63 127 123 65 0 124 1 63 125 64 127 126 65 64 127 2 33 128 66 32 129 67 96 130 68 97 131 69 34 132 70 33 133 66 97 134 69 98 135 71 35 136 72 34 137 70 98 138 71 99 139 73 36 140 74 35 141 72 99 142 73 100 143 75 37 144 76 36 145 74 100 146 75 101 147 77 38 148 78 37 149 76 101 150 77 102 151 79 39 152 80 38 153 78 102 154 79 103 155 81 40 156 82 39 157 80 103 158 81 104 159 83 41 160 84 40 161 82 104 162 83 105 163 85 42 164 86 41 165 84 105 166 85 106 167 87 43 168 88 42 169 86 106 170 87 107 171 89 44 172 90 43 173 88 107 174 89 108 175 91 45 176 92 44 177 90 108 178 91 109 179 93 46 180 94 45 181 92 109 182 93 110 183 95 47 184 96 46 185 94 110 186 95 111 187 97 48 188 35 47 189 96 111 190 97 112 191 36 17 192 98 16 193 32 80 194 33 81 195 99 18 196 100 17 197 98 81 198 99 82 199 101 19 200 102 18 201 100 82 202 101 83 203 103 20 204 104 19 205 102 83 206 103 84 207 105 21 208 106 20 209 104 84 210 105 85 211 107 22 212 108 21 213 106 85 214 107 86 215 109 23 216 110 22 217 108 86 218 109 87 219 111 24 220 112 23 221 110 87 222 111 88 223 113 25 224 114 24 225 112 88 226 113 89 227 115 26 228 116 25 229 114 89 230 115 90 231 117 27 232 118 26 233 116 90 234 117 91 235 119 28 236 120 27 237 118 91 238 119 92 239 121 29 240 122 28 241 120 92 242 121 93 243 123 30 244 124 29 245 122 93 246 123 94 247 125 31 248 126 30 249 124 94 250 125 95 251 127 32 252 67 31 253 126 95 254 127 96 255 68 65 256 512 64 257 513 128 258 514 129 259 515 66 260 516 65 261 512 129 262 515 130 263 517 67 264 518 66 265 516 130 266 517 131 267 519 68 268 520 67 269 518 131 270 519 132 271 521 69 272 522 68 273 520 132 274 521 133 275 523 70 276 524 69 277 522 133 278 523 134 279 525 71 280 526 70 281 524 134 282 525 135 283 527 72 284 528 71 285 526 135 286 527 136 287 529 73 288 530 72 289 528 136 290 529 137 291 531 74 292 532 73 293 530 137 294 531 138 295 533 75 296 534 74 297 532 138 298 533 139 299 535 76 300 536 75 301 534 139 302 535 140 303 537 77 304 538 76 305 536 140 306 537 141 307 539 78 308 540 77 309 538 141 310 539 142 311 541 79 312 542 78 313 540 142 314 541 143 315 543 80 316 544 79 317 542 143 318 543 144 319 545 81 320 546 80 321 544 144 322 545 145 323 547 82 324 548 81 325 546 145 326 547 146 327 549 83 328 550 82 329 548 146 330 549 147 331 551 84 332 552 83 333 550 147 334 551 148 335 553 85 336 554 84 337 552 148 338 553 149 339 555 86 340 556 85 341 554 149 342 555 150 343 557 87 344 558 86 345 556 150 346 557 151 347 559 88 348 560 87 349 558 151 350 559 152 351 561 89 352 562 88 353 560 152 354 561 153 355 563 90 356 564 89 357 562 153 358 563 154 359 565 91 360 566 90 361 564 154 362 565 155 363 567 92 364 568 91 365 566 155 366 567 156 367 569 93 368 570 92 369 568 156 370 569 157 371 571 94 372 572 93 373 570 157 374 571 158 375 573 95 376 264 94 377 572 158 378 573 159 379 263 96 380 265 95 381 264 159 382 263 160 383 262 97 384 576 96 385 574 160 386 575 161 387 577 98 388 578 97 389 576 161 390 577 162 391 579 99 392 580 98 393 578 162 394 579 163 395 581 100 396 582 99 397 580 163 398 581 164 399 583 101 400 584 100 401 582 164 402 583 165 403 585 102 404 586 101 405 584 165 406 585 166 407 587 103 408 588 102 409 586 166 410 587 167 411 589 104 412 590 103 413 588 167 414 589 168 415 591 105 416 592 104 417 590 168 418 591 169 419 593 106 420 594 105 421 592 169 422 593 170 423 595 107 424 596 106 425 594 170 426 595 171 427 597 108 428 598 107 429 596 171 430 597 172 431 599 109 432 600 108 433 598 172 434 599 173 435 601 110 436 602 109 437 600 173 438 601 174 439 603 111 440 604 110 441 602 174 442 603 175 443 605 112 444 606 111 445 604 175 446 605 176 447 607 113 448 608 112 449 606 176 450 607 177 451 609 114 452 610 113 453 608 177 454 609 178 455 611 115 456 612 114 457 610 178 458 611 179 459 613 116 460 614 115 461 612 179 462 613 180 463 615 117 464 616 116 465 614 180 466 615 181 467 617 118 468 618 117 469 616 181 470 617 182 471 619 119 472 620 118 473 618 182 474 619 183 475 621 120 476 622 119 477 620 183 478 621 184 479 623 121 480 624 120 481 622 184 482 623 185 483 625 122 484 626 121 485 624 185 486 625 186 487 627 123 488 628 122 489 626 186 490 627 187 491 629 124 492 630 123 493 628 187 494 629 188 495 631 125 496 632 124 497 630 188 498 631 189 499 633 126 500 634 125 501 632 189 502 633 190 503 635 127 504 636 126 505 634 190 506 635 191 507 637 64 508 513 127 509 636 191 510 637 128 511 514 129 512 128 128 513 129 192 514 130 193 515 131 130 516 132 129 517 128 193 518 131 194 519 133 131 520 134 130 521 132 194 522 133 195 523 135 132 524 136 131 525 134 195 526 135 196 527 137 133 528 138 132 529 136 196 530 137 197 531 139 134 532 140 133 533 138 197 534 139 198 535 141 135 536 142 134 537 140 198 538 141 199 539 143 136 540 144 135 541 142 199 542 143 200 543 145 137 544 146 136 545 144 200 546 145 201 547 147 138 548 148 137 549 146 201 550 147 202 551 149 139 552 150 138 553 148 202 554 149 203 555 151 140 556 152 139 557 150 203 558 151 204 559 153 141 560 154 140 561 152 204 562 153 205 563 155 142 564 156 141 565 154 205 566 155 206 567 157 143 568 158 142 569 156 206 570 157 207 571 159 144 572 160 143 573 158 207 574 159 208 575 161 145 576 162 144 577 160 208 578 161 209 579 163 146 580 164 145 581 162 209 582 163 210 583 165 147 584 166 146 585 164 210 586 165 211 587 167 148 588 168 147 589 166 211 590 167 212 591 169 149 592 170 148 593 168 212 594 169 213 595 171 150 596 172 149 597 170 213 598 171 214 599 173 151 600 174 150 601 172 214 602 173 215 603 175 152 604 176 151 605 174 215 606 175 216 607 177 153 608 178 152 609 176 216 610 177 217 611 179 154 612 180 153 613 178 217 614 179 218 615 181 155 616 182 154 617 180 218 618 181 219 619 183 156 620 184 155 621 182 219 622 183 220 623 185 157 624 186 156 625 184 220 626 185 221 627 187 158 628 188 157 629 186 221 630 187 222 631 189 159 632 190 158 633 188 222 634 189 223 635 191 160 636 192 159 637 190 223 638 191 224 639 193 161 640 194 160 641 192 224 642 193 225 643 195 162 644 196 161 645 194 225 646 195 226 647 197 163 648 198 162 649 196 226 650 197 227 651 199 164 652 200 163 653 198 227 654 199 228 655 201 165 656 202 164 657 200 228 658 201 229 659 203 166 660 204 165 661 202 229 662 203 230 663 205 167 664 206 166 665 204 230 666 205 231 667 207 168 668 208 167 669 206 231 670 207 232 671 209 169 672 210 168 673 208 232 674 209 233 675 211 170 676 212 169 677 210 233 678 211 234 679 213 171 680 214 170 681 212 234 682 213 235 683 215 172 684 216 171 685 214 235 686 215 236 687 217 173 688 218 172 689 216 236 690 217 237 691 219 174 692 220 173 693 218 237 694 219 238 695 221 175 696 222 174 697 220 238 698 221 239 699 223 176 700 224 175 701 222 239 702 223 240 703 225 177 704 226 176 705 224 240 706 225 241 707 227 178 708 228 177 709 226 241 710 227 242 711 229 179 712 230 178 713 228 242 714 229 243 715 231 180 716 232 179 717 230 243 718 231 244 719 233 181 720 234 180 721 232 244 722 233 245 723 235 182 724 236 181 725 234 245 726 235 246 727 237 183 728 238 182 729 236 246 730 237 247 731 239 184 732 240 183 733 238 247 734 239 248 735 241 185 736 242 184 737 240 248 738 241 249 739 243 186 740 244 185 741 242 249 742 243 250 743 245 187 744 246 186 745 244 250 746 245 251 747 247 188 748 248 187 749 246 251 750 247 252 751 249 189 752 250 188 753 248 252 754 249 253 755 251 190 756 252 189 757 250 253 758 251 254 759 253 191 760 254 190 761 252 254 762 253 255 763 255 128 764 129 191 765 254 255 766 255 192 767 130 193 768 638 192 769 639 256 770 640 257 771 641 194 772 642 193 773 638 257 774 641 258 775 643 195 776 644 194 777 642 258 778 643 259 779 645 196 780 511 195 781 644 259 782 645 260 783 510 197 784 509 196 785 511 260 786 510 261 787 508 198 788 507 197 789 509 261 790 508 262 791 506 199 792 505 198 793 507 262 794 506 263 795 504 200 796 503 199 797 505 263 798 504 264 799 502 201 800 501 200 801 503 264 802 502 265 803 500 202 804 499 201 805 501 265 806 500 266 807 498 203 808 497 202 809 499 266 810 498 267 811 496 204 812 495 203 813 497 267 814 496 268 815 494 205 816 493 204 817 495 268 818 494 269 819 492 206 820 491 205 821 493 269 822 492 270 823 490 207 824 489 206 825 491 270 826 490 271 827 488 208 828 487 207 829 489 271 830 488 272 831 486 209 832 485 208 833 487 272 834 486 273 835 484 210 836 483 209 837 485 273 838 484 274 839 482 211 840 481 210 841 483 274 842 482 275 843 480 212 844 479 211 845 481 275 846 480 276 847 478 213 848 477 212 849 479 276 850 478 277 851 476 214 852 475 213 853 477 277 854 476 278 855 474 215 856 473 214 857 475 278 858 474 279 859 472 216 860 471 215 861 473 279 862 472 280 863 470 217 864 469 216 865 471 280 866 470 281 867 468 218 868 467 217 869 469 281 870 468 282 871 466 219 872 465 218 873 467 282 874 466 283 875 464 220 876 463 219 877 465 283 878 464 284 879 462 221 880 461 220 881 463 284 882 462 285 883 460 222 884 459 221 885 461 285 886 460 286 887 458 223 888 260 222 889 459 286 890 458 287 891 259 224 892 261 223 893 260 287 894 259 288 895 258 225 896 455 224 897 457 288 898 456 289 899 454 226 900 453 225 901 455 289 902 454 290 903 452 227 904 451 226 905 453 290 906 452 291 907 450 228 908 449 227 909 451 291 910 450 292 911 448 229 912 447 228 913 449 292 914 448 293 915 446 230 916 445 229 917 447 293 918 446 294 919 444 231 920 443 230 921 445 294 922 444 295 923 442 232 924 441 231 925 443 295 926 442 296 927 440 233 928 439 232 929 441 296 930 440 297 931 438 234 932 437 233 933 439 297 934 438 298 935 436 235 936 435 234 937 437 298 938 436 299 939 434 236 940 433 235 941 435 299 942 434 300 943 432 237 944 431 236 945 433 300 946 432 301 947 430 238 948 429 237 949 431 301 950 430 302 951 428 239 952 427 238 953 429 302 954 428 303 955 426 240 956 425 239 957 427 303 958 426 304 959 424 241 960 423 240 961 425 304 962 424 305 963 422 242 964 421 241 965 423 305 966 422 306 967 420 243 968 419 242 969 421 306 970 420 307 971 418 244 972 417 243 973 419 307 974 418 308 975 416 245 976 415 244 977 417 308 978 416 309 979 414 246 980 413 245 981 415 309 982 414 310 983 412 247 984 411 246 985 413 310 986 412 311 987 410 248 988 409 247 989 411 311 990 410 312 991 408 249 992 407 248 993 409 312 994 408 313 995 406 250 996 405 249 997 407 313 998 406 314 999 404 251 1000 403 250 1001 405 314 1002 404 315 1003 402 252 1004 401 251 1005 403 315 1006 402 316 1007 400 253 1008 399 252 1009 401 316 1010 400 317 1011 398 254 1012 397 253 1013 399 317 1014 398 318 1015 396 255 1016 395 254 1017 397 318 1018 396 319 1019 394 192 1020 639 255 1021 395 319 1022 394 256 1023 640 0 1024 393 1 1025 392 321 1026 391 320 1027 390 1 1028 392 2 1029 389 322 1030 388 321 1031 391 2 1032 389 3 1033 387 323 1034 386 322 1035 388 3 1036 387 4 1037 385 324 1038 384 323 1039 386 4 1040 385 5 1041 383 325 1042 382 324 1043 384 5 1044 383 6 1045 381 326 1046 380 325 1047 382 6 1048 381 7 1049 379 327 1050 378 326 1051 380 7 1052 379 8 1053 377 328 1054 376 327 1055 378 8 1056 377 9 1057 375 329 1058 374 328 1059 376 9 1060 375 10 1061 373 330 1062 372 329 1063 374 10 1064 373 11 1065 371 331 1066 370 330 1067 372 11 1068 371 12 1069 369 332 1070 368 331 1071 370 12 1072 369 13 1073 367 333 1074 366 332 1075 368 13 1076 367 14 1077 365 334 1078 364 333 1079 366 14 1080 365 15 1081 363 335 1082 362 334 1083 364 15 1084 363 16 1085 361 336 1086 360 335 1087 362 16 1088 361 17 1089 359 337 1090 358 336 1091 360 17 1092 359 18 1093 357 338 1094 356 337 1095 358 18 1096 357 19 1097 355 339 1098 354 338 1099 356 19 1100 355 20 1101 353 340 1102 352 339 1103 354 20 1104 353 21 1105 351 341 1106 350 340 1107 352 21 1108 351 22 1109 349 342 1110 348 341 1111 350 22 1112 349 23 1113 347 343 1114 346 342 1115 348 23 1116 347 24 1117 345 344 1118 344 343 1119 346 24 1120 345 25 1121 343 345 1122 342 344 1123 344 25 1124 343 26 1125 341 346 1126 340 345 1127 342 26 1128 341 27 1129 339 347 1130 338 346 1131 340 27 1132 339 28 1133 337 348 1134 336 347 1135 338 28 1136 337 29 1137 335 349 1138 334 348 1139 336 29 1140 335 30 1141 333 350 1142 332 349 1143 334 30 1144 333 31 1145 331 351 1146 330 350 1147 332 31 1148 331 32 1149 329 352 1150 328 351 1151 330 32 1152 329 33 1153 257 353 1154 256 352 1155 328 33 1156 327 34 1157 325 354 1158 324 353 1159 326 34 1160 325 35 1161 323 355 1162 322 354 1163 324 35 1164 323 36 1165 321 356 1166 320 355 1167 322 36 1168 321 37 1169 319 357 1170 318 356 1171 320 37 1172 319 38 1173 317 358 1174 316 357 1175 318 38 1176 317 39 1177 315 359 1178 314 358 1179 316 39 1180 315 40 1181 313 360 1182 312 359 1183 314 40 1184 313 41 1185 311 361 1186 310 360 1187 312 41 1188 311 42 1189 309 362 1190 308 361 1191 310 42 1192 309 43 1193 307 363 1194 306 362 1195 308 43 1196 307 44 1197 305 364 1198 304 363 1199 306 44 1200 305 45 1201 303 365 1202 302 364 1203 304 45 1204 303 46 1205 301 366 1206 300 365 1207 302 46 1208 301 47 1209 299 367 1210 298 366 1211 300 47 1212 299 48 1213 297 368 1214 296 367 1215 298 48 1216 297 49 1217 295 369 1218 294 368 1219 296 49 1220 295 50 1221 293 370 1222 292 369 1223 294 50 1224 293 51 1225 291 371 1226 290 370 1227 292 51 1228 291 52 1229 289 372 1230 288 371 1231 290 52 1232 289 53 1233 287 373 1234 286 372 1235 288 53 1236 287 54 1237 285 374 1238 284 373 1239 286 54 1240 285 55 1241 283 375 1242 282 374 1243 284 55 1244 283 56 1245 281 376 1246 280 375 1247 282 56 1248 281 57 1249 279 377 1250 278 376 1251 280 57 1252 279 58 1253 277 378 1254 276 377 1255 278 58 1256 277 59 1257 275 379 1258 274 378 1259 276 59 1260 275 60 1261 273 380 1262 272 379 1263 274 60 1264 273 61 1265 271 381 1266 270 380 1267 272 61 1268 271 62 1269 269 382 1270 268 381 1271 270 62 1272 269 63 1273 267 383 1274 266 382 1275 268 63 1276 267 0 1277 393 320 1278 390 383 1279 266</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pistonShape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBodyShape\" name=\"gearBodyShape\">\r\n      <mesh>\r\n        <source id=\"gearBodyShape-positions\" name=\"gearBodyShape-positions\">\r\n          <float_array id=\"gearBodyShape-positions-array\" count=\"990\">-3.811147 0 -5.991943 -3.811147 1.851612 -5.698677 -3.811147 3.521976 -4.847584 -3.811147 4.847584 -3.521976 -3.811147 5.698677 -1.851612 -3.811147 5.991944 0 -3.811147 5.698678 1.851613 -3.811147 4.847585 3.521976 -3.811147 3.521976 4.847585 -3.811147 1.851613 5.698678 -3.811147 0 5.991945 -3.811147 -1.851613 5.698678 -3.811147 -3.521977 4.847586 -3.811147 -4.847586 3.521977 -3.811147 -5.698679 1.851613 -3.811147 -5.991946 0 -3.811147 -5.698679 -1.851613 -3.811147 -4.847586 -3.521977 -3.811147 -3.521978 -4.847586 -3.811147 -1.851614 -5.69868 3.811146 0 -5.991943 3.811146 1.851612 -5.698677 3.811146 3.521976 -4.847584 3.811146 4.847584 -3.521976 3.811146 5.698677 -1.851612 3.811146 5.991944 0 3.811146 5.698678 1.851613 3.811146 4.847585 3.521976 3.811146 3.521976 4.847585 3.811146 1.851613 5.698678 3.811146 0 5.991945 3.811146 -1.851613 5.698678 3.811146 -3.521977 4.847586 3.811146 -4.847586 3.521977 3.811146 -5.698679 1.851613 3.811146 -5.991946 0 3.811146 -5.698679 -1.851613 3.811146 -4.847586 -3.521977 3.811146 -3.521978 -4.847586 3.811146 -1.851614 -5.69868 3.811146 0 -7.901943 3.811146 2.441835 -7.515194 3.811146 4.644646 -6.392806 3.811146 6.392807 -4.644645 3.811146 7.515195 -2.441834 3.811146 7.901943 0 3.811146 7.515195 2.441835 3.811146 6.392807 4.644647 3.811146 4.644646 6.392807 3.811146 2.441834 7.515196 3.811146 0 7.901944 3.811146 -2.441836 7.515196 3.811146 -4.644648 6.392807 3.811146 -6.392809 4.644646 3.811146 -7.515197 2.441834 3.811146 -7.901946 0 3.811146 -7.515196 -2.441837 3.811146 -6.392807 -4.644649 3.811146 -4.644646 -6.39281 3.811146 -2.441834 -7.515198 -3.811147 0 -7.901943 -3.811147 2.441835 -7.515194 -3.811147 4.644646 -6.392806 -3.811147 6.392807 -4.644645 -3.811147 7.515195 -2.441834 -3.811147 7.901943 0 -3.811147 7.515195 2.441835 -3.811147 6.392807 4.644647 -3.811147 4.644646 6.392807 -3.811147 2.441834 7.515196 -3.811147 0 7.901944 -3.811147 -2.441836 7.515196 -3.811147 -4.644648 6.392807 -3.811147 -6.392809 4.644646 -3.811147 -7.515197 2.441834 -3.811147 -7.901946 0 -3.811147 -7.515196 -2.441837 -3.811147 -6.392807 -4.644649 -3.811147 -4.644646 -6.39281 -3.811147 -2.441834 -7.515198 3.54197 0 -5.991943 3.54197 1.851612 -5.698677 3.54197 3.521976 -4.847584 3.54197 4.847584 -3.521976 3.54197 5.698677 -1.851612 3.54197 5.991944 0 3.54197 5.698678 1.851613 3.54197 4.847585 3.521976 3.54197 3.521976 4.847585 3.54197 1.851613 5.698678 3.54197 0 5.991945 3.54197 -1.851613 5.698678 3.54197 -3.521977 4.847586 3.54197 -4.847586 3.521977 3.54197 -5.698679 1.851613 3.54197 -5.991946 0 3.54197 -5.698679 -1.851613 3.54197 -4.847586 -3.521977 3.54197 -3.521978 -4.847586 3.54197 -1.851614 -5.69868 0.4944224 0 -5.991943 0.4944224 1.851612 -5.698677 0.4944224 3.521976 -4.847584 0.4944224 4.847584 -3.521976 0.4944224 5.698677 -1.851612 0.4944224 5.991944 0 0.4944224 5.698678 1.851613 0.4944224 4.847585 3.521976 0.4944224 3.521976 4.847585 0.4944224 1.851613 5.698678 0.4944224 0 5.991945 0.4944224 -1.851613 5.698678 0.4944224 -3.521977 4.847586 0.4944224 -4.847586 3.521977 0.4944224 -5.698679 1.851613 0.4944224 -5.991946 0 0.4944224 -5.698679 -1.851613 0.4944224 -4.847586 -3.521977 0.4944224 -3.521978 -4.847586 0.4944224 -1.851614 -5.69868 3.811146 0 -5.797058 3.811146 1.791389 -5.51333 3.811146 3.407425 -4.689919 3.811146 4.689919 -3.407425 3.811146 5.51333 -1.79139 3.811146 5.797059 0 3.811146 5.513331 1.79139 3.811146 4.689919 3.407426 3.811146 3.407426 4.689919 3.811146 1.79139 5.513331 3.811146 0 5.79706 3.811146 -1.79139 5.513332 3.811146 -3.407427 4.68992 3.811146 -4.68992 3.407427 3.811146 -5.513332 1.79139 3.811146 -5.79706 0 3.811146 -5.513332 -1.79139 3.811146 -4.689921 -3.407427 3.811146 -3.407427 -4.68992 3.811146 -1.791391 -5.513333 0.4949086 0 -3.078064 0.4949086 0.951174 -2.927413 3.81066 0 -3.078064 3.81066 0.951174 -2.927413 0.4949086 1.809241 -2.490207 3.81066 1.809241 -2.490207 0.4949086 2.490207 -1.809241 3.81066 2.490207 -1.809241 0.4949086 2.927413 -0.9511741 3.81066 2.927413 -0.9511741 0.4949086 3.078065 0 3.81066 3.078065 0 0.4949086 2.927414 0.9511751 3.81066 2.927414 0.9511751 0.4949086 2.490207 1.809242 3.81066 2.490207 1.809242 0.4949086 1.809241 2.490208 3.81066 1.809241 2.490208 0.4949086 0.9511741 2.927415 3.81066 0.9511741 2.927415 0.4949086 0 3.078066 3.81066 0 3.078066 0.4949086 -0.9511752 2.927415 3.81066 -0.9511753 2.927415 0.4949086 -1.809242 2.490209 3.81066 -1.809242 2.490209 0.4949086 -2.490209 1.809242 3.81066 -2.490209 1.809242 0.4949086 -2.927415 0.9511752 3.81066 -2.927415 0.9511753 0.4949086 -3.078067 0 3.81066 -3.078067 0 0.4949086 -2.927415 -0.9511744 3.81066 -2.927415 -0.9511744 0.4949086 -2.490209 -1.809242 3.81066 -2.490209 -1.809242 0.4949086 -1.809243 -2.490208 3.81066 -1.809243 -2.490208 0.4949086 -0.9511756 -2.927415 3.81066 -0.9511756 -2.927415 1.964241 0 -3.078064 1.964241 0.951174 -2.927413 1.964241 1.809241 -2.490207 1.964241 2.490207 -1.809241 1.964241 2.927413 -0.9511741 1.964241 3.078065 0 1.964241 2.927414 0.9511751 1.964241 2.490207 1.809242 1.964241 1.809241 2.490208 1.964241 0.9511741 2.927415 1.964241 0 3.078066 1.964241 -0.9511753 2.927415 1.964241 -1.809242 2.490209 1.964241 -2.490209 1.809242 1.964241 -2.927415 0.9511752 1.964241 -3.078067 0 1.964241 -2.927415 -0.9511744 1.964241 -2.490209 -1.809242 1.964241 -1.809243 -2.490208 1.964241 -0.9511756 -2.927415 1.639688 0 -3.078064 1.639688 0.951174 -2.927413 1.639688 1.809241 -2.490207 1.639688 2.490207 -1.809241 1.639688 2.927413 -0.9511741 1.639688 3.078065 0 1.639688 2.927414 0.9511751 1.639688 2.490207 1.809242 1.639688 1.809241 2.490208 1.639688 0.9511741 2.927415 1.639688 0 3.078066 1.639688 -0.9511753 2.927415 1.639688 -1.809242 2.490209 1.639688 -2.490209 1.809242 1.639688 -2.927415 0.9511752 1.639688 -3.078067 0 1.639688 -2.927415 -0.9511744 1.639688 -2.490209 -1.809242 1.639688 -1.809243 -2.490208 1.639688 -0.9511756 -2.927415 3.811146 -0.758626 4.847895 3.811146 -1.267388 5.107121 3.811146 -0.3548703 5.25165 3.811146 -0.249864 4.588667 3.811146 -1.162382 4.444139 3.811146 -1.017853 5.356657 3.811146 -0.6693025 5.411861 3.811146 -0.194659 4.937218 3.811146 -1.322593 4.758571 3.811146 -0.4993988 4.339133 3.811146 -0.8479495 4.283927 3.811146 -3.463262 3.47612 3.811146 -3.373939 4.040087 3.811146 -2.899295 3.565444 3.811146 -3.552586 2.912153 3.811146 -4.027229 3.386796 3.811146 -3.972024 3.735347 3.811146 -3.722489 3.984882 3.811146 -3.059506 3.879876 3.811146 -3.867018 3.072364 3.811146 -3.204035 2.967358 3.811146 -2.9545 3.216893 3.811146 -4.84505 0.7765856 3.811146 -5.104277 1.285348 3.811146 -4.281083 0.8659093 3.811146 -4.336288 0.5173585 3.811146 -5.248806 0.3728299 3.811146 -5.353812 1.035813 3.811146 -5.409017 0.687262 3.811146 -4.934373 0.2126187 3.811146 -4.585823 0.2678237 3.811147 -4.441294 1.180341 3.811146 -4.755726 1.340553 3.811146 -4.376194 -2.219578 3.811146 -4.884955 -1.960351 3.811146 -4.28687 -1.655611 3.811146 -3.867431 -2.478805 3.811146 -4.465517 -2.783545 3.811146 -4.635421 -1.710816 3.811146 -3.812226 -2.130254 3.811146 -3.972438 -1.815822 3.811146 -4.116966 -2.72834 3.811146 -4.94016 -2.308902 3.811146 -4.779949 -2.623334 3.811146 -2.23578 -4.367938 3.811146 -1.976552 -4.8767 3.811146 -2.799747 -4.457262 3.811146 -2.146456 -3.803971 3.811146 -1.832024 -3.964182 3.811146 -1.671813 -4.278615 3.811146 -1.727018 -4.627165 3.811146 -2.325103 -4.931905 3.811146 -2.639535 -4.771694 3.811146 -2.495007 -3.859176 3.811146 -2.744542 -4.108711 3.811146 0.758626 -4.847895 3.811146 0.8479495 -4.283927 3.811146 1.267388 -5.107121 3.811146 0.3548703 -5.25165 3.811146 0.4993988 -4.339133 3.811146 1.322593 -4.758571 3.811146 1.162382 -4.444139 3.811146 0.249864 -4.588667 3.811146 0.194659 -4.937218 3.811146 1.017853 -5.356656 3.811146 0.6693025 -5.411861 3.811146 3.463262 -3.47612 3.811146 3.204035 -2.967358 3.811146 4.027229 -3.386796 3.811146 3.373939 -4.040087 3.811146 2.9545 -3.216893 3.811146 3.552586 -2.912153 3.811145 3.867018 -3.072364 3.811146 3.972024 -3.735347 3.811146 3.722489 -3.984882 3.811146 2.899295 -3.565444 3.811146 3.059506 -3.879876 3.811146 4.84505 -0.7765856 3.811146 4.336288 -0.5173585 3.811146 5.248806 -0.3728299 3.811146 5.104277 -1.285348 3.811146 4.281083 -0.8659093 3.811146 4.441294 -1.180341 3.811146 4.755726 -1.340553 3.811146 5.353812 -1.035813 3.811146 5.409017 -0.687262 3.811146 4.934373 -0.2126187 3.811146 4.585823 -0.2678237 3.811146 4.376194 2.219578 3.811146 4.465517 2.783545 3.811146 4.884955 1.960351 3.811146 3.972438 1.815822 3.811146 3.812226 2.130254 3.811146 4.779949 2.623334 3.811146 4.94016 2.308902 3.811146 4.63542 1.710816 3.811146 4.28687 1.655611 3.811146 3.867431 2.478805 3.811146 4.116966 2.72834 3.811146 2.23578 4.367938 3.811146 1.832024 3.964182 3.811146 1.976552 4.8767 3.811146 2.799747 4.457262 3.811146 2.146456 3.803971 3.811146 1.727018 4.627165 3.811146 1.671813 4.278615 3.811146 2.325103 4.931905 3.811146 2.639535 4.771694 3.811146 2.744542 4.108711 3.811146 2.495007 3.859176</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBodyShape-positions-array\" count=\"330\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBodyShape-normals\" name=\"gearBodyShape-normals\">\r\n          <float_array id=\"gearBodyShape-normals-array\" count=\"3432\">0 -0.3090169 0.9510565 0 0 1 0 0 1 0 -0.3090169 0.9510565 0 -0.5877851 0.8090171 0 -0.5877851 0.8090171 0 -0.809017 0.5877852 0 -0.809017 0.5877852 0 -0.9510565 0.3090169 0 -0.9510565 0.3090169 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510566 -0.3090168 0 -0.9510566 -0.3090168 0 -0.809017 -0.5877852 0 -0.809017 -0.5877852 0 -0.5877854 -0.809017 0 -0.5877854 -0.809017 0 -0.3090171 -0.9510565 0 -0.3090171 -0.9510565 0 0 -0.9999999 0 0 -0.9999999 0 0.3090169 -0.9510565 0 0.3090169 -0.9510565 0 0.5877851 -0.8090171 0 0.5877851 -0.8090171 0 0.809017 -0.5877852 0 0.809017 -0.5877852 0 0.9510565 -0.3090171 0 0.9510565 -0.3090171 0 1 0 0 1 0 0 0.9510566 0.3090169 0 0.9510566 0.3090169 0 0.8090172 0.5877851 0 0.8090172 0.5877851 0 0.5877854 0.8090169 0 0.5877854 0.8090169 0 0.3090162 0.9510568 0 0.3090162 0.9510568 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.3090169 -0.9510566 0 0 -0.9999999 0 0 -0.9999999 0 0.3090169 -0.9510566 0 0.5877852 -0.8090171 0 0.5877852 -0.8090171 0 0.809017 -0.5877853 0 0.809017 -0.5877853 0 0.9510566 -0.309017 0 0.9510566 -0.309017 0 0.9999999 0 0 0.9999999 0 0 0.9510566 0.3090169 0 0.9510566 0.3090169 0 0.8090171 0.5877852 0 0.8090171 0.5877852 0 0.5877852 0.8090171 0 0.5877852 0.8090171 0 0.3090169 0.9510566 0 0.3090169 0.9510566 0 0 0.9999999 0 0 0.9999999 0 -0.3090169 0.9510565 0 -0.3090169 0.9510565 0 -0.5877852 0.809017 0 -0.5877852 0.809017 0 -0.8090171 0.5877852 0 -0.8090171 0.5877852 0 -0.9510566 0.3090169 0 -0.9510566 0.3090169 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510565 -0.3090172 0 -0.9510565 -0.3090172 0 -0.8090169 -0.5877854 0 -0.8090169 -0.5877854 0 -0.5877851 -0.8090171 0 -0.5877851 -0.8090171 0 -0.3090162 -0.9510568 0 -0.3090162 -0.9510568 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.3090169 0.9510565 0 0 1 0 0 1 0 -0.3090169 0.9510565 0 -0.5877852 0.8090171 0 -0.5877852 0.8090171 0 -0.8090169 0.5877854 0 -0.8090169 0.5877854 0 -0.9510565 0.3090171 0 -0.9510565 0.3090171 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510565 -0.3090169 0 -0.9510565 -0.3090169 0 -0.8090168 -0.5877855 0 -0.8090168 -0.5877855 0 -0.5877854 -0.8090169 0 -0.5877854 -0.8090169 0 -0.3090173 -0.9510565 0 -0.3090173 -0.9510565 0 0 -0.9999999 0 0 -0.9999999 0 0.3090168 -0.9510566 0 0.3090168 -0.9510566 0 0.5877851 -0.8090171 0 0.5877851 -0.8090171 0 0.8090169 -0.5877854 0 0.8090169 -0.5877854 0 0.9510566 -0.3090169 0 0.9510566 -0.3090169 0 0.9999999 0 0 0.9999999 0 0 0.9510566 0.3090169 0 0.9510566 0.3090169 0 0.8090173 0.5877849 0 0.8090173 0.5877849 0 0.5877856 0.8090168 0 0.5877856 0.8090168 0 0.3090162 0.9510568 0 0.3090162 0.9510568 0 -0.3090168 0.9510566 0 0 0.9999999 0 0 0.9999999 0 -0.3090168 0.9510566 0 -0.5877849 0.8090172 0 -0.5877849 0.8090172 0 -0.8090171 0.5877852 0 -0.8090171 0.5877852 0 -0.9510566 0.3090169 0 -0.9510565 0.3090169 0 -1 0 0 -0.9999999 0 0 -0.9510566 -0.3090167 0 -0.9510566 -0.3090167 0 -0.8090169 -0.5877852 0 -0.8090169 -0.5877852 0 -0.5877851 -0.8090171 0 -0.5877851 -0.8090171 0 -0.309017 -0.9510565 0 -0.309017 -0.9510565 0 0 -0.9999999 0 0 -1 0 0.3090167 -0.9510567 0 0.3090167 -0.9510567 0 0.5877851 -0.8090172 0 0.5877851 -0.8090172 0 0.8090171 -0.5877851 0 0.8090171 -0.5877851 0 0.9510566 -0.3090169 0 0.9510565 -0.3090169 0 0.9999999 0 0 0.9999999 0 0 0.9510567 0.3090167 0 0.9510566 0.3090167 0 0.8090172 0.587785 0 0.8090172 0.5877851 0 0.5877854 0.809017 0 0.5877854 0.8090169 0 0.3090161 0.9510568 0 0.3090161 0.9510568 -1 0 1.66855e-4 -1 0 1.66855e-4 -1 0 1.66855e-4 -1 0 1.66855e-4 0.5816731 0.1272473 -0.803408 0.5816731 0.1272473 -0.803408 0.5816731 0.1272473 -0.803408 0.5816731 0.1272473 -0.803408 -1 0 1.50522e-4 -1 0 1.50522e-4 -1 0 1.50522e-4 -1 0 1.50522e-4 0.5816722 0.3692866 -0.7247655 0.5816722 0.3692866 -0.7247655 0.5816722 0.3692866 -0.7247655 0.5816722 0.3692866 -0.7247655 -1 -1.19458e-4 1.19455e-4 -1 -1.19458e-4 1.19455e-4 -1 -1.19458e-4 1.19455e-4 -1 -1.19458e-4 1.19455e-4 0.5816736 0.5751763 -0.5751767 0.5816736 0.5751763 -0.5751767 0.5816736 0.5751763 -0.5751767 0.5816736 0.5751763 -0.5751767 -1 -1.50519e-4 0 -1 -1.50519e-4 0 -1 -1.50519e-4 0 -1 -1.50519e-4 0 0.5816728 0.7247651 -0.3692863 0.5816728 0.7247651 -0.3692863 0.5816728 0.7247651 -0.3692863 0.5816728 0.7247651 -0.3692863 -1 -1.66849e-4 0 -1 -1.66849e-4 0 -1 -1.66849e-4 0 -1 -1.66849e-4 0 0.5816733 0.8034081 -0.1272474 0.5816733 0.8034081 -0.1272474 0.5816733 0.8034081 -0.1272474 0.5816733 0.8034081 -0.1272474 -1 -1.66845e-4 0 -1 -1.66845e-4 0 -1 -1.66845e-4 0 -1 -1.66845e-4 0 0.5816733 0.803408 0.127247 0.5816733 0.803408 0.127247 0.5816733 0.803408 0.127247 0.5816733 0.803408 0.127247 -1 -1.50534e-4 0 -1 -1.50534e-4 0 -1 -1.50534e-4 0 -1 -1.50534e-4 0 0.5816734 0.7247645 0.3692865 0.5816734 0.7247645 0.3692865 0.5816734 0.7247645 0.3692865 0.5816734 0.7247645 0.3692865 -1 -1.19458e-4 -1.19455e-4 -1 -1.19458e-4 -1.19455e-4 -1 -1.19458e-4 -1.19455e-4 -1 -1.19458e-4 -1.19455e-4 0.5816733 0.5751765 0.5751768 0.5816733 0.5751765 0.5751768 0.5816733 0.5751765 0.5751768 0.5816733 0.5751765 0.5751768 -1 0 -1.50522e-4 -1 0 -1.50522e-4 -1 0 -1.50522e-4 -1 0 -1.50522e-4 0.5816729 0.3692866 0.7247649 0.5816729 0.3692866 0.7247649 0.5816729 0.3692866 0.7247649 0.5816729 0.3692866 0.7247649 -1 0 -1.66855e-4 -1 0 -1.66855e-4 -1 0 -1.66855e-4 -1 0 -1.66855e-4 0.5816739 0.1272473 0.8034076 0.5816739 0.1272473 0.8034076 0.5816739 0.1272473 0.8034076 0.5816739 0.1272473 0.8034076 -1 0 -1.66855e-4 -1 0 -1.66855e-4 -1 0 -1.66855e-4 -1 0 -1.66855e-4 0.5816727 -0.1272474 0.8034084 0.5816727 -0.1272474 0.8034084 0.5816727 -0.1272474 0.8034084 0.5816727 -0.1272474 0.8034084 -1 0 -1.50522e-4 -1 0 -1.50522e-4 -1 0 -1.50522e-4 -1 0 -1.50522e-4 0.5816732 -0.3692861 0.7247648 0.5816732 -0.3692861 0.7247648 0.5816732 -0.3692861 0.7247648 0.5816732 -0.3692861 0.7247648 -1 1.19443e-4 -1.19455e-4 -1 1.19443e-4 -1.19455e-4 -1 1.19443e-4 -1.19455e-4 -1 1.19443e-4 -1.19455e-4 0.5816727 -0.5751767 0.5751771 0.5816727 -0.5751767 0.5751771 0.5816727 -0.5751767 0.5751771 0.5816727 -0.5751767 0.5751771 -1 1.50519e-4 0 -1 1.50519e-4 0 -1 1.50519e-4 0 -1 1.50519e-4 0 0.5816723 -0.7247655 0.3692863 0.5816723 -0.7247655 0.3692863 0.5816723 -0.7247655 0.3692863 0.5816723 -0.7247655 0.3692863 -1 1.66856e-4 0 -1 1.66856e-4 0 -1 1.66856e-4 0 -1 1.66856e-4 0 0.581673 -0.8034082 0.1272473 0.581673 -0.8034082 0.1272473 0.581673 -0.8034082 0.1272473 0.581673 -0.8034082 0.1272473 -1 1.66867e-4 0 -1 1.66867e-4 0 -1 1.66867e-4 0 -1 1.66867e-4 0 0.5816732 -0.8034081 -0.1272473 0.5816732 -0.8034081 -0.1272473 0.5816732 -0.8034081 -0.1272473 0.5816732 -0.8034081 -0.1272473 -1 1.50504e-4 0 -1 1.50504e-4 0 -1 1.50504e-4 0 -1 1.50504e-4 0 0.5816727 -0.7247654 -0.369286 0.5816727 -0.7247654 -0.369286 0.5816727 -0.7247654 -0.369286 0.5816727 -0.7247654 -0.369286 -1 1.19458e-4 1.19455e-4 -1 1.19458e-4 1.19455e-4 -1 1.19458e-4 1.19455e-4 -1 1.19458e-4 1.19455e-4 0.5816733 -0.5751767 -0.5751764 0.5816733 -0.5751767 -0.5751764 0.5816733 -0.5751767 -0.5751764 0.5816733 -0.5751767 -0.5751764 -1 0 1.50522e-4 -1 0 1.50522e-4 -1 0 1.50522e-4 -1 0 1.50522e-4 0.581674 -0.3692863 -0.7247642 0.581674 -0.3692863 -0.7247642 0.581674 -0.3692863 -0.7247642 0.581674 -0.3692863 -0.7247642 -1 0 1.66855e-4 -1 0 1.66855e-4 -1 0 1.66855e-4 -1 0 1.66855e-4 0.5816733 -0.1272456 -0.8034083 0.5816733 -0.1272456 -0.8034083 0.5816733 -0.1272456 -0.8034083 0.5816733 -0.1272456 -0.8034083 1 0 0 1 0 0 1 0 0 1 0 1.61291e-4 1 0 1.61291e-4 1 0 1.61291e-4 1 0 1.61291e-4 1 0 0 1 0 0 1 0 0 1 -1.61397e-4 0 1 -1.61397e-4 0 1 -1.61397e-4 0 1 -1.61397e-4 0 1 0 0 1 0 0 1 0 0 1 -1.78809e-4 0 1 -1.78809e-4 0 1 -1.78809e-4 0 1 -1.78809e-4 0 0.9999999 -3.27273e-4 -1.66653e-4 0.9999999 -3.27273e-4 -1.66653e-4 0.9999999 -3.27273e-4 -1.66653e-4 0.9999999 -3.27273e-4 -1.66653e-4 1 -1.28017e-4 -1.28001e-4 1 -1.28017e-4 -1.28001e-4 1 -1.28017e-4 -1.28001e-4 1 -1.28017e-4 -1.28001e-4 0.9999999 0 -3.85897e-4 0.9999999 0 -3.85897e-4 0.9999999 0 -3.85897e-4 1 0 -1.78792e-4 1 0 -1.78792e-4 1 0 -1.78792e-4 1 0 -1.78792e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1.61291e-4 1 0 -1.61291e-4 1 0 -1.61291e-4 1 0 -1.61291e-4 1 0 0 1 0 0 1 0 0 1 1.61524e-4 0 1 1.61524e-4 0 1 1.61524e-4 0 1 1.61524e-4 0 0.9999998 4.15325e-4 6.99348e-4 0.9999998 4.15325e-4 6.99348e-4 0.9999998 4.15325e-4 6.99348e-4 1 1.78778e-4 0 1 1.78778e-4 0 1 1.78778e-4 0 1 1.78778e-4 0 0.9999998 0 8.05188e-4 0.9999998 0 8.05188e-4 0.9999998 0 8.05188e-4 1 1.28145e-4 1.28001e-4 1 1.28145e-4 1.28001e-4 1 1.28145e-4 1.28001e-4 1 1.28145e-4 1.28001e-4 0.9999999 0 3.85342e-4 0.9999999 0 3.85342e-4 0.9999999 0 3.85342e-4 1 0 1.78792e-4 1 0 1.78792e-4 1 0 1.78792e-4 1 0 1.78792e-4 0 -0.3090168 0.9510566 0 0 0.9999999 0 0 0.9999999 0 -0.3090168 0.9510566 0 -0.5877849 0.8090172 0 -0.5877849 0.8090172 0 -0.8090171 0.5877852 0 -0.8090171 0.5877852 0 -0.9510565 0.3090169 0 -0.9510566 0.3090169 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510567 -0.3090168 0 -0.9510567 -0.3090167 0 -0.8090169 -0.5877853 0 -0.8090169 -0.5877853 0 -0.5877851 -0.8090171 0 -0.5877851 -0.8090171 0 -0.309017 -0.9510565 0 -0.309017 -0.9510565 0 0 -0.9999999 0 0 -0.9999999 0 0.3090167 -0.9510567 0 0.3090167 -0.9510567 0 0.5877851 -0.8090172 0 0.5877851 -0.8090172 0 0.8090171 -0.5877851 0 0.8090172 -0.5877851 0 0.9510565 -0.3090169 0 0.9510566 -0.3090169 0 0.9999999 0 0 0.9999999 0 0 0.9510566 0.3090167 0 0.9510565 0.3090168 0 0.8090172 0.5877849 0 0.8090172 0.5877849 0 0.5877854 0.8090169 0 0.5877855 0.8090169 0 0.3090161 0.9510568 0 0.3090161 0.9510568 0.9999996 9.90132e-4 -1.57341e-4 0.9999996 9.90132e-4 -1.57341e-4 0.9999996 9.90132e-4 -1.57341e-4 0.9999996 -8.69502e-4 -4.41559e-4 0.9999996 -8.69502e-4 -4.41559e-4 0.9999996 -8.69502e-4 -4.41559e-4 1 -1.72194e-4 -3.45051e-4 1 -1.72194e-4 -3.45051e-4 1 -1.72194e-4 -3.45051e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 -3.62744e-4 0.9999999 0 -3.62744e-4 0.9999999 0 -3.62744e-4 0.9999999 0 -3.62744e-4 0.9999999 2.75705e-4 -2.75869e-4 0.9999999 2.75705e-4 -2.75869e-4 0.9999999 2.75705e-4 -2.75869e-4 1 0 0 1 0 0 1 0 0 0.9999997 7.89209e-4 -1.78793e-4 0.9999997 7.89209e-4 -1.78793e-4 0.9999997 7.89209e-4 -1.78793e-4 1 0 0 1 0 0 1 0 0 0.9999997 -6.33463e-4 -3.94214e-4 0.9999997 -6.33463e-4 -3.94214e-4 0.9999997 -6.33463e-4 -3.94214e-4 0.9999999 0 -3.8243e-4 0.9999999 0 -3.8243e-4 0.9999999 0 -3.8243e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999998 7.45963e-4 3.20281e-4 0.9999998 7.45963e-4 3.20281e-4 0.9999998 7.45963e-4 3.20281e-4 0.9999995 9.00623e-4 4.57065e-4 0.9999995 9.00623e-4 4.57065e-4 0.9999995 9.00623e-4 4.57065e-4 0.9999996 -4.37452e-4 -8.65625e-4 0.9999996 -4.37452e-4 -8.65625e-4 0.9999996 -4.37452e-4 -8.65625e-4 1 0 0 1 0 0 1 0 0 0.9999998 -2.82089e-4 -6.91984e-4 0.9999998 -2.82089e-4 -6.91984e-4 0.9999998 -2.82089e-4 -6.91984e-4 0.9999999 3.84251e-4 0 0.9999999 3.84251e-4 0 0.9999999 3.84251e-4 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 2.59519e-4 -2.59696e-4 1 2.59519e-4 -2.59696e-4 1 2.59519e-4 -2.59696e-4 1 2.59519e-4 -2.59696e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 3.62451e-4 0 1 3.62451e-4 0 1 3.62451e-4 0 1 3.62451e-4 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999996 1.52568e-4 -9.6002e-4 0.9999996 1.52568e-4 -9.6002e-4 0.9999996 1.52568e-4 -9.6002e-4 1 0 0 1 0 0 1 0 0 0.9999999 2.74435e-4 -2.73112e-4 0.9999999 2.74435e-4 -2.73112e-4 0.9999999 2.74435e-4 -2.73112e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 3.48159e-4 1.71328e-4 1 3.48159e-4 1.71328e-4 1 3.48159e-4 1.71328e-4 0.9999997 1.78574e-4 -7.26561e-4 0.9999997 1.78574e-4 -7.26561e-4 0.9999997 1.78574e-4 -7.26561e-4 1 0 0 1 0 0 1 0 0 0.9999995 4.60802e-4 9.08156e-4 0.9999995 4.60802e-4 9.08156e-4 0.9999995 4.60802e-4 9.08156e-4 1 0 0 1 0 0 1 0 0 1 3.82056e-4 0 1 3.82056e-4 0 1 3.82056e-4 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999996 -1.56631e-4 9.95799e-4 0.9999996 -1.56631e-4 9.95799e-4 0.9999996 -1.56631e-4 9.95799e-4 1 0 0 1 0 0 1 0 0 0.9999999 1.78014e-4 3.47219e-4 0.9999999 1.78014e-4 3.47219e-4 0.9999999 1.78014e-4 3.47219e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 3.2741e-4 1.66653e-4 0.9999999 3.2741e-4 1.66653e-4 0.9999999 3.2741e-4 1.66653e-4 0.9999999 3.2741e-4 1.66653e-4 0.9999996 6.85882e-4 -6.86628e-4 0.9999996 6.85882e-4 -6.86628e-4 0.9999996 6.85882e-4 -6.86628e-4 1 0 0 1 0 0 1 0 0 0.9999998 5.72428e-4 -4.80895e-4 0.9999998 5.72428e-4 -4.80895e-4 0.9999998 5.72428e-4 -4.80895e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999998 7.4729e-4 0 0.9999998 7.4729e-4 0 0.9999998 7.4729e-4 0 1 1.66853e-4 3.27239e-4 1 1.66853e-4 3.27239e-4 1 1.66853e-4 3.27239e-4 1 1.66853e-4 3.27239e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 3.45465e-4 1.7531e-4 0.9999999 3.45465e-4 1.7531e-4 0.9999999 3.45465e-4 1.7531e-4 1 0 0 1 0 0 1 0 0 0.9999996 9.55912e-4 -1.50931e-4 0.9999996 9.55912e-4 -1.50931e-4 0.9999996 9.55912e-4 -1.50931e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999996 -7.1043e-4 7.11549e-4 0.9999996 -7.1043e-4 7.11549e-4 0.9999996 -7.1043e-4 7.11549e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999997 -5.36948e-4 6.08853e-4 0.9999997 -5.36948e-4 6.08853e-4 0.9999997 -5.36948e-4 6.08853e-4 0.9999999 0 3.62859e-4 0.9999999 0 3.62859e-4 0.9999999 0 3.62859e-4 0.9999999 0 3.62859e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 1.74347e-4 3.45051e-4 0.9999999 1.74347e-4 3.45051e-4 0.9999999 1.74347e-4 3.45051e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999996 8.695e-4 4.41558e-4 0.9999996 8.695e-4 4.41558e-4 0.9999996 8.695e-4 4.41558e-4 0.9999997 6.33464e-4 3.94214e-4 0.9999997 6.33464e-4 3.94214e-4 0.9999997 6.33464e-4 3.94214e-4 1 0 0 1 0 0 1 0 0 1 -2.77876e-4 2.76004e-4 1 -2.77876e-4 2.76004e-4 1 -2.77876e-4 2.76004e-4 1 0 0 1 0 0 1 0 0 0.9999996 -9.90128e-4 1.57418e-4 0.9999996 -9.90128e-4 1.57418e-4 0.9999996 -9.90128e-4 1.57418e-4 0.9999997 -7.89207e-4 1.78792e-4 0.9999997 -7.89207e-4 1.78792e-4 0.9999997 -7.89207e-4 1.78792e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 3.82242e-4 0.9999999 0 3.82242e-4 0.9999999 0 3.82242e-4 0.9999999 -2.59519e-4 2.59568e-4 0.9999999 -2.59519e-4 2.59568e-4 0.9999999 -2.59519e-4 2.59568e-4 0.9999999 -2.59519e-4 2.59568e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999998 3.19863e-4 7.31457e-4 0.9999998 3.19863e-4 7.31457e-4 0.9999998 3.19863e-4 7.31457e-4 0.9999998 3.19863e-4 7.31457e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.84251e-4 0 1 -3.84251e-4 0 1 -3.84251e-4 0 1 0 0 1 0 0 1 0 0 0.9999997 -7.79556e-4 -3.52408e-4 0.9999997 -7.79556e-4 -3.52408e-4 0.9999997 -7.79556e-4 -3.52408e-4 0.9999997 -7.79556e-4 -3.52408e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 -3.62724e-4 0 0.9999999 -3.62724e-4 0 0.9999999 -3.62724e-4 0 0.9999999 -3.62724e-4 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -3.48295e-4 -1.7738e-4 1 -3.48295e-4 -1.7738e-4 1 -3.48295e-4 -1.7738e-4 1 0 0 1 0 0 1 0 0 0.9999997 -4.25212e-4 -7.45751e-4 0.9999997 -4.25212e-4 -7.45751e-4 0.9999997 -4.25212e-4 -7.45751e-4 0.9999997 -4.25212e-4 -7.45751e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 -2.73358e-4 2.7379e-4 0.9999999 -2.73358e-4 2.7379e-4 0.9999999 -2.73358e-4 2.7379e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999998 -1.72805e-4 7.80597e-4 0.9999998 -1.72805e-4 7.80597e-4 0.9999998 -1.72805e-4 7.80597e-4 0.9999998 -1.72805e-4 7.80597e-4 0.9999997 -5.97709e-4 5.29031e-4 0.9999997 -5.97709e-4 5.29031e-4 0.9999997 -5.97709e-4 5.29031e-4 0.9999997 -5.97709e-4 5.29031e-4 0.9999999 -1.76929e-4 -3.47786e-4 0.9999999 -1.76929e-4 -3.47786e-4 0.9999999 -1.76929e-4 -3.47786e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999996 0 -8.51044e-4 0.9999996 0 -8.51044e-4 0.9999996 0 -8.51044e-4 0.9999996 0 -8.51044e-4 1 0 0 1 0 0 1 0 0 0.9999999 -3.82594e-4 0 0.9999999 -3.82594e-4 0 0.9999999 -3.82594e-4 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1.66716e-4 -3.27236e-4 1 -1.66716e-4 -3.27236e-4 1 -1.66716e-4 -3.27236e-4 1 -1.66716e-4 -3.27236e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 -3.45464e-4 -1.75309e-4 0.9999999 -3.45464e-4 -1.75309e-4 0.9999999 -3.45464e-4 -1.75309e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999998 -7.94206e-4 0 0.9999998 -7.94206e-4 0 0.9999998 -7.94206e-4 0 0.9999998 -7.94206e-4 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999996 5.75128e-4 -6.33245e-4 0.9999996 5.75128e-4 -6.33245e-4 0.9999996 5.75128e-4 -6.33245e-4 0.9999996 5.75128e-4 -6.33245e-4 1 0 0 1 0 0 1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBodyShape-normals-array\" count=\"1144\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBodyShape-map1\" name=\"gearBodyShape-map1\">\r\n          <float_array id=\"gearBodyShape-map1-array\" count=\"1240\">0.7352171 0.8132464 0.06507277 0.520768 0.06545419 0.51836 0.7352172 0.2494029 0.06545419 0.51836 0.7352172 0.2807274 0.06507277 0.520768 0.7352171 0.3120521 0.06396592 0.5229405 0.7352171 0.3433767 0.06396592 0.5229405 0.7352171 0.3747013 0.06224185 0.5246645 0.7352172 0.406026 0.06224185 0.5246645 0.7352172 0.4373507 0.06006947 0.5257714 0.7352172 0.4686753 0.06006947 0.5257714 0.7352172 0.4999999 0.5185304 0.6221143 0.5194839 0.6160934 0.5256947 0.6160934 0.5244371 0.6240335 0.5157629 0.6275458 0.5207875 0.6311964 0.5114524 0.6318563 0.515103 0.6368809 0.5060209 0.6346238 0.5079401 0.6405305 0.5 0.6355773 0.5 0.6417881 0.4939791 0.6346238 0.4920599 0.6405305 0.4885476 0.6318563 0.484897 0.6368809 0.4842371 0.6275458 0.4792125 0.6311964 0.4814696 0.6221143 0.4755629 0.6240335 0.480516 0.6160934 0.4743053 0.6160934 0.4814696 0.6100725 0.4755629 0.6081533 0.4842371 0.604641 0.4792125 0.6009904 0.4885476 0.6003305 0.484897 0.5953059 0.4939791 0.597563 0.4920599 0.5916562 0.5 0.5966094 0.5 0.5903987 0.5060209 0.597563 0.5079401 0.5916562 0.5114524 0.6003305 0.515103 0.5953059 0.5157629 0.604641 0.5207875 0.6009904 0.5185304 0.6100725 0.5244372 0.6081533 0.5244371 0.6240335 0.5256947 0.6160934 0.5194839 0.6160934 0.5185304 0.6221143 0.5207875 0.6311964 0.5157629 0.6275458 0.515103 0.6368809 0.5114524 0.6318563 0.5079401 0.6405305 0.5060209 0.6346238 0.5 0.6417881 0.5 0.6355773 0.4920599 0.6405305 0.4939791 0.6346238 0.484897 0.6368809 0.4885476 0.6318563 0.4792125 0.6311964 0.4842371 0.6275458 0.4755629 0.6240335 0.4814696 0.6221143 0.4743053 0.6160934 0.480516 0.6160934 0.4755629 0.6081533 0.4814696 0.6100725 0.4792125 0.6009904 0.4842371 0.604641 0.484897 0.5953059 0.4885476 0.6003305 0.4920599 0.5916562 0.4939791 0.597563 0.5 0.5903987 0.5 0.5966094 0.5079401 0.5916562 0.5060209 0.597563 0.515103 0.5953059 0.5114524 0.6003305 0.5207875 0.6009904 0.5157629 0.604641 0.5244372 0.6081533 0.5185304 0.6100725 0.7352172 0.1867535 0.4811823 0.1867535 0.05766135 0.5261528 0.7352172 0.1867535 0.05766135 0.5261528 0.7352172 0.5313246 0.05525324 0.5257714 0.7352172 0.5626493 0.05525324 0.5257714 0.7352172 0.5939739 0.05308083 0.5246645 0.7352172 0.6252985 0.05308083 0.5246645 0.7352171 0.6566232 0.05135679 0.5229405 0.7352172 0.6879479 0.05135679 0.5229405 0.7352171 0.7192725 0.05024987 0.520768 0.7352172 0.7505971 0.05024987 0.520768 0.7352171 0.7819217 0.04986852 0.51836 0.4811823 0.2180781 0.4811823 0.8132464 0.7352171 0.8132464 0.7352171 0.2180781 0.4811823 0.2494028 0.7352172 0.2494029 0.4811822 0.2807275 0.7352171 0.2807275 0.4811822 0.3120521 0.7352171 0.3120521 0.4811823 0.3433767 0.7352171 0.3433767 0.4811822 0.3747014 0.7352171 0.3747014 0.4811822 0.406026 0.7352171 0.406026 0.4811822 0.4373506 0.7352172 0.4373507 0.4811822 0.4686753 0.7352172 0.4686753 0.4811823 0.4999999 0.7352172 0.4999999 0.4811823 0.5313246 0.7352172 0.5313246 0.4811823 0.5626493 0.7352172 0.5626493 0.4811823 0.5939739 0.7352172 0.5939739 0.4811823 0.6252986 0.7352172 0.6252986 0.4811823 0.6566232 0.7352172 0.6566232 0.4811823 0.6879479 0.7352171 0.6879479 0.4811823 0.7192725 0.7352171 0.7192725 0.4811823 0.7505971 0.7352172 0.7505971 0.4811822 0.7819217 0.7352171 0.7819218 0.7352171 0.2180781 0.04986852 0.51836 0.05024987 0.5159517 0.05024987 0.5159517 0.05135679 0.5137795 0.05135679 0.5137795 0.05308083 0.5120554 0.05308083 0.5120554 0.05525324 0.5109485 0.05525324 0.5109485 0.05766135 0.5105671 0.05766135 0.5105671 0.06006947 0.5109485 0.06006947 0.5109485 0.06224185 0.5120554 0.06224185 0.5120554 0.06396592 0.5137795 0.06396592 0.5137795 0.06507277 0.5159517 0.06507277 0.5159517 0.5665038 0.5202795 0.5670599 0.5200987 0.5917217 0.1867535 0.5917215 0.8132464 0.5917215 0.2180781 0.5917217 0.2494028 0.5917216 0.2807274 0.5917215 0.3120521 0.5917215 0.3433767 0.5917215 0.3747014 0.5917216 0.406026 0.5917216 0.4373507 0.5917216 0.4686753 0.5917217 0.4999999 0.5917217 0.5313246 0.5917217 0.5626493 0.5917217 0.5939739 0.5917217 0.6252985 0.5917215 0.6566232 0.5917217 0.6879479 0.5917215 0.7192725 0.5917217 0.7505971 0.5917215 0.7819217 0.5679399 0.525655 0.5670599 0.5312111 0.5665037 0.5310304 0.5673552 0.525655 0.564506 0.5362235 0.564033 0.5358797 0.5605283 0.5402012 0.5601845 0.5397281 0.5555159 0.5427551 0.5553352 0.542199 0.5499598 0.5436351 0.5499598 0.5430503 0.5444035 0.5427551 0.5445842 0.542199 0.5393913 0.5402012 0.539735 0.5397281 0.5354134 0.5362235 0.5358866 0.5358797 0.5328596 0.5312111 0.5334157 0.5310304 0.5319795 0.525655 0.5917215 0.2180781 0.5917217 0.1867535 0.4901533 0.1867535 0.4901533 0.2180781 0.5917217 0.2494028 0.4901533 0.2494028 0.5917216 0.2807274 0.4901533 0.2807275 0.5917215 0.3120521 0.4901533 0.3120521 0.5917215 0.3433767 0.4901533 0.3433767 0.5917215 0.3747014 0.4901533 0.3747014 0.5917216 0.406026 0.4901533 0.406026 0.5917216 0.4373507 0.4901533 0.4373506 0.5917216 0.4686753 0.4901533 0.4686753 0.5917217 0.4999999 0.4901533 0.4999999 0.5917217 0.5313246 0.4901533 0.5313246 0.5917217 0.5626493 0.4901533 0.5626493 0.5917217 0.5939739 0.4901533 0.5939739 0.5917217 0.6252985 0.4901533 0.6252985 0.5917215 0.6566232 0.4901533 0.6566232 0.5917217 0.6879479 0.4901533 0.6879478 0.5917215 0.7192725 0.4901533 0.7192725 0.5917217 0.7505971 0.4901533 0.7505971 0.5917215 0.7819217 0.4901533 0.7819217 0.5917215 0.8132464 0.4901533 0.8132464 0.4412882 0.9582136 0.5405949 0.8132464 0.4499283 0.9582136 0.4585685 0.9582136 0.4672086 0.9582136 0.4758487 0.9582136 0.4844888 0.9582136 0.4931289 0.9582136 0.501769 0.9582136 0.5104091 0.9582136 0.5190492 0.9582136 0.5276893 0.9582137 0.5363295 0.9582136 0.5449696 0.9582136 0.5536097 0.9582136 0.5622498 0.9582136 0.5708899 0.9582136 0.5795301 0.9582136 0.5881702 0.9582136 0.5968103 0.9582136 0.6054503 0.9582136 0.5505367 0.1867535 0.5505366 0.8132464 0.4499283 0.9554714 0.4585685 0.9554714 0.4672086 0.9554714 0.4758486 0.9554714 0.4844888 0.9554714 0.4931289 0.9554714 0.501769 0.9554714 0.5104091 0.9554714 0.5190492 0.9554714 0.5276893 0.9554714 0.5363295 0.9554714 0.5449696 0.9554714 0.5536097 0.9554714 0.5622498 0.9554714 0.5708899 0.9554714 0.5795301 0.9554714 0.5881702 0.9554714 0.5968103 0.9554714 0.6054503 0.9554714 0.5505366 0.7819217 0.4412882 0.9554714 0.6140904 0.9554714 0.5505367 0.7505971 0.5505366 0.7192725 0.5505367 0.6879479 0.5505366 0.6566232 0.5505367 0.6252985 0.5505367 0.5939739 0.5505367 0.5626493 0.5505367 0.5313246 0.5505367 0.4999999 0.5505367 0.4686753 0.5505367 0.4373506 0.5505367 0.406026 0.5505366 0.3747014 0.5505366 0.3433767 0.5505366 0.3120521 0.5505367 0.2807274 0.5505367 0.2494028 0.5505366 0.2180781 0.5405949 0.7819217 0.5405949 0.1867535 0.6140904 0.9582136 0.5405949 0.7505971 0.5405949 0.7192725 0.5405949 0.6879479 0.5405949 0.6566232 0.5405949 0.6252985 0.5405949 0.5939739 0.5405949 0.5626493 0.5405949 0.5313246 0.5405949 0.4999999 0.5405949 0.4686753 0.5405949 0.4373506 0.5405949 0.406026 0.5405949 0.3747014 0.5405949 0.3433767 0.5405949 0.3120521 0.5405949 0.2807274 0.5405949 0.2494028 0.5405949 0.2180781 0.5208408 0.6159412 0.5198208 0.6223813 0.513943 0.6204715 0.5146606 0.6159412 0.5168605 0.628191 0.5118607 0.6245583 0.5122499 0.6328017 0.5086173 0.6278018 0.5064402 0.635762 0.5045304 0.6298841 0.5 0.6367819 0.5 0.6306018 0.4935598 0.635762 0.4954696 0.6298841 0.4877501 0.6328017 0.4913827 0.6278018 0.4831394 0.628191 0.4881393 0.6245583 0.4801792 0.6223813 0.4860569 0.6204715 0.4791592 0.6159412 0.4853394 0.6159412 0.4801792 0.6095009 0.4860569 0.6114107 0.4831394 0.6036912 0.4881393 0.6073238 0.4877501 0.5990806 0.4913827 0.6040804 0.4935598 0.5961203 0.4954696 0.6019981 0.5 0.5951003 0.5 0.6012805 0.5064402 0.5961203 0.5045304 0.6019981 0.5122499 0.5990806 0.5086173 0.6040804 0.5168605 0.6036912 0.5118607 0.6073238 0.5198208 0.6095009 0.5139431 0.6114107 0.5325643 0.525655 0.5328596 0.5200987 0.5334157 0.5202795 0.5354134 0.5150864 0.5358866 0.5154302 0.5393913 0.5111086 0.539735 0.5115818 0.5444035 0.5085548 0.5445842 0.5091109 0.5499598 0.5076748 0.5499598 0.5082595 0.5555159 0.5085548 0.5553352 0.5091109 0.5605283 0.5111086 0.5601845 0.5115818 0.564506 0.5150864 0.564033 0.5154302 0.02242398 0.5185066 0.4816689 0.6117544 0.4810957 0.6146692 0.4842691 0.6149065 0.4845286 0.6124145 0.4807316 0.6124004 0.4805418 0.6136015 0.4826778 0.6147876 0.4830936 0.6120833 0.4843682 0.6139549 0.4844286 0.6133744 0.0212501 0.5162027 0.4852983 0.6035876 0.4880625 0.6056968 0.4898564 0.603804 0.4878622 0.6014558 0.4870575 0.6021249 0.4863369 0.602724 0.4867637 0.6047058 0.4888304 0.6025959 0.4892352 0.6044594 0.488731 0.6049914 0.01829171 0.519161 0.4953788 0.5975778 0.4963945 0.6003668 0.4984955 0.600075 0.4985929 0.5970398 0.4965854 0.5973758 0.4975052 0.5972219 0.4985522 0.5983077 0.498523 0.5992179 0.4961026 0.5995653 0.4957155 0.5985023 0.0201911 0.5228889 0.5071279 0.5984508 0.5062684 0.6013412 0.5081804 0.6022848 0.5099636 0.5999446 0.5066978 0.5998971 0.5075979 0.6019973 0.5069867 0.6016958 0.5090822 0.6011013 0.5082212 0.5990267 0.5089331 0.5994017 0.02201951 0.5210605 0.5176091 0.6088728 0.5160249 0.6059023 0.5136656 0.6077907 0.5146087 0.6096494 0.515606 0.6093913 0.5163252 0.6092051 0.5170819 0.6078842 0.5165164 0.6068238 0.514475 0.6071429 0.5150868 0.6066532 0.01415941 0.5198156 0.5152189 0.6196785 0.5183046 0.6204891 0.5189352 0.6172415 0.5155357 0.6170334 0.517076 0.6201663 0.5162603 0.619952 0.5167013 0.6171047 0.5176937 0.6171654 0.5185215 0.6193717 0.5187057 0.6184234 0.01533332 0.5221195 0.5104446 0.627888 0.5121735 0.6303763 0.514451 0.6280773 0.5119755 0.6262105 0.5110167 0.6287114 0.5114447 0.6293275 0.5130248 0.629517 0.5136334 0.6289027 0.5127307 0.62678 0.5136058 0.62744 0.01639232 0.5154333 0.501623 0.6319022 0.5013617 0.6347758 0.5045363 0.6342365 0.5035595 0.6314341 0.5038672 0.6323169 0.50424 0.6333865 0.5034727 0.6344172 0.5024488 0.6345911 0.5014458 0.6338513 0.5015496 0.6327096 0.01456392 0.5172617 0.4898627 0.6320335 0.4929423 0.6335042 0.4936981 0.6305901 0.4918841 0.6296351 0.4908915 0.6325248 0.4920238 0.6330655 0.4932001 0.6325104 0.4934692 0.6314727 0.4914178 0.6301885 0.490757 0.6309724 0.0189462 0.5150288 0.4853437 0.6223586 0.4825691 0.6231788 0.4839842 0.6259559 0.4864485 0.6242337 0.4834199 0.6229272 0.4846667 0.6225587 0.4829926 0.62401 0.4835001 0.6250059 0.4848249 0.6253684 0.4856386 0.6247997 0.01763722 0.5232934 0.0192036 0.5148402 0.01854908 0.5189726 0.02150747 0.5160142 0.0178946 0.5231048 0.02044851 0.5227004 0.0155907 0.5219309 0.01482132 0.5170732 0.01441681 0.519627 0.01664969 0.5152447 0.02268139 0.5183181 0.02227688 0.520872 0.01658741 0.5151396 0.0184868 0.5188674 0.01914129 0.5147352 0.02221462 0.5207668 0.0226191 0.5182129 0.01552844 0.5218258 0.01783234 0.5229997 0.01475903 0.516968 0.01435453 0.5195218 0.02038625 0.5225952 0.02144521 0.515909 0.01638335 0.5153244 0.01828277 0.5190522 0.01893726 0.5149199 0.02201054 0.5209516 0.02241504 0.5183977 0.01762828 0.5231845 0.02018216 0.52278 0.01532438 0.5220105 0.01455498 0.5171527 0.02124116 0.5160937 0.01415047 0.5197067 0.01439989 0.5200142 0.0155738 0.5223182 0.01853219 0.5193598 0.01918668 0.5152275 0.01663277 0.515632 0.02149057 0.5164014 0.02043158 0.5230876 0.02225998 0.5212592 0.02266446 0.5187053 0.01787767 0.5234922 0.01480439 0.5174604 0.02258611 0.5187237 0.01845378 0.5193782 0.02218163 0.5212776 0.01549545 0.5223367 0.01779932 0.5235105 0.01432154 0.5200327 0.0191083 0.5152459 0.01655442 0.5156503 0.02141219 0.5164198 0.01472604 0.5174789 0.0203532 0.5231059 0.01867461 0.5192595 0.01932907 0.5151271 0.01677519 0.5155317 0.02240241 0.5211589 0.02280688 0.5186049 0.0157162 0.5222178 0.01802009 0.5233917 0.01494682 0.51736 0.02163297 0.516301 0.02057397 0.5229872 0.01454234 0.5199139 0.01837295 0.5191054 0.02133131 0.516147 0.01902741 0.5149731 0.02250522 0.5184509 0.01771843 0.5232376 0.02027237 0.5228332 0.01464516 0.517206 0.01424062 0.5197598 0.01541454 0.5220638 0.02210069 0.5210047 0.01647353 0.5153776 0.02209985 0.5212531 0.02250439 0.5186992 0.01837206 0.5193537 0.0154137 0.5223121 0.0177176 0.523486 0.01423979 0.5200083 0.0164727 0.515626 0.01464427 0.5174543 0.02133048 0.5163954 0.01902658 0.5152215 0.02027148 0.5230815 0.01847887 0.5190452 0.01657951 0.5153174 0.01475108 0.5171459 0.02143729 0.5160868 0.01913339 0.514913 0.01782435 0.5231776 0.02037829 0.522773 0.01552051 0.5220037 0.0143466 0.5196998 0.0226112 0.5183908 0.02220666 0.5209447</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBodyShape-map1-array\" count=\"620\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBodyShape-vertices\" name=\"gearBodyShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBodyShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"422\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBodyShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBodyShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBodyShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 3 4 3 4 4 4 3 4 4 4 3 4 3 4 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 4 3 3 4 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 4 3 3 4 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 4 3 3 3 3 3 4 3 3 3 4 3 3 3 3 3 4 3 3 4 3 3 3 3 3 3 3 4 3 3 3 4 3 3 3 4 4 3 3 3 3 3 3 3 3 4 3 3 3 4 3 3 3 3 3 4 3 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 4 3</vcount>\r\n          <p>1 0 163 0 1 103 100 2 185 101 3 187 2 4 3 1 0 163 101 3 187 102 5 188 3 6 5 2 4 3 102 5 188 103 7 189 4 8 7 3 6 5 103 7 189 104 9 190 5 10 9 4 8 7 104 9 190 105 11 191 6 12 11 5 10 9 105 11 191 106 13 192 7 14 13 6 12 11 106 13 192 107 15 193 8 16 15 7 14 13 107 15 193 108 17 194 9 18 17 8 16 15 108 17 194 109 19 195 10 20 19 9 18 17 109 19 195 110 21 196 11 22 105 10 20 19 110 21 196 111 23 197 12 24 107 11 22 105 111 23 197 112 25 198 13 26 109 12 24 107 112 25 198 113 27 199 14 28 111 13 26 109 113 27 199 114 29 200 15 30 113 14 28 111 114 29 200 115 31 201 16 32 115 15 30 113 115 31 201 116 33 202 17 34 117 16 32 115 116 33 202 117 35 203 18 36 119 17 34 117 117 35 203 118 37 204 19 38 121 18 36 119 118 37 204 119 39 205 0 1 0 19 38 121 119 39 205 100 2 186 21 40 20 20 41 21 40 42 22 41 43 23 22 44 24 21 40 20 41 43 23 42 45 25 23 46 26 22 44 24 42 45 25 43 47 27 24 48 28 23 46 26 43 47 27 44 49 29 25 50 30 24 48 28 44 49 29 45 51 31 26 52 32 25 50 30 45 51 31 46 53 33 27 54 34 26 52 32 46 53 33 47 55 35 28 56 36 27 54 34 47 55 35 48 57 37 29 58 38 28 56 36 48 57 37 49 59 39 30 60 40 29 58 38 49 59 39 50 61 41 31 62 42 30 60 40 50 61 41 51 63 43 32 64 44 31 62 42 51 63 43 52 65 45 33 66 46 32 64 44 52 65 45 53 67 47 34 68 48 33 66 46 53 67 47 54 69 49 35 70 50 34 68 48 54 69 49 55 71 51 36 72 52 35 70 50 55 71 51 56 73 53 37 74 54 36 72 52 56 73 53 57 75 55 38 76 56 37 74 54 57 75 55 58 77 57 39 78 58 38 76 56 58 77 57 59 79 59 20 41 21 39 78 58 59 79 59 40 42 22 41 80 123 40 81 101 60 82 100 61 83 126 42 84 127 41 80 123 61 83 126 62 85 128 43 86 129 42 84 127 62 85 128 63 87 130 44 88 131 43 86 129 63 87 130 64 89 132 45 90 133 44 88 131 64 89 132 65 91 134 46 92 135 45 90 133 65 91 134 66 93 136 47 94 137 46 92 135 66 93 136 67 95 138 48 96 139 47 94 137 67 95 138 68 97 140 49 98 141 48 96 139 68 97 140 69 99 142 50 100 143 49 98 141 69 99 142 70 101 144 51 102 145 50 100 143 70 101 144 71 103 146 52 104 147 51 102 145 71 103 146 72 105 148 53 106 149 52 104 147 72 105 148 73 107 150 54 108 151 53 106 149 73 107 150 74 109 152 55 110 153 54 108 151 74 109 152 75 111 154 56 112 155 55 110 153 75 111 154 76 113 156 57 114 157 56 112 155 76 113 156 77 115 158 58 116 159 57 114 157 77 115 158 78 117 160 59 118 161 58 116 159 78 117 160 79 119 162 40 81 124 59 118 161 79 119 162 60 82 125 61 120 60 60 121 61 0 122 62 1 123 63 62 124 64 61 120 60 1 123 63 2 125 65 63 126 66 62 124 64 2 125 65 3 127 67 64 128 68 63 126 66 3 127 67 4 129 69 65 130 70 64 128 68 4 129 69 5 131 71 66 132 72 65 130 70 5 131 71 6 133 73 67 134 74 66 132 72 6 133 73 7 135 75 68 136 76 67 134 74 7 135 75 8 137 77 69 138 78 68 136 76 8 137 77 9 139 79 70 140 80 69 138 78 9 139 79 10 141 81 71 142 82 70 140 80 10 141 81 11 143 83 72 144 84 71 142 82 11 143 83 12 145 85 73 146 86 72 144 84 12 145 85 13 147 87 74 148 88 73 146 86 13 147 87 14 149 89 75 150 90 74 148 88 14 149 89 15 151 91 76 152 92 75 150 90 15 151 91 16 153 93 77 154 94 76 152 92 16 153 93 17 155 95 78 156 96 77 154 94 17 155 95 18 157 97 79 158 98 78 156 96 18 157 97 19 159 99 60 121 61 79 158 98 19 159 99 0 122 62 81 160 1 80 161 2 20 162 4 21 163 6 82 164 8 81 160 1 21 163 6 22 165 10 83 166 12 82 164 8 22 165 10 23 167 14 84 168 16 83 166 12 23 167 14 24 169 18 85 170 102 84 168 16 24 169 18 25 171 104 86 172 106 85 170 102 25 171 104 26 173 108 87 174 110 86 172 106 26 173 108 27 175 112 88 176 114 87 174 110 27 175 112 28 177 116 89 178 118 88 176 114 28 177 116 29 179 120 90 180 122 89 178 118 29 179 120 30 181 164 91 182 165 90 180 122 30 181 164 31 183 166 92 184 167 91 182 165 31 183 166 32 185 168 93 186 169 92 184 167 32 185 168 33 187 170 94 188 171 93 186 169 33 187 170 34 189 172 95 190 173 94 188 171 34 189 172 35 191 174 96 192 175 95 190 173 35 191 174 36 193 176 97 194 177 96 192 175 36 193 176 37 195 178 98 196 179 97 194 177 37 195 178 38 197 180 99 198 181 98 196 179 38 197 180 39 199 182 80 161 2 99 198 181 39 199 182 20 162 4 141 200 227 140 201 228 200 202 290 201 203 331 144 204 231 141 200 227 201 203 331 202 205 330 146 206 233 144 204 231 202 205 330 203 207 329 148 208 235 146 206 233 203 207 329 204 209 328 150 210 237 148 208 235 204 209 328 205 211 327 152 212 239 150 210 237 205 211 327 206 213 326 154 214 241 152 212 239 206 213 326 207 215 325 156 216 243 154 214 241 207 215 325 208 217 324 158 218 245 156 216 243 208 217 324 209 219 323 160 220 247 158 218 245 209 219 323 210 221 322 162 222 249 160 220 247 210 221 322 211 223 321 164 224 251 162 222 249 211 223 321 212 225 320 166 226 253 164 224 251 212 225 320 213 227 319 168 228 255 166 226 253 213 227 319 214 229 318 170 230 257 168 228 255 214 229 318 215 231 317 172 232 259 170 230 257 215 231 317 216 233 316 174 234 261 172 232 259 216 233 316 217 235 315 176 236 263 174 234 261 217 235 315 218 237 314 178 238 265 176 236 263 218 237 314 219 239 311 140 201 267 178 238 265 219 239 311 200 202 291 101 240 187 100 241 185 140 242 228 141 243 227 80 244 206 81 245 207 121 246 208 120 247 209 102 248 188 101 249 187 141 250 227 144 251 231 81 252 207 82 253 210 122 254 211 121 255 208 103 256 189 102 257 188 144 258 231 146 259 233 82 260 210 83 261 212 123 262 213 122 263 211 104 264 190 103 265 189 146 266 233 148 267 235 83 268 212 84 269 214 124 270 215 123 271 213 105 272 191 104 273 190 148 274 235 150 275 237 84 276 214 85 277 216 125 278 217 124 279 215 106 280 192 105 281 191 150 282 237 152 283 239 85 284 216 86 285 218 126 286 219 125 287 217 107 288 193 106 289 192 152 290 239 154 291 241 86 292 218 87 293 220 127 294 221 126 295 219 108 296 194 107 297 193 154 298 241 156 299 243 87 300 220 88 301 222 128 302 223 127 303 221 109 304 195 108 305 194 156 306 243 158 307 245 88 308 222 89 309 224 129 310 225 128 311 223 110 312 196 109 313 195 158 314 245 160 315 247 89 316 224 90 317 226 130 318 393 129 319 225 111 320 197 110 321 196 160 322 247 162 323 249 90 324 226 91 325 394 131 326 395 130 327 393 112 328 198 111 329 197 162 330 249 164 331 251 91 332 394 92 333 396 132 334 397 131 335 395 113 336 199 112 337 198 164 338 251 166 339 253 92 340 396 93 341 398 133 342 399 132 343 397 114 344 200 113 345 199 166 346 253 168 347 255 93 348 398 94 349 400 134 350 401 133 351 399 115 352 201 114 353 200 168 354 255 170 355 257 94 356 400 95 357 402 135 358 403 134 359 401 116 360 202 115 361 201 170 362 257 172 363 259 95 364 402 96 365 404 136 366 405 135 367 403 117 368 203 116 369 202 172 370 259 174 371 261 96 372 404 97 373 406 137 374 407 136 375 405 118 376 204 117 377 203 174 378 261 176 379 263 97 380 406 98 381 408 138 382 409 137 383 407 119 384 205 118 385 204 176 386 263 178 387 265 98 388 408 99 389 184 139 390 183 138 391 409 100 392 186 119 393 205 178 394 265 140 395 267 99 396 184 80 397 206 120 398 209 139 399 183 120 400 353 278 401 468 283 402 473 121 403 354 122 404 357 145 405 358 143 406 355 122 407 357 289 408 479 296 409 486 123 410 359 124 411 361 149 412 362 147 413 360 124 414 361 300 415 490 303 416 493 125 417 363 126 418 365 153 419 366 151 420 364 312 421 502 155 422 368 153 423 366 311 424 501 127 425 367 128 426 369 157 427 370 155 428 368 157 429 370 329 430 519 323 431 513 129 432 371 130 433 373 161 434 374 159 435 372 130 436 373 131 437 375 225 438 415 226 439 416 131 440 375 132 441 377 165 442 378 163 443 376 132 444 377 232 445 422 238 446 428 133 447 379 134 448 381 169 449 382 167 450 380 134 451 381 252 452 442 169 453 382 135 454 383 136 455 385 173 456 386 171 457 384 136 458 385 258 459 448 173 460 386 137 461 387 138 462 389 177 463 390 175 464 388 177 465 390 273 466 463 267 467 457 139 468 391 120 469 353 142 470 356 179 471 392 181 472 352 180 473 333 142 474 229 143 475 230 182 476 351 181 472 352 143 475 230 145 477 232 183 478 350 182 476 351 145 477 232 147 479 234 184 480 349 183 478 350 147 479 234 149 481 236 185 482 348 184 480 349 149 481 236 151 483 238 186 484 347 185 482 348 151 483 238 153 485 240 187 486 346 186 484 347 153 485 240 155 487 242 188 488 345 187 486 346 155 487 242 157 489 244 189 490 344 188 488 345 157 489 244 159 491 246 190 492 343 189 490 344 159 491 246 161 493 248 191 494 342 190 492 343 161 493 248 163 495 250 192 496 341 191 494 342 163 495 250 165 497 252 193 498 340 192 496 341 165 497 252 167 499 254 194 500 339 193 498 340 167 499 254 169 501 256 195 502 338 194 500 339 169 501 256 171 503 258 196 504 337 195 502 338 171 503 258 173 505 260 197 506 336 196 504 337 173 505 260 175 507 262 198 508 335 197 506 336 175 507 262 177 509 264 199 510 332 198 508 335 177 509 264 179 511 266 180 473 270 199 510 332 179 511 266 142 474 268 201 203 292 200 202 312 180 473 269 181 472 271 202 205 293 201 203 292 181 472 271 182 476 272 203 207 294 202 205 293 182 476 272 183 478 273 204 209 295 203 207 294 183 478 273 184 480 274 205 211 296 204 209 295 184 480 274 185 482 275 206 213 297 205 211 296 185 482 275 186 484 276 207 215 298 206 213 297 186 484 276 187 486 277 208 217 299 207 215 298 187 486 277 188 488 278 209 219 300 208 217 299 188 488 278 189 490 279 210 221 301 209 219 300 189 490 279 190 492 280 211 223 302 210 221 301 190 492 280 191 494 281 212 225 303 211 223 302 191 494 281 192 496 282 213 227 304 212 225 303 192 496 282 193 498 283 214 229 305 213 227 304 193 498 283 194 500 284 215 231 306 214 229 305 194 500 284 195 502 285 216 233 307 215 231 306 195 502 285 196 504 286 217 235 308 216 233 307 196 504 286 197 506 287 218 237 309 217 235 308 197 506 287 198 508 288 219 239 310 218 237 309 198 508 288 199 510 289 200 202 313 219 239 310 199 510 289 180 473 334 161 512 374 227 513 417 223 514 413 224 515 414 228 516 418 163 517 376 163 518 376 230 519 420 224 520 414 227 521 410 222 522 421 220 523 432 229 524 443 223 525 454 220 526 432 220 527 432 228 528 465 224 529 476 221 530 411 225 531 415 131 532 375 222 533 412 130 534 373 226 535 416 220 536 432 225 537 487 221 538 498 223 539 454 227 540 410 220 541 432 220 542 432 221 543 498 228 544 465 220 545 432 226 546 509 225 547 487 222 548 421 226 549 509 220 550 432 230 551 520 229 552 443 220 553 432 224 554 476 230 555 520 220 556 432 161 557 374 229 558 419 230 559 420 163 560 376 161 561 374 223 562 413 229 563 419 130 564 373 222 565 412 227 566 417 130 567 373 227 568 417 161 569 374 131 570 375 228 571 418 221 572 411 163 573 376 228 574 418 131 575 375 167 576 380 240 577 430 234 578 424 236 579 426 133 580 379 235 581 425 133 582 379 239 583 429 235 584 425 232 585 521 231 586 522 238 587 523 234 588 524 240 589 525 231 590 522 231 591 522 239 592 526 234 593 524 236 594 527 235 595 528 231 596 522 237 597 529 236 598 527 231 599 522 132 600 377 133 601 379 236 602 426 237 603 427 232 604 521 237 605 529 231 606 522 132 607 377 237 608 427 232 609 422 238 610 523 231 611 522 233 612 530 132 613 377 238 614 428 165 615 378 165 616 378 238 617 428 233 618 423 167 619 380 234 620 424 239 621 429 235 622 528 239 623 526 231 624 522 167 625 380 239 626 429 133 627 379 165 628 378 233 629 423 241 630 431 231 631 522 241 632 531 233 633 530 231 634 522 240 635 525 241 636 531 165 637 378 241 638 431 240 639 430 167 640 380 134 641 381 247 642 437 243 643 433 246 644 436 135 645 383 249 646 439 169 647 382 244 648 434 245 649 435 171 650 384 243 651 532 242 652 533 252 653 534 245 654 535 244 655 536 242 656 533 242 657 533 246 658 537 249 659 538 243 660 532 247 661 539 242 662 533 134 663 381 135 664 383 248 665 438 247 666 437 242 667 533 247 668 539 248 669 540 248 670 438 135 671 383 246 672 436 242 673 533 248 674 540 246 675 537 249 676 439 171 677 384 250 678 440 242 679 533 249 680 538 250 681 541 250 682 440 171 683 384 245 684 435 242 685 533 250 686 541 245 687 535 251 688 542 242 689 533 244 690 536 169 691 382 251 692 441 244 693 434 249 694 439 135 695 383 171 696 384 134 697 381 243 698 433 252 699 442 169 700 382 252 701 442 251 702 441 252 703 534 242 704 533 251 705 542 175 706 388 259 707 449 256 708 446 263 709 453 137 710 387 257 711 447 137 712 387 261 713 451 257 714 447 258 715 543 253 716 544 255 717 545 256 718 546 259 719 547 253 720 544 257 721 548 261 722 549 253 723 544 263 724 550 257 725 548 253 726 544 136 727 385 254 728 444 258 729 448 173 730 386 258 731 448 255 732 445 254 733 551 253 734 544 258 735 543 173 736 386 255 737 445 260 738 450 253 739 544 260 740 552 255 741 545 253 742 544 259 743 547 260 744 552 173 745 386 260 746 450 259 747 449 175 748 388 175 749 388 256 750 446 261 751 451 253 752 544 261 753 549 256 754 546 175 755 388 261 756 451 137 757 387 254 758 551 262 759 553 253 760 544 136 761 385 262 762 452 254 763 444 262 764 553 263 765 550 253 766 544 136 767 385 137 768 387 263 769 453 262 770 452 138 771 389 272 772 462 266 773 456 270 774 460 139 775 391 179 776 392 177 777 390 267 778 457 268 779 458 179 780 392 266 781 554 272 782 555 264 783 556 267 784 557 273 785 558 264 786 556 268 787 559 267 788 557 264 789 556 264 790 556 265 791 560 270 792 561 268 793 458 269 794 459 179 795 392 264 796 556 269 797 562 268 798 559 269 799 459 270 800 460 179 801 392 270 802 460 265 803 455 139 804 391 264 805 556 270 806 561 269 807 562 271 808 461 139 809 391 265 810 455 264 811 556 271 812 563 265 813 560 138 814 389 139 815 391 271 816 461 272 817 462 264 818 556 272 819 555 271 820 563 177 821 390 274 822 464 273 823 463 264 824 556 273 825 558 274 826 564 138 827 389 266 828 456 274 829 464 264 830 556 274 831 564 266 832 554 138 833 389 274 834 464 177 835 390 142 836 356 279 837 469 276 838 466 143 839 355 120 840 353 285 841 475 278 842 468 121 843 354 280 844 470 277 845 467 280 846 565 275 847 566 277 848 567 278 849 568 285 850 569 275 851 566 283 852 570 278 853 568 275 854 566 276 855 571 279 856 572 275 857 566 143 858 355 276 859 466 281 860 471 276 861 571 275 862 566 281 863 573 281 864 573 275 865 566 280 866 565 143 867 355 281 868 471 280 869 470 143 870 355 280 871 470 121 872 354 279 873 572 282 874 574 275 875 566 142 876 356 282 877 472 279 878 469 282 879 574 283 880 570 275 881 566 142 882 356 283 883 473 282 884 472 120 885 353 283 886 473 142 887 356 284 888 474 121 889 354 277 890 467 275 891 566 284 892 575 277 893 567 120 894 353 121 895 354 284 896 474 285 897 475 275 898 566 285 899 569 284 900 575 293 901 483 123 902 359 288 903 478 291 904 481 147 905 360 287 906 477 145 907 358 290 908 480 287 909 477 147 910 360 286 911 576 291 912 577 287 913 578 293 914 579 288 915 580 286 916 576 296 917 581 289 918 582 286 919 576 287 920 578 290 921 583 286 922 576 286 923 576 292 924 584 291 925 577 292 926 482 123 927 359 147 928 360 291 929 481 286 930 576 288 931 580 292 932 584 288 933 478 123 934 359 292 935 482 294 936 585 293 937 579 286 938 576 122 939 357 123 940 359 293 941 483 294 942 484 289 943 582 294 944 585 286 945 576 122 946 357 294 947 484 289 948 479 290 949 583 295 950 586 286 951 576 145 952 358 295 953 485 290 954 480 295 955 586 296 956 581 286 957 576 122 958 357 296 959 486 295 960 485 145 961 358 305 962 495 125 963 363 299 964 489 299 965 489 125 966 363 306 967 496 149 968 362 301 969 491 298 970 488 151 971 364 297 972 587 299 973 588 306 974 589 305 975 590 299 976 588 297 977 587 303 978 591 300 979 592 297 980 587 298 981 593 301 982 594 297 983 587 301 984 594 302 985 595 297 986 587 149 987 362 302 988 492 301 989 491 302 990 595 303 991 591 297 992 587 124 993 361 303 994 493 302 995 492 149 996 362 300 997 592 304 998 596 297 999 587 124 1000 361 304 1001 494 300 1002 490 304 1003 596 305 1004 590 297 1005 587 124 1006 361 125 1007 363 305 1008 495 304 1009 494 307 1010 497 151 1011 364 298 1012 488 297 1013 587 307 1014 597 298 1015 593 297 1016 587 306 1017 589 307 1018 597 306 1019 496 125 1020 363 151 1021 364 307 1022 497 317 1023 507 318 1024 508 127 1025 367 155 1026 368 153 1027 366 316 1028 506 311 1029 501 126 1030 365 314 1031 504 310 1032 500 310 1033 598 314 1034 599 308 1035 600 311 1036 601 316 1037 602 308 1038 600 308 1039 600 312 1040 603 311 1041 601 308 1042 600 318 1043 604 317 1044 605 313 1045 503 127 1046 367 309 1047 499 308 1048 600 313 1049 606 309 1050 607 126 1051 365 127 1052 367 313 1053 503 314 1054 504 308 1055 600 314 1056 599 313 1057 606 126 1058 365 310 1059 500 315 1060 505 308 1061 600 315 1062 608 310 1063 598 126 1064 365 315 1065 505 316 1066 506 153 1067 366 308 1068 600 316 1069 602 315 1070 608 312 1071 502 317 1072 507 155 1073 368 308 1074 600 317 1075 605 312 1076 603 308 1077 600 309 1078 607 318 1079 604 127 1080 367 318 1081 508 309 1082 499 128 1083 369 129 1084 371 326 1085 516 327 1086 517 321 1087 511 129 1088 371 324 1089 514 157 1090 370 323 1091 513 320 1092 510 159 1093 372 319 1094 609 321 1095 610 324 1096 611 327 1097 612 326 1098 613 319 1099 609 323 1100 614 329 1101 615 319 1102 609 320 1103 616 323 1104 614 319 1105 609 325 1106 515 159 1107 372 320 1108 510 319 1109 609 325 1110 617 320 1111 616 319 1112 609 324 1113 611 325 1114 617 324 1115 514 129 1116 371 159 1117 372 325 1118 515 326 1119 516 129 1120 371 321 1121 511 319 1122 609 326 1123 613 321 1124 610 322 1125 618 327 1126 612 319 1127 609 128 1128 369 327 1129 517 322 1130 512 128 1131 369 322 1132 512 328 1133 518 319 1134 609 328 1135 619 322 1136 618 128 1137 369 328 1138 518 329 1139 519 157 1140 370 319 1141 609 329 1142 615 328 1143 619</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBodyShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearTeethShape\" name=\"gearTeethShape\">\r\n      <mesh>\r\n        <source id=\"gearTeethShape-positions\" name=\"gearTeethShape-positions\">\r\n          <float_array id=\"gearTeethShape-positions-array\" count=\"864\">-7.622294 -1.245784 8.703165 -7.622294 -1.806004 8.604383 0 -1.245784 8.703165 0 -1.806004 8.604383 0 -0.9688559 7.686128 0 -1.718384 7.553966 -7.622294 -0.9688559 7.686128 -7.622294 -1.718384 7.553966 -7.622294 -2.738146 8.354617 -7.622294 -3.272703 8.160054 0 -2.738146 8.354617 0 -3.272703 8.160054 0 -2.288819 7.401118 0 -3.00401 7.14081 -7.622294 -2.288819 7.401118 -7.622294 -3.00401 7.14081 -7.622294 -4.147312 7.752217 -7.622294 -4.639962 7.467786 0 -4.147312 7.752217 0 -4.639962 7.467786 0 -3.539237 6.89123 0 -4.198361 6.510684 -7.622294 -3.539237 6.89123 -7.622294 -4.198361 6.510684 -7.622294 -5.430463 6.91427 -7.622294 -5.866238 6.548613 0 -5.430463 6.91427 0 -5.866238 6.548613 0 -4.682118 6.171954 0 -5.265147 5.682734 -7.622294 -4.682118 6.171954 -7.622294 -5.265147 5.682734 -7.622294 -6.548613 5.866238 -7.622294 -6.91427 5.430463 0 -6.548613 5.866238 0 -6.91427 5.430463 0 -5.682734 5.265147 0 -6.171954 4.682118 -7.622294 -5.682734 5.265147 -7.622294 -6.171954 4.682118 -7.622294 -7.467786 4.639962 -7.622294 -7.752217 4.147312 0 -7.467786 4.639962 0 -7.752217 4.147312 0 -6.510684 4.198361 0 -6.89123 3.539237 -7.622294 -6.510684 4.198361 -7.622294 -6.89123 3.539237 -7.622294 -8.160054 3.272703 -7.622294 -8.354617 2.738146 0 -8.160054 3.272703 0 -8.354617 2.738146 0 -7.14081 3.00401 0 -7.401118 2.288819 -7.622294 -7.14081 3.00401 -7.622294 -7.401118 2.288819 -7.622294 -8.604383 1.806004 -7.622294 -8.703165 1.245784 0 -8.604383 1.806004 0 -8.703165 1.245784 0 -7.553966 1.718384 0 -7.686128 0.9688559 -7.622294 -7.553966 1.718384 -7.622294 -7.686128 0.9688559 -7.622294 -8.787273 0.2844315 -7.622294 -8.787273 -0.2844315 0 -8.787273 0.2844315 0 -8.787273 -0.2844315 0 -7.737599 0.3805453 0 -7.737599 -0.3805453 -7.622294 -7.737599 0.3805453 -7.622294 -7.737599 -0.3805453 -7.622294 -8.703165 -1.245784 -7.622294 -8.604383 -1.806004 0 -8.703165 -1.245784 0 -8.604383 -1.806004 0 -7.686128 -0.9688559 0 -7.553966 -1.718384 -7.622294 -7.686128 -0.9688559 -7.622294 -7.553966 -1.718384 -7.622294 -8.354617 -2.738146 -7.622294 -8.160054 -3.272703 0 -8.354617 -2.738146 0 -8.160054 -3.272703 0 -7.401118 -2.288819 0 -7.14081 -3.00401 -7.622294 -7.401118 -2.288819 -7.622294 -7.14081 -3.00401 -7.622294 -7.752217 -4.147312 -7.622294 -7.467786 -4.639962 0 -7.752217 -4.147312 0 -7.467786 -4.639962 0 -6.89123 -3.539237 0 -6.510684 -4.198361 -7.622294 -6.89123 -3.539237 -7.622294 -6.510684 -4.198361 -7.622294 -6.91427 -5.430463 -7.622294 -6.548613 -5.866238 0 -6.91427 -5.430463 0 -6.548613 -5.866238 0 -6.171954 -4.682118 0 -5.682734 -5.265147 -7.622294 -6.171954 -4.682118 -7.622294 -5.682734 -5.265147 -7.622294 -5.866238 -6.548613 -7.622294 -5.430463 -6.91427 0 -5.866238 -6.548613 0 -5.430463 -6.91427 0 -5.265147 -5.682734 0 -4.682118 -6.171954 -7.622294 -5.265147 -5.682734 -7.622294 -4.682118 -6.171954 -7.622294 -4.639962 -7.467786 -7.622294 -4.147312 -7.752217 0 -4.639962 -7.467786 0 -4.147312 -7.752217 0 -4.198361 -6.510684 0 -3.539237 -6.89123 -7.622294 -4.198361 -6.510684 -7.622294 -3.539237 -6.89123 -7.622294 -3.272703 -8.160054 -7.622294 -2.738146 -8.354617 0 -3.272703 -8.160054 0 -2.738146 -8.354617 0 -3.00401 -7.14081 0 -2.288819 -7.401118 -7.622294 -3.00401 -7.14081 -7.622294 -2.288819 -7.401118 -7.622294 -1.806004 -8.604383 -7.622294 -1.245784 -8.703165 0 -1.806004 -8.604383 0 -1.245784 -8.703165 0 -1.718384 -7.553966 0 -0.9688559 -7.686128 -7.622294 -1.718384 -7.553966 -7.622294 -0.9688559 -7.686128 -7.622294 -0.2844315 -8.787273 -7.622294 0.2844315 -8.787273 0 -0.2844315 -8.787273 0 0.2844315 -8.787273 0 -0.3805453 -7.737599 0 0.3805453 -7.737599 -7.622294 -0.3805453 -7.737599 -7.622294 0.3805453 -7.737599 -7.622294 1.245784 -8.703165 -7.622294 1.806004 -8.604383 0 1.245784 -8.703165 0 1.806004 -8.604383 0 0.9688559 -7.686128 0 1.718384 -7.553966 -7.622294 0.9688559 -7.686128 -7.622294 1.718384 -7.553966 -7.622294 2.738146 -8.354617 -7.622294 3.272703 -8.160054 0 2.738146 -8.354617 0 3.272703 -8.160054 0 2.288819 -7.401118 0 3.00401 -7.14081 -7.622294 2.288819 -7.401118 -7.622294 3.00401 -7.14081 -7.622294 4.147312 -7.752217 -7.622294 4.639962 -7.467786 0 4.147312 -7.752217 0 4.639962 -7.467786 0 3.539237 -6.89123 0 4.198361 -6.510684 -7.622294 3.539237 -6.89123 -7.622294 4.198361 -6.510684 -7.622294 5.430463 -6.91427 -7.622294 5.866238 -6.548613 0 5.430463 -6.91427 0 5.866238 -6.548613 0 4.682118 -6.171954 0 5.265147 -5.682734 -7.622294 4.682118 -6.171954 -7.622294 5.265147 -5.682734 -7.622294 6.548613 -5.866238 -7.622294 6.91427 -5.430463 0 6.548613 -5.866238 0 6.91427 -5.430463 0 5.682734 -5.265147 0 6.171954 -4.682118 -7.622294 5.682734 -5.265147 -7.622294 6.171954 -4.682118 -7.622294 7.467786 -4.639962 -7.622294 7.752217 -4.147312 0 7.467786 -4.639962 0 7.752217 -4.147312 0 6.510684 -4.198361 0 6.89123 -3.539237 -7.622294 6.510684 -4.198361 -7.622294 6.89123 -3.539237 -7.622294 8.160054 -3.272703 -7.622294 8.354617 -2.738146 0 8.160054 -3.272703 0 8.354617 -2.738146 0 7.14081 -3.00401 0 7.401118 -2.288819 -7.622294 7.14081 -3.00401 -7.622294 7.401118 -2.288819 -7.622294 8.604383 -1.806004 -7.622294 8.703165 -1.245784 0 8.604383 -1.806004 0 8.703165 -1.245784 0 7.553966 -1.718384 0 7.686128 -0.9688559 -7.622294 7.553966 -1.718384 -7.622294 7.686128 -0.9688559 -7.622294 8.787273 -0.2844315 -7.622294 8.787273 0.2844315 0 8.787273 -0.2844315 0 8.787273 0.2844315 0 7.737599 -0.3805453 0 7.737599 0.3805453 -7.622294 7.737599 -0.3805453 -7.622294 7.737599 0.3805453 -7.622294 8.703165 1.245784 -7.622294 8.604383 1.806004 0 8.703165 1.245784 0 8.604383 1.806004 0 7.686128 0.9688559 0 7.553966 1.718384 -7.622294 7.686128 0.9688559 -7.622294 7.553966 1.718384 -7.622294 8.354617 2.738146 -7.622294 8.160054 3.272703 0 8.354617 2.738146 0 8.160054 3.272703 0 7.401118 2.288819 0 7.14081 3.00401 -7.622294 7.401118 2.288819 -7.622294 7.14081 3.00401 -7.622294 7.752217 4.147312 -7.622294 7.467786 4.639962 0 7.752217 4.147312 0 7.467786 4.639962 0 6.89123 3.539237 0 6.510684 4.198361 -7.622294 6.89123 3.539237 -7.622294 6.510684 4.198361 -7.622294 6.91427 5.430463 -7.622294 6.548613 5.866238 0 6.91427 5.430463 0 6.548613 5.866238 0 6.171954 4.682118 0 5.682734 5.265147 -7.622294 6.171954 4.682118 -7.622294 5.682734 5.265147 -7.622294 5.866238 6.548613 -7.622294 5.430463 6.91427 0 5.866238 6.548613 0 5.430463 6.91427 0 5.265147 5.682734 0 4.682118 6.171954 -7.622294 5.265147 5.682734 -7.622294 4.682118 6.171954 -7.622294 4.639962 7.467786 -7.622294 4.147312 7.752217 0 4.639962 7.467786 0 4.147312 7.752217 0 4.198361 6.510684 0 3.539237 6.89123 -7.622294 4.198361 6.510684 -7.622294 3.539237 6.89123 -7.622294 3.272703 8.160054 -7.622294 2.738146 8.354617 0 3.272703 8.160054 0 2.738146 8.354617 0 3.00401 7.14081 0 2.288819 7.401118 -7.622294 3.00401 7.14081 -7.622294 2.288819 7.401118 -7.622294 1.806004 8.604383 -7.622294 1.245784 8.703165 0 1.806004 8.604383 0 1.245784 8.703165 0 1.718384 7.553966 0 0.9688559 7.686128 -7.622294 1.718384 7.553966 -7.622294 0.9688559 7.686128 -7.622294 0.2844315 8.787273 -7.622294 -0.2844315 8.787273 0 0.2844315 8.787273 0 -0.2844315 8.787273 0 0.3805453 7.737599 0 -0.3805453 7.737599 -7.622294 0.3805453 7.737599 -7.622294 -0.3805453 7.737599</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearTeethShape-positions-array\" count=\"288\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearTeethShape-normals\" name=\"gearTeethShape-normals\">\r\n          <float_array id=\"gearTeethShape-normals-array\" count=\"2160\">0 -0.1736475 0.9848079 0 -0.1736475 0.9848079 0 -0.1736475 0.9848079 0 -0.1736475 0.9848079 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9965391 -0.08312616 0 -0.9965391 -0.08312616 0 -0.9965391 -0.08312616 0 -0.9965391 -0.08312616 0 0.9648712 0.2627236 0 0.9648712 0.2627236 0 0.9648712 0.2627236 0 0.9648712 0.2627236 0 -0.3420206 0.9396926 0 -0.3420206 0.9396926 0 -0.3420206 0.9396926 0 -0.3420206 0.9396926 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9669647 -0.2549106 0 -0.9669647 -0.2549106 0 -0.9669647 -0.2549106 0 -0.9669647 -0.2549106 0 0.9045914 0.42628 0 0.9045914 0.42628 0 0.9045914 0.42628 0 0.9045914 0.42628 0 -0.4999998 0.8660256 0 -0.4999998 0.8660256 0 -0.4999998 0.8660256 0 -0.4999998 0.8660256 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9080096 -0.4189494 0 -0.9080096 -0.4189494 0 -0.9080096 -0.4189494 0 -0.9080096 -0.4189494 0 0.8168257 0.5768846 0 0.8168257 0.5768846 0 0.8168257 0.5768846 0 0.8168257 0.5768846 0 -0.6427872 0.7660449 0 -0.6427872 0.7660449 0 -0.6427872 0.7660449 0 -0.6427872 0.7660449 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.821465 -0.5702589 0 -0.821465 -0.5702589 0 -0.821465 -0.5702589 0 -0.821465 -0.5702589 0 0.7042411 0.709961 0 0.7042411 0.709961 0 0.7042411 0.709961 0 0.7042411 0.709961 0 -0.7660447 0.6427873 0 -0.7660447 0.6427873 0 -0.7660447 0.6427873 0 -0.7660447 0.6427873 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7099609 -0.7042412 0 -0.7099609 -0.7042412 0 -0.7099609 -0.7042412 0 -0.7099609 -0.7042412 0 0.5702589 0.8214651 0 0.5702589 0.8214651 0 0.5702589 0.8214651 0 0.5702589 0.8214651 0 -0.8660254 0.5000001 0 -0.8660254 0.5000001 0 -0.8660254 0.5000001 0 -0.8660254 0.5000001 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.5768847 -0.8168257 0 -0.5768847 -0.8168257 0 -0.5768847 -0.8168257 0 -0.5768847 -0.8168257 0 0.4189497 0.9080094 0 0.4189497 0.9080094 0 0.4189497 0.9080094 0 0.4189497 0.9080094 0 -0.9396927 0.3420201 0 -0.9396927 0.3420201 0 -0.9396927 0.3420201 0 -0.9396927 0.3420201 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.42628 -0.9045913 0 -0.42628 -0.9045913 0 -0.42628 -0.9045913 0 -0.42628 -0.9045913 0 0.2549105 0.9669647 0 0.2549105 0.9669647 0 0.2549105 0.9669647 0 0.2549105 0.9669647 0 -0.9848078 0.173648 0 -0.9848078 0.173648 0 -0.9848078 0.173648 0 -0.9848078 0.173648 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.2627234 -0.9648713 0 -0.2627234 -0.9648713 0 -0.2627234 -0.9648713 0 -0.2627234 -0.9648713 0 0.08312612 0.9965391 0 0.08312612 0.9965391 0 0.08312612 0.9965391 0 0.08312612 0.9965391 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.09118388 -0.9958341 0 -0.09118388 -0.9958341 0 -0.09118388 -0.9958341 0 -0.09118388 -0.9958341 0 -0.09118388 0.9958341 0 -0.09118388 0.9958341 0 -0.09118388 0.9958341 0 -0.09118388 0.9958341 0 -0.9848078 -0.173648 0 -0.9848078 -0.173648 0 -0.9848078 -0.173648 0 -0.9848078 -0.173648 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.08312612 -0.9965391 0 0.08312612 -0.9965391 0 0.08312612 -0.9965391 0 0.08312612 -0.9965391 0 -0.2627234 0.9648713 0 -0.2627234 0.9648713 0 -0.2627234 0.9648713 0 -0.2627234 0.9648713 0 -0.9396927 -0.3420201 0 -0.9396927 -0.3420201 0 -0.9396927 -0.3420201 0 -0.9396927 -0.3420201 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.2549105 -0.9669647 0 0.2549105 -0.9669647 0 0.2549105 -0.9669647 0 0.2549105 -0.9669647 0 -0.42628 0.9045913 0 -0.42628 0.9045913 0 -0.42628 0.9045913 0 -0.42628 0.9045913 0 -0.8660254 -0.5000001 0 -0.8660254 -0.5000001 0 -0.8660254 -0.5000001 0 -0.8660254 -0.5000001 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.4189497 -0.9080094 0 0.4189497 -0.9080094 0 0.4189497 -0.9080094 0 0.4189497 -0.9080094 0 -0.5768847 0.8168257 0 -0.5768847 0.8168257 0 -0.5768847 0.8168257 0 -0.5768847 0.8168257 0 -0.7660447 -0.6427873 0 -0.7660447 -0.6427873 0 -0.7660447 -0.6427873 0 -0.7660447 -0.6427873 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.5702589 -0.8214651 0 0.5702589 -0.8214651 0 0.5702589 -0.8214651 0 0.5702589 -0.8214651 0 -0.7099609 0.7042412 0 -0.7099609 0.7042412 0 -0.7099609 0.7042412 0 -0.7099609 0.7042412 0 -0.6427872 -0.7660449 0 -0.6427872 -0.7660449 0 -0.6427872 -0.7660449 0 -0.6427872 -0.7660449 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.7042411 -0.709961 0 0.7042411 -0.709961 0 0.7042411 -0.709961 0 0.7042411 -0.709961 0 -0.821465 0.5702589 0 -0.821465 0.5702589 0 -0.821465 0.5702589 0 -0.821465 0.5702589 0 -0.4999998 -0.8660256 0 -0.4999998 -0.8660256 0 -0.4999998 -0.8660256 0 -0.4999998 -0.8660256 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.8168257 -0.5768846 0 0.8168257 -0.5768846 0 0.8168257 -0.5768846 0 0.8168257 -0.5768846 0 -0.9080096 0.4189494 0 -0.9080096 0.4189494 0 -0.9080096 0.4189494 0 -0.9080096 0.4189494 0 -0.3420206 -0.9396926 0 -0.3420206 -0.9396926 0 -0.3420206 -0.9396926 0 -0.3420206 -0.9396926 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9045914 -0.42628 0 0.9045914 -0.42628 0 0.9045914 -0.42628 0 0.9045914 -0.42628 0 -0.9669647 0.2549106 0 -0.9669647 0.2549106 0 -0.9669647 0.2549106 0 -0.9669647 0.2549106 0 -0.1736475 -0.9848079 0 -0.1736475 -0.9848079 0 -0.1736475 -0.9848079 0 -0.1736475 -0.9848079 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9648712 -0.2627236 0 0.9648712 -0.2627236 0 0.9648712 -0.2627236 0 0.9648712 -0.2627236 0 -0.9965391 0.08312616 0 -0.9965391 0.08312616 0 -0.9965391 0.08312616 0 -0.9965391 0.08312616 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9958341 -0.09118393 0 0.9958341 -0.09118393 0 0.9958341 -0.09118393 0 0.9958341 -0.09118393 0 -0.9958341 -0.09118393 0 -0.9958341 -0.09118393 0 -0.9958341 -0.09118393 0 -0.9958341 -0.09118393 0 0.1736475 -0.9848079 0 0.1736475 -0.9848079 0 0.1736475 -0.9848079 0 0.1736475 -0.9848079 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9965391 0.08312616 0 0.9965391 0.08312616 0 0.9965391 0.08312616 0 0.9965391 0.08312616 0 -0.9648712 -0.2627236 0 -0.9648712 -0.2627236 0 -0.9648712 -0.2627236 0 -0.9648712 -0.2627236 0 0.3420206 -0.9396926 0 0.3420206 -0.9396926 0 0.3420206 -0.9396926 0 0.3420206 -0.9396926 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9669647 0.2549106 0 0.9669647 0.2549106 0 0.9669647 0.2549106 0 0.9669647 0.2549106 0 -0.9045914 -0.42628 0 -0.9045914 -0.42628 0 -0.9045914 -0.42628 0 -0.9045914 -0.42628 0 0.4999998 -0.8660256 0 0.4999998 -0.8660256 0 0.4999998 -0.8660256 0 0.4999998 -0.8660256 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9080096 0.4189494 0 0.9080096 0.4189494 0 0.9080096 0.4189494 0 0.9080096 0.4189494 0 -0.8168257 -0.5768846 0 -0.8168257 -0.5768846 0 -0.8168257 -0.5768846 0 -0.8168257 -0.5768846 0 0.6427872 -0.7660449 0 0.6427872 -0.7660449 0 0.6427872 -0.7660449 0 0.6427872 -0.7660449 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.821465 0.5702589 0 0.821465 0.5702589 0 0.821465 0.5702589 0 0.821465 0.5702589 0 -0.7042411 -0.709961 0 -0.7042411 -0.709961 0 -0.7042411 -0.709961 0 -0.7042411 -0.709961 0 0.7660447 -0.6427873 0 0.7660447 -0.6427873 0 0.7660447 -0.6427873 0 0.7660447 -0.6427873 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.7099609 0.7042412 0 0.7099609 0.7042412 0 0.7099609 0.7042412 0 0.7099609 0.7042412 0 -0.5702589 -0.8214651 0 -0.5702589 -0.8214651 0 -0.5702589 -0.8214651 0 -0.5702589 -0.8214651 0 0.8660254 -0.5000001 0 0.8660254 -0.5000001 0 0.8660254 -0.5000001 0 0.8660254 -0.5000001 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.5768847 0.8168257 0 0.5768847 0.8168257 0 0.5768847 0.8168257 0 0.5768847 0.8168257 0 -0.4189497 -0.9080094 0 -0.4189497 -0.9080094 0 -0.4189497 -0.9080094 0 -0.4189497 -0.9080094 0 0.9396927 -0.3420201 0 0.9396927 -0.3420201 0 0.9396927 -0.3420201 0 0.9396927 -0.3420201 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.42628 0.9045913 0 0.42628 0.9045913 0 0.42628 0.9045913 0 0.42628 0.9045913 0 -0.2549105 -0.9669647 0 -0.2549105 -0.9669647 0 -0.2549105 -0.9669647 0 -0.2549105 -0.9669647 0 0.9848078 -0.173648 0 0.9848078 -0.173648 0 0.9848078 -0.173648 0 0.9848078 -0.173648 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.2627234 0.9648713 0 0.2627234 0.9648713 0 0.2627234 0.9648713 0 0.2627234 0.9648713 0 -0.08312612 -0.9965391 0 -0.08312612 -0.9965391 0 -0.08312612 -0.9965391 0 -0.08312612 -0.9965391 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.09118388 0.9958341 0 0.09118388 0.9958341 0 0.09118388 0.9958341 0 0.09118388 0.9958341 0 0.09118388 -0.9958341 0 0.09118388 -0.9958341 0 0.09118388 -0.9958341 0 0.09118388 -0.9958341 0 0.9848078 0.173648 0 0.9848078 0.173648 0 0.9848078 0.173648 0 0.9848078 0.173648 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.08312612 0.9965391 0 -0.08312612 0.9965391 0 -0.08312612 0.9965391 0 -0.08312612 0.9965391 0 0.2627234 -0.9648713 0 0.2627234 -0.9648713 0 0.2627234 -0.9648713 0 0.2627234 -0.9648713 0 0.9396927 0.3420201 0 0.9396927 0.3420201 0 0.9396927 0.3420201 0 0.9396927 0.3420201 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.2549105 0.9669647 0 -0.2549105 0.9669647 0 -0.2549105 0.9669647 0 -0.2549105 0.9669647 0 0.42628 -0.9045913 0 0.42628 -0.9045913 0 0.42628 -0.9045913 0 0.42628 -0.9045913 0 0.8660254 0.5000001 0 0.8660254 0.5000001 0 0.8660254 0.5000001 0 0.8660254 0.5000001 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.4189497 0.9080094 0 -0.4189497 0.9080094 0 -0.4189497 0.9080094 0 -0.4189497 0.9080094 0 0.5768847 -0.8168257 0 0.5768847 -0.8168257 0 0.5768847 -0.8168257 0 0.5768847 -0.8168257 0 0.7660447 0.6427873 0 0.7660447 0.6427873 0 0.7660447 0.6427873 0 0.7660447 0.6427873 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.5702589 0.8214651 0 -0.5702589 0.8214651 0 -0.5702589 0.8214651 0 -0.5702589 0.8214651 0 0.7099609 -0.7042412 0 0.7099609 -0.7042412 0 0.7099609 -0.7042412 0 0.7099609 -0.7042412 0 0.6427872 0.7660449 0 0.6427872 0.7660449 0 0.6427872 0.7660449 0 0.6427872 0.7660449 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7042411 0.709961 0 -0.7042411 0.709961 0 -0.7042411 0.709961 0 -0.7042411 0.709961 0 0.821465 -0.5702589 0 0.821465 -0.5702589 0 0.821465 -0.5702589 0 0.821465 -0.5702589 0 0.4999998 0.8660256 0 0.4999998 0.8660256 0 0.4999998 0.8660256 0 0.4999998 0.8660256 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.8168257 0.5768846 0 -0.8168257 0.5768846 0 -0.8168257 0.5768846 0 -0.8168257 0.5768846 0 0.9080096 -0.4189494 0 0.9080096 -0.4189494 0 0.9080096 -0.4189494 0 0.9080096 -0.4189494 0 0.3420206 0.9396926 0 0.3420206 0.9396926 0 0.3420206 0.9396926 0 0.3420206 0.9396926 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9045914 0.42628 0 -0.9045914 0.42628 0 -0.9045914 0.42628 0 -0.9045914 0.42628 0 0.9669647 -0.2549106 0 0.9669647 -0.2549106 0 0.9669647 -0.2549106 0 0.9669647 -0.2549106 0 0.1736475 0.9848079 0 0.1736475 0.9848079 0 0.1736475 0.9848079 0 0.1736475 0.9848079 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9648712 0.2627236 0 -0.9648712 0.2627236 0 -0.9648712 0.2627236 0 -0.9648712 0.2627236 0 0.9965391 -0.08312616 0 0.9965391 -0.08312616 0 0.9965391 -0.08312616 0 0.9965391 -0.08312616 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9958341 0.09118393 0 -0.9958341 0.09118393 0 -0.9958341 0.09118393 0 -0.9958341 0.09118393 0 0.9958341 0.09118393 0 0.9958341 0.09118393 0 0.9958341 0.09118393 0 0.9958341 0.09118393</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearTeethShape-normals-array\" count=\"720\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearTeethShape-map1\" name=\"gearTeethShape-map1\">\r\n          <float_array id=\"gearTeethShape-map1-array\" count=\"1440\">0.5177761 0.642543 0.3682775 0.7201319 0.4718756 0.6121343 0.7373744 0.6688832 0.4721948 0.6103245 0.4755881 0.6106076 0.4751231 0.6130514 0.4755501 0.6106302 0.4721568 0.6103471 0.4718376 0.6121568 0.5177761 0.642553 0.7373744 0.6425531 0.5177761 0.6688731 0.7373744 0.6688732 0.5177761 0.6688831 0.4858128 0.7201319 0.4751612 0.6130289 0.3682775 0.7627555 0.4858128 0.7627555 0.7373744 0.6425431 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4730016 0.6073132 0.4736302 0.6055863 0.4769228 0.6064543 0.4760819 0.6087648 0.4760438 0.6087874 0.4768847 0.606477 0.4735922 0.6056091 0.4729636 0.6073359 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4749477 0.6027609 0.4758665 0.6011694 0.4789584 0.602596 0.4777291 0.6047253 0.477691 0.604748 0.4789203 0.6026188 0.4758284 0.6011922 0.4749096 0.6027837 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4776546 0.5986157 0.4788359 0.597208 0.4816331 0.5991498 0.4800526 0.6010332 0.4800146 0.6010561 0.4815949 0.5991726 0.4787977 0.5972309 0.4776165 0.5986385 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4810403 0.5950035 0.482448 0.5938223 0.4848656 0.5962203 0.4829821 0.5978008 0.4829439 0.5978236 0.4848273 0.5962433 0.4824098 0.5938453 0.4810021 0.5950266 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4850017 0.5920342 0.4865933 0.5911153 0.4885576 0.5938967 0.4864284 0.595126 0.4863901 0.595149 0.4885193 0.5939198 0.4865549 0.5911384 0.4849635 0.5920572 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4894187 0.5897978 0.4911456 0.5891693 0.4925971 0.5922495 0.4902867 0.5930904 0.4902483 0.5931135 0.4925586 0.5922725 0.4911071 0.5891923 0.4893803 0.5898209 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4941568 0.5883624 0.4959666 0.5880433 0.4968612 0.5913288 0.4944399 0.5917557 0.4944014 0.5917788 0.4968227 0.5913518 0.4959281 0.5880665 0.4941183 0.5883855 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4990723 0.5877716 0.50091 0.5877716 0.5012205 0.5911625 0.4987618 0.5911625 0.4987231 0.5911856 0.5011818 0.5911856 0.5008714 0.5877947 0.4990336 0.5877947 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5040157 0.5880433 0.5058254 0.5883624 0.5055423 0.5917557 0.503121 0.5913288 0.5030823 0.5913518 0.5055037 0.5917788 0.5057867 0.5883855 0.5039769 0.5880665 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5088366 0.5891693 0.5105635 0.5897978 0.5096955 0.5930904 0.5073851 0.5922495 0.5073463 0.5922725 0.5096567 0.5931135 0.5105247 0.5898209 0.5087979 0.5891923 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5133889 0.5911153 0.5149804 0.5920342 0.5135539 0.595126 0.5114247 0.5938967 0.5113858 0.5939198 0.5135149 0.595149 0.5149415 0.5920572 0.5133501 0.5911384 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5175341 0.5938223 0.5189419 0.5950035 0.5170001 0.5978008 0.5151167 0.5962203 0.5150777 0.5962433 0.5169611 0.5978236 0.5189028 0.5950266 0.5174952 0.5938453 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5211463 0.597208 0.5223275 0.5986157 0.5199295 0.6010332 0.5183492 0.5991498 0.5183101 0.5991726 0.5198904 0.6010561 0.5222885 0.5986385 0.5211072 0.5972309 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5241157 0.6011694 0.5250345 0.6027609 0.5222532 0.6047253 0.5210238 0.602596 0.5209846 0.6026188 0.5222139 0.604748 0.5249953 0.6027837 0.5240764 0.6011922 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.526352 0.6055863 0.5269806 0.6073132 0.5239003 0.6087648 0.5230594 0.6064543 0.5230203 0.606477 0.5238611 0.6087874 0.5269413 0.6073359 0.5263127 0.6056091 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5277874 0.6103245 0.5281066 0.6121343 0.524821 0.6130289 0.524394 0.6106076 0.5243548 0.6106302 0.5247818 0.6130514 0.5280672 0.6121568 0.5277481 0.6103471 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5283782 0.6152399 0.5283782 0.6170777 0.5249873 0.6173881 0.5249873 0.6149294 0.5249481 0.6149518 0.5249481 0.6174105 0.5283389 0.6171 0.5283389 0.6152624 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5281066 0.6201832 0.5277874 0.6219931 0.524394 0.6217101 0.524821 0.6192887 0.5247818 0.619311 0.5243548 0.6217322 0.5277481 0.6220153 0.5280672 0.6202056 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5269806 0.6250043 0.526352 0.6267313 0.5230594 0.6258632 0.5239003 0.6235528 0.5238611 0.623575 0.5230203 0.6258854 0.5263127 0.6267533 0.5269413 0.6250265 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5250345 0.6295567 0.5241157 0.6311482 0.5210238 0.6297216 0.5222532 0.6275922 0.5222139 0.6276144 0.5209846 0.6297436 0.5240764 0.6311702 0.5249953 0.6295787 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5223275 0.6337019 0.5211463 0.6351097 0.5183492 0.6331679 0.5199295 0.6312844 0.5198904 0.6313063 0.5183101 0.6331898 0.5211072 0.6351315 0.5222885 0.6337239 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5189419 0.6373141 0.5175341 0.6384952 0.5151167 0.6360972 0.5170001 0.6345168 0.5169611 0.6345388 0.5150777 0.6361191 0.5174952 0.6385171 0.5189028 0.6373358 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5149804 0.6402835 0.5133889 0.6412022 0.5114247 0.6384208 0.5135539 0.6371915 0.5135149 0.6372133 0.5113858 0.6384426 0.5133501 0.641224 0.5149415 0.6403052 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5105635 0.6425197 0.5088366 0.6431483 0.5073851 0.6400681 0.5096955 0.639227 0.5096567 0.6392489 0.5073463 0.6400899 0.5087979 0.6431701 0.5105247 0.6425415 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5058254 0.6439551 0.5040157 0.6442742 0.503121 0.6409887 0.5055423 0.6405617 0.5055037 0.6405836 0.5030823 0.6410106 0.5039769 0.6442959 0.5057867 0.6439769 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.50091 0.644546 0.4990723 0.644546 0.4987618 0.6411551 0.5012205 0.6411551 0.5011818 0.6411768 0.4987231 0.6411768 0.4990336 0.6445677 0.5008714 0.6445677 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4959666 0.6442742 0.4941568 0.6439551 0.4944399 0.6405617 0.4968612 0.6409887 0.4968227 0.6410106 0.4944014 0.6405836 0.4941183 0.6439769 0.4959281 0.6442959 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4911456 0.6431483 0.4894187 0.6425197 0.4902867 0.639227 0.4925971 0.6400681 0.4925586 0.6400899 0.4902483 0.6392489 0.4893803 0.6425415 0.4911071 0.6431701 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4865933 0.6412022 0.4850017 0.6402835 0.4864284 0.6371915 0.4885576 0.6384208 0.4885193 0.6384426 0.4863901 0.6372133 0.4849635 0.6403052 0.4865549 0.641224 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.482448 0.6384952 0.4810403 0.6373141 0.4829821 0.6345168 0.4848656 0.6360972 0.4848273 0.6361191 0.4829439 0.6345388 0.4810021 0.6373358 0.4824098 0.6385171 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4788359 0.6351097 0.4776546 0.6337019 0.4800526 0.6312844 0.4816331 0.6331679 0.4815949 0.6331898 0.4800146 0.6313063 0.4776165 0.6337239 0.4787977 0.6351315 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4758665 0.6311482 0.4749477 0.6295567 0.4777291 0.6275922 0.4789584 0.6297216 0.4789203 0.6297436 0.477691 0.6276144 0.4749096 0.6295787 0.4758284 0.6311702 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4736302 0.6267313 0.4730016 0.6250043 0.4760819 0.6235528 0.4769228 0.6258632 0.4768847 0.6258854 0.4760438 0.623575 0.4729636 0.6250265 0.4735922 0.6267533 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4721948 0.6219931 0.4718756 0.6201832 0.4751612 0.6192887 0.4755881 0.6217101 0.4755501 0.6217322 0.4751231 0.619311 0.4718376 0.6202056 0.4721568 0.6220153 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4716039 0.6170777 0.4716039 0.6152399 0.4749949 0.6149294 0.4749949 0.6173881 0.4749568 0.6174105 0.4749568 0.6149518 0.471566 0.6152624 0.471566 0.6171 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearTeethShape-map1-array\" count=\"720\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearTeethShape-vertices\" name=\"gearTeethShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearTeethShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"180\">\r\n          <input semantic=\"VERTEX\" source=\"#gearTeethShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearTeethShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearTeethShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 17 1 1 1 3 2 15 2 3 18 2 4 2 3 5 4 5 6 5 4 7 16 6 8 6 7 9 7 1 10 8 0 11 9 1 12 14 7 13 10 5 14 11 3 15 3 6 16 12 0 17 0 2 18 19 4 19 13 8 20 20 9 21 21 11 22 22 10 23 23 10 24 24 11 25 25 13 26 26 12 27 27 14 28 28 15 29 29 9 30 30 8 31 31 9 32 32 15 33 33 13 34 34 11 35 35 14 36 36 8 37 37 10 38 38 12 39 39 16 40 40 17 41 41 19 42 42 18 43 43 18 44 44 19 45 45 21 46 46 20 47 47 22 48 48 23 49 49 17 50 50 16 51 51 17 52 52 23 53 53 21 54 54 19 55 55 22 56 56 16 57 57 18 58 58 20 59 59 24 60 60 25 61 61 27 62 62 26 63 63 26 64 64 27 65 65 29 66 66 28 67 67 30 68 68 31 69 69 25 70 70 24 71 71 25 72 72 31 73 73 29 74 74 27 75 75 30 76 76 24 77 77 26 78 78 28 79 79 32 80 80 33 81 81 35 82 82 34 83 83 34 84 84 35 85 85 37 86 86 36 87 87 38 88 88 39 89 89 33 90 90 32 91 91 33 92 92 39 93 93 37 94 94 35 95 95 38 96 96 32 97 97 34 98 98 36 99 99 40 100 100 41 101 101 43 102 102 42 103 103 42 104 104 43 105 105 45 106 106 44 107 107 46 108 108 47 109 109 41 110 110 40 111 111 41 112 112 47 113 113 45 114 114 43 115 115 46 116 116 40 117 117 42 118 118 44 119 119 48 120 120 49 121 121 51 122 122 50 123 123 50 124 124 51 125 125 53 126 126 52 127 127 54 128 128 55 129 129 49 130 130 48 131 131 49 132 132 55 133 133 53 134 134 51 135 135 54 136 136 48 137 137 50 138 138 52 139 139 56 140 140 57 141 141 59 142 142 58 143 143 58 144 144 59 145 145 61 146 146 60 147 147 62 148 148 63 149 149 57 150 150 56 151 151 57 152 152 63 153 153 61 154 154 59 155 155 62 156 156 56 157 157 58 158 158 60 159 159 64 160 160 65 161 161 67 162 162 66 163 163 66 164 164 67 165 165 69 166 166 68 167 167 70 168 168 71 169 169 65 170 170 64 171 171 65 172 172 71 173 173 69 174 174 67 175 175 70 176 176 64 177 177 66 178 178 68 179 179 72 180 180 73 181 181 75 182 182 74 183 183 74 184 184 75 185 185 77 186 186 76 187 187 78 188 188 79 189 189 73 190 190 72 191 191 73 192 192 79 193 193 77 194 194 75 195 195 78 196 196 72 197 197 74 198 198 76 199 199 80 200 200 81 201 201 83 202 202 82 203 203 82 204 204 83 205 205 85 206 206 84 207 207 86 208 208 87 209 209 81 210 210 80 211 211 81 212 212 87 213 213 85 214 214 83 215 215 86 216 216 80 217 217 82 218 218 84 219 219 88 220 220 89 221 221 91 222 222 90 223 223 90 224 224 91 225 225 93 226 226 92 227 227 94 228 228 95 229 229 89 230 230 88 231 231 89 232 232 95 233 233 93 234 234 91 235 235 94 236 236 88 237 237 90 238 238 92 239 239 96 240 240 97 241 241 99 242 242 98 243 243 98 244 244 99 245 245 101 246 246 100 247 247 102 248 248 103 249 249 97 250 250 96 251 251 97 252 252 103 253 253 101 254 254 99 255 255 102 256 256 96 257 257 98 258 258 100 259 259 104 260 260 105 261 261 107 262 262 106 263 263 106 264 264 107 265 265 109 266 266 108 267 267 110 268 268 111 269 269 105 270 270 104 271 271 105 272 272 111 273 273 109 274 274 107 275 275 110 276 276 104 277 277 106 278 278 108 279 279 112 280 280 113 281 281 115 282 282 114 283 283 114 284 284 115 285 285 117 286 286 116 287 287 118 288 288 119 289 289 113 290 290 112 291 291 113 292 292 119 293 293 117 294 294 115 295 295 118 296 296 112 297 297 114 298 298 116 299 299 120 300 300 121 301 301 123 302 302 122 303 303 122 304 304 123 305 305 125 306 306 124 307 307 126 308 308 127 309 309 121 310 310 120 311 311 121 312 312 127 313 313 125 314 314 123 315 315 126 316 316 120 317 317 122 318 318 124 319 319 128 320 320 129 321 321 131 322 322 130 323 323 130 324 324 131 325 325 133 326 326 132 327 327 134 328 328 135 329 329 129 330 330 128 331 331 129 332 332 135 333 333 133 334 334 131 335 335 134 336 336 128 337 337 130 338 338 132 339 339 136 340 340 137 341 341 139 342 342 138 343 343 138 344 344 139 345 345 141 346 346 140 347 347 142 348 348 143 349 349 137 350 350 136 351 351 137 352 352 143 353 353 141 354 354 139 355 355 142 356 356 136 357 357 138 358 358 140 359 359 144 360 360 145 361 361 147 362 362 146 363 363 146 364 364 147 365 365 149 366 366 148 367 367 150 368 368 151 369 369 145 370 370 144 371 371 145 372 372 151 373 373 149 374 374 147 375 375 150 376 376 144 377 377 146 378 378 148 379 379 152 380 380 153 381 381 155 382 382 154 383 383 154 384 384 155 385 385 157 386 386 156 387 387 158 388 388 159 389 389 153 390 390 152 391 391 153 392 392 159 393 393 157 394 394 155 395 395 158 396 396 152 397 397 154 398 398 156 399 399 160 400 400 161 401 401 163 402 402 162 403 403 162 404 404 163 405 405 165 406 406 164 407 407 166 408 408 167 409 409 161 410 410 160 411 411 161 412 412 167 413 413 165 414 414 163 415 415 166 416 416 160 417 417 162 418 418 164 419 419 168 420 420 169 421 421 171 422 422 170 423 423 170 424 424 171 425 425 173 426 426 172 427 427 174 428 428 175 429 429 169 430 430 168 431 431 169 432 432 175 433 433 173 434 434 171 435 435 174 436 436 168 437 437 170 438 438 172 439 439 176 440 440 177 441 441 179 442 442 178 443 443 178 444 444 179 445 445 181 446 446 180 447 447 182 448 448 183 449 449 177 450 450 176 451 451 177 452 452 183 453 453 181 454 454 179 455 455 182 456 456 176 457 457 178 458 458 180 459 459 184 460 460 185 461 461 187 462 462 186 463 463 186 464 464 187 465 465 189 466 466 188 467 467 190 468 468 191 469 469 185 470 470 184 471 471 185 472 472 191 473 473 189 474 474 187 475 475 190 476 476 184 477 477 186 478 478 188 479 479 192 480 480 193 481 481 195 482 482 194 483 483 194 484 484 195 485 485 197 486 486 196 487 487 198 488 488 199 489 489 193 490 490 192 491 491 193 492 492 199 493 493 197 494 494 195 495 495 198 496 496 192 497 497 194 498 498 196 499 499 200 500 500 201 501 501 203 502 502 202 503 503 202 504 504 203 505 505 205 506 506 204 507 507 206 508 508 207 509 509 201 510 510 200 511 511 201 512 512 207 513 513 205 514 514 203 515 515 206 516 516 200 517 517 202 518 518 204 519 519 208 520 520 209 521 521 211 522 522 210 523 523 210 524 524 211 525 525 213 526 526 212 527 527 214 528 528 215 529 529 209 530 530 208 531 531 209 532 532 215 533 533 213 534 534 211 535 535 214 536 536 208 537 537 210 538 538 212 539 539 216 540 540 217 541 541 219 542 542 218 543 543 218 544 544 219 545 545 221 546 546 220 547 547 222 548 548 223 549 549 217 550 550 216 551 551 217 552 552 223 553 553 221 554 554 219 555 555 222 556 556 216 557 557 218 558 558 220 559 559 224 560 560 225 561 561 227 562 562 226 563 563 226 564 564 227 565 565 229 566 566 228 567 567 230 568 568 231 569 569 225 570 570 224 571 571 225 572 572 231 573 573 229 574 574 227 575 575 230 576 576 224 577 577 226 578 578 228 579 579 232 580 580 233 581 581 235 582 582 234 583 583 234 584 584 235 585 585 237 586 586 236 587 587 238 588 588 239 589 589 233 590 590 232 591 591 233 592 592 239 593 593 237 594 594 235 595 595 238 596 596 232 597 597 234 598 598 236 599 599 240 600 600 241 601 601 243 602 602 242 603 603 242 604 604 243 605 605 245 606 606 244 607 607 246 608 608 247 609 609 241 610 610 240 611 611 241 612 612 247 613 613 245 614 614 243 615 615 246 616 616 240 617 617 242 618 618 244 619 619 248 620 620 249 621 621 251 622 622 250 623 623 250 624 624 251 625 625 253 626 626 252 627 627 254 628 628 255 629 629 249 630 630 248 631 631 249 632 632 255 633 633 253 634 634 251 635 635 254 636 636 248 637 637 250 638 638 252 639 639 256 640 640 257 641 641 259 642 642 258 643 643 258 644 644 259 645 645 261 646 646 260 647 647 262 648 648 263 649 649 257 650 650 256 651 651 257 652 652 263 653 653 261 654 654 259 655 655 262 656 656 256 657 657 258 658 658 260 659 659 264 660 660 265 661 661 267 662 662 266 663 663 266 664 664 267 665 665 269 666 666 268 667 667 270 668 668 271 669 669 265 670 670 264 671 671 265 672 672 271 673 673 269 674 674 267 675 675 270 676 676 264 677 677 266 678 678 268 679 679 272 680 680 273 681 681 275 682 682 274 683 683 274 684 684 275 685 685 277 686 686 276 687 687 278 688 688 279 689 689 273 690 690 272 691 691 273 692 692 279 693 693 277 694 694 275 695 695 278 696 696 272 697 697 274 698 698 276 699 699 280 700 700 281 701 701 283 702 702 282 703 703 282 704 704 283 705 705 285 706 706 284 707 707 286 708 708 287 709 709 281 710 710 280 711 711 281 712 712 287 713 713 285 714 714 283 715 715 286 716 716 280 717 717 282 718 718 284 719 719</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearTeethShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"shaft_LShape\" name=\"shaft_LShape\">\r\n      <mesh>\r\n        <source id=\"shaft_LShape-positions\" name=\"shaft_LShape-positions\">\r\n          <float_array id=\"shaft_LShape-positions-array\" count=\"1086\">-0.7804233 -1.000356 -0.5775557 -0.7804233 -0.5775557 -1.000356 -0.7804233 0 -1.155111 -0.7804233 0.5775557 -1.000356 -0.7804233 1.000356 -0.5775557 -0.7804233 1.155111 0 -0.7804233 1.000356 0.5775557 -0.7804233 0.5775557 1.000356 -0.7804233 0 1.155111 -0.7804233 -0.5775557 1.000356 -0.7804233 -1.000356 0.5775557 -0.7804233 -1.155111 0 0.7804233 -1.000356 -0.5775557 0.7804233 -0.5775557 -1.000356 0.7804233 0 -1.155111 0.7804233 0.5775557 -1.000356 0.7804233 1.000356 -0.5775557 0.7804233 1.155111 0 0.7804233 1.000356 0.5775557 0.7804233 0.5775557 1.000356 0.7804233 0 1.155111 0.7804233 -0.5775557 1.000356 0.7804233 -1.000356 0.5775557 0.7804233 -1.155111 0 0.7804233 0 0 -0.9391534 -1.405364 -0.8113873 -0.9391534 -0.8113873 -1.405364 -0.9391534 0 -1.622775 -0.9391534 0.8113873 -1.405364 -0.9391534 1.405364 -0.8113873 -0.9391534 1.622775 0 -0.9391534 1.405364 0.8113873 -0.9391534 0.8113873 1.405364 -0.9391534 0 1.622775 -0.9391534 -0.8113873 1.405364 -0.9391534 -1.405364 0.8113873 -0.9391534 -1.622775 0 -4.404786 -1.405364 -0.8113873 -4.404786 -0.8113873 -1.405364 -4.404786 0 -1.622775 -4.404786 0.8113873 -1.405364 -4.404786 1.405364 -0.8113873 -4.404786 1.622775 0 -4.404786 1.405364 0.8113873 -4.404786 0.8113873 1.405364 -4.404786 0 1.622775 -4.404786 -0.8113873 1.405364 -4.404786 -1.405364 0.8113873 -4.404786 -1.622775 0 -4.662065 -1.12965 -0.652204 -4.662065 -0.652204 -1.12965 -4.662065 0 -1.304408 -4.662065 0.652204 -1.12965 -4.662065 1.12965 -0.652204 -4.662065 1.304408 0 -4.662065 1.12965 0.652204 -4.662065 0.652204 1.12965 -4.662065 0 1.304408 -4.662065 -0.652204 1.12965 -4.662065 -1.12965 0.652204 -4.662065 -1.304408 0 -6.461221 -1.12965 -0.652204 -6.461221 -0.652204 -1.12965 -6.461221 0 -1.304408 -6.461221 0.652204 -1.12965 -6.461221 1.12965 -0.652204 -6.461221 1.304408 0 -6.461221 1.12965 0.652204 -6.461221 0.652204 1.12965 -6.461221 0 1.304408 -6.461221 -0.652204 1.12965 -6.461221 -1.12965 0.652204 -6.461221 -1.304408 0 -6.461221 -1.22812 -0.7090552 -6.461221 -0.7090552 -1.22812 -6.461221 0 -1.41811 -6.461221 0.7090552 -1.22812 -6.461221 1.22812 -0.7090552 -6.461221 1.41811 0 -6.461221 1.22812 0.7090552 -6.461221 0.7090552 1.22812 -6.461221 0 1.41811 -6.461221 -0.7090552 1.22812 -6.461221 -1.22812 0.7090552 -6.461221 -1.41811 0 -6.589861 -1.22812 -0.7090552 -6.589861 -0.7090552 -1.22812 -6.589861 0 -1.41811 -6.589861 0.7090552 -1.22812 -6.589861 1.22812 -0.7090552 -6.589861 1.41811 0 -6.589861 1.22812 0.7090552 -6.589861 0.7090552 1.22812 -6.589861 0 1.41811 -6.589861 -0.7090552 1.22812 -6.589861 -1.22812 0.7090552 -6.589861 -1.41811 0 -6.589861 -1.720465 -0.9933112 -6.589861 -0.9933112 -1.720465 -6.589861 0 -1.986622 -6.589861 0.9933112 -1.720465 -6.589861 1.720465 -0.9933112 -6.589861 1.986622 0 -6.589861 1.720465 0.9933112 -6.589861 0.9933112 1.720465 -6.589861 0 1.986622 -6.589861 -0.9933112 1.720465 -6.589861 -1.720465 0.9933112 -6.589861 -1.986622 0 -6.674973 -1.785616 -1.030926 -6.674973 -1.030926 -1.785616 -6.674973 0 -2.061852 -6.674973 1.030926 -1.785616 -6.674973 1.785616 -1.030926 -6.674973 2.061852 0 -6.674973 1.785616 1.030926 -6.674973 1.030926 1.785616 -6.674973 0 2.061852 -6.674973 -1.030926 1.785616 -6.674973 -1.785616 1.030926 -6.674973 -2.061852 0 -9.216881 -1.785616 -1.030926 -9.216881 -1.030926 -1.785616 -9.216881 0 -2.061852 -9.216881 1.030926 -1.785616 -9.216881 1.785616 -1.030926 -9.216881 2.061852 0 -9.216881 1.785616 1.030926 -9.216881 1.030926 1.785616 -9.216881 0 2.061852 -9.216881 -1.030926 1.785616 -9.216881 -1.785616 1.030926 -9.216881 -2.061852 0 -9.318738 -1.671029 -0.9647692 -9.318738 -0.9647692 -1.671029 -9.318738 0 -1.929538 -9.318738 0.9647692 -1.671029 -9.318738 1.671029 -0.9647692 -9.318738 1.929538 0 -9.318738 1.671029 0.9647692 -9.318738 0.9647692 1.671029 -9.318738 0 1.929538 -9.318738 -0.9647692 1.671029 -9.318738 -1.671029 0.9647692 -9.318738 -1.929538 0 -9.420595 -1.785616 -1.030926 -9.420595 -1.030926 -1.785616 -9.420595 0 -2.061852 -9.420595 1.030926 -1.785616 -9.420595 1.785616 -1.030926 -9.420595 2.061852 0 -9.420595 1.785616 1.030926 -9.420595 1.030926 1.785616 -9.420595 0 2.061852 -9.420595 -1.030926 1.785616 -9.420595 -1.785616 1.030926 -9.420595 -2.061852 0 -10.23442 -1.785616 -1.030926 -10.23442 -1.030926 -1.785616 -10.23442 0 -2.061852 -10.23442 1.030926 -1.785616 -10.23442 1.785616 -1.030926 -10.23442 2.061852 0 -10.23442 1.785616 1.030926 -10.23442 1.030926 1.785616 -10.23442 0 2.061852 -10.23442 -1.030926 1.785616 -10.23442 -1.785616 1.030926 -10.23442 -2.061852 0 -10.23442 -2.014323 -1.16297 -10.23442 -1.16297 -2.014323 -10.23442 0 -2.32594 -10.23442 1.16297 -2.014323 -10.23442 2.014323 -1.16297 -10.23442 2.32594 0 -10.23442 2.014323 1.16297 -10.23442 1.16297 2.014323 -10.23442 0 2.32594 -10.23442 -1.16297 2.014323 -10.23442 -2.014323 1.16297 -10.23442 -2.32594 0 -12.92916 -2.014323 -1.16297 -12.92916 -1.16297 -2.014323 -12.92916 0 -2.32594 -12.92916 1.16297 -2.014323 -12.92916 2.014323 -1.16297 -12.92916 2.32594 0 -12.92916 2.014323 1.16297 -12.92916 1.16297 2.014323 -12.92916 0 2.32594 -12.92916 -1.16297 2.014323 -12.92916 -2.014323 1.16297 -12.92916 -2.32594 0 -12.75939 -2.201446 -1.271006 -12.75939 -1.271006 -2.201446 -12.75939 0 -2.542011 -12.75939 1.271006 -2.201446 -12.75939 2.201446 -1.271006 -12.75939 2.542011 0 -12.75939 2.201446 1.271006 -12.75939 1.271006 2.201446 -12.75939 0 2.542011 -12.75939 -1.271006 2.201446 -12.75939 -2.201446 1.271006 -12.75939 -2.542011 0 -12.52173 -2.991522 -1.727156 -12.52173 -1.727156 -2.991522 -12.52173 0 -3.454313 -12.52173 1.727156 -2.991522 -12.52173 2.991522 -1.727156 -12.52173 3.454313 0 -12.52173 2.991522 1.727156 -12.52173 1.727156 2.991522 -12.52173 0 3.454313 -12.52173 -1.727156 2.991522 -12.52173 -2.991522 1.727156 -12.52173 -3.454313 0 -13.06285 -2.991522 -1.727156 -13.06285 -1.727156 -2.991522 -13.06285 0 -3.454313 -13.06285 1.727156 -2.991522 -13.06285 2.991522 -1.727156 -13.06285 3.454313 0 -13.06285 2.991522 1.727156 -13.06285 1.727156 2.991522 -13.06285 0 3.454313 -13.06285 -1.727156 2.991522 -13.06285 -2.991522 1.727156 -13.06285 -3.454313 0 -13.06285 -2.40936 -1.391045 -13.06285 -1.391045 -2.40936 -13.06285 0 -2.782091 -13.06285 1.391045 -2.40936 -13.06285 2.40936 -1.391045 -13.06285 2.782091 0 -13.06285 2.40936 1.391045 -13.06285 1.391045 2.40936 -13.06285 0 2.782091 -13.06285 -1.391045 2.40936 -13.06285 -2.40936 1.391045 -13.06285 -2.782091 0 -19.82574 -2.40936 -1.391045 -19.82574 -1.391045 -2.40936 -19.82574 0 -2.782091 -19.82574 1.391045 -2.40936 -19.82574 2.40936 -1.391045 -19.82574 2.782091 0 -19.82574 2.40936 1.391045 -19.82574 1.391045 2.40936 -19.82574 0 2.782091 -19.82574 -1.391045 2.40936 -19.82574 -2.40936 1.391045 -19.82574 -2.782091 0 -21.28569 -2.40936 -1.391045 -21.28569 -1.391045 -2.40936 -21.28569 0 -2.782091 -21.28569 1.391045 -2.40936 -21.28569 2.40936 -1.391045 -21.28569 2.782091 0 -21.28569 2.40936 1.391045 -21.28569 1.391045 2.40936 -21.28569 0 2.782091 -21.28569 -1.391045 2.40936 -21.28569 -2.40936 1.391045 -21.28569 -2.782091 0 -21.28569 -2.243029 -1.295014 -21.28569 -1.295014 -2.243029 -21.28569 0 -2.590027 -21.28569 1.295014 -2.243029 -21.28569 2.243029 -1.295014 -21.28569 2.590027 0 -21.28569 2.243029 1.295014 -21.28569 1.295014 2.243029 -21.28569 0 2.590027 -21.28569 -1.295014 2.243029 -21.28569 -2.243029 1.295014 -21.28569 -2.590027 0 -24.65122 -2.243029 -1.295014 -24.65122 -1.295014 -2.243029 -24.65122 0 -2.590027 -24.65122 1.295014 -2.243029 -24.65122 2.243029 -1.295014 -24.65122 2.590027 0 -24.65122 2.243029 1.295014 -24.65122 1.295014 2.243029 -24.65122 0 2.590027 -24.65122 -1.295014 2.243029 -24.65122 -2.243029 1.295014 -24.65122 -2.590027 0 -24.65122 -1.660867 -0.9589024 -24.65122 -0.9589024 -1.660867 -24.65122 0 -1.917805 -24.65122 0.9589024 -1.660867 -24.65122 1.660867 -0.9589024 -24.65122 1.917805 0 -24.65122 1.660867 0.9589024 -24.65122 0.9589024 1.660867 -24.65122 0 1.917805 -24.65122 -0.9589024 1.660867 -24.65122 -1.660867 0.9589024 -24.65122 -1.917805 0 -30.23496 -1.660867 -0.9589024 -30.23496 -0.9589024 -1.660867 -30.23496 0 -1.917805 -30.23496 0.9589024 -1.660867 -30.23496 1.660867 -0.9589024 -30.23496 1.917805 0 -30.23496 1.660867 0.9589024 -30.23496 0.9589024 1.660867 -30.23496 0 1.917805 -30.23496 -0.9589024 1.660867 -30.23496 -1.660867 0.9589024 -30.23496 -1.917805 0 -30.8461 -1.660867 -0.9589024 -30.8461 -0.9589024 -1.660867 -30.8461 0 -1.917805 -30.8461 0.9589024 -1.660867 -30.8461 1.660867 -0.9589024 -30.8461 1.917805 0 -30.8461 1.660867 0.9589024 -30.8461 0.9589024 1.660867 -30.8461 0 1.917805 -30.8461 -0.9589024 1.660867 -30.8461 -1.660867 0.9589024 -30.8461 -1.917805 0 -30.8461 -1.452952 -0.8388627 -30.8461 -0.8388627 -1.452952 -30.8461 0 -1.677725 -30.8461 0.8388627 -1.452952 -30.8461 1.452952 -0.8388627 -30.8461 1.677725 0 -30.8461 1.452952 0.8388627 -30.8461 0.8388627 1.452952 -30.8461 0 1.677725 -30.8461 -0.8388627 1.452952 -30.8461 -1.452952 0.8388627 -30.8461 -1.677725 0 -37.76036 -1.452952 -0.8388627 -37.76036 -0.8388627 -1.452952 -37.76036 0 -1.677725 -37.76036 0.8388627 -1.452952 -37.76036 1.452952 -0.8388627 -37.76036 1.677725 0 -37.76036 1.452952 0.8388627 -37.76036 0.8388627 1.452952 -37.76036 0 1.677725 -37.76036 -0.8388627 1.452952 -37.76036 -1.452952 0.8388627 -37.76036 -1.677725 0 -38.03197 -1.28662 -0.7428309 -38.03197 -0.7428309 -1.28662 -38.03197 0 -1.485662 -38.03197 0.7428309 -1.28662 -38.03197 1.28662 -0.7428309 -38.03197 1.485662 0 -38.03197 1.28662 0.7428309 -38.03197 0.7428309 1.28662 -38.03197 0 1.485662 -38.03197 -0.7428309 1.28662 -38.03197 -1.28662 0.7428309 -38.03197 -1.485662 0 -38.03197 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#shaft_LShape-positions-array\" count=\"362\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"shaft_LShape-normals\" name=\"shaft_LShape-normals\">\r\n          <float_array id=\"shaft_LShape-normals-array\" count=\"4254\">0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9434505 -0.2344156 -0.2344156 0.9434505 -0.2344156 -0.2344156 0.9434505 -0.2344156 -0.2344156 0.9434505 -0.2344156 -0.2344156 0.9434505 -0.08580203 -0.3202175 0.9434505 -0.08580203 -0.3202175 0.9434505 -0.08580203 -0.3202175 0.9434505 -0.08580203 -0.3202175 0.9434505 0.08580203 -0.3202175 0.9434505 0.08580203 -0.3202175 0.9434505 0.08580203 -0.3202175 0.9434505 0.08580203 -0.3202175 0.9434505 0.2344156 -0.2344156 0.9434505 0.2344156 -0.2344156 0.9434505 0.2344156 -0.2344156 0.9434505 0.2344156 -0.2344156 0.9434504 0.3202177 -0.08580205 0.9434504 0.3202177 -0.08580205 0.9434504 0.3202177 -0.08580205 0.9434504 0.3202177 -0.08580205 0.9434504 0.3202176 0.08580205 0.9434504 0.3202176 0.08580205 0.9434504 0.3202176 0.08580205 0.9434504 0.3202176 0.08580205 0.9434505 0.2344156 0.2344156 0.9434505 0.2344156 0.2344156 0.9434505 0.2344156 0.2344156 0.9434505 0.2344156 0.2344156 0.9434505 0.08580203 0.3202175 0.9434505 0.08580203 0.3202175 0.9434505 0.08580203 0.3202175 0.9434505 0.08580203 0.3202175 0.9434505 -0.08580203 0.3202175 0.9434505 -0.08580203 0.3202175 0.9434505 -0.08580203 0.3202175 0.9434505 -0.08580203 0.3202175 0.9434505 -0.2344156 0.2344156 0.9434505 -0.2344156 0.2344156 0.9434505 -0.2344156 0.2344156 0.9434505 -0.2344156 0.2344156 0.9434504 -0.3202177 0.08580205 0.9434504 -0.3202177 0.08580205 0.9434504 -0.3202177 0.08580205 0.9434504 -0.3202177 0.08580205 0.9434504 -0.3202176 -0.08580205 0.9434504 -0.3202176 -0.08580205 0.9434504 -0.3202176 -0.08580205 0.9434504 -0.3202176 -0.08580205 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 -0.7669766 -0.453733 -0.4537327 -0.7669766 -0.453733 -0.4537327 -0.7669766 -0.453733 -0.4537327 -0.7669766 -0.453733 -0.4537327 -0.7669767 -0.1660781 -0.6198103 -0.7669767 -0.1660781 -0.6198103 -0.7669767 -0.1660781 -0.6198103 -0.7669767 -0.1660781 -0.6198103 -0.7669767 0.1660781 -0.6198104 -0.7669767 0.1660781 -0.6198104 -0.7669767 0.1660781 -0.6198104 -0.7669767 0.1660781 -0.6198104 -0.7669767 0.4537329 -0.4537328 -0.7669767 0.4537329 -0.4537328 -0.7669767 0.4537329 -0.4537328 -0.7669767 0.4537329 -0.4537328 -0.7669767 0.6198105 -0.1660777 -0.7669767 0.6198105 -0.1660777 -0.7669767 0.6198105 -0.1660777 -0.7669767 0.6198105 -0.1660777 -0.7669766 0.6198105 0.1660777 -0.7669766 0.6198105 0.1660777 -0.7669766 0.6198105 0.1660777 -0.7669766 0.6198105 0.1660777 -0.7669766 0.453733 0.4537327 -0.7669766 0.453733 0.4537327 -0.7669766 0.453733 0.4537327 -0.7669766 0.453733 0.4537327 -0.7669767 0.1660781 0.6198103 -0.7669767 0.1660781 0.6198103 -0.7669767 0.1660781 0.6198103 -0.7669767 0.1660781 0.6198103 -0.7669767 -0.1660781 0.6198104 -0.7669767 -0.1660781 0.6198104 -0.7669767 -0.1660781 0.6198104 -0.7669767 -0.1660781 0.6198104 -0.7669767 -0.4537329 0.4537328 -0.7669767 -0.4537329 0.4537328 -0.7669767 -0.4537329 0.4537328 -0.7669767 -0.4537329 0.4537328 -0.7669767 -0.6198105 0.1660777 -0.7669767 -0.6198105 0.1660777 -0.7669767 -0.6198105 0.1660777 -0.7669767 -0.6198105 0.1660777 -0.7669766 -0.6198105 -0.1660777 -0.7669766 -0.6198105 -0.1660777 -0.7669766 -0.6198105 -0.1660777 -0.7669766 -0.6198105 -0.1660777 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071064 -0.7071072 0 -0.7071064 -0.7071072 0 -0.7071064 -0.7071072 0 -0.7071064 -0.7071072 0 -0.2588196 -0.9659258 0 -0.2588196 -0.9659258 0 -0.2588196 -0.9659258 0 -0.2588196 -0.9659258 0 0.2588196 -0.9659258 0 0.2588196 -0.9659258 0 0.2588196 -0.9659258 0 0.2588196 -0.9659258 0 0.7071064 -0.7071072 0 0.7071064 -0.7071072 0 0.7071064 -0.7071072 0 0.7071064 -0.7071072 0 0.965926 -0.2588187 0 0.965926 -0.2588187 0 0.965926 -0.2588187 0 0.965926 -0.2588187 0 0.965926 0.2588187 0 0.965926 0.2588187 0 0.965926 0.2588187 0 0.965926 0.2588187 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.2588196 0.9659258 0 0.2588196 0.9659258 0 0.2588196 0.9659258 0 0.2588196 0.9659258 0 -0.2588196 0.9659258 0 -0.2588196 0.9659258 0 -0.2588196 0.9659258 0 -0.2588196 0.9659258 0 -0.7071064 0.7071072 0 -0.7071064 0.7071072 0 -0.7071064 0.7071072 0 -0.7071064 0.7071072 0 -0.965926 0.2588187 0 -0.965926 0.2588187 0 -0.965926 0.2588187 0 -0.965926 0.2588187 0 -0.965926 -0.2588187 0 -0.965926 -0.2588187 0 -0.965926 -0.2588187 0 -0.965926 -0.2588187 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.6493112 -0.5377703 -0.5377715 0.6493112 -0.5377703 -0.5377715 0.6493112 -0.5377703 -0.5377715 0.6493112 -0.5377703 -0.5377715 0.649311 -0.1968391 -0.7346085 0.649311 -0.1968391 -0.7346085 0.649311 -0.1968391 -0.7346085 0.649311 -0.1968391 -0.7346085 0.6493109 0.1968396 -0.7346085 0.6493109 0.1968396 -0.7346085 0.6493109 0.1968396 -0.7346085 0.6493109 0.1968396 -0.7346085 0.6493101 0.5377721 -0.5377709 0.6493101 0.5377721 -0.5377709 0.6493101 0.5377721 -0.5377709 0.6493101 0.5377721 -0.5377709 0.6493112 0.7346086 -0.1968379 0.6493112 0.7346086 -0.1968379 0.6493112 0.7346086 -0.1968379 0.6493112 0.7346086 -0.1968379 0.6493117 0.7346082 0.1968381 0.6493117 0.7346082 0.1968381 0.6493117 0.7346082 0.1968381 0.6493117 0.7346082 0.1968381 0.6493112 0.5377703 0.5377715 0.6493112 0.5377703 0.5377715 0.6493112 0.5377703 0.5377715 0.6493112 0.5377703 0.5377715 0.6493111 0.196839 0.7346084 0.6493111 0.196839 0.7346084 0.6493111 0.196839 0.7346084 0.6493111 0.196839 0.7346084 0.6493109 -0.1968396 0.7346085 0.6493109 -0.1968396 0.7346085 0.6493109 -0.1968396 0.7346085 0.6493109 -0.1968396 0.7346085 0.6493104 -0.5377715 0.5377711 0.6493104 -0.5377715 0.5377711 0.6493104 -0.5377715 0.5377711 0.6493104 -0.5377715 0.5377711 0.6493109 -0.7346089 0.1968382 0.6493109 -0.7346089 0.1968382 0.6493109 -0.7346089 0.1968382 0.6493109 -0.7346089 0.1968382 0.6493117 -0.7346081 -0.1968384 0.6493117 -0.7346081 -0.1968384 0.6493117 -0.7346081 -0.1968384 0.6493117 -0.7346081 -0.1968384 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 -0.7820227 -0.440704 -0.4407048 -0.7820227 -0.440704 -0.4407048 -0.7820227 -0.440704 -0.4407048 -0.7820227 -0.440704 -0.4407048 -0.7820228 -0.1613085 -0.6020134 -0.7820228 -0.1613085 -0.6020134 -0.7820228 -0.1613085 -0.6020134 -0.7820228 -0.1613085 -0.6020134 -0.7820228 0.1613085 -0.6020133 -0.7820228 0.1613085 -0.6020133 -0.7820228 0.1613085 -0.6020133 -0.7820228 0.1613085 -0.6020133 -0.7820223 0.4407048 -0.4407046 -0.7820223 0.4407048 -0.4407046 -0.7820223 0.4407048 -0.4407046 -0.7820223 0.4407048 -0.4407046 -0.7820202 0.6020167 -0.1613086 -0.7820202 0.6020167 -0.1613086 -0.7820202 0.6020167 -0.1613086 -0.7820202 0.6020167 -0.1613086 -0.7820213 0.602015 0.1613088 -0.7820213 0.602015 0.1613088 -0.7820213 0.602015 0.1613088 -0.7820213 0.602015 0.1613088 -0.7820227 0.440704 0.4407048 -0.7820227 0.440704 0.4407048 -0.7820227 0.440704 0.4407048 -0.7820227 0.440704 0.4407048 -0.7820228 0.1613085 0.6020134 -0.7820228 0.1613085 0.6020134 -0.7820228 0.1613085 0.6020134 -0.7820228 0.1613085 0.6020134 -0.7820228 -0.1613085 0.6020133 -0.7820228 -0.1613085 0.6020133 -0.7820228 -0.1613085 0.6020133 -0.7820228 -0.1613085 0.6020133 -0.7820223 -0.4407048 0.4407046 -0.7820223 -0.4407048 0.4407046 -0.7820223 -0.4407048 0.4407046 -0.7820223 -0.4407048 0.4407046 -0.7820202 -0.6020167 0.1613086 -0.7820202 -0.6020167 0.1613086 -0.7820202 -0.6020167 0.1613086 -0.7820202 -0.6020167 0.1613086 -0.7820213 -0.602015 -0.1613088 -0.7820213 -0.602015 -0.1613088 -0.7820213 -0.602015 -0.1613088 -0.7820213 -0.602015 -0.1613088 0.7820217 -0.4407062 -0.4407042 0.7820217 -0.4407062 -0.4407042 0.7820217 -0.4407062 -0.4407042 0.7820217 -0.4407062 -0.4407042 0.7820226 -0.1613092 -0.6020133 0.7820226 -0.1613092 -0.6020133 0.7820226 -0.1613092 -0.6020133 0.7820226 -0.1613092 -0.6020133 0.7820227 0.1613092 -0.6020133 0.7820227 0.1613092 -0.6020133 0.7820227 0.1613092 -0.6020133 0.7820227 0.1613092 -0.6020133 0.7820221 0.4407051 -0.4407045 0.7820221 0.4407051 -0.4407045 0.7820221 0.4407051 -0.4407045 0.7820221 0.4407051 -0.4407045 0.7820229 0.6020131 -0.1613091 0.7820229 0.6020131 -0.1613091 0.7820229 0.6020131 -0.1613091 0.7820229 0.6020131 -0.1613091 0.7820216 0.6020148 0.1613088 0.7820216 0.6020148 0.1613088 0.7820216 0.6020148 0.1613088 0.7820216 0.6020148 0.1613088 0.7820217 0.4407062 0.4407042 0.7820217 0.4407062 0.4407042 0.7820217 0.4407062 0.4407042 0.7820217 0.4407062 0.4407042 0.7820226 0.1613092 0.6020133 0.7820226 0.1613092 0.6020133 0.7820226 0.1613092 0.6020133 0.7820226 0.1613092 0.6020133 0.7820227 -0.1613092 0.6020133 0.7820227 -0.1613092 0.6020133 0.7820227 -0.1613092 0.6020133 0.7820227 -0.1613092 0.6020133 0.7820221 -0.4407051 0.4407045 0.7820221 -0.4407051 0.4407045 0.7820221 -0.4407051 0.4407045 0.7820221 -0.4407051 0.4407045 0.7820229 -0.6020131 0.1613091 0.7820229 -0.6020131 0.1613091 0.7820229 -0.6020131 0.1613091 0.7820229 -0.6020131 0.1613091 0.7820216 -0.6020148 -0.1613088 0.7820216 -0.6020148 -0.1613088 0.7820216 -0.6020148 -0.1613088 0.7820216 -0.6020148 -0.1613088 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588194 -0.9659258 0 -0.2588194 -0.9659258 0 -0.2588194 -0.9659258 0 -0.2588194 -0.9659258 0 0.2588194 -0.9659258 0 0.2588194 -0.9659258 0 0.2588194 -0.9659258 0 0.2588194 -0.9659258 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588194 0.9659258 0 0.2588194 0.9659258 0 0.2588194 0.9659258 0 0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071067 -0.7071069 0 -0.7071067 -0.7071069 0 -0.7071067 -0.7071069 0 -0.7071067 -0.7071069 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.7071067 -0.7071069 0 0.7071067 -0.7071069 0 0.7071067 -0.7071069 0 0.7071067 -0.7071069 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.7071067 0.7071069 0 0.7071067 0.7071069 0 0.7071067 0.7071069 0 0.7071067 0.7071069 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.7071067 0.7071069 0 -0.7071067 0.7071069 0 -0.7071067 0.7071069 0 -0.7071067 0.7071069 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0.7757771 0.446188 0.4461907 0.7757771 0.446188 0.4461907 0.7757771 0.446188 0.4461907 0.7757771 0.446188 0.4461907 0.7757761 0.1633176 0.6095072 0.7757761 0.1633176 0.6095072 0.7757761 0.1633176 0.6095072 0.7757761 0.1633176 0.6095072 0.7757759 -0.1633182 0.6095071 0.7757759 -0.1633182 0.6095071 0.7757759 -0.1633182 0.6095071 0.7757759 -0.1633182 0.6095071 0.7757766 -0.4461893 0.4461903 0.7757766 -0.4461893 0.4461903 0.7757766 -0.4461893 0.4461903 0.7757766 -0.4461893 0.4461903 0.7757757 -0.6095077 0.1633169 0.7757757 -0.6095077 0.1633169 0.7757757 -0.6095077 0.1633169 0.7757757 -0.6095077 0.1633169 0.775775 -0.6095088 -0.1633168 0.775775 -0.6095088 -0.1633168 0.775775 -0.6095088 -0.1633168 0.775775 -0.6095088 -0.1633168 0.7757771 -0.446188 -0.4461907 0.7757771 -0.446188 -0.4461907 0.7757771 -0.446188 -0.4461907 0.7757771 -0.446188 -0.4461907 0.7757761 -0.1633176 -0.6095072 0.7757761 -0.1633176 -0.6095072 0.7757761 -0.1633176 -0.6095072 0.7757761 -0.1633176 -0.6095072 0.7757759 0.1633182 -0.6095071 0.7757759 0.1633182 -0.6095071 0.7757759 0.1633182 -0.6095071 0.7757759 0.1633182 -0.6095071 0.7757766 0.4461893 -0.4461903 0.7757766 0.4461893 -0.4461903 0.7757766 0.4461893 -0.4461903 0.7757766 0.4461893 -0.4461903 0.7757757 0.6095077 -0.1633169 0.7757757 0.6095077 -0.1633169 0.7757757 0.6095077 -0.1633169 0.7757757 0.6095077 -0.1633169 0.775775 0.6095088 0.1633168 0.775775 0.6095088 0.1633168 0.775775 0.6095088 0.1633168 0.775775 0.6095088 0.1633168 0.9655015 0.1841288 0.1841286 0.9655015 0.1841288 0.1841286 0.9655015 0.1841288 0.1841286 0.9655015 0.1841288 0.1841286 0.9655017 0.06739573 0.2515244 0.9655017 0.06739573 0.2515244 0.9655017 0.06739573 0.2515244 0.9655017 0.06739573 0.2515244 0.9655017 -0.06739572 0.2515244 0.9655017 -0.06739572 0.2515244 0.9655017 -0.06739572 0.2515244 0.9655017 -0.06739572 0.2515244 0.9655017 -0.1841282 0.1841286 0.9655017 -0.1841282 0.1841286 0.9655017 -0.1841282 0.1841286 0.9655017 -0.1841282 0.1841286 0.9655019 -0.2515232 0.06739592 0.9655019 -0.2515232 0.06739592 0.9655019 -0.2515232 0.06739592 0.9655019 -0.2515232 0.06739592 0.9655017 -0.2515238 -0.0673959 0.9655017 -0.2515238 -0.0673959 0.9655017 -0.2515238 -0.0673959 0.9655017 -0.2515238 -0.0673959 0.9655015 -0.1841288 -0.1841286 0.9655015 -0.1841288 -0.1841286 0.9655015 -0.1841288 -0.1841286 0.9655015 -0.1841288 -0.1841286 0.9655017 -0.06739573 -0.2515244 0.9655017 -0.06739573 -0.2515244 0.9655017 -0.06739573 -0.2515244 0.9655017 -0.06739573 -0.2515244 0.9655017 0.06739572 -0.2515244 0.9655017 0.06739572 -0.2515244 0.9655017 0.06739572 -0.2515244 0.9655017 0.06739572 -0.2515244 0.9655017 0.1841282 -0.1841286 0.9655017 0.1841282 -0.1841286 0.9655017 0.1841282 -0.1841286 0.9655017 0.1841282 -0.1841286 0.9655019 0.2515232 -0.06739592 0.9655019 0.2515232 -0.06739592 0.9655019 0.2515232 -0.06739592 0.9655019 0.2515232 -0.06739592 0.9655017 0.2515238 0.0673959 0.9655017 0.2515238 0.0673959 0.9655017 0.2515238 0.0673959 0.9655017 0.2515238 0.0673959 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.2588193 -0.9659259 0 -0.2588193 -0.9659259 0 -0.2588193 -0.9659259 0 -0.2588193 -0.9659259 0 0.2588193 -0.9659259 0 0.2588193 -0.9659259 0 0.2588193 -0.9659259 0 0.2588193 -0.9659259 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.2588193 0.9659259 0 0.2588193 0.9659259 0 0.2588193 0.9659259 0 0.2588193 0.9659259 0 -0.2588193 0.9659259 0 -0.2588193 0.9659259 0 -0.2588193 0.9659259 0 -0.2588193 0.9659259 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659257 -0.2588195 0 0.9659257 -0.2588195 0 0.9659257 -0.2588195 0 0.9659257 -0.2588195 0 0.9659257 0.2588195 0 0.9659257 0.2588195 0 0.9659257 0.2588195 0 0.9659257 0.2588195 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659257 0.2588195 0 -0.9659257 0.2588195 0 -0.9659257 0.2588195 0 -0.9659257 0.2588195 0 -0.9659257 -0.2588195 0 -0.9659257 -0.2588195 0 -0.9659257 -0.2588195 0 -0.9659257 -0.2588195 0 -0.7071062 -0.7071074 0 -0.7071062 -0.7071074 0 -0.7071062 -0.7071074 0 -0.7071062 -0.7071074 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.7071062 -0.7071074 0 0.7071062 -0.7071074 0 0.7071062 -0.7071074 0 0.7071062 -0.7071074 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.7071062 0.7071074 0 0.7071062 0.7071074 0 0.7071062 0.7071074 0 0.7071062 0.7071074 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.7071062 0.7071074 0 -0.7071062 0.7071074 0 -0.7071062 0.7071074 0 -0.7071062 0.7071074 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.9659258 -0.2588194 0 0.9659258 -0.2588194 0 0.9659258 -0.2588194 0 0.9659258 -0.2588194 0 0.9659258 0.2588194 0 0.9659258 0.2588194 0 0.9659258 0.2588194 0 0.9659258 0.2588194 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.9659258 -0.2588194 0 -0.9659258 -0.2588194 0 -0.9659258 -0.2588194 0 -0.9659258 -0.2588194 -0.5640132 -0.583902 -0.5839071 -0.5640132 -0.583902 -0.5839071 -0.5640132 -0.583902 -0.5839071 -0.5640132 -0.583902 -0.5839071 -0.5640115 -0.2137223 -0.7976303 -0.5640115 -0.2137223 -0.7976303 -0.5640115 -0.2137223 -0.7976303 -0.5640115 -0.2137223 -0.7976303 -0.5640113 0.2137239 -0.7976298 -0.5640113 0.2137239 -0.7976298 -0.5640113 0.2137239 -0.7976298 -0.5640113 0.2137239 -0.7976298 -0.5640123 0.5839037 -0.5839062 -0.5640123 0.5839037 -0.5839062 -0.5640123 0.5839037 -0.5839062 -0.5640123 0.5839037 -0.5839062 -0.5640125 0.7976287 -0.213725 -0.5640125 0.7976287 -0.213725 -0.5640125 0.7976287 -0.213725 -0.5640125 0.7976287 -0.213725 -0.5640129 0.7976284 0.2137252 -0.5640129 0.7976284 0.2137252 -0.5640129 0.7976284 0.2137252 -0.5640129 0.7976284 0.2137252 -0.5640132 0.583902 0.5839071 -0.5640132 0.583902 0.5839071 -0.5640132 0.583902 0.5839071 -0.5640132 0.583902 0.5839071 -0.5640115 0.2137223 0.7976303 -0.5640115 0.2137223 0.7976303 -0.5640115 0.2137223 0.7976303 -0.5640115 0.2137223 0.7976303 -0.5640113 -0.2137239 0.7976298 -0.5640113 -0.2137239 0.7976298 -0.5640113 -0.2137239 0.7976298 -0.5640113 -0.2137239 0.7976298 -0.5640123 -0.5839037 0.5839062 -0.5640123 -0.5839037 0.5839062 -0.5640123 -0.5839037 0.5839062 -0.5640123 -0.5839037 0.5839062 -0.5640125 -0.7976287 0.213725 -0.5640125 -0.7976287 0.213725 -0.5640125 -0.7976287 0.213725 -0.5640125 -0.7976287 0.213725 -0.5640129 -0.7976284 -0.2137252 -0.5640129 -0.7976284 -0.2137252 -0.5640129 -0.7976284 -0.2137252 -0.5640129 -0.7976284 -0.2137252</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#shaft_LShape-normals-array\" count=\"1418\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"shaft_LShape-map1\" name=\"shaft_LShape-map1\">\r\n          <float_array id=\"shaft_LShape-map1-array\" count=\"1434\">0.1826146 0.7325244 0.1826144 0.7906553 0.01035434 0.7906556 0.0103544 0.7325246 0.1826145 0.8487867 0.01035431 0.8487864 0.1826145 0.2093443 0.1826146 0.2674756 0.01035437 0.2674754 0.1826144 0.3256066 0.01035437 0.3256066 0.1826145 0.3837377 0.01035437 0.3837377 0.1826145 0.4418688 0.01035437 0.4418691 0.1826146 0.5 0.01035437 0.5 0.1826146 0.5581311 0.01035443 0.5581313 0.1826145 0.6162621 0.01035431 0.6162623 0.1826145 0.6743933 0.01035437 0.6743933 0.5132347 0.4817104 0.5889549 0.5296282 0.005740851 0.8316486 0.005740911 0.9145609 0.005740911 1 0.005740851 0.08543923 0.005740851 0.1683514 0.005740911 0.2512637 0.005740911 0.3341758 0.005740792 0.4170878 0.005740851 0.5 0.005740851 0.5829121 0.005740911 0.6658245 0.00574097 0.7487366 0.9904932 0.8316486 0.9904931 0.9145609 0.9904932 1 0.9904931 0.08543923 0.9904931 0.1683514 0.9904931 0.2512637 0.9904932 0.3341758 0.9904932 0.4170881 0.9904931 0.5 0.9904931 0.5829121 0.9904932 0.6658245 0.9904932 0.7487366 0.1649707 0.7325244 0.1649707 0.7906556 0.1649708 0.8487864 0.1649708 0.2093445 0.1649708 0.2674754 0.1649708 0.3256068 0.1649708 0.3837379 0.1649708 0.4418691 0.1649708 0.5 0.1649707 0.5581311 0.1649708 0.6162623 0.1649708 0.6743933 0.239639 0.7325246 0.2396389 0.7906556 0.239639 0.8487864 0.2396391 0.2093445 0.239639 0.2674754 0.239639 0.3256066 0.239639 0.3837378 0.239639 0.4418691 0.239639 0.5 0.239639 0.5581311 0.2396389 0.6162623 0.239639 0.6743933 0.2023351 0.7325246 0.2023349 0.7906556 0.202335 0.8487864 0.2023351 0.2093445 0.202335 0.2674756 0.202335 0.3256066 0.202335 0.3837378 0.202335 0.4418691 0.2023351 0.5 0.202335 0.5581311 0.202335 0.6162623 0.202335 0.6743933 0.2049887 0.7325244 0.2049888 0.7906556 0.2049886 0.8487864 0.2049887 0.2093445 0.2049887 0.2674756 0.2049887 0.3256066 0.2049887 0.3837378 0.2049887 0.4418689 0.2049887 0.5 0.2049887 0.5581311 0.2049887 0.6162621 0.2049887 0.6743933 0.389177 0.7325244 0.389177 0.7906556 0.3891769 0.8487864 0.389177 0.2093445 0.389177 0.2674756 0.389177 0.3256066 0.389177 0.3837378 0.3891769 0.4418688 0.389177 0.5 0.389177 0.5581311 0.389177 0.6162621 0.3891769 0.6743933 0.194537 0.7325246 0.1945369 0.7906556 0.1945369 0.8487864 0.1945369 0.2093445 0.1945369 0.2674755 0.1945369 0.3256066 0.1945369 0.3837378 0.194537 0.4418689 0.1945369 0.5 0.1945369 0.5581311 0.1945369 0.6162623 0.1945369 0.6743933 0.3026465 0.7325245 0.3026465 0.7906554 0.3026465 0.8487865 0.3026465 0.2093445 0.3026465 0.2674755 0.3026465 0.3256066 0.3026465 0.3837378 0.3026465 0.4418689 0.3026466 0.5 0.3026466 0.5581311 0.3026465 0.6162622 0.3026465 0.6743933 0.470293 0.9251373 0.4572281 0.9120724 0.4560828 0.9140561 0.4683093 0.9262826 0.4750752 0.9429844 0.4727846 0.9429844 0.470293 0.9608315 0.4683093 0.9596862 0.4572281 0.9738964 0.4560828 0.9719127 0.4393811 0.9786785 0.4393811 0.9763879 0.2683792 0.7325244 0.2683792 0.7906556 0.2683792 0.8487867 0.2683792 0.2093445 0.2683792 0.2674756 0.2683792 0.3256066 0.2683792 0.3837378 0.2683792 0.4418688 0.2683792 0.5 0.2683793 0.5581311 0.2683792 0.6162623 0.2683792 0.6743933 0.2446178 0.7325244 0.2446178 0.7906556 0.2446177 0.8487865 0.2446178 0.2093445 0.2446178 0.2674756 0.2446178 0.3256066 0.2446178 0.3837378 0.2446178 0.4418688 0.2446178 0.5 0.2446178 0.5581311 0.2446178 0.6162622 0.2446178 0.6743933 0.2830875 0.7325244 0.2830876 0.7906556 0.2830874 0.8487865 0.2830875 0.2093445 0.2830875 0.2674756 0.2830875 0.3256066 0.2830875 0.3837378 0.2830875 0.4418688 0.2830875 0.5 0.2830875 0.5581311 0.2830875 0.6162622 0.2830875 0.6743933 0.529242 0.4831171 0.5168829 0.470758 0.5184512 0.4680415 0.5319585 0.4815487 0.5337658 0.4999999 0.5369024 0.4999999 0.529242 0.5168828 0.5319585 0.5184512 0.5168829 0.5292419 0.5184512 0.5319583 0.5 0.5337657 0.5 0.5369024 0.4831172 0.5292419 0.4815488 0.5319583 0.4707581 0.5168828 0.4680416 0.5184512 0.4662343 0.4999999 0.4630976 0.4999999 0.4707581 0.4831171 0.4680416 0.4815487 0.4831172 0.470758 0.4815488 0.4680415 0.5 0.4662343 0.5 0.4630975 0.2928931 0.7325244 0.2928931 0.7906554 0.292893 0.8487865 0.2928931 0.2093445 0.292893 0.2674755 0.2928931 0.3256066 0.2928931 0.3837378 0.2928931 0.4418689 0.2928931 0.5 0.2928931 0.5581311 0.2928931 0.6162622 0.2928931 0.6743933 0.4518329 0.5615988 0.4353704 0.5451363 0.4309942 0.5527163 0.444253 0.565975 0.4578586 0.5840869 0.449106 0.5840869 0.4518329 0.606575 0.444253 0.6021987 0.4353704 0.6230375 0.4309942 0.6154575 0.4128823 0.6290631 0.4128823 0.6203105 0.174015 0.7325244 0.174015 0.7906556 0.1740151 0.8487865 0.1740149 0.2093445 0.1740149 0.2674755 0.1740149 0.3256066 0.1740149 0.3837378 0.1740149 0.4418688 0.174015 0.5 0.1740151 0.5581311 0.174015 0.6162621 0.174015 0.6743933 0.6302381 0.5526207 0.6302381 0.5771419 0.6302381 0.6016632 0.6302381 0.3319297 0.6302381 0.3564509 0.6302381 0.3809721 0.6302381 0.4054933 0.6302381 0.4300146 0.6302381 0.4545358 0.6302381 0.479057 0.6302381 0.5035783 0.6302381 0.5280995 0.6403571 0.5526207 0.6403571 0.5771419 0.6403571 0.6016632 0.6403571 0.3319297 0.6403571 0.3564509 0.6403571 0.3809721 0.6403571 0.4054933 0.6403571 0.4300146 0.6403571 0.4545358 0.6403571 0.479057 0.6403571 0.5035783 0.6403571 0.5280995 0.4988088 0.7325244 0.4988087 0.7906556 0.4988088 0.8487867 0.4988088 0.2093445 0.4988088 0.2674756 0.4988088 0.3256067 0.4988088 0.3837378 0.4988088 0.4418688 0.4988088 0.5 0.4988088 0.5581311 0.4988088 0.6162622 0.4988088 0.6743933 0.6992026 0.7325245 0.6992027 0.7906556 0.6992025 0.8487866 0.6992026 0.2093445 0.6992026 0.2674756 0.6992026 0.3256066 0.6992026 0.3837378 0.6992026 0.4418688 0.6992026 0.5 0.6992026 0.5581311 0.6992026 0.6162622 0.6992026 0.6743933 0.3327233 0.7325245 0.3327234 0.7906556 0.3327232 0.8487866 0.3327233 0.2093445 0.3327233 0.2674756 0.3327233 0.3256066 0.3327233 0.3837378 0.3327233 0.4418688 0.3327233 0.5 0.3327233 0.5581311 0.3327233 0.6162622 0.3327233 0.6743933 0.6541745 0.5522203 0.6541745 0.5766295 0.6541745 0.6010386 0.6541745 0.3325388 0.6541745 0.3569478 0.6541745 0.381357 0.6541745 0.4057659 0.6541745 0.430175 0.6541745 0.4545841 0.6541745 0.4789932 0.6541744 0.5034022 0.6541745 0.5278113 0.658391 0.5522203 0.658391 0.5766295 0.658391 0.6010386 0.658391 0.3325388 0.658391 0.3569478 0.658391 0.3813569 0.658391 0.4057659 0.658391 0.430175 0.658391 0.4545841 0.658391 0.4789932 0.6583909 0.5034022 0.658391 0.5278113 0.5070506 0.7325245 0.5070506 0.7906556 0.5070506 0.8487867 0.5070506 0.2093445 0.5070506 0.2674756 0.5070506 0.3256066 0.5070506 0.3837377 0.5070506 0.4418688 0.5070506 0.4999999 0.5070506 0.5581311 0.5070505 0.6162622 0.5070506 0.6743933 0.477071 0.7325244 0.4770716 0.7906556 0.4770722 0.8487867 0.477071 0.2093445 0.477071 0.2674756 0.4770697 0.3256066 0.4770697 0.3837377 0.477071 0.4418688 0.477071 0.5 0.477071 0.5581311 0.477071 0.6162622 0.4770704 0.6743933 0.01035437 0.1512132 0.5076411 0.4761167 0.01035449 0.2093445 0.1826146 0.1512133 0.005740851 0 0.9904931 0 0.1649709 0.1512133 0.239639 0.1512134 0.202335 0.1512134 0.2049887 0.1512133 0.389177 0.1512133 0.194537 0.1512133 0.3026465 0.1512133 0.421534 0.9738964 0.2683792 0.1512133 0.2446178 0.1512133 0.2830875 0.1512133 0.1982882 0.1512133 0.5250732 0.456572 0.5434279 0.4749268 0.3403014 0.1512133 0.3903942 0.6230375 0.3043213 0.1512134 0.6403571 0.3074084 0.5297232 0.5708847 0.6992026 0.1512134 0.6553009 0.4965402 0.719433 0.1512133 0.658391 0.3081297 0.518276 0.4894482 0.801379 0.1512133 0.5367587 0.1512133 0.5367587 0.6743933 0.5367587 0.7325245 0.5367587 0.6162621 0.5367587 0.5581311 0.5367587 0.5 0.5367587 0.4418688 0.5367587 0.3837377 0.5367581 0.3256066 0.5367587 0.2674756 0.5367587 0.2093445 0.5367594 0.8487867 0.5367594 0.7906556 0.5105516 0.4817238 0.5092307 0.4840118 0.5159881 0.4907691 0.5211033 0.4999999 0.5184615 0.4999999 0.518276 0.5105516 0.5159881 0.5092307 0.5105516 0.518276 0.5092307 0.5159881 0.4999999 0.5211033 0.4999999 0.5184615 0.5070505 0.1512133 0.4894482 0.518276 0.6466216 0.4878609 0.6435444 0.4931907 0.649971 0.4996174 0.6584778 0.5083964 0.6523234 0.5083964 0.6553009 0.5202526 0.649971 0.5171754 0.6466216 0.528932 0.6435444 0.5236021 0.6347654 0.5321088 0.6347654 0.5259545 0.3327233 0.1512134 0.6229092 0.528932 0.5171607 0.5583222 0.515976 0.5603741 0.5276712 0.5720694 0.5343214 0.5880455 0.531952 0.5880455 0.5297232 0.6052061 0.5276712 0.6040214 0.5171607 0.6177686 0.515976 0.6157167 0.4999999 0.6223669 0.4999999 0.6199975 0.4988087 0.1512134 0.4828392 0.6177686 0.3043213 0.6743933 0.3043214 0.7325244 0.3043213 0.6162622 0.3043213 0.5581311 0.3043213 0.5 0.3043214 0.4418688 0.3043213 0.3837378 0.3043213 0.3256067 0.3043213 0.2674755 0.3043213 0.2093445 0.3043213 0.8487867 0.6302381 0.3074084 0.3043213 0.7906556 0.3947704 0.6154575 0.3739317 0.606575 0.3815116 0.6021987 0.367906 0.5840869 0.3766586 0.5840869 0.3739317 0.5615988 0.3815116 0.565975 0.3903942 0.5451363 0.3947704 0.5527163 0.4128823 0.5391105 0.4128823 0.5478631 0.174015 0.1512133 0.4154468 0.3777384 0.5501463 0.4999999 0.5434279 0.5250732 0.5250732 0.5434279 0.5 0.5501463 0.4749268 0.5434279 0.4565721 0.5250732 0.4498537 0.4999999 0.4565721 0.4749268 0.4749268 0.456572 0.5 0.4498537 0.435164 0.3674043 0.2928931 0.1512133 0.435164 0.3724551 0.3403014 0.6743933 0.3403014 0.7325244 0.3403014 0.6162621 0.3403014 0.5581311 0.3403014 0.5 0.3403012 0.4418688 0.3403013 0.3837378 0.3403013 0.3256066 0.3403013 0.2674755 0.3403013 0.2093445 0.3403015 0.8487865 0.3966386 0.3896469 0.3403014 0.7906556 0.1982882 0.6743933 0.1982881 0.7325244 0.1982881 0.6162622 0.1982882 0.5581311 0.1982881 0.5 0.1982881 0.4418688 0.1982882 0.3837378 0.1982882 0.3256068 0.1982882 0.2674756 0.1982882 0.2093445 0.1982882 0.8487867 0.4129214 0.3733642 0.1982882 0.7906556 0.5986041 0.5392775 0.5757736 0.5524587 0.602136 0.5524587 0.5986041 0.5656399 0.5889549 0.5752891 0.5757736 0.578821 0.5625926 0.5752891 0.5529432 0.5656399 0.5494114 0.5524587 0.5529432 0.5392775 0.5625926 0.5296282 0.5757736 0.5260964 0.5165199 0.4860964 0.5095378 0.4791143 0.5133992 0.4724259 0.5232083 0.4822349 0.5190755 0.4956341 0.5267985 0.4956341 0.5165199 0.5051719 0.5232083 0.5090334 0.5095378 0.512154 0.5133992 0.5188423 0.5 0.5147097 0.5 0.5224327 0.4904622 0.512154 0.4866008 0.5188423 0.4834802 0.5051719 0.4767919 0.5090334 0.4809245 0.4956341 0.4732015 0.4956341 0.4834802 0.4860964 0.4767919 0.4822349 0.4904622 0.4791143 0.4866008 0.4724259 0.5 0.4765586 0.5 0.4688357 0.5336813 0.5083762 0.5194459 0.4941409 0.5156308 0.5007488 0.5270735 0.5121913 0.5388918 0.5278221 0.5312617 0.5278221 0.5336813 0.547268 0.5270735 0.543453 0.5194459 0.5615034 0.5156308 0.5548955 0.5 0.5667138 0.5 0.5590838 0.4805542 0.5615034 0.4843692 0.5548955 0.4663188 0.547268 0.4729267 0.543453 0.4611083 0.5278221 0.4687384 0.5278221 0.4663188 0.5083762 0.4729267 0.5121913 0.4805542 0.4941409 0.4843692 0.5007488 0.5 0.4889305 0.5 0.4965605 0.5452821 0.4489288 0.5261436 0.4297903 0.5284225 0.4258431 0.5492293 0.4466499 0.5522873 0.4750724 0.5568451 0.4750724 0.5452821 0.5012162 0.5492293 0.503495 0.5261436 0.5203546 0.5284225 0.5243018 0.4999999 0.5273598 0.4999999 0.5319176 0.4738563 0.5203546 0.4715773 0.5243018 0.4547178 0.5012162 0.4507706 0.503495 0.4477126 0.4750724 0.4431548 0.4750724 0.4547178 0.4489288 0.4507706 0.4466499 0.4738563 0.4297903 0.4715773 0.4258431 0.4999999 0.4227851 0.4999999 0.4182273 0.521589 0.4952028 0.5124644 0.4860782 0.5174614 0.4774233 0.530244 0.4902059 0.5249289 0.5076673 0.5349228 0.5076673 0.521589 0.5201318 0.530244 0.5251287 0.5124644 0.5292565 0.5174614 0.5379114 0.4999999 0.5325963 0.4999999 0.5425901 0.4875354 0.5292565 0.4825385 0.5379114 0.4784108 0.5201318 0.4697558 0.5251287 0.475071 0.5076673 0.465077 0.5076673 0.4784108 0.4952028 0.4697558 0.4902059 0.4875354 0.4860782 0.4825385 0.4774233 0.4999999 0.4827383 0.4999999 0.4727445 0.4226793 0.9719127 0.4084691 0.9608315 0.4104528 0.9596862 0.4036869 0.9429844 0.4059775 0.9429844 0.4084691 0.9251373 0.4104528 0.9262826 0.421534 0.9120724 0.4226793 0.9140561 0.4393811 0.9072903 0.4393811 0.9095809 0.4572281 0.9120724 0.470293 0.9251373 0.4750752 0.9429844 0.470293 0.9608315 0.4572281 0.9738964 0.4393811 0.9786785 0.421534 0.9738964 0.4084691 0.9608315 0.4036869 0.9429844 0.4084691 0.9251373 0.421534 0.9120724 0.4393811 0.9072903 0.4693152 0.3921723 0.4548812 0.3777384 0.4574066 0.3733642 0.4736893 0.3896469 0.4745984 0.4118896 0.4796492 0.4118896 0.4693152 0.4316067 0.4736893 0.4341322 0.4548812 0.4460407 0.4574066 0.4504149 0.435164 0.4513239 0.435164 0.4563748 0.4154468 0.4460407 0.4129214 0.4504149 0.4010128 0.4316067 0.3966386 0.4341322 0.3957296 0.4118896 0.3906787 0.4118896 0.4010128 0.3921723 0.4840239 0.6157167 0.4702767 0.6052061 0.4723287 0.6040214 0.4656785 0.5880455 0.4680479 0.5880455 0.4702767 0.5708847 0.4723287 0.5720694 0.4828392 0.5583222 0.4840239 0.5603741 0.4999999 0.5537241 0.4999999 0.5560935 0.6259863 0.5236021 0.6142298 0.5202526 0.6195596 0.5171754 0.611053 0.5083964 0.6172074 0.5083964 0.6142298 0.4965402 0.6195596 0.4996174 0.6229092 0.4878609 0.6259863 0.4931907 0.6347654 0.484684 0.6347654 0.4908384 0.4907691 0.5159881 0.4817239 0.5105516 0.4840118 0.5092307 0.4788966 0.4999999 0.4815384 0.4999999 0.4817239 0.4894482 0.4840118 0.4907691 0.4894482 0.4817238 0.4907691 0.4840118 0.4999999 0.4788966 0.4999999 0.4815384 0.801379 0.6743933 0.8013791 0.7325244 0.8013791 0.6162622 0.8013791 0.5581311 0.8013791 0.5 0.8013791 0.4418688 0.801379 0.3837377 0.801379 0.3256066 0.8013791 0.2674756 0.8013791 0.2093445 0.8013792 0.8487867 0.4770697 0.1512133 0.8013791 0.7906556 0.5 0.4893515 0.5152823 0.4893515 0.5132347 0.4969926 0.5076411 0.5025862 0.5 0.5046337 0.4923589 0.5025862 0.4867652 0.4969926 0.4847178 0.4893515 0.4867652 0.4817104 0.4923589 0.4761167 0.5 0.4740693 0.7194331 0.6743933 0.7194331 0.7325245 0.719433 0.6162621 0.7194331 0.5581311 0.7194331 0.4999999 0.7194331 0.4418688 0.7194331 0.3837377 0.7194331 0.3256068 0.7194331 0.2674756 0.7194331 0.2093445 0.7194331 0.8487867 0.6541744 0.3081297 0.7194331 0.7906556</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#shaft_LShape-map1-array\" count=\"717\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"shaft_LShape-vertices\" name=\"shaft_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#shaft_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"360\">\r\n          <input semantic=\"VERTEX\" source=\"#shaft_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#shaft_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#shaft_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 13 2 2 12 3 3 1 4 1 2 5 4 14 6 5 13 7 2 2 8 352 3 9 6 15 10 351 14 11 349 3 12 6 4 13 7 16 14 8 15 15 351 4 16 7 5 17 9 17 18 10 16 19 8 5 20 9 6 21 11 18 22 12 17 23 10 6 24 11 7 25 13 19 26 14 18 27 12 7 28 13 8 29 15 20 30 16 19 31 14 8 32 15 9 33 17 21 34 18 20 35 16 9 36 17 10 37 19 22 38 20 21 39 18 10 40 19 11 41 21 23 42 22 22 43 20 11 44 21 0 45 0 12 46 3 23 47 22 350 48 23 349 49 350 361 50 693 351 51 694 350 48 23 361 50 693 352 52 695 351 51 694 361 50 693 353 53 696 352 52 695 361 50 693 354 54 697 353 53 696 361 50 693 355 55 698 354 54 697 361 50 693 356 56 699 355 55 698 361 50 693 357 57 700 356 56 699 361 50 693 358 58 701 357 57 700 361 50 693 359 59 702 358 58 701 361 50 693 360 60 703 359 59 702 361 50 693 349 49 350 360 60 703 361 50 693 12 61 24 13 62 497 24 63 498 13 62 497 14 64 499 24 63 498 14 64 499 15 65 500 24 63 498 15 65 500 16 66 501 24 63 498 16 66 501 17 67 502 24 63 498 17 67 502 18 68 503 24 63 498 18 68 503 19 69 504 24 63 498 19 69 504 20 70 505 24 63 498 20 70 505 21 71 506 24 63 498 21 71 506 22 72 507 24 63 498 22 72 507 23 73 508 24 63 498 23 73 508 12 61 24 24 63 498 1 74 509 0 75 510 25 76 511 26 77 512 2 78 513 1 79 509 26 80 512 27 81 514 3 82 515 2 83 513 27 84 514 28 85 516 4 86 517 3 87 515 28 88 516 29 89 518 5 90 519 4 91 517 29 92 518 30 93 520 6 94 521 5 95 519 30 96 520 31 97 522 7 98 523 6 99 521 31 100 522 32 101 524 8 102 525 7 103 523 32 104 524 33 105 526 9 106 527 8 107 525 33 108 526 34 109 528 10 110 529 9 111 527 34 112 528 35 113 530 11 114 531 10 115 529 35 116 530 36 117 532 0 118 510 11 119 531 36 120 532 25 121 511 38 170 533 37 171 534 49 172 535 50 173 536 39 174 537 38 175 533 50 176 536 51 177 538 40 178 539 39 179 537 51 180 538 52 181 540 41 182 541 40 183 539 52 184 540 53 185 542 42 186 543 41 187 541 53 188 542 54 189 544 43 190 545 42 191 543 54 192 544 55 193 546 44 194 547 43 195 545 55 196 546 56 197 548 45 198 549 44 199 547 56 200 548 57 201 550 46 202 551 45 203 549 57 204 550 58 205 552 47 206 553 46 207 551 58 208 552 59 209 554 48 210 555 47 211 553 59 212 554 60 213 556 37 214 534 48 215 555 60 216 556 49 217 535 50 218 50 49 219 49 61 220 61 62 221 62 51 222 51 50 223 50 62 224 62 63 225 63 52 226 52 51 227 355 63 228 356 64 229 64 53 230 53 52 231 52 64 232 64 65 233 65 54 234 54 53 235 53 65 236 65 66 237 66 55 238 55 54 239 54 66 240 66 67 241 67 56 242 56 55 243 55 67 244 67 68 245 68 57 246 57 56 247 56 68 248 68 69 249 69 58 250 58 57 251 57 69 252 69 70 253 70 59 254 59 58 255 58 70 256 70 71 257 71 60 258 60 59 259 59 71 260 71 72 261 72 49 262 49 60 263 60 72 264 72 61 265 61 62 266 557 61 267 558 73 268 559 74 269 560 63 270 561 62 271 557 74 272 560 75 273 562 64 274 563 63 275 561 75 276 562 76 277 564 65 278 565 64 279 563 76 280 564 77 281 566 66 282 567 65 283 565 77 284 566 78 285 568 67 286 569 66 287 567 78 288 568 79 289 570 68 290 571 67 291 569 79 292 570 80 293 572 69 294 573 68 295 571 80 296 572 81 297 574 70 298 575 69 299 573 81 300 574 82 301 576 71 302 577 70 303 575 82 304 576 83 305 578 72 306 579 71 307 577 83 308 578 84 309 580 61 310 558 72 311 579 84 312 580 73 313 559 74 314 74 73 315 73 85 316 85 86 317 86 75 318 75 74 319 74 86 320 86 87 321 87 76 322 76 75 323 357 87 324 358 88 325 88 77 326 77 76 327 76 88 328 88 89 329 89 78 330 78 77 331 77 89 332 89 90 333 90 79 334 79 78 335 78 90 336 90 91 337 91 80 338 80 79 339 79 91 340 91 92 341 92 81 342 81 80 343 80 92 344 92 93 345 93 82 346 82 81 347 81 93 348 93 94 349 94 83 350 83 82 351 82 94 352 94 95 353 95 84 354 84 83 355 83 95 356 95 96 357 96 73 358 73 84 359 84 96 360 96 85 361 85 86 362 581 85 363 582 97 364 583 98 365 584 87 366 585 86 367 581 98 368 584 99 369 586 88 370 587 87 371 585 99 372 586 100 373 588 89 374 589 88 375 587 100 376 588 101 377 590 90 378 591 89 379 589 101 380 590 102 381 592 91 382 593 90 383 591 102 384 592 103 385 594 92 386 595 91 387 593 103 388 594 104 389 596 93 390 597 92 391 595 104 392 596 105 393 598 94 394 599 93 395 597 105 396 598 106 397 600 95 398 601 94 399 599 106 400 600 107 401 602 96 402 603 95 403 601 107 404 602 108 405 604 85 406 582 96 407 603 108 408 604 97 409 583 98 410 98 97 411 97 109 412 109 110 413 110 99 414 99 98 415 98 110 416 110 111 417 111 100 418 100 99 419 359 111 420 360 112 421 112 101 422 101 100 423 100 112 424 112 113 425 113 102 426 102 101 427 101 113 428 113 114 429 114 103 430 103 102 431 102 114 432 114 115 433 115 104 434 104 103 435 103 115 436 115 116 437 116 105 438 105 104 439 104 116 440 116 117 441 117 106 442 106 105 443 105 117 444 117 118 445 118 107 446 107 106 447 106 118 448 118 119 449 119 108 450 108 107 451 107 119 452 119 120 453 120 97 454 97 108 455 108 120 456 120 109 457 109 110 458 110 109 459 109 121 460 121 122 461 122 111 462 111 110 463 110 122 464 122 123 465 123 112 466 112 111 467 360 123 468 361 124 469 124 113 470 113 112 471 112 124 472 124 125 473 125 114 474 114 113 475 113 125 476 125 126 477 126 115 478 115 114 479 114 126 480 126 127 481 127 116 482 116 115 483 115 127 484 127 128 485 128 117 486 117 116 487 116 128 488 128 129 489 129 118 490 118 117 491 117 129 492 129 130 493 130 119 494 119 118 495 118 130 496 130 131 497 131 120 498 120 119 499 119 131 500 131 132 501 132 109 502 109 120 503 120 132 504 132 121 505 121 122 506 133 121 507 134 133 508 135 134 509 136 123 510 137 122 511 133 134 512 136 135 513 138 124 514 139 123 515 137 135 516 138 136 517 140 125 518 141 124 519 139 136 520 140 137 521 142 126 522 143 125 523 141 137 524 142 138 525 144 127 526 362 126 527 143 138 528 144 139 529 605 128 530 606 127 531 362 139 532 605 140 533 607 129 534 608 128 535 606 140 536 607 141 537 609 130 538 610 129 539 608 141 540 609 142 541 611 131 542 612 130 543 610 142 544 611 143 545 613 132 546 614 131 547 612 143 548 613 144 549 615 121 550 134 132 551 614 144 552 615 133 553 135 134 554 136 133 555 135 145 556 616 146 557 617 135 558 138 134 559 136 146 560 617 147 561 618 136 562 140 135 563 138 147 564 618 148 565 619 137 566 142 136 567 140 148 568 619 149 569 620 138 570 144 137 571 142 149 572 620 150 573 621 139 574 605 138 575 144 150 576 621 151 577 622 140 578 607 139 579 605 151 580 622 152 581 623 141 582 609 140 583 607 152 584 623 153 585 624 142 586 611 141 587 609 153 588 624 154 589 625 143 590 613 142 591 611 154 592 625 155 593 626 144 594 615 143 595 613 155 596 626 156 597 627 133 598 135 144 599 615 156 600 627 145 601 616 146 602 146 145 603 145 157 604 157 158 605 158 147 606 147 146 607 146 158 608 158 159 609 159 148 610 148 147 611 363 159 612 364 160 613 160 149 614 149 148 615 148 160 616 160 161 617 161 150 618 150 149 619 149 161 620 161 162 621 162 151 622 151 150 623 150 162 624 162 163 625 163 152 626 152 151 627 151 163 628 163 164 629 164 153 630 153 152 631 152 164 632 164 165 633 165 154 634 154 153 635 153 165 636 165 166 637 166 155 638 155 154 639 154 166 640 166 167 641 167 156 642 156 155 643 155 167 644 167 168 645 168 145 646 145 156 647 156 168 648 168 157 649 157 158 650 628 157 651 629 169 652 630 170 653 631 159 654 632 158 655 628 170 656 631 171 657 633 160 658 634 159 659 632 171 660 633 172 661 635 161 662 636 160 663 634 172 664 635 173 665 637 162 666 638 161 667 636 173 668 637 174 669 639 163 670 640 162 671 638 174 672 639 175 673 641 164 674 642 163 675 640 175 676 641 176 677 643 165 678 644 164 679 642 176 680 643 177 681 645 166 682 646 165 683 644 177 684 645 178 685 482 167 686 457 166 687 646 178 688 482 179 689 495 168 690 470 167 691 457 179 692 495 180 693 468 157 694 629 168 695 470 180 696 468 169 697 630 170 698 170 169 699 169 181 700 485 182 701 496 171 702 171 170 703 170 182 704 496 183 705 494 172 706 172 171 707 365 183 708 366 184 709 493 173 710 173 172 711 172 184 712 493 185 713 492 174 714 174 173 715 173 185 716 492 186 717 491 175 718 175 174 719 174 186 720 491 187 721 490 176 722 176 175 723 175 187 724 490 188 725 489 177 726 177 176 727 176 188 728 489 189 729 488 178 730 178 177 731 177 189 732 488 190 733 487 179 734 179 178 735 178 190 736 487 191 737 486 180 738 180 179 739 179 191 740 486 192 741 484 169 742 169 180 743 180 192 744 484 181 745 485 182 746 181 181 747 182 193 748 183 194 749 184 183 750 185 182 751 181 194 752 184 195 753 186 184 754 187 183 755 185 195 756 186 196 757 188 185 758 189 184 759 187 196 760 188 197 761 190 186 762 191 185 763 189 197 764 190 198 765 192 187 766 193 186 767 191 198 768 192 199 769 194 188 770 195 187 771 193 199 772 194 200 773 196 189 774 197 188 775 195 200 776 196 201 777 198 190 778 199 189 779 197 201 780 198 202 781 200 191 782 201 190 783 199 202 784 200 203 785 202 192 786 203 191 787 201 203 788 202 204 789 204 181 790 182 192 791 203 204 792 204 193 793 183 194 794 184 193 795 183 205 796 367 206 797 368 195 798 186 194 799 184 206 800 368 207 801 458 196 802 188 195 803 186 207 804 458 208 805 459 197 806 190 196 807 188 208 808 459 209 809 460 198 810 192 197 811 190 209 812 460 210 813 461 199 814 194 198 815 192 210 816 461 211 817 462 200 818 196 199 819 194 211 820 462 212 821 463 201 822 198 200 823 196 212 824 463 213 825 464 202 826 200 201 827 198 213 828 464 214 829 465 203 830 202 202 831 200 214 832 465 215 833 466 204 834 204 203 835 202 215 836 466 216 837 467 193 838 183 204 839 204 216 840 467 205 841 367 206 842 206 205 843 205 217 844 472 218 845 483 207 846 207 206 847 206 218 848 483 219 849 481 208 850 208 207 851 469 219 852 369 220 853 480 209 854 209 208 855 208 220 856 480 221 857 479 210 858 210 209 859 209 221 860 479 222 861 478 211 862 211 210 863 210 222 864 478 223 865 477 212 866 212 211 867 211 223 868 477 224 869 476 213 870 213 212 871 212 224 872 476 225 873 475 214 874 214 213 875 213 225 876 475 226 877 474 215 878 215 214 879 214 226 880 474 227 881 473 216 882 216 215 883 215 227 884 473 228 885 471 205 886 205 216 887 216 228 888 471 217 889 472 218 890 217 217 891 218 229 892 219 230 893 220 219 894 221 218 895 217 230 896 220 231 897 222 220 898 223 219 899 221 231 900 222 232 901 224 221 902 225 220 903 223 232 904 224 233 905 226 222 906 227 221 907 225 233 908 226 234 909 228 223 910 370 222 911 227 234 912 228 235 913 445 224 914 446 223 915 370 235 916 445 236 917 447 225 918 448 224 919 446 236 920 447 237 921 449 226 922 450 225 923 448 237 924 449 238 925 451 227 926 452 226 927 450 238 928 451 239 929 453 228 930 454 227 931 452 239 932 453 240 933 455 217 934 218 228 935 454 240 936 455 229 937 219 230 938 230 229 939 229 241 940 433 242 941 444 231 942 231 230 943 230 242 944 444 243 945 442 232 946 232 231 947 456 243 948 371 244 949 441 233 950 233 232 951 232 244 952 441 245 953 440 234 954 234 233 955 233 245 956 440 246 957 439 235 958 235 234 959 234 246 960 439 247 961 438 236 962 236 235 963 235 247 964 438 248 965 437 237 966 237 236 967 236 248 968 437 249 969 436 238 970 238 237 971 237 249 972 436 250 973 435 239 974 239 238 975 238 250 976 435 251 977 434 240 978 240 239 979 239 251 980 434 252 981 432 229 982 229 240 983 240 252 984 432 241 985 433 242 986 242 241 987 241 253 988 253 254 989 254 243 990 243 242 991 242 254 992 254 255 993 255 244 994 244 243 995 443 255 996 372 256 997 256 245 998 245 244 999 244 256 1000 256 257 1001 257 246 1002 246 245 1003 245 257 1004 257 258 1005 258 247 1006 247 246 1007 246 258 1008 258 259 1009 259 248 1010 248 247 1011 247 259 1012 259 260 1013 260 249 1014 249 248 1015 248 260 1016 260 261 1017 261 250 1018 250 249 1019 249 261 1020 261 262 1021 262 251 1022 251 250 1023 250 262 1024 262 263 1025 263 252 1026 252 251 1027 251 263 1028 263 264 1029 264 241 1030 241 252 1031 252 264 1032 264 253 1033 253 254 1034 373 253 1035 419 265 1036 420 266 1037 421 255 1038 422 254 1039 373 266 1040 421 267 1041 423 256 1042 424 255 1043 422 267 1044 423 268 1045 425 257 1046 426 256 1047 424 268 1048 425 269 1049 427 258 1050 428 257 1051 426 269 1052 427 270 1053 429 259 1054 431 258 1055 428 270 1056 429 271 1057 647 260 1058 648 259 1059 431 271 1060 647 272 1061 649 261 1062 650 260 1063 648 272 1064 649 273 1065 651 262 1066 652 261 1067 650 273 1068 651 274 1069 653 263 1070 654 262 1071 652 274 1072 653 275 1073 655 264 1074 656 263 1075 654 275 1076 655 276 1077 657 253 1078 419 264 1079 656 276 1080 657 265 1081 420 266 1082 266 265 1083 265 277 1084 277 278 1085 278 267 1086 267 266 1087 266 278 1088 278 279 1089 279 268 1090 268 267 1091 430 279 1092 374 280 1093 280 269 1094 269 268 1095 268 280 1096 280 281 1097 281 270 1098 270 269 1099 269 281 1100 281 282 1101 282 271 1102 271 270 1103 270 282 1104 282 283 1105 283 272 1106 272 271 1107 271 283 1108 283 284 1109 284 273 1110 273 272 1111 272 284 1112 284 285 1113 285 274 1114 274 273 1115 273 285 1116 285 286 1117 286 275 1118 275 274 1119 274 286 1120 286 287 1121 287 276 1122 276 275 1123 275 287 1124 287 288 1125 288 265 1126 265 276 1127 276 288 1128 288 277 1129 277 278 1130 375 277 1131 406 289 1132 407 290 1133 408 279 1134 409 278 1135 375 290 1136 408 291 1137 410 280 1138 411 279 1139 409 291 1140 410 292 1141 412 281 1142 413 280 1143 411 292 1144 412 293 1145 414 282 1146 415 281 1147 413 293 1148 414 294 1149 416 283 1150 418 282 1151 415 294 1152 416 295 1153 658 284 1154 659 283 1155 418 295 1156 658 296 1157 660 285 1158 661 284 1159 659 296 1160 660 297 1161 662 286 1162 663 285 1163 661 297 1164 662 298 1165 664 287 1166 665 286 1167 663 298 1168 664 299 1169 666 288 1170 667 287 1171 665 299 1172 666 300 1173 668 277 1174 406 288 1175 667 300 1176 668 289 1177 407 290 1178 290 289 1179 289 301 1180 705 302 1181 716 291 1182 291 290 1183 290 302 1184 716 303 1185 714 292 1186 292 291 1187 417 303 1188 376 304 1189 713 293 1190 293 292 1191 292 304 1192 713 305 1193 712 294 1194 294 293 1195 293 305 1196 712 306 1197 711 295 1198 295 294 1199 294 306 1200 711 307 1201 710 296 1202 296 295 1203 295 307 1204 710 308 1205 709 297 1206 297 296 1207 296 308 1208 709 309 1209 708 298 1210 298 297 1211 297 309 1212 708 310 1213 707 299 1214 299 298 1215 298 310 1216 707 311 1217 706 300 1218 300 299 1219 299 311 1220 706 312 1221 704 289 1222 289 300 1223 300 312 1224 704 301 1225 705 302 1226 302 301 1227 301 313 1228 313 314 1229 314 303 1230 303 302 1231 302 314 1232 314 315 1233 315 304 1234 304 303 1235 715 315 1236 377 316 1237 316 305 1238 305 304 1239 304 316 1240 316 317 1241 317 306 1242 306 305 1243 305 317 1244 317 318 1245 318 307 1246 307 306 1247 306 318 1248 318 319 1249 319 308 1250 308 307 1251 307 319 1252 319 320 1253 320 309 1254 309 308 1255 308 320 1256 320 321 1257 321 310 1258 310 309 1259 309 321 1260 321 322 1261 322 311 1262 311 310 1263 310 322 1264 322 323 1265 323 312 1266 312 311 1267 311 323 1268 323 324 1269 324 301 1270 301 312 1271 312 324 1272 324 313 1273 313 314 1274 378 313 1275 393 325 1276 394 326 1277 395 315 1278 396 314 1279 378 326 1280 395 327 1281 397 316 1282 398 315 1283 396 327 1284 397 328 1285 399 317 1286 400 316 1287 398 328 1288 399 329 1289 401 318 1290 402 317 1291 400 329 1292 401 330 1293 403 319 1294 405 318 1295 402 330 1296 403 331 1297 669 320 1298 670 319 1299 405 331 1300 669 332 1301 671 321 1302 672 320 1303 670 332 1304 671 333 1305 673 322 1306 674 321 1307 672 333 1308 673 334 1309 675 323 1310 676 322 1311 674 334 1312 675 335 1313 677 324 1314 678 323 1315 676 335 1316 677 336 1317 679 313 1318 393 324 1319 678 336 1320 679 325 1321 394 326 1322 326 325 1323 325 337 1324 681 338 1325 692 327 1326 327 326 1327 326 338 1328 692 339 1329 690 328 1330 328 327 1331 404 339 1332 379 340 1333 689 329 1334 329 328 1335 328 340 1336 689 341 1337 688 330 1338 330 329 1339 329 341 1340 688 342 1341 687 331 1342 331 330 1343 330 342 1344 687 343 1345 686 332 1346 332 331 1347 331 343 1348 686 344 1349 685 333 1350 333 332 1351 332 344 1352 685 345 1353 684 334 1354 334 333 1355 333 345 1356 684 346 1357 683 335 1358 335 334 1359 334 346 1360 683 347 1361 682 336 1362 336 335 1363 335 347 1364 682 348 1365 680 325 1366 325 336 1367 336 348 1368 680 337 1369 681 338 1370 338 337 1371 337 349 1372 382 350 1373 392 339 1374 339 338 1375 338 350 1376 392 351 1377 391 340 1378 340 339 1379 691 351 1380 380 352 1381 390 341 1382 341 340 1383 340 352 1384 390 353 1385 389 342 1386 342 341 1387 341 353 1388 389 354 1389 388 343 1390 343 342 1391 342 354 1392 388 355 1393 387 344 1394 344 343 1395 343 355 1396 387 356 1397 386 345 1398 345 344 1399 344 356 1400 386 357 1401 385 346 1402 346 345 1403 345 357 1404 385 358 1405 384 347 1406 347 346 1407 346 358 1408 384 359 1409 383 348 1410 348 347 1411 347 359 1412 383 360 1413 381 337 1414 337 348 1415 348 360 1416 381 349 1417 382</p>\r\n        </polylist>\r\n        <polylist material=\"lambert3SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#shaft_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#shaft_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#shaft_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>26 122 26 25 123 25 37 124 37 38 125 38 27 126 27 26 127 26 38 128 38 39 129 39 28 130 28 27 131 353 39 132 354 40 133 40 29 134 29 28 135 28 40 136 40 41 137 41 30 138 30 29 139 29 41 140 41 42 141 42 31 142 31 30 143 30 42 144 42 43 145 43 32 146 32 31 147 31 43 148 43 44 149 44 33 150 33 32 151 32 44 152 44 45 153 45 34 154 34 33 155 33 45 156 45 46 157 46 35 158 35 34 159 34 46 160 46 47 161 47 36 162 36 35 163 35 47 164 47 48 165 48 25 166 25 36 167 36 48 168 48 37 169 37</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>shaft_LShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"front_bearings2_LShape\" name=\"front_bearings2_LShape\">\r\n      <mesh>\r\n        <source id=\"front_bearings2_LShape-positions\" name=\"front_bearings2_LShape-positions\">\r\n          <float_array id=\"front_bearings2_LShape-positions-array\" count=\"324\">-0.2508888 -3.238935 -1.87 -0.2508888 -1.87 -3.238935 -0.2508888 0 -3.74 -0.2508888 1.87 -3.238935 -0.2508888 3.238935 -1.87 -0.2508888 3.74 0 -0.2508888 3.238935 1.87 -0.2508888 1.87 3.238935 -0.2508888 0 3.74 -0.2508888 -1.87 3.238935 -0.2508888 -3.238935 1.87 -0.2508888 -3.74 0 0.1518755 -3.238935 -1.87 0.1518755 -1.87 -3.238935 0.1518755 0 -3.74 0.1518755 1.87 -3.238935 0.1518755 3.238935 -1.87 0.1518755 3.74 0 0.1518755 3.238935 1.87 0.1518755 1.87 3.238935 0.1518755 0 3.74 0.1518755 -1.87 3.238935 0.1518755 -3.238935 1.87 0.1518755 -3.74 0 -0.2508888 -3.312211 -1.912306 -0.2508888 -1.912306 -3.312211 -0.2508888 0 -3.824612 -0.2508888 1.912306 -3.312211 -0.2508888 3.312211 -1.912306 -0.2508888 3.824612 0 -0.2508888 3.312211 1.912306 -0.2508888 1.912306 3.312211 -0.2508888 0 3.824612 -0.2508888 -1.912306 3.312211 -0.2508888 -3.312211 1.912306 -0.2508888 -3.824612 0 -0.3499022 -3.312211 -1.912306 -0.3499022 -1.912306 -3.312211 -0.3499022 0 -3.824612 -0.3499022 1.912306 -3.312211 -0.3499022 3.312211 -1.912306 -0.3499022 3.824612 0 -0.3499022 3.312211 1.912306 -0.3499022 1.912306 3.312211 -0.3499022 0 3.824612 -0.3499022 -1.912306 3.312211 -0.3499022 -3.312211 1.912306 -0.3499022 -3.824612 0 -0.3499022 -3.477082 -2.007494 -0.3499022 -2.007494 -3.477082 -0.3499022 0 -4.014989 -0.3499022 2.007494 -3.477082 -0.3499022 3.477082 -2.007494 -0.3499022 4.014989 0 -0.3499022 3.477082 2.007494 -0.3499022 2.007494 3.477082 -0.3499022 0 4.014989 -0.3499022 -2.007494 3.477082 -0.3499022 -3.477082 2.007494 -0.3499022 -4.014989 0 -2.602457 -3.477082 -2.007494 -2.602457 -2.007494 -3.477082 -2.602457 0 -4.014989 -2.602457 2.007494 -3.477082 -2.602457 3.477082 -2.007494 -2.602457 4.014989 0 -2.602457 3.477082 2.007494 -2.602457 2.007494 3.477082 -2.602457 0 4.014989 -2.602457 -2.007494 3.477082 -2.602457 -3.477082 2.007494 -2.602457 -4.014989 0 -2.726224 -3.348849 -1.933459 -2.726224 -1.933459 -3.348849 -2.726224 0 -3.866918 -2.726224 1.933459 -3.348849 -2.726224 3.348849 -1.933459 -2.726224 3.866918 0 -2.726224 3.348849 1.933459 -2.726224 1.933459 3.348849 -2.726224 0 3.866918 -2.726224 -1.933459 3.348849 -2.726224 -3.348849 1.933459 -2.726224 -3.866918 0 0.1518755 0 2.780591 0.1518755 1.390749 2.408847 0.1518755 2.418909 1.396558 0.1518755 2.783183 0 0.1518755 2.412726 -1.392988 0.1518755 1.393359 -2.413368 0.1518755 0 -2.787652 0.1518755 -1.393054 -2.412839 0.1518755 -2.411243 -1.392132 0.1518755 -2.78506 0 0.1518755 -2.413967 1.393705 0.1518755 -1.391218 2.40966 -2.726224 0 2.780591 -2.726224 -1.391218 2.40966 -2.726224 -2.413967 1.393705 -2.726224 -2.78506 0 -2.726224 -2.411243 -1.392132 -2.726224 -1.393054 -2.412839 -2.726224 0 -2.787652 -2.726224 1.393359 -2.413368 -2.726224 2.412726 -1.392988 -2.726224 2.783183 0 -2.726224 2.418909 1.396558 -2.726224 1.390749 2.408847</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings2_LShape-positions-array\" count=\"108\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_bearings2_LShape-normals\" name=\"front_bearings2_LShape-normals\">\r\n          <float_array id=\"front_bearings2_LShape-normals-array\" count=\"1152\">0 -0.7071069 -0.7071068 0 -0.7071069 -0.7071068 0 -0.7071069 -0.7071068 0 -0.7071069 -0.7071068 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.7071069 -0.7071068 0 0.7071069 -0.7071068 0 0.7071069 -0.7071068 0 0.7071069 -0.7071068 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.7071069 0.7071068 0 0.7071069 0.7071068 0 0.7071069 0.7071068 0 0.7071069 0.7071068 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.7071069 0.7071068 0 -0.7071069 0.7071068 0 -0.7071069 0.7071068 0 -0.7071069 0.7071068 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 -0.7561818 -0.4627032 -0.4627037 -0.7561818 -0.4627032 -0.4627037 -0.7561818 -0.4627032 -0.4627037 -0.7561818 -0.4627032 -0.4627037 -0.7561819 -0.1693612 -0.6320646 -0.7561819 -0.1693612 -0.6320646 -0.7561819 -0.1693612 -0.6320646 -0.7561819 -0.1693612 -0.6320646 -0.7561819 0.1693611 -0.6320646 -0.7561819 0.1693611 -0.6320646 -0.7561819 0.1693611 -0.6320646 -0.7561819 0.1693611 -0.6320646 -0.7561818 0.4627032 -0.4627037 -0.7561818 0.4627032 -0.4627037 -0.7561818 0.4627032 -0.4627037 -0.7561818 0.4627032 -0.4627037 -0.7561819 0.6320646 -0.1693612 -0.7561819 0.6320646 -0.1693612 -0.7561819 0.6320646 -0.1693612 -0.7561819 0.6320646 -0.1693612 -0.756182 0.6320645 0.1693613 -0.756182 0.6320645 0.1693613 -0.756182 0.6320645 0.1693613 -0.756182 0.6320645 0.1693613 -0.7561818 0.4627032 0.4627037 -0.7561818 0.4627032 0.4627037 -0.7561818 0.4627032 0.4627037 -0.7561818 0.4627032 0.4627037 -0.7561819 0.1693612 0.6320646 -0.7561819 0.1693612 0.6320646 -0.7561819 0.1693612 0.6320646 -0.7561819 0.1693612 0.6320646 -0.7561819 -0.1693611 0.6320646 -0.7561819 -0.1693611 0.6320646 -0.7561819 -0.1693611 0.6320646 -0.7561819 -0.1693611 0.6320646 -0.7561818 -0.4627032 0.4627037 -0.7561818 -0.4627032 0.4627037 -0.7561818 -0.4627032 0.4627037 -0.7561818 -0.4627032 0.4627037 -0.7561819 -0.6320646 0.1693612 -0.7561819 -0.6320646 0.1693612 -0.7561819 -0.6320646 0.1693612 -0.7561819 -0.6320646 0.1693612 -0.756182 -0.6320645 -0.1693613 -0.756182 -0.6320645 -0.1693613 -0.756182 -0.6320645 -0.1693613 -0.756182 -0.6320645 -0.1693613 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 0.2598182 0.9656577 0 0.2598182 0.9656577 0 0.2598182 0.9656577 0 0.2598182 0.9656577 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.966332 -0.2572988 0 0.966332 -0.2572988 0 0.966332 -0.2572988 0 0.966332 -0.2572988 0 0.7047462 -0.7094595 0 0.7047462 -0.7094595 0 0.7047462 -0.7094595 0 0.7047462 -0.7094595 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings2_LShape-normals-array\" count=\"384\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_bearings2_LShape-map1\" name=\"front_bearings2_LShape-map1\">\r\n          <float_array id=\"front_bearings2_LShape-map1-array\" count=\"426\">0.8728809 0.5608082 0.8682202 0.5561476 0.8745868 0.5671748 0.8728809 0.5735415 0.8682202 0.5782021 0.8618536 0.579908 0.855487 0.5782021 0.8508263 0.5735415 0.8491204 0.5671748 0.8508263 0.5608082 0.855487 0.5561476 0.6579289 0.2188027 0.657929 0.1485035 0.6854293 0.1485035 0.6854293 0.2188028 0.6579289 0.0782041 0.6854292 0.07820415 0.6579289 0.8514967 0.6579289 0.7811973 0.6854292 0.7811972 0.6579289 0.710898 0.6854292 0.7108979 0.6579289 0.6405987 0.6854293 0.6405987 0.6579289 0.5702993 0.6854293 0.5702993 0.6579289 0.5 0.6854292 0.5 0.6579289 0.4297008 0.6854292 0.4297007 0.6579288 0.3594013 0.6854291 0.3594013 0.6579289 0.289102 0.6854293 0.2891021 0.657929 0.1485035 0.6579289 0.2188027 0.8618536 0.5544416 0.8697658 0.5171295 0.8783544 0.5257182 0.8814981 0.5374504 0.8783544 0.5491828 0.8697658 0.5577713 0.8580335 0.5609149 0.8463013 0.5577713 0.8377126 0.5491828 0.834569 0.5374504 0.8377126 0.5257182 0.8463013 0.5171295 0.8580335 0.513986 0.6511683 0.2188026 0.6511684 0.1485035 0.6579289 0.0782041 0.6511683 0.07820427 0.6579289 0.8514967 0.6511684 0.8514967 0.6579289 0.7811973 0.6511684 0.7811973 0.6579289 0.710898 0.6511683 0.7108979 0.6579289 0.6405987 0.6511684 0.6405987 0.6579289 0.5702993 0.6511684 0.5702993 0.6579289 0.5 0.6511683 0.5 0.6579289 0.4297008 0.6511683 0.4297007 0.6579288 0.3594013 0.6511683 0.3594014 0.6579289 0.289102 0.6511684 0.2891021 0.6511684 0.1485035 0.6511683 0.2188026 0.4973663 0.2188027 0.4973663 0.1485035 0.6511683 0.07820427 0.4973663 0.0782041 0.6511684 0.8514967 0.4973663 0.8514967 0.6511684 0.7811973 0.4973662 0.7811973 0.6511683 0.7108979 0.4973663 0.7108979 0.6511684 0.6405987 0.4973662 0.6405987 0.6511684 0.5702993 0.4973663 0.5702994 0.6511683 0.5 0.4973663 0.5 0.6511683 0.4297007 0.4973663 0.4297007 0.6511683 0.3594014 0.4973663 0.3594013 0.6511684 0.2891021 0.4973663 0.2891021 0.2016377 0.2188028 0.2016377 0.1485034 0.2016377 0.07820415 0.2016377 0.8514967 0.2016378 0.7811973 0.2016377 0.710898 0.2016377 0.6405987 0.2016377 0.5702993 0.2016377 0.5 0.2016377 0.4297007 0.2016377 0.3594013 0.2016377 0.2891021 0.9120053 0.5222858 0.9120053 0.5231671 0.827477 0.5333264 0.8212466 0.527096 0.8214392 0.5267625 0.8278106 0.5331339 0.8297576 0.5418373 0.8301427 0.5418373 0.827477 0.5503482 0.8278106 0.5505408 0.8212466 0.5565787 0.8214392 0.5569122 0.8127357 0.5588592 0.8127357 0.5592443 0.8042248 0.5565787 0.8040322 0.5569122 0.7979944 0.5503482 0.7976608 0.5505408 0.7957138 0.5418373 0.7953287 0.5418373 0.7979944 0.5333264 0.7976608 0.5331339 0.8042248 0.527096 0.8040322 0.5267625 0.8127357 0.5248154 0.8127357 0.5244304 0.9273396 0.5320203 0.9208586 0.5255393 0.9212993 0.524776 0.9281028 0.5315796 0.9297118 0.5408735 0.930593 0.5408735 0.9273396 0.5497267 0.9281028 0.5501674 0.9208586 0.5562077 0.9212993 0.556971 0.9120053 0.5585799 0.9120053 0.5594613 0.9031522 0.5562077 0.9027115 0.556971 0.8966712 0.5497267 0.8959079 0.5501674 0.8942989 0.5408735 0.8934176 0.5408735 0.8966712 0.5320203 0.8959079 0.5315796 0.9031522 0.5255393 0.9027115 0.524776 0.6579289 0.9217958 0.6854293 0.8514967 0.6854292 0.9217958 0.6579289 0.9217958 0.6511684 0.9217958 0.6511684 0.9217958 0.4973662 0.9217958 0.2016376 0.9217958 0.8405883 0.5374504 0.8429206 0.546176 0.8492716 0.5526265 0.8580335 0.5549119 0.8667731 0.5525877 0.8731749 0.5461923 0.8755231 0.5374504 0.8731716 0.5287106 0.8667677 0.5223224 0.8580335 0.5199772 0.8492895 0.5223054 0.8429155 0.528722 0.8562516 0.5671748 0.8565179 0.5640942 0.8584476 0.5612754 0.8618536 0.5609524 0.8659478 0.5600834 0.8672163 0.5640787 0.8677572 0.5671748 0.8677806 0.5705968 0.8645437 0.5718343 0.8618536 0.5722837 0.8587529 0.5725453 0.8571286 0.5699028 0.4282282 0.5000921 0.4282282 0.5704643 0.7385792 0.5704643 0.7385792 0.5000921 0.4282282 0.4297071 0.7385792 0.4297071 0.4282282 0.3592896 0.7385792 0.3592896 0.4282282 0.2888258 0.7385792 0.2888258 0.4282282 0.2183164 0.7385792 0.2183164 0.7385792 0.1477737 0.4282282 0.9227813 0.7385792 0.9227813 0.4282282 0.8522385 0.7385793 0.8522385 0.4282283 0.7817297 0.7385793 0.7817297 0.4282283 0.7112665 0.7385793 0.7112665 0.4282282 0.6408486 0.7385792 0.6408486 0.4282282 0.07721862 0.4282282 0.1477737 0.7385792 0.07721862</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings2_LShape-map1-array\" count=\"213\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"front_bearings2_LShape-vertices\" name=\"front_bearings2_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#front_bearings2_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"108\">\r\n          <input semantic=\"VERTEX\" source=\"#front_bearings2_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#front_bearings2_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#front_bearings2_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 11 1 1 12 13 2 13 12 3 14 1 4 12 2 5 15 14 6 16 13 7 13 2 8 155 3 9 17 15 10 156 14 11 157 3 12 17 4 13 18 16 14 19 15 15 156 4 16 18 5 17 20 17 18 21 16 19 19 5 20 20 6 21 22 18 22 23 17 23 21 6 24 22 7 25 24 19 26 25 18 27 23 7 28 24 8 29 26 20 30 27 19 31 25 8 32 26 9 33 28 21 34 29 20 35 27 9 36 28 10 37 30 22 38 31 21 39 29 10 40 30 11 41 32 23 42 33 22 43 31 11 44 32 0 45 11 12 46 14 23 47 33 73 48 0 72 49 1 100 50 179 101 51 180 74 52 2 73 48 0 101 51 180 102 53 181 75 54 3 74 52 2 102 53 181 103 55 182 76 56 4 75 54 3 103 55 182 104 57 183 77 58 5 76 56 4 104 57 183 105 59 184 78 60 6 77 58 5 105 59 184 106 61 185 79 62 7 78 60 6 106 61 185 107 63 186 80 64 8 79 62 7 107 63 186 96 65 175 81 66 9 80 64 8 96 65 175 97 67 176 82 68 10 81 66 9 97 67 176 98 69 177 83 70 36 82 68 10 98 69 177 99 71 178 72 49 1 83 70 36 99 71 178 100 50 179 12 72 37 13 73 38 91 74 170 92 75 171 13 73 38 14 76 39 90 77 169 91 74 170 14 76 39 15 78 40 89 79 168 90 77 169 15 78 40 16 80 41 88 81 167 89 79 168 16 80 41 17 82 42 87 83 166 88 81 167 17 82 42 18 84 43 86 85 165 87 83 166 18 84 43 19 86 44 85 87 164 86 85 165 19 86 44 20 88 45 84 89 163 85 87 164 20 88 45 21 90 46 95 91 174 84 89 163 21 90 46 22 92 47 94 93 173 95 91 174 22 92 47 23 94 48 93 95 172 94 93 173 23 94 48 12 72 37 92 75 171 93 95 172 1 96 109 0 97 110 24 98 111 25 99 112 2 100 113 1 101 109 25 102 112 26 103 114 3 104 115 2 105 113 26 106 114 27 107 116 4 108 117 3 109 115 27 110 116 28 111 118 5 112 119 4 113 117 28 114 118 29 115 120 6 116 121 5 117 119 29 118 120 30 119 122 7 120 123 6 121 121 30 122 122 31 123 124 8 124 125 7 125 123 31 126 124 32 127 126 9 128 127 8 129 125 32 130 126 33 131 128 10 132 129 9 133 127 33 134 128 34 135 130 11 136 131 10 137 129 34 138 130 35 139 132 0 140 110 11 141 131 35 142 132 24 143 111 25 144 34 24 145 35 36 146 49 37 147 50 26 148 51 25 149 34 37 150 50 38 151 52 27 152 53 26 153 158 38 154 159 39 155 54 28 156 55 27 157 53 39 158 54 40 159 56 29 160 57 28 161 55 40 162 56 41 163 58 30 164 59 29 165 57 41 166 58 42 167 60 31 168 61 30 169 59 42 170 60 43 171 62 32 172 63 31 173 61 43 174 62 44 175 64 33 176 65 32 177 63 44 178 64 45 179 66 34 180 67 33 181 65 45 182 66 46 183 68 35 184 69 34 185 67 46 186 68 47 187 70 24 188 35 35 189 69 47 190 70 36 191 49 37 192 133 36 193 134 48 194 135 49 195 136 38 196 137 37 197 133 49 198 136 50 199 138 39 200 139 38 201 137 50 202 138 51 203 140 40 204 141 39 205 139 51 206 140 52 207 142 41 208 143 40 209 141 52 210 142 53 211 144 42 212 145 41 213 143 53 214 144 54 215 146 43 216 147 42 217 145 54 218 146 55 219 148 44 220 149 43 221 147 55 222 148 56 223 150 45 224 151 44 225 149 56 226 150 57 227 152 46 228 153 45 229 151 57 230 152 58 231 154 47 232 108 46 233 153 58 234 154 59 235 107 36 236 134 47 237 108 59 238 107 48 239 135 49 240 71 48 241 72 60 242 73 61 243 74 50 244 75 49 245 71 61 246 74 62 247 76 51 248 77 50 249 160 62 250 161 63 251 78 52 252 79 51 253 77 63 254 78 64 255 80 53 256 81 52 257 79 64 258 80 65 259 82 54 260 83 53 261 81 65 262 82 66 263 84 55 264 85 54 265 83 66 266 84 67 267 86 56 268 87 55 269 85 67 270 86 68 271 88 57 272 89 56 273 87 68 274 88 69 275 90 58 276 91 57 277 89 69 278 90 70 279 92 59 280 93 58 281 91 70 282 92 71 283 94 48 284 72 59 285 93 71 286 94 60 287 73 61 288 74 60 289 73 72 290 95 73 291 96 62 292 76 61 293 74 73 294 96 74 295 97 63 296 78 62 297 161 74 298 162 75 299 98 64 300 80 63 301 78 75 302 98 76 303 99 65 304 82 64 305 80 76 306 99 77 307 100 66 308 84 65 309 82 77 310 100 78 311 101 67 312 86 66 313 84 78 314 101 79 315 102 68 316 88 67 317 86 79 318 102 80 319 103 69 320 90 68 321 88 80 322 103 81 323 104 70 324 92 69 325 90 81 326 104 82 327 105 71 328 94 70 329 92 82 330 105 83 331 106 60 332 73 71 333 94 83 334 106 72 335 95 85 336 187 84 337 188 96 338 189 107 339 190 86 340 191 85 341 187 107 342 190 106 343 192 87 344 193 86 345 191 106 346 192 105 347 194 88 348 195 87 349 193 105 350 194 104 351 196 89 352 197 88 353 195 104 354 196 103 355 198 90 356 211 89 357 197 103 358 198 102 359 199 91 360 210 90 361 211 102 362 199 101 363 212 92 364 202 91 365 200 101 366 201 100 367 203 93 368 204 92 369 202 100 370 203 99 371 205 94 372 206 93 373 204 99 374 205 98 375 207 95 376 208 94 377 206 98 378 207 97 379 209 84 380 188 95 381 208 97 382 209 96 383 189</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>front_bearings2_LShape</originalMayaNodeId>\r\n          <double_sided>0</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"front_spacer_LShape\" name=\"front_spacer_LShape\">\r\n      <mesh>\r\n        <source id=\"front_spacer_LShape-positions\" name=\"front_spacer_LShape-positions\">\r\n          <float_array id=\"front_spacer_LShape-positions-array\" count=\"216\">-0.5547514 -3.349625 -1.933907 -0.5547514 -1.933907 -3.349625 -0.5547514 0 -3.867814 -0.5547514 1.933907 -3.349625 -0.5547514 3.349625 -1.933907 -0.5547514 3.867814 0 -0.5547514 3.349625 1.933907 -0.5547514 1.933907 3.349625 -0.5547514 0 3.867814 -0.5547514 -1.933907 3.349625 -0.5547514 -3.349625 1.933907 -0.5547514 -3.867814 0 0.3160135 -3.349625 -1.933907 0.3160135 -1.933907 -3.349625 0.3160135 0 -3.867814 0.3160135 1.933907 -3.349625 0.3160135 3.349625 -1.933907 0.3160135 3.867814 0 0.3160135 3.349625 1.933907 0.3160135 1.933907 3.349625 0.3160135 0 3.867814 0.3160135 -1.933907 3.349625 0.3160135 -3.349625 1.933907 0.3160135 -3.867814 0 0.4317819 -3.278731 -1.892977 0.4317819 -1.892977 -3.278731 0.4317819 0 -3.785953 0.4317819 1.892977 -3.278731 0.4317819 3.278731 -1.892977 0.4317819 3.785953 0 0.4317819 3.278731 1.892977 0.4317819 1.892977 3.278731 0.4317819 0 3.785953 0.4317819 -1.892977 3.278731 0.4317819 -3.278731 1.892977 0.4317819 -3.785953 0 -0.6415777 -3.261008 -1.882744 -0.6415777 -1.882744 -3.261008 -0.6415777 0 -3.765488 -0.6415777 1.882744 -3.261008 -0.6415777 3.261008 -1.882744 -0.6415777 3.765488 0 -0.6415777 3.261008 1.882744 -0.6415777 1.882744 3.261008 -0.6415777 0 3.765488 -0.6415777 -1.882744 3.261008 -0.6415777 -3.261008 1.882744 -0.6415777 -3.765488 0 0.4317819 0 2.780591 0.4317819 1.390749 2.408847 0.4317819 2.418909 1.396558 0.4317819 2.783183 0 0.4317819 2.412726 -1.392988 0.4317819 1.393359 -2.413368 0.4317819 0 -2.787652 0.4317819 -1.393054 -2.412839 0.4317819 -2.411243 -1.392132 0.4317819 -2.78506 0 0.4317819 -2.423961 1.399475 0.4317819 -1.391218 2.40966 -0.6415777 0 2.780591 -0.6415777 1.390749 2.408847 -0.6415777 2.418909 1.396558 -0.6415777 2.783183 0 -0.6415777 2.412726 -1.392988 -0.6415777 1.393359 -2.413368 -0.6415777 0 -2.787652 -0.6415777 -1.393054 -2.412839 -0.6415777 -2.411243 -1.392132 -0.6415777 -2.78506 0 -0.6415777 -2.423961 1.393705 -0.6415777 -1.391218 2.40966</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_spacer_LShape-positions-array\" count=\"72\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_spacer_LShape-normals\" name=\"front_spacer_LShape-normals\">\r\n          <float_array id=\"front_spacer_LShape-normals-array\" count=\"720\">0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588191 0 0.9659258 -0.2588191 0 0.9659258 -0.2588191 0 0.9659258 -0.2588191 0 0.9659258 0.2588191 0 0.9659258 0.2588191 0 0.9659258 0.2588191 0 0.9659258 0.2588191 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588191 0 -0.9659258 0.2588191 0 -0.9659258 0.2588191 0 -0.9659258 0.2588191 0 -0.9659258 -0.2588191 0 -0.9659258 -0.2588191 0 -0.9659258 -0.2588191 0 -0.9659258 -0.2588191 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.56401 -0.5839062 -0.5839062 0.56401 -0.5839062 -0.5839062 0.56401 -0.5839062 -0.5839062 0.56401 -0.5839062 -0.5839062 0.5640106 -0.2137244 -0.7976303 0.5640106 -0.2137244 -0.7976303 0.5640106 -0.2137244 -0.7976303 0.5640106 -0.2137244 -0.7976303 0.5640104 0.2137244 -0.7976303 0.5640104 0.2137244 -0.7976303 0.5640104 0.2137244 -0.7976303 0.5640104 0.2137244 -0.7976303 0.56401 0.5839062 -0.5839062 0.56401 0.5839062 -0.5839062 0.56401 0.5839062 -0.5839062 0.56401 0.5839062 -0.5839062 0.5640107 0.7976302 -0.2137245 0.5640107 0.7976302 -0.2137245 0.5640107 0.7976302 -0.2137245 0.5640107 0.7976302 -0.2137245 0.5640107 0.7976302 0.2137245 0.5640107 0.7976302 0.2137245 0.5640107 0.7976302 0.2137245 0.5640107 0.7976302 0.2137245 0.56401 0.5839062 0.5839062 0.56401 0.5839062 0.5839062 0.56401 0.5839062 0.5839062 0.56401 0.5839062 0.5839062 0.5640106 0.2137244 0.7976303 0.5640106 0.2137244 0.7976303 0.5640106 0.2137244 0.7976303 0.5640106 0.2137244 0.7976303 0.5640104 -0.2137244 0.7976303 0.5640104 -0.2137244 0.7976303 0.5640104 -0.2137244 0.7976303 0.5640104 -0.2137244 0.7976303 0.56401 -0.5839062 0.5839062 0.56401 -0.5839062 0.5839062 0.56401 -0.5839062 0.5839062 0.56401 -0.5839062 0.5839062 0.5640107 -0.7976302 0.2137245 0.5640107 -0.7976302 0.2137245 0.5640107 -0.7976302 0.2137245 0.5640107 -0.7976302 0.2137245 0.5640107 -0.7976302 -0.2137245 0.5640107 -0.7976302 -0.2137245 0.5640107 -0.7976302 -0.2137245 0.5640107 -0.7976302 -0.2137245 -0.7512865 -0.4666737 -0.4666739 -0.7512865 -0.4666737 -0.4666739 -0.7512865 -0.4666737 -0.4666739 -0.7512865 -0.4666737 -0.4666739 -0.7512868 -0.1708144 -0.6374877 -0.7512868 -0.1708144 -0.6374877 -0.7512868 -0.1708144 -0.6374877 -0.7512868 -0.1708144 -0.6374877 -0.7512869 0.1708144 -0.6374876 -0.7512869 0.1708144 -0.6374876 -0.7512869 0.1708144 -0.6374876 -0.7512869 0.1708144 -0.6374876 -0.7512865 0.4666736 -0.4666736 -0.7512865 0.4666736 -0.4666736 -0.7512865 0.4666736 -0.4666736 -0.7512865 0.4666736 -0.4666736 -0.7512869 0.6374876 -0.1708143 -0.7512869 0.6374876 -0.1708143 -0.7512869 0.6374876 -0.1708143 -0.7512869 0.6374876 -0.1708143 -0.751287 0.6374875 0.1708143 -0.751287 0.6374875 0.1708143 -0.751287 0.6374875 0.1708143 -0.751287 0.6374875 0.1708143 -0.7512865 0.4666737 0.4666739 -0.7512865 0.4666737 0.4666739 -0.7512865 0.4666737 0.4666739 -0.7512865 0.4666737 0.4666739 -0.7512868 0.1708144 0.6374877 -0.7512868 0.1708144 0.6374877 -0.7512868 0.1708144 0.6374877 -0.7512868 0.1708144 0.6374877 -0.7512869 -0.1708144 0.6374876 -0.7512869 -0.1708144 0.6374876 -0.7512869 -0.1708144 0.6374876 -0.7512869 -0.1708144 0.6374876 -0.7512865 -0.4666736 0.4666736 -0.7512865 -0.4666736 0.4666736 -0.7512865 -0.4666736 0.4666736 -0.7512865 -0.4666736 0.4666736 -0.7512869 -0.6374876 0.1708143 -0.7512869 -0.6374876 0.1708143 -0.7512869 -0.6374876 0.1708143 -0.7512869 -0.6374876 0.1708143 -0.751287 -0.6374875 -0.1708143 -0.751287 -0.6374875 -0.1708143 -0.751287 -0.6374875 -0.1708143 -0.751287 -0.6374875 -0.1708143 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.7015857 -0.712585 0 -0.7015857 -0.712585 0 -0.7015857 -0.712585 0 -0.7015857 -0.712585 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.9657876 0.2593344 0 0.9657876 0.2593344 0 0.9657876 0.2593344 0 0.9657876 0.2593344 6.72696e-4 0.9681616 -0.2503253 6.72696e-4 0.9681616 -0.2503253 6.72696e-4 0.9681616 -0.2503253 6.72696e-4 0.9681616 -0.2503253 0.001918549 0.7002732 -0.7138724 0.001918549 0.7002732 -0.7138724 0.001918549 0.7002732 -0.7138724 0.001918549 0.7002732 -0.7138724 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_spacer_LShape-normals-array\" count=\"240\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_spacer_LShape-map1\" name=\"front_spacer_LShape-map1\">\r\n          <float_array id=\"front_spacer_LShape-map1-array\" count=\"252\">0.4600119 0.2187839 0.4600119 0.1484799 0.5582584 0.1484799 0.5582584 0.2187839 0.4600119 0.0781759 0.5582583 0.0781759 0.460012 0.8515201 0.460012 0.781216 0.5582584 0.781216 0.460012 0.710912 0.5582584 0.710912 0.4600119 0.6406081 0.5582584 0.6406081 0.4600119 0.570304 0.5582584 0.570304 0.4600119 0.5 0.5582584 0.5 0.4600119 0.429696 0.5582584 0.429696 0.4600119 0.359392 0.5582584 0.359392 0.4600119 0.289088 0.5582583 0.289088 0.7875311 0.1484799 0.787531 0.2187839 0.787531 0.0781759 0.787531 0.781216 0.787531 0.710912 0.787531 0.6406081 0.787531 0.570304 0.787531 0.5 0.7875309 0.429696 0.5 0.5544413 0.4675921 0.563125 0.7875309 0.359392 0.787531 0.289088 0.2799621 0.2187839 0.2799621 0.1484799 0.2799621 0.0781759 0.2799621 0.8515201 0.2799621 0.781216 0.2799621 0.710912 0.2799621 0.6406081 0.2799621 0.570304 0.279962 0.5 0.2799621 0.429696 0.5558288 0.5870245 0.5322328 0.5634284 0.2799621 0.359392 0.279962 0.289088 0.4438678 0.5868492 0.4351841 0.6192572 0.4438678 0.6516652 0.4675921 0.6753894 0.5 0.6840731 0.532408 0.6753894 0.5561322 0.6516652 0.5648159 0.6192572 0.5561322 0.5868492 0.532408 0.563125 0.5 0.5547917 0.4677672 0.5634284 0.4441712 0.5870245 0.4355345 0.6192572 0.4441712 0.65149 0.4677672 0.675086 0.5 0.6837227 0.5322328 0.675086 0.5558288 0.65149 0.5644655 0.6192572 0.5582584 0.9218241 0.5582583 0.8515201 0.787531 0.8515201 0.7875311 0.9218241 0.460012 0.9218241 0.2799621 0.9218241 0.4616158 0.6192572 0.470056 0.6365454 0.4831887 0.6483753 0.5 0.6458355 0.5130834 0.6419183 0.5253736 0.6339067 0.5340958 0.6192572 0.5362645 0.5983199 0.5218852 0.581351 0.5 0.5753109 0.4760409 0.5777588 0.4610011 0.5967411 0.4694272 0.6192572 0.4773369 0.6323417 0.4872977 0.6412583 0.5 0.6447307 0.5127367 0.641318 0.5222757 0.6321181 0.5231497 0.6192572 0.5194632 0.6080201 0.511604 0.5991585 0.5 0.5950089 0.4875466 0.5976872 0.4810066 0.6082914 0.6895286 0.5703047 0.6895286 0.5000919 0.4772789 0.5000919 0.4772789 0.5703047 0.6895286 0.4298663 0.4772789 0.4298663 0.6895286 0.3596082 0.4772789 0.3596082 0.6895286 0.289304 0.4772788 0.2893039 0.6895286 0.2189542 0.4772789 0.2189542 0.6895286 0.1485711 0.6895286 0.921824 0.4772789 0.9218241 0.6895286 0.851441 0.4772789 0.851441 0.6895286 0.7810917 0.4772789 0.7810917 0.6895286 0.7110285 0.4772789 0.7107888 0.6895286 0.6405296 0.4772788 0.6405296 0.6895286 0.07817596 0.4772788 0.07817593 0.4772788 0.1485711</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_spacer_LShape-map1-array\" count=\"126\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"front_spacer_LShape-vertices\" name=\"front_spacer_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#front_spacer_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"72\">\r\n          <input semantic=\"VERTEX\" source=\"#front_spacer_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#front_spacer_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#front_spacer_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 13 2 2 12 3 3 1 4 1 2 5 4 14 6 5 13 7 2 2 8 74 3 9 6 15 10 71 14 11 70 3 12 6 4 13 7 16 14 8 15 15 71 4 16 7 5 17 9 17 18 10 16 19 8 5 20 9 6 21 11 18 22 12 17 23 10 6 24 11 7 25 13 19 26 14 18 27 12 7 28 13 8 29 15 20 30 16 19 31 14 8 32 15 9 33 17 21 34 18 20 35 16 9 36 17 10 37 19 22 38 20 21 39 18 10 40 19 11 41 21 23 42 22 22 43 20 11 44 21 0 45 0 12 46 3 23 47 22 24 48 59 25 49 58 55 50 83 56 51 84 25 49 58 26 52 57 54 53 82 55 50 83 26 52 57 27 54 56 53 55 81 54 53 82 27 54 56 28 56 55 52 57 80 53 55 81 28 56 55 29 58 54 51 59 79 52 57 80 29 58 54 30 60 53 50 61 78 51 59 79 30 60 53 31 62 52 49 63 77 50 61 78 31 62 52 32 64 51 48 65 76 49 63 77 32 64 51 33 66 50 59 67 87 48 65 76 33 66 50 34 68 33 58 69 86 59 67 87 34 68 33 35 70 32 57 71 85 58 69 86 35 70 32 24 48 59 56 51 84 57 71 85 12 72 3 13 73 2 25 74 23 24 75 24 13 76 2 14 77 5 26 78 25 25 79 23 14 80 70 15 81 71 27 82 72 26 83 73 15 84 71 16 85 8 28 86 26 27 87 72 16 88 8 17 89 10 29 90 27 28 91 26 17 92 10 18 93 12 30 94 28 29 95 27 18 96 12 19 97 14 31 98 29 30 99 28 19 100 14 20 101 16 32 102 30 31 103 29 20 104 16 21 105 18 33 106 31 32 107 30 21 108 18 22 109 20 34 110 34 33 111 31 22 112 20 23 113 22 35 114 35 34 115 34 23 116 22 12 117 3 24 118 24 35 119 35 1 120 1 0 121 0 36 122 36 37 123 37 2 124 4 1 125 1 37 126 37 38 127 38 3 128 6 2 129 74 38 130 75 39 131 39 4 132 7 3 133 6 39 134 39 40 135 40 5 136 9 4 137 7 40 138 40 41 139 41 6 140 11 5 141 9 41 142 41 42 143 42 7 144 13 6 145 11 42 146 42 43 147 43 8 148 15 7 149 13 43 150 43 44 151 44 9 152 17 8 153 15 44 154 44 45 155 45 10 156 19 9 157 17 45 158 45 46 159 48 11 160 21 10 161 19 46 162 48 47 163 49 0 164 0 11 165 21 47 166 49 36 167 36 44 168 63 43 169 64 61 170 89 60 171 88 43 169 64 42 172 65 62 173 90 61 170 89 42 172 65 41 174 66 63 175 91 62 173 90 41 174 66 40 176 67 64 177 92 63 175 91 40 176 67 39 178 68 65 179 93 64 177 92 39 178 68 38 180 69 66 181 94 65 179 93 38 180 69 37 182 46 67 183 95 66 181 94 37 182 46 36 184 47 68 185 96 67 183 95 36 184 47 47 186 60 69 187 97 68 185 96 47 186 60 46 188 61 70 189 98 69 187 97 46 188 61 45 190 62 71 191 99 70 189 98 45 190 62 44 168 63 60 171 88 71 191 99 60 192 100 61 193 101 49 194 102 48 195 103 61 196 101 62 197 104 50 198 105 49 199 102 62 200 104 63 201 106 51 202 107 50 203 105 63 204 106 64 205 108 52 206 109 51 207 107 64 208 108 65 209 110 53 210 111 52 211 109 65 212 110 66 213 112 54 214 125 53 215 111 66 216 112 67 217 123 55 218 124 54 219 125 67 220 113 68 221 115 56 222 116 55 223 114 68 224 115 69 225 117 57 226 118 56 227 116 69 228 117 70 229 119 58 230 120 57 231 118 70 232 119 71 233 121 59 234 122 58 235 120 71 236 121 60 237 100 48 238 103 59 239 122</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>front_spacer_LShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"front_bearings1_LShape\" name=\"front_bearings1_LShape\">\r\n      <mesh>\r\n        <source id=\"front_bearings1_LShape-positions\" name=\"front_bearings1_LShape-positions\">\r\n          <float_array id=\"front_bearings1_LShape-positions-array\" count=\"288\">-1.337427 -3.464217 -2.000067 -1.337427 -2.000067 -3.464217 -1.337427 0 -4.000133 -1.337427 2.000067 -3.464217 -1.337427 3.464217 -2.000067 -1.337427 4.000133 0 -1.337427 3.464217 2.000067 -1.337427 2.000067 3.464217 -1.337427 0 4.000133 -1.337427 -2.000067 3.464217 -1.337427 -3.464217 2.000067 -1.337427 -4.000133 0 1.391745 -3.464217 -2.000067 1.391745 -2.000067 -3.464217 1.391745 0 -4.000133 1.391745 2.000067 -3.464217 1.391745 3.464217 -2.000067 1.391745 4.000133 0 1.391745 3.464217 2.000067 1.391745 2.000067 3.464217 1.391745 0 4.000133 1.391745 -2.000067 3.464217 1.391745 -3.464217 2.000067 1.391745 -4.000133 0 1.493043 -3.357877 -1.938671 1.493043 -1.938671 -3.357877 1.493043 0 -3.877342 1.493043 1.938671 -3.357877 1.493043 3.357877 -1.938671 1.493043 3.877342 0 1.493043 3.357877 1.938671 1.493043 1.938671 3.357877 1.493043 0 3.877342 1.493043 -1.938671 3.357877 1.493043 -3.357877 1.938671 1.493043 -3.877342 0 -1.409782 -3.384461 -1.95402 -1.409782 -1.95402 -3.384461 -1.409782 0 -3.90804 -1.409782 1.95402 -3.384461 -1.409782 3.384461 -1.95402 -1.409782 3.90804 0 -1.409782 3.384461 1.95402 -1.409782 1.95402 3.384461 -1.409782 0 3.90804 -1.409782 -1.95402 3.384461 -1.409782 -3.384461 1.95402 -1.409782 -3.90804 0 -1.482138 -3.464217 -2.000067 -1.482138 -2.000067 -3.464217 -1.482138 0 -4.000133 -1.482138 2.000067 -3.464217 -1.482138 3.464217 -2.000067 -1.482138 4.000133 0 -1.482138 3.464217 2.000067 -1.482138 2.000067 3.464217 -1.482138 0 4.000133 -1.482138 -2.000067 3.464217 -1.482138 -3.464217 2.000067 -1.482138 -4.000133 0 -1.713675 -3.464217 -2.000067 -1.713675 -2.000067 -3.464217 -1.713675 0 -4.000133 -1.713675 2.000067 -3.464217 -1.713675 3.464217 -2.000067 -1.713675 4.000133 0 -1.713675 3.464217 2.000067 -1.713675 2.000067 3.464217 -1.713675 0 4.000133 -1.713675 -2.000067 3.464217 -1.713675 -3.464217 2.000067 -1.713675 -4.000133 0 -1.713675 0 2.780591 -1.713675 -1.391218 2.40966 -1.713675 -2.423961 1.393705 -1.713675 -2.78506 0 -1.713675 -2.411243 -1.392132 -1.713675 -1.393054 -2.412839 -1.713675 0 -2.787652 -1.713675 1.393359 -2.413368 -1.713675 2.412726 -1.392988 -1.713675 2.783183 0 -1.713675 2.418909 1.396558 -1.713675 1.390749 2.408847 1.493043 0 2.780591 1.493043 1.390749 2.408847 1.493043 2.418909 1.396558 1.493043 2.783183 0 1.493043 2.412726 -1.392988 1.493043 1.393359 -2.413368 1.493043 0 -2.787652 1.493043 -1.393054 -2.412839 1.493043 -2.411243 -1.392132 1.493043 -2.78506 0 1.493043 -2.423961 1.393705 1.493043 -1.391218 2.40966</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings1_LShape-positions-array\" count=\"96\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_bearings1_LShape-normals\" name=\"front_bearings1_LShape-normals\">\r\n          <float_array id=\"front_bearings1_LShape-normals-array\" count=\"1008\">0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7604147 -0.4592218 -0.459222 0.7604147 -0.4592218 -0.459222 0.7604147 -0.4592218 -0.459222 0.7604147 -0.4592218 -0.459222 0.760415 -0.1680868 -0.6273084 0.760415 -0.1680868 -0.6273084 0.760415 -0.1680868 -0.6273084 0.760415 -0.1680868 -0.6273084 0.7604148 0.1680869 -0.6273087 0.7604148 0.1680869 -0.6273087 0.7604148 0.1680869 -0.6273087 0.7604148 0.1680869 -0.6273087 0.7604145 0.4592218 -0.4592223 0.7604145 0.4592218 -0.4592223 0.7604145 0.4592218 -0.4592223 0.7604145 0.4592218 -0.4592223 0.7604145 0.627309 -0.168087 0.7604145 0.627309 -0.168087 0.7604145 0.627309 -0.168087 0.7604145 0.627309 -0.168087 0.7604145 0.6273091 0.168087 0.7604145 0.6273091 0.168087 0.7604145 0.6273091 0.168087 0.7604145 0.6273091 0.168087 0.7604147 0.4592218 0.459222 0.7604147 0.4592218 0.459222 0.7604147 0.4592218 0.459222 0.7604147 0.4592218 0.459222 0.760415 0.1680868 0.6273084 0.760415 0.1680868 0.6273084 0.760415 0.1680868 0.6273084 0.760415 0.1680868 0.6273084 0.7604148 -0.1680869 0.6273087 0.7604148 -0.1680869 0.6273087 0.7604148 -0.1680869 0.6273087 0.7604148 -0.1680869 0.6273087 0.7604145 -0.4592218 0.4592223 0.7604145 -0.4592218 0.4592223 0.7604145 -0.4592218 0.4592223 0.7604145 -0.4592218 0.4592223 0.7604145 -0.627309 0.168087 0.7604145 -0.627309 0.168087 0.7604145 -0.627309 0.168087 0.7604145 -0.627309 0.168087 0.7604145 -0.6273091 -0.168087 0.7604145 -0.6273091 -0.168087 0.7604145 -0.6273091 -0.168087 0.7604145 -0.6273091 -0.168087 -0.7757775 -0.4461886 -0.4461894 -0.7757775 -0.4461886 -0.4461894 -0.7757775 -0.4461886 -0.4461894 -0.7757775 -0.4461886 -0.4461894 -0.7757775 -0.1633167 -0.6095055 -0.7757775 -0.1633167 -0.6095055 -0.7757775 -0.1633167 -0.6095055 -0.7757775 -0.1633167 -0.6095055 -0.7757775 0.1633166 -0.6095057 -0.7757775 0.1633166 -0.6095057 -0.7757775 0.1633166 -0.6095057 -0.7757775 0.1633166 -0.6095057 -0.7757772 0.446189 -0.4461897 -0.7757772 0.446189 -0.4461897 -0.7757772 0.446189 -0.4461897 -0.7757772 0.446189 -0.4461897 -0.7757769 0.6095062 -0.1633168 -0.7757769 0.6095062 -0.1633168 -0.7757769 0.6095062 -0.1633168 -0.7757769 0.6095062 -0.1633168 -0.7757771 0.6095061 0.1633168 -0.7757771 0.6095061 0.1633168 -0.7757771 0.6095061 0.1633168 -0.7757771 0.6095061 0.1633168 -0.7757775 0.4461886 0.4461894 -0.7757775 0.4461886 0.4461894 -0.7757775 0.4461886 0.4461894 -0.7757775 0.4461886 0.4461894 -0.7757775 0.1633167 0.6095055 -0.7757775 0.1633167 0.6095055 -0.7757775 0.1633167 0.6095055 -0.7757775 0.1633167 0.6095055 -0.7757775 -0.1633166 0.6095057 -0.7757775 -0.1633166 0.6095057 -0.7757775 -0.1633166 0.6095057 -0.7757775 -0.1633166 0.6095057 -0.7757772 -0.446189 0.4461897 -0.7757772 -0.446189 0.4461897 -0.7757772 -0.446189 0.4461897 -0.7757772 -0.446189 0.4461897 -0.7757769 -0.6095062 0.1633168 -0.7757769 -0.6095062 0.1633168 -0.7757769 -0.6095062 0.1633168 -0.7757769 -0.6095062 0.1633168 -0.7757771 -0.6095061 -0.1633168 -0.7757771 -0.6095061 -0.1633168 -0.7757771 -0.6095061 -0.1633168 -0.7757771 -0.6095061 -0.1633168 0.7757769 -0.4461896 -0.4461896 0.7757769 -0.4461896 -0.4461896 0.7757769 -0.4461896 -0.4461896 0.7757769 -0.4461896 -0.4461896 0.7757775 -0.1633167 -0.6095055 0.7757775 -0.1633167 -0.6095055 0.7757775 -0.1633167 -0.6095055 0.7757775 -0.1633167 -0.6095055 0.7757773 0.1633168 -0.6095057 0.7757773 0.1633168 -0.6095057 0.7757773 0.1633168 -0.6095057 0.7757773 0.1633168 -0.6095057 0.775777 0.4461893 -0.4461896 0.775777 0.4461893 -0.4461896 0.775777 0.4461893 -0.4461896 0.775777 0.4461893 -0.4461896 0.7757764 0.6095069 -0.1633167 0.7757764 0.6095069 -0.1633167 0.7757764 0.6095069 -0.1633167 0.7757764 0.6095069 -0.1633167 0.7757764 0.6095068 0.1633167 0.7757764 0.6095068 0.1633167 0.7757764 0.6095068 0.1633167 0.7757764 0.6095068 0.1633167 0.7757769 0.4461896 0.4461896 0.7757769 0.4461896 0.4461896 0.7757769 0.4461896 0.4461896 0.7757769 0.4461896 0.4461896 0.7757775 0.1633167 0.6095055 0.7757775 0.1633167 0.6095055 0.7757775 0.1633167 0.6095055 0.7757775 0.1633167 0.6095055 0.7757773 -0.1633168 0.6095057 0.7757773 -0.1633168 0.6095057 0.7757773 -0.1633168 0.6095057 0.7757773 -0.1633168 0.6095057 0.775777 -0.4461893 0.4461896 0.775777 -0.4461893 0.4461896 0.775777 -0.4461893 0.4461896 0.775777 -0.4461893 0.4461896 0.7757764 -0.6095069 0.1633167 0.7757764 -0.6095069 0.1633167 0.7757764 -0.6095069 0.1633167 0.7757764 -0.6095069 0.1633167 0.7757764 -0.6095068 -0.1633167 0.7757764 -0.6095068 -0.1633167 0.7757764 -0.6095068 -0.1633167 0.7757764 -0.6095068 -0.1633167 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588193 0 0.9659259 -0.2588193 0 0.9659259 -0.2588193 0 0.9659259 -0.2588193 0 0.9659259 0.2588193 0 0.9659259 0.2588193 0 0.9659259 0.2588193 0 0.9659259 0.2588193 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588193 0 -0.9659259 0.2588193 0 -0.9659259 0.2588193 0 -0.9659259 0.2588193 0 -0.9659259 -0.2588193 0 -0.9659259 -0.2588193 0 -0.9659259 -0.2588193 0 -0.9659259 -0.2588193 0 0.2576233 -0.9662455 0 0.2576233 -0.9662455 0 0.2576233 -0.9662455 0 0.2576233 -0.9662455 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.9680361 -0.2508112 0 0.9680361 -0.2508112 0 0.9680361 -0.2508112 0 0.9680361 -0.2508112 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.7079796 0.706233 0 0.7079796 0.706233 0 0.7079796 0.706233 0 0.7079796 0.706233 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.9664087 0.2570103 0 -0.9664087 0.2570103 0 -0.9664087 0.2570103 0 -0.9664087 0.2570103 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.7015857 -0.7125851 0 -0.7015857 -0.7125851 0 -0.7015857 -0.7125851 0 -0.7015857 -0.7125851 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings1_LShape-normals-array\" count=\"336\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_bearings1_LShape-map1\" name=\"front_bearings1_LShape-map1\">\r\n          <float_array id=\"front_bearings1_LShape-map1-array\" count=\"356\">0.3866208 0.5546799 0.3866208 0.5425612 0.6979387 0.1484798 0.6979386 0.2187839 0.3866208 0.5304426 0.6979387 0.0781759 0.3866208 0.6637479 0.3866208 0.6516292 0.6979386 0.781216 0.3866208 0.6395106 0.6979388 0.7109119 0.3866208 0.6273919 0.6979387 0.640608 0.3866208 0.6152732 0.6979387 0.5703039 0.3866208 0.6031546 0.6979387 0.4999999 0.3866208 0.591036 0.6979387 0.4296959 0.3866208 0.5789173 0.6979386 0.3593919 0.3866208 0.5667986 0.6979387 0.2890879 0.8606687 0.1484799 0.8606687 0.2187839 0.8606688 0.0781759 0.8606688 0.7812159 0.8606689 0.7109119 0.8606688 0.640608 0.8606688 0.5703039 0.8606688 0.4999999 0.8606688 0.4296959 0.8606687 0.3593919 0.8606687 0.2890879 0.3850619 0.5546799 0.3850619 0.5425612 0.3850619 0.5304426 0.3850619 0.6637479 0.3850619 0.6516292 0.3850619 0.6395106 0.3850619 0.6273919 0.3850619 0.6152732 0.3850619 0.6031546 0.3850619 0.591036 0.3850619 0.5789173 0.3850619 0.5667986 0.3183725 0.2187839 0.3183725 0.1484798 0.4745744 0.5594846 0.4600688 0.5449789 0.3183725 0.0781759 0.3183725 0.8515201 0.3183725 0.781216 0.3183726 0.7109119 0.3183725 0.640608 0.3183725 0.5703039 0.3183725 0.4999999 0.3183725 0.4296959 0.3183725 0.3593919 0.3183725 0.2890879 0.228534 0.2187839 0.228534 0.1484799 0.2285341 0.0781759 0.2285341 0.8515201 0.2285342 0.781216 0.228534 0.7109119 0.228534 0.640608 0.2285341 0.5703039 0.228534 0.4999999 0.228534 0.4296959 0.228534 0.3593919 0.228534 0.289088 0.4402536 0.5408859 0.4210466 0.5460324 0.4069862 0.5600929 0.4018397 0.5792998 0.4069862 0.5985067 0.4210466 0.6125672 0.4402536 0.6177137 0.4594605 0.6125672 0.4735209 0.5985067 0.4786674 0.5792998 0.4735209 0.5600929 0.4594605 0.5460324 0.4402536 0.5396694 0.4204383 0.5449789 0.4059327 0.5594846 0.4006232 0.5792998 0.4059327 0.599115 0.4204383 0.6136208 0.4402536 0.6189302 0.4600688 0.6136208 0.4745744 0.599115 0.4798839 0.5792998 0.6979387 0.921824 0.6979387 0.8515201 0.8606688 0.8515201 0.8606688 0.921824 0.3364607 0.921824 0.3850619 0.6758665 0.3835029 0.6758665 0.2285341 0.921824 0.3835029 0.5667986 0.3835029 0.5546799 0.3835029 0.5789173 0.3835029 0.591036 0.3835029 0.6031546 0.3835029 0.6152732 0.3835029 0.6273919 0.3835029 0.6395106 0.3835029 0.6516292 0.3835029 0.6637479 0.3835029 0.5304426 0.3183725 0.921824 0.3835029 0.5425612 0.3364608 0.289088 0.3364606 0.2187839 0.3364606 0.3593919 0.3364606 0.4296959 0.3364607 0.4999999 0.3364607 0.5703039 0.3364608 0.640608 0.3364608 0.710912 0.3364607 0.781216 0.3364608 0.8515201 0.3364607 0.0781759 0.3866208 0.6758665 0.3364607 0.1484799 0.4273612 0.5792998 0.4301611 0.573473 0.4336903 0.567932 0.4402536 0.5629957 0.4477768 0.5662691 0.4541965 0.5712498 0.4545345 0.5792998 0.4519714 0.5860652 0.4485759 0.5937145 0.4402536 0.5924738 0.4338015 0.5904751 0.4285578 0.5860524 0.4223629 0.5792998 0.4267166 0.5871153 0.4327717 0.5922588 0.4402536 0.593975 0.4475766 0.5919837 0.4531939 0.5867709 0.4553037 0.5792998 0.4527667 0.5720754 0.4463858 0.5686784 0.4402536 0.5675164 0.4332772 0.5672163 0.4286495 0.5726002 0.6836003 0.641499 0.6836003 0.5707896 0.4832071 0.5707897 0.4832071 0.641499 0.6836003 0.7124842 0.4832071 0.7124842 0.6836003 0.7830306 0.4832071 0.7830306 0.6836003 0.8538651 0.4832071 0.8538651 0.6836003 0.9247336 0.4832071 0.9247336 0.6836003 0.1461472 0.6836003 0.2170158 0.4832071 0.2170157 0.6836003 0.2878507 0.4832071 0.2878507 0.6836003 0.3586399 0.4832071 0.3586399 0.6836003 0.4293825 0.4832071 0.4293826 0.6836003 0.5000926 0.4832071 0.5000926 0.6836003 0.07526639 0.4832071 0.07526642 0.4832071 0.1461472</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings1_LShape-map1-array\" count=\"178\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"front_bearings1_LShape-vertices\" name=\"front_bearings1_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#front_bearings1_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"96\">\r\n          <input semantic=\"VERTEX\" source=\"#front_bearings1_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#front_bearings1_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#front_bearings1_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 116 1 1 127 13 2 2 12 3 3 1 4 127 2 5 125 14 6 5 13 7 2 2 8 98 3 9 124 15 10 95 14 11 94 3 12 124 4 13 123 16 14 8 15 15 95 4 16 123 5 17 122 17 18 10 16 19 8 5 20 122 6 21 121 18 22 12 17 23 10 6 24 121 7 25 120 19 26 14 18 27 12 7 28 120 8 29 119 20 30 16 19 31 14 8 32 119 9 33 118 21 34 18 20 35 16 9 36 118 10 37 117 22 38 20 21 39 18 10 40 117 11 41 115 23 42 22 22 43 20 11 44 115 0 45 116 12 46 3 23 47 22 61 48 48 60 49 49 76 50 132 77 51 133 62 52 93 61 48 48 77 51 133 78 53 134 63 54 92 62 52 93 78 53 134 79 55 135 64 56 91 63 54 92 79 55 135 80 57 136 65 58 90 64 56 91 80 57 136 81 59 137 66 60 89 65 58 90 81 59 137 82 61 138 67 62 88 66 60 89 82 61 138 83 63 139 68 64 87 67 62 88 83 63 139 72 65 128 69 66 86 68 64 87 72 65 128 73 67 129 70 68 85 69 66 86 73 67 129 74 69 130 71 70 84 70 68 85 74 69 130 75 71 131 60 49 49 71 70 84 75 71 131 76 50 132 24 72 83 25 73 82 91 74 147 92 75 148 25 73 82 26 76 81 90 77 146 91 74 147 26 76 81 27 78 80 89 79 145 90 77 146 27 78 80 28 80 79 88 81 144 89 79 145 28 80 79 29 82 78 87 83 143 88 81 144 29 82 78 30 84 77 86 85 142 87 83 143 30 84 77 31 86 76 85 87 141 86 85 142 31 86 76 32 88 75 84 89 140 85 87 141 32 88 75 33 90 74 95 91 151 84 89 140 33 90 74 34 92 73 94 93 150 95 91 151 34 92 73 35 94 72 93 95 149 94 93 150 35 94 72 24 72 83 92 75 148 93 95 149 12 96 3 13 97 2 25 98 23 24 99 24 13 100 2 14 101 5 26 102 25 25 103 23 14 104 94 15 105 95 27 106 96 26 107 97 15 108 95 16 109 8 28 110 26 27 111 96 16 112 8 17 113 10 29 114 27 28 115 26 17 116 10 18 117 12 30 118 28 29 119 27 18 120 12 19 121 14 31 122 29 30 123 28 19 124 14 20 125 16 32 126 30 31 127 29 20 128 16 21 129 18 33 130 31 32 131 30 21 132 18 22 133 20 34 134 32 33 135 31 22 136 20 23 137 22 35 138 33 34 139 32 23 140 22 12 141 3 24 142 24 35 143 33 1 144 1 0 145 0 36 146 34 37 147 35 2 148 4 1 149 1 37 150 35 38 151 36 3 152 6 2 153 126 38 154 99 39 155 37 4 156 7 3 157 6 39 158 37 40 159 38 5 160 9 4 161 7 40 162 38 41 163 39 6 164 11 5 165 9 41 166 39 42 167 40 7 168 13 6 169 11 42 170 40 43 171 41 8 172 15 7 173 13 43 174 41 44 175 42 9 176 17 8 177 15 44 178 42 45 179 43 10 180 19 9 181 17 45 182 43 46 183 44 11 184 21 10 185 19 46 186 44 47 187 45 0 188 0 11 189 21 47 190 45 36 191 34 37 192 35 36 193 34 48 194 103 49 195 114 38 196 36 37 197 35 49 198 114 50 199 112 39 200 37 38 201 99 50 202 100 51 203 111 40 204 38 39 205 37 51 206 111 52 207 110 41 208 39 40 209 38 52 210 110 53 211 109 42 212 40 41 213 39 53 214 109 54 215 108 43 216 41 42 217 40 54 218 108 55 219 107 44 220 42 43 221 41 55 222 107 56 223 106 45 224 43 44 225 42 56 226 106 57 227 105 46 228 44 45 229 43 57 230 105 58 231 104 47 232 45 46 233 44 58 234 104 59 235 102 36 236 34 47 237 45 59 238 102 48 239 103 49 240 47 48 241 46 60 242 60 61 243 61 50 244 50 49 245 47 61 246 61 62 247 62 51 248 51 50 249 113 62 250 101 63 251 63 52 252 52 51 253 51 63 254 63 64 255 64 53 256 53 52 257 52 64 258 64 65 259 65 54 260 54 53 261 53 65 262 65 66 263 66 55 264 55 54 265 54 66 266 66 67 267 67 56 268 56 55 269 55 67 270 67 68 271 68 57 272 57 56 273 56 68 274 68 69 275 69 58 276 58 57 277 57 69 278 69 70 279 70 59 280 59 58 281 58 70 282 70 71 283 71 48 284 46 59 285 59 71 286 71 60 287 60 73 288 152 72 289 153 84 290 154 95 291 155 74 292 156 73 293 152 95 294 155 94 295 157 75 296 158 74 297 156 94 298 157 93 299 159 76 300 160 75 301 158 93 302 159 92 303 161 77 304 162 76 305 160 92 306 161 91 307 163 78 308 164 77 309 175 91 310 176 90 311 177 79 312 165 78 313 164 90 314 177 89 315 166 80 316 167 79 317 165 89 318 166 88 319 168 81 320 169 80 321 167 88 322 168 87 323 170 82 324 171 81 325 169 87 326 170 86 327 172 83 328 173 82 329 171 86 330 172 85 331 174 72 332 153 83 333 173 85 334 174 84 335 154</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>front_bearings1_LShape</originalMayaNodeId>\r\n          <double_sided>0</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rear_bearings2_LShape\" name=\"rear_bearings2_LShape\">\r\n      <mesh>\r\n        <source id=\"rear_bearings2_LShape-positions\" name=\"rear_bearings2_LShape-positions\">\r\n          <float_array id=\"rear_bearings2_LShape-positions-array\" count=\"324\">-0.5722035 -2.234658 -1.290181 -0.5722035 -1.290181 -2.234658 -0.5722035 0 -2.580361 -0.5722035 1.290181 -2.234658 -0.5722035 2.234658 -1.290181 -0.5722035 2.580361 0 -0.5722035 2.234658 1.290181 -0.5722035 1.290181 2.234658 -0.5722035 0 2.580361 -0.5722035 -1.290181 2.234658 -0.5722035 -2.234658 1.290181 -0.5722035 -2.580361 0 -0.2943217 -2.234658 -1.290181 -0.2943217 -1.290181 -2.234658 -0.2943217 0 -2.580361 -0.2943217 1.290181 -2.234658 -0.2943217 2.234658 -1.290181 -0.2943217 2.580361 0 -0.2943217 2.234658 1.290181 -0.2943217 1.290181 2.234658 -0.2943217 0 2.580361 -0.2943217 -1.290181 2.234658 -0.2943217 -2.234658 1.290181 -0.2943217 -2.580361 0 -0.5722035 -2.285215 -1.319369 -0.5722035 -1.319369 -2.285215 -0.5722035 0 -2.638739 -0.5722035 1.319369 -2.285215 -0.5722035 2.285215 -1.319369 -0.5722035 2.638739 0 -0.5722035 2.285215 1.319369 -0.5722035 1.319369 2.285215 -0.5722035 0 2.638739 -0.5722035 -1.319369 2.285215 -0.5722035 -2.285215 1.319369 -0.5722035 -2.638739 0 -0.6405163 -2.285215 -1.319369 -0.6405163 -1.319369 -2.285215 -0.6405163 0 -2.638739 -0.6405163 1.319369 -2.285215 -0.6405163 2.285215 -1.319369 -0.6405163 2.638739 0 -0.6405163 2.285215 1.319369 -0.6405163 1.319369 2.285215 -0.6405163 0 2.638739 -0.6405163 -1.319369 2.285215 -0.6405163 -2.285215 1.319369 -0.6405163 -2.638739 0 -0.6405163 -2.398965 -1.385043 -0.6405163 -1.385043 -2.398965 -0.6405163 0 -2.770086 -0.6405163 1.385043 -2.398965 -0.6405163 2.398965 -1.385043 -0.6405163 2.770086 0 -0.6405163 2.398965 1.385043 -0.6405163 1.385043 2.398965 -0.6405163 0 2.770086 -0.6405163 -1.385043 2.398965 -0.6405163 -2.398965 1.385043 -0.6405163 -2.770086 0 -2.454791 -2.398965 -1.385043 -2.454791 -1.385043 -2.398965 -2.454791 0 -2.770086 -2.454791 1.385043 -2.398965 -2.454791 2.398965 -1.385043 -2.454791 2.770086 0 -2.454791 2.398965 1.385043 -2.454791 1.385043 2.398965 -2.454791 0 2.770086 -2.454791 -1.385043 2.398965 -2.454791 -2.398965 1.385043 -2.454791 -2.770086 0 -2.540182 -2.310492 -1.333963 -2.540182 -1.333963 -2.310492 -2.540182 0 -2.667926 -2.540182 1.333963 -2.310492 -2.540182 2.310492 -1.333963 -2.540182 2.667926 0 -2.540182 2.310492 1.333963 -2.540182 1.333963 2.310492 -2.540182 0 2.667926 -2.540182 -1.333963 2.310492 -2.540182 -2.310492 1.333963 -2.540182 -2.667926 0 -0.2943217 0 1.91843 -0.2943217 0.9595277 1.661951 -0.2943217 1.668892 0.9635355 -0.2943217 1.920219 0 -0.2943217 1.664627 -0.9610729 -0.2943217 0.9613287 -1.66507 -0.2943217 0 -1.923302 -0.2943217 -0.961118 -1.664705 -0.2943217 -1.663604 -0.9604822 -0.2943217 -1.921513 0 -0.2943217 -1.665483 0.9615674 -0.2943217 -0.9598514 1.662511 -2.540182 0 1.91843 -2.540182 -0.9598514 1.662512 -2.540182 -1.665483 0.9615674 -2.540182 -1.921513 0 -2.540182 -1.663604 -0.9604822 -2.540182 -0.961118 -1.664705 -2.540182 0 -1.923302 -2.540182 0.9613287 -1.66507 -2.540182 1.664627 -0.9610729 -2.540182 1.920218 0 -2.540182 1.668892 0.9635355 -2.540182 0.9595277 1.661951</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings2_LShape-positions-array\" count=\"108\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_bearings2_LShape-normals\" name=\"rear_bearings2_LShape-normals\">\r\n          <float_array id=\"rear_bearings2_LShape-normals-array\" count=\"1152\">0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588192 -0.9659259 0 -0.2588192 -0.9659259 0 -0.2588192 -0.9659259 0 -0.2588192 -0.9659259 0 0.2588192 -0.9659259 0 0.2588192 -0.9659259 0 0.2588192 -0.9659259 0 0.2588192 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588192 0.9659259 0 0.2588192 0.9659259 0 0.2588192 0.9659259 0 0.2588192 0.9659259 0 -0.2588192 0.9659259 0 -0.2588192 0.9659259 0 -0.2588192 0.9659259 0 -0.2588192 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 -0.7561821 -0.4627036 -0.4627031 -0.7561821 -0.4627036 -0.4627031 -0.7561821 -0.4627036 -0.4627031 -0.7561821 -0.4627036 -0.4627031 -0.7561826 -0.169361 -0.6320639 -0.7561826 -0.169361 -0.6320639 -0.7561826 -0.169361 -0.6320639 -0.7561826 -0.169361 -0.6320639 -0.7561827 0.1693612 -0.6320638 -0.7561827 0.1693612 -0.6320638 -0.7561827 0.1693612 -0.6320638 -0.7561827 0.1693612 -0.6320638 -0.7561822 0.4627033 -0.4627031 -0.7561822 0.4627033 -0.4627031 -0.7561822 0.4627033 -0.4627031 -0.7561822 0.4627033 -0.4627031 -0.7561824 0.6320642 -0.1693612 -0.7561824 0.6320642 -0.1693612 -0.7561824 0.6320642 -0.1693612 -0.7561824 0.6320642 -0.1693612 -0.7561824 0.6320642 0.1693612 -0.7561824 0.6320642 0.1693612 -0.7561824 0.6320642 0.1693612 -0.7561824 0.6320642 0.1693612 -0.7561821 0.4627036 0.4627031 -0.7561821 0.4627036 0.4627031 -0.7561821 0.4627036 0.4627031 -0.7561821 0.4627036 0.4627031 -0.7561826 0.169361 0.6320639 -0.7561826 0.169361 0.6320639 -0.7561826 0.169361 0.6320639 -0.7561826 0.169361 0.6320639 -0.7561827 -0.1693612 0.6320638 -0.7561827 -0.1693612 0.6320638 -0.7561827 -0.1693612 0.6320638 -0.7561827 -0.1693612 0.6320638 -0.7561822 -0.4627033 0.4627031 -0.7561822 -0.4627033 0.4627031 -0.7561822 -0.4627033 0.4627031 -0.7561822 -0.4627033 0.4627031 -0.7561824 -0.6320642 0.1693612 -0.7561824 -0.6320642 0.1693612 -0.7561824 -0.6320642 0.1693612 -0.7561824 -0.6320642 0.1693612 -0.7561824 -0.6320642 -0.1693612 -0.7561824 -0.6320642 -0.1693612 -0.7561824 -0.6320642 -0.1693612 -0.7561824 -0.6320642 -0.1693612 0 -0.2582317 -0.966083 0 -0.2582317 -0.966083 0 -0.2582317 -0.966083 0 -0.2582317 -0.966083 0 -0.7015858 -0.712585 0 -0.7015858 -0.712585 0 -0.7015858 -0.712585 0 -0.7015858 -0.712585 0 -0.9676249 -0.2523927 0 -0.9676249 -0.2523927 0 -0.9676249 -0.2523927 0 -0.9676249 -0.2523927 0 -0.9664087 0.2570102 0 -0.9664087 0.2570102 0 -0.9664087 0.2570102 0 -0.9664087 0.2570102 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.2594229 0.9657639 0 -0.2594229 0.9657639 0 -0.2594229 0.9657639 0 -0.2594229 0.9657639 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.7079794 0.7062331 0 0.7079794 0.7062331 0 0.7079794 0.7062331 0 0.7079794 0.7062331 0 0.9657878 0.2593342 0 0.9657878 0.2593342 0 0.9657878 0.2593342 0 0.9657878 0.2593342 0 0.9663319 -0.257299 0 0.9663319 -0.257299 0 0.9663319 -0.257299 0 0.9663319 -0.257299 0 0.7047465 -0.7094592 0 0.7047465 -0.7094592 0 0.7047465 -0.7094592 0 0.7047465 -0.7094592 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings2_LShape-normals-array\" count=\"384\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_bearings2_LShape-map1\" name=\"rear_bearings2_LShape-map1\">\r\n          <float_array id=\"rear_bearings2_LShape-map1-array\" count=\"426\">0.8728809 0.5608082 0.8682202 0.5561476 0.8745868 0.5671748 0.8728809 0.5735415 0.8682202 0.5782021 0.8618536 0.579908 0.855487 0.5782021 0.8508263 0.5735415 0.8491204 0.5671748 0.8508263 0.5608082 0.855487 0.5561476 0.6579289 0.2188027 0.657929 0.1485035 0.6854293 0.1485035 0.6854293 0.2188028 0.6579289 0.0782041 0.6854292 0.07820415 0.6579289 0.8514967 0.6579289 0.7811973 0.6854292 0.7811972 0.6579289 0.710898 0.6854292 0.7108979 0.6579289 0.6405987 0.6854293 0.6405987 0.6579289 0.5702993 0.6854293 0.5702993 0.6579289 0.5 0.6854292 0.5 0.6579289 0.4297008 0.6854292 0.4297007 0.6579288 0.3594013 0.6854291 0.3594013 0.6579289 0.289102 0.6854293 0.2891021 0.657929 0.1485035 0.6579289 0.2188027 0.8618536 0.5544416 0.8697658 0.5909088 0.8783544 0.5994974 0.8814981 0.6112297 0.8783544 0.6229619 0.8697658 0.6315506 0.8580335 0.6346941 0.8463013 0.6315506 0.8377126 0.6229619 0.834569 0.6112297 0.8377126 0.5994974 0.8463013 0.5909088 0.8580335 0.5877652 0.6511683 0.2188026 0.6511684 0.1485035 0.6579289 0.0782041 0.6511683 0.07820427 0.6579289 0.8514967 0.6511684 0.8514967 0.6579289 0.7811973 0.6511684 0.7811973 0.6579289 0.710898 0.6511683 0.7108979 0.6579289 0.6405987 0.6511684 0.6405987 0.6579289 0.5702993 0.6511684 0.5702993 0.6579289 0.5 0.6511683 0.5 0.6579289 0.4297008 0.6511683 0.4297007 0.6579288 0.3594013 0.6511683 0.3594014 0.6579289 0.289102 0.6511684 0.2891021 0.6511684 0.1485035 0.6511683 0.2188026 0.4973663 0.2188027 0.4973663 0.1485035 0.6511683 0.07820427 0.4973663 0.0782041 0.6511684 0.8514967 0.4973663 0.8514967 0.6511684 0.7811973 0.4973662 0.7811973 0.6511683 0.7108979 0.4973663 0.7108979 0.6511684 0.6405987 0.4973662 0.6405987 0.6511684 0.5702993 0.4973663 0.5702994 0.6511683 0.5 0.4973663 0.5 0.6511683 0.4297007 0.4973663 0.4297007 0.6511683 0.3594014 0.4973663 0.3594013 0.6511684 0.2891021 0.4973663 0.2891021 0.2016377 0.2188028 0.2016377 0.1485034 0.2016377 0.07820415 0.2016377 0.8514967 0.2016378 0.7811973 0.2016377 0.710898 0.2016377 0.6405987 0.2016377 0.5702993 0.2016377 0.5 0.2016377 0.4297007 0.2016377 0.3594013 0.2016377 0.2891021 0.9120053 0.5222858 0.9120053 0.5231671 0.827477 0.5333264 0.8212466 0.527096 0.8214392 0.5267625 0.8278106 0.5331339 0.8297576 0.5418373 0.8301427 0.5418373 0.827477 0.5503482 0.8278106 0.5505408 0.8212466 0.5565787 0.8214392 0.5569122 0.8127357 0.5588592 0.8127357 0.5592443 0.8042248 0.5565787 0.8040322 0.5569122 0.7979944 0.5503482 0.7976608 0.5505408 0.7957138 0.5418373 0.7953287 0.5418373 0.7979944 0.5333264 0.7976608 0.5331339 0.8042248 0.527096 0.8040322 0.5267625 0.8127357 0.5248154 0.8127357 0.5244304 0.9273396 0.5320203 0.9208586 0.5255393 0.9212993 0.524776 0.9281028 0.5315796 0.9297118 0.5408735 0.930593 0.5408735 0.9273396 0.5497267 0.9281028 0.5501674 0.9208586 0.5562077 0.9212993 0.556971 0.9120053 0.5585799 0.9120053 0.5594613 0.9031522 0.5562077 0.9027115 0.556971 0.8966712 0.5497267 0.8959079 0.5501674 0.8942989 0.5408735 0.8934176 0.5408735 0.8966712 0.5320203 0.8959079 0.5315796 0.9031522 0.5255393 0.9027115 0.524776 0.6579289 0.9217958 0.6854293 0.8514967 0.6854292 0.9217958 0.6579289 0.9217958 0.6511684 0.9217958 0.6511684 0.9217958 0.4973662 0.9217958 0.2016376 0.9217958 0.8405883 0.6112297 0.8429206 0.6199552 0.8492716 0.6264057 0.8580335 0.6286911 0.8667731 0.6263669 0.8731749 0.6199715 0.8755231 0.6112297 0.8731716 0.6024898 0.8667677 0.5961016 0.8580335 0.5937564 0.8492895 0.5960845 0.8429155 0.6025013 0.8562516 0.5671748 0.8565179 0.5640942 0.8584476 0.5612754 0.8618536 0.5609524 0.8659478 0.5600834 0.8672163 0.5640787 0.8677572 0.5671748 0.8677806 0.5705968 0.8645437 0.5718343 0.8618536 0.5722837 0.8587529 0.5725453 0.8571286 0.5699028 0.4282282 0.5000921 0.4282282 0.5704643 0.7385792 0.5704643 0.7385792 0.5000921 0.4282282 0.4297071 0.7385792 0.4297071 0.4282282 0.3592896 0.7385792 0.3592896 0.4282282 0.2888258 0.7385792 0.2888258 0.4282282 0.2183164 0.7385792 0.2183164 0.7385792 0.1477737 0.4282282 0.9227813 0.7385792 0.9227813 0.4282282 0.8522385 0.7385793 0.8522385 0.4282283 0.7817297 0.7385793 0.7817297 0.4282283 0.7112665 0.7385793 0.7112665 0.4282282 0.6408486 0.7385792 0.6408486 0.4282282 0.07721862 0.4282282 0.1477737 0.7385792 0.07721862</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings2_LShape-map1-array\" count=\"213\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rear_bearings2_LShape-vertices\" name=\"rear_bearings2_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rear_bearings2_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"108\">\r\n          <input semantic=\"VERTEX\" source=\"#rear_bearings2_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rear_bearings2_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rear_bearings2_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 11 1 1 12 13 2 13 12 3 14 1 4 12 2 5 15 14 6 16 13 7 13 2 8 155 3 9 17 15 10 156 14 11 157 3 12 17 4 13 18 16 14 19 15 15 156 4 16 18 5 17 20 17 18 21 16 19 19 5 20 20 6 21 22 18 22 23 17 23 21 6 24 22 7 25 24 19 26 25 18 27 23 7 28 24 8 29 26 20 30 27 19 31 25 8 32 26 9 33 28 21 34 29 20 35 27 9 36 28 10 37 30 22 38 31 21 39 29 10 40 30 11 41 32 23 42 33 22 43 31 11 44 32 0 45 11 12 46 14 23 47 33 73 48 0 72 49 1 100 50 179 101 51 180 74 52 2 73 48 0 101 51 180 102 53 181 75 54 3 74 52 2 102 53 181 103 55 182 76 56 4 75 54 3 103 55 182 104 57 183 77 58 5 76 56 4 104 57 183 105 59 184 78 60 6 77 58 5 105 59 184 106 61 185 79 62 7 78 60 6 106 61 185 107 63 186 80 64 8 79 62 7 107 63 186 96 65 175 81 66 9 80 64 8 96 65 175 97 67 176 82 68 10 81 66 9 97 67 176 98 69 177 83 70 36 82 68 10 98 69 177 99 71 178 72 49 1 83 70 36 99 71 178 100 50 179 12 72 37 13 73 38 91 74 170 92 75 171 13 73 38 14 76 39 90 77 169 91 74 170 14 76 39 15 78 40 89 79 168 90 77 169 15 78 40 16 80 41 88 81 167 89 79 168 16 80 41 17 82 42 87 83 166 88 81 167 17 82 42 18 84 43 86 85 165 87 83 166 18 84 43 19 86 44 85 87 164 86 85 165 19 86 44 20 88 45 84 89 163 85 87 164 20 88 45 21 90 46 95 91 174 84 89 163 21 90 46 22 92 47 94 93 173 95 91 174 22 92 47 23 94 48 93 95 172 94 93 173 23 94 48 12 72 37 92 75 171 93 95 172 1 96 109 0 97 110 24 98 111 25 99 112 2 100 113 1 101 109 25 102 112 26 103 114 3 104 115 2 105 113 26 106 114 27 107 116 4 108 117 3 109 115 27 110 116 28 111 118 5 112 119 4 113 117 28 114 118 29 115 120 6 116 121 5 117 119 29 118 120 30 119 122 7 120 123 6 121 121 30 122 122 31 123 124 8 124 125 7 125 123 31 126 124 32 127 126 9 128 127 8 129 125 32 130 126 33 131 128 10 132 129 9 133 127 33 134 128 34 135 130 11 136 131 10 137 129 34 138 130 35 139 132 0 140 110 11 141 131 35 142 132 24 143 111 25 144 34 24 145 35 36 146 49 37 147 50 26 148 51 25 149 34 37 150 50 38 151 52 27 152 53 26 153 158 38 154 159 39 155 54 28 156 55 27 157 53 39 158 54 40 159 56 29 160 57 28 161 55 40 162 56 41 163 58 30 164 59 29 165 57 41 166 58 42 167 60 31 168 61 30 169 59 42 170 60 43 171 62 32 172 63 31 173 61 43 174 62 44 175 64 33 176 65 32 177 63 44 178 64 45 179 66 34 180 67 33 181 65 45 182 66 46 183 68 35 184 69 34 185 67 46 186 68 47 187 70 24 188 35 35 189 69 47 190 70 36 191 49 37 192 133 36 193 134 48 194 135 49 195 136 38 196 137 37 197 133 49 198 136 50 199 138 39 200 139 38 201 137 50 202 138 51 203 140 40 204 141 39 205 139 51 206 140 52 207 142 41 208 143 40 209 141 52 210 142 53 211 144 42 212 145 41 213 143 53 214 144 54 215 146 43 216 147 42 217 145 54 218 146 55 219 148 44 220 149 43 221 147 55 222 148 56 223 150 45 224 151 44 225 149 56 226 150 57 227 152 46 228 153 45 229 151 57 230 152 58 231 154 47 232 108 46 233 153 58 234 154 59 235 107 36 236 134 47 237 108 59 238 107 48 239 135 49 240 71 48 241 72 60 242 73 61 243 74 50 244 75 49 245 71 61 246 74 62 247 76 51 248 77 50 249 160 62 250 161 63 251 78 52 252 79 51 253 77 63 254 78 64 255 80 53 256 81 52 257 79 64 258 80 65 259 82 54 260 83 53 261 81 65 262 82 66 263 84 55 264 85 54 265 83 66 266 84 67 267 86 56 268 87 55 269 85 67 270 86 68 271 88 57 272 89 56 273 87 68 274 88 69 275 90 58 276 91 57 277 89 69 278 90 70 279 92 59 280 93 58 281 91 70 282 92 71 283 94 48 284 72 59 285 93 71 286 94 60 287 73 61 288 74 60 289 73 72 290 95 73 291 96 62 292 76 61 293 74 73 294 96 74 295 97 63 296 78 62 297 161 74 298 162 75 299 98 64 300 80 63 301 78 75 302 98 76 303 99 65 304 82 64 305 80 76 306 99 77 307 100 66 308 84 65 309 82 77 310 100 78 311 101 67 312 86 66 313 84 78 314 101 79 315 102 68 316 88 67 317 86 79 318 102 80 319 103 69 320 90 68 321 88 80 322 103 81 323 104 70 324 92 69 325 90 81 326 104 82 327 105 71 328 94 70 329 92 82 330 105 83 331 106 60 332 73 71 333 94 83 334 106 72 335 95 85 336 187 84 337 188 96 338 189 107 339 190 86 340 191 85 341 187 107 342 190 106 343 192 87 344 193 86 345 191 106 346 192 105 347 194 88 348 195 87 349 193 105 350 194 104 351 196 89 352 197 88 353 195 104 354 196 103 355 198 90 356 211 89 357 197 103 358 198 102 359 199 91 360 210 90 361 211 102 362 199 101 363 212 92 364 202 91 365 200 101 366 201 100 367 203 93 368 204 92 369 202 100 370 203 99 371 205 94 372 206 93 373 204 99 374 205 98 375 207 95 376 208 94 377 206 98 378 207 97 379 209 84 380 188 95 381 208 97 382 209 96 383 189</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rear_bearings2_LShape</originalMayaNodeId>\r\n          <double_sided>0</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rear_Spacer_LShape\" name=\"rear_Spacer_LShape\">\r\n      <mesh>\r\n        <source id=\"rear_Spacer_LShape-positions\" name=\"rear_Spacer_LShape-positions\">\r\n          <float_array id=\"rear_Spacer_LShape-positions-array\" count=\"216\">-0.5819776 -2.305861 -1.33129 -0.5819776 -1.33129 -2.305861 -0.5819776 0 -2.66258 -0.5819776 1.33129 -2.305861 -0.5819776 2.305861 -1.33129 -0.5819776 2.66258 0 -0.5819776 2.305861 1.33129 -0.5819776 1.33129 2.305861 -0.5819776 0 2.66258 -0.5819776 -1.33129 2.305861 -0.5819776 -2.305861 1.33129 -0.5819776 -2.66258 0 0.2764489 -2.305861 -1.33129 0.2764489 -1.33129 -2.305861 0.2764489 0 -2.66258 0.2764489 1.33129 -2.305861 0.2764489 2.305861 -1.33129 0.2764489 2.66258 0 0.2764489 2.305861 1.33129 0.2764489 1.33129 2.305861 0.2764489 0 2.66258 0.2764489 -1.33129 2.305861 0.2764489 -2.305861 1.33129 0.2764489 -2.66258 0 0.3561432 -2.257059 -1.303113 0.3561432 -1.303113 -2.257059 0.3561432 0 -2.606226 0.3561432 1.303113 -2.257059 0.3561432 2.257059 -1.303113 0.3561432 2.606226 0 0.3561432 2.257059 1.303113 0.3561432 1.303113 2.257059 0.3561432 0 2.606226 0.3561432 -1.303113 2.257059 0.3561432 -2.257059 1.303113 0.3561432 -2.606226 0 -0.6417483 -2.244858 -1.29607 -0.6417483 -1.29607 -2.244858 -0.6417483 0 -2.592139 -0.6417483 1.29607 -2.244858 -0.6417483 2.244858 -1.29607 -0.6417483 2.592139 0 -0.6417483 2.244858 1.29607 -0.6417483 1.29607 2.244858 -0.6417483 0 2.592139 -0.6417483 -1.29607 2.244858 -0.6417483 -2.244858 1.29607 -0.6417483 -2.592139 0 0.3561432 0 1.914141 0.3561432 0.9573827 1.658235 0.3561432 1.665162 0.9613817 0.3561432 1.915926 0 0.3561432 1.660906 -0.9589244 0.3561432 0.9591798 -1.661348 0.3561432 0 -1.919003 0.3561432 -0.9589695 -1.660984 0.3561432 -1.659885 -0.9583349 0.3561432 -1.917218 0 0.3561432 -1.66864 0.9633897 0.3561432 -0.9577058 1.658795 -0.6417483 0 1.914141 -0.6417483 0.9573827 1.658235 -0.6417483 1.665162 0.9613817 -0.6417483 1.915926 0 -0.6417483 1.660906 -0.9589244 -0.6417483 0.9591798 -1.661348 -0.6417483 0 -1.919003 -0.6417483 -0.9589695 -1.660984 -0.6417483 -1.659885 -0.9583349 -0.6417483 -1.917218 0 -0.6417483 -1.66864 0.9594177 -0.6417483 -0.9577058 1.658795</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_Spacer_LShape-positions-array\" count=\"72\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_Spacer_LShape-normals\" name=\"rear_Spacer_LShape-normals\">\r\n          <float_array id=\"rear_Spacer_LShape-normals-array\" count=\"720\">0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.564013 -0.5839047 -0.5839047 0.564013 -0.5839047 -0.5839047 0.564013 -0.5839047 -0.5839047 0.564013 -0.5839047 -0.5839047 0.5640143 -0.2137236 -0.7976279 0.5640143 -0.2137236 -0.7976279 0.5640143 -0.2137236 -0.7976279 0.5640143 -0.2137236 -0.7976279 0.5640146 0.2137236 -0.7976276 0.5640146 0.2137236 -0.7976276 0.5640146 0.2137236 -0.7976276 0.5640146 0.2137236 -0.7976276 0.5640129 0.5839048 -0.5839047 0.5640129 0.5839048 -0.5839047 0.5640129 0.5839048 -0.5839047 0.5640129 0.5839048 -0.5839047 0.5640138 0.7976282 -0.2137238 0.5640138 0.7976282 -0.2137238 0.5640138 0.7976282 -0.2137238 0.5640138 0.7976282 -0.2137238 0.5640139 0.7976282 0.2137238 0.5640139 0.7976282 0.2137238 0.5640139 0.7976282 0.2137238 0.5640139 0.7976282 0.2137238 0.564013 0.5839047 0.5839047 0.564013 0.5839047 0.5839047 0.564013 0.5839047 0.5839047 0.564013 0.5839047 0.5839047 0.5640143 0.2137236 0.7976279 0.5640143 0.2137236 0.7976279 0.5640143 0.2137236 0.7976279 0.5640143 0.2137236 0.7976279 0.5640146 -0.2137236 0.7976276 0.5640146 -0.2137236 0.7976276 0.5640146 -0.2137236 0.7976276 0.5640146 -0.2137236 0.7976276 0.5640129 -0.5839048 0.5839047 0.5640129 -0.5839048 0.5839047 0.5640129 -0.5839048 0.5839047 0.5640129 -0.5839048 0.5839047 0.5640138 -0.7976282 0.2137238 0.5640138 -0.7976282 0.2137238 0.5640138 -0.7976282 0.2137238 0.5640138 -0.7976282 0.2137238 0.5640139 -0.7976282 -0.2137238 0.5640139 -0.7976282 -0.2137238 0.5640139 -0.7976282 -0.2137238 0.5640139 -0.7976282 -0.2137238 -0.7512878 -0.4666727 -0.4666725 -0.7512878 -0.4666727 -0.4666725 -0.7512878 -0.4666727 -0.4666725 -0.7512878 -0.4666727 -0.4666725 -0.7512876 -0.1708142 -0.6374869 -0.7512876 -0.1708142 -0.6374869 -0.7512876 -0.1708142 -0.6374869 -0.7512876 -0.1708142 -0.6374869 -0.7512875 0.1708143 -0.6374871 -0.7512875 0.1708143 -0.6374871 -0.7512875 0.1708143 -0.6374871 -0.7512875 0.1708143 -0.6374871 -0.7512876 0.4666729 -0.4666727 -0.7512876 0.4666729 -0.4666727 -0.7512876 0.4666729 -0.4666727 -0.7512876 0.4666729 -0.4666727 -0.7512873 0.6374872 -0.1708143 -0.7512873 0.6374872 -0.1708143 -0.7512873 0.6374872 -0.1708143 -0.7512873 0.6374872 -0.1708143 -0.7512872 0.6374874 0.1708143 -0.7512872 0.6374874 0.1708143 -0.7512872 0.6374874 0.1708143 -0.7512872 0.6374874 0.1708143 -0.7512878 0.4666727 0.4666725 -0.7512878 0.4666727 0.4666725 -0.7512878 0.4666727 0.4666725 -0.7512878 0.4666727 0.4666725 -0.7512876 0.1708142 0.6374869 -0.7512876 0.1708142 0.6374869 -0.7512876 0.1708142 0.6374869 -0.7512876 0.1708142 0.6374869 -0.7512875 -0.1708143 0.6374871 -0.7512875 -0.1708143 0.6374871 -0.7512875 -0.1708143 0.6374871 -0.7512875 -0.1708143 0.6374871 -0.7512876 -0.4666729 0.4666727 -0.7512876 -0.4666729 0.4666727 -0.7512876 -0.4666729 0.4666727 -0.7512876 -0.4666729 0.4666727 -0.7512873 -0.6374872 0.1708143 -0.7512873 -0.6374872 0.1708143 -0.7512873 -0.6374872 0.1708143 -0.7512873 -0.6374872 0.1708143 -0.7512872 -0.6374874 -0.1708143 -0.7512872 -0.6374874 -0.1708143 -0.7512872 -0.6374874 -0.1708143 -0.7512872 -0.6374874 -0.1708143 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.2582317 -0.9660831 0 -0.2582317 -0.9660831 0 -0.2582317 -0.9660831 0 -0.2582317 -0.9660831 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.967625 -0.2523928 0 -0.967625 -0.2523928 0 -0.967625 -0.2523928 0 -0.967625 -0.2523928 0 -0.9664087 0.2570105 0 -0.9664087 0.2570105 0 -0.9664087 0.2570105 0 -0.9664087 0.2570105 0 -0.707458 0.7067555 0 -0.707458 0.7067555 0 -0.707458 0.7067555 0 -0.707458 0.7067555 0 -0.2594232 0.9657638 0 -0.2594232 0.9657638 0 -0.2594232 0.9657638 0 -0.2594232 0.9657638 0 0.2598183 0.9656576 0 0.2598183 0.9656576 0 0.2598183 0.9656576 0 0.2598183 0.9656576 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.9657875 0.2593346 0 0.9657875 0.2593346 0 0.9657875 0.2593346 0 0.9657875 0.2593346 4.98143e-4 0.9681616 -0.2503254 4.98143e-4 0.9681616 -0.2503254 4.98143e-4 0.9681616 -0.2503254 4.98143e-4 0.9681616 -0.2503254 0.001420682 0.7002738 -0.713873 0.001420682 0.7002738 -0.713873 0.001420682 0.7002738 -0.713873 0.001420682 0.7002738 -0.713873 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_Spacer_LShape-normals-array\" count=\"240\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_Spacer_LShape-map1\" name=\"rear_Spacer_LShape-map1\">\r\n          <float_array id=\"rear_Spacer_LShape-map1-array\" count=\"252\">0.4600119 0.2187839 0.4600119 0.1484799 0.5582584 0.1484799 0.5582584 0.2187839 0.4600119 0.0781759 0.5582583 0.0781759 0.460012 0.8515201 0.460012 0.781216 0.5582584 0.781216 0.460012 0.710912 0.5582584 0.710912 0.4600119 0.6406081 0.5582584 0.6406081 0.4600119 0.570304 0.5582584 0.570304 0.4600119 0.5 0.5582584 0.5 0.4600119 0.429696 0.5582584 0.429696 0.4600119 0.359392 0.5582584 0.359392 0.4600119 0.289088 0.5582583 0.289088 0.7875311 0.1484799 0.787531 0.2187839 0.787531 0.0781759 0.787531 0.781216 0.787531 0.710912 0.787531 0.6406081 0.787531 0.570304 0.787531 0.5 0.7875309 0.429696 0.5 0.5544413 0.4675921 0.563125 0.7875309 0.359392 0.787531 0.289088 0.2799621 0.2187839 0.2799621 0.1484799 0.2799621 0.0781759 0.2799621 0.8515201 0.2799621 0.781216 0.2799621 0.710912 0.2799621 0.6406081 0.2799621 0.570304 0.279962 0.5 0.2799621 0.429696 0.5558288 0.5870245 0.5322328 0.5634284 0.2799621 0.359392 0.279962 0.289088 0.4438678 0.5868492 0.4351841 0.6192572 0.4438678 0.6516652 0.4675921 0.6753894 0.5 0.6840731 0.532408 0.6753894 0.5561322 0.6516652 0.5648159 0.6192572 0.5561322 0.5868492 0.532408 0.563125 0.5 0.5547917 0.4677672 0.5634284 0.4441712 0.5870245 0.4355345 0.6192572 0.4441712 0.65149 0.4677672 0.675086 0.5 0.6837227 0.5322328 0.675086 0.5558288 0.65149 0.5644655 0.6192572 0.5582584 0.9218241 0.5582583 0.8515201 0.787531 0.8515201 0.7875311 0.9218241 0.460012 0.9218241 0.2799621 0.9218241 0.4616158 0.6192572 0.470056 0.6365454 0.4831887 0.6483753 0.5 0.6458355 0.5130834 0.6419183 0.5253736 0.6339067 0.5340958 0.6192572 0.5362645 0.5983199 0.5218852 0.581351 0.5 0.5753109 0.4760409 0.5777588 0.4610011 0.5967411 0.4694272 0.6192572 0.4773369 0.6323417 0.4872977 0.6412583 0.5 0.6447307 0.5127367 0.641318 0.5222757 0.6321181 0.5231497 0.6192572 0.5194632 0.6080201 0.511604 0.5991585 0.5 0.5950089 0.4875466 0.5976872 0.4810066 0.6082914 0.6895286 0.5703047 0.6895286 0.5000919 0.4772789 0.5000919 0.4772789 0.5703047 0.6895286 0.4298663 0.4772789 0.4298663 0.6895286 0.3596082 0.4772789 0.3596082 0.6895286 0.289304 0.4772788 0.2893039 0.6895286 0.2189542 0.4772789 0.2189542 0.6895286 0.1485711 0.6895286 0.921824 0.4772789 0.9218241 0.6895286 0.851441 0.4772789 0.851441 0.6895286 0.7810917 0.4772789 0.7810917 0.6895286 0.7110285 0.4772789 0.7107888 0.6895286 0.6405296 0.4772788 0.6405296 0.6895286 0.07817596 0.4772788 0.07817593 0.4772788 0.1485711</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_Spacer_LShape-map1-array\" count=\"126\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rear_Spacer_LShape-vertices\" name=\"rear_Spacer_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rear_Spacer_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"72\">\r\n          <input semantic=\"VERTEX\" source=\"#rear_Spacer_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rear_Spacer_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rear_Spacer_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 13 2 2 12 3 3 1 4 1 2 5 4 14 6 5 13 7 2 2 8 74 3 9 6 15 10 71 14 11 70 3 12 6 4 13 7 16 14 8 15 15 71 4 16 7 5 17 9 17 18 10 16 19 8 5 20 9 6 21 11 18 22 12 17 23 10 6 24 11 7 25 13 19 26 14 18 27 12 7 28 13 8 29 15 20 30 16 19 31 14 8 32 15 9 33 17 21 34 18 20 35 16 9 36 17 10 37 19 22 38 20 21 39 18 10 40 19 11 41 21 23 42 22 22 43 20 11 44 21 0 45 0 12 46 3 23 47 22 24 48 59 25 49 58 55 50 83 56 51 84 25 49 58 26 52 57 54 53 82 55 50 83 26 52 57 27 54 56 53 55 81 54 53 82 27 54 56 28 56 55 52 57 80 53 55 81 28 56 55 29 58 54 51 59 79 52 57 80 29 58 54 30 60 53 50 61 78 51 59 79 30 60 53 31 62 52 49 63 77 50 61 78 31 62 52 32 64 51 48 65 76 49 63 77 32 64 51 33 66 50 59 67 87 48 65 76 33 66 50 34 68 33 58 69 86 59 67 87 34 68 33 35 70 32 57 71 85 58 69 86 35 70 32 24 48 59 56 51 84 57 71 85 12 72 3 13 73 2 25 74 23 24 75 24 13 76 2 14 77 5 26 78 25 25 79 23 14 80 70 15 81 71 27 82 72 26 83 73 15 84 71 16 85 8 28 86 26 27 87 72 16 88 8 17 89 10 29 90 27 28 91 26 17 92 10 18 93 12 30 94 28 29 95 27 18 96 12 19 97 14 31 98 29 30 99 28 19 100 14 20 101 16 32 102 30 31 103 29 20 104 16 21 105 18 33 106 31 32 107 30 21 108 18 22 109 20 34 110 34 33 111 31 22 112 20 23 113 22 35 114 35 34 115 34 23 116 22 12 117 3 24 118 24 35 119 35 1 120 1 0 121 0 36 122 36 37 123 37 2 124 4 1 125 1 37 126 37 38 127 38 3 128 6 2 129 74 38 130 75 39 131 39 4 132 7 3 133 6 39 134 39 40 135 40 5 136 9 4 137 7 40 138 40 41 139 41 6 140 11 5 141 9 41 142 41 42 143 42 7 144 13 6 145 11 42 146 42 43 147 43 8 148 15 7 149 13 43 150 43 44 151 44 9 152 17 8 153 15 44 154 44 45 155 45 10 156 19 9 157 17 45 158 45 46 159 48 11 160 21 10 161 19 46 162 48 47 163 49 0 164 0 11 165 21 47 166 49 36 167 36 44 168 63 43 169 64 61 170 89 60 171 88 43 169 64 42 172 65 62 173 90 61 170 89 42 172 65 41 174 66 63 175 91 62 173 90 41 174 66 40 176 67 64 177 92 63 175 91 40 176 67 39 178 68 65 179 93 64 177 92 39 178 68 38 180 69 66 181 94 65 179 93 38 180 69 37 182 46 67 183 95 66 181 94 37 182 46 36 184 47 68 185 96 67 183 95 36 184 47 47 186 60 69 187 97 68 185 96 47 186 60 46 188 61 70 189 98 69 187 97 46 188 61 45 190 62 71 191 99 70 189 98 45 190 62 44 168 63 60 171 88 71 191 99 60 192 100 61 193 101 49 194 102 48 195 103 61 196 101 62 197 104 50 198 105 49 199 102 62 200 104 63 201 106 51 202 107 50 203 105 63 204 106 64 205 108 52 206 109 51 207 107 64 208 108 65 209 110 53 210 111 52 211 109 65 212 110 66 213 112 54 214 125 53 215 111 66 216 112 67 217 123 55 218 124 54 219 125 67 220 113 68 221 115 56 222 116 55 223 114 68 224 115 69 225 117 57 226 118 56 227 116 69 228 117 70 229 119 58 230 120 57 231 118 70 232 119 71 233 121 59 234 122 58 235 120 71 236 121 60 237 100 48 238 103 59 239 122</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rear_Spacer_LShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rear_bearings1_LShape\" name=\"rear_bearings1_LShape\">\r\n      <mesh>\r\n        <source id=\"rear_bearings1_LShape-positions\" name=\"rear_bearings1_LShape-positions\">\r\n          <float_array id=\"rear_bearings1_LShape-positions-array\" count=\"288\">-0.9310441 -2.388317 -1.378895 -0.9310441 -1.378895 -2.388317 -0.9310441 0 -2.757791 -0.9310441 1.378895 -2.388317 -0.9310441 2.388317 -1.378895 -0.9310441 2.757791 0 -0.9310441 2.388317 1.378895 -0.9310441 1.378895 2.388317 -0.9310441 0 2.757791 -0.9310441 -1.378895 2.388317 -0.9310441 -2.388317 1.378895 -0.9310441 -2.757791 0 1.062718 -2.388317 -1.378895 1.062718 -1.378895 -2.388317 1.062718 0 -2.757791 1.062718 1.378895 -2.388317 1.062718 2.388317 -1.378895 1.062718 2.757791 0 1.062718 2.388317 1.378895 1.062718 1.378895 2.388317 1.062718 0 2.757791 1.062718 -1.378895 2.388317 1.062718 -2.388317 1.378895 1.062718 -2.757791 0 1.132554 -2.315003 -1.336568 1.132554 -1.336568 -2.315003 1.132554 0 -2.673136 1.132554 1.336568 -2.315003 1.132554 2.315003 -1.336568 1.132554 2.673136 0 1.132554 2.315003 1.336568 1.132554 1.336568 2.315003 1.132554 0 2.673136 1.132554 -1.336568 2.315003 1.132554 -2.315003 1.336568 1.132554 -2.673136 0 -0.9809277 -2.333332 -1.34715 -0.9809277 -1.34715 -2.333332 -0.9809277 0 -2.6943 -0.9809277 1.34715 -2.333332 -0.9809277 2.333332 -1.34715 -0.9809277 2.6943 0 -0.9809277 2.333332 1.34715 -0.9809277 1.34715 2.333332 -0.9809277 0 2.6943 -0.9809277 -1.34715 2.333332 -0.9809277 -2.333332 1.34715 -0.9809277 -2.6943 0 -1.030811 -2.388317 -1.378895 -1.030811 -1.378895 -2.388317 -1.030811 0 -2.757791 -1.030811 1.378895 -2.388317 -1.030811 2.388317 -1.378895 -1.030811 2.757791 0 -1.030811 2.388317 1.378895 -1.030811 1.378895 2.388317 -1.030811 0 2.757791 -1.030811 -1.378895 2.388317 -1.030811 -2.388317 1.378895 -1.030811 -2.757791 0 -1.190439 -2.388317 -1.378895 -1.190439 -1.378895 -2.388317 -1.190439 0 -2.757791 -1.190439 1.378895 -2.388317 -1.190439 2.388317 -1.378895 -1.190439 2.757791 0 -1.190439 2.388317 1.378895 -1.190439 1.378895 2.388317 -1.190439 0 2.757791 -1.190439 -1.378895 2.388317 -1.190439 -2.388317 1.378895 -1.190439 -2.757791 0 -1.190439 0 1.917008 -1.190439 -0.9591399 1.661279 -1.190439 -1.671139 0.9608545 -1.190439 -1.92009 0 -1.190439 -1.662371 -0.9597703 -1.190439 -0.9604057 -1.663472 -1.190439 0 -1.921876 -1.190439 0.9606165 -1.663836 -1.190439 1.663393 -0.9603606 -1.190439 1.918795 0 -1.190439 1.667656 0.9628216 -1.190439 0.9588164 1.660719 1.132554 0 1.917008 1.132554 0.9588164 1.660719 1.132554 1.667656 0.9628216 1.132554 1.918795 0 1.132554 1.663393 -0.9603606 1.132554 0.9606165 -1.663836 1.132554 0 -1.921876 1.132554 -0.9604057 -1.663472 1.132554 -1.662371 -0.9597703 1.132554 -1.92009 0 1.132554 -1.671139 0.9608545 1.132554 -0.9591399 1.661279</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings1_LShape-positions-array\" count=\"96\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_bearings1_LShape-normals\" name=\"rear_bearings1_LShape-normals\">\r\n          <float_array id=\"rear_bearings1_LShape-normals-array\" count=\"1008\">0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.2588187 -0.9659259 0 -0.2588187 -0.9659259 0 -0.2588187 -0.9659259 0 -0.2588187 -0.9659259 0 0.2588187 -0.9659259 0 0.2588187 -0.9659259 0 0.2588187 -0.9659259 0 0.2588187 -0.9659259 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.9659259 -0.2588189 0 0.9659259 -0.2588189 0 0.9659259 -0.2588189 0 0.9659259 -0.2588189 0 0.9659259 0.2588189 0 0.9659259 0.2588189 0 0.9659259 0.2588189 0 0.9659259 0.2588189 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.2588187 0.9659259 0 0.2588187 0.9659259 0 0.2588187 0.9659259 0 0.2588187 0.9659259 0 -0.2588187 0.9659259 0 -0.2588187 0.9659259 0 -0.2588187 0.9659259 0 -0.2588187 0.9659259 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.9659259 0.2588189 0 -0.9659259 0.2588189 0 -0.9659259 0.2588189 0 -0.9659259 0.2588189 0 -0.9659259 -0.2588189 0 -0.9659259 -0.2588189 0 -0.9659259 -0.2588189 0 -0.9659259 -0.2588189 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7604148 -0.4592218 -0.459222 0.7604148 -0.4592218 -0.459222 0.7604148 -0.4592218 -0.459222 0.7604148 -0.4592218 -0.459222 0.7604133 -0.1680875 -0.6273103 0.7604133 -0.1680875 -0.6273103 0.7604133 -0.1680875 -0.6273103 0.7604133 -0.1680875 -0.6273103 0.7604136 0.1680873 -0.6273101 0.7604136 0.1680873 -0.6273101 0.7604136 0.1680873 -0.6273101 0.7604136 0.1680873 -0.6273101 0.7604145 0.4592221 -0.459222 0.7604145 0.4592221 -0.459222 0.7604145 0.4592221 -0.459222 0.7604145 0.4592221 -0.459222 0.7604135 0.6273102 -0.1680873 0.7604135 0.6273102 -0.1680873 0.7604135 0.6273102 -0.1680873 0.7604135 0.6273102 -0.1680873 0.7604136 0.62731 0.1680873 0.7604136 0.62731 0.1680873 0.7604136 0.62731 0.1680873 0.7604136 0.62731 0.1680873 0.7604148 0.4592218 0.459222 0.7604148 0.4592218 0.459222 0.7604148 0.4592218 0.459222 0.7604148 0.4592218 0.459222 0.7604133 0.1680875 0.6273103 0.7604133 0.1680875 0.6273103 0.7604133 0.1680875 0.6273103 0.7604133 0.1680875 0.6273103 0.7604136 -0.1680873 0.6273101 0.7604136 -0.1680873 0.6273101 0.7604136 -0.1680873 0.6273101 0.7604136 -0.1680873 0.6273101 0.7604145 -0.4592221 0.459222 0.7604145 -0.4592221 0.459222 0.7604145 -0.4592221 0.459222 0.7604145 -0.4592221 0.459222 0.7604135 -0.6273102 0.1680873 0.7604135 -0.6273102 0.1680873 0.7604135 -0.6273102 0.1680873 0.7604135 -0.6273102 0.1680873 0.7604136 -0.62731 -0.1680873 0.7604136 -0.62731 -0.1680873 0.7604136 -0.62731 -0.1680873 0.7604136 -0.62731 -0.1680873 -0.7757757 -0.4461906 -0.4461908 -0.7757757 -0.4461906 -0.4461908 -0.7757757 -0.4461906 -0.4461908 -0.7757757 -0.4461906 -0.4461908 -0.7757733 -0.1633179 -0.6095106 -0.7757733 -0.1633179 -0.6095106 -0.7757733 -0.1633179 -0.6095106 -0.7757733 -0.1633179 -0.6095106 -0.7757735 0.1633177 -0.6095104 -0.7757735 0.1633177 -0.6095104 -0.7757735 0.1633177 -0.6095104 -0.7757735 0.1633177 -0.6095104 -0.7757758 0.4461904 -0.4461907 -0.7757758 0.4461904 -0.4461907 -0.7757758 0.4461904 -0.4461907 -0.7757758 0.4461904 -0.4461907 -0.7757748 0.6095088 -0.1633174 -0.7757748 0.6095088 -0.1633174 -0.7757748 0.6095088 -0.1633174 -0.7757748 0.6095088 -0.1633174 -0.7757747 0.6095089 0.1633174 -0.7757747 0.6095089 0.1633174 -0.7757747 0.6095089 0.1633174 -0.7757747 0.6095089 0.1633174 -0.7757757 0.4461906 0.4461908 -0.7757757 0.4461906 0.4461908 -0.7757757 0.4461906 0.4461908 -0.7757757 0.4461906 0.4461908 -0.7757733 0.1633179 0.6095106 -0.7757733 0.1633179 0.6095106 -0.7757733 0.1633179 0.6095106 -0.7757733 0.1633179 0.6095106 -0.7757735 -0.1633177 0.6095104 -0.7757735 -0.1633177 0.6095104 -0.7757735 -0.1633177 0.6095104 -0.7757735 -0.1633177 0.6095104 -0.7757758 -0.4461904 0.4461907 -0.7757758 -0.4461904 0.4461907 -0.7757758 -0.4461904 0.4461907 -0.7757758 -0.4461904 0.4461907 -0.7757748 -0.6095088 0.1633174 -0.7757748 -0.6095088 0.1633174 -0.7757748 -0.6095088 0.1633174 -0.7757748 -0.6095088 0.1633174 -0.7757747 -0.6095089 -0.1633174 -0.7757747 -0.6095089 -0.1633174 -0.7757747 -0.6095089 -0.1633174 -0.7757747 -0.6095089 -0.1633174 0.7757756 -0.4461907 -0.4461907 0.7757756 -0.4461907 -0.4461907 0.7757756 -0.4461907 -0.4461907 0.7757756 -0.4461907 -0.4461907 0.7757733 -0.1633176 -0.6095106 0.7757733 -0.1633176 -0.6095106 0.7757733 -0.1633176 -0.6095106 0.7757733 -0.1633176 -0.6095106 0.7757735 0.1633175 -0.6095104 0.7757735 0.1633175 -0.6095104 0.7757735 0.1633175 -0.6095104 0.7757735 0.1633175 -0.6095104 0.7757757 0.4461905 -0.4461907 0.7757757 0.4461905 -0.4461907 0.7757757 0.4461905 -0.4461907 0.7757757 0.4461905 -0.4461907 0.7757743 0.6095095 -0.1633172 0.7757743 0.6095095 -0.1633172 0.7757743 0.6095095 -0.1633172 0.7757743 0.6095095 -0.1633172 0.7757744 0.6095095 0.1633173 0.7757744 0.6095095 0.1633173 0.7757744 0.6095095 0.1633173 0.7757744 0.6095095 0.1633173 0.7757756 0.4461907 0.4461907 0.7757756 0.4461907 0.4461907 0.7757756 0.4461907 0.4461907 0.7757756 0.4461907 0.4461907 0.7757733 0.1633176 0.6095106 0.7757733 0.1633176 0.6095106 0.7757733 0.1633176 0.6095106 0.7757733 0.1633176 0.6095106 0.7757735 -0.1633175 0.6095104 0.7757735 -0.1633175 0.6095104 0.7757735 -0.1633175 0.6095104 0.7757735 -0.1633175 0.6095104 0.7757757 -0.4461905 0.4461907 0.7757757 -0.4461905 0.4461907 0.7757757 -0.4461905 0.4461907 0.7757757 -0.4461905 0.4461907 0.7757743 -0.6095095 0.1633172 0.7757743 -0.6095095 0.1633172 0.7757743 -0.6095095 0.1633172 0.7757743 -0.6095095 0.1633172 0.7757744 -0.6095095 -0.1633173 0.7757744 -0.6095095 -0.1633173 0.7757744 -0.6095095 -0.1633173 0.7757744 -0.6095095 -0.1633173 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.2588188 -0.9659259 0 -0.2588188 -0.9659259 0 -0.2588188 -0.9659259 0 -0.2588188 -0.9659259 0 0.2588188 -0.9659259 0 0.2588188 -0.9659259 0 0.2588188 -0.9659259 0 0.2588188 -0.9659259 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.965926 -0.2588188 0 0.965926 -0.2588188 0 0.965926 -0.2588188 0 0.965926 -0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.2588188 0.9659259 0 0.2588188 0.9659259 0 0.2588188 0.9659259 0 0.2588188 0.9659259 0 -0.2588188 0.9659259 0 -0.2588188 0.9659259 0 -0.2588188 0.9659259 0 -0.2588188 0.9659259 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 0.2576232 -0.9662455 0 0.2576232 -0.9662455 0 0.2576232 -0.9662455 0 0.2576232 -0.9662455 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.9680359 -0.2508118 0 0.9680359 -0.2508118 0 0.9680359 -0.2508118 0 0.9680359 -0.2508118 0 0.9657876 0.2593345 0 0.9657876 0.2593345 0 0.9657876 0.2593345 0 0.9657876 0.2593345 0 0.7079794 0.706233 0 0.7079794 0.706233 0 0.7079794 0.706233 0 0.7079794 0.706233 0 0.2598178 0.9656577 0 0.2598178 0.9656577 0 0.2598178 0.9656577 0 0.2598178 0.9656577 0 -0.259423 0.9657638 0 -0.259423 0.9657638 0 -0.259423 0.9657638 0 -0.259423 0.9657638 0 -0.707458 0.7067554 0 -0.707458 0.7067554 0 -0.707458 0.7067554 0 -0.707458 0.7067554 0 -0.9664086 0.2570105 0 -0.9664086 0.2570105 0 -0.9664086 0.2570105 0 -0.9664086 0.2570105 0 -0.967625 -0.2523925 0 -0.967625 -0.2523925 0 -0.967625 -0.2523925 0 -0.967625 -0.2523925 0 -0.7015853 -0.7125855 0 -0.7015853 -0.7125855 0 -0.7015853 -0.7125855 0 -0.7015853 -0.7125855 0 -0.2582316 -0.9660831 0 -0.2582316 -0.9660831 0 -0.2582316 -0.9660831 0 -0.2582316 -0.9660831</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings1_LShape-normals-array\" count=\"336\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_bearings1_LShape-map1\" name=\"rear_bearings1_LShape-map1\">\r\n          <float_array id=\"rear_bearings1_LShape-map1-array\" count=\"356\">0.3866208 0.5546799 0.3866208 0.5425612 0.6979387 0.1484798 0.6979386 0.2187839 0.3866208 0.5304426 0.6979387 0.0781759 0.3866208 0.6637479 0.3866208 0.6516292 0.6979386 0.781216 0.3866208 0.6395106 0.6979388 0.7109119 0.3866208 0.6273919 0.6979387 0.640608 0.3866208 0.6152732 0.6979387 0.5703039 0.3866208 0.6031546 0.6979387 0.4999999 0.3866208 0.591036 0.6979387 0.4296959 0.3866208 0.5789173 0.6979386 0.3593919 0.3866208 0.5667986 0.6979387 0.2890879 0.8606687 0.1484799 0.8606687 0.2187839 0.8606688 0.0781759 0.8606688 0.7812159 0.8606689 0.7109119 0.8606688 0.640608 0.8606688 0.5703039 0.8606688 0.4999999 0.8606688 0.4296959 0.8606687 0.3593919 0.8606687 0.2890879 0.3850619 0.5546799 0.3850619 0.5425612 0.3850619 0.5304426 0.3850619 0.6637479 0.3850619 0.6516292 0.3850619 0.6395106 0.3850619 0.6273919 0.3850619 0.6152732 0.3850619 0.6031546 0.3850619 0.591036 0.3850619 0.5789173 0.3850619 0.5667986 0.3183725 0.2187839 0.3183725 0.1484798 0.4745744 0.5594846 0.4600688 0.5449789 0.3183725 0.0781759 0.3183725 0.8515201 0.3183725 0.781216 0.3183726 0.7109119 0.3183725 0.640608 0.3183725 0.5703039 0.3183725 0.4999999 0.3183725 0.4296959 0.3183725 0.3593919 0.3183725 0.2890879 0.228534 0.2187839 0.228534 0.1484799 0.2285341 0.0781759 0.2285341 0.8515201 0.2285342 0.781216 0.228534 0.7109119 0.228534 0.640608 0.2285341 0.5703039 0.228534 0.4999999 0.228534 0.4296959 0.228534 0.3593919 0.228534 0.289088 0.4402536 0.5408859 0.4210466 0.5460324 0.4069862 0.5600929 0.4018397 0.5792998 0.4069862 0.5985067 0.4210466 0.6125672 0.4402536 0.6177137 0.4594605 0.6125672 0.4735209 0.5985067 0.4786674 0.5792998 0.4735209 0.5600929 0.4594605 0.5460324 0.4402536 0.5396694 0.4204383 0.5449789 0.4059327 0.5594846 0.4006232 0.5792998 0.4059327 0.599115 0.4204383 0.6136208 0.4402536 0.6189302 0.4600688 0.6136208 0.4745744 0.599115 0.4798839 0.5792998 0.6979387 0.921824 0.6979387 0.8515201 0.8606688 0.8515201 0.8606688 0.921824 0.3364607 0.921824 0.3850619 0.6758665 0.3835029 0.6758665 0.2285341 0.921824 0.3835029 0.5667986 0.3835029 0.5546799 0.3835029 0.5789173 0.3835029 0.591036 0.3835029 0.6031546 0.3835029 0.6152732 0.3835029 0.6273919 0.3835029 0.6395106 0.3835029 0.6516292 0.3835029 0.6637479 0.3835029 0.5304426 0.3183725 0.921824 0.3835029 0.5425612 0.3364608 0.289088 0.3364606 0.2187839 0.3364606 0.3593919 0.3364606 0.4296959 0.3364607 0.4999999 0.3364607 0.5703039 0.3364608 0.640608 0.3364608 0.710912 0.3364607 0.781216 0.3364608 0.8515201 0.3364607 0.0781759 0.3866208 0.6758665 0.3364607 0.1484799 0.4273612 0.5792998 0.4301611 0.573473 0.4336903 0.567932 0.4402536 0.5629957 0.4477768 0.5662691 0.4541965 0.5712498 0.4545345 0.5792998 0.4519714 0.5860652 0.4485759 0.5937145 0.4402536 0.5924738 0.4338015 0.5904751 0.4285578 0.5860524 0.4223629 0.5792998 0.4267166 0.5871153 0.4327717 0.5922588 0.4402536 0.593975 0.4475766 0.5919837 0.4531939 0.5867709 0.4553037 0.5792998 0.4527667 0.5720754 0.4463858 0.5686784 0.4402536 0.5675164 0.4332772 0.5672163 0.4286495 0.5726002 0.6836003 0.641499 0.6836003 0.5707896 0.4832071 0.5707897 0.4832071 0.641499 0.6836003 0.7124842 0.4832071 0.7124842 0.6836003 0.7830306 0.4832071 0.7830306 0.6836003 0.8538651 0.4832071 0.8538651 0.6836003 0.9247336 0.4832071 0.9247336 0.6836003 0.1461472 0.6836003 0.2170158 0.4832071 0.2170157 0.6836003 0.2878507 0.4832071 0.2878507 0.6836003 0.3586399 0.4832071 0.3586399 0.6836003 0.4293825 0.4832071 0.4293826 0.6836003 0.5000926 0.4832071 0.5000926 0.6836003 0.07526639 0.4832071 0.07526642 0.4832071 0.1461472</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings1_LShape-map1-array\" count=\"178\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rear_bearings1_LShape-vertices\" name=\"rear_bearings1_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rear_bearings1_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"96\">\r\n          <input semantic=\"VERTEX\" source=\"#rear_bearings1_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rear_bearings1_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rear_bearings1_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 116 1 1 127 13 2 2 12 3 3 1 4 127 2 5 125 14 6 5 13 7 2 2 8 98 3 9 124 15 10 95 14 11 94 3 12 124 4 13 123 16 14 8 15 15 95 4 16 123 5 17 122 17 18 10 16 19 8 5 20 122 6 21 121 18 22 12 17 23 10 6 24 121 7 25 120 19 26 14 18 27 12 7 28 120 8 29 119 20 30 16 19 31 14 8 32 119 9 33 118 21 34 18 20 35 16 9 36 118 10 37 117 22 38 20 21 39 18 10 40 117 11 41 115 23 42 22 22 43 20 11 44 115 0 45 116 12 46 3 23 47 22 61 48 48 60 49 49 76 50 132 77 51 133 62 52 93 61 48 48 77 51 133 78 53 134 63 54 92 62 52 93 78 53 134 79 55 135 64 56 91 63 54 92 79 55 135 80 57 136 65 58 90 64 56 91 80 57 136 81 59 137 66 60 89 65 58 90 81 59 137 82 61 138 67 62 88 66 60 89 82 61 138 83 63 139 68 64 87 67 62 88 83 63 139 72 65 128 69 66 86 68 64 87 72 65 128 73 67 129 70 68 85 69 66 86 73 67 129 74 69 130 71 70 84 70 68 85 74 69 130 75 71 131 60 49 49 71 70 84 75 71 131 76 50 132 24 72 83 25 73 82 91 74 147 92 75 148 25 73 82 26 76 81 90 77 146 91 74 147 26 76 81 27 78 80 89 79 145 90 77 146 27 78 80 28 80 79 88 81 144 89 79 145 28 80 79 29 82 78 87 83 143 88 81 144 29 82 78 30 84 77 86 85 142 87 83 143 30 84 77 31 86 76 85 87 141 86 85 142 31 86 76 32 88 75 84 89 140 85 87 141 32 88 75 33 90 74 95 91 151 84 89 140 33 90 74 34 92 73 94 93 150 95 91 151 34 92 73 35 94 72 93 95 149 94 93 150 35 94 72 24 72 83 92 75 148 93 95 149 12 96 3 13 97 2 25 98 23 24 99 24 13 100 2 14 101 5 26 102 25 25 103 23 14 104 94 15 105 95 27 106 96 26 107 97 15 108 95 16 109 8 28 110 26 27 111 96 16 112 8 17 113 10 29 114 27 28 115 26 17 116 10 18 117 12 30 118 28 29 119 27 18 120 12 19 121 14 31 122 29 30 123 28 19 124 14 20 125 16 32 126 30 31 127 29 20 128 16 21 129 18 33 130 31 32 131 30 21 132 18 22 133 20 34 134 32 33 135 31 22 136 20 23 137 22 35 138 33 34 139 32 23 140 22 12 141 3 24 142 24 35 143 33 1 144 1 0 145 0 36 146 34 37 147 35 2 148 4 1 149 1 37 150 35 38 151 36 3 152 6 2 153 126 38 154 99 39 155 37 4 156 7 3 157 6 39 158 37 40 159 38 5 160 9 4 161 7 40 162 38 41 163 39 6 164 11 5 165 9 41 166 39 42 167 40 7 168 13 6 169 11 42 170 40 43 171 41 8 172 15 7 173 13 43 174 41 44 175 42 9 176 17 8 177 15 44 178 42 45 179 43 10 180 19 9 181 17 45 182 43 46 183 44 11 184 21 10 185 19 46 186 44 47 187 45 0 188 0 11 189 21 47 190 45 36 191 34 37 192 35 36 193 34 48 194 103 49 195 114 38 196 36 37 197 35 49 198 114 50 199 112 39 200 37 38 201 99 50 202 100 51 203 111 40 204 38 39 205 37 51 206 111 52 207 110 41 208 39 40 209 38 52 210 110 53 211 109 42 212 40 41 213 39 53 214 109 54 215 108 43 216 41 42 217 40 54 218 108 55 219 107 44 220 42 43 221 41 55 222 107 56 223 106 45 224 43 44 225 42 56 226 106 57 227 105 46 228 44 45 229 43 57 230 105 58 231 104 47 232 45 46 233 44 58 234 104 59 235 102 36 236 34 47 237 45 59 238 102 48 239 103 49 240 47 48 241 46 60 242 60 61 243 61 50 244 50 49 245 47 61 246 61 62 247 62 51 248 51 50 249 113 62 250 101 63 251 63 52 252 52 51 253 51 63 254 63 64 255 64 53 256 53 52 257 52 64 258 64 65 259 65 54 260 54 53 261 53 65 262 65 66 263 66 55 264 55 54 265 54 66 266 66 67 267 67 56 268 56 55 269 55 67 270 67 68 271 68 57 272 57 56 273 56 68 274 68 69 275 69 58 276 58 57 277 57 69 278 69 70 279 70 59 280 59 58 281 58 70 282 70 71 283 71 48 284 46 59 285 59 71 286 71 60 287 60 73 288 152 72 289 153 84 290 154 95 291 155 74 292 156 73 293 152 95 294 155 94 295 157 75 296 158 74 297 156 94 298 157 93 299 159 76 300 160 75 301 158 93 302 159 92 303 161 77 304 162 76 305 160 92 306 161 91 307 163 78 308 164 77 309 175 91 310 176 90 311 177 79 312 165 78 313 164 90 314 177 89 315 166 80 316 167 79 317 165 89 318 166 88 319 168 81 320 169 80 321 167 88 322 168 87 323 170 82 324 171 81 325 169 87 326 170 86 327 172 83 328 173 82 329 171 86 330 172 85 331 174 72 332 153 83 333 173 85 334 174 84 335 154</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rear_bearings1_LShape</originalMayaNodeId>\r\n          <double_sided>0</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rearLockRing_nubs_LShape\" name=\"rearLockRing_nubs_LShape\">\r\n      <mesh>\r\n        <source id=\"rearLockRing_nubs_LShape-positions\" name=\"rearLockRing_nubs_LShape-positions\">\r\n          <float_array id=\"rearLockRing_nubs_LShape-positions-array\" count=\"96\">-20.09432 0.1712044 2.509214 -20.09432 -0.1683167 2.509214 -19.60519 0.1712044 2.509214 -19.60519 -0.1683167 2.509214 -19.60519 0.1712044 2.39604 -19.60519 -0.1683167 2.39604 -20.09432 0.1712044 2.39604 -20.09432 -0.1683167 2.39604 -20.09432 2.402061 0.1690078 -20.09432 2.402061 -0.1705133 -19.60519 2.402061 0.1690078 -19.60519 2.402061 -0.1705133 -19.60519 2.515235 0.1690078 -19.60519 2.515235 -0.1705133 -20.09432 2.515235 0.1690078 -20.09432 2.515235 -0.1705133 -20.09432 0.1779066 -2.401015 -20.09432 -0.1616145 -2.401015 -19.60519 0.1779066 -2.401015 -19.60519 -0.1616145 -2.401015 -19.60519 0.1779066 -2.514189 -19.60519 -0.1616145 -2.514189 -20.09432 0.1779066 -2.514189 -20.09432 -0.1616145 -2.514189 -20.09432 -2.50529 0.1690067 -20.09432 -2.50529 -0.1705144 -19.60519 -2.50529 0.1690067 -19.60519 -2.50529 -0.1705144 -19.60519 -2.392116 0.1690067 -19.60519 -2.392116 -0.1705144 -20.09432 -2.392116 0.1690067 -20.09432 -2.392116 -0.1705144</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRing_nubs_LShape-positions-array\" count=\"32\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rearLockRing_nubs_LShape-normals\" name=\"rearLockRing_nubs_LShape-normals\">\r\n          <float_array id=\"rearLockRing_nubs_LShape-normals-array\" count=\"288\">0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRing_nubs_LShape-normals-array\" count=\"96\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rearLockRing_nubs_LShape-map1\" name=\"rearLockRing_nubs_LShape-map1\">\r\n          <float_array id=\"rearLockRing_nubs_LShape-map1-array\" count=\"112\">0.4067554 0.5129755 0.4120345 0.5129755 0.4067554 0.5182546 0.4120345 0.5182546 0.4067554 0.5235338 0.4120345 0.5235338 0.4067554 0.5288129 0.4120345 0.5288129 0.4067554 0.5340919 0.4120345 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRing_nubs_LShape-map1-array\" count=\"56\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rearLockRing_nubs_LShape-vertices\" name=\"rearLockRing_nubs_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rearLockRing_nubs_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"24\">\r\n          <input semantic=\"VERTEX\" source=\"#rearLockRing_nubs_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rearLockRing_nubs_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rearLockRing_nubs_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 3 2 3 2 3 2 2 4 2 3 5 3 5 6 5 4 7 4 4 8 4 5 9 5 7 10 7 6 11 6 6 12 6 7 13 7 1 14 9 0 15 8 1 16 1 7 17 10 5 18 11 3 19 3 6 20 12 0 21 0 2 22 2 4 23 13 8 24 14 9 25 15 11 26 16 10 27 17 10 28 17 11 29 16 13 30 18 12 31 19 12 32 19 13 33 18 15 34 20 14 35 21 14 36 21 15 37 20 9 38 22 8 39 23 9 40 15 15 41 24 13 42 25 11 43 16 14 44 26 8 45 14 10 46 17 12 47 27 16 48 28 17 49 29 19 50 30 18 51 31 18 52 31 19 53 30 21 54 32 20 55 33 20 56 33 21 57 32 23 58 34 22 59 35 22 60 35 23 61 34 17 62 36 16 63 37 17 64 29 23 65 38 21 66 39 19 67 30 22 68 40 16 69 28 18 70 31 20 71 41 24 72 42 25 73 43 27 74 44 26 75 45 26 76 45 27 77 44 29 78 46 28 79 47 28 80 47 29 81 46 31 82 48 30 83 49 30 84 49 31 85 48 25 86 50 24 87 51 25 88 43 31 89 52 29 90 53 27 91 44 30 92 54 24 93 42 26 94 45 28 95 55</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rearLockRing_nubs_LShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rearLockRingBody_LShape\" name=\"rearLockRingBody_LShape\">\r\n      <mesh>\r\n        <source id=\"rearLockRingBody_LShape-positions\" name=\"rearLockRingBody_LShape-positions\">\r\n          <float_array id=\"rearLockRingBody_LShape-positions-array\" count=\"192\">-0.2548823 0 -1.908795 -0.2548823 0.7304642 -1.763496 -0.2548823 1.349722 -1.349722 -0.2548823 1.763496 -0.7304639 -0.2548823 1.908795 0 -0.2548823 1.763496 0.730464 -0.2548823 1.349722 1.349722 -0.2548823 0.7304639 1.763496 -0.2548823 0 1.908794 -0.2548823 -0.7304641 1.763496 -0.2548823 -1.349722 1.349721 -0.2548823 -1.763496 0.7304632 -0.2548823 -1.908794 0 -0.2548823 -1.763495 -0.7304645 -0.2548823 -1.34972 -1.349722 -0.2548823 -0.7304629 -1.763496 0.2548823 0 -1.908795 0.2548823 0.7304642 -1.763496 0.2548823 1.349722 -1.349722 0.2548823 1.763496 -0.7304639 0.2548823 1.908795 0 0.2548823 1.763496 0.730464 0.2548823 1.349722 1.349722 0.2548823 0.7304639 1.763496 0.2548823 0 1.908794 0.2548823 -0.7304641 1.763496 0.2548823 -1.349722 1.349721 0.2548823 -1.763496 0.7304632 0.2548823 -1.908794 0 0.2548823 -1.763495 -0.7304645 0.2548823 -1.34972 -1.349722 0.2548823 -0.7304629 -1.763496 0.2548823 0 -2.469586 0.2548823 0.9450698 -2.2816 0.2548823 1.746261 -1.746261 0.2548823 2.2816 -0.9450694 0.2548823 2.469586 0 0.2548823 2.2816 0.9450699 0.2548823 1.746261 1.746261 0.2548823 0.9450691 2.2816 0.2548823 0 2.469585 0.2548823 -0.9450699 2.281599 0.2548823 -1.746261 1.74626 0.2548823 -2.2816 0.9450684 0.2548823 -2.469585 0 0.2548823 -2.281598 -0.9450705 0.2548823 -1.746259 -1.746261 0.2548823 -0.945068 -2.2816 -0.2548823 0 -2.469586 -0.2548823 0.9450698 -2.2816 -0.2548823 1.746261 -1.746261 -0.2548823 2.2816 -0.9450694 -0.2548823 2.469586 0 -0.2548823 2.2816 0.9450699 -0.2548823 1.746261 1.746261 -0.2548823 0.9450691 2.2816 -0.2548823 0 2.469585 -0.2548823 -0.9450699 2.281599 -0.2548823 -1.746261 1.74626 -0.2548823 -2.2816 0.9450684 -0.2548823 -2.469585 0 -0.2548823 -2.281598 -0.9450705 -0.2548823 -1.746259 -1.746261 -0.2548823 -0.945068 -2.2816</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRingBody_LShape-positions-array\" count=\"64\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rearLockRingBody_LShape-normals\" name=\"rearLockRingBody_LShape-normals\">\r\n          <float_array id=\"rearLockRingBody_LShape-normals-array\" count=\"384\">0 -0.3826835 0.9238794 0 0 1 0 0 1 0 -0.3826835 0.9238794 0 -0.7071069 0.7071067 0 -0.7071069 0.7071067 0 -0.9238795 0.3826835 0 -0.9238795 0.3826835 0 -1 0 0 -1 0 0 -0.9238795 -0.3826834 0 -0.9238795 -0.3826834 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.3826831 -0.9238797 0 -0.3826831 -0.9238797 0 0 -1 0 0 -1 0 0.3826836 -0.9238795 0 0.3826836 -0.9238795 0 0.707107 -0.7071065 0 0.707107 -0.7071065 0 0.9238797 -0.382683 0 0.9238797 -0.382683 0 1 0 0 1 0 0 0.9238794 0.3826838 0 0.9238794 0.3826838 0 0.7071065 0.7071071 0 0.7071065 0.7071071 0 0.3826835 0.9238796 0 0.3826835 0.9238796 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.3826835 -0.9238794 0 0 -1 0 0 -1 0 0.3826835 -0.9238794 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.9238796 -0.3826832 0 0.9238796 -0.3826832 0 1 0 0 1 0 0 0.9238795 0.3826836 0 0.9238795 0.3826836 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.3826829 0.9238797 0 0.3826829 0.9238797 0 0 1 0 0 1 0 -0.3826836 0.9238794 0 -0.3826836 0.9238794 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.9238797 0.3826829 0 -0.9238797 0.3826829 0 -0.9999999 0 0 -0.9999999 0 0 -0.9238794 -0.3826838 0 -0.9238794 -0.3826838 0 -0.7071065 -0.7071071 0 -0.7071065 -0.7071071 0 -0.3826835 -0.9238795 0 -0.3826835 -0.9238795 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRingBody_LShape-normals-array\" count=\"128\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rearLockRingBody_LShape-map1\" name=\"rearLockRingBody_LShape-map1\">\r\n          <float_array id=\"rearLockRingBody_LShape-map1-array\" count=\"264\">1 0.9001086 1 0.850095 0.9999999 0.8000814 1 0.7500678 1 0.7000543 1 0.6500407 1 0.6000271 0.9999999 0.5500135 1 0.5 0.9999999 0.4499865 1 0.3999729 1 0.3499593 1 0.2999457 1 0.2499322 0.9999999 0.1999186 1 0.149905 1 0.09989142 0.75 0.9001086 0.75 0.850095 0.75 0.8000814 0.75 0.7500678 0.75 0.7000543 0.75 0.6500407 0.75 0.6000271 0.75 0.5500135 0.75 0.5 0.75 0.4499864 0.75 0.3999729 0.75 0.3499593 0.75 0.2999457 0.75 0.2499322 0.75 0.1999186 0.75 0.149905 0.75 0.09989142 0.5 0.9001086 0.5 0.850095 0.5 0.8000814 0.5 0.7500678 0.5 0.7000543 0.5 0.6500407 0.5 0.6000271 0.5 0.5500135 0.5 0.5 0.5 0.4499865 0.5 0.3999729 0.5 0.3499593 0.5 0.2999457 0.5 0.2499321 0.5 0.1999186 0.5 0.149905 0.5 0.09989142 0.25 0.9001086 0.25 0.850095 0.25 0.8000814 0.25 0.7500678 0.25 0.7000543 0.25 0.6500407 0.25 0.6000271 0.25 0.5500135 0.25 0.5 0.25 0.4499864 0.25 0.3999729 0.25 0.3499593 0.25 0.2999457 0.25 0.2499321 0.25 0.1999186 0.25 0.149905 0.25 0.09989145 0.5346442 0.5405008 0.5374987 0.5261506 0.5485157 0.5261506 0.5448226 0.5447168 0.5265155 0.5526663 0.5343057 0.5604565 0.5143501 0.5607951 0.518566 0.5709734 0.4999998 0.5636495 0.4999998 0.5746664 0.4856496 0.5607951 0.4814336 0.5709734 0.4734841 0.5526663 0.465694 0.5604565 0.4653553 0.5405008 0.455177 0.5447168 0.4625009 0.5261506 0.451484 0.5261506 0.4653553 0.5118004 0.4551771 0.5075843 0.4734841 0.4996349 0.465694 0.4918447 0.4856496 0.4915062 0.4814336 0.4813278 0.4999998 0.4886517 0.4999998 0.4776348 0.5143501 0.4915062 0.518566 0.4813278 0.5265155 0.4996349 0.5343057 0.4918448 0.5346442 0.5118004 0.5448226 0.5075845 0.5448226 0.5447168 0.5485157 0.5261506 0.5374987 0.5261506 0.5346442 0.5405008 0.5343057 0.5604565 0.5265155 0.5526663 0.518566 0.5709734 0.5143501 0.5607951 0.4999998 0.5746664 0.4999998 0.5636495 0.4814336 0.5709734 0.4856496 0.5607951 0.465694 0.5604565 0.4734841 0.5526663 0.455177 0.5447168 0.4653553 0.5405008 0.451484 0.5261506 0.4625009 0.5261506 0.4551771 0.5075843 0.4653553 0.5118004 0.465694 0.4918447 0.4734841 0.4996349 0.4814336 0.4813278 0.4856496 0.4915062 0.4999998 0.4776348 0.4999998 0.4886517 0.518566 0.4813278 0.5143501 0.4915062 0.5343057 0.4918448 0.5265155 0.4996349 0.5448226 0.5075845 0.5346442 0.5118004</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRingBody_LShape-map1-array\" count=\"132\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rearLockRingBody_LShape-vertices\" name=\"rearLockRingBody_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rearLockRingBody_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"64\">\r\n          <input semantic=\"VERTEX\" source=\"#rearLockRingBody_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rearLockRingBody_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rearLockRingBody_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 0 1 0 1 0 16 2 17 17 3 18 2 4 2 1 0 1 17 3 18 18 5 19 3 6 3 2 4 2 18 5 19 19 7 20 4 8 4 3 6 3 19 7 20 20 9 21 5 10 5 4 8 4 20 9 21 21 11 22 6 12 6 5 10 5 21 11 22 22 13 23 7 14 7 6 12 6 22 13 23 23 15 24 8 16 8 7 14 7 23 15 24 24 17 25 9 18 9 8 16 8 24 17 25 25 19 26 10 20 10 9 18 9 25 19 26 26 21 27 11 22 11 10 20 10 26 21 27 27 23 28 12 24 12 11 22 11 27 23 28 28 25 29 13 26 13 12 24 12 28 25 29 29 27 30 14 28 14 13 26 13 29 27 30 30 29 31 15 30 15 14 28 14 30 29 31 31 31 32 0 1 16 15 30 15 31 31 32 16 2 33 17 32 68 16 33 69 32 34 70 33 35 71 18 36 72 17 32 68 33 35 71 34 37 73 19 38 74 18 36 72 34 37 73 35 39 75 20 40 76 19 38 74 35 39 75 36 41 77 21 42 78 20 40 76 36 41 77 37 43 79 22 44 80 21 42 78 37 43 79 38 45 81 23 46 82 22 44 80 38 45 81 39 47 83 24 48 84 23 46 82 39 47 83 40 49 85 25 50 86 24 48 84 40 49 85 41 51 87 26 52 88 25 50 86 41 51 87 42 53 89 27 54 90 26 52 88 42 53 89 43 55 91 28 56 92 27 54 90 43 55 91 44 57 93 29 58 94 28 56 92 44 57 93 45 59 95 30 60 96 29 58 94 45 59 95 46 61 97 31 62 98 30 60 96 46 61 97 47 63 99 16 33 69 31 62 98 47 63 99 32 34 70 33 64 35 32 65 34 48 66 51 49 67 52 34 68 36 33 64 35 49 67 52 50 69 53 35 70 37 34 68 36 50 69 53 51 71 54 36 72 38 35 70 37 51 71 54 52 73 55 37 74 39 36 72 38 52 73 55 53 75 56 38 76 40 37 74 39 53 75 56 54 77 57 39 78 41 38 76 40 54 77 57 55 79 58 40 80 42 39 78 41 55 79 58 56 81 59 41 82 43 40 80 42 56 81 59 57 83 60 42 84 44 41 82 43 57 83 60 58 85 61 43 86 45 42 84 44 58 85 61 59 87 62 44 88 46 43 86 45 59 87 62 60 89 63 45 90 47 44 88 46 60 89 63 61 91 64 46 92 48 45 90 47 61 91 64 62 93 65 47 94 49 46 92 48 62 93 65 63 95 66 32 65 50 47 94 49 63 95 66 48 66 67 49 96 100 48 97 101 0 98 102 1 99 103 50 100 104 49 96 100 1 99 103 2 101 105 51 102 106 50 100 104 2 101 105 3 103 107 52 104 108 51 102 106 3 103 107 4 105 109 53 106 110 52 104 108 4 105 109 5 107 111 54 108 112 53 106 110 5 107 111 6 109 113 55 110 114 54 108 112 6 109 113 7 111 115 56 112 116 55 110 114 7 111 115 8 113 117 57 114 118 56 112 116 8 113 117 9 115 119 58 116 120 57 114 118 9 115 119 10 117 121 59 118 122 58 116 120 10 117 121 11 119 123 60 120 124 59 118 122 11 119 123 12 121 125 61 122 126 60 120 124 12 121 125 13 123 127 62 124 128 61 122 126 13 123 127 14 125 129 63 126 130 62 124 128 14 125 129 15 127 131 48 97 101 63 126 130 15 127 131 0 98 102</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rearLockRingBody_LShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"frontLockRingBody_LShape\" name=\"frontLockRingBody_LShape\">\r\n      <mesh>\r\n        <source id=\"frontLockRingBody_LShape-positions\" name=\"frontLockRingBody_LShape-positions\">\r\n          <float_array id=\"frontLockRingBody_LShape-positions-array\" count=\"192\">-0.6158938 0 -2.723 -0.6158938 1.042047 -2.515724 -0.6158938 1.925452 -1.925452 -0.6158938 2.515724 -1.042047 -0.6158938 2.723 0 -0.6158938 2.515724 1.042047 -0.6158938 1.925452 1.925452 -0.6158938 1.042047 2.515724 -0.6158938 0 2.723 -0.6158938 -1.042048 2.515723 -0.6158938 -1.925452 1.925451 -0.6158938 -2.515724 1.042046 -0.6158938 -2.723 0 -0.6158938 -2.515723 -1.042048 -0.6158938 -1.925451 -1.925452 -0.6158938 -1.042046 -2.515724 0.218939 0 -2.723 0.218939 1.042047 -2.515724 0.218939 1.925452 -1.925452 0.218939 2.515724 -1.042047 0.218939 2.723 0 0.218939 2.515724 1.042047 0.218939 1.925452 1.925452 0.218939 1.042047 2.515724 0.218939 0 2.723 0.218939 -1.042048 2.515723 0.218939 -1.925452 1.925451 0.218939 -2.515724 1.042046 0.218939 -2.723 0 0.218939 -2.515723 -1.042048 0.218939 -1.925451 -1.925452 0.218939 -1.042046 -2.515724 0.218939 0 -3.523 0.218939 1.348194 -3.254827 0.218939 2.491137 -2.491137 0.218939 3.254827 -1.348193 0.218939 3.523 0 0.218939 3.254827 1.348194 0.218939 2.491136 2.491138 0.218939 1.348193 3.254827 0.218939 0 3.522999 0.218939 -1.348194 3.254826 0.218939 -2.491138 2.491136 0.218939 -3.254827 1.348192 0.218939 -3.522999 0 0.218939 -3.254826 -1.348195 0.218939 -2.491135 -2.491138 0.218939 -1.348191 -3.254827 -0.6158938 0 -3.523 -0.6158938 1.348194 -3.254827 -0.6158938 2.491137 -2.491137 -0.6158938 3.254827 -1.348193 -0.6158938 3.523 0 -0.6158938 3.254827 1.348194 -0.6158938 2.491136 2.491138 -0.6158938 1.348193 3.254827 -0.6158938 0 3.522999 -0.6158938 -1.348194 3.254826 -0.6158938 -2.491138 2.491136 -0.6158938 -3.254827 1.348192 -0.6158938 -3.522999 0 -0.6158938 -3.254826 -1.348195 -0.6158938 -2.491135 -2.491138 -0.6158938 -1.348191 -3.254827</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRingBody_LShape-positions-array\" count=\"64\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"frontLockRingBody_LShape-normals\" name=\"frontLockRingBody_LShape-normals\">\r\n          <float_array id=\"frontLockRingBody_LShape-normals-array\" count=\"384\">0 -0.3826835 0.9238795 0 0 0.9999999 0 0 0.9999999 0 -0.3826835 0.9238795 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.9238796 0.3826834 0 -0.9238796 0.3826834 0 -1 0 0 -1 0 0 -0.9238795 -0.3826835 0 -0.9238795 -0.3826835 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.3826832 -0.9238796 0 -0.3826832 -0.9238796 0 0 -1 0 0 -1 0 0.3826837 -0.9238794 0 0.3826837 -0.9238794 0 0.707107 -0.7071065 0 0.707107 -0.7071065 0 0.9238797 -0.3826831 0 0.9238797 -0.3826831 0 1 0 0 1 0 0 0.9238794 0.3826839 0 0.9238794 0.3826839 0 0.7071065 0.7071071 0 0.7071065 0.7071071 0 0.3826834 0.9238796 0 0.3826834 0.9238796 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.3826835 -0.9238795 0 0 -1 0 0 -1 0 0.3826835 -0.9238795 0 0.7071069 -0.7071067 0 0.7071069 -0.7071067 0 0.9238796 -0.3826832 0 0.9238796 -0.3826832 0 0.9999999 0 0 0.9999999 0 0 0.9238795 0.3826836 0 0.9238795 0.3826836 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.382683 0.9238797 0 0.382683 0.9238797 0 0 1 0 0 1 0 -0.3826838 0.9238794 0 -0.3826838 0.9238794 0 -0.7071071 0.7071065 0 -0.7071071 0.7071065 0 -0.9238797 0.3826829 0 -0.9238797 0.3826829 0 -1 0 0 -1 0 0 -0.9238793 -0.3826839 0 -0.9238793 -0.3826839 0 -0.7071064 -0.7071071 0 -0.7071064 -0.7071071 0 -0.3826835 -0.9238794 0 -0.3826835 -0.9238794 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRingBody_LShape-normals-array\" count=\"128\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"frontLockRingBody_LShape-map1\" name=\"frontLockRingBody_LShape-map1\">\r\n          <float_array id=\"frontLockRingBody_LShape-map1-array\" count=\"264\">1 0.9001086 1 0.850095 0.9999999 0.8000814 1 0.7500678 1 0.7000543 1 0.6500407 1 0.6000271 0.9999999 0.5500135 1 0.5 0.9999999 0.4499865 1 0.3999729 1 0.3499593 1 0.2999457 1 0.2499322 0.9999999 0.1999186 1 0.149905 1 0.09989142 0.75 0.9001086 0.75 0.850095 0.75 0.8000814 0.75 0.7500678 0.75 0.7000543 0.75 0.6500407 0.75 0.6000271 0.75 0.5500135 0.75 0.5 0.75 0.4499864 0.75 0.3999729 0.75 0.3499593 0.75 0.2999457 0.75 0.2499322 0.75 0.1999186 0.75 0.149905 0.75 0.09989142 0.5 0.9001086 0.5 0.850095 0.5 0.8000814 0.5 0.7500678 0.5 0.7000543 0.5 0.6500407 0.5 0.6000271 0.5 0.5500135 0.5 0.5 0.5 0.4499865 0.5 0.3999729 0.5 0.3499593 0.5 0.2999457 0.5 0.2499321 0.5 0.1999186 0.5 0.149905 0.5 0.09989142 0.25 0.9001086 0.25 0.850095 0.25 0.8000814 0.25 0.7500678 0.25 0.7000543 0.25 0.6500407 0.25 0.6000271 0.25 0.5500135 0.25 0.5 0.25 0.4499864 0.25 0.3999729 0.25 0.3499593 0.25 0.2999457 0.25 0.2499321 0.25 0.1999186 0.25 0.149905 0.25 0.09989145 0.5346442 0.5405008 0.5374987 0.5261506 0.5485157 0.5261506 0.5448226 0.5447168 0.5265155 0.5526663 0.5343057 0.5604565 0.5143501 0.5607951 0.518566 0.5709734 0.4999998 0.5636495 0.4999998 0.5746664 0.4856496 0.5607951 0.4814336 0.5709734 0.4734841 0.5526663 0.465694 0.5604565 0.4653553 0.5405008 0.455177 0.5447168 0.4625009 0.5261506 0.451484 0.5261506 0.4653553 0.5118004 0.4551771 0.5075843 0.4734841 0.4996349 0.465694 0.4918447 0.4856496 0.4915062 0.4814336 0.4813278 0.4999998 0.4886517 0.4999998 0.4776348 0.5143501 0.4915062 0.518566 0.4813278 0.5265155 0.4996349 0.5343057 0.4918448 0.5346442 0.5118004 0.5448226 0.5075845 0.5448226 0.5447168 0.5485157 0.5261506 0.5374987 0.5261506 0.5346442 0.5405008 0.5343057 0.5604565 0.5265155 0.5526663 0.518566 0.5709734 0.5143501 0.5607951 0.4999998 0.5746664 0.4999998 0.5636495 0.4814336 0.5709734 0.4856496 0.5607951 0.465694 0.5604565 0.4734841 0.5526663 0.455177 0.5447168 0.4653553 0.5405008 0.451484 0.5261506 0.4625009 0.5261506 0.4551771 0.5075843 0.4653553 0.5118004 0.465694 0.4918447 0.4734841 0.4996349 0.4814336 0.4813278 0.4856496 0.4915062 0.4999998 0.4776348 0.4999998 0.4886517 0.518566 0.4813278 0.5143501 0.4915062 0.5343057 0.4918448 0.5265155 0.4996349 0.5448226 0.5075845 0.5346442 0.5118004</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRingBody_LShape-map1-array\" count=\"132\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"frontLockRingBody_LShape-vertices\" name=\"frontLockRingBody_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#frontLockRingBody_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"64\">\r\n          <input semantic=\"VERTEX\" source=\"#frontLockRingBody_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#frontLockRingBody_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#frontLockRingBody_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 0 1 0 1 0 16 2 17 17 3 18 2 4 2 1 0 1 17 3 18 18 5 19 3 6 3 2 4 2 18 5 19 19 7 20 4 8 4 3 6 3 19 7 20 20 9 21 5 10 5 4 8 4 20 9 21 21 11 22 6 12 6 5 10 5 21 11 22 22 13 23 7 14 7 6 12 6 22 13 23 23 15 24 8 16 8 7 14 7 23 15 24 24 17 25 9 18 9 8 16 8 24 17 25 25 19 26 10 20 10 9 18 9 25 19 26 26 21 27 11 22 11 10 20 10 26 21 27 27 23 28 12 24 12 11 22 11 27 23 28 28 25 29 13 26 13 12 24 12 28 25 29 29 27 30 14 28 14 13 26 13 29 27 30 30 29 31 15 30 15 14 28 14 30 29 31 31 31 32 0 1 16 15 30 15 31 31 32 16 2 33 17 32 68 16 33 69 32 34 70 33 35 71 18 36 72 17 32 68 33 35 71 34 37 73 19 38 74 18 36 72 34 37 73 35 39 75 20 40 76 19 38 74 35 39 75 36 41 77 21 42 78 20 40 76 36 41 77 37 43 79 22 44 80 21 42 78 37 43 79 38 45 81 23 46 82 22 44 80 38 45 81 39 47 83 24 48 84 23 46 82 39 47 83 40 49 85 25 50 86 24 48 84 40 49 85 41 51 87 26 52 88 25 50 86 41 51 87 42 53 89 27 54 90 26 52 88 42 53 89 43 55 91 28 56 92 27 54 90 43 55 91 44 57 93 29 58 94 28 56 92 44 57 93 45 59 95 30 60 96 29 58 94 45 59 95 46 61 97 31 62 98 30 60 96 46 61 97 47 63 99 16 33 69 31 62 98 47 63 99 32 34 70 33 64 35 32 65 34 48 66 51 49 67 52 34 68 36 33 64 35 49 67 52 50 69 53 35 70 37 34 68 36 50 69 53 51 71 54 36 72 38 35 70 37 51 71 54 52 73 55 37 74 39 36 72 38 52 73 55 53 75 56 38 76 40 37 74 39 53 75 56 54 77 57 39 78 41 38 76 40 54 77 57 55 79 58 40 80 42 39 78 41 55 79 58 56 81 59 41 82 43 40 80 42 56 81 59 57 83 60 42 84 44 41 82 43 57 83 60 58 85 61 43 86 45 42 84 44 58 85 61 59 87 62 44 88 46 43 86 45 59 87 62 60 89 63 45 90 47 44 88 46 60 89 63 61 91 64 46 92 48 45 90 47 61 91 64 62 93 65 47 94 49 46 92 48 62 93 65 63 95 66 32 65 50 47 94 49 63 95 66 48 66 67 49 96 100 48 97 101 0 98 102 1 99 103 50 100 104 49 96 100 1 99 103 2 101 105 51 102 106 50 100 104 2 101 105 3 103 107 52 104 108 51 102 106 3 103 107 4 105 109 53 106 110 52 104 108 4 105 109 5 107 111 54 108 112 53 106 110 5 107 111 6 109 113 55 110 114 54 108 112 6 109 113 7 111 115 56 112 116 55 110 114 7 111 115 8 113 117 57 114 118 56 112 116 8 113 117 9 115 119 58 116 120 57 114 118 9 115 119 10 117 121 59 118 122 58 116 120 10 117 121 11 119 123 60 120 124 59 118 122 11 119 123 12 121 125 61 122 126 60 120 124 12 121 125 13 123 127 62 124 128 61 122 126 13 123 127 14 125 129 63 126 130 62 124 128 14 125 129 15 127 131 48 97 101 63 126 130 15 127 131 0 98 102</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>frontLockRingBody_LShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"frontLockRing_Nubs_LShape\" name=\"frontLockRing_Nubs_LShape\">\r\n      <mesh>\r\n        <source id=\"frontLockRing_Nubs_LShape-positions\" name=\"frontLockRing_Nubs_LShape-positions\">\r\n          <float_array id=\"frontLockRing_Nubs_LShape-positions-array\" count=\"96\">-20.40687 0.2433406 3.599168 -20.40687 -0.2435159 3.599168 -19.67989 0.2433406 3.599168 -19.67989 -0.2435159 3.599168 -19.67989 0.2433406 3.436882 -19.67989 -0.2435159 3.436882 -20.40687 0.2433406 3.436882 -20.40687 -0.2435159 3.436882 -20.40687 3.442279 0.2434282 -20.40687 3.442279 -0.2434282 -19.67989 3.442279 0.2434282 -19.67989 3.442279 -0.2434282 -19.67989 3.604564 0.2434282 -19.67989 3.604564 -0.2434282 -20.40687 3.604564 0.2434282 -20.40687 3.604564 -0.2434282 -20.40687 0.2529512 -3.441857 -20.40687 -0.2339052 -3.441857 -19.67989 0.2529512 -3.441857 -19.67989 -0.2339052 -3.441857 -19.67989 0.2529512 -3.604143 -19.67989 -0.2339052 -3.604143 -20.40687 0.2529512 -3.604143 -20.40687 -0.2339052 -3.604143 -20.40687 -3.594619 0.2434267 -20.40687 -3.594619 -0.2434298 -19.67989 -3.594619 0.2434267 -19.67989 -3.594619 -0.2434298 -19.67989 -3.432333 0.2434267 -19.67989 -3.432333 -0.2434298 -20.40687 -3.432333 0.2434267 -20.40687 -3.432333 -0.2434298</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRing_Nubs_LShape-positions-array\" count=\"32\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"frontLockRing_Nubs_LShape-normals\" name=\"frontLockRing_Nubs_LShape-normals\">\r\n          <float_array id=\"frontLockRing_Nubs_LShape-normals-array\" count=\"288\">0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRing_Nubs_LShape-normals-array\" count=\"96\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"frontLockRing_Nubs_LShape-map1\" name=\"frontLockRing_Nubs_LShape-map1\">\r\n          <float_array id=\"frontLockRing_Nubs_LShape-map1-array\" count=\"112\">0.4067554 0.5129755 0.4120345 0.5129755 0.4067554 0.5182546 0.4120345 0.5182546 0.4067554 0.5235338 0.4120345 0.5235338 0.4067554 0.5288129 0.4120345 0.5288129 0.4067554 0.5340919 0.4120345 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRing_Nubs_LShape-map1-array\" count=\"56\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"frontLockRing_Nubs_LShape-vertices\" name=\"frontLockRing_Nubs_LShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#frontLockRing_Nubs_LShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"24\">\r\n          <input semantic=\"VERTEX\" source=\"#frontLockRing_Nubs_LShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#frontLockRing_Nubs_LShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#frontLockRing_Nubs_LShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 3 2 3 2 3 2 2 4 2 3 5 3 5 6 5 4 7 4 4 8 4 5 9 5 7 10 7 6 11 6 6 12 6 7 13 7 1 14 9 0 15 8 1 16 1 7 17 10 5 18 11 3 19 3 6 20 12 0 21 0 2 22 2 4 23 13 8 24 14 9 25 15 11 26 16 10 27 17 10 28 17 11 29 16 13 30 18 12 31 19 12 32 19 13 33 18 15 34 20 14 35 21 14 36 21 15 37 20 9 38 22 8 39 23 9 40 15 15 41 24 13 42 25 11 43 16 14 44 26 8 45 14 10 46 17 12 47 27 16 48 28 17 49 29 19 50 30 18 51 31 18 52 31 19 53 30 21 54 32 20 55 33 20 56 33 21 57 32 23 58 34 22 59 35 22 60 35 23 61 34 17 62 36 16 63 37 17 64 29 23 65 38 21 66 39 19 67 30 22 68 40 16 69 28 18 70 31 20 71 41 24 72 42 25 73 43 27 74 44 26 75 45 26 76 45 27 77 44 29 78 46 28 79 47 28 80 47 29 81 46 31 82 48 30 83 49 30 84 49 31 85 48 25 86 50 24 87 51 25 88 43 31 89 52 29 90 53 27 91 44 30 92 54 24 93 42 26 94 45 28 95 55</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>frontLockRing_Nubs_LShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBodyShape_1\" name=\"gearBodyShape\">\r\n      <mesh>\r\n        <source id=\"gearBodyShape_1-positions\" name=\"gearBodyShape_1-positions\">\r\n          <float_array id=\"gearBodyShape_1-positions-array\" count=\"990\">-3.811147 0 -5.991943 -3.811147 1.851612 -5.698677 -3.811147 3.521976 -4.847584 -3.811147 4.847584 -3.521976 -3.811147 5.698677 -1.851612 -3.811147 5.991944 0 -3.811147 5.698678 1.851613 -3.811147 4.847585 3.521976 -3.811147 3.521976 4.847585 -3.811147 1.851613 5.698678 -3.811147 0 5.991945 -3.811147 -1.851613 5.698678 -3.811147 -3.521977 4.847586 -3.811147 -4.847586 3.521977 -3.811147 -5.698679 1.851613 -3.811147 -5.991946 0 -3.811147 -5.698679 -1.851613 -3.811147 -4.847586 -3.521977 -3.811147 -3.521978 -4.847586 -3.811147 -1.851614 -5.69868 3.811146 0 -5.991943 3.811146 1.851612 -5.698677 3.811146 3.521976 -4.847584 3.811146 4.847584 -3.521976 3.811146 5.698677 -1.851612 3.811146 5.991944 0 3.811146 5.698678 1.851613 3.811146 4.847585 3.521976 3.811146 3.521976 4.847585 3.811146 1.851613 5.698678 3.811146 0 5.991945 3.811146 -1.851613 5.698678 3.811146 -3.521977 4.847586 3.811146 -4.847586 3.521977 3.811146 -5.698679 1.851613 3.811146 -5.991946 0 3.811146 -5.698679 -1.851613 3.811146 -4.847586 -3.521977 3.811146 -3.521978 -4.847586 3.811146 -1.851614 -5.69868 3.811146 0 -7.901943 3.811146 2.441835 -7.515194 3.811146 4.644646 -6.392806 3.811146 6.392807 -4.644645 3.811146 7.515195 -2.441834 3.811146 7.901943 0 3.811146 7.515195 2.441835 3.811146 6.392807 4.644647 3.811146 4.644646 6.392807 3.811146 2.441834 7.515196 3.811146 0 7.901944 3.811146 -2.441836 7.515196 3.811146 -4.644648 6.392807 3.811146 -6.392809 4.644646 3.811146 -7.515197 2.441834 3.811146 -7.901946 0 3.811146 -7.515196 -2.441837 3.811146 -6.392807 -4.644649 3.811146 -4.644646 -6.39281 3.811146 -2.441834 -7.515198 -3.811147 0 -7.901943 -3.811147 2.441835 -7.515194 -3.811147 4.644646 -6.392806 -3.811147 6.392807 -4.644645 -3.811147 7.515195 -2.441834 -3.811147 7.901943 0 -3.811147 7.515195 2.441835 -3.811147 6.392807 4.644647 -3.811147 4.644646 6.392807 -3.811147 2.441834 7.515196 -3.811147 0 7.901944 -3.811147 -2.441836 7.515196 -3.811147 -4.644648 6.392807 -3.811147 -6.392809 4.644646 -3.811147 -7.515197 2.441834 -3.811147 -7.901946 0 -3.811147 -7.515196 -2.441837 -3.811147 -6.392807 -4.644649 -3.811147 -4.644646 -6.39281 -3.811147 -2.441834 -7.515198 3.54197 0 -5.991943 3.54197 1.851612 -5.698677 3.54197 3.521976 -4.847584 3.54197 4.847584 -3.521976 3.54197 5.698677 -1.851612 3.54197 5.991944 0 3.54197 5.698678 1.851613 3.54197 4.847585 3.521976 3.54197 3.521976 4.847585 3.54197 1.851613 5.698678 3.54197 0 5.991945 3.54197 -1.851613 5.698678 3.54197 -3.521977 4.847586 3.54197 -4.847586 3.521977 3.54197 -5.698679 1.851613 3.54197 -5.991946 0 3.54197 -5.698679 -1.851613 3.54197 -4.847586 -3.521977 3.54197 -3.521978 -4.847586 3.54197 -1.851614 -5.69868 0.4944224 0 -5.991943 0.4944224 1.851612 -5.698677 0.4944224 3.521976 -4.847584 0.4944224 4.847584 -3.521976 0.4944224 5.698677 -1.851612 0.4944224 5.991944 0 0.4944224 5.698678 1.851613 0.4944224 4.847585 3.521976 0.4944224 3.521976 4.847585 0.4944224 1.851613 5.698678 0.4944224 0 5.991945 0.4944224 -1.851613 5.698678 0.4944224 -3.521977 4.847586 0.4944224 -4.847586 3.521977 0.4944224 -5.698679 1.851613 0.4944224 -5.991946 0 0.4944224 -5.698679 -1.851613 0.4944224 -4.847586 -3.521977 0.4944224 -3.521978 -4.847586 0.4944224 -1.851614 -5.69868 3.811146 0 -5.797058 3.811146 1.791389 -5.51333 3.811146 3.407425 -4.689919 3.811146 4.689919 -3.407425 3.811146 5.51333 -1.79139 3.811146 5.797059 0 3.811146 5.513331 1.79139 3.811146 4.689919 3.407426 3.811146 3.407426 4.689919 3.811146 1.79139 5.513331 3.811146 0 5.79706 3.811146 -1.79139 5.513332 3.811146 -3.407427 4.68992 3.811146 -4.68992 3.407427 3.811146 -5.513332 1.79139 3.811146 -5.79706 0 3.811146 -5.513332 -1.79139 3.811146 -4.689921 -3.407427 3.811146 -3.407427 -4.68992 3.811146 -1.791391 -5.513333 0.4944224 0 -3.094815 0.4944224 0.9563503 -2.943344 3.822212 0 -3.094815 3.822212 0.9563503 -2.943344 0.4944224 1.819087 -2.503758 3.822212 1.819087 -2.503758 0.4944224 2.503759 -1.819087 3.822212 2.503759 -1.819087 0.4944224 2.943345 -0.9563503 3.822212 2.943345 -0.9563503 0.4944224 3.094816 0 3.822212 3.094816 0 0.4944224 2.943345 0.9563513 3.822212 2.943345 0.9563513 0.4944224 2.503759 1.819088 3.822212 2.503759 1.819088 0.4944224 1.819087 2.50376 3.822212 1.819087 2.50376 0.4944224 0.9563503 2.943346 3.822212 0.9563503 2.943346 0.4944224 0 3.094817 3.822212 0 3.094817 0.4944224 -0.9563515 2.943346 3.822212 -0.9563515 2.943346 0.4944224 -1.819088 2.50376 3.822212 -1.819088 2.50376 0.4944224 -2.50376 1.819088 3.822212 -2.50376 1.819088 0.4944224 -2.943347 0.9563515 3.822212 -2.943347 0.9563516 0.4944224 -3.094818 0 3.822212 -3.094818 0 0.4944224 -2.943347 -0.9563509 3.822212 -2.943347 -0.9563509 0.4944224 -2.503761 -1.819088 3.822212 -2.503761 -1.819088 0.4944224 -1.819089 -2.50376 3.822212 -1.819089 -2.50376 0.4944224 -0.9563519 -2.943346 3.822212 -0.9563519 -2.943346 2.009655 0 -3.094815 2.009655 0.9563503 -2.943344 2.009655 1.819087 -2.503758 2.009655 2.503759 -1.819087 2.009655 2.943345 -0.9563503 2.009655 3.094816 0 2.009655 2.943345 0.9563513 2.009655 2.503759 1.819088 2.009655 1.819087 2.50376 2.009655 0.9563503 2.943346 2.009655 0 3.094817 2.009655 -0.9563515 2.943346 2.009655 -1.819088 2.50376 2.009655 -2.50376 1.819088 2.009655 -2.943347 0.9563515 2.009655 -3.094818 0 2.009655 -2.943347 -0.9563509 2.009655 -2.503761 -1.819088 2.009655 -1.819089 -2.50376 2.009655 -0.9563519 -2.943346 1.763276 0 -3.094815 1.763276 0.9563503 -2.943344 1.763276 1.819087 -2.503758 1.763276 2.503759 -1.819087 1.763276 2.943345 -0.9563503 1.763276 3.094816 0 1.763276 2.943345 0.9563513 1.763276 2.503759 1.819088 1.763276 1.819087 2.50376 1.763276 0.9563503 2.943346 1.763276 0 3.094817 1.763276 -0.9563515 2.943346 1.763276 -1.819088 2.50376 1.763276 -2.50376 1.819088 1.763276 -2.943347 0.9563515 1.763276 -3.094818 0 1.763276 -2.943347 -0.9563509 1.763276 -2.503761 -1.819088 1.763276 -1.819089 -2.50376 1.763276 -0.9563519 -2.943346 3.811146 -0.758626 4.847895 3.811146 -1.267388 5.107121 3.811146 -0.3548703 5.25165 3.811146 -0.249864 4.588667 3.811146 -1.162382 4.444139 3.811146 -1.017853 5.356657 3.811146 -0.6693025 5.411861 3.811146 -0.194659 4.937218 3.811146 -1.322593 4.758571 3.811146 -0.4993988 4.339133 3.811146 -0.8479495 4.283927 3.811146 -3.463262 3.47612 3.811146 -3.373939 4.040087 3.811146 -2.899295 3.565444 3.811146 -3.552586 2.912153 3.811146 -4.027229 3.386796 3.811146 -3.972024 3.735347 3.811146 -3.722489 3.984882 3.811146 -3.059506 3.879876 3.811146 -3.867018 3.072364 3.811146 -3.204035 2.967358 3.811146 -2.9545 3.216893 3.811146 -4.84505 0.7765856 3.811146 -5.104277 1.285348 3.811146 -4.281083 0.8659093 3.811146 -4.336288 0.5173585 3.811146 -5.248806 0.3728299 3.811146 -5.353812 1.035813 3.811146 -5.409017 0.687262 3.811146 -4.934373 0.2126187 3.811146 -4.585823 0.2678237 3.811147 -4.441294 1.180341 3.811146 -4.755726 1.340553 3.811146 -4.376194 -2.219578 3.811146 -4.884955 -1.960351 3.811146 -4.28687 -1.655611 3.811146 -3.867431 -2.478805 3.811146 -4.465517 -2.783545 3.811146 -4.635421 -1.710816 3.811146 -3.812226 -2.130254 3.811146 -3.972438 -1.815822 3.811146 -4.116966 -2.72834 3.811146 -4.94016 -2.308902 3.811146 -4.779949 -2.623334 3.811146 -2.23578 -4.367938 3.811146 -1.976552 -4.8767 3.811146 -2.799747 -4.457262 3.811146 -2.146456 -3.803971 3.811146 -1.832024 -3.964182 3.811146 -1.671813 -4.278615 3.811146 -1.727018 -4.627165 3.811146 -2.325103 -4.931905 3.811146 -2.639535 -4.771694 3.811146 -2.495007 -3.859176 3.811146 -2.744542 -4.108711 3.811146 0.758626 -4.847895 3.811146 0.8479495 -4.283927 3.811146 1.267388 -5.107121 3.811146 0.3548703 -5.25165 3.811146 0.4993988 -4.339133 3.811146 1.322593 -4.758571 3.811146 1.162382 -4.444139 3.811146 0.249864 -4.588667 3.811146 0.194659 -4.937218 3.811146 1.017853 -5.356656 3.811146 0.6693025 -5.411861 3.811146 3.463262 -3.47612 3.811146 3.204035 -2.967358 3.811146 4.027229 -3.386796 3.811146 3.373939 -4.040087 3.811146 2.9545 -3.216893 3.811146 3.552586 -2.912153 3.811145 3.867018 -3.072364 3.811146 3.972024 -3.735347 3.811146 3.722489 -3.984882 3.811146 2.899295 -3.565444 3.811146 3.059506 -3.879876 3.811146 4.84505 -0.7765856 3.811146 4.336288 -0.5173585 3.811146 5.248806 -0.3728299 3.811146 5.104277 -1.285348 3.811146 4.281083 -0.8659093 3.811146 4.441294 -1.180341 3.811146 4.755726 -1.340553 3.811146 5.353812 -1.035813 3.811146 5.409017 -0.687262 3.811146 4.934373 -0.2126187 3.811146 4.585823 -0.2678237 3.811146 4.376194 2.219578 3.811146 4.465517 2.783545 3.811146 4.884955 1.960351 3.811146 3.972438 1.815822 3.811146 3.812226 2.130254 3.811146 4.779949 2.623334 3.811146 4.94016 2.308902 3.811146 4.63542 1.710816 3.811146 4.28687 1.655611 3.811146 3.867431 2.478805 3.811146 4.116966 2.72834 3.811146 2.23578 4.367938 3.811146 1.832024 3.964182 3.811146 1.976552 4.8767 3.811146 2.799747 4.457262 3.811146 2.146456 3.803971 3.811146 1.727018 4.627165 3.811146 1.671813 4.278615 3.811146 2.325103 4.931905 3.811146 2.639535 4.771694 3.811146 2.744542 4.108711 3.811146 2.495007 3.859176</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBodyShape_1-positions-array\" count=\"330\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBodyShape_1-normals\" name=\"gearBodyShape_1-normals\">\r\n          <float_array id=\"gearBodyShape_1-normals-array\" count=\"3432\">0 -0.3090169 0.9510565 0 0 1 0 0 1 0 -0.3090169 0.9510565 0 -0.5877851 0.8090171 0 -0.5877851 0.8090171 0 -0.809017 0.5877852 0 -0.809017 0.5877852 0 -0.9510565 0.3090169 0 -0.9510565 0.3090169 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510566 -0.3090168 0 -0.9510566 -0.3090168 0 -0.809017 -0.5877852 0 -0.809017 -0.5877852 0 -0.5877854 -0.809017 0 -0.5877854 -0.809017 0 -0.3090171 -0.9510565 0 -0.3090171 -0.9510565 0 0 -0.9999999 0 0 -0.9999999 0 0.3090169 -0.9510565 0 0.3090169 -0.9510565 0 0.5877851 -0.8090171 0 0.5877851 -0.8090171 0 0.809017 -0.5877852 0 0.809017 -0.5877852 0 0.9510565 -0.3090171 0 0.9510565 -0.3090171 0 1 0 0 1 0 0 0.9510566 0.3090169 0 0.9510566 0.3090169 0 0.8090172 0.5877851 0 0.8090172 0.5877851 0 0.5877854 0.8090169 0 0.5877854 0.8090169 0 0.3090162 0.9510568 0 0.3090162 0.9510568 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.3090169 -0.9510566 0 0 -0.9999999 0 0 -0.9999999 0 0.3090169 -0.9510566 0 0.5877852 -0.8090171 0 0.5877852 -0.8090171 0 0.809017 -0.5877853 0 0.809017 -0.5877853 0 0.9510566 -0.309017 0 0.9510566 -0.309017 0 0.9999999 0 0 0.9999999 0 0 0.9510566 0.3090169 0 0.9510566 0.3090169 0 0.8090171 0.5877852 0 0.8090171 0.5877852 0 0.5877852 0.8090171 0 0.5877852 0.8090171 0 0.3090169 0.9510566 0 0.3090169 0.9510566 0 0 0.9999999 0 0 0.9999999 0 -0.3090169 0.9510565 0 -0.3090169 0.9510565 0 -0.5877852 0.809017 0 -0.5877852 0.809017 0 -0.8090171 0.5877852 0 -0.8090171 0.5877852 0 -0.9510566 0.3090169 0 -0.9510566 0.3090169 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510565 -0.3090172 0 -0.9510565 -0.3090172 0 -0.8090169 -0.5877854 0 -0.8090169 -0.5877854 0 -0.5877851 -0.8090171 0 -0.5877851 -0.8090171 0 -0.3090162 -0.9510568 0 -0.3090162 -0.9510568 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.3090169 0.9510565 0 0 1 0 0 1 0 -0.3090169 0.9510565 0 -0.5877852 0.8090171 0 -0.5877852 0.8090171 0 -0.8090169 0.5877854 0 -0.8090169 0.5877854 0 -0.9510565 0.3090171 0 -0.9510565 0.3090171 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510565 -0.3090169 0 -0.9510565 -0.3090169 0 -0.8090168 -0.5877855 0 -0.8090168 -0.5877855 0 -0.5877854 -0.8090169 0 -0.5877854 -0.8090169 0 -0.3090173 -0.9510565 0 -0.3090173 -0.9510565 0 0 -0.9999999 0 0 -0.9999999 0 0.3090168 -0.9510566 0 0.3090168 -0.9510566 0 0.5877851 -0.8090171 0 0.5877851 -0.8090171 0 0.8090169 -0.5877854 0 0.8090169 -0.5877854 0 0.9510566 -0.3090169 0 0.9510566 -0.3090169 0 0.9999999 0 0 0.9999999 0 0 0.9510566 0.3090169 0 0.9510566 0.3090169 0 0.8090173 0.5877849 0 0.8090173 0.5877849 0 0.5877856 0.8090168 0 0.5877856 0.8090168 0 0.3090162 0.9510568 0 0.3090162 0.9510568 0 -0.3090168 0.9510566 0 0 1 0 0 1 0 -0.3090168 0.9510566 0 -0.587785 0.8090172 0 -0.5877849 0.8090172 0 -0.8090171 0.5877851 0 -0.809017 0.5877852 0 -0.9510566 0.3090168 0 -0.9510565 0.3090168 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510567 -0.3090165 0 -0.9510567 -0.3090166 0 -0.809017 -0.5877852 0 -0.809017 -0.5877852 0 -0.5877851 -0.8090172 0 -0.5877851 -0.8090172 0 -0.3090169 -0.9510566 0 -0.3090169 -0.9510566 0 0 -1 0 0 -0.9999999 0 0.3090166 -0.9510567 0 0.3090167 -0.9510567 0 0.5877851 -0.8090172 0 0.5877851 -0.8090172 0 0.8090171 -0.5877851 0 0.8090171 -0.5877851 0 0.9510566 -0.3090168 0 0.9510565 -0.3090168 0 0.9999999 0 0 0.9999999 0 0 0.9510566 0.3090167 0 0.9510566 0.3090166 0 0.8090172 0.5877851 0 0.8090172 0.587785 0 0.5877853 0.809017 0 0.5877852 0.809017 0 0.309016 0.9510568 0 0.309016 0.9510569 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816731 0.1272473 -0.803408 0.5816731 0.1272473 -0.803408 0.5816731 0.1272473 -0.803408 0.5816731 0.1272473 -0.803408 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816722 0.3692866 -0.7247655 0.5816722 0.3692866 -0.7247655 0.5816722 0.3692866 -0.7247655 0.5816722 0.3692866 -0.7247655 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816736 0.5751763 -0.5751767 0.5816736 0.5751763 -0.5751767 0.5816736 0.5751763 -0.5751767 0.5816736 0.5751763 -0.5751767 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816728 0.7247651 -0.3692863 0.5816728 0.7247651 -0.3692863 0.5816728 0.7247651 -0.3692863 0.5816728 0.7247651 -0.3692863 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816733 0.8034081 -0.1272474 0.5816733 0.8034081 -0.1272474 0.5816733 0.8034081 -0.1272474 0.5816733 0.8034081 -0.1272474 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816733 0.803408 0.127247 0.5816733 0.803408 0.127247 0.5816733 0.803408 0.127247 0.5816733 0.803408 0.127247 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816734 0.7247645 0.3692865 0.5816734 0.7247645 0.3692865 0.5816734 0.7247645 0.3692865 0.5816734 0.7247645 0.3692865 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816733 0.5751765 0.5751768 0.5816733 0.5751765 0.5751768 0.5816733 0.5751765 0.5751768 0.5816733 0.5751765 0.5751768 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816729 0.3692866 0.7247649 0.5816729 0.3692866 0.7247649 0.5816729 0.3692866 0.7247649 0.5816729 0.3692866 0.7247649 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816739 0.1272473 0.8034076 0.5816739 0.1272473 0.8034076 0.5816739 0.1272473 0.8034076 0.5816739 0.1272473 0.8034076 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816727 -0.1272474 0.8034084 0.5816727 -0.1272474 0.8034084 0.5816727 -0.1272474 0.8034084 0.5816727 -0.1272474 0.8034084 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816732 -0.3692861 0.7247648 0.5816732 -0.3692861 0.7247648 0.5816732 -0.3692861 0.7247648 0.5816732 -0.3692861 0.7247648 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816727 -0.5751767 0.5751771 0.5816727 -0.5751767 0.5751771 0.5816727 -0.5751767 0.5751771 0.5816727 -0.5751767 0.5751771 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816723 -0.7247655 0.3692863 0.5816723 -0.7247655 0.3692863 0.5816723 -0.7247655 0.3692863 0.5816723 -0.7247655 0.3692863 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.581673 -0.8034082 0.1272473 0.581673 -0.8034082 0.1272473 0.581673 -0.8034082 0.1272473 0.581673 -0.8034082 0.1272473 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816732 -0.8034081 -0.1272473 0.5816732 -0.8034081 -0.1272473 0.5816732 -0.8034081 -0.1272473 0.5816732 -0.8034081 -0.1272473 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816727 -0.7247654 -0.369286 0.5816727 -0.7247654 -0.369286 0.5816727 -0.7247654 -0.369286 0.5816727 -0.7247654 -0.369286 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816733 -0.5751767 -0.5751764 0.5816733 -0.5751767 -0.5751764 0.5816733 -0.5751767 -0.5751764 0.5816733 -0.5751767 -0.5751764 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.581674 -0.3692863 -0.7247642 0.581674 -0.3692863 -0.7247642 0.581674 -0.3692863 -0.7247642 0.581674 -0.3692863 -0.7247642 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.5816733 -0.1272456 -0.8034083 0.5816733 -0.1272456 -0.8034083 0.5816733 -0.1272456 -0.8034083 0.5816733 -0.1272456 -0.8034083 1 0 0 1 0 0 1 0 0 0.9999914 0.001882656 -0.00369445 0.9999914 0.001882656 -0.00369445 0.9999914 0.001882656 -0.00369445 0.9999914 0.001882656 -0.00369445 1 0 0 1 0 0 1 0 0 0.9999914 0.003694543 -0.001882417 0.9999914 0.003694543 -0.001882417 0.9999914 0.003694543 -0.001882417 0.9999914 0.003694543 -0.001882417 1 0 0 1 0 0 1 0 0 0.9999914 0.004095329 6.48634e-4 0.9999914 0.004095329 6.48634e-4 0.9999914 0.004095329 6.48634e-4 0.9999914 0.004095329 6.48634e-4 0.9999642 0.007543729 0.003843636 0.9999642 0.007543729 0.003843636 0.9999642 0.007543729 0.003843636 0.9999642 0.007543729 0.003843636 0.9999914 0.002931871 0.002931934 0.9999914 0.002931871 0.002931934 0.9999914 0.002931871 0.002931934 0.9999914 0.002931871 0.002931934 0.9999598 -0.001402672 0.008864425 0.9999598 -0.001402672 0.008864425 0.9999598 -0.001402672 0.008864425 0.9999915 6.48616e-4 0.004095333 0.9999915 6.48616e-4 0.004095333 0.9999915 6.48616e-4 0.004095333 0.9999915 6.48616e-4 0.004095333 1 0 0 1 0 0 1 0 0 1 0 0 0.9999915 -0.001882656 0.003694453 0.9999915 -0.001882656 0.003694453 0.9999915 -0.001882656 0.003694453 0.9999915 -0.001882656 0.003694453 1 0 0 1 0 0 1 0 0 0.9999914 -0.003694413 0.001882417 0.9999914 -0.003694413 0.001882417 0.9999914 -0.003694413 0.001882417 0.9999914 -0.003694413 0.001882417 0.9998282 -0.009481335 -0.01593277 0.9998282 -0.009481335 -0.01593277 0.9998282 -0.009481335 -0.01593277 0.9999915 -0.004095332 -6.48637e-4 0.9999915 -0.004095332 -6.48637e-4 0.9999915 -0.004095332 -6.48637e-4 0.9999915 -0.004095332 -6.48637e-4 0.999828 0.001694876 -0.01846807 0.999828 0.001694876 -0.01846807 0.999828 0.001694876 -0.01846807 0.9999914 -0.002931743 -0.002931934 0.9999914 -0.002931743 -0.002931934 0.9999914 -0.002931743 -0.002931934 0.9999914 -0.002931743 -0.002931934 0.9999598 0.001402671 -0.008864968 0.9999598 0.001402671 -0.008864968 0.9999598 0.001402671 -0.008864968 0.9999915 -6.48616e-4 -0.004095333 0.9999915 -6.48616e-4 -0.004095333 0.9999915 -6.48616e-4 -0.004095333 0.9999915 -6.48616e-4 -0.004095333 0 -0.3090168 0.9510566 0 0 1 0 0 0.9999999 0 -0.3090168 0.9510566 0 -0.5877849 0.8090172 0 -0.5877851 0.8090172 0 -0.809017 0.5877852 0 -0.8090171 0.5877852 0 -0.9510565 0.3090168 0 -0.9510565 0.3090168 0 -0.9999999 0 0 -0.9999999 0 0 -0.9510567 -0.3090166 0 -0.9510567 -0.3090165 0 -0.809017 -0.5877852 0 -0.809017 -0.5877852 0 -0.5877851 -0.8090171 0 -0.5877851 -0.8090171 0 -0.3090169 -0.9510566 0 -0.3090169 -0.9510566 0 0 -0.9999999 0 0 -0.9999999 0 0.3090167 -0.9510567 0 0.3090167 -0.9510567 0 0.5877851 -0.8090172 0 0.5877851 -0.8090172 0 0.8090171 -0.5877851 0 0.8090171 -0.5877851 0 0.9510565 -0.3090169 0 0.9510565 -0.3090169 0 0.9999999 0 0 0.9999999 0 0 0.9510566 0.3090166 0 0.9510566 0.3090167 0 0.8090172 0.5877849 0 0.8090172 0.587785 0 0.5877852 0.809017 0 0.5877852 0.809017 0 0.3090159 0.9510568 0 0.3090159 0.9510569 0.9997348 -0.02274494 0.003602224 0.9997348 -0.02274494 0.003602224 0.9997348 -0.02274494 0.003602224 0.9997531 0.01980037 0.01009036 0.9997531 0.01980037 0.01009036 0.9997531 0.01980037 0.01009036 0.9999604 0.004041485 0.0079281 0.9999604 0.004041485 0.0079281 0.9999604 0.004041485 0.0079281 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999642 -0.001323945 0.008361926 0.9999642 -0.001323945 0.008361926 0.9999642 -0.001323945 0.008361926 0.9999642 -0.001323945 0.008361926 0.9999598 -0.006347093 0.00634663 0.9999598 -0.006347093 0.00634663 0.9999598 -0.006347093 0.00634663 1 0 0 1 0 0 1 0 0 0.9998281 -0.01808718 0.004094667 0.9998281 -0.01808718 0.004094667 0.9998281 -0.01808718 0.004094667 1 0 0 1 0 0 1 0 0 0.9998537 0.01453501 0.009028437 0.9998537 0.01453501 0.009028437 0.9998537 0.01453501 0.009028437 0.9999604 -0.001392792 0.008788434 0.9999604 -0.001392792 0.008788434 0.9999604 -0.001392792 0.008788434 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9998282 -0.01703577 -0.007317791 0.9998282 -0.01703577 -0.007317791 0.9998282 -0.01703577 -0.007317791 0.9997351 -0.02051258 -0.0104536 0.9997351 -0.02051258 -0.0104536 0.9997351 -0.02051258 -0.0104536 0.999753 0.01009558 0.01980444 0.999753 0.01009558 0.01980444 0.999753 0.01009558 0.01980444 1 0 0 1 0 0 1 0 0 0.9998536 0.006452639 0.01584809 0.9998536 0.006452639 0.01584809 0.9998536 0.006452639 0.01584809 0.9999598 -0.008865329 0.001403392 0.9999598 -0.008865329 0.001403392 0.9999598 -0.008865329 0.001403392 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999642 -0.005986613 0.005986481 0.9999642 -0.005986613 0.005986481 0.9999642 -0.005986613 0.005986481 0.9999642 -0.005986613 0.005986481 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999642 -0.008361983 0.001324593 0.9999642 -0.008361983 0.001324593 0.9999642 -0.008361983 0.001324593 0.9999642 -0.008361983 0.001324593 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999753 -0.003476457 0.02195289 0.999753 -0.003476457 0.02195289 0.999753 -0.003476457 0.02195289 1 0 0 1 0 0 1 0 0 0.9999604 -0.006291468 0.006292495 0.9999604 -0.006291468 0.006292495 0.9999604 -0.006291468 0.006292495 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999598 -0.007996603 -0.004080575 0.9999598 -0.007996603 -0.004080575 0.9999598 -0.007996603 -0.004080575 0.9998537 -0.004094929 0.01661317 0.9998537 -0.004094929 0.01661317 0.9998537 -0.004094929 0.01661317 1 0 0 1 0 0 1 0 0 0.9997352 -0.0104503 -0.02050532 0.9997352 -0.0104503 -0.02050532 0.9997352 -0.0104503 -0.02050532 1 0 0 1 0 0 1 0 0 0.9999605 -0.00878808 0.00139198 0.9999605 -0.00878808 0.00139198 0.9999605 -0.00878808 0.00139198 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9997349 0.00360433 -0.02274117 0.9997349 0.00360433 -0.02274117 0.9997349 0.00360433 -0.02274117 1 0 0 1 0 0 1 0 0 0.9999598 -0.004074323 -0.007997626 0.9999598 -0.004074323 -0.007997626 0.9999598 -0.004074323 -0.007997626 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999642 -0.00754387 -0.003843633 0.9999642 -0.00754387 -0.003843633 0.9999642 -0.00754387 -0.003843633 0.9999642 -0.00754387 -0.003843633 0.9997531 -0.01571591 0.01571715 0.9997531 -0.01571591 0.01571715 0.9997531 -0.01571591 0.01571715 1 0 0 1 0 0 1 0 0 0.9998537 -0.0130779 0.01103532 0.9998537 -0.0130779 0.01103532 0.9998537 -0.0130779 0.01103532 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9998536 -0.01706764 0.001239744 0.9998536 -0.01706764 0.001239744 0.9998536 -0.01706764 0.001239744 0.9999642 -0.003843863 -0.007543407 0.9999642 -0.003843863 -0.007543407 0.9999642 -0.003843863 -0.007543407 0.9999642 -0.003843863 -0.007543407 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999604 -0.007927614 -0.004040073 0.9999604 -0.007927614 -0.004040073 0.9999604 -0.007927614 -0.004040073 1 0 0 1 0 0 1 0 0 0.9997529 -0.02195512 0.003478117 0.9997529 -0.02195512 0.003478117 0.9997529 -0.02195512 0.003478117 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9997348 0.0162841 -0.01628219 0.9997348 0.0162841 -0.01628219 0.9997348 0.0162841 -0.01628219 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9998282 0.01222486 -0.01394383 0.9998282 0.01222486 -0.01394383 0.9998282 0.01222486 -0.01394383 0.9999642 0.001324496 -0.008361802 0.9999642 0.001324496 -0.008361802 0.9999642 0.001324496 -0.008361802 0.9999642 0.001324496 -0.008361802 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999605 -0.004039312 -0.00792809 0.9999605 -0.004039312 -0.00792809 0.9999605 -0.004039312 -0.00792809 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9997531 -0.01980034 -0.01009036 0.9997531 -0.01980034 -0.01009036 0.9997531 -0.01980034 -0.01009036 0.9998536 -0.01453503 -0.009028435 0.9998536 -0.01453503 -0.009028435 0.9998536 -0.01453503 -0.009028435 1 0 0 1 0 0 1 0 0 0.9999598 0.006347079 -0.00634648 0.9999598 0.006347079 -0.00634648 0.9999598 0.006347079 -0.00634648 1 0 0 1 0 0 1 0 0 0.9997348 0.02274489 -0.003602138 0.9997348 0.02274489 -0.003602138 0.9997348 0.02274489 -0.003602138 0.999828 0.01808714 -0.004094662 0.999828 0.01808714 -0.004094662 0.999828 0.01808714 -0.004094662 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999604 0.001391567 -0.008788584 0.9999604 0.001391567 -0.008788584 0.9999604 0.001391567 -0.008788584 0.9999642 0.005986601 -0.005986605 0.9999642 0.005986601 -0.005986605 0.9999642 0.005986601 -0.005986605 0.9999642 0.005986601 -0.005986605 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9998326 -0.00730427 -0.01677567 0.9998326 -0.00730427 -0.01677567 0.9998326 -0.00730427 -0.01677567 0.9998326 -0.00730427 -0.01677567 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999598 0.008865329 -0.001404059 0.9999598 0.008865329 -0.001404059 0.9999598 0.008865329 -0.001404059 1 0 0 1 0 0 1 0 0 0.9998073 0.01788888 0.008083451 0.9998073 0.01788888 0.008083451 0.9998073 0.01788888 0.008083451 0.9998073 0.01788888 0.008083451 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999642 0.008362247 -0.001324203 0.9999642 0.008362247 -0.001324203 0.9999642 0.008362247 -0.001324203 0.9999642 0.008362247 -0.001324203 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999597 0.007996457 0.004074526 0.9999597 0.007996457 0.004074526 0.9999597 0.007996457 0.004074526 1 0 0 1 0 0 1 0 0 0.9998074 0.009719645 0.01705197 0.9998074 0.009719645 0.01705197 0.9998074 0.009719645 0.01705197 0.9998074 0.009719645 0.01705197 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999605 0.006292002 -0.006291815 0.9999605 0.006292002 -0.006291815 0.9999605 0.006292002 -0.006291815 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9998326 0.003949787 -0.01786412 0.9998326 0.003949787 -0.01786412 0.9998326 0.003949787 -0.01786412 0.9998326 0.003949787 -0.01786412 0.9998326 0.01369568 -0.01213167 0.9998326 0.01369568 -0.01213167 0.9998326 0.01369568 -0.01213167 0.9998326 0.01369568 -0.01213167 0.9999597 0.004074321 0.007997039 0.9999597 0.004074321 0.007997039 0.9999597 0.004074321 0.007997039 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9998074 -0.002160375 0.0195104 0.9998074 -0.002160375 0.0195104 0.9998074 -0.002160375 0.0195104 0.9998074 -0.002160375 0.0195104 1 0 0 1 0 0 1 0 0 0.9999605 0.008788594 -0.001391976 0.9999605 0.008788594 -0.001391976 0.9999605 0.008788594 -0.001391976 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999642 0.003843998 0.007543403 0.9999642 0.003843998 0.007543403 0.9999642 0.003843998 0.007543403 0.9999642 0.003843998 0.007543403 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999605 0.007927607 0.004040071 0.9999605 0.007927607 0.004040071 0.9999605 0.007927607 0.004040071 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9998326 0.01821149 -0.001763882 0.9998326 0.01821149 -0.001763882 0.9998326 0.01821149 -0.001763882 0.9998326 0.01821149 -0.001763882 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9998073 -0.01321454 0.01451461 0.9998073 -0.01321454 0.01451461 0.9998073 -0.01321454 0.01451461 0.9998073 -0.01321454 0.01451461 1 0 0 1 0 0 1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBodyShape_1-normals-array\" count=\"1144\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBodyShape_1-map1\" name=\"gearBodyShape_1-map1\">\r\n          <float_array id=\"gearBodyShape_1-map1-array\" count=\"1240\">0.7352171 0.8132464 0.06507277 0.520768 0.06545419 0.51836 0.7352172 0.2494029 0.06545419 0.51836 0.7352172 0.2807274 0.06507277 0.520768 0.7352171 0.3120521 0.06396592 0.5229405 0.7352171 0.3433767 0.06396592 0.5229405 0.7352171 0.3747013 0.06224185 0.5246645 0.7352172 0.406026 0.06224185 0.5246645 0.7352172 0.4373507 0.06006947 0.5257714 0.7352172 0.4686753 0.06006947 0.5257714 0.7352172 0.4999999 0.5185304 0.6221143 0.5194839 0.6160934 0.5256947 0.6160934 0.5244371 0.6240335 0.5157629 0.6275458 0.5207875 0.6311964 0.5114524 0.6318563 0.515103 0.6368809 0.5060209 0.6346238 0.5079401 0.6405305 0.5 0.6355773 0.5 0.6417881 0.4939791 0.6346238 0.4920599 0.6405305 0.4885476 0.6318563 0.484897 0.6368809 0.4842371 0.6275458 0.4792125 0.6311964 0.4814696 0.6221143 0.4755629 0.6240335 0.480516 0.6160934 0.4743053 0.6160934 0.4814696 0.6100725 0.4755629 0.6081533 0.4842371 0.604641 0.4792125 0.6009904 0.4885476 0.6003305 0.484897 0.5953059 0.4939791 0.597563 0.4920599 0.5916562 0.5 0.5966094 0.5 0.5903987 0.5060209 0.597563 0.5079401 0.5916562 0.5114524 0.6003305 0.515103 0.5953059 0.5157629 0.604641 0.5207875 0.6009904 0.5185304 0.6100725 0.5244372 0.6081533 0.5244371 0.6240335 0.5256947 0.6160934 0.5194839 0.6160934 0.5185304 0.6221143 0.5207875 0.6311964 0.5157629 0.6275458 0.515103 0.6368809 0.5114524 0.6318563 0.5079401 0.6405305 0.5060209 0.6346238 0.5 0.6417881 0.5 0.6355773 0.4920599 0.6405305 0.4939791 0.6346238 0.484897 0.6368809 0.4885476 0.6318563 0.4792125 0.6311964 0.4842371 0.6275458 0.4755629 0.6240335 0.4814696 0.6221143 0.4743053 0.6160934 0.480516 0.6160934 0.4755629 0.6081533 0.4814696 0.6100725 0.4792125 0.6009904 0.4842371 0.604641 0.484897 0.5953059 0.4885476 0.6003305 0.4920599 0.5916562 0.4939791 0.597563 0.5 0.5903987 0.5 0.5966094 0.5079401 0.5916562 0.5060209 0.597563 0.515103 0.5953059 0.5114524 0.6003305 0.5207875 0.6009904 0.5157629 0.604641 0.5244372 0.6081533 0.5185304 0.6100725 0.7352172 0.1867535 0.4811823 0.1867535 0.05766135 0.5261528 0.7352172 0.1867535 0.05766135 0.5261528 0.7352172 0.5313246 0.05525324 0.5257714 0.7352172 0.5626493 0.05525324 0.5257714 0.7352172 0.5939739 0.05308083 0.5246645 0.7352172 0.6252985 0.05308083 0.5246645 0.7352171 0.6566232 0.05135679 0.5229405 0.7352172 0.6879479 0.05135679 0.5229405 0.7352171 0.7192725 0.05024987 0.520768 0.7352172 0.7505971 0.05024987 0.520768 0.7352171 0.7819217 0.04986852 0.51836 0.4811823 0.2180781 0.4811823 0.8132464 0.7352171 0.8132464 0.7352171 0.2180781 0.4811823 0.2494028 0.7352172 0.2494029 0.4811822 0.2807275 0.7352171 0.2807275 0.4811822 0.3120521 0.7352171 0.3120521 0.4811823 0.3433767 0.7352171 0.3433767 0.4811822 0.3747014 0.7352171 0.3747014 0.4811822 0.406026 0.7352171 0.406026 0.4811822 0.4373506 0.7352172 0.4373507 0.4811822 0.4686753 0.7352172 0.4686753 0.4811823 0.4999999 0.7352172 0.4999999 0.4811823 0.5313246 0.7352172 0.5313246 0.4811823 0.5626493 0.7352172 0.5626493 0.4811823 0.5939739 0.7352172 0.5939739 0.4811823 0.6252986 0.7352172 0.6252986 0.4811823 0.6566232 0.7352172 0.6566232 0.4811823 0.6879479 0.7352171 0.6879479 0.4811823 0.7192725 0.7352171 0.7192725 0.4811823 0.7505971 0.7352172 0.7505971 0.4811822 0.7819217 0.7352171 0.7819218 0.7352171 0.2180781 0.04986852 0.51836 0.05024987 0.5159517 0.05024987 0.5159517 0.05135679 0.5137795 0.05135679 0.5137795 0.05308083 0.5120554 0.05308083 0.5120554 0.05525324 0.5109485 0.05525324 0.5109485 0.05766135 0.5105671 0.05766135 0.5105671 0.06006947 0.5109485 0.06006947 0.5109485 0.06224185 0.5120554 0.06224185 0.5120554 0.06396592 0.5137795 0.06396592 0.5137795 0.06507277 0.5159517 0.06507277 0.5159517 0.5665038 0.5202795 0.5670599 0.5200987 0.5917217 0.1867535 0.5917215 0.8132464 0.5917215 0.2180781 0.5917217 0.2494028 0.5917216 0.2807274 0.5917215 0.3120521 0.5917215 0.3433767 0.5917215 0.3747014 0.5917216 0.406026 0.5917216 0.4373507 0.5917216 0.4686753 0.5917217 0.4999999 0.5917217 0.5313246 0.5917217 0.5626493 0.5917217 0.5939739 0.5917217 0.6252985 0.5917215 0.6566232 0.5917217 0.6879479 0.5917215 0.7192725 0.5917217 0.7505971 0.5917215 0.7819217 0.5679399 0.525655 0.5670599 0.5312111 0.5665037 0.5310304 0.5673552 0.525655 0.564506 0.5362235 0.564033 0.5358797 0.5605283 0.5402012 0.5601845 0.5397281 0.5555159 0.5427551 0.5553352 0.542199 0.5499598 0.5436351 0.5499598 0.5430503 0.5444035 0.5427551 0.5445842 0.542199 0.5393913 0.5402012 0.539735 0.5397281 0.5354134 0.5362235 0.5358866 0.5358797 0.5328596 0.5312111 0.5334157 0.5310304 0.5319795 0.525655 0.5917215 0.2180781 0.5917217 0.1867535 0.4901533 0.1867535 0.4901533 0.2180781 0.5917217 0.2494028 0.4901533 0.2494028 0.5917216 0.2807274 0.4901533 0.2807275 0.5917215 0.3120521 0.4901533 0.3120521 0.5917215 0.3433767 0.4901533 0.3433767 0.5917215 0.3747014 0.4901533 0.3747014 0.5917216 0.406026 0.4901533 0.406026 0.5917216 0.4373507 0.4901533 0.4373506 0.5917216 0.4686753 0.4901533 0.4686753 0.5917217 0.4999999 0.4901533 0.4999999 0.5917217 0.5313246 0.4901533 0.5313246 0.5917217 0.5626493 0.4901533 0.5626493 0.5917217 0.5939739 0.4901533 0.5939739 0.5917217 0.6252985 0.4901533 0.6252985 0.5917215 0.6566232 0.4901533 0.6566232 0.5917217 0.6879479 0.4901533 0.6879478 0.5917215 0.7192725 0.4901533 0.7192725 0.5917217 0.7505971 0.4901533 0.7505971 0.5917215 0.7819217 0.4901533 0.7819217 0.5917215 0.8132464 0.4901533 0.8132464 0.4412882 0.9582136 0.5405949 0.8132464 0.4499283 0.9582136 0.4585685 0.9582136 0.4672086 0.9582136 0.4758487 0.9582136 0.4844888 0.9582136 0.4931289 0.9582136 0.501769 0.9582136 0.5104091 0.9582136 0.5190492 0.9582136 0.5276893 0.9582137 0.5363295 0.9582136 0.5449696 0.9582136 0.5536097 0.9582136 0.5622498 0.9582136 0.5708899 0.9582136 0.5795301 0.9582136 0.5881702 0.9582136 0.5968103 0.9582136 0.6054503 0.9582136 0.5505367 0.1867535 0.5505366 0.8132464 0.4499283 0.9554714 0.4585685 0.9554714 0.4672086 0.9554714 0.4758486 0.9554714 0.4844888 0.9554714 0.4931289 0.9554714 0.501769 0.9554714 0.5104091 0.9554714 0.5190492 0.9554714 0.5276893 0.9554714 0.5363295 0.9554714 0.5449696 0.9554714 0.5536097 0.9554714 0.5622498 0.9554714 0.5708899 0.9554714 0.5795301 0.9554714 0.5881702 0.9554714 0.5968103 0.9554714 0.6054503 0.9554714 0.5505366 0.7819217 0.4412882 0.9554714 0.6140904 0.9554714 0.5505367 0.7505971 0.5505366 0.7192725 0.5505367 0.6879479 0.5505366 0.6566232 0.5505367 0.6252985 0.5505367 0.5939739 0.5505367 0.5626493 0.5505367 0.5313246 0.5505367 0.4999999 0.5505367 0.4686753 0.5505367 0.4373506 0.5505367 0.406026 0.5505366 0.3747014 0.5505366 0.3433767 0.5505366 0.3120521 0.5505367 0.2807274 0.5505367 0.2494028 0.5505366 0.2180781 0.5405949 0.7819217 0.5405949 0.1867535 0.6140904 0.9582136 0.5405949 0.7505971 0.5405949 0.7192725 0.5405949 0.6879479 0.5405949 0.6566232 0.5405949 0.6252985 0.5405949 0.5939739 0.5405949 0.5626493 0.5405949 0.5313246 0.5405949 0.4999999 0.5405949 0.4686753 0.5405949 0.4373506 0.5405949 0.406026 0.5405949 0.3747014 0.5405949 0.3433767 0.5405949 0.3120521 0.5405949 0.2807274 0.5405949 0.2494028 0.5405949 0.2180781 0.5208408 0.6159412 0.5198208 0.6223813 0.513943 0.6204715 0.5146606 0.6159412 0.5168605 0.628191 0.5118607 0.6245583 0.5122499 0.6328017 0.5086173 0.6278018 0.5064402 0.635762 0.5045304 0.6298841 0.5 0.6367819 0.5 0.6306018 0.4935598 0.635762 0.4954696 0.6298841 0.4877501 0.6328017 0.4913827 0.6278018 0.4831394 0.628191 0.4881393 0.6245583 0.4801792 0.6223813 0.4860569 0.6204715 0.4791592 0.6159412 0.4853394 0.6159412 0.4801792 0.6095009 0.4860569 0.6114107 0.4831394 0.6036912 0.4881393 0.6073238 0.4877501 0.5990806 0.4913827 0.6040804 0.4935598 0.5961203 0.4954696 0.6019981 0.5 0.5951003 0.5 0.6012805 0.5064402 0.5961203 0.5045304 0.6019981 0.5122499 0.5990806 0.5086173 0.6040804 0.5168605 0.6036912 0.5118607 0.6073238 0.5198208 0.6095009 0.5139431 0.6114107 0.5325643 0.525655 0.5328596 0.5200987 0.5334157 0.5202795 0.5354134 0.5150864 0.5358866 0.5154302 0.5393913 0.5111086 0.539735 0.5115818 0.5444035 0.5085548 0.5445842 0.5091109 0.5499598 0.5076748 0.5499598 0.5082595 0.5555159 0.5085548 0.5553352 0.5091109 0.5605283 0.5111086 0.5601845 0.5115818 0.564506 0.5150864 0.564033 0.5154302 0.02242398 0.5185066 0.4816689 0.6117544 0.4810957 0.6146692 0.4842691 0.6149065 0.4845286 0.6124145 0.4807316 0.6124004 0.4805418 0.6136015 0.4826778 0.6147876 0.4830936 0.6120833 0.4843682 0.6139549 0.4844286 0.6133744 0.0212501 0.5162027 0.4852983 0.6035876 0.4880625 0.6056968 0.4898564 0.603804 0.4878622 0.6014558 0.4870575 0.6021249 0.4863369 0.602724 0.4867637 0.6047058 0.4888304 0.6025959 0.4892352 0.6044594 0.488731 0.6049914 0.01829171 0.519161 0.4953788 0.5975778 0.4963945 0.6003668 0.4984955 0.600075 0.4985929 0.5970398 0.4965854 0.5973758 0.4975052 0.5972219 0.4985522 0.5983077 0.498523 0.5992179 0.4961026 0.5995653 0.4957155 0.5985023 0.0201911 0.5228889 0.5071279 0.5984508 0.5062684 0.6013412 0.5081804 0.6022848 0.5099636 0.5999446 0.5066978 0.5998971 0.5075979 0.6019973 0.5069867 0.6016958 0.5090822 0.6011013 0.5082212 0.5990267 0.5089331 0.5994017 0.02201951 0.5210605 0.5176091 0.6088728 0.5160249 0.6059023 0.5136656 0.6077907 0.5146087 0.6096494 0.515606 0.6093913 0.5163252 0.6092051 0.5170819 0.6078842 0.5165164 0.6068238 0.514475 0.6071429 0.5150868 0.6066532 0.01415941 0.5198156 0.5152189 0.6196785 0.5183046 0.6204891 0.5189352 0.6172415 0.5155357 0.6170334 0.517076 0.6201663 0.5162603 0.619952 0.5167013 0.6171047 0.5176937 0.6171654 0.5185215 0.6193717 0.5187057 0.6184234 0.01533332 0.5221195 0.5104446 0.627888 0.5121735 0.6303763 0.514451 0.6280773 0.5119755 0.6262105 0.5110167 0.6287114 0.5114447 0.6293275 0.5130248 0.629517 0.5136334 0.6289027 0.5127307 0.62678 0.5136058 0.62744 0.01639232 0.5154333 0.501623 0.6319022 0.5013617 0.6347758 0.5045363 0.6342365 0.5035595 0.6314341 0.5038672 0.6323169 0.50424 0.6333865 0.5034727 0.6344172 0.5024488 0.6345911 0.5014458 0.6338513 0.5015496 0.6327096 0.01456392 0.5172617 0.4898627 0.6320335 0.4929423 0.6335042 0.4936981 0.6305901 0.4918841 0.6296351 0.4908915 0.6325248 0.4920238 0.6330655 0.4932001 0.6325104 0.4934692 0.6314727 0.4914178 0.6301885 0.490757 0.6309724 0.0189462 0.5150288 0.4853437 0.6223586 0.4825691 0.6231788 0.4839842 0.6259559 0.4864485 0.6242337 0.4834199 0.6229272 0.4846667 0.6225587 0.4829926 0.62401 0.4835001 0.6250059 0.4848249 0.6253684 0.4856386 0.6247997 0.01763722 0.5232934 0.0192036 0.5148402 0.01854908 0.5189726 0.02150747 0.5160142 0.0178946 0.5231048 0.02044851 0.5227004 0.0155907 0.5219309 0.01482132 0.5170732 0.01441681 0.519627 0.01664969 0.5152447 0.02268139 0.5183181 0.02227688 0.520872 0.01658741 0.5151396 0.0184868 0.5188674 0.01914129 0.5147352 0.02221462 0.5207668 0.0226191 0.5182129 0.01552844 0.5218258 0.01783234 0.5229997 0.01475903 0.516968 0.01435453 0.5195218 0.02038625 0.5225952 0.02144521 0.515909 0.01638335 0.5153244 0.01828277 0.5190522 0.01893726 0.5149199 0.02201054 0.5209516 0.02241504 0.5183977 0.01762828 0.5231845 0.02018216 0.52278 0.01532438 0.5220105 0.01455498 0.5171527 0.02124116 0.5160937 0.01415047 0.5197067 0.01439989 0.5200142 0.0155738 0.5223182 0.01853219 0.5193598 0.01918668 0.5152275 0.01663277 0.515632 0.02149057 0.5164014 0.02043158 0.5230876 0.02225998 0.5212592 0.02266446 0.5187053 0.01787767 0.5234922 0.01480439 0.5174604 0.02258611 0.5187237 0.01845378 0.5193782 0.02218163 0.5212776 0.01549545 0.5223367 0.01779932 0.5235105 0.01432154 0.5200327 0.0191083 0.5152459 0.01655442 0.5156503 0.02141219 0.5164198 0.01472604 0.5174789 0.0203532 0.5231059 0.01867461 0.5192595 0.01932907 0.5151271 0.01677519 0.5155317 0.02240241 0.5211589 0.02280688 0.5186049 0.0157162 0.5222178 0.01802009 0.5233917 0.01494682 0.51736 0.02163297 0.516301 0.02057397 0.5229872 0.01454234 0.5199139 0.01837295 0.5191054 0.02133131 0.516147 0.01902741 0.5149731 0.02250522 0.5184509 0.01771843 0.5232376 0.02027237 0.5228332 0.01464516 0.517206 0.01424062 0.5197598 0.01541454 0.5220638 0.02210069 0.5210047 0.01647353 0.5153776 0.02209985 0.5212531 0.02250439 0.5186992 0.01837206 0.5193537 0.0154137 0.5223121 0.0177176 0.523486 0.01423979 0.5200083 0.0164727 0.515626 0.01464427 0.5174543 0.02133048 0.5163954 0.01902658 0.5152215 0.02027148 0.5230815 0.01847887 0.5190452 0.01657951 0.5153174 0.01475108 0.5171459 0.02143729 0.5160868 0.01913339 0.514913 0.01782435 0.5231776 0.02037829 0.522773 0.01552051 0.5220037 0.0143466 0.5196998 0.0226112 0.5183908 0.02220666 0.5209447</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBodyShape_1-map1-array\" count=\"620\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBodyShape_1-vertices\" name=\"gearBodyShape_1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBodyShape_1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"422\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBodyShape_1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBodyShape_1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBodyShape_1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 3 4 3 4 4 4 3 4 4 4 3 4 3 4 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 4 3 3 4 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 4 3 3 4 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 4 3 3 3 3 3 4 3 3 3 4 3 3 3 3 3 4 3 3 4 3 3 3 3 3 3 3 4 3 3 3 4 3 3 3 4 4 3 3 3 3 3 3 3 3 4 3 3 3 4 3 3 3 3 3 4 3 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 4 3</vcount>\r\n          <p>1 0 163 0 1 103 100 2 185 101 3 187 2 4 3 1 0 163 101 3 187 102 5 188 3 6 5 2 4 3 102 5 188 103 7 189 4 8 7 3 6 5 103 7 189 104 9 190 5 10 9 4 8 7 104 9 190 105 11 191 6 12 11 5 10 9 105 11 191 106 13 192 7 14 13 6 12 11 106 13 192 107 15 193 8 16 15 7 14 13 107 15 193 108 17 194 9 18 17 8 16 15 108 17 194 109 19 195 10 20 19 9 18 17 109 19 195 110 21 196 11 22 105 10 20 19 110 21 196 111 23 197 12 24 107 11 22 105 111 23 197 112 25 198 13 26 109 12 24 107 112 25 198 113 27 199 14 28 111 13 26 109 113 27 199 114 29 200 15 30 113 14 28 111 114 29 200 115 31 201 16 32 115 15 30 113 115 31 201 116 33 202 17 34 117 16 32 115 116 33 202 117 35 203 18 36 119 17 34 117 117 35 203 118 37 204 19 38 121 18 36 119 118 37 204 119 39 205 0 1 0 19 38 121 119 39 205 100 2 186 21 40 20 20 41 21 40 42 22 41 43 23 22 44 24 21 40 20 41 43 23 42 45 25 23 46 26 22 44 24 42 45 25 43 47 27 24 48 28 23 46 26 43 47 27 44 49 29 25 50 30 24 48 28 44 49 29 45 51 31 26 52 32 25 50 30 45 51 31 46 53 33 27 54 34 26 52 32 46 53 33 47 55 35 28 56 36 27 54 34 47 55 35 48 57 37 29 58 38 28 56 36 48 57 37 49 59 39 30 60 40 29 58 38 49 59 39 50 61 41 31 62 42 30 60 40 50 61 41 51 63 43 32 64 44 31 62 42 51 63 43 52 65 45 33 66 46 32 64 44 52 65 45 53 67 47 34 68 48 33 66 46 53 67 47 54 69 49 35 70 50 34 68 48 54 69 49 55 71 51 36 72 52 35 70 50 55 71 51 56 73 53 37 74 54 36 72 52 56 73 53 57 75 55 38 76 56 37 74 54 57 75 55 58 77 57 39 78 58 38 76 56 58 77 57 59 79 59 20 41 21 39 78 58 59 79 59 40 42 22 41 80 123 40 81 101 60 82 100 61 83 126 42 84 127 41 80 123 61 83 126 62 85 128 43 86 129 42 84 127 62 85 128 63 87 130 44 88 131 43 86 129 63 87 130 64 89 132 45 90 133 44 88 131 64 89 132 65 91 134 46 92 135 45 90 133 65 91 134 66 93 136 47 94 137 46 92 135 66 93 136 67 95 138 48 96 139 47 94 137 67 95 138 68 97 140 49 98 141 48 96 139 68 97 140 69 99 142 50 100 143 49 98 141 69 99 142 70 101 144 51 102 145 50 100 143 70 101 144 71 103 146 52 104 147 51 102 145 71 103 146 72 105 148 53 106 149 52 104 147 72 105 148 73 107 150 54 108 151 53 106 149 73 107 150 74 109 152 55 110 153 54 108 151 74 109 152 75 111 154 56 112 155 55 110 153 75 111 154 76 113 156 57 114 157 56 112 155 76 113 156 77 115 158 58 116 159 57 114 157 77 115 158 78 117 160 59 118 161 58 116 159 78 117 160 79 119 162 40 81 124 59 118 161 79 119 162 60 82 125 61 120 60 60 121 61 0 122 62 1 123 63 62 124 64 61 120 60 1 123 63 2 125 65 63 126 66 62 124 64 2 125 65 3 127 67 64 128 68 63 126 66 3 127 67 4 129 69 65 130 70 64 128 68 4 129 69 5 131 71 66 132 72 65 130 70 5 131 71 6 133 73 67 134 74 66 132 72 6 133 73 7 135 75 68 136 76 67 134 74 7 135 75 8 137 77 69 138 78 68 136 76 8 137 77 9 139 79 70 140 80 69 138 78 9 139 79 10 141 81 71 142 82 70 140 80 10 141 81 11 143 83 72 144 84 71 142 82 11 143 83 12 145 85 73 146 86 72 144 84 12 145 85 13 147 87 74 148 88 73 146 86 13 147 87 14 149 89 75 150 90 74 148 88 14 149 89 15 151 91 76 152 92 75 150 90 15 151 91 16 153 93 77 154 94 76 152 92 16 153 93 17 155 95 78 156 96 77 154 94 17 155 95 18 157 97 79 158 98 78 156 96 18 157 97 19 159 99 60 121 61 79 158 98 19 159 99 0 122 62 81 160 1 80 161 2 20 162 4 21 163 6 82 164 8 81 160 1 21 163 6 22 165 10 83 166 12 82 164 8 22 165 10 23 167 14 84 168 16 83 166 12 23 167 14 24 169 18 85 170 102 84 168 16 24 169 18 25 171 104 86 172 106 85 170 102 25 171 104 26 173 108 87 174 110 86 172 106 26 173 108 27 175 112 88 176 114 87 174 110 27 175 112 28 177 116 89 178 118 88 176 114 28 177 116 29 179 120 90 180 122 89 178 118 29 179 120 30 181 164 91 182 165 90 180 122 30 181 164 31 183 166 92 184 167 91 182 165 31 183 166 32 185 168 93 186 169 92 184 167 32 185 168 33 187 170 94 188 171 93 186 169 33 187 170 34 189 172 95 190 173 94 188 171 34 189 172 35 191 174 96 192 175 95 190 173 35 191 174 36 193 176 97 194 177 96 192 175 36 193 176 37 195 178 98 196 179 97 194 177 37 195 178 38 197 180 99 198 181 98 196 179 38 197 180 39 199 182 80 161 2 99 198 181 39 199 182 20 162 4 141 200 227 140 201 228 200 202 290 201 203 331 144 204 231 141 200 227 201 203 331 202 205 330 146 206 233 144 204 231 202 205 330 203 207 329 148 208 235 146 206 233 203 207 329 204 209 328 150 210 237 148 208 235 204 209 328 205 211 327 152 212 239 150 210 237 205 211 327 206 213 326 154 214 241 152 212 239 206 213 326 207 215 325 156 216 243 154 214 241 207 215 325 208 217 324 158 218 245 156 216 243 208 217 324 209 219 323 160 220 247 158 218 245 209 219 323 210 221 322 162 222 249 160 220 247 210 221 322 211 223 321 164 224 251 162 222 249 211 223 321 212 225 320 166 226 253 164 224 251 212 225 320 213 227 319 168 228 255 166 226 253 213 227 319 214 229 318 170 230 257 168 228 255 214 229 318 215 231 317 172 232 259 170 230 257 215 231 317 216 233 316 174 234 261 172 232 259 216 233 316 217 235 315 176 236 263 174 234 261 217 235 315 218 237 314 178 238 265 176 236 263 218 237 314 219 239 311 140 201 267 178 238 265 219 239 311 200 202 291 101 240 187 100 241 185 140 242 228 141 243 227 80 244 206 81 245 207 121 246 208 120 247 209 102 248 188 101 249 187 141 250 227 144 251 231 81 252 207 82 253 210 122 254 211 121 255 208 103 256 189 102 257 188 144 258 231 146 259 233 82 260 210 83 261 212 123 262 213 122 263 211 104 264 190 103 265 189 146 266 233 148 267 235 83 268 212 84 269 214 124 270 215 123 271 213 105 272 191 104 273 190 148 274 235 150 275 237 84 276 214 85 277 216 125 278 217 124 279 215 106 280 192 105 281 191 150 282 237 152 283 239 85 284 216 86 285 218 126 286 219 125 287 217 107 288 193 106 289 192 152 290 239 154 291 241 86 292 218 87 293 220 127 294 221 126 295 219 108 296 194 107 297 193 154 298 241 156 299 243 87 300 220 88 301 222 128 302 223 127 303 221 109 304 195 108 305 194 156 306 243 158 307 245 88 308 222 89 309 224 129 310 225 128 311 223 110 312 196 109 313 195 158 314 245 160 315 247 89 316 224 90 317 226 130 318 393 129 319 225 111 320 197 110 321 196 160 322 247 162 323 249 90 324 226 91 325 394 131 326 395 130 327 393 112 328 198 111 329 197 162 330 249 164 331 251 91 332 394 92 333 396 132 334 397 131 335 395 113 336 199 112 337 198 164 338 251 166 339 253 92 340 396 93 341 398 133 342 399 132 343 397 114 344 200 113 345 199 166 346 253 168 347 255 93 348 398 94 349 400 134 350 401 133 351 399 115 352 201 114 353 200 168 354 255 170 355 257 94 356 400 95 357 402 135 358 403 134 359 401 116 360 202 115 361 201 170 362 257 172 363 259 95 364 402 96 365 404 136 366 405 135 367 403 117 368 203 116 369 202 172 370 259 174 371 261 96 372 404 97 373 406 137 374 407 136 375 405 118 376 204 117 377 203 174 378 261 176 379 263 97 380 406 98 381 408 138 382 409 137 383 407 119 384 205 118 385 204 176 386 263 178 387 265 98 388 408 99 389 184 139 390 183 138 391 409 100 392 186 119 393 205 178 394 265 140 395 267 99 396 184 80 397 206 120 398 209 139 399 183 120 400 353 278 401 468 283 402 473 121 403 354 122 404 357 145 405 358 143 406 355 122 407 357 289 408 479 296 409 486 123 410 359 124 411 361 149 412 362 147 413 360 124 414 361 300 415 490 303 416 493 125 417 363 126 418 365 153 419 366 151 420 364 312 421 502 155 422 368 153 423 366 311 424 501 127 425 367 128 426 369 157 427 370 155 428 368 157 429 370 329 430 519 323 431 513 129 432 371 130 433 373 161 434 374 159 435 372 130 436 373 131 437 375 225 438 415 226 439 416 131 440 375 132 441 377 165 442 378 163 443 376 132 444 377 232 445 422 238 446 428 133 447 379 134 448 381 169 449 382 167 450 380 134 451 381 252 452 442 169 453 382 135 454 383 136 455 385 173 456 386 171 457 384 136 458 385 258 459 448 173 460 386 137 461 387 138 462 389 177 463 390 175 464 388 177 465 390 273 466 463 267 467 457 139 468 391 120 469 353 142 470 356 179 471 392 181 472 352 180 473 333 142 474 229 143 475 230 182 476 351 181 472 352 143 475 230 145 477 232 183 478 350 182 476 351 145 477 232 147 479 234 184 480 349 183 478 350 147 479 234 149 481 236 185 482 348 184 480 349 149 481 236 151 483 238 186 484 347 185 482 348 151 483 238 153 485 240 187 486 346 186 484 347 153 485 240 155 487 242 188 488 345 187 486 346 155 487 242 157 489 244 189 490 344 188 488 345 157 489 244 159 491 246 190 492 343 189 490 344 159 491 246 161 493 248 191 494 342 190 492 343 161 493 248 163 495 250 192 496 341 191 494 342 163 495 250 165 497 252 193 498 340 192 496 341 165 497 252 167 499 254 194 500 339 193 498 340 167 499 254 169 501 256 195 502 338 194 500 339 169 501 256 171 503 258 196 504 337 195 502 338 171 503 258 173 505 260 197 506 336 196 504 337 173 505 260 175 507 262 198 508 335 197 506 336 175 507 262 177 509 264 199 510 332 198 508 335 177 509 264 179 511 266 180 473 270 199 510 332 179 511 266 142 474 268 201 203 292 200 202 312 180 473 269 181 472 271 202 205 293 201 203 292 181 472 271 182 476 272 203 207 294 202 205 293 182 476 272 183 478 273 204 209 295 203 207 294 183 478 273 184 480 274 205 211 296 204 209 295 184 480 274 185 482 275 206 213 297 205 211 296 185 482 275 186 484 276 207 215 298 206 213 297 186 484 276 187 486 277 208 217 299 207 215 298 187 486 277 188 488 278 209 219 300 208 217 299 188 488 278 189 490 279 210 221 301 209 219 300 189 490 279 190 492 280 211 223 302 210 221 301 190 492 280 191 494 281 212 225 303 211 223 302 191 494 281 192 496 282 213 227 304 212 225 303 192 496 282 193 498 283 214 229 305 213 227 304 193 498 283 194 500 284 215 231 306 214 229 305 194 500 284 195 502 285 216 233 307 215 231 306 195 502 285 196 504 286 217 235 308 216 233 307 196 504 286 197 506 287 218 237 309 217 235 308 197 506 287 198 508 288 219 239 310 218 237 309 198 508 288 199 510 289 200 202 313 219 239 310 199 510 289 180 473 334 161 512 374 227 513 417 223 514 413 224 515 414 228 516 418 163 517 376 163 518 376 230 519 420 224 520 414 227 521 410 222 522 421 220 523 432 229 524 443 223 525 454 220 526 432 220 527 432 228 528 465 224 529 476 221 530 411 225 531 415 131 532 375 222 533 412 130 534 373 226 535 416 220 536 432 225 537 487 221 538 498 223 539 454 227 540 410 220 541 432 220 542 432 221 543 498 228 544 465 220 545 432 226 546 509 225 547 487 222 548 421 226 549 509 220 550 432 230 551 520 229 552 443 220 553 432 224 554 476 230 555 520 220 556 432 161 557 374 229 558 419 230 559 420 163 560 376 161 561 374 223 562 413 229 563 419 130 564 373 222 565 412 227 566 417 130 567 373 227 568 417 161 569 374 131 570 375 228 571 418 221 572 411 163 573 376 228 574 418 131 575 375 167 576 380 240 577 430 234 578 424 236 579 426 133 580 379 235 581 425 133 582 379 239 583 429 235 584 425 232 585 521 231 586 522 238 587 523 234 588 524 240 589 525 231 590 522 231 591 522 239 592 526 234 593 524 236 594 527 235 595 528 231 596 522 237 597 529 236 598 527 231 599 522 132 600 377 133 601 379 236 602 426 237 603 427 232 604 521 237 605 529 231 606 522 132 607 377 237 608 427 232 609 422 238 610 523 231 611 522 233 612 530 132 613 377 238 614 428 165 615 378 165 616 378 238 617 428 233 618 423 167 619 380 234 620 424 239 621 429 235 622 528 239 623 526 231 624 522 167 625 380 239 626 429 133 627 379 165 628 378 233 629 423 241 630 431 231 631 522 241 632 531 233 633 530 231 634 522 240 635 525 241 636 531 165 637 378 241 638 431 240 639 430 167 640 380 134 641 381 247 642 437 243 643 433 246 644 436 135 645 383 249 646 439 169 647 382 244 648 434 245 649 435 171 650 384 243 651 532 242 652 533 252 653 534 245 654 535 244 655 536 242 656 533 242 657 533 246 658 537 249 659 538 243 660 532 247 661 539 242 662 533 134 663 381 135 664 383 248 665 438 247 666 437 242 667 533 247 668 539 248 669 540 248 670 438 135 671 383 246 672 436 242 673 533 248 674 540 246 675 537 249 676 439 171 677 384 250 678 440 242 679 533 249 680 538 250 681 541 250 682 440 171 683 384 245 684 435 242 685 533 250 686 541 245 687 535 251 688 542 242 689 533 244 690 536 169 691 382 251 692 441 244 693 434 249 694 439 135 695 383 171 696 384 134 697 381 243 698 433 252 699 442 169 700 382 252 701 442 251 702 441 252 703 534 242 704 533 251 705 542 175 706 388 259 707 449 256 708 446 263 709 453 137 710 387 257 711 447 137 712 387 261 713 451 257 714 447 258 715 543 253 716 544 255 717 545 256 718 546 259 719 547 253 720 544 257 721 548 261 722 549 253 723 544 263 724 550 257 725 548 253 726 544 136 727 385 254 728 444 258 729 448 173 730 386 258 731 448 255 732 445 254 733 551 253 734 544 258 735 543 173 736 386 255 737 445 260 738 450 253 739 544 260 740 552 255 741 545 253 742 544 259 743 547 260 744 552 173 745 386 260 746 450 259 747 449 175 748 388 175 749 388 256 750 446 261 751 451 253 752 544 261 753 549 256 754 546 175 755 388 261 756 451 137 757 387 254 758 551 262 759 553 253 760 544 136 761 385 262 762 452 254 763 444 262 764 553 263 765 550 253 766 544 136 767 385 137 768 387 263 769 453 262 770 452 138 771 389 272 772 462 266 773 456 270 774 460 139 775 391 179 776 392 177 777 390 267 778 457 268 779 458 179 780 392 266 781 554 272 782 555 264 783 556 267 784 557 273 785 558 264 786 556 268 787 559 267 788 557 264 789 556 264 790 556 265 791 560 270 792 561 268 793 458 269 794 459 179 795 392 264 796 556 269 797 562 268 798 559 269 799 459 270 800 460 179 801 392 270 802 460 265 803 455 139 804 391 264 805 556 270 806 561 269 807 562 271 808 461 139 809 391 265 810 455 264 811 556 271 812 563 265 813 560 138 814 389 139 815 391 271 816 461 272 817 462 264 818 556 272 819 555 271 820 563 177 821 390 274 822 464 273 823 463 264 824 556 273 825 558 274 826 564 138 827 389 266 828 456 274 829 464 264 830 556 274 831 564 266 832 554 138 833 389 274 834 464 177 835 390 142 836 356 279 837 469 276 838 466 143 839 355 120 840 353 285 841 475 278 842 468 121 843 354 280 844 470 277 845 467 280 846 565 275 847 566 277 848 567 278 849 568 285 850 569 275 851 566 283 852 570 278 853 568 275 854 566 276 855 571 279 856 572 275 857 566 143 858 355 276 859 466 281 860 471 276 861 571 275 862 566 281 863 573 281 864 573 275 865 566 280 866 565 143 867 355 281 868 471 280 869 470 143 870 355 280 871 470 121 872 354 279 873 572 282 874 574 275 875 566 142 876 356 282 877 472 279 878 469 282 879 574 283 880 570 275 881 566 142 882 356 283 883 473 282 884 472 120 885 353 283 886 473 142 887 356 284 888 474 121 889 354 277 890 467 275 891 566 284 892 575 277 893 567 120 894 353 121 895 354 284 896 474 285 897 475 275 898 566 285 899 569 284 900 575 293 901 483 123 902 359 288 903 478 291 904 481 147 905 360 287 906 477 145 907 358 290 908 480 287 909 477 147 910 360 286 911 576 291 912 577 287 913 578 293 914 579 288 915 580 286 916 576 296 917 581 289 918 582 286 919 576 287 920 578 290 921 583 286 922 576 286 923 576 292 924 584 291 925 577 292 926 482 123 927 359 147 928 360 291 929 481 286 930 576 288 931 580 292 932 584 288 933 478 123 934 359 292 935 482 294 936 585 293 937 579 286 938 576 122 939 357 123 940 359 293 941 483 294 942 484 289 943 582 294 944 585 286 945 576 122 946 357 294 947 484 289 948 479 290 949 583 295 950 586 286 951 576 145 952 358 295 953 485 290 954 480 295 955 586 296 956 581 286 957 576 122 958 357 296 959 486 295 960 485 145 961 358 305 962 495 125 963 363 299 964 489 299 965 489 125 966 363 306 967 496 149 968 362 301 969 491 298 970 488 151 971 364 297 972 587 299 973 588 306 974 589 305 975 590 299 976 588 297 977 587 303 978 591 300 979 592 297 980 587 298 981 593 301 982 594 297 983 587 301 984 594 302 985 595 297 986 587 149 987 362 302 988 492 301 989 491 302 990 595 303 991 591 297 992 587 124 993 361 303 994 493 302 995 492 149 996 362 300 997 592 304 998 596 297 999 587 124 1000 361 304 1001 494 300 1002 490 304 1003 596 305 1004 590 297 1005 587 124 1006 361 125 1007 363 305 1008 495 304 1009 494 307 1010 497 151 1011 364 298 1012 488 297 1013 587 307 1014 597 298 1015 593 297 1016 587 306 1017 589 307 1018 597 306 1019 496 125 1020 363 151 1021 364 307 1022 497 317 1023 507 318 1024 508 127 1025 367 155 1026 368 153 1027 366 316 1028 506 311 1029 501 126 1030 365 314 1031 504 310 1032 500 310 1033 598 314 1034 599 308 1035 600 311 1036 601 316 1037 602 308 1038 600 308 1039 600 312 1040 603 311 1041 601 308 1042 600 318 1043 604 317 1044 605 313 1045 503 127 1046 367 309 1047 499 308 1048 600 313 1049 606 309 1050 607 126 1051 365 127 1052 367 313 1053 503 314 1054 504 308 1055 600 314 1056 599 313 1057 606 126 1058 365 310 1059 500 315 1060 505 308 1061 600 315 1062 608 310 1063 598 126 1064 365 315 1065 505 316 1066 506 153 1067 366 308 1068 600 316 1069 602 315 1070 608 312 1071 502 317 1072 507 155 1073 368 308 1074 600 317 1075 605 312 1076 603 308 1077 600 309 1078 607 318 1079 604 127 1080 367 318 1081 508 309 1082 499 128 1083 369 129 1084 371 326 1085 516 327 1086 517 321 1087 511 129 1088 371 324 1089 514 157 1090 370 323 1091 513 320 1092 510 159 1093 372 319 1094 609 321 1095 610 324 1096 611 327 1097 612 326 1098 613 319 1099 609 323 1100 614 329 1101 615 319 1102 609 320 1103 616 323 1104 614 319 1105 609 325 1106 515 159 1107 372 320 1108 510 319 1109 609 325 1110 617 320 1111 616 319 1112 609 324 1113 611 325 1114 617 324 1115 514 129 1116 371 159 1117 372 325 1118 515 326 1119 516 129 1120 371 321 1121 511 319 1122 609 326 1123 613 321 1124 610 322 1125 618 327 1126 612 319 1127 609 128 1128 369 327 1129 517 322 1130 512 128 1131 369 322 1132 512 328 1133 518 319 1134 609 328 1135 619 322 1136 618 128 1137 369 328 1138 518 329 1139 519 157 1140 370 319 1141 609 329 1142 615 328 1143 619</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBodyShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearTeethShape_1\" name=\"gearTeethShape\">\r\n      <mesh>\r\n        <source id=\"gearTeethShape_1-positions\" name=\"gearTeethShape_1-positions\">\r\n          <float_array id=\"gearTeethShape_1-positions-array\" count=\"864\">-7.622294 -1.245784 8.703165 -7.622294 -1.806004 8.604383 0 -1.245784 8.703165 0 -1.806004 8.604383 0 -0.9688559 7.686128 0 -1.718384 7.553966 -7.622294 -0.9688559 7.686128 -7.622294 -1.718384 7.553966 -7.622294 -2.738146 8.354617 -7.622294 -3.272703 8.160054 0 -2.738146 8.354617 0 -3.272703 8.160054 0 -2.288819 7.401118 0 -3.00401 7.14081 -7.622294 -2.288819 7.401118 -7.622294 -3.00401 7.14081 -7.622294 -4.147312 7.752217 -7.622294 -4.639962 7.467786 0 -4.147312 7.752217 0 -4.639962 7.467786 0 -3.539237 6.89123 0 -4.198361 6.510684 -7.622294 -3.539237 6.89123 -7.622294 -4.198361 6.510684 -7.622294 -5.430463 6.91427 -7.622294 -5.866238 6.548613 0 -5.430463 6.91427 0 -5.866238 6.548613 0 -4.682118 6.171954 0 -5.265147 5.682734 -7.622294 -4.682118 6.171954 -7.622294 -5.265147 5.682734 -7.622294 -6.548613 5.866238 -7.622294 -6.91427 5.430463 0 -6.548613 5.866238 0 -6.91427 5.430463 0 -5.682734 5.265147 0 -6.171954 4.682118 -7.622294 -5.682734 5.265147 -7.622294 -6.171954 4.682118 -7.622294 -7.467786 4.639962 -7.622294 -7.752217 4.147312 0 -7.467786 4.639962 0 -7.752217 4.147312 0 -6.510684 4.198361 0 -6.89123 3.539237 -7.622294 -6.510684 4.198361 -7.622294 -6.89123 3.539237 -7.622294 -8.160054 3.272703 -7.622294 -8.354617 2.738146 0 -8.160054 3.272703 0 -8.354617 2.738146 0 -7.14081 3.00401 0 -7.401118 2.288819 -7.622294 -7.14081 3.00401 -7.622294 -7.401118 2.288819 -7.622294 -8.604383 1.806004 -7.622294 -8.703165 1.245784 0 -8.604383 1.806004 0 -8.703165 1.245784 0 -7.553966 1.718384 0 -7.686128 0.9688559 -7.622294 -7.553966 1.718384 -7.622294 -7.686128 0.9688559 -7.622294 -8.787273 0.2844315 -7.622294 -8.787273 -0.2844315 0 -8.787273 0.2844315 0 -8.787273 -0.2844315 0 -7.737599 0.3805453 0 -7.737599 -0.3805453 -7.622294 -7.737599 0.3805453 -7.622294 -7.737599 -0.3805453 -7.622294 -8.703165 -1.245784 -7.622294 -8.604383 -1.806004 0 -8.703165 -1.245784 0 -8.604383 -1.806004 0 -7.686128 -0.9688559 0 -7.553966 -1.718384 -7.622294 -7.686128 -0.9688559 -7.622294 -7.553966 -1.718384 -7.622294 -8.354617 -2.738146 -7.622294 -8.160054 -3.272703 0 -8.354617 -2.738146 0 -8.160054 -3.272703 0 -7.401118 -2.288819 0 -7.14081 -3.00401 -7.622294 -7.401118 -2.288819 -7.622294 -7.14081 -3.00401 -7.622294 -7.752217 -4.147312 -7.622294 -7.467786 -4.639962 0 -7.752217 -4.147312 0 -7.467786 -4.639962 0 -6.89123 -3.539237 0 -6.510684 -4.198361 -7.622294 -6.89123 -3.539237 -7.622294 -6.510684 -4.198361 -7.622294 -6.91427 -5.430463 -7.622294 -6.548613 -5.866238 0 -6.91427 -5.430463 0 -6.548613 -5.866238 0 -6.171954 -4.682118 0 -5.682734 -5.265147 -7.622294 -6.171954 -4.682118 -7.622294 -5.682734 -5.265147 -7.622294 -5.866238 -6.548613 -7.622294 -5.430463 -6.91427 0 -5.866238 -6.548613 0 -5.430463 -6.91427 0 -5.265147 -5.682734 0 -4.682118 -6.171954 -7.622294 -5.265147 -5.682734 -7.622294 -4.682118 -6.171954 -7.622294 -4.639962 -7.467786 -7.622294 -4.147312 -7.752217 0 -4.639962 -7.467786 0 -4.147312 -7.752217 0 -4.198361 -6.510684 0 -3.539237 -6.89123 -7.622294 -4.198361 -6.510684 -7.622294 -3.539237 -6.89123 -7.622294 -3.272703 -8.160054 -7.622294 -2.738146 -8.354617 0 -3.272703 -8.160054 0 -2.738146 -8.354617 0 -3.00401 -7.14081 0 -2.288819 -7.401118 -7.622294 -3.00401 -7.14081 -7.622294 -2.288819 -7.401118 -7.622294 -1.806004 -8.604383 -7.622294 -1.245784 -8.703165 0 -1.806004 -8.604383 0 -1.245784 -8.703165 0 -1.718384 -7.553966 0 -0.9688559 -7.686128 -7.622294 -1.718384 -7.553966 -7.622294 -0.9688559 -7.686128 -7.622294 -0.2844315 -8.787273 -7.622294 0.2844315 -8.787273 0 -0.2844315 -8.787273 0 0.2844315 -8.787273 0 -0.3805453 -7.737599 0 0.3805453 -7.737599 -7.622294 -0.3805453 -7.737599 -7.622294 0.3805453 -7.737599 -7.622294 1.245784 -8.703165 -7.622294 1.806004 -8.604383 0 1.245784 -8.703165 0 1.806004 -8.604383 0 0.9688559 -7.686128 0 1.718384 -7.553966 -7.622294 0.9688559 -7.686128 -7.622294 1.718384 -7.553966 -7.622294 2.738146 -8.354617 -7.622294 3.272703 -8.160054 0 2.738146 -8.354617 0 3.272703 -8.160054 0 2.288819 -7.401118 0 3.00401 -7.14081 -7.622294 2.288819 -7.401118 -7.622294 3.00401 -7.14081 -7.622294 4.147312 -7.752217 -7.622294 4.639962 -7.467786 0 4.147312 -7.752217 0 4.639962 -7.467786 0 3.539237 -6.89123 0 4.198361 -6.510684 -7.622294 3.539237 -6.89123 -7.622294 4.198361 -6.510684 -7.622294 5.430463 -6.91427 -7.622294 5.866238 -6.548613 0 5.430463 -6.91427 0 5.866238 -6.548613 0 4.682118 -6.171954 0 5.265147 -5.682734 -7.622294 4.682118 -6.171954 -7.622294 5.265147 -5.682734 -7.622294 6.548613 -5.866238 -7.622294 6.91427 -5.430463 0 6.548613 -5.866238 0 6.91427 -5.430463 0 5.682734 -5.265147 0 6.171954 -4.682118 -7.622294 5.682734 -5.265147 -7.622294 6.171954 -4.682118 -7.622294 7.467786 -4.639962 -7.622294 7.752217 -4.147312 0 7.467786 -4.639962 0 7.752217 -4.147312 0 6.510684 -4.198361 0 6.89123 -3.539237 -7.622294 6.510684 -4.198361 -7.622294 6.89123 -3.539237 -7.622294 8.160054 -3.272703 -7.622294 8.354617 -2.738146 0 8.160054 -3.272703 0 8.354617 -2.738146 0 7.14081 -3.00401 0 7.401118 -2.288819 -7.622294 7.14081 -3.00401 -7.622294 7.401118 -2.288819 -7.622294 8.604383 -1.806004 -7.622294 8.703165 -1.245784 0 8.604383 -1.806004 0 8.703165 -1.245784 0 7.553966 -1.718384 0 7.686128 -0.9688559 -7.622294 7.553966 -1.718384 -7.622294 7.686128 -0.9688559 -7.622294 8.787273 -0.2844315 -7.622294 8.787273 0.2844315 0 8.787273 -0.2844315 0 8.787273 0.2844315 0 7.737599 -0.3805453 0 7.737599 0.3805453 -7.622294 7.737599 -0.3805453 -7.622294 7.737599 0.3805453 -7.622294 8.703165 1.245784 -7.622294 8.604383 1.806004 0 8.703165 1.245784 0 8.604383 1.806004 0 7.686128 0.9688559 0 7.553966 1.718384 -7.622294 7.686128 0.9688559 -7.622294 7.553966 1.718384 -7.622294 8.354617 2.738146 -7.622294 8.160054 3.272703 0 8.354617 2.738146 0 8.160054 3.272703 0 7.401118 2.288819 0 7.14081 3.00401 -7.622294 7.401118 2.288819 -7.622294 7.14081 3.00401 -7.622294 7.752217 4.147312 -7.622294 7.467786 4.639962 0 7.752217 4.147312 0 7.467786 4.639962 0 6.89123 3.539237 0 6.510684 4.198361 -7.622294 6.89123 3.539237 -7.622294 6.510684 4.198361 -7.622294 6.91427 5.430463 -7.622294 6.548613 5.866238 0 6.91427 5.430463 0 6.548613 5.866238 0 6.171954 4.682118 0 5.682734 5.265147 -7.622294 6.171954 4.682118 -7.622294 5.682734 5.265147 -7.622294 5.866238 6.548613 -7.622294 5.430463 6.91427 0 5.866238 6.548613 0 5.430463 6.91427 0 5.265147 5.682734 0 4.682118 6.171954 -7.622294 5.265147 5.682734 -7.622294 4.682118 6.171954 -7.622294 4.639962 7.467786 -7.622294 4.147312 7.752217 0 4.639962 7.467786 0 4.147312 7.752217 0 4.198361 6.510684 0 3.539237 6.89123 -7.622294 4.198361 6.510684 -7.622294 3.539237 6.89123 -7.622294 3.272703 8.160054 -7.622294 2.738146 8.354617 0 3.272703 8.160054 0 2.738146 8.354617 0 3.00401 7.14081 0 2.288819 7.401118 -7.622294 3.00401 7.14081 -7.622294 2.288819 7.401118 -7.622294 1.806004 8.604383 -7.622294 1.245784 8.703165 0 1.806004 8.604383 0 1.245784 8.703165 0 1.718384 7.553966 0 0.9688559 7.686128 -7.622294 1.718384 7.553966 -7.622294 0.9688559 7.686128 -7.622294 0.2844315 8.787273 -7.622294 -0.2844315 8.787273 0 0.2844315 8.787273 0 -0.2844315 8.787273 0 0.3805453 7.737599 0 -0.3805453 7.737599 -7.622294 0.3805453 7.737599 -7.622294 -0.3805453 7.737599</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearTeethShape_1-positions-array\" count=\"288\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearTeethShape_1-normals\" name=\"gearTeethShape_1-normals\">\r\n          <float_array id=\"gearTeethShape_1-normals-array\" count=\"2160\">0 -0.1736475 0.9848079 0 -0.1736475 0.9848079 0 -0.1736475 0.9848079 0 -0.1736475 0.9848079 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9965391 -0.08312616 0 -0.9965391 -0.08312616 0 -0.9965391 -0.08312616 0 -0.9965391 -0.08312616 0 0.9648712 0.2627236 0 0.9648712 0.2627236 0 0.9648712 0.2627236 0 0.9648712 0.2627236 0 -0.3420206 0.9396926 0 -0.3420206 0.9396926 0 -0.3420206 0.9396926 0 -0.3420206 0.9396926 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9669647 -0.2549106 0 -0.9669647 -0.2549106 0 -0.9669647 -0.2549106 0 -0.9669647 -0.2549106 0 0.9045914 0.42628 0 0.9045914 0.42628 0 0.9045914 0.42628 0 0.9045914 0.42628 0 -0.4999998 0.8660256 0 -0.4999998 0.8660256 0 -0.4999998 0.8660256 0 -0.4999998 0.8660256 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9080096 -0.4189494 0 -0.9080096 -0.4189494 0 -0.9080096 -0.4189494 0 -0.9080096 -0.4189494 0 0.8168257 0.5768846 0 0.8168257 0.5768846 0 0.8168257 0.5768846 0 0.8168257 0.5768846 0 -0.6427872 0.7660449 0 -0.6427872 0.7660449 0 -0.6427872 0.7660449 0 -0.6427872 0.7660449 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.821465 -0.5702589 0 -0.821465 -0.5702589 0 -0.821465 -0.5702589 0 -0.821465 -0.5702589 0 0.7042411 0.709961 0 0.7042411 0.709961 0 0.7042411 0.709961 0 0.7042411 0.709961 0 -0.7660447 0.6427873 0 -0.7660447 0.6427873 0 -0.7660447 0.6427873 0 -0.7660447 0.6427873 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7099609 -0.7042412 0 -0.7099609 -0.7042412 0 -0.7099609 -0.7042412 0 -0.7099609 -0.7042412 0 0.5702589 0.8214651 0 0.5702589 0.8214651 0 0.5702589 0.8214651 0 0.5702589 0.8214651 0 -0.8660254 0.5000001 0 -0.8660254 0.5000001 0 -0.8660254 0.5000001 0 -0.8660254 0.5000001 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.5768847 -0.8168257 0 -0.5768847 -0.8168257 0 -0.5768847 -0.8168257 0 -0.5768847 -0.8168257 0 0.4189497 0.9080094 0 0.4189497 0.9080094 0 0.4189497 0.9080094 0 0.4189497 0.9080094 0 -0.9396927 0.3420201 0 -0.9396927 0.3420201 0 -0.9396927 0.3420201 0 -0.9396927 0.3420201 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.42628 -0.9045913 0 -0.42628 -0.9045913 0 -0.42628 -0.9045913 0 -0.42628 -0.9045913 0 0.2549105 0.9669647 0 0.2549105 0.9669647 0 0.2549105 0.9669647 0 0.2549105 0.9669647 0 -0.9848078 0.173648 0 -0.9848078 0.173648 0 -0.9848078 0.173648 0 -0.9848078 0.173648 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.2627234 -0.9648713 0 -0.2627234 -0.9648713 0 -0.2627234 -0.9648713 0 -0.2627234 -0.9648713 0 0.08312612 0.9965391 0 0.08312612 0.9965391 0 0.08312612 0.9965391 0 0.08312612 0.9965391 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.09118388 -0.9958341 0 -0.09118388 -0.9958341 0 -0.09118388 -0.9958341 0 -0.09118388 -0.9958341 0 -0.09118388 0.9958341 0 -0.09118388 0.9958341 0 -0.09118388 0.9958341 0 -0.09118388 0.9958341 0 -0.9848078 -0.173648 0 -0.9848078 -0.173648 0 -0.9848078 -0.173648 0 -0.9848078 -0.173648 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.08312612 -0.9965391 0 0.08312612 -0.9965391 0 0.08312612 -0.9965391 0 0.08312612 -0.9965391 0 -0.2627234 0.9648713 0 -0.2627234 0.9648713 0 -0.2627234 0.9648713 0 -0.2627234 0.9648713 0 -0.9396927 -0.3420201 0 -0.9396927 -0.3420201 0 -0.9396927 -0.3420201 0 -0.9396927 -0.3420201 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.2549105 -0.9669647 0 0.2549105 -0.9669647 0 0.2549105 -0.9669647 0 0.2549105 -0.9669647 0 -0.42628 0.9045913 0 -0.42628 0.9045913 0 -0.42628 0.9045913 0 -0.42628 0.9045913 0 -0.8660254 -0.5000001 0 -0.8660254 -0.5000001 0 -0.8660254 -0.5000001 0 -0.8660254 -0.5000001 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.4189497 -0.9080094 0 0.4189497 -0.9080094 0 0.4189497 -0.9080094 0 0.4189497 -0.9080094 0 -0.5768847 0.8168257 0 -0.5768847 0.8168257 0 -0.5768847 0.8168257 0 -0.5768847 0.8168257 0 -0.7660447 -0.6427873 0 -0.7660447 -0.6427873 0 -0.7660447 -0.6427873 0 -0.7660447 -0.6427873 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.5702589 -0.8214651 0 0.5702589 -0.8214651 0 0.5702589 -0.8214651 0 0.5702589 -0.8214651 0 -0.7099609 0.7042412 0 -0.7099609 0.7042412 0 -0.7099609 0.7042412 0 -0.7099609 0.7042412 0 -0.6427872 -0.7660449 0 -0.6427872 -0.7660449 0 -0.6427872 -0.7660449 0 -0.6427872 -0.7660449 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.7042411 -0.709961 0 0.7042411 -0.709961 0 0.7042411 -0.709961 0 0.7042411 -0.709961 0 -0.821465 0.5702589 0 -0.821465 0.5702589 0 -0.821465 0.5702589 0 -0.821465 0.5702589 0 -0.4999998 -0.8660256 0 -0.4999998 -0.8660256 0 -0.4999998 -0.8660256 0 -0.4999998 -0.8660256 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.8168257 -0.5768846 0 0.8168257 -0.5768846 0 0.8168257 -0.5768846 0 0.8168257 -0.5768846 0 -0.9080096 0.4189494 0 -0.9080096 0.4189494 0 -0.9080096 0.4189494 0 -0.9080096 0.4189494 0 -0.3420206 -0.9396926 0 -0.3420206 -0.9396926 0 -0.3420206 -0.9396926 0 -0.3420206 -0.9396926 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9045914 -0.42628 0 0.9045914 -0.42628 0 0.9045914 -0.42628 0 0.9045914 -0.42628 0 -0.9669647 0.2549106 0 -0.9669647 0.2549106 0 -0.9669647 0.2549106 0 -0.9669647 0.2549106 0 -0.1736475 -0.9848079 0 -0.1736475 -0.9848079 0 -0.1736475 -0.9848079 0 -0.1736475 -0.9848079 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9648712 -0.2627236 0 0.9648712 -0.2627236 0 0.9648712 -0.2627236 0 0.9648712 -0.2627236 0 -0.9965391 0.08312616 0 -0.9965391 0.08312616 0 -0.9965391 0.08312616 0 -0.9965391 0.08312616 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9958341 -0.09118393 0 0.9958341 -0.09118393 0 0.9958341 -0.09118393 0 0.9958341 -0.09118393 0 -0.9958341 -0.09118393 0 -0.9958341 -0.09118393 0 -0.9958341 -0.09118393 0 -0.9958341 -0.09118393 0 0.1736475 -0.9848079 0 0.1736475 -0.9848079 0 0.1736475 -0.9848079 0 0.1736475 -0.9848079 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9965391 0.08312616 0 0.9965391 0.08312616 0 0.9965391 0.08312616 0 0.9965391 0.08312616 0 -0.9648712 -0.2627236 0 -0.9648712 -0.2627236 0 -0.9648712 -0.2627236 0 -0.9648712 -0.2627236 0 0.3420206 -0.9396926 0 0.3420206 -0.9396926 0 0.3420206 -0.9396926 0 0.3420206 -0.9396926 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9669647 0.2549106 0 0.9669647 0.2549106 0 0.9669647 0.2549106 0 0.9669647 0.2549106 0 -0.9045914 -0.42628 0 -0.9045914 -0.42628 0 -0.9045914 -0.42628 0 -0.9045914 -0.42628 0 0.4999998 -0.8660256 0 0.4999998 -0.8660256 0 0.4999998 -0.8660256 0 0.4999998 -0.8660256 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.9080096 0.4189494 0 0.9080096 0.4189494 0 0.9080096 0.4189494 0 0.9080096 0.4189494 0 -0.8168257 -0.5768846 0 -0.8168257 -0.5768846 0 -0.8168257 -0.5768846 0 -0.8168257 -0.5768846 0 0.6427872 -0.7660449 0 0.6427872 -0.7660449 0 0.6427872 -0.7660449 0 0.6427872 -0.7660449 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.821465 0.5702589 0 0.821465 0.5702589 0 0.821465 0.5702589 0 0.821465 0.5702589 0 -0.7042411 -0.709961 0 -0.7042411 -0.709961 0 -0.7042411 -0.709961 0 -0.7042411 -0.709961 0 0.7660447 -0.6427873 0 0.7660447 -0.6427873 0 0.7660447 -0.6427873 0 0.7660447 -0.6427873 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.7099609 0.7042412 0 0.7099609 0.7042412 0 0.7099609 0.7042412 0 0.7099609 0.7042412 0 -0.5702589 -0.8214651 0 -0.5702589 -0.8214651 0 -0.5702589 -0.8214651 0 -0.5702589 -0.8214651 0 0.8660254 -0.5000001 0 0.8660254 -0.5000001 0 0.8660254 -0.5000001 0 0.8660254 -0.5000001 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.5768847 0.8168257 0 0.5768847 0.8168257 0 0.5768847 0.8168257 0 0.5768847 0.8168257 0 -0.4189497 -0.9080094 0 -0.4189497 -0.9080094 0 -0.4189497 -0.9080094 0 -0.4189497 -0.9080094 0 0.9396927 -0.3420201 0 0.9396927 -0.3420201 0 0.9396927 -0.3420201 0 0.9396927 -0.3420201 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.42628 0.9045913 0 0.42628 0.9045913 0 0.42628 0.9045913 0 0.42628 0.9045913 0 -0.2549105 -0.9669647 0 -0.2549105 -0.9669647 0 -0.2549105 -0.9669647 0 -0.2549105 -0.9669647 0 0.9848078 -0.173648 0 0.9848078 -0.173648 0 0.9848078 -0.173648 0 0.9848078 -0.173648 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.2627234 0.9648713 0 0.2627234 0.9648713 0 0.2627234 0.9648713 0 0.2627234 0.9648713 0 -0.08312612 -0.9965391 0 -0.08312612 -0.9965391 0 -0.08312612 -0.9965391 0 -0.08312612 -0.9965391 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0.09118388 0.9958341 0 0.09118388 0.9958341 0 0.09118388 0.9958341 0 0.09118388 0.9958341 0 0.09118388 -0.9958341 0 0.09118388 -0.9958341 0 0.09118388 -0.9958341 0 0.09118388 -0.9958341 0 0.9848078 0.173648 0 0.9848078 0.173648 0 0.9848078 0.173648 0 0.9848078 0.173648 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.08312612 0.9965391 0 -0.08312612 0.9965391 0 -0.08312612 0.9965391 0 -0.08312612 0.9965391 0 0.2627234 -0.9648713 0 0.2627234 -0.9648713 0 0.2627234 -0.9648713 0 0.2627234 -0.9648713 0 0.9396927 0.3420201 0 0.9396927 0.3420201 0 0.9396927 0.3420201 0 0.9396927 0.3420201 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.2549105 0.9669647 0 -0.2549105 0.9669647 0 -0.2549105 0.9669647 0 -0.2549105 0.9669647 0 0.42628 -0.9045913 0 0.42628 -0.9045913 0 0.42628 -0.9045913 0 0.42628 -0.9045913 0 0.8660254 0.5000001 0 0.8660254 0.5000001 0 0.8660254 0.5000001 0 0.8660254 0.5000001 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.4189497 0.9080094 0 -0.4189497 0.9080094 0 -0.4189497 0.9080094 0 -0.4189497 0.9080094 0 0.5768847 -0.8168257 0 0.5768847 -0.8168257 0 0.5768847 -0.8168257 0 0.5768847 -0.8168257 0 0.7660447 0.6427873 0 0.7660447 0.6427873 0 0.7660447 0.6427873 0 0.7660447 0.6427873 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.5702589 0.8214651 0 -0.5702589 0.8214651 0 -0.5702589 0.8214651 0 -0.5702589 0.8214651 0 0.7099609 -0.7042412 0 0.7099609 -0.7042412 0 0.7099609 -0.7042412 0 0.7099609 -0.7042412 0 0.6427872 0.7660449 0 0.6427872 0.7660449 0 0.6427872 0.7660449 0 0.6427872 0.7660449 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7042411 0.709961 0 -0.7042411 0.709961 0 -0.7042411 0.709961 0 -0.7042411 0.709961 0 0.821465 -0.5702589 0 0.821465 -0.5702589 0 0.821465 -0.5702589 0 0.821465 -0.5702589 0 0.4999998 0.8660256 0 0.4999998 0.8660256 0 0.4999998 0.8660256 0 0.4999998 0.8660256 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.8168257 0.5768846 0 -0.8168257 0.5768846 0 -0.8168257 0.5768846 0 -0.8168257 0.5768846 0 0.9080096 -0.4189494 0 0.9080096 -0.4189494 0 0.9080096 -0.4189494 0 0.9080096 -0.4189494 0 0.3420206 0.9396926 0 0.3420206 0.9396926 0 0.3420206 0.9396926 0 0.3420206 0.9396926 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9045914 0.42628 0 -0.9045914 0.42628 0 -0.9045914 0.42628 0 -0.9045914 0.42628 0 0.9669647 -0.2549106 0 0.9669647 -0.2549106 0 0.9669647 -0.2549106 0 0.9669647 -0.2549106 0 0.1736475 0.9848079 0 0.1736475 0.9848079 0 0.1736475 0.9848079 0 0.1736475 0.9848079 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9648712 0.2627236 0 -0.9648712 0.2627236 0 -0.9648712 0.2627236 0 -0.9648712 0.2627236 0 0.9965391 -0.08312616 0 0.9965391 -0.08312616 0 0.9965391 -0.08312616 0 0.9965391 -0.08312616 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.9958341 0.09118393 0 -0.9958341 0.09118393 0 -0.9958341 0.09118393 0 -0.9958341 0.09118393 0 0.9958341 0.09118393 0 0.9958341 0.09118393 0 0.9958341 0.09118393 0 0.9958341 0.09118393</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearTeethShape_1-normals-array\" count=\"720\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearTeethShape_1-map1\" name=\"gearTeethShape_1-map1\">\r\n          <float_array id=\"gearTeethShape_1-map1-array\" count=\"1440\">0.5177761 0.642543 0.3682775 0.7201319 0.4718756 0.6121343 0.7373744 0.6688832 0.4721948 0.6103245 0.4755881 0.6106076 0.4751231 0.6130514 0.4755501 0.6106302 0.4721568 0.6103471 0.4718376 0.6121568 0.5177761 0.642553 0.7373744 0.6425531 0.5177761 0.6688731 0.7373744 0.6688732 0.5177761 0.6688831 0.4858128 0.7201319 0.4751612 0.6130289 0.3682775 0.7627555 0.4858128 0.7627555 0.7373744 0.6425431 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4730016 0.6073132 0.4736302 0.6055863 0.4769228 0.6064543 0.4760819 0.6087648 0.4760438 0.6087874 0.4768847 0.606477 0.4735922 0.6056091 0.4729636 0.6073359 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4749477 0.6027609 0.4758665 0.6011694 0.4789584 0.602596 0.4777291 0.6047253 0.477691 0.604748 0.4789203 0.6026188 0.4758284 0.6011922 0.4749096 0.6027837 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4776546 0.5986157 0.4788359 0.597208 0.4816331 0.5991498 0.4800526 0.6010332 0.4800146 0.6010561 0.4815949 0.5991726 0.4787977 0.5972309 0.4776165 0.5986385 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4810403 0.5950035 0.482448 0.5938223 0.4848656 0.5962203 0.4829821 0.5978008 0.4829439 0.5978236 0.4848273 0.5962433 0.4824098 0.5938453 0.4810021 0.5950266 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4850017 0.5920342 0.4865933 0.5911153 0.4885576 0.5938967 0.4864284 0.595126 0.4863901 0.595149 0.4885193 0.5939198 0.4865549 0.5911384 0.4849635 0.5920572 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4894187 0.5897978 0.4911456 0.5891693 0.4925971 0.5922495 0.4902867 0.5930904 0.4902483 0.5931135 0.4925586 0.5922725 0.4911071 0.5891923 0.4893803 0.5898209 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4941568 0.5883624 0.4959666 0.5880433 0.4968612 0.5913288 0.4944399 0.5917557 0.4944014 0.5917788 0.4968227 0.5913518 0.4959281 0.5880665 0.4941183 0.5883855 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4990723 0.5877716 0.50091 0.5877716 0.5012205 0.5911625 0.4987618 0.5911625 0.4987231 0.5911856 0.5011818 0.5911856 0.5008714 0.5877947 0.4990336 0.5877947 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5040157 0.5880433 0.5058254 0.5883624 0.5055423 0.5917557 0.503121 0.5913288 0.5030823 0.5913518 0.5055037 0.5917788 0.5057867 0.5883855 0.5039769 0.5880665 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5088366 0.5891693 0.5105635 0.5897978 0.5096955 0.5930904 0.5073851 0.5922495 0.5073463 0.5922725 0.5096567 0.5931135 0.5105247 0.5898209 0.5087979 0.5891923 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5133889 0.5911153 0.5149804 0.5920342 0.5135539 0.595126 0.5114247 0.5938967 0.5113858 0.5939198 0.5135149 0.595149 0.5149415 0.5920572 0.5133501 0.5911384 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5175341 0.5938223 0.5189419 0.5950035 0.5170001 0.5978008 0.5151167 0.5962203 0.5150777 0.5962433 0.5169611 0.5978236 0.5189028 0.5950266 0.5174952 0.5938453 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5211463 0.597208 0.5223275 0.5986157 0.5199295 0.6010332 0.5183492 0.5991498 0.5183101 0.5991726 0.5198904 0.6010561 0.5222885 0.5986385 0.5211072 0.5972309 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5241157 0.6011694 0.5250345 0.6027609 0.5222532 0.6047253 0.5210238 0.602596 0.5209846 0.6026188 0.5222139 0.604748 0.5249953 0.6027837 0.5240764 0.6011922 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.526352 0.6055863 0.5269806 0.6073132 0.5239003 0.6087648 0.5230594 0.6064543 0.5230203 0.606477 0.5238611 0.6087874 0.5269413 0.6073359 0.5263127 0.6056091 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5277874 0.6103245 0.5281066 0.6121343 0.524821 0.6130289 0.524394 0.6106076 0.5243548 0.6106302 0.5247818 0.6130514 0.5280672 0.6121568 0.5277481 0.6103471 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5283782 0.6152399 0.5283782 0.6170777 0.5249873 0.6173881 0.5249873 0.6149294 0.5249481 0.6149518 0.5249481 0.6174105 0.5283389 0.6171 0.5283389 0.6152624 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5281066 0.6201832 0.5277874 0.6219931 0.524394 0.6217101 0.524821 0.6192887 0.5247818 0.619311 0.5243548 0.6217322 0.5277481 0.6220153 0.5280672 0.6202056 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5269806 0.6250043 0.526352 0.6267313 0.5230594 0.6258632 0.5239003 0.6235528 0.5238611 0.623575 0.5230203 0.6258854 0.5263127 0.6267533 0.5269413 0.6250265 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5250345 0.6295567 0.5241157 0.6311482 0.5210238 0.6297216 0.5222532 0.6275922 0.5222139 0.6276144 0.5209846 0.6297436 0.5240764 0.6311702 0.5249953 0.6295787 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5223275 0.6337019 0.5211463 0.6351097 0.5183492 0.6331679 0.5199295 0.6312844 0.5198904 0.6313063 0.5183101 0.6331898 0.5211072 0.6351315 0.5222885 0.6337239 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5189419 0.6373141 0.5175341 0.6384952 0.5151167 0.6360972 0.5170001 0.6345168 0.5169611 0.6345388 0.5150777 0.6361191 0.5174952 0.6385171 0.5189028 0.6373358 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5149804 0.6402835 0.5133889 0.6412022 0.5114247 0.6384208 0.5135539 0.6371915 0.5135149 0.6372133 0.5113858 0.6384426 0.5133501 0.641224 0.5149415 0.6403052 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5105635 0.6425197 0.5088366 0.6431483 0.5073851 0.6400681 0.5096955 0.639227 0.5096567 0.6392489 0.5073463 0.6400899 0.5087979 0.6431701 0.5105247 0.6425415 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.5058254 0.6439551 0.5040157 0.6442742 0.503121 0.6409887 0.5055423 0.6405617 0.5055037 0.6405836 0.5030823 0.6410106 0.5039769 0.6442959 0.5057867 0.6439769 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.50091 0.644546 0.4990723 0.644546 0.4987618 0.6411551 0.5012205 0.6411551 0.5011818 0.6411768 0.4987231 0.6411768 0.4990336 0.6445677 0.5008714 0.6445677 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4959666 0.6442742 0.4941568 0.6439551 0.4944399 0.6405617 0.4968612 0.6409887 0.4968227 0.6410106 0.4944014 0.6405836 0.4941183 0.6439769 0.4959281 0.6442959 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4911456 0.6431483 0.4894187 0.6425197 0.4902867 0.639227 0.4925971 0.6400681 0.4925586 0.6400899 0.4902483 0.6392489 0.4893803 0.6425415 0.4911071 0.6431701 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4865933 0.6412022 0.4850017 0.6402835 0.4864284 0.6371915 0.4885576 0.6384208 0.4885193 0.6384426 0.4863901 0.6372133 0.4849635 0.6403052 0.4865549 0.641224 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.482448 0.6384952 0.4810403 0.6373141 0.4829821 0.6345168 0.4848656 0.6360972 0.4848273 0.6361191 0.4829439 0.6345388 0.4810021 0.6373358 0.4824098 0.6385171 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4788359 0.6351097 0.4776546 0.6337019 0.4800526 0.6312844 0.4816331 0.6331679 0.4815949 0.6331898 0.4800146 0.6313063 0.4776165 0.6337239 0.4787977 0.6351315 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4758665 0.6311482 0.4749477 0.6295567 0.4777291 0.6275922 0.4789584 0.6297216 0.4789203 0.6297436 0.477691 0.6276144 0.4749096 0.6295787 0.4758284 0.6311702 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4736302 0.6267313 0.4730016 0.6250043 0.4760819 0.6235528 0.4769228 0.6258632 0.4768847 0.6258854 0.4760438 0.623575 0.4729636 0.6250265 0.4735922 0.6267533 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4721948 0.6219931 0.4718756 0.6201832 0.4751612 0.6192887 0.4755881 0.6217101 0.4755501 0.6217322 0.4751231 0.619311 0.4718376 0.6202056 0.4721568 0.6220153 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732 0.3682775 0.7627555 0.3682775 0.7201319 0.4858128 0.7201319 0.4858128 0.7627555 0.4716039 0.6170777 0.4716039 0.6152399 0.4749949 0.6149294 0.4749949 0.6173881 0.4749568 0.6174105 0.4749568 0.6149518 0.471566 0.6152624 0.471566 0.6171 0.5177761 0.6688831 0.5177761 0.642553 0.7373744 0.6425531 0.7373744 0.6688832 0.5177761 0.6688731 0.5177761 0.642543 0.7373744 0.6425431 0.7373744 0.6688732</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearTeethShape_1-map1-array\" count=\"720\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearTeethShape_1-vertices\" name=\"gearTeethShape_1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearTeethShape_1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"180\">\r\n          <input semantic=\"VERTEX\" source=\"#gearTeethShape_1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearTeethShape_1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearTeethShape_1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 17 1 1 1 3 2 15 2 3 18 2 4 2 3 5 4 5 6 5 4 7 16 6 8 6 7 9 7 1 10 8 0 11 9 1 12 14 7 13 10 5 14 11 3 15 3 6 16 12 0 17 0 2 18 19 4 19 13 8 20 20 9 21 21 11 22 22 10 23 23 10 24 24 11 25 25 13 26 26 12 27 27 14 28 28 15 29 29 9 30 30 8 31 31 9 32 32 15 33 33 13 34 34 11 35 35 14 36 36 8 37 37 10 38 38 12 39 39 16 40 40 17 41 41 19 42 42 18 43 43 18 44 44 19 45 45 21 46 46 20 47 47 22 48 48 23 49 49 17 50 50 16 51 51 17 52 52 23 53 53 21 54 54 19 55 55 22 56 56 16 57 57 18 58 58 20 59 59 24 60 60 25 61 61 27 62 62 26 63 63 26 64 64 27 65 65 29 66 66 28 67 67 30 68 68 31 69 69 25 70 70 24 71 71 25 72 72 31 73 73 29 74 74 27 75 75 30 76 76 24 77 77 26 78 78 28 79 79 32 80 80 33 81 81 35 82 82 34 83 83 34 84 84 35 85 85 37 86 86 36 87 87 38 88 88 39 89 89 33 90 90 32 91 91 33 92 92 39 93 93 37 94 94 35 95 95 38 96 96 32 97 97 34 98 98 36 99 99 40 100 100 41 101 101 43 102 102 42 103 103 42 104 104 43 105 105 45 106 106 44 107 107 46 108 108 47 109 109 41 110 110 40 111 111 41 112 112 47 113 113 45 114 114 43 115 115 46 116 116 40 117 117 42 118 118 44 119 119 48 120 120 49 121 121 51 122 122 50 123 123 50 124 124 51 125 125 53 126 126 52 127 127 54 128 128 55 129 129 49 130 130 48 131 131 49 132 132 55 133 133 53 134 134 51 135 135 54 136 136 48 137 137 50 138 138 52 139 139 56 140 140 57 141 141 59 142 142 58 143 143 58 144 144 59 145 145 61 146 146 60 147 147 62 148 148 63 149 149 57 150 150 56 151 151 57 152 152 63 153 153 61 154 154 59 155 155 62 156 156 56 157 157 58 158 158 60 159 159 64 160 160 65 161 161 67 162 162 66 163 163 66 164 164 67 165 165 69 166 166 68 167 167 70 168 168 71 169 169 65 170 170 64 171 171 65 172 172 71 173 173 69 174 174 67 175 175 70 176 176 64 177 177 66 178 178 68 179 179 72 180 180 73 181 181 75 182 182 74 183 183 74 184 184 75 185 185 77 186 186 76 187 187 78 188 188 79 189 189 73 190 190 72 191 191 73 192 192 79 193 193 77 194 194 75 195 195 78 196 196 72 197 197 74 198 198 76 199 199 80 200 200 81 201 201 83 202 202 82 203 203 82 204 204 83 205 205 85 206 206 84 207 207 86 208 208 87 209 209 81 210 210 80 211 211 81 212 212 87 213 213 85 214 214 83 215 215 86 216 216 80 217 217 82 218 218 84 219 219 88 220 220 89 221 221 91 222 222 90 223 223 90 224 224 91 225 225 93 226 226 92 227 227 94 228 228 95 229 229 89 230 230 88 231 231 89 232 232 95 233 233 93 234 234 91 235 235 94 236 236 88 237 237 90 238 238 92 239 239 96 240 240 97 241 241 99 242 242 98 243 243 98 244 244 99 245 245 101 246 246 100 247 247 102 248 248 103 249 249 97 250 250 96 251 251 97 252 252 103 253 253 101 254 254 99 255 255 102 256 256 96 257 257 98 258 258 100 259 259 104 260 260 105 261 261 107 262 262 106 263 263 106 264 264 107 265 265 109 266 266 108 267 267 110 268 268 111 269 269 105 270 270 104 271 271 105 272 272 111 273 273 109 274 274 107 275 275 110 276 276 104 277 277 106 278 278 108 279 279 112 280 280 113 281 281 115 282 282 114 283 283 114 284 284 115 285 285 117 286 286 116 287 287 118 288 288 119 289 289 113 290 290 112 291 291 113 292 292 119 293 293 117 294 294 115 295 295 118 296 296 112 297 297 114 298 298 116 299 299 120 300 300 121 301 301 123 302 302 122 303 303 122 304 304 123 305 305 125 306 306 124 307 307 126 308 308 127 309 309 121 310 310 120 311 311 121 312 312 127 313 313 125 314 314 123 315 315 126 316 316 120 317 317 122 318 318 124 319 319 128 320 320 129 321 321 131 322 322 130 323 323 130 324 324 131 325 325 133 326 326 132 327 327 134 328 328 135 329 329 129 330 330 128 331 331 129 332 332 135 333 333 133 334 334 131 335 335 134 336 336 128 337 337 130 338 338 132 339 339 136 340 340 137 341 341 139 342 342 138 343 343 138 344 344 139 345 345 141 346 346 140 347 347 142 348 348 143 349 349 137 350 350 136 351 351 137 352 352 143 353 353 141 354 354 139 355 355 142 356 356 136 357 357 138 358 358 140 359 359 144 360 360 145 361 361 147 362 362 146 363 363 146 364 364 147 365 365 149 366 366 148 367 367 150 368 368 151 369 369 145 370 370 144 371 371 145 372 372 151 373 373 149 374 374 147 375 375 150 376 376 144 377 377 146 378 378 148 379 379 152 380 380 153 381 381 155 382 382 154 383 383 154 384 384 155 385 385 157 386 386 156 387 387 158 388 388 159 389 389 153 390 390 152 391 391 153 392 392 159 393 393 157 394 394 155 395 395 158 396 396 152 397 397 154 398 398 156 399 399 160 400 400 161 401 401 163 402 402 162 403 403 162 404 404 163 405 405 165 406 406 164 407 407 166 408 408 167 409 409 161 410 410 160 411 411 161 412 412 167 413 413 165 414 414 163 415 415 166 416 416 160 417 417 162 418 418 164 419 419 168 420 420 169 421 421 171 422 422 170 423 423 170 424 424 171 425 425 173 426 426 172 427 427 174 428 428 175 429 429 169 430 430 168 431 431 169 432 432 175 433 433 173 434 434 171 435 435 174 436 436 168 437 437 170 438 438 172 439 439 176 440 440 177 441 441 179 442 442 178 443 443 178 444 444 179 445 445 181 446 446 180 447 447 182 448 448 183 449 449 177 450 450 176 451 451 177 452 452 183 453 453 181 454 454 179 455 455 182 456 456 176 457 457 178 458 458 180 459 459 184 460 460 185 461 461 187 462 462 186 463 463 186 464 464 187 465 465 189 466 466 188 467 467 190 468 468 191 469 469 185 470 470 184 471 471 185 472 472 191 473 473 189 474 474 187 475 475 190 476 476 184 477 477 186 478 478 188 479 479 192 480 480 193 481 481 195 482 482 194 483 483 194 484 484 195 485 485 197 486 486 196 487 487 198 488 488 199 489 489 193 490 490 192 491 491 193 492 492 199 493 493 197 494 494 195 495 495 198 496 496 192 497 497 194 498 498 196 499 499 200 500 500 201 501 501 203 502 502 202 503 503 202 504 504 203 505 505 205 506 506 204 507 507 206 508 508 207 509 509 201 510 510 200 511 511 201 512 512 207 513 513 205 514 514 203 515 515 206 516 516 200 517 517 202 518 518 204 519 519 208 520 520 209 521 521 211 522 522 210 523 523 210 524 524 211 525 525 213 526 526 212 527 527 214 528 528 215 529 529 209 530 530 208 531 531 209 532 532 215 533 533 213 534 534 211 535 535 214 536 536 208 537 537 210 538 538 212 539 539 216 540 540 217 541 541 219 542 542 218 543 543 218 544 544 219 545 545 221 546 546 220 547 547 222 548 548 223 549 549 217 550 550 216 551 551 217 552 552 223 553 553 221 554 554 219 555 555 222 556 556 216 557 557 218 558 558 220 559 559 224 560 560 225 561 561 227 562 562 226 563 563 226 564 564 227 565 565 229 566 566 228 567 567 230 568 568 231 569 569 225 570 570 224 571 571 225 572 572 231 573 573 229 574 574 227 575 575 230 576 576 224 577 577 226 578 578 228 579 579 232 580 580 233 581 581 235 582 582 234 583 583 234 584 584 235 585 585 237 586 586 236 587 587 238 588 588 239 589 589 233 590 590 232 591 591 233 592 592 239 593 593 237 594 594 235 595 595 238 596 596 232 597 597 234 598 598 236 599 599 240 600 600 241 601 601 243 602 602 242 603 603 242 604 604 243 605 605 245 606 606 244 607 607 246 608 608 247 609 609 241 610 610 240 611 611 241 612 612 247 613 613 245 614 614 243 615 615 246 616 616 240 617 617 242 618 618 244 619 619 248 620 620 249 621 621 251 622 622 250 623 623 250 624 624 251 625 625 253 626 626 252 627 627 254 628 628 255 629 629 249 630 630 248 631 631 249 632 632 255 633 633 253 634 634 251 635 635 254 636 636 248 637 637 250 638 638 252 639 639 256 640 640 257 641 641 259 642 642 258 643 643 258 644 644 259 645 645 261 646 646 260 647 647 262 648 648 263 649 649 257 650 650 256 651 651 257 652 652 263 653 653 261 654 654 259 655 655 262 656 656 256 657 657 258 658 658 260 659 659 264 660 660 265 661 661 267 662 662 266 663 663 266 664 664 267 665 665 269 666 666 268 667 667 270 668 668 271 669 669 265 670 670 264 671 671 265 672 672 271 673 673 269 674 674 267 675 675 270 676 676 264 677 677 266 678 678 268 679 679 272 680 680 273 681 681 275 682 682 274 683 683 274 684 684 275 685 685 277 686 686 276 687 687 278 688 688 279 689 689 273 690 690 272 691 691 273 692 692 279 693 693 277 694 694 275 695 695 278 696 696 272 697 697 274 698 698 276 699 699 280 700 700 281 701 701 283 702 702 282 703 703 282 704 704 283 705 705 285 706 706 284 707 707 286 708 708 287 709 709 281 710 710 280 711 711 281 712 712 287 713 713 285 714 714 283 715 715 286 716 716 280 717 717 282 718 718 284 719 719</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearTeethShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearCover\" name=\"gearCover\">\r\n      <mesh>\r\n        <source id=\"gearCover-positions\" name=\"gearCover-positions\">\r\n          <float_array id=\"gearCover-positions-array\" count=\"186\">-2.813813 -16.26263 -0.4764361 1.332597 -16.26263 -0.4764361 5.255965 -15.26317 -0.4764361 6.318447 -12.41324 -0.4764361 -2.813813 -16.26263 0.4764361 1.332597 -16.26263 0.4764361 5.255965 -15.26317 0.4764361 6.318447 -12.41324 0.4764361 -6.722159 -15.24791 0.4764361 7.491448 -8.731642 0.4764361 -9.095327 -8.272556 0.4764361 8.146133 -5.206844 0.4764361 -9.095325 -0.7548561 0.4764361 8.373142 -1.882145 0.4764361 -9.095325 6.654171 0.4764361 8.375443 0.2785664 0.4764361 -6.861568 13.84088 0.4764361 8.154424 3.398714 0.4764361 -2.479717 14.87005 0.4764361 1.192652 14.87005 0.4764361 5.452186 13.78775 0.4764361 7.564419 6.917158 0.4764361 -2.479717 14.87005 -0.4764361 1.192652 14.87005 -0.4764361 5.452186 13.78775 -0.4764361 7.564419 6.917158 -0.4764361 -6.861568 13.84088 -0.4764361 8.154424 3.398714 -0.4764361 -9.095325 6.654171 -0.4764361 8.375443 0.2785664 -0.4764361 -9.095325 -0.7548561 -0.4764361 8.373142 -1.882145 -0.4764361 -9.095327 -8.272556 -0.4764361 8.146133 -5.206844 -0.4764361 -6.722159 -15.24791 -0.4764361 7.491448 -8.731642 -0.4764361 6.695125 10.2437 -0.4764361 6.695125 10.2437 0.4764361 0.4062561 6.992245 -0.4764361 0.4062561 3.375832 -0.4764361 1.170494 4.140068 -0.4764361 1.450225 5.184038 -0.4764361 1.170494 6.228006 -0.4764361 -0.6377128 7.271975 -0.4764361 -1.681682 6.992245 -0.4764361 -2.445919 6.228006 -0.4764361 -0.6377128 3.0961 -0.4764361 -1.681682 3.375832 -0.4764361 -2.445919 4.140068 -0.4764361 -2.72565 5.184038 -0.4764361 0.4062562 6.992245 0.4764361 1.170494 6.228006 0.4764361 1.450225 5.184038 0.4764361 0.4062562 3.375832 0.4764361 1.170494 4.140068 0.4764361 -1.681682 3.375832 0.4764361 -0.6377128 3.0961 0.4764361 -2.445919 4.140068 0.4764361 -2.72565 5.184038 0.4764361 -2.445919 6.228006 0.4764361 -1.681682 6.992245 0.4764361 -0.6377128 7.271975 0.4764361</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCover-positions-array\" count=\"62\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCover-normals\" name=\"gearCover-normals\">\r\n          <float_array id=\"gearCover-normals-array\" count=\"738\">0 -1 0 0.124397 -0.9922326 0 0.124397 -0.9922326 0 0 -1 0 0.6681309 -0.7440438 0 0.6681309 -0.7440438 0 0.9370022 -0.3493233 0 0.9370022 -0.3493233 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0.1240904 0.992271 0 0.1240904 0.992271 0 0 1 0 0.6751404 0.7376893 0 0.6751404 0.7376893 0 0.9675108 0.2528303 0 0.9675108 0.2528303 0 0.9675108 0.2528303 0 0.9675108 0.2528303 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.9929953 0.118154 0 0.98623 0.16538 0 0.98623 0.16538 0 0.9929953 0.118154 0 0.9993936 0.03481954 0 0.9993936 0.03481954 0 0.9994008 -0.03461239 0 0.9994008 -0.03461239 0 0.992084 -0.1255766 0 0.992084 -0.1255766 0 0.9698836 -0.2435689 0 0.9698836 -0.2435689 0 0.9528074 -0.3035759 0 0.9528074 -0.3035759 0 -0.2286487 0.973509 0 -0.6816879 0.731643 0 -0.6816879 0.731643 0 -0.2286487 0.973509 0 -0.9886699 0.1501062 0 -0.9886699 0.1501062 0 -1 0 0 -1 0 0 -0.9865873 -0.1632347 0 -0.9865873 -0.1632347 0 -0.6804962 -0.7327516 0 -0.6804962 -0.7327516 0 -0.2512972 -0.9679101 0 -0.2512972 -0.9679101 0 0.9436489 0.3309484 0 0.9436489 0.3309484 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.7071072 -0.7071064 0 -0.7071072 -0.7071064 0 -0.7071072 -0.7071064 0 -0.7071072 -0.7071064 0 -0.9659257 -0.2588199 0 -0.9659257 -0.2588199 0 -0.9659257 -0.2588199 0 -0.9659257 -0.2588199 0 -0.7071063 0.7071072 0 -0.7071063 0.7071072 0 -0.7071063 0.7071072 0 -0.7071063 0.7071072 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.25882 0.9659256 0 -0.25882 0.9659256 0 -0.25882 0.9659256 0 -0.25882 0.9659256 0 0.2588201 0.9659256 0 0.2588201 0.9659256 0 0.2588201 0.9659256 0 0.2588201 0.9659256 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.9659257 -0.2588198 0 0.9659257 -0.2588198 0 0.9659257 -0.2588198 0 0.9659257 -0.2588198 0 0.7071073 -0.7071064 0 0.7071073 -0.7071064 0 0.7071073 -0.7071064 0 0.7071073 -0.7071064 0 0.2588184 -0.965926 0 0.2588184 -0.965926 0 0.2588184 -0.965926 0 0.2588184 -0.965926 0 -0.2588184 -0.9659261 0 -0.2588184 -0.9659261 0 -0.2588184 -0.9659261 0 -0.2588184 -0.9659261 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCover-normals-array\" count=\"246\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCover-map1\" name=\"gearCover-map1\">\r\n          <float_array id=\"gearCover-map1-array\" count=\"198\">0.4729117 0.3281633 0.5186839 0.3281633 0.5186839 0.3281633 0.4729117 0.3281633 0.561994 0.3391963 0.561994 0.3391963 0.5737226 0.3706567 0.5737226 0.3706567 0.4297675 0.3393648 0.4765998 0.6718367 0.4282286 0.6604757 0.56416 0.6598893 0.5171391 0.6718367 0.5171391 0.6718367 0.4765998 0.6718367 0.56416 0.6598893 0.5778809 0.6207665 0.587477 0.5840448 0.587477 0.5840448 0.5778809 0.6207665 0.4282286 0.6604757 0.5964298 0.5107615 0.4969336 0.5418642 0.508458 0.5449522 0.5866714 0.4112978 0.4035701 0.4163657 0.5938984 0.4502081 0.59399 0.5452048 0.59399 0.5452048 0.5964298 0.5107615 0.5964044 0.4869094 0.5964044 0.4869094 0.5938984 0.4502081 0.5866714 0.4112978 0.4035701 0.5811417 0.4035701 0.5811417 0.4035701 0.4993535 0.4035701 0.4993535 0.4035701 0.4163657 0.4297675 0.3393648 0.4769729 0.5764372 0.4738849 0.5649129 0.508458 0.5848737 0.5168945 0.5764372 0.5168945 0.5533886 0.5199823 0.5649129 0.4969336 0.5879617 0.4854093 0.5848737 0.4769729 0.5533886 0.4854093 0.5449522 0.508458 0.5848737 0.5168945 0.5764372 0.5199823 0.5649129 0.5168945 0.5533886 0.508458 0.5449522 0.4969336 0.5418642 0.4854093 0.5449522 0.4769729 0.5533886 0.4738849 0.5649129 0.4769729 0.5764372 0.4969336 0.5879617 0.4854093 0.5848737 0.6977975 0.2157001 0.6977975 0.2732167 0.6785669 0.2732167 0.6785669 0.2157001 0.6785669 0.7304733 0.6785669 0.6633377 0.6977975 0.6633377 0.6977975 0.7304733 0.6977975 0.5923294 0.6785669 0.5923294 0.6977975 0.5293593 0.6785669 0.5293593 0.6977975 0.4857525 0.6785669 0.4857525 0.6977975 0.4186542 0.6785669 0.4186542 0.6977975 0.3475177 0.6785669 0.3475177 0.6785669 0.8019984 0.6977975 0.8019984 0.4114406 0.6487452 0.4114406 0.5823914 0.395213 0.5256101 0.3786832 0.6487452 0.4279703 0.4722596 0.395213 0.4722596 0.4279703 0.4181266 0.4138568 0.3094679 0.43276 0.2328329 0.4138568 0.2328329 0.3786832 0.5823914 0.4035701 0.5811417 0.4279703 0.5256101 0.5866714 0.4112978 0.395213 0.4181266 0.4035701 0.4163657 0.43276 0.3094679</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCover-map1-array\" count=\"99\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearCover-vertices\" name=\"gearCover-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearCover-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert4SG\" count=\"75\">\r\n          <input semantic=\"VERTEX\" source=\"#gearCover-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearCover-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearCover-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 3 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 3 4 4 4 3 3 4 4 4 3 4 3 3 3 4 3 3 3 3 4 4 4 3 3 3 3 4 3 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 5 2 2 4 3 3 1 1 1 2 4 4 6 5 5 5 2 2 2 4 62 3 6 63 7 7 64 6 5 65 8 8 8 6 9 5 7 10 7 18 11 9 16 12 10 20 13 11 19 14 12 18 15 9 19 16 12 23 17 13 22 18 14 19 16 12 20 19 11 24 20 15 23 17 13 37 21 66 21 22 67 25 23 68 36 24 69 24 25 15 26 26 20 22 27 14 23 28 13 29 29 21 46 30 22 39 31 23 35 32 24 32 33 25 33 34 26 27 35 70 25 36 68 21 37 67 17 38 71 29 39 72 27 35 70 17 38 71 15 40 73 31 41 74 29 39 72 15 40 73 13 42 75 33 43 76 31 41 74 13 42 75 11 44 77 35 45 78 33 43 76 11 44 77 9 46 79 3 47 63 35 45 78 9 46 79 7 48 64 22 49 14 26 50 20 16 51 10 18 52 9 26 50 82 28 53 83 14 54 92 16 51 85 28 53 94 30 55 86 12 56 87 14 54 84 30 55 86 32 57 88 10 58 96 12 56 87 32 57 98 34 59 90 8 60 91 10 58 89 34 59 39 0 61 0 4 62 3 8 60 8 20 19 80 37 63 66 36 64 69 24 20 81 28 65 34 26 66 20 45 67 40 49 68 41 20 69 11 16 70 10 37 71 16 36 72 19 26 73 20 24 74 15 10 75 97 11 76 32 13 77 31 12 78 37 31 79 30 30 80 36 29 81 21 32 82 25 30 83 36 31 84 30 33 85 26 12 86 37 13 87 31 15 88 29 0 89 0 34 90 39 2 91 4 1 92 1 4 93 3 5 94 2 6 95 5 8 96 8 3 97 6 34 98 39 32 99 25 35 100 24 10 101 97 9 102 33 11 103 32 2 104 4 34 105 39 3 106 6 8 107 8 7 108 7 9 109 95 10 110 38 38 111 42 36 112 19 25 113 18 42 114 43 39 115 23 40 116 44 27 117 27 29 118 21 41 119 45 27 120 27 40 121 44 25 122 18 27 123 27 41 124 45 42 125 43 38 126 42 43 127 46 36 128 19 43 129 46 44 130 47 26 131 20 44 132 47 45 133 40 26 134 20 28 135 34 49 136 41 48 137 48 30 138 36 29 139 21 30 140 36 46 141 22 47 142 49 30 143 36 48 144 48 46 145 22 30 146 36 47 147 49 43 148 46 26 149 20 36 150 19 21 151 17 37 152 16 50 153 50 51 154 51 17 155 28 21 156 17 51 157 51 52 158 52 15 159 29 17 160 28 54 161 53 53 162 54 54 163 53 17 164 28 52 165 52 12 166 37 56 167 55 55 168 56 56 169 55 15 170 29 53 171 54 12 172 37 15 173 29 56 174 55 14 175 35 12 176 37 57 177 57 58 178 58 12 179 37 55 180 56 57 181 57 16 182 10 14 183 93 58 184 58 59 185 59 37 186 16 16 187 10 61 188 60 60 189 61 16 190 10 59 191 59 61 192 60 16 193 10 60 194 61 37 195 16 61 196 60 50 197 50 51 198 51 50 199 50 38 200 42 42 201 43 52 202 52 51 203 51 42 204 43 41 205 45 53 206 54 54 207 53 40 208 44 39 209 23 54 210 53 52 211 52 41 212 45 40 213 44 56 214 55 53 215 54 39 216 23 46 217 22 55 218 56 56 219 55 46 220 22 47 221 49 58 222 58 57 223 57 48 224 48 49 225 41 57 226 57 55 227 56 47 228 49 48 229 48 59 230 59 58 231 58 49 232 41 45 233 40 60 234 61 59 235 59 45 236 40 44 237 47 61 238 60 60 239 61 44 240 47 43 241 46 50 242 50 61 243 60 43 244 46 38 245 42</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearCover</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape1\" name=\"hole0Shape1\">\r\n      <mesh>\r\n        <source id=\"hole0Shape1-positions\" name=\"hole0Shape1-positions\">\r\n          <float_array id=\"hole0Shape1-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape1-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape1-normals\" name=\"hole0Shape1-normals\">\r\n          <float_array id=\"hole0Shape1-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape1-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape1-map1\" name=\"hole0Shape1-map1\">\r\n          <float_array id=\"hole0Shape1-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape1-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape1-vertices\" name=\"hole0Shape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape1-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape2\" name=\"hole0Shape2\">\r\n      <mesh>\r\n        <source id=\"hole0Shape2-positions\" name=\"hole0Shape2-positions\">\r\n          <float_array id=\"hole0Shape2-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape2-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape2-normals\" name=\"hole0Shape2-normals\">\r\n          <float_array id=\"hole0Shape2-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape2-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape2-map1\" name=\"hole0Shape2-map1\">\r\n          <float_array id=\"hole0Shape2-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape2-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape2-vertices\" name=\"hole0Shape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape2-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape3\" name=\"hole0Shape3\">\r\n      <mesh>\r\n        <source id=\"hole0Shape3-positions\" name=\"hole0Shape3-positions\">\r\n          <float_array id=\"hole0Shape3-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape3-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape3-normals\" name=\"hole0Shape3-normals\">\r\n          <float_array id=\"hole0Shape3-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape3-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape3-map1\" name=\"hole0Shape3-map1\">\r\n          <float_array id=\"hole0Shape3-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape3-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape3-vertices\" name=\"hole0Shape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape3-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape4\" name=\"hole0Shape4\">\r\n      <mesh>\r\n        <source id=\"hole0Shape4-positions\" name=\"hole0Shape4-positions\">\r\n          <float_array id=\"hole0Shape4-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape4-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape4-normals\" name=\"hole0Shape4-normals\">\r\n          <float_array id=\"hole0Shape4-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape4-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape4-map1\" name=\"hole0Shape4-map1\">\r\n          <float_array id=\"hole0Shape4-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape4-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape4-vertices\" name=\"hole0Shape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape4-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape5\" name=\"hole0Shape5\">\r\n      <mesh>\r\n        <source id=\"hole0Shape5-positions\" name=\"hole0Shape5-positions\">\r\n          <float_array id=\"hole0Shape5-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape5-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape5-normals\" name=\"hole0Shape5-normals\">\r\n          <float_array id=\"hole0Shape5-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape5-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape5-map1\" name=\"hole0Shape5-map1\">\r\n          <float_array id=\"hole0Shape5-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape5-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape5-vertices\" name=\"hole0Shape5-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape5-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape5-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape5-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape5-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape5</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape6\" name=\"hole0Shape6\">\r\n      <mesh>\r\n        <source id=\"hole0Shape6-positions\" name=\"hole0Shape6-positions\">\r\n          <float_array id=\"hole0Shape6-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape6-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape6-normals\" name=\"hole0Shape6-normals\">\r\n          <float_array id=\"hole0Shape6-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape6-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape6-map1\" name=\"hole0Shape6-map1\">\r\n          <float_array id=\"hole0Shape6-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape6-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape6-vertices\" name=\"hole0Shape6-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape6-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape6-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape6-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape6-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape6</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pistonCoverShape\" name=\"pistonCoverShape\">\r\n      <mesh>\r\n        <source id=\"pistonCoverShape-positions\" name=\"pistonCoverShape-positions\">\r\n          <float_array id=\"pistonCoverShape-positions-array\" count=\"180\">-10.8512 -10.615 -0.6321907 -9.489988 -11.90762 -0.6321907 -7.979305 -13.01753 -0.6321907 -6.34297 -13.92722 -0.6321907 -4.606791 -14.62235 -0.6321907 -2.798147 -15.09194 -0.6321907 -0.9455624 -15.32861 -0.6321907 0 -15.34833 -0.6321907 0.9217453 -15.32861 -0.6321907 2.774328 -15.09194 -0.6321907 4.582972 -14.62235 -0.6321907 6.319149 -13.92722 -0.6321907 7.955484 -13.01753 -0.6321907 9.466167 -11.90762 -0.6321907 10.82738 -10.61499 -0.6321907 -10.8512 -10.615 0.6321907 -9.489988 -11.90762 0.6321907 -7.979305 -13.01753 0.6321907 -6.34297 -13.92722 0.6321907 -4.606791 -14.62235 0.6321907 -2.798147 -15.09194 0.6321907 -0.9455624 -15.32861 0.6321907 0 -15.34833 0.6321907 0.9217453 -15.32861 0.6321907 2.774328 -15.09194 0.6321907 4.582972 -14.62235 0.6321907 6.319149 -13.92722 0.6321907 7.955484 -13.01753 0.6321907 9.466167 -11.90762 0.6321907 10.82738 -10.61499 0.6321907 -10.85119 10.78915 0.6321907 -9.489985 12.08177 0.6321907 -7.979301 13.19168 0.6321907 -6.342967 14.10137 0.6321907 -4.606791 14.79649 0.6321907 -2.798147 15.26609 0.6321907 -0.9455643 15.50276 0.6321907 0 15.55377 0.6321907 0.9217415 15.50276 0.6321907 2.774324 15.26609 0.6321907 4.582968 14.79649 0.6321907 6.319145 14.10137 0.6321907 7.955479 13.19168 0.6321907 9.466164 12.08177 0.6321907 10.82737 10.78915 0.6321907 -10.85119 10.78915 -0.6321907 -9.489985 12.08177 -0.6321907 -7.979301 13.19168 -0.6321907 -6.342967 14.10137 -0.6321907 -4.606791 14.79649 -0.6321907 -2.798147 15.26609 -0.6321907 -0.9455643 15.50276 -0.6321907 0 15.55377 -0.6321907 0.9217415 15.50276 -0.6321907 2.774324 15.26609 -0.6321907 4.582968 14.79649 -0.6321907 6.319145 14.10137 -0.6321907 7.955479 13.19168 -0.6321907 9.466164 12.08177 -0.6321907 10.82737 10.78915 -0.6321907</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pistonCoverShape-positions-array\" count=\"60\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pistonCoverShape-normals\" name=\"pistonCoverShape-normals\">\r\n          <float_array id=\"pistonCoverShape-normals-array\" count=\"384\">-0.6886022 -0.7251393 0 -0.6416138 -0.7670277 0 -0.6416138 -0.7670277 0 -0.6886022 -0.7251393 0 -0.5400646 -0.8416236 0 -0.5400646 -0.8416236 0 -0.4296532 -0.902994 0 -0.4296532 -0.902994 0 -0.3121268 -0.9500405 0 -0.3121268 -0.9500405 0 -0.1893947 -0.981901 0 -0.1893947 -0.981901 0 -0.07388914 -0.9972665 0 -0.07388914 -0.9972665 0 2.69317e-4 -0.9999999 0 2.69317e-4 -0.9999999 0 0.07415778 -0.9972466 0 0.07415778 -0.9972466 0 0.1893953 -0.9819009 0 0.1893953 -0.9819009 0 0.3121278 -0.9500401 0 0.3121278 -0.9500401 0 0.4296538 -0.9029937 0 0.4296538 -0.9029937 0 0.5400646 -0.8416235 0 0.5400646 -0.8416235 0 0.6416138 -0.7670277 0 0.6416138 -0.7670277 0 0.6886022 -0.7251393 0 0.6886022 -0.7251393 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.6886024 0.7251391 0 -0.641614 0.7670276 0 -0.641614 0.7670276 0 -0.6886024 0.7251391 0 -0.5400646 0.8416235 0 -0.5400646 0.8416235 0 -0.4296525 0.9029943 0 -0.4296525 0.9029943 0 -0.3121282 0.9500399 0 -0.3121282 0.9500399 0 -0.1893965 0.9819007 0 -0.1893965 0.9819007 0 -0.09035378 0.9959098 0 -0.09035378 0.9959098 0 6.95042e-4 0.9999998 0 6.95042e-4 0.9999998 0 0.09104597 0.9958466 0 0.09104597 0.9958466 0 0.1893965 0.9819008 0 0.1893965 0.9819008 0 0.3121282 0.95004 0 0.3121282 0.95004 0 0.4296509 0.9029952 0 0.4296509 0.9029952 0 0.5400628 0.8416247 0 0.5400628 0.8416247 0 0.6416139 0.7670277 0 0.6416139 0.7670277 0 0.6886027 0.7251388 0 0.6886027 0.7251388 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pistonCoverShape-normals-array\" count=\"128\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pistonCoverShape-map1\" name=\"pistonCoverShape-map1\">\r\n          <float_array id=\"pistonCoverShape-map1-array\" count=\"260\">0.7424411 0.7336707 0.3641685 0.3696422 0.3861712 0.3696416 0.3861736 0.3809151 0.3641658 0.3584224 0.3861686 0.3584218 0.364163 0.3472496 0.3861657 0.3472489 0.36416 0.3361151 0.3861628 0.3361143 0.3641568 0.325009 0.3861596 0.3250082 0.3641536 0.3139205 0.3861564 0.3139197 0.364152 0.3083085 0.7142053 0.2949941 0.7176739 0.2917002 0.7176739 0.3528297 0.7142053 0.3495359 0.7215233 0.288872 0.7215233 0.3556581 0.725693 0.2865539 0.725693 0.3579761 0.7301171 0.2847826 0.7301171 0.3597474 0.734726 0.283586 0.734726 0.360944 0.7394466 0.2829829 0.7394466 0.3615471 0.7418562 0.2829326 0.7418562 0.3616771 0.744205 0.2829829 0.744205 0.3615471 0.7489256 0.283586 0.7489256 0.360944 0.7535345 0.2847826 0.7535344 0.3597474 0.7579585 0.2865539 0.7579585 0.3579761 0.7621282 0.288872 0.7621282 0.3556581 0.7659777 0.2917002 0.7659777 0.3528298 0.7694464 0.2949941 0.7694464 0.3495359 0.7142053 0.3495359 0.7176739 0.3528297 0.7176739 0.2917002 0.7142053 0.2949941 0.7215233 0.3556581 0.7215233 0.288872 0.725693 0.3579761 0.725693 0.2865539 0.7301171 0.3597474 0.7301171 0.2847826 0.734726 0.360944 0.734726 0.283586 0.7394466 0.3615471 0.7394466 0.2829829 0.7418562 0.3616771 0.7418562 0.2829326 0.744205 0.3615471 0.744205 0.2829829 0.7489256 0.360944 0.7489256 0.283586 0.7535344 0.3597474 0.7535345 0.2847826 0.7579585 0.3579761 0.7579585 0.2865539 0.7621282 0.3556581 0.7621282 0.288872 0.7659777 0.3528298 0.7659777 0.2917002 0.7694464 0.3495359 0.7694464 0.2949941 0.3861547 0.3083077 0.3641503 0.3028378 0.3861531 0.302837 0.3641471 0.2917492 0.3861499 0.2917485 0.364144 0.2806431 0.3861467 0.2806424 0.3641409 0.2695086 0.3861437 0.269508 0.3641381 0.2583357 0.3861409 0.2583351 0.3641355 0.2471159 0.3861383 0.2471154 0.3641331 0.2358717 0.749808 0.7783254 0.4900914 0.5224791 0.4900889 0.5337703 0.4680862 0.5337696 0.4680885 0.5224785 0.4900863 0.5450092 0.4680835 0.5450086 0.4900835 0.5562025 0.4680807 0.5562018 0.4900805 0.5673583 0.4680777 0.5673578 0.4900773 0.5784863 0.4680745 0.5784856 0.4900741 0.5895973 0.4680713 0.5895965 0.4900708 0.6004687 0.4680681 0.600468 0.4900676 0.6115796 0.4680648 0.6115789 0.4900645 0.6227076 0.4680617 0.6227069 0.4900614 0.6338634 0.4680586 0.6338628 0.4900586 0.6450567 0.4680558 0.645056 0.4900559 0.6562955 0.4680532 0.6562951 0.749808 0.7336012 0.7424284 0.733601 0.4900741 0.5893636 0.4900724 0.5949869 0.4680696 0.5949861 0.4680713 0.589363 0.7498206 0.7783951 0.7424411 0.7783949 0.7424284 0.7783256 0.3861359 0.2358711 0.4900536 0.6684012 0.4680508 0.6684006 0.3641708 0.3809157 0.7498206 0.7336705</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pistonCoverShape-map1-array\" count=\"130\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pistonCoverShape-vertices\" name=\"pistonCoverShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pistonCoverShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"58\">\r\n          <input semantic=\"VERTEX\" source=\"#pistonCoverShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pistonCoverShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pistonCoverShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 128 1 1 1 16 2 2 15 3 3 1 1 1 2 4 4 17 5 5 16 2 2 2 4 4 3 6 6 18 7 7 17 5 5 3 6 6 4 8 8 19 9 9 18 7 7 4 8 8 5 10 10 20 11 11 19 9 9 5 10 10 6 12 12 21 13 13 20 11 11 6 12 12 7 14 14 22 15 75 21 13 13 7 14 14 8 16 76 23 17 77 22 15 75 8 16 76 9 18 78 24 19 79 23 17 77 9 18 78 10 20 80 25 21 81 24 19 79 10 20 80 11 22 82 26 23 83 25 21 81 11 22 82 12 24 84 27 25 85 26 23 83 12 24 84 13 26 86 28 27 87 27 25 85 13 26 86 14 28 88 29 29 125 28 27 87 15 30 15 16 31 16 31 32 17 30 33 18 16 31 16 17 34 19 32 35 20 31 32 17 17 34 19 18 36 21 33 37 22 32 35 20 18 36 21 19 38 23 34 39 24 33 37 22 19 38 23 20 40 25 35 41 26 34 39 24 20 40 25 21 42 27 36 43 28 35 41 26 21 42 27 22 44 29 37 45 30 36 43 28 22 44 29 23 46 31 38 47 32 37 45 30 23 46 31 24 48 33 39 49 34 38 47 32 24 48 33 25 50 35 40 51 36 39 49 34 25 50 35 26 52 37 41 53 38 40 51 36 26 52 37 27 54 39 42 55 40 41 53 38 27 54 39 28 56 41 43 57 42 42 55 40 28 56 41 29 58 43 44 59 44 43 57 42 30 60 90 31 61 91 46 62 92 45 63 93 31 61 91 32 64 94 47 65 95 46 62 92 32 64 94 33 66 96 48 67 97 47 65 95 33 66 96 34 68 98 49 69 99 48 67 97 34 68 98 35 70 100 50 71 101 49 69 99 35 70 100 36 72 102 51 73 103 50 71 101 36 72 118 37 74 119 52 75 120 51 73 121 37 74 119 38 76 104 53 77 105 52 75 120 38 76 104 39 78 106 54 79 107 53 77 105 39 78 106 40 80 108 55 81 109 54 79 107 40 80 108 41 82 110 56 83 111 55 81 109 41 82 110 42 84 112 57 85 113 56 83 111 42 84 112 43 86 114 58 87 115 57 85 113 43 86 114 44 88 126 59 89 127 58 87 115 45 90 45 46 91 46 1 92 47 0 93 48 46 91 46 47 94 49 2 95 50 1 92 47 47 94 49 48 96 51 3 97 52 2 95 50 48 96 51 49 98 53 4 99 54 3 97 52 49 98 53 50 100 55 5 101 56 4 99 54 50 100 55 51 102 57 6 103 58 5 101 56 51 102 57 52 104 59 7 105 60 6 103 58 52 104 59 53 106 61 8 107 62 7 105 60 53 106 61 54 108 63 9 109 64 8 107 62 54 108 63 55 110 65 10 111 66 9 109 64 55 110 65 56 112 67 11 113 68 10 111 66 56 112 67 57 114 69 12 115 70 11 113 68 57 114 69 58 116 71 13 117 72 12 115 70 58 116 71 59 118 73 14 119 74 13 117 72 14 120 124 59 121 117 44 122 116 29 123 89 45 124 123 0 125 0 15 126 129 30 127 122</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pistonCoverShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole_pistonCover_Shape1\" name=\"hole_pistonCover_Shape1\">\r\n      <mesh>\r\n        <source id=\"hole_pistonCover_Shape1-positions\" name=\"hole_pistonCover_Shape1-positions\">\r\n          <float_array id=\"hole_pistonCover_Shape1-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape1-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape1-normals\" name=\"hole_pistonCover_Shape1-normals\">\r\n          <float_array id=\"hole_pistonCover_Shape1-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape1-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape1-map1\" name=\"hole_pistonCover_Shape1-map1\">\r\n          <float_array id=\"hole_pistonCover_Shape1-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape1-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole_pistonCover_Shape1-vertices\" name=\"hole_pistonCover_Shape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole_pistonCover_Shape1-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole_pistonCover_Shape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole_pistonCover_Shape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole_pistonCover_Shape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole_pistonCover_Shape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole_pistonCover_Shape2\" name=\"hole_pistonCover_Shape2\">\r\n      <mesh>\r\n        <source id=\"hole_pistonCover_Shape2-positions\" name=\"hole_pistonCover_Shape2-positions\">\r\n          <float_array id=\"hole_pistonCover_Shape2-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape2-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape2-normals\" name=\"hole_pistonCover_Shape2-normals\">\r\n          <float_array id=\"hole_pistonCover_Shape2-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape2-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape2-map1\" name=\"hole_pistonCover_Shape2-map1\">\r\n          <float_array id=\"hole_pistonCover_Shape2-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape2-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole_pistonCover_Shape2-vertices\" name=\"hole_pistonCover_Shape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole_pistonCover_Shape2-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole_pistonCover_Shape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole_pistonCover_Shape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole_pistonCover_Shape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole_pistonCover_Shape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole_pistonCover_Shape3\" name=\"hole_pistonCover_Shape3\">\r\n      <mesh>\r\n        <source id=\"hole_pistonCover_Shape3-positions\" name=\"hole_pistonCover_Shape3-positions\">\r\n          <float_array id=\"hole_pistonCover_Shape3-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape3-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape3-normals\" name=\"hole_pistonCover_Shape3-normals\">\r\n          <float_array id=\"hole_pistonCover_Shape3-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape3-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape3-map1\" name=\"hole_pistonCover_Shape3-map1\">\r\n          <float_array id=\"hole_pistonCover_Shape3-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape3-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole_pistonCover_Shape3-vertices\" name=\"hole_pistonCover_Shape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole_pistonCover_Shape3-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole_pistonCover_Shape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole_pistonCover_Shape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole_pistonCover_Shape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole_pistonCover_Shape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole_pistonCover_Shape4\" name=\"hole_pistonCover_Shape4\">\r\n      <mesh>\r\n        <source id=\"hole_pistonCover_Shape4-positions\" name=\"hole_pistonCover_Shape4-positions\">\r\n          <float_array id=\"hole_pistonCover_Shape4-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape4-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape4-normals\" name=\"hole_pistonCover_Shape4-normals\">\r\n          <float_array id=\"hole_pistonCover_Shape4-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape4-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape4-map1\" name=\"hole_pistonCover_Shape4-map1\">\r\n          <float_array id=\"hole_pistonCover_Shape4-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape4-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole_pistonCover_Shape4-vertices\" name=\"hole_pistonCover_Shape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole_pistonCover_Shape4-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole_pistonCover_Shape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole_pistonCover_Shape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole_pistonCover_Shape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole_pistonCover_Shape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole_pistonCover_Shape5\" name=\"hole_pistonCover_Shape5\">\r\n      <mesh>\r\n        <source id=\"hole_pistonCover_Shape5-positions\" name=\"hole_pistonCover_Shape5-positions\">\r\n          <float_array id=\"hole_pistonCover_Shape5-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape5-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape5-normals\" name=\"hole_pistonCover_Shape5-normals\">\r\n          <float_array id=\"hole_pistonCover_Shape5-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape5-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape5-map1\" name=\"hole_pistonCover_Shape5-map1\">\r\n          <float_array id=\"hole_pistonCover_Shape5-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape5-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole_pistonCover_Shape5-vertices\" name=\"hole_pistonCover_Shape5-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole_pistonCover_Shape5-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole_pistonCover_Shape5-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole_pistonCover_Shape5-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole_pistonCover_Shape5-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole_pistonCover_Shape5</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole_pistonCover_Shape6\" name=\"hole_pistonCover_Shape6\">\r\n      <mesh>\r\n        <source id=\"hole_pistonCover_Shape6-positions\" name=\"hole_pistonCover_Shape6-positions\">\r\n          <float_array id=\"hole_pistonCover_Shape6-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape6-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape6-normals\" name=\"hole_pistonCover_Shape6-normals\">\r\n          <float_array id=\"hole_pistonCover_Shape6-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape6-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape6-map1\" name=\"hole_pistonCover_Shape6-map1\">\r\n          <float_array id=\"hole_pistonCover_Shape6-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape6-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole_pistonCover_Shape6-vertices\" name=\"hole_pistonCover_Shape6-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole_pistonCover_Shape6-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole_pistonCover_Shape6-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole_pistonCover_Shape6-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole_pistonCover_Shape6-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole_pistonCover_Shape6</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole_pistonCover_Shape7\" name=\"hole_pistonCover_Shape7\">\r\n      <mesh>\r\n        <source id=\"hole_pistonCover_Shape7-positions\" name=\"hole_pistonCover_Shape7-positions\">\r\n          <float_array id=\"hole_pistonCover_Shape7-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape7-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape7-normals\" name=\"hole_pistonCover_Shape7-normals\">\r\n          <float_array id=\"hole_pistonCover_Shape7-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape7-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape7-map1\" name=\"hole_pistonCover_Shape7-map1\">\r\n          <float_array id=\"hole_pistonCover_Shape7-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape7-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole_pistonCover_Shape7-vertices\" name=\"hole_pistonCover_Shape7-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole_pistonCover_Shape7-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole_pistonCover_Shape7-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole_pistonCover_Shape7-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole_pistonCover_Shape7-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole_pistonCover_Shape7</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole_pistonCover_Shape8\" name=\"hole_pistonCover_Shape8\">\r\n      <mesh>\r\n        <source id=\"hole_pistonCover_Shape8-positions\" name=\"hole_pistonCover_Shape8-positions\">\r\n          <float_array id=\"hole_pistonCover_Shape8-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape8-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape8-normals\" name=\"hole_pistonCover_Shape8-normals\">\r\n          <float_array id=\"hole_pistonCover_Shape8-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape8-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole_pistonCover_Shape8-map1\" name=\"hole_pistonCover_Shape8-map1\">\r\n          <float_array id=\"hole_pistonCover_Shape8-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole_pistonCover_Shape8-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole_pistonCover_Shape8-vertices\" name=\"hole_pistonCover_Shape8-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole_pistonCover_Shape8-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole_pistonCover_Shape8-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole_pistonCover_Shape8-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole_pistonCover_Shape8-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole_pistonCover_Shape8</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pl2_slotShape\" name=\"pl2_slotShape\">\r\n      <mesh>\r\n        <source id=\"pl2_slotShape-positions\" name=\"pl2_slotShape-positions\">\r\n          <float_array id=\"pl2_slotShape-positions-array\" count=\"36\">-7.431345 -10.05506 24.4962 -2.854199 -10.05506 24.4962 -7.431345 -9.866636 24.4962 -2.854199 -9.866636 24.4962 -3.548748 -10.05506 25.09775 -3.548748 -9.866638 25.09775 -3.431559 -10.05507 25.0442 -3.431559 -9.866639 25.0442 -6.735074 -10.05506 25.09775 -6.735074 -9.866636 25.09775 -6.852263 -10.05506 25.0442 -6.852263 -9.866636 25.0442</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_slotShape-positions-array\" count=\"12\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl2_slotShape-normals\" name=\"pl2_slotShape-normals\">\r\n          <float_array id=\"pl2_slotShape-normals-array\" count=\"36\">-0.6873476 0 0.7263287 -0.5590097 0 0.8291612 -0.5590097 0 0.8291612 -0.6873476 0 0.7263287 0.2126391 0 0.9771308 0.2126391 0 0.9771308 0.5596258 0 0.8287454 0.5596258 0 0.8287454 0.688427 0 0.7253057 0.688427 0 0.7253057 -0.2126396 0 0.9771307 -0.2126396 0 0.9771307</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_slotShape-normals-array\" count=\"12\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl2_slotShape-map1\" name=\"pl2_slotShape-map1\">\r\n          <float_array id=\"pl2_slotShape-map1-array\" count=\"24\">0 0 1 0 0 0.04361371 1 0.04361371 0.7995585 0 0.7995585 0.04361371 0.821464 0 0.821464 0.04361371 0.2033715 0 0.2033715 0.04361371 0.1814659 0 0.1814659 0.04361371</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_slotShape-map1-array\" count=\"12\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pl2_slotShape-vertices\" name=\"pl2_slotShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pl2_slotShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"initialShadingGroup\" count=\"5\">\r\n          <input semantic=\"VERTEX\" source=\"#pl2_slotShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pl2_slotShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pl2_slotShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4</vcount>\r\n          <p>0 0 0 10 1 10 11 2 11 2 3 2 5 4 5 4 5 4 6 6 6 7 7 7 7 7 7 6 6 6 1 8 1 3 9 3 9 10 9 8 11 8 4 5 4 5 4 5 11 2 11 10 1 10 8 11 8 9 10 9</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pl2_slotShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pl2_headShape\" name=\"pl2_headShape\">\r\n      <mesh>\r\n        <source id=\"pl2_headShape-positions\" name=\"pl2_headShape-positions\">\r\n          <float_array id=\"pl2_headShape-positions-array\" count=\"510\">-7.982439 -10.72278 23.73676 -7.688964 -11.4313 23.73676 -7.222109 -12.03972 23.73676 -6.613692 -12.50657 23.73676 -5.905177 -12.80004 23.73676 -5.144845 -12.90014 23.73676 -4.384512 -12.80005 23.73676 -3.675996 -12.50657 23.73676 -3.067578 -12.03972 23.73676 -2.600723 -11.4313 23.73676 -2.307246 -10.72278 23.73676 -2.207146 -9.962449 23.73676 -2.307247 -9.202116 23.73676 -2.600724 -8.493601 23.73676 -3.067579 -7.885184 23.73676 -3.675996 -7.41833 23.73676 -4.384512 -7.124851 23.73676 -5.144844 -7.024752 23.73676 -5.905176 -7.124851 23.73676 -6.613692 -7.418329 23.73676 -7.22211 -7.885183 23.73676 -7.688965 -8.4936 23.73676 -7.98244 -9.202116 23.73676 -8.08254 -9.962449 23.73676 -8.110584 -10.75712 24.48785 -7.803854 -11.49763 24.48785 -7.315917 -12.13352 24.48785 -6.680025 -12.62146 24.48785 -5.939512 -12.92819 24.48785 -5.144845 -13.03281 24.48785 -4.350177 -12.92819 24.48785 -3.609663 -12.62146 24.48785 -2.97377 -12.13352 24.48785 -2.485832 -11.49763 24.48785 -2.179102 -10.75712 24.48785 -2.074482 -9.962449 24.48785 -2.179103 -9.167779 24.48785 -2.485833 -8.42727 24.48785 -2.973771 -7.791377 24.48785 -3.609663 -7.303439 24.48785 -4.350176 -6.996707 24.48785 -5.144844 -6.892087 24.48785 -5.939512 -6.996707 24.48785 -6.680025 -7.303439 24.48785 -7.315918 -7.791375 24.48785 -7.803855 -8.427268 24.48785 -8.110584 -9.16778 24.48785 -8.215204 -9.962449 24.48785 -5.144844 -9.962449 23.73676 -8.080219 -10.74199 23.82688 -7.775741 -11.47707 23.82688 -7.291382 -12.1083 23.82688 -6.660152 -12.59265 23.82688 -5.925071 -12.89714 23.82688 -5.136231 -13.00099 23.82688 -4.347391 -12.89714 23.82688 -3.612308 -12.59266 23.82688 -2.981078 -12.1083 23.82688 -2.496719 -11.47707 23.82688 -2.192238 -10.74199 23.82688 -2.088385 -9.953145 23.82688 -2.192239 -9.164304 23.82688 -2.496719 -8.429224 23.82688 -2.981079 -7.797995 23.82688 -3.612308 -7.313635 23.82688 -4.34739 -7.009152 23.82688 -5.13623 -6.905302 23.82688 -5.92507 -7.009152 23.82688 -6.660153 -7.313635 23.82688 -7.291382 -7.797995 23.82688 -7.775742 -8.429223 23.82688 -8.080221 -9.164303 23.82688 -8.184074 -9.953145 23.82688 -8.230694 -10.7893 24.32466 -7.911541 -11.5598 24.32466 -7.403844 -12.22145 24.32466 -6.742198 -12.72915 24.32466 -5.971696 -13.0483 24.32466 -5.144845 -13.15716 24.32466 -4.317993 -13.0483 24.32466 -3.547489 -12.72915 24.32466 -2.885843 -12.22145 24.32466 -2.378144 -11.5598 24.32466 -2.058991 -10.7893 24.32466 -1.950135 -9.962448 24.32466 -2.058992 -9.135597 24.32466 -2.378145 -8.365095 24.32466 -2.885844 -7.703449 24.32466 -3.547489 -7.19575 24.32466 -4.317992 -6.876597 24.32466 -5.144844 -6.767739 24.32466 -5.971695 -6.876597 24.32466 -6.742198 -7.19575 24.32466 -7.403845 -7.703447 24.32466 -7.911541 -8.365095 24.32466 -8.230695 -9.135596 24.32466 -8.339552 -9.962449 24.32466 -7.344738 -10.55191 24.48785 -7.117214 -11.1012 24.48785 -6.755277 -11.57288 24.48785 -6.283593 -11.93482 24.48785 -5.734304 -12.16234 24.48785 -5.144845 -12.23995 24.48785 -4.555385 -12.16234 24.48785 -4.006096 -11.93482 24.48785 -3.53441 -11.57288 24.48785 -3.172473 -11.1012 24.48785 -2.94495 -10.55191 24.48785 -2.867347 -9.962449 24.48785 -2.944951 -9.372989 24.48785 -3.172474 -8.823701 24.48785 -3.534411 -8.352015 24.48785 -4.006096 -7.990079 24.48785 -4.555384 -7.762556 24.48785 -5.144844 -7.684951 24.48785 -5.734303 -7.762556 24.48785 -6.283593 -7.990079 24.48785 -6.755278 -8.352015 24.48785 -7.117215 -8.823701 24.48785 -7.344738 -9.372989 24.48785 -7.422341 -9.962449 24.48785 -6.784369 -10.40176 25.03414 -6.614801 -10.81113 25.03414 -6.345059 -11.16266 25.03414 -5.993525 -11.4324 25.03414 -5.584154 -11.60197 25.03414 -5.144845 -11.65981 25.03414 -4.705535 -11.60197 25.03414 -4.296165 -11.43241 25.03414 -3.944629 -11.16266 25.03414 -3.674886 -10.81113 25.03414 -3.505319 -10.40176 25.03414 -3.447483 -9.962449 25.03414 -3.50532 -9.523139 25.03414 -3.674887 -9.113769 25.03414 -3.944629 -8.762233 25.03414 -4.296164 -8.492492 25.03414 -4.705534 -8.322925 25.03414 -5.144844 -8.265086 25.03414 -5.584153 -8.322925 25.03414 -5.993525 -8.492492 25.03414 -6.34506 -8.762233 25.03414 -6.614802 -9.113769 25.03414 -6.784369 -9.523139 25.03414 -6.842206 -9.962449 25.03414 -6.672295 -10.37173 25.08168 -6.514319 -10.75311 25.08168 -5.144844 -9.96245 25.08168 -6.263015 -11.08062 25.08168 -5.935511 -11.33192 25.08168 -5.554123 -11.4899 25.08168 -5.144845 -11.54378 25.08168 -4.735566 -11.4899 25.08168 -4.354178 -11.33192 25.08168 -4.026673 -11.08062 25.08168 -3.775368 -10.75311 25.08168 -3.617392 -10.37173 25.08168 -3.56351 -9.96245 25.08168 -3.617393 -9.553169 25.08168 -3.775369 -9.171783 25.08168 -4.026673 -8.844275 25.08168 -4.354177 -8.592975 25.08168 -4.735565 -8.434999 25.08168 -5.144844 -8.381114 25.08168 -5.554123 -8.434999 25.08168 -5.935511 -8.592975 25.08168 -6.263016 -8.844275 25.08168 -6.514319 -9.171783 25.08168 -6.672295 -9.553169 25.08168 -6.726178 -9.96245 25.08168</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_headShape-positions-array\" count=\"170\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl2_headShape-normals\" name=\"pl2_headShape-normals\">\r\n          <float_array id=\"pl2_headShape-normals-array\" count=\"1302\">-0.6486009 -0.174236 -0.7409176 -0.5859517 -0.3385745 -0.7362254 -0.7296106 -0.4213614 -0.5386307 -0.8126179 -0.2179371 -0.5405142 -0.4799698 -0.4800249 -0.7343059 -0.5961028 -0.5961277 -0.5378597 -0.3389954 -0.5868049 -0.7353516 -0.42145 -0.7298186 -0.5382794 -0.1746613 -0.6503692 -0.7392655 -0.218027 -0.8130349 -0.5398504 -5.45967e-4 -0.6663517 -0.7456373 -2.42249e-4 -0.8401195 -0.5424012 0.1694217 -0.6348691 -0.7538154 0.2166058 -0.8095303 -0.545658 0.3225355 -0.5601226 -0.7630423 0.4175262 -0.723833 -0.5493067 0.4484386 -0.4495035 -0.7725603 0.5888941 -0.5893686 -0.5530356 0.5397655 -0.3124616 -0.7816783 0.7193361 -0.4156785 -0.5565671 0.5922515 -0.159353 -0.7898385 0.8003916 -0.2147596 -0.5596889 0.6044806 -5.17314e-4 -0.7966196 0.8269672 -2.31485e-4 -0.5622501 0.5774283 0.1543417 -0.8017202 0.7975795 0.2135403 -0.5641521 0.5139399 0.296489 -0.8049597 0.7143888 0.4123475 -0.5653478 0.4183264 0.4182884 -0.8062492 0.5830371 0.5830206 -0.5658222 0.2961338 0.5132201 -0.8055494 0.412293 0.7142474 -0.5655662 0.1539851 0.575922 -0.8028713 0.2134842 0.7972929 -0.5645782 -4.76806e-4 0.6022659 -0.7982953 -2.14085e-4 0.8265417 -0.5628754 -0.1586027 0.5895786 -0.7919862 -0.2146028 0.7998645 -0.560502 -0.3108617 0.537034 -0.7841936 -0.415347 0.7187796 -0.5575328 -0.4471329 0.4460743 -0.7753 -0.588867 0.5883955 -0.5540996 -0.5572557 0.3208681 -0.7658393 -0.7232085 0.4171606 -0.5504059 -0.6319335 0.1686101 -0.7564592 -0.8088714 0.2164183 -0.5467084 -0.6638172 -5.85816e-4 -0.7478947 -0.8395354 -2.60467e-4 -0.5433049 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.8533143 -0.4926378 0.1707706 -0.9515378 -0.2549271 0.1720117 -0.6967819 -0.6967805 0.1702702 -0.4926601 -0.8533476 0.1705401 -0.2549498 -0.9516112 0.1715709 0 -0.9848697 0.1732965 0.2548492 -0.9509038 0.1755955 0.4920366 -0.8521169 0.178316 0.6954335 -0.6953485 0.1812808 0.8512233 -0.4913847 0.1842821 0.9488797 -0.2541959 0.1871143 0.9818642 0 0.1895855 0.9480363 0.2540588 0.1915236 0.8497691 0.4906358 0.1927929 0.6937681 0.6937715 0.1933051 0.4906084 0.8497323 0.1930249 0.2540317 0.9479534 0.1919692 0 0.9817427 0.1902144 -0.2541599 0.9487371 0.1878843 -0.4913054 0.8510832 0.1851384 -0.6952328 0.6953186 0.1821634 -0.8519804 0.4919626 0.1791707 -0.9507698 0.2548186 0.1763634 -0.9847597 0 0.1739203 -0.6888377 -0.3977019 0.6060823 -0.7683031 -0.205866 0.6060771 -0.5624304 -0.562435 0.6060848 -0.3976989 -0.6888423 0.6060791 -0.2058651 -0.7683044 0.6060758 0 -0.7954058 0.6060773 0.2058635 -0.7683055 0.6060749 0.3976981 -0.6888468 0.6060745 0.5624307 -0.5624389 0.6060811 0.6888365 -0.3977016 0.6060838 0.7682992 -0.2058657 0.6060823 0.795403 0 0.6060809 0.7683 0.2058665 0.6060809 0.6888381 0.3977027 0.6060813 0.5624346 0.5624338 0.6060821 0.3977015 0.6888388 0.6060812 0.2058664 0.7683023 0.606078 0 0.795406 0.6060769 -0.2058663 0.7683024 0.6060779 -0.3977031 0.688839 0.6060801 -0.5624408 0.5624334 0.6060767 -0.6888437 0.3977016 0.6060757 -0.7682987 0.2058666 0.6060826 -0.7954034 0 0.6060803 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.6362437 -0.2635419 0.7250791 -0.6362437 -0.2635419 0.7250791 -0.6362437 -0.2635419 0.7250791 -0.6362437 -0.2635419 0.7250791 -0.5463558 -0.4192331 0.7250786 -0.5463558 -0.4192331 0.7250786 -0.5463558 -0.4192331 0.7250786 -0.5463558 -0.4192331 0.7250786 -0.4192311 -0.5463567 0.725079 -0.4192311 -0.5463567 0.725079 -0.4192311 -0.5463567 0.725079 -0.4192311 -0.5463567 0.725079 -0.2635449 -0.6362438 0.725078 -0.2635449 -0.6362438 0.725078 -0.2635449 -0.6362438 0.725078 -0.2635449 -0.6362438 0.725078 -0.08988746 -0.6827737 0.7250796 -0.08988746 -0.6827737 0.7250796 -0.08988746 -0.6827737 0.7250796 -0.08988746 -0.6827737 0.7250796 0.08988728 -0.682773 0.7250802 0.08988728 -0.682773 0.7250802 0.08988728 -0.682773 0.7250802 0.08988728 -0.682773 0.7250802 0.2635421 -0.6362427 0.7250798 0.2635421 -0.6362427 0.7250798 0.2635421 -0.6362427 0.7250798 0.2635421 -0.6362427 0.7250798 0.4192328 -0.5463546 0.7250797 0.4192328 -0.5463546 0.7250797 0.4192328 -0.5463546 0.7250797 0.4192328 -0.5463546 0.7250797 0.5463561 -0.4192329 0.7250785 0.5463561 -0.4192329 0.7250785 0.5463561 -0.4192329 0.7250785 0.5463561 -0.4192329 0.7250785 0.6362457 -0.263541 0.7250776 0.6362457 -0.263541 0.7250776 0.6362457 -0.263541 0.7250776 0.6362457 -0.263541 0.7250776 0.6827731 -0.08988898 0.7250799 0.6827731 -0.08988898 0.7250799 0.6827731 -0.08988898 0.7250799 0.6827731 -0.08988898 0.7250799 0.682775 0.08988978 0.7250781 0.682775 0.08988978 0.7250781 0.682775 0.08988978 0.7250781 0.682775 0.08988978 0.7250781 0.6362438 0.2635411 0.7250792 0.6362438 0.2635411 0.7250792 0.6362438 0.2635411 0.7250792 0.6362438 0.2635411 0.7250792 0.5463554 0.4192327 0.7250792 0.5463554 0.4192327 0.7250792 0.5463554 0.4192327 0.7250792 0.5463554 0.4192327 0.7250792 0.4192304 0.5463558 0.7250801 0.4192304 0.5463558 0.7250801 0.4192304 0.5463558 0.7250801 0.4192304 0.5463558 0.7250801 0.2635402 0.6362437 0.7250797 0.2635402 0.6362437 0.7250797 0.2635402 0.6362437 0.7250797 0.2635402 0.6362437 0.7250797 0.08988968 0.6827741 0.7250788 0.08988968 0.6827741 0.7250788 0.08988968 0.6827741 0.7250788 0.08988968 0.6827741 0.7250788 -0.08988982 0.682774 0.725079 -0.08988982 0.682774 0.725079 -0.08988982 0.682774 0.725079 -0.08988982 0.682774 0.725079 -0.2635422 0.6362435 0.7250791 -0.2635422 0.6362435 0.7250791 -0.2635422 0.6362435 0.7250791 -0.2635422 0.6362435 0.7250791 -0.4192338 0.5463554 0.7250785 -0.4192338 0.5463554 0.7250785 -0.4192338 0.5463554 0.7250785 -0.4192338 0.5463554 0.7250785 -0.5463566 0.4192321 0.7250786 -0.5463566 0.4192321 0.7250786 -0.5463566 0.4192321 0.7250786 -0.5463566 0.4192321 0.7250786 -0.6362451 0.263541 0.7250781 -0.6362451 0.263541 0.7250781 -0.6362451 0.263541 0.7250781 -0.6362451 0.263541 0.7250781 -0.682775 0.08988891 0.7250781 -0.682775 0.08988891 0.7250781 -0.682775 0.08988891 0.7250781 -0.682775 0.08988891 0.7250781 -0.6827737 -0.08988935 0.7250794 -0.6827737 -0.08988935 0.7250794 -0.6827737 -0.08988935 0.7250794 -0.6827737 -0.08988935 0.7250794 -0.3528972 -0.1461734 0.9241737 -0.3528972 -0.1461734 0.9241737 -0.3528972 -0.1461734 0.9241737 -0.3528972 -0.1461734 0.9241737 -0.303032 -0.2325268 0.9241769 -0.303032 -0.2325268 0.9241769 -0.303032 -0.2325268 0.9241769 -0.303032 -0.2325268 0.9241769 -0.2325253 -0.3030349 0.9241764 -0.2325253 -0.3030349 0.9241764 -0.2325253 -0.3030349 0.9241764 -0.2325253 -0.3030349 0.9241764 -0.1461702 -0.3528928 0.9241759 -0.1461702 -0.3528928 0.9241759 -0.1461702 -0.3528928 0.9241759 -0.1461702 -0.3528928 0.9241759 -0.0498516 -0.3787032 0.9241747 -0.0498516 -0.3787032 0.9241747 -0.0498516 -0.3787032 0.9241747 -0.0498516 -0.3787032 0.9241747 0.0498516 -0.378703 0.9241747 0.0498516 -0.378703 0.9241747 0.0498516 -0.378703 0.9241747 0.0498516 -0.378703 0.9241747 0.1461667 -0.3528954 0.9241754 0.1461667 -0.3528954 0.9241754 0.1461667 -0.3528954 0.9241754 0.1461667 -0.3528954 0.9241754 0.2325381 -0.303035 0.924173 0.2325381 -0.303035 0.924173 0.2325381 -0.303035 0.924173 0.2325381 -0.303035 0.924173 0.3030281 -0.2325284 0.9241778 0.3030281 -0.2325284 0.9241778 0.3030281 -0.2325284 0.9241778 0.3030281 -0.2325284 0.9241778 0.3529017 -0.1461728 0.9241721 0.3529017 -0.1461728 0.9241721 0.3529017 -0.1461728 0.9241721 0.3529017 -0.1461728 0.9241721 0.3787103 -0.04985654 0.9241715 0.3787103 -0.04985654 0.9241715 0.3787103 -0.04985654 0.9241715 0.3787103 -0.04985654 0.9241715 0.3787011 0.04985734 0.9241752 0.3787011 0.04985734 0.9241752 0.3787011 0.04985734 0.9241752 0.3787011 0.04985734 0.9241752 0.3528946 0.1461721 0.9241748 0.3528946 0.1461721 0.9241748 0.3528946 0.1461721 0.9241748 0.3528946 0.1461721 0.9241748 0.3030283 0.232526 0.9241783 0.3030283 0.232526 0.9241783 0.3030283 0.232526 0.9241783 0.3030283 0.232526 0.9241783 0.232527 0.3030371 0.9241752 0.232527 0.3030371 0.9241752 0.232527 0.3030371 0.9241752 0.232527 0.3030371 0.9241752 0.1461698 0.3528921 0.9241762 0.1461698 0.3528921 0.9241762 0.1461698 0.3528921 0.9241762 0.1461698 0.3528921 0.9241762 0.0498598 0.3786978 0.9241765 0.0498598 0.3786978 0.9241765 0.0498598 0.3786978 0.9241765 0.0498598 0.3786978 0.9241765 -0.04985969 0.378697 0.9241767 -0.04985969 0.378697 0.9241767 -0.04985969 0.378697 0.9241767 -0.04985969 0.378697 0.9241767 -0.1461648 0.3528904 0.9241776 -0.1461648 0.3528904 0.9241776 -0.1461648 0.3528904 0.9241776 -0.1461648 0.3528904 0.9241776 -0.2325223 0.3030374 0.9241762 -0.2325223 0.3030374 0.9241762 -0.2325223 0.3030374 0.9241762 -0.2325223 0.3030374 0.9241762 -0.3030253 0.2325258 0.9241794 -0.3030253 0.2325258 0.9241794 -0.3030253 0.2325258 0.9241794 -0.3030253 0.2325258 0.9241794 -0.3528861 0.1461728 0.9241779 -0.3528861 0.1461728 0.9241779 -0.3528861 0.1461728 0.9241779 -0.3528861 0.1461728 0.9241779 -0.3786953 0.04985719 0.9241776 -0.3786953 0.04985719 0.9241776 -0.3786953 0.04985719 0.9241776 -0.3786953 0.04985719 0.9241776 -0.3787037 -0.04985712 0.9241742 -0.3787037 -0.04985712 0.9241742 -0.3787037 -0.04985712 0.9241742 -0.3787037 -0.04985712 0.9241742</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_headShape-normals-array\" count=\"434\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl2_headShape-map1\" name=\"pl2_headShape-map1\">\r\n          <float_array id=\"pl2_headShape-map1-array\" count=\"546\">0.8261844 0.5367732 0.8229512 0.5381124 0.8194815 0.5251633 0.8289609 0.5346427 0.8310913 0.5318662 0.8324306 0.5286329 0.8328874 0.5251632 0.8324306 0.5216935 0.8310913 0.5184603 0.8289609 0.5156838 0.8261844 0.5135534 0.8229511 0.5122141 0.8194815 0.5117574 0.8160117 0.5122141 0.8127785 0.5135534 0.810002 0.5156838 0.8078716 0.5184603 0.8065324 0.5216936 0.8060756 0.5251633 0.8065324 0.528633 0.8078716 0.5318663 0.810002 0.5346427 0.8127785 0.5367731 0.8160117 0.5381124 0.375 0.3125 0.3854167 0.3125 0.3958333 0.3125 0.40625 0.3125 0.4166666 0.3125 0.4270833 0.3125 0.4374999 0.3125 0.4479166 0.3125 0.4583333 0.3125 0.4687499 0.3125 0.4791666 0.3125 0.4895832 0.3125 0.4999999 0.3125 0.5104166 0.3125 0.5208333 0.3125 0.5312499 0.3125 0.5416666 0.3125 0.5520833 0.3125 0.5625 0.3125 0.5729167 0.3125 0.5833334 0.3125 0.5937501 0.3125 0.6041667 0.3125 0.6145834 0.3125 0.6250001 0.3125 0.375 0.6884398 0.3854167 0.6884398 0.3958333 0.6884398 0.40625 0.6884398 0.4166666 0.6884398 0.4270833 0.6884398 0.4374999 0.6884398 0.4479166 0.6884398 0.4583333 0.6884398 0.4687499 0.6884398 0.4791666 0.6884398 0.4895832 0.6884398 0.4999999 0.6884398 0.5104166 0.6884398 0.5208333 0.6884398 0.5312499 0.6884398 0.5416666 0.6884398 0.5520833 0.6884398 0.5625 0.6884398 0.5729167 0.6884398 0.5833334 0.6884398 0.5937501 0.6884398 0.6041667 0.6884398 0.6145834 0.6884398 0.6250001 0.6884398 0.7152465 0.6434825 0.7188261 0.6419998 0.7172286 0.6392328 0.7144197 0.6403964 0.7218999 0.6396411 0.7196408 0.6373819 0.7242586 0.6365673 0.7214916 0.6349698 0.7257413 0.6329876 0.7226552 0.6321608 0.726247 0.6291463 0.723052 0.6291463 0.7257413 0.6253049 0.7226552 0.6261319 0.7242586 0.6217254 0.7214916 0.6233228 0.7218999 0.6186515 0.7196407 0.6209107 0.7188261 0.6162928 0.7172286 0.6190598 0.7152465 0.6148102 0.7144196 0.6178963 0.7114052 0.6143044 0.7114052 0.6174994 0.8194815 0.5385692 0.4586045 0.7700858 0.6250001 0.3680374 0.375 0.3680374 0.3854166 0.3680374 0.3958333 0.3680374 0.40625 0.3680374 0.4166666 0.3680374 0.4270833 0.3680374 0.4374999 0.3680374 0.4479166 0.3680374 0.4583332 0.3680374 0.4687499 0.3680374 0.4791666 0.3680374 0.4895832 0.3680374 0.4999999 0.3680374 0.5104166 0.3680374 0.5208333 0.3680374 0.5312499 0.3680374 0.5416666 0.3680374 0.5520833 0.3680374 0.5625 0.3680374 0.5729166 0.3680374 0.5833334 0.3680374 0.59375 0.3680374 0.6041667 0.3680374 0.6145834 0.3680374 0.6250001 0.6042162 0.375 0.6042162 0.3854166 0.6042162 0.3958333 0.6042162 0.4062499 0.6042162 0.4166666 0.6042162 0.4270833 0.6042162 0.4374999 0.6042162 0.4479166 0.6042162 0.4583333 0.6042162 0.4687499 0.6042162 0.4791666 0.6042162 0.4895832 0.6042162 0.4999999 0.6042162 0.5104166 0.6042162 0.5208333 0.6042162 0.5312499 0.6042162 0.5416666 0.6042162 0.5520833 0.6042162 0.5625 0.6042162 0.5729167 0.6042162 0.5833334 0.6042162 0.59375 0.6042162 0.6041667 0.6042162 0.6145834 0.6042162 0.8559204 0.7594547 0.8559204 0.7830415 0.6348819 0.7830415 0.6348819 0.7594547 0.8559204 0.2641321 0.6348819 0.264132 0.8559204 0.2877188 0.6348819 0.2877188 0.8559204 0.3113056 0.6348817 0.3113056 0.8559204 0.3348924 0.6348818 0.3348924 0.8559204 0.3584791 0.6348818 0.3584791 0.8559204 0.382066 0.6348818 0.382066 0.8559204 0.4056528 0.6348818 0.4056528 0.8559204 0.4292395 0.6348818 0.4292396 0.8559204 0.4528263 0.6348818 0.4528263 0.8559204 0.4764131 0.6348818 0.4764131 0.8559204 0.4999999 0.6348818 0.4999999 0.8559203 0.5235867 0.6348817 0.5235868 0.8559204 0.5471736 0.6348818 0.5471735 0.8559205 0.5707604 0.6348819 0.5707603 0.8559205 0.5943472 0.6348819 0.5943472 0.8559204 0.617934 0.6348819 0.617934 0.8559204 0.6415208 0.6348819 0.6415209 0.8559205 0.6651076 0.6348818 0.6651076 0.8559204 0.6886945 0.6348819 0.6886944 0.8559204 0.7122812 0.6348819 0.7122812 0.8559205 0.735868 0.6348819 0.7358681 0.4624477 0.7684938 0.4544802 0.7546936 0.4657479 0.7659614 0.4682803 0.7626612 0.4698723 0.758818 0.4704152 0.7546936 0.4698723 0.7505693 0.4682803 0.7467262 0.4657479 0.7434258 0.4624477 0.7408935 0.4586045 0.7393016 0.4544801 0.7387586 0.4503559 0.7393016 0.4465126 0.7408935 0.4432124 0.7434258 0.44068 0.7467262 0.4390881 0.7505693 0.4385451 0.7546936 0.4390881 0.758818 0.44068 0.7626612 0.4432124 0.7659614 0.4465126 0.7684938 0.4503559 0.7700857 0.4544802 0.7706287 0.7075638 0.6148102 0.7083907 0.6178963 0.7039843 0.6162928 0.7055817 0.6190598 0.7009104 0.6186515 0.7031696 0.6209107 0.6985517 0.6217254 0.7013187 0.6233229 0.697069 0.6253049 0.7001551 0.6261318 0.6965633 0.6291463 0.6997583 0.6291463 0.697069 0.6329877 0.7001551 0.6321607 0.6985517 0.6365673 0.7013187 0.6349698 0.7009104 0.6396411 0.7031696 0.6373819 0.7039842 0.6419997 0.7055817 0.6392329 0.7075638 0.6434825 0.7083908 0.6403964 0.7114052 0.6439883 0.7114052 0.6407932 0.4616742 0.7830415 0.4616742 0.7594548 0.4616742 0.264132 0.4616742 0.2877188 0.4616742 0.3113056 0.4616742 0.3348924 0.4616741 0.3584791 0.4616741 0.382066 0.4616741 0.4056528 0.4616741 0.4292395 0.4616741 0.4528263 0.4616742 0.4764132 0.4616742 0.4999999 0.4616742 0.5235868 0.4616742 0.5471735 0.4616741 0.5707603 0.4616742 0.5943472 0.4616742 0.617934 0.4616742 0.6415209 0.4616742 0.6651075 0.4616742 0.6886945 0.4616742 0.7122812 0.4616742 0.735868 0.8559204 0.2169585 0.8559204 0.2405453 0.6348817 0.2169585 0.6348817 0.2405453 0.4616742 0.2405453 0.4616742 0.2169585</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_headShape-map1-array\" count=\"273\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pl2_headShape-vertices\" name=\"pl2_headShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pl2_headShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"120\">\r\n          <input semantic=\"VERTEX\" source=\"#pl2_headShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pl2_headShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pl2_headShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 48 0 0 49 1 48 50 2 2 51 3 1 48 0 48 50 2 3 52 4 2 51 3 48 50 2 4 53 5 3 52 4 48 50 2 5 54 6 4 53 5 48 50 2 6 55 7 5 54 6 48 50 2 7 56 8 6 55 7 48 50 2 8 57 9 7 56 8 48 50 2 9 58 10 8 57 9 48 50 2 10 59 11 9 58 10 48 50 2 11 60 12 10 59 11 48 50 2 12 61 13 11 60 12 48 50 2 13 62 14 12 61 13 48 50 2 14 63 15 13 62 14 48 50 2 15 64 16 14 63 15 48 50 2 16 65 17 15 64 16 48 50 2 17 66 18 16 65 17 48 50 2 18 67 19 17 66 18 48 50 2 19 68 20 18 67 19 48 50 2 20 69 21 19 68 20 48 50 2 21 70 22 20 69 21 48 50 2 22 71 23 21 70 22 48 50 2 23 72 98 22 71 23 48 50 2 0 49 1 23 72 98 48 50 2 145 73 99 146 74 196 147 75 197 146 74 196 148 76 198 147 75 197 148 76 198 149 77 199 147 75 197 149 77 199 150 78 200 147 75 197 150 78 200 151 79 201 147 75 197 151 79 201 152 80 202 147 75 197 152 80 202 153 81 203 147 75 197 153 81 203 154 82 204 147 75 197 154 82 204 155 83 205 147 75 197 155 83 205 156 84 206 147 75 197 156 84 206 157 85 207 147 75 197 157 85 207 158 86 208 147 75 197 158 86 208 159 87 209 147 75 197 159 87 209 160 88 210 147 75 197 160 88 210 161 89 211 147 75 197 161 89 211 162 90 212 147 75 197 162 90 212 163 91 213 147 75 197 163 91 213 164 92 214 147 75 197 164 92 214 165 93 215 147 75 197 165 93 215 166 94 216 147 75 197 166 94 216 167 95 217 147 75 197 167 95 217 168 96 218 147 75 197 168 96 218 169 97 219 147 75 197 169 97 219 145 73 99 147 75 197 24 146 74 25 147 75 98 148 76 97 149 77 25 150 75 26 151 78 99 152 79 98 153 76 26 154 78 27 155 80 100 156 81 99 157 79 27 158 80 28 159 82 101 160 83 100 161 81 28 162 82 29 163 84 102 164 85 101 165 83 29 166 84 30 167 86 103 168 87 102 169 85 30 170 86 31 171 88 104 172 89 103 173 87 31 174 88 32 175 90 105 176 91 104 177 89 32 178 90 33 179 92 106 180 93 105 181 91 33 182 92 34 183 94 107 184 95 106 185 93 34 186 94 35 187 96 108 188 97 107 189 95 35 190 96 36 191 220 109 192 221 108 193 97 36 194 220 37 195 222 110 196 223 109 197 221 37 198 222 38 199 224 111 200 225 110 201 223 38 202 224 39 203 226 112 204 227 111 205 225 39 206 226 40 207 228 113 208 229 112 209 227 40 210 228 41 211 230 114 212 231 113 213 229 41 214 230 42 215 232 115 216 233 114 217 231 42 218 232 43 219 234 116 220 235 115 221 233 43 222 234 44 223 236 117 224 237 116 225 235 44 226 236 45 227 238 118 228 239 117 229 237 45 230 238 46 231 240 119 232 241 118 233 239 46 234 240 47 235 242 120 236 243 119 237 241 47 238 242 24 239 74 97 240 77 120 241 243 97 242 150 98 243 151 122 244 152 121 245 153 98 246 267 99 247 268 123 248 270 122 249 269 99 250 268 100 251 154 124 252 155 123 253 270 100 254 154 101 255 156 125 256 157 124 257 155 101 258 156 102 259 158 126 260 159 125 261 157 102 262 158 103 263 160 127 264 161 126 265 159 103 266 160 104 267 162 128 268 163 127 269 161 104 270 162 105 271 164 129 272 165 128 273 163 105 274 164 106 275 166 130 276 167 129 277 165 106 278 166 107 279 168 131 280 169 130 281 167 107 282 168 108 283 170 132 284 171 131 285 169 108 286 170 109 287 172 133 288 173 132 289 171 109 290 172 110 291 174 134 292 175 133 293 173 110 294 174 111 295 176 135 296 177 134 297 175 111 298 176 112 299 178 136 300 179 135 301 177 112 302 178 113 303 180 137 304 181 136 305 179 113 306 180 114 307 182 138 308 183 137 309 181 114 310 182 115 311 184 139 312 185 138 313 183 115 314 184 116 315 186 140 316 187 139 317 185 116 318 186 117 319 188 141 320 189 140 321 187 117 322 188 118 323 190 142 324 191 141 325 189 118 326 190 119 327 192 143 328 193 142 329 191 119 330 192 120 331 194 144 332 195 143 333 193 120 334 194 97 335 150 121 336 153 144 337 195 121 338 153 122 339 152 146 340 244 145 341 245 122 342 269 123 343 270 148 344 271 146 345 272 123 346 270 124 347 155 149 348 246 148 349 271 124 350 155 125 351 157 150 352 247 149 353 246 125 354 157 126 355 159 151 356 248 150 357 247 126 358 159 127 359 161 152 360 249 151 361 248 127 362 161 128 363 163 153 364 250 152 365 249 128 366 163 129 367 165 154 368 251 153 369 250 129 370 165 130 371 167 155 372 252 154 373 251 130 374 167 131 375 169 156 376 253 155 377 252 131 378 169 132 379 171 157 380 254 156 381 253 132 382 171 133 383 173 158 384 255 157 385 254 133 386 173 134 387 175 159 388 256 158 389 255 134 390 175 135 391 177 160 392 257 159 393 256 135 394 177 136 395 179 161 396 258 160 397 257 136 398 179 137 399 181 162 400 259 161 401 258 137 402 181 138 403 183 163 404 260 162 405 259 138 406 183 139 407 185 164 408 261 163 409 260 139 410 185 140 411 187 165 412 262 164 413 261 140 414 187 141 415 189 166 416 263 165 417 262 141 418 189 142 419 191 167 420 264 166 421 263 142 422 191 143 423 193 168 424 265 167 425 264 143 426 193 144 427 195 169 428 266 168 429 265 144 430 195 121 431 153 145 432 245 169 433 266</p>\r\n        </polylist>\r\n        <polylist material=\"pistonLock_v02_lambert6SG\" count=\"72\">\r\n          <input semantic=\"VERTEX\" source=\"#pl2_headShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pl2_headShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pl2_headShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 24 1 1 25 50 2 102 49 3 101 1 1 25 2 4 26 51 5 103 50 2 102 2 4 26 3 6 27 52 7 104 51 5 103 3 6 27 4 8 28 53 9 105 52 7 104 4 8 28 5 10 29 54 11 106 53 9 105 5 10 29 6 12 30 55 13 107 54 11 106 6 12 30 7 14 31 56 15 108 55 13 107 7 14 31 8 16 32 57 17 109 56 15 108 8 16 32 9 18 33 58 19 110 57 17 109 9 18 33 10 20 34 59 21 111 58 19 110 10 20 34 11 22 35 60 23 112 59 21 111 11 22 35 12 24 36 61 25 113 60 23 112 12 24 36 13 26 37 62 27 114 61 25 113 13 26 37 14 28 38 63 29 115 62 27 114 14 28 38 15 30 39 64 31 116 63 29 115 15 30 39 16 32 40 65 33 117 64 31 116 16 32 40 17 34 41 66 35 118 65 33 117 17 34 41 18 36 42 67 37 119 66 35 118 18 36 42 19 38 43 68 39 120 67 37 119 19 38 43 20 40 44 69 41 121 68 39 120 20 40 44 21 42 45 70 43 122 69 41 121 21 42 45 22 44 46 71 45 123 70 43 122 22 44 46 23 46 47 72 47 124 71 45 123 23 46 47 0 0 48 49 3 100 72 47 124 49 3 101 50 2 102 74 98 127 73 99 126 50 2 102 51 5 103 75 100 128 74 98 127 51 5 103 52 7 104 76 101 129 75 100 128 52 7 104 53 9 105 77 102 130 76 101 129 53 9 105 54 11 106 78 103 131 77 102 130 54 11 106 55 13 107 79 104 132 78 103 131 55 13 107 56 15 108 80 105 133 79 104 132 56 15 108 57 17 109 81 106 134 80 105 133 57 17 109 58 19 110 82 107 135 81 106 134 58 19 110 59 21 111 83 108 136 82 107 135 59 21 111 60 23 112 84 109 137 83 108 136 60 23 112 61 25 113 85 110 138 84 109 137 61 25 113 62 27 114 86 111 139 85 110 138 62 27 114 63 29 115 87 112 140 86 111 139 63 29 115 64 31 116 88 113 141 87 112 140 64 31 116 65 33 117 89 114 142 88 113 141 65 33 117 66 35 118 90 115 143 89 114 142 66 35 118 67 37 119 91 116 144 90 115 143 67 37 119 68 39 120 92 117 145 91 116 144 68 39 120 69 41 121 93 118 146 92 117 145 69 41 121 70 43 122 94 119 147 93 118 146 70 43 122 71 45 123 95 120 148 94 119 147 71 45 123 72 47 124 96 121 149 95 120 148 72 47 124 49 3 100 73 99 125 96 121 149 73 99 126 74 98 127 25 122 50 24 123 49 74 98 127 75 100 128 26 124 51 25 122 50 75 100 128 76 101 129 27 125 52 26 124 51 76 101 129 77 102 130 28 126 53 27 125 52 77 102 130 78 103 131 29 127 54 28 126 53 78 103 131 79 104 132 30 128 55 29 127 54 79 104 132 80 105 133 31 129 56 30 128 55 80 105 133 81 106 134 32 130 57 31 129 56 81 106 134 82 107 135 33 131 58 32 130 57 82 107 135 83 108 136 34 132 59 33 131 58 83 108 136 84 109 137 35 133 60 34 132 59 84 109 137 85 110 138 36 134 61 35 133 60 85 110 138 86 111 139 37 135 62 36 134 61 86 111 139 87 112 140 38 136 63 37 135 62 87 112 140 88 113 141 39 137 64 38 136 63 88 113 141 89 114 142 40 138 65 39 137 64 89 114 142 90 115 143 41 139 66 40 138 65 90 115 143 91 116 144 42 140 67 41 139 66 91 116 144 92 117 145 43 141 68 42 140 67 92 117 145 93 118 146 44 142 69 43 141 68 93 118 146 94 119 147 45 143 70 44 142 69 94 119 147 95 120 148 46 144 71 45 143 70 95 120 148 96 121 149 47 145 72 46 144 71 96 121 149 73 99 125 24 123 73 47 145 72</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pl2_headShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pl2_shaftShape\" name=\"pl2_shaftShape\">\r\n      <mesh>\r\n        <source id=\"pl2_shaftShape-positions\" name=\"pl2_shaftShape-positions\">\r\n          <float_array id=\"pl2_shaftShape-positions-array\" count=\"111\">-6.978277 -10.6232 22.38292 -6.638922 -11.21098 22.38292 -6.119001 -11.64724 22.38292 -5.481223 -11.87938 22.38292 -4.802513 -11.87938 22.38292 -4.164734 -11.64724 22.38292 -3.644813 -11.21098 22.38292 -3.305458 -10.6232 22.38292 -3.187601 -9.9548 22.38292 -3.305458 -9.286403 22.38292 -3.644812 -8.698623 22.38292 -4.164734 -8.262356 22.38292 -4.802512 -8.030224 22.38292 -5.481222 -8.030224 22.38292 -6.119 -8.262356 22.38292 -6.638922 -8.698623 22.38292 -6.978277 -9.286403 22.38292 -7.096134 -9.9548 22.38292 -6.978277 -10.6232 23.74386 -6.638922 -11.21098 23.74386 -6.119001 -11.64724 23.74386 -5.481223 -11.87938 23.74386 -4.802513 -11.87938 23.74386 -4.164734 -11.64724 23.74386 -3.644813 -11.21098 23.74386 -3.305458 -10.6232 23.74386 -3.187601 -9.954801 23.74386 -3.305458 -9.286403 23.74386 -3.644812 -8.698623 23.74386 -4.164734 -8.262357 23.74386 -4.802512 -8.030225 23.74386 -5.481222 -8.030225 23.74386 -6.119 -8.262357 23.74386 -6.638922 -8.698623 23.74386 -6.978277 -9.286403 23.74386 -7.096134 -9.954801 23.74386 -5.141867 -9.9548 22.38292</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_shaftShape-positions-array\" count=\"37\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl2_shaftShape-normals\" name=\"pl2_shaftShape-normals\">\r\n          <float_array id=\"pl2_shaftShape-normals-array\" count=\"165\">-0.9396926 -0.3420201 0 -0.7660446 -0.6427874 0 -0.7660446 -0.6427874 0 -0.9396926 -0.3420201 0 -0.4999999 -0.8660256 0 -0.4999999 -0.8660256 0 -0.1736481 -0.9848078 0 -0.1736481 -0.9848078 0 0.1736478 -0.9848078 0 0.1736478 -0.9848078 0 0.4999995 -0.8660257 0 0.4999995 -0.8660257 0 0.7660445 -0.6427877 0 0.7660445 -0.6427877 0 0.9396926 -0.3420202 0 0.9396926 -0.3420202 0 1 0 0 1 0 0 0.9396927 0.3420198 0 0.9396927 0.3420198 0 0.7660449 0.6427871 0 0.7660449 0.6427871 0 0.4999999 0.8660256 0 0.4999999 0.8660256 0 0.1736479 0.9848077 0 0.1736479 0.9848077 0 -0.173648 0.9848077 0 -0.173648 0.9848077 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.7660446 0.6427874 0 -0.7660446 0.6427874 0 -0.9396924 0.3420207 0 -0.9396924 0.3420207 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_shaftShape-normals-array\" count=\"55\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl2_shaftShape-map1\" name=\"pl2_shaftShape-map1\">\r\n          <float_array id=\"pl2_shaftShape-map1-array\" count=\"114\">0.5661435 0.8489529 0.5661435 0.1898196 0.3182468 0.8489529 0.5661435 0.2285922 0.3182467 0.2285921 0.5661435 0.2673646 0.3182467 0.2673647 0.5661435 0.3061373 0.3182467 0.3061372 0.5661435 0.3449098 0.3182467 0.3449098 0.5661435 0.3836824 0.3182467 0.3836824 0.5661435 0.422455 0.3182467 0.422455 0.5661435 0.4612275 0.3182467 0.4612275 0.5661435 0.5 0.3182467 0.5 0.5661435 0.5387726 0.3182467 0.5387726 0.5661435 0.5775451 0.3182467 0.5775452 0.5661435 0.6163177 0.3182467 0.6163176 0.5661435 0.6550902 0.3182468 0.6550902 0.5661435 0.6938628 0.3182467 0.6938628 0.5661435 0.7326353 0.3182467 0.7326353 0.5661435 0.7714078 0.3182467 0.7714079 0.5661435 0.8101804 0.3182467 0.8101805 0.7272331 0.5715278 0.3182468 0.1510471 0.5661435 0.151047 0.3182467 0.1898196 0.7223682 0.5743365 0.7168361 0.5591371 0.730844 0.5672245 0.7327652 0.5619458 0.7327652 0.5563284 0.730844 0.5510496 0.7272331 0.5467464 0.7223682 0.5439378 0.7168361 0.5429622 0.711304 0.5439377 0.7064391 0.5467465 0.7028282 0.5510497 0.7009069 0.5563284 0.7009069 0.5619459 0.7028282 0.5672246 0.7064391 0.5715278 0.7113039 0.5743365 0.7168361 0.575312</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl2_shaftShape-map1-array\" count=\"57\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pl2_shaftShape-vertices\" name=\"pl2_shaftShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pl2_shaftShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#pl2_shaftShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pl2_shaftShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pl2_shaftShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 37 1 1 1 19 2 38 18 3 36 1 1 1 2 4 3 20 5 4 19 2 38 2 4 3 3 6 5 21 7 6 20 5 4 3 6 5 4 8 7 22 9 8 21 7 6 4 8 7 5 10 9 23 11 10 22 9 8 5 10 9 6 12 11 24 13 12 23 11 10 6 12 11 7 14 13 25 15 14 24 13 12 7 14 13 8 16 15 26 17 16 25 15 14 8 16 15 9 18 17 27 19 18 26 17 16 9 18 17 10 20 19 28 21 20 27 19 18 10 20 19 11 22 21 29 23 22 28 21 20 11 22 21 12 24 23 30 25 24 29 23 22 12 24 23 13 26 25 31 27 26 30 25 24 13 26 25 14 28 27 32 29 28 31 27 26 14 28 27 15 30 29 33 31 30 32 29 28 15 30 29 16 32 31 34 33 32 33 31 30 16 32 31 17 34 33 35 35 34 34 33 32 17 34 33 0 0 0 18 3 2 35 35 34 1 36 35 0 37 39 36 38 40 2 39 41 1 36 35 36 38 40 3 40 42 2 39 41 36 38 40 4 41 43 3 40 42 36 38 40 5 42 44 4 41 43 36 38 40 6 43 45 5 42 44 36 38 40 7 44 46 6 43 45 36 38 40 8 45 47 7 44 46 36 38 40 9 46 48 8 45 47 36 38 40 10 47 49 9 46 48 36 38 40 11 48 50 10 47 49 36 38 40 12 49 51 11 48 50 36 38 40 13 50 52 12 49 51 36 38 40 14 51 53 13 50 52 36 38 40 15 52 54 14 51 53 36 38 40 16 53 55 15 52 54 36 38 40 17 54 56 16 53 55 36 38 40 0 37 39 17 54 56 36 38 40</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pl2_shaftShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pl1_slotShape\" name=\"pl1_slotShape\">\r\n      <mesh>\r\n        <source id=\"pl1_slotShape-positions\" name=\"pl1_slotShape-positions\">\r\n          <float_array id=\"pl1_slotShape-positions-array\" count=\"36\">-7.431345 -10.05506 24.4962 -2.854199 -10.05506 24.4962 -7.431345 -9.866636 24.4962 -2.854199 -9.866636 24.4962 -3.548748 -10.05506 25.09775 -3.548748 -9.866638 25.09775 -3.431559 -10.05507 25.0442 -3.431559 -9.866639 25.0442 -6.735074 -10.05506 25.09775 -6.735074 -9.866636 25.09775 -6.852263 -10.05506 25.0442 -6.852263 -9.866636 25.0442</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_slotShape-positions-array\" count=\"12\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl1_slotShape-normals\" name=\"pl1_slotShape-normals\">\r\n          <float_array id=\"pl1_slotShape-normals-array\" count=\"36\">-0.6873476 0 0.7263287 -0.5590097 0 0.8291612 -0.5590097 0 0.8291612 -0.6873476 0 0.7263287 0.2126391 0 0.9771308 0.2126391 0 0.9771308 0.5596258 0 0.8287454 0.5596258 0 0.8287454 0.688427 0 0.7253057 0.688427 0 0.7253057 -0.2126396 0 0.9771307 -0.2126396 0 0.9771307</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_slotShape-normals-array\" count=\"12\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl1_slotShape-map1\" name=\"pl1_slotShape-map1\">\r\n          <float_array id=\"pl1_slotShape-map1-array\" count=\"24\">0 0 1 0 0 0.04361371 1 0.04361371 0.7995585 0 0.7995585 0.04361371 0.821464 0 0.821464 0.04361371 0.2033715 0 0.2033715 0.04361371 0.1814659 0 0.1814659 0.04361371</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_slotShape-map1-array\" count=\"12\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pl1_slotShape-vertices\" name=\"pl1_slotShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pl1_slotShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"initialShadingGroup\" count=\"5\">\r\n          <input semantic=\"VERTEX\" source=\"#pl1_slotShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pl1_slotShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pl1_slotShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4</vcount>\r\n          <p>0 0 0 10 1 10 11 2 11 2 3 2 5 4 5 4 5 4 6 6 6 7 7 7 7 7 7 6 6 6 1 8 1 3 9 3 9 10 9 8 11 8 4 5 4 5 4 5 11 2 11 10 1 10 8 11 8 9 10 9</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pl1_slotShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pl1_headShape\" name=\"pl1_headShape\">\r\n      <mesh>\r\n        <source id=\"pl1_headShape-positions\" name=\"pl1_headShape-positions\">\r\n          <float_array id=\"pl1_headShape-positions-array\" count=\"510\">-7.982439 -10.72278 23.73676 -7.688964 -11.4313 23.73676 -7.222109 -12.03972 23.73676 -6.613692 -12.50657 23.73676 -5.905177 -12.80004 23.73676 -5.144845 -12.90014 23.73676 -4.384512 -12.80005 23.73676 -3.675996 -12.50657 23.73676 -3.067578 -12.03972 23.73676 -2.600723 -11.4313 23.73676 -2.307246 -10.72278 23.73676 -2.207146 -9.962449 23.73676 -2.307247 -9.202116 23.73676 -2.600724 -8.493601 23.73676 -3.067579 -7.885184 23.73676 -3.675996 -7.41833 23.73676 -4.384512 -7.124851 23.73676 -5.144844 -7.024752 23.73676 -5.905176 -7.124851 23.73676 -6.613692 -7.418329 23.73676 -7.22211 -7.885183 23.73676 -7.688965 -8.4936 23.73676 -7.98244 -9.202116 23.73676 -8.08254 -9.962449 23.73676 -8.110584 -10.75712 24.48785 -7.803854 -11.49763 24.48785 -7.315917 -12.13352 24.48785 -6.680025 -12.62146 24.48785 -5.939512 -12.92819 24.48785 -5.144845 -13.03281 24.48785 -4.350177 -12.92819 24.48785 -3.609663 -12.62146 24.48785 -2.97377 -12.13352 24.48785 -2.485832 -11.49763 24.48785 -2.179102 -10.75712 24.48785 -2.074482 -9.962449 24.48785 -2.179103 -9.167779 24.48785 -2.485833 -8.42727 24.48785 -2.973771 -7.791377 24.48785 -3.609663 -7.303439 24.48785 -4.350176 -6.996707 24.48785 -5.144844 -6.892087 24.48785 -5.939512 -6.996707 24.48785 -6.680025 -7.303439 24.48785 -7.315918 -7.791375 24.48785 -7.803855 -8.427268 24.48785 -8.110584 -9.16778 24.48785 -8.215204 -9.962449 24.48785 -5.144844 -9.962449 23.73676 -8.080219 -10.74199 23.82688 -7.775741 -11.47707 23.82688 -7.291382 -12.1083 23.82688 -6.660152 -12.59265 23.82688 -5.925071 -12.89714 23.82688 -5.136231 -13.00099 23.82688 -4.347391 -12.89714 23.82688 -3.612308 -12.59266 23.82688 -2.981078 -12.1083 23.82688 -2.496719 -11.47707 23.82688 -2.192238 -10.74199 23.82688 -2.088385 -9.953145 23.82688 -2.192239 -9.164304 23.82688 -2.496719 -8.429224 23.82688 -2.981079 -7.797995 23.82688 -3.612308 -7.313635 23.82688 -4.34739 -7.009152 23.82688 -5.13623 -6.905302 23.82688 -5.92507 -7.009152 23.82688 -6.660153 -7.313635 23.82688 -7.291382 -7.797995 23.82688 -7.775742 -8.429223 23.82688 -8.080221 -9.164303 23.82688 -8.184074 -9.953145 23.82688 -8.230694 -10.7893 24.32466 -7.911541 -11.5598 24.32466 -7.403844 -12.22145 24.32466 -6.742198 -12.72915 24.32466 -5.971696 -13.0483 24.32466 -5.144845 -13.15716 24.32466 -4.317993 -13.0483 24.32466 -3.547489 -12.72915 24.32466 -2.885843 -12.22145 24.32466 -2.378144 -11.5598 24.32466 -2.058991 -10.7893 24.32466 -1.950135 -9.962448 24.32466 -2.058992 -9.135597 24.32466 -2.378145 -8.365095 24.32466 -2.885844 -7.703449 24.32466 -3.547489 -7.19575 24.32466 -4.317992 -6.876597 24.32466 -5.144844 -6.767739 24.32466 -5.971695 -6.876597 24.32466 -6.742198 -7.19575 24.32466 -7.403845 -7.703447 24.32466 -7.911541 -8.365095 24.32466 -8.230695 -9.135596 24.32466 -8.339552 -9.962449 24.32466 -7.344738 -10.55191 24.48785 -7.117214 -11.1012 24.48785 -6.755277 -11.57288 24.48785 -6.283593 -11.93482 24.48785 -5.734304 -12.16234 24.48785 -5.144845 -12.23995 24.48785 -4.555385 -12.16234 24.48785 -4.006096 -11.93482 24.48785 -3.53441 -11.57288 24.48785 -3.172473 -11.1012 24.48785 -2.94495 -10.55191 24.48785 -2.867347 -9.962449 24.48785 -2.944951 -9.372989 24.48785 -3.172474 -8.823701 24.48785 -3.534411 -8.352015 24.48785 -4.006096 -7.990079 24.48785 -4.555384 -7.762556 24.48785 -5.144844 -7.684951 24.48785 -5.734303 -7.762556 24.48785 -6.283593 -7.990079 24.48785 -6.755278 -8.352015 24.48785 -7.117215 -8.823701 24.48785 -7.344738 -9.372989 24.48785 -7.422341 -9.962449 24.48785 -6.784369 -10.40176 25.03414 -6.614801 -10.81113 25.03414 -6.345059 -11.16266 25.03414 -5.993525 -11.4324 25.03414 -5.584154 -11.60197 25.03414 -5.144845 -11.65981 25.03414 -4.705535 -11.60197 25.03414 -4.296165 -11.43241 25.03414 -3.944629 -11.16266 25.03414 -3.674886 -10.81113 25.03414 -3.505319 -10.40176 25.03414 -3.447483 -9.962449 25.03414 -3.50532 -9.523139 25.03414 -3.674887 -9.113769 25.03414 -3.944629 -8.762233 25.03414 -4.296164 -8.492492 25.03414 -4.705534 -8.322925 25.03414 -5.144844 -8.265086 25.03414 -5.584153 -8.322925 25.03414 -5.993525 -8.492492 25.03414 -6.34506 -8.762233 25.03414 -6.614802 -9.113769 25.03414 -6.784369 -9.523139 25.03414 -6.842206 -9.962449 25.03414 -6.672295 -10.37173 25.08168 -6.514319 -10.75311 25.08168 -5.144844 -9.96245 25.08168 -6.263015 -11.08062 25.08168 -5.935511 -11.33192 25.08168 -5.554123 -11.4899 25.08168 -5.144845 -11.54378 25.08168 -4.735566 -11.4899 25.08168 -4.354178 -11.33192 25.08168 -4.026673 -11.08062 25.08168 -3.775368 -10.75311 25.08168 -3.617392 -10.37173 25.08168 -3.56351 -9.96245 25.08168 -3.617393 -9.553169 25.08168 -3.775369 -9.171783 25.08168 -4.026673 -8.844275 25.08168 -4.354177 -8.592975 25.08168 -4.735565 -8.434999 25.08168 -5.144844 -8.381114 25.08168 -5.554123 -8.434999 25.08168 -5.935511 -8.592975 25.08168 -6.263016 -8.844275 25.08168 -6.514319 -9.171783 25.08168 -6.672295 -9.553169 25.08168 -6.726178 -9.96245 25.08168</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_headShape-positions-array\" count=\"170\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl1_headShape-normals\" name=\"pl1_headShape-normals\">\r\n          <float_array id=\"pl1_headShape-normals-array\" count=\"1302\">-0.6486009 -0.174236 -0.7409176 -0.5859517 -0.3385745 -0.7362254 -0.7296106 -0.4213614 -0.5386307 -0.8126179 -0.2179371 -0.5405142 -0.4799698 -0.4800249 -0.7343059 -0.5961028 -0.5961277 -0.5378597 -0.3389954 -0.5868049 -0.7353516 -0.42145 -0.7298186 -0.5382794 -0.1746613 -0.6503692 -0.7392655 -0.218027 -0.8130349 -0.5398504 -5.45967e-4 -0.6663517 -0.7456373 -2.42249e-4 -0.8401195 -0.5424012 0.1694217 -0.6348691 -0.7538154 0.2166058 -0.8095303 -0.545658 0.3225355 -0.5601226 -0.7630423 0.4175262 -0.723833 -0.5493067 0.4484386 -0.4495035 -0.7725603 0.5888941 -0.5893686 -0.5530356 0.5397655 -0.3124616 -0.7816783 0.7193361 -0.4156785 -0.5565671 0.5922515 -0.159353 -0.7898385 0.8003916 -0.2147596 -0.5596889 0.6044806 -5.17314e-4 -0.7966196 0.8269672 -2.31485e-4 -0.5622501 0.5774283 0.1543417 -0.8017202 0.7975795 0.2135403 -0.5641521 0.5139399 0.296489 -0.8049597 0.7143888 0.4123475 -0.5653478 0.4183264 0.4182884 -0.8062492 0.5830371 0.5830206 -0.5658222 0.2961338 0.5132201 -0.8055494 0.412293 0.7142474 -0.5655662 0.1539851 0.575922 -0.8028713 0.2134842 0.7972929 -0.5645782 -4.76806e-4 0.6022659 -0.7982953 -2.14085e-4 0.8265417 -0.5628754 -0.1586027 0.5895786 -0.7919862 -0.2146028 0.7998645 -0.560502 -0.3108617 0.537034 -0.7841936 -0.415347 0.7187796 -0.5575328 -0.4471329 0.4460743 -0.7753 -0.588867 0.5883955 -0.5540996 -0.5572557 0.3208681 -0.7658393 -0.7232085 0.4171606 -0.5504059 -0.6319335 0.1686101 -0.7564592 -0.8088714 0.2164183 -0.5467084 -0.6638172 -5.85816e-4 -0.7478947 -0.8395354 -2.60467e-4 -0.5433049 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.8533143 -0.4926378 0.1707706 -0.9515378 -0.2549271 0.1720117 -0.6967819 -0.6967805 0.1702702 -0.4926601 -0.8533476 0.1705401 -0.2549498 -0.9516112 0.1715709 0 -0.9848697 0.1732965 0.2548492 -0.9509038 0.1755955 0.4920366 -0.8521169 0.178316 0.6954335 -0.6953485 0.1812808 0.8512233 -0.4913847 0.1842821 0.9488797 -0.2541959 0.1871143 0.9818642 0 0.1895855 0.9480363 0.2540588 0.1915236 0.8497691 0.4906358 0.1927929 0.6937681 0.6937715 0.1933051 0.4906084 0.8497323 0.1930249 0.2540317 0.9479534 0.1919692 0 0.9817427 0.1902144 -0.2541599 0.9487371 0.1878843 -0.4913054 0.8510832 0.1851384 -0.6952328 0.6953186 0.1821634 -0.8519804 0.4919626 0.1791707 -0.9507698 0.2548186 0.1763634 -0.9847597 0 0.1739203 -0.6888377 -0.3977019 0.6060823 -0.7683031 -0.205866 0.6060771 -0.5624304 -0.562435 0.6060848 -0.3976989 -0.6888423 0.6060791 -0.2058651 -0.7683044 0.6060758 0 -0.7954058 0.6060773 0.2058635 -0.7683055 0.6060749 0.3976981 -0.6888468 0.6060745 0.5624307 -0.5624389 0.6060811 0.6888365 -0.3977016 0.6060838 0.7682992 -0.2058657 0.6060823 0.795403 0 0.6060809 0.7683 0.2058665 0.6060809 0.6888381 0.3977027 0.6060813 0.5624346 0.5624338 0.6060821 0.3977015 0.6888388 0.6060812 0.2058664 0.7683023 0.606078 0 0.795406 0.6060769 -0.2058663 0.7683024 0.6060779 -0.3977031 0.688839 0.6060801 -0.5624408 0.5624334 0.6060767 -0.6888437 0.3977016 0.6060757 -0.7682987 0.2058666 0.6060826 -0.7954034 0 0.6060803 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.6362437 -0.2635419 0.7250791 -0.6362437 -0.2635419 0.7250791 -0.6362437 -0.2635419 0.7250791 -0.6362437 -0.2635419 0.7250791 -0.5463558 -0.4192331 0.7250786 -0.5463558 -0.4192331 0.7250786 -0.5463558 -0.4192331 0.7250786 -0.5463558 -0.4192331 0.7250786 -0.4192311 -0.5463567 0.725079 -0.4192311 -0.5463567 0.725079 -0.4192311 -0.5463567 0.725079 -0.4192311 -0.5463567 0.725079 -0.2635449 -0.6362438 0.725078 -0.2635449 -0.6362438 0.725078 -0.2635449 -0.6362438 0.725078 -0.2635449 -0.6362438 0.725078 -0.08988746 -0.6827737 0.7250796 -0.08988746 -0.6827737 0.7250796 -0.08988746 -0.6827737 0.7250796 -0.08988746 -0.6827737 0.7250796 0.08988728 -0.682773 0.7250802 0.08988728 -0.682773 0.7250802 0.08988728 -0.682773 0.7250802 0.08988728 -0.682773 0.7250802 0.2635421 -0.6362427 0.7250798 0.2635421 -0.6362427 0.7250798 0.2635421 -0.6362427 0.7250798 0.2635421 -0.6362427 0.7250798 0.4192328 -0.5463546 0.7250797 0.4192328 -0.5463546 0.7250797 0.4192328 -0.5463546 0.7250797 0.4192328 -0.5463546 0.7250797 0.5463561 -0.4192329 0.7250785 0.5463561 -0.4192329 0.7250785 0.5463561 -0.4192329 0.7250785 0.5463561 -0.4192329 0.7250785 0.6362457 -0.263541 0.7250776 0.6362457 -0.263541 0.7250776 0.6362457 -0.263541 0.7250776 0.6362457 -0.263541 0.7250776 0.6827731 -0.08988898 0.7250799 0.6827731 -0.08988898 0.7250799 0.6827731 -0.08988898 0.7250799 0.6827731 -0.08988898 0.7250799 0.682775 0.08988978 0.7250781 0.682775 0.08988978 0.7250781 0.682775 0.08988978 0.7250781 0.682775 0.08988978 0.7250781 0.6362438 0.2635411 0.7250792 0.6362438 0.2635411 0.7250792 0.6362438 0.2635411 0.7250792 0.6362438 0.2635411 0.7250792 0.5463554 0.4192327 0.7250792 0.5463554 0.4192327 0.7250792 0.5463554 0.4192327 0.7250792 0.5463554 0.4192327 0.7250792 0.4192304 0.5463558 0.7250801 0.4192304 0.5463558 0.7250801 0.4192304 0.5463558 0.7250801 0.4192304 0.5463558 0.7250801 0.2635402 0.6362437 0.7250797 0.2635402 0.6362437 0.7250797 0.2635402 0.6362437 0.7250797 0.2635402 0.6362437 0.7250797 0.08988968 0.6827741 0.7250788 0.08988968 0.6827741 0.7250788 0.08988968 0.6827741 0.7250788 0.08988968 0.6827741 0.7250788 -0.08988982 0.682774 0.725079 -0.08988982 0.682774 0.725079 -0.08988982 0.682774 0.725079 -0.08988982 0.682774 0.725079 -0.2635422 0.6362435 0.7250791 -0.2635422 0.6362435 0.7250791 -0.2635422 0.6362435 0.7250791 -0.2635422 0.6362435 0.7250791 -0.4192338 0.5463554 0.7250785 -0.4192338 0.5463554 0.7250785 -0.4192338 0.5463554 0.7250785 -0.4192338 0.5463554 0.7250785 -0.5463566 0.4192321 0.7250786 -0.5463566 0.4192321 0.7250786 -0.5463566 0.4192321 0.7250786 -0.5463566 0.4192321 0.7250786 -0.6362451 0.263541 0.7250781 -0.6362451 0.263541 0.7250781 -0.6362451 0.263541 0.7250781 -0.6362451 0.263541 0.7250781 -0.682775 0.08988891 0.7250781 -0.682775 0.08988891 0.7250781 -0.682775 0.08988891 0.7250781 -0.682775 0.08988891 0.7250781 -0.6827737 -0.08988935 0.7250794 -0.6827737 -0.08988935 0.7250794 -0.6827737 -0.08988935 0.7250794 -0.6827737 -0.08988935 0.7250794 -0.3528972 -0.1461734 0.9241737 -0.3528972 -0.1461734 0.9241737 -0.3528972 -0.1461734 0.9241737 -0.3528972 -0.1461734 0.9241737 -0.303032 -0.2325268 0.9241769 -0.303032 -0.2325268 0.9241769 -0.303032 -0.2325268 0.9241769 -0.303032 -0.2325268 0.9241769 -0.2325253 -0.3030349 0.9241764 -0.2325253 -0.3030349 0.9241764 -0.2325253 -0.3030349 0.9241764 -0.2325253 -0.3030349 0.9241764 -0.1461702 -0.3528928 0.9241759 -0.1461702 -0.3528928 0.9241759 -0.1461702 -0.3528928 0.9241759 -0.1461702 -0.3528928 0.9241759 -0.0498516 -0.3787032 0.9241747 -0.0498516 -0.3787032 0.9241747 -0.0498516 -0.3787032 0.9241747 -0.0498516 -0.3787032 0.9241747 0.0498516 -0.378703 0.9241747 0.0498516 -0.378703 0.9241747 0.0498516 -0.378703 0.9241747 0.0498516 -0.378703 0.9241747 0.1461667 -0.3528954 0.9241754 0.1461667 -0.3528954 0.9241754 0.1461667 -0.3528954 0.9241754 0.1461667 -0.3528954 0.9241754 0.2325381 -0.303035 0.924173 0.2325381 -0.303035 0.924173 0.2325381 -0.303035 0.924173 0.2325381 -0.303035 0.924173 0.3030281 -0.2325284 0.9241778 0.3030281 -0.2325284 0.9241778 0.3030281 -0.2325284 0.9241778 0.3030281 -0.2325284 0.9241778 0.3529017 -0.1461728 0.9241721 0.3529017 -0.1461728 0.9241721 0.3529017 -0.1461728 0.9241721 0.3529017 -0.1461728 0.9241721 0.3787103 -0.04985654 0.9241715 0.3787103 -0.04985654 0.9241715 0.3787103 -0.04985654 0.9241715 0.3787103 -0.04985654 0.9241715 0.3787011 0.04985734 0.9241752 0.3787011 0.04985734 0.9241752 0.3787011 0.04985734 0.9241752 0.3787011 0.04985734 0.9241752 0.3528946 0.1461721 0.9241748 0.3528946 0.1461721 0.9241748 0.3528946 0.1461721 0.9241748 0.3528946 0.1461721 0.9241748 0.3030283 0.232526 0.9241783 0.3030283 0.232526 0.9241783 0.3030283 0.232526 0.9241783 0.3030283 0.232526 0.9241783 0.232527 0.3030371 0.9241752 0.232527 0.3030371 0.9241752 0.232527 0.3030371 0.9241752 0.232527 0.3030371 0.9241752 0.1461698 0.3528921 0.9241762 0.1461698 0.3528921 0.9241762 0.1461698 0.3528921 0.9241762 0.1461698 0.3528921 0.9241762 0.0498598 0.3786978 0.9241765 0.0498598 0.3786978 0.9241765 0.0498598 0.3786978 0.9241765 0.0498598 0.3786978 0.9241765 -0.04985969 0.378697 0.9241767 -0.04985969 0.378697 0.9241767 -0.04985969 0.378697 0.9241767 -0.04985969 0.378697 0.9241767 -0.1461648 0.3528904 0.9241776 -0.1461648 0.3528904 0.9241776 -0.1461648 0.3528904 0.9241776 -0.1461648 0.3528904 0.9241776 -0.2325223 0.3030374 0.9241762 -0.2325223 0.3030374 0.9241762 -0.2325223 0.3030374 0.9241762 -0.2325223 0.3030374 0.9241762 -0.3030253 0.2325258 0.9241794 -0.3030253 0.2325258 0.9241794 -0.3030253 0.2325258 0.9241794 -0.3030253 0.2325258 0.9241794 -0.3528861 0.1461728 0.9241779 -0.3528861 0.1461728 0.9241779 -0.3528861 0.1461728 0.9241779 -0.3528861 0.1461728 0.9241779 -0.3786953 0.04985719 0.9241776 -0.3786953 0.04985719 0.9241776 -0.3786953 0.04985719 0.9241776 -0.3786953 0.04985719 0.9241776 -0.3787037 -0.04985712 0.9241742 -0.3787037 -0.04985712 0.9241742 -0.3787037 -0.04985712 0.9241742 -0.3787037 -0.04985712 0.9241742</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_headShape-normals-array\" count=\"434\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl1_headShape-map1\" name=\"pl1_headShape-map1\">\r\n          <float_array id=\"pl1_headShape-map1-array\" count=\"546\">0.8261844 0.5367732 0.8229512 0.5381124 0.8194815 0.5251633 0.8289609 0.5346427 0.8310913 0.5318662 0.8324306 0.5286329 0.8328874 0.5251632 0.8324306 0.5216935 0.8310913 0.5184603 0.8289609 0.5156838 0.8261844 0.5135534 0.8229511 0.5122141 0.8194815 0.5117574 0.8160117 0.5122141 0.8127785 0.5135534 0.810002 0.5156838 0.8078716 0.5184603 0.8065324 0.5216936 0.8060756 0.5251633 0.8065324 0.528633 0.8078716 0.5318663 0.810002 0.5346427 0.8127785 0.5367731 0.8160117 0.5381124 0.375 0.3125 0.3854167 0.3125 0.3958333 0.3125 0.40625 0.3125 0.4166666 0.3125 0.4270833 0.3125 0.4374999 0.3125 0.4479166 0.3125 0.4583333 0.3125 0.4687499 0.3125 0.4791666 0.3125 0.4895832 0.3125 0.4999999 0.3125 0.5104166 0.3125 0.5208333 0.3125 0.5312499 0.3125 0.5416666 0.3125 0.5520833 0.3125 0.5625 0.3125 0.5729167 0.3125 0.5833334 0.3125 0.5937501 0.3125 0.6041667 0.3125 0.6145834 0.3125 0.6250001 0.3125 0.375 0.6884398 0.3854167 0.6884398 0.3958333 0.6884398 0.40625 0.6884398 0.4166666 0.6884398 0.4270833 0.6884398 0.4374999 0.6884398 0.4479166 0.6884398 0.4583333 0.6884398 0.4687499 0.6884398 0.4791666 0.6884398 0.4895832 0.6884398 0.4999999 0.6884398 0.5104166 0.6884398 0.5208333 0.6884398 0.5312499 0.6884398 0.5416666 0.6884398 0.5520833 0.6884398 0.5625 0.6884398 0.5729167 0.6884398 0.5833334 0.6884398 0.5937501 0.6884398 0.6041667 0.6884398 0.6145834 0.6884398 0.6250001 0.6884398 0.7152465 0.6434825 0.7188261 0.6419998 0.7172286 0.6392328 0.7144197 0.6403964 0.7218999 0.6396411 0.7196408 0.6373819 0.7242586 0.6365673 0.7214916 0.6349698 0.7257413 0.6329876 0.7226552 0.6321608 0.726247 0.6291463 0.723052 0.6291463 0.7257413 0.6253049 0.7226552 0.6261319 0.7242586 0.6217254 0.7214916 0.6233228 0.7218999 0.6186515 0.7196407 0.6209107 0.7188261 0.6162928 0.7172286 0.6190598 0.7152465 0.6148102 0.7144196 0.6178963 0.7114052 0.6143044 0.7114052 0.6174994 0.8194815 0.5385692 0.4586045 0.7700858 0.6250001 0.3680374 0.375 0.3680374 0.3854166 0.3680374 0.3958333 0.3680374 0.40625 0.3680374 0.4166666 0.3680374 0.4270833 0.3680374 0.4374999 0.3680374 0.4479166 0.3680374 0.4583332 0.3680374 0.4687499 0.3680374 0.4791666 0.3680374 0.4895832 0.3680374 0.4999999 0.3680374 0.5104166 0.3680374 0.5208333 0.3680374 0.5312499 0.3680374 0.5416666 0.3680374 0.5520833 0.3680374 0.5625 0.3680374 0.5729166 0.3680374 0.5833334 0.3680374 0.59375 0.3680374 0.6041667 0.3680374 0.6145834 0.3680374 0.6250001 0.6042162 0.375 0.6042162 0.3854166 0.6042162 0.3958333 0.6042162 0.4062499 0.6042162 0.4166666 0.6042162 0.4270833 0.6042162 0.4374999 0.6042162 0.4479166 0.6042162 0.4583333 0.6042162 0.4687499 0.6042162 0.4791666 0.6042162 0.4895832 0.6042162 0.4999999 0.6042162 0.5104166 0.6042162 0.5208333 0.6042162 0.5312499 0.6042162 0.5416666 0.6042162 0.5520833 0.6042162 0.5625 0.6042162 0.5729167 0.6042162 0.5833334 0.6042162 0.59375 0.6042162 0.6041667 0.6042162 0.6145834 0.6042162 0.8559204 0.7594547 0.8559204 0.7830415 0.6348819 0.7830415 0.6348819 0.7594547 0.8559204 0.2641321 0.6348819 0.264132 0.8559204 0.2877188 0.6348819 0.2877188 0.8559204 0.3113056 0.6348817 0.3113056 0.8559204 0.3348924 0.6348818 0.3348924 0.8559204 0.3584791 0.6348818 0.3584791 0.8559204 0.382066 0.6348818 0.382066 0.8559204 0.4056528 0.6348818 0.4056528 0.8559204 0.4292395 0.6348818 0.4292396 0.8559204 0.4528263 0.6348818 0.4528263 0.8559204 0.4764131 0.6348818 0.4764131 0.8559204 0.4999999 0.6348818 0.4999999 0.8559203 0.5235867 0.6348817 0.5235868 0.8559204 0.5471736 0.6348818 0.5471735 0.8559205 0.5707604 0.6348819 0.5707603 0.8559205 0.5943472 0.6348819 0.5943472 0.8559204 0.617934 0.6348819 0.617934 0.8559204 0.6415208 0.6348819 0.6415209 0.8559205 0.6651076 0.6348818 0.6651076 0.8559204 0.6886945 0.6348819 0.6886944 0.8559204 0.7122812 0.6348819 0.7122812 0.8559205 0.735868 0.6348819 0.7358681 0.4624477 0.7684938 0.4544802 0.7546936 0.4657479 0.7659614 0.4682803 0.7626612 0.4698723 0.758818 0.4704152 0.7546936 0.4698723 0.7505693 0.4682803 0.7467262 0.4657479 0.7434258 0.4624477 0.7408935 0.4586045 0.7393016 0.4544801 0.7387586 0.4503559 0.7393016 0.4465126 0.7408935 0.4432124 0.7434258 0.44068 0.7467262 0.4390881 0.7505693 0.4385451 0.7546936 0.4390881 0.758818 0.44068 0.7626612 0.4432124 0.7659614 0.4465126 0.7684938 0.4503559 0.7700857 0.4544802 0.7706287 0.7075638 0.6148102 0.7083907 0.6178963 0.7039843 0.6162928 0.7055817 0.6190598 0.7009104 0.6186515 0.7031696 0.6209107 0.6985517 0.6217254 0.7013187 0.6233229 0.697069 0.6253049 0.7001551 0.6261318 0.6965633 0.6291463 0.6997583 0.6291463 0.697069 0.6329877 0.7001551 0.6321607 0.6985517 0.6365673 0.7013187 0.6349698 0.7009104 0.6396411 0.7031696 0.6373819 0.7039842 0.6419997 0.7055817 0.6392329 0.7075638 0.6434825 0.7083908 0.6403964 0.7114052 0.6439883 0.7114052 0.6407932 0.4616742 0.7830415 0.4616742 0.7594548 0.4616742 0.264132 0.4616742 0.2877188 0.4616742 0.3113056 0.4616742 0.3348924 0.4616741 0.3584791 0.4616741 0.382066 0.4616741 0.4056528 0.4616741 0.4292395 0.4616741 0.4528263 0.4616742 0.4764132 0.4616742 0.4999999 0.4616742 0.5235868 0.4616742 0.5471735 0.4616741 0.5707603 0.4616742 0.5943472 0.4616742 0.617934 0.4616742 0.6415209 0.4616742 0.6651075 0.4616742 0.6886945 0.4616742 0.7122812 0.4616742 0.735868 0.8559204 0.2169585 0.8559204 0.2405453 0.6348817 0.2169585 0.6348817 0.2405453 0.4616742 0.2405453 0.4616742 0.2169585</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_headShape-map1-array\" count=\"273\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pl1_headShape-vertices\" name=\"pl1_headShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pl1_headShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"120\">\r\n          <input semantic=\"VERTEX\" source=\"#pl1_headShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pl1_headShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pl1_headShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 48 0 0 49 1 48 50 2 2 51 3 1 48 0 48 50 2 3 52 4 2 51 3 48 50 2 4 53 5 3 52 4 48 50 2 5 54 6 4 53 5 48 50 2 6 55 7 5 54 6 48 50 2 7 56 8 6 55 7 48 50 2 8 57 9 7 56 8 48 50 2 9 58 10 8 57 9 48 50 2 10 59 11 9 58 10 48 50 2 11 60 12 10 59 11 48 50 2 12 61 13 11 60 12 48 50 2 13 62 14 12 61 13 48 50 2 14 63 15 13 62 14 48 50 2 15 64 16 14 63 15 48 50 2 16 65 17 15 64 16 48 50 2 17 66 18 16 65 17 48 50 2 18 67 19 17 66 18 48 50 2 19 68 20 18 67 19 48 50 2 20 69 21 19 68 20 48 50 2 21 70 22 20 69 21 48 50 2 22 71 23 21 70 22 48 50 2 23 72 98 22 71 23 48 50 2 0 49 1 23 72 98 48 50 2 145 73 99 146 74 196 147 75 197 146 74 196 148 76 198 147 75 197 148 76 198 149 77 199 147 75 197 149 77 199 150 78 200 147 75 197 150 78 200 151 79 201 147 75 197 151 79 201 152 80 202 147 75 197 152 80 202 153 81 203 147 75 197 153 81 203 154 82 204 147 75 197 154 82 204 155 83 205 147 75 197 155 83 205 156 84 206 147 75 197 156 84 206 157 85 207 147 75 197 157 85 207 158 86 208 147 75 197 158 86 208 159 87 209 147 75 197 159 87 209 160 88 210 147 75 197 160 88 210 161 89 211 147 75 197 161 89 211 162 90 212 147 75 197 162 90 212 163 91 213 147 75 197 163 91 213 164 92 214 147 75 197 164 92 214 165 93 215 147 75 197 165 93 215 166 94 216 147 75 197 166 94 216 167 95 217 147 75 197 167 95 217 168 96 218 147 75 197 168 96 218 169 97 219 147 75 197 169 97 219 145 73 99 147 75 197 24 146 74 25 147 75 98 148 76 97 149 77 25 150 75 26 151 78 99 152 79 98 153 76 26 154 78 27 155 80 100 156 81 99 157 79 27 158 80 28 159 82 101 160 83 100 161 81 28 162 82 29 163 84 102 164 85 101 165 83 29 166 84 30 167 86 103 168 87 102 169 85 30 170 86 31 171 88 104 172 89 103 173 87 31 174 88 32 175 90 105 176 91 104 177 89 32 178 90 33 179 92 106 180 93 105 181 91 33 182 92 34 183 94 107 184 95 106 185 93 34 186 94 35 187 96 108 188 97 107 189 95 35 190 96 36 191 220 109 192 221 108 193 97 36 194 220 37 195 222 110 196 223 109 197 221 37 198 222 38 199 224 111 200 225 110 201 223 38 202 224 39 203 226 112 204 227 111 205 225 39 206 226 40 207 228 113 208 229 112 209 227 40 210 228 41 211 230 114 212 231 113 213 229 41 214 230 42 215 232 115 216 233 114 217 231 42 218 232 43 219 234 116 220 235 115 221 233 43 222 234 44 223 236 117 224 237 116 225 235 44 226 236 45 227 238 118 228 239 117 229 237 45 230 238 46 231 240 119 232 241 118 233 239 46 234 240 47 235 242 120 236 243 119 237 241 47 238 242 24 239 74 97 240 77 120 241 243 97 242 150 98 243 151 122 244 152 121 245 153 98 246 267 99 247 268 123 248 270 122 249 269 99 250 268 100 251 154 124 252 155 123 253 270 100 254 154 101 255 156 125 256 157 124 257 155 101 258 156 102 259 158 126 260 159 125 261 157 102 262 158 103 263 160 127 264 161 126 265 159 103 266 160 104 267 162 128 268 163 127 269 161 104 270 162 105 271 164 129 272 165 128 273 163 105 274 164 106 275 166 130 276 167 129 277 165 106 278 166 107 279 168 131 280 169 130 281 167 107 282 168 108 283 170 132 284 171 131 285 169 108 286 170 109 287 172 133 288 173 132 289 171 109 290 172 110 291 174 134 292 175 133 293 173 110 294 174 111 295 176 135 296 177 134 297 175 111 298 176 112 299 178 136 300 179 135 301 177 112 302 178 113 303 180 137 304 181 136 305 179 113 306 180 114 307 182 138 308 183 137 309 181 114 310 182 115 311 184 139 312 185 138 313 183 115 314 184 116 315 186 140 316 187 139 317 185 116 318 186 117 319 188 141 320 189 140 321 187 117 322 188 118 323 190 142 324 191 141 325 189 118 326 190 119 327 192 143 328 193 142 329 191 119 330 192 120 331 194 144 332 195 143 333 193 120 334 194 97 335 150 121 336 153 144 337 195 121 338 153 122 339 152 146 340 244 145 341 245 122 342 269 123 343 270 148 344 271 146 345 272 123 346 270 124 347 155 149 348 246 148 349 271 124 350 155 125 351 157 150 352 247 149 353 246 125 354 157 126 355 159 151 356 248 150 357 247 126 358 159 127 359 161 152 360 249 151 361 248 127 362 161 128 363 163 153 364 250 152 365 249 128 366 163 129 367 165 154 368 251 153 369 250 129 370 165 130 371 167 155 372 252 154 373 251 130 374 167 131 375 169 156 376 253 155 377 252 131 378 169 132 379 171 157 380 254 156 381 253 132 382 171 133 383 173 158 384 255 157 385 254 133 386 173 134 387 175 159 388 256 158 389 255 134 390 175 135 391 177 160 392 257 159 393 256 135 394 177 136 395 179 161 396 258 160 397 257 136 398 179 137 399 181 162 400 259 161 401 258 137 402 181 138 403 183 163 404 260 162 405 259 138 406 183 139 407 185 164 408 261 163 409 260 139 410 185 140 411 187 165 412 262 164 413 261 140 414 187 141 415 189 166 416 263 165 417 262 141 418 189 142 419 191 167 420 264 166 421 263 142 422 191 143 423 193 168 424 265 167 425 264 143 426 193 144 427 195 169 428 266 168 429 265 144 430 195 121 431 153 145 432 245 169 433 266</p>\r\n        </polylist>\r\n        <polylist material=\"pistonLock_v02_lambert6SG\" count=\"72\">\r\n          <input semantic=\"VERTEX\" source=\"#pl1_headShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pl1_headShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pl1_headShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 24 1 1 25 50 2 102 49 3 101 1 1 25 2 4 26 51 5 103 50 2 102 2 4 26 3 6 27 52 7 104 51 5 103 3 6 27 4 8 28 53 9 105 52 7 104 4 8 28 5 10 29 54 11 106 53 9 105 5 10 29 6 12 30 55 13 107 54 11 106 6 12 30 7 14 31 56 15 108 55 13 107 7 14 31 8 16 32 57 17 109 56 15 108 8 16 32 9 18 33 58 19 110 57 17 109 9 18 33 10 20 34 59 21 111 58 19 110 10 20 34 11 22 35 60 23 112 59 21 111 11 22 35 12 24 36 61 25 113 60 23 112 12 24 36 13 26 37 62 27 114 61 25 113 13 26 37 14 28 38 63 29 115 62 27 114 14 28 38 15 30 39 64 31 116 63 29 115 15 30 39 16 32 40 65 33 117 64 31 116 16 32 40 17 34 41 66 35 118 65 33 117 17 34 41 18 36 42 67 37 119 66 35 118 18 36 42 19 38 43 68 39 120 67 37 119 19 38 43 20 40 44 69 41 121 68 39 120 20 40 44 21 42 45 70 43 122 69 41 121 21 42 45 22 44 46 71 45 123 70 43 122 22 44 46 23 46 47 72 47 124 71 45 123 23 46 47 0 0 48 49 3 100 72 47 124 49 3 101 50 2 102 74 98 127 73 99 126 50 2 102 51 5 103 75 100 128 74 98 127 51 5 103 52 7 104 76 101 129 75 100 128 52 7 104 53 9 105 77 102 130 76 101 129 53 9 105 54 11 106 78 103 131 77 102 130 54 11 106 55 13 107 79 104 132 78 103 131 55 13 107 56 15 108 80 105 133 79 104 132 56 15 108 57 17 109 81 106 134 80 105 133 57 17 109 58 19 110 82 107 135 81 106 134 58 19 110 59 21 111 83 108 136 82 107 135 59 21 111 60 23 112 84 109 137 83 108 136 60 23 112 61 25 113 85 110 138 84 109 137 61 25 113 62 27 114 86 111 139 85 110 138 62 27 114 63 29 115 87 112 140 86 111 139 63 29 115 64 31 116 88 113 141 87 112 140 64 31 116 65 33 117 89 114 142 88 113 141 65 33 117 66 35 118 90 115 143 89 114 142 66 35 118 67 37 119 91 116 144 90 115 143 67 37 119 68 39 120 92 117 145 91 116 144 68 39 120 69 41 121 93 118 146 92 117 145 69 41 121 70 43 122 94 119 147 93 118 146 70 43 122 71 45 123 95 120 148 94 119 147 71 45 123 72 47 124 96 121 149 95 120 148 72 47 124 49 3 100 73 99 125 96 121 149 73 99 126 74 98 127 25 122 50 24 123 49 74 98 127 75 100 128 26 124 51 25 122 50 75 100 128 76 101 129 27 125 52 26 124 51 76 101 129 77 102 130 28 126 53 27 125 52 77 102 130 78 103 131 29 127 54 28 126 53 78 103 131 79 104 132 30 128 55 29 127 54 79 104 132 80 105 133 31 129 56 30 128 55 80 105 133 81 106 134 32 130 57 31 129 56 81 106 134 82 107 135 33 131 58 32 130 57 82 107 135 83 108 136 34 132 59 33 131 58 83 108 136 84 109 137 35 133 60 34 132 59 84 109 137 85 110 138 36 134 61 35 133 60 85 110 138 86 111 139 37 135 62 36 134 61 86 111 139 87 112 140 38 136 63 37 135 62 87 112 140 88 113 141 39 137 64 38 136 63 88 113 141 89 114 142 40 138 65 39 137 64 89 114 142 90 115 143 41 139 66 40 138 65 90 115 143 91 116 144 42 140 67 41 139 66 91 116 144 92 117 145 43 141 68 42 140 67 92 117 145 93 118 146 44 142 69 43 141 68 93 118 146 94 119 147 45 143 70 44 142 69 94 119 147 95 120 148 46 144 71 45 143 70 95 120 148 96 121 149 47 145 72 46 144 71 96 121 149 73 99 125 24 123 73 47 145 72</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pl1_headShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pl1_shaftShape\" name=\"pl1_shaftShape\">\r\n      <mesh>\r\n        <source id=\"pl1_shaftShape-positions\" name=\"pl1_shaftShape-positions\">\r\n          <float_array id=\"pl1_shaftShape-positions-array\" count=\"111\">-6.978277 -10.6232 22.38292 -6.638922 -11.21098 22.38292 -6.119001 -11.64724 22.38292 -5.481223 -11.87938 22.38292 -4.802513 -11.87938 22.38292 -4.164734 -11.64724 22.38292 -3.644813 -11.21098 22.38292 -3.305458 -10.6232 22.38292 -3.187601 -9.9548 22.38292 -3.305458 -9.286403 22.38292 -3.644812 -8.698623 22.38292 -4.164734 -8.262356 22.38292 -4.802512 -8.030224 22.38292 -5.481222 -8.030224 22.38292 -6.119 -8.262356 22.38292 -6.638922 -8.698623 22.38292 -6.978277 -9.286403 22.38292 -7.096134 -9.9548 22.38292 -6.978277 -10.6232 23.74386 -6.638922 -11.21098 23.74386 -6.119001 -11.64724 23.74386 -5.481223 -11.87938 23.74386 -4.802513 -11.87938 23.74386 -4.164734 -11.64724 23.74386 -3.644813 -11.21098 23.74386 -3.305458 -10.6232 23.74386 -3.187601 -9.954801 23.74386 -3.305458 -9.286403 23.74386 -3.644812 -8.698623 23.74386 -4.164734 -8.262357 23.74386 -4.802512 -8.030225 23.74386 -5.481222 -8.030225 23.74386 -6.119 -8.262357 23.74386 -6.638922 -8.698623 23.74386 -6.978277 -9.286403 23.74386 -7.096134 -9.954801 23.74386 -5.141867 -9.9548 22.38292</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_shaftShape-positions-array\" count=\"37\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl1_shaftShape-normals\" name=\"pl1_shaftShape-normals\">\r\n          <float_array id=\"pl1_shaftShape-normals-array\" count=\"165\">-0.9396926 -0.3420201 0 -0.7660446 -0.6427874 0 -0.7660446 -0.6427874 0 -0.9396926 -0.3420201 0 -0.4999999 -0.8660256 0 -0.4999999 -0.8660256 0 -0.1736481 -0.9848078 0 -0.1736481 -0.9848078 0 0.1736478 -0.9848078 0 0.1736478 -0.9848078 0 0.4999995 -0.8660257 0 0.4999995 -0.8660257 0 0.7660445 -0.6427877 0 0.7660445 -0.6427877 0 0.9396926 -0.3420202 0 0.9396926 -0.3420202 0 1 0 0 1 0 0 0.9396927 0.3420198 0 0.9396927 0.3420198 0 0.7660449 0.6427871 0 0.7660449 0.6427871 0 0.4999999 0.8660256 0 0.4999999 0.8660256 0 0.1736479 0.9848077 0 0.1736479 0.9848077 0 -0.173648 0.9848077 0 -0.173648 0.9848077 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.7660446 0.6427874 0 -0.7660446 0.6427874 0 -0.9396924 0.3420207 0 -0.9396924 0.3420207 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_shaftShape-normals-array\" count=\"55\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pl1_shaftShape-map1\" name=\"pl1_shaftShape-map1\">\r\n          <float_array id=\"pl1_shaftShape-map1-array\" count=\"114\">0.5661435 0.8489529 0.5661435 0.1898196 0.3182468 0.8489529 0.5661435 0.2285922 0.3182467 0.2285921 0.5661435 0.2673646 0.3182467 0.2673647 0.5661435 0.3061373 0.3182467 0.3061372 0.5661435 0.3449098 0.3182467 0.3449098 0.5661435 0.3836824 0.3182467 0.3836824 0.5661435 0.422455 0.3182467 0.422455 0.5661435 0.4612275 0.3182467 0.4612275 0.5661435 0.5 0.3182467 0.5 0.5661435 0.5387726 0.3182467 0.5387726 0.5661435 0.5775451 0.3182467 0.5775452 0.5661435 0.6163177 0.3182467 0.6163176 0.5661435 0.6550902 0.3182468 0.6550902 0.5661435 0.6938628 0.3182467 0.6938628 0.5661435 0.7326353 0.3182467 0.7326353 0.5661435 0.7714078 0.3182467 0.7714079 0.5661435 0.8101804 0.3182467 0.8101805 0.7272331 0.5715278 0.3182468 0.1510471 0.5661435 0.151047 0.3182467 0.1898196 0.7223682 0.5743365 0.7168361 0.5591371 0.730844 0.5672245 0.7327652 0.5619458 0.7327652 0.5563284 0.730844 0.5510496 0.7272331 0.5467464 0.7223682 0.5439378 0.7168361 0.5429622 0.711304 0.5439377 0.7064391 0.5467465 0.7028282 0.5510497 0.7009069 0.5563284 0.7009069 0.5619459 0.7028282 0.5672246 0.7064391 0.5715278 0.7113039 0.5743365 0.7168361 0.575312</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pl1_shaftShape-map1-array\" count=\"57\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pl1_shaftShape-vertices\" name=\"pl1_shaftShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pl1_shaftShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#pl1_shaftShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pl1_shaftShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pl1_shaftShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 37 1 1 1 19 2 38 18 3 36 1 1 1 2 4 3 20 5 4 19 2 38 2 4 3 3 6 5 21 7 6 20 5 4 3 6 5 4 8 7 22 9 8 21 7 6 4 8 7 5 10 9 23 11 10 22 9 8 5 10 9 6 12 11 24 13 12 23 11 10 6 12 11 7 14 13 25 15 14 24 13 12 7 14 13 8 16 15 26 17 16 25 15 14 8 16 15 9 18 17 27 19 18 26 17 16 9 18 17 10 20 19 28 21 20 27 19 18 10 20 19 11 22 21 29 23 22 28 21 20 11 22 21 12 24 23 30 25 24 29 23 22 12 24 23 13 26 25 31 27 26 30 25 24 13 26 25 14 28 27 32 29 28 31 27 26 14 28 27 15 30 29 33 31 30 32 29 28 15 30 29 16 32 31 34 33 32 33 31 30 16 32 31 17 34 33 35 35 34 34 33 32 17 34 33 0 0 0 18 3 2 35 35 34 1 36 35 0 37 39 36 38 40 2 39 41 1 36 35 36 38 40 3 40 42 2 39 41 36 38 40 4 41 43 3 40 42 36 38 40 5 42 44 4 41 43 36 38 40 6 43 45 5 42 44 36 38 40 7 44 46 6 43 45 36 38 40 8 45 47 7 44 46 36 38 40 9 46 48 8 45 47 36 38 40 10 47 49 9 46 48 36 38 40 11 48 50 10 47 49 36 38 40 12 49 51 11 48 50 36 38 40 13 50 52 12 49 51 36 38 40 14 51 53 13 50 52 36 38 40 15 52 54 14 51 53 36 38 40 16 53 55 15 52 54 36 38 40 17 54 56 16 53 55 36 38 40 0 37 39 17 54 56 36 38 40</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pl1_shaftShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pumpHousingBracketShape2\" name=\"pumpHousingBracketShape2\">\r\n      <mesh>\r\n        <source id=\"pumpHousingBracketShape2-positions\" name=\"pumpHousingBracketShape2-positions\">\r\n          <float_array id=\"pumpHousingBracketShape2-positions-array\" count=\"420\">0.01038087 31.29735 32.91579 0.01038087 33.33386 32.91578 0.9321204 33.28285 32.91579 1.904515 33.18969 32.91578 2.784703 33.04618 32.91579 3.727089 32.82184 32.91578 4.839937 32.50261 32.91578 5.512774 32.23901 32.91578 6.329524 31.88146 32.91578 7.174129 31.43315 32.91578 7.965857 30.97178 32.91578 8.758976 30.42941 32.91578 9.476542 29.86187 32.91578 9.966101 29.44909 32.91578 10.46684 28.95729 32.91578 10.7351 28.43866 32.91578 10.77981 27.87805 32.91578 10.64247 27.31192 32.91579 10.31483 26.98569 32.91578 9.733614 26.83232 32.91578 8.980104 26.83579 32.91579 8.255644 26.97537 32.91578 7.653622 27.29211 32.91578 6.977882 27.79446 32.91578 6.130136 28.44388 32.91578 4.843634 29.45778 32.91578 3.992342 30.12021 32.91578 2.997649 30.62881 32.91578 2.063413 31.00469 32.91578 1.105092 31.19922 32.91578 -0.9113587 33.28285 32.91579 -1.883753 33.18969 32.91578 -2.763942 33.04618 32.91579 -3.706327 32.82184 32.91578 -4.835615 32.48617 32.91578 -5.492013 32.23901 32.91578 -6.308762 31.88146 32.91578 -7.153368 31.43315 32.91578 -7.945095 30.97178 32.91578 -8.738214 30.42941 32.91578 -9.45578 29.86187 32.91578 -9.945339 29.44909 32.91578 -10.44608 28.95729 32.91578 -10.71433 28.43866 32.91578 -10.75904 27.87805 32.91578 -10.62171 27.31192 32.91579 -10.29407 26.98569 32.91578 -9.712852 26.83232 32.91578 -8.959343 26.83579 32.91579 -8.234882 26.97537 32.91578 -7.63286 27.29211 32.91578 -6.95712 27.79446 32.91578 -6.109374 28.44388 32.91578 -4.839312 29.41237 32.91578 -3.971581 30.12021 32.91578 -2.976887 30.62881 32.91578 -2.042651 31.00469 32.91578 -1.08433 31.19922 32.91578 0.01038087 31.29735 30.99548 0.01038087 33.3714 31.88508 0.9321204 33.3714 31.88509 2.196861 33.3714 31.88508 2.784703 33.21235 31.88509 3.727089 32.96992 31.88508 4.839937 32.68861 31.88508 5.512774 32.23901 30.99547 6.329524 31.88146 30.99547 7.174129 31.43315 30.99547 7.965857 30.97178 30.99547 8.758976 30.42941 30.99547 9.476542 29.86187 30.99547 9.966101 29.44909 30.99547 10.46684 28.95729 30.99547 10.7351 28.43866 30.99547 10.77981 27.87805 30.99547 10.64247 27.31192 30.99548 10.31483 26.98569 30.99547 9.733614 26.83232 30.99547 8.980104 26.83579 30.99548 8.255644 26.97537 30.99547 7.653622 27.29211 30.99547 6.977882 27.79446 30.99547 6.130136 28.44388 30.99547 4.843634 29.45778 30.99547 3.992342 30.12021 30.99547 2.997649 30.62881 30.99548 2.063413 31.00469 30.99547 1.105092 31.19922 30.99547 -0.9113587 33.3714 31.88509 -1.949549 33.3714 31.88508 -2.763942 33.16033 31.88509 -3.706327 32.92156 31.88508 -4.835615 32.63632 31.88508 -5.492013 32.23901 30.99547 -6.308762 31.88146 30.99547 -7.153368 31.43315 30.99547 -7.945095 30.97178 30.99547 -8.738214 30.42941 30.99547 -9.45578 29.86187 30.99547 -9.945339 29.44909 30.99547 -10.44608 28.95729 30.99547 -10.71433 28.43866 30.99547 -10.75904 27.87805 30.99547 -10.62171 27.31192 30.99548 -10.29407 26.98569 30.99547 -9.712852 26.83232 30.99547 -8.959343 26.83579 30.99548 -8.234882 26.97537 30.99547 -7.63286 27.29211 30.99547 -6.95712 27.79446 30.99547 -6.109374 28.44388 30.99547 -4.839312 29.41237 30.99547 -3.971581 30.12021 30.99547 -2.976887 30.62881 30.99548 -2.042651 31.00469 30.99547 -1.08433 31.19922 30.99547 4.839937 32.50261 30.99547 -4.835615 32.48617 30.99547 0.01038087 33.3714 30.28832 0.9321204 33.3714 29.99781 2.196861 33.3714 24.06088 2.784703 33.21235 29.99782 3.727089 32.96992 29.99781 4.839937 32.68808 24.06088 4.843634 29.45778 24.06088 3.992342 30.12021 24.06088 2.997649 30.62881 24.06088 2.063413 31.00469 24.06088 1.105092 31.19922 24.06088 0.01038087 31.29735 24.06089 -0.9113587 33.3714 29.99782 -1.949549 33.3714 24.06088 -2.763942 33.16033 29.99782 -3.706327 32.92156 29.99781 -4.835615 32.63632 24.06088 -4.839312 29.41237 24.06088 -3.971581 30.12021 24.06088 -2.976887 30.62881 24.06088 -2.042651 31.00469 24.06088 -1.08433 31.19922 24.06088</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pumpHousingBracketShape2-positions-array\" count=\"140\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pumpHousingBracketShape2-normals\" name=\"pumpHousingBracketShape2-normals\">\r\n          <float_array id=\"pumpHousingBracketShape2-normals-array\" count=\"1593\">0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.02761027 0.997754 0.06102993 0.02761027 0.997754 0.06102993 0.02761027 0.997754 0.06102993 0.02761027 0.997754 0.06102993 0.04122395 0.9899009 0.1356355 0.04122395 0.9899009 0.1356355 0.04122395 0.9899009 0.1356355 0.04122395 0.9899009 0.1356355 0.1981595 0.9615056 0.190368 0.1981595 0.9615056 0.190368 0.1981595 0.9615056 0.190368 0.1981595 0.9615056 0.190368 0.2378047 0.9602196 0.1463815 0.2378047 0.9602196 0.1463815 0.2378047 0.9602196 0.1463815 0.2378047 0.9602196 0.1463815 0.2573775 0.9538651 0.1545908 0.2573775 0.9538651 0.1545908 0.2573775 0.9538651 0.1545908 0.2573775 0.9538651 0.1545908 0.4955509 0.8668587 0.05463791 0.4955509 0.8668587 0.05463791 0.4955509 0.8668587 0.05463791 0.4955509 0.8668587 0.05463791 0.4010224 0.9160683 0 0.4010224 0.9160683 0 0.4010224 0.9160683 0 0.4010224 0.9160683 0 0.4688437 0.8832812 0 0.4688437 0.8832812 0 0.4688437 0.8832812 0 0.4688437 0.8832812 0 0.5034862 0.8640034 0 0.5034862 0.8640034 0 0.5034862 0.8640034 0 0.5034862 0.8640034 0 0.5644751 0.8254501 0 0.5644751 0.8254501 0 0.5644751 0.8254501 0 0.5644751 0.8254501 0 0.620347 0.7843275 0 0.620347 0.7843275 0 0.620347 0.7843275 0 0.620347 0.7843275 0 0.6446152 0.7645072 0 0.6446152 0.7645072 0 0.6446152 0.7645072 0 0.6446152 0.7645072 0 0.7007063 0.7134499 0 0.7007063 0.7134499 0 0.7007063 0.7134499 0 0.7007063 0.7134499 0 0.8882195 0.4594194 0 0.8882195 0.4594194 0 0.8882195 0.4594194 0 0.8882195 0.4594194 0 0.9968349 0.07949919 0 0.9968349 0.07949919 0 0.9968349 0.07949919 0 0.9968349 0.07949919 0 0.9718134 -0.2357519 0 0.9718134 -0.2357519 0 0.9718134 -0.2357519 0 0.9718134 -0.2357519 0 0.7055847 -0.7086256 0 0.7055847 -0.7086256 0 0.7055847 -0.7086256 0 0.7055847 -0.7086256 0 0.2551523 -0.966901 0 0.2551523 -0.966901 0 0.2551523 -0.966901 0 0.2551523 -0.966901 0 -0.004614489 -0.9999894 0 -0.004614489 -0.9999894 0 -0.004614489 -0.9999894 0 -0.004614489 -0.9999894 0 -0.1891879 -0.981941 0 -0.1891879 -0.981941 0 -0.1891879 -0.981941 0 -0.1891879 -0.981941 0 -0.4656131 -0.8849884 0 -0.4656131 -0.8849884 0 -0.4656131 -0.8849884 0 -0.4656131 -0.8849884 0 -0.596611 -0.8025306 0 -0.596611 -0.8025306 0 -0.596611 -0.8025306 0 -0.596611 -0.8025306 0 -0.6081236 -0.7938424 0 -0.6081236 -0.7938424 0 -0.6081236 -0.7938424 0 -0.6081236 -0.7938424 0 -0.6189836 -0.7854039 0 -0.6189836 -0.7854039 0 -0.6189836 -0.7854039 0 -0.6189836 -0.7854039 0 -0.6141232 -0.7892103 0 -0.6141232 -0.7892103 0 -0.6141232 -0.7892103 0 -0.6141232 -0.7892103 0 -0.4552524 -0.8903624 0 -0.4552524 -0.8903624 0 -0.4552524 -0.8903624 0 -0.4552524 -0.8903624 0 -0.3732617 -0.9277261 0 -0.3732617 -0.9277261 0 -0.3732617 -0.9277261 0 -0.3732617 -0.9277261 0 -0.1989317 -0.9800134 0 -0.1989317 -0.9800134 0 -0.1989317 -0.9800134 0 -0.1989317 -0.9800134 0 -0.08928159 -0.9960065 0 -0.08928159 -0.9960065 0 -0.08928159 -0.9960065 0 -0.08928159 -0.9960065 0 -0.0276104 0.997754 0.06102993 -0.0276104 0.997754 0.06102993 -0.0276104 0.997754 0.06102993 -0.0276104 0.997754 0.06102993 -0.04588838 0.9902799 0.1313014 -0.04588838 0.9902799 0.1313014 -0.04588838 0.9902799 0.1313014 -0.04588838 0.9902799 0.1313014 -0.2026252 0.9683941 0.145451 -0.2026252 0.9683941 0.145451 -0.2026252 0.9683941 0.145451 -0.2026252 0.9683941 0.145451 -0.2374139 0.9662224 0.1002444 -0.2374139 0.9662224 0.1002444 -0.2374139 0.9662224 0.1002444 -0.2374139 0.9662224 0.1002444 -0.2632852 0.9577075 0.1160927 -0.2632852 0.9577075 0.1160927 -0.2632852 0.9577075 0.1160927 -0.2632852 0.9577075 0.1160927 -0.4646418 0.8843547 0.04499775 -0.4646418 0.8843547 0.04499775 -0.4646418 0.8843547 0.04499775 -0.4646418 0.8843547 0.04499775 -0.4010222 0.9160684 0 -0.4010222 0.9160684 0 -0.4010222 0.9160684 0 -0.4010222 0.9160684 0 -0.4688437 0.8832812 0 -0.4688437 0.8832812 0 -0.4688437 0.8832812 0 -0.4688437 0.8832812 0 -0.5034862 0.8640034 0 -0.5034862 0.8640034 0 -0.5034862 0.8640034 0 -0.5034862 0.8640034 0 -0.5644746 0.8254504 0 -0.5644746 0.8254504 0 -0.5644746 0.8254504 0 -0.5644746 0.8254504 0 -0.6203476 0.7843271 0 -0.6203476 0.7843271 0 -0.6203476 0.7843271 0 -0.6203476 0.7843271 0 -0.6446144 0.7645078 0 -0.6446144 0.7645078 0 -0.6446144 0.7645078 0 -0.6446144 0.7645078 0 -0.700707 0.7134492 0 -0.700707 0.7134492 0 -0.700707 0.7134492 0 -0.700707 0.7134492 0 -0.8882202 0.4594181 0 -0.8882202 0.4594181 0 -0.8882202 0.4594181 0 -0.8882202 0.4594181 0 -0.9968349 0.07950094 0 -0.9968349 0.07950094 0 -0.9968349 0.07950094 0 -0.9968349 0.07950094 0 -0.9718141 -0.2357487 0 -0.9718141 -0.2357487 0 -0.9718141 -0.2357487 0 -0.9718141 -0.2357487 0 -0.7055826 -0.7086278 0 -0.7055826 -0.7086278 0 -0.7055826 -0.7086278 0 -0.7055826 -0.7086278 0 -0.2551523 -0.966901 0 -0.2551523 -0.966901 0 -0.2551523 -0.966901 0 -0.2551523 -0.966901 0 0.004614495 -0.9999894 0 0.004614495 -0.9999894 0 0.004614495 -0.9999894 0 0.004614495 -0.9999894 0 0.1891878 -0.981941 0 0.1891878 -0.981941 0 0.1891878 -0.981941 0 0.1891878 -0.981941 0 0.4656128 -0.8849885 0 0.4656128 -0.8849885 0 0.4656128 -0.8849885 0 0.4656128 -0.8849885 0 0.596611 -0.8025306 0 0.596611 -0.8025306 0 0.596611 -0.8025306 0 0.596611 -0.8025306 0 0.6081234 -0.7938425 0 0.6081234 -0.7938425 0 0.6081234 -0.7938425 0 0.6081234 -0.7938425 0 0.606371 -0.7951819 0 0.606371 -0.7951819 0 0.606371 -0.7951819 0 0.606371 -0.7951819 0 0.6321024 -0.7748849 0 0.6321024 -0.7748849 0 0.6321024 -0.7748849 0 0.6321024 -0.7748849 0 0.4552524 -0.8903624 0 0.4552524 -0.8903624 0 0.4552524 -0.8903624 0 0.4552524 -0.8903624 0 0.3732617 -0.9277261 0 0.3732617 -0.9277261 0 0.3732617 -0.9277261 0 0.3732617 -0.9277261 0 0.1989317 -0.9800134 0 0.1989317 -0.9800134 0 0.1989317 -0.9800134 0 0.1989317 -0.9800134 0 0.08928158 -0.9960065 0 0.08928158 -0.9960065 0 0.08928158 -0.9960065 0 0.08928158 -0.9960065 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.2611749 0.9652915 0 0.2611749 0.9652915 0 0.2611749 0.9652915 0 0.2611749 0.9652915 0 0.2491376 0.9684681 0 0.2491376 0.9684681 0 0.2491376 0.9684681 0 0.2491376 0.9684681 0 0.2451658 0.9694812 0 0.2451658 0.9694812 0 0.2451658 0.9694812 0 0.2451658 0.9694812 0 -0.6141229 -0.7892105 0 -0.6141229 -0.7892105 0 -0.6141229 -0.7892105 0 -0.6141229 -0.7892105 0 -0.4552529 -0.8903622 0 -0.4552529 -0.8903622 0 -0.4552529 -0.8903622 0 -0.4552529 -0.8903622 0 -0.3732619 -0.9277261 0 -0.3732619 -0.9277261 0 -0.3732619 -0.9277261 0 -0.3732619 -0.9277261 0 -0.1989318 -0.9800134 0 -0.1989318 -0.9800134 0 -0.1989318 -0.9800134 0 -0.1989318 -0.9800134 0 -0.08928148 -0.9960064 0 -0.08928148 -0.9960064 0 -0.08928148 -0.9960064 0 -0.08928148 -0.9960064 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2508867 0.9680165 0 -0.2508867 0.9680165 0 -0.2508867 0.9680165 0 -0.2508867 0.9680165 0 -0.245603 0.9693705 0 -0.245603 0.9693705 0 -0.245603 0.9693705 0 -0.245603 0.9693705 0 -0.244893 0.9695502 0 -0.244893 0.9695502 0 -0.244893 0.9695502 0 -0.244893 0.9695502 0 0.6321021 -0.7748852 0 0.6321021 -0.7748852 0 0.6321021 -0.7748852 0 0.6321021 -0.7748852 0 0.4552528 -0.8903623 0 0.4552528 -0.8903623 0 0.4552528 -0.8903623 0 0.4552528 -0.8903623 0 0.3732619 -0.927726 0 0.3732619 -0.927726 0 0.3732619 -0.927726 0 0.3732619 -0.927726 0 0.1989318 -0.9800134 0 0.1989318 -0.9800134 0 0.1989318 -0.9800134 0 0.1989318 -0.9800134 0 0.08928148 -0.9960065 0 0.08928148 -0.9960065 0 0.08928148 -0.9960065 0 0.08928148 -0.9960065 0 -0.2465193 0.9691378 4.84216e-4 -0.2465193 0.9691378 4.84216e-4 -0.2465193 0.9691378 4.84216e-4 -0.2465193 0.9691378 4.84216e-4 0.2499969 0.9682461 0.001039706 0.2499969 0.9682461 0.001039706 0.2499969 0.9682461 0.001039706 0.2499969 0.9682461 0.001039706 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.3580544 0.9139379 -0.1910885 0.3580544 0.9139379 -0.1910885 0.3580544 0.9139379 -0.1910885 -0.3480721 0.9243929 -0.1560246 -0.3480721 0.9243929 -0.1560246 -0.3480721 0.9243929 -0.1560246 -0.9999994 0.00117396 0 -0.9999994 0.00117396 0 -0.9999994 0.00117396 0 -0.9999994 0.00117396 0 1 0 0 1 0 0 1 0 0 0.9999994 0.001178192 0 0.9999994 0.001178192 0 0.9999994 0.001178192 0 0.9999994 0.001178192 0 -1 0 0 -1 0 0 -1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pumpHousingBracketShape2-normals-array\" count=\"531\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pumpHousingBracketShape2-map1\" name=\"pumpHousingBracketShape2-map1\">\r\n          <float_array id=\"pumpHousingBracketShape2-map1-array\" count=\"280\">0.4999999 0.4842306 0.4855601 0.485525 0.4878417 0.4580408 0.4999999 0.4573678 0.6379269 0.5150975 0.6414653 0.5219384 0.642055 0.5293332 0.6402435 0.5368009 0.4729192 0.488091 0.4750152 0.4592696 0.4474755 0.4997578 0.4509743 0.4641218 0.463405 0.4611625 0.4605961 0.4930491 0.4362465 0.5084957 0.4362952 0.4683326 0.4192767 0.5218697 0.4274201 0.4718097 0.4080945 0.5304358 0.4166467 0.4765259 0.3991811 0.5370622 0.4055058 0.4824394 0.3912401 0.5412401 0.3950625 0.4885252 0.3816839 0.5430813 0.3846008 0.4956793 0.3717448 0.5431272 0.3751357 0.5031655 0.3640781 0.5411041 0.3686781 0.5086104 0.3597564 0.5368009 0.362073 0.5150975 0.3579448 0.5293332 0.3585346 0.5219384 0.5121583 0.4580408 0.5144398 0.485525 0.5249847 0.4592696 0.5270807 0.488091 0.5365949 0.4611625 0.5394038 0.4930491 0.5490255 0.4641218 0.5525244 0.4997578 0.5639216 0.4685494 0.5639703 0.5090946 0.5725797 0.4718097 0.5807232 0.5218697 0.5833532 0.4765259 0.5919055 0.5304358 0.5944941 0.4824394 0.6008189 0.5370622 0.6049374 0.4885252 0.6087599 0.5412401 0.6153991 0.4956793 0.6183159 0.5430813 0.6248642 0.5031655 0.6282551 0.5431272 0.6313218 0.5086104 0.6359218 0.5411041 0.6379269 0.5150975 0.6402435 0.5368009 0.642055 0.5293332 0.6414653 0.5219384 0.4192767 0.5218697 0.4274201 0.4718097 0.4166467 0.4765259 0.4080945 0.5304358 0.4055058 0.4824394 0.3991811 0.5370622 0.3950625 0.4885252 0.3912401 0.5412401 0.3846008 0.4956793 0.3816839 0.5430813 0.3751357 0.5031655 0.3717448 0.5431272 0.3686781 0.5086104 0.3640781 0.5411041 0.362073 0.5150975 0.3597564 0.5368009 0.3585346 0.5219384 0.3579448 0.5293332 0.5725797 0.4718097 0.5807232 0.5218697 0.5919055 0.5304358 0.5833532 0.4765259 0.6008189 0.5370622 0.5944941 0.4824394 0.6087599 0.5412401 0.6049374 0.4885252 0.6183159 0.5430813 0.6153991 0.4956793 0.6248642 0.5031655 0.6282551 0.5431272 0.6359218 0.5411041 0.6313218 0.5086104 0.4878417 0.4568727 0.4999999 0.4568727 0.471159 0.4568727 0.463405 0.4589707 0.4509743 0.4621684 0.4362952 0.4658792 0.4362465 0.5084957 0.4474755 0.4997578 0.4605961 0.4930491 0.4729192 0.488091 0.4855601 0.485525 0.4999999 0.4842306 0.5121583 0.4568727 0.5258526 0.4568728 0.5365949 0.4596569 0.5490255 0.4628063 0.5639216 0.4665688 0.5639703 0.5090946 0.5525244 0.4997578 0.5394038 0.4930491 0.5270807 0.488091 0.5144398 0.485525 0.4362952 0.4683326 0.5639216 0.4685494 0.4878417 0.4568727 0.4999999 0.4568727 0.471159 0.4568727 0.463405 0.4589707 0.4509743 0.4621684 0.4362952 0.4658861 0.4474755 0.4997578 0.4362465 0.5084957 0.4605961 0.4930491 0.4729192 0.488091 0.4855601 0.485525 0.4999999 0.4842306 0.5121583 0.4568727 0.5258526 0.4568728 0.5365949 0.4596569 0.5490255 0.4628063 0.5639216 0.4665688 0.5639703 0.5090946 0.5525244 0.4997578 0.5394038 0.4930491 0.5270807 0.488091 0.5144398 0.485525</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pumpHousingBracketShape2-map1-array\" count=\"140\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pumpHousingBracketShape2-vertices\" name=\"pumpHousingBracketShape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pumpHousingBracketShape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert4SG\" count=\"134\">\r\n          <input semantic=\"VERTEX\" source=\"#pumpHousingBracketShape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pumpHousingBracketShape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pumpHousingBracketShape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 3 3 4 3 4 3</vcount>\r\n          <p>0 0 0 29 1 1 2 2 2 1 3 3 42 4 4 43 5 5 44 6 6 45 7 7 29 8 1 28 9 8 3 10 9 2 11 2 26 12 10 5 13 11 4 14 12 27 15 13 4 16 12 3 17 9 28 18 8 27 19 13 26 20 10 25 21 14 6 22 15 5 23 11 25 24 14 24 25 16 7 26 17 6 27 15 24 28 16 23 29 18 8 30 19 7 31 17 23 32 18 22 33 20 9 34 21 8 35 19 22 36 20 21 37 22 10 38 23 9 39 21 21 40 22 20 41 24 11 42 25 10 43 23 20 44 24 19 45 26 12 46 27 11 47 25 19 48 26 18 49 28 13 50 29 12 51 27 18 52 28 17 53 30 14 54 31 13 55 29 17 56 30 16 57 32 15 58 33 14 59 31 0 60 0 1 61 3 30 62 34 57 63 35 30 64 34 31 65 36 56 66 37 57 67 35 31 68 36 32 69 38 55 70 39 56 71 37 32 72 38 33 73 40 54 74 41 55 75 39 33 76 40 34 77 42 53 78 43 54 79 41 34 80 42 35 81 44 52 82 45 53 83 43 35 84 44 36 85 46 51 86 47 52 87 45 36 88 46 37 89 48 50 90 49 51 91 47 37 92 48 38 93 50 49 94 51 50 95 49 38 96 50 39 97 52 48 98 53 49 99 51 40 100 54 47 101 55 48 102 53 39 103 52 40 104 54 41 105 56 46 106 57 47 107 55 41 108 56 42 109 4 45 110 7 46 111 57 100 112 58 103 113 59 102 114 60 101 115 61 82 116 62 65 117 63 66 118 64 81 119 65 81 120 65 66 121 64 67 122 66 80 123 67 80 124 67 67 125 66 68 126 68 79 127 69 79 128 69 68 129 68 69 130 70 78 131 71 78 132 71 69 133 70 70 134 72 77 135 73 77 136 73 70 137 72 71 138 74 76 139 75 76 140 75 71 141 74 72 142 76 75 143 77 75 144 77 72 145 76 73 146 78 74 147 79 93 148 80 110 149 81 109 150 82 94 151 83 94 152 83 109 153 82 108 154 84 95 155 85 95 156 85 108 157 84 107 158 86 96 159 87 96 160 87 107 161 86 106 162 88 97 163 89 98 164 90 97 165 89 106 166 88 105 167 91 98 168 90 105 169 91 104 170 92 99 171 93 99 172 93 104 173 92 103 174 59 100 175 58 1 176 3 2 177 2 60 178 94 59 179 95 2 180 2 3 181 9 61 182 96 60 183 94 3 184 9 4 185 12 62 186 97 61 187 96 4 188 12 5 189 11 63 190 98 62 191 97 5 192 11 6 193 15 64 194 99 63 195 98 6 196 15 7 197 17 65 198 63 64 199 99 7 200 17 8 201 19 66 202 64 65 203 63 8 204 19 9 205 21 67 206 66 66 207 64 9 208 21 10 209 23 68 210 68 67 211 66 10 212 23 11 213 25 69 214 70 68 215 68 11 216 25 12 217 27 70 218 72 69 219 70 12 220 27 13 221 29 71 222 74 70 223 72 13 224 29 14 225 31 72 226 76 71 227 74 14 228 31 15 229 33 73 230 78 72 231 76 15 232 33 16 233 32 74 234 79 73 235 78 16 236 32 17 237 30 75 238 77 74 239 79 17 240 30 18 241 28 76 242 75 75 243 77 18 244 28 19 245 26 77 246 73 76 247 75 19 248 26 20 249 24 78 250 71 77 251 73 20 252 24 21 253 22 79 254 69 78 255 71 21 256 22 22 257 20 80 258 67 79 259 69 22 260 20 23 261 18 81 262 65 80 263 67 23 264 18 24 265 16 82 266 62 81 267 65 24 268 16 25 269 14 83 270 100 82 271 62 25 272 14 26 273 10 84 274 101 83 275 100 26 276 10 27 277 13 85 278 102 84 279 101 27 280 13 28 281 8 86 282 103 85 283 102 28 284 8 29 285 1 87 286 104 86 287 103 29 288 1 0 289 0 58 290 105 87 291 104 30 292 34 1 293 3 59 294 95 88 295 106 31 296 36 30 297 34 88 298 106 89 299 107 32 300 38 31 301 36 89 302 107 90 303 108 33 304 40 32 305 38 90 306 108 91 307 109 34 308 42 33 309 40 91 310 109 92 311 110 35 312 44 34 313 42 92 314 110 93 315 80 36 316 46 35 317 44 93 318 80 94 319 83 37 320 48 36 321 46 94 322 83 95 323 85 38 324 50 37 325 48 95 326 85 96 327 87 39 328 52 38 329 50 96 330 87 97 331 89 40 332 54 39 333 52 97 334 89 98 335 90 41 336 56 40 337 54 98 338 90 99 339 93 42 340 4 41 341 56 99 342 93 100 343 58 43 344 5 42 345 4 100 346 58 101 347 61 44 348 6 43 349 5 101 350 61 102 351 60 45 352 7 44 353 6 102 354 60 103 355 59 46 356 57 45 357 7 103 358 59 104 359 92 47 360 55 46 361 57 104 362 92 105 363 91 48 364 53 47 365 55 105 366 91 106 367 88 49 368 51 48 369 53 106 370 88 107 371 86 50 372 49 49 373 51 107 374 86 108 375 84 51 376 47 50 377 49 108 378 84 109 379 82 52 380 45 51 381 47 109 382 82 110 383 81 53 384 43 52 385 45 110 386 81 111 387 111 54 388 41 53 389 43 111 390 111 112 391 112 55 392 39 54 393 41 112 394 112 113 395 113 56 396 37 55 397 39 113 398 113 114 399 114 57 400 35 56 401 37 114 402 114 115 403 115 0 404 0 57 405 35 115 406 115 58 407 105 83 408 100 116 409 116 65 410 63 82 411 62 93 412 80 117 413 117 111 414 111 110 415 81 59 416 95 60 417 94 119 418 118 118 419 119 60 420 94 61 421 96 120 422 120 119 423 118 61 424 96 62 425 97 121 426 121 120 427 120 62 428 97 63 429 98 122 430 122 121 431 121 63 432 98 64 433 99 123 434 123 122 435 122 83 436 100 84 437 101 125 438 124 124 439 125 84 440 101 85 441 102 126 442 126 125 443 124 85 444 102 86 445 103 127 446 127 126 447 126 86 448 103 87 449 104 128 450 128 127 451 127 87 452 104 58 453 105 129 454 129 128 455 128 88 456 106 59 457 95 118 458 119 130 459 130 89 460 107 88 461 106 130 462 130 131 463 131 90 464 108 89 465 107 131 466 131 132 467 132 91 468 109 90 469 108 132 470 132 133 471 133 92 472 110 91 473 109 133 474 133 134 475 134 112 476 112 111 477 111 135 478 135 136 479 136 113 480 113 112 481 112 136 482 136 137 483 137 114 484 114 113 485 113 137 486 137 138 487 138 115 488 115 114 489 114 138 490 138 139 491 139 58 492 105 115 493 115 139 494 139 129 495 129 132 496 132 131 497 131 134 498 134 133 499 133 120 500 120 121 501 121 122 502 122 123 503 123 118 504 119 119 505 118 130 506 130 131 507 131 130 508 130 119 509 118 120 510 120 65 511 63 116 512 116 64 513 99 93 514 80 92 515 110 117 516 117 117 517 117 134 518 134 135 519 135 111 520 111 64 521 99 116 522 116 123 523 123 83 524 100 124 525 125 123 526 123 116 527 116 117 528 117 92 529 110 134 530 134</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pumpHousingBracketShape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"shaft_uShape\" name=\"shaft_uShape\">\r\n      <mesh>\r\n        <source id=\"shaft_uShape-positions\" name=\"shaft_uShape-positions\">\r\n          <float_array id=\"shaft_uShape-positions-array\" count=\"1122\">-0.7804233 -1.000356 -0.5775557 -0.7804233 -0.5775557 -1.000356 -0.7804233 0 -1.155111 -0.7804233 0.5775557 -1.000356 -0.7804233 1.000356 -0.5775557 -0.7804233 1.155111 0 -0.7804233 1.000356 0.5775557 -0.7804233 0.5775557 1.000356 -0.7804233 0 1.155111 -0.7804233 -0.5775557 1.000356 -0.7804233 -1.000356 0.5775557 -0.7804233 -1.155111 0 0.7804233 -1.000356 -0.5775557 0.7804233 -0.5775557 -1.000356 0.7804233 0 -1.155111 0.7804233 0.5775557 -1.000356 0.7804233 1.000356 -0.5775557 0.7804233 1.155111 0 0.7804233 1.000356 0.5775557 0.7804233 0.5775557 1.000356 0.7804233 0 1.155111 0.7804233 -0.5775557 1.000356 0.7804233 -1.000356 0.5775557 0.7804233 -1.155111 0 0.7804233 0 0 -0.9391534 -1.405364 -0.8113873 -0.9391534 -0.8113873 -1.405364 -0.9391534 0 -1.622775 -0.9391534 0.8113873 -1.405364 -0.9391534 1.405364 -0.8113873 -0.9391534 1.622775 0 -0.9391534 1.405364 0.8113873 -0.9391534 0.8113873 1.405364 -0.9391534 0 1.622775 -0.9391534 -0.8113873 1.405364 -0.9391534 -1.405364 0.8113873 -0.9391534 -1.622775 0 -4.404786 -1.405364 -0.8113873 -4.404786 -0.8113873 -1.405364 -4.404786 0 -1.622775 -4.404786 0.8113873 -1.405364 -4.404786 1.405364 -0.8113873 -4.404786 1.622775 0 -4.404786 1.405364 0.8113873 -4.404786 0.8113873 1.405364 -4.404786 0 1.622775 -4.404786 -0.8113873 1.405364 -4.404786 -1.405364 0.8113873 -4.404786 -1.622775 0 -4.662065 -1.12965 -0.652204 -4.662065 -0.652204 -1.12965 -4.662065 0 -1.304408 -4.662065 0.652204 -1.12965 -4.662065 1.12965 -0.652204 -4.662065 1.304408 0 -4.662065 1.12965 0.652204 -4.662065 0.652204 1.12965 -4.662065 0 1.304408 -4.662065 -0.652204 1.12965 -4.662065 -1.12965 0.652204 -4.662065 -1.304408 0 -6.461221 -1.12965 -0.652204 -6.461221 -0.652204 -1.12965 -6.461221 0 -1.304408 -6.461221 0.652204 -1.12965 -6.461221 1.12965 -0.652204 -6.461221 1.304408 0 -6.461221 1.12965 0.652204 -6.461221 0.652204 1.12965 -6.461221 0 1.304408 -6.461221 -0.652204 1.12965 -6.461221 -1.12965 0.652204 -6.461221 -1.304408 0 -6.461221 -1.22812 -0.7090552 -6.461221 -0.7090552 -1.22812 -6.461221 0 -1.41811 -6.461221 0.7090552 -1.22812 -6.461221 1.22812 -0.7090552 -6.461221 1.41811 0 -6.461221 1.22812 0.7090552 -6.461221 0.7090552 1.22812 -6.461221 0 1.41811 -6.461221 -0.7090552 1.22812 -6.461221 -1.22812 0.7090552 -6.461221 -1.41811 0 -6.589861 -1.22812 -0.7090552 -6.589861 -0.7090552 -1.22812 -6.589861 0 -1.41811 -6.589861 0.7090552 -1.22812 -6.589861 1.22812 -0.7090552 -6.589861 1.41811 0 -6.589861 1.22812 0.7090552 -6.589861 0.7090552 1.22812 -6.589861 0 1.41811 -6.589861 -0.7090552 1.22812 -6.589861 -1.22812 0.7090552 -6.589861 -1.41811 0 -6.589861 -1.720465 -0.9933112 -6.589861 -0.9933112 -1.720465 -6.589861 0 -1.986622 -6.589861 0.9933112 -1.720465 -6.589861 1.720465 -0.9933112 -6.589861 1.986622 0 -6.589861 1.720465 0.9933112 -6.589861 0.9933112 1.720465 -6.589861 0 1.986622 -6.589861 -0.9933112 1.720465 -6.589861 -1.720465 0.9933112 -6.589861 -1.986622 0 -6.674973 -1.785616 -1.030926 -6.674973 -1.030926 -1.785616 -6.674973 0 -2.061852 -6.674973 1.030926 -1.785616 -6.674973 1.785616 -1.030926 -6.674973 2.061852 0 -6.674973 1.785616 1.030926 -6.674973 1.030926 1.785616 -6.674973 0 2.061852 -6.674973 -1.030926 1.785616 -6.674973 -1.785616 1.030926 -6.674973 -2.061852 0 -9.216881 -1.785616 -1.030926 -9.216881 -1.030926 -1.785616 -9.216881 0 -2.061852 -9.216881 1.030926 -1.785616 -9.216881 1.785616 -1.030926 -9.216881 2.061852 0 -9.216881 1.785616 1.030926 -9.216881 1.030926 1.785616 -9.216881 0 2.061852 -9.216881 -1.030926 1.785616 -9.216881 -1.785616 1.030926 -9.216881 -2.061852 0 -9.318738 -1.671029 -0.9647692 -9.318738 -0.9647692 -1.671029 -9.318738 0 -1.929538 -9.318738 0.9647692 -1.671029 -9.318738 1.671029 -0.9647692 -9.318738 1.929538 0 -9.318738 1.671029 0.9647692 -9.318738 0.9647692 1.671029 -9.318738 0 1.929538 -9.318738 -0.9647692 1.671029 -9.318738 -1.671029 0.9647692 -9.318738 -1.929538 0 -9.420595 -1.785616 -1.030926 -9.420595 -1.030926 -1.785616 -9.420595 0 -2.061852 -9.420595 1.030926 -1.785616 -9.420595 1.785616 -1.030926 -9.420595 2.061852 0 -9.420595 1.785616 1.030926 -9.420595 1.030926 1.785616 -9.420595 0 2.061852 -9.420595 -1.030926 1.785616 -9.420595 -1.785616 1.030926 -9.420595 -2.061852 0 -10.23442 -1.785616 -1.030926 -10.23442 -1.030926 -1.785616 -10.23442 0 -2.061852 -10.23442 1.030926 -1.785616 -10.23442 1.785616 -1.030926 -10.23442 2.061852 0 -10.23442 1.785616 1.030926 -10.23442 1.030926 1.785616 -10.23442 0 2.061852 -10.23442 -1.030926 1.785616 -10.23442 -1.785616 1.030926 -10.23442 -2.061852 0 -10.23442 -2.014323 -1.16297 -10.23442 -1.16297 -2.014323 -10.23442 0 -2.32594 -10.23442 1.16297 -2.014323 -10.23442 2.014323 -1.16297 -10.23442 2.32594 0 -10.23442 2.014323 1.16297 -10.23442 1.16297 2.014323 -10.23442 0 2.32594 -10.23442 -1.16297 2.014323 -10.23442 -2.014323 1.16297 -10.23442 -2.32594 0 -12.89544 -2.014323 -1.16297 -12.89544 -1.16297 -2.014323 -12.89544 0 -2.32594 -12.89544 1.16297 -2.014323 -12.89544 2.014323 -1.16297 -12.89544 2.32594 0 -12.89544 2.014323 1.16297 -12.89544 1.16297 2.014323 -12.89544 0 2.32594 -12.89544 -1.16297 2.014323 -12.89544 -2.014323 1.16297 -12.89544 -2.32594 0 -12.72567 -2.201446 -1.271006 -12.72567 -1.271006 -2.201446 -12.72567 0 -2.542011 -12.72567 1.271006 -2.201446 -12.72567 2.201446 -1.271006 -12.72567 2.542011 0 -12.72567 2.201446 1.271006 -12.72567 1.271006 2.201446 -12.72567 0 2.542011 -12.72567 -1.271006 2.201446 -12.72567 -2.201446 1.271006 -12.72567 -2.542011 0 -12.48801 -2.991522 -1.727156 -12.48801 -1.727156 -2.991522 -12.48801 0 -3.454313 -12.48801 1.727156 -2.991522 -12.48801 2.991522 -1.727156 -12.48801 3.454313 0 -12.48801 2.991522 1.727156 -12.48801 1.727156 2.991522 -12.48801 0 3.454313 -12.48801 -1.727156 2.991522 -12.48801 -2.991522 1.727156 -12.48801 -3.454313 0 -13.02913 -2.991522 -1.727156 -13.02913 -1.727156 -2.991522 -13.02913 0 -3.454313 -13.02913 1.727156 -2.991522 -13.02913 2.991522 -1.727156 -13.02913 3.454313 0 -13.02913 2.991522 1.727156 -13.02913 1.727156 2.991522 -13.02913 0 3.454313 -13.02913 -1.727156 2.991522 -13.02913 -2.991522 1.727156 -13.02913 -3.454313 0 -13.02913 -2.40936 -1.391045 -13.02913 -1.391045 -2.40936 -13.02913 0 -2.782091 -13.02913 1.391045 -2.40936 -13.02913 2.40936 -1.391045 -13.02913 2.782091 0 -13.02913 2.40936 1.391045 -13.02913 1.391045 2.40936 -13.02913 0 2.782091 -13.02913 -1.391045 2.40936 -13.02913 -2.40936 1.391045 -13.02913 -2.782091 0 -19.79202 -2.40936 -1.391045 -19.79202 -1.391045 -2.40936 -19.79202 0 -2.782091 -19.79202 1.391045 -2.40936 -19.79202 2.40936 -1.391045 -19.79202 2.782091 0 -19.79202 2.40936 1.391045 -19.79202 1.391045 2.40936 -19.79202 0 2.782091 -19.79202 -1.391045 2.40936 -19.79202 -2.40936 1.391045 -19.79202 -2.782091 0 -21.25197 -2.40936 -1.391045 -21.25197 -1.391045 -2.40936 -21.25197 0 -2.782091 -21.25197 1.391045 -2.40936 -21.25197 2.40936 -1.391045 -21.25197 2.782091 0 -21.25197 2.40936 1.391045 -21.25197 1.391045 2.40936 -21.25197 0 2.782091 -21.25197 -1.391045 2.40936 -21.25197 -2.40936 1.391045 -21.25197 -2.782091 0 -21.25197 -2.243029 -1.295014 -21.25197 -1.295014 -2.243029 -21.25197 0 -2.590027 -21.25197 1.295014 -2.243029 -21.25197 2.243029 -1.295014 -21.25197 2.590027 0 -21.25197 2.243029 1.295014 -21.25197 1.295014 2.243029 -21.25197 0 2.590027 -21.25197 -1.295014 2.243029 -21.25197 -2.243029 1.295014 -21.25197 -2.590027 0 -24.65122 -2.243029 -1.295014 -24.65122 -1.295014 -2.243029 -24.65122 0 -2.590027 -24.65122 1.295014 -2.243029 -24.65122 2.243029 -1.295014 -24.65122 2.590027 0 -24.65122 2.243029 1.295014 -24.65122 1.295014 2.243029 -24.65122 0 2.590027 -24.65122 -1.295014 2.243029 -24.65122 -2.243029 1.295014 -24.65122 -2.590027 0 -24.65122 -1.660867 -0.9589024 -24.65122 -0.9589024 -1.660867 -24.65122 0 -1.917805 -24.65122 0.9589024 -1.660867 -24.65122 1.660867 -0.9589024 -24.65122 1.917805 0 -24.65122 1.660867 0.9589024 -24.65122 0.9589024 1.660867 -24.65122 0 1.917805 -24.65122 -0.9589024 1.660867 -24.65122 -1.660867 0.9589024 -24.65122 -1.917805 0 -30.23496 -1.660867 -0.9589024 -30.23496 -0.9589024 -1.660867 -30.23496 0 -1.917805 -30.23496 0.9589024 -1.660867 -30.23496 1.660867 -0.9589024 -30.23496 1.917805 0 -30.23496 1.660867 0.9589024 -30.23496 0.9589024 1.660867 -30.23496 0 1.917805 -30.23496 -0.9589024 1.660867 -30.23496 -1.660867 0.9589024 -30.23496 -1.917805 0 -30.8461 -1.660867 -0.9589024 -30.8461 -0.9589024 -1.660867 -30.8461 0 -1.917805 -30.8461 0.9589024 -1.660867 -30.8461 1.660867 -0.9589024 -30.8461 1.917805 0 -30.8461 1.660867 0.9589024 -30.8461 0.9589024 1.660867 -30.8461 0 1.917805 -30.8461 -0.9589024 1.660867 -30.8461 -1.660867 0.9589024 -30.8461 -1.917805 0 -30.8461 -1.452952 -0.8388627 -30.8461 -0.8388627 -1.452952 -30.8461 0 -1.677725 -30.8461 0.8388627 -1.452952 -30.8461 1.452952 -0.8388627 -30.8461 1.677725 0 -30.8461 1.452952 0.8388627 -30.8461 0.8388627 1.452952 -30.8461 0 1.677725 -30.8461 -0.8388627 1.452952 -30.8461 -1.452952 0.8388627 -30.8461 -1.677725 0 -37.76036 -1.452952 -0.8388627 -37.76036 -0.8388627 -1.452952 -37.76036 0 -1.677725 -37.76036 0.8388627 -1.452952 -37.76036 1.452952 -0.8388627 -37.76036 1.677725 0 -37.76036 1.452952 0.8388627 -37.76036 0.8388627 1.452952 -37.76036 0 1.677725 -37.76036 -0.8388627 1.452952 -37.76036 -1.452952 0.8388627 -37.76036 -1.677725 0 -38.03197 -1.28662 -0.7428309 -38.03197 -0.7428309 -1.28662 -38.03197 0 -1.485662 -38.03197 0.7428309 -1.28662 -38.03197 1.28662 -0.7428309 -38.03197 1.485662 0 -38.03197 1.28662 0.7428309 -38.03197 0.7428309 1.28662 -38.03197 0 1.485662 -38.03197 -0.7428309 1.28662 -38.03197 -1.28662 0.7428309 -38.03197 -1.485662 0 -45.96291 -1.28662 -0.7428309 -45.96291 -0.7428309 -1.28662 -45.96291 0 0 -45.96291 0 -1.485662 -45.96291 0.7428309 -1.28662 -45.96291 1.28662 -0.7428309 -45.96291 1.485662 0 -45.96291 1.28662 0.7428309 -45.96291 0.7428309 1.28662 -45.96291 0 1.485662 -45.96291 -0.7428309 1.28662 -45.96291 -1.28662 0.7428309 -45.96291 -1.485662 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#shaft_uShape-positions-array\" count=\"374\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"shaft_uShape-normals\" name=\"shaft_uShape-normals\">\r\n          <float_array id=\"shaft_uShape-normals-array\" count=\"4398\">0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9434505 -0.2344156 -0.2344156 0.9434505 -0.2344156 -0.2344156 0.9434505 -0.2344156 -0.2344156 0.9434505 -0.2344156 -0.2344156 0.9434505 -0.08580203 -0.3202175 0.9434505 -0.08580203 -0.3202175 0.9434505 -0.08580203 -0.3202175 0.9434505 -0.08580203 -0.3202175 0.9434505 0.08580203 -0.3202175 0.9434505 0.08580203 -0.3202175 0.9434505 0.08580203 -0.3202175 0.9434505 0.08580203 -0.3202175 0.9434505 0.2344156 -0.2344156 0.9434505 0.2344156 -0.2344156 0.9434505 0.2344156 -0.2344156 0.9434505 0.2344156 -0.2344156 0.9434504 0.3202177 -0.08580205 0.9434504 0.3202177 -0.08580205 0.9434504 0.3202177 -0.08580205 0.9434504 0.3202177 -0.08580205 0.9434504 0.3202176 0.08580205 0.9434504 0.3202176 0.08580205 0.9434504 0.3202176 0.08580205 0.9434504 0.3202176 0.08580205 0.9434505 0.2344156 0.2344156 0.9434505 0.2344156 0.2344156 0.9434505 0.2344156 0.2344156 0.9434505 0.2344156 0.2344156 0.9434505 0.08580203 0.3202175 0.9434505 0.08580203 0.3202175 0.9434505 0.08580203 0.3202175 0.9434505 0.08580203 0.3202175 0.9434505 -0.08580203 0.3202175 0.9434505 -0.08580203 0.3202175 0.9434505 -0.08580203 0.3202175 0.9434505 -0.08580203 0.3202175 0.9434505 -0.2344156 0.2344156 0.9434505 -0.2344156 0.2344156 0.9434505 -0.2344156 0.2344156 0.9434505 -0.2344156 0.2344156 0.9434504 -0.3202177 0.08580205 0.9434504 -0.3202177 0.08580205 0.9434504 -0.3202177 0.08580205 0.9434504 -0.3202177 0.08580205 0.9434504 -0.3202176 -0.08580205 0.9434504 -0.3202176 -0.08580205 0.9434504 -0.3202176 -0.08580205 0.9434504 -0.3202176 -0.08580205 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 -0.7669766 -0.453733 -0.4537327 -0.7669766 -0.453733 -0.4537327 -0.7669766 -0.453733 -0.4537327 -0.7669766 -0.453733 -0.4537327 -0.7669767 -0.1660781 -0.6198103 -0.7669767 -0.1660781 -0.6198103 -0.7669767 -0.1660781 -0.6198103 -0.7669767 -0.1660781 -0.6198103 -0.7669767 0.1660781 -0.6198104 -0.7669767 0.1660781 -0.6198104 -0.7669767 0.1660781 -0.6198104 -0.7669767 0.1660781 -0.6198104 -0.7669767 0.4537329 -0.4537328 -0.7669767 0.4537329 -0.4537328 -0.7669767 0.4537329 -0.4537328 -0.7669767 0.4537329 -0.4537328 -0.7669767 0.6198105 -0.1660777 -0.7669767 0.6198105 -0.1660777 -0.7669767 0.6198105 -0.1660777 -0.7669767 0.6198105 -0.1660777 -0.7669766 0.6198105 0.1660777 -0.7669766 0.6198105 0.1660777 -0.7669766 0.6198105 0.1660777 -0.7669766 0.6198105 0.1660777 -0.7669766 0.453733 0.4537327 -0.7669766 0.453733 0.4537327 -0.7669766 0.453733 0.4537327 -0.7669766 0.453733 0.4537327 -0.7669767 0.1660781 0.6198103 -0.7669767 0.1660781 0.6198103 -0.7669767 0.1660781 0.6198103 -0.7669767 0.1660781 0.6198103 -0.7669767 -0.1660781 0.6198104 -0.7669767 -0.1660781 0.6198104 -0.7669767 -0.1660781 0.6198104 -0.7669767 -0.1660781 0.6198104 -0.7669767 -0.4537329 0.4537328 -0.7669767 -0.4537329 0.4537328 -0.7669767 -0.4537329 0.4537328 -0.7669767 -0.4537329 0.4537328 -0.7669767 -0.6198105 0.1660777 -0.7669767 -0.6198105 0.1660777 -0.7669767 -0.6198105 0.1660777 -0.7669767 -0.6198105 0.1660777 -0.7669766 -0.6198105 -0.1660777 -0.7669766 -0.6198105 -0.1660777 -0.7669766 -0.6198105 -0.1660777 -0.7669766 -0.6198105 -0.1660777 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071064 -0.7071072 0 -0.7071064 -0.7071072 0 -0.7071064 -0.7071072 0 -0.7071064 -0.7071072 0 -0.2588196 -0.9659258 0 -0.2588196 -0.9659258 0 -0.2588196 -0.9659258 0 -0.2588196 -0.9659258 0 0.2588196 -0.9659258 0 0.2588196 -0.9659258 0 0.2588196 -0.9659258 0 0.2588196 -0.9659258 0 0.7071064 -0.7071072 0 0.7071064 -0.7071072 0 0.7071064 -0.7071072 0 0.7071064 -0.7071072 0 0.965926 -0.2588187 0 0.965926 -0.2588187 0 0.965926 -0.2588187 0 0.965926 -0.2588187 0 0.965926 0.2588187 0 0.965926 0.2588187 0 0.965926 0.2588187 0 0.965926 0.2588187 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.7071064 0.7071072 0 0.2588196 0.9659258 0 0.2588196 0.9659258 0 0.2588196 0.9659258 0 0.2588196 0.9659258 0 -0.2588196 0.9659258 0 -0.2588196 0.9659258 0 -0.2588196 0.9659258 0 -0.2588196 0.9659258 0 -0.7071064 0.7071072 0 -0.7071064 0.7071072 0 -0.7071064 0.7071072 0 -0.7071064 0.7071072 0 -0.965926 0.2588187 0 -0.965926 0.2588187 0 -0.965926 0.2588187 0 -0.965926 0.2588187 0 -0.965926 -0.2588187 0 -0.965926 -0.2588187 0 -0.965926 -0.2588187 0 -0.965926 -0.2588187 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.6493112 -0.5377703 -0.5377715 0.6493112 -0.5377703 -0.5377715 0.6493112 -0.5377703 -0.5377715 0.6493112 -0.5377703 -0.5377715 0.649311 -0.1968391 -0.7346085 0.649311 -0.1968391 -0.7346085 0.649311 -0.1968391 -0.7346085 0.649311 -0.1968391 -0.7346085 0.6493109 0.1968396 -0.7346085 0.6493109 0.1968396 -0.7346085 0.6493109 0.1968396 -0.7346085 0.6493109 0.1968396 -0.7346085 0.6493101 0.5377721 -0.5377709 0.6493101 0.5377721 -0.5377709 0.6493101 0.5377721 -0.5377709 0.6493101 0.5377721 -0.5377709 0.6493112 0.7346086 -0.1968379 0.6493112 0.7346086 -0.1968379 0.6493112 0.7346086 -0.1968379 0.6493112 0.7346086 -0.1968379 0.6493117 0.7346082 0.1968381 0.6493117 0.7346082 0.1968381 0.6493117 0.7346082 0.1968381 0.6493117 0.7346082 0.1968381 0.6493112 0.5377703 0.5377715 0.6493112 0.5377703 0.5377715 0.6493112 0.5377703 0.5377715 0.6493112 0.5377703 0.5377715 0.6493111 0.196839 0.7346084 0.6493111 0.196839 0.7346084 0.6493111 0.196839 0.7346084 0.6493111 0.196839 0.7346084 0.6493109 -0.1968396 0.7346085 0.6493109 -0.1968396 0.7346085 0.6493109 -0.1968396 0.7346085 0.6493109 -0.1968396 0.7346085 0.6493104 -0.5377715 0.5377711 0.6493104 -0.5377715 0.5377711 0.6493104 -0.5377715 0.5377711 0.6493104 -0.5377715 0.5377711 0.6493109 -0.7346089 0.1968382 0.6493109 -0.7346089 0.1968382 0.6493109 -0.7346089 0.1968382 0.6493109 -0.7346089 0.1968382 0.6493117 -0.7346081 -0.1968384 0.6493117 -0.7346081 -0.1968384 0.6493117 -0.7346081 -0.1968384 0.6493117 -0.7346081 -0.1968384 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 -0.7820227 -0.440704 -0.4407048 -0.7820227 -0.440704 -0.4407048 -0.7820227 -0.440704 -0.4407048 -0.7820227 -0.440704 -0.4407048 -0.7820228 -0.1613085 -0.6020134 -0.7820228 -0.1613085 -0.6020134 -0.7820228 -0.1613085 -0.6020134 -0.7820228 -0.1613085 -0.6020134 -0.7820228 0.1613085 -0.6020133 -0.7820228 0.1613085 -0.6020133 -0.7820228 0.1613085 -0.6020133 -0.7820228 0.1613085 -0.6020133 -0.7820223 0.4407048 -0.4407046 -0.7820223 0.4407048 -0.4407046 -0.7820223 0.4407048 -0.4407046 -0.7820223 0.4407048 -0.4407046 -0.7820202 0.6020167 -0.1613086 -0.7820202 0.6020167 -0.1613086 -0.7820202 0.6020167 -0.1613086 -0.7820202 0.6020167 -0.1613086 -0.7820213 0.602015 0.1613088 -0.7820213 0.602015 0.1613088 -0.7820213 0.602015 0.1613088 -0.7820213 0.602015 0.1613088 -0.7820227 0.440704 0.4407048 -0.7820227 0.440704 0.4407048 -0.7820227 0.440704 0.4407048 -0.7820227 0.440704 0.4407048 -0.7820228 0.1613085 0.6020134 -0.7820228 0.1613085 0.6020134 -0.7820228 0.1613085 0.6020134 -0.7820228 0.1613085 0.6020134 -0.7820228 -0.1613085 0.6020133 -0.7820228 -0.1613085 0.6020133 -0.7820228 -0.1613085 0.6020133 -0.7820228 -0.1613085 0.6020133 -0.7820223 -0.4407048 0.4407046 -0.7820223 -0.4407048 0.4407046 -0.7820223 -0.4407048 0.4407046 -0.7820223 -0.4407048 0.4407046 -0.7820202 -0.6020167 0.1613086 -0.7820202 -0.6020167 0.1613086 -0.7820202 -0.6020167 0.1613086 -0.7820202 -0.6020167 0.1613086 -0.7820213 -0.602015 -0.1613088 -0.7820213 -0.602015 -0.1613088 -0.7820213 -0.602015 -0.1613088 -0.7820213 -0.602015 -0.1613088 0.7820217 -0.4407062 -0.4407042 0.7820217 -0.4407062 -0.4407042 0.7820217 -0.4407062 -0.4407042 0.7820217 -0.4407062 -0.4407042 0.7820226 -0.1613092 -0.6020133 0.7820226 -0.1613092 -0.6020133 0.7820226 -0.1613092 -0.6020133 0.7820226 -0.1613092 -0.6020133 0.7820227 0.1613092 -0.6020133 0.7820227 0.1613092 -0.6020133 0.7820227 0.1613092 -0.6020133 0.7820227 0.1613092 -0.6020133 0.7820221 0.4407051 -0.4407045 0.7820221 0.4407051 -0.4407045 0.7820221 0.4407051 -0.4407045 0.7820221 0.4407051 -0.4407045 0.7820229 0.6020131 -0.1613091 0.7820229 0.6020131 -0.1613091 0.7820229 0.6020131 -0.1613091 0.7820229 0.6020131 -0.1613091 0.7820216 0.6020148 0.1613088 0.7820216 0.6020148 0.1613088 0.7820216 0.6020148 0.1613088 0.7820216 0.6020148 0.1613088 0.7820217 0.4407062 0.4407042 0.7820217 0.4407062 0.4407042 0.7820217 0.4407062 0.4407042 0.7820217 0.4407062 0.4407042 0.7820226 0.1613092 0.6020133 0.7820226 0.1613092 0.6020133 0.7820226 0.1613092 0.6020133 0.7820226 0.1613092 0.6020133 0.7820227 -0.1613092 0.6020133 0.7820227 -0.1613092 0.6020133 0.7820227 -0.1613092 0.6020133 0.7820227 -0.1613092 0.6020133 0.7820221 -0.4407051 0.4407045 0.7820221 -0.4407051 0.4407045 0.7820221 -0.4407051 0.4407045 0.7820221 -0.4407051 0.4407045 0.7820229 -0.6020131 0.1613091 0.7820229 -0.6020131 0.1613091 0.7820229 -0.6020131 0.1613091 0.7820229 -0.6020131 0.1613091 0.7820216 -0.6020148 -0.1613088 0.7820216 -0.6020148 -0.1613088 0.7820216 -0.6020148 -0.1613088 0.7820216 -0.6020148 -0.1613088 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588194 -0.9659258 0 -0.2588194 -0.9659258 0 -0.2588194 -0.9659258 0 -0.2588194 -0.9659258 0 0.2588194 -0.9659258 0 0.2588194 -0.9659258 0 0.2588194 -0.9659258 0 0.2588194 -0.9659258 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588194 0.9659258 0 0.2588194 0.9659258 0 0.2588194 0.9659258 0 0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071067 -0.7071069 0 -0.7071067 -0.7071069 0 -0.7071067 -0.7071069 0 -0.7071067 -0.7071069 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 -0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.2588193 -0.9659258 0 0.7071067 -0.7071069 0 0.7071067 -0.7071069 0 0.7071067 -0.7071069 0 0.7071067 -0.7071069 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.7071067 0.7071069 0 0.7071067 0.7071069 0 0.7071067 0.7071069 0 0.7071067 0.7071069 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.2588193 0.9659258 0 -0.7071067 0.7071069 0 -0.7071067 0.7071069 0 -0.7071067 0.7071069 0 -0.7071067 0.7071069 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 0.7757767 0.4461892 0.4461904 0.7757767 0.4461892 0.4461904 0.7757767 0.4461892 0.4461904 0.7757767 0.4461892 0.4461904 0.7757761 0.1633176 0.6095072 0.7757761 0.1633176 0.6095072 0.7757761 0.1633176 0.6095072 0.7757761 0.1633176 0.6095072 0.7757759 -0.1633182 0.6095071 0.7757759 -0.1633182 0.6095071 0.7757759 -0.1633182 0.6095071 0.7757759 -0.1633182 0.6095071 0.7757766 -0.4461893 0.4461903 0.7757766 -0.4461893 0.4461903 0.7757766 -0.4461893 0.4461903 0.7757766 -0.4461893 0.4461903 0.7757757 -0.6095077 0.1633169 0.7757757 -0.6095077 0.1633169 0.7757757 -0.6095077 0.1633169 0.7757757 -0.6095077 0.1633169 0.775775 -0.6095088 -0.1633168 0.775775 -0.6095088 -0.1633168 0.775775 -0.6095088 -0.1633168 0.775775 -0.6095088 -0.1633168 0.7757767 -0.4461892 -0.4461904 0.7757767 -0.4461892 -0.4461904 0.7757767 -0.4461892 -0.4461904 0.7757767 -0.4461892 -0.4461904 0.7757761 -0.1633176 -0.6095072 0.7757761 -0.1633176 -0.6095072 0.7757761 -0.1633176 -0.6095072 0.7757761 -0.1633176 -0.6095072 0.7757759 0.1633182 -0.6095071 0.7757759 0.1633182 -0.6095071 0.7757759 0.1633182 -0.6095071 0.7757759 0.1633182 -0.6095071 0.7757766 0.4461893 -0.4461903 0.7757766 0.4461893 -0.4461903 0.7757766 0.4461893 -0.4461903 0.7757766 0.4461893 -0.4461903 0.7757757 0.6095077 -0.1633169 0.7757757 0.6095077 -0.1633169 0.7757757 0.6095077 -0.1633169 0.7757757 0.6095077 -0.1633169 0.775775 0.6095088 0.1633168 0.775775 0.6095088 0.1633168 0.775775 0.6095088 0.1633168 0.775775 0.6095088 0.1633168 0.9655017 0.1841282 0.1841287 0.9655017 0.1841282 0.1841287 0.9655017 0.1841282 0.1841287 0.9655017 0.1841282 0.1841287 0.9655015 0.06739639 0.2515244 0.9655015 0.06739639 0.2515244 0.9655015 0.06739639 0.2515244 0.9655015 0.06739639 0.2515244 0.9655015 -0.06739639 0.2515244 0.9655015 -0.06739639 0.2515244 0.9655015 -0.06739639 0.2515244 0.9655015 -0.06739639 0.2515244 0.9655016 -0.1841285 0.1841286 0.9655016 -0.1841285 0.1841286 0.9655016 -0.1841285 0.1841286 0.9655016 -0.1841285 0.1841286 0.9655019 -0.2515232 0.06739592 0.9655019 -0.2515232 0.06739592 0.9655019 -0.2515232 0.06739592 0.9655019 -0.2515232 0.06739592 0.9655018 -0.2515235 -0.06739591 0.9655018 -0.2515235 -0.06739591 0.9655018 -0.2515235 -0.06739591 0.9655018 -0.2515235 -0.06739591 0.9655017 -0.1841282 -0.1841287 0.9655017 -0.1841282 -0.1841287 0.9655017 -0.1841282 -0.1841287 0.9655017 -0.1841282 -0.1841287 0.9655015 -0.06739639 -0.2515244 0.9655015 -0.06739639 -0.2515244 0.9655015 -0.06739639 -0.2515244 0.9655015 -0.06739639 -0.2515244 0.9655015 0.06739639 -0.2515244 0.9655015 0.06739639 -0.2515244 0.9655015 0.06739639 -0.2515244 0.9655015 0.06739639 -0.2515244 0.9655016 0.1841285 -0.1841286 0.9655016 0.1841285 -0.1841286 0.9655016 0.1841285 -0.1841286 0.9655016 0.1841285 -0.1841286 0.9655019 0.2515232 -0.06739592 0.9655019 0.2515232 -0.06739592 0.9655019 0.2515232 -0.06739592 0.9655019 0.2515232 -0.06739592 0.9655018 0.2515235 0.06739591 0.9655018 0.2515235 0.06739591 0.9655018 0.2515235 0.06739591 0.9655018 0.2515235 0.06739591 0 -0.7071074 -0.7071062 0 -0.7071074 -0.7071062 0 -0.7071074 -0.7071062 0 -0.7071074 -0.7071062 0 -0.2588198 -0.9659258 0 -0.2588198 -0.9659258 0 -0.2588198 -0.9659258 0 -0.2588198 -0.9659258 0 0.2588198 -0.9659258 0 0.2588198 -0.9659258 0 0.2588198 -0.9659258 0 0.2588198 -0.9659258 0 0.7071074 -0.7071062 0 0.7071074 -0.7071062 0 0.7071074 -0.7071062 0 0.7071074 -0.7071062 0 0.9659256 -0.2588199 0 0.9659256 -0.2588199 0 0.9659256 -0.2588199 0 0.9659256 -0.2588199 0 0.9659256 0.2588199 0 0.9659256 0.2588199 0 0.9659256 0.2588199 0 0.9659256 0.2588199 0 0.7071074 0.7071062 0 0.7071074 0.7071062 0 0.7071074 0.7071062 0 0.7071074 0.7071062 0 0.2588198 0.9659258 0 0.2588198 0.9659258 0 0.2588198 0.9659258 0 0.2588198 0.9659258 0 -0.2588198 0.9659258 0 -0.2588198 0.9659258 0 -0.2588198 0.9659258 0 -0.2588198 0.9659258 0 -0.7071074 0.7071062 0 -0.7071074 0.7071062 0 -0.7071074 0.7071062 0 -0.7071074 0.7071062 0 -0.9659256 0.2588199 0 -0.9659256 0.2588199 0 -0.9659256 0.2588199 0 -0.9659256 0.2588199 0 -0.9659256 -0.2588199 0 -0.9659256 -0.2588199 0 -0.9659256 -0.2588199 0 -0.9659256 -0.2588199 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 -0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.2588195 -0.9659257 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.2588195 0.9659257 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.9659258 0.2588195 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 0 -0.9659258 -0.2588195 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 -0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.2588195 -0.9659258 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659257 -0.2588195 0 0.9659257 -0.2588195 0 0.9659257 -0.2588195 0 0.9659257 -0.2588195 0 0.9659257 0.2588195 0 0.9659257 0.2588195 0 0.9659257 0.2588195 0 0.9659257 0.2588195 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.2588195 0.9659258 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659257 0.2588195 0 -0.9659257 0.2588195 0 -0.9659257 0.2588195 0 -0.9659257 0.2588195 0 -0.9659257 -0.2588195 0 -0.9659257 -0.2588195 0 -0.9659257 -0.2588195 0 -0.9659257 -0.2588195 0 -0.7071062 -0.7071074 0 -0.7071062 -0.7071074 0 -0.7071062 -0.7071074 0 -0.7071062 -0.7071074 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 -0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.2588198 -0.9659257 0 0.7071062 -0.7071074 0 0.7071062 -0.7071074 0 0.7071062 -0.7071074 0 0.7071062 -0.7071074 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.7071062 0.7071074 0 0.7071062 0.7071074 0 0.7071062 0.7071074 0 0.7071062 0.7071074 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.2588198 0.9659257 0 -0.7071062 0.7071074 0 -0.7071062 0.7071074 0 -0.7071062 0.7071074 0 -0.7071062 0.7071074 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.7071069 -0.7071066 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.9659258 -0.2588194 0 0.9659258 -0.2588194 0 0.9659258 -0.2588194 0 0.9659258 -0.2588194 0 0.9659258 0.2588194 0 0.9659258 0.2588194 0 0.9659258 0.2588194 0 0.9659258 0.2588194 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.7071069 0.7071066 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.9659258 0.2588194 0 -0.9659258 -0.2588194 0 -0.9659258 -0.2588194 0 -0.9659258 -0.2588194 0 -0.9659258 -0.2588194 -0.5640132 -0.583902 -0.5839071 -0.5640132 -0.583902 -0.5839071 -0.5640132 -0.583902 -0.5839071 -0.5640132 -0.583902 -0.5839071 -0.5640115 -0.2137223 -0.7976303 -0.5640115 -0.2137223 -0.7976303 -0.5640115 -0.2137223 -0.7976303 -0.5640115 -0.2137223 -0.7976303 -0.5640113 0.2137239 -0.7976298 -0.5640113 0.2137239 -0.7976298 -0.5640113 0.2137239 -0.7976298 -0.5640113 0.2137239 -0.7976298 -0.5640123 0.5839037 -0.5839062 -0.5640123 0.5839037 -0.5839062 -0.5640123 0.5839037 -0.5839062 -0.5640123 0.5839037 -0.5839062 -0.5640125 0.7976287 -0.213725 -0.5640125 0.7976287 -0.213725 -0.5640125 0.7976287 -0.213725 -0.5640125 0.7976287 -0.213725 -0.5640129 0.7976284 0.2137252 -0.5640129 0.7976284 0.2137252 -0.5640129 0.7976284 0.2137252 -0.5640129 0.7976284 0.2137252 -0.5640132 0.583902 0.5839071 -0.5640132 0.583902 0.5839071 -0.5640132 0.583902 0.5839071 -0.5640132 0.583902 0.5839071 -0.5640115 0.2137223 0.7976303 -0.5640115 0.2137223 0.7976303 -0.5640115 0.2137223 0.7976303 -0.5640115 0.2137223 0.7976303 -0.5640113 -0.2137239 0.7976298 -0.5640113 -0.2137239 0.7976298 -0.5640113 -0.2137239 0.7976298 -0.5640113 -0.2137239 0.7976298 -0.5640123 -0.5839037 0.5839062 -0.5640123 -0.5839037 0.5839062 -0.5640123 -0.5839037 0.5839062 -0.5640123 -0.5839037 0.5839062 -0.5640125 -0.7976287 0.213725 -0.5640125 -0.7976287 0.213725 -0.5640125 -0.7976287 0.213725 -0.5640125 -0.7976287 0.213725 -0.5640129 -0.7976284 -0.2137252 -0.5640129 -0.7976284 -0.2137252 -0.5640129 -0.7976284 -0.2137252 -0.5640129 -0.7976284 -0.2137252 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 -0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.2588196 -0.9659257 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588196 0 0.9659258 -0.2588196 0 0.9659258 -0.2588196 0 0.9659258 -0.2588196 0 0.9659258 0.2588196 0 0.9659258 0.2588196 0 0.9659258 0.2588196 0 0.9659258 0.2588196 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.2588196 0.9659257 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588196 0 -0.9659258 0.2588196 0 -0.9659258 0.2588196 0 -0.9659258 0.2588196 0 -0.9659258 -0.2588196 0 -0.9659258 -0.2588196 0 -0.9659258 -0.2588196 0 -0.9659258 -0.2588196</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#shaft_uShape-normals-array\" count=\"1466\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"shaft_uShape-map1\" name=\"shaft_uShape-map1\">\r\n          <float_array id=\"shaft_uShape-map1-array\" count=\"1486\">0.1826146 0.7325244 0.1826144 0.7906553 0.01035434 0.7906556 0.0103544 0.7325246 0.1826145 0.8487867 0.01035431 0.8487864 0.1826145 0.2093443 0.1826146 0.2674756 0.01035437 0.2674754 0.1826144 0.3256066 0.01035437 0.3256066 0.1826145 0.3837377 0.01035437 0.3837377 0.1826145 0.4418688 0.01035437 0.4418691 0.1826146 0.5 0.01035437 0.5 0.1826146 0.5581311 0.01035443 0.5581313 0.1826145 0.6162621 0.01035431 0.6162623 0.1826145 0.6743933 0.01035437 0.6743933 0.9337533 0.7906556 0.9337533 0.7325246 0.5132347 0.4817104 0.9337534 0.8487868 0.9337533 0.2093445 0.9337535 0.2674756 0.9337534 0.3256068 0.9337534 0.3837377 0.9337533 0.4418687 0.9337534 0.5 0.9337534 0.558131 0.9337534 0.6162623 0.9337534 0.6743933 0.5889549 0.5296282 0.005740851 0.8316486 0.005740911 0.9145609 0.005740911 1 0.005740851 0.08543923 0.005740851 0.1683514 0.005740911 0.2512637 0.005740911 0.3341758 0.005740792 0.4170878 0.005740851 0.5 0.005740851 0.5829121 0.005740911 0.6658245 0.00574097 0.7487366 0.9904932 0.8316486 0.9904931 0.9145609 0.9904932 1 0.9904931 0.08543923 0.9904931 0.1683514 0.9904931 0.2512637 0.9904932 0.3341758 0.9904932 0.4170881 0.9904931 0.5 0.9904931 0.5829121 0.9904932 0.6658245 0.9904932 0.7487366 0.1649707 0.7325244 0.1649707 0.7906556 0.1649708 0.8487864 0.1649708 0.2093445 0.1649708 0.2674754 0.1649708 0.3256068 0.1649708 0.3837379 0.1649708 0.4418691 0.1649708 0.5 0.1649707 0.5581311 0.1649708 0.6162623 0.1649708 0.6743933 0.239639 0.7325246 0.2396389 0.7906556 0.239639 0.8487864 0.2396391 0.2093445 0.239639 0.2674754 0.239639 0.3256066 0.239639 0.3837378 0.239639 0.4418691 0.239639 0.5 0.239639 0.5581311 0.2396389 0.6162623 0.239639 0.6743933 0.2023351 0.7325246 0.2023349 0.7906556 0.202335 0.8487864 0.2023351 0.2093445 0.202335 0.2674756 0.202335 0.3256066 0.202335 0.3837378 0.202335 0.4418691 0.2023351 0.5 0.202335 0.5581311 0.202335 0.6162623 0.202335 0.6743933 0.2049887 0.7325244 0.2049888 0.7906556 0.2049886 0.8487864 0.2049887 0.2093445 0.2049887 0.2674756 0.2049887 0.3256066 0.2049887 0.3837378 0.2049887 0.4418689 0.2049887 0.5 0.2049887 0.5581311 0.2049887 0.6162621 0.2049887 0.6743933 0.389177 0.7325244 0.389177 0.7906556 0.3891769 0.8487864 0.389177 0.2093445 0.389177 0.2674756 0.389177 0.3256066 0.389177 0.3837378 0.3891769 0.4418688 0.389177 0.5 0.389177 0.5581311 0.389177 0.6162621 0.3891769 0.6743933 0.194537 0.7325246 0.1945369 0.7906556 0.1945369 0.8487864 0.1945369 0.2093445 0.1945369 0.2674755 0.1945369 0.3256066 0.1945369 0.3837378 0.194537 0.4418689 0.1945369 0.5 0.1945369 0.5581311 0.1945369 0.6162623 0.1945369 0.6743933 0.3026465 0.7325245 0.3026465 0.7906554 0.3026465 0.8487865 0.3026465 0.2093445 0.3026465 0.2674755 0.3026465 0.3256066 0.3026465 0.3837378 0.3026465 0.4418689 0.3026466 0.5 0.3026466 0.5581311 0.3026465 0.6162622 0.3026465 0.6743933 0.470293 0.9251373 0.4572281 0.9120724 0.4560828 0.9140561 0.4683093 0.9262826 0.4750752 0.9429844 0.4727846 0.9429844 0.470293 0.9608315 0.4683093 0.9596862 0.4572281 0.9738964 0.4560828 0.9719127 0.4393811 0.9786785 0.4393811 0.9763879 0.2683792 0.7325244 0.2683792 0.7906556 0.2683792 0.8487867 0.2683792 0.2093445 0.2683792 0.2674756 0.2683792 0.3256066 0.2683792 0.3837378 0.2683792 0.4418688 0.2683792 0.5 0.2683793 0.5581311 0.2683792 0.6162623 0.2683792 0.6743933 0.2446178 0.7325244 0.2446178 0.7906556 0.2446177 0.8487865 0.2446178 0.2093445 0.2446178 0.2674756 0.2446178 0.3256066 0.2446178 0.3837378 0.2446178 0.4418688 0.2446178 0.5 0.2446178 0.5581311 0.2446178 0.6162622 0.2446178 0.6743933 0.2830875 0.7325244 0.2830876 0.7906556 0.2830874 0.8487865 0.2830875 0.2093445 0.2830875 0.2674756 0.2830875 0.3256066 0.2830875 0.3837378 0.2830875 0.4418688 0.2830875 0.5 0.2830875 0.5581311 0.2830875 0.6162622 0.2830875 0.6743933 0.529242 0.4831171 0.5168829 0.470758 0.5184512 0.4680415 0.5319585 0.4815487 0.5337658 0.4999999 0.5369024 0.4999999 0.529242 0.5168828 0.5319585 0.5184512 0.5168829 0.5292419 0.5184512 0.5319583 0.5 0.5337657 0.5 0.5369024 0.4831172 0.5292419 0.4815488 0.5319583 0.4707581 0.5168828 0.4680416 0.5184512 0.4662343 0.4999999 0.4630976 0.4999999 0.4707581 0.4831171 0.4680416 0.4815487 0.4831172 0.470758 0.4815488 0.4680415 0.5 0.4662343 0.5 0.4630975 0.2928931 0.7325244 0.2928931 0.7906554 0.292893 0.8487865 0.2928931 0.2093445 0.292893 0.2674755 0.2928931 0.3256066 0.2928931 0.3837378 0.2928931 0.4418689 0.2928931 0.5 0.2928931 0.5581311 0.2928931 0.6162622 0.2928931 0.6743933 0.4518329 0.5615988 0.4353704 0.5451363 0.4309942 0.5527163 0.444253 0.565975 0.4578586 0.5840869 0.449106 0.5840869 0.4518329 0.606575 0.444253 0.6021987 0.4353704 0.6230375 0.4309942 0.6154575 0.4128823 0.6290631 0.4128823 0.6203105 0.174015 0.7325244 0.174015 0.7906556 0.1740151 0.8487865 0.1740149 0.2093445 0.1740149 0.2674755 0.1740149 0.3256066 0.1740149 0.3837378 0.1740149 0.4418688 0.174015 0.5 0.1740151 0.5581311 0.174015 0.6162621 0.174015 0.6743933 0.6302381 0.5526207 0.6302381 0.5771419 0.6302381 0.6016632 0.6302381 0.3319297 0.6302381 0.3564509 0.6302381 0.3809721 0.6302381 0.4054933 0.6302381 0.4300146 0.6302381 0.4545358 0.6302381 0.479057 0.6302381 0.5035783 0.6302381 0.5280995 0.6403571 0.5526207 0.6403571 0.5771419 0.6403571 0.6016632 0.6403571 0.3319297 0.6403571 0.3564509 0.6403571 0.3809721 0.6403571 0.4054933 0.6403571 0.4300146 0.6403571 0.4545358 0.6403571 0.479057 0.6403571 0.5035783 0.6403571 0.5280995 0.4988088 0.7325244 0.4988087 0.7906556 0.4988088 0.8487867 0.4988088 0.2093445 0.4988088 0.2674756 0.4988088 0.3256067 0.4988088 0.3837378 0.4988088 0.4418688 0.4988088 0.5 0.4988088 0.5581311 0.4988088 0.6162622 0.4988088 0.6743933 0.6992026 0.7325245 0.6992027 0.7906556 0.6992025 0.8487866 0.6992026 0.2093445 0.6992026 0.2674756 0.6992026 0.3256066 0.6992026 0.3837378 0.6992026 0.4418688 0.6992026 0.5 0.6992026 0.5581311 0.6992026 0.6162622 0.6992026 0.6743933 0.3327233 0.7325245 0.3327234 0.7906556 0.3327232 0.8487866 0.3327233 0.2093445 0.3327233 0.2674756 0.3327233 0.3256066 0.3327233 0.3837378 0.3327233 0.4418688 0.3327233 0.5 0.3327233 0.5581311 0.3327233 0.6162622 0.3327233 0.6743933 0.6541745 0.5522203 0.6541745 0.5766295 0.6541745 0.6010386 0.6541745 0.3325388 0.6541745 0.3569478 0.6541745 0.381357 0.6541745 0.4057659 0.6541745 0.430175 0.6541745 0.4545841 0.6541745 0.4789932 0.6541744 0.5034022 0.6541745 0.5278113 0.658391 0.5522203 0.658391 0.5766295 0.658391 0.6010386 0.658391 0.3325388 0.658391 0.3569478 0.658391 0.3813569 0.658391 0.4057659 0.658391 0.430175 0.658391 0.4545841 0.658391 0.4789932 0.6583909 0.5034022 0.658391 0.5278113 0.5070506 0.7325245 0.5070506 0.7906556 0.5070506 0.8487867 0.5070506 0.2093445 0.5070506 0.2674756 0.5070506 0.3256066 0.5070506 0.3837377 0.5070506 0.4418688 0.5070506 0.4999999 0.5070506 0.5581311 0.5070505 0.6162622 0.5070506 0.6743933 0.477071 0.7325244 0.4770716 0.7906556 0.4770722 0.8487867 0.477071 0.2093445 0.477071 0.2674756 0.4770697 0.3256066 0.4770697 0.3837377 0.477071 0.4418688 0.477071 0.5 0.477071 0.5581311 0.477071 0.6162622 0.4770704 0.6743933 0.5878214 0.7325245 0.5878215 0.7906556 0.5878215 0.8487867 0.5878214 0.2093445 0.5878214 0.2674756 0.5878214 0.3256066 0.5878214 0.3837377 0.5878214 0.4418688 0.5878214 0.5 0.5878214 0.5581311 0.5878214 0.6162621 0.5878214 0.6743933 0.01035437 0.1512132 0.5076411 0.4761167 0.01035449 0.2093445 0.1826146 0.1512133 0.005740851 0 0.9904931 0 0.1649709 0.1512133 0.239639 0.1512134 0.202335 0.1512134 0.2049887 0.1512133 0.389177 0.1512133 0.194537 0.1512133 0.3026465 0.1512133 0.421534 0.9738964 0.2683792 0.1512133 0.2446178 0.1512133 0.2830875 0.1512133 0.1982882 0.1512133 0.5250732 0.456572 0.5434279 0.4749268 0.3403014 0.1512133 0.3903942 0.6230375 0.3043213 0.1512134 0.6403571 0.3074084 0.5297232 0.5708847 0.6992026 0.1512134 0.6553009 0.4965402 0.719433 0.1512133 0.658391 0.3081297 0.518276 0.4894482 0.801379 0.1512133 0.5367587 0.1512133 0.9337534 0.1512136 0.5367587 0.6743933 0.5367587 0.7325245 0.5367587 0.6162621 0.5367587 0.5581311 0.5367587 0.5 0.5367587 0.4418688 0.5367587 0.3837377 0.5367581 0.3256066 0.5367587 0.2674756 0.5367587 0.2093445 0.5367594 0.8487867 0.5878214 0.1512133 0.5367594 0.7906556 0.5105516 0.4817238 0.5092307 0.4840118 0.5159881 0.4907691 0.5211033 0.4999999 0.5184615 0.4999999 0.518276 0.5105516 0.5159881 0.5092307 0.5105516 0.518276 0.5092307 0.5159881 0.4999999 0.5211033 0.4999999 0.5184615 0.5070505 0.1512133 0.4894482 0.518276 0.6466216 0.4878609 0.6435444 0.4931907 0.649971 0.4996174 0.6584778 0.5083964 0.6523234 0.5083964 0.6553009 0.5202526 0.649971 0.5171754 0.6466216 0.528932 0.6435444 0.5236021 0.6347654 0.5321088 0.6347654 0.5259545 0.3327233 0.1512134 0.6229092 0.528932 0.5171607 0.5583222 0.515976 0.5603741 0.5276712 0.5720694 0.5343214 0.5880455 0.531952 0.5880455 0.5297232 0.6052061 0.5276712 0.6040214 0.5171607 0.6177686 0.515976 0.6157167 0.4999999 0.6223669 0.4999999 0.6199975 0.4988087 0.1512134 0.4828392 0.6177686 0.3043213 0.6743933 0.3043214 0.7325244 0.3043213 0.6162622 0.3043213 0.5581311 0.3043213 0.5 0.3043214 0.4418688 0.3043213 0.3837378 0.3043213 0.3256067 0.3043213 0.2674755 0.3043213 0.2093445 0.3043213 0.8487867 0.6302381 0.3074084 0.3043213 0.7906556 0.3947704 0.6154575 0.3739317 0.606575 0.3815116 0.6021987 0.367906 0.5840869 0.3766586 0.5840869 0.3739317 0.5615988 0.3815116 0.565975 0.3903942 0.5451363 0.3947704 0.5527163 0.4128823 0.5391105 0.4128823 0.5478631 0.174015 0.1512133 0.4154468 0.3777384 0.5501463 0.4999999 0.5434279 0.5250732 0.5250732 0.5434279 0.5 0.5501463 0.4749268 0.5434279 0.4565721 0.5250732 0.4498537 0.4999999 0.4565721 0.4749268 0.4749268 0.456572 0.5 0.4498537 0.435164 0.3674043 0.2928931 0.1512133 0.435164 0.3724551 0.3403014 0.6743933 0.3403014 0.7325244 0.3403014 0.6162621 0.3403014 0.5581311 0.3403014 0.5 0.3403012 0.4418688 0.3403013 0.3837378 0.3403013 0.3256066 0.3403013 0.2674755 0.3403013 0.2093445 0.3403015 0.8487865 0.3966386 0.3896469 0.3403014 0.7906556 0.1982882 0.6743933 0.1982881 0.7325244 0.1982881 0.6162622 0.1982882 0.5581311 0.1982881 0.5 0.1982881 0.4418688 0.1982882 0.3837378 0.1982882 0.3256068 0.1982882 0.2674756 0.1982882 0.2093445 0.1982882 0.8487867 0.4129214 0.3733642 0.1982882 0.7906556 0.5986041 0.5392775 0.5757736 0.5524587 0.602136 0.5524587 0.5986041 0.5656399 0.5889549 0.5752891 0.5757736 0.578821 0.5625926 0.5752891 0.5529432 0.5656399 0.5494114 0.5524587 0.5529432 0.5392775 0.5625926 0.5296282 0.5757736 0.5260964 0.5165199 0.4860964 0.5095378 0.4791143 0.5133992 0.4724259 0.5232083 0.4822349 0.5190755 0.4956341 0.5267985 0.4956341 0.5165199 0.5051719 0.5232083 0.5090334 0.5095378 0.512154 0.5133992 0.5188423 0.5 0.5147097 0.5 0.5224327 0.4904622 0.512154 0.4866008 0.5188423 0.4834802 0.5051719 0.4767919 0.5090334 0.4809245 0.4956341 0.4732015 0.4956341 0.4834802 0.4860964 0.4767919 0.4822349 0.4904622 0.4791143 0.4866008 0.4724259 0.5 0.4765586 0.5 0.4688357 0.5336813 0.5083762 0.5194459 0.4941409 0.5156308 0.5007488 0.5270735 0.5121913 0.5388918 0.5278221 0.5312617 0.5278221 0.5336813 0.547268 0.5270735 0.543453 0.5194459 0.5615034 0.5156308 0.5548955 0.5 0.5667138 0.5 0.5590838 0.4805542 0.5615034 0.4843692 0.5548955 0.4663188 0.547268 0.4729267 0.543453 0.4611083 0.5278221 0.4687384 0.5278221 0.4663188 0.5083762 0.4729267 0.5121913 0.4805542 0.4941409 0.4843692 0.5007488 0.5 0.4889305 0.5 0.4965605 0.5452821 0.4489288 0.5261436 0.4297903 0.5284225 0.4258431 0.5492293 0.4466499 0.5522873 0.4750724 0.5568451 0.4750724 0.5452821 0.5012162 0.5492293 0.503495 0.5261436 0.5203546 0.5284225 0.5243018 0.4999999 0.5273598 0.4999999 0.5319176 0.4738563 0.5203546 0.4715773 0.5243018 0.4547178 0.5012162 0.4507706 0.503495 0.4477126 0.4750724 0.4431548 0.4750724 0.4547178 0.4489288 0.4507706 0.4466499 0.4738563 0.4297903 0.4715773 0.4258431 0.4999999 0.4227851 0.4999999 0.4182273 0.521589 0.4952028 0.5124644 0.4860782 0.5174614 0.4774233 0.530244 0.4902059 0.5249289 0.5076673 0.5349228 0.5076673 0.521589 0.5201318 0.530244 0.5251287 0.5124644 0.5292565 0.5174614 0.5379114 0.4999999 0.5325963 0.4999999 0.5425901 0.4875354 0.5292565 0.4825385 0.5379114 0.4784108 0.5201318 0.4697558 0.5251287 0.475071 0.5076673 0.465077 0.5076673 0.4784108 0.4952028 0.4697558 0.4902059 0.4875354 0.4860782 0.4825385 0.4774233 0.4999999 0.4827383 0.4999999 0.4727445 0.4226793 0.9719127 0.4084691 0.9608315 0.4104528 0.9596862 0.4036869 0.9429844 0.4059775 0.9429844 0.4084691 0.9251373 0.4104528 0.9262826 0.421534 0.9120724 0.4226793 0.9140561 0.4393811 0.9072903 0.4393811 0.9095809 0.4572281 0.9120724 0.470293 0.9251373 0.4750752 0.9429844 0.470293 0.9608315 0.4572281 0.9738964 0.4393811 0.9786785 0.421534 0.9738964 0.4084691 0.9608315 0.4036869 0.9429844 0.4084691 0.9251373 0.421534 0.9120724 0.4393811 0.9072903 0.4693152 0.3921723 0.4548812 0.3777384 0.4574066 0.3733642 0.4736893 0.3896469 0.4745984 0.4118896 0.4796492 0.4118896 0.4693152 0.4316067 0.4736893 0.4341322 0.4548812 0.4460407 0.4574066 0.4504149 0.435164 0.4513239 0.435164 0.4563748 0.4154468 0.4460407 0.4129214 0.4504149 0.4010128 0.4316067 0.3966386 0.4341322 0.3957296 0.4118896 0.3906787 0.4118896 0.4010128 0.3921723 0.4840239 0.6157167 0.4702767 0.6052061 0.4723287 0.6040214 0.4656785 0.5880455 0.4680479 0.5880455 0.4702767 0.5708847 0.4723287 0.5720694 0.4828392 0.5583222 0.4840239 0.5603741 0.4999999 0.5537241 0.4999999 0.5560935 0.6259863 0.5236021 0.6142298 0.5202526 0.6195596 0.5171754 0.611053 0.5083964 0.6172074 0.5083964 0.6142298 0.4965402 0.6195596 0.4996174 0.6229092 0.4878609 0.6259863 0.4931907 0.6347654 0.484684 0.6347654 0.4908384 0.4907691 0.5159881 0.4817239 0.5105516 0.4840118 0.5092307 0.4788966 0.4999999 0.4815384 0.4999999 0.4817239 0.4894482 0.4840118 0.4907691 0.4894482 0.4817238 0.4907691 0.4840118 0.4999999 0.4788966 0.4999999 0.4815384 0.801379 0.6743933 0.8013791 0.7325244 0.8013791 0.6162622 0.8013791 0.5581311 0.8013791 0.5 0.8013791 0.4418688 0.801379 0.3837377 0.801379 0.3256066 0.8013791 0.2674756 0.8013791 0.2093445 0.8013792 0.8487867 0.4770697 0.1512133 0.8013791 0.7906556 0.5 0.4893515 0.5152823 0.4893515 0.5132347 0.4969926 0.5076411 0.5025862 0.5 0.5046337 0.4923589 0.5025862 0.4867652 0.4969926 0.4847178 0.4893515 0.4867652 0.4817104 0.4923589 0.4761167 0.5 0.4740693 0.7194331 0.6743933 0.7194331 0.7325245 0.719433 0.6162621 0.7194331 0.5581311 0.7194331 0.4999999 0.7194331 0.4418688 0.7194331 0.3837377 0.7194331 0.3256068 0.7194331 0.2674756 0.7194331 0.2093445 0.7194331 0.8487867 0.6541744 0.3081297 0.7194331 0.7906556</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#shaft_uShape-map1-array\" count=\"743\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"shaft_uShape-vertices\" name=\"shaft_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#shaft_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"372\">\r\n          <input semantic=\"VERTEX\" source=\"#shaft_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#shaft_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#shaft_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 13 2 2 12 3 3 1 4 1 2 5 4 14 6 5 13 7 2 2 8 376 3 9 6 15 10 375 14 11 373 3 12 6 4 13 7 16 14 8 15 15 375 4 16 7 5 17 9 17 18 10 16 19 8 5 20 9 6 21 11 18 22 12 17 23 10 6 24 11 7 25 13 19 26 14 18 27 12 7 28 13 8 29 15 20 30 16 19 31 14 8 32 15 9 33 17 21 34 18 20 35 16 9 36 17 10 37 19 22 38 20 21 39 18 10 40 19 11 41 21 23 42 22 22 43 20 11 44 21 0 45 0 12 46 3 23 47 22 362 48 25 361 49 374 363 50 719 364 51 720 362 48 25 363 50 719 365 52 721 364 51 720 363 50 719 366 53 722 365 52 721 363 50 719 367 54 723 366 53 722 363 50 719 368 55 724 367 54 723 363 50 719 369 56 725 368 55 724 363 50 719 370 57 726 369 56 725 363 50 719 371 58 727 370 57 726 363 50 719 372 59 728 371 58 727 363 50 719 373 60 729 372 59 728 363 50 719 361 49 374 373 60 729 363 50 719 12 61 36 13 62 523 24 63 524 13 62 523 14 64 525 24 63 524 14 64 525 15 65 526 24 63 524 15 65 526 16 66 527 24 63 524 16 66 527 17 67 528 24 63 524 17 67 528 18 68 529 24 63 524 18 68 529 19 69 530 24 63 524 19 69 530 20 70 531 24 63 524 20 70 531 21 71 532 24 63 524 21 71 532 22 72 533 24 63 524 22 72 533 23 73 534 24 63 524 23 73 534 12 61 36 24 63 524 1 74 535 0 75 536 25 76 537 26 77 538 2 78 539 1 79 535 26 80 538 27 81 540 3 82 541 2 83 539 27 84 540 28 85 542 4 86 543 3 87 541 28 88 542 29 89 544 5 90 545 4 91 543 29 92 544 30 93 546 6 94 547 5 95 545 30 96 546 31 97 548 7 98 549 6 99 547 31 100 548 32 101 550 8 102 551 7 103 549 32 104 550 33 105 552 9 106 553 8 107 551 33 108 552 34 109 554 10 110 555 9 111 553 34 112 554 35 113 556 11 114 557 10 115 555 35 116 556 36 117 558 0 118 536 11 119 557 36 120 558 25 121 537 38 170 559 37 171 560 49 172 561 50 173 562 39 174 563 38 175 559 50 176 562 51 177 564 40 178 565 39 179 563 51 180 564 52 181 566 41 182 567 40 183 565 52 184 566 53 185 568 42 186 569 41 187 567 53 188 568 54 189 570 43 190 571 42 191 569 54 192 570 55 193 572 44 194 573 43 195 571 55 196 572 56 197 574 45 198 575 44 199 573 56 200 574 57 201 576 46 202 577 45 203 575 57 204 576 58 205 578 47 206 579 46 207 577 58 208 578 59 209 580 48 210 581 47 211 579 59 212 580 60 213 582 37 214 560 48 215 581 60 216 582 49 217 561 50 218 62 49 219 61 61 220 73 62 221 74 51 222 63 50 223 62 62 224 74 63 225 75 52 226 64 51 227 379 63 228 380 64 229 76 53 230 65 52 231 64 64 232 76 65 233 77 54 234 66 53 235 65 65 236 77 66 237 78 55 238 67 54 239 66 66 240 78 67 241 79 56 242 68 55 243 67 67 244 79 68 245 80 57 246 69 56 247 68 68 248 80 69 249 81 58 250 70 57 251 69 69 252 81 70 253 82 59 254 71 58 255 70 70 256 82 71 257 83 60 258 72 59 259 71 71 260 83 72 261 84 49 262 61 60 263 72 72 264 84 61 265 73 62 266 583 61 267 584 73 268 585 74 269 586 63 270 587 62 271 583 74 272 586 75 273 588 64 274 589 63 275 587 75 276 588 76 277 590 65 278 591 64 279 589 76 280 590 77 281 592 66 282 593 65 283 591 77 284 592 78 285 594 67 286 595 66 287 593 78 288 594 79 289 596 68 290 597 67 291 595 79 292 596 80 293 598 69 294 599 68 295 597 80 296 598 81 297 600 70 298 601 69 299 599 81 300 600 82 301 602 71 302 603 70 303 601 82 304 602 83 305 604 72 306 605 71 307 603 83 308 604 84 309 606 61 310 584 72 311 605 84 312 606 73 313 585 74 314 86 73 315 85 85 316 97 86 317 98 75 318 87 74 319 86 86 320 98 87 321 99 76 322 88 75 323 381 87 324 382 88 325 100 77 326 89 76 327 88 88 328 100 89 329 101 78 330 90 77 331 89 89 332 101 90 333 102 79 334 91 78 335 90 90 336 102 91 337 103 80 338 92 79 339 91 91 340 103 92 341 104 81 342 93 80 343 92 92 344 104 93 345 105 82 346 94 81 347 93 93 348 105 94 349 106 83 350 95 82 351 94 94 352 106 95 353 107 84 354 96 83 355 95 95 356 107 96 357 108 73 358 85 84 359 96 96 360 108 85 361 97 86 362 607 85 363 608 97 364 609 98 365 610 87 366 611 86 367 607 98 368 610 99 369 612 88 370 613 87 371 611 99 372 612 100 373 614 89 374 615 88 375 613 100 376 614 101 377 616 90 378 617 89 379 615 101 380 616 102 381 618 91 382 619 90 383 617 102 384 618 103 385 620 92 386 621 91 387 619 103 388 620 104 389 622 93 390 623 92 391 621 104 392 622 105 393 624 94 394 625 93 395 623 105 396 624 106 397 626 95 398 627 94 399 625 106 400 626 107 401 628 96 402 629 95 403 627 107 404 628 108 405 630 85 406 608 96 407 629 108 408 630 97 409 609 98 410 110 97 411 109 109 412 121 110 413 122 99 414 111 98 415 110 110 416 122 111 417 123 100 418 112 99 419 383 111 420 384 112 421 124 101 422 113 100 423 112 112 424 124 113 425 125 102 426 114 101 427 113 113 428 125 114 429 126 103 430 115 102 431 114 114 432 126 115 433 127 104 434 116 103 435 115 115 436 127 116 437 128 105 438 117 104 439 116 116 440 128 117 441 129 106 442 118 105 443 117 117 444 129 118 445 130 107 446 119 106 447 118 118 448 130 119 449 131 108 450 120 107 451 119 119 452 131 120 453 132 97 454 109 108 455 120 120 456 132 109 457 121 110 458 122 109 459 121 121 460 133 122 461 134 111 462 123 110 463 122 122 464 134 123 465 135 112 466 124 111 467 384 123 468 385 124 469 136 113 470 125 112 471 124 124 472 136 125 473 137 114 474 126 113 475 125 125 476 137 126 477 138 115 478 127 114 479 126 126 480 138 127 481 139 116 482 128 115 483 127 127 484 139 128 485 140 117 486 129 116 487 128 128 488 140 129 489 141 118 490 130 117 491 129 129 492 141 130 493 142 119 494 131 118 495 130 130 496 142 131 497 143 120 498 132 119 499 131 131 500 143 132 501 144 109 502 121 120 503 132 132 504 144 121 505 133 122 506 145 121 507 146 133 508 147 134 509 148 123 510 149 122 511 145 134 512 148 135 513 150 124 514 151 123 515 149 135 516 150 136 517 152 125 518 153 124 519 151 136 520 152 137 521 154 126 522 155 125 523 153 137 524 154 138 525 156 127 526 386 126 527 155 138 528 156 139 529 631 128 530 632 127 531 386 139 532 631 140 533 633 129 534 634 128 535 632 140 536 633 141 537 635 130 538 636 129 539 634 141 540 635 142 541 637 131 542 638 130 543 636 142 544 637 143 545 639 132 546 640 131 547 638 143 548 639 144 549 641 121 550 146 132 551 640 144 552 641 133 553 147 134 554 148 133 555 147 145 556 642 146 557 643 135 558 150 134 559 148 146 560 643 147 561 644 136 562 152 135 563 150 147 564 644 148 565 645 137 566 154 136 567 152 148 568 645 149 569 646 138 570 156 137 571 154 149 572 646 150 573 647 139 574 631 138 575 156 150 576 647 151 577 648 140 578 633 139 579 631 151 580 648 152 581 649 141 582 635 140 583 633 152 584 649 153 585 650 142 586 637 141 587 635 153 588 650 154 589 651 143 590 639 142 591 637 154 592 651 155 593 652 144 594 641 143 595 639 155 596 652 156 597 653 133 598 147 144 599 641 156 600 653 145 601 642 146 602 158 145 603 157 157 604 169 158 605 170 147 606 159 146 607 158 158 608 170 159 609 171 148 610 160 147 611 387 159 612 388 160 613 172 149 614 161 148 615 160 160 616 172 161 617 173 150 618 162 149 619 161 161 620 173 162 621 174 151 622 163 150 623 162 162 624 174 163 625 175 152 626 164 151 627 163 163 628 175 164 629 176 153 630 165 152 631 164 164 632 176 165 633 177 154 634 166 153 635 165 165 636 177 166 637 178 155 638 167 154 639 166 166 640 178 167 641 179 156 642 168 155 643 167 167 644 179 168 645 180 145 646 157 156 647 168 168 648 180 157 649 169 158 650 654 157 651 655 169 652 656 170 653 657 159 654 658 158 655 654 170 656 657 171 657 659 160 658 660 159 659 658 171 660 659 172 661 661 161 662 662 160 663 660 172 664 661 173 665 663 162 666 664 161 667 662 173 668 663 174 669 665 163 670 666 162 671 664 174 672 665 175 673 667 164 674 668 163 675 666 175 676 667 176 677 669 165 678 670 164 679 668 176 680 669 177 681 671 166 682 672 165 683 670 177 684 671 178 685 508 167 686 483 166 687 672 178 688 508 179 689 521 168 690 496 167 691 483 179 692 521 180 693 494 157 694 655 168 695 496 180 696 494 169 697 656 170 698 182 169 699 181 181 700 511 182 701 522 171 702 183 170 703 182 182 704 522 183 705 520 172 706 184 171 707 389 183 708 390 184 709 519 173 710 185 172 711 184 184 712 519 185 713 518 174 714 186 173 715 185 185 716 518 186 717 517 175 718 187 174 719 186 186 720 517 187 721 516 176 722 188 175 723 187 187 724 516 188 725 515 177 726 189 176 727 188 188 728 515 189 729 514 178 730 190 177 731 189 189 732 514 190 733 513 179 734 191 178 735 190 190 736 513 191 737 512 180 738 192 179 739 191 191 740 512 192 741 510 169 742 181 180 743 192 192 744 510 181 745 511 182 746 193 181 747 194 193 748 195 194 749 196 183 750 197 182 751 193 194 752 196 195 753 198 184 754 199 183 755 197 195 756 198 196 757 200 185 758 201 184 759 199 196 760 200 197 761 202 186 762 203 185 763 201 197 764 202 198 765 204 187 766 205 186 767 203 198 768 204 199 769 206 188 770 207 187 771 205 199 772 206 200 773 208 189 774 209 188 775 207 200 776 208 201 777 210 190 778 211 189 779 209 201 780 210 202 781 212 191 782 213 190 783 211 202 784 212 203 785 214 192 786 215 191 787 213 203 788 214 204 789 216 181 790 194 192 791 215 204 792 216 193 793 195 194 794 196 193 795 195 205 796 391 206 797 392 195 798 198 194 799 196 206 800 392 207 801 484 196 802 200 195 803 198 207 804 484 208 805 485 197 806 202 196 807 200 208 808 485 209 809 486 198 810 204 197 811 202 209 812 486 210 813 487 199 814 206 198 815 204 210 816 487 211 817 488 200 818 208 199 819 206 211 820 488 212 821 489 201 822 210 200 823 208 212 824 489 213 825 490 202 826 212 201 827 210 213 828 490 214 829 491 203 830 214 202 831 212 214 832 491 215 833 492 204 834 216 203 835 214 215 836 492 216 837 493 193 838 195 204 839 216 216 840 493 205 841 391 206 842 218 205 843 217 217 844 498 218 845 509 207 846 219 206 847 218 218 848 509 219 849 507 208 850 220 207 851 495 219 852 393 220 853 506 209 854 221 208 855 220 220 856 506 221 857 505 210 858 222 209 859 221 221 860 505 222 861 504 211 862 223 210 863 222 222 864 504 223 865 503 212 866 224 211 867 223 223 868 503 224 869 502 213 870 225 212 871 224 224 872 502 225 873 501 214 874 226 213 875 225 225 876 501 226 877 500 215 878 227 214 879 226 226 880 500 227 881 499 216 882 228 215 883 227 227 884 499 228 885 497 205 886 217 216 887 228 228 888 497 217 889 498 218 890 229 217 891 230 229 892 231 230 893 232 219 894 233 218 895 229 230 896 232 231 897 234 220 898 235 219 899 233 231 900 234 232 901 236 221 902 237 220 903 235 232 904 236 233 905 238 222 906 239 221 907 237 233 908 238 234 909 240 223 910 394 222 911 239 234 912 240 235 913 471 224 914 472 223 915 394 235 916 471 236 917 473 225 918 474 224 919 472 236 920 473 237 921 475 226 922 476 225 923 474 237 924 475 238 925 477 227 926 478 226 927 476 238 928 477 239 929 479 228 930 480 227 931 478 239 932 479 240 933 481 217 934 230 228 935 480 240 936 481 229 937 231 230 938 242 229 939 241 241 940 459 242 941 470 231 942 243 230 943 242 242 944 470 243 945 468 232 946 244 231 947 482 243 948 395 244 949 467 233 950 245 232 951 244 244 952 467 245 953 466 234 954 246 233 955 245 245 956 466 246 957 465 235 958 247 234 959 246 246 960 465 247 961 464 236 962 248 235 963 247 247 964 464 248 965 463 237 966 249 236 967 248 248 968 463 249 969 462 238 970 250 237 971 249 249 972 462 250 973 461 239 974 251 238 975 250 250 976 461 251 977 460 240 978 252 239 979 251 251 980 460 252 981 458 229 982 241 240 983 252 252 984 458 241 985 459 242 986 254 241 987 253 253 988 265 254 989 266 243 990 255 242 991 254 254 992 266 255 993 267 244 994 256 243 995 469 255 996 396 256 997 268 245 998 257 244 999 256 256 1000 268 257 1001 269 246 1002 258 245 1003 257 257 1004 269 258 1005 270 247 1006 259 246 1007 258 258 1008 270 259 1009 271 248 1010 260 247 1011 259 259 1012 271 260 1013 272 249 1014 261 248 1015 260 260 1016 272 261 1017 273 250 1018 262 249 1019 261 261 1020 273 262 1021 274 251 1022 263 250 1023 262 262 1024 274 263 1025 275 252 1026 264 251 1027 263 263 1028 275 264 1029 276 241 1030 253 252 1031 264 264 1032 276 253 1033 265 254 1034 397 253 1035 445 265 1036 446 266 1037 447 255 1038 448 254 1039 397 266 1040 447 267 1041 449 256 1042 450 255 1043 448 267 1044 449 268 1045 451 257 1046 452 256 1047 450 268 1048 451 269 1049 453 258 1050 454 257 1051 452 269 1052 453 270 1053 455 259 1054 457 258 1055 454 270 1056 455 271 1057 673 260 1058 674 259 1059 457 271 1060 673 272 1061 675 261 1062 676 260 1063 674 272 1064 675 273 1065 677 262 1066 678 261 1067 676 273 1068 677 274 1069 679 263 1070 680 262 1071 678 274 1072 679 275 1073 681 264 1074 682 263 1075 680 275 1076 681 276 1077 683 253 1078 445 264 1079 682 276 1080 683 265 1081 446 266 1082 278 265 1083 277 277 1084 289 278 1085 290 267 1086 279 266 1087 278 278 1088 290 279 1089 291 268 1090 280 267 1091 456 279 1092 398 280 1093 292 269 1094 281 268 1095 280 280 1096 292 281 1097 293 270 1098 282 269 1099 281 281 1100 293 282 1101 294 271 1102 283 270 1103 282 282 1104 294 283 1105 295 272 1106 284 271 1107 283 283 1108 295 284 1109 296 273 1110 285 272 1111 284 284 1112 296 285 1113 297 274 1114 286 273 1115 285 285 1116 297 286 1117 298 275 1118 287 274 1119 286 286 1120 298 287 1121 299 276 1122 288 275 1123 287 287 1124 299 288 1125 300 265 1126 277 276 1127 288 288 1128 300 277 1129 289 278 1130 399 277 1131 432 289 1132 433 290 1133 434 279 1134 435 278 1135 399 290 1136 434 291 1137 436 280 1138 437 279 1139 435 291 1140 436 292 1141 438 281 1142 439 280 1143 437 292 1144 438 293 1145 440 282 1146 441 281 1147 439 293 1148 440 294 1149 442 283 1150 444 282 1151 441 294 1152 442 295 1153 684 284 1154 685 283 1155 444 295 1156 684 296 1157 686 285 1158 687 284 1159 685 296 1160 686 297 1161 688 286 1162 689 285 1163 687 297 1164 688 298 1165 690 287 1166 691 286 1167 689 298 1168 690 299 1169 692 288 1170 693 287 1171 691 299 1172 692 300 1173 694 277 1174 432 288 1175 693 300 1176 694 289 1177 433 290 1178 302 289 1179 301 301 1180 731 302 1181 742 291 1182 303 290 1183 302 302 1184 742 303 1185 740 292 1186 304 291 1187 443 303 1188 400 304 1189 739 293 1190 305 292 1191 304 304 1192 739 305 1193 738 294 1194 306 293 1195 305 305 1196 738 306 1197 737 295 1198 307 294 1199 306 306 1200 737 307 1201 736 296 1202 308 295 1203 307 307 1204 736 308 1205 735 297 1206 309 296 1207 308 308 1208 735 309 1209 734 298 1210 310 297 1211 309 309 1212 734 310 1213 733 299 1214 311 298 1215 310 310 1216 733 311 1217 732 300 1218 312 299 1219 311 311 1220 732 312 1221 730 289 1222 301 300 1223 312 312 1224 730 301 1225 731 302 1226 314 301 1227 313 313 1228 325 314 1229 326 303 1230 315 302 1231 314 314 1232 326 315 1233 327 304 1234 316 303 1235 741 315 1236 401 316 1237 328 305 1238 317 304 1239 316 316 1240 328 317 1241 329 306 1242 318 305 1243 317 317 1244 329 318 1245 330 307 1246 319 306 1247 318 318 1248 330 319 1249 331 308 1250 320 307 1251 319 319 1252 331 320 1253 332 309 1254 321 308 1255 320 320 1256 332 321 1257 333 310 1258 322 309 1259 321 321 1260 333 322 1261 334 311 1262 323 310 1263 322 322 1264 334 323 1265 335 312 1266 324 311 1267 323 323 1268 335 324 1269 336 301 1270 313 312 1271 324 324 1272 336 313 1273 325 314 1274 402 313 1275 419 325 1276 420 326 1277 421 315 1278 422 314 1279 402 326 1280 421 327 1281 423 316 1282 424 315 1283 422 327 1284 423 328 1285 425 317 1286 426 316 1287 424 328 1288 425 329 1289 427 318 1290 428 317 1291 426 329 1292 427 330 1293 429 319 1294 431 318 1295 428 330 1296 429 331 1297 695 320 1298 696 319 1299 431 331 1300 695 332 1301 697 321 1302 698 320 1303 696 332 1304 697 333 1305 699 322 1306 700 321 1307 698 333 1308 699 334 1309 701 323 1310 702 322 1311 700 334 1312 701 335 1313 703 324 1314 704 323 1315 702 335 1316 703 336 1317 705 313 1318 419 324 1319 704 336 1320 705 325 1321 420 326 1322 338 325 1323 337 337 1324 707 338 1325 718 327 1326 339 326 1327 338 338 1328 718 339 1329 716 328 1330 340 327 1331 430 339 1332 403 340 1333 715 329 1334 341 328 1335 340 340 1336 715 341 1337 714 330 1338 342 329 1339 341 341 1340 714 342 1341 713 331 1342 343 330 1343 342 342 1344 713 343 1345 712 332 1346 344 331 1347 343 343 1348 712 344 1349 711 333 1350 345 332 1351 344 344 1352 711 345 1353 710 334 1354 346 333 1355 345 345 1356 710 346 1357 709 335 1358 347 334 1359 346 346 1360 709 347 1361 708 336 1362 348 335 1363 347 347 1364 708 348 1365 706 325 1366 337 336 1367 348 348 1368 706 337 1369 707 338 1370 350 337 1371 349 349 1372 407 350 1373 418 339 1374 351 338 1375 350 350 1376 418 351 1377 416 340 1378 352 339 1379 717 351 1380 404 352 1381 415 341 1382 353 340 1383 352 352 1384 415 353 1385 414 342 1386 354 341 1387 353 353 1388 414 354 1389 413 343 1390 355 342 1391 354 354 1392 413 355 1393 412 344 1394 356 343 1395 355 355 1396 412 356 1397 411 345 1398 357 344 1399 356 356 1400 411 357 1401 410 346 1402 358 345 1403 357 357 1404 410 358 1405 409 347 1406 359 346 1407 358 358 1408 409 359 1409 408 348 1410 360 347 1411 359 359 1412 408 360 1413 406 337 1414 349 348 1415 360 360 1416 406 349 1417 407 350 1418 362 349 1419 361 361 1420 24 362 1421 23 351 1422 363 350 1423 362 362 1424 23 364 1425 26 352 1426 364 351 1427 417 364 1428 405 365 1429 27 353 1430 365 352 1431 364 365 1432 27 366 1433 28 354 1434 366 353 1435 365 366 1436 28 367 1437 29 355 1438 367 354 1439 366 367 1440 29 368 1441 30 356 1442 368 355 1443 367 368 1444 30 369 1445 31 357 1446 369 356 1447 368 369 1448 31 370 1449 32 358 1450 370 357 1451 369 370 1452 32 371 1453 33 359 1454 371 358 1455 370 371 1456 33 372 1457 34 360 1458 372 359 1459 371 372 1460 34 373 1461 35 349 1462 361 360 1463 372 373 1464 35 361 1465 24</p>\r\n        </polylist>\r\n        <polylist material=\"lambert3SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#shaft_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#shaft_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#shaft_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>26 122 38 25 123 37 37 124 49 38 125 50 27 126 39 26 127 38 38 128 50 39 129 51 28 130 40 27 131 377 39 132 378 40 133 52 29 134 41 28 135 40 40 136 52 41 137 53 30 138 42 29 139 41 41 140 53 42 141 54 31 142 43 30 143 42 42 144 54 43 145 55 32 146 44 31 147 43 43 148 55 44 149 56 33 150 45 32 151 44 44 152 56 45 153 57 34 154 46 33 155 45 45 156 57 46 157 58 35 158 47 34 159 46 46 160 58 47 161 59 36 162 48 35 163 47 47 164 59 48 165 60 25 166 37 36 167 48 48 168 60 37 169 49</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>shaft_uShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"front_bearings2_uShape\" name=\"front_bearings2_uShape\">\r\n      <mesh>\r\n        <source id=\"front_bearings2_uShape-positions\" name=\"front_bearings2_uShape-positions\">\r\n          <float_array id=\"front_bearings2_uShape-positions-array\" count=\"324\">-0.2508888 -3.238935 -1.87 -0.2508888 -1.87 -3.238935 -0.2508888 0 -3.74 -0.2508888 1.87 -3.238935 -0.2508888 3.238935 -1.87 -0.2508888 3.74 0 -0.2508888 3.238935 1.87 -0.2508888 1.87 3.238935 -0.2508888 0 3.74 -0.2508888 -1.87 3.238935 -0.2508888 -3.238935 1.87 -0.2508888 -3.74 0 0.1518755 -3.238935 -1.87 0.1518755 -1.87 -3.238935 0.1518755 0 -3.74 0.1518755 1.87 -3.238935 0.1518755 3.238935 -1.87 0.1518755 3.74 0 0.1518755 3.238935 1.87 0.1518755 1.87 3.238935 0.1518755 0 3.74 0.1518755 -1.87 3.238935 0.1518755 -3.238935 1.87 0.1518755 -3.74 0 -0.2508888 -3.312211 -1.912306 -0.2508888 -1.912306 -3.312211 -0.2508888 0 -3.824612 -0.2508888 1.912306 -3.312211 -0.2508888 3.312211 -1.912306 -0.2508888 3.824612 0 -0.2508888 3.312211 1.912306 -0.2508888 1.912306 3.312211 -0.2508888 0 3.824612 -0.2508888 -1.912306 3.312211 -0.2508888 -3.312211 1.912306 -0.2508888 -3.824612 0 -0.3499022 -3.312211 -1.912306 -0.3499022 -1.912306 -3.312211 -0.3499022 0 -3.824612 -0.3499022 1.912306 -3.312211 -0.3499022 3.312211 -1.912306 -0.3499022 3.824612 0 -0.3499022 3.312211 1.912306 -0.3499022 1.912306 3.312211 -0.3499022 0 3.824612 -0.3499022 -1.912306 3.312211 -0.3499022 -3.312211 1.912306 -0.3499022 -3.824612 0 -0.3499022 -3.477082 -2.007494 -0.3499022 -2.007494 -3.477082 -0.3499022 0 -4.014989 -0.3499022 2.007494 -3.477082 -0.3499022 3.477082 -2.007494 -0.3499022 4.014989 0 -0.3499022 3.477082 2.007494 -0.3499022 2.007494 3.477082 -0.3499022 0 4.014989 -0.3499022 -2.007494 3.477082 -0.3499022 -3.477082 2.007494 -0.3499022 -4.014989 0 -2.602457 -3.477082 -2.007494 -2.602457 -2.007494 -3.477082 -2.602457 0 -4.014989 -2.602457 2.007494 -3.477082 -2.602457 3.477082 -2.007494 -2.602457 4.014989 0 -2.602457 3.477082 2.007494 -2.602457 2.007494 3.477082 -2.602457 0 4.014989 -2.602457 -2.007494 3.477082 -2.602457 -3.477082 2.007494 -2.602457 -4.014989 0 -2.726224 -3.348849 -1.933459 -2.726224 -1.933459 -3.348849 -2.726224 0 -3.866918 -2.726224 1.933459 -3.348849 -2.726224 3.348849 -1.933459 -2.726224 3.866918 0 -2.726224 3.348849 1.933459 -2.726224 1.933459 3.348849 -2.726224 0 3.866918 -2.726224 -1.933459 3.348849 -2.726224 -3.348849 1.933459 -2.726224 -3.866918 0 0.1518755 0 2.780591 0.1518755 1.390749 2.408847 0.1518755 2.418909 1.396558 0.1518755 2.783183 0 0.1518755 2.412726 -1.392988 0.1518755 1.393359 -2.413368 0.1518755 0 -2.787652 0.1518755 -1.393054 -2.412839 0.1518755 -2.411243 -1.392132 0.1518755 -2.78506 0 0.1518755 -2.413967 1.393705 0.1518755 -1.391218 2.40966 -2.726224 0 2.780591 -2.726224 -1.391218 2.40966 -2.726224 -2.413967 1.393705 -2.726224 -2.78506 0 -2.726224 -2.411243 -1.392132 -2.726224 -1.393054 -2.412839 -2.726224 0 -2.787652 -2.726224 1.393359 -2.413368 -2.726224 2.412726 -1.392988 -2.726224 2.783183 0 -2.726224 2.418909 1.396558 -2.726224 1.390749 2.408847</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings2_uShape-positions-array\" count=\"108\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_bearings2_uShape-normals\" name=\"front_bearings2_uShape-normals\">\r\n          <float_array id=\"front_bearings2_uShape-normals-array\" count=\"1152\">0 -0.7071069 -0.7071068 0 -0.7071069 -0.7071068 0 -0.7071069 -0.7071068 0 -0.7071069 -0.7071068 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.7071069 -0.7071068 0 0.7071069 -0.7071068 0 0.7071069 -0.7071068 0 0.7071069 -0.7071068 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 -0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.9659258 0.2588192 0 0.7071069 0.7071068 0 0.7071069 0.7071068 0 0.7071069 0.7071068 0 0.7071069 0.7071068 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.7071069 0.7071068 0 -0.7071069 0.7071068 0 -0.7071069 0.7071068 0 -0.7071069 0.7071068 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 0 -0.9659258 -0.2588192 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 -0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.2588191 -0.9659258 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.2588191 0.9659258 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 -0.7561818 -0.4627032 -0.4627037 -0.7561818 -0.4627032 -0.4627037 -0.7561818 -0.4627032 -0.4627037 -0.7561818 -0.4627032 -0.4627037 -0.7561819 -0.1693612 -0.6320646 -0.7561819 -0.1693612 -0.6320646 -0.7561819 -0.1693612 -0.6320646 -0.7561819 -0.1693612 -0.6320646 -0.7561819 0.1693611 -0.6320646 -0.7561819 0.1693611 -0.6320646 -0.7561819 0.1693611 -0.6320646 -0.7561819 0.1693611 -0.6320646 -0.7561818 0.4627032 -0.4627037 -0.7561818 0.4627032 -0.4627037 -0.7561818 0.4627032 -0.4627037 -0.7561818 0.4627032 -0.4627037 -0.7561819 0.6320646 -0.1693612 -0.7561819 0.6320646 -0.1693612 -0.7561819 0.6320646 -0.1693612 -0.7561819 0.6320646 -0.1693612 -0.756182 0.6320645 0.1693613 -0.756182 0.6320645 0.1693613 -0.756182 0.6320645 0.1693613 -0.756182 0.6320645 0.1693613 -0.7561818 0.4627032 0.4627037 -0.7561818 0.4627032 0.4627037 -0.7561818 0.4627032 0.4627037 -0.7561818 0.4627032 0.4627037 -0.7561819 0.1693612 0.6320646 -0.7561819 0.1693612 0.6320646 -0.7561819 0.1693612 0.6320646 -0.7561819 0.1693612 0.6320646 -0.7561819 -0.1693611 0.6320646 -0.7561819 -0.1693611 0.6320646 -0.7561819 -0.1693611 0.6320646 -0.7561819 -0.1693611 0.6320646 -0.7561818 -0.4627032 0.4627037 -0.7561818 -0.4627032 0.4627037 -0.7561818 -0.4627032 0.4627037 -0.7561818 -0.4627032 0.4627037 -0.7561819 -0.6320646 0.1693612 -0.7561819 -0.6320646 0.1693612 -0.7561819 -0.6320646 0.1693612 -0.7561819 -0.6320646 0.1693612 -0.756182 -0.6320645 -0.1693613 -0.756182 -0.6320645 -0.1693613 -0.756182 -0.6320645 -0.1693613 -0.756182 -0.6320645 -0.1693613 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 0.2598182 0.9656577 0 0.2598182 0.9656577 0 0.2598182 0.9656577 0 0.2598182 0.9656577 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.966332 -0.2572988 0 0.966332 -0.2572988 0 0.966332 -0.2572988 0 0.966332 -0.2572988 0 0.7047462 -0.7094595 0 0.7047462 -0.7094595 0 0.7047462 -0.7094595 0 0.7047462 -0.7094595 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings2_uShape-normals-array\" count=\"384\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_bearings2_uShape-map1\" name=\"front_bearings2_uShape-map1\">\r\n          <float_array id=\"front_bearings2_uShape-map1-array\" count=\"426\">0.8728809 0.5608082 0.8682202 0.5561476 0.8745868 0.5671748 0.8728809 0.5735415 0.8682202 0.5782021 0.8618536 0.579908 0.855487 0.5782021 0.8508263 0.5735415 0.8491204 0.5671748 0.8508263 0.5608082 0.855487 0.5561476 0.6579289 0.2188027 0.657929 0.1485035 0.6854293 0.1485035 0.6854293 0.2188028 0.6579289 0.0782041 0.6854292 0.07820415 0.6579289 0.8514967 0.6579289 0.7811973 0.6854292 0.7811972 0.6579289 0.710898 0.6854292 0.7108979 0.6579289 0.6405987 0.6854293 0.6405987 0.6579289 0.5702993 0.6854293 0.5702993 0.6579289 0.5 0.6854292 0.5 0.6579289 0.4297008 0.6854292 0.4297007 0.6579288 0.3594013 0.6854291 0.3594013 0.6579289 0.289102 0.6854293 0.2891021 0.657929 0.1485035 0.6579289 0.2188027 0.8618536 0.5544416 0.8697658 0.5171295 0.8783544 0.5257182 0.8814981 0.5374504 0.8783544 0.5491828 0.8697658 0.5577713 0.8580335 0.5609149 0.8463013 0.5577713 0.8377126 0.5491828 0.834569 0.5374504 0.8377126 0.5257182 0.8463013 0.5171295 0.8580335 0.513986 0.6511683 0.2188026 0.6511684 0.1485035 0.6579289 0.0782041 0.6511683 0.07820427 0.6579289 0.8514967 0.6511684 0.8514967 0.6579289 0.7811973 0.6511684 0.7811973 0.6579289 0.710898 0.6511683 0.7108979 0.6579289 0.6405987 0.6511684 0.6405987 0.6579289 0.5702993 0.6511684 0.5702993 0.6579289 0.5 0.6511683 0.5 0.6579289 0.4297008 0.6511683 0.4297007 0.6579288 0.3594013 0.6511683 0.3594014 0.6579289 0.289102 0.6511684 0.2891021 0.6511684 0.1485035 0.6511683 0.2188026 0.4973663 0.2188027 0.4973663 0.1485035 0.6511683 0.07820427 0.4973663 0.0782041 0.6511684 0.8514967 0.4973663 0.8514967 0.6511684 0.7811973 0.4973662 0.7811973 0.6511683 0.7108979 0.4973663 0.7108979 0.6511684 0.6405987 0.4973662 0.6405987 0.6511684 0.5702993 0.4973663 0.5702994 0.6511683 0.5 0.4973663 0.5 0.6511683 0.4297007 0.4973663 0.4297007 0.6511683 0.3594014 0.4973663 0.3594013 0.6511684 0.2891021 0.4973663 0.2891021 0.2016377 0.2188028 0.2016377 0.1485034 0.2016377 0.07820415 0.2016377 0.8514967 0.2016378 0.7811973 0.2016377 0.710898 0.2016377 0.6405987 0.2016377 0.5702993 0.2016377 0.5 0.2016377 0.4297007 0.2016377 0.3594013 0.2016377 0.2891021 0.9120053 0.5222858 0.9120053 0.5231671 0.827477 0.5333264 0.8212466 0.527096 0.8214392 0.5267625 0.8278106 0.5331339 0.8297576 0.5418373 0.8301427 0.5418373 0.827477 0.5503482 0.8278106 0.5505408 0.8212466 0.5565787 0.8214392 0.5569122 0.8127357 0.5588592 0.8127357 0.5592443 0.8042248 0.5565787 0.8040322 0.5569122 0.7979944 0.5503482 0.7976608 0.5505408 0.7957138 0.5418373 0.7953287 0.5418373 0.7979944 0.5333264 0.7976608 0.5331339 0.8042248 0.527096 0.8040322 0.5267625 0.8127357 0.5248154 0.8127357 0.5244304 0.9273396 0.5320203 0.9208586 0.5255393 0.9212993 0.524776 0.9281028 0.5315796 0.9297118 0.5408735 0.930593 0.5408735 0.9273396 0.5497267 0.9281028 0.5501674 0.9208586 0.5562077 0.9212993 0.556971 0.9120053 0.5585799 0.9120053 0.5594613 0.9031522 0.5562077 0.9027115 0.556971 0.8966712 0.5497267 0.8959079 0.5501674 0.8942989 0.5408735 0.8934176 0.5408735 0.8966712 0.5320203 0.8959079 0.5315796 0.9031522 0.5255393 0.9027115 0.524776 0.6579289 0.9217958 0.6854293 0.8514967 0.6854292 0.9217958 0.6579289 0.9217958 0.6511684 0.9217958 0.6511684 0.9217958 0.4973662 0.9217958 0.2016376 0.9217958 0.8405883 0.5374504 0.8429206 0.546176 0.8492716 0.5526265 0.8580335 0.5549119 0.8667731 0.5525877 0.8731749 0.5461923 0.8755231 0.5374504 0.8731716 0.5287106 0.8667677 0.5223224 0.8580335 0.5199772 0.8492895 0.5223054 0.8429155 0.528722 0.8562516 0.5671748 0.8565179 0.5640942 0.8584476 0.5612754 0.8618536 0.5609524 0.8659478 0.5600834 0.8672163 0.5640787 0.8677572 0.5671748 0.8677806 0.5705968 0.8645437 0.5718343 0.8618536 0.5722837 0.8587529 0.5725453 0.8571286 0.5699028 0.4282282 0.5000921 0.4282282 0.5704643 0.7385792 0.5704643 0.7385792 0.5000921 0.4282282 0.4297071 0.7385792 0.4297071 0.4282282 0.3592896 0.7385792 0.3592896 0.4282282 0.2888258 0.7385792 0.2888258 0.4282282 0.2183164 0.7385792 0.2183164 0.7385792 0.1477737 0.4282282 0.9227813 0.7385792 0.9227813 0.4282282 0.8522385 0.7385793 0.8522385 0.4282283 0.7817297 0.7385793 0.7817297 0.4282283 0.7112665 0.7385793 0.7112665 0.4282282 0.6408486 0.7385792 0.6408486 0.4282282 0.07721862 0.4282282 0.1477737 0.7385792 0.07721862</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings2_uShape-map1-array\" count=\"213\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"front_bearings2_uShape-vertices\" name=\"front_bearings2_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#front_bearings2_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"108\">\r\n          <input semantic=\"VERTEX\" source=\"#front_bearings2_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#front_bearings2_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#front_bearings2_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 11 1 1 12 13 2 13 12 3 14 1 4 12 2 5 15 14 6 16 13 7 13 2 8 155 3 9 17 15 10 156 14 11 157 3 12 17 4 13 18 16 14 19 15 15 156 4 16 18 5 17 20 17 18 21 16 19 19 5 20 20 6 21 22 18 22 23 17 23 21 6 24 22 7 25 24 19 26 25 18 27 23 7 28 24 8 29 26 20 30 27 19 31 25 8 32 26 9 33 28 21 34 29 20 35 27 9 36 28 10 37 30 22 38 31 21 39 29 10 40 30 11 41 32 23 42 33 22 43 31 11 44 32 0 45 11 12 46 14 23 47 33 73 48 0 72 49 1 100 50 179 101 51 180 74 52 2 73 48 0 101 51 180 102 53 181 75 54 3 74 52 2 102 53 181 103 55 182 76 56 4 75 54 3 103 55 182 104 57 183 77 58 5 76 56 4 104 57 183 105 59 184 78 60 6 77 58 5 105 59 184 106 61 185 79 62 7 78 60 6 106 61 185 107 63 186 80 64 8 79 62 7 107 63 186 96 65 175 81 66 9 80 64 8 96 65 175 97 67 176 82 68 10 81 66 9 97 67 176 98 69 177 83 70 36 82 68 10 98 69 177 99 71 178 72 49 1 83 70 36 99 71 178 100 50 179 12 72 37 13 73 38 91 74 170 92 75 171 13 73 38 14 76 39 90 77 169 91 74 170 14 76 39 15 78 40 89 79 168 90 77 169 15 78 40 16 80 41 88 81 167 89 79 168 16 80 41 17 82 42 87 83 166 88 81 167 17 82 42 18 84 43 86 85 165 87 83 166 18 84 43 19 86 44 85 87 164 86 85 165 19 86 44 20 88 45 84 89 163 85 87 164 20 88 45 21 90 46 95 91 174 84 89 163 21 90 46 22 92 47 94 93 173 95 91 174 22 92 47 23 94 48 93 95 172 94 93 173 23 94 48 12 72 37 92 75 171 93 95 172 1 96 109 0 97 110 24 98 111 25 99 112 2 100 113 1 101 109 25 102 112 26 103 114 3 104 115 2 105 113 26 106 114 27 107 116 4 108 117 3 109 115 27 110 116 28 111 118 5 112 119 4 113 117 28 114 118 29 115 120 6 116 121 5 117 119 29 118 120 30 119 122 7 120 123 6 121 121 30 122 122 31 123 124 8 124 125 7 125 123 31 126 124 32 127 126 9 128 127 8 129 125 32 130 126 33 131 128 10 132 129 9 133 127 33 134 128 34 135 130 11 136 131 10 137 129 34 138 130 35 139 132 0 140 110 11 141 131 35 142 132 24 143 111 25 144 34 24 145 35 36 146 49 37 147 50 26 148 51 25 149 34 37 150 50 38 151 52 27 152 53 26 153 158 38 154 159 39 155 54 28 156 55 27 157 53 39 158 54 40 159 56 29 160 57 28 161 55 40 162 56 41 163 58 30 164 59 29 165 57 41 166 58 42 167 60 31 168 61 30 169 59 42 170 60 43 171 62 32 172 63 31 173 61 43 174 62 44 175 64 33 176 65 32 177 63 44 178 64 45 179 66 34 180 67 33 181 65 45 182 66 46 183 68 35 184 69 34 185 67 46 186 68 47 187 70 24 188 35 35 189 69 47 190 70 36 191 49 37 192 133 36 193 134 48 194 135 49 195 136 38 196 137 37 197 133 49 198 136 50 199 138 39 200 139 38 201 137 50 202 138 51 203 140 40 204 141 39 205 139 51 206 140 52 207 142 41 208 143 40 209 141 52 210 142 53 211 144 42 212 145 41 213 143 53 214 144 54 215 146 43 216 147 42 217 145 54 218 146 55 219 148 44 220 149 43 221 147 55 222 148 56 223 150 45 224 151 44 225 149 56 226 150 57 227 152 46 228 153 45 229 151 57 230 152 58 231 154 47 232 108 46 233 153 58 234 154 59 235 107 36 236 134 47 237 108 59 238 107 48 239 135 49 240 71 48 241 72 60 242 73 61 243 74 50 244 75 49 245 71 61 246 74 62 247 76 51 248 77 50 249 160 62 250 161 63 251 78 52 252 79 51 253 77 63 254 78 64 255 80 53 256 81 52 257 79 64 258 80 65 259 82 54 260 83 53 261 81 65 262 82 66 263 84 55 264 85 54 265 83 66 266 84 67 267 86 56 268 87 55 269 85 67 270 86 68 271 88 57 272 89 56 273 87 68 274 88 69 275 90 58 276 91 57 277 89 69 278 90 70 279 92 59 280 93 58 281 91 70 282 92 71 283 94 48 284 72 59 285 93 71 286 94 60 287 73 61 288 74 60 289 73 72 290 95 73 291 96 62 292 76 61 293 74 73 294 96 74 295 97 63 296 78 62 297 161 74 298 162 75 299 98 64 300 80 63 301 78 75 302 98 76 303 99 65 304 82 64 305 80 76 306 99 77 307 100 66 308 84 65 309 82 77 310 100 78 311 101 67 312 86 66 313 84 78 314 101 79 315 102 68 316 88 67 317 86 79 318 102 80 319 103 69 320 90 68 321 88 80 322 103 81 323 104 70 324 92 69 325 90 81 326 104 82 327 105 71 328 94 70 329 92 82 330 105 83 331 106 60 332 73 71 333 94 83 334 106 72 335 95 85 336 187 84 337 188 96 338 189 107 339 190 86 340 191 85 341 187 107 342 190 106 343 192 87 344 193 86 345 191 106 346 192 105 347 194 88 348 195 87 349 193 105 350 194 104 351 196 89 352 197 88 353 195 104 354 196 103 355 198 90 356 211 89 357 197 103 358 198 102 359 199 91 360 210 90 361 211 102 362 199 101 363 212 92 364 202 91 365 200 101 366 201 100 367 203 93 368 204 92 369 202 100 370 203 99 371 205 94 372 206 93 373 204 99 374 205 98 375 207 95 376 208 94 377 206 98 378 207 97 379 209 84 380 188 95 381 208 97 382 209 96 383 189</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>front_bearings2_uShape</originalMayaNodeId>\r\n          <double_sided>0</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"front_spacer_uShape\" name=\"front_spacer_uShape\">\r\n      <mesh>\r\n        <source id=\"front_spacer_uShape-positions\" name=\"front_spacer_uShape-positions\">\r\n          <float_array id=\"front_spacer_uShape-positions-array\" count=\"216\">-0.5547514 -3.349625 -1.933907 -0.5547514 -1.933907 -3.349625 -0.5547514 0 -3.867814 -0.5547514 1.933907 -3.349625 -0.5547514 3.349625 -1.933907 -0.5547514 3.867814 0 -0.5547514 3.349625 1.933907 -0.5547514 1.933907 3.349625 -0.5547514 0 3.867814 -0.5547514 -1.933907 3.349625 -0.5547514 -3.349625 1.933907 -0.5547514 -3.867814 0 0.3160135 -3.349625 -1.933907 0.3160135 -1.933907 -3.349625 0.3160135 0 -3.867814 0.3160135 1.933907 -3.349625 0.3160135 3.349625 -1.933907 0.3160135 3.867814 0 0.3160135 3.349625 1.933907 0.3160135 1.933907 3.349625 0.3160135 0 3.867814 0.3160135 -1.933907 3.349625 0.3160135 -3.349625 1.933907 0.3160135 -3.867814 0 0.4317819 -3.278731 -1.892977 0.4317819 -1.892977 -3.278731 0.4317819 0 -3.785953 0.4317819 1.892977 -3.278731 0.4317819 3.278731 -1.892977 0.4317819 3.785953 0 0.4317819 3.278731 1.892977 0.4317819 1.892977 3.278731 0.4317819 0 3.785953 0.4317819 -1.892977 3.278731 0.4317819 -3.278731 1.892977 0.4317819 -3.785953 0 -0.6415777 -3.261008 -1.882744 -0.6415777 -1.882744 -3.261008 -0.6415777 0 -3.765488 -0.6415777 1.882744 -3.261008 -0.6415777 3.261008 -1.882744 -0.6415777 3.765488 0 -0.6415777 3.261008 1.882744 -0.6415777 1.882744 3.261008 -0.6415777 0 3.765488 -0.6415777 -1.882744 3.261008 -0.6415777 -3.261008 1.882744 -0.6415777 -3.765488 0 0.4317819 0 2.780591 0.4317819 1.390749 2.408847 0.4317819 2.418909 1.396558 0.4317819 2.783183 0 0.4317819 2.412726 -1.392988 0.4317819 1.393359 -2.413368 0.4317819 0 -2.787652 0.4317819 -1.393054 -2.412839 0.4317819 -2.411243 -1.392132 0.4317819 -2.78506 0 0.4317819 -2.423961 1.399475 0.4317819 -1.391218 2.40966 -0.6415777 0 2.780591 -0.6415777 1.390749 2.408847 -0.6415777 2.418909 1.396558 -0.6415777 2.783183 0 -0.6415777 2.412726 -1.392988 -0.6415777 1.393359 -2.413368 -0.6415777 0 -2.787652 -0.6415777 -1.393054 -2.412839 -0.6415777 -2.411243 -1.392132 -0.6415777 -2.78506 0 -0.6415777 -2.423961 1.393705 -0.6415777 -1.391218 2.40966</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_spacer_uShape-positions-array\" count=\"72\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_spacer_uShape-normals\" name=\"front_spacer_uShape-normals\">\r\n          <float_array id=\"front_spacer_uShape-normals-array\" count=\"720\">0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588191 0 0.9659258 -0.2588191 0 0.9659258 -0.2588191 0 0.9659258 -0.2588191 0 0.9659258 0.2588191 0 0.9659258 0.2588191 0 0.9659258 0.2588191 0 0.9659258 0.2588191 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588191 0 -0.9659258 0.2588191 0 -0.9659258 0.2588191 0 -0.9659258 0.2588191 0 -0.9659258 -0.2588191 0 -0.9659258 -0.2588191 0 -0.9659258 -0.2588191 0 -0.9659258 -0.2588191 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.56401 -0.5839062 -0.5839062 0.56401 -0.5839062 -0.5839062 0.56401 -0.5839062 -0.5839062 0.56401 -0.5839062 -0.5839062 0.5640106 -0.2137244 -0.7976303 0.5640106 -0.2137244 -0.7976303 0.5640106 -0.2137244 -0.7976303 0.5640106 -0.2137244 -0.7976303 0.5640104 0.2137244 -0.7976303 0.5640104 0.2137244 -0.7976303 0.5640104 0.2137244 -0.7976303 0.5640104 0.2137244 -0.7976303 0.56401 0.5839062 -0.5839062 0.56401 0.5839062 -0.5839062 0.56401 0.5839062 -0.5839062 0.56401 0.5839062 -0.5839062 0.5640107 0.7976302 -0.2137245 0.5640107 0.7976302 -0.2137245 0.5640107 0.7976302 -0.2137245 0.5640107 0.7976302 -0.2137245 0.5640107 0.7976302 0.2137245 0.5640107 0.7976302 0.2137245 0.5640107 0.7976302 0.2137245 0.5640107 0.7976302 0.2137245 0.56401 0.5839062 0.5839062 0.56401 0.5839062 0.5839062 0.56401 0.5839062 0.5839062 0.56401 0.5839062 0.5839062 0.5640106 0.2137244 0.7976303 0.5640106 0.2137244 0.7976303 0.5640106 0.2137244 0.7976303 0.5640106 0.2137244 0.7976303 0.5640104 -0.2137244 0.7976303 0.5640104 -0.2137244 0.7976303 0.5640104 -0.2137244 0.7976303 0.5640104 -0.2137244 0.7976303 0.56401 -0.5839062 0.5839062 0.56401 -0.5839062 0.5839062 0.56401 -0.5839062 0.5839062 0.56401 -0.5839062 0.5839062 0.5640107 -0.7976302 0.2137245 0.5640107 -0.7976302 0.2137245 0.5640107 -0.7976302 0.2137245 0.5640107 -0.7976302 0.2137245 0.5640107 -0.7976302 -0.2137245 0.5640107 -0.7976302 -0.2137245 0.5640107 -0.7976302 -0.2137245 0.5640107 -0.7976302 -0.2137245 -0.7512865 -0.4666737 -0.4666739 -0.7512865 -0.4666737 -0.4666739 -0.7512865 -0.4666737 -0.4666739 -0.7512865 -0.4666737 -0.4666739 -0.7512868 -0.1708144 -0.6374877 -0.7512868 -0.1708144 -0.6374877 -0.7512868 -0.1708144 -0.6374877 -0.7512868 -0.1708144 -0.6374877 -0.7512869 0.1708144 -0.6374876 -0.7512869 0.1708144 -0.6374876 -0.7512869 0.1708144 -0.6374876 -0.7512869 0.1708144 -0.6374876 -0.7512865 0.4666736 -0.4666736 -0.7512865 0.4666736 -0.4666736 -0.7512865 0.4666736 -0.4666736 -0.7512865 0.4666736 -0.4666736 -0.7512869 0.6374876 -0.1708143 -0.7512869 0.6374876 -0.1708143 -0.7512869 0.6374876 -0.1708143 -0.7512869 0.6374876 -0.1708143 -0.751287 0.6374875 0.1708143 -0.751287 0.6374875 0.1708143 -0.751287 0.6374875 0.1708143 -0.751287 0.6374875 0.1708143 -0.7512865 0.4666737 0.4666739 -0.7512865 0.4666737 0.4666739 -0.7512865 0.4666737 0.4666739 -0.7512865 0.4666737 0.4666739 -0.7512868 0.1708144 0.6374877 -0.7512868 0.1708144 0.6374877 -0.7512868 0.1708144 0.6374877 -0.7512868 0.1708144 0.6374877 -0.7512869 -0.1708144 0.6374876 -0.7512869 -0.1708144 0.6374876 -0.7512869 -0.1708144 0.6374876 -0.7512869 -0.1708144 0.6374876 -0.7512865 -0.4666736 0.4666736 -0.7512865 -0.4666736 0.4666736 -0.7512865 -0.4666736 0.4666736 -0.7512865 -0.4666736 0.4666736 -0.7512869 -0.6374876 0.1708143 -0.7512869 -0.6374876 0.1708143 -0.7512869 -0.6374876 0.1708143 -0.7512869 -0.6374876 0.1708143 -0.751287 -0.6374875 -0.1708143 -0.751287 -0.6374875 -0.1708143 -0.751287 -0.6374875 -0.1708143 -0.751287 -0.6374875 -0.1708143 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.7015857 -0.712585 0 -0.7015857 -0.712585 0 -0.7015857 -0.712585 0 -0.7015857 -0.712585 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.9664087 0.2570104 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.9657876 0.2593344 0 0.9657876 0.2593344 0 0.9657876 0.2593344 0 0.9657876 0.2593344 6.72696e-4 0.9681616 -0.2503253 6.72696e-4 0.9681616 -0.2503253 6.72696e-4 0.9681616 -0.2503253 6.72696e-4 0.9681616 -0.2503253 0.001918549 0.7002732 -0.7138724 0.001918549 0.7002732 -0.7138724 0.001918549 0.7002732 -0.7138724 0.001918549 0.7002732 -0.7138724 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455 0 0.2576235 -0.9662455</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_spacer_uShape-normals-array\" count=\"240\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_spacer_uShape-map1\" name=\"front_spacer_uShape-map1\">\r\n          <float_array id=\"front_spacer_uShape-map1-array\" count=\"252\">0.4600119 0.2187839 0.4600119 0.1484799 0.5582584 0.1484799 0.5582584 0.2187839 0.4600119 0.0781759 0.5582583 0.0781759 0.460012 0.8515201 0.460012 0.781216 0.5582584 0.781216 0.460012 0.710912 0.5582584 0.710912 0.4600119 0.6406081 0.5582584 0.6406081 0.4600119 0.570304 0.5582584 0.570304 0.4600119 0.5 0.5582584 0.5 0.4600119 0.429696 0.5582584 0.429696 0.4600119 0.359392 0.5582584 0.359392 0.4600119 0.289088 0.5582583 0.289088 0.7875311 0.1484799 0.787531 0.2187839 0.787531 0.0781759 0.787531 0.781216 0.787531 0.710912 0.787531 0.6406081 0.787531 0.570304 0.787531 0.5 0.7875309 0.429696 0.5 0.5544413 0.4675921 0.563125 0.7875309 0.359392 0.787531 0.289088 0.2799621 0.2187839 0.2799621 0.1484799 0.2799621 0.0781759 0.2799621 0.8515201 0.2799621 0.781216 0.2799621 0.710912 0.2799621 0.6406081 0.2799621 0.570304 0.279962 0.5 0.2799621 0.429696 0.5558288 0.5870245 0.5322328 0.5634284 0.2799621 0.359392 0.279962 0.289088 0.4438678 0.5868492 0.4351841 0.6192572 0.4438678 0.6516652 0.4675921 0.6753894 0.5 0.6840731 0.532408 0.6753894 0.5561322 0.6516652 0.5648159 0.6192572 0.5561322 0.5868492 0.532408 0.563125 0.5 0.5547917 0.4677672 0.5634284 0.4441712 0.5870245 0.4355345 0.6192572 0.4441712 0.65149 0.4677672 0.675086 0.5 0.6837227 0.5322328 0.675086 0.5558288 0.65149 0.5644655 0.6192572 0.5582584 0.9218241 0.5582583 0.8515201 0.787531 0.8515201 0.7875311 0.9218241 0.460012 0.9218241 0.2799621 0.9218241 0.4616158 0.6192572 0.470056 0.6365454 0.4831887 0.6483753 0.5 0.6458355 0.5130834 0.6419183 0.5253736 0.6339067 0.5340958 0.6192572 0.5362645 0.5983199 0.5218852 0.581351 0.5 0.5753109 0.4760409 0.5777588 0.4610011 0.5967411 0.4694272 0.6192572 0.4773369 0.6323417 0.4872977 0.6412583 0.5 0.6447307 0.5127367 0.641318 0.5222757 0.6321181 0.5231497 0.6192572 0.5194632 0.6080201 0.511604 0.5991585 0.5 0.5950089 0.4875466 0.5976872 0.4810066 0.6082914 0.6895286 0.5703047 0.6895286 0.5000919 0.4772789 0.5000919 0.4772789 0.5703047 0.6895286 0.4298663 0.4772789 0.4298663 0.6895286 0.3596082 0.4772789 0.3596082 0.6895286 0.289304 0.4772788 0.2893039 0.6895286 0.2189542 0.4772789 0.2189542 0.6895286 0.1485711 0.6895286 0.921824 0.4772789 0.9218241 0.6895286 0.851441 0.4772789 0.851441 0.6895286 0.7810917 0.4772789 0.7810917 0.6895286 0.7110285 0.4772789 0.7107888 0.6895286 0.6405296 0.4772788 0.6405296 0.6895286 0.07817596 0.4772788 0.07817593 0.4772788 0.1485711</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_spacer_uShape-map1-array\" count=\"126\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"front_spacer_uShape-vertices\" name=\"front_spacer_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#front_spacer_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"72\">\r\n          <input semantic=\"VERTEX\" source=\"#front_spacer_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#front_spacer_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#front_spacer_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 13 2 2 12 3 3 1 4 1 2 5 4 14 6 5 13 7 2 2 8 74 3 9 6 15 10 71 14 11 70 3 12 6 4 13 7 16 14 8 15 15 71 4 16 7 5 17 9 17 18 10 16 19 8 5 20 9 6 21 11 18 22 12 17 23 10 6 24 11 7 25 13 19 26 14 18 27 12 7 28 13 8 29 15 20 30 16 19 31 14 8 32 15 9 33 17 21 34 18 20 35 16 9 36 17 10 37 19 22 38 20 21 39 18 10 40 19 11 41 21 23 42 22 22 43 20 11 44 21 0 45 0 12 46 3 23 47 22 24 48 59 25 49 58 55 50 83 56 51 84 25 49 58 26 52 57 54 53 82 55 50 83 26 52 57 27 54 56 53 55 81 54 53 82 27 54 56 28 56 55 52 57 80 53 55 81 28 56 55 29 58 54 51 59 79 52 57 80 29 58 54 30 60 53 50 61 78 51 59 79 30 60 53 31 62 52 49 63 77 50 61 78 31 62 52 32 64 51 48 65 76 49 63 77 32 64 51 33 66 50 59 67 87 48 65 76 33 66 50 34 68 33 58 69 86 59 67 87 34 68 33 35 70 32 57 71 85 58 69 86 35 70 32 24 48 59 56 51 84 57 71 85 12 72 3 13 73 2 25 74 23 24 75 24 13 76 2 14 77 5 26 78 25 25 79 23 14 80 70 15 81 71 27 82 72 26 83 73 15 84 71 16 85 8 28 86 26 27 87 72 16 88 8 17 89 10 29 90 27 28 91 26 17 92 10 18 93 12 30 94 28 29 95 27 18 96 12 19 97 14 31 98 29 30 99 28 19 100 14 20 101 16 32 102 30 31 103 29 20 104 16 21 105 18 33 106 31 32 107 30 21 108 18 22 109 20 34 110 34 33 111 31 22 112 20 23 113 22 35 114 35 34 115 34 23 116 22 12 117 3 24 118 24 35 119 35 1 120 1 0 121 0 36 122 36 37 123 37 2 124 4 1 125 1 37 126 37 38 127 38 3 128 6 2 129 74 38 130 75 39 131 39 4 132 7 3 133 6 39 134 39 40 135 40 5 136 9 4 137 7 40 138 40 41 139 41 6 140 11 5 141 9 41 142 41 42 143 42 7 144 13 6 145 11 42 146 42 43 147 43 8 148 15 7 149 13 43 150 43 44 151 44 9 152 17 8 153 15 44 154 44 45 155 45 10 156 19 9 157 17 45 158 45 46 159 48 11 160 21 10 161 19 46 162 48 47 163 49 0 164 0 11 165 21 47 166 49 36 167 36 44 168 63 43 169 64 61 170 89 60 171 88 43 169 64 42 172 65 62 173 90 61 170 89 42 172 65 41 174 66 63 175 91 62 173 90 41 174 66 40 176 67 64 177 92 63 175 91 40 176 67 39 178 68 65 179 93 64 177 92 39 178 68 38 180 69 66 181 94 65 179 93 38 180 69 37 182 46 67 183 95 66 181 94 37 182 46 36 184 47 68 185 96 67 183 95 36 184 47 47 186 60 69 187 97 68 185 96 47 186 60 46 188 61 70 189 98 69 187 97 46 188 61 45 190 62 71 191 99 70 189 98 45 190 62 44 168 63 60 171 88 71 191 99 60 192 100 61 193 101 49 194 102 48 195 103 61 196 101 62 197 104 50 198 105 49 199 102 62 200 104 63 201 106 51 202 107 50 203 105 63 204 106 64 205 108 52 206 109 51 207 107 64 208 108 65 209 110 53 210 111 52 211 109 65 212 110 66 213 112 54 214 125 53 215 111 66 216 112 67 217 123 55 218 124 54 219 125 67 220 113 68 221 115 56 222 116 55 223 114 68 224 115 69 225 117 57 226 118 56 227 116 69 228 117 70 229 119 58 230 120 57 231 118 70 232 119 71 233 121 59 234 122 58 235 120 71 236 121 60 237 100 48 238 103 59 239 122</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>front_spacer_uShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"front_bearings1_uShape\" name=\"front_bearings1_uShape\">\r\n      <mesh>\r\n        <source id=\"front_bearings1_uShape-positions\" name=\"front_bearings1_uShape-positions\">\r\n          <float_array id=\"front_bearings1_uShape-positions-array\" count=\"288\">-1.337427 -3.464217 -2.000067 -1.337427 -2.000067 -3.464217 -1.337427 0 -4.000133 -1.337427 2.000067 -3.464217 -1.337427 3.464217 -2.000067 -1.337427 4.000133 0 -1.337427 3.464217 2.000067 -1.337427 2.000067 3.464217 -1.337427 0 4.000133 -1.337427 -2.000067 3.464217 -1.337427 -3.464217 2.000067 -1.337427 -4.000133 0 1.391745 -3.464217 -2.000067 1.391745 -2.000067 -3.464217 1.391745 0 -4.000133 1.391745 2.000067 -3.464217 1.391745 3.464217 -2.000067 1.391745 4.000133 0 1.391745 3.464217 2.000067 1.391745 2.000067 3.464217 1.391745 0 4.000133 1.391745 -2.000067 3.464217 1.391745 -3.464217 2.000067 1.391745 -4.000133 0 1.493043 -3.357877 -1.938671 1.493043 -1.938671 -3.357877 1.493043 0 -3.877342 1.493043 1.938671 -3.357877 1.493043 3.357877 -1.938671 1.493043 3.877342 0 1.493043 3.357877 1.938671 1.493043 1.938671 3.357877 1.493043 0 3.877342 1.493043 -1.938671 3.357877 1.493043 -3.357877 1.938671 1.493043 -3.877342 0 -1.409782 -3.384461 -1.95402 -1.409782 -1.95402 -3.384461 -1.409782 0 -3.90804 -1.409782 1.95402 -3.384461 -1.409782 3.384461 -1.95402 -1.409782 3.90804 0 -1.409782 3.384461 1.95402 -1.409782 1.95402 3.384461 -1.409782 0 3.90804 -1.409782 -1.95402 3.384461 -1.409782 -3.384461 1.95402 -1.409782 -3.90804 0 -1.482138 -3.464217 -2.000067 -1.482138 -2.000067 -3.464217 -1.482138 0 -4.000133 -1.482138 2.000067 -3.464217 -1.482138 3.464217 -2.000067 -1.482138 4.000133 0 -1.482138 3.464217 2.000067 -1.482138 2.000067 3.464217 -1.482138 0 4.000133 -1.482138 -2.000067 3.464217 -1.482138 -3.464217 2.000067 -1.482138 -4.000133 0 -1.713675 -3.464217 -2.000067 -1.713675 -2.000067 -3.464217 -1.713675 0 -4.000133 -1.713675 2.000067 -3.464217 -1.713675 3.464217 -2.000067 -1.713675 4.000133 0 -1.713675 3.464217 2.000067 -1.713675 2.000067 3.464217 -1.713675 0 4.000133 -1.713675 -2.000067 3.464217 -1.713675 -3.464217 2.000067 -1.713675 -4.000133 0 -1.713675 0 2.780591 -1.713675 -1.391218 2.40966 -1.713675 -2.423961 1.393705 -1.713675 -2.78506 0 -1.713675 -2.411243 -1.392132 -1.713675 -1.393054 -2.412839 -1.713675 0 -2.787652 -1.713675 1.393359 -2.413368 -1.713675 2.412726 -1.392988 -1.713675 2.783183 0 -1.713675 2.418909 1.396558 -1.713675 1.390749 2.408847 1.493043 0 2.780591 1.493043 1.390749 2.408847 1.493043 2.418909 1.396558 1.493043 2.783183 0 1.493043 2.412726 -1.392988 1.493043 1.393359 -2.413368 1.493043 0 -2.787652 1.493043 -1.393054 -2.412839 1.493043 -2.411243 -1.392132 1.493043 -2.78506 0 1.493043 -2.423961 1.393705 1.493043 -1.391218 2.40966</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings1_uShape-positions-array\" count=\"96\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_bearings1_uShape-normals\" name=\"front_bearings1_uShape-normals\">\r\n          <float_array id=\"front_bearings1_uShape-normals-array\" count=\"1008\">0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 -0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.9659259 0.2588192 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 0 -0.9659259 -0.2588192 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7604147 -0.4592218 -0.459222 0.7604147 -0.4592218 -0.459222 0.7604147 -0.4592218 -0.459222 0.7604147 -0.4592218 -0.459222 0.760415 -0.1680868 -0.6273084 0.760415 -0.1680868 -0.6273084 0.760415 -0.1680868 -0.6273084 0.760415 -0.1680868 -0.6273084 0.7604148 0.1680869 -0.6273087 0.7604148 0.1680869 -0.6273087 0.7604148 0.1680869 -0.6273087 0.7604148 0.1680869 -0.6273087 0.7604145 0.4592218 -0.4592223 0.7604145 0.4592218 -0.4592223 0.7604145 0.4592218 -0.4592223 0.7604145 0.4592218 -0.4592223 0.7604145 0.627309 -0.168087 0.7604145 0.627309 -0.168087 0.7604145 0.627309 -0.168087 0.7604145 0.627309 -0.168087 0.7604145 0.6273091 0.168087 0.7604145 0.6273091 0.168087 0.7604145 0.6273091 0.168087 0.7604145 0.6273091 0.168087 0.7604147 0.4592218 0.459222 0.7604147 0.4592218 0.459222 0.7604147 0.4592218 0.459222 0.7604147 0.4592218 0.459222 0.760415 0.1680868 0.6273084 0.760415 0.1680868 0.6273084 0.760415 0.1680868 0.6273084 0.760415 0.1680868 0.6273084 0.7604148 -0.1680869 0.6273087 0.7604148 -0.1680869 0.6273087 0.7604148 -0.1680869 0.6273087 0.7604148 -0.1680869 0.6273087 0.7604145 -0.4592218 0.4592223 0.7604145 -0.4592218 0.4592223 0.7604145 -0.4592218 0.4592223 0.7604145 -0.4592218 0.4592223 0.7604145 -0.627309 0.168087 0.7604145 -0.627309 0.168087 0.7604145 -0.627309 0.168087 0.7604145 -0.627309 0.168087 0.7604145 -0.6273091 -0.168087 0.7604145 -0.6273091 -0.168087 0.7604145 -0.6273091 -0.168087 0.7604145 -0.6273091 -0.168087 -0.7757775 -0.4461886 -0.4461894 -0.7757775 -0.4461886 -0.4461894 -0.7757775 -0.4461886 -0.4461894 -0.7757775 -0.4461886 -0.4461894 -0.7757775 -0.1633167 -0.6095055 -0.7757775 -0.1633167 -0.6095055 -0.7757775 -0.1633167 -0.6095055 -0.7757775 -0.1633167 -0.6095055 -0.7757775 0.1633166 -0.6095057 -0.7757775 0.1633166 -0.6095057 -0.7757775 0.1633166 -0.6095057 -0.7757775 0.1633166 -0.6095057 -0.7757772 0.446189 -0.4461897 -0.7757772 0.446189 -0.4461897 -0.7757772 0.446189 -0.4461897 -0.7757772 0.446189 -0.4461897 -0.7757769 0.6095062 -0.1633168 -0.7757769 0.6095062 -0.1633168 -0.7757769 0.6095062 -0.1633168 -0.7757769 0.6095062 -0.1633168 -0.7757771 0.6095061 0.1633168 -0.7757771 0.6095061 0.1633168 -0.7757771 0.6095061 0.1633168 -0.7757771 0.6095061 0.1633168 -0.7757775 0.4461886 0.4461894 -0.7757775 0.4461886 0.4461894 -0.7757775 0.4461886 0.4461894 -0.7757775 0.4461886 0.4461894 -0.7757775 0.1633167 0.6095055 -0.7757775 0.1633167 0.6095055 -0.7757775 0.1633167 0.6095055 -0.7757775 0.1633167 0.6095055 -0.7757775 -0.1633166 0.6095057 -0.7757775 -0.1633166 0.6095057 -0.7757775 -0.1633166 0.6095057 -0.7757775 -0.1633166 0.6095057 -0.7757772 -0.446189 0.4461897 -0.7757772 -0.446189 0.4461897 -0.7757772 -0.446189 0.4461897 -0.7757772 -0.446189 0.4461897 -0.7757769 -0.6095062 0.1633168 -0.7757769 -0.6095062 0.1633168 -0.7757769 -0.6095062 0.1633168 -0.7757769 -0.6095062 0.1633168 -0.7757771 -0.6095061 -0.1633168 -0.7757771 -0.6095061 -0.1633168 -0.7757771 -0.6095061 -0.1633168 -0.7757771 -0.6095061 -0.1633168 0.7757769 -0.4461896 -0.4461896 0.7757769 -0.4461896 -0.4461896 0.7757769 -0.4461896 -0.4461896 0.7757769 -0.4461896 -0.4461896 0.7757775 -0.1633167 -0.6095055 0.7757775 -0.1633167 -0.6095055 0.7757775 -0.1633167 -0.6095055 0.7757775 -0.1633167 -0.6095055 0.7757773 0.1633168 -0.6095057 0.7757773 0.1633168 -0.6095057 0.7757773 0.1633168 -0.6095057 0.7757773 0.1633168 -0.6095057 0.775777 0.4461893 -0.4461896 0.775777 0.4461893 -0.4461896 0.775777 0.4461893 -0.4461896 0.775777 0.4461893 -0.4461896 0.7757764 0.6095069 -0.1633167 0.7757764 0.6095069 -0.1633167 0.7757764 0.6095069 -0.1633167 0.7757764 0.6095069 -0.1633167 0.7757764 0.6095068 0.1633167 0.7757764 0.6095068 0.1633167 0.7757764 0.6095068 0.1633167 0.7757764 0.6095068 0.1633167 0.7757769 0.4461896 0.4461896 0.7757769 0.4461896 0.4461896 0.7757769 0.4461896 0.4461896 0.7757769 0.4461896 0.4461896 0.7757775 0.1633167 0.6095055 0.7757775 0.1633167 0.6095055 0.7757775 0.1633167 0.6095055 0.7757775 0.1633167 0.6095055 0.7757773 -0.1633168 0.6095057 0.7757773 -0.1633168 0.6095057 0.7757773 -0.1633168 0.6095057 0.7757773 -0.1633168 0.6095057 0.775777 -0.4461893 0.4461896 0.775777 -0.4461893 0.4461896 0.775777 -0.4461893 0.4461896 0.775777 -0.4461893 0.4461896 0.7757764 -0.6095069 0.1633167 0.7757764 -0.6095069 0.1633167 0.7757764 -0.6095069 0.1633167 0.7757764 -0.6095069 0.1633167 0.7757764 -0.6095068 -0.1633167 0.7757764 -0.6095068 -0.1633167 0.7757764 -0.6095068 -0.1633167 0.7757764 -0.6095068 -0.1633167 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659259 -0.2588193 0 0.9659259 -0.2588193 0 0.9659259 -0.2588193 0 0.9659259 -0.2588193 0 0.9659259 0.2588193 0 0.9659259 0.2588193 0 0.9659259 0.2588193 0 0.9659259 0.2588193 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659259 0.2588193 0 -0.9659259 0.2588193 0 -0.9659259 0.2588193 0 -0.9659259 0.2588193 0 -0.9659259 -0.2588193 0 -0.9659259 -0.2588193 0 -0.9659259 -0.2588193 0 -0.9659259 -0.2588193 0 0.2576233 -0.9662455 0 0.2576233 -0.9662455 0 0.2576233 -0.9662455 0 0.2576233 -0.9662455 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.9680361 -0.2508112 0 0.9680361 -0.2508112 0 0.9680361 -0.2508112 0 0.9680361 -0.2508112 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.9657876 0.2593343 0 0.7079796 0.706233 0 0.7079796 0.706233 0 0.7079796 0.706233 0 0.7079796 0.706233 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.2594231 0.9657638 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.9664087 0.2570103 0 -0.9664087 0.2570103 0 -0.9664087 0.2570103 0 -0.9664087 0.2570103 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.967625 -0.2523926 0 -0.7015857 -0.7125851 0 -0.7015857 -0.7125851 0 -0.7015857 -0.7125851 0 -0.7015857 -0.7125851 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831 0 -0.2582315 -0.9660831</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings1_uShape-normals-array\" count=\"336\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"front_bearings1_uShape-map1\" name=\"front_bearings1_uShape-map1\">\r\n          <float_array id=\"front_bearings1_uShape-map1-array\" count=\"356\">0.3866208 0.5546799 0.3866208 0.5425612 0.6979387 0.1484798 0.6979386 0.2187839 0.3866208 0.5304426 0.6979387 0.0781759 0.3866208 0.6637479 0.3866208 0.6516292 0.6979386 0.781216 0.3866208 0.6395106 0.6979388 0.7109119 0.3866208 0.6273919 0.6979387 0.640608 0.3866208 0.6152732 0.6979387 0.5703039 0.3866208 0.6031546 0.6979387 0.4999999 0.3866208 0.591036 0.6979387 0.4296959 0.3866208 0.5789173 0.6979386 0.3593919 0.3866208 0.5667986 0.6979387 0.2890879 0.8606687 0.1484799 0.8606687 0.2187839 0.8606688 0.0781759 0.8606688 0.7812159 0.8606689 0.7109119 0.8606688 0.640608 0.8606688 0.5703039 0.8606688 0.4999999 0.8606688 0.4296959 0.8606687 0.3593919 0.8606687 0.2890879 0.3850619 0.5546799 0.3850619 0.5425612 0.3850619 0.5304426 0.3850619 0.6637479 0.3850619 0.6516292 0.3850619 0.6395106 0.3850619 0.6273919 0.3850619 0.6152732 0.3850619 0.6031546 0.3850619 0.591036 0.3850619 0.5789173 0.3850619 0.5667986 0.3183725 0.2187839 0.3183725 0.1484798 0.4745744 0.5594846 0.4600688 0.5449789 0.3183725 0.0781759 0.3183725 0.8515201 0.3183725 0.781216 0.3183726 0.7109119 0.3183725 0.640608 0.3183725 0.5703039 0.3183725 0.4999999 0.3183725 0.4296959 0.3183725 0.3593919 0.3183725 0.2890879 0.228534 0.2187839 0.228534 0.1484799 0.2285341 0.0781759 0.2285341 0.8515201 0.2285342 0.781216 0.228534 0.7109119 0.228534 0.640608 0.2285341 0.5703039 0.228534 0.4999999 0.228534 0.4296959 0.228534 0.3593919 0.228534 0.289088 0.4402536 0.5408859 0.4210466 0.5460324 0.4069862 0.5600929 0.4018397 0.5792998 0.4069862 0.5985067 0.4210466 0.6125672 0.4402536 0.6177137 0.4594605 0.6125672 0.4735209 0.5985067 0.4786674 0.5792998 0.4735209 0.5600929 0.4594605 0.5460324 0.4402536 0.5396694 0.4204383 0.5449789 0.4059327 0.5594846 0.4006232 0.5792998 0.4059327 0.599115 0.4204383 0.6136208 0.4402536 0.6189302 0.4600688 0.6136208 0.4745744 0.599115 0.4798839 0.5792998 0.6979387 0.921824 0.6979387 0.8515201 0.8606688 0.8515201 0.8606688 0.921824 0.3364607 0.921824 0.3850619 0.6758665 0.3835029 0.6758665 0.2285341 0.921824 0.3835029 0.5667986 0.3835029 0.5546799 0.3835029 0.5789173 0.3835029 0.591036 0.3835029 0.6031546 0.3835029 0.6152732 0.3835029 0.6273919 0.3835029 0.6395106 0.3835029 0.6516292 0.3835029 0.6637479 0.3835029 0.5304426 0.3183725 0.921824 0.3835029 0.5425612 0.3364608 0.289088 0.3364606 0.2187839 0.3364606 0.3593919 0.3364606 0.4296959 0.3364607 0.4999999 0.3364607 0.5703039 0.3364608 0.640608 0.3364608 0.710912 0.3364607 0.781216 0.3364608 0.8515201 0.3364607 0.0781759 0.3866208 0.6758665 0.3364607 0.1484799 0.4273612 0.5792998 0.4301611 0.573473 0.4336903 0.567932 0.4402536 0.5629957 0.4477768 0.5662691 0.4541965 0.5712498 0.4545345 0.5792998 0.4519714 0.5860652 0.4485759 0.5937145 0.4402536 0.5924738 0.4338015 0.5904751 0.4285578 0.5860524 0.4223629 0.5792998 0.4267166 0.5871153 0.4327717 0.5922588 0.4402536 0.593975 0.4475766 0.5919837 0.4531939 0.5867709 0.4553037 0.5792998 0.4527667 0.5720754 0.4463858 0.5686784 0.4402536 0.5675164 0.4332772 0.5672163 0.4286495 0.5726002 0.6836003 0.641499 0.6836003 0.5707896 0.4832071 0.5707897 0.4832071 0.641499 0.6836003 0.7124842 0.4832071 0.7124842 0.6836003 0.7830306 0.4832071 0.7830306 0.6836003 0.8538651 0.4832071 0.8538651 0.6836003 0.9247336 0.4832071 0.9247336 0.6836003 0.1461472 0.6836003 0.2170158 0.4832071 0.2170157 0.6836003 0.2878507 0.4832071 0.2878507 0.6836003 0.3586399 0.4832071 0.3586399 0.6836003 0.4293825 0.4832071 0.4293826 0.6836003 0.5000926 0.4832071 0.5000926 0.6836003 0.07526639 0.4832071 0.07526642 0.4832071 0.1461472</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#front_bearings1_uShape-map1-array\" count=\"178\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"front_bearings1_uShape-vertices\" name=\"front_bearings1_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#front_bearings1_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"96\">\r\n          <input semantic=\"VERTEX\" source=\"#front_bearings1_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#front_bearings1_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#front_bearings1_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 116 1 1 127 13 2 2 12 3 3 1 4 127 2 5 125 14 6 5 13 7 2 2 8 98 3 9 124 15 10 95 14 11 94 3 12 124 4 13 123 16 14 8 15 15 95 4 16 123 5 17 122 17 18 10 16 19 8 5 20 122 6 21 121 18 22 12 17 23 10 6 24 121 7 25 120 19 26 14 18 27 12 7 28 120 8 29 119 20 30 16 19 31 14 8 32 119 9 33 118 21 34 18 20 35 16 9 36 118 10 37 117 22 38 20 21 39 18 10 40 117 11 41 115 23 42 22 22 43 20 11 44 115 0 45 116 12 46 3 23 47 22 61 48 48 60 49 49 76 50 132 77 51 133 62 52 93 61 48 48 77 51 133 78 53 134 63 54 92 62 52 93 78 53 134 79 55 135 64 56 91 63 54 92 79 55 135 80 57 136 65 58 90 64 56 91 80 57 136 81 59 137 66 60 89 65 58 90 81 59 137 82 61 138 67 62 88 66 60 89 82 61 138 83 63 139 68 64 87 67 62 88 83 63 139 72 65 128 69 66 86 68 64 87 72 65 128 73 67 129 70 68 85 69 66 86 73 67 129 74 69 130 71 70 84 70 68 85 74 69 130 75 71 131 60 49 49 71 70 84 75 71 131 76 50 132 24 72 83 25 73 82 91 74 147 92 75 148 25 73 82 26 76 81 90 77 146 91 74 147 26 76 81 27 78 80 89 79 145 90 77 146 27 78 80 28 80 79 88 81 144 89 79 145 28 80 79 29 82 78 87 83 143 88 81 144 29 82 78 30 84 77 86 85 142 87 83 143 30 84 77 31 86 76 85 87 141 86 85 142 31 86 76 32 88 75 84 89 140 85 87 141 32 88 75 33 90 74 95 91 151 84 89 140 33 90 74 34 92 73 94 93 150 95 91 151 34 92 73 35 94 72 93 95 149 94 93 150 35 94 72 24 72 83 92 75 148 93 95 149 12 96 3 13 97 2 25 98 23 24 99 24 13 100 2 14 101 5 26 102 25 25 103 23 14 104 94 15 105 95 27 106 96 26 107 97 15 108 95 16 109 8 28 110 26 27 111 96 16 112 8 17 113 10 29 114 27 28 115 26 17 116 10 18 117 12 30 118 28 29 119 27 18 120 12 19 121 14 31 122 29 30 123 28 19 124 14 20 125 16 32 126 30 31 127 29 20 128 16 21 129 18 33 130 31 32 131 30 21 132 18 22 133 20 34 134 32 33 135 31 22 136 20 23 137 22 35 138 33 34 139 32 23 140 22 12 141 3 24 142 24 35 143 33 1 144 1 0 145 0 36 146 34 37 147 35 2 148 4 1 149 1 37 150 35 38 151 36 3 152 6 2 153 126 38 154 99 39 155 37 4 156 7 3 157 6 39 158 37 40 159 38 5 160 9 4 161 7 40 162 38 41 163 39 6 164 11 5 165 9 41 166 39 42 167 40 7 168 13 6 169 11 42 170 40 43 171 41 8 172 15 7 173 13 43 174 41 44 175 42 9 176 17 8 177 15 44 178 42 45 179 43 10 180 19 9 181 17 45 182 43 46 183 44 11 184 21 10 185 19 46 186 44 47 187 45 0 188 0 11 189 21 47 190 45 36 191 34 37 192 35 36 193 34 48 194 103 49 195 114 38 196 36 37 197 35 49 198 114 50 199 112 39 200 37 38 201 99 50 202 100 51 203 111 40 204 38 39 205 37 51 206 111 52 207 110 41 208 39 40 209 38 52 210 110 53 211 109 42 212 40 41 213 39 53 214 109 54 215 108 43 216 41 42 217 40 54 218 108 55 219 107 44 220 42 43 221 41 55 222 107 56 223 106 45 224 43 44 225 42 56 226 106 57 227 105 46 228 44 45 229 43 57 230 105 58 231 104 47 232 45 46 233 44 58 234 104 59 235 102 36 236 34 47 237 45 59 238 102 48 239 103 49 240 47 48 241 46 60 242 60 61 243 61 50 244 50 49 245 47 61 246 61 62 247 62 51 248 51 50 249 113 62 250 101 63 251 63 52 252 52 51 253 51 63 254 63 64 255 64 53 256 53 52 257 52 64 258 64 65 259 65 54 260 54 53 261 53 65 262 65 66 263 66 55 264 55 54 265 54 66 266 66 67 267 67 56 268 56 55 269 55 67 270 67 68 271 68 57 272 57 56 273 56 68 274 68 69 275 69 58 276 58 57 277 57 69 278 69 70 279 70 59 280 59 58 281 58 70 282 70 71 283 71 48 284 46 59 285 59 71 286 71 60 287 60 73 288 152 72 289 153 84 290 154 95 291 155 74 292 156 73 293 152 95 294 155 94 295 157 75 296 158 74 297 156 94 298 157 93 299 159 76 300 160 75 301 158 93 302 159 92 303 161 77 304 162 76 305 160 92 306 161 91 307 163 78 308 164 77 309 175 91 310 176 90 311 177 79 312 165 78 313 164 90 314 177 89 315 166 80 316 167 79 317 165 89 318 166 88 319 168 81 320 169 80 321 167 88 322 168 87 323 170 82 324 171 81 325 169 87 326 170 86 327 172 83 328 173 82 329 171 86 330 172 85 331 174 72 332 153 83 333 173 85 334 174 84 335 154</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>front_bearings1_uShape</originalMayaNodeId>\r\n          <double_sided>0</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rear_bearings2_uShape\" name=\"rear_bearings2_uShape\">\r\n      <mesh>\r\n        <source id=\"rear_bearings2_uShape-positions\" name=\"rear_bearings2_uShape-positions\">\r\n          <float_array id=\"rear_bearings2_uShape-positions-array\" count=\"324\">-0.5722035 -2.234658 -1.290181 -0.5722035 -1.290181 -2.234658 -0.5722035 0 -2.580361 -0.5722035 1.290181 -2.234658 -0.5722035 2.234658 -1.290181 -0.5722035 2.580361 0 -0.5722035 2.234658 1.290181 -0.5722035 1.290181 2.234658 -0.5722035 0 2.580361 -0.5722035 -1.290181 2.234658 -0.5722035 -2.234658 1.290181 -0.5722035 -2.580361 0 -0.2943217 -2.234658 -1.290181 -0.2943217 -1.290181 -2.234658 -0.2943217 0 -2.580361 -0.2943217 1.290181 -2.234658 -0.2943217 2.234658 -1.290181 -0.2943217 2.580361 0 -0.2943217 2.234658 1.290181 -0.2943217 1.290181 2.234658 -0.2943217 0 2.580361 -0.2943217 -1.290181 2.234658 -0.2943217 -2.234658 1.290181 -0.2943217 -2.580361 0 -0.5722035 -2.285215 -1.319369 -0.5722035 -1.319369 -2.285215 -0.5722035 0 -2.638739 -0.5722035 1.319369 -2.285215 -0.5722035 2.285215 -1.319369 -0.5722035 2.638739 0 -0.5722035 2.285215 1.319369 -0.5722035 1.319369 2.285215 -0.5722035 0 2.638739 -0.5722035 -1.319369 2.285215 -0.5722035 -2.285215 1.319369 -0.5722035 -2.638739 0 -0.6405163 -2.285215 -1.319369 -0.6405163 -1.319369 -2.285215 -0.6405163 0 -2.638739 -0.6405163 1.319369 -2.285215 -0.6405163 2.285215 -1.319369 -0.6405163 2.638739 0 -0.6405163 2.285215 1.319369 -0.6405163 1.319369 2.285215 -0.6405163 0 2.638739 -0.6405163 -1.319369 2.285215 -0.6405163 -2.285215 1.319369 -0.6405163 -2.638739 0 -0.6405163 -2.398965 -1.385043 -0.6405163 -1.385043 -2.398965 -0.6405163 0 -2.770086 -0.6405163 1.385043 -2.398965 -0.6405163 2.398965 -1.385043 -0.6405163 2.770086 0 -0.6405163 2.398965 1.385043 -0.6405163 1.385043 2.398965 -0.6405163 0 2.770086 -0.6405163 -1.385043 2.398965 -0.6405163 -2.398965 1.385043 -0.6405163 -2.770086 0 -2.454791 -2.398965 -1.385043 -2.454791 -1.385043 -2.398965 -2.454791 0 -2.770086 -2.454791 1.385043 -2.398965 -2.454791 2.398965 -1.385043 -2.454791 2.770086 0 -2.454791 2.398965 1.385043 -2.454791 1.385043 2.398965 -2.454791 0 2.770086 -2.454791 -1.385043 2.398965 -2.454791 -2.398965 1.385043 -2.454791 -2.770086 0 -2.540182 -2.310492 -1.333963 -2.540182 -1.333963 -2.310492 -2.540182 0 -2.667926 -2.540182 1.333963 -2.310492 -2.540182 2.310492 -1.333963 -2.540182 2.667926 0 -2.540182 2.310492 1.333963 -2.540182 1.333963 2.310492 -2.540182 0 2.667926 -2.540182 -1.333963 2.310492 -2.540182 -2.310492 1.333963 -2.540182 -2.667926 0 -0.2943217 0 1.91843 -0.2943217 0.9595277 1.661951 -0.2943217 1.668892 0.9635355 -0.2943217 1.920219 0 -0.2943217 1.664627 -0.9610729 -0.2943217 0.9613287 -1.66507 -0.2943217 0 -1.923302 -0.2943217 -0.961118 -1.664705 -0.2943217 -1.663604 -0.9604822 -0.2943217 -1.921513 0 -0.2943217 -1.665483 0.9615674 -0.2943217 -0.9598514 1.662511 -2.540182 0 1.91843 -2.540182 -0.9598514 1.662512 -2.540182 -1.665483 0.9615674 -2.540182 -1.921513 0 -2.540182 -1.663604 -0.9604822 -2.540182 -0.961118 -1.664705 -2.540182 0 -1.923302 -2.540182 0.9613287 -1.66507 -2.540182 1.664627 -0.9610729 -2.540182 1.920218 0 -2.540182 1.668892 0.9635355 -2.540182 0.9595277 1.661951</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings2_uShape-positions-array\" count=\"108\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_bearings2_uShape-normals\" name=\"rear_bearings2_uShape-normals\">\r\n          <float_array id=\"rear_bearings2_uShape-normals-array\" count=\"1152\">0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.7071066 -0.7071069 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 -0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.258819 -0.9659259 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.7071066 -0.7071069 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 -0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.9659259 0.2588191 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.7071069 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.258819 0.9659259 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.7071066 0.7071069 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 0 -0.9659259 -0.2588191 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.2588192 -0.9659259 0 -0.2588192 -0.9659259 0 -0.2588192 -0.9659259 0 -0.2588192 -0.9659259 0 0.2588192 -0.9659259 0 0.2588192 -0.9659259 0 0.2588192 -0.9659259 0 0.2588192 -0.9659259 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.7071068 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 -0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.9659258 0.2588193 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.2588192 0.9659259 0 0.2588192 0.9659259 0 0.2588192 0.9659259 0 0.2588192 0.9659259 0 -0.2588192 0.9659259 0 -0.2588192 0.9659259 0 -0.2588192 0.9659259 0 -0.2588192 0.9659259 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 0 -0.9659258 -0.2588193 -0.7561821 -0.4627036 -0.4627031 -0.7561821 -0.4627036 -0.4627031 -0.7561821 -0.4627036 -0.4627031 -0.7561821 -0.4627036 -0.4627031 -0.7561826 -0.169361 -0.6320639 -0.7561826 -0.169361 -0.6320639 -0.7561826 -0.169361 -0.6320639 -0.7561826 -0.169361 -0.6320639 -0.7561827 0.1693612 -0.6320638 -0.7561827 0.1693612 -0.6320638 -0.7561827 0.1693612 -0.6320638 -0.7561827 0.1693612 -0.6320638 -0.7561822 0.4627033 -0.4627031 -0.7561822 0.4627033 -0.4627031 -0.7561822 0.4627033 -0.4627031 -0.7561822 0.4627033 -0.4627031 -0.7561824 0.6320642 -0.1693612 -0.7561824 0.6320642 -0.1693612 -0.7561824 0.6320642 -0.1693612 -0.7561824 0.6320642 -0.1693612 -0.7561824 0.6320642 0.1693612 -0.7561824 0.6320642 0.1693612 -0.7561824 0.6320642 0.1693612 -0.7561824 0.6320642 0.1693612 -0.7561821 0.4627036 0.4627031 -0.7561821 0.4627036 0.4627031 -0.7561821 0.4627036 0.4627031 -0.7561821 0.4627036 0.4627031 -0.7561826 0.169361 0.6320639 -0.7561826 0.169361 0.6320639 -0.7561826 0.169361 0.6320639 -0.7561826 0.169361 0.6320639 -0.7561827 -0.1693612 0.6320638 -0.7561827 -0.1693612 0.6320638 -0.7561827 -0.1693612 0.6320638 -0.7561827 -0.1693612 0.6320638 -0.7561822 -0.4627033 0.4627031 -0.7561822 -0.4627033 0.4627031 -0.7561822 -0.4627033 0.4627031 -0.7561822 -0.4627033 0.4627031 -0.7561824 -0.6320642 0.1693612 -0.7561824 -0.6320642 0.1693612 -0.7561824 -0.6320642 0.1693612 -0.7561824 -0.6320642 0.1693612 -0.7561824 -0.6320642 -0.1693612 -0.7561824 -0.6320642 -0.1693612 -0.7561824 -0.6320642 -0.1693612 -0.7561824 -0.6320642 -0.1693612 0 -0.2582317 -0.966083 0 -0.2582317 -0.966083 0 -0.2582317 -0.966083 0 -0.2582317 -0.966083 0 -0.7015858 -0.712585 0 -0.7015858 -0.712585 0 -0.7015858 -0.712585 0 -0.7015858 -0.712585 0 -0.9676249 -0.2523927 0 -0.9676249 -0.2523927 0 -0.9676249 -0.2523927 0 -0.9676249 -0.2523927 0 -0.9664087 0.2570102 0 -0.9664087 0.2570102 0 -0.9664087 0.2570102 0 -0.9664087 0.2570102 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.7074579 0.7067556 0 -0.2594229 0.9657639 0 -0.2594229 0.9657639 0 -0.2594229 0.9657639 0 -0.2594229 0.9657639 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.2598182 0.9656576 0 0.7079794 0.7062331 0 0.7079794 0.7062331 0 0.7079794 0.7062331 0 0.7079794 0.7062331 0 0.9657878 0.2593342 0 0.9657878 0.2593342 0 0.9657878 0.2593342 0 0.9657878 0.2593342 0 0.9663319 -0.257299 0 0.9663319 -0.257299 0 0.9663319 -0.257299 0 0.9663319 -0.257299 0 0.7047465 -0.7094592 0 0.7047465 -0.7094592 0 0.7047465 -0.7094592 0 0.7047465 -0.7094592 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings2_uShape-normals-array\" count=\"384\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_bearings2_uShape-map1\" name=\"rear_bearings2_uShape-map1\">\r\n          <float_array id=\"rear_bearings2_uShape-map1-array\" count=\"426\">0.8728809 0.5608082 0.8682202 0.5561476 0.8745868 0.5671748 0.8728809 0.5735415 0.8682202 0.5782021 0.8618536 0.579908 0.855487 0.5782021 0.8508263 0.5735415 0.8491204 0.5671748 0.8508263 0.5608082 0.855487 0.5561476 0.6579289 0.2188027 0.657929 0.1485035 0.6854293 0.1485035 0.6854293 0.2188028 0.6579289 0.0782041 0.6854292 0.07820415 0.6579289 0.8514967 0.6579289 0.7811973 0.6854292 0.7811972 0.6579289 0.710898 0.6854292 0.7108979 0.6579289 0.6405987 0.6854293 0.6405987 0.6579289 0.5702993 0.6854293 0.5702993 0.6579289 0.5 0.6854292 0.5 0.6579289 0.4297008 0.6854292 0.4297007 0.6579288 0.3594013 0.6854291 0.3594013 0.6579289 0.289102 0.6854293 0.2891021 0.657929 0.1485035 0.6579289 0.2188027 0.8618536 0.5544416 0.8697658 0.5909088 0.8783544 0.5994974 0.8814981 0.6112297 0.8783544 0.6229619 0.8697658 0.6315506 0.8580335 0.6346941 0.8463013 0.6315506 0.8377126 0.6229619 0.834569 0.6112297 0.8377126 0.5994974 0.8463013 0.5909088 0.8580335 0.5877652 0.6511683 0.2188026 0.6511684 0.1485035 0.6579289 0.0782041 0.6511683 0.07820427 0.6579289 0.8514967 0.6511684 0.8514967 0.6579289 0.7811973 0.6511684 0.7811973 0.6579289 0.710898 0.6511683 0.7108979 0.6579289 0.6405987 0.6511684 0.6405987 0.6579289 0.5702993 0.6511684 0.5702993 0.6579289 0.5 0.6511683 0.5 0.6579289 0.4297008 0.6511683 0.4297007 0.6579288 0.3594013 0.6511683 0.3594014 0.6579289 0.289102 0.6511684 0.2891021 0.6511684 0.1485035 0.6511683 0.2188026 0.4973663 0.2188027 0.4973663 0.1485035 0.6511683 0.07820427 0.4973663 0.0782041 0.6511684 0.8514967 0.4973663 0.8514967 0.6511684 0.7811973 0.4973662 0.7811973 0.6511683 0.7108979 0.4973663 0.7108979 0.6511684 0.6405987 0.4973662 0.6405987 0.6511684 0.5702993 0.4973663 0.5702994 0.6511683 0.5 0.4973663 0.5 0.6511683 0.4297007 0.4973663 0.4297007 0.6511683 0.3594014 0.4973663 0.3594013 0.6511684 0.2891021 0.4973663 0.2891021 0.2016377 0.2188028 0.2016377 0.1485034 0.2016377 0.07820415 0.2016377 0.8514967 0.2016378 0.7811973 0.2016377 0.710898 0.2016377 0.6405987 0.2016377 0.5702993 0.2016377 0.5 0.2016377 0.4297007 0.2016377 0.3594013 0.2016377 0.2891021 0.9120053 0.5222858 0.9120053 0.5231671 0.827477 0.5333264 0.8212466 0.527096 0.8214392 0.5267625 0.8278106 0.5331339 0.8297576 0.5418373 0.8301427 0.5418373 0.827477 0.5503482 0.8278106 0.5505408 0.8212466 0.5565787 0.8214392 0.5569122 0.8127357 0.5588592 0.8127357 0.5592443 0.8042248 0.5565787 0.8040322 0.5569122 0.7979944 0.5503482 0.7976608 0.5505408 0.7957138 0.5418373 0.7953287 0.5418373 0.7979944 0.5333264 0.7976608 0.5331339 0.8042248 0.527096 0.8040322 0.5267625 0.8127357 0.5248154 0.8127357 0.5244304 0.9273396 0.5320203 0.9208586 0.5255393 0.9212993 0.524776 0.9281028 0.5315796 0.9297118 0.5408735 0.930593 0.5408735 0.9273396 0.5497267 0.9281028 0.5501674 0.9208586 0.5562077 0.9212993 0.556971 0.9120053 0.5585799 0.9120053 0.5594613 0.9031522 0.5562077 0.9027115 0.556971 0.8966712 0.5497267 0.8959079 0.5501674 0.8942989 0.5408735 0.8934176 0.5408735 0.8966712 0.5320203 0.8959079 0.5315796 0.9031522 0.5255393 0.9027115 0.524776 0.6579289 0.9217958 0.6854293 0.8514967 0.6854292 0.9217958 0.6579289 0.9217958 0.6511684 0.9217958 0.6511684 0.9217958 0.4973662 0.9217958 0.2016376 0.9217958 0.8405883 0.6112297 0.8429206 0.6199552 0.8492716 0.6264057 0.8580335 0.6286911 0.8667731 0.6263669 0.8731749 0.6199715 0.8755231 0.6112297 0.8731716 0.6024898 0.8667677 0.5961016 0.8580335 0.5937564 0.8492895 0.5960845 0.8429155 0.6025013 0.8562516 0.5671748 0.8565179 0.5640942 0.8584476 0.5612754 0.8618536 0.5609524 0.8659478 0.5600834 0.8672163 0.5640787 0.8677572 0.5671748 0.8677806 0.5705968 0.8645437 0.5718343 0.8618536 0.5722837 0.8587529 0.5725453 0.8571286 0.5699028 0.4282282 0.5000921 0.4282282 0.5704643 0.7385792 0.5704643 0.7385792 0.5000921 0.4282282 0.4297071 0.7385792 0.4297071 0.4282282 0.3592896 0.7385792 0.3592896 0.4282282 0.2888258 0.7385792 0.2888258 0.4282282 0.2183164 0.7385792 0.2183164 0.7385792 0.1477737 0.4282282 0.9227813 0.7385792 0.9227813 0.4282282 0.8522385 0.7385793 0.8522385 0.4282283 0.7817297 0.7385793 0.7817297 0.4282283 0.7112665 0.7385793 0.7112665 0.4282282 0.6408486 0.7385792 0.6408486 0.4282282 0.07721862 0.4282282 0.1477737 0.7385792 0.07721862</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings2_uShape-map1-array\" count=\"213\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rear_bearings2_uShape-vertices\" name=\"rear_bearings2_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rear_bearings2_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"108\">\r\n          <input semantic=\"VERTEX\" source=\"#rear_bearings2_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rear_bearings2_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rear_bearings2_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 11 1 1 12 13 2 13 12 3 14 1 4 12 2 5 15 14 6 16 13 7 13 2 8 155 3 9 17 15 10 156 14 11 157 3 12 17 4 13 18 16 14 19 15 15 156 4 16 18 5 17 20 17 18 21 16 19 19 5 20 20 6 21 22 18 22 23 17 23 21 6 24 22 7 25 24 19 26 25 18 27 23 7 28 24 8 29 26 20 30 27 19 31 25 8 32 26 9 33 28 21 34 29 20 35 27 9 36 28 10 37 30 22 38 31 21 39 29 10 40 30 11 41 32 23 42 33 22 43 31 11 44 32 0 45 11 12 46 14 23 47 33 73 48 0 72 49 1 100 50 179 101 51 180 74 52 2 73 48 0 101 51 180 102 53 181 75 54 3 74 52 2 102 53 181 103 55 182 76 56 4 75 54 3 103 55 182 104 57 183 77 58 5 76 56 4 104 57 183 105 59 184 78 60 6 77 58 5 105 59 184 106 61 185 79 62 7 78 60 6 106 61 185 107 63 186 80 64 8 79 62 7 107 63 186 96 65 175 81 66 9 80 64 8 96 65 175 97 67 176 82 68 10 81 66 9 97 67 176 98 69 177 83 70 36 82 68 10 98 69 177 99 71 178 72 49 1 83 70 36 99 71 178 100 50 179 12 72 37 13 73 38 91 74 170 92 75 171 13 73 38 14 76 39 90 77 169 91 74 170 14 76 39 15 78 40 89 79 168 90 77 169 15 78 40 16 80 41 88 81 167 89 79 168 16 80 41 17 82 42 87 83 166 88 81 167 17 82 42 18 84 43 86 85 165 87 83 166 18 84 43 19 86 44 85 87 164 86 85 165 19 86 44 20 88 45 84 89 163 85 87 164 20 88 45 21 90 46 95 91 174 84 89 163 21 90 46 22 92 47 94 93 173 95 91 174 22 92 47 23 94 48 93 95 172 94 93 173 23 94 48 12 72 37 92 75 171 93 95 172 1 96 109 0 97 110 24 98 111 25 99 112 2 100 113 1 101 109 25 102 112 26 103 114 3 104 115 2 105 113 26 106 114 27 107 116 4 108 117 3 109 115 27 110 116 28 111 118 5 112 119 4 113 117 28 114 118 29 115 120 6 116 121 5 117 119 29 118 120 30 119 122 7 120 123 6 121 121 30 122 122 31 123 124 8 124 125 7 125 123 31 126 124 32 127 126 9 128 127 8 129 125 32 130 126 33 131 128 10 132 129 9 133 127 33 134 128 34 135 130 11 136 131 10 137 129 34 138 130 35 139 132 0 140 110 11 141 131 35 142 132 24 143 111 25 144 34 24 145 35 36 146 49 37 147 50 26 148 51 25 149 34 37 150 50 38 151 52 27 152 53 26 153 158 38 154 159 39 155 54 28 156 55 27 157 53 39 158 54 40 159 56 29 160 57 28 161 55 40 162 56 41 163 58 30 164 59 29 165 57 41 166 58 42 167 60 31 168 61 30 169 59 42 170 60 43 171 62 32 172 63 31 173 61 43 174 62 44 175 64 33 176 65 32 177 63 44 178 64 45 179 66 34 180 67 33 181 65 45 182 66 46 183 68 35 184 69 34 185 67 46 186 68 47 187 70 24 188 35 35 189 69 47 190 70 36 191 49 37 192 133 36 193 134 48 194 135 49 195 136 38 196 137 37 197 133 49 198 136 50 199 138 39 200 139 38 201 137 50 202 138 51 203 140 40 204 141 39 205 139 51 206 140 52 207 142 41 208 143 40 209 141 52 210 142 53 211 144 42 212 145 41 213 143 53 214 144 54 215 146 43 216 147 42 217 145 54 218 146 55 219 148 44 220 149 43 221 147 55 222 148 56 223 150 45 224 151 44 225 149 56 226 150 57 227 152 46 228 153 45 229 151 57 230 152 58 231 154 47 232 108 46 233 153 58 234 154 59 235 107 36 236 134 47 237 108 59 238 107 48 239 135 49 240 71 48 241 72 60 242 73 61 243 74 50 244 75 49 245 71 61 246 74 62 247 76 51 248 77 50 249 160 62 250 161 63 251 78 52 252 79 51 253 77 63 254 78 64 255 80 53 256 81 52 257 79 64 258 80 65 259 82 54 260 83 53 261 81 65 262 82 66 263 84 55 264 85 54 265 83 66 266 84 67 267 86 56 268 87 55 269 85 67 270 86 68 271 88 57 272 89 56 273 87 68 274 88 69 275 90 58 276 91 57 277 89 69 278 90 70 279 92 59 280 93 58 281 91 70 282 92 71 283 94 48 284 72 59 285 93 71 286 94 60 287 73 61 288 74 60 289 73 72 290 95 73 291 96 62 292 76 61 293 74 73 294 96 74 295 97 63 296 78 62 297 161 74 298 162 75 299 98 64 300 80 63 301 78 75 302 98 76 303 99 65 304 82 64 305 80 76 306 99 77 307 100 66 308 84 65 309 82 77 310 100 78 311 101 67 312 86 66 313 84 78 314 101 79 315 102 68 316 88 67 317 86 79 318 102 80 319 103 69 320 90 68 321 88 80 322 103 81 323 104 70 324 92 69 325 90 81 326 104 82 327 105 71 328 94 70 329 92 82 330 105 83 331 106 60 332 73 71 333 94 83 334 106 72 335 95 85 336 187 84 337 188 96 338 189 107 339 190 86 340 191 85 341 187 107 342 190 106 343 192 87 344 193 86 345 191 106 346 192 105 347 194 88 348 195 87 349 193 105 350 194 104 351 196 89 352 197 88 353 195 104 354 196 103 355 198 90 356 211 89 357 197 103 358 198 102 359 199 91 360 210 90 361 211 102 362 199 101 363 212 92 364 202 91 365 200 101 366 201 100 367 203 93 368 204 92 369 202 100 370 203 99 371 205 94 372 206 93 373 204 99 374 205 98 375 207 95 376 208 94 377 206 98 378 207 97 379 209 84 380 188 95 381 208 97 382 209 96 383 189</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rear_bearings2_uShape</originalMayaNodeId>\r\n          <double_sided>0</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rear_Spacer_uShape\" name=\"rear_Spacer_uShape\">\r\n      <mesh>\r\n        <source id=\"rear_Spacer_uShape-positions\" name=\"rear_Spacer_uShape-positions\">\r\n          <float_array id=\"rear_Spacer_uShape-positions-array\" count=\"216\">-0.5819776 -2.305861 -1.33129 -0.5819776 -1.33129 -2.305861 -0.5819776 0 -2.66258 -0.5819776 1.33129 -2.305861 -0.5819776 2.305861 -1.33129 -0.5819776 2.66258 0 -0.5819776 2.305861 1.33129 -0.5819776 1.33129 2.305861 -0.5819776 0 2.66258 -0.5819776 -1.33129 2.305861 -0.5819776 -2.305861 1.33129 -0.5819776 -2.66258 0 0.2764489 -2.305861 -1.33129 0.2764489 -1.33129 -2.305861 0.2764489 0 -2.66258 0.2764489 1.33129 -2.305861 0.2764489 2.305861 -1.33129 0.2764489 2.66258 0 0.2764489 2.305861 1.33129 0.2764489 1.33129 2.305861 0.2764489 0 2.66258 0.2764489 -1.33129 2.305861 0.2764489 -2.305861 1.33129 0.2764489 -2.66258 0 0.3561432 -2.257059 -1.303113 0.3561432 -1.303113 -2.257059 0.3561432 0 -2.606226 0.3561432 1.303113 -2.257059 0.3561432 2.257059 -1.303113 0.3561432 2.606226 0 0.3561432 2.257059 1.303113 0.3561432 1.303113 2.257059 0.3561432 0 2.606226 0.3561432 -1.303113 2.257059 0.3561432 -2.257059 1.303113 0.3561432 -2.606226 0 -0.6417483 -2.244858 -1.29607 -0.6417483 -1.29607 -2.244858 -0.6417483 0 -2.592139 -0.6417483 1.29607 -2.244858 -0.6417483 2.244858 -1.29607 -0.6417483 2.592139 0 -0.6417483 2.244858 1.29607 -0.6417483 1.29607 2.244858 -0.6417483 0 2.592139 -0.6417483 -1.29607 2.244858 -0.6417483 -2.244858 1.29607 -0.6417483 -2.592139 0 0.3561432 0 1.914141 0.3561432 0.9573827 1.658235 0.3561432 1.665162 0.9613817 0.3561432 1.915926 0 0.3561432 1.660906 -0.9589244 0.3561432 0.9591798 -1.661348 0.3561432 0 -1.919003 0.3561432 -0.9589695 -1.660984 0.3561432 -1.659885 -0.9583349 0.3561432 -1.917218 0 0.3561432 -1.66864 0.9633897 0.3561432 -0.9577058 1.658795 -0.6417483 0 1.914141 -0.6417483 0.9573827 1.658235 -0.6417483 1.665162 0.9613817 -0.6417483 1.915926 0 -0.6417483 1.660906 -0.9589244 -0.6417483 0.9591798 -1.661348 -0.6417483 0 -1.919003 -0.6417483 -0.9589695 -1.660984 -0.6417483 -1.659885 -0.9583349 -0.6417483 -1.917218 0 -0.6417483 -1.66864 0.9594177 -0.6417483 -0.9577058 1.658795</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_Spacer_uShape-positions-array\" count=\"72\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_Spacer_uShape-normals\" name=\"rear_Spacer_uShape-normals\">\r\n          <float_array id=\"rear_Spacer_uShape-normals-array\" count=\"720\">0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 -0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.2588191 -0.9659259 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.9659259 0.258819 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.2588191 0.9659259 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.564013 -0.5839047 -0.5839047 0.564013 -0.5839047 -0.5839047 0.564013 -0.5839047 -0.5839047 0.564013 -0.5839047 -0.5839047 0.5640143 -0.2137236 -0.7976279 0.5640143 -0.2137236 -0.7976279 0.5640143 -0.2137236 -0.7976279 0.5640143 -0.2137236 -0.7976279 0.5640146 0.2137236 -0.7976276 0.5640146 0.2137236 -0.7976276 0.5640146 0.2137236 -0.7976276 0.5640146 0.2137236 -0.7976276 0.5640129 0.5839048 -0.5839047 0.5640129 0.5839048 -0.5839047 0.5640129 0.5839048 -0.5839047 0.5640129 0.5839048 -0.5839047 0.5640138 0.7976282 -0.2137238 0.5640138 0.7976282 -0.2137238 0.5640138 0.7976282 -0.2137238 0.5640138 0.7976282 -0.2137238 0.5640139 0.7976282 0.2137238 0.5640139 0.7976282 0.2137238 0.5640139 0.7976282 0.2137238 0.5640139 0.7976282 0.2137238 0.564013 0.5839047 0.5839047 0.564013 0.5839047 0.5839047 0.564013 0.5839047 0.5839047 0.564013 0.5839047 0.5839047 0.5640143 0.2137236 0.7976279 0.5640143 0.2137236 0.7976279 0.5640143 0.2137236 0.7976279 0.5640143 0.2137236 0.7976279 0.5640146 -0.2137236 0.7976276 0.5640146 -0.2137236 0.7976276 0.5640146 -0.2137236 0.7976276 0.5640146 -0.2137236 0.7976276 0.5640129 -0.5839048 0.5839047 0.5640129 -0.5839048 0.5839047 0.5640129 -0.5839048 0.5839047 0.5640129 -0.5839048 0.5839047 0.5640138 -0.7976282 0.2137238 0.5640138 -0.7976282 0.2137238 0.5640138 -0.7976282 0.2137238 0.5640138 -0.7976282 0.2137238 0.5640139 -0.7976282 -0.2137238 0.5640139 -0.7976282 -0.2137238 0.5640139 -0.7976282 -0.2137238 0.5640139 -0.7976282 -0.2137238 -0.7512878 -0.4666727 -0.4666725 -0.7512878 -0.4666727 -0.4666725 -0.7512878 -0.4666727 -0.4666725 -0.7512878 -0.4666727 -0.4666725 -0.7512876 -0.1708142 -0.6374869 -0.7512876 -0.1708142 -0.6374869 -0.7512876 -0.1708142 -0.6374869 -0.7512876 -0.1708142 -0.6374869 -0.7512875 0.1708143 -0.6374871 -0.7512875 0.1708143 -0.6374871 -0.7512875 0.1708143 -0.6374871 -0.7512875 0.1708143 -0.6374871 -0.7512876 0.4666729 -0.4666727 -0.7512876 0.4666729 -0.4666727 -0.7512876 0.4666729 -0.4666727 -0.7512876 0.4666729 -0.4666727 -0.7512873 0.6374872 -0.1708143 -0.7512873 0.6374872 -0.1708143 -0.7512873 0.6374872 -0.1708143 -0.7512873 0.6374872 -0.1708143 -0.7512872 0.6374874 0.1708143 -0.7512872 0.6374874 0.1708143 -0.7512872 0.6374874 0.1708143 -0.7512872 0.6374874 0.1708143 -0.7512878 0.4666727 0.4666725 -0.7512878 0.4666727 0.4666725 -0.7512878 0.4666727 0.4666725 -0.7512878 0.4666727 0.4666725 -0.7512876 0.1708142 0.6374869 -0.7512876 0.1708142 0.6374869 -0.7512876 0.1708142 0.6374869 -0.7512876 0.1708142 0.6374869 -0.7512875 -0.1708143 0.6374871 -0.7512875 -0.1708143 0.6374871 -0.7512875 -0.1708143 0.6374871 -0.7512875 -0.1708143 0.6374871 -0.7512876 -0.4666729 0.4666727 -0.7512876 -0.4666729 0.4666727 -0.7512876 -0.4666729 0.4666727 -0.7512876 -0.4666729 0.4666727 -0.7512873 -0.6374872 0.1708143 -0.7512873 -0.6374872 0.1708143 -0.7512873 -0.6374872 0.1708143 -0.7512873 -0.6374872 0.1708143 -0.7512872 -0.6374874 -0.1708143 -0.7512872 -0.6374874 -0.1708143 -0.7512872 -0.6374874 -0.1708143 -0.7512872 -0.6374874 -0.1708143 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.2582317 -0.9660831 0 -0.2582317 -0.9660831 0 -0.2582317 -0.9660831 0 -0.2582317 -0.9660831 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.7015857 -0.7125852 0 -0.967625 -0.2523928 0 -0.967625 -0.2523928 0 -0.967625 -0.2523928 0 -0.967625 -0.2523928 0 -0.9664087 0.2570105 0 -0.9664087 0.2570105 0 -0.9664087 0.2570105 0 -0.9664087 0.2570105 0 -0.707458 0.7067555 0 -0.707458 0.7067555 0 -0.707458 0.7067555 0 -0.707458 0.7067555 0 -0.2594232 0.9657638 0 -0.2594232 0.9657638 0 -0.2594232 0.9657638 0 -0.2594232 0.9657638 0 0.2598183 0.9656576 0 0.2598183 0.9656576 0 0.2598183 0.9656576 0 0.2598183 0.9656576 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.7079796 0.7062329 0 0.9657875 0.2593346 0 0.9657875 0.2593346 0 0.9657875 0.2593346 0 0.9657875 0.2593346 4.98143e-4 0.9681616 -0.2503254 4.98143e-4 0.9681616 -0.2503254 4.98143e-4 0.9681616 -0.2503254 4.98143e-4 0.9681616 -0.2503254 0.001420682 0.7002738 -0.713873 0.001420682 0.7002738 -0.713873 0.001420682 0.7002738 -0.713873 0.001420682 0.7002738 -0.713873 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454 0 0.2576234 -0.9662454</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_Spacer_uShape-normals-array\" count=\"240\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_Spacer_uShape-map1\" name=\"rear_Spacer_uShape-map1\">\r\n          <float_array id=\"rear_Spacer_uShape-map1-array\" count=\"252\">0.4600119 0.2187839 0.4600119 0.1484799 0.5582584 0.1484799 0.5582584 0.2187839 0.4600119 0.0781759 0.5582583 0.0781759 0.460012 0.8515201 0.460012 0.781216 0.5582584 0.781216 0.460012 0.710912 0.5582584 0.710912 0.4600119 0.6406081 0.5582584 0.6406081 0.4600119 0.570304 0.5582584 0.570304 0.4600119 0.5 0.5582584 0.5 0.4600119 0.429696 0.5582584 0.429696 0.4600119 0.359392 0.5582584 0.359392 0.4600119 0.289088 0.5582583 0.289088 0.7875311 0.1484799 0.787531 0.2187839 0.787531 0.0781759 0.787531 0.781216 0.787531 0.710912 0.787531 0.6406081 0.787531 0.570304 0.787531 0.5 0.7875309 0.429696 0.5 0.5544413 0.4675921 0.563125 0.7875309 0.359392 0.787531 0.289088 0.2799621 0.2187839 0.2799621 0.1484799 0.2799621 0.0781759 0.2799621 0.8515201 0.2799621 0.781216 0.2799621 0.710912 0.2799621 0.6406081 0.2799621 0.570304 0.279962 0.5 0.2799621 0.429696 0.5558288 0.5870245 0.5322328 0.5634284 0.2799621 0.359392 0.279962 0.289088 0.4438678 0.5868492 0.4351841 0.6192572 0.4438678 0.6516652 0.4675921 0.6753894 0.5 0.6840731 0.532408 0.6753894 0.5561322 0.6516652 0.5648159 0.6192572 0.5561322 0.5868492 0.532408 0.563125 0.5 0.5547917 0.4677672 0.5634284 0.4441712 0.5870245 0.4355345 0.6192572 0.4441712 0.65149 0.4677672 0.675086 0.5 0.6837227 0.5322328 0.675086 0.5558288 0.65149 0.5644655 0.6192572 0.5582584 0.9218241 0.5582583 0.8515201 0.787531 0.8515201 0.7875311 0.9218241 0.460012 0.9218241 0.2799621 0.9218241 0.4616158 0.6192572 0.470056 0.6365454 0.4831887 0.6483753 0.5 0.6458355 0.5130834 0.6419183 0.5253736 0.6339067 0.5340958 0.6192572 0.5362645 0.5983199 0.5218852 0.581351 0.5 0.5753109 0.4760409 0.5777588 0.4610011 0.5967411 0.4694272 0.6192572 0.4773369 0.6323417 0.4872977 0.6412583 0.5 0.6447307 0.5127367 0.641318 0.5222757 0.6321181 0.5231497 0.6192572 0.5194632 0.6080201 0.511604 0.5991585 0.5 0.5950089 0.4875466 0.5976872 0.4810066 0.6082914 0.6895286 0.5703047 0.6895286 0.5000919 0.4772789 0.5000919 0.4772789 0.5703047 0.6895286 0.4298663 0.4772789 0.4298663 0.6895286 0.3596082 0.4772789 0.3596082 0.6895286 0.289304 0.4772788 0.2893039 0.6895286 0.2189542 0.4772789 0.2189542 0.6895286 0.1485711 0.6895286 0.921824 0.4772789 0.9218241 0.6895286 0.851441 0.4772789 0.851441 0.6895286 0.7810917 0.4772789 0.7810917 0.6895286 0.7110285 0.4772789 0.7107888 0.6895286 0.6405296 0.4772788 0.6405296 0.6895286 0.07817596 0.4772788 0.07817593 0.4772788 0.1485711</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_Spacer_uShape-map1-array\" count=\"126\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rear_Spacer_uShape-vertices\" name=\"rear_Spacer_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rear_Spacer_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"72\">\r\n          <input semantic=\"VERTEX\" source=\"#rear_Spacer_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rear_Spacer_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rear_Spacer_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 13 2 2 12 3 3 1 4 1 2 5 4 14 6 5 13 7 2 2 8 74 3 9 6 15 10 71 14 11 70 3 12 6 4 13 7 16 14 8 15 15 71 4 16 7 5 17 9 17 18 10 16 19 8 5 20 9 6 21 11 18 22 12 17 23 10 6 24 11 7 25 13 19 26 14 18 27 12 7 28 13 8 29 15 20 30 16 19 31 14 8 32 15 9 33 17 21 34 18 20 35 16 9 36 17 10 37 19 22 38 20 21 39 18 10 40 19 11 41 21 23 42 22 22 43 20 11 44 21 0 45 0 12 46 3 23 47 22 24 48 59 25 49 58 55 50 83 56 51 84 25 49 58 26 52 57 54 53 82 55 50 83 26 52 57 27 54 56 53 55 81 54 53 82 27 54 56 28 56 55 52 57 80 53 55 81 28 56 55 29 58 54 51 59 79 52 57 80 29 58 54 30 60 53 50 61 78 51 59 79 30 60 53 31 62 52 49 63 77 50 61 78 31 62 52 32 64 51 48 65 76 49 63 77 32 64 51 33 66 50 59 67 87 48 65 76 33 66 50 34 68 33 58 69 86 59 67 87 34 68 33 35 70 32 57 71 85 58 69 86 35 70 32 24 48 59 56 51 84 57 71 85 12 72 3 13 73 2 25 74 23 24 75 24 13 76 2 14 77 5 26 78 25 25 79 23 14 80 70 15 81 71 27 82 72 26 83 73 15 84 71 16 85 8 28 86 26 27 87 72 16 88 8 17 89 10 29 90 27 28 91 26 17 92 10 18 93 12 30 94 28 29 95 27 18 96 12 19 97 14 31 98 29 30 99 28 19 100 14 20 101 16 32 102 30 31 103 29 20 104 16 21 105 18 33 106 31 32 107 30 21 108 18 22 109 20 34 110 34 33 111 31 22 112 20 23 113 22 35 114 35 34 115 34 23 116 22 12 117 3 24 118 24 35 119 35 1 120 1 0 121 0 36 122 36 37 123 37 2 124 4 1 125 1 37 126 37 38 127 38 3 128 6 2 129 74 38 130 75 39 131 39 4 132 7 3 133 6 39 134 39 40 135 40 5 136 9 4 137 7 40 138 40 41 139 41 6 140 11 5 141 9 41 142 41 42 143 42 7 144 13 6 145 11 42 146 42 43 147 43 8 148 15 7 149 13 43 150 43 44 151 44 9 152 17 8 153 15 44 154 44 45 155 45 10 156 19 9 157 17 45 158 45 46 159 48 11 160 21 10 161 19 46 162 48 47 163 49 0 164 0 11 165 21 47 166 49 36 167 36 44 168 63 43 169 64 61 170 89 60 171 88 43 169 64 42 172 65 62 173 90 61 170 89 42 172 65 41 174 66 63 175 91 62 173 90 41 174 66 40 176 67 64 177 92 63 175 91 40 176 67 39 178 68 65 179 93 64 177 92 39 178 68 38 180 69 66 181 94 65 179 93 38 180 69 37 182 46 67 183 95 66 181 94 37 182 46 36 184 47 68 185 96 67 183 95 36 184 47 47 186 60 69 187 97 68 185 96 47 186 60 46 188 61 70 189 98 69 187 97 46 188 61 45 190 62 71 191 99 70 189 98 45 190 62 44 168 63 60 171 88 71 191 99 60 192 100 61 193 101 49 194 102 48 195 103 61 196 101 62 197 104 50 198 105 49 199 102 62 200 104 63 201 106 51 202 107 50 203 105 63 204 106 64 205 108 52 206 109 51 207 107 64 208 108 65 209 110 53 210 111 52 211 109 65 212 110 66 213 112 54 214 125 53 215 111 66 216 112 67 217 123 55 218 124 54 219 125 67 220 113 68 221 115 56 222 116 55 223 114 68 224 115 69 225 117 57 226 118 56 227 116 69 228 117 70 229 119 58 230 120 57 231 118 70 232 119 71 233 121 59 234 122 58 235 120 71 236 121 60 237 100 48 238 103 59 239 122</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rear_Spacer_uShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rear_bearings1_uShape\" name=\"rear_bearings1_uShape\">\r\n      <mesh>\r\n        <source id=\"rear_bearings1_uShape-positions\" name=\"rear_bearings1_uShape-positions\">\r\n          <float_array id=\"rear_bearings1_uShape-positions-array\" count=\"288\">-0.9310441 -2.388317 -1.378895 -0.9310441 -1.378895 -2.388317 -0.9310441 0 -2.757791 -0.9310441 1.378895 -2.388317 -0.9310441 2.388317 -1.378895 -0.9310441 2.757791 0 -0.9310441 2.388317 1.378895 -0.9310441 1.378895 2.388317 -0.9310441 0 2.757791 -0.9310441 -1.378895 2.388317 -0.9310441 -2.388317 1.378895 -0.9310441 -2.757791 0 1.062718 -2.388317 -1.378895 1.062718 -1.378895 -2.388317 1.062718 0 -2.757791 1.062718 1.378895 -2.388317 1.062718 2.388317 -1.378895 1.062718 2.757791 0 1.062718 2.388317 1.378895 1.062718 1.378895 2.388317 1.062718 0 2.757791 1.062718 -1.378895 2.388317 1.062718 -2.388317 1.378895 1.062718 -2.757791 0 1.132554 -2.315003 -1.336568 1.132554 -1.336568 -2.315003 1.132554 0 -2.673136 1.132554 1.336568 -2.315003 1.132554 2.315003 -1.336568 1.132554 2.673136 0 1.132554 2.315003 1.336568 1.132554 1.336568 2.315003 1.132554 0 2.673136 1.132554 -1.336568 2.315003 1.132554 -2.315003 1.336568 1.132554 -2.673136 0 -0.9809277 -2.333332 -1.34715 -0.9809277 -1.34715 -2.333332 -0.9809277 0 -2.6943 -0.9809277 1.34715 -2.333332 -0.9809277 2.333332 -1.34715 -0.9809277 2.6943 0 -0.9809277 2.333332 1.34715 -0.9809277 1.34715 2.333332 -0.9809277 0 2.6943 -0.9809277 -1.34715 2.333332 -0.9809277 -2.333332 1.34715 -0.9809277 -2.6943 0 -1.030811 -2.388317 -1.378895 -1.030811 -1.378895 -2.388317 -1.030811 0 -2.757791 -1.030811 1.378895 -2.388317 -1.030811 2.388317 -1.378895 -1.030811 2.757791 0 -1.030811 2.388317 1.378895 -1.030811 1.378895 2.388317 -1.030811 0 2.757791 -1.030811 -1.378895 2.388317 -1.030811 -2.388317 1.378895 -1.030811 -2.757791 0 -1.190439 -2.388317 -1.378895 -1.190439 -1.378895 -2.388317 -1.190439 0 -2.757791 -1.190439 1.378895 -2.388317 -1.190439 2.388317 -1.378895 -1.190439 2.757791 0 -1.190439 2.388317 1.378895 -1.190439 1.378895 2.388317 -1.190439 0 2.757791 -1.190439 -1.378895 2.388317 -1.190439 -2.388317 1.378895 -1.190439 -2.757791 0 -1.190439 0 1.917008 -1.190439 -0.9591399 1.661279 -1.190439 -1.671139 0.9608545 -1.190439 -1.92009 0 -1.190439 -1.662371 -0.9597703 -1.190439 -0.9604057 -1.663472 -1.190439 0 -1.921876 -1.190439 0.9606165 -1.663836 -1.190439 1.663393 -0.9603606 -1.190439 1.918795 0 -1.190439 1.667656 0.9628216 -1.190439 0.9588164 1.660719 1.132554 0 1.917008 1.132554 0.9588164 1.660719 1.132554 1.667656 0.9628216 1.132554 1.918795 0 1.132554 1.663393 -0.9603606 1.132554 0.9606165 -1.663836 1.132554 0 -1.921876 1.132554 -0.9604057 -1.663472 1.132554 -1.662371 -0.9597703 1.132554 -1.92009 0 1.132554 -1.671139 0.9608545 1.132554 -0.9591399 1.661279</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings1_uShape-positions-array\" count=\"96\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_bearings1_uShape-normals\" name=\"rear_bearings1_uShape-normals\">\r\n          <float_array id=\"rear_bearings1_uShape-normals-array\" count=\"1008\">0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.7071068 -0.7071067 0 -0.2588187 -0.9659259 0 -0.2588187 -0.9659259 0 -0.2588187 -0.9659259 0 -0.2588187 -0.9659259 0 0.2588187 -0.9659259 0 0.2588187 -0.9659259 0 0.2588187 -0.9659259 0 0.2588187 -0.9659259 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.9659259 -0.2588189 0 0.9659259 -0.2588189 0 0.9659259 -0.2588189 0 0.9659259 -0.2588189 0 0.9659259 0.2588189 0 0.9659259 0.2588189 0 0.9659259 0.2588189 0 0.9659259 0.2588189 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.7071068 0.7071067 0 0.2588187 0.9659259 0 0.2588187 0.9659259 0 0.2588187 0.9659259 0 0.2588187 0.9659259 0 -0.2588187 0.9659259 0 -0.2588187 0.9659259 0 -0.2588187 0.9659259 0 -0.2588187 0.9659259 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.9659259 0.2588189 0 -0.9659259 0.2588189 0 -0.9659259 0.2588189 0 -0.9659259 0.2588189 0 -0.9659259 -0.2588189 0 -0.9659259 -0.2588189 0 -0.9659259 -0.2588189 0 -0.9659259 -0.2588189 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.7604148 -0.4592218 -0.459222 0.7604148 -0.4592218 -0.459222 0.7604148 -0.4592218 -0.459222 0.7604148 -0.4592218 -0.459222 0.7604133 -0.1680875 -0.6273103 0.7604133 -0.1680875 -0.6273103 0.7604133 -0.1680875 -0.6273103 0.7604133 -0.1680875 -0.6273103 0.7604136 0.1680873 -0.6273101 0.7604136 0.1680873 -0.6273101 0.7604136 0.1680873 -0.6273101 0.7604136 0.1680873 -0.6273101 0.7604145 0.4592221 -0.459222 0.7604145 0.4592221 -0.459222 0.7604145 0.4592221 -0.459222 0.7604145 0.4592221 -0.459222 0.7604135 0.6273102 -0.1680873 0.7604135 0.6273102 -0.1680873 0.7604135 0.6273102 -0.1680873 0.7604135 0.6273102 -0.1680873 0.7604136 0.62731 0.1680873 0.7604136 0.62731 0.1680873 0.7604136 0.62731 0.1680873 0.7604136 0.62731 0.1680873 0.7604148 0.4592218 0.459222 0.7604148 0.4592218 0.459222 0.7604148 0.4592218 0.459222 0.7604148 0.4592218 0.459222 0.7604133 0.1680875 0.6273103 0.7604133 0.1680875 0.6273103 0.7604133 0.1680875 0.6273103 0.7604133 0.1680875 0.6273103 0.7604136 -0.1680873 0.6273101 0.7604136 -0.1680873 0.6273101 0.7604136 -0.1680873 0.6273101 0.7604136 -0.1680873 0.6273101 0.7604145 -0.4592221 0.459222 0.7604145 -0.4592221 0.459222 0.7604145 -0.4592221 0.459222 0.7604145 -0.4592221 0.459222 0.7604135 -0.6273102 0.1680873 0.7604135 -0.6273102 0.1680873 0.7604135 -0.6273102 0.1680873 0.7604135 -0.6273102 0.1680873 0.7604136 -0.62731 -0.1680873 0.7604136 -0.62731 -0.1680873 0.7604136 -0.62731 -0.1680873 0.7604136 -0.62731 -0.1680873 -0.7757757 -0.4461906 -0.4461908 -0.7757757 -0.4461906 -0.4461908 -0.7757757 -0.4461906 -0.4461908 -0.7757757 -0.4461906 -0.4461908 -0.7757733 -0.1633179 -0.6095106 -0.7757733 -0.1633179 -0.6095106 -0.7757733 -0.1633179 -0.6095106 -0.7757733 -0.1633179 -0.6095106 -0.7757735 0.1633177 -0.6095104 -0.7757735 0.1633177 -0.6095104 -0.7757735 0.1633177 -0.6095104 -0.7757735 0.1633177 -0.6095104 -0.7757758 0.4461904 -0.4461907 -0.7757758 0.4461904 -0.4461907 -0.7757758 0.4461904 -0.4461907 -0.7757758 0.4461904 -0.4461907 -0.7757748 0.6095088 -0.1633174 -0.7757748 0.6095088 -0.1633174 -0.7757748 0.6095088 -0.1633174 -0.7757748 0.6095088 -0.1633174 -0.7757747 0.6095089 0.1633174 -0.7757747 0.6095089 0.1633174 -0.7757747 0.6095089 0.1633174 -0.7757747 0.6095089 0.1633174 -0.7757757 0.4461906 0.4461908 -0.7757757 0.4461906 0.4461908 -0.7757757 0.4461906 0.4461908 -0.7757757 0.4461906 0.4461908 -0.7757733 0.1633179 0.6095106 -0.7757733 0.1633179 0.6095106 -0.7757733 0.1633179 0.6095106 -0.7757733 0.1633179 0.6095106 -0.7757735 -0.1633177 0.6095104 -0.7757735 -0.1633177 0.6095104 -0.7757735 -0.1633177 0.6095104 -0.7757735 -0.1633177 0.6095104 -0.7757758 -0.4461904 0.4461907 -0.7757758 -0.4461904 0.4461907 -0.7757758 -0.4461904 0.4461907 -0.7757758 -0.4461904 0.4461907 -0.7757748 -0.6095088 0.1633174 -0.7757748 -0.6095088 0.1633174 -0.7757748 -0.6095088 0.1633174 -0.7757748 -0.6095088 0.1633174 -0.7757747 -0.6095089 -0.1633174 -0.7757747 -0.6095089 -0.1633174 -0.7757747 -0.6095089 -0.1633174 -0.7757747 -0.6095089 -0.1633174 0.7757756 -0.4461907 -0.4461907 0.7757756 -0.4461907 -0.4461907 0.7757756 -0.4461907 -0.4461907 0.7757756 -0.4461907 -0.4461907 0.7757733 -0.1633176 -0.6095106 0.7757733 -0.1633176 -0.6095106 0.7757733 -0.1633176 -0.6095106 0.7757733 -0.1633176 -0.6095106 0.7757735 0.1633175 -0.6095104 0.7757735 0.1633175 -0.6095104 0.7757735 0.1633175 -0.6095104 0.7757735 0.1633175 -0.6095104 0.7757757 0.4461905 -0.4461907 0.7757757 0.4461905 -0.4461907 0.7757757 0.4461905 -0.4461907 0.7757757 0.4461905 -0.4461907 0.7757743 0.6095095 -0.1633172 0.7757743 0.6095095 -0.1633172 0.7757743 0.6095095 -0.1633172 0.7757743 0.6095095 -0.1633172 0.7757744 0.6095095 0.1633173 0.7757744 0.6095095 0.1633173 0.7757744 0.6095095 0.1633173 0.7757744 0.6095095 0.1633173 0.7757756 0.4461907 0.4461907 0.7757756 0.4461907 0.4461907 0.7757756 0.4461907 0.4461907 0.7757756 0.4461907 0.4461907 0.7757733 0.1633176 0.6095106 0.7757733 0.1633176 0.6095106 0.7757733 0.1633176 0.6095106 0.7757733 0.1633176 0.6095106 0.7757735 -0.1633175 0.6095104 0.7757735 -0.1633175 0.6095104 0.7757735 -0.1633175 0.6095104 0.7757735 -0.1633175 0.6095104 0.7757757 -0.4461905 0.4461907 0.7757757 -0.4461905 0.4461907 0.7757757 -0.4461905 0.4461907 0.7757757 -0.4461905 0.4461907 0.7757743 -0.6095095 0.1633172 0.7757743 -0.6095095 0.1633172 0.7757743 -0.6095095 0.1633172 0.7757743 -0.6095095 0.1633172 0.7757744 -0.6095095 -0.1633173 0.7757744 -0.6095095 -0.1633173 0.7757744 -0.6095095 -0.1633173 0.7757744 -0.6095095 -0.1633173 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.2588188 -0.9659259 0 -0.2588188 -0.9659259 0 -0.2588188 -0.9659259 0 -0.2588188 -0.9659259 0 0.2588188 -0.9659259 0 0.2588188 -0.9659259 0 0.2588188 -0.9659259 0 0.2588188 -0.9659259 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.7071067 -0.7071068 0 0.965926 -0.2588188 0 0.965926 -0.2588188 0 0.965926 -0.2588188 0 0.965926 -0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.7071067 0.7071068 0 0.2588188 0.9659259 0 0.2588188 0.9659259 0 0.2588188 0.9659259 0 0.2588188 0.9659259 0 -0.2588188 0.9659259 0 -0.2588188 0.9659259 0 -0.2588188 0.9659259 0 -0.2588188 0.9659259 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.7071067 0.7071068 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 0.2576232 -0.9662455 0 0.2576232 -0.9662455 0 0.2576232 -0.9662455 0 0.2576232 -0.9662455 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.7012889 -0.7128772 0 0.9680359 -0.2508118 0 0.9680359 -0.2508118 0 0.9680359 -0.2508118 0 0.9680359 -0.2508118 0 0.9657876 0.2593345 0 0.9657876 0.2593345 0 0.9657876 0.2593345 0 0.9657876 0.2593345 0 0.7079794 0.706233 0 0.7079794 0.706233 0 0.7079794 0.706233 0 0.7079794 0.706233 0 0.2598178 0.9656577 0 0.2598178 0.9656577 0 0.2598178 0.9656577 0 0.2598178 0.9656577 0 -0.259423 0.9657638 0 -0.259423 0.9657638 0 -0.259423 0.9657638 0 -0.259423 0.9657638 0 -0.707458 0.7067554 0 -0.707458 0.7067554 0 -0.707458 0.7067554 0 -0.707458 0.7067554 0 -0.9664086 0.2570105 0 -0.9664086 0.2570105 0 -0.9664086 0.2570105 0 -0.9664086 0.2570105 0 -0.967625 -0.2523925 0 -0.967625 -0.2523925 0 -0.967625 -0.2523925 0 -0.967625 -0.2523925 0 -0.7015853 -0.7125855 0 -0.7015853 -0.7125855 0 -0.7015853 -0.7125855 0 -0.7015853 -0.7125855 0 -0.2582316 -0.9660831 0 -0.2582316 -0.9660831 0 -0.2582316 -0.9660831 0 -0.2582316 -0.9660831</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings1_uShape-normals-array\" count=\"336\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rear_bearings1_uShape-map1\" name=\"rear_bearings1_uShape-map1\">\r\n          <float_array id=\"rear_bearings1_uShape-map1-array\" count=\"356\">0.3866208 0.5546799 0.3866208 0.5425612 0.6979387 0.1484798 0.6979386 0.2187839 0.3866208 0.5304426 0.6979387 0.0781759 0.3866208 0.6637479 0.3866208 0.6516292 0.6979386 0.781216 0.3866208 0.6395106 0.6979388 0.7109119 0.3866208 0.6273919 0.6979387 0.640608 0.3866208 0.6152732 0.6979387 0.5703039 0.3866208 0.6031546 0.6979387 0.4999999 0.3866208 0.591036 0.6979387 0.4296959 0.3866208 0.5789173 0.6979386 0.3593919 0.3866208 0.5667986 0.6979387 0.2890879 0.8606687 0.1484799 0.8606687 0.2187839 0.8606688 0.0781759 0.8606688 0.7812159 0.8606689 0.7109119 0.8606688 0.640608 0.8606688 0.5703039 0.8606688 0.4999999 0.8606688 0.4296959 0.8606687 0.3593919 0.8606687 0.2890879 0.3850619 0.5546799 0.3850619 0.5425612 0.3850619 0.5304426 0.3850619 0.6637479 0.3850619 0.6516292 0.3850619 0.6395106 0.3850619 0.6273919 0.3850619 0.6152732 0.3850619 0.6031546 0.3850619 0.591036 0.3850619 0.5789173 0.3850619 0.5667986 0.3183725 0.2187839 0.3183725 0.1484798 0.4745744 0.5594846 0.4600688 0.5449789 0.3183725 0.0781759 0.3183725 0.8515201 0.3183725 0.781216 0.3183726 0.7109119 0.3183725 0.640608 0.3183725 0.5703039 0.3183725 0.4999999 0.3183725 0.4296959 0.3183725 0.3593919 0.3183725 0.2890879 0.228534 0.2187839 0.228534 0.1484799 0.2285341 0.0781759 0.2285341 0.8515201 0.2285342 0.781216 0.228534 0.7109119 0.228534 0.640608 0.2285341 0.5703039 0.228534 0.4999999 0.228534 0.4296959 0.228534 0.3593919 0.228534 0.289088 0.4402536 0.5408859 0.4210466 0.5460324 0.4069862 0.5600929 0.4018397 0.5792998 0.4069862 0.5985067 0.4210466 0.6125672 0.4402536 0.6177137 0.4594605 0.6125672 0.4735209 0.5985067 0.4786674 0.5792998 0.4735209 0.5600929 0.4594605 0.5460324 0.4402536 0.5396694 0.4204383 0.5449789 0.4059327 0.5594846 0.4006232 0.5792998 0.4059327 0.599115 0.4204383 0.6136208 0.4402536 0.6189302 0.4600688 0.6136208 0.4745744 0.599115 0.4798839 0.5792998 0.6979387 0.921824 0.6979387 0.8515201 0.8606688 0.8515201 0.8606688 0.921824 0.3364607 0.921824 0.3850619 0.6758665 0.3835029 0.6758665 0.2285341 0.921824 0.3835029 0.5667986 0.3835029 0.5546799 0.3835029 0.5789173 0.3835029 0.591036 0.3835029 0.6031546 0.3835029 0.6152732 0.3835029 0.6273919 0.3835029 0.6395106 0.3835029 0.6516292 0.3835029 0.6637479 0.3835029 0.5304426 0.3183725 0.921824 0.3835029 0.5425612 0.3364608 0.289088 0.3364606 0.2187839 0.3364606 0.3593919 0.3364606 0.4296959 0.3364607 0.4999999 0.3364607 0.5703039 0.3364608 0.640608 0.3364608 0.710912 0.3364607 0.781216 0.3364608 0.8515201 0.3364607 0.0781759 0.3866208 0.6758665 0.3364607 0.1484799 0.4273612 0.5792998 0.4301611 0.573473 0.4336903 0.567932 0.4402536 0.5629957 0.4477768 0.5662691 0.4541965 0.5712498 0.4545345 0.5792998 0.4519714 0.5860652 0.4485759 0.5937145 0.4402536 0.5924738 0.4338015 0.5904751 0.4285578 0.5860524 0.4223629 0.5792998 0.4267166 0.5871153 0.4327717 0.5922588 0.4402536 0.593975 0.4475766 0.5919837 0.4531939 0.5867709 0.4553037 0.5792998 0.4527667 0.5720754 0.4463858 0.5686784 0.4402536 0.5675164 0.4332772 0.5672163 0.4286495 0.5726002 0.6836003 0.641499 0.6836003 0.5707896 0.4832071 0.5707897 0.4832071 0.641499 0.6836003 0.7124842 0.4832071 0.7124842 0.6836003 0.7830306 0.4832071 0.7830306 0.6836003 0.8538651 0.4832071 0.8538651 0.6836003 0.9247336 0.4832071 0.9247336 0.6836003 0.1461472 0.6836003 0.2170158 0.4832071 0.2170157 0.6836003 0.2878507 0.4832071 0.2878507 0.6836003 0.3586399 0.4832071 0.3586399 0.6836003 0.4293825 0.4832071 0.4293826 0.6836003 0.5000926 0.4832071 0.5000926 0.6836003 0.07526639 0.4832071 0.07526642 0.4832071 0.1461472</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rear_bearings1_uShape-map1-array\" count=\"178\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rear_bearings1_uShape-vertices\" name=\"rear_bearings1_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rear_bearings1_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"96\">\r\n          <input semantic=\"VERTEX\" source=\"#rear_bearings1_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rear_bearings1_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rear_bearings1_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 116 1 1 127 13 2 2 12 3 3 1 4 127 2 5 125 14 6 5 13 7 2 2 8 98 3 9 124 15 10 95 14 11 94 3 12 124 4 13 123 16 14 8 15 15 95 4 16 123 5 17 122 17 18 10 16 19 8 5 20 122 6 21 121 18 22 12 17 23 10 6 24 121 7 25 120 19 26 14 18 27 12 7 28 120 8 29 119 20 30 16 19 31 14 8 32 119 9 33 118 21 34 18 20 35 16 9 36 118 10 37 117 22 38 20 21 39 18 10 40 117 11 41 115 23 42 22 22 43 20 11 44 115 0 45 116 12 46 3 23 47 22 61 48 48 60 49 49 76 50 132 77 51 133 62 52 93 61 48 48 77 51 133 78 53 134 63 54 92 62 52 93 78 53 134 79 55 135 64 56 91 63 54 92 79 55 135 80 57 136 65 58 90 64 56 91 80 57 136 81 59 137 66 60 89 65 58 90 81 59 137 82 61 138 67 62 88 66 60 89 82 61 138 83 63 139 68 64 87 67 62 88 83 63 139 72 65 128 69 66 86 68 64 87 72 65 128 73 67 129 70 68 85 69 66 86 73 67 129 74 69 130 71 70 84 70 68 85 74 69 130 75 71 131 60 49 49 71 70 84 75 71 131 76 50 132 24 72 83 25 73 82 91 74 147 92 75 148 25 73 82 26 76 81 90 77 146 91 74 147 26 76 81 27 78 80 89 79 145 90 77 146 27 78 80 28 80 79 88 81 144 89 79 145 28 80 79 29 82 78 87 83 143 88 81 144 29 82 78 30 84 77 86 85 142 87 83 143 30 84 77 31 86 76 85 87 141 86 85 142 31 86 76 32 88 75 84 89 140 85 87 141 32 88 75 33 90 74 95 91 151 84 89 140 33 90 74 34 92 73 94 93 150 95 91 151 34 92 73 35 94 72 93 95 149 94 93 150 35 94 72 24 72 83 92 75 148 93 95 149 12 96 3 13 97 2 25 98 23 24 99 24 13 100 2 14 101 5 26 102 25 25 103 23 14 104 94 15 105 95 27 106 96 26 107 97 15 108 95 16 109 8 28 110 26 27 111 96 16 112 8 17 113 10 29 114 27 28 115 26 17 116 10 18 117 12 30 118 28 29 119 27 18 120 12 19 121 14 31 122 29 30 123 28 19 124 14 20 125 16 32 126 30 31 127 29 20 128 16 21 129 18 33 130 31 32 131 30 21 132 18 22 133 20 34 134 32 33 135 31 22 136 20 23 137 22 35 138 33 34 139 32 23 140 22 12 141 3 24 142 24 35 143 33 1 144 1 0 145 0 36 146 34 37 147 35 2 148 4 1 149 1 37 150 35 38 151 36 3 152 6 2 153 126 38 154 99 39 155 37 4 156 7 3 157 6 39 158 37 40 159 38 5 160 9 4 161 7 40 162 38 41 163 39 6 164 11 5 165 9 41 166 39 42 167 40 7 168 13 6 169 11 42 170 40 43 171 41 8 172 15 7 173 13 43 174 41 44 175 42 9 176 17 8 177 15 44 178 42 45 179 43 10 180 19 9 181 17 45 182 43 46 183 44 11 184 21 10 185 19 46 186 44 47 187 45 0 188 0 11 189 21 47 190 45 36 191 34 37 192 35 36 193 34 48 194 103 49 195 114 38 196 36 37 197 35 49 198 114 50 199 112 39 200 37 38 201 99 50 202 100 51 203 111 40 204 38 39 205 37 51 206 111 52 207 110 41 208 39 40 209 38 52 210 110 53 211 109 42 212 40 41 213 39 53 214 109 54 215 108 43 216 41 42 217 40 54 218 108 55 219 107 44 220 42 43 221 41 55 222 107 56 223 106 45 224 43 44 225 42 56 226 106 57 227 105 46 228 44 45 229 43 57 230 105 58 231 104 47 232 45 46 233 44 58 234 104 59 235 102 36 236 34 47 237 45 59 238 102 48 239 103 49 240 47 48 241 46 60 242 60 61 243 61 50 244 50 49 245 47 61 246 61 62 247 62 51 248 51 50 249 113 62 250 101 63 251 63 52 252 52 51 253 51 63 254 63 64 255 64 53 256 53 52 257 52 64 258 64 65 259 65 54 260 54 53 261 53 65 262 65 66 263 66 55 264 55 54 265 54 66 266 66 67 267 67 56 268 56 55 269 55 67 270 67 68 271 68 57 272 57 56 273 56 68 274 68 69 275 69 58 276 58 57 277 57 69 278 69 70 279 70 59 280 59 58 281 58 70 282 70 71 283 71 48 284 46 59 285 59 71 286 71 60 287 60 73 288 152 72 289 153 84 290 154 95 291 155 74 292 156 73 293 152 95 294 155 94 295 157 75 296 158 74 297 156 94 298 157 93 299 159 76 300 160 75 301 158 93 302 159 92 303 161 77 304 162 76 305 160 92 306 161 91 307 163 78 308 164 77 309 175 91 310 176 90 311 177 79 312 165 78 313 164 90 314 177 89 315 166 80 316 167 79 317 165 89 318 166 88 319 168 81 320 169 80 321 167 88 322 168 87 323 170 82 324 171 81 325 169 87 326 170 86 327 172 83 328 173 82 329 171 86 330 172 85 331 174 72 332 153 83 333 173 85 334 174 84 335 154</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rear_bearings1_uShape</originalMayaNodeId>\r\n          <double_sided>0</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rearLockRing_nubs_uShape\" name=\"rearLockRing_nubs_uShape\">\r\n      <mesh>\r\n        <source id=\"rearLockRing_nubs_uShape-positions\" name=\"rearLockRing_nubs_uShape-positions\">\r\n          <float_array id=\"rearLockRing_nubs_uShape-positions-array\" count=\"96\">-20.09432 0.1712044 2.509214 -20.09432 -0.1683167 2.509214 -19.60519 0.1712044 2.509214 -19.60519 -0.1683167 2.509214 -19.60519 0.1712044 2.39604 -19.60519 -0.1683167 2.39604 -20.09432 0.1712044 2.39604 -20.09432 -0.1683167 2.39604 -20.09432 2.402061 0.1690078 -20.09432 2.402061 -0.1705133 -19.60519 2.402061 0.1690078 -19.60519 2.402061 -0.1705133 -19.60519 2.515235 0.1690078 -19.60519 2.515235 -0.1705133 -20.09432 2.515235 0.1690078 -20.09432 2.515235 -0.1705133 -20.09432 0.1779066 -2.401015 -20.09432 -0.1616145 -2.401015 -19.60519 0.1779066 -2.401015 -19.60519 -0.1616145 -2.401015 -19.60519 0.1779066 -2.514189 -19.60519 -0.1616145 -2.514189 -20.09432 0.1779066 -2.514189 -20.09432 -0.1616145 -2.514189 -20.09432 -2.50529 0.1690067 -20.09432 -2.50529 -0.1705144 -19.60519 -2.50529 0.1690067 -19.60519 -2.50529 -0.1705144 -19.60519 -2.392116 0.1690067 -19.60519 -2.392116 -0.1705144 -20.09432 -2.392116 0.1690067 -20.09432 -2.392116 -0.1705144</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRing_nubs_uShape-positions-array\" count=\"32\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rearLockRing_nubs_uShape-normals\" name=\"rearLockRing_nubs_uShape-normals\">\r\n          <float_array id=\"rearLockRing_nubs_uShape-normals-array\" count=\"288\">0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRing_nubs_uShape-normals-array\" count=\"96\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rearLockRing_nubs_uShape-map1\" name=\"rearLockRing_nubs_uShape-map1\">\r\n          <float_array id=\"rearLockRing_nubs_uShape-map1-array\" count=\"112\">0.4067554 0.5129755 0.4120345 0.5129755 0.4067554 0.5182546 0.4120345 0.5182546 0.4067554 0.5235338 0.4120345 0.5235338 0.4067554 0.5288129 0.4120345 0.5288129 0.4067554 0.5340919 0.4120345 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRing_nubs_uShape-map1-array\" count=\"56\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rearLockRing_nubs_uShape-vertices\" name=\"rearLockRing_nubs_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rearLockRing_nubs_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"24\">\r\n          <input semantic=\"VERTEX\" source=\"#rearLockRing_nubs_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rearLockRing_nubs_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rearLockRing_nubs_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 3 2 3 2 3 2 2 4 2 3 5 3 5 6 5 4 7 4 4 8 4 5 9 5 7 10 7 6 11 6 6 12 6 7 13 7 1 14 9 0 15 8 1 16 1 7 17 10 5 18 11 3 19 3 6 20 12 0 21 0 2 22 2 4 23 13 8 24 14 9 25 15 11 26 16 10 27 17 10 28 17 11 29 16 13 30 18 12 31 19 12 32 19 13 33 18 15 34 20 14 35 21 14 36 21 15 37 20 9 38 22 8 39 23 9 40 15 15 41 24 13 42 25 11 43 16 14 44 26 8 45 14 10 46 17 12 47 27 16 48 28 17 49 29 19 50 30 18 51 31 18 52 31 19 53 30 21 54 32 20 55 33 20 56 33 21 57 32 23 58 34 22 59 35 22 60 35 23 61 34 17 62 36 16 63 37 17 64 29 23 65 38 21 66 39 19 67 30 22 68 40 16 69 28 18 70 31 20 71 41 24 72 42 25 73 43 27 74 44 26 75 45 26 76 45 27 77 44 29 78 46 28 79 47 28 80 47 29 81 46 31 82 48 30 83 49 30 84 49 31 85 48 25 86 50 24 87 51 25 88 43 31 89 52 29 90 53 27 91 44 30 92 54 24 93 42 26 94 45 28 95 55</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rearLockRing_nubs_uShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"rearLockRingBody_uShape\" name=\"rearLockRingBody_uShape\">\r\n      <mesh>\r\n        <source id=\"rearLockRingBody_uShape-positions\" name=\"rearLockRingBody_uShape-positions\">\r\n          <float_array id=\"rearLockRingBody_uShape-positions-array\" count=\"192\">-0.2548823 0 -1.908795 -0.2548823 0.7304642 -1.763496 -0.2548823 1.349722 -1.349722 -0.2548823 1.763496 -0.7304639 -0.2548823 1.908795 0 -0.2548823 1.763496 0.730464 -0.2548823 1.349722 1.349722 -0.2548823 0.7304639 1.763496 -0.2548823 0 1.908794 -0.2548823 -0.7304641 1.763496 -0.2548823 -1.349722 1.349721 -0.2548823 -1.763496 0.7304632 -0.2548823 -1.908794 0 -0.2548823 -1.763495 -0.7304645 -0.2548823 -1.34972 -1.349722 -0.2548823 -0.7304629 -1.763496 0.2548823 0 -1.908795 0.2548823 0.7304642 -1.763496 0.2548823 1.349722 -1.349722 0.2548823 1.763496 -0.7304639 0.2548823 1.908795 0 0.2548823 1.763496 0.730464 0.2548823 1.349722 1.349722 0.2548823 0.7304639 1.763496 0.2548823 0 1.908794 0.2548823 -0.7304641 1.763496 0.2548823 -1.349722 1.349721 0.2548823 -1.763496 0.7304632 0.2548823 -1.908794 0 0.2548823 -1.763495 -0.7304645 0.2548823 -1.34972 -1.349722 0.2548823 -0.7304629 -1.763496 0.2548823 0 -2.469586 0.2548823 0.9450698 -2.2816 0.2548823 1.746261 -1.746261 0.2548823 2.2816 -0.9450694 0.2548823 2.469586 0 0.2548823 2.2816 0.9450699 0.2548823 1.746261 1.746261 0.2548823 0.9450691 2.2816 0.2548823 0 2.469585 0.2548823 -0.9450699 2.281599 0.2548823 -1.746261 1.74626 0.2548823 -2.2816 0.9450684 0.2548823 -2.469585 0 0.2548823 -2.281598 -0.9450705 0.2548823 -1.746259 -1.746261 0.2548823 -0.945068 -2.2816 -0.2548823 0 -2.469586 -0.2548823 0.9450698 -2.2816 -0.2548823 1.746261 -1.746261 -0.2548823 2.2816 -0.9450694 -0.2548823 2.469586 0 -0.2548823 2.2816 0.9450699 -0.2548823 1.746261 1.746261 -0.2548823 0.9450691 2.2816 -0.2548823 0 2.469585 -0.2548823 -0.9450699 2.281599 -0.2548823 -1.746261 1.74626 -0.2548823 -2.2816 0.9450684 -0.2548823 -2.469585 0 -0.2548823 -2.281598 -0.9450705 -0.2548823 -1.746259 -1.746261 -0.2548823 -0.945068 -2.2816</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRingBody_uShape-positions-array\" count=\"64\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rearLockRingBody_uShape-normals\" name=\"rearLockRingBody_uShape-normals\">\r\n          <float_array id=\"rearLockRingBody_uShape-normals-array\" count=\"384\">0 -0.3826835 0.9238794 0 0 1 0 0 1 0 -0.3826835 0.9238794 0 -0.7071069 0.7071067 0 -0.7071069 0.7071067 0 -0.9238795 0.3826835 0 -0.9238795 0.3826835 0 -1 0 0 -1 0 0 -0.9238795 -0.3826834 0 -0.9238795 -0.3826834 0 -0.7071067 -0.7071068 0 -0.7071067 -0.7071068 0 -0.3826831 -0.9238797 0 -0.3826831 -0.9238797 0 0 -1 0 0 -1 0 0.3826836 -0.9238795 0 0.3826836 -0.9238795 0 0.707107 -0.7071065 0 0.707107 -0.7071065 0 0.9238797 -0.382683 0 0.9238797 -0.382683 0 1 0 0 1 0 0 0.9238794 0.3826838 0 0.9238794 0.3826838 0 0.7071065 0.7071071 0 0.7071065 0.7071071 0 0.3826835 0.9238796 0 0.3826835 0.9238796 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.3826835 -0.9238794 0 0 -1 0 0 -1 0 0.3826835 -0.9238794 0 0.7071069 -0.7071066 0 0.7071069 -0.7071066 0 0.9238796 -0.3826832 0 0.9238796 -0.3826832 0 1 0 0 1 0 0 0.9238795 0.3826836 0 0.9238795 0.3826836 0 0.7071068 0.7071068 0 0.7071068 0.7071068 0 0.3826829 0.9238797 0 0.3826829 0.9238797 0 0 1 0 0 1 0 -0.3826836 0.9238794 0 -0.3826836 0.9238794 0 -0.7071069 0.7071066 0 -0.7071069 0.7071066 0 -0.9238797 0.3826829 0 -0.9238797 0.3826829 0 -0.9999999 0 0 -0.9999999 0 0 -0.9238794 -0.3826838 0 -0.9238794 -0.3826838 0 -0.7071065 -0.7071071 0 -0.7071065 -0.7071071 0 -0.3826835 -0.9238795 0 -0.3826835 -0.9238795 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRingBody_uShape-normals-array\" count=\"128\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"rearLockRingBody_uShape-map1\" name=\"rearLockRingBody_uShape-map1\">\r\n          <float_array id=\"rearLockRingBody_uShape-map1-array\" count=\"264\">1 0.9001086 1 0.850095 0.9999999 0.8000814 1 0.7500678 1 0.7000543 1 0.6500407 1 0.6000271 0.9999999 0.5500135 1 0.5 0.9999999 0.4499865 1 0.3999729 1 0.3499593 1 0.2999457 1 0.2499322 0.9999999 0.1999186 1 0.149905 1 0.09989142 0.75 0.9001086 0.75 0.850095 0.75 0.8000814 0.75 0.7500678 0.75 0.7000543 0.75 0.6500407 0.75 0.6000271 0.75 0.5500135 0.75 0.5 0.75 0.4499864 0.75 0.3999729 0.75 0.3499593 0.75 0.2999457 0.75 0.2499322 0.75 0.1999186 0.75 0.149905 0.75 0.09989142 0.5 0.9001086 0.5 0.850095 0.5 0.8000814 0.5 0.7500678 0.5 0.7000543 0.5 0.6500407 0.5 0.6000271 0.5 0.5500135 0.5 0.5 0.5 0.4499865 0.5 0.3999729 0.5 0.3499593 0.5 0.2999457 0.5 0.2499321 0.5 0.1999186 0.5 0.149905 0.5 0.09989142 0.25 0.9001086 0.25 0.850095 0.25 0.8000814 0.25 0.7500678 0.25 0.7000543 0.25 0.6500407 0.25 0.6000271 0.25 0.5500135 0.25 0.5 0.25 0.4499864 0.25 0.3999729 0.25 0.3499593 0.25 0.2999457 0.25 0.2499321 0.25 0.1999186 0.25 0.149905 0.25 0.09989145 0.5346442 0.5405008 0.5374987 0.5261506 0.5485157 0.5261506 0.5448226 0.5447168 0.5265155 0.5526663 0.5343057 0.5604565 0.5143501 0.5607951 0.518566 0.5709734 0.4999998 0.5636495 0.4999998 0.5746664 0.4856496 0.5607951 0.4814336 0.5709734 0.4734841 0.5526663 0.465694 0.5604565 0.4653553 0.5405008 0.455177 0.5447168 0.4625009 0.5261506 0.451484 0.5261506 0.4653553 0.5118004 0.4551771 0.5075843 0.4734841 0.4996349 0.465694 0.4918447 0.4856496 0.4915062 0.4814336 0.4813278 0.4999998 0.4886517 0.4999998 0.4776348 0.5143501 0.4915062 0.518566 0.4813278 0.5265155 0.4996349 0.5343057 0.4918448 0.5346442 0.5118004 0.5448226 0.5075845 0.5448226 0.5447168 0.5485157 0.5261506 0.5374987 0.5261506 0.5346442 0.5405008 0.5343057 0.5604565 0.5265155 0.5526663 0.518566 0.5709734 0.5143501 0.5607951 0.4999998 0.5746664 0.4999998 0.5636495 0.4814336 0.5709734 0.4856496 0.5607951 0.465694 0.5604565 0.4734841 0.5526663 0.455177 0.5447168 0.4653553 0.5405008 0.451484 0.5261506 0.4625009 0.5261506 0.4551771 0.5075843 0.4653553 0.5118004 0.465694 0.4918447 0.4734841 0.4996349 0.4814336 0.4813278 0.4856496 0.4915062 0.4999998 0.4776348 0.4999998 0.4886517 0.518566 0.4813278 0.5143501 0.4915062 0.5343057 0.4918448 0.5265155 0.4996349 0.5448226 0.5075845 0.5346442 0.5118004</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#rearLockRingBody_uShape-map1-array\" count=\"132\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"rearLockRingBody_uShape-vertices\" name=\"rearLockRingBody_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#rearLockRingBody_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"64\">\r\n          <input semantic=\"VERTEX\" source=\"#rearLockRingBody_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#rearLockRingBody_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#rearLockRingBody_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 0 1 0 1 0 16 2 17 17 3 18 2 4 2 1 0 1 17 3 18 18 5 19 3 6 3 2 4 2 18 5 19 19 7 20 4 8 4 3 6 3 19 7 20 20 9 21 5 10 5 4 8 4 20 9 21 21 11 22 6 12 6 5 10 5 21 11 22 22 13 23 7 14 7 6 12 6 22 13 23 23 15 24 8 16 8 7 14 7 23 15 24 24 17 25 9 18 9 8 16 8 24 17 25 25 19 26 10 20 10 9 18 9 25 19 26 26 21 27 11 22 11 10 20 10 26 21 27 27 23 28 12 24 12 11 22 11 27 23 28 28 25 29 13 26 13 12 24 12 28 25 29 29 27 30 14 28 14 13 26 13 29 27 30 30 29 31 15 30 15 14 28 14 30 29 31 31 31 32 0 1 16 15 30 15 31 31 32 16 2 33 17 32 68 16 33 69 32 34 70 33 35 71 18 36 72 17 32 68 33 35 71 34 37 73 19 38 74 18 36 72 34 37 73 35 39 75 20 40 76 19 38 74 35 39 75 36 41 77 21 42 78 20 40 76 36 41 77 37 43 79 22 44 80 21 42 78 37 43 79 38 45 81 23 46 82 22 44 80 38 45 81 39 47 83 24 48 84 23 46 82 39 47 83 40 49 85 25 50 86 24 48 84 40 49 85 41 51 87 26 52 88 25 50 86 41 51 87 42 53 89 27 54 90 26 52 88 42 53 89 43 55 91 28 56 92 27 54 90 43 55 91 44 57 93 29 58 94 28 56 92 44 57 93 45 59 95 30 60 96 29 58 94 45 59 95 46 61 97 31 62 98 30 60 96 46 61 97 47 63 99 16 33 69 31 62 98 47 63 99 32 34 70 33 64 35 32 65 34 48 66 51 49 67 52 34 68 36 33 64 35 49 67 52 50 69 53 35 70 37 34 68 36 50 69 53 51 71 54 36 72 38 35 70 37 51 71 54 52 73 55 37 74 39 36 72 38 52 73 55 53 75 56 38 76 40 37 74 39 53 75 56 54 77 57 39 78 41 38 76 40 54 77 57 55 79 58 40 80 42 39 78 41 55 79 58 56 81 59 41 82 43 40 80 42 56 81 59 57 83 60 42 84 44 41 82 43 57 83 60 58 85 61 43 86 45 42 84 44 58 85 61 59 87 62 44 88 46 43 86 45 59 87 62 60 89 63 45 90 47 44 88 46 60 89 63 61 91 64 46 92 48 45 90 47 61 91 64 62 93 65 47 94 49 46 92 48 62 93 65 63 95 66 32 65 50 47 94 49 63 95 66 48 66 67 49 96 100 48 97 101 0 98 102 1 99 103 50 100 104 49 96 100 1 99 103 2 101 105 51 102 106 50 100 104 2 101 105 3 103 107 52 104 108 51 102 106 3 103 107 4 105 109 53 106 110 52 104 108 4 105 109 5 107 111 54 108 112 53 106 110 5 107 111 6 109 113 55 110 114 54 108 112 6 109 113 7 111 115 56 112 116 55 110 114 7 111 115 8 113 117 57 114 118 56 112 116 8 113 117 9 115 119 58 116 120 57 114 118 9 115 119 10 117 121 59 118 122 58 116 120 10 117 121 11 119 123 60 120 124 59 118 122 11 119 123 12 121 125 61 122 126 60 120 124 12 121 125 13 123 127 62 124 128 61 122 126 13 123 127 14 125 129 63 126 130 62 124 128 14 125 129 15 127 131 48 97 101 63 126 130 15 127 131 0 98 102</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>rearLockRingBody_uShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"frontLockRingBody_uShape\" name=\"frontLockRingBody_uShape\">\r\n      <mesh>\r\n        <source id=\"frontLockRingBody_uShape-positions\" name=\"frontLockRingBody_uShape-positions\">\r\n          <float_array id=\"frontLockRingBody_uShape-positions-array\" count=\"192\">-0.6158938 0 -2.723 -0.6158938 1.042047 -2.515724 -0.6158938 1.925452 -1.925452 -0.6158938 2.515724 -1.042047 -0.6158938 2.723 0 -0.6158938 2.515724 1.042047 -0.6158938 1.925452 1.925452 -0.6158938 1.042047 2.515724 -0.6158938 0 2.723 -0.6158938 -1.042048 2.515723 -0.6158938 -1.925452 1.925451 -0.6158938 -2.515724 1.042046 -0.6158938 -2.723 0 -0.6158938 -2.515723 -1.042048 -0.6158938 -1.925451 -1.925452 -0.6158938 -1.042046 -2.515724 0.218939 0 -2.723 0.218939 1.042047 -2.515724 0.218939 1.925452 -1.925452 0.218939 2.515724 -1.042047 0.218939 2.723 0 0.218939 2.515724 1.042047 0.218939 1.925452 1.925452 0.218939 1.042047 2.515724 0.218939 0 2.723 0.218939 -1.042048 2.515723 0.218939 -1.925452 1.925451 0.218939 -2.515724 1.042046 0.218939 -2.723 0 0.218939 -2.515723 -1.042048 0.218939 -1.925451 -1.925452 0.218939 -1.042046 -2.515724 0.218939 0 -3.523 0.218939 1.348194 -3.254827 0.218939 2.491137 -2.491137 0.218939 3.254827 -1.348193 0.218939 3.523 0 0.218939 3.254827 1.348194 0.218939 2.491136 2.491138 0.218939 1.348193 3.254827 0.218939 0 3.522999 0.218939 -1.348194 3.254826 0.218939 -2.491138 2.491136 0.218939 -3.254827 1.348192 0.218939 -3.522999 0 0.218939 -3.254826 -1.348195 0.218939 -2.491135 -2.491138 0.218939 -1.348191 -3.254827 -0.6158938 0 -3.523 -0.6158938 1.348194 -3.254827 -0.6158938 2.491137 -2.491137 -0.6158938 3.254827 -1.348193 -0.6158938 3.523 0 -0.6158938 3.254827 1.348194 -0.6158938 2.491136 2.491138 -0.6158938 1.348193 3.254827 -0.6158938 0 3.522999 -0.6158938 -1.348194 3.254826 -0.6158938 -2.491138 2.491136 -0.6158938 -3.254827 1.348192 -0.6158938 -3.522999 0 -0.6158938 -3.254826 -1.348195 -0.6158938 -2.491135 -2.491138 -0.6158938 -1.348191 -3.254827</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRingBody_uShape-positions-array\" count=\"64\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"frontLockRingBody_uShape-normals\" name=\"frontLockRingBody_uShape-normals\">\r\n          <float_array id=\"frontLockRingBody_uShape-normals-array\" count=\"384\">0 -0.3826835 0.9238795 0 0 1 0 0 1 0 -0.3826835 0.9238795 0 -0.7071068 0.7071067 0 -0.7071068 0.7071067 0 -0.9238796 0.3826834 0 -0.9238796 0.3826834 0 -0.9999999 0 0 -0.9999999 0 0 -0.9238795 -0.3826835 0 -0.9238795 -0.3826835 0 -0.7071067 -0.7071069 0 -0.7071067 -0.7071069 0 -0.3826832 -0.9238796 0 -0.3826832 -0.9238796 0 0 -1 0 0 -1 0 0.3826837 -0.9238794 0 0.3826837 -0.9238794 0 0.707107 -0.7071065 0 0.707107 -0.7071065 0 0.9238797 -0.382683 0 0.9238797 -0.382683 0 1 0 0 1 0 0 0.9238794 0.3826838 0 0.9238794 0.3826838 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 0.3826835 0.9238796 0 0.3826835 0.9238796 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.3826835 -0.9238795 0 0 -1 0 0 -1 0 0.3826835 -0.9238795 0 0.7071069 -0.7071067 0 0.7071069 -0.7071067 0 0.9238796 -0.3826832 0 0.9238796 -0.3826832 0 0.9999999 0 0 0.9999999 0 0 0.9238794 0.3826836 0 0.9238794 0.3826836 0 0.7071066 0.707107 0 0.7071066 0.707107 0 0.3826831 0.9238797 0 0.3826831 0.9238797 0 0 1 0 0 1 0 -0.3826838 0.9238794 0 -0.3826838 0.9238794 0 -0.7071071 0.7071065 0 -0.7071071 0.7071065 0 -0.9238797 0.382683 0 -0.9238797 0.382683 0 -1 0 0 -1 0 0 -0.9238793 -0.3826839 0 -0.9238793 -0.3826839 0 -0.7071064 -0.7071072 0 -0.7071064 -0.7071072 0 -0.3826835 -0.9238795 0 -0.3826835 -0.9238795 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRingBody_uShape-normals-array\" count=\"128\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"frontLockRingBody_uShape-map1\" name=\"frontLockRingBody_uShape-map1\">\r\n          <float_array id=\"frontLockRingBody_uShape-map1-array\" count=\"264\">1 0.9001086 1 0.850095 0.9999999 0.8000814 1 0.7500678 1 0.7000543 1 0.6500407 1 0.6000271 0.9999999 0.5500135 1 0.5 0.9999999 0.4499865 1 0.3999729 1 0.3499593 1 0.2999457 1 0.2499322 0.9999999 0.1999186 1 0.149905 1 0.09989142 0.75 0.9001086 0.75 0.850095 0.75 0.8000814 0.75 0.7500678 0.75 0.7000543 0.75 0.6500407 0.75 0.6000271 0.75 0.5500135 0.75 0.5 0.75 0.4499864 0.75 0.3999729 0.75 0.3499593 0.75 0.2999457 0.75 0.2499322 0.75 0.1999186 0.75 0.149905 0.75 0.09989142 0.5 0.9001086 0.5 0.850095 0.5 0.8000814 0.5 0.7500678 0.5 0.7000543 0.5 0.6500407 0.5 0.6000271 0.5 0.5500135 0.5 0.5 0.5 0.4499865 0.5 0.3999729 0.5 0.3499593 0.5 0.2999457 0.5 0.2499321 0.5 0.1999186 0.5 0.149905 0.5 0.09989142 0.25 0.9001086 0.25 0.850095 0.25 0.8000814 0.25 0.7500678 0.25 0.7000543 0.25 0.6500407 0.25 0.6000271 0.25 0.5500135 0.25 0.5 0.25 0.4499864 0.25 0.3999729 0.25 0.3499593 0.25 0.2999457 0.25 0.2499321 0.25 0.1999186 0.25 0.149905 0.25 0.09989145 0.5346442 0.5405008 0.5374987 0.5261506 0.5485157 0.5261506 0.5448226 0.5447168 0.5265155 0.5526663 0.5343057 0.5604565 0.5143501 0.5607951 0.518566 0.5709734 0.4999998 0.5636495 0.4999998 0.5746664 0.4856496 0.5607951 0.4814336 0.5709734 0.4734841 0.5526663 0.465694 0.5604565 0.4653553 0.5405008 0.455177 0.5447168 0.4625009 0.5261506 0.451484 0.5261506 0.4653553 0.5118004 0.4551771 0.5075843 0.4734841 0.4996349 0.465694 0.4918447 0.4856496 0.4915062 0.4814336 0.4813278 0.4999998 0.4886517 0.4999998 0.4776348 0.5143501 0.4915062 0.518566 0.4813278 0.5265155 0.4996349 0.5343057 0.4918448 0.5346442 0.5118004 0.5448226 0.5075845 0.5448226 0.5447168 0.5485157 0.5261506 0.5374987 0.5261506 0.5346442 0.5405008 0.5343057 0.5604565 0.5265155 0.5526663 0.518566 0.5709734 0.5143501 0.5607951 0.4999998 0.5746664 0.4999998 0.5636495 0.4814336 0.5709734 0.4856496 0.5607951 0.465694 0.5604565 0.4734841 0.5526663 0.455177 0.5447168 0.4653553 0.5405008 0.451484 0.5261506 0.4625009 0.5261506 0.4551771 0.5075843 0.4653553 0.5118004 0.465694 0.4918447 0.4734841 0.4996349 0.4814336 0.4813278 0.4856496 0.4915062 0.4999998 0.4776348 0.4999998 0.4886517 0.518566 0.4813278 0.5143501 0.4915062 0.5343057 0.4918448 0.5265155 0.4996349 0.5448226 0.5075845 0.5346442 0.5118004</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRingBody_uShape-map1-array\" count=\"132\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"frontLockRingBody_uShape-vertices\" name=\"frontLockRingBody_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#frontLockRingBody_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"64\">\r\n          <input semantic=\"VERTEX\" source=\"#frontLockRingBody_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#frontLockRingBody_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#frontLockRingBody_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 0 1 0 1 0 16 2 17 17 3 18 2 4 2 1 0 1 17 3 18 18 5 19 3 6 3 2 4 2 18 5 19 19 7 20 4 8 4 3 6 3 19 7 20 20 9 21 5 10 5 4 8 4 20 9 21 21 11 22 6 12 6 5 10 5 21 11 22 22 13 23 7 14 7 6 12 6 22 13 23 23 15 24 8 16 8 7 14 7 23 15 24 24 17 25 9 18 9 8 16 8 24 17 25 25 19 26 10 20 10 9 18 9 25 19 26 26 21 27 11 22 11 10 20 10 26 21 27 27 23 28 12 24 12 11 22 11 27 23 28 28 25 29 13 26 13 12 24 12 28 25 29 29 27 30 14 28 14 13 26 13 29 27 30 30 29 31 15 30 15 14 28 14 30 29 31 31 31 32 0 1 16 15 30 15 31 31 32 16 2 33 17 32 68 16 33 69 32 34 70 33 35 71 18 36 72 17 32 68 33 35 71 34 37 73 19 38 74 18 36 72 34 37 73 35 39 75 20 40 76 19 38 74 35 39 75 36 41 77 21 42 78 20 40 76 36 41 77 37 43 79 22 44 80 21 42 78 37 43 79 38 45 81 23 46 82 22 44 80 38 45 81 39 47 83 24 48 84 23 46 82 39 47 83 40 49 85 25 50 86 24 48 84 40 49 85 41 51 87 26 52 88 25 50 86 41 51 87 42 53 89 27 54 90 26 52 88 42 53 89 43 55 91 28 56 92 27 54 90 43 55 91 44 57 93 29 58 94 28 56 92 44 57 93 45 59 95 30 60 96 29 58 94 45 59 95 46 61 97 31 62 98 30 60 96 46 61 97 47 63 99 16 33 69 31 62 98 47 63 99 32 34 70 33 64 35 32 65 34 48 66 51 49 67 52 34 68 36 33 64 35 49 67 52 50 69 53 35 70 37 34 68 36 50 69 53 51 71 54 36 72 38 35 70 37 51 71 54 52 73 55 37 74 39 36 72 38 52 73 55 53 75 56 38 76 40 37 74 39 53 75 56 54 77 57 39 78 41 38 76 40 54 77 57 55 79 58 40 80 42 39 78 41 55 79 58 56 81 59 41 82 43 40 80 42 56 81 59 57 83 60 42 84 44 41 82 43 57 83 60 58 85 61 43 86 45 42 84 44 58 85 61 59 87 62 44 88 46 43 86 45 59 87 62 60 89 63 45 90 47 44 88 46 60 89 63 61 91 64 46 92 48 45 90 47 61 91 64 62 93 65 47 94 49 46 92 48 62 93 65 63 95 66 32 65 50 47 94 49 63 95 66 48 66 67 49 96 100 48 97 101 0 98 102 1 99 103 50 100 104 49 96 100 1 99 103 2 101 105 51 102 106 50 100 104 2 101 105 3 103 107 52 104 108 51 102 106 3 103 107 4 105 109 53 106 110 52 104 108 4 105 109 5 107 111 54 108 112 53 106 110 5 107 111 6 109 113 55 110 114 54 108 112 6 109 113 7 111 115 56 112 116 55 110 114 7 111 115 8 113 117 57 114 118 56 112 116 8 113 117 9 115 119 58 116 120 57 114 118 9 115 119 10 117 121 59 118 122 58 116 120 10 117 121 11 119 123 60 120 124 59 118 122 11 119 123 12 121 125 61 122 126 60 120 124 12 121 125 13 123 127 62 124 128 61 122 126 13 123 127 14 125 129 63 126 130 62 124 128 14 125 129 15 127 131 48 97 101 63 126 130 15 127 131 0 98 102</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>frontLockRingBody_uShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"frontLockRing_Nubs_uShape\" name=\"frontLockRing_Nubs_uShape\">\r\n      <mesh>\r\n        <source id=\"frontLockRing_Nubs_uShape-positions\" name=\"frontLockRing_Nubs_uShape-positions\">\r\n          <float_array id=\"frontLockRing_Nubs_uShape-positions-array\" count=\"96\">-20.40687 0.2433406 3.599168 -20.40687 -0.2435159 3.599168 -19.67989 0.2433406 3.599168 -19.67989 -0.2435159 3.599168 -19.67989 0.2433406 3.436882 -19.67989 -0.2435159 3.436882 -20.40687 0.2433406 3.436882 -20.40687 -0.2435159 3.436882 -20.40687 3.442279 0.2434282 -20.40687 3.442279 -0.2434282 -19.67989 3.442279 0.2434282 -19.67989 3.442279 -0.2434282 -19.67989 3.604564 0.2434282 -19.67989 3.604564 -0.2434282 -20.40687 3.604564 0.2434282 -20.40687 3.604564 -0.2434282 -20.40687 0.2529512 -3.441857 -20.40687 -0.2339052 -3.441857 -19.67989 0.2529512 -3.441857 -19.67989 -0.2339052 -3.441857 -19.67989 0.2529512 -3.604143 -19.67989 -0.2339052 -3.604143 -20.40687 0.2529512 -3.604143 -20.40687 -0.2339052 -3.604143 -20.40687 -3.594619 0.2434267 -20.40687 -3.594619 -0.2434298 -19.67989 -3.594619 0.2434267 -19.67989 -3.594619 -0.2434298 -19.67989 -3.432333 0.2434267 -19.67989 -3.432333 -0.2434298 -20.40687 -3.432333 0.2434267 -20.40687 -3.432333 -0.2434298</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRing_Nubs_uShape-positions-array\" count=\"32\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"frontLockRing_Nubs_uShape-normals\" name=\"frontLockRing_Nubs_uShape-normals\">\r\n          <float_array id=\"frontLockRing_Nubs_uShape-normals-array\" count=\"288\">0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRing_Nubs_uShape-normals-array\" count=\"96\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"frontLockRing_Nubs_uShape-map1\" name=\"frontLockRing_Nubs_uShape-map1\">\r\n          <float_array id=\"frontLockRing_Nubs_uShape-map1-array\" count=\"112\">0.4067554 0.5129755 0.4120345 0.5129755 0.4067554 0.5182546 0.4120345 0.5182546 0.4067554 0.5235338 0.4120345 0.5235338 0.4067554 0.5288129 0.4120345 0.5288129 0.4067554 0.5340919 0.4120345 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546 0.4067554 0.5129755 0.4120345 0.5129755 0.4120345 0.5182546 0.4067554 0.5182546 0.4120345 0.5235338 0.4067554 0.5235338 0.4120345 0.5288129 0.4067554 0.5288129 0.4120345 0.5340919 0.4067554 0.5340919 0.4173137 0.5129755 0.4173137 0.5182546 0.4014763 0.5129755 0.4014763 0.5182546</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#frontLockRing_Nubs_uShape-map1-array\" count=\"56\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"frontLockRing_Nubs_uShape-vertices\" name=\"frontLockRing_Nubs_uShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#frontLockRing_Nubs_uShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"24\">\r\n          <input semantic=\"VERTEX\" source=\"#frontLockRing_Nubs_uShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#frontLockRing_Nubs_uShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#frontLockRing_Nubs_uShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 3 2 3 2 3 2 2 4 2 3 5 3 5 6 5 4 7 4 4 8 4 5 9 5 7 10 7 6 11 6 6 12 6 7 13 7 1 14 9 0 15 8 1 16 1 7 17 10 5 18 11 3 19 3 6 20 12 0 21 0 2 22 2 4 23 13 8 24 14 9 25 15 11 26 16 10 27 17 10 28 17 11 29 16 13 30 18 12 31 19 12 32 19 13 33 18 15 34 20 14 35 21 14 36 21 15 37 20 9 38 22 8 39 23 9 40 15 15 41 24 13 42 25 11 43 16 14 44 26 8 45 14 10 46 17 12 47 27 16 48 28 17 49 29 19 50 30 18 51 31 18 52 31 19 53 30 21 54 32 20 55 33 20 56 33 21 57 32 23 58 34 22 59 35 22 60 35 23 61 34 17 62 36 16 63 37 17 64 29 23 65 38 21 66 39 19 67 30 22 68 40 16 69 28 18 70 31 20 71 41 24 72 42 25 73 43 27 74 44 26 75 45 26 76 45 27 77 44 29 78 46 28 79 47 28 80 47 29 81 46 31 82 48 30 83 49 30 84 49 31 85 48 25 86 50 24 87 51 25 88 43 31 89 52 29 90 53 27 91 44 30 92 54 24 93 42 26 94 45 28 95 55</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>frontLockRing_Nubs_uShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pumpHousingBracketShape1\" name=\"pumpHousingBracketShape1\">\r\n      <mesh>\r\n        <source id=\"pumpHousingBracketShape1-positions\" name=\"pumpHousingBracketShape1-positions\">\r\n          <float_array id=\"pumpHousingBracketShape1-positions-array\" count=\"420\">0.01038086 31.29735 32.91579 0.01038087 33.33386 32.91578 0.9321204 33.28285 32.91579 1.904515 33.18969 32.91578 2.784703 33.04618 32.91579 3.727089 32.82184 32.91578 4.839937 32.50261 32.91578 5.512774 32.23901 32.91578 6.329524 31.88146 32.91578 7.174129 31.43315 32.91578 7.965857 30.97178 32.91578 8.758976 30.42941 32.91578 9.476542 29.86187 32.91578 9.966101 29.44909 32.91578 10.46684 28.95729 32.91578 10.7351 28.43866 32.91578 10.77981 27.87805 32.91578 10.64247 27.31192 32.91579 10.31483 26.98569 32.91578 9.733614 26.83232 32.91578 8.980104 26.83579 32.91579 8.255644 26.97537 32.91578 7.653622 27.29211 32.91578 6.977882 27.79446 32.91578 6.130136 28.44388 32.91578 4.843634 29.45778 32.91578 3.992342 30.12021 32.91578 2.997649 30.62881 32.91578 2.063413 31.00469 32.91578 1.105092 31.19922 32.91578 -0.9113587 33.28285 32.91579 -1.883753 33.18969 32.91578 -2.763942 33.04618 32.91579 -3.706327 32.82184 32.91578 -4.835615 32.48617 32.91578 -5.492013 32.23901 32.91578 -6.308762 31.88146 32.91578 -7.153368 31.43315 32.91578 -7.945095 30.97178 32.91578 -8.738214 30.42941 32.91578 -9.45578 29.86187 32.91578 -9.945339 29.44909 32.91578 -10.44608 28.95729 32.91578 -10.71433 28.43866 32.91578 -10.75904 27.87805 32.91578 -10.62171 27.31192 32.91579 -10.29407 26.98569 32.91578 -9.712852 26.83232 32.91578 -8.959343 26.83579 32.91579 -8.234882 26.97537 32.91578 -7.63286 27.29211 32.91578 -6.95712 27.79446 32.91578 -6.109374 28.44388 32.91578 -4.839312 29.41237 32.91578 -3.971581 30.12021 32.91578 -2.976887 30.62881 32.91578 -2.042651 31.00469 32.91578 -1.08433 31.19922 32.91578 0.01038086 31.29735 30.99548 0.01038087 33.4575 31.88508 0.9321204 33.4575 31.88509 1.830366 33.4575 31.88508 2.784703 33.21235 31.88509 3.727089 32.97926 31.88508 4.839937 32.69794 31.88508 5.512774 32.23901 30.99547 6.329524 31.88146 30.99547 7.174129 31.43315 30.99547 7.965857 30.97178 30.99547 8.758976 30.42941 30.99547 9.476542 29.86187 30.99547 9.966101 29.44909 30.99547 10.46684 28.95729 30.99547 10.7351 28.43866 30.99547 10.77981 27.87805 30.99547 10.64247 27.31192 30.99548 10.31483 26.98569 30.99547 9.733614 26.83232 30.99547 8.980104 26.83579 30.99548 8.255644 26.97537 30.99547 7.653622 27.29211 30.99547 6.977882 27.79446 30.99547 6.130136 28.44388 30.99547 4.843634 29.45778 30.99547 3.992342 30.12021 30.99547 2.997649 30.62881 30.99548 2.063413 31.00469 30.99547 1.105092 31.19922 30.99547 -0.9113587 33.4575 31.88509 -1.842005 33.4575 31.88508 -2.763942 33.23647 31.88509 -3.706327 33.01945 31.88508 -4.835615 32.75597 31.88508 -5.492013 32.23901 30.99547 -6.308762 31.88146 30.99547 -7.153368 31.43315 30.99547 -7.945095 30.97178 30.99547 -8.738214 30.42941 30.99547 -9.45578 29.86187 30.99547 -9.945339 29.44909 30.99547 -10.44608 28.95729 30.99547 -10.71433 28.43866 30.99547 -10.75904 27.87805 30.99547 -10.62171 27.31192 30.99548 -10.29407 26.98569 30.99547 -9.712852 26.83232 30.99547 -8.959343 26.83579 30.99548 -8.234882 26.97537 30.99547 -7.63286 27.29211 30.99547 -6.95712 27.79446 30.99547 -6.109374 28.44388 30.99547 -4.839312 29.41237 30.99547 -3.971581 30.12021 30.99547 -2.976887 30.62881 30.99548 -2.042651 31.00469 30.99547 -1.08433 31.19922 30.99547 4.839937 32.50261 30.99547 -4.835615 32.48617 30.99547 0.01038087 33.4575 30.28832 0.9321204 33.4575 29.99781 1.830366 33.4575 24.06088 2.784703 33.21235 29.99782 3.727089 32.97926 29.99781 4.839937 32.69742 24.06088 4.843634 29.45778 24.06088 3.992342 30.12021 24.06088 2.997649 30.62881 24.06088 2.063413 31.00469 24.06088 1.105092 31.19922 24.06088 0.01038086 31.29735 24.06089 -0.9113587 33.4575 29.99782 -1.842004 33.4575 24.06088 -2.763942 33.23647 29.99782 -3.706327 33.01945 29.99781 -4.835615 32.75597 24.06088 -4.839312 29.41237 24.06088 -3.971581 30.12021 24.06088 -2.976887 30.62881 24.06088 -2.042651 31.00469 24.06088 -1.08433 31.19922 24.06088</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pumpHousingBracketShape1-positions-array\" count=\"140\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pumpHousingBracketShape1-normals\" name=\"pumpHousingBracketShape1-normals\">\r\n          <float_array id=\"pumpHousingBracketShape1-normals-array\" count=\"1593\">0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.02737682 0.9893222 0.1431509 0.02737682 0.9893222 0.1431509 0.02737682 0.9893222 0.1431509 0.02737682 0.9893222 0.1431509 0.04865504 0.9769309 0.2079395 0.04865504 0.9769309 0.2079395 0.04865504 0.9769309 0.2079395 0.04865504 0.9769309 0.2079395 0.2032843 0.9595663 0.1947003 0.2032843 0.9595663 0.1947003 0.2032843 0.9595663 0.1947003 0.2032843 0.9595663 0.1947003 0.2331579 0.9606748 0.1508029 0.2331579 0.9606748 0.1508029 0.2331579 0.9606748 0.1508029 0.2331579 0.9606748 0.1508029 0.2570247 0.9525579 0.1630085 0.2570247 0.9525579 0.1630085 0.2570247 0.9525579 0.1630085 0.2570247 0.9525579 0.1630085 0.5013466 0.863357 0.05715075 0.5013466 0.863357 0.05715075 0.5013466 0.863357 0.05715075 0.5013466 0.863357 0.05715075 0.4010224 0.9160683 0 0.4010224 0.9160683 0 0.4010224 0.9160683 0 0.4010224 0.9160683 0 0.4688437 0.8832812 0 0.4688437 0.8832812 0 0.4688437 0.8832812 0 0.4688437 0.8832812 0 0.5034862 0.8640034 0 0.5034862 0.8640034 0 0.5034862 0.8640034 0 0.5034862 0.8640034 0 0.5644751 0.8254501 0 0.5644751 0.8254501 0 0.5644751 0.8254501 0 0.5644751 0.8254501 0 0.620347 0.7843275 0 0.620347 0.7843275 0 0.620347 0.7843275 0 0.620347 0.7843275 0 0.6446152 0.7645072 0 0.6446152 0.7645072 0 0.6446152 0.7645072 0 0.6446152 0.7645072 0 0.7007063 0.7134499 0 0.7007063 0.7134499 0 0.7007063 0.7134499 0 0.7007063 0.7134499 0 0.8882195 0.4594194 0 0.8882195 0.4594194 0 0.8882195 0.4594194 0 0.8882195 0.4594194 0 0.9968349 0.07949919 0 0.9968349 0.07949919 0 0.9968349 0.07949919 0 0.9968349 0.07949919 0 0.9718134 -0.2357519 0 0.9718134 -0.2357519 0 0.9718134 -0.2357519 0 0.9718134 -0.2357519 0 0.7055847 -0.7086256 0 0.7055847 -0.7086256 0 0.7055847 -0.7086256 0 0.7055847 -0.7086256 0 0.2551523 -0.966901 0 0.2551523 -0.966901 0 0.2551523 -0.966901 0 0.2551523 -0.966901 0 -0.004614489 -0.9999894 0 -0.004614489 -0.9999894 0 -0.004614489 -0.9999894 0 -0.004614489 -0.9999894 0 -0.1891879 -0.981941 0 -0.1891879 -0.981941 0 -0.1891879 -0.981941 0 -0.1891879 -0.981941 0 -0.4656131 -0.8849884 0 -0.4656131 -0.8849884 0 -0.4656131 -0.8849884 0 -0.4656131 -0.8849884 0 -0.596611 -0.8025306 0 -0.596611 -0.8025306 0 -0.596611 -0.8025306 0 -0.596611 -0.8025306 0 -0.6081236 -0.7938424 0 -0.6081236 -0.7938424 0 -0.6081236 -0.7938424 0 -0.6081236 -0.7938424 0 -0.6189836 -0.7854039 0 -0.6189836 -0.7854039 0 -0.6189836 -0.7854039 0 -0.6189836 -0.7854039 0 -0.6141232 -0.7892103 0 -0.6141232 -0.7892103 0 -0.6141232 -0.7892103 0 -0.6141232 -0.7892103 0 -0.4552524 -0.8903624 0 -0.4552524 -0.8903624 0 -0.4552524 -0.8903624 0 -0.4552524 -0.8903624 0 -0.3732617 -0.9277261 0 -0.3732617 -0.9277261 0 -0.3732617 -0.9277261 0 -0.3732617 -0.9277261 0 -0.1989317 -0.9800134 0 -0.1989317 -0.9800134 0 -0.1989317 -0.9800134 0 -0.1989317 -0.9800134 0 -0.08928159 -0.9960065 0 -0.08928159 -0.9960065 0 -0.08928159 -0.9960065 0 -0.08928159 -0.9960065 0 -0.02737658 0.9893222 0.1431509 -0.02737658 0.9893222 0.1431509 -0.02737658 0.9893222 0.1431509 -0.02737658 0.9893222 0.1431509 -0.04782078 0.976811 0.2086948 -0.04782078 0.976811 0.2086948 -0.04782078 0.976811 0.2086948 -0.04782078 0.976811 0.2086948 -0.1938819 0.9584879 0.2090716 -0.1938819 0.9584879 0.2090716 -0.1938819 0.9584879 0.2090716 -0.1938819 0.9584879 0.2090716 -0.2242719 0.9577188 0.180213 -0.2242719 0.9577188 0.180213 -0.2242719 0.9577188 0.180213 -0.2242719 0.9577188 0.180213 -0.2504665 0.944158 0.2140848 -0.2504665 0.944158 0.2140848 -0.2504665 0.944158 0.2140848 -0.2504665 0.944158 0.2140848 -0.539852 0.8382639 0.0766399 -0.539852 0.8382639 0.0766399 -0.539852 0.8382639 0.0766399 -0.539852 0.8382639 0.0766399 -0.4010222 0.9160684 0 -0.4010222 0.9160684 0 -0.4010222 0.9160684 0 -0.4010222 0.9160684 0 -0.4688437 0.8832812 0 -0.4688437 0.8832812 0 -0.4688437 0.8832812 0 -0.4688437 0.8832812 0 -0.5034862 0.8640034 0 -0.5034862 0.8640034 0 -0.5034862 0.8640034 0 -0.5034862 0.8640034 0 -0.5644746 0.8254504 0 -0.5644746 0.8254504 0 -0.5644746 0.8254504 0 -0.5644746 0.8254504 0 -0.6203476 0.7843271 0 -0.6203476 0.7843271 0 -0.6203476 0.7843271 0 -0.6203476 0.7843271 0 -0.6446144 0.7645078 0 -0.6446144 0.7645078 0 -0.6446144 0.7645078 0 -0.6446144 0.7645078 0 -0.700707 0.7134492 0 -0.700707 0.7134492 0 -0.700707 0.7134492 0 -0.700707 0.7134492 0 -0.8882202 0.4594181 0 -0.8882202 0.4594181 0 -0.8882202 0.4594181 0 -0.8882202 0.4594181 0 -0.9968349 0.07950094 0 -0.9968349 0.07950094 0 -0.9968349 0.07950094 0 -0.9968349 0.07950094 0 -0.9718141 -0.2357487 0 -0.9718141 -0.2357487 0 -0.9718141 -0.2357487 0 -0.9718141 -0.2357487 0 -0.7055826 -0.7086278 0 -0.7055826 -0.7086278 0 -0.7055826 -0.7086278 0 -0.7055826 -0.7086278 0 -0.2551523 -0.966901 0 -0.2551523 -0.966901 0 -0.2551523 -0.966901 0 -0.2551523 -0.966901 0 0.004614495 -0.9999894 0 0.004614495 -0.9999894 0 0.004614495 -0.9999894 0 0.004614495 -0.9999894 0 0.1891878 -0.981941 0 0.1891878 -0.981941 0 0.1891878 -0.981941 0 0.1891878 -0.981941 0 0.4656128 -0.8849885 0 0.4656128 -0.8849885 0 0.4656128 -0.8849885 0 0.4656128 -0.8849885 0 0.596611 -0.8025306 0 0.596611 -0.8025306 0 0.596611 -0.8025306 0 0.596611 -0.8025306 0 0.6081234 -0.7938425 0 0.6081234 -0.7938425 0 0.6081234 -0.7938425 0 0.6081234 -0.7938425 0 0.606371 -0.7951819 0 0.606371 -0.7951819 0 0.606371 -0.7951819 0 0.606371 -0.7951819 0 0.6321024 -0.7748849 0 0.6321024 -0.7748849 0 0.6321024 -0.7748849 0 0.6321024 -0.7748849 0 0.4552524 -0.8903624 0 0.4552524 -0.8903624 0 0.4552524 -0.8903624 0 0.4552524 -0.8903624 0 0.3732617 -0.9277261 0 0.3732617 -0.9277261 0 0.3732617 -0.9277261 0 0.3732617 -0.9277261 0 0.1989317 -0.9800134 0 0.1989317 -0.9800134 0 0.1989317 -0.9800134 0 0.1989317 -0.9800134 0 0.08928158 -0.9960065 0 0.08928158 -0.9960065 0 0.08928158 -0.9960065 0 0.08928158 -0.9960065 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.2487962 0.9685559 0 0.2487962 0.9685559 0 0.2487962 0.9685559 0 0.2487962 0.9685559 0 0.2401042 0.9707471 0 0.2401042 0.9707471 0 0.2401042 0.9707471 0 0.2401042 0.9707471 0 0.2451658 0.9694812 0 0.2451658 0.9694812 0 0.2451658 0.9694812 0 0.2451658 0.9694812 0 -0.6141229 -0.7892105 0 -0.6141229 -0.7892105 0 -0.6141229 -0.7892105 0 -0.6141229 -0.7892105 0 -0.4552529 -0.8903622 0 -0.4552529 -0.8903622 0 -0.4552529 -0.8903622 0 -0.4552529 -0.8903622 0 -0.3732619 -0.9277261 0 -0.3732619 -0.9277261 0 -0.3732619 -0.9277261 0 -0.3732619 -0.9277261 0 -0.1989318 -0.9800134 0 -0.1989318 -0.9800134 0 -0.1989318 -0.9800134 0 -0.1989318 -0.9800134 0 -0.08928148 -0.9960064 0 -0.08928148 -0.9960064 0 -0.08928148 -0.9960064 0 -0.08928148 -0.9960064 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2331399 0.9724432 0 -0.2331399 0.9724432 0 -0.2331399 0.9724432 0 -0.2331399 0.9724432 0 -0.2244088 0.9744951 0 -0.2244088 0.9744951 0 -0.2244088 0.9744951 0 -0.2244088 0.9744951 0 -0.2272168 0.9738442 0 -0.2272168 0.9738442 0 -0.2272168 0.9738442 0 -0.2272168 0.9738442 0 0.6321021 -0.7748852 0 0.6321021 -0.7748852 0 0.6321021 -0.7748852 0 0.6321021 -0.7748852 0 0.4552528 -0.8903623 0 0.4552528 -0.8903623 0 0.4552528 -0.8903623 0 0.4552528 -0.8903623 0 0.3732619 -0.927726 0 0.3732619 -0.927726 0 0.3732619 -0.927726 0 0.3732619 -0.927726 0 0.1989318 -0.9800134 0 0.1989318 -0.9800134 0 0.1989318 -0.9800134 0 0.1989318 -0.9800134 0 0.08928148 -0.9960065 0 0.08928148 -0.9960065 0 0.08928148 -0.9960065 0 0.08928148 -0.9960065 0 -0.2272637 0.9738332 4.87098e-4 -0.2272637 0.9738332 4.87098e-4 -0.2272637 0.9738332 4.87098e-4 -0.2272637 0.9738332 4.87098e-4 0.2437315 0.9698427 2.55448e-4 0.2437315 0.9698427 2.55448e-4 0.2437315 0.9698427 2.55448e-4 0.2437315 0.9698427 2.55448e-4 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.357383 0.9122242 -0.2003112 0.357383 0.9122242 -0.2003112 0.357383 0.9122242 -0.2003112 -0.338999 0.9002931 -0.2730424 -0.338999 0.9002931 -0.2730424 -0.338999 0.9002931 -0.2730424 -0.9999994 0.001152073 0 -0.9999994 0.001152073 0 -0.9999994 0.001152073 0 -0.9999994 0.001152073 0 1 0 0 1 0 0 1 0 0 0.9999994 0.001176441 0 0.9999994 0.001176441 0 0.9999994 0.001176441 0 0.9999994 0.001176441 0 -1 0 0 -1 0 0 -1 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pumpHousingBracketShape1-normals-array\" count=\"531\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pumpHousingBracketShape1-map1\" name=\"pumpHousingBracketShape1-map1\">\r\n          <float_array id=\"pumpHousingBracketShape1-map1-array\" count=\"280\">0.5 0.5141283 0.5134205 0.5129254 0.5113 0.5384693 0.5 0.5390948 0.3718099 0.4854405 0.3685213 0.4790825 0.3679731 0.4722098 0.3696569 0.4652693 0.525169 0.5105405 0.523221 0.5373273 0.5488166 0.4996973 0.5455647 0.5328176 0.5340116 0.535568 0.5366222 0.5059325 0.5592529 0.4915763 0.5592076 0.5289041 0.5750246 0.4791465 0.5674561 0.5256724 0.5854175 0.471185 0.577469 0.5212892 0.5937017 0.4650264 0.5878234 0.5157931 0.6010821 0.4611434 0.5975295 0.5101371 0.6099635 0.4594322 0.6072526 0.5034879 0.6192012 0.4593896 0.6160496 0.4965302 0.6263266 0.4612699 0.6220514 0.4914697 0.6303432 0.4652693 0.62819 0.4854405 0.6320268 0.4722098 0.6314788 0.4790825 0.4887 0.5384693 0.4865795 0.5129254 0.476779 0.5373273 0.474831 0.5105405 0.4659885 0.535568 0.4633778 0.5059325 0.4544353 0.5328176 0.4511835 0.4996973 0.4405909 0.5287025 0.4405456 0.4910196 0.4325439 0.5256724 0.4249754 0.4791465 0.422531 0.5212892 0.4145826 0.471185 0.4121767 0.5157931 0.4062983 0.4650264 0.4024705 0.5101371 0.3989179 0.4611434 0.3927473 0.5034879 0.3900365 0.4594322 0.3839504 0.4965302 0.3807989 0.4593896 0.3779487 0.4914697 0.3736734 0.4612699 0.3718099 0.4854405 0.3696569 0.4652693 0.3679731 0.4722098 0.3685213 0.4790825 0.5750246 0.4791465 0.5674561 0.5256724 0.577469 0.5212892 0.5854175 0.471185 0.5878234 0.5157931 0.5937017 0.4650264 0.5975295 0.5101371 0.6010821 0.4611434 0.6072526 0.5034879 0.6099635 0.4594322 0.6160496 0.4965302 0.6192012 0.4593896 0.6220514 0.4914697 0.6263266 0.4612699 0.62819 0.4854405 0.6303432 0.4652693 0.6314788 0.4790825 0.6320268 0.4722098 0.4325439 0.5256724 0.4249754 0.4791465 0.4145826 0.471185 0.422531 0.5212892 0.4062983 0.4650264 0.4121767 0.5157931 0.3989179 0.4611434 0.4024705 0.5101371 0.3900365 0.4594322 0.3927473 0.5034879 0.3839504 0.4965302 0.3807989 0.4593896 0.3736734 0.4612699 0.3779487 0.4914697 0.5113 0.5406104 0.5 0.5406104 0.5223119 0.5406104 0.5340116 0.5376052 0.5455647 0.5347476 0.5592076 0.5312989 0.5592529 0.4915763 0.5488166 0.4996973 0.5366222 0.5059325 0.525169 0.5105405 0.5134205 0.5129254 0.5 0.5141283 0.4887 0.5406104 0.4772909 0.5406104 0.4659885 0.5379007 0.4544353 0.5352403 0.4405909 0.5320101 0.4405456 0.4910196 0.4511835 0.4996973 0.4633778 0.5059325 0.474831 0.5105405 0.4865795 0.5129254 0.5592076 0.5289041 0.4405909 0.5287025 0.5113 0.5406104 0.5 0.5406104 0.5223119 0.5406104 0.5340116 0.5376052 0.5455647 0.5347476 0.5592076 0.5312923 0.5488166 0.4996973 0.5592529 0.4915763 0.5366222 0.5059325 0.525169 0.5105405 0.5134205 0.5129254 0.5 0.5141283 0.4887 0.5406104 0.4772909 0.5406104 0.4659885 0.5379007 0.4544353 0.5352403 0.4405909 0.5320101 0.4405456 0.4910196 0.4511835 0.4996973 0.4633778 0.5059325 0.474831 0.5105405 0.4865795 0.5129254</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pumpHousingBracketShape1-map1-array\" count=\"140\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pumpHousingBracketShape1-vertices\" name=\"pumpHousingBracketShape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pumpHousingBracketShape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert4SG\" count=\"134\">\r\n          <input semantic=\"VERTEX\" source=\"#pumpHousingBracketShape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pumpHousingBracketShape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pumpHousingBracketShape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 3 3 4 3 4 3</vcount>\r\n          <p>0 0 0 29 1 1 2 2 2 1 3 3 42 4 4 43 5 5 44 6 6 45 7 7 29 8 1 28 9 8 3 10 9 2 11 2 26 12 10 5 13 11 4 14 12 27 15 13 4 16 12 3 17 9 28 18 8 27 19 13 26 20 10 25 21 14 6 22 15 5 23 11 25 24 14 24 25 16 7 26 17 6 27 15 24 28 16 23 29 18 8 30 19 7 31 17 23 32 18 22 33 20 9 34 21 8 35 19 22 36 20 21 37 22 10 38 23 9 39 21 21 40 22 20 41 24 11 42 25 10 43 23 20 44 24 19 45 26 12 46 27 11 47 25 19 48 26 18 49 28 13 50 29 12 51 27 18 52 28 17 53 30 14 54 31 13 55 29 17 56 30 16 57 32 15 58 33 14 59 31 0 60 0 1 61 3 30 62 34 57 63 35 30 64 34 31 65 36 56 66 37 57 67 35 31 68 36 32 69 38 55 70 39 56 71 37 32 72 38 33 73 40 54 74 41 55 75 39 33 76 40 34 77 42 53 78 43 54 79 41 34 80 42 35 81 44 52 82 45 53 83 43 35 84 44 36 85 46 51 86 47 52 87 45 36 88 46 37 89 48 50 90 49 51 91 47 37 92 48 38 93 50 49 94 51 50 95 49 38 96 50 39 97 52 48 98 53 49 99 51 40 100 54 47 101 55 48 102 53 39 103 52 40 104 54 41 105 56 46 106 57 47 107 55 41 108 56 42 109 4 45 110 7 46 111 57 100 112 58 103 113 59 102 114 60 101 115 61 82 116 62 65 117 63 66 118 64 81 119 65 81 120 65 66 121 64 67 122 66 80 123 67 80 124 67 67 125 66 68 126 68 79 127 69 79 128 69 68 129 68 69 130 70 78 131 71 78 132 71 69 133 70 70 134 72 77 135 73 77 136 73 70 137 72 71 138 74 76 139 75 76 140 75 71 141 74 72 142 76 75 143 77 75 144 77 72 145 76 73 146 78 74 147 79 93 148 80 110 149 81 109 150 82 94 151 83 94 152 83 109 153 82 108 154 84 95 155 85 95 156 85 108 157 84 107 158 86 96 159 87 96 160 87 107 161 86 106 162 88 97 163 89 98 164 90 97 165 89 106 166 88 105 167 91 98 168 90 105 169 91 104 170 92 99 171 93 99 172 93 104 173 92 103 174 59 100 175 58 1 176 3 2 177 2 60 178 94 59 179 95 2 180 2 3 181 9 61 182 96 60 183 94 3 184 9 4 185 12 62 186 97 61 187 96 4 188 12 5 189 11 63 190 98 62 191 97 5 192 11 6 193 15 64 194 99 63 195 98 6 196 15 7 197 17 65 198 63 64 199 99 7 200 17 8 201 19 66 202 64 65 203 63 8 204 19 9 205 21 67 206 66 66 207 64 9 208 21 10 209 23 68 210 68 67 211 66 10 212 23 11 213 25 69 214 70 68 215 68 11 216 25 12 217 27 70 218 72 69 219 70 12 220 27 13 221 29 71 222 74 70 223 72 13 224 29 14 225 31 72 226 76 71 227 74 14 228 31 15 229 33 73 230 78 72 231 76 15 232 33 16 233 32 74 234 79 73 235 78 16 236 32 17 237 30 75 238 77 74 239 79 17 240 30 18 241 28 76 242 75 75 243 77 18 244 28 19 245 26 77 246 73 76 247 75 19 248 26 20 249 24 78 250 71 77 251 73 20 252 24 21 253 22 79 254 69 78 255 71 21 256 22 22 257 20 80 258 67 79 259 69 22 260 20 23 261 18 81 262 65 80 263 67 23 264 18 24 265 16 82 266 62 81 267 65 24 268 16 25 269 14 83 270 100 82 271 62 25 272 14 26 273 10 84 274 101 83 275 100 26 276 10 27 277 13 85 278 102 84 279 101 27 280 13 28 281 8 86 282 103 85 283 102 28 284 8 29 285 1 87 286 104 86 287 103 29 288 1 0 289 0 58 290 105 87 291 104 30 292 34 1 293 3 59 294 95 88 295 106 31 296 36 30 297 34 88 298 106 89 299 107 32 300 38 31 301 36 89 302 107 90 303 108 33 304 40 32 305 38 90 306 108 91 307 109 34 308 42 33 309 40 91 310 109 92 311 110 35 312 44 34 313 42 92 314 110 93 315 80 36 316 46 35 317 44 93 318 80 94 319 83 37 320 48 36 321 46 94 322 83 95 323 85 38 324 50 37 325 48 95 326 85 96 327 87 39 328 52 38 329 50 96 330 87 97 331 89 40 332 54 39 333 52 97 334 89 98 335 90 41 336 56 40 337 54 98 338 90 99 339 93 42 340 4 41 341 56 99 342 93 100 343 58 43 344 5 42 345 4 100 346 58 101 347 61 44 348 6 43 349 5 101 350 61 102 351 60 45 352 7 44 353 6 102 354 60 103 355 59 46 356 57 45 357 7 103 358 59 104 359 92 47 360 55 46 361 57 104 362 92 105 363 91 48 364 53 47 365 55 105 366 91 106 367 88 49 368 51 48 369 53 106 370 88 107 371 86 50 372 49 49 373 51 107 374 86 108 375 84 51 376 47 50 377 49 108 378 84 109 379 82 52 380 45 51 381 47 109 382 82 110 383 81 53 384 43 52 385 45 110 386 81 111 387 111 54 388 41 53 389 43 111 390 111 112 391 112 55 392 39 54 393 41 112 394 112 113 395 113 56 396 37 55 397 39 113 398 113 114 399 114 57 400 35 56 401 37 114 402 114 115 403 115 0 404 0 57 405 35 115 406 115 58 407 105 83 408 100 116 409 116 65 410 63 82 411 62 93 412 80 117 413 117 111 414 111 110 415 81 59 416 95 60 417 94 119 418 118 118 419 119 60 420 94 61 421 96 120 422 120 119 423 118 61 424 96 62 425 97 121 426 121 120 427 120 62 428 97 63 429 98 122 430 122 121 431 121 63 432 98 64 433 99 123 434 123 122 435 122 83 436 100 84 437 101 125 438 124 124 439 125 84 440 101 85 441 102 126 442 126 125 443 124 85 444 102 86 445 103 127 446 127 126 447 126 86 448 103 87 449 104 128 450 128 127 451 127 87 452 104 58 453 105 129 454 129 128 455 128 88 456 106 59 457 95 118 458 119 130 459 130 89 460 107 88 461 106 130 462 130 131 463 131 90 464 108 89 465 107 131 466 131 132 467 132 91 468 109 90 469 108 132 470 132 133 471 133 92 472 110 91 473 109 133 474 133 134 475 134 112 476 112 111 477 111 135 478 135 136 479 136 113 480 113 112 481 112 136 482 136 137 483 137 114 484 114 113 485 113 137 486 137 138 487 138 115 488 115 114 489 114 138 490 138 139 491 139 58 492 105 115 493 115 139 494 139 129 495 129 132 496 132 131 497 131 134 498 134 133 499 133 120 500 120 121 501 121 122 502 122 123 503 123 118 504 119 119 505 118 130 506 130 131 507 131 130 508 130 119 509 118 120 510 120 65 511 63 116 512 116 64 513 99 93 514 80 92 515 110 117 516 117 117 517 117 134 518 134 135 519 135 111 520 111 64 521 99 116 522 116 123 523 123 83 524 100 124 525 125 123 526 123 116 527 116 117 528 117 92 529 110 134 530 134</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pumpHousingBracketShape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"polySurfaceShape1\" name=\"polySurfaceShape1\">\r\n      <mesh>\r\n        <source id=\"polySurfaceShape1-positions\" name=\"polySurfaceShape1-positions\">\r\n          <float_array id=\"polySurfaceShape1-positions-array\" count=\"807\">29.99385 23.42166 40.08468 29.85754 25.75288 40.08558 29.75302 28.43705 40.08612 28.94174 30.81624 40.08664 27.51088 32.47665 40.08699 25.84385 33.66492 40.08725 24.1049 34.33095 40.08739 22.30197 34.54009 40.08744 20.51314 34.32586 40.08739 18.75051 33.67506 40.08725 17.12941 32.49606 40.087 15.68048 30.82885 40.08664 14.8568 28.44606 40.08612 14.72872 25.76357 40.08558 14.58043 23.42439 40.08506 14.58039 21.18532 40.08456 14.58036 18.94116 40.08407 14.71372 16.59799 40.08355 14.8305 13.88222 40.083 15.73856 11.59096 40.0825 17.1345 9.89825 40.08214 18.75562 8.689836 40.08188 20.51469 8.071596 40.08175 22.30197 7.845757 40.08131 24.09416 8.037003 40.08136 25.85246 8.676734 40.08149 27.47476 9.888103 40.08175 28.88755 11.54347 40.08211 29.78053 13.89295 40.08261 29.87978 16.60573 40.08316 29.99385 18.94906 40.08369 29.99385 21.18674 40.08418 33.12934 31.85006 40.08693 31.76814 33.14268 40.08722 30.25745 34.25259 40.08747 28.62112 35.16228 40.08767 26.88494 35.8574 40.08782 25.0763 36.327 40.08793 23.22371 36.56367 40.08798 22.30484 36.61468 40.08799 21.35641 36.56367 40.08798 19.50382 36.327 40.08793 17.69518 35.8574 40.08782 15.959 35.16228 40.08767 14.32267 34.25259 40.08747 12.81199 33.14268 40.08722 11.45078 31.85006 40.08693 11.45077 21.18402 40.08456 11.45077 10.44591 40.08218 12.81198 9.15329 40.08189 14.32267 8.04338 40.08165 15.959 7.133692 40.08144 17.69518 6.438566 40.08129 19.50382 5.968969 40.08119 21.35641 5.732304 40.08113 22.30484 5.712584 40.08118 23.22372 5.732305 40.08113 25.0763 5.968969 40.08119 26.88494 6.438568 40.08129 28.62112 7.133695 40.08144 30.25746 8.043385 40.08165 31.76814 9.153294 40.08189 33.12935 10.44592 40.08218 33.12935 21.18402 40.08456 29.85754 25.75288 33.51978 22.30197 21.18675 33.51876 29.75302 28.43705 33.52032 28.94174 30.81624 33.52084 27.51088 32.47665 33.52119 25.84385 33.66492 33.52145 24.1049 34.33095 33.52159 22.30197 34.54009 33.52164 20.51314 34.32586 33.52159 18.75051 33.67506 33.52145 17.12941 32.49606 33.5212 15.68048 30.82885 33.52084 14.8568 28.44606 33.52032 14.72872 25.76357 33.51978 14.71372 16.59799 33.51775 14.8305 13.88222 33.5172 15.73856 11.59096 33.5167 17.1345 9.89825 33.51634 18.75562 8.689836 33.51608 20.51469 8.071596 33.51595 22.30197 7.845757 33.51551 24.09416 8.037003 33.51556 25.85246 8.676734 33.51569 27.47476 9.888103 33.51595 28.88755 11.54347 33.51631 29.78053 13.89295 33.51682 29.87978 16.60573 33.51736 33.12934 31.85006 32.99063 31.76814 33.14268 32.99091 30.25745 34.25259 32.99116 28.62112 35.16228 32.99136 26.88494 35.8574 32.99152 25.0763 36.327 32.99162 23.22371 36.56367 32.99167 22.30341 36.61468 32.99038 21.35641 36.56367 32.99167 19.50382 36.327 32.99162 17.69518 35.8574 32.99152 15.959 35.16228 32.99136 14.32267 34.25259 32.99116 12.81199 33.14268 32.99091 11.45078 31.85006 32.99063 11.45077 10.44591 32.98614 12.81198 9.153291 32.98585 14.32267 8.043381 32.9856 15.959 7.133693 32.9854 17.69518 6.438567 32.98524 19.50382 5.96897 32.98515 21.35641 5.732304 32.98509 22.30484 5.712585 32.98514 23.22372 5.732306 32.98509 25.0763 5.96897 32.98515 26.88494 6.438569 32.98524 28.62112 7.133696 32.9854 30.25746 8.043386 32.9856 31.76814 9.153295 32.98585 33.12935 10.44592 32.98614 33.12934 28.54682 40.0862 33.12934 28.54682 32.98972 33.12935 13.75663 40.08292 33.12935 13.75663 32.98636 33.12935 21.18402 27.39959 33.12934 28.54682 27.40105 33.12935 13.75663 27.39769 11.45078 28.54682 40.0854 11.45078 28.54682 32.98907 11.45077 13.75663 40.08325 11.45077 13.75663 32.98707 11.45077 21.18402 27.39977 11.45077 13.75663 27.39859 11.45078 28.54682 27.40059 33.00925 28.99499 32.98972 33.00925 28.99499 27.40105 11.57086 28.99499 32.98907 11.57086 28.99499 27.40059 32.68118 29.32307 32.98972 32.68118 29.32307 27.40105 32.23301 29.44315 32.98972 32.23301 29.44315 27.40105 11.89894 29.32307 32.98907 11.89894 29.32307 27.40059 12.34711 29.44315 32.98907 12.34711 29.44315 27.40059 31.39183 29.57638 32.98972 31.39183 29.57638 27.40105 30.633 29.96303 32.98972 30.633 29.96303 27.40105 29.92646 30.56524 32.98972 29.92646 30.56524 27.40105 29.29989 31.32408 32.9894 29.29989 31.32408 27.40105 13.18828 29.57638 32.98907 13.18828 29.57638 27.40059 13.94712 29.96303 32.98907 13.94712 29.96303 27.40059 14.65365 30.56524 32.98907 14.65365 30.56524 27.40059 15.28023 31.32408 32.98907 15.28023 31.32408 27.40059 16.96135 32.89138 32.98907 16.96135 32.89138 27.40059 19.49424 34.4214 32.98907 19.49424 34.4214 27.40059 22.30197 34.96692 32.98907 22.30197 34.96692 27.40059 25.1097 34.4214 32.98907 25.1097 34.4214 27.40059 27.6426 32.89138 32.98907 27.6426 32.89138 27.40059 29.29989 31.32408 27.40059 11.59469 13.32255 32.98972 11.59469 13.32255 27.40105 33.03308 13.32255 32.98907 33.03308 13.32255 27.40059 11.92277 12.99447 32.98972 11.92277 12.99447 27.40105 12.37093 12.87439 32.98972 12.37093 12.87439 27.40105 32.705 12.99447 32.98907 32.705 12.99447 27.40059 32.25684 12.87439 32.98907 32.25684 12.87439 27.40059 13.21211 12.74116 32.98972 13.21211 12.74116 27.40105 13.97094 12.35451 32.98972 13.97094 12.35451 27.40105 14.57316 11.7523 32.98972 14.57316 11.7523 27.40105 14.9598 10.99346 32.9894 14.9598 10.99346 27.40105 31.41566 12.74116 32.98907 31.41566 12.74116 27.40059 30.65683 12.35451 32.98907 30.65683 12.35451 27.40059 30.05461 11.7523 32.98907 30.05461 11.7523 27.40059 29.66796 10.99346 32.98907 29.66796 10.99346 27.40059 27.64259 9.010281 32.98907 27.64259 9.010281 27.40059 25.1097 7.719711 32.98907 25.1097 7.719711 27.40059 22.30197 7.275009 32.98907 22.30197 7.275009 27.40059 19.49424 7.719711 32.98907 19.49424 7.719711 27.40059 16.96135 9.010281 32.98907 16.96135 9.010281 27.40059 14.9598 10.99346 27.40059 33.12935 23.83001 37.54639 33.12934 24.64118 36.3324 33.12934 24.92602 34.9004 33.12934 22.61602 31.44323 33.12934 23.83001 32.2544 33.12934 24.64118 33.46839 33.12935 22.61602 38.35756 33.12935 21.18401 38.64241 33.12935 18.53802 37.5464 33.12935 19.75201 38.35756 33.12935 17.72685 36.33241 33.12935 17.44201 34.9004 33.12935 17.72685 33.4684 33.12935 18.53801 32.2544 33.12935 19.75201 31.44324 33.12935 21.18401 31.15839 29.92715 17.57629 34.9004 29.94155 17.85091 33.51978 29.91435 24.79174 34.9004 29.93023 24.51711 33.51978 29.93003 24.51712 36.28102 29.94097 17.85091 36.28102 29.97505 23.73506 37.45144 29.97848 18.63297 37.45145 29.99385 22.56463 38.2335 29.99384 21.18401 38.50812 29.99385 19.8034 38.2335 27.64505 21.18674 33.5185 11.45078 24.92875 34.9004 11.45078 24.64391 36.33241 11.45077 23.83274 37.5464 11.45077 22.61875 38.35756 11.45078 23.83275 32.2544 11.45077 22.61875 31.44324 11.45077 17.72958 33.46839 11.45077 17.44474 34.9004 11.45077 17.72958 36.3324 11.45077 18.54075 37.54639 11.45077 19.75474 38.35756 11.45077 21.18675 38.64241 11.45078 24.64391 33.4684 11.45077 18.54075 32.2544 11.45077 19.75474 31.44323 11.45077 21.18675 31.15839 14.64995 24.52091 33.51951 14.66725 24.79447 34.9004 14.64986 24.51959 36.28649 14.60051 23.74109 37.45604 14.58041 22.56477 38.23903 14.58039 21.18532 38.51171 14.58037 19.78757 38.23198 14.6424 17.85114 33.51802 14.65828 17.57211 34.90913 14.64244 17.85037 36.28195 14.59726 18.64425 37.45677 16.96121 21.18576 33.51877</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#polySurfaceShape1-positions-array\" count=\"269\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"polySurfaceShape1-normals\" name=\"polySurfaceShape1-normals\">\r\n          <float_array id=\"polySurfaceShape1-normals-array\" count=\"3054\">0 -1.05648e-4 1 0 -2.09301e-4 1 0 -1.99044e-4 0.9999999 0 -2.15211e-4 1 0 -2.15342e-4 1 0 -2.15047e-4 1 0 -2.15004e-4 1 0 -2.15112e-4 1 0 -2.15166e-4 1 0 -2.15003e-4 1 0 -2.14973e-4 1 0 -2.15492e-4 1 0 -2.09168e-4 1 0 -2.11796e-4 1 0 -2.21079e-4 1 0 -2.22485e-4 1 0 -2.22485e-4 1 0 -2.23599e-4 1 0 -2.12489e-4 1 0 -2.09351e-4 1 0 -3.44129e-4 0.9999999 0 -2.1528e-4 1 0 -2.14741e-4 1 0 -2.14924e-4 1 1.04968e-4 -2.29306e-4 1 1.08783e-4 -2.4362e-4 1 0 -2.43103e-4 1 0 -2.41289e-4 1 0 -2.38787e-4 1 0 -2.33109e-4 1 0 -2.1668e-4 1 -4.47633e-4 -0.001048193 0.9999993 1.07604e-4 -2.81579e-4 1 1.07604e-4 -2.81579e-4 1 1.07604e-4 -2.81579e-4 1 1.07604e-4 -2.81579e-4 1 0 -2.20862e-4 1 0 -2.20862e-4 1 0 -2.20862e-4 1 0 -2.20862e-4 1 0 -2.33474e-4 1 0 -2.33474e-4 1 0 -2.33474e-4 1 0 -2.33474e-4 1 0 -2.43321e-4 1 0 -2.43321e-4 1 0 -2.43321e-4 1 0 -2.43321e-4 1 0 -2.53157e-4 1 0 -2.53157e-4 1 0 -2.53157e-4 1 0 -2.53157e-4 1 0 -2.63128e-4 1 0 -2.63128e-4 1 0 -2.63128e-4 1 0 -2.63128e-4 1 0 -2.65696e-4 1 0 -2.65696e-4 1 0 -2.65696e-4 1 0 -2.65696e-4 1 0 -2.65437e-4 1 0 -2.65437e-4 1 0 -2.65437e-4 1 0 -2.65437e-4 1 0 -2.62848e-4 1 0 -2.62848e-4 1 0 -2.62848e-4 1 0 -2.62848e-4 1 0 -2.5377e-4 1 0 -2.5377e-4 1 0 -2.5377e-4 1 0 -2.5377e-4 1 0 -2.4311e-4 1 0 -2.4311e-4 1 0 -2.4311e-4 1 0 -2.4311e-4 1 0 -2.33471e-4 1 0 -2.33471e-4 1 0 -2.33471e-4 1 0 -2.33471e-4 1 0 -2.20616e-4 1 0 -2.20616e-4 1 0 -2.20616e-4 1 0 -2.20616e-4 1 0 -2.21731e-4 1 0 -2.21731e-4 1 0 -2.21731e-4 1 0 -2.21731e-4 1 0 -1.38653e-4 1 0 -1.38653e-4 1 0 -1.38653e-4 1 0 -1.38653e-4 1 2.76866e-4 -3.23776e-4 1 2.76866e-4 -3.23776e-4 1 2.76866e-4 -3.23776e-4 1 0 -2.22236e-4 1 0 -2.22236e-4 1 0 -2.22236e-4 1 0 -2.22236e-4 1 0 -2.20743e-4 1 0 -2.20743e-4 1 0 -2.20743e-4 1 0 -2.20743e-4 1 0 -2.33252e-4 1 0 -2.33252e-4 1 0 -2.33252e-4 1 0 -2.33252e-4 1 0 -2.42452e-4 1 0 -2.42452e-4 1 0 -2.42452e-4 1 0 -2.42452e-4 1 0 -2.52523e-4 1 0 -2.52523e-4 1 0 -2.52523e-4 1 0 -2.52523e-4 1 0 -2.60157e-4 1 0 -2.60157e-4 1 0 -2.60157e-4 1 0 -2.60157e-4 1 1.31935e-4 -1.42135e-4 1 1.31935e-4 -1.42135e-4 1 1.31935e-4 -1.42135e-4 1 1.31935e-4 -1.42135e-4 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1.13423e-4 1 0 -1.13423e-4 1 0 -1.13423e-4 1 0 -1.13423e-4 1 0 -1.37137e-4 1 0 -1.37137e-4 1 0 -1.37137e-4 1 0 -1.37137e-4 1 0 -1.60982e-4 1 0 -1.60982e-4 1 0 -1.60982e-4 1 0 -1.60982e-4 1 0 -1.80279e-4 1 0 -1.80279e-4 1 0 -1.80279e-4 1 0 -1.80279e-4 1 0 -1.95187e-4 1 0 -1.95187e-4 1 0 -1.95187e-4 1 0 -1.95187e-4 1 -1.22928e-4 -2.21815e-4 1 -1.22928e-4 -2.21815e-4 1 -1.22928e-4 -2.21815e-4 1 -1.22928e-4 -2.21815e-4 1 -1.17859e-4 -2.21729e-4 1 -1.17859e-4 -2.21729e-4 1 -1.17859e-4 -2.21729e-4 1 -0.9983264 -0.05783068 -2.40132e-4 -0.9983264 -0.05783068 -2.40132e-4 -0.9983264 -0.05783068 -2.40132e-4 -0.9992428 -0.03890859 0 -0.9992428 -0.03890859 0 -0.9992428 -0.03890859 0 -0.9992428 -0.03890859 0 -0.9464866 -0.3227433 0 -0.9464866 -0.3227433 0 -0.9464866 -0.3227433 0 -0.9464866 -0.3227433 0 -0.7575303 -0.6528 0 -0.7575303 -0.6528 0 -0.7575303 -0.6528 0 -0.7575303 -0.6528 0 -0.580441 -0.8143024 0 -0.580441 -0.8143024 0 -0.580441 -0.8143024 0 -0.580441 -0.8143024 0 -0.3576674 -0.9338492 0 -0.3576674 -0.9338492 0 -0.3576674 -0.9338492 0 -0.3576674 -0.9338492 0 -0.11523 -0.9933389 0 -0.11523 -0.9933389 0 -0.11523 -0.9933389 0 -0.11523 -0.9933389 0 0.1189119 -0.9929048 0 0.1189119 -0.9929048 0 0.1189119 -0.9929048 0 0.1189119 -0.9929048 0 0.346364 -0.9381003 0 0.346364 -0.9381003 0 0.346364 -0.9381003 0 0.346364 -0.9381003 0 0.5881793 -0.8087307 0 0.5881793 -0.8087307 0 0.5881793 -0.8087307 0 0.5881793 -0.8087307 0 0.7547871 -0.6559699 0 0.7547871 -0.6559699 0 0.7547871 -0.6559699 0 0.7547871 -0.6559699 0 0.9451247 -0.3267101 0 0.9451247 -0.3267101 0 0.9451247 -0.3267101 0 0.9451247 -0.3267101 0 0.9988621 -0.04769036 0 0.9988621 -0.04769036 0 0.9988621 -0.04769036 0 0.9988621 -0.04769036 0 0.9983845 0.05681916 0 0.9983845 0.05681916 0 0.9983845 0.05681916 0 0.9990767 0.04296182 0 0.9990767 0.04296182 0 0.9990767 0.04296182 0 0.9990767 0.04296182 0 0.9296528 0.3684368 0 0.9296528 0.3684368 0 0.9296528 0.3684368 0 0.9296528 0.3684368 0 0.7714968 0.6362333 0 0.7714968 0.6362333 0 0.7714968 0.6362333 0 0.7714968 0.6362333 0 0.5976471 0.8017593 0 0.5976471 0.8017593 0 0.5976471 0.8017593 0 0.5976471 0.8017593 0 0.3315749 0.943429 0 0.3315749 0.943429 0 0.3315749 0.943429 0 0.3315749 0.943429 0 0.1253621 0.9921111 0 0.1253621 0.9921111 0 0.1253621 0.9921111 0 0.1253621 0.9921111 0 -0.1061077 0.9943546 0 -0.1061077 0.9943546 0 -0.1061077 0.9943546 0 -0.1061077 0.9943546 0 -0.3419088 0.9397332 0 -0.3419088 0.9397332 0 -0.3419088 0.9397332 0 -0.3419088 0.9397332 0 -0.5983054 0.8012682 0 -0.5983054 0.8012682 0 -0.5983054 0.8012682 0 -0.5983054 0.8012682 0 -0.760639 0.6491752 0 -0.760639 0.6491752 0 -0.760639 0.6491752 0 -0.760639 0.6491752 0 -0.9347602 0.3552792 0 -0.9347602 0.3552792 0 -0.9347602 0.3552792 0 -0.9347602 0.3552792 0 -0.9993315 0.03656087 0 -0.9993315 0.03656087 0 -0.9993315 0.03656087 0 -0.9993315 0.03656087 0 -0.9987715 0.04955132 -5.60077e-4 -0.9987715 0.04955132 -5.60077e-4 -0.9987715 0.04955132 -5.60077e-4 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9990373 -0.04382577 0.001915998 -0.9990373 -0.04382577 0.001915998 -0.9990373 -0.04382577 0.001915998 -0.9990373 -0.04382577 0.001915998 0.6886028 0.7251388 0 0.6886028 0.7251388 0 0.6886028 0.7251388 0 0.6886028 0.7251388 0 0.5920828 0.8058772 0 0.5920828 0.8058772 0 0.5920828 0.8058772 0 0.5920828 0.8058772 0 0.4858915 0.8740191 0 0.4858915 0.8740191 0 0.4858915 0.8740191 0 0.4858915 0.8740191 0 0.3716924 0.9283561 0 0.3716924 0.9283561 0 0.3716924 0.9283561 0 0.3716924 0.9283561 0 0.2513097 0.9679068 0 0.2513097 0.9679068 0 0.2513097 0.9679068 0 0.2513097 0.9679068 0 0.1267182 0.9919388 0 0.1267182 0.9919388 0 0.1267182 0.9919388 0 0.1267182 0.9919388 0 0.05538973 0.9984648 0 0.05538973 0.9984648 0 0.05538973 0.9984648 0 0.05538973 0.9984648 0 -0.05375017 0.9985545 0 -0.05375017 0.9985545 0 -0.05375017 0.9985545 0 -0.05375017 0.9985545 0 -0.1267183 0.9919388 0 -0.1267183 0.9919388 0 -0.1267183 0.9919388 0 -0.1267183 0.9919388 0 -0.2513097 0.9679068 0 -0.2513097 0.9679068 0 -0.2513097 0.9679068 0 -0.2513097 0.9679068 0 -0.3716926 0.9283559 0 -0.3716926 0.9283559 0 -0.3716926 0.9283559 0 -0.3716926 0.9283559 0 -0.4858944 0.8740175 0 -0.4858944 0.8740175 0 -0.4858944 0.8740175 0 -0.4858944 0.8740175 0 -0.5920831 0.805877 0 -0.5920831 0.805877 0 -0.5920831 0.805877 0 -0.5920831 0.805877 0 -0.6886025 0.7251391 0 -0.6886025 0.7251391 0 -0.6886025 0.7251391 0 -0.6886025 0.7251391 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.6886021 -0.7251394 0 -0.6886021 -0.7251394 0 -0.6886021 -0.7251394 0 -0.6886021 -0.7251394 0 -0.5920835 -0.8058768 0 -0.5920835 -0.8058768 0 -0.5920835 -0.8058768 0 -0.5920835 -0.8058768 0 -0.4858927 -0.8740185 0 -0.4858927 -0.8740185 0 -0.4858927 -0.8740185 0 -0.4858927 -0.8740185 0 -0.3716921 -0.9283561 0 -0.3716921 -0.9283561 0 -0.3716921 -0.9283561 0 -0.3716921 -0.9283561 0 -0.2513078 -0.9679073 0 -0.2513078 -0.9679073 0 -0.2513078 -0.9679073 0 -0.2513078 -0.9679073 0 -0.1267192 -0.9919387 0 -0.1267192 -0.9919387 0 -0.1267192 -0.9919387 0 -0.1267192 -0.9919387 0 -0.02078663 -0.999784 0 -0.02078663 -0.999784 0 -0.02078663 -0.999784 0 -0.02078663 -0.999784 0 0.02145609 -0.9997699 0 0.02145609 -0.9997699 0 0.02145609 -0.9997699 0 0.02145609 -0.9997699 0 0.1267186 -0.9919387 0 0.1267186 -0.9919387 0 0.1267186 -0.9919387 0 0.1267186 -0.9919387 0 0.2513084 -0.9679071 0 0.2513084 -0.9679071 0 0.2513084 -0.9679071 0 0.2513084 -0.9679071 0 0.3716929 -0.9283558 0 0.3716929 -0.9283558 0 0.3716929 -0.9283558 0 0.3716929 -0.9283558 0 0.4858942 -0.8740176 0 0.4858942 -0.8740176 0 0.4858942 -0.8740176 0 0.4858942 -0.8740176 0 0.592083 -0.8058769 0 0.592083 -0.8058769 0 0.592083 -0.8058769 0 0.592083 -0.8058769 0 0.6886021 -0.7251394 0 0.6886021 -0.7251394 0 0.6886021 -0.7251394 0 0.6886021 -0.7251394 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1.20676e-4 -2.22179e-4 1 -1.20676e-4 -2.22179e-4 1 -1.20676e-4 -2.22179e-4 1 -1.20676e-4 -2.22179e-4 1 1 0 0 1 0 0 1 0 0 -1.29353e-4 -2.2238e-4 1 -1.29353e-4 -2.2238e-4 1 -1.29353e-4 -2.2238e-4 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -6.61241e-4 -4.65398e-4 0.9999997 -6.61241e-4 -4.65398e-4 0.9999997 -6.61241e-4 -4.65398e-4 0.9999997 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1.86957e-4 1 0 -1.86957e-4 1 0 -1.86957e-4 1 0 -1.86957e-4 1 -1 0 0 -1 0 0 -1 0 0 0.9659236 0.2588274 0 0.9659236 0.2588274 0 0.9659236 0.2588274 0 0.9659236 0.2588274 0 -0.9659267 0.2588162 0 -0.9659267 0.2588162 0 -0.9659267 0.2588162 0 -0.9659267 0.2588162 0 0.7071088 0.7071047 0 0.7071088 0.7071047 0 0.7071088 0.7071047 0 0.7071088 0.7071047 0 0.2588208 0.9659254 0 0.2588208 0.9659254 0 0.2588208 0.9659254 0 0.2588208 0.9659254 0 -0.7071075 0.7071061 0 -0.7071075 0.7071061 0 -0.7071075 0.7071061 0 -0.7071075 0.7071061 0 -0.2588209 0.9659253 0 -0.2588209 0.9659253 0 -0.2588209 0.9659253 0 -0.2588209 0.9659253 0 0.1564337 0.9876885 0 0.1564337 0.9876885 0 0.1564337 0.9876885 0 0.1564337 0.9876885 0 0.4539914 0.8910061 0 0.4539914 0.8910061 0 0.4539914 0.8910061 0 0.4539914 0.8910061 0 0.6486843 0.7610577 0 0.6486843 0.7610577 0 0.6486843 0.7610577 0 0.6486843 0.7610577 0 0.7711077 0.6367048 0 0.7711077 0.6367048 0 0.7711077 0.6367048 0 0.7711077 0.6367048 0 -0.1564337 0.9876885 0 -0.1564337 0.9876885 0 -0.1564337 0.9876885 0 -0.1564337 0.9876885 0 -0.4539905 0.8910066 0 -0.4539905 0.8910066 0 -0.4539905 0.8910066 0 -0.4539905 0.8910066 0 -0.6486857 0.7610564 0 -0.6486857 0.7610564 0 -0.6486857 0.7610564 0 -0.6486857 0.7610564 0 -0.7711065 0.6367061 0 -0.7711065 0.6367061 0 -0.7711065 0.6367061 0 -0.7711065 0.6367061 0 -0.6819121 0.7314342 0 -0.6819121 0.7314342 0 -0.6819121 0.7314342 0 -0.6819121 0.7314342 0 -0.5170482 0.8559564 0 -0.5170482 0.8559564 0 -0.5170482 0.8559564 0 -0.5170482 0.8559564 0 -0.1907245 0.9816437 0 -0.1907245 0.9816437 0 -0.1907245 0.9816437 0 -0.1907245 0.9816437 0 0.1907246 0.9816436 0 0.1907246 0.9816436 0 0.1907246 0.9816436 0 0.1907246 0.9816436 0 0.5170476 0.8559567 0 0.5170476 0.8559567 0 0.5170476 0.8559567 0 0.5170476 0.8559567 0 0.6871066 0.7265567 0 0.6871066 0.7265567 0 0.6871066 0.7265567 0 0.6871066 0.7265567 0 1.60022e-4 3.50027e-4 -1 1.60022e-4 3.50027e-4 -1 1.60022e-4 3.50027e-4 -1 1.60022e-4 3.50027e-4 -1 8.8608e-4 3.10814e-4 -0.9999996 8.8608e-4 3.10814e-4 -0.9999996 8.8608e-4 3.10814e-4 -0.9999996 1.17338e-4 3.22118e-4 -1 1.17338e-4 3.22118e-4 -1 1.17338e-4 3.22118e-4 -1 1.17338e-4 3.22118e-4 -1 0 3.56194e-4 -1 0 3.56194e-4 -1 0 3.56194e-4 -1 1.00485e-4 3.42982e-4 -1 1.00485e-4 3.42982e-4 -1 1.00485e-4 3.42982e-4 -1 2.95065e-4 3.05156e-4 -0.9999999 2.95065e-4 3.05156e-4 -0.9999999 2.95065e-4 3.05156e-4 -0.9999999 0.001033764 2.74847e-4 -0.9999994 0.001033764 2.74847e-4 -0.9999994 0.001033764 2.74847e-4 -0.9999994 4.53194e-4 9.39021e-4 -0.9999995 4.53194e-4 9.39021e-4 -0.9999995 4.53194e-4 9.39021e-4 -0.9999995 4.53194e-4 9.39021e-4 -0.9999995 2.89088e-4 0.001342298 -0.9999991 2.89088e-4 0.001342298 -0.9999991 2.89088e-4 0.001342298 -0.9999991 2.26861e-4 0.001411896 -0.999999 2.26861e-4 0.001411896 -0.999999 2.26861e-4 0.001411896 -0.999999 2.26861e-4 0.001411896 -0.999999 0.001443856 7.90493e-4 -0.9999987 0.001443856 7.90493e-4 -0.9999987 0.001443856 7.90493e-4 -0.9999987 4.88658e-4 5.98834e-4 -0.9999997 4.88658e-4 5.98834e-4 -0.9999997 4.88658e-4 5.98834e-4 -0.9999997 4.88658e-4 5.98834e-4 -0.9999997 -2.26365e-4 0.001408949 -0.999999 -2.26365e-4 0.001408949 -0.999999 -2.26365e-4 0.001408949 -0.999999 -2.26365e-4 0.001408949 -0.999999 -0.001403279 7.92985e-4 -0.9999987 -0.001403279 7.92985e-4 -0.9999987 -0.001403279 7.92985e-4 -0.9999987 -2.88703e-4 0.001338678 -0.9999992 -2.88703e-4 0.001338678 -0.9999992 -2.88703e-4 0.001338678 -0.9999992 -4.51015e-4 9.34836e-4 -0.9999995 -4.51015e-4 9.34836e-4 -0.9999995 -4.51015e-4 9.34836e-4 -0.9999995 -4.51015e-4 9.34836e-4 -0.9999995 -4.44575e-4 6.74629e-4 -0.9999998 -4.44575e-4 6.74629e-4 -0.9999998 -4.44575e-4 6.74629e-4 -0.9999998 -4.44575e-4 6.74629e-4 -0.9999998 -6.19513e-4 5.10409e-4 -0.9999997 -6.19513e-4 5.10409e-4 -0.9999997 -6.19513e-4 5.10409e-4 -0.9999997 -2.82191e-4 5.11216e-4 -0.9999999 -2.82191e-4 5.11216e-4 -0.9999999 -2.82191e-4 5.11216e-4 -0.9999999 -2.82191e-4 5.11216e-4 -0.9999999 -2.53301e-4 4.88946e-4 -0.9999999 -2.53301e-4 4.88946e-4 -0.9999999 -2.53301e-4 4.88946e-4 -0.9999999 -2.53301e-4 4.88946e-4 -0.9999999 0 6.09127e-4 -0.9999999 0 6.09127e-4 -0.9999999 0 6.09127e-4 -0.9999999 -1.67208e-4 5.86526e-4 -0.9999998 -1.67208e-4 5.86526e-4 -0.9999998 -1.67208e-4 5.86526e-4 -0.9999998 -5.15876e-4 5.21852e-4 -0.9999998 -5.15876e-4 5.21852e-4 -0.9999998 -5.15876e-4 5.21852e-4 -0.9999998 -0.001721422 4.70016e-4 -0.9999985 -0.001721422 4.70016e-4 -0.9999985 -0.001721422 4.70016e-4 -0.9999985 -0.9491906 -0.3147019 0 -0.9491906 -0.3147019 0 -0.9491906 -0.3147019 0 -0.9491906 -0.3147019 0 0.9762797 -0.2165134 0 0.9762797 -0.2165134 0 0.9762797 -0.2165134 0 0.9762797 -0.2165134 0 -0.7071077 -0.7071059 0 -0.7071077 -0.7071059 0 -0.7071077 -0.7071059 0 -0.7071077 -0.7071059 0 -0.2588227 -0.9659249 0 -0.2588227 -0.9659249 0 -0.2588227 -0.9659249 0 -0.2588227 -0.9659249 0 0.7071081 -0.7071055 0 0.7071081 -0.7071055 0 0.7071081 -0.7071055 0 0.7071081 -0.7071055 0 0.2588221 -0.965925 0 0.2588221 -0.965925 0 0.2588221 -0.965925 0 0.2588221 -0.965925 0 -0.1564337 -0.9876885 0 -0.1564337 -0.9876885 0 -0.1564337 -0.9876885 0 -0.1564337 -0.9876885 0 -0.4539914 -0.8910061 0 -0.4539914 -0.8910061 0 -0.4539914 -0.8910061 0 -0.4539914 -0.8910061 0 -0.7071054 -0.7071082 0 -0.7071054 -0.7071082 0 -0.7071054 -0.7071082 0 -0.7071054 -0.7071082 0 -0.8910074 -0.453989 0 -0.8910074 -0.453989 0 -0.8910074 -0.453989 0 -0.8910074 -0.453989 0 0.156434 -0.9876884 0 0.156434 -0.9876884 0 0.156434 -0.9876884 0 0.156434 -0.9876884 0 0.4539911 -0.8910063 0 0.4539911 -0.8910063 0 0.4539911 -0.8910063 0 0.4539911 -0.8910063 0 0.7071058 -0.7071078 0 0.7071058 -0.7071078 0 0.7071058 -0.7071078 0 0.7071058 -0.7071078 0 0.8910062 -0.4539911 0 0.8910062 -0.4539911 0 0.8910062 -0.4539911 0 0.8910062 -0.4539911 0 0.6996254 -0.7145099 0 0.6996254 -0.7145099 0 0.6996254 -0.7145099 0 0.6996254 -0.7145099 0 0.45399 -0.8910069 0 0.45399 -0.8910069 0 0.45399 -0.8910069 0 0.45399 -0.8910069 0 0.1564348 -0.9876883 0 0.1564348 -0.9876883 0 0.1564348 -0.9876883 0 0.1564348 -0.9876883 0 -0.1564348 -0.9876883 0 -0.1564348 -0.9876883 0 -0.1564348 -0.9876883 0 -0.1564348 -0.9876883 0 -0.4539898 -0.8910069 0 -0.4539898 -0.8910069 0 -0.4539898 -0.8910069 0 -0.4539898 -0.8910069 0 -0.7038409 -0.7103577 0 -0.7038409 -0.7103577 0 -0.7038409 -0.7103577 0 -0.7038409 -0.7103577 0 7.0493e-4 0.001012243 -0.9999993 7.0493e-4 0.001012243 -0.9999993 7.0493e-4 0.001012243 -0.9999993 7.0493e-4 0.001012243 -0.9999993 0.001167345 0.001029898 -0.9999988 0.001167345 0.001029898 -0.9999988 0.001167345 0.001029898 -0.9999988 6.58027e-4 0.00100559 -0.9999993 6.58027e-4 0.00100559 -0.9999993 6.58027e-4 0.00100559 -0.9999993 6.58027e-4 0.00100559 -0.9999993 2.18449e-4 0.001391493 -0.999999 2.18449e-4 0.001391493 -0.999999 2.18449e-4 0.001391493 -0.999999 3.60355e-4 0.001339043 -0.9999991 3.60355e-4 0.001339043 -0.9999991 3.60355e-4 0.001339043 -0.9999991 0.001185618 0.001185874 -0.9999986 0.001185618 0.001185874 -0.9999986 0.001185618 0.001185874 -0.9999986 0.01929159 2.82248e-4 -0.9998139 0.01929159 2.82248e-4 -0.9998139 0.01929159 2.82248e-4 -0.9998139 7.57197e-4 0.001705411 -0.9999983 7.57197e-4 0.001705411 -0.9999983 7.57197e-4 0.001705411 -0.9999983 7.57197e-4 0.001705411 -0.9999983 5.28416e-4 0.00224716 -0.9999974 5.28416e-4 0.00224716 -0.9999974 5.28416e-4 0.00224716 -0.9999974 3.25482e-4 0.002309538 -0.9999973 3.25482e-4 0.002309538 -0.9999973 3.25482e-4 0.002309538 -0.9999973 3.25482e-4 0.002309538 -0.9999973 1.0201e-4 0.002519831 -0.9999969 1.0201e-4 0.002519831 -0.9999969 1.0201e-4 0.002519831 -0.9999969 8.54565e-4 0.001257082 -0.9999989 8.54565e-4 0.001257082 -0.9999989 8.54565e-4 0.001257082 -0.9999989 8.54565e-4 0.001257082 -0.9999989 -3.27101e-4 0.002314075 -0.9999973 -3.27101e-4 0.002314075 -0.9999973 -3.27101e-4 0.002314075 -0.9999973 -3.27101e-4 0.002314075 -0.9999973 -1.00964e-4 0.00251946 -0.9999969 -1.00964e-4 0.00251946 -0.9999969 -1.00964e-4 0.00251946 -0.9999969 -5.30292e-4 0.002254382 -0.9999974 -5.30292e-4 0.002254382 -0.9999974 -5.30292e-4 0.002254382 -0.9999974 -7.60978e-4 0.001713543 -0.9999983 -7.60978e-4 0.001713543 -0.9999983 -7.60978e-4 0.001713543 -0.9999983 -7.60978e-4 0.001713543 -0.9999983 -8.86262e-4 0.001193143 -0.9999989 -8.86262e-4 0.001193143 -0.9999989 -8.86262e-4 0.001193143 -0.9999989 -8.86262e-4 0.001193143 -0.9999989 -0.001662361 8.45228e-4 -0.9999983 -0.001662361 8.45228e-4 -0.9999983 -0.001662361 8.45228e-4 -0.9999983 -5.79549e-4 8.58989e-4 -0.9999995 -5.79549e-4 8.58989e-4 -0.9999995 -5.79549e-4 8.58989e-4 -0.9999995 -5.79549e-4 8.58989e-4 -0.9999995 -5.34166e-4 8.47012e-4 -0.9999995 -5.34166e-4 8.47012e-4 -0.9999995 -5.34166e-4 8.47012e-4 -0.9999995 -5.34166e-4 8.47012e-4 -0.9999995 -1.83755e-4 0.001144409 -0.9999993 -1.83755e-4 0.001144409 -0.9999993 -1.83755e-4 0.001144409 -0.9999993 -2.94143e-4 0.001103311 -0.9999994 -2.94143e-4 0.001103311 -0.9999994 -2.94143e-4 0.001103311 -0.9999994 -9.856e-4 9.88029e-4 -0.9999991 -9.856e-4 9.88029e-4 -0.9999991 -9.856e-4 9.88029e-4 -0.9999991 -0.02842091 0 -0.9995961 -0.02842091 0 -0.9995961 -0.02842091 0 -0.9995961 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1.98262e-4 1.98435e-4 -1 1.98262e-4 1.98435e-4 -1 1.98262e-4 1.98435e-4 -1 0 1.79994e-4 -1 0 1.79994e-4 -1 0 1.79994e-4 -1 1.01786e-4 1.9462e-4 -1 1.01786e-4 1.9462e-4 -1 1.01786e-4 1.9462e-4 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1.10981e-4 1.10874e-4 -1 -1.10981e-4 1.10874e-4 -1 -1.10981e-4 1.10874e-4 -1 0 1.0057e-4 -1 0 1.0057e-4 -1 0 1.0057e-4 -1 0 1.08744e-4 -1 0 1.08744e-4 -1 0 1.08744e-4 -1 0 1.29706e-4 -1 0 1.29706e-4 -1 0 1.29706e-4 -1 0 1.29706e-4 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.003230812 -0.005602215 -0.9999791 0.003230812 -0.005602215 -0.9999791 0.003230812 -0.005602215 -0.9999791 0.003230812 -0.005602215 -0.9999791 -0.003583636 2.55257e-4 -0.9999936 -0.003583636 2.55257e-4 -0.9999936 -0.003583636 2.55257e-4 -0.9999936 0 -1.22543e-4 -1 0 -1.22543e-4 -1 0 -1.22543e-4 -1 0 -1.32286e-4 -1 0 -1.32286e-4 -1 0 -1.32286e-4 -1 -0.002900495 -0.00502886 -0.9999833 -0.002900495 -0.00502886 -0.9999833 -0.002900495 -0.00502886 -0.9999833 -0.002900495 -0.00502886 -0.9999833 0.002826518 1.59729e-4 -0.999996 0.002826518 1.59729e-4 -0.999996 0.002826518 1.59729e-4 -0.999996 0 -1.563e-4 -1 0 -1.563e-4 -1 0 -1.563e-4 -1 0 -1.69111e-4 -1 0 -1.69111e-4 -1 0 -1.69111e-4 -1 0 -1.29009e-4 -1 0 -1.29009e-4 -1 0 -1.29009e-4 -1 0 -1.29009e-4 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -0.9987997 0.0489821 0 -0.9987997 0.0489821 0 -0.9987997 0.0489821 0 -0.9987997 0.0489821 0 -0.9982742 -0.05872444 1.95092e-4 -0.9982742 -0.05872444 1.95092e-4 -0.9982742 -0.05872444 1.95092e-4 -0.9982761 -0.05869373 0 -0.9982761 -0.05869373 0 -0.9982761 -0.05869373 0 -0.9982761 -0.05869373 0 -0.9993329 0.03649231 0.001454326 -0.9993329 0.03649231 0.001454326 -0.9993329 0.03649231 0.001454326 -0.9993329 0.03649231 0.001454326 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9988329 0.04830064 -2.56905e-4 -0.9988329 0.04830064 -2.56905e-4 -0.9988329 0.04830064 -2.56905e-4 0 0 1 0 0 1 0 -4.17521e-4 1 -9.5772e-4 -0.001891662 0.9999979 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.9979967 -0.06326616 0 0.9979967 -0.06326616 0 0.9979967 -0.06326616 0 0.997996 -0.06327809 0 0.997996 -0.06327809 0 0.997996 -0.06327809 0 0.997996 -0.06327809 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9983844 0.05682035 0 0.9983844 0.05682035 0 0.9983844 0.05682035 0 0.9983844 0.05682035 0 0.9988734 -0.04741787 0.001916288 0.9988734 -0.04741787 0.001916288 0.9988734 -0.04741787 0.001916288 0.9988734 -0.04741787 0.001916288 0.9979966 -0.06326809 0 0.9979966 -0.06326809 0 0.9979966 -0.06326809 0 0.9999232 0.011274 0.005156836 0.9999232 0.011274 0.005156836 0.9999232 0.011274 0.005156836 0.9983845 0.05682048 0 0.9983845 0.05682048 0 0.9983845 0.05682048 0 0.9983845 0.05682048 0 0 -2.21371e-4 1 0 -2.22209e-4 1 -1.29407e-4 0 1 0 4.17004e-4 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#polySurfaceShape1-normals-array\" count=\"1018\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"polySurfaceShape1-map1\" name=\"polySurfaceShape1-map1\">\r\n          <float_array id=\"polySurfaceShape1-map1-array\" count=\"1022\">0.7323404 0.6638958 0.7323691 0.6346439 0.5379759 0.6346478 0.7323856 0.6090606 0.5379925 0.6090653 0.7323997 0.5871398 0.5380065 0.5871447 0.7324068 0.5679038 0.5380137 0.5679089 0.7324098 0.5504239 0.5380167 0.550429 0.732409 0.534676 0.5380158 0.5346811 0.7324048 0.5193695 0.5380117 0.5193747 0.7323977 0.5041751 0.5380046 0.5041803 0.7323877 0.4882574 0.5379944 0.4882626 0.7323744 0.4712021 0.5379812 0.4712072 0.7323582 0.451801 0.5379651 0.4518059 0.7323389 0.4297724 0.5379458 0.4297771 0.7323202 0.4040477 0.5379271 0.4040517 0.732303 0.3746561 0.7322868 0.3428879 0.9531443 0.5947697 0.9439954 0.6099082 0.9580628 0.5954513 0.9626791 0.5970253 0.9659007 0.5998016 0.9682063 0.603036 0.9694985 0.6064101 0.9699042 0.6099082 0.9694886 0.6133789 0.9682259 0.6167988 0.9659383 0.6199442 0.9627035 0.6227555 0.9580804 0.6243536 0.9531658 0.625082 0.9348013 0.6251121 0.9298229 0.6244047 0.9253772 0.6226428 0.922093 0.6199343 0.9197483 0.6167889 0.9185488 0.6133759 0.9181106 0.6099082 0.9184816 0.6064308 0.9197229 0.6030193 0.9220732 0.5998716 0.9252851 0.5971304 0.9298437 0.5953978 0.9348168 0.594725 0.9531443 0.5947697 0.9484734 0.5944965 0.9653607 0.5882142 0.9679506 0.5909415 0.9580628 0.5954513 0.9701745 0.5939685 0.9626791 0.5970253 0.9719971 0.5972469 0.9659007 0.5998016 0.97339 0.6007256 0.9682063 0.603036 0.9743308 0.6043494 0.9694985 0.6064101 0.9748049 0.6080614 0.9699042 0.6099082 0.9749072 0.6099024 0.9694886 0.6133789 0.974805 0.6118027 0.9682259 0.6167988 0.9743309 0.6155146 0.9659383 0.6199442 0.97339 0.6191384 0.9627035 0.6227555 0.9719971 0.622617 0.9580804 0.6243536 0.9701746 0.6258956 0.9531658 0.625082 0.9679507 0.6289226 0.9484789 0.6253791 0.9653608 0.6316498 0.9439926 0.6253793 0.9587423 0.6316499 0.94399 0.6316498 0.9394961 0.6253793 0.9291083 0.6316498 0.9224749 0.6316498 0.9348013 0.6251121 0.919885 0.6289225 0.9298229 0.6244047 0.9176611 0.6258956 0.9253772 0.6226428 0.9158384 0.622617 0.922093 0.6199343 0.9144457 0.6191384 0.9197483 0.6167889 0.9135048 0.6155145 0.9185488 0.6133759 0.9130306 0.6118026 0.9181106 0.6099082 0.9129911 0.6099024 0.9184816 0.6064308 0.9130306 0.6080613 0.9197229 0.6030193 0.9135048 0.6043494 0.9220732 0.5998716 0.9144457 0.6007256 0.9252851 0.5971304 0.9158385 0.5972469 0.9298437 0.5953978 0.9176611 0.5939683 0.9348168 0.594725 0.919885 0.5909414 0.939512 0.5944965 0.9224749 0.5882142 0.9439954 0.5944965 0.9291083 0.5882142 0.9439899 0.5882142 0.9587422 0.5882142 0.7702083 0.4362565 0.7688821 0.437387 0.7695034 0.4443087 0.7723392 0.4422251 0.767706 0.4388113 0.7716329 0.4355307 0.7748945 0.4397987 0.7732118 0.4352806 0.7740532 0.4350552 0.7746691 0.4344393 0.7748945 0.4335981 0.7598404 0.4446255 0.7631728 0.4473211 0.7664319 0.4460163 0.7645951 0.4417535 0.7597777 0.4482026 0.7563 0.4486469 0.7545698 0.4456495 0.7545725 0.4487427 0.7492993 0.4446255 0.7493173 0.4482026 0.7527949 0.4486469 0.7459222 0.4473211 0.7445447 0.4417535 0.7426631 0.4460163 0.7395914 0.4443087 0.741389 0.4388113 0.7402128 0.437387 0.7367556 0.4422251 0.7388865 0.4362565 0.7342005 0.4397987 0.737462 0.4355307 0.735883 0.4352806 0.7350417 0.4350552 0.7344258 0.4344393 0.7342005 0.4335981 0.7389312 0.4032027 0.7400616 0.4020722 0.7395914 0.39511 0.7367556 0.3971934 0.7407875 0.4006478 0.7375067 0.4039284 0.7342005 0.3996199 0.7359277 0.4041785 0.7350864 0.4044039 0.7344706 0.4050198 0.7342005 0.4058346 0.7492993 0.3945024 0.7459222 0.3920975 0.7426631 0.3934023 0.7445447 0.396925 0.7493173 0.391216 0.7527949 0.3907717 0.7545698 0.3936676 0.7545751 0.3907347 0.7598404 0.3945024 0.7597777 0.391216 0.7563 0.3907717 0.7631728 0.3920975 0.764595 0.396925 0.7322707 0.3110024 0.7322543 0.2815673 0.537861 0.2815633 0.7322376 0.2555888 0.5378444 0.2555842 0.7322243 0.2333922 0.5378311 0.2333872 0.732217 0.2141571 0.5378239 0.2141519 0.7322137 0.1969357 0.5378205 0.1969305 0.7322149 0.1810368 0.5378217 0.1810316 0.7322065 0.1657733 0.5378134 0.165768 0.7322135 0.8573087 0.5378203 0.8573036 0.7322235 0.84141 0.5378303 0.8414048 0.7322369 0.8241887 0.5378438 0.8241836 0.7322531 0.8050479 0.5378598 0.8050431 0.7322721 0.782643 0.5378789 0.7826383 0.732291 0.7568123 0.5378978 0.7568085 0.7323083 0.7274624 0.7323243 0.6956342 0.6243249 0.6572793 0.62432 0.6685765 0.3946817 0.6685796 0.3946865 0.6572826 0.624328 0.6460342 0.3946897 0.6460378 0.6243292 0.6348349 0.3946909 0.6348388 0.6243286 0.6236733 0.3946902 0.6236773 0.6243262 0.6125394 0.3946879 0.6125435 0.6243218 0.6014227 0.3946835 0.601427 0.6243192 0.5959551 0.3946387 0.5959508 0.6243158 0.5903118 0.3946774 0.5903161 0.6243082 0.5791953 0.3946698 0.5791994 0.6242988 0.5680616 0.3946605 0.5680656 0.6242883 0.5569003 0.39465 0.5569041 0.6342939 0.7621987 0.6599516 0.7622015 0.6599518 0.7374723 0.5968736 0.7621903 0.6084108 0.762194 0.6084108 0.7374653 0.5968736 0.737462 0.6242765 0.5457014 0.3946381 0.545705 0.6242635 0.5344568 0.3946252 0.5344602 0.6242499 0.5231602 0.3946115 0.5231631 0.624091 0.368942 0.6240959 0.380221 0.3944661 0.380218 0.3944611 0.3689387 0.6240879 0.3577166 0.3944581 0.357713 0.6240867 0.3465383 0.3944567 0.3465344 0.6240873 0.3353981 0.3944573 0.3353941 0.6240898 0.3242865 0.39446 0.3242823 0.6240941 0.3131922 0.3944643 0.313188 0.6241002 0.3019089 0.3944703 0.3019045 0.6241079 0.2908145 0.394478 0.2908103 0.624117 0.2797026 0.3944871 0.2796985 0.6241276 0.2685622 0.3944977 0.2685583 0.6241395 0.2573833 0.3945097 0.2573797 0.6241524 0.2461575 0.3945224 0.246154 0.6241661 0.2348778 0.3945362 0.2348748 0.5027558 0.6287067 0.321905 0.6287094 0.3219045 0.6249973 0.5027555 0.6249945 0.3218199 0.40984 0.5026648 0.4098373 0.5026652 0.4135495 0.3218203 0.4135523 0.3219035 0.6210931 0.5027544 0.6210902 0.321902 0.6178654 0.5027529 0.6178623 0.5026662 0.4174538 0.3218214 0.4174567 0.5026677 0.4206818 0.3218229 0.4206849 0.3218994 0.6120486 0.5027502 0.6120452 0.3218969 0.6046312 0.5027477 0.6046275 0.6396591 0.7624272 0.6084108 0.7621928 0.6084108 0.7374628 0.6714629 0.7622069 0.6599516 0.7622043 0.6599518 0.7374744 0.6714628 0.7374777 0.7664319 0.3934023 0.5968737 0.7621903 0.5968736 0.737462 0.7695034 0.39511 0.6191666 0.7624226 0.6323587 0.7554241 0.6357081 0.7576623 0.6714628 0.7622069 0.6714627 0.7374777 0.6342939 0.7179947 0.6084108 0.7179906 0.6599516 0.7179974 0.7683968 0.4006478 0.7691227 0.4020722 0.7723392 0.3971934 0.7702531 0.4032027 0.7748945 0.3996199 0.7716776 0.4039284 0.7732566 0.4041785 0.774098 0.4044039 0.7747138 0.4050198 0.7748945 0.4058346 0.9602975 0.5891121 0.9596402 0.5884548 0.9587422 0.5882142 0.9605382 0.5900101 0.9439899 0.5882142 0.9608051 0.5916955 0.3218949 0.5967611 0.5027458 0.5967571 0.3218937 0.5897537 0.5027341 0.5897496 0.5026705 0.4264989 0.3218256 0.4265023 0.5026729 0.4339167 0.321828 0.4339205 0.5026749 0.4417872 0.32183 0.4417912 0.5026761 0.4487947 0.3218312 0.4487987 0.5026827 0.4727565 0.3218378 0.4727609 0.5026909 0.496191 0.321846 0.4961955 0.5027 0.5193688 0.3218551 0.5193733 0.502709 0.5425445 0.3218642 0.5425491 0.5027172 0.5659728 0.3218724 0.5659772 0.3218788 0.5897537 0.5025999 0.2751373 0.321755 0.2751346 0.3218352 0.2714051 0.502686 0.2714078 0.3217963 0.05712187 0.5026471 0.05712461 0.5027345 0.06061566 0.3218896 0.0606128 0.3218362 0.2674959 0.5026871 0.2674989 0.3218377 0.2642606 0.5026885 0.2642637 0.5027335 0.06451237 0.3218886 0.06450939 0.502732 0.06773281 0.3218871 0.06772971 0.3218404 0.2584291 0.5026913 0.2584325 0.3218428 0.2510001 0.5026937 0.2510038 0.3218448 0.2431248 0.5026957 0.2431288 0.3218461 0.2361201 0.5026864 0.2361242 0.5027293 0.07353556 0.3218845 0.07353222 0.5027269 0.08093691 0.3218819 0.08093321 0.5027249 0.08879292 0.32188 0.08878887 0.5027236 0.09579122 0.3218788 0.09578717 0.5027171 0.119723 0.3218722 0.1197187 0.5027089 0.1431344 0.321864 0.1431299 0.5026997 0.1657745 0.5026907 0.188936 0.3218458 0.1889316 0.5026824 0.2123536 0.3218376 0.2123493 0.3218312 0.2361201 0.9615797 0.5932159 0.9708661 0.6155338 0.9717572 0.6099082 0.9708662 0.6042825 0.9682804 0.6206087 0.9682804 0.5992076 0.9643068 0.6246668 0.9643068 0.5951973 0.9627864 0.6254414 0.9643068 0.5951973 0.9627863 0.5944225 0.9615798 0.6266481 0.9587423 0.6316499 0.9596403 0.6314092 0.9602976 0.6307518 0.9605383 0.6298539 0.94399 0.6316498 0.9608052 0.6281685 0.9170126 0.6042826 0.9161216 0.6099081 0.9170126 0.6155337 0.9195984 0.5992075 0.9195984 0.6206087 0.9235719 0.5951494 0.9235719 0.624619 0.9250924 0.5943748 0.9235719 0.624619 0.9250924 0.6253937 0.926299 0.5931681 0.926299 0.6266003 0.9291083 0.5882142 0.9282386 0.588407 0.9275813 0.5890644 0.9273406 0.5899624 0.9270737 0.5916477 0.9273406 0.6298062 0.9275812 0.6307041 0.9282385 0.6313614 0.9291083 0.6316498 0.9270737 0.6281207 0.321864 0.1426105 0.3218549 0.16577 0.5027088 0.142615 0.3944703 0.3020996 0.3944689 0.3075561 0.6240986 0.3075603 0.6241001 0.3021038 0.5378203 0.1505035 0.7322135 0.1505086 0.6599734 0.7428522 0.6599734 0.7624317 0.6499835 0.7481238 0.6436101 0.7385854 0.6396591 0.7377995 0.6396591 0.7274287 0.6191666 0.7274235 0.6301206 0.7441728 0.6191665 0.7428429 0.6469595 0.7554241 0.6436101 0.7576624 0.6491976 0.7520748 0.6469595 0.7408235 0.6599734 0.7274327 0.6491976 0.7441728 0.6396591 0.7584481 0.6301206 0.7520748 0.6293347 0.7481238 0.6323587 0.7408234 0.6357081 0.7385854 0.5790035 0.744621 0.9373592 0.5946013 0.5379072 0.7409163 0.5791488 0.6468378 0.9506533 0.594624 0.5379606 0.6502474 0.6195863 0.6502031 0.6199311 0.7410673 0.6538934 0.6598628 0.6543518 0.7314167 0.6774414 0.6760817 0.6858171 0.6956342 0.6773285 0.7152667 0.9439954 0.5992026 0.6474828 0.7435521 0.6464958 0.7485713 0.6436671 0.7527539 0.6394201 0.7556139 0.6436719 0.7343528 0.6394396 0.7314881 0.6223854 0.7385747 0.6213841 0.7435755 0.6223872 0.7485372 0.6252043 0.7527663 0.6294703 0.7555998 0.6344262 0.7565823 0.6465 0.7385466 0.6252205 0.7343199 0.6294565 0.7314898 0.6344516 0.7305061 0.950676 0.6252398 0.5379179 0.3884369 0.5789042 0.3918662 0.6198397 0.3884194 0.6544659 0.3786366 0.6776471 0.3624603 0.6857195 0.3428879 0.6774367 0.3230279 0.9373121 0.625255 0.5378699 0.2973064 0.5790563 0.2938017 0.6197013 0.2972979 0.6544844 0.3072715 0.9439934 0.620609</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#polySurfaceShape1-map1-array\" count=\"511\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"polySurfaceShape1-vertices\" name=\"polySurfaceShape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#polySurfaceShape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"296\">\r\n          <input semantic=\"VERTEX\" source=\"#polySurfaceShape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#polySurfaceShape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#polySurfaceShape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 3 3 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 3 3 3 3 4 3 4 3 4 4 3 3 4 4 3 4 4 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 3 3 3 3 4 3 4 3 4 4 3 3 4 4 3 4 4 3 3 3 3 4 3 3 3 3 4 4 4 4 4 3 3 3 4 3 4 4 4 4 4 3 3 3 4 3 3 3 4 4 3 3 4 3 3 3 3 3 3 3 3 3 4 3 3 4 3 4 4 4 3 3 3 4 3 4 3 3 3 4 4 4 3 3 4 4 3 3 4 4 4 4 4 3 3 4 3 3 3 3</vcount>\r\n          <p>64 0 29 66 1 31 65 2 30 66 1 31 67 3 32 65 2 30 67 3 32 68 4 33 65 2 30 68 4 33 69 5 34 65 2 30 69 5 34 70 6 35 65 2 30 70 6 35 71 7 36 65 2 30 71 7 36 72 8 37 65 2 30 72 8 37 73 9 38 65 2 30 73 9 38 74 10 39 65 2 30 74 10 39 75 11 40 65 2 30 75 11 40 76 12 41 65 2 30 76 12 41 77 13 42 65 2 30 77 13 42 257 14 497 65 2 30 65 15 30 268 16 510 264 17 505 78 18 43 79 19 44 65 20 30 79 19 44 80 21 45 65 20 30 80 21 45 81 22 46 65 20 30 81 22 46 82 23 47 65 20 30 82 23 47 83 24 48 65 20 30 83 24 48 84 25 49 65 20 30 84 25 49 85 26 50 65 20 30 85 26 50 86 27 51 65 20 30 86 27 51 87 28 52 65 20 30 87 28 52 88 29 53 65 20 30 88 29 53 89 30 54 65 20 30 89 30 54 90 31 55 65 20 30 1 32 56 0 33 57 32 34 58 33 35 59 2 36 60 1 37 56 33 38 59 34 39 61 3 40 62 2 41 60 34 42 61 35 43 63 4 44 64 3 45 62 35 46 63 36 47 65 5 48 66 4 49 64 36 50 65 37 51 67 6 52 68 5 53 66 37 54 67 38 55 69 7 56 70 6 57 68 38 58 69 39 59 71 8 60 72 7 61 70 39 62 71 40 63 73 9 64 74 8 65 72 40 66 73 41 67 75 10 68 76 9 69 74 41 70 75 42 71 77 11 72 78 10 73 76 42 74 77 43 75 79 12 76 80 11 77 78 43 78 79 44 79 81 13 80 82 12 81 80 44 82 81 45 83 83 14 84 84 13 85 82 45 86 83 46 87 85 15 88 86 14 89 84 128 90 87 47 91 88 16 92 89 130 93 90 48 94 91 17 95 92 16 96 89 48 97 91 49 98 93 18 99 94 17 100 92 49 101 93 50 102 95 19 103 96 18 104 94 50 105 95 51 106 97 20 107 98 19 108 96 51 109 97 52 110 99 21 111 100 20 112 98 52 113 99 53 114 101 22 115 102 21 116 100 53 117 101 54 118 103 23 119 104 22 120 102 54 121 103 55 122 105 24 123 106 23 124 104 55 125 105 56 126 107 25 127 108 24 128 106 56 129 107 57 130 109 26 131 110 25 132 108 57 133 109 58 134 111 27 135 112 26 136 110 58 137 111 59 138 113 28 139 114 27 140 112 59 141 113 60 142 115 29 143 116 28 144 114 60 145 115 61 146 117 30 147 118 29 148 116 61 149 117 62 150 119 31 151 120 30 152 118 123 153 121 63 154 122 0 155 57 121 156 123 32 157 58 235 158 475 1 159 1 233 160 473 1 161 1 2 162 3 66 163 4 64 164 2 2 165 3 3 166 5 67 167 6 66 168 4 3 169 5 4 170 7 68 171 8 67 172 6 4 173 7 5 174 9 69 175 10 68 176 8 5 177 9 6 178 11 70 179 12 69 180 10 6 181 11 7 182 13 71 183 14 70 184 12 7 185 13 8 186 15 72 187 16 71 188 14 8 189 15 9 190 17 73 191 18 72 192 16 9 193 17 10 194 19 74 195 20 73 196 18 10 197 19 11 198 21 75 199 22 74 200 20 11 201 21 12 202 23 76 203 24 75 204 22 12 205 23 13 206 25 77 207 26 76 208 24 265 209 507 78 210 186 264 211 506 17 212 185 18 213 187 79 214 188 78 215 186 18 216 187 19 217 189 80 218 190 79 219 188 19 220 189 20 221 191 81 222 192 80 223 190 20 224 191 21 225 193 82 226 194 81 227 192 21 228 193 22 229 195 83 230 196 82 231 194 22 232 195 23 233 197 84 234 198 83 235 196 23 236 197 24 237 446 85 238 445 84 239 198 24 240 199 25 241 201 86 242 202 85 243 200 25 244 201 26 245 203 87 246 204 86 247 202 26 248 203 27 249 205 88 250 206 87 251 204 27 252 205 28 253 207 89 254 208 88 255 206 28 256 207 29 257 209 90 258 210 89 259 208 90 260 210 229 261 467 230 262 469 239 263 479 30 264 211 31 265 212 238 266 478 235 267 475 237 268 477 0 269 0 1 270 1 33 271 213 32 272 214 91 273 215 92 274 216 34 275 217 33 276 213 92 277 216 93 278 218 35 279 219 34 280 217 93 281 218 94 282 220 36 283 221 35 284 219 94 285 220 95 286 222 37 287 223 36 288 221 95 289 222 96 290 224 38 291 225 37 292 223 96 293 224 97 294 226 39 295 227 38 296 225 97 297 226 98 298 228 40 299 229 39 300 227 98 301 228 99 302 230 41 303 231 40 304 229 99 305 230 100 306 232 42 307 233 41 308 231 100 309 232 101 310 234 43 311 235 42 312 233 101 313 234 102 314 236 44 315 244 43 316 235 102 317 236 103 318 245 45 319 246 44 320 244 103 321 245 104 322 247 46 323 248 45 324 246 104 325 247 105 326 249 47 327 237 128 328 238 243 329 483 244 330 484 48 331 240 130 332 241 131 333 242 106 334 243 49 335 250 48 336 251 106 337 252 107 338 253 50 339 254 49 340 250 107 341 253 108 342 255 51 343 256 50 344 254 108 345 255 109 346 257 52 347 258 51 348 256 109 349 257 110 350 259 53 351 260 52 352 258 110 353 259 111 354 261 54 355 262 53 356 260 111 357 261 112 358 263 55 359 443 54 360 262 112 361 263 113 362 442 56 363 444 55 364 443 113 365 442 114 366 441 57 367 266 56 368 264 114 369 265 115 370 267 58 371 268 57 372 266 115 373 267 116 374 269 59 375 270 58 376 268 116 377 269 117 378 271 60 379 272 59 380 270 117 381 271 118 382 273 61 383 274 60 384 272 118 385 273 119 386 275 62 387 276 61 388 274 119 389 275 120 390 277 63 391 298 123 392 309 221 393 310 222 394 311 32 395 301 121 396 302 122 397 303 91 398 304 0 399 57 31 400 120 63 401 122 121 402 123 122 403 447 121 404 448 215 405 449 123 406 121 30 407 118 62 408 119 124 409 300 123 410 299 62 411 306 120 412 307 216 413 450 228 414 451 125 415 452 127 416 453 225 417 454 124 418 455 128 419 87 14 420 84 46 421 85 129 422 239 128 423 238 46 424 312 105 425 313 16 426 89 15 427 86 47 428 88 130 429 90 132 430 314 255 431 495 256 432 496 122 433 278 126 434 279 136 435 280 135 436 281 134 437 282 129 438 283 137 439 284 138 440 285 135 441 281 136 442 280 140 443 286 139 444 287 139 445 287 140 446 286 142 447 288 141 448 289 138 449 285 137 450 284 143 451 290 144 452 291 144 453 291 143 454 290 145 455 292 146 456 293 141 457 289 142 458 288 148 459 294 147 460 295 147 461 295 148 462 294 150 463 296 149 464 297 149 465 297 150 466 296 152 467 333 151 468 334 151 469 334 152 470 333 154 471 335 153 472 336 146 473 293 145 474 292 155 475 337 156 476 338 156 477 338 155 478 337 157 479 339 158 480 340 158 481 340 157 482 339 159 483 341 160 484 342 160 485 342 159 486 341 161 487 343 162 488 344 162 489 344 161 490 343 163 491 345 164 492 346 164 493 346 163 494 345 165 495 347 166 496 348 166 497 348 165 498 347 167 499 349 168 500 350 168 501 350 167 502 349 169 503 351 170 504 352 170 505 352 169 506 351 171 507 353 172 508 354 172 509 354 171 510 353 153 511 336 173 512 355 149 513 124 151 514 125 93 515 126 92 516 127 153 517 128 93 518 126 151 519 125 147 520 129 149 521 124 92 522 127 91 523 130 147 524 129 91 525 130 141 526 131 141 527 131 91 528 130 139 529 132 139 530 132 91 531 130 135 532 133 135 533 133 91 534 130 122 535 134 169 536 135 95 537 136 94 538 137 171 539 138 169 540 135 96 541 139 95 542 136 97 543 140 96 544 139 169 545 135 167 546 141 97 547 140 167 548 141 98 549 142 94 550 137 93 551 126 153 552 128 171 553 138 167 554 141 165 555 143 100 556 144 99 557 145 167 558 141 99 559 145 98 560 142 100 561 144 165 562 143 101 563 146 165 564 143 163 565 147 102 566 148 101 567 146 103 568 149 102 569 148 163 570 147 161 571 150 103 572 149 161 573 150 159 574 151 104 575 152 103 576 149 159 577 151 157 578 153 105 579 154 104 580 152 157 581 153 155 582 155 105 583 154 155 584 155 145 585 156 105 586 154 145 587 156 143 588 157 105 589 154 143 590 157 137 591 158 129 592 159 105 593 154 137 594 158 131 595 356 133 596 357 175 597 358 174 598 359 127 599 360 124 600 361 176 601 362 177 602 363 174 603 359 175 604 358 179 605 364 178 606 365 178 607 365 179 608 364 181 609 366 180 610 367 177 611 363 176 612 362 182 613 368 183 614 369 183 615 369 182 616 368 184 617 370 185 618 371 180 619 367 181 620 366 187 621 372 186 622 373 186 623 373 187 624 372 189 625 374 188 626 375 188 627 375 189 628 374 191 629 376 190 630 377 190 631 377 191 632 376 193 633 378 192 634 379 185 635 371 184 636 370 194 637 380 195 638 381 195 639 381 194 640 380 196 641 382 197 642 383 197 643 383 196 644 382 198 645 384 199 646 385 199 647 385 198 648 384 200 649 386 201 650 387 201 651 387 200 652 386 202 653 388 203 654 389 203 655 389 202 656 388 204 657 390 205 658 391 205 659 438 204 660 440 206 661 392 207 662 439 207 663 439 206 664 392 208 665 393 209 666 394 209 667 394 208 668 393 210 669 395 211 670 396 211 671 396 210 672 395 192 673 379 212 674 397 188 675 160 190 676 161 108 677 162 107 678 163 192 679 164 108 680 162 190 681 161 186 682 165 188 683 160 107 684 163 106 685 166 186 686 165 106 687 166 180 688 167 180 689 167 106 690 166 178 691 168 178 692 168 106 693 166 174 694 169 174 695 169 106 696 166 131 697 170 208 698 171 110 699 172 109 700 173 210 701 174 208 702 171 111 703 175 110 704 172 112 705 176 111 706 175 208 707 171 206 708 177 112 709 176 206 710 177 113 711 178 109 712 173 108 713 162 192 714 164 210 715 174 206 716 177 204 717 179 115 718 180 114 719 181 206 720 177 114 721 181 113 722 178 115 723 180 204 724 179 116 725 182 204 726 179 202 727 183 117 728 305 116 729 182 118 730 308 117 731 305 202 732 183 200 733 317 118 734 308 200 735 317 198 736 318 119 737 319 118 738 308 198 739 318 196 740 320 120 741 321 119 742 319 196 743 320 194 744 322 120 745 321 194 746 322 184 747 323 120 748 321 184 749 323 182 750 324 120 751 321 182 752 324 176 753 325 124 754 326 120 755 321 176 756 325 140 757 327 136 758 328 126 759 329 142 760 330 126 761 329 125 762 331 142 763 330 148 764 332 142 765 330 125 766 331 150 767 398 148 768 332 125 769 331 166 770 399 168 771 400 170 772 401 164 773 402 166 774 399 170 775 401 172 776 403 162 777 404 164 778 402 172 779 403 173 780 405 160 781 406 162 782 404 154 783 407 152 784 408 158 785 409 160 786 406 152 787 408 150 788 398 134 789 410 138 790 411 144 791 412 146 792 413 132 793 414 134 794 410 146 795 413 132 796 414 146 797 413 156 798 415 132 799 414 156 800 415 158 801 409 132 802 414 158 803 409 150 804 398 125 805 331 205 806 416 207 807 417 209 808 418 203 809 419 205 810 416 209 811 418 211 812 420 201 813 421 203 814 419 211 815 420 212 816 422 199 817 423 201 818 421 193 819 424 191 820 425 197 821 426 199 822 423 191 823 425 189 824 427 127 825 428 177 826 429 183 827 430 185 828 431 125 829 331 127 830 428 185 831 431 125 832 331 185 833 431 195 834 432 125 835 331 195 836 432 197 837 426 181 838 433 179 839 434 175 840 435 133 841 436 181 842 433 133 843 436 132 844 414 187 845 437 181 846 433 132 847 414 189 848 427 187 849 437 132 850 414 125 851 331 197 852 426 189 853 427 132 854 414 213 855 456 121 856 448 63 857 298 219 858 457 214 859 458 121 860 448 213 861 456 215 862 449 121 863 448 214 864 458 122 865 447 217 866 459 216 867 450 126 868 460 122 869 447 218 870 461 217 871 459 122 872 447 215 873 449 218 874 461 220 875 462 219 876 457 63 877 298 221 878 310 123 879 309 223 880 463 63 881 298 222 882 311 220 883 462 223 884 463 123 885 309 224 886 464 224 887 464 123 888 309 124 889 455 225 890 454 224 891 464 124 892 455 226 893 465 225 894 454 127 895 453 227 896 466 226 897 465 127 898 453 125 899 452 228 900 451 227 901 466 125 902 452 126 903 460 216 904 450 125 905 452 234 906 474 229 907 467 90 908 210 29 909 209 231 910 470 64 911 2 232 912 472 233 913 473 1 914 1 64 915 2 231 916 470 239 917 479 236 918 476 29 919 209 30 920 211 31 921 212 0 922 0 237 923 477 238 924 478 29 925 209 236 926 476 234 927 474 65 928 30 240 929 480 232 930 471 90 31 55 230 931 468 65 20 30 243 932 483 128 933 238 129 934 239 242 935 482 241 936 481 242 937 482 129 938 239 245 939 485 253 940 493 129 941 239 134 942 316 129 943 239 253 944 493 241 945 481 131 946 242 248 947 488 247 948 487 134 949 316 246 950 486 245 951 485 132 952 314 256 953 496 246 954 486 134 955 316 131 956 242 247 957 487 254 958 494 133 959 315 130 960 241 249 961 489 248 962 488 131 963 242 130 964 241 250 965 490 249 966 489 252 967 492 251 968 491 47 969 237 132 970 314 133 971 315 254 972 494 255 973 495 251 974 491 250 975 490 130 976 241 47 977 237 47 978 237 244 979 484 252 980 492 13 981 25 260 982 501 259 983 500 258 984 499 77 985 26 13 986 25 259 987 500 15 988 28 262 989 503 261 990 502 14 991 27 16 992 184 263 993 504 262 994 503 15 995 28 17 996 185 266 997 508 267 998 509 16 999 184 261 1000 502 260 1001 501 13 1002 25 14 1003 27 258 1004 499 257 1005 498 77 1006 26 267 1007 509 263 1008 504 16 1009 184 17 1010 185 78 1011 186 265 1012 507 266 1013 508 65 15 30 257 1014 497 268 16 510 65 20 30 264 1015 505 78 18 43 65 2 30 232 1016 471 64 0 29 65 928 30 230 1017 468 240 929 480</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>polySurfaceShape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pCylinderShape7\" name=\"pCylinderShape7\">\r\n      <mesh>\r\n        <source id=\"pCylinderShape7-positions\" name=\"pCylinderShape7-positions\">\r\n          <float_array id=\"pCylinderShape7-positions-array\" count=\"627\">-1.710842 -3.45717 -1.432003 -1.710842 -2.646005 -2.646 -1.710842 -1.432013 -3.457163 -1.710842 0 -3.742006 -1.710842 1.431997 -3.457165 -1.710842 2.645992 -2.646004 -1.710842 3.457157 -1.432011 -1.710842 3.742002 0 -1.710842 3.457159 1.431999 -1.710842 2.645994 2.645992 -1.710842 1.431999 3.457161 -1.710842 0 3.742004 -1.710842 -1.432011 3.457161 -1.710842 -2.646003 2.645996 -1.710842 -3.457168 1.432007 -1.710842 -3.742013 0 1.710842 -3.45717 -1.432003 1.710842 -2.646005 -2.646 1.710842 -1.432013 -3.457163 1.710842 0 -3.742006 1.710842 1.431997 -3.457165 1.710842 2.645992 -2.646004 1.710842 3.457157 -1.432011 1.710842 3.742002 0 1.710842 3.457159 1.431999 1.710842 2.645994 2.645992 1.710842 1.431999 3.457161 1.710842 0 3.742004 1.710842 -1.432011 3.457161 1.710842 -2.646003 2.645996 1.710842 -3.457168 1.432007 1.710842 -3.742013 0 1.710258 -3.708928 -1.536285 1.710258 -2.838693 -2.838688 1.710258 -1.536293 -3.708921 1.710258 0 -4.014507 1.710258 1.536278 -3.708923 1.710258 2.83868 -2.838692 1.710258 3.708916 -1.536293 1.710258 4.014503 0 1.710258 3.708918 1.536282 1.710258 2.838682 2.83868 1.710258 1.53628 3.708916 1.710258 0 4.014503 1.710258 -1.536291 3.708916 1.710258 -2.838691 2.838684 1.710258 -3.708926 1.536289 1.710258 -4.014514 0 1.859718 -3.708928 -1.536285 1.859718 -2.838693 -2.838688 1.859718 -1.536293 -3.708921 1.859718 0 -4.014507 1.859718 1.536278 -3.708923 1.859718 2.83868 -2.838692 1.859718 3.708916 -1.536293 1.859718 4.014503 0 1.859718 3.708918 1.536282 1.859718 2.838682 2.83868 1.859718 1.53628 3.708916 1.859718 0 4.014503 1.859718 -1.536291 3.708916 1.859718 -2.838691 2.838684 1.859718 -3.708926 1.536289 1.859718 -4.014514 0 1.859718 -4.831794 -2.001392 1.859718 -3.698096 -3.698086 1.859718 -2.001399 -4.831785 1.859718 0 -5.229887 1.859718 2.001383 -4.831787 1.859718 3.698084 -3.698092 1.859718 4.831779 -2.0014 1.859718 5.229883 0 1.859718 4.831783 2.001389 1.859718 3.698086 3.698082 1.859718 2.001385 4.831779 1.859718 0 5.229885 1.859718 -2.001395 4.831779 1.859718 -3.698094 3.69809 1.859718 -4.83179 2.001396 1.859718 -5.229894 0 2.357922 -4.831794 -2.001392 2.357922 -3.698096 -3.698086 2.357922 -2.001399 -4.831785 2.357922 0 -5.229887 2.357922 2.001383 -4.831787 2.357922 3.698084 -3.698092 2.357922 4.831779 -2.0014 2.357922 5.229883 0 2.357922 4.831783 2.001389 2.357922 3.698086 3.698082 2.357922 2.001385 4.831779 2.357922 0 5.229885 2.357922 -2.001395 4.831779 2.357922 -3.698094 3.69809 2.357922 -4.83179 2.001396 2.357922 -5.229894 0 2.357922 -4.685332 -1.940727 2.357922 -3.585999 -3.585989 2.357922 -1.940734 -4.685326 2.357922 0 -5.07136 2.357922 1.940718 -4.685326 2.357922 3.585987 -3.585995 2.357922 4.685318 -1.940735 2.357922 5.071356 0 2.357922 4.685322 1.940723 2.357922 3.585989 3.585987 2.357922 1.94072 4.685318 2.357922 0 5.071358 2.357922 -1.94073 4.685318 2.357922 -3.585998 3.585995 2.357922 -4.685328 1.940731 2.357922 -5.071366 0 2.233372 -4.685332 -1.940727 2.233372 -3.585999 -3.585989 2.233372 -1.940734 -4.685326 2.233372 0 -5.07136 2.233372 1.940718 -4.685326 2.233372 3.585987 -3.585995 2.233372 4.685318 -1.940735 2.233372 5.071356 0 2.233372 4.685322 1.940723 2.233372 3.585989 3.585987 2.233372 1.94072 4.685318 2.233372 0 5.071358 2.233372 -1.94073 4.685318 2.233372 -3.585998 3.585995 2.233372 -4.685328 1.940731 2.233372 -5.071366 0 2.457565 -4.377231 -1.813107 2.457565 -3.350188 -3.350178 2.457565 -1.813114 -4.377224 2.457565 0 -4.737873 2.457565 1.813099 -4.377224 2.457565 3.350176 -3.350183 2.457565 4.377216 -1.813114 2.457565 4.737869 0 2.457565 4.37722 1.813103 2.457565 3.350178 3.350178 2.457565 1.813099 4.377216 2.457565 0 4.737869 2.457565 -1.81311 4.377216 2.457565 -3.350186 3.350185 2.457565 -4.377227 1.81311 2.457565 -4.73788 0 2.233372 -4.086246 -1.692577 2.233372 -3.127479 -3.127468 2.233372 -1.692585 -4.086239 2.233372 0 -4.422913 2.233372 1.69257 -4.086239 2.233372 3.127466 -3.127474 2.233372 4.086231 -1.692585 2.233372 4.422909 0 2.233372 4.086235 1.692574 2.233372 3.127468 3.127468 2.233372 1.69257 4.086231 2.233372 0 4.422909 2.233372 -1.692581 4.086231 2.233372 -3.127477 3.127472 2.233372 -4.086242 1.692581 2.233372 -4.422919 0 2.357922 -4.086246 -1.692577 2.357922 -3.127479 -3.127468 2.357922 -1.692585 -4.086239 2.357922 0 -4.422913 2.357922 1.69257 -4.086239 2.357922 3.127466 -3.127474 2.357922 4.086231 -1.692585 2.357922 4.422909 0 2.357922 4.086235 1.692574 2.357922 3.127468 3.127468 2.357922 1.69257 4.086231 2.357922 0 4.422909 2.357922 -1.692581 4.086231 2.357922 -3.127477 3.127472 2.357922 -4.086242 1.692581 2.357922 -4.422919 0 2.357922 -3.333108 -1.380619 2.357922 -2.551051 -2.551044 2.357922 -1.380625 -3.333101 2.357922 0 -3.607723 2.357922 1.38061 -3.333101 2.357922 2.551041 -2.551052 2.357922 3.333094 -1.380623 2.357922 3.607719 0 2.357922 3.333097 1.380615 2.357922 2.551041 2.551041 2.357922 1.38061 3.333096 2.357922 0 3.607719 2.357922 -1.380621 3.333096 2.357922 -2.551051 2.551044 2.357922 -3.333104 1.380619 2.357922 -3.60773 0 -4.898057 -3.333108 -1.380619 -4.845759 -2.551051 -2.551044 -4.845759 -1.380625 -3.333101 -4.845759 0 -3.607723 -4.845759 1.38061 -3.333101 -4.845759 2.551041 -2.551052 -4.909371 3.333094 -1.380623 -4.925258 3.607719 0 -4.909574 3.333097 1.380615 -4.864554 2.551041 2.551041 -4.845756 1.38061 3.333096 -4.845761 0 3.607719 -4.845756 -1.380621 3.333096 -4.861125 -2.551051 2.551044 -4.89864 -3.333104 1.380619 -4.912455 -3.60773 0 -7.197011 0 -1.379208</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pCylinderShape7-positions-array\" count=\"209\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pCylinderShape7-normals\" name=\"pCylinderShape7-normals\">\r\n          <float_array id=\"pCylinderShape7-normals-array\" count=\"2232\">0 -0.9238797 -0.382683 0 -0.707107 -0.7071066 0 -0.707107 -0.7071066 0 -0.9238797 -0.382683 0 -0.3826832 -0.9238796 0 -0.3826832 -0.9238796 0 0 -1 0 0 -1 0 0.3826817 -0.9238802 0 0.3826817 -0.9238802 0 0.7071058 -0.7071078 0 0.7071058 -0.7071078 0 0.9238793 -0.3826841 0 0.9238793 -0.3826841 0 1 0 0 1 0 0 0.9238794 0.3826838 0 0.9238794 0.3826838 0 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.3826842 0.9238792 0 0.3826842 0.9238792 0 0 0.9999999 0 0 0.9999999 0 -0.3826838 0.9238793 0 -0.3826838 0.9238793 0 -0.7071064 0.7071072 0 -0.7071064 0.7071072 0 -0.923879 0.3826846 0 -0.923879 0.3826846 0 -0.9999999 0 0 -0.9999999 0 0.7870548 5.50828e-4 0.6168829 0.760094 0.5240997 0.3841571 0.7421693 0.4602496 0.4871909 0.7040699 0.268898 0.6572514 0.6879096 0 0.7257964 0.7040692 -0.2688963 0.6572528 0.7415773 -0.45856 0.4896792 0.759468 -0.5210882 0.3894553 -0.9999977 0.001815697 0.001213236 -0.9999977 0.001815697 0.001213236 -0.9999977 0.001815697 0.001213236 -0.9999977 0.001815697 0.001213236 -0.9999977 0.001213148 0.001815744 -0.9999977 0.001213148 0.001815744 -0.9999977 0.001213148 0.001815744 -0.9999977 0.001213148 0.001815744 -0.9999976 4.26072e-4 0.002141817 -0.9999976 4.26072e-4 0.002141817 -0.9999976 4.26072e-4 0.002141817 -0.9999976 4.26072e-4 0.002141817 -0.9999977 -4.26072e-4 0.002141818 -0.9999977 -4.26072e-4 0.002141818 -0.9999977 -4.26072e-4 0.002141818 -0.9999977 -4.26072e-4 0.002141818 -0.9999977 -0.001213222 0.001815747 -0.9999977 -0.001213222 0.001815747 -0.9999977 -0.001213222 0.001815747 -0.9999977 -0.001213222 0.001815747 -0.9999976 -0.001815775 0.001213239 -0.9999976 -0.001815775 0.001213239 -0.9999976 -0.001815775 0.001213239 -0.9999976 -0.001815775 0.001213239 -0.9999976 -0.0021417 4.26035e-4 -0.9999976 -0.0021417 4.26035e-4 -0.9999976 -0.0021417 4.26035e-4 -0.9999976 -0.0021417 4.26035e-4 -0.9999977 -0.002141706 -4.26033e-4 -0.9999977 -0.002141706 -4.26033e-4 -0.9999977 -0.002141706 -4.26033e-4 -0.9999977 -0.002141706 -4.26033e-4 -0.9999976 -0.001815701 -0.001213238 -0.9999976 -0.001815701 -0.001213238 -0.9999976 -0.001815701 -0.001213238 -0.9999976 -0.001815701 -0.001213238 -0.9999977 -0.001213152 -0.001815753 -0.9999977 -0.001213152 -0.001815753 -0.9999977 -0.001213152 -0.001815753 -0.9999977 -0.001213152 -0.001815753 -0.9999976 -4.26002e-4 -0.002141838 -0.9999976 -4.26002e-4 -0.002141838 -0.9999976 -4.26002e-4 -0.002141838 -0.9999976 -4.26002e-4 -0.002141838 -0.9999976 4.26076e-4 -0.002141838 -0.9999976 4.26076e-4 -0.002141838 -0.9999976 4.26076e-4 -0.002141838 -0.9999976 4.26076e-4 -0.002141838 -0.9999976 0.001213303 -0.001815754 -0.9999976 0.001213303 -0.001815754 -0.9999976 0.001213303 -0.001815754 -0.9999976 0.001213303 -0.001815754 -0.9999976 0.001815779 -0.001213241 -0.9999976 0.001815779 -0.001213241 -0.9999976 0.001815779 -0.001213241 -0.9999976 0.001815779 -0.001213241 -0.9999976 0.0021417 -4.26035e-4 -0.9999976 0.0021417 -4.26035e-4 -0.9999976 0.0021417 -4.26035e-4 -0.9999976 0.0021417 -4.26035e-4 -0.9999976 0.002141706 4.26033e-4 -0.9999976 0.002141706 4.26033e-4 -0.9999976 0.002141706 4.26033e-4 -0.9999976 0.002141706 4.26033e-4 0 -0.8314703 -0.5555693 0 -0.8314703 -0.5555693 0 -0.8314703 -0.5555693 0 -0.8314703 -0.5555693 0 -0.5555694 -0.8314703 0 -0.5555694 -0.8314703 0 -0.5555694 -0.8314703 0 -0.5555694 -0.8314703 0 -0.1950902 -0.9807853 0 -0.1950902 -0.9807853 0 -0.1950902 -0.9807853 0 -0.1950902 -0.9807853 0 0.195089 -0.9807856 0 0.195089 -0.9807856 0 0.195089 -0.9807856 0 0.195089 -0.9807856 0 0.5555674 -0.8314715 0 0.5555674 -0.8314715 0 0.5555674 -0.8314715 0 0.5555674 -0.8314715 0 0.8314694 -0.5555707 0 0.8314694 -0.5555707 0 0.8314694 -0.5555707 0 0.8314694 -0.5555707 0 0.9807852 -0.195091 0 0.9807852 -0.195091 0 0.9807852 -0.195091 0 0.9807852 -0.195091 0 0.9807853 0.1950903 0 0.9807853 0.1950903 0 0.9807853 0.1950903 0 0.9807853 0.1950903 0 0.8314694 0.5555707 0 0.8314694 0.5555707 0 0.8314694 0.5555707 0 0.8314694 0.5555707 0 0.5555695 0.8314701 0 0.5555695 0.8314701 0 0.5555695 0.8314701 0 0.5555695 0.8314701 0 0.1950912 0.9807851 0 0.1950912 0.9807851 0 0.1950912 0.9807851 0 0.1950912 0.9807851 0 -0.1950912 0.9807852 0 -0.1950912 0.9807852 0 -0.1950912 0.9807852 0 -0.1950912 0.9807852 0 -0.5555683 0.831471 0 -0.5555683 0.831471 0 -0.5555683 0.831471 0 -0.5555683 0.831471 0 -0.8314689 0.5555713 0 -0.8314689 0.5555713 0 -0.8314689 0.5555713 0 -0.8314689 0.5555713 0 -0.9807853 0.1950908 0 -0.9807853 0.1950908 0 -0.9807853 0.1950908 0 -0.9807853 0.1950908 0 -0.9807853 -0.1950903 0 -0.9807853 -0.1950903 0 -0.9807853 -0.1950903 0 -0.9807853 -0.1950903 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.8314688 -0.5555715 0 -0.8314688 -0.5555715 0 -0.8314688 -0.5555715 0 -0.8314688 -0.5555715 0 -0.5555713 -0.831469 0 -0.5555713 -0.831469 0 -0.5555713 -0.831469 0 -0.5555713 -0.831469 0 -0.1950905 -0.9807853 0 -0.1950905 -0.9807853 0 -0.1950905 -0.9807853 0 -0.1950905 -0.9807853 0 0.1950896 -0.9807855 0 0.1950896 -0.9807855 0 0.1950896 -0.9807855 0 0.1950896 -0.9807855 0 0.5555689 -0.8314705 0 0.5555689 -0.8314705 0 0.5555689 -0.8314705 0 0.5555689 -0.8314705 0 0.831469 -0.5555711 0 0.831469 -0.5555711 0 0.831469 -0.5555711 0 0.831469 -0.5555711 0 0.9807853 -0.195091 0 0.9807853 -0.195091 0 0.9807853 -0.195091 0 0.9807853 -0.195091 0 0.9807855 0.1950895 0 0.9807855 0.1950895 0 0.9807855 0.1950895 0 0.9807855 0.1950895 0 0.8314688 0.5555715 0 0.8314688 0.5555715 0 0.8314688 0.5555715 0 0.8314688 0.5555715 0 0.5555696 0.8314701 0 0.5555696 0.8314701 0 0.5555696 0.8314701 0 0.5555696 0.8314701 0 0.1950924 0.9807849 0 0.1950924 0.9807849 0 0.1950924 0.9807849 0 0.1950924 0.9807849 0 -0.1950925 0.9807849 0 -0.1950925 0.9807849 0 -0.1950925 0.9807849 0 -0.1950925 0.9807849 0 -0.5555676 0.8314714 0 -0.5555676 0.8314714 0 -0.5555676 0.8314714 0 -0.5555676 0.8314714 0 -0.8314693 0.5555709 0 -0.8314693 0.5555709 0 -0.8314693 0.5555709 0 -0.8314693 0.5555709 0 -0.9807853 0.195091 0 -0.9807853 0.195091 0 -0.9807853 0.195091 0 -0.9807853 0.195091 0 -0.9807855 -0.1950895 0 -0.9807855 -0.1950895 0 -0.9807855 -0.1950895 0 -0.9807855 -0.1950895 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.8314688 0.5555715 0 0.8314688 0.5555715 0 0.8314688 0.5555715 0 0.8314688 0.5555715 0 0.5555718 0.8314686 0 0.5555718 0.8314686 0 0.5555718 0.8314686 0 0.5555718 0.8314686 0 0.19509 0.9807854 0 0.19509 0.9807854 0 0.19509 0.9807854 0 0.19509 0.9807854 0 -0.19509 0.9807854 0 -0.19509 0.9807854 0 -0.19509 0.9807854 0 -0.19509 0.9807854 0 -0.5555696 0.8314701 0 -0.5555696 0.8314701 0 -0.5555696 0.8314701 0 -0.5555696 0.8314701 0 -0.8314689 0.5555713 0 -0.8314689 0.5555713 0 -0.8314689 0.5555713 0 -0.8314689 0.5555713 0 -0.9807851 0.1950916 0 -0.9807851 0.1950916 0 -0.9807851 0.1950916 0 -0.9807851 0.1950916 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.8314688 -0.5555715 0 -0.8314688 -0.5555715 0 -0.8314688 -0.5555715 0 -0.8314688 -0.5555715 0 -0.5555696 -0.8314701 0 -0.5555696 -0.8314701 0 -0.5555696 -0.8314701 0 -0.5555696 -0.8314701 0 -0.1950931 -0.9807848 0 -0.1950931 -0.9807848 0 -0.1950931 -0.9807848 0 -0.1950931 -0.9807848 0 0.1950932 -0.9807847 0 0.1950932 -0.9807847 0 0.1950932 -0.9807847 0 0.1950932 -0.9807847 0 0.5555667 -0.831472 0 0.5555667 -0.831472 0 0.5555667 -0.831472 0 0.5555667 -0.831472 0 0.8314692 -0.5555708 0 0.8314692 -0.5555708 0 0.8314692 -0.5555708 0 0.8314692 -0.5555708 0 0.9807851 -0.1950916 0 0.9807851 -0.1950916 0 0.9807851 -0.1950916 0 0.9807851 -0.1950916 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0.8248342 -0.4700916 -0.3141062 0.8248342 -0.4700916 -0.3141062 0.8248342 -0.4700916 -0.3141062 0.8248342 -0.4700916 -0.3141062 0.8248339 -0.3141067 -0.4700917 0.8248339 -0.3141067 -0.4700917 0.8248339 -0.3141067 -0.4700917 0.8248339 -0.3141067 -0.4700917 0.8248335 -0.1102993 -0.5545123 0.8248335 -0.1102993 -0.5545123 0.8248335 -0.1102993 -0.5545123 0.8248335 -0.1102993 -0.5545123 0.8248335 0.1102992 -0.5545124 0.8248335 0.1102992 -0.5545124 0.8248335 0.1102992 -0.5545124 0.8248335 0.1102992 -0.5545124 0.8248338 0.3141055 -0.4700927 0.8248338 0.3141055 -0.4700927 0.8248338 0.3141055 -0.4700927 0.8248338 0.3141055 -0.4700927 0.8248341 0.4700915 -0.3141061 0.8248341 0.4700915 -0.3141061 0.8248341 0.4700915 -0.3141061 0.8248341 0.4700915 -0.3141061 0.8248336 0.5545118 -0.1103 0.8248336 0.5545118 -0.1103 0.8248336 0.5545118 -0.1103 0.8248336 0.5545118 -0.1103 0.8248338 0.5545119 0.1102992 0.8248338 0.5545119 0.1102992 0.8248338 0.5545119 0.1102992 0.8248338 0.5545119 0.1102992 0.8248338 0.4700921 0.3141061 0.8248338 0.4700921 0.3141061 0.8248338 0.4700921 0.3141061 0.8248338 0.4700921 0.3141061 0.8248335 0.3141053 0.4700933 0.8248335 0.3141053 0.4700933 0.8248335 0.3141053 0.4700933 0.8248335 0.3141053 0.4700933 0.8248345 0.1103004 0.5545105 0.8248345 0.1103004 0.5545105 0.8248345 0.1103004 0.5545105 0.8248345 0.1103004 0.5545105 0.8248343 -0.1103006 0.5545108 0.8248343 -0.1103006 0.5545108 0.8248343 -0.1103006 0.5545108 0.8248343 -0.1103006 0.5545108 0.8248335 -0.3141039 0.4700944 0.8248335 -0.3141039 0.4700944 0.8248335 -0.3141039 0.4700944 0.8248335 -0.3141039 0.4700944 0.8248338 -0.4700925 0.3141058 0.8248338 -0.4700925 0.3141058 0.8248338 -0.4700925 0.3141058 0.8248338 -0.4700925 0.3141058 0.8248336 -0.5545118 0.1103 0.8248336 -0.5545118 0.1103 0.8248336 -0.5545118 0.1103 0.8248336 -0.5545118 0.1103 0.8248338 -0.5545119 -0.1102992 0.8248338 -0.5545119 -0.1102992 0.8248338 -0.5545119 -0.1102992 0.8248338 -0.5545119 -0.1102992 0.8093169 0.4883818 0.3263275 0.8093169 0.4883818 0.3263275 0.8093169 0.4883818 0.3263275 0.8093169 0.4883818 0.3263275 0.809317 0.3263278 0.4883812 0.809317 0.3263278 0.4883812 0.809317 0.3263278 0.4883812 0.809317 0.3263278 0.4883812 0.8093176 0.1145903 0.5760851 0.8093176 0.1145903 0.5760851 0.8093176 0.1145903 0.5760851 0.8093176 0.1145903 0.5760851 0.8093177 -0.1145904 0.576085 0.8093177 -0.1145904 0.576085 0.8093177 -0.1145904 0.576085 0.8093177 -0.1145904 0.576085 0.809317 -0.326326 0.4883825 0.809317 -0.326326 0.4883825 0.809317 -0.326326 0.4883825 0.809317 -0.326326 0.4883825 0.809317 -0.4883816 0.3263274 0.809317 -0.4883816 0.3263274 0.809317 -0.4883816 0.3263274 0.809317 -0.4883816 0.3263274 0.8093176 -0.5760849 0.1145912 0.8093176 -0.5760849 0.1145912 0.8093176 -0.5760849 0.1145912 0.8093176 -0.5760849 0.1145912 0.8093176 -0.5760852 -0.1145902 0.8093176 -0.5760852 -0.1145902 0.8093176 -0.5760852 -0.1145902 0.8093176 -0.5760852 -0.1145902 0.8093169 -0.4883819 -0.3263269 0.8093169 -0.4883819 -0.3263269 0.8093169 -0.4883819 -0.3263269 0.8093169 -0.4883819 -0.3263269 0.8093169 -0.3263256 -0.488383 0.8093169 -0.3263256 -0.488383 0.8093169 -0.3263256 -0.488383 0.8093169 -0.3263256 -0.488383 0.8093176 -0.1145916 -0.576085 0.8093176 -0.1145916 -0.576085 0.8093176 -0.1145916 -0.576085 0.8093176 -0.1145916 -0.576085 0.8093176 0.1145916 -0.5760849 0.8093176 0.1145916 -0.5760849 0.8093176 0.1145916 -0.5760849 0.8093176 0.1145916 -0.5760849 0.8093184 0.3263235 -0.4883818 0.8093184 0.3263235 -0.4883818 0.8093184 0.3263235 -0.4883818 0.8093184 0.3263235 -0.4883818 0.8093179 0.488381 -0.3263259 0.8093179 0.488381 -0.3263259 0.8093179 0.488381 -0.3263259 0.8093179 0.488381 -0.3263259 0.8093176 0.5760849 -0.1145912 0.8093176 0.5760849 -0.1145912 0.8093176 0.5760849 -0.1145912 0.8093176 0.5760849 -0.1145912 0.8093176 0.5760852 0.1145902 0.8093176 0.5760852 0.1145902 0.8093176 0.5760852 0.1145902 0.8093176 0.5760852 0.1145902 0 -0.8314687 -0.5555717 0 -0.8314687 -0.5555717 0 -0.8314687 -0.5555717 0 -0.8314687 -0.5555717 0 -0.5555726 -0.8314682 0 -0.5555726 -0.8314682 0 -0.5555726 -0.8314682 0 -0.5555726 -0.8314682 0 -0.19509 -0.9807854 0 -0.19509 -0.9807854 0 -0.19509 -0.9807854 0 -0.19509 -0.9807854 0 0.19509 -0.9807854 0 0.19509 -0.9807854 0 0.19509 -0.9807854 0 0.19509 -0.9807854 0 0.5555695 -0.8314702 0 0.5555695 -0.8314702 0 0.5555695 -0.8314702 0 0.5555695 -0.8314702 0 0.8314689 -0.5555714 0 0.8314689 -0.5555714 0 0.8314689 -0.5555714 0 0.8314689 -0.5555714 0 0.9807851 -0.1950915 0 0.9807851 -0.1950915 0 0.9807851 -0.1950915 0 0.9807851 -0.1950915 0 0.9807854 0.1950898 0 0.9807854 0.1950898 0 0.9807854 0.1950898 0 0.9807854 0.1950898 0 0.8314694 0.5555707 0 0.8314694 0.5555707 0 0.8314694 0.5555707 0 0.8314694 0.5555707 0 0.5555682 0.8314711 0 0.5555682 0.8314711 0 0.5555682 0.8314711 0 0.5555682 0.8314711 0 0.1950921 0.980785 0 0.1950921 0.980785 0 0.1950921 0.980785 0 0.1950921 0.980785 0 -0.1950921 0.980785 0 -0.1950921 0.980785 0 -0.1950921 0.980785 0 -0.1950921 0.980785 0 -0.5555674 0.8314715 0 -0.5555674 0.8314715 0 -0.5555674 0.8314715 0 -0.5555674 0.8314715 0 -0.8314692 0.5555709 0 -0.8314692 0.5555709 0 -0.8314692 0.5555709 0 -0.8314692 0.5555709 0 -0.9807851 0.1950915 0 -0.9807851 0.1950915 0 -0.9807851 0.1950915 0 -0.9807851 0.1950915 0 -0.9807854 -0.1950898 0 -0.9807854 -0.1950898 0 -0.9807854 -0.1950898 0 -0.9807854 -0.1950898 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.8314685 0.5555719 0 0.8314685 0.5555719 0 0.8314685 0.5555719 0 0.8314685 0.5555719 0 0.5555717 0.8314687 0 0.5555717 0.8314687 0 0.5555717 0.8314687 0 0.5555717 0.8314687 0 0.1950904 0.9807853 0 0.1950904 0.9807853 0 0.1950904 0.9807853 0 0.1950904 0.9807853 0 -0.1950904 0.9807853 0 -0.1950904 0.9807853 0 -0.1950904 0.9807853 0 -0.1950904 0.9807853 0 -0.5555664 0.8314723 0 -0.5555664 0.8314723 0 -0.5555664 0.8314723 0 -0.5555664 0.8314723 0 -0.8314705 0.5555689 0 -0.8314705 0.5555689 0 -0.8314705 0.5555689 0 -0.8314705 0.5555689 0 -0.9807849 0.1950927 0 -0.9807849 0.1950927 0 -0.9807849 0.1950927 0 -0.9807849 0.1950927 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.8314684 -0.555572 0 -0.8314684 -0.555572 0 -0.8314684 -0.555572 0 -0.8314684 -0.555572 0 -0.5555692 -0.8314704 0 -0.5555692 -0.8314704 0 -0.5555692 -0.8314704 0 -0.5555692 -0.8314704 0 -0.195092 -0.980785 0 -0.195092 -0.980785 0 -0.195092 -0.980785 0 -0.195092 -0.980785 0 0.195092 -0.980785 0 0.195092 -0.980785 0 0.195092 -0.980785 0 0.195092 -0.980785 0 0.5555677 -0.8314714 0 0.5555677 -0.8314714 0 0.5555677 -0.8314714 0 0.5555677 -0.8314714 0 0.8314697 -0.5555702 0 0.8314697 -0.5555702 0 0.8314697 -0.5555702 0 0.8314697 -0.5555702 0 0.9807849 -0.1950928 0 0.9807849 -0.1950928 0 0.9807849 -0.1950928 0 0.9807849 -0.1950928 0 0.9807854 0.1950902 0 0.9807854 0.1950902 0 0.9807854 0.1950902 0 0.9807854 0.1950902</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pCylinderShape7-normals-array\" count=\"744\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pCylinderShape7-map1\" name=\"pCylinderShape7-map1\">\r\n          <float_array id=\"pCylinderShape7-map1-array\" count=\"724\">0.8178095 0.7061449 0.8178093 0.757681 0.4906816 0.757681 0.4906816 0.7061449 0.8178093 0.8092172 0.4906815 0.8092172 0.8178093 0.8607535 0.4906816 0.8607535 0.8178093 0.9122897 0.4906815 0.9122897 0.8178093 0.1392465 0.8178092 0.1907827 0.4906815 0.1907826 0.8178093 0.242319 0.4906815 0.242319 0.8178094 0.2938551 0.4906815 0.2938551 0.8178093 0.3453913 0.4906815 0.3453913 0.8178093 0.3969276 0.4906815 0.3969276 0.8178093 0.4484638 0.4906816 0.4484638 0.8178093 0.5000001 0.4906816 0.5000001 0.8178094 0.5515362 0.4906816 0.5515362 0.8178094 0.6030724 0.4906816 0.6030724 0.8178093 0.6546087 0.4906816 0.6546087 0.4907374 0.7061449 0.4907374 0.757681 0.9550884 0.0834319 0.4764483 0.757681 0.4764483 0.7061449 0.4907374 0.8092173 0.4764483 0.8092173 0.4907374 0.8607535 0.4764483 0.8607535 0.4907374 0.9122896 0.4764482 0.9122896 0.4907373 0.1907827 0.4764484 0.1907826 0.4907373 0.242319 0.4764483 0.242319 0.4907373 0.2938551 0.4764483 0.2938552 0.4907373 0.3453913 0.4764484 0.3453913 0.4907374 0.3969276 0.4764484 0.3969277 0.4907374 0.4484638 0.4764483 0.4484638 0.4907374 0.5000001 0.4764484 0.5000001 0.4907374 0.5515363 0.4764484 0.5515362 0.4907374 0.6030724 0.7930033 0.6685767 0.4764484 0.6030723 0.4907373 0.6546087 0.4764484 0.6546087 0.4764484 0.7061449 0.4764484 0.757681 0.428818 0.757681 0.7963877 0.6635118 0.7955837 0.6627079 0.791953 0.6681416 0.8014526 0.6601275 0.428818 0.7061449 0.4764484 0.8092173 0.428818 0.8092173 0.4764483 0.8607535 0.428818 0.8607535 0.4764482 0.9122896 0.4288179 0.9122897 0.4764483 0.1907826 0.428818 0.1907826 0.4764483 0.242319 0.8010175 0.659077 0.8074272 0.658939 0.807427 0.6578022 0.8134016 0.6601275 0.4288179 0.242319 0.4764484 0.2938552 0.4288179 0.2938552 0.4764484 0.3453913 0.4288179 0.3453913 0.4764484 0.3969277 0.428818 0.3969276 0.4764483 0.4484638 0.428818 0.4484638 0.4764484 0.5000001 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6030523 0.6546085 0.6030523 0.7061445 0.7735711 0.7061445 0.773571 0.6546085 0.6030524 0.7576808 0.7735711 0.7576808 0.6030523 0.809217 0.773571 0.8092171 0.6030523 0.8607533 0.773571 0.8607533 0.428818 0.5000001 0.6030523 0.9122895 0.7735711 0.9122895 0.6030523 0.1907825 0.773571 0.1907826 0.6030523 0.2423188 0.773571 0.2423189 0.6030523 0.2938549 0.773571 0.2938549 0.6030523 0.3453912 0.7735711 0.3453912 0.6030523 0.3969274 0.773571 0.3969274 0.6030523 0.4484636 0.8138368 0.659077 0.773571 0.4484636 0.6030523 0.4999998 0.773571 0.4999998 0.6030523 0.5515359 0.773571 0.5515359 0.4764484 0.5515363 0.428818 0.5515363 0.8184666 0.6635118 0.4764484 0.6030723 0.428818 0.6030724 0.4764484 0.6546087 0.428818 0.6546087 0.7923752 0.6745512 0.788974 0.6745512 0.793521 0.6803114 0.7903787 0.6816131 0.7967839 0.6851946 0.7943789 0.6875995 0.801667 0.6884574 0.8003654 0.6915996 0.8074272 0.6896032 0.807427 0.6930043 0.8192706 0.6627079 0.8218509 0.6685767 0.8229012 0.6681416 0.8230393 0.6745512 0.8241763 0.6745512 0.8218509 0.6805258 0.8229012 0.6809608 0.8184667 0.6855907 0.8192706 0.6863946 0.8134017 0.6889751 0.8138367 0.6900253 0.807427 0.6901635 0.807427 0.6913004 0.8014527 0.688975 0.8010175 0.6900254 0.7963877 0.6855909 0.7955837 0.6863947 0.7930034 0.6805258 0.791953 0.6809609 0.6030523 0.6030722 0.7918149 0.6745512 0.7735711 0.6030722 0.790678 0.6745512 0.428818 0.08771032 0.791953 0.6681416 0.7955837 0.6627079 0.7919983 0.6591222 0.7872682 0.6662011 0.8010175 0.659077 0.799077 0.6543924 0.807427 0.6578022 0.807427 0.6527314 0.428818 0.1392465 0.4764483 0.1392465 0.4764483 0.08771029 0.8138368 0.659077 0.8157772 0.6543924 0.8192706 0.6627079 0.8228561 0.6591222 0.8229012 0.6681416 0.8275861 0.6662011 0.8241763 0.6745512 0.829247 0.6745512 0.8229012 0.6809608 0.8275861 0.6829014 0.8192706 0.6863946 0.8228561 0.6899802 0.8138367 0.6900253 0.8157772 0.6947103 0.807427 0.6913004 0.807427 0.6963712 0.8010175 0.6900254 0.7990771 0.6947103 0.7955837 0.6863947 0.7919983 0.6899803 0.791953 0.6809609 0.7872682 0.6829014 0.790678 0.6745512 0.7856072 0.6745512 0.799077 0.6543924 0.7919983 0.6591222 0.807427 0.6527314 0.8157772 0.6543924 0.8228561 0.6591222 0.8275861 0.6662011 0.7872682 0.6662011 0.792466 0.6595899 0.7878792 0.6664543 0.7993301 0.6550034 0.8074272 0.6533927 0.8155242 0.6550034 0.8223885 0.65959 0.826975 0.6664543 0.829247 0.6745512 0.8285856 0.6745512 0.8275861 0.6829014 0.826975 0.6826482 0.8228561 0.6899802 0.8223884 0.6895125 0.8157772 0.6947103 0.8155241 0.6940992 0.807427 0.6963712 0.807427 0.6957097 0.7990771 0.6947103 0.7993303 0.6940992 0.7919983 0.6899803 0.792466 0.6895126 0.7872682 0.6829014 0.7878793 0.6826483 0.7856072 0.6745512 0.7862687 0.6745512 0.7903788 0.6674895 0.7943789 0.661503 0.7967838 0.6639079 0.7935209 0.6687911 0.8003654 0.6575028 0.801667 0.6606451 0.807427 0.6560982 0.8074272 0.6594993 0.8144889 0.6575028 0.8131873 0.6606451 0.8204755 0.661503 0.8180705 0.6639079 0.8244755 0.6674896 0.8213333 0.6687911 0.8258802 0.6745512 0.8224791 0.6745512 0.8244755 0.6816129 0.8213334 0.6803114 0.8204755 0.6875995 0.8180704 0.6851946 0.8144888 0.6915996 0.8131872 0.6884574 0.8178093 0.08771026 0.4906815 0.1392465 0.4906815 0.08771026 0.4907373 0.08771026 0.4907374 0.1392464 0.4764483 0.1392465 0.4764483 0.08771029 0.6030523 0.08771002 0.6030523 0.1392462 0.773571 0.1392462 0.773571 0.08771002 0.8180131 0.6552142 0.8173255 0.7044026 0.8173265 0.7575621 0.8173268 0.8062553 0.8173265 0.8608347 0.8173255 0.0863964 0.8181621 0.137939 0.9350754 0.8886622 0.9350754 0.8274459 0.9350754 0.7885971 0.9350754 0.7297352 0.9350754 0.6850002 0.8173255 0.9116398 0.8173265 0.8608347 0.8173268 0.8062553 0.8173265 0.7575621 0.8173255 0.7044026</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pCylinderShape7-map1-array\" count=\"362\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pCylinderShape7-vertices\" name=\"pCylinderShape7-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pCylinderShape7-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"198\">\r\n          <input semantic=\"VERTEX\" source=\"#pCylinderShape7-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pCylinderShape7-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pCylinderShape7-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 17 2 2 16 3 3 1 1 1 2 4 4 18 5 5 17 2 2 2 4 4 3 6 6 19 7 7 18 5 5 3 6 6 4 8 8 20 9 9 19 7 7 4 8 334 5 10 10 21 11 335 20 9 336 5 10 10 6 12 11 22 13 12 21 11 335 6 12 11 7 14 13 23 15 14 22 13 12 7 14 13 8 16 15 24 17 16 23 15 14 8 16 15 9 18 17 25 19 18 24 17 16 9 18 17 10 20 19 26 21 20 25 19 18 10 20 19 11 22 21 27 23 22 26 21 20 11 22 21 12 24 23 28 25 24 27 23 22 12 24 23 13 26 25 29 27 26 28 25 24 13 26 25 14 28 27 30 29 28 29 27 26 14 28 27 15 30 29 31 31 30 30 29 28 15 30 29 0 0 0 16 3 3 31 31 30 208 32 356 192 33 345 193 34 361 193 34 346 194 35 360 208 32 355 194 35 347 195 36 359 208 32 354 195 36 348 196 37 358 208 32 353 196 37 349 197 38 357 208 32 352 198 39 351 208 32 33 197 38 350 16 40 59 17 41 66 33 42 67 32 43 68 17 44 66 18 45 69 34 46 80 33 47 67 18 48 69 19 49 81 35 50 82 34 51 80 19 52 81 20 53 83 36 54 198 35 55 82 20 56 83 21 57 206 37 58 221 36 59 198 21 60 206 22 61 222 38 62 223 37 63 221 22 64 222 23 65 224 39 66 225 38 67 223 23 68 224 24 69 226 40 70 227 39 71 225 24 72 226 25 73 228 41 74 229 40 75 227 25 76 228 26 77 230 42 78 231 41 79 229 26 80 230 27 81 232 43 82 233 42 83 231 27 84 232 28 85 234 44 86 235 43 87 233 28 88 234 29 89 236 45 90 237 44 91 235 29 92 236 30 93 238 46 94 239 45 95 237 30 96 238 31 97 241 47 98 243 46 99 239 31 100 241 16 101 59 32 102 68 47 103 243 32 104 31 33 105 32 49 106 34 48 107 35 33 108 32 34 109 36 50 110 37 49 111 34 34 112 36 35 113 38 51 114 39 50 115 37 35 116 38 36 117 40 52 118 41 51 119 39 36 120 337 37 121 338 53 122 339 52 123 340 37 124 338 38 125 42 54 126 43 53 127 339 38 128 42 39 129 44 55 130 45 54 131 43 39 132 44 40 133 46 56 134 47 55 135 45 40 136 46 41 137 48 57 138 49 56 139 47 41 140 48 42 141 50 58 142 51 57 143 49 42 144 50 43 145 52 59 146 53 58 147 51 43 148 52 44 149 54 60 150 55 59 151 53 44 152 54 45 153 56 61 154 57 60 155 55 45 156 56 46 157 58 62 158 60 61 159 57 46 160 58 47 161 61 63 162 62 62 163 60 47 164 61 32 165 31 48 166 35 63 167 62 48 168 245 49 169 246 65 170 247 64 171 248 49 172 246 50 173 249 66 174 250 65 175 247 50 176 249 51 177 251 67 178 252 66 179 250 51 180 251 52 181 256 68 182 257 67 183 252 52 184 256 53 185 258 69 186 259 68 187 257 53 188 258 54 189 260 70 190 261 69 191 259 54 192 260 55 193 262 71 194 263 70 195 261 55 196 262 56 197 264 72 198 265 71 199 263 56 200 264 57 201 266 73 202 267 72 203 265 57 204 266 58 205 268 74 206 269 73 207 267 58 208 268 59 209 270 75 210 271 74 211 269 59 212 270 60 213 272 76 214 273 75 215 271 60 216 272 61 217 274 77 218 275 76 219 273 61 220 274 62 221 276 78 222 277 77 223 275 62 224 276 63 225 278 79 226 279 78 227 277 63 228 278 48 229 245 64 230 248 79 231 279 64 232 63 65 233 64 81 234 65 80 235 70 65 236 64 66 237 71 82 238 72 81 239 65 66 240 71 67 241 73 83 242 74 82 243 72 67 244 73 68 245 75 84 246 76 83 247 74 68 248 255 69 249 254 85 250 253 84 251 244 69 252 254 70 253 77 86 254 78 85 255 253 70 256 77 71 257 79 87 258 84 86 259 78 71 260 79 72 261 85 88 262 86 87 263 84 72 264 85 73 265 87 89 266 88 88 267 86 73 268 87 74 269 89 90 270 90 89 271 88 74 272 89 75 273 91 91 274 92 90 275 90 75 276 91 76 277 93 92 278 184 91 279 92 76 280 93 77 281 204 93 282 205 92 283 184 77 284 204 78 285 207 94 286 208 93 287 205 78 288 207 79 289 209 95 290 210 94 291 208 79 292 209 64 293 63 80 294 70 95 295 210 80 296 286 81 297 281 97 298 287 96 299 288 81 300 281 82 301 280 98 302 289 97 303 287 82 304 280 83 305 282 99 306 290 98 307 289 83 308 282 84 309 283 100 310 291 99 311 290 84 312 283 85 313 284 101 314 292 100 315 291 85 316 284 86 317 285 102 318 293 101 319 292 86 320 285 87 321 294 103 322 295 102 323 293 87 324 294 88 325 296 104 326 297 103 327 295 88 328 296 89 329 298 105 330 299 104 331 297 89 332 298 90 333 300 106 334 301 105 335 299 90 336 300 91 337 302 107 338 303 106 339 301 91 340 302 92 341 304 108 342 305 107 343 303 92 344 304 93 345 306 109 346 307 108 347 305 93 348 306 94 349 308 110 350 309 109 351 307 94 352 308 95 353 310 111 354 311 110 355 309 95 356 310 80 357 286 96 358 288 111 359 311 96 360 94 97 361 95 113 362 111 112 363 110 97 364 95 98 365 96 114 366 112 113 367 111 98 368 96 99 369 97 115 370 113 114 371 112 99 372 97 100 373 98 116 374 114 115 375 113 100 376 98 101 377 99 117 378 115 116 379 114 101 380 99 102 381 100 118 382 116 117 383 115 102 384 100 103 385 101 119 386 117 118 387 116 103 388 101 104 389 102 120 390 118 119 391 117 104 392 102 105 393 103 121 394 119 120 395 118 105 396 103 106 397 104 122 398 120 121 399 119 106 400 104 107 401 105 123 402 121 122 403 120 107 404 105 108 405 106 124 406 122 123 407 121 108 408 106 109 409 107 125 410 123 124 411 122 109 412 107 110 413 108 126 414 124 125 415 123 110 416 108 111 417 109 127 418 125 126 419 124 111 420 109 96 421 94 112 422 110 127 423 125 112 424 110 113 425 111 129 426 127 128 427 126 113 428 111 114 429 112 130 430 128 129 431 127 114 432 112 115 433 113 131 434 129 130 435 128 115 436 113 116 437 114 132 438 130 131 439 129 116 440 114 117 441 115 133 442 131 132 443 130 117 444 115 118 445 116 134 446 132 133 447 131 118 448 116 119 449 117 135 450 133 134 451 132 119 452 117 120 453 118 136 454 134 135 455 133 120 456 118 121 457 119 137 458 135 136 459 134 121 460 119 122 461 120 138 462 136 137 463 135 122 464 120 123 465 121 139 466 137 138 467 136 123 468 121 124 469 122 140 470 138 139 471 137 124 472 122 125 473 123 141 474 139 140 475 138 125 476 123 126 477 124 142 478 140 141 479 139 126 480 124 127 481 125 143 482 141 142 483 140 127 484 125 112 485 110 128 486 126 143 487 141 128 488 126 129 489 127 145 490 143 144 491 142 129 492 127 130 493 128 146 494 144 145 495 143 130 496 128 131 497 129 147 498 145 146 499 144 131 500 129 132 501 130 148 502 146 147 503 145 132 504 130 133 505 131 149 506 147 148 507 146 133 508 131 134 509 132 150 510 148 149 511 147 134 512 132 135 513 133 151 514 149 150 515 148 135 516 133 136 517 134 152 518 150 151 519 149 136 520 134 137 521 135 153 522 151 152 523 150 137 524 135 138 525 136 154 526 152 153 527 151 138 528 136 139 529 137 155 530 153 154 531 152 139 532 137 140 533 138 156 534 154 155 535 153 140 536 138 141 537 139 157 538 155 156 539 154 141 540 139 142 541 140 158 542 156 157 543 155 142 544 140 143 545 141 159 546 157 158 547 156 143 548 141 128 549 126 144 550 142 159 551 157 144 552 142 145 553 143 161 554 159 160 555 158 145 556 143 146 557 144 162 558 160 161 559 159 146 560 144 147 561 145 163 562 161 162 563 160 147 564 145 148 565 146 164 566 162 163 567 161 148 568 146 149 569 147 165 570 163 164 571 162 149 572 147 150 573 148 166 574 164 165 575 163 150 576 148 151 577 149 167 578 165 166 579 164 151 580 149 152 581 150 168 582 166 167 583 165 152 584 150 153 585 151 169 586 167 168 587 166 153 588 151 154 589 152 170 590 168 169 591 167 154 592 152 155 593 153 171 594 169 170 595 168 155 596 153 156 597 154 172 598 170 171 599 169 156 600 154 157 601 155 173 602 171 172 603 170 157 604 155 158 605 156 174 606 172 173 607 171 158 608 156 159 609 157 175 610 173 174 611 172 159 612 157 144 613 142 160 614 158 175 615 173 160 616 312 161 617 313 177 618 314 176 619 315 161 620 313 162 621 316 178 622 317 177 623 314 162 624 316 163 625 318 179 626 319 178 627 317 163 628 318 164 629 320 180 630 321 179 631 319 164 632 320 165 633 322 181 634 323 180 635 321 165 636 322 166 637 324 182 638 325 181 639 323 166 640 324 167 641 326 183 642 327 182 643 325 167 644 326 168 645 328 184 646 329 183 647 327 168 648 328 169 649 330 185 650 331 184 651 329 169 652 330 170 653 332 186 654 333 185 655 331 170 656 332 171 657 220 187 658 219 186 659 333 171 660 220 172 661 218 188 662 217 187 663 219 172 664 218 173 665 216 189 666 215 188 667 217 173 668 216 174 669 214 190 670 213 189 671 215 174 672 214 175 673 212 191 674 211 190 675 213 175 676 212 160 677 312 176 678 315 191 679 211 176 680 174 177 681 175 193 682 176 192 683 177 177 684 175 178 685 178 194 686 179 193 687 176 178 688 178 179 689 180 195 690 181 194 691 179 179 692 180 180 693 182 196 694 183 195 695 181 180 696 182 181 697 185 197 698 186 196 699 183 181 700 341 182 701 342 198 702 343 197 703 344 182 704 342 183 705 187 199 706 188 198 707 343 183 708 187 184 709 189 200 710 190 199 711 188 184 712 189 185 713 191 201 714 192 200 715 190 185 716 191 186 717 193 202 718 194 201 719 192 186 720 193 187 721 195 203 722 196 202 723 194 187 724 195 188 725 197 204 726 199 203 727 196 188 728 197 189 729 200 205 730 201 204 731 199 189 732 200 190 733 202 206 734 203 205 735 201 190 736 202 191 737 240 207 738 242 206 739 203 191 740 240 176 741 174 192 742 177 207 743 242</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pCylinderShape7</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"pCylinderShape8\" name=\"pCylinderShape8\">\r\n      <mesh>\r\n        <source id=\"pCylinderShape8-positions\" name=\"pCylinderShape8-positions\">\r\n          <float_array id=\"pCylinderShape8-positions-array\" count=\"627\">-1.710258 -3.420027 -1.432003 -1.710258 -2.608862 -2.645996 -1.710258 -1.394869 -3.457165 -1.710258 0.03713608 -3.742008 -1.710258 1.469141 -3.457167 -1.710258 2.683135 -2.646 -1.710258 3.4943 -1.432011 -1.710258 3.779145 0 -1.710258 3.494302 1.431999 -1.710258 2.683137 2.645996 -1.710258 1.469143 3.457165 -1.710258 0.03713799 3.742008 -1.710258 -1.394867 3.457165 -1.710258 -2.60886 2.646 -1.710258 -3.420025 1.432007 -1.710258 -3.70487 0 1.710842 -3.420027 -1.432003 1.710842 -2.608862 -2.645996 1.710842 -1.394869 -3.457165 1.710842 0.03713608 -3.742008 1.710842 1.469141 -3.457167 1.710842 2.683135 -2.646 1.710842 3.4943 -1.432011 1.710842 3.779145 0 1.710842 3.494302 1.431999 1.710842 2.683137 2.645996 1.710842 1.469143 3.457165 1.710842 0.03713799 3.742008 1.710842 -1.394867 3.457165 1.710842 -2.60886 2.646 1.710842 -3.420025 1.432007 1.710842 -3.70487 0 1.710258 -3.671785 -1.536285 1.710258 -2.80155 -2.838684 1.710258 -1.499149 -3.708923 1.710258 0.03713608 -4.014509 1.710258 1.573421 -3.708925 1.710258 2.875823 -2.838688 1.710258 3.746058 -1.536293 1.710258 4.051647 0 1.710258 3.74606 1.536282 1.710258 2.875825 2.838684 1.710258 1.573423 3.70892 1.710258 0.03713799 4.014507 1.710258 -1.499147 3.70892 1.710258 -2.801548 2.838688 1.710258 -3.671783 1.536289 1.710258 -3.977371 0 1.859718 -3.671785 -1.536285 1.859718 -2.80155 -2.838684 1.859718 -1.499149 -3.708923 1.859718 0.03713608 -4.014509 1.859718 1.573421 -3.708925 1.859718 2.875823 -2.838688 1.859718 3.746058 -1.536293 1.859718 4.051647 0 1.859718 3.74606 1.536282 1.859718 2.875825 2.838684 1.859718 1.573423 3.70892 1.859718 0.03713799 4.014507 1.859718 -1.499147 3.70892 1.859718 -2.801548 2.838688 1.859718 -3.671783 1.536289 1.859718 -3.977371 0 1.859718 -4.794651 -2.001392 1.859718 -3.660954 -3.698088 1.859718 -1.964256 -4.831787 1.859718 0.03713608 -5.229889 1.859718 2.038526 -4.831789 1.859718 3.735227 -3.698093 1.859718 4.868923 -2.0014 1.859718 5.267027 0 1.859718 4.868927 2.001389 1.859718 3.735229 3.698082 1.859718 2.038527 4.831783 1.859718 0.03713799 5.229889 1.859718 -1.964252 4.831783 1.859718 -3.660952 3.69809 1.859718 -4.794647 2.001396 1.859718 -5.192751 0 2.357922 -4.794651 -2.001392 2.357922 -3.660954 -3.698088 2.357922 -1.964256 -4.831787 2.357922 0.03713608 -5.229889 2.357922 2.038526 -4.831789 2.357922 3.735227 -3.698093 2.357922 4.868923 -2.0014 2.357922 5.267027 0 2.357922 4.868927 2.001389 2.357922 3.735229 3.698082 2.357922 2.038527 4.831783 2.357922 0.03713799 5.229889 2.357922 -1.964252 4.831783 2.357922 -3.660952 3.69809 2.357922 -4.794647 2.001396 2.357922 -5.192751 0 2.357922 -4.64819 -1.940727 2.357922 -3.548857 -3.585991 2.357922 -1.903591 -4.685328 2.357922 0.03713608 -5.071362 2.357922 1.97786 -4.685328 2.357922 3.62313 -3.585997 2.357922 4.722462 -1.940735 2.357922 5.1085 0 2.357922 4.722466 1.940723 2.357922 3.623132 3.585987 2.357922 1.977862 4.685322 2.357922 0.03713799 5.071362 2.357922 -1.903587 4.685322 2.357922 -3.548855 3.585995 2.357922 -4.648186 1.940731 2.357922 -5.034224 0 2.233372 -4.64819 -1.940727 2.233372 -3.548857 -3.585991 2.233372 -1.903591 -4.685328 2.233372 0.03713608 -5.071362 2.233372 1.97786 -4.685328 2.233372 3.62313 -3.585997 2.233372 4.722462 -1.940735 2.233372 5.1085 0 2.233372 4.722466 1.940723 2.233372 3.623132 3.585987 2.233372 1.977862 4.685322 2.233372 0.03713799 5.071362 2.233372 -1.903587 4.685322 2.233372 -3.548855 3.585995 2.233372 -4.648186 1.940731 2.233372 -5.034224 0 2.457565 -4.340088 -1.813107 2.457565 -3.313046 -3.35018 2.457565 -1.77597 -4.377226 2.457565 0.03713608 -4.737875 2.457565 1.850243 -4.377226 2.457565 3.387319 -3.350185 2.457565 4.41436 -1.813114 2.457565 4.775013 0 2.457565 4.414364 1.813103 2.457565 3.387321 3.350178 2.457565 1.850243 4.37722 2.457565 0.03713799 4.737873 2.457565 -1.775967 4.37722 2.457565 -3.313044 3.350185 2.457565 -4.340084 1.81311 2.457565 -4.700737 0 2.233372 -4.049103 -1.692577 2.233372 -3.090336 -3.12747 2.233372 -1.655441 -4.086241 2.233372 0.03713608 -4.422915 2.233372 1.729713 -4.086241 2.233372 3.164609 -3.127476 2.233372 4.123375 -1.692585 2.233372 4.460052 0 2.233372 4.123379 1.692574 2.233372 3.164611 3.127472 2.233372 1.729713 4.086235 2.233372 0.03713799 4.422913 2.233372 -1.655437 4.086235 2.233372 -3.090334 3.127476 2.233372 -4.049099 1.692581 2.233372 -4.385777 0 2.357922 -4.049103 -1.692577 2.357922 -3.090336 -3.12747 2.357922 -1.655441 -4.086241 2.357922 0.03713608 -4.422915 2.357922 1.729713 -4.086241 2.357922 3.164609 -3.127476 2.357922 4.123375 -1.692585 2.357922 4.460052 0 2.357922 4.123379 1.692574 2.357922 3.164611 3.127472 2.357922 1.729713 4.086235 2.357922 0.03713799 4.422913 2.357922 -1.655437 4.086235 2.357922 -3.090334 3.127476 2.357922 -4.049099 1.692581 2.357922 -4.385777 0 2.357922 -3.295965 -1.380619 2.357922 -2.513908 -2.551041 2.357922 -1.343481 -3.333103 2.357922 0.03713608 -3.607725 2.357922 1.417753 -3.333103 2.357922 2.588183 -2.551048 2.357922 3.370236 -1.380623 2.357922 3.644862 0 2.357922 3.37024 1.380615 2.357922 2.588183 2.551044 2.357922 1.417753 3.333099 2.357922 0.03713799 3.607723 2.357922 -1.343477 3.333099 2.357922 -2.513908 2.551048 2.357922 -3.295961 1.380619 2.357922 -3.570587 0 -4.909431 -3.295965 -1.380619 -4.83987 -2.513908 -2.551041 -7.220838 0.03713799 -1.381634 -4.83987 -1.343481 -3.333103 -4.839869 0.03713608 -3.607725 -4.839869 1.417753 -3.333103 -4.839869 2.588183 -2.551048 -4.901881 3.370236 -1.380623 -4.91776 3.644862 0 -4.901924 3.37024 1.380615 -4.856743 2.588183 2.551044 -4.839855 1.417753 3.333099 -4.839869 0.03713799 3.607723 -4.83987 -1.343477 3.333099 -4.859996 -2.513908 2.551048 -4.909348 -3.29571 1.386089 -4.926734 -3.570587 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pCylinderShape8-positions-array\" count=\"209\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pCylinderShape8-normals\" name=\"pCylinderShape8-normals\">\r\n          <float_array id=\"pCylinderShape8-normals-array\" count=\"2232\">0 -0.9238794 -0.3826837 0 -0.7071075 -0.707106 0 -0.7071075 -0.707106 0 -0.9238794 -0.3826837 0 -0.3826846 -0.9238791 0 -0.3826846 -0.9238791 0 0 -1 0 0 -1 0 0.3826833 -0.9238796 0 0.3826833 -0.9238796 0 0.7071065 -0.7071071 0 0.7071065 -0.7071071 0 0.923879 -0.3826846 0 0.923879 -0.3826846 0 1 0 0 1 0 0 0.9238798 0.382683 0 0.9238798 0.382683 0 0.707108 0.7071056 0 0.707108 0.7071056 0 0.3826844 0.9238791 0 0.3826844 0.9238791 0 0 0.9999999 0 0 0.9999999 0 -0.3826836 0.9238794 0 -0.3826836 0.9238794 0 -0.7071068 0.7071068 0 -0.7071068 0.7071068 0 -0.9238793 0.3826841 0 -0.9238793 0.3826841 0 -1 0 0 -1 0 0.7549481 0.5236539 0.3947659 0.7368785 0.4611563 0.4943126 0.7824303 -3.66722e-4 0.6227381 0.6992572 0.270726 0.6616243 0.6829499 0 0.7304653 0.6992567 -0.2707243 0.6616255 0.7372758 -0.4622796 0.4926682 0.7553784 -0.5256624 0.3912578 -0.9999976 0.001815701 0.001213238 -0.9999976 0.001815701 0.001213238 -0.9999976 0.001815701 0.001213238 -0.9999976 0.001815701 0.001213238 -0.9999977 0.001213145 0.00181574 -0.9999977 0.001213145 0.00181574 -0.9999977 0.001213145 0.00181574 -0.9999977 0.001213145 0.00181574 -0.9999976 4.26071e-4 0.002141816 -0.9999976 4.26071e-4 0.002141816 -0.9999976 4.26071e-4 0.002141816 -0.9999976 4.26071e-4 0.002141816 -0.9999977 -4.26072e-4 0.002141818 -0.9999977 -4.26072e-4 0.002141818 -0.9999977 -4.26072e-4 0.002141818 -0.9999977 -4.26072e-4 0.002141818 -0.9999976 -0.001213219 0.001815743 -0.9999976 -0.001213219 0.001815743 -0.9999976 -0.001213219 0.001815743 -0.9999976 -0.001213219 0.001815743 -0.9999977 -0.001815779 0.001213241 -0.9999977 -0.001815779 0.001213241 -0.9999977 -0.001815779 0.001213241 -0.9999977 -0.001815779 0.001213241 -0.9999976 -0.002141696 4.26035e-4 -0.9999976 -0.002141696 4.26035e-4 -0.9999976 -0.002141696 4.26035e-4 -0.9999976 -0.002141696 4.26035e-4 -0.9999976 -0.002141702 -4.26033e-4 -0.9999976 -0.002141702 -4.26033e-4 -0.9999976 -0.002141702 -4.26033e-4 -0.9999976 -0.002141702 -4.26033e-4 -0.9999977 -0.001815697 -0.001213235 -0.9999977 -0.001815697 -0.001213235 -0.9999977 -0.001815697 -0.001213235 -0.9999977 -0.001815697 -0.001213235 -0.9999977 -0.001213152 -0.001815753 -0.9999977 -0.001213152 -0.001815753 -0.9999977 -0.001213152 -0.001815753 -0.9999977 -0.001213152 -0.001815753 -0.9999977 -4.26002e-4 -0.002141837 -0.9999977 -4.26002e-4 -0.002141837 -0.9999977 -4.26002e-4 -0.002141837 -0.9999977 -4.26002e-4 -0.002141837 -0.9999976 4.26076e-4 -0.002141838 -0.9999976 4.26076e-4 -0.002141838 -0.9999976 4.26076e-4 -0.002141838 -0.9999976 4.26076e-4 -0.002141838 -0.9999976 0.001213302 -0.001815754 -0.9999976 0.001213302 -0.001815754 -0.9999976 0.001213302 -0.001815754 -0.9999976 0.001213302 -0.001815754 -0.9999976 0.001815775 -0.001213238 -0.9999976 0.001815775 -0.001213238 -0.9999976 0.001815775 -0.001213238 -0.9999976 0.001815775 -0.001213238 -0.9999976 0.0021417 -4.26035e-4 -0.9999976 0.0021417 -4.26035e-4 -0.9999976 0.0021417 -4.26035e-4 -0.9999976 0.0021417 -4.26035e-4 -0.9999976 0.002141706 4.26033e-4 -0.9999976 0.002141706 4.26033e-4 -0.9999976 0.002141706 4.26033e-4 -0.9999976 0.002141706 4.26033e-4 0 -0.8314694 -0.5555707 0 -0.8314694 -0.5555707 0 -0.8314694 -0.5555707 0 -0.8314694 -0.5555707 0 -0.5555716 -0.8314688 0 -0.5555716 -0.8314688 0 -0.5555716 -0.8314688 0 -0.5555716 -0.8314688 0 -0.1950902 -0.9807853 0 -0.1950902 -0.9807853 0 -0.1950902 -0.9807853 0 -0.1950902 -0.9807853 0 0.195089 -0.9807855 0 0.195089 -0.9807855 0 0.195089 -0.9807855 0 0.195089 -0.9807855 0 0.5555705 -0.8314694 0 0.5555705 -0.8314694 0 0.5555705 -0.8314694 0 0.5555705 -0.8314694 0 0.8314689 -0.5555714 0 0.8314689 -0.5555714 0 0.8314689 -0.5555714 0 0.8314689 -0.5555714 0 0.9807852 -0.1950912 0 0.9807852 -0.1950912 0 0.9807852 -0.1950912 0 0.9807852 -0.1950912 0 0.9807852 0.1950908 0 0.9807852 0.1950908 0 0.9807852 0.1950908 0 0.9807852 0.1950908 0 0.8314703 0.5555693 0 0.8314703 0.5555693 0 0.8314703 0.5555693 0 0.8314703 0.5555693 0 0.5555698 0.83147 0 0.5555698 0.83147 0 0.5555698 0.83147 0 0.5555698 0.83147 0 0.1950912 0.9807851 0 0.1950912 0.9807851 0 0.1950912 0.9807851 0 0.1950912 0.9807851 0 -0.1950912 0.9807852 0 -0.1950912 0.9807852 0 -0.1950912 0.9807852 0 -0.1950912 0.9807852 0 -0.555568 0.8314712 0 -0.555568 0.8314712 0 -0.555568 0.8314712 0 -0.555568 0.8314712 0 -0.8314694 0.5555707 0 -0.8314694 0.5555707 0 -0.8314694 0.5555707 0 -0.8314694 0.5555707 0 -0.9807852 0.195091 0 -0.9807852 0.195091 0 -0.9807852 0.195091 0 -0.9807852 0.195091 0 -0.9807853 -0.1950903 0 -0.9807853 -0.1950903 0 -0.9807853 -0.1950903 0 -0.9807853 -0.1950903 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -0.8314692 -0.555571 0 -0.8314692 -0.555571 0 -0.8314692 -0.555571 0 -0.8314692 -0.555571 0 -0.5555712 -0.831469 0 -0.5555712 -0.831469 0 -0.5555712 -0.831469 0 -0.5555712 -0.831469 0 -0.1950904 -0.9807854 0 -0.1950904 -0.9807854 0 -0.1950904 -0.9807854 0 -0.1950904 -0.9807854 0 0.1950897 -0.9807854 0 0.1950897 -0.9807854 0 0.1950897 -0.9807854 0 0.1950897 -0.9807854 0 0.5555689 -0.8314707 0 0.5555689 -0.8314707 0 0.5555689 -0.8314707 0 0.5555689 -0.8314707 0 0.8314691 -0.5555711 0 0.8314691 -0.5555711 0 0.8314691 -0.5555711 0 0.8314691 -0.5555711 0 0.9807853 -0.195091 0 0.9807853 -0.195091 0 0.9807853 -0.195091 0 0.9807853 -0.195091 0 0.9807855 0.1950895 0 0.9807855 0.1950895 0 0.9807855 0.1950895 0 0.9807855 0.1950895 0 0.8314686 0.5555717 0 0.8314686 0.5555717 0 0.8314686 0.5555717 0 0.8314686 0.5555717 0 0.555571 0.8314692 0 0.555571 0.8314692 0 0.555571 0.8314692 0 0.555571 0.8314692 0 0.1950925 0.9807849 0 0.1950925 0.9807849 0 0.1950925 0.9807849 0 0.1950925 0.9807849 0 -0.1950924 0.9807849 0 -0.1950924 0.9807849 0 -0.1950924 0.9807849 0 -0.1950924 0.9807849 0 -0.5555687 0.8314707 0 -0.5555687 0.8314707 0 -0.5555687 0.8314707 0 -0.5555687 0.8314707 0 -0.8314693 0.5555709 0 -0.8314693 0.5555709 0 -0.8314693 0.5555709 0 -0.8314693 0.5555709 0 -0.9807853 0.1950908 0 -0.9807853 0.1950908 0 -0.9807853 0.1950908 0 -0.9807853 0.1950908 0 -0.9807855 -0.1950893 0 -0.9807855 -0.1950893 0 -0.9807855 -0.1950893 0 -0.9807855 -0.1950893 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.8314688 0.5555716 0 0.8314688 0.5555716 0 0.8314688 0.5555716 0 0.8314688 0.5555716 0 0.5555718 0.8314686 0 0.5555718 0.8314686 0 0.5555718 0.8314686 0 0.5555718 0.8314686 0 0.1950899 0.9807854 0 0.1950899 0.9807854 0 0.1950899 0.9807854 0 0.1950899 0.9807854 0 -0.1950901 0.9807854 0 -0.1950901 0.9807854 0 -0.1950901 0.9807854 0 -0.1950901 0.9807854 0 -0.5555696 0.8314701 0 -0.5555696 0.8314701 0 -0.5555696 0.8314701 0 -0.5555696 0.8314701 0 -0.831469 0.5555713 0 -0.831469 0.5555713 0 -0.831469 0.5555713 0 -0.831469 0.5555713 0 -0.9807851 0.1950916 0 -0.9807851 0.1950916 0 -0.9807851 0.1950916 0 -0.9807851 0.1950916 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.8314686 -0.5555719 0 -0.8314686 -0.5555719 0 -0.8314686 -0.5555719 0 -0.8314686 -0.5555719 0 -0.5555702 -0.8314696 0 -0.5555702 -0.8314696 0 -0.5555702 -0.8314696 0 -0.5555702 -0.8314696 0 -0.1950932 -0.9807848 0 -0.1950932 -0.9807848 0 -0.1950932 -0.9807848 0 -0.1950932 -0.9807848 0 0.1950931 -0.9807847 0 0.1950931 -0.9807847 0 0.1950931 -0.9807847 0 0.1950931 -0.9807847 0 0.555568 -0.8314711 0 0.555568 -0.8314711 0 0.555568 -0.8314711 0 0.555568 -0.8314711 0 0.8314692 -0.5555709 0 0.8314692 -0.5555709 0 0.8314692 -0.5555709 0 0.8314692 -0.5555709 0 0.9807851 -0.1950916 0 0.9807851 -0.1950916 0 0.9807851 -0.1950916 0 0.9807851 -0.1950916 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0.824834 -0.4700917 -0.314106 0.824834 -0.4700917 -0.314106 0.824834 -0.4700917 -0.314106 0.824834 -0.4700917 -0.314106 0.8248343 -0.3141064 -0.4700913 0.8248343 -0.3141064 -0.4700913 0.8248343 -0.3141064 -0.4700913 0.8248343 -0.3141064 -0.4700913 0.8248335 -0.1102992 -0.5545122 0.8248335 -0.1102992 -0.5545122 0.8248335 -0.1102992 -0.5545122 0.8248335 -0.1102992 -0.5545122 0.8248332 0.1102993 -0.5545129 0.8248332 0.1102993 -0.5545129 0.8248332 0.1102993 -0.5545129 0.8248332 0.1102993 -0.5545129 0.8248335 0.3141057 -0.4700931 0.8248335 0.3141057 -0.4700931 0.8248335 0.3141057 -0.4700931 0.8248335 0.3141057 -0.4700931 0.8248342 0.4700916 -0.314106 0.8248342 0.4700916 -0.314106 0.8248342 0.4700916 -0.314106 0.8248342 0.4700916 -0.314106 0.8248336 0.5545118 -0.1103002 0.8248336 0.5545118 -0.1103002 0.8248336 0.5545118 -0.1103002 0.8248336 0.5545118 -0.1103002 0.8248338 0.5545119 0.1102992 0.8248338 0.5545119 0.1102992 0.8248338 0.5545119 0.1102992 0.8248338 0.5545119 0.1102992 0.8248338 0.4700921 0.3141066 0.8248338 0.4700921 0.3141066 0.8248338 0.4700921 0.3141066 0.8248338 0.4700921 0.3141066 0.8248331 0.3141063 0.4700933 0.8248331 0.3141063 0.4700933 0.8248331 0.3141063 0.4700933 0.8248331 0.3141063 0.4700933 0.8248346 0.1103004 0.5545104 0.8248346 0.1103004 0.5545104 0.8248346 0.1103004 0.5545104 0.8248346 0.1103004 0.5545104 0.8248346 -0.1103004 0.5545103 0.8248346 -0.1103004 0.5545103 0.8248346 -0.1103004 0.5545103 0.8248346 -0.1103004 0.5545103 0.8248335 -0.3141044 0.4700938 0.8248335 -0.3141044 0.4700938 0.8248335 -0.3141044 0.4700938 0.8248335 -0.3141044 0.4700938 0.8248337 -0.4700924 0.3141059 0.8248337 -0.4700924 0.3141059 0.8248337 -0.4700924 0.3141059 0.8248337 -0.4700924 0.3141059 0.8248336 -0.5545118 0.1103 0.8248336 -0.5545118 0.1103 0.8248336 -0.5545118 0.1103 0.8248336 -0.5545118 0.1103 0.8248338 -0.5545119 -0.1102992 0.8248338 -0.5545119 -0.1102992 0.8248338 -0.5545119 -0.1102992 0.8248338 -0.5545119 -0.1102992 0.8093168 0.488382 0.3263272 0.8093168 0.488382 0.3263272 0.8093168 0.488382 0.3263272 0.8093168 0.488382 0.3263272 0.8093172 0.3263276 0.4883811 0.8093172 0.3263276 0.4883811 0.8093172 0.3263276 0.4883811 0.8093172 0.3263276 0.4883811 0.8093178 0.1145903 0.576085 0.8093178 0.1145903 0.576085 0.8093178 0.1145903 0.576085 0.8093178 0.1145903 0.576085 0.8093177 -0.1145904 0.576085 0.8093177 -0.1145904 0.576085 0.8093177 -0.1145904 0.576085 0.8093177 -0.1145904 0.576085 0.8093172 -0.3263259 0.4883822 0.8093172 -0.3263259 0.4883822 0.8093172 -0.3263259 0.4883822 0.8093172 -0.3263259 0.4883822 0.809317 -0.4883815 0.3263272 0.809317 -0.4883815 0.3263272 0.809317 -0.4883815 0.3263272 0.809317 -0.4883815 0.3263272 0.8093176 -0.5760849 0.1145913 0.8093176 -0.5760849 0.1145913 0.8093176 -0.5760849 0.1145913 0.8093176 -0.5760849 0.1145913 0.8093176 -0.5760852 -0.1145904 0.8093176 -0.5760852 -0.1145904 0.8093176 -0.5760852 -0.1145904 0.8093176 -0.5760852 -0.1145904 0.8093159 -0.4883832 -0.3263275 0.8093159 -0.4883832 -0.3263275 0.8093159 -0.4883832 -0.3263275 0.8093159 -0.4883832 -0.3263275 0.8093156 -0.326327 -0.4883841 0.8093156 -0.326327 -0.4883841 0.8093156 -0.326327 -0.4883841 0.8093156 -0.326327 -0.4883841 0.8093176 -0.1145916 -0.576085 0.8093176 -0.1145916 -0.576085 0.8093176 -0.1145916 -0.576085 0.8093176 -0.1145916 -0.576085 0.8093176 0.1145916 -0.5760848 0.8093176 0.1145916 -0.5760848 0.8093176 0.1145916 -0.5760848 0.8093176 0.1145916 -0.5760848 0.8093169 0.3263247 -0.4883833 0.8093169 0.3263247 -0.4883833 0.8093169 0.3263247 -0.4883833 0.8093169 0.3263247 -0.4883833 0.809317 0.4883823 -0.3263265 0.809317 0.4883823 -0.3263265 0.809317 0.4883823 -0.3263265 0.809317 0.4883823 -0.3263265 0.8093176 0.5760849 -0.1145912 0.8093176 0.5760849 -0.1145912 0.8093176 0.5760849 -0.1145912 0.8093176 0.5760849 -0.1145912 0.8093176 0.5760852 0.1145903 0.8093176 0.5760852 0.1145903 0.8093176 0.5760852 0.1145903 0.8093176 0.5760852 0.1145903 0 -0.8314691 -0.555571 0 -0.8314691 -0.555571 0 -0.8314691 -0.555571 0 -0.8314691 -0.555571 0 -0.5555723 -0.8314683 0 -0.5555723 -0.8314683 0 -0.5555723 -0.8314683 0 -0.5555723 -0.8314683 0 -0.19509 -0.9807854 0 -0.19509 -0.9807854 0 -0.19509 -0.9807854 0 -0.19509 -0.9807854 0 0.19509 -0.9807854 0 0.19509 -0.9807854 0 0.19509 -0.9807854 0 0.19509 -0.9807854 0 0.5555698 -0.83147 0 0.5555698 -0.83147 0 0.5555698 -0.83147 0 0.5555698 -0.83147 0 0.8314691 -0.5555712 0 0.8314691 -0.5555712 0 0.8314691 -0.5555712 0 0.8314691 -0.5555712 0 0.9807851 -0.1950918 0 0.9807851 -0.1950918 0 0.9807851 -0.1950918 0 0.9807851 -0.1950918 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0 0.9807854 0.1950901 0 0.8314698 0.5555699 0 0.8314698 0.5555699 0 0.8314698 0.5555699 0 0.8314698 0.5555699 0 0.5555685 0.8314708 0 0.5555685 0.8314708 0 0.5555685 0.8314708 0 0.5555685 0.8314708 0 0.1950921 0.980785 0 0.1950921 0.980785 0 0.1950921 0.980785 0 0.1950921 0.980785 0 -0.1950921 0.980785 0 -0.1950921 0.980785 0 -0.1950921 0.980785 0 -0.1950921 0.980785 0 -0.5555672 0.8314717 0 -0.5555672 0.8314717 0 -0.5555672 0.8314717 0 -0.5555672 0.8314717 0 -0.83147 0.5555698 0 -0.83147 0.5555698 0 -0.83147 0.5555698 0 -0.83147 0.5555698 0 -0.9807851 0.1950918 0 -0.9807851 0.1950918 0 -0.9807851 0.1950918 0 -0.9807851 0.1950918 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 0 -0.9807854 -0.1950901 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.8314677 0.5555732 0 0.8314677 0.5555732 0 0.8314677 0.5555732 0 0.8314677 0.5555732 0 0.5555741 0.831467 0 0.5555741 0.831467 0 0.5555741 0.831467 0 0.5555741 0.831467 0 0.1950904 0.9807853 0 0.1950904 0.9807853 0 0.1950904 0.9807853 0 0.1950904 0.9807853 0 -0.1950904 0.9807853 0 -0.1950904 0.9807853 0 -0.1950904 0.9807853 0 -0.1950904 0.9807853 0 -0.5555695 0.8314702 0 -0.5555695 0.8314702 0 -0.5555695 0.8314702 0 -0.5555695 0.8314702 0 -0.8314698 0.5555702 0 -0.8314698 0.5555702 0 -0.8314698 0.5555702 0 -0.8314698 0.5555702 0 -0.9807848 0.1950927 0 -0.9807848 0.1950927 0 -0.9807848 0.1950927 0 -0.9807848 0.1950927 0 -0.9807854 -0.1950902 0 -0.9807854 -0.1950902 0 -0.9807854 -0.1950902 0 -0.9807854 -0.1950902 0 -0.8314694 -0.5555707 0 -0.8314694 -0.5555707 0 -0.8314694 -0.5555707 0 -0.8314694 -0.5555707 0 -0.5555695 -0.8314701 0 -0.5555695 -0.8314701 0 -0.5555695 -0.8314701 0 -0.5555695 -0.8314701 0 -0.195092 -0.980785 0 -0.195092 -0.980785 0 -0.195092 -0.980785 0 -0.195092 -0.980785 0 0.195092 -0.980785 0 0.195092 -0.980785 0 0.195092 -0.980785 0 0.195092 -0.980785 0 0.5555674 -0.8314715 0 0.5555674 -0.8314715 0 0.5555674 -0.8314715 0 0.5555674 -0.8314715 -1.95688e-4 0.8309126 -0.556403 -1.95688e-4 0.8309126 -0.556403 -1.95688e-4 0.8309126 -0.556403 -1.95688e-4 0.8309126 -0.556403 0 0.9808416 -0.1948072 0 0.9808416 -0.1948072 0 0.9808416 -0.1948072 0 0.9808416 -0.1948072 0 0.9807854 0.1950903 0 0.9807854 0.1950903 0 0.9807854 0.1950903 0 0.9807854 0.1950903</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pCylinderShape8-normals-array\" count=\"744\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"pCylinderShape8-map1\" name=\"pCylinderShape8-map1\">\r\n          <float_array id=\"pCylinderShape8-map1-array\" count=\"724\">0.8178095 0.7061449 0.8178093 0.757681 0.4906816 0.757681 0.4906816 0.7061449 0.8178093 0.8092172 0.4906815 0.8092172 0.8178093 0.8607535 0.4906816 0.8607535 0.8178093 0.9122897 0.4906815 0.9122897 0.8178093 0.1392465 0.8178092 0.1907827 0.4906815 0.1907826 0.8178093 0.242319 0.4906815 0.242319 0.8178094 0.2938551 0.4906815 0.2938551 0.8178093 0.3453913 0.4906815 0.3453913 0.8178093 0.3969276 0.4906815 0.3969276 0.8178093 0.4484638 0.4906816 0.4484638 0.8178093 0.5000001 0.4906816 0.5000001 0.8178094 0.5515362 0.4906816 0.5515362 0.8178094 0.6030724 0.4906816 0.6030724 0.8178093 0.6546087 0.4906816 0.6546087 0.4907374 0.7061449 0.4907374 0.757681 0.6772701 0.655266 0.6772423 0.7074511 0.8627524 0.923388 0.4764483 0.757681 0.4764483 0.7061449 0.4907374 0.8092173 0.6772423 0.7580713 0.6772423 0.8102369 0.6772423 0.861626 0.6772423 0.9130224 0.6772671 0.9633686 0.4764483 0.8092173 0.4907374 0.8607535 0.4764483 0.8607535 0.4907374 0.9122896 0.4764482 0.9122896 0.4907373 0.1907827 0.4764484 0.1907826 0.4907373 0.242319 0.4764483 0.242319 0.4907373 0.2938551 0.4764483 0.2938552 0.4907373 0.3453913 0.4764484 0.3453913 0.4907374 0.3969276 0.4764484 0.3969277 0.4907374 0.4484638 0.4764483 0.4484638 0.4907374 0.5000001 0.4764484 0.5000001 0.4907374 0.5515363 0.4764484 0.5515362 0.4907374 0.6030724 0.7930033 0.6685767 0.4764484 0.6030723 0.4907373 0.6546087 0.4764484 0.6546087 0.4764484 0.7061449 0.4764484 0.757681 0.428818 0.757681 0.7963877 0.6635118 0.7955837 0.6627079 0.791953 0.6681416 0.8014526 0.6601275 0.428818 0.7061449 0.4764484 0.8092173 0.428818 0.8092173 0.4764483 0.8607535 0.428818 0.8607535 0.4764482 0.9122896 0.4288179 0.9122897 0.4764483 0.1907826 0.428818 0.1907826 0.4764483 0.242319 0.8010175 0.659077 0.8074272 0.658939 0.807427 0.6578022 0.8134016 0.6601275 0.4288179 0.242319 0.4764484 0.2938552 0.4288179 0.2938552 0.4764484 0.3453913 0.4288179 0.3453913 0.4764484 0.3969277 0.428818 0.3969276 0.4764483 0.4484638 0.428818 0.4484638 0.4764484 0.5000001 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6443562 0.9035443 0.6104854 0.9542354 0.5597942 0.9881062 0.5 1 0.4402057 0.9881061 0.3895145 0.9542354 0.3556438 0.9035442 0.34375 0.8437499 0.3556438 0.7839557 0.3895146 0.7332645 0.4402058 0.6993938 0.5000001 0.6875 0.5597944 0.6993939 0.6104855 0.7332646 0.6443562 0.7839558 0.65625 0.84375 0.6030523 0.6546085 0.6030523 0.7061445 0.7735711 0.7061445 0.773571 0.6546085 0.6030524 0.7576808 0.7735711 0.7576808 0.6030523 0.809217 0.773571 0.8092171 0.6030523 0.8607533 0.773571 0.8607533 0.428818 0.5000001 0.6030523 0.9122895 0.7735711 0.9122895 0.6030523 0.1907825 0.773571 0.1907826 0.6030523 0.2423188 0.773571 0.2423189 0.6030523 0.2938549 0.773571 0.2938549 0.6030523 0.3453912 0.773571 0.3453912 0.6030523 0.3969274 0.773571 0.3969274 0.6030523 0.4484636 0.8138368 0.659077 0.773571 0.4484636 0.6030523 0.4999998 0.773571 0.4999998 0.6030523 0.5515359 0.773571 0.5515359 0.4764484 0.5515363 0.428818 0.5515363 0.8184666 0.6635118 0.4764484 0.6030723 0.428818 0.6030724 0.4764484 0.6546087 0.428818 0.6546087 0.7923752 0.6745512 0.788974 0.6745512 0.793521 0.6803114 0.7903787 0.6816131 0.7967839 0.6851946 0.7943789 0.6875995 0.801667 0.6884574 0.8003654 0.6915996 0.8074272 0.6896032 0.807427 0.6930043 0.8192706 0.6627079 0.8218509 0.6685767 0.8229012 0.6681416 0.8230393 0.6745512 0.8241763 0.6745512 0.8218509 0.6805258 0.8229012 0.6809608 0.8184667 0.6855907 0.8192706 0.6863946 0.8134017 0.6889751 0.8138367 0.6900253 0.807427 0.6901635 0.807427 0.6913004 0.8014527 0.688975 0.8010175 0.6900254 0.7963877 0.6855909 0.7955837 0.6863947 0.7930034 0.6805258 0.791953 0.6809609 0.6030523 0.6030722 0.7918149 0.6745512 0.7735711 0.6030722 0.790678 0.6745512 0.428818 0.08771032 0.791953 0.6681416 0.7955837 0.6627079 0.7919983 0.6591222 0.7872682 0.6662011 0.8010175 0.659077 0.799077 0.6543924 0.807427 0.6578022 0.807427 0.6527314 0.428818 0.1392465 0.4764483 0.1392465 0.4764483 0.08771029 0.8138368 0.659077 0.8157772 0.6543924 0.8192706 0.6627079 0.8228561 0.6591222 0.8229012 0.6681416 0.8275861 0.6662011 0.8241763 0.6745512 0.829247 0.6745512 0.8229012 0.6809608 0.8275861 0.6829014 0.8192706 0.6863946 0.8228561 0.6899802 0.8138367 0.6900253 0.8157772 0.6947103 0.807427 0.6913004 0.807427 0.6963712 0.8010175 0.6900254 0.7990771 0.6947103 0.7955837 0.6863947 0.7919983 0.6899803 0.791953 0.6809609 0.7872682 0.6829014 0.790678 0.6745512 0.7856072 0.6745512 0.799077 0.6543924 0.7919983 0.6591222 0.807427 0.6527314 0.8157772 0.6543924 0.8228561 0.6591222 0.8275861 0.6662011 0.7872682 0.6662011 0.792466 0.6595899 0.7878792 0.6664543 0.7993301 0.6550034 0.8074272 0.6533927 0.8155242 0.6550034 0.8223885 0.65959 0.826975 0.6664543 0.829247 0.6745512 0.8285856 0.6745512 0.8275861 0.6829014 0.826975 0.6826482 0.8228561 0.6899802 0.8223884 0.6895125 0.8157772 0.6947103 0.8155241 0.6940992 0.807427 0.6963712 0.807427 0.6957097 0.7990771 0.6947103 0.7993303 0.6940992 0.7919983 0.6899803 0.792466 0.6895126 0.7872682 0.6829014 0.7878793 0.6826483 0.7856072 0.6745512 0.7862687 0.6745512 0.7903788 0.6674895 0.7943789 0.661503 0.7967838 0.6639079 0.7935209 0.6687911 0.8003654 0.6575028 0.801667 0.6606451 0.807427 0.6560982 0.8074272 0.6594993 0.8144889 0.6575028 0.8131873 0.6606451 0.8204755 0.661503 0.8180705 0.6639079 0.8244755 0.6674896 0.8213333 0.6687911 0.8258802 0.6745512 0.8224791 0.6745512 0.8244755 0.6816129 0.8213334 0.6803114 0.8204755 0.6875995 0.8180704 0.6851946 0.8144888 0.6915996 0.8131872 0.6884574 0.8178093 0.08771026 0.4906815 0.1392465 0.4906815 0.08771026 0.4907373 0.08771026 0.4907374 0.1392464 0.4764483 0.1392465 0.4764483 0.08771029 0.6030523 0.08771002 0.6030523 0.1392462 0.773571 0.1392462 0.773571 0.08771002 0.8627524 0.8856401 0.8627524 0.8216449 0.8627524 0.7911426 0.8627524 0.7307359 0.8627524 0.6745158 0.6772423 0.9119597 0.6772423 0.861626 0.6772423 0.8102369 0.6772423 0.7580713 0.6772423 0.7074511</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#pCylinderShape8-map1-array\" count=\"362\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"pCylinderShape8-vertices\" name=\"pCylinderShape8-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#pCylinderShape8-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"198\">\r\n          <input semantic=\"VERTEX\" source=\"#pCylinderShape8-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#pCylinderShape8-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#pCylinderShape8-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>0 0 0 1 1 1 17 2 2 16 3 3 1 1 1 2 4 4 18 5 5 17 2 2 2 4 4 3 6 6 19 7 7 18 5 5 3 6 6 4 8 8 20 9 9 19 7 7 4 8 341 5 10 10 21 11 342 20 9 343 5 10 10 6 12 11 22 13 12 21 11 342 6 12 11 7 14 13 23 15 14 22 13 12 7 14 13 8 16 15 24 17 16 23 15 14 8 16 15 9 18 17 25 19 18 24 17 16 9 18 17 10 20 19 26 21 20 25 19 18 10 20 19 11 22 21 27 23 22 26 21 20 11 22 21 12 24 23 28 25 24 27 23 22 12 24 23 13 26 25 29 27 26 28 25 24 13 26 25 14 28 27 30 29 28 29 27 26 14 28 27 15 30 29 31 31 30 30 29 28 15 30 29 0 0 0 16 3 3 31 31 30 192 32 33 193 33 34 194 34 356 193 33 361 195 35 39 194 34 355 195 35 360 196 36 40 194 34 354 196 36 359 197 37 41 194 34 353 197 37 358 198 38 42 194 34 352 198 38 357 199 39 43 194 34 35 16 40 66 17 41 73 33 42 74 32 43 75 17 44 73 18 45 76 34 46 87 33 47 74 18 48 76 19 49 88 35 50 89 34 51 87 19 52 88 20 53 90 36 54 205 35 55 89 20 56 90 21 57 213 37 58 228 36 59 205 21 60 213 22 61 229 38 62 230 37 63 228 22 64 229 23 65 231 39 66 232 38 67 230 23 68 231 24 69 233 40 70 234 39 71 232 24 72 233 25 73 235 41 74 236 40 75 234 25 76 235 26 77 237 42 78 238 41 79 236 26 80 237 27 81 239 43 82 240 42 83 238 27 84 239 28 85 241 44 86 242 43 87 240 28 88 241 29 89 243 45 90 244 44 91 242 29 92 243 30 93 245 46 94 246 45 95 244 30 96 245 31 97 248 47 98 250 46 99 246 31 100 248 16 101 66 32 102 75 47 103 250 32 104 31 33 105 32 49 106 36 48 107 37 33 108 32 34 109 38 50 110 44 49 111 36 34 112 38 35 113 45 51 114 46 50 115 44 35 116 45 36 117 47 52 118 48 51 119 46 36 120 344 37 121 345 53 122 346 52 123 347 37 124 345 38 125 49 54 126 50 53 127 346 38 128 49 39 129 51 55 130 52 54 131 50 39 132 51 40 133 53 56 134 54 55 135 52 40 136 53 41 137 55 57 138 56 56 139 54 41 140 55 42 141 57 58 142 58 57 143 56 42 144 57 43 145 59 59 146 60 58 147 58 43 148 59 44 149 61 60 150 62 59 151 60 44 152 61 45 153 63 61 154 64 60 155 62 45 156 63 46 157 65 62 158 67 61 159 64 46 160 65 47 161 68 63 162 69 62 163 67 47 164 68 32 165 31 48 166 37 63 167 69 48 168 252 49 169 253 65 170 254 64 171 255 49 172 253 50 173 256 66 174 257 65 175 254 50 176 256 51 177 258 67 178 259 66 179 257 51 180 258 52 181 263 68 182 264 67 183 259 52 184 263 53 185 265 69 186 266 68 187 264 53 188 265 54 189 267 70 190 268 69 191 266 54 192 267 55 193 269 71 194 270 70 195 268 55 196 269 56 197 271 72 198 272 71 199 270 56 200 271 57 201 273 73 202 274 72 203 272 57 204 273 58 205 275 74 206 276 73 207 274 58 208 275 59 209 277 75 210 278 74 211 276 59 212 277 60 213 279 76 214 280 75 215 278 60 216 279 61 217 281 77 218 282 76 219 280 61 220 281 62 221 283 78 222 284 77 223 282 62 224 283 63 225 285 79 226 286 78 227 284 63 228 285 48 229 252 64 230 255 79 231 286 64 232 70 65 233 71 81 234 72 80 235 77 65 236 71 66 237 78 82 238 79 81 239 72 66 240 78 67 241 80 83 242 81 82 243 79 67 244 80 68 245 82 84 246 83 83 247 81 68 248 262 69 249 261 85 250 260 84 251 251 69 252 261 70 253 84 86 254 85 85 255 260 70 256 84 71 257 86 87 258 91 86 259 85 71 260 86 72 261 92 88 262 93 87 263 91 72 264 92 73 265 94 89 266 95 88 267 93 73 268 94 74 269 96 90 270 97 89 271 95 74 272 96 75 273 98 91 274 99 90 275 97 75 276 98 76 277 100 92 278 191 91 279 99 76 280 100 77 281 211 93 282 212 92 283 191 77 284 211 78 285 214 94 286 215 93 287 212 78 288 214 79 289 216 95 290 217 94 291 215 79 292 216 64 293 70 80 294 77 95 295 217 80 296 293 81 297 288 97 298 294 96 299 295 81 300 288 82 301 287 98 302 296 97 303 294 82 304 287 83 305 289 99 306 297 98 307 296 83 308 289 84 309 290 100 310 298 99 311 297 84 312 290 85 313 291 101 314 299 100 315 298 85 316 291 86 317 292 102 318 300 101 319 299 86 320 292 87 321 301 103 322 302 102 323 300 87 324 301 88 325 303 104 326 304 103 327 302 88 328 303 89 329 305 105 330 306 104 331 304 89 332 305 90 333 307 106 334 308 105 335 306 90 336 307 91 337 309 107 338 310 106 339 308 91 340 309 92 341 311 108 342 312 107 343 310 92 344 311 93 345 313 109 346 314 108 347 312 93 348 313 94 349 315 110 350 316 109 351 314 94 352 315 95 353 317 111 354 318 110 355 316 95 356 317 80 357 293 96 358 295 111 359 318 96 360 101 97 361 102 113 362 118 112 363 117 97 364 102 98 365 103 114 366 119 113 367 118 98 368 103 99 369 104 115 370 120 114 371 119 99 372 104 100 373 105 116 374 121 115 375 120 100 376 105 101 377 106 117 378 122 116 379 121 101 380 106 102 381 107 118 382 123 117 383 122 102 384 107 103 385 108 119 386 124 118 387 123 103 388 108 104 389 109 120 390 125 119 391 124 104 392 109 105 393 110 121 394 126 120 395 125 105 396 110 106 397 111 122 398 127 121 399 126 106 400 111 107 401 112 123 402 128 122 403 127 107 404 112 108 405 113 124 406 129 123 407 128 108 408 113 109 409 114 125 410 130 124 411 129 109 412 114 110 413 115 126 414 131 125 415 130 110 416 115 111 417 116 127 418 132 126 419 131 111 420 116 96 421 101 112 422 117 127 423 132 112 424 117 113 425 118 129 426 134 128 427 133 113 428 118 114 429 119 130 430 135 129 431 134 114 432 119 115 433 120 131 434 136 130 435 135 115 436 120 116 437 121 132 438 137 131 439 136 116 440 121 117 441 122 133 442 138 132 443 137 117 444 122 118 445 123 134 446 139 133 447 138 118 448 123 119 449 124 135 450 140 134 451 139 119 452 124 120 453 125 136 454 141 135 455 140 120 456 125 121 457 126 137 458 142 136 459 141 121 460 126 122 461 127 138 462 143 137 463 142 122 464 127 123 465 128 139 466 144 138 467 143 123 468 128 124 469 129 140 470 145 139 471 144 124 472 129 125 473 130 141 474 146 140 475 145 125 476 130 126 477 131 142 478 147 141 479 146 126 480 131 127 481 132 143 482 148 142 483 147 127 484 132 112 485 117 128 486 133 143 487 148 128 488 133 129 489 134 145 490 150 144 491 149 129 492 134 130 493 135 146 494 151 145 495 150 130 496 135 131 497 136 147 498 152 146 499 151 131 500 136 132 501 137 148 502 153 147 503 152 132 504 137 133 505 138 149 506 154 148 507 153 133 508 138 134 509 139 150 510 155 149 511 154 134 512 139 135 513 140 151 514 156 150 515 155 135 516 140 136 517 141 152 518 157 151 519 156 136 520 141 137 521 142 153 522 158 152 523 157 137 524 142 138 525 143 154 526 159 153 527 158 138 528 143 139 529 144 155 530 160 154 531 159 139 532 144 140 533 145 156 534 161 155 535 160 140 536 145 141 537 146 157 538 162 156 539 161 141 540 146 142 541 147 158 542 163 157 543 162 142 544 147 143 545 148 159 546 164 158 547 163 143 548 148 128 549 133 144 550 149 159 551 164 144 552 149 145 553 150 161 554 166 160 555 165 145 556 150 146 557 151 162 558 167 161 559 166 146 560 151 147 561 152 163 562 168 162 563 167 147 564 152 148 565 153 164 566 169 163 567 168 148 568 153 149 569 154 165 570 170 164 571 169 149 572 154 150 573 155 166 574 171 165 575 170 150 576 155 151 577 156 167 578 172 166 579 171 151 580 156 152 581 157 168 582 173 167 583 172 152 584 157 153 585 158 169 586 174 168 587 173 153 588 158 154 589 159 170 590 175 169 591 174 154 592 159 155 593 160 171 594 176 170 595 175 155 596 160 156 597 161 172 598 177 171 599 176 156 600 161 157 601 162 173 602 178 172 603 177 157 604 162 158 605 163 174 606 179 173 607 178 158 608 163 159 609 164 175 610 180 174 611 179 159 612 164 144 613 149 160 614 165 175 615 180 160 616 319 161 617 320 177 618 321 176 619 322 161 620 320 162 621 323 178 622 324 177 623 321 162 624 323 163 625 325 179 626 326 178 627 324 163 628 325 164 629 327 180 630 328 179 631 326 164 632 327 165 633 329 181 634 330 180 635 328 165 636 329 166 637 331 182 638 332 181 639 330 166 640 331 167 641 333 183 642 334 182 643 332 167 644 333 168 645 335 184 646 336 183 647 334 168 648 335 169 649 337 185 650 338 184 651 336 169 652 337 170 653 339 186 654 340 185 655 338 170 656 339 171 657 227 187 658 226 186 659 340 171 660 227 172 661 225 188 662 224 187 663 226 172 664 225 173 665 223 189 666 222 188 667 224 173 668 223 174 669 221 190 670 220 189 671 222 174 672 221 175 673 219 191 674 218 190 675 220 175 676 219 160 677 319 176 678 322 191 679 218 176 680 181 177 681 182 193 682 183 192 683 184 177 684 182 178 685 185 195 686 186 193 687 183 178 688 185 179 689 187 196 690 188 195 691 186 179 692 187 180 693 189 197 694 190 196 695 188 180 696 189 181 697 192 198 698 193 197 699 190 181 700 348 182 701 349 199 702 350 198 703 351 182 704 349 183 705 194 200 706 195 199 707 350 183 708 194 184 709 196 201 710 197 200 711 195 184 712 196 185 713 198 202 714 199 201 715 197 185 716 198 186 717 200 203 718 201 202 719 199 186 720 200 187 721 202 204 722 203 203 723 201 187 724 202 188 725 204 205 726 206 204 727 203 188 728 204 189 729 207 206 730 208 205 731 206 189 732 207 190 733 209 207 734 210 206 735 208 190 736 209 191 737 247 208 738 249 207 739 210 191 740 247 176 741 181 192 742 184 208 743 249</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>pCylinderShape8</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonCover_0Shape1\" name=\"bolt_pistonCover_0Shape1\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonCover_0Shape1-positions\" name=\"bolt_pistonCover_0Shape1-positions\">\r\n          <float_array id=\"bolt_pistonCover_0Shape1-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -1.25 -0.1913414 -0.3535536 -1.25 -0.3535532 -0.191342 -1.25 -0.4619396 0 -1.25 -0.5 0.1913415 -1.25 -0.4619398 0.3535532 -1.25 -0.3535535 0.4619397 -1.25 -0.1913419 0.5 -1.25 0 0.4619398 -1.25 0.1913416 0.3535535 -1.25 0.3535533 0.1913418 -1.25 0.4619397 0 -1.25 0.5 -0.1913417 -1.25 0.4619398 -0.3535534 -1.25 0.3535534 -0.4619398 -1.25 0.1913417 -0.5 -1.25 0 0 -1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape1-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape1-normals\" name=\"bolt_pistonCover_0Shape1-normals\">\r\n          <float_array id=\"bolt_pistonCover_0Shape1-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071064 -0.7071071 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238797 0 0.3826832 0.9238797 0 0.3826832 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071069 -0.7071067 0 0.7071069 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape1-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape1-map1\" name=\"bolt_pistonCover_0Shape1-map1\">\r\n          <float_array id=\"bolt_pistonCover_0Shape1-map1-array\" count=\"102\">0.6031541 0.532581 0.6070541 0.532581 0.6109541 0.532581 0.6148541 0.532581 0.6187541 0.532581 0.6226541 0.532581 0.6265541 0.532581 0.6304541 0.532581 0.6343541 0.532581 0.6382541 0.532581 0.6421542 0.532581 0.6460541 0.532581 0.6499542 0.532581 0.6538541 0.532581 0.6577542 0.532581 0.6616542 0.532581 0.6655542 0.532581 0.6031541 0.5926556 0.6070541 0.5926556 0.6109541 0.5926556 0.6148541 0.5926556 0.6187541 0.5926556 0.6226541 0.5926556 0.6265541 0.5926556 0.6304541 0.5926556 0.6343541 0.5926556 0.6382541 0.5926556 0.6421542 0.5926556 0.6460541 0.5926556 0.6499542 0.5926556 0.6538541 0.5926556 0.6577542 0.5926556 0.6616542 0.5926556 0.6655542 0.5926556 0.7419584 0.2790516 0.738875 0.2744371 0.7342605 0.2713538 0.7288173 0.270271 0.7233742 0.2713538 0.7187597 0.2744371 0.7156764 0.2790516 0.7145937 0.2844947 0.7156764 0.2899379 0.7187597 0.2945524 0.7233742 0.2976357 0.7288173 0.2987184 0.7342605 0.2976357 0.738875 0.2945524 0.7419584 0.2899379 0.743041 0.2844947 0.7288173 0.2839258</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape1-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonCover_0Shape1-vertices\" name=\"bolt_pistonCover_0Shape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonCover_0Shape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonCover_0Shape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonCover_0Shape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonCover_0Shape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 17 2 18 16 3 17 1 1 1 2 4 2 18 5 19 17 2 18 2 4 2 3 6 3 19 7 20 18 5 19 3 6 3 4 8 4 20 9 21 19 7 20 4 8 4 5 10 5 21 11 22 20 9 21 5 10 5 6 12 6 22 13 23 21 11 22 6 12 6 7 14 7 23 15 24 22 13 23 7 14 7 8 16 8 24 17 25 23 15 24 8 16 8 9 18 9 25 19 26 24 17 25 9 18 9 10 20 10 26 21 27 25 19 26 10 20 10 11 22 11 27 23 28 26 21 27 11 22 11 12 24 12 28 25 29 27 23 28 12 24 12 13 26 13 29 27 30 28 25 29 13 26 13 14 28 14 30 29 31 29 27 30 14 28 14 15 30 15 31 31 32 30 29 31 15 30 15 0 0 16 16 3 33 31 31 32 16 32 48 17 33 47 32 34 50 17 33 47 18 35 46 32 34 50 18 35 46 19 36 45 32 34 50 19 36 45 20 37 44 32 34 50 20 37 44 21 38 43 32 34 50 21 38 43 22 39 42 32 34 50 22 39 42 23 40 41 32 34 50 23 40 41 24 41 40 32 34 50 24 41 40 25 42 39 32 34 50 25 42 39 26 43 38 32 34 50 26 43 38 27 44 37 32 34 50 27 44 37 28 45 36 32 34 50 28 45 36 29 46 35 32 34 50 29 46 35 30 47 34 32 34 50 30 47 34 31 48 49 32 34 50 31 48 49 16 32 48 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonCover_0Shape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonCover_0Shape8\" name=\"bolt_pistonCover_0Shape8\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonCover_0Shape8-positions\" name=\"bolt_pistonCover_0Shape8-positions\">\r\n          <float_array id=\"bolt_pistonCover_0Shape8-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -1.25 -0.1913414 -0.3535536 -1.25 -0.3535532 -0.191342 -1.25 -0.4619396 0 -1.25 -0.5 0.1913415 -1.25 -0.4619398 0.3535532 -1.25 -0.3535535 0.4619397 -1.25 -0.1913419 0.5 -1.25 0 0.4619398 -1.25 0.1913416 0.3535535 -1.25 0.3535533 0.1913418 -1.25 0.4619397 0 -1.25 0.5 -0.1913417 -1.25 0.4619398 -0.3535534 -1.25 0.3535534 -0.4619398 -1.25 0.1913417 -0.5 -1.25 0 0 -1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape8-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape8-normals\" name=\"bolt_pistonCover_0Shape8-normals\">\r\n          <float_array id=\"bolt_pistonCover_0Shape8-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071064 -0.7071071 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238797 0 0.3826832 0.9238797 0 0.3826832 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071069 -0.7071067 0 0.7071069 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape8-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape8-map1\" name=\"bolt_pistonCover_0Shape8-map1\">\r\n          <float_array id=\"bolt_pistonCover_0Shape8-map1-array\" count=\"102\">0.6031541 0.532581 0.6070541 0.532581 0.6109541 0.532581 0.6148541 0.532581 0.6187541 0.532581 0.6226541 0.532581 0.6265541 0.532581 0.6304541 0.532581 0.6343541 0.532581 0.6382541 0.532581 0.6421542 0.532581 0.6460541 0.532581 0.6499542 0.532581 0.6538541 0.532581 0.6577542 0.532581 0.6616542 0.532581 0.6655542 0.532581 0.6031541 0.5926556 0.6070541 0.5926556 0.6109541 0.5926556 0.6148541 0.5926556 0.6187541 0.5926556 0.6226541 0.5926556 0.6265541 0.5926556 0.6304541 0.5926556 0.6343541 0.5926556 0.6382541 0.5926556 0.6421542 0.5926556 0.6460541 0.5926556 0.6499542 0.5926556 0.6538541 0.5926556 0.6577542 0.5926556 0.6616542 0.5926556 0.6655542 0.5926556 0.7419584 0.2790516 0.738875 0.2744371 0.7342605 0.2713538 0.7288173 0.270271 0.7233742 0.2713538 0.7187597 0.2744371 0.7156764 0.2790516 0.7145937 0.2844947 0.7156764 0.2899379 0.7187597 0.2945524 0.7233742 0.2976357 0.7288173 0.2987184 0.7342605 0.2976357 0.738875 0.2945524 0.7419584 0.2899379 0.743041 0.2844947 0.7288173 0.2839258</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape8-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonCover_0Shape8-vertices\" name=\"bolt_pistonCover_0Shape8-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonCover_0Shape8-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonCover_0Shape8-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonCover_0Shape8-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonCover_0Shape8-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 17 2 18 16 3 17 1 1 1 2 4 2 18 5 19 17 2 18 2 4 2 3 6 3 19 7 20 18 5 19 3 6 3 4 8 4 20 9 21 19 7 20 4 8 4 5 10 5 21 11 22 20 9 21 5 10 5 6 12 6 22 13 23 21 11 22 6 12 6 7 14 7 23 15 24 22 13 23 7 14 7 8 16 8 24 17 25 23 15 24 8 16 8 9 18 9 25 19 26 24 17 25 9 18 9 10 20 10 26 21 27 25 19 26 10 20 10 11 22 11 27 23 28 26 21 27 11 22 11 12 24 12 28 25 29 27 23 28 12 24 12 13 26 13 29 27 30 28 25 29 13 26 13 14 28 14 30 29 31 29 27 30 14 28 14 15 30 15 31 31 32 30 29 31 15 30 15 0 0 16 16 3 33 31 31 32 16 32 48 17 33 47 32 34 50 17 33 47 18 35 46 32 34 50 18 35 46 19 36 45 32 34 50 19 36 45 20 37 44 32 34 50 20 37 44 21 38 43 32 34 50 21 38 43 22 39 42 32 34 50 22 39 42 23 40 41 32 34 50 23 40 41 24 41 40 32 34 50 24 41 40 25 42 39 32 34 50 25 42 39 26 43 38 32 34 50 26 43 38 27 44 37 32 34 50 27 44 37 28 45 36 32 34 50 28 45 36 29 46 35 32 34 50 29 46 35 30 47 34 32 34 50 30 47 34 31 48 49 32 34 50 31 48 49 16 32 48 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonCover_0Shape8</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonCover_0Shape7\" name=\"bolt_pistonCover_0Shape7\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonCover_0Shape7-positions\" name=\"bolt_pistonCover_0Shape7-positions\">\r\n          <float_array id=\"bolt_pistonCover_0Shape7-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -1.25 -0.1913414 -0.3535536 -1.25 -0.3535532 -0.191342 -1.25 -0.4619396 0 -1.25 -0.5 0.1913415 -1.25 -0.4619398 0.3535532 -1.25 -0.3535535 0.4619397 -1.25 -0.1913419 0.5 -1.25 0 0.4619398 -1.25 0.1913416 0.3535535 -1.25 0.3535533 0.1913418 -1.25 0.4619397 0 -1.25 0.5 -0.1913417 -1.25 0.4619398 -0.3535534 -1.25 0.3535534 -0.4619398 -1.25 0.1913417 -0.5 -1.25 0 0 -1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape7-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape7-normals\" name=\"bolt_pistonCover_0Shape7-normals\">\r\n          <float_array id=\"bolt_pistonCover_0Shape7-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071064 -0.7071071 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238797 0 0.3826832 0.9238797 0 0.3826832 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071069 -0.7071067 0 0.7071069 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape7-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape7-map1\" name=\"bolt_pistonCover_0Shape7-map1\">\r\n          <float_array id=\"bolt_pistonCover_0Shape7-map1-array\" count=\"102\">0.6031541 0.532581 0.6070541 0.532581 0.6109541 0.532581 0.6148541 0.532581 0.6187541 0.532581 0.6226541 0.532581 0.6265541 0.532581 0.6304541 0.532581 0.6343541 0.532581 0.6382541 0.532581 0.6421542 0.532581 0.6460541 0.532581 0.6499542 0.532581 0.6538541 0.532581 0.6577542 0.532581 0.6616542 0.532581 0.6655542 0.532581 0.6031541 0.5926556 0.6070541 0.5926556 0.6109541 0.5926556 0.6148541 0.5926556 0.6187541 0.5926556 0.6226541 0.5926556 0.6265541 0.5926556 0.6304541 0.5926556 0.6343541 0.5926556 0.6382541 0.5926556 0.6421542 0.5926556 0.6460541 0.5926556 0.6499542 0.5926556 0.6538541 0.5926556 0.6577542 0.5926556 0.6616542 0.5926556 0.6655542 0.5926556 0.7419584 0.2790516 0.738875 0.2744371 0.7342605 0.2713538 0.7288173 0.270271 0.7233742 0.2713538 0.7187597 0.2744371 0.7156764 0.2790516 0.7145937 0.2844947 0.7156764 0.2899379 0.7187597 0.2945524 0.7233742 0.2976357 0.7288173 0.2987184 0.7342605 0.2976357 0.738875 0.2945524 0.7419584 0.2899379 0.743041 0.2844947 0.7288173 0.2839258</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape7-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonCover_0Shape7-vertices\" name=\"bolt_pistonCover_0Shape7-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonCover_0Shape7-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonCover_0Shape7-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonCover_0Shape7-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonCover_0Shape7-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 17 2 18 16 3 17 1 1 1 2 4 2 18 5 19 17 2 18 2 4 2 3 6 3 19 7 20 18 5 19 3 6 3 4 8 4 20 9 21 19 7 20 4 8 4 5 10 5 21 11 22 20 9 21 5 10 5 6 12 6 22 13 23 21 11 22 6 12 6 7 14 7 23 15 24 22 13 23 7 14 7 8 16 8 24 17 25 23 15 24 8 16 8 9 18 9 25 19 26 24 17 25 9 18 9 10 20 10 26 21 27 25 19 26 10 20 10 11 22 11 27 23 28 26 21 27 11 22 11 12 24 12 28 25 29 27 23 28 12 24 12 13 26 13 29 27 30 28 25 29 13 26 13 14 28 14 30 29 31 29 27 30 14 28 14 15 30 15 31 31 32 30 29 31 15 30 15 0 0 16 16 3 33 31 31 32 16 32 48 17 33 47 32 34 50 17 33 47 18 35 46 32 34 50 18 35 46 19 36 45 32 34 50 19 36 45 20 37 44 32 34 50 20 37 44 21 38 43 32 34 50 21 38 43 22 39 42 32 34 50 22 39 42 23 40 41 32 34 50 23 40 41 24 41 40 32 34 50 24 41 40 25 42 39 32 34 50 25 42 39 26 43 38 32 34 50 26 43 38 27 44 37 32 34 50 27 44 37 28 45 36 32 34 50 28 45 36 29 46 35 32 34 50 29 46 35 30 47 34 32 34 50 30 47 34 31 48 49 32 34 50 31 48 49 16 32 48 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonCover_0Shape7</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonCover_0Shape2\" name=\"bolt_pistonCover_0Shape2\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonCover_0Shape2-positions\" name=\"bolt_pistonCover_0Shape2-positions\">\r\n          <float_array id=\"bolt_pistonCover_0Shape2-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -1.25 -0.1913414 -0.3535536 -1.25 -0.3535532 -0.191342 -1.25 -0.4619396 0 -1.25 -0.5 0.1913415 -1.25 -0.4619398 0.3535532 -1.25 -0.3535535 0.4619397 -1.25 -0.1913419 0.5 -1.25 0 0.4619398 -1.25 0.1913416 0.3535535 -1.25 0.3535533 0.1913418 -1.25 0.4619397 0 -1.25 0.5 -0.1913417 -1.25 0.4619398 -0.3535534 -1.25 0.3535534 -0.4619398 -1.25 0.1913417 -0.5 -1.25 0 0 -1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape2-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape2-normals\" name=\"bolt_pistonCover_0Shape2-normals\">\r\n          <float_array id=\"bolt_pistonCover_0Shape2-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071064 -0.7071071 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238797 0 0.3826832 0.9238797 0 0.3826832 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071069 -0.7071067 0 0.7071069 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape2-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape2-map1\" name=\"bolt_pistonCover_0Shape2-map1\">\r\n          <float_array id=\"bolt_pistonCover_0Shape2-map1-array\" count=\"102\">0.6031541 0.532581 0.6070541 0.532581 0.6109541 0.532581 0.6148541 0.532581 0.6187541 0.532581 0.6226541 0.532581 0.6265541 0.532581 0.6304541 0.532581 0.6343541 0.532581 0.6382541 0.532581 0.6421542 0.532581 0.6460541 0.532581 0.6499542 0.532581 0.6538541 0.532581 0.6577542 0.532581 0.6616542 0.532581 0.6655542 0.532581 0.6031541 0.5926556 0.6070541 0.5926556 0.6109541 0.5926556 0.6148541 0.5926556 0.6187541 0.5926556 0.6226541 0.5926556 0.6265541 0.5926556 0.6304541 0.5926556 0.6343541 0.5926556 0.6382541 0.5926556 0.6421542 0.5926556 0.6460541 0.5926556 0.6499542 0.5926556 0.6538541 0.5926556 0.6577542 0.5926556 0.6616542 0.5926556 0.6655542 0.5926556 0.7419584 0.2790516 0.738875 0.2744371 0.7342605 0.2713538 0.7288173 0.270271 0.7233742 0.2713538 0.7187597 0.2744371 0.7156764 0.2790516 0.7145937 0.2844947 0.7156764 0.2899379 0.7187597 0.2945524 0.7233742 0.2976357 0.7288173 0.2987184 0.7342605 0.2976357 0.738875 0.2945524 0.7419584 0.2899379 0.743041 0.2844947 0.7288173 0.2839258</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape2-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonCover_0Shape2-vertices\" name=\"bolt_pistonCover_0Shape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonCover_0Shape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonCover_0Shape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonCover_0Shape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonCover_0Shape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 17 2 18 16 3 17 1 1 1 2 4 2 18 5 19 17 2 18 2 4 2 3 6 3 19 7 20 18 5 19 3 6 3 4 8 4 20 9 21 19 7 20 4 8 4 5 10 5 21 11 22 20 9 21 5 10 5 6 12 6 22 13 23 21 11 22 6 12 6 7 14 7 23 15 24 22 13 23 7 14 7 8 16 8 24 17 25 23 15 24 8 16 8 9 18 9 25 19 26 24 17 25 9 18 9 10 20 10 26 21 27 25 19 26 10 20 10 11 22 11 27 23 28 26 21 27 11 22 11 12 24 12 28 25 29 27 23 28 12 24 12 13 26 13 29 27 30 28 25 29 13 26 13 14 28 14 30 29 31 29 27 30 14 28 14 15 30 15 31 31 32 30 29 31 15 30 15 0 0 16 16 3 33 31 31 32 16 32 48 17 33 47 32 34 50 17 33 47 18 35 46 32 34 50 18 35 46 19 36 45 32 34 50 19 36 45 20 37 44 32 34 50 20 37 44 21 38 43 32 34 50 21 38 43 22 39 42 32 34 50 22 39 42 23 40 41 32 34 50 23 40 41 24 41 40 32 34 50 24 41 40 25 42 39 32 34 50 25 42 39 26 43 38 32 34 50 26 43 38 27 44 37 32 34 50 27 44 37 28 45 36 32 34 50 28 45 36 29 46 35 32 34 50 29 46 35 30 47 34 32 34 50 30 47 34 31 48 49 32 34 50 31 48 49 16 32 48 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonCover_0Shape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonCover_0Shape3\" name=\"bolt_pistonCover_0Shape3\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonCover_0Shape3-positions\" name=\"bolt_pistonCover_0Shape3-positions\">\r\n          <float_array id=\"bolt_pistonCover_0Shape3-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -1.25 -0.1913414 -0.3535536 -1.25 -0.3535532 -0.191342 -1.25 -0.4619396 0 -1.25 -0.5 0.1913415 -1.25 -0.4619398 0.3535532 -1.25 -0.3535535 0.4619397 -1.25 -0.1913419 0.5 -1.25 0 0.4619398 -1.25 0.1913416 0.3535535 -1.25 0.3535533 0.1913418 -1.25 0.4619397 0 -1.25 0.5 -0.1913417 -1.25 0.4619398 -0.3535534 -1.25 0.3535534 -0.4619398 -1.25 0.1913417 -0.5 -1.25 0 0 -1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape3-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape3-normals\" name=\"bolt_pistonCover_0Shape3-normals\">\r\n          <float_array id=\"bolt_pistonCover_0Shape3-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071064 -0.7071071 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238797 0 0.3826832 0.9238797 0 0.3826832 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071069 -0.7071067 0 0.7071069 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape3-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape3-map1\" name=\"bolt_pistonCover_0Shape3-map1\">\r\n          <float_array id=\"bolt_pistonCover_0Shape3-map1-array\" count=\"102\">0.6031541 0.532581 0.6070541 0.532581 0.6109541 0.532581 0.6148541 0.532581 0.6187541 0.532581 0.6226541 0.532581 0.6265541 0.532581 0.6304541 0.532581 0.6343541 0.532581 0.6382541 0.532581 0.6421542 0.532581 0.6460541 0.532581 0.6499542 0.532581 0.6538541 0.532581 0.6577542 0.532581 0.6616542 0.532581 0.6655542 0.532581 0.6031541 0.5926556 0.6070541 0.5926556 0.6109541 0.5926556 0.6148541 0.5926556 0.6187541 0.5926556 0.6226541 0.5926556 0.6265541 0.5926556 0.6304541 0.5926556 0.6343541 0.5926556 0.6382541 0.5926556 0.6421542 0.5926556 0.6460541 0.5926556 0.6499542 0.5926556 0.6538541 0.5926556 0.6577542 0.5926556 0.6616542 0.5926556 0.6655542 0.5926556 0.7419584 0.2790516 0.738875 0.2744371 0.7342605 0.2713538 0.7288173 0.270271 0.7233742 0.2713538 0.7187597 0.2744371 0.7156764 0.2790516 0.7145937 0.2844947 0.7156764 0.2899379 0.7187597 0.2945524 0.7233742 0.2976357 0.7288173 0.2987184 0.7342605 0.2976357 0.738875 0.2945524 0.7419584 0.2899379 0.743041 0.2844947 0.7288173 0.2839258</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape3-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonCover_0Shape3-vertices\" name=\"bolt_pistonCover_0Shape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonCover_0Shape3-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonCover_0Shape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonCover_0Shape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonCover_0Shape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 17 2 18 16 3 17 1 1 1 2 4 2 18 5 19 17 2 18 2 4 2 3 6 3 19 7 20 18 5 19 3 6 3 4 8 4 20 9 21 19 7 20 4 8 4 5 10 5 21 11 22 20 9 21 5 10 5 6 12 6 22 13 23 21 11 22 6 12 6 7 14 7 23 15 24 22 13 23 7 14 7 8 16 8 24 17 25 23 15 24 8 16 8 9 18 9 25 19 26 24 17 25 9 18 9 10 20 10 26 21 27 25 19 26 10 20 10 11 22 11 27 23 28 26 21 27 11 22 11 12 24 12 28 25 29 27 23 28 12 24 12 13 26 13 29 27 30 28 25 29 13 26 13 14 28 14 30 29 31 29 27 30 14 28 14 15 30 15 31 31 32 30 29 31 15 30 15 0 0 16 16 3 33 31 31 32 16 32 48 17 33 47 32 34 50 17 33 47 18 35 46 32 34 50 18 35 46 19 36 45 32 34 50 19 36 45 20 37 44 32 34 50 20 37 44 21 38 43 32 34 50 21 38 43 22 39 42 32 34 50 22 39 42 23 40 41 32 34 50 23 40 41 24 41 40 32 34 50 24 41 40 25 42 39 32 34 50 25 42 39 26 43 38 32 34 50 26 43 38 27 44 37 32 34 50 27 44 37 28 45 36 32 34 50 28 45 36 29 46 35 32 34 50 29 46 35 30 47 34 32 34 50 30 47 34 31 48 49 32 34 50 31 48 49 16 32 48 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonCover_0Shape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonCover_0Shape6\" name=\"bolt_pistonCover_0Shape6\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonCover_0Shape6-positions\" name=\"bolt_pistonCover_0Shape6-positions\">\r\n          <float_array id=\"bolt_pistonCover_0Shape6-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -1.25 -0.1913414 -0.3535536 -1.25 -0.3535532 -0.191342 -1.25 -0.4619396 0 -1.25 -0.5 0.1913415 -1.25 -0.4619398 0.3535532 -1.25 -0.3535535 0.4619397 -1.25 -0.1913419 0.5 -1.25 0 0.4619398 -1.25 0.1913416 0.3535535 -1.25 0.3535533 0.1913418 -1.25 0.4619397 0 -1.25 0.5 -0.1913417 -1.25 0.4619398 -0.3535534 -1.25 0.3535534 -0.4619398 -1.25 0.1913417 -0.5 -1.25 0 0 -1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape6-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape6-normals\" name=\"bolt_pistonCover_0Shape6-normals\">\r\n          <float_array id=\"bolt_pistonCover_0Shape6-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071064 -0.7071071 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238797 0 0.3826832 0.9238797 0 0.3826832 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071069 -0.7071067 0 0.7071069 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape6-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape6-map1\" name=\"bolt_pistonCover_0Shape6-map1\">\r\n          <float_array id=\"bolt_pistonCover_0Shape6-map1-array\" count=\"102\">0.6031541 0.532581 0.6070541 0.532581 0.6109541 0.532581 0.6148541 0.532581 0.6187541 0.532581 0.6226541 0.532581 0.6265541 0.532581 0.6304541 0.532581 0.6343541 0.532581 0.6382541 0.532581 0.6421542 0.532581 0.6460541 0.532581 0.6499542 0.532581 0.6538541 0.532581 0.6577542 0.532581 0.6616542 0.532581 0.6655542 0.532581 0.6031541 0.5926556 0.6070541 0.5926556 0.6109541 0.5926556 0.6148541 0.5926556 0.6187541 0.5926556 0.6226541 0.5926556 0.6265541 0.5926556 0.6304541 0.5926556 0.6343541 0.5926556 0.6382541 0.5926556 0.6421542 0.5926556 0.6460541 0.5926556 0.6499542 0.5926556 0.6538541 0.5926556 0.6577542 0.5926556 0.6616542 0.5926556 0.6655542 0.5926556 0.7419584 0.2790516 0.738875 0.2744371 0.7342605 0.2713538 0.7288173 0.270271 0.7233742 0.2713538 0.7187597 0.2744371 0.7156764 0.2790516 0.7145937 0.2844947 0.7156764 0.2899379 0.7187597 0.2945524 0.7233742 0.2976357 0.7288173 0.2987184 0.7342605 0.2976357 0.738875 0.2945524 0.7419584 0.2899379 0.743041 0.2844947 0.7288173 0.2839258</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape6-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonCover_0Shape6-vertices\" name=\"bolt_pistonCover_0Shape6-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonCover_0Shape6-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonCover_0Shape6-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonCover_0Shape6-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonCover_0Shape6-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 17 2 18 16 3 17 1 1 1 2 4 2 18 5 19 17 2 18 2 4 2 3 6 3 19 7 20 18 5 19 3 6 3 4 8 4 20 9 21 19 7 20 4 8 4 5 10 5 21 11 22 20 9 21 5 10 5 6 12 6 22 13 23 21 11 22 6 12 6 7 14 7 23 15 24 22 13 23 7 14 7 8 16 8 24 17 25 23 15 24 8 16 8 9 18 9 25 19 26 24 17 25 9 18 9 10 20 10 26 21 27 25 19 26 10 20 10 11 22 11 27 23 28 26 21 27 11 22 11 12 24 12 28 25 29 27 23 28 12 24 12 13 26 13 29 27 30 28 25 29 13 26 13 14 28 14 30 29 31 29 27 30 14 28 14 15 30 15 31 31 32 30 29 31 15 30 15 0 0 16 16 3 33 31 31 32 16 32 48 17 33 47 32 34 50 17 33 47 18 35 46 32 34 50 18 35 46 19 36 45 32 34 50 19 36 45 20 37 44 32 34 50 20 37 44 21 38 43 32 34 50 21 38 43 22 39 42 32 34 50 22 39 42 23 40 41 32 34 50 23 40 41 24 41 40 32 34 50 24 41 40 25 42 39 32 34 50 25 42 39 26 43 38 32 34 50 26 43 38 27 44 37 32 34 50 27 44 37 28 45 36 32 34 50 28 45 36 29 46 35 32 34 50 29 46 35 30 47 34 32 34 50 30 47 34 31 48 49 32 34 50 31 48 49 16 32 48 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonCover_0Shape6</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonCover_0Shape5\" name=\"bolt_pistonCover_0Shape5\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonCover_0Shape5-positions\" name=\"bolt_pistonCover_0Shape5-positions\">\r\n          <float_array id=\"bolt_pistonCover_0Shape5-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -1.25 -0.1913414 -0.3535536 -1.25 -0.3535532 -0.191342 -1.25 -0.4619396 0 -1.25 -0.5 0.1913415 -1.25 -0.4619398 0.3535532 -1.25 -0.3535535 0.4619397 -1.25 -0.1913419 0.5 -1.25 0 0.4619398 -1.25 0.1913416 0.3535535 -1.25 0.3535533 0.1913418 -1.25 0.4619397 0 -1.25 0.5 -0.1913417 -1.25 0.4619398 -0.3535534 -1.25 0.3535534 -0.4619398 -1.25 0.1913417 -0.5 -1.25 0 0 -1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape5-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape5-normals\" name=\"bolt_pistonCover_0Shape5-normals\">\r\n          <float_array id=\"bolt_pistonCover_0Shape5-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071064 -0.7071071 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238797 0 0.3826832 0.9238797 0 0.3826832 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071069 -0.7071067 0 0.7071069 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape5-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape5-map1\" name=\"bolt_pistonCover_0Shape5-map1\">\r\n          <float_array id=\"bolt_pistonCover_0Shape5-map1-array\" count=\"102\">0.6031541 0.532581 0.6070541 0.532581 0.6109541 0.532581 0.6148541 0.532581 0.6187541 0.532581 0.6226541 0.532581 0.6265541 0.532581 0.6304541 0.532581 0.6343541 0.532581 0.6382541 0.532581 0.6421542 0.532581 0.6460541 0.532581 0.6499542 0.532581 0.6538541 0.532581 0.6577542 0.532581 0.6616542 0.532581 0.6655542 0.532581 0.6031541 0.5926556 0.6070541 0.5926556 0.6109541 0.5926556 0.6148541 0.5926556 0.6187541 0.5926556 0.6226541 0.5926556 0.6265541 0.5926556 0.6304541 0.5926556 0.6343541 0.5926556 0.6382541 0.5926556 0.6421542 0.5926556 0.6460541 0.5926556 0.6499542 0.5926556 0.6538541 0.5926556 0.6577542 0.5926556 0.6616542 0.5926556 0.6655542 0.5926556 0.7419584 0.2790516 0.738875 0.2744371 0.7342605 0.2713538 0.7288173 0.270271 0.7233742 0.2713538 0.7187597 0.2744371 0.7156764 0.2790516 0.7145937 0.2844947 0.7156764 0.2899379 0.7187597 0.2945524 0.7233742 0.2976357 0.7288173 0.2987184 0.7342605 0.2976357 0.738875 0.2945524 0.7419584 0.2899379 0.743041 0.2844947 0.7288173 0.2839258</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape5-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonCover_0Shape5-vertices\" name=\"bolt_pistonCover_0Shape5-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonCover_0Shape5-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonCover_0Shape5-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonCover_0Shape5-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonCover_0Shape5-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 17 2 18 16 3 17 1 1 1 2 4 2 18 5 19 17 2 18 2 4 2 3 6 3 19 7 20 18 5 19 3 6 3 4 8 4 20 9 21 19 7 20 4 8 4 5 10 5 21 11 22 20 9 21 5 10 5 6 12 6 22 13 23 21 11 22 6 12 6 7 14 7 23 15 24 22 13 23 7 14 7 8 16 8 24 17 25 23 15 24 8 16 8 9 18 9 25 19 26 24 17 25 9 18 9 10 20 10 26 21 27 25 19 26 10 20 10 11 22 11 27 23 28 26 21 27 11 22 11 12 24 12 28 25 29 27 23 28 12 24 12 13 26 13 29 27 30 28 25 29 13 26 13 14 28 14 30 29 31 29 27 30 14 28 14 15 30 15 31 31 32 30 29 31 15 30 15 0 0 16 16 3 33 31 31 32 16 32 48 17 33 47 32 34 50 17 33 47 18 35 46 32 34 50 18 35 46 19 36 45 32 34 50 19 36 45 20 37 44 32 34 50 20 37 44 21 38 43 32 34 50 21 38 43 22 39 42 32 34 50 22 39 42 23 40 41 32 34 50 23 40 41 24 41 40 32 34 50 24 41 40 25 42 39 32 34 50 25 42 39 26 43 38 32 34 50 26 43 38 27 44 37 32 34 50 27 44 37 28 45 36 32 34 50 28 45 36 29 46 35 32 34 50 29 46 35 30 47 34 32 34 50 30 47 34 31 48 49 32 34 50 31 48 49 16 32 48 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonCover_0Shape5</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonCover_0Shape4\" name=\"bolt_pistonCover_0Shape4\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonCover_0Shape4-positions\" name=\"bolt_pistonCover_0Shape4-positions\">\r\n          <float_array id=\"bolt_pistonCover_0Shape4-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -1.25 -0.1913414 -0.3535536 -1.25 -0.3535532 -0.191342 -1.25 -0.4619396 0 -1.25 -0.5 0.1913415 -1.25 -0.4619398 0.3535532 -1.25 -0.3535535 0.4619397 -1.25 -0.1913419 0.5 -1.25 0 0.4619398 -1.25 0.1913416 0.3535535 -1.25 0.3535533 0.1913418 -1.25 0.4619397 0 -1.25 0.5 -0.1913417 -1.25 0.4619398 -0.3535534 -1.25 0.3535534 -0.4619398 -1.25 0.1913417 -0.5 -1.25 0 0 -1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape4-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape4-normals\" name=\"bolt_pistonCover_0Shape4-normals\">\r\n          <float_array id=\"bolt_pistonCover_0Shape4-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071064 -0.7071071 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238797 0 0.3826832 0.9238797 0 0.3826832 0.7071069 0 0.7071066 0.7071069 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071069 -0.7071067 0 0.7071069 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape4-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonCover_0Shape4-map1\" name=\"bolt_pistonCover_0Shape4-map1\">\r\n          <float_array id=\"bolt_pistonCover_0Shape4-map1-array\" count=\"102\">0.6031541 0.532581 0.6070541 0.532581 0.6109541 0.532581 0.6148541 0.532581 0.6187541 0.532581 0.6226541 0.532581 0.6265541 0.532581 0.6304541 0.532581 0.6343541 0.532581 0.6382541 0.532581 0.6421542 0.532581 0.6460541 0.532581 0.6499542 0.532581 0.6538541 0.532581 0.6577542 0.532581 0.6616542 0.532581 0.6655542 0.532581 0.6031541 0.5926556 0.6070541 0.5926556 0.6109541 0.5926556 0.6148541 0.5926556 0.6187541 0.5926556 0.6226541 0.5926556 0.6265541 0.5926556 0.6304541 0.5926556 0.6343541 0.5926556 0.6382541 0.5926556 0.6421542 0.5926556 0.6460541 0.5926556 0.6499542 0.5926556 0.6538541 0.5926556 0.6577542 0.5926556 0.6616542 0.5926556 0.6655542 0.5926556 0.7419584 0.2790516 0.738875 0.2744371 0.7342605 0.2713538 0.7288173 0.270271 0.7233742 0.2713538 0.7187597 0.2744371 0.7156764 0.2790516 0.7145937 0.2844947 0.7156764 0.2899379 0.7187597 0.2945524 0.7233742 0.2976357 0.7288173 0.2987184 0.7342605 0.2976357 0.738875 0.2945524 0.7419584 0.2899379 0.743041 0.2844947 0.7288173 0.2839258</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonCover_0Shape4-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonCover_0Shape4-vertices\" name=\"bolt_pistonCover_0Shape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonCover_0Shape4-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonCover_0Shape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonCover_0Shape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonCover_0Shape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 17 2 18 16 3 17 1 1 1 2 4 2 18 5 19 17 2 18 2 4 2 3 6 3 19 7 20 18 5 19 3 6 3 4 8 4 20 9 21 19 7 20 4 8 4 5 10 5 21 11 22 20 9 21 5 10 5 6 12 6 22 13 23 21 11 22 6 12 6 7 14 7 23 15 24 22 13 23 7 14 7 8 16 8 24 17 25 23 15 24 8 16 8 9 18 9 25 19 26 24 17 25 9 18 9 10 20 10 26 21 27 25 19 26 10 20 10 11 22 11 27 23 28 26 21 27 11 22 11 12 24 12 28 25 29 27 23 28 12 24 12 13 26 13 29 27 30 28 25 29 13 26 13 14 28 14 30 29 31 29 27 30 14 28 14 15 30 15 31 31 32 30 29 31 15 30 15 0 0 16 16 3 33 31 31 32 16 32 48 17 33 47 32 34 50 17 33 47 18 35 46 32 34 50 18 35 46 19 36 45 32 34 50 19 36 45 20 37 44 32 34 50 20 37 44 21 38 43 32 34 50 21 38 43 22 39 42 32 34 50 22 39 42 23 40 41 32 34 50 23 40 41 24 41 40 32 34 50 24 41 40 25 42 39 32 34 50 25 42 39 26 43 38 32 34 50 26 43 38 27 44 37 32 34 50 27 44 37 28 45 36 32 34 50 28 45 36 29 46 35 32 34 50 29 46 35 30 47 34 32 34 50 30 47 34 31 48 49 32 34 50 31 48 49 16 32 48 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonCover_0Shape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonHousingShape1\" name=\"bolt_pistonHousingShape1\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonHousingShape1-positions\" name=\"bolt_pistonHousingShape1-positions\">\r\n          <float_array id=\"bolt_pistonHousingShape1-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -2.80107 -0.1913414 -0.3535536 -2.80107 -0.3535532 -0.191342 -2.80107 -0.4619396 0 -2.80107 -0.5 0.1913415 -2.80107 -0.4619398 0.3535532 -2.80107 -0.3535535 0.4619397 -2.80107 -0.1913419 0.5 -2.80107 0 0.4619398 -2.80107 0.1913416 0.3535535 -2.80107 0.3535533 0.1913418 -2.80107 0.4619397 0 -2.80107 0.5 -0.1913417 -2.80107 0.4619398 -0.3535534 -2.80107 0.3535534 -0.4619398 -2.80107 0.1913417 -0.5 -2.80107 0 0 1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape1-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonHousingShape1-normals\" name=\"bolt_pistonHousingShape1-normals\">\r\n          <float_array id=\"bolt_pistonHousingShape1-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071065 -0.7071071 0 -0.7071065 -0.9238797 0 -0.3826831 -0.3826838 0 -0.9238793 -0.3826838 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 0.9999999 0 0 0.9999999 0 0 0.9238796 0 0.3826832 0.9238796 0 0.3826832 0.707107 0 0.7071066 0.707107 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape1-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonHousingShape1-map1\" name=\"bolt_pistonHousingShape1-map1\">\r\n          <float_array id=\"bolt_pistonHousingShape1-map1-array\" count=\"102\">0.958209 0.5367838 0.9538561 0.5367501 0.9473414 0.5367275 0.9396567 0.5367196 0.9319721 0.5367275 0.9254574 0.5367501 0.9211044 0.5367838 0.9195759 0.5368236 0.9211044 0.5368634 0.9254574 0.5368972 0.9319721 0.5369198 0.9396567 0.5369277 0.9473414 0.5369198 0.9538561 0.5368972 0.958209 0.5368634 0.9597376 0.5368236 0.8410609 0.1106484 0.8450581 0.1106484 0.8490555 0.1106484 0.8530527 0.1106484 0.8570501 0.1106484 0.8610473 0.1106484 0.8650446 0.1106484 0.8690419 0.1106484 0.8730392 0.1106484 0.8770365 0.1106484 0.8810338 0.1106484 0.885031 0.1106484 0.8890284 0.1106484 0.8930256 0.1106484 0.8970229 0.1106484 0.9010202 0.1106484 0.9050175 0.1106484 0.8410609 0.1831799 0.8450581 0.1831799 0.8490555 0.1831799 0.8530527 0.1831799 0.8570501 0.1831799 0.8610473 0.1831799 0.8650446 0.1831799 0.8690419 0.1831799 0.8730392 0.1831799 0.8770365 0.1831799 0.8810338 0.1831799 0.885031 0.1831799 0.8890284 0.1831799 0.8930256 0.1831799 0.8970229 0.1831799 0.9010202 0.1831799 0.9050175 0.1831799 0.9396567 0.5195518</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape1-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonHousingShape1-vertices\" name=\"bolt_pistonHousingShape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonHousingShape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonHousingShape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonHousingShape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonHousingShape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 16 1 1 17 17 2 34 16 3 33 1 1 17 2 4 18 18 5 35 17 2 34 2 4 18 3 6 19 19 7 36 18 5 35 3 6 19 4 8 20 20 9 37 19 7 36 4 8 20 5 10 21 21 11 38 20 9 37 5 10 21 6 12 22 22 13 39 21 11 38 6 12 22 7 14 23 23 15 40 22 13 39 7 14 23 8 16 24 24 17 41 23 15 40 8 16 24 9 18 25 25 19 42 24 17 41 9 18 25 10 20 26 26 21 43 25 19 42 10 20 26 11 22 27 27 23 44 26 21 43 11 22 27 12 24 28 28 25 45 27 23 44 12 24 28 13 26 29 29 27 46 28 25 45 13 26 29 14 28 30 30 29 47 29 27 46 14 28 30 15 30 31 31 31 48 30 29 47 15 30 31 0 0 32 16 3 49 31 31 48 1 32 1 0 33 0 32 34 50 2 35 2 1 32 1 32 34 50 3 36 3 2 35 2 32 34 50 4 37 4 3 36 3 32 34 50 5 38 5 4 37 4 32 34 50 6 39 6 5 38 5 32 34 50 7 40 7 6 39 6 32 34 50 8 41 8 7 40 7 32 34 50 9 42 9 8 41 8 32 34 50 10 43 10 9 42 9 32 34 50 11 44 11 10 43 10 32 34 50 12 45 12 11 44 11 32 34 50 13 46 13 12 45 12 32 34 50 14 47 14 13 46 13 32 34 50 15 48 15 14 47 14 32 34 50 0 33 0 15 48 15 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonHousingShape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonHousingShape2\" name=\"bolt_pistonHousingShape2\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonHousingShape2-positions\" name=\"bolt_pistonHousingShape2-positions\">\r\n          <float_array id=\"bolt_pistonHousingShape2-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -2.80107 -0.1913414 -0.3535536 -2.80107 -0.3535532 -0.191342 -2.80107 -0.4619396 0 -2.80107 -0.5 0.1913415 -2.80107 -0.4619398 0.3535532 -2.80107 -0.3535535 0.4619397 -2.80107 -0.1913419 0.5 -2.80107 0 0.4619398 -2.80107 0.1913416 0.3535535 -2.80107 0.3535533 0.1913418 -2.80107 0.4619397 0 -2.80107 0.5 -0.1913417 -2.80107 0.4619398 -0.3535534 -2.80107 0.3535534 -0.4619398 -2.80107 0.1913417 -0.5 -2.80107 0 0 1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape2-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonHousingShape2-normals\" name=\"bolt_pistonHousingShape2-normals\">\r\n          <float_array id=\"bolt_pistonHousingShape2-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071072 0 -0.7071064 -0.7071072 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -1 0 0 -1 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.707107 0.7071065 0 -0.707107 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238796 0 0.3826832 0.9238796 0 0.3826832 0.707107 0 0.7071065 0.707107 0 0.7071065 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 0.9999999 0 0 0.9999999 -0.3826834 0 0.9238796 -0.3826834 0 0.9238796 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape2-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonHousingShape2-map1\" name=\"bolt_pistonHousingShape2-map1\">\r\n          <float_array id=\"bolt_pistonHousingShape2-map1-array\" count=\"102\">0.958209 0.5367838 0.9538561 0.5367501 0.9473414 0.5367275 0.9396567 0.5367196 0.9319721 0.5367275 0.9254574 0.5367501 0.9211044 0.5367838 0.9195759 0.5368236 0.9211044 0.5368634 0.9254574 0.5368972 0.9319721 0.5369198 0.9396567 0.5369277 0.9473414 0.5369198 0.9538561 0.5368972 0.958209 0.5368634 0.9597376 0.5368236 0.8410609 0.1106484 0.8450581 0.1106484 0.8490555 0.1106484 0.8530527 0.1106484 0.8570501 0.1106484 0.8610473 0.1106484 0.8650446 0.1106484 0.8690419 0.1106484 0.8730392 0.1106484 0.8770365 0.1106484 0.8810338 0.1106484 0.885031 0.1106484 0.8890284 0.1106484 0.8930256 0.1106484 0.8970229 0.1106484 0.9010202 0.1106484 0.9050175 0.1106484 0.8410609 0.1831799 0.8450581 0.1831799 0.8490555 0.1831799 0.8530527 0.1831799 0.8570501 0.1831799 0.8610473 0.1831799 0.8650446 0.1831799 0.8690419 0.1831799 0.8730392 0.1831799 0.8770365 0.1831799 0.8810338 0.1831799 0.885031 0.1831799 0.8890284 0.1831799 0.8930256 0.1831799 0.8970229 0.1831799 0.9010202 0.1831799 0.9050175 0.1831799 0.9396567 0.5235518</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape2-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonHousingShape2-vertices\" name=\"bolt_pistonHousingShape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonHousingShape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonHousingShape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonHousingShape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonHousingShape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 16 1 1 17 17 2 34 16 3 33 1 1 17 2 4 18 18 5 35 17 2 34 2 4 18 3 6 19 19 7 36 18 5 35 3 6 19 4 8 20 20 9 37 19 7 36 4 8 20 5 10 21 21 11 38 20 9 37 5 10 21 6 12 22 22 13 39 21 11 38 6 12 22 7 14 23 23 15 40 22 13 39 7 14 23 8 16 24 24 17 41 23 15 40 8 16 24 9 18 25 25 19 42 24 17 41 9 18 25 10 20 26 26 21 43 25 19 42 10 20 26 11 22 27 27 23 44 26 21 43 11 22 27 12 24 28 28 25 45 27 23 44 12 24 28 13 26 29 29 27 46 28 25 45 13 26 29 14 28 30 30 29 47 29 27 46 14 28 30 15 30 31 31 31 48 30 29 47 15 30 31 0 0 32 16 3 49 31 31 48 1 32 1 0 33 0 32 34 50 2 35 2 1 32 1 32 34 50 3 36 3 2 35 2 32 34 50 4 37 4 3 36 3 32 34 50 5 38 5 4 37 4 32 34 50 6 39 6 5 38 5 32 34 50 7 40 7 6 39 6 32 34 50 8 41 8 7 40 7 32 34 50 9 42 9 8 41 8 32 34 50 10 43 10 9 42 9 32 34 50 11 44 11 10 43 10 32 34 50 12 45 12 11 44 11 32 34 50 13 46 13 12 45 12 32 34 50 14 47 14 13 46 13 32 34 50 15 48 15 14 47 14 32 34 50 0 33 0 15 48 15 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonHousingShape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonHousingShape3\" name=\"bolt_pistonHousingShape3\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonHousingShape3-positions\" name=\"bolt_pistonHousingShape3-positions\">\r\n          <float_array id=\"bolt_pistonHousingShape3-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -2.80107 -0.1913414 -0.3535536 -2.80107 -0.3535532 -0.191342 -2.80107 -0.4619396 0 -2.80107 -0.5 0.1913415 -2.80107 -0.4619398 0.3535532 -2.80107 -0.3535535 0.4619397 -2.80107 -0.1913419 0.5 -2.80107 0 0.4619398 -2.80107 0.1913416 0.3535535 -2.80107 0.3535533 0.1913418 -2.80107 0.4619397 0 -2.80107 0.5 -0.1913417 -2.80107 0.4619398 -0.3535534 -2.80107 0.3535534 -0.4619398 -2.80107 0.1913417 -0.5 -2.80107 0 0 1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape3-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonHousingShape3-normals\" name=\"bolt_pistonHousingShape3-normals\">\r\n          <float_array id=\"bolt_pistonHousingShape3-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071072 0 -0.7071064 -0.7071072 0 -0.7071064 -0.9238797 0 -0.3826831 -0.3826839 0 -0.9238793 -0.3826839 0 -0.9238793 0 0 -1 0 0 -1 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.707107 0.7071065 0 -0.707107 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 1 0 0 1 0 0 0.9238796 0 0.3826832 0.9238796 0 0.3826832 0.707107 0 0.7071065 0.707107 0 0.7071065 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 0.9999999 0 0 0.9999999 -0.3826834 0 0.9238796 -0.3826834 0 0.9238796 -0.7071068 0 0.7071068 -0.7071068 0 0.7071068 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape3-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonHousingShape3-map1\" name=\"bolt_pistonHousingShape3-map1\">\r\n          <float_array id=\"bolt_pistonHousingShape3-map1-array\" count=\"102\">0.958209 0.5597838 0.9538561 0.5597501 0.9473414 0.5597275 0.9396567 0.5597196 0.9319721 0.5597275 0.9254574 0.5597501 0.9211044 0.5597838 0.9195759 0.5598236 0.9211044 0.5598634 0.9254574 0.5598972 0.9319721 0.5599198 0.9396567 0.5599277 0.9473414 0.5599198 0.9538561 0.5598972 0.958209 0.5598634 0.9597376 0.5598236 0.8410609 0.1106484 0.8450581 0.1106484 0.8490555 0.1106484 0.8530527 0.1106484 0.8570501 0.1106484 0.8610473 0.1106484 0.8650446 0.1106484 0.8690419 0.1106484 0.8730392 0.1106484 0.8770365 0.1106484 0.8810338 0.1106484 0.885031 0.1106484 0.8890284 0.1106484 0.8930256 0.1106484 0.8970229 0.1106484 0.9010202 0.1106484 0.9050175 0.1106484 0.8410609 0.1831799 0.8450581 0.1831799 0.8490555 0.1831799 0.8530527 0.1831799 0.8570501 0.1831799 0.8610473 0.1831799 0.8650446 0.1831799 0.8690419 0.1831799 0.8730392 0.1831799 0.8770365 0.1831799 0.8810338 0.1831799 0.885031 0.1831799 0.8890284 0.1831799 0.8930256 0.1831799 0.8970229 0.1831799 0.9010202 0.1831799 0.9050175 0.1831799 0.9396567 0.5095518</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape3-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonHousingShape3-vertices\" name=\"bolt_pistonHousingShape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonHousingShape3-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonHousingShape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonHousingShape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonHousingShape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 16 1 1 17 17 2 34 16 3 33 1 1 17 2 4 18 18 5 35 17 2 34 2 4 18 3 6 19 19 7 36 18 5 35 3 6 19 4 8 20 20 9 37 19 7 36 4 8 20 5 10 21 21 11 38 20 9 37 5 10 21 6 12 22 22 13 39 21 11 38 6 12 22 7 14 23 23 15 40 22 13 39 7 14 23 8 16 24 24 17 41 23 15 40 8 16 24 9 18 25 25 19 42 24 17 41 9 18 25 10 20 26 26 21 43 25 19 42 10 20 26 11 22 27 27 23 44 26 21 43 11 22 27 12 24 28 28 25 45 27 23 44 12 24 28 13 26 29 29 27 46 28 25 45 13 26 29 14 28 30 30 29 47 29 27 46 14 28 30 15 30 31 31 31 48 30 29 47 15 30 31 0 0 32 16 3 49 31 31 48 1 32 1 0 33 0 32 34 50 2 35 2 1 32 1 32 34 50 3 36 3 2 35 2 32 34 50 4 37 4 3 36 3 32 34 50 5 38 5 4 37 4 32 34 50 6 39 6 5 38 5 32 34 50 7 40 7 6 39 6 32 34 50 8 41 8 7 40 7 32 34 50 9 42 9 8 41 8 32 34 50 10 43 10 9 42 9 32 34 50 11 44 11 10 43 10 32 34 50 12 45 12 11 44 11 32 34 50 13 46 13 12 45 12 32 34 50 14 47 14 13 46 13 32 34 50 15 48 15 14 47 14 32 34 50 0 33 0 15 48 15 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonHousingShape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"bolt_pistonHousingShape4\" name=\"bolt_pistonHousingShape4\">\r\n      <mesh>\r\n        <source id=\"bolt_pistonHousingShape4-positions\" name=\"bolt_pistonHousingShape4-positions\">\r\n          <float_array id=\"bolt_pistonHousingShape4-positions-array\" count=\"99\">-0.4619399 1.25 -0.1913414 -0.3535536 1.25 -0.3535532 -0.191342 1.25 -0.4619396 0 1.25 -0.5 0.1913415 1.25 -0.4619398 0.3535532 1.25 -0.3535535 0.4619397 1.25 -0.1913419 0.5 1.25 0 0.4619398 1.25 0.1913416 0.3535535 1.25 0.3535533 0.1913418 1.25 0.4619397 0 1.25 0.5 -0.1913417 1.25 0.4619398 -0.3535534 1.25 0.3535534 -0.4619398 1.25 0.1913417 -0.5 1.25 0 -0.4619399 -2.80107 -0.1913414 -0.3535536 -2.80107 -0.3535532 -0.191342 -2.80107 -0.4619396 0 -2.80107 -0.5 0.1913415 -2.80107 -0.4619398 0.3535532 -2.80107 -0.3535535 0.4619397 -2.80107 -0.1913419 0.5 -2.80107 0 0.4619398 -2.80107 0.1913416 0.3535535 -2.80107 0.3535533 0.1913418 -2.80107 0.4619397 0 -2.80107 0.5 -0.1913417 -2.80107 0.4619398 -0.3535534 -2.80107 0.3535534 -0.4619398 -2.80107 0.1913417 -0.5 -2.80107 0 0 1.25 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape4-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonHousingShape4-normals\" name=\"bolt_pistonHousingShape4-normals\">\r\n          <float_array id=\"bolt_pistonHousingShape4-normals-array\" count=\"147\">-0.9238797 0 -0.3826831 -0.7071071 0 -0.7071065 -0.7071071 0 -0.7071065 -0.9238797 0 -0.3826831 -0.3826838 0 -0.9238793 -0.3826838 0 -0.9238793 0 0 -0.9999999 0 0 -0.9999999 0.3826829 0 -0.9238797 0.3826829 0 -0.9238797 0.7071065 0 -0.7071071 0.7071065 0 -0.7071071 0.9238794 0 -0.3826838 0.9238794 0 -0.3826838 0.9999999 0 0 0.9999999 0 0 0.9238796 0 0.3826832 0.9238796 0 0.3826832 0.707107 0 0.7071066 0.707107 0 0.7071066 0.3826836 0 0.9238794 0.3826836 0 0.9238794 0 0 1 0 0 1 -0.3826833 0 0.9238796 -0.3826833 0 0.9238796 -0.7071067 0 0.7071068 -0.7071067 0 0.7071068 -0.9238795 0 0.3826835 -0.9238795 0 0.3826835 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape4-normals-array\" count=\"49\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"bolt_pistonHousingShape4-map1\" name=\"bolt_pistonHousingShape4-map1\">\r\n          <float_array id=\"bolt_pistonHousingShape4-map1-array\" count=\"102\">0.958209 0.5597838 0.9538561 0.5597501 0.9473414 0.5597275 0.9396567 0.5597196 0.9319721 0.5597275 0.9254574 0.5597501 0.9211044 0.5597838 0.9195759 0.5598236 0.9211044 0.5598634 0.9254574 0.5598972 0.9319721 0.5599198 0.9396567 0.5599277 0.9473414 0.5599198 0.9538561 0.5598972 0.958209 0.5598634 0.9597376 0.5598236 0.8410609 0.1106484 0.8450581 0.1106484 0.8490555 0.1106484 0.8530527 0.1106484 0.8570501 0.1106484 0.8610473 0.1106484 0.8650446 0.1106484 0.8690419 0.1106484 0.8730392 0.1106484 0.8770365 0.1106484 0.8810338 0.1106484 0.885031 0.1106484 0.8890284 0.1106484 0.8930256 0.1106484 0.8970229 0.1106484 0.9010202 0.1106484 0.9050175 0.1106484 0.8410609 0.1831799 0.8450581 0.1831799 0.8490555 0.1831799 0.8530527 0.1831799 0.8570501 0.1831799 0.8610473 0.1831799 0.8650446 0.1831799 0.8690419 0.1831799 0.8730392 0.1831799 0.8770365 0.1831799 0.8810338 0.1831799 0.885031 0.1831799 0.8890284 0.1831799 0.8930256 0.1831799 0.8970229 0.1831799 0.9010202 0.1831799 0.9050175 0.1831799 0.9396567 0.5095518</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#bolt_pistonHousingShape4-map1-array\" count=\"51\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"bolt_pistonHousingShape4-vertices\" name=\"bolt_pistonHousingShape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#bolt_pistonHousingShape4-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"32\">\r\n          <input semantic=\"VERTEX\" source=\"#bolt_pistonHousingShape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#bolt_pistonHousingShape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#bolt_pistonHousingShape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 16 1 1 17 17 2 34 16 3 33 1 1 17 2 4 18 18 5 35 17 2 34 2 4 18 3 6 19 19 7 36 18 5 35 3 6 19 4 8 20 20 9 37 19 7 36 4 8 20 5 10 21 21 11 38 20 9 37 5 10 21 6 12 22 22 13 39 21 11 38 6 12 22 7 14 23 23 15 40 22 13 39 7 14 23 8 16 24 24 17 41 23 15 40 8 16 24 9 18 25 25 19 42 24 17 41 9 18 25 10 20 26 26 21 43 25 19 42 10 20 26 11 22 27 27 23 44 26 21 43 11 22 27 12 24 28 28 25 45 27 23 44 12 24 28 13 26 29 29 27 46 28 25 45 13 26 29 14 28 30 30 29 47 29 27 46 14 28 30 15 30 31 31 31 48 30 29 47 15 30 31 0 0 32 16 3 49 31 31 48 1 32 1 0 33 0 32 34 50 2 35 2 1 32 1 32 34 50 3 36 3 2 35 2 32 34 50 4 37 4 3 36 3 32 34 50 5 38 5 4 37 4 32 34 50 6 39 6 5 38 5 32 34 50 7 40 7 6 39 6 32 34 50 8 41 8 7 40 7 32 34 50 9 42 9 8 41 8 32 34 50 10 43 10 9 42 9 32 34 50 11 44 11 10 43 10 32 34 50 12 45 12 11 44 11 32 34 50 13 46 13 12 45 12 32 34 50 14 47 14 13 46 13 32 34 50 15 48 15 14 47 14 32 34 50 0 33 0 15 48 15 32 34 50</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>bolt_pistonHousingShape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camHousingShape\" name=\"camHousingShape\">\r\n      <mesh>\r\n        <source id=\"camHousingShape-positions\" name=\"camHousingShape-positions\">\r\n          <float_array id=\"camHousingShape-positions-array\" count=\"1431\">-0.006432548 32.4149 -5.451118 -0.006432575 3.081842 -5.450951 -6.275748 18.13551 -5.451027 -5.663198 29.66134 -5.451103 -3.991722 30.89114 -5.451107 -3.358495 31.89686 -5.451117 -1.821148 32.31829 -5.451118 -2.853274 32.09856 -5.451117 -3.724412 31.44356 -5.451105 -3.580558 31.69339 -5.451105 -3.851741 31.16454 -5.451105 -4.765885 30.42211 -5.451105 -4.186792 30.66688 -5.451105 -4.462786 30.52165 -5.451105 -5.265884 30.19008 -5.451103 -5.035785 30.3224 -5.451105 -5.466657 29.98981 -5.451103 -7.15369 22.52173 -5.451048 -6.447323 27.33446 -5.451088 -5.882291 29.14046 -5.451099 -6.142864 28.37201 -5.451094 -6.961537 24.88586 -5.451061 -6.739835 26.13175 -5.451069 -7.099664 23.66547 -5.451054 -6.885628 19.86469 -5.45104 -7.125894 21.48882 -5.451048 -7.02537 20.59535 -5.451042 -6.579962 18.86222 -5.451036 -6.737914 19.30417 -5.451038 -6.411753 18.48088 -5.451031 -5.979137 6.684574 -5.45096 -7.111507 13.81232 -5.451004 -6.430484 17.0998 -5.451023 -6.21961 17.80841 -5.451027 -6.26934 17.47633 -5.451027 -6.859435 15.83253 -5.451015 -6.648437 16.58008 -5.451021 -7.023245 14.88819 -5.451015 -6.928893 10.51587 -5.450985 -7.119866 12.69133 -5.451 -7.053142 11.59629 -5.450993 -6.538956 8.393528 -5.45097 -6.761379 9.433449 -5.450977 -6.258786 7.456435 -5.450964 -4.233785 4.920337 -5.450945 -5.320587 5.452527 -5.450953 -5.752597 6.120761 -5.450954 -5.547863 5.727391 -5.450953 -4.764208 5.145006 -5.450953 -5.058102 5.267294 -5.450953 -4.47689 5.044641 -5.450949 -3.746549 4.091539 -5.450941 -4.03697 4.72121 -5.450949 -3.878578 4.420325 -5.450949 -3.154405 3.521775 -5.450945 -3.583428 3.80582 -5.450941 -2.133374 3.220058 -5.450951 6.262883 18.13551 -5.451027 5.650333 29.66134 -5.451103 3.978857 30.89114 -5.451107 3.345629 31.89686 -5.451117 1.808283 32.31829 -5.451118 2.840409 32.09856 -5.451117 3.711547 31.44356 -5.451105 3.567693 31.69339 -5.451105 3.838876 31.16454 -5.451105 4.75302 30.42211 -5.451105 4.173928 30.66688 -5.451105 4.449921 30.52165 -5.451105 5.253019 30.19008 -5.451103 5.02292 30.3224 -5.451105 5.453792 29.98981 -5.451103 7.140825 22.52173 -5.451048 6.434458 27.33446 -5.451088 5.869426 29.14046 -5.451099 6.13 28.37201 -5.451094 6.948672 24.88586 -5.451061 6.72697 26.13175 -5.451069 7.0868 23.66547 -5.451054 6.872764 19.86469 -5.45104 7.113029 21.48882 -5.451048 7.012505 20.59535 -5.451042 6.567097 18.86222 -5.451036 6.725049 19.30417 -5.451038 6.398889 18.48088 -5.451031 5.966272 6.684574 -5.45096 7.098642 13.81232 -5.451004 6.417619 17.0998 -5.451023 6.206745 17.80841 -5.451027 6.256474 17.47633 -5.451027 6.84657 15.83253 -5.451015 6.635572 16.58008 -5.451021 7.01038 14.88819 -5.451015 6.916028 10.51587 -5.450985 7.107001 12.69133 -5.451 7.040277 11.59629 -5.450993 6.526092 8.393528 -5.45097 6.748514 9.433449 -5.450977 6.245921 7.456435 -5.450964 4.22092 4.920337 -5.450945 5.307723 5.452527 -5.450953 5.739733 6.120761 -5.450954 5.534999 5.727391 -5.450953 4.751343 5.145006 -5.450953 5.045237 5.267294 -5.450953 4.464025 5.044641 -5.450949 3.733683 4.091539 -5.450941 4.024106 4.72121 -5.450949 3.865713 4.420325 -5.450949 3.14154 3.521775 -5.450945 3.570562 3.80582 -5.450941 2.120509 3.220058 -5.450951 -1.842004 33.41817 -5.451122 -6.223855 32.389 -5.451118 -8.457612 25.2023 -5.451063 -8.457612 17.79327 -5.451027 -8.457614 10.27557 -5.450981 -6.084446 3.300211 -5.450947 -2.1761 2.285492 -5.450937 1.830366 33.41817 -5.451122 6.089899 32.33588 -5.451118 7.332838 28.79183 -5.451096 8.202132 25.46528 -5.451063 8.792136 21.94684 -5.451048 9.013156 18.82669 -5.451036 9.010855 16.66598 -5.451021 8.783847 13.34128 -5.451004 8.12916 9.816481 -5.450979 6.95616 6.134885 -5.450954 5.893678 3.284954 -5.450947 1.97031 2.285492 -5.450937 1.830366 33.41817 24.06069 -1.842004 33.41817 24.06069 -6.223855 32.389 24.06071 -8.457612 25.2023 24.06075 -8.457612 17.79327 24.06078 -8.457614 10.27557 24.06084 -6.084446 3.300211 24.0609 -2.1761 2.285492 24.0609 6.089899 32.33588 24.06071 7.332838 28.79183 24.06073 8.202132 25.46527 24.06073 8.792136 21.94684 24.06075 9.013156 18.82669 24.06078 9.010855 16.66598 24.06079 8.783847 13.34128 24.06082 8.12916 9.816481 24.06084 6.95616 6.134885 24.06086 5.893678 3.284954 24.0609 1.97031 2.285492 24.0609 1.772913 32.84215 24.06071 -1.763564 32.84215 24.06071 -5.983267 31.85107 24.06071 -8.134367 24.9303 24.06076 -8.134369 17.79543 24.06078 -8.134367 10.55592 24.06084 -5.849016 3.838684 24.0609 -2.085296 2.861515 24.0609 5.874825 31.7999 24.06071 7.071771 28.387 24.06073 7.908897 25.18354 24.06075 8.477068 21.79531 24.06075 8.689909 18.79062 24.06078 8.687693 16.70986 24.06079 8.469084 13.50819 24.06082 7.838625 10.11382 24.06084 6.709031 6.568462 24.06086 5.685866 3.82399 24.0609 1.907679 2.861515 24.0609 4.377553 17.80841 24.06078 5.995381 19.32708 24.06078 7.08354 21.43372 24.06075 7.448118 23.73557 24.06075 7.083545 26.03742 24.06073 6.0255 28.11395 24.06073 4.377557 29.76189 24.06071 2.301025 30.81993 24.06071 2.301025 30.81993 24.06071 -2.302677 30.81993 24.06071 -8.25812e-4 31.18451 24.06071 -4.379207 29.76189 24.06071 -6.027149 28.11395 24.06073 -7.085193 26.03742 24.06073 -7.449771 23.73557 24.06076 -7.085193 21.43372 24.06076 -4.379205 17.80841 24.06078 -6.027148 19.35719 24.06078 -7.085194 14.1831 24.06079 -6.027149 16.25963 24.06079 -7.449771 11.88125 24.06083 -7.085193 9.579397 24.06085 -6.027149 7.502868 24.06084 -4.379205 5.854925 24.06085 -2.302676 4.796881 24.0609 -8.26057e-4 4.432303 24.0609 2.301024 4.796882 24.0609 4.377553 5.854926 24.06086 6.025496 7.50287 24.06086 7.08354 9.579397 24.06086 7.448118 11.88125 24.06083 7.083545 14.1831 24.0608 6.0255 16.25963 24.06079 4.377553 17.80841 23.40122 5.995381 19.32708 23.40121 7.08354 21.43372 23.40119 7.448118 23.73557 23.40119 7.083545 26.03742 23.40117 6.0255 28.11395 23.40116 4.377557 29.76189 23.40115 2.301025 30.81993 23.40114 2.301025 30.81993 23.40114 -8.25812e-4 31.18451 23.40114 -2.302677 30.81993 23.40114 -4.379207 29.76189 23.40115 -6.027149 28.11395 23.40116 -7.085193 26.03742 23.40117 -7.449771 23.73557 23.40119 -7.085193 21.43372 23.40119 -6.027148 19.35719 23.40121 -4.379205 17.80841 23.40122 -6.027149 16.25963 23.40123 -7.085194 14.1831 23.40124 -7.449771 11.88125 23.40126 -7.085193 9.579397 23.40127 -6.027149 7.502868 23.40128 -4.379205 5.854925 23.40129 -2.302676 4.796881 23.40133 -8.26057e-4 4.432303 23.40133 2.301024 4.796882 23.40133 4.377553 5.854926 23.4013 6.025496 7.50287 23.4013 7.08354 9.579397 23.40128 7.448118 11.88125 23.40126 7.083545 14.1831 23.40124 6.0255 16.25963 23.40123 3.087093 19.48655 23.4012 4.249019 20.64848 23.40119 4.995022 22.11259 23.40119 5.252077 23.73557 23.40118 4.995025 25.35855 23.40117 4.249022 26.82266 23.40115 3.087095 27.98459 23.40115 1.622982 28.73059 23.40115 1.622982 28.73059 23.40115 -8.26049e-4 28.98765 23.40115 -1.622982 28.73059 23.40115 -3.087095 27.98459 23.40116 -4.249021 26.82266 23.40116 -4.995023 25.35855 23.40117 -5.252078 23.73557 23.40119 -4.995023 22.11259 23.40119 -4.24902 20.64848 23.40119 -3.087094 19.48655 23.40121 1.964123 17.80841 23.40122 1.622981 18.74055 23.4012 -1.952608 17.80841 23.40122 -1.622981 18.74055 23.40121 0 17.80841 23.40122 0 18.48349 23.40121 -3.087095 16.13027 23.40123 -4.249021 14.96834 23.40123 -4.995023 13.50423 23.40125 -5.252078 11.87927 23.40126 -4.995023 10.25827 23.40127 -4.24902 8.794155 23.40127 -3.087094 7.632228 23.40128 -1.622981 6.886226 23.4013 0 6.629172 23.4013 1.622981 6.886226 23.4013 3.087093 7.632228 23.4013 4.249019 8.794155 23.40128 4.995022 10.25827 23.40128 5.252077 11.87927 23.40126 4.995026 13.50423 23.40125 3.087095 16.13027 23.40123 4.249022 14.96834 23.40123 1.622982 16.87627 23.40123 -1.622982 16.87627 23.40123 -2.7634e-4 17.13333 23.40123 -2.271512 15.00772 2.693123 -3.126468 14.15276 2.693124 -3.675383 13.07545 2.693132 -3.864526 11.87979 2.693143 -3.675383 10.68705 2.693151 -3.126467 9.609737 2.693155 -2.271512 8.754781 2.693163 -1.194204 8.205867 2.693173 0 8.016724 2.693175 1.194204 8.205867 2.693173 2.271511 8.754781 2.693169 3.126467 9.609737 2.693162 3.675382 10.68705 2.693156 3.864525 11.87979 2.693143 3.675385 13.07545 2.693132 2.271512 15.00772 2.693123 3.126469 14.15276 2.693124 1.194204 15.55663 2.693113 -1.194205 15.55663 2.693114 -1.52645e-4 15.74578 2.693113 2.271511 20.6091 2.693027 3.126467 21.46406 2.693021 3.675382 22.54136 2.693015 3.864525 23.73557 2.693005 3.675384 24.92977 2.692996 3.126469 26.00708 2.692992 2.271512 26.86203 2.692986 1.194205 27.41095 2.692987 -6.08e-4 27.60009 2.692981 -1.194205 27.41095 2.692982 -2.271513 26.86203 2.692991 -3.126468 26.00708 2.692996 -3.675383 24.92977 2.693001 -3.864527 23.73557 2.693011 -3.675383 22.54136 2.693018 -3.126467 21.46406 2.693026 -2.271512 20.6091 2.693032 1.194204 20.06019 2.69303 -1.194204 20.06019 2.693036 0 19.87104 2.693036 -6.748767 16.96378 2.693076 -7.23017 15.52961 2.69308 -7.357837 13.49943 2.693097 -7.265738 11.505 2.693118 -7.080448 9.682272 2.693134 -6.443279 7.227396 2.693144 -4.890263 4.276201 2.693164 -2.570964 3.104351 2.69318 0 2.942343 2.693186 2.600935 3.07438 2.69318 4.890265 4.276201 2.693172 6.281309 6.840327 2.693157 6.983521 9.206885 2.693144 7.300809 11.5423 2.693118 7.313204 13.16369 2.693097 6.879713 16.3614 2.693077 7.210407 14.75101 2.693083 6.465795 17.29739 2.693054 -6.482143 17.5952 2.693057 6.82367 18.94719 2.693033 7.095135 20.26815 2.69302 7.380226 22.27116 2.693008 7.25504 24.0371 2.69299 6.903884 26.19532 2.692972 6.010249 29.35781 2.692962 4.830745 31.41998 2.692947 2.292534 32.52116 2.692939 -0.001308047 32.61888 2.692937 -2.375885 32.42006 2.692939 -4.890264 31.34061 2.692956 -6.124367 29.2858 2.692967 -6.914015 26.37837 2.69298 -7.293477 24.46979 2.693001 -7.413314 22.64443 2.693014 -7.368863 21.14129 2.693028 -6.887461 19.01365 2.693041 6.577876 18.43151 2.69304 -6.482143 18.21579 2.693051 -8.226775 16.93053 -5.30835 -8.226417 15.49166 -5.308346 -8.240147 13.34306 -5.308329 -8.247241 11.26744 -5.308308 -7.902426 9.442091 -5.30829 -7.012067 6.797838 -5.308283 -5.357385 3.493938 -5.308262 -2.743366 2.596422 -5.308245 0.001464534 2.463602 -5.308243 2.635793 2.636795 -5.308245 5.628677 3.601283 -5.308254 6.838691 6.395015 -5.308266 7.620941 8.857901 -5.308281 8.288343 11.41361 -5.308308 8.588086 12.99366 -5.308329 8.833076 16.30364 -5.308348 8.744554 14.62769 -5.308346 8.829791 17.24194 -5.308374 -8.226775 17.58765 -5.308369 8.807854 18.92311 -5.308392 8.744315 20.1905 -5.308407 8.482133 22.40027 -5.308418 8.220633 24.18442 -5.308435 7.748946 26.43049 -5.308453 6.943448 29.51522 -5.308464 5.906286 32.17695 -5.308481 2.191817 33.09198 -5.308487 0 33.22285 -5.308489 -2.828758 33.01594 -5.308487 -5.661529 32.28615 -5.30847 -6.429344 30.94729 -5.30846 -7.703372 26.74622 -5.308445 -8.226775 24.84941 -5.30843 -8.226775 22.84241 -5.308413 -8.226775 21.27808 -5.308397 -8.226775 19.06384 -5.308384 8.808668 18.31488 -5.308386 -8.226775 18.23351 -5.308376 -3.087095 16.13027 10.14377 -4.249021 14.96834 10.14377 -4.995023 13.50423 10.14377 -5.252078 11.87927 10.14377 -4.995023 10.25827 10.14377 -4.24902 8.794155 10.14377 -3.087094 7.632228 10.14377 -1.622981 6.886226 10.14377 0 6.629172 10.14377 1.622981 6.886226 10.14377 3.087093 7.632228 10.14377 4.24902 8.794155 10.14377 4.995022 10.25827 10.14377 5.252077 11.87927 10.14377 4.995026 13.50423 10.14377 3.087095 16.13027 10.14377 4.249022 14.96834 10.14377 1.622982 16.87627 10.14377 -1.622982 16.87627 10.14377 -2.35732e-4 17.13333 10.14377 3.087093 19.48655 10.14377 4.24902 20.64848 10.14377 4.995022 22.11259 10.14377 5.252077 23.73557 10.14377 4.995025 25.35855 10.14377 4.249022 26.82266 10.14377 3.087095 27.98459 10.14377 1.622982 28.73059 10.14377 1.622982 28.73059 10.14377 -8.26046e-4 28.98764 10.14377 -1.622982 28.73059 10.14377 -3.087095 27.98458 10.14377 -4.249021 26.82266 10.14377 -4.995023 25.35855 10.14377 -5.252078 23.73557 10.14377 -4.995023 22.11259 10.14377 -4.24902 20.64848 10.14377 -3.087094 19.48655 10.14377 1.622981 18.74055 10.14377 -1.622981 18.74055 10.14377 0 18.48349 10.14377 -2.271512 15.00772 10.14377 -3.126468 14.15276 10.14377 -3.675383 13.07545 10.14377 -3.864526 11.87979 10.14377 -3.675383 10.68705 10.14377 -3.126467 9.609737 10.14377 -2.271512 8.754781 10.14377 -1.194204 8.205867 10.14377 0 8.016724 10.14377 1.194204 8.205867 10.14377 2.271511 8.754781 10.14377 3.126467 9.609737 10.14377 3.675382 10.68705 10.14377 3.864525 11.87979 10.14377 3.675385 13.07545 10.14377 2.271512 15.00772 10.14377 3.126469 14.15276 10.14377 1.194204 15.55663 10.14377 -1.194205 15.55663 10.14377 -1.6997e-4 15.74578 10.14377 2.271511 20.6091 10.14377 3.126467 21.46406 10.14377 3.675382 22.54136 10.14377 3.864525 23.73557 10.14377 3.675384 24.92977 10.14377 3.126469 26.00708 10.14377 2.271512 26.86203 10.14377 1.194205 27.41095 10.14377 1.194205 27.41095 10.14377 -6.08001e-4 27.60009 10.14377 -1.194205 27.41095 10.14377 -2.271513 26.86203 10.14377 -3.126468 26.00708 10.14377 -3.675383 24.92977 10.14377 -3.864527 23.73557 10.14377 -3.675383 22.54136 10.14377 -3.126467 21.46406 10.14377 -2.271512 20.6091 10.14377 1.194204 20.06019 10.14377 -1.194204 20.06019 10.14377 0 19.87104 10.14377</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camHousingShape-positions-array\" count=\"477\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camHousingShape-normals\" name=\"camHousingShape-normals\">\r\n          <float_array id=\"camHousingShape-normals-array\" count=\"4656\">0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 -0.2286485 0.9735091 0 -0.2286485 0.9735091 0 -0.2286485 0.9735091 0 -0.2286485 0.9735091 0 -0.9549363 0.2968112 0 -0.9549363 0.2968112 0 -0.9549363 0.2968112 0 -0.9549363 0.2968112 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9467088 -0.322091 0 -0.9467088 -0.322091 0 -0.9467088 -0.322091 0 -0.9467088 -0.322091 0 -0.2512973 -0.9679101 0 -0.2512973 -0.9679101 0 -0.2512973 -0.9679101 0 -0.2512973 -0.9679101 0 0.2462625 0.9692032 0 0.2462625 0.9692032 0 0.2462625 0.9692032 0 0.2462625 0.9692032 0 0.9436488 0.3309486 0 0.9436488 0.3309486 0 0.9436488 0.3309486 0 0.9436488 0.3309486 0 0.9675107 0.2528301 0 0.9675107 0.2528301 0 0.9675107 0.2528301 0 0.9675107 0.2528301 0 0.98623 0.1653799 0 0.98623 0.1653799 0 0.98623 0.1653799 0 0.98623 0.1653799 0 0.9975005 0.07065918 0 0.9975005 0.07065918 0 0.9975005 0.07065918 0 0.9975005 0.07065918 0 0.9999994 -0.001065083 0 0.9999994 -0.001065083 0 0.9999994 -0.001065083 0 0.9999994 -0.001065083 0 0.9976771 -0.06812079 0 0.9976771 -0.06812079 0 0.9976771 -0.06812079 0 0.9976771 -0.06812079 0 0.9831846 -0.1826144 0 0.9831846 -0.1826144 0 0.9831846 -0.1826144 0 0.9831846 -0.1826144 0 0.9528074 -0.3035756 0 0.9528074 -0.3035756 0 0.9528074 -0.3035756 0 0.9528074 -0.3035756 0 0.9370023 -0.3493235 0 0.9370023 -0.3493235 0 0.9370023 -0.3493235 0 0.9370023 -0.3493235 0 0.2468616 -0.9690508 0 0.2468616 -0.9690508 0 0.2468616 -0.9690508 0 0.2468616 -0.9690508 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.6844087 0.7290986 0 -0.6844087 0.7290986 0 -0.6844087 0.7290986 0 -0.6844087 0.7290986 0 -0.888473 0.458929 0 -0.888473 0.458929 0 -0.888473 0.458929 0 -0.888473 0.458929 0 -0.9876884 0.1564343 0 -0.9876884 0.1564343 0 -0.9876884 0.1564343 0 -0.9876884 0.1564343 0 -0.9876885 -0.1564332 0 -0.9876885 -0.1564332 0 -0.9876885 -0.1564332 0 -0.9876885 -0.1564332 0 -0.8910064 -0.4539909 0 -0.8910064 -0.4539909 0 -0.8910064 -0.4539909 0 -0.8910064 -0.4539909 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.4539902 -0.8910068 0 -0.4539902 -0.8910068 0 -0.4539902 -0.8910068 0 -0.4539902 -0.8910068 0 -0.1564347 -0.9876883 0 -0.1564347 -0.9876883 0 -0.1564347 -0.9876883 0 -0.1564347 -0.9876883 0 0.1564347 -0.9876883 0 0.1564347 -0.9876883 0 0.1564347 -0.9876883 0 0.1564347 -0.9876883 0 0.4539905 -0.8910065 0 0.4539905 -0.8910065 0 0.4539905 -0.8910065 0 0.4539905 -0.8910065 0 0.7071072 -0.7071064 0 0.7071072 -0.7071064 0 0.7071072 -0.7071064 0 0.7071072 -0.7071064 0 0.8910063 -0.453991 0 0.8910063 -0.453991 0 0.8910063 -0.453991 0 0.8910063 -0.453991 0 0.9876882 -0.1564354 0 0.9876882 -0.1564354 0 0.9876882 -0.1564354 0 0.9876882 -0.1564354 0 0.9876884 0.1564344 0 0.9876884 0.1564344 0 0.9876884 0.1564344 0 0.9876884 0.1564344 0 0.8910065 0.4539906 0 0.8910065 0.4539906 0 0.8910065 0.4539906 0 0.8910065 0.4539906 0 0.6848426 0.728691 0 0.6848426 0.728691 0 0.6848426 0.728691 0 0.6848426 0.728691 0 0.6848426 -0.7286911 0 0.6848426 -0.7286911 0 0.6848426 -0.7286911 0 0.6848426 -0.7286911 0 0.8910065 -0.4539905 0 0.8910065 -0.4539905 0 0.8910065 -0.4539905 0 0.8910065 -0.4539905 0 0.9876883 -0.1564349 0 0.9876883 -0.1564349 0 0.9876883 -0.1564349 0 0.9876883 -0.1564349 0 0.9876883 0.1564352 0 0.9876883 0.1564352 0 0.9876883 0.1564352 0 0.9876883 0.1564352 0 0.8910068 0.4539899 0 0.8910068 0.4539899 0 0.8910068 0.4539899 0 0.8910068 0.4539899 0 0.7071066 0.7071071 0 0.7071066 0.7071071 0 0.7071066 0.7071071 0 0.7071066 0.7071071 0 0.4539892 0.8910073 0 0.4539892 0.8910073 0 0.4539892 0.8910073 0 0.4539892 0.8910073 0 0.1564345 0.9876884 0 0.1564345 0.9876884 0 0.1564345 0.9876884 0 0.1564345 0.9876884 0 -0.1564351 0.9876882 0 -0.1564351 0.9876882 0 -0.1564351 0.9876882 0 -0.1564351 0.9876882 0 -0.4539911 0.8910062 0 -0.4539911 0.8910062 0 -0.4539911 0.8910062 0 -0.4539911 0.8910062 0 -0.7071061 0.7071075 0 -0.7071061 0.7071075 0 -0.7071061 0.7071075 0 -0.7071061 0.7071075 0 -0.8910066 0.4539904 0 -0.8910066 0.4539904 0 -0.8910066 0.4539904 0 -0.8910066 0.4539904 0 -0.9876884 0.1564339 0 -0.9876884 0.1564339 0 -0.9876884 0.1564339 0 -0.9876884 0.1564339 0 -0.9876887 -0.1564328 0 -0.9876887 -0.1564328 0 -0.9876887 -0.1564328 0 -0.9876887 -0.1564328 0 -0.6848404 -0.7286931 0 -0.6848404 -0.7286931 0 -0.6848404 -0.7286931 0 -0.6848404 -0.7286931 0 -0.8910063 -0.453991 0 -0.8910063 -0.453991 0 -0.8910063 -0.453991 0 -0.8910063 -0.453991 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.7071075 -0.7071061 0 0.7071075 -0.7071061 0 0.5000001 -0.4999994 0.7071071 0.5000001 -0.4999994 0.7071071 0.8910063 -0.453991 0 0.8910063 -0.453991 0 0.6300367 -0.3210198 0.7071068 0.6300367 -0.3210198 0.7071068 0.9877179 -0.1562485 0 0.9877179 -0.1562485 0 0.6984223 -0.1104845 0.7071064 0.6984223 -0.1104845 0.7071064 0.9876589 0.1566211 0 0.9876589 0.1566211 0 0.6983802 0.1107478 0.7071068 0.6983802 0.1107478 0.7071068 0.8910062 0.453991 0 0.8910062 0.453991 0 0.6300362 0.3210201 0.7071072 0.6300362 0.3210201 0.7071072 0.7071073 0.7071063 0 0.7071073 0.7071063 0 0.4999999 0.4999995 0.7071071 0.4999999 0.4999995 0.7071071 0.4539902 0.8910067 0 0.4539902 0.8910067 0 0.3210196 0.6300366 0.7071069 0.3210196 0.6300366 0.7071069 0.1564339 0.9876884 0 0.1564339 0.9876884 0 0.1106155 0.6984009 0.7071069 0.1106155 0.6984009 0.7071069 -0.156434 0.9876884 0 -0.156434 0.9876884 0 -0.1106152 0.698401 0.7071071 -0.1106152 0.698401 0.7071071 -0.4539902 0.8910067 0 -0.4539902 0.8910067 0 -0.3210196 0.6300366 0.7071069 -0.3210196 0.6300366 0.7071069 -0.7071071 0.7071065 0 -0.7071071 0.7071065 0 -0.4999998 0.4999997 0.7071071 -0.4999998 0.4999997 0.7071071 -0.8910068 0.4539901 0 -0.8910068 0.4539901 0 -0.6300363 0.3210195 0.7071072 -0.6300363 0.3210195 0.7071072 -0.9876589 0.1566211 0 -0.9876589 0.1566211 0 -0.6983799 0.1107478 0.707107 -0.6983799 0.1107478 0.707107 -0.9877182 -0.1562461 0 -0.9877182 -0.1562461 0 -0.6984226 -0.1104828 0.7071064 -0.6984226 -0.1104828 0.7071064 -0.7071071 -0.7071065 0 -0.7071071 -0.7071065 0 -0.4999998 -0.4999997 0.7071071 -0.4999998 -0.4999997 0.7071071 -0.8910064 -0.4539908 0 -0.8910064 -0.4539908 0 -0.6300368 -0.3210197 0.7071068 -0.6300368 -0.3210197 0.7071068 -0.4539892 -0.8910073 0 -0.4539892 -0.8910073 0 -0.3210188 -0.6300371 0.7071068 -0.3210188 -0.6300371 0.7071068 0.4539894 -0.8910072 0 0.4539894 -0.8910072 0 0.321019 -0.630037 0.7071069 0.321019 -0.630037 0.7071069 -0.1564117 -0.987692 0 -0.1564117 -0.987692 0 -0.1105998 -0.6984038 0.7071066 -0.1105998 -0.6984038 0.7071066 0.1564598 -0.9876843 0 0.1564598 -0.9876843 0 0.1106338 -0.6983981 0.7071069 0.1106338 -0.6983981 0.7071069 -0.7071079 0.7071056 0 -0.7071079 0.7071056 0 -0.5000007 0.4999994 0.7071066 -0.5000007 0.4999994 0.7071066 -0.8910062 0.4539911 0 -0.8910062 0.4539911 0 -0.6300365 0.3210202 0.7071068 -0.6300365 0.3210202 0.7071068 -0.9876884 0.1564345 0 -0.9876884 0.1564345 0 -0.6984009 0.1106159 0.7071069 -0.6984009 0.1106159 0.7071069 -0.9876887 -0.1564324 0 -0.9876887 -0.1564324 0 -0.6984016 -0.1106146 0.7071065 -0.6984016 -0.1106146 0.7071065 -0.8910066 -0.4539904 0 -0.8910066 -0.4539904 0 -0.6300368 -0.3210196 0.7071068 -0.6300368 -0.3210196 0.7071068 -0.7071064 -0.7071072 0 -0.7071064 -0.7071072 0 -0.4999997 -0.5000003 0.7071068 -0.4999997 -0.5000003 0.7071068 -0.4539911 -0.8910064 0 -0.4539911 -0.8910064 0 -0.3210199 -0.6300364 0.7071069 -0.3210199 -0.6300364 0.7071069 -0.1563564 -0.9877008 0 -0.1563564 -0.9877008 0 -0.1105606 -0.6984098 0.7071067 -0.1105606 -0.6984098 0.7071067 0.1565134 -0.9876758 0 0.1565134 -0.9876758 0 0.110672 -0.6983922 0.7071067 0.110672 -0.6983922 0.7071067 0.4539902 -0.8910066 0 0.4539902 -0.8910066 0 0.3210193 -0.6300368 0.7071069 0.3210193 -0.6300368 0.7071069 0.7071065 -0.7071071 0 0.7071065 -0.7071071 0 0.4999995 -0.5000002 0.7071069 0.4999995 -0.5000002 0.7071069 0.8910066 -0.4539906 0 0.8910066 -0.4539906 0 0.6300367 -0.3210198 0.7071068 0.6300367 -0.3210198 0.7071068 0.9876884 -0.1564343 0 0.9876884 -0.1564343 0 0.6984013 -0.1106157 0.7071066 0.6984013 -0.1106157 0.7071066 0.9876884 0.1564348 0 0.9876884 0.1564348 0 0.6984009 0.1106163 0.7071068 0.6984009 0.1106163 0.7071068 0.891006 0.4539916 0 0.891006 0.4539916 0 0.6300364 0.3210202 0.7071068 0.6300364 0.3210202 0.7071068 0.7071081 0.7071055 0 0.7071081 0.7071055 0 0.5000009 0.499999 0.7071068 0.5000009 0.499999 0.7071068 -0.4539894 0.8910071 0 -0.4539894 0.8910071 0 -0.3210192 0.6300374 0.7071064 -0.3210192 0.6300374 0.7071064 0.4539895 0.8910071 0 0.4539895 0.8910071 0 0.321019 0.6300371 0.7071068 0.321019 0.6300371 0.7071068 -0.1564358 0.9876881 0 -0.1564358 0.9876881 0 -0.1106171 0.6984012 0.7071065 -0.1106171 0.6984012 0.7071065 0.1564358 0.9876882 0 0.1564358 0.9876882 0 0.1106171 0.6984011 0.7071066 0.1106171 0.6984011 0.7071066 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.9751065 -0.1632662 -0.150038 0.9751065 -0.1632662 -0.150038 0.9751065 -0.1632662 -0.150038 0.9751065 -0.1632662 -0.150038 0.9926671 -0.03358997 -0.1161201 0.9926671 -0.03358997 -0.1161201 0.9926671 -0.03358997 -0.1161201 0.9926671 -0.03358997 -0.1161201 0.9930136 0.02073864 -0.1161644 0.9930136 0.02073864 -0.1161644 0.9930136 0.02073864 -0.1161644 0.9930136 0.02073864 -0.1161644 0.9830356 0.1428445 -0.11505 0.9830356 0.1428445 -0.11505 0.9830356 0.1428445 -0.11505 0.9830356 0.1428445 -0.11505 0.9536234 0.2856735 -0.09483273 0.9536234 0.2856735 -0.09483273 0.9536234 0.2856735 -0.09483273 0.9536234 0.2856735 -0.09483273 0.8860658 0.4543859 -0.0917661 0.8860658 0.4543859 -0.0917661 0.8860658 0.4543859 -0.0917661 0.8860658 0.4543859 -0.0917661 0.3852651 0.9184609 -0.08944505 0.3852651 0.9184609 -0.08944505 0.3852651 0.9184609 -0.08944505 0.3852651 0.9184609 -0.08944505 0.05527096 0.9965426 -0.06203306 0.05527096 0.9965426 -0.06203306 0.05527096 0.9965426 -0.06203306 0.05527096 0.9965426 -0.06203306 -0.05810853 0.9966702 -0.05720143 -0.05810853 0.9966702 -0.05720143 -0.05810853 0.9966702 -0.05720143 -0.05810853 0.9966702 -0.05720143 -0.3781542 0.9220706 -0.08237419 -0.3781542 0.9220706 -0.08237419 -0.3781542 0.9220706 -0.08237419 -0.3781542 0.9220706 -0.08237419 -0.894824 0.4344062 -0.1028656 -0.894824 0.4344062 -0.1028656 -0.894824 0.4344062 -0.1028656 -0.894824 0.4344062 -0.1028656 -0.9523526 0.2927308 -0.08563403 -0.9523526 0.2927308 -0.08563403 -0.9523526 0.2927308 -0.08563403 -0.9523526 0.2927308 -0.08563403 -0.9749269 0.1962729 -0.1048543 -0.9749269 0.1962729 -0.1048543 -0.9749269 0.1962729 -0.1048543 -0.9749269 0.1962729 -0.1048543 -0.9853241 0.0960668 -0.1410943 -0.9853241 0.0960668 -0.1410943 -0.9853241 0.0960668 -0.1410943 -0.9853241 0.0960668 -0.1410943 -0.974712 -0.07182726 -0.2116067 -0.974712 -0.07182726 -0.2116067 -0.974712 -0.07182726 -0.2116067 -0.974712 -0.07182726 -0.2116067 -0.9847575 0.01640498 -0.1731581 -0.9847575 0.01640498 -0.1731581 -0.9847575 0.01640498 -0.1731581 -0.9847575 0.01640498 -0.1731581 -0.944284 -0.2101976 -0.2532682 -0.944284 -0.2101976 -0.2532682 -0.944284 -0.2101976 -0.2532682 -0.944284 -0.2101976 -0.2532682 0.9608462 -0.1988226 -0.1929874 0.9608462 -0.1988226 -0.1929874 0.9608462 -0.1988226 -0.1929874 0.9608462 -0.1988226 -0.1929874 -0.9720958 0.07808818 -0.2212059 -0.9720958 0.07808818 -0.2212059 -0.9720958 0.07808818 -0.2212059 -0.9720958 0.07808818 -0.2212059 -0.9855315 0.005357944 -0.1694076 -0.9855315 0.005357944 -0.1694076 -0.9855315 0.005357944 -0.1694076 -0.9855315 0.005357944 -0.1694076 -0.9857861 -0.1073757 -0.1292142 -0.9857861 -0.1073757 -0.1292142 -0.9857861 -0.1073757 -0.1292142 -0.9857861 -0.1073757 -0.1292142 -0.9764875 -0.1824353 -0.1148457 -0.9764875 -0.1824353 -0.1148457 -0.9764875 -0.1824353 -0.1148457 -0.9764875 -0.1824353 -0.1148457 -0.9587724 -0.2607696 -0.1129375 -0.9587724 -0.2607696 -0.1129375 -0.9587724 -0.2607696 -0.1129375 -0.9587724 -0.2607696 -0.1129375 -0.8967988 -0.4208186 -0.1366148 -0.8967988 -0.4208186 -0.1366148 -0.8967988 -0.4208186 -0.1366148 -0.8967988 -0.4208186 -0.1366148 -0.3054404 -0.9472373 -0.09720059 -0.3054404 -0.9472373 -0.09720059 -0.3054404 -0.9472373 -0.09720059 -0.3054404 -0.9472373 -0.09720059 -0.05075989 -0.9960536 -0.07280716 -0.05075989 -0.9960536 -0.07280716 -0.05075989 -0.9960536 -0.07280716 -0.05075989 -0.9960536 -0.07280716 0.07750949 -0.9940355 -0.07671766 0.07750949 -0.9940355 -0.07671766 0.07750949 -0.9940355 -0.07671766 0.07750949 -0.9940355 -0.07671766 0.3183795 -0.9409634 -0.1149896 0.3183795 -0.9409634 -0.1149896 0.3183795 -0.9409634 -0.1149896 0.3183795 -0.9409634 -0.1149896 0.8529068 -0.5031287 -0.1393255 0.8529068 -0.5031287 -0.1393255 0.8529068 -0.5031287 -0.1393255 0.8529068 -0.5031287 -0.1393255 0.9554855 -0.2773882 -0.1005156 0.9554855 -0.2773882 -0.1005156 0.9554855 -0.2773882 -0.1005156 0.9554855 -0.2773882 -0.1005156 0.9665607 -0.2293273 -0.1147588 0.9665607 -0.2293273 -0.1147588 0.9665607 -0.2293273 -0.1147588 0.9665607 -0.2293273 -0.1147588 0.9934942 -0.03106711 -0.1095641 0.9934942 -0.03106711 -0.1095641 0.9934942 -0.03106711 -0.1095641 0.9934942 -0.03106711 -0.1095641 0.994518 0.01441087 -0.1035683 0.994518 0.01441087 -0.1035683 0.994518 0.01441087 -0.1035683 0.994518 0.01441087 -0.1035683 0.9849513 0.1092044 -0.13396 0.9849513 0.1092044 -0.13396 0.9849513 0.1092044 -0.13396 0.9849513 0.1092044 -0.13396 -0.9457999 0.2061527 -0.2509255 -0.9457999 0.2061527 -0.2509255 -0.9457999 0.2061527 -0.2509255 -0.9457999 0.2061527 -0.2509255 0.9540257 0.2374929 -0.1828446 0.9540257 0.2374929 -0.1828446 0.9540257 0.2374929 -0.1828446 0.9540257 0.2374929 -0.1828446 -0.9602998 0.03957298 -0.2761492 -0.9602998 0.03957298 -0.2761492 -0.9602998 0.03957298 -0.2761492 -0.9602998 0.03957298 -0.2761492 0.9770446 0 -0.2130352 0.9770446 0 -0.2130352 0.9770446 0 -0.2130352 0.9770446 0 -0.2130352 0.4999999 -0.4999996 0.7071071 0.4999999 -0.4999996 0.7071071 0.6300367 -0.3210197 0.7071068 0.6300367 -0.3210197 0.7071068 0.6984224 -0.110484 0.7071064 0.6984224 -0.110484 0.7071064 0.6983802 0.1107477 0.7071068 0.6983802 0.1107477 0.7071068 0.6300363 0.3210196 0.7071072 0.6300363 0.3210196 0.7071072 0.4999999 0.4999996 0.7071071 0.4999999 0.4999996 0.7071071 0.3210191 0.6300369 0.7071069 0.3210191 0.6300369 0.7071069 0.1106158 0.6984009 0.707107 0.1106158 0.6984009 0.707107 -0.1106155 0.6984009 0.7071071 -0.1106155 0.6984009 0.7071071 -0.3210191 0.6300368 0.7071069 -0.3210191 0.6300368 0.7071069 -0.4999999 0.4999996 0.7071071 -0.4999999 0.4999996 0.7071071 -0.6300364 0.3210194 0.7071073 -0.6300364 0.3210194 0.7071073 -0.6983799 0.1107478 0.707107 -0.6983799 0.1107478 0.707107 -0.6984226 -0.1104823 0.7071064 -0.6984226 -0.1104823 0.7071064 -0.4999996 -0.4999999 0.7071071 -0.4999996 -0.4999999 0.7071071 -0.6300367 -0.32102 0.7071068 -0.6300367 -0.32102 0.7071068 -0.3210189 -0.6300371 0.7071068 -0.3210189 -0.6300371 0.7071068 0.3210191 -0.6300368 0.7071069 0.3210191 -0.6300368 0.7071069 -0.1106017 -0.6984034 0.7071068 -0.1106017 -0.6984034 0.7071068 0.1106309 -0.6983986 0.7071069 0.1106309 -0.6983986 0.7071069 -0.5000011 0.499999 0.7071066 -0.5000011 0.499999 0.7071066 -0.6300365 0.3210203 0.7071068 -0.6300365 0.3210203 0.7071068 -0.6984009 0.110616 0.7071069 -0.6984009 0.110616 0.7071069 -0.6984016 -0.1106147 0.7071065 -0.6984016 -0.1106147 0.7071065 -0.6300371 -0.3210192 0.7071068 -0.6300371 -0.3210192 0.7071068 -0.4999992 -0.5000006 0.7071068 -0.4999992 -0.5000006 0.7071068 -0.3210205 -0.6300361 0.707107 -0.3210205 -0.6300361 0.707107 -0.1105603 -0.6984099 0.7071067 -0.1105603 -0.6984099 0.7071067 0.1106716 -0.6983923 0.7071067 0.1106716 -0.6983923 0.7071067 0.3210195 -0.6300367 0.7071069 0.3210195 -0.6300367 0.7071069 0.4999998 -0.5 0.7071069 0.4999998 -0.5 0.7071069 0.6300368 -0.3210196 0.7071068 0.6300368 -0.3210196 0.7071068 0.6984013 -0.110616 0.7071066 0.6984013 -0.110616 0.7071066 0.698401 0.1106164 0.7071068 0.698401 0.1106164 0.7071068 0.6300365 0.3210201 0.7071068 0.6300365 0.3210201 0.7071068 0.5000009 0.4999991 0.7071067 0.5000009 0.4999991 0.7071067 -0.3210191 0.6300374 0.7071064 -0.3210191 0.6300374 0.7071064 0.3210195 0.6300368 0.7071068 0.3210195 0.6300368 0.7071068 -0.1106166 0.6984013 0.7071065 -0.1106166 0.6984013 0.7071065 0.1106166 0.6984011 0.7071066 0.1106166 0.6984011 0.7071066 0.7071072 -0.7071064 0 0.7071072 -0.7071064 0 0.8910064 -0.4539908 0 0.8910064 -0.4539908 0 0.9877179 -0.1562478 0 0.9877179 -0.1562478 0 0.9876588 0.1566211 0 0.9876588 0.1566211 0 0.8910066 0.4539904 0 0.8910066 0.4539904 0 0.7071072 0.7071064 0 0.7071072 0.7071064 0 0.4539894 0.8910071 0 0.4539894 0.8910071 0 0.1564343 0.9876884 0 0.1564343 0.9876884 0 -0.1564343 0.9876884 0 -0.1564343 0.9876884 0 -0.4539895 0.8910071 0 -0.4539895 0.8910071 0 -0.7071072 0.7071064 0 -0.7071072 0.7071064 0 -0.8910069 0.45399 0 -0.8910069 0.45399 0 -0.9876588 0.1566211 0 -0.9876588 0.1566211 0 -0.9877183 -0.1562454 0 -0.9877183 -0.1562454 0 -0.7071068 -0.7071068 0 -0.7071068 -0.7071068 0 -0.8910062 -0.4539913 0 -0.8910062 -0.4539913 0 -0.4539892 -0.8910072 0 -0.4539892 -0.8910072 0 0.4539894 -0.8910071 0 0.4539894 -0.8910071 0 -0.1564145 -0.9876916 0 -0.1564145 -0.9876916 0 0.1564557 -0.9876851 0 0.1564557 -0.9876851 0 -0.7071085 0.7071051 0 -0.7071085 0.7071051 0 -0.8910062 0.4539913 0 -0.8910062 0.4539913 0 -0.9876884 0.1564346 0 -0.9876884 0.1564346 0 -0.9876887 -0.1564325 0 -0.9876887 -0.1564325 0 -0.8910069 -0.4539898 0 -0.8910069 -0.4539898 0 -0.7071059 -0.7071078 0 -0.7071059 -0.7071078 0 -0.4539919 -0.8910058 0 -0.4539919 -0.8910058 0 -0.1563559 -0.9877008 0 -0.1563559 -0.9877008 0 0.1565127 -0.987676 0 0.1565127 -0.987676 0 0.4539906 -0.8910065 0 0.4539906 -0.8910065 0 0.7071068 -0.7071067 0 0.7071068 -0.7071067 0 0.8910066 -0.4539904 0 0.8910066 -0.4539904 0 0.9876883 -0.1564347 0 0.9876883 -0.1564347 0 0.9876884 0.1564349 0 0.9876884 0.1564349 0 0.8910061 0.4539914 0 0.8910061 0.4539914 0 0.707108 0.7071055 0 0.707108 0.7071055 0 -0.4539894 0.8910072 0 -0.4539894 0.8910072 0 0.4539902 0.8910068 0 0.4539902 0.8910068 0 -0.1564351 0.9876882 0 -0.1564351 0.9876882 0 0.1564351 0.9876883 0 0.1564351 0.9876883 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camHousingShape-normals-array\" count=\"1552\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camHousingShape-map1\" name=\"camHousingShape-map1\">\r\n          <float_array id=\"camHousingShape-map1-array\" count=\"1450\">0.4450482 0.5623602 0.4449583 0.5671014 0.4528708 0.5627766 0.4384212 0.5605435 0.4260696 0.562665 0.440599 0.5614129 0.4368439 0.5585895 0.437464 0.5596664 0.4356916 0.5562081 0.436295 0.5573868 0.4348507 0.5552415 0.4323545 0.5541863 0.433661 0.5546155 0.4301991 0.5531862 0.431191 0.5537566 0.4284864 0.5509069 0.4293336 0.5523229 0.427542 0.5486616 0.4251063 0.5408765 0.4164406 0.5316855 0.4264187 0.5453491 0.4228897 0.5303214 0.4238454 0.535692 0.4220614 0.5201304 0.4222943 0.5250608 0.4221812 0.5156779 0.4232169 0.5086768 0.4164406 0.4997476 0.4226145 0.5118265 0.4245346 0.5043555 0.4238536 0.5062606 0.4258459 0.501223 0.4252596 0.5027117 0.4260879 0.4998128 0.4251789 0.4967583 0.4258735 0.4983814 0.4233298 0.4912955 0.4242394 0.494518 0.4222432 0.4825871 0.4164406 0.4673413 0.4226237 0.4872248 0.4222072 0.4777548 0.4230304 0.4683772 0.4224948 0.4730345 0.4247113 0.4592285 0.4237525 0.4637112 0.4271245 0.4518617 0.4266706 0.4372729 0.425919 0.455189 0.4281011 0.4494313 0.4299633 0.4465508 0.4289836 0.4477357 0.4323617 0.4452252 0.4310948 0.4457523 0.4346482 0.4442567 0.4336002 0.4447925 0.4354965 0.4433984 0.4367484 0.440684 0.4361793 0.4421013 0.439301 0.438228 0.4435181 0.4328988 0.4374516 0.4394524 0.4437023 0.4369274 0.4607887 0.5671014 0.4606935 0.5623602 0.4651426 0.5614129 0.4791501 0.562436 0.4673204 0.5605435 0.4682777 0.5596664 0.4688978 0.5585895 0.4694467 0.5573868 0.4700501 0.5562081 0.470891 0.5552415 0.4720807 0.5546155 0.4733872 0.5541863 0.4745507 0.5537566 0.4755426 0.5531862 0.4764081 0.5523229 0.484508 0.5471587 0.4772553 0.5509069 0.4781997 0.5486616 0.479323 0.5453491 0.4806353 0.5408765 0.4818963 0.535692 0.4882552 0.5328192 0.482852 0.5303214 0.4834474 0.5250608 0.4907985 0.5176523 0.4836802 0.5201304 0.4835604 0.5156779 0.4831271 0.5118265 0.4917513 0.5042024 0.4825248 0.5086768 0.481888 0.5062606 0.4812071 0.5043555 0.480482 0.5027117 0.4917414 0.4948882 0.4798958 0.501223 0.4796538 0.4998128 0.4798681 0.4983814 0.4805628 0.4967583 0.4815023 0.494518 0.4824119 0.4912955 0.483118 0.4872248 0.4907628 0.4805565 0.4834985 0.4825871 0.4835345 0.4777548 0.4832469 0.4730345 0.4879407 0.4653624 0.4827113 0.4683772 0.4819891 0.4637112 0.4828842 0.4494922 0.4810303 0.4592285 0.4798226 0.455189 0.4786172 0.4518617 0.4776406 0.4494313 0.4767581 0.4477357 0.4783043 0.4372071 0.4757784 0.4465508 0.4746469 0.4457523 0.47338 0.4452252 0.4721415 0.4447925 0.4710935 0.4442567 0.4702451 0.4433984 0.4695624 0.4421013 0.4689932 0.440684 0.4682901 0.4394524 0.4613919 0.4328988 0.4664407 0.438228 0.4528708 0.4363316 0.4620394 0.4369274 0.3471141 0.1898203 0.3648195 0.1898203 0.3471141 0.6524295 0.3648195 0.6524295 0.3471142 0.243956 0.3648198 0.243956 0.3471145 0.3165387 0.3648199 0.3165387 0.347115 0.3969972 0.3648206 0.3969973 0.3471152 0.477456 0.3648212 0.477456 0.3471157 0.5500388 0.3648213 0.5500388 0.3471157 0.6076407 0.3648213 0.6076407 0.3471162 0.6446235 0.364822 0.6446235 0.3471162 0.657367 0.364822 0.657367 0.3471161 0.6446236 0.364822 0.6446236 0.3471155 0.6076407 0.364821 0.6076407 0.3471152 0.5500387 0.3648207 0.5500388 0.3471152 0.477456 0.3648211 0.477456 0.347115 0.3969972 0.3648207 0.3969973 0.3471145 0.3165387 0.3648198 0.3165387 0.3471143 0.2439561 0.3648198 0.2439561 0.3471141 0.1898203 0.3648195 0.1898203 0.3471138 0.5982935 0.3648195 0.5982935 0.3471136 0.5257108 0.364819 0.5257108 0.3471135 0.4452521 0.364819 0.4452521 0.3471131 0.3647935 0.3648186 0.3647935 0.3471128 0.2922109 0.3648186 0.2922111 0.3471126 0.2346089 0.3648182 0.2346089 0.3471123 0.1976259 0.3648182 0.197626 0.3471123 0.1976259 0.3471124 0.1848826 0.3648181 0.1848825 0.3648182 0.197626 0.3471123 0.1976259 0.3648182 0.197626 0.3471126 0.2346089 0.3648182 0.2346089 0.3471128 0.2922109 0.3648185 0.2922109 0.3471131 0.3647935 0.3648185 0.3647935 0.3471135 0.4452521 0.3648189 0.4452521 0.3471136 0.5257108 0.3648189 0.5257108 0.3471141 0.6524295 0.3471138 0.5993459 0.3648195 0.5993459 0.3648195 0.6524295 0.6658911 0.713456 0.7483748 0.713456 0.6658911 0.70278 0.7483748 0.70278 0.665891 0.7027797 0.7483747 0.7027797 0.6658911 0.671797 0.7483748 0.6717969 0.665891 0.6235397 0.7483747 0.6235397 0.665891 0.5627326 0.7483747 0.5627326 0.665891 0.495327 0.7483747 0.4953269 0.6658909 0.4279214 0.7483746 0.4279214 0.6658909 0.3671141 0.7483746 0.3671141 0.6658909 0.3188572 0.7483746 0.3188571 0.6658909 0.2878743 0.7483746 0.2878742 0.6658909 0.2878743 0.6658909 0.2771981 0.7483746 0.2771981 0.7483746 0.2878742 0.6658909 0.2878743 0.7483746 0.2878742 0.6658909 0.3188571 0.7483746 0.3188572 0.6658909 0.3671141 0.7483746 0.3671141 0.6658909 0.4279216 0.7483746 0.4279214 0.6658909 0.495327 0.7483747 0.495327 0.665891 0.5627326 0.7483747 0.5627325 0.665891 0.6717969 0.665891 0.6235397 0.7483747 0.6235397 0.7483747 0.6717967 0.6658911 0.2783137 0.7483748 0.2783137 0.6658911 0.2889898 0.7483748 0.2889898 0.6658911 0.2889898 0.7483748 0.2889898 0.6658911 0.3682298 0.6658911 0.3199726 0.7483748 0.3199725 0.7483748 0.3682297 0.6658911 0.4290371 0.7483748 0.4290371 0.6658912 0.4965248 0.7483749 0.4965249 0.6658912 0.5638481 0.7483749 0.5638481 0.6658912 0.6246555 0.7483749 0.6246557 0.6658912 0.6729126 0.3159952 0.3514575 0.3053432 0.3497701 0.3266509 0.3497701 0.3438893 0.3372457 0.3362619 0.3448731 0.3487863 0.3276348 0.3504737 0.3169678 0.3487863 0.306327 0.3438892 0.296716 0.3362619 0.2890887 0.3266509 0.2841917 0.315997 0.2825043 0.3053432 0.2841917 0.2957322 0.2890887 0.2881049 0.296716 0.2832078 0.306327 0.2815205 0.3169678 0.2832078 0.3276348 0.2957322 0.3448731 0.2881049 0.3372457 0.315997 0.355889 0.315997 0.3603204 0.3053432 0.3620079 0.3031794 0.355889 0.3288903 0.355889 0.3266509 0.3620079 0.2957322 0.3669049 0.2881049 0.3745323 0.2832078 0.3841432 0.2815205 0.3947971 0.2832078 0.4054509 0.2881049 0.4150619 0.2957322 0.4226892 0.3053432 0.4275863 0.3266509 0.4275863 0.3159916 0.4292737 0.3266509 0.4275863 0.3362619 0.4226892 0.3438893 0.4150619 0.3487863 0.4054509 0.3504737 0.3947971 0.3487863 0.3841432 0.3362619 0.3669049 0.3438892 0.3745323 0.3555507 0.3457222 0.3624961 0.3320911 0.3648893 0.3169809 0.362496 0.3018706 0.3555507 0.2882395 0.344733 0.2774218 0.3311019 0.2704765 0.3159916 0.2680832 0.3008814 0.2704764 0.2872503 0.2774218 0.2764325 0.2882395 0.2694872 0.3018706 0.2670939 0.3169809 0.2694872 0.3320911 0.2764325 0.3457222 0.2872503 0.355889 0.2764326 0.3660557 0.2694872 0.3796868 0.2670939 0.3947971 0.2694872 0.4099073 0.2764325 0.4235384 0.2872503 0.4343561 0.3008814 0.4413015 0.3311019 0.4413015 0.3159916 0.4436948 0.3311019 0.4413015 0.344733 0.4343561 0.3555507 0.4235384 0.3624961 0.4099073 0.3648893 0.3947971 0.362496 0.3796868 0.344733 0.355889 0.355353 0.365858 0.276274 0.3457222 0.2693286 0.3320911 0.2669354 0.3169809 0.2693286 0.3018706 0.276274 0.2882395 0.2870917 0.2774218 0.3007228 0.2704765 0.3159916 0.2680832 0.3008814 0.2704764 0.2872503 0.2774218 0.2764325 0.2882395 0.2694872 0.3018706 0.2670939 0.3169809 0.2694872 0.3320911 0.6955789 0.9264886 0.6955789 0.6679923 0.6367593 0.668425 0.6367593 0.9222206 0.657198 0.9264886 0.657198 0.6679922 0.6956552 0.6679922 0.6956552 0.9264886 0.3594915 0.6465046 0.3594915 0.583617 0.6405083 0.583617 0.6405085 0.6465045 0.6429796 0.4715559 0.3570204 0.4715559 0.3570205 0.5153501 0.6429796 0.5153501 0.6429794 0.4271194 0.3570201 0.4271194 0.6583456 0.6679923 0.6583456 0.9264886 0.3954686 0.2386686 0.3954686 0.3049233 0.6045313 0.3049233 0.6045313 0.2386686 0.8353655 0.5169808 0.8353655 0.2145436 0.7953127 0.2145436 0.7953127 0.5169808 0.7483748 0.3199725 0.7483748 0.3682297 0.6658911 0.3682298 0.6658911 0.3199726 0.7303393 0.8902006 0.2696608 0.8902006 0.2696608 0.7949961 0.7303393 0.7949961 0.2696608 0.7056342 0.7303392 0.7056343 0.2696608 0.6111175 0.7303392 0.6111175 0.2696608 0.5273002 0.7303393 0.5273002 0.2696608 0.4692566 0.7303393 0.4692566 0.2696608 0.3799444 0.7303393 0.3799444 0.2696605 0.285257 0.7303393 0.285257 0.2696605 0.1863574 0.7303392 0.1863574 0.2696605 0.109799 0.7303393 0.109799 0.7483748 0.4290371 0.6658911 0.4290371 0.7483749 0.4965249 0.6658912 0.4965248 0.7483749 0.5638481 0.6658912 0.5638479 0.7483749 0.6246555 0.6658912 0.6246555 0.7483749 0.6729128 0.6658912 0.6729128 0.748375 0.7038956 0.6658913 0.7038956 0.748375 0.7145714 0.6658912 0.7145714 0.748375 0.7038956 0.6658913 0.7038956 0.9180645 0.5169808 0.9180645 0.2145436 0.8778578 0.2145436 0.8778578 0.5169808 0.6051776 0.668425 0.6051776 0.9222206 0.2764325 0.3457222 0.748375 0.6729126 0.3038124 0.4583573 0.3039054 0.4583573 0.3044203 0.4545761 0.3041895 0.4545761 0.2751413 0.4516015 0.2767206 0.4480702 0.2604781 0.4044252 0.2626 0.4026397 0.2604781 0.3557895 0.2626 0.3558038 0.260478 0.3064405 0.2626 0.3082809 0.2760564 0.2606517 0.2776019 0.2641864 0.3017123 0.2539907 0.3023084 0.257772 0.2758512 0.4512528 0.277263 0.4477344 0.2676921 0.4279882 0.2694059 0.4253308 0.2619857 0.4061515 0.2639107 0.4043021 0.2581128 0.3830552 0.260181 0.3820605 0.2566619 0.3625733 0.2587838 0.3623365 0.2566769 0.3483896 0.2587983 0.3486777 0.2581672 0.326565 0.2602334 0.3276607 0.2624648 0.3034269 0.264372 0.3053789 0.2701648 0.2792596 0.271787 0.2821057 0.2771393 0.2605516 0.2785034 0.26409 0.3028938 0.2539907 0.3033049 0.257772 0.2870917 0.355889 0.2764717 0.365858 0.2693286 0.3796868 0.2669354 0.3947971 0.2693286 0.4099073 0.276274 0.4235384 0.2870916 0.4343561 0.3007228 0.4413015 0.3159916 0.4436948 0.3008814 0.4413015 0.3007228 0.4413015 0.2872503 0.4343561 0.2764325 0.4235384 0.2694872 0.4099073 0.2670939 0.3947971 0.2694872 0.3796868 0.2764326 0.3660557 0.2872503 0.355889 0.7228892 0.389439 0.7378442 0.3906199 0.7378442 0.3820565 0.7228879 0.3832373 0.707934 0.3906199 0.707934 0.3820565 0.694443 0.3786299 0.6837362 0.3732926 0.6562662 0.3758708 0.6607022 0.3824584 0.6768621 0.3665674 0.6550899 0.3665453 0.6744935 0.3591033 0.6559385 0.3573842 0.6768621 0.3516574 0.6576459 0.3490117 0.6837362 0.3449322 0.6635171 0.3377354 0.6944429 0.3395949 0.6778275 0.3241794 0.707934 0.3361683 0.6991988 0.3187967 0.7228892 0.3349875 0.7228892 0.3180525 0.7378442 0.3361683 0.7468557 0.318659 0.7513354 0.3395949 0.7679508 0.3241794 0.762042 0.3449322 0.7807687 0.3359575 0.7689161 0.3516574 0.7872392 0.346828 0.7712848 0.3591033 0.7901629 0.3575555 0.7689161 0.3665674 0.7902771 0.3650032 0.762042 0.3732926 0.7513354 0.3786299 0.7862827 0.3796915 0.7893299 0.3722944 0.7824687 0.3839908 0.663159 0.3853589 0.7513354 0.3940465 0.762042 0.3993837 0.7882677 0.3976367 0.7857662 0.391569 0.7689161 0.4061089 0.7908947 0.4068373 0.7712848 0.413564 0.7897412 0.4149491 0.7689161 0.4210189 0.7865055 0.4248626 0.762042 0.4277442 0.7805954 0.4353981 0.7513354 0.4330814 0.7706766 0.4505352 0.7378442 0.436508 0.7414313 0.4537909 0.7228814 0.4376888 0.722877 0.4543685 0.707934 0.436508 0.6989304 0.4534553 0.694443 0.4330814 0.6778275 0.4484969 0.6837362 0.4277442 0.6698131 0.443693 0.6768621 0.4210189 0.6591794 0.4257034 0.6744935 0.413564 0.6556829 0.4169365 0.6768621 0.4061089 0.6545786 0.408552 0.6837362 0.3993837 0.6549882 0.4016474 0.6944429 0.3940465 0.6594242 0.3918742 0.7835014 0.3892004 0.663159 0.3882094 0.7779791 0.8501523 0.7779793 0.7701476 0.6045455 0.7701476 0.6045454 0.8501523 0.7779796 0.6568947 0.6045458 0.6568947 0.77798 0.5456358 0.6045462 0.5456358 0.7779803 0.4439556 0.6045466 0.4439556 0.7779805 0.307011 0.6045467 0.307011 0.7779809 0.1423794 0.6045472 0.1423794 0.7779813 0.07700807 0.6045476 0.07700807 0.7779814 0.06797066 0.6045476 0.06797066 0.7779813 0.07533628 0.6045476 0.07533628 0.7779811 0.1423794 0.6045474 0.1423794 0.7779808 0.2854186 0.6045471 0.2854186 0.7779806 0.4174363 0.6045468 0.4174363 0.77798 0.5477166 0.6045462 0.5477166 0.7779796 0.6381656 0.6045458 0.6381656 0.7779793 0.7267135 0.7779791 0.8165489 0.6045454 0.8165489 0.6045455 0.7267135 0.7779787 0.8687627 0.6045449 0.8687627 0.7779787 0.8853759 0.6045451 0.8853759 0.803432 0.8854853 0.8034316 0.8067836 0.5597272 0.8067836 0.5597275 0.8854853 0.8034313 0.6874465 0.5597268 0.6874465 0.8034308 0.5822333 0.5597264 0.5822333 0.8034303 0.4536482 0.5597259 0.4536482 0.8034301 0.2652307 0.5597256 0.3169957 0.8034297 0.1423678 0.5597253 0.1206598 0.8034295 0.07676107 0.559725 0.07843101 0.8034295 0.07093883 0.559725 0.07093883 0.8034295 0.08278424 0.559725 0.08278424 0.80343 0.1470969 0.5597256 0.1470968 0.8034303 0.2695203 0.5597259 0.2094059 0.8034306 0.4427427 0.5597262 0.4427427 0.8034312 0.5564538 0.5597268 0.5564538 0.8034315 0.6652071 0.5597271 0.6652071 0.8034319 0.754763 0.5597275 0.754763 0.8034322 0.8815258 0.5597278 0.8815258 0.8034321 0.916209 0.5597278 0.916209 0.8034325 0.9290613 0.559728 0.9290612 0.7779784 0.9320295 0.6045446 0.9320295 0.7779787 0.9199955 0.6045449 0.9199955 0.699874 0.3199726 0.699874 0.3682298 0.6998739 0.4290371 0.699874 0.4965248 0.6998739 0.563848 0.6998739 0.6246555 0.6998739 0.6729128 0.6998739 0.7038956 0.6998739 0.7145714 0.6998739 0.7038956 0.6998739 0.6729126 0.6998739 0.6246556 0.6998739 0.5638481 0.699874 0.4965248 0.6998739 0.4290371 0.699874 0.3199726 0.699874 0.3682298 0.699874 0.2889898 0.699874 0.2889898 0.699874 0.2783137 0.699874 0.6717968 0.6998741 0.6235397 0.6998741 0.5627326 0.6998741 0.495327 0.6998742 0.4279215 0.6998742 0.3671141 0.6998742 0.3188572 0.6998742 0.2878743 0.6998742 0.2878743 0.6998742 0.2771981 0.6998742 0.2878743 0.6998742 0.3188572 0.6998742 0.3671141 0.6998741 0.4279214 0.6998741 0.4953269 0.6998741 0.5627326 0.699874 0.6235397 0.699874 0.6717969 0.699874 0.7027797 0.699874 0.70278 0.699874 0.713456 0.6940144 0.3199726 0.6940144 0.3682298 0.6940143 0.4290371 0.6940143 0.4965248 0.6940143 0.563848 0.6940143 0.6246555 0.6940143 0.6729128 0.6940143 0.7038956 0.6940143 0.7145714 0.6940143 0.7038956 0.6940143 0.6729126 0.6940143 0.6246556 0.6940143 0.5638481 0.6940143 0.4965248 0.6940143 0.4290371 0.6940144 0.3199726 0.6940144 0.3682298 0.6940144 0.2889898 0.6940144 0.2889898 0.6940144 0.2783137 0.6940144 0.6717968 0.6940144 0.6235397 0.6940145 0.5627326 0.6940144 0.495327 0.6940145 0.4279215 0.6940145 0.3671141 0.6940145 0.3188572 0.6940145 0.2878743 0.6940145 0.2878743 0.6940145 0.2771981 0.6940145 0.2878743 0.6940145 0.3188572 0.6940145 0.3671141 0.6940144 0.4279214 0.6940145 0.495327 0.6940145 0.5627326 0.6940144 0.6235397 0.6940144 0.6717969 0.6940144 0.7027796 0.6940144 0.70278 0.6940144 0.713456</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camHousingShape-map1-array\" count=\"725\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camHousingShape-vertices\" name=\"camHousingShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camHousingShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert4SG\" count=\"457\">\r\n          <input semantic=\"VERTEX\" source=\"#camHousingShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camHousingShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camHousingShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 4 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 4 3 4 3 3 4 3 3 4 3 3 3 3 3 3 3 4 3 3 4 4 3 3 3 3 4 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 4 3 4 4 3 3 3 3 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 3 3 4 4 4 4 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>6 0 0 112 1 1 0 2 2 5 3 3 113 4 4 112 5 1 7 6 5 7 7 5 112 8 1 6 9 0 8 10 6 113 11 4 9 12 7 9 13 7 113 14 4 5 15 3 4 16 8 113 17 4 10 18 9 10 19 9 113 20 4 8 21 6 12 22 10 113 23 4 4 24 8 11 25 11 113 26 4 13 27 12 13 28 12 113 29 4 12 30 10 14 31 13 113 32 4 15 33 14 15 34 14 113 35 4 11 36 11 3 37 15 113 38 4 16 39 16 16 40 16 113 41 4 14 42 13 19 43 17 113 44 4 3 45 15 18 46 18 114 47 19 113 48 4 20 49 20 20 50 20 113 51 4 19 52 17 21 53 21 114 54 19 22 55 22 22 56 22 114 57 19 18 58 18 17 59 23 114 60 19 23 61 24 23 62 24 114 63 19 21 64 21 25 65 25 114 66 19 17 67 23 24 68 26 115 69 27 26 70 28 26 71 28 115 72 27 114 73 19 25 74 25 27 75 29 115 76 27 28 77 30 28 78 30 115 79 27 24 80 26 2 81 31 115 82 27 29 83 32 29 84 32 115 85 27 27 86 29 33 87 33 115 88 27 2 89 31 32 90 34 115 91 27 34 92 35 34 93 35 115 94 27 33 95 33 35 96 36 115 97 27 36 98 37 36 99 37 115 100 27 32 101 34 31 102 38 116 103 39 115 104 27 37 105 40 37 106 40 115 107 27 35 108 36 39 109 41 116 110 39 31 111 38 38 112 42 116 113 39 40 114 43 40 115 43 116 116 39 39 117 41 41 118 44 116 119 39 42 120 45 42 121 45 116 122 39 38 123 42 30 124 46 117 125 47 116 126 39 43 127 48 43 128 48 116 129 39 41 130 44 46 131 49 117 132 47 30 133 46 45 134 50 117 135 47 47 136 51 47 137 51 117 138 47 46 139 49 48 140 52 117 141 47 49 142 53 49 143 53 117 144 47 45 145 50 44 146 54 117 147 47 50 148 55 50 149 55 117 150 47 48 151 52 52 152 56 117 153 47 44 154 54 51 155 57 117 156 47 53 157 58 53 158 58 117 159 47 52 160 56 54 161 59 118 162 60 117 163 47 55 164 61 55 165 61 117 166 47 51 167 57 56 168 62 118 169 60 54 170 59 0 171 2 119 172 63 61 173 64 62 174 65 119 175 63 120 176 66 60 177 67 61 178 64 119 179 63 62 180 65 64 181 68 120 182 66 63 183 69 60 184 67 120 185 66 64 186 68 65 187 70 120 188 66 59 189 71 63 190 69 120 191 66 65 192 70 59 193 71 120 194 66 67 195 72 68 196 73 120 197 66 66 198 74 67 199 72 120 200 66 68 201 73 70 202 75 120 203 66 69 204 76 66 205 74 120 206 66 70 207 75 71 208 77 120 209 66 121 210 78 58 211 79 69 212 76 120 213 66 71 214 77 58 215 79 121 216 78 74 217 80 75 218 81 121 219 78 73 220 82 74 221 80 121 222 78 75 223 81 77 224 83 122 225 84 76 226 85 73 227 82 121 228 78 122 229 84 77 230 83 78 231 86 123 232 87 72 233 88 76 234 85 122 235 84 123 236 87 78 237 86 72 238 88 123 239 87 80 240 89 81 241 90 124 242 91 79 243 92 80 244 89 123 245 87 124 246 91 81 247 90 83 248 93 124 249 91 82 250 94 79 251 92 124 252 91 83 253 93 84 254 95 124 255 91 125 256 96 57 257 97 82 258 94 124 259 91 84 260 95 57 261 97 125 262 96 88 263 98 89 264 99 125 265 96 87 266 100 88 267 98 125 268 96 89 269 99 91 270 101 125 271 96 90 272 102 87 273 100 125 274 96 91 275 101 92 276 103 126 277 104 86 278 105 90 279 102 125 280 96 126 281 104 92 282 103 86 283 105 126 284 104 94 285 106 95 286 107 127 287 108 93 288 109 94 289 106 126 290 104 127 291 108 95 292 107 97 293 110 127 294 108 128 295 111 96 296 112 93 297 109 127 298 108 97 299 110 98 300 113 128 301 111 85 302 114 96 303 112 128 304 111 98 305 113 85 306 114 128 307 111 101 308 115 102 309 116 128 310 111 129 311 117 100 312 118 101 313 115 128 314 111 102 315 116 104 316 119 129 317 117 103 318 120 100 319 118 129 320 117 104 321 119 105 322 121 129 323 117 99 324 122 103 325 120 129 326 117 105 327 121 99 328 122 129 329 117 107 330 123 108 331 124 129 332 117 106 333 125 107 334 123 129 335 117 108 336 124 110 337 126 129 338 117 130 339 127 109 340 128 106 341 125 129 342 117 110 343 126 118 344 60 1 345 129 130 346 127 109 347 128 130 348 127 111 349 130 119 350 63 0 351 2 112 352 1 111 353 130 130 354 127 1 355 129 1 356 129 118 357 60 56 358 62 112 359 426 132 360 425 131 361 355 119 362 356 113 363 357 133 364 358 132 365 354 112 366 353 114 367 361 134 368 364 133 369 363 113 370 362 115 371 365 135 372 366 134 373 367 114 374 368 116 375 369 136 376 370 135 377 366 115 378 365 117 379 373 137 380 376 136 381 375 116 382 374 118 383 377 138 384 378 137 385 379 117 386 380 119 387 372 131 388 371 139 389 359 120 390 360 120 391 385 139 392 386 140 393 387 121 394 388 121 395 388 140 396 387 141 397 389 122 398 390 122 399 390 141 400 389 142 401 391 123 402 392 123 403 392 142 404 391 143 405 393 124 406 394 124 407 394 143 408 393 144 409 395 125 410 396 125 411 396 144 412 395 145 413 397 126 414 398 126 415 398 145 416 397 146 417 399 127 418 400 127 419 400 146 420 399 147 421 401 128 422 402 128 423 402 147 424 401 148 425 403 129 426 404 129 427 421 148 428 422 149 429 423 130 430 424 130 431 424 149 432 423 138 433 378 118 434 377 131 435 429 132 436 430 151 437 431 150 438 432 132 439 430 133 440 433 152 441 434 151 442 431 133 443 433 134 444 435 153 445 436 152 446 434 134 447 435 135 448 437 154 449 438 153 450 436 135 451 437 136 452 439 155 453 440 154 454 438 136 455 439 137 456 441 156 457 442 155 458 440 137 459 441 138 460 443 157 461 444 156 462 442 139 463 445 131 464 429 150 465 432 158 466 446 140 467 447 139 468 445 158 469 446 159 470 448 141 471 449 140 472 447 159 473 448 160 474 450 142 475 451 141 476 449 160 477 450 161 478 452 143 479 453 142 480 451 161 481 452 162 482 454 144 483 455 143 484 453 162 485 454 163 486 456 145 487 457 144 488 455 163 489 456 164 490 458 146 491 459 145 492 457 164 493 458 165 494 460 147 495 461 146 496 459 165 497 460 166 498 462 148 499 463 147 500 461 166 501 462 167 502 464 149 503 465 148 504 463 167 505 464 168 506 466 138 507 443 149 508 465 168 509 466 157 510 444 163 511 456 162 512 454 169 513 467 169 514 467 162 515 454 170 516 468 171 517 469 170 518 468 162 519 454 161 520 452 172 521 470 171 522 469 161 523 452 160 524 450 160 525 450 173 526 471 172 527 470 174 528 472 173 529 471 160 530 450 159 531 448 159 532 448 158 533 446 175 534 473 174 535 472 158 536 446 176 537 474 175 538 473 158 539 446 150 540 432 176 541 474 150 542 432 151 543 431 179 544 475 179 545 475 151 546 431 178 547 476 150 548 432 179 549 475 177 550 477 180 551 478 178 552 476 151 553 431 152 554 434 180 555 478 152 556 434 181 557 479 182 558 480 181 559 479 152 560 434 153 561 436 182 562 480 153 563 436 183 564 481 184 565 482 183 566 481 153 567 436 154 568 438 184 569 482 154 570 438 186 571 483 185 572 484 186 573 483 154 574 438 188 575 427 188 576 427 154 577 438 187 578 352 189 579 351 187 580 352 154 581 438 155 582 440 155 583 440 190 584 350 189 585 351 191 586 349 190 587 350 155 588 440 156 589 442 156 590 442 192 591 348 191 592 349 193 593 347 192 594 348 156 595 442 157 596 444 193 597 347 157 598 444 194 599 346 194 600 346 157 601 444 168 602 466 168 603 466 195 604 345 194 605 346 196 606 344 195 607 345 168 608 466 167 609 464 197 610 343 196 611 344 167 612 464 166 613 462 198 614 342 197 615 343 166 616 462 165 617 460 199 618 341 198 619 342 165 620 460 164 621 458 200 622 340 199 623 341 164 624 458 163 625 456 200 626 340 163 627 456 201 628 339 201 629 339 163 630 456 169 631 467 169 632 200 170 633 199 203 634 198 202 635 197 170 636 199 171 637 196 204 638 195 203 639 198 171 640 196 172 641 194 205 642 193 204 643 195 172 644 194 173 645 192 206 646 191 205 647 193 173 648 192 174 649 190 207 650 189 206 651 191 174 652 190 175 653 188 208 654 187 207 655 189 175 656 188 176 657 186 209 658 185 208 659 187 177 660 184 179 661 183 211 662 182 210 663 181 179 664 183 178 665 180 212 666 179 211 667 182 178 668 180 180 669 178 213 670 177 212 671 179 180 672 178 181 673 176 214 674 175 213 675 177 181 676 176 182 677 174 215 678 173 214 679 175 182 680 174 183 681 172 216 682 171 215 683 173 183 684 172 184 685 170 217 686 169 216 687 171 184 688 170 186 689 168 218 690 167 217 691 169 186 692 168 185 693 134 219 694 133 218 695 167 185 696 166 188 697 164 220 698 163 219 699 165 188 700 164 187 701 162 221 702 161 220 703 163 187 704 162 189 705 160 222 706 159 221 707 161 189 708 160 190 709 158 223 710 157 222 711 159 190 712 158 191 713 156 224 714 155 223 715 157 191 716 156 192 717 154 225 718 153 224 719 155 192 720 154 193 721 152 226 722 151 225 723 153 193 724 152 194 725 150 227 726 149 226 727 151 194 728 150 195 729 148 228 730 147 227 731 149 195 732 148 196 733 146 229 734 145 228 735 147 196 736 146 197 737 144 230 738 143 229 739 145 197 740 144 198 741 142 231 742 141 230 743 143 198 744 142 199 745 140 232 746 139 231 747 141 199 748 140 200 749 138 233 750 137 232 751 139 201 752 136 169 753 132 202 754 131 234 755 135 200 756 138 201 757 136 234 758 135 233 759 137 202 760 337 203 761 338 236 762 305 235 763 304 203 764 338 204 765 336 237 766 303 236 767 305 204 768 336 205 769 335 238 770 302 237 771 303 205 772 335 206 773 334 239 774 301 238 775 302 206 776 334 207 777 333 240 778 300 239 779 301 207 780 333 208 781 332 241 782 299 240 783 300 208 784 332 209 785 331 242 786 298 241 787 299 210 788 329 211 789 330 244 790 297 243 791 296 211 792 330 212 793 328 245 794 295 244 795 297 212 796 328 213 797 327 246 798 294 245 799 295 213 800 327 214 801 326 247 802 293 246 803 294 214 804 326 215 805 325 248 806 292 247 807 293 215 808 325 216 809 324 249 810 291 248 811 292 216 812 324 217 813 323 250 814 290 249 815 291 217 816 323 218 817 322 251 818 289 250 819 290 218 820 322 219 821 321 252 822 288 251 823 289 202 824 337 235 825 304 254 826 287 253 827 286 252 828 288 219 829 321 255 830 285 256 831 284 253 832 286 254 833 287 258 834 283 257 835 282 256 836 284 255 837 285 257 838 282 258 839 283 219 840 321 220 841 320 260 842 281 259 843 280 220 844 320 221 845 319 261 846 279 260 847 281 221 848 319 222 849 318 262 850 278 261 851 279 222 852 318 223 853 317 263 854 277 262 855 278 223 856 317 224 857 316 264 858 276 263 859 277 224 860 316 225 861 315 265 862 275 264 863 276 225 864 315 226 865 314 266 866 274 265 867 275 226 868 314 227 869 313 267 870 273 266 871 274 227 872 313 228 873 312 268 874 272 267 875 273 228 876 312 229 877 311 269 878 271 268 879 272 229 880 311 230 881 310 270 882 270 269 883 271 230 884 310 231 885 309 271 886 269 270 887 270 231 888 309 232 889 308 272 890 268 271 891 269 232 892 308 233 893 307 273 894 267 272 895 268 234 896 306 202 897 337 274 898 266 275 899 265 233 900 307 234 901 306 275 902 265 273 903 267 202 904 337 253 905 286 276 906 264 274 907 266 255 908 285 219 909 321 259 910 280 277 911 263 253 912 286 257 913 282 278 914 262 276 915 264 257 916 282 255 917 285 277 918 263 278 919 262 259 920 381 260 921 382 396 922 644 395 923 643 260 924 382 261 925 405 397 926 645 396 927 644 261 928 405 262 929 407 398 930 646 397 931 645 262 932 407 263 933 409 399 934 647 398 935 646 263 936 409 264 937 411 400 938 648 399 939 647 264 940 411 265 941 413 401 942 649 400 943 648 265 944 413 266 945 415 402 946 650 401 947 649 266 948 415 267 949 417 403 950 651 402 951 650 267 952 417 268 953 419 404 954 652 403 955 651 268 956 419 269 957 428 405 958 653 404 959 652 269 960 428 270 961 260 406 962 654 405 963 653 270 964 260 271 965 258 407 966 655 406 967 654 271 968 258 272 969 256 408 970 656 407 971 655 272 972 256 273 973 254 409 974 657 408 975 656 275 976 252 274 977 251 410 978 658 411 979 659 273 980 254 275 981 252 411 982 659 409 983 657 274 984 251 276 985 248 412 986 660 410 987 658 277 988 246 259 989 381 395 990 643 413 991 661 276 992 248 278 993 244 414 994 662 412 995 660 278 996 244 277 997 246 413 998 661 414 999 662 235 1000 242 236 1001 241 416 1002 664 415 1003 663 236 1004 241 237 1005 238 417 1006 665 416 1007 664 237 1008 238 238 1009 236 418 1010 666 417 1011 665 238 1012 236 239 1013 234 419 1014 667 418 1015 666 239 1016 234 240 1017 232 420 1018 668 419 1019 667 240 1020 232 241 1021 230 421 1022 669 420 1023 668 241 1024 230 242 1025 228 422 1026 670 421 1027 669 243 1028 226 244 1029 225 424 1030 672 423 1031 671 244 1032 225 245 1033 222 425 1034 673 424 1035 672 245 1036 222 246 1037 220 426 1038 674 425 1039 673 246 1040 220 247 1041 218 427 1042 675 426 1043 674 247 1044 218 248 1045 216 428 1046 676 427 1047 675 248 1048 216 249 1049 214 429 1050 677 428 1051 676 249 1052 214 250 1053 212 430 1054 678 429 1055 677 250 1056 212 251 1057 210 431 1058 679 430 1059 678 251 1060 210 252 1061 208 432 1062 680 431 1063 679 254 1064 206 235 1065 242 415 1066 663 433 1067 681 252 1068 208 256 1069 204 434 1070 682 432 1071 680 258 1072 202 254 1073 206 433 1074 681 435 1075 683 256 1076 204 258 1077 202 435 1078 683 434 1079 682 318 1080 485 316 1081 486 296 1082 487 298 1083 488 317 1084 489 318 1085 485 298 1086 488 297 1087 490 279 1088 491 280 1089 492 320 1090 493 319 1091 494 280 1092 492 281 1093 495 321 1094 496 320 1095 493 281 1096 495 282 1097 497 322 1098 498 321 1099 496 282 1100 497 283 1101 499 323 1102 500 322 1103 498 283 1104 499 284 1105 501 324 1106 502 323 1107 500 284 1108 501 285 1109 503 325 1110 504 324 1111 502 285 1112 503 286 1113 505 326 1114 506 325 1115 504 286 1116 505 287 1117 507 327 1118 508 326 1119 506 287 1120 507 288 1121 509 328 1122 510 327 1123 508 288 1124 509 289 1125 511 329 1126 512 328 1127 510 289 1128 511 290 1129 513 330 1130 514 329 1131 512 290 1132 513 291 1133 515 331 1134 516 330 1135 514 291 1136 515 292 1137 517 332 1138 518 331 1139 516 292 1140 517 293 1141 519 333 1142 520 332 1143 518 295 1144 521 294 1145 522 334 1146 523 335 1147 524 293 1148 519 295 1149 521 335 1150 524 333 1151 520 294 1152 522 296 1153 487 336 1154 525 334 1155 523 297 1156 490 279 1157 491 319 1158 494 337 1159 526 299 1160 527 300 1161 528 339 1162 529 338 1163 530 300 1164 528 301 1165 531 340 1166 532 339 1167 529 301 1168 531 302 1169 533 341 1170 534 340 1171 532 302 1172 533 303 1173 535 342 1174 536 341 1175 534 303 1176 535 304 1177 537 343 1178 538 342 1179 536 304 1180 537 305 1181 539 344 1182 540 343 1183 538 305 1184 539 306 1185 541 345 1186 542 344 1187 540 306 1188 541 307 1189 543 346 1190 544 345 1191 542 307 1192 543 308 1193 545 347 1194 546 346 1195 544 308 1196 545 309 1197 547 348 1198 548 347 1199 546 309 1200 547 310 1201 549 349 1202 550 348 1203 548 310 1204 549 311 1205 551 350 1206 552 349 1207 550 311 1208 551 312 1209 553 351 1210 554 350 1211 552 312 1212 553 313 1213 555 352 1214 556 351 1215 554 313 1216 555 314 1217 557 353 1218 558 352 1219 556 314 1220 557 315 1221 559 354 1222 560 353 1223 558 316 1224 486 299 1225 527 338 1226 530 355 1227 561 315 1228 559 317 1229 489 356 1230 562 354 1231 560 296 1232 487 316 1233 486 355 1234 561 336 1235 525 317 1236 489 297 1237 490 337 1238 526 356 1239 562 319 1240 563 320 1241 564 358 1242 565 357 1243 566 320 1244 564 321 1245 567 359 1246 568 358 1247 565 321 1248 567 322 1249 569 360 1250 570 359 1251 568 322 1252 569 323 1253 571 361 1254 572 360 1255 570 323 1256 571 324 1257 573 362 1258 574 361 1259 572 324 1260 573 325 1261 575 363 1262 576 362 1263 574 325 1264 575 326 1265 577 364 1266 578 363 1267 576 326 1268 577 327 1269 579 365 1270 580 364 1271 578 327 1272 579 328 1273 581 366 1274 582 365 1275 580 328 1276 581 329 1277 583 367 1278 584 366 1279 582 329 1280 583 330 1281 585 368 1282 586 367 1283 584 330 1284 585 331 1285 587 369 1286 588 368 1287 586 331 1288 587 332 1289 589 370 1290 590 369 1291 588 332 1292 589 333 1293 591 371 1294 592 370 1295 590 335 1296 593 334 1297 594 372 1298 595 373 1299 596 333 1300 591 335 1301 593 373 1302 596 371 1303 592 334 1304 594 336 1305 597 374 1306 598 372 1307 595 337 1308 599 319 1309 563 357 1310 566 375 1311 600 338 1312 601 339 1313 602 377 1314 603 376 1315 604 339 1316 602 340 1317 605 378 1318 606 377 1319 603 340 1320 605 341 1321 607 379 1322 608 378 1323 606 341 1324 607 342 1325 609 380 1326 610 379 1327 608 342 1328 609 343 1329 611 381 1330 612 380 1331 610 343 1332 611 344 1333 613 382 1334 614 381 1335 612 344 1336 613 345 1337 615 383 1338 616 382 1339 614 345 1340 615 346 1341 617 384 1342 618 383 1343 616 346 1344 617 347 1345 619 385 1346 620 384 1347 618 347 1348 619 348 1349 621 386 1350 622 385 1351 620 348 1352 621 349 1353 623 387 1354 624 386 1355 622 349 1356 623 350 1357 625 388 1358 626 387 1359 624 350 1360 625 351 1361 627 389 1362 628 388 1363 626 351 1364 627 352 1365 629 390 1366 630 389 1367 628 352 1368 629 353 1369 631 391 1370 632 390 1371 630 353 1372 631 354 1373 633 392 1374 634 391 1375 632 355 1376 635 338 1377 601 376 1378 604 393 1379 636 354 1380 633 356 1381 637 394 1382 638 392 1383 634 336 1384 597 355 1385 639 393 1386 640 374 1387 598 356 1388 641 337 1389 599 375 1390 600 394 1391 642 395 923 643 396 922 644 437 1392 685 436 1393 684 396 927 644 397 926 645 438 1394 686 437 1395 685 397 931 645 398 930 646 439 1396 687 438 1397 686 398 935 646 399 934 647 440 1398 688 439 1399 687 399 939 647 400 938 648 441 1400 689 440 1401 688 400 943 648 401 942 649 442 1402 690 441 1403 689 401 947 649 402 946 650 443 1404 691 442 1405 690 402 951 650 403 950 651 444 1406 692 443 1407 691 403 955 651 404 954 652 445 1408 693 444 1409 692 404 959 652 405 958 653 446 1410 694 445 1411 693 405 963 653 406 962 654 447 1412 695 446 1413 694 406 967 654 407 966 655 448 1414 696 447 1415 695 407 971 655 408 970 656 449 1416 697 448 1417 696 408 975 656 409 974 657 450 1418 698 449 1419 697 411 979 659 410 978 658 451 1420 699 452 1421 700 409 983 657 411 982 659 452 1422 700 450 1423 698 410 987 658 412 986 660 453 1424 701 451 1425 699 413 991 661 395 990 643 436 1426 684 454 1427 702 412 995 660 414 994 662 455 1428 703 453 1429 701 414 999 662 413 998 661 454 1430 702 455 1431 703 415 1003 663 416 1002 664 457 1432 705 456 1433 704 416 1007 664 417 1006 665 458 1434 706 457 1435 705 417 1011 665 418 1010 666 459 1436 707 458 1437 706 418 1015 666 419 1014 667 460 1438 708 459 1439 707 419 1019 667 420 1018 668 461 1440 709 460 1441 708 420 1023 668 421 1022 669 462 1442 710 461 1443 709 421 1027 669 422 1026 670 463 1444 711 462 1445 710 423 1031 671 424 1030 672 465 1446 713 464 1447 712 424 1035 672 425 1034 673 466 1448 714 465 1449 713 425 1039 673 426 1038 674 467 1450 715 466 1451 714 426 1043 674 427 1042 675 468 1452 716 467 1453 715 427 1047 675 428 1046 676 469 1454 717 468 1455 716 428 1051 676 429 1050 677 470 1456 718 469 1457 717 429 1055 677 430 1054 678 471 1458 719 470 1459 718 430 1059 678 431 1058 679 472 1460 720 471 1461 719 431 1063 679 432 1062 680 473 1462 721 472 1463 720 433 1067 681 415 1066 663 456 1464 704 474 1465 722 432 1071 680 434 1070 682 475 1466 723 473 1467 721 435 1075 683 433 1074 681 474 1468 722 476 1469 724 434 1079 682 435 1078 683 476 1470 724 475 1471 723 436 1393 684 437 1392 685 280 1472 383 279 1473 384 437 1395 685 438 1394 686 281 1474 406 280 1475 383 438 1397 686 439 1396 687 282 1476 408 281 1477 406 439 1399 687 440 1398 688 283 1478 410 282 1479 408 440 1401 688 441 1400 689 284 1480 412 283 1481 410 441 1403 689 442 1402 690 285 1482 414 284 1483 412 442 1405 690 443 1404 691 286 1484 416 285 1485 414 443 1407 691 444 1406 692 287 1486 418 286 1487 416 444 1409 692 445 1408 693 288 1488 420 287 1489 418 445 1411 693 446 1410 694 289 1490 261 288 1491 420 446 1413 694 447 1412 695 290 1492 259 289 1493 261 447 1415 695 448 1414 696 291 1494 257 290 1495 259 448 1417 696 449 1416 697 292 1496 255 291 1497 257 449 1419 697 450 1418 698 293 1498 253 292 1499 255 452 1421 700 451 1420 699 294 1500 250 295 1501 249 450 1423 698 452 1422 700 295 1502 249 293 1503 253 451 1425 699 453 1424 701 296 1504 247 294 1505 250 454 1427 702 436 1426 684 279 1506 384 297 1507 245 453 1429 701 455 1428 703 298 1508 243 296 1509 247 455 1431 703 454 1430 702 297 1510 245 298 1511 243 456 1433 704 457 1432 705 300 1512 240 299 1513 239 457 1435 705 458 1434 706 301 1514 237 300 1515 240 458 1437 706 459 1436 707 302 1516 235 301 1517 237 459 1439 707 460 1438 708 303 1518 233 302 1519 235 460 1441 708 461 1440 709 304 1520 231 303 1521 233 461 1443 709 462 1442 710 305 1522 229 304 1523 231 462 1445 710 463 1444 711 306 1524 227 305 1525 229 464 1447 712 465 1446 713 307 1526 224 306 1527 223 465 1449 713 466 1448 714 308 1528 221 307 1529 224 466 1451 714 467 1450 715 309 1530 219 308 1531 221 467 1453 715 468 1452 716 310 1532 217 309 1533 219 468 1455 716 469 1454 717 311 1534 215 310 1535 217 469 1457 717 470 1456 718 312 1536 213 311 1537 215 470 1459 718 471 1458 719 313 1538 211 312 1539 213 471 1461 719 472 1460 720 314 1540 209 313 1541 211 472 1463 720 473 1462 721 315 1542 207 314 1543 209 474 1465 722 456 1464 704 299 1544 239 316 1545 205 473 1467 721 475 1466 723 317 1546 203 315 1547 207 476 1469 724 474 1468 722 316 1548 205 318 1549 201 475 1471 723 476 1470 724 318 1550 201 317 1551 203</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camHousingShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape7\" name=\"hole0Shape7\">\r\n      <mesh>\r\n        <source id=\"hole0Shape7-positions\" name=\"hole0Shape7-positions\">\r\n          <float_array id=\"hole0Shape7-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape7-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape7-normals\" name=\"hole0Shape7-normals\">\r\n          <float_array id=\"hole0Shape7-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape7-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape7-map1\" name=\"hole0Shape7-map1\">\r\n          <float_array id=\"hole0Shape7-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape7-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape7-vertices\" name=\"hole0Shape7-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape7-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape7-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape7-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape7-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape7</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape8\" name=\"hole0Shape8\">\r\n      <mesh>\r\n        <source id=\"hole0Shape8-positions\" name=\"hole0Shape8-positions\">\r\n          <float_array id=\"hole0Shape8-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape8-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape8-normals\" name=\"hole0Shape8-normals\">\r\n          <float_array id=\"hole0Shape8-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape8-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape8-map1\" name=\"hole0Shape8-map1\">\r\n          <float_array id=\"hole0Shape8-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape8-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape8-vertices\" name=\"hole0Shape8-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape8-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape8-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape8-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape8-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape8</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape9\" name=\"hole0Shape9\">\r\n      <mesh>\r\n        <source id=\"hole0Shape9-positions\" name=\"hole0Shape9-positions\">\r\n          <float_array id=\"hole0Shape9-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape9-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape9-normals\" name=\"hole0Shape9-normals\">\r\n          <float_array id=\"hole0Shape9-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape9-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape9-map1\" name=\"hole0Shape9-map1\">\r\n          <float_array id=\"hole0Shape9-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape9-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape9-vertices\" name=\"hole0Shape9-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape9-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape9-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape9-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape9-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape9</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape10\" name=\"hole0Shape10\">\r\n      <mesh>\r\n        <source id=\"hole0Shape10-positions\" name=\"hole0Shape10-positions\">\r\n          <float_array id=\"hole0Shape10-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape10-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape10-normals\" name=\"hole0Shape10-normals\">\r\n          <float_array id=\"hole0Shape10-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape10-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape10-map1\" name=\"hole0Shape10-map1\">\r\n          <float_array id=\"hole0Shape10-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape10-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape10-vertices\" name=\"hole0Shape10-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape10-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape10-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape10-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape10-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape10</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape11\" name=\"hole0Shape11\">\r\n      <mesh>\r\n        <source id=\"hole0Shape11-positions\" name=\"hole0Shape11-positions\">\r\n          <float_array id=\"hole0Shape11-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape11-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape11-normals\" name=\"hole0Shape11-normals\">\r\n          <float_array id=\"hole0Shape11-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape11-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape11-map1\" name=\"hole0Shape11-map1\">\r\n          <float_array id=\"hole0Shape11-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape11-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape11-vertices\" name=\"hole0Shape11-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape11-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape11-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape11-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape11-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape11</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape12\" name=\"hole0Shape12\">\r\n      <mesh>\r\n        <source id=\"hole0Shape12-positions\" name=\"hole0Shape12-positions\">\r\n          <float_array id=\"hole0Shape12-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape12-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape12-normals\" name=\"hole0Shape12-normals\">\r\n          <float_array id=\"hole0Shape12-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape12-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape12-map1\" name=\"hole0Shape12-map1\">\r\n          <float_array id=\"hole0Shape12-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape12-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape12-vertices\" name=\"hole0Shape12-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape12-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape12-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape12-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape12-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape12</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape17\" name=\"hole0Shape17\">\r\n      <mesh>\r\n        <source id=\"hole0Shape17-positions\" name=\"hole0Shape17-positions\">\r\n          <float_array id=\"hole0Shape17-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape17-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape17-normals\" name=\"hole0Shape17-normals\">\r\n          <float_array id=\"hole0Shape17-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape17-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape17-map1\" name=\"hole0Shape17-map1\">\r\n          <float_array id=\"hole0Shape17-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape17-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape17-vertices\" name=\"hole0Shape17-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape17-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape17-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape17-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape17-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape17</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape18\" name=\"hole0Shape18\">\r\n      <mesh>\r\n        <source id=\"hole0Shape18-positions\" name=\"hole0Shape18-positions\">\r\n          <float_array id=\"hole0Shape18-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape18-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape18-normals\" name=\"hole0Shape18-normals\">\r\n          <float_array id=\"hole0Shape18-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape18-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape18-map1\" name=\"hole0Shape18-map1\">\r\n          <float_array id=\"hole0Shape18-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape18-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape18-vertices\" name=\"hole0Shape18-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape18-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape18-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape18-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape18-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape18</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape19\" name=\"hole0Shape19\">\r\n      <mesh>\r\n        <source id=\"hole0Shape19-positions\" name=\"hole0Shape19-positions\">\r\n          <float_array id=\"hole0Shape19-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape19-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape19-normals\" name=\"hole0Shape19-normals\">\r\n          <float_array id=\"hole0Shape19-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape19-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape19-map1\" name=\"hole0Shape19-map1\">\r\n          <float_array id=\"hole0Shape19-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape19-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape19-vertices\" name=\"hole0Shape19-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape19-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape19-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape19-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape19-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape19</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape20\" name=\"hole0Shape20\">\r\n      <mesh>\r\n        <source id=\"hole0Shape20-positions\" name=\"hole0Shape20-positions\">\r\n          <float_array id=\"hole0Shape20-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape20-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape20-normals\" name=\"hole0Shape20-normals\">\r\n          <float_array id=\"hole0Shape20-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape20-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape20-map1\" name=\"hole0Shape20-map1\">\r\n          <float_array id=\"hole0Shape20-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape20-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape20-vertices\" name=\"hole0Shape20-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape20-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape20-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape20-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape20-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape20</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape21\" name=\"hole0Shape21\">\r\n      <mesh>\r\n        <source id=\"hole0Shape21-positions\" name=\"hole0Shape21-positions\">\r\n          <float_array id=\"hole0Shape21-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape21-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape21-normals\" name=\"hole0Shape21-normals\">\r\n          <float_array id=\"hole0Shape21-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape21-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape21-map1\" name=\"hole0Shape21-map1\">\r\n          <float_array id=\"hole0Shape21-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape21-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape21-vertices\" name=\"hole0Shape21-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape21-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape21-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape21-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape21-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape21</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape22\" name=\"hole0Shape22\">\r\n      <mesh>\r\n        <source id=\"hole0Shape22-positions\" name=\"hole0Shape22-positions\">\r\n          <float_array id=\"hole0Shape22-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape22-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape22-normals\" name=\"hole0Shape22-normals\">\r\n          <float_array id=\"hole0Shape22-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape22-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape22-map1\" name=\"hole0Shape22-map1\">\r\n          <float_array id=\"hole0Shape22-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape22-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape22-vertices\" name=\"hole0Shape22-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape22-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape22-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape22-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape22-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape22</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape23\" name=\"hole0Shape23\">\r\n      <mesh>\r\n        <source id=\"hole0Shape23-positions\" name=\"hole0Shape23-positions\">\r\n          <float_array id=\"hole0Shape23-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape23-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape23-normals\" name=\"hole0Shape23-normals\">\r\n          <float_array id=\"hole0Shape23-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape23-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape23-map1\" name=\"hole0Shape23-map1\">\r\n          <float_array id=\"hole0Shape23-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape23-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape23-vertices\" name=\"hole0Shape23-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape23-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape23-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape23-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape23-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape23</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape24\" name=\"hole0Shape24\">\r\n      <mesh>\r\n        <source id=\"hole0Shape24-positions\" name=\"hole0Shape24-positions\">\r\n          <float_array id=\"hole0Shape24-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape24-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape24-normals\" name=\"hole0Shape24-normals\">\r\n          <float_array id=\"hole0Shape24-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape24-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape24-map1\" name=\"hole0Shape24-map1\">\r\n          <float_array id=\"hole0Shape24-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape24-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape24-vertices\" name=\"hole0Shape24-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape24-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape24-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape24-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape24-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape24</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape25\" name=\"hole0Shape25\">\r\n      <mesh>\r\n        <source id=\"hole0Shape25-positions\" name=\"hole0Shape25-positions\">\r\n          <float_array id=\"hole0Shape25-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape25-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape25-normals\" name=\"hole0Shape25-normals\">\r\n          <float_array id=\"hole0Shape25-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape25-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape25-map1\" name=\"hole0Shape25-map1\">\r\n          <float_array id=\"hole0Shape25-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape25-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape25-vertices\" name=\"hole0Shape25-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape25-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape25-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape25-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape25-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape25</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape26\" name=\"hole0Shape26\">\r\n      <mesh>\r\n        <source id=\"hole0Shape26-positions\" name=\"hole0Shape26-positions\">\r\n          <float_array id=\"hole0Shape26-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape26-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape26-normals\" name=\"hole0Shape26-normals\">\r\n          <float_array id=\"hole0Shape26-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape26-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape26-map1\" name=\"hole0Shape26-map1\">\r\n          <float_array id=\"hole0Shape26-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape26-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape26-vertices\" name=\"hole0Shape26-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape26-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape26-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape26-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape26-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape26</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camCoverShape1\" name=\"camCoverShape1\">\r\n      <mesh>\r\n        <source id=\"camCoverShape1-positions\" name=\"camCoverShape1-positions\">\r\n          <float_array id=\"camCoverShape1-positions-array\" count=\"240\">4.508447 -0.3237068 0 4.287788 -0.3237068 -1.393187 3.64741 -0.3237068 -2.649999 2.649999 -0.3237068 -3.64741 1.393187 -0.3237068 -4.287788 0 -0.3237068 -4.508447 -1.393187 -0.3237068 -4.287788 -2.649999 -0.3237068 -3.64741 -3.64741 -0.3237068 -2.649999 -4.287788 -0.3237068 -1.393187 -4.508447 -0.3237068 0 -4.287788 -0.3237068 1.393187 -3.64741 -0.3237068 2.649999 -2.649999 -0.3237068 3.64741 -1.393187 -0.3237068 4.287788 0 -0.3237068 4.508447 1.393187 -0.3237068 4.287788 2.649999 -0.3237068 3.64741 3.64741 -0.3237068 2.649999 4.287788 -0.3237068 1.393187 4.508447 0.3237068 0 4.287788 0.3237068 -1.393187 3.64741 0.3237068 -2.649999 2.649999 0.3237068 -3.64741 1.393187 0.3237068 -4.287788 0 0.3237068 -4.508447 -1.393187 0.3237068 -4.287788 -2.649999 0.3237068 -3.64741 -3.64741 0.3237068 -2.649999 -4.287788 0.3237068 -1.393187 -4.508447 0.3237068 0 -4.287788 0.3237068 1.393187 -3.64741 0.3237068 2.649999 -2.649999 0.3237068 3.64741 -1.393187 0.3237068 4.287788 0 0.3237068 4.508447 1.393187 0.3237068 4.287788 2.649999 0.3237068 3.64741 3.64741 0.3237068 2.649999 4.287788 0.3237068 1.393187 7.4 0.3237068 0 7.037818 0.3237068 -2.286726 5.986726 0.3237068 -4.349611 4.349611 0.3237068 -5.986726 2.286726 0.3237068 -7.037819 0 0.3237068 -7.400001 -2.286726 0.3237068 -7.037819 -4.349612 0.3237068 -5.986726 -5.986727 0.3237068 -4.349611 -7.03782 0.3237068 -2.286726 -7.400002 0.3237068 0 -7.03782 0.3237068 2.286727 -5.986728 0.3237068 4.349612 -4.349612 0.3237068 5.923822 -2.286727 0.3237068 5.923823 0 0.3237068 5.923823 2.286727 0.3237068 5.923823 4.349613 0.3237068 5.923823 5.986729 0.3237068 4.349613 7.037822 0.3237068 2.286727 7.4 -0.3237068 0 7.037818 -0.3237068 -2.286726 5.986726 -0.3237068 -4.349611 4.349611 -0.3237068 -5.986726 2.286726 -0.3237068 -7.037819 0 -0.3237068 -7.400001 -2.286726 -0.3237068 -7.037819 -4.349612 -0.3237068 -5.986726 -5.986727 -0.3237068 -4.349611 -7.03782 -0.3237068 -2.286726 -7.400002 -0.3237068 0 -7.03782 -0.3237068 2.286727 -5.986728 -0.3237068 4.349612 -4.349612 -0.3237068 5.923822 -2.286727 -0.3237068 5.923823 0 -0.3237068 5.923823 2.286727 -0.3237068 5.923823 4.349613 -0.3237068 5.923823 5.986729 -0.3237068 4.349613 7.037822 -0.3237068 2.286727</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverShape1-positions-array\" count=\"80\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverShape1-normals\" name=\"camCoverShape1-normals\">\r\n          <float_array id=\"camCoverShape1-normals-array\" count=\"480\">-0.9510565 0 0.3090171 -0.9999999 0 0 -0.9999999 0 0 -0.9510565 0 0.3090171 -0.809017 0 0.5877853 -0.809017 0 0.5877853 -0.5877852 0 0.809017 -0.5877852 0 0.809017 -0.3090171 0 0.9510565 -0.3090171 0 0.9510565 0 0 0.9999999 0 0 0.9999999 0.309017 0 0.9510565 0.309017 0 0.9510565 0.5877852 0 0.809017 0.5877852 0 0.809017 0.809017 0 0.5877853 0.809017 0 0.5877853 0.9510565 0 0.3090171 0.9510565 0 0.3090171 0.9999999 0 0 0.9999999 0 0 0.9510565 0 -0.309017 0.9510565 0 -0.309017 0.809017 0 -0.5877852 0.809017 0 -0.5877852 0.5877852 0 -0.809017 0.5877852 0 -0.809017 0.3090171 0 -0.9510565 0.3090171 0 -0.9510565 0 0 -0.9999999 0 0 -0.9999999 -0.309017 0 -0.9510565 -0.309017 0 -0.9510565 -0.5877852 0 -0.809017 -0.5877852 0 -0.809017 -0.809017 0 -0.5877853 -0.809017 0 -0.5877853 -0.9510565 0 -0.3090171 -0.9510565 0 -0.3090171 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9510565 0 -0.3090169 0.9999999 0 0 0.9999999 0 0 0.9510565 0 -0.3090169 0.809017 0 -0.5877852 0.809017 0 -0.5877852 0.5877852 0 -0.809017 0.5877852 0 -0.809017 0.309017 0 -0.9510565 0.309017 0 -0.9510565 0 0 -1 0 0 -1 -0.309017 0 -0.9510565 -0.309017 0 -0.9510565 -0.5877852 0 -0.809017 -0.5877852 0 -0.809017 -0.8090169 0 -0.5877854 -0.8090169 0 -0.5877854 -0.9510565 0 -0.3090171 -0.9510565 0 -0.3090171 -0.9999999 0 0 -0.9999999 0 0 -0.9510566 0 0.309017 -0.9510566 0 0.309017 -0.8032221 0 0.5956797 -0.8032221 0 0.5956797 -0.3736179 0 0.9275827 -0.3736179 0 0.9275827 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.3736176 0 0.9275829 0.3736176 0 0.9275829 0.8032219 0 0.5956798 0.8032219 0 0.5956798 0.9510568 0 0.3090163 0.9510568 0 0.3090163 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverShape1-normals-array\" count=\"160\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverShape1-map1\" name=\"camCoverShape1-map1\">\r\n          <float_array id=\"camCoverShape1-map1-array\" count=\"336\">0.4332117 0.4176283 0.4367477 0.4176283 0.4402836 0.4176283 0.4438196 0.4176283 0.4473556 0.4176283 0.4508916 0.4176283 0.4544275 0.4176283 0.4579635 0.4176283 0.4614994 0.4176283 0.4650355 0.4176283 0.4685713 0.4176283 0.4658364 0.4176283 0.4622464 0.4176283 0.4589414 0.4176283 0.4556365 0.4176283 0.4514764 0.4176283 0.4478862 0.4176283 0.4445813 0.4176283 0.4409913 0.4176283 0.4371163 0.4176283 0.4338112 0.4176283 0.4332117 0.3930689 0.293118 0.375163 0.2950836 0.375163 0.2970491 0.375163 0.2990147 0.375163 0.3009803 0.375163 0.3029459 0.375163 0.3049114 0.375163 0.306877 0.375163 0.3088426 0.375163 0.3108081 0.375163 0.3089855 0.375163 0.3070464 0.375163 0.3051655 0.375163 0.3031681 0.375163 0.3011706 0.375163 0.2991732 0.375163 0.2972923 0.375163 0.295295 0.375163 0.2933789 0.375163 0.2913846 0.375163 0.2911524 0.3384513 0.437353 0.4168141 0.4404922 0.4168141 0.4436315 0.4168141 0.4467707 0.4168141 0.44991 0.4168141 0.4530492 0.4168141 0.4561884 0.4168141 0.4593277 0.4168141 0.4624669 0.4168141 0.4656062 0.4168141 0.4627328 0.4168141 0.4595923 0.4168141 0.4565853 0.4168141 0.4535784 0.4168141 0.4503042 0.4168141 0.4471636 0.4168141 0.4440231 0.4168141 0.4408825 0.4168141 0.4376083 0.4168141 0.4344677 0.4168141 0.4342138 0.3948645 0.2929066 0.3733046 0.2948762 0.3733046 0.2968457 0.3733046 0.2988153 0.3733046 0.3007848 0.3733046 0.3027544 0.3733046 0.3047239 0.3733046 0.3066935 0.3733046 0.308663 0.3733046 0.3106326 0.3733046 0.3089576 0.3733046 0.306995 0.3733046 0.3049365 0.3733046 0.3030697 0.3733046 0.3010111 0.3733046 0.2990485 0.3733046 0.2969899 0.3733046 0.2950272 0.3733046 0.2930645 0.3733046 0.2911019 0.3733046 0.290937 0.3385213 0.2929066 0.3385213 0.2948762 0.3385213 0.2968457 0.3385213 0.2988153 0.3385213 0.3007848 0.3385213 0.3027544 0.3385213 0.3047239 0.3385213 0.3066935 0.3385213 0.308663 0.3385213 0.3106326 0.3385213 0.3089576 0.3385213 0.306995 0.3385213 0.3049365 0.3385213 0.3030697 0.3385213 0.3010111 0.3385213 0.2990485 0.3385213 0.2969899 0.3385213 0.2950272 0.3385213 0.2930645 0.3385213 0.2911019 0.3385213 0.2933789 0.3384513 0.2913846 0.3384513 0.4342138 0.4168141 0.295295 0.3384513 0.2972923 0.3384513 0.2991732 0.3384513 0.3011706 0.3384513 0.3031681 0.3384513 0.3051655 0.3384513 0.3070464 0.3384513 0.3089855 0.3384513 0.3108081 0.3384513 0.3088426 0.3384513 0.306877 0.3384513 0.3049114 0.3384513 0.3029459 0.3384513 0.3009803 0.3384513 0.2990147 0.3384513 0.2970491 0.3384513 0.2950836 0.3384513 0.293118 0.3384513 0.4371163 0.3930689 0.4338112 0.3930689 0.2911524 0.375163 0.4409913 0.3930689 0.4445813 0.3930689 0.4478862 0.3930689 0.4514764 0.3930689 0.4556365 0.3930689 0.4589414 0.3930689 0.4622464 0.3930689 0.4658364 0.3930689 0.4685713 0.3930689 0.4650355 0.3930689 0.4614994 0.3930689 0.4579635 0.3930689 0.4544275 0.3930689 0.4508916 0.3930689 0.4473556 0.3930689 0.4438196 0.3930689 0.4402836 0.3930689 0.4367477 0.3930689 0.4376083 0.3948645 0.4344677 0.3948645 0.290937 0.3733046 0.4408825 0.3948645 0.4440231 0.3948645 0.4471636 0.3948645 0.4503042 0.3948645 0.4535784 0.3948645 0.4565853 0.3948645 0.4595923 0.3948645 0.4627328 0.3948645 0.4656062 0.3948645 0.4624669 0.3948645 0.4593277 0.3948645 0.4561884 0.3948645 0.4530492 0.3948645 0.44991 0.3948645 0.4467707 0.3948645 0.4436315 0.3948645 0.4404922 0.3948645 0.437353 0.3948645</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverShape1-map1-array\" count=\"168\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camCoverShape1-vertices\" name=\"camCoverShape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camCoverShape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert4SG\" count=\"80\">\r\n          <input semantic=\"VERTEX\" source=\"#camCoverShape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camCoverShape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camCoverShape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 0 1 0 1 0 20 2 21 21 3 146 2 4 2 1 0 1 21 3 146 22 5 145 3 6 3 2 4 2 22 5 145 23 7 144 4 8 4 3 6 3 23 7 144 24 9 143 5 10 5 4 8 4 24 9 143 25 11 142 6 12 6 5 10 5 25 11 142 26 13 141 7 14 7 6 12 6 26 13 141 27 15 140 8 16 8 7 14 7 27 15 140 28 17 139 9 18 9 8 16 8 28 17 139 29 19 138 10 20 10 9 18 9 29 19 138 30 21 137 11 22 11 10 20 10 30 21 137 31 23 136 12 24 12 11 22 11 31 23 136 32 25 135 13 26 13 12 24 12 32 25 135 33 27 134 14 28 14 13 26 13 33 27 134 34 29 133 15 30 15 14 28 14 34 29 133 35 31 132 16 32 16 15 30 15 35 31 132 36 33 131 17 34 17 16 32 16 36 33 131 37 35 130 18 36 18 17 34 17 37 35 130 38 37 129 19 38 19 18 36 18 38 37 129 39 39 126 0 1 20 19 38 19 39 39 126 20 2 127 21 40 22 20 41 128 40 42 42 41 43 125 22 44 23 21 40 22 41 43 125 42 45 124 23 46 24 22 44 23 42 45 124 43 47 123 24 48 25 23 46 24 43 47 123 44 49 122 25 50 26 24 48 25 44 49 122 45 51 121 26 52 27 25 50 26 45 51 121 46 53 120 27 54 28 26 52 27 46 53 120 47 55 119 28 56 29 27 54 28 47 55 119 48 57 118 29 58 30 28 56 29 48 57 118 49 59 117 30 60 31 29 58 30 49 59 117 50 61 116 31 62 32 30 60 31 50 61 116 51 63 115 32 64 33 31 62 32 51 63 115 52 65 114 33 66 34 32 64 33 52 65 114 53 67 113 34 68 35 33 66 34 53 67 113 54 69 112 35 70 36 34 68 35 54 69 112 55 71 111 36 72 37 35 70 36 55 71 111 56 73 110 37 74 38 36 72 37 56 73 110 57 75 109 38 76 39 37 74 38 57 75 109 58 77 108 39 78 40 38 76 39 58 77 108 59 79 105 20 41 41 39 78 40 59 79 105 40 42 106 41 80 43 40 81 107 60 82 63 61 83 167 42 84 44 41 80 43 61 83 167 62 85 166 43 86 45 42 84 44 62 85 166 63 87 165 44 88 46 43 86 45 63 87 165 64 89 164 45 90 47 44 88 46 64 89 164 65 91 163 46 92 48 45 90 47 65 91 163 66 93 162 47 94 49 46 92 48 66 93 162 67 95 161 48 96 50 47 94 49 67 95 161 68 97 160 49 98 51 48 96 50 68 97 160 69 99 159 50 100 52 49 98 51 69 99 159 70 101 158 51 102 53 50 100 52 70 101 158 71 103 157 52 104 54 51 102 53 71 103 157 72 105 156 53 106 55 52 104 54 72 105 156 73 107 155 54 108 56 53 106 55 73 107 155 74 109 154 55 110 57 54 108 56 74 109 154 75 111 153 56 112 58 55 110 57 75 111 153 76 113 152 57 114 59 56 112 58 76 113 152 77 115 151 58 116 60 57 114 59 77 115 151 78 117 150 59 118 61 58 116 60 78 117 150 79 119 147 40 81 62 59 118 61 79 119 147 60 82 148 61 120 64 60 121 149 0 122 84 1 123 85 62 124 65 61 120 64 1 123 85 2 125 86 63 126 66 62 124 65 2 125 86 3 127 87 64 128 67 63 126 66 3 127 87 4 129 88 65 130 68 64 128 67 4 129 88 5 131 89 66 132 69 65 130 68 5 131 89 6 133 90 67 134 70 66 132 69 6 133 90 7 135 91 68 136 71 67 134 70 7 135 91 8 137 92 69 138 72 68 136 71 8 137 92 9 139 93 70 140 73 69 138 72 9 139 93 10 141 94 71 142 74 70 140 73 10 141 94 11 143 95 72 144 75 71 142 74 11 143 95 12 145 96 73 146 76 72 144 75 12 145 96 13 147 97 74 148 77 73 146 76 13 147 97 14 149 98 75 150 78 74 148 77 14 149 98 15 151 99 76 152 79 75 150 78 15 151 99 16 153 100 77 154 80 76 152 79 16 153 100 17 155 101 78 156 81 77 154 80 17 155 101 18 157 102 79 158 82 78 156 81 18 157 102 19 159 103 60 121 83 79 158 82 19 159 103 0 122 104</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camCoverShape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape30\" name=\"hole0Shape30\">\r\n      <mesh>\r\n        <source id=\"hole0Shape30-positions\" name=\"hole0Shape30-positions\">\r\n          <float_array id=\"hole0Shape30-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape30-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape30-normals\" name=\"hole0Shape30-normals\">\r\n          <float_array id=\"hole0Shape30-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape30-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape30-map1\" name=\"hole0Shape30-map1\">\r\n          <float_array id=\"hole0Shape30-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape30-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape30-vertices\" name=\"hole0Shape30-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape30-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape30-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape30-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape30-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape30</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape31\" name=\"hole0Shape31\">\r\n      <mesh>\r\n        <source id=\"hole0Shape31-positions\" name=\"hole0Shape31-positions\">\r\n          <float_array id=\"hole0Shape31-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape31-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape31-normals\" name=\"hole0Shape31-normals\">\r\n          <float_array id=\"hole0Shape31-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape31-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape31-map1\" name=\"hole0Shape31-map1\">\r\n          <float_array id=\"hole0Shape31-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape31-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape31-vertices\" name=\"hole0Shape31-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape31-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape31-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape31-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape31-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape31</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape32\" name=\"hole0Shape32\">\r\n      <mesh>\r\n        <source id=\"hole0Shape32-positions\" name=\"hole0Shape32-positions\">\r\n          <float_array id=\"hole0Shape32-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape32-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape32-normals\" name=\"hole0Shape32-normals\">\r\n          <float_array id=\"hole0Shape32-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape32-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape32-map1\" name=\"hole0Shape32-map1\">\r\n          <float_array id=\"hole0Shape32-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape32-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape32-vertices\" name=\"hole0Shape32-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape32-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape32-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape32-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape32-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape32</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camCoverShape2\" name=\"camCoverShape2\">\r\n      <mesh>\r\n        <source id=\"camCoverShape2-positions\" name=\"camCoverShape2-positions\">\r\n          <float_array id=\"camCoverShape2-positions-array\" count=\"240\">4.508447 -0.3237068 0 4.287788 -0.3237068 -1.393187 3.64741 -0.3237068 -2.649999 2.649999 -0.3237068 -3.64741 1.393187 -0.3237068 -4.287788 0 -0.3237068 -4.508447 -1.393187 -0.3237068 -4.287788 -2.649999 -0.3237068 -3.64741 -3.64741 -0.3237068 -2.649999 -4.287788 -0.3237068 -1.393187 -4.508447 -0.3237068 0 -4.287788 -0.3237068 1.393187 -3.64741 -0.3237068 2.649999 -2.649999 -0.3237068 3.64741 -1.393187 -0.3237068 4.287788 0 -0.3237068 4.508447 1.393187 -0.3237068 4.287788 2.649999 -0.3237068 3.64741 3.64741 -0.3237068 2.649999 4.287788 -0.3237068 1.393187 4.508447 0.3237068 0 4.287788 0.3237068 -1.393187 3.64741 0.3237068 -2.649999 2.649999 0.3237068 -3.64741 1.393187 0.3237068 -4.287788 0 0.3237068 -4.508447 -1.393187 0.3237068 -4.287788 -2.649999 0.3237068 -3.64741 -3.64741 0.3237068 -2.649999 -4.287788 0.3237068 -1.393187 -4.508447 0.3237068 0 -4.287788 0.3237068 1.393187 -3.64741 0.3237068 2.649999 -2.649999 0.3237068 3.64741 -1.393187 0.3237068 4.287788 0 0.3237068 4.508447 1.393187 0.3237068 4.287788 2.649999 0.3237068 3.64741 3.64741 0.3237068 2.649999 4.287788 0.3237068 1.393187 7.4 0.3237068 0 7.037818 0.3237068 -2.286726 5.986726 0.3237068 -4.349611 4.349611 0.3237068 -5.986726 2.286726 0.3237068 -7.037819 0 0.3237068 -7.400001 -2.286726 0.3237068 -7.037819 -4.349612 0.3237068 -5.986726 -5.986727 0.3237068 -4.349611 -7.03782 0.3237068 -2.286726 -7.400002 0.3237068 0 -7.03782 0.3237068 2.286727 -5.986728 0.3237068 4.349612 -4.349612 0.3237068 5.923822 -2.286727 0.3237068 5.923823 0 0.3237068 5.923823 2.286727 0.3237068 5.923823 4.349613 0.3237068 5.923823 5.986729 0.3237068 4.349613 7.037822 0.3237068 2.286727 7.4 -0.3237068 0 7.037818 -0.3237068 -2.286726 5.986726 -0.3237068 -4.349611 4.349611 -0.3237068 -5.986726 2.286726 -0.3237068 -7.037819 0 -0.3237068 -7.400001 -2.286726 -0.3237068 -7.037819 -4.349612 -0.3237068 -5.986726 -5.986727 -0.3237068 -4.349611 -7.03782 -0.3237068 -2.286726 -7.400002 -0.3237068 0 -7.03782 -0.3237068 2.286727 -5.986728 -0.3237068 4.349612 -4.349612 -0.3237068 5.923822 -2.286727 -0.3237068 5.923823 0 -0.3237068 5.923823 2.286727 -0.3237068 5.923823 4.349613 -0.3237068 5.923823 5.986729 -0.3237068 4.349613 7.037822 -0.3237068 2.286727</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverShape2-positions-array\" count=\"80\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverShape2-normals\" name=\"camCoverShape2-normals\">\r\n          <float_array id=\"camCoverShape2-normals-array\" count=\"480\">-0.9510565 0 0.3090171 -0.9999999 0 0 -0.9999999 0 0 -0.9510565 0 0.3090171 -0.809017 0 0.5877853 -0.809017 0 0.5877853 -0.5877852 0 0.809017 -0.5877852 0 0.809017 -0.3090171 0 0.9510565 -0.3090171 0 0.9510565 0 0 0.9999999 0 0 0.9999999 0.309017 0 0.9510565 0.309017 0 0.9510565 0.5877852 0 0.809017 0.5877852 0 0.809017 0.809017 0 0.5877853 0.809017 0 0.5877853 0.9510565 0 0.3090171 0.9510565 0 0.3090171 0.9999999 0 0 0.9999999 0 0 0.9510565 0 -0.309017 0.9510565 0 -0.309017 0.809017 0 -0.5877852 0.809017 0 -0.5877852 0.5877852 0 -0.809017 0.5877852 0 -0.809017 0.3090171 0 -0.9510565 0.3090171 0 -0.9510565 0 0 -0.9999999 0 0 -0.9999999 -0.309017 0 -0.9510565 -0.309017 0 -0.9510565 -0.5877852 0 -0.809017 -0.5877852 0 -0.809017 -0.809017 0 -0.5877853 -0.809017 0 -0.5877853 -0.9510565 0 -0.3090171 -0.9510565 0 -0.3090171 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9510565 0 -0.3090169 0.9999999 0 0 0.9999999 0 0 0.9510565 0 -0.3090169 0.809017 0 -0.5877852 0.809017 0 -0.5877852 0.5877852 0 -0.809017 0.5877852 0 -0.809017 0.309017 0 -0.9510565 0.309017 0 -0.9510565 0 0 -1 0 0 -1 -0.309017 0 -0.9510565 -0.309017 0 -0.9510565 -0.5877852 0 -0.809017 -0.5877852 0 -0.809017 -0.8090169 0 -0.5877854 -0.8090169 0 -0.5877854 -0.9510565 0 -0.3090171 -0.9510565 0 -0.3090171 -0.9999999 0 0 -0.9999999 0 0 -0.9510566 0 0.309017 -0.9510566 0 0.309017 -0.8032221 0 0.5956797 -0.8032221 0 0.5956797 -0.3736179 0 0.9275827 -0.3736179 0 0.9275827 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.3736176 0 0.9275829 0.3736176 0 0.9275829 0.8032219 0 0.5956798 0.8032219 0 0.5956798 0.9510568 0 0.3090163 0.9510568 0 0.3090163 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverShape2-normals-array\" count=\"160\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverShape2-map1\" name=\"camCoverShape2-map1\">\r\n          <float_array id=\"camCoverShape2-map1-array\" count=\"336\">0.4332117 0.4176283 0.4367477 0.4176283 0.4402836 0.4176283 0.4438196 0.4176283 0.4473556 0.4176283 0.4508916 0.4176283 0.4544275 0.4176283 0.4579635 0.4176283 0.4614994 0.4176283 0.4650355 0.4176283 0.4685713 0.4176283 0.4658364 0.4176283 0.4622464 0.4176283 0.4589414 0.4176283 0.4556365 0.4176283 0.4514764 0.4176283 0.4478862 0.4176283 0.4445813 0.4176283 0.4409913 0.4176283 0.4371163 0.4176283 0.4338112 0.4176283 0.4332117 0.3930689 0.293118 0.375163 0.2950836 0.375163 0.2970491 0.375163 0.2990147 0.375163 0.3009803 0.375163 0.3029459 0.375163 0.3049114 0.375163 0.306877 0.375163 0.3088426 0.375163 0.3108081 0.375163 0.3089855 0.375163 0.3070464 0.375163 0.3051655 0.375163 0.3031681 0.375163 0.3011706 0.375163 0.2991732 0.375163 0.2972923 0.375163 0.295295 0.375163 0.2933789 0.375163 0.2913846 0.375163 0.2911524 0.3384513 0.437353 0.4168141 0.4404922 0.4168141 0.4436315 0.4168141 0.4467707 0.4168141 0.44991 0.4168141 0.4530492 0.4168141 0.4561884 0.4168141 0.4593277 0.4168141 0.4624669 0.4168141 0.4656062 0.4168141 0.4627328 0.4168141 0.4595923 0.4168141 0.4565853 0.4168141 0.4535784 0.4168141 0.4503042 0.4168141 0.4471636 0.4168141 0.4440231 0.4168141 0.4408825 0.4168141 0.4376083 0.4168141 0.4344677 0.4168141 0.4342138 0.3948645 0.2929066 0.3733046 0.2948762 0.3733046 0.2968457 0.3733046 0.2988153 0.3733046 0.3007848 0.3733046 0.3027544 0.3733046 0.3047239 0.3733046 0.3066935 0.3733046 0.308663 0.3733046 0.3106326 0.3733046 0.3089576 0.3733046 0.306995 0.3733046 0.3049365 0.3733046 0.3030697 0.3733046 0.3010111 0.3733046 0.2990485 0.3733046 0.2969899 0.3733046 0.2950272 0.3733046 0.2930645 0.3733046 0.2911019 0.3733046 0.290937 0.3385213 0.2929066 0.3385213 0.2948762 0.3385213 0.2968457 0.3385213 0.2988153 0.3385213 0.3007848 0.3385213 0.3027544 0.3385213 0.3047239 0.3385213 0.3066935 0.3385213 0.308663 0.3385213 0.3106326 0.3385213 0.3089576 0.3385213 0.306995 0.3385213 0.3049365 0.3385213 0.3030697 0.3385213 0.3010111 0.3385213 0.2990485 0.3385213 0.2969899 0.3385213 0.2950272 0.3385213 0.2930645 0.3385213 0.2911019 0.3385213 0.2933789 0.3384513 0.2913846 0.3384513 0.4342138 0.4168141 0.295295 0.3384513 0.2972923 0.3384513 0.2991732 0.3384513 0.3011706 0.3384513 0.3031681 0.3384513 0.3051655 0.3384513 0.3070464 0.3384513 0.3089855 0.3384513 0.3108081 0.3384513 0.3088426 0.3384513 0.306877 0.3384513 0.3049114 0.3384513 0.3029459 0.3384513 0.3009803 0.3384513 0.2990147 0.3384513 0.2970491 0.3384513 0.2950836 0.3384513 0.293118 0.3384513 0.4371163 0.3930689 0.4338112 0.3930689 0.2911524 0.375163 0.4409913 0.3930689 0.4445813 0.3930689 0.4478862 0.3930689 0.4514764 0.3930689 0.4556365 0.3930689 0.4589414 0.3930689 0.4622464 0.3930689 0.4658364 0.3930689 0.4685713 0.3930689 0.4650355 0.3930689 0.4614994 0.3930689 0.4579635 0.3930689 0.4544275 0.3930689 0.4508916 0.3930689 0.4473556 0.3930689 0.4438196 0.3930689 0.4402836 0.3930689 0.4367477 0.3930689 0.4376083 0.3948645 0.4344677 0.3948645 0.290937 0.3733046 0.4408825 0.3948645 0.4440231 0.3948645 0.4471636 0.3948645 0.4503042 0.3948645 0.4535784 0.3948645 0.4565853 0.3948645 0.4595923 0.3948645 0.4627328 0.3948645 0.4656062 0.3948645 0.4624669 0.3948645 0.4593277 0.3948645 0.4561884 0.3948645 0.4530492 0.3948645 0.44991 0.3948645 0.4467707 0.3948645 0.4436315 0.3948645 0.4404922 0.3948645 0.437353 0.3948645</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverShape2-map1-array\" count=\"168\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camCoverShape2-vertices\" name=\"camCoverShape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camCoverShape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert4SG\" count=\"80\">\r\n          <input semantic=\"VERTEX\" source=\"#camCoverShape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camCoverShape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camCoverShape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>\r\n          <p>1 0 1 0 1 0 20 2 21 21 3 146 2 4 2 1 0 1 21 3 146 22 5 145 3 6 3 2 4 2 22 5 145 23 7 144 4 8 4 3 6 3 23 7 144 24 9 143 5 10 5 4 8 4 24 9 143 25 11 142 6 12 6 5 10 5 25 11 142 26 13 141 7 14 7 6 12 6 26 13 141 27 15 140 8 16 8 7 14 7 27 15 140 28 17 139 9 18 9 8 16 8 28 17 139 29 19 138 10 20 10 9 18 9 29 19 138 30 21 137 11 22 11 10 20 10 30 21 137 31 23 136 12 24 12 11 22 11 31 23 136 32 25 135 13 26 13 12 24 12 32 25 135 33 27 134 14 28 14 13 26 13 33 27 134 34 29 133 15 30 15 14 28 14 34 29 133 35 31 132 16 32 16 15 30 15 35 31 132 36 33 131 17 34 17 16 32 16 36 33 131 37 35 130 18 36 18 17 34 17 37 35 130 38 37 129 19 38 19 18 36 18 38 37 129 39 39 126 0 1 20 19 38 19 39 39 126 20 2 127 21 40 22 20 41 128 40 42 42 41 43 125 22 44 23 21 40 22 41 43 125 42 45 124 23 46 24 22 44 23 42 45 124 43 47 123 24 48 25 23 46 24 43 47 123 44 49 122 25 50 26 24 48 25 44 49 122 45 51 121 26 52 27 25 50 26 45 51 121 46 53 120 27 54 28 26 52 27 46 53 120 47 55 119 28 56 29 27 54 28 47 55 119 48 57 118 29 58 30 28 56 29 48 57 118 49 59 117 30 60 31 29 58 30 49 59 117 50 61 116 31 62 32 30 60 31 50 61 116 51 63 115 32 64 33 31 62 32 51 63 115 52 65 114 33 66 34 32 64 33 52 65 114 53 67 113 34 68 35 33 66 34 53 67 113 54 69 112 35 70 36 34 68 35 54 69 112 55 71 111 36 72 37 35 70 36 55 71 111 56 73 110 37 74 38 36 72 37 56 73 110 57 75 109 38 76 39 37 74 38 57 75 109 58 77 108 39 78 40 38 76 39 58 77 108 59 79 105 20 41 41 39 78 40 59 79 105 40 42 106 41 80 43 40 81 107 60 82 63 61 83 167 42 84 44 41 80 43 61 83 167 62 85 166 43 86 45 42 84 44 62 85 166 63 87 165 44 88 46 43 86 45 63 87 165 64 89 164 45 90 47 44 88 46 64 89 164 65 91 163 46 92 48 45 90 47 65 91 163 66 93 162 47 94 49 46 92 48 66 93 162 67 95 161 48 96 50 47 94 49 67 95 161 68 97 160 49 98 51 48 96 50 68 97 160 69 99 159 50 100 52 49 98 51 69 99 159 70 101 158 51 102 53 50 100 52 70 101 158 71 103 157 52 104 54 51 102 53 71 103 157 72 105 156 53 106 55 52 104 54 72 105 156 73 107 155 54 108 56 53 106 55 73 107 155 74 109 154 55 110 57 54 108 56 74 109 154 75 111 153 56 112 58 55 110 57 75 111 153 76 113 152 57 114 59 56 112 58 76 113 152 77 115 151 58 116 60 57 114 59 77 115 151 78 117 150 59 118 61 58 116 60 78 117 150 79 119 147 40 81 62 59 118 61 79 119 147 60 82 148 61 120 64 60 121 149 0 122 84 1 123 85 62 124 65 61 120 64 1 123 85 2 125 86 63 126 66 62 124 65 2 125 86 3 127 87 64 128 67 63 126 66 3 127 87 4 129 88 65 130 68 64 128 67 4 129 88 5 131 89 66 132 69 65 130 68 5 131 89 6 133 90 67 134 70 66 132 69 6 133 90 7 135 91 68 136 71 67 134 70 7 135 91 8 137 92 69 138 72 68 136 71 8 137 92 9 139 93 70 140 73 69 138 72 9 139 93 10 141 94 71 142 74 70 140 73 10 141 94 11 143 95 72 144 75 71 142 74 11 143 95 12 145 96 73 146 76 72 144 75 12 145 96 13 147 97 74 148 77 73 146 76 13 147 97 14 149 98 75 150 78 74 148 77 14 149 98 15 151 99 76 152 79 75 150 78 15 151 99 16 153 100 77 154 80 76 152 79 16 153 100 17 155 101 78 156 81 77 154 80 17 155 101 18 157 102 79 158 82 78 156 81 18 157 102 19 159 103 60 121 83 79 158 82 19 159 103 0 122 104</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camCoverShape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape27\" name=\"hole0Shape27\">\r\n      <mesh>\r\n        <source id=\"hole0Shape27-positions\" name=\"hole0Shape27-positions\">\r\n          <float_array id=\"hole0Shape27-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape27-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape27-normals\" name=\"hole0Shape27-normals\">\r\n          <float_array id=\"hole0Shape27-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape27-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape27-map1\" name=\"hole0Shape27-map1\">\r\n          <float_array id=\"hole0Shape27-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape27-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape27-vertices\" name=\"hole0Shape27-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape27-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape27-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape27-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape27-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape27</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape28\" name=\"hole0Shape28\">\r\n      <mesh>\r\n        <source id=\"hole0Shape28-positions\" name=\"hole0Shape28-positions\">\r\n          <float_array id=\"hole0Shape28-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape28-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape28-normals\" name=\"hole0Shape28-normals\">\r\n          <float_array id=\"hole0Shape28-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape28-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape28-map1\" name=\"hole0Shape28-map1\">\r\n          <float_array id=\"hole0Shape28-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape28-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape28-vertices\" name=\"hole0Shape28-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape28-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape28-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape28-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape28-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape28</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"hole0Shape29\" name=\"hole0Shape29\">\r\n      <mesh>\r\n        <source id=\"hole0Shape29-positions\" name=\"hole0Shape29-positions\">\r\n          <float_array id=\"hole0Shape29-positions-array\" count=\"39\">0.3301007 0.40297 -0.191836 0.1926858 0.40297 -0.329251 0.004973419 0.40297 -0.3795484 -0.1827389 0.40297 -0.329251 -0.3201539 0.40297 -0.191836 -0.3704513 0.40297 -0.004123684 -0.3201539 0.40297 0.1835887 -0.1827389 0.40297 0.3210036 0.004973419 0.40297 0.371301 0.1926858 0.40297 0.3210036 0.3301007 0.40297 0.1835887 0.3803981 0.40297 -0.004123684 0.004973419 0.40297 -0.004123684</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape29-positions-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape29-normals\" name=\"hole0Shape29-normals\">\r\n          <float_array id=\"hole0Shape29-normals-array\" count=\"39\">0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape29-normals-array\" count=\"13\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"hole0Shape29-map1\" name=\"hole0Shape29-map1\">\r\n          <float_array id=\"hole0Shape29-map1-array\" count=\"26\">0.02035618 0.5165656 0.01800287 0.5142123 0.01478818 0.513351 0.01157346 0.5142123 0.009220123 0.5165656 0.008358747 0.5197803 0.009220123 0.5229951 0.01157346 0.5253484 0.01478818 0.5262098 0.01800287 0.5253484 0.02035618 0.5229951 0.02121758 0.5197803 0.01478818 0.5197496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#hole0Shape29-map1-array\" count=\"13\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"hole0Shape29-vertices\" name=\"hole0Shape29-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#hole0Shape29-positions\"/>\r\n        </vertices>\r\n        <triangles material=\"lambert2SG\" count=\"12\">\r\n          <input semantic=\"VERTEX\" source=\"#hole0Shape29-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#hole0Shape29-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#hole0Shape29-map1\" offset=\"2\" set=\"0\"/>\r\n          <p>0 0 10 12 1 12 1 2 9 1 2 9 12 1 12 2 3 8 2 3 8 12 1 12 3 4 7 3 4 7 12 1 12 4 5 6 4 5 6 12 1 12 5 6 5 5 6 5 12 1 12 6 7 4 6 7 4 12 1 12 7 8 3 7 8 3 12 1 12 8 9 2 8 9 2 12 1 12 9 10 1 9 10 1 12 1 12 10 11 0 10 11 0 12 1 12 11 12 11 11 12 11 12 1 12 0 0 10</p>\r\n        </triangles>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>hole0Shape29</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_cappedNut_0Shape1\" name=\"nutsAndBolts_cappedNut_0Shape1\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape1-positions\" name=\"nutsAndBolts_cappedNut_0Shape1-positions\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape1-positions-array\" count=\"99\">6.40191 31.76363 41.4348 5.50191 31.76363 41.4348 5.05191 30.98421 41.4348 5.50191 30.20478 41.4348 6.40191 30.20478 41.4348 6.85191 30.98421 41.4348 6.40191 31.76363 42.3731 5.50191 31.76363 42.3731 5.05191 30.98421 42.3731 5.50191 30.20478 42.3731 6.40191 30.20478 42.3731 6.85191 30.98421 42.3731 5.95191 30.98421 41.4348 5.95191 30.98421 42.3731 6.313253 31.59587 42.37032 5.606729 31.59587 42.37032 5.253467 30.984 42.37032 5.606729 30.37213 42.37032 6.313253 30.37213 42.37032 6.666515 30.984 42.37032 6.265925 31.51389 42.72359 5.654057 31.51389 42.72359 5.348123 30.984 42.72359 5.654057 30.45411 42.72359 6.265925 30.45411 42.72359 6.571859 30.984 42.72359 6.136622 31.28993 42.98219 5.78336 31.28993 42.98219 5.606729 30.984 42.98219 5.78336 30.67806 42.98219 6.136622 30.67806 42.98219 6.313253 30.984 42.98219 5.959991 30.984 43.07685</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape1-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape1-normals\" name=\"nutsAndBolts_cappedNut_0Shape1-normals\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape1-normals-array\" count=\"312\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0 0.2955666 0.9553222 0 0.2955666 0.9553222 0 0.2955666 0.9553222 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape1-normals-array\" count=\"104\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape1-map1\" name=\"nutsAndBolts_cappedNut_0Shape1-map1\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape1-map1-array\" count=\"110\">0.9031029 0.1202704 0.8787872 0.1202704 0.8666294 0.1413284 0.8787872 0.1623864 0.9031029 0.1623864 0.9152608 0.1413284 0.375 0.4640996 0.4166667 0.4640996 0.4583333 0.4640996 0.5 0.4640996 0.5416666 0.4640996 0.5833333 0.4640996 0.625 0.4640996 0.375 0.4875992 0.4166667 0.4875992 0.4583333 0.4875992 0.5 0.4875992 0.5416666 0.4875992 0.5833333 0.4875992 0.625 0.4875992 0.8705887 0.9459985 0.8456466 0.9459985 0.8331755 0.967599 0.8456466 0.9891995 0.8705887 0.9891995 0.8830597 0.967599 0.8909451 0.1403558 0.8581176 0.9666014 0.774138 0.6751828 0.7872096 0.6751828 0.7872096 0.6882544 0.774138 0.6882544 0.8002813 0.6751828 0.8002813 0.6882544 0.8133529 0.6751828 0.8133529 0.6882544 0.8264246 0.6751828 0.8264246 0.6882544 0.8394961 0.6751828 0.8394961 0.6882544 0.8525678 0.6751828 0.8525678 0.6882544 0.7872096 0.701326 0.774138 0.701326 0.8002813 0.701326 0.8133529 0.701326 0.8264246 0.701326 0.8394961 0.701326 0.8525678 0.701326 0.7806739 0.7143976 0.7937455 0.7143976 0.8068171 0.7143976 0.8198887 0.7143976 0.8329604 0.7143976 0.846032 0.7143976</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape1-map1-array\" count=\"55\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_cappedNut_0Shape1-vertices\" name=\"nutsAndBolts_cappedNut_0Shape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_cappedNut_0Shape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_cappedNut_0Shape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_cappedNut_0Shape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_cappedNut_0Shape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 14 38 28 15 39 29 21 40 30 20 41 31 15 42 29 16 43 32 22 44 33 21 45 30 16 46 32 17 47 34 23 48 35 22 49 33 17 50 34 18 51 36 24 52 37 23 53 35 18 54 36 19 55 38 25 56 39 24 57 37 19 58 38 14 59 40 20 60 41 25 61 39 20 62 31 21 63 30 27 64 42 26 65 43 21 66 30 22 67 33 28 68 44 27 69 42 22 70 33 23 71 35 29 72 45 28 73 44 23 74 35 24 75 37 30 76 46 29 77 45 24 78 37 25 79 39 31 80 47 30 81 46 25 82 39 20 83 41 26 84 48 31 85 47 26 86 43 27 87 42 32 88 49 27 89 42 28 90 44 32 91 50 28 92 44 29 93 45 32 94 51 29 95 45 30 96 46 32 97 52 30 98 46 31 99 47 32 100 53 31 101 47 26 102 48 32 103 54</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_cappedNut_0Shape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_cappedNut_0Shape2\" name=\"nutsAndBolts_cappedNut_0Shape2\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape2-positions\" name=\"nutsAndBolts_cappedNut_0Shape2-positions\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape2-positions-array\" count=\"99\">6.40191 31.76363 41.4348 5.50191 31.76363 41.4348 5.05191 30.98421 41.4348 5.50191 30.20478 41.4348 6.40191 30.20478 41.4348 6.85191 30.98421 41.4348 6.40191 31.76363 42.3731 5.50191 31.76363 42.3731 5.05191 30.98421 42.3731 5.50191 30.20478 42.3731 6.40191 30.20478 42.3731 6.85191 30.98421 42.3731 5.95191 30.98421 41.4348 5.95191 30.98421 42.3731 6.313253 31.59587 42.37032 5.606729 31.59587 42.37032 5.253467 30.984 42.37032 5.606729 30.37213 42.37032 6.313253 30.37213 42.37032 6.666515 30.984 42.37032 6.265925 31.51389 42.72359 5.654057 31.51389 42.72359 5.348123 30.984 42.72359 5.654057 30.45411 42.72359 6.265925 30.45411 42.72359 6.571859 30.984 42.72359 6.136622 31.28993 42.98219 5.78336 31.28993 42.98219 5.606729 30.984 42.98219 5.78336 30.67806 42.98219 6.136622 30.67806 42.98219 6.313253 30.984 42.98219 5.959991 30.984 43.07685</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape2-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape2-normals\" name=\"nutsAndBolts_cappedNut_0Shape2-normals\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape2-normals-array\" count=\"312\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0 0.2955666 0.9553222 0 0.2955666 0.9553222 0 0.2955666 0.9553222 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape2-normals-array\" count=\"104\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape2-map1\" name=\"nutsAndBolts_cappedNut_0Shape2-map1\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape2-map1-array\" count=\"110\">0.9031029 0.1202704 0.8787872 0.1202704 0.8666294 0.1413284 0.8787872 0.1623864 0.9031029 0.1623864 0.9152608 0.1413284 0.375 0.4640996 0.4166667 0.4640996 0.4583333 0.4640996 0.5 0.4640996 0.5416666 0.4640996 0.5833333 0.4640996 0.625 0.4640996 0.375 0.4875992 0.4166667 0.4875992 0.4583333 0.4875992 0.5 0.4875992 0.5416666 0.4875992 0.5833333 0.4875992 0.625 0.4875992 0.8705887 0.9459985 0.8456466 0.9459985 0.8331755 0.967599 0.8456466 0.9891995 0.8705887 0.9891995 0.8830597 0.967599 0.8909451 0.1403558 0.8581176 0.9666014 0.774138 0.6751828 0.7872096 0.6751828 0.7872096 0.6882544 0.774138 0.6882544 0.8002813 0.6751828 0.8002813 0.6882544 0.8133529 0.6751828 0.8133529 0.6882544 0.8264246 0.6751828 0.8264246 0.6882544 0.8394961 0.6751828 0.8394961 0.6882544 0.8525678 0.6751828 0.8525678 0.6882544 0.7872096 0.701326 0.774138 0.701326 0.8002813 0.701326 0.8133529 0.701326 0.8264246 0.701326 0.8394961 0.701326 0.8525678 0.701326 0.7806739 0.7143976 0.7937455 0.7143976 0.8068171 0.7143976 0.8198887 0.7143976 0.8329604 0.7143976 0.846032 0.7143976</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape2-map1-array\" count=\"55\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_cappedNut_0Shape2-vertices\" name=\"nutsAndBolts_cappedNut_0Shape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_cappedNut_0Shape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_cappedNut_0Shape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_cappedNut_0Shape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_cappedNut_0Shape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 14 38 28 15 39 29 21 40 30 20 41 31 15 42 29 16 43 32 22 44 33 21 45 30 16 46 32 17 47 34 23 48 35 22 49 33 17 50 34 18 51 36 24 52 37 23 53 35 18 54 36 19 55 38 25 56 39 24 57 37 19 58 38 14 59 40 20 60 41 25 61 39 20 62 31 21 63 30 27 64 42 26 65 43 21 66 30 22 67 33 28 68 44 27 69 42 22 70 33 23 71 35 29 72 45 28 73 44 23 74 35 24 75 37 30 76 46 29 77 45 24 78 37 25 79 39 31 80 47 30 81 46 25 82 39 20 83 41 26 84 48 31 85 47 26 86 43 27 87 42 32 88 49 27 89 42 28 90 44 32 91 50 28 92 44 29 93 45 32 94 51 29 95 45 30 96 46 32 97 52 30 98 46 31 99 47 32 100 53 31 101 47 26 102 48 32 103 54</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_cappedNut_0Shape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_cappedNut_0Shape3\" name=\"nutsAndBolts_cappedNut_0Shape3\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape3-positions\" name=\"nutsAndBolts_cappedNut_0Shape3-positions\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape3-positions-array\" count=\"99\">6.40191 31.76363 41.4348 5.50191 31.76363 41.4348 5.05191 30.98421 41.4348 5.50191 30.20478 41.4348 6.40191 30.20478 41.4348 6.85191 30.98421 41.4348 6.40191 31.76363 42.3731 5.50191 31.76363 42.3731 5.05191 30.98421 42.3731 5.50191 30.20478 42.3731 6.40191 30.20478 42.3731 6.85191 30.98421 42.3731 5.95191 30.98421 41.4348 5.95191 30.98421 42.3731 6.313253 31.59587 42.37032 5.606729 31.59587 42.37032 5.253467 30.984 42.37032 5.606729 30.37213 42.37032 6.313253 30.37213 42.37032 6.666515 30.984 42.37032 6.265925 31.51389 42.72359 5.654057 31.51389 42.72359 5.348123 30.984 42.72359 5.654057 30.45411 42.72359 6.265925 30.45411 42.72359 6.571859 30.984 42.72359 6.136622 31.28993 42.98219 5.78336 31.28993 42.98219 5.606729 30.984 42.98219 5.78336 30.67806 42.98219 6.136622 30.67806 42.98219 6.313253 30.984 42.98219 5.959991 30.984 43.07685</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape3-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape3-normals\" name=\"nutsAndBolts_cappedNut_0Shape3-normals\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape3-normals-array\" count=\"312\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0 0.2955666 0.9553222 0 0.2955666 0.9553222 0 0.2955666 0.9553222 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape3-normals-array\" count=\"104\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape3-map1\" name=\"nutsAndBolts_cappedNut_0Shape3-map1\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape3-map1-array\" count=\"110\">0.9031029 0.1202704 0.8787872 0.1202704 0.8666294 0.1413284 0.8787872 0.1623864 0.9031029 0.1623864 0.9152608 0.1413284 0.375 0.4640996 0.4166667 0.4640996 0.4583333 0.4640996 0.5 0.4640996 0.5416666 0.4640996 0.5833333 0.4640996 0.625 0.4640996 0.375 0.4875992 0.4166667 0.4875992 0.4583333 0.4875992 0.5 0.4875992 0.5416666 0.4875992 0.5833333 0.4875992 0.625 0.4875992 0.8705887 0.9459985 0.8456466 0.9459985 0.8331755 0.967599 0.8456466 0.9891995 0.8705887 0.9891995 0.8830597 0.967599 0.8909451 0.1403558 0.8581176 0.9666014 0.774138 0.6751828 0.7872096 0.6751828 0.7872096 0.6882544 0.774138 0.6882544 0.8002813 0.6751828 0.8002813 0.6882544 0.8133529 0.6751828 0.8133529 0.6882544 0.8264246 0.6751828 0.8264246 0.6882544 0.8394961 0.6751828 0.8394961 0.6882544 0.8525678 0.6751828 0.8525678 0.6882544 0.7872096 0.701326 0.774138 0.701326 0.8002813 0.701326 0.8133529 0.701326 0.8264246 0.701326 0.8394961 0.701326 0.8525678 0.701326 0.7806739 0.7143976 0.7937455 0.7143976 0.8068171 0.7143976 0.8198887 0.7143976 0.8329604 0.7143976 0.846032 0.7143976</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape3-map1-array\" count=\"55\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_cappedNut_0Shape3-vertices\" name=\"nutsAndBolts_cappedNut_0Shape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_cappedNut_0Shape3-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_cappedNut_0Shape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_cappedNut_0Shape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_cappedNut_0Shape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 14 38 28 15 39 29 21 40 30 20 41 31 15 42 29 16 43 32 22 44 33 21 45 30 16 46 32 17 47 34 23 48 35 22 49 33 17 50 34 18 51 36 24 52 37 23 53 35 18 54 36 19 55 38 25 56 39 24 57 37 19 58 38 14 59 40 20 60 41 25 61 39 20 62 31 21 63 30 27 64 42 26 65 43 21 66 30 22 67 33 28 68 44 27 69 42 22 70 33 23 71 35 29 72 45 28 73 44 23 74 35 24 75 37 30 76 46 29 77 45 24 78 37 25 79 39 31 80 47 30 81 46 25 82 39 20 83 41 26 84 48 31 85 47 26 86 43 27 87 42 32 88 49 27 89 42 28 90 44 32 91 50 28 92 44 29 93 45 32 94 51 29 95 45 30 96 46 32 97 52 30 98 46 31 99 47 32 100 53 31 101 47 26 102 48 32 103 54</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_cappedNut_0Shape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_cappedNut_0Shape4\" name=\"nutsAndBolts_cappedNut_0Shape4\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape4-positions\" name=\"nutsAndBolts_cappedNut_0Shape4-positions\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape4-positions-array\" count=\"99\">6.40191 31.76363 41.4348 5.50191 31.76363 41.4348 5.05191 30.98421 41.4348 5.50191 30.20478 41.4348 6.40191 30.20478 41.4348 6.85191 30.98421 41.4348 6.40191 31.76363 42.3731 5.50191 31.76363 42.3731 5.05191 30.98421 42.3731 5.50191 30.20478 42.3731 6.40191 30.20478 42.3731 6.85191 30.98421 42.3731 5.95191 30.98421 41.4348 5.95191 30.98421 42.3731 6.313253 31.59587 42.37032 5.606729 31.59587 42.37032 5.253467 30.984 42.37032 5.606729 30.37213 42.37032 6.313253 30.37213 42.37032 6.666515 30.984 42.37032 6.265925 31.51389 42.72359 5.654057 31.51389 42.72359 5.348123 30.984 42.72359 5.654057 30.45411 42.72359 6.265925 30.45411 42.72359 6.571859 30.984 42.72359 6.136622 31.28993 42.98219 5.78336 31.28993 42.98219 5.606729 30.984 42.98219 5.78336 30.67806 42.98219 6.136622 30.67806 42.98219 6.313253 30.984 42.98219 5.959991 30.984 43.07685</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape4-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape4-normals\" name=\"nutsAndBolts_cappedNut_0Shape4-normals\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape4-normals-array\" count=\"312\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0 0.2955666 0.9553222 0 0.2955666 0.9553222 0 0.2955666 0.9553222 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape4-normals-array\" count=\"104\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape4-map1\" name=\"nutsAndBolts_cappedNut_0Shape4-map1\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape4-map1-array\" count=\"110\">0.9031029 0.1202704 0.8787872 0.1202704 0.8666294 0.1413284 0.8787872 0.1623864 0.9031029 0.1623864 0.9152608 0.1413284 0.375 0.4640996 0.4166667 0.4640996 0.4583333 0.4640996 0.5 0.4640996 0.5416666 0.4640996 0.5833333 0.4640996 0.625 0.4640996 0.375 0.4875992 0.4166667 0.4875992 0.4583333 0.4875992 0.5 0.4875992 0.5416666 0.4875992 0.5833333 0.4875992 0.625 0.4875992 0.8705887 0.9459985 0.8456466 0.9459985 0.8331755 0.967599 0.8456466 0.9891995 0.8705887 0.9891995 0.8830597 0.967599 0.8909451 0.1403558 0.8581176 0.9666014 0.774138 0.6751828 0.7872096 0.6751828 0.7872096 0.6882544 0.774138 0.6882544 0.8002813 0.6751828 0.8002813 0.6882544 0.8133529 0.6751828 0.8133529 0.6882544 0.8264246 0.6751828 0.8264246 0.6882544 0.8394961 0.6751828 0.8394961 0.6882544 0.8525678 0.6751828 0.8525678 0.6882544 0.7872096 0.701326 0.774138 0.701326 0.8002813 0.701326 0.8133529 0.701326 0.8264246 0.701326 0.8394961 0.701326 0.8525678 0.701326 0.7806739 0.7143976 0.7937455 0.7143976 0.8068171 0.7143976 0.8198887 0.7143976 0.8329604 0.7143976 0.846032 0.7143976</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape4-map1-array\" count=\"55\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_cappedNut_0Shape4-vertices\" name=\"nutsAndBolts_cappedNut_0Shape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_cappedNut_0Shape4-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_cappedNut_0Shape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_cappedNut_0Shape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_cappedNut_0Shape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 14 38 28 15 39 29 21 40 30 20 41 31 15 42 29 16 43 32 22 44 33 21 45 30 16 46 32 17 47 34 23 48 35 22 49 33 17 50 34 18 51 36 24 52 37 23 53 35 18 54 36 19 55 38 25 56 39 24 57 37 19 58 38 14 59 40 20 60 41 25 61 39 20 62 31 21 63 30 27 64 42 26 65 43 21 66 30 22 67 33 28 68 44 27 69 42 22 70 33 23 71 35 29 72 45 28 73 44 23 74 35 24 75 37 30 76 46 29 77 45 24 78 37 25 79 39 31 80 47 30 81 46 25 82 39 20 83 41 26 84 48 31 85 47 26 86 43 27 87 42 32 88 49 27 89 42 28 90 44 32 91 50 28 92 44 29 93 45 32 94 51 29 95 45 30 96 46 32 97 52 30 98 46 31 99 47 32 100 53 31 101 47 26 102 48 32 103 54</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_cappedNut_0Shape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_cappedNut_0Shape5\" name=\"nutsAndBolts_cappedNut_0Shape5\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape5-positions\" name=\"nutsAndBolts_cappedNut_0Shape5-positions\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape5-positions-array\" count=\"99\">6.40191 31.76363 41.4348 5.50191 31.76363 41.4348 5.05191 30.98421 41.4348 5.50191 30.20478 41.4348 6.40191 30.20478 41.4348 6.85191 30.98421 41.4348 6.40191 31.76363 42.3731 5.50191 31.76363 42.3731 5.05191 30.98421 42.3731 5.50191 30.20478 42.3731 6.40191 30.20478 42.3731 6.85191 30.98421 42.3731 5.95191 30.98421 41.4348 5.95191 30.98421 42.3731 6.313253 31.59587 42.37032 5.606729 31.59587 42.37032 5.253467 30.984 42.37032 5.606729 30.37213 42.37032 6.313253 30.37213 42.37032 6.666515 30.984 42.37032 6.265925 31.51389 42.72359 5.654057 31.51389 42.72359 5.348123 30.984 42.72359 5.654057 30.45411 42.72359 6.265925 30.45411 42.72359 6.571859 30.984 42.72359 6.136622 31.28993 42.98219 5.78336 31.28993 42.98219 5.606729 30.984 42.98219 5.78336 30.67806 42.98219 6.136622 30.67806 42.98219 6.313253 30.984 42.98219 5.959991 30.984 43.07685</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape5-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape5-normals\" name=\"nutsAndBolts_cappedNut_0Shape5-normals\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape5-normals-array\" count=\"312\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0 0.2955666 0.9553222 0 0.2955666 0.9553222 0 0.2955666 0.9553222 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape5-normals-array\" count=\"104\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape5-map1\" name=\"nutsAndBolts_cappedNut_0Shape5-map1\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape5-map1-array\" count=\"110\">0.9031029 0.1202704 0.8787872 0.1202704 0.8666294 0.1413284 0.8787872 0.1623864 0.9031029 0.1623864 0.9152608 0.1413284 0.375 0.4640996 0.4166667 0.4640996 0.4583333 0.4640996 0.5 0.4640996 0.5416666 0.4640996 0.5833333 0.4640996 0.625 0.4640996 0.375 0.4875992 0.4166667 0.4875992 0.4583333 0.4875992 0.5 0.4875992 0.5416666 0.4875992 0.5833333 0.4875992 0.625 0.4875992 0.8705887 0.9459985 0.8456466 0.9459985 0.8331755 0.967599 0.8456466 0.9891995 0.8705887 0.9891995 0.8830597 0.967599 0.8909451 0.1403558 0.8581176 0.9666014 0.774138 0.6751828 0.7872096 0.6751828 0.7872096 0.6882544 0.774138 0.6882544 0.8002813 0.6751828 0.8002813 0.6882544 0.8133529 0.6751828 0.8133529 0.6882544 0.8264246 0.6751828 0.8264246 0.6882544 0.8394961 0.6751828 0.8394961 0.6882544 0.8525678 0.6751828 0.8525678 0.6882544 0.7872096 0.701326 0.774138 0.701326 0.8002813 0.701326 0.8133529 0.701326 0.8264246 0.701326 0.8394961 0.701326 0.8525678 0.701326 0.7806739 0.7143976 0.7937455 0.7143976 0.8068171 0.7143976 0.8198887 0.7143976 0.8329604 0.7143976 0.846032 0.7143976</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape5-map1-array\" count=\"55\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_cappedNut_0Shape5-vertices\" name=\"nutsAndBolts_cappedNut_0Shape5-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_cappedNut_0Shape5-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_cappedNut_0Shape5-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_cappedNut_0Shape5-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_cappedNut_0Shape5-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 14 38 28 15 39 29 21 40 30 20 41 31 15 42 29 16 43 32 22 44 33 21 45 30 16 46 32 17 47 34 23 48 35 22 49 33 17 50 34 18 51 36 24 52 37 23 53 35 18 54 36 19 55 38 25 56 39 24 57 37 19 58 38 14 59 40 20 60 41 25 61 39 20 62 31 21 63 30 27 64 42 26 65 43 21 66 30 22 67 33 28 68 44 27 69 42 22 70 33 23 71 35 29 72 45 28 73 44 23 74 35 24 75 37 30 76 46 29 77 45 24 78 37 25 79 39 31 80 47 30 81 46 25 82 39 20 83 41 26 84 48 31 85 47 26 86 43 27 87 42 32 88 49 27 89 42 28 90 44 32 91 50 28 92 44 29 93 45 32 94 51 29 95 45 30 96 46 32 97 52 30 98 46 31 99 47 32 100 53 31 101 47 26 102 48 32 103 54</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_cappedNut_0Shape5</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_cappedNut_0Shape6\" name=\"nutsAndBolts_cappedNut_0Shape6\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape6-positions\" name=\"nutsAndBolts_cappedNut_0Shape6-positions\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape6-positions-array\" count=\"99\">6.40191 31.76363 41.4348 5.50191 31.76363 41.4348 5.05191 30.98421 41.4348 5.50191 30.20478 41.4348 6.40191 30.20478 41.4348 6.85191 30.98421 41.4348 6.40191 31.76363 42.3731 5.50191 31.76363 42.3731 5.05191 30.98421 42.3731 5.50191 30.20478 42.3731 6.40191 30.20478 42.3731 6.85191 30.98421 42.3731 5.95191 30.98421 41.4348 5.95191 30.98421 42.3731 6.313253 31.59587 42.37032 5.606729 31.59587 42.37032 5.253467 30.984 42.37032 5.606729 30.37213 42.37032 6.313253 30.37213 42.37032 6.666515 30.984 42.37032 6.265925 31.51389 42.72359 5.654057 31.51389 42.72359 5.348123 30.984 42.72359 5.654057 30.45411 42.72359 6.265925 30.45411 42.72359 6.571859 30.984 42.72359 6.136622 31.28993 42.98219 5.78336 31.28993 42.98219 5.606729 30.984 42.98219 5.78336 30.67806 42.98219 6.136622 30.67806 42.98219 6.313253 30.984 42.98219 5.959991 30.984 43.07685</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape6-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape6-normals\" name=\"nutsAndBolts_cappedNut_0Shape6-normals\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape6-normals-array\" count=\"312\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0 0.2955666 0.9553222 0 0.2955666 0.9553222 0 0.2955666 0.9553222 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape6-normals-array\" count=\"104\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape6-map1\" name=\"nutsAndBolts_cappedNut_0Shape6-map1\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape6-map1-array\" count=\"110\">0.9031029 0.1202704 0.8787872 0.1202704 0.8666294 0.1413284 0.8787872 0.1623864 0.9031029 0.1623864 0.9152608 0.1413284 0.375 0.4640996 0.4166667 0.4640996 0.4583333 0.4640996 0.5 0.4640996 0.5416666 0.4640996 0.5833333 0.4640996 0.625 0.4640996 0.375 0.4875992 0.4166667 0.4875992 0.4583333 0.4875992 0.5 0.4875992 0.5416666 0.4875992 0.5833333 0.4875992 0.625 0.4875992 0.8705887 0.9459985 0.8456466 0.9459985 0.8331755 0.967599 0.8456466 0.9891995 0.8705887 0.9891995 0.8830597 0.967599 0.8909451 0.1403558 0.8581176 0.9666014 0.774138 0.6751828 0.7872096 0.6751828 0.7872096 0.6882544 0.774138 0.6882544 0.8002813 0.6751828 0.8002813 0.6882544 0.8133529 0.6751828 0.8133529 0.6882544 0.8264246 0.6751828 0.8264246 0.6882544 0.8394961 0.6751828 0.8394961 0.6882544 0.8525678 0.6751828 0.8525678 0.6882544 0.7872096 0.701326 0.774138 0.701326 0.8002813 0.701326 0.8133529 0.701326 0.8264246 0.701326 0.8394961 0.701326 0.8525678 0.701326 0.7806739 0.7143976 0.7937455 0.7143976 0.8068171 0.7143976 0.8198887 0.7143976 0.8329604 0.7143976 0.846032 0.7143976</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape6-map1-array\" count=\"55\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_cappedNut_0Shape6-vertices\" name=\"nutsAndBolts_cappedNut_0Shape6-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_cappedNut_0Shape6-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_cappedNut_0Shape6-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_cappedNut_0Shape6-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_cappedNut_0Shape6-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 14 38 28 15 39 29 21 40 30 20 41 31 15 42 29 16 43 32 22 44 33 21 45 30 16 46 32 17 47 34 23 48 35 22 49 33 17 50 34 18 51 36 24 52 37 23 53 35 18 54 36 19 55 38 25 56 39 24 57 37 19 58 38 14 59 40 20 60 41 25 61 39 20 62 31 21 63 30 27 64 42 26 65 43 21 66 30 22 67 33 28 68 44 27 69 42 22 70 33 23 71 35 29 72 45 28 73 44 23 74 35 24 75 37 30 76 46 29 77 45 24 78 37 25 79 39 31 80 47 30 81 46 25 82 39 20 83 41 26 84 48 31 85 47 26 86 43 27 87 42 32 88 49 27 89 42 28 90 44 32 91 50 28 92 44 29 93 45 32 94 51 29 95 45 30 96 46 32 97 52 30 98 46 31 99 47 32 100 53 31 101 47 26 102 48 32 103 54</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_cappedNut_0Shape6</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_cappedNut_0Shape7\" name=\"nutsAndBolts_cappedNut_0Shape7\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape7-positions\" name=\"nutsAndBolts_cappedNut_0Shape7-positions\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape7-positions-array\" count=\"99\">6.40191 31.76363 41.4348 5.50191 31.76363 41.4348 5.05191 30.98421 41.4348 5.50191 30.20478 41.4348 6.40191 30.20478 41.4348 6.85191 30.98421 41.4348 6.40191 31.76363 42.3731 5.50191 31.76363 42.3731 5.05191 30.98421 42.3731 5.50191 30.20478 42.3731 6.40191 30.20478 42.3731 6.85191 30.98421 42.3731 5.95191 30.98421 41.4348 5.95191 30.98421 42.3731 6.313253 31.59587 42.37032 5.606729 31.59587 42.37032 5.253467 30.984 42.37032 5.606729 30.37213 42.37032 6.313253 30.37213 42.37032 6.666515 30.984 42.37032 6.265925 31.51389 42.72359 5.654057 31.51389 42.72359 5.348123 30.984 42.72359 5.654057 30.45411 42.72359 6.265925 30.45411 42.72359 6.571859 30.984 42.72359 6.136622 31.28993 42.98219 5.78336 31.28993 42.98219 5.606729 30.984 42.98219 5.78336 30.67806 42.98219 6.136622 30.67806 42.98219 6.313253 30.984 42.98219 5.959991 30.984 43.07685</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape7-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape7-normals\" name=\"nutsAndBolts_cappedNut_0Shape7-normals\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape7-normals-array\" count=\"312\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0 0.2955666 0.9553222 0 0.2955666 0.9553222 0 0.2955666 0.9553222 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape7-normals-array\" count=\"104\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape7-map1\" name=\"nutsAndBolts_cappedNut_0Shape7-map1\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape7-map1-array\" count=\"110\">0.9031029 0.1202704 0.8787872 0.1202704 0.8666294 0.1413284 0.8787872 0.1623864 0.9031029 0.1623864 0.9152608 0.1413284 0.375 0.4640996 0.4166667 0.4640996 0.4583333 0.4640996 0.5 0.4640996 0.5416666 0.4640996 0.5833333 0.4640996 0.625 0.4640996 0.375 0.4875992 0.4166667 0.4875992 0.4583333 0.4875992 0.5 0.4875992 0.5416666 0.4875992 0.5833333 0.4875992 0.625 0.4875992 0.8705887 0.9459985 0.8456466 0.9459985 0.8331755 0.967599 0.8456466 0.9891995 0.8705887 0.9891995 0.8830597 0.967599 0.8909451 0.1403558 0.8581176 0.9666014 0.774138 0.6751828 0.7872096 0.6751828 0.7872096 0.6882544 0.774138 0.6882544 0.8002813 0.6751828 0.8002813 0.6882544 0.8133529 0.6751828 0.8133529 0.6882544 0.8264246 0.6751828 0.8264246 0.6882544 0.8394961 0.6751828 0.8394961 0.6882544 0.8525678 0.6751828 0.8525678 0.6882544 0.7872096 0.701326 0.774138 0.701326 0.8002813 0.701326 0.8133529 0.701326 0.8264246 0.701326 0.8394961 0.701326 0.8525678 0.701326 0.7806739 0.7143976 0.7937455 0.7143976 0.8068171 0.7143976 0.8198887 0.7143976 0.8329604 0.7143976 0.846032 0.7143976</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape7-map1-array\" count=\"55\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_cappedNut_0Shape7-vertices\" name=\"nutsAndBolts_cappedNut_0Shape7-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_cappedNut_0Shape7-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_cappedNut_0Shape7-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_cappedNut_0Shape7-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_cappedNut_0Shape7-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 14 38 28 15 39 29 21 40 30 20 41 31 15 42 29 16 43 32 22 44 33 21 45 30 16 46 32 17 47 34 23 48 35 22 49 33 17 50 34 18 51 36 24 52 37 23 53 35 18 54 36 19 55 38 25 56 39 24 57 37 19 58 38 14 59 40 20 60 41 25 61 39 20 62 31 21 63 30 27 64 42 26 65 43 21 66 30 22 67 33 28 68 44 27 69 42 22 70 33 23 71 35 29 72 45 28 73 44 23 74 35 24 75 37 30 76 46 29 77 45 24 78 37 25 79 39 31 80 47 30 81 46 25 82 39 20 83 41 26 84 48 31 85 47 26 86 43 27 87 42 32 88 49 27 89 42 28 90 44 32 91 50 28 92 44 29 93 45 32 94 51 29 95 45 30 96 46 32 97 52 30 98 46 31 99 47 32 100 53 31 101 47 26 102 48 32 103 54</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_cappedNut_0Shape7</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_cappedNut_0Shape8\" name=\"nutsAndBolts_cappedNut_0Shape8\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape8-positions\" name=\"nutsAndBolts_cappedNut_0Shape8-positions\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape8-positions-array\" count=\"99\">6.40191 31.76363 41.4348 5.50191 31.76363 41.4348 5.05191 30.98421 41.4348 5.50191 30.20478 41.4348 6.40191 30.20478 41.4348 6.85191 30.98421 41.4348 6.40191 31.76363 42.3731 5.50191 31.76363 42.3731 5.05191 30.98421 42.3731 5.50191 30.20478 42.3731 6.40191 30.20478 42.3731 6.85191 30.98421 42.3731 5.95191 30.98421 41.4348 5.95191 30.98421 42.3731 6.313253 31.59587 42.37032 5.606729 31.59587 42.37032 5.253467 30.984 42.37032 5.606729 30.37213 42.37032 6.313253 30.37213 42.37032 6.666515 30.984 42.37032 6.265925 31.51389 42.72359 5.654057 31.51389 42.72359 5.348123 30.984 42.72359 5.654057 30.45411 42.72359 6.265925 30.45411 42.72359 6.571859 30.984 42.72359 6.136622 31.28993 42.98219 5.78336 31.28993 42.98219 5.606729 30.984 42.98219 5.78336 30.67806 42.98219 6.136622 30.67806 42.98219 6.313253 30.984 42.98219 5.959991 30.984 43.07685</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape8-positions-array\" count=\"33\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape8-normals\" name=\"nutsAndBolts_cappedNut_0Shape8-normals\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape8-normals-array\" count=\"312\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660256 0.4999997 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 -0.8660258 -0.4999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660256 -0.4999997 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0.8660258 0.4999993 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 0 0.9741175 0.2260422 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436112 0.4870597 0.2260377 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 -0.8436117 -0.487059 0.2260374 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0 -0.9741194 0.226034 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436115 -0.4870589 0.2260383 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0.8436114 0.4870588 0.2260393 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 0 0.7559314 0.6546509 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.6546524 0.377964 0.6546553 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 -0.654655 -0.3779648 0.6546522 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0 -0.7559271 0.6546559 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.654653 -0.3779643 0.6546544 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0.6546538 0.377964 0.6546538 0 0.2955666 0.9553222 0 0.2955666 0.9553222 0 0.2955666 0.9553222 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559487 0.1477857 0.955327 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 -0.2559528 -0.147788 0.9553255 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0 -0.2955714 0.9553207 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559507 -0.1477869 0.9553263 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327 0.2559487 0.1477857 0.955327</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape8-normals-array\" count=\"104\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_cappedNut_0Shape8-map1\" name=\"nutsAndBolts_cappedNut_0Shape8-map1\">\r\n          <float_array id=\"nutsAndBolts_cappedNut_0Shape8-map1-array\" count=\"110\">0.9031029 0.1202704 0.8787872 0.1202704 0.8666294 0.1413284 0.8787872 0.1623864 0.9031029 0.1623864 0.9152608 0.1413284 0.375 0.4640996 0.4166667 0.4640996 0.4583333 0.4640996 0.5 0.4640996 0.5416666 0.4640996 0.5833333 0.4640996 0.625 0.4640996 0.375 0.4875992 0.4166667 0.4875992 0.4583333 0.4875992 0.5 0.4875992 0.5416666 0.4875992 0.5833333 0.4875992 0.625 0.4875992 0.8705887 0.9459985 0.8456466 0.9459985 0.8331755 0.967599 0.8456466 0.9891995 0.8705887 0.9891995 0.8830597 0.967599 0.8909451 0.1403558 0.8581176 0.9666014 0.774138 0.6751828 0.7872096 0.6751828 0.7872096 0.6882544 0.774138 0.6882544 0.8002813 0.6751828 0.8002813 0.6882544 0.8133529 0.6751828 0.8133529 0.6882544 0.8264246 0.6751828 0.8264246 0.6882544 0.8394961 0.6751828 0.8394961 0.6882544 0.8525678 0.6751828 0.8525678 0.6882544 0.7872096 0.701326 0.774138 0.701326 0.8002813 0.701326 0.8133529 0.701326 0.8264246 0.701326 0.8394961 0.701326 0.8525678 0.701326 0.7806739 0.7143976 0.7937455 0.7143976 0.8068171 0.7143976 0.8198887 0.7143976 0.8329604 0.7143976 0.846032 0.7143976</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_cappedNut_0Shape8-map1-array\" count=\"55\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_cappedNut_0Shape8-vertices\" name=\"nutsAndBolts_cappedNut_0Shape8-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_cappedNut_0Shape8-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_cappedNut_0Shape8-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_cappedNut_0Shape8-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_cappedNut_0Shape8-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 14 38 28 15 39 29 21 40 30 20 41 31 15 42 29 16 43 32 22 44 33 21 45 30 16 46 32 17 47 34 23 48 35 22 49 33 17 50 34 18 51 36 24 52 37 23 53 35 18 54 36 19 55 38 25 56 39 24 57 37 19 58 38 14 59 40 20 60 41 25 61 39 20 62 31 21 63 30 27 64 42 26 65 43 21 66 30 22 67 33 28 68 44 27 69 42 22 70 33 23 71 35 29 72 45 28 73 44 23 74 35 24 75 37 30 76 46 29 77 45 24 78 37 25 79 39 31 80 47 30 81 46 25 82 39 20 83 41 26 84 48 31 85 47 26 86 43 27 87 42 32 88 49 27 89 42 28 90 44 32 91 50 28 92 44 29 93 45 32 94 51 29 95 45 30 96 46 32 97 52 30 98 46 31 99 47 32 100 53 31 101 47 26 102 48 32 103 54</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_cappedNut_0Shape8</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_nut_pumpHousingShape1\" name=\"nutsAndBolts_nut_pumpHousingShape1\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape1-positions\" name=\"nutsAndBolts_nut_pumpHousingShape1-positions\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape1-positions-array\" count=\"78\">0.6934085 -0.6553936 -1.201019 -0.6934085 -0.6553936 -1.201019 -1.386817 -0.6553936 0 -0.6934094 -0.6553936 1.201019 0.6934085 -0.6553936 1.201019 1.386817 -0.6553936 0 0.6934085 0.6554012 -1.201019 -0.6934085 0.6554012 -1.201019 -1.386817 0.6554012 0 -0.6934094 0.6554012 1.201019 0.6934085 0.6554012 1.201019 1.386817 0.6554012 0 0 -0.6553936 0 0 0.6554012 0 0.399806 -0.6553936 -0.6924839 -0.4006419 -0.6553936 -0.6939316 -0.8100209 -0.6553936 0 -0.4025064 -0.6553936 0.6971607 0.4064775 -0.6553936 0.7040405 0.8120313 -0.6553936 0 0.6972156 -0.6553936 0.4025383 0.6972156 -0.6553936 -0.4025383 0 -0.6553936 -0.8050747 -0.6972156 -0.6553936 -0.4025383 -0.6972156 -0.6553936 0.4025383 0 -0.6553936 0.8050747</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape1-positions-array\" count=\"26\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape1-normals\" name=\"nutsAndBolts_nut_pumpHousingShape1-normals\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape1-normals-array\" count=\"258\">0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 0 0 1 0 0 1 0 0 1 0 0 1 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape1-normals-array\" count=\"86\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape1-map1\" name=\"nutsAndBolts_nut_pumpHousingShape1-map1\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape1-map1-array\" count=\"100\">0.5085651 0.3037819 0.4955549 0.3037819 0.4955549 0.3037819 0.5085651 0.3037819 0.4890497 0.2907716 0.4890497 0.2907716 0.4955549 0.2777613 0.4955549 0.2777613 0.5085651 0.2777613 0.5085651 0.2777613 0.5150703 0.2907716 0.5150703 0.2907716 0.5020599 0.2994928 0.4955192 0.2951322 0.4955192 0.2864111 0.5020599 0.2820505 0.5086008 0.2864111 0.5086008 0.2951322 0.5020599 0.2907716 0.4983014 0.2982888 0.5058109 0.2982731 0.5190238 0.9006391 0.4944609 0.2907716 0.4982839 0.2832195 0.5058733 0.283145 0.509678 0.2907716 0.5217944 0.9014134 0.5245591 0.900629 0.5217944 0.895805 0.5161929 0.895805 0.5169729 0.8986093 0.5190109 0.8909483 0.5169729 0.8930007 0.5246053 0.8909003 0.5217944 0.8901966 0.5274097 0.895805 0.5266158 0.8930007 0.5266158 0.8986093 0.634006 0.1877232 0.634006 0.2072638 0.6098256 0.2072638 0.6098256 0.1877232 0.634006 0.1877981 0.6098256 0.1877981 0.634006 0.2072638 0.6098257 0.2072638 0.634006 0.1877232 0.6098256 0.1877232 0.634006 0.2073288 0.6098256 0.2073288</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape1-map1-array\" count=\"50\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_nut_pumpHousingShape1-vertices\" name=\"nutsAndBolts_nut_pumpHousingShape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_nut_pumpHousingShape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_nut_pumpHousingShape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_nut_pumpHousingShape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_nut_pumpHousingShape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 38 1 1 39 7 2 40 6 3 41 1 4 39 2 5 42 8 6 43 7 7 40 2 8 42 3 9 44 9 10 45 8 11 43 3 12 44 4 13 46 10 14 47 9 15 45 4 16 46 5 17 48 11 18 49 10 19 47 5 20 48 0 21 38 6 22 41 11 23 49 1 24 1 0 25 0 22 26 12 2 27 4 1 28 1 23 29 13 3 30 6 2 31 4 24 32 14 4 33 8 3 34 6 25 35 15 5 36 10 4 37 8 20 38 16 0 39 0 5 40 10 21 41 17 6 42 3 7 43 2 13 44 18 7 43 2 8 45 5 13 44 18 8 45 5 9 46 7 13 44 18 9 46 7 10 47 9 13 44 18 10 47 9 11 48 11 13 44 18 11 48 11 6 42 3 13 44 18 15 49 21 22 50 26 14 51 27 12 52 28 16 53 29 23 54 30 15 49 21 12 52 28 17 55 31 24 56 32 16 53 29 12 52 28 18 57 33 25 58 34 17 55 31 12 52 28 19 59 35 20 60 36 18 57 33 12 52 28 14 51 27 21 61 37 19 59 35 12 52 28 20 62 16 4 63 8 18 64 24 5 65 10 20 66 16 19 67 25 21 68 17 5 65 10 19 67 25 0 69 0 21 70 17 14 71 20 22 72 12 0 69 0 14 71 20 1 73 1 22 74 12 15 75 19 23 76 13 1 73 1 15 75 19 2 77 4 23 78 13 16 79 22 24 80 14 2 77 4 16 79 22 3 81 6 24 82 14 17 83 23 25 84 15 3 81 6 17 83 23 4 63 8 25 85 15 18 64 24</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_nut_pumpHousingShape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_nut_pumpHousingShape2\" name=\"nutsAndBolts_nut_pumpHousingShape2\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape2-positions\" name=\"nutsAndBolts_nut_pumpHousingShape2-positions\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape2-positions-array\" count=\"78\">0.6934085 -0.6553936 -1.201019 -0.6934085 -0.6553936 -1.201019 -1.386817 -0.6553936 0 -0.6934094 -0.6553936 1.201019 0.6934085 -0.6553936 1.201019 1.386817 -0.6553936 0 0.6934085 0.6554012 -1.201019 -0.6934085 0.6554012 -1.201019 -1.386817 0.6554012 0 -0.6934094 0.6554012 1.201019 0.6934085 0.6554012 1.201019 1.386817 0.6554012 0 0 -0.6553936 0 0 0.6554012 0 0.399806 -0.6553936 -0.6924839 -0.4006419 -0.6553936 -0.6939316 -0.8100209 -0.6553936 0 -0.4025064 -0.6553936 0.6971607 0.4064775 -0.6553936 0.7040405 0.8120313 -0.6553936 0 0.6972156 -0.6553936 0.4025383 0.6972156 -0.6553936 -0.4025383 0 -0.6553936 -0.8050747 -0.6972156 -0.6553936 -0.4025383 -0.6972156 -0.6553936 0.4025383 0 -0.6553936 0.8050747</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape2-positions-array\" count=\"26\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape2-normals\" name=\"nutsAndBolts_nut_pumpHousingShape2-normals\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape2-normals-array\" count=\"258\">0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 0 0 1 0 0 1 0 0 1 0 0 1 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape2-normals-array\" count=\"86\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape2-map1\" name=\"nutsAndBolts_nut_pumpHousingShape2-map1\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape2-map1-array\" count=\"100\">0.5085651 0.3037819 0.4955549 0.3037819 0.4955549 0.3037819 0.5085651 0.3037819 0.4890497 0.2907716 0.4890497 0.2907716 0.4955549 0.2777613 0.4955549 0.2777613 0.5085651 0.2777613 0.5085651 0.2777613 0.5150703 0.2907716 0.5150703 0.2907716 0.5020599 0.2994928 0.4955192 0.2951322 0.4955192 0.2864111 0.5020599 0.2820505 0.5086008 0.2864111 0.5086008 0.2951322 0.5020599 0.2907716 0.4983014 0.2982888 0.5058109 0.2982731 0.2510238 0.901639 0.4944609 0.2907716 0.4982839 0.2832195 0.5058733 0.283145 0.509678 0.2907716 0.2537944 0.9024134 0.2565591 0.901629 0.2537944 0.896805 0.2481928 0.896805 0.2489729 0.8996093 0.2510109 0.8919483 0.2489729 0.8940006 0.2566053 0.8919003 0.2537944 0.8911965 0.2594097 0.896805 0.2586158 0.8940006 0.2586158 0.8996093 0.634006 0.1877232 0.634006 0.2072638 0.6098256 0.2072638 0.6098256 0.1877232 0.634006 0.1877981 0.6098256 0.1877981 0.634006 0.2072638 0.6098257 0.2072638 0.634006 0.1877232 0.6098256 0.1877232 0.634006 0.2073288 0.6098256 0.2073288</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape2-map1-array\" count=\"50\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_nut_pumpHousingShape2-vertices\" name=\"nutsAndBolts_nut_pumpHousingShape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_nut_pumpHousingShape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_nut_pumpHousingShape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_nut_pumpHousingShape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_nut_pumpHousingShape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 38 1 1 39 7 2 40 6 3 41 1 4 39 2 5 42 8 6 43 7 7 40 2 8 42 3 9 44 9 10 45 8 11 43 3 12 44 4 13 46 10 14 47 9 15 45 4 16 46 5 17 48 11 18 49 10 19 47 5 20 48 0 21 38 6 22 41 11 23 49 1 24 1 0 25 0 22 26 12 2 27 4 1 28 1 23 29 13 3 30 6 2 31 4 24 32 14 4 33 8 3 34 6 25 35 15 5 36 10 4 37 8 20 38 16 0 39 0 5 40 10 21 41 17 6 42 3 7 43 2 13 44 18 7 43 2 8 45 5 13 44 18 8 45 5 9 46 7 13 44 18 9 46 7 10 47 9 13 44 18 10 47 9 11 48 11 13 44 18 11 48 11 6 42 3 13 44 18 15 49 21 22 50 26 14 51 27 12 52 28 16 53 29 23 54 30 15 49 21 12 52 28 17 55 31 24 56 32 16 53 29 12 52 28 18 57 33 25 58 34 17 55 31 12 52 28 19 59 35 20 60 36 18 57 33 12 52 28 14 51 27 21 61 37 19 59 35 12 52 28 20 62 16 4 63 8 18 64 24 5 65 10 20 66 16 19 67 25 21 68 17 5 65 10 19 67 25 0 69 0 21 70 17 14 71 20 22 72 12 0 69 0 14 71 20 1 73 1 22 74 12 15 75 19 23 76 13 1 73 1 15 75 19 2 77 4 23 78 13 16 79 22 24 80 14 2 77 4 16 79 22 3 81 6 24 82 14 17 83 23 25 84 15 3 81 6 17 83 23 4 63 8 25 85 15 18 64 24</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_nut_pumpHousingShape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_nut_pumpHousingShape3\" name=\"nutsAndBolts_nut_pumpHousingShape3\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape3-positions\" name=\"nutsAndBolts_nut_pumpHousingShape3-positions\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape3-positions-array\" count=\"78\">0.6934085 -0.6553936 -1.201019 -0.6934085 -0.6553936 -1.201019 -1.386817 -0.6553936 0 -0.6934094 -0.6553936 1.201019 0.6934085 -0.6553936 1.201019 1.386817 -0.6553936 0 0.6934085 0.6554012 -1.201019 -0.6934085 0.6554012 -1.201019 -1.386817 0.6554012 0 -0.6934094 0.6554012 1.201019 0.6934085 0.6554012 1.201019 1.386817 0.6554012 0 0 -0.6553936 0 0 0.6554012 0 0.399806 -0.6553936 -0.6924839 -0.4006419 -0.6553936 -0.6939316 -0.8100209 -0.6553936 0 -0.4025064 -0.6553936 0.6971607 0.4064775 -0.6553936 0.7040405 0.8120313 -0.6553936 0 0.6972156 -0.6553936 0.4025383 0.6972156 -0.6553936 -0.4025383 0 -0.6553936 -0.8050747 -0.6972156 -0.6553936 -0.4025383 -0.6972156 -0.6553936 0.4025383 0 -0.6553936 0.8050747</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape3-positions-array\" count=\"26\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape3-normals\" name=\"nutsAndBolts_nut_pumpHousingShape3-normals\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape3-normals-array\" count=\"258\">0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 0 0 1 0 0 1 0 0 1 0 0 1 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape3-normals-array\" count=\"86\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape3-map1\" name=\"nutsAndBolts_nut_pumpHousingShape3-map1\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape3-map1-array\" count=\"100\">0.5085651 0.3037819 0.4955549 0.3037819 0.4955549 0.3037819 0.5085651 0.3037819 0.4890497 0.2907716 0.4890497 0.2907716 0.4955549 0.2777613 0.4955549 0.2777613 0.5085651 0.2777613 0.5085651 0.2777613 0.5150703 0.2907716 0.5150703 0.2907716 0.5020599 0.2994928 0.4955192 0.2951322 0.4955192 0.2864111 0.5020599 0.2820505 0.5086008 0.2864111 0.5086008 0.2951322 0.5020599 0.2907716 0.4983014 0.2982888 0.5058109 0.2982731 0.5190238 0.9006391 0.4944609 0.2907716 0.4982839 0.2832195 0.5058733 0.283145 0.509678 0.2907716 0.5217944 0.9014134 0.5245591 0.900629 0.5217944 0.895805 0.5161929 0.895805 0.5169729 0.8986093 0.5190109 0.8909483 0.5169729 0.8930007 0.5246053 0.8909003 0.5217944 0.8901966 0.5274097 0.895805 0.5266158 0.8930007 0.5266158 0.8986093 0.634006 0.1877232 0.634006 0.2072638 0.6098256 0.2072638 0.6098256 0.1877232 0.634006 0.1877981 0.6098256 0.1877981 0.634006 0.2072638 0.6098257 0.2072638 0.634006 0.1877232 0.6098256 0.1877232 0.634006 0.2073288 0.6098256 0.2073288</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape3-map1-array\" count=\"50\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_nut_pumpHousingShape3-vertices\" name=\"nutsAndBolts_nut_pumpHousingShape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_nut_pumpHousingShape3-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_nut_pumpHousingShape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_nut_pumpHousingShape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_nut_pumpHousingShape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 38 1 1 39 7 2 40 6 3 41 1 4 39 2 5 42 8 6 43 7 7 40 2 8 42 3 9 44 9 10 45 8 11 43 3 12 44 4 13 46 10 14 47 9 15 45 4 16 46 5 17 48 11 18 49 10 19 47 5 20 48 0 21 38 6 22 41 11 23 49 1 24 1 0 25 0 22 26 12 2 27 4 1 28 1 23 29 13 3 30 6 2 31 4 24 32 14 4 33 8 3 34 6 25 35 15 5 36 10 4 37 8 20 38 16 0 39 0 5 40 10 21 41 17 6 42 3 7 43 2 13 44 18 7 43 2 8 45 5 13 44 18 8 45 5 9 46 7 13 44 18 9 46 7 10 47 9 13 44 18 10 47 9 11 48 11 13 44 18 11 48 11 6 42 3 13 44 18 15 49 21 22 50 26 14 51 27 12 52 28 16 53 29 23 54 30 15 49 21 12 52 28 17 55 31 24 56 32 16 53 29 12 52 28 18 57 33 25 58 34 17 55 31 12 52 28 19 59 35 20 60 36 18 57 33 12 52 28 14 51 27 21 61 37 19 59 35 12 52 28 20 62 16 4 63 8 18 64 24 5 65 10 20 66 16 19 67 25 21 68 17 5 65 10 19 67 25 0 69 0 21 70 17 14 71 20 22 72 12 0 69 0 14 71 20 1 73 1 22 74 12 15 75 19 23 76 13 1 73 1 15 75 19 2 77 4 23 78 13 16 79 22 24 80 14 2 77 4 16 79 22 3 81 6 24 82 14 17 83 23 25 84 15 3 81 6 17 83 23 4 63 8 25 85 15 18 64 24</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_nut_pumpHousingShape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"nutsAndBolts_nut_pumpHousingShape4\" name=\"nutsAndBolts_nut_pumpHousingShape4\">\r\n      <mesh>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape4-positions\" name=\"nutsAndBolts_nut_pumpHousingShape4-positions\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape4-positions-array\" count=\"78\">0.6934085 -0.6553936 -1.201019 -0.6934085 -0.6553936 -1.201019 -1.386817 -0.6553936 0 -0.6934094 -0.6553936 1.201019 0.6934085 -0.6553936 1.201019 1.386817 -0.6553936 0 0.6934085 0.6554012 -1.201019 -0.6934085 0.6554012 -1.201019 -1.386817 0.6554012 0 -0.6934094 0.6554012 1.201019 0.6934085 0.6554012 1.201019 1.386817 0.6554012 0 0 -0.6553936 0 0 0.6554012 0 0.399806 -0.6553936 -0.6924839 -0.4006419 -0.6553936 -0.6939316 -0.8100209 -0.6553936 0 -0.4025064 -0.6553936 0.6971607 0.4064775 -0.6553936 0.7040405 0.8120313 -0.6553936 0 0.6972156 -0.6553936 0.4025383 0.6972156 -0.6553936 -0.4025383 0 -0.6553936 -0.8050747 -0.6972156 -0.6553936 -0.4025383 -0.6972156 -0.6553936 0.4025383 0 -0.6553936 0.8050747</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape4-positions-array\" count=\"26\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape4-normals\" name=\"nutsAndBolts_nut_pumpHousingShape4-normals\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape4-normals-array\" count=\"258\">0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660254 0 -0.5000001 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 -0.8660257 0 0.4999996 0 0 1 0 0 1 0 0 1 0 0 1 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0.8660254 0 -0.5000001 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape4-normals-array\" count=\"86\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"nutsAndBolts_nut_pumpHousingShape4-map1\" name=\"nutsAndBolts_nut_pumpHousingShape4-map1\">\r\n          <float_array id=\"nutsAndBolts_nut_pumpHousingShape4-map1-array\" count=\"100\">0.5085651 0.3037819 0.4955549 0.3037819 0.4955549 0.3037819 0.5085651 0.3037819 0.4890497 0.2907716 0.4890497 0.2907716 0.4955549 0.2777613 0.4955549 0.2777613 0.5085651 0.2777613 0.5085651 0.2777613 0.5150703 0.2907716 0.5150703 0.2907716 0.5020599 0.2994928 0.4955192 0.2951322 0.4955192 0.2864111 0.5020599 0.2820505 0.5086008 0.2864111 0.5086008 0.2951322 0.5020599 0.2907716 0.4983014 0.2982888 0.5058109 0.2982731 0.2520238 0.9006391 0.4944609 0.2907716 0.4982839 0.2832195 0.5058733 0.283145 0.509678 0.2907716 0.2547944 0.9014134 0.2575592 0.900629 0.2547944 0.895805 0.2491928 0.895805 0.2499729 0.8986093 0.2520109 0.8909483 0.2499729 0.8930007 0.2576053 0.8909003 0.2547944 0.8901966 0.2604097 0.895805 0.2596158 0.8930007 0.2596158 0.8986093 0.634006 0.1877232 0.634006 0.2072638 0.6098256 0.2072638 0.6098256 0.1877232 0.634006 0.1877981 0.6098256 0.1877981 0.634006 0.2072638 0.6098257 0.2072638 0.634006 0.1877232 0.6098256 0.1877232 0.634006 0.2073288 0.6098256 0.2073288</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#nutsAndBolts_nut_pumpHousingShape4-map1-array\" count=\"50\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"nutsAndBolts_nut_pumpHousingShape4-vertices\" name=\"nutsAndBolts_nut_pumpHousingShape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#nutsAndBolts_nut_pumpHousingShape4-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#nutsAndBolts_nut_pumpHousingShape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#nutsAndBolts_nut_pumpHousingShape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#nutsAndBolts_nut_pumpHousingShape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 38 1 1 39 7 2 40 6 3 41 1 4 39 2 5 42 8 6 43 7 7 40 2 8 42 3 9 44 9 10 45 8 11 43 3 12 44 4 13 46 10 14 47 9 15 45 4 16 46 5 17 48 11 18 49 10 19 47 5 20 48 0 21 38 6 22 41 11 23 49 1 24 1 0 25 0 22 26 12 2 27 4 1 28 1 23 29 13 3 30 6 2 31 4 24 32 14 4 33 8 3 34 6 25 35 15 5 36 10 4 37 8 20 38 16 0 39 0 5 40 10 21 41 17 6 42 3 7 43 2 13 44 18 7 43 2 8 45 5 13 44 18 8 45 5 9 46 7 13 44 18 9 46 7 10 47 9 13 44 18 10 47 9 11 48 11 13 44 18 11 48 11 6 42 3 13 44 18 15 49 21 22 50 26 14 51 27 12 52 28 16 53 29 23 54 30 15 49 21 12 52 28 17 55 31 24 56 32 16 53 29 12 52 28 18 57 33 25 58 34 17 55 31 12 52 28 19 59 35 20 60 36 18 57 33 12 52 28 14 51 27 21 61 37 19 59 35 12 52 28 20 62 16 4 63 8 18 64 24 5 65 10 20 66 16 19 67 25 21 68 17 5 65 10 19 67 25 0 69 0 21 70 17 14 71 20 22 72 12 0 69 0 14 71 20 1 73 1 22 74 12 15 75 19 23 76 13 1 73 1 15 75 19 2 77 4 23 78 13 16 79 22 24 80 14 2 77 4 16 79 22 3 81 6 24 82 14 17 83 23 25 84 15 3 81 6 17 83 23 4 63 8 25 85 15 18 64 24</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>nutsAndBolts_nut_pumpHousingShape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camCoverBoltShape1\" name=\"camCoverBoltShape1\">\r\n      <mesh>\r\n        <source id=\"camCoverBoltShape1-positions\" name=\"camCoverBoltShape1-positions\">\r\n          <float_array id=\"camCoverBoltShape1-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.744453 -2.208521 26.34703 -5.744453 -2.473113 26.4998 -5.744453 -2.737706 26.34703 -5.744453 -2.737706 26.04151 -5.744453 -2.473113 25.88875 -5.744453 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.744453 -1.992015 26.47203 -5.744453 -2.195351 26.67537 -5.744453 -2.473113 26.7498 -5.744453 -2.750876 26.67537 -5.744453 -2.954212 26.47203 -5.744453 -3.028638 26.19427 -5.744453 -2.954212 25.91651 -5.744453 -2.750876 25.71317 -5.744453 -2.473113 25.63875 -5.744453 -2.195351 25.71317 -5.744453 -1.992015 25.91651 -5.744453 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape1-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape1-normals\" name=\"camCoverBoltShape1-normals\">\r\n          <float_array id=\"camCoverBoltShape1-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape1-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape1-map1\" name=\"camCoverBoltShape1-map1\">\r\n          <float_array id=\"camCoverBoltShape1-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.7012788 0.6491817 0.7012788 0.6712457 0.657151 0.6712457 0.657151 0.6491817 0.7012788 0.6197633 0.657151 0.6197633 0.7012788 0.5903447 0.657151 0.5903447 0.7012788 0.5609262 0.657151 0.5609262 0.7012788 0.5315076 0.657151 0.5315076 0.7012788 0.5020891 0.657151 0.5020891 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape1-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camCoverBoltShape1-vertices\" name=\"camCoverBoltShape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camCoverBoltShape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#camCoverBoltShape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camCoverBoltShape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camCoverBoltShape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camCoverBoltShape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camCoverBoltShape2\" name=\"camCoverBoltShape2\">\r\n      <mesh>\r\n        <source id=\"camCoverBoltShape2-positions\" name=\"camCoverBoltShape2-positions\">\r\n          <float_array id=\"camCoverBoltShape2-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.744453 -2.208521 26.34703 -5.744453 -2.473113 26.4998 -5.744453 -2.737706 26.34703 -5.744453 -2.737706 26.04151 -5.744453 -2.473113 25.88875 -5.744453 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.744453 -1.992015 26.47203 -5.744453 -2.195351 26.67537 -5.744453 -2.473113 26.7498 -5.744453 -2.750876 26.67537 -5.744453 -2.954212 26.47203 -5.744453 -3.028638 26.19427 -5.744453 -2.954212 25.91651 -5.744453 -2.750876 25.71317 -5.744453 -2.473113 25.63875 -5.744453 -2.195351 25.71317 -5.744453 -1.992015 25.91651 -5.744453 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape2-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape2-normals\" name=\"camCoverBoltShape2-normals\">\r\n          <float_array id=\"camCoverBoltShape2-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape2-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape2-map1\" name=\"camCoverBoltShape2-map1\">\r\n          <float_array id=\"camCoverBoltShape2-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.7012788 0.6491817 0.7012788 0.6712457 0.657151 0.6712457 0.657151 0.6491817 0.7012788 0.6197633 0.657151 0.6197633 0.7012788 0.5903447 0.657151 0.5903447 0.7012788 0.5609262 0.657151 0.5609262 0.7012788 0.5315076 0.657151 0.5315076 0.7012788 0.5020891 0.657151 0.5020891 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape2-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camCoverBoltShape2-vertices\" name=\"camCoverBoltShape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camCoverBoltShape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#camCoverBoltShape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camCoverBoltShape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camCoverBoltShape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camCoverBoltShape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camCoverBoltShape3\" name=\"camCoverBoltShape3\">\r\n      <mesh>\r\n        <source id=\"camCoverBoltShape3-positions\" name=\"camCoverBoltShape3-positions\">\r\n          <float_array id=\"camCoverBoltShape3-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.744453 -2.208521 26.34703 -5.744453 -2.473113 26.4998 -5.744453 -2.737706 26.34703 -5.744453 -2.737706 26.04151 -5.744453 -2.473113 25.88875 -5.744453 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.744453 -1.992015 26.47203 -5.744453 -2.195351 26.67537 -5.744453 -2.473113 26.7498 -5.744453 -2.750876 26.67537 -5.744453 -2.954212 26.47203 -5.744453 -3.028638 26.19427 -5.744453 -2.954212 25.91651 -5.744453 -2.750876 25.71317 -5.744453 -2.473113 25.63875 -5.744453 -2.195351 25.71317 -5.744453 -1.992015 25.91651 -5.744453 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape3-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape3-normals\" name=\"camCoverBoltShape3-normals\">\r\n          <float_array id=\"camCoverBoltShape3-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape3-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape3-map1\" name=\"camCoverBoltShape3-map1\">\r\n          <float_array id=\"camCoverBoltShape3-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.7012788 0.6491817 0.7012788 0.6712457 0.657151 0.6712457 0.657151 0.6491817 0.7012788 0.6197633 0.657151 0.6197633 0.7012788 0.5903447 0.657151 0.5903447 0.7012788 0.5609262 0.657151 0.5609262 0.7012788 0.5315076 0.657151 0.5315076 0.7012788 0.5020891 0.657151 0.5020891 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape3-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camCoverBoltShape3-vertices\" name=\"camCoverBoltShape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camCoverBoltShape3-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#camCoverBoltShape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camCoverBoltShape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camCoverBoltShape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camCoverBoltShape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camCoverBoltShape4\" name=\"camCoverBoltShape4\">\r\n      <mesh>\r\n        <source id=\"camCoverBoltShape4-positions\" name=\"camCoverBoltShape4-positions\">\r\n          <float_array id=\"camCoverBoltShape4-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.744453 -2.208521 26.34703 -5.744453 -2.473113 26.4998 -5.744453 -2.737706 26.34703 -5.744453 -2.737706 26.04151 -5.744453 -2.473113 25.88875 -5.744453 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.744453 -1.992015 26.47203 -5.744453 -2.195351 26.67537 -5.744453 -2.473113 26.7498 -5.744453 -2.750876 26.67537 -5.744453 -2.954212 26.47203 -5.744453 -3.028638 26.19427 -5.744453 -2.954212 25.91651 -5.744453 -2.750876 25.71317 -5.744453 -2.473113 25.63875 -5.744453 -2.195351 25.71317 -5.744453 -1.992015 25.91651 -5.744453 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape4-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape4-normals\" name=\"camCoverBoltShape4-normals\">\r\n          <float_array id=\"camCoverBoltShape4-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape4-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape4-map1\" name=\"camCoverBoltShape4-map1\">\r\n          <float_array id=\"camCoverBoltShape4-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.7012788 0.6491817 0.7012788 0.6712457 0.657151 0.6712457 0.657151 0.6491817 0.7012788 0.6197633 0.657151 0.6197633 0.7012788 0.5903447 0.657151 0.5903447 0.7012788 0.5609262 0.657151 0.5609262 0.7012788 0.5315076 0.657151 0.5315076 0.7012788 0.5020891 0.657151 0.5020891 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape4-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camCoverBoltShape4-vertices\" name=\"camCoverBoltShape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camCoverBoltShape4-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#camCoverBoltShape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camCoverBoltShape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camCoverBoltShape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camCoverBoltShape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camCoverBoltShape5\" name=\"camCoverBoltShape5\">\r\n      <mesh>\r\n        <source id=\"camCoverBoltShape5-positions\" name=\"camCoverBoltShape5-positions\">\r\n          <float_array id=\"camCoverBoltShape5-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.744453 -2.208521 26.34703 -5.744453 -2.473113 26.4998 -5.744453 -2.737706 26.34703 -5.744453 -2.737706 26.04151 -5.744453 -2.473113 25.88875 -5.744453 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.744453 -1.992015 26.47203 -5.744453 -2.195351 26.67537 -5.744453 -2.473113 26.7498 -5.744453 -2.750876 26.67537 -5.744453 -2.954212 26.47203 -5.744453 -3.028638 26.19427 -5.744453 -2.954212 25.91651 -5.744453 -2.750876 25.71317 -5.744453 -2.473113 25.63875 -5.744453 -2.195351 25.71317 -5.744453 -1.992015 25.91651 -5.744453 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape5-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape5-normals\" name=\"camCoverBoltShape5-normals\">\r\n          <float_array id=\"camCoverBoltShape5-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape5-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape5-map1\" name=\"camCoverBoltShape5-map1\">\r\n          <float_array id=\"camCoverBoltShape5-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.7012788 0.6491817 0.7012788 0.6712457 0.657151 0.6712457 0.657151 0.6491817 0.7012788 0.6197633 0.657151 0.6197633 0.7012788 0.5903447 0.657151 0.5903447 0.7012788 0.5609262 0.657151 0.5609262 0.7012788 0.5315076 0.657151 0.5315076 0.7012788 0.5020891 0.657151 0.5020891 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape5-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camCoverBoltShape5-vertices\" name=\"camCoverBoltShape5-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camCoverBoltShape5-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#camCoverBoltShape5-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camCoverBoltShape5-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camCoverBoltShape5-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camCoverBoltShape5</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camCoverBoltShape6\" name=\"camCoverBoltShape6\">\r\n      <mesh>\r\n        <source id=\"camCoverBoltShape6-positions\" name=\"camCoverBoltShape6-positions\">\r\n          <float_array id=\"camCoverBoltShape6-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.744453 -2.208521 26.34703 -5.744453 -2.473113 26.4998 -5.744453 -2.737706 26.34703 -5.744453 -2.737706 26.04151 -5.744453 -2.473113 25.88875 -5.744453 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.744453 -1.992015 26.47203 -5.744453 -2.195351 26.67537 -5.744453 -2.473113 26.7498 -5.744453 -2.750876 26.67537 -5.744453 -2.954212 26.47203 -5.744453 -3.028638 26.19427 -5.744453 -2.954212 25.91651 -5.744453 -2.750876 25.71317 -5.744453 -2.473113 25.63875 -5.744453 -2.195351 25.71317 -5.744453 -1.992015 25.91651 -5.744453 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape6-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape6-normals\" name=\"camCoverBoltShape6-normals\">\r\n          <float_array id=\"camCoverBoltShape6-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 -0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 0.4999977 -0.8660268 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 -0.4999977 0.8660268 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.965926 0.2588188 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.7071042 0.7071094 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.2588202 0.9659256 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.7071045 0.7071091 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.965926 -0.2588188 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.7071045 -0.7071091 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 -0.2588202 -0.9659256 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.7071045 -0.7071091 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0.9659258 -0.2588195 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape6-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camCoverBoltShape6-map1\" name=\"camCoverBoltShape6-map1\">\r\n          <float_array id=\"camCoverBoltShape6-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.7012788 0.6491817 0.7012788 0.6712457 0.657151 0.6712457 0.657151 0.6491817 0.7012788 0.6197633 0.657151 0.6197633 0.7012788 0.5903447 0.657151 0.5903447 0.7012788 0.5609262 0.657151 0.5609262 0.7012788 0.5315076 0.657151 0.5315076 0.7012788 0.5020891 0.657151 0.5020891 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camCoverBoltShape6-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camCoverBoltShape6-vertices\" name=\"camCoverBoltShape6-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camCoverBoltShape6-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#camCoverBoltShape6-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camCoverBoltShape6-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camCoverBoltShape6-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camCoverBoltShape6</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearCoverBoltShape1\" name=\"gearCoverBoltShape1\">\r\n      <mesh>\r\n        <source id=\"gearCoverBoltShape1-positions\" name=\"gearCoverBoltShape1-positions\">\r\n          <float_array id=\"gearCoverBoltShape1-positions-array\" count=\"153\">0.1955006 0.3386173 -0.2150407 -0.1955006 0.3386173 -0.2150407 -0.3910012 0 -0.2150407 -0.1955006 -0.3386173 -0.2150407 0.1955006 -0.3386173 -0.2150407 0.3910012 0 -0.2150407 0.1955006 0.3386173 2.099735 -0.1955006 0.3386173 2.099735 -0.3910012 0 2.099735 -0.1955006 -0.3386173 2.099735 0.1955006 -0.3386173 2.099735 0.3910012 0 2.099735 0 0 -0.2150407 0 0 2.293436 0.2645924 -0.1527634 -0.6379652 0.2645924 0.1527634 -0.6379652 0 0.3055248 -0.6379652 -0.2645924 0.1527634 -0.6379652 -0.2645924 -0.1527634 -0.6379652 0 -0.3055248 -0.6379652 0.2645924 -0.1527634 0 0.2645924 0.1527634 0 0 0.3055248 0 -0.2645924 0.1527634 0 -0.2645924 -0.1527634 0 0 -0.3055248 0 0.5555251 0 0 0.4810988 0.2777634 0 0.2777624 0.4810982 0 0 0.5555248 0 -0.2777624 0.4810982 0 -0.4810987 0.2777634 0 -0.5555251 0 0 -0.4810987 -0.2777634 0 -0.2777624 -0.4810982 0 0 -0.5555248 0 0.2777624 -0.4810982 0 0.4810987 -0.2777634 0 0.5555251 0 -0.6379652 0.4810988 0.2777634 -0.6379652 0.2777624 0.4810982 -0.6379652 0 0.5555248 -0.6379652 -0.2777624 0.4810982 -0.6379652 -0.4810987 0.2777634 -0.6379652 -0.5555251 0 -0.6379652 -0.4810987 -0.2777634 -0.6379652 -0.2777624 -0.4810982 -0.6379652 0 -0.5555248 -0.6379652 0.2777624 -0.4810982 -0.6379652 0.4810987 -0.2777634 -0.6379652 0 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape1-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape1-normals\" name=\"gearCoverBoltShape1-normals\">\r\n          <float_array id=\"gearCoverBoltShape1-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219562 0.3844393 0.8960703 -0.2219562 0.3844393 0.8960703 0 0 1 -0.4439124 0 0.8960702 -0.2219562 -0.3844393 0.8960703 0.2219562 -0.3844393 0.8960703 0.4439124 0 0.8960702 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape1-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape1-map1\" name=\"gearCoverBoltShape1-map1\">\r\n          <float_array id=\"gearCoverBoltShape1-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape1-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearCoverBoltShape1-vertices\" name=\"gearCoverBoltShape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearCoverBoltShape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearCoverBoltShape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearCoverBoltShape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearCoverBoltShape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearCoverBoltShape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearCoverBoltShape2\" name=\"gearCoverBoltShape2\">\r\n      <mesh>\r\n        <source id=\"gearCoverBoltShape2-positions\" name=\"gearCoverBoltShape2-positions\">\r\n          <float_array id=\"gearCoverBoltShape2-positions-array\" count=\"153\">0.1955006 0.3386173 -0.2150407 -0.1955006 0.3386173 -0.2150407 -0.3910012 0 -0.2150407 -0.1955006 -0.3386173 -0.2150407 0.1955006 -0.3386173 -0.2150407 0.3910012 0 -0.2150407 0.1955006 0.3386173 2.099735 -0.1955006 0.3386173 2.099735 -0.3910012 0 2.099735 -0.1955006 -0.3386173 2.099735 0.1955006 -0.3386173 2.099735 0.3910012 0 2.099735 0 0 -0.2150407 0 0 2.293436 0.2645924 -0.1527634 -0.6379652 0.2645924 0.1527634 -0.6379652 0 0.3055248 -0.6379652 -0.2645924 0.1527634 -0.6379652 -0.2645924 -0.1527634 -0.6379652 0 -0.3055248 -0.6379652 0.2645924 -0.1527634 0 0.2645924 0.1527634 0 0 0.3055248 0 -0.2645924 0.1527634 0 -0.2645924 -0.1527634 0 0 -0.3055248 0 0.5555251 0 0 0.4810988 0.2777634 0 0.2777624 0.4810982 0 0 0.5555248 0 -0.2777624 0.4810982 0 -0.4810987 0.2777634 0 -0.5555251 0 0 -0.4810987 -0.2777634 0 -0.2777624 -0.4810982 0 0 -0.5555248 0 0.2777624 -0.4810982 0 0.4810987 -0.2777634 0 0.5555251 0 -0.6379652 0.4810988 0.2777634 -0.6379652 0.2777624 0.4810982 -0.6379652 0 0.5555248 -0.6379652 -0.2777624 0.4810982 -0.6379652 -0.4810987 0.2777634 -0.6379652 -0.5555251 0 -0.6379652 -0.4810987 -0.2777634 -0.6379652 -0.2777624 -0.4810982 -0.6379652 0 -0.5555248 -0.6379652 0.2777624 -0.4810982 -0.6379652 0.4810987 -0.2777634 -0.6379652 0 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape2-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape2-normals\" name=\"gearCoverBoltShape2-normals\">\r\n          <float_array id=\"gearCoverBoltShape2-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219562 0.3844393 0.8960703 -0.2219562 0.3844393 0.8960703 0 0 1 -0.4439124 0 0.8960702 -0.2219562 -0.3844393 0.8960703 0.2219562 -0.3844393 0.8960703 0.4439124 0 0.8960702 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape2-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape2-map1\" name=\"gearCoverBoltShape2-map1\">\r\n          <float_array id=\"gearCoverBoltShape2-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape2-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearCoverBoltShape2-vertices\" name=\"gearCoverBoltShape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearCoverBoltShape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearCoverBoltShape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearCoverBoltShape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearCoverBoltShape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearCoverBoltShape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearCoverBoltShape3\" name=\"gearCoverBoltShape3\">\r\n      <mesh>\r\n        <source id=\"gearCoverBoltShape3-positions\" name=\"gearCoverBoltShape3-positions\">\r\n          <float_array id=\"gearCoverBoltShape3-positions-array\" count=\"153\">0.1955006 0.3386173 -0.2150407 -0.1955006 0.3386173 -0.2150407 -0.3910012 0 -0.2150407 -0.1955006 -0.3386173 -0.2150407 0.1955006 -0.3386173 -0.2150407 0.3910012 0 -0.2150407 0.1955006 0.3386173 2.099735 -0.1955006 0.3386173 2.099735 -0.3910012 0 2.099735 -0.1955006 -0.3386173 2.099735 0.1955006 -0.3386173 2.099735 0.3910012 0 2.099735 0 0 -0.2150407 0 0 2.293436 0.2645924 -0.1527634 -0.6379652 0.2645924 0.1527634 -0.6379652 0 0.3055248 -0.6379652 -0.2645924 0.1527634 -0.6379652 -0.2645924 -0.1527634 -0.6379652 0 -0.3055248 -0.6379652 0.2645924 -0.1527634 0 0.2645924 0.1527634 0 0 0.3055248 0 -0.2645924 0.1527634 0 -0.2645924 -0.1527634 0 0 -0.3055248 0 0.5555251 0 0 0.4810988 0.2777634 0 0.2777624 0.4810982 0 0 0.5555248 0 -0.2777624 0.4810982 0 -0.4810987 0.2777634 0 -0.5555251 0 0 -0.4810987 -0.2777634 0 -0.2777624 -0.4810982 0 0 -0.5555248 0 0.2777624 -0.4810982 0 0.4810987 -0.2777634 0 0.5555251 0 -0.6379652 0.4810988 0.2777634 -0.6379652 0.2777624 0.4810982 -0.6379652 0 0.5555248 -0.6379652 -0.2777624 0.4810982 -0.6379652 -0.4810987 0.2777634 -0.6379652 -0.5555251 0 -0.6379652 -0.4810987 -0.2777634 -0.6379652 -0.2777624 -0.4810982 -0.6379652 0 -0.5555248 -0.6379652 0.2777624 -0.4810982 -0.6379652 0.4810987 -0.2777634 -0.6379652 0 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape3-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape3-normals\" name=\"gearCoverBoltShape3-normals\">\r\n          <float_array id=\"gearCoverBoltShape3-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219562 0.3844393 0.8960703 -0.2219562 0.3844393 0.8960703 0 0 1 -0.4439124 0 0.8960702 -0.2219562 -0.3844393 0.8960703 0.2219562 -0.3844393 0.8960703 0.4439124 0 0.8960702 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape3-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape3-map1\" name=\"gearCoverBoltShape3-map1\">\r\n          <float_array id=\"gearCoverBoltShape3-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape3-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearCoverBoltShape3-vertices\" name=\"gearCoverBoltShape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearCoverBoltShape3-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearCoverBoltShape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearCoverBoltShape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearCoverBoltShape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearCoverBoltShape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearCoverBoltShape4\" name=\"gearCoverBoltShape4\">\r\n      <mesh>\r\n        <source id=\"gearCoverBoltShape4-positions\" name=\"gearCoverBoltShape4-positions\">\r\n          <float_array id=\"gearCoverBoltShape4-positions-array\" count=\"153\">0.1955006 0.3386173 -0.2150407 -0.1955006 0.3386173 -0.2150407 -0.3910012 0 -0.2150407 -0.1955006 -0.3386173 -0.2150407 0.1955006 -0.3386173 -0.2150407 0.3910012 0 -0.2150407 0.1955006 0.3386173 2.099735 -0.1955006 0.3386173 2.099735 -0.3910012 0 2.099735 -0.1955006 -0.3386173 2.099735 0.1955006 -0.3386173 2.099735 0.3910012 0 2.099735 0 0 -0.2150407 0 0 2.293436 0.2645924 -0.1527634 -0.6379652 0.2645924 0.1527634 -0.6379652 0 0.3055248 -0.6379652 -0.2645924 0.1527634 -0.6379652 -0.2645924 -0.1527634 -0.6379652 0 -0.3055248 -0.6379652 0.2645924 -0.1527634 0 0.2645924 0.1527634 0 0 0.3055248 0 -0.2645924 0.1527634 0 -0.2645924 -0.1527634 0 0 -0.3055248 0 0.5555251 0 0 0.4810988 0.2777634 0 0.2777624 0.4810982 0 0 0.5555248 0 -0.2777624 0.4810982 0 -0.4810987 0.2777634 0 -0.5555251 0 0 -0.4810987 -0.2777634 0 -0.2777624 -0.4810982 0 0 -0.5555248 0 0.2777624 -0.4810982 0 0.4810987 -0.2777634 0 0.5555251 0 -0.6379652 0.4810988 0.2777634 -0.6379652 0.2777624 0.4810982 -0.6379652 0 0.5555248 -0.6379652 -0.2777624 0.4810982 -0.6379652 -0.4810987 0.2777634 -0.6379652 -0.5555251 0 -0.6379652 -0.4810987 -0.2777634 -0.6379652 -0.2777624 -0.4810982 -0.6379652 0 -0.5555248 -0.6379652 0.2777624 -0.4810982 -0.6379652 0.4810987 -0.2777634 -0.6379652 0 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape4-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape4-normals\" name=\"gearCoverBoltShape4-normals\">\r\n          <float_array id=\"gearCoverBoltShape4-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219562 0.3844393 0.8960703 -0.2219562 0.3844393 0.8960703 0 0 1 -0.4439124 0 0.8960702 -0.2219562 -0.3844393 0.8960703 0.2219562 -0.3844393 0.8960703 0.4439124 0 0.8960702 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape4-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape4-map1\" name=\"gearCoverBoltShape4-map1\">\r\n          <float_array id=\"gearCoverBoltShape4-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape4-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearCoverBoltShape4-vertices\" name=\"gearCoverBoltShape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearCoverBoltShape4-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearCoverBoltShape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearCoverBoltShape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearCoverBoltShape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearCoverBoltShape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearCoverBoltShape5\" name=\"gearCoverBoltShape5\">\r\n      <mesh>\r\n        <source id=\"gearCoverBoltShape5-positions\" name=\"gearCoverBoltShape5-positions\">\r\n          <float_array id=\"gearCoverBoltShape5-positions-array\" count=\"153\">0.1955006 0.3386173 -0.2150407 -0.1955006 0.3386173 -0.2150407 -0.3910012 0 -0.2150407 -0.1955006 -0.3386173 -0.2150407 0.1955006 -0.3386173 -0.2150407 0.3910012 0 -0.2150407 0.1955006 0.3386173 2.099735 -0.1955006 0.3386173 2.099735 -0.3910012 0 2.099735 -0.1955006 -0.3386173 2.099735 0.1955006 -0.3386173 2.099735 0.3910012 0 2.099735 0 0 -0.2150407 0 0 2.293436 0.2645924 -0.1527634 -0.6379652 0.2645924 0.1527634 -0.6379652 0 0.3055248 -0.6379652 -0.2645924 0.1527634 -0.6379652 -0.2645924 -0.1527634 -0.6379652 0 -0.3055248 -0.6379652 0.2645924 -0.1527634 0 0.2645924 0.1527634 0 0 0.3055248 0 -0.2645924 0.1527634 0 -0.2645924 -0.1527634 0 0 -0.3055248 0 0.5555251 0 0 0.4810988 0.2777634 0 0.2777624 0.4810982 0 0 0.5555248 0 -0.2777624 0.4810982 0 -0.4810987 0.2777634 0 -0.5555251 0 0 -0.4810987 -0.2777634 0 -0.2777624 -0.4810982 0 0 -0.5555248 0 0.2777624 -0.4810982 0 0.4810987 -0.2777634 0 0.5555251 0 -0.6379652 0.4810988 0.2777634 -0.6379652 0.2777624 0.4810982 -0.6379652 0 0.5555248 -0.6379652 -0.2777624 0.4810982 -0.6379652 -0.4810987 0.2777634 -0.6379652 -0.5555251 0 -0.6379652 -0.4810987 -0.2777634 -0.6379652 -0.2777624 -0.4810982 -0.6379652 0 -0.5555248 -0.6379652 0.2777624 -0.4810982 -0.6379652 0.4810987 -0.2777634 -0.6379652 0 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape5-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape5-normals\" name=\"gearCoverBoltShape5-normals\">\r\n          <float_array id=\"gearCoverBoltShape5-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219562 0.3844393 0.8960703 -0.2219562 0.3844393 0.8960703 0 0 1 -0.4439124 0 0.8960702 -0.2219562 -0.3844393 0.8960703 0.2219562 -0.3844393 0.8960703 0.4439124 0 0.8960702 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape5-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape5-map1\" name=\"gearCoverBoltShape5-map1\">\r\n          <float_array id=\"gearCoverBoltShape5-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape5-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearCoverBoltShape5-vertices\" name=\"gearCoverBoltShape5-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearCoverBoltShape5-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearCoverBoltShape5-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearCoverBoltShape5-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearCoverBoltShape5-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearCoverBoltShape5</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearCoverBoltShape6\" name=\"gearCoverBoltShape6\">\r\n      <mesh>\r\n        <source id=\"gearCoverBoltShape6-positions\" name=\"gearCoverBoltShape6-positions\">\r\n          <float_array id=\"gearCoverBoltShape6-positions-array\" count=\"153\">0.1955006 0.3386173 -0.2150407 -0.1955006 0.3386173 -0.2150407 -0.3910012 0 -0.2150407 -0.1955006 -0.3386173 -0.2150407 0.1955006 -0.3386173 -0.2150407 0.3910012 0 -0.2150407 0.1955006 0.3386173 2.099735 -0.1955006 0.3386173 2.099735 -0.3910012 0 2.099735 -0.1955006 -0.3386173 2.099735 0.1955006 -0.3386173 2.099735 0.3910012 0 2.099735 0 0 -0.2150407 0 0 2.293436 0.2645924 -0.1527634 -0.6379652 0.2645924 0.1527634 -0.6379652 0 0.3055248 -0.6379652 -0.2645924 0.1527634 -0.6379652 -0.2645924 -0.1527634 -0.6379652 0 -0.3055248 -0.6379652 0.2645924 -0.1527634 0 0.2645924 0.1527634 0 0 0.3055248 0 -0.2645924 0.1527634 0 -0.2645924 -0.1527634 0 0 -0.3055248 0 0.5555251 0 0 0.4810988 0.2777634 0 0.2777624 0.4810982 0 0 0.5555248 0 -0.2777624 0.4810982 0 -0.4810987 0.2777634 0 -0.5555251 0 0 -0.4810987 -0.2777634 0 -0.2777624 -0.4810982 0 0 -0.5555248 0 0.2777624 -0.4810982 0 0.4810987 -0.2777634 0 0.5555251 0 -0.6379652 0.4810988 0.2777634 -0.6379652 0.2777624 0.4810982 -0.6379652 0 0.5555248 -0.6379652 -0.2777624 0.4810982 -0.6379652 -0.4810987 0.2777634 -0.6379652 -0.5555251 0 -0.6379652 -0.4810987 -0.2777634 -0.6379652 -0.2777624 -0.4810982 -0.6379652 0 -0.5555248 -0.6379652 0.2777624 -0.4810982 -0.6379652 0.4810987 -0.2777634 -0.6379652 0 0 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape6-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape6-normals\" name=\"gearCoverBoltShape6-normals\">\r\n          <float_array id=\"gearCoverBoltShape6-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 -0.8660257 -0.4999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 -0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0.8660257 0.4999997 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219562 0.3844393 0.8960703 -0.2219562 0.3844393 0.8960703 0 0 1 -0.4439124 0 0.8960702 -0.2219562 -0.3844393 0.8960703 0.2219562 -0.3844393 0.8960703 0.4439124 0 0.8960702 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 -0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 0.4999974 -0.8660269 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 -0.4999974 0.8660269 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.9659261 0.2588185 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.7071041 0.7071095 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.2588205 0.9659255 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.7071043 0.7071092 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.9659259 -0.258819 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.7071043 -0.7071092 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 -0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.2588205 -0.9659255 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.7071043 -0.7071092 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0.9659259 -0.258819 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape6-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearCoverBoltShape6-map1\" name=\"gearCoverBoltShape6-map1\">\r\n          <float_array id=\"gearCoverBoltShape6-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearCoverBoltShape6-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearCoverBoltShape6-vertices\" name=\"gearCoverBoltShape6-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearCoverBoltShape6-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearCoverBoltShape6-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearCoverBoltShape6-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearCoverBoltShape6-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearCoverBoltShape6</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape1\" name=\"gearBolt0Shape1\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape1-positions\" name=\"gearBolt0Shape1-positions\">\r\n          <float_array id=\"gearBolt0Shape1-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape1-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape1-normals\" name=\"gearBolt0Shape1-normals\">\r\n          <float_array id=\"gearBolt0Shape1-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape1-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape1-map1\" name=\"gearBolt0Shape1-map1\">\r\n          <float_array id=\"gearBolt0Shape1-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape1-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape1-vertices\" name=\"gearBolt0Shape1-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape1-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape1-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape1-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape1-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape1</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape2\" name=\"gearBolt0Shape2\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape2-positions\" name=\"gearBolt0Shape2-positions\">\r\n          <float_array id=\"gearBolt0Shape2-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape2-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape2-normals\" name=\"gearBolt0Shape2-normals\">\r\n          <float_array id=\"gearBolt0Shape2-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape2-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape2-map1\" name=\"gearBolt0Shape2-map1\">\r\n          <float_array id=\"gearBolt0Shape2-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape2-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape2-vertices\" name=\"gearBolt0Shape2-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape2-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape2-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape2-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape2-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape2</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape3\" name=\"gearBolt0Shape3\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape3-positions\" name=\"gearBolt0Shape3-positions\">\r\n          <float_array id=\"gearBolt0Shape3-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape3-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape3-normals\" name=\"gearBolt0Shape3-normals\">\r\n          <float_array id=\"gearBolt0Shape3-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape3-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape3-map1\" name=\"gearBolt0Shape3-map1\">\r\n          <float_array id=\"gearBolt0Shape3-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape3-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape3-vertices\" name=\"gearBolt0Shape3-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape3-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape3-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape3-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape3-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape3</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape4\" name=\"gearBolt0Shape4\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape4-positions\" name=\"gearBolt0Shape4-positions\">\r\n          <float_array id=\"gearBolt0Shape4-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape4-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape4-normals\" name=\"gearBolt0Shape4-normals\">\r\n          <float_array id=\"gearBolt0Shape4-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape4-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape4-map1\" name=\"gearBolt0Shape4-map1\">\r\n          <float_array id=\"gearBolt0Shape4-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape4-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape4-vertices\" name=\"gearBolt0Shape4-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape4-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape4-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape4-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape4-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape4</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape5\" name=\"gearBolt0Shape5\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape5-positions\" name=\"gearBolt0Shape5-positions\">\r\n          <float_array id=\"gearBolt0Shape5-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape5-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape5-normals\" name=\"gearBolt0Shape5-normals\">\r\n          <float_array id=\"gearBolt0Shape5-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape5-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape5-map1\" name=\"gearBolt0Shape5-map1\">\r\n          <float_array id=\"gearBolt0Shape5-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape5-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape5-vertices\" name=\"gearBolt0Shape5-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape5-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape5-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape5-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape5-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape5</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape6\" name=\"gearBolt0Shape6\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape6-positions\" name=\"gearBolt0Shape6-positions\">\r\n          <float_array id=\"gearBolt0Shape6-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape6-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape6-normals\" name=\"gearBolt0Shape6-normals\">\r\n          <float_array id=\"gearBolt0Shape6-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape6-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape6-map1\" name=\"gearBolt0Shape6-map1\">\r\n          <float_array id=\"gearBolt0Shape6-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape6-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape6-vertices\" name=\"gearBolt0Shape6-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape6-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape6-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape6-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape6-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape6</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape7\" name=\"gearBolt0Shape7\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape7-positions\" name=\"gearBolt0Shape7-positions\">\r\n          <float_array id=\"gearBolt0Shape7-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape7-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape7-normals\" name=\"gearBolt0Shape7-normals\">\r\n          <float_array id=\"gearBolt0Shape7-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape7-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape7-map1\" name=\"gearBolt0Shape7-map1\">\r\n          <float_array id=\"gearBolt0Shape7-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape7-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape7-vertices\" name=\"gearBolt0Shape7-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape7-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape7-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape7-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape7-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape7</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape8\" name=\"gearBolt0Shape8\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape8-positions\" name=\"gearBolt0Shape8-positions\">\r\n          <float_array id=\"gearBolt0Shape8-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape8-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape8-normals\" name=\"gearBolt0Shape8-normals\">\r\n          <float_array id=\"gearBolt0Shape8-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape8-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape8-map1\" name=\"gearBolt0Shape8-map1\">\r\n          <float_array id=\"gearBolt0Shape8-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape8-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape8-vertices\" name=\"gearBolt0Shape8-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape8-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape8-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape8-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape8-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape8</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape9\" name=\"gearBolt0Shape9\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape9-positions\" name=\"gearBolt0Shape9-positions\">\r\n          <float_array id=\"gearBolt0Shape9-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape9-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape9-normals\" name=\"gearBolt0Shape9-normals\">\r\n          <float_array id=\"gearBolt0Shape9-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape9-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape9-map1\" name=\"gearBolt0Shape9-map1\">\r\n          <float_array id=\"gearBolt0Shape9-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape9-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape9-vertices\" name=\"gearBolt0Shape9-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape9-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape9-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape9-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape9-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape9</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape10\" name=\"gearBolt0Shape10\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape10-positions\" name=\"gearBolt0Shape10-positions\">\r\n          <float_array id=\"gearBolt0Shape10-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape10-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape10-normals\" name=\"gearBolt0Shape10-normals\">\r\n          <float_array id=\"gearBolt0Shape10-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape10-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape10-map1\" name=\"gearBolt0Shape10-map1\">\r\n          <float_array id=\"gearBolt0Shape10-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape10-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape10-vertices\" name=\"gearBolt0Shape10-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape10-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape10-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape10-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape10-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape10</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape11\" name=\"gearBolt0Shape11\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape11-positions\" name=\"gearBolt0Shape11-positions\">\r\n          <float_array id=\"gearBolt0Shape11-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape11-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape11-normals\" name=\"gearBolt0Shape11-normals\">\r\n          <float_array id=\"gearBolt0Shape11-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape11-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape11-map1\" name=\"gearBolt0Shape11-map1\">\r\n          <float_array id=\"gearBolt0Shape11-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape11-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape11-vertices\" name=\"gearBolt0Shape11-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape11-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape11-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape11-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape11-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape11</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape12\" name=\"gearBolt0Shape12\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape12-positions\" name=\"gearBolt0Shape12-positions\">\r\n          <float_array id=\"gearBolt0Shape12-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape12-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape12-normals\" name=\"gearBolt0Shape12-normals\">\r\n          <float_array id=\"gearBolt0Shape12-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape12-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape12-map1\" name=\"gearBolt0Shape12-map1\">\r\n          <float_array id=\"gearBolt0Shape12-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape12-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape12-vertices\" name=\"gearBolt0Shape12-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape12-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape12-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape12-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape12-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape12</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape13\" name=\"gearBolt0Shape13\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape13-positions\" name=\"gearBolt0Shape13-positions\">\r\n          <float_array id=\"gearBolt0Shape13-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape13-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape13-normals\" name=\"gearBolt0Shape13-normals\">\r\n          <float_array id=\"gearBolt0Shape13-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape13-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape13-map1\" name=\"gearBolt0Shape13-map1\">\r\n          <float_array id=\"gearBolt0Shape13-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape13-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape13-vertices\" name=\"gearBolt0Shape13-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape13-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape13-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape13-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape13-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape13</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape14\" name=\"gearBolt0Shape14\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape14-positions\" name=\"gearBolt0Shape14-positions\">\r\n          <float_array id=\"gearBolt0Shape14-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape14-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape14-normals\" name=\"gearBolt0Shape14-normals\">\r\n          <float_array id=\"gearBolt0Shape14-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape14-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape14-map1\" name=\"gearBolt0Shape14-map1\">\r\n          <float_array id=\"gearBolt0Shape14-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape14-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape14-vertices\" name=\"gearBolt0Shape14-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape14-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape14-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape14-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape14-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape14</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape15\" name=\"gearBolt0Shape15\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape15-positions\" name=\"gearBolt0Shape15-positions\">\r\n          <float_array id=\"gearBolt0Shape15-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape15-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape15-normals\" name=\"gearBolt0Shape15-normals\">\r\n          <float_array id=\"gearBolt0Shape15-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape15-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape15-map1\" name=\"gearBolt0Shape15-map1\">\r\n          <float_array id=\"gearBolt0Shape15-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape15-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape15-vertices\" name=\"gearBolt0Shape15-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape15-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape15-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape15-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape15-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape15</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape16\" name=\"gearBolt0Shape16\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape16-positions\" name=\"gearBolt0Shape16-positions\">\r\n          <float_array id=\"gearBolt0Shape16-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape16-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape16-normals\" name=\"gearBolt0Shape16-normals\">\r\n          <float_array id=\"gearBolt0Shape16-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape16-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape16-map1\" name=\"gearBolt0Shape16-map1\">\r\n          <float_array id=\"gearBolt0Shape16-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape16-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape16-vertices\" name=\"gearBolt0Shape16-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape16-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape16-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape16-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape16-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape16</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape17\" name=\"gearBolt0Shape17\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape17-positions\" name=\"gearBolt0Shape17-positions\">\r\n          <float_array id=\"gearBolt0Shape17-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape17-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape17-normals\" name=\"gearBolt0Shape17-normals\">\r\n          <float_array id=\"gearBolt0Shape17-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape17-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape17-map1\" name=\"gearBolt0Shape17-map1\">\r\n          <float_array id=\"gearBolt0Shape17-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape17-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape17-vertices\" name=\"gearBolt0Shape17-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape17-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape17-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape17-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape17-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape17</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape18\" name=\"gearBolt0Shape18\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape18-positions\" name=\"gearBolt0Shape18-positions\">\r\n          <float_array id=\"gearBolt0Shape18-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape18-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape18-normals\" name=\"gearBolt0Shape18-normals\">\r\n          <float_array id=\"gearBolt0Shape18-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape18-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape18-map1\" name=\"gearBolt0Shape18-map1\">\r\n          <float_array id=\"gearBolt0Shape18-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape18-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape18-vertices\" name=\"gearBolt0Shape18-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape18-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape18-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape18-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape18-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape18</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape19\" name=\"gearBolt0Shape19\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape19-positions\" name=\"gearBolt0Shape19-positions\">\r\n          <float_array id=\"gearBolt0Shape19-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape19-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape19-normals\" name=\"gearBolt0Shape19-normals\">\r\n          <float_array id=\"gearBolt0Shape19-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape19-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape19-map1\" name=\"gearBolt0Shape19-map1\">\r\n          <float_array id=\"gearBolt0Shape19-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape19-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape19-vertices\" name=\"gearBolt0Shape19-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape19-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape19-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape19-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape19-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape19</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"gearBolt0Shape20\" name=\"gearBolt0Shape20\">\r\n      <mesh>\r\n        <source id=\"gearBolt0Shape20-positions\" name=\"gearBolt0Shape20-positions\">\r\n          <float_array id=\"gearBolt0Shape20-positions-array\" count=\"153\">-2.277613 26.53289 -5.322878 -2.668614 26.53289 -5.322878 -2.864115 26.19427 -5.322878 -2.668614 25.85565 -5.322878 -2.277613 25.85565 -5.322878 -2.082112 26.19427 -5.322878 -2.277613 26.53289 -3.008103 -2.668614 26.53289 -3.008103 -2.864115 26.19427 -3.008103 -2.668614 25.85565 -3.008103 -2.277613 25.85565 -3.008103 -2.082112 26.19427 -3.008103 -2.473113 26.19427 -5.322878 -2.473113 26.19427 -2.814401 -2.208521 26.04151 -5.913164 -2.208521 26.34703 -5.913164 -2.473113 26.4998 -5.913164 -2.737706 26.34703 -5.913164 -2.737706 26.04151 -5.913164 -2.473113 25.88875 -5.913164 -2.208521 26.04151 -5.107837 -2.208521 26.34703 -5.107837 -2.473113 26.4998 -5.107837 -2.737706 26.34703 -5.107837 -2.737706 26.04151 -5.107837 -2.473113 25.88875 -5.107837 -1.917588 26.19427 -5.107837 -1.992015 26.47203 -5.107837 -2.195351 26.67537 -5.107837 -2.473113 26.7498 -5.107837 -2.750876 26.67537 -5.107837 -2.954212 26.47203 -5.107837 -3.028638 26.19427 -5.107837 -2.954212 25.91651 -5.107837 -2.750876 25.71317 -5.107837 -2.473113 25.63875 -5.107837 -2.195351 25.71317 -5.107837 -1.992015 25.91651 -5.107837 -1.917588 26.19427 -5.913164 -1.992015 26.47203 -5.913164 -2.195351 26.67537 -5.913164 -2.473113 26.7498 -5.913164 -2.750876 26.67537 -5.913164 -2.954212 26.47203 -5.913164 -3.028638 26.19427 -5.913164 -2.954212 25.91651 -5.913164 -2.750876 25.71317 -5.913164 -2.473113 25.63875 -5.913164 -2.195351 25.71317 -5.913164 -1.992015 25.91651 -5.913164 -2.473113 26.19427 -5.107837</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape20-positions-array\" count=\"51\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape20-normals\" name=\"gearBolt0Shape20-normals\">\r\n          <float_array id=\"gearBolt0Shape20-normals-array\" count=\"528\">0 1 0 0 1 0 0 1 0 0 1 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 -0.8660257 -0.4999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 -0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0.8660257 0.4999996 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.2219581 0.3844391 0.8960699 -0.2219581 0.3844389 0.8960699 0 0 1 -0.4439162 0 0.8960683 -0.2219581 -0.3844389 0.8960699 0.2219581 -0.3844391 0.8960699 0.4439162 0 0.8960683 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 -0.4999975 -0.8660268 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 0.4999973 -0.866027 0 1 0 0 1 0 0 1 0 0 1 0 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 0.4999973 0.866027 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 -0.4999975 0.8660268 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.9659261 0.2588186 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.7071044 0.7071091 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.2588204 0.9659255 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.7071044 0.7071091 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.9659261 -0.2588186 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.7071044 -0.7071091 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 -0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.2588204 -0.9659255 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.7071044 -0.7071091 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0.9659261 -0.2588186 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape20-normals-array\" count=\"176\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"gearBolt0Shape20-map1\" name=\"gearBolt0Shape20-map1\">\r\n          <float_array id=\"gearBolt0Shape20-map1-array\" count=\"222\">0.3499619 0.5045909 0.3296568 0.5045909 0.3195043 0.5221757 0.3296568 0.5397604 0.3499619 0.5397604 0.3601145 0.5221757 0.8227951 0.1176868 0.8282725 0.1176868 0.8337498 0.1176868 0.8392272 0.1176868 0.8447045 0.1176868 0.8501819 0.1176868 0.8556592 0.1176868 0.8227951 0.1671067 0.8282725 0.1671067 0.8337498 0.1671067 0.8392272 0.1671067 0.8447045 0.1671067 0.8501819 0.1671067 0.8556592 0.1671067 0.5107675 0.8571826 0.4892325 0.8571826 0.478465 0.8574244 0.4892325 0.8576663 0.5107675 0.8576663 0.521535 0.8574244 0.3398094 0.5213635 0.5 0.8192213 0.5648892 0.8806857 0.5734732 0.8806857 0.5734732 0.8978537 0.5648892 0.8978537 0.553444 0.8806857 0.553444 0.8978537 0.5419986 0.8806857 0.5419986 0.8978537 0.5305534 0.8806857 0.5305534 0.8978537 0.5191081 0.8806857 0.5191081 0.8978537 0.5076628 0.8806857 0.5076628 0.8978537 0.6130232 0.6565365 0.6130232 0.6712457 0.5688954 0.6712457 0.5688954 0.6565363 0.6130232 0.6418271 0.5688954 0.6418271 0.6130232 0.6271179 0.5688954 0.6271179 0.6130232 0.6124086 0.5688954 0.6124086 0.6130232 0.5976993 0.5688954 0.5976993 0.6130232 0.5829901 0.5688954 0.5829901 0.6130232 0.5682808 0.5688954 0.5682808 0.6130232 0.5535716 0.5688954 0.5535716 0.6130232 0.5388623 0.5688954 0.5388623 0.6130232 0.524153 0.5688954 0.524153 0.6130232 0.5094438 0.5688954 0.5094438 0.6130232 0.4947345 0.5688954 0.4947345 0.5247676 0.6491817 0.5247676 0.6197633 0.5247676 0.5903447 0.5247676 0.5609262 0.5247676 0.5315076 0.5247676 0.5020891 0.5247676 0.6712457 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388 0.3430547 0.5896227 0.4213709 0.5896227 0.3822128 0.6679388</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#gearBolt0Shape20-map1-array\" count=\"111\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"gearBolt0Shape20-vertices\" name=\"gearBolt0Shape20-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#gearBolt0Shape20-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"lambert2SG\" count=\"66\">\r\n          <input semantic=\"VERTEX\" source=\"#gearBolt0Shape20-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#gearBolt0Shape20-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#gearBolt0Shape20-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 6 1 1 7 7 2 14 6 3 13 1 4 7 2 5 8 8 6 15 7 7 14 2 8 8 3 9 9 9 10 16 8 11 15 3 12 9 4 13 10 10 14 17 9 15 16 4 16 10 5 17 11 11 18 18 10 19 17 5 20 11 0 21 12 6 22 19 11 23 18 1 24 1 0 25 0 12 26 26 2 27 2 1 24 1 12 26 26 3 28 3 2 27 2 12 26 26 4 29 4 3 28 3 12 26 26 5 30 5 4 29 4 12 26 26 0 25 0 5 30 5 12 26 26 6 31 24 7 32 23 13 33 27 7 32 23 8 34 22 13 33 27 8 34 22 9 35 21 13 33 27 9 35 21 10 36 20 13 33 27 10 36 20 11 37 25 13 33 27 11 37 25 6 31 24 13 33 27 15 38 28 14 39 29 20 40 30 21 41 31 16 42 32 15 43 28 21 44 31 22 45 33 17 46 34 16 47 32 22 48 33 23 49 35 18 50 36 17 51 34 23 52 35 24 53 37 19 54 38 18 55 36 24 56 37 25 57 39 14 58 40 19 59 38 25 60 39 20 61 41 27 62 42 26 63 43 38 64 44 39 65 45 28 66 46 27 67 42 39 68 45 40 69 47 29 70 48 28 71 46 40 72 47 41 73 49 30 74 50 29 75 48 41 76 49 42 77 51 31 78 52 30 79 50 42 80 51 43 81 53 32 82 54 31 83 52 43 84 53 44 85 55 33 86 56 32 87 54 44 88 55 45 89 57 34 90 58 33 91 56 45 92 57 46 93 59 35 94 60 34 95 58 46 96 59 47 97 61 36 98 62 35 99 60 47 100 61 48 101 63 37 102 64 36 103 62 48 104 63 49 105 65 26 106 66 37 107 64 49 108 65 38 109 67 39 110 45 38 111 44 15 112 68 40 113 47 39 110 45 15 112 68 41 114 49 40 115 47 16 116 69 42 117 51 41 114 49 16 116 69 43 118 53 42 119 51 17 120 70 44 121 55 43 118 53 17 120 70 45 122 57 44 123 55 18 124 71 46 125 59 45 122 57 18 124 71 47 126 61 46 127 59 19 128 72 48 129 63 47 126 61 19 128 72 49 130 65 48 131 63 14 132 73 38 133 67 49 130 65 14 132 73 16 134 69 40 113 47 15 112 68 17 135 70 42 117 51 16 116 69 18 136 71 44 121 55 17 120 70 19 137 72 46 125 59 18 124 71 14 138 73 48 129 63 19 128 72 15 139 68 38 133 44 14 132 74 26 140 75 27 141 76 50 142 77 27 143 78 28 144 79 50 145 80 28 146 81 29 147 82 50 148 83 29 149 84 30 150 85 50 151 86 30 152 87 31 153 88 50 154 89 31 155 90 32 156 91 50 157 92 32 158 93 33 159 94 50 160 95 33 161 96 34 162 97 50 163 98 34 164 99 35 165 100 50 166 101 35 167 102 36 168 103 50 169 104 36 170 105 37 171 106 50 172 107 37 173 108 26 174 109 50 175 110</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>gearBolt0Shape20</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camEye_cameraShape\" name=\"camEye_cameraShape\">\r\n      <mesh>\r\n        <source id=\"camEye_cameraShape-positions\" name=\"camEye_cameraShape-positions\">\r\n          <float_array id=\"camEye_cameraShape-positions-array\" count=\"96\">0.1998172 -0.6921868 -0.3460934 -0.199817 -0.6921868 -0.3460934 -0.3996342 -0.6921868 0 -0.1998172 -0.6921868 0.3460934 0.1998171 -0.6921868 0.3460934 0.3996342 -0.6921868 0 0.3460936 -0.3996342 -0.5994513 -0.3460933 -0.3996342 -0.5994514 -0.6921868 -0.3996342 0 -0.3460935 -0.3996342 0.5994513 0.3460934 -0.3996342 0.5994514 0.6921868 -0.3996342 0 0.3996344 0 -0.6921867 -0.3996341 0 -0.6921868 -0.7992684 0 0 -0.3996343 0 0.6921868 0.3996342 0 0.6921868 0.7992684 0 0 0.3460936 0.3996342 -0.5994513 -0.3460933 0.3996342 -0.5994514 -0.6921868 0.3996342 0 -0.3460935 0.3996342 0.5994513 0.3460934 0.3996342 0.5994514 0.6921868 0.3996342 0 0.1998172 0.6921868 -0.3460934 -0.199817 0.6921868 -0.3460934 -0.3996342 0.6921868 0 -0.1998172 0.6921868 0.3460934 0.1998171 0.6921868 0.3460934 0.3996342 0.6921868 0 0 -0.7992684 0 0 0.7992684 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camEye_cameraShape-positions-array\" count=\"32\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camEye_cameraShape-normals\" name=\"camEye_cameraShape-normals\">\r\n          <float_array id=\"camEye_cameraShape-normals-array\" count=\"396\">0 -0.6546536 -0.7559291 0 -0.6546536 -0.7559291 0 -0.6546536 -0.7559291 0 -0.6546536 -0.7559291 -0.6546537 -0.6546536 -0.3779646 -0.6546537 -0.6546536 -0.3779646 -0.6546537 -0.6546536 -0.3779646 -0.6546537 -0.6546536 -0.3779646 -0.6546538 -0.6546536 0.3779643 -0.6546538 -0.6546536 0.3779643 -0.6546538 -0.6546536 0.3779643 -0.6546538 -0.6546536 0.3779643 0 -0.6546536 0.755929 0 -0.6546536 0.755929 0 -0.6546536 0.755929 0 -0.6546536 0.755929 0.6546537 -0.6546536 0.3779645 0.6546537 -0.6546536 0.3779645 0.6546537 -0.6546536 0.3779645 0.6546537 -0.6546536 0.3779645 0.6546538 -0.6546537 -0.3779643 0.6546538 -0.6546537 -0.3779643 0.6546538 -0.6546537 -0.3779643 0.6546538 -0.6546537 -0.3779643 0 -0.2260446 -0.974117 0 -0.2260446 -0.974117 0 -0.2260446 -0.974117 0 -0.2260446 -0.974117 -0.84361 -0.2260446 -0.4870586 -0.84361 -0.2260446 -0.4870586 -0.84361 -0.2260446 -0.4870586 -0.84361 -0.2260446 -0.4870586 -0.8436101 -0.2260446 0.4870583 -0.8436101 -0.2260446 0.4870583 -0.8436101 -0.2260446 0.4870583 -0.8436101 -0.2260446 0.4870583 0 -0.2260446 0.974117 0 -0.2260446 0.974117 0 -0.2260446 0.974117 0 -0.2260446 0.974117 0.8436101 -0.2260446 0.4870585 0.8436101 -0.2260446 0.4870585 0.8436101 -0.2260446 0.4870585 0.8436101 -0.2260446 0.4870585 0.8436102 -0.2260446 -0.4870583 0.8436102 -0.2260446 -0.4870583 0.8436102 -0.2260446 -0.4870583 0.8436102 -0.2260446 -0.4870583 0 0.2260446 -0.974117 0 0.2260446 -0.974117 0 0.2260446 -0.974117 0 0.2260446 -0.974117 -0.84361 0.2260446 -0.4870586 -0.84361 0.2260446 -0.4870586 -0.84361 0.2260446 -0.4870586 -0.84361 0.2260446 -0.4870586 -0.8436101 0.2260446 0.4870583 -0.8436101 0.2260446 0.4870583 -0.8436101 0.2260446 0.4870583 -0.8436101 0.2260446 0.4870583 0 0.2260446 0.974117 0 0.2260446 0.974117 0 0.2260446 0.974117 0 0.2260446 0.974117 0.8436101 0.2260446 0.4870585 0.8436101 0.2260446 0.4870585 0.8436101 0.2260446 0.4870585 0.8436101 0.2260446 0.4870585 0.8436102 0.2260446 -0.4870583 0.8436102 0.2260446 -0.4870583 0.8436102 0.2260446 -0.4870583 0.8436102 0.2260446 -0.4870583 0 0.6546536 -0.7559291 0 0.6546536 -0.7559291 0 0.6546536 -0.7559291 0 0.6546536 -0.7559291 -0.6546537 0.6546537 -0.3779646 -0.6546537 0.6546537 -0.3779646 -0.6546537 0.6546537 -0.3779646 -0.6546537 0.6546537 -0.3779646 -0.6546538 0.6546536 0.3779643 -0.6546538 0.6546536 0.3779643 -0.6546538 0.6546536 0.3779643 -0.6546538 0.6546536 0.3779643 0 0.6546536 0.755929 0 0.6546536 0.755929 0 0.6546536 0.755929 0 0.6546536 0.755929 0.6546537 0.6546536 0.3779645 0.6546537 0.6546536 0.3779645 0.6546537 0.6546536 0.3779645 0.6546537 0.6546536 0.3779645 0.6546538 0.6546536 -0.3779643 0.6546538 0.6546536 -0.3779643 0.6546538 0.6546536 -0.3779643 0.6546538 0.6546536 -0.3779643 0 -0.955319 -0.2955766 0 -0.955319 -0.2955766 0 -0.955319 -0.2955766 -0.2559769 -0.9553192 -0.147788 -0.2559769 -0.9553192 -0.147788 -0.2559769 -0.9553192 -0.147788 -0.255977 -0.955319 0.147788 -0.255977 -0.955319 0.147788 -0.255977 -0.955319 0.147788 0 -0.955319 0.2955766 0 -0.955319 0.2955766 0 -0.955319 0.2955766 0.2559769 -0.9553192 0.147788 0.2559769 -0.9553192 0.147788 0.2559769 -0.9553192 0.147788 0.2559769 -0.9553192 -0.147788 0.2559769 -0.9553192 -0.147788 0.2559769 -0.9553192 -0.147788 0 0.955319 -0.2955766 0 0.955319 -0.2955766 0 0.955319 -0.2955766 -0.2559769 0.9553192 -0.147788 -0.2559769 0.9553192 -0.147788 -0.2559769 0.9553192 -0.147788 -0.255977 0.955319 0.147788 -0.255977 0.955319 0.147788 -0.255977 0.955319 0.147788 0 0.955319 0.2955766 0 0.955319 0.2955766 0 0.955319 0.2955766 0.2559769 0.9553192 0.147788 0.2559769 0.9553192 0.147788 0.2559769 0.9553192 0.147788 0.2559769 0.9553192 -0.147788 0.2559769 0.9553192 -0.147788 0.2559769 0.9553192 -0.147788</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camEye_cameraShape-normals-array\" count=\"132\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camEye_cameraShape-map1\" name=\"camEye_cameraShape-map1\">\r\n          <float_array id=\"camEye_cameraShape-map1-array\" count=\"94\">0 0.1666667 0.1666667 0.1666667 0.3333333 0.1666667 0.5 0.1666667 0.6666667 0.1666667 0.8333334 0.1666667 1 0.1666667 0 0.3333333 0.1666667 0.3333333 0.3333333 0.3333333 0.5 0.3333333 0.6666667 0.3333333 0.8333334 0.3333333 1 0.3333333 0 0.5 0.1666667 0.5 0.3333333 0.5 0.5 0.5 0.6666667 0.5 0.8333334 0.5 1 0.5 0 0.6666667 0.1666667 0.6666667 0.3333333 0.6666667 0.5 0.6666667 0.6666667 0.6666667 0.8333334 0.6666667 1 0.6666667 0 0.8333334 0.1666667 0.8333334 0.3333333 0.8333334 0.5 0.8333334 0.6666667 0.8333334 0.8333334 0.8333334 1 0.8333334 0.08333334 0 0.25 0 0.4166667 0 0.5833333 0 0.75 0 0.9166667 0 0.08333334 1 0.25 1 0.4166667 1 0.5833333 1 0.75 1 0.9166667 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camEye_cameraShape-map1-array\" count=\"47\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camEye_cameraShape-vertices\" name=\"camEye_cameraShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camEye_cameraShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"initialShadingGroup\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#camEye_cameraShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camEye_cameraShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camEye_cameraShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 7 2 8 6 3 7 1 4 1 2 5 2 8 6 9 7 7 8 2 8 2 3 9 3 9 10 10 8 11 9 3 12 3 4 13 4 10 14 11 9 15 10 4 16 4 5 17 5 11 18 12 10 19 11 5 20 5 0 21 6 6 22 13 11 23 12 6 24 7 7 25 8 13 26 15 12 27 14 7 28 8 8 29 9 14 30 16 13 31 15 8 32 9 9 33 10 15 34 17 14 35 16 9 36 10 10 37 11 16 38 18 15 39 17 10 40 11 11 41 12 17 42 19 16 43 18 11 44 12 6 45 13 12 46 20 17 47 19 12 48 14 13 49 15 19 50 22 18 51 21 13 52 15 14 53 16 20 54 23 19 55 22 14 56 16 15 57 17 21 58 24 20 59 23 15 60 17 16 61 18 22 62 25 21 63 24 16 64 18 17 65 19 23 66 26 22 67 25 17 68 19 12 69 20 18 70 27 23 71 26 18 72 21 19 73 22 25 74 29 24 75 28 19 76 22 20 77 23 26 78 30 25 79 29 20 80 23 21 81 24 27 82 31 26 83 30 21 84 24 22 85 25 28 86 32 27 87 31 22 88 25 23 89 26 29 90 33 28 91 32 23 92 26 18 93 27 24 94 34 29 95 33 1 96 1 0 97 0 30 98 35 2 99 2 1 100 1 30 101 36 3 102 3 2 103 2 30 104 37 4 105 4 3 106 3 30 107 38 5 108 5 4 109 4 30 110 39 0 111 6 5 112 5 30 113 40 24 114 28 25 115 29 31 116 41 25 117 29 26 118 30 31 119 42 26 120 30 27 121 31 31 122 43 27 123 31 28 124 32 31 125 44 28 126 32 29 127 33 31 128 45 29 129 33 24 130 34 31 131 46</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camEye_cameraShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n    <geometry id=\"camTarget_cameraShape\" name=\"camTarget_cameraShape\">\r\n      <mesh>\r\n        <source id=\"camTarget_cameraShape-positions\" name=\"camTarget_cameraShape-positions\">\r\n          <float_array id=\"camTarget_cameraShape-positions-array\" count=\"96\">0.1998172 -0.6921868 -0.3460934 -0.199817 -0.6921868 -0.3460934 -0.3996342 -0.6921868 0 -0.1998172 -0.6921868 0.3460934 0.1998171 -0.6921868 0.3460934 0.3996342 -0.6921868 0 0.3460936 -0.3996342 -0.5994513 -0.3460933 -0.3996342 -0.5994514 -0.6921868 -0.3996342 0 -0.3460935 -0.3996342 0.5994513 0.3460934 -0.3996342 0.5994514 0.6921868 -0.3996342 0 0.3996344 0 -0.6921867 -0.3996341 0 -0.6921868 -0.7992684 0 0 -0.3996343 0 0.6921868 0.3996342 0 0.6921868 0.7992684 0 0 0.3460936 0.3996342 -0.5994513 -0.3460933 0.3996342 -0.5994514 -0.6921868 0.3996342 0 -0.3460935 0.3996342 0.5994513 0.3460934 0.3996342 0.5994514 0.6921868 0.3996342 0 0.1998172 0.6921868 -0.3460934 -0.199817 0.6921868 -0.3460934 -0.3996342 0.6921868 0 -0.1998172 0.6921868 0.3460934 0.1998171 0.6921868 0.3460934 0.3996342 0.6921868 0 0 -0.7992684 0 0 0.7992684 0</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camTarget_cameraShape-positions-array\" count=\"32\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camTarget_cameraShape-normals\" name=\"camTarget_cameraShape-normals\">\r\n          <float_array id=\"camTarget_cameraShape-normals-array\" count=\"396\">0 -0.6546536 -0.7559291 0 -0.6546536 -0.7559291 0 -0.6546536 -0.7559291 0 -0.6546536 -0.7559291 -0.6546537 -0.6546536 -0.3779646 -0.6546537 -0.6546536 -0.3779646 -0.6546537 -0.6546536 -0.3779646 -0.6546537 -0.6546536 -0.3779646 -0.6546538 -0.6546536 0.3779643 -0.6546538 -0.6546536 0.3779643 -0.6546538 -0.6546536 0.3779643 -0.6546538 -0.6546536 0.3779643 0 -0.6546536 0.755929 0 -0.6546536 0.755929 0 -0.6546536 0.755929 0 -0.6546536 0.755929 0.6546537 -0.6546536 0.3779645 0.6546537 -0.6546536 0.3779645 0.6546537 -0.6546536 0.3779645 0.6546537 -0.6546536 0.3779645 0.6546538 -0.6546537 -0.3779643 0.6546538 -0.6546537 -0.3779643 0.6546538 -0.6546537 -0.3779643 0.6546538 -0.6546537 -0.3779643 0 -0.2260446 -0.974117 0 -0.2260446 -0.974117 0 -0.2260446 -0.974117 0 -0.2260446 -0.974117 -0.84361 -0.2260446 -0.4870586 -0.84361 -0.2260446 -0.4870586 -0.84361 -0.2260446 -0.4870586 -0.84361 -0.2260446 -0.4870586 -0.8436101 -0.2260446 0.4870583 -0.8436101 -0.2260446 0.4870583 -0.8436101 -0.2260446 0.4870583 -0.8436101 -0.2260446 0.4870583 0 -0.2260446 0.974117 0 -0.2260446 0.974117 0 -0.2260446 0.974117 0 -0.2260446 0.974117 0.8436101 -0.2260446 0.4870585 0.8436101 -0.2260446 0.4870585 0.8436101 -0.2260446 0.4870585 0.8436101 -0.2260446 0.4870585 0.8436102 -0.2260446 -0.4870583 0.8436102 -0.2260446 -0.4870583 0.8436102 -0.2260446 -0.4870583 0.8436102 -0.2260446 -0.4870583 0 0.2260446 -0.974117 0 0.2260446 -0.974117 0 0.2260446 -0.974117 0 0.2260446 -0.974117 -0.84361 0.2260446 -0.4870586 -0.84361 0.2260446 -0.4870586 -0.84361 0.2260446 -0.4870586 -0.84361 0.2260446 -0.4870586 -0.8436101 0.2260446 0.4870583 -0.8436101 0.2260446 0.4870583 -0.8436101 0.2260446 0.4870583 -0.8436101 0.2260446 0.4870583 0 0.2260446 0.974117 0 0.2260446 0.974117 0 0.2260446 0.974117 0 0.2260446 0.974117 0.8436101 0.2260446 0.4870585 0.8436101 0.2260446 0.4870585 0.8436101 0.2260446 0.4870585 0.8436101 0.2260446 0.4870585 0.8436102 0.2260446 -0.4870583 0.8436102 0.2260446 -0.4870583 0.8436102 0.2260446 -0.4870583 0.8436102 0.2260446 -0.4870583 0 0.6546536 -0.7559291 0 0.6546536 -0.7559291 0 0.6546536 -0.7559291 0 0.6546536 -0.7559291 -0.6546537 0.6546537 -0.3779646 -0.6546537 0.6546537 -0.3779646 -0.6546537 0.6546537 -0.3779646 -0.6546537 0.6546537 -0.3779646 -0.6546538 0.6546536 0.3779643 -0.6546538 0.6546536 0.3779643 -0.6546538 0.6546536 0.3779643 -0.6546538 0.6546536 0.3779643 0 0.6546536 0.755929 0 0.6546536 0.755929 0 0.6546536 0.755929 0 0.6546536 0.755929 0.6546537 0.6546536 0.3779645 0.6546537 0.6546536 0.3779645 0.6546537 0.6546536 0.3779645 0.6546537 0.6546536 0.3779645 0.6546538 0.6546536 -0.3779643 0.6546538 0.6546536 -0.3779643 0.6546538 0.6546536 -0.3779643 0.6546538 0.6546536 -0.3779643 0 -0.955319 -0.2955766 0 -0.955319 -0.2955766 0 -0.955319 -0.2955766 -0.2559769 -0.9553192 -0.147788 -0.2559769 -0.9553192 -0.147788 -0.2559769 -0.9553192 -0.147788 -0.255977 -0.955319 0.147788 -0.255977 -0.955319 0.147788 -0.255977 -0.955319 0.147788 0 -0.955319 0.2955766 0 -0.955319 0.2955766 0 -0.955319 0.2955766 0.2559769 -0.9553192 0.147788 0.2559769 -0.9553192 0.147788 0.2559769 -0.9553192 0.147788 0.2559769 -0.9553192 -0.147788 0.2559769 -0.9553192 -0.147788 0.2559769 -0.9553192 -0.147788 0 0.955319 -0.2955766 0 0.955319 -0.2955766 0 0.955319 -0.2955766 -0.2559769 0.9553192 -0.147788 -0.2559769 0.9553192 -0.147788 -0.2559769 0.9553192 -0.147788 -0.255977 0.955319 0.147788 -0.255977 0.955319 0.147788 -0.255977 0.955319 0.147788 0 0.955319 0.2955766 0 0.955319 0.2955766 0 0.955319 0.2955766 0.2559769 0.9553192 0.147788 0.2559769 0.9553192 0.147788 0.2559769 0.9553192 0.147788 0.2559769 0.9553192 -0.147788 0.2559769 0.9553192 -0.147788 0.2559769 0.9553192 -0.147788</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camTarget_cameraShape-normals-array\" count=\"132\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"camTarget_cameraShape-map1\" name=\"camTarget_cameraShape-map1\">\r\n          <float_array id=\"camTarget_cameraShape-map1-array\" count=\"94\">0 0.1666667 0.1666667 0.1666667 0.3333333 0.1666667 0.5 0.1666667 0.6666667 0.1666667 0.8333334 0.1666667 1 0.1666667 0 0.3333333 0.1666667 0.3333333 0.3333333 0.3333333 0.5 0.3333333 0.6666667 0.3333333 0.8333334 0.3333333 1 0.3333333 0 0.5 0.1666667 0.5 0.3333333 0.5 0.5 0.5 0.6666667 0.5 0.8333334 0.5 1 0.5 0 0.6666667 0.1666667 0.6666667 0.3333333 0.6666667 0.5 0.6666667 0.6666667 0.6666667 0.8333334 0.6666667 1 0.6666667 0 0.8333334 0.1666667 0.8333334 0.3333333 0.8333334 0.5 0.8333334 0.6666667 0.8333334 0.8333334 0.8333334 1 0.8333334 0.08333334 0 0.25 0 0.4166667 0 0.5833333 0 0.75 0 0.9166667 0 0.08333334 1 0.25 1 0.4166667 1 0.5833333 1 0.75 1 0.9166667 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#camTarget_cameraShape-map1-array\" count=\"47\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"camTarget_cameraShape-vertices\" name=\"camTarget_cameraShape-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#camTarget_cameraShape-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"initialShadingGroup\" count=\"36\">\r\n          <input semantic=\"VERTEX\" source=\"#camTarget_cameraShape-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#camTarget_cameraShape-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#camTarget_cameraShape-map1\" offset=\"2\" set=\"0\"/>\r\n          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3</vcount>\r\n          <p>0 0 0 1 1 1 7 2 8 6 3 7 1 4 1 2 5 2 8 6 9 7 7 8 2 8 2 3 9 3 9 10 10 8 11 9 3 12 3 4 13 4 10 14 11 9 15 10 4 16 4 5 17 5 11 18 12 10 19 11 5 20 5 0 21 6 6 22 13 11 23 12 6 24 7 7 25 8 13 26 15 12 27 14 7 28 8 8 29 9 14 30 16 13 31 15 8 32 9 9 33 10 15 34 17 14 35 16 9 36 10 10 37 11 16 38 18 15 39 17 10 40 11 11 41 12 17 42 19 16 43 18 11 44 12 6 45 13 12 46 20 17 47 19 12 48 14 13 49 15 19 50 22 18 51 21 13 52 15 14 53 16 20 54 23 19 55 22 14 56 16 15 57 17 21 58 24 20 59 23 15 60 17 16 61 18 22 62 25 21 63 24 16 64 18 17 65 19 23 66 26 22 67 25 17 68 19 12 69 20 18 70 27 23 71 26 18 72 21 19 73 22 25 74 29 24 75 28 19 76 22 20 77 23 26 78 30 25 79 29 20 80 23 21 81 24 27 82 31 26 83 30 21 84 24 22 85 25 28 86 32 27 87 31 22 88 25 23 89 26 29 90 33 28 91 32 23 92 26 18 93 27 24 94 34 29 95 33 1 96 1 0 97 0 30 98 35 2 99 2 1 100 1 30 101 36 3 102 3 2 103 2 30 104 37 4 105 4 3 106 3 30 107 38 5 108 5 4 109 4 30 110 39 0 111 6 5 112 5 30 113 40 24 114 28 25 115 29 31 116 41 25 117 29 26 118 30 31 119 42 26 120 30 27 121 31 31 122 43 27 123 31 28 124 32 31 125 44 28 126 32 29 127 33 31 128 45 29 129 33 24 130 34 31 131 46</p>\r\n        </polylist>\r\n      </mesh>\r\n      <extra>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <originalMayaNodeId>camTarget_cameraShape</originalMayaNodeId>\r\n          <double_sided>1</double_sided>\r\n        </technique>\r\n      </extra>\r\n    </geometry>\r\n  </library_geometries>\r\n  <library_visual_scenes>\r\n    <visual_scene id=\"VisualSceneNode\" name=\"Pump_v19_noAnimVisibility\">\r\n      <node id=\"top\" name=\"top\" type=\"NODE\">\r\n        <translate sid=\"translate\">-24.20551 1200.173 46.48501</translate>\r\n        <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n        <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n        <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n        <scale sid=\"scale\">1 1 1</scale>\r\n        <instance_camera url=\"#topShape\"/>\r\n        <extra>\r\n          <technique profile=\"OpenCOLLADAMaya\">\r\n            <originalMayaNodeId>top</originalMayaNodeId>\r\n          </technique>\r\n        </extra>\r\n      </node>\r\n      <node id=\"side\" name=\"side\" type=\"NODE\">\r\n        <translate sid=\"translate\">934.1549 8.989487 29.5883</translate>\r\n        <rotate sid=\"rotateY\">0 1 0 90</rotate>\r\n        <scale sid=\"scale\">1 1 1</scale>\r\n        <instance_camera url=\"#sideShape\"/>\r\n        <extra>\r\n          <technique profile=\"OpenCOLLADAMaya\">\r\n            <originalMayaNodeId>side</originalMayaNodeId>\r\n          </technique>\r\n        </extra>\r\n      </node>\r\n      <node id=\"camera1\" name=\"camera1\" type=\"NODE\">\r\n        <translate sid=\"translate\">-41.01455 27.41051 90.48234</translate>\r\n        <rotate sid=\"rotateY\">0 1 0 -30.10288</rotate>\r\n        <rotate sid=\"rotateX\">1 0 0 -9.07177</rotate>\r\n        <scale sid=\"scale\">1 1 1</scale>\r\n        <instance_camera url=\"#cameraShape1\"/>\r\n        <extra>\r\n          <technique profile=\"OpenCOLLADAMaya\">\r\n            <originalMayaNodeId>camera1</originalMayaNodeId>\r\n          </technique>\r\n        </extra>\r\n      </node>\r\n      <node id=\"camTrick_G\" name=\"camTrick_G\" type=\"NODE\">\r\n        <translate sid=\"translate\">0 0 0</translate>\r\n        <translate sid=\"rotatePivot\">-19.25895 3.077958 108.8447</translate>\r\n        <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n        <translate sid=\"rotatePivotInverse\">19.25895 -3.077958 -108.8447</translate>\r\n        <translate sid=\"scalePivot\">-19.25895 3.077958 108.8447</translate>\r\n        <scale sid=\"scale\">1 1 1</scale>\r\n        <translate sid=\"scalePivotInverse\">19.25895 -3.077958 -108.8447</translate>\r\n        <node id=\"turnTable_G\" name=\"turnTable_G\" type=\"NODE\">\r\n          <translate sid=\"translate\">5.630067 0.500106 12.62129</translate>\r\n          <translate sid=\"rotatePivot\">-0.00153148 16.54927 13.8461</translate>\r\n          <rotate sid=\"rotateY\">0 1 0 304.9485</rotate>\r\n          <translate sid=\"rotatePivotInverse\">0.00153148 -16.54927 -13.8461</translate>\r\n          <translate sid=\"scalePivot\">-0.00153148 16.54927 13.8461</translate>\r\n          <scale sid=\"scale\">1 1 1</scale>\r\n          <translate sid=\"scalePivotInverse\">0.00153148 -16.54927 -13.8461</translate>\r\n          <node id=\"base\" name=\"base\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 1.843131 23.27976</translate>\r\n            <translate sid=\"rotatePivot\">0 -1.081381 -3.432126</translate>\r\n            <translate sid=\"rotatePivotInverse\">0 1.081381 3.432126</translate>\r\n            <translate sid=\"scalePivotTranslation\">0 1.865401 5.920476</translate>\r\n            <translate sid=\"scalePivot\">0 -2.946783 -9.352602</translate>\r\n            <scale sid=\"scale\">0.3669702 0.3669702 0.3669702</scale>\r\n            <translate sid=\"scalePivotInverse\">0 2.946783 9.352602</translate>\r\n            <instance_geometry url=\"#baseShape\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert4SG\" target=\"#Blue_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>base</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"piston2\" name=\"piston2\" type=\"NODE\">\r\n            <translate sid=\"translate\">16.79556 -4.896983 32.65295</translate>\r\n            <translate sid=\"rotatePivotTranslation\">-16.79118 23.51532 -17.02218</translate>\r\n            <translate sid=\"rotatePivot\">-0.004374735 -6.725945 23.74813</translate>\r\n            <rotate sid=\"rotateZ\">0 0 1 45</rotate>\r\n            <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n            <translate sid=\"rotatePivotInverse\">0.004374735 6.725945 -23.74813</translate>\r\n            <translate sid=\"scalePivotTranslation\">2.43909e-4 0.3749988 -1.324055</translate>\r\n            <translate sid=\"scalePivot\">-0.004618645 -7.100944 25.07218</translate>\r\n            <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n            <translate sid=\"scalePivotInverse\">0.004618645 7.100944 -25.07218</translate>\r\n            <instance_geometry url=\"#pistonShape1\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>piston2</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"piston1\" name=\"piston1\" type=\"NODE\">\r\n            <translate sid=\"translate\">0.004374735 -0.02118067 32.65295</translate>\r\n            <translate sid=\"rotatePivotTranslation\">0 30.47407 -17.02218</translate>\r\n            <translate sid=\"rotatePivot\">-0.004374735 -6.725945 23.74813</translate>\r\n            <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n            <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n            <translate sid=\"rotatePivotInverse\">0.004374735 6.725945 -23.74813</translate>\r\n            <translate sid=\"scalePivotTranslation\">2.43909e-4 0.3749988 -1.324055</translate>\r\n            <translate sid=\"scalePivot\">-0.004618645 -7.100944 25.07218</translate>\r\n            <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n            <translate sid=\"scalePivotInverse\">0.004618645 7.100944 -25.07218</translate>\r\n            <instance_geometry url=\"#pistonShape1\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>piston1</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"camGearLower_G\" name=\"camGearLower_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 11.88836 -4.529376</translate>\r\n            <rotate sid=\"rotateY\">0 1 0 180</rotate>\r\n            <scale sid=\"scale\">0.7102319 0.7102319 0.7102319</scale>\r\n            <node id=\"camGearLower_G_gearBody\" name=\"gearBody\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 -3.811147</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 -5</rotate>\r\n              <rotate sid=\"rotateY\">0 1 0 -90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#gearBodyShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBody</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"camGearLower_G_gearTeeth\" name=\"gearTeeth\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 -5</rotate>\r\n              <rotate sid=\"rotateY\">0 1 0 -90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#gearTeethShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearTeeth</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>camGearLower_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"camLower_G\" name=\"camLower_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 11.88836 39.41185</translate>\r\n            <rotate sid=\"rotateY\">0 1 0 -90</rotate>\r\n            <scale sid=\"scale\">1.157189 1.294027 1.294027</scale>\r\n            <node id=\"shaft_L\" name=\"shaft_L\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.7804233 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#shaft_LShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                    <instance_material symbol=\"lambert3SG\" target=\"#Teeth_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>shaft_L</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"front_bearings2_L\" name=\"front_bearings2_L\" type=\"NODE\">\r\n              <translate sid=\"translate\">-14.00082 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#front_bearings2_LShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>front_bearings2_L</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"front_spacer_L\" name=\"front_spacer_L\" type=\"NODE\">\r\n              <translate sid=\"translate\">-17.17576 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#front_spacer_LShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>front_spacer_L</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"front_bearings1_L\" name=\"front_bearings1_L\" type=\"NODE\">\r\n              <translate sid=\"translate\">-19.35013 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#front_bearings1_LShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>front_bearings1_L</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"rear_bearings2_L\" name=\"rear_bearings2_L\" type=\"NODE\">\r\n              <translate sid=\"translate\">-25.1587 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#rear_bearings2_LShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>rear_bearings2_L</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"rear_Spacer_L\" name=\"rear_Spacer_L\" type=\"NODE\">\r\n              <translate sid=\"translate\">-28.05702 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#rear_Spacer_LShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>rear_Spacer_L</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"rear_bearings1_L\" name=\"rear_bearings1_L\" type=\"NODE\">\r\n              <translate sid=\"translate\">-29.825 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#rear_bearings1_LShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>rear_bearings1_L</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"rearLockRingL_G\" name=\"rearLockRingL_G\" type=\"NODE\">\r\n              <translate sid=\"translate\">-2.422331 0 0</translate>\r\n              <translate sid=\"rotatePivot\">-28.86148 0.004972935 -0.002487421</translate>\r\n              <translate sid=\"rotatePivotInverse\">28.86148 -0.004972935 0.002487421</translate>\r\n              <translate sid=\"scalePivot\">-28.86148 0.004972935 -0.002487421</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">28.86148 -0.004972935 0.002487421</translate>\r\n              <node id=\"rearLockRing_nubs_L\" name=\"rearLockRing_nubs_L\" type=\"NODE\">\r\n                <translate sid=\"translate\">-9.018373 0 0</translate>\r\n                <translate sid=\"rotatePivot\">-19.85065 0 0</translate>\r\n                <rotate sid=\"rotateX\">1 0 0 360</rotate>\r\n                <translate sid=\"rotatePivotInverse\">19.85065 0 0</translate>\r\n                <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n                <translate sid=\"scalePivot\">-19.85065 0 0</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">19.85065 0 0</translate>\r\n                <instance_geometry url=\"#rearLockRing_nubs_LShape\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>rearLockRing_nubs_L</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"rearLockRingBody_L\" name=\"rearLockRingBody_L\" type=\"NODE\">\r\n                <translate sid=\"translate\">-28.86148 0.009523032 0</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#rearLockRingBody_LShape\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>rearLockRingBody_L</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>rearLockRingL_G</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"frontLockRingL_G\" name=\"frontLockRingL_G\" type=\"NODE\">\r\n              <translate sid=\"translate\">-1.468401 0 0</translate>\r\n              <translate sid=\"rotatePivot\">-19.91544 0.004972935 -0.002487421</translate>\r\n              <translate sid=\"rotatePivotInverse\">19.91544 -0.004972935 0.002487421</translate>\r\n              <translate sid=\"scalePivot\">-19.91544 0.004972935 -0.002487421</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">19.91544 -0.004972935 0.002487421</translate>\r\n              <node id=\"frontLockRingBody_L\" name=\"frontLockRingBody_L\" type=\"NODE\">\r\n                <translate sid=\"translate\">-19.84311 0.009523032 0</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#frontLockRingBody_LShape\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>frontLockRingBody_L</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"frontLockRing_Nubs_L\" name=\"frontLockRing_Nubs_L\" type=\"NODE\">\r\n                <translate sid=\"translate\">0 0 0</translate>\r\n                <translate sid=\"rotatePivot\">-19.85065 0 0</translate>\r\n                <rotate sid=\"rotateX\">1 0 0 360</rotate>\r\n                <translate sid=\"rotatePivotInverse\">19.85065 0 0</translate>\r\n                <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n                <translate sid=\"scalePivot\">-19.85065 0 0</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">19.85065 0 0</translate>\r\n                <instance_geometry url=\"#frontLockRing_Nubs_LShape\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>frontLockRing_Nubs_L</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>frontLockRingL_G</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>camLower_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"camGearUpper_G\" name=\"camGearUpper_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 23.73216 -4.529376</translate>\r\n            <rotate sid=\"rotateY\">0 1 0 180</rotate>\r\n            <scale sid=\"scale\">0.7102319 0.7102319 0.7102319</scale>\r\n            <node id=\"camGearUpper_G_gearBody\" name=\"gearBody\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 -3.811147</translate>\r\n              <rotate sid=\"rotateY\">0 1 0 -90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#gearBodyShape_1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBody</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"camGearUpper_G_gearTeeth\" name=\"gearTeeth\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0</translate>\r\n              <rotate sid=\"rotateY\">0 1 0 -90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#gearTeethShape_1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearTeeth</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>camGearUpper_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"gearCover\" name=\"gearCover\" type=\"NODE\">\r\n            <translate sid=\"translate\">0.6377129 18.54812 -5.99491</translate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <instance_geometry url=\"#gearCover\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert4SG\" target=\"#Blue_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <node id=\"hole01\" name=\"hole01\" type=\"NODE\">\r\n              <translate sid=\"translate\">4.688323 13.1903 -0.9642536</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole01</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole02\" name=\"hole02\" type=\"NODE\">\r\n              <translate sid=\"translate\">-6.159635 13.1903 -0.9642536</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape2\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole02</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole03\" name=\"hole03\" type=\"NODE\">\r\n              <translate sid=\"translate\">7.612655 -0.740516 -0.9642536</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape3\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole03</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole04\" name=\"hole04\" type=\"NODE\">\r\n              <translate sid=\"translate\">-8.287251 -0.740516 -0.9642536</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape4\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole04</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole05\" name=\"hole05\" type=\"NODE\">\r\n              <translate sid=\"translate\">4.688323 -14.57002 -0.9642536</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape5\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole05</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole06\" name=\"hole06\" type=\"NODE\">\r\n              <translate sid=\"translate\">-6.159635 -14.57002 -0.9642536</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape6\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole06</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>gearCover</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"pistonCover\" name=\"pistonCover\" type=\"NODE\">\r\n            <translate sid=\"translate\">0.01037896 17.78009 120</translate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <instance_geometry url=\"#pistonCoverShape\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <node id=\"hole_pistonCover_1\" name=\"hole_pistonCover_1\" type=\"NODE\">\r\n              <translate sid=\"translate\">-6.123869 -12.88878 0.3271256</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.3988463 0.4070936</translate>\r\n              <translate sid=\"rotatePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">1.199128 1.199128 1.199128</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole_pistonCover_Shape1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole_pistonCover_1</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole_pistonCover_2\" name=\"hole_pistonCover_2\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.937469 -12.88878 0.3271256</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.3988463 0.4070936</translate>\r\n              <translate sid=\"rotatePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">1.195789 1.195789 1.195789</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole_pistonCover_Shape2\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole_pistonCover_2</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole_pistonCover_3\" name=\"hole_pistonCover_3\" type=\"NODE\">\r\n              <translate sid=\"translate\">9.757142 -5.960297 0.3271256</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.3988463 0.4070936</translate>\r\n              <translate sid=\"rotatePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">1.193749 1.193749 1.193749</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole_pistonCover_Shape3\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole_pistonCover_3</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole_pistonCover_4\" name=\"hole_pistonCover_4\" type=\"NODE\">\r\n              <translate sid=\"translate\">9.757142 6.257474 0.3271256</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.3988463 0.4070936</translate>\r\n              <translate sid=\"rotatePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">1.197197 1.197197 1.197197</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole_pistonCover_Shape4\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole_pistonCover_4</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole_pistonCover_5\" name=\"hole_pistonCover_5\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.937469 13.03738 0.3271256</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.3988463 0.4070936</translate>\r\n              <translate sid=\"rotatePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">1.180052 1.180052 1.180052</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole_pistonCover_Shape5\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole_pistonCover_5</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole_pistonCover_6\" name=\"hole_pistonCover_6\" type=\"NODE\">\r\n              <translate sid=\"translate\">-6.123869 13.03738 0.3271256</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.3988463 0.4070936</translate>\r\n              <translate sid=\"rotatePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">1.200438 1.200438 1.200438</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole_pistonCover_Shape6\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole_pistonCover_6</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole_pistonCover_7\" name=\"hole_pistonCover_7\" type=\"NODE\">\r\n              <translate sid=\"translate\">-9.97027 6.25789 0.3271256</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.3988463 0.4070936</translate>\r\n              <translate sid=\"rotatePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">1.195789 1.195789 1.195789</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole_pistonCover_Shape7\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole_pistonCover_7</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole_pistonCover_8\" name=\"hole_pistonCover_8\" type=\"NODE\">\r\n              <translate sid=\"translate\">-9.97027 -5.960297 0.3271256</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.3988463 0.4070936</translate>\r\n              <translate sid=\"rotatePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">1.200892 1.200892 1.200892</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole_pistonCover_Shape8\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole_pistonCover_8</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>pistonCover</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"pistonLock2_G\" name=\"pistonLock2_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">5.155222 21.85733 15.70707</translate>\r\n            <translate sid=\"rotatePivot\">-5.144843 -9.962448 23.74079</translate>\r\n            <translate sid=\"rotatePivotInverse\">5.144843 9.962448 -23.74079</translate>\r\n            <translate sid=\"scalePivot\">-5.144843 -9.962448 23.74079</translate>\r\n            <scale sid=\"scale\">0.9658605 0.9658605 0.9658605</scale>\r\n            <translate sid=\"scalePivotInverse\">5.144843 9.962448 -23.74079</translate>\r\n            <node id=\"pl2_slot\" name=\"pl2_slot\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0.05</translate>\r\n              <translate sid=\"rotatePivot\">-5.148174 -9.96085 25.09775</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 -180.0932</rotate>\r\n              <translate sid=\"rotatePivotInverse\">5.148174 9.96085 -25.09775</translate>\r\n              <translate sid=\"scalePivot\">-5.148174 -9.96085 25.09775</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">5.148174 9.96085 -25.09775</translate>\r\n              <instance_geometry url=\"#pl2_slotShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"initialShadingGroup\" target=\"#lambert1\"/>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>pl2_slot</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"pl2_head\" name=\"pl2_head\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0</translate>\r\n              <translate sid=\"rotatePivot\">-5.144842 -9.962449 24.0698</translate>\r\n              <translate sid=\"rotatePivotInverse\">5.144842 9.962449 -24.0698</translate>\r\n              <translate sid=\"scalePivot\">-5.144842 -9.962449 24.0698</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">5.144842 9.962449 -24.0698</translate>\r\n              <instance_geometry url=\"#pl2_headShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                    <instance_material symbol=\"pistonLock_v02_lambert6SG\" target=\"#blackRubber_S\"/>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>pl2_head</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"pl2_shaft\" name=\"pl2_shaft\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0</translate>\r\n              <translate sid=\"rotatePivot\">-5.141867 -9.9548 22.41513</translate>\r\n              <translate sid=\"rotatePivotInverse\">5.141867 9.9548 -22.41513</translate>\r\n              <translate sid=\"scalePivot\">-5.141867 -9.9548 22.41513</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">5.141867 9.9548 -22.41513</translate>\r\n              <instance_geometry url=\"#pl2_shaftShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>pl2_shaft</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>pistonLock2_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"pistonLock1_G\" name=\"pistonLock1_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">5.155222 33.69461 15.21942</translate>\r\n            <translate sid=\"rotatePivot\">-5.144843 -9.962448 23.74079</translate>\r\n            <translate sid=\"rotatePivotInverse\">5.144843 9.962448 -23.74079</translate>\r\n            <translate sid=\"scalePivot\">-5.144843 -9.962448 23.74079</translate>\r\n            <scale sid=\"scale\">0.9658605 0.9658605 0.9658605</scale>\r\n            <translate sid=\"scalePivotInverse\">5.144843 9.962448 -23.74079</translate>\r\n            <node id=\"pl1_slot\" name=\"pl1_slot\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0.05</translate>\r\n              <translate sid=\"rotatePivot\">-5.148174 -9.96085 25.09775</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 -468.2403</rotate>\r\n              <translate sid=\"rotatePivotInverse\">5.148174 9.96085 -25.09775</translate>\r\n              <translate sid=\"scalePivot\">-5.148174 -9.96085 25.09775</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">5.148174 9.96085 -25.09775</translate>\r\n              <instance_geometry url=\"#pl1_slotShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"initialShadingGroup\" target=\"#lambert1\"/>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>pl1_slot</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"pl1_head\" name=\"pl1_head\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0</translate>\r\n              <translate sid=\"rotatePivot\">-5.144842 -9.962449 24.0698</translate>\r\n              <translate sid=\"rotatePivotInverse\">5.144842 9.962449 -24.0698</translate>\r\n              <translate sid=\"scalePivot\">-5.144842 -9.962449 24.0698</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">5.144842 9.962449 -24.0698</translate>\r\n              <instance_geometry url=\"#pl1_headShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                    <instance_material symbol=\"pistonLock_v02_lambert6SG\" target=\"#blackRubber_S\"/>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>pl1_head</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"pl1_shaft\" name=\"pl1_shaft\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0</translate>\r\n              <translate sid=\"rotatePivot\">-5.141867 -9.9548 22.41513</translate>\r\n              <translate sid=\"rotatePivotInverse\">5.141867 9.9548 -22.41513</translate>\r\n              <translate sid=\"scalePivot\">-5.141867 -9.9548 22.41513</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">5.141867 9.9548 -22.41513</translate>\r\n              <instance_geometry url=\"#pl1_shaftShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>pl1_shaft</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>pistonLock1_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"pumpHousingBracket2\" name=\"pumpHousingBracket2\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 -24.60128 0</translate>\r\n            <translate sid=\"rotatePivot\">0.01038074 30.12909 31.95563</translate>\r\n            <rotate sid=\"rotateZ\">0 0 1 180</rotate>\r\n            <translate sid=\"rotatePivotInverse\">-0.01038074 -30.12909 -31.95563</translate>\r\n            <translate sid=\"scalePivot\">0.01038074 30.12909 31.95563</translate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <translate sid=\"scalePivotInverse\">-0.01038074 -30.12909 -31.95563</translate>\r\n            <instance_geometry url=\"#pumpHousingBracketShape2\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert4SG\" target=\"#Blue_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>pumpHousingBracket2</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"camUpper_G\" name=\"camUpper_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 23.73216 39.41185</translate>\r\n            <rotate sid=\"rotateY\">0 1 0 -90</rotate>\r\n            <scale sid=\"scale\">1.157189 1.294027 1.294027</scale>\r\n            <node id=\"shaft_u\" name=\"shaft_u\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.7804233 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#shaft_uShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                    <instance_material symbol=\"lambert3SG\" target=\"#Teeth_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>shaft_u</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"front_bearings2_u\" name=\"front_bearings2_u\" type=\"NODE\">\r\n              <translate sid=\"translate\">-14.00509 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#front_bearings2_uShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>front_bearings2_u</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"front_spacer_u\" name=\"front_spacer_u\" type=\"NODE\">\r\n              <translate sid=\"translate\">-17.17029 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#front_spacer_uShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>front_spacer_u</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"front_bearings1_u\" name=\"front_bearings1_u\" type=\"NODE\">\r\n              <translate sid=\"translate\">-19.32136 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#front_bearings1_uShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>front_bearings1_u</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"rear_bearings2_u\" name=\"rear_bearings2_u\" type=\"NODE\">\r\n              <translate sid=\"translate\">-25.1587 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#rear_bearings2_uShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>rear_bearings2_u</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"rear_Spacer_u\" name=\"rear_Spacer_u\" type=\"NODE\">\r\n              <translate sid=\"translate\">-28.05702 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#rear_Spacer_uShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>rear_Spacer_u</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"rear_bearings1_u\" name=\"rear_bearings1_u\" type=\"NODE\">\r\n              <translate sid=\"translate\">-29.825 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#rear_bearings1_uShape\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>rear_bearings1_u</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"rearLockRingU_G\" name=\"rearLockRingU_G\" type=\"NODE\">\r\n              <translate sid=\"translate\">-2.422331 0 0</translate>\r\n              <translate sid=\"rotatePivot\">-28.86148 0.004972935 -0.002487421</translate>\r\n              <translate sid=\"rotatePivotInverse\">28.86148 -0.004972935 0.002487421</translate>\r\n              <translate sid=\"scalePivot\">-28.86148 0.004972935 -0.002487421</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">28.86148 -0.004972935 0.002487421</translate>\r\n              <node id=\"rearLockRing_nubs_u\" name=\"rearLockRing_nubs_u\" type=\"NODE\">\r\n                <translate sid=\"translate\">-9.018373 0 0</translate>\r\n                <translate sid=\"rotatePivot\">-19.85065 0 0</translate>\r\n                <rotate sid=\"rotateX\">1 0 0 360</rotate>\r\n                <translate sid=\"rotatePivotInverse\">19.85065 0 0</translate>\r\n                <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n                <translate sid=\"scalePivot\">-19.85065 0 0</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">19.85065 0 0</translate>\r\n                <instance_geometry url=\"#rearLockRing_nubs_uShape\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>rearLockRing_nubs_u</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"rearLockRingBody_u\" name=\"rearLockRingBody_u\" type=\"NODE\">\r\n                <translate sid=\"translate\">-28.86148 0.009523032 0</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#rearLockRingBody_uShape\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>rearLockRingBody_u</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>rearLockRingU_G</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"frontLockRingU_G\" name=\"frontLockRingU_G\" type=\"NODE\">\r\n              <translate sid=\"translate\">-1.424458 0 0</translate>\r\n              <translate sid=\"rotatePivot\">-19.91544 0.004972935 -0.002487421</translate>\r\n              <translate sid=\"rotatePivotInverse\">19.91544 -0.004972935 0.002487421</translate>\r\n              <translate sid=\"scalePivot\">-19.91544 0.004972935 -0.002487421</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">19.91544 -0.004972935 0.002487421</translate>\r\n              <node id=\"frontLockRingBody_u\" name=\"frontLockRingBody_u\" type=\"NODE\">\r\n                <translate sid=\"translate\">-19.84311 0.009523032 0</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#frontLockRingBody_uShape\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>frontLockRingBody_u</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"frontLockRing_Nubs_u\" name=\"frontLockRing_Nubs_u\" type=\"NODE\">\r\n                <translate sid=\"translate\">0 0 0</translate>\r\n                <translate sid=\"rotatePivot\">-19.85065 0 0</translate>\r\n                <rotate sid=\"rotateX\">1 0 0 360</rotate>\r\n                <translate sid=\"rotatePivotInverse\">19.85065 0 0</translate>\r\n                <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n                <translate sid=\"scalePivot\">-19.85065 0 0</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">19.85065 0 0</translate>\r\n                <instance_geometry url=\"#frontLockRing_Nubs_uShape\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>frontLockRing_Nubs_u</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>frontLockRingU_G</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>camUpper_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"pumpHousingBracket1\" name=\"pumpHousingBracket1\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 -0.03932156 0</translate>\r\n            <translate sid=\"rotatePivot\">0.01038074 30.12909 31.95563</translate>\r\n            <translate sid=\"rotatePivotInverse\">-0.01038074 -30.12909 -31.95563</translate>\r\n            <translate sid=\"scalePivot\">0.01038074 30.12909 31.95563</translate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <translate sid=\"scalePivotInverse\">-0.01038074 -30.12909 -31.95563</translate>\r\n            <instance_geometry url=\"#pumpHousingBracketShape1\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert4SG\" target=\"#Blue_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>pumpHousingBracket1</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"pistonHousing_G\" name=\"pistonHousing_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">-22.29159 -3.280817 0</translate>\r\n            <translate sid=\"rotatePivot\">22.29006 21.16363 34.88445</translate>\r\n            <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n            <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n            <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n            <translate sid=\"rotatePivotInverse\">-22.29006 -21.16363 -34.88445</translate>\r\n            <translate sid=\"scalePivot\">22.29006 21.16363 34.88445</translate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <translate sid=\"scalePivotInverse\">-22.29006 -21.16363 -34.88445</translate>\r\n            <node id=\"polySurface1\" name=\"polySurface1\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0</translate>\r\n              <translate sid=\"rotatePivot\">22.30197 21.18675 33.51876</translate>\r\n              <translate sid=\"rotatePivotInverse\">-22.30197 -21.18675 -33.51876</translate>\r\n              <translate sid=\"scalePivot\">22.30197 21.18675 33.51876</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">-22.30197 -21.18675 -33.51876</translate>\r\n              <instance_geometry url=\"#polySurfaceShape1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>polySurface1</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"pCylinder7\" name=\"pCylinder7\" type=\"NODE\">\r\n              <translate sid=\"translate\">34.83961 21.18402 34.9004</translate>\r\n              <translate sid=\"rotatePivot\">-1.710258 0 -1.380619</translate>\r\n              <translate sid=\"rotatePivotInverse\">1.710258 0 1.380619</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">-1.710258 0 -1.380619</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">1.710258 0 1.380619</translate>\r\n              <instance_geometry url=\"#pCylinderShape7\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>pCylinder7</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"pCylinder8\" name=\"pCylinder8\" type=\"NODE\">\r\n              <translate sid=\"translate\">13.16103 21.22389 34.9004</translate>\r\n              <translate sid=\"rotatePivot\">-1.710258 0 0</translate>\r\n              <rotate sid=\"rotateY\">0 1 0 180</rotate>\r\n              <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n              <translate sid=\"rotatePivotInverse\">1.710258 0 0</translate>\r\n              <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n              <translate sid=\"scalePivot\">-1.710258 0 0</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">1.710258 0 0</translate>\r\n              <instance_geometry url=\"#pCylinderShape8\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>pCylinder8</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonCover_01\" name=\"bolt_pistonCover_01\" type=\"NODE\">\r\n              <translate sid=\"translate\">28.24441 34.10241 41.18722</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <instance_geometry url=\"#bolt_pistonCover_0Shape1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonCover_01</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonCover_08\" name=\"bolt_pistonCover_08\" type=\"NODE\">\r\n              <translate sid=\"translate\">16.18308 34.10241 41.18722</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <instance_geometry url=\"#bolt_pistonCover_0Shape8\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonCover_08</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonCover_07\" name=\"bolt_pistonCover_07\" type=\"NODE\">\r\n              <translate sid=\"translate\">12.33667 27.32292 41.18722</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <instance_geometry url=\"#bolt_pistonCover_0Shape7\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonCover_07</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonCover_02\" name=\"bolt_pistonCover_02\" type=\"NODE\">\r\n              <translate sid=\"translate\">32.06409 27.32251 41.18722</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <instance_geometry url=\"#bolt_pistonCover_0Shape2\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonCover_02</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonCover_03\" name=\"bolt_pistonCover_03\" type=\"NODE\">\r\n              <translate sid=\"translate\">32.06409 15.10474 41.18722</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <instance_geometry url=\"#bolt_pistonCover_0Shape3\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonCover_03</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonCover_06\" name=\"bolt_pistonCover_06\" type=\"NODE\">\r\n              <translate sid=\"translate\">12.33667 15.10474 41.18722</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <instance_geometry url=\"#bolt_pistonCover_0Shape6\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonCover_06</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonCover_05\" name=\"bolt_pistonCover_05\" type=\"NODE\">\r\n              <translate sid=\"translate\">16.18308 8.176254 41.18722</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <instance_geometry url=\"#bolt_pistonCover_0Shape5\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonCover_05</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonCover_04\" name=\"bolt_pistonCover_04\" type=\"NODE\">\r\n              <translate sid=\"translate\">28.24441 8.176254 41.18722</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <instance_geometry url=\"#bolt_pistonCover_0Shape4\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonCover_04</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonHousing1\" name=\"bolt_pistonHousing1\" type=\"NODE\">\r\n              <translate sid=\"translate\">31.05081 31.76023 30.44844</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">1.644674 1.02768 1.644674</scale>\r\n              <instance_geometry url=\"#bolt_pistonHousingShape1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonHousing1</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonHousing2\" name=\"bolt_pistonHousing2\" type=\"NODE\">\r\n              <translate sid=\"translate\">31.05081 10.45034 30.44844</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">1.644674 1.02768 1.644674</scale>\r\n              <instance_geometry url=\"#bolt_pistonHousingShape2\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonHousing2</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonHousing3\" name=\"bolt_pistonHousing3\" type=\"NODE\">\r\n              <translate sid=\"translate\">13.55338 10.45034 30.44844</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">1.644674 1.02768 1.644674</scale>\r\n              <instance_geometry url=\"#bolt_pistonHousingShape3\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonHousing3</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"bolt_pistonHousing4\" name=\"bolt_pistonHousing4\" type=\"NODE\">\r\n              <translate sid=\"translate\">13.55338 31.76023 30.44844</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 -90</rotate>\r\n              <scale sid=\"scale\">1.644674 1.02768 1.644674</scale>\r\n              <instance_geometry url=\"#bolt_pistonHousingShape4\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>bolt_pistonHousing4</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>pistonHousing_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"camHousing\" name=\"camHousing\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 0 0</translate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <instance_geometry url=\"#camHousingShape\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert4SG\" target=\"#Blue_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <node id=\"hole07\" name=\"hole07\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.326035 31.73842 -5.926924</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape7\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole07</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole08\" name=\"hole08\" type=\"NODE\">\r\n              <translate sid=\"translate\">-5.521922 31.73842 -5.926924</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape8\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole08</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole09\" name=\"hole09\" type=\"NODE\">\r\n              <translate sid=\"translate\">8.250368 17.80761 -5.926924</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape9\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole09</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole010\" name=\"hole010\" type=\"NODE\">\r\n              <translate sid=\"translate\">-7.649538 17.80761 -5.926924</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape10\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole010</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole011\" name=\"hole011\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.326035 3.978106 -5.926924</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape11\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole011</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole012\" name=\"hole012\" type=\"NODE\">\r\n              <translate sid=\"translate\">-5.521922 3.978106 -5.926924</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#hole0Shape12\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole012</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole017\" name=\"hole017\" type=\"NODE\">\r\n              <translate sid=\"translate\">-8.738214 7.169524 33.91557</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <scale sid=\"scale\">2.268882 2.268882 2.268882</scale>\r\n              <instance_geometry url=\"#hole0Shape17\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole017</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole018\" name=\"hole018\" type=\"NODE\">\r\n              <translate sid=\"translate\">8.747935 7.17888 33.91557</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.009356153 0.009356153</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 0 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0 -0.004123684</translate>\r\n              <scale sid=\"scale\">2.268882 2.268882 2.268882</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 0 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape18\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole018</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole019\" name=\"hole019\" type=\"NODE\">\r\n              <translate sid=\"translate\">8.747935 28.48877 33.91557</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.009356153 0.009356153</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 0 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0 -0.004123684</translate>\r\n              <scale sid=\"scale\">2.268882 2.268882 2.268882</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 0 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape19\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole019</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole020\" name=\"hole020\" type=\"NODE\">\r\n              <translate sid=\"translate\">-8.749499 28.48877 33.91557</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.009356153 0.009356153</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 0 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0 -0.004123684</translate>\r\n              <scale sid=\"scale\">2.268882 2.268882 2.268882</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 0 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape20\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole020</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole021\" name=\"hole021\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.0112841 30.40483 24.41468</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.9236475 -0.9049352</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0.9142914 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 -0.9142914 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0.5113214 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape21\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole021</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole022\" name=\"hole022\" type=\"NODE\">\r\n              <translate sid=\"translate\">-5.778933 20.41496 24.41468</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.9236475 -0.9049352</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0.9142914 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 -0.9142914 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0.5113214 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape22\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole022</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole023\" name=\"hole023\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.756365 20.41496 24.41468</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.9236475 -0.9049352</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0.9142914 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 -0.9142914 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0.5113214 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape23\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole023</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole024\" name=\"hole024\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.756365 15.22767 24.41468</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.9236475 -0.9049352</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0.9142914 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 -0.9142914 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0.5113214 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape24\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole024</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole025\" name=\"hole025\" type=\"NODE\">\r\n              <translate sid=\"translate\">-5.778933 15.22767 24.41468</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.9236475 -0.9049352</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0.9142914 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 -0.9142914 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0.5113214 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape25\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole025</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole026\" name=\"hole026\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.0112841 5.237811 24.41468</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.9236475 -0.9049352</translate>\r\n              <translate sid=\"rotatePivot\">0.0112841 0.9142914 -0.009356153</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 270</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.0112841 -0.9142914 0.009356153</translate>\r\n              <translate sid=\"scalePivotTranslation\">0.006310683 0.5113214 -0.005232469</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape26\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole026</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>camHousing</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"camCover1\" name=\"camCover1\" type=\"NODE\">\r\n            <translate sid=\"translate\">0.005910129 23.73908 23.73448</translate>\r\n            <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <instance_geometry url=\"#camCoverShape1\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert4SG\" target=\"#Blue_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <node id=\"hole030\" name=\"hole030\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.756894 0.8304796 3.329451</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.7850673 0.008033773</translate>\r\n              <translate sid=\"rotatePivot\">0.004844615 0.3925336 -0.004016887</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004844615 -0.3925336 0.004016887</translate>\r\n              <translate sid=\"scalePivotTranslation\">-1.28804e-4 -0.01043633 1.06797e-4</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape30\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole030</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole031\" name=\"hole031\" type=\"NODE\">\r\n              <translate sid=\"translate\">-5.778404 0.8304796 3.329451</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.7850673 0.008033773</translate>\r\n              <translate sid=\"rotatePivot\">0.004844615 0.3925336 -0.004016887</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004844615 -0.3925336 0.004016887</translate>\r\n              <translate sid=\"scalePivotTranslation\">-1.28804e-4 -0.01043633 1.06797e-4</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape31\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole031</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole032\" name=\"hole032\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.01075474 0.8304796 -6.66041</translate>\r\n              <translate sid=\"rotatePivotTranslation\">0 -0.7850673 0.008033773</translate>\r\n              <translate sid=\"rotatePivot\">0.004844615 0.3925336 -0.004016887</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004844615 -0.3925336 0.004016887</translate>\r\n              <translate sid=\"scalePivotTranslation\">-1.28804e-4 -0.01043633 1.06797e-4</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape32\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole032</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>camCover1</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"camCover2\" name=\"camCover2\" type=\"NODE\">\r\n            <translate sid=\"translate\">0.005910129 11.88125 23.73448</translate>\r\n            <rotate sid=\"rotateZ\">0 0 1 180</rotate>\r\n            <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <instance_geometry url=\"#camCoverShape2\">\r\n              <bind_material>\r\n                <technique_common>\r\n                  <instance_material symbol=\"lambert4SG\" target=\"#Blue_S\">\r\n                    <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                  </instance_material>\r\n                </technique_common>\r\n              </bind_material>\r\n            </instance_geometry>\r\n            <node id=\"hole027\" name=\"hole027\" type=\"NODE\">\r\n              <translate sid=\"translate\">0.01075474 0.8288242 -6.648779</translate>\r\n              <translate sid=\"rotatePivotTranslation\">-0.00968923 -0.7850673 0</translate>\r\n              <translate sid=\"rotatePivot\">0.004844615 0.3925336 -0.004016887</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 -180</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004844615 -0.3925336 0.004016887</translate>\r\n              <translate sid=\"scalePivotTranslation\">-1.28804e-4 -0.01043633 1.06797e-4</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape27\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole027</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole028\" name=\"hole028\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.778404 0.8288242 3.341082</translate>\r\n              <translate sid=\"rotatePivotTranslation\">-0.00968923 -0.7850673 0</translate>\r\n              <translate sid=\"rotatePivot\">0.004844615 0.3925336 -0.004016887</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 -180</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004844615 -0.3925336 0.004016887</translate>\r\n              <translate sid=\"scalePivotTranslation\">-1.28804e-4 -0.01043633 1.06797e-4</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape28\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole028</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"hole029\" name=\"hole029\" type=\"NODE\">\r\n              <translate sid=\"translate\">-5.756894 0.8288242 3.341082</translate>\r\n              <translate sid=\"rotatePivotTranslation\">-0.00968923 -0.7850673 0</translate>\r\n              <translate sid=\"rotatePivot\">0.004844615 0.3925336 -0.004016887</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 -180</rotate>\r\n              <translate sid=\"rotatePivotInverse\">-0.004844615 -0.3925336 0.004016887</translate>\r\n              <translate sid=\"scalePivotTranslation\">-1.28804e-4 -0.01043633 1.06797e-4</translate>\r\n              <translate sid=\"scalePivot\">0.004973419 0.40297 -0.004123684</translate>\r\n              <scale sid=\"scale\">0.9741015 0.9741015 0.9741015</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.004973419 -0.40297 0.004123684</translate>\r\n              <instance_geometry url=\"#hole0Shape29\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>hole029</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>camCover2</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"nutsAndBolts_G\" name=\"nutsAndBolts_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">-22.29159 -3.280817 0</translate>\r\n            <translate sid=\"rotatePivot\">22.30484 0 0</translate>\r\n            <translate sid=\"rotatePivotInverse\">-22.30484 0 0</translate>\r\n            <translate sid=\"scalePivot\">22.30484 0 0</translate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <translate sid=\"scalePivotInverse\">-22.30484 0 0</translate>\r\n            <node id=\"nuts_PistonCover_G\" name=\"nuts_PistonCover_G\" type=\"NODE\">\r\n              <translate sid=\"translate\">27.34007 3.974623 33.95038</translate>\r\n              <translate sid=\"rotatePivot\">0 1.758899 1.020584</translate>\r\n              <translate sid=\"rotatePivotInverse\">0 -1.758899 -1.020584</translate>\r\n              <translate sid=\"scalePivot\">0 1.758899 1.020584</translate>\r\n              <scale sid=\"scale\">0.9471903 0.9471903 0.9471903</scale>\r\n              <translate sid=\"scalePivotInverse\">0 -1.758899 -1.020584</translate>\r\n              <node id=\"nutsAndBolts_cappedNut_01\" name=\"nutsAndBolts_cappedNut_01\" type=\"NODE\">\r\n                <translate sid=\"translate\">-5.329951 -1.004886 41.45787</translate>\r\n                <translate sid=\"rotatePivot\">6.283753 32.7117 44.61176</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <translate sid=\"rotatePivotInverse\">-6.283753 -32.7117 -44.61176</translate>\r\n                <translate sid=\"scalePivotTranslation\">0.3318432 1.727496 2.355934</translate>\r\n                <translate sid=\"scalePivot\">5.95191 30.98421 42.25583</translate>\r\n                <scale sid=\"scale\">1.055754 1.055754 1.055754</scale>\r\n                <translate sid=\"scalePivotInverse\">-5.95191 -30.98421 -42.25583</translate>\r\n                <instance_geometry url=\"#nutsAndBolts_cappedNut_0Shape1\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>nutsAndBolts_cappedNut_01</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"nutsAndBolts_cappedNut_02\" name=\"nutsAndBolts_cappedNut_02\" type=\"NODE\">\r\n                <translate sid=\"translate\">-1.304885 -8.159924 41.45787</translate>\r\n                <translate sid=\"rotatePivot\">6.283753 32.7117 44.61176</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <translate sid=\"rotatePivotInverse\">-6.283753 -32.7117 -44.61176</translate>\r\n                <translate sid=\"scalePivotTranslation\">0.3318432 1.727496 2.355934</translate>\r\n                <translate sid=\"scalePivot\">5.95191 30.98421 42.25583</translate>\r\n                <scale sid=\"scale\">1.055754 1.055754 1.055754</scale>\r\n                <translate sid=\"scalePivotInverse\">-5.95191 -30.98421 -42.25583</translate>\r\n                <instance_geometry url=\"#nutsAndBolts_cappedNut_0Shape2\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>nutsAndBolts_cappedNut_02</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"nutsAndBolts_cappedNut_03\" name=\"nutsAndBolts_cappedNut_03\" type=\"NODE\">\r\n                <translate sid=\"translate\">-1.304885 -21.05889 41.45787</translate>\r\n                <translate sid=\"rotatePivot\">6.283753 32.7117 44.61176</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <translate sid=\"rotatePivotInverse\">-6.283753 -32.7117 -44.61176</translate>\r\n                <translate sid=\"scalePivotTranslation\">0.3318432 1.727496 2.355934</translate>\r\n                <translate sid=\"scalePivot\">5.95191 30.98421 42.25583</translate>\r\n                <scale sid=\"scale\">1.055754 1.055754 1.055754</scale>\r\n                <translate sid=\"scalePivotInverse\">-5.95191 -30.98421 -42.25583</translate>\r\n                <instance_geometry url=\"#nutsAndBolts_cappedNut_0Shape3\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>nutsAndBolts_cappedNut_03</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"nutsAndBolts_cappedNut_04\" name=\"nutsAndBolts_cappedNut_04\" type=\"NODE\">\r\n                <translate sid=\"translate\">-5.328989 -28.37366 41.45787</translate>\r\n                <translate sid=\"rotatePivot\">6.283753 32.7117 44.61176</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <translate sid=\"rotatePivotInverse\">-6.283753 -32.7117 -44.61176</translate>\r\n                <translate sid=\"scalePivotTranslation\">0.3318432 1.727496 2.355934</translate>\r\n                <translate sid=\"scalePivot\">5.95191 30.98421 42.25583</translate>\r\n                <scale sid=\"scale\">1.055754 1.055754 1.055754</scale>\r\n                <translate sid=\"scalePivotInverse\">-5.95191 -30.98421 -42.25583</translate>\r\n                <instance_geometry url=\"#nutsAndBolts_cappedNut_0Shape4\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>nutsAndBolts_cappedNut_04</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"nutsAndBolts_cappedNut_05\" name=\"nutsAndBolts_cappedNut_05\" type=\"NODE\">\r\n                <translate sid=\"translate\">-18.0628 -28.37366 41.45787</translate>\r\n                <translate sid=\"rotatePivot\">6.283753 32.7117 44.61176</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <translate sid=\"rotatePivotInverse\">-6.283753 -32.7117 -44.61176</translate>\r\n                <translate sid=\"scalePivotTranslation\">0.3318432 1.727496 2.355934</translate>\r\n                <translate sid=\"scalePivot\">5.95191 30.98421 42.25583</translate>\r\n                <scale sid=\"scale\">1.055754 1.055754 1.055754</scale>\r\n                <translate sid=\"scalePivotInverse\">-5.95191 -30.98421 -42.25583</translate>\r\n                <instance_geometry url=\"#nutsAndBolts_cappedNut_0Shape5\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>nutsAndBolts_cappedNut_05</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"nutsAndBolts_cappedNut_06\" name=\"nutsAndBolts_cappedNut_06\" type=\"NODE\">\r\n                <translate sid=\"translate\">-22.11512 -21.05889 41.45787</translate>\r\n                <translate sid=\"rotatePivot\">6.283753 32.7117 44.61176</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <translate sid=\"rotatePivotInverse\">-6.283753 -32.7117 -44.61176</translate>\r\n                <translate sid=\"scalePivotTranslation\">0.3318432 1.727496 2.355934</translate>\r\n                <translate sid=\"scalePivot\">5.95191 30.98421 42.25583</translate>\r\n                <scale sid=\"scale\">1.055754 1.055754 1.055754</scale>\r\n                <translate sid=\"scalePivotInverse\">-5.95191 -30.98421 -42.25583</translate>\r\n                <instance_geometry url=\"#nutsAndBolts_cappedNut_0Shape6\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>nutsAndBolts_cappedNut_06</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"nutsAndBolts_cappedNut_07\" name=\"nutsAndBolts_cappedNut_07\" type=\"NODE\">\r\n                <translate sid=\"translate\">-22.11512 -8.159705 41.45787</translate>\r\n                <translate sid=\"rotatePivot\">6.283753 32.7117 44.61176</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <translate sid=\"rotatePivotInverse\">-6.283753 -32.7117 -44.61176</translate>\r\n                <translate sid=\"scalePivotTranslation\">0.3318432 1.727496 2.355934</translate>\r\n                <translate sid=\"scalePivot\">5.95191 30.98421 42.25583</translate>\r\n                <scale sid=\"scale\">1.055754 1.055754 1.055754</scale>\r\n                <translate sid=\"scalePivotInverse\">-5.95191 -30.98421 -42.25583</translate>\r\n                <instance_geometry url=\"#nutsAndBolts_cappedNut_0Shape7\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>nutsAndBolts_cappedNut_07</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"nutsAndBolts_cappedNut_08\" name=\"nutsAndBolts_cappedNut_08\" type=\"NODE\">\r\n                <translate sid=\"translate\">-18.05426 -1.004886 41.45787</translate>\r\n                <translate sid=\"rotatePivot\">6.283753 32.7117 44.61176</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <translate sid=\"rotatePivotInverse\">-6.283753 -32.7117 -44.61176</translate>\r\n                <translate sid=\"scalePivotTranslation\">0.3318432 1.727496 2.355934</translate>\r\n                <translate sid=\"scalePivot\">5.95191 30.98421 42.25583</translate>\r\n                <scale sid=\"scale\">1.055754 1.055754 1.055754</scale>\r\n                <translate sid=\"scalePivotInverse\">-5.95191 -30.98421 -42.25583</translate>\r\n                <instance_geometry url=\"#nutsAndBolts_cappedNut_0Shape8\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>nutsAndBolts_cappedNut_08</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>nuts_PistonCover_G</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"nutsAndBolts_nut_pumpHousing1\" name=\"nutsAndBolts_nut_pumpHousing1\" type=\"NODE\">\r\n              <translate sid=\"translate\">13.55362 31.76023 30.33456</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#nutsAndBolts_nut_pumpHousingShape1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>nutsAndBolts_nut_pumpHousing1</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"nutsAndBolts_nut_pumpHousing2\" name=\"nutsAndBolts_nut_pumpHousing2\" type=\"NODE\">\r\n              <translate sid=\"translate\">82.59923 31.76023 16.08816</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#nutsAndBolts_nut_pumpHousingShape2\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>nutsAndBolts_nut_pumpHousing2</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"nutsAndBolts_nut_pumpHousing3\" name=\"nutsAndBolts_nut_pumpHousing3\" type=\"NODE\">\r\n              <translate sid=\"translate\">13.55362 10.45034 30.32022</translate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#nutsAndBolts_nut_pumpHousingShape3\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>nutsAndBolts_nut_pumpHousing3</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"nutsAndBolts_nut_pumpHousing4\" name=\"nutsAndBolts_nut_pumpHousing4\" type=\"NODE\">\r\n              <translate sid=\"translate\">82.59923 10.45034 16.08816</translate>\r\n              <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n              <rotate sid=\"rotateX\">1 0 0 90</rotate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <instance_geometry url=\"#nutsAndBolts_nut_pumpHousingShape4\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>nutsAndBolts_nut_pumpHousing4</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"camCoverBolts_G\" name=\"camCoverBolts_G\" type=\"NODE\">\r\n              <translate sid=\"translate\">22.27689 3.280817 -14.0535</translate>\r\n              <translate sid=\"rotatePivot\">0.01470239 23.73556 37.28769</translate>\r\n              <translate sid=\"rotatePivotInverse\">-0.01470239 -23.73556 -37.28769</translate>\r\n              <translate sid=\"scalePivot\">0.01470239 23.73556 37.28769</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.01470239 -23.73556 -37.28769</translate>\r\n              <node id=\"camCoverBolt1\" name=\"camCoverBolt1\" type=\"NODE\">\r\n                <translate sid=\"translate\">23.93616 41.35083 32.92391</translate>\r\n                <translate sid=\"rotatePivotTranslation\">-21.44835 -37.14963 8.727565</translate>\r\n                <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 -60</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n                <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <instance_geometry url=\"#camCoverBoltShape1\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>camCoverBolt1</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"camCoverBolt2\" name=\"camCoverBolt2\" type=\"NODE\">\r\n                <translate sid=\"translate\">18.16851 31.36097 32.92391</translate>\r\n                <translate sid=\"rotatePivotTranslation\">-21.44835 -37.14963 8.727565</translate>\r\n                <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 -60</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n                <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <instance_geometry url=\"#camCoverBoltShape2\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>camCoverBolt2</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"camCoverBolt3\" name=\"camCoverBolt3\" type=\"NODE\">\r\n                <translate sid=\"translate\">-15.666 35.64452 32.92391</translate>\r\n                <translate sid=\"rotatePivotTranslation\">23.92146 -41.43319 8.727565</translate>\r\n                <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 60</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n                <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <translate sid=\"scalePivotTranslation\">0 0 0</translate>\r\n                <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <instance_geometry url=\"#camCoverBoltShape3\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>camCoverBolt3</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"camCoverBolt4\" name=\"camCoverBolt4\" type=\"NODE\">\r\n                <translate sid=\"translate\">2.487816 31.42273 32.92391</translate>\r\n                <translate sid=\"rotatePivotTranslation\">0 -52.38854 8.727565</translate>\r\n                <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n                <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <instance_geometry url=\"#camCoverBoltShape4\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>camCoverBolt4</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"camCoverBolt5\" name=\"camCoverBolt5\" type=\"NODE\">\r\n                <translate sid=\"translate\">-18.13911 4.262959 32.92391</translate>\r\n                <translate sid=\"rotatePivotTranslation\">26.39457 -15.23891 8.727565</translate>\r\n                <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 120</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 180</rotate>\r\n                <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <instance_geometry url=\"#camCoverBoltShape5\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>camCoverBolt5</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"camCoverBolt6\" name=\"camCoverBolt6\" type=\"NODE\">\r\n                <translate sid=\"translate\">15.6954 -0.02059875 32.92391</translate>\r\n                <translate sid=\"rotatePivotTranslation\">-18.97523 -10.95536 8.727565</translate>\r\n                <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 60</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 180</rotate>\r\n                <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n                <instance_geometry url=\"#camCoverBoltShape6\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>camCoverBolt6</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>camCoverBolts_G</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearCoverBolts_G\" name=\"gearCoverBolts_G\" type=\"NODE\">\r\n              <translate sid=\"translate\">22.29159 3.280817 0</translate>\r\n              <translate sid=\"rotatePivot\">0.3004148 17.86033 -5.643907</translate>\r\n              <translate sid=\"rotatePivotInverse\">-0.3004148 -17.86033 5.643907</translate>\r\n              <translate sid=\"scalePivot\">0.3004148 17.86033 -5.643907</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">-0.3004148 -17.86033 5.643907</translate>\r\n              <node id=\"gearCoverBolt1\" name=\"gearCoverBolt1\" type=\"NODE\">\r\n                <translate sid=\"translate\">-5.521922 31.74255 -6.471642</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#gearCoverBoltShape1\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>gearCoverBolt1</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"gearCoverBolt2\" name=\"gearCoverBolt2\" type=\"NODE\">\r\n                <translate sid=\"translate\">5.331009 31.74255 -6.471642</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#gearCoverBoltShape2\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>gearCoverBolt2</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"gearCoverBolt3\" name=\"gearCoverBolt3\" type=\"NODE\">\r\n                <translate sid=\"translate\">5.331009 3.978106 -6.471642</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#gearCoverBoltShape3\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>gearCoverBolt3</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"gearCoverBolt4\" name=\"gearCoverBolt4\" type=\"NODE\">\r\n                <translate sid=\"translate\">-5.521922 3.978106 -6.471642</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#gearCoverBoltShape4\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>gearCoverBolt4</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"gearCoverBolt5\" name=\"gearCoverBolt5\" type=\"NODE\">\r\n                <translate sid=\"translate\">8.250368 17.80761 -6.471642</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#gearCoverBoltShape5\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>gearCoverBolt5</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <node id=\"gearCoverBolt6\" name=\"gearCoverBolt6\" type=\"NODE\">\r\n                <translate sid=\"translate\">-7.649538 17.80761 -6.471642</translate>\r\n                <scale sid=\"scale\">1 1 1</scale>\r\n                <instance_geometry url=\"#gearCoverBoltShape6\">\r\n                  <bind_material>\r\n                    <technique_common>\r\n                      <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                        <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                      </instance_material>\r\n                    </technique_common>\r\n                  </bind_material>\r\n                </instance_geometry>\r\n                <extra>\r\n                  <technique profile=\"OpenCOLLADAMaya\">\r\n                    <originalMayaNodeId>gearCoverBolt6</originalMayaNodeId>\r\n                  </technique>\r\n                </extra>\r\n              </node>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearCoverBolts_G</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>nutsAndBolts_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <node id=\"gearBolts_G\" name=\"gearBolts_G\" type=\"NODE\">\r\n            <translate sid=\"translate\">0 0 0</translate>\r\n            <scale sid=\"scale\">1 1 1</scale>\r\n            <node id=\"gearBolt01\" name=\"gearBolt01\" type=\"NODE\">\r\n              <translate sid=\"translate\">0 0 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape1\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt01</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt02\" name=\"gearBolt02\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.9700163 -1.92331 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape2\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt02</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt03\" name=\"gearBolt03\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.6291358 -4.050033 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape3\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt03</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt04\" name=\"gearBolt04\" type=\"NODE\">\r\n              <translate sid=\"translate\">0.8966981 -5.570223 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape4\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt04</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt05\" name=\"gearBolt05\" type=\"NODE\">\r\n              <translate sid=\"translate\">3.024669 -5.90322 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape5\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt05</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt06\" name=\"gearBolt06\" type=\"NODE\">\r\n              <translate sid=\"translate\">4.941965 -4.92183 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape6\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt06</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt07\" name=\"gearBolt07\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.916243 -3.000911 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape7\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt07</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt08\" name=\"gearBolt08\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.575362 -0.8741886 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape8\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt08</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt09\" name=\"gearBolt09\" type=\"NODE\">\r\n              <translate sid=\"translate\">4.049528 0.6460016 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape9\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt09</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt010\" name=\"gearBolt010\" type=\"NODE\">\r\n              <translate sid=\"translate\">1.921557 0.9789983 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape10\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt010</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt011\" name=\"gearBolt011\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.2007221 -12.07072 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape11\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt011</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt012\" name=\"gearBolt012\" type=\"NODE\">\r\n              <translate sid=\"translate\">-1.003874 -14.06925 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape12\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt012</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt013\" name=\"gearBolt013\" type=\"NODE\">\r\n              <translate sid=\"translate\">-0.4789343 -16.15817 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape13\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt013</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt014\" name=\"gearBolt014\" type=\"NODE\">\r\n              <translate sid=\"translate\">1.173587 -17.53959 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape14\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt014</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt015\" name=\"gearBolt015\" type=\"NODE\">\r\n              <translate sid=\"translate\">3.322483 -17.68585 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape15\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt015</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt016\" name=\"gearBolt016\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.146949 -16.54109 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape16\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt016</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt017\" name=\"gearBolt017\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.9501 -14.54257 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape17\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt017</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt018\" name=\"gearBolt018\" type=\"NODE\">\r\n              <translate sid=\"translate\">5.425161 -12.45365 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape18\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt018</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt019\" name=\"gearBolt019\" type=\"NODE\">\r\n              <translate sid=\"translate\">3.77264 -11.07223 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape19\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt019</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <node id=\"gearBolt020\" name=\"gearBolt020\" type=\"NODE\">\r\n              <translate sid=\"translate\">1.623744 -10.92597 0.5706027</translate>\r\n              <translate sid=\"rotatePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <translate sid=\"rotatePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <translate sid=\"scalePivot\">-2.473113 26.19427 -4.363782</translate>\r\n              <scale sid=\"scale\">1 1 1</scale>\r\n              <translate sid=\"scalePivotInverse\">2.473113 -26.19427 4.363782</translate>\r\n              <instance_geometry url=\"#gearBolt0Shape20\">\r\n                <bind_material>\r\n                  <technique_common>\r\n                    <instance_material symbol=\"lambert2SG\" target=\"#Metal_S\">\r\n                      <bind_vertex_input semantic=\"TEX0\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n                    </instance_material>\r\n                  </technique_common>\r\n                </bind_material>\r\n              </instance_geometry>\r\n              <extra>\r\n                <technique profile=\"OpenCOLLADAMaya\">\r\n                  <originalMayaNodeId>gearBolt020</originalMayaNodeId>\r\n                </technique>\r\n              </extra>\r\n            </node>\r\n            <extra>\r\n              <technique profile=\"OpenCOLLADAMaya\">\r\n                <originalMayaNodeId>gearBolts_G</originalMayaNodeId>\r\n              </technique>\r\n            </extra>\r\n          </node>\r\n          <extra>\r\n            <technique profile=\"OpenCOLLADAMaya\">\r\n              <originalMayaNodeId>turnTable_G</originalMayaNodeId>\r\n            </technique>\r\n          </extra>\r\n        </node>\r\n        <extra>\r\n          <technique profile=\"OpenCOLLADAMaya\">\r\n            <originalMayaNodeId>camTrick_G</originalMayaNodeId>\r\n          </technique>\r\n        </extra>\r\n      </node>\r\n      <node id=\"camEye_camera\" name=\"camEye_camera\" type=\"NODE\">\r\n        <translate sid=\"translate\">-41.01455 27.41051 90.48234</translate>\r\n        <rotate sid=\"rotateY\">0 1 0 -30.10288</rotate>\r\n        <rotate sid=\"rotateX\">1 0 0 -9.07177</rotate>\r\n        <scale sid=\"scale\">1 1 1</scale>\r\n        <instance_geometry url=\"#camEye_cameraShape\">\r\n          <bind_material>\r\n            <technique_common>\r\n              <instance_material symbol=\"initialShadingGroup\" target=\"#lambert1\"/>\r\n            </technique_common>\r\n          </bind_material>\r\n        </instance_geometry>\r\n        <extra>\r\n          <technique profile=\"OpenCOLLADAMaya\">\r\n            <originalMayaNodeId>camEye_camera</originalMayaNodeId>\r\n            <visibility>0</visibility>\r\n          </technique>\r\n        </extra>\r\n      </node>\r\n      <node id=\"camTarget_camera\" name=\"camTarget_camera\" type=\"NODE\">\r\n        <translate sid=\"translate\">-9.798193 17.47285 36.63753</translate>\r\n        <rotate sid=\"rotateY\">0 1 0 -30.10288</rotate>\r\n        <rotate sid=\"rotateX\">1 0 0 -9.07177</rotate>\r\n        <scale sid=\"scale\">1 1 1</scale>\r\n        <instance_geometry url=\"#camTarget_cameraShape\">\r\n          <bind_material>\r\n            <technique_common>\r\n              <instance_material symbol=\"initialShadingGroup\" target=\"#lambert1\"/>\r\n            </technique_common>\r\n          </bind_material>\r\n        </instance_geometry>\r\n        <extra>\r\n          <technique profile=\"OpenCOLLADAMaya\">\r\n            <originalMayaNodeId>camTarget_camera</originalMayaNodeId>\r\n          </technique>\r\n        </extra>\r\n      </node>\r\n    </visual_scene>\r\n  </library_visual_scenes>\r\n  <library_animations>\r\n    <animation id=\"camTrick_G.translate_camTrick_G\">\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-input\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-input\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-input-array\" count=\"3\">0.04166662 6.5 7.083333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-output\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-output\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-output-array\" count=\"3\">8.637086 7.794443 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-interpolation\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-interpolation\">\r\n        <Name_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-intangent\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-intangent\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-intangent-array\" count=\"6\">-0.2916667 8.680578 4.347222 8.456422 6.888889 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-outtangent\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-outtangent\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-outtangent-array\" count=\"6\">2.194445 8.356205 6.694445 7.734652 7.416666 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-input\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-input\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-input-array\" count=\"2\">6.5 7.083333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-output\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-output\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-output-array\" count=\"2\">-1.56741 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-interpolation\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-interpolation\">\r\n        <Name_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-intangent\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-intangent\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-intangent-array\" count=\"4\">6.166666 -2.463073 6.888889 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-outtangent\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-outtangent\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-outtangent-array\" count=\"4\">6.694445 -1.04494 7.416666 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-input\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-input\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-input-array\" count=\"3\">0.04166662 6.5 7.083333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-output\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-output\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-output-array\" count=\"3\">-80.89369 -80.47236 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-interpolation\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-interpolation\">\r\n        <Name_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-intangent\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-intangent\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-intangent-array\" count=\"6\">-0.2916667 -80.91543 4.347222 -81.31624 6.888889 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-outtangent\" name=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-outtangent\">\r\n        <float_array id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-outtangent-array\" count=\"6\">2.194445 -80.75325 6.694445 -80.39614 7.416666 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateX_camTrick_G-sampler\" target=\"camTrick_G/translate.X\"/>\r\n      <channel source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateY_camTrick_G-sampler\" target=\"camTrick_G/translate.Y\"/>\r\n      <channel source=\"#camTrick_G.translate_camTrick_G_camTrick_G.translateZ_camTrick_G-sampler\" target=\"camTrick_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"camTrick_G.rotateY_camTrick_G\">\r\n      <source id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-input\" name=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-input\">\r\n        <float_array id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-input-array\" count=\"4\">0.04166662 6.5 6.541666 7.083333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-output\" name=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-output\">\r\n        <float_array id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-output-array\" count=\"4\">47.24004 40.97273 40.8501 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-interpolation\" name=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-interpolation\">\r\n        <Name_array id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-intangent\" name=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-intangent\">\r\n        <float_array id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-intangent-array\" count=\"8\">-0.2916667 47.56351 4.347222 43.09803 6.527778 41.75961 6.902778 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-outtangent\" name=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-outtangent\">\r\n        <float_array id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-outtangent-array\" count=\"8\">2.194445 45.15093 6.513889 40.95901 6.722222 29.02642 7.416666 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camTrick_G.rotateY_camTrick_G_camTrick_G.rotateY_camTrick_G-sampler\" target=\"camTrick_G/rotateY.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"turnTable_G.translate_turnTable_G\">\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-input\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-input\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-input-array\" count=\"16\">8.75 10.58333 11.25 14.66667 14.91667 16.66667 17.16667 18.83333 22.75 23.33333 25.58333 27 30.83333 31.25 35.83333 37.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-input-array\" count=\"16\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-output\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-output\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-output-array\" count=\"16\">-7.58635 -5.937143 0.2013711 0.5544462 -3.6289 -3.6289 6.292428 5.630067 5.630067 1.324722 1.324722 5.961247 8.610692 -2.980624 -2.649443 5.298887 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-output-array\" count=\"16\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-interpolation\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-interpolation\">\r\n        <Name_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-interpolation-array\" count=\"16\">BEZIER LINEAR BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-interpolation-array\" count=\"16\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-intangent\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-intangent\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-intangent-array\" count=\"32\">8.416667 -7.58635 10.58323 -5.937143 11.02778 0.1799111 13.52778 0.470592 14.83333 -3.6289 16.08333 -3.6289 17 6.358891 18.27778 5.630067 21.44445 5.630067 23.13889 1.324902 24.83333 1.324722 26.52778 5.627485 29.55556 7.727944 31.11111 -2.989497 34.30555 -2.771103 36.94444 2.649443 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-intangent-array\" count=\"16\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-outtangent\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-outtangent\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-outtangent-array\" count=\"32\">9.361111 -7.58635 10.58343 -5.937143 12.38889 0.3113531 14.75 0.5605819 15.5 -3.6289 16.83333 -3.6289 17.72222 6.070883 20.13889 5.630067 22.94445 5.630067 24.08333 1.323017 26.05556 1.324722 28.27778 6.864369 30.97222 8.706643 32.77778 -2.883015 36.38889 -2.605203 37.83333 6.888552 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-outtangent-array\" count=\"16\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-input\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-input\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-input-array\" count=\"12\">10.58333 11.25 14.66667 16.66667 17.16667 18.83333 22.75 25.58333 30.83333 31.25 35.83333 37.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-input-array\" count=\"12\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-output\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-output\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-output-array\" count=\"12\">1.025585 -0.1640251 -0.1640251 -0.1640251 -0.3300579 0.500106 0.500106 0.500106 0.500106 -2.100322 -2.011433 -0.2801527 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-output-array\" count=\"12\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-interpolation\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-interpolation\">\r\n        <Name_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-interpolation-array\" count=\"12\">LINEAR BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-interpolation-array\" count=\"12\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-intangent\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-intangent\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-intangent-array\" count=\"24\">10.58323 1.025585 11.02778 -0.1640251 13.52778 -0.1640251 16 -0.1640251 17 -0.3811449 18.27778 0.500106 21.44445 0.500106 24.63889 0.500106 29.08333 0.500106 31.11111 -2.101706 34.30555 -2.07033 36.94444 -0.8572461 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-intangent-array\" count=\"12\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-outtangent\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-outtangent\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-outtangent-array\" count=\"24\">10.58343 1.025585 12.38889 -0.1640251 15.33333 -0.1640251 16.83333 -0.1640251 17.72222 -0.1597678 20.13889 0.500106 23.69445 0.500106 27.33333 0.500106 30.97222 0.500106 32.77778 -2.083791 36.38889 -1.990016 37.83333 0.0661031 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-outtangent-array\" count=\"12\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-input\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-input\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-input-array\" count=\"16\">8.75 10.58333 11.25 14.66667 14.91667 16.66667 17.16667 18.83333 22.75 23.33333 25.58333 27 30.83333 31.25 35.83333 37.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-input-array\" count=\"16\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-output\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-output\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-output-array\" count=\"16\">7.256509 5.937143 17.72815 17.72815 7.984765 7.984765 8.978306 12.62129 12.62129 39.4469 39.4469 14.60837 8.647126 2.685878 3.017058 2.023517 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-output-array\" count=\"16\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-interpolation\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-interpolation\">\r\n        <Name_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-interpolation-array\" count=\"16\">BEZIER LINEAR BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-interpolation-array\" count=\"16\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-intangent\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-intangent\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-intangent-array\" count=\"32\">8.416667 7.256509 10.58323 5.937143 11.02778 17.72815 13.52778 17.72815 14.83333 7.984765 16.08333 7.984765 17 8.62165 18.27778 12.62129 21.44445 12.62129 23.13889 39.4167 24.83333 39.4469 26.52778 15.39907 29.55556 12.23167 31.11111 2.677885 34.30555 2.930591 36.94444 2.354697 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-intangent-array\" count=\"16\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-outtangent\" name=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-outtangent\">\r\n        <float_array id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-outtangent-array\" count=\"32\">9.361111 7.256509 10.58343 5.937143 12.38889 17.72815 14.75 17.72815 15.5 7.984765 16.83333 7.984765 17.72222 10.16716 20.13889 12.62129 22.94445 12.62129 24.08333 39.47065 26.05556 39.4469 28.27778 12.46884 30.97222 8.257502 32.77778 2.773796 36.38889 3.048501 37.83333 1.824809 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-outtangent-array\" count=\"16\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateX_turnTable_G-sampler\" target=\"turnTable_G/translate.X\"/>\r\n      <channel source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateY_turnTable_G-sampler\" target=\"turnTable_G/translate.Y\"/>\r\n      <channel source=\"#turnTable_G.translate_turnTable_G_turnTable_G.translateZ_turnTable_G-sampler\" target=\"turnTable_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"turnTable_G.rotateY_turnTable_G\">\r\n      <source id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-input\" name=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-input\">\r\n        <float_array id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-input-array\" count=\"17\">8.75 10.58333 11.25 14.66667 14.91667 16.66667 17.16667 18.41667 18.83333 22.75 23.33333 25.58333 27 30.83333 31.25 35.83333 37.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-input-array\" count=\"17\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-output\" name=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-output\">\r\n        <float_array id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-output-array\" count=\"17\">0 0 121.5069 125.1692 164.7159 169.0581 269.5485 272.0241 302.1783 305.7691 221.9265 219.9969 304.2929 309.154 394.376 405.3854 325.6712 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-output-array\" count=\"17\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-interpolation\" name=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-interpolation\">\r\n        <Name_array id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-interpolation-array\" count=\"17\">BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-interpolation-array\" count=\"17\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-intangent\" name=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-intangent\">\r\n        <float_array id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-intangent-array\" count=\"34\">8.416667 0 9.972223 0 11.02778 121.2528 13.52778 124.0475 14.83333 164.5199 16.08333 167.7145 17 269.1844 18 270.9501 18.69445 302.0081 21.44445 304.4105 23.13889 221.9265 24.83333 219.9969 26.52778 303.5239 29.55556 307.4377 31.11111 394.0423 34.30555 401.9844 36.94444 352.2426 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-intangent-array\" count=\"17\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-outtangent\" name=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-outtangent\">\r\n        <float_array id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-outtangent-array\" count=\"34\">9.361111 0 10.80556 0 12.38889 122.8088 14.75 125.2513 15.5 166.0882 16.83333 169.442 17.58333 270.4588 18.55556 272.3821 20.13889 303.7785 22.94445 305.9714 24.08333 221.9265 26.05556 219.9969 28.27778 306.3736 30.97222 309.3405 32.77778 398.0476 36.38889 406.6221 37.83333 309.7284 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-outtangent-array\" count=\"17\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#turnTable_G.rotateY_turnTable_G_turnTable_G.rotateY_turnTable_G-sampler\" target=\"turnTable_G/rotateY.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"piston2.translate_piston2\">\r\n      <source id=\"piston2.translate_piston2_piston2.translateZ_piston2-input\" name=\"piston2.translate_piston2_piston2.translateZ_piston2-input\">\r\n        <float_array id=\"piston2.translate_piston2_piston2.translateZ_piston2-input-array\" count=\"2\">19 19.91667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.translate_piston2_piston2.translateZ_piston2-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"piston2.translate_piston2_piston2.translateZ_piston2-output\" name=\"piston2.translate_piston2_piston2.translateZ_piston2-output\">\r\n        <float_array id=\"piston2.translate_piston2_piston2.translateZ_piston2-output-array\" count=\"2\">73.52832 32.65295 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.translate_piston2_piston2.translateZ_piston2-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston2.translate_piston2_piston2.translateZ_piston2-interpolation\" name=\"piston2.translate_piston2_piston2.translateZ_piston2-interpolation\">\r\n        <Name_array id=\"piston2.translate_piston2_piston2.translateZ_piston2-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.translate_piston2_piston2.translateZ_piston2-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston2.translate_piston2_piston2.translateZ_piston2-intangent\" name=\"piston2.translate_piston2_piston2.translateZ_piston2-intangent\">\r\n        <float_array id=\"piston2.translate_piston2_piston2.translateZ_piston2-intangent-array\" count=\"4\">18.66667 91.99006 19.61111 32.65295 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.translate_piston2_piston2.translateZ_piston2-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston2.translate_piston2_piston2.translateZ_piston2-outtangent\" name=\"piston2.translate_piston2_piston2.translateZ_piston2-outtangent\">\r\n        <float_array id=\"piston2.translate_piston2_piston2.translateZ_piston2-outtangent-array\" count=\"4\">19.30556 57.15276 20.25 32.65295 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.translate_piston2_piston2.translateZ_piston2-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"piston2.translate_piston2_piston2.translateZ_piston2-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#piston2.translate_piston2_piston2.translateZ_piston2-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#piston2.translate_piston2_piston2.translateZ_piston2-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#piston2.translate_piston2_piston2.translateZ_piston2-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#piston2.translate_piston2_piston2.translateZ_piston2-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#piston2.translate_piston2_piston2.translateZ_piston2-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#piston2.translate_piston2_piston2.translateZ_piston2-sampler\" target=\"piston2/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"piston2.rotateZ_piston2\">\r\n      <source id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-input\" name=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-input\">\r\n        <float_array id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-input-array\" count=\"4\">37.16667 39.16667 41.16667 47.16667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-output\" name=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-output\">\r\n        <float_array id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-output-array\" count=\"4\">45 -45 -135 -405 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-interpolation\" name=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-interpolation\">\r\n        <Name_array id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-intangent\" name=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-intangent\">\r\n        <float_array id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-intangent-array\" count=\"8\">36.83333 60 38.5 -15 40.5 -105 45.16667 -315 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-outtangent\" name=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-outtangent\">\r\n        <float_array id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-outtangent-array\" count=\"8\">37.83333 15 39.83333 -75 43.16667 -225 47.5 -420 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"piston2.rotateZ_piston2_piston2.rotateZ_piston2-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#piston2.rotateZ_piston2_piston2.rotateZ_piston2-sampler\" target=\"piston2/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"piston1.translate_piston1\">\r\n      <source id=\"piston1.translate_piston1_piston1.translateZ_piston1-input\" name=\"piston1.translate_piston1_piston1.translateZ_piston1-input\">\r\n        <float_array id=\"piston1.translate_piston1_piston1.translateZ_piston1-input-array\" count=\"2\">18.75 19.58333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.translate_piston1_piston1.translateZ_piston1-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"piston1.translate_piston1_piston1.translateZ_piston1-output\" name=\"piston1.translate_piston1_piston1.translateZ_piston1-output\">\r\n        <float_array id=\"piston1.translate_piston1_piston1.translateZ_piston1-output-array\" count=\"2\">73.70264 32.65295 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.translate_piston1_piston1.translateZ_piston1-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston1.translate_piston1_piston1.translateZ_piston1-interpolation\" name=\"piston1.translate_piston1_piston1.translateZ_piston1-interpolation\">\r\n        <Name_array id=\"piston1.translate_piston1_piston1.translateZ_piston1-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.translate_piston1_piston1.translateZ_piston1-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston1.translate_piston1_piston1.translateZ_piston1-intangent\" name=\"piston1.translate_piston1_piston1.translateZ_piston1-intangent\">\r\n        <float_array id=\"piston1.translate_piston1_piston1.translateZ_piston1-intangent-array\" count=\"4\">18.41667 94.73049 19.30556 32.65295 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.translate_piston1_piston1.translateZ_piston1-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston1.translate_piston1_piston1.translateZ_piston1-outtangent\" name=\"piston1.translate_piston1_piston1.translateZ_piston1-outtangent\">\r\n        <float_array id=\"piston1.translate_piston1_piston1.translateZ_piston1-outtangent-array\" count=\"4\">19.02778 56.77433 19.91667 32.65295 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.translate_piston1_piston1.translateZ_piston1-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"piston1.translate_piston1_piston1.translateZ_piston1-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#piston1.translate_piston1_piston1.translateZ_piston1-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#piston1.translate_piston1_piston1.translateZ_piston1-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#piston1.translate_piston1_piston1.translateZ_piston1-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#piston1.translate_piston1_piston1.translateZ_piston1-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#piston1.translate_piston1_piston1.translateZ_piston1-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#piston1.translate_piston1_piston1.translateZ_piston1-sampler\" target=\"piston1/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"piston1.rotateZ_piston1\">\r\n      <source id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-input\" name=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-input\">\r\n        <float_array id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-input-array\" count=\"4\">37.16667 39.16667 41.16667 47.16667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-output\" name=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-output\">\r\n        <float_array id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-output-array\" count=\"4\">0 90 180 450 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-interpolation\" name=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-interpolation\">\r\n        <Name_array id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-intangent\" name=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-intangent\">\r\n        <float_array id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-intangent-array\" count=\"8\">36.83333 -15 38.5 60 40.5 150 45.16667 360 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-outtangent\" name=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-outtangent\">\r\n        <float_array id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-outtangent-array\" count=\"8\">37.83333 30 39.83333 120 43.16667 270 47.5 465 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"piston1.rotateZ_piston1_piston1.rotateZ_piston1-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#piston1.rotateZ_piston1_piston1.rotateZ_piston1-sampler\" target=\"piston1/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"camGearLower_G.translate_camGearLower_G\">\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-input\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-input\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-input-array\" count=\"1\">12.41667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-output\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-output\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-interpolation\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-interpolation\">\r\n        <Name_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-intangent\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-intangent\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-intangent-array\" count=\"2\">12.08333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-outtangent\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-outtangent\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-outtangent-array\" count=\"2\">12.75 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-input\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-input\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-input-array\" count=\"1\">12.41667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-output\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-output\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-output-array\" count=\"1\">11.88836 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-interpolation\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-interpolation\">\r\n        <Name_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-intangent\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-intangent\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-intangent-array\" count=\"2\">12.08333 11.88836 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-outtangent\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-outtangent\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-outtangent-array\" count=\"2\">12.75 11.88836 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-input\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-input\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-input-array\" count=\"2\">11.16667 12.41667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-output\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-output\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-output-array\" count=\"2\">-70.02067 -4.529376 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-interpolation\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-interpolation\">\r\n        <Name_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-intangent\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-intangent\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-intangent-array\" count=\"4\">10.83333 -95.98764 12 -4.529376 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-outtangent\" name=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-outtangent\">\r\n        <float_array id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-outtangent-array\" count=\"4\">11.58333 -37.24732 12.75 -4.529376 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateX_camGearLower_G-sampler\" target=\"camGearLower_G/translate.X\"/>\r\n      <channel source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateY_camGearLower_G-sampler\" target=\"camGearLower_G/translate.Y\"/>\r\n      <channel source=\"#camGearLower_G.translate_camGearLower_G_camGearLower_G.translateZ_camGearLower_G-sampler\" target=\"camGearLower_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"camLower_G.translate_camLower_G\">\r\n      <source id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-input\" name=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-input\">\r\n        <float_array id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-input-array\" count=\"2\">6.833333 8.333333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-output\" name=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-output\">\r\n        <float_array id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-output-array\" count=\"2\">128.5859 39.41184 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-interpolation\" name=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-interpolation\">\r\n        <Name_array id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-intangent\" name=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-intangent\">\r\n        <float_array id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-intangent-array\" count=\"4\">6.5 133.9027 7.833333 39.41184 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-outtangent\" name=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-outtangent\">\r\n        <float_array id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-outtangent-array\" count=\"4\">7.333333 88.34653 8.666666 39.41184 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camLower_G.translate_camLower_G_camLower_G.translateZ_camLower_G-sampler\" target=\"camLower_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"front_bearings2_L.translate_front_bearings2_L\">\r\n      <source id=\"front_bearings2_L.translate_front_bearings2_L_translate-input\" name=\"front_bearings2_L.translate_front_bearings2_L_translate-input\">\r\n        <float_array id=\"front_bearings2_L.translate_front_bearings2_L_translate-input-array\" count=\"2\">0.04166662 1 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_L.translate_front_bearings2_L_translate-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_bearings2_L.translate_front_bearings2_L_translate-output\" name=\"front_bearings2_L.translate_front_bearings2_L_translate-output\">\r\n        <float_array id=\"front_bearings2_L.translate_front_bearings2_L_translate-output-array\" count=\"6\">-64.69987 0 0 -14.00082 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_L.translate_front_bearings2_L_translate-output-array\" count=\"2\" stride=\"3\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings2_L.translate_front_bearings2_L_translate-interpolation\" name=\"front_bearings2_L.translate_front_bearings2_L_translate-interpolation\">\r\n        <Name_array id=\"front_bearings2_L.translate_front_bearings2_L_translate-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_L.translate_front_bearings2_L_translate-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings2_L.translate_front_bearings2_L_translate-intangent\" name=\"front_bearings2_L.translate_front_bearings2_L_translate-intangent\">\r\n        <float_array id=\"front_bearings2_L.translate_front_bearings2_L_translate-intangent-array\" count=\"12\">-0.2916667 -96.53588 -0.2916667 0 -0.2916667 0 0.6805556 -14.00082 0.6805556 0 0.6805556 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_L.translate_front_bearings2_L_translate-intangent-array\" count=\"2\" stride=\"6\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings2_L.translate_front_bearings2_L_translate-outtangent\" name=\"front_bearings2_L.translate_front_bearings2_L_translate-outtangent\">\r\n        <float_array id=\"front_bearings2_L.translate_front_bearings2_L_translate-outtangent-array\" count=\"12\">0.3611111 -36.07479 0.3611111 0 0.3611111 0 1.333333 -14.00082 1.333333 0 1.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_L.translate_front_bearings2_L_translate-outtangent-array\" count=\"2\" stride=\"6\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"front_bearings2_L.translate_front_bearings2_L_translate-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_bearings2_L.translate_front_bearings2_L_translate-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_bearings2_L.translate_front_bearings2_L_translate-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_bearings2_L.translate_front_bearings2_L_translate-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_bearings2_L.translate_front_bearings2_L_translate-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_bearings2_L.translate_front_bearings2_L_translate-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#front_bearings2_L.translate_front_bearings2_L_translate-sampler\" target=\"front_bearings2_L/translate\"/>\r\n    </animation>\r\n    <animation id=\"front_spacer_L.translate_front_spacer_L\">\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-input\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-input\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-input-array\" count=\"3\">0.25 1.25 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-output\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-output\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-output-array\" count=\"3\">-67.87481 -17.17576 -17.17576 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-interpolation\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-interpolation\">\r\n        <Name_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-intangent\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-intangent\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-intangent-array\" count=\"6\">-0.08333331 -106.5762 0.9166666 -17.17576 3.75 -17.17576 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-outtangent\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-outtangent\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-outtangent-array\" count=\"6\">0.5833334 -33.57214 2.5 -17.17576 5.333333 -17.17576 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-input\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-input\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-input-array\" count=\"4\">0.04166662 0.25 1.25 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-output\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-output\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-output-array\" count=\"4\">0 0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-interpolation\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-interpolation\">\r\n        <Name_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-intangent\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-intangent\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-intangent-array\" count=\"8\">-0.2916667 0 0.1805555 0 0.9166666 0 3.75 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-outtangent\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-outtangent\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-outtangent-array\" count=\"8\">0.1111111 0 0.5833334 0 2.5 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-input\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-input\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-input-array\" count=\"4\">0.04166662 0.25 1.25 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-output\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-output\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-output-array\" count=\"4\">0 0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-interpolation\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-interpolation\">\r\n        <Name_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-intangent\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-intangent\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-intangent-array\" count=\"8\">-0.2916667 0 0.1805555 0 0.9166666 0 3.75 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-outtangent\" name=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-outtangent\">\r\n        <float_array id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-outtangent-array\" count=\"8\">0.1111111 0 0.5833334 0 2.5 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateX_front_spacer_L-sampler\" target=\"front_spacer_L/translate.X\"/>\r\n      <channel source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateY_front_spacer_L-sampler\" target=\"front_spacer_L/translate.Y\"/>\r\n      <channel source=\"#front_spacer_L.translate_front_spacer_L_front_spacer_L.translateZ_front_spacer_L-sampler\" target=\"front_spacer_L/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"front_bearings1_L.translate_front_bearings1_L\">\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-input\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-input\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-input-array\" count=\"3\">0.5 1.5 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-output\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-output\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-output-array\" count=\"3\">-70.04917 -19.35013 -19.35013 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-interpolation\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-interpolation\">\r\n        <Name_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-intangent\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-intangent\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-intangent-array\" count=\"6\">0.1666666 -100.3243 1.166667 -19.35013 3.833333 -19.35013 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-outtangent\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-outtangent\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-outtangent-array\" count=\"6\">0.8333334 -39.16293 2.666666 -19.35013 5.333333 -19.35013 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-input\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-input\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-input-array\" count=\"4\">0.04166662 0.5 1.5 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-output\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-output\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-output-array\" count=\"4\">0 0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-interpolation\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-interpolation\">\r\n        <Name_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-intangent\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-intangent\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-intangent-array\" count=\"8\">-0.2916667 0 0.3472222 0 1.166667 0 3.833333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-outtangent\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-outtangent\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-outtangent-array\" count=\"8\">0.1944444 0 0.8333334 0 2.666666 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-input\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-input\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-input-array\" count=\"4\">0.04166662 0.5 1.5 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-output\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-output\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-output-array\" count=\"4\">0 0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-interpolation\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-interpolation\">\r\n        <Name_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-intangent\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-intangent\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-intangent-array\" count=\"8\">-0.2916667 0 0.3472222 0 1.166667 0 3.833333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-outtangent\" name=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-outtangent\">\r\n        <float_array id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-outtangent-array\" count=\"8\">0.1944444 0 0.8333334 0 2.666666 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateX_front_bearings1_L-sampler\" target=\"front_bearings1_L/translate.X\"/>\r\n      <channel source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateY_front_bearings1_L-sampler\" target=\"front_bearings1_L/translate.Y\"/>\r\n      <channel source=\"#front_bearings1_L.translate_front_bearings1_L_front_bearings1_L.translateZ_front_bearings1_L-sampler\" target=\"front_bearings1_L/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rear_bearings2_L.translate_rear_bearings2_L\">\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-input\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-input\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-input-array\" count=\"2\">2.666667 4.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-output\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-output\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-output-array\" count=\"2\">-75.85774 -25.1587 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-interpolation\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-interpolation\">\r\n        <Name_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-intangent\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-intangent\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-intangent-array\" count=\"4\">2.333333 -92.64692 3.888889 -25.1587 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-outtangent\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-outtangent\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-outtangent-array\" count=\"4\">3.277778 -45.44533 4.833333 -25.1587 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-input\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-input\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-output\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-output\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-interpolation\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-interpolation\">\r\n        <Name_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-intangent\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-intangent\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-outtangent\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-outtangent\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-input\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-input\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-output\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-output\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-interpolation\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-interpolation\">\r\n        <Name_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-intangent\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-intangent\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-outtangent\" name=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-outtangent\">\r\n        <float_array id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateX_rear_bearings2_L-sampler\" target=\"rear_bearings2_L/translate.X\"/>\r\n      <channel source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateY_rear_bearings2_L-sampler\" target=\"rear_bearings2_L/translate.Y\"/>\r\n      <channel source=\"#rear_bearings2_L.translate_rear_bearings2_L_rear_bearings2_L.translateZ_rear_bearings2_L-sampler\" target=\"rear_bearings2_L/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rear_Spacer_L.translate_rear_Spacer_L\">\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-input\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-input\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-input-array\" count=\"2\">3.75 4.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-output\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-output\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-output-array\" count=\"2\">-78.75606 -28.05702 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-interpolation\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-interpolation\">\r\n        <Name_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-intangent\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-intangent\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-intangent-array\" count=\"4\">3.416667 -111.3258 4.416666 -28.05702 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-outtangent\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-outtangent\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-outtangent-array\" count=\"4\">4.083333 -47.23866 5.083333 -28.05702 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-input\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-input\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-output\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-output\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-interpolation\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-interpolation\">\r\n        <Name_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-intangent\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-intangent\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-outtangent\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-outtangent\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-input\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-input\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-output\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-output\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-interpolation\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-interpolation\">\r\n        <Name_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-intangent\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-intangent\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-outtangent\" name=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-outtangent\">\r\n        <float_array id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateX_rear_Spacer_L-sampler\" target=\"rear_Spacer_L/translate.X\"/>\r\n      <channel source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateY_rear_Spacer_L-sampler\" target=\"rear_Spacer_L/translate.Y\"/>\r\n      <channel source=\"#rear_Spacer_L.translate_rear_Spacer_L_rear_Spacer_L.translateZ_rear_Spacer_L-sampler\" target=\"rear_Spacer_L/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rear_bearings1_L.translate_rear_bearings1_L\">\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-input\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-input\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-input-array\" count=\"2\">4 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-output\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-output\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-output-array\" count=\"2\">-80.52404 -29.825 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-interpolation\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-interpolation\">\r\n        <Name_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-intangent\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-intangent\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-intangent-array\" count=\"4\">3.666667 -109.7371 4.666666 -29.825 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-outtangent\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-outtangent\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-outtangent-array\" count=\"4\">4.333333 -51.80743 5.333333 -29.825 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-input\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-input\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-output\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-output\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-interpolation\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-interpolation\">\r\n        <Name_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-intangent\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-intangent\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-outtangent\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-outtangent\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-input\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-input\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-output\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-output\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-interpolation\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-interpolation\">\r\n        <Name_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-intangent\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-intangent\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-outtangent\" name=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-outtangent\">\r\n        <float_array id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateX_rear_bearings1_L-sampler\" target=\"rear_bearings1_L/translate.X\"/>\r\n      <channel source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateY_rear_bearings1_L-sampler\" target=\"rear_bearings1_L/translate.Y\"/>\r\n      <channel source=\"#rear_bearings1_L.translate_rear_bearings1_L_rear_bearings1_L.translateZ_rear_bearings1_L-sampler\" target=\"rear_bearings1_L/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rearLockRingL_G.translate_rearLockRingL_G\">\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-input\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-input\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-input-array\" count=\"4\">4.25 5.25 5.416666 6.166666 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-output\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-output\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-output-array\" count=\"4\">-53.12137 -3.020346 -3.020346 -2.422331 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-interpolation\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-interpolation\">\r\n        <Name_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-interpolation-array\" count=\"4\">BEZIER LINEAR LINEAR LINEAR </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-intangent\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-intangent\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-intangent-array\" count=\"8\">3.916667 -82.28838 5.2499 -3.020346 5.416566 -3.020346 6.166566 -2.422331 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-outtangent\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-outtangent\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-outtangent-array\" count=\"8\">4.583333 -25.05091 5.2501 -3.020346 5.416767 -3.020346 6.166767 -2.422331 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-input\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-input\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-input-array\" count=\"1\">0.04166662 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-output\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-output\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-interpolation\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-interpolation\">\r\n        <Name_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-intangent\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-intangent\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-intangent-array\" count=\"2\">-0.2916667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-outtangent\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-outtangent\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-outtangent-array\" count=\"2\">0.375 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-input\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-input\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-input-array\" count=\"1\">0.04166662 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-output\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-output\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-interpolation\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-interpolation\">\r\n        <Name_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-intangent\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-intangent\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-intangent-array\" count=\"2\">-0.2916667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-outtangent\" name=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-outtangent\">\r\n        <float_array id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-outtangent-array\" count=\"2\">0.375 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateX_rearLockRingL_G-sampler\" target=\"rearLockRingL_G/translate.X\"/>\r\n      <channel source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateY_rearLockRingL_G-sampler\" target=\"rearLockRingL_G/translate.Y\"/>\r\n      <channel source=\"#rearLockRingL_G.translate_rearLockRingL_G_rearLockRingL_G.translateZ_rearLockRingL_G-sampler\" target=\"rearLockRingL_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L\">\r\n      <source id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-input\" name=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-input\">\r\n        <float_array id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-input-array\" count=\"2\">5.416666 6.166666 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-output\" name=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-output\">\r\n        <float_array id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-output-array\" count=\"2\">0 360 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-interpolation\" name=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-interpolation\">\r\n        <Name_array id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-intangent\" name=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-intangent\">\r\n        <float_array id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-intangent-array\" count=\"4\">5.083333 -160 5.916666 240 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-outtangent\" name=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-outtangent\">\r\n        <float_array id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-outtangent-array\" count=\"4\">5.666666 120 6.5 520 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L_rearLockRing_nubs_L.rotateX_rearLockRing_nubs_L-sampler\" target=\"rearLockRing_nubs_L/rotateX.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"frontLockRingL_G.translate_frontLockRingL_G\">\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-input\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-input\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-input-array\" count=\"4\">0.75 1.75 1.916667 2.666667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-output\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-output\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-output-array\" count=\"4\">-52.17688 -2.475948 -2.475948 -1.468401 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-interpolation\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-interpolation\">\r\n        <Name_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-interpolation-array\" count=\"4\">BEZIER LINEAR LINEAR LINEAR </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-intangent\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-intangent\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-intangent-array\" count=\"8\">0.4166666 -56.31437 1.7499 -2.475948 1.916567 -2.475948 2.666567 -1.468401 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-outtangent\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-outtangent\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-outtangent-array\" count=\"8\">1.083333 -24.49711 1.7501 -2.475948 1.916767 -2.475948 2.666767 -1.468401 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-input\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-input\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-input-array\" count=\"3\">0.04166662 0.75 1.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-output\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-output\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-output-array\" count=\"3\">0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-interpolation\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-interpolation\">\r\n        <Name_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-intangent\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-intangent\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-intangent-array\" count=\"6\">-0.2916667 0 0.5138889 0 1.416667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-outtangent\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-outtangent\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-outtangent-array\" count=\"6\">0.2777777 0 1.083333 0 2.083333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-input\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-input\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-input-array\" count=\"3\">0.04166662 0.75 1.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-output\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-output\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-output-array\" count=\"3\">0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-interpolation\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-interpolation\">\r\n        <Name_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-intangent\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-intangent\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-intangent-array\" count=\"6\">-0.2916667 0 0.5138889 0 1.416667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-outtangent\" name=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-outtangent\">\r\n        <float_array id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-outtangent-array\" count=\"6\">0.2777777 0 1.083333 0 2.083333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateX_frontLockRingL_G-sampler\" target=\"frontLockRingL_G/translate.X\"/>\r\n      <channel source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateY_frontLockRingL_G-sampler\" target=\"frontLockRingL_G/translate.Y\"/>\r\n      <channel source=\"#frontLockRingL_G.translate_frontLockRingL_G_frontLockRingL_G.translateZ_frontLockRingL_G-sampler\" target=\"frontLockRingL_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L\">\r\n      <source id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-input\" name=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-input\">\r\n        <float_array id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-input-array\" count=\"2\">1.916667 2.666667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-output\" name=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-output\">\r\n        <float_array id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-output-array\" count=\"2\">0 360 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-interpolation\" name=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-interpolation\">\r\n        <Name_array id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-intangent\" name=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-intangent\">\r\n        <float_array id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-intangent-array\" count=\"4\">1.583333 -160 2.416667 240 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-outtangent\" name=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-outtangent\">\r\n        <float_array id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-outtangent-array\" count=\"4\">2.166667 120 3 520 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L_frontLockRing_Nubs_L.rotateX_frontLockRing_Nubs_L-sampler\" target=\"frontLockRing_Nubs_L/rotateX.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"camGearUpper_G.translate_camGearUpper_G\">\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-input\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-input\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-input-array\" count=\"1\">12.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-output\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-output\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-interpolation\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-interpolation\">\r\n        <Name_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-intangent\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-intangent\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-intangent-array\" count=\"2\">11.75 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-outtangent\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-outtangent\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-outtangent-array\" count=\"2\">12.41667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-input\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-input\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-input-array\" count=\"1\">12.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-output\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-output\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-output-array\" count=\"1\">23.73216 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-interpolation\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-interpolation\">\r\n        <Name_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-intangent\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-intangent\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-intangent-array\" count=\"2\">11.75 23.73216 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-outtangent\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-outtangent\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-outtangent-array\" count=\"2\">12.41667 23.73216 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-input\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-input\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-input-array\" count=\"2\">10.83333 12.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-output\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-output\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-output-array\" count=\"2\">-70.02757 -4.529376 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-interpolation\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-interpolation\">\r\n        <Name_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-intangent\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-intangent\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-intangent-array\" count=\"4\">10.5 -92.91908 11.66667 -4.529376 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-outtangent\" name=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-outtangent\">\r\n        <float_array id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-outtangent-array\" count=\"4\">11.25 -41.766 12.41667 -4.529376 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateX_camGearUpper_G-sampler\" target=\"camGearUpper_G/translate.X\"/>\r\n      <channel source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateY_camGearUpper_G-sampler\" target=\"camGearUpper_G/translate.Y\"/>\r\n      <channel source=\"#camGearUpper_G.translate_camGearUpper_G_camGearUpper_G.translateZ_camGearUpper_G-sampler\" target=\"camGearUpper_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearCover.translate_gearCover\">\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-input\" name=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-input\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-input-array\" count=\"1\">14.83333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-output\" name=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-output\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-output-array\" count=\"1\">0.6377128 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-interpolation\" name=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-interpolation\">\r\n        <Name_array id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-intangent\" name=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-intangent\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-intangent-array\" count=\"2\">14.5 0.6377128 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-outtangent\" name=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-outtangent\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-outtangent-array\" count=\"2\">15.16667 0.6377128 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-input\" name=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-input\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-input-array\" count=\"1\">14.83333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-output\" name=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-output\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-output-array\" count=\"1\">18.54812 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-interpolation\" name=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-interpolation\">\r\n        <Name_array id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-intangent\" name=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-intangent\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-intangent-array\" count=\"2\">14.5 18.54812 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-outtangent\" name=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-outtangent\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-outtangent-array\" count=\"2\">15.16667 18.54812 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-input\" name=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-input\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-input-array\" count=\"3\">14.83333 15.66667 16.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-output\" name=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-output\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-output-array\" count=\"3\">-71.87237 -11.69561 -5.99491 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-interpolation\" name=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-interpolation\">\r\n        <Name_array id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-intangent\" name=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-intangent\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-intangent-array\" count=\"6\">14.5 -108.2762 15.38889 -20.03878 15.94444 -5.99491 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-outtangent\" name=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-outtangent\">\r\n        <float_array id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-outtangent-array\" count=\"6\">15.11111 -42.38599 15.80556 -7.524022 16.41667 -5.99491 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearCover.translate_gearCover_gearCover.translateX_gearCover-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"gearCover.translate_gearCover_gearCover.translateY_gearCover-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"gearCover.translate_gearCover_gearCover.translateZ_gearCover-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearCover.translate_gearCover_gearCover.translateX_gearCover-sampler\" target=\"gearCover/translate.X\"/>\r\n      <channel source=\"#gearCover.translate_gearCover_gearCover.translateY_gearCover-sampler\" target=\"gearCover/translate.Y\"/>\r\n      <channel source=\"#gearCover.translate_gearCover_gearCover.translateZ_gearCover-sampler\" target=\"gearCover/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"pistonCover.translate_pistonCover\">\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-input\" name=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-input\">\r\n        <float_array id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-input-array\" count=\"3\">38.5 38.66667 39.16667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-output\" name=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-output\">\r\n        <float_array id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-output-array\" count=\"3\">0.01037895 0 -18.6701 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-interpolation\" name=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-interpolation\">\r\n        <Name_array id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-intangent\" name=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-intangent\">\r\n        <float_array id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-intangent-array\" count=\"6\">38.16667 0.01037895 38.61111 0 39 -12.44673 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-outtangent\" name=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-outtangent\">\r\n        <float_array id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-outtangent-array\" count=\"6\">38.55556 0.01037895 38.83333 0 39.5 -31.11683 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-input\" name=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-input\">\r\n        <float_array id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-input-array\" count=\"5\">27 27.83333 28.25 38.5 39.16667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-input-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-output\" name=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-output\">\r\n        <float_array id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-output-array\" count=\"5\">120 48.53841 40.79444 40.79444 100.3135 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-output-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-interpolation\" name=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-interpolation\">\r\n        <Name_array id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-interpolation-array\" count=\"5\">BEZIER BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-interpolation-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-intangent\" name=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-intangent\">\r\n        <float_array id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-intangent-array\" count=\"10\">26.66667 153.7772 27.55556 61.10343 28.11111 40.79444 35.08333 40.79444 38.94445 80.47379 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-intangent-array\" count=\"5\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-outtangent\" name=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-outtangent\">\r\n        <float_array id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-outtangent-array\" count=\"10\">27.27778 92.92537 27.97222 42.2559 31.66667 40.79444 38.72222 40.79444 39.5 130.0729 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-outtangent-array\" count=\"5\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pistonCover.translate_pistonCover_pistonCover.translateX_pistonCover-sampler\" target=\"pistonCover/translate.X\"/>\r\n      <channel source=\"#pistonCover.translate_pistonCover_pistonCover.translateZ_pistonCover-sampler\" target=\"pistonCover/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"pistonLock2_G.translate_pistonLock2_G\">\r\n      <source id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-input\" name=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-input\">\r\n        <float_array id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-input-array\" count=\"4\">20.5 21.5 21.66667 22.41667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-output\" name=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-output\">\r\n        <float_array id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-output-array\" count=\"4\">48.68805 16.01185 16.01185 14.91463 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-interpolation\" name=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-interpolation\">\r\n        <Name_array id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-interpolation-array\" count=\"4\">BEZIER BEZIER LINEAR LINEAR </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-intangent\" name=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-intangent\">\r\n        <float_array id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-intangent-array\" count=\"8\">20.16667 67.01197 21.16667 16.01185 21.66657 16.01185 22.41657 14.91463 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-outtangent\" name=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-outtangent\">\r\n        <float_array id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-outtangent-array\" count=\"8\">20.83333 31.3628 21.55556 16.01185 21.66677 16.01185 22.41677 14.91463 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pistonLock2_G.translate_pistonLock2_G_pistonLock2_G.translateZ_pistonLock2_G-sampler\" target=\"pistonLock2_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"pl2_slot.rotateZ_pl2_slot\">\r\n      <source id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-input\" name=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-input\">\r\n        <float_array id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-input-array\" count=\"6\">21.66667 22.41667 35.83333 37.16667 39.16667 47.16667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-input-array\" count=\"6\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-output\" name=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-output\">\r\n        <float_array id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-output-array\" count=\"6\">0 -540 -540 -630 -720 -1080 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-output-array\" count=\"6\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-interpolation\" name=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-interpolation\">\r\n        <Name_array id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-interpolation-array\" count=\"6\">BEZIER BEZIER LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-interpolation-array\" count=\"6\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-intangent\" name=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-intangent\">\r\n        <float_array id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-intangent-array\" count=\"12\">21.33333 240 22.16667 -540 35.83323 -540 36.72222 -609.7548 38.5 -690 44.5 -960 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-intangent-array\" count=\"6\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-outtangent\" name=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-outtangent\">\r\n        <float_array id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-outtangent-array\" count=\"12\">21.91667 -180 26.88889 -540 35.83343 -540 37.83333 -660.3677 41.83333 -840 47.5 -1095 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-outtangent-array\" count=\"6\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pl2_slot.rotateZ_pl2_slot_pl2_slot.rotateZ_pl2_slot-sampler\" target=\"pl2_slot/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"pistonLock1_G.translate_pistonLock1_G\">\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-input\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-input\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-input-array\" count=\"1\">22.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-output\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-output\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-output-array\" count=\"1\">5.155222 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-interpolation\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-interpolation\">\r\n        <Name_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-intangent\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-intangent\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-intangent-array\" count=\"2\">21.75 5.155222 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-outtangent\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-outtangent\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-outtangent-array\" count=\"2\">22.41667 5.155222 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-input\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-input\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-input-array\" count=\"1\">22.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-output\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-output\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-output-array\" count=\"1\">33.69461 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-interpolation\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-interpolation\">\r\n        <Name_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-intangent\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-intangent\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-intangent-array\" count=\"2\">21.75 33.69461 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-outtangent\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-outtangent\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-outtangent-array\" count=\"2\">22.41667 33.69461 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-input\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-input\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-input-array\" count=\"4\">20.16667 21.16667 21.33333 22.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-output\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-output\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-output-array\" count=\"4\">48.68805 16.01185 16.01185 14.91463 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-interpolation\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-interpolation\">\r\n        <Name_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-interpolation-array\" count=\"4\">BEZIER BEZIER LINEAR LINEAR </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-intangent\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-intangent\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-intangent-array\" count=\"8\">19.83333 67.01197 20.83333 16.01185 21.33324 16.01185 22.08324 14.91463 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-outtangent\" name=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-outtangent\">\r\n        <float_array id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-outtangent-array\" count=\"8\">20.5 31.3628 21.22222 16.01185 21.33343 16.01185 22.08343 14.91463 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateX_pistonLock1_G-sampler\" target=\"pistonLock1_G/translate.X\"/>\r\n      <channel source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateY_pistonLock1_G-sampler\" target=\"pistonLock1_G/translate.Y\"/>\r\n      <channel source=\"#pistonLock1_G.translate_pistonLock1_G_pistonLock1_G.translateZ_pistonLock1_G-sampler\" target=\"pistonLock1_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"pl1_slot.rotateZ_pl1_slot\">\r\n      <source id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-input\" name=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-input\">\r\n        <float_array id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-input-array\" count=\"6\">21.33333 22.08333 35.83333 37.16667 39.16667 47.16667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-input-array\" count=\"6\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-output\" name=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-output\">\r\n        <float_array id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-output-array\" count=\"6\">0 -540 -540 -630 -540 -180 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-output-array\" count=\"6\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-interpolation\" name=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-interpolation\">\r\n        <Name_array id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-interpolation-array\" count=\"6\">BEZIER BEZIER BEZIER LINEAR BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-interpolation-array\" count=\"6\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-intangent\" name=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-intangent\">\r\n        <float_array id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-intangent-array\" count=\"12\">21 240 21.83333 -540 31.25 -540 37.16657 -630 38.5 -570 44.5 -300 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-intangent-array\" count=\"6\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-outtangent\" name=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-outtangent\">\r\n        <float_array id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-outtangent-array\" count=\"12\">21.58333 -180 26.66667 -540 36.27778 -540 37.16677 -630 41.83333 -420 47.5 -165 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-outtangent-array\" count=\"6\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pl1_slot.rotateZ_pl1_slot_pl1_slot.rotateZ_pl1_slot-sampler\" target=\"pl1_slot/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"camUpper_G.translate_camUpper_G\">\r\n      <source id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-input\" name=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-input\">\r\n        <float_array id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-input-array\" count=\"2\">6.833333 8.333333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-output\" name=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-output\">\r\n        <float_array id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-output-array\" count=\"2\">128.5859 39.41184 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-interpolation\" name=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-interpolation\">\r\n        <Name_array id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-intangent\" name=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-intangent\">\r\n        <float_array id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-intangent-array\" count=\"4\">6.5 134.5084 7.833333 39.41184 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-outtangent\" name=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-outtangent\">\r\n        <float_array id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-outtangent-array\" count=\"4\">7.333333 87.05806 8.666666 39.41184 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camUpper_G.translate_camUpper_G_camUpper_G.translateZ_camUpper_G-sampler\" target=\"camUpper_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"front_bearings2_u.translate_front_bearings2_u\">\r\n      <source id=\"front_bearings2_u.translate_front_bearings2_u_translate-input\" name=\"front_bearings2_u.translate_front_bearings2_u_translate-input\">\r\n        <float_array id=\"front_bearings2_u.translate_front_bearings2_u_translate-input-array\" count=\"2\">0.04166662 1 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_u.translate_front_bearings2_u_translate-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_bearings2_u.translate_front_bearings2_u_translate-output\" name=\"front_bearings2_u.translate_front_bearings2_u_translate-output\">\r\n        <float_array id=\"front_bearings2_u.translate_front_bearings2_u_translate-output-array\" count=\"6\">-64.70413 0 0 -14.00509 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_u.translate_front_bearings2_u_translate-output-array\" count=\"2\" stride=\"3\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings2_u.translate_front_bearings2_u_translate-interpolation\" name=\"front_bearings2_u.translate_front_bearings2_u_translate-interpolation\">\r\n        <Name_array id=\"front_bearings2_u.translate_front_bearings2_u_translate-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_u.translate_front_bearings2_u_translate-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings2_u.translate_front_bearings2_u_translate-intangent\" name=\"front_bearings2_u.translate_front_bearings2_u_translate-intangent\">\r\n        <float_array id=\"front_bearings2_u.translate_front_bearings2_u_translate-intangent-array\" count=\"12\">-0.2916667 -96.54015 -0.2916667 0 -0.2916667 0 0.6805556 -14.00509 0.6805556 0 0.6805556 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_u.translate_front_bearings2_u_translate-intangent-array\" count=\"2\" stride=\"6\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings2_u.translate_front_bearings2_u_translate-outtangent\" name=\"front_bearings2_u.translate_front_bearings2_u_translate-outtangent\">\r\n        <float_array id=\"front_bearings2_u.translate_front_bearings2_u_translate-outtangent-array\" count=\"12\">0.3611111 -36.07905 0.3611111 0 0.3611111 0 1.333333 -14.00509 1.333333 0 1.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings2_u.translate_front_bearings2_u_translate-outtangent-array\" count=\"2\" stride=\"6\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"front_bearings2_u.translate_front_bearings2_u_translate-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_bearings2_u.translate_front_bearings2_u_translate-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_bearings2_u.translate_front_bearings2_u_translate-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_bearings2_u.translate_front_bearings2_u_translate-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_bearings2_u.translate_front_bearings2_u_translate-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_bearings2_u.translate_front_bearings2_u_translate-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#front_bearings2_u.translate_front_bearings2_u_translate-sampler\" target=\"front_bearings2_u/translate\"/>\r\n    </animation>\r\n    <animation id=\"front_spacer_u.translate_front_spacer_u\">\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-input\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-input\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-input-array\" count=\"3\">0.25 1.25 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-output\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-output\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-output-array\" count=\"3\">-67.86933 -17.17028 -17.17028 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-interpolation\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-interpolation\">\r\n        <Name_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-intangent\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-intangent\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-intangent-array\" count=\"6\">-0.08333331 -106.5708 0.9166666 -17.17028 3.75 -17.17028 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-outtangent\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-outtangent\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-outtangent-array\" count=\"6\">0.5833334 -33.56666 2.5 -17.17028 5.333333 -17.17028 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-input\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-input\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-input-array\" count=\"4\">0.04166662 0.25 1.25 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-output\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-output\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-output-array\" count=\"4\">0 0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-interpolation\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-interpolation\">\r\n        <Name_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-intangent\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-intangent\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-intangent-array\" count=\"8\">-0.2916667 0 0.1805555 0 0.9166666 0 3.75 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-outtangent\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-outtangent\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-outtangent-array\" count=\"8\">0.1111111 0 0.5833334 0 2.5 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-input\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-input\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-input-array\" count=\"4\">0.04166662 0.25 1.25 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-output\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-output\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-output-array\" count=\"4\">0 0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-interpolation\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-interpolation\">\r\n        <Name_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-intangent\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-intangent\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-intangent-array\" count=\"8\">-0.2916667 0 0.1805555 0 0.9166666 0 3.75 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-outtangent\" name=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-outtangent\">\r\n        <float_array id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-outtangent-array\" count=\"8\">0.1111111 0 0.5833334 0 2.5 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateX_front_spacer_u-sampler\" target=\"front_spacer_u/translate.X\"/>\r\n      <channel source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateY_front_spacer_u-sampler\" target=\"front_spacer_u/translate.Y\"/>\r\n      <channel source=\"#front_spacer_u.translate_front_spacer_u_front_spacer_u.translateZ_front_spacer_u-sampler\" target=\"front_spacer_u/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"front_bearings1_u.translate_front_bearings1_u\">\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-input\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-input\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-input-array\" count=\"3\">0.5 1.5 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-output\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-output\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-output-array\" count=\"3\">-70.02041 -19.32136 -19.32136 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-interpolation\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-interpolation\">\r\n        <Name_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-intangent\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-intangent\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-intangent-array\" count=\"6\">0.1666666 -100.2956 1.166667 -19.32136 3.833333 -19.32136 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-outtangent\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-outtangent\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-outtangent-array\" count=\"6\">0.8333334 -39.13417 2.666666 -19.32136 5.333333 -19.32136 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-input\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-input\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-input-array\" count=\"4\">0.04166662 0.5 1.5 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-output\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-output\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-output-array\" count=\"4\">0 0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-interpolation\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-interpolation\">\r\n        <Name_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-intangent\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-intangent\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-intangent-array\" count=\"8\">-0.2916667 0 0.3472222 0 1.166667 0 3.833333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-outtangent\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-outtangent\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-outtangent-array\" count=\"8\">0.1944444 0 0.8333334 0 2.666666 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-input\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-input\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-input-array\" count=\"4\">0.04166662 0.5 1.5 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-output\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-output\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-output-array\" count=\"4\">0 0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-interpolation\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-interpolation\">\r\n        <Name_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-intangent\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-intangent\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-intangent-array\" count=\"8\">-0.2916667 0 0.3472222 0 1.166667 0 3.833333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-outtangent\" name=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-outtangent\">\r\n        <float_array id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-outtangent-array\" count=\"8\">0.1944444 0 0.8333334 0 2.666666 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateX_front_bearings1_u-sampler\" target=\"front_bearings1_u/translate.X\"/>\r\n      <channel source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateY_front_bearings1_u-sampler\" target=\"front_bearings1_u/translate.Y\"/>\r\n      <channel source=\"#front_bearings1_u.translate_front_bearings1_u_front_bearings1_u.translateZ_front_bearings1_u-sampler\" target=\"front_bearings1_u/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rear_bearings2_u.translate_rear_bearings2_u\">\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-input\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-input\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-input-array\" count=\"2\">2.666667 4.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-output\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-output\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-output-array\" count=\"2\">-75.85774 -25.1587 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-interpolation\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-interpolation\">\r\n        <Name_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-intangent\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-intangent\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-intangent-array\" count=\"4\">2.333333 -92.64692 3.888889 -25.1587 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-outtangent\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-outtangent\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-outtangent-array\" count=\"4\">3.277778 -45.44533 4.833333 -25.1587 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-input\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-input\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-output\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-output\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-interpolation\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-interpolation\">\r\n        <Name_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-intangent\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-intangent\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-outtangent\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-outtangent\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-input\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-input\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-output\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-output\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-interpolation\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-interpolation\">\r\n        <Name_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-intangent\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-intangent\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-outtangent\" name=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-outtangent\">\r\n        <float_array id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateX_rear_bearings2_u-sampler\" target=\"rear_bearings2_u/translate.X\"/>\r\n      <channel source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateY_rear_bearings2_u-sampler\" target=\"rear_bearings2_u/translate.Y\"/>\r\n      <channel source=\"#rear_bearings2_u.translate_rear_bearings2_u_rear_bearings2_u.translateZ_rear_bearings2_u-sampler\" target=\"rear_bearings2_u/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rear_Spacer_u.translate_rear_Spacer_u\">\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-input\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-input\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-input-array\" count=\"2\">3.75 4.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-output\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-output\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-output-array\" count=\"2\">-78.75606 -28.05702 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-interpolation\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-interpolation\">\r\n        <Name_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-intangent\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-intangent\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-intangent-array\" count=\"4\">3.416667 -111.3258 4.416666 -28.05702 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-outtangent\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-outtangent\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-outtangent-array\" count=\"4\">4.083333 -47.23866 5.083333 -28.05702 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-input\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-input\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-output\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-output\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-interpolation\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-interpolation\">\r\n        <Name_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-intangent\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-intangent\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-outtangent\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-outtangent\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-input\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-input\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-output\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-output\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-interpolation\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-interpolation\">\r\n        <Name_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-intangent\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-intangent\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-outtangent\" name=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-outtangent\">\r\n        <float_array id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateX_rear_Spacer_u-sampler\" target=\"rear_Spacer_u/translate.X\"/>\r\n      <channel source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateY_rear_Spacer_u-sampler\" target=\"rear_Spacer_u/translate.Y\"/>\r\n      <channel source=\"#rear_Spacer_u.translate_rear_Spacer_u_rear_Spacer_u.translateZ_rear_Spacer_u-sampler\" target=\"rear_Spacer_u/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rear_bearings1_u.translate_rear_bearings1_u\">\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-input\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-input\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-input-array\" count=\"2\">4 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-output\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-output\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-output-array\" count=\"2\">-80.52404 -29.825 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-interpolation\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-interpolation\">\r\n        <Name_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-intangent\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-intangent\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-intangent-array\" count=\"4\">3.666667 -109.7371 4.666666 -29.825 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-outtangent\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-outtangent\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-outtangent-array\" count=\"4\">4.333333 -51.80743 5.333333 -29.825 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-input\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-input\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-output\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-output\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-interpolation\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-interpolation\">\r\n        <Name_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-intangent\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-intangent\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-outtangent\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-outtangent\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-input\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-input\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-input-array\" count=\"2\">0.04166662 5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-output\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-output\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-output-array\" count=\"2\">0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-interpolation\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-interpolation\">\r\n        <Name_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-intangent\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-intangent\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-intangent-array\" count=\"4\">-0.2916667 0 3.347222 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-outtangent\" name=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-outtangent\">\r\n        <float_array id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-outtangent-array\" count=\"4\">1.694444 0 5.333333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateX_rear_bearings1_u-sampler\" target=\"rear_bearings1_u/translate.X\"/>\r\n      <channel source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateY_rear_bearings1_u-sampler\" target=\"rear_bearings1_u/translate.Y\"/>\r\n      <channel source=\"#rear_bearings1_u.translate_rear_bearings1_u_rear_bearings1_u.translateZ_rear_bearings1_u-sampler\" target=\"rear_bearings1_u/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rearLockRingU_G.translate_rearLockRingU_G\">\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-input\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-input\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-input-array\" count=\"4\">4.25 5.25 5.416666 6.166666 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-output\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-output\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-output-array\" count=\"4\">-53.12137 -3.020346 -3.020346 -2.422331 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-interpolation\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-interpolation\">\r\n        <Name_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-interpolation-array\" count=\"4\">BEZIER LINEAR LINEAR LINEAR </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-intangent\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-intangent\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-intangent-array\" count=\"8\">3.916667 -82.28838 5.2499 -3.020346 5.416566 -3.020346 6.166566 -2.422331 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-outtangent\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-outtangent\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-outtangent-array\" count=\"8\">4.583333 -25.05091 5.2501 -3.020346 5.416767 -3.020346 6.166767 -2.422331 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-input\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-input\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-input-array\" count=\"1\">0.04166662 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-output\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-output\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-interpolation\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-interpolation\">\r\n        <Name_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-intangent\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-intangent\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-intangent-array\" count=\"2\">-0.2916667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-outtangent\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-outtangent\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-outtangent-array\" count=\"2\">0.375 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-input\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-input\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-input-array\" count=\"1\">0.04166662 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-output\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-output\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-interpolation\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-interpolation\">\r\n        <Name_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-intangent\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-intangent\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-intangent-array\" count=\"2\">-0.2916667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-outtangent\" name=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-outtangent\">\r\n        <float_array id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-outtangent-array\" count=\"2\">0.375 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateX_rearLockRingU_G-sampler\" target=\"rearLockRingU_G/translate.X\"/>\r\n      <channel source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateY_rearLockRingU_G-sampler\" target=\"rearLockRingU_G/translate.Y\"/>\r\n      <channel source=\"#rearLockRingU_G.translate_rearLockRingU_G_rearLockRingU_G.translateZ_rearLockRingU_G-sampler\" target=\"rearLockRingU_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u\">\r\n      <source id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-input\" name=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-input\">\r\n        <float_array id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-input-array\" count=\"2\">5.416666 6.166666 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-output\" name=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-output\">\r\n        <float_array id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-output-array\" count=\"2\">0 360 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-interpolation\" name=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-interpolation\">\r\n        <Name_array id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-intangent\" name=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-intangent\">\r\n        <float_array id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-intangent-array\" count=\"4\">5.083333 -160 5.916666 240 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-outtangent\" name=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-outtangent\">\r\n        <float_array id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-outtangent-array\" count=\"4\">5.666666 120 6.5 520 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u_rearLockRing_nubs_u.rotateX_rearLockRing_nubs_u-sampler\" target=\"rearLockRing_nubs_u/rotateX.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"frontLockRingU_G.translate_frontLockRingU_G\">\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-input\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-input\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-input-array\" count=\"4\">0.75 1.75 1.916667 2.666667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-output\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-output\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-output-array\" count=\"4\">-52.13294 -2.432005 -2.432005 -1.424458 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-interpolation\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-interpolation\">\r\n        <Name_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-interpolation-array\" count=\"4\">BEZIER LINEAR LINEAR LINEAR </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-intangent\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-intangent\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-intangent-array\" count=\"8\">0.4166666 -56.27043 1.7499 -2.432005 1.916567 -2.432005 2.666567 -1.424458 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-outtangent\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-outtangent\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-outtangent-array\" count=\"8\">1.083333 -24.45317 1.7501 -2.432005 1.916767 -2.432005 2.666767 -1.424458 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-input\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-input\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-input-array\" count=\"3\">0.04166662 0.75 1.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-output\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-output\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-output-array\" count=\"3\">0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-interpolation\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-interpolation\">\r\n        <Name_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-intangent\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-intangent\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-intangent-array\" count=\"6\">-0.2916667 0 0.5138889 0 1.416667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-outtangent\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-outtangent\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-outtangent-array\" count=\"6\">0.2777777 0 1.083333 0 2.083333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-input\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-input\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-input-array\" count=\"3\">0.04166662 0.75 1.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-output\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-output\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-output-array\" count=\"3\">0 0 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-interpolation\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-interpolation\">\r\n        <Name_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-intangent\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-intangent\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-intangent-array\" count=\"6\">-0.2916667 0 0.5138889 0 1.416667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-outtangent\" name=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-outtangent\">\r\n        <float_array id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-outtangent-array\" count=\"6\">0.2777777 0 1.083333 0 2.083333 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateX_frontLockRingU_G-sampler\" target=\"frontLockRingU_G/translate.X\"/>\r\n      <channel source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateY_frontLockRingU_G-sampler\" target=\"frontLockRingU_G/translate.Y\"/>\r\n      <channel source=\"#frontLockRingU_G.translate_frontLockRingU_G_frontLockRingU_G.translateZ_frontLockRingU_G-sampler\" target=\"frontLockRingU_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u\">\r\n      <source id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-input\" name=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-input\">\r\n        <float_array id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-input-array\" count=\"2\">1.916667 2.666667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-output\" name=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-output\">\r\n        <float_array id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-output-array\" count=\"2\">0 360 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-interpolation\" name=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-interpolation\">\r\n        <Name_array id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-intangent\" name=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-intangent\">\r\n        <float_array id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-intangent-array\" count=\"4\">1.583333 -160 2.416667 240 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-outtangent\" name=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-outtangent\">\r\n        <float_array id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-outtangent-array\" count=\"4\">2.166667 120 3 520 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u_frontLockRing_Nubs_u.rotateX_frontLockRing_Nubs_u-sampler\" target=\"frontLockRing_Nubs_u/rotateX.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"pistonHousing_G.translate_pistonHousing_G\">\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-input\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-input\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-input-array\" count=\"1\">18.33333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-output\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-output\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-output-array\" count=\"1\">-22.29159 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-interpolation\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-interpolation\">\r\n        <Name_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-intangent\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-intangent\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-intangent-array\" count=\"2\">18 -22.29159 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-outtangent\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-outtangent\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-outtangent-array\" count=\"2\">18.66667 -22.29159 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-input\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-input\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-input-array\" count=\"1\">18.33333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-output\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-output\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-output-array\" count=\"1\">-3.280817 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-interpolation\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-interpolation\">\r\n        <Name_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-intangent\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-intangent\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-intangent-array\" count=\"2\">18 -3.280817 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-outtangent\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-outtangent\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-outtangent-array\" count=\"2\">18.66667 -3.280817 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-input\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-input\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-input-array\" count=\"2\">17.5 18.33333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-output\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-output\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-output-array\" count=\"2\">35.75105 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-interpolation\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-interpolation\">\r\n        <Name_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-intangent\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-intangent\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-intangent-array\" count=\"4\">17.16667 53.09326 18.05556 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-outtangent\" name=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-outtangent\">\r\n        <float_array id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-outtangent-array\" count=\"4\">17.77778 21.78995 18.66667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateX_pistonHousing_G-sampler\" target=\"pistonHousing_G/translate.X\"/>\r\n      <channel source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateY_pistonHousing_G-sampler\" target=\"pistonHousing_G/translate.Y\"/>\r\n      <channel source=\"#pistonHousing_G.translate_pistonHousing_G_pistonHousing_G.translateZ_pistonHousing_G-sampler\" target=\"pistonHousing_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"pistonHousing_G.rotateZ_pistonHousing_G\">\r\n      <source id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-input\" name=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-input\">\r\n        <float_array id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-input-array\" count=\"1\">18.33333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-output\" name=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-output\">\r\n        <float_array id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-interpolation\" name=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-interpolation\">\r\n        <Name_array id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-intangent\" name=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-intangent\">\r\n        <float_array id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-intangent-array\" count=\"2\">18 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-outtangent\" name=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-outtangent\">\r\n        <float_array id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-outtangent-array\" count=\"2\">18.66667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pistonHousing_G.rotateZ_pistonHousing_G_pistonHousing_G.rotateZ_pistonHousing_G-sampler\" target=\"pistonHousing_G/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"pistonHousing_G.rotateY_pistonHousing_G\">\r\n      <source id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-input\" name=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-input\">\r\n        <float_array id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-input-array\" count=\"1\">18.33333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-output\" name=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-output\">\r\n        <float_array id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-interpolation\" name=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-interpolation\">\r\n        <Name_array id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-intangent\" name=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-intangent\">\r\n        <float_array id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-intangent-array\" count=\"2\">18 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-outtangent\" name=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-outtangent\">\r\n        <float_array id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-outtangent-array\" count=\"2\">18.66667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pistonHousing_G.rotateY_pistonHousing_G_pistonHousing_G.rotateY_pistonHousing_G-sampler\" target=\"pistonHousing_G/rotateY.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"pistonHousing_G.rotateX_pistonHousing_G\">\r\n      <source id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-input\" name=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-input\">\r\n        <float_array id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-input-array\" count=\"1\">18.33333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-input-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-output\" name=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-output\">\r\n        <float_array id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-output-array\" count=\"1\">0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-output-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-interpolation\" name=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-interpolation\">\r\n        <Name_array id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-interpolation-array\" count=\"1\">BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-interpolation-array\" count=\"1\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-intangent\" name=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-intangent\">\r\n        <float_array id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-intangent-array\" count=\"2\">18 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-intangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-outtangent\" name=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-outtangent\">\r\n        <float_array id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-outtangent-array\" count=\"2\">18.66667 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-outtangent-array\" count=\"1\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#pistonHousing_G.rotateX_pistonHousing_G_pistonHousing_G.rotateX_pistonHousing_G-sampler\" target=\"pistonHousing_G/rotateX.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"camCover1.translate_camCover1\">\r\n      <source id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-input\" name=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-input\">\r\n        <float_array id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-input-array\" count=\"2\">8.041667 9.291667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-output\" name=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-output\">\r\n        <float_array id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-output-array\" count=\"2\">120 23.73448 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-interpolation\" name=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-interpolation\">\r\n        <Name_array id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-intangent\" name=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-intangent\">\r\n        <float_array id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-intangent-array\" count=\"4\">7.708333 157.575 8.875 23.73448 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-outtangent\" name=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-outtangent\">\r\n        <float_array id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-outtangent-array\" count=\"4\">8.458334 75.01918 9.625 23.73448 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camCover1.translate_camCover1_camCover1.translateZ_camCover1-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camCover1.translate_camCover1_camCover1.translateZ_camCover1-sampler\" target=\"camCover1/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"camCover2.translate_camCover2\">\r\n      <source id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-input\" name=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-input\">\r\n        <float_array id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-input-array\" count=\"2\">8.333333 9.583333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-output\" name=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-output\">\r\n        <float_array id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-output-array\" count=\"2\">120 23.73448 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-interpolation\" name=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-interpolation\">\r\n        <Name_array id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-intangent\" name=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-intangent\">\r\n        <float_array id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-intangent-array\" count=\"4\">8 155.8491 9.166666 23.73448 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-outtangent\" name=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-outtangent\">\r\n        <float_array id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-outtangent-array\" count=\"4\">8.75 77.06287 9.916666 23.73448 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camCover2.translate_camCover2_camCover2.translateZ_camCover2-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camCover2.translate_camCover2_camCover2.translateZ_camCover2-sampler\" target=\"camCover2/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01\">\r\n      <source id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-input\" name=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-input-array\" count=\"7\">27.41667 28.66667 28.83333 29.58333 37.5 38.25 38.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-input-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-output\" name=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-output-array\" count=\"7\">41.45787 -34.98996 -34.98996 -35.90015 -35.90015 -35 35.98176 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-output-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-interpolation\" name=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-interpolation-array\" count=\"7\">BEZIER BEZIER LINEAR LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-interpolation-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-intangent\" name=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-intangent-array\" count=\"14\">27.08333 71.17363 28.25 -34.98996 28.83324 -34.98996 29.58324 -35.90015 34.86111 -35.90015 38 -35.55495 38.58333 12.32118 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-intangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-outtangent\" name=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-outtangent-array\" count=\"14\">27.83333 4.313156 28.72222 -34.98996 28.83343 -34.98996 29.58343 -35.90015 37.75 -35.90015 38.41667 -34.63003 39.08333 83.30294 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-outtangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_01.translate_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.translateZ_nutsAndBolts_cappedNut_01-sampler\" target=\"nutsAndBolts_cappedNut_01/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01\">\r\n      <source id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-input\" name=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-input-array\" count=\"4\">28.83333 29.58333 37.5 38.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-output\" name=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-output-array\" count=\"4\">0 -480 -480 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-interpolation\" name=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-intangent\" name=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-intangent-array\" count=\"8\">28.5 213.3333 29.33333 -480 34.86111 -480 38 -160 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-outtangent\" name=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-outtangent-array\" count=\"8\">29.08333 -160 32.22222 -480 37.75 -480 38.58333 213.3333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01_nutsAndBolts_cappedNut_01.rotateZ_nutsAndBolts_cappedNut_01-sampler\" target=\"nutsAndBolts_cappedNut_01/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02\">\r\n      <source id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-input\" name=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-input-array\" count=\"7\">27.58333 28.83333 29 29.75 37.5 38.25 38.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-input-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-output\" name=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-output-array\" count=\"7\">41.45787 -34.98996 -34.98996 -35.90015 -35.90015 -35 35.98176 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-output-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-interpolation\" name=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-interpolation-array\" count=\"7\">BEZIER BEZIER LINEAR LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-interpolation-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-intangent\" name=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-intangent-array\" count=\"14\">27.25 71.17363 28.41667 -34.98996 28.9999 -34.98996 29.7499 -35.90015 34.91667 -35.90015 38 -35.55495 38.58333 12.32118 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-intangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-outtangent\" name=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-outtangent-array\" count=\"14\">28 4.313156 28.88889 -34.98996 29.0001 -34.98996 29.7501 -35.90015 37.75 -35.90015 38.41667 -34.63003 39.08333 83.30294 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-outtangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_02.translate_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.translateZ_nutsAndBolts_cappedNut_02-sampler\" target=\"nutsAndBolts_cappedNut_02/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02\">\r\n      <source id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-input\" name=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-input-array\" count=\"4\">29 29.75 37.5 38.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-output\" name=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-output-array\" count=\"4\">0 -480 -480 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-interpolation\" name=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-intangent\" name=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-intangent-array\" count=\"8\">28.66667 213.3333 29.5 -480 34.91667 -480 38 -160 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-outtangent\" name=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-outtangent-array\" count=\"8\">29.25 -160 32.33333 -480 37.75 -480 38.58333 213.3333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02_nutsAndBolts_cappedNut_02.rotateZ_nutsAndBolts_cappedNut_02-sampler\" target=\"nutsAndBolts_cappedNut_02/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03\">\r\n      <source id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-input\" name=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-input-array\" count=\"7\">27.75 29 29.16667 29.91667 37.5 38.25 38.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-input-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-output\" name=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-output-array\" count=\"7\">41.45787 -34.98996 -34.98996 -35.90015 -35.90015 -35 35.98176 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-output-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-interpolation\" name=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-interpolation-array\" count=\"7\">BEZIER BEZIER LINEAR LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-interpolation-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-intangent\" name=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-intangent-array\" count=\"14\">27.41667 71.17363 28.58333 -34.98996 29.16657 -34.98996 29.91657 -35.90015 34.97222 -35.90015 38 -35.55495 38.58333 12.32118 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-intangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-outtangent\" name=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-outtangent-array\" count=\"14\">28.16667 4.313156 29.05556 -34.98996 29.16677 -34.98996 29.91677 -35.90015 37.75 -35.90015 38.41667 -34.63003 39.08333 83.30294 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-outtangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_03.translate_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.translateZ_nutsAndBolts_cappedNut_03-sampler\" target=\"nutsAndBolts_cappedNut_03/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03\">\r\n      <source id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-input\" name=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-input-array\" count=\"4\">29.16667 29.91667 37.5 38.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-output\" name=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-output-array\" count=\"4\">0 -480 -480 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-interpolation\" name=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-intangent\" name=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-intangent-array\" count=\"8\">28.83333 213.3333 29.66667 -480 34.97222 -480 38 -160 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-outtangent\" name=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-outtangent-array\" count=\"8\">29.41667 -160 32.44444 -480 37.75 -480 38.58333 213.3333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03_nutsAndBolts_cappedNut_03.rotateZ_nutsAndBolts_cappedNut_03-sampler\" target=\"nutsAndBolts_cappedNut_03/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04\">\r\n      <source id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-input\" name=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-input-array\" count=\"7\">27.91667 29.16667 29.33333 30.08333 37.5 38.25 38.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-input-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-output\" name=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-output-array\" count=\"7\">41.45787 -34.98996 -34.98996 -35.90015 -35.90015 -35 35.98176 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-output-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-interpolation\" name=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-interpolation-array\" count=\"7\">BEZIER BEZIER LINEAR LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-interpolation-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-intangent\" name=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-intangent-array\" count=\"14\">27.58333 71.17363 28.75 -34.98996 29.33324 -34.98996 30.08324 -35.90015 35.02778 -35.90015 38 -35.55495 38.58333 12.32118 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-intangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-outtangent\" name=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-outtangent-array\" count=\"14\">28.33333 4.313156 29.22222 -34.98996 29.33343 -34.98996 30.08343 -35.90015 37.75 -35.90015 38.41667 -34.63003 39.08333 83.30294 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-outtangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_04.translate_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.translateZ_nutsAndBolts_cappedNut_04-sampler\" target=\"nutsAndBolts_cappedNut_04/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04\">\r\n      <source id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-input\" name=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-input-array\" count=\"4\">29.33333 30.08333 37.5 38.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-output\" name=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-output-array\" count=\"4\">0 -480 -480 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-interpolation\" name=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-intangent\" name=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-intangent-array\" count=\"8\">29 213.3333 29.83333 -480 35.02778 -480 38 -160 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-outtangent\" name=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-outtangent-array\" count=\"8\">29.58333 -160 32.55556 -480 37.75 -480 38.58333 213.3333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04_nutsAndBolts_cappedNut_04.rotateZ_nutsAndBolts_cappedNut_04-sampler\" target=\"nutsAndBolts_cappedNut_04/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05\">\r\n      <source id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-input\" name=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-input-array\" count=\"7\">28.08333 29.33333 29.5 30.25 37.5 38.25 38.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-input-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-output\" name=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-output-array\" count=\"7\">41.45787 -34.98996 -34.98996 -35.90015 -35.90015 -35 35.98176 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-output-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-interpolation\" name=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-interpolation-array\" count=\"7\">BEZIER BEZIER LINEAR LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-interpolation-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-intangent\" name=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-intangent-array\" count=\"14\">27.75 71.17363 28.91667 -34.98996 29.4999 -34.98996 30.2499 -35.90015 35.08333 -35.90015 38 -35.55495 38.58333 12.32118 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-intangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-outtangent\" name=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-outtangent-array\" count=\"14\">28.5 4.313156 29.38889 -34.98996 29.5001 -34.98996 30.2501 -35.90015 37.75 -35.90015 38.41667 -34.63003 39.08333 83.30294 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-outtangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_05.translate_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.translateZ_nutsAndBolts_cappedNut_05-sampler\" target=\"nutsAndBolts_cappedNut_05/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05\">\r\n      <source id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-input\" name=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-input-array\" count=\"4\">29.5 30.25 37.5 38.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-output\" name=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-output-array\" count=\"4\">0 -480 -480 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-interpolation\" name=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-intangent\" name=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-intangent-array\" count=\"8\">29.16667 213.3333 30 -480 35.08333 -480 38 -160 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-outtangent\" name=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-outtangent-array\" count=\"8\">29.75 -160 32.66667 -480 37.75 -480 38.58333 213.3333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05_nutsAndBolts_cappedNut_05.rotateZ_nutsAndBolts_cappedNut_05-sampler\" target=\"nutsAndBolts_cappedNut_05/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06\">\r\n      <source id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-input\" name=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-input-array\" count=\"7\">28.25 29.5 29.66667 30.41667 37.5 38.25 38.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-input-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-output\" name=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-output-array\" count=\"7\">41.45787 -34.98996 -34.98996 -35.90015 -35.90015 -35 35.98176 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-output-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-interpolation\" name=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-interpolation-array\" count=\"7\">BEZIER BEZIER LINEAR LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-interpolation-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-intangent\" name=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-intangent-array\" count=\"14\">27.91667 71.17363 29.08333 -34.98996 29.66657 -34.98996 30.41657 -35.90015 35.13889 -35.90015 38 -35.55495 38.58333 12.32118 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-intangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-outtangent\" name=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-outtangent-array\" count=\"14\">28.66667 4.313156 29.55556 -34.98996 29.66677 -34.98996 30.41677 -35.90015 37.75 -35.90015 38.41667 -34.63003 39.08333 83.30294 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-outtangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_06.translate_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.translateZ_nutsAndBolts_cappedNut_06-sampler\" target=\"nutsAndBolts_cappedNut_06/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06\">\r\n      <source id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-input\" name=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-input-array\" count=\"4\">29.66667 30.41667 37.5 38.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-output\" name=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-output-array\" count=\"4\">0 -480 -480 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-interpolation\" name=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-intangent\" name=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-intangent-array\" count=\"8\">29.33333 213.3333 30.16667 -480 35.13889 -480 38 -160 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-outtangent\" name=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-outtangent-array\" count=\"8\">29.91667 -160 32.77778 -480 37.75 -480 38.58333 213.3333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06_nutsAndBolts_cappedNut_06.rotateZ_nutsAndBolts_cappedNut_06-sampler\" target=\"nutsAndBolts_cappedNut_06/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07\">\r\n      <source id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-input\" name=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-input-array\" count=\"7\">28.41667 29.66667 29.83333 30.58333 37.5 38.25 38.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-input-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-output\" name=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-output-array\" count=\"7\">41.45787 -34.98996 -34.98996 -35.90015 -35.90015 -35 35.98176 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-output-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-interpolation\" name=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-interpolation-array\" count=\"7\">BEZIER BEZIER LINEAR LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-interpolation-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-intangent\" name=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-intangent-array\" count=\"14\">28.08333 71.17363 29.25 -34.98996 29.83324 -34.98996 30.58324 -35.90015 35.19444 -35.90015 38 -35.55495 38.58333 12.32118 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-intangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-outtangent\" name=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-outtangent-array\" count=\"14\">28.83333 4.313156 29.72222 -34.98996 29.83343 -34.98996 30.58343 -35.90015 37.75 -35.90015 38.41667 -34.63003 39.08333 83.30294 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-outtangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_07.translate_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.translateZ_nutsAndBolts_cappedNut_07-sampler\" target=\"nutsAndBolts_cappedNut_07/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07\">\r\n      <source id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-input\" name=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-input-array\" count=\"4\">29.83333 30.58333 37.5 38.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-output\" name=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-output-array\" count=\"4\">0 -480 -480 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-interpolation\" name=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-intangent\" name=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-intangent-array\" count=\"8\">29.5 213.3333 30.33333 -480 35.19444 -480 38 -160 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-outtangent\" name=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-outtangent-array\" count=\"8\">30.08333 -160 32.88889 -480 37.75 -480 38.58333 213.3333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07_nutsAndBolts_cappedNut_07.rotateZ_nutsAndBolts_cappedNut_07-sampler\" target=\"nutsAndBolts_cappedNut_07/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08\">\r\n      <source id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-input\" name=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-input-array\" count=\"7\">28.58333 29.83333 30 30.75 37.5 38.25 38.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-input-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-output\" name=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-output-array\" count=\"7\">41.45787 -34.98996 -34.98996 -35.90015 -35.90015 -35 35.98176 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-output-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-interpolation\" name=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-interpolation-array\" count=\"7\">BEZIER BEZIER LINEAR LINEAR BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-interpolation-array\" count=\"7\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-intangent\" name=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-intangent-array\" count=\"14\">28.25 71.17363 29.41667 -34.98996 29.9999 -34.98996 30.7499 -35.90015 35.25 -35.90015 38 -35.55495 38.58333 12.32118 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-intangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-outtangent\" name=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-outtangent-array\" count=\"14\">29 4.313156 29.88889 -34.98996 30.0001 -34.98996 30.7501 -35.90015 37.75 -35.90015 38.41667 -34.63003 39.08333 83.30294 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-outtangent-array\" count=\"7\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_08.translate_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.translateZ_nutsAndBolts_cappedNut_08-sampler\" target=\"nutsAndBolts_cappedNut_08/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08\">\r\n      <source id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-input\" name=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-input\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-input-array\" count=\"4\">30 30.75 37.5 38.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-input-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-output\" name=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-output\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-output-array\" count=\"4\">0 -480 -480 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-output-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-interpolation\" name=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-interpolation-array\" count=\"4\">BEZIER BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-interpolation-array\" count=\"4\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-intangent\" name=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-intangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-intangent-array\" count=\"8\">29.66667 213.3333 30.5 -480 35.25 -480 38 -160 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-intangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-outtangent\" name=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-outtangent\">\r\n        <float_array id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-outtangent-array\" count=\"8\">30.25 -160 33 -480 37.75 -480 38.58333 213.3333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-outtangent-array\" count=\"4\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08_nutsAndBolts_cappedNut_08.rotateZ_nutsAndBolts_cappedNut_08-sampler\" target=\"nutsAndBolts_cappedNut_08/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2\">\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-input\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-input\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-input-array\" count=\"3\">23.33333 24.58333 25.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-output\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-output\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-output-array\" count=\"3\">82.59923 31.05081 31.05081 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-interpolation\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-intangent\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-intangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-intangent-array\" count=\"6\">23 102.3052 24.16667 31.05081 25.19445 31.05081 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-outtangent\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-outtangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-outtangent-array\" count=\"6\">23.75 58.3145 24.88889 31.05081 25.83333 31.05081 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-input\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-input\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-input-array\" count=\"2\">24.58333 25.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-output\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-output\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-output-array\" count=\"2\">31.76023 31.76023 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-interpolation\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-intangent\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-intangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-intangent-array\" count=\"4\">24.25 31.76023 25.19445 31.76023 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-outtangent\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-outtangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-outtangent-array\" count=\"4\">24.88889 31.76023 25.83333 31.76023 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-input\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-input\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-input-array\" count=\"5\">23.33333 24.375 24.58333 24.75 25.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-input-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-output\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-output\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-output-array\" count=\"5\">16.08816 27.00994 28.50692 28.50692 30.32022 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-output-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-interpolation\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-interpolation-array\" count=\"5\">BEZIER BEZIER BEZIER LINEAR LINEAR </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-interpolation-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-intangent\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-intangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-intangent-array\" count=\"10\">23 11.21579 24.02778 24.14064 24.51389 28.50692 24.7499 28.50692 25.4999 30.32022 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-intangent-array\" count=\"5\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-outtangent\" name=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-outtangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-outtangent-array\" count=\"10\">23.68056 21.12378 24.44445 27.58381 24.63889 28.50692 24.7501 28.50692 25.5001 30.32022 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-outtangent-array\" count=\"5\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateX_nutsAndBolts_nut_pumpHousing2-sampler\" target=\"nutsAndBolts_nut_pumpHousing2/translate.X\"/>\r\n      <channel source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateY_nutsAndBolts_nut_pumpHousing2-sampler\" target=\"nutsAndBolts_nut_pumpHousing2/translate.Y\"/>\r\n      <channel source=\"#nutsAndBolts_nut_pumpHousing2.translate_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.translateZ_nutsAndBolts_nut_pumpHousing2-sampler\" target=\"nutsAndBolts_nut_pumpHousing2/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2\">\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-input\" name=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-input\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-input-array\" count=\"2\">24.75 25.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-output\" name=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-output\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-output-array\" count=\"2\">0 -540 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-interpolation\" name=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-intangent\" name=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-intangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-intangent-array\" count=\"4\">24.41667 240 25.25 -360 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-outtangent\" name=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-outtangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-outtangent-array\" count=\"4\">25 -180 25.83333 -780 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2_nutsAndBolts_nut_pumpHousing2.rotateZ_nutsAndBolts_nut_pumpHousing2-sampler\" target=\"nutsAndBolts_nut_pumpHousing2/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4\">\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-input\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-input\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-input-array\" count=\"3\">23.33333 24.58333 25.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-output\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-output\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-output-array\" count=\"3\">82.59923 31.05081 31.05081 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"X\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-interpolation\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-intangent\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-intangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-intangent-array\" count=\"6\">23 102.3052 24.16667 31.05081 25.19445 31.05081 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-outtangent\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-outtangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-outtangent-array\" count=\"6\">23.75 58.3145 24.88889 31.05081 25.83333 31.05081 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-input\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-input\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-input-array\" count=\"5\">23.33333 24.375 24.58333 24.75 25.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-input-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-output\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-output\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-output-array\" count=\"5\">16.08816 27.00994 28.50692 28.50692 30.32022 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-output-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-interpolation\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-interpolation-array\" count=\"5\">BEZIER BEZIER BEZIER LINEAR LINEAR </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-interpolation-array\" count=\"5\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-intangent\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-intangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-intangent-array\" count=\"10\">23 11.21579 24.02778 24.14064 24.51389 28.50692 24.7499 28.50692 25.4999 30.32022 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-intangent-array\" count=\"5\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-outtangent\" name=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-outtangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-outtangent-array\" count=\"10\">23.68056 21.12378 24.44445 27.58381 24.63889 28.50692 24.7501 28.50692 25.5001 30.32022 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-outtangent-array\" count=\"5\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-outtangent\"/>\r\n      </sampler>\r\n      <sampler id=\"nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateX_nutsAndBolts_nut_pumpHousing4-sampler\" target=\"nutsAndBolts_nut_pumpHousing4/translate.X\"/>\r\n      <channel source=\"#nutsAndBolts_nut_pumpHousing4.translate_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.translateZ_nutsAndBolts_nut_pumpHousing4-sampler\" target=\"nutsAndBolts_nut_pumpHousing4/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4\">\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-input\" name=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-input\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-input-array\" count=\"2\">24.75 25.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-output\" name=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-output\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-output-array\" count=\"2\">0 -540 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"ANGLE\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-interpolation\" name=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-interpolation\">\r\n        <Name_array id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-intangent\" name=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-intangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-intangent-array\" count=\"4\">24.41667 240 25.25 -360 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-outtangent\" name=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-outtangent\">\r\n        <float_array id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-outtangent-array\" count=\"4\">25 -180 25.83333 -780 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4_nutsAndBolts_nut_pumpHousing4.rotateZ_nutsAndBolts_nut_pumpHousing4-sampler\" target=\"nutsAndBolts_nut_pumpHousing4/rotateZ.ANGLE\"/>\r\n    </animation>\r\n    <animation id=\"camCoverBolt1.translate_camCoverBolt1\">\r\n      <source id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-input\" name=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-input\">\r\n        <float_array id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-input-array\" count=\"2\">8.5 9.75 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-output\" name=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-output\">\r\n        <float_array id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-output-array\" count=\"2\">110 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-interpolation\" name=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-interpolation\">\r\n        <Name_array id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-intangent\" name=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-intangent\">\r\n        <float_array id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-intangent-array\" count=\"4\">8.166667 140.3414 9.333333 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-outtangent\" name=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-outtangent\">\r\n        <float_array id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-outtangent-array\" count=\"4\">8.916667 74.78825 10.08333 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camCoverBolt1.translate_camCoverBolt1_camCoverBolt1.translateZ_camCoverBolt1-sampler\" target=\"camCoverBolt1/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"camCoverBolt2.translate_camCoverBolt2\">\r\n      <source id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-input\" name=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-input\">\r\n        <float_array id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-input-array\" count=\"2\">8.666667 9.916667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-output\" name=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-output\">\r\n        <float_array id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-output-array\" count=\"2\">110 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-interpolation\" name=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-interpolation\">\r\n        <Name_array id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-intangent\" name=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-intangent\">\r\n        <float_array id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-intangent-array\" count=\"4\">8.333334 140.8172 9.5 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-outtangent\" name=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-outtangent\">\r\n        <float_array id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-outtangent-array\" count=\"4\">9.083334 74.26639 10.25 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camCoverBolt2.translate_camCoverBolt2_camCoverBolt2.translateZ_camCoverBolt2-sampler\" target=\"camCoverBolt2/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"camCoverBolt3.translate_camCoverBolt3\">\r\n      <source id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-input\" name=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-input\">\r\n        <float_array id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-input-array\" count=\"2\">8.833333 10.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-output\" name=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-output\">\r\n        <float_array id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-output-array\" count=\"2\">110 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-interpolation\" name=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-interpolation\">\r\n        <Name_array id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-intangent\" name=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-intangent\">\r\n        <float_array id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-intangent-array\" count=\"4\">8.5 142.1292 9.666666 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-outtangent\" name=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-outtangent\">\r\n        <float_array id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-outtangent-array\" count=\"4\">9.25 72.83271 10.41667 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camCoverBolt3.translate_camCoverBolt3_camCoverBolt3.translateZ_camCoverBolt3-sampler\" target=\"camCoverBolt3/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"camCoverBolt4.translate_camCoverBolt4\">\r\n      <source id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-input\" name=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-input\">\r\n        <float_array id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-input-array\" count=\"2\">9.333333 10.58333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-output\" name=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-output\">\r\n        <float_array id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-output-array\" count=\"2\">110 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-interpolation\" name=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-interpolation\">\r\n        <Name_array id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-intangent\" name=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-intangent\">\r\n        <float_array id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-intangent-array\" count=\"4\">9 141.0102 10.16667 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-outtangent\" name=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-outtangent\">\r\n        <float_array id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-outtangent-array\" count=\"4\">9.75 74.05493 10.91667 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camCoverBolt4.translate_camCoverBolt4_camCoverBolt4.translateZ_camCoverBolt4-sampler\" target=\"camCoverBolt4/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"camCoverBolt5.translate_camCoverBolt5\">\r\n      <source id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-input\" name=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-input\">\r\n        <float_array id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-input-array\" count=\"2\">9 10.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-output\" name=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-output\">\r\n        <float_array id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-output-array\" count=\"2\">110 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-interpolation\" name=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-interpolation\">\r\n        <Name_array id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-intangent\" name=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-intangent\">\r\n        <float_array id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-intangent-array\" count=\"4\">8.666667 141.3081 9.833333 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-outtangent\" name=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-outtangent\">\r\n        <float_array id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-outtangent-array\" count=\"4\">9.416667 73.72903 10.58333 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camCoverBolt5.translate_camCoverBolt5_camCoverBolt5.translateZ_camCoverBolt5-sampler\" target=\"camCoverBolt5/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"camCoverBolt6.translate_camCoverBolt6\">\r\n      <source id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-input\" name=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-input\">\r\n        <float_array id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-input-array\" count=\"2\">9.166667 10.41667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-output\" name=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-output\">\r\n        <float_array id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-output-array\" count=\"2\">110 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-interpolation\" name=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-interpolation\">\r\n        <Name_array id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-intangent\" name=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-intangent\">\r\n        <float_array id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-intangent-array\" count=\"4\">8.833334 141.8153 10 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-outtangent\" name=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-outtangent\">\r\n        <float_array id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-outtangent-array\" count=\"4\">9.583334 73.17505 10.75 32.92391 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#camCoverBolt6.translate_camCoverBolt6_camCoverBolt6.translateZ_camCoverBolt6-sampler\" target=\"camCoverBolt6/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearCoverBolts_G.translate_gearCoverBolts_G\">\r\n      <source id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-input\" name=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-input\">\r\n        <float_array id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-input-array\" count=\"3\">15.41667 16.16667 16.66667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-input-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-output\" name=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-output\">\r\n        <float_array id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-output-array\" count=\"3\">-80 -13.12523 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-output-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-interpolation\" name=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-interpolation\">\r\n        <Name_array id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-interpolation-array\" count=\"3\">BEZIER BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-interpolation-array\" count=\"3\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-intangent\" name=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-intangent\">\r\n        <float_array id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-intangent-array\" count=\"6\">15.08333 -113.0318 15.91667 -28.08695 16.5 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-intangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-outtangent\" name=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-outtangent\">\r\n        <float_array id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-outtangent-array\" count=\"6\">15.66667 -55.70328 16.33333 -3.150733 17 0 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-outtangent-array\" count=\"3\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearCoverBolts_G.translate_gearCoverBolts_G_gearCoverBolts_G.translateZ_gearCoverBolts_G-sampler\" target=\"gearCoverBolts_G/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt01.translate_gearBolt01\">\r\n      <source id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-input\" name=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-input\">\r\n        <float_array id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-input-array\" count=\"2\">11.66667 12.91667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-output\" name=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-output\">\r\n        <float_array id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-interpolation\" name=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-interpolation\">\r\n        <Name_array id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-intangent\" name=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-intangent\">\r\n        <float_array id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-intangent-array\" count=\"4\">11.33333 -97.70341 12.5 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-outtangent\" name=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-outtangent\">\r\n        <float_array id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-outtangent-array\" count=\"4\">12.08333 -35.72016 13.25 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt01.translate_gearBolt01_gearBolt01.translateZ_gearBolt01-sampler\" target=\"gearBolt01/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt02.translate_gearBolt02\">\r\n      <source id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-input\" name=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-input\">\r\n        <float_array id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-input-array\" count=\"2\">11.75 13 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-output\" name=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-output\">\r\n        <float_array id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-interpolation\" name=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-interpolation\">\r\n        <Name_array id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-intangent\" name=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-intangent\">\r\n        <float_array id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-intangent-array\" count=\"4\">11.41667 -97.70341 12.58333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-outtangent\" name=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-outtangent\">\r\n        <float_array id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-outtangent-array\" count=\"4\">12.16667 -35.72016 13.33333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt02.translate_gearBolt02_gearBolt02.translateZ_gearBolt02-sampler\" target=\"gearBolt02/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt03.translate_gearBolt03\">\r\n      <source id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-input\" name=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-input\">\r\n        <float_array id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-input-array\" count=\"2\">11.83333 13.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-output\" name=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-output\">\r\n        <float_array id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-interpolation\" name=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-interpolation\">\r\n        <Name_array id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-intangent\" name=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-intangent\">\r\n        <float_array id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-intangent-array\" count=\"4\">11.5 -97.70341 12.66667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-outtangent\" name=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-outtangent\">\r\n        <float_array id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-outtangent-array\" count=\"4\">12.25 -35.72016 13.41667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt03.translate_gearBolt03_gearBolt03.translateZ_gearBolt03-sampler\" target=\"gearBolt03/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt04.translate_gearBolt04\">\r\n      <source id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-input\" name=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-input\">\r\n        <float_array id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-input-array\" count=\"2\">11.91667 13.16667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-output\" name=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-output\">\r\n        <float_array id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-interpolation\" name=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-interpolation\">\r\n        <Name_array id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-intangent\" name=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-intangent\">\r\n        <float_array id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-intangent-array\" count=\"4\">11.58333 -97.70341 12.75 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-outtangent\" name=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-outtangent\">\r\n        <float_array id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-outtangent-array\" count=\"4\">12.33333 -35.72016 13.5 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt04.translate_gearBolt04_gearBolt04.translateZ_gearBolt04-sampler\" target=\"gearBolt04/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt05.translate_gearBolt05\">\r\n      <source id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-input\" name=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-input\">\r\n        <float_array id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-input-array\" count=\"2\">12 13.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-output\" name=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-output\">\r\n        <float_array id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-interpolation\" name=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-interpolation\">\r\n        <Name_array id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-intangent\" name=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-intangent\">\r\n        <float_array id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-intangent-array\" count=\"4\">11.66667 -97.70341 12.83333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-outtangent\" name=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-outtangent\">\r\n        <float_array id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-outtangent-array\" count=\"4\">12.41667 -35.72016 13.58333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt05.translate_gearBolt05_gearBolt05.translateZ_gearBolt05-sampler\" target=\"gearBolt05/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt06.translate_gearBolt06\">\r\n      <source id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-input\" name=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-input\">\r\n        <float_array id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-input-array\" count=\"2\">12.08333 13.33333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-output\" name=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-output\">\r\n        <float_array id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-interpolation\" name=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-interpolation\">\r\n        <Name_array id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-intangent\" name=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-intangent\">\r\n        <float_array id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-intangent-array\" count=\"4\">11.75 -97.70341 12.91667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-outtangent\" name=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-outtangent\">\r\n        <float_array id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-outtangent-array\" count=\"4\">12.5 -35.72016 13.66667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt06.translate_gearBolt06_gearBolt06.translateZ_gearBolt06-sampler\" target=\"gearBolt06/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt07.translate_gearBolt07\">\r\n      <source id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-input\" name=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-input\">\r\n        <float_array id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-input-array\" count=\"2\">12.16667 13.41667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-output\" name=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-output\">\r\n        <float_array id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-interpolation\" name=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-interpolation\">\r\n        <Name_array id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-intangent\" name=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-intangent\">\r\n        <float_array id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-intangent-array\" count=\"4\">11.83333 -97.70341 13 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-outtangent\" name=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-outtangent\">\r\n        <float_array id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-outtangent-array\" count=\"4\">12.58333 -35.72016 13.75 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt07.translate_gearBolt07_gearBolt07.translateZ_gearBolt07-sampler\" target=\"gearBolt07/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt08.translate_gearBolt08\">\r\n      <source id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-input\" name=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-input\">\r\n        <float_array id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-input-array\" count=\"2\">12.25 13.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-output\" name=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-output\">\r\n        <float_array id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-interpolation\" name=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-interpolation\">\r\n        <Name_array id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-intangent\" name=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-intangent\">\r\n        <float_array id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-intangent-array\" count=\"4\">11.91667 -97.70341 13.08333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-outtangent\" name=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-outtangent\">\r\n        <float_array id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-outtangent-array\" count=\"4\">12.66667 -35.72016 13.83333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt08.translate_gearBolt08_gearBolt08.translateZ_gearBolt08-sampler\" target=\"gearBolt08/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt09.translate_gearBolt09\">\r\n      <source id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-input\" name=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-input\">\r\n        <float_array id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-input-array\" count=\"2\">12.33333 13.58333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-output\" name=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-output\">\r\n        <float_array id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-interpolation\" name=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-interpolation\">\r\n        <Name_array id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-intangent\" name=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-intangent\">\r\n        <float_array id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-intangent-array\" count=\"4\">12 -97.70341 13.16667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-outtangent\" name=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-outtangent\">\r\n        <float_array id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-outtangent-array\" count=\"4\">12.75 -35.72016 13.91667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt09.translate_gearBolt09_gearBolt09.translateZ_gearBolt09-sampler\" target=\"gearBolt09/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt010.translate_gearBolt010\">\r\n      <source id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-input\" name=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-input\">\r\n        <float_array id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-input-array\" count=\"2\">12.41667 13.66667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-output\" name=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-output\">\r\n        <float_array id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-interpolation\" name=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-interpolation\">\r\n        <Name_array id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-intangent\" name=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-intangent\">\r\n        <float_array id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-intangent-array\" count=\"4\">12.08333 -97.70341 13.25 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-outtangent\" name=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-outtangent\">\r\n        <float_array id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-outtangent-array\" count=\"4\">12.83333 -35.72016 14 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt010.translate_gearBolt010_gearBolt010.translateZ_gearBolt010-sampler\" target=\"gearBolt010/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt011.translate_gearBolt011\">\r\n      <source id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-input\" name=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-input\">\r\n        <float_array id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-input-array\" count=\"2\">12.75 14 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-output\" name=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-output\">\r\n        <float_array id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-interpolation\" name=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-interpolation\">\r\n        <Name_array id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-intangent\" name=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-intangent\">\r\n        <float_array id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-intangent-array\" count=\"4\">12.41667 -97.70341 13.58333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-outtangent\" name=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-outtangent\">\r\n        <float_array id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-outtangent-array\" count=\"4\">13.16667 -35.72016 14.33333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt011.translate_gearBolt011_gearBolt011.translateZ_gearBolt011-sampler\" target=\"gearBolt011/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt012.translate_gearBolt012\">\r\n      <source id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-input\" name=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-input\">\r\n        <float_array id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-input-array\" count=\"2\">12.83333 14.08333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-output\" name=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-output\">\r\n        <float_array id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-interpolation\" name=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-interpolation\">\r\n        <Name_array id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-intangent\" name=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-intangent\">\r\n        <float_array id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-intangent-array\" count=\"4\">12.5 -97.70341 13.66667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-outtangent\" name=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-outtangent\">\r\n        <float_array id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-outtangent-array\" count=\"4\">13.25 -35.72016 14.41667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt012.translate_gearBolt012_gearBolt012.translateZ_gearBolt012-sampler\" target=\"gearBolt012/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt013.translate_gearBolt013\">\r\n      <source id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-input\" name=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-input\">\r\n        <float_array id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-input-array\" count=\"2\">12.91667 14.16667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-output\" name=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-output\">\r\n        <float_array id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-interpolation\" name=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-interpolation\">\r\n        <Name_array id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-intangent\" name=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-intangent\">\r\n        <float_array id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-intangent-array\" count=\"4\">12.58333 -97.70341 13.75 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-outtangent\" name=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-outtangent\">\r\n        <float_array id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-outtangent-array\" count=\"4\">13.33333 -35.72016 14.5 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt013.translate_gearBolt013_gearBolt013.translateZ_gearBolt013-sampler\" target=\"gearBolt013/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt014.translate_gearBolt014\">\r\n      <source id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-input\" name=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-input\">\r\n        <float_array id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-input-array\" count=\"2\">13 14.25 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-output\" name=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-output\">\r\n        <float_array id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-interpolation\" name=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-interpolation\">\r\n        <Name_array id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-intangent\" name=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-intangent\">\r\n        <float_array id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-intangent-array\" count=\"4\">12.66667 -97.70341 13.83333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-outtangent\" name=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-outtangent\">\r\n        <float_array id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-outtangent-array\" count=\"4\">13.41667 -35.72016 14.58333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt014.translate_gearBolt014_gearBolt014.translateZ_gearBolt014-sampler\" target=\"gearBolt014/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt015.translate_gearBolt015\">\r\n      <source id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-input\" name=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-input\">\r\n        <float_array id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-input-array\" count=\"2\">13.08333 14.33333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-output\" name=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-output\">\r\n        <float_array id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-interpolation\" name=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-interpolation\">\r\n        <Name_array id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-intangent\" name=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-intangent\">\r\n        <float_array id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-intangent-array\" count=\"4\">12.75 -97.70341 13.91667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-outtangent\" name=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-outtangent\">\r\n        <float_array id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-outtangent-array\" count=\"4\">13.5 -35.72016 14.66667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt015.translate_gearBolt015_gearBolt015.translateZ_gearBolt015-sampler\" target=\"gearBolt015/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt016.translate_gearBolt016\">\r\n      <source id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-input\" name=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-input\">\r\n        <float_array id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-input-array\" count=\"2\">13.16667 14.41667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-output\" name=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-output\">\r\n        <float_array id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-interpolation\" name=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-interpolation\">\r\n        <Name_array id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-intangent\" name=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-intangent\">\r\n        <float_array id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-intangent-array\" count=\"4\">12.83333 -97.70341 14 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-outtangent\" name=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-outtangent\">\r\n        <float_array id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-outtangent-array\" count=\"4\">13.58333 -35.72016 14.75 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt016.translate_gearBolt016_gearBolt016.translateZ_gearBolt016-sampler\" target=\"gearBolt016/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt017.translate_gearBolt017\">\r\n      <source id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-input\" name=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-input\">\r\n        <float_array id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-input-array\" count=\"2\">13.25 14.5 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-output\" name=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-output\">\r\n        <float_array id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-interpolation\" name=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-interpolation\">\r\n        <Name_array id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-intangent\" name=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-intangent\">\r\n        <float_array id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-intangent-array\" count=\"4\">12.91667 -97.70341 14.08333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-outtangent\" name=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-outtangent\">\r\n        <float_array id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-outtangent-array\" count=\"4\">13.66667 -35.72016 14.83333 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt017.translate_gearBolt017_gearBolt017.translateZ_gearBolt017-sampler\" target=\"gearBolt017/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt018.translate_gearBolt018\">\r\n      <source id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-input\" name=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-input\">\r\n        <float_array id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-input-array\" count=\"2\">13.33333 14.58333 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-output\" name=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-output\">\r\n        <float_array id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-interpolation\" name=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-interpolation\">\r\n        <Name_array id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-intangent\" name=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-intangent\">\r\n        <float_array id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-intangent-array\" count=\"4\">13 -97.70341 14.16667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-outtangent\" name=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-outtangent\">\r\n        <float_array id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-outtangent-array\" count=\"4\">13.75 -35.72016 14.91667 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt018.translate_gearBolt018_gearBolt018.translateZ_gearBolt018-sampler\" target=\"gearBolt018/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt019.translate_gearBolt019\">\r\n      <source id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-input\" name=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-input\">\r\n        <float_array id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-input-array\" count=\"2\">13.41667 14.66667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-output\" name=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-output\">\r\n        <float_array id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-interpolation\" name=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-interpolation\">\r\n        <Name_array id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-intangent\" name=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-intangent\">\r\n        <float_array id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-intangent-array\" count=\"4\">13.08333 -97.70341 14.25 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-outtangent\" name=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-outtangent\">\r\n        <float_array id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-outtangent-array\" count=\"4\">13.83333 -35.72016 15 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt019.translate_gearBolt019_gearBolt019.translateZ_gearBolt019-sampler\" target=\"gearBolt019/translate.Z\"/>\r\n    </animation>\r\n    <animation id=\"gearBolt020.translate_gearBolt020\">\r\n      <source id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-input\" name=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-input\">\r\n        <float_array id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-input-array\" count=\"2\">12.66667 13.91667 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-input-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n        <technique profile=\"OpenCOLLADAMaya\">\r\n          <pre_infinity>CONSTANT</pre_infinity>\r\n          <post_infinity>CONSTANT</post_infinity>\r\n        </technique>\r\n      </source>\r\n      <source id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-output\" name=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-output\">\r\n        <float_array id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-output-array\" count=\"2\">-70 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-output-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"Z\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-interpolation\" name=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-interpolation\">\r\n        <Name_array id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-interpolation-array\" count=\"2\">BEZIER BEZIER </Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-interpolation-array\" count=\"2\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-intangent\" name=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-intangent\">\r\n        <float_array id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-intangent-array\" count=\"4\">12.33333 -97.70341 13.5 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-intangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-outtangent\" name=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-outtangent\">\r\n        <float_array id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-outtangent-array\" count=\"4\">13.08333 -35.72016 14.25 0.5706027 </float_array>\r\n        <technique_common>\r\n          <accessor source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-outtangent-array\" count=\"2\" stride=\"2\">\r\n            <param name=\"X\" type=\"float\"/>\r\n            <param name=\"Y\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-interpolation\"/>\r\n        <input semantic=\"IN_TANGENT\" source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-intangent\"/>\r\n        <input semantic=\"OUT_TANGENT\" source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-outtangent\"/>\r\n      </sampler>\r\n      <channel source=\"#gearBolt020.translate_gearBolt020_gearBolt020.translateZ_gearBolt020-sampler\" target=\"gearBolt020/translate.Z\"/>\r\n    </animation>\r\n  </library_animations>\r\n  <scene>\r\n    <instance_visual_scene url=\"#VisualSceneNode\"/>\r\n  </scene>\r\n</COLLADA>"
  },
  {
    "path": "public/models/collada/stormtrooper/stormtrooper.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<COLLADA xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" version=\"1.4.1\">\r\n  <asset>\r\n    <contributor>\r\n      <author>Blender User</author>\r\n      <authoring_tool>Blender 2.74.0 commit date:2015-03-31, commit time:13:39, hash:000dfc0</authoring_tool>\r\n    </contributor>\r\n    <created>2017-06-30T19:12:57</created>\r\n    <modified>2017-06-30T19:12:57</modified>\r\n    <unit name=\"meter\" meter=\"1\"/>\r\n    <up_axis>Z_UP</up_axis>\r\n  </asset>\r\n  <library_images>\r\n    <image id=\"Stormtrooper_D\" name=\"Stormtrooper_D\">\r\n      <init_from>Stormtrooper_D.jpg</init_from>\r\n    </image>\r\n  </library_images>\r\n  <library_effects>\r\n    <effect id=\"Stormtroopermat-effect\">\r\n      <profile_COMMON>\r\n        <newparam sid=\"Stormtrooper_D-surface\">\r\n          <surface type=\"2D\">\r\n            <init_from>Stormtrooper_D</init_from>\r\n          </surface>\r\n        </newparam>\r\n        <newparam sid=\"Stormtrooper_D-sampler\">\r\n          <sampler2D>\r\n            <source>Stormtrooper_D-surface</source>\r\n          </sampler2D>\r\n        </newparam>\r\n        <technique sid=\"common\">\r\n          <phong>\r\n            <emission>\r\n              <color sid=\"emission\">0 0 0 1</color>\r\n            </emission>\r\n            <ambient>\r\n              <color sid=\"ambient\">0 0 0 1</color>\r\n            </ambient>\r\n            <diffuse>\r\n              <texture texture=\"Stormtrooper_D-sampler\" texcoord=\"StormtrooperDiffuseUVLayer\"/>\r\n            </diffuse>\r\n            <specular>\r\n              <color sid=\"specular\">0.05 0.05 0.05 1</color>\r\n            </specular>\r\n            <shininess>\r\n              <float sid=\"shininess\">100</float>\r\n            </shininess>\r\n            <index_of_refraction>\r\n              <float sid=\"index_of_refraction\">1</float>\r\n            </index_of_refraction>\r\n          </phong>\r\n        </technique>\r\n      </profile_COMMON>\r\n    </effect>\r\n  </library_effects>\r\n  <library_materials>\r\n    <material id=\"Stormtroopermat-material\" name=\"Stormtroopermat\">\r\n      <instance_effect url=\"#Stormtroopermat-effect\"/>\r\n    </material>\r\n  </library_materials>\r\n  <library_geometries>\r\n    <geometry id=\"Stormtroopermesh-mesh\" name=\"Stormtroopermesh\">\r\n      <mesh>\r\n        <source id=\"Stormtroopermesh-mesh-positions\">\r\n          <float_array id=\"Stormtroopermesh-mesh-positions-array\" count=\"9825\">-0.544744 2.718269 -0.216881 -0.461653 2.697798 -0.246883 -0.475583 2.689369 -0.2422749 -0.513698 2.794673 -0.2272779 -0.433356 2.772663 -0.257694 -0.580734 2.814996 -0.167433 -0.607784 2.738667 -0.163511 -0.611688 2.828253 -0.09047299 -0.641094 2.744802 -0.09180396 -0.62273 2.826865 -0.07210201 -0.652413 2.7468 -0.06940299 -0.620836 2.831663 -0.03709995 -0.651328 2.751503 -0.02852797 -0.640748 2.748466 -0.008301973 -0.609794 2.833261 -0.01785397 -0.604827 2.742758 0.06088697 -0.591637 2.921748 -0.04746496 -0.591013 2.921103 -0.07316595 -0.580595 2.917098 -0.09328699 -0.548671 2.90394 -0.169281 -0.47623 2.879708 -0.232168 -0.398175 2.855673 -0.261595 -0.437214 2.958359 -0.223245 -0.352437 2.935599 -0.245155 -0.51118 2.984638 -0.16874 -0.541164 3.007638 -0.098697 -0.550219 3.016153 -0.07707697 -0.550219 3.017035 -0.04900199 -0.579741 2.919493 -0.02289599 -0.576022 2.824541 0.06063097 -0.540032 2.726022 0.113045 -0.510741 2.805088 0.12043 -0.543635 2.916479 0.05480796 -0.51118 2.991334 0.04443597 -0.541164 3.009893 -0.02691298 -0.491314 3.081145 -0.04976797 -0.491314 3.080184 -0.08035999 -0.481866 3.071406 -0.103035 -0.454169 3.042979 -0.167777 -0.402933 3.029867 -0.1952379 -0.321252 3.005677 -0.2126899 -0.372949 3.085035 -0.159161 -0.299746 3.071427 -0.167123 -0.418364 3.109198 -0.100685 -0.424324 3.118932 -0.08213198 -0.424324 3.11993 -0.05040794 -0.482582 3.073219 -0.02543699 -0.454169 3.0495 0.03983598 -0.418757 3.109235 -0.02374899 -0.352021 3.13606 -0.05336499 -0.352021 3.135217 -0.080217 -0.347586 3.121022 -0.104661 -0.293185 3.11619 -0.109849 -0.291776 3.133441 -0.07932996 -0.291106 3.134182 -0.05358195 -0.345668 3.122727 -0.02458697 -0.29203 3.116747 -0.01779097 -0.298337 3.080073 0.03605496 -0.376876 3.090258 0.02988696 -0.398683 3.03953 0.068991 -0.437514 2.964712 0.103352 -0.475768 2.890917 0.117272 -0.434488 2.78488 0.151109 -0.39665 2.862972 0.148864 -0.354978 2.939493 0.128226 -0.319219 3.018156 0.08597898 -0.458974 2.709847 0.1418409 -0.472926 2.700438 0.138092 -0.468768 2.688683 -0.222908 -0.454631 2.697551 -0.227578 -0.534603 2.71638 -0.199096 -0.534419 2.801124 -0.182298 -0.426357 2.771651 -0.2384099 -0.592192 2.733624 -0.151127 -0.482443 2.924933 -0.1829749 -0.392608 2.851799 -0.242201 -0.349849 2.928082 -0.226199 -0.42243 3.0248 -0.166052 -0.320628 2.995372 -0.194917 -0.370778 3.069985 -0.145352 -0.300485 3.057216 -0.1523 -0.383275 3.101623 -0.06372296 -0.293624 3.099147 -0.09835898 -0.292123 3.113873 -0.06586498 -0.292677 3.099041 -0.02821195 -0.299029 3.064871 0.02224999 -0.374451 3.074483 0.01695597 -0.318757 3.00671 0.06891196 -0.420305 3.032023 0.03966796 -0.352321 2.930986 0.109702 -0.481265 2.932979 0.06503599 -0.391291 2.857703 0.129732 -0.427396 2.782892 0.131943 -0.530676 2.810378 0.07554197 -0.451998 2.708962 0.122525 -0.530099 2.723592 0.09523296 -0.466412 2.698535 0.118693 -0.58972 2.737045 0.04821699 -0.581427 2.868061 -0.05631697 -0.624023 2.74121 -0.01778197 -0.633263 2.741963 -0.04900395 -0.623723 2.738593 -0.082758 -0.500947 3.030893 -0.063259 0.544744 2.718269 -0.216881 0.475583 2.689369 -0.2422749 0.461653 2.697798 -0.246883 0.513698 2.794673 -0.2272779 0.433356 2.772663 -0.257694 0.580734 2.814996 -0.167433 0.607784 2.738667 -0.163511 0.611688 2.828253 -0.09047299 0.641094 2.744802 -0.09180396 0.62273 2.826865 -0.07210201 0.652413 2.7468 -0.06940299 0.620836 2.831663 -0.03709995 0.651328 2.751503 -0.02852797 0.640748 2.748466 -0.008301973 0.609794 2.833261 -0.01785397 0.604827 2.742758 0.06088697 0.591637 2.921748 -0.04746496 0.591013 2.921103 -0.07316595 0.580595 2.917098 -0.09328699 0.548671 2.90394 -0.169281 0.47623 2.879708 -0.232168 0.398175 2.855673 -0.261595 0.437214 2.958359 -0.223245 0.352437 2.935599 -0.245155 0.51118 2.984638 -0.16874 0.541164 3.007638 -0.098697 0.550219 3.016153 -0.07707697 0.550219 3.017035 -0.04900199 0.579741 2.919493 -0.02289599 0.576022 2.824541 0.06063097 0.540032 2.726022 0.113045 0.510741 2.805088 0.12043 0.543635 2.916479 0.05480796 0.51118 2.991334 0.04443597 0.541164 3.009893 -0.02691298 0.491314 3.081145 -0.04976797 0.491314 3.080184 -0.08035999 0.481866 3.071406 -0.103035 0.454169 3.042979 -0.167777 0.402933 3.029867 -0.1952379 0.321252 3.005677 -0.2126899 0.372949 3.085035 -0.159161 0.299746 3.071427 -0.167123 0.418364 3.109198 -0.100685 0.424324 3.118932 -0.08213198 0.424324 3.11993 -0.05040794 0.482582 3.073219 -0.02543699 0.454169 3.0495 0.03983598 0.418757 3.109235 -0.02374899 0.352021 3.13606 -0.05336499 0.352021 3.135217 -0.080217 0.347586 3.121022 -0.104661 0.293185 3.11619 -0.109849 0.291776 3.133441 -0.07932996 0.291106 3.134182 -0.05358195 0.345668 3.122727 -0.02458697 0.29203 3.116747 -0.01779097 0.298337 3.080073 0.03605496 0.376876 3.090258 0.02988696 0.398683 3.03953 0.068991 0.437514 2.964712 0.103352 0.475768 2.890917 0.117272 0.434488 2.78488 0.151109 0.39665 2.862972 0.148864 0.354978 2.939493 0.128226 0.319219 3.018156 0.08597898 0.458974 2.709847 0.1418409 0.472926 2.700438 0.138092 0.468768 2.688683 -0.222908 0.534603 2.71638 -0.199096 0.454631 2.697551 -0.227578 0.534419 2.801124 -0.182298 0.592192 2.733624 -0.151127 0.426357 2.771651 -0.2384099 0.581427 2.868061 -0.05631697 0.623723 2.738593 -0.082758 0.633263 2.741963 -0.04900395 0.624023 2.74121 -0.01778197 0.58972 2.737045 0.04821699 0.530676 2.810378 0.07554197 0.530099 2.723592 0.09523296 0.451998 2.708962 0.122525 0.466412 2.698535 0.118693 0.427396 2.782892 0.131943 0.481265 2.932979 0.06503599 0.391291 2.857703 0.129732 0.352321 2.930986 0.109702 0.420305 3.032023 0.03966796 0.318757 3.00671 0.06891196 0.500947 3.030893 -0.063259 0.482443 2.924933 -0.1829749 0.392608 2.851799 -0.242201 0.349849 2.928082 -0.226199 0.42243 3.0248 -0.166052 0.320628 2.995372 -0.194917 0.383275 3.101623 -0.06372296 0.374451 3.074483 0.01695597 0.299029 3.064871 0.02224999 0.292677 3.099041 -0.02821195 0.292123 3.113873 -0.06586498 0.293624 3.099147 -0.09835898 0.300485 3.057216 -0.1523 0.370778 3.069985 -0.145352 0.107715 3.165129 0.267247 0.119381 3.164797 0.267697 0.123123 3.18065 0.215452 0.107646 3.181094 0.214837 0.09815198 3.158689 0.265325 0.09494096 3.172554 0.212287 0.09433996 3.147975 0.262657 0.089859 3.158299 0.20876 0.097736 3.137038 0.260273 0.09438699 3.143778 0.205588 0.107045 3.130066 0.259081 0.106745 3.134531 0.204006 0.118688 3.129736 0.259554 0.122222 3.134088 0.20462 0.128251 3.136174 0.261479 0.134927 3.142628 0.207173 0.132063 3.146887 0.264124 0.139986 3.15686 0.2107 0.12869 3.157825 0.266508 0.1354809 3.171404 0.213872 0.11319 3.14734 0.263763 0.187249 2.140296 -0.357548 0.187249 2.130961 -0.317756 0.131 2.127383 -0.317645 0.131 2.137145 -0.359251 0.187249 2.168272 -0.387338 0 2.136225 -0.359824 0 2.126597 -0.31762 -0.131 2.127383 -0.317645 -0.131 2.137145 -0.359251 0 2.165983 -0.391057 0.131 2.166397 -0.390376 0.187249 2.207399 -0.399154 0.131 2.207286 -0.402732 0.187249 2.247189 -0.389817 0 2.207263 -0.403517 -0.131 2.166397 -0.390376 -0.187249 2.168272 -0.387338 -0.187249 2.140296 -0.357548 -0.187249 2.130961 -0.317756 -0.187249 2.207399 -0.399154 -0.131 2.207286 -0.402732 -0.187249 2.247189 -0.389817 0 2.249263 -0.393672 0.131 2.248893 -0.392968 0.187249 2.276981 -0.36184 0.131 2.280019 -0.363739 0.187249 2.288794 -0.322716 0 2.280698 -0.364153 -0.131 2.248893 -0.392968 -0.187249 2.276981 -0.36184 -0.131 2.280019 -0.363739 -0.187249 2.288794 -0.322716 0 2.293158 -0.322852 0.131 2.292372 -0.322827 0.187249 2.279459 -0.282924 0.131 2.28261 -0.281244 0.187249 2.251483 -0.253134 0 2.283315 -0.280873 -0.131 2.292372 -0.322827 -0.187249 2.279459 -0.282924 -0.131 2.28261 -0.281244 -0.187249 2.251483 -0.253134 0 2.253772 -0.249438 0.131 2.253382 -0.250096 0.187249 2.212356 -0.241318 0.131 2.212469 -0.23774 0.187249 2.172567 -0.250653 0 2.212495 -0.236955 -0.131 2.253382 -0.250096 -0.187249 2.212356 -0.241318 -0.131 2.212469 -0.23774 -0.187249 2.172567 -0.250653 0 2.170513 -0.246823 0.131 2.170885 -0.247505 0.187249 2.142774 -0.27863 0.131 2.139737 -0.276756 0 2.139081 -0.276343 -0.131 2.170885 -0.247505 -0.187249 2.142774 -0.27863 -0.131 2.139737 -0.276756 0.187225 2.155084 -0.28625 0.187225 2.145438 -0.318211 0.171864 2.151832 -0.318412 0.171864 2.160524 -0.289634 0.187225 2.179399 -0.263418 0.171864 2.182435 -0.269059 0.187225 2.211901 -0.255795 0.171864 2.2117 -0.262192 0.187225 2.243862 -0.265444 0.171864 2.240478 -0.270884 0.187225 2.266717 -0.289757 0.171864 2.261076 -0.292792 0.187225 2.27434 -0.322261 0.171864 2.267923 -0.32206 0.187225 2.264694 -0.354222 0.171864 2.259254 -0.350838 0.187225 2.240356 -0.377077 0.171864 2.23732 -0.371434 0.187225 2.207852 -0.3847 0.171864 2.208055 -0.378281 0.187225 2.175893 -0.375051 0.171864 2.179275 -0.369611 0.187225 2.153061 -0.350715 0.171864 2.158702 -0.34768 -0.171864 2.151832 -0.318412 -0.187225 2.145438 -0.318211 -0.187225 2.155084 -0.28625 -0.171864 2.160524 -0.289634 -0.187225 2.179399 -0.263418 -0.171864 2.182435 -0.269059 -0.187225 2.211901 -0.255795 -0.171864 2.2117 -0.262192 -0.187225 2.243862 -0.265444 -0.171864 2.240478 -0.270884 -0.187225 2.266717 -0.289757 -0.171864 2.261076 -0.292792 -0.187225 2.27434 -0.322261 -0.171864 2.267923 -0.32206 -0.187225 2.264694 -0.354222 -0.171864 2.259254 -0.350838 -0.187225 2.240356 -0.377077 -0.171864 2.23732 -0.371434 -0.187225 2.207852 -0.3847 -0.171864 2.208055 -0.378281 -0.187225 2.175893 -0.375051 -0.171864 2.179275 -0.369611 -0.187225 2.153061 -0.350715 -0.171864 2.158702 -0.34768 0.170386 2.209877 -0.320235 -0.170386 2.209877 -0.320235 -0.1231459 3.18065 0.215452 -0.119381 3.164797 0.267697 -0.107738 3.165129 0.267247 -0.107646 3.181094 0.214837 -0.09817498 3.158689 0.265325 -0.09494096 3.172554 0.212287 -0.09436297 3.147975 0.262657 -0.08988195 3.158299 0.20876 -0.097736 3.137038 0.260273 -0.09438699 3.143778 0.205588 -0.107045 3.130066 0.259081 -0.106745 3.134531 0.204006 -0.118711 3.129736 0.259554 -0.122222 3.134088 0.20462 -0.128274 3.136174 0.261479 -0.134927 3.142628 0.207173 -0.132086 3.146887 0.264124 -0.140009 3.15686 0.2107 -0.12869 3.157825 0.266508 -0.135505 3.171404 0.213872 -0.11319 3.14734 0.263763 0.372557 2.485278 0.004402995 0.353338 2.407172 -0.01149398 0.330053 2.394611 -0.01775699 0.334973 2.497914 -0.002463996 0.351305 2.611367 0.01668995 0.388912 2.599681 0.02500599 0.280757 3.082399 -0.03189599 0.181058 3.081267 -0.03118896 0.187503 3.122961 -0.03485697 0.266782 3.10294 -0.02472996 0.273943 3.100461 -0.022686 0.195657 3.115797 0.06379997 0.1888419 3.079477 0.115669 0.254862 3.064612 0.110335 0.261654 3.100868 0.061634 0.200993 3.13975 0.009658992 0.267105 3.125342 0.01004195 0.204805 3.151159 -0.04431694 0.271055 3.137546 -0.04213398 0.206514 3.150937 -0.103615 0.273296 3.137567 -0.09884899 0.204758 3.133196 -0.157045 0.270409 3.11823 -0.150866 0.19799 3.099422 -0.203663 0.263201 3.083757 -0.196121 0.191615 3.069609 -0.230854 0.256664 3.052646 -0.222739 0.186694 3.042249 -0.252827 0.25142 3.023739 -0.2439489 0.187595 3.118371 0.03975099 0.178263 3.065254 0.1212249 0.186394 3.070674 0.112733 0.195056 3.11914 0.03480499 0.194687 3.143746 -0.04410696 0.201686 3.142436 -0.04538398 0.195911 3.142898 -0.10276 0.20298 3.142145 -0.102483 0.189997 3.108622 -0.180055 0.197343 3.109031 -0.176578 0.176299 3.03339 -0.251579 0.183899 3.036546 -0.2460139 0.263733 3.103545 0.03430199 0.253084 3.055642 0.107312 0.258743 3.047091 0.11396 0.269924 3.101875 0.03925395 0.270663 3.128313 -0.04322898 0.277454 3.126562 -0.04160296 0.272395 3.127278 -0.09822499 0.27884 3.124256 -0.09732198 0.26528 3.092566 -0.169565 0.272141 3.090099 -0.173049 0.2492949 3.017809 -0.237015 0.255047 3.010256 -0.240521 0.183991 3.107553 0.03454399 0.175352 3.053092 0.116683 0.187618 3.127832 -0.07989299 0.18614 3.099308 -0.174192 0.171679 3.024513 -0.239907 0.255832 3.032732 0.104935 0.271309 3.085222 -0.166447 0.251143 2.997763 -0.234328 0.275514 3.10926 -0.08252197 0.265696 3.08382 0.03168398 0.186071 3.093122 -0.07168298 0.28286 3.08592 -0.07580196 0.281104 3.106285 -0.08376896 0.098383 2.914603 -0.350738 0 2.91477 -0.351323 0 2.936137 -0.320748 0.108455 2.933982 -0.310648 0 2.989195 -0.286382 0.22802 2.929872 -0.281053 0.200993 2.912014 -0.35075 0.237999 2.833122 -0.281942 0.2074609 2.755047 -0.354277 0.300947 2.931533 -0.239228 0.110972 2.993443 -0.273249 0 3.027634 -0.256807 0.09563398 3.042582 -0.243709 0.1472859 3.070031 -0.215982 0.176253 3.103998 -0.172051 0.284384 3.009003 -0.213441 0.280295 3.084298 -0.163506 0.288173 3.07336 -0.152647 0.29598 3.007384 -0.194347 0.312266 2.93567 -0.228172 0.343012 2.838667 -0.23497 0.333079 2.825871 -0.243557 0.37161 2.746444 -0.180764 0.362601 2.727389 -0.198101 0.374243 2.71541 -0.127673 0.240933 2.741857 -0.282658 0.240148 2.651753 -0.277308 0.308223 2.583321 -0.205871 0.36625 2.673633 -0.139905 0.358165 2.675299 -0.04053294 0.347609 2.651589 -0.04193794 0.335643 2.556495 -0.138745 0.330653 2.518962 -0.05043596 0.327789 2.447461 -0.05026996 0.326334 2.452765 -0.125733 0.29173 2.450533 -0.190838 0.2207199 2.446119 -0.246745 0.231832 2.557271 -0.2678 0.205036 2.59477 -0.357888 0.110395 2.545467 -0.309514 0.116655 2.43659 -0.279378 0 2.541596 -0.317992 0 2.433622 -0.291487 0.100346 2.5845 -0.358211 0 2.582324 -0.358283 0.09778195 2.882018 -0.351427 0 2.882436 -0.351346 0.171772 2.878294 -0.351494 0.1760219 2.754513 -0.354354 0.17526 2.625691 -0.357195 0.098706 2.617158 -0.357412 0 2.615146 -0.357396 0.1684679 2.628563 -0.345243 0.095842 2.624222 -0.344437 0 2.622231 -0.344536 0.167544 2.753668 -0.341478 0.165119 2.874134 -0.339715 0.09500998 2.873839 -0.338805 0 2.874278 -0.338842 0 2.57063 0.315666 0 2.550443 0.2793 0.01023298 2.550235 0.277087 0.103326 2.550827 0.305426 0.08424597 2.53844 0.262088 0.01268196 2.551185 0.268275 0.10991 2.528891 0.254576 0.1878719 2.506288 0.289169 0.173666 2.487651 0.233685 0.113352 2.528683 0.241363 0.229891 2.455364 0.2167659 0.283368 2.453028 0.235835 0.219681 2.457011 0.21179 0.255093 2.448097 0.2053689 0.256294 2.43917 0.187554 0.350681 2.421876 0.118162 0.306283 2.419478 0.133837 0.335389 2.40361 0.04879897 0.377084 2.678297 0.06150197 0.368422 2.654654 0.06668299 0.369253 2.756726 0.139213 0 2.420517 -0.270161 0.114229 2.426442 -0.261009 0.206375 2.433155 -0.210676 0.265327 2.437778 -0.162818 0.303234 2.442966 -0.107306 0.293578 2.367736 -0.08599197 0.329337 2.345117 -0.01957499 0.252645 2.370527 -0.152455 0.196927 2.368528 -0.198385 0.1112959 2.363638 -0.246627 0 2.356255 -0.2558 0 2.292435 -0.262739 0.116863 2.29112 -0.247976 0.1965579 2.292793 -0.198385 0.255301 2.290626 -0.149667 0.295934 2.288076 -0.08658498 0.329776 2.283661 -0.01743799 0 2.097783 0.251247 0 2.011033 0.244267 0.02919799 2.0986 0.242024 0.110164 1.999779 0.224442 0.132363 2.099665 0.22736 0.09549498 1.884043 0.223918 0 1.880834 0.238002 0 1.798628 0.221079 0.08667099 1.79964 0.206972 0 1.737672 0.196461 0.13629 1.879913 0.200522 0.207669 1.99022 0.193798 0.249734 2.101583 0.178767 0.253938 2.045071 0.172731 0.306768 2.084094 0.11569 0.30917 2.111583 0.121114 0.34449 2.108374 0.07415795 0.3392 2.119272 0.07016396 0.358928 2.122453 -0.01470696 0.337722 2.103826 -0.07208597 0.329244 2.128788 -0.11766 0.332293 2.003645 -0.09392195 0.358004 2.006808 -0.07273495 0.279626 2.021472 -0.174587 0.27914 2.127709 -0.180697 0.208501 2.022114 -0.222584 0.211157 2.134574 -0.22628 0.132317 2.023481 -0.253344 0.125641 2.132557 -0.250762 0 2.13216 -0.267089 0 2.025514 -0.261496 0.140101 1.889908 -0.25525 0 1.887986 -0.2627 0.220582 1.913902 -0.220526 0.287479 1.94463 -0.16866 0.335735 1.913588 -0.08635395 0.376368 1.911721 -0.07363098 0.356063 1.891583 -0.07172697 0.307299 1.875526 -0.1289319 0.268099 1.833512 -0.173744 0.19143 1.809458 -0.215513 0.111042 1.803327 -0.226715 0 1.797032 -0.228503 0.08412998 1.745304 -0.191843 0 1.742916 -0.19431 0.129429 1.759053 -0.197082 0.230238 1.75618 -0.172284 0.292608 1.783604 -0.143171 0.342157 1.81049 -0.084019 0.37258 1.834205 -0.01776397 0.377639 1.860382 0.02835297 0.366458 1.896471 0.07580095 0.382628 1.91785 0.07656097 0.345276 1.926408 0.09519797 0.363132 2.014468 0.07696998 0.319819 2.022936 0.114768 0.303696 1.992932 0.142567 0.270663 2.012668 0.182299 0.2623 2.028882 0.177515 0.226195 1.985258 0.185193 0.313282 2.053504 0.115242 0.2169319 1.987727 0.189508 0.1728799 1.874105 0.190765 0.154585 1.877009 0.195643 0.101848 1.793777 0.190977 0.117025 1.787889 0.174985 0.04795598 1.733916 0.122507 0.06363999 1.68822 0.115715 0.03892296 1.643881 0.03741997 0.04197299 1.704798 0.02693295 0.05243694 1.648548 -0.03259396 0.04525297 1.638977 -0.03414195 0.02658796 1.685729 -0.06803399 0 1.717628 0.028494 0 1.681479 -0.06723195 0 1.738876 0.139871 0.04807096 1.744507 0.191878 0.143844 1.710322 -0.154042 0.07440495 1.712696 -0.149794 0.08673995 1.670885 -0.107967 0 1.708686 -0.1538529 0.14784 1.464656 -0.129501 0.08909696 1.451939 -9.26e-4 0.05786496 1.560051 -0.01647698 0.123885 1.587668 -0.145289 0.255001 1.49995 -0.189727 0.235204 1.640363 -0.203361 0.302287 1.509151 -0.18893 0.145969 1.697085 -0.170776 0.08452296 1.660278 -0.119746 0.220951 1.738568 -0.2039729 0.281381 1.651867 -0.204991 0.381127 1.667293 -0.114141 0.39471 1.523579 -0.105606 0.42996 1.527903 0.02841997 0.414899 1.676961 0.02660495 0.41014 1.543658 0.131904 0.395541 1.707751 0.128298 0.361746 1.548742 0.207688 0.382305 1.807436 0.118164 0.338045 1.725244 0.207713 0.30388 1.55049 0.25009 0.290667 1.7249 0.240912 0.326819 1.858019 0.187803 0.353961 1.932352 0.120319 0.373874 1.886577 0.08165895 0.382975 1.847762 0.02974396 0.377385 1.811724 -0.04552996 0.309725 1.99463 0.159848 0.281704 1.869451 0.219155 0.2327319 1.854722 0.220425 0.242296 1.713773 0.242765 0.254516 1.541253 0.245156 0.143705 1.657903 0.203428 0.1632249 1.514332 0.207013 0.07461297 1.592627 0.120728 0.104989 1.479767 0.128619 0.349919 1.788797 -0.119089 0.259598 1.756635 -0.202691 0 3.087662 0.125327 0 3.022942 0.12283 0.06735998 3.031563 0.116228 0.06172299 3.091863 0.1207579 0.119335 3.028456 0.07842296 0.04947996 3.166661 0.127677 0.111319 3.100614 0.09471499 0.156295 3.060503 0.01852697 0.150635 3.1223 0.03833496 0.1696 3.14248 -0.04173398 0.15738 3.216802 -0.01466995 0.137283 3.191826 0.05249094 0.09988397 3.178502 0.101419 0 3.165647 0.135865 0.128944 3.240325 -0.106028 0.139686 3.163434 -0.12959 0.151513 3.107613 -0.149678 0.172118 3.096638 -0.1532379 0.137676 3.068867 -0.206677 0.092839 3.043926 -0.22956 0.07592999 3.099359 -0.188038 0 3.026753 -0.239953 0 3.089188 -0.199135 0.05992096 3.167929 -0.16671 0.05627197 3.246363 -0.144097 0 3.247359 -0.150669 0 3.165552 -0.175465 0 3.038086 0.151731 0.074521 3.045811 0.139423 0.12444 3.055751 0.122539 0.16595 3.078865 0.09176999 0.165304 3.054622 0.04242599 0.554331 2.443467 -0.155324 0.505174 2.428011 -0.09701496 0.42638 2.538318 -0.107458 0.472095 2.569999 -0.172309 0.600046 2.458695 -0.187812 0.434303 2.652106 -0.171099 0.382005 2.607893 -0.10419 0.385816 2.672843 -0.10623 0.412682 2.716484 -0.176634 0.393162 2.745645 -0.177528 0.398129 2.846742 -0.222189 0.391845 2.93416 -0.201984 0.387248 3.000318 -0.170644 0.36692 3.064492 -0.107555 0.347239 3.056989 -6.14e-4 0.284707 3.073099 0.01267796 0.285793 3.034476 0.06106096 0.342365 3.01795 0.05148094 0.298775 2.97382 0.09753996 0.442504 3.023751 -0.025038 0.452575 3.0109 -0.09933197 0.452945 2.967297 -0.152134 0.442943 2.918283 -0.187225 0.425317 2.831718 -0.204569 0.450843 2.779618 -0.198863 0.475467 2.729323 -0.209371 0.525895 2.611259 -0.209729 0.633956 2.473599 -0.190083 0.559366 2.632709 -0.208833 0.694132 2.49841 -0.133776 0.505382 2.741928 -0.208311 0.517278 2.823271 -0.168918 0.486925 2.884319 -0.17072 0.508339 2.916999 -0.131002 0.518918 2.944626 -0.08067899 0.520928 2.947678 -0.02842599 0.43197 2.969819 0.04959595 0.34419 2.965474 0.08712697 0.325502 2.883476 0.128321 0.354654 2.883236 0.114831 0.454978 2.882318 0.07457697 0.501201 2.910018 0.030788 0.560452 2.849801 -0.04457998 0.548163 2.837602 -0.1239539 0.580549 2.773735 -0.135285 0.633656 2.670528 -0.13574 0.721967 2.518066 -0.04070198 0.653938 2.686913 -0.04089599 0.605058 2.782809 -0.04363095 0.531439 2.831124 0.02665799 0.483298 2.796814 0.067487 0.410233 2.778242 0.109 0.384407 2.759937 0.125916 0.385724 2.697484 0.05505198 0.43294 2.757551 0.09703201 0.41386 2.709468 0.061333 0.378424 2.67781 -0.03785997 0.381866 2.598865 -0.01786297 0.423307 2.628105 0.04995197 0.448925 2.671074 0.073632 0.473065 2.734536 0.09715396 0.50522 2.753099 0.09659296 0.577893 2.775622 0.03512597 0.628967 2.671113 0.038109 0.690043 2.505962 0.03964495 0.564333 2.638755 0.100532 0.635666 2.483689 0.09137499 0.529729 2.611993 0.106526 0.472303 2.561104 0.06245797 0.431115 2.525645 -0.009876966 0.506929 2.429418 0.002205967 0.550565 2.449903 0.05832296 0.602356 2.470166 0.09353196 0.684938 2.492994 0.02341198 0.643335 2.469392 0.05195695 0.607876 2.454922 0.05848997 0.560937 2.437496 0.03051799 0.527673 2.423892 -0.01333796 0.521321 2.418369 -0.08982396 0.638045 2.471765 -0.1557739 0.583044 2.443125 -0.161831 0.673989 2.357805 0.05844295 0.613143 2.335565 0.05373299 0.682651 2.35598 0.07906895 0.747886 2.39502 0.04828399 0.74449 2.48304 -0.01833897 0.760082 2.44744 -0.003815948 0.756848 2.498766 -0.04517894 0.737444 2.50468 -0.06734299 0.767336 2.518655 -0.05874496 0.773827 2.510882 -0.09723699 0.731531 2.492649 -0.09936898 0.759366 2.498154 -0.104393 0.722799 2.465514 -0.146564 0.708754 2.471028 -0.135088 0.662138 2.434269 -0.167886 0.66625 2.426052 -0.179297 0.603349 2.396403 -0.1703709 0.611827 2.389009 -0.187218 0.662901 2.419231 -0.1933439 0.520836 2.388542 -0.02699398 0.503603 2.378071 -0.025581 0.552621 2.357997 0.006389975 0.499214 2.370326 -0.06464999 0.515523 2.373601 -0.07663196 0.537214 2.397512 -0.111494 0.593185 2.419764 -0.166112 0.553129 2.376655 -0.133164 0.65008 2.453017 -0.161841 0.701455 2.484731 -0.134432 0.697643 2.222818 -0.104735 0.655855 2.210966 -0.07374197 0.763432 2.11396 -0.05922996 0.732062 2.103606 -0.02761095 0.823007 2.018106 -0.022753 0.796188 2.009547 0.006449997 0.827927 2.015237 -0.038311 0.769276 2.114329 -0.0769 0.704388 2.223514 -0.120866 0.759643 2.248043 -0.1279 0.766227 2.259552 -0.113261 0.802286 2.285775 -0.08924198 0.828643 2.144426 -0.068623 0.822106 2.135764 -0.08249396 0.873804 2.039441 -0.04697597 0.878377 2.048044 -0.03428 0.862716 2.171042 -0.04093998 0.9085 2.070358 -0.008147001 0.839315 2.312035 -0.04566794 0.853175 2.318496 -0.03937798 0.850172 2.329076 -0.001251995 0.838414 2.321222 0.006966948 0.899445 2.21271 0.03036797 0.903487 2.2007 4.92e-4 0.889673 2.190559 -0.006030976 0.938368 2.092303 0.031955 0.948255 2.10396 0.03443098 0.946569 2.110384 0.06531298 0.887733 2.206129 0.037184 0.933517 2.102514 0.073026 0.803718 2.30386 0.06415796 0.847862 2.203038 0.08592998 0.895356 2.102172 0.120254 0.780965 2.169141 0.114844 0.835227 2.078524 0.145101 0.730399 2.269443 0.09791898 0.708639 2.45009 0.03118497 0.64583 2.414449 0.05095398 0.586093 2.390935 0.033782 0.557749 2.370002 0.00525099 0.627003 2.207519 -0.02230298 0.612473 2.204504 -0.01305598 0.620466 2.205556 0.02777296 0.634788 2.218681 0.038037 0.665511 2.233206 0.073659 0.730468 2.134352 0.09333395 0.791983 2.046609 0.131936 0.771794 2.021622 0.100157 0.712704 2.107692 0.06422096 0.69956 2.09642 0.057778 0.69762 2.091899 0.02792096 0.710856 2.099282 0.01426196 0.773157 2.00715 0.04556 0.758604 2.002331 0.05696696 0.756848 2.011465 0.09169298 0.911965 2.083782 0.06527197 0.884499 2.084163 0.107577 0.84643 2.064257 0.127221 0.822244 2.045175 0.11058 0.799052 2.027646 0.08741796 0.796765 2.017256 0.05245298 0.818941 2.010095 0.001002967 0.898359 2.059956 0.004289984 0.873665 2.037552 -0.02692496 0.852228 2.022629 -0.02448999 0.817139 2.039843 0.126949 0.858789 2.069166 0.137122 0.88212 2.050737 0.157438 0.896927 2.085692 0.128282 0.916931 2.077085 0.07352495 0.919773 2.0579 0.008744001 0.908708 2.038527 -0.04223096 0.924462 2.000146 -0.03755795 0.884961 2.024722 -0.04246699 0.851581 2.003595 -0.03743594 0.860221 1.977141 -0.04231399 0.888264 1.988025 -0.04455 0.908384 1.992185 -0.03936696 0.948255 1.949256 -0.02209299 0.962669 1.983248 0.03145098 0.936659 2.067972 0.02033096 0.979093 1.989148 0.04494798 0.933517 2.080254 0.063371 0.956733 2.008157 0.109316 0.921159 2.018739 0.189365 0.967913 1.979139 0.130959 0.97512 2.00727 0.09647095 0.986208 1.973292 0.129501 0.967798 1.950388 0.1876299 0.926102 1.968358 0.192405 0.897828 2.009929 0.192948 0.868491 2.031479 0.185891 0.817809 2.035002 0.148642 0.815338 2.023803 0.184306 0.857657 2.004694 0.214606 0.81148 2.005868 0.218845 0.886208 1.970756 0.211372 0.907368 1.948395 0.210966 0.919241 1.915912 0.220166 0.950819 1.932107 0.1905609 0.994062 1.912144 0.1370159 0.975305 1.896827 0.141587 0.998313 1.898725 0.06736201 0.991267 1.951853 0.04510295 0.973111 1.949263 0.03256398 0.983205 1.898889 0.01297795 0.979117 1.880844 0.07270997 0.967359 1.883348 0.01189398 0.929798 1.939952 -0.026932 0.926356 1.908644 -0.028099 0.907045 1.941966 -0.04081499 0.875351 1.926995 -0.03692495 0.894524 1.887707 -0.02443498 0.91282 1.84788 -0.009132981 0.951697 1.866639 -0.01087695 0.970408 1.844717 0.003469944 0.948486 1.831017 -0.006684958 0.984799 1.788596 0.01725095 0.98831 1.794715 0.04358994 0.976737 1.849813 0.03550297 0.977754 1.854888 0.06756097 0.960452 1.827316 0.05354398 0.969992 1.786776 0.06084996 0.965534 1.830169 0.05759096 0.99993 1.792636 0.086272 0.978631 1.778245 0.06959795 0.98443 1.76143 0.07428801 1.00679 1.77614 0.09086 0.997389 1.798099 0.110829 0.981288 1.859381 0.09436798 0.980272 1.871121 0.127371 0.962323 1.835556 0.112798 0.979301 1.790465 0.124567 1.00351 1.781243 0.115011 0.986278 1.773884 0.128646 1.027627 1.732809 0.1019729 1.004365 1.717919 0.08926796 1.012519 1.702507 0.09525096 1.03354 1.71596 0.106339 1.030029 1.673078 0.108217 1.023954 1.737667 0.124932 1.00522 1.733315 0.137942 1.030352 1.720772 0.128605 1.01208 1.716501 0.141266 1.022983 1.685443 0.146517 1.039592 1.689407 0.135091 1.032085 1.667471 0.13867 1.040447 1.685919 0.114539 1.032247 1.662449 0.122303 0.962877 1.836448 0.121342 1.003672 1.806369 0.156286 0.987109 1.787663 0.142035 0.995102 1.772237 0.148298 1.010255 1.790493 0.1629779 0.997042 1.813313 0.179455 0.975444 1.877302 0.162354 0.963848 1.890393 0.194276 0.953221 1.895429 0.216304 0.927511 1.890164 0.2267079 0.968329 1.851243 0.241381 0.981542 1.844445 0.217766 0.951073 1.856621 0.181562 0.952274 1.855062 0.176041 0.976252 1.80773 0.193728 1.003487 1.796838 0.184687 0.984014 1.791885 0.199219 1.031207 1.745845 0.180698 1.017278 1.731832 0.165029 1.025039 1.716954 0.172569 1.037236 1.729582 0.18687 1.041048 1.684625 0.191102 1.023884 1.752084 0.202063 1.006074 1.745288 0.21307 1.030306 1.735688 0.207616 1.013674 1.729148 0.217898 1.031831 1.6907 0.229252 1.045852 1.689428 0.221873 1.036474 1.674233 0.222952 1.040285 1.670058 0.204849 1.049433 1.685591 0.202742 0.971725 1.822377 0.20316 0.979394 1.808051 0.212047 0.98734 1.828795 0.225701 0.999052 1.793934 0.243112 0.990251 1.778855 0.229487 0.995171 1.764459 0.239185 1.003949 1.778554 0.251592 1.007414 1.734117 0.266507 1.014552 1.743036 0.275957 1.007021 1.729728 0.280536 0.999629 1.73326 0.293668 1.004665 1.748587 0.29596 0.991729 1.740419 0.298572 0.992237 1.785538 0.277466 0.986578 1.801086 0.269189 0.973711 1.835824 0.250069 0.945991 1.843851 0.251088 0.952251 1.82846 0.259175 0.967867 1.791964 0.278258 0.974797 1.776408 0.285565 0.899144 1.896219 0.214223 0.87907 1.92 0.2075819 0.866158 1.937646 0.210194 0.850981 1.946974 0.2143149 0.84248 1.945637 0.231298 0.839777 1.976946 0.241384 0.806259 1.987692 0.245068 0.834788 1.960934 0.27681 0.837398 1.932613 0.267715 0.831554 1.949601 0.300116 0.834072 1.924272 0.292058 0.829405 1.916351 0.318748 0.830607 1.942151 0.317544 0.821436 1.933576 0.342541 0.815915 1.916517 0.342407 0.798844 1.919883 0.344382 0.805127 1.938972 0.345077 0.801016 1.949467 0.326743 0.799653 1.961111 0.303058 0.802078 1.972061 0.280111 0.204227 0.777895 -0.157664 0.206306 0.642291 -0.02555096 0.173158 0.775342 -0.01895999 0.2230769 0.640374 -0.140979 0.234673 0.515278 -0.01864898 0.325387 0.642727 -0.202899 0.32906 0.789329 -0.226248 0.376784 0.791436 -0.215128 0.373827 0.641344 -0.199133 0.332432 0.518145 -0.18787 0.243636 0.511827 -0.125569 0.260152 0.370055 -0.109584 0.253407 0.378681 -0.01678395 0.245899 0.221882 -0.03547894 0.252668 0.207313 -0.09832495 0.269716 0.190665 -0.093409 0.267267 0.205858 -0.02619296 0.295172 0.205779 -0.147156 0.278193 0.22012 -0.152691 0.32377 0.253693 -0.194862 0.348972 0.230552 -0.172987 0.360406 0.25687 -0.195978 0.333079 0.383217 -0.172536 0.367937 0.516278 -0.181062 0.414275 0.640764 -0.170549 0.433125 0.793947 -0.184444 0.457103 0.64452 -0.08037197 0.481866 0.796107 -0.06860899 0.40261 0.514518 -0.152534 0.35969 0.381307 -0.168595 0.406444 0.378279 -0.134017 0.41841 0.238297 -0.15079 0.408015 0.219554 -0.14863 0.437514 0.2038969 -0.08714699 0.453268 0.223324 -0.08525997 0.439293 0.216759 -0.02200698 0.438715 0.383601 -0.05733895 0.439316 0.515645 -0.07759499 0.425641 0.518258 0.01733398 0.440448 0.647712 0.02932995 0.459598 0.788846 0.03792995 0.37385 0.649413 0.10848 0.375722 0.782577 0.123109 0.371771 0.512164 0.08970201 0.416747 0.397435 0.02115297 0.42765 0.267577 0.03889095 0.454054 0.236392 -0.02828598 0.41908 0.24526 0.02521598 0.378286 0.2480199 0.07185995 0.385678 0.270677 0.100802 0.328713 0.247057 0.08534097 0.377108 0.393931 0.080289 0.341649 0.393652 0.080922 0.33622 0.514035 0.08964395 0.335181 0.647699 0.107655 0.327974 0.785733 0.124927 0.271956 0.648267 0.05653697 0.259575 0.781773 0.06810599 0.28972 0.517555 0.04723995 0.300046 0.384687 0.04128897 0.338022 0.269799 0.108224 0.273412 0.257671 0.046597 0.286001 0.2387199 0.04291796 0.260845 0.104696 -0.003510951 0.261838 0.03051495 -0.01428496 0.265373 0.02706396 0.04727596 0.269508 0.137461 0.102236 0.259113 0.017609 0.133987 0.278863 0.188623 0.06009 0.26461 0.174373 -0.01688599 0.321552 0.214024 0.116031 0.31617 0.174054 0.170189 0.264726 0.112532 0.176073 0.25902 0.02736896 0.262203 0.267914 0.103375 0.26051 0.290621 0.039397 0.345673 0.28778 0.09595298 0.331788 0.34255 0.05254095 0.385983 0.324694 0.136417 0.305163 0.317925 0.143698 0.248542 0.427627 0.1396279 0.222023 0.416447 0.167667 0.148549 0.401339 0.205745 0.103373 0.434927 0.186743 0.05469596 0.450334 0.171797 -0.009847998 0.464518 0.10003 -0.006345987 0.472233 0.09540998 0.104805 0.474659 0.08856099 0.203867 0.455024 0.088355 0.296641 0.425456 0.127551 0.29146 0.393 0.117953 0.357466 0.348094 0.1223739 0.360633 0.342342 0.09501498 0.377715 0.403696 0.09769195 0.363603 0.405012 0.04843395 0.369242 0.457611 0.03043395 0.30024 0.485608 0.01863497 0.203451 0.483437 0.01971095 0.102351 0.471794 0.02603095 0.02911996 0.464056 0.029531 -0.02430599 0.448371 0.09868597 -0.09699195 0.453314 0.01071596 -0.071464 0.441741 0.156985 -0.09360098 0.406583 0.1700479 -0.158214 0.412243 0.1004019 -0.174031 0.422199 0.00812 -0.154144 0.346569 0.101497 -0.197269 0.352645 0.007093966 -0.186791 0.293901 0.007809996 -0.1639569 0.288473 0.100381 -0.164414 0.268099 0.009281992 -0.11711 0.343289 0.1728 -0.17954 0.292053 0.165909 -0.1531389 0.26237 0.106001 -0.096574 0.260406 0.011123 -0.05848896 0.267406 0.167535 -0.09249895 0.254654 2.373312 0.193019 0.308916 2.365992 0.13064 0.251259 2.275939 0.194299 0.306214 2.280758 0.1366 0.331531 2.281407 0.07186698 0.335042 2.35525 0.05362498 0.2274889 2.372492 0.221379 0.25112 2.371106 0.20885 0.227443 2.274888 0.220492 0.253546 2.274701 0.210839 0.218988 2.371961 0.2110649 0.217671 2.275285 0.216159 0.111019 2.373393 0.256664 0.114576 2.37298 0.243504 0.119681 2.274123 0.258651 0.124648 2.274322 0.245101 -0.254654 2.373312 0.193019 -0.256294 2.43917 0.187554 -0.306283 2.419478 0.133837 -0.308916 2.365992 0.13064 -0.251259 2.275939 0.194299 -0.335389 2.40361 0.04879897 -0.306214 2.280758 0.1366 -0.331531 2.281407 0.07186698 -0.335042 2.35525 0.05362498 -0.330053 2.394611 -0.01775699 -0.329337 2.345117 -0.01957499 -0.329776 2.283661 -0.01743799 -0.2274889 2.372492 0.221379 -0.229891 2.455364 0.2167659 -0.255093 2.448097 0.2053689 -0.25112 2.371106 0.20885 -0.227443 2.274888 0.220492 -0.253546 2.274701 0.210839 -0.218988 2.371961 0.2110649 -0.219681 2.457011 0.21179 -0.217671 2.275285 0.216159 -0.111019 2.373393 0.256664 -0.11282 2.528891 0.254576 -0.116262 2.528683 0.241363 -0.114576 2.37298 0.243504 -0.119681 2.274123 0.258651 -0.124648 2.274322 0.245101 0.197551 2.373737 0.238928 0.197805 2.439591 0.236974 0.154886 2.439974 0.249236 0.154816 2.374121 0.251164 0.154724 2.291437 0.253601 0.197274 2.291053 0.241432 0.198152 2.444828 0.223498 0.146477 2.445477 0.236743 0.147378 2.372809 0.238055 0.14717 2.28632 0.241559 0.197274 2.284634 0.226889 0.197413 2.372375 0.224248 -0.171055 2.390663 0.232525 -0.211573 2.387574 0.213671 -0.210187 2.384548 0.235052 -0.174659 2.386295 0.245096 -0.145415 2.385114 0.253061 -0.139478 2.388413 0.2411479 -0.134419 2.368244 0.239864 -0.141326 2.368635 0.253047 -0.145391 2.35219 0.254096 -0.138161 2.347251 0.2425799 -0.214922 2.367482 0.214904 -0.210834 2.347394 0.215512 -0.20954 2.351629 0.236249 -0.213051 2.368059 0.234738 -0.171725 2.34486 0.2333869 -0.1752369 2.349487 0.246092 0.164287 0.938243 -0.02888399 0.19762 0.941404 -0.140866 0.160453 0.991099 -0.03105294 0.317694 0.957504 -0.21838 0.361654 0.960399 -0.212347 0.422568 0.961939 -0.17061 0.470085 0.960168 -0.04605197 0.455717 0.972651 0.04306495 0.366297 0.958615 0.142931 0.30589 0.955527 0.146865 0.20358 0.962464 0.07409995 0.194872 1.023681 0.09313899 0.1679829 1.051205 -0.004792988 0.188404 1.077562 0.08823496 0.1828359 1.100796 0.01045298 0.259852 1.056326 0.1766549 0.287988 1.014464 0.160938 0.372464 1.017705 0.15009 0.390529 1.070648 0.169064 0.448671 1.032919 0.05834394 0.293162 1.166959 0.216329 0.232086 1.112168 0.179732 0.266597 1.191108 0.223615 0.343012 1.175032 0.215082 0.367036 1.207442 0.219011 0.419334 1.117742 0.168787 0.442249 1.091759 0.08037 0.446269 1.073233 -0.009089946 0.465557 1.01537 -0.01774096 0.413513 1.025698 -0.1590459 0.390967 1.074577 -0.138487 0.393462 1.120075 -0.100487 0.420767 1.122143 -0.00891596 0.41878 1.148206 0.074045 0.408962 1.129137 0.143077 0.384338 1.160493 0.145812 0.406745 1.175647 0.09707999 0.373412 1.184811 0.157043 0.424324 1.168671 0.01920598 0.383067 1.168181 -0.08027499 0.31677 1.158839 -0.123107 0.302772 1.109729 -0.117958 0.236636 1.146143 -0.1019999 0.34844 1.055661 -0.177112 0.353453 1.01518 -0.1959249 0.310949 1.014654 -0.200161 0.308246 1.052519 -0.182977 0.224324 1.066934 -0.127223 0.237722 1.107504 -0.09454596 0.171564 1.133988 0.01132798 0.200716 0.99913 -0.130016 0.202726 0.968255 0.117946 0.203141 1.004404 0.124715 0.252113 0.99719 0.164301 0.255209 0.962018 0.1584939 0.307091 0.964346 0.173028 0.305613 0.999842 0.178824 0.400623 0.970195 0.148138 0.397089 1.009313 0.1559 0.462855 0.985367 0.07784301 0.454793 1.02138 0.082372 0.361654 1.208996 0.191229 0.264449 1.195053 0.1998479 0.2347649 1.120211 0.153248 0.230307 1.144623 0.150517 0.23659 1.171491 0.164119 0.181381 1.145822 0.09524399 0.186071 1.115936 0.08483499 -0.17325 0.775342 -0.01895999 -0.204504 0.777895 -0.157664 -0.164287 0.938243 -0.02888399 -0.209748 0.941129 -0.1570129 -0.163248 0.991099 -0.03105294 -0.209078 0.998664 -0.144906 -0.318041 0.957504 -0.21838 -0.32966 0.789329 -0.226248 -0.377431 0.791436 -0.215128 -0.362069 0.960399 -0.212347 -0.424994 0.961939 -0.17061 -0.433795 0.793947 -0.184444 -0.482559 0.796107 -0.06860899 -0.472534 0.960168 -0.04605197 -0.460267 0.788846 0.03792995 -0.424601 1.023824 -0.14951 -0.358004 1.015187 -0.197172 -0.308824 1.014601 -0.202585 -0.468352 1.017322 -0.01366597 -0.46066 0.954709 0.03990799 -0.449203 1.036197 0.06189399 -0.413028 0.95707 0.104754 -0.376276 0.782577 0.123109 -0.361099 0.948828 0.165334 -0.328482 0.785733 0.124927 -0.39173 1.067844 0.151102 -0.344767 1.069906 0.216812 -0.312682 0.952628 0.16496 -0.299399 1.070863 0.21632 -0.247193 1.058266 0.160418 -0.220582 0.947594 0.08048498 -0.259944 0.781773 0.06810599 -0.186648 1.020041 0.08093595 -0.1679829 1.337056 -0.100877 -0.14784 1.464656 -0.129501 -0.08909696 1.451939 -9.26e-4 -0.125872 1.32424 0.02675199 -0.159274 1.210927 -0.01214295 -0.104989 1.479767 0.128619 -0.149873 1.208684 0.05548197 -0.1796489 1.219948 0.137381 -0.146777 1.339687 0.126339 -0.228413 1.237617 0.187094 -0.1998839 1.366688 0.196489 -0.1632249 1.514332 0.207013 -0.274151 1.37463 0.230769 -0.254516 1.541253 0.245156 -0.278771 1.254695 0.2105939 -0.340332 1.261024 0.209769 -0.325017 1.379227 0.228498 -0.30388 1.55049 0.25009 -0.361746 1.548742 0.207688 -0.369046 1.382759 0.194505 -0.389096 1.253517 0.166463 -0.417625 1.373956 0.115094 -0.417117 1.2495 0.11949 -0.41014 1.543658 0.131904 -0.42996 1.527903 0.02841997 -0.433933 1.377197 0.029226 -0.433102 1.249488 0.046341 -0.420489 1.245485 -0.04727196 -0.39769 1.357756 -0.091614 -0.383783 1.243958 -0.113555 -0.39471 1.523579 -0.105606 -0.316147 1.342406 -0.1608819 -0.310141 1.231223 -0.148168 -0.271425 1.340338 -0.160494 -0.206699 1.219322 -0.09512299 -0.255001 1.49995 -0.189727 -0.302287 1.509151 -0.18893 0.125872 1.32424 0.02675199 0.146777 1.339687 0.126339 0.1998839 1.366688 0.196489 0.274151 1.37463 0.230769 0.325017 1.379227 0.228498 0.369046 1.382759 0.194505 0.341788 1.256019 0.211545 0.274798 1.24658 0.212719 0.22601 1.223119 0.188381 0.170963 1.204746 0.12799 0.143543 1.192136 0.02972298 0.181381 1.158061 0.129503 0.154447 1.14248 0.02786296 0.238623 1.188444 0.18806 0.276923 1.20585 0.205817 0.346592 1.218088 0.205502 0.383483 1.24402 0.178341 0.417625 1.373956 0.115094 0.433933 1.377197 0.029226 0.423307 1.237287 0.109635 0.384777 1.193424 0.170062 0.333264 1.210387 0.183257 0.276923 1.201701 0.184893 0.421228 1.183632 0.104779 0.439778 1.232094 0.02377694 0.39769 1.357756 -0.091614 0.316147 1.342406 -0.1608819 0.271425 1.340338 -0.160494 0.1679829 1.337056 -0.100877 0.179949 1.199481 -0.08888399 0.243474 1.215753 -0.135179 0.319981 1.232124 -0.148172 0.384199 1.238871 -0.118803 0.419334 1.236848 -0.06324797 0.435135 1.176199 0.021164 0.414922 1.180465 -0.06667798 0.380157 1.186843 -0.121143 0.322892 1.184776 -0.142827 0.249388 1.172632 -0.1313509 0.1916379 1.151775 -0.08754599 0.01272797 2.466361 0.271864 0.06853801 2.463298 0.26632 0.06763696 2.373791 0.269319 0.01004898 2.462737 0.283003 0 2.450367 0.282791 0.06322497 2.459575 0.27945 -0.01004898 2.462737 0.283003 -0.01023298 2.550235 0.277087 -0.06322497 2.459575 0.27945 -0.05026596 2.449044 0.280451 -0.06470298 2.374137 0.280354 -0.051467 2.374211 0.282664 -0.05026596 2.300097 0.285015 -0.06303995 2.289034 0.283052 0 2.288006 0.285694 0 2.298942 0.28727 0.05026596 2.300097 0.285015 0.06303995 2.289034 0.283052 0.06470298 2.374137 0.280354 0.051467 2.374211 0.282664 0.05026596 2.449044 0.280451 0 2.447523 0.294551 0.04982697 2.447115 0.297013 -0.04982697 2.447115 0.297013 0.06689798 2.286339 0.271534 0.04857897 2.374581 0.294484 0.04809397 2.302342 0.296198 -0.01272797 2.466361 0.271864 -0.01268196 2.551185 0.268275 -0.08424597 2.53844 0.262088 -0.06853801 2.463298 0.26632 -0.06763696 2.373791 0.269319 -0.06689798 2.286339 0.271534 -0.04857897 2.374581 0.294484 -0.04809397 2.302342 0.296198 -0.353338 2.407172 -0.01149398 -0.372557 2.485278 0.004402995 -0.334973 2.497914 -0.002463996 -0.351305 2.611367 0.01668995 -0.388912 2.599681 0.02500599 -0.187503 3.122961 -0.03485697 -0.181058 3.081267 -0.03118896 -0.280757 3.082399 -0.03189599 -0.266782 3.10294 -0.02472996 -0.273943 3.100461 -0.022686 -0.254862 3.064612 0.110335 -0.1888419 3.079477 0.115669 -0.195657 3.115797 0.06379997 -0.261654 3.100868 0.061634 -0.200993 3.13975 0.009658992 -0.267105 3.125342 0.01004195 -0.204805 3.151159 -0.04431694 -0.271055 3.137546 -0.04213398 -0.206514 3.150937 -0.103615 -0.273296 3.137567 -0.09884899 -0.204758 3.133196 -0.157045 -0.270409 3.11823 -0.150866 -0.19799 3.099422 -0.203663 -0.263201 3.083757 -0.196121 -0.191615 3.069609 -0.230854 -0.256664 3.052646 -0.222739 -0.186694 3.042249 -0.252827 -0.25142 3.023739 -0.2439489 -0.186394 3.070674 0.112733 -0.178263 3.065254 0.1212249 -0.187595 3.118371 0.03975099 -0.195056 3.11914 0.03480499 -0.194687 3.143746 -0.04410696 -0.201686 3.142436 -0.04538398 -0.195911 3.142898 -0.10276 -0.20298 3.142145 -0.102483 -0.189997 3.108622 -0.180055 -0.197343 3.109031 -0.176578 -0.176299 3.03339 -0.251579 -0.183899 3.036546 -0.2460139 -0.258743 3.047091 0.11396 -0.253084 3.055642 0.107312 -0.263733 3.103545 0.03430199 -0.269924 3.101875 0.03925395 -0.270663 3.128313 -0.04322898 -0.277454 3.126562 -0.04160296 -0.272395 3.127278 -0.09822499 -0.27884 3.124256 -0.09732198 -0.26528 3.092566 -0.169565 -0.272141 3.090099 -0.173049 -0.2492949 3.017809 -0.237015 -0.255047 3.010256 -0.240521 -0.175352 3.053092 0.116683 -0.183991 3.107553 0.03454399 -0.187618 3.127832 -0.07989299 -0.18614 3.099308 -0.174192 -0.171679 3.024513 -0.239907 -0.255832 3.032732 0.104935 -0.251143 2.997763 -0.234328 -0.271309 3.085222 -0.166447 -0.275514 3.10926 -0.08252197 -0.265696 3.08382 0.03168398 -0.28286 3.08592 -0.07580196 -0.186071 3.093122 -0.07168298 -0.281104 3.106285 -0.08376896 -0.098383 2.914603 -0.350738 -0.108455 2.933982 -0.310648 -0.22802 2.929872 -0.281053 -0.200993 2.912014 -0.35075 -0.237999 2.833122 -0.281942 -0.2074609 2.755047 -0.354277 -0.300947 2.931533 -0.239228 -0.110972 2.993443 -0.273249 -0.09563398 3.042582 -0.243709 -0.1472859 3.070031 -0.215982 -0.176253 3.103998 -0.172051 -0.284384 3.009003 -0.213441 -0.280295 3.084298 -0.163506 -0.288173 3.07336 -0.152647 -0.29598 3.007384 -0.194347 -0.312266 2.93567 -0.228172 -0.343012 2.838667 -0.23497 -0.333079 2.825871 -0.243557 -0.37161 2.746444 -0.180764 -0.362601 2.727389 -0.198101 -0.374243 2.71541 -0.127673 -0.240933 2.741857 -0.282658 -0.240148 2.651753 -0.277308 -0.308223 2.583321 -0.205871 -0.36625 2.673633 -0.139905 -0.358165 2.675299 -0.04053294 -0.347609 2.651589 -0.04193794 -0.335643 2.556495 -0.138745 -0.330653 2.518962 -0.05043596 -0.327789 2.447461 -0.05026996 -0.326334 2.452765 -0.125733 -0.29173 2.450533 -0.190838 -0.2207199 2.446119 -0.246745 -0.231832 2.557271 -0.2678 -0.205036 2.59477 -0.357888 -0.110395 2.545467 -0.309514 -0.116655 2.43659 -0.279378 -0.100346 2.5845 -0.358211 -0.09778195 2.882018 -0.351427 -0.171772 2.878294 -0.351494 -0.1760219 2.754513 -0.354354 -0.17526 2.625691 -0.357195 -0.098706 2.617158 -0.357412 -0.1684679 2.628563 -0.345243 -0.095842 2.624222 -0.344437 -0.167544 2.753668 -0.341478 -0.165119 2.874134 -0.339715 -0.09500998 2.873839 -0.338805 -0.103326 2.550827 0.305426 -0.1878719 2.506288 0.289169 -0.173666 2.487651 0.233685 -0.283368 2.453028 0.235835 -0.350681 2.421876 0.118162 -0.377084 2.678297 0.06150197 -0.368422 2.654654 0.06668299 -0.369253 2.756726 0.139213 -0.114229 2.426442 -0.261009 -0.206375 2.433155 -0.210676 -0.265327 2.437778 -0.162818 -0.303234 2.442966 -0.107306 -0.293578 2.367736 -0.08599197 -0.252645 2.370527 -0.152455 -0.196927 2.368528 -0.198385 -0.1112959 2.363638 -0.246627 -0.116863 2.29112 -0.247976 -0.1965579 2.292793 -0.198385 -0.255301 2.290626 -0.149667 -0.295934 2.288076 -0.08658498 -0.02919799 2.0986 0.242024 -0.110164 1.999779 0.224442 -0.132363 2.099665 0.22736 -0.09549498 1.884043 0.223918 -0.08667099 1.79964 0.206972 -0.13629 1.879913 0.200522 -0.207669 1.99022 0.193798 -0.249734 2.101583 0.178767 -0.253938 2.045071 0.172731 -0.306768 2.084094 0.11569 -0.30917 2.111583 0.121114 -0.34449 2.108374 0.07415795 -0.3392 2.119272 0.07016396 -0.358928 2.122453 -0.01470696 -0.337722 2.103826 -0.07208597 -0.329244 2.128788 -0.11766 -0.332293 2.003645 -0.09392195 -0.358004 2.006808 -0.07273495 -0.279626 2.021472 -0.174587 -0.27914 2.127709 -0.180697 -0.208501 2.022114 -0.222584 -0.211157 2.134574 -0.22628 -0.132317 2.023481 -0.253344 -0.125641 2.132557 -0.250762 -0.140101 1.889908 -0.25525 -0.220582 1.913902 -0.220526 -0.287479 1.94463 -0.16866 -0.335735 1.913588 -0.08635395 -0.376368 1.911721 -0.07363098 -0.356063 1.891583 -0.07172697 -0.307299 1.875526 -0.1289319 -0.268099 1.833512 -0.173744 -0.19143 1.809458 -0.215513 -0.111042 1.803327 -0.226715 -0.08412998 1.745304 -0.191843 -0.129429 1.759053 -0.197082 -0.230238 1.75618 -0.172284 -0.292608 1.783604 -0.143171 -0.342157 1.81049 -0.084019 -0.37258 1.834205 -0.01776397 -0.377639 1.860382 0.02835297 -0.366458 1.896471 0.07580095 -0.382628 1.91785 0.07656097 -0.345276 1.926408 0.09519797 -0.363132 2.014468 0.07696998 -0.319819 2.022936 0.114768 -0.303696 1.992932 0.142567 -0.270663 2.012668 0.182299 -0.2623 2.028882 0.177515 -0.226195 1.985258 0.185193 -0.313282 2.053504 0.115242 -0.2169319 1.987727 0.189508 -0.1728799 1.874105 0.190765 -0.154585 1.877009 0.195643 -0.101848 1.793777 0.190977 -0.117025 1.787889 0.174985 -0.04795598 1.733916 0.122507 -0.06363999 1.68822 0.115715 -0.03892296 1.643881 0.03741997 -0.04197299 1.704798 0.02693295 -0.05243694 1.648548 -0.03259396 -0.04525297 1.638977 -0.03414195 -0.02658796 1.685729 -0.06803399 -0.04807096 1.744507 0.191878 -0.143844 1.710322 -0.154042 -0.07440495 1.712696 -0.149794 -0.08673995 1.670885 -0.107967 -0.05786496 1.560051 -0.01647698 -0.123885 1.587668 -0.145289 -0.08452296 1.660278 -0.119746 -0.145969 1.697085 -0.170776 -0.220951 1.738568 -0.2039729 -0.235204 1.640363 -0.203361 -0.281381 1.651867 -0.204991 -0.259598 1.756635 -0.202691 -0.381127 1.667293 -0.114141 -0.414899 1.676961 0.02660495 -0.395541 1.707751 0.128298 -0.382305 1.807436 0.118164 -0.338045 1.725244 0.207713 -0.290667 1.7249 0.240912 -0.326819 1.858019 0.187803 -0.353961 1.932352 0.120319 -0.373874 1.886577 0.08165895 -0.382975 1.847762 0.02974396 -0.377385 1.811724 -0.04552996 -0.349919 1.788797 -0.119089 -0.309725 1.99463 0.159848 -0.281704 1.869451 0.219155 -0.2327319 1.854722 0.220425 -0.242296 1.713773 0.242765 -0.143705 1.657903 0.203428 -0.07461297 1.592627 0.120728 -0.06735998 3.031563 0.116228 -0.06172299 3.091863 0.1207579 -0.119335 3.028456 0.07842296 -0.04947996 3.166661 0.127677 -0.111319 3.100614 0.09471499 -0.156295 3.060503 0.01852697 -0.150635 3.1223 0.03833496 -0.1696 3.14248 -0.04173398 -0.15738 3.216802 -0.01466995 -0.139686 3.163434 -0.12959 -0.128967 3.240325 -0.106028 -0.05992096 3.167929 -0.16671 -0.05627197 3.246363 -0.144097 -0.07592999 3.099359 -0.188038 -0.092839 3.043926 -0.22956 -0.151513 3.107613 -0.149678 -0.172118 3.096638 -0.1532379 -0.137676 3.068867 -0.206677 -0.137283 3.191826 0.05249094 -0.09988397 3.178502 0.101419 -0.074521 3.045811 0.139423 -0.12444 3.055751 0.122539 -0.16595 3.078865 0.09176999 -0.165304 3.054622 0.04242599 -0.42638 2.538318 -0.107458 -0.505174 2.428011 -0.09701496 -0.554331 2.443467 -0.155324 -0.472095 2.569999 -0.172309 -0.600046 2.458695 -0.187812 -0.434303 2.652106 -0.171099 -0.382005 2.607893 -0.10419 -0.385816 2.672843 -0.10623 -0.412682 2.716484 -0.176634 -0.393162 2.745645 -0.177528 -0.398129 2.846742 -0.222189 -0.391845 2.93416 -0.201984 -0.387248 3.000318 -0.170644 -0.36692 3.064492 -0.107555 -0.347239 3.056989 -6.14e-4 -0.284707 3.073099 0.01267796 -0.285793 3.034476 0.06106096 -0.342365 3.01795 0.05148094 -0.298775 2.97382 0.09753996 -0.442504 3.023751 -0.025038 -0.452575 3.0109 -0.09933197 -0.452945 2.967297 -0.152134 -0.442943 2.918283 -0.187225 -0.425317 2.831718 -0.204569 -0.450843 2.779618 -0.198863 -0.475467 2.729323 -0.209371 -0.525895 2.611259 -0.209729 -0.633956 2.473599 -0.190083 -0.559366 2.632709 -0.208833 -0.694132 2.49841 -0.133776 -0.505382 2.741928 -0.208311 -0.517278 2.823271 -0.168918 -0.486925 2.884319 -0.17072 -0.508339 2.916999 -0.131002 -0.518918 2.944626 -0.08067899 -0.520928 2.947678 -0.02842599 -0.43197 2.969819 0.04959595 -0.34419 2.965474 0.08712697 -0.325502 2.883476 0.128321 -0.354654 2.883236 0.114831 -0.454978 2.882318 0.07457697 -0.501201 2.910018 0.030788 -0.560452 2.849801 -0.04457998 -0.548163 2.837602 -0.1239539 -0.580549 2.773735 -0.135285 -0.633656 2.670528 -0.13574 -0.721967 2.518066 -0.04070198 -0.653938 2.686913 -0.04089599 -0.605058 2.782809 -0.04363095 -0.531439 2.831124 0.02665799 -0.483298 2.796814 0.067487 -0.410233 2.778242 0.109 -0.384407 2.759937 0.125916 -0.385724 2.697484 0.05505198 -0.43294 2.757551 0.09703201 -0.41386 2.709468 0.061333 -0.378424 2.67781 -0.03785997 -0.381866 2.598865 -0.01786297 -0.423307 2.628105 0.04995197 -0.448925 2.671074 0.073632 -0.473065 2.734536 0.09715396 -0.50522 2.753099 0.09659296 -0.577893 2.775622 0.03512597 -0.628967 2.671113 0.038109 -0.690043 2.505962 0.03964495 -0.564333 2.638755 0.100532 -0.635666 2.483689 0.09137499 -0.529729 2.611993 0.106526 -0.472303 2.561104 0.06245797 -0.431115 2.525645 -0.009876966 -0.506929 2.429418 0.002205967 -0.550565 2.449903 0.05832296 -0.602356 2.470166 0.09353196 -0.684938 2.492994 0.02341198 -0.643335 2.469392 0.05195695 -0.607876 2.454922 0.05848997 -0.560937 2.437496 0.03051799 -0.527673 2.423892 -0.01333796 -0.521321 2.418369 -0.08982396 -0.638045 2.471765 -0.1557739 -0.583044 2.443125 -0.161831 -0.673989 2.357805 0.05844295 -0.682651 2.35598 0.07906895 -0.613143 2.335565 0.05373299 -0.747886 2.39502 0.04828399 -0.74449 2.48304 -0.01833897 -0.756848 2.498766 -0.04517894 -0.760082 2.44744 -0.003815948 -0.737444 2.50468 -0.06734299 -0.767336 2.518655 -0.05874496 -0.773827 2.510882 -0.09723699 -0.731531 2.492649 -0.09936898 -0.759366 2.498154 -0.104393 -0.722799 2.465514 -0.146564 -0.708754 2.471028 -0.135088 -0.662138 2.434269 -0.167886 -0.66625 2.426052 -0.179297 -0.603349 2.396403 -0.1703709 -0.611827 2.389009 -0.187218 -0.662901 2.419231 -0.1933439 -0.520836 2.388542 -0.02699398 -0.552621 2.357997 0.006389975 -0.503603 2.378071 -0.025581 -0.499214 2.370326 -0.06464999 -0.515523 2.373601 -0.07663196 -0.537214 2.397512 -0.111494 -0.593185 2.419764 -0.166112 -0.553129 2.376655 -0.133164 -0.65008 2.453017 -0.161841 -0.701455 2.484731 -0.134432 -0.697643 2.222818 -0.104735 -0.655855 2.210966 -0.07374197 -0.763432 2.11396 -0.05922996 -0.732062 2.103606 -0.02761095 -0.769276 2.114329 -0.0769 -0.704388 2.223514 -0.120866 -0.759643 2.248043 -0.1279 -0.766227 2.259552 -0.113261 -0.802286 2.285775 -0.08924198 -0.828643 2.144426 -0.068623 -0.822106 2.135764 -0.08249396 -0.862716 2.171042 -0.04093998 -0.839315 2.312035 -0.04566794 -0.853175 2.318496 -0.03937798 -0.850172 2.329076 -0.001251995 -0.838414 2.321222 0.006966948 -0.899445 2.21271 0.03036797 -0.903487 2.2007 4.92e-4 -0.889673 2.190559 -0.006030976 -0.887733 2.206129 0.037184 -0.803718 2.30386 0.06415796 -0.847862 2.203038 0.08592998 -0.708639 2.45009 0.03118497 -0.64583 2.414449 0.05095398 -0.586093 2.390935 0.033782 -0.557749 2.370002 0.00525099 -0.627003 2.207519 -0.02230298 -0.710856 2.099282 0.01426196 -0.612473 2.204504 -0.01305598 -0.620466 2.205556 0.02777296 -0.634788 2.218681 0.038037 -0.69956 2.09642 0.057778 -0.69762 2.091899 0.02792096 -0.712704 2.107692 0.06422096 -0.730468 2.134352 0.09333395 -0.665511 2.233206 0.073659 -0.780965 2.169141 0.114844 -0.730399 2.269443 0.09791898 -0.245899 0.221882 -0.03547894 -0.267267 0.205858 -0.02619296 -0.269716 0.190665 -0.093409 -0.252668 0.207313 -0.09832495 -0.295172 0.205779 -0.147156 -0.260152 0.370055 -0.109584 -0.278193 0.22012 -0.152691 -0.32377 0.253693 -0.194862 -0.348972 0.230552 -0.172987 -0.360406 0.25687 -0.195978 -0.333079 0.383217 -0.172536 -0.243636 0.511827 -0.125569 -0.234673 0.515278 -0.01864898 -0.253407 0.378681 -0.01678395 -0.2232609 0.640374 -0.140979 -0.206329 0.642291 -0.02555096 -0.332455 0.518145 -0.18787 -0.367983 0.516278 -0.181062 -0.35969 0.381307 -0.168595 -0.406444 0.378279 -0.134017 -0.41841 0.238297 -0.15079 -0.408015 0.219554 -0.14863 -0.437514 0.2038969 -0.08714699 -0.453268 0.223324 -0.08525997 -0.439293 0.216759 -0.02200698 -0.438715 0.383601 -0.05733895 -0.454054 0.236392 -0.02828598 -0.41908 0.24526 0.02521598 -0.42765 0.267577 0.03889095 -0.378286 0.2480199 0.07185995 -0.385678 0.270677 0.100802 -0.328713 0.247057 0.08534097 -0.377108 0.393931 0.080289 -0.416747 0.397435 0.02115297 -0.425733 0.518258 0.01733398 -0.439362 0.515645 -0.07759499 -0.402679 0.514518 -0.152534 -0.414761 0.640764 -0.170549 -0.374289 0.641344 -0.199133 -0.325779 0.642727 -0.202899 -0.457588 0.64452 -0.08037197 -0.440979 0.647712 0.02932995 -0.371794 0.512164 0.08970201 -0.341649 0.393652 0.080922 -0.338022 0.269799 0.108224 -0.273412 0.257671 0.046597 -0.286001 0.2387199 0.04291796 -0.300046 0.384687 0.04128897 -0.28972 0.517555 0.04723995 -0.33622 0.514035 0.08964395 -0.374266 0.649413 0.10848 -0.335551 0.647699 0.107655 -0.27221 0.648267 0.05653697 -0.260845 0.104696 -0.003510951 -0.265373 0.02706396 0.04727596 -0.261838 0.03051495 -0.01428496 -0.269508 0.137461 0.102236 -0.259113 0.017609 0.133987 -0.278863 0.188623 0.06009 -0.26461 0.174373 -0.01688599 -0.321552 0.214024 0.116031 -0.31617 0.174054 0.170189 -0.264726 0.112532 0.176073 -0.25902 0.02736896 0.262203 -0.267914 0.103375 0.26051 -0.290621 0.039397 0.345673 -0.28778 0.09595298 0.331788 -0.34255 0.05254095 0.385983 -0.324694 0.136417 0.305163 -0.317925 0.143698 0.248542 -0.427627 0.1396279 0.222023 -0.416447 0.167667 0.148549 -0.401339 0.205745 0.103373 -0.434927 0.186743 0.05469596 -0.450334 0.171797 -0.009847998 -0.464518 0.10003 -0.006345987 -0.472233 0.09540998 0.104805 -0.474659 0.08856099 0.203867 -0.455024 0.088355 0.296641 -0.425456 0.127551 0.29146 -0.393 0.117953 0.357466 -0.348094 0.1223739 0.360633 -0.342342 0.09501498 0.377715 -0.403696 0.09769195 0.363603 -0.405012 0.04843395 0.369242 -0.457611 0.03043395 0.30024 -0.485608 0.01863497 0.203451 -0.483437 0.01971095 0.102351 -0.471794 0.02603095 0.02911996 -0.464056 0.029531 -0.02430599 -0.448371 0.09868597 -0.09699195 -0.453314 0.01071596 -0.071464 -0.441741 0.156985 -0.09360098 -0.406583 0.1700479 -0.158214 -0.412243 0.1004019 -0.174031 -0.422199 0.00812 -0.154144 -0.346569 0.101497 -0.197269 -0.352645 0.007093966 -0.186791 -0.293901 0.007809996 -0.1639569 -0.288473 0.100381 -0.164414 -0.268099 0.009281992 -0.11711 -0.343289 0.1728 -0.17954 -0.292053 0.165909 -0.1531389 -0.26237 0.106001 -0.096574 -0.260406 0.011123 -0.05848896 -0.267406 0.167535 -0.09249895 0 2.302495 0.298829 0 2.374685 0.297764 0 2.286574 0.273883 0.06738299 2.271439 0.270314 0 2.272767 0.274364 -0.06738299 2.271439 0.270314 -0.796188 2.009547 0.006449997 -0.823007 2.018106 -0.022753 -0.827927 2.015237 -0.038311 -0.873804 2.039441 -0.04697597 -0.878377 2.048044 -0.03428 -0.9085 2.070358 -0.008147001 -0.938368 2.092303 0.031955 -0.948255 2.10396 0.03443098 -0.946569 2.110384 0.06531298 -0.933517 2.102514 0.073026 -0.895356 2.102172 0.120254 -0.835227 2.078524 0.145101 -0.791983 2.046609 0.131936 -0.771794 2.021622 0.100157 -0.756848 2.011465 0.09169298 -0.758604 2.002331 0.05696696 -0.773157 2.00715 0.04556 -0.911965 2.083782 0.06527197 -0.884499 2.084163 0.107577 -0.84643 2.064257 0.127221 -0.822244 2.045175 0.11058 -0.799052 2.027646 0.08741796 -0.796765 2.017256 0.05245298 -0.818941 2.010095 0.001002967 -0.898359 2.059956 0.004289984 -0.873665 2.037552 -0.02692496 -0.852228 2.022629 -0.02448999 -0.817139 2.039843 0.126949 -0.858789 2.069166 0.137122 -0.88212 2.050737 0.157438 -0.896927 2.085692 0.128282 -0.916931 2.077085 0.07352495 -0.919773 2.0579 0.008744001 -0.908708 2.038527 -0.04223096 -0.924462 2.000146 -0.03755795 -0.884961 2.024722 -0.04246699 -0.851581 2.003595 -0.03743594 -0.860221 1.977141 -0.04231399 -0.888264 1.988025 -0.04455 -0.908384 1.992185 -0.03936696 -0.948255 1.949256 -0.02209299 -0.962669 1.983248 0.03145098 -0.936659 2.067972 0.02033096 -0.979093 1.989148 0.04494798 -0.933517 2.080254 0.063371 -0.956733 2.008157 0.109316 -0.921159 2.018739 0.189365 -0.967913 1.979139 0.130959 -0.97512 2.00727 0.09647095 -0.986208 1.973292 0.129501 -0.967798 1.950388 0.1876299 -0.926102 1.968358 0.192405 -0.897828 2.009929 0.192948 -0.868491 2.031479 0.185891 -0.817809 2.035002 0.148642 -0.815338 2.023803 0.184306 -0.857657 2.004694 0.214606 -0.81148 2.005868 0.218845 -0.886208 1.970756 0.211372 -0.907368 1.948395 0.210966 -0.919241 1.915912 0.220166 -0.950819 1.932107 0.1905609 -0.994062 1.912144 0.1370159 -0.975305 1.896827 0.141587 -0.998313 1.898725 0.06736201 -0.991267 1.951853 0.04510295 -0.973111 1.949263 0.03256398 -0.983205 1.898889 0.01297795 -0.979117 1.880844 0.07270997 -0.967359 1.883348 0.01189398 -0.929798 1.939952 -0.026932 -0.926356 1.908644 -0.028099 -0.907045 1.941966 -0.04081499 -0.875351 1.926995 -0.03692495 -0.894524 1.887707 -0.02443498 -0.91282 1.84788 -0.009132981 -0.951697 1.866639 -0.01087695 -0.970408 1.844717 0.003469944 -0.948486 1.831017 -0.006684958 -0.984799 1.788596 0.01725095 -0.98831 1.794715 0.04358994 -0.976737 1.849813 0.03550297 -0.977754 1.854888 0.06756097 -0.960452 1.827316 0.05354398 -0.969992 1.786776 0.06084996 -0.965534 1.830169 0.05759096 -0.99993 1.792636 0.086272 -0.978631 1.778245 0.06959795 -0.98443 1.76143 0.07428801 -1.00679 1.77614 0.09086 -0.997389 1.798099 0.110829 -0.981288 1.859381 0.09436798 -0.980272 1.871121 0.127371 -0.962323 1.835556 0.112798 -0.979301 1.790465 0.124567 -1.00351 1.781243 0.115011 -0.986278 1.773884 0.128646 -1.027627 1.732809 0.1019729 -1.004365 1.717919 0.08926796 -1.012519 1.702507 0.09525096 -1.03354 1.71596 0.106339 -1.030029 1.673078 0.108217 -1.023954 1.737667 0.124932 -1.00522 1.733315 0.137942 -1.030352 1.720772 0.128605 -1.01208 1.716501 0.141266 -1.022983 1.685443 0.146517 -1.039592 1.689407 0.135091 -1.032085 1.667471 0.13867 -1.040447 1.685919 0.114539 -1.032247 1.662449 0.122303 -0.962877 1.836448 0.121342 -1.003672 1.806369 0.156286 -0.987109 1.787663 0.142035 -0.995102 1.772237 0.148298 -1.010255 1.790493 0.1629779 -0.997042 1.813313 0.179455 -0.975444 1.877302 0.162354 -0.963848 1.890393 0.194276 -0.953221 1.895429 0.216304 -0.927511 1.890164 0.2267079 -0.968329 1.851243 0.241381 -0.981542 1.844445 0.217766 -0.951073 1.856621 0.181562 -0.952274 1.855062 0.176041 -0.976252 1.80773 0.193728 -1.003487 1.796838 0.184687 -0.984014 1.791885 0.199219 -1.031207 1.745845 0.180698 -1.017278 1.731832 0.165029 -1.025039 1.716954 0.172569 -1.037236 1.729582 0.18687 -1.041048 1.684625 0.191102 -1.023884 1.752084 0.202063 -1.006074 1.745288 0.21307 -1.030306 1.735688 0.207616 -1.013674 1.729148 0.217898 -1.031831 1.6907 0.229252 -1.045852 1.689428 0.221873 -1.036474 1.674233 0.222952 -1.040285 1.670058 0.204849 -1.049433 1.685591 0.202742 -0.971725 1.822377 0.20316 -0.979394 1.808051 0.212047 -0.98734 1.828795 0.225701 -0.999052 1.793934 0.243112 -0.990251 1.778855 0.229487 -0.995171 1.764459 0.239185 -1.003949 1.778554 0.251592 -1.007414 1.734117 0.266507 -1.014552 1.743036 0.275957 -1.007021 1.729728 0.280536 -0.999629 1.73326 0.293668 -1.004665 1.748587 0.29596 -0.991729 1.740419 0.298572 -0.992237 1.785538 0.277466 -0.986578 1.801086 0.269189 -0.973711 1.835824 0.250069 -0.945991 1.843851 0.251088 -0.952251 1.82846 0.259175 -0.967867 1.791964 0.278258 -0.974797 1.776408 0.285565 -0.899144 1.896219 0.214223 -0.87907 1.92 0.2075819 -0.866158 1.937646 0.210194 -0.850981 1.946974 0.2143149 -0.84248 1.945637 0.231298 -0.839777 1.976946 0.241384 -0.806259 1.987692 0.245068 -0.834788 1.960934 0.27681 -0.837398 1.932613 0.267715 -0.831554 1.949601 0.300116 -0.834072 1.924272 0.292058 -0.829405 1.916351 0.318748 -0.830607 1.942151 0.317544 -0.821436 1.933576 0.342541 -0.815915 1.916517 0.342407 -0.798844 1.919883 0.344382 -0.805127 1.938972 0.345077 -0.801016 1.949467 0.326743 -0.799653 1.961111 0.303058 -0.802078 1.972061 0.280111 -0.18838 1.07749 0.08816796 -0.240078 1.106663 0.151594 -0.22474 1.107386 0.173943 -0.320536 1.118867 0.173005 -0.295588 1.131923 0.243546 -0.338253 1.137222 0.241578 -0.387849 1.120479 0.163964 -0.386209 1.122247 0.142252 -0.42474 1.10026 0.07141399 -0.434742 1.092826 0.07381898 -0.449641 1.0729 -0.005035996 -0.167937 1.051108 -0.004926979 -0.173273 1.080225 -0.003554999 -0.402448 1.080144 -0.12313 -0.43525 1.101842 -0.008463978 -0.423816 1.116712 0.07202798 -0.390228 1.127488 0.146503 -0.320074 1.126074 0.17659 -0.319588 1.132963 0.169972 -0.394248 1.13527 0.140457 -0.422892 1.133164 0.07266795 -0.420882 1.13081 -0.01186895 -0.392584 1.119544 -0.101996 -0.397505 1.099844 -0.112564 -0.313074 1.086834 -0.151467 -0.304065 1.119465 -0.119212 -0.223562 1.091591 -0.103823 -0.229568 1.112692 -0.086851 -0.178609 1.109343 -0.002203941 -0.2175559 1.070466 -0.120792 -0.303072 1.05187 -0.186724 -0.341141 1.056564 -0.180746 -0.150566 1.111152 -0.01816099 -0.206606 1.114903 -0.119485 -0.1389 1.2022 -0.02141594 -0.312358 1.127294 -0.153201 -0.196789 1.205875 -0.124444 -0.305059 1.218664 -0.1565549 -0.39203 1.230479 -0.121058 -0.402471 1.139719 -0.118161 -0.455324 1.14883 -0.02602398 -0.442919 1.239527 -0.03532195 -0.450681 1.243431 0.067586 -0.461076 1.15068 0.06814301 -0.448417 1.151491 0.127815 -0.436128 1.247356 0.124133 -0.400046 1.245164 0.17574 -0.383599 1.24463 0.1896229 -0.335597 1.238765 0.214814 -0.313837 1.235252 0.218505 -0.254123 1.227952 0.21268 -0.232409 1.225566 0.204435 -0.186094 1.218661 0.165641 -0.170247 1.215633 0.1508989 -0.1441439 1.208407 0.092305 -0.15909 1.111438 0.09320396 -0.185539 1.112907 0.08552998 -0.185008 1.116654 0.153292 -0.237468 1.121713 0.1569 -0.200901 1.119082 0.172444 -0.249157 1.126931 0.207533 -0.267821 1.129784 0.21669 -0.325317 1.1412 0.222525 -0.345738 1.14126 0.2185699 -0.398129 1.145201 0.190991 -0.414068 1.146686 0.177191 -0.437329 1.154711 0.187641 -0.463155 1.157074 0.1495929 -0.454308 1.244263 0.143389 -0.427096 1.241071 0.185967 -0.392261 1.240373 0.215988 -0.403765 1.151302 0.217445 -0.360268 1.147975 0.239529 -0.350981 1.236317 0.236154 -0.139917 1.114517 0.113952 -0.160868 1.117527 0.159734 -0.177038 1.213057 0.193204 -0.188126 1.123974 0.1958169 -0.1491799 1.208398 0.1581979 -0.127396 1.200167 0.111007 -0.2164469 1.21801 0.223624 -0.228343 1.130666 0.226369 -0.257126 1.22397 0.23899 -0.268976 1.135115 0.241481 -0.30589 1.228691 0.245036 -0.31744 1.1426 0.247233 -0.23823 1.115222 0.160663 -0.186948 1.095199 0.08684897 0.339986 2.278267 0.07349097 0.310464 2.27639 0.152012 0.314553 2.113246 0.145373 0.353661 2.279575 -0.00110799 0.323839 2.283971 -0.103259 0.275698 2.28693 -0.165731 0.20723 2.28918 -0.213363 -0.314553 2.113246 0.145373 -0.310464 2.27639 0.152012 -0.339986 2.278267 0.07349097 -0.353661 2.279575 -0.00110799 -0.323839 2.283971 -0.103259 -0.275698 2.28693 -0.165731 -0.20723 2.28918 -0.213363 -0.139478 2.810535 -0.339634 -0.09556496 2.810535 -0.339634 -0.098845 2.807257 -0.352753 -0.136174 2.807257 -0.352753 -0.02961397 2.69203 -0.342245 -0.074521 2.69203 -0.342245 -0.07073199 2.6962 -0.355134 -0.03340297 2.6962 -0.355134 -0.07454395 2.810882 -0.339623 -0.02956795 2.810882 -0.339623 -0.03340297 2.807257 -0.352753 -0.07073199 2.807257 -0.352753 -0.09831398 2.751734 -0.354474 -0.136729 2.751734 -0.354474 -0.098845 2.6962 -0.355134 -0.136174 2.6962 -0.355134 -0.14091 2.751411 -0.339743 -0.139455 2.6924 -0.342233 -0.09556496 2.6924 -0.342233 -0.094132 2.751411 -0.339743 -0.032848 2.751734 -0.354474 -0.07126295 2.751734 -0.354474 -0.07604497 2.751411 -0.339743 -0.02806597 2.751411 -0.339743 0.154123 3.010397 0.159765 0.21744 3.004598 0.150284 0.158558 2.942575 0.212347 0.075468 2.949821 0.2208549 0.07338899 3.002963 0.179134 0 3.009514 0.180268 0 2.955319 0.22371 0 2.863933 0.2817 0.07468199 2.853582 0.281033 0.07853996 2.776959 0.310227 0 2.759041 0.276145 0.161862 2.838258 0.269936 0.237399 2.932078 0.198231 0.2623 2.992594 0.126441 0.277431 3.032 0.08824896 0.271564 3.082808 0.02670198 0.28972 2.982025 0.117436 0.295888 2.892951 0.162227 0.270409 2.813642 0.253722 0.169346 2.770924 0.291696 0.07020097 2.688588 0.299365 0 2.683118 0.299607 0 2.590526 0.312661 0.07842397 2.589628 0.306842 0.18845 2.570411 0.28438 0.290621 2.535932 0.234456 0.360244 2.492555 0.11906 0.369923 2.558711 0.113539 0.308431 2.658454 0.22742 0.1815429 2.684437 0.276108 0.255324 2.766356 0.27432 0.365557 2.739533 0.1649439 0.393046 2.655465 0.09543097 0.317925 2.887853 0.153699 -0.154123 3.010397 0.159765 -0.21744 3.004598 0.150284 -0.158558 2.942575 0.212347 -0.075468 2.949821 0.2208549 -0.07338899 3.002963 0.179134 -0.07468199 2.853582 0.281033 -0.07853996 2.776959 0.310227 -0.161862 2.838258 0.269936 -0.237399 2.932078 0.198231 -0.2623 2.992594 0.126441 -0.277431 3.032 0.08824896 -0.271564 3.082808 0.02670198 -0.28972 2.982025 0.117436 -0.295888 2.892951 0.162227 -0.270409 2.813642 0.253722 -0.169346 2.770924 0.291696 -0.07020097 2.688588 0.299365 -0.07842397 2.589628 0.306842 -0.18845 2.570411 0.28438 -0.290621 2.535932 0.234456 -0.360244 2.492555 0.11906 -0.369923 2.558711 0.113539 -0.308431 2.658454 0.22742 -0.1815429 2.684437 0.276108 -0.255324 2.766356 0.27432 -0.365557 2.739533 0.1649439 -0.317925 2.887853 0.153699 -0.393046 2.655465 0.09543097 0.16267 2.270134 0.254523 0.11654 2.271834 0.266697 0.116909 2.10599 0.257993 0.164865 2.107219 0.247092 0.1772 2.268487 0.274913 0.177292 2.110776 0.269074 0.235227 2.270217 0.252049 0.236452 2.11176 0.246001 0.232363 2.109681 0.217293 0.232779 2.272158 0.220395 0.263917 2.273003 0.202433 0.327004 2.272266 0.17745 0.286602 2.269852 0.220559 0.264264 2.109989 0.1962299 0.289143 2.113394 0.214819 0.329244 2.1149 0.168642 0.04335898 2.10563 0.272287 0 2.10544 0.271414 0.115616 2.10988 0.284726 0.05165195 2.109226 0.294084 0.04395896 2.2696 0.278762 0 2.269915 0.278473 -0.04395896 2.2696 0.278762 -0.04335898 2.10563 0.272287 0.05239099 2.266683 0.299908 0.115592 2.265435 0.291811 0.162555 2.273435 0.236025 -0.16267 2.270134 0.254523 -0.164865 2.107219 0.247092 -0.116909 2.10599 0.257993 -0.11654 2.271834 0.266697 -0.1772 2.268487 0.274913 -0.177292 2.110776 0.269074 -0.235227 2.270217 0.252049 -0.236452 2.11176 0.246001 -0.232363 2.109681 0.217293 -0.232779 2.272158 0.220395 -0.263917 2.273003 0.202433 -0.327004 2.272266 0.17745 -0.286602 2.269852 0.220559 -0.289143 2.113394 0.214819 -0.264264 2.109989 0.1962299 -0.329244 2.1149 0.168642 -0.05165195 2.109226 0.294084 -0.115616 2.10988 0.284726 -0.05239099 2.266683 0.299908 -0.115592 2.265435 0.291811 -0.162555 2.273435 0.236025 0.273389 3.231471 -0.03627794 0.25671 3.205964 -0.03378999 0.284084 3.231822 -0.04641199 0.277269 3.255926 -0.041251 0.294779 3.262852 -0.05700099 0.272927 3.284751 -0.03744196 0.291915 3.291757 -0.05349397 0.276276 3.319452 -0.03566795 0.257819 3.31156 -0.02640497 0.251166 3.338772 -0.01434195 0.2325479 3.328622 -0.01078695 0.233772 3.349186 0.008188962 0.208616 3.339629 0.00999099 0.207253 3.361561 0.04163396 0.228159 3.364915 0.03951799 0.208039 3.38427 0.064103 0.225271 3.393018 0.06227797 0.205451 3.422119 0.07497596 0.2235389 3.422794 0.06917798 0.20358 3.458812 0.06365495 0.221852 3.456938 0.05990099 0.211781 3.485009 0.04339599 0.222268 3.478943 0.03720796 0.213559 3.492609 0.007981956 0.224047 3.487945 8.02e-4 0.213051 3.479916 -0.03411996 0.225733 3.477992 -0.03209698 0.226981 3.453295 -0.05604898 0.211111 3.454621 -0.05872696 0.211781 3.420345 -0.06615298 0.230076 3.422045 -0.06274098 0.232016 3.388137 -0.05478799 0.213051 3.388366 -0.05860894 0.214761 3.359685 -0.04534494 0.235273 3.356012 -0.03716295 0.223608 3.345525 -0.05469799 0.251975 3.342309 -0.04962694 0.259413 3.321001 -0.06867295 0.271633 3.321579 -0.06430095 0.27422 3.295171 -0.07431 0.285816 3.2953 -0.07167899 0.281289 3.266809 -0.07815599 0.291476 3.266559 -0.07433497 0.285193 3.239255 -0.08346199 0.279325 3.242976 -0.08637499 0.255532 3.217271 -0.1005679 -0.273389 3.231471 -0.03627794 -0.284107 3.231822 -0.04641199 -0.25671 3.205964 -0.03378999 -0.277292 3.255926 -0.041251 -0.294779 3.262852 -0.05700099 -0.272927 3.284751 -0.03744196 -0.291938 3.291757 -0.05349397 -0.276299 3.319452 -0.03566795 -0.257819 3.31156 -0.02640497 -0.251189 3.338772 -0.01434195 -0.2325479 3.328622 -0.01078695 -0.233772 3.349186 0.008188962 -0.208639 3.339629 0.00999099 -0.207253 3.361561 0.04163396 -0.228159 3.364915 0.03951799 -0.208039 3.38427 0.064103 -0.225271 3.393018 0.06227797 -0.205451 3.422119 0.07497596 -0.2235389 3.422794 0.06917798 -0.20358 3.458812 0.06365495 -0.221852 3.456938 0.05990099 -0.211781 3.485009 0.04339599 -0.222268 3.478943 0.03720796 -0.213559 3.492609 0.007981956 -0.224047 3.487945 8.02e-4 -0.213051 3.479916 -0.03411996 -0.225733 3.477992 -0.03209698 -0.226981 3.453295 -0.05604898 -0.211111 3.454621 -0.05872696 -0.211781 3.420345 -0.06615298 -0.230076 3.422045 -0.06274098 -0.232016 3.388137 -0.05478799 -0.213051 3.388366 -0.05860894 -0.214761 3.359685 -0.04534494 -0.235273 3.356012 -0.03716295 -0.223608 3.345525 -0.05469799 -0.251998 3.342309 -0.04962694 -0.259436 3.321001 -0.06867295 -0.271633 3.321579 -0.06430095 -0.27422 3.295171 -0.07431 -0.285816 3.2953 -0.07167899 -0.281312 3.266809 -0.07815599 -0.291476 3.266559 -0.07433497 -0.285193 3.239255 -0.08346199 -0.279325 3.242976 -0.08637499 -0.255532 3.217271 -0.1005679 0.788103 1.996766 0.148385 0.794432 2.013463 0.09574496 0.797135 1.989233 0.040277 0.79337 1.964419 0.09936499 0.793624 1.953916 0.155717 0.787387 1.988922 0.18189 0.787548 1.981539 0.2139919 0.785446 1.969166 0.241652 0.793416 1.946706 0.199162 0.833517 1.914429 0.172211 0.812519 1.932883 0.129176 0.833564 1.92608 0.07960796 0.808823 1.95903 0.05069994 0.823307 1.977459 -0.007841944 0.834603 1.93554 0.00110197 0.856848 1.896896 0.02166098 0.885354 1.859698 0.04263597 0.866966 1.886053 0.107582 0.845552 1.90666 0.148582 0.885354 1.880067 0.189307 0.895333 1.857046 0.138446 0.907414 1.837295 0.075486 0.915338 1.819873 0.02410298 0.925155 1.823974 0.003843963 0.927118 1.809901 0.04438495 0.934487 1.818497 0.06491398 0.927049 1.823327 0.09876 0.928019 1.835937 0.1249639 0.920881 1.845782 0.160247 0.913004 1.853486 0.184756 0.909031 1.865902 0.21878 0.929544 1.82311 0.24194 0.940794 1.811051 0.2112129 0.936821 1.808129 0.2499009 0.954122 1.773821 0.26718 0.965418 1.764567 0.241123 0.962392 1.759287 0.274615 0.979047 1.735748 0.287466 0.98771 1.730486 0.269325 0.972649 1.751121 0.250836 0.949318 1.797115 0.220016 0.954769 1.784128 0.182546 0.963501 1.776887 0.151432 0.963247 1.768832 0.188503 0.988241 1.723819 0.207159 0.994432 1.715249 0.177914 0.997527 1.708799 0.212414 1.017324 1.6798 0.220721 1.019311 1.675663 0.196376 1.002956 1.700345 0.184622 0.971748 1.761726 0.158057 0.956017 1.76837 0.11641 0.958789 1.76259 0.08331 0.964194 1.752396 0.120702 0.982605 1.715348 0.128799 0.986301 1.707152 0.100374 0.991614 1.699654 0.132458 1.007553 1.675485 0.138487 1.009886 1.669222 0.113493 0.995171 1.691779 0.105433 0.966342 1.746526 0.08839195 0.946084 1.772361 0.05078595 0.975259 1.769289 0.06327098 0.948694 1.772426 0.01824498 0.954307 1.756039 0.05349498 0.987664 1.739143 0.06817096 0.970408 1.724306 0.05867397 0.994224 1.721964 0.07014298 0.973757 1.721922 0.03203296 0.979463 1.708409 0.06095397 0.993415 1.68663 0.06364798 1.002702 1.698661 0.07212299 1.014714 1.683729 0.06401699 0.992468 1.683757 0.04423195 1.014436 1.67949 0.04824894 1.00612 1.690913 0.033701 0.997666 1.713586 0.02492296 0.981727 1.70594 0.03678697 0.990898 1.729975 0.01987797 0.956386 1.756251 0.02274894 0.969184 1.779229 0.006682991 0.976206 1.762699 0.01094496 1.004041 1.740061 0.02894496 1.010833 1.722105 0.03415399 1.017925 1.700479 0.04026395 1.019472 1.704279 0.05898195 1.010856 1.728206 0.05478399 1.004665 1.745378 0.05181795 0.993277 1.777194 0.04638296 0.990643 1.771544 0.02106696 0.827396 1.930846 0.195985 0.791383 1.93861 0.226087 0.822984 1.92824 0.224126 0.818086 1.915597 0.260206 0.787479 1.927917 0.262384 0.782443 1.955401 0.27511 0.781196 1.94632 0.296473 0.784407 1.921791 0.282985 0.814945 1.907614 0.28417 0.81111 1.905129 0.309508 0.785908 1.916106 0.311659 0.786393 1.930931 0.331162 -0.174682 2.368422 0.24633 0.276923 1.156333 0.186318 0.255509 1.123773 0.163652 0.338785 1.166772 0.1846269 0.364102 1.128095 0.162176 -0.788103 1.996766 0.148385 -0.794432 2.013463 0.09574496 -0.797135 1.989233 0.040277 -0.79337 1.964419 0.09936499 -0.793624 1.953916 0.155717 -0.787387 1.988922 0.18189 -0.787548 1.981539 0.2139919 -0.785446 1.969166 0.241652 -0.793416 1.946706 0.199162 -0.833517 1.914429 0.172211 -0.812519 1.932883 0.129176 -0.833564 1.92608 0.07960796 -0.808823 1.95903 0.05069994 -0.823307 1.977459 -0.007841944 -0.834603 1.93554 0.00110197 -0.856848 1.896896 0.02166098 -0.885354 1.859698 0.04263597 -0.866966 1.886053 0.107582 -0.845552 1.90666 0.148582 -0.885354 1.880067 0.189307 -0.895333 1.857046 0.138446 -0.907414 1.837295 0.075486 -0.915338 1.819873 0.02410298 -0.925155 1.823974 0.003843963 -0.927118 1.809901 0.04438495 -0.934487 1.818497 0.06491398 -0.927049 1.823327 0.09876 -0.928019 1.835937 0.1249639 -0.920881 1.845782 0.160247 -0.913004 1.853486 0.184756 -0.909031 1.865902 0.21878 -0.929544 1.82311 0.24194 -0.940794 1.811051 0.2112129 -0.936821 1.808129 0.2499009 -0.954122 1.773821 0.26718 -0.965418 1.764567 0.241123 -0.962392 1.759287 0.274615 -0.979047 1.735748 0.287466 -0.98771 1.730486 0.269325 -0.972649 1.751121 0.250836 -0.949318 1.797115 0.220016 -0.954769 1.784128 0.182546 -0.963501 1.776887 0.151432 -0.963247 1.768832 0.188503 -0.988241 1.723819 0.207159 -0.994432 1.715249 0.177914 -0.997527 1.708799 0.212414 -1.017324 1.6798 0.220721 -1.019311 1.675663 0.196376 -1.002956 1.700345 0.184622 -0.971748 1.761726 0.158057 -0.956017 1.76837 0.11641 -0.958789 1.76259 0.08331 -0.964194 1.752396 0.120702 -0.982605 1.715348 0.128799 -0.986301 1.707152 0.100374 -0.991614 1.699654 0.132458 -1.007553 1.675485 0.138487 -1.009886 1.669222 0.113493 -0.995171 1.691779 0.105433 -0.966342 1.746526 0.08839195 -0.946084 1.772361 0.05078595 -0.975259 1.769289 0.06327098 -0.948694 1.772426 0.01824498 -0.954307 1.756039 0.05349498 -0.987664 1.739143 0.06817096 -0.970408 1.724306 0.05867397 -0.994224 1.721964 0.07014298 -0.973757 1.721922 0.03203296 -0.979463 1.708409 0.06095397 -0.993415 1.68663 0.06364798 -1.002702 1.698661 0.07212299 -1.014714 1.683729 0.06401699 -0.992468 1.683757 0.04423195 -1.014436 1.67949 0.04824894 -1.00612 1.690913 0.033701 -0.997666 1.713586 0.02492296 -0.981727 1.70594 0.03678697 -0.990898 1.729975 0.01987797 -0.956386 1.756251 0.02274894 -0.969184 1.779229 0.006682991 -0.976206 1.762699 0.01094496 -1.004041 1.740061 0.02894496 -1.010833 1.722105 0.03415399 -1.017925 1.700479 0.04026395 -1.019472 1.704279 0.05898195 -1.010856 1.728206 0.05478399 -1.004665 1.745378 0.05181795 -0.993277 1.777194 0.04638296 -0.990643 1.771544 0.02106696 -0.827396 1.930846 0.195985 -0.791383 1.93861 0.226087 -0.822984 1.92824 0.224126 -0.818086 1.915597 0.260206 -0.787479 1.927917 0.262384 -0.782443 1.955401 0.27511 -0.781196 1.94632 0.296473 -0.784407 1.921791 0.282985 -0.814945 1.907614 0.28417 -0.81111 1.905129 0.309508 -0.785908 1.916106 0.311659 -0.786393 1.930931 0.331162 0.006328999 2.751205 -0.341145 0.01524597 2.717978 -0.341674 0.01522296 2.784435 -0.340618 0.03954696 2.808782 -0.340228 0.072811 2.817708 -0.340092 0.106075 2.808782 -0.340228 0.130423 2.784435 -0.340618 0.139316 2.751205 -0.341145 0.130376 2.717978 -0.341674 0.106052 2.693677 -0.342067 0.072811 2.684798 -0.342203 0.03959298 2.693677 -0.342067 0.06024497 3.584443 0.269608 0 3.584683 0.277203 0 3.534127 0.295223 0 3.641971 0.240298 0.06082195 3.641685 0.231178 0 3.685979 0.174875 0.06024497 3.681179 0.172897 0.06659698 3.699631 0.097413 0 3.704286 0.097014 0 3.708277 0.01736295 0.06969296 3.703568 0.01376599 0 3.699606 -0.06820195 0.07091701 3.694977 -0.06914198 0 3.666654 -0.159218 0.07729297 3.661401 -0.154317 0 3.600987 -0.221244 0.07396596 3.590913 -0.218223 0 3.543709 -0.242141 0.06768298 3.532687 -0.2354159 0 3.473027 -0.256329 0.124648 3.528287 -0.212905 0.130515 3.59327 -0.187398 0.132455 3.646836 -0.141956 0.139547 3.670287 -0.06783497 0.139201 3.679606 0.01246094 0.130353 3.679463 0.09622097 0.120051 3.662976 0.166582 0.113005 3.630414 0.217411 0.114599 3.582186 0.248508 0.15678 3.574616 0.212761 0.15082 3.614295 0.193581 0.160845 3.633859 0.147575 0.170755 3.638756 0.09451895 0.178378 3.635411 0.014521 0.193832 3.580313 0.09619396 0.181104 3.577922 0.159132 0.190021 3.527065 0.166069 0.163201 3.529756 0.223091 0.118272 3.531533 0.264174 0.06273996 3.533358 0.286166 0.06437999 3.505118 0.291398 0 3.507723 0.300813 0.119104 3.503244 0.271488 0.167937 3.500172 0.231093 0.195819 3.496712 0.1687549 0.206167 3.49275 0.102271 0.201663 3.523235 0.097871 0.200208 3.580916 0.01234996 0.179256 3.622748 -0.06416898 0.198036 3.575346 -0.06415998 0.163178 3.607282 -0.1415449 0.180157 3.576139 -0.145629 0.158004 3.526247 -0.188112 0.193162 3.519927 -0.141321 0.205428 3.519608 -0.06834799 0.208477 3.519477 0.01058298 0.209817 3.477829 -0.06664299 0.200092 3.473265 -0.142813 0.171356 3.470458 -0.195372 0.125872 3.467737 -0.229771 0.068053 3.471692 -0.252519 0.064426 3.40524 -0.254176 0 3.398098 -0.259382 0.1256639 3.412143 -0.232321 0.173966 3.413304 -0.197553 0.207577 3.41852 -0.140447 0.2003459 3.477262 0.09986895 0.196743 3.482722 0.114835 0.194479 3.469673 0.120285 0.197528 3.450962 0.110264 0.203788 3.417594 0.09494799 0.206745 3.361558 0.086425 0.204204 3.326878 0.05143696 0.229152 3.318592 0.03115099 0.258119 3.294947 0.01197296 0.269739 3.260745 -4.04e-4 0.266597 3.221022 -0.003916978 0.256987 3.230345 0.06260401 0.245045 3.265511 0.08213996 0.212843 3.294363 0.100807 0.191661 3.302898 0.106896 0.196835 3.328465 0.131352 0.196258 3.351597 0.146757 0.1919839 3.413475 0.136725 0.193994 3.425409 0.146565 0.187295 3.394427 0.1756179 0.183853 3.373166 0.168268 0.180573 3.326645 0.180846 0.179626 3.300923 0.164667 0.164842 3.268823 0.161839 0.192977 3.256509 0.158989 0.228136 3.232829 0.135004 0.239547 3.194349 0.107831 0.251467 3.201274 0.05087596 0.254423 3.20014 -0.008783996 0.241857 3.184081 0.04140996 0.2156389 3.189572 -0.006002962 0.204689 3.176105 0.03542 0.223031 3.153085 0.101617 0.246823 3.184991 0.118203 0.235042 3.227798 0.144082 0.19866 3.250096 0.169661 0.151998 3.256181 0.196348 0.147262 3.275515 0.210047 0.141649 3.294141 0.226886 0.1637099 3.337661 0.209296 0.167845 3.366277 0.199129 0.17422 3.386395 0.201664 0.164703 3.423542 0.1769 0.176669 3.439012 0.159543 0.165719 3.45123 0.179843 0.13726 3.423157 0.205824 0.134927 3.395698 0.234445 0.129198 3.379472 0.228529 0.135043 3.35525 0.231393 0.123885 3.314919 0.244563 0.119543 3.311893 0.244657 0.137699 3.292069 0.227901 0.145114 3.275365 0.211183 0.136729 3.290417 0.230495 0.119519 3.306328 0.244787 0.077708 3.324453 0.266311 0.08045697 3.333362 0.260763 0.08692497 3.338387 0.264024 0.096188 3.374302 0.252264 0.08546996 3.404307 0.253911 0.09258496 3.41779 0.258642 0.1005769 3.437638 0.2312549 0.1354809 3.455051 0.216863 0.1516979 3.477772 0.2029989 0.1769919 3.473473 0.155872 0.181173 3.485076 0.150793 0.150866 3.488285 0.208032 0.09893697 3.479435 0.2441329 0.09085196 3.468213 0.24742 0.072649 3.454041 0.248744 0.04539096 3.480428 0.271372 0.05414599 3.493388 0.272652 0.107253 3.491052 0.24393 0 3.494212 0.286355 0 3.483866 0.284392 0 3.475404 0.280612 0.04167199 3.471098 0.270139 0.03950095 3.457409 0.277272 0.06511896 3.43637 0.27107 0.03282499 3.455058 0.289919 0.06075298 3.425099 0.270638 0.05823498 3.396039 0.27839 0.03236299 3.414184 0.299106 0.02642595 3.378527 0.306558 0.05555498 3.361819 0.284551 0.04883295 3.355233 0.281615 0.02293795 3.371059 0.300601 0 3.374882 0.311181 0 3.384235 0.316156 0 3.423796 0.309321 0 3.464584 0.298864 0 3.348756 0.317524 0.02245295 3.346462 0.309924 0 3.347816 0.322869 0.04365897 3.340271 0.29022 0.04853296 3.337837 0.295103 0.02547895 3.344529 0.315369 0.02395498 3.256058 0.337425 0 3.259858 0.348051 0 3.247812 0.330957 0.01069498 3.244998 0.324528 0.037422 3.245518 0.320421 0.07008498 3.287227 0.286408 0.08142697 3.321981 0.269993 0.121598 3.303489 0.248596 0.09653496 3.264309 0.270488 0.1365669 3.287091 0.231985 0.149064 3.256527 0.194904 0.108431 3.225368 0.25283 0.107646 3.248211 0.260478 0.05945897 3.176823 0.294475 0.05273699 3.2043 0.300291 0.04502195 3.231369 0.309286 0.02603399 3.239669 0.314525 0.01824897 3.216178 0.317875 0 3.211616 0.330083 0.02730399 3.178389 0.317122 0 3.174219 0.327076 0.02716594 3.142381 0.304549 0 3.138904 0.310873 0 3.115261 0.270386 0.02272999 3.123813 0.267459 0 3.111838 0.220989 0.04088699 3.14768 0.294489 0.039801 3.181641 0.301419 0.02972996 3.217363 0.302608 0.03543496 3.229364 0.307224 0.04525297 3.199385 0.297533 0.04474496 3.167123 0.271876 0.03744494 3.133841 0.262269 0.02441698 3.127303 0.215281 0 3.124617 0.187099 0.03296399 3.125578 0.189009 0 3.118179 0.158711 0.03765296 3.142392 0.2195889 0.05008095 3.158902 0.249993 0.04582995 3.14269 0.229772 0.04733198 3.119602 0.22465 0.04850995 3.100482 0.19204 0.03982394 3.112639 0.159719 0.09794396 3.100988 0.13161 0.06232398 3.091611 0.158344 0.098221 3.074709 0.186794 0.06382495 3.085793 0.187949 0.06447196 3.087888 0.2185519 0.09736597 3.078267 0.222065 0.06749796 3.09953 0.2323769 0.05403095 3.123478 0.231763 0.053038 3.139676 0.23465 0.054793 3.151969 0.2419379 0.058905 3.157509 0.254244 0.06278598 3.15637 0.251067 0.06024497 3.150413 0.2416869 0.05989795 3.139258 0.2360039 0.06135398 3.125779 0.234394 0.07361996 3.104092 0.234914 0.09701997 3.087523 0.237145 0.130677 3.094314 0.2465929 0.140771 3.081738 0.225863 0.136983 3.075855 0.185741 0.167683 3.083284 0.194128 0.147424 3.104277 0.130398 0.128159 3.131394 0.102668 0.171263 3.139112 0.09821897 0.217972 3.206721 -0.09575098 0.23465 3.369775 -0.02425897 0.233287 3.363446 0.007417976 0.231023 3.372258 0.034159 0.231739 3.397855 0.00515598 0.233402 3.398111 -0.03157496 0.2350659 3.394122 -0.04452896 0.233841 3.421001 -0.05332595 0.231 3.450537 -0.04822099 0.231416 3.435797 -0.03333699 0.229891 3.470045 -0.02757197 0.22832 3.47816 0.002679944 0.229498 3.438837 0.003083944 0.22705 3.472138 0.03099596 0.227073 3.45159 0.05154097 0.227766 3.422184 0.06011396 0.227627 3.43785 0.040093 0.238438 3.435818 0.03276097 0.241303 3.436157 0.003143966 0.2424809 3.434556 -0.02354496 0.244906 3.402348 -0.02322596 0.2437739 3.401773 0.004779994 0.240171 3.402447 0.03362494 0.2292439 3.400415 0.040968 0.229175 3.396254 0.05425095 0.214922 3.356633 -0.142478 0.252483 3.32722 -0.147377 0.268376 3.290431 -0.148694 0.213906 3.327557 -0.208726 0.18152 3.355141 -0.202496 0.13063 3.345076 -0.238881 0.1534759 3.318322 -0.25482 0.06528097 3.333607 -0.260408 0 3.329447 -0.265571 0.07786995 3.309043 -0.279419 0 3.300699 -0.289004 0.1714709 3.276541 -0.261274 0.2317849 3.285132 -0.212154 0.168861 3.237317 -0.253316 0.230422 3.250357 -0.20607 0.26602 3.252452 -0.147456 0.240864 3.220179 -0.1499789 0.205867 3.218784 -0.19953 0.1515589 3.210424 -0.2376109 0.090806 3.228287 -0.281783 0.09103697 3.262975 -0.291471 0 3.257518 -0.301792 0 3.221198 -0.290413 0.07461297 3.199352 -0.258987 0 3.194772 -0.264275 0.05945897 3.189914 -0.233476 0 3.186689 -0.239038 0.1277199 3.198955 -0.214254 0.1716099 3.205737 -0.183014 0.206144 3.208955 -0.137193 0.18808 3.205552 0.224632 0.149596 3.222309 0.233465 0.113883 3.209962 0.253936 0.07650697 3.170849 0.28082 0.05451595 3.172138 0.29171 0.06830698 3.163695 0.274597 0.07160997 3.161436 0.269605 0.08530795 3.158269 0.21514 0.08708697 3.139151 0.206126 0.09265398 3.131039 0.2053869 0.11677 3.150221 0.210562 0.105382 3.125534 0.208217 0.09771299 3.094025 0.241077 0.1281819 3.099972 0.248633 0.1206279 3.129433 0.20724 0.135736 3.132877 0.2139019 0.1515589 3.119482 0.255369 0.157958 3.115104 0.254352 0.171656 3.104109 0.23979 0.171494 3.145227 0.254653 0.164079 3.144691 0.256681 0.144883 3.144929 0.211305 0.148441 3.163462 0.217078 0.128066 3.175416 0.222458 0.10328 3.173557 0.2221 0.138369 3.184887 0.253939 0.161238 3.167065 0.25459 0.1679829 3.172496 0.25234 0.195518 3.142498 0.2339619 0.197551 3.106128 0.209173 0.197343 3.110671 0.1448979 0.225756 3.136453 0.170296 0.223031 3.175215 0.19836 0.140748 3.191891 0.25395 0.106098 3.181875 0.259557 0.081173 3.169168 0.274424 0.105544 3.189821 0.261689 -0.06024497 3.584443 0.269608 -0.06082195 3.641685 0.231178 -0.06024497 3.681179 0.172897 -0.06659698 3.699631 0.097413 -0.06969296 3.703568 0.01376599 -0.07091701 3.694977 -0.06914198 -0.07729297 3.661401 -0.154317 -0.07396596 3.590913 -0.218223 -0.06768298 3.532687 -0.2354159 -0.124648 3.528287 -0.212905 -0.130515 3.59327 -0.187398 -0.132455 3.646836 -0.141956 -0.139547 3.670287 -0.06783497 -0.139201 3.679606 0.01246094 -0.130353 3.679463 0.09622097 -0.120051 3.662976 0.166582 -0.113005 3.630414 0.217411 -0.114599 3.582186 0.248508 -0.15678 3.574616 0.212761 -0.15082 3.614295 0.193581 -0.160845 3.633859 0.147575 -0.170755 3.638756 0.09451895 -0.178378 3.635411 0.014521 -0.193832 3.580313 0.09619396 -0.181104 3.577922 0.159132 -0.190021 3.527065 0.166069 -0.163201 3.529756 0.223091 -0.118272 3.531533 0.264174 -0.06273996 3.533358 0.286166 -0.06437999 3.505118 0.291398 -0.119104 3.503244 0.271488 -0.167937 3.500172 0.231093 -0.195819 3.496712 0.1687549 -0.206167 3.49275 0.102271 -0.201663 3.523235 0.097871 -0.200208 3.580916 0.01234996 -0.179256 3.622748 -0.06416898 -0.198036 3.575346 -0.06415998 -0.163178 3.607282 -0.1415449 -0.180157 3.576139 -0.145629 -0.158004 3.526247 -0.188112 -0.193162 3.519927 -0.141321 -0.205428 3.519608 -0.06834799 -0.208477 3.519477 0.01058298 -0.209817 3.477829 -0.06664299 -0.200092 3.473265 -0.142813 -0.171356 3.470458 -0.195372 -0.125872 3.467737 -0.229771 -0.068053 3.471692 -0.252519 -0.064426 3.40524 -0.254176 -0.1256639 3.412143 -0.232321 -0.173966 3.413304 -0.197553 -0.207577 3.41852 -0.140447 -0.2003459 3.477262 0.09986895 -0.196743 3.482722 0.114835 -0.194479 3.469673 0.120285 -0.197528 3.450962 0.110264 -0.203788 3.417594 0.09494799 -0.206745 3.361558 0.086425 -0.204204 3.326878 0.05143696 -0.229152 3.318592 0.03115099 -0.258119 3.294947 0.01197296 -0.269739 3.260745 -4.04e-4 -0.266597 3.221022 -0.003916978 -0.257011 3.230345 0.06260401 -0.245045 3.265511 0.08213996 -0.212843 3.294363 0.100807 -0.191661 3.302898 0.106896 -0.196835 3.328465 0.131352 -0.196258 3.351597 0.146757 -0.1919839 3.413475 0.136725 -0.193994 3.425409 0.146565 -0.187295 3.394427 0.1756179 -0.183853 3.373166 0.168268 -0.180573 3.326645 0.180846 -0.179626 3.300923 0.164667 -0.164842 3.268823 0.161839 -0.192977 3.256509 0.158989 -0.228136 3.232829 0.135004 -0.239547 3.194349 0.107831 -0.251467 3.201274 0.05087596 -0.254423 3.20014 -0.008783996 -0.241857 3.184081 0.04140996 -0.2156389 3.189572 -0.006002962 -0.204689 3.176105 0.03542 -0.223031 3.153085 0.101617 -0.246823 3.184991 0.118203 -0.235042 3.227798 0.144082 -0.19866 3.250096 0.169661 -0.151998 3.256181 0.196348 -0.147262 3.275515 0.210047 -0.141649 3.294141 0.226886 -0.1637099 3.337661 0.209296 -0.167845 3.366277 0.199129 -0.17422 3.386395 0.201664 -0.164703 3.423542 0.1769 -0.176669 3.439012 0.159543 -0.165719 3.45123 0.179843 -0.13726 3.423157 0.205824 -0.134927 3.395698 0.234445 -0.129198 3.379472 0.228529 -0.135043 3.35525 0.231393 -0.123908 3.314919 0.244563 -0.119566 3.311893 0.244657 -0.137699 3.292069 0.227901 -0.145137 3.275365 0.211183 -0.136752 3.290417 0.230495 -0.119543 3.306328 0.244787 -0.077708 3.324453 0.266311 -0.08045697 3.333362 0.260763 -0.08692497 3.338387 0.264024 -0.096188 3.374302 0.252264 -0.08546996 3.404307 0.253911 -0.09258496 3.41779 0.258642 -0.1005769 3.437638 0.2312549 -0.1354809 3.455051 0.216863 -0.1516979 3.477772 0.2029989 -0.1769919 3.473473 0.155872 -0.181173 3.485076 0.150793 -0.150866 3.488285 0.208032 -0.09893697 3.479435 0.2441329 -0.09085196 3.468213 0.24742 -0.072649 3.454041 0.248744 -0.04539096 3.480428 0.271372 -0.05414599 3.493388 0.272652 -0.107253 3.491052 0.24393 -0.04167199 3.471098 0.270139 -0.03950095 3.457409 0.277272 -0.06511896 3.43637 0.27107 -0.03282499 3.455058 0.289919 -0.06075298 3.425099 0.270638 -0.05823498 3.396039 0.27839 -0.03236299 3.414184 0.299106 -0.02642595 3.378527 0.306558 -0.05555498 3.361819 0.284551 -0.04883295 3.355233 0.281615 -0.02293795 3.371059 0.300601 -0.02245295 3.346462 0.309924 -0.04365897 3.340271 0.29022 -0.04855597 3.337837 0.295103 -0.02547895 3.344529 0.315369 -0.02397799 3.256058 0.337425 -0.01069498 3.244998 0.324528 -0.037422 3.245518 0.320421 -0.07008498 3.287227 0.286408 -0.08142697 3.321981 0.269993 -0.121598 3.303489 0.248596 -0.09655797 3.264309 0.270488 -0.13659 3.287091 0.231985 -0.149087 3.256527 0.194904 -0.108431 3.225368 0.25283 -0.107646 3.248211 0.260478 -0.05945897 3.176823 0.294475 -0.05276 3.2043 0.300291 -0.04502195 3.231369 0.309286 -0.02603399 3.239669 0.314525 -0.01824897 3.216178 0.317875 -0.02730399 3.178389 0.317122 -0.02718895 3.142381 0.304549 -0.02272999 3.123813 0.267459 -0.04088699 3.14768 0.294489 -0.039801 3.181641 0.301419 -0.02975296 3.217363 0.302608 -0.03543496 3.229364 0.307224 -0.04527598 3.199385 0.297533 -0.04476797 3.167123 0.271876 -0.03744494 3.133841 0.262269 -0.02443999 3.127303 0.215281 -0.03296399 3.125578 0.189009 -0.03767597 3.142392 0.2195889 -0.05008095 3.158902 0.249993 -0.04582995 3.14269 0.229772 -0.04733198 3.119602 0.22465 -0.04850995 3.100482 0.19204 -0.03984695 3.112639 0.159719 -0.09794396 3.100988 0.13161 -0.06232398 3.091611 0.158344 -0.06384795 3.085793 0.187949 -0.06447196 3.087888 0.2185519 -0.06749796 3.09953 0.2323769 -0.05405396 3.123478 0.231763 -0.053038 3.139676 0.23465 -0.054793 3.151969 0.2419379 -0.058905 3.157509 0.254244 -0.06278598 3.15637 0.251067 -0.06024497 3.150413 0.2416869 -0.05989795 3.139258 0.2360039 -0.06135398 3.125779 0.234394 -0.08710998 3.139151 0.206126 -0.08530795 3.158269 0.21514 -0.07160997 3.161436 0.269605 -0.06830698 3.163695 0.274597 -0.05453896 3.172138 0.29171 -0.07650697 3.170849 0.28082 -0.081173 3.169168 0.274424 -0.105567 3.189821 0.261689 -0.106098 3.181875 0.259557 -0.103303 3.173557 0.2221 -0.116794 3.150221 0.210562 -0.09265398 3.131039 0.2053869 -0.07361996 3.104092 0.234914 -0.105405 3.125534 0.208217 -0.09771299 3.094025 0.241077 -0.09701997 3.087523 0.237145 -0.09736597 3.078267 0.222065 -0.098221 3.074709 0.186794 -0.136752 3.075855 0.185741 -0.140795 3.081738 0.225863 -0.130677 3.094314 0.2465929 -0.1281819 3.099972 0.248633 -0.1206279 3.129433 0.20724 -0.135736 3.132877 0.2139019 -0.1515589 3.119482 0.255369 -0.157981 3.115104 0.254352 -0.171679 3.104109 0.23979 -0.167683 3.083284 0.194128 -0.14687 3.104277 0.130398 -0.128159 3.131394 0.102668 -0.17124 3.139112 0.09821897 -0.217972 3.206721 -0.09575098 -0.23465 3.369775 -0.02425897 -0.233287 3.363446 0.007417976 -0.231023 3.372258 0.034159 -0.231739 3.397855 0.00515598 -0.233402 3.398111 -0.03157496 -0.2350659 3.394122 -0.04452896 -0.233841 3.421001 -0.05332595 -0.231 3.450537 -0.04822099 -0.231416 3.435797 -0.03333699 -0.229891 3.470045 -0.02757197 -0.22832 3.47816 0.002679944 -0.229498 3.438837 0.003083944 -0.22705 3.472138 0.03099596 -0.227073 3.45159 0.05154097 -0.227766 3.422184 0.06011396 -0.227627 3.43785 0.040093 -0.238438 3.435818 0.03276097 -0.241303 3.436157 0.003143966 -0.2424809 3.434556 -0.02354496 -0.244906 3.402348 -0.02322596 -0.2437739 3.401773 0.004779994 -0.240171 3.402447 0.03362494 -0.2292439 3.400415 0.040968 -0.229175 3.396254 0.05425095 -0.113883 3.209962 0.253936 -0.149249 3.222309 0.233465 -0.140771 3.191891 0.25395 -0.138369 3.184887 0.253939 -0.1679829 3.172496 0.25234 -0.18808 3.205552 0.224632 -0.223031 3.175215 0.19836 -0.195518 3.142498 0.2339619 -0.224948 3.136453 0.170296 -0.1968809 3.110671 0.1448979 -0.197551 3.106128 0.209173 -0.171494 3.145227 0.254653 -0.164102 3.144691 0.256681 -0.161238 3.167065 0.25459 -0.148441 3.163462 0.217078 -0.144883 3.144929 0.211305 -0.128066 3.175416 0.222458 -0.214922 3.356633 -0.142478 -0.252483 3.32722 -0.147377 -0.268376 3.290431 -0.148694 -0.2139289 3.327557 -0.208726 -0.18152 3.355141 -0.202496 -0.13063 3.345076 -0.238881 -0.153499 3.318322 -0.25482 -0.06528097 3.333607 -0.260408 -0.07786995 3.309043 -0.279419 -0.1714709 3.276541 -0.261274 -0.231808 3.285132 -0.212154 -0.230446 3.250357 -0.20607 -0.266043 3.252452 -0.147456 -0.240887 3.220179 -0.1499789 -0.205867 3.218784 -0.19953 -0.168861 3.237317 -0.253316 -0.09082895 3.228287 -0.281783 -0.09103697 3.262975 -0.291471 -0.07461297 3.199352 -0.258987 -0.151582 3.210424 -0.2376109 -0.171633 3.205737 -0.183014 -0.206144 3.208955 -0.137193 -0.1277199 3.198955 -0.214254 -0.05945897 3.189914 -0.233476 0.02841299 2.7772 -0.355368 0.02152895 2.75158 -0.355742 0.04716998 2.795973 -0.355102 0.072811 2.802841 -0.354993 0.09845197 2.795973 -0.355102 0.117232 2.7772 -0.355368 0.124116 2.75158 -0.355742 0.117232 2.725939 -0.356114 0.09845197 2.707186 -0.356379 0.072811 2.700318 -0.356488 0.04716998 2.707186 -0.356379 0.02841299 2.725939 -0.356114 0.03901594 2.751129 -0.339941 0.04354298 2.734227 -0.340172 0.05592495 2.72188 -0.340341 0.072811 2.71735 -0.340383 0.08972001 2.72188 -0.340341 0.102079 2.734227 -0.340172 0.106606 2.751129 -0.339941 0.102102 2.768029 -0.339734 0.07537496 2.750328 -0.339662 0.04354298 2.768029 -0.339734 0.05592495 2.780399 -0.339567 0.072811 2.784908 -0.3395 0.08972001 2.780399 -0.339567</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#Stormtroopermesh-mesh-positions-array\" count=\"3275\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"Stormtroopermesh-mesh-normals\">\r\n          <float_array id=\"Stormtroopermesh-mesh-normals-array\" count=\"9825\">-0.5759453 -0.5542162 -0.600879 0.3259987 -0.4996796 -0.8024842 -0.1573229 -0.7610096 -0.6293527 -0.4860683 0.1163671 -0.8661153 0.3563341 -0.2265999 -0.9064303 -0.7611927 0.244148 -0.6007874 -0.7624134 -0.4415418 -0.4730064 -0.8485366 0.2900479 -0.4425184 -0.8107547 -0.4630879 -0.3580431 -0.9151586 0.3194677 -0.245735 -0.8959014 -0.4149907 -0.1584826 -0.9096652 0.3428449 0.2343211 -0.9222083 -0.3077791 0.2340159 -0.823542 -0.4159978 0.3855708 -0.8397473 0.3294778 0.4315012 -0.7478866 -0.4194158 0.5145115 -0.9108859 0.3597217 0.2020325 -0.9033784 0.3399152 -0.2613911 -0.8335521 0.3153172 -0.4535966 -0.7375714 0.3010651 -0.6043885 -0.4373303 0.215125 -0.8731651 0.3813288 -0.1297647 -0.9152501 -0.303476 0.3658864 -0.8797571 0.5398724 0.003875792 -0.841731 -0.6382946 0.4310434 -0.6377453 -0.7479171 0.4565569 -0.4817957 -0.815363 0.5191504 -0.2561724 -0.8142949 0.5363934 0.2217475 -0.8352916 0.3493454 0.4245125 -0.7507858 0.2754906 0.6003296 -0.5509507 -0.5408796 0.6354869 -0.4868007 0.1561021 0.8594012 -0.7262185 0.3473922 0.5932188 -0.637318 0.4771569 0.60506 -0.7461776 0.4891812 0.4515213 -0.6138188 0.7619861 0.2062746 -0.6128117 0.7456893 -0.2615131 -0.5434431 0.6729942 -0.5017243 -0.4263741 0.6089969 -0.6687826 -0.1690725 0.5219886 -0.8359935 0.6450087 0.1722159 -0.7444685 -0.106418 0.7328715 -0.6719565 0.7062289 0.3920713 -0.5894955 -0.2992035 0.7984558 -0.5223853 -0.3505661 0.8944975 -0.2774133 -0.3543809 0.9147923 0.193701 -0.5548265 0.699881 0.4497818 -0.4311655 0.6428114 0.6331065 -0.3136997 0.8356578 0.4507584 -0.08908349 0.9762566 0.1973631 -0.08911401 0.9578539 -0.2729576 -0.04705953 0.8453322 -0.5321207 0.7088229 0.5577563 -0.4317759 0.6783654 0.702414 -0.2154302 0.6892606 0.709006 0.1490219 -0.03836172 0.881222 0.4711142 0.7203589 0.5741142 0.3891415 0.7058321 0.4340342 0.5598011 -0.1181371 0.7679067 0.6295358 -0.1633961 0.573046 0.8030335 -0.3031404 0.4250007 0.8529008 -0.4301584 0.284524 0.8567156 0.3301492 -0.1781365 0.9269387 0.3975646 -0.0801416 0.9140294 0.536729 0.06347846 0.8413343 0.6501053 0.223426 0.7262185 0.3551439 -0.4442274 0.8224738 -0.134495 -0.7199927 0.6807764 0.2571489 -0.800531 0.5412763 0.7572253 -0.530839 0.3804438 0.04776144 -0.7772759 0.627308 0.6175115 -0.2584307 0.7428815 0.8757286 -0.3256325 0.3564257 0.2586749 -0.9037141 0.3411054 0.591113 -0.3495285 0.7268899 0.8402356 -0.4239021 0.338023 0.7844173 -0.4956817 0.3726921 0.4098331 -0.5789361 0.7048555 0.7366253 -0.5165868 0.4364147 0.1599169 -0.7964416 0.5831477 0.7357403 -0.5801874 0.3492844 0.3108615 -0.9501633 0.02328562 0.7846309 -0.5512863 0.2834864 0.8305307 -0.5569323 -0.001037597 0.7779778 -0.5718559 -0.2601703 0.7373883 -0.6003601 -0.3094577 0.193701 -0.8192694 -0.5396588 0.7361065 -0.5401777 -0.4077883 0.4068728 -0.6217231 -0.6692099 0.7874386 -0.5069125 -0.3506271 0.5837886 -0.4044923 -0.7039399 0.8301035 -0.4594256 -0.3159276 0.8767358 -0.3482772 -0.3316447 0.6143987 -0.2915738 -0.7331156 0.7799921 -0.505356 -0.3689993 0.06747639 -0.7980591 -0.5987732 0.2633137 -0.8321482 -0.487991 0.2451857 -0.9178137 -0.3122044 0.9022797 -0.4310739 0.007476985 0.3103733 -0.9335612 -0.1791436 0.2999664 -0.9518113 0.06341743 0.3612476 -0.9102756 0.2022156 0.7490463 -0.6621601 0.02108824 0.5759453 -0.5542162 -0.600879 0.1573229 -0.7610096 -0.6293527 -0.3259987 -0.4996796 -0.8024842 0.4860683 0.1163671 -0.8661153 -0.3563341 -0.2265999 -0.9064303 0.7611927 0.244148 -0.6007874 0.7624134 -0.4415418 -0.4730064 0.8485366 0.2900479 -0.4425184 0.8107547 -0.4630879 -0.3580431 0.9151586 0.3194677 -0.245735 0.8959014 -0.4149907 -0.1584826 0.9096652 0.3428449 0.2343211 0.9222083 -0.3077791 0.2340159 0.823542 -0.4159978 0.3855708 0.8397473 0.3294778 0.4315012 0.7478866 -0.4194158 0.5145115 0.9108859 0.3597217 0.2020325 0.9033784 0.3399152 -0.2613911 0.8335521 0.3153172 -0.4535966 0.7375714 0.3010651 -0.6043885 0.4373303 0.215125 -0.8731651 -0.3813288 -0.1297647 -0.9152501 0.303476 0.3658864 -0.8797571 -0.5398724 0.003875792 -0.841731 0.6382946 0.4310434 -0.6377453 0.7479171 0.4565569 -0.4817957 0.815363 0.5191504 -0.2561724 0.8142949 0.5363934 0.2217475 0.8352916 0.3493454 0.4245125 0.7507858 0.2754906 0.6003296 0.5509507 -0.5408796 0.6354869 0.4868007 0.1561021 0.8594012 0.7262185 0.3473922 0.5932188 0.637318 0.4771569 0.60506 0.7461776 0.4891812 0.4515213 0.6138188 0.7619861 0.2062746 0.6128117 0.7456893 -0.2615131 0.5434431 0.6729942 -0.5017243 0.4263741 0.6089969 -0.6687826 0.1690725 0.5219886 -0.8359935 -0.6450087 0.1722159 -0.7444685 0.106418 0.7328715 -0.6719565 -0.7062289 0.3920713 -0.5894955 0.2992035 0.7984558 -0.5223853 0.3505661 0.8944975 -0.2774133 0.3543809 0.9147923 0.193701 0.5548265 0.699881 0.4497818 0.4311655 0.6428114 0.6331065 0.3136997 0.8356578 0.4507584 0.08908349 0.9762566 0.1973631 0.08911401 0.9578539 -0.2729576 0.04705953 0.8453322 -0.5321207 -0.7088229 0.5577563 -0.4317759 -0.6783654 0.702414 -0.2154302 -0.6892606 0.709006 0.1490219 0.03836172 0.881222 0.4711142 -0.7203589 0.5741142 0.3891415 -0.7058321 0.4340342 0.5598011 0.1181371 0.7679067 0.6295358 0.1633961 0.573046 0.8030335 0.3031404 0.4250007 0.8529008 0.4301584 0.284524 0.8567156 -0.3301492 -0.1781365 0.9269387 -0.3975646 -0.0801416 0.9140294 -0.536729 0.06347846 0.8413343 -0.6501053 0.223426 0.7262185 -0.3551439 -0.4442274 0.8224738 0.134495 -0.7199927 0.6808069 -0.2571489 -0.800531 0.5412763 -0.04776144 -0.7772759 0.627308 -0.7572253 -0.530839 0.3804438 -0.6175115 -0.2584307 0.7428815 -0.2586749 -0.9037141 0.3411054 -0.8757286 -0.3256325 0.3564257 -0.9022797 -0.4310739 0.007476985 -0.3612476 -0.9102756 0.2022156 -0.2999664 -0.9518113 0.06344795 -0.3103733 -0.9335612 -0.1791436 -0.2451857 -0.9178137 -0.3122044 -0.6143987 -0.2915738 -0.7331156 -0.06747639 -0.7980591 -0.5987732 -0.7799921 -0.505356 -0.3689993 -0.2633137 -0.8321482 -0.487991 -0.8767358 -0.3482772 -0.3316447 -0.5837886 -0.4044923 -0.7039399 -0.8301035 -0.4594256 -0.3159276 -0.7874386 -0.5069125 -0.3506271 -0.4068728 -0.6217231 -0.6692099 -0.7361065 -0.5401777 -0.4077883 -0.7490463 -0.6621601 0.02108824 -0.591113 -0.3495285 0.7268899 -0.8402356 -0.4239021 0.338023 -0.7844173 -0.4956817 0.3726921 -0.4098331 -0.5789361 0.7048555 -0.7366253 -0.5165868 0.4364147 -0.3108615 -0.9501633 0.02328562 -0.193701 -0.8192694 -0.5396588 -0.7373883 -0.6003601 -0.3094577 -0.7779778 -0.5718559 -0.2601703 -0.8305307 -0.5569323 -0.001037597 -0.7846309 -0.5512863 0.2834864 -0.7357403 -0.5801874 0.3492844 -0.1599169 -0.7964416 0.5831477 -0.2433241 0.5476546 0.8005005 0.2152165 0.5364239 0.8160039 0.3230994 0.8988922 0.2958769 -0.2981353 0.9129307 0.2785729 -0.6153142 0.2913297 0.7324442 -0.8020265 0.5641347 0.1961119 -0.75927 -0.127842 0.6380505 -0.996643 -0.007568538 0.08127075 -0.6249275 -0.5494858 0.5545213 -0.8140507 -0.5803705 -0.02169865 -0.2667012 -0.8166143 0.5118259 -0.3297525 -0.9410993 -0.07446515 0.1828058 -0.8297983 0.5272073 0.2771386 -0.9590442 -0.05807667 0.5545213 -0.5830562 0.5937071 0.7807551 -0.6244392 0.02172917 0.7071444 -0.1679433 0.6867886 0.9889828 -0.05908381 0.1355022 0.5793024 0.2609332 0.7721793 0.8164007 0.5249184 0.2406995 -0.0444349 -0.2255318 0.9732047 0.6772058 -0.6484268 -0.3476974 0.6771752 -0.7354351 0.02307194 0.03500473 -0.9988708 0.03173923 0.03518784 -0.8804895 -0.4727012 0.6771447 -0.3877071 -0.6253853 0 -0.8806726 -0.4736778 0 -0.9993897 0.03463846 -0.03500473 -0.9988708 0.03173923 -0.03518784 -0.8804895 -0.4727012 0 -0.5243995 -0.8514359 0.03454691 -0.5265359 -0.8494217 0.6771447 -0.02307194 -0.7354351 0.03460794 -0.03146457 -0.9989013 0.6772058 0.3476974 -0.6484268 0 -0.03146457 -0.9994812 -0.03454691 -0.5265359 -0.8494217 -0.6771447 -0.3877071 -0.6253853 -0.6772058 -0.6484268 -0.3476974 -0.6771752 -0.7354351 0.02307194 -0.6771447 -0.02307194 -0.7354351 -0.03460794 -0.03146457 -0.9989013 -0.6772058 0.3476974 -0.6484268 0 0.4724876 -0.8813135 0.03463846 0.472335 -0.8807337 0.6772058 0.6253243 -0.3876766 0.03463846 0.8493607 -0.5266579 0.6771752 0.7354351 -0.02307194 0 0.8499405 -0.5268411 -0.03463846 0.472335 -0.8807337 -0.6772058 0.6253243 -0.3876766 -0.03463846 0.8493607 -0.5266579 -0.6771752 0.7354351 -0.02307194 0 0.9994812 -0.0313425 0.03460794 0.9989013 -0.03128147 0.6771447 0.6484573 0.3477584 0.03454691 0.8807642 0.4722434 0.6771752 0.3877682 0.6253243 0 0.8811914 0.4727012 -0.03460794 0.9989013 -0.03128147 -0.6771447 0.6484573 0.3477584 -0.03454691 0.8807642 0.4722434 -0.6771752 0.3877682 0.6253243 0 0.5270242 0.8498184 0.03457742 0.5268716 0.8492386 0.6771752 0.02307194 0.7354351 0.03454691 0.03128147 0.9989013 0.6771447 -0.3477584 0.6484573 0 0.0313425 0.9994812 -0.03457742 0.5268716 0.8492386 -0.6771752 0.02307194 0.7354351 -0.03454691 0.03128147 0.9989013 -0.6771447 -0.3477584 0.6484573 0 -0.4727622 0.8811609 0.03445535 -0.4723655 0.8807032 0.6771142 -0.6253853 0.3877682 0.03445535 -0.8493301 0.5266885 0 -0.8497574 0.5271462 -0.03445535 -0.4723655 0.8807032 -0.6771142 -0.6253853 0.3877682 -0.03445535 -0.8493301 0.5266885 0.8745384 0.412122 -0.255562 0.8744164 0.4848476 -0.01516765 0.7838984 0.6205634 -0.01940977 0.784051 0.5274819 -0.3270363 0.8745384 0.229194 -0.4273507 0.784051 0.2932218 -0.5470138 0.8744469 -0.01519817 -0.484817 0.7839289 -0.01947081 -0.6205024 0.8744774 -0.2555315 -0.412244 0.784112 -0.3268532 -0.527543 0.8745689 -0.4272286 -0.229255 0.78399 -0.5470138 -0.2933744 0.8746605 -0.4844813 0.0152592 0.7843562 -0.6199835 0.01959288 0.8745689 -0.4120914 0.2554399 0.7840205 -0.527665 0.3268532 0.8745384 -0.2291635 0.4273202 0.7840815 -0.2931608 0.5470138 0.874691 0.01528972 0.4844203 0.7843868 0.01959288 0.619953 0.8745995 0.255501 0.4119999 0.7839595 0.3270363 0.5276345 0.8744774 0.4274728 0.229133 0.7840815 0.5470748 0.2930693 -0.7838984 0.6205634 -0.01940977 -0.8744164 0.4848476 -0.01516765 -0.8745384 0.412122 -0.255562 -0.784051 0.5274819 -0.3270363 -0.8745384 0.229194 -0.4273507 -0.784051 0.2932218 -0.5470138 -0.8744469 -0.01519817 -0.484817 -0.7839289 -0.01947081 -0.6205024 -0.8744774 -0.2555315 -0.412244 -0.784112 -0.3268532 -0.527543 -0.8745689 -0.4272286 -0.229255 -0.78399 -0.5470138 -0.2933744 -0.8746605 -0.4844813 0.0152592 -0.7843562 -0.6199835 0.01959288 -0.8745689 -0.4120914 0.2554399 -0.7840205 -0.527665 0.3268532 -0.8745384 -0.2291635 0.4273202 -0.7840815 -0.2931608 0.5470138 -0.874691 0.01528972 0.4844203 -0.7843868 0.01959288 0.619953 -0.8745995 0.255501 0.4119999 -0.7839595 0.3270363 0.5276345 -0.8744774 0.4274728 0.229133 -0.7840815 0.5470748 0.2930693 1 0 0 -1 0 0 -0.32313 0.8988311 0.295999 -0.215125 0.5363934 0.816065 0.243263 0.5476546 0.800531 0.2982268 0.9128696 0.278695 0.6152226 0.2912687 0.7325358 0.8024232 0.5635548 0.196173 0.7590869 -0.1272622 0.6383862 0.996643 -0.007507503 0.08124023 0.6254463 -0.5489364 0.5544603 0.8144475 -0.5798212 -0.0216071 0.2666707 -0.8166143 0.5118259 0.3297525 -0.9410993 -0.07443463 -0.1828974 -0.8298288 0.5271462 -0.2770776 -0.9590747 -0.05819875 -0.5546434 -0.5830867 0.5935545 -0.7803888 -0.6248665 0.02142399 -0.707419 -0.1673024 0.686697 -0.9889523 -0.05969417 0.1355632 -0.5787835 0.2612385 0.772454 -0.8163701 0.5247658 0.2410352 0.04446542 -0.2255318 0.9732047 0.8230842 -0.05887019 -0.5648061 0.7075716 -0.4311655 -0.5598316 0.9081393 -0.2074343 -0.3635975 0.7520982 0.03485208 -0.6581012 0.8366344 0.07415997 -0.5426802 0.8117313 0.1899777 -0.5522019 0.4178289 0.9057894 -0.07034516 0.3621937 0.9309977 -0.04501479 -0.9438765 -0.08163696 -0.3199561 0.7982727 -0.08050781 -0.5968505 0.6504105 0.7442549 -0.1517685 -0.500351 0.7714469 0.3930174 -0.4702903 0.3741569 0.7992187 0.6613667 0.1112399 0.7417219 0.7743766 0.4947966 0.3943297 -0.4915311 0.8396252 0.2310251 0.7726982 0.5764946 0.2656026 -0.4655904 0.882046 0.07181 0.7659841 0.6318858 0.1181676 -0.4381542 0.8868984 -0.1463057 0.7774285 0.6196478 -0.1075167 -0.4241157 0.8186895 -0.3870357 0.8089541 0.4781945 -0.3418073 -0.4554888 0.6915494 -0.560564 0.8044679 0.3487045 -0.4808496 -0.5204932 0.615009 -0.5922727 0.8131046 0.2534562 -0.5240028 -0.4663534 0.06427198 -0.8822291 0.6225166 -0.2554399 -0.7397077 -0.4768517 0.801355 0.3611255 -0.4881436 0.3214514 0.8113956 -0.1288796 0.6214484 0.7727592 -0.5459762 0.7943968 0.2660909 -0.4444715 0.8872341 0.1233863 -0.5294656 0.8453627 0.07061982 -0.4593951 0.8677938 -0.1892758 -0.5659658 0.8086795 -0.1602221 -0.4283273 0.7396466 -0.5190283 -0.4971465 0.7582934 -0.4216437 -0.4556108 0.08346807 -0.886227 -0.08017212 0.4397717 -0.8944975 0.7343364 0.5921201 0.3318278 0.4982757 0.439375 0.7474288 0.6410413 -0.008941888 0.7674185 0.680105 0.5870236 0.4391003 0.8208563 0.558977 0.117069 0.8560442 0.4970549 0.1416364 0.8991363 0.417951 -0.1296731 0.8728904 0.4694357 -0.1329081 0.8051393 0.442732 -0.3945738 0.6970733 0.4938811 -0.5196997 0.4940031 0.2278817 -0.8390454 0.660329 -0.1081271 -0.7430952 -0.9487289 0.3159887 0.00314337 -0.05407875 0.5220191 0.8511918 -0.9624928 0.1076388 0.2489395 -0.5528733 0.7086093 -0.4383373 -0.1248817 0.3277688 -0.9364604 0.615009 0.2689596 0.741203 0.8888516 0.2912687 -0.353618 0.4293649 0.1991637 -0.8808863 0.8592792 0.05749684 0.5081942 0.9297464 0.2565996 0.2639546 0.4192633 0.7842647 0.4572588 0.4255806 0.8612934 0.2775048 0.7350688 0.6129643 0.2896512 0.04361093 0.5410321 -0.8398389 0 0.4639729 -0.8858303 0 0.7131565 -0.7009797 0.132786 0.7348552 -0.6650288 0 0.5725883 -0.8198187 0.491348 0.4215217 -0.7621387 0.4356517 0.5211951 -0.7338176 0.6978973 0.06729328 -0.7130039 0.5480209 0.0145573 -0.8362987 0.5188452 0.2687765 -0.8114871 0.1384014 0.5302286 -0.8364513 0 0.8745689 -0.4848476 -0.06463819 0.8021485 -0.5935545 -0.006439387 0.7770318 -0.6293832 -0.2121341 0.9162267 -0.3398236 0.577105 0.450209 -0.6813563 0.5799738 0.6783044 -0.4510636 0.704886 0.6010926 -0.3765069 0.5738701 0.4694967 -0.6709495 0.4791406 0.3289285 -0.8137456 0.4655293 -0.002349913 -0.8850063 0.5664235 -0.01959288 -0.8238777 0.6284677 -0.4279 -0.6495255 0.8168889 -0.176397 -0.549089 0.264626 -0.7335734 -0.6259346 0.7505417 -0.05746632 -0.6583148 0.7769402 -0.09189122 -0.6227912 0.7607654 -0.1833552 -0.6225471 0.9601734 -0.2492141 -0.126255 0.6382336 -0.7697989 0.004577755 0.9601123 -0.2757958 -0.04544204 0.9633778 -0.1613513 -0.2140568 0.9954528 -0.0808435 -0.04989773 0.9725028 -0.1550645 -0.1736808 0.7892392 -0.5797601 -0.2023072 0.6180303 -0.6148869 -0.4897916 0.4076967 -0.6315195 -0.6594745 0.6190375 -0.2931608 -0.7285684 0.5306559 -0.3669546 -0.7640004 0.1675466 -0.5635854 -0.8088626 0.2089907 -0.6086307 -0.7654042 0 -0.5108799 -0.8596454 0 -0.5816828 -0.8133793 0.03772085 -0.4162114 -0.908475 0 -0.3722342 -0.9280984 -0.01287877 -0.4614093 -0.8870815 0 -0.4750816 -0.8798791 -0.1948301 -0.1599475 -0.9676809 -0.4698019 0.01510661 -0.8826258 -0.219306 0.1986144 -0.9551988 -0.02417063 0.5119175 -0.8586688 0 0.5153356 -0.8569598 -0.4330271 0.487289 -0.7582934 -0.02417063 0.5261086 -0.8500626 2.44148e-4 0.5270547 -0.8498184 -0.4825892 0.01309239 -0.8757286 -0.395825 -0.4802088 -0.7827388 -0.01321446 -0.4705954 -0.8822291 -0.001495361 -0.4697409 -0.8827784 0 -0.4025086 0.9154027 0 -0.5175329 0.8556475 0.3154393 -0.7270119 0.6098514 -0.008270502 -0.4827723 0.8756676 0.004150509 -0.6128117 0.7902158 0.4467299 -0.6865444 0.5736259 0.06494337 -0.7492294 0.6590777 0.04858541 -0.4971465 0.8662984 -0.1263771 -0.5599842 0.8187811 0.2974944 -0.772454 0.5610218 -0.2159795 -0.5955077 0.7737358 0.397351 -0.6057009 0.6893521 -0.09006011 -0.4010742 0.9115879 0.1942198 -0.746971 0.6358227 0.6828822 -0.5646229 0.4634846 0.7094333 -0.6291086 0.3175756 0.6123234 -0.5348064 0.5822321 0.8314768 -0.5355693 0.1475875 0.9338664 -0.3379315 0.1169164 0.9296548 0.2150334 -0.2991119 0.8817713 0.04281747 0.4696493 0 -0.5857418 -0.8104801 0.2656942 -0.6239814 -0.7348552 0.4412671 -0.677633 -0.5882748 0.5597095 -0.6955779 -0.4503616 0.6621906 -0.6830348 -0.3080843 0.8711509 -0.09500408 -0.4817041 0.9601734 0.002685606 -0.2793359 0.7445601 -0.1240882 -0.6558733 0.5704215 -0.1145359 -0.8132877 0.2991424 -0.08972442 -0.9499496 0 -0.04928737 -0.9987792 0 0.05243074 -0.9985961 0.2775658 0.06851404 -0.9582507 0.4507279 0.6420789 -0.6201056 0.5579394 0.6894131 -0.4619281 0.654561 0.675924 -0.3385418 0.7126682 0.6847438 -0.1523178 0 -0.6823939 0.7309488 0 -0.03955197 0.9992066 0.1807001 -0.6381115 0.7484054 0.2387463 -0.06970423 0.968566 0.2034059 -0.662801 0.7206031 0.3202002 -0.1301004 0.9383526 0 -0.1259194 0.9920347 0 -0.2898953 0.9570299 0.3908811 -0.3601184 0.8470413 0 -0.8326975 0.5536668 0.3499252 -0.1556749 0.9237343 0.3441267 -0.09717088 0.9338664 0.4702903 -0.6271249 0.6208991 0.5154882 0.1607715 0.84167 0.7232581 -0.01266515 0.6904202 0.5913572 -0.7079073 0.3861202 0.8858913 0.2768334 0.3721732 0.9218421 0.2279732 0.3133946 0.9473556 -0.3182775 -0.03430277 0.9739677 -0.06698811 -0.2164983 0.891995 0.005615353 -0.4520096 0.7727287 0.004242062 -0.6346935 0.8706015 0.1432234 -0.4706259 0.7063204 -0.01379436 -0.7077242 0.6765648 0.02227848 -0.7360149 0.4669637 -0.001190185 -0.8842433 0.4388867 0.02826011 -0.8980682 0.2181158 0.01016265 -0.9758599 0.2016358 0.03225803 -0.9789117 0 0.005645871 -0.9999695 0 -0.01989805 -0.9997864 0.219245 -0.1413312 -0.9653615 0 -0.1698965 -0.9854427 0.5085909 -0.05667287 -0.8591266 0.7506332 -0.02487254 -0.6602374 0.6559649 0.02148503 -0.7544786 0.802057 -0.2528764 -0.5410321 0.8030641 -0.231727 -0.548967 0.7953124 -0.03903317 -0.6049074 0.6367992 -0.1480147 -0.7566454 0.3367717 -0.3493454 -0.8743553 0.09210485 -0.4344615 -0.8959319 0 -0.4468826 -0.8945586 0.08963286 -0.6891385 -0.7190466 0 -0.6639302 -0.7477645 0.1112704 -0.5969421 -0.7944884 -0.006958186 0.3994873 -0.9166845 0.5305338 0.06579786 -0.8450881 0.6381115 0.482223 -0.600177 0.814539 0.4266182 -0.3930479 0.923307 0.3561205 -0.1436201 0.9787896 0.15421 0.1346171 0.863094 -0.1953184 0.4656819 0.8376415 0.4322947 0.333842 0.9014558 0.1559495 0.4037293 0.7240822 0.1230811 0.6786096 0.8347728 0.4977264 0.2352672 0.3561205 0.3811457 0.853145 0.3605151 0.38081 0.8514664 0.1526231 0.03329569 0.9877011 0.6895657 0.1550035 0.7073885 0.3791314 -0.150853 0.9129307 -0.1026337 -6.71407e-4 0.9946898 0.2439039 -0.1834162 0.9522691 0.5335551 -0.5558031 0.6374401 -0.1054414 -0.3360088 0.9359111 -0.2896206 -0.8144475 0.5027314 -0.788873 -0.1814325 0.5871151 -0.9894406 -0.1174963 0.08465832 -0.7995239 -0.5780511 0.1629993 -0.9797663 0.1304971 -0.1515854 -0.9495834 0.1664479 -0.2656026 -0.2551652 -0.9599597 -0.1153294 0 -0.9633473 0.2681967 0 -0.9987182 0.05038601 0 -0.9921873 0.1245765 0.3423261 -0.777459 0.5275735 -0.4142888 -0.07275611 -0.9071932 -0.05014187 -0.7981506 -0.6003296 -0.7992492 -0.1015045 -0.5923337 0 -0.874691 -0.4846339 -0.6765343 -0.2426221 -0.6952727 -0.9515671 -0.2812891 -0.1240272 -0.9479964 -0.2681356 -0.1713919 -0.6505936 -0.1890316 -0.7354961 -0.1933652 -0.1615344 -0.9677114 -0.2089297 -0.09063994 -0.9736931 0.3815424 -0.07986694 -0.9208655 -0.5783868 0.2776879 -0.7670217 -0.8289743 0.1607715 -0.5356304 -0.3764458 0.4611347 -0.8034913 0.3506882 0.01684617 -0.9363079 0.8446913 0.1065401 -0.5245217 0.8518326 0.01229894 -0.5236366 0.9976196 0.05868709 -0.03604233 0.9911801 0.125309 -0.04275637 0.929014 0.05117952 0.3664052 0.9218116 0.1293069 0.3653676 0.7283853 0.0351268 0.6842555 0.9283425 0.1705069 0.3302713 0.7003998 0.1332133 0.7011933 0.2636189 -0.0145573 0.964507 0.3007294 0.1232337 0.9456771 0.7150487 0.1865596 0.6736961 0.8706626 0.4837489 0.08874779 0.932432 0.3611255 0.01156651 0.9607837 0.2617878 -0.09131133 0.8401135 0.4174627 -0.346263 0.6845607 0.6762291 0.2720725 0.2884914 0.2162846 0.9327067 -0.2203131 0.1771294 0.9591968 -0.2013 0.08273565 0.9760125 -0.2228766 -0.06509596 0.9726554 -0.5701773 -0.003967404 0.8214973 -0.5738701 -0.1295511 0.8085879 -0.8753929 -0.1623279 0.4552446 -0.8728294 -0.2311472 0.4297311 0.5731681 0.5494858 -0.6078677 0.1139561 0.6267586 -0.770806 0 -0.07492291 0.9971618 0 0.8847926 0.4659261 0.1068758 0.9149449 0.389111 0.3006379 -0.05941951 0.9518723 0.1340678 0.9352397 0.3275551 -0.05951106 -0.9920042 0.1112094 0.666097 -0.04345834 0.7445906 0.4924467 0.6465651 0.5825678 0.8930937 0.02868735 0.4488968 0.9707633 0.2389599 0.02218693 0.5136876 -0.819361 -0.2543718 0.5494247 -0.8298288 -0.09726244 0.4548479 -0.8678243 -0.1998962 0 -0.9970092 0.07690662 0.3623462 -0.855678 -0.3694571 0.7169713 0.3450117 -0.6056703 0.517655 0.6488235 -0.5576953 -0.4242073 0.8926359 -0.1522263 -0.3105258 0.8665731 -0.3906369 -0.1528062 0.8813745 -0.4469436 0.2035279 0.486465 -0.8496353 0 0.916776 -0.3993652 0 0.4452956 -0.895352 0.2643208 0.3150731 -0.9114964 0.1833857 -0.8420362 -0.5072482 0 -0.8378552 -0.5458235 0 0.2932218 -0.9560228 0 0.9743645 0.2248909 -0.08667254 0.9752495 0.2032837 -0.2043824 0.944731 0.2562334 -0.1521347 0.943968 0.2928251 -0.6813868 0.7315592 0.02148503 -0.3486739 -0.6964019 -0.6272469 -0.6056703 -0.7369915 -0.2999054 -0.7674185 -0.5140233 -0.3831294 -0.5446944 -0.3340556 -0.7692191 0.06906336 -0.6692099 -0.7398297 -0.6179693 -0.2312387 -0.7513962 -0.8950468 -0.2542497 -0.3663442 -0.8821681 -0.2485122 -0.3999756 -0.5634632 -0.295053 -0.7715995 -0.174871 -0.4963836 -0.8502762 0.3410138 -0.07126069 -0.9373455 0.3314005 0.3353374 -0.8818629 0.3942076 0.5659658 -0.7240211 0.4001282 0.8850673 -0.2377392 0.3487655 0.8621479 0.3674429 0.5433821 0.7836238 0.3010346 0.6633198 0.5507676 0.5065767 0.3332926 0.6498917 0.6830043 0.6683859 0.4595477 0.5848567 0.5514084 0.7913144 0.2640767 0.6173895 0.7280801 -0.2977386 0.5637379 0.5290079 -0.6342967 0.4619892 0.316538 -0.8284555 0.3494064 -0.09222692 -0.9324015 -0.04953151 0.04095584 -0.9979248 -0.2290414 -0.01272618 -0.9732963 -0.1948912 -0.1485335 -0.9694815 0.4893643 -0.4811853 -0.7272866 0.3465987 0.1172826 -0.9306314 0.6575518 0.289346 -0.6955779 0.2732322 0.2367321 -0.9323405 0.5444197 0.3064974 -0.7807856 0.5607776 0.2774438 -0.7800531 0.7282327 0.4273202 -0.5357524 0.8162786 0.5294961 -0.230781 0.8121586 0.5316019 0.2403027 0.4639729 0.5313273 0.7087924 0.3121739 0.445143 0.839259 0.7339091 0.3539232 0.5797296 0.3943907 0.2653585 0.8797571 0.4868618 0.2263557 0.8436232 0.6897794 0.3466292 0.635609 0.8884854 0.4422437 0.1223487 0.8018128 0.4186224 -0.4263741 0.7521592 0.4035767 -0.5208899 0.7787408 0.3388165 -0.5279092 0.8284249 0.5468917 0.1207007 0.9080783 0.4158452 0.04943996 0.8590961 0.5091098 0.0521866 0.6608478 0.3891415 0.6417127 0.4018372 0.3251747 0.8560137 0.4554888 -0.1096835 0.8834193 0.67098 -0.2147892 0.7096469 0.6926176 -0.6705832 0.2656636 0.1185339 -0.2282784 0.9663381 -0.2823572 -0.5381634 0.7941222 -0.5906247 -0.7676321 0.2486648 -0.9190039 -0.2752465 0.2821741 -0.7035737 -0.211829 0.6782739 -0.4766991 -0.1660206 0.8632161 -0.1751152 0.04760885 0.9833674 0.1709647 0.3927122 0.9035921 0.6625263 0.4915006 0.5652028 0.7471847 0.3406781 0.5706046 0.8322398 -0.1780755 0.5249794 0.3760491 0.1745048 0.9100009 0.499588 -0.3495895 0.7925657 -0.1753288 -0.09756767 0.9796442 -0.5664541 -0.3394879 0.7508774 -0.7906125 -0.5332194 0.3009735 -0.4968413 -0.8028504 0.3294168 -0.2878201 -0.701651 0.6517533 0.02642899 -0.5713676 0.820246 0.7557909 -0.1428571 0.6389966 0.4902493 -0.4060183 0.7712028 0.08911401 -0.6463515 0.7578051 -0.321604 -0.674337 0.6646626 -0.6168707 -0.6860256 0.3857234 -0.8071535 -0.5048066 -0.3059175 0.4189276 -0.4555193 -0.7854549 -0.201239 -0.5500046 -0.8105106 -0.25309 0.6454359 0.7206336 -0.4942167 -0.005218625 0.8693197 -0.2370678 0.5567492 0.7961059 0.3823359 0.4456923 0.8094119 0.545793 0.6040529 0.5806757 0.6087527 0.4994659 0.6163824 0.07275611 0.6997894 0.710593 -0.0155034 0.9952697 -0.09585863 0.2430189 0.9079562 0.3413496 0.4447462 0.6991791 -0.5597095 0.05716115 0.8966643 -0.4389172 0.1964476 0.4655293 -0.8629414 0.3085116 0.5006256 -0.808771 0.1803033 0.6512039 -0.7371441 -0.1207922 0.5826289 -0.8036744 0.1355632 0.6516618 -0.7462691 -0.5542772 -0.0557878 -0.8304392 -0.6109501 -0.02816855 -0.7911313 0.1521347 0.5238502 -0.8380993 -0.7907651 0.4161504 0.4488357 -0.8526262 0.3071078 0.4226813 -0.568041 0.08322393 0.8187506 -0.9032258 0.1268349 -0.4099246 -0.8526262 -0.1110568 -0.5105136 -0.7920164 0.009216547 -0.6104007 -0.3611561 0.04446542 -0.9314249 -0.6671957 -0.2720115 -0.6934111 0.09298986 0.3425092 -0.9348735 0.4941862 0.3176366 -0.8092288 -0.5981933 -0.5722526 -0.5609302 -0.5490585 -0.5905637 -0.5913572 -0.6414991 -0.5938902 -0.4855189 -0.579455 -0.6135441 -0.5363934 -0.2246772 -0.9105197 -0.3470565 -0.302591 -0.9093295 -0.2855312 -0.0954619 -0.930723 -0.352977 -0.4351024 -0.5463119 -0.715659 -0.4157232 -0.5345928 -0.7357708 0.4949187 -0.06775104 -0.8662679 0.6984772 0.1177404 -0.7058321 0.6470534 0.04458749 -0.7611011 0.7272256 0.1296121 -0.6740318 0.5025788 -0.06204408 -0.8622699 0.6916715 -0.5378582 -0.4818872 0.8169195 -0.3472701 -0.4604022 0.6922819 0.06909388 -0.7182531 0.7950682 -0.3659474 -0.4836573 0.6018555 0.001617431 -0.7985779 0.8168279 0.1704459 -0.5511032 0.7415998 0.4606159 0.4876247 0.5216834 0.440321 0.7307047 0.7290261 0.4692831 0.4982147 0.8217414 0.1806696 -0.5404218 0.6315805 0.01666307 -0.7751091 0.7835322 -0.5656301 -0.2571489 0.9125339 -0.2197027 -0.3449202 0.8423719 -0.05343788 0.5361797 0.4938505 0.4417859 0.7489242 0.7207862 -0.2941984 0.6275826 0.5001984 0.4152653 0.7598193 0.4745323 0.4195685 0.7737968 0.6104007 -0.0590533 0.7898495 -0.09427165 0.1838129 0.9783929 0.150853 -0.1395306 0.978637 -0.04312264 0.1709952 0.9843135 0.3813898 0.3967406 0.8349254 0.005676388 0.03549301 0.9993286 -0.495529 -0.1169774 0.8606525 -0.6252327 0.06295967 0.7778863 -0.534196 -0.5880001 -0.6072878 -0.7079989 -0.6170538 -0.3434248 -0.73867 -0.3633229 0.5677359 -0.5912656 -0.1842097 0.7851192 -0.5323344 -0.1435285 0.834254 -0.5617542 -0.1385845 0.8155767 -0.2153996 -0.4881436 0.8457595 -0.1248207 -0.7132481 0.6896878 -0.5766167 -0.1366008 0.8055055 -0.7399518 -0.3260293 0.5883053 -0.7113254 -0.6224861 -0.3263039 -0.5584887 -0.6029237 -0.569689 -0.07031464 -0.9756768 -0.2075869 -0.2690512 -0.9526963 -0.1412702 -0.3271279 -0.7288125 0.6014893 0.9490341 -0.1887875 0.252327 0.6042665 0.3494675 0.7160253 -0.1337321 0.2229987 0.9655751 -0.6081728 -0.1872615 0.7713553 -0.5651417 -0.6160771 0.5486313 -0.5694754 -0.8200934 0.05560469 -0.5689871 -0.6170843 -0.5435346 0.8421888 0.1561937 -0.516007 0.1545152 0.04495376 -0.9869381 -0.326487 0.02966398 -0.9447005 -0.6647847 0.7272866 0.1704459 -0.4125492 0.7282937 0.5471358 -0.1300088 0.7053743 0.6967681 0.238258 0.9045076 0.3535875 0.5193945 0.8168889 0.2507401 0.4275338 0.7179175 -0.5493026 0.3212683 0.5286722 -0.785638 0.5816828 0.1157567 -0.8051088 -0.1955931 0.2955107 -0.9350872 -0.5445113 0.1699575 -0.8213447 -0.4026002 -0.08764916 -0.9111301 0.05078279 0.01776176 -0.9985351 0.2261421 -0.02893149 -0.973632 0.6551103 0.007599055 -0.7554552 0.7449873 0.206061 -0.6344188 0.4156926 0.7241432 -0.5502488 0.8554643 0.2890408 -0.4296396 0.348796 0.929075 0.122959 0.6411939 0.5950194 0.4845119 0.3991211 0.5056917 0.7647939 0.5482345 0.6984161 0.4600055 0.7985779 0.5319376 0.2815638 0.7977233 0.5043184 0.3305155 0.6523026 0.0974456 0.7516404 0.3057344 0.2080141 0.9291055 0.2259895 0.4404736 0.8688315 0.0615558 0.7927488 0.6064028 -0.5228431 0.8206122 0.2306283 -0.450148 0.8302561 0.3286538 0.2593158 0.5287332 0.8081912 -0.3106479 0.8138982 0.4909512 0.2500076 0.1360515 0.9586169 0.193823 0.2457045 0.949736 0.05774098 0.2859279 0.9564806 0.6224861 0.1232337 0.7728202 0.889523 -0.3121433 0.3335978 0.9230324 -0.2080752 0.3235267 0.9285562 -0.3678396 -0.04943996 0.8832972 0.2340159 -0.4061709 0.7036653 0.2987457 -0.6446425 0.7883542 -0.2797327 -0.5479294 0.9305399 -0.36198 -0.05496382 0.8219245 -0.1545152 -0.548204 0.4694357 -0.108005 -0.8763085 0.4013184 -0.1683401 -0.900296 0.2331004 -0.1115452 -0.9660024 -0.3840754 -0.3639943 -0.8485061 -0.3520005 -0.4620197 -0.8139897 -0.4209418 -0.4982452 -0.7579577 0.4791711 -0.02728354 -0.8772546 0.7926573 0.04794454 -0.6077456 0.1160008 -0.2518082 -0.9607837 0.8182318 0.1288796 -0.5602283 0.8940703 0.2893765 0.3418378 0.9973144 0.07248145 0.01010161 0.9734184 -0.02063047 -0.2280343 0.6032594 -0.4686117 0.6453139 0.119602 0.1711173 0.9779351 0.520951 -0.2074648 -0.8279672 0.8753624 0.20365 -0.4383984 0.1406598 -0.2038941 -0.9688101 0.1214026 -0.2257759 -0.9665517 0.8545183 0.2560808 -0.451857 0.7830439 0.4012573 0.4751732 0.994232 0.02841269 0.103183 0.9972534 0.04690694 -0.05679494 0.4285714 -0.4123966 0.8038576 0.03118991 0.2551042 0.9663991 0.7629933 0.4349498 0.4781335 0.04098635 0.2484817 0.9677419 0.8572955 0.2143315 -0.4680318 0.124607 -0.2762535 -0.9529405 0.1555833 -0.2904751 -0.9441206 0.8747521 0.142796 -0.4630268 0.3732719 -0.5068514 -0.7770013 0.7703482 0.428785 0.4718466 0.05349892 0.2276681 0.9722587 0.8009583 0.3607898 0.4777367 0.05471968 0.1910153 0.9800409 0.09079253 -0.04422128 0.9948729 0.8818934 0.07940912 0.4646748 0.4094973 -0.7005219 0.5843989 0.9308146 -0.09320348 -0.3533433 0.4036073 -0.9115879 -0.07770007 0.4965361 -0.6394238 -0.5869625 0.9052705 0.2240058 -0.3609119 0.2765282 -0.2478103 -0.9284646 0.2890408 -0.2421033 -0.9261757 0.9067354 0.2580645 -0.3334452 0.7190466 0.457503 0.5230262 0.9120151 0.1661732 0.3749199 0.9626148 0.1948912 0.188055 0.6054262 0.4833827 0.632252 -0.1222876 0.2883999 0.9496445 0.5546739 0.5452742 0.6284372 0.9402142 0.2958769 -0.1685537 0.6132389 -0.7375409 -0.2826929 0.2579424 -0.3873409 0.8850978 -0.04260379 0.3062533 0.9509873 0.7181616 0.4869838 0.4970244 -0.03732413 0.3036592 0.9520249 0.9145787 0.2779626 -0.2936491 0.333781 -0.2340159 -0.9131138 0.3827937 -0.272927 -0.8825648 0.9425032 0.2191229 -0.252205 0.5010529 -0.3963744 -0.7692801 0.6878872 0.4760277 0.5478377 -0.04397714 0.2812281 0.9586169 0.7047334 0.4368724 0.558977 -0.02801597 0.2609027 0.9649342 0.04495376 0.02197331 0.9987182 0.8232674 0.01867729 0.5673086 0.237495 -0.7524949 0.614246 0.386639 -0.9119236 -0.1373638 0.9761345 -0.1575365 -0.1493576 0.4503921 -0.2773522 -0.8486282 0.488876 -0.2888272 -0.8231147 0.9530015 0.2791833 -0.1175268 0.9604786 0.24073 -0.1396527 0.4779198 -0.3522446 -0.804651 0.4717246 -0.4135563 -0.7787103 0.9663991 0.2042909 -0.1558885 0.5442366 -0.6440626 -0.537492 0.9966124 -0.07095551 0.04110842 0.521836 -0.8325755 0.1856746 0.2775964 -0.7256386 0.6295358 0.5705741 0.1857356 0.7999207 -0.1897946 -0.2066103 0.9598071 0.5651112 0.5129857 0.6461074 0.5643788 0.5395062 0.6247749 0.5515915 0.5417035 0.6342662 -0.234901 0.3720511 0.8979766 -0.2528458 0.362743 0.8969085 -0.2832118 0.3177892 0.9048433 -0.2729881 0.2535783 0.9279763 -0.5237587 -0.1210058 0.8431959 -0.3777276 -0.1955015 0.9050264 -0.1094088 -0.3569139 0.9276711 0.4339122 -0.496231 0.7519456 0.8827784 -0.4200263 0.2102725 0.7085483 0.4374828 0.5536668 -0.2278512 0.8671224 0.4428846 0.7759941 0.5240333 0.3509628 0.928312 -0.371746 -4.88296e-4 0.7896969 0.5179296 0.3287759 0.9161962 -0.3991211 0.03561508 0.8230537 -0.53502 0.1904355 0.8261055 0.461745 0.3229774 0.6089969 0.278756 0.7425459 0.3083896 -0.6298715 0.7128208 -0.3977172 -0.4998322 0.7693716 -0.1164281 0.5278481 0.8413038 -0.2149418 0.8561663 0.4698324 -0.2121341 0.8801538 0.424543 -0.1936705 0.8986786 0.3934751 -0.7934507 -0.09466838 -0.6011841 -0.9469283 -0.2114627 0.2420117 -0.9553514 -0.1745964 0.2382274 -0.8266243 -0.1865596 -0.5309 -0.9407026 -0.1522873 0.3030793 -0.222663 -0.1354106 -0.9654225 -0.1198462 -0.05636763 -0.9911801 0.3598437 -0.03268527 -0.9324015 0.3402203 -0.1213721 -0.9324625 -0.2001098 -0.1381878 -0.9699698 -0.8576617 -0.1648305 -0.4870449 -0.9040193 -0.02172917 -0.4268929 -0.9580676 -0.0109561 0.2862941 -0.9140599 -0.3633534 0.1800287 -0.8738059 -0.4196295 -0.2456434 -0.9206824 -0.3145848 -0.2309641 -0.9286172 -0.3023469 0.2149723 -0.5841853 -0.3248085 -0.7437361 -0.6698508 -0.3677785 -0.6449782 -0.3118076 -0.221015 -0.92407 0.09155553 -0.41789 -0.9038667 0.2884304 -0.2234565 -0.9310282 -0.2751244 0.03100675 -0.9608753 0.4128239 -0.1368144 -0.9004486 0.7533494 -0.1415448 -0.6421705 0.7390362 -0.01867729 -0.6733604 0.9779046 -0.1493881 -0.1460615 0.9943846 -0.03051847 -0.1012299 0.7742546 -0.1148106 -0.6223335 0.3912778 0.05240023 -0.9187597 0.7936033 0.04300057 -0.6068911 0.7193823 -0.1679738 -0.6739708 0.6258431 -0.1656544 -0.7621082 0.9378033 -0.2107608 -0.2757958 0.931608 -0.2869961 -0.2228766 0.9726859 -0.09036529 0.2136601 0.9967955 0.0477004 -0.06418043 0.9836726 -0.07818841 -0.1619006 0.9197058 -0.08597064 0.3830073 0.9001129 -0.1412702 0.4120304 0.8881497 -0.05844295 0.4557939 0.402234 -0.1264992 0.9067354 0.4103214 -0.08920556 0.9075595 0.4406262 -0.1017487 0.891873 0.9061556 0.03933835 0.4210944 0.8422193 -0.1993163 0.5008698 0.9458907 -0.2173833 0.2408521 0.8254647 -0.1537827 0.5430464 0.6064028 -0.1176183 0.7863705 0.4998932 -0.3014313 0.8119145 -0.4112674 -0.03543198 0.9107944 0.4958953 0.07904291 0.864742 -0.3710135 0.05731374 0.9268472 -0.3660695 -0.113712 0.9235817 -0.3318888 -0.1281472 0.9345683 -0.3017365 -0.1497848 0.9415265 -0.6930449 -0.1420026 0.7067477 -0.6562395 -0.1756035 0.7338176 -0.718955 -0.1183202 0.6848659 -0.737724 0.05047756 0.6731773 -0.2468642 -0.2354808 0.9399701 -0.7906736 -0.1861934 0.5831782 -0.806177 -0.1968138 0.5579394 -0.9985351 0.03860586 0.03753775 -0.7607043 -0.6357005 0.1310159 -0.7081515 -0.7045503 -0.04562515 -0.9473861 0.2953886 0.1231421 -0.7201148 -0.6926786 -0.03997921 -0.913358 0.296762 0.2787255 -0.9944761 0.08374279 0.06320381 -0.3832514 0.713889 0.5860164 -0.3729362 0.8451186 0.3829463 -0.931547 0.3590198 0.05722218 -0.7553331 -0.6219672 0.2063356 -0.8729209 0.4422742 0.2058473 -0.6106754 -0.5682547 0.5514695 -0.7870419 0.392346 0.4759972 -0.1662343 -0.417951 0.8931242 -0.2847072 0.9256569 0.2491531 -0.2714622 0.9273049 0.2576068 0.4928129 0.8438978 0.211951 0.5530564 0.7744072 0.3071078 0.540025 0.6892911 0.4828944 0.8695639 0.4252754 0.2509537 0.9763482 0.2121952 0.04098635 0.9857174 0.1422162 -0.09002959 0.9455855 0.3252968 0.004974484 0.9151891 0.3862728 0.114658 0.8691061 0.3331095 0.3655812 0.5021821 0.8256173 0.2571184 0.3556322 0.7279886 0.586108 -0.1554613 0.7907346 0.5920591 -0.2436597 0.3455611 0.9061861 0.5560168 0.316538 0.7684866 0.4337596 -0.495468 0.7525559 0.6712241 -0.619068 0.4076357 0.7635731 -0.6325266 0.1297647 0.7575305 -0.6448866 -0.1011688 0.7223426 -0.6777856 -0.1370586 0.770745 -0.6353648 -0.04687643 0.9451888 0.04882961 -0.3228248 0.6786096 -0.7334209 -0.03915524 0.9427168 0.1338847 -0.3055208 0.6519364 0.1762749 -0.7374798 0.6498612 0.05102694 -0.7583239 0.581103 -0.6541643 -0.4840846 -0.06363105 0.06503492 -0.995819 0.03860586 -0.6797693 -0.7323832 -0.5056002 -0.6739403 -0.5386517 -0.7417219 0.06723225 -0.6672872 -0.7027497 -0.6805017 -0.2074343 -0.09497356 0.1893673 -0.9772942 -0.7379986 0.1497238 -0.6579486 -0.9797968 0.05178987 -0.1931516 -0.6837367 -0.7159337 0.1411176 -0.9749748 0.08447521 -0.2054811 0.8967254 0.004455685 0.4425184 0.8670309 0.01132231 0.4980926 0.7875912 0.5530259 0.2716453 0.6725059 0.6026796 0.4294565 0.7795648 0.6054567 0.1601306 0.9924619 0.002227842 0.1224097 -0.1942198 0.03576767 0.9802851 0.7888424 0.009155511 0.6144902 0.1419416 0.7082431 0.6915189 0.6831263 0.1861934 0.7061068 -0.1603747 0.04055905 0.9862056 -6.1037e-4 0.5870846 0.8095034 0.7044283 0.04370248 0.7083957 0.6775109 0.04733419 0.7339397 0.3958556 0.7451094 0.5366985 0.5085299 0.5942564 0.6230659 -0.8967254 0.004455685 0.4425184 -0.6828822 -0.5646535 0.4634846 -0.6123234 -0.5348064 0.5822321 -0.8670309 0.01132231 0.4980926 -0.7875912 0.5530259 0.2716453 -0.8314768 -0.5355693 0.1475875 -0.6725059 0.6026796 0.4294565 -0.7795648 0.6054567 0.1601306 -0.9924619 0.002227842 0.1224097 -0.9081393 -0.2074343 -0.3635975 -0.9601734 0.002685606 -0.2793359 -0.7126682 0.6847438 -0.1523178 0.1942198 0.03576767 0.9802851 0.2159795 -0.5955077 0.7737358 -0.1942198 -0.746971 0.6358227 -0.7888424 0.009155511 0.6144902 -0.1419416 0.7082431 0.6915189 -0.6831263 0.1861934 0.7061068 0.1313211 0.07611316 0.988403 0.1151463 -0.4107486 0.904416 0.03906369 0.6029847 0.7967773 -0.7025361 0.03811758 0.710593 -0.04763936 -0.7606128 0.6474196 -0.2789087 -0.777337 0.5638295 -0.6662496 0.03518784 0.7448652 -0.3958556 0.7451094 0.536729 -0.519425 0.5955077 0.6127812 0.8012635 0.0150761 0.5981017 0.6798303 0.4526506 0.5769524 -0.2616657 0.4675741 0.8442946 -0.3787042 0.0275582 0.9250771 -0.2779626 -0.4441664 0.8517106 0.6779077 -0.4344004 0.5930357 0.5647145 0.2001404 0.8006226 -0.004119992 0.1895199 0.9818415 -0.4282052 0.02703934 0.9032563 -1.22074e-4 -0.2518998 0.9677419 0.4887234 -0.4060183 0.7721793 0.8728294 0.005798459 0.4879605 -0.2701498 0.5864437 0.7635731 -0.5670339 0.2282784 0.791406 -0.614948 0.559679 0.5554369 -0.2125309 0.6198004 0.7553942 0.2732322 0.5216224 0.8082217 0.1066316 0.2747276 0.955565 0.339671 0.04812765 0.9392987 0.5050508 0.02734458 0.8626362 0.2552263 -0.4439527 0.858913 0.07480084 -0.2041383 0.9760735 -0.9010895 -0.03558456 0.4321116 -0.5815302 -0.217658 0.7838374 -0.6102176 -0.5271462 0.5913572 -0.8072451 0.005371212 0.5901669 -0.2656636 -0.5849483 0.7662892 -0.2069154 -0.5958129 0.7759636 -0.9975585 -0.05102694 0.04745626 -0.7932676 0.07647937 -0.6040223 -0.9969787 0.05432289 -0.0554521 -0.2059999 0.151738 -0.9667043 0.3438826 0.181524 -0.9212623 0.7598804 0.166509 -0.6283456 0.9872127 0.1103854 -0.1149021 0.9588 -0.1084933 0.2623981 0.358623 -0.6060671 0.7099521 -0.1603747 -0.7246315 0.6701865 -0.8521683 -0.3180029 0.4155095 -0.9100009 -0.03274631 0.4132816 -0.9784845 0.1976989 -0.05887019 -0.9277322 -0.03036588 0.3719596 -0.9886776 0.01126128 -0.1495102 -0.3628651 -0.4071474 0.8381603 -0.1839351 0.2454909 0.9517807 0.3374127 0.3255714 0.8832362 0.4902493 -0.3898434 0.7795038 0.959685 0.2100284 0.1866512 -0.01553392 -0.3249916 0.9455855 -0.8097171 -8.85037e-4 0.5867794 -0.4786218 0.4125492 0.7750481 0.1571093 -0.2807703 0.9468063 0.4564348 0.5950499 0.6614582 0.86816 0.0509659 0.4936369 0.965392 0.1668447 0.2003845 0.9251992 0.3508408 -0.1444746 0.9748833 0.214423 -0.06009089 0.7143163 0.3719901 -0.5927305 0.54738 0.5894345 -0.5940428 0.6705527 0.4017151 -0.6236457 0.9295633 0.3050325 -0.206946 0.945555 0.2833033 0.1601611 0.7944579 0.6046327 0.05688649 0.7427595 0.1951963 0.6404615 0.7859432 -0.4965056 0.3684194 0.5139927 -0.4899747 0.704062 0.8723716 -0.4868618 -0.04324471 0.7421186 -0.3671377 -0.5607471 0.1248512 -0.4027222 -0.9067354 -0.109653 0.3761711 -0.920011 -0.4100467 -0.5132908 -0.7538987 0.2214423 0.6015198 -0.76751 0.2850124 0.358684 -0.8888516 -0.234962 0.3187048 -0.9182409 -0.1834162 0.5484482 -0.8157903 -0.6341441 0.4672689 -0.6159856 -0.666036 0.2677084 -0.6961882 -0.7651906 -0.6212653 -0.1687368 -0.7776727 0.223426 -0.5875729 -0.7397687 -0.5707572 0.3562731 -0.7350078 0.316477 0.5996277 -0.4414808 0.2914823 0.8485671 -0.3480331 -0.6945708 0.6295968 0.01568651 -0.6017029 0.7985168 -0.008331537 0.3093966 0.9508652 0.5078585 -0.5978271 0.6201667 0.4521317 0.4246956 0.7843257 0.9151586 -0.3340556 0.2254707 0.7744683 0.5397809 0.3298135 0.2655721 0.870571 -0.4141362 -0.5560473 0.7905515 -0.2564775 -0.9115879 0.2797327 0.3011566 -0.7008271 -0.1368755 0.7000641 -0.3438521 -0.5558031 0.7568285 -0.6836451 -0.6134526 0.3953062 -0.9292581 -0.1511582 0.3370464 0.9555345 -0.1664479 0.2432935 0.793878 -0.09558397 -0.6004822 0.9974975 -0.05911433 0.03869742 0.7518235 0.06936854 -0.6556597 0.9915769 0.0630207 -0.1129795 0.7542039 0.2018799 -0.6248055 0.1836298 0.129429 -0.9744255 0.1191137 -0.05639815 -0.9912717 -0.3590198 -0.03381448 -0.9327067 -0.3353374 0.1609546 -0.9282205 -0.7542039 0.1531113 -0.6385083 -0.7385174 -0.02288883 -0.6738182 -0.9941405 -0.03640854 -0.101535 -0.9883725 0.09558397 -0.1180761 -0.8915677 -0.07669299 0.4463332 -0.7516099 0.3614307 -0.5517136 -0.3257241 0.3625599 -0.8731651 0.2237312 0.2948698 -0.9289529 -0.9762566 0.2136296 -0.03540146 -0.9293497 -0.001373291 0.3691519 -0.9227882 0.09247106 0.3740348 -0.7831355 -0.07208472 0.6176336 -0.4177984 -0.1395611 0.8977325 -0.4266793 -0.230903 0.8743858 0.3241371 -0.1930295 0.9260842 -0.8300424 -0.07235938 0.5529649 -0.4428846 -0.2827235 0.850795 0.3590808 -0.33314 0.8717917 0.325663 -0.403943 0.8548235 0.6713767 -0.3795892 0.6364941 0.7351298 -0.2680441 0.6226081 0.6573992 -0.167333 0.7347026 0.867214 -0.1712698 0.467513 0.7323832 -0.2564775 -0.6306955 0.6765343 -0.2426221 -0.6952727 0.9515671 -0.2812891 -0.1240272 0.9687491 -0.2461317 -0.0303964 0.8315684 0.5032197 -0.2349925 0.8728294 -0.2311472 0.4297311 0.7982422 0.599292 0.06033504 0.7545701 0.5542162 0.3512986 0.8586078 -0.2394787 0.4531999 0.5908078 0.2974639 0.7499313 0.5777459 -0.1959593 0.7923216 0.5738701 -0.1295511 0.8085879 0.1676076 -0.1400189 0.9758294 0.2228766 -0.06509596 0.9726554 0.2019104 0.05740529 0.977691 -0.3609424 0.0700705 0.9299295 -0.3411969 -0.08401745 0.9362163 -0.2636189 -0.0145573 0.964507 -0.7283853 0.0351268 0.6842555 -0.7407147 -0.02264469 0.6714072 -0.6896573 0.5018464 0.5219886 -0.9360942 0.009308099 0.3516038 -0.6582232 0.7012543 0.273751 -0.929014 0.05117952 0.3664052 -0.9976196 0.05868709 -0.03604233 -0.9989929 0.01950132 -0.03970456 -0.8138676 0.5809198 -0.01101714 -0.7504807 0.5933104 -0.2910856 -0.8389233 0.01306188 -0.5440535 -0.6130864 0.3411054 -0.7125767 -0.8518326 0.01229894 -0.5236366 -0.3396405 -0.09204381 -0.9360332 -0.01046782 0.2299264 -0.9731437 0.2518082 -0.1987975 -0.9471114 0.6397596 0.4475845 -0.6247444 0.1933652 -0.1615344 -0.9677114 -0.3815424 -0.07986694 -0.9208655 -0.9743645 -0.2221747 -0.03500473 -0.8638874 -0.2146672 0.4556108 -0.5822016 -0.1793267 0.792993 -0.1668142 -0.1254616 0.9779657 0.3406781 -0.07364112 0.937254 0.7418439 -0.01312291 0.6704306 0.3440046 -0.0954619 0.93408 -0.1817377 -0.1514328 0.9715873 -0.5618763 -0.1724296 0.8090152 -0.8497269 -0.1603442 0.5021821 -0.9852901 -0.1706595 -0.006195247 -0.5656301 -0.6393322 0.5208289 -0.7877132 -0.6154668 0.02563554 -0.2125309 -0.5802484 0.7861874 -0.006988704 -0.6388745 0.7692496 0.2731712 -0.5042878 0.8191778 0.7566454 -0.03894162 0.6526078 0.9346599 0.01892143 0.3549913 0.9985351 0.02874839 -0.04568618 0.9363994 -0.02014219 0.3502914 0.5011445 -0.5796381 0.6425062 0.1296426 -0.6746727 0.7266152 0.1093173 -0.6832789 0.7218849 0.7709281 -0.5433515 0.3322245 0.9994507 -0.00967431 -0.03161716 0.8338878 0.007965326 -0.5518357 0.3481857 -0.1251869 -0.929014 -0.2204046 -0.1825922 -0.9581286 -0.7509689 -0.2040467 -0.6279794 -0.7980896 -0.1614429 -0.5804926 -0.370159 -0.1230201 -0.9207739 0.1638233 -0.05838185 -0.9847407 0.6434217 0.04834127 -0.7639393 0.9297464 0.01751762 -0.3676565 0.8684653 -0.4956817 -0.005218625 0.7856685 -0.5069125 -0.3545945 0.581225 -0.4108402 -0.7023835 0.1391034 -0.3538621 -0.9248635 -0.2722861 -0.4098941 -0.87051 -0.5962401 -0.6133305 -0.5179296 0.5552538 0.4721824 0.6845607 0.3732109 0.2005981 0.9057894 0.7152928 0.01153594 0.6986908 0.2285225 0.2109439 0.9503769 0 0.615833 0.7878658 0.4834742 0.483108 0.7299417 -0.2285225 0.2109439 0.9503769 -0.3154393 -0.7270119 0.6098514 -0.4834742 0.483108 0.7299417 -0.3161107 0.2993866 0.900235 -0.6764428 0.01409953 0.7363506 -0.6861476 0.01199376 0.7273476 -0.3370769 -0.2748191 0.9004486 -0.5009003 -0.5226295 0.6898709 0 -0.7092502 0.7049471 0 -0.6586199 0.7524644 0.3370769 -0.2748191 0.9004486 0.5009003 -0.5226295 0.6898709 0.6764428 0.01409953 0.7363506 0.6861476 0.01199376 0.7273476 0.3161107 0.2993866 0.900235 0 0.6563006 0.7544786 0.5637685 0.5411237 0.6239204 -0.5637685 0.5411237 0.6239204 0.3596912 -0.2298654 0.904294 0.6468398 -0.01385539 0.7624744 0.5376751 -0.5095065 0.6717734 -0.5552538 0.4721824 0.6845607 -0.4467299 -0.6865139 0.5736259 -0.005920588 -0.6076846 0.7941222 -0.3688162 0.1994384 0.9078341 -0.7152928 0.01153594 0.6986908 -0.3596912 -0.2298654 0.904294 -0.6468398 -0.01385539 0.7624744 -0.5376751 -0.5095065 0.6717734 -0.7075716 -0.4311655 -0.5598316 -0.8230842 -0.05887019 -0.5648061 -0.7520982 0.03485208 -0.6581012 -0.8366344 0.07415997 -0.5426802 -0.8117313 0.1899777 -0.5522019 0.9438765 -0.08163696 -0.3199561 -0.3621937 0.9309977 -0.04501479 -0.4178289 0.9057894 -0.07034516 -0.7982727 -0.08050781 -0.5968505 -0.6504105 0.7442549 -0.1517685 -0.6613667 0.1112399 0.7417219 0.4702903 0.3741569 0.7992187 0.500351 0.7714469 0.3930174 -0.7743766 0.4947966 0.3943297 0.4915311 0.8396252 0.2310251 -0.7726982 0.5764946 0.2656026 0.4655904 0.882046 0.07181 -0.7659841 0.6318858 0.1181676 0.4381542 0.8868984 -0.1463057 -0.7774285 0.6196478 -0.1075167 0.4241157 0.8186895 -0.3870357 -0.8089541 0.4781945 -0.3418073 0.4554888 0.6915494 -0.560564 -0.8044679 0.3487045 -0.4808496 0.5204932 0.615009 -0.5922727 -0.8131046 0.2534562 -0.5240028 0.4663534 0.06427198 -0.8822291 -0.6225166 -0.2554399 -0.7397077 0.1288796 0.6214484 0.7727592 0.4881436 0.3214514 0.8113956 0.4768517 0.801355 0.3611255 0.5459762 0.7943968 0.2660909 0.4444715 0.8872341 0.1233863 0.5294656 0.8453627 0.07061982 0.4593951 0.8677938 -0.1892758 0.5659658 0.8086795 -0.1602221 0.4283273 0.7396466 -0.5190283 0.4971465 0.7582934 -0.4216437 0.4556108 0.08346807 -0.886227 0.08017212 0.4397717 -0.8944975 -0.6410413 -0.008941888 0.7674185 -0.4982757 0.439375 0.7474288 -0.7343364 0.5921201 0.3318278 -0.680105 0.5870236 0.4391003 -0.8208563 0.558977 0.117069 -0.8560442 0.4970549 0.1416364 -0.8991363 0.417951 -0.1296731 -0.8728904 0.4694357 -0.1329081 -0.8051393 0.442732 -0.3945738 -0.6970733 0.4938811 -0.5196997 -0.4940031 0.2278817 -0.8390454 -0.660329 -0.1081271 -0.7430952 0.05407875 0.5220191 0.8511918 0.9487289 0.3159887 0.00314337 0.9624928 0.1076388 0.2489395 0.5528733 0.7086093 -0.4383373 0.1248817 0.3277688 -0.9364604 -0.615009 0.2689596 0.741203 -0.4293649 0.1991637 -0.8808863 -0.8888516 0.2912687 -0.353618 -0.8592792 0.05749684 0.5081942 -0.9297464 0.2565996 0.2639546 -0.4255806 0.8612934 0.2775048 -0.4192633 0.7842647 0.4572588 -0.7350688 0.6129643 0.2896512 -0.04361093 0.5410321 -0.8398389 -0.132786 0.7348552 -0.6650288 -0.491348 0.4215217 -0.7621387 -0.4356517 0.5211951 -0.7338176 -0.6978973 0.06729328 -0.7130039 -0.5480209 0.0145573 -0.8362987 -0.5188452 0.2687765 -0.8114871 -0.1384014 0.5302286 -0.8364513 0.06463819 0.8021485 -0.5935545 0.006439387 0.7770318 -0.6293832 0.2121341 0.9162267 -0.3398236 -0.577105 0.450209 -0.6813257 -0.5799738 0.6783044 -0.4510636 -0.704886 0.6010926 -0.3765069 -0.5738701 0.4694967 -0.6709495 -0.4791406 0.328959 -0.8137456 -0.4655293 -0.002349913 -0.8850063 -0.5664235 -0.01959288 -0.8238777 -0.6284677 -0.4279 -0.6495255 -0.8168889 -0.176397 -0.549089 -0.264626 -0.7335734 -0.6259346 -0.7505417 -0.05746632 -0.6583148 -0.7769402 -0.09189122 -0.6227912 -0.7607654 -0.1833552 -0.6225471 -0.9601734 -0.2492141 -0.126255 -0.6382336 -0.7697989 0.004577755 -0.9601123 -0.2757958 -0.04544204 -0.9633778 -0.1613513 -0.2140568 -0.9954528 -0.0808435 -0.04989773 -0.9725028 -0.1550645 -0.1736808 -0.7892392 -0.5797601 -0.2023072 -0.6180303 -0.6148869 -0.4897916 -0.4076967 -0.6315195 -0.6594745 -0.6190375 -0.2931608 -0.7285684 -0.5306559 -0.3669546 -0.7640004 -0.1675466 -0.5635854 -0.8088626 -0.2089907 -0.6086307 -0.7654042 -0.03772085 -0.4162114 -0.908475 0.01287877 -0.4614093 -0.8870815 0.1948301 -0.1599475 -0.9676809 0.4698019 0.01510661 -0.8826258 0.219306 0.1986144 -0.9551988 0.02417063 0.5119175 -0.8586688 0.4339732 0.4888455 -0.7567369 0.0228278 0.5260781 -0.8500931 0.5030061 0.0112918 -0.8641926 0.3973815 -0.4822535 -0.780694 0.01297032 -0.4747459 -0.8800013 0.006042659 -0.4869838 0.8733482 -0.04446542 -0.4977569 0.8661458 0.1103244 -0.5450911 0.8310495 -0.397351 -0.6057009 0.6893521 -0.7094333 -0.6291086 0.3175756 -0.9338664 -0.3379315 0.1169164 -0.9296548 0.2150334 -0.2991119 -0.8817713 0.04281747 0.4696493 -0.2656942 -0.6239814 -0.7348552 -0.4412671 -0.677633 -0.5882748 -0.5597095 -0.6955779 -0.4503616 -0.6621906 -0.6830348 -0.3080843 -0.8711509 -0.09500408 -0.4817041 -0.7445601 -0.1240882 -0.6558733 -0.5704215 -0.1145359 -0.8132877 -0.2991424 -0.08972442 -0.9499496 -0.2775658 0.06851404 -0.9582507 -0.4507279 0.6420789 -0.6201056 -0.5579394 0.6894131 -0.4619281 -0.654561 0.675924 -0.3385418 -0.1807001 -0.6381115 0.7484054 -0.2387463 -0.06970423 0.968566 -0.2034059 -0.6628315 0.7206031 -0.3202002 -0.1301004 0.9383526 -0.3908811 -0.3601184 0.8470413 -0.3499252 -0.1556749 0.9237343 -0.3441267 -0.09717088 0.9338664 -0.4702903 -0.6271249 0.6208991 -0.5154882 0.1607715 0.84167 -0.7232581 -0.01266515 0.6904202 -0.5913572 -0.7079073 0.3861202 -0.8858913 0.2768334 0.3721732 -0.9218421 0.2279732 0.3133946 -0.9473556 -0.3182775 -0.03430277 -0.9739677 -0.06698811 -0.2164983 -0.891995 0.005615353 -0.4520096 -0.7727287 0.004242062 -0.6346935 -0.8706015 0.1432234 -0.4706259 -0.7063204 -0.01379436 -0.7077242 -0.6765648 0.02227848 -0.7360149 -0.4669637 -0.001190185 -0.8842433 -0.4388867 0.02826011 -0.8980682 -0.2181158 0.01016265 -0.9758599 -0.2016358 0.03225803 -0.9789117 -0.219245 -0.1413312 -0.9653615 -0.5085909 -0.05667287 -0.8591266 -0.7506332 -0.02487254 -0.6602374 -0.6559649 0.02148503 -0.7544786 -0.802057 -0.2528764 -0.5410321 -0.8030641 -0.231727 -0.548967 -0.7953124 -0.03903317 -0.6049074 -0.6367992 -0.1480147 -0.7566454 -0.3367717 -0.3493454 -0.8743553 -0.09210485 -0.4344615 -0.8959319 -0.08963286 -0.6891385 -0.7190466 -0.1112704 -0.5969421 -0.7944884 0.006958186 0.3994873 -0.9166845 -0.5305338 0.06579786 -0.8450881 -0.6381115 0.482223 -0.600177 -0.814539 0.4266182 -0.3930479 -0.923307 0.3561205 -0.1436201 -0.9787896 0.15421 0.1346171 -0.863094 -0.1953184 0.4656819 -0.8376415 0.4322947 0.333842 -0.9014558 0.1559495 0.4037293 -0.7240822 0.1230811 0.6786096 -0.8347728 0.4977264 0.2352672 -0.3561205 0.3811457 0.853145 -0.3605151 0.38081 0.8514664 -0.1526231 0.03329569 0.9877011 -0.6895657 0.1550035 0.7073885 -0.3791314 -0.150853 0.9129307 0.1026337 -6.71407e-4 0.9946898 -0.2439039 -0.1834162 0.9522691 -0.5335551 -0.5558031 0.6374401 0.1054414 -0.3360088 0.9359111 0.2896206 -0.8144475 0.5027314 0.788873 -0.1814325 0.5871151 0.9894406 -0.1174963 0.08465832 0.7995239 -0.5780511 0.1629993 0.9797663 0.1304971 -0.1515854 0.9495834 0.1664479 -0.2656026 0.2551652 -0.9599597 -0.1153294 -0.3423261 -0.777459 0.5275735 0.4142888 -0.07275611 -0.9071932 0.05014187 -0.7981506 -0.6003296 0.7992492 -0.1015045 -0.5923337 0.9479964 -0.2681356 -0.1713919 0.6505936 -0.1890316 -0.7354961 0.8289743 0.1607715 -0.5356304 0.5783868 0.2776879 -0.7670217 0.3764458 0.4611347 -0.8034913 0.2089297 -0.09063994 -0.9736931 -0.3506882 0.01684617 -0.9363079 -0.1139561 0.6267586 -0.770806 -0.8446913 0.1065401 -0.5245217 -0.9911801 0.125309 -0.04275637 -0.9218116 0.1293069 0.3653676 -0.9283425 0.1705069 0.3302713 -0.7003998 0.1332133 0.7011933 -0.3007294 0.1232337 0.9456771 -0.7150487 0.1865596 0.6736961 -0.8706626 0.4837489 0.08874779 -0.932432 0.3611255 0.01156651 -0.9607837 0.2617878 -0.09131133 -0.8401135 0.4174627 -0.346263 -0.5731681 0.5494858 -0.6078677 -0.6845607 0.6762291 0.2720725 -0.2884914 0.2162846 0.9327067 0.2203131 0.1771294 0.9591968 0.2013 0.08273565 0.9760125 0.5701773 -0.003967404 0.8214973 0.8753929 -0.1623279 0.4552446 -0.1068758 0.9149449 0.389111 -0.3006379 -0.05941951 0.9518723 -0.1340678 0.9352397 0.3275551 0.05954158 -0.9920042 0.1112399 -0.666097 -0.04345834 0.7445906 -0.4924467 0.6465651 0.5825678 -0.8930937 0.02868735 0.4488968 -0.9707633 0.2388989 0.02218693 -0.5137181 -0.819361 -0.2543413 -0.7169713 0.3449202 -0.6057314 -0.3622547 -0.855739 -0.3693655 -0.2642903 0.3150731 -0.9114964 -0.1833552 -0.8420057 -0.5072787 -0.2035279 0.486465 -0.8496353 0.1528062 0.8813745 -0.4469436 -0.517655 0.6488235 -0.5576953 0.4242073 0.8926359 -0.1522263 0.3105258 0.8665731 -0.3906369 -0.5494247 -0.8298288 -0.09732353 -0.4547868 -0.8678548 -0.1998962 0.08667254 0.9752495 0.2032837 0.2043824 0.944731 0.2562334 0.1521347 0.943968 0.2928251 0.6813868 0.7315592 0.02148503 0.7674185 -0.5140233 -0.3831294 0.6056703 -0.7369915 -0.2999054 0.3486739 -0.6964019 -0.6272469 0.5446944 -0.3340556 -0.7692191 -0.06906336 -0.6692099 -0.7398297 0.6179693 -0.2312387 -0.7513962 0.8950468 -0.2542497 -0.3663442 0.8821681 -0.2485122 -0.3999756 0.5634632 -0.295053 -0.7715995 0.174871 -0.4963836 -0.8502762 -0.3410138 -0.07126069 -0.9373455 -0.3314005 0.3353374 -0.8818629 -0.3942076 0.5659658 -0.7240211 -0.4001282 0.8850673 -0.2377392 -0.3487655 0.8621479 0.3674429 -0.5433821 0.7836238 0.3010346 -0.6633198 0.5507676 0.5065767 -0.3332926 0.6498917 0.6830043 -0.6683859 0.4595477 0.5848567 -0.5514084 0.7913144 0.2640767 -0.6173895 0.7280801 -0.2977386 -0.5637379 0.5290079 -0.6342967 -0.4619892 0.316538 -0.8284555 -0.3494064 -0.09222692 -0.9324015 0.04953151 0.04095584 -0.9979248 0.2290719 -0.01272618 -0.9732963 0.1948912 -0.1485335 -0.9694815 -0.4893338 -0.4811853 -0.7272866 -0.3465987 0.1172826 -0.9306314 -0.6575518 0.289346 -0.6955779 -0.2732322 0.2367321 -0.9323405 -0.5444197 0.3064974 -0.7807856 -0.5607776 0.2774438 -0.7800531 -0.7282327 0.4273202 -0.5357524 -0.8162786 0.5294961 -0.230781 -0.8121586 0.5316019 0.2403027 -0.4639729 0.5313273 0.7087924 -0.3121739 0.445143 0.839259 -0.7339091 0.3539232 0.5797296 -0.3943907 0.2653585 0.8797571 -0.4868618 0.2263557 0.8436232 -0.6897794 0.3466292 0.635609 -0.8884854 0.4422437 0.1223487 -0.8018128 0.4186224 -0.4263741 -0.7521592 0.4035767 -0.5208899 -0.7787408 0.3388165 -0.5279092 -0.8284249 0.5468917 0.1207007 -0.9080783 0.4158452 0.04943996 -0.8590961 0.5091098 0.0521866 -0.6608478 0.3891415 0.6417127 -0.4018372 0.3251747 0.8560137 -0.4554888 -0.1096835 0.8834193 -0.67098 -0.2147892 0.7096469 -0.6926176 -0.6705832 0.2656636 -0.1185339 -0.2282784 0.9663381 0.2823572 -0.5381634 0.7941222 0.5906247 -0.7676321 0.2486648 0.9190039 -0.2752465 0.2821741 0.7035737 -0.211829 0.6782739 0.4766991 -0.1660206 0.8632161 0.1751152 0.04760885 0.9833674 -0.1709647 0.3927122 0.9035921 -0.6625263 0.4915006 0.5652028 -0.7471847 0.3406781 0.5706046 -0.8322398 -0.1780755 0.5249794 -0.3760491 0.1745048 0.9100009 -0.499588 -0.3495895 0.7925657 0.1753288 -0.09756767 0.9796442 0.5664541 -0.3394879 0.7508774 0.7906125 -0.5332194 0.3009735 0.4968413 -0.8028504 0.3294168 0.2878201 -0.701651 0.6517533 -0.02642899 -0.5713676 0.820246 -0.7557909 -0.1428571 0.6389966 -0.4902493 -0.4060183 0.7712028 -0.08911401 -0.6463515 0.7578051 0.321604 -0.674337 0.6646626 0.6168707 -0.6860256 0.3857234 0.8071535 -0.5048066 -0.3059175 -0.4189276 -0.4555193 -0.7854549 0.2012695 -0.5500046 -0.8105106 0.25309 0.6454359 0.7206336 0.2370678 0.5567492 0.7961059 0.4942167 -0.005218625 0.8693197 -0.3823359 0.4456923 0.8094119 -0.545793 0.6040529 0.5806757 -0.07275611 0.6997894 0.710593 -0.6087527 0.4994659 0.6163824 0.0155034 0.9952697 -0.09585863 -0.2430189 0.9079562 0.3413496 -0.4447462 0.6991791 -0.5597095 -0.05716115 0.8966643 -0.4389172 -0.1964476 0.4655293 -0.8629414 -0.3085116 0.5006256 -0.808771 -0.1803033 0.6512039 -0.7371441 0.1207922 0.5826289 -0.8036744 -0.1355632 0.6516618 -0.7462691 0.5542772 -0.0557878 -0.8304392 0.6109501 -0.02816855 -0.7911313 -0.1521347 0.5238502 -0.8380993 0.7907651 0.4161504 0.4488357 0.568041 0.08322393 0.8187506 0.8526262 0.3071078 0.4226813 0.9032258 0.1268349 -0.4099246 0.8526262 -0.1110568 -0.5105136 0.7920164 0.009216547 -0.6104007 0.3611561 0.04446542 -0.9314249 0.6671957 -0.2720115 -0.6934111 -0.09298986 0.3425092 -0.9348735 -0.4941862 0.3176366 -0.8092288 0.5981933 -0.5722526 -0.5608997 0.5490585 -0.5905637 -0.5913572 0.6414991 -0.5938902 -0.4855189 0.579455 -0.6135441 -0.5363934 0.4351024 -0.5463119 -0.715659 0.4157232 -0.5345928 -0.7357708 -0.4949187 -0.06775104 -0.8662679 -0.6984772 0.1177404 -0.7058321 -0.6470534 0.04458749 -0.7611011 -0.7272256 0.1296121 -0.6740318 -0.5025788 -0.06204408 -0.8622699 -0.6922819 0.06909388 -0.7182531 -0.6018555 0.001617431 -0.7985779 -0.8168279 0.1704459 -0.5511032 -0.7415998 0.4606159 0.4876247 -0.5216834 0.440321 0.7307047 -0.7290261 0.4692831 0.4982147 -0.8217414 0.1806696 -0.5404218 -0.6315805 0.01666307 -0.7751091 -0.4938505 0.4417859 0.7489242 -0.5001984 0.4152653 0.7598193 -0.4745323 0.4195685 0.7737968 -0.3813898 0.3967406 0.8349254 -0.005676388 0.03549301 0.9993286 0.495529 -0.1169774 0.8606525 0.6252327 0.06295967 0.7778863 0.534196 -0.5880001 -0.6072878 0.5584887 -0.6029237 -0.569689 0.7079989 -0.6170538 -0.3434248 0.73867 -0.3633229 0.5677359 0.5912656 -0.1842097 0.7851192 0.7399518 -0.3260293 0.5883053 0.7113254 -0.6224861 -0.3263039 0.5766167 -0.1366008 0.8055055 0.5617542 -0.1385845 0.8155767 0.5323344 -0.1435285 0.834254 0.09427165 0.1838129 0.9783929 0.04312264 0.1709952 0.9843135 0.9140599 -0.3633534 0.1800287 0.9286172 -0.3023469 0.2149723 0.9206824 -0.3145848 -0.2309641 0.8738059 -0.4196295 -0.2456434 0.5841853 -0.3248085 -0.7437361 0.9040193 -0.02172917 -0.4268929 0.6698508 -0.3677785 -0.6449782 0.3118076 -0.221015 -0.92407 -0.09155553 -0.41789 -0.9038667 -0.2884304 -0.2234565 -0.9310282 0.2751244 0.03100675 -0.9608753 0.8577837 -0.16422 -0.4870449 0.9407636 -0.151799 0.3031404 0.9580676 -0.0109561 0.2862941 0.8262276 -0.1857661 -0.5317545 0.9469588 -0.2111575 0.2421643 0.200354 -0.1380047 -0.9699393 -0.4123661 -0.1375774 -0.9005402 -0.3912473 0.05227816 -0.9187902 -0.7936033 0.04284799 -0.6068911 -0.7193823 -0.1679738 -0.6739708 -0.6258431 -0.1656544 -0.7621082 -0.9378033 -0.2107608 -0.2757958 -0.931608 -0.2869961 -0.2228766 -0.9726859 -0.09036529 0.2136601 -0.9967955 0.04745626 -0.06421095 -0.9458907 -0.2173833 0.2408521 -0.8254647 -0.1537827 0.5430464 -0.8422193 -0.1993163 0.5008698 -0.6064028 -0.1176183 0.7863705 -0.4998932 -0.3014313 0.8119145 0.4112674 -0.03543198 0.9107944 -0.4958648 0.07898187 0.8647725 -0.9060946 0.0390942 0.4211859 -0.9194922 -0.08786278 0.3830989 -0.98352 -0.08008056 -0.1619922 -0.7740104 -0.1162755 -0.622364 -0.7531358 -0.1432234 -0.6420484 -0.3401288 -0.1221351 -0.9324015 0.2221442 -0.1349528 -0.9656056 -0.9775384 -0.1515854 -0.1461226 -0.8997772 -0.1431928 0.412122 -0.4400159 -0.1025422 0.8920866 0.3710135 0.05731374 0.9268472 0.2468642 -0.2354808 0.9399701 0.7906736 -0.1861934 0.5831782 0.806177 -0.1968138 0.5579394 0.737724 0.05047756 0.6731773 0.7190466 -0.1176183 0.6849269 0.3662831 -0.1133152 0.9235512 -0.4019898 -0.1272317 0.9067354 0.3313394 -0.1275368 0.9348125 0.6923429 -0.1411176 0.7076022 0.9985351 0.03860586 0.03753775 0.7081515 -0.7045503 -0.04562515 0.7607043 -0.6357005 0.1310159 0.9473861 0.2953886 0.1231421 0.7201148 -0.6926786 -0.03997921 0.913358 0.296762 0.2787255 0.9944761 0.08374279 0.06320381 0.3832514 0.713889 0.5860164 0.3729362 0.8451186 0.3829463 0.931547 0.3590198 0.05722218 0.7553331 -0.6219672 0.2063356 0.8729209 0.4422742 0.2058473 0.6106754 -0.5682547 0.5514695 0.7870419 0.392346 0.4759972 0.1662343 -0.417951 0.8931242 0.2847072 0.9256569 0.2491531 0.2714622 0.9273049 0.2576068 -0.4928129 0.8438978 0.211951 -0.5530564 0.7744072 0.3071078 -0.540025 0.6892911 0.4828944 -0.8695639 0.4252754 0.2509537 -0.9763482 0.2121952 0.04098635 -0.9857174 0.1422162 -0.09002959 -0.9455855 0.3252968 0.004974484 -0.9151891 0.3862728 0.114658 -0.8691061 0.3331095 0.3655812 -0.5021821 0.8256173 0.2571184 -0.3556322 0.7279886 0.586108 0.1554613 0.7907346 0.5920591 0.2436597 0.3455611 0.9061861 -0.5560168 0.316538 0.7684866 -0.4337596 -0.495468 0.7525559 -0.6712241 -0.619068 0.4076357 -0.7635731 -0.6325266 0.1297647 -0.7575305 -0.6448866 -0.1011688 -0.7223426 -0.6777856 -0.1370586 -0.770745 -0.6353648 -0.04687643 -0.9451888 0.04882961 -0.3228248 -0.6786096 -0.7334209 -0.03915524 -0.9427168 0.1338847 -0.3055208 -0.6519364 0.1762749 -0.7374798 -0.6498612 0.05102694 -0.7583239 -0.581103 -0.6541643 -0.4840846 0.06363105 0.06503492 -0.995819 -0.03860586 -0.6797693 -0.7323832 0.5056002 -0.6739403 -0.5386517 0.7417219 0.06723225 -0.6672872 0.7027497 -0.6805017 -0.2074343 0.09497356 0.1893673 -0.9772942 0.7379986 0.1497238 -0.6579486 0.9797968 0.05178987 -0.1931516 0.6837367 -0.7159337 0.1411176 0.9749748 0.08447521 -0.2054811 0 -0.5755486 0.8177435 0 0.004699826 0.9999695 0 -0.6597492 0.7514573 0.09823906 0.6310923 0.7694327 0 0.4954069 0.8686484 -0.09823906 0.6310923 0.7694327 0.302591 -0.9093295 -0.2855312 0.2246772 -0.9105197 -0.3470565 0.0954619 -0.930723 -0.352977 -0.6916715 -0.5378582 -0.4818872 -0.8169195 -0.3472701 -0.4604022 -0.7950682 -0.3659474 -0.4836573 -0.7835322 -0.5656301 -0.2571489 -0.9125339 -0.2197027 -0.3449202 -0.8423719 -0.05343788 0.5361797 -0.7207862 -0.2941984 0.6275826 -0.6104007 -0.0590533 0.7898495 -0.150853 -0.1395306 0.978637 0.2153996 -0.4881436 0.8457595 0.1248207 -0.7132481 0.6896878 0.3271279 -0.7288125 0.6014893 0.2690512 -0.9526963 -0.1412702 0.07031464 -0.9756768 -0.2075869 -0.9490341 -0.1887875 0.252327 -0.6042665 0.3494675 0.7160253 0.1337321 0.2229987 0.9655751 0.6081728 -0.1872615 0.7713553 0.5651417 -0.6160771 0.5486313 0.5694754 -0.8200934 0.05560469 0.5689871 -0.6170843 -0.5435346 -0.8421888 0.1561937 -0.516007 -0.1545152 0.04495376 -0.9869381 0.326487 0.02966398 -0.9447005 0.6647847 0.7272866 0.1704459 0.4125492 0.7282937 0.5471358 0.1300088 0.7053743 0.6967681 -0.238258 0.9045076 0.3535875 -0.5193945 0.8168889 0.2507401 -0.4275338 0.7179175 -0.5493026 -0.3212683 0.5286722 -0.785638 -0.5816828 0.1157567 -0.8051088 0.1955931 0.2955107 -0.9350872 0.5445113 0.1699575 -0.8213447 0.4026002 -0.08764916 -0.9111301 -0.05078279 0.01776176 -0.9985351 -0.2261421 -0.02893149 -0.973632 -0.6551103 0.007599055 -0.7554552 -0.7449873 0.206061 -0.6344188 -0.4156926 0.7241432 -0.5502488 -0.8554643 0.2890408 -0.4296396 -0.348796 0.929075 0.122959 -0.6411939 0.5950194 0.4845119 -0.3991211 0.5056917 0.7647939 -0.5482345 0.6984161 0.4600055 -0.7985779 0.5319376 0.2815638 -0.7977233 0.5043184 0.3305155 -0.6523026 0.0974456 0.7516404 -0.3057344 0.2080141 0.9291055 -0.2259895 0.4404736 0.8688315 -0.0615558 0.7927488 0.6064028 0.5228431 0.8206122 0.2306588 0.450148 0.8302561 0.3286538 -0.2593158 0.5287332 0.8081912 0.3106479 0.8138982 0.4909512 -0.2500076 0.1360515 0.9586169 -0.193823 0.2457045 0.949736 -0.05774098 0.2859279 0.9564806 -0.6224861 0.1232337 0.7728202 -0.889523 -0.3121433 0.3335978 -0.9230324 -0.2080752 0.3235267 -0.9285562 -0.3678396 -0.04943996 -0.8832972 0.2340159 -0.4061709 -0.7036653 0.2987457 -0.6446425 -0.7883542 -0.2797327 -0.5479294 -0.9305399 -0.3619495 -0.05496382 -0.8219245 -0.1545152 -0.548204 -0.4694357 -0.108005 -0.8763085 -0.4013184 -0.1683401 -0.900296 -0.2331004 -0.1115452 -0.9660024 0.3840754 -0.3639943 -0.8485061 0.3520005 -0.4620197 -0.8139897 0.4209418 -0.4982452 -0.7579577 -0.4791711 -0.02728354 -0.8772546 -0.7926573 0.04794454 -0.6077456 -0.1160008 -0.2518082 -0.9607837 -0.8182318 0.1288491 -0.5602283 -0.8940703 0.2893765 0.3418378 -0.9973144 0.07248145 0.01010161 -0.9734184 -0.02063047 -0.2280343 -0.6032594 -0.4686117 0.6453139 -0.119602 0.1711173 0.9779351 -0.520951 -0.2074648 -0.8279672 -0.8753624 0.20365 -0.4383984 -0.1406598 -0.2038941 -0.9688101 -0.1214026 -0.2257759 -0.9665517 -0.8545183 0.2560808 -0.451857 -0.7830439 0.4012268 0.4751732 -0.994232 0.02841269 0.103183 -0.9972534 0.04690694 -0.05679494 -0.4285714 -0.4123966 0.8038576 -0.03118991 0.2551042 0.9663991 -0.7629933 0.4349498 0.4781335 -0.04098635 0.2484817 0.9677419 -0.8572955 0.2143315 -0.4680318 -0.124607 -0.2762535 -0.9529405 -0.1555833 -0.2904751 -0.9441206 -0.8747521 0.142796 -0.4630268 -0.3732719 -0.5068514 -0.7770013 -0.7703482 0.428785 0.4718466 -0.05349892 0.2276681 0.9722587 -0.8009583 0.3607898 0.4777367 -0.05471968 0.1910153 0.9800409 -0.09079253 -0.04422128 0.9948729 -0.8818934 0.07940912 0.4646748 -0.4094973 -0.7005219 0.5843989 -0.9308146 -0.09320348 -0.3533433 -0.4036073 -0.9115879 -0.07770007 -0.4965056 -0.6394238 -0.586993 -0.9052705 0.2240058 -0.3609119 -0.2765282 -0.2478103 -0.9284646 -0.2890408 -0.2421033 -0.9261757 -0.9067354 0.2580645 -0.3334452 -0.7190466 0.457503 0.5230262 -0.9120151 0.1661732 0.3749199 -0.9626148 0.1948912 0.188055 -0.6054262 0.4833827 0.632252 0.1222876 0.2883999 0.9496445 -0.5546739 0.5452742 0.6284372 -0.9402142 0.2958769 -0.1685537 -0.6132389 -0.7375409 -0.2826929 -0.2579424 -0.3873409 0.8850978 0.04260379 0.3062533 0.9509873 -0.7181616 0.4869838 0.4970244 0.03732413 0.3036592 0.9520249 -0.9145787 0.2779626 -0.2936491 -0.333781 -0.2340159 -0.9131138 -0.3827937 -0.272927 -0.8825648 -0.9425032 0.2190924 -0.252205 -0.5010529 -0.3963744 -0.7692801 -0.6878872 0.4760277 0.5478377 0.04397714 0.2812281 0.9586169 -0.7047334 0.4368724 0.558977 0.02801597 0.2609027 0.9649342 -0.04495376 0.02197331 0.9987182 -0.8232674 0.01867729 0.5673086 -0.237495 -0.7524949 0.614246 -0.386639 -0.9119236 -0.1373638 -0.9761345 -0.1575365 -0.1493576 -0.4503921 -0.2773522 -0.8486282 -0.488876 -0.2888272 -0.8231147 -0.9530015 0.2791833 -0.1175268 -0.9604786 0.24073 -0.1396527 -0.4779198 -0.3522446 -0.804651 -0.4717246 -0.4135563 -0.7787103 -0.9663991 0.2042909 -0.1558885 -0.5442366 -0.6440626 -0.537492 -0.9966124 -0.07095551 0.04110842 -0.521836 -0.8325755 0.1856746 -0.2775964 -0.7256386 0.6295358 -0.5705741 0.1857356 0.7999207 0.1897946 -0.2066103 0.9598071 -0.5651112 0.5129857 0.6461074 -0.5643788 0.5395062 0.6247749 -0.5515915 0.5417035 0.6342662 0.234901 0.3720511 0.8979766 0.2528458 0.362743 0.8969085 0.2832118 0.3177892 0.9048433 0.2729881 0.2535783 0.9279763 0.5237587 -0.1210058 0.8431959 0.3777276 -0.1955015 0.9050264 0.1094088 -0.3569139 0.9276711 -0.4339122 -0.496231 0.7519456 -0.8827784 -0.4200263 0.2102725 -0.7085483 0.4374828 0.5536668 0.2278512 0.8671224 0.4428846 -0.7759941 0.5240333 0.3509628 -0.928312 -0.371746 -4.88296e-4 -0.7896969 0.5179296 0.3287759 -0.9161962 -0.3991211 0.03561508 -0.8230537 -0.53502 0.1904355 -0.8261055 0.461745 0.3229774 -0.6089969 0.278756 0.7425459 -0.3083896 -0.6298715 0.7128208 0.3977172 -0.4998322 0.7693716 0.1164281 0.5278481 0.8413038 0.2149418 0.8561663 0.4698324 0.2121341 0.8801538 0.424543 0.1936705 0.8986786 0.3934751 0.9102451 -0.02722251 0.413129 0.7228919 0.3868221 0.5724967 0.7876522 0.461745 0.4078494 -0.05908381 0.7047029 0.7069918 0.3476974 0.5343791 0.7703787 -0.3344218 0.6247749 0.7055269 -0.66451 0.6500748 0.3684499 -0.8124943 0.1664785 0.5586413 -0.8532365 0.5010529 0.1444746 -0.8449355 0.4928739 0.207709 -0.924131 0.373516 -0.0801416 0.9886166 0.1365398 -0.06277656 0.9684744 0.1911679 -0.1595507 -0.641377 0.5244911 -0.5598926 -0.9005707 0.4181951 -0.1184423 -0.9657887 0.05874812 0.2525407 -0.5945311 -0.1969359 0.7795648 -0.1008331 0.1523789 0.9831538 -0.1565294 -0.4134953 0.896939 -0.6102786 -0.6756493 0.4135258 -0.8074282 -0.5655385 0.1679128 -0.9181494 -0.3792535 -0.114658 -0.6901761 -0.1412702 -0.7097079 -0.6261483 0.4844813 -0.610889 0.05417031 0.7185888 -0.693289 0.05737477 -0.3613392 -0.9306619 0.6185492 0.5799738 -0.530076 0.5981323 -0.5151525 -0.6138188 0.6979278 -0.6993317 -0.154271 0.6780602 0.4609516 -0.5724662 0.2414319 0.5040437 -0.8292185 -0.2314218 0.596118 -0.7687918 0.7068697 -0.6864833 -0.1702933 0.4346751 -0.6659444 -0.6062502 0.8719138 0.4464552 -0.2010559 -0.09628587 -0.5924253 -0.7997986 0.5832393 0.4250923 -0.6921598 0.05227816 0.3047578 -0.9509873 -0.5887326 0.3378704 -0.7343059 -0.6136052 -0.3458968 -0.709769 -0.8800928 -0.4260079 -0.209479 -0.7694327 0.585223 -0.2558367 -0.8004395 0.5971252 0.05188143 -0.8836939 -0.4614704 0.07797479 -0.7592395 -0.6507462 -0.008575677 -0.5532701 0.8314768 -0.04989773 -0.3111667 0.7178564 0.6227302 -0.6127812 0.6674398 0.423017 0.02258366 0.3331705 0.9425642 -0.2230293 0.4161199 0.8814966 0.5537584 0.4463027 0.7029328 0.1868038 0.6434217 0.7423322 0.723716 0.643788 0.2483901 0.3896298 0.7588733 0.5218055 0.7100132 0.6844081 -0.1654713 0.4864345 -0.8668172 -0.1093478 0.5426802 -0.8000733 0.2556231 0.1202124 -0.8435011 0.523423 0.3712882 -0.6806543 0.631489 0.4079409 -0.8984649 0.1621448 -0.1081576 -0.8160039 0.5677969 0.2699972 -0.8801538 0.3903623 -0.426252 -0.7452926 0.5126194 0.07681506 -0.8156072 0.5734733 -0.6098819 -0.7271035 0.3151646 -0.2999359 -0.7574389 0.5798822 -0.3239845 -0.4730064 0.8192999 -0.8975189 -0.4401379 0.02600175 -0.7975402 0.5992615 -0.06915491 -0.2388989 0.539964 0.8070315 -0.6994537 0.6167486 0.360973 -0.8118229 -0.4320505 0.3927427 0.1286965 -0.5107883 0.8500015 0.2433851 0.5269021 0.8143254 0.7626575 -0.6414685 -0.08261358 0.3045747 -0.5650197 0.7667776 0.8658101 0.4295175 0.2565691 0.7479782 -0.6146733 0.2503128 0.4357433 0.5046235 0.7452926 0.9247413 0.3591724 -0.1257973 0.01397746 0.5244606 0.8513138 -0.08908349 -0.469924 0.8781701 0.6516618 0.4626911 0.601001 0.5060274 -0.6010316 0.6186102 -0.3722037 0.5697806 0.7326273 -0.5138707 -0.4756309 0.713889 0.4711753 -0.1727958 0.8648946 0.9226661 -0.04214602 0.3832209 0.797937 0.5646535 0.2106997 0.6321604 0.7689444 0.09512615 0.6563006 -0.7540208 -0.02594071 0.7869808 0.6169012 -0.007263362 0.6888028 0.6501969 -0.3205969 0.535966 0.6593219 -0.5272378 0.3738517 0.6490066 -0.6625568 -0.6563006 -0.7540208 -0.02594071 -0.6321604 0.7689444 0.09512615 -0.797937 0.5646535 0.2106997 -0.7869808 0.6169012 -0.007263362 -0.6888028 0.6501969 -0.3205969 -0.535966 0.6593219 -0.5272378 -0.3738517 0.6490066 -0.6625568 -0.2067323 0.2419812 -0.9479659 0.2287362 0.2416455 -0.9429914 0.4982147 0.517655 -0.6955168 -0.4997406 0.5163121 -0.6954558 0.2121036 -0.1926633 -0.9580065 -0.2211066 -0.1900998 -0.9565111 -0.4847255 -0.4788659 -0.7318949 0.4868618 -0.4774926 -0.7313761 -0.2205267 0.2312387 -0.9475692 0.2126224 0.2361827 -0.948149 0.4840541 0.5101169 -0.7109287 -0.4869533 0.5085299 -0.7100742 0.6041749 0.0155034 -0.7966857 -0.604297 0.01855522 -0.7965331 0.5000153 -0.4863735 -0.7164831 -0.4976654 -0.4879299 -0.7170934 -0.5683157 0.01599168 -0.8226264 -0.2222663 -0.1961119 -0.9550462 0.2287362 -0.1977294 -0.9531541 0.5939818 0.01611375 -0.8042848 0.589404 0.01571702 -0.8076724 -0.5892819 0.01889091 -0.8076724 -0.578814 0.01934874 -0.8152104 0.5617848 0.016541 -0.8270821 0.1434065 0.6423841 0.7528001 0.3197119 0.6131474 0.7223731 0.1770684 0.5484482 0.8171941 0.1035798 0.5727714 0.8131046 0.09341716 0.6473891 0.7563707 0 0.6684774 0.7437056 0 0.5810114 0.8138676 0 0.3674429 0.9300211 0.1205176 0.4365978 0.8915067 -0.03811758 0.07480084 0.9964599 0 0.02917569 0.9995728 0.2076174 0.4046449 0.8905606 0.4369029 0.5105441 0.7405316 0.5040742 0.4926298 0.7093417 0.6805322 0.5390179 0.4962615 0.620655 0.7021088 0.3489181 0.6982635 0.4462721 0.559679 0.5791803 0.4012879 0.7095859 0.537492 0.3303018 0.7758721 0.206122 0.09088408 0.9742729 0.04348886 0.04562515 0.9979858 0 0.2143009 0.9767449 0 0.1268349 0.9919126 0.1418195 0.07345801 0.9871517 0.3312174 0.05801564 0.9417402 0.6591387 -0.04922634 0.7503586 0.9372845 -0.127079 0.3245338 0.9295328 -0.1304056 0.3448286 0.6552324 -0.06433302 0.7526475 0.2577288 -0.05389565 0.9646901 0.4187139 0.05618453 0.9063387 0.8931242 0.08737444 0.4411756 0.9642934 0.2621845 -0.03689682 0.7034516 0.3439436 0.6219062 -0.1434065 0.6423841 0.7528001 -0.3197119 0.6131474 0.7223731 -0.1770684 0.5484482 0.8171941 -0.1035798 0.5727714 0.8131046 -0.09341716 0.6473891 0.7563707 -0.1205176 0.4365978 0.8915067 0.03811758 0.07480084 0.9964599 -0.2076174 0.4046449 0.8905606 -0.4369029 0.5105441 0.7405316 -0.5040742 0.4926298 0.7093417 -0.6805322 0.5390179 0.4962615 -0.620655 0.7021088 0.3489181 -0.6982635 0.4462721 0.559679 -0.5791803 0.4012879 0.7095859 -0.537492 0.3303018 0.7758721 -0.206122 0.09088408 0.9742729 -0.04348886 0.04562515 0.9979858 -0.1418195 0.07345801 0.9871517 -0.3312174 0.05801564 0.9417402 -0.6591387 -0.04922634 0.7503586 -0.9372845 -0.127079 0.3245338 -0.9295328 -0.1304056 0.3448286 -0.6552324 -0.06433302 0.7526475 -0.2577288 -0.05389565 0.9646901 -0.4187445 0.05618453 0.9063387 -0.8931242 0.08737444 0.4411756 -0.7034516 0.3439436 0.6219062 -0.9642934 0.2621845 -0.03689682 -0.1376995 0.7940611 0.5919981 0.3571581 0.7809076 0.5124363 0.3571276 -0.8146916 0.4568621 -0.07788324 -0.8266854 0.5572069 -0.2377392 0.5318155 0.8127689 -0.2558977 -0.5623341 0.7863094 0.6926176 0.5446639 0.4728538 0.7141637 -0.5642873 0.4141057 0.5164647 -0.7737053 0.3668935 0.6483047 0.4853969 0.5865352 0.127781 0.8117619 0.5697806 0.8169805 0.5645009 0.1176794 0.06576734 0.5199744 0.851619 0.1576281 -0.7882321 0.5948058 0.1131626 -0.5727103 0.8118839 0.8275704 -0.558977 0.05130159 -0.2126224 -0.8072451 0.5505844 0 -0.5886105 0.8083743 0.614185 -0.5452437 0.570452 -0.4075747 -0.5512863 0.727958 -0.2472304 0.7587206 0.602649 0 0.4470351 0.8944975 0.2472304 0.7586901 0.602649 0.2126224 -0.8072451 0.5505844 -0.405591 0.5258949 0.7475814 0.6125065 0.4913785 0.619129 0.2288583 0.6486099 0.7258523 0.1376995 0.7940611 0.5919981 0.07788324 -0.8266854 0.5572069 -0.3571276 -0.8146916 0.4568621 -0.3571581 0.7809076 0.5124363 0.2377392 0.5318155 0.8127689 0.2558977 -0.5623341 0.7863094 -0.6926176 0.5446639 0.4728233 -0.7141637 -0.5642873 0.4141057 -0.5164647 -0.7737053 0.3668935 -0.6483047 0.4853969 0.5865352 -0.127781 0.8117619 0.5697806 -0.8169805 0.5645009 0.1176794 -0.06576734 0.5199744 0.851619 -0.1131626 -0.5727103 0.8118839 -0.1576281 -0.7882321 0.5948058 -0.8275704 -0.558977 0.05130159 0.4075747 -0.5512863 0.727958 -0.614185 -0.5452437 0.570452 0.405591 0.5258949 0.7475814 -0.6125065 0.4913785 0.619129 -0.2139958 0.6616718 0.7185888 0.8588824 -0.2505875 0.4466689 0.5640126 -0.8212226 -0.08609271 0.8412427 -0.4218268 0.3381146 0.8496048 0.01031523 0.5272683 0.960448 -0.06472975 0.2707907 0.8095645 0.09237951 0.5796381 0.9436933 0.2083498 0.2569048 0.8110294 0.3564257 0.4638813 0.7161169 0.1333659 0.6850795 0.7462386 0.2775658 0.604999 0.7003083 0.088229 0.7083346 0.7999817 -0.3660695 0.4753868 0.8059633 -0.01818901 0.5916624 0.7777032 -0.498764 0.382519 0.6304209 -0.5783868 0.5176855 0.8245491 -0.263802 0.5005035 0.634785 -0.2846767 0.7183142 0.8173162 0.07696765 0.5710013 0.6251717 0.05407875 0.7785882 0.7975097 0.1734061 0.5778375 0.5964232 0.3760796 0.7090671 0.8954436 0.3392742 0.2881863 0.747673 0.5792719 0.3245949 0.8360546 0.5471969 0.03930783 0.6428419 0.7636342 -0.05993831 0.7113559 0.6136357 -0.3425703 0.5939818 0.7014679 -0.3937803 0.5667592 0.4090701 -0.7151097 0.7963805 0.2759484 -0.5381329 0.8036439 0.03201389 -0.5941954 0.6084476 0.04464852 -0.7922911 0.6751915 -0.24485 -0.695761 0.7966247 -0.1574144 -0.583575 0.7575915 0.1497543 -0.6352733 0.7919858 0.478988 -0.3784906 0.5781732 0.7532274 -0.3136082 0.4853969 0.8042848 -0.3427228 0.5420393 0.7127293 -0.4451735 0.581927 0.6203193 -0.5258034 0.6737266 0.4020814 -0.6199835 0.6562395 0.3626209 -0.6616718 0.7288125 0.1766106 -0.6614887 0.7976928 0.09482097 -0.5955382 0.7936338 -0.2997833 -0.5293741 0.76339 -0.02633744 -0.6453749 0.5377972 -0.8146916 -0.2167119 -0.8585467 -0.2507095 0.4472182 -0.8411817 -0.4218268 0.3382366 -0.5639516 -0.8212836 -0.08603167 -0.8495132 0.01046782 0.5274209 -0.9604786 -0.06476026 0.2706381 -0.8094729 0.09237951 0.5798212 -0.9438154 0.2081667 0.2566301 -0.8110904 0.3563036 0.4638508 -0.7159948 0.1331217 0.6852626 -0.7459945 0.2776879 0.6052431 -0.7003083 0.08807641 0.7083652 -0.7999817 -0.3659474 0.4754478 -0.8059023 -0.01818901 0.5917234 -0.7777337 -0.4986419 0.3826411 -0.6304209 -0.5783868 0.5176855 -0.8245491 -0.263802 0.5005035 -0.634785 -0.2846767 0.7183142 -0.8173162 0.07696765 0.5710013 -0.6251717 0.05407875 0.7785882 -0.7975097 0.1734061 0.5778375 -0.5964232 0.3760796 0.7090671 -0.8954436 0.3392742 0.2881863 -0.747673 0.5792719 0.3245949 -0.8360546 0.5471969 0.03930783 -0.6428419 0.7636342 -0.05993831 -0.7113559 0.6136357 -0.3425703 -0.5939818 0.7014679 -0.3937803 -0.5667592 0.4090701 -0.7151097 -0.7963805 0.2759484 -0.5381329 -0.8036439 0.03201389 -0.5941954 -0.6084476 0.04464852 -0.7922911 -0.6751915 -0.24485 -0.695761 -0.7966247 -0.1574144 -0.583575 -0.7575915 0.1497543 -0.6352733 -0.7918027 0.4792627 -0.3785516 -0.5780816 0.7532884 -0.3135471 -0.4853358 0.8043153 -0.3426923 -0.5421919 0.7125462 -0.4452651 -0.5818964 0.6202277 -0.5259865 -0.6737877 0.4021729 -0.6198614 -0.6559038 0.3626209 -0.6620075 -0.7289346 0.1766106 -0.6613972 -0.7978149 0.09463787 -0.5954161 -0.7935728 -0.2997223 -0.5294961 -0.7634205 -0.02685624 -0.6453139 -0.5377666 -0.8147526 -0.2166203 -0.9638966 0.2642292 0.03192234 -0.9577624 0.285287 0.03576767 -0.945616 -0.1303445 -0.2979217 -0.927366 -0.349559 -0.1333659 -0.9002045 -0.4325388 -0.04989773 -0.9657887 0.2537309 0.05331581 -0.9434492 0.3156834 0.1011383 -0.9416486 0.3302103 0.06479078 -0.8402051 -0.5314798 -0.1074861 -0.5548265 -0.7956175 0.2431104 -0.6976531 -0.7099215 -0.09604173 -0.7464827 -0.6611835 -0.07452619 -0.8342235 -0.510361 -0.2086855 -0.7982727 -0.1441694 -0.5847346 -0.7716605 -0.4690695 -0.429487 -0.758507 -0.6062502 -0.2388989 -0.7728508 -0.6308176 -0.06875818 -0.7465133 -0.665273 0.008819818 -0.6367382 -0.7709281 -0.0135197 -0.6754967 -0.6362804 0.3725394 -0.628132 -0.7628102 0.1533555 -0.6870632 -0.7195349 0.1008636 -0.6229743 -0.7510606 -0.218543 -0.5149388 -0.5840327 -0.62743 -0.6495255 -0.6848354 0.3302408 -0.3617664 -0.9297159 -0.06872767 -0.6194342 -0.7138279 0.3266396 -0.4246345 -0.9015473 0.08258306 -0.5903195 -0.737785 0.3273415 -0.5744804 -0.816126 -0.06228822 -0.7909177 -0.2276986 0.5679495 -0.879574 -0.2229377 0.4202094 -0.4986724 -0.6588031 -0.5632496 -0.8923612 -0.2458266 0.3784295 -0.891232 -0.29841 0.3415021 -0.5058748 -0.6484573 -0.568804 -0.858272 -0.3662221 0.3594775 -0.6520585 -0.6324656 0.418012 -0.2908719 -0.9036836 -0.314127 -0.4693441 -0.7115696 -0.5228431 -0.4957122 -0.6403089 -0.5867183 -0.8331248 -0.2954802 0.467513 -0.5686209 -0.5777154 -0.5855281 -0.8373974 -0.2771386 0.4710532 -0.7952208 -0.2592547 0.5480209 -0.610126 -0.5776239 -0.5422529 -0.7570727 -0.3043916 0.5780206 -0.586993 -0.5872372 0.557268 -0.4115421 -0.8124943 -0.4128544 -0.5906552 -0.6122013 -0.5256203 -0.5898007 -0.5542772 -0.5872372 -0.7934202 -0.2294992 0.5637379 -0.7094638 -0.4712973 -0.5239112 -0.7767266 -0.2453383 0.5800348 -0.7746208 -0.2818079 0.5661184 -0.6885586 -0.5297708 -0.4951628 -0.7524033 -0.3219703 0.574633 -0.5714896 -0.5732902 0.5871151 -0.471511 -0.7987915 -0.3736076 -0.6544389 -0.5757317 -0.4900662 -0.7138279 -0.4990692 -0.4912564 -0.7952208 -0.2995697 0.5270852 0.08825951 0.1704459 0.9813837 -0.7078158 -0.4699545 -0.5273599 -0.7965636 -0.3095187 0.5192725 0.09244054 0.169042 0.9812616 -0.7942137 -0.3438826 0.5009308 0.08340704 0.1099582 0.9904172 -0.7083041 -0.5017243 -0.4964751 -0.7709586 -0.3691519 0.5189368 -0.4918058 -0.6841334 0.5385296 0.05371254 -0.07928705 0.9953917 0.5377361 -0.6370434 0.5522325 -0.5178991 -0.8001038 -0.3026521 0.5106662 -0.8429823 -0.168981 0.179754 -0.4825587 -0.8572039 0.1215552 -0.2818384 -0.9516892 -0.7171545 -0.5030366 -0.4822535 0.109653 -0.2401501 -0.964507 -0.7137058 -0.4812158 -0.5089267 0.1070894 -0.2105777 -0.9716788 0.1040986 -0.213477 -0.9713736 0.8325449 0.1853999 -0.5219581 0.8522294 0.1471908 -0.501999 0.8843349 -0.05340737 -0.4637287 0.9158605 0.1455733 0.3741264 0.8583636 0.3546251 0.3706778 0.8544572 0.3737907 0.3606982 0.8716391 0.3427534 0.350322 0.8153935 0.176519 -0.5512863 -0.1205481 -0.9344767 0.3349406 -0.7735832 -0.58858 -0.2346873 0.1873836 -0.9700003 -0.1546983 0.1900998 -0.9398175 -0.2838526 -0.7779168 -0.5689871 -0.2665792 -0.936491 0.3441572 0.06707966 -0.9330119 0.316477 0.1711173 -0.801355 -0.569689 -0.1823481 0.1597644 -0.969451 -0.1859798 0.04599136 -0.9964293 0.07071137 -0.7593311 -0.641438 0.1091647 -0.8801538 0.1078524 0.4622333 -0.2593768 0.03088468 0.9652699 -0.1657155 -0.2799768 0.9455855 -0.1282998 -0.7381207 0.6623127 0.3006989 -0.1562852 0.9407941 0.3126011 -0.6770532 0.6662191 0.9638966 0.2642292 0.03192234 0.9577624 0.285287 0.03576767 0.945616 -0.130375 -0.2979217 0.927366 -0.349559 -0.1333659 0.9002045 -0.4325388 -0.04989773 0.9657887 0.2537309 0.05331581 0.9434492 0.3156834 0.1011383 0.9416486 0.3302103 0.06479078 0.8402051 -0.5314798 -0.1074861 0.5548265 -0.7956175 0.2431104 0.6976531 -0.7099215 -0.09604173 0.7464827 -0.6611835 -0.07452619 0.8342235 -0.510361 -0.2086855 0.7982727 -0.1441694 -0.5847346 0.7716605 -0.4690695 -0.429487 0.758507 -0.6062502 -0.2388989 0.7728508 -0.6308176 -0.06875818 0.7465133 -0.665273 0.008819818 0.6367382 -0.7709281 -0.0135197 0.6754967 -0.6362804 0.3725394 0.628132 -0.7628102 0.1533555 0.6870632 -0.7195349 0.1008636 0.6229743 -0.7510606 -0.218543 0.5149388 -0.5840327 -0.62743 0.6495255 -0.6848354 0.3302408 0.3617664 -0.9297159 -0.06872767 0.6194342 -0.7138279 0.3266396 0.4246345 -0.9015473 0.08258306 0.5903195 -0.737785 0.3273415 0.5744804 -0.816126 -0.06228822 0.7909177 -0.2276986 0.5679495 0.879574 -0.2229377 0.4202094 0.4986724 -0.6588031 -0.5632496 0.8923612 -0.2458266 0.3784295 0.891232 -0.29841 0.3415021 0.5058748 -0.6484573 -0.568804 0.858272 -0.3662221 0.3594775 0.6520585 -0.6324656 0.418012 0.2908719 -0.9036836 -0.314127 0.4693441 -0.7115696 -0.5228431 0.4957122 -0.6403089 -0.5867183 0.8331248 -0.2954802 0.467513 0.5686209 -0.5777154 -0.5855281 0.8373974 -0.2771386 0.4710532 0.7952208 -0.2592547 0.5480209 0.610126 -0.5776239 -0.5422529 0.7570727 -0.3043916 0.5780206 0.586993 -0.5872372 0.557268 0.4115421 -0.8124943 -0.4128544 0.5906552 -0.6122013 -0.5256203 0.5898007 -0.5542772 -0.5872372 0.7934202 -0.2294992 0.5637379 0.7094638 -0.4712973 -0.5239112 0.7767266 -0.2453383 0.5800348 0.7746208 -0.2818079 0.5661184 0.6885586 -0.5297708 -0.4951628 0.7524033 -0.3219703 0.574633 0.5714896 -0.5732902 0.5871151 0.471511 -0.7987915 -0.3736076 0.6544389 -0.5757317 -0.4900662 0.7138279 -0.4990692 -0.4912564 0.7952208 -0.2995697 0.5270852 -0.08825951 0.1704459 0.9813837 0.7078158 -0.4699545 -0.5273599 0.7965636 -0.3095187 0.5192725 -0.09244054 0.169042 0.9812616 0.7942137 -0.3438826 0.5009308 -0.08340704 0.1099582 0.9904172 0.7083041 -0.5017243 -0.4964751 0.7709586 -0.3691519 0.5189368 0.4918058 -0.6841334 0.5385296 -0.05371254 -0.07928705 0.9953917 -0.5377361 -0.6370434 0.5522325 0.5178991 -0.8001038 -0.3026521 -0.5106662 -0.8429823 -0.168981 -0.179754 -0.4825587 -0.8572039 -0.1215552 -0.2818384 -0.9516892 0.7171545 -0.5030366 -0.4822535 -0.109653 -0.2401501 -0.964507 0.7137058 -0.4812158 -0.5089267 -0.1070894 -0.2105777 -0.9716788 -0.1040986 -0.213477 -0.9713736 -0.8325449 0.1853999 -0.5219581 -0.8522294 0.1471908 -0.501999 -0.8843349 -0.05340737 -0.4637287 -0.9158605 0.1455733 0.3741264 -0.8583636 0.3546251 0.3706778 -0.8544572 0.3737907 0.3606982 -0.8716391 0.3427534 0.350322 -0.8153935 0.176519 -0.5512863 0.1205481 -0.9344767 0.3349406 0.7735832 -0.58858 -0.2346873 -0.1873836 -0.9700003 -0.1546983 -0.1900998 -0.9398175 -0.2838526 0.7779168 -0.5689871 -0.2665792 0.936491 0.3441572 0.06707966 0.9330119 0.316477 0.1711173 0.801355 -0.569689 -0.1823481 -0.1597644 -0.969451 -0.1859798 -0.04599136 -0.9964293 0.07071137 0.7593311 -0.641438 0.1091647 0.8801538 0.1078524 0.4622333 -0.3309732 0.01840263 -0.9434492 -0.2581561 -0.1382183 -0.9561449 -0.280404 0.1752983 -0.9437239 -0.1609851 0.2943815 -0.9420148 -4.27259e-4 0.3387249 -0.9408552 0.1631824 0.2953886 -0.9413129 0.2703635 0.1738639 -0.9468978 0.310007 0.01467937 -0.9505906 0.2627949 -0.1353496 -0.9552904 0.1482589 -0.2464675 -0.9577319 9.76592e-4 -0.2881252 -0.9575793 -0.1534165 -0.2490921 -0.9562365 0.23249 0.4268624 0.8738975 0 0.4382153 0.8988617 0 0.263863 0.9645375 0 0.6945403 0.7194128 0.2123478 0.6914579 0.6904813 0 0.9145482 0.4044008 0.1913815 0.8948027 0.4033326 0.1890011 0.9703971 0.1502731 0 0.9902646 0.1391339 0 0.9997254 -0.02304142 0.1944944 0.9805292 -0.02600175 0 0.975341 -0.2205877 0.1947691 0.9557176 -0.2205877 0 0.8314158 -0.55562 0.2172613 0.8037355 -0.5538499 0 0.5294351 -0.848323 0.2601093 0.4551225 -0.851558 0 0.2591632 -0.9658192 0.2418897 0.246437 -0.9384747 0 0.1329996 -0.9910886 0.4893948 0.2491531 -0.8356578 0.521775 0.4354076 -0.7335734 0.5240333 0.7037263 -0.4796899 0.5647755 0.8005921 -0.2001404 0.5537584 0.8323618 -0.02172917 0.5074923 0.8476821 0.1543931 0.4678182 0.7932371 0.3897519 0.456618 0.6132695 0.6444594 0.4925382 0.389935 0.7780389 0.7628712 0.3097628 0.5674917 0.7200537 0.4795373 0.5015107 0.7829524 0.5509201 0.2888577 0.8303781 0.540849 0.1338847 0.8514664 0.524369 -0.002594053 0.9569079 0.2552568 0.1382488 0.9151586 0.2768028 0.2930082 0.9371014 0.2024292 0.2842799 0.7863399 0.2578204 0.561388 0.5111851 0.2647786 0.8176519 0.2478713 0.2535478 0.9349956 0.22602 -0.4138615 0.8818018 0 -0.3013092 0.9535203 0.4324473 -0.4328745 0.7909482 0.7126072 -0.404828 0.5729545 0.8619343 -0.3945433 0.3183691 0.97763 -0.1271095 0.167455 0.9807428 0.1546678 0.1190832 0.9665212 0.2561113 0.01406902 0.8518326 0.4959868 -0.1683706 0.956328 0.2636799 -0.1260109 0.755974 0.5027924 -0.4191107 0.8371838 0.3357952 -0.4316233 0.6939299 0.2281563 -0.6829127 0.9134801 0.1527451 -0.3770562 0.9862972 0.1233863 -0.1094393 0.9873043 0.1575976 0.01913505 0.990997 0.06765949 -0.1152989 0.9344462 0.1372417 -0.3285012 0.7453536 0.1567736 -0.6479385 0.4810327 0.1420636 -0.8650777 0.213538 0.1447492 -0.9661245 0.1947691 0.05783253 -0.9791253 0 0.06640827 -0.9977722 0.4597613 0.07608264 -0.8847621 0.7380596 0.103885 -0.6666768 0.9486374 0.1127048 -0.2955718 0.9572436 -0.1985229 0.2103335 0.8997467 -0.3367717 0.2774438 0.9394208 0.03360086 0.3410748 0.9840999 0.03543198 0.1739555 0.9824824 0.07675403 0.1697439 0.9924314 -0.06961268 0.1010468 0.8931547 0.3674429 0.2591937 0.6358837 0.7045198 0.3150731 0.8544877 0.4515213 0.2568132 0.9723808 0.1001617 0.2106692 0.9417707 -0.3230689 0.09314244 0.9639577 -0.03088468 0.2641377 0.8546099 0.3409222 0.391644 0.5948058 0.6387219 0.488052 0.8693197 0.2645649 0.4174016 0.9574877 -0.2281563 0.1764275 0.9510178 -0.01406902 0.3087863 0.9863277 -0.03500473 0.1610156 0.936491 0.0999481 0.3360698 0.9230018 0.08902245 0.374279 0.9294107 -0.04342782 0.3664662 0.8881497 -0.1301919 0.4406872 0.9021577 -0.3361309 0.2703329 0.8431654 0.274514 0.4622333 0.5138096 0.7558519 0.4057741 0.8288522 0.5328837 0.1703238 0.9967345 -0.02911466 -0.07495343 0.919187 -0.3777581 0.1111484 0.6180608 -0.7789545 -0.1056551 0.6214179 -0.770806 -0.140202 -0.04419076 -0.9640492 -0.2619099 -0.02331614 -0.9112217 -0.4112064 0.6297799 -0.7135227 -0.3069857 0.9743034 -0.07675403 -0.2116764 0.8534196 0.5048066 0.1295511 0.5562914 0.7176122 0.4189581 0.6968291 0.3300577 0.6367382 0.6668294 -0.3533433 0.6560869 0.627308 -0.2943205 0.7209693 0.7689139 0.002197325 0.6393322 0.7792596 -0.06793415 0.6229438 0.7705008 0.05764943 0.634785 0.7300028 0.2504349 0.6358837 0.8081302 0.1393475 0.5722221 0.8336741 -0.04470956 0.5504013 0.6802576 0.2324594 0.6951201 0.5683157 0.02658158 0.8223518 0.532487 -0.08377331 0.8422498 0.5989563 0.1631824 0.7839595 0.4699545 -0.159978 0.8680379 0.4066591 -0.1758476 0.8964812 0.7040925 -0.1577501 0.6923429 0.569628 -0.448561 0.6886502 0.8702353 0.2034059 0.4486221 0.6957305 0.4278085 0.5769829 0.5882748 0.6398511 0.4944609 0.3841059 -0.1653187 0.9083529 0.3440962 -0.2715537 0.8987701 0.5692617 0.1479842 0.8086795 0.4704123 -0.1265907 0.8732872 0.5084689 0.04919582 0.8596454 0.6064028 0.1527757 0.7803278 0.6262398 -0.140904 0.7667776 0.7723319 -0.1378521 0.6200445 0.8873867 -0.03460794 0.4597003 0.7256692 -0.5651723 0.3923155 0.5324259 -0.6855678 0.4964141 0.5083773 -0.2166203 0.83343 0.4369335 -0.2173833 0.8727989 0.5485397 0.06741535 0.833369 0.3229163 -0.2822046 0.9033173 0.2546769 -0.6441847 0.7211829 0.3715628 -0.7107761 0.5972167 0 -0.5064547 0.8622394 0 -0.2949309 0.955504 0 0.2446669 0.969573 0.4125187 0.02002012 0.9107028 0.5359355 0.5681021 0.6244698 0.5353557 0.2043214 0.8195136 0.5008392 0.5161901 0.6947539 0.5230568 -0.0278939 0.8518021 0.6375622 0.1149937 0.761742 0.5202795 0.1419721 0.8420667 0.4043703 -0.2605365 0.8766747 0.440199 -0.2414014 0.864803 0.4687033 -0.2043824 0.8593707 0.3954893 -0.2789392 0.8750572 0 -0.2127445 0.9770806 0 -0.1186864 0.9929197 0 0.2041993 0.9789117 0 0.6107975 0.7917417 0 0.7946105 0.6071047 0.4413892 0.7202979 0.5350505 0 0.7032075 0.7109592 0.6269723 0.6161992 0.4766076 0.6203498 0.6367077 0.4579302 0.4733421 0.6317942 0.6137883 0.5004425 -0.3092746 0.8086184 1.22074e-4 -0.2518998 0.9677419 3.05185e-5 -0.6075015 0.7943053 0.3455611 -0.4957732 0.7967162 0.5025178 -0.3720816 0.7803583 0.6192511 0.1225623 0.7755364 0.6117435 0.602588 0.5124668 0.7183447 0.4280221 0.5483566 0.6179998 0.03515732 0.7853633 0.8630635 0.0112918 0.5049288 0.2865383 0.5153661 0.8076113 0.6498001 0.04550307 0.7587206 0.7179785 -0.09384441 0.6896573 0.2526627 -0.3421735 0.9049959 0.2616352 -0.1899167 0.9462874 0.3565477 -0.2838526 0.8900724 0.2904141 -0.5233924 0.8010498 0.6555071 0.02499461 0.7547532 0 0.01324498 0.9999085 0.5958434 -0.07623523 0.7994323 0 -0.2317575 0.972747 0.4572893 -0.5988342 0.6574298 9.15555e-5 -0.6635335 0.7481307 0 -0.9638355 0.2663961 0.4806055 -0.8586383 0.178045 1.22074e-4 -0.9878231 -0.1553697 0.8398084 -0.3950926 0.3722953 0.8576922 -0.03939938 0.5126194 0.4613788 -0.144261 0.8753929 0.0147404 -0.4604022 0.8875698 0.1148411 -0.2171087 0.9693289 0.5641957 -0.7181616 0.4073 0.776452 -0.6255989 0.07544171 0.5463729 -0.837489 -0.007232844 0 -0.9986267 0.05233919 -0.4173711 -0.8744774 0.2470168 0 -0.9031648 -0.4292123 0.01583909 -0.9007843 0.4339732 0.2864162 -0.8584247 0.4254891 -0.6801965 -0.3847163 0.6239204 -0.7756584 -0.3604541 0.5180212 -0.7833491 -0.6157109 0.0849635 -0.5032197 -0.7310709 -0.4606769 -0.2113407 -0.6837062 -0.6984466 -0.4564653 -0.764916 -0.4544206 -0.1050752 -0.9850154 -0.1365092 -0.5034944 -0.863155 -0.0376293 -0.5378887 -0.7628102 0.3588671 -0.1428877 -0.9367657 0.3194067 -0.4422132 -0.4366283 0.7834101 -0.4890591 -0.2122257 0.8460036 -0.4010132 -0.3617969 0.8415479 0.1105991 -0.6682943 0.7356182 -0.1498764 -0.9238258 0.3521836 0.1759697 -0.9384747 0.2969756 0.2722251 -0.6896573 0.6710105 0.3010651 -0.2795495 0.9116795 0.1672109 0.008056879 0.98587 -0.01977598 0.1396222 0.9899899 -0.2221747 -0.6996063 0.6790674 0.07766956 -0.6339 0.7694632 0.2124088 -0.8989532 0.3830378 0.1418195 -0.97528 -0.1693777 0.4096499 -0.9121677 -0.00967431 0.1423688 -0.8150578 -0.5615711 -0.1625721 -0.4175848 -0.8939482 0.02914518 -0.7481613 -0.662862 -0.02649003 -0.9924619 -0.1193884 0.9992066 0.03540146 0.01745659 0.9972534 0.04202395 0.06082338 0.9825129 -0.06723225 0.1734672 0.8289132 -0.5555284 0.06509596 0.9877926 -0.1046785 -0.1152989 0.9963073 -0.0266121 -0.08130127 0.9823298 0.06137269 -0.1766411 0.9586169 0.1943418 -0.2080141 0.9695425 0.19541 -0.147557 0.967864 0.2345957 -0.09018218 0.9671316 0.2499771 0.04580825 0.7812433 0.6238288 0.02154606 0.9540391 0.254799 0.1576281 0.9586169 0.1553087 0.2385632 0.9653615 0.04434335 0.2570879 0.9558092 0.1910763 0.2232734 0.7216407 0.5649281 0.4000977 0.7520066 0.6584063 0.03048795 0.7498093 0.5717033 -0.333018 0.8251289 -0.4495376 -0.342082 0.8255257 -0.5598316 0.07098603 0.74514 -0.5120396 0.4272592 0.9649037 -0.1027863 0.241554 0.9707328 -0.04959255 0.2349315 0.8261666 0.510239 -0.2388378 0.7629628 0.5988342 -0.2433851 0.9280068 0.1759392 -0.3283486 0.6127201 0.5409406 -0.5761284 0.626423 0.4506974 -0.6359142 0.3424787 0.4009522 -0.8496658 0.3450728 0.4758446 -0.8089846 0.1337016 0.391583 -0.9103671 0 0.39082 -0.9204382 0.1437727 0.4696798 -0.8710288 0 0.4492935 -0.8933683 0.488815 0.05682545 -0.87051 0.7526475 0.1027558 -0.6503189 0.4857936 -0.4233833 -0.7646412 0.7291177 -0.3606067 -0.5816523 0.8790246 -0.3077791 -0.3640553 0.5519883 -0.7787408 -0.2980437 0.4831995 -0.7884762 -0.3805048 0.3404645 -0.8162176 -0.4667196 0.2421033 -0.4700155 -0.8487808 0.2343211 0.009735405 -0.9721061 0 -0.01837211 -0.9998169 0 -0.5076754 -0.8615375 0.1736503 -0.838496 -0.5164647 0 -0.8501236 -0.5265664 0.0549333 -0.9909055 0.1227149 0 -0.9930112 0.1179845 0.07968378 -0.9939574 0.07528913 0.07763904 -0.9953612 0.05676442 0.006073176 -0.999939 -0.009186029 0.5787225 0.4371472 0.6884365 0.3827021 0.5676138 0.7289041 0.3605762 0.2667317 0.8937346 0.5175634 -0.4533525 0.7256386 -0.2979827 -0.6643269 0.6854152 0.05945003 -0.8823207 0.4668416 0.2441175 -0.9121677 0.3290811 0.4543901 -0.5878475 0.6692709 0.3975646 -0.08417004 0.9136937 0.1784722 0.2868435 0.9411908 -0.05130159 -0.2694479 0.9616382 -0.05261391 0.4531694 0.8898587 -0.2356334 0.05920588 0.9700309 -0.3045137 0.1305887 0.9434797 -0.2367931 0.2922452 0.9265419 -0.4529252 0.4695578 0.7578356 -0.3791925 0.1649525 0.9104892 0.2759789 -0.3656728 0.8888516 0.4996796 -0.6023133 0.6224861 0.4852138 -0.03927731 0.8735008 -0.3219703 0.0587176 0.9449141 -0.5361186 0.1602526 0.8287606 -0.5940428 -0.4256417 0.6825464 -0.09268468 -0.7809992 0.6175726 0.280404 -0.7894528 0.5459762 -0.04788351 -0.5066378 0.8608051 -0.3173009 -0.1033051 0.9426558 0.4267708 0.2426221 0.8711814 0.7512742 -0.1083407 0.6510208 0.7317423 -0.6113468 0.3012177 0.4969024 -0.8016602 -0.3322245 0.882992 -0.4530168 0.1227759 0.8638264 0.07010102 0.4988555 0.2462843 0.244911 0.9377117 0.4514298 -0.6365246 0.6252937 0.5790887 -0.6777245 0.4530778 0.4081546 0.003356993 0.9128696 -0.23249 0.4268624 0.8738975 -0.2123478 0.6914579 0.6904813 -0.1913815 0.8948027 0.4033326 -0.1890011 0.9703971 0.1502731 -0.1944944 0.9805292 -0.02600175 -0.1947691 0.9557176 -0.2205877 -0.2172613 0.8037355 -0.5538499 -0.2601093 0.4551225 -0.851558 -0.2418897 0.246437 -0.9384747 -0.4893948 0.2491531 -0.8356578 -0.521775 0.4354076 -0.7335734 -0.5240333 0.7037263 -0.4796899 -0.5647755 0.8005921 -0.2001404 -0.5537584 0.8323618 -0.02172917 -0.5074923 0.8476821 0.1543931 -0.4678182 0.7932371 0.3897519 -0.456618 0.6132695 0.6444594 -0.4925382 0.389935 0.7780389 -0.7628712 0.3097628 0.5674917 -0.7200537 0.4795373 0.5015107 -0.7829524 0.5509201 0.2888577 -0.8303781 0.540849 0.1338847 -0.8514664 0.524369 -0.002594053 -0.9569079 0.2552568 0.1382488 -0.9151586 0.2768028 0.2930082 -0.9371014 0.2024292 0.2842799 -0.7863399 0.2578204 0.561388 -0.5111851 0.2647786 0.8176519 -0.2478713 0.2535478 0.9349956 -0.22602 -0.4138615 0.8818018 -0.4324473 -0.4328745 0.7909482 -0.7126072 -0.404828 0.5729545 -0.8619343 -0.3945433 0.3183691 -0.97763 -0.1271095 0.1674245 -0.9807428 0.1546678 0.1190832 -0.9665212 0.2561113 0.01406902 -0.8518326 0.4959868 -0.1683706 -0.956328 0.2636799 -0.1260109 -0.755974 0.5027924 -0.4191107 -0.8371838 0.3357952 -0.4316233 -0.6939299 0.2281563 -0.6829127 -0.9134801 0.1527451 -0.3770562 -0.9862972 0.1233863 -0.1094393 -0.9873043 0.1575976 0.01913505 -0.990997 0.06765949 -0.1152989 -0.9344462 0.1372417 -0.3285012 -0.7453536 0.1567736 -0.6479385 -0.4810327 0.1420636 -0.8650777 -0.213538 0.1447492 -0.9661245 -0.1947691 0.05783253 -0.9791253 -0.4597613 0.07608264 -0.8847621 -0.7380596 0.103885 -0.6666768 -0.9486374 0.1127048 -0.2955718 -0.9572436 -0.1985229 0.2103335 -0.8997467 -0.3367717 0.2774438 -0.9394208 0.03360086 0.3410748 -0.9840999 0.03543198 0.1739555 -0.9824824 0.07675403 0.1697439 -0.9924314 -0.06961268 0.1010468 -0.8931547 0.3674123 0.2593158 -0.6359447 0.7044283 0.3151341 -0.8544572 0.4515824 0.2567827 -0.9724113 0.1001923 0.2106387 -0.9417707 -0.3230994 0.09305089 -0.9639577 -0.03100675 0.2641987 -0.8544877 0.3410748 0.3917661 -0.5948058 0.6387219 0.488052 -0.8693197 0.2645649 0.4174016 -0.9574877 -0.2281563 0.1764275 -0.9510178 -0.01406902 0.3087863 -0.9863277 -0.03500473 0.1610156 -0.936491 0.0999481 0.3360698 -0.9230018 0.08902245 0.374279 -0.9294107 -0.04342782 0.3664662 -0.8881497 -0.1301919 0.4406872 -0.9021577 -0.3361309 0.2703329 -0.8431654 0.274514 0.4622333 -0.5138096 0.7558519 0.4057741 -0.8288522 0.5328837 0.1703238 -0.9967345 -0.02917569 -0.0748924 -0.9190649 -0.3780633 0.1110568 -0.6180608 -0.7789545 -0.1056551 -0.6214179 -0.770806 -0.1401715 0.04419076 -0.9640492 -0.2619099 0.02331614 -0.9112217 -0.4112064 -0.6303598 -0.7145604 -0.3032929 -0.9744255 -0.07947015 -0.2100894 -0.8534196 0.5048066 0.1295511 -0.5562914 0.7176122 0.4189581 -0.6967376 0.329722 0.6370128 -0.6683554 -0.352031 0.6552324 -0.627369 -0.2944426 0.7208472 -0.7689444 0.002227842 0.6392712 -0.7792596 -0.06793415 0.6229438 -0.7705008 0.05764943 0.634785 -0.7300028 0.2504349 0.6358837 -0.8081302 0.1393475 0.5722221 -0.8336741 -0.04470956 0.5504013 -0.6802576 0.2324594 0.6951201 -0.5683157 0.02658158 0.8223518 -0.532487 -0.08377331 0.8422498 -0.5989563 0.1633045 0.7839289 -0.4700766 -0.1598864 0.8680074 -0.4066897 -0.1758476 0.8964507 -0.7058321 -0.154973 0.6911832 -0.5716422 -0.4470046 0.6880093 -0.8706321 0.2056337 0.446852 -0.695883 0.4267708 0.5775628 -0.5882138 0.6398816 0.4944609 -0.3840754 -0.1652577 0.9083834 -0.3440657 -0.2715537 0.8988006 -0.5692617 0.1479842 0.8086795 -0.4704123 -0.1265907 0.8732872 -0.5084689 0.04919582 0.8596454 -0.6064028 0.1527757 0.7803278 -0.6262398 -0.140904 0.7667776 -0.7723319 -0.1378521 0.6200445 -0.8873867 -0.03460794 0.4597003 -0.7256692 -0.5651723 0.3923155 -0.5324259 -0.6855678 0.4964141 -0.5083773 -0.2166203 0.83343 -0.4369335 -0.2173833 0.8727989 -0.5485397 0.06741535 0.833369 -0.3229163 -0.2822046 0.9033173 -0.2546769 -0.6441847 0.7211829 -0.3715628 -0.7107761 0.5972167 -0.4125187 0.02002012 0.9107028 -0.5359355 0.5681021 0.6245003 -0.5353557 0.2043214 0.8195136 -0.5008392 0.5161595 0.6947539 -0.5230568 -0.0278939 0.8518021 -0.6375622 0.1149937 0.761742 -0.5202795 0.1419721 0.8420667 -0.4043703 -0.2605365 0.8766747 -0.440199 -0.2414014 0.864803 -0.4687033 -0.2043824 0.8593707 -0.3954893 -0.2789392 0.8750572 -0.4413892 0.7202979 0.5350505 -0.6267892 0.6166265 0.4763329 -0.6201972 0.6370739 0.4576556 -0.47322 0.6318553 0.6137883 -0.5006867 -0.309183 0.8084964 -0.3455611 -0.4958037 0.7966857 -0.5025788 -0.3722037 0.7802667 -0.61919 0.1225623 0.7755974 -0.611774 0.6025269 0.5124668 -0.718009 0.4272897 0.5493942 -0.6180608 0.03506577 0.7853328 -0.8629719 0.0112918 0.5050508 -0.2854396 0.5147557 0.8084048 -0.6504715 0.04510635 0.7581408 -0.718009 -0.09421062 0.6895962 -0.2522965 -0.3419904 0.905179 -0.2618793 -0.1899167 0.9461959 -0.3563646 -0.2837611 0.8901944 -0.2904141 -0.5233009 0.8011109 -0.6552324 0.02490305 0.7549669 -0.5958739 -0.07614368 0.7994323 -0.4575945 -0.5987122 0.6573382 -0.4806055 -0.8586383 0.178045 -0.8398389 -0.3950621 0.3722342 -0.8573565 -0.03970456 0.5131382 -0.4607685 -0.1444135 0.8756676 -0.01489299 -0.4604022 0.8875698 -0.114597 -0.2173528 0.9693289 -0.5637074 -0.7184363 0.4074831 -0.7763603 -0.6256905 0.07556378 -0.5463424 -0.8375195 -0.007202327 0.4172796 -0.8745689 0.2468642 -0.01501506 -0.9006928 0.4341563 -0.2866604 -0.8583636 0.4254586 0.6807459 -0.3844417 0.6234931 0.7755669 -0.3601794 0.5183874 0.7832576 -0.615833 0.08478039 0.5033723 -0.7308878 -0.46086 0.2112186 -0.6837672 -0.6984466 0.4566485 -0.7647939 -0.4544206 0.5031892 -0.8633381 -0.03759878 0.5378582 -0.7628407 0.358745 0.4422437 -0.4365978 0.7834101 0.4886624 -0.2120731 0.8462783 0.4011048 -0.3621326 0.8413953 -0.1105991 -0.6682943 0.7356182 0.1499374 -0.9237953 0.3522446 -0.1759697 -0.9384747 0.2969756 -0.2722251 -0.6896573 0.6710105 -0.3009125 -0.2795801 0.9117405 -0.1667226 0.007904291 0.9859615 -0.3971984 -0.08456677 0.9137852 -0.4544511 -0.5877255 0.669332 -0.2441175 -0.9121677 0.3290811 -0.05935847 -0.8823512 0.4667806 0.2977996 -0.6644185 0.6854457 -0.5175634 -0.4533525 0.7256386 -0.5789361 -0.6779077 0.4529862 -0.4077578 0.003356993 0.9130527 -0.4515519 -0.6369213 0.6248055 -0.2800073 -0.7894528 0.5461898 0.05130159 -0.2693869 0.9616382 -0.1788384 0.286813 0.9411298 0.01977598 0.1395916 0.9899899 0.05273598 0.4531388 0.8898587 0.2356334 0.05920588 0.9700309 0.2221747 -0.6996063 0.6790674 0.1429182 -0.9367657 0.3193762 0.1051362 -0.9850154 -0.1365092 -0.1412702 -0.9752495 -0.1700186 -0.2125003 -0.8990142 0.3828852 -0.07745593 -0.6338695 0.7695242 0.3045137 0.1305581 0.9434797 0.2367016 0.2923063 0.9265419 0.4529862 0.4695883 0.7578051 0.3792535 0.1650746 0.9104282 -0.2761009 -0.3655202 0.8888821 -0.4998627 -0.6022217 0.6223945 -0.4098026 -0.9120762 -0.01132231 -0.1417585 -0.8150883 -0.5616932 0.16245 -0.4177374 -0.8938872 -0.02926725 -0.7488327 -0.6620991 0.02655106 -0.9924619 -0.1193884 -0.9992066 0.03540146 0.01745659 -0.9972534 0.04202395 0.06082338 -0.9825129 -0.06723225 0.1734672 -0.8289132 -0.5555284 0.06509596 -0.9877926 -0.1046785 -0.1152989 -0.9963073 -0.0266121 -0.08130127 -0.9823298 0.06137269 -0.1766411 -0.9586169 0.1943418 -0.2080141 -0.9695425 0.19541 -0.147557 -0.967864 0.2345957 -0.09018218 -0.9671316 0.2499771 0.04580825 -0.7812433 0.6238288 0.02154606 -0.9540391 0.254799 0.1576281 -0.9586169 0.1553087 0.2385632 -0.9653615 0.04434335 0.2570879 -0.9558092 0.1910763 0.2232734 -0.7216407 0.5649281 0.4000977 -0.7520066 0.6584063 0.03048795 -0.7498093 0.5717033 -0.3329874 -0.8251289 -0.4495376 -0.3420515 -0.8255257 -0.5598316 0.07098603 -0.74514 -0.5120396 0.4272592 -0.9649037 -0.1027863 0.241554 -0.9707328 -0.04959255 0.2349315 -0.3614917 0.2675863 0.8931242 -0.3826411 0.5671865 0.7292703 -0.2472915 0.2461622 0.9371319 0.04782247 -0.5068514 0.860683 -0.4266793 0.243202 0.8710593 -0.5777764 0.4375439 0.6889554 -0.8654744 0.0643025 0.4967498 -0.7530137 -0.1087679 0.6489151 -0.8815271 -0.4564653 0.1205176 -0.4977569 -0.8011414 -0.332194 -0.7353435 -0.6086917 0.2977996 -0.4854579 -0.03921627 0.8733482 0.3211157 0.05838185 0.9452193 0.3174535 -0.1035493 0.9425642 0.5939207 -0.4257332 0.6826075 0.5359966 0.1602832 0.8288217 0.09265416 -0.7809992 0.6175726 -0.8261361 0.5103 -0.2388073 -0.7629628 0.5988342 -0.2433546 -0.9279763 0.1762139 -0.3283181 -0.6127201 0.5410016 -0.5760674 -0.6263619 0.4508194 -0.6358837 -0.3424177 0.4010132 -0.8496353 -0.3451033 0.4758141 -0.8089846 -0.1336711 0.391583 -0.9103671 -0.1437727 0.4696798 -0.8710288 -0.4887539 0.0567339 -0.8705405 -0.752678 0.1027558 -0.6502884 -0.7290872 -0.3606982 -0.5816218 -0.8790857 -0.3076266 -0.3640248 -0.5519883 -0.7787408 -0.2980743 -0.483108 -0.7885373 -0.3804743 -0.4857936 -0.4233222 -0.7647023 -0.2421338 -0.469985 -0.8487808 -0.23426 0.00979644 -0.9721061 -0.1735892 -0.8385266 -0.5164037 -0.340556 -0.8161565 -0.4667501 -0.07773059 -0.9953307 0.05667287 -0.005951106 -0.999939 -0.009155511 -0.07962274 -0.9939574 0.07535016 -0.0549333 -0.9909055 0.1227149 -0.1127048 0.07968378 -0.9904172 -0.1272622 0.01492351 -0.9917295 -0.06634724 0.1301614 -0.9892575 -3.05185e-5 0.1484115 -0.9888913 0.06649982 0.1297037 -0.9892575 0.1126438 0.08001953 -0.9903867 0.1275063 0.01467937 -0.991699 0.1072115 -0.04739522 -0.9931028 0.06048768 -0.08978545 -0.9941099 0 -0.105533 -0.9943846 -0.06054872 -0.09027373 -0.9940489 -0.1065401 -0.04705953 -0.9931638 0.4121525 0.01281774 -0.911008 0.3585009 0.2203741 -0.9071322 0.2074038 0.3726005 -0.9045076 3.66222e-4 0.428785 -0.9033784 -0.2078921 0.3726921 -0.904355 -0.3584399 0.2205267 -0.9071016 -0.4120304 0.01297032 -0.9110385 -0.3559374 -0.1926633 -0.9144261 -6.71407e-4 0.01333653 -0.9999085 0.3555712 -0.1926023 -0.9145482 0.2047486 -0.3414411 -0.9172949 2.44148e-4 -0.3954283 -0.9184851 -0.2047792 -0.3416547 -0.9172338</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#Stormtroopermesh-mesh-normals-array\" count=\"3275\" stride=\"3\">\r\n              <param name=\"X\" type=\"float\"/>\r\n              <param name=\"Y\" type=\"float\"/>\r\n              <param name=\"Z\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"Stormtroopermesh-mesh-map\">\r\n          <float_array id=\"Stormtroopermesh-mesh-map-array\" count=\"39108\">1.4966 0.6686 1.5214 0.6764 1.5189 0.6722 1.5214 0.6764 1.4966 0.6686 1.4942 0.6921 1.5214 0.6764 1.4942 0.6921 1.5184 0.6996 1.4942 0.6921 1.4966 0.6686 1.4685 0.6847 1.4966 0.6686 1.4718 0.662 1.4685 0.6847 1.4685 0.6847 1.4718 0.662 1.444 0.6807 1.4718 0.662 1.4477 0.656 1.444 0.6807 1.444 0.6807 1.4477 0.656 1.4372 0.6784 1.4477 0.656 1.4378 0.6544 1.4372 0.6784 1.4372 0.6784 1.4378 0.6544 1.4262 0.6797 1.4378 0.6544 1.4233 0.6556 1.4262 0.6797 1.4262 0.6797 1.4233 0.6556 1.4141 0.6569 1.4262 0.6797 1.4141 0.6569 1.4192 0.682 1.4192 0.682 1.4141 0.6569 1.3902 0.6629 1.4262 0.6797 1.4192 0.682 1.4296 0.706 1.4262 0.6797 1.4296 0.706 1.4372 0.6784 1.4296 0.706 1.4362 0.706 1.4372 0.6784 1.4372 0.6784 1.4362 0.706 1.444 0.6807 1.4362 0.706 1.442 0.7069 1.444 0.6807 1.444 0.6807 1.442 0.7069 1.4685 0.6847 1.442 0.7069 1.4648 0.7109 1.4685 0.6847 1.4685 0.6847 1.4648 0.7109 1.4942 0.6921 1.4648 0.7109 1.4914 0.7187 1.4942 0.6921 1.4942 0.6921 1.4914 0.7187 1.5184 0.6996 1.4914 0.7187 1.5146 0.7266 1.5184 0.6996 1.5146 0.7266 1.4914 0.7187 1.4861 0.7438 1.5146 0.7266 1.4861 0.7438 1.5085 0.7555 1.4861 0.7438 1.4914 0.7187 1.4615 0.7353 1.4914 0.7187 1.4648 0.7109 1.4615 0.7353 1.4615 0.7353 1.4648 0.7109 1.442 0.7069 1.4615 0.7353 1.442 0.7069 1.4409 0.7343 1.4409 0.7343 1.442 0.7069 1.436 0.7344 1.442 0.7069 1.4362 0.706 1.436 0.7344 1.436 0.7344 1.4362 0.706 1.4304 0.7345 1.4362 0.706 1.4296 0.706 1.4304 0.7345 1.4304 0.7345 1.4296 0.706 1.4226 0.7073 1.4226 0.7073 1.4296 0.706 1.4192 0.682 1.4226 0.7073 1.4192 0.682 1.3944 0.6871 1.3944 0.6871 1.4192 0.682 1.3902 0.6629 1.3944 0.6871 1.3902 0.6629 1.3657 0.6704 1.3944 0.6871 1.3657 0.6704 1.3692 0.6942 1.3944 0.6871 1.3692 0.6942 1.3997 0.7139 1.3944 0.6871 1.3997 0.7139 1.4226 0.7073 1.4226 0.7073 1.3997 0.7139 1.4049 0.736 1.4226 0.7073 1.4049 0.736 1.4256 0.7344 1.4226 0.7073 1.4256 0.7344 1.4304 0.7345 1.4304 0.7345 1.4256 0.7344 1.4302 0.7579 1.4304 0.7345 1.4302 0.7579 1.436 0.7344 1.4302 0.7579 1.4369 0.7578 1.436 0.7344 1.436 0.7344 1.4369 0.7578 1.4409 0.7343 1.4369 0.7578 1.4422 0.7582 1.4409 0.7343 1.4409 0.7343 1.4422 0.7582 1.4615 0.7353 1.4422 0.7582 1.4621 0.758 1.4615 0.7353 1.4615 0.7353 1.4621 0.758 1.4861 0.7438 1.4621 0.758 1.4757 0.7661 1.4861 0.7438 1.4861 0.7438 1.4757 0.7661 1.5085 0.7555 1.4757 0.7661 1.4956 0.78 1.5085 0.7555 1.4956 0.78 1.4757 0.7661 1.4637 0.7838 1.4757 0.7661 1.4621 0.758 1.4637 0.7838 1.4956 0.78 1.4637 0.7838 1.4762 0.8002 1.4637 0.7838 1.4621 0.758 1.4431 0.7784 1.4621 0.758 1.4422 0.7582 1.4431 0.7784 1.4431 0.7784 1.4422 0.7582 1.4377 0.7785 1.4422 0.7582 1.4369 0.7578 1.4377 0.7785 1.4377 0.7785 1.4369 0.7578 1.4296 0.7786 1.4369 0.7578 1.4302 0.7579 1.4296 0.7786 1.4296 0.7786 1.4302 0.7579 1.4245 0.7581 1.4245 0.7581 1.4302 0.7579 1.4256 0.7344 1.4245 0.7581 1.4256 0.7344 1.4049 0.736 1.4245 0.7581 1.4049 0.736 1.405 0.7587 1.4245 0.7581 1.405 0.7587 1.4222 0.778 1.4245 0.7581 1.4222 0.778 1.4296 0.7786 1.4296 0.7786 1.4222 0.778 1.4294 0.7986 1.4296 0.7786 1.4294 0.7986 1.4377 0.7785 1.4294 0.7986 1.4383 0.7985 1.4377 0.7785 1.4377 0.7785 1.4383 0.7985 1.4431 0.7784 1.4383 0.7985 1.4477 0.7976 1.4431 0.7784 1.4431 0.7784 1.4477 0.7976 1.4637 0.7838 1.4637 0.7838 1.4477 0.7976 1.4762 0.8002 1.4477 0.7976 1.4538 0.8116 1.4762 0.8002 1.4538 0.8116 1.4477 0.7976 1.4398 0.815 1.4477 0.7976 1.4383 0.7985 1.4398 0.815 1.4398 0.815 1.4383 0.7985 1.4281 0.8153 1.4383 0.7985 1.4294 0.7986 1.4281 0.8153 1.4281 0.8153 1.4294 0.7986 1.4189 0.7983 1.4189 0.7983 1.4294 0.7986 1.4222 0.778 1.4281 0.8153 1.4189 0.7983 1.4127 0.8122 1.4127 0.8122 1.4189 0.7983 1.3919 0.8019 1.4189 0.7983 1.4038 0.7835 1.3919 0.8019 1.4038 0.7835 1.4189 0.7983 1.4222 0.778 1.4038 0.7835 1.4222 0.778 1.405 0.7587 1.4038 0.7835 1.405 0.7587 1.3908 0.7682 1.3908 0.7682 1.405 0.7587 1.3795 0.7442 1.405 0.7587 1.4049 0.736 1.3795 0.7442 1.3795 0.7442 1.4049 0.736 1.3738 0.7204 1.4049 0.736 1.3997 0.7139 1.3738 0.7204 1.3738 0.7204 1.3997 0.7139 1.3692 0.6942 1.3738 0.7204 1.3692 0.6942 1.3462 0.7017 1.3738 0.7204 1.3462 0.7017 1.3497 0.7279 1.3738 0.7204 1.3497 0.7279 1.3795 0.7442 1.3497 0.7279 1.3569 0.7554 1.3795 0.7442 1.3795 0.7442 1.3569 0.7554 1.3908 0.7682 1.3569 0.7554 1.3722 0.7824 1.3908 0.7682 1.3908 0.7682 1.3722 0.7824 1.4038 0.7835 1.3722 0.7824 1.3919 0.8019 1.4038 0.7835 1.3421 0.679 1.3462 0.7017 1.3692 0.6942 1.3421 0.679 1.3692 0.6942 1.3657 0.6704 1.3421 0.679 1.3657 0.6704 1.3444 0.6746 1.1845 0.5518 1.1826 0.5551 1.2035 0.5435 1.2035 0.5435 1.1826 0.5551 1.2184 0.5616 1.1826 0.5551 1.1864 0.5762 1.2184 0.5616 1.2035 0.5435 1.2184 0.5616 1.2248 0.536 1.2184 0.5616 1.1864 0.5762 1.2256 0.5968 1.1864 0.5762 1.1918 0.6009 1.2256 0.5968 1.2256 0.5968 1.1918 0.6009 1.2009 0.6257 1.2256 0.5968 1.2009 0.6257 1.2358 0.6264 1.2009 0.6257 1.2148 0.6454 1.2358 0.6264 1.2358 0.6264 1.2148 0.6454 1.2424 0.6438 1.2148 0.6454 1.2339 0.6602 1.2424 0.6438 1.2424 0.6438 1.2339 0.6602 1.2659 0.644 1.2424 0.6438 1.2659 0.644 1.2358 0.6264 1.2339 0.6602 1.2546 0.6666 1.2659 0.644 1.2546 0.6666 1.2675 0.6678 1.2659 0.644 1.2659 0.644 1.2675 0.6678 1.2813 0.6645 1.2659 0.644 1.2813 0.6645 1.2988 0.6558 1.2659 0.644 1.2988 0.6558 1.2882 0.6393 1.2882 0.6393 1.2988 0.6558 1.3155 0.6385 1.2659 0.644 1.2882 0.6393 1.2924 0.6225 1.3155 0.6385 1.2924 0.6225 1.2882 0.6393 1.2924 0.6225 1.3155 0.6385 1.3277 0.6138 1.2924 0.6225 1.3277 0.6138 1.2982 0.5914 1.2982 0.5914 1.3277 0.6138 1.3331 0.589 1.2982 0.5914 1.3331 0.589 1.334 0.5648 1.2982 0.5914 1.334 0.5648 1.3011 0.5562 1.3011 0.5562 1.334 0.5648 1.3347 0.5437 1.3011 0.5562 1.3347 0.5437 1.3131 0.5353 1.3347 0.5437 1.3323 0.5404 1.3131 0.5353 1.3011 0.5562 1.3131 0.5353 1.2909 0.5308 1.3011 0.5562 1.2909 0.5308 1.2598 0.5645 1.3011 0.5562 1.2598 0.5645 1.2982 0.5914 1.2909 0.5308 1.2689 0.5281 1.2598 0.5645 1.2689 0.5281 1.2579 0.5277 1.2598 0.5645 1.2598 0.5645 1.2579 0.5277 1.2464 0.5297 1.2598 0.5645 1.2464 0.5297 1.2248 0.536 1.2598 0.5645 1.2248 0.536 1.2184 0.5616 1.2598 0.5645 1.2184 0.5616 1.2256 0.5968 1.2598 0.5645 1.2256 0.5968 1.2629 0.6104 1.2598 0.5645 1.2629 0.6104 1.2982 0.5914 1.2982 0.5914 1.2629 0.6104 1.2924 0.6225 1.2924 0.6225 1.2629 0.6104 1.2659 0.644 1.2659 0.644 1.2629 0.6104 1.2358 0.6264 1.2629 0.6104 1.2256 0.5968 1.2358 0.6264 1.2702 0.5194 1.2634 0.518 1.2578 0.5247 1.2634 0.518 1.2515 0.5189 1.2578 0.5247 1.2702 0.5194 1.2578 0.5247 1.2693 0.5251 1.2702 0.5194 1.2693 0.5251 1.2929 0.5221 1.2693 0.5251 1.2923 0.5279 1.2929 0.5221 1.2929 0.5221 1.2923 0.5279 1.3167 0.5269 1.2923 0.5279 1.3155 0.5327 1.3167 0.5269 1.3167 0.5269 1.3155 0.5327 1.3386 0.5338 1.3155 0.5327 1.3355 0.538 1.3386 0.5338 1.3386 0.5338 1.3355 0.538 1.3429 0.5397 1.3355 0.538 1.3379 0.5414 1.3429 0.5397 1.3429 0.5397 1.3379 0.5414 1.3432 0.5639 1.3379 0.5414 1.3372 0.5634 1.3432 0.5639 1.3432 0.5639 1.3372 0.5634 1.342 0.5897 1.3372 0.5634 1.3363 0.5886 1.342 0.5897 1.342 0.5897 1.3363 0.5886 1.3359 0.6166 1.3363 0.5886 1.3307 0.6145 1.3359 0.6166 1.3359 0.6166 1.3307 0.6145 1.3222 0.6435 1.3307 0.6145 1.3179 0.6403 1.3222 0.6435 1.3222 0.6435 1.3179 0.6403 1.3038 0.6626 1.3179 0.6403 1.3006 0.6582 1.3038 0.6626 1.3038 0.6626 1.3006 0.6582 1.2847 0.6724 1.3006 0.6582 1.2823 0.6674 1.2847 0.6724 1.2847 0.6724 1.2823 0.6674 1.2723 0.6765 1.2823 0.6674 1.2679 0.6708 1.2723 0.6765 1.2723 0.6765 1.2679 0.6708 1.2642 0.677 1.2642 0.677 1.2679 0.6708 1.2528 0.6749 1.2679 0.6708 1.2544 0.6696 1.2528 0.6749 1.2528 0.6749 1.2544 0.6696 1.2304 0.6676 1.2544 0.6696 1.2329 0.6628 1.2304 0.6676 1.2304 0.6676 1.2329 0.6628 1.2092 0.6513 1.2329 0.6628 1.213 0.6474 1.2092 0.6513 1.2092 0.6513 1.213 0.6474 1.1937 0.6297 1.213 0.6474 1.1985 0.6269 1.1937 0.6297 1.1937 0.6297 1.1985 0.6269 1.1835 0.603 1.1985 0.6269 1.1889 0.601 1.1835 0.603 1.1835 0.603 1.1889 0.601 1.1776 0.5768 1.1889 0.601 1.1833 0.5753 1.1776 0.5768 1.1776 0.5768 1.1833 0.5753 1.1742 0.5523 1.1833 0.5753 1.1793 0.5533 1.1742 0.5523 1.1742 0.5523 1.1793 0.5533 1.1776 0.5461 1.1793 0.5533 1.1813 0.5498 1.1776 0.5461 1.1776 0.5461 1.1813 0.5498 1.199 0.5356 1.1813 0.5498 1.2011 0.5412 1.199 0.5356 1.199 0.5356 1.2011 0.5412 1.2219 0.5277 1.2011 0.5412 1.2234 0.5334 1.2219 0.5277 1.2219 0.5277 1.2234 0.5334 1.2442 0.5214 1.2234 0.5334 1.2458 0.5268 1.2442 0.5214 1.2442 0.5214 1.2458 0.5268 1.2515 0.5189 1.2458 0.5268 1.2578 0.5247 1.2515 0.5189 0.4966 0.6686 0.5189 0.6722 0.5214 0.6764 0.4966 0.6686 0.5214 0.6764 0.4942 0.6921 0.5214 0.6764 0.5184 0.6996 0.4942 0.6921 0.4966 0.6686 0.4942 0.6921 0.4685 0.6847 0.4966 0.6686 0.4685 0.6847 0.4718 0.662 0.4718 0.662 0.4685 0.6847 0.444 0.6807 0.4718 0.662 0.444 0.6807 0.4477 0.656 0.4477 0.656 0.444 0.6807 0.4372 0.6784 0.4477 0.656 0.4372 0.6784 0.4378 0.6544 0.4378 0.6544 0.4372 0.6784 0.4262 0.6797 0.4378 0.6544 0.4262 0.6797 0.4233 0.6556 0.4233 0.6556 0.4262 0.6797 0.4141 0.6569 0.4262 0.6797 0.4192 0.682 0.4141 0.6569 0.4141 0.6569 0.4192 0.682 0.3902 0.6629 0.4192 0.682 0.4262 0.6797 0.4296 0.706 0.4296 0.706 0.4262 0.6797 0.4372 0.6784 0.4296 0.706 0.4372 0.6784 0.4362 0.706 0.4362 0.706 0.4372 0.6784 0.444 0.6807 0.4362 0.706 0.444 0.6807 0.442 0.7069 0.442 0.7069 0.444 0.6807 0.4685 0.6847 0.442 0.7069 0.4685 0.6847 0.4648 0.7109 0.4648 0.7109 0.4685 0.6847 0.4942 0.6921 0.4648 0.7109 0.4942 0.6921 0.4914 0.7187 0.4914 0.7187 0.4942 0.6921 0.5184 0.6996 0.4914 0.7187 0.5184 0.6996 0.5146 0.7266 0.4914 0.7187 0.5146 0.7266 0.4861 0.7438 0.5146 0.7266 0.5085 0.7555 0.4861 0.7438 0.4914 0.7187 0.4861 0.7438 0.4615 0.7353 0.4914 0.7187 0.4615 0.7353 0.4648 0.7109 0.4648 0.7109 0.4615 0.7353 0.442 0.7069 0.4615 0.7353 0.4409 0.7343 0.442 0.7069 0.442 0.7069 0.4409 0.7343 0.436 0.7344 0.442 0.7069 0.436 0.7344 0.4362 0.706 0.4362 0.706 0.436 0.7344 0.4304 0.7345 0.4362 0.706 0.4304 0.7345 0.4296 0.706 0.4296 0.706 0.4304 0.7345 0.4226 0.7073 0.4296 0.706 0.4226 0.7073 0.4192 0.682 0.4192 0.682 0.4226 0.7073 0.3944 0.6871 0.4192 0.682 0.3944 0.6871 0.3902 0.6629 0.3902 0.6629 0.3944 0.6871 0.3657 0.6704 0.3944 0.6871 0.3692 0.6942 0.3657 0.6704 0.3692 0.6942 0.3944 0.6871 0.3997 0.7139 0.3997 0.7139 0.3944 0.6871 0.4226 0.7073 0.3997 0.7139 0.4226 0.7073 0.4049 0.736 0.4226 0.7073 0.4256 0.7344 0.4049 0.736 0.4256 0.7344 0.4226 0.7073 0.4304 0.7345 0.4256 0.7344 0.4304 0.7345 0.4302 0.7579 0.4302 0.7579 0.4304 0.7345 0.436 0.7344 0.4302 0.7579 0.436 0.7344 0.4369 0.7578 0.4369 0.7578 0.436 0.7344 0.4409 0.7343 0.4369 0.7578 0.4409 0.7343 0.4422 0.7582 0.4422 0.7582 0.4409 0.7343 0.4615 0.7353 0.4422 0.7582 0.4615 0.7353 0.4621 0.758 0.4621 0.758 0.4615 0.7353 0.4861 0.7438 0.4621 0.758 0.4861 0.7438 0.4757 0.7661 0.4757 0.7661 0.4861 0.7438 0.5085 0.7555 0.4757 0.7661 0.5085 0.7555 0.4956 0.78 0.4757 0.7661 0.4956 0.78 0.4637 0.7838 0.4757 0.7661 0.4637 0.7838 0.4621 0.758 0.4956 0.78 0.4762 0.8002 0.4637 0.7838 0.4621 0.758 0.4637 0.7838 0.4431 0.7784 0.4621 0.758 0.4431 0.7784 0.4422 0.7582 0.4422 0.7582 0.4431 0.7784 0.4377 0.7785 0.4422 0.7582 0.4377 0.7785 0.4369 0.7578 0.4369 0.7578 0.4377 0.7785 0.4296 0.7786 0.4369 0.7578 0.4296 0.7786 0.4302 0.7579 0.4302 0.7579 0.4296 0.7786 0.4245 0.7581 0.4302 0.7579 0.4245 0.7581 0.4256 0.7344 0.4256 0.7344 0.4245 0.7581 0.4049 0.736 0.4245 0.7581 0.405 0.7587 0.4049 0.736 0.405 0.7587 0.4245 0.7581 0.4222 0.778 0.4222 0.778 0.4245 0.7581 0.4296 0.7786 0.4222 0.778 0.4296 0.7786 0.4294 0.7986 0.4294 0.7986 0.4296 0.7786 0.4377 0.7785 0.4294 0.7986 0.4377 0.7785 0.4383 0.7985 0.4383 0.7985 0.4377 0.7785 0.4431 0.7784 0.4383 0.7985 0.4431 0.7784 0.4477 0.7976 0.4477 0.7976 0.4431 0.7784 0.4637 0.7838 0.4477 0.7976 0.4637 0.7838 0.4762 0.8002 0.4477 0.7976 0.4762 0.8002 0.4538 0.8116 0.4477 0.7976 0.4538 0.8116 0.4398 0.815 0.4477 0.7976 0.4398 0.815 0.4383 0.7985 0.4383 0.7985 0.4398 0.815 0.4281 0.8153 0.4383 0.7985 0.4281 0.8153 0.4294 0.7986 0.4294 0.7986 0.4281 0.8153 0.4189 0.7983 0.4294 0.7986 0.4189 0.7983 0.4222 0.778 0.4281 0.8153 0.4127 0.8122 0.4189 0.7983 0.4189 0.7983 0.4127 0.8122 0.3919 0.8019 0.4189 0.7983 0.3919 0.8019 0.4038 0.7835 0.4189 0.7983 0.4038 0.7835 0.4222 0.778 0.4222 0.778 0.4038 0.7835 0.405 0.7587 0.405 0.7587 0.4038 0.7835 0.3908 0.7682 0.405 0.7587 0.3908 0.7682 0.3795 0.7442 0.405 0.7587 0.3795 0.7442 0.4049 0.736 0.4049 0.736 0.3795 0.7442 0.3738 0.7204 0.4049 0.736 0.3738 0.7204 0.3997 0.7139 0.3997 0.7139 0.3738 0.7204 0.3692 0.6942 0.3692 0.6942 0.3738 0.7204 0.3462 0.7017 0.3738 0.7204 0.3497 0.7279 0.3462 0.7017 0.3497 0.7279 0.3738 0.7204 0.3795 0.7442 0.3497 0.7279 0.3795 0.7442 0.3569 0.7554 0.3569 0.7554 0.3795 0.7442 0.3908 0.7682 0.3569 0.7554 0.3908 0.7682 0.3722 0.7824 0.3722 0.7824 0.3908 0.7682 0.4038 0.7835 0.3722 0.7824 0.4038 0.7835 0.3919 0.8019 0.3692 0.6942 0.3462 0.7017 0.3421 0.679 0.3692 0.6942 0.3421 0.679 0.3657 0.6704 0.3657 0.6704 0.3421 0.679 0.3444 0.6746 0.1845 0.5518 0.2035 0.5435 0.1826 0.5551 0.1826 0.5551 0.2035 0.5435 0.2184 0.5616 0.2184 0.5616 0.2035 0.5435 0.2248 0.536 0.1826 0.5551 0.2184 0.5616 0.1863999 0.5762 0.2184 0.5616 0.2248 0.536 0.2598 0.5645 0.2248 0.536 0.2463999 0.5297 0.2598 0.5645 0.2463999 0.5297 0.2579 0.5277 0.2598 0.5645 0.2598 0.5645 0.2579 0.5277 0.2689 0.5281 0.2598 0.5645 0.2689 0.5281 0.2909 0.5308 0.2598 0.5645 0.2909 0.5308 0.3011 0.5562 0.3011 0.5562 0.2909 0.5308 0.3131 0.5353 0.3011 0.5562 0.3131 0.5353 0.3347 0.5437 0.3347 0.5437 0.3131 0.5353 0.3323 0.5404 0.3011 0.5562 0.3347 0.5437 0.334 0.5648 0.3011 0.5562 0.334 0.5648 0.2982 0.5914 0.3011 0.5562 0.2982 0.5914 0.2598 0.5645 0.334 0.5648 0.3331 0.589 0.2982 0.5914 0.2982 0.5914 0.3331 0.589 0.3277 0.6138 0.2982 0.5914 0.3277 0.6138 0.2924 0.6225 0.3277 0.6138 0.3155 0.6385 0.2924 0.6225 0.2982 0.5914 0.2924 0.6225 0.2629 0.6104 0.2982 0.5914 0.2629 0.6104 0.2598 0.5645 0.2598 0.5645 0.2629 0.6104 0.2256 0.5968 0.2598 0.5645 0.2256 0.5968 0.2184 0.5616 0.2184 0.5616 0.2256 0.5968 0.1863999 0.5762 0.2256 0.5968 0.1917999 0.6009 0.1863999 0.5762 0.1917999 0.6009 0.2256 0.5968 0.2009 0.6257 0.2009 0.6257 0.2256 0.5968 0.2358 0.6264 0.2358 0.6264 0.2256 0.5968 0.2629 0.6104 0.2009 0.6257 0.2358 0.6264 0.2148 0.6454 0.2358 0.6264 0.2629 0.6104 0.2659 0.644 0.2659 0.644 0.2629 0.6104 0.2924 0.6225 0.2659 0.644 0.2924 0.6225 0.2882 0.6393 0.2882 0.6393 0.2924 0.6225 0.3155 0.6385 0.2882 0.6393 0.3155 0.6385 0.2988 0.6558 0.2882 0.6393 0.2988 0.6558 0.2659 0.644 0.2988 0.6558 0.2813 0.6645 0.2659 0.644 0.2659 0.644 0.2813 0.6645 0.2675 0.6678 0.2659 0.644 0.2675 0.6678 0.2546 0.6666 0.2659 0.644 0.2546 0.6666 0.2339 0.6602 0.2659 0.644 0.2339 0.6602 0.2424 0.6438 0.2659 0.644 0.2424 0.6438 0.2358 0.6264 0.2358 0.6264 0.2424 0.6438 0.2148 0.6454 0.2424 0.6438 0.2339 0.6602 0.2148 0.6454 0.2578 0.5247 0.2634 0.518 0.2702 0.5194 0.2634 0.518 0.2578 0.5247 0.2515 0.5189 0.2702 0.5194 0.2693 0.5251 0.2578 0.5247 0.2515 0.5189 0.2578 0.5247 0.2458 0.5268 0.2515 0.5189 0.2458 0.5268 0.2442 0.5214 0.2442 0.5214 0.2458 0.5268 0.2233999 0.5334 0.2442 0.5214 0.2233999 0.5334 0.2219 0.5277 0.2219 0.5277 0.2233999 0.5334 0.2011 0.5412 0.2219 0.5277 0.2011 0.5412 0.199 0.5356 0.199 0.5356 0.2011 0.5412 0.1813 0.5498 0.199 0.5356 0.1813 0.5498 0.1776 0.5461 0.1776 0.5461 0.1813 0.5498 0.1793 0.5533 0.1776 0.5461 0.1793 0.5533 0.1741999 0.5523 0.1741999 0.5523 0.1793 0.5533 0.1833 0.5753 0.1741999 0.5523 0.1833 0.5753 0.1776 0.5768 0.1776 0.5768 0.1833 0.5753 0.1888999 0.601 0.1776 0.5768 0.1888999 0.601 0.1835 0.603 0.1835 0.603 0.1888999 0.601 0.1985 0.6269 0.1835 0.603 0.1985 0.6269 0.1937 0.6297 0.1937 0.6297 0.1985 0.6269 0.2129999 0.6474 0.1937 0.6297 0.2129999 0.6474 0.2092 0.6513 0.2092 0.6513 0.2129999 0.6474 0.2329 0.6628 0.2092 0.6513 0.2329 0.6628 0.2304 0.6676 0.2304 0.6676 0.2329 0.6628 0.2544 0.6696 0.2304 0.6676 0.2544 0.6696 0.2528 0.6749 0.2528 0.6749 0.2544 0.6696 0.2679 0.6708 0.2528 0.6749 0.2679 0.6708 0.2642 0.677 0.2642 0.677 0.2679 0.6708 0.2723 0.6765 0.2723 0.6765 0.2679 0.6708 0.2823 0.6674 0.2723 0.6765 0.2823 0.6674 0.2847 0.6724 0.2847 0.6724 0.2823 0.6674 0.3006 0.6582 0.2847 0.6724 0.3006 0.6582 0.3038 0.6626 0.3038 0.6626 0.3006 0.6582 0.3179 0.6403 0.3038 0.6626 0.3179 0.6403 0.3222 0.6435 0.3222 0.6435 0.3179 0.6403 0.3307 0.6145 0.3222 0.6435 0.3307 0.6145 0.3359 0.6166 0.3359 0.6166 0.3307 0.6145 0.3363 0.5886 0.3359 0.6166 0.3363 0.5886 0.342 0.5897 0.342 0.5897 0.3363 0.5886 0.3372 0.5634 0.342 0.5897 0.3372 0.5634 0.3432 0.5639 0.3432 0.5639 0.3372 0.5634 0.3379 0.5414 0.3432 0.5639 0.3379 0.5414 0.3429 0.5397 0.3429 0.5397 0.3379 0.5414 0.3355 0.538 0.3429 0.5397 0.3355 0.538 0.3386 0.5338 0.3386 0.5338 0.3355 0.538 0.3155 0.5327 0.3386 0.5338 0.3155 0.5327 0.3167 0.5269 0.3167 0.5269 0.3155 0.5327 0.2923 0.5279 0.3167 0.5269 0.2923 0.5279 0.2929 0.5221 0.2929 0.5221 0.2923 0.5279 0.2693 0.5251 0.2929 0.5221 0.2693 0.5251 0.2702 0.5194 0.8793 0.9919 0.8664 0.9919 0.8664 0.9315 0.8793 0.9919 0.8664 0.9315 0.8793 0.9315 0.8793 0.9919 0.8793 0.9315 0.892 0.9919 0.8793 0.9315 0.892 0.9315 0.892 0.9919 0.892 0.9919 0.892 0.9315 0.9048 0.9919 0.892 0.9315 0.9048 0.9315 0.9048 0.9919 0.9048 0.9919 0.9048 0.9315 0.9178 0.9919 0.9048 0.9315 0.9178 0.9315 0.9178 0.9919 0.9178 0.9919 0.9178 0.9315 0.9308 0.9919 0.9178 0.9315 0.9308 0.9315 0.9308 0.9919 0.9308 0.9919 0.9308 0.9315 0.9438 0.9919 0.9308 0.9315 0.9438 0.9315 0.9438 0.9919 0.9438 0.9919 0.9438 0.9315 0.9569 0.9919 0.9438 0.9315 0.9569 0.9315 0.9569 0.9919 0.9569 0.9919 0.9569 0.9315 0.9697 0.9919 0.9569 0.9315 0.9697 0.9315 0.9697 0.9919 0.9697 0.9919 0.9697 0.9315 0.9825 0.9919 0.9697 0.9315 0.9825 0.9315 0.9825 0.9919 0.9825 0.9919 0.9825 0.9315 0.9955 0.9919 0.9825 0.9315 0.9955 0.9315 0.9955 0.9919 0.9934 0.9133 0.9796 0.9088 0.9934 0.9043 0.9796 0.9088 0.9934 0.9133 0.9881 0.9205 0.9934 0.9043 0.9796 0.9088 0.9882 0.8971 0.9796 0.9088 0.9881 0.9205 0.9796 0.9233 0.9882 0.8971 0.9796 0.9088 0.9796 0.8943 0.9796 0.9088 0.9796 0.9233 0.9711 0.9205 0.9796 0.8943 0.9796 0.9088 0.9711 0.8971 0.9796 0.9088 0.9711 0.9205 0.9658 0.9133 0.9711 0.8971 0.9796 0.9088 0.9658 0.9043 0.9658 0.9133 0.9658 0.9043 0.9796 0.9088 0.9472 0.564 0.9472 0.5519 0.9309 0.5519 0.9472 0.564 0.9309 0.5519 0.9309 0.564 0.9472 0.564 0.9309 0.564 0.9472 0.5761 0.9309 0.564 0.9309 0.5519 0.8939 0.564 0.9309 0.5519 0.8939 0.5519 0.8939 0.564 0.8939 0.564 0.8939 0.5519 0.8569 0.5519 0.8939 0.564 0.8569 0.5519 0.8569 0.564 0.8939 0.564 0.8569 0.564 0.8939 0.5761 0.8939 0.564 0.8939 0.5761 0.9309 0.564 0.8939 0.5761 0.9309 0.5761 0.9309 0.564 0.9309 0.564 0.9309 0.5761 0.9472 0.5761 0.9472 0.5761 0.9309 0.5761 0.9472 0.5882 0.9309 0.5761 0.9309 0.5882 0.9472 0.5882 0.9472 0.5882 0.9309 0.5882 0.9472 0.6003 0.9309 0.5882 0.9309 0.5761 0.8939 0.5882 0.9309 0.5761 0.8939 0.5761 0.8939 0.5882 0.8939 0.5882 0.8939 0.5761 0.8569 0.5761 0.8569 0.5761 0.8939 0.5761 0.8569 0.564 0.8569 0.5761 0.8569 0.564 0.8406 0.5761 0.8569 0.564 0.8406 0.564 0.8406 0.5761 0.8406 0.564 0.8569 0.564 0.8569 0.5519 0.8406 0.564 0.8569 0.5519 0.8406 0.5519 0.8569 0.5761 0.8406 0.5761 0.8406 0.5882 0.8569 0.5761 0.8406 0.5882 0.8569 0.5882 0.8569 0.5761 0.8569 0.5882 0.8939 0.5882 0.8569 0.5882 0.8406 0.5882 0.8406 0.6003 0.8939 0.5882 0.8569 0.5882 0.8939 0.6003 0.8939 0.5882 0.8939 0.6003 0.9309 0.5882 0.8939 0.6003 0.9309 0.6003 0.9309 0.5882 0.9309 0.5882 0.9309 0.6003 0.9472 0.6003 0.9472 0.6003 0.9309 0.6003 0.9472 0.6124 0.9309 0.6003 0.9309 0.6124 0.9472 0.6124 0.9472 0.6124 0.9309 0.6124 0.9472 0.6245 0.9309 0.6124 0.9309 0.6003 0.8939 0.6124 0.9309 0.6003 0.8939 0.6003 0.8939 0.6124 0.8939 0.6124 0.8939 0.6003 0.8569 0.6003 0.8569 0.6003 0.8939 0.6003 0.8569 0.5882 0.8569 0.6003 0.8569 0.5882 0.8406 0.6003 0.8569 0.6003 0.8406 0.6003 0.8406 0.6124 0.8569 0.6003 0.8406 0.6124 0.8569 0.6124 0.8569 0.6003 0.8569 0.6124 0.8939 0.6124 0.8569 0.6124 0.8406 0.6124 0.8406 0.6245 0.8939 0.6124 0.8569 0.6124 0.8939 0.6245 0.8939 0.6124 0.8939 0.6245 0.9309 0.6124 0.8939 0.6245 0.9309 0.6245 0.9309 0.6124 0.9309 0.6124 0.9309 0.6245 0.9472 0.6245 0.9472 0.6245 0.9309 0.6245 0.9472 0.6366 0.9309 0.6245 0.9309 0.6366 0.9472 0.6366 0.9472 0.6366 0.9309 0.6366 0.9472 0.6487 0.9309 0.6366 0.9309 0.6245 0.8939 0.6366 0.9309 0.6245 0.8939 0.6245 0.8939 0.6366 0.8939 0.6366 0.8939 0.6245 0.8569 0.6245 0.8569 0.6245 0.8939 0.6245 0.8569 0.6124 0.8569 0.6245 0.8569 0.6124 0.8406 0.6245 0.8569 0.6245 0.8406 0.6245 0.8406 0.6366 0.8569 0.6245 0.8406 0.6366 0.8569 0.6366 0.8569 0.6245 0.8569 0.6366 0.8939 0.6366 0.8569 0.6366 0.8406 0.6366 0.8406 0.6487 0.8939 0.6366 0.8569 0.6366 0.8939 0.6487 0.8939 0.6366 0.8939 0.6487 0.9309 0.6366 0.8939 0.6487 0.9309 0.6487 0.9309 0.6366 0.9309 0.6366 0.9309 0.6487 0.9472 0.6487 0.9472 0.6487 0.9309 0.6487 0.9472 0.6609 0.9309 0.6487 0.9309 0.6609 0.9472 0.6609 0.9472 0.6609 0.9309 0.6609 0.9472 0.673 0.9309 0.6609 0.9309 0.6487 0.8939 0.6609 0.9309 0.6487 0.8939 0.6487 0.8939 0.6609 0.8939 0.6609 0.8939 0.6487 0.8569 0.6487 0.8569 0.6487 0.8939 0.6487 0.8569 0.6366 0.8569 0.6487 0.8569 0.6366 0.8406 0.6487 0.8569 0.6487 0.8406 0.6487 0.8406 0.6609 0.8569 0.6487 0.8406 0.6609 0.8569 0.6609 0.8569 0.6487 0.8569 0.6609 0.8939 0.6609 0.8569 0.6609 0.8406 0.6609 0.8406 0.673 0.8939 0.6609 0.8569 0.6609 0.8939 0.673 0.8939 0.6609 0.8939 0.673 0.9309 0.6609 0.8939 0.673 0.9309 0.673 0.9309 0.6609 0.9309 0.6609 0.9309 0.673 0.9472 0.673 0.9472 0.673 0.9309 0.673 0.9472 0.6851 0.9309 0.673 0.9308 0.6851 0.9472 0.6851 0.9472 0.6851 0.9308 0.6851 0.9472 0.6972 0.9308 0.6851 0.9308 0.6972 0.9472 0.6972 0.9308 0.6972 0.9308 0.6851 0.8939 0.6972 0.9308 0.6851 0.8939 0.6851 0.8939 0.6972 0.8939 0.6851 0.9308 0.6851 0.9309 0.673 0.8939 0.6851 0.9309 0.673 0.8939 0.673 0.8939 0.6851 0.8939 0.673 0.8569 0.673 0.8569 0.673 0.8939 0.673 0.8569 0.6609 0.8569 0.673 0.8569 0.6609 0.8406 0.673 0.8569 0.673 0.8406 0.673 0.8406 0.6851 0.8569 0.673 0.8406 0.6851 0.8569 0.6851 0.8569 0.673 0.8569 0.6851 0.8939 0.6851 0.8939 0.6851 0.8569 0.6851 0.8939 0.6972 0.8569 0.6851 0.8569 0.6972 0.8939 0.6972 0.8569 0.6972 0.8569 0.6851 0.8406 0.6972 0.8569 0.6851 0.8406 0.6851 0.8406 0.6972 0.942 0.7098 0.9497 0.7098 0.9497 0.7145 0.942 0.7098 0.9497 0.7145 0.9419 0.7145 0.942 0.7098 0.9419 0.7145 0.9339 0.7098 0.9419 0.7145 0.9336 0.7145 0.9339 0.7098 0.9339 0.7098 0.9336 0.7145 0.9251 0.7098 0.9336 0.7145 0.9249 0.7145 0.9251 0.7098 0.9251 0.7098 0.9249 0.7145 0.916 0.7098 0.9249 0.7145 0.9159 0.7145 0.916 0.7098 0.916 0.7098 0.9159 0.7145 0.9067 0.7098 0.9159 0.7145 0.9067 0.7145 0.9067 0.7098 0.9067 0.7098 0.9067 0.7145 0.8975 0.7098 0.9067 0.7145 0.8975 0.7145 0.8975 0.7098 0.8975 0.7098 0.8975 0.7145 0.8882 0.7098 0.8975 0.7145 0.8882 0.7145 0.8882 0.7098 0.8882 0.7098 0.8882 0.7145 0.879 0.7098 0.8882 0.7145 0.8789 0.7145 0.879 0.7098 0.879 0.7098 0.8789 0.7145 0.8696 0.7098 0.8789 0.7145 0.8696 0.7145 0.8696 0.7098 0.8696 0.7098 0.8696 0.7145 0.8601 0.7098 0.8696 0.7145 0.8604 0.7145 0.8601 0.7098 0.8601 0.7098 0.8604 0.7145 0.8513 0.7098 0.8604 0.7145 0.8515 0.7145 0.8513 0.7098 0.8513 0.7098 0.8515 0.7145 0.843 0.7098 0.8515 0.7145 0.843 0.7145 0.843 0.7098 0.9497 0.7145 0.9497 0.7098 0.942 0.7098 0.9497 0.7145 0.942 0.7098 0.9419 0.7145 0.9419 0.7145 0.942 0.7098 0.9339 0.7098 0.9419 0.7145 0.9339 0.7098 0.9336 0.7145 0.9336 0.7145 0.9339 0.7098 0.9251 0.7098 0.9336 0.7145 0.9251 0.7098 0.9249 0.7145 0.9249 0.7145 0.9251 0.7098 0.916 0.7098 0.9249 0.7145 0.916 0.7098 0.9159 0.7145 0.9159 0.7145 0.916 0.7098 0.9067 0.7098 0.9159 0.7145 0.9067 0.7098 0.9067 0.7145 0.9067 0.7145 0.9067 0.7098 0.8975 0.7098 0.9067 0.7145 0.8975 0.7098 0.8975 0.7145 0.8975 0.7145 0.8975 0.7098 0.8882 0.7098 0.8975 0.7145 0.8882 0.7098 0.8882 0.7145 0.8882 0.7145 0.8882 0.7098 0.879 0.7098 0.8882 0.7145 0.879 0.7098 0.8789 0.7145 0.8789 0.7145 0.879 0.7098 0.8696 0.7098 0.8789 0.7145 0.8696 0.7098 0.8696 0.7145 0.8696 0.7145 0.8696 0.7098 0.8601 0.7098 0.8696 0.7145 0.8601 0.7098 0.8604 0.7145 0.8604 0.7145 0.8601 0.7098 0.8513 0.7098 0.8604 0.7145 0.8513 0.7098 0.8515 0.7145 0.8515 0.7145 0.8513 0.7098 0.843 0.7098 0.8515 0.7145 0.843 0.7098 0.843 0.7145 0.601 0.603 0.6032 0.5948 0.6174 0.603 0.601 0.603 0.6174 0.603 0.6032 0.6113 0.6032 0.5948 0.6092 0.5888 0.6174 0.603 0.6032 0.6113 0.6174 0.603 0.6092 0.6173 0.6092 0.5888 0.6174 0.5866 0.6174 0.603 0.6092 0.6173 0.6174 0.603 0.6174 0.6195 0.6174 0.5866 0.6257 0.5888 0.6174 0.603 0.6174 0.6195 0.6174 0.603 0.6257 0.6173 0.6257 0.5888 0.6317 0.5948 0.6174 0.603 0.6257 0.6173 0.6174 0.603 0.6317 0.6113 0.6317 0.5948 0.6339 0.603 0.6174 0.603 0.6317 0.6113 0.6174 0.603 0.6339 0.603 0.601 0.603 0.6174 0.603 0.6032 0.5948 0.6174 0.603 0.601 0.603 0.6032 0.6113 0.6032 0.5948 0.6174 0.603 0.6092 0.5888 0.6174 0.603 0.6032 0.6113 0.6092 0.6173 0.6092 0.5888 0.6174 0.603 0.6174 0.5866 0.6174 0.603 0.6092 0.6173 0.6174 0.6195 0.6174 0.5866 0.6174 0.603 0.6257 0.5888 0.6174 0.603 0.6174 0.6195 0.6257 0.6173 0.6257 0.5888 0.6174 0.603 0.6317 0.5948 0.6174 0.603 0.6257 0.6173 0.6317 0.6113 0.6317 0.5948 0.6174 0.603 0.6339 0.603 0.6317 0.6113 0.6339 0.603 0.6174 0.603 0.5951 0.603 0.5981 0.5919 0.6016 0.5939 0.5951 0.603 0.6016 0.5939 0.5992 0.603 0.5951 0.603 0.5992 0.603 0.5981 0.6142 0.5992 0.603 0.6016 0.6122 0.5981 0.6142 0.5981 0.6142 0.6016 0.6122 0.6063 0.6224 0.6016 0.6122 0.6083 0.6189 0.6063 0.6224 0.6063 0.6224 0.6083 0.6189 0.6174 0.6254 0.6083 0.6189 0.6174 0.6213 0.6174 0.6254 0.6174 0.6254 0.6174 0.6213 0.6286 0.6224 0.6174 0.6213 0.6266 0.6189 0.6286 0.6224 0.6286 0.6224 0.6266 0.6189 0.6368 0.6142 0.6266 0.6189 0.6333 0.6122 0.6368 0.6142 0.6368 0.6142 0.6333 0.6122 0.6398 0.603 0.6333 0.6122 0.6357 0.603 0.6398 0.603 0.6398 0.603 0.6357 0.603 0.6368 0.5919 0.6357 0.603 0.6333 0.5939 0.6368 0.5919 0.6368 0.5919 0.6333 0.5939 0.6286 0.5837 0.6333 0.5939 0.6266 0.5872 0.6286 0.5837 0.6286 0.5837 0.6266 0.5872 0.6174 0.5807 0.6266 0.5872 0.6174 0.5848 0.6174 0.5807 0.6174 0.5807 0.6174 0.5848 0.6063 0.5837 0.6174 0.5848 0.6083 0.5872 0.6063 0.5837 0.6063 0.5837 0.6083 0.5872 0.5981 0.5919 0.6083 0.5872 0.6016 0.5939 0.5981 0.5919 0.5951 0.603 0.5992 0.603 0.6016 0.5939 0.5992 0.603 0.5951 0.603 0.5981 0.6142 0.6016 0.5939 0.5981 0.5919 0.5951 0.603 0.5981 0.5919 0.6016 0.5939 0.6083 0.5872 0.5981 0.5919 0.6083 0.5872 0.6063 0.5837 0.6063 0.5837 0.6083 0.5872 0.6174 0.5848 0.6063 0.5837 0.6174 0.5848 0.6174 0.5807 0.6174 0.5807 0.6174 0.5848 0.6266 0.5872 0.6174 0.5807 0.6266 0.5872 0.6286 0.5837 0.6286 0.5837 0.6266 0.5872 0.6333 0.5939 0.6286 0.5837 0.6333 0.5939 0.6368 0.5919 0.6368 0.5919 0.6333 0.5939 0.6357 0.603 0.6368 0.5919 0.6357 0.603 0.6398 0.603 0.6398 0.603 0.6357 0.603 0.6333 0.6122 0.6398 0.603 0.6333 0.6122 0.6368 0.6142 0.6368 0.6142 0.6333 0.6122 0.6266 0.6189 0.6368 0.6142 0.6266 0.6189 0.6286 0.6224 0.6286 0.6224 0.6266 0.6189 0.6174 0.6213 0.6286 0.6224 0.6174 0.6213 0.6174 0.6254 0.6174 0.6254 0.6174 0.6213 0.6083 0.6189 0.6174 0.6254 0.6083 0.6189 0.6063 0.6224 0.6063 0.6224 0.6083 0.6189 0.6016 0.6122 0.6063 0.6224 0.6016 0.6122 0.5981 0.6142 0.5981 0.6142 0.6016 0.6122 0.5992 0.603 1.8664 0.9315 1.8664 0.9919 1.8793 0.9919 1.8664 0.9315 1.8793 0.9919 1.8793 0.9315 1.8793 0.9315 1.8793 0.9919 1.892 0.9919 1.8793 0.9315 1.892 0.9919 1.892 0.9315 1.892 0.9315 1.892 0.9919 1.9048 0.9919 1.892 0.9315 1.9048 0.9919 1.9048 0.9315 1.9048 0.9315 1.9048 0.9919 1.9178 0.9919 1.9048 0.9315 1.9178 0.9919 1.9178 0.9315 1.9178 0.9315 1.9178 0.9919 1.9308 0.9919 1.9178 0.9315 1.9308 0.9919 1.9308 0.9315 1.9308 0.9315 1.9308 0.9919 1.9438 0.9919 1.9308 0.9315 1.9438 0.9919 1.9438 0.9315 1.9438 0.9315 1.9438 0.9919 1.9569 0.9919 1.9438 0.9315 1.9569 0.9919 1.9569 0.9315 1.9569 0.9315 1.9569 0.9919 1.9697 0.9919 1.9569 0.9315 1.9697 0.9919 1.9697 0.9315 1.9697 0.9315 1.9697 0.9919 1.9825 0.9919 1.9697 0.9315 1.9825 0.9919 1.9825 0.9315 1.9825 0.9315 1.9825 0.9919 1.9955 0.9919 1.9825 0.9315 1.9955 0.9919 1.9955 0.9315 1.9934 0.9133 1.9934 0.9043 1.9796 0.9088 1.9934 0.9133 1.9796 0.9088 1.9881 0.9205 1.9934 0.9043 1.9882 0.8971 1.9796 0.9088 1.9881 0.9205 1.9796 0.9088 1.9796 0.9233 1.9882 0.8971 1.9796 0.8943 1.9796 0.9088 1.9796 0.9233 1.9796 0.9088 1.9711 0.9205 1.9796 0.8943 1.9711 0.8971 1.9796 0.9088 1.9711 0.9205 1.9796 0.9088 1.9658 0.9133 1.9711 0.8971 1.9658 0.9043 1.9796 0.9088 1.9658 0.9133 1.9796 0.9088 1.9658 0.9043 0.1762 0.1817 0.1827999 0.1654 0.1905 0.1654 0.1762 0.1817 0.1905 0.1654 0.1854 0.1869 0.1762 0.1817 0.1854 0.1869 0.1761 0.2186 0.1762 0.1817 0.1761 0.2186 0.1684 0.2124 0.03719997 0.4268 0.00999999 0.433 0.009199976 0.4213 0.03719997 0.4268 0.009199976 0.4213 0.03209996 0.4217 0.03719997 0.4268 0.03209996 0.4217 0.03429996 0.4216 0.07479995 0.3653 0.07139998 0.3484 0.08889997 0.3469 0.07479995 0.3653 0.08889997 0.3469 0.0927 0.3633 0.07479995 0.3653 0.0927 0.3633 0.07739996 0.3809 0.0927 0.3633 0.09499996 0.3791 0.07739996 0.3809 0.07739996 0.3809 0.09499996 0.3791 0.07909995 0.3948 0.09499996 0.3791 0.09509998 0.3944 0.07909995 0.3948 0.07909995 0.3948 0.09509998 0.3944 0.0776 0.41 0.09509998 0.3944 0.09539997 0.4107 0.0776 0.41 0.0776 0.41 0.09539997 0.4107 0.07539999 0.4245 0.09539997 0.4107 0.09299999 0.426 0.07539999 0.4245 0.07539999 0.4245 0.09299999 0.426 0.07239997 0.4397 0.09299999 0.426 0.09039998 0.4416 0.07239997 0.4397 0.07239997 0.4397 0.09039998 0.4416 0.07029998 0.4502 0.09039998 0.4416 0.0877 0.4526 0.07029998 0.4502 0.07029998 0.4502 0.0877 0.4526 0.06849998 0.4593 0.0877 0.4526 0.0859 0.4622 0.06849998 0.4593 0.07190001 0.3715 0.06729996 0.3452 0.06909996 0.3469 0.07190001 0.3715 0.06909996 0.3469 0.07279998 0.3721 0.07190001 0.3715 0.07279998 0.3721 0.07539999 0.3942 0.07279998 0.3721 0.07639998 0.3946 0.07539999 0.3942 0.07539999 0.3942 0.07639998 0.3946 0.07309997 0.4099 0.07639998 0.3946 0.07469999 0.4101 0.07309997 0.4099 0.07309997 0.4099 0.07469999 0.4101 0.06859999 0.4326 0.07469999 0.4101 0.07019996 0.4325 0.06859999 0.4326 0.06859999 0.4326 0.07019996 0.4325 0.06459999 0.4607 0.07019996 0.4325 0.06589996 0.4602 0.06459999 0.4607 0.09749996 0.3704 0.08989995 0.3455 0.09029996 0.3437 0.09749996 0.3704 0.09029996 0.3437 0.09869998 0.3685 0.09749996 0.3704 0.09869998 0.3685 0.09909999 0.3939 0.09869998 0.3685 0.1008 0.3932 0.09909999 0.3939 0.09909999 0.3939 0.1008 0.3932 0.0988 0.4111 0.1008 0.3932 0.1005 0.4111 0.0988 0.4111 0.0988 0.4111 0.1005 0.4111 0.09589999 0.4349 0.1005 0.4111 0.09719997 0.436 0.09589999 0.4349 0.09589999 0.4349 0.09719997 0.436 0.08699995 0.4636 0.09719997 0.436 0.0873 0.4651 0.08699995 0.4636 0.06939995 0.3464 0.06749999 0.3449 0.08969998 0.3435 0.06939995 0.3464 0.08969998 0.3435 0.08939999 0.3452 0.08669996 0.4637 0.08699995 0.4651 0.06479996 0.461 0.08669996 0.4637 0.06479996 0.461 0.06629997 0.4606 0.0733 0.3721 0.06939995 0.3471 0.0708 0.3483 0.0733 0.3721 0.0708 0.3483 0.07429999 0.3651 0.0733 0.3721 0.07429999 0.3651 0.07709997 0.3808 0.0733 0.3721 0.07709997 0.3808 0.0769 0.3947 0.07709997 0.3808 0.07889997 0.3948 0.0769 0.3947 0.0769 0.3947 0.07889997 0.3948 0.07499998 0.4101 0.07889997 0.3948 0.07729995 0.4101 0.07499998 0.4101 0.07499998 0.4101 0.07729995 0.4101 0.0708 0.4327 0.07729995 0.4101 0.07489997 0.4246 0.0708 0.4327 0.0708 0.4327 0.07489997 0.4246 0.07169997 0.4398 0.0708 0.4327 0.07169997 0.4398 0.06639999 0.46 0.07169997 0.4398 0.06959998 0.4504 0.06639999 0.46 0.06639999 0.46 0.06959998 0.4504 0.06769996 0.4591 0.0891 0.3456 0.08889997 0.3465 0.07109999 0.3479 0.0891 0.3456 0.07109999 0.3479 0.06959998 0.3467 0.0934 0.3631 0.08939999 0.3469 0.08959996 0.3459 0.0934 0.3631 0.08959996 0.3459 0.0974 0.3705 0.0934 0.3631 0.0974 0.3705 0.09589999 0.379 0.09589999 0.379 0.0974 0.3705 0.09599995 0.3943 0.0974 0.3705 0.09859997 0.394 0.09599995 0.3943 0.09599995 0.3943 0.09859997 0.394 0.0963 0.4107 0.09859997 0.394 0.09849995 0.4111 0.0963 0.4107 0.0963 0.4107 0.09849995 0.4111 0.09369999 0.4261 0.09849995 0.4111 0.09539997 0.4347 0.09369999 0.4261 0.09539997 0.4347 0.0909 0.4417 0.09369999 0.4261 0.0909 0.4417 0.09539997 0.4347 0.08809995 0.4528 0.09539997 0.4347 0.08689999 0.4634 0.08809995 0.4528 0.08689999 0.4634 0.08609998 0.4623 0.08809995 0.4528 0.0665 0.4603 0.0679 0.4597 0.0859 0.4625 0.0665 0.4603 0.0859 0.4625 0.08649998 0.4635 0.06979995 0.372 0.06509995 0.3438 0.06689995 0.3449 0.06979995 0.372 0.06689995 0.3449 0.0715 0.3716 0.06979995 0.372 0.0715 0.3716 0.07179999 0.3913 0.0715 0.3716 0.07479995 0.3939 0.07179999 0.3913 0.07179999 0.3913 0.07479995 0.3939 0.06979995 0.4036 0.07479995 0.3939 0.07279998 0.4095 0.06979995 0.4036 0.06979995 0.4036 0.07279998 0.4095 0.06569999 0.4322 0.07279998 0.4095 0.06809997 0.4326 0.06569999 0.4322 0.06569999 0.4322 0.06809997 0.4326 0.0625 0.461 0.06809997 0.4326 0.06419998 0.4608 0.0625 0.461 0.06709998 0.3445 0.06509995 0.3435 0.09109997 0.3396 0.06709998 0.3445 0.09109997 0.3396 0.09009999 0.3426 0.09920001 0.437 0.08739995 0.4684 0.08739995 0.4653 0.09920001 0.437 0.08739995 0.4653 0.09749996 0.4363 0.09920001 0.437 0.09749996 0.4363 0.1048 0.4095 0.09749996 0.4363 0.1009 0.4111 0.1048 0.4095 0.1048 0.4095 0.1009 0.4111 0.1068 0.3864 0.1009 0.4111 0.1014 0.3929 0.1068 0.3864 0.1068 0.3864 0.1014 0.3929 0.1025 0.3661 0.1014 0.3929 0.09889996 0.3685 0.1025 0.3661 0.09889996 0.3685 0.09059995 0.3434 0.1025 0.3661 0.09059995 0.3434 0.09130001 0.3404 0.1025 0.3661 0.08709996 0.4653 0.08699995 0.4686 0.06239998 0.4613 0.08709996 0.4653 0.06239998 0.4613 0.06419998 0.4612 0.00999999 0.3981 0.01109999 0.3882 0.03819996 0.3907 0.00999999 0.3981 0.03819996 0.3907 0.03509998 0.3971 0.03819996 0.3907 0.03689998 0.3967 0.03509998 0.3971 0.03679996 0.4992 0.01029998 0.4943 0.01029998 0.4856 0.03679996 0.4992 0.01029998 0.4856 0.04109996 0.49 0.04109996 0.49 0.01029998 0.4856 0.01029998 0.4669 0.03679996 0.4992 0.04109996 0.49 0.0776 0.4935 0.03679996 0.4992 0.0776 0.4935 0.06439995 0.5026 0.06439995 0.5026 0.0776 0.4935 0.08279997 0.5237 0.06439995 0.5026 0.08279997 0.5237 0.06389999 0.5484 0.08279997 0.5237 0.0776 0.4935 0.1013 0.4913 0.1013 0.4913 0.0776 0.4935 0.08749997 0.4691 0.08749997 0.4691 0.0776 0.4935 0.04109996 0.49 0.08749997 0.4691 0.04109996 0.49 0.04349994 0.471 0.04349994 0.471 0.04109996 0.49 0.01029998 0.4669 0.04349994 0.471 0.01029998 0.4669 0.01029998 0.4525 0.04349994 0.471 0.01029998 0.4525 0.03959995 0.4543 0.04349994 0.471 0.03959995 0.4543 0.06199997 0.4616 0.04349994 0.471 0.06199997 0.4616 0.08749997 0.4691 0.06199997 0.4616 0.03959995 0.4543 0.05539995 0.4461 0.06199997 0.4616 0.05539995 0.4461 0.06309998 0.4304 0.06199997 0.4616 0.06309998 0.4304 0.06509995 0.432 0.06509995 0.432 0.06309998 0.4304 0.06909996 0.4036 0.08749997 0.4691 0.09869998 0.4653 0.1013 0.4913 0.09869998 0.4653 0.08749997 0.4691 0.09959995 0.4373 0.09869998 0.4653 0.09959995 0.4373 0.1014 0.4379 0.1014 0.4379 0.09959995 0.4373 0.1067 0.4142 0.09959995 0.4373 0.1052 0.4098 0.1067 0.4142 0.1014 0.4379 0.1067 0.4142 0.1061 0.4386 0.1014 0.4379 0.1061 0.4386 0.09869998 0.4653 0.1067 0.4142 0.1129 0.4159 0.1061 0.4386 0.09869998 0.4653 0.1061 0.4386 0.1051 0.4638 0.09869998 0.4653 0.1051 0.4638 0.1057 0.4896 0.09869998 0.4653 0.1057 0.4896 0.1013 0.4913 0.1013 0.4913 0.1057 0.4896 0.1151 0.5192 0.1013 0.4913 0.1151 0.5192 0.1114 0.5231 0.1013 0.4913 0.1114 0.5231 0.08279997 0.5237 0.1114 0.5231 0.1151 0.5192 0.131 0.5482 0.1114 0.5231 0.131 0.5482 0.1253 0.5535 0.1253 0.5535 0.131 0.5482 0.1444 0.5602 0.1114 0.5231 0.1253 0.5535 0.0841 0.5511 0.1114 0.5231 0.0841 0.5511 0.08279997 0.5237 0.0841 0.5511 0.06389999 0.5484 0.08279997 0.5237 0.06389999 0.5484 0.0841 0.5511 0.08519995 0.5784 0.08519995 0.5784 0.0841 0.5511 0.1126 0.5979 0.0841 0.5511 0.1253 0.5535 0.1126 0.5979 0.1126 0.5979 0.1253 0.5535 0.1388 0.5716 0.1388 0.5716 0.1253 0.5535 0.1444 0.5602 0.1388 0.5716 0.1444 0.5602 0.1669 0.5762 0.1388 0.5716 0.1669 0.5762 0.1654 0.5834 0.1388 0.5716 0.1654 0.5834 0.1333 0.6062 0.1388 0.5716 0.1333 0.6062 0.1126 0.5979 0.1654 0.5834 0.157 0.6203 0.1333 0.6062 0.1333 0.6062 0.157 0.6203 0.1549 0.6404 0.1333 0.6062 0.1549 0.6404 0.1339 0.6365 0.1333 0.6062 0.1339 0.6365 0.1126 0.5979 0.1339 0.6365 0.1129 0.637 0.1126 0.5979 0.1126 0.5979 0.1129 0.637 0.08569997 0.6412 0.1126 0.5979 0.08569997 0.6412 0.0837 0.6085 0.1126 0.5979 0.0837 0.6085 0.08519995 0.5784 0.08519995 0.5784 0.0837 0.6085 0.06389999 0.5484 0.0837 0.6085 0.06509995 0.5952 0.06389999 0.5484 0.06509995 0.5952 0.0837 0.6085 0.0442 0.6188 0.0442 0.6188 0.0837 0.6085 0.08569997 0.6412 0.0442 0.6188 0.08569997 0.6412 0.05099999 0.6504 0.0442 0.6188 0.05099999 0.6504 0.01029998 0.6252 0.05099999 0.6504 0.01029998 0.658 0.01029998 0.6252 0.0442 0.6188 0.01029998 0.6252 0.03759998 0.6044 0.0442 0.6188 0.03759998 0.6044 0.06509995 0.5952 0.01029998 0.6252 0.01029998 0.6104 0.03759998 0.6044 0.03639996 0.5095 0.01029998 0.5056 0.01029998 0.4954 0.03639996 0.5095 0.01029998 0.4954 0.03679996 0.5002 0.03639996 0.5095 0.03679996 0.5002 0.06369996 0.5037 0.03639996 0.5095 0.06369996 0.5037 0.05809998 0.5125 0.05809998 0.5125 0.06369996 0.5037 0.0629 0.5484 0.05809998 0.5125 0.0629 0.5484 0.05689996 0.5491 0.05689996 0.5491 0.0629 0.5484 0.06409996 0.594 0.05689996 0.5491 0.06409996 0.594 0.05859994 0.5873 0.05859994 0.5873 0.06409996 0.594 0.03759998 0.6033 0.05859994 0.5873 0.03759998 0.6033 0.03659999 0.5935 0.03659999 0.5935 0.03759998 0.6033 0.01029998 0.5985 0.03759998 0.6033 0.01029998 0.6093 0.01029998 0.5985 0.05529999 0.5848 0.05729997 0.5862 0.03659999 0.5924 0.05529999 0.5848 0.03659999 0.5924 0.03589999 0.5878 0.03589999 0.5878 0.03659999 0.5924 0.01029998 0.5974 0.03589999 0.5878 0.01029998 0.5974 0.01029998 0.5916 0.0575 0.5854 0.05549997 0.584 0.05339998 0.5496 0.0575 0.5854 0.05339998 0.5496 0.0557 0.5491 0.0557 0.5491 0.05339998 0.5496 0.05469995 0.5156 0.0557 0.5491 0.05469995 0.5156 0.05679994 0.5135 0.05619996 0.5133 0.05399996 0.5154 0.03579998 0.5151 0.05619996 0.5133 0.03579998 0.5151 0.03639996 0.511 0.03639996 0.511 0.03579998 0.5151 0.01029998 0.5071 0.03579998 0.5151 0.01029998 0.5122 0.01029998 0.5071 0.008899986 0.1583 0.008899986 0.1564 0.01189994 0.1547999 0.008899986 0.1583 0.01189994 0.1547999 0.03639996 0.1583 0.01189994 0.1547999 0.03359997 0.1499 0.03639996 0.1583 0.03359997 0.1499 0.01189994 0.1547999 0.01309996 0.15 0.03639996 0.1583 0.03359997 0.1499 0.04829996 0.1455 0.03639996 0.1583 0.04829996 0.1455 0.0672 0.1583 0.04829996 0.1455 0.06619995 0.1431 0.0672 0.1583 0.06619995 0.1431 0.04829996 0.1455 0.05079996 0.1417 0.0672 0.1583 0.06619995 0.1431 0.08899998 0.1493999 0.0672 0.1583 0.08899998 0.1493999 0.1039 0.1583 0.08899998 0.1493999 0.06619995 0.1431 0.0866 0.1438 0.1039 0.1583 0.08899998 0.1493999 0.09959995 0.1502 0.1039 0.1583 0.09959995 0.1502 0.1044 0.1474 0.1039 0.1583 0.1044 0.1474 0.1425 0.1583 0.1044 0.1474 0.1371999 0.1442 0.1425 0.1583 0.1425 0.1583 0.1371999 0.1442 0.1668 0.1481 0.1425 0.1583 0.1668 0.1481 0.191 0.1583 0.1668 0.1481 0.1905 0.1457 0.191 0.1583 0.1877 0.1877 0.1921 0.1654 0.2016 0.1739 0.1877 0.1877 0.2016 0.1739 0.2006 0.1949999 0.1877 0.1877 0.2006 0.1949999 0.1771 0.2201 0.2006 0.1949999 0.192 0.2334 0.1771 0.2201 0.1771 0.2201 0.192 0.2334 0.1603 0.2387 0.1771 0.2201 0.1603 0.2387 0.1596 0.2315 0.192 0.2334 0.1902 0.2407 0.1603 0.2387 0.1596 0.2315 0.1603 0.2387 0.133 0.2569 0.9916 0.06 0.9916 0.06669998 0.9607 0.06939995 0.9916 0.06 0.9607 0.06939995 0.9595 0.06369996 0.9595 0.06369996 0.9607 0.06939995 0.9299 0.06679999 0.9607 0.06939995 0.933 0.078 0.9299 0.06679999 0.9299 0.06679999 0.933 0.078 0.9082 0.069 0.933 0.078 0.9094 0.0805 0.9082 0.069 0.9082 0.069 0.9094 0.0805 0.89 0.0787 0.9082 0.069 0.89 0.0787 0.8889 0.06989997 0.89 0.0787 0.8718 0.06999999 0.8889 0.06989997 0.8889 0.06729996 0.8718 0.06739997 0.864 0.05239999 0.8889 0.06729996 0.864 0.05239999 0.8855 0.04529994 0.864 0.05239999 0.8649 0.0388 0.8855 0.04529994 0.8889 0.06729996 0.8855 0.04529994 0.9084 0.04649996 0.8889 0.06729996 0.9084 0.04649996 0.9082 0.06639999 0.9082 0.06639999 0.9084 0.04649996 0.9298 0.04539996 0.9082 0.06639999 0.9298 0.04539996 0.9299 0.0643 0.9299 0.0643 0.9298 0.04539996 0.9587 0.04299998 0.9299 0.0643 0.9587 0.04299998 0.9595 0.06109994 0.9595 0.06109994 0.9587 0.04299998 0.9916 0.05739998 0.9587 0.04299998 0.9916 0.03969997 0.9916 0.05739998 0.9916 0.03969997 0.9587 0.04299998 0.9916 0.02249997 0.9587 0.04299998 0.957 0.02249997 0.9916 0.02249997 0.957 0.02249997 0.9587 0.04299998 0.9298 0.04539996 0.957 0.02249997 0.9298 0.04539996 0.9296 0.02249997 0.9296 0.02249997 0.9298 0.04539996 0.9084 0.04649996 0.9296 0.02249997 0.9084 0.04649996 0.9073 0.02249997 0.9073 0.02249997 0.9084 0.04649996 0.8855 0.04529994 0.9073 0.02249997 0.8855 0.04529994 0.8853 0.02249997 0.8853 0.02249997 0.8855 0.04529994 0.8649 0.0388 0.8853 0.02249997 0.8649 0.0388 0.8643 0.02249997 0.543 0.7096 0.543 0.6822 0.5536 0.7062 0.5536 0.7062 0.543 0.6822 0.5746 0.6739 0.5536 0.7062 0.5746 0.6739 0.5833 0.7016 0.5746 0.6739 0.543 0.6822 0.5693 0.6405 0.543 0.6822 0.543 0.6421 0.5693 0.6405 0.5693 0.6405 0.543 0.6421 0.543 0.6165 0.5693 0.6405 0.543 0.6165 0.5666 0.6147 0.5666 0.6147 0.543 0.6165 0.543 0.5964 0.5693 0.6405 0.5666 0.6147 0.5821 0.6367 0.5693 0.6405 0.5821 0.6367 0.5746 0.6739 0.5821 0.6367 0.603 0.6681 0.5746 0.6739 0.5746 0.6739 0.603 0.6681 0.5833 0.7016 0.5833 0.7016 0.603 0.6681 0.6187 0.6984 0.603 0.6681 0.6192 0.6823 0.6187 0.6984 0.6187 0.6984 0.6192 0.6823 0.6422 0.692 0.6187 0.6984 0.6422 0.692 0.6421 0.6999 0.6421 0.6999 0.6422 0.692 0.6587 0.6983 0.6421 0.6999 0.6587 0.6983 0.6592 0.7008 0.6592 0.7008 0.6587 0.6983 0.6833 0.7063 0.6587 0.6983 0.7005 0.7 0.6833 0.7063 0.7005 0.7 0.7136 0.7079 0.6833 0.7063 0.7136 0.7079 0.7005 0.7 0.711 0.6725 0.711 0.6725 0.7005 0.7 0.7018 0.6724 0.7136 0.7079 0.711 0.6725 0.7378 0.6795 0.7136 0.7079 0.7378 0.6795 0.7368 0.7096 0.7368 0.7096 0.7378 0.6795 0.762 0.6811 0.7368 0.7096 0.762 0.6811 0.7603 0.7129 0.7603 0.7129 0.762 0.6811 0.7852 0.6825 0.7603 0.7129 0.7852 0.6825 0.7859 0.7134 0.7859 0.7134 0.7852 0.6825 0.8226 0.7145 0.7852 0.6825 0.8226 0.6843 0.8226 0.7145 0.8226 0.6843 0.7852 0.6825 0.7843 0.6448 0.7843 0.6448 0.7852 0.6825 0.762 0.6811 0.8226 0.6843 0.7843 0.6448 0.8226 0.6451 0.762 0.6811 0.7603 0.6502 0.7843 0.6448 0.7603 0.6502 0.762 0.6811 0.7378 0.6795 0.7603 0.6502 0.7378 0.6795 0.7367 0.6576 0.7378 0.6795 0.711 0.6725 0.7367 0.6576 0.7367 0.6576 0.711 0.6725 0.7121 0.6467 0.7121 0.6467 0.711 0.6725 0.7018 0.6724 0.7121 0.6467 0.7018 0.6724 0.7022 0.6463 0.7121 0.6467 0.7022 0.6463 0.7044 0.6401 0.7121 0.6467 0.7044 0.6401 0.7263 0.6368 0.7121 0.6467 0.7263 0.6368 0.7367 0.6576 0.7367 0.6576 0.7263 0.6368 0.7438 0.6256 0.7367 0.6576 0.7438 0.6256 0.7603 0.6502 0.7603 0.6502 0.7438 0.6256 0.7687 0.6202 0.7603 0.6502 0.7687 0.6202 0.7843 0.6448 0.7843 0.6448 0.7687 0.6202 0.7916 0.6191 0.7843 0.6448 0.7916 0.6191 0.8226 0.6451 0.7916 0.6191 0.8226 0.6173 0.8226 0.6451 0.8226 0.6173 0.7916 0.6191 0.7987 0.5999 0.8226 0.6173 0.7987 0.5999 0.8226 0.5995 0.7916 0.6191 0.7859 0.6043 0.7987 0.5999 0.7859 0.6043 0.7916 0.6191 0.7687 0.6202 0.7859 0.6043 0.7687 0.6202 0.755 0.602 0.755 0.602 0.7687 0.6202 0.7438 0.6256 0.755 0.602 0.7438 0.6256 0.7341 0.61 0.7341 0.61 0.7438 0.6256 0.7263 0.6368 0.7341 0.61 0.7263 0.6368 0.7118 0.6184 0.7118 0.6184 0.7263 0.6368 0.7044 0.6401 0.7118 0.6184 0.7044 0.6401 0.6902 0.623 0.6902 0.623 0.7044 0.6401 0.6761 0.6286 0.6761 0.6286 0.7044 0.6401 0.6615 0.6383 0.6615 0.6383 0.7044 0.6401 0.7022 0.6463 0.6615 0.6383 0.7022 0.6463 0.6622 0.6448 0.6615 0.6383 0.6622 0.6448 0.6518 0.6463 0.6518 0.6463 0.6622 0.6448 0.6597 0.6716 0.6518 0.6463 0.6597 0.6716 0.6439 0.6744 0.6518 0.6463 0.6439 0.6744 0.6347 0.6656 0.6347 0.6656 0.6439 0.6744 0.6208 0.6723 0.6208 0.6723 0.6439 0.6744 0.62 0.6773 0.6208 0.6723 0.62 0.6773 0.6083 0.6661 0.6439 0.6744 0.6431 0.6832 0.62 0.6773 0.6431 0.6832 0.6439 0.6744 0.6597 0.6716 0.6431 0.6832 0.6597 0.6716 0.6587 0.6983 0.6431 0.6832 0.6587 0.6983 0.6422 0.692 0.6431 0.6832 0.6422 0.692 0.6192 0.6823 0.6431 0.6832 0.6192 0.6823 0.62 0.6773 0.62 0.6773 0.6192 0.6823 0.603 0.6681 0.62 0.6773 0.603 0.6681 0.6057 0.6671 0.62 0.6773 0.6057 0.6671 0.6083 0.6661 0.6083 0.6661 0.6057 0.6671 0.5924 0.6341 0.6057 0.6671 0.5872 0.6354 0.5924 0.6341 0.5872 0.6354 0.6057 0.6671 0.603 0.6681 0.5872 0.6354 0.603 0.6681 0.5821 0.6367 0.5872 0.6354 0.5821 0.6367 0.5714 0.6102 0.5821 0.6367 0.5666 0.6147 0.5714 0.6102 0.5872 0.6354 0.5714 0.6102 0.5762 0.6056 0.5872 0.6354 0.5762 0.6056 0.5924 0.6341 0.5762 0.6056 0.5714 0.6102 0.5591 0.5778 0.5762 0.6056 0.5591 0.5778 0.5701 0.5693 0.5701 0.5693 0.5591 0.5778 0.5721 0.5448 0.5591 0.5778 0.5551 0.547 0.5721 0.5448 0.5721 0.5448 0.5551 0.547 0.5649 0.5245 0.5721 0.5448 0.5649 0.5245 0.5684 0.5223 0.5551 0.547 0.551 0.519 0.5649 0.5245 0.551 0.519 0.5551 0.547 0.543 0.5466 0.543 0.5466 0.5551 0.547 0.5591 0.5778 0.551 0.519 0.543 0.5466 0.543 0.516 0.5591 0.5778 0.543 0.5815 0.543 0.5466 0.543 0.5815 0.5591 0.5778 0.5548 0.5982 0.5548 0.5982 0.5591 0.5778 0.5714 0.6102 0.5548 0.5982 0.5714 0.6102 0.5666 0.6147 0.5548 0.5982 0.5666 0.6147 0.543 0.5964 0.5548 0.5982 0.543 0.5964 0.543 0.5815 0.6639 0.6474 0.7001 0.6488 0.6998 0.6724 0.6639 0.6474 0.6998 0.6724 0.6617 0.6717 0.6617 0.6717 0.6998 0.6724 0.6985 0.6974 0.6617 0.6717 0.6985 0.6974 0.6608 0.6958 0.755 0.602 0.7803 0.5867 0.7859 0.6043 0.7859 0.6043 0.7803 0.5867 0.801 0.5846 0.7803 0.5867 0.796 0.5681 0.801 0.5846 0.7859 0.6043 0.801 0.5846 0.7987 0.5999 0.7987 0.5999 0.801 0.5846 0.8226 0.5995 0.801 0.5846 0.8226 0.5852 0.8226 0.5995 0.8226 0.5852 0.801 0.5846 0.8226 0.5601 0.801 0.5846 0.8153 0.5606 0.8226 0.5601 0.8153 0.5606 0.801 0.5846 0.796 0.5681 0.8153 0.5606 0.796 0.5681 0.8075 0.5465 0.863 0.452 0.9029 0.4463 0.9045 0.4785 0.863 0.452 0.9045 0.4785 0.8639 0.4877 0.863 0.452 0.8639 0.4877 0.8272 0.4591 0.8639 0.4877 0.9045 0.4785 0.9041 0.5033 0.8272 0.4591 0.8639 0.4877 0.8276 0.4995 0.8272 0.4591 0.8276 0.4995 0.8131 0.4599 0.8276 0.4995 0.8639 0.4877 0.8515 0.5209 0.8639 0.4877 0.8759 0.5111 0.8515 0.5209 0.8759 0.5111 0.8639 0.4877 0.9041 0.5033 0.8759 0.5111 0.9041 0.5033 0.9039 0.5071 0.8759 0.5111 0.9039 0.5071 0.8785 0.5152 0.8759 0.5111 0.8785 0.5152 0.8515 0.5209 0.8785 0.5152 0.8545 0.5267 0.8515 0.5209 0.8515 0.5209 0.8545 0.5267 0.8247 0.5398 0.8515 0.5209 0.8247 0.5398 0.8263 0.5296 0.8515 0.5209 0.8263 0.5296 0.8276 0.4995 0.8276 0.4995 0.8263 0.5296 0.8148 0.5009 0.8276 0.4995 0.8148 0.5009 0.8131 0.4599 0.8131 0.4599 0.8148 0.5009 0.777 0.5004 0.8131 0.4599 0.777 0.5004 0.777 0.4595 0.777 0.4595 0.777 0.5004 0.7376 0.4583 0.777 0.5004 0.7365 0.5009 0.7376 0.4583 0.7376 0.4583 0.7365 0.5009 0.7079 0.462 0.7365 0.5009 0.7073 0.5086 0.7079 0.462 0.7079 0.462 0.7073 0.5086 0.6823 0.4638 0.7073 0.5086 0.7365 0.5009 0.7083 0.5373 0.6823 0.4638 0.7073 0.5086 0.6802 0.5141 0.7083 0.5373 0.6802 0.5141 0.7073 0.5086 0.6823 0.4638 0.6802 0.5141 0.6618 0.4657 0.6802 0.5141 0.6645 0.5151 0.6618 0.4657 0.6645 0.5151 0.6802 0.5141 0.6834 0.5521 0.6834 0.5521 0.6802 0.5141 0.7083 0.5373 0.6834 0.5521 0.7083 0.5373 0.7019 0.5761 0.7083 0.5373 0.7157 0.5633 0.7019 0.5761 0.7157 0.5633 0.7083 0.5373 0.7325 0.553 0.7083 0.5373 0.7365 0.5009 0.7325 0.553 0.7325 0.553 0.7365 0.5009 0.7565 0.5444 0.7565 0.5444 0.7365 0.5009 0.777 0.5004 0.7325 0.553 0.7565 0.5444 0.7327 0.557 0.7325 0.553 0.7327 0.557 0.7157 0.5633 0.7565 0.5444 0.7483 0.5517 0.7327 0.557 0.7157 0.5633 0.7327 0.557 0.7171 0.5672 0.7157 0.5633 0.7171 0.5672 0.7099 0.578 0.7157 0.5633 0.7099 0.578 0.7019 0.5761 0.7019 0.5761 0.7099 0.578 0.6889 0.5978 0.7019 0.5761 0.6889 0.5978 0.6845 0.5947 0.7019 0.5761 0.6845 0.5947 0.6834 0.5521 0.6845 0.5947 0.6889 0.5978 0.672 0.6008 0.6834 0.5521 0.6845 0.5947 0.6682 0.5562 0.672 0.6008 0.6682 0.5562 0.6845 0.5947 0.6834 0.5521 0.6682 0.5562 0.6645 0.5151 0.6645 0.5151 0.6682 0.5562 0.6538 0.5542 0.6645 0.5151 0.6538 0.5542 0.6512 0.514 0.6645 0.5151 0.6512 0.514 0.6618 0.4657 0.6512 0.514 0.6473 0.4653 0.6618 0.4657 0.6473 0.4653 0.6512 0.514 0.6196 0.5036 0.6473 0.4653 0.6196 0.5036 0.6185 0.4625 0.6196 0.5036 0.6512 0.514 0.6152 0.5421 0.6512 0.514 0.6538 0.5542 0.6152 0.5421 0.6152 0.5421 0.6538 0.5542 0.6368 0.5637 0.6368 0.5637 0.6538 0.5542 0.6586 0.5922 0.6586 0.5922 0.6538 0.5542 0.6682 0.5562 0.6586 0.5922 0.6682 0.5562 0.672 0.6008 0.6196 0.5036 0.6152 0.5421 0.5875 0.517 0.6196 0.5036 0.5875 0.517 0.5872 0.4898 0.6196 0.5036 0.5872 0.4898 0.6185 0.4625 0.5872 0.4898 0.5903 0.4567 0.6185 0.4625 0.5903 0.4567 0.5872 0.4898 0.5481 0.4804 0.5903 0.4567 0.5481 0.4804 0.5537 0.4487 0.5481 0.4804 0.5872 0.4898 0.5625 0.5057 0.5625 0.5057 0.5872 0.4898 0.5875 0.517 0.5481 0.4804 0.5625 0.5057 0.5422 0.503 0.7483 0.5517 0.7565 0.5444 0.7803 0.5391 0.7483 0.5517 0.7803 0.5391 0.7729 0.5489 0.7803 0.5391 0.7565 0.5444 0.777 0.5004 0.7729 0.5489 0.7803 0.5391 0.7987 0.543 0.7987 0.543 0.7803 0.5391 0.8247 0.5398 0.7803 0.5391 0.8164 0.5321 0.8247 0.5398 0.8164 0.5321 0.7803 0.5391 0.777 0.5004 0.8164 0.5321 0.777 0.5004 0.8148 0.5009 0.8164 0.5321 0.8148 0.5009 0.8263 0.5296 0.8164 0.5321 0.8263 0.5296 0.8247 0.5398 0.5506 0.4142 0.5483 0.396 0.5676 0.3959 0.5506 0.4142 0.5676 0.3959 0.5681 0.4131 0.5681 0.4131 0.5676 0.3959 0.5856 0.3922 0.5506 0.4142 0.5681 0.4131 0.5669 0.4299 0.5856 0.3922 0.5841 0.4132 0.5681 0.4131 0.5669 0.4299 0.5681 0.4131 0.5841 0.4132 0.5856 0.3922 0.6069 0.3978 0.5841 0.4132 0.6069 0.3978 0.6042 0.416 0.5841 0.4132 0.6042 0.416 0.6069 0.3978 0.6234 0.4008 0.6042 0.416 0.6234 0.4008 0.628 0.4182 0.6234 0.4008 0.6347 0.4026 0.628 0.4182 0.6042 0.416 0.628 0.4182 0.6219 0.4355 0.6042 0.416 0.6219 0.4355 0.6014 0.4315 0.6042 0.416 0.6014 0.4315 0.5841 0.4132 0.6014 0.4315 0.5836 0.4307 0.5841 0.4132 0.5841 0.4132 0.5836 0.4307 0.5669 0.4299 0.5669 0.4299 0.5525 0.4316 0.5506 0.4142 0.649 0.4412 0.6219 0.4355 0.628 0.4182 0.649 0.4412 0.628 0.4182 0.6544 0.4234 0.6544 0.4234 0.628 0.4182 0.6347 0.4026 0.6544 0.4234 0.6347 0.4026 0.6588 0.4064 0.6588 0.4064 0.6347 0.4026 0.6568 0.3998 0.6588 0.4064 0.6568 0.3998 0.6746 0.3938 0.6588 0.4064 0.6746 0.3938 0.6897 0.3933 0.6588 0.4064 0.6897 0.3933 0.6828 0.4122 0.6828 0.4122 0.6897 0.3933 0.7148 0.4021 0.6828 0.4122 0.7148 0.4021 0.7037 0.4198 0.6828 0.4122 0.7037 0.4198 0.6774 0.4325 0.6828 0.4122 0.6774 0.4325 0.6588 0.4064 0.6774 0.4325 0.6544 0.4234 0.6588 0.4064 0.6544 0.4234 0.6774 0.4325 0.649 0.4412 0.6774 0.4325 0.67 0.4496 0.649 0.4412 0.67 0.4496 0.6774 0.4325 0.6838 0.4566 0.6774 0.4325 0.693 0.4393 0.6838 0.4566 0.693 0.4393 0.6774 0.4325 0.7037 0.4198 0.03049999 0.3509 0.01029998 0.3503 0.01029998 0.341 0.03049999 0.3509 0.01029998 0.341 0.03329998 0.3434 0.03049999 0.3509 0.03329998 0.3434 0.04199999 0.3615 0.03329998 0.3434 0.04889994 0.3472 0.04199999 0.3615 0.04199999 0.3615 0.04889994 0.3472 0.06139999 0.3554 0.04199999 0.3615 0.06139999 0.3554 0.05469995 0.3701 0.04199999 0.3615 0.05469995 0.3701 0.05299997 0.3775 0.05469995 0.3701 0.06139999 0.3554 0.06859999 0.3725 0.05299997 0.3775 0.05469995 0.3701 0.06159996 0.3915 0.06859999 0.3725 0.06159996 0.3915 0.05469995 0.3701 0.06159996 0.3915 0.06859999 0.3725 0.07019996 0.3916 0.03959995 0.4531 0.01029998 0.4513 0.01029998 0.4462 0.03959995 0.4531 0.01029998 0.4462 0.03839999 0.449 0.03959995 0.4531 0.03839999 0.449 0.05469995 0.4452 0.03839999 0.449 0.05189996 0.4428 0.05469995 0.4452 0.05469995 0.4452 0.05189996 0.4428 0.06219995 0.4304 0.05189996 0.4428 0.05919998 0.4255 0.06219995 0.4304 0.06219995 0.4304 0.05919998 0.4255 0.06819999 0.4036 0.05919998 0.4255 0.05829995 0.4016 0.06819999 0.4036 0.01109999 0.3844 0.01039999 0.3726 0.03829997 0.3746 0.01109999 0.3844 0.03829997 0.3746 0.0381 0.3869 0.009899973 0.402 0.03509998 0.4009 0.03329998 0.4173 0.009899973 0.402 0.03329998 0.4173 0.01029998 0.4147 0.3377 0.4731 0.3387 0.4951 0.2996 0.504 0.3377 0.4731 0.2996 0.504 0.2942 0.4808 0.3377 0.4731 0.2942 0.4808 0.3368 0.4571 0.2942 0.4808 0.2996 0.504 0.2678 0.4822 0.2996 0.504 0.2749 0.5084 0.2678 0.4822 0.2678 0.4822 0.2749 0.5084 0.2569 0.5028 0.2678 0.4822 0.2569 0.5028 0.2476 0.4797 0.2476 0.4797 0.2569 0.5028 0.2444 0.4971 0.2476 0.4797 0.2444 0.4971 0.2366999 0.4809 0.2444 0.4971 0.2319999 0.4856 0.2366999 0.4809 0.2366999 0.4809 0.2319999 0.4856 0.2086 0.4645 0.2086 0.4645 0.2319999 0.4856 0.2006 0.4788 0.2086 0.4645 0.2006 0.4788 0.1870999 0.4501 0.2006 0.4788 0.1718 0.4683 0.1870999 0.4501 0.1870999 0.4501 0.1718 0.4683 0.1714 0.4357 0.1718 0.4683 0.1511999 0.4526 0.1714 0.4357 0.1714 0.4357 0.1511999 0.4526 0.1352 0.4328 0.1714 0.4357 0.1352 0.4328 0.1538 0.4157 0.1538 0.4157 0.1352 0.4328 0.129 0.4083 0.1538 0.4157 0.129 0.4083 0.149 0.3841 0.129 0.4083 0.1285 0.3927 0.149 0.3841 0.149 0.3841 0.1285 0.3927 0.1317999 0.3775 0.149 0.3841 0.1317999 0.3775 0.1398 0.3591 0.149 0.3841 0.1398 0.3591 0.1554 0.3653 0.1554 0.3653 0.1398 0.3591 0.1552 0.3426 0.149 0.3841 0.1554 0.3653 0.1759 0.3926 0.149 0.3841 0.1759 0.3926 0.1538 0.4157 0.1759 0.3926 0.1809 0.4118 0.1538 0.4157 0.1538 0.4157 0.1809 0.4118 0.1714 0.4357 0.1809 0.4118 0.1906 0.4273 0.1714 0.4357 0.1714 0.4357 0.1906 0.4273 0.1870999 0.4501 0.1906 0.4273 0.1999 0.4412 0.1870999 0.4501 0.1870999 0.4501 0.1999 0.4412 0.2086 0.4645 0.1999 0.4412 0.2184 0.4596 0.2086 0.4645 0.2086 0.4645 0.2184 0.4596 0.2366999 0.4809 0.2366999 0.4809 0.2184 0.4596 0.2361 0.4601 0.2366999 0.4809 0.2361 0.4601 0.2476 0.4797 0.2476 0.4797 0.2361 0.4601 0.2526 0.46 0.2476 0.4797 0.2526 0.46 0.2678 0.4822 0.2678 0.4822 0.2526 0.46 0.2888 0.4605 0.2678 0.4822 0.2888 0.4605 0.2942 0.4808 0.2942 0.4808 0.2888 0.4605 0.3368 0.4571 0.3368 0.4571 0.2888 0.4605 0.3365 0.4473 0.2888 0.4605 0.2875 0.4503 0.3365 0.4473 0.2875 0.4503 0.2888 0.4605 0.2526 0.46 0.3365 0.4473 0.2875 0.4503 0.3398 0.4227 0.2526 0.46 0.2535 0.4514 0.2875 0.4503 0.2535 0.4514 0.2526 0.46 0.2361 0.4601 0.2535 0.4514 0.2361 0.4601 0.2342 0.4352 0.2342 0.4352 0.2361 0.4601 0.2184 0.4596 0.2342 0.4352 0.2184 0.4596 0.2151 0.4348 0.2151 0.4348 0.2184 0.4596 0.1999 0.4412 0.2151 0.4348 0.1999 0.4412 0.2108 0.4201 0.1999 0.4412 0.1906 0.4273 0.2108 0.4201 0.2108 0.4201 0.1906 0.4273 0.2061 0.4057 0.1906 0.4273 0.1809 0.4118 0.2061 0.4057 0.2061 0.4057 0.1809 0.4118 0.2053 0.3926 0.1809 0.4118 0.1759 0.3926 0.2053 0.3926 0.2053 0.3926 0.1759 0.3926 0.184 0.369 0.184 0.369 0.1759 0.3926 0.1554 0.3653 0.184 0.369 0.1554 0.3653 0.1665 0.3497 0.1665 0.3497 0.1554 0.3653 0.1552 0.3426 0.1665 0.3497 0.1552 0.3426 0.1796 0.3262 0.1665 0.3497 0.1796 0.3262 0.186 0.3327 0.186 0.3327 0.1796 0.3262 0.2143999 0.3123 0.1665 0.3497 0.186 0.3327 0.207 0.3551 0.1665 0.3497 0.207 0.3551 0.184 0.369 0.184 0.369 0.207 0.3551 0.2096 0.3739 0.184 0.369 0.2096 0.3739 0.2053 0.3926 0.2053 0.3926 0.2096 0.3739 0.2341 0.3944 0.2053 0.3926 0.2341 0.3944 0.2061 0.4057 0.2061 0.4057 0.2341 0.3944 0.2353 0.4184 0.2061 0.4057 0.2353 0.4184 0.2108 0.4201 0.2108 0.4201 0.2353 0.4184 0.2151 0.4348 0.2353 0.4184 0.2342 0.4352 0.2151 0.4348 0.2342 0.4352 0.2353 0.4184 0.2549 0.4206 0.2342 0.4352 0.2549 0.4206 0.2535 0.4514 0.2535 0.4514 0.2549 0.4206 0.2875 0.4198 0.2535 0.4514 0.2875 0.4198 0.2875 0.4503 0.2875 0.4503 0.2875 0.4198 0.3398 0.4227 0.3398 0.4227 0.2875 0.4198 0.3377 0.3917 0.2875 0.4198 0.2857 0.3929 0.3377 0.3917 0.2857 0.3929 0.2875 0.4198 0.2556 0.3939 0.2875 0.4198 0.2549 0.4206 0.2556 0.3939 0.2556 0.3939 0.2549 0.4206 0.2353 0.4184 0.2556 0.3939 0.2353 0.4184 0.2341 0.3944 0.2556 0.3939 0.2341 0.3944 0.233 0.3707 0.233 0.3707 0.2341 0.3944 0.2096 0.3739 0.233 0.3707 0.2096 0.3739 0.2328 0.3488 0.2096 0.3739 0.207 0.3551 0.2328 0.3488 0.2328 0.3488 0.207 0.3551 0.2233999 0.3253 0.2233999 0.3253 0.207 0.3551 0.186 0.3327 0.2233999 0.3253 0.186 0.3327 0.2185 0.3164 0.2185 0.3164 0.186 0.3327 0.2143999 0.3123 0.2185 0.3164 0.2143999 0.3123 0.2395 0.2982 0.2185 0.3164 0.2395 0.2982 0.2422 0.3028 0.2185 0.3164 0.2422 0.3028 0.2233999 0.3253 0.2422 0.3028 0.2395 0.2982 0.2502 0.2751 0.2233999 0.3253 0.2422 0.3028 0.2345 0.3272 0.2233999 0.3253 0.2345 0.3272 0.2328 0.3488 0.2422 0.3028 0.2463 0.3106 0.2345 0.3272 0.2463 0.3106 0.2422 0.3028 0.2535 0.2777 0.2535 0.2777 0.2422 0.3028 0.2502 0.2751 0.2535 0.2777 0.2502 0.2751 0.2557 0.2571 0.2502 0.2751 0.2449 0.2497 0.2557 0.2571 0.2535 0.2777 0.2557 0.2571 0.2748 0.2576 0.2535 0.2777 0.2748 0.2576 0.2757 0.2817 0.2757 0.2817 0.2748 0.2576 0.2999 0.2591 0.2535 0.2777 0.2757 0.2817 0.2699 0.3045 0.2535 0.2777 0.2699 0.3045 0.2463 0.3106 0.2699 0.3045 0.2607 0.3174 0.2463 0.3106 0.2463 0.3106 0.2607 0.3174 0.2473 0.3332 0.2463 0.3106 0.2473 0.3332 0.2345 0.3272 0.2345 0.3272 0.2473 0.3332 0.2328 0.3488 0.2473 0.3332 0.248 0.3437 0.2328 0.3488 0.2328 0.3488 0.248 0.3437 0.253 0.3708 0.2328 0.3488 0.253 0.3708 0.233 0.3707 0.233 0.3707 0.253 0.3708 0.2556 0.3939 0.2556 0.3939 0.253 0.3708 0.2856 0.3701 0.2556 0.3939 0.2856 0.3701 0.2857 0.3929 0.2856 0.3701 0.253 0.3708 0.248 0.3437 0.2857 0.3929 0.2856 0.3701 0.3377 0.3917 0.2856 0.3701 0.3356 0.3662 0.3377 0.3917 0.3356 0.3662 0.2856 0.3701 0.2844 0.3443 0.2844 0.3443 0.2856 0.3701 0.248 0.3437 0.3356 0.3662 0.2844 0.3443 0.3326 0.3446 0.2844 0.3443 0.248 0.3437 0.2863 0.3337 0.3326 0.3446 0.2844 0.3443 0.2863 0.3337 0.248 0.3437 0.2473 0.3332 0.2863 0.3337 0.2863 0.3337 0.2473 0.3332 0.2607 0.3174 0.2863 0.3337 0.2607 0.3174 0.2932 0.3111 0.2607 0.3174 0.2699 0.3045 0.2932 0.3111 0.2932 0.3111 0.2699 0.3045 0.2757 0.2817 0.2932 0.3111 0.2757 0.2817 0.2995 0.287 0.2995 0.287 0.2757 0.2817 0.2999 0.2591 0.2995 0.287 0.2999 0.2591 0.3382 0.2698 0.2995 0.287 0.3382 0.2698 0.3329 0.2973 0.2995 0.287 0.3329 0.2973 0.2932 0.3111 0.3329 0.2973 0.3319 0.3178 0.2932 0.3111 0.2932 0.3111 0.3319 0.3178 0.3317 0.3357 0.2932 0.3111 0.3317 0.3357 0.2863 0.3337 0.2863 0.3337 0.3317 0.3357 0.3326 0.3446 0.3443 0.3674 0.3404 0.3917 0.3384 0.3662 0.3443 0.3674 0.3384 0.3662 0.3462 0.3481 0.3384 0.3662 0.3353 0.3446 0.3462 0.3481 0.3462 0.3481 0.3353 0.3446 0.3445 0.3332 0.3353 0.3446 0.3344 0.3357 0.3445 0.3332 0.3445 0.3332 0.3344 0.3357 0.3346 0.3178 0.3445 0.3332 0.3346 0.3178 0.3431 0.314 0.3431 0.314 0.3346 0.3178 0.3356 0.2973 0.3431 0.314 0.3356 0.2973 0.3427 0.2958 0.3427 0.2958 0.3356 0.2973 0.3409 0.2698 0.3427 0.2958 0.3409 0.2698 0.3459 0.2732 0.3474 0.4441 0.3393 0.4473 0.3425 0.4227 0.3393 0.4473 0.3474 0.4441 0.3395 0.4571 0.3474 0.4441 0.3454 0.4648 0.3395 0.4571 0.3454 0.4648 0.3404 0.4731 0.3395 0.4571 0.3404 0.4731 0.3454 0.4648 0.3472 0.4936 0.3404 0.4731 0.3472 0.4936 0.3414 0.4951 0.4015 0.5077 0.4016 0.4922 0.4076 0.5092 0.4015 0.5077 0.4076 0.5092 0.4034 0.5292 0.3753 0.5514 0.3884 0.5482 0.3735 0.5599 0.3753 0.5514 0.3735 0.5599 0.3654 0.5654 0.3654 0.5654 0.3735 0.5599 0.3724 0.564 0.3654 0.5654 0.3724 0.564 0.3732 0.5718 0.3654 0.5654 0.3732 0.5718 0.3642 0.5773 0.3642 0.5773 0.3732 0.5718 0.3719 0.5743 0.3642 0.5773 0.3719 0.5743 0.3728 0.5909 0.3642 0.5773 0.3728 0.5909 0.3663 0.5913 0.3663 0.5913 0.3728 0.5909 0.3715 0.6109 0.3728 0.5909 0.3753 0.6112 0.3715 0.6109 0.3715 0.6109 0.3753 0.6112 0.3778 0.6314 0.3778 0.6314 0.3753 0.6112 0.3805 0.6285 0.3753 0.6112 0.3774 0.6128 0.3805 0.6285 0.3718 0.462 0.375 0.4594 0.3841 0.4704 0.375 0.4594 0.3718 0.462 0.3752 0.4493 0.3718 0.462 0.3745 0.4465 0.3752 0.4493 0.3727 0.6562 0.3648 0.6624 0.3629 0.6331 0.3727 0.6562 0.3629 0.6331 0.3702 0.6329 0.3727 0.6562 0.3702 0.6329 0.3806 0.6499 0.3702 0.6329 0.3629 0.6331 0.3645 0.6121 0.3629 0.6331 0.3584 0.6128 0.3645 0.6121 0.3645 0.6121 0.3584 0.6128 0.3606 0.5904 0.3584 0.6128 0.3561 0.5896 0.3606 0.5904 0.3561 0.5896 0.3627 0.5771 0.3606 0.5904 0.3627 0.5771 0.3561 0.5896 0.3615 0.5564 0.3606 0.5904 0.3627 0.5771 0.3652 0.5913 0.3606 0.5904 0.3652 0.5913 0.3645 0.6121 0.3652 0.5913 0.3706 0.6113 0.3645 0.6121 0.3645 0.6121 0.3706 0.6113 0.3702 0.6329 0.3706 0.6113 0.3775 0.6327 0.3702 0.6329 0.3702 0.6329 0.3775 0.6327 0.3806 0.6499 0.3806 0.6499 0.3775 0.6327 0.4396 0.6279 0.3806 0.6499 0.4396 0.6279 0.4416 0.6431 0.4396 0.6279 0.3775 0.6327 0.3815 0.6285 0.4416 0.6431 0.4396 0.6279 0.4787 0.6199 0.4416 0.6431 0.4787 0.6199 0.483 0.6323 0.483 0.6323 0.4787 0.6199 0.5121 0.6074 0.483 0.6323 0.5121 0.6074 0.5162 0.6184 0.5121 0.6074 0.4787 0.6199 0.51 0.6053 0.4787 0.6199 0.4768 0.6153 0.51 0.6053 0.4768 0.6153 0.4787 0.6199 0.4396 0.6279 0.4768 0.6153 0.4396 0.6279 0.4384 0.6234 0.4384 0.6234 0.4396 0.6279 0.3815 0.6285 0.4768 0.6153 0.4384 0.6234 0.4367 0.6064 0.3815 0.6285 0.4367 0.6064 0.4384 0.6234 0.4367 0.6064 0.3815 0.6285 0.3787 0.6125 0.4367 0.6064 0.3787 0.6125 0.4351 0.6017 0.3787 0.6125 0.3766 0.611 0.4351 0.6017 0.4351 0.6017 0.3766 0.611 0.4333 0.588 0.3766 0.611 0.374 0.5908 0.4333 0.588 0.4351 0.6017 0.4333 0.588 0.4751 0.5944 0.4351 0.6017 0.4751 0.5944 0.4367 0.6064 0.4751 0.5944 0.4753 0.599 0.4367 0.6064 0.4367 0.6064 0.4753 0.599 0.4768 0.6153 0.4768 0.6153 0.4753 0.599 0.51 0.6053 0.4753 0.599 0.5072 0.5913 0.51 0.6053 0.5072 0.5913 0.4753 0.599 0.4751 0.5944 0.5072 0.5913 0.4751 0.5944 0.5087 0.588 0.5087 0.588 0.4751 0.5944 0.4733 0.5803 0.4733 0.5803 0.4751 0.5944 0.4333 0.588 0.5087 0.588 0.4733 0.5803 0.5071 0.5747 0.4733 0.5803 0.4333 0.588 0.4334 0.5707 0.4334 0.5707 0.4333 0.588 0.374 0.5908 0.4334 0.5707 0.374 0.5908 0.3729 0.5747 0.4334 0.5707 0.3729 0.5747 0.4339 0.5668 0.3729 0.5747 0.3745 0.5717 0.4339 0.5668 0.4339 0.5668 0.3745 0.5717 0.3735 0.5639 0.4339 0.5668 0.3735 0.5639 0.4326 0.5563 0.4326 0.5563 0.3735 0.5639 0.3743 0.5606 0.4326 0.5563 0.3743 0.5606 0.4327 0.5527 0.4327 0.5527 0.3743 0.5606 0.3905 0.5471 0.4326 0.5563 0.4327 0.5527 0.4698 0.5541 0.4326 0.5563 0.4698 0.5541 0.4339 0.5668 0.4698 0.5541 0.4718 0.5626 0.4339 0.5668 0.4339 0.5668 0.4718 0.5626 0.4334 0.5707 0.4718 0.5626 0.4728 0.567 0.4334 0.5707 0.4334 0.5707 0.4728 0.567 0.4733 0.5803 0.4733 0.5803 0.4728 0.567 0.5071 0.5747 0.4728 0.567 0.5054 0.5598 0.5071 0.5747 0.5054 0.5598 0.4728 0.567 0.5031 0.5582 0.4728 0.567 0.4718 0.5626 0.5031 0.5582 0.5031 0.5582 0.4718 0.5626 0.5032 0.5503 0.4718 0.5626 0.4698 0.5541 0.5032 0.5503 0.5032 0.5503 0.4698 0.5541 0.4703 0.5505 0.4703 0.5505 0.4698 0.5541 0.4327 0.5527 0.5032 0.5503 0.4703 0.5505 0.5054 0.548 0.4703 0.5505 0.4327 0.5527 0.4354 0.5343 0.5054 0.548 0.4703 0.5505 0.469 0.5329 0.4354 0.5343 0.469 0.5329 0.4703 0.5505 0.5054 0.548 0.469 0.5329 0.5038 0.5317 0.5038 0.5317 0.469 0.5329 0.4705 0.5099 0.5038 0.5317 0.4705 0.5099 0.5032 0.5124 0.4705 0.5099 0.469 0.5329 0.4367 0.5099 0.469 0.5329 0.4354 0.5343 0.4367 0.5099 0.4367 0.5099 0.4354 0.5343 0.4089 0.5092 0.4354 0.5343 0.4029 0.5337 0.4089 0.5092 0.4029 0.5337 0.4354 0.5343 0.4327 0.5527 0.4029 0.5337 0.4327 0.5527 0.3905 0.5471 0.4029 0.5337 0.3905 0.5471 0.3816 0.5312 0.3905 0.5471 0.3751 0.5501 0.3816 0.5312 0.4029 0.5337 0.3816 0.5312 0.3828 0.508 0.4029 0.5337 0.3828 0.508 0.4005 0.5079 0.4005 0.5079 0.3828 0.508 0.4009 0.4869 0.3828 0.508 0.3815 0.4874 0.4009 0.4869 0.3815 0.4874 0.3828 0.508 0.367 0.5034 0.3828 0.508 0.368 0.5148 0.367 0.5034 0.368 0.5148 0.3828 0.508 0.3816 0.5312 0.368 0.5148 0.3816 0.5312 0.3669 0.5316 0.3669 0.5316 0.3816 0.5312 0.3751 0.5501 0.3669 0.5316 0.3751 0.5501 0.3615 0.5564 0.3615 0.5564 0.3751 0.5501 0.3643 0.5653 0.3615 0.5564 0.3643 0.5653 0.3627 0.5771 0.367 0.5034 0.3658 0.4865 0.3815 0.4874 0.3815 0.4874 0.3658 0.4865 0.3824 0.4736 0.3815 0.4874 0.3824 0.4736 0.4009 0.4869 0.3658 0.4865 0.3636 0.4688 0.3824 0.4736 0.4009 0.4869 0.3824 0.4736 0.387 0.4731 0.3824 0.4736 0.3636 0.4688 0.3709 0.4624 0.387 0.4731 0.3824 0.4736 0.3709 0.4624 0.3636 0.4688 0.3614 0.4438 0.3709 0.4624 0.3614 0.4438 0.3741 0.4443 0.3709 0.4624 0.3741 0.4443 0.3614 0.4438 0.3686 0.4355 0.3741 0.4443 0.3686 0.4355 0.3759 0.4272 0.3741 0.4443 0.3759 0.4272 0.4371 0.4353 0.3741 0.4443 0.4371 0.4353 0.435 0.4524 0.435 0.4524 0.4371 0.4353 0.4785 0.4458 0.3741 0.4443 0.435 0.4524 0.4335 0.4571 0.3741 0.4443 0.4335 0.4571 0.3763 0.4492 0.3763 0.4492 0.4335 0.4571 0.3759 0.4592 0.4335 0.4571 0.4355 0.4689 0.3759 0.4592 0.3759 0.4592 0.4355 0.4689 0.387 0.4731 0.387 0.4731 0.4355 0.4689 0.434 0.4746 0.387 0.4731 0.434 0.4746 0.4009 0.4869 0.434 0.4746 0.436 0.488 0.4009 0.4869 0.4009 0.4869 0.436 0.488 0.4089 0.5092 0.436 0.488 0.4367 0.5099 0.4089 0.5092 0.4367 0.5099 0.436 0.488 0.4705 0.5099 0.436 0.488 0.4713 0.4911 0.4705 0.5099 0.4713 0.4911 0.436 0.488 0.434 0.4746 0.4705 0.5099 0.4713 0.4911 0.5032 0.5124 0.4713 0.4911 0.5041 0.4974 0.5032 0.5124 0.5041 0.4974 0.4713 0.4911 0.506 0.4859 0.4713 0.4911 0.4742 0.479 0.506 0.4859 0.4742 0.479 0.4713 0.4911 0.434 0.4746 0.506 0.4859 0.4742 0.479 0.4749 0.4738 0.434 0.4746 0.4749 0.4738 0.4742 0.479 0.4749 0.4738 0.434 0.4746 0.4355 0.4689 0.4749 0.4738 0.4355 0.4689 0.4751 0.4651 0.4355 0.4689 0.4335 0.4571 0.4751 0.4651 0.4751 0.4651 0.4335 0.4571 0.476 0.4593 0.4335 0.4571 0.435 0.4524 0.476 0.4593 0.476 0.4593 0.435 0.4524 0.4785 0.4458 0.476 0.4593 0.4785 0.4458 0.5128 0.4577 0.476 0.4593 0.5128 0.4577 0.5089 0.4698 0.476 0.4593 0.5089 0.4698 0.4751 0.4651 0.5089 0.4698 0.5061 0.4728 0.4751 0.4651 0.4751 0.4651 0.5061 0.4728 0.4749 0.4738 0.5061 0.4728 0.5044 0.482 0.4749 0.4738 0.4749 0.4738 0.5044 0.482 0.506 0.4859 0.5054 0.5582 0.5055 0.5503 0.5077 0.548 0.5054 0.5582 0.5077 0.548 0.5077 0.5598 0.5077 0.5598 0.5077 0.548 0.5164 0.5502 0.5164 0.5502 0.5077 0.548 0.5132 0.5306 0.5077 0.548 0.5061 0.5317 0.5132 0.5306 0.5132 0.5306 0.5061 0.5317 0.5055 0.5124 0.5132 0.5306 0.5055 0.5124 0.5128 0.5137 0.5128 0.5137 0.5055 0.5124 0.5064 0.4974 0.5128 0.5137 0.5064 0.4974 0.5163 0.5008 0.5163 0.5008 0.5064 0.4974 0.5083 0.4859 0.5163 0.5008 0.5083 0.4859 0.5167 0.4865 0.5167 0.4865 0.5083 0.4859 0.5112 0.4698 0.5112 0.4698 0.5083 0.4859 0.5067 0.482 0.5167 0.4865 0.5112 0.4698 0.5182 0.4728 0.5067 0.482 0.5084 0.4728 0.5112 0.4698 0.5182 0.4728 0.5112 0.4698 0.5151 0.4577 0.5182 0.4728 0.5151 0.4577 0.5217 0.4554 0.5077 0.5598 0.5164 0.5502 0.5151 0.5741 0.5077 0.5598 0.5151 0.5741 0.5094 0.5747 0.5094 0.5747 0.5151 0.5741 0.511 0.588 0.5151 0.5741 0.5146 0.5897 0.511 0.588 0.511 0.588 0.5146 0.5897 0.5165 0.5986 0.511 0.588 0.5165 0.5986 0.5144 0.6074 0.5144 0.6074 0.5165 0.5986 0.52 0.6115 0.5144 0.6074 0.52 0.6115 0.5185 0.6184 0.5144 0.6074 0.5123 0.6053 0.511 0.588 0.5123 0.6053 0.5095 0.5913 0.511 0.588 0.6543 0.9871 0.6461 0.9929 0.6433 0.9889 0.6543 0.9871 0.6433 0.9889 0.6562 0.983 0.6543 0.9871 0.6562 0.983 0.6691 0.9848 0.6562 0.983 0.6433 0.9889 0.655 0.9727 0.6691 0.9848 0.6562 0.983 0.6667 0.9792 0.655 0.9727 0.6667 0.9792 0.6562 0.983 0.6691 0.9848 0.6667 0.9792 0.683 0.9796 0.6691 0.9848 0.683 0.9796 0.6849 0.9821 0.6849 0.9821 0.683 0.9796 0.7026 0.9772 0.6849 0.9821 0.7026 0.9772 0.7054 0.9824 0.7054 0.9824 0.7026 0.9772 0.7164 0.9732 0.7054 0.9824 0.7164 0.9732 0.7218 0.9817 0.7164 0.9732 0.7026 0.9772 0.7174 0.9627 0.7164 0.9732 0.7174 0.9627 0.7227 0.9745 0.7164 0.9732 0.7227 0.9745 0.7218 0.9817 0.7218 0.9817 0.7227 0.9745 0.7336 0.9735 0.7218 0.9817 0.7336 0.9735 0.7326 0.98 0.7336 0.9735 0.7478 0.9802 0.7326 0.98 0.7478 0.9802 0.7336 0.9735 0.7333 0.9651 0.7333 0.9651 0.7336 0.9735 0.726 0.9643 0.7336 0.9735 0.7227 0.9745 0.726 0.9643 0.7227 0.9745 0.7214 0.9627 0.726 0.9643 0.7214 0.9627 0.7227 0.9745 0.7174 0.9627 0.7214 0.9627 0.7174 0.9627 0.7158 0.9467 0.7158 0.9467 0.7174 0.9627 0.7004 0.953 0.7174 0.9627 0.7026 0.9772 0.7004 0.953 0.7004 0.953 0.7026 0.9772 0.6978 0.9754 0.6978 0.9754 0.7026 0.9772 0.683 0.9796 0.7004 0.953 0.6978 0.9754 0.6946 0.9522 0.683 0.9796 0.6863 0.9768 0.6978 0.9754 0.6946 0.9522 0.6978 0.9754 0.6863 0.9768 0.683 0.9796 0.6757 0.9564 0.6863 0.9768 0.6757 0.9564 0.683 0.9796 0.6667 0.9792 0.6757 0.9564 0.6667 0.9792 0.6539 0.9566 0.6539 0.9566 0.6667 0.9792 0.655 0.9727 0.6757 0.9564 0.6539 0.9566 0.6716 0.947 0.6757 0.9564 0.6716 0.947 0.6811 0.9546 0.6757 0.9564 0.6811 0.9546 0.6863 0.9768 0.6863 0.9768 0.6811 0.9546 0.6946 0.9522 0.6946 0.9522 0.6811 0.9546 0.6744 0.9434 0.6744 0.9434 0.6811 0.9546 0.6716 0.947 0.6744 0.9434 0.6716 0.947 0.6587 0.9356 0.6587 0.9356 0.6716 0.947 0.6539 0.9566 0.6587 0.9356 0.6539 0.9566 0.6507 0.9428 0.6539 0.9566 0.6489 0.9574 0.6507 0.9428 0.6489 0.9574 0.6539 0.9566 0.655 0.9727 0.6489 0.9574 0.655 0.9727 0.6462 0.9674 0.6462 0.9674 0.655 0.9727 0.6407 0.9841 0.6407 0.9841 0.655 0.9727 0.6433 0.9889 0.6462 0.9674 0.6407 0.9841 0.6343 0.9761 0.6462 0.9674 0.6343 0.9761 0.6369 0.9607 0.6462 0.9674 0.6369 0.9607 0.6489 0.9574 0.6343 0.9761 0.6274 0.9686 0.6369 0.9607 0.6489 0.9574 0.6369 0.9607 0.6414 0.9485 0.6489 0.9574 0.6414 0.9485 0.6507 0.9428 0.6414 0.9485 0.6436 0.9394 0.6507 0.9428 0.6507 0.9428 0.6436 0.9394 0.6422 0.9285 0.6507 0.9428 0.6422 0.9285 0.6541 0.9296 0.6507 0.9428 0.6541 0.9296 0.6587 0.9356 0.6587 0.9356 0.6541 0.9296 0.6745 0.9278 0.6587 0.9356 0.6745 0.9278 0.6744 0.9434 0.6541 0.9296 0.6723 0.9204 0.6745 0.9278 0.6744 0.9434 0.6745 0.9278 0.6931 0.9262 0.6723 0.9204 0.6931 0.9262 0.6745 0.9278 0.6744 0.9434 0.6931 0.9262 0.6963 0.9411 0.6744 0.9434 0.6963 0.9411 0.6946 0.9522 0.6946 0.9522 0.6963 0.9411 0.7016 0.9428 0.6946 0.9522 0.7016 0.9428 0.7004 0.953 0.7004 0.953 0.7016 0.9428 0.7158 0.9467 0.7158 0.9467 0.7016 0.9428 0.7081 0.9287 0.7016 0.9428 0.6963 0.9411 0.7081 0.9287 0.7081 0.9287 0.6963 0.9411 0.6931 0.9262 0.7081 0.9287 0.6931 0.9262 0.6937 0.9186 0.6937 0.9186 0.6931 0.9262 0.6723 0.9204 0.7081 0.9287 0.6937 0.9186 0.7122 0.924 0.7081 0.9287 0.7122 0.924 0.7158 0.9467 0.7122 0.924 0.72 0.9458 0.7158 0.9467 0.7158 0.9467 0.72 0.9458 0.7214 0.9627 0.72 0.9458 0.7122 0.924 0.7238 0.9378 0.7214 0.9627 0.72 0.9458 0.7254 0.9497 0.7238 0.9378 0.7254 0.9497 0.72 0.9458 0.7214 0.9627 0.7254 0.9497 0.726 0.9643 0.726 0.9643 0.7254 0.9497 0.7341 0.9496 0.726 0.9643 0.7341 0.9496 0.7333 0.9651 0.7341 0.9496 0.7254 0.9497 0.7341 0.936 0.7254 0.9497 0.7238 0.9378 0.7341 0.936 0.7341 0.936 0.7238 0.9378 0.7342 0.9221 0.7238 0.9378 0.7218 0.9222 0.7342 0.9221 0.7218 0.9222 0.7238 0.9378 0.7122 0.924 0.7218 0.9222 0.7122 0.924 0.718 0.9134 0.7218 0.9222 0.718 0.9134 0.7265 0.9115 0.7218 0.9222 0.7265 0.9115 0.7342 0.9221 0.7265 0.9115 0.718 0.9134 0.7184 0.8941 0.7184 0.8941 0.718 0.9134 0.7107 0.894 0.718 0.9134 0.7088 0.9126 0.7107 0.894 0.7088 0.9126 0.718 0.9134 0.7122 0.924 0.7088 0.9126 0.7122 0.924 0.6978 0.9117 0.7122 0.924 0.6937 0.9186 0.6978 0.9117 0.7088 0.9126 0.6978 0.9117 0.7045 0.9072 0.7088 0.9126 0.7045 0.9072 0.7107 0.894 0.7045 0.9072 0.7044 0.8924 0.7107 0.894 0.7045 0.9072 0.6978 0.9117 0.7035 0.9074 0.7035 0.9074 0.6978 0.9117 0.6948 0.8891 0.7035 0.9074 0.6948 0.8891 0.7022 0.8882 0.7022 0.8882 0.6948 0.8891 0.7017 0.8818 0.6948 0.8891 0.6943 0.883 0.7017 0.8818 0.6943 0.883 0.6948 0.8891 0.6886 0.8896 0.6886 0.8896 0.6948 0.8891 0.6978 0.9117 0.6886 0.8896 0.6978 0.9117 0.6897 0.9112 0.6897 0.9112 0.6978 0.9117 0.6937 0.9186 0.6897 0.9112 0.6937 0.9186 0.6773 0.913 0.6937 0.9186 0.6723 0.9204 0.6773 0.913 0.6897 0.9112 0.6773 0.913 0.6843 0.9061 0.6897 0.9112 0.6843 0.9061 0.6886 0.8896 0.6843 0.9061 0.6834 0.8888 0.6886 0.8896 0.6886 0.8896 0.6834 0.8888 0.6883 0.8836 0.6886 0.8896 0.6883 0.8836 0.6943 0.883 0.6834 0.8888 0.6832 0.8824 0.6883 0.8836 0.6943 0.883 0.6883 0.8836 0.6934 0.8665 0.6943 0.883 0.6934 0.8665 0.7017 0.8818 0.6934 0.8665 0.7003 0.8645 0.7017 0.8818 0.7003 0.8645 0.6934 0.8665 0.6996 0.8582 0.6934 0.8665 0.6934 0.8604 0.6996 0.8582 0.6996 0.8582 0.6934 0.8604 0.6975 0.8461 0.6934 0.8604 0.6934 0.8665 0.6879 0.8677 0.6879 0.8677 0.6934 0.8665 0.6883 0.8836 0.6879 0.8677 0.6883 0.8836 0.6832 0.8824 0.6879 0.8677 0.6832 0.8824 0.6831 0.8666 0.6879 0.8677 0.6831 0.8666 0.688 0.8615 0.6879 0.8677 0.688 0.8615 0.6934 0.8604 0.6831 0.8666 0.6832 0.8602 0.688 0.8615 0.688 0.8615 0.6832 0.8602 0.6835 0.8485 0.688 0.8615 0.6835 0.8485 0.6886 0.85 0.6886 0.85 0.6835 0.8485 0.6876 0.8422 0.688 0.8615 0.6886 0.85 0.6938 0.85 0.6876 0.8422 0.6938 0.85 0.6886 0.85 0.688 0.8615 0.6938 0.85 0.6934 0.8604 0.6934 0.8604 0.6938 0.85 0.6975 0.8461 0.6938 0.85 0.6933 0.8415 0.6975 0.8461 0.6933 0.8415 0.6938 0.85 0.6876 0.8422 0.6773 0.913 0.6814 0.9058 0.6843 0.9061 0.6814 0.9058 0.6773 0.913 0.6719 0.8888 0.6814 0.9058 0.6719 0.8888 0.6782 0.8861 0.6782 0.8861 0.6719 0.8888 0.6773 0.8798 0.6719 0.8888 0.6709 0.8828 0.6773 0.8798 0.6709 0.8828 0.6719 0.8888 0.6653 0.8902 0.6653 0.8902 0.6719 0.8888 0.6773 0.913 0.6653 0.8902 0.6773 0.913 0.6673 0.9132 0.6773 0.913 0.6723 0.9204 0.6673 0.9132 0.6673 0.9132 0.6723 0.9204 0.6541 0.9296 0.6673 0.9132 0.6541 0.9296 0.6549 0.9165 0.6541 0.9296 0.6475 0.9179 0.6549 0.9165 0.6475 0.9179 0.6541 0.9296 0.6422 0.9285 0.6475 0.9179 0.6422 0.9285 0.6401 0.9198 0.6475 0.9179 0.6401 0.9198 0.6423 0.9011 0.6475 0.9179 0.6423 0.9011 0.6549 0.9165 0.6423 0.9011 0.6499 0.8992 0.6549 0.9165 0.6549 0.9165 0.6499 0.8992 0.6593 0.91 0.6549 0.9165 0.6593 0.91 0.6673 0.9132 0.6593 0.91 0.6613 0.9097 0.6673 0.9132 0.6673 0.9132 0.6613 0.9097 0.6653 0.8902 0.6613 0.9097 0.6591 0.8907 0.6653 0.8902 0.6653 0.8902 0.6591 0.8907 0.6648 0.8841 0.6653 0.8902 0.6648 0.8841 0.6709 0.8828 0.6591 0.8907 0.6585 0.8843 0.6648 0.8841 0.6709 0.8828 0.6648 0.8841 0.6688 0.8657 0.6709 0.8828 0.6688 0.8657 0.6773 0.8798 0.6688 0.8657 0.6752 0.8632 0.6773 0.8798 0.6752 0.8632 0.6688 0.8657 0.6739 0.8571 0.6688 0.8657 0.6681 0.8597 0.6739 0.8571 0.6739 0.8571 0.6681 0.8597 0.6699 0.8438 0.6681 0.8597 0.6688 0.8657 0.6629 0.867 0.6629 0.867 0.6688 0.8657 0.6648 0.8841 0.6629 0.867 0.6648 0.8841 0.6585 0.8843 0.6629 0.867 0.6585 0.8843 0.6572 0.8659 0.6629 0.867 0.6572 0.8659 0.6622 0.861 0.6629 0.867 0.6622 0.861 0.6681 0.8597 0.6572 0.8659 0.6569 0.8596 0.6622 0.861 0.6622 0.861 0.6569 0.8596 0.656 0.8444 0.6622 0.861 0.656 0.8444 0.6604 0.8448 0.6604 0.8448 0.656 0.8444 0.6591 0.8389 0.6604 0.8448 0.6591 0.8389 0.6657 0.8382 0.6604 0.8448 0.6657 0.8382 0.6659 0.8444 0.6604 0.8448 0.6659 0.8444 0.6622 0.861 0.6659 0.8444 0.6681 0.8597 0.6622 0.861 0.6681 0.8597 0.6659 0.8444 0.6699 0.8438 0.6659 0.8444 0.6657 0.8382 0.6699 0.8438 0.6499 0.8992 0.6553 0.8951 0.6593 0.91 0.6553 0.8951 0.6499 0.8992 0.6536 0.8893 0.6499 0.8992 0.6482 0.8934 0.6536 0.8893 0.6482 0.8934 0.6499 0.8992 0.6423 0.9011 0.6536 0.8893 0.6482 0.8934 0.6445 0.8805 0.6536 0.8893 0.6445 0.8805 0.6494 0.8775 0.6494 0.8775 0.6445 0.8805 0.6471 0.8716 0.6445 0.8805 0.6426 0.8748 0.6471 0.8716 0.6471 0.8716 0.6426 0.8748 0.6398 0.8589 0.6426 0.8748 0.637 0.8616 0.6398 0.8589 0.637 0.8616 0.6351 0.8566 0.6398 0.8589 0.6351 0.8566 0.637 0.8616 0.63 0.8577 0.637 0.8616 0.6311 0.8629 0.63 0.8577 0.63 0.8577 0.6311 0.8629 0.6274 0.8606 0.6311 0.8629 0.637 0.8616 0.6346 0.8762 0.6274 0.8606 0.6311 0.8629 0.6346 0.8762 0.637 0.8616 0.6426 0.8748 0.6346 0.8762 0.6346 0.8762 0.6426 0.8748 0.6363 0.882 0.6426 0.8748 0.6445 0.8805 0.6363 0.882 0.6363 0.882 0.6445 0.8805 0.6404 0.8953 0.6445 0.8805 0.6482 0.8934 0.6404 0.8953 0.6404 0.8953 0.6482 0.8934 0.6423 0.9011 0.6404 0.8953 0.6423 0.9011 0.6356 0.9019 0.6356 0.9019 0.6423 0.9011 0.6401 0.9198 0.6404 0.8953 0.6356 0.9019 0.6341 0.8959 0.6404 0.8953 0.6341 0.8959 0.6363 0.882 0.6341 0.8959 0.63 0.8811 0.6363 0.882 0.6363 0.882 0.63 0.8811 0.6346 0.8762 0.63 0.8811 0.6286 0.8748 0.6346 0.8762 0.6346 0.8762 0.6286 0.8748 0.6274 0.8606 0.6401 0.9198 0.6422 0.9285 0.6354 0.9277 0.6354 0.9277 0.6422 0.9285 0.6339 0.9365 0.6422 0.9285 0.6436 0.9394 0.6339 0.9365 0.6339 0.9365 0.6436 0.9394 0.634 0.9422 0.6436 0.9394 0.6414 0.9485 0.634 0.9422 0.634 0.9422 0.6414 0.9485 0.633 0.945 0.6414 0.9485 0.6369 0.9607 0.633 0.945 0.633 0.945 0.6369 0.9607 0.6285 0.9456 0.6369 0.9607 0.6266 0.9553 0.6285 0.9456 0.6266 0.9553 0.6369 0.9607 0.6274 0.9686 0.6266 0.9553 0.6274 0.9686 0.621 0.9639 0.6266 0.9553 0.621 0.9639 0.6161 0.9504 0.6266 0.9553 0.6161 0.9504 0.6285 0.9456 0.6161 0.9504 0.6184 0.9422 0.6285 0.9456 0.6184 0.9422 0.6161 0.9504 0.6091 0.9471 0.6184 0.9422 0.6091 0.9471 0.6115 0.9398 0.6115 0.9398 0.6091 0.9471 0.6037 0.9371 0.6091 0.9471 0.6045 0.9446 0.6037 0.9371 0.6045 0.9446 0.597 0.9427 0.6037 0.9371 0.6037 0.9371 0.597 0.9427 0.5953 0.9382 0.5953 0.9382 0.597 0.9427 0.5904 0.9404 0.597 0.9427 0.5935 0.9458 0.5904 0.9404 0.5935 0.9458 0.597 0.9427 0.6045 0.9446 0.5935 0.9458 0.6045 0.9446 0.5979 0.9511 0.5979 0.9511 0.6045 0.9446 0.6043 0.9558 0.6045 0.9446 0.6091 0.9471 0.6043 0.9558 0.6043 0.9558 0.6091 0.9471 0.6111 0.9591 0.6091 0.9471 0.6161 0.9504 0.6111 0.9591 0.6111 0.9591 0.6161 0.9504 0.621 0.9639 0.5506 0.9927 0.5809 0.9484 0.5905 0.9855 0.5809 0.9484 0.5506 0.9927 0.5485 0.9535 0.5809 0.9484 0.5485 0.9535 0.5748 0.9128 0.5485 0.9535 0.5506 0.9927 0.5156 0.9552 0.5506 0.9927 0.5162 0.9971 0.5156 0.9552 0.5156 0.9552 0.5162 0.9971 0.5032 0.9973 0.5156 0.9552 0.5032 0.9973 0.5036 0.9545 0.5156 0.9552 0.5036 0.9545 0.5141 0.9193 0.5156 0.9552 0.5141 0.9193 0.5485 0.9535 0.5141 0.9193 0.5443 0.9166 0.5485 0.9535 0.5485 0.9535 0.5443 0.9166 0.5748 0.9128 0.5748 0.9128 0.5443 0.9166 0.5427 0.8759 0.5748 0.9128 0.5427 0.8759 0.5697 0.8759 0.5697 0.8759 0.5427 0.8759 0.5643 0.8331 0.5643 0.8331 0.5427 0.8759 0.5475 0.8295 0.5643 0.8331 0.5475 0.8295 0.5473 0.8227 0.5643 0.8331 0.5473 0.8227 0.5671 0.8253 0.5473 0.8227 0.5475 0.8295 0.5295 0.827 0.5475 0.8295 0.5319 0.833 0.5295 0.827 0.5319 0.833 0.5475 0.8295 0.5427 0.8759 0.5319 0.833 0.5427 0.8759 0.5165 0.8424 0.5319 0.833 0.5165 0.8424 0.5295 0.827 0.5165 0.8424 0.5107 0.8328 0.5295 0.827 0.5107 0.8328 0.5165 0.8424 0.5095 0.8431 0.5165 0.8424 0.5136 0.88 0.5095 0.8431 0.5136 0.88 0.5165 0.8424 0.5427 0.8759 0.5136 0.88 0.5427 0.8759 0.5443 0.9166 0.5136 0.88 0.5443 0.9166 0.5141 0.9193 0.5136 0.88 0.5141 0.9193 0.5035 0.9184 0.5035 0.9184 0.5141 0.9193 0.5036 0.9545 0.5035 0.9184 0.5036 0.9545 0.4917 0.9538 0.4917 0.9538 0.5036 0.9545 0.5032 0.9973 0.4917 0.9538 0.5032 0.9973 0.4879 0.9975 0.4917 0.9538 0.4879 0.9975 0.4632 0.9533 0.4879 0.9975 0.457 0.9963 0.4632 0.9533 0.4917 0.9538 0.4632 0.9533 0.4901 0.9173 0.4917 0.9538 0.4901 0.9173 0.5035 0.9184 0.5035 0.9184 0.4901 0.9173 0.5052 0.8793 0.5035 0.9184 0.5052 0.8793 0.5136 0.88 0.5136 0.88 0.5052 0.8793 0.5095 0.8431 0.5095 0.8431 0.5052 0.8793 0.488 0.8779 0.488 0.8779 0.5052 0.8793 0.4901 0.9173 0.5095 0.8431 0.488 0.8779 0.4901 0.8374 0.5095 0.8431 0.4901 0.8374 0.5107 0.8328 0.4901 0.8374 0.4919 0.8315 0.5107 0.8328 0.4919 0.8315 0.4901 0.8374 0.4728 0.8257 0.4901 0.8374 0.4711 0.8325 0.4728 0.8257 0.4728 0.8257 0.4711 0.8325 0.4541 0.8288 0.4711 0.8325 0.4901 0.8374 0.4624 0.8782 0.4901 0.8374 0.488 0.8779 0.4624 0.8782 0.4624 0.8782 0.488 0.8779 0.4653 0.9162 0.488 0.8779 0.4901 0.9173 0.4653 0.9162 0.4653 0.9162 0.4901 0.9173 0.4632 0.9533 0.4653 0.9162 0.4632 0.9533 0.4368 0.9152 0.4653 0.9162 0.4368 0.9152 0.4624 0.8782 0.4632 0.9533 0.4321 0.9522 0.4368 0.9152 0.4321 0.9522 0.4632 0.9533 0.457 0.9963 0.4321 0.9522 0.457 0.9963 0.4279 0.9923 0.4321 0.9522 0.4279 0.9923 0.4033 0.9506 0.4279 0.9923 0.3976 0.9883 0.4033 0.9506 0.4321 0.9522 0.4033 0.9506 0.4107 0.9116 0.4321 0.9522 0.4107 0.9116 0.4368 0.9152 0.4368 0.9152 0.4107 0.9116 0.4375 0.8807 0.4368 0.9152 0.4375 0.8807 0.4624 0.8782 0.4624 0.8782 0.4375 0.8807 0.437 0.8431 0.4624 0.8782 0.437 0.8431 0.4565 0.8355 0.4624 0.8782 0.4565 0.8355 0.4711 0.8325 0.4711 0.8325 0.4565 0.8355 0.4541 0.8288 0.4541 0.8288 0.4565 0.8355 0.4393 0.8355 0.4565 0.8355 0.437 0.8431 0.4393 0.8355 0.4393 0.8355 0.437 0.8431 0.4209 0.8331 0.437 0.8431 0.4178 0.8425 0.4209 0.8331 0.4209 0.8331 0.4178 0.8425 0.4038 0.832 0.4178 0.8425 0.437 0.8431 0.4158 0.8778 0.437 0.8431 0.4375 0.8807 0.4158 0.8778 0.4158 0.8778 0.4375 0.8807 0.4107 0.9116 0.4158 0.8778 0.4107 0.9116 0.4042 0.8765 0.4107 0.9116 0.3998 0.911 0.4042 0.8765 0.3998 0.911 0.4107 0.9116 0.4033 0.9506 0.3998 0.911 0.4033 0.9506 0.3937 0.9492 0.3937 0.9492 0.4033 0.9506 0.3976 0.9883 0.3937 0.9492 0.3976 0.9883 0.387 0.9882 0.3937 0.9492 0.387 0.9882 0.3715 0.9453 0.3937 0.9492 0.3715 0.9453 0.3998 0.911 0.387 0.9882 0.3628 0.9824 0.3715 0.9453 0.3715 0.9453 0.3628 0.9824 0.3316 0.9737 0.3715 0.9453 0.3316 0.9737 0.343 0.9373 0.3715 0.9453 0.343 0.9373 0.3575 0.9046 0.3715 0.9453 0.3575 0.9046 0.3815 0.9093 0.3715 0.9453 0.3815 0.9093 0.3998 0.911 0.3998 0.911 0.3815 0.9093 0.4042 0.8765 0.3815 0.9093 0.3872 0.8721 0.4042 0.8765 0.4042 0.8765 0.3872 0.8721 0.407 0.8404 0.4042 0.8765 0.407 0.8404 0.4158 0.8778 0.407 0.8404 0.4178 0.8425 0.4158 0.8778 0.4178 0.8425 0.407 0.8404 0.4038 0.832 0.4038 0.832 0.407 0.8404 0.3837 0.8355 0.4038 0.832 0.3837 0.8355 0.3852 0.8292 0.3837 0.8355 0.407 0.8404 0.3872 0.8721 0.3837 0.8355 0.3872 0.8721 0.3661 0.8685 0.3661 0.8685 0.3872 0.8721 0.3815 0.9093 0.3661 0.8685 0.3815 0.9093 0.3575 0.9046 0.3661 0.8685 0.3597 0.8252 0.3837 0.8355 0.3837 0.8355 0.3597 0.8252 0.3852 0.8292 0.3597 0.8252 0.3649 0.819 0.3852 0.8292 0.3713 0.3058 0.3511 0.2994 0.3581 0.2834 0.3713 0.3058 0.3581 0.2834 0.3936 0.2829 0.3936 0.2829 0.3581 0.2834 0.3657 0.2603 0.3713 0.3058 0.3936 0.2829 0.4009 0.3005 0.3713 0.3058 0.4009 0.3005 0.3864 0.3181 0.3864 0.3181 0.4009 0.3005 0.3925 0.3247 0.4009 0.3005 0.4105 0.3122 0.3925 0.3247 0.4105 0.3122 0.4009 0.3005 0.4226 0.3022 0.4009 0.3005 0.4196 0.2898 0.4226 0.3022 0.4196 0.2898 0.4009 0.3005 0.3936 0.2829 0.4226 0.3022 0.4196 0.2898 0.4349 0.3053 0.3936 0.2829 0.4173 0.2706 0.4196 0.2898 0.4173 0.2706 0.3936 0.2829 0.3955 0.2608 0.3955 0.2608 0.3936 0.2829 0.3657 0.2603 0.3955 0.2608 0.3657 0.2603 0.3828 0.2273 0.3955 0.2608 0.3828 0.2273 0.4016 0.2381 0.3955 0.2608 0.4016 0.2381 0.4173 0.2706 0.4016 0.2381 0.3828 0.2273 0.4011 0.2057999 0.4016 0.2381 0.4011 0.2057999 0.4092 0.2196 0.4092 0.2196 0.4011 0.2057999 0.4229 0.1969 0.4016 0.2381 0.4092 0.2196 0.4204 0.2312 0.4016 0.2381 0.4204 0.2312 0.4181 0.2467 0.4016 0.2381 0.4181 0.2467 0.4173 0.2706 0.4173 0.2706 0.4181 0.2467 0.45 0.2522 0.45 0.2522 0.4181 0.2467 0.4204 0.2312 0.4173 0.2706 0.45 0.2522 0.448 0.2746 0.4173 0.2706 0.448 0.2746 0.4196 0.2898 0.448 0.2746 0.4431 0.2913 0.4196 0.2898 0.4196 0.2898 0.4431 0.2913 0.4349 0.3053 0.4349 0.3053 0.4431 0.2913 0.458 0.3011 0.4349 0.3053 0.458 0.3011 0.4464 0.3163 0.4464 0.3163 0.458 0.3011 0.4597 0.3242 0.458 0.3011 0.4703 0.3159 0.4597 0.3242 0.4597 0.3242 0.4703 0.3159 0.4692 0.3399 0.4703 0.3159 0.458 0.3011 0.4891 0.3071 0.458 0.3011 0.478 0.277 0.4891 0.3071 0.478 0.277 0.458 0.3011 0.4431 0.2913 0.478 0.277 0.4431 0.2913 0.448 0.2746 0.478 0.277 0.448 0.2746 0.4704 0.2502 0.448 0.2746 0.45 0.2522 0.4704 0.2502 0.4704 0.2502 0.45 0.2522 0.4591 0.2264 0.45 0.2522 0.4479 0.2329 0.4591 0.2264 0.4479 0.2329 0.45 0.2522 0.4204 0.2312 0.4479 0.2329 0.4204 0.2312 0.4377 0.2157 0.4204 0.2312 0.4263 0.2158 0.4377 0.2157 0.4263 0.2158 0.4204 0.2312 0.4092 0.2196 0.4377 0.2157 0.4263 0.2158 0.4244 0.2079 0.4092 0.2196 0.4244 0.2079 0.4263 0.2158 0.4244 0.2079 0.4092 0.2196 0.4229 0.1969 0.4244 0.2079 0.4229 0.1969 0.4411 0.2115 0.4229 0.1969 0.4463 0.1996999 0.4411 0.2115 0.4244 0.2079 0.4411 0.2115 0.4377 0.2157 0.4377 0.2157 0.4411 0.2115 0.4479 0.2329 0.4411 0.2115 0.4591 0.2264 0.4479 0.2329 0.4591 0.2264 0.4411 0.2115 0.4463 0.1996999 0.4591 0.2264 0.4463 0.1996999 0.4712 0.2158 0.4591 0.2264 0.4712 0.2158 0.4704 0.2502 0.4712 0.2158 0.4888 0.2418 0.4704 0.2502 0.4704 0.2502 0.4888 0.2418 0.478 0.277 0.4888 0.2418 0.4989 0.2694 0.478 0.277 0.478 0.277 0.4989 0.2694 0.505 0.29 0.478 0.277 0.505 0.29 0.4891 0.3071 0.505 0.29 0.5099 0.3051 0.4891 0.3071 0.4891 0.3071 0.5099 0.3051 0.4982 0.3316 0.5099 0.3051 0.5201 0.3172 0.4982 0.3316 0.4891 0.3071 0.4982 0.3316 0.4823 0.3368 0.4891 0.3071 0.4823 0.3368 0.4703 0.3159 0.4703 0.3159 0.4823 0.3368 0.4692 0.3399 0.4692 0.3399 0.4823 0.3368 0.4846 0.358 0.4692 0.3399 0.4846 0.358 0.4704 0.3597 0.4846 0.358 0.4823 0.3368 0.4982 0.3316 0.4846 0.358 0.4982 0.3316 0.5044 0.3542 0.5044 0.3542 0.4982 0.3316 0.5201 0.3172 0.5044 0.3542 0.5201 0.3172 0.5285 0.3427 0.5044 0.3542 0.5285 0.3427 0.5079 0.3724 0.5044 0.3542 0.5079 0.3724 0.4846 0.358 0.5285 0.3427 0.5339 0.366 0.5079 0.3724 0.5079 0.3724 0.5339 0.366 0.5365 0.3856 0.5079 0.3724 0.5365 0.3856 0.5105 0.39 0.5105 0.39 0.5365 0.3856 0.5374 0.4023 0.5079 0.3724 0.5105 0.39 0.4878 0.3769 0.5079 0.3724 0.4878 0.3769 0.4846 0.358 0.4846 0.358 0.4878 0.3769 0.4704 0.3597 0.4878 0.3769 0.4712 0.3783 0.4704 0.3597 0.4712 0.3783 0.4878 0.3769 0.4805 0.3945 0.4878 0.3769 0.4919 0.393 0.4805 0.3945 0.4919 0.393 0.4878 0.3769 0.5105 0.39 0.4805 0.3945 0.4919 0.393 0.4854 0.4115 0.4919 0.393 0.5105 0.39 0.5099 0.4102 0.5099 0.4102 0.5105 0.39 0.5374 0.4023 0.5099 0.4102 0.5374 0.4023 0.5374 0.4197 0.5099 0.4102 0.5374 0.4197 0.5321 0.4327 0.5099 0.4102 0.5321 0.4327 0.511 0.4365 0.5099 0.4102 0.511 0.4365 0.4921 0.4117 0.5099 0.4102 0.4921 0.4117 0.4919 0.393 0.4919 0.393 0.4921 0.4117 0.4854 0.4115 0.4854 0.4115 0.4921 0.4117 0.4817 0.4308 0.4921 0.4117 0.4909 0.4333 0.4817 0.4308 0.4909 0.4333 0.4921 0.4117 0.511 0.4365 0.2206 0.2222999 0.2178 0.2077 0.2283 0.1966 0.2206 0.2222999 0.2283 0.1966 0.236 0.2355 0.236 0.2355 0.2283 0.1966 0.2481 0.1909 0.236 0.2355 0.2481 0.1909 0.2577 0.2436 0.2577 0.2436 0.2481 0.1909 0.2774 0.1931 0.2577 0.2436 0.2774 0.1931 0.2808 0.2448 0.2808 0.2448 0.2774 0.1931 0.2972 0.196 0.2808 0.2448 0.2972 0.196 0.2977 0.2434 0.2977 0.2434 0.2972 0.196 0.3101 0.2425 0.2972 0.196 0.3113 0.1963 0.3101 0.2425 0.3101 0.2425 0.3113 0.1963 0.3218 0.2409999 0.3113 0.1963 0.3223 0.1967 0.3218 0.2409999 0.3218 0.2409999 0.3223 0.1967 0.3412 0.2353 0.3223 0.1967 0.3355 0.1995 0.3412 0.2353 0.3412 0.2353 0.3355 0.1995 0.3499 0.2201 0.3355 0.1995 0.3458 0.2063 0.3499 0.2201 0.9228 0.7821 0.8888 0.7933 0.8886 0.7658 0.9228 0.7821 0.8886 0.7658 0.9239 0.7615 0.9228 0.7821 0.9239 0.7615 0.956 0.775 0.9239 0.7615 0.8886 0.7658 0.8874 0.7301 0.9239 0.7615 0.8874 0.7301 0.9213 0.7301 0.9239 0.7615 0.9213 0.7301 0.9485 0.7301 0.9239 0.7615 0.9485 0.7301 0.9546 0.7571 0.9239 0.7615 0.9546 0.7571 0.956 0.775 0.956 0.775 0.9546 0.7571 0.9808 0.7724 0.9546 0.7571 0.9821 0.754 0.9808 0.7724 0.9821 0.754 0.9546 0.7571 0.9833 0.7301 0.9546 0.7571 0.9485 0.7301 0.9833 0.7301 0.8796 0.7949 0.8686 0.7981 0.8682 0.7663 0.8796 0.7949 0.8682 0.7663 0.8781 0.7655 0.8781 0.7655 0.8682 0.7663 0.8651 0.7301 0.8781 0.7655 0.8651 0.7301 0.8771 0.7301 0.8663 0.7981 0.8589 0.8008 0.8607 0.7661 0.8663 0.7981 0.8607 0.7661 0.866 0.7663 0.866 0.7663 0.8607 0.7661 0.8577 0.7301 0.866 0.7663 0.8577 0.7301 0.8628 0.7301 0.8865 0.7933 0.8818 0.7949 0.8803 0.7655 0.8865 0.7933 0.8803 0.7655 0.8864 0.7658 0.8864 0.7658 0.8803 0.7655 0.8793 0.7301 0.8864 0.7658 0.8793 0.7301 0.8851 0.7301 0.8126 0.8149 0.8057 0.8154 0.8043 0.7679 0.8126 0.8149 0.8043 0.7679 0.8094 0.7675 0.8094 0.7675 0.8043 0.7679 0.8105 0.7323 0.8094 0.7675 0.8105 0.7323 0.8151 0.7301 0.6246 0.7658 0.6242 0.7933 0.5903 0.7821 0.6246 0.7658 0.5903 0.7821 0.5892 0.7615 0.6246 0.7658 0.5892 0.7615 0.6253 0.7301 0.5892 0.7615 0.5903 0.7821 0.557 0.775 0.6253 0.7301 0.5892 0.7615 0.5917 0.7301 0.5917 0.7301 0.5892 0.7615 0.5645 0.7301 0.5892 0.7615 0.5585 0.7571 0.5645 0.7301 0.5585 0.7571 0.5892 0.7615 0.557 0.775 0.5585 0.7571 0.557 0.775 0.5323 0.7724 0.5585 0.7571 0.5323 0.7724 0.5309 0.754 0.5585 0.7571 0.5309 0.754 0.5297 0.7301 0.5585 0.7571 0.5297 0.7301 0.5645 0.7301 0.6449 0.7663 0.6427 0.7981 0.6322 0.7947 0.6449 0.7663 0.6322 0.7947 0.6345 0.7655 0.6449 0.7663 0.6345 0.7655 0.6456 0.7301 0.6345 0.7655 0.6341 0.7301 0.6456 0.7301 0.6523 0.7663 0.6505 0.801 0.644 0.7981 0.6523 0.7663 0.644 0.7981 0.6462 0.7663 0.6523 0.7663 0.6462 0.7663 0.6513 0.7301 0.6462 0.7663 0.6468 0.7301 0.6513 0.7301 0.633 0.7655 0.6307 0.7947 0.6262 0.7933 0.633 0.7655 0.6262 0.7933 0.6266 0.7658 0.633 0.7655 0.6266 0.7658 0.6326 0.7301 0.6266 0.7658 0.6273 0.7301 0.6326 0.7301 0.7035 0.7682 0.7034 0.8158 0.6969 0.8156 0.7035 0.7682 0.6969 0.8156 0.6982 0.7679 0.7035 0.7682 0.6982 0.7679 0.7007 0.7321 0.6982 0.7679 0.6951 0.7307 0.7007 0.7321 0.8424 0.7665 0.8427 0.7887 0.8304 0.7888 0.8424 0.7665 0.8304 0.7888 0.8298 0.7669 0.8424 0.7665 0.8298 0.7669 0.8292 0.7392 0.8424 0.7665 0.8292 0.7392 0.8414 0.7386 0.8301 0.7902 0.8429 0.7901 0.845 0.7923 0.8301 0.7902 0.845 0.7923 0.828 0.7927 0.8291 0.7895 0.8272 0.7923 0.8248 0.7669 0.8291 0.7895 0.8248 0.7669 0.8285 0.7671 0.8285 0.7671 0.8248 0.7669 0.8279 0.7387 0.8248 0.7669 0.8261 0.7362 0.8279 0.7387 0.8413 0.7375 0.8287 0.7377 0.8271 0.7355 0.8413 0.7375 0.8271 0.7355 0.8428 0.7347 0.8424 0.7375 0.844 0.7351 0.8468 0.7663 0.8424 0.7375 0.8468 0.7663 0.8437 0.7667 0.8437 0.7667 0.8468 0.7663 0.8437 0.7891 0.8468 0.7663 0.8458 0.7916 0.8437 0.7891 0.6732 0.7746 0.6601 0.7725 0.6621 0.7698 0.6732 0.7746 0.6621 0.7698 0.6728 0.7709 0.6732 0.7746 0.6728 0.7709 0.681 0.7709 0.6732 0.7746 0.681 0.7709 0.6832 0.7734 0.687 0.7655 0.6855 0.773 0.6816 0.7702 0.687 0.7655 0.6816 0.7702 0.6828 0.7656 0.687 0.7655 0.6828 0.7656 0.6819 0.7613 0.687 0.7655 0.6819 0.7613 0.6859 0.7581 0.6562 0.7648 0.6577 0.7581 0.6621 0.76 0.6562 0.7648 0.6621 0.76 0.6603 0.7648 0.6562 0.7648 0.6603 0.7648 0.6616 0.7693 0.6562 0.7648 0.6616 0.7693 0.6578 0.7713 0.6629 0.7596 0.6589 0.7574 0.6734 0.7552 0.6629 0.7596 0.6734 0.7552 0.6729 0.7592 0.6729 0.7592 0.6734 0.7552 0.6816 0.7603 0.6734 0.7552 0.6854 0.7574 0.6816 0.7603 0.8824 0.147 0.861 0.1895 0.8448 0.1297 0.861 0.1895 0.8336 0.1761 0.8448 0.1297 0.8336 0.1761 0.861 0.1895 0.8525 0.2048 0.8448 0.1297 0.8336 0.1761 0.7955 0.1637 0.8448 0.1297 0.7955 0.1637 0.8086 0.1179 0.8086 0.1179 0.7955 0.1637 0.7919 0.114 0.7955 0.1637 0.7851 0.1617 0.7919 0.114 0.7919 0.114 0.7851 0.1617 0.766 0.1597 0.7919 0.114 0.766 0.1597 0.7721 0.112 0.7721 0.112 0.766 0.1597 0.7363 0.1119 0.766 0.1597 0.7314 0.1581 0.7363 0.1119 0.7363 0.1119 0.7314 0.1581 0.7025 0.1124 0.7314 0.1581 0.707 0.1623 0.7025 0.1124 0.7025 0.1124 0.707 0.1623 0.6678 0.1139 0.707 0.1623 0.6682 0.1632 0.6678 0.1139 0.6678 0.1139 0.6682 0.1632 0.654 0.1155 0.6682 0.1632 0.6493 0.1632 0.654 0.1155 0.654 0.1155 0.6493 0.1632 0.6109 0.162 0.654 0.1155 0.6109 0.162 0.6269 0.1128 0.6269 0.1128 0.6109 0.162 0.5935 0.1076 0.6109 0.162 0.581 0.1538 0.5935 0.1076 0.581 0.1538 0.6109 0.162 0.577 0.1693 0.6109 0.162 0.611 0.1837 0.577 0.1693 0.577 0.1693 0.611 0.1837 0.5815 0.1883 0.611 0.1837 0.6066 0.1973 0.5815 0.1883 0.5815 0.1883 0.6066 0.1973 0.585 0.2019 0.6066 0.1973 0.611 0.1837 0.6383 0.2 0.6383 0.2 0.611 0.1837 0.6444 0.1887 0.6383 0.2 0.6444 0.1887 0.6706 0.1881 0.6383 0.2 0.6706 0.1881 0.6743 0.2026 0.6743 0.2026 0.6706 0.1881 0.7049 0.1835 0.6383 0.2 0.6743 0.2026 0.6473 0.2319 0.6383 0.2 0.6473 0.2319 0.6299 0.2143999 0.6383 0.2 0.6299 0.2143999 0.6066 0.1973 0.6473 0.2319 0.6402 0.2388 0.6299 0.2143999 0.6402 0.2388 0.6473 0.2319 0.661 0.2337999 0.661 0.2337999 0.6473 0.2319 0.6743 0.2026 0.6402 0.2388 0.661 0.2337999 0.6678 0.2425 0.661 0.2337999 0.6743 0.2026 0.6826 0.215 0.6678 0.2425 0.661 0.2337999 0.6826 0.215 0.6743 0.2026 0.7024 0.1998 0.6826 0.215 0.7024 0.1998 0.6743 0.2026 0.7049 0.1835 0.7024 0.1998 0.7049 0.1835 0.7256 0.1919 0.7049 0.1835 0.725 0.1745 0.7256 0.1919 0.725 0.1745 0.7049 0.1835 0.707 0.1623 0.725 0.1745 0.707 0.1623 0.7314 0.1581 0.725 0.1745 0.7314 0.1581 0.7656 0.1771 0.7314 0.1581 0.766 0.1597 0.7656 0.1771 0.725 0.1745 0.7656 0.1771 0.7648 0.1924 0.725 0.1745 0.7648 0.1924 0.7256 0.1919 0.7256 0.1919 0.7648 0.1924 0.7572 0.2067 0.7256 0.1919 0.7572 0.2067 0.7292 0.2078 0.7256 0.1919 0.7292 0.2078 0.7024 0.1998 0.7292 0.2078 0.706 0.217 0.7024 0.1998 0.7024 0.1998 0.706 0.217 0.6856 0.2152 0.706 0.217 0.6853 0.2264 0.6856 0.2152 0.6853 0.2264 0.706 0.217 0.7007 0.2258999 0.6853 0.2264 0.7007 0.2258999 0.6832 0.2344 0.7007 0.2258999 0.706 0.217 0.7226 0.2217 0.706 0.217 0.7292 0.2078 0.7226 0.2217 0.7226 0.2217 0.7292 0.2078 0.7539 0.2208999 0.7292 0.2078 0.7572 0.2067 0.7539 0.2208999 0.7539 0.2208999 0.7572 0.2067 0.7767 0.2245 0.7572 0.2067 0.785 0.2129 0.7767 0.2245 0.785 0.2129 0.7572 0.2067 0.7648 0.1924 0.7767 0.2245 0.785 0.2129 0.7998 0.2296 0.7648 0.1924 0.7801 0.1876 0.785 0.2129 0.7801 0.1876 0.7648 0.1924 0.7656 0.1771 0.7801 0.1876 0.7656 0.1771 0.7837 0.1765 0.7837 0.1765 0.7656 0.1771 0.766 0.1597 0.7837 0.1765 0.766 0.1597 0.7851 0.1617 0.7837 0.1765 0.7851 0.1617 0.7955 0.1637 0.7837 0.1765 0.7955 0.1637 0.7925 0.1788 0.7837 0.1765 0.7925 0.1788 0.7899 0.1893 0.7837 0.1765 0.7899 0.1893 0.7801 0.1876 0.7801 0.1876 0.7899 0.1893 0.785 0.2129 0.785 0.2129 0.7899 0.1893 0.8117 0.2059 0.8117 0.2059 0.7899 0.1893 0.7925 0.1788 0.785 0.2129 0.8117 0.2059 0.8062 0.2203 0.785 0.2129 0.8062 0.2203 0.7998 0.2296 0.7998 0.2296 0.8062 0.2203 0.8325 0.2463999 0.8062 0.2203 0.8365 0.2375 0.8325 0.2463999 0.8365 0.2375 0.8062 0.2203 0.8117 0.2059 0.8365 0.2375 0.8117 0.2059 0.845 0.2240999 0.845 0.2240999 0.8117 0.2059 0.8525 0.2048 0.8117 0.2059 0.826 0.1906999 0.8525 0.2048 0.826 0.1906999 0.8117 0.2059 0.7925 0.1788 0.826 0.1906999 0.7925 0.1788 0.7955 0.1637 0.826 0.1906999 0.7955 0.1637 0.8336 0.1761 0.826 0.1906999 0.8336 0.1761 0.8525 0.2048 0.6206 0.1707 0.6203 0.1794 0.6119 0.1832 0.6206 0.1707 0.6119 0.1832 0.6119 0.1633 0.6367 0.1806 0.6217 0.1794 0.622 0.1707 0.6367 0.1806 0.622 0.1707 0.6372 0.172 0.6367 0.1806 0.6372 0.172 0.6503 0.1721 0.6367 0.1806 0.6503 0.1721 0.6504 0.1817 0.6504 0.1817 0.6503 0.1721 0.6749 0.1705999 0.6504 0.1817 0.6749 0.1705999 0.6746 0.1815 0.6746 0.1815 0.6749 0.1705999 0.6972 0.1703 0.6746 0.1815 0.6972 0.1703 0.6975 0.179 0.7041 0.1822 0.6988 0.179 0.6986 0.1703 0.7041 0.1822 0.6986 0.1703 0.7058 0.1636 0.645 0.1878 0.6119 0.1832 0.6203 0.1805 0.645 0.1878 0.6203 0.1805 0.6367 0.1817 0.645 0.1878 0.6367 0.1817 0.6504 0.1827999 0.645 0.1878 0.6504 0.1827999 0.6705 0.1869 0.6504 0.1827999 0.6746 0.1826 0.6705 0.1869 0.6705 0.1869 0.6746 0.1826 0.6988 0.1801 0.6705 0.1869 0.6988 0.1801 0.7036 0.183 0.6372 0.1708 0.6206 0.1694999 0.6119 0.1633 0.6372 0.1708 0.6119 0.1633 0.6489 0.1647 0.6372 0.1708 0.6489 0.1647 0.6503 0.1709 0.6503 0.1709 0.6489 0.1647 0.6677 0.1648 0.6503 0.1709 0.6677 0.1648 0.6749 0.1694 0.6749 0.1694 0.6677 0.1648 0.6986 0.1691 0.6677 0.1648 0.7051 0.1633999 0.6986 0.1691 0.8556 0.378 0.8573 0.3697 0.8749 0.3899 0.8573 0.3697 0.8556 0.378 0.8262 0.3732 0.8573 0.3697 0.8262 0.3732 0.8252 0.3653 0.8252 0.3653 0.8262 0.3732 0.7975 0.3714 0.8262 0.3732 0.7984 0.3782 0.7975 0.3714 0.7975 0.3714 0.7984 0.3782 0.7727 0.3822 0.7984 0.3782 0.7745 0.3899 0.7727 0.3822 0.7745 0.3899 0.7554 0.407 0.7727 0.3822 0.6235 0.2211 0.6257 0.229 0.605 0.2167 0.6235 0.2211 0.605 0.2167 0.6047 0.2082 0.6235 0.2211 0.6047 0.2082 0.6282 0.2168 0.6047 0.2082 0.605 0.2167 0.5837 0.2109 0.6282 0.2168 0.6047 0.2082 0.6066 0.1973 0.5837 0.2109 0.585 0.2019 0.6047 0.2082 0.6066 0.1973 0.6047 0.2082 0.585 0.2019 0.004699945 0.01179999 0.04549998 0.007699966 0.0115 0.05849999 0.04549998 0.007699966 0.04699999 0.05429995 0.0115 0.05849999 0.0115 0.05849999 0.04699999 0.05429995 0.01469999 0.07449996 0.04699999 0.05429995 0.04899996 0.07029998 0.01469999 0.07449996 0.04899996 0.07029998 0.04699999 0.05429995 0.08149999 0.0564 0.04699999 0.05429995 0.04549998 0.007699966 0.08149999 0.0564 0.04549998 0.007699966 0.08219999 0.008599996 0.08149999 0.0564 0.08149999 0.0564 0.08219999 0.008599996 0.09689998 0.009799957 0.08149999 0.0564 0.09689998 0.009799957 0.0916 0.05769997 0.0916 0.05769997 0.09689998 0.009799957 0.11 0.06049996 0.09689998 0.009799957 0.1141 0.01229995 0.11 0.06049996 0.11 0.06049996 0.1141 0.01229995 0.1467 0.01849997 0.11 0.06049996 0.1467 0.01849997 0.1431 0.06599998 0.1431 0.06599998 0.1467 0.01849997 0.1777 0.02359998 0.11 0.06049996 0.1431 0.06599998 0.11 0.07909995 0.11 0.06049996 0.11 0.07909995 0.09039998 0.07299995 0.11 0.06049996 0.09039998 0.07299995 0.0916 0.05769997 0.0916 0.05769997 0.09039998 0.07299995 0.08149999 0.0564 0.09039998 0.07299995 0.0798 0.0722 0.08149999 0.0564 0.08149999 0.0564 0.0798 0.0722 0.04899996 0.07029998 0.1431 0.06599998 0.1479 0.08439999 0.11 0.07909995 0.1479 0.08439999 0.1431 0.06599998 0.1667 0.06979995 0.1667 0.06979995 0.1431 0.06599998 0.1777 0.02359998 0.1479 0.08439999 0.1667 0.06979995 0.1665 0.09359997 0.1667 0.06979995 0.1777 0.02359998 0.1879 0.07569998 0.1665 0.09359997 0.1667 0.06979995 0.1879 0.07569998 0.1777 0.02359998 0.2097 0.02979999 0.1879 0.07569998 0.2097 0.02979999 0.2092 0.07909995 0.1879 0.07569998 0.2092 0.07909995 0.2097 0.02979999 0.2215 0.03169995 0.1879 0.07569998 0.2092 0.07909995 0.1906 0.1094 0.1879 0.07569998 0.1906 0.1094 0.1665 0.09359997 0.2092 0.07909995 0.2103 0.1165 0.1906 0.1094 0.2103 0.1165 0.2092 0.07909995 0.2225 0.08109998 0.2225 0.08109998 0.2092 0.07909995 0.2215 0.03169995 0.2103 0.1165 0.2225 0.08109998 0.2211 0.1177999 0.2225 0.08109998 0.2406 0.1111 0.2211 0.1177999 0.2406 0.1111 0.2225 0.08109998 0.258 0.07569998 0.258 0.07569998 0.2225 0.08109998 0.2215 0.03169995 0.258 0.07569998 0.2215 0.03169995 0.2470999 0.02809995 0.258 0.07569998 0.2470999 0.02809995 0.2794 0.02179998 0.258 0.07569998 0.2794 0.02179998 0.2924 0.06699997 0.258 0.07569998 0.2924 0.06699997 0.2667 0.097 0.258 0.07569998 0.2667 0.097 0.2406 0.1111 0.2924 0.06699997 0.2967 0.0819 0.2667 0.097 0.6196 0.03719997 0.6394 0.06879997 0.6017 0.08199995 0.6196 0.03719997 0.6017 0.08199995 0.583 0.04839998 0.6196 0.03719997 0.583 0.04839998 0.5835 0.01299995 0.583 0.04839998 0.6017 0.08199995 0.5687 0.09939998 0.5835 0.01299995 0.583 0.04839998 0.5653 0.01879996 0.5653 0.01879996 0.583 0.04839998 0.5421 0.02749997 0.583 0.04839998 0.556 0.06 0.5421 0.02749997 0.556 0.06 0.583 0.04839998 0.5687 0.09939998 0.5421 0.02749997 0.556 0.06 0.5232 0.03499996 0.556 0.06 0.5687 0.09939998 0.5324 0.07139998 0.5232 0.03499996 0.556 0.06 0.5324 0.07139998 0.5687 0.09939998 0.5432 0.1132 0.5324 0.07139998 0.5324 0.07139998 0.5432 0.1132 0.5094 0.07539999 0.5432 0.1132 0.5161 0.1225 0.5094 0.07539999 0.5324 0.07139998 0.5094 0.07539999 0.5074 0.04099994 0.5324 0.07139998 0.5074 0.04099994 0.5232 0.03499996 0.5074 0.04099994 0.5094 0.07539999 0.4895 0.04319995 0.5094 0.07539999 0.495 0.0769 0.4895 0.04319995 0.495 0.0769 0.5094 0.07539999 0.5161 0.1225 0.495 0.0769 0.5161 0.1225 0.5025 0.1256 0.495 0.0769 0.5025 0.1256 0.4825 0.1246 0.495 0.0769 0.4825 0.1246 0.4792 0.07749998 0.495 0.0769 0.4792 0.07749998 0.4895 0.04319995 0.4792 0.07749998 0.4706 0.0406 0.4895 0.04319995 0.4706 0.0406 0.4792 0.07749998 0.4529 0.07449996 0.4706 0.0406 0.4529 0.07449996 0.4546 0.03929996 0.4529 0.07449996 0.4792 0.07749998 0.4574 0.1227 0.4792 0.07749998 0.4825 0.1246 0.4574 0.1227 0.4529 0.07449996 0.4574 0.1227 0.428 0.118 0.4529 0.07449996 0.428 0.118 0.4281 0.07539999 0.4529 0.07449996 0.4281 0.07539999 0.4546 0.03929996 0.4281 0.07539999 0.4329 0.03929996 0.4546 0.03929996 0.4329 0.03929996 0.4281 0.07539999 0.4061 0.03819996 0.4281 0.07539999 0.3922 0.07019996 0.4061 0.03819996 0.4061 0.03819996 0.3922 0.07019996 0.3846 0.03799998 0.3922 0.07019996 0.4281 0.07539999 0.3892 0.1174 0.4281 0.07539999 0.428 0.118 0.3892 0.1174 0.3922 0.07019996 0.3892 0.1174 0.3617 0.06639999 0.3922 0.07019996 0.3617 0.06639999 0.3846 0.03799998 0.3617 0.06639999 0.3618 0.03479999 0.3846 0.03799998 0.3618 0.03479999 0.3617 0.06639999 0.3489 0.06509995 0.3618 0.03479999 0.3489 0.06509995 0.3298 0.02649998 0.3489 0.06509995 0.3157 0.05859994 0.3298 0.02649998 0.3298 0.02649998 0.3157 0.05859994 0.3046 0.01629996 0.3157 0.05859994 0.3489 0.06509995 0.3085 0.09529995 0.3489 0.06509995 0.3412 0.1106 0.3085 0.09529995 0.3412 0.1106 0.3489 0.06509995 0.3617 0.06639999 0.3412 0.1106 0.3617 0.06639999 0.3542 0.1139 0.3542 0.1139 0.3617 0.06639999 0.3892 0.1174 0.5698 0.3419 0.5372 0.3223 0.5583 0.2899 0.5698 0.3419 0.5583 0.2899 0.5848 0.3027 0.5698 0.3419 0.5848 0.3027 0.6079 0.3154 0.5698 0.3419 0.6079 0.3154 0.5949 0.3571 0.5949 0.3571 0.6079 0.3154 0.6306 0.3206 0.5949 0.3571 0.6306 0.3206 0.622 0.3679 0.622 0.3679 0.6306 0.3206 0.6449 0.3228 0.622 0.3679 0.6449 0.3228 0.6358 0.3715 0.6358 0.3715 0.6449 0.3228 0.6562 0.3709 0.6449 0.3228 0.6606 0.3236 0.6562 0.3709 0.6562 0.3709 0.6606 0.3236 0.6814 0.3689 0.6606 0.3236 0.6449 0.3228 0.6517 0.2889 0.6517 0.2889 0.6449 0.3228 0.6306 0.3206 0.6517 0.2889 0.6306 0.3206 0.6333 0.2848 0.6333 0.2848 0.6306 0.3206 0.6079 0.3154 0.6333 0.2848 0.6079 0.3154 0.6193 0.275 0.6193 0.275 0.6079 0.3154 0.5848 0.3027 0.6193 0.275 0.5848 0.3027 0.5979 0.2654 0.5979 0.2654 0.5848 0.3027 0.5583 0.2899 0.5979 0.2654 0.5583 0.2899 0.571 0.2543 0.5979 0.2654 0.571 0.2543 0.6032 0.2522 0.571 0.2543 0.5753 0.2409999 0.6032 0.2522 0.5979 0.2654 0.6032 0.2522 0.6235 0.2651 0.5979 0.2654 0.6235 0.2651 0.6193 0.275 0.6193 0.275 0.6235 0.2651 0.6349 0.2723 0.6193 0.275 0.6349 0.2723 0.6333 0.2848 0.6333 0.2848 0.6349 0.2723 0.6517 0.2889 0.6349 0.2723 0.654 0.2775 0.6517 0.2889 0.6517 0.2889 0.654 0.2775 0.6672 0.2858 0.6517 0.2889 0.6672 0.2858 0.6606 0.3236 0.6606 0.3236 0.6672 0.2858 0.6869 0.3204 0.6606 0.3236 0.6869 0.3204 0.6814 0.3689 0.6814 0.3689 0.6869 0.3204 0.7106 0.3641 0.6869 0.3204 0.7113 0.3209 0.7106 0.3641 0.7106 0.3641 0.7113 0.3209 0.7485 0.3638 0.7113 0.3209 0.6869 0.3204 0.6895 0.2813 0.6895 0.2813 0.6869 0.3204 0.6672 0.2858 0.6895 0.2813 0.6672 0.2858 0.6694 0.2716 0.6694 0.2716 0.6672 0.2858 0.654 0.2775 0.6694 0.2716 0.654 0.2775 0.6526 0.2702 0.6526 0.2702 0.654 0.2775 0.6355 0.2658 0.654 0.2775 0.6349 0.2723 0.6355 0.2658 0.6355 0.2658 0.6349 0.2723 0.6235 0.2651 0.6355 0.2658 0.6235 0.2651 0.6218 0.2563 0.6218 0.2563 0.6235 0.2651 0.6032 0.2522 0.6218 0.2563 0.6032 0.2522 0.5974 0.244 0.5974 0.244 0.6032 0.2522 0.5753 0.2409999 0.5974 0.244 0.5753 0.2409999 0.5743 0.2348 0.6526 0.2702 0.6696 0.266 0.6694 0.2716 0.6694 0.2716 0.6696 0.266 0.6904 0.266 0.6694 0.2716 0.6904 0.266 0.6895 0.2813 0.6696 0.266 0.6906 0.2609 0.6904 0.266 0.6895 0.2813 0.6904 0.266 0.7139 0.279 0.6895 0.2813 0.7139 0.279 0.7113 0.3209 0.7113 0.3209 0.7139 0.279 0.7471 0.316 0.7113 0.3209 0.7471 0.316 0.7485 0.3638 0.7485 0.3638 0.7471 0.316 0.7774 0.3135 0.7485 0.3638 0.7774 0.3135 0.7819 0.3621 0.7819 0.3621 0.7774 0.3135 0.7933 0.3602 0.7774 0.3135 0.7899 0.3137 0.7933 0.3602 0.7933 0.3602 0.7899 0.3137 0.8265 0.3495 0.7899 0.3137 0.824 0.3118 0.8265 0.3495 0.8265 0.3495 0.824 0.3118 0.8651 0.3394 0.824 0.3118 0.8612 0.3015 0.8651 0.3394 0.8612 0.3015 0.824 0.3118 0.8508 0.2672 0.824 0.3118 0.8185 0.2742 0.8508 0.2672 0.8508 0.2672 0.8185 0.2742 0.8463 0.2557 0.8185 0.2742 0.824 0.3118 0.7976 0.2772 0.824 0.3118 0.7899 0.3137 0.7976 0.2772 0.7976 0.2772 0.7899 0.3137 0.7774 0.3135 0.7976 0.2772 0.7774 0.3135 0.7761 0.2811 0.7761 0.2811 0.7774 0.3135 0.7471 0.316 0.7761 0.2811 0.7471 0.316 0.7567 0.2818 0.7567 0.2818 0.7471 0.316 0.7387 0.2806 0.7387 0.2806 0.7471 0.316 0.7139 0.279 0.7387 0.2806 0.7139 0.279 0.7149 0.2623 0.7149 0.2623 0.7139 0.279 0.6904 0.266 0.7149 0.2623 0.6904 0.266 0.6906 0.2609 0.7149 0.2623 0.6906 0.2609 0.7157 0.2577 0.7149 0.2623 0.7157 0.2577 0.7407 0.2638 0.7149 0.2623 0.7407 0.2638 0.7387 0.2806 0.7387 0.2806 0.7407 0.2638 0.7567 0.2818 0.7407 0.2638 0.7584 0.2666 0.7567 0.2818 0.7567 0.2818 0.7584 0.2666 0.7761 0.2811 0.7584 0.2666 0.7407 0.2638 0.75 0.2556 0.75 0.2556 0.7407 0.2638 0.7157 0.2577 0.7584 0.2666 0.75 0.2556 0.7765 0.2556 0.7584 0.2666 0.7765 0.2556 0.7753 0.2661 0.7584 0.2666 0.7753 0.2661 0.7761 0.2811 0.7761 0.2811 0.7753 0.2661 0.7961 0.2641 0.7761 0.2811 0.7961 0.2641 0.7976 0.2772 0.7961 0.2641 0.7753 0.2661 0.7765 0.2556 0.7961 0.2641 0.7765 0.2556 0.8032 0.2534 0.7961 0.2641 0.8032 0.2534 0.8151 0.261 0.7961 0.2641 0.8151 0.261 0.7976 0.2772 0.8151 0.261 0.8185 0.2742 0.7976 0.2772 0.8185 0.2742 0.8151 0.261 0.8463 0.2557 0.8463 0.2557 0.8151 0.261 0.8389 0.2551 0.8151 0.261 0.8032 0.2534 0.8389 0.2551 0.8254 0.3859 0.8383 0.4125 0.7888 0.4124 0.8254 0.3859 0.7888 0.4124 0.7976 0.3875 0.7866 0.8215 0.7673 0.8271 0.767 0.8104 0.7866 0.8215 0.767 0.8104 0.7849 0.8072 0.7866 0.8215 0.7849 0.8072 0.8026 0.8154 0.8026 0.8154 0.7849 0.8072 0.8013 0.7679 0.7849 0.8072 0.7858 0.7703 0.8013 0.7679 0.7585 0.8068 0.7572 0.8253 0.7539 0.8254 0.7585 0.8068 0.7539 0.8254 0.7539 0.8013 0.7585 0.8068 0.7539 0.8013 0.7759 0.8026 0.7539 0.8013 0.7539 0.8254 0.7493 0.8068 0.7539 0.8254 0.7506 0.8253 0.7493 0.8068 0.7539 0.8013 0.7493 0.8068 0.7318 0.8026 0.7539 0.8013 0.7318 0.8026 0.7359 0.7987 0.7359 0.7987 0.7318 0.8026 0.7301 0.7723 0.7359 0.7987 0.7301 0.7723 0.7343 0.7723 0.7343 0.7723 0.7301 0.7723 0.7343 0.7481 0.7301 0.7723 0.7302 0.744 0.7343 0.7481 0.7343 0.7481 0.7302 0.744 0.7539 0.7431 0.7343 0.7481 0.7539 0.7431 0.7539 0.7476 0.7539 0.7476 0.7539 0.7431 0.7735 0.7481 0.7539 0.7431 0.7776 0.744 0.7735 0.7481 0.7735 0.7481 0.7776 0.744 0.7777 0.7723 0.7735 0.7481 0.7777 0.7723 0.7735 0.7723 0.7735 0.7723 0.7777 0.7723 0.7719 0.7987 0.7777 0.7723 0.7759 0.8026 0.7719 0.7987 0.7719 0.7987 0.7759 0.8026 0.7539 0.8013 0.7828 0.8055 0.7658 0.8089 0.7612 0.8074 0.7828 0.8055 0.7612 0.8074 0.7765 0.8038 0.765 0.8105 0.765 0.8252 0.7586 0.8251 0.765 0.8105 0.7586 0.8251 0.7597 0.8078 0.7539 0.795 0.7667 0.795 0.7713 0.7981 0.7539 0.795 0.7713 0.7981 0.7539 0.7994 0.7539 0.795 0.7539 0.7994 0.7365 0.7981 0.7539 0.795 0.7365 0.7981 0.7411 0.795 0.7833 0.804 0.7775 0.8028 0.779 0.7723 0.7833 0.804 0.779 0.7723 0.7834 0.7723 0.7834 0.7723 0.779 0.7723 0.7788 0.7431 0.7834 0.7723 0.7788 0.7431 0.7825 0.7395 0.7724 0.7723 0.7712 0.7966 0.767 0.7938 0.7724 0.7723 0.767 0.7938 0.768 0.7723 0.7724 0.7723 0.768 0.7723 0.7685 0.7551 0.7724 0.7723 0.7685 0.7551 0.7727 0.7498 0.7415 0.8104 0.7411 0.8271 0.7218 0.8215 0.7415 0.8104 0.7218 0.8215 0.7235 0.8072 0.7235 0.8072 0.7218 0.8215 0.7058 0.8154 0.7235 0.8072 0.7058 0.8154 0.7068 0.7679 0.7235 0.8072 0.7068 0.7679 0.7223 0.7703 0.725 0.8055 0.7313 0.8038 0.7465 0.8074 0.725 0.8055 0.7465 0.8074 0.742 0.8089 0.7428 0.8105 0.7481 0.8078 0.7491 0.8251 0.7428 0.8105 0.7491 0.8251 0.7428 0.8252 0.7288 0.7723 0.7303 0.8028 0.7245 0.804 0.7288 0.7723 0.7245 0.804 0.7244 0.7723 0.7288 0.7723 0.7244 0.7723 0.729 0.7431 0.7244 0.7723 0.7253 0.7395 0.729 0.7431 0.7408 0.7938 0.7366 0.7966 0.7354 0.7723 0.7408 0.7938 0.7354 0.7723 0.7398 0.7723 0.7398 0.7723 0.7354 0.7723 0.7393 0.7551 0.7354 0.7723 0.7351 0.7498 0.7393 0.7551 1.1905 0.1654 1.1828 0.1654 1.1762 0.1817 1.1905 0.1654 1.1762 0.1817 1.1854 0.1869 1.1854 0.1869 1.1762 0.1817 1.1761 0.2186 1.1762 0.1817 1.1684 0.2124 1.1761 0.2186 1.0092 0.4213 1.01 0.433 1.0372 0.4268 1.0092 0.4213 1.0372 0.4268 1.0321 0.4217 1.0321 0.4217 1.0372 0.4268 1.0343 0.4216 1.0889 0.3469 1.0714 0.3484 1.0748 0.3653 1.0889 0.3469 1.0748 0.3653 1.0927 0.3633 1.0927 0.3633 1.0748 0.3653 1.0774 0.3809 1.0927 0.3633 1.0774 0.3809 1.095 0.3791 1.095 0.3791 1.0774 0.3809 1.0791 0.3948 1.095 0.3791 1.0791 0.3948 1.0951 0.3944 1.0951 0.3944 1.0791 0.3948 1.0776 0.41 1.0951 0.3944 1.0776 0.41 1.0954 0.4107 1.0954 0.4107 1.0776 0.41 1.0754 0.4245 1.0954 0.4107 1.0754 0.4245 1.093 0.426 1.093 0.426 1.0754 0.4245 1.0724 0.4397 1.093 0.426 1.0724 0.4397 1.0904 0.4416 1.0904 0.4416 1.0724 0.4397 1.0703 0.4502 1.0904 0.4416 1.0703 0.4502 1.0877 0.4526 1.0877 0.4526 1.0703 0.4502 1.0685 0.4593 1.0877 0.4526 1.0685 0.4593 1.0859 0.4622 1.0691 0.3469 1.0673 0.3452 1.0719 0.3715 1.0691 0.3469 1.0719 0.3715 1.0728 0.3721 1.0728 0.3721 1.0719 0.3715 1.0754 0.3942 1.0728 0.3721 1.0754 0.3942 1.0764 0.3946 1.0764 0.3946 1.0754 0.3942 1.0731 0.4099 1.0764 0.3946 1.0731 0.4099 1.0747 0.4101 1.0747 0.4101 1.0731 0.4099 1.0686 0.4326 1.0747 0.4101 1.0686 0.4326 1.0702 0.4325 1.0702 0.4325 1.0686 0.4326 1.0646 0.4607 1.0702 0.4325 1.0646 0.4607 1.0659 0.4602 1.0903 0.3437 1.0899 0.3455 1.0975 0.3704 1.0903 0.3437 1.0975 0.3704 1.0987 0.3685 1.0987 0.3685 1.0975 0.3704 1.0991 0.3939 1.0987 0.3685 1.0991 0.3939 1.1008 0.3932 1.1008 0.3932 1.0991 0.3939 1.0988 0.4111 1.1008 0.3932 1.0988 0.4111 1.1005 0.4111 1.1005 0.4111 1.0988 0.4111 1.0959 0.4349 1.1005 0.4111 1.0959 0.4349 1.0972 0.436 1.0972 0.436 1.0959 0.4349 1.087 0.4636 1.0972 0.436 1.087 0.4636 1.0873 0.4651 1.0694 0.3464 1.0894 0.3452 1.0897 0.3435 1.0694 0.3464 1.0897 0.3435 1.0675 0.3449 1.0867 0.4637 1.0663 0.4606 1.0648 0.461 1.0867 0.4637 1.0648 0.461 1.087 0.4651 1.0708 0.3483 1.0694 0.3471 1.0733 0.3721 1.0708 0.3483 1.0733 0.3721 1.0743 0.3651 1.0733 0.3721 1.0771 0.3808 1.0743 0.3651 1.0771 0.3808 1.0733 0.3721 1.0769 0.3947 1.0771 0.3808 1.0769 0.3947 1.0789 0.3948 1.0789 0.3948 1.0769 0.3947 1.075 0.4101 1.0789 0.3948 1.075 0.4101 1.0773 0.4101 1.0773 0.4101 1.075 0.4101 1.0708 0.4327 1.0773 0.4101 1.0708 0.4327 1.0749 0.4246 1.0708 0.4327 1.0717 0.4398 1.0749 0.4246 1.0717 0.4398 1.0708 0.4327 1.0664 0.46 1.0717 0.4398 1.0664 0.46 1.0696 0.4504 1.0664 0.46 1.0677 0.4591 1.0696 0.4504 1.0891 0.3456 1.0696 0.3467 1.0711 0.3479 1.0891 0.3456 1.0711 0.3479 1.0889 0.3465 1.0896 0.3459 1.0894 0.3469 1.0934 0.3631 1.0896 0.3459 1.0934 0.3631 1.0974 0.3705 1.0974 0.3705 1.0934 0.3631 1.0959 0.379 1.0974 0.3705 1.0959 0.379 1.096 0.3943 1.0974 0.3705 1.096 0.3943 1.0986 0.394 1.0986 0.394 1.096 0.3943 1.0963 0.4107 1.0986 0.394 1.0963 0.4107 1.0985 0.4111 1.0985 0.4111 1.0963 0.4107 1.0937 0.4261 1.0985 0.4111 1.0937 0.4261 1.0954 0.4347 1.0954 0.4347 1.0937 0.4261 1.0909 0.4417 1.0954 0.4347 1.0909 0.4417 1.0881 0.4528 1.0954 0.4347 1.0881 0.4528 1.0869 0.4634 1.0869 0.4634 1.0881 0.4528 1.0861 0.4623 1.0665 0.4603 1.0865 0.4635 1.0859 0.4625 1.0665 0.4603 1.0859 0.4625 1.0679 0.4597 1.0669 0.3449 1.0651 0.3438 1.0698 0.372 1.0669 0.3449 1.0698 0.372 1.0715 0.3716 1.0715 0.3716 1.0698 0.372 1.0718 0.3913 1.0715 0.3716 1.0718 0.3913 1.0748 0.3939 1.0748 0.3939 1.0718 0.3913 1.0698 0.4036 1.0748 0.3939 1.0698 0.4036 1.0728 0.4095 1.0728 0.4095 1.0698 0.4036 1.0657 0.4322 1.0728 0.4095 1.0657 0.4322 1.0681 0.4326 1.0681 0.4326 1.0657 0.4322 1.0625 0.461 1.0681 0.4326 1.0625 0.461 1.0642 0.4608 1.0671 0.3445 1.0901 0.3426 1.0911 0.3396 1.0671 0.3445 1.0911 0.3396 1.0651 0.3435 1.0874 0.4653 1.0874 0.4684 1.0992 0.437 1.0874 0.4653 1.0992 0.437 1.0975 0.4363 1.0975 0.4363 1.0992 0.437 1.1048 0.4095 1.0975 0.4363 1.1048 0.4095 1.1009 0.4111 1.1009 0.4111 1.1048 0.4095 1.1068 0.3864 1.1009 0.4111 1.1068 0.3864 1.1014 0.3929 1.1014 0.3929 1.1068 0.3864 1.1025 0.3661 1.1014 0.3929 1.1025 0.3661 1.0989 0.3685 1.0989 0.3685 1.1025 0.3661 1.0906 0.3434 1.0906 0.3434 1.1025 0.3661 1.0913 0.3404 1.0871 0.4653 1.0642 0.4612 1.0624 0.4613 1.0871 0.4653 1.0624 0.4613 1.087 0.4686 1.0382 0.3907 1.0111 0.3882 1.01 0.3981 1.0382 0.3907 1.01 0.3981 1.0351 0.3971 1.0382 0.3907 1.0351 0.3971 1.0369 0.3967 1.0103 0.4856 1.0103 0.4943 1.0368 0.4992 1.0103 0.4856 1.0368 0.4992 1.0411 0.49 1.0103 0.4856 1.0411 0.49 1.0103 0.4669 1.0411 0.49 1.0368 0.4992 1.0776 0.4935 1.0368 0.4992 1.0644 0.5026 1.0776 0.4935 1.0776 0.4935 1.0644 0.5026 1.0828 0.5237 1.0644 0.5026 1.0639 0.5484 1.0828 0.5237 1.0776 0.4935 1.0828 0.5237 1.1013 0.4913 1.0776 0.4935 1.1013 0.4913 1.0875 0.4691 1.0776 0.4935 1.0875 0.4691 1.0411 0.49 1.0875 0.4691 1.0435 0.471 1.0411 0.49 1.0411 0.49 1.0435 0.471 1.0103 0.4669 1.0103 0.4669 1.0435 0.471 1.0103 0.4525 1.0435 0.471 1.0396 0.4543 1.0103 0.4525 1.0396 0.4543 1.0435 0.471 1.062 0.4616 1.062 0.4616 1.0435 0.471 1.0875 0.4691 1.0396 0.4543 1.062 0.4616 1.0554 0.4461 1.0554 0.4461 1.062 0.4616 1.0631 0.4304 1.062 0.4616 1.0651 0.432 1.0631 0.4304 1.0651 0.432 1.0691 0.4036 1.0631 0.4304 1.1013 0.4913 1.0987 0.4653 1.0875 0.4691 1.0875 0.4691 1.0987 0.4653 1.0996 0.4373 1.0987 0.4653 1.1014 0.4379 1.0996 0.4373 1.0996 0.4373 1.1014 0.4379 1.1067 0.4142 1.0996 0.4373 1.1067 0.4142 1.1052 0.4098 1.1067 0.4142 1.1014 0.4379 1.1061 0.4386 1.1061 0.4386 1.1014 0.4379 1.0987 0.4653 1.1067 0.4142 1.1061 0.4386 1.1129 0.4159 1.0987 0.4653 1.1051 0.4638 1.1061 0.4386 1.1051 0.4638 1.0987 0.4653 1.1057 0.4896 1.0987 0.4653 1.1013 0.4913 1.1057 0.4896 1.1057 0.4896 1.1013 0.4913 1.1151 0.5192 1.1013 0.4913 1.1114 0.5231 1.1151 0.5192 1.1114 0.5231 1.1013 0.4913 1.0828 0.5237 1.1151 0.5192 1.1114 0.5231 1.131 0.5482 1.1114 0.5231 1.1253 0.5535 1.131 0.5482 1.131 0.5482 1.1253 0.5535 1.1444 0.5602 1.1253 0.5535 1.1114 0.5231 1.0841 0.5511 1.1114 0.5231 1.0828 0.5237 1.0841 0.5511 1.0841 0.5511 1.0828 0.5237 1.0639 0.5484 1.0841 0.5511 1.0639 0.5484 1.0852 0.5784 1.0841 0.5511 1.0852 0.5784 1.1126 0.5979 1.0841 0.5511 1.1126 0.5979 1.1253 0.5535 1.1253 0.5535 1.1126 0.5979 1.1388 0.5716 1.1253 0.5535 1.1388 0.5716 1.1444 0.5602 1.1444 0.5602 1.1388 0.5716 1.1669 0.5762 1.1388 0.5716 1.1654 0.5834 1.1669 0.5762 1.1654 0.5834 1.1388 0.5716 1.1333 0.6062 1.1333 0.6062 1.1388 0.5716 1.1126 0.5979 1.1654 0.5834 1.1333 0.6062 1.157 0.6203 1.157 0.6203 1.1333 0.6062 1.1549 0.6404 1.1333 0.6062 1.1339 0.6365 1.1549 0.6404 1.1339 0.6365 1.1333 0.6062 1.1126 0.5979 1.1339 0.6365 1.1126 0.5979 1.1129 0.637 1.1129 0.637 1.1126 0.5979 1.0857 0.6412 1.1126 0.5979 1.0837 0.6085 1.0857 0.6412 1.0837 0.6085 1.1126 0.5979 1.0852 0.5784 1.0837 0.6085 1.0852 0.5784 1.0639 0.5484 1.0837 0.6085 1.0639 0.5484 1.0651 0.5952 1.0837 0.6085 1.0651 0.5952 1.0442 0.6188 1.0837 0.6085 1.0442 0.6188 1.0857 0.6412 1.0442 0.6188 1.051 0.6504 1.0857 0.6412 1.051 0.6504 1.0442 0.6188 1.0103 0.6252 1.051 0.6504 1.0103 0.6252 1.0103 0.658 1.0103 0.6252 1.0442 0.6188 1.0376 0.6044 1.0376 0.6044 1.0442 0.6188 1.0651 0.5952 1.0103 0.6252 1.0376 0.6044 1.0103 0.6104 1.0103 0.4954 1.0103 0.5056 1.0364 0.5095 1.0103 0.4954 1.0364 0.5095 1.0368 0.5002 1.0368 0.5002 1.0364 0.5095 1.0637 0.5037 1.0364 0.5095 1.0581 0.5125 1.0637 0.5037 1.0637 0.5037 1.0581 0.5125 1.0629 0.5484 1.0581 0.5125 1.0569 0.5491 1.0629 0.5484 1.0629 0.5484 1.0569 0.5491 1.0641 0.594 1.0569 0.5491 1.0586 0.5873 1.0641 0.594 1.0641 0.594 1.0586 0.5873 1.0376 0.6033 1.0586 0.5873 1.0366 0.5935 1.0376 0.6033 1.0376 0.6033 1.0366 0.5935 1.0103 0.5985 1.0376 0.6033 1.0103 0.5985 1.0103 0.6093 1.0366 0.5924 1.0573 0.5862 1.0553 0.5848 1.0366 0.5924 1.0553 0.5848 1.0359 0.5878 1.0366 0.5924 1.0359 0.5878 1.0103 0.5974 1.0359 0.5878 1.0103 0.5916 1.0103 0.5974 1.0534 0.5496 1.0555 0.584 1.0575 0.5854 1.0534 0.5496 1.0575 0.5854 1.0557 0.5491 1.0534 0.5496 1.0557 0.5491 1.0547 0.5156 1.0557 0.5491 1.0568 0.5135 1.0547 0.5156 1.0358 0.5151 1.054 0.5154 1.0562 0.5133 1.0358 0.5151 1.0562 0.5133 1.0364 0.511 1.0358 0.5151 1.0364 0.511 1.0103 0.5071 1.0358 0.5151 1.0103 0.5071 1.0103 0.5122 1.0089 0.1583 1.0119 0.1547999 1.0089 0.1564 1.0119 0.1547999 1.0089 0.1583 1.0364 0.1583 1.0119 0.1547999 1.0364 0.1583 1.0336 0.1499 1.0119 0.1547999 1.0336 0.1499 1.0131 0.15 1.0364 0.1583 1.0483 0.1455 1.0336 0.1499 1.0483 0.1455 1.0364 0.1583 1.0672 0.1583 1.0483 0.1455 1.0672 0.1583 1.0662 0.1431 1.0483 0.1455 1.0662 0.1431 1.0508 0.1417 1.0662 0.1431 1.0672 0.1583 1.089 0.1493999 1.089 0.1493999 1.0672 0.1583 1.1039 0.1583 1.0662 0.1431 1.089 0.1493999 1.0866 0.1438 1.1039 0.1583 1.0996 0.1502 1.089 0.1493999 1.0996 0.1502 1.1039 0.1583 1.1044 0.1474 1.1044 0.1474 1.1039 0.1583 1.1425 0.1583 1.1044 0.1474 1.1425 0.1583 1.1372 0.1442 1.1372 0.1442 1.1425 0.1583 1.1668 0.1481 1.1668 0.1481 1.1425 0.1583 1.191 0.1583 1.1668 0.1481 1.191 0.1583 1.1905 0.1457 1.2016 0.1739 1.1921 0.1654 1.1877 0.1877 1.2016 0.1739 1.1877 0.1877 1.2006 0.1949999 1.2006 0.1949999 1.1877 0.1877 1.1771 0.2201 1.2006 0.1949999 1.1771 0.2201 1.192 0.2334 1.192 0.2334 1.1771 0.2201 1.1603 0.2387 1.1771 0.2201 1.1596 0.2315 1.1603 0.2387 1.192 0.2334 1.1603 0.2387 1.1902 0.2407 1.1603 0.2387 1.1596 0.2315 1.133 0.2569 1.9607 0.06939995 1.9916 0.06669998 1.9916 0.06 1.9607 0.06939995 1.9916 0.06 1.9595 0.06369996 1.9607 0.06939995 1.9595 0.06369996 1.9299 0.06679999 1.9607 0.06939995 1.9299 0.06679999 1.933 0.078 1.933 0.078 1.9299 0.06679999 1.9082 0.069 1.933 0.078 1.9082 0.069 1.9094 0.0805 1.9094 0.0805 1.9082 0.069 1.89 0.0787 1.9082 0.069 1.8889 0.06989997 1.89 0.0787 1.89 0.0787 1.8889 0.06989997 1.8718 0.06999999 1.864 0.05239999 1.8718 0.06739997 1.8889 0.06729996 1.864 0.05239999 1.8889 0.06729996 1.8855 0.04529994 1.864 0.05239999 1.8855 0.04529994 1.8649 0.0388 1.8855 0.04529994 1.8889 0.06729996 1.9084 0.04649996 1.8889 0.06729996 1.9082 0.06639999 1.9084 0.04649996 1.9084 0.04649996 1.9082 0.06639999 1.9298 0.04539996 1.9082 0.06639999 1.9299 0.0643 1.9298 0.04539996 1.9298 0.04539996 1.9299 0.0643 1.9587 0.04299998 1.9299 0.0643 1.9595 0.06109994 1.9587 0.04299998 1.9587 0.04299998 1.9595 0.06109994 1.9916 0.05739998 1.9587 0.04299998 1.9916 0.05739998 1.9916 0.03969997 1.9587 0.04299998 1.9916 0.03969997 1.9916 0.02249997 1.9587 0.04299998 1.9916 0.02249997 1.957 0.02249997 1.9587 0.04299998 1.957 0.02249997 1.9298 0.04539996 1.957 0.02249997 1.9296 0.02249997 1.9298 0.04539996 1.9298 0.04539996 1.9296 0.02249997 1.9084 0.04649996 1.9296 0.02249997 1.9073 0.02249997 1.9084 0.04649996 1.9084 0.04649996 1.9073 0.02249997 1.8855 0.04529994 1.9073 0.02249997 1.8853 0.02249997 1.8855 0.04529994 1.8855 0.04529994 1.8853 0.02249997 1.8649 0.0388 1.8853 0.02249997 1.8643 0.02249997 1.8649 0.0388 1.543 0.7096 1.5536 0.7062 1.543 0.6822 1.543 0.6822 1.5536 0.7062 1.5746 0.6739 1.5536 0.7062 1.5833 0.7016 1.5746 0.6739 1.543 0.6822 1.5746 0.6739 1.5693 0.6405 1.543 0.6822 1.5693 0.6405 1.543 0.6421 1.543 0.6421 1.5693 0.6405 1.543 0.6165 1.5693 0.6405 1.5666 0.6147 1.543 0.6165 1.543 0.6165 1.5666 0.6147 1.543 0.5964 1.5666 0.6147 1.5693 0.6405 1.5821 0.6367 1.5821 0.6367 1.5693 0.6405 1.5746 0.6739 1.5821 0.6367 1.5746 0.6739 1.603 0.6681 1.5746 0.6739 1.5833 0.7016 1.603 0.6681 1.603 0.6681 1.5833 0.7016 1.6187 0.6984 1.603 0.6681 1.6187 0.6984 1.6192 0.6823 1.6192 0.6823 1.6187 0.6984 1.6422 0.692 1.6187 0.6984 1.6421 0.6999 1.6422 0.692 1.6422 0.692 1.6421 0.6999 1.6587 0.6983 1.6421 0.6999 1.6592 0.7008 1.6587 0.6983 1.6587 0.6983 1.6592 0.7008 1.6833 0.7063 1.6587 0.6983 1.6833 0.7063 1.7005 0.7 1.7005 0.7 1.6833 0.7063 1.7136 0.7079 1.7005 0.7 1.7136 0.7079 1.711 0.6725 1.7005 0.7 1.711 0.6725 1.7018 0.6724 1.711 0.6725 1.7136 0.7079 1.7378 0.6795 1.7136 0.7079 1.7368 0.7096 1.7378 0.6795 1.7378 0.6795 1.7368 0.7096 1.762 0.6811 1.7368 0.7096 1.7603 0.7129 1.762 0.6811 1.762 0.6811 1.7603 0.7129 1.7852 0.6825 1.7603 0.7129 1.7859 0.7134 1.7852 0.6825 1.7852 0.6825 1.7859 0.7134 1.8226 0.7145 1.7852 0.6825 1.8226 0.7145 1.8226 0.6843 1.7852 0.6825 1.8226 0.6843 1.7843 0.6448 1.7852 0.6825 1.7843 0.6448 1.762 0.6811 1.8226 0.6843 1.8226 0.6451 1.7843 0.6448 1.762 0.6811 1.7843 0.6448 1.7603 0.6502 1.762 0.6811 1.7603 0.6502 1.7378 0.6795 1.7603 0.6502 1.7367 0.6576 1.7378 0.6795 1.7378 0.6795 1.7367 0.6576 1.711 0.6725 1.711 0.6725 1.7367 0.6576 1.7121 0.6467 1.711 0.6725 1.7121 0.6467 1.7018 0.6724 1.7121 0.6467 1.7022 0.6463 1.7018 0.6724 1.7022 0.6463 1.7121 0.6467 1.7044 0.6401 1.7044 0.6401 1.7121 0.6467 1.7263 0.6368 1.7263 0.6368 1.7121 0.6467 1.7367 0.6576 1.7263 0.6368 1.7367 0.6576 1.7438 0.6256 1.7367 0.6576 1.7603 0.6502 1.7438 0.6256 1.7438 0.6256 1.7603 0.6502 1.7687 0.6202 1.7603 0.6502 1.7843 0.6448 1.7687 0.6202 1.7843 0.6448 1.7916 0.6191 1.7687 0.6202 1.7916 0.6191 1.7843 0.6448 1.8226 0.6451 1.7916 0.6191 1.8226 0.6451 1.8226 0.6173 1.7916 0.6191 1.8226 0.6173 1.7987 0.5999 1.8226 0.6173 1.8226 0.5995 1.7987 0.5999 1.7916 0.6191 1.7987 0.5999 1.7859 0.6043 1.7916 0.6191 1.7859 0.6043 1.7687 0.6202 1.7687 0.6202 1.7859 0.6043 1.755 0.602 1.7687 0.6202 1.755 0.602 1.7438 0.6256 1.755 0.602 1.7341 0.61 1.7438 0.6256 1.7438 0.6256 1.7341 0.61 1.7263 0.6368 1.7341 0.61 1.7118 0.6184 1.7263 0.6368 1.7263 0.6368 1.7118 0.6184 1.7044 0.6401 1.7118 0.6184 1.6902 0.623 1.7044 0.6401 1.7044 0.6401 1.6902 0.623 1.6761 0.6286 1.7044 0.6401 1.6761 0.6286 1.6615 0.6383 1.7044 0.6401 1.6615 0.6383 1.7022 0.6463 1.6615 0.6383 1.6622 0.6448 1.7022 0.6463 1.6622 0.6448 1.6615 0.6383 1.6518 0.6463 1.6622 0.6448 1.6518 0.6463 1.6597 0.6716 1.6518 0.6463 1.6439 0.6744 1.6597 0.6716 1.6439 0.6744 1.6518 0.6463 1.6347 0.6656 1.6439 0.6744 1.6347 0.6656 1.6208 0.6723 1.6439 0.6744 1.6208 0.6723 1.62 0.6773 1.62 0.6773 1.6208 0.6723 1.6083 0.6661 1.6439 0.6744 1.62 0.6773 1.6431 0.6832 1.6439 0.6744 1.6431 0.6832 1.6597 0.6716 1.6597 0.6716 1.6431 0.6832 1.6587 0.6983 1.6431 0.6832 1.6422 0.692 1.6587 0.6983 1.6422 0.692 1.6431 0.6832 1.6192 0.6823 1.6431 0.6832 1.62 0.6773 1.6192 0.6823 1.6192 0.6823 1.62 0.6773 1.603 0.6681 1.62 0.6773 1.6057 0.6671 1.603 0.6681 1.6057 0.6671 1.62 0.6773 1.6083 0.6661 1.6057 0.6671 1.6083 0.6661 1.5924 0.6341 1.6057 0.6671 1.5924 0.6341 1.5872 0.6354 1.6057 0.6671 1.5872 0.6354 1.603 0.6681 1.5872 0.6354 1.5821 0.6367 1.603 0.6681 1.5821 0.6367 1.5872 0.6354 1.5714 0.6102 1.5821 0.6367 1.5714 0.6102 1.5666 0.6147 1.5714 0.6102 1.5872 0.6354 1.5762 0.6056 1.5872 0.6354 1.5924 0.6341 1.5762 0.6056 1.5714 0.6102 1.5762 0.6056 1.5591 0.5778 1.5591 0.5778 1.5762 0.6056 1.5701 0.5693 1.5591 0.5778 1.5701 0.5693 1.5721 0.5448 1.5591 0.5778 1.5721 0.5448 1.5551 0.547 1.5551 0.547 1.5721 0.5448 1.5649 0.5245 1.5649 0.5245 1.5721 0.5448 1.5684 0.5223 1.5551 0.547 1.5649 0.5245 1.551 0.519 1.5551 0.547 1.551 0.519 1.543 0.5466 1.5551 0.547 1.543 0.5466 1.5591 0.5778 1.551 0.519 1.543 0.516 1.543 0.5466 1.5591 0.5778 1.543 0.5466 1.543 0.5815 1.5591 0.5778 1.543 0.5815 1.5548 0.5982 1.5591 0.5778 1.5548 0.5982 1.5714 0.6102 1.5548 0.5982 1.5666 0.6147 1.5714 0.6102 1.5666 0.6147 1.5548 0.5982 1.543 0.5964 1.5548 0.5982 1.543 0.5815 1.543 0.5964 1.6998 0.6724 1.7001 0.6488 1.6639 0.6474 1.6998 0.6724 1.6639 0.6474 1.6617 0.6717 1.6998 0.6724 1.6617 0.6717 1.6985 0.6974 1.6617 0.6717 1.6608 0.6958 1.6985 0.6974 1.7859 0.6043 1.7803 0.5867 1.755 0.602 1.7803 0.5867 1.7859 0.6043 1.801 0.5846 1.7859 0.6043 1.7987 0.5999 1.801 0.5846 1.7803 0.5867 1.801 0.5846 1.796 0.5681 1.801 0.5846 1.7987 0.5999 1.8226 0.5995 1.801 0.5846 1.8226 0.5995 1.8226 0.5852 1.801 0.5846 1.8226 0.5852 1.8226 0.5601 1.801 0.5846 1.8226 0.5601 1.8153 0.5606 1.801 0.5846 1.8153 0.5606 1.796 0.5681 1.8153 0.5606 1.8075 0.5465 1.796 0.5681 1.9045 0.4785 1.9029 0.4463 1.863 0.452 1.9045 0.4785 1.863 0.452 1.8639 0.4877 1.9045 0.4785 1.8639 0.4877 1.9041 0.5033 1.8639 0.4877 1.863 0.452 1.8272 0.4591 1.9041 0.5033 1.8639 0.4877 1.8759 0.5111 1.9041 0.5033 1.8759 0.5111 1.9039 0.5071 1.8759 0.5111 1.8785 0.5152 1.9039 0.5071 1.8785 0.5152 1.8759 0.5111 1.8515 0.5209 1.8515 0.5209 1.8759 0.5111 1.8639 0.4877 1.8785 0.5152 1.8515 0.5209 1.8545 0.5267 1.8545 0.5267 1.8515 0.5209 1.8247 0.5398 1.8515 0.5209 1.8263 0.5296 1.8247 0.5398 1.8263 0.5296 1.8515 0.5209 1.8276 0.4995 1.8515 0.5209 1.8639 0.4877 1.8276 0.4995 1.8276 0.4995 1.8639 0.4877 1.8272 0.4591 1.8276 0.4995 1.8272 0.4591 1.8131 0.4599 1.8276 0.4995 1.8131 0.4599 1.8148 0.5009 1.8276 0.4995 1.8148 0.5009 1.8263 0.5296 1.8148 0.5009 1.8164 0.5321 1.8263 0.5296 1.8164 0.5321 1.8247 0.5398 1.8263 0.5296 1.8164 0.5321 1.8148 0.5009 1.777 0.5004 1.777 0.5004 1.8148 0.5009 1.8131 0.4599 1.777 0.5004 1.8131 0.4599 1.777 0.4595 1.777 0.5004 1.777 0.4595 1.7376 0.4583 1.777 0.5004 1.7376 0.4583 1.7365 0.5009 1.7365 0.5009 1.7376 0.4583 1.7079 0.462 1.7365 0.5009 1.7079 0.462 1.7073 0.5086 1.7073 0.5086 1.7079 0.462 1.6823 0.4638 1.7365 0.5009 1.7073 0.5086 1.7083 0.5373 1.6823 0.4638 1.6802 0.5141 1.7073 0.5086 1.7083 0.5373 1.7073 0.5086 1.6802 0.5141 1.6823 0.4638 1.6618 0.4657 1.6802 0.5141 1.6618 0.4657 1.6645 0.5151 1.6802 0.5141 1.6802 0.5141 1.6645 0.5151 1.6834 0.5521 1.6802 0.5141 1.6834 0.5521 1.7083 0.5373 1.7083 0.5373 1.6834 0.5521 1.7019 0.5761 1.7083 0.5373 1.7019 0.5761 1.7157 0.5633 1.7083 0.5373 1.7157 0.5633 1.7325 0.553 1.7083 0.5373 1.7325 0.553 1.7365 0.5009 1.7365 0.5009 1.7325 0.553 1.7565 0.5444 1.7365 0.5009 1.7565 0.5444 1.777 0.5004 1.7565 0.5444 1.7803 0.5391 1.777 0.5004 1.777 0.5004 1.7803 0.5391 1.8164 0.5321 1.8164 0.5321 1.7803 0.5391 1.8247 0.5398 1.7803 0.5391 1.7987 0.543 1.8247 0.5398 1.7987 0.543 1.7803 0.5391 1.7729 0.5489 1.7729 0.5489 1.7803 0.5391 1.7483 0.5517 1.7803 0.5391 1.7565 0.5444 1.7483 0.5517 1.7483 0.5517 1.7565 0.5444 1.7327 0.557 1.7565 0.5444 1.7325 0.553 1.7327 0.557 1.7327 0.557 1.7325 0.553 1.7157 0.5633 1.7327 0.557 1.7157 0.5633 1.7171 0.5672 1.7171 0.5672 1.7157 0.5633 1.7099 0.578 1.7157 0.5633 1.7019 0.5761 1.7099 0.578 1.7099 0.578 1.7019 0.5761 1.6889 0.5978 1.7019 0.5761 1.6845 0.5947 1.6889 0.5978 1.6845 0.5947 1.7019 0.5761 1.6834 0.5521 1.6889 0.5978 1.6845 0.5947 1.672 0.6008 1.6845 0.5947 1.6834 0.5521 1.6682 0.5562 1.6682 0.5562 1.6834 0.5521 1.6645 0.5151 1.6845 0.5947 1.6682 0.5562 1.672 0.6008 1.672 0.6008 1.6682 0.5562 1.6586 0.5922 1.6682 0.5562 1.6538 0.5542 1.6586 0.5922 1.6538 0.5542 1.6682 0.5562 1.6645 0.5151 1.6538 0.5542 1.6645 0.5151 1.6512 0.514 1.6512 0.514 1.6645 0.5151 1.6618 0.4657 1.6512 0.514 1.6618 0.4657 1.6473 0.4653 1.6512 0.514 1.6473 0.4653 1.6196 0.5036 1.6473 0.4653 1.6185 0.4625 1.6196 0.5036 1.6512 0.514 1.6196 0.5036 1.6152 0.5421 1.6512 0.514 1.6152 0.5421 1.6538 0.5542 1.6538 0.5542 1.6152 0.5421 1.6368 0.5637 1.6538 0.5542 1.6368 0.5637 1.6586 0.5922 1.6152 0.5421 1.6196 0.5036 1.5875 0.517 1.6196 0.5036 1.5872 0.4898 1.5875 0.517 1.5872 0.4898 1.6196 0.5036 1.6185 0.4625 1.5872 0.4898 1.6185 0.4625 1.5903 0.4567 1.5872 0.4898 1.5903 0.4567 1.5481 0.4804 1.5903 0.4567 1.5537 0.4487 1.5481 0.4804 1.5872 0.4898 1.5481 0.4804 1.5625 0.5057 1.5872 0.4898 1.5625 0.5057 1.5875 0.517 1.5625 0.5057 1.5481 0.4804 1.5422 0.503 1.5676 0.3959 1.5483 0.396 1.5506 0.4142 1.5676 0.3959 1.5506 0.4142 1.5681 0.4131 1.5676 0.3959 1.5681 0.4131 1.5856 0.3922 1.5681 0.4131 1.5506 0.4142 1.5669 0.4299 1.5856 0.3922 1.5681 0.4131 1.5841 0.4132 1.5669 0.4299 1.5841 0.4132 1.5681 0.4131 1.5856 0.3922 1.5841 0.4132 1.6069 0.3978 1.5841 0.4132 1.6042 0.416 1.6069 0.3978 1.6069 0.3978 1.6042 0.416 1.6234 0.4008 1.6042 0.416 1.628 0.4182 1.6234 0.4008 1.6234 0.4008 1.628 0.4182 1.6347 0.4026 1.628 0.4182 1.6042 0.416 1.6219 0.4355 1.6347 0.4026 1.628 0.4182 1.6544 0.4234 1.628 0.4182 1.6219 0.4355 1.649 0.4412 1.6544 0.4234 1.628 0.4182 1.649 0.4412 1.6544 0.4234 1.649 0.4412 1.6774 0.4325 1.649 0.4412 1.67 0.4496 1.6774 0.4325 1.6774 0.4325 1.67 0.4496 1.6838 0.4566 1.6774 0.4325 1.6838 0.4566 1.693 0.4393 1.6774 0.4325 1.693 0.4393 1.7037 0.4198 1.6774 0.4325 1.7037 0.4198 1.6828 0.4122 1.6828 0.4122 1.7037 0.4198 1.7148 0.4021 1.6828 0.4122 1.7148 0.4021 1.6897 0.3933 1.6828 0.4122 1.6897 0.3933 1.6588 0.4064 1.6828 0.4122 1.6588 0.4064 1.6774 0.4325 1.6588 0.4064 1.6544 0.4234 1.6774 0.4325 1.6544 0.4234 1.6588 0.4064 1.6347 0.4026 1.6347 0.4026 1.6588 0.4064 1.6568 0.3998 1.6568 0.3998 1.6588 0.4064 1.6746 0.3938 1.6746 0.3938 1.6588 0.4064 1.6897 0.3933 1.6042 0.416 1.6014 0.4315 1.6219 0.4355 1.6014 0.4315 1.6042 0.416 1.5841 0.4132 1.6014 0.4315 1.5841 0.4132 1.5836 0.4307 1.5836 0.4307 1.5841 0.4132 1.5669 0.4299 1.5669 0.4299 1.5506 0.4142 1.5525 0.4316 1.0103 0.341 1.0103 0.3503 1.0305 0.3509 1.0103 0.341 1.0305 0.3509 1.0333 0.3434 1.0333 0.3434 1.0305 0.3509 1.042 0.3615 1.0333 0.3434 1.042 0.3615 1.0489 0.3472 1.0489 0.3472 1.042 0.3615 1.0614 0.3554 1.042 0.3615 1.0547 0.3701 1.0614 0.3554 1.0547 0.3701 1.042 0.3615 1.053 0.3775 1.0614 0.3554 1.0547 0.3701 1.0686 0.3725 1.053 0.3775 1.0616 0.3915 1.0547 0.3701 1.0686 0.3725 1.0547 0.3701 1.0616 0.3915 1.0686 0.3725 1.0616 0.3915 1.0702 0.3916 1.0103 0.4462 1.0103 0.4513 1.0396 0.4531 1.0103 0.4462 1.0396 0.4531 1.0384 0.449 1.0384 0.449 1.0396 0.4531 1.0547 0.4452 1.0384 0.449 1.0547 0.4452 1.0519 0.4428 1.0519 0.4428 1.0547 0.4452 1.0622 0.4304 1.0519 0.4428 1.0622 0.4304 1.0592 0.4255 1.0592 0.4255 1.0622 0.4304 1.0682 0.4036 1.0592 0.4255 1.0682 0.4036 1.0583 0.4016 1.0111 0.3844 1.0381 0.3869 1.0383 0.3746 1.0111 0.3844 1.0383 0.3746 1.0104 0.3726 1.0099 0.402 1.0103 0.4147 1.0333 0.4173 1.0099 0.402 1.0333 0.4173 1.0351 0.4009 1.2996 0.504 1.3387 0.4951 1.3377 0.4731 1.2996 0.504 1.3377 0.4731 1.2942 0.4808 1.2942 0.4808 1.3377 0.4731 1.3368 0.4571 1.2996 0.504 1.2942 0.4808 1.2678 0.4822 1.2996 0.504 1.2678 0.4822 1.2749 0.5084 1.2749 0.5084 1.2678 0.4822 1.2569 0.5028 1.2678 0.4822 1.2476 0.4797 1.2569 0.5028 1.2569 0.5028 1.2476 0.4797 1.2444 0.4971 1.2476 0.4797 1.2367 0.4809 1.2444 0.4971 1.2444 0.4971 1.2367 0.4809 1.232 0.4856 1.232 0.4856 1.2367 0.4809 1.2086 0.4645 1.232 0.4856 1.2086 0.4645 1.2006 0.4788 1.2006 0.4788 1.2086 0.4645 1.1871 0.4501 1.2006 0.4788 1.1871 0.4501 1.1718 0.4683 1.1718 0.4683 1.1871 0.4501 1.1714 0.4357 1.1718 0.4683 1.1714 0.4357 1.1512 0.4526 1.1512 0.4526 1.1714 0.4357 1.1352 0.4328 1.1714 0.4357 1.1538 0.4157 1.1352 0.4328 1.1538 0.4157 1.129 0.4083 1.1352 0.4328 1.129 0.4083 1.1538 0.4157 1.149 0.3841 1.129 0.4083 1.149 0.3841 1.1285 0.3927 1.149 0.3841 1.1318 0.3775 1.1285 0.3927 1.1318 0.3775 1.149 0.3841 1.1398 0.3591 1.149 0.3841 1.1554 0.3653 1.1398 0.3591 1.1398 0.3591 1.1554 0.3653 1.1552 0.3426 1.1554 0.3653 1.149 0.3841 1.1759 0.3926 1.1759 0.3926 1.149 0.3841 1.1538 0.4157 1.1759 0.3926 1.1538 0.4157 1.1809 0.4118 1.1809 0.4118 1.1538 0.4157 1.1714 0.4357 1.1809 0.4118 1.1714 0.4357 1.1906 0.4273 1.1906 0.4273 1.1714 0.4357 1.1871 0.4501 1.1906 0.4273 1.1871 0.4501 1.1999 0.4412 1.1999 0.4412 1.1871 0.4501 1.2086 0.4645 1.1999 0.4412 1.2086 0.4645 1.2184 0.4596 1.2184 0.4596 1.2086 0.4645 1.2367 0.4809 1.2184 0.4596 1.2367 0.4809 1.2361 0.4601 1.2367 0.4809 1.2476 0.4797 1.2361 0.4601 1.2361 0.4601 1.2476 0.4797 1.2526 0.46 1.2476 0.4797 1.2678 0.4822 1.2526 0.46 1.2526 0.46 1.2678 0.4822 1.2888 0.4605 1.2678 0.4822 1.2942 0.4808 1.2888 0.4605 1.2888 0.4605 1.2942 0.4808 1.3368 0.4571 1.2888 0.4605 1.3368 0.4571 1.3365 0.4473 1.2888 0.4605 1.3365 0.4473 1.2875 0.4503 1.2888 0.4605 1.2875 0.4503 1.2526 0.46 1.2875 0.4503 1.3365 0.4473 1.3398 0.4227 1.2526 0.46 1.2875 0.4503 1.2535 0.4514 1.2526 0.46 1.2535 0.4514 1.2361 0.4601 1.2535 0.4514 1.2342 0.4352 1.2361 0.4601 1.2361 0.4601 1.2342 0.4352 1.2184 0.4596 1.2342 0.4352 1.2151 0.4348 1.2184 0.4596 1.2184 0.4596 1.2151 0.4348 1.1999 0.4412 1.1999 0.4412 1.2151 0.4348 1.2108 0.4201 1.1999 0.4412 1.2108 0.4201 1.1906 0.4273 1.1906 0.4273 1.2108 0.4201 1.2061 0.4057 1.1906 0.4273 1.2061 0.4057 1.1809 0.4118 1.1809 0.4118 1.2061 0.4057 1.2053 0.3926 1.1809 0.4118 1.2053 0.3926 1.1759 0.3926 1.1759 0.3926 1.2053 0.3926 1.184 0.369 1.1759 0.3926 1.184 0.369 1.1554 0.3653 1.184 0.369 1.1665 0.3497 1.1554 0.3653 1.1554 0.3653 1.1665 0.3497 1.1552 0.3426 1.1552 0.3426 1.1665 0.3497 1.1796 0.3262 1.1665 0.3497 1.186 0.3327 1.1796 0.3262 1.1796 0.3262 1.186 0.3327 1.2144 0.3123 1.186 0.3327 1.1665 0.3497 1.207 0.3551 1.1665 0.3497 1.184 0.369 1.207 0.3551 1.184 0.369 1.2096 0.3739 1.207 0.3551 1.2096 0.3739 1.184 0.369 1.2053 0.3926 1.2096 0.3739 1.2053 0.3926 1.2341 0.3944 1.2341 0.3944 1.2053 0.3926 1.2061 0.4057 1.2341 0.3944 1.2061 0.4057 1.2353 0.4184 1.2061 0.4057 1.2108 0.4201 1.2353 0.4184 1.2353 0.4184 1.2108 0.4201 1.2151 0.4348 1.2353 0.4184 1.2151 0.4348 1.2342 0.4352 1.2353 0.4184 1.2342 0.4352 1.2549 0.4206 1.2342 0.4352 1.2535 0.4514 1.2549 0.4206 1.2549 0.4206 1.2535 0.4514 1.2875 0.4198 1.2535 0.4514 1.2875 0.4503 1.2875 0.4198 1.2875 0.4198 1.2875 0.4503 1.3398 0.4227 1.2875 0.4198 1.3398 0.4227 1.3377 0.3917 1.2875 0.4198 1.3377 0.3917 1.2857 0.3929 1.2875 0.4198 1.2857 0.3929 1.2556 0.3939 1.2875 0.4198 1.2556 0.3939 1.2549 0.4206 1.2549 0.4206 1.2556 0.3939 1.2353 0.4184 1.2556 0.3939 1.2341 0.3944 1.2353 0.4184 1.2341 0.3944 1.2556 0.3939 1.233 0.3707 1.2341 0.3944 1.233 0.3707 1.2096 0.3739 1.2096 0.3739 1.233 0.3707 1.2328 0.3488 1.2096 0.3739 1.2328 0.3488 1.207 0.3551 1.207 0.3551 1.2328 0.3488 1.2234 0.3253 1.207 0.3551 1.2234 0.3253 1.186 0.3327 1.2234 0.3253 1.2185 0.3164 1.186 0.3327 1.186 0.3327 1.2185 0.3164 1.2144 0.3123 1.2144 0.3123 1.2185 0.3164 1.2395 0.2982 1.2395 0.2982 1.2185 0.3164 1.2422 0.3028 1.2422 0.3028 1.2185 0.3164 1.2234 0.3253 1.2395 0.2982 1.2422 0.3028 1.2502 0.2751 1.2422 0.3028 1.2234 0.3253 1.2345 0.3272 1.2345 0.3272 1.2234 0.3253 1.2328 0.3488 1.2422 0.3028 1.2345 0.3272 1.2463 0.3106 1.2422 0.3028 1.2463 0.3106 1.2535 0.2777 1.2422 0.3028 1.2535 0.2777 1.2502 0.2751 1.2502 0.2751 1.2535 0.2777 1.2557 0.2571 1.2502 0.2751 1.2557 0.2571 1.2449 0.2497 1.2557 0.2571 1.2535 0.2777 1.2748 0.2576 1.2535 0.2777 1.2757 0.2817 1.2748 0.2576 1.2748 0.2576 1.2757 0.2817 1.2999 0.2591 1.2757 0.2817 1.2535 0.2777 1.2699 0.3045 1.2699 0.3045 1.2535 0.2777 1.2463 0.3106 1.2699 0.3045 1.2463 0.3106 1.2607 0.3174 1.2607 0.3174 1.2463 0.3106 1.2473 0.3332 1.2463 0.3106 1.2345 0.3272 1.2473 0.3332 1.2473 0.3332 1.2345 0.3272 1.2328 0.3488 1.2473 0.3332 1.2328 0.3488 1.248 0.3437 1.248 0.3437 1.2328 0.3488 1.253 0.3708 1.2328 0.3488 1.233 0.3707 1.253 0.3708 1.253 0.3708 1.233 0.3707 1.2556 0.3939 1.253 0.3708 1.2556 0.3939 1.2856 0.3701 1.2556 0.3939 1.2857 0.3929 1.2856 0.3701 1.253 0.3708 1.2856 0.3701 1.248 0.3437 1.2856 0.3701 1.2857 0.3929 1.3377 0.3917 1.2856 0.3701 1.3377 0.3917 1.3356 0.3662 1.2856 0.3701 1.3356 0.3662 1.2844 0.3443 1.2856 0.3701 1.2844 0.3443 1.248 0.3437 1.3356 0.3662 1.3326 0.3446 1.2844 0.3443 1.248 0.3437 1.2844 0.3443 1.2863 0.3337 1.3326 0.3446 1.2863 0.3337 1.2844 0.3443 1.248 0.3437 1.2863 0.3337 1.2473 0.3332 1.2473 0.3332 1.2863 0.3337 1.2607 0.3174 1.2607 0.3174 1.2863 0.3337 1.2932 0.3111 1.2607 0.3174 1.2932 0.3111 1.2699 0.3045 1.2699 0.3045 1.2932 0.3111 1.2757 0.2817 1.2932 0.3111 1.2995 0.287 1.2757 0.2817 1.2757 0.2817 1.2995 0.287 1.2999 0.2591 1.2999 0.2591 1.2995 0.287 1.3382 0.2698 1.2995 0.287 1.3329 0.2973 1.3382 0.2698 1.3329 0.2973 1.2995 0.287 1.2932 0.3111 1.3329 0.2973 1.2932 0.3111 1.3319 0.3178 1.3319 0.3178 1.2932 0.3111 1.3317 0.3357 1.2932 0.3111 1.2863 0.3337 1.3317 0.3357 1.3317 0.3357 1.2863 0.3337 1.3326 0.3446 1.3443 0.3674 1.3384 0.3662 1.3404 0.3917 1.3384 0.3662 1.3443 0.3674 1.3462 0.3481 1.3384 0.3662 1.3462 0.3481 1.3353 0.3446 1.3353 0.3446 1.3462 0.3481 1.3445 0.3332 1.3353 0.3446 1.3445 0.3332 1.3344 0.3357 1.3344 0.3357 1.3445 0.3332 1.3346 0.3178 1.3445 0.3332 1.3431 0.314 1.3346 0.3178 1.3346 0.3178 1.3431 0.314 1.3356 0.2973 1.3431 0.314 1.3427 0.2958 1.3356 0.2973 1.3356 0.2973 1.3427 0.2958 1.3409 0.2698 1.3427 0.2958 1.3459 0.2732 1.3409 0.2698 1.3474 0.4441 1.3425 0.4227 1.3393 0.4473 1.3474 0.4441 1.3393 0.4473 1.3395 0.4571 1.3474 0.4441 1.3395 0.4571 1.3454 0.4648 1.3454 0.4648 1.3395 0.4571 1.3404 0.4731 1.3454 0.4648 1.3404 0.4731 1.3472 0.4936 1.3404 0.4731 1.3414 0.4951 1.3472 0.4936 1.4015 0.5077 1.4076 0.5092 1.4016 0.4922 1.4076 0.5092 1.4015 0.5077 1.4034 0.5292 1.3753 0.5514 1.3735 0.5599 1.3884 0.5482 1.3735 0.5599 1.3753 0.5514 1.3654 0.5654 1.3735 0.5599 1.3654 0.5654 1.3724 0.564 1.3724 0.564 1.3654 0.5654 1.3732 0.5718 1.3654 0.5654 1.3642 0.5773 1.3732 0.5718 1.3732 0.5718 1.3642 0.5773 1.3719 0.5743 1.3719 0.5743 1.3642 0.5773 1.3728 0.5909 1.3642 0.5773 1.3663 0.5913 1.3728 0.5909 1.3728 0.5909 1.3663 0.5913 1.3715 0.6109 1.3728 0.5909 1.3715 0.6109 1.3753 0.6112 1.3715 0.6109 1.3778 0.6314 1.3753 0.6112 1.3753 0.6112 1.3778 0.6314 1.3805 0.6285 1.3753 0.6112 1.3805 0.6285 1.3774 0.6128 1.3718 0.462 1.3841 0.4704 1.375 0.4594 1.3718 0.462 1.375 0.4594 1.3752 0.4493 1.3718 0.462 1.3752 0.4493 1.3745 0.4465 1.3629 0.6331 1.3648 0.6624 1.3727 0.6562 1.3629 0.6331 1.3727 0.6562 1.3702 0.6329 1.3702 0.6329 1.3727 0.6562 1.3806 0.6499 1.3629 0.6331 1.3702 0.6329 1.3645 0.6121 1.3629 0.6331 1.3645 0.6121 1.3584 0.6128 1.3584 0.6128 1.3645 0.6121 1.3606 0.5904 1.3584 0.6128 1.3606 0.5904 1.3561 0.5896 1.3561 0.5896 1.3606 0.5904 1.3627 0.5771 1.3561 0.5896 1.3627 0.5771 1.3615 0.5564 1.3606 0.5904 1.3652 0.5913 1.3627 0.5771 1.3652 0.5913 1.3606 0.5904 1.3645 0.6121 1.3652 0.5913 1.3645 0.6121 1.3706 0.6113 1.3706 0.6113 1.3645 0.6121 1.3702 0.6329 1.3706 0.6113 1.3702 0.6329 1.3775 0.6327 1.3775 0.6327 1.3702 0.6329 1.3806 0.6499 1.3775 0.6327 1.3806 0.6499 1.4396 0.6279 1.3806 0.6499 1.4416 0.6431 1.4396 0.6279 1.3775 0.6327 1.4396 0.6279 1.3815 0.6285 1.4396 0.6279 1.4416 0.6431 1.4787 0.6199 1.4416 0.6431 1.483 0.6323 1.4787 0.6199 1.4396 0.6279 1.4787 0.6199 1.4768 0.6153 1.4396 0.6279 1.4768 0.6153 1.4384 0.6234 1.4396 0.6279 1.4384 0.6234 1.3815 0.6285 1.4384 0.6234 1.4768 0.6153 1.4367 0.6064 1.3815 0.6285 1.4384 0.6234 1.4367 0.6064 1.3815 0.6285 1.4367 0.6064 1.3787 0.6125 1.3787 0.6125 1.4367 0.6064 1.4351 0.6017 1.3787 0.6125 1.4351 0.6017 1.3766 0.611 1.3766 0.611 1.4351 0.6017 1.4333 0.588 1.3766 0.611 1.4333 0.588 1.374 0.5908 1.4333 0.588 1.4351 0.6017 1.4751 0.5944 1.4751 0.5944 1.4351 0.6017 1.4367 0.6064 1.4751 0.5944 1.4367 0.6064 1.4753 0.599 1.4753 0.599 1.4367 0.6064 1.4768 0.6153 1.4751 0.5944 1.4733 0.5803 1.4333 0.588 1.4333 0.588 1.4733 0.5803 1.4334 0.5707 1.4333 0.588 1.4334 0.5707 1.374 0.5908 1.4334 0.5707 1.3729 0.5747 1.374 0.5908 1.3729 0.5747 1.4334 0.5707 1.4339 0.5668 1.3729 0.5747 1.4339 0.5668 1.3745 0.5717 1.3745 0.5717 1.4339 0.5668 1.3735 0.5639 1.4339 0.5668 1.4326 0.5563 1.3735 0.5639 1.3735 0.5639 1.4326 0.5563 1.3743 0.5606 1.4326 0.5563 1.4327 0.5527 1.3743 0.5606 1.4327 0.5527 1.3905 0.5471 1.3743 0.5606 1.4327 0.5527 1.4326 0.5563 1.4698 0.5541 1.4698 0.5541 1.4326 0.5563 1.4339 0.5668 1.4698 0.5541 1.4339 0.5668 1.4718 0.5626 1.4718 0.5626 1.4339 0.5668 1.4334 0.5707 1.4718 0.5626 1.4334 0.5707 1.4728 0.567 1.4728 0.567 1.4334 0.5707 1.4733 0.5803 1.4698 0.5541 1.4703 0.5505 1.4327 0.5527 1.4327 0.5527 1.4703 0.5505 1.4354 0.5343 1.4703 0.5505 1.469 0.5329 1.4354 0.5343 1.4327 0.5527 1.4354 0.5343 1.4029 0.5337 1.4327 0.5527 1.4029 0.5337 1.3905 0.5471 1.3905 0.5471 1.4029 0.5337 1.3816 0.5312 1.3905 0.5471 1.3816 0.5312 1.3751 0.5501 1.3751 0.5501 1.3816 0.5312 1.3669 0.5316 1.3751 0.5501 1.3669 0.5316 1.3615 0.5564 1.3751 0.5501 1.3615 0.5564 1.3643 0.5653 1.3643 0.5653 1.3615 0.5564 1.3627 0.5771 1.368 0.5148 1.3669 0.5316 1.3816 0.5312 1.368 0.5148 1.3816 0.5312 1.3828 0.508 1.3828 0.508 1.3816 0.5312 1.4029 0.5337 1.368 0.5148 1.3828 0.508 1.367 0.5034 1.367 0.5034 1.3828 0.508 1.3815 0.4874 1.367 0.5034 1.3815 0.4874 1.3658 0.4865 1.3815 0.4874 1.3828 0.508 1.4009 0.4869 1.3658 0.4865 1.3815 0.4874 1.3824 0.4736 1.4009 0.4869 1.3824 0.4736 1.3815 0.4874 1.3658 0.4865 1.3824 0.4736 1.3636 0.4688 1.3636 0.4688 1.3824 0.4736 1.3709 0.4624 1.3636 0.4688 1.3709 0.4624 1.3614 0.4438 1.3824 0.4736 1.387 0.4731 1.3709 0.4624 1.387 0.4731 1.3824 0.4736 1.4009 0.4869 1.3709 0.4624 1.3741 0.4443 1.3614 0.4438 1.3614 0.4438 1.3741 0.4443 1.3686 0.4355 1.3741 0.4443 1.3759 0.4272 1.3686 0.4355 1.3759 0.4272 1.3741 0.4443 1.4371 0.4353 1.3741 0.4443 1.435 0.4524 1.4371 0.4353 1.4371 0.4353 1.435 0.4524 1.4785 0.4458 1.435 0.4524 1.476 0.4593 1.4785 0.4458 1.476 0.4593 1.435 0.4524 1.4335 0.4571 1.4335 0.4571 1.435 0.4524 1.3741 0.4443 1.4335 0.4571 1.3741 0.4443 1.3763 0.4492 1.4335 0.4571 1.3763 0.4492 1.3759 0.4592 1.4335 0.4571 1.3759 0.4592 1.4355 0.4689 1.4355 0.4689 1.3759 0.4592 1.387 0.4731 1.4355 0.4689 1.387 0.4731 1.434 0.4746 1.434 0.4746 1.387 0.4731 1.4009 0.4869 1.4355 0.4689 1.434 0.4746 1.4749 0.4738 1.4355 0.4689 1.4749 0.4738 1.4751 0.4651 1.4355 0.4689 1.4751 0.4651 1.4335 0.4571 1.4335 0.4571 1.4751 0.4651 1.476 0.4593 1.434 0.4746 1.4742 0.479 1.4749 0.4738 1.4742 0.479 1.434 0.4746 1.4713 0.4911 1.434 0.4746 1.436 0.488 1.4713 0.4911 1.436 0.488 1.434 0.4746 1.4009 0.4869 1.4713 0.4911 1.436 0.488 1.4705 0.5099 1.436 0.488 1.4009 0.4869 1.4089 0.5092 1.4705 0.5099 1.436 0.488 1.4367 0.5099 1.4089 0.5092 1.4367 0.5099 1.436 0.488 1.4705 0.5099 1.4367 0.5099 1.469 0.5329 1.4367 0.5099 1.4354 0.5343 1.469 0.5329 1.4354 0.5343 1.4367 0.5099 1.4089 0.5092 1.4354 0.5343 1.4089 0.5092 1.4029 0.5337 1.4029 0.5337 1.4005 0.5079 1.3828 0.508 1.3828 0.508 1.4005 0.5079 1.4009 0.4869 1.5643 0.8331 1.5671 0.8253 1.5473 0.8227 1.5643 0.8331 1.5473 0.8227 1.5475 0.8295 1.5475 0.8295 1.5473 0.8227 1.5295 0.827 1.5643 0.8331 1.5475 0.8295 1.5427 0.8759 1.5295 0.827 1.5319 0.833 1.5475 0.8295 1.5427 0.8759 1.5475 0.8295 1.5319 0.833 1.5427 0.8759 1.5319 0.833 1.5165 0.8424 1.5165 0.8424 1.5319 0.833 1.5295 0.827 1.5165 0.8424 1.5295 0.827 1.5107 0.8328 1.5165 0.8424 1.5107 0.8328 1.5095 0.8431 1.5165 0.8424 1.5095 0.8431 1.5136 0.88 1.5165 0.8424 1.5136 0.88 1.5427 0.8759 1.5427 0.8759 1.5136 0.88 1.5443 0.9166 1.5427 0.8759 1.5443 0.9166 1.5748 0.9128 1.5427 0.8759 1.5748 0.9128 1.5697 0.8759 1.5427 0.8759 1.5697 0.8759 1.5643 0.8331 1.5748 0.9128 1.5443 0.9166 1.5485 0.9535 1.5748 0.9128 1.5485 0.9535 1.5809 0.9484 1.5485 0.9535 1.5443 0.9166 1.5141 0.9193 1.5141 0.9193 1.5443 0.9166 1.5136 0.88 1.5141 0.9193 1.5136 0.88 1.5035 0.9184 1.5136 0.88 1.5052 0.8793 1.5035 0.9184 1.5052 0.8793 1.5136 0.88 1.5095 0.8431 1.5052 0.8793 1.5095 0.8431 1.488 0.8779 1.5095 0.8431 1.4901 0.8374 1.488 0.8779 1.4901 0.8374 1.5095 0.8431 1.5107 0.8328 1.4901 0.8374 1.5107 0.8328 1.4919 0.8315 1.4901 0.8374 1.4919 0.8315 1.4728 0.8257 1.4901 0.8374 1.4728 0.8257 1.4711 0.8325 1.4711 0.8325 1.4728 0.8257 1.4541 0.8288 1.4901 0.8374 1.4711 0.8325 1.4624 0.8782 1.4901 0.8374 1.4624 0.8782 1.488 0.8779 1.4711 0.8325 1.4565 0.8355 1.4624 0.8782 1.4565 0.8355 1.4711 0.8325 1.4541 0.8288 1.4565 0.8355 1.4541 0.8288 1.4393 0.8355 1.4565 0.8355 1.4393 0.8355 1.437 0.8431 1.4565 0.8355 1.437 0.8431 1.4624 0.8782 1.437 0.8431 1.4393 0.8355 1.4209 0.8331 1.437 0.8431 1.4209 0.8331 1.4178 0.8425 1.4178 0.8425 1.4209 0.8331 1.4038 0.832 1.437 0.8431 1.4178 0.8425 1.4158 0.8778 1.437 0.8431 1.4158 0.8778 1.4375 0.8807 1.437 0.8431 1.4375 0.8807 1.4624 0.8782 1.4624 0.8782 1.4375 0.8807 1.4368 0.9152 1.4624 0.8782 1.4368 0.9152 1.4653 0.9162 1.4624 0.8782 1.4653 0.9162 1.488 0.8779 1.4653 0.9162 1.4901 0.9173 1.488 0.8779 1.488 0.8779 1.4901 0.9173 1.5052 0.8793 1.4901 0.9173 1.5035 0.9184 1.5052 0.8793 1.5035 0.9184 1.4901 0.9173 1.4917 0.9538 1.5035 0.9184 1.4917 0.9538 1.5036 0.9545 1.5035 0.9184 1.5036 0.9545 1.5141 0.9193 1.5036 0.9545 1.5156 0.9552 1.5141 0.9193 1.5141 0.9193 1.5156 0.9552 1.5485 0.9535 1.5156 0.9552 1.5036 0.9545 1.5032 0.9973 1.5032 0.9973 1.5036 0.9545 1.4917 0.9538 1.5032 0.9973 1.4917 0.9538 1.4879 0.9975 1.4879 0.9975 1.4917 0.9538 1.4632 0.9533 1.4632 0.9533 1.4917 0.9538 1.4901 0.9173 1.4632 0.9533 1.4901 0.9173 1.4653 0.9162 1.4632 0.9533 1.4653 0.9162 1.4368 0.9152 1.4632 0.9533 1.4368 0.9152 1.4321 0.9522 1.4321 0.9522 1.4368 0.9152 1.4107 0.9116 1.4107 0.9116 1.4368 0.9152 1.4375 0.8807 1.4107 0.9116 1.4375 0.8807 1.4158 0.8778 1.4107 0.9116 1.4158 0.8778 1.4042 0.8765 1.4042 0.8765 1.4158 0.8778 1.407 0.8404 1.4158 0.8778 1.4178 0.8425 1.407 0.8404 1.407 0.8404 1.4178 0.8425 1.4038 0.832 1.407 0.8404 1.4038 0.832 1.3837 0.8355 1.4038 0.832 1.3852 0.8292 1.3837 0.8355 1.407 0.8404 1.3837 0.8355 1.3872 0.8721 1.407 0.8404 1.3872 0.8721 1.4042 0.8765 1.3872 0.8721 1.3837 0.8355 1.3661 0.8685 1.4042 0.8765 1.3872 0.8721 1.3815 0.9093 1.3661 0.8685 1.3815 0.9093 1.3872 0.8721 1.4042 0.8765 1.3815 0.9093 1.3998 0.911 1.4042 0.8765 1.3998 0.911 1.4107 0.9116 1.4107 0.9116 1.3998 0.911 1.4033 0.9506 1.4107 0.9116 1.4033 0.9506 1.4321 0.9522 1.4321 0.9522 1.4033 0.9506 1.4279 0.9923 1.4321 0.9522 1.4279 0.9923 1.457 0.9963 1.4321 0.9522 1.457 0.9963 1.4632 0.9533 1.4632 0.9533 1.457 0.9963 1.4879 0.9975 1.5032 0.9973 1.5162 0.9971 1.5156 0.9552 1.5156 0.9552 1.5162 0.9971 1.5506 0.9927 1.5156 0.9552 1.5506 0.9927 1.5485 0.9535 1.5506 0.9927 1.5809 0.9484 1.5485 0.9535 1.5809 0.9484 1.5506 0.9927 1.5905 0.9855 1.4033 0.9506 1.3976 0.9883 1.4279 0.9923 1.3976 0.9883 1.4033 0.9506 1.3937 0.9492 1.3937 0.9492 1.4033 0.9506 1.3998 0.911 1.3976 0.9883 1.3937 0.9492 1.387 0.9882 1.3937 0.9492 1.3998 0.911 1.3715 0.9453 1.3998 0.911 1.3815 0.9093 1.3715 0.9453 1.3937 0.9492 1.3715 0.9453 1.387 0.9882 1.3715 0.9453 1.3628 0.9824 1.387 0.9882 1.3628 0.9824 1.3715 0.9453 1.3316 0.9737 1.3715 0.9453 1.343 0.9373 1.3316 0.9737 1.343 0.9373 1.3715 0.9453 1.3575 0.9046 1.3715 0.9453 1.3815 0.9093 1.3575 0.9046 1.3575 0.9046 1.3815 0.9093 1.3661 0.8685 1.3661 0.8685 1.3837 0.8355 1.3597 0.8252 1.3597 0.8252 1.3837 0.8355 1.3852 0.8292 1.3597 0.8252 1.3852 0.8292 1.3649 0.819 1.3713 0.3058 1.3581 0.2834 1.3511 0.2994 1.3581 0.2834 1.3713 0.3058 1.3936 0.2829 1.3581 0.2834 1.3936 0.2829 1.3657 0.2603 1.3936 0.2829 1.3713 0.3058 1.4009 0.3005 1.3713 0.3058 1.3864 0.3181 1.4009 0.3005 1.4009 0.3005 1.3864 0.3181 1.3925 0.3247 1.4009 0.3005 1.3925 0.3247 1.4105 0.3122 1.4009 0.3005 1.4105 0.3122 1.4226 0.3022 1.4009 0.3005 1.4226 0.3022 1.4196 0.2898 1.4009 0.3005 1.4196 0.2898 1.3936 0.2829 1.4196 0.2898 1.4226 0.3022 1.4349 0.3053 1.3936 0.2829 1.4196 0.2898 1.4173 0.2706 1.3936 0.2829 1.4173 0.2706 1.3955 0.2608 1.3936 0.2829 1.3955 0.2608 1.3657 0.2603 1.3657 0.2603 1.3955 0.2608 1.3828 0.2273 1.3955 0.2608 1.4016 0.2381 1.3828 0.2273 1.4016 0.2381 1.3955 0.2608 1.4173 0.2706 1.3828 0.2273 1.4016 0.2381 1.4011 0.2057999 1.4016 0.2381 1.4092 0.2196 1.4011 0.2057999 1.4011 0.2057999 1.4092 0.2196 1.4229 0.1969 1.4092 0.2196 1.4016 0.2381 1.4204 0.2312 1.4016 0.2381 1.4181 0.2467 1.4204 0.2312 1.4181 0.2467 1.4016 0.2381 1.4173 0.2706 1.4181 0.2467 1.4173 0.2706 1.45 0.2522 1.4181 0.2467 1.45 0.2522 1.4204 0.2312 1.4173 0.2706 1.448 0.2746 1.45 0.2522 1.448 0.2746 1.4173 0.2706 1.4196 0.2898 1.448 0.2746 1.4196 0.2898 1.4431 0.2913 1.4431 0.2913 1.4196 0.2898 1.4349 0.3053 1.4431 0.2913 1.4349 0.3053 1.458 0.3011 1.4349 0.3053 1.4464 0.3163 1.458 0.3011 1.458 0.3011 1.4464 0.3163 1.4597 0.3242 1.458 0.3011 1.4597 0.3242 1.4703 0.3159 1.4703 0.3159 1.4597 0.3242 1.4692 0.3399 1.458 0.3011 1.4703 0.3159 1.4891 0.3071 1.458 0.3011 1.4891 0.3071 1.478 0.277 1.458 0.3011 1.478 0.277 1.4431 0.2913 1.478 0.277 1.448 0.2746 1.4431 0.2913 1.448 0.2746 1.478 0.277 1.4704 0.2502 1.448 0.2746 1.4704 0.2502 1.45 0.2522 1.45 0.2522 1.4704 0.2502 1.4591 0.2264 1.45 0.2522 1.4591 0.2264 1.4479 0.2329 1.45 0.2522 1.4479 0.2329 1.4204 0.2312 1.4204 0.2312 1.4479 0.2329 1.4377 0.2157 1.4204 0.2312 1.4377 0.2157 1.4263 0.2158 1.4204 0.2312 1.4263 0.2158 1.4092 0.2196 1.4263 0.2158 1.4377 0.2157 1.4244 0.2079 1.4092 0.2196 1.4263 0.2158 1.4244 0.2079 1.4092 0.2196 1.4244 0.2079 1.4229 0.1969 1.4229 0.1969 1.4244 0.2079 1.4411 0.2115 1.4229 0.1969 1.4411 0.2115 1.4463 0.1996999 1.4411 0.2115 1.4244 0.2079 1.4377 0.2157 1.4411 0.2115 1.4377 0.2157 1.4479 0.2329 1.4411 0.2115 1.4479 0.2329 1.4591 0.2264 1.4411 0.2115 1.4591 0.2264 1.4463 0.1996999 1.4591 0.2264 1.4712 0.2158 1.4463 0.1996999 1.4712 0.2158 1.4591 0.2264 1.4704 0.2502 1.4712 0.2158 1.4704 0.2502 1.4888 0.2418 1.4888 0.2418 1.4704 0.2502 1.478 0.277 1.4888 0.2418 1.478 0.277 1.4989 0.2694 1.4989 0.2694 1.478 0.277 1.505 0.29 1.478 0.277 1.4891 0.3071 1.505 0.29 1.505 0.29 1.4891 0.3071 1.5099 0.3051 1.5099 0.3051 1.4891 0.3071 1.4982 0.3316 1.5099 0.3051 1.4982 0.3316 1.5201 0.3172 1.4982 0.3316 1.4891 0.3071 1.4823 0.3368 1.4891 0.3071 1.4703 0.3159 1.4823 0.3368 1.4823 0.3368 1.4703 0.3159 1.4692 0.3399 1.4823 0.3368 1.4692 0.3399 1.4846 0.358 1.4692 0.3399 1.4704 0.3597 1.4846 0.358 1.4823 0.3368 1.4846 0.358 1.4982 0.3316 1.4846 0.358 1.5044 0.3542 1.4982 0.3316 1.4982 0.3316 1.5044 0.3542 1.5201 0.3172 1.5044 0.3542 1.5285 0.3427 1.5201 0.3172 1.5285 0.3427 1.5044 0.3542 1.5079 0.3724 1.5079 0.3724 1.5044 0.3542 1.4846 0.358 1.5285 0.3427 1.5079 0.3724 1.5339 0.366 1.5339 0.366 1.5079 0.3724 1.5365 0.3856 1.5079 0.3724 1.5105 0.39 1.5365 0.3856 1.5105 0.39 1.5374 0.4023 1.5365 0.3856 1.5105 0.39 1.5079 0.3724 1.4878 0.3769 1.4878 0.3769 1.5079 0.3724 1.4846 0.358 1.4878 0.3769 1.4846 0.358 1.4704 0.3597 1.4878 0.3769 1.4704 0.3597 1.4712 0.3783 1.4878 0.3769 1.4712 0.3783 1.4805 0.3945 1.4878 0.3769 1.4805 0.3945 1.4919 0.393 1.4878 0.3769 1.4919 0.393 1.5105 0.39 1.4919 0.393 1.4805 0.3945 1.4854 0.4115 1.5105 0.39 1.4919 0.393 1.5099 0.4102 1.5105 0.39 1.5099 0.4102 1.5374 0.4023 1.5374 0.4023 1.5099 0.4102 1.5374 0.4197 1.5374 0.4197 1.5099 0.4102 1.5321 0.4327 1.5099 0.4102 1.511 0.4365 1.5321 0.4327 1.511 0.4365 1.5099 0.4102 1.4921 0.4117 1.4921 0.4117 1.5099 0.4102 1.4919 0.393 1.4921 0.4117 1.4919 0.393 1.4854 0.4115 1.4921 0.4117 1.4854 0.4115 1.4817 0.4308 1.4921 0.4117 1.4817 0.4308 1.4909 0.4333 1.4921 0.4117 1.4909 0.4333 1.511 0.4365 1.2283 0.1966 1.2178 0.2077 1.2206 0.2222999 1.2283 0.1966 1.2206 0.2222999 1.236 0.2355 1.2283 0.1966 1.236 0.2355 1.2481 0.1909 1.236 0.2355 1.2577 0.2436 1.2481 0.1909 1.2481 0.1909 1.2577 0.2436 1.2774 0.1931 1.2577 0.2436 1.2808 0.2448 1.2774 0.1931 1.2774 0.1931 1.2808 0.2448 1.2972 0.196 1.2808 0.2448 1.2977 0.2434 1.2972 0.196 1.2972 0.196 1.2977 0.2434 1.3101 0.2425 1.2972 0.196 1.3101 0.2425 1.3113 0.1963 1.3113 0.1963 1.3101 0.2425 1.3218 0.2409999 1.3113 0.1963 1.3218 0.2409999 1.3223 0.1967 1.3223 0.1967 1.3218 0.2409999 1.3412 0.2353 1.3223 0.1967 1.3412 0.2353 1.3355 0.1995 1.3355 0.1995 1.3412 0.2353 1.3499 0.2201 1.3355 0.1995 1.3499 0.2201 1.3458 0.2063 0.7539 0.7549 0.7669 0.7547 0.7666 0.7723 0.7539 0.7549 0.7666 0.7723 0.7539 0.7723 0.7539 0.7723 0.7666 0.7723 0.7659 0.7937 0.7539 0.7723 0.7659 0.7937 0.7539 0.7937 0.7539 0.7723 0.7539 0.7937 0.7419 0.7937 0.7539 0.7723 0.7419 0.7937 0.7412 0.7723 0.7539 0.7723 0.7412 0.7723 0.7539 0.7549 0.7412 0.7723 0.7409 0.7547 0.7539 0.7549 0.7539 0.7375 0.7804 0.7391 0.7776 0.7424 0.7539 0.7375 0.7776 0.7424 0.7539 0.7419 0.7539 0.7375 0.7539 0.7419 0.7302 0.7424 0.7539 0.7375 0.7302 0.7424 0.7274 0.7391 0.7539 0.7487 0.7717 0.749 0.7674 0.7535 0.7539 0.7487 0.7674 0.7535 0.7539 0.753 0.7539 0.7487 0.7539 0.753 0.7404 0.7535 0.7539 0.7487 0.7404 0.7535 0.7361 0.749 0.8013 0.7679 0.7858 0.7703 0.7843 0.736 0.8013 0.7679 0.7843 0.736 0.8074 0.7323 0.7843 0.736 0.779 0.7313 0.8074 0.7323 0.779 0.7313 0.7843 0.736 0.7539 0.7346 0.779 0.7313 0.7539 0.7346 0.7539 0.7317 0.7539 0.7317 0.7539 0.7346 0.7288 0.7313 0.7539 0.7346 0.7235 0.736 0.7288 0.7313 0.7235 0.736 0.7039 0.7318 0.7288 0.7313 0.7039 0.7318 0.7235 0.736 0.7068 0.7679 0.7235 0.736 0.7223 0.7703 0.7068 0.7679 0.483 0.6323 0.5162 0.6184 0.5121 0.6074 0.483 0.6323 0.5121 0.6074 0.4787 0.6199 0.4787 0.6199 0.5121 0.6074 0.51 0.6053 0.4787 0.6199 0.51 0.6053 0.4768 0.6153 0.4768 0.6153 0.51 0.6053 0.4753 0.599 0.51 0.6053 0.5072 0.5913 0.4753 0.599 0.4753 0.599 0.5072 0.5913 0.4751 0.5944 0.5072 0.5913 0.5087 0.588 0.4751 0.5944 0.4751 0.5944 0.5087 0.588 0.4733 0.5803 0.5087 0.588 0.5071 0.5747 0.4733 0.5803 0.4733 0.5803 0.5071 0.5747 0.4728 0.567 0.5071 0.5747 0.5054 0.5598 0.4728 0.567 0.4728 0.567 0.5054 0.5598 0.5031 0.5582 0.4728 0.567 0.5031 0.5582 0.4718 0.5626 0.4718 0.5626 0.5031 0.5582 0.5032 0.5503 0.4718 0.5626 0.5032 0.5503 0.4698 0.5541 0.4698 0.5541 0.5032 0.5503 0.4703 0.5505 0.5032 0.5503 0.5054 0.548 0.4703 0.5505 0.4703 0.5505 0.5054 0.548 0.469 0.5329 0.5054 0.548 0.5038 0.5317 0.469 0.5329 0.469 0.5329 0.5038 0.5317 0.4705 0.5099 0.5038 0.5317 0.5032 0.5124 0.4705 0.5099 0.4705 0.5099 0.5032 0.5124 0.4713 0.4911 0.5032 0.5124 0.5041 0.4974 0.4713 0.4911 0.4713 0.4911 0.5041 0.4974 0.506 0.4859 0.4713 0.4911 0.506 0.4859 0.4742 0.479 0.4742 0.479 0.506 0.4859 0.4749 0.4738 0.506 0.4859 0.5044 0.482 0.4749 0.4738 0.4749 0.4738 0.5044 0.482 0.5061 0.4728 0.4749 0.4738 0.5061 0.4728 0.4751 0.4651 0.4751 0.4651 0.5061 0.4728 0.5089 0.4698 0.4751 0.4651 0.5089 0.4698 0.476 0.4593 0.476 0.4593 0.5089 0.4698 0.5128 0.4577 0.476 0.4593 0.5128 0.4577 0.4785 0.4458 0.5077 0.548 0.5055 0.5503 0.5054 0.5582 0.5077 0.548 0.5054 0.5582 0.5077 0.5598 0.5077 0.548 0.5077 0.5598 0.5164 0.5502 0.5077 0.548 0.5164 0.5502 0.5132 0.5306 0.5077 0.548 0.5132 0.5306 0.5061 0.5317 0.5061 0.5317 0.5132 0.5306 0.5055 0.5124 0.5132 0.5306 0.5128 0.5137 0.5055 0.5124 0.5055 0.5124 0.5128 0.5137 0.5064 0.4974 0.5128 0.5137 0.5163 0.5008 0.5064 0.4974 0.5064 0.4974 0.5163 0.5008 0.5083 0.4859 0.5163 0.5008 0.5167 0.4865 0.5083 0.4859 0.5083 0.4859 0.5167 0.4865 0.5112 0.4698 0.5083 0.4859 0.5112 0.4698 0.5067 0.482 0.5167 0.4865 0.5182 0.4728 0.5112 0.4698 0.5067 0.482 0.5112 0.4698 0.5084 0.4728 0.5112 0.4698 0.5182 0.4728 0.5151 0.4577 0.5182 0.4728 0.5217 0.4554 0.5151 0.4577 0.5151 0.5741 0.5164 0.5502 0.5077 0.5598 0.5151 0.5741 0.5077 0.5598 0.5094 0.5747 0.5151 0.5741 0.5094 0.5747 0.511 0.588 0.5151 0.5741 0.511 0.588 0.5146 0.5897 0.5146 0.5897 0.511 0.588 0.5165 0.5986 0.511 0.588 0.5144 0.6074 0.5165 0.5986 0.5165 0.5986 0.5144 0.6074 0.52 0.6115 0.5144 0.6074 0.5185 0.6184 0.52 0.6115 0.5144 0.6074 0.511 0.588 0.5123 0.6053 0.511 0.588 0.5095 0.5913 0.5123 0.6053 0.6433 0.9889 0.6461 0.9929 0.6543 0.9871 0.6433 0.9889 0.6543 0.9871 0.6562 0.983 0.6562 0.983 0.6543 0.9871 0.6691 0.9848 0.6433 0.9889 0.6562 0.983 0.655 0.9727 0.6691 0.9848 0.6667 0.9792 0.6562 0.983 0.655 0.9727 0.6562 0.983 0.6667 0.9792 0.6691 0.9848 0.683 0.9796 0.6667 0.9792 0.683 0.9796 0.6691 0.9848 0.6849 0.9821 0.683 0.9796 0.6849 0.9821 0.7026 0.9772 0.6849 0.9821 0.7054 0.9824 0.7026 0.9772 0.7026 0.9772 0.7054 0.9824 0.7164 0.9732 0.7054 0.9824 0.7218 0.9817 0.7164 0.9732 0.7026 0.9772 0.7164 0.9732 0.7174 0.9627 0.7174 0.9627 0.7164 0.9732 0.7227 0.9745 0.7164 0.9732 0.7218 0.9817 0.7227 0.9745 0.7227 0.9745 0.7218 0.9817 0.7336 0.9735 0.7218 0.9817 0.7326 0.98 0.7336 0.9735 0.7336 0.9735 0.7326 0.98 0.7478 0.9802 0.7336 0.9735 0.7478 0.9802 0.7333 0.9651 0.7336 0.9735 0.7333 0.9651 0.726 0.9643 0.7336 0.9735 0.726 0.9643 0.7227 0.9745 0.7227 0.9745 0.726 0.9643 0.7214 0.9627 0.7227 0.9745 0.7214 0.9627 0.7174 0.9627 0.7174 0.9627 0.7214 0.9627 0.7158 0.9467 0.7174 0.9627 0.7158 0.9467 0.7004 0.953 0.7174 0.9627 0.7004 0.953 0.7026 0.9772 0.7026 0.9772 0.7004 0.953 0.6978 0.9754 0.7026 0.9772 0.6978 0.9754 0.683 0.9796 0.7004 0.953 0.6946 0.9522 0.6978 0.9754 0.683 0.9796 0.6978 0.9754 0.6863 0.9768 0.6946 0.9522 0.6863 0.9768 0.6978 0.9754 0.683 0.9796 0.6863 0.9768 0.6757 0.9564 0.683 0.9796 0.6757 0.9564 0.6667 0.9792 0.6757 0.9564 0.6539 0.9566 0.6667 0.9792 0.6667 0.9792 0.6539 0.9566 0.655 0.9727 0.6539 0.9566 0.6757 0.9564 0.6716 0.947 0.6716 0.947 0.6757 0.9564 0.6811 0.9546 0.6811 0.9546 0.6757 0.9564 0.6863 0.9768 0.6811 0.9546 0.6863 0.9768 0.6946 0.9522 0.6811 0.9546 0.6946 0.9522 0.6744 0.9434 0.6811 0.9546 0.6744 0.9434 0.6716 0.947 0.6716 0.947 0.6744 0.9434 0.6587 0.9356 0.6716 0.947 0.6587 0.9356 0.6539 0.9566 0.6587 0.9356 0.6507 0.9428 0.6539 0.9566 0.6539 0.9566 0.6507 0.9428 0.6489 0.9574 0.6539 0.9566 0.6489 0.9574 0.655 0.9727 0.6489 0.9574 0.6462 0.9674 0.655 0.9727 0.655 0.9727 0.6462 0.9674 0.6407 0.9841 0.655 0.9727 0.6407 0.9841 0.6433 0.9889 0.6462 0.9674 0.6343 0.9761 0.6407 0.9841 0.6343 0.9761 0.6462 0.9674 0.6369 0.9607 0.6369 0.9607 0.6462 0.9674 0.6489 0.9574 0.6343 0.9761 0.6369 0.9607 0.6274 0.9686 0.6369 0.9607 0.6489 0.9574 0.6414 0.9485 0.6414 0.9485 0.6489 0.9574 0.6507 0.9428 0.6414 0.9485 0.6507 0.9428 0.6436 0.9394 0.6436 0.9394 0.6507 0.9428 0.6422 0.9285 0.6507 0.9428 0.6541 0.9296 0.6422 0.9285 0.6541 0.9296 0.6507 0.9428 0.6587 0.9356 0.6541 0.9296 0.6587 0.9356 0.6745 0.9278 0.6587 0.9356 0.6744 0.9434 0.6745 0.9278 0.6541 0.9296 0.6745 0.9278 0.6723 0.9204 0.6745 0.9278 0.6744 0.9434 0.6931 0.9262 0.6723 0.9204 0.6745 0.9278 0.6931 0.9262 0.6744 0.9434 0.6963 0.9411 0.6931 0.9262 0.6963 0.9411 0.6744 0.9434 0.6946 0.9522 0.6963 0.9411 0.6946 0.9522 0.7016 0.9428 0.6946 0.9522 0.7004 0.953 0.7016 0.9428 0.7016 0.9428 0.7004 0.953 0.7158 0.9467 0.7016 0.9428 0.7158 0.9467 0.7081 0.9287 0.7016 0.9428 0.7081 0.9287 0.6963 0.9411 0.6963 0.9411 0.7081 0.9287 0.6931 0.9262 0.6931 0.9262 0.7081 0.9287 0.6937 0.9186 0.6931 0.9262 0.6937 0.9186 0.6723 0.9204 0.7081 0.9287 0.7122 0.924 0.6937 0.9186 0.7122 0.924 0.7081 0.9287 0.7158 0.9467 0.7122 0.924 0.7158 0.9467 0.72 0.9458 0.72 0.9458 0.7158 0.9467 0.7214 0.9627 0.7122 0.924 0.72 0.9458 0.7238 0.9378 0.72 0.9458 0.7214 0.9627 0.7254 0.9497 0.7238 0.9378 0.72 0.9458 0.7254 0.9497 0.7214 0.9627 0.726 0.9643 0.7254 0.9497 0.7254 0.9497 0.726 0.9643 0.7341 0.9496 0.726 0.9643 0.7333 0.9651 0.7341 0.9496 0.7254 0.9497 0.7341 0.9496 0.7341 0.936 0.7254 0.9497 0.7341 0.936 0.7238 0.9378 0.7238 0.9378 0.7341 0.936 0.7342 0.9221 0.7238 0.9378 0.7342 0.9221 0.7218 0.9222 0.7238 0.9378 0.7218 0.9222 0.7122 0.924 0.7218 0.9222 0.718 0.9134 0.7122 0.924 0.718 0.9134 0.7218 0.9222 0.7265 0.9115 0.7265 0.9115 0.7218 0.9222 0.7342 0.9221 0.718 0.9134 0.7265 0.9115 0.7184 0.8941 0.718 0.9134 0.7184 0.8941 0.7107 0.894 0.718 0.9134 0.7107 0.894 0.7088 0.9126 0.718 0.9134 0.7088 0.9126 0.7122 0.924 0.7122 0.924 0.7088 0.9126 0.6978 0.9117 0.7122 0.924 0.6978 0.9117 0.6937 0.9186 0.6978 0.9117 0.7088 0.9126 0.7045 0.9072 0.7045 0.9072 0.7088 0.9126 0.7107 0.894 0.7045 0.9072 0.7107 0.894 0.7044 0.8924 0.7045 0.9072 0.7035 0.9074 0.6978 0.9117 0.6978 0.9117 0.7035 0.9074 0.6948 0.8891 0.7035 0.9074 0.7022 0.8882 0.6948 0.8891 0.6948 0.8891 0.7022 0.8882 0.7017 0.8818 0.6948 0.8891 0.7017 0.8818 0.6943 0.883 0.6948 0.8891 0.6943 0.883 0.6886 0.8896 0.6948 0.8891 0.6886 0.8896 0.6978 0.9117 0.6886 0.8896 0.6897 0.9112 0.6978 0.9117 0.6978 0.9117 0.6897 0.9112 0.6937 0.9186 0.6937 0.9186 0.6897 0.9112 0.6773 0.913 0.6937 0.9186 0.6773 0.913 0.6723 0.9204 0.6773 0.913 0.6897 0.9112 0.6843 0.9061 0.6843 0.9061 0.6897 0.9112 0.6886 0.8896 0.6843 0.9061 0.6886 0.8896 0.6834 0.8888 0.6834 0.8888 0.6886 0.8896 0.6883 0.8836 0.6883 0.8836 0.6886 0.8896 0.6943 0.883 0.6834 0.8888 0.6883 0.8836 0.6832 0.8824 0.6883 0.8836 0.6943 0.883 0.6934 0.8665 0.6934 0.8665 0.6943 0.883 0.7017 0.8818 0.6934 0.8665 0.7017 0.8818 0.7003 0.8645 0.6934 0.8665 0.7003 0.8645 0.6996 0.8582 0.6934 0.8665 0.6996 0.8582 0.6934 0.8604 0.6934 0.8604 0.6996 0.8582 0.6975 0.8461 0.6934 0.8665 0.6934 0.8604 0.6879 0.8677 0.6934 0.8665 0.6879 0.8677 0.6883 0.8836 0.6883 0.8836 0.6879 0.8677 0.6832 0.8824 0.6879 0.8677 0.6831 0.8666 0.6832 0.8824 0.6831 0.8666 0.6879 0.8677 0.688 0.8615 0.688 0.8615 0.6879 0.8677 0.6934 0.8604 0.6831 0.8666 0.688 0.8615 0.6832 0.8602 0.6832 0.8602 0.688 0.8615 0.6835 0.8485 0.688 0.8615 0.6886 0.85 0.6835 0.8485 0.6835 0.8485 0.6886 0.85 0.6876 0.8422 0.6886 0.85 0.688 0.8615 0.6938 0.85 0.6876 0.8422 0.6886 0.85 0.6938 0.85 0.688 0.8615 0.6934 0.8604 0.6938 0.85 0.6938 0.85 0.6934 0.8604 0.6975 0.8461 0.6938 0.85 0.6975 0.8461 0.6933 0.8415 0.6938 0.85 0.6933 0.8415 0.6876 0.8422 0.6843 0.9061 0.6814 0.9058 0.6773 0.913 0.6773 0.913 0.6814 0.9058 0.6719 0.8888 0.6814 0.9058 0.6782 0.8861 0.6719 0.8888 0.6719 0.8888 0.6782 0.8861 0.6773 0.8798 0.6719 0.8888 0.6773 0.8798 0.6709 0.8828 0.6719 0.8888 0.6709 0.8828 0.6653 0.8902 0.6719 0.8888 0.6653 0.8902 0.6773 0.913 0.6653 0.8902 0.6673 0.9132 0.6773 0.913 0.6773 0.913 0.6673 0.9132 0.6723 0.9204 0.6723 0.9204 0.6673 0.9132 0.6541 0.9296 0.6673 0.9132 0.6549 0.9165 0.6541 0.9296 0.6541 0.9296 0.6549 0.9165 0.6475 0.9179 0.6541 0.9296 0.6475 0.9179 0.6422 0.9285 0.6475 0.9179 0.6401 0.9198 0.6422 0.9285 0.6401 0.9198 0.6475 0.9179 0.6423 0.9011 0.6423 0.9011 0.6475 0.9179 0.6549 0.9165 0.6423 0.9011 0.6549 0.9165 0.6499 0.8992 0.6499 0.8992 0.6549 0.9165 0.6593 0.91 0.6593 0.91 0.6549 0.9165 0.6673 0.9132 0.6593 0.91 0.6673 0.9132 0.6613 0.9097 0.6613 0.9097 0.6673 0.9132 0.6653 0.8902 0.6613 0.9097 0.6653 0.8902 0.6591 0.8907 0.6591 0.8907 0.6653 0.8902 0.6648 0.8841 0.6648 0.8841 0.6653 0.8902 0.6709 0.8828 0.6591 0.8907 0.6648 0.8841 0.6585 0.8843 0.6648 0.8841 0.6709 0.8828 0.6688 0.8657 0.6688 0.8657 0.6709 0.8828 0.6773 0.8798 0.6688 0.8657 0.6773 0.8798 0.6752 0.8632 0.6688 0.8657 0.6752 0.8632 0.6739 0.8571 0.6688 0.8657 0.6739 0.8571 0.6681 0.8597 0.6681 0.8597 0.6739 0.8571 0.6699 0.8438 0.6688 0.8657 0.6681 0.8597 0.6629 0.867 0.6688 0.8657 0.6629 0.867 0.6648 0.8841 0.6648 0.8841 0.6629 0.867 0.6585 0.8843 0.6629 0.867 0.6572 0.8659 0.6585 0.8843 0.6572 0.8659 0.6629 0.867 0.6622 0.861 0.6622 0.861 0.6629 0.867 0.6681 0.8597 0.6572 0.8659 0.6622 0.861 0.6569 0.8596 0.6569 0.8596 0.6622 0.861 0.656 0.8444 0.6622 0.861 0.6604 0.8448 0.656 0.8444 0.656 0.8444 0.6604 0.8448 0.6591 0.8389 0.6591 0.8389 0.6604 0.8448 0.6657 0.8382 0.6604 0.8448 0.6659 0.8444 0.6657 0.8382 0.6659 0.8444 0.6604 0.8448 0.6622 0.861 0.6659 0.8444 0.6622 0.861 0.6681 0.8597 0.6659 0.8444 0.6681 0.8597 0.6699 0.8438 0.6659 0.8444 0.6699 0.8438 0.6657 0.8382 0.6593 0.91 0.6553 0.8951 0.6499 0.8992 0.6499 0.8992 0.6553 0.8951 0.6536 0.8893 0.6499 0.8992 0.6536 0.8893 0.6482 0.8934 0.6499 0.8992 0.6482 0.8934 0.6423 0.9011 0.6482 0.8934 0.6536 0.8893 0.6445 0.8805 0.6536 0.8893 0.6494 0.8775 0.6445 0.8805 0.6445 0.8805 0.6494 0.8775 0.6471 0.8716 0.6445 0.8805 0.6471 0.8716 0.6426 0.8748 0.6426 0.8748 0.6471 0.8716 0.6398 0.8589 0.6426 0.8748 0.6398 0.8589 0.637 0.8616 0.637 0.8616 0.6398 0.8589 0.6351 0.8566 0.637 0.8616 0.6351 0.8566 0.63 0.8577 0.637 0.8616 0.63 0.8577 0.6311 0.8629 0.63 0.8577 0.6274 0.8606 0.6311 0.8629 0.637 0.8616 0.6311 0.8629 0.6346 0.8762 0.6274 0.8606 0.6346 0.8762 0.6311 0.8629 0.637 0.8616 0.6346 0.8762 0.6426 0.8748 0.6426 0.8748 0.6346 0.8762 0.6363 0.882 0.6426 0.8748 0.6363 0.882 0.6445 0.8805 0.6445 0.8805 0.6363 0.882 0.6404 0.8953 0.6445 0.8805 0.6404 0.8953 0.6482 0.8934 0.6482 0.8934 0.6404 0.8953 0.6423 0.9011 0.6423 0.9011 0.6404 0.8953 0.6356 0.9019 0.6423 0.9011 0.6356 0.9019 0.6401 0.9198 0.6404 0.8953 0.6341 0.8959 0.6356 0.9019 0.6341 0.8959 0.6404 0.8953 0.6363 0.882 0.6341 0.8959 0.6363 0.882 0.63 0.8811 0.63 0.8811 0.6363 0.882 0.6346 0.8762 0.63 0.8811 0.6346 0.8762 0.6286 0.8748 0.6286 0.8748 0.6346 0.8762 0.6274 0.8606 0.6401 0.9198 0.6354 0.9277 0.6422 0.9285 0.6422 0.9285 0.6354 0.9277 0.6339 0.9365 0.6422 0.9285 0.6339 0.9365 0.6436 0.9394 0.6436 0.9394 0.6339 0.9365 0.634 0.9422 0.6436 0.9394 0.634 0.9422 0.6414 0.9485 0.6414 0.9485 0.634 0.9422 0.633 0.945 0.6414 0.9485 0.633 0.945 0.6369 0.9607 0.6369 0.9607 0.633 0.945 0.6285 0.9456 0.6369 0.9607 0.6285 0.9456 0.6266 0.9553 0.6369 0.9607 0.6266 0.9553 0.6274 0.9686 0.6266 0.9553 0.621 0.9639 0.6274 0.9686 0.621 0.9639 0.6266 0.9553 0.6161 0.9504 0.6161 0.9504 0.6266 0.9553 0.6285 0.9456 0.6161 0.9504 0.6285 0.9456 0.6184 0.9422 0.6161 0.9504 0.6184 0.9422 0.6091 0.9471 0.6184 0.9422 0.6115 0.9398 0.6091 0.9471 0.6091 0.9471 0.6115 0.9398 0.6037 0.9371 0.6091 0.9471 0.6037 0.9371 0.6045 0.9446 0.6045 0.9446 0.6037 0.9371 0.597 0.9427 0.6037 0.9371 0.5953 0.9382 0.597 0.9427 0.597 0.9427 0.5953 0.9382 0.5904 0.9404 0.597 0.9427 0.5904 0.9404 0.5935 0.9458 0.597 0.9427 0.5935 0.9458 0.6045 0.9446 0.5935 0.9458 0.5979 0.9511 0.6045 0.9446 0.6045 0.9446 0.5979 0.9511 0.6043 0.9558 0.6045 0.9446 0.6043 0.9558 0.6091 0.9471 0.6091 0.9471 0.6043 0.9558 0.6111 0.9591 0.6091 0.9471 0.6111 0.9591 0.6161 0.9504 0.6161 0.9504 0.6111 0.9591 0.621 0.9639 0.5572 0.2409999 0.5585 0.2196 0.5605 0.2194 0.5605 0.2194 0.5585 0.2196 0.545 0.2038 0.5605 0.2194 0.545 0.2038 0.5602 0.1926 0.5602 0.1926 0.545 0.2038 0.5514 0.1868 0.545 0.2038 0.5304 0.196 0.5514 0.1868 0.5304 0.196 0.545 0.2038 0.527 0.2 0.5304 0.196 0.527 0.2 0.5062 0.202 0.5304 0.196 0.5062 0.202 0.5049 0.1992 0.5049 0.1992 0.5062 0.202 0.4855 0.2057 0.2667 0.097 0.2967 0.0819 0.2923 0.1005 0.2667 0.097 0.2923 0.1005 0.2673 0.1152999 0.2667 0.097 0.2673 0.1152999 0.2406 0.1111 0.2673 0.1152999 0.2923 0.1005 0.2936 0.1086 0.2406 0.1111 0.2673 0.1152999 0.2459 0.1224 0.2406 0.1111 0.2459 0.1224 0.2211 0.1177999 0.2459 0.1224 0.2190999 0.1365 0.2211 0.1177999 0.2211 0.1177999 0.2190999 0.1365 0.2100999 0.1367 0.2211 0.1177999 0.2100999 0.1367 0.2103 0.1165 0.2103 0.1165 0.2100999 0.1367 0.1895 0.1247 0.2103 0.1165 0.1895 0.1247 0.1906 0.1094 0.1906 0.1094 0.1895 0.1247 0.1662999 0.1101 0.1906 0.1094 0.1662999 0.1101 0.1665 0.09359997 0.1665 0.09359997 0.1662999 0.1101 0.1463 0.101 0.1665 0.09359997 0.1463 0.101 0.1479 0.08439999 0.1479 0.08439999 0.1463 0.101 0.1093 0.0988 0.1479 0.08439999 0.1093 0.0988 0.11 0.07909995 0.1093 0.0988 0.1463 0.101 0.1438 0.1098 0.1438 0.1098 0.1463 0.101 0.1613 0.1133 0.1438 0.1098 0.1613 0.1133 0.1606 0.1167 0.1606 0.1167 0.1613 0.1133 0.1772 0.1231999 0.1606 0.1167 0.1772 0.1231999 0.1759 0.1247 0.1759 0.1247 0.1772 0.1231999 0.1919 0.1303 0.1772 0.1231999 0.1924999 0.1288 0.1919 0.1303 0.1759 0.1247 0.1919 0.1303 0.1914 0.1317999 0.1759 0.1247 0.1914 0.1317999 0.1746 0.1261 0.1759 0.1247 0.1746 0.1261 0.1597999 0.1201 0.1759 0.1247 0.1597999 0.1201 0.1606 0.1167 0.1606 0.1167 0.1597999 0.1201 0.1414 0.1187 0.1606 0.1167 0.1414 0.1187 0.1438 0.1098 0.1438 0.1098 0.1414 0.1187 0.1088 0.1138 0.1438 0.1098 0.1088 0.1138 0.109 0.1062999 0.1438 0.1098 0.109 0.1062999 0.1093 0.0988 0.1093 0.0988 0.109 0.1062999 0.0805 0.09759998 0.0805 0.09759998 0.109 0.1062999 0.1088 0.1138 0.0805 0.09759998 0.1088 0.1138 0.0776 0.1107 0.0805 0.09759998 0.0776 0.1107 0.0496 0.0999 0.0776 0.1107 0.04899996 0.1075 0.0496 0.0999 0.0496 0.0999 0.04899996 0.1075 0.01629996 0.0999 0.04899996 0.1075 0.01849997 0.1068 0.01629996 0.0999 0.0496 0.0999 0.01629996 0.0999 0.01419997 0.09299999 0.0496 0.0999 0.01419997 0.09299999 0.05019998 0.09219998 0.0496 0.0999 0.05019998 0.09219998 0.0805 0.09759998 0.05019998 0.09219998 0.01419997 0.09299999 0.01469999 0.07449996 0.05019998 0.09219998 0.01469999 0.07449996 0.04899996 0.07029998 0.05019998 0.09219998 0.04899996 0.07029998 0.0798 0.0722 0.05019998 0.09219998 0.0798 0.0722 0.07879996 0.08329999 0.05019998 0.09219998 0.07879996 0.08329999 0.0805 0.09759998 0.07879996 0.08329999 0.0798 0.0722 0.09039998 0.07299995 0.0805 0.09759998 0.07879996 0.08329999 0.08819997 0.08569997 0.0805 0.09759998 0.08819997 0.08569997 0.1093 0.0988 0.08819997 0.08569997 0.07879996 0.08329999 0.09039998 0.07299995 0.1093 0.0988 0.08819997 0.08569997 0.11 0.07909995 0.09039998 0.07299995 0.11 0.07909995 0.08819997 0.08569997 0.2591 0.147 0.2561 0.1364 0.2894 0.1364 0.2591 0.147 0.2894 0.1364 0.2916 0.1464 0.2591 0.147 0.2916 0.1464 0.2615 0.174 0.2916 0.1464 0.2894 0.1364 0.3232 0.1450999 0.2615 0.174 0.2916 0.1464 0.294 0.1712999 0.3232 0.1450999 0.294 0.1712999 0.2916 0.1464 0.2615 0.174 0.294 0.1712999 0.292 0.1797 0.2615 0.174 0.292 0.1797 0.2633 0.1809999 0.292 0.1797 0.294 0.1712999 0.3252 0.1709 0.3252 0.1709 0.294 0.1712999 0.3232 0.1450999 0.292 0.1797 0.3252 0.1709 0.327 0.1748999 0.327 0.1748999 0.3252 0.1709 0.3517 0.1702 0.327 0.1748999 0.3517 0.1702 0.3517 0.175 0.3517 0.1702 0.3252 0.1709 0.3519 0.1441 0.3252 0.1709 0.3232 0.1450999 0.3519 0.1441 0.3519 0.1441 0.3232 0.1450999 0.3194 0.1364 0.3194 0.1364 0.3232 0.1450999 0.2894 0.1364 0.3519 0.1441 0.3194 0.1364 0.3517 0.1364 0.3519 0.1441 0.3517 0.1364 0.3835 0.1467 0.3517 0.1364 0.3857 0.1364 0.3835 0.1467 0.3519 0.1441 0.3835 0.1467 0.3798 0.1719 0.3519 0.1441 0.3798 0.1719 0.3517 0.1702 0.3517 0.1702 0.3798 0.1719 0.3517 0.175 0.3798 0.1719 0.3745 0.1766999 0.3517 0.175 0.3745 0.1766999 0.3798 0.1719 0.4088 0.1737 0.4088 0.1737 0.3798 0.1719 0.3835 0.1467 0.3745 0.1766999 0.4088 0.1737 0.4025 0.1787 0.3835 0.1467 0.4116 0.1475999 0.4088 0.1737 0.4116 0.1475999 0.3835 0.1467 0.3857 0.1364 0.4116 0.1475999 0.3857 0.1364 0.4158 0.1364 0.4116 0.1475999 0.4158 0.1364 0.4292 0.1492 0.4158 0.1364 0.4405 0.136 0.4292 0.1492 0.4116 0.1475999 0.4292 0.1492 0.4246 0.1766 0.4116 0.1475999 0.4246 0.1766 0.4088 0.1737 0.4088 0.1737 0.4246 0.1766 0.4025 0.1787 0.4246 0.1766 0.4244 0.1819 0.4025 0.1787 0.4244 0.1819 0.4246 0.1766 0.4409 0.179 0.4244 0.1819 0.4409 0.179 0.4407 0.1834 0.4407 0.1834 0.4409 0.179 0.4464 0.1788 0.4407 0.1834 0.4464 0.1788 0.4596 0.1838999 0.4464 0.1788 0.4613 0.1776 0.4596 0.1838999 0.4596 0.1838999 0.4613 0.1776 0.4672 0.1764 0.4596 0.1838999 0.4672 0.1764 0.477 0.1820999 0.477 0.1820999 0.4672 0.1764 0.4838 0.1744 0.477 0.1820999 0.4838 0.1744 0.493 0.1791 0.4838 0.1744 0.4903 0.1738 0.493 0.1791 0.493 0.1791 0.4903 0.1738 0.5058 0.1764 0.493 0.1791 0.5058 0.1764 0.513 0.1794 0.5058 0.1764 0.5114 0.1751 0.513 0.1794 0.513 0.1794 0.5114 0.1751 0.5374 0.1797 0.5114 0.1751 0.5282 0.1759999 0.5374 0.1797 0.5374 0.1797 0.5282 0.1759999 0.5589 0.1705999 0.5374 0.1797 0.5589 0.1705999 0.5561 0.1766999 0.5589 0.1705999 0.5282 0.1759999 0.5584 0.1445 0.5282 0.1759999 0.5272 0.1439 0.5584 0.1445 0.5584 0.1445 0.5272 0.1439 0.5539 0.1364 0.5272 0.1439 0.5275 0.1364 0.5539 0.1364 0.5275 0.1364 0.5272 0.1439 0.5098 0.1468 0.5275 0.1364 0.5098 0.1468 0.4978 0.1358 0.4978 0.1358 0.5098 0.1468 0.5033 0.1475 0.4978 0.1358 0.5033 0.1475 0.4868 0.147 0.4978 0.1358 0.4868 0.147 0.4828 0.1489 0.4978 0.1358 0.4828 0.1489 0.4679 0.1502 0.4978 0.1358 0.4679 0.1502 0.4686 0.1348 0.4679 0.1502 0.4639 0.1504 0.4686 0.1348 0.4686 0.1348 0.4639 0.1504 0.4405 0.136 0.4639 0.1504 0.4488 0.1488 0.4405 0.136 0.4405 0.136 0.4488 0.1488 0.4448 0.1483 0.4405 0.136 0.4448 0.1483 0.4292 0.1492 0.9781 0.3432 0.9706 0.3425 0.9695 0.3295 0.9781 0.3432 0.9695 0.3295 0.9764 0.3262 0.9672 0.3259 0.9423 0.3267 0.9403 0.3195 0.9672 0.3259 0.9403 0.3195 0.9676 0.3183 0.9429 0.3429 0.9419 0.3285 0.9668 0.3285 0.9429 0.3429 0.9668 0.3285 0.9675 0.3416 0.94 0.3541 0.9423 0.3462 0.9669 0.3466 0.94 0.3541 0.9669 0.3466 0.9682 0.3541 0.9674 0.364 0.939 0.3619 0.9399 0.3559 0.9674 0.364 0.9399 0.3559 0.968 0.358 0.9405 0.3733 0.9392 0.3655 0.9676 0.3668 0.9405 0.3733 0.9676 0.3668 0.9659 0.3745 0.9659 0.3904 0.9407 0.3896 0.941 0.3765 0.9659 0.3904 0.941 0.3765 0.9664 0.3765 0.94 0.3291 0.9405 0.3434 0.9324 0.3453 0.94 0.3291 0.9324 0.3453 0.9326 0.3274 0.9687 0.5188 0.9684 0.5045 0.9754 0.5032 0.9687 0.5188 0.9754 0.5032 0.9762 0.5218 0.9387 0.488 0.9673 0.488 0.967 0.4951 0.9387 0.488 0.967 0.4951 0.9386 0.4942 0.9383 0.4861 0.9401 0.4779 0.9655 0.4788 0.9383 0.4861 0.9655 0.4788 0.9669 0.4864 0.9661 0.5037 0.9401 0.5034 0.9389 0.4969 0.9661 0.5037 0.9389 0.4969 0.9672 0.4968 0.9662 0.5051 0.966 0.5193 0.9415 0.5198 0.9662 0.5051 0.9415 0.5198 0.9402 0.505 0.9387 0.5291 0.9405 0.5219 0.965 0.5219 0.9387 0.5291 0.965 0.5219 0.9665 0.5298 0.9316 0.5044 0.9382 0.5049 0.9391 0.5198 0.9316 0.5044 0.9391 0.5198 0.9322 0.5227 0.9398 0.477 0.9401 0.4629 0.9651 0.4626 0.9398 0.477 0.9651 0.4626 0.9653 0.4771 0.9674 0.4772 0.9675 0.4628 0.9755 0.4615 0.9674 0.4772 0.9755 0.4615 0.975 0.4786 0.9378 0.4431 0.9395 0.4357 0.9649 0.4367 0.9378 0.4431 0.9649 0.4367 0.9659 0.4438 0.9383 0.4517 0.9386 0.4451 0.9667 0.4454 0.9383 0.4517 0.9667 0.4454 0.9666 0.4513 0.9385 0.4537 0.9668 0.4536 0.965 0.4613 0.9385 0.4537 0.965 0.4613 0.9401 0.4609 0.9386 0.4017 0.9663 0.4025 0.9656 0.4083 0.9386 0.4017 0.9656 0.4083 0.9388 0.408 0.9386 0.3991 0.9404 0.3918 0.9655 0.3933 0.9386 0.3991 0.9655 0.3933 0.9663 0.4007 0.94 0.4183 0.9384 0.4104 0.9653 0.4114 0.94 0.4183 0.9653 0.4114 0.9646 0.4187 0.9381 0.3763 0.9371 0.3893 0.9296 0.39 0.9381 0.3763 0.9296 0.39 0.9303 0.3745 0.9371 0.476 0.9291 0.4784 0.93 0.4612 0.9371 0.476 0.93 0.4612 0.9373 0.4618 0.9761 0.3931 0.9688 0.3913 0.9701 0.3775 0.9761 0.3931 0.9701 0.3775 0.9779 0.3764 0.9404 0.4204 0.965 0.4204 0.9652 0.4344 0.9404 0.4204 0.9652 0.4344 0.9398 0.4344 0.9372 0.4348 0.9298 0.436 0.9302 0.4189 0.9372 0.4348 0.9302 0.4189 0.938 0.4208 0.9754 0.4191 0.9757 0.4358 0.9687 0.4346 0.9754 0.4191 0.9687 0.4346 0.9683 0.4207 0.249 0.1274999 0.2315 0.1360999 0.231 0.1344 0.249 0.1274999 0.231 0.1344 0.2487 0.1259 0.2487 0.1259 0.231 0.1344 0.2305999 0.1328999 0.2487 0.1259 0.2305999 0.1328999 0.2483 0.1237 0.2487 0.1259 0.2483 0.1237 0.2686 0.1189 0.2487 0.1259 0.2686 0.1189 0.249 0.1274999 0.2686 0.1189 0.27 0.1241 0.249 0.1274999 0.27 0.1241 0.2686 0.1189 0.2948 0.1168 0.2686 0.1189 0.2936 0.1086 0.2948 0.1168 0.2936 0.1086 0.2686 0.1189 0.2673 0.1152999 0.2673 0.1152999 0.2686 0.1189 0.2483 0.1237 0.6798 0.1 0.6576 0.1 0.659 0.0521 0.6798 0.1 0.659 0.0521 0.6783 0.0521 0.6798 0.1 0.6783 0.0521 0.7026 0.1 0.6783 0.0521 0.7044 0.05239999 0.7026 0.1 0.7026 0.1 0.7044 0.05239999 0.7348 0.1 0.7044 0.05239999 0.7361 0.05309998 0.7348 0.1 0.7348 0.1 0.7361 0.05309998 0.7597 0.05189996 0.7348 0.1 0.7597 0.05189996 0.7586 0.1 0.7586 0.1 0.7597 0.05189996 0.784 0.05339998 0.7586 0.1 0.784 0.05339998 0.7839 0.1 0.7839 0.1 0.784 0.05339998 0.8132 0.1 0.784 0.05339998 0.8105 0.05249994 0.8132 0.1 0.8132 0.1 0.8105 0.05249994 0.8489 0.1 0.8105 0.05249994 0.8485 0.05199998 0.8489 0.1 0.8953 0.408 0.9007 0.4088 0.8932 0.435 0.9007 0.4088 0.8953 0.408 0.8989 0.3856 0.9007 0.4088 0.8989 0.3856 0.9067 0.3865 0.9067 0.3865 0.8989 0.3856 0.8996 0.3629 0.9067 0.3865 0.8996 0.3629 0.9094 0.3629 0.9094 0.3629 0.8996 0.3629 0.9021 0.3321 0.8996 0.3629 0.8974 0.3394 0.9021 0.3321 0.9021 0.3321 0.8974 0.3394 0.896 0.3122 0.8974 0.3394 0.8935 0.3125 0.896 0.3122 0.896 0.3122 0.8935 0.3125 0.893 0.2905 0.896 0.3122 0.893 0.2905 0.8968 0.2906 1.659 0.0521 1.6576 0.1 1.6798 0.1 1.659 0.0521 1.6798 0.1 1.6783 0.0521 1.6783 0.0521 1.6798 0.1 1.7026 0.1 1.6783 0.0521 1.7026 0.1 1.7044 0.05239999 1.7044 0.05239999 1.7026 0.1 1.7348 0.1 1.7044 0.05239999 1.7348 0.1 1.7361 0.05309998 1.7361 0.05309998 1.7348 0.1 1.7597 0.05189996 1.7348 0.1 1.7586 0.1 1.7597 0.05189996 1.7597 0.05189996 1.7586 0.1 1.784 0.05339998 1.7586 0.1 1.7839 0.1 1.784 0.05339998 1.784 0.05339998 1.7839 0.1 1.8132 0.1 1.784 0.05339998 1.8132 0.1 1.8105 0.05249994 1.8105 0.05249994 1.8132 0.1 1.8489 0.1 1.8105 0.05249994 1.8489 0.1 1.8485 0.05199998 1.8953 0.408 1.8932 0.435 1.9007 0.4088 1.8953 0.408 1.9007 0.4088 1.8989 0.3856 1.9007 0.4088 1.9067 0.3865 1.8989 0.3856 1.8989 0.3856 1.9067 0.3865 1.8996 0.3629 1.9067 0.3865 1.9094 0.3629 1.8996 0.3629 1.8996 0.3629 1.9094 0.3629 1.9021 0.3321 1.8996 0.3629 1.9021 0.3321 1.8974 0.3394 1.8974 0.3394 1.9021 0.3321 1.896 0.3122 1.8974 0.3394 1.896 0.3122 1.8935 0.3125 1.8935 0.3125 1.896 0.3122 1.893 0.2905 1.896 0.3122 1.8968 0.2906 1.893 0.2905 0.9669 0.8627 0.9578 0.8627 0.9585 0.8599 0.9669 0.8627 0.9585 0.8599 0.9662 0.8599 0.9389 0.8314 0.9482 0.8314 0.9474 0.8341 0.9389 0.8314 0.9474 0.8341 0.9397 0.8341 0.948 0.8623 0.9387 0.8623 0.9395 0.8595 0.948 0.8623 0.9395 0.8595 0.9472 0.8595 0.9657 0.8584 0.958 0.8583 0.958 0.847 0.9657 0.8584 0.958 0.847 0.9658 0.847 0.9658 0.847 0.958 0.847 0.9581 0.8356 0.9658 0.847 0.9581 0.8356 0.9658 0.8356 0.9696 0.8594 0.9668 0.8586 0.9668 0.8472 0.9696 0.8594 0.9668 0.8472 0.9699 0.8472 0.9699 0.8472 0.9668 0.8472 0.9669 0.8358 0.9699 0.8472 0.9669 0.8358 0.9697 0.8351 0.9547 0.8352 0.9574 0.836 0.9572 0.8474 0.9547 0.8352 0.9572 0.8474 0.954 0.8473 0.954 0.8473 0.9572 0.8474 0.9565 0.8588 0.954 0.8473 0.9565 0.8588 0.9537 0.8594 0.947 0.8581 0.9393 0.8581 0.9392 0.8467 0.947 0.8581 0.9392 0.8467 0.9471 0.8467 0.9471 0.8467 0.9392 0.8467 0.9393 0.8353 0.9471 0.8467 0.9393 0.8353 0.947 0.8353 0.9507 0.8591 0.9479 0.8583 0.9479 0.8469 0.9507 0.8591 0.9479 0.8469 0.9511 0.8469 0.9511 0.8469 0.9479 0.8469 0.948 0.8355 0.9511 0.8469 0.948 0.8355 0.9508 0.8347 0.9358 0.8348 0.9385 0.8357 0.9384 0.8471 0.9358 0.8348 0.9384 0.8471 0.9353 0.847 0.9353 0.847 0.9384 0.8471 0.9382 0.8585 0.9353 0.847 0.9382 0.8585 0.9354 0.8592 0.06929999 0.372 0.06209999 0.3549 0.06419998 0.3428 0.06209999 0.3549 0.04889994 0.3452 0.06419998 0.3428 0.04889994 0.3452 0.05659997 0.3278 0.06419998 0.3428 0.05659997 0.3278 0.04889994 0.3452 0.03329998 0.3414 0.06419998 0.3428 0.05659997 0.3278 0.07649999 0.326 0.06419998 0.3428 0.07649999 0.326 0.09179997 0.3389 0.07649999 0.326 0.05659997 0.3278 0.0557 0.3031 0.0557 0.3031 0.05659997 0.3278 0.03169995 0.305 0.05659997 0.3278 0.03209996 0.3249 0.03169995 0.305 0.03209996 0.3249 0.05659997 0.3278 0.03329998 0.3414 0.03209996 0.3249 0.03329998 0.3414 0.01029998 0.339 0.03209996 0.3249 0.01029998 0.339 0.01029998 0.3276 0.03209996 0.3249 0.01029998 0.3276 0.01029998 0.3072 0.03209996 0.3249 0.01029998 0.3072 0.03169995 0.305 0.03169995 0.305 0.01029998 0.3072 0.01029998 0.2729 0.03169995 0.305 0.01029998 0.2729 0.03069996 0.2719 0.03169995 0.305 0.03069996 0.2719 0.0557 0.3031 0.03069996 0.2719 0.01029998 0.2729 0.03249996 0.2481999 0.03249996 0.2481999 0.01029998 0.2729 0.01029998 0.2421 0.03069996 0.2719 0.03249996 0.2481999 0.05479997 0.269 0.03069996 0.2719 0.05479997 0.269 0.0557 0.3031 0.0557 0.3031 0.05479997 0.269 0.07889997 0.3004 0.0557 0.3031 0.07889997 0.3004 0.07649999 0.326 0.07649999 0.326 0.07889997 0.3004 0.09229999 0.3253 0.07649999 0.326 0.09229999 0.3253 0.09179997 0.3389 0.09179997 0.3389 0.09229999 0.3253 0.09959995 0.3412 0.09179997 0.3389 0.09959995 0.3412 0.1044 0.3655 0.09179997 0.3389 0.1044 0.3655 0.1031 0.3658 0.1031 0.3658 0.1044 0.3655 0.1093 0.3805 0.1031 0.3658 0.1093 0.3805 0.1075 0.3858 0.1093 0.3805 0.1044 0.3655 0.1152999 0.3785 0.1044 0.3655 0.1103 0.3655 0.1152999 0.3785 0.1103 0.3655 0.1044 0.3655 0.09959995 0.3412 0.1103 0.3655 0.09959995 0.3412 0.1065 0.3461 0.1065 0.3461 0.09959995 0.3412 0.1080999 0.3233 0.09959995 0.3412 0.1013 0.3228 0.1080999 0.3233 0.1013 0.3228 0.09959995 0.3412 0.09229999 0.3253 0.1080999 0.3233 0.1013 0.3228 0.1152 0.2934 0.1013 0.3228 0.09229999 0.3253 0.1005 0.2929 0.1005 0.2929 0.09229999 0.3253 0.07889997 0.3004 0.1005 0.2929 0.07889997 0.3004 0.08489996 0.2633 0.08489996 0.2633 0.07889997 0.3004 0.05479997 0.269 0.08489996 0.2633 0.05479997 0.269 0.05709999 0.2484 0.05709999 0.2484 0.05479997 0.269 0.03249996 0.2481999 0.05709999 0.2484 0.03249996 0.2481999 0.0309 0.222 0.0309 0.222 0.03249996 0.2481999 0.01029998 0.2421 0.0309 0.222 0.01029998 0.2421 0.01029998 0.2192 0.0309 0.222 0.01029998 0.2192 0.01029998 0.1906 0.0309 0.222 0.01029998 0.1906 0.03359997 0.1917999 0.03359997 0.1917999 0.01029998 0.1906 0.01029998 0.1662999 0.03359997 0.1917999 0.01029998 0.1662999 0.03689998 0.1662999 0.03359997 0.1917999 0.03689998 0.1662999 0.06709998 0.1911 0.03689998 0.1662999 0.06809997 0.1662999 0.06709998 0.1911 0.06709998 0.1911 0.06809997 0.1662999 0.104 0.1662999 0.06709998 0.1911 0.104 0.1662999 0.1018 0.1881 0.1018 0.1881 0.104 0.1662999 0.1414 0.1841 0.104 0.1662999 0.1445 0.1662999 0.1414 0.1841 0.1414 0.1841 0.1445 0.1662999 0.1773999 0.1662999 0.1773999 0.1662999 0.1743 0.1817 0.1414 0.1841 0.1414 0.1841 0.1743 0.1817 0.1421999 0.2016 0.1414 0.1841 0.1421999 0.2016 0.1018 0.1881 0.1421999 0.2016 0.1743 0.1817 0.1662999 0.2131 0.1018 0.1881 0.1421999 0.2016 0.1032 0.222 0.1018 0.1881 0.1032 0.222 0.06709998 0.1911 0.1032 0.222 0.0636 0.2236 0.06709998 0.1911 0.06709998 0.1911 0.0636 0.2236 0.03359997 0.1917999 0.0636 0.2236 0.0309 0.222 0.03359997 0.1917999 0.0309 0.222 0.0636 0.2236 0.05709999 0.2484 0.05709999 0.2484 0.0636 0.2236 0.08069998 0.2497 0.05709999 0.2484 0.08069998 0.2497 0.08489996 0.2633 0.0636 0.2236 0.1032 0.222 0.08069998 0.2497 0.08489996 0.2633 0.08069998 0.2497 0.1246 0.2501 0.08489996 0.2633 0.1246 0.2501 0.1005 0.2929 0.08069998 0.2497 0.1032 0.222 0.1246 0.2501 0.1246 0.2501 0.1032 0.222 0.147 0.2281 0.1032 0.222 0.1421999 0.2016 0.147 0.2281 0.147 0.2281 0.1421999 0.2016 0.1662999 0.2131 0.147 0.2281 0.1662999 0.2131 0.1572999 0.2307 0.1662999 0.2131 0.1747 0.2193 0.1572999 0.2307 0.147 0.2281 0.1572999 0.2307 0.1246 0.2501 0.1572999 0.2307 0.1306 0.2561 0.1246 0.2501 0.1246 0.2501 0.1306 0.2561 0.1077 0.2917 0.1246 0.2501 0.1077 0.2917 0.1005 0.2929 0.1306 0.2561 0.1152 0.2934 0.1077 0.2917 0.1005 0.2929 0.1077 0.2917 0.1013 0.3228 0.1152 0.2934 0.1013 0.3228 0.1077 0.2917 0.06929999 0.372 0.06419998 0.3428 0.06209999 0.3549 0.06209999 0.3549 0.06419998 0.3428 0.04889994 0.3452 0.04889994 0.3452 0.06419998 0.3428 0.05659997 0.3278 0.04889994 0.3452 0.05659997 0.3278 0.03329998 0.3414 0.06419998 0.3428 0.07649999 0.326 0.05659997 0.3278 0.07649999 0.326 0.06419998 0.3428 0.09179997 0.3389 0.05659997 0.3278 0.07649999 0.326 0.0557 0.3031 0.05659997 0.3278 0.0557 0.3031 0.03169995 0.305 0.05659997 0.3278 0.03169995 0.305 0.03209996 0.3249 0.05659997 0.3278 0.03209996 0.3249 0.03329998 0.3414 0.03329998 0.3414 0.03209996 0.3249 0.01029998 0.339 0.03209996 0.3249 0.01029998 0.3276 0.01029998 0.339 0.01029998 0.3276 0.03209996 0.3249 0.01029998 0.3072 0.03209996 0.3249 0.03169995 0.305 0.01029998 0.3072 0.01029998 0.3072 0.03169995 0.305 0.01029998 0.2729 0.03169995 0.305 0.03069996 0.2719 0.01029998 0.2729 0.03069996 0.2719 0.03169995 0.305 0.0557 0.3031 0.01029998 0.2729 0.03069996 0.2719 0.03249996 0.2481999 0.01029998 0.2729 0.03249996 0.2481999 0.01029998 0.2421 0.03249996 0.2481999 0.03069996 0.2719 0.05479997 0.269 0.05479997 0.269 0.03069996 0.2719 0.0557 0.3031 0.05479997 0.269 0.0557 0.3031 0.07889997 0.3004 0.07889997 0.3004 0.0557 0.3031 0.07649999 0.326 0.07889997 0.3004 0.07649999 0.326 0.09229999 0.3253 0.07649999 0.326 0.09179997 0.3389 0.09229999 0.3253 0.09179997 0.3389 0.09959995 0.3412 0.09229999 0.3253 0.09959995 0.3412 0.09179997 0.3389 0.1044 0.3655 0.09179997 0.3389 0.1031 0.3658 0.1044 0.3655 0.1044 0.3655 0.1031 0.3658 0.1093 0.3805 0.1031 0.3658 0.1075 0.3858 0.1093 0.3805 0.1044 0.3655 0.1093 0.3805 0.1152999 0.3785 0.1044 0.3655 0.1152999 0.3785 0.1103 0.3655 0.1044 0.3655 0.1103 0.3655 0.09959995 0.3412 0.1103 0.3655 0.1065 0.3461 0.09959995 0.3412 0.09959995 0.3412 0.1065 0.3461 0.1080999 0.3233 0.09959995 0.3412 0.1080999 0.3233 0.1013 0.3228 0.09959995 0.3412 0.1013 0.3228 0.09229999 0.3253 0.1013 0.3228 0.1080999 0.3233 0.1152 0.2934 0.09229999 0.3253 0.1013 0.3228 0.1005 0.2929 0.09229999 0.3253 0.1005 0.2929 0.07889997 0.3004 0.07889997 0.3004 0.1005 0.2929 0.08489996 0.2633 0.07889997 0.3004 0.08489996 0.2633 0.05479997 0.269 0.05479997 0.269 0.08489996 0.2633 0.05709999 0.2484 0.05479997 0.269 0.05709999 0.2484 0.03249996 0.2481999 0.03249996 0.2481999 0.05709999 0.2484 0.0309 0.222 0.03249996 0.2481999 0.0309 0.222 0.01029998 0.2421 0.01029998 0.2421 0.0309 0.222 0.01029998 0.2192 0.01029998 0.2192 0.0309 0.222 0.01029998 0.1906 0.0309 0.222 0.03359997 0.1917999 0.01029998 0.1906 0.01029998 0.1906 0.03359997 0.1917999 0.01029998 0.1662999 0.03359997 0.1917999 0.03689998 0.1662999 0.01029998 0.1662999 0.03689998 0.1662999 0.03359997 0.1917999 0.06709998 0.1911 0.03689998 0.1662999 0.06709998 0.1911 0.06809997 0.1662999 0.06809997 0.1662999 0.06709998 0.1911 0.104 0.1662999 0.06709998 0.1911 0.1018 0.1881 0.104 0.1662999 0.104 0.1662999 0.1018 0.1881 0.1414 0.1841 0.104 0.1662999 0.1414 0.1841 0.1445 0.1662999 0.1445 0.1662999 0.1414 0.1841 0.1773999 0.1662999 0.1414 0.1841 0.1743 0.1817 0.1773999 0.1662999 0.1743 0.1817 0.1414 0.1841 0.1421999 0.2016 0.1421999 0.2016 0.1414 0.1841 0.1018 0.1881 0.1743 0.1817 0.1421999 0.2016 0.1662999 0.2131 0.1018 0.1881 0.1032 0.222 0.1421999 0.2016 0.1032 0.222 0.1018 0.1881 0.06709998 0.1911 0.1032 0.222 0.06709998 0.1911 0.0636 0.2236 0.0636 0.2236 0.06709998 0.1911 0.03359997 0.1917999 0.0636 0.2236 0.03359997 0.1917999 0.0309 0.222 0.0636 0.2236 0.0309 0.222 0.05709999 0.2484 0.0636 0.2236 0.05709999 0.2484 0.08069998 0.2497 0.08069998 0.2497 0.05709999 0.2484 0.08489996 0.2633 0.0636 0.2236 0.08069998 0.2497 0.1032 0.222 0.08069998 0.2497 0.08489996 0.2633 0.1246 0.2501 0.1032 0.222 0.08069998 0.2497 0.1246 0.2501 0.08489996 0.2633 0.1005 0.2929 0.1246 0.2501 0.1246 0.2501 0.1005 0.2929 0.1077 0.2917 0.1077 0.2917 0.1005 0.2929 0.1013 0.3228 0.1077 0.2917 0.1013 0.3228 0.1152 0.2934 0.1077 0.2917 0.1152 0.2934 0.1306 0.2561 0.1077 0.2917 0.1306 0.2561 0.1246 0.2501 0.1246 0.2501 0.1306 0.2561 0.1572999 0.2307 0.1246 0.2501 0.1572999 0.2307 0.147 0.2281 0.1246 0.2501 0.147 0.2281 0.1032 0.222 0.147 0.2281 0.1421999 0.2016 0.1032 0.222 0.1421999 0.2016 0.147 0.2281 0.1662999 0.2131 0.1662999 0.2131 0.147 0.2281 0.1572999 0.2307 0.1662999 0.2131 0.1572999 0.2307 0.1747 0.2193 0.9036 0.1748999 0.903 0.1608999 0.9516 0.1611 0.9036 0.1748999 0.9516 0.1611 0.9514 0.1755 0.904 0.1851 0.9035 0.1777999 0.9513 0.1765 0.904 0.1851 0.9513 0.1765 0.9502 0.1838999 0.9046 0.2054 0.9043 0.1870999 0.9505 0.1855 0.9046 0.2054 0.9505 0.1855 0.9511 0.2041 0.9516 0.2151 0.9041 0.2167 0.9041 0.2074 0.9516 0.2151 0.9041 0.2074 0.9506 0.2067 0.8944 0.2439 0.8953 0.2477999 0.8909 0.2473 0.8909 0.2473 0.8953 0.2477999 0.8965 0.2679 0.8909 0.2473 0.8965 0.2679 0.8925 0.2706 0.8965 0.2679 0.8953 0.2477999 0.905 0.2651 0.8953 0.2477999 0.9039 0.2477999 0.905 0.2651 0.9055 0.2421 0.9045 0.2336 0.9523 0.2319999 0.9055 0.2421 0.9523 0.2319999 0.9514 0.2411 0.9036 0.2287 0.9032 0.2248 0.9514 0.2304 0.9032 0.2248 0.9516 0.2192 0.9514 0.2304 0.9516 0.2192 0.9032 0.2248 0.904 0.2181 0.954 0.2729 0.9063 0.276 0.9067 0.2671 0.954 0.2729 0.9067 0.2671 0.9529 0.2649 0.9066 0.2654 0.9056 0.2481 0.9514 0.2454 0.9066 0.2654 0.9514 0.2454 0.9527 0.2632 0.6686 0.04869997 0.6599 0.04729998 0.6608 0.04029995 0.6686 0.04869997 0.6608 0.04029995 0.6699 0.03899997 0.6686 0.04869997 0.6699 0.03899997 0.6999 0.04639995 0.6699 0.03899997 0.7017 0.03789997 0.6999 0.04639995 0.7017 0.03789997 0.7061 0.04689997 0.6999 0.04639995 0.7061 0.04689997 0.7017 0.03789997 0.7348 0.04689997 0.7017 0.03789997 0.7413 0.03829997 0.7348 0.04689997 0.7413 0.03829997 0.7389 0.04639995 0.7348 0.04689997 0.7389 0.04639995 0.7413 0.03829997 0.7665 0.04719996 0.7413 0.03829997 0.7676 0.0424 0.7665 0.04719996 0.7676 0.0424 0.7857 0.04719996 0.7665 0.04719996 0.9526 0.2447 0.9616 0.2432 0.9622 0.2641 0.9526 0.2447 0.9622 0.2641 0.9543 0.2626 0.9524 0.1856999 0.9598 0.1845 0.9611 0.206 0.9524 0.1856999 0.9611 0.206 0.9528 0.2043 0.9602 0.1287 0.961 0.1506 0.9532 0.149 0.9602 0.1287 0.9532 0.149 0.9534 0.1301 0.9518 0.1059 0.9518 0.1186 0.9037 0.1188 0.9518 0.1059 0.9037 0.1188 0.9036 0.1059 0.9518 0.1059 0.9036 0.1059 0.9037 0.09299999 0.9518 0.1059 0.9037 0.09299999 0.9518 0.09319996 0.9043 0.1278 0.9037 0.1211 0.9518 0.1209 0.9043 0.1278 0.9518 0.1209 0.9505 0.1277 0.9059 0.1491 0.9055 0.1304 0.9516 0.1302 0.9059 0.1491 0.9516 0.1302 0.9515 0.1491 0.9537 0.159 0.905 0.1592 0.9065 0.1518 0.9537 0.159 0.9065 0.1518 0.9521 0.1511999 0.8839 0.2352 0.8842 0.2369 0.8804 0.2425 0.8842 0.2369 0.8839 0.2352 0.8935 0.2358 0.8935 0.2358 0.8839 0.2352 0.8971 0.2178 0.8839 0.2352 0.8904 0.2147 0.8971 0.2178 0.8904 0.2147 0.8839 0.2352 0.885 0.2156 0.8839 0.2352 0.8822 0.2326 0.885 0.2156 0.8904 0.2147 0.885 0.2156 0.8857 0.2042 0.8904 0.2147 0.8857 0.2042 0.8894 0.2021 0.8904 0.2147 0.8894 0.2021 0.8916 0.2006 0.8916 0.2006 0.8894 0.2021 0.8881 0.1865 0.8916 0.2006 0.8881 0.1865 0.8989 0.1977 0.8881 0.1865 0.8945 0.1791999 0.8989 0.1977 0.8945 0.1791999 0.8881 0.1865 0.8874 0.1793 0.8874 0.1793 0.8881 0.1865 0.8796 0.1687999 0.8874 0.1793 0.8796 0.1687999 0.8809 0.1680999 1.9037 0.1748999 1.9514 0.1755 1.9516 0.1611 1.9037 0.1748999 1.9516 0.1611 1.903 0.1608999 1.904 0.1851 1.9502 0.1838999 1.9513 0.1765 1.904 0.1851 1.9513 0.1765 1.9035 0.1777999 1.9046 0.2054 1.9511 0.2041 1.9505 0.1855 1.9046 0.2054 1.9505 0.1855 1.9043 0.1870999 1.9516 0.2151 1.9506 0.2067 1.9041 0.2074 1.9516 0.2151 1.9041 0.2074 1.9041 0.2167 1.8944 0.2439 1.8909 0.2473 1.8953 0.2477999 1.8953 0.2477999 1.8909 0.2473 1.8965 0.2679 1.8909 0.2473 1.8925 0.2706 1.8965 0.2679 1.8953 0.2477999 1.8965 0.2679 1.905 0.2651 1.8953 0.2477999 1.905 0.2651 1.9039 0.2477999 1.9055 0.2421 1.9514 0.2411 1.9523 0.2319999 1.9055 0.2421 1.9523 0.2319999 1.9045 0.2336 1.9036 0.2287 1.9514 0.2304 1.9032 0.2248 1.9032 0.2248 1.9514 0.2304 1.9516 0.2192 1.9032 0.2248 1.9516 0.2192 1.904 0.2181 1.954 0.2729 1.9529 0.2649 1.9067 0.2671 1.954 0.2729 1.9067 0.2671 1.9063 0.276 1.9066 0.2654 1.9527 0.2632 1.9514 0.2454 1.9066 0.2654 1.9514 0.2454 1.9056 0.2481 1.6608 0.04029995 1.6599 0.04729998 1.6686 0.04869997 1.6608 0.04029995 1.6686 0.04869997 1.6699 0.03899997 1.6699 0.03899997 1.6686 0.04869997 1.6999 0.04639995 1.6699 0.03899997 1.6999 0.04639995 1.7017 0.03789997 1.7017 0.03789997 1.6999 0.04639995 1.7061 0.04689997 1.7017 0.03789997 1.7061 0.04689997 1.7348 0.04689997 1.7017 0.03789997 1.7348 0.04689997 1.7413 0.03829997 1.7413 0.03829997 1.7348 0.04689997 1.7389 0.04639995 1.7413 0.03829997 1.7389 0.04639995 1.7665 0.04719996 1.7413 0.03829997 1.7665 0.04719996 1.7676 0.0424 1.7676 0.0424 1.7665 0.04719996 1.7857 0.04719996 1.9526 0.2447 1.9543 0.2626 1.9622 0.2641 1.9526 0.2447 1.9622 0.2641 1.9616 0.2432 1.9524 0.1856999 1.9528 0.2043 1.9611 0.206 1.9524 0.1856999 1.9611 0.206 1.9598 0.1845 1.9602 0.1287 1.9534 0.1301 1.9532 0.149 1.9602 0.1287 1.9532 0.149 1.961 0.1506 1.9043 0.1278 1.9505 0.1277 1.9518 0.1209 1.9043 0.1278 1.9518 0.1209 1.9037 0.1211 1.9059 0.1491 1.9515 0.1491 1.9516 0.1302 1.9059 0.1491 1.9516 0.1302 1.9055 0.1304 1.9537 0.159 1.9521 0.1511999 1.9065 0.1518 1.9537 0.159 1.9065 0.1518 1.905 0.1592 1.8839 0.2352 1.8804 0.2425 1.8842 0.2369 1.8839 0.2352 1.8842 0.2369 1.8935 0.2358 1.8839 0.2352 1.8935 0.2358 1.8971 0.2178 1.8839 0.2352 1.8971 0.2178 1.8904 0.2147 1.8839 0.2352 1.8904 0.2147 1.885 0.2156 1.8839 0.2352 1.885 0.2156 1.8822 0.2326 1.885 0.2156 1.8904 0.2147 1.8857 0.2042 1.8904 0.2147 1.8894 0.2021 1.8857 0.2042 1.8894 0.2021 1.8904 0.2147 1.8916 0.2006 1.8894 0.2021 1.8916 0.2006 1.8881 0.1865 1.8881 0.1865 1.8916 0.2006 1.8989 0.1977 1.8881 0.1865 1.8989 0.1977 1.8945 0.1791999 1.8881 0.1865 1.8945 0.1791999 1.8874 0.1793 1.8881 0.1865 1.8874 0.1793 1.8796 0.1687999 1.8874 0.1793 1.8809 0.1680999 1.8796 0.1687999 0.1949 0.7616 0.1957 0.7534 0.1991 0.7636 0.1949 0.7616 0.1991 0.7636 0.1953 0.7716 0.1991 0.7636 0.2019 0.7753 0.1953 0.7716 0.1953 0.7716 0.2019 0.7753 0.1931 0.7825 0.2019 0.7753 0.2013 0.7851 0.1931 0.7825 0.1931 0.7825 0.2013 0.7851 0.1953999 0.7955 0.1931 0.7825 0.1953999 0.7955 0.1879 0.7931 0.1879 0.7931 0.1953999 0.7955 0.1875 0.8054 0.1879 0.7931 0.1875 0.8054 0.1801 0.801 0.1801 0.801 0.1875 0.8054 0.1784999 0.8119 0.1801 0.801 0.1784999 0.8119 0.1707 0.8055 0.1707 0.8055 0.1784999 0.8119 0.1604 0.814 0.1784999 0.8119 0.1665 0.8184 0.1604 0.814 0.1604 0.814 0.1665 0.8184 0.1529 0.824 0.1665 0.8184 0.1582 0.8284 0.1529 0.824 0.1529 0.824 0.1582 0.8284 0.1486999 0.839 0.1582 0.8284 0.1554999 0.8391 0.1486999 0.839 0.1486999 0.839 0.1554999 0.8391 0.1535 0.8537 0.1554999 0.8391 0.1595 0.8514 0.1535 0.8537 0.1535 0.8537 0.1595 0.8514 0.1637 0.8634 0.1595 0.8514 0.1675 0.8601 0.1637 0.8634 0.1637 0.8634 0.1675 0.8601 0.1793 0.8675 0.1675 0.8601 0.1815 0.8629 0.1793 0.8675 0.1793 0.8675 0.1815 0.8629 0.197 0.8638 0.1815 0.8629 0.1942 0.8603 0.197 0.8638 0.197 0.8638 0.1942 0.8603 0.2034 0.8521 0.197 0.8638 0.2034 0.8521 0.2087 0.855 0.2087 0.855 0.2034 0.8521 0.2124 0.8415 0.2034 0.8521 0.2054 0.8411 0.2124 0.8415 0.2124 0.8415 0.2054 0.8411 0.2025 0.8289 0.2124 0.8415 0.2025 0.8289 0.2097 0.829 0.2097 0.829 0.2025 0.8289 0.2054 0.8197 0.2025 0.8289 0.1971 0.8157 0.2054 0.8197 0.2054 0.8197 0.1971 0.8157 0.2075 0.815 0.1971 0.8157 0.2007 0.8072 0.2075 0.815 0.2075 0.815 0.2007 0.8072 0.2097 0.8005 0.2007 0.8072 0.2056 0.7975 0.2097 0.8005 0.2097 0.8005 0.2056 0.7975 0.21 0.7893 0.2056 0.7975 0.2073 0.7874 0.21 0.7893 0.21 0.7893 0.2073 0.7874 0.2100999 0.7783 0.2073 0.7874 0.2077 0.7773 0.2100999 0.7783 0.2100999 0.7783 0.2077 0.7773 0.211 0.768 0.2100999 0.7783 0.211 0.768 0.2127 0.7693 0.211 0.768 0.2181 0.7593 0.2127 0.7693 1.1949 0.7616 1.1991 0.7636 1.1957 0.7534 1.1991 0.7636 1.1949 0.7616 1.1953 0.7716 1.1991 0.7636 1.1953 0.7716 1.2019 0.7753 1.2019 0.7753 1.1953 0.7716 1.1931 0.7825 1.2019 0.7753 1.1931 0.7825 1.2013 0.7851 1.2013 0.7851 1.1931 0.7825 1.1954 0.7955 1.1931 0.7825 1.1879 0.7931 1.1954 0.7955 1.1954 0.7955 1.1879 0.7931 1.1875 0.8054 1.1879 0.7931 1.1801 0.801 1.1875 0.8054 1.1875 0.8054 1.1801 0.801 1.1785 0.8119 1.1801 0.801 1.1707 0.8055 1.1785 0.8119 1.1785 0.8119 1.1707 0.8055 1.1604 0.814 1.1785 0.8119 1.1604 0.814 1.1665 0.8184 1.1665 0.8184 1.1604 0.814 1.1529 0.824 1.1665 0.8184 1.1529 0.824 1.1582 0.8284 1.1582 0.8284 1.1529 0.824 1.1487 0.839 1.1582 0.8284 1.1487 0.839 1.1555 0.8391 1.1555 0.8391 1.1487 0.839 1.1535 0.8537 1.1555 0.8391 1.1535 0.8537 1.1595 0.8514 1.1595 0.8514 1.1535 0.8537 1.1637 0.8634 1.1595 0.8514 1.1637 0.8634 1.1675 0.8601 1.1675 0.8601 1.1637 0.8634 1.1793 0.8675 1.1675 0.8601 1.1793 0.8675 1.1815 0.8629 1.1815 0.8629 1.1793 0.8675 1.197 0.8638 1.1815 0.8629 1.197 0.8638 1.1942 0.8603 1.1942 0.8603 1.197 0.8638 1.2034 0.8521 1.197 0.8638 1.2087 0.855 1.2034 0.8521 1.2034 0.8521 1.2087 0.855 1.2124 0.8415 1.2034 0.8521 1.2124 0.8415 1.2054 0.8411 1.2054 0.8411 1.2124 0.8415 1.2025 0.8289 1.2124 0.8415 1.2097 0.829 1.2025 0.8289 1.2025 0.8289 1.2097 0.829 1.2054 0.8197 1.2025 0.8289 1.2054 0.8197 1.1971 0.8157 1.1971 0.8157 1.2054 0.8197 1.2075 0.815 1.1971 0.8157 1.2075 0.815 1.2007 0.8072 1.2007 0.8072 1.2075 0.815 1.2097 0.8005 1.2007 0.8072 1.2097 0.8005 1.2056 0.7975 1.2056 0.7975 1.2097 0.8005 1.21 0.7893 1.2056 0.7975 1.21 0.7893 1.2073 0.7874 1.2073 0.7874 1.21 0.7893 1.2101 0.7783 1.2073 0.7874 1.2101 0.7783 1.2077 0.7773 1.2077 0.7773 1.2101 0.7783 1.211 0.768 1.2101 0.7783 1.2127 0.7693 1.211 0.768 1.211 0.768 1.2127 0.7693 1.2181 0.7593 0.7966 0.9676 0.7985 0.9796 0.7933 0.982 0.7985 0.9796 0.7966 0.9676 0.8076 0.9762 0.7933 0.982 0.7822 0.9758 0.7966 0.9676 0.7822 0.9758 0.7933 0.982 0.7894 0.9903 0.7822 0.9758 0.7894 0.9903 0.7777 0.9855 0.7822 0.9758 0.7777 0.9855 0.7674 0.981 0.7822 0.9758 0.7674 0.981 0.7633 0.9719 0.7633 0.9719 0.7674 0.981 0.7478 0.9802 0.7822 0.9758 0.7633 0.9719 0.7808 0.9607 0.7822 0.9758 0.7808 0.9607 0.7966 0.9676 0.7966 0.9676 0.7808 0.9607 0.7966 0.9545 0.7966 0.9676 0.7966 0.9545 0.8059 0.9641 0.7966 0.9676 0.8059 0.9641 0.8076 0.9762 0.8076 0.9762 0.8059 0.9641 0.8149 0.9613 0.8076 0.9762 0.8149 0.9613 0.8177 0.9712 0.8177 0.9712 0.8149 0.9613 0.8252 0.9659 0.8149 0.9613 0.823 0.9579 0.8252 0.9659 0.8252 0.9659 0.823 0.9579 0.8357 0.9608 0.823 0.9579 0.8149 0.9613 0.8094 0.9507 0.8094 0.9507 0.8149 0.9613 0.8059 0.9641 0.8094 0.9507 0.8059 0.9641 0.7966 0.9545 0.8094 0.9507 0.7966 0.9545 0.7966 0.9373 0.7966 0.9373 0.7966 0.9545 0.7865 0.948 0.7966 0.9545 0.7808 0.9607 0.7865 0.948 0.7865 0.948 0.7808 0.9607 0.7706 0.9458 0.7808 0.9607 0.766 0.9604 0.7706 0.9458 0.766 0.9604 0.7808 0.9607 0.7633 0.9719 0.766 0.9604 0.7633 0.9719 0.7458 0.9693 0.7458 0.9693 0.7633 0.9719 0.7478 0.9802 0.7458 0.9693 0.7478 0.9802 0.7333 0.9651 0.7458 0.9693 0.7333 0.9651 0.7341 0.9496 0.7458 0.9693 0.7341 0.9496 0.7474 0.9555 0.7458 0.9693 0.7474 0.9555 0.766 0.9604 0.7474 0.9555 0.7341 0.9496 0.7505 0.9407 0.766 0.9604 0.7474 0.9555 0.7505 0.9407 0.766 0.9604 0.7505 0.9407 0.7706 0.9458 0.7706 0.9458 0.7505 0.9407 0.7516 0.9246 0.7706 0.9458 0.7516 0.9246 0.7739 0.9281 0.7706 0.9458 0.7739 0.9281 0.7885 0.934 0.7706 0.9458 0.7885 0.934 0.7865 0.948 0.7865 0.948 0.7885 0.934 0.7966 0.9373 0.7966 0.9373 0.7885 0.934 0.7971 0.9172 0.7971 0.9172 0.7885 0.934 0.7792 0.9134 0.7885 0.934 0.7739 0.9281 0.7792 0.9134 0.7792 0.9134 0.7739 0.9281 0.7575 0.9119 0.7739 0.9281 0.7516 0.9246 0.7575 0.9119 0.7575 0.9119 0.7516 0.9246 0.7403 0.9118 0.7516 0.9246 0.7342 0.9221 0.7403 0.9118 0.7342 0.9221 0.7516 0.9246 0.7505 0.9407 0.7342 0.9221 0.7505 0.9407 0.7341 0.936 0.7341 0.936 0.7505 0.9407 0.7341 0.9496 0.7342 0.9221 0.7332 0.9126 0.7403 0.9118 0.7332 0.9126 0.7342 0.9221 0.7265 0.9115 0.7403 0.9118 0.7332 0.9126 0.7423 0.9057 0.7403 0.9118 0.7423 0.9057 0.7575 0.9119 0.7423 0.9057 0.7513 0.9031 0.7575 0.9119 0.7575 0.9119 0.7513 0.9031 0.7611 0.9029 0.7575 0.9119 0.7611 0.9029 0.7792 0.9134 0.7611 0.9029 0.7726 0.9027 0.7792 0.9134 0.7792 0.9134 0.7726 0.9027 0.7837 0.9036 0.7792 0.9134 0.7837 0.9036 0.7971 0.9172 0.7837 0.9036 0.7943 0.9058 0.7971 0.9172 0.7971 0.9172 0.7943 0.9058 0.8041 0.9065 0.7971 0.9172 0.8041 0.9065 0.8077 0.918 0.7971 0.9172 0.8077 0.918 0.7966 0.9373 0.8077 0.918 0.8081 0.9251 0.7966 0.9373 0.8077 0.918 0.8041 0.9065 0.8102 0.9093 0.8102 0.9093 0.8041 0.9065 0.8138 0.8909 0.8041 0.9065 0.8083 0.889 0.8138 0.8909 0.8083 0.889 0.8041 0.9065 0.7943 0.9058 0.8138 0.8909 0.8083 0.889 0.8149 0.8848 0.7943 0.9058 0.8 0.8868 0.8083 0.889 0.8149 0.8848 0.8083 0.889 0.8097 0.8829 0.8 0.8868 0.8097 0.8829 0.8083 0.889 0.8149 0.8848 0.8097 0.8829 0.8178 0.8702 0.8097 0.8829 0.8126 0.869 0.8178 0.8702 0.8178 0.8702 0.8126 0.869 0.8187 0.8639 0.8126 0.869 0.8097 0.8829 0.8061 0.8674 0.8187 0.8639 0.8126 0.869 0.8138 0.8631 0.8061 0.8674 0.8138 0.8631 0.8126 0.869 0.8187 0.8639 0.8138 0.8631 0.8157 0.8531 0.8187 0.8639 0.8157 0.8531 0.8192 0.8496 0.8192 0.8496 0.8157 0.8531 0.8166 0.8465 0.8166 0.8465 0.8157 0.8531 0.8107 0.8521 0.8107 0.8521 0.8157 0.8531 0.8138 0.8631 0.8166 0.8465 0.8107 0.8521 0.8116 0.8452 0.8116 0.8452 0.8107 0.8521 0.8072 0.8476 0.8072 0.8476 0.8107 0.8521 0.8013 0.8609 0.8107 0.8521 0.8078 0.8617 0.8013 0.8609 0.8078 0.8617 0.8107 0.8521 0.8138 0.8631 0.8078 0.8617 0.8138 0.8631 0.8061 0.8674 0.8078 0.8617 0.8061 0.8674 0.7993 0.8668 0.8078 0.8617 0.7993 0.8668 0.8013 0.8609 0.7993 0.8668 0.8061 0.8674 0.8019 0.8807 0.8019 0.8807 0.8061 0.8674 0.8097 0.8829 0.8019 0.8807 0.8097 0.8829 0.8 0.8868 0.8019 0.8807 0.8 0.8868 0.7942 0.8835 0.7942 0.8835 0.8 0.8868 0.7921 0.8999 0.8 0.8868 0.7943 0.9058 0.7921 0.8999 0.7921 0.8999 0.7943 0.9058 0.7837 0.9036 0.7921 0.8999 0.7837 0.9036 0.7891 0.8995 0.7891 0.8995 0.7837 0.9036 0.7906 0.8801 0.7837 0.9036 0.7833 0.8786 0.7906 0.8801 0.7833 0.8786 0.7837 0.9036 0.7726 0.9027 0.7906 0.8801 0.7833 0.8786 0.7908 0.8738 0.7726 0.9027 0.7756 0.878 0.7833 0.8786 0.7908 0.8738 0.7833 0.8786 0.7835 0.8725 0.7756 0.878 0.7835 0.8725 0.7833 0.8786 0.7908 0.8738 0.7835 0.8725 0.7906 0.8559 0.7835 0.8725 0.7849 0.8544 0.7906 0.8559 0.7906 0.8559 0.7849 0.8544 0.7905 0.8496 0.7849 0.8544 0.7835 0.8725 0.7784 0.8537 0.7905 0.8496 0.7849 0.8544 0.7853 0.8484 0.7784 0.8537 0.7853 0.8484 0.7849 0.8544 0.7905 0.8496 0.7853 0.8484 0.7858 0.8365 0.7905 0.8496 0.7858 0.8365 0.79 0.8345 0.79 0.8345 0.7858 0.8365 0.7863 0.8297 0.7863 0.8297 0.7858 0.8365 0.7806 0.8373 0.7806 0.8373 0.7858 0.8365 0.7853 0.8484 0.7863 0.8297 0.7806 0.8373 0.7797 0.8295 0.7797 0.8295 0.7806 0.8373 0.7762 0.8344 0.7762 0.8344 0.7806 0.8373 0.7728 0.848 0.7806 0.8373 0.7791 0.8477 0.7728 0.848 0.7791 0.8477 0.7806 0.8373 0.7853 0.8484 0.7791 0.8477 0.7853 0.8484 0.7784 0.8537 0.7791 0.8477 0.7784 0.8537 0.7719 0.8543 0.7791 0.8477 0.7719 0.8543 0.7728 0.848 0.7719 0.8543 0.7784 0.8537 0.7763 0.8719 0.7763 0.8719 0.7784 0.8537 0.7835 0.8725 0.7763 0.8719 0.7835 0.8725 0.7756 0.878 0.7763 0.8719 0.7756 0.878 0.7705 0.8775 0.7705 0.8775 0.7756 0.878 0.7686 0.8974 0.7756 0.878 0.7726 0.9027 0.7686 0.8974 0.7686 0.8974 0.7726 0.9027 0.7657 0.8981 0.7726 0.9027 0.7611 0.9029 0.7657 0.8981 0.7657 0.8981 0.7611 0.9029 0.7652 0.8815 0.7611 0.9029 0.7589 0.8805 0.7652 0.8815 0.7589 0.8805 0.7611 0.9029 0.7513 0.9031 0.7652 0.8815 0.7589 0.8805 0.7649 0.8753 0.7513 0.9031 0.7512 0.8813 0.7589 0.8805 0.7649 0.8753 0.7589 0.8805 0.7584 0.8743 0.7512 0.8813 0.7584 0.8743 0.7589 0.8805 0.7649 0.8753 0.7584 0.8743 0.7639 0.8597 0.7584 0.8743 0.7574 0.8604 0.7639 0.8597 0.7639 0.8597 0.7574 0.8604 0.7633 0.8535 0.7574 0.8604 0.7584 0.8743 0.751 0.86 0.7633 0.8535 0.7574 0.8604 0.7573 0.8543 0.751 0.86 0.7573 0.8543 0.7574 0.8604 0.7633 0.8535 0.7573 0.8543 0.7575 0.8448 0.7633 0.8535 0.7575 0.8448 0.762 0.8426 0.762 0.8426 0.7575 0.8448 0.7575 0.8366 0.7575 0.8366 0.7575 0.8448 0.7515 0.8448 0.7515 0.8448 0.7575 0.8448 0.7573 0.8543 0.7575 0.8366 0.7515 0.8448 0.7516 0.8368 0.7516 0.8368 0.7515 0.8448 0.7478 0.8413 0.7478 0.8413 0.7515 0.8448 0.7463 0.854 0.7515 0.8448 0.751 0.854 0.7463 0.854 0.751 0.854 0.7515 0.8448 0.7573 0.8543 0.751 0.854 0.7573 0.8543 0.751 0.86 0.751 0.854 0.751 0.86 0.746 0.8603 0.751 0.854 0.746 0.8603 0.7463 0.854 0.746 0.8603 0.751 0.86 0.7512 0.8751 0.7512 0.8751 0.751 0.86 0.7584 0.8743 0.7512 0.8751 0.7584 0.8743 0.7512 0.8813 0.7512 0.8751 0.7512 0.8813 0.7459 0.8835 0.7459 0.8835 0.7512 0.8813 0.7474 0.9009 0.7512 0.8813 0.7513 0.9031 0.7474 0.9009 0.7474 0.9009 0.7513 0.9031 0.7444 0.9017 0.7513 0.9031 0.7423 0.9057 0.7444 0.9017 0.7444 0.9017 0.7423 0.9057 0.7437 0.8884 0.7423 0.9057 0.7385 0.891 0.7437 0.8884 0.7385 0.891 0.7423 0.9057 0.7332 0.9126 0.7437 0.8884 0.7385 0.891 0.743 0.8824 0.7332 0.9126 0.7302 0.8934 0.7385 0.891 0.743 0.8824 0.7385 0.891 0.7371 0.8847 0.7302 0.8934 0.7371 0.8847 0.7385 0.891 0.743 0.8824 0.7371 0.8847 0.7419 0.8718 0.7371 0.8847 0.7352 0.873 0.7419 0.8718 0.7419 0.8718 0.7352 0.873 0.7409 0.8657 0.7352 0.873 0.7371 0.8847 0.7285 0.8742 0.7409 0.8657 0.7352 0.873 0.7346 0.867 0.7285 0.8742 0.7346 0.867 0.7352 0.873 0.7409 0.8657 0.7346 0.867 0.7342 0.8586 0.7409 0.8657 0.7342 0.8586 0.7389 0.8572 0.7389 0.8572 0.7342 0.8586 0.7344 0.8515 0.7344 0.8515 0.7342 0.8586 0.7294 0.8597 0.7294 0.8597 0.7342 0.8586 0.7346 0.867 0.7344 0.8515 0.7294 0.8597 0.7288 0.8519 0.7288 0.8519 0.7294 0.8597 0.7246 0.8596 0.7246 0.8596 0.7294 0.8597 0.724 0.8691 0.7294 0.8597 0.7286 0.8682 0.724 0.8691 0.7286 0.8682 0.7294 0.8597 0.7346 0.867 0.7286 0.8682 0.7346 0.867 0.7285 0.8742 0.7286 0.8682 0.7285 0.8742 0.7238 0.8755 0.7286 0.8682 0.7238 0.8755 0.724 0.8691 0.7238 0.8755 0.7285 0.8742 0.7295 0.8873 0.7295 0.8873 0.7285 0.8742 0.7371 0.8847 0.7295 0.8873 0.7371 0.8847 0.7302 0.8934 0.7295 0.8873 0.7302 0.8934 0.7244 0.8932 0.7244 0.8932 0.7302 0.8934 0.7265 0.9115 0.7302 0.8934 0.7332 0.9126 0.7265 0.9115 0.7244 0.8932 0.7265 0.9115 0.7184 0.8941 0.7244 0.8932 0.7184 0.8941 0.724 0.8873 0.7244 0.8932 0.724 0.8873 0.7295 0.8873 0.7295 0.8873 0.724 0.8873 0.7238 0.8755 0.7238 0.8755 0.724 0.8873 0.7181 0.8769 0.7238 0.8755 0.7181 0.8769 0.724 0.8691 0.7181 0.8769 0.7184 0.87 0.724 0.8691 0.724 0.8691 0.7184 0.87 0.7246 0.8596 0.7184 0.87 0.7195 0.8612 0.7246 0.8596 0.7195 0.8612 0.7227 0.8529 0.7246 0.8596 0.7227 0.8529 0.7195 0.8612 0.7108 0.8538 0.7195 0.8612 0.7135 0.8611 0.7108 0.8538 0.7108 0.8538 0.7135 0.8611 0.7066 0.8594 0.7135 0.8611 0.7195 0.8612 0.7128 0.87 0.7066 0.8594 0.7135 0.8611 0.7128 0.87 0.7195 0.8612 0.7184 0.87 0.7128 0.87 0.7128 0.87 0.7184 0.87 0.7123 0.8763 0.7184 0.87 0.7181 0.8769 0.7123 0.8763 0.7123 0.8763 0.7181 0.8769 0.7113 0.8878 0.7181 0.8769 0.7185 0.8881 0.7113 0.8878 0.7185 0.8881 0.7181 0.8769 0.724 0.8873 0.7185 0.8881 0.724 0.8873 0.7184 0.8941 0.7185 0.8881 0.7184 0.8941 0.7107 0.894 0.7185 0.8881 0.7107 0.894 0.7113 0.8878 0.7113 0.8878 0.7107 0.894 0.7044 0.8924 0.7113 0.8878 0.7044 0.8924 0.7046 0.8859 0.7113 0.8878 0.7046 0.8859 0.7123 0.8763 0.7046 0.8859 0.7051 0.8748 0.7123 0.8763 0.7123 0.8763 0.7051 0.8748 0.7128 0.87 0.7051 0.8748 0.7057 0.8683 0.7128 0.87 0.7128 0.87 0.7057 0.8683 0.7066 0.8594 0.7966 0.9373 0.8081 0.9251 0.81 0.9284 0.7966 0.9373 0.81 0.9284 0.806 0.9396 0.7966 0.9373 0.806 0.9396 0.8094 0.9507 0.81 0.9284 0.8112 0.931 0.806 0.9396 0.8094 0.9507 0.806 0.9396 0.8177 0.9487 0.806 0.9396 0.8112 0.931 0.8152 0.9389 0.8177 0.9487 0.806 0.9396 0.8152 0.9389 0.8112 0.931 0.8152 0.931 0.8152 0.9389 0.8152 0.9389 0.8152 0.931 0.8264 0.9298 0.8152 0.9389 0.8264 0.9298 0.8266 0.9372 0.8152 0.9389 0.8266 0.9372 0.8177 0.9487 0.8266 0.9372 0.8264 0.9298 0.8341 0.9288 0.8177 0.9487 0.8266 0.9372 0.8286 0.9462 0.8177 0.9487 0.8286 0.9462 0.823 0.9579 0.8177 0.9487 0.823 0.9579 0.8094 0.9507 0.8286 0.9462 0.8329 0.9539 0.823 0.9579 0.823 0.9579 0.8329 0.9539 0.8357 0.9608 0.8357 0.9608 0.8329 0.9539 0.8429 0.9571 0.8329 0.9539 0.8391 0.9512 0.8429 0.9571 0.8391 0.9512 0.8329 0.9539 0.8348 0.9448 0.8329 0.9539 0.8286 0.9462 0.8348 0.9448 0.8348 0.9448 0.8286 0.9462 0.8266 0.9372 0.8348 0.9448 0.8266 0.9372 0.834 0.9358 0.834 0.9358 0.8266 0.9372 0.8341 0.9288 0.8348 0.9448 0.834 0.9358 0.8414 0.9355 0.8341 0.9288 0.8414 0.9355 0.834 0.9358 0.8414 0.9355 0.8341 0.9288 0.8433 0.9293 0.8414 0.9355 0.8433 0.9293 0.8515 0.9339 0.8414 0.9355 0.8515 0.9339 0.8427 0.9428 0.8414 0.9355 0.8427 0.9428 0.8348 0.9448 0.8348 0.9448 0.8427 0.9428 0.8391 0.9512 0.8427 0.9428 0.8486 0.9455 0.8391 0.9512 0.8391 0.9512 0.8486 0.9455 0.8429 0.9571 0.8486 0.9455 0.85 0.9522 0.8429 0.9571 0.85 0.9522 0.8486 0.9455 0.8553 0.947 0.8553 0.947 0.8486 0.9455 0.8526 0.9405 0.8526 0.9405 0.8486 0.9455 0.8427 0.9428 0.8526 0.9405 0.8427 0.9428 0.8515 0.9339 0.7942 0.8835 0.7956 0.877 0.8019 0.8807 0.8019 0.8807 0.7956 0.877 0.7993 0.8668 0.7705 0.8775 0.771 0.8712 0.7763 0.8719 0.7763 0.8719 0.771 0.8712 0.7719 0.8543 0.7459 0.8835 0.7457 0.8774 0.7512 0.8751 0.7512 0.8751 0.7457 0.8774 0.746 0.8603 0.6766 0.8096 0.652 0.801 0.6571 0.7729 0.6571 0.7729 0.652 0.801 0.6538 0.7663 0.6766 0.8096 0.6571 0.7729 0.6735 0.7753 0.6538 0.7663 0.6553 0.7647 0.6571 0.7729 0.6553 0.7647 0.6538 0.7663 0.6574 0.7566 0.6538 0.7663 0.6528 0.7301 0.6574 0.7566 0.6574 0.7566 0.6528 0.7301 0.6771 0.7301 0.6574 0.7566 0.6771 0.7301 0.6736 0.7547 0.6736 0.7547 0.6771 0.7301 0.6866 0.7569 0.6771 0.7301 0.6928 0.7301 0.6866 0.7569 0.6866 0.7569 0.6928 0.7301 0.6963 0.7679 0.6866 0.7569 0.6963 0.7679 0.6881 0.7657 0.6881 0.7657 0.6963 0.7679 0.6857 0.7741 0.6963 0.7679 0.6951 0.8156 0.6857 0.7741 0.6857 0.7741 0.6951 0.8156 0.6766 0.8096 0.6857 0.7741 0.6766 0.8096 0.6735 0.7753 0.673 0.7652 0.6729 0.7701 0.6628 0.7694 0.6729 0.7701 0.673 0.7652 0.6803 0.7699 0.6628 0.7694 0.6622 0.765 0.673 0.7652 0.6803 0.7699 0.673 0.7652 0.6813 0.7655 0.673 0.7652 0.6622 0.765 0.6633 0.7605 0.6813 0.7655 0.673 0.7652 0.6805 0.761 0.6633 0.7605 0.673 0.7601 0.673 0.7652 0.6805 0.761 0.673 0.7652 0.673 0.7601 0.8174 0.7301 0.8315 0.7301 0.8252 0.7348 0.8174 0.7301 0.8252 0.7348 0.8117 0.7675 0.8252 0.7348 0.8315 0.7301 0.8544 0.7301 0.8252 0.7348 0.8544 0.7301 0.8447 0.7336 0.8447 0.7336 0.8544 0.7301 0.8574 0.7661 0.8447 0.7336 0.8574 0.7661 0.8475 0.7662 0.8475 0.7662 0.8574 0.7661 0.8465 0.7931 0.8574 0.7661 0.8556 0.8008 0.8465 0.7931 0.8465 0.7931 0.8556 0.8008 0.8317 0.8081 0.8465 0.7931 0.8317 0.8081 0.8267 0.7933 0.8317 0.8081 0.8148 0.8149 0.8267 0.7933 0.8267 0.7933 0.8148 0.8149 0.8117 0.7675 0.8267 0.7933 0.8117 0.7675 0.8242 0.7668 0.8242 0.7668 0.8117 0.7675 0.8252 0.7348 0.8223 0.4528 0.8047 0.4516 0.8046 0.4387 0.8046 0.4387 0.8047 0.4516 0.7915 0.4419 0.8046 0.4387 0.7915 0.4419 0.7885 0.4333 0.8046 0.4387 0.7885 0.4333 0.7911 0.4257 0.8046 0.4387 0.7911 0.4257 0.7974 0.4281 0.8046 0.4387 0.7974 0.4281 0.8221 0.4402 0.8046 0.4387 0.8221 0.4402 0.8223 0.4528 0.8223 0.4528 0.8221 0.4402 0.8352 0.4428 0.8221 0.4402 0.8384 0.4347 0.8352 0.4428 0.8384 0.4347 0.8221 0.4402 0.8289 0.4274 0.8289 0.4274 0.8221 0.4402 0.7974 0.4281 0.8289 0.4274 0.7974 0.4281 0.7911 0.4257 0.8289 0.4274 0.7911 0.4257 0.8421 0.4231 0.8289 0.4274 0.8421 0.4231 0.8384 0.4347 0.7933 0.982 0.7985 0.9796 0.7966 0.9676 0.7966 0.9676 0.7985 0.9796 0.8076 0.9762 0.7933 0.982 0.7966 0.9676 0.7822 0.9758 0.7933 0.982 0.7822 0.9758 0.7894 0.9903 0.7894 0.9903 0.7822 0.9758 0.7777 0.9855 0.7777 0.9855 0.7822 0.9758 0.7674 0.981 0.7822 0.9758 0.7633 0.9719 0.7674 0.981 0.7674 0.981 0.7633 0.9719 0.7478 0.9802 0.7822 0.9758 0.7808 0.9607 0.7633 0.9719 0.7808 0.9607 0.7822 0.9758 0.7966 0.9676 0.7808 0.9607 0.7966 0.9676 0.7966 0.9545 0.7966 0.9545 0.7966 0.9676 0.8059 0.9641 0.8059 0.9641 0.7966 0.9676 0.8076 0.9762 0.8059 0.9641 0.8076 0.9762 0.8149 0.9613 0.8076 0.9762 0.8177 0.9712 0.8149 0.9613 0.8149 0.9613 0.8177 0.9712 0.8252 0.9659 0.8149 0.9613 0.8252 0.9659 0.823 0.9579 0.823 0.9579 0.8252 0.9659 0.8357 0.9608 0.8149 0.9613 0.823 0.9579 0.8094 0.9507 0.8149 0.9613 0.8094 0.9507 0.8059 0.9641 0.8094 0.9507 0.7966 0.9545 0.8059 0.9641 0.7966 0.9545 0.8094 0.9507 0.7966 0.9373 0.7966 0.9545 0.7966 0.9373 0.7865 0.948 0.7966 0.9545 0.7865 0.948 0.7808 0.9607 0.7865 0.948 0.7706 0.9458 0.7808 0.9607 0.7808 0.9607 0.7706 0.9458 0.766 0.9604 0.7808 0.9607 0.766 0.9604 0.7633 0.9719 0.7633 0.9719 0.766 0.9604 0.7458 0.9693 0.7633 0.9719 0.7458 0.9693 0.7478 0.9802 0.7478 0.9802 0.7458 0.9693 0.7333 0.9651 0.7333 0.9651 0.7458 0.9693 0.7341 0.9496 0.7458 0.9693 0.7474 0.9555 0.7341 0.9496 0.7474 0.9555 0.7458 0.9693 0.766 0.9604 0.7341 0.9496 0.7474 0.9555 0.7505 0.9407 0.766 0.9604 0.7505 0.9407 0.7474 0.9555 0.7505 0.9407 0.766 0.9604 0.7706 0.9458 0.7505 0.9407 0.7706 0.9458 0.7516 0.9246 0.7706 0.9458 0.7739 0.9281 0.7516 0.9246 0.7739 0.9281 0.7706 0.9458 0.7885 0.934 0.7706 0.9458 0.7865 0.948 0.7885 0.934 0.7865 0.948 0.7966 0.9373 0.7885 0.934 0.7885 0.934 0.7966 0.9373 0.7971 0.9172 0.7885 0.934 0.7971 0.9172 0.7792 0.9134 0.7885 0.934 0.7792 0.9134 0.7739 0.9281 0.7739 0.9281 0.7792 0.9134 0.7575 0.9119 0.7739 0.9281 0.7575 0.9119 0.7516 0.9246 0.7516 0.9246 0.7575 0.9119 0.7403 0.9118 0.7516 0.9246 0.7403 0.9118 0.7342 0.9221 0.7516 0.9246 0.7342 0.9221 0.7505 0.9407 0.7342 0.9221 0.7341 0.936 0.7505 0.9407 0.7505 0.9407 0.7341 0.936 0.7341 0.9496 0.7342 0.9221 0.7403 0.9118 0.7332 0.9126 0.7342 0.9221 0.7332 0.9126 0.7265 0.9115 0.7403 0.9118 0.7423 0.9057 0.7332 0.9126 0.7423 0.9057 0.7403 0.9118 0.7575 0.9119 0.7423 0.9057 0.7575 0.9119 0.7513 0.9031 0.7575 0.9119 0.7611 0.9029 0.7513 0.9031 0.7611 0.9029 0.7575 0.9119 0.7792 0.9134 0.7611 0.9029 0.7792 0.9134 0.7726 0.9027 0.7792 0.9134 0.7837 0.9036 0.7726 0.9027 0.7837 0.9036 0.7792 0.9134 0.7971 0.9172 0.7837 0.9036 0.7971 0.9172 0.7943 0.9058 0.7971 0.9172 0.8041 0.9065 0.7943 0.9058 0.8041 0.9065 0.7971 0.9172 0.8077 0.918 0.8077 0.918 0.7971 0.9172 0.7966 0.9373 0.8077 0.918 0.7966 0.9373 0.8081 0.9251 0.8077 0.918 0.8102 0.9093 0.8041 0.9065 0.8041 0.9065 0.8102 0.9093 0.8138 0.8909 0.8041 0.9065 0.8138 0.8909 0.8083 0.889 0.8041 0.9065 0.8083 0.889 0.7943 0.9058 0.8083 0.889 0.8138 0.8909 0.8149 0.8848 0.7943 0.9058 0.8083 0.889 0.8 0.8868 0.8149 0.8848 0.8097 0.8829 0.8083 0.889 0.8 0.8868 0.8083 0.889 0.8097 0.8829 0.8149 0.8848 0.8178 0.8702 0.8097 0.8829 0.8178 0.8702 0.8126 0.869 0.8097 0.8829 0.8126 0.869 0.8178 0.8702 0.8187 0.8639 0.8097 0.8829 0.8126 0.869 0.8061 0.8674 0.8187 0.8639 0.8138 0.8631 0.8126 0.869 0.8061 0.8674 0.8126 0.869 0.8138 0.8631 0.8187 0.8639 0.8157 0.8531 0.8138 0.8631 0.8157 0.8531 0.8187 0.8639 0.8192 0.8496 0.8157 0.8531 0.8192 0.8496 0.8166 0.8465 0.8157 0.8531 0.8166 0.8465 0.8107 0.8521 0.8157 0.8531 0.8107 0.8521 0.8138 0.8631 0.8166 0.8465 0.8116 0.8452 0.8107 0.8521 0.8107 0.8521 0.8116 0.8452 0.8072 0.8476 0.8107 0.8521 0.8072 0.8476 0.8013 0.8609 0.8107 0.8521 0.8013 0.8609 0.8078 0.8617 0.8107 0.8521 0.8078 0.8617 0.8138 0.8631 0.8138 0.8631 0.8078 0.8617 0.8061 0.8674 0.8061 0.8674 0.8078 0.8617 0.7993 0.8668 0.8078 0.8617 0.8013 0.8609 0.7993 0.8668 0.8061 0.8674 0.7993 0.8668 0.8019 0.8807 0.8061 0.8674 0.8019 0.8807 0.8097 0.8829 0.8097 0.8829 0.8019 0.8807 0.8 0.8868 0.8 0.8868 0.8019 0.8807 0.7942 0.8835 0.8 0.8868 0.7942 0.8835 0.7921 0.8999 0.8 0.8868 0.7921 0.8999 0.7943 0.9058 0.7943 0.9058 0.7921 0.8999 0.7837 0.9036 0.7921 0.8999 0.7891 0.8995 0.7837 0.9036 0.7837 0.9036 0.7891 0.8995 0.7906 0.8801 0.7837 0.9036 0.7906 0.8801 0.7833 0.8786 0.7837 0.9036 0.7833 0.8786 0.7726 0.9027 0.7833 0.8786 0.7906 0.8801 0.7908 0.8738 0.7726 0.9027 0.7833 0.8786 0.7756 0.878 0.7908 0.8738 0.7835 0.8725 0.7833 0.8786 0.7756 0.878 0.7833 0.8786 0.7835 0.8725 0.7908 0.8738 0.7906 0.8559 0.7835 0.8725 0.7906 0.8559 0.7849 0.8544 0.7835 0.8725 0.7849 0.8544 0.7906 0.8559 0.7905 0.8496 0.7835 0.8725 0.7849 0.8544 0.7784 0.8537 0.7905 0.8496 0.7853 0.8484 0.7849 0.8544 0.7784 0.8537 0.7849 0.8544 0.7853 0.8484 0.7905 0.8496 0.7858 0.8365 0.7853 0.8484 0.7858 0.8365 0.7905 0.8496 0.79 0.8345 0.7858 0.8365 0.79 0.8345 0.7863 0.8297 0.7858 0.8365 0.7863 0.8297 0.7806 0.8373 0.7858 0.8365 0.7806 0.8373 0.7853 0.8484 0.7863 0.8297 0.7797 0.8295 0.7806 0.8373 0.7806 0.8373 0.7797 0.8295 0.7762 0.8344 0.7806 0.8373 0.7762 0.8344 0.7728 0.848 0.7806 0.8373 0.7728 0.848 0.7791 0.8477 0.7806 0.8373 0.7791 0.8477 0.7853 0.8484 0.7853 0.8484 0.7791 0.8477 0.7784 0.8537 0.7784 0.8537 0.7791 0.8477 0.7719 0.8543 0.7791 0.8477 0.7728 0.848 0.7719 0.8543 0.7784 0.8537 0.7719 0.8543 0.7763 0.8719 0.7784 0.8537 0.7763 0.8719 0.7835 0.8725 0.7835 0.8725 0.7763 0.8719 0.7756 0.878 0.7756 0.878 0.7763 0.8719 0.7705 0.8775 0.7756 0.878 0.7705 0.8775 0.7686 0.8974 0.7756 0.878 0.7686 0.8974 0.7726 0.9027 0.7726 0.9027 0.7686 0.8974 0.7657 0.8981 0.7726 0.9027 0.7657 0.8981 0.7611 0.9029 0.7611 0.9029 0.7657 0.8981 0.7652 0.8815 0.7611 0.9029 0.7652 0.8815 0.7589 0.8805 0.7611 0.9029 0.7589 0.8805 0.7513 0.9031 0.7589 0.8805 0.7652 0.8815 0.7649 0.8753 0.7513 0.9031 0.7589 0.8805 0.7512 0.8813 0.7649 0.8753 0.7584 0.8743 0.7589 0.8805 0.7512 0.8813 0.7589 0.8805 0.7584 0.8743 0.7649 0.8753 0.7639 0.8597 0.7584 0.8743 0.7639 0.8597 0.7574 0.8604 0.7584 0.8743 0.7574 0.8604 0.7639 0.8597 0.7633 0.8535 0.7584 0.8743 0.7574 0.8604 0.751 0.86 0.7633 0.8535 0.7573 0.8543 0.7574 0.8604 0.751 0.86 0.7574 0.8604 0.7573 0.8543 0.7633 0.8535 0.7575 0.8448 0.7573 0.8543 0.7575 0.8448 0.7633 0.8535 0.762 0.8426 0.7575 0.8448 0.762 0.8426 0.7575 0.8366 0.7575 0.8448 0.7575 0.8366 0.7515 0.8448 0.7575 0.8448 0.7515 0.8448 0.7573 0.8543 0.7575 0.8366 0.7516 0.8368 0.7515 0.8448 0.7515 0.8448 0.7516 0.8368 0.7478 0.8413 0.7515 0.8448 0.7478 0.8413 0.7463 0.854 0.7515 0.8448 0.7463 0.854 0.751 0.854 0.7515 0.8448 0.751 0.854 0.7573 0.8543 0.7573 0.8543 0.751 0.854 0.751 0.86 0.751 0.86 0.751 0.854 0.746 0.8603 0.751 0.854 0.7463 0.854 0.746 0.8603 0.751 0.86 0.746 0.8603 0.7512 0.8751 0.751 0.86 0.7512 0.8751 0.7584 0.8743 0.7584 0.8743 0.7512 0.8751 0.7512 0.8813 0.7512 0.8813 0.7512 0.8751 0.7459 0.8835 0.7512 0.8813 0.7459 0.8835 0.7474 0.9009 0.7512 0.8813 0.7474 0.9009 0.7513 0.9031 0.7513 0.9031 0.7474 0.9009 0.7444 0.9017 0.7513 0.9031 0.7444 0.9017 0.7423 0.9057 0.7423 0.9057 0.7444 0.9017 0.7437 0.8884 0.7423 0.9057 0.7437 0.8884 0.7385 0.891 0.7423 0.9057 0.7385 0.891 0.7332 0.9126 0.7385 0.891 0.7437 0.8884 0.743 0.8824 0.7332 0.9126 0.7385 0.891 0.7302 0.8934 0.743 0.8824 0.7371 0.8847 0.7385 0.891 0.7302 0.8934 0.7385 0.891 0.7371 0.8847 0.743 0.8824 0.7419 0.8718 0.7371 0.8847 0.7419 0.8718 0.7352 0.873 0.7371 0.8847 0.7352 0.873 0.7419 0.8718 0.7409 0.8657 0.7371 0.8847 0.7352 0.873 0.7285 0.8742 0.7409 0.8657 0.7346 0.867 0.7352 0.873 0.7285 0.8742 0.7352 0.873 0.7346 0.867 0.7409 0.8657 0.7342 0.8586 0.7346 0.867 0.7342 0.8586 0.7409 0.8657 0.7389 0.8572 0.7342 0.8586 0.7389 0.8572 0.7344 0.8515 0.7342 0.8586 0.7344 0.8515 0.7294 0.8597 0.7342 0.8586 0.7294 0.8597 0.7346 0.867 0.7344 0.8515 0.7288 0.8519 0.7294 0.8597 0.7294 0.8597 0.7288 0.8519 0.7246 0.8596 0.7294 0.8597 0.7246 0.8596 0.724 0.8691 0.7294 0.8597 0.724 0.8691 0.7286 0.8682 0.7294 0.8597 0.7286 0.8682 0.7346 0.867 0.7346 0.867 0.7286 0.8682 0.7285 0.8742 0.7285 0.8742 0.7286 0.8682 0.7238 0.8755 0.7286 0.8682 0.724 0.8691 0.7238 0.8755 0.7285 0.8742 0.7238 0.8755 0.7295 0.8873 0.7285 0.8742 0.7295 0.8873 0.7371 0.8847 0.7371 0.8847 0.7295 0.8873 0.7302 0.8934 0.7302 0.8934 0.7295 0.8873 0.7244 0.8932 0.7302 0.8934 0.7244 0.8932 0.7265 0.9115 0.7302 0.8934 0.7265 0.9115 0.7332 0.9126 0.7265 0.9115 0.7244 0.8932 0.7184 0.8941 0.7184 0.8941 0.7244 0.8932 0.724 0.8873 0.724 0.8873 0.7244 0.8932 0.7295 0.8873 0.724 0.8873 0.7295 0.8873 0.7238 0.8755 0.724 0.8873 0.7238 0.8755 0.7181 0.8769 0.7181 0.8769 0.7238 0.8755 0.724 0.8691 0.7181 0.8769 0.724 0.8691 0.7184 0.87 0.7184 0.87 0.724 0.8691 0.7246 0.8596 0.7184 0.87 0.7246 0.8596 0.7195 0.8612 0.7195 0.8612 0.7246 0.8596 0.7227 0.8529 0.7195 0.8612 0.7227 0.8529 0.7108 0.8538 0.7195 0.8612 0.7108 0.8538 0.7135 0.8611 0.7108 0.8538 0.7066 0.8594 0.7135 0.8611 0.7195 0.8612 0.7135 0.8611 0.7128 0.87 0.7066 0.8594 0.7128 0.87 0.7135 0.8611 0.7195 0.8612 0.7128 0.87 0.7184 0.87 0.7184 0.87 0.7128 0.87 0.7123 0.8763 0.7184 0.87 0.7123 0.8763 0.7181 0.8769 0.7181 0.8769 0.7123 0.8763 0.7113 0.8878 0.7181 0.8769 0.7113 0.8878 0.7185 0.8881 0.7181 0.8769 0.7185 0.8881 0.724 0.8873 0.724 0.8873 0.7185 0.8881 0.7184 0.8941 0.7184 0.8941 0.7185 0.8881 0.7107 0.894 0.7185 0.8881 0.7113 0.8878 0.7107 0.894 0.7107 0.894 0.7113 0.8878 0.7044 0.8924 0.7113 0.8878 0.7046 0.8859 0.7044 0.8924 0.7046 0.8859 0.7113 0.8878 0.7123 0.8763 0.7046 0.8859 0.7123 0.8763 0.7051 0.8748 0.7051 0.8748 0.7123 0.8763 0.7128 0.87 0.7051 0.8748 0.7128 0.87 0.7057 0.8683 0.7057 0.8683 0.7128 0.87 0.7066 0.8594 0.7966 0.9373 0.81 0.9284 0.8081 0.9251 0.81 0.9284 0.7966 0.9373 0.806 0.9396 0.806 0.9396 0.7966 0.9373 0.8094 0.9507 0.81 0.9284 0.806 0.9396 0.8112 0.931 0.806 0.9396 0.8094 0.9507 0.8177 0.9487 0.8177 0.9487 0.8094 0.9507 0.823 0.9579 0.806 0.9396 0.8177 0.9487 0.8152 0.9389 0.806 0.9396 0.8152 0.9389 0.8112 0.931 0.8152 0.9389 0.8152 0.931 0.8112 0.931 0.8152 0.931 0.8152 0.9389 0.8264 0.9298 0.8152 0.9389 0.8266 0.9372 0.8264 0.9298 0.8266 0.9372 0.8152 0.9389 0.8177 0.9487 0.8264 0.9298 0.8266 0.9372 0.8341 0.9288 0.8177 0.9487 0.8286 0.9462 0.8266 0.9372 0.8286 0.9462 0.8177 0.9487 0.823 0.9579 0.8286 0.9462 0.823 0.9579 0.8329 0.9539 0.8329 0.9539 0.823 0.9579 0.8357 0.9608 0.8329 0.9539 0.8357 0.9608 0.8429 0.9571 0.8329 0.9539 0.8429 0.9571 0.8391 0.9512 0.8329 0.9539 0.8391 0.9512 0.8348 0.9448 0.8329 0.9539 0.8348 0.9448 0.8286 0.9462 0.8286 0.9462 0.8348 0.9448 0.8266 0.9372 0.8348 0.9448 0.834 0.9358 0.8266 0.9372 0.8266 0.9372 0.834 0.9358 0.8341 0.9288 0.834 0.9358 0.8348 0.9448 0.8414 0.9355 0.8341 0.9288 0.834 0.9358 0.8414 0.9355 0.8341 0.9288 0.8414 0.9355 0.8433 0.9293 0.8433 0.9293 0.8414 0.9355 0.8515 0.9339 0.8515 0.9339 0.8414 0.9355 0.8427 0.9428 0.8427 0.9428 0.8414 0.9355 0.8348 0.9448 0.8427 0.9428 0.8348 0.9448 0.8391 0.9512 0.8427 0.9428 0.8391 0.9512 0.8486 0.9455 0.8486 0.9455 0.8391 0.9512 0.8429 0.9571 0.8486 0.9455 0.8429 0.9571 0.85 0.9522 0.8486 0.9455 0.85 0.9522 0.8553 0.947 0.8486 0.9455 0.8553 0.947 0.8526 0.9405 0.8486 0.9455 0.8526 0.9405 0.8427 0.9428 0.8427 0.9428 0.8526 0.9405 0.8515 0.9339 0.8019 0.8807 0.7956 0.877 0.7942 0.8835 0.7956 0.877 0.8019 0.8807 0.7993 0.8668 0.7763 0.8719 0.771 0.8712 0.7705 0.8775 0.771 0.8712 0.7763 0.8719 0.7719 0.8543 0.7512 0.8751 0.7457 0.8774 0.7459 0.8835 0.7457 0.8774 0.7512 0.8751 0.746 0.8603 0.883 0.8651 0.8934 0.865 0.8938 0.881 0.8934 0.865 0.883 0.8651 0.894 0.8495 0.8938 0.881 0.8866 0.8976 0.883 0.8651 0.8866 0.8976 0.8938 0.881 0.9116 0.8975 0.8938 0.881 0.9058 0.8811 0.9116 0.8975 0.9058 0.8811 0.9113 0.8811 0.9116 0.8975 0.9113 0.8811 0.9058 0.8811 0.9065 0.8649 0.9116 0.8975 0.9113 0.8811 0.923 0.8809 0.9116 0.8975 0.923 0.8809 0.9301 0.8975 0.9301 0.8975 0.923 0.8809 0.9312 0.8658 0.923 0.8809 0.9234 0.8652 0.9312 0.8658 0.9312 0.8658 0.9234 0.8652 0.931 0.8328 0.9234 0.8652 0.9231 0.8495 0.931 0.8328 0.931 0.8328 0.9231 0.8495 0.9118 0.8316 0.9231 0.8495 0.9116 0.8495 0.9118 0.8316 0.9118 0.8316 0.9116 0.8495 0.9058 0.8495 0.9118 0.8316 0.9058 0.8495 0.894 0.8495 0.9118 0.8316 0.894 0.8495 0.8866 0.8311 0.8866 0.8311 0.894 0.8495 0.883 0.8651 0.8866 0.8311 0.883 0.8651 0.8809 0.8567 0.883 0.8651 0.8866 0.8976 0.8809 0.8736 0.8866 0.8976 0.8752 0.8794 0.8809 0.8736 0.8752 0.8794 0.8866 0.8976 0.8615 0.8975 0.8752 0.8794 0.8615 0.8975 0.8673 0.8815 0.8615 0.8975 0.8594 0.8794 0.8673 0.8815 0.8594 0.8794 0.8615 0.8975 0.8535 0.8736 0.8615 0.8975 0.843 0.8975 0.8535 0.8736 0.8535 0.8736 0.843 0.8975 0.8419 0.8658 0.8535 0.8736 0.8419 0.8658 0.8514 0.8652 0.8514 0.8652 0.8419 0.8658 0.8535 0.8568 0.8419 0.8658 0.8422 0.8328 0.8535 0.8568 0.8535 0.8568 0.8422 0.8328 0.8613 0.8316 0.8535 0.8568 0.8613 0.8316 0.8594 0.8509 0.8594 0.8509 0.8613 0.8316 0.8673 0.8488 0.8673 0.8488 0.8613 0.8316 0.8752 0.8509 0.8613 0.8316 0.8866 0.8311 0.8752 0.8509 0.8752 0.8509 0.8866 0.8311 0.8809 0.8567 0.9065 0.8649 0.9058 0.8495 0.9116 0.8495 0.9065 0.8649 0.9116 0.8495 0.9115 0.8649 0.9065 0.8649 0.9115 0.8649 0.9113 0.8811 0.0546 0.9126 0.0327 0.9212 0.023 0.8876 0.0327 0.9212 0.0546 0.9126 0.05509996 0.9536 0.0546 0.9126 0.07409995 0.939 0.05509996 0.9536 0.05509996 0.9536 0.07409995 0.939 0.08919996 0.9791 0.07409995 0.939 0.1004 0.9584 0.08919996 0.9791 0.08919996 0.9791 0.1004 0.9584 0.1347 0.9675 0.08919996 0.9791 0.1347 0.9675 0.129 0.9929 0.129 0.9929 0.1347 0.9675 0.1687999 0.994 0.1347 0.9675 0.1728 0.9695 0.1687999 0.994 0.1687999 0.994 0.1728 0.9695 0.2152 0.9938 0.1728 0.9695 0.2108 0.9664 0.2152 0.9938 0.2152 0.9938 0.2108 0.9664 0.2633 0.9771 0.2108 0.9664 0.2484 0.9506 0.2633 0.9771 0.2633 0.9771 0.2484 0.9506 0.3013 0.9477 0.2484 0.9506 0.2821 0.9256 0.3013 0.9477 0.3013 0.9477 0.2821 0.9256 0.3213 0.9193 0.2821 0.9256 0.2991 0.9028 0.3213 0.9193 0.3213 0.9193 0.2991 0.9028 0.3349 0.8845 0.2991 0.9028 0.2821 0.9256 0.278 0.8916 0.2821 0.9256 0.2612 0.9151 0.278 0.8916 0.2612 0.9151 0.2821 0.9256 0.2484 0.9506 0.2612 0.9151 0.2484 0.9506 0.2381 0.9321 0.2381 0.9321 0.2484 0.9506 0.2108 0.9664 0.2381 0.9321 0.2108 0.9664 0.2075999 0.9397 0.2075999 0.9397 0.2108 0.9664 0.175 0.9429 0.2108 0.9664 0.1728 0.9695 0.175 0.9429 0.175 0.9429 0.1728 0.9695 0.1407 0.9437 0.1728 0.9695 0.1347 0.9675 0.1407 0.9437 0.1407 0.9437 0.1347 0.9675 0.1115 0.9382 0.1347 0.9675 0.1004 0.9584 0.1115 0.9382 0.1115 0.9382 0.1004 0.9584 0.07409995 0.939 0.1115 0.9382 0.07409995 0.939 0.08959996 0.9262 0.08959996 0.9262 0.07409995 0.939 0.07589995 0.9076 0.07409995 0.939 0.0546 0.9126 0.07589995 0.9076 0.08959996 0.9262 0.07589995 0.9076 0.09689998 0.9026 0.08959996 0.9262 0.09689998 0.9026 0.1044 0.9163 0.08959996 0.9262 0.1044 0.9163 0.1115 0.9382 0.1044 0.9163 0.1231999 0.923 0.1115 0.9382 0.1115 0.9382 0.1231999 0.923 0.1407 0.9437 0.1231999 0.923 0.1442 0.9237 0.1407 0.9437 0.1407 0.9437 0.1442 0.9237 0.175 0.9429 0.1442 0.9237 0.1757 0.9223 0.175 0.9429 0.175 0.9429 0.1757 0.9223 0.2075999 0.9397 0.1757 0.9223 0.1442 0.9237 0.1455 0.9013 0.1455 0.9013 0.1442 0.9237 0.1231999 0.923 0.1455 0.9013 0.1231999 0.923 0.1204 0.902 0.1204 0.902 0.1231999 0.923 0.1044 0.9163 0.1204 0.902 0.1044 0.9163 0.09689998 0.9026 0.1204 0.902 0.09689998 0.9026 0.1177 0.8849 0.09689998 0.9026 0.09279996 0.889 0.1177 0.8849 0.09279996 0.889 0.09689998 0.9026 0.07589995 0.9076 0.09279996 0.889 0.07589995 0.9076 0.06939995 0.8885 0.06939995 0.8885 0.07589995 0.9076 0.0546 0.9126 0.06939995 0.8885 0.0546 0.9126 0.04709994 0.8862 0.04709994 0.8862 0.0546 0.9126 0.023 0.8876 0.04709994 0.8862 0.023 0.8876 0.04659998 0.875 0.023 0.8876 0.02099996 0.8766 0.04659998 0.875 0.04709994 0.8862 0.04659998 0.875 0.06809997 0.8773 0.04709994 0.8862 0.06809997 0.8773 0.06939995 0.8885 0.06939995 0.8885 0.06809997 0.8773 0.09099996 0.8771 0.06939995 0.8885 0.09099996 0.8771 0.09279996 0.889 0.09279996 0.889 0.09099996 0.8771 0.1162 0.8732 0.09279996 0.889 0.1162 0.8732 0.1177 0.8849 0.1177 0.8849 0.1162 0.8732 0.1419 0.8689 0.1177 0.8849 0.1419 0.8689 0.1446 0.8802 0.1177 0.8849 0.1446 0.8802 0.1204 0.902 0.1446 0.8802 0.1455 0.9013 0.1204 0.902 0.1455 0.9013 0.1446 0.8802 0.1784999 0.9019 0.1455 0.9013 0.1784999 0.9019 0.1757 0.9223 0.1757 0.9223 0.1784999 0.9019 0.2068 0.9178 0.1757 0.9223 0.2068 0.9178 0.2075999 0.9397 0.1784999 0.9019 0.2085 0.9007 0.2068 0.9178 0.2075999 0.9397 0.2068 0.9178 0.2384999 0.914 0.2085 0.9007 0.2384999 0.914 0.2068 0.9178 0.2075999 0.9397 0.2384999 0.914 0.2381 0.9321 0.2381 0.9321 0.2384999 0.914 0.2612 0.9151 0.2612 0.9151 0.2384999 0.914 0.2408 0.9018 0.2408 0.9018 0.2384999 0.914 0.2085 0.9007 0.2612 0.9151 0.2408 0.9018 0.2634 0.8861 0.2612 0.9151 0.2634 0.8861 0.278 0.8916 0.2634 0.8861 0.2408 0.9018 0.2398 0.8804 0.2398 0.8804 0.2408 0.9018 0.2085 0.9007 0.2398 0.8804 0.2085 0.9007 0.2103 0.8809 0.2103 0.8809 0.2085 0.9007 0.179 0.8788 0.2085 0.9007 0.1784999 0.9019 0.179 0.8788 0.179 0.8788 0.1784999 0.9019 0.1446 0.8802 0.179 0.8788 0.1446 0.8802 0.1419 0.8689 0.179 0.8788 0.1419 0.8689 0.1793 0.868 0.179 0.8788 0.1793 0.868 0.2103 0.8809 0.1793 0.868 0.2104 0.8657 0.2103 0.8809 0.2103 0.8809 0.2104 0.8657 0.2398 0.8804 0.2104 0.8657 0.2412 0.8629 0.2398 0.8804 0.2398 0.8804 0.2412 0.8629 0.2634 0.8861 0.2412 0.8629 0.2657 0.8638 0.2634 0.8861 0.2634 0.8861 0.2657 0.8638 0.288 0.867 0.2634 0.8861 0.288 0.867 0.278 0.8916 0.278 0.8916 0.288 0.867 0.3111 0.8754 0.278 0.8916 0.3111 0.8754 0.2991 0.9028 0.2991 0.9028 0.3111 0.8754 0.3349 0.8845 0.3349 0.8845 0.3111 0.8754 0.3209 0.8457 0.3349 0.8845 0.3209 0.8457 0.3455 0.8479 0.3209 0.8457 0.3111 0.8754 0.2935 0.8438 0.3111 0.8754 0.288 0.867 0.2935 0.8438 0.2935 0.8438 0.288 0.867 0.2685 0.8416 0.288 0.867 0.2657 0.8638 0.2685 0.8416 0.2685 0.8416 0.2657 0.8638 0.2412 0.8629 0.2685 0.8416 0.2412 0.8629 0.2413 0.8421 0.2413 0.8421 0.2412 0.8629 0.2092 0.8553 0.2412 0.8629 0.2104 0.8657 0.2092 0.8553 0.2092 0.8553 0.2104 0.8657 0.1972 0.8643 0.1972 0.8643 0.2104 0.8657 0.1793 0.868 0.1793 0.868 0.1419 0.8689 0.1633 0.864 0.1419 0.8689 0.1407 0.8618 0.1633 0.864 0.1407 0.8618 0.1531 0.8539 0.1633 0.864 0.1407 0.8618 0.1419 0.8689 0.135 0.8645 0.135 0.8645 0.1419 0.8689 0.1162 0.8732 0.1407 0.8618 0.135 0.8645 0.1317 0.8586 0.1407 0.8618 0.1317 0.8586 0.1356 0.8513 0.1407 0.8618 0.1356 0.8513 0.1531 0.8539 0.1531 0.8539 0.1356 0.8513 0.1481 0.839 0.1356 0.8513 0.1406 0.8368 0.1481 0.839 0.1481 0.839 0.1406 0.8368 0.1524 0.8234 0.1406 0.8368 0.1435 0.8155 0.1524 0.8234 0.1435 0.8155 0.16 0.8137 0.1524 0.8234 0.16 0.8137 0.1435 0.8155 0.1551 0.8014 0.16 0.8137 0.1551 0.8014 0.1704 0.8052 0.1704 0.8052 0.1551 0.8014 0.1653 0.7956 0.1704 0.8052 0.1653 0.7956 0.1795 0.8004 0.1795 0.8004 0.1653 0.7956 0.1755 0.7848 0.1795 0.8004 0.1755 0.7848 0.1872 0.7922 0.1872 0.7922 0.1755 0.7848 0.1815 0.7717 0.1872 0.7922 0.1815 0.7717 0.1922 0.7821 0.1815 0.7717 0.1942999 0.7717 0.1922 0.7821 0.1942999 0.7717 0.1815 0.7717 0.1941 0.7613 0.1815 0.7717 0.1841 0.7561 0.1941 0.7613 0.1941 0.7613 0.1841 0.7561 0.1953999 0.7491 0.1841 0.7561 0.1815 0.7717 0.1606 0.7586 0.1606 0.7586 0.1815 0.7717 0.1755 0.7848 0.1606 0.7586 0.1755 0.7848 0.152 0.7727 0.152 0.7727 0.1755 0.7848 0.1653 0.7956 0.152 0.7727 0.1653 0.7956 0.1398 0.7858 0.1398 0.7858 0.1653 0.7956 0.1551 0.8014 0.1398 0.7858 0.1551 0.8014 0.1335999 0.792 0.1335999 0.792 0.1551 0.8014 0.1435 0.8155 0.1335999 0.792 0.1435 0.8155 0.1256999 0.8024 0.1256999 0.8024 0.1435 0.8155 0.1206 0.8103 0.1435 0.8155 0.1406 0.8368 0.1206 0.8103 0.1206 0.8103 0.1406 0.8368 0.1248 0.8356 0.1248 0.8356 0.1406 0.8368 0.1356 0.8513 0.1248 0.8356 0.1356 0.8513 0.1213 0.8401 0.1356 0.8513 0.1317 0.8586 0.1213 0.8401 0.1248 0.8356 0.1213 0.8401 0.1102 0.8268 0.1248 0.8356 0.1102 0.8268 0.1121 0.8183 0.1248 0.8356 0.1121 0.8183 0.1206 0.8103 0.1206 0.8103 0.1121 0.8183 0.106 0.8001 0.1206 0.8103 0.106 0.8001 0.1256999 0.8024 0.106 0.8001 0.1109 0.7912 0.1256999 0.8024 0.1256999 0.8024 0.1109 0.7912 0.1103 0.7793 0.1256999 0.8024 0.1103 0.7793 0.1335999 0.792 0.1335999 0.792 0.1103 0.7793 0.1177999 0.7717 0.1335999 0.792 0.1177999 0.7717 0.1398 0.7858 0.1398 0.7858 0.1177999 0.7717 0.1339 0.7619 0.1398 0.7858 0.1339 0.7619 0.152 0.7727 0.152 0.7727 0.1339 0.7619 0.1457999 0.7475 0.152 0.7727 0.1457999 0.7475 0.1606 0.7586 0.1606 0.7586 0.1457999 0.7475 0.1651999 0.7466 0.1606 0.7586 0.1651999 0.7466 0.1841 0.7561 0.1841 0.7561 0.1651999 0.7466 0.1865 0.7463 0.1841 0.7561 0.1865 0.7463 0.1953999 0.7491 0.1651999 0.7466 0.1687 0.7381 0.1865 0.7463 0.1953999 0.7491 0.1865 0.7463 0.1884 0.7318 0.1687 0.7381 0.1884 0.7318 0.1865 0.7463 0.1884 0.7318 0.1687 0.7381 0.1715 0.7236 0.1715 0.7236 0.1687 0.7381 0.147 0.7302 0.1687 0.7381 0.1651999 0.7466 0.147 0.7302 0.147 0.7302 0.1651999 0.7466 0.1457999 0.7475 0.147 0.7302 0.1457999 0.7475 0.1436 0.7456 0.1436 0.7456 0.1457999 0.7475 0.1322 0.7604 0.1457999 0.7475 0.1339 0.7619 0.1322 0.7604 0.1322 0.7604 0.1339 0.7619 0.1177999 0.7717 0.1322 0.7604 0.1177999 0.7717 0.1164 0.769 0.1164 0.769 0.1177999 0.7717 0.1103 0.7793 0.1164 0.769 0.1103 0.7793 0.0963 0.7723 0.0963 0.7723 0.1103 0.7793 0.1109 0.7912 0.0963 0.7723 0.1109 0.7912 0.09069997 0.7791 0.09069997 0.7791 0.1109 0.7912 0.106 0.8001 0.09069997 0.7791 0.106 0.8001 0.0837 0.7855 0.106 0.8001 0.09429997 0.8022 0.0837 0.7855 0.09429997 0.8022 0.106 0.8001 0.09799998 0.8144 0.09799998 0.8144 0.106 0.8001 0.1121 0.8183 0.09799998 0.8144 0.1121 0.8183 0.09920001 0.8226 0.1121 0.8183 0.1102 0.8268 0.09920001 0.8226 0.09920001 0.8226 0.1102 0.8268 0.1043 0.8399 0.1043 0.8399 0.1102 0.8268 0.1213 0.8401 0.1043 0.8399 0.1213 0.8401 0.1134999 0.846 0.1134999 0.846 0.1213 0.8401 0.1317 0.8586 0.1043 0.8399 0.1134999 0.846 0.1042 0.8507 0.1043 0.8399 0.1042 0.8507 0.08809995 0.8391 0.1043 0.8399 0.08809995 0.8391 0.09920001 0.8226 0.08809995 0.8391 0.0794 0.8254 0.09920001 0.8226 0.09920001 0.8226 0.0794 0.8254 0.07839995 0.818 0.09920001 0.8226 0.07839995 0.818 0.09799998 0.8144 0.09799998 0.8144 0.07839995 0.818 0.07969999 0.8082 0.09799998 0.8144 0.07969999 0.8082 0.09429997 0.8022 0.09429997 0.8022 0.07969999 0.8082 0.07359999 0.7922 0.09429997 0.8022 0.07359999 0.7922 0.0837 0.7855 0.0837 0.7855 0.07359999 0.7922 0.07159996 0.7902 0.0837 0.7855 0.07159996 0.7902 0.0819 0.7841 0.0837 0.7855 0.0819 0.7841 0.09069997 0.7791 0.0819 0.7841 0.08950001 0.7787 0.09069997 0.7791 0.09069997 0.7791 0.08950001 0.7787 0.0963 0.7723 0.08950001 0.7787 0.0819 0.7841 0.08059996 0.783 0.08059996 0.783 0.0819 0.7841 0.07119995 0.7878 0.0819 0.7841 0.07159996 0.7902 0.07119995 0.7878 0.07119995 0.7878 0.07159996 0.7902 0.05259996 0.7917 0.07159996 0.7902 0.05499994 0.7959 0.05259996 0.7917 0.05499994 0.7959 0.07159996 0.7902 0.07359999 0.7922 0.05499994 0.7959 0.07359999 0.7922 0.05769997 0.7991 0.05769997 0.7991 0.07359999 0.7922 0.07969999 0.8082 0.05769997 0.7991 0.07969999 0.8082 0.06259995 0.8146 0.06259995 0.8146 0.07969999 0.8082 0.07839995 0.818 0.06259995 0.8146 0.07839995 0.818 0.05829995 0.8267 0.05829995 0.8267 0.07839995 0.818 0.0794 0.8254 0.05829995 0.8267 0.0794 0.8254 0.06009995 0.8331 0.06009995 0.8331 0.0794 0.8254 0.06949996 0.8437 0.0794 0.8254 0.08809995 0.8391 0.06949996 0.8437 0.06949996 0.8437 0.08809995 0.8391 0.0848 0.8518 0.0848 0.8518 0.08809995 0.8391 0.1042 0.8507 0.0848 0.8518 0.1042 0.8507 0.0938 0.8612 0.1042 0.8507 0.1156 0.8596 0.0938 0.8612 0.1156 0.8596 0.1042 0.8507 0.1134999 0.846 0.1156 0.8596 0.1134999 0.846 0.1317 0.8586 0.1156 0.8596 0.1317 0.8586 0.1192 0.8641 0.1156 0.8596 0.1192 0.8641 0.0938 0.8612 0.1317 0.8586 0.135 0.8645 0.1192 0.8641 0.1192 0.8641 0.135 0.8645 0.1162 0.8732 0.1192 0.8641 0.1162 0.8732 0.09279996 0.8654 0.1192 0.8641 0.09279996 0.8654 0.0938 0.8612 0.1162 0.8732 0.09099996 0.8771 0.09279996 0.8654 0.0938 0.8612 0.09279996 0.8654 0.06629997 0.8605 0.0938 0.8612 0.06629997 0.8605 0.0848 0.8518 0.0848 0.8518 0.06629997 0.8605 0.0625 0.8559 0.0848 0.8518 0.0625 0.8559 0.06949996 0.8437 0.0625 0.8559 0.05559998 0.8491 0.06949996 0.8437 0.06949996 0.8437 0.05559998 0.8491 0.06009995 0.8331 0.05559998 0.8491 0.0625 0.8559 0.04149997 0.8596 0.0625 0.8559 0.06629997 0.8605 0.04149997 0.8596 0.04149997 0.8596 0.06629997 0.8605 0.04479998 0.8654 0.06629997 0.8605 0.06949996 0.8651 0.04479998 0.8654 0.06949996 0.8651 0.06629997 0.8605 0.09279996 0.8654 0.06949996 0.8651 0.09279996 0.8654 0.09099996 0.8771 0.06949996 0.8651 0.09099996 0.8771 0.06809997 0.8773 0.06949996 0.8651 0.06809997 0.8773 0.04659998 0.875 0.06949996 0.8651 0.04659998 0.875 0.04479998 0.8654 0.04479998 0.8654 0.04659998 0.875 0.02099996 0.8766 0.04479998 0.8654 0.02099996 0.8766 0.02209997 0.8669 0.04479998 0.8654 0.02209997 0.8669 0.02249997 0.8623 0.04479998 0.8654 0.02249997 0.8623 0.04149997 0.8596 0.04149997 0.8596 0.02249997 0.8623 0.02249997 0.8582 0.04149997 0.8596 0.02249997 0.8582 0.0399 0.8551 0.04149997 0.8596 0.0399 0.8551 0.05559998 0.8491 0.02249997 0.8582 0.03739994 0.8487 0.0399 0.8551 0.05559998 0.8491 0.0399 0.8551 0.03739994 0.8487 0.05559998 0.8491 0.03739994 0.8487 0.04769998 0.8397 0.05559998 0.8491 0.04769998 0.8397 0.06009995 0.8331 0.04769998 0.8397 0.03739994 0.8487 0.03189998 0.8454 0.06009995 0.8331 0.04769998 0.8397 0.04609996 0.8344 0.03189998 0.8454 0.04609996 0.8344 0.04769998 0.8397 0.06009995 0.8331 0.04609996 0.8344 0.05829995 0.8267 0.05829995 0.8267 0.04609996 0.8344 0.04379999 0.8218 0.05829995 0.8267 0.04379999 0.8218 0.06259995 0.8146 0.04379999 0.8218 0.04609996 0.8344 0.0302 0.8282 0.04609996 0.8344 0.03189998 0.8454 0.0302 0.8282 0.04379999 0.8218 0.0302 0.8282 0.02709996 0.8132 0.04379999 0.8218 0.02709996 0.8132 0.04199999 0.8074 0.04379999 0.8218 0.04199999 0.8074 0.06259995 0.8146 0.04199999 0.8074 0.05769997 0.7991 0.06259995 0.8146 0.05769997 0.7991 0.04199999 0.8074 0.03999996 0.8032 0.05769997 0.7991 0.03999996 0.8032 0.05499994 0.7959 0.03999996 0.8032 0.04199999 0.8074 0.0266 0.8086 0.04199999 0.8074 0.02709996 0.8132 0.0266 0.8086 0.0266 0.8086 0.02709996 0.8132 0.01669996 0.8105 0.02709996 0.8132 0.01569998 0.8153 0.01669996 0.8105 0.01569998 0.8153 0.02709996 0.8132 0.0302 0.8282 0.01569998 0.8153 0.0302 0.8282 0.0169 0.8321 0.0169 0.8321 0.0302 0.8282 0.03189998 0.8454 0.0169 0.8321 0.03189998 0.8454 0.01859998 0.8497 0.01859998 0.8497 0.03189998 0.8454 0.02249997 0.8582 0.03189998 0.8454 0.03739994 0.8487 0.02249997 0.8582 0.0266 0.8086 0.01669996 0.8105 0.01459997 0.7994 0.0266 0.8086 0.01459997 0.7994 0.0241 0.7976 0.0266 0.8086 0.0241 0.7976 0.03999996 0.8032 0.0241 0.7976 0.01459997 0.7994 0.01309996 0.7958 0.03999996 0.8032 0.0241 0.7976 0.03579998 0.7961 0.03999996 0.8032 0.03579998 0.7961 0.05499994 0.7959 0.03579998 0.7961 0.05259996 0.7917 0.05499994 0.7959 0.05259996 0.7917 0.03579998 0.7961 0.03529995 0.7924 0.03529995 0.7924 0.03579998 0.7961 0.02329999 0.794 0.03579998 0.7961 0.0241 0.7976 0.02329999 0.794 0.02329999 0.794 0.0241 0.7976 0.01309996 0.7958 0.02329999 0.794 0.01309996 0.7958 0.01859998 0.7573 0.01309996 0.7958 0.007399976 0.7571 0.01859998 0.7573 0.01859998 0.7573 0.007399976 0.7571 0.01299995 0.7465 0.01859998 0.7573 0.01299995 0.7465 0.01759999 0.7478 0.01859998 0.7573 0.01759999 0.7478 0.02819997 0.754 0.01859998 0.7573 0.02819997 0.754 0.02329999 0.794 0.02819997 0.754 0.03529995 0.7924 0.02329999 0.794 0.03529995 0.7924 0.02819997 0.754 0.04619997 0.7736 0.03529995 0.7924 0.04619997 0.7736 0.05219995 0.7893 0.03529995 0.7924 0.05219995 0.7893 0.05259996 0.7917 0.05259996 0.7917 0.05219995 0.7893 0.07119995 0.7878 0.05219995 0.7893 0.07069998 0.7857 0.07119995 0.7878 0.07119995 0.7878 0.07069998 0.7857 0.08059996 0.783 0.07069998 0.7857 0.05219995 0.7893 0.06029999 0.768 0.08059996 0.783 0.07069998 0.7857 0.07989996 0.7812 0.06029999 0.768 0.07989996 0.7812 0.07069998 0.7857 0.08059996 0.783 0.07989996 0.7812 0.09549999 0.773 0.08059996 0.783 0.09549999 0.773 0.08950001 0.7787 0.07989996 0.7812 0.0963 0.7723 0.09549999 0.773 0.08950001 0.7787 0.09549999 0.773 0.0963 0.7723 0.07989996 0.7812 0.07179999 0.7541 0.0963 0.7723 0.07179999 0.7541 0.07989996 0.7812 0.0679 0.7636 0.0679 0.7636 0.07989996 0.7812 0.06029999 0.768 0.07179999 0.7541 0.0679 0.7636 0.05169999 0.7343 0.0679 0.7636 0.06029999 0.768 0.04399996 0.7407 0.05169999 0.7343 0.0679 0.7636 0.04399996 0.7407 0.06029999 0.768 0.03529995 0.7472 0.04399996 0.7407 0.03529995 0.7472 0.06029999 0.768 0.04619997 0.7736 0.04619997 0.7736 0.06029999 0.768 0.05219995 0.7893 0.03529995 0.7472 0.04619997 0.7736 0.02819997 0.754 0.03529995 0.7472 0.02819997 0.754 0.02499997 0.7471 0.02499997 0.7471 0.02819997 0.754 0.01759999 0.7478 0.02499997 0.7471 0.01759999 0.7478 0.02569997 0.7378 0.02569997 0.7378 0.01759999 0.7478 0.01299995 0.7465 0.02569997 0.7378 0.01299995 0.7465 0.01959997 0.7338 0.02569997 0.7378 0.01959997 0.7338 0.0327 0.7245 0.01959997 0.7338 0.02579998 0.7206 0.0327 0.7245 0.0327 0.7245 0.02579998 0.7206 0.03939998 0.7124 0.02579998 0.7206 0.03289997 0.7082 0.03939998 0.7124 0.03939998 0.7124 0.03289997 0.7082 0.04479998 0.694 0.03939998 0.7124 0.04479998 0.694 0.05259996 0.6992 0.05259996 0.6992 0.04479998 0.694 0.05739998 0.6838 0.03939998 0.7124 0.05259996 0.6992 0.0442 0.7149 0.03939998 0.7124 0.0442 0.7149 0.0327 0.7245 0.0442 0.7149 0.04019999 0.7276 0.0327 0.7245 0.0327 0.7245 0.04019999 0.7276 0.02569997 0.7378 0.04019999 0.7276 0.032 0.7395 0.02569997 0.7378 0.02569997 0.7378 0.032 0.7395 0.02499997 0.7471 0.02499997 0.7471 0.032 0.7395 0.03109997 0.7445 0.02499997 0.7471 0.03109997 0.7445 0.03529995 0.7472 0.03529995 0.7472 0.03109997 0.7445 0.04399996 0.7407 0.03109997 0.7445 0.04199999 0.7351 0.04399996 0.7407 0.04399996 0.7407 0.04199999 0.7351 0.05169999 0.7343 0.04199999 0.7351 0.03109997 0.7445 0.032 0.7395 0.04199999 0.7351 0.032 0.7395 0.04019999 0.7276 0.04199999 0.7351 0.04019999 0.7276 0.05379998 0.7201 0.05379998 0.7201 0.04019999 0.7276 0.0442 0.7149 0.05379998 0.7201 0.0442 0.7149 0.05409997 0.7055 0.05409997 0.7055 0.0442 0.7149 0.05259996 0.6992 0.05409997 0.7055 0.05259996 0.6992 0.06689995 0.6897 0.06689995 0.6897 0.05259996 0.6992 0.05739998 0.6838 0.06689995 0.6897 0.05739998 0.6838 0.07299995 0.6721 0.06689995 0.6897 0.07299995 0.6721 0.07779997 0.6824 0.07779997 0.6824 0.07299995 0.6721 0.08599996 0.6624 0.06689995 0.6897 0.07779997 0.6824 0.06739997 0.6967 0.06689995 0.6897 0.06739997 0.6967 0.05409997 0.7055 0.05409997 0.7055 0.06739997 0.6967 0.06069999 0.712 0.05409997 0.7055 0.06069999 0.712 0.05379998 0.7201 0.06739997 0.6967 0.06659996 0.7029 0.06069999 0.712 0.06659996 0.7029 0.06739997 0.6967 0.07459998 0.6974 0.06739997 0.6967 0.07779997 0.6824 0.07459998 0.6974 0.07459998 0.6974 0.07779997 0.6824 0.08719998 0.6853 0.08719998 0.6853 0.07779997 0.6824 0.0945 0.6723 0.0945 0.6723 0.07779997 0.6824 0.08599996 0.6624 0.0945 0.6723 0.08599996 0.6624 0.1019999 0.6469 0.0945 0.6723 0.1019999 0.6469 0.1201 0.659 0.0945 0.6723 0.1201 0.659 0.1169 0.6862 0.1169 0.6862 0.1201 0.659 0.1477 0.6795 0.0945 0.6723 0.1169 0.6862 0.1005 0.6819 0.0945 0.6723 0.1005 0.6819 0.08719998 0.6853 0.1005 0.6819 0.1169 0.6862 0.1013 0.6956 0.08719998 0.6853 0.1005 0.6819 0.0934 0.6881 0.1013 0.6956 0.0934 0.6881 0.1005 0.6819 0.08719998 0.6853 0.0934 0.6881 0.08609998 0.6955 0.08719998 0.6853 0.08609998 0.6955 0.07459998 0.6974 0.08609998 0.6955 0.0934 0.6881 0.09329998 0.7015 0.0934 0.6881 0.1013 0.6956 0.09329998 0.7015 0.08609998 0.6955 0.09329998 0.7015 0.08169996 0.6998 0.08609998 0.6955 0.08169996 0.6998 0.07459998 0.6974 0.08169996 0.6998 0.07279998 0.7017 0.07459998 0.6974 0.07459998 0.6974 0.07279998 0.7017 0.06659996 0.7029 0.07279998 0.7017 0.06759995 0.7062 0.06659996 0.7029 0.06659996 0.7029 0.06759995 0.7062 0.06069999 0.712 0.06759995 0.7062 0.06349998 0.712 0.06069999 0.712 0.06069999 0.712 0.06349998 0.712 0.06019997 0.7183 0.06069999 0.712 0.06019997 0.7183 0.05379998 0.7201 0.06019997 0.7183 0.06349998 0.712 0.0618 0.7185 0.06349998 0.712 0.06439995 0.713 0.0618 0.7185 0.06439995 0.713 0.06349998 0.712 0.06759995 0.7062 0.06439995 0.713 0.06759995 0.7062 0.0683 0.7081 0.0683 0.7081 0.06759995 0.7062 0.07279998 0.7017 0.0683 0.7081 0.07279998 0.7017 0.07289999 0.7041 0.07289999 0.7041 0.07279998 0.7017 0.08169996 0.6998 0.07289999 0.7041 0.08169996 0.6998 0.08139997 0.7019 0.08139997 0.7019 0.08169996 0.6998 0.09009999 0.7044 0.09009999 0.7044 0.08169996 0.6998 0.09329998 0.7015 0.09009999 0.7044 0.09329998 0.7015 0.09609997 0.7132 0.09329998 0.7015 0.1007 0.7109 0.09609997 0.7132 0.1007 0.7109 0.09329998 0.7015 0.1013 0.6956 0.1007 0.7109 0.1013 0.6956 0.1089 0.7039 0.1089 0.7039 0.1013 0.6956 0.1169 0.6862 0.1007 0.7109 0.1089 0.7039 0.112 0.712 0.1169 0.6862 0.128 0.7017 0.1089 0.7039 0.112 0.712 0.1089 0.7039 0.128 0.7017 0.1169 0.6862 0.1353 0.6927 0.128 0.7017 0.1353 0.6927 0.1169 0.6862 0.1477 0.6795 0.128 0.7017 0.1353 0.6927 0.1449 0.7083 0.1477 0.6795 0.1449 0.7083 0.1353 0.6927 0.1449 0.7083 0.1477 0.6795 0.1722 0.696 0.1449 0.7083 0.1722 0.696 0.1715 0.7236 0.1715 0.7236 0.1722 0.696 0.201 0.7098 0.1449 0.7083 0.1715 0.7236 0.147 0.7302 0.201 0.7098 0.1884 0.7318 0.1715 0.7236 0.1884 0.7318 0.201 0.7098 0.2217 0.7439 0.201 0.7098 0.2414 0.7141 0.2217 0.7439 0.1884 0.7318 0.2217 0.7439 0.1953999 0.7491 0.2217 0.7439 0.2194 0.7572 0.1953999 0.7491 0.1953999 0.7491 0.2194 0.7572 0.1996 0.7638 0.2194 0.7572 0.2107 0.768 0.1996 0.7638 0.1996 0.7638 0.2107 0.768 0.2027 0.7754 0.2107 0.768 0.2071 0.7771 0.2027 0.7754 0.2027 0.7754 0.2071 0.7771 0.202 0.7854 0.2071 0.7771 0.2068 0.7872 0.202 0.7854 0.202 0.7854 0.2068 0.7872 0.2052 0.7974 0.202 0.7854 0.2052 0.7974 0.1958 0.7962 0.1958 0.7962 0.2052 0.7974 0.2003 0.807 0.1958 0.7962 0.2003 0.807 0.1881 0.8057 0.1881 0.8057 0.2003 0.807 0.1967 0.8156 0.1881 0.8057 0.1967 0.8156 0.1789 0.8127 0.1789 0.8127 0.1967 0.8156 0.1915 0.8203 0.1915 0.8203 0.1967 0.8156 0.2021 0.8289 0.1789 0.8127 0.1915 0.8203 0.1795 0.8174 0.1789 0.8127 0.1795 0.8174 0.1693 0.8208 0.1789 0.8127 0.1693 0.8208 0.1671 0.8189 0.1693 0.8208 0.1795 0.8174 0.1802 0.8294 0.1795 0.8174 0.1915 0.8203 0.1802 0.8294 0.1802 0.8294 0.1915 0.8203 0.1942999 0.8307 0.1915 0.8203 0.1987 0.8299 0.1942999 0.8307 0.1987 0.8299 0.1915 0.8203 0.2021 0.8289 0.1942999 0.8307 0.1987 0.8299 0.2019 0.8401 0.2021 0.8289 0.2019 0.8401 0.1987 0.8299 0.2019 0.8401 0.2021 0.8289 0.2049 0.841 0.2019 0.8401 0.2049 0.841 0.2031 0.8519 0.2019 0.8401 0.2031 0.8519 0.2003 0.851 0.2019 0.8401 0.2003 0.851 0.1947 0.8457 0.2019 0.8401 0.1947 0.8457 0.1942999 0.8307 0.1947 0.8457 0.2003 0.851 0.1923 0.8576 0.1923 0.8576 0.2003 0.851 0.2031 0.8519 0.1923 0.8576 0.2031 0.8519 0.1939 0.86 0.1923 0.8576 0.1939 0.86 0.1814 0.8625 0.1923 0.8576 0.1814 0.8625 0.1808 0.8599 0.1923 0.8576 0.1808 0.8599 0.1809999 0.8462 0.1923 0.8576 0.1809999 0.8462 0.1947 0.8457 0.1809999 0.8462 0.1808 0.8599 0.1702 0.8577 0.1702 0.8577 0.1808 0.8599 0.1814 0.8625 0.1702 0.8577 0.1814 0.8625 0.1678 0.8597 0.1702 0.8577 0.1678 0.8597 0.1628 0.8498 0.1678 0.8597 0.1601 0.8511 0.1628 0.8498 0.1628 0.8498 0.1601 0.8511 0.1561 0.8391 0.1628 0.8498 0.1561 0.8391 0.1597 0.839 0.1597 0.839 0.1561 0.8391 0.1586 0.829 0.1628 0.8498 0.1597 0.839 0.1669 0.8453 0.1628 0.8498 0.1669 0.8453 0.1702 0.8577 0.1669 0.8453 0.1809999 0.8462 0.1702 0.8577 0.1809999 0.8462 0.1669 0.8453 0.1705 0.8436 0.1809999 0.8462 0.1705 0.8436 0.1811 0.8435 0.1809999 0.8462 0.1811 0.8435 0.1947 0.8457 0.1811 0.8435 0.1905 0.8437 0.1947 0.8457 0.1947 0.8457 0.1905 0.8437 0.1942999 0.8307 0.1905 0.8437 0.1905 0.8328 0.1942999 0.8307 0.1905 0.8328 0.1905 0.8437 0.1811 0.8435 0.1942999 0.8307 0.1905 0.8328 0.1802 0.8294 0.1811 0.8435 0.1807 0.8325 0.1905 0.8328 0.1807 0.8325 0.1811 0.8435 0.1705 0.8436 0.1905 0.8328 0.1807 0.8325 0.1802 0.8294 0.1705 0.8436 0.1704 0.8322 0.1807 0.8325 0.1704 0.8322 0.1705 0.8436 0.1669 0.8453 0.1704 0.8322 0.1669 0.8453 0.1666 0.8306 0.1666 0.8306 0.1669 0.8453 0.1597 0.839 0.1704 0.8322 0.1666 0.8306 0.1807 0.8325 0.1666 0.8306 0.1802 0.8294 0.1807 0.8325 0.1802 0.8294 0.1666 0.8306 0.1693 0.8208 0.1693 0.8208 0.1666 0.8306 0.1615999 0.8294 0.1615999 0.8294 0.1666 0.8306 0.1597 0.839 0.1615999 0.8294 0.1597 0.839 0.1586 0.829 0.1615999 0.8294 0.1586 0.829 0.1671 0.8189 0.1615999 0.8294 0.1671 0.8189 0.1693 0.8208 0.2092 0.8553 0.2129999 0.8415 0.2413 0.8421 0.2413 0.8421 0.2129999 0.8415 0.2414 0.8184 0.2129999 0.8415 0.2103 0.829 0.2414 0.8184 0.2413 0.8421 0.2414 0.8184 0.2685 0.8416 0.2103 0.829 0.206 0.8197 0.2414 0.8184 0.206 0.8197 0.2079 0.8151 0.2414 0.8184 0.2414 0.8184 0.2079 0.8151 0.2100999 0.8005 0.2414 0.8184 0.2100999 0.8005 0.2381 0.8022 0.2381 0.8022 0.2100999 0.8005 0.2109 0.7894 0.2381 0.8022 0.2109 0.7894 0.2353 0.7884 0.2353 0.7884 0.2109 0.7894 0.2107 0.7784 0.2381 0.8022 0.2353 0.7884 0.2645 0.8043 0.2381 0.8022 0.2645 0.8043 0.2414 0.8184 0.2645 0.8043 0.27 0.8187 0.2414 0.8184 0.2414 0.8184 0.27 0.8187 0.2685 0.8416 0.2685 0.8416 0.27 0.8187 0.2935 0.8438 0.27 0.8187 0.297 0.816 0.2935 0.8438 0.2935 0.8438 0.297 0.816 0.3209 0.8457 0.297 0.816 0.27 0.8187 0.2929 0.8006 0.27 0.8187 0.2645 0.8043 0.2929 0.8006 0.297 0.816 0.2929 0.8006 0.3265 0.8122 0.297 0.816 0.3265 0.8122 0.3209 0.8457 0.3209 0.8457 0.3265 0.8122 0.3455 0.8479 0.3265 0.8122 0.3511 0.8115 0.3455 0.8479 0.3511 0.8115 0.3265 0.8122 0.3233 0.7934 0.3233 0.7934 0.3265 0.8122 0.2929 0.8006 0.3511 0.8115 0.3233 0.7934 0.3505 0.7849 0.3233 0.7934 0.2929 0.8006 0.2865 0.7837 0.2865 0.7837 0.2929 0.8006 0.2645 0.8043 0.2865 0.7837 0.2645 0.8043 0.2602 0.7881 0.2602 0.7881 0.2645 0.8043 0.2353 0.7884 0.2865 0.7837 0.2602 0.7881 0.2817 0.7686 0.2602 0.7881 0.2353 0.7884 0.2567 0.7754 0.2817 0.7686 0.2602 0.7881 0.2567 0.7754 0.2353 0.7884 0.2342 0.7747 0.2567 0.7754 0.2342 0.7747 0.2353 0.7884 0.2107 0.7784 0.2342 0.7747 0.2107 0.7784 0.2132 0.7696 0.2342 0.7747 0.2132 0.7696 0.2194 0.7572 0.2342 0.7747 0.2194 0.7572 0.2373999 0.7608 0.2373999 0.7608 0.2194 0.7572 0.2217 0.7439 0.2342 0.7747 0.2373999 0.7608 0.2582 0.7608 0.2342 0.7747 0.2582 0.7608 0.2567 0.7754 0.2567 0.7754 0.2582 0.7608 0.2817 0.7686 0.2582 0.7608 0.2796 0.755 0.2817 0.7686 0.2817 0.7686 0.2796 0.755 0.3067 0.7564 0.2817 0.7686 0.3067 0.7564 0.2865 0.7837 0.3067 0.7564 0.3139 0.7703 0.2865 0.7837 0.2865 0.7837 0.3139 0.7703 0.3233 0.7934 0.3233 0.7934 0.3139 0.7703 0.3505 0.7849 0.3139 0.7703 0.3415 0.7543 0.3505 0.7849 0.3415 0.7543 0.3139 0.7703 0.3227 0.7298 0.3139 0.7703 0.3067 0.7564 0.3227 0.7298 0.3227 0.7298 0.3067 0.7564 0.302 0.7407 0.302 0.7407 0.3067 0.7564 0.2796 0.755 0.3227 0.7298 0.302 0.7407 0.3186 0.7202 0.3186 0.7202 0.302 0.7407 0.2984 0.7287 0.3186 0.7202 0.2984 0.7287 0.3137 0.7135 0.3137 0.7135 0.2984 0.7287 0.2843 0.687 0.2984 0.7287 0.2694 0.701 0.2843 0.687 0.2694 0.701 0.2984 0.7287 0.2775 0.7417 0.2775 0.7417 0.2984 0.7287 0.302 0.7407 0.2775 0.7417 0.302 0.7407 0.2796 0.755 0.2775 0.7417 0.2796 0.755 0.2591 0.7464 0.2796 0.755 0.2582 0.7608 0.2591 0.7464 0.2591 0.7464 0.2582 0.7608 0.2381 0.7474 0.2582 0.7608 0.2373999 0.7608 0.2381 0.7474 0.2381 0.7474 0.2373999 0.7608 0.2217 0.7439 0.2381 0.7474 0.2217 0.7439 0.2414 0.7141 0.2381 0.7474 0.2414 0.7141 0.2591 0.7464 0.2591 0.7464 0.2414 0.7141 0.2775 0.7417 0.2414 0.7141 0.2694 0.701 0.2775 0.7417 0.1016 0.7516 0.1164 0.769 0.0963 0.7723 0.1164 0.769 0.1016 0.7516 0.1322 0.7604 0.0963 0.7723 0.08759999 0.7555 0.1016 0.7516 0.08759999 0.7555 0.0963 0.7723 0.07179999 0.7541 0.08759999 0.7555 0.07179999 0.7541 0.07359999 0.7487 0.07179999 0.7541 0.05909997 0.7336 0.07359999 0.7487 0.05909997 0.7336 0.07179999 0.7541 0.05169999 0.7343 0.05909997 0.7336 0.05169999 0.7343 0.05139994 0.7308 0.05139994 0.7308 0.05169999 0.7343 0.04199999 0.7351 0.05139994 0.7308 0.04199999 0.7351 0.05379998 0.7201 0.05139994 0.7308 0.05379998 0.7201 0.05789995 0.7277 0.05139994 0.7308 0.05789995 0.7277 0.05909997 0.7336 0.05379998 0.7201 0.06019997 0.7183 0.05789995 0.7277 0.05909997 0.7336 0.05789995 0.7277 0.05939996 0.7269 0.06019997 0.7183 0.05939996 0.7269 0.05789995 0.7277 0.05939996 0.7269 0.06019997 0.7183 0.0618 0.7185 0.05939996 0.7269 0.0618 0.7185 0.07229995 0.7208 0.07229995 0.7208 0.0618 0.7185 0.06439995 0.713 0.07229995 0.7208 0.06439995 0.713 0.0683 0.7081 0.07229995 0.7208 0.0683 0.7081 0.07609999 0.7154 0.07609999 0.7154 0.0683 0.7081 0.07289999 0.7041 0.07609999 0.7154 0.07289999 0.7041 0.07829999 0.7144 0.07289999 0.7041 0.08139997 0.7019 0.07829999 0.7144 0.07609999 0.7154 0.07829999 0.7144 0.07959997 0.723 0.07609999 0.7154 0.07959997 0.723 0.07229995 0.7208 0.07829999 0.7144 0.08129996 0.7156 0.07959997 0.723 0.08129996 0.7156 0.07829999 0.7144 0.08139997 0.7019 0.08129996 0.7156 0.08139997 0.7019 0.08899998 0.7057 0.08899998 0.7057 0.08139997 0.7019 0.09009999 0.7044 0.08899998 0.7057 0.09009999 0.7044 0.09609997 0.7132 0.08899998 0.7057 0.09609997 0.7132 0.09469997 0.7137 0.08899998 0.7057 0.09469997 0.7137 0.083 0.7191 0.08899998 0.7057 0.083 0.7191 0.08129996 0.7156 0.08129996 0.7156 0.083 0.7191 0.07959997 0.723 0.083 0.7191 0.08579999 0.7223 0.07959997 0.723 0.08579999 0.7223 0.083 0.7191 0.09469997 0.7137 0.08579999 0.7223 0.09469997 0.7137 0.0974 0.7232 0.0974 0.7232 0.09469997 0.7137 0.0995 0.7231 0.09469997 0.7137 0.09609997 0.7132 0.0995 0.7231 0.0995 0.7231 0.09609997 0.7132 0.1007 0.7109 0.0995 0.7231 0.1007 0.7109 0.1032 0.7217 0.1032 0.7217 0.1007 0.7109 0.112 0.712 0.0995 0.7231 0.1032 0.7217 0.09779995 0.7327 0.0995 0.7231 0.09779995 0.7327 0.0974 0.7232 0.09779995 0.7327 0.09599995 0.7321 0.0974 0.7232 0.09599995 0.7321 0.0855 0.7259 0.0974 0.7232 0.0855 0.7259 0.08579999 0.7223 0.0974 0.7232 0.08579999 0.7223 0.0855 0.7259 0.07959997 0.723 0.0855 0.7259 0.08519995 0.7301 0.07959997 0.723 0.08519995 0.7301 0.0855 0.7259 0.09599995 0.7321 0.07959997 0.723 0.08519995 0.7301 0.08009999 0.7316 0.07959997 0.723 0.08009999 0.7316 0.0744 0.7283 0.07959997 0.723 0.0744 0.7283 0.07229995 0.7208 0.0744 0.7283 0.08009999 0.7316 0.08219999 0.7416 0.08219999 0.7416 0.08009999 0.7316 0.08519995 0.7301 0.08219999 0.7416 0.08519995 0.7301 0.09209996 0.7383 0.09209996 0.7383 0.08519995 0.7301 0.09599995 0.7321 0.08219999 0.7416 0.09209996 0.7383 0.0938 0.7401 0.09599995 0.7321 0.0938 0.7401 0.09209996 0.7383 0.0938 0.7401 0.09599995 0.7321 0.09779995 0.7327 0.0938 0.7401 0.09779995 0.7327 0.1058 0.7336 0.1058 0.7336 0.09779995 0.7327 0.1032 0.7217 0.1058 0.7336 0.1032 0.7217 0.1131 0.7232 0.1131 0.7232 0.1032 0.7217 0.112 0.712 0.1131 0.7232 0.112 0.712 0.1298 0.7188 0.1298 0.7188 0.112 0.712 0.128 0.7017 0.1298 0.7188 0.128 0.7017 0.1449 0.7083 0.1298 0.7188 0.1449 0.7083 0.147 0.7302 0.1298 0.7188 0.147 0.7302 0.1261 0.7323 0.1298 0.7188 0.1261 0.7323 0.1131 0.7232 0.1131 0.7232 0.1261 0.7323 0.1058 0.7336 0.1261 0.7323 0.1167 0.7436 0.1058 0.7336 0.1058 0.7336 0.1167 0.7436 0.1016 0.7516 0.1058 0.7336 0.1016 0.7516 0.0938 0.7401 0.0938 0.7401 0.1016 0.7516 0.08759999 0.7555 0.0938 0.7401 0.08759999 0.7555 0.08319997 0.7439 0.0938 0.7401 0.08319997 0.7439 0.08219999 0.7416 0.08319997 0.7439 0.08759999 0.7555 0.07359999 0.7487 0.08219999 0.7416 0.08319997 0.7439 0.07029998 0.7387 0.08219999 0.7416 0.07029998 0.7387 0.0744 0.7283 0.0744 0.7283 0.07029998 0.7387 0.07229995 0.7208 0.07029998 0.7387 0.06079995 0.7327 0.07229995 0.7208 0.07229995 0.7208 0.06079995 0.7327 0.05939996 0.7269 0.05939996 0.7269 0.06079995 0.7327 0.05909997 0.7336 0.05909997 0.7336 0.06079995 0.7327 0.07039999 0.7414 0.06079995 0.7327 0.07029998 0.7387 0.07039999 0.7414 0.07039999 0.7414 0.07029998 0.7387 0.08319997 0.7439 0.07039999 0.7414 0.08319997 0.7439 0.07359999 0.7487 0.07039999 0.7414 0.07359999 0.7487 0.05909997 0.7336 0.147 0.7302 0.1436 0.7456 0.1261 0.7323 0.1436 0.7456 0.1167 0.7436 0.1261 0.7323 0.1167 0.7436 0.1436 0.7456 0.1322 0.7604 0.1167 0.7436 0.1322 0.7604 0.1016 0.7516 1.023 0.8876 1.0327 0.9212 1.0546 0.9126 1.0546 0.9126 1.0327 0.9212 1.0551 0.9536 1.0546 0.9126 1.0551 0.9536 1.0741 0.939 1.0741 0.939 1.0551 0.9536 1.0892 0.9791 1.0741 0.939 1.0892 0.9791 1.1004 0.9584 1.1004 0.9584 1.0892 0.9791 1.1347 0.9675 1.0892 0.9791 1.129 0.9929 1.1347 0.9675 1.1347 0.9675 1.129 0.9929 1.1688 0.994 1.1347 0.9675 1.1688 0.994 1.1728 0.9695 1.1728 0.9695 1.1688 0.994 1.2152 0.9938 1.1728 0.9695 1.2152 0.9938 1.2108 0.9664 1.2108 0.9664 1.2152 0.9938 1.2633 0.9771 1.2108 0.9664 1.2633 0.9771 1.2484 0.9506 1.2484 0.9506 1.2633 0.9771 1.3013 0.9477 1.2484 0.9506 1.3013 0.9477 1.2821 0.9256 1.2821 0.9256 1.3013 0.9477 1.3213 0.9193 1.2821 0.9256 1.3213 0.9193 1.2991 0.9028 1.2991 0.9028 1.3213 0.9193 1.3349 0.8845 1.2821 0.9256 1.2991 0.9028 1.278 0.8916 1.2821 0.9256 1.278 0.8916 1.2612 0.9151 1.2821 0.9256 1.2612 0.9151 1.2484 0.9506 1.2612 0.9151 1.2381 0.9321 1.2484 0.9506 1.2484 0.9506 1.2381 0.9321 1.2108 0.9664 1.2381 0.9321 1.2076 0.9397 1.2108 0.9664 1.2108 0.9664 1.2076 0.9397 1.175 0.9429 1.2108 0.9664 1.175 0.9429 1.1728 0.9695 1.1728 0.9695 1.175 0.9429 1.1407 0.9437 1.1728 0.9695 1.1407 0.9437 1.1347 0.9675 1.1347 0.9675 1.1407 0.9437 1.1115 0.9382 1.1347 0.9675 1.1115 0.9382 1.1004 0.9584 1.1004 0.9584 1.1115 0.9382 1.0741 0.939 1.1115 0.9382 1.0896 0.9262 1.0741 0.939 1.0741 0.939 1.0896 0.9262 1.0759 0.9076 1.0741 0.939 1.0759 0.9076 1.0546 0.9126 1.0759 0.9076 1.0896 0.9262 1.0969 0.9026 1.0896 0.9262 1.1044 0.9163 1.0969 0.9026 1.1044 0.9163 1.0896 0.9262 1.1115 0.9382 1.1044 0.9163 1.1115 0.9382 1.1232 0.923 1.1232 0.923 1.1115 0.9382 1.1407 0.9437 1.1232 0.923 1.1407 0.9437 1.1442 0.9237 1.1442 0.9237 1.1407 0.9437 1.175 0.9429 1.1442 0.9237 1.175 0.9429 1.1757 0.9223 1.1757 0.9223 1.175 0.9429 1.2076 0.9397 1.1442 0.9237 1.1757 0.9223 1.1455 0.9013 1.1442 0.9237 1.1455 0.9013 1.1232 0.923 1.1455 0.9013 1.1204 0.902 1.1232 0.923 1.1232 0.923 1.1204 0.902 1.1044 0.9163 1.1204 0.902 1.0969 0.9026 1.1044 0.9163 1.0969 0.9026 1.1204 0.902 1.1177 0.8849 1.0969 0.9026 1.1177 0.8849 1.0928 0.889 1.0969 0.9026 1.0928 0.889 1.0759 0.9076 1.0928 0.889 1.0694 0.8885 1.0759 0.9076 1.0759 0.9076 1.0694 0.8885 1.0546 0.9126 1.0694 0.8885 1.0471 0.8862 1.0546 0.9126 1.0546 0.9126 1.0471 0.8862 1.023 0.8876 1.023 0.8876 1.0471 0.8862 1.0466 0.875 1.023 0.8876 1.0466 0.875 1.021 0.8766 1.0466 0.875 1.0471 0.8862 1.0681 0.8773 1.0471 0.8862 1.0694 0.8885 1.0681 0.8773 1.0681 0.8773 1.0694 0.8885 1.091 0.8771 1.0694 0.8885 1.0928 0.889 1.091 0.8771 1.091 0.8771 1.0928 0.889 1.1162 0.8732 1.0928 0.889 1.1177 0.8849 1.1162 0.8732 1.1162 0.8732 1.1177 0.8849 1.1419 0.8689 1.1177 0.8849 1.1446 0.8802 1.1419 0.8689 1.1446 0.8802 1.1177 0.8849 1.1204 0.902 1.1446 0.8802 1.1204 0.902 1.1455 0.9013 1.1446 0.8802 1.1455 0.9013 1.1785 0.9019 1.1785 0.9019 1.1455 0.9013 1.1757 0.9223 1.1785 0.9019 1.1757 0.9223 1.2068 0.9178 1.2068 0.9178 1.1757 0.9223 1.2076 0.9397 1.1785 0.9019 1.2068 0.9178 1.2085 0.9007 1.2068 0.9178 1.2076 0.9397 1.2385 0.914 1.2085 0.9007 1.2068 0.9178 1.2385 0.914 1.2076 0.9397 1.2381 0.9321 1.2385 0.914 1.2385 0.914 1.2381 0.9321 1.2612 0.9151 1.2385 0.914 1.2612 0.9151 1.2408 0.9018 1.2385 0.914 1.2408 0.9018 1.2085 0.9007 1.2408 0.9018 1.2612 0.9151 1.2634 0.8861 1.2612 0.9151 1.278 0.8916 1.2634 0.8861 1.2408 0.9018 1.2634 0.8861 1.2398 0.8804 1.2408 0.9018 1.2398 0.8804 1.2085 0.9007 1.2398 0.8804 1.2103 0.8809 1.2085 0.9007 1.2085 0.9007 1.2103 0.8809 1.179 0.8788 1.2085 0.9007 1.179 0.8788 1.1785 0.9019 1.1785 0.9019 1.179 0.8788 1.1446 0.8802 1.1446 0.8802 1.179 0.8788 1.1419 0.8689 1.179 0.8788 1.1793 0.868 1.1419 0.8689 1.1793 0.868 1.179 0.8788 1.2103 0.8809 1.1793 0.868 1.2103 0.8809 1.2104 0.8657 1.2104 0.8657 1.2103 0.8809 1.2398 0.8804 1.2104 0.8657 1.2398 0.8804 1.2412 0.8629 1.2412 0.8629 1.2398 0.8804 1.2634 0.8861 1.2412 0.8629 1.2634 0.8861 1.2657 0.8638 1.2657 0.8638 1.2634 0.8861 1.288 0.867 1.2634 0.8861 1.278 0.8916 1.288 0.867 1.288 0.867 1.278 0.8916 1.3111 0.8754 1.278 0.8916 1.2991 0.9028 1.3111 0.8754 1.3111 0.8754 1.2991 0.9028 1.3349 0.8845 1.3111 0.8754 1.3349 0.8845 1.3209 0.8457 1.3349 0.8845 1.3455 0.8479 1.3209 0.8457 1.3111 0.8754 1.3209 0.8457 1.2935 0.8438 1.3111 0.8754 1.2935 0.8438 1.288 0.867 1.288 0.867 1.2935 0.8438 1.2685 0.8416 1.288 0.867 1.2685 0.8416 1.2657 0.8638 1.2657 0.8638 1.2685 0.8416 1.2412 0.8629 1.2685 0.8416 1.2413 0.8421 1.2412 0.8629 1.2412 0.8629 1.2413 0.8421 1.2092 0.8553 1.2412 0.8629 1.2092 0.8553 1.2104 0.8657 1.2104 0.8657 1.2092 0.8553 1.1972 0.8643 1.2104 0.8657 1.1972 0.8643 1.1793 0.868 1.1793 0.868 1.1633 0.864 1.1419 0.8689 1.1419 0.8689 1.1633 0.864 1.1407 0.8618 1.1407 0.8618 1.1633 0.864 1.1531 0.8539 1.1419 0.8689 1.1407 0.8618 1.135 0.8645 1.1419 0.8689 1.135 0.8645 1.1162 0.8732 1.135 0.8645 1.1407 0.8618 1.1317 0.8586 1.1407 0.8618 1.1356 0.8513 1.1317 0.8586 1.1356 0.8513 1.1407 0.8618 1.1531 0.8539 1.1356 0.8513 1.1531 0.8539 1.1481 0.839 1.1356 0.8513 1.1481 0.839 1.1406 0.8368 1.1406 0.8368 1.1481 0.839 1.1524 0.8234 1.1406 0.8368 1.1524 0.8234 1.1435 0.8155 1.1435 0.8155 1.1524 0.8234 1.16 0.8137 1.1435 0.8155 1.16 0.8137 1.1551 0.8014 1.16 0.8137 1.1704 0.8052 1.1551 0.8014 1.1551 0.8014 1.1704 0.8052 1.1653 0.7956 1.1704 0.8052 1.1795 0.8004 1.1653 0.7956 1.1653 0.7956 1.1795 0.8004 1.1755 0.7848 1.1795 0.8004 1.1872 0.7922 1.1755 0.7848 1.1755 0.7848 1.1872 0.7922 1.1815 0.7717 1.1872 0.7922 1.1922 0.7821 1.1815 0.7717 1.1815 0.7717 1.1922 0.7821 1.1943 0.7717 1.1815 0.7717 1.1943 0.7717 1.1941 0.7613 1.1815 0.7717 1.1941 0.7613 1.1841 0.7561 1.1841 0.7561 1.1941 0.7613 1.1954 0.7491 1.1815 0.7717 1.1841 0.7561 1.1606 0.7586 1.1815 0.7717 1.1606 0.7586 1.1755 0.7848 1.1606 0.7586 1.152 0.7727 1.1755 0.7848 1.1755 0.7848 1.152 0.7727 1.1653 0.7956 1.152 0.7727 1.1398 0.7858 1.1653 0.7956 1.1653 0.7956 1.1398 0.7858 1.1551 0.8014 1.1398 0.7858 1.1336 0.792 1.1551 0.8014 1.1551 0.8014 1.1336 0.792 1.1435 0.8155 1.1336 0.792 1.1257 0.8024 1.1435 0.8155 1.1435 0.8155 1.1257 0.8024 1.1206 0.8103 1.1435 0.8155 1.1206 0.8103 1.1406 0.8368 1.1406 0.8368 1.1206 0.8103 1.1248 0.8356 1.1406 0.8368 1.1248 0.8356 1.1356 0.8513 1.1356 0.8513 1.1248 0.8356 1.1213 0.8401 1.1356 0.8513 1.1213 0.8401 1.1317 0.8586 1.1213 0.8401 1.1248 0.8356 1.1102 0.8268 1.1248 0.8356 1.1121 0.8183 1.1102 0.8268 1.1121 0.8183 1.1248 0.8356 1.1206 0.8103 1.1121 0.8183 1.1206 0.8103 1.106 0.8001 1.106 0.8001 1.1206 0.8103 1.1257 0.8024 1.106 0.8001 1.1257 0.8024 1.1109 0.7912 1.1109 0.7912 1.1257 0.8024 1.1103 0.7793 1.1257 0.8024 1.1336 0.792 1.1103 0.7793 1.1103 0.7793 1.1336 0.792 1.1178 0.7717 1.1336 0.792 1.1398 0.7858 1.1178 0.7717 1.1178 0.7717 1.1398 0.7858 1.1339 0.7619 1.1398 0.7858 1.152 0.7727 1.1339 0.7619 1.1339 0.7619 1.152 0.7727 1.1458 0.7475 1.152 0.7727 1.1606 0.7586 1.1458 0.7475 1.1458 0.7475 1.1606 0.7586 1.1652 0.7466 1.1652 0.7466 1.1606 0.7586 1.1841 0.7561 1.1652 0.7466 1.1841 0.7561 1.1865 0.7463 1.1865 0.7463 1.1841 0.7561 1.1954 0.7491 1.1652 0.7466 1.1865 0.7463 1.1687 0.7381 1.1954 0.7491 1.1884 0.7318 1.1865 0.7463 1.1687 0.7381 1.1865 0.7463 1.1884 0.7318 1.1687 0.7381 1.1884 0.7318 1.1715 0.7236 1.1687 0.7381 1.1715 0.7236 1.147 0.7302 1.1687 0.7381 1.147 0.7302 1.1652 0.7466 1.1652 0.7466 1.147 0.7302 1.1458 0.7475 1.1458 0.7475 1.147 0.7302 1.1436 0.7456 1.1458 0.7475 1.1436 0.7456 1.1322 0.7604 1.1458 0.7475 1.1322 0.7604 1.1339 0.7619 1.1339 0.7619 1.1322 0.7604 1.1178 0.7717 1.1322 0.7604 1.1164 0.769 1.1178 0.7717 1.1178 0.7717 1.1164 0.769 1.1103 0.7793 1.1164 0.769 1.0963 0.7723 1.1103 0.7793 1.1103 0.7793 1.0963 0.7723 1.1109 0.7912 1.0963 0.7723 1.0907 0.7791 1.1109 0.7912 1.1109 0.7912 1.0907 0.7791 1.106 0.8001 1.0907 0.7791 1.0837 0.7855 1.106 0.8001 1.106 0.8001 1.0837 0.7855 1.0943 0.8022 1.106 0.8001 1.0943 0.8022 1.098 0.8144 1.106 0.8001 1.098 0.8144 1.1121 0.8183 1.1121 0.8183 1.098 0.8144 1.0992 0.8226 1.1121 0.8183 1.0992 0.8226 1.1102 0.8268 1.0992 0.8226 1.1043 0.8399 1.1102 0.8268 1.1102 0.8268 1.1043 0.8399 1.1213 0.8401 1.1043 0.8399 1.1135 0.846 1.1213 0.8401 1.1135 0.846 1.1317 0.8586 1.1213 0.8401 1.1135 0.846 1.1043 0.8399 1.1042 0.8507 1.1042 0.8507 1.1043 0.8399 1.0881 0.8391 1.0881 0.8391 1.1043 0.8399 1.0992 0.8226 1.0881 0.8391 1.0992 0.8226 1.0794 0.8254 1.0794 0.8254 1.0992 0.8226 1.0784 0.818 1.0992 0.8226 1.098 0.8144 1.0784 0.818 1.0784 0.818 1.098 0.8144 1.0797 0.8082 1.098 0.8144 1.0943 0.8022 1.0797 0.8082 1.0797 0.8082 1.0943 0.8022 1.0736 0.7922 1.0943 0.8022 1.0837 0.7855 1.0736 0.7922 1.0736 0.7922 1.0837 0.7855 1.0716 0.7902 1.0837 0.7855 1.0819 0.7841 1.0716 0.7902 1.0819 0.7841 1.0837 0.7855 1.0907 0.7791 1.0819 0.7841 1.0907 0.7791 1.0895 0.7787 1.0895 0.7787 1.0907 0.7791 1.0963 0.7723 1.0819 0.7841 1.0895 0.7787 1.0806 0.783 1.0819 0.7841 1.0806 0.783 1.0712 0.7878 1.0819 0.7841 1.0712 0.7878 1.0716 0.7902 1.0716 0.7902 1.0712 0.7878 1.0526 0.7917 1.0716 0.7902 1.0526 0.7917 1.055 0.7959 1.0716 0.7902 1.055 0.7959 1.0736 0.7922 1.055 0.7959 1.0577 0.7991 1.0736 0.7922 1.0736 0.7922 1.0577 0.7991 1.0797 0.8082 1.0577 0.7991 1.0626 0.8146 1.0797 0.8082 1.0797 0.8082 1.0626 0.8146 1.0784 0.818 1.0626 0.8146 1.0583 0.8267 1.0784 0.818 1.0784 0.818 1.0583 0.8267 1.0794 0.8254 1.0583 0.8267 1.0601 0.8331 1.0794 0.8254 1.0794 0.8254 1.0601 0.8331 1.0695 0.8437 1.0794 0.8254 1.0695 0.8437 1.0881 0.8391 1.0881 0.8391 1.0695 0.8437 1.0848 0.8518 1.0881 0.8391 1.0848 0.8518 1.1042 0.8507 1.1042 0.8507 1.0848 0.8518 1.0938 0.8612 1.1042 0.8507 1.0938 0.8612 1.1156 0.8596 1.1042 0.8507 1.1156 0.8596 1.1135 0.846 1.1156 0.8596 1.1317 0.8586 1.1135 0.846 1.1317 0.8586 1.1156 0.8596 1.1192 0.8641 1.1192 0.8641 1.1156 0.8596 1.0938 0.8612 1.1317 0.8586 1.1192 0.8641 1.135 0.8645 1.135 0.8645 1.1192 0.8641 1.1162 0.8732 1.1162 0.8732 1.1192 0.8641 1.0928 0.8654 1.0928 0.8654 1.1192 0.8641 1.0938 0.8612 1.1162 0.8732 1.0928 0.8654 1.091 0.8771 1.0928 0.8654 1.0938 0.8612 1.0663 0.8605 1.0663 0.8605 1.0938 0.8612 1.0848 0.8518 1.0663 0.8605 1.0848 0.8518 1.0625 0.8559 1.0848 0.8518 1.0695 0.8437 1.0625 0.8559 1.0625 0.8559 1.0695 0.8437 1.0556 0.8491 1.0556 0.8491 1.0695 0.8437 1.0601 0.8331 1.0625 0.8559 1.0556 0.8491 1.0415 0.8596 1.0625 0.8559 1.0415 0.8596 1.0663 0.8605 1.0663 0.8605 1.0415 0.8596 1.0448 0.8654 1.0663 0.8605 1.0448 0.8654 1.0695 0.8651 1.0663 0.8605 1.0695 0.8651 1.0928 0.8654 1.0928 0.8654 1.0695 0.8651 1.091 0.8771 1.0695 0.8651 1.0681 0.8773 1.091 0.8771 1.0681 0.8773 1.0695 0.8651 1.0466 0.875 1.0695 0.8651 1.0448 0.8654 1.0466 0.875 1.0466 0.875 1.0448 0.8654 1.021 0.8766 1.0448 0.8654 1.0221 0.8669 1.021 0.8766 1.0221 0.8669 1.0448 0.8654 1.0225 0.8623 1.0448 0.8654 1.0415 0.8596 1.0225 0.8623 1.0225 0.8623 1.0415 0.8596 1.0225 0.8582 1.0225 0.8582 1.0415 0.8596 1.0399 0.8551 1.0415 0.8596 1.0556 0.8491 1.0399 0.8551 1.0225 0.8582 1.0399 0.8551 1.0374 0.8487 1.0556 0.8491 1.0374 0.8487 1.0399 0.8551 1.0374 0.8487 1.0556 0.8491 1.0477 0.8397 1.0477 0.8397 1.0556 0.8491 1.0601 0.8331 1.0374 0.8487 1.0477 0.8397 1.0319 0.8454 1.0477 0.8397 1.0601 0.8331 1.0461 0.8344 1.0319 0.8454 1.0477 0.8397 1.0461 0.8344 1.0601 0.8331 1.0583 0.8267 1.0461 0.8344 1.0461 0.8344 1.0583 0.8267 1.0438 0.8218 1.0583 0.8267 1.0626 0.8146 1.0438 0.8218 1.0461 0.8344 1.0438 0.8218 1.0302 0.8282 1.0461 0.8344 1.0302 0.8282 1.0319 0.8454 1.0302 0.8282 1.0438 0.8218 1.0271 0.8132 1.0438 0.8218 1.042 0.8074 1.0271 0.8132 1.042 0.8074 1.0438 0.8218 1.0626 0.8146 1.042 0.8074 1.0626 0.8146 1.0577 0.7991 1.042 0.8074 1.0577 0.7991 1.04 0.8032 1.0577 0.7991 1.055 0.7959 1.04 0.8032 1.042 0.8074 1.04 0.8032 1.0266 0.8086 1.042 0.8074 1.0266 0.8086 1.0271 0.8132 1.0271 0.8132 1.0266 0.8086 1.0167 0.8105 1.0271 0.8132 1.0167 0.8105 1.0157 0.8153 1.0271 0.8132 1.0157 0.8153 1.0302 0.8282 1.0157 0.8153 1.0169 0.8321 1.0302 0.8282 1.0302 0.8282 1.0169 0.8321 1.0319 0.8454 1.0169 0.8321 1.0186 0.8497 1.0319 0.8454 1.0319 0.8454 1.0186 0.8497 1.0225 0.8582 1.0319 0.8454 1.0225 0.8582 1.0374 0.8487 1.0146 0.7994 1.0167 0.8105 1.0266 0.8086 1.0146 0.7994 1.0266 0.8086 1.0241 0.7976 1.0241 0.7976 1.0266 0.8086 1.04 0.8032 1.0146 0.7994 1.0241 0.7976 1.0131 0.7958 1.04 0.8032 1.0358 0.7961 1.0241 0.7976 1.0358 0.7961 1.04 0.8032 1.055 0.7959 1.0358 0.7961 1.055 0.7959 1.0526 0.7917 1.0358 0.7961 1.0526 0.7917 1.0353 0.7924 1.0358 0.7961 1.0353 0.7924 1.0233 0.794 1.0358 0.7961 1.0233 0.794 1.0241 0.7976 1.0241 0.7976 1.0233 0.794 1.0131 0.7958 1.0131 0.7958 1.0233 0.794 1.0186 0.7573 1.0131 0.7958 1.0186 0.7573 1.0074 0.7571 1.0074 0.7571 1.0186 0.7573 1.013 0.7465 1.0186 0.7573 1.0176 0.7478 1.013 0.7465 1.0176 0.7478 1.0186 0.7573 1.0282 0.754 1.0282 0.754 1.0186 0.7573 1.0233 0.794 1.0282 0.754 1.0233 0.794 1.0353 0.7924 1.0282 0.754 1.0353 0.7924 1.0462 0.7736 1.0353 0.7924 1.0522 0.7893 1.0462 0.7736 1.0522 0.7893 1.0353 0.7924 1.0526 0.7917 1.0522 0.7893 1.0526 0.7917 1.0712 0.7878 1.0522 0.7893 1.0712 0.7878 1.0707 0.7857 1.0707 0.7857 1.0712 0.7878 1.0806 0.783 1.0522 0.7893 1.0707 0.7857 1.0603 0.768 1.0806 0.783 1.0799 0.7812 1.0707 0.7857 1.0603 0.768 1.0707 0.7857 1.0799 0.7812 1.0806 0.783 1.0955 0.773 1.0799 0.7812 1.0955 0.773 1.0806 0.783 1.0895 0.7787 1.0799 0.7812 1.0955 0.773 1.0963 0.7723 1.0895 0.7787 1.0963 0.7723 1.0955 0.773 1.0799 0.7812 1.0963 0.7723 1.0718 0.7541 1.0799 0.7812 1.0718 0.7541 1.0679 0.7636 1.0799 0.7812 1.0679 0.7636 1.0603 0.768 1.0679 0.7636 1.0718 0.7541 1.0517 0.7343 1.0679 0.7636 1.0517 0.7343 1.044 0.7407 1.0679 0.7636 1.044 0.7407 1.0603 0.768 1.0603 0.768 1.044 0.7407 1.0353 0.7472 1.0603 0.768 1.0353 0.7472 1.0462 0.7736 1.0603 0.768 1.0462 0.7736 1.0522 0.7893 1.0462 0.7736 1.0353 0.7472 1.0282 0.754 1.0282 0.754 1.0353 0.7472 1.025 0.7471 1.0282 0.754 1.025 0.7471 1.0176 0.7478 1.025 0.7471 1.0257 0.7378 1.0176 0.7478 1.0176 0.7478 1.0257 0.7378 1.013 0.7465 1.0257 0.7378 1.0196 0.7338 1.013 0.7465 1.0196 0.7338 1.0257 0.7378 1.0327 0.7245 1.0196 0.7338 1.0327 0.7245 1.0258 0.7206 1.0258 0.7206 1.0327 0.7245 1.0394 0.7124 1.0258 0.7206 1.0394 0.7124 1.0329 0.7082 1.0329 0.7082 1.0394 0.7124 1.0448 0.694 1.0394 0.7124 1.0526 0.6992 1.0448 0.694 1.0448 0.694 1.0526 0.6992 1.0574 0.6838 1.0526 0.6992 1.0394 0.7124 1.0442 0.7149 1.0442 0.7149 1.0394 0.7124 1.0327 0.7245 1.0442 0.7149 1.0327 0.7245 1.0402 0.7276 1.0402 0.7276 1.0327 0.7245 1.0257 0.7378 1.0402 0.7276 1.0257 0.7378 1.032 0.7395 1.032 0.7395 1.0257 0.7378 1.025 0.7471 1.032 0.7395 1.025 0.7471 1.0311 0.7445 1.0311 0.7445 1.025 0.7471 1.0353 0.7472 1.0311 0.7445 1.0353 0.7472 1.044 0.7407 1.0311 0.7445 1.044 0.7407 1.042 0.7351 1.042 0.7351 1.044 0.7407 1.0517 0.7343 1.0311 0.7445 1.042 0.7351 1.032 0.7395 1.042 0.7351 1.0402 0.7276 1.032 0.7395 1.0402 0.7276 1.042 0.7351 1.0538 0.7201 1.0402 0.7276 1.0538 0.7201 1.0442 0.7149 1.0442 0.7149 1.0538 0.7201 1.0541 0.7055 1.0442 0.7149 1.0541 0.7055 1.0526 0.6992 1.0526 0.6992 1.0541 0.7055 1.0669 0.6897 1.0526 0.6992 1.0669 0.6897 1.0574 0.6838 1.0574 0.6838 1.0669 0.6897 1.073 0.6721 1.0669 0.6897 1.0778 0.6824 1.073 0.6721 1.073 0.6721 1.0778 0.6824 1.086 0.6624 1.0669 0.6897 1.0674 0.6967 1.0778 0.6824 1.0674 0.6967 1.0669 0.6897 1.0541 0.7055 1.0674 0.6967 1.0541 0.7055 1.0607 0.712 1.0607 0.712 1.0541 0.7055 1.0538 0.7201 1.0674 0.6967 1.0607 0.712 1.0666 0.7029 1.0674 0.6967 1.0666 0.7029 1.0746 0.6974 1.0674 0.6967 1.0746 0.6974 1.0778 0.6824 1.0778 0.6824 1.0746 0.6974 1.0872 0.6853 1.0778 0.6824 1.0872 0.6853 1.0945 0.6723 1.0778 0.6824 1.0945 0.6723 1.086 0.6624 1.086 0.6624 1.0945 0.6723 1.102 0.6469 1.0945 0.6723 1.1201 0.659 1.102 0.6469 1.1201 0.659 1.0945 0.6723 1.1169 0.6862 1.1201 0.659 1.1169 0.6862 1.1477 0.6795 1.0945 0.6723 1.1005 0.6819 1.1169 0.6862 1.1005 0.6819 1.0945 0.6723 1.0872 0.6853 1.1005 0.6819 1.0872 0.6853 1.0934 0.6881 1.0934 0.6881 1.0872 0.6853 1.0861 0.6955 1.0861 0.6955 1.0872 0.6853 1.0746 0.6974 1.0861 0.6955 1.0746 0.6974 1.0817 0.6998 1.0746 0.6974 1.0728 0.7017 1.0817 0.6998 1.0728 0.7017 1.0746 0.6974 1.0666 0.7029 1.0728 0.7017 1.0666 0.7029 1.0676 0.7062 1.0676 0.7062 1.0666 0.7029 1.0607 0.712 1.0676 0.7062 1.0607 0.712 1.0635 0.712 1.0635 0.712 1.0607 0.712 1.0602 0.7183 1.0607 0.712 1.0538 0.7201 1.0602 0.7183 1.0635 0.712 1.0602 0.7183 1.0618 0.7185 1.0635 0.712 1.0618 0.7185 1.0644 0.713 1.0635 0.712 1.0644 0.713 1.0676 0.7062 1.0644 0.713 1.0683 0.7081 1.0676 0.7062 1.0676 0.7062 1.0683 0.7081 1.0728 0.7017 1.0683 0.7081 1.0729 0.7041 1.0728 0.7017 1.0728 0.7017 1.0729 0.7041 1.0817 0.6998 1.0729 0.7041 1.0683 0.7081 1.0761 0.7154 1.0761 0.7154 1.0683 0.7081 1.0723 0.7208 1.0683 0.7081 1.0644 0.713 1.0723 0.7208 1.0723 0.7208 1.0644 0.713 1.0618 0.7185 1.0723 0.7208 1.0618 0.7185 1.0594 0.7269 1.0594 0.7269 1.0618 0.7185 1.0602 0.7183 1.0594 0.7269 1.0602 0.7183 1.0579 0.7277 1.0579 0.7277 1.0602 0.7183 1.0538 0.7201 1.0579 0.7277 1.0538 0.7201 1.0514 0.7308 1.0538 0.7201 1.042 0.7351 1.0514 0.7308 1.0514 0.7308 1.042 0.7351 1.0517 0.7343 1.0514 0.7308 1.0517 0.7343 1.0591 0.7336 1.0514 0.7308 1.0591 0.7336 1.0579 0.7277 1.0579 0.7277 1.0591 0.7336 1.0594 0.7269 1.0591 0.7336 1.0608 0.7327 1.0594 0.7269 1.0594 0.7269 1.0608 0.7327 1.0723 0.7208 1.0608 0.7327 1.0591 0.7336 1.0704 0.7414 1.0608 0.7327 1.0704 0.7414 1.0703 0.7387 1.0608 0.7327 1.0703 0.7387 1.0723 0.7208 1.0703 0.7387 1.0744 0.7283 1.0723 0.7208 1.0744 0.7283 1.0796 0.723 1.0723 0.7208 1.0723 0.7208 1.0796 0.723 1.0761 0.7154 1.0761 0.7154 1.0796 0.723 1.0783 0.7144 1.0761 0.7154 1.0783 0.7144 1.0729 0.7041 1.0783 0.7144 1.0814 0.7019 1.0729 0.7041 1.0729 0.7041 1.0814 0.7019 1.0817 0.6998 1.0814 0.7019 1.0783 0.7144 1.0813 0.7156 1.0783 0.7144 1.0796 0.723 1.0813 0.7156 1.0814 0.7019 1.0813 0.7156 1.089 0.7057 1.0814 0.7019 1.089 0.7057 1.0901 0.7044 1.0814 0.7019 1.0901 0.7044 1.0817 0.6998 1.0817 0.6998 1.0901 0.7044 1.0933 0.7015 1.0817 0.6998 1.0933 0.7015 1.0861 0.6955 1.0861 0.6955 1.0933 0.7015 1.0934 0.6881 1.0933 0.7015 1.1013 0.6956 1.0934 0.6881 1.0934 0.6881 1.1013 0.6956 1.1005 0.6819 1.1013 0.6956 1.1169 0.6862 1.1005 0.6819 1.1169 0.6862 1.1013 0.6956 1.1089 0.7039 1.1089 0.7039 1.1013 0.6956 1.1007 0.7109 1.1013 0.6956 1.0933 0.7015 1.1007 0.7109 1.1007 0.7109 1.0933 0.7015 1.0961 0.7132 1.0933 0.7015 1.0901 0.7044 1.0961 0.7132 1.0961 0.7132 1.0901 0.7044 1.089 0.7057 1.0961 0.7132 1.089 0.7057 1.0947 0.7137 1.0947 0.7137 1.089 0.7057 1.083 0.7191 1.089 0.7057 1.0813 0.7156 1.083 0.7191 1.0813 0.7156 1.0796 0.723 1.083 0.7191 1.083 0.7191 1.0796 0.723 1.0858 0.7223 1.083 0.7191 1.0858 0.7223 1.0947 0.7137 1.0858 0.7223 1.0974 0.7232 1.0947 0.7137 1.0947 0.7137 1.0974 0.7232 1.0995 0.7231 1.0947 0.7137 1.0995 0.7231 1.0961 0.7132 1.0961 0.7132 1.0995 0.7231 1.1007 0.7109 1.0995 0.7231 1.1032 0.7217 1.1007 0.7109 1.1007 0.7109 1.1032 0.7217 1.112 0.712 1.1007 0.7109 1.112 0.712 1.1089 0.7039 1.1089 0.7039 1.112 0.712 1.128 0.7017 1.1089 0.7039 1.128 0.7017 1.1169 0.6862 1.1169 0.6862 1.128 0.7017 1.1353 0.6927 1.1169 0.6862 1.1353 0.6927 1.1477 0.6795 1.128 0.7017 1.1449 0.7083 1.1353 0.6927 1.1477 0.6795 1.1353 0.6927 1.1449 0.7083 1.1477 0.6795 1.1449 0.7083 1.1722 0.696 1.1449 0.7083 1.1715 0.7236 1.1722 0.696 1.1722 0.696 1.1715 0.7236 1.201 0.7098 1.1715 0.7236 1.1449 0.7083 1.147 0.7302 1.201 0.7098 1.1715 0.7236 1.1884 0.7318 1.201 0.7098 1.1884 0.7318 1.2217 0.7439 1.201 0.7098 1.2217 0.7439 1.2414 0.7141 1.2217 0.7439 1.1884 0.7318 1.1954 0.7491 1.2217 0.7439 1.1954 0.7491 1.2194 0.7572 1.2194 0.7572 1.1954 0.7491 1.1996 0.7638 1.2194 0.7572 1.1996 0.7638 1.2107 0.768 1.2107 0.768 1.1996 0.7638 1.2027 0.7754 1.2107 0.768 1.2027 0.7754 1.2071 0.7771 1.2071 0.7771 1.2027 0.7754 1.202 0.7854 1.2071 0.7771 1.202 0.7854 1.2068 0.7872 1.2068 0.7872 1.202 0.7854 1.2052 0.7974 1.202 0.7854 1.1958 0.7962 1.2052 0.7974 1.2052 0.7974 1.1958 0.7962 1.2003 0.807 1.1958 0.7962 1.1881 0.8057 1.2003 0.807 1.2003 0.807 1.1881 0.8057 1.1967 0.8156 1.1881 0.8057 1.1789 0.8127 1.1967 0.8156 1.1967 0.8156 1.1789 0.8127 1.1915 0.8203 1.1967 0.8156 1.1915 0.8203 1.2021 0.8289 1.1789 0.8127 1.1795 0.8174 1.1915 0.8203 1.1795 0.8174 1.1789 0.8127 1.1693 0.8208 1.1789 0.8127 1.1671 0.8189 1.1693 0.8208 1.1795 0.8174 1.1693 0.8208 1.1802 0.8294 1.1795 0.8174 1.1802 0.8294 1.1915 0.8203 1.1915 0.8203 1.1802 0.8294 1.1943 0.8307 1.1915 0.8203 1.1943 0.8307 1.1987 0.8299 1.1915 0.8203 1.1987 0.8299 1.2021 0.8289 1.1943 0.8307 1.2019 0.8401 1.1987 0.8299 1.2021 0.8289 1.1987 0.8299 1.2019 0.8401 1.2021 0.8289 1.2019 0.8401 1.2049 0.841 1.2049 0.841 1.2019 0.8401 1.2031 0.8519 1.2019 0.8401 1.2003 0.851 1.2031 0.8519 1.2003 0.851 1.2019 0.8401 1.1947 0.8457 1.1947 0.8457 1.2019 0.8401 1.1943 0.8307 1.2003 0.851 1.1947 0.8457 1.1923 0.8576 1.2003 0.851 1.1923 0.8576 1.2031 0.8519 1.1923 0.8576 1.1939 0.86 1.2031 0.8519 1.1939 0.86 1.1923 0.8576 1.1814 0.8625 1.1923 0.8576 1.1808 0.8599 1.1814 0.8625 1.1808 0.8599 1.1923 0.8576 1.181 0.8462 1.181 0.8462 1.1923 0.8576 1.1947 0.8457 1.1808 0.8599 1.181 0.8462 1.1702 0.8577 1.1808 0.8599 1.1702 0.8577 1.1814 0.8625 1.1702 0.8577 1.1678 0.8597 1.1814 0.8625 1.1678 0.8597 1.1702 0.8577 1.1628 0.8498 1.1678 0.8597 1.1628 0.8498 1.1601 0.8511 1.1601 0.8511 1.1628 0.8498 1.1561 0.8391 1.1628 0.8498 1.1597 0.839 1.1561 0.8391 1.1561 0.8391 1.1597 0.839 1.1586 0.829 1.1628 0.8498 1.1669 0.8453 1.1597 0.839 1.1669 0.8453 1.1628 0.8498 1.1702 0.8577 1.1669 0.8453 1.1702 0.8577 1.181 0.8462 1.1669 0.8453 1.181 0.8462 1.1705 0.8436 1.181 0.8462 1.1811 0.8435 1.1705 0.8436 1.1811 0.8435 1.181 0.8462 1.1947 0.8457 1.1811 0.8435 1.1947 0.8457 1.1905 0.8437 1.1905 0.8437 1.1947 0.8457 1.1943 0.8307 1.1905 0.8437 1.1943 0.8307 1.1905 0.8328 1.1905 0.8437 1.1905 0.8328 1.1811 0.8435 1.1905 0.8328 1.1943 0.8307 1.1802 0.8294 1.1811 0.8435 1.1905 0.8328 1.1807 0.8325 1.1811 0.8435 1.1807 0.8325 1.1705 0.8436 1.1807 0.8325 1.1905 0.8328 1.1802 0.8294 1.1705 0.8436 1.1807 0.8325 1.1704 0.8322 1.1705 0.8436 1.1704 0.8322 1.1669 0.8453 1.1704 0.8322 1.1666 0.8306 1.1669 0.8453 1.1669 0.8453 1.1666 0.8306 1.1597 0.839 1.1666 0.8306 1.1704 0.8322 1.1807 0.8325 1.1666 0.8306 1.1807 0.8325 1.1802 0.8294 1.1666 0.8306 1.1802 0.8294 1.1693 0.8208 1.1666 0.8306 1.1693 0.8208 1.1616 0.8294 1.1666 0.8306 1.1616 0.8294 1.1597 0.839 1.1597 0.839 1.1616 0.8294 1.1586 0.829 1.1586 0.829 1.1616 0.8294 1.1671 0.8189 1.1616 0.8294 1.1693 0.8208 1.1671 0.8189 1.0718 0.7541 1.0591 0.7336 1.0517 0.7343 1.0591 0.7336 1.0718 0.7541 1.0736 0.7487 1.0591 0.7336 1.0736 0.7487 1.0704 0.7414 1.0736 0.7487 1.0718 0.7541 1.0876 0.7555 1.0876 0.7555 1.0718 0.7541 1.0963 0.7723 1.0736 0.7487 1.0876 0.7555 1.0832 0.7439 1.0736 0.7487 1.0832 0.7439 1.0704 0.7414 1.0704 0.7414 1.0832 0.7439 1.0703 0.7387 1.0832 0.7439 1.0822 0.7416 1.0703 0.7387 1.0703 0.7387 1.0822 0.7416 1.0744 0.7283 1.0822 0.7416 1.0832 0.7439 1.0938 0.7401 1.0938 0.7401 1.0832 0.7439 1.0876 0.7555 1.0938 0.7401 1.0876 0.7555 1.1016 0.7516 1.1016 0.7516 1.0876 0.7555 1.0963 0.7723 1.1016 0.7516 1.0963 0.7723 1.1164 0.769 1.1016 0.7516 1.1164 0.769 1.1322 0.7604 1.1016 0.7516 1.1322 0.7604 1.1167 0.7436 1.1167 0.7436 1.1322 0.7604 1.1436 0.7456 1.1016 0.7516 1.1167 0.7436 1.1058 0.7336 1.1016 0.7516 1.1058 0.7336 1.0938 0.7401 1.1058 0.7336 1.1167 0.7436 1.1261 0.7323 1.1261 0.7323 1.1167 0.7436 1.1436 0.7456 1.1261 0.7323 1.1436 0.7456 1.147 0.7302 1.1261 0.7323 1.147 0.7302 1.1298 0.7188 1.1298 0.7188 1.147 0.7302 1.1449 0.7083 1.1298 0.7188 1.1449 0.7083 1.128 0.7017 1.1298 0.7188 1.128 0.7017 1.112 0.712 1.1298 0.7188 1.112 0.712 1.1131 0.7232 1.1298 0.7188 1.1131 0.7232 1.1261 0.7323 1.1261 0.7323 1.1131 0.7232 1.1058 0.7336 1.1058 0.7336 1.1131 0.7232 1.1032 0.7217 1.1032 0.7217 1.1131 0.7232 1.112 0.712 1.1058 0.7336 1.1032 0.7217 1.0978 0.7327 1.1058 0.7336 1.0978 0.7327 1.0938 0.7401 1.1032 0.7217 1.0995 0.7231 1.0978 0.7327 1.0978 0.7327 1.0995 0.7231 1.0974 0.7232 1.0978 0.7327 1.0974 0.7232 1.096 0.7321 1.0978 0.7327 1.096 0.7321 1.0938 0.7401 1.096 0.7321 1.0921 0.7383 1.0938 0.7401 1.0938 0.7401 1.0921 0.7383 1.0822 0.7416 1.0921 0.7383 1.096 0.7321 1.0852 0.7301 1.0822 0.7416 1.0921 0.7383 1.0852 0.7301 1.096 0.7321 1.0855 0.7259 1.0852 0.7301 1.0855 0.7259 1.096 0.7321 1.0974 0.7232 1.0855 0.7259 1.0974 0.7232 1.0858 0.7223 1.0855 0.7259 1.0858 0.7223 1.0796 0.723 1.0855 0.7259 1.0796 0.723 1.0852 0.7301 1.0852 0.7301 1.0796 0.723 1.0801 0.7316 1.0852 0.7301 1.0801 0.7316 1.0822 0.7416 1.0801 0.7316 1.0796 0.723 1.0744 0.7283 1.0822 0.7416 1.0801 0.7316 1.0744 0.7283 1.2413 0.8421 1.213 0.8415 1.2092 0.8553 1.213 0.8415 1.2413 0.8421 1.2414 0.8184 1.2414 0.8184 1.2413 0.8421 1.2685 0.8416 1.213 0.8415 1.2414 0.8184 1.2103 0.829 1.2103 0.829 1.2414 0.8184 1.206 0.8197 1.206 0.8197 1.2414 0.8184 1.2079 0.8151 1.2079 0.8151 1.2414 0.8184 1.2101 0.8005 1.2414 0.8184 1.2381 0.8022 1.2101 0.8005 1.2101 0.8005 1.2381 0.8022 1.2109 0.7894 1.2381 0.8022 1.2353 0.7884 1.2109 0.7894 1.2109 0.7894 1.2353 0.7884 1.2107 0.7784 1.2353 0.7884 1.2381 0.8022 1.2645 0.8043 1.2645 0.8043 1.2381 0.8022 1.2414 0.8184 1.2645 0.8043 1.2414 0.8184 1.27 0.8187 1.27 0.8187 1.2414 0.8184 1.2685 0.8416 1.27 0.8187 1.2685 0.8416 1.2935 0.8438 1.27 0.8187 1.2935 0.8438 1.297 0.816 1.297 0.816 1.2935 0.8438 1.3209 0.8457 1.27 0.8187 1.297 0.816 1.2929 0.8006 1.27 0.8187 1.2929 0.8006 1.2645 0.8043 1.2929 0.8006 1.297 0.816 1.3265 0.8122 1.3265 0.8122 1.297 0.816 1.3209 0.8457 1.3265 0.8122 1.3209 0.8457 1.3455 0.8479 1.3265 0.8122 1.3455 0.8479 1.3511 0.8115 1.3265 0.8122 1.3511 0.8115 1.3233 0.7934 1.3265 0.8122 1.3233 0.7934 1.2929 0.8006 1.3511 0.8115 1.3505 0.7849 1.3233 0.7934 1.2929 0.8006 1.3233 0.7934 1.2865 0.7837 1.2929 0.8006 1.2865 0.7837 1.2645 0.8043 1.2865 0.7837 1.2602 0.7881 1.2645 0.8043 1.2645 0.8043 1.2602 0.7881 1.2353 0.7884 1.2353 0.7884 1.2602 0.7881 1.2567 0.7754 1.2353 0.7884 1.2567 0.7754 1.2342 0.7747 1.2353 0.7884 1.2342 0.7747 1.2107 0.7784 1.2107 0.7784 1.2342 0.7747 1.2132 0.7696 1.2132 0.7696 1.2342 0.7747 1.2194 0.7572 1.2342 0.7747 1.2374 0.7608 1.2194 0.7572 1.2194 0.7572 1.2374 0.7608 1.2217 0.7439 1.2374 0.7608 1.2342 0.7747 1.2582 0.7608 1.2342 0.7747 1.2567 0.7754 1.2582 0.7608 1.2582 0.7608 1.2567 0.7754 1.2817 0.7686 1.2817 0.7686 1.2567 0.7754 1.2602 0.7881 1.2817 0.7686 1.2602 0.7881 1.2865 0.7837 1.2817 0.7686 1.2865 0.7837 1.3067 0.7564 1.2865 0.7837 1.3139 0.7703 1.3067 0.7564 1.3139 0.7703 1.2865 0.7837 1.3233 0.7934 1.3139 0.7703 1.3233 0.7934 1.3505 0.7849 1.3139 0.7703 1.3505 0.7849 1.3415 0.7543 1.3139 0.7703 1.3415 0.7543 1.3227 0.7298 1.3139 0.7703 1.3227 0.7298 1.3067 0.7564 1.3067 0.7564 1.3227 0.7298 1.302 0.7407 1.3227 0.7298 1.3186 0.7202 1.302 0.7407 1.3067 0.7564 1.302 0.7407 1.2796 0.755 1.3067 0.7564 1.2796 0.755 1.2817 0.7686 1.2817 0.7686 1.2796 0.755 1.2582 0.7608 1.2582 0.7608 1.2796 0.755 1.2591 0.7464 1.2582 0.7608 1.2591 0.7464 1.2381 0.7474 1.2582 0.7608 1.2381 0.7474 1.2374 0.7608 1.2374 0.7608 1.2381 0.7474 1.2217 0.7439 1.2217 0.7439 1.2381 0.7474 1.2414 0.7141 1.2414 0.7141 1.2381 0.7474 1.2591 0.7464 1.2414 0.7141 1.2591 0.7464 1.2775 0.7417 1.2775 0.7417 1.2591 0.7464 1.2796 0.755 1.2775 0.7417 1.2796 0.755 1.302 0.7407 1.2775 0.7417 1.302 0.7407 1.2984 0.7287 1.2984 0.7287 1.302 0.7407 1.3186 0.7202 1.2984 0.7287 1.3186 0.7202 1.3137 0.7135 1.2984 0.7287 1.3137 0.7135 1.2843 0.687 1.2984 0.7287 1.2843 0.687 1.2694 0.701 1.2984 0.7287 1.2694 0.701 1.2775 0.7417 1.2775 0.7417 1.2694 0.701 1.2414 0.7141 0.8767 0.8708 0.8782 0.8651 0.8825 0.8651 0.8825 0.8651 0.8782 0.8651 0.8804 0.857 0.8767 0.8708 0.8825 0.8651 0.8805 0.8733 0.8767 0.8708 0.8805 0.8733 0.8727 0.875 0.8805 0.8733 0.8749 0.879 0.8727 0.875 0.8727 0.875 0.8749 0.879 0.8673 0.8765 0.8749 0.879 0.8673 0.881 0.8673 0.8765 0.8673 0.8765 0.8673 0.881 0.8618 0.875 0.8673 0.881 0.8597 0.879 0.8618 0.875 0.8618 0.875 0.8597 0.879 0.8578 0.8709 0.8597 0.879 0.854 0.8733 0.8578 0.8709 0.8578 0.8709 0.854 0.8733 0.8563 0.8652 0.854 0.8733 0.8519 0.8652 0.8563 0.8652 0.8563 0.8652 0.8519 0.8652 0.8578 0.8595 0.8519 0.8652 0.854 0.8571 0.8578 0.8595 0.8578 0.8595 0.854 0.8571 0.8618 0.8553 0.854 0.8571 0.8596 0.8514 0.8618 0.8553 0.8618 0.8553 0.8596 0.8514 0.8673 0.8538 0.8596 0.8514 0.8673 0.8494 0.8673 0.8538 0.8673 0.8538 0.8673 0.8494 0.8727 0.8553 0.8673 0.8494 0.8749 0.8514 0.8727 0.8553 0.8727 0.8553 0.8749 0.8514 0.8767 0.8594 0.8749 0.8514 0.8804 0.857 0.8767 0.8594 0.8767 0.8594 0.8804 0.857 0.8782 0.8651 0.8767 0.8594 0.8782 0.8651 0.8735 0.8652 0.8767 0.8594 0.8735 0.8652 0.8725 0.8619 0.8767 0.8594 0.8725 0.8619 0.8727 0.8553 0.8725 0.8619 0.8703 0.8595 0.8727 0.8553 0.8727 0.8553 0.8703 0.8595 0.8673 0.8538 0.8703 0.8595 0.8673 0.8587 0.8673 0.8538 0.8673 0.8538 0.8673 0.8587 0.8618 0.8553 0.8673 0.8587 0.8642 0.8595 0.8618 0.8553 0.8618 0.8553 0.8642 0.8595 0.8578 0.8595 0.8642 0.8595 0.8619 0.862 0.8578 0.8595 0.8578 0.8595 0.8619 0.862 0.8563 0.8652 0.8619 0.862 0.8609 0.8652 0.8563 0.8652 0.8563 0.8652 0.8609 0.8652 0.8578 0.8709 0.8609 0.8652 0.862 0.8684 0.8578 0.8709 0.8578 0.8709 0.862 0.8684 0.8618 0.875 0.862 0.8684 0.8609 0.8652 0.8667 0.865 0.8667 0.865 0.8609 0.8652 0.8619 0.862 0.8667 0.865 0.8619 0.862 0.8642 0.8595 0.8667 0.865 0.8642 0.8595 0.8673 0.8587 0.8667 0.865 0.8673 0.8587 0.8703 0.8595 0.8667 0.865 0.8703 0.8595 0.8725 0.8619 0.8667 0.865 0.8725 0.8619 0.8735 0.8652 0.8667 0.865 0.8735 0.8652 0.8725 0.8684 0.8725 0.8684 0.8735 0.8652 0.8782 0.8651 0.8725 0.8684 0.8782 0.8651 0.8767 0.8708 0.8725 0.8684 0.8767 0.8708 0.8703 0.8708 0.8725 0.8684 0.8703 0.8708 0.8667 0.865 0.8767 0.8708 0.8727 0.875 0.8703 0.8708 0.8703 0.8708 0.8727 0.875 0.8673 0.8717 0.8703 0.8708 0.8673 0.8717 0.8667 0.865 0.8727 0.875 0.8673 0.8765 0.8673 0.8717 0.8667 0.865 0.8673 0.8717 0.8642 0.8708 0.8667 0.865 0.8642 0.8708 0.862 0.8684 0.862 0.8684 0.8642 0.8708 0.8618 0.875 0.8618 0.875 0.8642 0.8708 0.8673 0.8765 0.8642 0.8708 0.8673 0.8717 0.8673 0.8765 0.9389 0.8314 0.9474 0.8341 0.9397 0.8341 0.9389 0.8314 0.9482 0.8314 0.9474 0.8341</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#Stormtroopermesh-mesh-map-array\" count=\"19554\" stride=\"2\">\r\n              <param name=\"S\" type=\"float\"/>\r\n              <param name=\"T\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <vertices id=\"Stormtroopermesh-mesh-vertices\">\r\n          <input semantic=\"POSITION\" source=\"#Stormtroopermesh-mesh-positions\"/>\r\n        </vertices>\r\n        <polylist material=\"Stormtroopermat-material\" count=\"6518\">\r\n          <input semantic=\"VERTEX\" source=\"#Stormtroopermesh-mesh-vertices\" offset=\"0\"/>\r\n          <input semantic=\"NORMAL\" source=\"#Stormtroopermesh-mesh-normals\" offset=\"1\"/>\r\n          <input semantic=\"TEXCOORD\" source=\"#Stormtroopermesh-mesh-map\" offset=\"2\" set=\"0\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 </vcount>\r\n          <p>0 0 0 1 1 1 2 2 2 1 1 3 0 0 4 3 3 5 1 1 6 3 3 7 4 4 8 3 3 9 0 0 10 5 5 11 0 0 12 6 6 13 5 5 14 5 5 15 6 6 16 7 7 17 6 6 18 8 8 19 7 7 20 7 7 21 8 8 22 9 9 23 8 8 24 10 10 25 9 9 26 9 9 27 10 10 28 11 11 29 10 10 30 12 12 31 11 11 32 11 11 33 12 12 34 13 13 35 11 11 36 13 13 37 14 14 38 14 14 39 13 13 40 15 15 41 11 11 42 14 14 43 16 16 44 11 11 45 16 16 46 9 9 47 16 16 48 17 17 49 9 9 50 9 9 51 17 17 52 7 7 53 17 17 54 18 18 55 7 7 56 7 7 57 18 18 58 5 5 59 18 18 60 19 19 61 5 5 62 5 5 63 19 19 64 3 3 65 19 19 66 20 20 67 3 3 68 3 3 69 20 20 70 4 4 71 20 20 72 21 21 73 4 4 74 21 21 75 20 20 76 22 22 77 21 21 78 22 22 79 23 23 80 22 22 81 20 20 82 24 24 83 20 20 84 19 19 85 24 24 86 24 24 87 19 19 88 18 18 89 24 24 90 18 18 91 25 25 92 25 25 93 18 18 94 26 26 95 18 18 96 17 17 97 26 26 98 26 26 99 17 17 100 27 27 101 17 17 102 16 16 103 27 27 104 27 27 105 16 16 106 28 28 107 28 28 108 16 16 109 14 14 110 28 28 111 14 14 112 29 29 113 29 29 114 14 14 115 15 15 116 29 29 117 15 15 118 30 30 119 29 29 120 30 30 121 31 31 122 29 29 123 31 31 124 32 32 125 29 29 126 32 32 127 28 28 128 28 28 129 32 32 130 33 33 131 28 28 132 33 33 133 34 34 134 28 28 135 34 34 136 27 27 137 27 27 138 34 34 139 35 35 140 27 27 141 35 35 142 26 26 143 35 35 144 36 36 145 26 26 146 26 26 147 36 36 148 25 25 149 36 36 150 37 37 151 25 25 152 25 25 153 37 37 154 24 24 155 37 37 156 38 38 157 24 24 158 24 24 159 38 38 160 22 22 161 38 38 162 39 39 163 22 22 164 22 22 165 39 39 166 23 23 167 39 39 168 40 40 169 23 23 170 40 40 171 39 39 172 41 41 173 39 39 174 38 38 175 41 41 176 40 40 177 41 41 178 42 42 179 41 41 180 38 38 181 43 43 182 38 38 183 37 37 184 43 43 185 43 43 186 37 37 187 44 44 188 37 37 189 36 36 190 44 44 191 44 44 192 36 36 193 45 45 194 36 36 195 35 35 196 45 45 197 45 45 198 35 35 199 46 46 200 46 46 201 35 35 202 34 34 203 46 46 204 34 34 205 33 33 206 46 46 207 33 33 208 47 47 209 46 46 210 47 47 211 48 48 212 46 46 213 48 48 214 45 45 215 45 45 216 48 48 217 49 49 218 45 45 219 49 49 220 44 44 221 49 49 222 50 50 223 44 44 224 44 44 225 50 50 226 43 43 227 50 50 228 51 51 229 43 43 230 43 43 231 51 51 232 41 41 233 41 41 234 51 51 235 42 42 236 51 51 237 52 52 238 42 42 239 52 52 240 51 51 241 53 53 242 51 51 243 50 50 244 53 53 245 53 53 246 50 50 247 54 54 248 50 50 249 49 49 250 54 54 251 54 54 252 49 49 253 55 55 254 55 55 255 49 49 256 48 48 257 54 54 258 55 55 259 56 56 260 56 56 261 55 55 262 57 57 263 55 55 264 58 58 265 57 57 266 58 58 267 55 55 268 48 48 269 58 58 270 48 48 271 47 47 272 58 58 273 47 47 274 59 59 275 59 59 276 47 47 277 60 60 278 47 47 279 33 33 280 60 60 281 60 60 282 33 33 283 61 61 284 33 33 285 32 32 286 61 61 287 61 61 288 32 32 289 31 31 290 61 61 291 31 31 292 62 62 293 61 61 294 62 62 295 63 63 296 61 61 297 63 63 298 60 60 299 63 63 300 64 64 301 60 60 302 60 60 303 64 64 304 59 59 305 64 64 306 65 65 307 59 59 308 59 59 309 65 65 310 58 58 311 65 65 312 57 57 313 58 58 314 66 66 315 62 62 316 31 31 317 66 66 318 31 31 319 30 30 320 66 66 321 30 30 322 67 67 323 68 68 324 69 69 325 70 70 326 70 70 327 69 69 328 71 71 329 69 69 330 72 72 331 71 71 332 70 70 333 71 71 334 73 73 335 71 71 336 72 72 337 74 74 338 72 72 339 75 75 340 74 74 341 74 74 342 75 75 343 76 76 344 74 74 345 76 76 346 77 77 347 76 76 348 78 78 349 77 77 350 77 77 351 78 78 352 79 79 353 78 78 354 80 80 355 79 79 356 79 79 357 80 80 358 81 81 359 79 79 360 81 81 361 77 77 362 80 80 363 82 82 364 81 81 365 82 82 366 83 83 367 81 81 368 81 81 369 83 83 370 84 84 371 81 81 372 84 84 373 85 85 374 81 81 375 85 85 376 86 86 377 86 86 378 85 85 379 87 87 380 81 81 381 86 86 382 88 88 383 87 87 384 88 88 385 86 86 386 88 88 387 87 87 388 89 89 389 88 88 390 89 89 391 90 90 392 90 90 393 89 89 394 91 91 395 90 90 396 91 91 397 92 92 398 90 90 399 92 92 400 93 93 401 93 93 402 92 92 403 94 94 404 93 93 405 94 94 406 95 95 407 94 94 408 96 96 409 95 95 410 93 93 411 95 95 412 97 97 413 93 93 414 97 97 415 98 98 416 93 93 417 98 98 418 90 90 419 97 97 420 99 99 421 98 98 422 99 99 423 100 100 424 98 98 425 98 98 426 100 100 427 101 101 428 98 98 429 101 101 430 73 73 431 98 98 432 73 73 433 71 71 434 98 98 435 71 71 436 74 74 437 98 98 438 74 74 439 102 102 440 98 98 441 102 102 442 90 90 443 90 90 444 102 102 445 88 88 446 88 88 447 102 102 448 81 81 449 81 81 450 102 102 451 77 77 452 102 102 453 74 74 454 77 77 455 13 13 456 12 12 457 100 100 458 12 12 459 10 10 460 100 100 461 13 13 462 100 100 463 99 99 464 13 13 465 99 99 466 15 15 467 99 99 468 97 97 469 15 15 470 15 15 471 97 97 472 30 30 473 97 97 474 95 95 475 30 30 476 30 30 477 95 95 478 67 67 479 95 95 480 96 96 481 67 67 482 67 67 483 96 96 484 66 66 485 96 96 486 94 94 487 66 66 488 66 66 489 94 94 490 62 62 491 94 94 492 92 92 493 62 62 494 62 62 495 92 92 496 63 63 497 92 92 498 91 91 499 63 63 500 63 63 501 91 91 502 64 64 503 91 91 504 89 89 505 64 64 506 64 64 507 89 89 508 65 65 509 89 89 510 87 87 511 65 65 512 65 65 513 87 87 514 57 57 515 87 87 516 85 85 517 57 57 518 57 57 519 85 85 520 56 56 521 85 85 522 84 84 523 56 56 524 56 56 525 84 84 526 54 54 527 84 84 528 83 83 529 54 54 530 54 54 531 83 83 532 53 53 533 53 53 534 83 83 535 52 52 536 83 83 537 82 82 538 52 52 539 52 52 540 82 82 541 42 42 542 82 82 543 80 80 544 42 42 545 42 42 546 80 80 547 40 40 548 80 80 549 78 78 550 40 40 551 40 40 552 78 78 553 23 23 554 78 78 555 76 76 556 23 23 557 23 23 558 76 76 559 21 21 560 76 76 561 75 75 562 21 21 563 21 21 564 75 75 565 4 4 566 75 75 567 72 72 568 4 4 569 4 4 570 72 72 571 1 1 572 72 72 573 69 69 574 1 1 575 1 1 576 69 69 577 2 2 578 69 69 579 68 68 580 2 2 581 2 2 582 68 68 583 0 0 584 68 68 585 70 70 586 0 0 587 0 0 588 70 70 589 6 6 590 70 70 591 73 73 592 6 6 593 6 6 594 73 73 595 8 8 596 73 73 597 101 101 598 8 8 599 8 8 600 101 101 601 10 10 602 101 101 603 100 100 604 10 10 605 103 103 606 104 104 607 105 105 608 103 103 609 105 105 610 106 106 611 105 105 612 107 107 613 106 106 614 103 103 615 106 106 616 108 108 617 103 103 618 108 108 619 109 109 620 109 109 621 108 108 622 110 110 623 109 109 624 110 110 625 111 111 626 111 111 627 110 110 628 112 112 629 111 111 630 112 112 631 113 113 632 113 113 633 112 112 634 114 114 635 113 113 636 114 114 637 115 115 638 115 115 639 114 114 640 116 116 641 114 114 642 117 117 643 116 116 644 116 116 645 117 117 646 118 118 647 117 117 648 114 114 649 119 119 650 119 119 651 114 114 652 112 112 653 119 119 654 112 112 655 120 120 656 120 120 657 112 112 658 110 110 659 120 120 660 110 110 661 121 121 662 121 121 663 110 110 664 108 108 665 121 121 666 108 108 667 122 122 668 122 122 669 108 108 670 106 106 671 122 122 672 106 106 673 123 123 674 123 123 675 106 106 676 107 107 677 123 123 678 107 107 679 124 124 680 123 123 681 124 124 682 125 125 683 124 124 684 126 126 685 125 125 686 123 123 687 125 125 688 127 127 689 123 123 690 127 127 691 122 122 692 122 122 693 127 127 694 121 121 695 127 127 696 128 128 697 121 121 698 121 121 699 128 128 700 129 129 701 121 121 702 129 129 703 120 120 704 120 120 705 129 129 706 130 130 707 120 120 708 130 130 709 119 119 710 119 119 711 130 130 712 131 131 713 119 119 714 131 131 715 117 117 716 117 117 717 131 131 718 132 132 719 117 117 720 132 132 721 118 118 722 118 118 723 132 132 724 133 133 725 132 132 726 134 134 727 133 133 728 134 134 729 132 132 730 135 135 731 135 135 732 132 132 733 131 131 734 135 135 735 131 131 736 136 136 737 131 131 738 137 137 739 136 136 740 137 137 741 131 131 742 130 130 743 137 137 744 130 130 745 138 138 746 138 138 747 130 130 748 129 129 749 138 138 750 129 129 751 139 139 752 139 139 753 129 129 754 128 128 755 139 139 756 128 128 757 140 140 758 140 140 759 128 128 760 127 127 761 140 140 762 127 127 763 141 141 764 141 141 765 127 127 766 125 125 767 141 141 768 125 125 769 142 142 770 142 142 771 125 125 772 126 126 773 142 142 774 126 126 775 143 143 776 142 142 777 143 143 778 144 144 779 142 142 780 144 144 781 141 141 782 143 143 783 145 145 784 144 144 785 141 141 786 144 144 787 146 146 788 141 141 789 146 146 790 140 140 791 140 140 792 146 146 793 147 147 794 140 140 795 147 147 796 139 139 797 139 139 798 147 147 799 148 148 800 139 139 801 148 148 802 138 138 803 138 138 804 148 148 805 149 149 806 138 138 807 149 149 808 137 137 809 137 137 810 149 149 811 136 136 812 149 149 813 150 150 814 136 136 815 150 150 816 149 149 817 151 151 818 151 151 819 149 149 820 148 148 821 151 151 822 148 148 823 152 152 824 152 152 825 148 148 826 147 147 827 152 152 828 147 147 829 153 153 830 153 153 831 147 147 832 146 146 833 153 153 834 146 146 835 154 154 836 154 154 837 146 146 838 144 144 839 154 154 840 144 144 841 145 145 842 154 154 843 145 145 844 155 155 845 154 154 846 155 155 847 156 156 848 154 154 849 156 156 850 153 153 851 153 153 852 156 156 853 157 157 854 153 153 855 157 157 856 152 152 857 152 152 858 157 157 859 158 158 860 152 152 861 158 158 862 151 151 863 157 157 864 159 159 865 158 158 866 158 158 867 159 159 868 160 160 869 158 158 870 160 160 871 161 161 872 158 158 873 161 161 874 151 151 875 151 151 876 161 161 877 150 150 878 150 150 879 161 161 880 162 162 881 150 150 882 162 162 883 163 163 884 150 150 885 163 163 886 136 136 887 136 136 888 163 163 889 164 164 890 136 136 891 164 164 892 135 135 893 135 135 894 164 164 895 134 134 896 134 134 897 164 164 898 165 165 899 164 164 900 166 166 901 165 165 902 166 166 903 164 164 904 163 163 905 166 166 906 163 163 907 167 167 908 167 167 909 163 163 910 162 162 911 167 167 912 162 162 913 168 168 914 168 168 915 162 162 916 161 161 917 168 168 918 161 161 919 160 160 920 134 134 921 165 165 922 169 169 923 134 134 924 169 169 925 133 133 926 133 133 927 169 169 928 170 170 929 171 171 930 172 172 931 173 173 932 173 173 933 172 172 934 174 174 935 174 174 936 172 172 937 175 175 938 173 173 939 174 174 940 176 176 941 174 174 942 175 175 943 177 177 944 175 175 945 178 178 946 177 177 947 178 178 948 179 179 949 177 177 950 177 177 951 179 179 952 180 180 953 177 177 954 180 180 955 181 181 956 177 177 957 181 181 958 182 182 959 182 182 960 181 181 961 183 183 962 182 182 963 183 183 964 184 184 965 184 184 966 183 183 967 185 185 968 182 182 969 184 184 970 186 186 971 182 182 972 186 186 973 187 187 974 182 182 975 187 187 976 177 177 977 186 186 978 188 188 979 187 187 980 187 187 981 188 188 982 189 189 983 187 187 984 189 189 985 190 190 986 189 189 987 191 191 988 190 190 989 187 187 990 190 190 991 192 192 992 187 187 993 192 192 994 177 177 995 177 177 996 192 192 997 193 193 998 177 177 999 193 193 1000 174 174 1001 174 174 1002 193 193 1003 176 176 1004 193 193 1005 194 194 1006 176 176 1007 194 194 1008 193 193 1009 195 195 1010 195 195 1011 193 193 1012 196 196 1013 196 196 1014 193 193 1015 192 192 1016 195 195 1017 196 196 1018 197 197 1019 196 196 1020 192 192 1021 198 198 1022 198 198 1023 192 192 1024 190 190 1025 198 198 1026 190 190 1027 199 199 1028 199 199 1029 190 190 1030 191 191 1031 199 199 1032 191 191 1033 200 200 1034 199 199 1035 200 200 1036 198 198 1037 200 200 1038 201 201 1039 198 198 1040 198 198 1041 201 201 1042 202 202 1043 198 198 1044 202 202 1045 203 203 1046 198 198 1047 203 203 1048 204 204 1049 198 198 1050 204 204 1051 205 205 1052 198 198 1053 205 205 1054 196 196 1055 196 196 1056 205 205 1057 197 197 1058 205 205 1059 204 204 1060 197 197 1061 179 179 1062 115 115 1063 116 116 1064 115 115 1065 179 179 1066 113 113 1067 116 116 1068 180 180 1069 179 179 1070 113 113 1071 179 179 1072 178 178 1073 113 113 1074 178 178 1075 111 111 1076 111 111 1077 178 178 1078 175 175 1079 111 111 1080 175 175 1081 109 109 1082 109 109 1083 175 175 1084 172 172 1085 109 109 1086 172 172 1087 103 103 1088 103 103 1089 172 172 1090 171 171 1091 103 103 1092 171 171 1093 104 104 1094 104 104 1095 171 171 1096 173 173 1097 104 104 1098 173 173 1099 105 105 1100 105 105 1101 173 173 1102 176 176 1103 105 105 1104 176 176 1105 107 107 1106 107 107 1107 176 176 1108 194 194 1109 107 107 1110 194 194 1111 124 124 1112 124 124 1113 194 194 1114 195 195 1115 124 124 1116 195 195 1117 126 126 1118 126 126 1119 195 195 1120 197 197 1121 126 126 1122 197 197 1123 143 143 1124 143 143 1125 197 197 1126 204 204 1127 143 143 1128 204 204 1129 145 145 1130 145 145 1131 204 204 1132 203 203 1133 145 145 1134 203 203 1135 155 155 1136 155 155 1137 203 203 1138 202 202 1139 155 155 1140 202 202 1141 156 156 1142 156 156 1143 202 202 1144 157 157 1145 157 157 1146 202 202 1147 201 201 1148 157 157 1149 201 201 1150 159 159 1151 159 159 1152 201 201 1153 200 200 1154 159 159 1155 200 200 1156 160 160 1157 160 160 1158 200 200 1159 191 191 1160 160 160 1161 191 191 1162 168 168 1163 168 168 1164 191 191 1165 189 189 1166 168 168 1167 189 189 1168 167 167 1169 167 167 1170 189 189 1171 188 188 1172 167 167 1173 188 188 1174 166 166 1175 166 166 1176 188 188 1177 186 186 1178 166 166 1179 186 186 1180 165 165 1181 165 165 1182 186 186 1183 184 184 1184 165 165 1185 184 184 1186 169 169 1187 169 169 1188 184 184 1189 185 185 1190 169 169 1191 185 185 1192 170 170 1193 170 170 1194 185 185 1195 183 183 1196 170 170 1197 183 183 1198 133 133 1199 133 133 1200 183 183 1201 181 181 1202 133 133 1203 181 181 1204 118 118 1205 118 118 1206 181 181 1207 180 180 1208 118 118 1209 180 180 1210 116 116 1211 206 206 1212 207 207 1213 208 208 1214 206 206 1215 208 208 1216 209 209 1217 206 206 1218 209 209 1219 210 210 1220 209 209 1221 211 211 1222 210 210 1223 210 210 1224 211 211 1225 212 212 1226 211 211 1227 213 213 1228 212 212 1229 212 212 1230 213 213 1231 214 214 1232 213 213 1233 215 215 1234 214 214 1235 214 214 1236 215 215 1237 216 216 1238 215 215 1239 217 217 1240 216 216 1241 216 216 1242 217 217 1243 218 218 1244 217 217 1245 219 219 1246 218 218 1247 218 218 1248 219 219 1249 220 220 1250 219 219 1251 221 221 1252 220 220 1253 220 220 1254 221 221 1255 222 222 1256 221 221 1257 223 223 1258 222 222 1259 222 222 1260 223 223 1261 224 224 1262 223 223 1263 225 225 1264 224 224 1265 224 224 1266 225 225 1267 207 207 1268 225 225 1269 208 208 1270 207 207 1271 212 212 1272 226 226 1273 210 210 1274 226 226 1275 212 212 1276 214 214 1277 210 210 1278 226 226 1279 206 206 1280 226 226 1281 214 214 1282 216 216 1283 206 206 1284 226 226 1285 207 207 1286 226 226 1287 216 216 1288 218 218 1289 207 207 1290 226 226 1291 224 224 1292 226 226 1293 218 218 1294 220 220 1295 224 224 1296 226 226 1297 222 222 1298 220 220 1299 222 222 1300 226 226 1301 227 227 1302 228 228 1303 229 229 1304 227 227 1305 229 229 1306 230 230 1307 227 227 1308 230 230 1309 231 231 1310 230 230 1311 229 229 1312 232 232 1313 229 229 1314 233 233 1315 232 232 1316 232 232 1317 233 233 1318 234 234 1319 232 232 1320 234 234 1321 235 235 1322 232 232 1323 235 235 1324 236 236 1325 232 232 1326 236 236 1327 230 230 1328 236 236 1329 237 237 1330 230 230 1331 230 230 1332 237 237 1333 231 231 1334 231 231 1335 237 237 1336 238 238 1337 237 237 1338 239 239 1339 238 238 1340 238 238 1341 239 239 1342 240 240 1343 239 239 1344 237 237 1345 241 241 1346 237 237 1347 236 236 1348 241 241 1349 241 241 1350 236 236 1351 242 242 1352 242 242 1353 236 236 1354 235 235 1355 242 242 1356 235 235 1357 243 243 1358 235 235 1359 244 244 1360 243 243 1361 244 244 1362 235 235 1363 234 234 1364 244 244 1365 234 234 1366 245 245 1367 242 242 1368 243 243 1369 246 246 1370 242 242 1371 246 246 1372 247 247 1373 242 242 1374 247 247 1375 241 241 1376 247 247 1377 246 246 1378 248 248 1379 241 241 1380 247 247 1381 249 249 1382 241 241 1383 249 249 1384 239 239 1385 249 249 1386 250 250 1387 239 239 1388 239 239 1389 250 250 1390 240 240 1391 240 240 1392 250 250 1393 251 251 1394 250 250 1395 252 252 1396 251 251 1397 251 251 1398 252 252 1399 253 253 1400 252 252 1401 250 250 1402 254 254 1403 250 250 1404 249 249 1405 254 254 1406 254 254 1407 249 249 1408 255 255 1409 255 255 1410 249 249 1411 247 247 1412 255 255 1413 247 247 1414 248 248 1415 255 255 1416 248 248 1417 256 256 1418 255 255 1419 256 256 1420 257 257 1421 255 255 1422 257 257 1423 254 254 1424 257 257 1425 256 256 1426 258 258 1427 254 254 1428 257 257 1429 259 259 1430 254 254 1431 259 259 1432 252 252 1433 259 259 1434 260 260 1435 252 252 1436 252 252 1437 260 260 1438 253 253 1439 253 253 1440 260 260 1441 261 261 1442 260 260 1443 262 262 1444 261 261 1445 261 261 1446 262 262 1447 263 263 1448 262 262 1449 260 260 1450 264 264 1451 260 260 1452 259 259 1453 264 264 1454 264 264 1455 259 259 1456 265 265 1457 265 265 1458 259 259 1459 257 257 1460 265 265 1461 257 257 1462 258 258 1463 265 265 1464 258 258 1465 266 266 1466 265 265 1467 266 266 1468 267 267 1469 265 265 1470 267 267 1471 264 264 1472 267 267 1473 266 266 1474 268 268 1475 264 264 1476 267 267 1477 269 269 1478 264 264 1479 269 269 1480 262 262 1481 269 269 1482 270 270 1483 262 262 1484 262 262 1485 270 270 1486 263 263 1487 263 263 1488 270 270 1489 271 271 1490 270 270 1491 272 272 1492 271 271 1493 271 271 1494 272 272 1495 273 273 1496 272 272 1497 270 270 1498 274 274 1499 270 270 1500 269 269 1501 274 274 1502 274 274 1503 269 269 1504 275 275 1505 275 275 1506 269 269 1507 267 267 1508 275 275 1509 267 267 1510 268 268 1511 275 275 1512 268 268 1513 276 276 1514 275 275 1515 276 276 1516 277 277 1517 275 275 1518 277 277 1519 274 274 1520 277 277 1521 276 276 1522 278 278 1523 274 274 1524 277 277 1525 279 279 1526 274 274 1527 279 279 1528 272 272 1529 279 279 1530 280 280 1531 272 272 1532 272 272 1533 280 280 1534 273 273 1535 273 273 1536 280 280 1537 281 281 1538 280 280 1539 282 282 1540 281 281 1541 281 281 1542 282 282 1543 228 228 1544 282 282 1545 229 229 1546 228 228 1547 229 229 1548 282 282 1549 233 233 1550 282 282 1551 283 283 1552 233 233 1553 283 283 1554 282 282 1555 280 280 1556 283 283 1557 280 280 1558 279 279 1559 283 283 1560 279 279 1561 284 284 1562 284 284 1563 279 279 1564 277 277 1565 284 284 1566 277 277 1567 278 278 1568 284 284 1569 278 278 1570 285 285 1571 284 284 1572 285 285 1573 286 286 1574 284 284 1575 286 286 1576 283 283 1577 283 283 1578 286 286 1579 233 233 1580 286 286 1581 234 234 1582 233 233 1583 234 234 1584 286 286 1585 245 245 1586 286 286 1587 285 285 1588 245 245 1589 287 287 1590 288 288 1591 289 289 1592 287 287 1593 289 289 1594 290 290 1595 287 287 1596 290 290 1597 291 291 1598 290 290 1599 292 292 1600 291 291 1601 291 291 1602 292 292 1603 293 293 1604 292 292 1605 294 294 1606 293 293 1607 293 293 1608 294 294 1609 295 295 1610 294 294 1611 296 296 1612 295 295 1613 295 295 1614 296 296 1615 297 297 1616 296 296 1617 298 298 1618 297 297 1619 297 297 1620 298 298 1621 299 299 1622 298 298 1623 300 300 1624 299 299 1625 299 299 1626 300 300 1627 301 301 1628 300 300 1629 302 302 1630 301 301 1631 301 301 1632 302 302 1633 303 303 1634 302 302 1635 304 304 1636 303 303 1637 303 303 1638 304 304 1639 305 305 1640 304 304 1641 306 306 1642 305 305 1643 305 305 1644 306 306 1645 307 307 1646 306 306 1647 308 308 1648 307 307 1649 307 307 1650 308 308 1651 309 309 1652 308 308 1653 310 310 1654 309 309 1655 309 309 1656 310 310 1657 288 288 1658 310 310 1659 289 289 1660 288 288 1661 311 311 1662 312 312 1663 313 313 1664 311 311 1665 313 313 1666 314 314 1667 314 314 1668 313 313 1669 315 315 1670 314 314 1671 315 315 1672 316 316 1673 316 316 1674 315 315 1675 317 317 1676 316 316 1677 317 317 1678 318 318 1679 318 318 1680 317 317 1681 319 319 1682 318 318 1683 319 319 1684 320 320 1685 320 320 1686 319 319 1687 321 321 1688 320 320 1689 321 321 1690 322 322 1691 322 322 1692 321 321 1693 323 323 1694 322 322 1695 323 323 1696 324 324 1697 324 324 1698 323 323 1699 325 325 1700 324 324 1701 325 325 1702 326 326 1703 326 326 1704 325 325 1705 327 327 1706 326 326 1707 327 327 1708 328 328 1709 328 328 1710 327 327 1711 329 329 1712 328 328 1713 329 329 1714 330 330 1715 330 330 1716 329 329 1717 331 331 1718 330 330 1719 331 331 1720 332 332 1721 332 332 1722 331 331 1723 333 333 1724 332 332 1725 333 333 1726 334 334 1727 334 334 1728 333 333 1729 312 312 1730 334 334 1731 312 312 1732 311 311 1733 306 306 1734 304 304 1735 335 335 1736 306 306 1737 335 335 1738 308 308 1739 304 304 1740 302 302 1741 335 335 1742 308 308 1743 335 335 1744 310 310 1745 302 302 1746 300 300 1747 335 335 1748 310 310 1749 335 335 1750 289 289 1751 300 300 1752 298 298 1753 335 335 1754 289 289 1755 335 335 1756 290 290 1757 298 298 1758 296 296 1759 335 335 1760 290 290 1761 335 335 1762 292 292 1763 296 296 1764 294 294 1765 335 335 1766 292 292 1767 335 335 1768 294 294 1769 330 330 1770 336 336 1771 328 328 1772 336 336 1773 330 330 1774 332 332 1775 328 328 1776 336 336 1777 326 326 1778 336 336 1779 332 332 1780 334 334 1781 326 326 1782 336 336 1783 324 324 1784 336 336 1785 334 334 1786 311 311 1787 324 324 1788 336 336 1789 322 322 1790 336 336 1791 311 311 1792 314 314 1793 322 322 1794 336 336 1795 320 320 1796 336 336 1797 314 314 1798 316 316 1799 320 320 1800 336 336 1801 318 318 1802 316 316 1803 318 318 1804 336 336 1805 238 238 1806 240 240 1807 303 303 1808 238 238 1809 303 303 1810 305 305 1811 238 238 1812 305 305 1813 231 231 1814 305 305 1815 307 307 1816 231 231 1817 231 231 1818 307 307 1819 227 227 1820 307 307 1821 309 309 1822 227 227 1823 227 227 1824 309 309 1825 228 228 1826 309 309 1827 288 288 1828 228 228 1829 228 228 1830 288 288 1831 281 281 1832 288 288 1833 287 287 1834 281 281 1835 281 281 1836 287 287 1837 273 273 1838 287 287 1839 291 291 1840 273 273 1841 273 273 1842 291 291 1843 271 271 1844 291 291 1845 293 293 1846 271 271 1847 271 271 1848 293 293 1849 263 263 1850 293 293 1851 295 295 1852 263 263 1853 263 263 1854 295 295 1855 261 261 1856 295 295 1857 297 297 1858 261 261 1859 261 261 1860 297 297 1861 253 253 1862 297 297 1863 299 299 1864 253 253 1865 253 253 1866 299 299 1867 251 251 1868 299 299 1869 301 301 1870 251 251 1871 251 251 1872 301 301 1873 240 240 1874 301 301 1875 303 303 1876 240 240 1877 246 246 1878 329 329 1879 327 327 1880 329 329 1881 246 246 1882 243 243 1883 327 327 1884 248 248 1885 246 246 1886 248 248 1887 327 327 1888 325 325 1889 248 248 1890 325 325 1891 256 256 1892 256 256 1893 325 325 1894 323 323 1895 256 256 1896 323 323 1897 258 258 1898 258 258 1899 323 323 1900 321 321 1901 258 258 1902 321 321 1903 266 266 1904 266 266 1905 321 321 1906 319 319 1907 266 266 1908 319 319 1909 268 268 1910 268 268 1911 319 319 1912 317 317 1913 268 268 1914 317 317 1915 276 276 1916 276 276 1917 317 317 1918 315 315 1919 276 276 1920 315 315 1921 278 278 1922 278 278 1923 315 315 1924 313 313 1925 278 278 1926 313 313 1927 285 285 1928 285 285 1929 313 313 1930 312 312 1931 285 285 1932 312 312 1933 245 245 1934 245 245 1935 312 312 1936 333 333 1937 245 245 1938 333 333 1939 244 244 1940 244 244 1941 333 333 1942 331 331 1943 244 244 1944 331 331 1945 243 243 1946 243 243 1947 331 331 1948 329 329 1949 337 337 1950 338 338 1951 339 339 1952 337 337 1953 339 339 1954 340 340 1955 340 340 1956 339 339 1957 341 341 1958 340 340 1959 341 341 1960 342 342 1961 342 342 1962 341 341 1963 343 343 1964 342 342 1965 343 343 1966 344 344 1967 344 344 1968 343 343 1969 345 345 1970 344 344 1971 345 345 1972 346 346 1973 346 346 1974 345 345 1975 347 347 1976 346 346 1977 347 347 1978 348 348 1979 348 348 1980 347 347 1981 349 349 1982 348 348 1983 349 349 1984 350 350 1985 350 350 1986 349 349 1987 351 351 1988 350 350 1989 351 351 1990 352 352 1991 352 352 1992 351 351 1993 353 353 1994 352 352 1995 353 353 1996 354 354 1997 354 354 1998 353 353 1999 355 355 2000 354 354 2001 355 355 2002 356 356 2003 356 356 2004 355 355 2005 338 338 2006 356 356 2007 338 338 2008 337 337 2009 343 343 2010 341 341 2011 357 357 2012 343 343 2013 357 357 2014 345 345 2015 341 341 2016 339 339 2017 357 357 2018 345 345 2019 357 357 2020 347 347 2021 339 339 2022 338 338 2023 357 357 2024 347 347 2025 357 357 2026 349 349 2027 338 338 2028 355 355 2029 357 357 2030 349 349 2031 357 357 2032 351 351 2033 355 355 2034 353 353 2035 357 357 2036 351 351 2037 357 357 2038 353 353 2039 358 358 2040 359 359 2041 360 360 2042 358 358 2043 360 360 2044 361 361 2045 358 358 2046 361 361 2047 362 362 2048 358 358 2049 362 362 2050 363 363 2051 364 364 2052 365 365 2053 366 366 2054 364 364 2055 366 366 2056 367 367 2057 364 364 2058 367 367 2059 368 368 2060 369 369 2061 370 370 2062 371 371 2063 369 369 2064 371 371 2065 372 372 2066 369 369 2067 372 372 2068 373 373 2069 372 372 2070 374 374 2071 373 373 2072 373 373 2073 374 374 2074 375 375 2075 374 374 2076 376 376 2077 375 375 2078 375 375 2079 376 376 2080 377 377 2081 376 376 2082 378 378 2083 377 377 2084 377 377 2085 378 378 2086 379 379 2087 378 378 2088 380 380 2089 379 379 2090 379 379 2091 380 380 2092 381 381 2093 380 380 2094 382 382 2095 381 381 2096 381 381 2097 382 382 2098 383 383 2099 382 382 2100 384 384 2101 383 383 2102 383 383 2103 384 384 2104 385 385 2105 384 384 2106 386 386 2107 385 385 2108 387 387 2109 388 388 2110 389 389 2111 387 387 2112 389 389 2113 390 390 2114 387 387 2115 390 390 2116 391 391 2117 390 390 2118 392 392 2119 391 391 2120 391 391 2121 392 392 2122 393 393 2123 392 392 2124 394 394 2125 393 393 2126 393 393 2127 394 394 2128 395 395 2129 394 394 2130 396 396 2131 395 395 2132 395 395 2133 396 396 2134 397 397 2135 396 396 2136 398 398 2137 397 397 2138 399 399 2139 400 400 2140 401 401 2141 399 399 2142 401 401 2143 402 402 2144 399 399 2145 402 402 2146 403 403 2147 402 402 2148 404 404 2149 403 403 2150 403 403 2151 404 404 2152 405 405 2153 404 404 2154 406 406 2155 405 405 2156 405 405 2157 406 406 2158 407 407 2159 406 406 2160 408 408 2161 407 407 2162 407 407 2163 408 408 2164 409 409 2165 408 408 2166 410 410 2167 409 409 2168 389 389 2169 388 388 2170 401 401 2171 389 389 2172 401 401 2173 400 400 2174 409 409 2175 410 410 2176 397 397 2177 409 409 2178 397 397 2179 398 398 2180 390 390 2181 389 389 2182 370 370 2183 390 390 2184 370 370 2185 369 369 2186 390 390 2187 369 369 2188 373 373 2189 390 390 2190 373 373 2191 392 392 2192 373 373 2193 375 375 2194 392 392 2195 392 392 2196 375 375 2197 394 394 2198 375 375 2199 377 377 2200 394 394 2201 394 394 2202 377 377 2203 396 396 2204 377 377 2205 379 379 2206 396 396 2207 396 396 2208 379 379 2209 381 381 2210 396 396 2211 381 381 2212 398 398 2213 381 381 2214 383 383 2215 398 398 2216 398 398 2217 383 383 2218 385 385 2219 400 400 2220 371 371 2221 370 370 2222 400 400 2223 370 370 2224 389 389 2225 372 372 2226 371 371 2227 400 400 2228 372 372 2229 400 400 2230 399 399 2231 372 372 2232 399 399 2233 374 374 2234 374 374 2235 399 399 2236 376 376 2237 399 399 2238 403 403 2239 376 376 2240 376 376 2241 403 403 2242 378 378 2243 403 403 2244 405 405 2245 378 378 2246 378 378 2247 405 405 2248 380 380 2249 405 405 2250 407 407 2251 380 380 2252 407 407 2253 382 382 2254 380 380 2255 382 382 2256 407 407 2257 384 384 2258 407 407 2259 409 409 2260 384 384 2261 409 409 2262 386 386 2263 384 384 2264 398 398 2265 385 385 2266 386 386 2267 398 398 2268 386 386 2269 409 409 2270 411 411 2271 412 412 2272 388 388 2273 411 411 2274 388 388 2275 387 387 2276 411 411 2277 387 387 2278 366 366 2279 387 387 2280 391 391 2281 366 366 2282 366 366 2283 391 391 2284 413 413 2285 391 391 2286 393 393 2287 413 413 2288 413 413 2289 393 393 2290 414 414 2291 393 393 2292 395 395 2293 414 414 2294 414 414 2295 395 395 2296 415 415 2297 395 395 2298 397 397 2299 415 415 2300 388 388 2301 412 412 2302 416 416 2303 388 388 2304 416 416 2305 401 401 2306 417 417 2307 418 418 2308 410 410 2309 417 417 2310 410 410 2311 408 408 2312 417 417 2313 408 408 2314 419 419 2315 408 408 2316 406 406 2317 419 419 2318 419 419 2319 406 406 2320 367 367 2321 406 406 2322 404 404 2323 367 367 2324 367 367 2325 404 404 2326 420 420 2327 404 404 2328 402 402 2329 420 420 2330 402 402 2331 401 401 2332 420 420 2333 401 401 2334 416 416 2335 420 420 2336 410 410 2337 418 418 2338 415 415 2339 410 410 2340 415 415 2341 397 397 2342 413 413 2343 421 421 2344 422 422 2345 413 413 2346 422 422 2347 419 419 2348 422 422 2349 423 423 2350 419 419 2351 424 424 2352 425 425 2353 426 426 2354 424 424 2355 426 426 2356 427 427 2357 427 427 2358 426 426 2359 428 428 2360 424 424 2361 427 427 2362 429 429 2363 424 424 2364 429 429 2365 430 430 2366 430 430 2367 429 429 2368 431 431 2369 430 430 2370 431 431 2371 432 432 2372 431 431 2373 429 429 2374 433 433 2375 433 433 2376 429 429 2377 418 418 2378 418 418 2379 429 429 2380 427 427 2381 418 418 2382 427 427 2383 434 434 2384 434 434 2385 427 427 2386 428 428 2387 434 434 2388 428 428 2389 435 435 2390 434 434 2391 435 435 2392 436 436 2393 434 434 2394 436 436 2395 415 415 2396 434 434 2397 415 415 2398 418 418 2399 415 415 2400 436 436 2401 437 437 2402 415 415 2403 437 437 2404 438 438 2405 415 415 2406 438 438 2407 414 414 2408 414 414 2409 438 438 2410 413 413 2411 418 418 2412 439 439 2413 433 433 2414 439 439 2415 418 418 2416 417 417 2417 439 439 2418 417 417 2419 440 440 2420 440 440 2421 417 417 2422 423 423 2423 417 417 2424 419 419 2425 423 423 2426 440 440 2427 423 423 2428 441 441 2429 440 440 2430 441 441 2431 439 439 2432 423 423 2433 422 422 2434 441 441 2435 439 439 2436 441 441 2437 442 442 2438 439 439 2439 442 442 2440 443 443 2441 439 439 2442 443 443 2443 433 433 2444 433 433 2445 443 443 2446 444 444 2447 433 433 2448 444 444 2449 445 445 2450 433 433 2451 445 445 2452 431 431 2453 445 445 2454 444 444 2455 446 446 2456 445 445 2457 446 446 2458 447 447 2459 447 447 2460 446 446 2461 448 448 2462 445 445 2463 447 447 2464 449 449 2465 445 445 2466 449 449 2467 431 431 2468 449 449 2469 432 432 2470 431 431 2471 432 432 2472 449 449 2473 450 450 2474 450 450 2475 449 449 2476 451 451 2477 449 449 2478 447 447 2479 451 451 2480 451 451 2481 447 447 2482 452 452 2483 452 452 2484 447 447 2485 448 448 2486 452 452 2487 448 448 2488 453 453 2489 452 452 2490 453 453 2491 454 454 2492 452 452 2493 454 454 2494 455 455 2495 452 452 2496 455 455 2497 451 451 2498 454 454 2499 456 456 2500 455 455 2501 455 455 2502 456 456 2503 457 457 2504 455 455 2505 457 457 2506 458 458 2507 455 455 2508 458 458 2509 451 451 2510 458 458 2511 459 459 2512 451 451 2513 451 451 2514 459 459 2515 460 460 2516 451 451 2517 460 460 2518 461 461 2519 451 451 2520 461 461 2521 450 450 2522 450 450 2523 461 461 2524 432 432 2525 461 461 2526 462 462 2527 432 432 2528 462 462 2529 461 461 2530 463 463 2531 463 463 2532 461 461 2533 460 460 2534 463 463 2535 460 460 2536 464 464 2537 463 463 2538 464 464 2539 465 465 2540 464 464 2541 466 466 2542 465 465 2543 463 463 2544 465 465 2545 467 467 2546 463 463 2547 467 467 2548 462 462 2549 465 465 2550 468 468 2551 467 467 2552 469 469 2553 470 470 2554 425 425 2555 469 469 2556 425 425 2557 424 424 2558 469 469 2559 424 424 2560 430 430 2561 469 469 2562 430 430 2563 471 471 2564 471 471 2565 430 430 2566 432 432 2567 471 471 2568 432 432 2569 472 472 2570 472 472 2571 432 432 2572 462 462 2573 472 472 2574 462 462 2575 473 473 2576 473 473 2577 462 462 2578 467 467 2579 473 473 2580 467 467 2581 474 474 2582 474 474 2583 467 467 2584 475 475 2585 467 467 2586 468 468 2587 475 475 2588 476 476 2589 473 473 2590 474 474 2591 476 476 2592 474 474 2593 477 477 2594 477 477 2595 474 474 2596 475 475 2597 477 477 2598 475 475 2599 478 478 2600 473 473 2601 476 476 2602 479 479 2603 473 473 2604 479 479 2605 472 472 2606 472 472 2607 479 479 2608 480 480 2609 472 472 2610 480 480 2611 471 471 2612 471 471 2613 480 480 2614 481 481 2615 471 471 2616 481 481 2617 469 469 2618 469 469 2619 481 481 2620 470 470 2621 481 481 2622 482 482 2623 470 470 2624 483 483 2625 484 484 2626 485 485 2627 483 483 2628 485 485 2629 486 486 2630 485 485 2631 487 487 2632 486 486 2633 487 487 2634 485 485 2635 488 488 2636 486 486 2637 487 487 2638 489 489 2639 486 486 2640 489 489 2641 490 490 2642 489 489 2643 491 491 2644 490 490 2645 491 491 2646 489 489 2647 492 492 2648 490 490 2649 491 491 2650 493 493 2651 490 490 2652 493 493 2653 494 494 2654 493 493 2655 491 491 2656 495 495 2657 494 494 2658 493 493 2659 496 496 2660 494 494 2661 496 496 2662 497 497 2663 494 494 2664 497 497 2665 498 498 2666 497 497 2667 499 499 2668 498 498 2669 498 498 2670 499 499 2671 500 500 2672 498 498 2673 500 500 2674 359 359 2675 500 500 2676 360 360 2677 359 359 2678 361 361 2679 360 360 2680 457 457 2681 361 361 2682 457 457 2683 456 456 2684 361 361 2685 456 456 2686 362 362 2687 456 456 2688 454 454 2689 362 362 2690 362 362 2691 454 454 2692 501 501 2693 362 362 2694 501 501 2695 502 502 2696 454 454 2697 453 453 2698 501 501 2699 502 502 2700 501 501 2701 503 503 2702 504 504 2703 466 466 2704 464 464 2705 504 504 2706 464 464 2707 505 505 2708 505 505 2709 464 464 2710 506 506 2711 464 464 2712 460 460 2713 506 506 2714 506 506 2715 460 460 2716 507 507 2717 460 460 2718 459 459 2719 507 507 2720 507 507 2721 459 459 2722 458 458 2723 507 507 2724 458 458 2725 508 508 2726 458 458 2727 457 457 2728 508 508 2729 508 508 2730 457 457 2731 360 360 2732 508 508 2733 360 360 2734 509 509 2735 360 360 2736 510 510 2737 509 509 2738 508 508 2739 509 509 2740 511 511 2741 508 508 2742 511 511 2743 507 507 2744 507 507 2745 511 511 2746 512 512 2747 507 507 2748 512 512 2749 506 506 2750 506 506 2751 512 512 2752 513 513 2753 506 506 2754 513 513 2755 505 505 2756 505 505 2757 513 513 2758 504 504 2759 513 513 2760 514 514 2761 504 504 2762 514 514 2763 513 513 2764 515 515 2765 513 513 2766 516 516 2767 515 515 2768 516 516 2769 513 513 2770 512 512 2771 516 516 2772 512 512 2773 517 517 2774 517 517 2775 512 512 2776 511 511 2777 517 517 2778 511 511 2779 518 518 2780 518 518 2781 511 511 2782 509 509 2783 518 518 2784 509 509 2785 519 519 2786 519 519 2787 509 509 2788 510 510 2789 519 519 2790 510 510 2791 520 520 2792 521 521 2793 522 522 2794 523 523 2795 523 523 2796 522 522 2797 524 524 2798 523 523 2799 524 524 2800 525 525 2801 524 524 2802 522 522 2803 526 526 2804 522 522 2805 527 527 2806 526 526 2807 526 526 2808 527 527 2809 528 528 2810 526 526 2811 528 528 2812 529 529 2813 529 529 2814 528 528 2815 530 530 2816 526 526 2817 529 529 2818 531 531 2819 526 526 2820 531 531 2821 524 524 2822 531 531 2823 532 532 2824 524 524 2825 524 524 2826 532 532 2827 525 525 2828 525 525 2829 532 532 2830 533 533 2831 532 532 2832 534 534 2833 533 533 2834 533 533 2835 534 534 2836 535 535 2837 533 533 2838 535 535 2839 536 536 2840 536 536 2841 535 535 2842 537 537 2843 536 536 2844 537 537 2845 538 538 2846 538 538 2847 537 537 2848 539 539 2849 537 537 2850 540 540 2851 539 539 2852 540 540 2853 541 541 2854 539 539 2855 541 541 2856 540 540 2857 542 542 2858 542 542 2859 540 540 2860 543 543 2861 541 541 2862 542 542 2863 544 544 2864 541 541 2865 544 544 2866 545 545 2867 545 545 2868 544 544 2869 546 546 2870 545 545 2871 546 546 2872 547 547 2873 547 547 2874 546 546 2875 548 548 2876 547 547 2877 548 548 2878 549 549 2879 549 549 2880 548 548 2881 550 550 2882 548 548 2883 551 551 2884 550 550 2885 551 551 2886 548 548 2887 552 552 2888 552 552 2889 548 548 2890 546 546 2891 551 551 2892 552 552 2893 553 553 2894 546 546 2895 554 554 2896 552 552 2897 554 554 2898 546 546 2899 544 544 2900 554 554 2901 544 544 2902 555 555 2903 544 544 2904 542 542 2905 555 555 2906 555 555 2907 542 542 2908 556 556 2909 556 556 2910 542 542 2911 543 543 2912 556 556 2913 543 543 2914 557 557 2915 556 556 2916 557 557 2917 558 558 2918 556 556 2919 558 558 2920 559 559 2921 556 556 2922 559 559 2923 555 555 2924 555 555 2925 559 559 2926 560 560 2927 555 555 2928 560 560 2929 554 554 2930 554 554 2931 560 560 2932 561 561 2933 554 554 2934 561 561 2935 552 552 2936 552 552 2937 561 561 2938 562 562 2939 552 552 2940 562 562 2941 553 553 2942 562 562 2943 563 563 2944 553 553 2945 563 563 2946 562 562 2947 564 564 2948 563 563 2949 564 564 2950 565 565 2951 562 562 2952 566 566 2953 564 564 2954 566 566 2955 562 562 2956 561 561 2957 566 566 2958 561 561 2959 567 567 2960 567 567 2961 561 561 2962 560 560 2963 567 567 2964 560 560 2965 568 568 2966 568 568 2967 560 560 2968 559 559 2969 568 568 2970 559 559 2971 569 569 2972 569 569 2973 559 559 2974 558 558 2975 569 569 2976 558 558 2977 570 570 2978 570 570 2979 558 558 2980 571 571 2981 571 571 2982 558 558 2983 572 572 2984 572 572 2985 558 558 2986 557 557 2987 572 572 2988 557 557 2989 573 573 2990 572 572 2991 573 573 2992 574 574 2993 574 574 2994 573 573 2995 575 575 2996 574 574 2997 575 575 2998 576 576 2999 574 574 3000 576 576 3001 577 577 3002 577 577 3003 576 576 3004 578 578 3005 578 578 3006 576 576 3007 579 579 3008 578 578 3009 579 579 3010 580 580 3011 576 576 3012 581 581 3013 579 579 3014 581 581 3015 576 576 3016 575 575 3017 581 581 3018 575 575 3019 537 537 3020 581 581 3021 537 537 3022 535 535 3023 581 581 3024 535 535 3025 534 534 3026 581 581 3027 534 534 3028 579 579 3029 579 579 3030 534 534 3031 532 532 3032 579 579 3033 532 532 3034 582 582 3035 579 579 3036 582 582 3037 580 580 3038 580 580 3039 582 582 3040 583 583 3041 582 582 3042 584 584 3043 583 583 3044 584 584 3045 582 582 3046 532 532 3047 584 584 3048 532 532 3049 531 531 3050 584 584 3051 531 531 3052 585 585 3053 531 531 3054 529 529 3055 585 585 3056 584 584 3057 585 585 3058 586 586 3059 584 584 3060 586 586 3061 583 583 3062 586 586 3063 585 585 3064 587 587 3065 586 586 3066 587 587 3067 588 588 3068 588 588 3069 587 587 3070 589 589 3071 587 587 3072 590 590 3073 589 589 3074 589 589 3075 590 590 3076 591 591 3077 589 589 3078 591 591 3079 592 592 3080 590 590 3081 593 593 3082 591 591 3083 593 593 3084 590 590 3085 594 594 3086 594 594 3087 590 590 3088 587 587 3089 593 593 3090 594 594 3091 595 595 3092 587 587 3093 596 596 3094 594 594 3095 596 596 3096 587 587 3097 597 597 3098 597 597 3099 587 587 3100 585 585 3101 597 597 3102 585 585 3103 529 529 3104 597 597 3105 529 529 3106 530 530 3107 597 597 3108 530 530 3109 596 596 3110 573 573 3111 557 557 3112 543 543 3113 573 573 3114 543 543 3115 575 575 3116 575 575 3117 543 543 3118 540 540 3119 575 575 3120 540 540 3121 537 537 3122 567 567 3123 598 598 3124 566 566 3125 566 566 3126 598 598 3127 599 599 3128 598 598 3129 600 600 3130 599 599 3131 566 566 3132 599 599 3133 564 564 3134 564 564 3135 599 599 3136 565 565 3137 599 599 3138 601 601 3139 565 565 3140 601 601 3141 599 599 3142 595 595 3143 599 599 3144 593 593 3145 595 595 3146 593 593 3147 599 599 3148 600 600 3149 593 593 3150 600 600 3151 591 591 3152 602 602 3153 603 603 3154 604 604 3155 602 602 3156 604 604 3157 605 605 3158 602 602 3159 605 605 3160 606 606 3161 605 605 3162 604 604 3163 592 592 3164 606 606 3165 605 605 3166 607 607 3167 606 606 3168 607 607 3169 608 608 3170 607 607 3171 605 605 3172 609 609 3173 605 605 3174 610 610 3175 609 609 3176 610 610 3177 605 605 3178 592 592 3179 610 610 3180 592 592 3181 591 591 3182 610 610 3183 591 591 3184 600 600 3185 610 610 3186 600 600 3187 609 609 3188 600 600 3189 598 598 3190 609 609 3191 609 609 3192 598 598 3193 567 567 3194 609 609 3195 567 567 3196 611 611 3197 609 609 3198 611 611 3199 607 607 3200 607 607 3201 611 611 3202 612 612 3203 607 607 3204 612 612 3205 608 608 3206 608 608 3207 612 612 3208 613 613 3209 608 608 3210 613 613 3211 614 614 3212 614 614 3213 613 613 3214 615 615 3215 613 613 3216 616 616 3217 615 615 3218 615 615 3219 616 616 3220 617 617 3221 616 616 3222 618 618 3223 617 617 3224 617 617 3225 618 618 3226 619 619 3227 618 618 3228 616 616 3229 620 620 3230 619 619 3231 618 618 3232 621 621 3233 620 620 3234 621 621 3235 618 618 3236 619 619 3237 621 621 3238 622 622 3239 621 621 3240 623 623 3241 622 622 3242 623 623 3243 621 621 3244 624 624 3245 624 624 3246 621 621 3247 620 620 3248 624 624 3249 620 620 3250 625 625 3251 620 620 3252 626 626 3253 625 625 3254 626 626 3255 620 620 3256 627 627 3257 620 620 3258 616 616 3259 627 627 3260 627 627 3261 616 616 3262 628 628 3263 628 628 3264 616 616 3265 613 613 3266 627 627 3267 628 628 3268 571 571 3269 627 627 3270 571 571 3271 626 626 3272 628 628 3273 570 570 3274 571 571 3275 626 626 3276 571 571 3277 572 572 3278 626 626 3279 572 572 3280 574 574 3281 626 626 3282 574 574 3283 625 625 3284 625 625 3285 574 574 3286 577 577 3287 625 625 3288 577 577 3289 629 629 3290 625 625 3291 629 629 3292 624 624 3293 629 629 3294 577 577 3295 578 578 3296 624 624 3297 629 629 3298 630 630 3299 578 578 3300 630 630 3301 629 629 3302 624 624 3303 630 630 3304 623 623 3305 623 623 3306 630 630 3307 631 631 3308 623 623 3309 631 631 3310 632 632 3311 623 623 3312 632 632 3313 622 622 3314 632 632 3315 633 633 3316 622 622 3317 633 633 3318 632 632 3319 634 634 3320 633 633 3321 634 634 3322 635 635 3323 634 634 3324 632 632 3325 586 586 3326 632 632 3327 631 631 3328 586 586 3329 586 586 3330 631 631 3331 583 583 3332 583 583 3333 631 631 3334 580 580 3335 580 580 3336 631 631 3337 630 630 3338 580 580 3339 630 630 3340 578 578 3341 634 634 3342 586 586 3343 588 588 3344 634 634 3345 588 588 3346 636 636 3347 634 634 3348 636 636 3349 635 635 3350 636 636 3351 637 637 3352 635 635 3353 637 637 3354 636 636 3355 604 604 3356 637 637 3357 604 604 3358 603 603 3359 604 604 3360 636 636 3361 589 589 3362 589 589 3363 636 636 3364 588 588 3365 604 604 3366 589 589 3367 592 592 3368 570 570 3369 628 628 3370 638 638 3371 570 570 3372 638 638 3373 569 569 3374 638 638 3375 628 628 3376 613 613 3377 569 569 3378 638 638 3379 568 568 3380 568 568 3381 638 638 3382 567 567 3383 638 638 3384 639 639 3385 567 567 3386 639 639 3387 638 638 3388 613 613 3389 639 639 3390 613 613 3391 612 612 3392 639 639 3393 612 612 3394 611 611 3395 639 639 3396 611 611 3397 567 567 3398 640 640 3399 641 641 3400 642 642 3401 640 640 3402 642 642 3403 643 643 3404 643 643 3405 642 642 3406 644 644 3407 640 640 3408 643 643 3409 645 645 3410 644 644 3411 646 646 3412 643 643 3413 645 645 3414 643 643 3415 646 646 3416 644 644 3417 647 647 3418 646 646 3419 647 647 3420 648 648 3421 646 646 3422 648 648 3423 647 647 3424 365 365 3425 648 648 3426 365 365 3427 649 649 3428 365 365 3429 421 421 3430 649 649 3431 648 648 3432 649 649 3433 650 650 3434 648 648 3435 650 650 3436 651 651 3437 648 648 3438 651 651 3439 646 646 3440 651 651 3441 652 652 3442 646 646 3443 646 646 3444 652 652 3445 645 645 3446 645 645 3447 653 653 3448 640 640 3449 654 654 3450 650 650 3451 649 649 3452 654 654 3453 649 649 3454 655 655 3455 655 655 3456 649 649 3457 421 421 3458 655 655 3459 421 421 3460 656 656 3461 656 656 3462 421 421 3463 657 657 3464 656 656 3465 657 657 3466 658 658 3467 656 656 3468 658 658 3469 659 659 3470 656 656 3471 659 659 3472 660 660 3473 660 660 3474 659 659 3475 661 661 3476 660 660 3477 661 661 3478 662 662 3479 660 660 3480 662 662 3481 663 663 3482 660 660 3483 663 663 3484 656 656 3485 663 663 3486 655 655 3487 656 656 3488 655 655 3489 663 663 3490 654 654 3491 663 663 3492 664 664 3493 654 654 3494 664 664 3495 663 663 3496 665 665 3497 663 663 3498 666 666 3499 665 665 3500 666 666 3501 663 663 3502 662 662 3503 642 642 3504 641 641 3505 667 667 3506 642 642 3507 667 667 3508 668 668 3509 642 642 3510 668 668 3511 644 644 3512 668 668 3513 669 669 3514 644 644 3515 644 644 3516 669 669 3517 670 670 3518 644 644 3519 670 670 3520 671 671 3521 644 644 3522 671 671 3523 647 647 3524 671 671 3525 670 670 3526 411 411 3527 647 647 3528 671 671 3529 365 365 3530 411 411 3531 365 365 3532 671 671 3533 365 365 3534 411 411 3535 366 366 3536 436 436 3537 435 435 3538 661 661 3539 436 436 3540 661 661 3541 659 659 3542 436 436 3543 659 659 3544 437 437 3545 659 659 3546 658 658 3547 437 437 3548 437 437 3549 658 658 3550 438 438 3551 658 658 3552 657 657 3553 438 438 3554 438 438 3555 657 657 3556 413 413 3557 657 657 3558 421 421 3559 413 413 3560 421 421 3561 365 365 3562 364 364 3563 421 421 3564 364 364 3565 422 422 3566 413 413 3567 419 419 3568 367 367 3569 413 413 3570 367 367 3571 366 366 3572 672 672 3573 673 673 3574 674 674 3575 672 672 3576 674 674 3577 675 675 3578 672 672 3579 675 675 3580 676 676 3581 675 675 3582 674 674 3583 677 677 3584 674 674 3585 678 678 3586 677 677 3587 677 677 3588 678 678 3589 679 679 3590 677 677 3591 679 679 3592 680 680 3593 680 680 3594 679 679 3595 448 448 3596 680 680 3597 448 448 3598 681 681 3599 448 448 3600 446 446 3601 681 681 3602 681 681 3603 446 446 3604 682 682 3605 682 682 3606 446 446 3607 444 444 3608 682 682 3609 444 444 3610 683 683 3611 444 444 3612 443 443 3613 683 683 3614 683 683 3615 443 443 3616 684 684 3617 443 443 3618 442 442 3619 684 684 3620 684 684 3621 442 442 3622 441 441 3623 684 684 3624 441 441 3625 685 685 3626 685 685 3627 441 441 3628 422 422 3629 685 685 3630 422 422 3631 686 686 3632 422 422 3633 364 364 3634 686 686 3635 686 686 3636 364 364 3637 687 687 3638 686 686 3639 687 687 3640 688 688 3641 686 686 3642 688 688 3643 689 689 3644 689 689 3645 688 688 3646 690 690 3647 686 686 3648 689 689 3649 691 691 3650 686 686 3651 691 691 3652 685 685 3653 691 691 3654 692 692 3655 685 685 3656 685 685 3657 692 692 3658 684 684 3659 692 692 3660 693 693 3661 684 684 3662 684 684 3663 693 693 3664 683 683 3665 693 693 3666 694 694 3667 683 683 3668 683 683 3669 694 694 3670 682 682 3671 694 694 3672 695 695 3673 682 682 3674 682 682 3675 695 695 3676 681 681 3677 681 681 3678 695 695 3679 696 696 3680 681 681 3681 696 696 3682 680 680 3683 680 680 3684 696 696 3685 697 697 3686 680 680 3687 697 697 3688 677 677 3689 677 677 3690 697 697 3691 698 698 3692 677 677 3693 698 698 3694 675 675 3695 675 675 3696 698 698 3697 676 676 3698 676 676 3699 698 698 3700 699 699 3701 698 698 3702 700 700 3703 699 699 3704 700 700 3705 698 698 3706 697 697 3707 699 699 3708 700 700 3709 701 701 3710 697 697 3711 702 702 3712 700 700 3713 702 702 3714 697 697 3715 696 696 3716 702 702 3717 696 696 3718 703 703 3719 703 703 3720 696 696 3721 695 695 3722 703 703 3723 695 695 3724 704 704 3725 704 704 3726 695 695 3727 694 694 3728 704 704 3729 694 694 3730 705 705 3731 694 694 3732 693 693 3733 705 705 3734 705 705 3735 693 693 3736 706 706 3737 693 693 3738 692 692 3739 706 706 3740 706 706 3741 692 692 3742 707 707 3743 692 692 3744 691 691 3745 707 707 3746 707 707 3747 691 691 3748 708 708 3749 708 708 3750 691 691 3751 689 689 3752 708 708 3753 689 689 3754 709 709 3755 709 709 3756 689 689 3757 690 690 3758 709 709 3759 690 690 3760 710 710 3761 709 709 3762 710 710 3763 711 711 3764 711 711 3765 710 710 3766 503 503 3767 709 709 3768 711 711 3769 712 712 3770 709 709 3771 712 712 3772 708 708 3773 708 708 3774 712 712 3775 713 713 3776 708 708 3777 713 713 3778 707 707 3779 707 707 3780 713 713 3781 714 714 3782 707 707 3783 714 714 3784 706 706 3785 706 706 3786 714 714 3787 715 715 3788 706 706 3789 715 715 3790 705 705 3791 705 705 3792 715 715 3793 704 704 3794 715 715 3795 703 703 3796 704 704 3797 703 703 3798 715 715 3799 716 716 3800 703 703 3801 716 716 3802 702 702 3803 702 702 3804 716 716 3805 717 717 3806 702 702 3807 717 717 3808 700 700 3809 700 700 3810 717 717 3811 701 701 3812 701 701 3813 717 717 3814 718 718 3815 717 717 3816 719 719 3817 718 718 3818 719 719 3819 717 717 3820 720 720 3821 717 717 3822 716 716 3823 720 720 3824 720 720 3825 716 716 3826 715 715 3827 720 720 3828 715 715 3829 714 714 3830 720 720 3831 714 714 3832 721 721 3833 721 721 3834 714 714 3835 713 713 3836 721 721 3837 713 713 3838 722 722 3839 713 713 3840 712 712 3841 722 722 3842 722 722 3843 712 712 3844 723 723 3845 723 723 3846 712 712 3847 711 711 3848 723 723 3849 711 711 3850 724 724 3851 724 724 3852 711 711 3853 503 503 3854 724 724 3855 503 503 3856 501 501 3857 724 724 3858 501 501 3859 725 725 3860 724 724 3861 725 725 3862 723 723 3863 725 725 3864 501 501 3865 453 453 3866 723 723 3867 725 725 3868 726 726 3869 723 723 3870 726 726 3871 722 722 3872 725 725 3873 727 727 3874 726 726 3875 727 727 3876 725 725 3877 728 728 3878 728 728 3879 725 725 3880 453 453 3881 728 728 3882 453 453 3883 679 679 3884 453 453 3885 448 448 3886 679 679 3887 728 728 3888 679 679 3889 678 678 3890 728 728 3891 678 678 3892 729 729 3893 729 729 3894 678 678 3895 674 674 3896 728 728 3897 729 729 3898 730 730 3899 728 728 3900 730 730 3901 727 727 3902 730 730 3903 731 731 3904 727 727 3905 727 727 3906 731 731 3907 732 732 3908 727 727 3909 732 732 3910 726 726 3911 726 726 3912 732 732 3913 722 722 3914 732 732 3915 733 733 3916 722 722 3917 722 722 3918 733 733 3919 734 734 3920 722 722 3921 734 734 3922 721 721 3923 721 721 3924 734 734 3925 720 720 3926 720 720 3927 734 734 3928 735 735 3929 720 720 3930 735 735 3931 719 719 3932 735 735 3933 734 734 3934 733 733 3935 719 719 3936 735 735 3937 718 718 3938 735 735 3939 736 736 3940 718 718 3941 736 736 3942 735 735 3943 737 737 3944 737 737 3945 735 735 3946 733 733 3947 736 736 3948 737 737 3949 738 738 3950 737 737 3951 733 733 3952 739 739 3953 738 738 3954 737 737 3955 739 739 3956 733 733 3957 732 732 3958 739 739 3959 739 739 3960 732 732 3961 731 731 3962 739 739 3963 731 731 3964 740 740 3965 731 731 3966 730 730 3967 740 740 3968 740 740 3969 730 730 3970 729 729 3971 740 740 3972 729 729 3973 741 741 3974 741 741 3975 729 729 3976 674 674 3977 741 741 3978 674 674 3979 673 673 3980 741 741 3981 673 673 3982 742 742 3983 741 741 3984 742 742 3985 740 740 3986 742 742 3987 743 743 3988 740 740 3989 740 740 3990 743 743 3991 744 744 3992 740 740 3993 744 744 3994 739 739 3995 739 739 3996 744 744 3997 738 738 3998 745 745 3999 718 718 4000 736 736 4001 745 745 4002 736 736 4003 746 746 4004 736 736 4005 738 738 4006 746 746 4007 746 746 4008 738 738 4009 747 747 4010 738 738 4011 744 744 4012 747 747 4013 747 747 4014 744 744 4015 743 743 4016 747 747 4017 743 743 4018 748 748 4019 748 748 4020 743 743 4021 742 742 4022 748 748 4023 742 742 4024 749 749 4025 749 749 4026 742 742 4027 673 673 4028 749 749 4029 673 673 4030 750 750 4031 751 751 4032 699 699 4033 701 701 4034 699 699 4035 751 751 4036 676 676 4037 751 751 4038 752 752 4039 676 676 4040 752 752 4041 672 672 4042 676 676 4043 672 672 4044 752 752 4045 750 750 4046 672 672 4047 750 750 4048 673 673 4049 753 753 4050 754 754 4051 755 755 4052 753 753 4053 755 755 4054 756 756 4055 757 757 4056 758 758 4057 759 759 4058 757 757 4059 759 759 4060 760 760 4061 760 760 4062 759 759 4063 761 761 4064 760 760 4065 761 761 4066 762 762 4067 760 760 4068 762 762 4069 763 763 4070 763 763 4071 762 762 4072 764 764 4073 763 763 4074 764 764 4075 765 765 4076 763 763 4077 765 765 4078 766 766 4079 766 766 4080 765 765 4081 767 767 4082 765 765 4083 768 768 4084 767 767 4085 767 767 4086 768 768 4087 769 769 4088 769 769 4089 768 768 4090 770 770 4091 768 768 4092 771 771 4093 770 770 4094 772 772 4095 773 773 4096 774 774 4097 773 773 4098 772 772 4099 775 775 4100 772 772 4101 776 776 4102 775 775 4103 777 777 4104 750 750 4105 752 752 4106 777 777 4107 752 752 4108 778 778 4109 777 777 4110 778 778 4111 779 779 4112 778 778 4113 752 752 4114 780 780 4115 752 752 4116 751 751 4117 780 780 4118 780 780 4119 751 751 4120 781 781 4121 751 751 4122 701 701 4123 781 781 4124 701 701 4125 763 763 4126 781 781 4127 763 763 4128 701 701 4129 718 718 4130 781 781 4131 763 763 4132 766 766 4133 781 781 4134 766 766 4135 780 780 4136 766 766 4137 767 767 4138 780 780 4139 780 780 4140 767 767 4141 778 778 4142 767 767 4143 769 769 4144 778 778 4145 778 778 4146 769 769 4147 779 779 4148 779 779 4149 769 769 4150 782 782 4151 779 779 4152 782 782 4153 783 783 4154 782 782 4155 769 769 4156 770 770 4157 783 783 4158 782 782 4159 784 784 4160 783 783 4161 784 784 4162 785 785 4163 785 785 4164 784 784 4165 786 786 4166 785 785 4167 786 786 4168 787 787 4169 786 786 4170 784 784 4171 788 788 4172 784 784 4173 789 789 4174 788 788 4175 789 789 4176 784 784 4177 782 782 4178 789 789 4179 782 782 4180 790 790 4181 790 790 4182 782 782 4183 770 770 4184 789 789 4185 790 790 4186 791 791 4187 770 770 4188 791 791 4189 790 790 4190 791 791 4191 770 770 4192 771 771 4193 791 791 4194 771 771 4195 792 792 4196 771 771 4197 768 768 4198 792 792 4199 792 792 4200 768 768 4201 793 793 4202 768 768 4203 765 765 4204 793 793 4205 792 792 4206 793 793 4207 794 794 4208 792 792 4209 794 794 4210 791 791 4211 794 794 4212 795 795 4213 791 791 4214 791 791 4215 795 795 4216 789 789 4217 789 789 4218 795 795 4219 788 788 4220 795 795 4221 796 796 4222 788 788 4223 796 796 4224 795 795 4225 794 794 4226 796 796 4227 794 794 4228 797 797 4229 797 797 4230 794 794 4231 798 798 4232 798 798 4233 794 794 4234 793 793 4235 797 797 4236 798 798 4237 799 799 4238 798 798 4239 793 793 4240 800 800 4241 800 800 4242 793 793 4243 765 765 4244 800 800 4245 765 765 4246 764 764 4247 800 800 4248 764 764 4249 801 801 4250 764 764 4251 762 762 4252 801 801 4253 801 801 4254 762 762 4255 761 761 4256 801 801 4257 761 761 4258 802 802 4259 802 802 4260 761 761 4261 759 759 4262 802 802 4263 759 759 4264 803 803 4265 803 803 4266 759 759 4267 758 758 4268 802 802 4269 803 803 4270 804 804 4271 802 802 4272 804 804 4273 801 801 4274 804 804 4275 805 805 4276 801 801 4277 801 801 4278 805 805 4279 800 800 4280 805 805 4281 806 806 4282 800 800 4283 800 800 4284 806 806 4285 798 798 4286 798 798 4287 806 806 4288 799 799 4289 806 806 4290 807 807 4291 799 799 4292 807 807 4293 806 806 4294 808 808 4295 806 806 4296 805 805 4297 808 808 4298 808 808 4299 805 805 4300 809 809 4301 805 805 4302 804 804 4303 809 809 4304 809 809 4305 804 804 4306 810 810 4307 810 810 4308 804 804 4309 803 803 4310 809 809 4311 810 810 4312 811 811 4313 810 810 4314 803 803 4315 812 812 4316 811 811 4317 810 810 4318 813 813 4319 812 812 4320 813 813 4321 810 810 4322 811 811 4323 813 813 4324 814 814 4325 814 814 4326 813 813 4327 815 815 4328 814 814 4329 815 815 4330 816 816 4331 815 815 4332 813 813 4333 817 817 4334 813 813 4335 812 812 4336 817 817 4337 817 817 4338 812 812 4339 755 755 4340 812 812 4341 756 756 4342 755 755 4343 756 756 4344 812 812 4345 803 803 4346 756 756 4347 803 803 4348 758 758 4349 756 756 4350 758 758 4351 818 818 4352 758 758 4353 757 757 4354 818 818 4355 756 756 4356 818 818 4357 819 819 4358 756 756 4359 819 819 4360 753 753 4361 753 753 4362 819 819 4363 754 754 4364 819 819 4365 820 820 4366 754 754 4367 820 820 4368 819 819 4369 747 747 4370 819 819 4371 746 746 4372 747 747 4373 746 746 4374 819 819 4375 818 818 4376 746 746 4377 818 818 4378 745 745 4379 745 745 4380 818 818 4381 757 757 4382 745 745 4383 757 757 4384 718 718 4385 718 718 4386 757 757 4387 760 760 4388 718 718 4389 760 760 4390 763 763 4391 747 747 4392 748 748 4393 820 820 4394 820 820 4395 748 748 4396 821 821 4397 820 820 4398 821 821 4399 754 754 4400 748 748 4401 749 749 4402 821 821 4403 754 754 4404 821 821 4405 774 774 4406 821 821 4407 749 749 4408 772 772 4409 774 774 4410 821 821 4411 772 772 4412 749 749 4413 750 750 4414 772 772 4415 750 750 4416 776 776 4417 772 772 4418 776 776 4419 750 750 4420 777 777 4421 776 776 4422 777 777 4423 779 779 4424 776 776 4425 779 779 4426 783 783 4427 776 776 4428 783 783 4429 822 822 4430 822 822 4431 783 783 4432 785 785 4433 776 776 4434 822 822 4435 823 823 4436 776 776 4437 823 823 4438 775 775 4439 775 775 4440 823 823 4441 773 773 4442 823 823 4443 824 824 4444 773 773 4445 773 773 4446 824 824 4447 774 774 4448 774 774 4449 824 824 4450 825 825 4451 774 774 4452 825 825 4453 754 754 4454 825 825 4455 826 826 4456 754 754 4457 754 754 4458 826 826 4459 755 755 4460 826 826 4461 817 817 4462 755 755 4463 817 817 4464 826 826 4465 815 815 4466 826 826 4467 827 827 4468 815 815 4469 827 827 4470 826 826 4471 825 825 4472 815 815 4473 827 827 4474 816 816 4475 827 827 4476 828 828 4477 816 816 4478 828 828 4479 827 827 4480 829 829 4481 827 827 4482 830 830 4483 829 829 4484 830 830 4485 827 827 4486 825 825 4487 829 829 4488 830 830 4489 831 831 4490 825 825 4491 831 831 4492 830 830 4493 831 831 4494 825 825 4495 824 824 4496 831 831 4497 824 824 4498 832 832 4499 824 824 4500 823 823 4501 832 832 4502 832 832 4503 823 823 4504 833 833 4505 823 823 4506 822 822 4507 833 833 4508 833 833 4509 822 822 4510 785 785 4511 833 833 4512 785 785 4513 787 787 4514 833 833 4515 787 787 4516 834 834 4517 833 833 4518 834 834 4519 832 832 4520 834 834 4521 835 835 4522 832 832 4523 832 832 4524 835 835 4525 831 831 4526 835 835 4527 836 836 4528 831 831 4529 831 831 4530 836 836 4531 829 829 4532 808 808 4533 809 809 4534 811 811 4535 808 808 4536 811 811 4537 807 807 4538 807 807 4539 811 811 4540 837 837 4541 837 837 4542 811 811 4543 838 838 4544 811 811 4545 814 814 4546 838 838 4547 838 838 4548 814 814 4549 816 816 4550 838 838 4551 816 816 4552 839 839 4553 839 839 4554 816 816 4555 828 828 4556 839 839 4557 828 828 4558 840 840 4559 840 840 4560 828 828 4561 829 829 4562 840 840 4563 829 829 4564 841 841 4565 841 841 4566 829 829 4567 834 834 4568 834 834 4569 829 829 4570 836 836 4571 841 841 4572 834 834 4573 842 842 4574 836 836 4575 835 835 4576 834 834 4577 842 842 4578 834 834 4579 787 787 4580 842 842 4581 787 787 4582 843 843 4583 807 807 4584 837 837 4585 844 844 4586 807 807 4587 844 844 4588 799 799 4589 799 799 4590 844 844 4591 797 797 4592 844 844 4593 845 845 4594 797 797 4595 797 797 4596 845 845 4597 846 846 4598 797 797 4599 846 846 4600 786 786 4601 786 786 4602 846 846 4603 843 843 4604 786 786 4605 843 843 4606 787 787 4607 786 786 4608 788 788 4609 797 797 4610 788 788 4611 796 796 4612 797 797 4613 839 839 4614 840 840 4615 847 847 4616 839 839 4617 847 847 4618 848 848 4619 839 839 4620 848 848 4621 838 838 4622 848 848 4623 847 847 4624 849 849 4625 838 838 4626 848 848 4627 850 850 4628 849 849 4629 850 850 4630 848 848 4631 838 838 4632 850 850 4633 851 851 4634 838 838 4635 851 851 4636 837 837 4637 837 837 4638 851 851 4639 852 852 4640 837 837 4641 852 852 4642 844 844 4643 844 844 4644 852 852 4645 853 853 4646 844 844 4647 853 853 4648 845 845 4649 853 853 4650 852 852 4651 854 854 4652 853 853 4653 854 854 4654 855 855 4655 853 853 4656 855 855 4657 845 845 4658 845 845 4659 855 855 4660 856 856 4661 845 845 4662 856 856 4663 846 846 4664 856 856 4665 843 843 4666 846 846 4667 843 843 4668 856 856 4669 857 857 4670 857 857 4671 856 856 4672 858 858 4673 856 856 4674 855 855 4675 858 858 4676 855 855 4677 859 859 4678 858 858 4679 859 859 4680 855 855 4681 854 854 4682 859 859 4683 854 854 4684 860 860 4685 860 860 4686 854 854 4687 861 861 4688 854 854 4689 852 852 4690 861 861 4691 861 861 4692 852 852 4693 862 862 4694 862 862 4695 852 852 4696 851 851 4697 861 861 4698 862 862 4699 863 863 4700 851 851 4701 864 864 4702 862 862 4703 863 863 4704 862 862 4705 864 864 4706 851 851 4707 865 865 4708 864 864 4709 865 865 4710 851 851 4711 850 850 4712 865 865 4713 850 850 4714 866 866 4715 866 866 4716 850 850 4717 849 849 4718 865 865 4719 866 866 4720 867 867 4721 865 865 4722 867 867 4723 868 868 4724 865 865 4725 868 868 4726 864 864 4727 864 864 4728 868 868 4729 863 863 4730 863 863 4731 868 868 4732 869 869 4733 869 869 4734 868 868 4735 867 867 4736 869 869 4737 867 867 4738 870 870 4739 870 870 4740 867 867 4741 866 866 4742 870 870 4743 866 866 4744 871 871 4745 866 866 4746 872 872 4747 871 871 4748 872 872 4749 866 866 4750 849 849 4751 872 872 4752 849 849 4753 873 873 4754 873 873 4755 849 849 4756 874 874 4757 874 874 4758 849 849 4759 847 847 4760 873 873 4761 874 874 4762 875 875 4763 873 873 4764 875 875 4765 876 876 4766 873 873 4767 876 876 4768 872 872 4769 875 875 4770 877 877 4771 876 876 4772 872 872 4773 876 876 4774 878 878 4775 872 872 4776 878 878 4777 871 871 4778 878 878 4779 879 879 4780 871 871 4781 871 871 4782 879 879 4783 880 880 4784 871 871 4785 880 880 4786 881 881 4787 871 871 4788 881 881 4789 870 870 4790 870 870 4791 881 881 4792 882 882 4793 870 870 4794 882 882 4795 869 869 4796 881 881 4797 883 883 4798 882 882 4799 869 869 4800 882 882 4801 884 884 4802 883 883 4803 884 884 4804 882 882 4805 869 869 4806 884 884 4807 885 885 4808 869 869 4809 885 885 4810 863 863 4811 863 863 4812 885 885 4813 886 886 4814 863 863 4815 886 886 4816 861 861 4817 861 861 4818 886 886 4819 860 860 4820 860 860 4821 886 886 4822 887 887 4823 886 886 4824 885 885 4825 887 887 4826 887 887 4827 885 885 4828 884 884 4829 887 887 4830 884 884 4831 888 888 4832 888 888 4833 884 884 4834 883 883 4835 887 887 4836 888 888 4837 889 889 4838 887 887 4839 889 889 4840 860 860 4841 889 889 4842 890 890 4843 860 860 4844 860 860 4845 890 890 4846 859 859 4847 890 890 4848 889 889 4849 891 891 4850 859 859 4851 890 890 4852 892 892 4853 891 891 4854 892 892 4855 890 890 4856 859 859 4857 892 892 4858 858 858 4859 858 858 4860 892 892 4861 893 893 4862 858 858 4863 893 893 4864 857 857 4865 893 893 4866 892 892 4867 894 894 4868 892 892 4869 891 891 4870 894 894 4871 894 894 4872 891 891 4873 895 895 4874 891 891 4875 896 896 4876 895 895 4877 896 896 4878 891 891 4879 889 889 4880 896 896 4881 889 889 4882 897 897 4883 896 896 4884 897 897 4885 898 898 4886 896 896 4887 898 898 4888 895 895 4889 898 898 4890 897 897 4891 899 899 4892 899 899 4893 897 897 4894 900 900 4895 897 897 4896 901 901 4897 900 900 4898 901 901 4899 897 897 4900 889 889 4901 901 901 4902 889 889 4903 902 902 4904 889 889 4905 888 888 4906 902 902 4907 901 901 4908 902 902 4909 903 903 4910 901 901 4911 903 903 4912 900 900 4913 903 903 4914 904 904 4915 900 900 4916 903 903 4917 902 902 4918 905 905 4919 905 905 4920 902 902 4921 906 906 4922 905 905 4923 906 906 4924 907 907 4925 907 907 4926 906 906 4927 908 908 4928 906 906 4929 909 909 4930 908 908 4931 909 909 4932 906 906 4933 910 910 4934 910 910 4935 906 906 4936 902 902 4937 910 910 4938 902 902 4939 911 911 4940 911 911 4941 902 902 4942 888 888 4943 911 911 4944 888 888 4945 912 912 4946 888 888 4947 883 883 4948 912 912 4949 911 911 4950 912 912 4951 913 913 4952 911 911 4953 913 913 4954 910 910 4955 913 913 4956 914 914 4957 910 910 4958 910 910 4959 914 914 4960 915 915 4961 910 910 4962 915 915 4963 909 909 4964 914 914 4965 916 916 4966 915 915 4967 909 909 4968 915 915 4969 917 917 4970 909 909 4971 917 917 4972 908 908 4973 917 917 4974 918 918 4975 908 908 4976 918 918 4977 917 917 4978 919 919 4979 917 917 4980 920 920 4981 919 919 4982 919 919 4983 920 920 4984 921 921 4985 920 920 4986 917 917 4987 922 922 4988 922 922 4989 917 917 4990 915 915 4991 922 922 4992 915 915 4993 916 916 4994 922 922 4995 916 916 4996 923 923 4997 922 922 4998 923 923 4999 924 924 5000 922 922 5001 924 924 5002 920 920 5003 923 923 5004 925 925 5005 924 924 5006 924 924 5007 925 925 5008 926 926 5009 924 924 5010 926 926 5011 927 927 5012 927 927 5013 926 926 5014 928 928 5015 924 924 5016 927 927 5017 929 929 5018 928 928 5019 929 929 5020 927 927 5021 924 924 5022 929 929 5023 920 920 5024 920 920 5025 929 929 5026 921 921 5027 929 929 5028 930 930 5029 921 921 5030 930 930 5031 929 929 5032 928 928 5033 912 912 5034 931 931 5035 913 913 5036 931 931 5037 912 912 5038 932 932 5039 931 931 5040 932 932 5041 933 933 5042 933 933 5043 932 932 5044 934 934 5045 932 932 5046 935 935 5047 934 934 5048 935 935 5049 932 932 5050 936 936 5051 936 936 5052 932 932 5053 912 912 5054 936 936 5055 912 912 5056 937 937 5057 912 912 5058 883 883 5059 937 937 5060 937 937 5061 883 883 5062 881 881 5063 937 937 5064 881 881 5065 938 938 5066 881 881 5067 939 939 5068 938 938 5069 939 939 5070 881 881 5071 880 880 5072 939 939 5073 880 880 5074 940 940 5075 939 939 5076 940 940 5077 941 941 5078 939 939 5079 941 941 5080 938 938 5081 941 941 5082 942 942 5083 938 938 5084 938 938 5085 942 942 5086 943 943 5087 938 938 5088 943 943 5089 937 937 5090 943 943 5091 944 944 5092 937 937 5093 937 937 5094 944 944 5095 936 936 5096 944 944 5097 945 945 5098 936 936 5099 936 936 5100 945 945 5101 946 946 5102 936 936 5103 946 946 5104 935 935 5105 945 945 5106 947 947 5107 946 946 5108 935 935 5109 946 946 5110 948 948 5111 935 935 5112 948 948 5113 934 934 5114 948 948 5115 949 949 5116 934 934 5117 949 949 5118 948 948 5119 950 950 5120 948 948 5121 951 951 5122 950 950 5123 950 950 5124 951 951 5125 952 952 5126 951 951 5127 948 948 5128 953 953 5129 953 953 5130 948 948 5131 946 946 5132 953 953 5133 946 946 5134 947 947 5135 953 953 5136 947 947 5137 954 954 5138 953 953 5139 954 954 5140 955 955 5141 953 953 5142 955 955 5143 951 951 5144 954 954 5145 956 956 5146 955 955 5147 955 955 5148 956 956 5149 957 957 5150 955 955 5151 957 957 5152 958 958 5153 958 958 5154 957 957 5155 959 959 5156 958 958 5157 959 959 5158 960 960 5159 958 958 5160 960 960 5161 961 961 5162 958 958 5163 961 961 5164 955 955 5165 961 961 5166 951 951 5167 955 955 5168 951 951 5169 961 961 5170 952 952 5171 961 961 5172 960 960 5173 952 952 5174 942 942 5175 962 962 5176 943 943 5177 962 962 5178 942 942 5179 963 963 5180 942 942 5181 964 964 5182 963 963 5183 964 964 5184 942 942 5185 941 941 5186 963 963 5187 964 964 5188 965 965 5189 963 963 5190 965 965 5191 966 966 5192 966 966 5193 965 965 5194 967 967 5195 965 965 5196 968 968 5197 967 967 5198 967 967 5199 968 968 5200 969 969 5201 968 968 5202 970 970 5203 969 969 5204 970 970 5205 971 971 5206 969 969 5207 971 971 5208 970 970 5209 972 972 5210 970 970 5211 973 973 5212 972 972 5213 972 972 5214 973 973 5215 974 974 5216 973 973 5217 970 970 5218 975 975 5219 974 974 5220 973 973 5221 975 975 5222 970 970 5223 968 968 5224 975 975 5225 975 975 5226 968 968 5227 976 976 5228 968 968 5229 965 965 5230 976 976 5231 976 976 5232 965 965 5233 977 977 5234 965 965 5235 964 964 5236 977 977 5237 977 977 5238 964 964 5239 941 941 5240 977 977 5241 941 941 5242 978 978 5243 978 978 5244 941 941 5245 940 940 5246 977 977 5247 978 978 5248 979 979 5249 977 977 5250 979 979 5251 976 976 5252 979 979 5253 980 980 5254 976 976 5255 976 976 5256 980 980 5257 975 975 5258 980 980 5259 981 981 5260 975 975 5261 975 975 5262 981 981 5263 974 974 5264 940 940 5265 880 880 5266 982 982 5267 982 982 5268 880 880 5269 983 983 5270 880 880 5271 879 879 5272 983 983 5273 983 983 5274 879 879 5275 984 984 5276 879 879 5277 878 878 5278 984 984 5279 984 984 5280 878 878 5281 985 985 5282 878 878 5283 876 876 5284 985 985 5285 985 985 5286 876 876 5287 986 986 5288 876 876 5289 987 987 5290 986 986 5291 987 987 5292 876 876 5293 877 877 5294 987 987 5295 877 877 5296 988 988 5297 987 987 5298 988 988 5299 989 989 5300 987 987 5301 989 989 5302 986 986 5303 989 989 5304 990 990 5305 986 986 5306 990 990 5307 989 989 5308 991 991 5309 990 990 5310 991 991 5311 992 992 5312 992 992 5313 991 991 5314 993 993 5315 991 991 5316 994 994 5317 993 993 5318 994 994 5319 995 995 5320 993 993 5321 993 993 5322 995 995 5323 996 996 5324 996 996 5325 995 995 5326 997 997 5327 995 995 5328 998 998 5329 997 997 5330 998 998 5331 995 995 5332 994 994 5333 998 998 5334 994 994 5335 999 999 5336 999 999 5337 994 994 5338 1000 1000 5339 994 994 5340 991 991 5341 1000 1000 5342 1000 1000 5343 991 991 5344 1001 1001 5345 991 991 5346 989 989 5347 1001 1001 5348 1001 1001 5349 989 989 5350 988 988 5351 1002 1002 5352 1003 1003 5353 1004 1004 5354 1003 1003 5355 1002 1002 5356 1005 1005 5357 1003 1003 5358 1005 1005 5359 1006 1006 5360 1005 1005 5361 1002 1002 5362 1007 1007 5363 1002 1002 5364 1008 1008 5365 1007 1007 5366 1007 1007 5367 1008 1008 5368 1009 1009 5369 1007 1007 5370 1009 1009 5371 1010 1010 5372 1007 1007 5373 1010 1010 5374 1011 1011 5375 1007 1007 5376 1011 1011 5377 1005 1005 5378 1011 1011 5379 1012 1012 5380 1005 1005 5381 1005 1005 5382 1012 1012 5383 1006 1006 5384 1006 1006 5385 1012 1012 5386 1013 1013 5387 1006 1006 5388 1013 1013 5389 1014 1014 5390 1014 1014 5391 1013 1013 5392 1015 1015 5393 1015 1015 5394 1013 1013 5395 1016 1016 5396 1015 1015 5397 1016 1016 5398 1017 1017 5399 1015 1015 5400 1017 1017 5401 1018 1018 5402 1017 1017 5403 1016 1016 5404 1019 1019 5405 1016 1016 5406 1020 1020 5407 1019 1019 5408 1020 1020 5409 1016 1016 5410 1013 1013 5411 1020 1020 5412 1013 1013 5413 1021 1021 5414 1020 1020 5415 1021 1021 5416 1019 1019 5417 1021 1021 5418 1022 1022 5419 1019 1019 5420 1022 1022 5421 1021 1021 5422 1023 1023 5423 1021 1021 5424 1024 1024 5425 1023 1023 5426 1024 1024 5427 1021 1021 5428 1013 1013 5429 1024 1024 5430 1013 1013 5431 1012 1012 5432 1024 1024 5433 1012 1012 5434 1011 1011 5435 1024 1024 5436 1011 1011 5437 1025 1025 5438 1025 1025 5439 1011 1011 5440 1010 1010 5441 1025 1025 5442 1010 1010 5443 1026 1026 5444 1026 1026 5445 1010 1010 5446 1009 1009 5447 1026 1026 5448 1009 1009 5449 1027 1027 5450 1026 1026 5451 1027 1027 5452 1028 1028 5453 1027 1027 5454 1029 1029 5455 1028 1028 5456 1026 1026 5457 1028 1028 5458 1030 1030 5459 1026 1026 5460 1030 1030 5461 1025 1025 5462 1025 1025 5463 1030 1030 5464 1031 1031 5465 1025 1025 5466 1031 1031 5467 1024 1024 5468 1024 1024 5469 1031 1031 5470 1023 1023 5471 1023 1023 5472 1031 1031 5473 1032 1032 5474 1032 1032 5475 1031 1031 5476 1030 1030 5477 1023 1023 5478 1032 1032 5479 1033 1033 5480 1023 1023 5481 1033 1033 5482 1022 1022 5483 1033 1033 5484 1034 1034 5485 1022 1022 5486 1034 1034 5487 1033 1033 5488 1035 1035 5489 1033 1033 5490 1036 1036 5491 1035 1035 5492 1035 1035 5493 1036 1036 5494 1037 1037 5495 1036 1036 5496 1033 1033 5497 1038 1038 5498 1033 1033 5499 1032 1032 5500 1038 1038 5501 1038 1038 5502 1032 1032 5503 1039 1039 5504 1032 1032 5505 1030 1030 5506 1039 1039 5507 1039 1039 5508 1030 1030 5509 1028 1028 5510 1039 1039 5511 1028 1028 5512 1040 1040 5513 1039 1039 5514 1040 1040 5515 1038 1038 5516 1028 1028 5517 1041 1041 5518 1040 1040 5519 1041 1041 5520 1028 1028 5521 1029 1029 5522 1041 1041 5523 1029 1029 5524 1042 1042 5525 1041 1041 5526 1042 1042 5527 1043 1043 5528 1042 1042 5529 1044 1044 5530 1043 1043 5531 1041 1041 5532 1043 1043 5533 1045 1045 5534 1041 1041 5535 1045 1045 5536 1040 1040 5537 1040 1040 5538 1045 1045 5539 1046 1046 5540 1040 1040 5541 1046 1046 5542 1038 1038 5543 1038 1038 5544 1046 1046 5545 1047 1047 5546 1038 1038 5547 1047 1047 5548 1048 1048 5549 1038 1038 5550 1048 1048 5551 1036 1036 5552 1036 1036 5553 1048 1048 5554 1037 1037 5555 1037 1037 5556 1048 1048 5557 1049 1049 5558 1048 1048 5559 1047 1047 5560 1049 1049 5561 1049 1049 5562 1047 1047 5563 1050 1050 5564 1047 1047 5565 1051 1051 5566 1050 1050 5567 1050 1050 5568 1051 1051 5569 1052 1052 5570 1051 1051 5571 1047 1047 5572 1053 1053 5573 1047 1047 5574 1046 1046 5575 1053 1053 5576 1053 1053 5577 1046 1046 5578 1045 1045 5579 1053 1053 5580 1045 1045 5581 1054 1054 5582 1045 1045 5583 1055 1055 5584 1054 1054 5585 1055 1055 5586 1045 1045 5587 1043 1043 5588 1055 1055 5589 1043 1043 5590 1056 1056 5591 1056 1056 5592 1043 1043 5593 1044 1044 5594 1056 1056 5595 1044 1044 5596 1057 1057 5597 1056 1056 5598 1057 1057 5599 1058 1058 5600 1056 1056 5601 1058 1058 5602 1055 1055 5603 1057 1057 5604 1059 1059 5605 1058 1058 5606 1058 1058 5607 1059 1059 5608 1004 1004 5609 1058 1058 5610 1004 1004 5611 1003 1003 5612 1058 1058 5613 1003 1003 5614 1006 1006 5615 1058 1058 5616 1006 1006 5617 1060 1060 5618 1058 1058 5619 1060 1060 5620 1055 1055 5621 1055 1055 5622 1060 1060 5623 1054 1054 5624 1060 1060 5625 1061 1061 5626 1054 1054 5627 1054 1054 5628 1061 1061 5629 1062 1062 5630 1054 1054 5631 1062 1062 5632 1053 1053 5633 1062 1062 5634 1051 1051 5635 1053 1053 5636 1051 1051 5637 1062 1062 5638 1052 1052 5639 1052 1052 5640 1062 1062 5641 1063 1063 5642 1052 1052 5643 1063 1063 5644 1064 1064 5645 1063 1063 5646 1062 1062 5647 1061 1061 5648 1063 1063 5649 1061 1061 5650 1014 1014 5651 1014 1014 5652 1061 1061 5653 1060 1060 5654 1014 1014 5655 1060 1060 5656 1006 1006 5657 1014 1014 5658 1015 1015 5659 1063 1063 5660 1063 1063 5661 1015 1015 5662 1064 1064 5663 1015 1015 5664 1018 1018 5665 1064 1064 5666 1065 1065 5667 1066 1066 5668 1067 1067 5669 1065 1065 5670 1067 1067 5671 1068 1068 5672 1068 1068 5673 1067 1067 5674 1069 1069 5675 1065 1065 5676 1068 1068 5677 1070 1070 5678 1065 1065 5679 1070 1070 5680 1071 1071 5681 1071 1071 5682 1070 1070 5683 1018 1018 5684 1070 1070 5685 1064 1064 5686 1018 1018 5687 1064 1064 5688 1070 1070 5689 1052 1052 5690 1070 1070 5691 1072 1072 5692 1052 1052 5693 1072 1072 5694 1070 1070 5695 1068 1068 5696 1052 1052 5697 1072 1072 5698 1050 1050 5699 1068 1068 5700 1073 1073 5701 1072 1072 5702 1073 1073 5703 1068 1068 5704 1074 1074 5705 1074 1074 5706 1068 1068 5707 1069 1069 5708 1074 1074 5709 1069 1069 5710 1075 1075 5711 1074 1074 5712 1075 1075 5713 1076 1076 5714 1074 1074 5715 1076 1076 5716 1073 1073 5717 1076 1076 5718 1075 1075 5719 1077 1077 5720 1076 1076 5721 1077 1077 5722 1078 1078 5723 1078 1078 5724 1077 1077 5725 1079 1079 5726 1076 1076 5727 1078 1078 5728 1080 1080 5729 1076 1076 5730 1080 1080 5731 1081 1081 5732 1076 1076 5733 1081 1081 5734 1073 1073 5735 1073 1073 5736 1081 1081 5737 1082 1082 5738 1082 1082 5739 1081 1081 5740 1080 1080 5741 1073 1073 5742 1082 1082 5743 1083 1083 5744 1073 1073 5745 1083 1083 5746 1072 1072 5747 1083 1083 5748 1084 1084 5749 1072 1072 5750 1072 1072 5751 1084 1084 5752 1050 1050 5753 1050 1050 5754 1084 1084 5755 1085 1085 5756 1050 1050 5757 1085 1085 5758 1049 1049 5759 1049 1049 5760 1085 1085 5761 1037 1037 5762 1085 1085 5763 1086 1086 5764 1037 1037 5765 1037 1037 5766 1086 1086 5767 1035 1035 5768 1086 1086 5769 1085 1085 5770 1087 1087 5771 1085 1085 5772 1088 1088 5773 1087 1087 5774 1088 1088 5775 1085 1085 5776 1084 1084 5777 1088 1088 5778 1084 1084 5779 1083 1083 5780 1088 1088 5781 1083 1083 5782 1089 1089 5783 1083 1083 5784 1082 1082 5785 1089 1089 5786 1089 1089 5787 1082 1082 5788 1090 1090 5789 1082 1082 5790 1091 1091 5791 1090 1090 5792 1091 1091 5793 1082 1082 5794 1080 1080 5795 1091 1091 5796 1080 1080 5797 1092 1092 5798 1080 1080 5799 1093 1093 5800 1092 1092 5801 1093 1093 5802 1080 1080 5803 1078 1078 5804 1092 1092 5805 1093 1093 5806 1094 1094 5807 1078 1078 5808 1094 1094 5809 1093 1093 5810 1094 1094 5811 1078 1078 5812 1079 1079 5813 1094 1094 5814 1079 1079 5815 1095 1095 5816 1079 1079 5817 1096 1096 5818 1095 1095 5819 1094 1094 5820 1095 1095 5821 1092 1092 5822 1092 1092 5823 1095 1095 5824 1091 1091 5825 1095 1095 5826 1090 1090 5827 1091 1091 5828 1090 1090 5829 1095 1095 5830 1096 1096 5831 1090 1090 5832 1096 1096 5833 1097 1097 5834 1090 1090 5835 1097 1097 5836 1089 1089 5837 1097 1097 5838 1098 1098 5839 1089 1089 5840 1089 1089 5841 1098 1098 5842 1088 1088 5843 1098 1098 5844 1099 1099 5845 1088 1088 5846 1088 1088 5847 1099 1099 5848 1100 1100 5849 1088 1088 5850 1100 1100 5851 1087 1087 5852 1100 1100 5853 1101 1101 5854 1087 1087 5855 1087 1087 5856 1101 1101 5857 1102 1102 5858 1101 1101 5859 1103 1103 5860 1102 1102 5861 1087 1087 5862 1102 1102 5863 1104 1104 5864 1087 1087 5865 1104 1104 5866 1086 1086 5867 1086 1086 5868 1104 1104 5869 1035 1035 5870 1035 1035 5871 1104 1104 5872 1105 1105 5873 1035 1035 5874 1105 1105 5875 1034 1034 5876 1105 1105 5877 1104 1104 5878 1102 1102 5879 1105 1105 5880 1102 1102 5881 1106 1106 5882 1106 1106 5883 1102 1102 5884 1103 1103 5885 1106 1106 5886 1103 1103 5887 1107 1107 5888 1106 1106 5889 1107 1107 5890 1108 1108 5891 1106 1106 5892 1108 1108 5893 1105 1105 5894 1107 1107 5895 1109 1109 5896 1108 1108 5897 1108 1108 5898 1109 1109 5899 1110 1110 5900 1108 1108 5901 1110 1110 5902 1111 1111 5903 1111 1111 5904 1110 1110 5905 1112 1112 5906 1108 1108 5907 1111 1111 5908 1113 1113 5909 1108 1108 5910 1113 1113 5911 1105 1105 5912 1105 1105 5913 1113 1113 5914 1034 1034 5915 1113 1113 5916 1022 1022 5917 1034 1034 5918 1022 1022 5919 1113 1113 5920 1019 1019 5921 1113 1113 5922 1114 1114 5923 1019 1019 5924 1114 1114 5925 1113 1113 5926 1111 1111 5927 1019 1019 5928 1114 1114 5929 1017 1017 5930 1114 1114 5931 1111 1111 5932 1115 1115 5933 1115 1115 5934 1111 1111 5935 1112 1112 5936 1115 1115 5937 1112 1112 5938 1116 1116 5939 1115 1115 5940 1116 1116 5941 1066 1066 5942 1115 1115 5943 1066 1066 5944 1065 1065 5945 1115 1115 5946 1065 1065 5947 1117 1117 5948 1115 1115 5949 1117 1117 5950 1114 1114 5951 1114 1114 5952 1117 1117 5953 1017 1017 5954 1017 1017 5955 1117 1117 5956 1018 1018 5957 1117 1117 5958 1071 1071 5959 1018 1018 5960 1071 1071 5961 1117 1117 5962 1065 1065 5963 1096 1096 5964 1079 1079 5965 1077 1077 5966 1096 1096 5967 1077 1077 5968 1097 1097 5969 1097 1097 5970 1077 1077 5971 1075 1075 5972 1097 1097 5973 1075 1075 5974 1098 1098 5975 1098 1098 5976 1075 1075 5977 1069 1069 5978 1098 1098 5979 1069 1069 5980 1099 1099 5981 1099 1099 5982 1069 1069 5983 1067 1067 5984 1099 1099 5985 1067 1067 5986 1100 1100 5987 1100 1100 5988 1067 1067 5989 1101 1101 5990 1067 1067 5991 1066 1066 5992 1101 1101 5993 1101 1101 5994 1066 1066 5995 1103 1103 5996 1066 1066 5997 1116 1116 5998 1103 1103 5999 1103 1103 6000 1116 1116 6001 1107 1107 6002 1116 1116 6003 1112 1112 6004 1107 1107 6005 1107 1107 6006 1112 1112 6007 1109 1109 6008 1112 1112 6009 1110 1110 6010 1109 1109 6011 499 499 6012 497 497 6013 1118 1118 6014 499 499 6015 1118 1118 6016 1119 1119 6017 499 499 6018 1119 1119 6019 500 500 6020 1119 1119 6021 1118 1118 6022 1120 1120 6023 1119 1119 6024 1120 1120 6025 1121 1121 6026 1119 1119 6027 1121 1121 6028 1122 1122 6029 1119 1119 6030 1122 1122 6031 1123 1123 6032 1119 1119 6033 1123 1123 6034 500 500 6035 500 500 6036 1123 1123 6037 360 360 6038 1123 1123 6039 510 510 6040 360 360 6041 510 510 6042 1123 1123 6043 520 520 6044 1123 1123 6045 1122 1122 6046 520 520 6047 496 496 6048 493 493 6049 1124 1124 6050 496 496 6051 1124 1124 6052 1125 1125 6053 1125 1125 6054 1124 1124 6055 1126 1126 6056 1125 1125 6057 1126 1126 6058 1127 1127 6059 493 493 6060 495 495 6061 1128 1128 6062 493 493 6063 1128 1128 6064 1124 1124 6065 1124 1124 6066 1128 1128 6067 1129 1129 6068 1124 1124 6069 1129 1129 6070 1126 1126 6071 497 497 6072 496 496 6073 1125 1125 6074 497 497 6075 1125 1125 6076 1118 1118 6077 1118 1118 6078 1125 1125 6079 1127 1127 6080 1118 1118 6081 1127 1127 6082 1120 1120 6083 492 492 6084 489 489 6085 1130 1130 6086 492 492 6087 1130 1130 6088 1131 1131 6089 1131 1131 6090 1130 1130 6091 1132 1132 6092 1131 1131 6093 1132 1132 6094 1133 1133 6095 1134 1134 6096 1135 1135 6097 1136 1136 6098 1134 1134 6099 1136 1136 6100 1137 1137 6101 1134 1134 6102 1137 1137 6103 1138 1138 6104 1137 1137 6105 1136 1136 6106 1139 1139 6107 1138 1138 6108 1137 1137 6109 1140 1140 6110 1140 1140 6111 1137 1137 6112 1141 1141 6113 1137 1137 6114 1142 1142 6115 1141 1141 6116 1142 1142 6117 1137 1137 6118 1139 1139 6119 1142 1142 6120 1139 1139 6121 1143 1143 6122 1142 1142 6123 1143 1143 6124 1144 1144 6125 1142 1142 6126 1144 1144 6127 1145 1145 6128 1142 1142 6129 1145 1145 6130 1141 1141 6131 1146 1146 6132 1147 1147 6133 1148 1148 6134 1146 1146 6135 1148 1148 6136 1149 1149 6137 1146 1146 6138 1149 1149 6139 1150 1150 6140 1149 1149 6141 1151 1151 6142 1150 1150 6143 1152 1152 6144 1153 1153 6145 1147 1147 6146 1152 1152 6147 1147 1147 6148 1146 1146 6149 1152 1152 6150 1146 1146 6151 1154 1154 6152 1146 1146 6153 1150 1150 6154 1154 1154 6155 1149 1149 6156 1148 1148 6157 1135 1135 6158 1149 1149 6159 1135 1135 6160 1134 1134 6161 1149 1149 6162 1134 1134 6163 1151 1151 6164 1134 1134 6165 1138 1138 6166 1151 1151 6167 1155 1155 6168 1156 1156 6169 1157 1157 6170 1155 1155 6171 1157 1157 6172 1158 1158 6173 1155 1155 6174 1158 1158 6175 1159 1159 6176 1158 1158 6177 1160 1160 6178 1159 1159 6179 1161 1161 6180 1162 1162 6181 1163 1163 6182 1161 1161 6183 1163 1163 6184 1164 1164 6185 1161 1161 6186 1164 1164 6187 1165 1165 6188 1161 1161 6189 1165 1165 6190 1166 1166 6191 1163 1163 6192 1162 1162 6193 1167 1167 6194 1163 1163 6195 1167 1167 6196 1168 1168 6197 1163 1163 6198 1168 1168 6199 1169 1169 6200 1163 1163 6201 1169 1169 6202 1164 1164 6203 1164 1164 6204 1169 1169 6205 1165 1165 6206 1169 1169 6207 1170 1170 6208 1165 1165 6209 1166 1166 6210 1165 1165 6211 1170 1170 6212 1166 1166 6213 1170 1170 6214 1171 1171 6215 1166 1166 6216 1171 1171 6217 1172 1172 6218 1166 1166 6219 1172 1172 6220 1161 1161 6221 1161 1161 6222 1172 1172 6223 1162 1162 6224 1172 1172 6225 1167 1167 6226 1162 1162 6227 1173 1173 6228 1174 1174 6229 1175 1175 6230 1173 1173 6231 1175 1175 6232 1176 1176 6233 1173 1173 6234 1176 1176 6235 1177 1177 6236 1173 1173 6237 1177 1177 6238 1178 1178 6239 1179 1179 6240 1178 1178 6241 1177 1177 6242 1179 1179 6243 1177 1177 6244 1180 1180 6245 1179 1179 6246 1180 1180 6247 1181 1181 6248 1179 1179 6249 1181 1181 6250 1182 1182 6251 1183 1183 6252 1184 1184 6253 1185 1185 6254 1183 1183 6255 1185 1185 6256 1186 1186 6257 1183 1183 6258 1186 1186 6259 1175 1175 6260 1183 1183 6261 1175 1175 6262 1174 1174 6263 1185 1185 6264 1184 1184 6265 1187 1187 6266 1185 1185 6267 1187 1187 6268 1188 1188 6269 1188 1188 6270 1187 1187 6271 1181 1181 6272 1187 1187 6273 1182 1182 6274 1181 1181 6275 1004 1004 6276 1189 1189 6277 1002 1002 6278 1189 1189 6279 1190 1190 6280 1002 1002 6281 1190 1190 6282 1189 1189 6283 1191 1191 6284 1002 1002 6285 1190 1190 6286 1192 1192 6287 1002 1002 6288 1192 1192 6289 1008 1008 6290 1008 1008 6291 1192 1192 6292 1009 1009 6293 1192 1192 6294 1193 1193 6295 1009 1009 6296 1009 1009 6297 1193 1193 6298 1194 1194 6299 1009 1009 6300 1194 1194 6301 1027 1027 6302 1027 1027 6303 1194 1194 6304 1029 1029 6305 1194 1194 6306 1195 1195 6307 1029 1029 6308 1029 1029 6309 1195 1195 6310 1042 1042 6311 1195 1195 6312 1196 1196 6313 1042 1042 6314 1042 1042 6315 1196 1196 6316 1044 1044 6317 1196 1196 6318 1197 1197 6319 1044 1044 6320 1044 1044 6321 1197 1197 6322 1057 1057 6323 1197 1197 6324 1198 1198 6325 1057 1057 6326 1057 1057 6327 1198 1198 6328 1199 1199 6329 1057 1057 6330 1199 1199 6331 1059 1059 6332 1059 1059 6333 1199 1199 6334 1004 1004 6335 1199 1199 6336 1189 1189 6337 1004 1004 6338 1189 1189 6339 1199 1199 6340 1191 1191 6341 1199 1199 6342 1200 1200 6343 1191 1191 6344 1191 1191 6345 1200 1200 6346 1201 1201 6347 1200 1200 6348 1202 1202 6349 1201 1201 6350 1201 1201 6351 1202 1202 6352 1203 1203 6353 1202 1202 6354 1200 1200 6355 1204 1204 6356 1204 1204 6357 1200 1200 6358 1205 1205 6359 1204 1204 6360 1205 1205 6361 1206 1206 6362 1204 1204 6363 1206 1206 6364 1207 1207 6365 1207 1207 6366 1206 1206 6367 1208 1208 6368 1204 1204 6369 1207 1207 6370 1209 1209 6371 1204 1204 6372 1209 1209 6373 1210 1210 6374 1204 1204 6375 1210 1210 6376 1202 1202 6377 1209 1209 6378 1211 1211 6379 1210 1210 6380 1211 1211 6381 1209 1209 6382 1212 1212 6383 1212 1212 6384 1209 1209 6385 1207 1207 6386 1211 1211 6387 1212 1212 6388 1213 1213 6389 1212 1212 6390 1207 1207 6391 1214 1214 6392 1213 1213 6393 1212 1212 6394 1214 1214 6395 1207 1207 6396 1215 1215 6397 1214 1214 6398 1215 1215 6399 1207 1207 6400 1208 1208 6401 1215 1215 6402 1208 1208 6403 1216 1216 6404 1208 1208 6405 1217 1217 6406 1216 1216 6407 1217 1217 6408 1208 1208 6409 1196 1196 6410 1217 1217 6411 1196 1196 6412 1195 1195 6413 1217 1217 6414 1195 1195 6415 1218 1218 6416 1195 1195 6417 1194 1194 6418 1218 1218 6419 1217 1217 6420 1218 1218 6421 1219 1219 6422 1217 1217 6423 1219 1219 6424 1216 1216 6425 1216 1216 6426 1219 1219 6427 1220 1220 6428 1216 1216 6429 1220 1220 6430 1221 1221 6431 1216 1216 6432 1221 1221 6433 1215 1215 6434 1221 1221 6435 1222 1222 6436 1215 1215 6437 1215 1215 6438 1222 1222 6439 1223 1223 6440 1222 1222 6441 1224 1224 6442 1223 1223 6443 1224 1224 6444 1222 1222 6445 1225 1225 6446 1224 1224 6447 1225 1225 6448 1226 1226 6449 1225 1225 6450 1222 1222 6451 1227 1227 6452 1222 1222 6453 1221 1221 6454 1227 1227 6455 1227 1227 6456 1221 1221 6457 1228 1228 6458 1221 1221 6459 1220 1220 6460 1228 1228 6461 1228 1228 6462 1220 1220 6463 1229 1229 6464 1220 1220 6465 1230 1230 6466 1229 1229 6467 1230 1230 6468 1220 1220 6469 1219 1219 6470 1229 1229 6471 1230 1230 6472 1231 1231 6473 1219 1219 6474 1232 1232 6475 1230 1230 6476 1232 1232 6477 1219 1219 6478 1218 1218 6479 1232 1232 6480 1218 1218 6481 1233 1233 6482 1233 1233 6483 1218 1218 6484 1194 1194 6485 1233 1233 6486 1194 1194 6487 1193 1193 6488 1233 1233 6489 1193 1193 6490 1192 1192 6491 1233 1233 6492 1192 1192 6493 1234 1234 6494 1233 1233 6495 1234 1234 6496 1235 1235 6497 1233 1233 6498 1235 1235 6499 1232 1232 6500 1232 1232 6501 1235 1235 6502 1230 1230 6503 1230 1230 6504 1235 1235 6505 1236 1236 6506 1236 1236 6507 1235 1235 6508 1234 1234 6509 1230 1230 6510 1236 1236 6511 1237 1237 6512 1230 1230 6513 1237 1237 6514 1231 1231 6515 1231 1231 6516 1237 1237 6517 1238 1238 6518 1237 1237 6519 1203 1203 6520 1238 1238 6521 1203 1203 6522 1237 1237 6523 1236 1236 6524 1203 1203 6525 1236 1236 6526 1201 1201 6527 1201 1201 6528 1236 1236 6529 1191 1191 6530 1236 1236 6531 1239 1239 6532 1191 1191 6533 1239 1239 6534 1236 1236 6535 1234 1234 6536 1239 1239 6537 1234 1234 6538 1192 1192 6539 1239 1239 6540 1192 1192 6541 1190 1190 6542 1239 1239 6543 1190 1190 6544 1191 1191 6545 1240 1240 6546 1241 1241 6547 1200 1200 6548 1240 1240 6549 1200 1200 6550 1199 1199 6551 1242 1242 6552 1241 1241 6553 1240 1240 6554 1242 1242 6555 1240 1240 6556 1243 1243 6557 1242 1242 6558 1243 1243 6559 1244 1244 6560 1242 1242 6561 1244 1244 6562 1245 1245 6563 1245 1245 6564 1244 1244 6565 1246 1246 6566 1245 1245 6567 1246 1246 6568 1247 1247 6569 1247 1247 6570 1246 1246 6571 1248 1248 6572 1247 1247 6573 1248 1248 6574 1249 1249 6575 1208 1208 6576 1249 1249 6577 1248 1248 6578 1208 1208 6579 1248 1248 6580 1196 1196 6581 1205 1205 6582 1200 1200 6583 1241 1241 6584 1205 1205 6585 1241 1241 6586 1242 1242 6587 1205 1205 6588 1242 1242 6589 1245 1245 6590 1205 1205 6591 1245 1245 6592 1206 1206 6593 1245 1245 6594 1247 1247 6595 1206 1206 6596 1206 1206 6597 1247 1247 6598 1249 1249 6599 1206 1206 6600 1249 1249 6601 1208 1208 6602 1243 1243 6603 1240 1240 6604 1199 1199 6605 1243 1243 6606 1199 1199 6607 1198 1198 6608 1243 1243 6609 1198 1198 6610 1244 1244 6611 1244 1244 6612 1198 1198 6613 1197 1197 6614 1244 1244 6615 1197 1197 6616 1246 1246 6617 1246 1246 6618 1197 1197 6619 1248 1248 6620 1197 1197 6621 1196 1196 6622 1248 1248 6623 1223 1223 6624 1214 1214 6625 1215 1215 6626 1214 1214 6627 1223 1223 6628 1250 1250 6629 1214 1214 6630 1250 1250 6631 1213 1213 6632 1213 1213 6633 1250 1250 6634 1211 1211 6635 1250 1250 6636 1251 1251 6637 1211 1211 6638 1211 1211 6639 1251 1251 6640 1210 1210 6641 1251 1251 6642 1252 1252 6643 1210 1210 6644 1252 1252 6645 1202 1202 6646 1210 1210 6647 1253 1253 6648 1254 1254 6649 1255 1255 6650 1253 1253 6651 1255 1255 6652 1256 1256 6653 1253 1253 6654 1256 1256 6655 1252 1252 6656 1256 1256 6657 1255 1255 6658 1238 1238 6659 1252 1252 6660 1256 1256 6661 1202 1202 6662 1238 1238 6663 1203 1203 6664 1256 1256 6665 1202 1202 6666 1256 1256 6667 1203 1203 6668 1257 1257 6669 1258 1258 6670 1259 1259 6671 1258 1258 6672 1260 1260 6673 1259 1259 6674 1259 1259 6675 1260 1260 6676 1261 1261 6677 1260 1260 6678 1262 1262 6679 1261 1261 6680 1262 1262 6681 1260 1260 6682 1263 1263 6683 1260 1260 6684 1258 1258 6685 1263 1263 6686 1258 1258 6687 1264 1264 6688 1263 1263 6689 1263 1263 6690 1264 1264 6691 1265 1265 6692 1263 1263 6693 1265 1265 6694 1266 1266 6695 1266 1266 6696 1265 1265 6697 1267 1267 6698 1265 1265 6699 1268 1268 6700 1267 1267 6701 1267 1267 6702 1268 1268 6703 1269 1269 6704 1267 1267 6705 1269 1269 6706 1270 1270 6707 1270 1270 6708 1269 1269 6709 1271 1271 6710 1267 1267 6711 1270 1270 6712 1272 1272 6713 1267 1267 6714 1272 1272 6715 1273 1273 6716 1267 1267 6717 1273 1273 6718 1266 1266 6719 1266 1266 6720 1273 1273 6721 1263 1263 6722 1273 1273 6723 1274 1274 6724 1263 1263 6725 1263 1263 6726 1274 1274 6727 1262 1262 6728 1270 1270 6729 1275 1275 6730 1272 1272 6731 1275 1275 6732 1270 1270 6733 1276 1276 6734 1276 1276 6735 1270 1270 6736 1271 1271 6737 1275 1275 6738 1276 1276 6739 1277 1277 6740 1276 1276 6741 1271 1271 6742 1278 1278 6743 1277 1277 6744 1276 1276 6745 1278 1278 6746 1271 1271 6747 1279 1279 6748 1278 1278 6749 1279 1279 6750 1280 1280 6751 1278 1278 6752 1280 1280 6753 1279 1279 6754 1281 1281 6755 1278 1278 6756 1280 1280 6757 1282 1282 6758 1278 1278 6759 1282 1282 6760 1277 1277 6761 1280 1280 6762 1283 1283 6763 1282 1282 6764 1283 1283 6765 1280 1280 6766 1284 1284 6767 1284 1284 6768 1280 1280 6769 1281 1281 6770 1283 1283 6771 1284 1284 6772 1285 1285 6773 1284 1284 6774 1286 1286 6775 1285 1285 6776 1286 1286 6777 1284 1284 6778 1287 1287 6779 1287 1287 6780 1284 1284 6781 1281 1281 6782 1287 1287 6783 1281 1281 6784 1288 1288 6785 1287 1287 6786 1288 1288 6787 1257 1257 6788 1287 1287 6789 1257 1257 6790 1259 1259 6791 1287 1287 6792 1259 1259 6793 1289 1289 6794 1287 1287 6795 1289 1289 6796 1286 1286 6797 1259 1259 6798 1261 1261 6799 1289 1289 6800 1290 1290 6801 1291 1291 6802 1292 1292 6803 1290 1290 6804 1292 1292 6805 1293 1293 6806 1290 1290 6807 1293 1293 6808 1294 1294 6809 1293 1293 6810 1292 1292 6811 1295 1295 6812 1294 1294 6813 1293 1293 6814 1296 1296 6815 1296 1296 6816 1293 1293 6817 1297 1297 6818 1293 1293 6819 1298 1298 6820 1297 1297 6821 1298 1298 6822 1293 1293 6823 1295 1295 6824 1297 1297 6825 1298 1298 6826 1299 1299 6827 1298 1298 6828 1295 1295 6829 1300 1300 6830 1299 1299 6831 1298 1298 6832 1300 1300 6833 1295 1295 6834 1301 1301 6835 1300 1300 6836 1300 1300 6837 1301 1301 6838 1302 1302 6839 1301 1301 6840 1303 1303 6841 1302 1302 6842 1300 1300 6843 1302 1302 6844 1304 1304 6845 1300 1300 6846 1304 1304 6847 1299 1299 6848 1304 1304 6849 1302 1302 6850 1305 1305 6851 1302 1302 6852 1306 1306 6853 1305 1305 6854 1306 1306 6855 1302 1302 6856 1303 1303 6857 1306 1306 6858 1303 1303 6859 1307 1307 6860 1306 1306 6861 1307 1307 6862 1308 1308 6863 1306 1306 6864 1308 1308 6865 1309 1309 6866 1306 1306 6867 1309 1309 6868 1305 1305 6869 1309 1309 6870 1310 1310 6871 1305 1305 6872 1310 1310 6873 1309 1309 6874 1311 1311 6875 1310 1310 6876 1311 1311 6877 1312 1312 6878 1311 1311 6879 1309 1309 6880 1313 1313 6881 1309 1309 6882 1308 1308 6883 1313 1313 6884 1311 1311 6885 1313 1313 6886 1314 1314 6887 1311 1311 6888 1314 1314 6889 1315 1315 6890 1311 1311 6891 1315 1315 6892 1312 1312 6893 1315 1315 6894 1316 1316 6895 1312 1312 6896 1316 1316 6897 1315 1315 6898 1317 1317 6899 1315 1315 6900 1318 1318 6901 1317 1317 6902 1317 1317 6903 1318 1318 6904 1319 1319 6905 1318 1318 6906 1315 1315 6907 1320 1320 6908 1315 1315 6909 1314 1314 6910 1320 1320 6911 1318 1318 6912 1320 1320 6913 1321 1321 6914 1318 1318 6915 1321 1321 6916 1319 1319 6917 1321 1321 6918 1322 1322 6919 1319 1319 6920 1322 1322 6921 1321 1321 6922 1323 1323 6923 1322 1322 6924 1323 1323 6925 1324 1324 6926 1323 1323 6927 1290 1290 6928 1324 1324 6929 1324 1324 6930 1290 1290 6931 1294 1294 6932 1290 1290 6933 1323 1323 6934 1291 1291 6935 1323 1323 6936 1325 1325 6937 1291 1291 6938 1325 1325 6939 1323 1323 6940 1321 1321 6941 1325 1325 6942 1321 1321 6943 1326 1326 6944 1326 1326 6945 1321 1321 6946 1320 1320 6947 637 637 6948 603 603 6949 1327 1327 6950 637 637 6951 1327 1327 6952 1328 1328 6953 637 637 6954 1328 1328 6955 1329 1329 6956 637 637 6957 1329 1329 6958 635 635 6959 635 635 6960 1329 1329 6961 1330 1330 6962 635 635 6963 1330 1330 6964 633 633 6965 633 633 6966 1330 1330 6967 1331 1331 6968 633 633 6969 1331 1331 6970 622 622 6971 622 622 6972 1331 1331 6973 619 619 6974 1331 1331 6975 1332 1332 6976 619 619 6977 619 619 6978 1332 1332 6979 617 617 6980 1332 1332 6981 1331 1331 6982 1333 1333 6983 1333 1333 6984 1331 1331 6985 1330 1330 6986 1333 1333 6987 1330 1330 6988 1334 1334 6989 1334 1334 6990 1330 1330 6991 1329 1329 6992 1334 1334 6993 1329 1329 6994 1335 1335 6995 1335 1335 6996 1329 1329 6997 1328 1328 6998 1335 1335 6999 1328 1328 7000 1336 1336 7001 1336 1336 7002 1328 1328 7003 1327 1327 7004 1336 1336 7005 1327 1327 7006 1337 1337 7007 1336 1336 7008 1337 1337 7009 1338 1338 7010 1337 1337 7011 1339 1339 7012 1338 1338 7013 1336 1336 7014 1338 1338 7015 1340 1340 7016 1336 1336 7017 1340 1340 7018 1335 1335 7019 1335 1335 7020 1340 1340 7021 1341 1341 7022 1335 1335 7023 1341 1341 7024 1334 1334 7025 1334 1334 7026 1341 1341 7027 1333 1333 7028 1341 1341 7029 1342 1342 7030 1333 1333 7031 1333 1333 7032 1342 1342 7033 1343 1343 7034 1333 1333 7035 1343 1343 7036 1332 1332 7037 1332 1332 7038 1343 1343 7039 1344 1344 7040 1332 1332 7041 1344 1344 7042 617 617 7043 617 617 7044 1344 1344 7045 615 615 7046 1344 1344 7047 1345 1345 7048 615 615 7049 615 615 7050 1345 1345 7051 614 614 7052 1345 1345 7053 1344 1344 7054 1346 1346 7055 1346 1346 7056 1344 1344 7057 1343 1343 7058 1346 1346 7059 1343 1343 7060 1347 1347 7061 1347 1347 7062 1343 1343 7063 1342 1342 7064 1347 1347 7065 1342 1342 7066 1348 1348 7067 1348 1348 7068 1342 1342 7069 1349 1349 7070 1342 1342 7071 1341 1341 7072 1349 1349 7073 1349 1349 7074 1341 1341 7075 1340 1340 7076 1349 1349 7077 1340 1340 7078 1254 1254 7079 1254 1254 7080 1340 1340 7081 1338 1338 7082 1254 1254 7083 1338 1338 7084 1255 1255 7085 1255 1255 7086 1338 1338 7087 1339 1339 7088 1255 1255 7089 1339 1339 7090 1238 1238 7091 1348 1348 7092 1226 1226 7093 1347 1347 7094 1347 1347 7095 1226 1226 7096 1350 1350 7097 1347 1347 7098 1350 1350 7099 1346 1346 7100 1226 1226 7101 1225 1225 7102 1350 1350 7103 1346 1346 7104 1350 1350 7105 1351 1351 7106 1346 1346 7107 1351 1351 7108 1345 1345 7109 1345 1345 7110 1351 1351 7111 1352 1352 7112 1345 1345 7113 1352 1352 7114 614 614 7115 614 614 7116 1352 1352 7117 1353 1353 7118 614 614 7119 1353 1353 7120 608 608 7121 608 608 7122 1353 1353 7123 606 606 7124 1353 1353 7125 1354 1354 7126 606 606 7127 606 606 7128 1354 1354 7129 602 602 7130 1354 1354 7131 1355 1355 7132 602 602 7133 602 602 7134 1355 1355 7135 603 603 7136 1355 1355 7137 1327 1327 7138 603 603 7139 1327 1327 7140 1355 1355 7141 1337 1337 7142 1355 1355 7143 1356 1356 7144 1337 1337 7145 1337 1337 7146 1356 1356 7147 1339 1339 7148 1356 1356 7149 1355 1355 7150 1357 1357 7151 1355 1355 7152 1354 1354 7153 1357 1357 7154 1357 1357 7155 1354 1354 7156 1353 1353 7157 1357 1357 7158 1353 1353 7159 1358 1358 7160 1358 1358 7161 1353 1353 7162 1352 1352 7163 1358 1358 7164 1352 1352 7165 1359 1359 7166 1359 1359 7167 1352 1352 7168 1360 1360 7169 1360 1360 7170 1352 1352 7171 1351 1351 7172 1360 1360 7173 1351 1351 7174 1361 1361 7175 1361 1361 7176 1351 1351 7177 1350 1350 7178 1361 1361 7179 1350 1350 7180 1225 1225 7181 1361 1361 7182 1225 1225 7183 1227 1227 7184 1361 1361 7185 1227 1227 7186 1362 1362 7187 1361 1361 7188 1362 1362 7189 1360 1360 7190 1360 1360 7191 1362 1362 7192 1359 1359 7193 1362 1362 7194 1363 1363 7195 1359 1359 7196 1359 1359 7197 1363 1363 7198 1358 1358 7199 1363 1363 7200 1362 1362 7201 1228 1228 7202 1228 1228 7203 1362 1362 7204 1227 1227 7205 1363 1363 7206 1228 1228 7207 1229 1229 7208 1363 1363 7209 1229 1229 7210 1364 1364 7211 1363 1363 7212 1364 1364 7213 1358 1358 7214 1358 1358 7215 1364 1364 7216 1365 1365 7217 1358 1358 7218 1365 1365 7219 1357 1357 7220 1365 1365 7221 1364 1364 7222 1229 1229 7223 1365 1365 7224 1229 1229 7225 1231 1231 7226 1365 1365 7227 1231 1231 7228 1366 1366 7229 1365 1365 7230 1366 1366 7231 1357 1357 7232 1366 1366 7233 1356 1356 7234 1357 1357 7235 1356 1356 7236 1366 1366 7237 1339 1339 7238 1339 1339 7239 1366 1366 7240 1238 1238 7241 1366 1366 7242 1231 1231 7243 1238 1238 7244 1250 1250 7245 1223 1223 7246 1252 1252 7247 1250 1250 7248 1252 1252 7249 1251 1251 7250 487 487 7251 488 488 7252 1367 1367 7253 487 487 7254 1367 1367 7255 1368 1368 7256 487 487 7257 1368 1368 7258 489 489 7259 489 489 7260 1368 1368 7261 1130 1130 7262 1368 1368 7263 1369 1369 7264 1130 1130 7265 1370 1370 7266 485 485 7267 484 484 7268 1370 1370 7269 484 484 7270 1371 1371 7271 1370 1370 7272 1371 1371 7273 1372 1372 7274 1371 1371 7275 484 484 7276 1373 1373 7277 484 484 7278 1374 1374 7279 1373 1373 7280 1371 1371 7281 1373 1373 7282 1375 1375 7283 1371 1371 7284 1375 1375 7285 1376 1376 7286 1376 1376 7287 1375 1375 7288 1377 1377 7289 1376 1376 7290 1377 1377 7291 1378 1378 7292 1378 1378 7293 1377 1377 7294 1379 1379 7295 1377 1377 7296 1380 1380 7297 1379 1379 7298 1379 1379 7299 1380 1380 7300 1381 1381 7301 1379 1379 7302 1381 1381 7303 1382 1382 7304 1382 1382 7305 1381 1381 7306 1383 1383 7307 1381 1381 7308 1384 1384 7309 1383 1383 7310 1383 1383 7311 1384 1384 7312 1385 1385 7313 1383 1383 7314 1385 1385 7315 1386 1386 7316 1386 1386 7317 1385 1385 7318 1387 1387 7319 1385 1385 7320 1372 1372 7321 1387 1387 7322 1387 1387 7323 1372 1372 7324 1371 1371 7325 1368 1368 7326 1367 1367 7327 1370 1370 7328 1368 1368 7329 1370 1370 7330 1372 1372 7331 1367 1367 7332 488 488 7333 485 485 7334 1367 1367 7335 485 485 7336 1370 1370 7337 1388 1388 7338 1389 1389 7339 1387 1387 7340 1388 1388 7341 1387 1387 7342 1371 1371 7343 1388 1388 7344 1371 1371 7345 1376 1376 7346 1388 1388 7347 1376 1376 7348 1390 1390 7349 1368 1368 7350 1372 1372 7351 1385 1385 7352 1368 1368 7353 1385 1385 7354 1369 1369 7355 1369 1369 7356 1385 1385 7357 1384 1384 7358 1369 1369 7359 1384 1384 7360 1391 1391 7361 1386 1386 7362 1387 1387 7363 1389 1389 7364 1386 1386 7365 1389 1389 7366 1392 1392 7367 1386 1386 7368 1392 1392 7369 1393 1393 7370 1386 1386 7371 1393 1393 7372 1383 1383 7373 1394 1394 7374 1395 1395 7375 1396 1396 7376 1394 1394 7377 1396 1396 7378 1397 1397 7379 1397 1397 7380 1396 1396 7381 1156 1156 7382 1397 1397 7383 1156 1156 7384 1155 1155 7385 1397 1397 7386 1155 1155 7387 1398 1398 7388 1397 1397 7389 1375 1375 7390 1373 1373 7391 1397 1397 7392 1373 1373 7393 1394 1394 7394 1394 1394 7395 1373 1373 7396 1374 1374 7397 1394 1394 7398 1374 1374 7399 1395 1395 7400 1377 1377 7401 1375 1375 7402 1397 1397 7403 1377 1377 7404 1397 1397 7405 1398 1398 7406 1377 1377 7407 1398 1398 7408 1380 1380 7409 1398 1398 7410 1399 1399 7411 1380 1380 7412 1390 1390 7413 1376 1376 7414 1378 1378 7415 1390 1390 7416 1378 1378 7417 1400 1400 7418 1400 1400 7419 1378 1378 7420 1401 1401 7421 1378 1378 7422 1379 1379 7423 1401 1401 7424 1143 1143 7425 1402 1402 7426 1403 1403 7427 1143 1143 7428 1403 1403 7429 1404 1404 7430 1404 1404 7431 1403 1403 7432 1405 1405 7433 1403 1403 7434 1406 1406 7435 1405 1405 7436 1407 1407 7437 1408 1408 7438 1409 1409 7439 1407 1407 7440 1409 1409 7441 1410 1410 7442 1410 1410 7443 1409 1409 7444 1411 1411 7445 1412 1412 7446 1413 1413 7447 1414 1414 7448 1412 1412 7449 1414 1414 7450 1415 1415 7451 1415 1415 7452 1414 1414 7453 1416 1416 7454 1415 1415 7455 1416 1416 7456 1417 1417 7457 1417 1417 7458 1416 1416 7459 1418 1418 7460 1417 1417 7461 1418 1418 7462 1419 1419 7463 1419 1419 7464 1418 1418 7465 1420 1420 7466 1419 1419 7467 1420 1420 7468 1421 1421 7469 1421 1421 7470 1420 1420 7471 1422 1422 7472 1421 1421 7473 1422 1422 7474 1423 1423 7475 1423 1423 7476 1422 1422 7477 1424 1424 7478 1423 1423 7479 1424 1424 7480 1425 1425 7481 1425 1425 7482 1424 1424 7483 1426 1426 7484 1425 1425 7485 1426 1426 7486 1427 1427 7487 1427 1427 7488 1426 1426 7489 1428 1428 7490 1427 1427 7491 1428 1428 7492 1429 1429 7493 1430 1430 7494 1431 1431 7495 1432 1432 7496 1430 1430 7497 1432 1432 7498 1433 1433 7499 1433 1433 7500 1432 1432 7501 1434 1434 7502 1433 1433 7503 1434 1434 7504 1435 1435 7505 1435 1435 7506 1434 1434 7507 1436 1436 7508 1435 1435 7509 1436 1436 7510 1437 1437 7511 1437 1437 7512 1436 1436 7513 1438 1438 7514 1437 1437 7515 1438 1438 7516 1439 1439 7517 1439 1439 7518 1438 1438 7519 1440 1440 7520 1439 1439 7521 1440 1440 7522 1441 1441 7523 1442 1442 7524 1443 1443 7525 1444 1444 7526 1442 1442 7527 1444 1444 7528 1445 1445 7529 1445 1445 7530 1444 1444 7531 1446 1446 7532 1445 1445 7533 1446 1446 7534 1447 1447 7535 1447 1447 7536 1446 1446 7537 1448 1448 7538 1447 1447 7539 1448 1448 7540 1449 1449 7541 1449 1449 7542 1448 1448 7543 1450 1450 7544 1449 1449 7545 1450 1450 7546 1451 1451 7547 1451 1451 7548 1450 1450 7549 1452 1452 7550 1451 1451 7551 1452 1452 7552 1453 1453 7553 1430 1430 7554 1443 1443 7555 1442 1442 7556 1430 1430 7557 1442 1442 7558 1431 1431 7559 1452 1452 7560 1441 1441 7561 1440 1440 7562 1452 1452 7563 1440 1440 7564 1453 1453 7565 1413 1413 7566 1430 1430 7567 1433 1433 7568 1413 1413 7569 1433 1433 7570 1414 1414 7571 1433 1433 7572 1416 1416 7573 1414 1414 7574 1416 1416 7575 1433 1433 7576 1435 1435 7577 1416 1416 7578 1435 1435 7579 1418 1418 7580 1418 1418 7581 1435 1435 7582 1437 1437 7583 1418 1418 7584 1437 1437 7585 1420 1420 7586 1420 1420 7587 1437 1437 7588 1439 1439 7589 1420 1420 7590 1439 1439 7591 1422 1422 7592 1439 1439 7593 1424 1424 7594 1422 1422 7595 1424 1424 7596 1439 1439 7597 1441 1441 7598 1424 1424 7599 1441 1441 7600 1426 1426 7601 1441 1441 7602 1428 1428 7603 1426 1426 7604 1443 1443 7605 1430 1430 7606 1413 1413 7607 1443 1443 7608 1413 1413 7609 1412 1412 7610 1443 1443 7611 1412 1412 7612 1415 1415 7613 1443 1443 7614 1415 1415 7615 1444 1444 7616 1444 1444 7617 1415 1415 7618 1417 1417 7619 1444 1444 7620 1417 1417 7621 1419 1419 7622 1444 1444 7623 1419 1419 7624 1446 1446 7625 1446 1446 7626 1419 1419 7627 1421 1421 7628 1446 1446 7629 1421 1421 7630 1448 1448 7631 1448 1448 7632 1421 1421 7633 1423 1423 7634 1448 1448 7635 1423 1423 7636 1450 1450 7637 1450 1450 7638 1423 1423 7639 1425 1425 7640 1450 1450 7641 1425 1425 7642 1427 1427 7643 1450 1450 7644 1427 1427 7645 1452 1452 7646 1452 1452 7647 1427 1427 7648 1429 1429 7649 1441 1441 7650 1452 1452 7651 1429 1429 7652 1441 1441 7653 1429 1429 7654 1428 1428 7655 1431 1431 7656 1454 1454 7657 1455 1455 7658 1431 1431 7659 1455 1455 7660 1432 1432 7661 1432 1432 7662 1455 1455 7663 1407 1407 7664 1432 1432 7665 1407 1407 7666 1434 1434 7667 1434 1434 7668 1407 1407 7669 1456 1456 7670 1434 1434 7671 1456 1456 7672 1436 1436 7673 1436 1436 7674 1456 1456 7675 1457 1457 7676 1436 1436 7677 1457 1457 7678 1438 1438 7679 1438 1438 7680 1457 1457 7681 1458 1458 7682 1438 1438 7683 1458 1458 7684 1440 1440 7685 1431 1431 7686 1442 1442 7687 1459 1459 7688 1431 1431 7689 1459 1459 7690 1454 1454 7691 1453 1453 7692 1460 1460 7693 1461 1461 7694 1453 1453 7695 1461 1461 7696 1451 1451 7697 1451 1451 7698 1461 1461 7699 1462 1462 7700 1451 1451 7701 1462 1462 7702 1449 1449 7703 1449 1449 7704 1462 1462 7705 1410 1410 7706 1449 1449 7707 1410 1410 7708 1447 1447 7709 1447 1447 7710 1410 1410 7711 1463 1463 7712 1447 1447 7713 1463 1463 7714 1445 1445 7715 1445 1445 7716 1463 1463 7717 1442 1442 7718 1442 1442 7719 1463 1463 7720 1459 1459 7721 1453 1453 7722 1440 1440 7723 1458 1458 7724 1453 1453 7725 1458 1458 7726 1460 1460 7727 1464 1464 7728 1465 1465 7729 1456 1456 7730 1464 1464 7731 1456 1456 7732 1462 1462 7733 1464 1464 7734 1462 1462 7735 1466 1466 7736 426 426 7737 425 425 7738 1467 1467 7739 426 426 7740 1467 1467 7741 1468 1468 7742 426 426 7743 1468 1468 7744 428 428 7745 1468 1468 7746 1467 1467 7747 1469 1469 7748 1467 1467 7749 1470 1470 7750 1469 1469 7751 1469 1469 7752 1470 1470 7753 1471 1471 7754 1470 1470 7755 1472 1472 7756 1471 1471 7757 1469 1469 7758 1471 1471 7759 1473 1473 7760 1469 1469 7761 1473 1473 7762 1460 1460 7763 1469 1469 7764 1460 1460 7765 1468 1468 7766 1460 1460 7767 1474 1474 7768 1468 1468 7769 1468 1468 7770 1474 1474 7771 428 428 7772 428 428 7773 1474 1474 7774 435 435 7775 1474 1474 7776 1475 1475 7777 435 435 7778 1475 1475 7779 1474 1474 7780 1458 1458 7781 1458 1458 7782 1474 1474 7783 1460 1460 7784 1475 1475 7785 1458 1458 7786 1476 1476 7787 1476 1476 7788 1458 1458 7789 1477 1477 7790 1458 1458 7791 1457 1457 7792 1477 1477 7793 1457 1457 7794 1456 1456 7795 1477 1477 7796 1473 1473 7797 1478 1478 7798 1460 1460 7799 1460 1460 7800 1478 1478 7801 1461 1461 7802 1478 1478 7803 1479 1479 7804 1461 1461 7805 1461 1461 7806 1479 1479 7807 1466 1466 7808 1461 1461 7809 1466 1466 7810 1462 1462 7811 1466 1466 7812 1479 1479 7813 1480 1480 7814 1480 1480 7815 1479 1479 7816 1478 1478 7817 1466 1466 7818 1480 1480 7819 1464 1464 7820 1478 1478 7821 1481 1481 7822 1480 1480 7823 1481 1481 7824 1478 1478 7825 1482 1482 7826 1478 1478 7827 1473 1473 7828 1482 1482 7829 1482 1482 7830 1473 1473 7831 1483 1483 7832 1473 1473 7833 1484 1484 7834 1483 1483 7835 1484 1484 7836 1473 1473 7837 1471 1471 7838 1483 1483 7839 1484 1484 7840 1485 1485 7841 1484 1484 7842 1486 1486 7843 1485 1485 7844 1485 1485 7845 1486 1486 7846 1487 1487 7847 1486 1486 7848 1484 1484 7849 1488 1488 7850 1484 1484 7851 1471 1471 7852 1488 1488 7853 1488 1488 7854 1471 1471 7855 1472 1472 7856 1488 1488 7857 1472 1472 7858 1489 1489 7859 1488 1488 7860 1489 1489 7861 1490 1490 7862 1488 1488 7863 1490 1490 7864 1486 1486 7865 1486 1486 7866 1490 1490 7867 1491 1491 7868 1486 1486 7869 1491 1491 7870 1487 1487 7871 1487 1487 7872 1491 1491 7873 1492 1492 7874 1491 1491 7875 1493 1493 7876 1492 1492 7877 1493 1493 7878 1491 1491 7879 1494 1494 7880 1494 1494 7881 1491 1491 7882 1490 1490 7883 1493 1493 7884 1494 1494 7885 1495 1495 7886 1495 1495 7887 1494 1494 7888 1496 1496 7889 1494 1494 7890 1497 1497 7891 1496 1496 7892 1497 1497 7893 1494 1494 7894 1490 1490 7895 1497 1497 7896 1490 1490 7897 1498 1498 7898 1498 1498 7899 1490 1490 7900 1499 1499 7901 1490 1490 7902 1500 1500 7903 1499 1499 7904 1500 1500 7905 1490 1490 7906 1489 1489 7907 1500 1500 7908 1489 1489 7909 1472 1472 7910 1500 1500 7911 1472 1472 7912 1501 1501 7913 1500 1500 7914 1501 1501 7915 1502 1502 7916 1500 1500 7917 1502 1502 7918 1499 1499 7919 1502 1502 7920 1503 1503 7921 1499 1499 7922 1503 1503 7923 1502 1502 7924 465 465 7925 1503 1503 7926 465 465 7927 466 466 7928 465 465 7929 1502 1502 7930 1504 1504 7931 1504 1504 7932 1502 1502 7933 1501 1501 7934 465 465 7935 1504 1504 7936 468 468 7937 425 425 7938 470 470 7939 1505 1505 7940 425 425 7941 1505 1505 7942 1467 1467 7943 1467 1467 7944 1505 1505 7945 1470 1470 7946 1505 1505 7947 1506 1506 7948 1470 1470 7949 1470 1470 7950 1506 1506 7951 1472 1472 7952 1506 1506 7953 1507 1507 7954 1472 1472 7955 1472 1472 7956 1507 1507 7957 1501 1501 7958 1507 1507 7959 1508 1508 7960 1501 1501 7961 1501 1501 7962 1508 1508 7963 1504 1504 7964 1508 1508 7965 1509 1509 7966 1504 1504 7967 1504 1504 7968 1509 1509 7969 475 475 7970 1504 1504 7971 475 475 7972 468 468 7973 1509 1509 7974 1508 1508 7975 1510 1510 7976 1509 1509 7977 1510 1510 7978 1511 1511 7979 1509 1509 7980 1511 1511 7981 475 475 7982 1511 1511 7983 478 478 7984 475 475 7985 1512 1512 7986 1510 1510 7987 1508 1508 7988 1512 1512 7989 1508 1508 7990 1507 1507 7991 1512 1512 7992 1507 1507 7993 1513 1513 7994 1507 1507 7995 1506 1506 7996 1513 1513 7997 1514 1514 7998 1513 1513 7999 1506 1506 8000 1514 1514 8001 1506 1506 8002 1505 1505 8003 1514 1514 8004 1505 1505 8005 470 470 8006 1514 1514 8007 470 470 8008 482 482 8009 483 483 8010 1374 1374 8011 484 484 8012 1374 1374 8013 483 483 8014 1515 1515 8015 1374 1374 8016 1515 1515 8017 1396 1396 8018 1374 1374 8019 1396 1396 8020 1395 1395 8021 1515 1515 8022 1156 1156 8023 1396 1396 8024 1156 1156 8025 1515 1515 8026 1516 1516 8027 1156 1156 8028 1516 1516 8029 1517 1517 8030 1156 1156 8031 1517 1517 8032 1157 1157 8033 1517 1517 8034 1516 1516 8035 1147 1147 8036 1147 1147 8037 1516 1516 8038 1518 1518 8039 1517 1517 8040 1147 1147 8041 1153 1153 8042 1518 1518 8043 1148 1148 8044 1147 1147 8045 1148 1148 8046 1518 1518 8047 1135 1135 8048 1135 1135 8049 1518 1518 8050 1519 1519 8051 1135 1135 8052 1519 1519 8053 1136 1136 8054 1136 1136 8055 1519 1519 8056 1139 1139 8057 1139 1139 8058 1519 1519 8059 1402 1402 8060 1139 1139 8061 1402 1402 8062 1143 1143 8063 1496 1496 8064 1143 1143 8065 1404 1404 8066 1496 1496 8067 1404 1404 8068 1495 1495 8069 1495 1495 8070 1404 1404 8071 1405 1405 8072 1495 1495 8073 1405 1405 8074 1493 1493 8075 1493 1493 8076 1405 1405 8077 1520 1520 8078 1405 1405 8079 1521 1521 8080 1520 1520 8081 1493 1493 8082 1520 1520 8083 1492 1492 8084 1520 1520 8085 1521 1521 8086 1522 1522 8087 1503 1503 8088 466 466 8089 504 504 8090 1503 1503 8091 504 504 8092 1523 1523 8093 1503 1503 8094 1523 1523 8095 1524 1524 8096 1503 1503 8097 1524 1524 8098 1499 1499 8099 1499 1499 8100 1524 1524 8101 1525 1525 8102 1499 1499 8103 1525 1525 8104 1498 1498 8105 1498 1498 8106 1525 1525 8107 1497 1497 8108 1525 1525 8109 1526 1526 8110 1497 1497 8111 1497 1497 8112 1526 1526 8113 1496 1496 8114 1143 1143 8115 1496 1496 8116 1526 1526 8117 1143 1143 8118 1526 1526 8119 1527 1527 8120 1143 1143 8121 1527 1527 8122 1144 1144 8123 1527 1527 8124 1526 1526 8125 1528 1528 8126 1526 1526 8127 1525 1525 8128 1528 1528 8129 1528 1528 8130 1525 1525 8131 1529 1529 8132 1525 1525 8133 1524 1524 8134 1529 1529 8135 1529 1529 8136 1524 1524 8137 1530 1530 8138 1524 1524 8139 1523 1523 8140 1530 1530 8141 1530 1530 8142 1523 1523 8143 504 504 8144 1530 1530 8145 504 504 8146 514 514 8147 1530 1530 8148 514 514 8149 515 515 8150 1530 1530 8151 515 515 8152 1531 1531 8153 1530 1530 8154 1531 1531 8155 1529 1529 8156 1531 1531 8157 1532 1532 8158 1529 1529 8159 1529 1529 8160 1532 1532 8161 1528 1528 8162 1532 1532 8163 1533 1533 8164 1528 1528 8165 1528 1528 8166 1533 1533 8167 1527 1527 8168 1533 1533 8169 1534 1534 8170 1527 1527 8171 1527 1527 8172 1534 1534 8173 1144 1144 8174 1534 1534 8175 1145 1145 8176 1144 1144 8177 521 521 8178 1535 1535 8179 522 522 8180 522 522 8181 1535 1535 8182 1536 1536 8183 1535 1535 8184 1537 1537 8185 1536 1536 8186 522 522 8187 1536 1536 8188 1538 1538 8189 522 522 8190 1538 1538 8191 527 527 8192 527 527 8193 1538 1538 8194 528 528 8195 1538 1538 8196 1539 1539 8197 528 528 8198 528 528 8199 1539 1539 8200 530 530 8201 1539 1539 8202 1538 1538 8203 1540 1540 8204 1540 1540 8205 1538 1538 8206 1536 1536 8207 1540 1540 8208 1536 1536 8209 1541 1541 8210 1536 1536 8211 1537 1537 8212 1541 1541 8213 1541 1541 8214 1537 1537 8215 1542 1542 8216 1541 1541 8217 1542 1542 8218 1543 1543 8219 1543 1543 8220 1542 1542 8221 1544 1544 8222 1542 1542 8223 1545 1545 8224 1544 1544 8225 1544 1544 8226 1545 1545 8227 1546 1546 8228 1545 1545 8229 1547 1547 8230 1546 1546 8231 1546 1546 8232 1547 1547 8233 1548 1548 8234 1546 1546 8235 1548 1548 8236 1549 1549 8237 1549 1549 8238 1548 1548 8239 1550 1550 8240 1549 1549 8241 1550 1550 8242 1551 1551 8243 1549 1549 8244 1551 1551 8245 1552 1552 8246 1551 1551 8247 1550 1550 8248 1553 1553 8249 1550 1550 8250 1554 1554 8251 1553 1553 8252 1553 1553 8253 1554 1554 8254 1555 1555 8255 1554 1554 8256 1556 1556 8257 1555 1555 8258 1555 1555 8259 1556 1556 8260 1557 1557 8261 1556 1556 8262 1558 1558 8263 1557 1557 8264 1557 1557 8265 1558 1558 8266 550 550 8267 1557 1557 8268 550 550 8269 551 551 8270 1557 1557 8271 551 551 8272 1559 1559 8273 1557 1557 8274 1559 1559 8275 1555 1555 8276 551 551 8277 553 553 8278 1559 1559 8279 1555 1555 8280 1559 1559 8281 1560 1560 8282 1555 1555 8283 1560 1560 8284 1553 1553 8285 1560 1560 8286 1561 1561 8287 1553 1553 8288 1553 1553 8289 1561 1561 8290 1551 1551 8291 1551 1551 8292 1561 1561 8293 1562 1562 8294 1551 1551 8295 1562 1562 8296 1552 1552 8297 1562 1562 8298 1563 1563 8299 1552 1552 8300 1563 1563 8301 1562 1562 8302 1564 1564 8303 1564 1564 8304 1562 1562 8305 1565 1565 8306 1565 1565 8307 1562 1562 8308 1561 1561 8309 1565 1565 8310 1561 1561 8311 1566 1566 8312 1561 1561 8313 1560 1560 8314 1566 1566 8315 1566 1566 8316 1560 1560 8317 1567 1567 8318 1560 1560 8319 1559 1559 8320 1567 1567 8321 1559 1559 8322 1568 1568 8323 1567 1567 8324 1568 1568 8325 1559 1559 8326 553 553 8327 1568 1568 8328 553 553 8329 563 563 8330 1568 1568 8331 563 563 8332 1569 1569 8333 563 563 8334 565 565 8335 1569 1569 8336 1568 1568 8337 1569 1569 8338 1570 1570 8339 1568 1568 8340 1570 1570 8341 1567 1567 8342 1567 1567 8343 1570 1570 8344 1571 1571 8345 1567 1567 8346 1571 1571 8347 1566 1566 8348 1571 1571 8349 1572 1572 8350 1566 1566 8351 1566 1566 8352 1572 1572 8353 1565 1565 8354 1572 1572 8355 1573 1573 8356 1565 1565 8357 1565 1565 8358 1573 1573 8359 1564 1564 8360 1573 1573 8361 1574 1574 8362 1564 1564 8363 1564 1564 8364 1574 1574 8365 1575 1575 8366 1564 1564 8367 1575 1575 8368 1576 1576 8369 1564 1564 8370 1576 1576 8371 1563 1563 8372 1576 1576 8373 1577 1577 8374 1563 1563 8375 1577 1577 8376 1576 1576 8377 1578 1578 8378 1577 1577 8379 1578 1578 8380 1579 1579 8381 1578 1578 8382 1580 1580 8383 1579 1579 8384 1580 1580 8385 1578 1578 8386 1581 1581 8387 1580 1580 8388 1581 1581 8389 1582 1582 8390 1580 1580 8391 1582 1582 8392 1583 1583 8393 1583 1583 8394 1582 1582 8395 1584 1584 8396 1580 1580 8397 1583 1583 8398 1585 1585 8399 1580 1580 8400 1585 1585 8401 1579 1579 8402 1579 1579 8403 1585 1585 8404 1546 1546 8405 1585 1585 8406 1544 1544 8407 1546 1546 8408 1544 1544 8409 1585 1585 8410 1543 1543 8411 1585 1585 8412 1583 1583 8413 1543 1543 8414 1543 1543 8415 1583 1583 8416 1541 1541 8417 1583 1583 8418 1586 1586 8419 1541 1541 8420 1586 1586 8421 1583 1583 8422 1584 1584 8423 1586 1586 8424 1584 1584 8425 1587 1587 8426 1586 1586 8427 1587 1587 8428 1588 1588 8429 1586 1586 8430 1588 1588 8431 1541 1541 8432 1588 1588 8433 1540 1540 8434 1541 1541 8435 1540 1540 8436 1588 1588 8437 1589 1589 8438 1540 1540 8439 1589 1589 8440 1539 1539 8441 1589 1589 8442 1588 1588 8443 1590 1590 8444 1588 1588 8445 1587 1587 8446 1590 1590 8447 1589 1589 8448 1590 1590 8449 1591 1591 8450 1591 1591 8451 1590 1590 8452 1592 1592 8453 1591 1591 8454 1592 1592 8455 1593 1593 8456 1591 1591 8457 1593 1593 8458 1594 1594 8459 1594 1594 8460 1593 1593 8461 1595 1595 8462 1595 1595 8463 1593 1593 8464 1596 1596 8465 1594 1594 8466 1595 1595 8467 1597 1597 8468 1594 1594 8469 1597 1597 8470 594 594 8471 1594 1594 8472 594 594 8473 1591 1591 8474 1597 1597 8475 595 595 8476 594 594 8477 1591 1591 8478 594 594 8479 596 596 8480 1591 1591 8481 596 596 8482 1598 1598 8483 1591 1591 8484 1598 1598 8485 1589 1589 8486 1598 1598 8487 1539 1539 8488 1589 1589 8489 1539 1539 8490 1598 1598 8491 530 530 8492 1598 1598 8493 596 596 8494 530 530 8495 1552 1552 8496 1563 1563 8497 1577 1577 8498 1552 1552 8499 1577 1577 8500 1579 1579 8501 1552 1552 8502 1579 1579 8503 1549 1549 8504 1579 1579 8505 1546 1546 8506 1549 1549 8507 1570 1570 8508 1599 1599 8509 1571 1571 8510 1599 1599 8511 1570 1570 8512 1600 1600 8513 1570 1570 8514 1569 1569 8515 1600 1600 8516 1599 1599 8517 1600 1600 8518 1601 1601 8519 1600 1600 8520 1569 1569 8521 565 565 8522 1600 1600 8523 565 565 8524 601 601 8525 1600 1600 8526 601 601 8527 595 595 8528 1600 1600 8529 595 595 8530 1597 1597 8531 1600 1600 8532 1597 1597 8533 1601 1601 8534 1597 1597 8535 1595 1595 8536 1601 1601 8537 1602 1602 8538 1292 1292 8539 1291 1291 8540 1602 1602 8541 1291 1291 8542 1603 1603 8543 1602 1602 8544 1603 1603 8545 1596 1596 8546 1603 1603 8547 1291 1291 8548 1325 1325 8549 1596 1596 8550 1603 1603 8551 1604 1604 8552 1596 1596 8553 1604 1604 8554 1595 1595 8555 1604 1604 8556 1601 1601 8557 1595 1595 8558 1601 1601 8559 1604 1604 8560 1605 1605 8561 1605 1605 8562 1604 1604 8563 1603 1603 8564 1601 1601 8565 1605 1605 8566 1599 1599 8567 1599 1599 8568 1605 1605 8569 1571 1571 8570 1605 1605 8571 1606 1606 8572 1571 1571 8573 1606 1606 8574 1605 1605 8575 1607 1607 8576 1605 1605 8577 1603 1603 8578 1607 1607 8579 1607 1607 8580 1603 1603 8581 1325 1325 8582 1607 1607 8583 1325 1325 8584 1326 1326 8585 1607 1607 8586 1326 1326 8587 1608 1608 8588 1607 1607 8589 1608 1608 8590 1606 1606 8591 1608 1608 8592 1609 1609 8593 1606 1606 8594 1609 1609 8595 1571 1571 8596 1606 1606 8597 1609 1609 8598 1608 1608 8599 1610 1610 8600 1610 1610 8601 1608 1608 8602 1326 1326 8603 1610 1610 8604 1326 1326 8605 1320 1320 8606 1610 1610 8607 1320 1320 8608 1314 1314 8609 1610 1610 8610 1314 1314 8611 1611 1611 8612 1611 1611 8613 1314 1314 8614 1313 1313 8615 1611 1611 8616 1313 1313 8617 1612 1612 8618 1612 1612 8619 1313 1313 8620 1308 1308 8621 1611 1611 8622 1612 1612 8623 1613 1613 8624 1308 1308 8625 1614 1614 8626 1612 1612 8627 1613 1613 8628 1612 1612 8629 1614 1614 8630 1308 1308 8631 1307 1307 8632 1614 1614 8633 1307 1307 8634 1615 1615 8635 1614 1614 8636 1614 1614 8637 1615 1615 8638 1616 1616 8639 1614 1614 8640 1616 1616 8641 1613 1613 8642 1613 1613 8643 1616 1616 8644 1617 1617 8645 1613 1613 8646 1617 1617 8647 1618 1618 8648 1613 1613 8649 1618 1618 8650 1619 1619 8651 1613 1613 8652 1619 1619 8653 1611 1611 8654 1611 1611 8655 1619 1619 8656 1620 1620 8657 1611 1611 8658 1620 1620 8659 1610 1610 8660 1620 1620 8661 1621 1621 8662 1610 1610 8663 1610 1610 8664 1621 1621 8665 1609 1609 8666 1609 1609 8667 1621 1621 8668 1571 1571 8669 1621 1621 8670 1572 1572 8671 1571 1571 8672 1572 1572 8673 1621 1621 8674 1573 1573 8675 1573 1573 8676 1621 1621 8677 1574 1574 8678 1621 1621 8679 1620 1620 8680 1574 1574 8681 1574 1574 8682 1620 1620 8683 1575 1575 8684 1620 1620 8685 1619 1619 8686 1575 1575 8687 1575 1575 8688 1619 1619 8689 1618 1618 8690 1575 1575 8691 1618 1618 8692 1576 1576 8693 1576 1576 8694 1618 1618 8695 1578 1578 8696 1618 1618 8697 1617 1617 8698 1578 1578 8699 1578 1578 8700 1617 1617 8701 1581 1581 8702 1617 1617 8703 1622 1622 8704 1581 1581 8705 1622 1622 8706 1617 1617 8707 1616 1616 8708 1581 1581 8709 1622 1622 8710 1582 1582 8711 1622 1622 8712 1616 1616 8713 1623 1623 8714 1623 1623 8715 1616 1616 8716 1615 1615 8717 1622 1622 8718 1623 1623 8719 1582 1582 8720 1582 1582 8721 1623 1623 8722 1584 1584 8723 1623 1623 8724 1624 1624 8725 1584 1584 8726 1624 1624 8727 1623 1623 8728 1615 1615 8729 1624 1624 8730 1615 1615 8731 1625 1625 8732 1625 1625 8733 1615 1615 8734 1307 1307 8735 1625 1625 8736 1307 1307 8737 1303 1303 8738 1625 1625 8739 1303 1303 8740 1626 1626 8741 1303 1303 8742 1301 1301 8743 1626 1626 8744 1625 1625 8745 1626 1626 8746 1590 1590 8747 1625 1625 8748 1590 1590 8749 1624 1624 8750 1624 1624 8751 1590 1590 8752 1587 1587 8753 1624 1624 8754 1587 1587 8755 1584 1584 8756 1590 1590 8757 1626 1626 8758 1592 1592 8759 1626 1626 8760 1627 1627 8761 1592 1592 8762 1627 1627 8763 1626 1626 8764 1301 1301 8765 1627 1627 8766 1301 1301 8767 1295 1295 8768 1627 1627 8769 1295 1295 8770 1602 1602 8771 1295 1295 8772 1292 1292 8773 1602 1602 8774 1627 1627 8775 1602 1602 8776 1593 1593 8777 1627 1627 8778 1593 1593 8779 1592 1592 8780 1593 1593 8781 1602 1602 8782 1596 1596 8783 1628 1628 8784 641 641 8785 640 640 8786 1628 1628 8787 640 640 8788 1629 1629 8789 1628 1628 8790 1629 1629 8791 1630 1630 8792 1629 1629 8793 640 640 8794 1631 1631 8795 1630 1630 8796 1629 1629 8797 1632 1632 8798 1631 1631 8799 1632 1632 8800 1629 1629 8801 1630 1630 8802 1632 1632 8803 1633 1633 8804 1632 1632 8805 1634 1634 8806 1633 1633 8807 1633 1633 8808 1634 1634 8809 1408 1408 8810 1634 1634 8811 1635 1635 8812 1408 1408 8813 1408 1408 8814 1635 1635 8815 1465 1465 8816 1635 1635 8817 1634 1634 8818 1636 1636 8819 1465 1465 8820 1635 1635 8821 1637 1637 8822 1635 1635 8823 1636 1636 8824 1638 1638 8825 1637 1637 8826 1635 1635 8827 1638 1638 8828 1637 1637 8829 1638 1638 8830 1639 1639 8831 1638 1638 8832 1640 1640 8833 1639 1639 8834 1639 1639 8835 1640 1640 8836 665 665 8837 1639 1639 8838 665 665 8839 666 666 8840 1639 1639 8841 666 666 8842 662 662 8843 1639 1639 8844 662 662 8845 1641 1641 8846 1641 1641 8847 662 662 8848 661 661 8849 1641 1641 8850 661 661 8851 1642 1642 8852 1641 1641 8853 1642 1642 8854 1643 1643 8855 1641 1641 8856 1643 1643 8857 1639 1639 8858 1643 1643 8859 1637 1637 8860 1639 1639 8861 1637 1637 8862 1643 1643 8863 1465 1465 8864 1465 1465 8865 1643 1643 8866 1644 1644 8867 1644 1644 8868 1643 1643 8869 1645 1645 8870 1645 1645 8871 1643 1643 8872 1642 1642 8873 1634 1634 8874 1646 1646 8875 1636 1636 8876 1646 1646 8877 1634 1634 8878 1632 1632 8879 1646 1646 8880 1632 1632 8881 1647 1647 8882 1647 1647 8883 1632 1632 8884 1631 1631 8885 1631 1631 8886 640 640 8887 653 653 8888 667 667 8889 641 641 8890 1628 1628 8891 667 667 8892 1628 1628 8893 1648 1648 8894 1648 1648 8895 1628 1628 8896 1630 1630 8897 1648 1648 8898 1630 1630 8899 1649 1649 8900 1649 1649 8901 1630 1630 8902 1650 1650 8903 1630 1630 8904 1651 1651 8905 1650 1650 8906 1651 1651 8907 1630 1630 8908 1633 1633 8909 1650 1650 8910 1651 1651 8911 1455 1455 8912 1633 1633 8913 1408 1408 8914 1651 1651 8915 1455 1455 8916 1651 1651 8917 1408 1408 8918 1455 1455 8919 1408 1408 8920 1407 1407 8921 661 661 8922 435 435 8923 1475 1475 8924 661 661 8925 1475 1475 8926 1642 1642 8927 1642 1642 8928 1475 1475 8929 1476 1476 8930 1642 1642 8931 1476 1476 8932 1645 1645 8933 1645 1645 8934 1476 1476 8935 1477 1477 8936 1645 1645 8937 1477 1477 8938 1644 1644 8939 1644 1644 8940 1477 1477 8941 1456 1456 8942 1644 1644 8943 1456 1456 8944 1465 1465 8945 1465 1465 8946 1464 1464 8947 1409 1409 8948 1465 1465 8949 1409 1409 8950 1408 1408 8951 1456 1456 8952 1407 1407 8953 1410 1410 8954 1456 1456 8955 1410 1410 8956 1462 1462 8957 1652 1652 8958 1653 1653 8959 1654 1654 8960 1652 1652 8961 1654 1654 8962 1655 1655 8963 1655 1655 8964 1654 1654 8965 1656 1656 8966 1652 1652 8967 1655 1655 8968 1657 1657 8969 1652 1652 8970 1657 1657 8971 1658 1658 8972 1658 1658 8973 1657 1657 8974 1659 1659 8975 1657 1657 8976 1660 1660 8977 1659 1659 8978 1659 1659 8979 1660 1660 8980 1487 1487 8981 1660 1660 8982 1661 1661 8983 1487 1487 8984 1487 1487 8985 1661 1661 8986 1485 1485 8987 1485 1485 8988 1661 1661 8989 1662 1662 8990 1485 1485 8991 1662 1662 8992 1483 1483 8993 1483 1483 8994 1662 1662 8995 1663 1663 8996 1483 1483 8997 1663 1663 8998 1482 1482 8999 1482 1482 9000 1663 1663 9001 1664 1664 9002 1482 1482 9003 1664 1664 9004 1481 1481 9005 1481 1481 9006 1664 1664 9007 1480 1480 9008 1664 1664 9009 1665 1665 9010 1480 1480 9011 1665 1665 9012 1464 1464 9013 1480 1480 9014 1464 1464 9015 1665 1665 9016 1666 1666 9017 1464 1464 9018 1666 1666 9019 1409 1409 9020 1666 1666 9021 1667 1667 9022 1409 1409 9023 1667 1667 9024 1666 1666 9025 1668 1668 9026 1666 1666 9027 1669 1669 9028 1668 1668 9029 1668 1668 9030 1669 1669 9031 1670 1670 9032 1669 1669 9033 1666 1666 9034 1671 1671 9035 1671 1671 9036 1666 1666 9037 1665 1665 9038 1671 1671 9039 1665 1665 9040 1672 1672 9041 1672 1672 9042 1665 1665 9043 1664 1664 9044 1672 1672 9045 1664 1664 9046 1673 1673 9047 1673 1673 9048 1664 1664 9049 1663 1663 9050 1673 1673 9051 1663 1663 9052 1674 1674 9053 1674 1674 9054 1663 1663 9055 1662 1662 9056 1674 1674 9057 1662 1662 9058 1675 1675 9059 1675 1675 9060 1662 1662 9061 1661 1661 9062 1675 1675 9063 1661 1661 9064 1676 1676 9065 1661 1661 9066 1660 1660 9067 1676 1676 9068 1676 1676 9069 1660 1660 9070 1677 1677 9071 1660 1660 9072 1657 1657 9073 1677 1677 9074 1677 1677 9075 1657 1657 9076 1678 1678 9077 1657 1657 9078 1655 1655 9079 1678 1678 9080 1678 1678 9081 1655 1655 9082 1656 1656 9083 1678 1678 9084 1656 1656 9085 1679 1679 9086 1678 1678 9087 1679 1679 9088 1680 1680 9089 1678 1678 9090 1680 1680 9091 1677 1677 9092 1680 1680 9093 1679 1679 9094 1681 1681 9095 1677 1677 9096 1680 1680 9097 1682 1682 9098 1677 1677 9099 1682 1682 9100 1676 1676 9101 1682 1682 9102 1683 1683 9103 1676 1676 9104 1676 1676 9105 1683 1683 9106 1675 1675 9107 1683 1683 9108 1684 1684 9109 1675 1675 9110 1675 1675 9111 1684 1684 9112 1674 1674 9113 1674 1674 9114 1684 1684 9115 1685 1685 9116 1674 1674 9117 1685 1685 9118 1673 1673 9119 1673 1673 9120 1685 1685 9121 1686 1686 9122 1673 1673 9123 1686 1686 9124 1672 1672 9125 1672 1672 9126 1686 1686 9127 1687 1687 9128 1672 1672 9129 1687 1687 9130 1671 1671 9131 1671 1671 9132 1687 1687 9133 1688 1688 9134 1671 1671 9135 1688 1688 9136 1669 1669 9137 1688 1688 9138 1689 1689 9139 1669 1669 9140 1669 1669 9141 1689 1689 9142 1670 1670 9143 1670 1670 9144 1689 1689 9145 1690 1690 9146 1689 1689 9147 1691 1691 9148 1690 1690 9149 1690 1690 9150 1691 1691 9151 1522 1522 9152 1691 1691 9153 1689 1689 9154 1692 1692 9155 1689 1689 9156 1688 1688 9157 1692 1692 9158 1688 1688 9159 1693 1693 9160 1692 1692 9161 1693 1693 9162 1688 1688 9163 1687 1687 9164 1693 1693 9165 1687 1687 9166 1694 1694 9167 1694 1694 9168 1687 1687 9169 1686 1686 9170 1694 1694 9171 1686 1686 9172 1695 1695 9173 1686 1686 9174 1685 1685 9175 1695 1695 9176 1695 1695 9177 1685 1685 9178 1684 1684 9179 1695 1695 9180 1684 1684 9181 1683 1683 9182 1695 1695 9183 1683 1683 9184 1696 1696 9185 1683 1683 9186 1682 1682 9187 1696 1696 9188 1696 1696 9189 1682 1682 9190 1697 1697 9191 1682 1682 9192 1680 1680 9193 1697 1697 9194 1697 1697 9195 1680 1680 9196 1681 1681 9197 1697 1697 9198 1681 1681 9199 1698 1698 9200 1697 1697 9201 1698 1698 9202 1699 1699 9203 1697 1697 9204 1699 1699 9205 1700 1700 9206 1697 1697 9207 1700 1700 9208 1696 1696 9209 1696 1696 9210 1700 1700 9211 1695 1695 9212 1700 1700 9213 1694 1694 9214 1695 1695 9215 1694 1694 9216 1700 1700 9217 1701 1701 9218 1694 1694 9219 1701 1701 9220 1693 1693 9221 1693 1693 9222 1701 1701 9223 1702 1702 9224 1693 1693 9225 1702 1702 9226 1692 1692 9227 1692 1692 9228 1702 1702 9229 1703 1703 9230 1692 1692 9231 1703 1703 9232 1691 1691 9233 1703 1703 9234 1704 1704 9235 1691 1691 9236 1691 1691 9237 1704 1704 9238 1522 1522 9239 1522 1522 9240 1704 1704 9241 1520 1520 9242 1520 1520 9243 1704 1704 9244 1705 1705 9245 1705 1705 9246 1704 1704 9247 1703 1703 9248 1520 1520 9249 1705 1705 9250 1492 1492 9251 1705 1705 9252 1703 1703 9253 1706 1706 9254 1706 1706 9255 1703 1703 9256 1702 1702 9257 1705 1705 9258 1706 1706 9259 1707 1707 9260 1705 1705 9261 1707 1707 9262 1708 1708 9263 1705 1705 9264 1708 1708 9265 1492 1492 9266 1492 1492 9267 1708 1708 9268 1659 1659 9269 1492 1492 9270 1659 1659 9271 1487 1487 9272 1659 1659 9273 1708 1708 9274 1658 1658 9275 1708 1708 9276 1709 1709 9277 1658 1658 9278 1658 1658 9279 1709 1709 9280 1652 1652 9281 1709 1709 9282 1708 1708 9283 1710 1710 9284 1710 1710 9285 1708 1708 9286 1707 1707 9287 1710 1710 9288 1707 1707 9289 1711 1711 9290 1711 1711 9291 1707 1707 9292 1712 1712 9293 1707 1707 9294 1706 1706 9295 1712 1712 9296 1712 1712 9297 1706 1706 9298 1702 1702 9299 1712 1712 9300 1702 1702 9301 1713 1713 9302 1713 1713 9303 1702 1702 9304 1714 1714 9305 1702 1702 9306 1701 1701 9307 1714 1714 9308 1714 1714 9309 1701 1701 9310 1700 1700 9311 1714 1714 9312 1700 1700 9313 1715 1715 9314 1700 1700 9315 1699 1699 9316 1715 1715 9317 1714 1714 9318 1715 1715 9319 1713 1713 9320 1715 1715 9321 1699 1699 9322 1698 1698 9323 1715 1715 9324 1698 1698 9325 1716 1716 9326 1715 1715 9327 1716 1716 9328 1717 1717 9329 1715 1715 9330 1717 1717 9331 1713 1713 9332 1716 1716 9333 1718 1718 9334 1717 1717 9335 1713 1713 9336 1717 1717 9337 1719 1719 9338 1718 1718 9339 1719 1719 9340 1717 1717 9341 1713 1713 9342 1719 1719 9343 1712 1712 9344 1712 1712 9345 1719 1719 9346 1711 1711 9347 1711 1711 9348 1719 1719 9349 1720 1720 9350 1711 1711 9351 1720 1720 9352 1710 1710 9353 1710 1710 9354 1720 1720 9355 1709 1709 9356 1720 1720 9357 1721 1721 9358 1709 1709 9359 1709 1709 9360 1721 1721 9361 1652 1652 9362 1652 1652 9363 1721 1721 9364 1653 1653 9365 1721 1721 9366 1722 1722 9367 1653 1653 9368 1722 1722 9369 1721 1721 9370 1720 1720 9371 1722 1722 9372 1720 1720 9373 1723 1723 9374 1723 1723 9375 1720 1720 9376 1724 1724 9377 1720 1720 9378 1719 1719 9379 1724 1724 9380 1724 1724 9381 1719 1719 9382 1718 1718 9383 1725 1725 9384 1716 1716 9385 1698 1698 9386 1716 1716 9387 1725 1725 9388 1726 1726 9389 1716 1716 9390 1726 1726 9391 1718 1718 9392 1718 1718 9393 1726 1726 9394 1727 1727 9395 1718 1718 9396 1727 1727 9397 1724 1724 9398 1724 1724 9399 1727 1727 9400 1723 1723 9401 1727 1727 9402 1728 1728 9403 1723 1723 9404 1723 1723 9405 1728 1728 9406 1722 1722 9407 1728 1728 9408 1729 1729 9409 1722 1722 9410 1722 1722 9411 1729 1729 9412 1653 1653 9413 1729 1729 9414 1730 1730 9415 1653 1653 9416 1731 1731 9417 1681 1681 9418 1679 1679 9419 1731 1731 9420 1679 1679 9421 1656 1656 9422 1731 1731 9423 1656 1656 9424 1732 1732 9425 1732 1732 9426 1656 1656 9427 1654 1654 9428 1732 1732 9429 1654 1654 9430 1730 1730 9431 1654 1654 9432 1653 1653 9433 1730 1730 9434 1733 1733 9435 1734 1734 9436 1735 1735 9437 1734 1734 9438 1733 1733 9439 1736 1736 9440 1737 1737 9441 1738 1738 9442 1739 1739 9443 1738 1738 9444 1737 1737 9445 1740 1740 9446 1738 1738 9447 1740 1740 9448 1741 1741 9449 1741 1741 9450 1740 1740 9451 1742 1742 9452 1740 1740 9453 1743 1743 9454 1742 1742 9455 1742 1742 9456 1743 1743 9457 1744 1744 9458 1744 1744 9459 1743 1743 9460 1745 1745 9461 1743 1743 9462 1746 1746 9463 1745 1745 9464 1745 1745 9465 1746 1746 9466 1747 1747 9467 1745 1745 9468 1747 1747 9469 1748 1748 9470 1747 1747 9471 1749 1749 9472 1748 1748 9473 1748 1748 9474 1749 1749 9475 1750 1750 9476 1748 1748 9477 1750 1750 9478 1751 1751 9479 1752 1752 9480 1753 1753 9481 1754 1754 9482 1752 1752 9483 1754 1754 9484 1755 1755 9485 1752 1752 9486 1755 1755 9487 1756 1756 9488 1732 1732 9489 1730 1730 9490 1757 1757 9491 1732 1732 9492 1757 1757 9493 1758 1758 9494 1758 1758 9495 1757 1757 9496 1759 1759 9497 1732 1732 9498 1758 1758 9499 1760 1760 9500 1732 1732 9501 1760 1760 9502 1731 1731 9503 1731 1731 9504 1760 1760 9505 1761 1761 9506 1731 1731 9507 1761 1761 9508 1681 1681 9509 1681 1681 9510 1761 1761 9511 1743 1743 9512 1681 1681 9513 1743 1743 9514 1698 1698 9515 1761 1761 9516 1746 1746 9517 1743 1743 9518 1746 1746 9519 1761 1761 9520 1760 1760 9521 1746 1746 9522 1760 1760 9523 1747 1747 9524 1747 1747 9525 1760 1760 9526 1758 1758 9527 1747 1747 9528 1758 1758 9529 1749 1749 9530 1749 1749 9531 1758 1758 9532 1759 1759 9533 1749 1749 9534 1759 1759 9535 1762 1762 9536 1759 1759 9537 1763 1763 9538 1762 1762 9539 1749 1749 9540 1762 1762 9541 1750 1750 9542 1762 1762 9543 1763 1763 9544 1764 1764 9545 1763 1763 9546 1765 1765 9547 1764 1764 9548 1762 1762 9549 1764 1764 9550 1766 1766 9551 1762 1762 9552 1766 1766 9553 1767 1767 9554 1762 1762 9555 1767 1767 9556 1750 1750 9557 1767 1767 9558 1766 1766 9559 1768 1768 9560 1750 1750 9561 1767 1767 9562 1768 1768 9563 1750 1750 9564 1768 1768 9565 1751 1751 9566 1751 1751 9567 1768 1768 9568 1769 1769 9569 1751 1751 9570 1769 1769 9571 1748 1748 9572 1748 1748 9573 1769 1769 9574 1770 1770 9575 1748 1748 9576 1770 1770 9577 1745 1745 9578 1770 1770 9579 1769 1769 9580 1771 1771 9581 1771 1771 9582 1769 1769 9583 1768 1768 9584 1771 1771 9585 1768 1768 9586 1772 1772 9587 1772 1772 9588 1768 1768 9589 1766 1766 9590 1771 1771 9591 1773 1773 9592 1770 1770 9593 1770 1770 9594 1773 1773 9595 1774 1774 9596 1770 1770 9597 1774 1774 9598 1745 1745 9599 1774 1774 9600 1744 1744 9601 1745 1745 9602 1744 1744 9603 1774 1774 9604 1775 1775 9605 1744 1744 9606 1775 1775 9607 1742 1742 9608 1742 1742 9609 1775 1775 9610 1741 1741 9611 1775 1775 9612 1776 1776 9613 1741 1741 9614 1741 1741 9615 1776 1776 9616 1738 1738 9617 1776 1776 9618 1777 1777 9619 1738 1738 9620 1777 1777 9621 1739 1739 9622 1738 1738 9623 1777 1777 9624 1776 1776 9625 1778 1778 9626 1778 1778 9627 1776 1776 9628 1775 1775 9629 1778 1778 9630 1775 1775 9631 1779 1779 9632 1779 1779 9633 1775 1775 9634 1774 1774 9635 1779 1779 9636 1774 1774 9637 1780 1780 9638 1780 1780 9639 1774 1774 9640 1773 1773 9641 1778 1778 9642 1781 1781 9643 1777 1777 9644 1777 1777 9645 1781 1781 9646 1782 1782 9647 1781 1781 9648 1783 1783 9649 1782 1782 9650 1777 1777 9651 1782 1782 9652 1736 1736 9653 1777 1777 9654 1736 1736 9655 1739 1739 9656 1739 1739 9657 1736 1736 9658 1784 1784 9659 1739 1739 9660 1784 1784 9661 1737 1737 9662 1737 1737 9663 1784 1784 9664 1725 1725 9665 1737 1737 9666 1725 1725 9667 1698 1698 9668 1737 1737 9669 1698 1698 9670 1740 1740 9671 1740 1740 9672 1698 1698 9673 1743 1743 9674 1726 1726 9675 1725 1725 9676 1784 1784 9677 1726 1726 9678 1784 1784 9679 1785 1785 9680 1785 1785 9681 1784 1784 9682 1736 1736 9683 1726 1726 9684 1785 1785 9685 1727 1727 9686 1727 1727 9687 1785 1785 9688 1786 1786 9689 1727 1727 9690 1786 1786 9691 1728 1728 9692 1786 1786 9693 1785 1785 9694 1735 1735 9695 1728 1728 9696 1786 1786 9697 1787 1787 9698 1735 1735 9699 1787 1787 9700 1786 1786 9701 1728 1728 9702 1787 1787 9703 1729 1729 9704 1729 1729 9705 1787 1787 9706 1752 1752 9707 1729 1729 9708 1752 1752 9709 1730 1730 9710 1787 1787 9711 1753 1753 9712 1752 1752 9713 1753 1753 9714 1787 1787 9715 1735 1735 9716 1752 1752 9717 1756 1756 9718 1730 1730 9719 1730 1730 9720 1756 1756 9721 1757 1757 9722 1756 1756 9723 1759 1759 9724 1757 1757 9725 1759 1759 9726 1756 1756 9727 1763 1763 9728 1756 1756 9729 1788 1788 9730 1763 1763 9731 1763 1763 9732 1788 1788 9733 1765 1765 9734 1788 1788 9735 1789 1789 9736 1765 1765 9737 1789 1789 9738 1788 1788 9739 1790 1790 9740 1790 1790 9741 1788 1788 9742 1756 1756 9743 1790 1790 9744 1756 1756 9745 1755 1755 9746 1790 1790 9747 1755 1755 9748 1754 1754 9749 1790 1790 9750 1754 1754 9751 1791 1791 9752 1791 1791 9753 1754 1754 9754 1753 1753 9755 1791 1791 9756 1753 1753 9757 1792 1792 9758 1792 1792 9759 1753 1753 9760 1735 1735 9761 1791 1791 9762 1792 1792 9763 1793 1793 9764 1791 1791 9765 1793 1793 9766 1794 1794 9767 1791 1791 9768 1794 1794 9769 1790 1790 9770 1790 1790 9771 1794 1794 9772 1789 1789 9773 1792 1792 9774 1795 1795 9775 1793 1793 9776 1795 1795 9777 1792 1792 9778 1796 1796 9779 1792 1792 9780 1797 1797 9781 1796 1796 9782 1797 1797 9783 1792 1792 9784 1735 1735 9785 1796 1796 9786 1797 1797 9787 1798 1798 9788 1797 1797 9789 1735 1735 9790 1734 1734 9791 1798 1798 9792 1797 1797 9793 1799 1799 9794 1734 1734 9795 1799 1799 9796 1797 1797 9797 1798 1798 9798 1799 1799 9799 1783 1783 9800 1799 1799 9801 1782 1782 9802 1783 1783 9803 1782 1782 9804 1799 1799 9805 1734 1734 9806 1782 1782 9807 1734 1734 9808 1736 1736 9809 1736 1736 9810 1733 1733 9811 1785 1785 9812 1785 1785 9813 1733 1733 9814 1735 1735 9815 1800 1800 9816 1801 1801 9817 1802 1802 9818 1800 1800 9819 1802 1802 9820 1803 1803 9821 1803 1803 9822 1802 1802 9823 1804 1804 9824 1800 1800 9825 1803 1803 9826 1805 1805 9827 1804 1804 9828 1806 1806 9829 1803 1803 9830 1805 1805 9831 1803 1803 9832 1806 1806 9833 1805 1805 9834 1806 1806 9835 1807 1807 9836 1807 1807 9837 1806 1806 9838 1804 1804 9839 1807 1807 9840 1804 1804 9841 1808 1808 9842 1807 1807 9843 1808 1808 9844 1809 1809 9845 1807 1807 9846 1809 1809 9847 1810 1810 9848 1807 1807 9849 1810 1810 9850 1805 1805 9851 1805 1805 9852 1810 1810 9853 1811 1811 9854 1805 1805 9855 1811 1811 9856 1812 1812 9857 1805 1805 9858 1812 1812 9859 1813 1813 9860 1805 1805 9861 1813 1813 9862 1800 1800 9863 1812 1812 9864 1811 1811 9865 1814 1814 9866 1812 1812 9867 1814 1814 9868 1815 1815 9869 1814 1814 9870 1811 1811 9871 1816 1816 9872 1816 1816 9873 1811 1811 9874 1810 1810 9875 1816 1816 9876 1810 1810 9877 1817 1817 9878 1810 1810 9879 1818 1818 9880 1817 1817 9881 1818 1818 9882 1810 1810 9883 1809 1809 9884 1818 1818 9885 1809 1809 9886 1819 1819 9887 1809 1809 9888 1820 1820 9889 1819 1819 9890 1820 1820 9891 1809 1809 9892 1808 1808 9893 1820 1820 9894 1808 1808 9895 1821 1821 9896 1820 1820 9897 1821 1821 9898 1822 1822 9899 1820 1820 9900 1822 1822 9901 1823 1823 9902 1823 1823 9903 1822 1822 9904 1824 1824 9905 1820 1820 9906 1823 1823 9907 1825 1825 9908 1820 1820 9909 1825 1825 9910 1819 1819 9911 1823 1823 9912 1826 1826 9913 1825 1825 9914 1826 1826 9915 1823 1823 9916 1824 1824 9917 1826 1826 9918 1824 1824 9919 1827 1827 9920 1826 1826 9921 1827 1827 9922 1828 1828 9923 1826 1826 9924 1828 1828 9925 1825 1825 9926 1828 1828 9927 1827 1827 9928 1829 1829 9929 1828 1828 9930 1829 1829 9931 1830 1830 9932 1830 1830 9933 1829 1829 9934 1831 1831 9935 1828 1828 9936 1830 1830 9937 1832 1832 9938 1828 1828 9939 1832 1832 9940 1833 1833 9941 1828 1828 9942 1833 1833 9943 1825 1825 9944 1825 1825 9945 1833 1833 9946 1834 1834 9947 1825 1825 9948 1834 1834 9949 1835 1835 9950 1825 1825 9951 1835 1835 9952 1819 1819 9953 1835 1835 9954 1836 1836 9955 1819 1819 9956 1819 1819 9957 1836 1836 9958 1818 1818 9959 1836 1836 9960 1817 1817 9961 1818 1818 9962 1817 1817 9963 1836 1836 9964 1837 1837 9965 1817 1817 9966 1837 1837 9967 1838 1838 9968 1817 1817 9969 1838 1838 9970 1816 1816 9971 1838 1838 9972 1839 1839 9973 1816 1816 9974 1816 1816 9975 1839 1839 9976 1814 1814 9977 1839 1839 9978 1838 1838 9979 1265 1265 9980 1265 1265 9981 1838 1838 9982 1837 1837 9983 1265 1265 9984 1837 1837 9985 1268 1268 9986 1268 1268 9987 1837 1837 9988 1840 1840 9989 1840 1840 9990 1837 1837 9991 1836 1836 9992 1840 1840 9993 1836 1836 9994 1835 1835 9995 1840 1840 9996 1835 1835 9997 1834 1834 9998 1840 1840 9999 1834 1834 10000 1841 1841 10001 1841 1841 10002 1834 1834 10003 1842 1842 10004 1842 1842 10005 1834 1834 10006 1833 1833 10007 1842 1842 10008 1833 1833 10009 1832 1832 10010 1842 1842 10011 1832 1832 10012 1843 1843 10013 1843 1843 10014 1832 1832 10015 1844 1844 10016 1832 1832 10017 1830 1830 10018 1844 1844 10019 1844 1844 10020 1830 1830 10021 1831 1831 10022 1844 1844 10023 1831 1831 10024 1845 1845 10025 1831 1831 10026 1846 1846 10027 1845 1845 10028 1844 1844 10029 1845 1845 10030 1847 1847 10031 1844 1844 10032 1847 1847 10033 1843 1843 10034 1847 1847 10035 1845 1845 10036 1813 1813 10037 1843 1843 10038 1847 1847 10039 1848 1848 10040 1813 1813 10041 1848 1848 10042 1847 1847 10043 1843 1843 10044 1848 1848 10045 1849 1849 10046 1843 1843 10047 1849 1849 10048 1842 1842 10049 1842 1842 10050 1849 1849 10051 1850 1850 10052 1842 1842 10053 1850 1850 10054 1841 1841 10055 1841 1841 10056 1850 1850 10057 1271 1271 10058 1841 1841 10059 1271 1271 10060 1269 1269 10061 1841 1841 10062 1269 1269 10063 1840 1840 10064 1840 1840 10065 1269 1269 10066 1268 1268 10067 1265 1265 10068 1264 1264 10069 1839 1839 10070 1839 1839 10071 1264 1264 10072 1258 1258 10073 1839 1839 10074 1258 1258 10075 1814 1814 10076 1258 1258 10077 1815 1815 10078 1814 1814 10079 1815 1815 10080 1258 1258 10081 1257 1257 10082 1850 1850 10083 1279 1279 10084 1271 1271 10085 1279 1279 10086 1850 1850 10087 1851 1851 10088 1851 1851 10089 1850 1850 10090 1849 1849 10091 1279 1279 10092 1851 1851 10093 1281 1281 10094 1851 1851 10095 1849 1849 10096 1852 1852 10097 1849 1849 10098 1848 1848 10099 1852 1852 10100 1851 1851 10101 1852 1852 10102 1281 1281 10103 1852 1852 10104 1288 1288 10105 1281 1281 10106 1288 1288 10107 1852 1852 10108 1257 1257 10109 1852 1852 10110 1815 1815 10111 1257 1257 10112 1815 1815 10113 1852 1852 10114 1812 1812 10115 1852 1852 10116 1848 1848 10117 1812 1812 10118 1812 1812 10119 1848 1848 10120 1813 1813 10121 1813 1813 10122 1845 1845 10123 1800 1800 10124 1800 1800 10125 1845 1845 10126 1846 1846 10127 1800 1800 10128 1846 1846 10129 1801 1801 10130 1853 1853 10131 1854 1854 10132 1855 1855 10133 1854 1854 10134 1853 1853 10135 1856 1856 10136 1854 1854 10137 1856 1856 10138 1857 1857 10139 1856 1856 10140 1853 1853 10141 1858 1858 10142 1853 1853 10143 1859 1859 10144 1858 1858 10145 1858 1858 10146 1859 1859 10147 1801 1801 10148 1858 1858 10149 1801 1801 10150 1846 1846 10151 1858 1858 10152 1846 1846 10153 1831 1831 10154 1858 1858 10155 1831 1831 10156 1860 1860 10157 1858 1858 10158 1860 1860 10159 1856 1856 10160 1860 1860 10161 1831 1831 10162 1829 1829 10163 1856 1856 10164 1860 1860 10165 1861 1861 10166 1856 1856 10167 1861 1861 10168 1862 1862 10169 1856 1856 10170 1862 1862 10171 1857 1857 10172 1857 1857 10173 1862 1862 10174 1863 1863 10175 1862 1862 10176 1864 1864 10177 1863 1863 10178 1864 1864 10179 1862 1862 10180 1861 1861 10181 1863 1863 10182 1864 1864 10183 1865 1865 10184 1864 1864 10185 1866 1866 10186 1865 1865 10187 1865 1865 10188 1866 1866 10189 1867 1867 10190 1866 1866 10191 1864 1864 10192 1868 1868 10193 1864 1864 10194 1869 1869 10195 1868 1868 10196 1869 1869 10197 1864 1864 10198 1861 1861 10199 1869 1869 10200 1861 1861 10201 1870 1870 10202 1869 1869 10203 1870 1870 10204 1868 1868 10205 1861 1861 10206 1871 1871 10207 1870 1870 10208 1871 1871 10209 1861 1861 10210 1860 1860 10211 1871 1871 10212 1860 1860 10213 1872 1872 10214 1872 1872 10215 1860 1860 10216 1829 1829 10217 1872 1872 10218 1829 1829 10219 1873 1873 10220 1829 1829 10221 1827 1827 10222 1873 1873 10223 1873 1873 10224 1827 1827 10225 1824 1824 10226 1873 1873 10227 1824 1824 10228 1874 1874 10229 1874 1874 10230 1824 1824 10231 1822 1822 10232 1873 1873 10233 1874 1874 10234 1875 1875 10235 1873 1873 10236 1875 1875 10237 1876 1876 10238 1873 1873 10239 1876 1876 10240 1872 1872 10241 1876 1876 10242 1871 1871 10243 1872 1872 10244 1871 1871 10245 1876 1876 10246 1877 1877 10247 1871 1871 10248 1877 1877 10249 1870 1870 10250 1870 1870 10251 1877 1877 10252 1878 1878 10253 1870 1870 10254 1878 1878 10255 1879 1879 10256 1870 1870 10257 1879 1879 10258 1868 1868 10259 1868 1868 10260 1879 1879 10261 1880 1880 10262 1868 1868 10263 1880 1880 10264 1881 1881 10265 1868 1868 10266 1881 1881 10267 1866 1866 10268 1881 1881 10269 1880 1880 10270 1882 1882 10271 1866 1866 10272 1881 1881 10273 1882 1882 10274 1866 1866 10275 1882 1882 10276 1867 1867 10277 1867 1867 10278 1882 1882 10279 1883 1883 10280 1867 1867 10281 1883 1883 10282 1884 1884 10283 1883 1883 10284 1882 1882 10285 1880 1880 10286 1883 1883 10287 1880 1880 10288 1879 1879 10289 1883 1883 10290 1879 1879 10291 1878 1878 10292 1883 1883 10293 1878 1878 10294 1884 1884 10295 1878 1878 10296 1885 1885 10297 1884 1884 10298 1885 1885 10299 1878 1878 10300 1877 1877 10301 1885 1885 10302 1877 1877 10303 1886 1886 10304 1886 1886 10305 1877 1877 10306 1876 1876 10307 1886 1886 10308 1876 1876 10309 1887 1887 10310 1887 1887 10311 1876 1876 10312 1888 1888 10313 1876 1876 10314 1875 1875 10315 1888 1888 10316 1888 1888 10317 1875 1875 10318 1889 1889 10319 1889 1889 10320 1875 1875 10321 1890 1890 10322 1889 1889 10323 1890 1890 10324 1891 1891 10325 1890 1890 10326 1875 1875 10327 1892 1892 10328 1875 1875 10329 1874 1874 10330 1892 1892 10331 1892 1892 10332 1874 1874 10333 1822 1822 10334 1892 1892 10335 1822 1822 10336 1893 1893 10337 1822 1822 10338 1821 1821 10339 1893 1893 10340 1892 1892 10341 1893 1893 10342 1890 1890 10343 1893 1893 10344 1894 1894 10345 1890 1890 10346 1890 1890 10347 1894 1894 10348 1891 1891 10349 1894 1894 10350 1895 1895 10351 1891 1891 10352 1895 1895 10353 1894 1894 10354 1896 1896 10355 1896 1896 10356 1894 1894 10357 1893 1893 10358 1895 1895 10359 1896 1896 10360 1897 1897 10361 1897 1897 10362 1896 1896 10363 1898 1898 10364 1896 1896 10365 1899 1899 10366 1898 1898 10367 1899 1899 10368 1900 1900 10369 1898 1898 10370 1899 1899 10371 1896 1896 10372 1901 1901 10373 1901 1901 10374 1896 1896 10375 1893 1893 10376 1901 1901 10377 1893 1893 10378 1821 1821 10379 1901 1901 10380 1821 1821 10381 1808 1808 10382 1901 1901 10383 1808 1808 10384 1804 1804 10385 1901 1901 10386 1804 1804 10387 1902 1902 10388 1901 1901 10389 1902 1902 10390 1899 1899 10391 1902 1902 10392 1804 1804 10393 1802 1802 10394 1899 1899 10395 1902 1902 10396 1903 1903 10397 1899 1899 10398 1903 1903 10399 1900 1900 10400 1900 1900 10401 1903 1903 10402 1904 1904 10403 1904 1904 10404 1903 1903 10405 1855 1855 10406 1903 1903 10407 1853 1853 10408 1855 1855 10409 1853 1853 10410 1903 1903 10411 1905 1905 10412 1905 1905 10413 1903 1903 10414 1902 1902 10415 1905 1905 10416 1902 1902 10417 1802 1802 10418 1905 1905 10419 1802 1802 10420 1801 1801 10421 1905 1905 10422 1801 1801 10423 1859 1859 10424 1905 1905 10425 1859 1859 10426 1853 1853 10427 1865 1865 10428 1867 1867 10429 1884 1884 10430 1865 1865 10431 1884 1884 10432 1885 1885 10433 1865 1865 10434 1885 1885 10435 1863 1863 10436 1885 1885 10437 1886 1886 10438 1863 1863 10439 1863 1863 10440 1886 1886 10441 1857 1857 10442 1886 1886 10443 1887 1887 10444 1857 1857 10445 1857 1857 10446 1887 1887 10447 1854 1854 10448 1887 1887 10449 1888 1888 10450 1854 1854 10451 1854 1854 10452 1888 1888 10453 1889 1889 10454 1854 1854 10455 1889 1889 10456 1855 1855 10457 1855 1855 10458 1889 1889 10459 1891 1891 10460 1855 1855 10461 1891 1891 10462 1904 1904 10463 1904 1904 10464 1891 1891 10465 1895 1895 10466 1904 1904 10467 1895 1895 10468 1900 1900 10469 1900 1900 10470 1895 1895 10471 1897 1897 10472 1900 1900 10473 1897 1897 10474 1898 1898 10475 1906 1906 10476 1393 1393 10477 1392 1392 10478 1906 1906 10479 1392 1392 10480 1907 1907 10481 1907 1907 10482 1392 1392 10483 1389 1389 10484 1907 1907 10485 1389 1389 10486 1388 1388 10487 1907 1907 10488 1388 1388 10489 1390 1390 10490 1907 1907 10491 1390 1390 10492 1400 1400 10493 1907 1907 10494 1400 1400 10495 1906 1906 10496 1400 1400 10497 1401 1401 10498 1906 1906 10499 1908 1908 10500 1391 1391 10501 1384 1384 10502 1908 1908 10503 1384 1384 10504 1381 1381 10505 1908 1908 10506 1381 1381 10507 1380 1380 10508 1908 1908 10509 1380 1380 10510 1399 1399 10511 1382 1382 10512 1383 1383 10513 1393 1393 10514 1382 1382 10515 1393 1393 10516 1906 1906 10517 1382 1382 10518 1906 1906 10519 1401 1401 10520 1382 1382 10521 1401 1401 10522 1379 1379 10523 1130 1130 10524 1369 1369 10525 1391 1391 10526 1130 1130 10527 1391 1391 10528 1132 1132 10529 1391 1391 10530 1909 1909 10531 1132 1132 10532 1909 1909 10533 1391 1391 10534 1908 1908 10535 1909 1909 10536 1908 1908 10537 1910 1910 10538 1910 1910 10539 1908 1908 10540 1911 1911 10541 1908 1908 10542 1399 1399 10543 1911 1911 10544 1399 1399 10545 1159 1159 10546 1911 1911 10547 1159 1159 10548 1399 1399 10549 1155 1155 10550 1399 1399 10551 1398 1398 10552 1155 1155 10553 1765 1765 10554 1912 1912 10555 1913 1913 10556 1765 1765 10557 1913 1913 10558 1764 1764 10559 1764 1764 10560 1913 1913 10561 1914 1914 10562 1764 1764 10563 1914 1914 10564 1766 1766 10565 1766 1766 10566 1914 1914 10567 1772 1772 10568 1914 1914 10569 1915 1915 10570 1772 1772 10571 1772 1772 10572 1915 1915 10573 1771 1771 10574 1915 1915 10575 1916 1916 10576 1771 1771 10577 1771 1771 10578 1916 1916 10579 1773 1773 10580 1916 1916 10581 1917 1917 10582 1773 1773 10583 1773 1773 10584 1917 1917 10585 1780 1780 10586 1917 1917 10587 1918 1918 10588 1780 1780 10589 1780 1780 10590 1918 1918 10591 1919 1919 10592 1780 1780 10593 1919 1919 10594 1779 1779 10595 1779 1779 10596 1919 1919 10597 1920 1920 10598 1779 1779 10599 1920 1920 10600 1778 1778 10601 1778 1778 10602 1920 1920 10603 1781 1781 10604 1920 1920 10605 1921 1921 10606 1781 1781 10607 1781 1781 10608 1921 1921 10609 1783 1783 10610 1921 1921 10611 1922 1922 10612 1783 1783 10613 1783 1783 10614 1922 1922 10615 1798 1798 10616 1922 1922 10617 1923 1923 10618 1798 1798 10619 1798 1798 10620 1923 1923 10621 1796 1796 10622 1923 1923 10623 1924 1924 10624 1796 1796 10625 1796 1796 10626 1924 1924 10627 1925 1925 10628 1796 1796 10629 1925 1925 10630 1795 1795 10631 1795 1795 10632 1925 1925 10633 1793 1793 10634 1925 1925 10635 1926 1926 10636 1793 1793 10637 1793 1793 10638 1926 1926 10639 1927 1927 10640 1793 1793 10641 1927 1927 10642 1794 1794 10643 1794 1794 10644 1927 1927 10645 1928 1928 10646 1794 1794 10647 1928 1928 10648 1789 1789 10649 1789 1789 10650 1928 1928 10651 1912 1912 10652 1789 1789 10653 1912 1912 10654 1765 1765 10655 1921 1921 10656 1920 1920 10657 1919 1919 10658 1921 1921 10659 1919 1919 10660 1918 1918 10661 1921 1921 10662 1918 1918 10663 1929 1929 10664 1921 1921 10665 1929 1929 10666 1930 1930 10667 1921 1921 10668 1930 1930 10669 1922 1922 10670 1922 1922 10671 1930 1930 10672 1923 1923 10673 1930 1930 10674 1931 1931 10675 1923 1923 10676 1923 1923 10677 1931 1931 10678 1924 1924 10679 1931 1931 10680 1932 1932 10681 1924 1924 10682 1924 1924 10683 1932 1932 10684 1925 1925 10685 1932 1932 10686 1933 1933 10687 1925 1925 10688 1925 1925 10689 1933 1933 10690 1928 1928 10691 1925 1925 10692 1928 1928 10693 1926 1926 10694 1933 1933 10695 1934 1934 10696 1928 1928 10697 1926 1926 10698 1928 1928 10699 1927 1927 10700 1928 1928 10701 1934 1934 10702 1912 1912 10703 1934 1934 10704 1935 1935 10705 1912 1912 10706 1936 1936 10707 1929 1929 10708 1918 1918 10709 1936 1936 10710 1918 1918 10711 1917 1917 10712 1936 1936 10713 1917 1917 10714 1916 1916 10715 1936 1936 10716 1916 1916 10717 1937 1937 10718 1937 1937 10719 1916 1916 10720 1938 1938 10721 1916 1916 10722 1913 1913 10723 1938 1938 10724 1938 1938 10725 1913 1913 10726 1935 1935 10727 1913 1913 10728 1912 1912 10729 1935 1935 10730 1913 1913 10731 1916 1916 10732 1914 1914 10733 1916 1916 10734 1915 1915 10735 1914 1914 10736 1939 1939 10737 1932 1932 10738 1931 1931 10739 1939 1939 10740 1931 1931 10741 1940 1940 10742 1940 1940 10743 1931 1931 10744 1930 1930 10745 1939 1939 10746 1940 1940 10747 1941 1941 10748 1930 1930 10749 1942 1942 10750 1940 1940 10751 1941 1941 10752 1940 1940 10753 1942 1942 10754 1930 1930 10755 1943 1943 10756 1942 1942 10757 1943 1943 10758 1930 1930 10759 1929 1929 10760 1943 1943 10761 1929 1929 10762 1944 1944 10763 1929 1929 10764 1936 1936 10765 1944 1944 10766 1944 1944 10767 1936 1936 10768 1945 1945 10769 1936 1936 10770 1937 1937 10771 1945 1945 10772 1944 1944 10773 1945 1945 10774 1946 1946 10775 1946 1946 10776 1945 1945 10777 1947 1947 10778 1945 1945 10779 1937 1937 10780 1947 1947 10781 1947 1947 10782 1937 1937 10783 1948 1948 10784 1937 1937 10785 1938 1938 10786 1948 1948 10787 1948 1948 10788 1938 1938 10789 1935 1935 10790 1948 1948 10791 1935 1935 10792 1949 1949 10793 1948 1948 10794 1949 1949 10795 1950 1950 10796 1948 1948 10797 1950 1950 10798 1947 1947 10799 1947 1947 10800 1950 1950 10801 1951 1951 10802 1947 1947 10803 1951 1951 10804 1946 1946 10805 1946 1946 10806 1951 1951 10807 1952 1952 10808 1946 1946 10809 1952 1952 10810 1953 1953 10811 1946 1946 10812 1953 1953 10813 1944 1944 10814 1944 1944 10815 1953 1953 10816 1954 1954 10817 1944 1944 10818 1954 1954 10819 1943 1943 10820 1953 1953 10821 1955 1955 10822 1954 1954 10823 1943 1943 10824 1954 1954 10825 1956 1956 10826 1955 1955 10827 1956 1956 10828 1954 1954 10829 1943 1943 10830 1956 1956 10831 1957 1957 10832 1943 1943 10833 1957 1957 10834 1942 1942 10835 1957 1957 10836 1958 1958 10837 1942 1942 10838 1942 1942 10839 1958 1958 10840 1941 1941 10841 1958 1958 10842 1957 1957 10843 1959 1959 10844 1959 1959 10845 1957 1957 10846 1960 1960 10847 1960 1960 10848 1957 1957 10849 1956 1956 10850 1960 1960 10851 1956 1956 10852 1955 1955 10853 1960 1960 10854 1955 1955 10855 1961 1961 10856 1960 1960 10857 1961 1961 10858 1959 1959 10859 1959 1959 10860 1961 1961 10861 1962 1962 10862 1959 1959 10863 1962 1962 10864 1958 1958 10865 1962 1962 10866 1963 1963 10867 1958 1958 10868 1958 1958 10869 1963 1963 10870 1964 1964 10871 1958 1958 10872 1964 1964 10873 1941 1941 10874 1964 1964 10875 1965 1965 10876 1941 1941 10877 1941 1941 10878 1965 1965 10879 1966 1966 10880 1941 1941 10881 1966 1966 10882 1939 1939 10883 1965 1965 10884 1967 1967 10885 1966 1966 10886 1967 1967 10887 1965 1965 10888 1968 1968 10889 1968 1968 10890 1965 1965 10891 1964 1964 10892 1967 1967 10893 1968 1968 10894 1969 1969 10895 1968 1968 10896 1964 1964 10897 1970 1970 10898 1970 1970 10899 1964 1964 10900 1963 1963 10901 1970 1970 10902 1963 1963 10903 1971 1971 10904 1971 1971 10905 1963 1963 10906 1972 1972 10907 1963 1963 10908 1973 1973 10909 1972 1972 10910 1973 1973 10911 1963 1963 10912 1962 1962 10913 1973 1973 10914 1962 1962 10915 1974 1974 10916 1962 1962 10917 1961 1961 10918 1974 1974 10919 1973 1973 10920 1974 1974 10921 1975 1975 10922 1974 1974 10923 1961 1961 10924 1976 1976 10925 1975 1975 10926 1974 1974 10927 1976 1976 10928 1961 1961 10929 1977 1977 10930 1976 1976 10931 1977 1977 10932 1961 1961 10933 1955 1955 10934 1977 1977 10935 1955 1955 10936 1978 1978 10937 1955 1955 10938 1953 1953 10939 1978 1978 10940 1978 1978 10941 1953 1953 10942 1952 1952 10943 1978 1978 10944 1952 1952 10945 1979 1979 10946 1978 1978 10947 1979 1979 10948 1977 1977 10949 1977 1977 10950 1979 1979 10951 1976 1976 10952 1976 1976 10953 1979 1979 10954 1980 1980 10955 1976 1976 10956 1980 1980 10957 1975 1975 10958 1979 1979 10959 1981 1981 10960 1980 1980 10961 1981 1981 10962 1979 1979 10963 1952 1952 10964 1981 1981 10965 1952 1952 10966 1982 1982 10967 1982 1982 10968 1952 1952 10969 1951 1951 10970 1981 1981 10971 1982 1982 10972 1983 1983 10973 1982 1982 10974 1951 1951 10975 1984 1984 10976 1983 1983 10977 1982 1982 10978 1984 1984 10979 1951 1951 10980 1950 1950 10981 1984 1984 10982 1984 1984 10983 1950 1950 10984 1985 1985 10985 1950 1950 10986 1949 1949 10987 1985 1985 10988 1984 1984 10989 1985 1985 10990 1986 1986 10991 1984 1984 10992 1986 1986 10993 1983 1983 10994 1983 1983 10995 1986 1986 10996 1987 1987 10997 1983 1983 10998 1987 1987 10999 1988 1988 11000 1983 1983 11001 1988 1988 11002 1981 1981 11003 1988 1988 11004 1989 1989 11005 1981 1981 11006 1989 1989 11007 1988 1988 11008 1990 1990 11009 1990 1990 11010 1988 1988 11011 1987 1987 11012 1989 1989 11013 1990 1990 11014 1991 1991 11015 1989 1989 11016 1991 1991 11017 1992 1992 11018 1989 1989 11019 1992 1992 11020 1993 1993 11021 1989 1989 11022 1993 1993 11023 1981 1981 11024 1981 1981 11025 1993 1993 11026 1994 1994 11027 1981 1981 11028 1994 1994 11029 1980 1980 11030 1994 1994 11031 1993 1993 11032 1995 1995 11033 1995 1995 11034 1993 1993 11035 1992 1992 11036 1995 1995 11037 1992 1992 11038 1996 1996 11039 1995 1995 11040 1997 1997 11041 1994 1994 11042 1994 1994 11043 1997 1997 11044 1998 1998 11045 1997 1997 11046 1999 1999 11047 1998 1998 11048 1998 1998 11049 1999 1999 11050 2000 2000 11051 1998 1998 11052 2000 2000 11053 2001 2001 11054 1998 1998 11055 2001 2001 11056 2002 2002 11057 1998 1998 11058 2002 2002 11059 1994 1994 11060 2002 2002 11061 2003 2003 11062 1994 1994 11063 1994 1994 11064 2003 2003 11065 1980 1980 11066 1980 1980 11067 2003 2003 11068 2004 2004 11069 1980 1980 11070 2004 2004 11071 1975 1975 11072 2004 2004 11073 2003 2003 11074 2005 2005 11075 2005 2005 11076 2003 2003 11077 2002 2002 11078 2005 2005 11079 2002 2002 11080 2006 2006 11081 2006 2006 11082 2002 2002 11083 2007 2007 11084 2007 2007 11085 2002 2002 11086 2001 2001 11087 2006 2006 11088 2007 2007 11089 2008 2008 11090 2007 2007 11091 2001 2001 11092 2009 2009 11093 2009 2009 11094 2001 2001 11095 2000 2000 11096 2009 2009 11097 2000 2000 11098 2010 2010 11099 2009 2009 11100 2010 2010 11101 2011 2011 11102 2009 2009 11103 2011 2011 11104 2012 2012 11105 2012 2012 11106 2011 2011 11107 2013 2013 11108 2009 2009 11109 2012 2012 11110 2014 2014 11111 2009 2009 11112 2014 2014 11113 2007 2007 11114 2007 2007 11115 2014 2014 11116 2008 2008 11117 2014 2014 11118 2015 2015 11119 2008 2008 11120 2015 2015 11121 2014 2014 11122 2016 2016 11123 2016 2016 11124 2014 2014 11125 2012 2012 11126 2015 2015 11127 2016 2016 11128 2017 2017 11129 2017 2017 11130 2016 2016 11131 2018 2018 11132 2016 2016 11133 2019 2019 11134 2018 2018 11135 2018 2018 11136 2019 2019 11137 2020 2020 11138 2019 2019 11139 2016 2016 11140 2021 2021 11141 2020 2020 11142 2019 2019 11143 2021 2021 11144 2016 2016 11145 2012 2012 11146 2021 2021 11147 2021 2021 11148 2012 2012 11149 2013 2013 11150 2021 2021 11151 2013 2013 11152 2022 2022 11153 2021 2021 11154 2022 2022 11155 2020 2020 11156 2005 2005 11157 2023 2023 11158 2004 2004 11159 2004 2004 11160 2023 2023 11161 2024 2024 11162 2023 2023 11163 2025 2025 11164 2024 2024 11165 2024 2024 11166 2025 2025 11167 2026 2026 11168 2024 2024 11169 2026 2026 11170 2027 2027 11171 2024 2024 11172 2027 2027 11173 2028 2028 11174 2024 2024 11175 2028 2028 11176 2004 2004 11177 2028 2028 11178 2029 2029 11179 2004 2004 11180 2004 2004 11181 2029 2029 11182 1975 1975 11183 1975 1975 11184 2029 2029 11185 1973 1973 11186 2029 2029 11187 2030 2030 11188 1973 1973 11189 1973 1973 11190 2030 2030 11191 2031 2031 11192 1973 1973 11193 2031 2031 11194 1972 1972 11195 2031 2031 11196 2032 2032 11197 1972 1972 11198 2032 2032 11199 2031 2031 11200 2033 2033 11201 2033 2033 11202 2031 2031 11203 2030 2030 11204 2033 2033 11205 2030 2030 11206 2034 2034 11207 2034 2034 11208 2030 2030 11209 2035 2035 11210 2035 2035 11211 2030 2030 11212 2029 2029 11213 2035 2035 11214 2029 2029 11215 2036 2036 11216 2036 2036 11217 2029 2029 11218 2028 2028 11219 2036 2036 11220 2028 2028 11221 2037 2037 11222 2037 2037 11223 2028 2028 11224 2038 2038 11225 2038 2038 11226 2028 2028 11227 2027 2027 11228 2037 2037 11229 2038 2038 11230 2039 2039 11231 2038 2038 11232 2027 2027 11233 2040 2040 11234 2040 2040 11235 2027 2027 11236 2026 2026 11237 2040 2040 11238 2026 2026 11239 2041 2041 11240 2040 2040 11241 2041 2041 11242 2042 2042 11243 2040 2040 11244 2042 2042 11245 2043 2043 11246 2043 2043 11247 2042 2042 11248 2044 2044 11249 2040 2040 11250 2043 2043 11251 2045 2045 11252 2040 2040 11253 2045 2045 11254 2038 2038 11255 2038 2038 11256 2045 2045 11257 2039 2039 11258 2045 2045 11259 2046 2046 11260 2039 2039 11261 2046 2046 11262 2045 2045 11263 2047 2047 11264 2047 2047 11265 2045 2045 11266 2043 2043 11267 2046 2046 11268 2047 2047 11269 2048 2048 11270 2048 2048 11271 2047 2047 11272 2049 2049 11273 2047 2047 11274 2050 2050 11275 2049 2049 11276 2049 2049 11277 2050 2050 11278 2051 2051 11279 2051 2051 11280 2050 2050 11281 2052 2052 11282 2050 2050 11283 2053 2053 11284 2052 2052 11285 2053 2053 11286 2050 2050 11287 2047 2047 11288 2053 2053 11289 2047 2047 11290 2043 2043 11291 2053 2053 11292 2043 2043 11293 2044 2044 11294 2053 2053 11295 2044 2044 11296 2052 2052 11297 2035 2035 11298 2054 2054 11299 2034 2034 11300 2034 2034 11301 2054 2054 11302 2055 2055 11303 2034 2034 11304 2055 2055 11305 2056 2056 11306 2034 2034 11307 2056 2056 11308 2033 2033 11309 2056 2056 11310 2055 2055 11311 2057 2057 11312 2055 2055 11313 2058 2058 11314 2057 2057 11315 2057 2057 11316 2058 2058 11317 2059 2059 11318 2057 2057 11319 2059 2059 11320 2060 2060 11321 2060 2060 11322 2059 2059 11323 2061 2061 11324 2060 2060 11325 2061 2061 11326 2062 2062 11327 2062 2062 11328 2061 2061 11329 2063 2063 11330 2062 2062 11331 2063 2063 11332 2064 2064 11333 2062 2062 11334 2064 2064 11335 2065 2065 11336 2064 2064 11337 2066 2066 11338 2065 2065 11339 2062 2062 11340 2065 2065 11341 2067 2067 11342 2066 2066 11343 2067 2067 11344 2065 2065 11345 2062 2062 11346 2067 2067 11347 2060 2060 11348 2060 2060 11349 2067 2067 11350 2068 2068 11351 2060 2060 11352 2068 2068 11353 2057 2057 11354 2057 2057 11355 2068 2068 11356 2069 2069 11357 2057 2057 11358 2069 2069 11359 2056 2056 11360 2056 2056 11361 2069 2069 11362 2033 2033 11363 2033 2033 11364 2069 2069 11365 2070 2070 11366 2033 2033 11367 2070 2070 11368 2032 2032 11369 2069 2069 11370 2071 2071 11371 2070 2070 11372 2071 2071 11373 2069 2069 11374 2068 2068 11375 2071 2071 11376 2068 2068 11377 2072 2072 11378 2072 2072 11379 2068 2068 11380 2067 2067 11381 2072 2072 11382 2067 2067 11383 2073 2073 11384 2073 2073 11385 2067 2067 11386 2066 2066 11387 2032 2032 11388 2074 2074 11389 1972 1972 11390 1972 1972 11391 2074 2074 11392 2075 2075 11393 1972 1972 11394 2075 2075 11395 1971 1971 11396 1971 1971 11397 2075 2075 11398 2076 2076 11399 1971 1971 11400 2076 2076 11401 1970 1970 11402 1970 1970 11403 2076 2076 11404 2077 2077 11405 1970 1970 11406 2077 2077 11407 1968 1968 11408 1968 1968 11409 2077 2077 11410 2078 2078 11411 1968 1968 11412 2078 2078 11413 2079 2079 11414 1968 1968 11415 2079 2079 11416 1969 1969 11417 2079 2079 11418 2080 2080 11419 1969 1969 11420 2080 2080 11421 2079 2079 11422 2081 2081 11423 2081 2081 11424 2079 2079 11425 2078 2078 11426 2081 2081 11427 2078 2078 11428 2082 2082 11429 2081 2081 11430 2082 2082 11431 2083 2083 11432 2082 2082 11433 2084 2084 11434 2083 2083 11435 2083 2083 11436 2084 2084 11437 2085 2085 11438 2083 2083 11439 2085 2085 11440 2086 2086 11441 2086 2086 11442 2085 2085 11443 2087 2087 11444 2085 2085 11445 2088 2088 11446 2087 2087 11447 2087 2087 11448 2088 2088 11449 2089 2089 11450 2087 2087 11451 2089 2089 11452 2090 2090 11453 2087 2087 11454 2090 2090 11455 2086 2086 11456 2090 2090 11457 2091 2091 11458 2086 2086 11459 2086 2086 11460 2091 2091 11461 2092 2092 11462 2086 2086 11463 2092 2092 11464 2083 2083 11465 2083 2083 11466 2092 2092 11467 2093 2093 11468 2083 2083 11469 2093 2093 11470 2081 2081 11471 2081 2081 11472 2093 2093 11473 2080 2080 11474 2094 2094 11475 2095 2095 11476 2096 2096 11477 2096 2096 11478 2095 2095 11479 2097 2097 11480 2096 2096 11481 2097 2097 11482 2098 2098 11483 2098 2098 11484 2097 2097 11485 2099 2099 11486 2097 2097 11487 2100 2100 11488 2099 2099 11489 2100 2100 11490 2097 2097 11491 2101 2101 11492 2100 2100 11493 2101 2101 11494 2102 2102 11495 2100 2100 11496 2102 2102 11497 2103 2103 11498 2103 2103 11499 2102 2102 11500 2104 2104 11501 1289 1289 11502 1261 1261 11503 2105 2105 11504 1289 1289 11505 2105 2105 11506 2094 2094 11507 1289 1289 11508 2094 2094 11509 1286 1286 11510 2094 2094 11511 2105 2105 11512 2106 2106 11513 1286 1286 11514 2094 2094 11515 2096 2096 11516 1286 1286 11517 2096 2096 11518 1285 1285 11519 2096 2096 11520 2098 2098 11521 1285 1285 11522 1285 1285 11523 2098 2098 11524 2099 2099 11525 1285 1285 11526 2099 2099 11527 1283 1283 11528 1283 1283 11529 2099 2099 11530 2100 2100 11531 1283 1283 11532 2100 2100 11533 1282 1282 11534 1282 1282 11535 2100 2100 11536 2103 2103 11537 1282 1282 11538 2103 2103 11539 1277 1277 11540 1277 1277 11541 2103 2103 11542 2104 2104 11543 1277 1277 11544 2104 2104 11545 1275 1275 11546 1275 1275 11547 2104 2104 11548 2107 2107 11549 1275 1275 11550 2107 2107 11551 1272 1272 11552 2107 2107 11553 2104 2104 11554 2108 2108 11555 2108 2108 11556 2104 2104 11557 2102 2102 11558 2108 2108 11559 2102 2102 11560 2109 2109 11561 2109 2109 11562 2102 2102 11563 2101 2101 11564 2109 2109 11565 2101 2101 11566 2110 2110 11567 2110 2110 11568 2101 2101 11569 2111 2111 11570 2101 2101 11571 2097 2097 11572 2111 2111 11573 2110 2110 11574 2111 2111 11575 2112 2112 11576 2110 2110 11577 2112 2112 11578 2113 2113 11579 2110 2110 11580 2113 2113 11581 2114 2114 11582 2110 2110 11583 2114 2114 11584 2109 2109 11585 2109 2109 11586 2114 2114 11587 2115 2115 11588 2109 2109 11589 2115 2115 11590 2108 2108 11591 2108 2108 11592 2115 2115 11593 2116 2116 11594 2108 2108 11595 2116 2116 11596 2117 2117 11597 2108 2108 11598 2117 2117 11599 2107 2107 11600 2107 2107 11601 2117 2117 11602 2118 2118 11603 2118 2118 11604 2117 2117 11605 2116 2116 11606 2118 2118 11607 2116 2116 11608 2119 2119 11609 2118 2118 11610 2119 2119 11611 2120 2120 11612 2119 2119 11613 2121 2121 11614 2120 2120 11615 2120 2120 11616 2121 2121 11617 2106 2106 11618 2121 2121 11619 2122 2122 11620 2106 2106 11621 2120 2120 11622 2106 2106 11623 2105 2105 11624 2120 2120 11625 2105 2105 11626 2123 2123 11627 2120 2120 11628 2123 2123 11629 2118 2118 11630 2123 2123 11631 2105 2105 11632 1261 1261 11633 2123 2123 11634 1261 1261 11635 1262 1262 11636 2123 2123 11637 1262 1262 11638 1274 1274 11639 2123 2123 11640 1274 1274 11641 2124 2124 11642 2123 2123 11643 2124 2124 11644 2118 2118 11645 2124 2124 11646 1274 1274 11647 1273 1273 11648 2118 2118 11649 2124 2124 11650 2125 2125 11651 2118 2118 11652 2125 2125 11653 2107 2107 11654 2125 2125 11655 2124 2124 11656 1273 1273 11657 2107 2107 11658 2125 2125 11659 1272 1272 11660 1273 1273 11661 1272 1272 11662 2125 2125 11663 2126 2126 11664 2122 2122 11665 2121 2121 11666 2126 2126 11667 2121 2121 11668 2127 2127 11669 2126 2126 11670 2127 2127 11671 2128 2128 11672 2127 2127 11673 2121 2121 11674 2129 2129 11675 2128 2128 11676 2127 2127 11677 2130 2130 11678 2129 2129 11679 2130 2130 11680 2127 2127 11681 2128 2128 11682 2130 2130 11683 1324 1324 11684 2128 2128 11685 1324 1324 11686 1294 1294 11687 1324 1324 11688 2130 2130 11689 2131 2131 11690 2131 2131 11691 2130 2130 11692 2129 2129 11693 1324 1324 11694 2131 2131 11695 1322 1322 11696 1322 1322 11697 2131 2131 11698 2132 2132 11699 1322 1322 11700 2132 2132 11701 1319 1319 11702 2132 2132 11703 2131 2131 11704 2133 2133 11705 2131 2131 11706 2129 2129 11707 2133 2133 11708 2133 2133 11709 2129 2129 11710 2119 2119 11711 2119 2119 11712 2129 2129 11713 2121 2121 11714 2133 2133 11715 2119 2119 11716 2116 2116 11717 2133 2133 11718 2116 2116 11719 2134 2134 11720 2116 2116 11721 2115 2115 11722 2134 2134 11723 2133 2133 11724 2134 2134 11725 2135 2135 11726 2133 2133 11727 2135 2135 11728 2132 2132 11729 2132 2132 11730 2135 2135 11731 1319 1319 11732 2135 2135 11733 1317 1317 11734 1319 1319 11735 1317 1317 11736 2135 2135 11737 2136 2136 11738 2136 2136 11739 2135 2135 11740 2134 2134 11741 1317 1317 11742 2136 2136 11743 1316 1316 11744 2134 2134 11745 2137 2137 11746 2136 2136 11747 2137 2137 11748 2134 2134 11749 2115 2115 11750 2137 2137 11751 2115 2115 11752 2114 2114 11753 2137 2137 11754 2114 2114 11755 2138 2138 11756 2114 2114 11757 2113 2113 11758 2138 2138 11759 2137 2137 11760 2138 2138 11761 2139 2139 11762 2137 2137 11763 2139 2139 11764 2136 2136 11765 2136 2136 11766 2139 2139 11767 1316 1316 11768 2139 2139 11769 1312 1312 11770 1316 1316 11771 1312 1312 11772 2139 2139 11773 2140 2140 11774 1312 1312 11775 2140 2140 11776 1310 1310 11777 1310 1310 11778 2140 2140 11779 2141 2141 11780 1310 1310 11781 2141 2141 11782 1305 1305 11783 2141 2141 11784 2142 2142 11785 1305 1305 11786 1305 1305 11787 2142 2142 11788 2143 2143 11789 1305 1305 11790 2143 2143 11791 1304 1304 11792 1304 1304 11793 2143 2143 11794 2144 2144 11795 1304 1304 11796 2144 2144 11797 1299 1299 11798 2144 2144 11799 2145 2145 11800 1299 1299 11801 1299 1299 11802 2145 2145 11803 2146 2146 11804 1299 1299 11805 2146 2146 11806 1297 1297 11807 2146 2146 11808 2147 2147 11809 1297 1297 11810 1297 1297 11811 2147 2147 11812 1296 1296 11813 2147 2147 11814 2148 2148 11815 1296 1296 11816 1296 1296 11817 2148 2148 11818 2128 2128 11819 1296 1296 11820 2128 2128 11821 1294 1294 11822 2128 2128 11823 2148 2148 11824 2126 2126 11825 2148 2148 11826 2149 2149 11827 2126 2126 11828 2126 2126 11829 2149 2149 11830 2122 2122 11831 2149 2149 11832 2150 2150 11833 2122 2122 11834 2150 2150 11835 2149 2149 11836 2151 2151 11837 2150 2150 11838 2151 2151 11839 2152 2152 11840 2152 2152 11841 2151 2151 11842 2153 2153 11843 2152 2152 11844 2153 2153 11845 2154 2154 11846 2152 2152 11847 2154 2154 11848 2155 2155 11849 2152 2152 11850 2155 2155 11851 2156 2156 11852 2152 2152 11853 2156 2156 11854 2112 2112 11855 2156 2156 11856 2157 2157 11857 2112 2112 11858 2112 2112 11859 2157 2157 11860 2113 2113 11861 2157 2157 11862 2158 2158 11863 2113 2113 11864 2113 2113 11865 2158 2158 11866 2159 2159 11867 2113 2113 11868 2159 2159 11869 2138 2138 11870 2159 2159 11871 2160 2160 11872 2161 2161 11873 2159 2159 11874 2161 2161 11875 2138 2138 11876 2161 2161 11877 2162 2162 11878 2139 2139 11879 2161 2161 11880 2139 2139 11881 2138 2138 11882 2163 2163 11883 2162 2162 11884 2161 2161 11885 2163 2163 11886 2161 2161 11887 2160 2160 11888 2140 2140 11889 2163 2163 11890 2160 2160 11891 2140 2140 11892 2160 2160 11893 2159 2159 11894 2158 2158 11895 2141 2141 11896 2140 2140 11897 2158 2158 11898 2140 2140 11899 2159 2159 11900 2164 2164 11901 2141 2141 11902 2158 2158 11903 2164 2164 11904 2158 2158 11905 2165 2165 11906 2166 2166 11907 2167 2167 11908 2164 2164 11909 2166 2166 11910 2164 2164 11911 2165 2165 11912 2162 2162 11913 2163 2163 11914 2140 2140 11915 2162 2162 11916 2140 2140 11917 2139 2139 11918 2168 2168 11919 2169 2169 11920 2151 2151 11921 2168 2168 11922 2151 2151 11923 2149 2149 11924 2146 2146 11925 2153 2153 11926 2151 2151 11927 2146 2146 11928 2151 2151 11929 2147 2147 11930 2146 2146 11931 2170 2170 11932 2171 2171 11933 2146 2146 11934 2171 2171 11935 2153 2153 11936 2169 2169 11937 2172 2172 11938 2147 2147 11939 2169 2169 11940 2147 2147 11941 2151 2151 11942 2169 2169 11943 2168 2168 11944 2173 2173 11945 2169 2169 11946 2173 2173 11947 2172 2172 11948 2148 2148 11949 2173 2173 11950 2168 2168 11951 2148 2148 11952 2168 2168 11953 2149 2149 11954 2147 2147 11955 2172 2172 11956 2173 2173 11957 2147 2147 11958 2173 2173 11959 2148 2148 11960 2170 2170 11961 2174 2174 11962 2175 2175 11963 2170 2170 11964 2175 2175 11965 2171 2171 11966 2171 2171 11967 2175 2175 11968 2154 2154 11969 2171 2171 11970 2154 2154 11971 2153 2153 11972 2144 2144 11973 2176 2176 11974 2177 2177 11975 2144 2144 11976 2177 2177 11977 2155 2155 11978 2145 2145 11979 2144 2144 11980 2155 2155 11981 2145 2145 11982 2155 2155 11983 2154 2154 11984 2145 2145 11985 2154 2154 11986 2175 2175 11987 2145 2145 11988 2175 2175 11989 2174 2174 11990 2142 2142 11991 2157 2157 11992 2156 2156 11993 2142 2142 11994 2156 2156 11995 2143 2143 11996 2142 2142 11997 2167 2167 11998 2166 2166 11999 2142 2142 12000 2166 2166 12001 2157 2157 12002 2178 2178 12003 2143 2143 12004 2156 2156 12005 2178 2178 12006 2156 2156 12007 2179 2179 12008 2164 2164 12009 2167 2167 12010 2142 2142 12011 2164 2164 12012 2142 2142 12013 2141 2141 12014 2170 2170 12015 2146 2146 12016 2145 2145 12017 2170 2170 12018 2145 2145 12019 2174 2174 12020 2157 2157 12021 2166 2166 12022 2165 2165 12023 2157 2157 12024 2165 2165 12025 2158 2158 12026 2178 2178 12027 2179 2179 12028 2177 2177 12029 2178 2178 12030 2177 2177 12031 2176 2176 12032 2176 2176 12033 2144 2144 12034 2143 2143 12035 2176 2176 12036 2143 2143 12037 2178 2178 12038 2156 2156 12039 2155 2155 12040 2177 2177 12041 2156 2156 12042 2177 2177 12043 2179 2179 12044 2152 2152 12045 2112 2112 12046 2111 2111 12047 2152 2152 12048 2111 2111 12049 2180 2180 12050 2180 2180 12051 2111 2111 12052 2097 2097 12053 2180 2180 12054 2097 2097 12055 2095 2095 12056 2180 2180 12057 2095 2095 12058 2181 2181 12059 2180 2180 12060 2181 2181 12061 2152 2152 12062 2181 2181 12063 2150 2150 12064 2152 2152 12065 2150 2150 12066 2181 2181 12067 2122 2122 12068 2181 2181 12069 2106 2106 12070 2122 2122 12071 2106 2106 12072 2181 2181 12073 2094 2094 12074 2094 2094 12075 2181 2181 12076 2095 2095 12077 2182 2182 12078 2183 2183 12079 2184 2184 12080 2182 2182 12081 2184 2184 12082 538 538 12083 2182 2182 12084 538 538 12085 2185 2185 12086 538 538 12087 539 539 12088 2185 2185 12089 2185 2185 12090 539 539 12091 2186 2186 12092 539 539 12093 541 541 12094 2186 2186 12095 2186 2186 12096 541 541 12097 545 545 12098 2186 2186 12099 545 545 12100 2187 2187 12101 2187 2187 12102 545 545 12103 547 547 12104 2187 2187 12105 547 547 12106 2188 2188 12107 2188 2188 12108 547 547 12109 516 516 12110 547 547 12111 549 549 12112 516 516 12113 516 516 12114 549 549 12115 515 515 12116 549 549 12117 550 550 12118 515 515 12119 517 517 12120 2188 2188 12121 516 516 12122 2188 2188 12123 517 517 12124 518 518 12125 2188 2188 12126 518 518 12127 2187 2187 12128 2187 2187 12129 518 518 12130 519 519 12131 2187 2187 12132 519 519 12133 2186 2186 12134 2186 2186 12135 519 519 12136 2185 2185 12137 519 519 12138 520 520 12139 2185 2185 12140 2185 2185 12141 520 520 12142 2182 2182 12143 520 520 12144 1122 1122 12145 2182 2182 12146 2182 2182 12147 1122 1122 12148 1121 1121 12149 2182 2182 12150 1121 1121 12151 2183 2183 12152 2189 2189 12153 2190 2190 12154 2191 2191 12155 2189 2189 12156 2191 2191 12157 1547 1547 12158 1547 1547 12159 2191 2191 12160 2192 2192 12161 1547 1547 12162 2192 2192 12163 1548 1548 12164 1548 1548 12165 2192 2192 12166 2193 2193 12167 1548 1548 12168 2193 2193 12169 1550 1550 12170 1550 1550 12171 2193 2193 12172 1554 1554 12173 2193 2193 12174 2194 2194 12175 1554 1554 12176 1554 1554 12177 2194 2194 12178 1556 1556 12179 2194 2194 12180 2195 2195 12181 1556 1556 12182 1556 1556 12183 2195 2195 12184 1531 1531 12185 1556 1556 12186 1531 1531 12187 1558 1558 12188 1558 1558 12189 1531 1531 12190 515 515 12191 1558 1558 12192 515 515 12193 550 550 12194 1532 1532 12195 1531 1531 12196 2195 2195 12197 1532 1532 12198 2195 2195 12199 1533 1533 12200 2195 2195 12201 2194 2194 12202 1533 1533 12203 1533 1533 12204 2194 2194 12205 1534 1534 12206 2194 2194 12207 2193 2193 12208 1534 1534 12209 1534 1534 12210 2193 2193 12211 2192 2192 12212 1534 1534 12213 2192 2192 12214 1145 1145 12215 1145 1145 12216 2192 2192 12217 2191 2191 12218 1145 1145 12219 2191 2191 12220 1141 1141 12221 1141 1141 12222 2191 2191 12223 1140 1140 12224 2191 2191 12225 2190 2190 12226 1140 1140 12227 2196 2196 12228 2197 2197 12229 2198 2198 12230 2196 2196 12231 2198 2198 12232 2199 2199 12233 2200 2200 12234 2201 2201 12235 2202 2202 12236 2200 2200 12237 2202 2202 12238 2203 2203 12239 2204 2204 12240 2205 2205 12241 2206 2206 12242 2204 2204 12243 2206 2206 12244 2207 2207 12245 2199 2199 12246 2198 2198 12247 2208 2208 12248 2199 2199 12249 2208 2208 12250 2209 2209 12251 2209 2209 12252 2208 2208 12253 2210 2210 12254 2209 2209 12255 2210 2210 12256 2211 2211 12257 2196 2196 12258 2199 2199 12259 2209 2209 12260 2196 2196 12261 2209 2209 12262 2212 2212 12263 2212 2212 12264 2209 2209 12265 2211 2211 12266 2212 2212 12267 2211 2211 12268 2213 2213 12269 2214 2214 12270 2210 2210 12271 2208 2208 12272 2214 2214 12273 2208 2208 12274 2215 2215 12275 2215 2215 12276 2208 2208 12277 2198 2198 12278 2215 2215 12279 2198 2198 12280 2197 2197 12281 2207 2207 12282 2206 2206 12283 2216 2216 12284 2207 2207 12285 2216 2216 12286 2217 2217 12287 2217 2217 12288 2216 2216 12289 2203 2203 12290 2217 2217 12291 2203 2203 12292 2202 2202 12293 2204 2204 12294 2207 2207 12295 2217 2217 12296 2204 2204 12297 2217 2217 12298 2218 2218 12299 2218 2218 12300 2217 2217 12301 2202 2202 12302 2218 2218 12303 2202 2202 12304 2201 2201 12305 2200 2200 12306 2203 2203 12307 2216 2216 12308 2200 2200 12309 2216 2216 12310 2219 2219 12311 2219 2219 12312 2216 2216 12313 2206 2206 12314 2219 2219 12315 2206 2206 12316 2205 2205 12317 411 411 12318 670 670 12319 412 412 12320 670 670 12321 669 669 12322 412 412 12323 669 669 12324 2220 2220 12325 412 412 12326 2220 2220 12327 669 669 12328 668 668 12329 412 412 12330 2220 2220 12331 2221 2221 12332 412 412 12333 2221 2221 12334 416 416 12335 2221 2221 12336 2220 2220 12337 2222 2222 12338 2222 2222 12339 2220 2220 12340 2223 2223 12341 2220 2220 12342 2224 2224 12343 2223 2223 12344 2224 2224 12345 2220 2220 12346 668 668 12347 2224 2224 12348 668 668 12349 667 667 12350 2224 2224 12351 667 667 12352 2225 2225 12353 2224 2224 12354 2225 2225 12355 2226 2226 12356 2224 2224 12357 2226 2226 12358 2223 2223 12359 2223 2223 12360 2226 2226 12361 2227 2227 12362 2223 2223 12363 2227 2227 12364 2228 2228 12365 2223 2223 12366 2228 2228 12367 2222 2222 12368 2228 2228 12369 2227 2227 12370 2229 2229 12371 2229 2229 12372 2227 2227 12373 2230 2230 12374 2228 2228 12375 2229 2229 12376 2231 2231 12377 2228 2228 12378 2231 2231 12379 2222 2222 12380 2222 2222 12381 2231 2231 12382 2232 2232 12383 2222 2222 12384 2232 2232 12385 2221 2221 12386 2221 2221 12387 2232 2232 12388 2233 2233 12389 2221 2221 12390 2233 2233 12391 416 416 12392 416 416 12393 2233 2233 12394 2234 2234 12395 416 416 12396 2234 2234 12397 2235 2235 12398 416 416 12399 2235 2235 12400 420 420 12401 420 420 12402 2235 2235 12403 368 368 12404 420 420 12405 368 368 12406 367 367 12407 368 368 12408 2235 2235 12409 364 364 12410 2235 2235 12411 687 687 12412 364 364 12413 687 687 12414 2235 2235 12415 2234 2234 12416 687 687 12417 2234 2234 12418 688 688 12419 688 688 12420 2234 2234 12421 690 690 12422 2234 2234 12423 2236 2236 12424 690 690 12425 2236 2236 12426 2234 2234 12427 2233 2233 12428 690 690 12429 2236 2236 12430 710 710 12431 2236 2236 12432 2233 2233 12433 2237 2237 12434 2237 2237 12435 2233 2233 12436 2232 2232 12437 2237 2237 12438 2232 2232 12439 2238 2238 12440 2238 2238 12441 2232 2232 12442 2231 2231 12443 2238 2238 12444 2231 2231 12445 2239 2239 12446 2239 2239 12447 2231 2231 12448 2229 2229 12449 2239 2239 12450 2229 2229 12451 2240 2240 12452 2240 2240 12453 2229 2229 12454 2230 2230 12455 2240 2240 12456 2230 2230 12457 2241 2241 12458 2240 2240 12459 2241 2241 12460 2242 2242 12461 2240 2240 12462 2242 2242 12463 2243 2243 12464 2243 2243 12465 2242 2242 12466 483 483 12467 2243 2243 12468 483 483 12469 486 486 12470 2243 2243 12471 486 486 12472 2244 2244 12473 486 486 12474 490 490 12475 2244 2244 12476 2244 2244 12477 490 490 12478 494 494 12479 2244 2244 12480 494 494 12481 2245 2245 12482 2245 2245 12483 494 494 12484 2246 2246 12485 494 494 12486 498 498 12487 2246 2246 12488 2246 2246 12489 498 498 12490 359 359 12491 359 359 12492 358 358 12493 2246 2246 12494 2246 2246 12495 358 358 12496 2247 2247 12497 2246 2246 12498 2247 2247 12499 2245 2245 12500 2247 2247 12501 358 358 12502 363 363 12503 2245 2245 12504 2247 2247 12505 2248 2248 12506 2245 2245 12507 2248 2248 12508 2244 2244 12509 2248 2248 12510 2249 2249 12511 2244 2244 12512 2244 2244 12513 2249 2249 12514 2243 2243 12515 2249 2249 12516 2240 2240 12517 2243 2243 12518 2240 2240 12519 2249 2249 12520 2239 2239 12521 2239 2239 12522 2249 2249 12523 2250 2250 12524 2239 2239 12525 2250 2250 12526 2238 2238 12527 2249 2249 12528 2248 2248 12529 2250 2250 12530 2238 2238 12531 2250 2250 12532 2251 2251 12533 2238 2238 12534 2251 2251 12535 2237 2237 12536 2250 2250 12537 2248 2248 12538 2251 2251 12539 2251 2251 12540 2248 2248 12541 2252 2252 12542 2248 2248 12543 2247 2247 12544 2252 2252 12545 2252 2252 12546 2247 2247 12547 363 363 12548 2252 2252 12549 363 363 12550 502 502 12551 363 363 12552 362 362 12553 502 502 12554 2252 2252 12555 502 502 12556 2251 2251 12557 502 502 12558 503 503 12559 2251 2251 12560 2251 2251 12561 503 503 12562 2253 2253 12563 2251 2251 12564 2253 2253 12565 2237 2237 12566 503 503 12567 710 710 12568 2253 2253 12569 2237 2237 12570 2253 2253 12571 2236 2236 12572 710 710 12573 2236 2236 12574 2253 2253 12575 1455 1455 12576 1454 1454 12577 1650 1650 12578 1650 1650 12579 1454 1454 12580 1649 1649 12581 1649 1649 12582 1454 1454 12583 2254 2254 12584 1649 1649 12585 2254 2254 12586 1648 1648 12587 1454 1454 12588 2255 2255 12589 2254 2254 12590 2255 2255 12591 1454 1454 12592 1459 1459 12593 2254 2254 12594 2255 2255 12595 2256 2256 12596 2254 2254 12597 2256 2256 12598 2257 2257 12599 2254 2254 12600 2257 2257 12601 2258 2258 12602 2254 2254 12603 2258 2258 12604 1648 1648 12605 1648 1648 12606 2258 2258 12607 667 667 12608 2258 2258 12609 2225 2225 12610 667 667 12611 2225 2225 12612 2258 2258 12613 2226 2226 12614 2258 2258 12615 2257 2257 12616 2226 2226 12617 2226 2226 12618 2257 2257 12619 2227 2227 12620 2257 2257 12621 2259 2259 12622 2227 2227 12623 2259 2259 12624 2257 2257 12625 2256 2256 12626 2227 2227 12627 2259 2259 12628 2260 2260 12629 2227 2227 12630 2260 2260 12631 2230 2230 12632 2260 2260 12633 2259 2259 12634 2261 2261 12635 2261 2261 12636 2259 2259 12637 2256 2256 12638 2261 2261 12639 2256 2256 12640 2262 2262 12641 2262 2262 12642 2256 2256 12643 2255 2255 12644 2262 2262 12645 2255 2255 12646 2263 2263 12647 2255 2255 12648 1459 1459 12649 2263 2263 12650 1459 1459 12651 2264 2264 12652 2263 2263 12653 2264 2264 12654 1459 1459 12655 2265 2265 12656 1459 1459 12657 1463 1463 12658 2265 2265 12659 2265 2265 12660 1463 1463 12661 1411 1411 12662 1463 1463 12663 1410 1410 12664 1411 1411 12665 2265 2265 12666 1411 1411 12667 1409 1409 12668 2265 2265 12669 1409 1409 12670 1667 1667 12671 2265 2265 12672 1667 1667 12673 2264 2264 12674 1667 1667 12675 1668 1668 12676 2264 2264 12677 2264 2264 12678 1668 1668 12679 1670 1670 12680 2264 2264 12681 1670 1670 12682 2266 2266 12683 2264 2264 12684 2266 2266 12685 2263 2263 12686 2266 2266 12687 1670 1670 12688 1690 1690 12689 2263 2263 12690 2266 2266 12691 2267 2267 12692 2263 2263 12693 2267 2267 12694 2262 2262 12695 2262 2262 12696 2267 2267 12697 2268 2268 12698 2262 2262 12699 2268 2268 12700 2261 2261 12701 2261 2261 12702 2268 2268 12703 2269 2269 12704 2261 2261 12705 2269 2269 12706 2260 2260 12707 2260 2260 12708 2269 2269 12709 2270 2270 12710 2260 2260 12711 2270 2270 12712 2230 2230 12713 2230 2230 12714 2270 2270 12715 2241 2241 12716 2241 2241 12717 2270 2270 12718 2242 2242 12719 2270 2270 12720 2271 2271 12721 2242 2242 12722 2242 2242 12723 2271 2271 12724 483 483 12725 2271 2271 12726 1515 1515 12727 483 483 12728 1515 1515 12729 2271 2271 12730 2272 2272 12731 1515 1515 12732 2272 2272 12733 1516 1516 12734 1516 1516 12735 2272 2272 12736 1518 1518 12737 2272 2272 12738 2273 2273 12739 1518 1518 12740 1518 1518 12741 2273 2273 12742 2274 2274 12743 1518 1518 12744 2274 2274 12745 1519 1519 12746 1519 1519 12747 2274 2274 12748 1402 1402 12749 2274 2274 12750 1403 1403 12751 1402 1402 12752 1403 1403 12753 2274 2274 12754 2275 2275 12755 2275 2275 12756 2274 2274 12757 2273 2273 12758 1403 1403 12759 2275 2275 12760 1406 1406 12761 2273 2273 12762 2276 2276 12763 2275 2275 12764 2276 2276 12765 2273 2273 12766 2272 2272 12767 2276 2276 12768 2272 2272 12769 2277 2277 12770 2277 2277 12771 2272 2272 12772 2271 2271 12773 2277 2277 12774 2271 2271 12775 2270 2270 12776 2277 2277 12777 2270 2270 12778 2269 2269 12779 2277 2277 12780 2269 2269 12781 2278 2278 12782 2278 2278 12783 2269 2269 12784 2268 2268 12785 2277 2277 12786 2278 2278 12787 2276 2276 12788 2278 2278 12789 2268 2268 12790 2279 2279 12791 2276 2276 12792 2278 2278 12793 2279 2279 12794 2268 2268 12795 2267 2267 12796 2279 2279 12797 2279 2279 12798 2267 2267 12799 2280 2280 12800 2280 2280 12801 2267 2267 12802 2266 2266 12803 2280 2280 12804 2266 2266 12805 1690 1690 12806 2280 2280 12807 1690 1690 12808 1522 1522 12809 2280 2280 12810 1522 1522 12811 2279 2279 12812 2279 2279 12813 1522 1522 12814 1521 1521 12815 2279 2279 12816 1521 1521 12817 2281 2281 12818 2279 2279 12819 2281 2281 12820 2276 2276 12821 2281 2281 12822 2275 2275 12823 2276 2276 12824 2275 2275 12825 2281 2281 12826 1406 1406 12827 1406 1406 12828 2281 2281 12829 1521 1521 12830 1406 1406 12831 1521 1521 12832 1405 1405 12833 2282 2282 12834 2283 2283 12835 2284 2284 12836 2282 2282 12837 2284 2284 12838 2285 2285 12839 2286 2286 12840 2282 2282 12841 2285 2285 12842 2286 2286 12843 2285 2285 12844 2287 2287 12845 2288 2288 12846 2286 2286 12847 2287 2287 12848 2288 2288 12849 2287 2287 12850 2289 2289 12851 2290 2290 12852 2291 2291 12853 2288 2288 12854 2290 2290 12855 2288 2288 12856 2289 2289 12857 1127 1127 12858 2292 2292 12859 1120 1120 12860 1120 1120 12861 2292 2292 12862 2183 2183 12863 1120 1120 12864 2183 2183 12865 1121 1121 12866 2183 2183 12867 2292 2292 12868 2293 2293 12869 2292 2292 12870 2294 2294 12871 2293 2293 12872 2294 2294 12873 2292 2292 12874 2295 2295 12875 2294 2294 12876 2295 2295 12877 2296 2296 12878 2292 2292 12879 1127 1127 12880 2295 2295 12881 1127 1127 12882 2290 2290 12883 2295 2295 12884 2290 2290 12885 1127 1127 12886 2291 2291 12887 2184 2184 12888 2183 2183 12889 2293 2293 12890 2184 2184 12891 2293 2293 12892 2297 2297 12893 2293 2293 12894 2294 2294 12895 2296 2296 12896 2293 2293 12897 2296 2296 12898 2297 2297 12899 2298 2298 12900 2299 2299 12901 521 521 12902 2298 2298 12903 521 521 12904 523 523 12905 2298 2298 12906 523 523 12907 2284 2284 12908 523 523 12909 525 525 12910 2284 2284 12911 525 525 12912 2285 2285 12913 2284 2284 12914 2285 2285 12915 525 525 12916 2290 2290 12917 525 525 12918 533 533 12919 2290 2290 12920 533 533 12921 2295 2295 12922 2290 2290 12923 2295 2295 12924 533 533 12925 2184 2184 12926 533 533 12927 536 536 12928 2184 2184 12929 536 536 12930 538 538 12931 2184 2184 12932 2296 2296 12933 2295 2295 12934 2184 2184 12935 2296 2296 12936 2184 2184 12937 2297 2297 12938 2287 2287 12939 2285 2285 12940 2290 2290 12941 2287 2287 12942 2290 2290 12943 2289 2289 12944 2298 2298 12945 2284 2284 12946 2300 2300 12947 2298 2298 12948 2300 2300 12949 2301 2301 12950 2299 2299 12951 2298 2298 12952 2302 2302 12953 2299 2299 12954 2302 2302 12955 2303 2303 12956 2299 2299 12957 2303 2303 12958 2304 2304 12959 2299 2299 12960 2304 2304 12961 2305 2305 12962 2306 2306 12963 2302 2302 12964 2298 2298 12965 2306 2306 12966 2298 2298 12967 2301 2301 12968 2307 2307 12969 2306 2306 12970 2301 2301 12971 2307 2307 12972 2301 2301 12973 2300 2300 12974 2284 2284 12975 2283 2283 12976 2307 2307 12977 2284 2284 12978 2307 2307 12979 2300 2300 12980 1126 1126 12981 2291 2291 12982 1127 1127 12983 2291 2291 12984 1126 1126 12985 2288 2288 12986 2288 2288 12987 1126 1126 12988 2286 2286 12989 1126 1126 12990 2282 2282 12991 2286 2286 12992 2282 2282 12993 1126 1126 12994 2308 2308 12995 1126 1126 12996 1129 1129 12997 2308 2308 12998 2282 2282 12999 2308 2308 13000 1133 1133 13001 2282 2282 13002 1133 1133 13003 1132 1132 13004 2282 2282 13005 1132 1132 13006 2283 2283 13007 2283 2283 13008 1132 1132 13009 1909 1909 13010 2283 2283 13011 1909 1909 13012 2307 2307 13013 1909 1909 13014 2306 2306 13015 2307 2307 13016 2306 2306 13017 1909 1909 13018 2302 2302 13019 2302 2302 13020 1909 1909 13021 1910 1910 13022 2302 2302 13023 1910 1910 13024 2303 2303 13025 2309 2309 13026 2310 2310 13027 2311 2311 13028 2309 2309 13029 2311 2311 13030 2312 2312 13031 2313 2313 13032 2314 2314 13033 2310 2310 13034 2313 2313 13035 2310 2310 13036 2309 2309 13037 2315 2315 13038 2316 2316 13039 2314 2314 13040 2315 2315 13041 2314 2314 13042 2313 2313 13043 2317 2317 13044 2316 2316 13045 2315 2315 13046 2317 2317 13047 2315 2315 13048 2318 2318 13049 1151 1151 13050 1138 1138 13051 2319 2319 13052 2319 2319 13053 1138 1138 13054 2190 2190 13055 1138 1138 13056 1140 1140 13057 2190 2190 13058 2319 2319 13059 2190 2190 13060 2320 2320 13061 2319 2319 13062 2320 2320 13063 2321 2321 13064 2321 2321 13065 2322 2322 13066 2323 2323 13067 2321 2321 13068 2323 2323 13069 2319 2319 13070 2319 2319 13071 2323 2323 13072 1151 1151 13073 1151 1151 13074 2323 2323 13075 2317 2317 13076 1151 1151 13077 2317 2317 13078 2318 2318 13079 2189 2189 13080 2324 2324 13081 2320 2320 13082 2189 2189 13083 2320 2320 13084 2190 2190 13085 2320 2320 13086 2324 2324 13087 2322 2322 13088 2320 2320 13089 2322 2322 13090 2321 2321 13091 521 521 13092 2299 2299 13093 2305 2305 13094 521 521 13095 2305 2305 13096 1535 1535 13097 1535 1535 13098 2305 2305 13099 2311 2311 13100 1535 1535 13101 2311 2311 13102 1537 1537 13103 1537 1537 13104 2311 2311 13105 2310 2310 13106 1537 1537 13107 2310 2310 13108 2317 2317 13109 1537 1537 13110 2317 2317 13111 1542 1542 13112 1542 1542 13113 2317 2317 13114 2323 2323 13115 1542 1542 13116 2323 2323 13117 2189 2189 13118 1542 1542 13119 2189 2189 13120 1545 1545 13121 1545 1545 13122 2189 2189 13123 1547 1547 13124 2322 2322 13125 2324 2324 13126 2189 2189 13127 2322 2322 13128 2189 2189 13129 2323 2323 13130 2314 2314 13131 2316 2316 13132 2317 2317 13133 2314 2314 13134 2317 2317 13135 2310 2310 13136 2305 2305 13137 2325 2325 13138 2326 2326 13139 2305 2305 13140 2326 2326 13141 2311 2311 13142 2327 2327 13143 2325 2325 13144 2305 2305 13145 2327 2327 13146 2305 2305 13147 2304 2304 13148 2328 2328 13149 2326 2326 13150 2325 2325 13151 2328 2328 13152 2325 2325 13153 2327 2327 13154 2311 2311 13155 2326 2326 13156 2328 2328 13157 2311 2311 13158 2328 2328 13159 2312 2312 13160 1150 1150 13161 1151 1151 13162 2318 2318 13163 1150 1150 13164 2318 2318 13165 2315 2315 13166 1150 1150 13167 2315 2315 13168 2313 2313 13169 1150 1150 13170 2313 2313 13171 2309 2309 13172 1150 1150 13173 2309 2309 13174 2329 2329 13175 1150 1150 13176 2329 2329 13177 1154 1154 13178 2329 2329 13179 2309 2309 13180 1160 1160 13181 2309 2309 13182 1159 1159 13183 1160 1160 13184 1159 1159 13185 2309 2309 13186 2312 2312 13187 1159 1159 13188 2312 2312 13189 1911 1911 13190 1911 1911 13191 2312 2312 13192 2328 2328 13193 1911 1911 13194 2328 2328 13195 2327 2327 13196 1911 1911 13197 2327 2327 13198 2304 2304 13199 1911 1911 13200 2304 2304 13201 1910 1910 13202 2304 2304 13203 2303 2303 13204 1910 1910 13205 2330 2330 13206 2331 2331 13207 2332 2332 13208 2330 2330 13209 2332 2332 13210 2333 2333 13211 2332 2332 13212 2334 2334 13213 2333 2333 13214 2333 2333 13215 2334 2334 13216 2335 2335 13217 2334 2334 13218 2336 2336 13219 2335 2335 13220 2335 2335 13221 2336 2336 13222 2337 2337 13223 2335 2335 13224 2337 2337 13225 2338 2338 13226 2338 2338 13227 2337 2337 13228 2339 2339 13229 2338 2338 13230 2339 2339 13231 2340 2340 13232 2340 2340 13233 2339 2339 13234 2341 2341 13235 2340 2340 13236 2341 2341 13237 2342 2342 13238 2342 2342 13239 2341 2341 13240 2343 2343 13241 2341 2341 13242 2344 2344 13243 2343 2343 13244 2343 2343 13245 2344 2344 13246 2345 2345 13247 2344 2344 13248 2346 2346 13249 2345 2345 13250 2345 2345 13251 2346 2346 13252 2347 2347 13253 2346 2346 13254 2348 2348 13255 2347 2347 13256 2347 2347 13257 2348 2348 13258 2349 2349 13259 2348 2348 13260 2350 2350 13261 2349 2349 13262 2349 2349 13263 2350 2350 13264 2351 2351 13265 2350 2350 13266 2352 2352 13267 2351 2351 13268 2351 2351 13269 2352 2352 13270 2353 2353 13271 2352 2352 13272 2354 2354 13273 2353 2353 13274 2353 2353 13275 2354 2354 13276 2355 2355 13277 2354 2354 13278 2356 2356 13279 2355 2355 13280 2355 2355 13281 2356 2356 13282 2357 2357 13283 2355 2355 13284 2357 2357 13285 2358 2358 13286 2358 2358 13287 2357 2357 13288 2359 2359 13289 2357 2357 13290 2360 2360 13291 2359 2359 13292 2359 2359 13293 2360 2360 13294 2361 2361 13295 2359 2359 13296 2361 2361 13297 2362 2362 13298 2362 2362 13299 2361 2361 13300 2363 2363 13301 2361 2361 13302 2364 2364 13303 2363 2363 13304 2363 2363 13305 2364 2364 13306 2365 2365 13307 2364 2364 13308 2366 2366 13309 2365 2365 13310 2365 2365 13311 2366 2366 13312 2367 2367 13313 2366 2366 13314 2368 2368 13315 2367 2367 13316 2367 2367 13317 2368 2368 13318 2369 2369 13319 2368 2368 13320 2370 2370 13321 2369 2369 13322 2369 2369 13323 2370 2370 13324 2371 2371 13325 2370 2370 13326 2372 2372 13327 2371 2371 13328 2371 2371 13329 2372 2372 13330 2373 2373 13331 2371 2371 13332 2373 2373 13333 2374 2374 13334 2373 2373 13335 2375 2375 13336 2374 2374 13337 2376 2376 13338 2377 2377 13339 2378 2378 13340 2377 2377 13341 2376 2376 13342 2379 2379 13343 2377 2377 13344 2379 2379 13345 2380 2380 13346 2380 2380 13347 2379 2379 13348 2381 2381 13349 2380 2380 13350 2381 2381 13351 2382 2382 13352 2382 2382 13353 2381 2381 13354 2383 2383 13355 2381 2381 13356 2384 2384 13357 2383 2383 13358 2383 2383 13359 2384 2384 13360 2385 2385 13361 2384 2384 13362 2386 2386 13363 2385 2385 13364 2385 2385 13365 2386 2386 13366 2387 2387 13367 2386 2386 13368 2388 2388 13369 2387 2387 13370 2387 2387 13371 2388 2388 13372 2389 2389 13373 2387 2387 13374 2389 2389 13375 2390 2390 13376 2390 2390 13377 2389 2389 13378 2391 2391 13379 2390 2390 13380 2391 2391 13381 2392 2392 13382 2392 2392 13383 2391 2391 13384 2393 2393 13385 2392 2392 13386 2393 2393 13387 2394 2394 13388 2394 2394 13389 2393 2393 13390 2395 2395 13391 2394 2394 13392 2395 2395 13393 2396 2396 13394 2396 2396 13395 2395 2395 13396 2397 2397 13397 2396 2396 13398 2397 2397 13399 2398 2398 13400 2398 2398 13401 2397 2397 13402 2399 2399 13403 2398 2398 13404 2399 2399 13405 2400 2400 13406 2400 2400 13407 2399 2399 13408 2401 2401 13409 2400 2400 13410 2401 2401 13411 2402 2402 13412 2402 2402 13413 2401 2401 13414 2403 2403 13415 2401 2401 13416 2404 2404 13417 2403 2403 13418 2403 2403 13419 2404 2404 13420 2405 2405 13421 2403 2403 13422 2405 2405 13423 2406 2406 13424 2406 2406 13425 2405 2405 13426 2407 2407 13427 2405 2405 13428 2408 2408 13429 2407 2407 13430 2407 2407 13431 2408 2408 13432 2409 2409 13433 2407 2407 13434 2409 2409 13435 2410 2410 13436 2410 2410 13437 2409 2409 13438 2411 2411 13439 2410 2410 13440 2411 2411 13441 2412 2412 13442 2412 2412 13443 2411 2411 13444 2413 2413 13445 2412 2412 13446 2413 2413 13447 2414 2414 13448 2414 2414 13449 2413 2413 13450 2415 2415 13451 2414 2414 13452 2415 2415 13453 2416 2416 13454 2416 2416 13455 2415 2415 13456 2417 2417 13457 2416 2416 13458 2417 2417 13459 2418 2418 13460 2418 2418 13461 2417 2417 13462 2419 2419 13463 2417 2417 13464 2420 2420 13465 2419 2419 13466 2419 2419 13467 2420 2420 13468 2421 2421 13469 2422 2422 13470 874 874 13471 847 847 13472 874 874 13473 2422 2422 13474 875 875 13475 847 847 13476 2423 2423 13477 2422 2422 13478 2423 2423 13479 847 847 13480 840 840 13481 2423 2423 13482 840 840 13483 841 841 13484 2423 2423 13485 841 841 13486 842 842 13487 2423 2423 13488 842 842 13489 2424 2424 13490 2424 2424 13491 842 842 13492 843 843 13493 2423 2423 13494 2424 2424 13495 2425 2425 13496 2423 2423 13497 2425 2425 13498 2422 2422 13499 2422 2422 13500 2425 2425 13501 2426 2426 13502 2422 2422 13503 2426 2426 13504 2427 2427 13505 2422 2422 13506 2427 2427 13507 875 875 13508 875 875 13509 2427 2427 13510 2428 2428 13511 875 875 13512 2428 2428 13513 877 877 13514 877 877 13515 2428 2428 13516 988 988 13517 2428 2428 13518 2429 2429 13519 988 988 13520 988 988 13521 2429 2429 13522 1001 1001 13523 2429 2429 13524 2428 2428 13525 2430 2430 13526 2430 2430 13527 2428 2428 13528 2427 2427 13529 2430 2430 13530 2427 2427 13531 2426 2426 13532 2430 2430 13533 2426 2426 13534 2431 2431 13535 2431 2431 13536 2426 2426 13537 2432 2432 13538 2426 2426 13539 2425 2425 13540 2432 2432 13541 2432 2432 13542 2425 2425 13543 2433 2433 13544 2425 2425 13545 2434 2434 13546 2433 2433 13547 2434 2434 13548 2425 2425 13549 2424 2424 13550 2434 2434 13551 2424 2424 13552 2435 2435 13553 2435 2435 13554 2424 2424 13555 843 843 13556 2435 2435 13557 843 843 13558 857 857 13559 2435 2435 13560 857 857 13561 893 893 13562 2435 2435 13563 893 893 13564 2436 2436 13565 2435 2435 13566 2436 2436 13567 2434 2434 13568 2436 2436 13569 893 893 13570 2437 2437 13571 2434 2434 13572 2436 2436 13573 2437 2437 13574 2434 2434 13575 2437 2437 13576 2433 2433 13577 2433 2433 13578 2437 2437 13579 2438 2438 13580 2433 2433 13581 2438 2438 13582 2439 2439 13583 2433 2433 13584 2439 2439 13585 2440 2440 13586 2433 2433 13587 2440 2440 13588 2432 2432 13589 2432 2432 13590 2440 2440 13591 2431 2431 13592 2431 2431 13593 2440 2440 13594 2441 2441 13595 2441 2441 13596 2440 2440 13597 2442 2442 13598 2440 2440 13599 2439 2439 13600 2442 2442 13601 2442 2442 13602 2439 2439 13603 2443 2443 13604 2439 2439 13605 2438 2438 13606 2443 2443 13607 2443 2443 13608 2438 2438 13609 2444 2444 13610 2438 2438 13611 895 895 13612 2444 2444 13613 895 895 13614 2438 2438 13615 2437 2437 13616 895 895 13617 2437 2437 13618 894 894 13619 894 894 13620 2437 2437 13621 893 893 13622 895 895 13623 2445 2445 13624 2444 2444 13625 2445 2445 13626 895 895 13627 898 898 13628 2444 2444 13629 2445 2445 13630 2446 2446 13631 2444 2444 13632 2446 2446 13633 2443 2443 13634 2446 2446 13635 2447 2447 13636 2443 2443 13637 2443 2443 13638 2447 2447 13639 2448 2448 13640 2443 2443 13641 2448 2448 13642 2442 2442 13643 2448 2448 13644 2449 2449 13645 2442 2442 13646 2442 2442 13647 2449 2449 13648 2450 2450 13649 2442 2442 13650 2450 2450 13651 2441 2441 13652 2450 2450 13653 2451 2451 13654 2441 2441 13655 2441 2441 13656 2451 2451 13657 2452 2452 13658 2441 2441 13659 2452 2452 13660 982 982 13661 2441 2441 13662 982 982 13663 2431 2431 13664 982 982 13665 983 983 13666 2431 2431 13667 982 982 13668 2452 2452 13669 940 940 13670 940 940 13671 2452 2452 13672 978 978 13673 2452 2452 13674 2453 2453 13675 978 978 13676 2453 2453 13677 2452 2452 13678 2451 2451 13679 978 978 13680 2453 2453 13681 979 979 13682 2451 2451 13683 2454 2454 13684 2453 2453 13685 979 979 13686 2453 2453 13687 2455 2455 13688 2454 2454 13689 2455 2455 13690 2453 2453 13691 979 979 13692 2455 2455 13693 980 980 13694 2455 2455 13695 2456 2456 13696 980 980 13697 980 980 13698 2456 2456 13699 981 981 13700 2456 2456 13701 2455 2455 13702 2457 2457 13703 981 981 13704 2456 2456 13705 2458 2458 13706 2457 2457 13707 2458 2458 13708 2456 2456 13709 981 981 13710 2458 2458 13711 2459 2459 13712 981 981 13713 2459 2459 13714 974 974 13715 974 974 13716 2459 2459 13717 972 972 13718 972 972 13719 2459 2459 13720 2460 2460 13721 2460 2460 13722 2459 2459 13723 2458 2458 13724 972 972 13725 2460 2460 13726 971 971 13727 971 971 13728 2460 2460 13729 969 969 13730 969 969 13731 2460 2460 13732 967 967 13733 2460 2460 13734 2461 2461 13735 967 967 13736 2461 2461 13737 2460 2460 13738 2458 2458 13739 2461 2461 13740 2458 2458 13741 2457 2457 13742 2461 2461 13743 2457 2457 13744 966 966 13745 2461 2461 13746 966 966 13747 967 967 13748 966 966 13749 2457 2457 13750 2462 2462 13751 2462 2462 13752 2457 2457 13753 2455 2455 13754 2462 2462 13755 2455 2455 13756 2454 2454 13757 2462 2462 13758 2454 2454 13759 962 962 13760 962 962 13761 2454 2454 13762 943 943 13763 2454 2454 13764 2451 2451 13765 943 943 13766 943 943 13767 2451 2451 13768 2450 2450 13769 943 943 13770 2450 2450 13771 944 944 13772 944 944 13773 2450 2450 13774 945 945 13775 2450 2450 13776 2463 2463 13777 945 945 13778 2463 2463 13779 2450 2450 13780 2449 2449 13781 945 945 13782 2463 2463 13783 947 947 13784 2449 2449 13785 2464 2464 13786 2463 2463 13787 947 947 13788 2463 2463 13789 2465 2465 13790 2464 2464 13791 2465 2465 13792 2463 2463 13793 947 947 13794 2465 2465 13795 954 954 13796 2465 2465 13797 2466 2466 13798 954 954 13799 954 954 13800 2466 2466 13801 956 956 13802 2466 2466 13803 2465 2465 13804 2467 2467 13805 956 956 13806 2466 2466 13807 2468 2468 13808 2467 2467 13809 2468 2468 13810 2466 2466 13811 956 956 13812 2468 2468 13813 2469 2469 13814 956 956 13815 2469 2469 13816 957 957 13817 957 957 13818 2469 2469 13819 959 959 13820 959 959 13821 2469 2469 13822 2470 2470 13823 2470 2470 13824 2469 2469 13825 2468 2468 13826 959 959 13827 2470 2470 13828 960 960 13829 960 960 13830 2470 2470 13831 952 952 13832 952 952 13833 2470 2470 13834 950 950 13835 2470 2470 13836 2471 2471 13837 950 950 13838 2471 2471 13839 2470 2470 13840 2468 2468 13841 2471 2471 13842 2468 2468 13843 2467 2467 13844 2471 2471 13845 2467 2467 13846 949 949 13847 2471 2471 13848 949 949 13849 950 950 13850 949 949 13851 2467 2467 13852 2472 2472 13853 2472 2472 13854 2467 2467 13855 2465 2465 13856 2472 2472 13857 2465 2465 13858 2464 2464 13859 2472 2472 13860 2464 2464 13861 933 933 13862 933 933 13863 2464 2464 13864 931 931 13865 2464 2464 13866 2449 2449 13867 931 931 13868 931 931 13869 2449 2449 13870 913 913 13871 2449 2449 13872 2448 2448 13873 913 913 13874 913 913 13875 2448 2448 13876 914 914 13877 2448 2448 13878 2473 2473 13879 914 914 13880 2473 2473 13881 2448 2448 13882 2447 2447 13883 914 914 13884 2473 2473 13885 916 916 13886 2447 2447 13887 2474 2474 13888 2473 2473 13889 916 916 13890 2473 2473 13891 2475 2475 13892 2474 2474 13893 2475 2475 13894 2473 2473 13895 916 916 13896 2475 2475 13897 923 923 13898 2475 2475 13899 2476 2476 13900 923 923 13901 923 923 13902 2476 2476 13903 925 925 13904 2476 2476 13905 2475 2475 13906 2477 2477 13907 925 925 13908 2476 2476 13909 2478 2478 13910 2477 2477 13911 2478 2478 13912 2476 2476 13913 925 925 13914 2478 2478 13915 2479 2479 13916 925 925 13917 2479 2479 13918 926 926 13919 926 926 13920 2479 2479 13921 928 928 13922 928 928 13923 2479 2479 13924 2480 2480 13925 2480 2480 13926 2479 2479 13927 2478 2478 13928 928 928 13929 2480 2480 13930 930 930 13931 930 930 13932 2480 2480 13933 921 921 13934 921 921 13935 2480 2480 13936 919 919 13937 2480 2480 13938 2481 2481 13939 919 919 13940 2481 2481 13941 2480 2480 13942 2478 2478 13943 2481 2481 13944 2478 2478 13945 2477 2477 13946 2481 2481 13947 2477 2477 13948 918 918 13949 2481 2481 13950 918 918 13951 919 919 13952 918 918 13953 2477 2477 13954 2482 2482 13955 2482 2482 13956 2477 2477 13957 2475 2475 13958 2482 2482 13959 2475 2475 13960 2474 2474 13961 2482 2482 13962 2474 2474 13963 907 907 13964 907 907 13965 2474 2474 13966 905 905 13967 2474 2474 13968 2447 2447 13969 905 905 13970 905 905 13971 2447 2447 13972 903 903 13973 2447 2447 13974 2446 2446 13975 903 903 13976 903 903 13977 2446 2446 13978 904 904 13979 2446 2446 13980 2483 2483 13981 904 904 13982 2483 2483 13983 2446 2446 13984 2445 2445 13985 904 904 13986 2483 2483 13987 2484 2484 13988 2445 2445 13989 2485 2485 13990 2483 2483 13991 2484 2484 13992 2483 2483 13993 2486 2486 13994 2485 2485 13995 2486 2486 13996 2483 2483 13997 2484 2484 13998 2486 2486 13999 2487 2487 14000 2486 2486 14001 2488 2488 14002 2487 2487 14003 2487 2487 14004 2488 2488 14005 2489 2489 14006 2488 2488 14007 2486 2486 14008 2490 2490 14009 2489 2489 14010 2488 2488 14011 2491 2491 14012 2490 2490 14013 2491 2491 14014 2488 2488 14015 2489 2489 14016 2491 2491 14017 2492 2492 14018 2489 2489 14019 2492 2492 14020 2493 2493 14021 2493 2493 14022 2492 2492 14023 2494 2494 14024 2494 2494 14025 2492 2492 14026 2495 2495 14027 2495 2495 14028 2492 2492 14029 2491 2491 14030 2494 2494 14031 2495 2495 14032 2496 2496 14033 2496 2496 14034 2495 2495 14035 2497 2497 14036 2497 2497 14037 2495 2495 14038 2498 2498 14039 2495 2495 14040 2499 2499 14041 2498 2498 14042 2499 2499 14043 2495 2495 14044 2491 2491 14045 2499 2499 14046 2491 2491 14047 2490 2490 14048 2499 2499 14049 2490 2490 14050 2500 2500 14051 2499 2499 14052 2500 2500 14053 2498 2498 14054 2500 2500 14055 2490 2490 14056 2501 2501 14057 2501 2501 14058 2490 2490 14059 2486 2486 14060 2501 2501 14061 2486 2486 14062 2485 2485 14063 2501 2501 14064 2485 2485 14065 2502 2502 14066 2502 2502 14067 2485 2485 14068 898 898 14069 2485 2485 14070 2445 2445 14071 898 898 14072 2502 2502 14073 898 898 14074 899 899 14075 2502 2502 14076 899 899 14077 2503 2503 14078 2502 2502 14079 2503 2503 14080 2501 2501 14081 2501 2501 14082 2503 2503 14083 2500 2500 14084 2500 2500 14085 2503 2503 14086 2504 2504 14087 2500 2500 14088 2504 2504 14089 2498 2498 14090 2504 2504 14091 2505 2505 14092 2498 2498 14093 2498 2498 14094 2505 2505 14095 2497 2497 14096 2505 2505 14097 2506 2506 14098 2497 2497 14099 2506 2506 14100 2496 2496 14101 2497 2497 14102 2496 2496 14103 2506 2506 14104 2494 2494 14105 2506 2506 14106 2507 2507 14107 2494 2494 14108 2494 2494 14109 2507 2507 14110 2493 2493 14111 2507 2507 14112 2506 2506 14113 2508 2508 14114 2493 2493 14115 2507 2507 14116 2508 2508 14117 2506 2506 14118 2505 2505 14119 2508 2508 14120 2508 2508 14121 2505 2505 14122 2509 2509 14123 2505 2505 14124 2504 2504 14125 2509 2509 14126 2509 2509 14127 2504 2504 14128 2510 2510 14129 2504 2504 14130 2511 2511 14131 2510 2510 14132 2511 2511 14133 2504 2504 14134 2503 2503 14135 2511 2511 14136 2503 2503 14137 899 899 14138 2511 2511 14139 899 899 14140 900 900 14141 2511 2511 14142 900 900 14143 2510 2510 14144 2510 2510 14145 900 900 14146 904 904 14147 2510 2510 14148 904 904 14149 2484 2484 14150 2510 2510 14151 2484 2484 14152 2509 2509 14153 2484 2484 14154 2487 2487 14155 2509 2509 14156 2509 2509 14157 2487 2487 14158 2508 2508 14159 2487 2487 14160 2489 2489 14161 2508 2508 14162 2508 2508 14163 2489 2489 14164 2493 2493 14165 2431 2431 14166 983 983 14167 984 984 14168 2431 2431 14169 984 984 14170 2512 2512 14171 2431 2431 14172 2512 2512 14173 2430 2430 14174 984 984 14175 985 985 14176 2512 2512 14177 2430 2430 14178 2512 2512 14179 2513 2513 14180 2512 2512 14181 985 985 14182 2514 2514 14183 2513 2513 14184 2512 2512 14185 2514 2514 14186 985 985 14187 986 986 14188 2514 2514 14189 2514 2514 14190 986 986 14191 990 990 14192 2514 2514 14193 990 990 14194 2515 2515 14195 2514 2514 14196 2515 2515 14197 2513 2513 14198 2515 2515 14199 990 990 14200 992 992 14201 2513 2513 14202 2515 2515 14203 2516 2516 14204 2513 2513 14205 2516 2516 14206 2429 2429 14207 2513 2513 14208 2429 2429 14209 2430 2430 14210 2516 2516 14211 2517 2517 14212 2429 2429 14213 2429 2429 14214 2517 2517 14215 1001 1001 14216 1001 1001 14217 2517 2517 14218 1000 1000 14219 2517 2517 14220 2518 2518 14221 1000 1000 14222 2518 2518 14223 2517 2517 14224 2519 2519 14225 2517 2517 14226 2516 2516 14227 2519 2519 14228 2519 2519 14229 2516 2516 14230 2515 2515 14231 2519 2519 14232 2515 2515 14233 2520 2520 14234 2520 2520 14235 2515 2515 14236 992 992 14237 2519 2519 14238 2520 2520 14239 2521 2521 14240 992 992 14241 2521 2521 14242 2520 2520 14243 2521 2521 14244 992 992 14245 993 993 14246 2521 2521 14247 993 993 14248 996 996 14249 2521 2521 14250 996 996 14251 2522 2522 14252 2521 2521 14253 2522 2522 14254 2519 2519 14255 2519 2519 14256 2522 2522 14257 2518 2518 14258 2522 2522 14259 2523 2523 14260 2518 2518 14261 2518 2518 14262 2523 2523 14263 1000 1000 14264 2523 2523 14265 999 999 14266 1000 1000 14267 999 999 14268 2523 2523 14269 998 998 14270 998 998 14271 2523 2523 14272 997 997 14273 997 997 14274 2523 2523 14275 2522 2522 14276 997 997 14277 2522 2522 14278 996 996 14279 962 962 14280 963 963 14281 2462 2462 14282 2462 2462 14283 963 963 14284 966 966 14285 933 933 14286 934 934 14287 2472 2472 14288 2472 2472 14289 934 934 14290 949 949 14291 907 907 14292 908 908 14293 2482 2482 14294 2482 2482 14295 908 908 14296 918 918 14297 1517 1517 14298 1153 1153 14299 1174 1174 14300 1174 1174 14301 1153 1153 14302 1152 1152 14303 1517 1517 14304 1174 1174 14305 1173 1173 14306 1152 1152 14307 1183 1183 14308 1174 1174 14309 1183 1183 14310 1152 1152 14311 1184 1184 14312 1152 1152 14313 1154 1154 14314 1184 1184 14315 1184 1184 14316 1154 1154 14317 2329 2329 14318 1184 1184 14319 2329 2329 14320 1187 1187 14321 1187 1187 14322 2329 2329 14323 1182 1182 14324 2329 2329 14325 1160 1160 14326 1182 1182 14327 1182 1182 14328 1160 1160 14329 1158 1158 14330 1182 1182 14331 1158 1158 14332 1179 1179 14333 1179 1179 14334 1158 1158 14335 1178 1178 14336 1158 1158 14337 1157 1157 14338 1178 1178 14339 1178 1178 14340 1157 1157 14341 1517 1517 14342 1178 1178 14343 1517 1517 14344 1173 1173 14345 2524 2524 14346 1176 1176 14347 1175 1175 14348 1176 1176 14349 2524 2524 14350 1177 1177 14351 1175 1175 14352 1186 1186 14353 2524 2524 14354 1177 1177 14355 2524 2524 14356 1180 1180 14357 2524 2524 14358 1186 1186 14359 1185 1185 14360 1180 1180 14361 2524 2524 14362 1181 1181 14363 1185 1185 14364 1188 1188 14365 2524 2524 14366 1181 1181 14367 2524 2524 14368 1188 1188 14369 1133 1133 14370 2308 2308 14371 1170 1170 14372 1133 1133 14373 1170 1170 14374 1131 1131 14375 1170 1170 14376 2308 2308 14377 1129 1129 14378 1170 1170 14379 1129 1129 14380 1171 1171 14381 1171 1171 14382 1129 1129 14383 1128 1128 14384 1171 1171 14385 1128 1128 14386 1172 1172 14387 1172 1172 14388 1128 1128 14389 1167 1167 14390 1128 1128 14391 495 495 14392 1167 1167 14393 1167 1167 14394 495 495 14395 491 491 14396 1167 1167 14397 491 491 14398 1168 1168 14399 491 491 14400 492 492 14401 1168 1168 14402 1168 1168 14403 492 492 14404 1131 1131 14405 1168 1168 14406 1131 1131 14407 1169 1169 14408 1169 1169 14409 1131 1131 14410 1170 1170 14411 1348 1348 14412 1349 1349 14413 2525 2525 14414 2525 2525 14415 1349 1349 14416 1254 1254 14417 2525 2525 14418 1254 1254 14419 1253 1253 14420 2525 2525 14421 1253 1253 14422 1252 1252 14423 2525 2525 14424 1252 1252 14425 2526 2526 14426 2525 2525 14427 2526 2526 14428 2527 2527 14429 2525 2525 14430 2527 2527 14431 1348 1348 14432 1348 1348 14433 2527 2527 14434 1226 1226 14435 2527 2527 14436 1224 1224 14437 1226 1226 14438 1224 1224 14439 2527 2527 14440 2528 2528 14441 2528 2528 14442 2527 2527 14443 2526 2526 14444 2528 2528 14445 2526 2526 14446 1252 1252 14447 2528 2528 14448 1252 1252 14449 1223 1223 14450 2528 2528 14451 1223 1223 14452 1224 1224 14453 1939 1939 14454 1966 1966 14455 2529 2529 14456 2529 2529 14457 1966 1966 14458 1967 1967 14459 1939 1939 14460 2529 2529 14461 2530 2530 14462 1939 1939 14463 2530 2530 14464 1932 1932 14465 1932 1932 14466 2530 2530 14467 1933 1933 14468 1933 1933 14469 2530 2530 14470 1934 1934 14471 2530 2530 14472 2531 2531 14473 1934 1934 14474 1934 1934 14475 2531 2531 14476 1935 1935 14477 2530 2530 14478 2532 2532 14479 2531 2531 14480 2532 2532 14481 2530 2530 14482 2529 2529 14483 2532 2532 14484 2529 2529 14485 2533 2533 14486 2533 2533 14487 2529 2529 14488 2534 2534 14489 2534 2534 14490 2529 2529 14491 1967 1967 14492 2534 2534 14493 1967 1967 14494 2535 2535 14495 1967 1967 14496 1969 1969 14497 2535 2535 14498 2535 2535 14499 1969 1969 14500 2080 2080 14501 2535 2535 14502 2080 2080 14503 2536 2536 14504 2536 2536 14505 2080 2080 14506 2093 2093 14507 2535 2535 14508 2536 2536 14509 2537 2537 14510 2535 2535 14511 2537 2537 14512 2534 2534 14513 2537 2537 14514 2533 2533 14515 2534 2534 14516 2533 2533 14517 2537 2537 14518 2538 2538 14519 2533 2533 14520 2538 2538 14521 2539 2539 14522 2533 2533 14523 2539 2539 14524 2532 2532 14525 2539 2539 14526 2540 2540 14527 2532 2532 14528 2532 2532 14529 2540 2540 14530 2541 2541 14531 2532 2532 14532 2541 2541 14533 2531 2531 14534 2531 2531 14535 2541 2541 14536 2542 2542 14537 2531 2531 14538 2542 2542 14539 1935 1935 14540 1935 1935 14541 2542 2542 14542 1949 1949 14543 1949 1949 14544 2542 2542 14545 1985 1985 14546 2542 2542 14547 2543 2543 14548 1985 1985 14549 2543 2543 14550 2542 2542 14551 2541 2541 14552 1985 1985 14553 2543 2543 14554 2544 2544 14555 2541 2541 14556 2544 2544 14557 2543 2543 14558 2544 2544 14559 2541 2541 14560 2540 2540 14561 2544 2544 14562 2540 2540 14563 2545 2545 14564 2540 2540 14565 2546 2546 14566 2545 2545 14567 2546 2546 14568 2540 2540 14569 2547 2547 14570 2540 2540 14571 2539 2539 14572 2547 2547 14573 2539 2539 14574 2538 2538 14575 2547 2547 14576 2547 2547 14577 2538 2538 14578 2548 2548 14579 2547 2547 14580 2548 2548 14581 2549 2549 14582 2547 2547 14583 2549 2549 14584 2546 2546 14585 2546 2546 14586 2549 2549 14587 2550 2550 14588 2546 2546 14589 2550 2550 14590 2545 2545 14591 2545 2545 14592 2550 2550 14593 2551 2551 14594 2545 2545 14595 2551 2551 14596 1987 1987 14597 2545 2545 14598 1987 1987 14599 2544 2544 14600 1987 1987 14601 1986 1986 14602 2544 2544 14603 2544 2544 14604 1986 1986 14605 1985 1985 14606 1987 1987 14607 2551 2551 14608 2552 2552 14609 1987 1987 14610 2552 2552 14611 1990 1990 14612 2551 2551 14613 2553 2553 14614 2552 2552 14615 2553 2553 14616 2551 2551 14617 2550 2550 14618 2553 2553 14619 2550 2550 14620 2554 2554 14621 2550 2550 14622 2555 2555 14623 2554 2554 14624 2555 2555 14625 2550 2550 14626 2549 2549 14627 2555 2555 14628 2549 2549 14629 2556 2556 14630 2549 2549 14631 2557 2557 14632 2556 2556 14633 2557 2557 14634 2549 2549 14635 2548 2548 14636 2557 2557 14637 2548 2548 14638 2558 2558 14639 2548 2548 14640 2559 2559 14641 2558 2558 14642 2559 2559 14643 2548 2548 14644 2074 2074 14645 2074 2074 14646 2548 2548 14647 2538 2538 14648 2074 2074 14649 2538 2538 14650 2075 2075 14651 2074 2074 14652 2032 2032 14653 2559 2559 14654 2559 2559 14655 2032 2032 14656 2070 2070 14657 2559 2559 14658 2070 2070 14659 2560 2560 14660 2559 2559 14661 2560 2560 14662 2558 2558 14663 2560 2560 14664 2070 2070 14665 2071 2071 14666 2558 2558 14667 2560 2560 14668 2561 2561 14669 2071 2071 14670 2562 2562 14671 2560 2560 14672 2561 2561 14673 2560 2560 14674 2562 2562 14675 2071 2071 14676 2072 2072 14677 2562 2562 14678 2072 2072 14679 2563 2563 14680 2562 2562 14681 2563 2563 14682 2072 2072 14683 2073 2073 14684 2562 2562 14685 2563 2563 14686 2564 2564 14687 2073 2073 14688 2565 2565 14689 2563 2563 14690 2564 2564 14691 2563 2563 14692 2565 2565 14693 2073 2073 14694 2566 2566 14695 2565 2565 14696 2566 2566 14697 2073 2073 14698 2066 2066 14699 2566 2566 14700 2066 2066 14701 2064 2064 14702 2566 2566 14703 2064 2064 14704 2567 2567 14705 2566 2566 14706 2567 2567 14707 2565 2565 14708 2064 2064 14709 2063 2063 14710 2567 2567 14711 2567 2567 14712 2063 2063 14713 2061 2061 14714 2567 2567 14715 2061 2061 14716 2059 2059 14717 2567 2567 14718 2059 2059 14719 2568 2568 14720 2567 2567 14721 2568 2568 14722 2565 2565 14723 2565 2565 14724 2568 2568 14725 2564 2564 14726 2564 2564 14727 2568 2568 14728 2058 2058 14729 2568 2568 14730 2059 2059 14731 2058 2058 14732 2564 2564 14733 2058 2058 14734 2569 2569 14735 2564 2564 14736 2569 2569 14737 2562 2562 14738 2562 2562 14739 2569 2569 14740 2561 2561 14741 2561 2561 14742 2569 2569 14743 2054 2054 14744 2561 2561 14745 2054 2054 14746 2035 2035 14747 2561 2561 14748 2035 2035 14749 2558 2558 14750 2558 2558 14751 2035 2035 14752 2557 2557 14753 2035 2035 14754 2036 2036 14755 2557 2557 14756 2557 2557 14757 2036 2036 14758 2037 2037 14759 2557 2557 14760 2037 2037 14761 2570 2570 14762 2557 2557 14763 2570 2570 14764 2556 2556 14765 2570 2570 14766 2037 2037 14767 2039 2039 14768 2556 2556 14769 2570 2570 14770 2571 2571 14771 2039 2039 14772 2572 2572 14773 2570 2570 14774 2571 2571 14775 2570 2570 14776 2572 2572 14777 2039 2039 14778 2046 2046 14779 2572 2572 14780 2046 2046 14781 2573 2573 14782 2572 2572 14783 2573 2573 14784 2046 2046 14785 2048 2048 14786 2572 2572 14787 2573 2573 14788 2574 2574 14789 2048 2048 14790 2575 2575 14791 2573 2573 14792 2574 2574 14793 2573 2573 14794 2575 2575 14795 2048 2048 14796 2576 2576 14797 2575 2575 14798 2576 2576 14799 2048 2048 14800 2049 2049 14801 2576 2576 14802 2049 2049 14803 2051 2051 14804 2576 2576 14805 2051 2051 14806 2577 2577 14807 2576 2576 14808 2577 2577 14809 2575 2575 14810 2051 2051 14811 2052 2052 14812 2577 2577 14813 2577 2577 14814 2052 2052 14815 2044 2044 14816 2577 2577 14817 2044 2044 14818 2042 2042 14819 2577 2577 14820 2042 2042 14821 2578 2578 14822 2577 2577 14823 2578 2578 14824 2575 2575 14825 2575 2575 14826 2578 2578 14827 2574 2574 14828 2574 2574 14829 2578 2578 14830 2041 2041 14831 2578 2578 14832 2042 2042 14833 2041 2041 14834 2574 2574 14835 2041 2041 14836 2579 2579 14837 2574 2574 14838 2579 2579 14839 2572 2572 14840 2572 2572 14841 2579 2579 14842 2571 2571 14843 2571 2571 14844 2579 2579 14845 2025 2025 14846 2571 2571 14847 2025 2025 14848 2023 2023 14849 2571 2571 14850 2023 2023 14851 2556 2556 14852 2556 2556 14853 2023 2023 14854 2005 2005 14855 2556 2556 14856 2005 2005 14857 2555 2555 14858 2555 2555 14859 2005 2005 14860 2006 2006 14861 2555 2555 14862 2006 2006 14863 2580 2580 14864 2555 2555 14865 2580 2580 14866 2554 2554 14867 2580 2580 14868 2006 2006 14869 2008 2008 14870 2554 2554 14871 2580 2580 14872 2581 2581 14873 2008 2008 14874 2582 2582 14875 2580 2580 14876 2581 2581 14877 2580 2580 14878 2582 2582 14879 2008 2008 14880 2015 2015 14881 2582 2582 14882 2015 2015 14883 2583 2583 14884 2582 2582 14885 2583 2583 14886 2015 2015 14887 2017 2017 14888 2582 2582 14889 2583 2583 14890 2584 2584 14891 2017 2017 14892 2585 2585 14893 2583 2583 14894 2584 2584 14895 2583 2583 14896 2585 2585 14897 2017 2017 14898 2586 2586 14899 2585 2585 14900 2586 2586 14901 2017 2017 14902 2018 2018 14903 2586 2586 14904 2018 2018 14905 2020 2020 14906 2586 2586 14907 2020 2020 14908 2587 2587 14909 2586 2586 14910 2587 2587 14911 2585 2585 14912 2020 2020 14913 2022 2022 14914 2587 2587 14915 2587 2587 14916 2022 2022 14917 2013 2013 14918 2587 2587 14919 2013 2013 14920 2011 2011 14921 2587 2587 14922 2011 2011 14923 2588 2588 14924 2587 2587 14925 2588 2588 14926 2585 2585 14927 2585 2585 14928 2588 2588 14929 2584 2584 14930 2584 2584 14931 2588 2588 14932 2010 2010 14933 2588 2588 14934 2011 2011 14935 2010 2010 14936 2584 2584 14937 2010 2010 14938 2589 2589 14939 2584 2584 14940 2589 2589 14941 2582 2582 14942 2582 2582 14943 2589 2589 14944 2581 2581 14945 2581 2581 14946 2589 2589 14947 1999 1999 14948 2581 2581 14949 1999 1999 14950 1997 1997 14951 2581 2581 14952 1997 1997 14953 2554 2554 14954 2554 2554 14955 1997 1997 14956 1995 1995 14957 2554 2554 14958 1995 1995 14959 2553 2553 14960 2553 2553 14961 1995 1995 14962 1996 1996 14963 2553 2553 14964 1996 1996 14965 2590 2590 14966 2553 2553 14967 2590 2590 14968 2552 2552 14969 2590 2590 14970 1996 1996 14971 2591 2591 14972 2552 2552 14973 2590 2590 14974 2592 2592 14975 2591 2591 14976 2593 2593 14977 2590 2590 14978 2592 2592 14979 2590 2590 14980 2593 2593 14981 2591 2591 14982 2594 2594 14983 2593 2593 14984 2594 2594 14985 2595 2595 14986 2593 2593 14987 2595 2595 14988 2594 2594 14989 2596 2596 14990 2593 2593 14991 2595 2595 14992 2597 2597 14993 2596 2596 14994 2598 2598 14995 2595 2595 14996 2597 2597 14997 2595 2595 14998 2598 2598 14999 2596 2596 15000 2599 2599 15001 2598 2598 15002 2599 2599 15003 2596 2596 15004 2600 2600 15005 2599 2599 15006 2600 2600 15007 2601 2601 15008 2599 2599 15009 2601 2601 15010 2602 2602 15011 2599 2599 15012 2602 2602 15013 2598 2598 15014 2601 2601 15015 2603 2603 15016 2602 2602 15017 2602 2602 15018 2603 2603 15019 2604 2604 15020 2602 2602 15021 2604 2604 15022 2605 2605 15023 2602 2602 15024 2605 2605 15025 2606 2606 15026 2602 2602 15027 2606 2606 15028 2598 2598 15029 2598 2598 15030 2606 2606 15031 2597 2597 15032 2597 2597 15033 2606 2606 15034 2607 2607 15035 2606 2606 15036 2605 2605 15037 2607 2607 15038 2597 2597 15039 2607 2607 15040 2608 2608 15041 2597 2597 15042 2608 2608 15043 2593 2593 15044 2593 2593 15045 2608 2608 15046 2592 2592 15047 2592 2592 15048 2608 2608 15049 2609 2609 15050 2592 2592 15051 2609 2609 15052 1990 1990 15053 2592 2592 15054 1990 1990 15055 2552 2552 15056 1990 1990 15057 2609 2609 15058 1991 1991 15059 1991 1991 15060 2609 2609 15061 2610 2610 15062 2610 2610 15063 2609 2609 15064 2608 2608 15065 2610 2610 15066 2608 2608 15067 2607 2607 15068 2610 2610 15069 2607 2607 15070 2611 2611 15071 2611 2611 15072 2607 2607 15073 2605 2605 15074 2611 2611 15075 2605 2605 15076 2612 2612 15077 2612 2612 15078 2605 2605 15079 2604 2604 15080 2612 2612 15081 2604 2604 15082 2613 2613 15083 2613 2613 15084 2604 2604 15085 2603 2603 15086 2613 2613 15087 2603 2603 15088 2601 2601 15089 2613 2613 15090 2601 2601 15091 2614 2614 15092 2601 2601 15093 2600 2600 15094 2614 2614 15095 2613 2613 15096 2614 2614 15097 2615 2615 15098 2600 2600 15099 2615 2615 15100 2614 2614 15101 2613 2613 15102 2615 2615 15103 2612 2612 15104 2612 2612 15105 2615 2615 15106 2616 2616 15107 2612 2612 15108 2616 2616 15109 2611 2611 15110 2611 2611 15111 2616 2616 15112 2617 2617 15113 2611 2611 15114 2617 2617 15115 2618 2618 15116 2611 2611 15117 2618 2618 15118 2610 2610 15119 2610 2610 15120 2618 2618 15121 1991 1991 15122 1991 1991 15123 2618 2618 15124 1992 1992 15125 2618 2618 15126 2617 2617 15127 1992 1992 15128 1992 1992 15129 2617 2617 15130 1996 1996 15131 2617 2617 15132 2591 2591 15133 1996 1996 15134 2591 2591 15135 2617 2617 15136 2616 2616 15137 2591 2591 15138 2616 2616 15139 2594 2594 15140 2594 2594 15141 2616 2616 15142 2615 2615 15143 2594 2594 15144 2615 2615 15145 2596 2596 15146 2596 2596 15147 2615 2615 15148 2600 2600 15149 2538 2538 15150 2076 2076 15151 2075 2075 15152 2076 2076 15153 2538 2538 15154 2619 2619 15155 2619 2619 15156 2538 2538 15157 2537 2537 15158 2076 2076 15159 2619 2619 15160 2077 2077 15161 2619 2619 15162 2537 2537 15163 2620 2620 15164 2620 2620 15165 2537 2537 15166 2536 2536 15167 2619 2619 15168 2620 2620 15169 2621 2621 15170 2619 2619 15171 2621 2621 15172 2077 2077 15173 2621 2621 15174 2078 2078 15175 2077 2077 15176 2078 2078 15177 2621 2621 15178 2082 2082 15179 2621 2621 15180 2622 2622 15181 2082 2082 15182 2622 2622 15183 2621 2621 15184 2620 2620 15185 2082 2082 15186 2622 2622 15187 2084 2084 15188 2620 2620 15189 2623 2623 15190 2622 2622 15191 2623 2623 15192 2620 2620 15193 2536 2536 15194 2623 2623 15195 2536 2536 15196 2624 2624 15197 2624 2624 15198 2536 2536 15199 2093 2093 15200 2624 2624 15201 2093 2093 15202 2092 2092 15203 2624 2624 15204 2092 2092 15205 2625 2625 15206 2624 2624 15207 2625 2625 15208 2626 2626 15209 2624 2624 15210 2626 2626 15211 2623 2623 15212 2623 2623 15213 2626 2626 15214 2622 2622 15215 2626 2626 15216 2627 2627 15217 2622 2622 15218 2622 2622 15219 2627 2627 15220 2084 2084 15221 2627 2627 15222 2626 2626 15223 2628 2628 15224 2084 2084 15225 2627 2627 15226 2628 2628 15227 2084 2084 15228 2628 2628 15229 2085 2085 15230 2085 2085 15231 2628 2628 15232 2088 2088 15233 2088 2088 15234 2628 2628 15235 2629 2629 15236 2629 2629 15237 2628 2628 15238 2626 2626 15239 2629 2629 15240 2626 2626 15241 2625 2625 15242 2629 2629 15243 2625 2625 15244 2630 2630 15245 2630 2630 15246 2625 2625 15247 2092 2092 15248 2630 2630 15249 2092 2092 15250 2091 2091 15251 2630 2630 15252 2091 2091 15253 2090 2090 15254 2630 2630 15255 2090 2090 15256 2089 2089 15257 2630 2630 15258 2089 2089 15259 2629 2629 15260 2629 2629 15261 2089 2089 15262 2088 2088 15263 2569 2569 15264 2055 2055 15265 2054 2054 15266 2055 2055 15267 2569 2569 15268 2058 2058 15269 2579 2579 15270 2026 2026 15271 2025 2025 15272 2026 2026 15273 2579 2579 15274 2041 2041 15275 2589 2589 15276 2000 2000 15277 1999 1999 15278 2000 2000 15279 2589 2589 15280 2010 2010 15281 2631 2631 15282 2219 2219 15283 2205 2205 15284 2219 2219 15285 2631 2631 15286 2200 2200 15287 2205 2205 15288 482 482 15289 2631 2631 15290 482 482 15291 2205 2205 15292 1514 1514 15293 2205 2205 15294 2204 2204 15295 1514 1514 15296 2204 2204 15297 2197 2197 15298 1514 1514 15299 2197 2197 15300 2204 2204 15301 2218 2218 15302 1514 1514 15303 2197 2197 15304 2196 2196 15305 1514 1514 15306 2196 2196 15307 1513 1513 15308 1513 1513 15309 2196 2196 15310 1512 1512 15311 2196 2196 15312 2212 2212 15313 1512 1512 15314 1512 1512 15315 2212 2212 15316 1510 1510 15317 2212 2212 15318 2213 2213 15319 1510 1510 15320 1510 1510 15321 2213 2213 15322 1511 1511 15323 2213 2213 15324 2214 2214 15325 1511 1511 15326 1511 1511 15327 2214 2214 15328 2201 2201 15329 1511 1511 15330 2201 2201 15331 2200 2200 15332 1511 1511 15333 2200 2200 15334 478 478 15335 478 478 15336 2200 2200 15337 2631 2631 15338 478 478 15339 2631 2631 15340 2632 2632 15341 2631 2631 15342 482 482 15343 2633 2633 15344 482 482 15345 2634 2634 15346 2633 2633 15347 2634 2634 15348 482 482 15349 481 481 15350 2634 2634 15351 481 481 15352 2635 2635 15353 481 481 15354 2636 2636 15355 2635 2635 15356 2636 2636 15357 481 481 15358 2637 2637 15359 481 481 15360 480 480 15361 2637 2637 15362 2637 2637 15363 480 480 15364 479 479 15365 2637 2637 15366 479 479 15367 2638 2638 15368 2638 2638 15369 479 479 15370 2639 2639 15371 479 479 15372 476 476 15373 2639 2639 15374 2639 2639 15375 476 476 15376 477 477 15377 2639 2639 15378 477 477 15379 2640 2640 15380 2640 2640 15381 477 477 15382 2641 2641 15383 2641 2641 15384 477 477 15385 2642 2642 15386 477 477 15387 478 478 15388 2642 2642 15389 2642 2642 15390 478 478 15391 2632 2632 15392 2218 2218 15393 2201 2201 15394 2214 2214 15395 2218 2218 15396 2214 2214 15397 2215 2215 15398 2218 2218 15399 2215 2215 15400 2197 2197 15401 2643 2643 15402 2644 2644 15403 2645 2645 15404 2644 2644 15405 2643 2643 15406 2646 2646 15407 2643 2643 15408 2647 2647 15409 2646 2646 15410 2646 2646 15411 2647 2647 15412 2648 2648 15413 2647 2647 15414 2649 2649 15415 2648 2648 15416 2648 2648 15417 2649 2649 15418 2650 2650 15419 2648 2648 15420 2650 2650 15421 2651 2651 15422 2651 2651 15423 2650 2650 15424 2652 2652 15425 2650 2650 15426 2653 2653 15427 2652 2652 15428 2652 2652 15429 2653 2653 15430 2654 2654 15431 2653 2653 15432 2655 2655 15433 2654 2654 15434 2654 2654 15435 2655 2655 15436 2656 2656 15437 2655 2655 15438 2657 2657 15439 2656 2656 15440 2656 2656 15441 2657 2657 15442 2658 2658 15443 2657 2657 15444 2659 2659 15445 2658 2658 15446 2658 2658 15447 2659 2659 15448 2660 2660 15449 2659 2659 15450 2661 2661 15451 2660 2660 15452 2660 2660 15453 2661 2661 15454 2662 2662 15455 2661 2661 15456 2659 2659 15457 2663 2663 15458 2659 2659 15459 2664 2664 15460 2663 2663 15461 2664 2664 15462 2659 2659 15463 2657 2657 15464 2664 2664 15465 2657 2657 15466 2665 2665 15467 2665 2665 15468 2657 2657 15469 2655 2655 15470 2665 2665 15471 2655 2655 15472 2666 2666 15473 2666 2666 15474 2655 2655 15475 2667 2667 15476 2655 2655 15477 2653 2653 15478 2667 2667 15479 2667 2667 15480 2653 2653 15481 2668 2668 15482 2653 2653 15483 2650 2650 15484 2668 2668 15485 2668 2668 15486 2650 2650 15487 2669 2669 15488 2650 2650 15489 2649 2649 15490 2669 2669 15491 2669 2669 15492 2649 2649 15493 2647 2647 15494 2669 2669 15495 2647 2647 15496 2670 2670 15497 2670 2670 15498 2647 2647 15499 2671 2671 15500 2647 2647 15501 2643 2643 15502 2671 2671 15503 2670 2670 15504 2671 2671 15505 2672 2672 15506 2670 2670 15507 2672 2672 15508 2673 2673 15509 2670 2670 15510 2673 2673 15511 2669 2669 15512 2673 2673 15513 2674 2674 15514 2669 2669 15515 2669 2669 15516 2674 2674 15517 2668 2668 15518 2674 2674 15519 2675 2675 15520 2668 2668 15521 2668 2668 15522 2675 2675 15523 2667 2667 15524 2675 2675 15525 2676 2676 15526 2667 2667 15527 2667 2667 15528 2676 2676 15529 2666 2666 15530 2676 2676 15531 2675 2675 15532 2677 2677 15533 2677 2677 15534 2675 2675 15535 2674 2674 15536 2677 2677 15537 2674 2674 15538 2678 2678 15539 2678 2678 15540 2674 2674 15541 2673 2673 15542 2678 2678 15543 2673 2673 15544 2672 2672 15545 2678 2678 15546 2672 2672 15547 2679 2679 15548 2672 2672 15549 2680 2680 15550 2679 2679 15551 2680 2680 15552 2672 2672 15553 2671 2671 15554 2680 2680 15555 2671 2671 15556 2681 2681 15557 2681 2681 15558 2671 2671 15559 2643 2643 15560 2681 2681 15561 2643 2643 15562 2682 2682 15563 2682 2682 15564 2643 2643 15565 2645 2645 15566 2682 2682 15567 2645 2645 15568 2683 2683 15569 2645 2645 15570 2684 2684 15571 2683 2683 15572 2682 2682 15573 2683 2683 15574 2685 2685 15575 2682 2682 15576 2685 2685 15577 2681 2681 15578 2681 2681 15579 2685 2685 15580 2686 2686 15581 2681 2681 15582 2686 2686 15583 2680 2680 15584 2680 2680 15585 2686 2686 15586 2687 2687 15587 2680 2680 15588 2687 2687 15589 2679 2679 15590 2679 2679 15591 2687 2687 15592 2688 2688 15593 2679 2679 15594 2688 2688 15595 2689 2689 15596 2679 2679 15597 2689 2689 15598 2678 2678 15599 2689 2689 15600 2677 2677 15601 2678 2678 15602 2677 2677 15603 2689 2689 15604 2690 2690 15605 2677 2677 15606 2690 2690 15607 2676 2676 15608 2676 2676 15609 2690 2690 15610 2691 2691 15611 2676 2676 15612 2691 2691 15613 2666 2666 15614 2690 2690 15615 2692 2692 15616 2691 2691 15617 2666 2666 15618 2691 2691 15619 2693 2693 15620 2692 2692 15621 2693 2693 15622 2691 2691 15623 2666 2666 15624 2693 2693 15625 2665 2665 15626 2665 2665 15627 2693 2693 15628 2664 2664 15629 2664 2664 15630 2693 2693 15631 2694 2694 15632 2694 2694 15633 2693 2693 15634 2692 2692 15635 2664 2664 15636 2694 2694 15637 2695 2695 15638 2664 2664 15639 2695 2695 15640 2663 2663 15641 2695 2695 15642 2694 2694 15643 2696 2696 15644 2696 2696 15645 2694 2694 15646 2692 2692 15647 2696 2696 15648 2692 2692 15649 2697 2697 15650 2697 2697 15651 2692 2692 15652 2698 2698 15653 2692 2692 15654 2690 2690 15655 2698 2698 15656 2698 2698 15657 2690 2690 15658 2689 2689 15659 2698 2698 15660 2689 2689 15661 2688 2688 15662 2698 2698 15663 2688 2688 15664 2353 2353 15665 2698 2698 15666 2353 2353 15667 2697 2697 15668 2353 2353 15669 2699 2699 15670 2697 2697 15671 2697 2697 15672 2699 2699 15673 2696 2696 15674 2699 2699 15675 2700 2700 15676 2696 2696 15677 2696 2696 15678 2700 2700 15679 2695 2695 15680 2700 2700 15681 2701 2701 15682 2695 2695 15683 2695 2695 15684 2701 2701 15685 2702 2702 15686 2695 2695 15687 2702 2702 15688 2663 2663 15689 2663 2663 15690 2702 2702 15691 2703 2703 15692 2663 2663 15693 2703 2703 15694 2661 2661 15695 2661 2661 15696 2703 2703 15697 2662 2662 15698 2662 2662 15699 2703 2703 15700 2704 2704 15701 2662 2662 15702 2704 2704 15703 2705 2705 15704 2704 2704 15705 2703 2703 15706 2706 2706 15707 2703 2703 15708 2702 2702 15709 2706 2706 15710 2706 2706 15711 2702 2702 15712 2707 2707 15713 2702 2702 15714 2701 2701 15715 2707 2707 15716 2707 2707 15717 2701 2701 15718 2700 2700 15719 2707 2707 15720 2700 2700 15721 2708 2708 15722 2708 2708 15723 2700 2700 15724 2358 2358 15725 2700 2700 15726 2699 2699 15727 2358 2358 15728 2358 2358 15729 2699 2699 15730 2355 2355 15731 2355 2355 15732 2699 2699 15733 2353 2353 15734 2353 2353 15735 2688 2688 15736 2351 2351 15737 2688 2688 15738 2709 2709 15739 2351 2351 15740 2709 2709 15741 2349 2349 15742 2351 2351 15743 2709 2709 15744 2688 2688 15745 2710 2710 15746 2710 2710 15747 2688 2688 15748 2687 2687 15749 2709 2709 15750 2710 2710 15751 2711 2711 15752 2709 2709 15753 2711 2711 15754 2712 2712 15755 2709 2709 15756 2712 2712 15757 2349 2349 15758 2349 2349 15759 2712 2712 15760 2347 2347 15761 2712 2712 15762 2713 2713 15763 2347 2347 15764 2347 2347 15765 2713 2713 15766 2345 2345 15767 2713 2713 15768 2714 2714 15769 2345 2345 15770 2714 2714 15771 2343 2343 15772 2345 2345 15773 2343 2343 15774 2714 2714 15775 2715 2715 15776 2343 2343 15777 2715 2715 15778 2342 2342 15779 2342 2342 15780 2715 2715 15781 2716 2716 15782 2342 2342 15783 2716 2716 15784 2340 2340 15785 2340 2340 15786 2716 2716 15787 2717 2717 15788 2340 2340 15789 2717 2717 15790 2338 2338 15791 2338 2338 15792 2717 2717 15793 2718 2718 15794 2338 2338 15795 2718 2718 15796 2335 2335 15797 2718 2718 15798 2333 2333 15799 2335 2335 15800 2333 2333 15801 2718 2718 15802 2330 2330 15803 2718 2718 15804 2719 2719 15805 2330 2330 15806 2330 2330 15807 2719 2719 15808 2331 2331 15809 2719 2719 15810 2718 2718 15811 2720 2720 15812 2720 2720 15813 2718 2718 15814 2717 2717 15815 2720 2720 15816 2717 2717 15817 2721 2721 15818 2721 2721 15819 2717 2717 15820 2716 2716 15821 2721 2721 15822 2716 2716 15823 2722 2722 15824 2722 2722 15825 2716 2716 15826 2715 2715 15827 2722 2722 15828 2715 2715 15829 2723 2723 15830 2723 2723 15831 2715 2715 15832 2714 2714 15833 2723 2723 15834 2714 2714 15835 2724 2724 15836 2724 2724 15837 2714 2714 15838 2725 2725 15839 2714 2714 15840 2713 2713 15841 2725 2725 15842 2725 2725 15843 2713 2713 15844 2726 2726 15845 2726 2726 15846 2713 2713 15847 2712 2712 15848 2726 2726 15849 2712 2712 15850 2727 2727 15851 2712 2712 15852 2711 2711 15853 2727 2727 15854 2726 2726 15855 2727 2727 15856 2728 2728 15857 2726 2726 15858 2728 2728 15859 2729 2729 15860 2726 2726 15861 2729 2729 15862 2725 2725 15863 2725 2725 15864 2729 2729 15865 2730 2730 15866 2725 2725 15867 2730 2730 15868 2724 2724 15869 2730 2730 15870 2731 2731 15871 2724 2724 15872 2724 2724 15873 2731 2731 15874 2732 2732 15875 2724 2724 15876 2732 2732 15877 2723 2723 15878 2723 2723 15879 2732 2732 15880 2733 2733 15881 2723 2723 15882 2733 2733 15883 2722 2722 15884 2722 2722 15885 2733 2733 15886 2734 2734 15887 2722 2722 15888 2734 2734 15889 2721 2721 15890 2721 2721 15891 2734 2734 15892 2735 2735 15893 2721 2721 15894 2735 2735 15895 2720 2720 15896 2720 2720 15897 2735 2735 15898 2736 2736 15899 2720 2720 15900 2736 2736 15901 2719 2719 15902 2719 2719 15903 2736 2736 15904 2737 2737 15905 2719 2719 15906 2737 2737 15907 2331 2331 15908 2736 2736 15909 2738 2738 15910 2737 2737 15911 2331 2331 15912 2737 2737 15913 2739 2739 15914 2738 2738 15915 2739 2739 15916 2737 2737 15917 2739 2739 15918 2738 2738 15919 2740 2740 15920 2740 2740 15921 2738 2738 15922 2741 2741 15923 2738 2738 15924 2736 2736 15925 2741 2741 15926 2741 2741 15927 2736 2736 15928 2735 2735 15929 2741 2741 15930 2735 2735 15931 2742 2742 15932 2742 2742 15933 2735 2735 15934 2743 2743 15935 2735 2735 15936 2734 2734 15937 2743 2743 15938 2743 2743 15939 2734 2734 15940 2733 2733 15941 2743 2743 15942 2733 2733 15943 2744 2744 15944 2744 2744 15945 2733 2733 15946 2732 2732 15947 2744 2744 15948 2732 2732 15949 2745 2745 15950 2745 2745 15951 2732 2732 15952 2731 2731 15953 2745 2745 15954 2731 2731 15955 2746 2746 15956 2746 2746 15957 2731 2731 15958 2730 2730 15959 2746 2746 15960 2730 2730 15961 2747 2747 15962 2730 2730 15963 2748 2748 15964 2747 2747 15965 2748 2748 15966 2730 2730 15967 2749 2749 15968 2749 2749 15969 2730 2730 15970 2729 2729 15971 2749 2749 15972 2729 2729 15973 2750 2750 15974 2729 2729 15975 2728 2728 15976 2750 2750 15977 2750 2750 15978 2728 2728 15979 2751 2751 15980 2751 2751 15981 2728 2728 15982 2727 2727 15983 2751 2751 15984 2727 2727 15985 2752 2752 15986 2752 2752 15987 2727 2727 15988 2711 2711 15989 2751 2751 15990 2752 2752 15991 2753 2753 15992 2751 2751 15993 2753 2753 15994 2754 2754 15995 2751 2751 15996 2754 2754 15997 2750 2750 15998 2754 2754 15999 2755 2755 16000 2750 2750 16001 2750 2750 16002 2755 2755 16003 2756 2756 16004 2750 2750 16005 2756 2756 16006 2749 2749 16007 2749 2749 16008 2756 2756 16009 2757 2757 16010 2749 2749 16011 2757 2757 16012 2748 2748 16013 2748 2748 16014 2757 2757 16015 2758 2758 16016 2748 2748 16017 2758 2758 16018 2747 2747 16019 2747 2747 16020 2758 2758 16021 2759 2759 16022 2747 2747 16023 2759 2759 16024 2760 2760 16025 2747 2747 16026 2760 2760 16027 2746 2746 16028 2760 2760 16029 2761 2761 16030 2746 2746 16031 2746 2746 16032 2761 2761 16033 2745 2745 16034 2761 2761 16035 2760 2760 16036 2762 2762 16037 2762 2762 16038 2760 2760 16039 2763 2763 16040 2760 2760 16041 2759 2759 16042 2763 2763 16043 2763 2763 16044 2759 2759 16045 2764 2764 16046 2759 2759 16047 2765 2765 16048 2764 2764 16049 2765 2765 16050 2759 2759 16051 2758 2758 16052 2765 2765 16053 2758 2758 16054 2766 2766 16055 2766 2766 16056 2758 2758 16057 2757 2757 16058 2766 2766 16059 2757 2757 16060 2767 2767 16061 2767 2767 16062 2757 2757 16063 2756 2756 16064 2767 2767 16065 2756 2756 16066 2768 2768 16067 2768 2768 16068 2756 2756 16069 2755 2755 16070 2768 2768 16071 2755 2755 16072 2769 2769 16073 2769 2769 16074 2755 2755 16075 2770 2770 16076 2755 2755 16077 2754 2754 16078 2770 2770 16079 2770 2770 16080 2754 2754 16081 2771 2771 16082 2771 2771 16083 2754 2754 16084 2753 2753 16085 2771 2771 16086 2753 2753 16087 2772 2772 16088 2753 2753 16089 2773 2773 16090 2772 2772 16091 2773 2773 16092 2753 2753 16093 2752 2752 16094 2773 2773 16095 2752 2752 16096 2711 2711 16097 2773 2773 16098 2711 2711 16099 2774 2774 16100 2773 2773 16101 2774 2774 16102 2772 2772 16103 2711 2711 16104 2710 2710 16105 2774 2774 16106 2774 2774 16107 2710 2710 16108 2687 2687 16109 2774 2774 16110 2687 2687 16111 2775 2775 16112 2774 2774 16113 2775 2775 16114 2772 2772 16115 2687 2687 16116 2686 2686 16117 2775 2775 16118 2772 2772 16119 2775 2775 16120 2776 2776 16121 2772 2772 16122 2776 2776 16123 2771 2771 16124 2771 2771 16125 2776 2776 16126 2777 2777 16127 2771 2771 16128 2777 2777 16129 2770 2770 16130 2777 2777 16131 2778 2778 16132 2770 2770 16133 2770 2770 16134 2778 2778 16135 2769 2769 16136 2778 2778 16137 2777 2777 16138 2779 2779 16139 2777 2777 16140 2776 2776 16141 2779 2779 16142 2779 2779 16143 2776 2776 16144 2780 2780 16145 2776 2776 16146 2781 2781 16147 2780 2780 16148 2781 2781 16149 2776 2776 16150 2775 2775 16151 2781 2781 16152 2775 2775 16153 2686 2686 16154 2781 2781 16155 2686 2686 16156 2685 2685 16157 2781 2781 16158 2685 2685 16159 2683 2683 16160 2781 2781 16161 2683 2683 16162 2780 2780 16163 2780 2780 16164 2683 2683 16165 2684 2684 16166 2780 2780 16167 2684 2684 16168 2782 2782 16169 2780 2780 16170 2782 2782 16171 2783 2783 16172 2780 2780 16173 2783 2783 16174 2779 2779 16175 2779 2779 16176 2783 2783 16177 2784 2784 16178 2779 2779 16179 2784 2784 16180 2785 2785 16181 2779 2779 16182 2785 2785 16183 2778 2778 16184 2784 2784 16185 2786 2786 16186 2785 2785 16187 2778 2778 16188 2785 2785 16189 2786 2786 16190 2778 2778 16191 2786 2786 16192 2787 2787 16193 2778 2778 16194 2787 2787 16195 2769 2769 16196 2787 2787 16197 2786 2786 16198 2788 2788 16199 2769 2769 16200 2787 2787 16201 2789 2789 16202 2788 2788 16203 2789 2789 16204 2787 2787 16205 2769 2769 16206 2789 2789 16207 2768 2768 16208 2768 2768 16209 2789 2789 16210 2790 2790 16211 2768 2768 16212 2790 2790 16213 2767 2767 16214 2790 2790 16215 2789 2789 16216 2791 2791 16217 2789 2789 16218 2788 2788 16219 2791 2791 16220 2790 2790 16221 2791 2791 16222 2792 2792 16223 2790 2790 16224 2792 2792 16225 2793 2793 16226 2790 2790 16227 2793 2793 16228 2767 2767 16229 2793 2793 16230 2766 2766 16231 2767 2767 16232 2766 2766 16233 2793 2793 16234 2794 2794 16235 2766 2766 16236 2794 2794 16237 2765 2765 16238 2794 2794 16239 2793 2793 16240 2795 2795 16241 2793 2793 16242 2792 2792 16243 2795 2795 16244 2795 2795 16245 2792 2792 16246 2796 2796 16247 2792 2792 16248 2797 2797 16249 2796 2796 16250 2797 2797 16251 2792 2792 16252 2791 2791 16253 2797 2797 16254 2791 2791 16255 2798 2798 16256 2798 2798 16257 2791 2791 16258 2788 2788 16259 2798 2798 16260 2788 2788 16261 2799 2799 16262 2799 2799 16263 2788 2788 16264 2784 2784 16265 2788 2788 16266 2786 2786 16267 2784 2784 16268 2795 2795 16269 2796 2796 16270 2800 2800 16271 2795 2795 16272 2800 2800 16273 2801 2801 16274 2795 2795 16275 2801 2801 16276 2794 2794 16277 2801 2801 16278 2800 2800 16279 2802 2802 16280 2794 2794 16281 2801 2801 16282 2803 2803 16283 2794 2794 16284 2803 2803 16285 2765 2765 16286 2803 2803 16287 2764 2764 16288 2765 2765 16289 2764 2764 16290 2803 2803 16291 2804 2804 16292 2804 2804 16293 2803 2803 16294 2805 2805 16295 2803 2803 16296 2801 2801 16297 2805 2805 16298 2805 2805 16299 2801 2801 16300 2802 2802 16301 2805 2805 16302 2802 2802 16303 2806 2806 16304 2802 2802 16305 2807 2807 16306 2806 2806 16307 2806 2806 16308 2807 2807 16309 2808 2808 16310 2806 2806 16311 2808 2808 16312 2809 2809 16313 2806 2806 16314 2809 2809 16315 2810 2810 16316 2806 2806 16317 2810 2810 16318 2805 2805 16319 2810 2810 16320 2804 2804 16321 2805 2805 16322 2804 2804 16323 2810 2810 16324 2811 2811 16325 2804 2804 16326 2811 2811 16327 2812 2812 16328 2804 2804 16329 2812 2812 16330 2764 2764 16331 2764 2764 16332 2812 2812 16333 2763 2763 16334 2812 2812 16335 2813 2813 16336 2763 2763 16337 2763 2763 16338 2813 2813 16339 2762 2762 16340 2813 2813 16341 2812 2812 16342 2814 2814 16343 2762 2762 16344 2813 2813 16345 2815 2815 16346 2814 2814 16347 2815 2815 16348 2813 2813 16349 2762 2762 16350 2815 2815 16351 2816 2816 16352 2762 2762 16353 2816 2816 16354 2761 2761 16355 2815 2815 16356 2745 2745 16357 2816 2816 16358 2761 2761 16359 2816 2816 16360 2745 2745 16361 2815 2815 16362 2817 2817 16363 2745 2745 16364 2817 2817 16365 2815 2815 16366 2818 2818 16367 2818 2818 16368 2815 2815 16369 2814 2814 16370 2817 2817 16371 2818 2818 16372 2819 2819 16373 2818 2818 16374 2814 2814 16375 2820 2820 16376 2819 2819 16377 2818 2818 16378 2820 2820 16379 2814 2814 16380 2821 2821 16381 2820 2820 16382 2821 2821 16383 2814 2814 16384 2811 2811 16385 2811 2811 16386 2814 2814 16387 2812 2812 16388 2821 2821 16389 2811 2811 16390 2810 2810 16391 2821 2821 16392 2810 2810 16393 2822 2822 16394 2822 2822 16395 2810 2810 16396 2809 2809 16397 2822 2822 16398 2809 2809 16399 2823 2823 16400 2823 2823 16401 2809 2809 16402 2808 2808 16403 2823 2823 16404 2808 2808 16405 2824 2824 16406 2823 2823 16407 2824 2824 16408 2825 2825 16409 2824 2824 16410 2826 2826 16411 2825 2825 16412 2825 2825 16413 2826 2826 16414 2827 2827 16415 2826 2826 16416 2828 2828 16417 2827 2827 16418 2827 2827 16419 2828 2828 16420 2829 2829 16421 2827 2827 16422 2829 2829 16423 2830 2830 16424 2830 2830 16425 2829 2829 16426 2831 2831 16427 2827 2827 16428 2830 2830 16429 2832 2832 16430 2827 2827 16431 2832 2832 16432 2825 2825 16433 2832 2832 16434 2833 2833 16435 2825 2825 16436 2825 2825 16437 2833 2833 16438 2823 2823 16439 2833 2833 16440 2834 2834 16441 2823 2823 16442 2823 2823 16443 2834 2834 16444 2822 2822 16445 2822 2822 16446 2834 2834 16447 2835 2835 16448 2822 2822 16449 2835 2835 16450 2821 2821 16451 2821 2821 16452 2835 2835 16453 2820 2820 16454 2835 2835 16455 2836 2836 16456 2820 2820 16457 2820 2820 16458 2836 2836 16459 2819 2819 16460 2836 2836 16461 2835 2835 16462 2834 2834 16463 2836 2836 16464 2834 2834 16465 2833 2833 16466 2836 2836 16467 2833 2833 16468 2837 2837 16469 2837 2837 16470 2833 2833 16471 2832 2832 16472 2837 2837 16473 2832 2832 16474 2838 2838 16475 2838 2838 16476 2832 2832 16477 2830 2830 16478 2838 2838 16479 2830 2830 16480 2839 2839 16481 2839 2839 16482 2830 2830 16483 2831 2831 16484 2839 2839 16485 2831 2831 16486 2840 2840 16487 2839 2839 16488 2840 2840 16489 2841 2841 16490 2841 2841 16491 2840 2840 16492 2842 2842 16493 2839 2839 16494 2841 2841 16495 2843 2843 16496 2839 2839 16497 2843 2843 16498 2838 2838 16499 2838 2838 16500 2843 2843 16501 2844 2844 16502 2838 2838 16503 2844 2844 16504 2837 2837 16505 2843 2843 16506 2845 2845 16507 2844 2844 16508 2845 2845 16509 2843 2843 16510 2846 2846 16511 2843 2843 16512 2841 2841 16513 2846 2846 16514 2846 2846 16515 2841 2841 16516 2847 2847 16517 2847 2847 16518 2841 2841 16519 2848 2848 16520 2848 2848 16521 2841 2841 16522 2842 2842 16523 2848 2848 16524 2842 2842 16525 653 653 16526 2848 2848 16527 653 653 16528 645 645 16529 2848 2848 16530 645 645 16531 2849 2849 16532 2849 2849 16533 645 645 16534 652 652 16535 2848 2848 16536 2849 2849 16537 2850 2850 16538 2848 2848 16539 2850 2850 16540 2847 2847 16541 2850 2850 16542 2849 2849 16543 2851 2851 16544 2847 2847 16545 2850 2850 16546 2852 2852 16547 2851 2851 16548 2852 2852 16549 2850 2850 16550 2847 2847 16551 2852 2852 16552 2853 2853 16553 2847 2847 16554 2853 2853 16555 2846 2846 16556 2853 2853 16557 2852 2852 16558 2854 2854 16559 2852 2852 16560 2851 2851 16561 2854 2854 16562 2853 2853 16563 2854 2854 16564 2855 2855 16565 2853 2853 16566 2855 2855 16567 2846 2846 16568 2855 2855 16569 2856 2856 16570 2846 2846 16571 2846 2846 16572 2856 2856 16573 2845 2845 16574 2856 2856 16575 2857 2857 16576 2845 2845 16577 2845 2845 16578 2857 2857 16579 2844 2844 16580 2857 2857 16581 2858 2858 16582 2844 2844 16583 2844 2844 16584 2858 2858 16585 2859 2859 16586 2844 2844 16587 2859 2859 16588 2837 2837 16589 2859 2859 16590 2858 2858 16591 2860 2860 16592 2858 2858 16593 2861 2861 16594 2860 2860 16595 2861 2861 16596 2858 2858 16597 2857 2857 16598 2861 2861 16599 2857 2857 16600 2862 2862 16601 2862 2862 16602 2857 2857 16603 2856 2856 16604 2862 2862 16605 2856 2856 16606 2863 2863 16607 2863 2863 16608 2856 2856 16609 2855 2855 16610 2863 2863 16611 2855 2855 16612 2864 2864 16613 2864 2864 16614 2855 2855 16615 2865 2865 16616 2865 2865 16617 2855 2855 16618 2854 2854 16619 2865 2865 16620 2854 2854 16621 2866 2866 16622 2854 2854 16623 2867 2867 16624 2866 2866 16625 2867 2867 16626 2854 2854 16627 2851 2851 16628 2867 2867 16629 2851 2851 16630 2868 2868 16631 2868 2868 16632 2851 2851 16633 2849 2849 16634 2867 2867 16635 2868 2868 16636 2869 2869 16637 2849 2849 16638 2870 2870 16639 2868 2868 16640 2869 2869 16641 2868 2868 16642 2870 2870 16643 2849 2849 16644 2871 2871 16645 2870 2870 16646 2871 2871 16647 2849 2849 16648 652 652 16649 2870 2870 16650 2871 2871 16651 2872 2872 16652 652 652 16653 2872 2872 16654 2871 2871 16655 2872 2872 16656 652 652 16657 651 651 16658 2872 2872 16659 651 651 16660 2740 2740 16661 2740 2740 16662 651 651 16663 650 650 16664 2872 2872 16665 2740 2740 16666 2741 2741 16667 650 650 16668 2739 2739 16669 2740 2740 16670 2739 2739 16671 650 650 16672 2873 2873 16673 650 650 16674 654 654 16675 2873 2873 16676 2739 2739 16677 2873 2873 16678 2331 2331 16679 2873 2873 16680 2375 2375 16681 2331 2331 16682 2331 2331 16683 2375 2375 16684 2332 2332 16685 2375 2375 16686 2373 2373 16687 2332 2332 16688 2332 2332 16689 2373 2373 16690 2334 2334 16691 2373 2373 16692 2372 2372 16693 2334 2334 16694 2334 2334 16695 2372 2372 16696 2336 2336 16697 2372 2372 16698 2370 2370 16699 2336 2336 16700 2336 2336 16701 2370 2370 16702 2368 2368 16703 2336 2336 16704 2368 2368 16705 2337 2337 16706 2337 2337 16707 2368 2368 16708 2366 2366 16709 2337 2337 16710 2366 2366 16711 2339 2339 16712 2339 2339 16713 2366 2366 16714 2364 2364 16715 2339 2339 16716 2364 2364 16717 2341 2341 16718 2341 2341 16719 2364 2364 16720 2874 2874 16721 2874 2874 16722 2364 2364 16723 2361 2361 16724 2341 2341 16725 2874 2874 16726 2875 2875 16727 2341 2341 16728 2875 2875 16729 2876 2876 16730 2341 2341 16731 2876 2876 16732 2344 2344 16733 2876 2876 16734 2875 2875 16735 2877 2877 16736 2875 2875 16737 2874 2874 16738 2877 2877 16739 2877 2877 16740 2874 2874 16741 2878 2878 16742 2874 2874 16743 2879 2879 16744 2878 2878 16745 2879 2879 16746 2874 2874 16747 2361 2361 16748 2878 2878 16749 2879 2879 16750 2880 2880 16751 2361 2361 16752 2880 2880 16753 2879 2879 16754 2880 2880 16755 2361 2361 16756 2360 2360 16757 2880 2880 16758 2360 2360 16759 2357 2357 16760 2880 2880 16761 2357 2357 16762 2881 2881 16763 2880 2880 16764 2881 2881 16765 2882 2882 16766 2880 2880 16767 2882 2882 16768 2878 2878 16769 2882 2882 16770 2881 2881 16771 2883 2883 16772 2883 2883 16773 2881 2881 16774 2357 2357 16775 2883 2883 16776 2357 2357 16777 2356 2356 16778 2883 2883 16779 2356 2356 16780 2354 2354 16781 2883 2883 16782 2354 2354 16783 2884 2884 16784 2883 2883 16785 2884 2884 16786 2885 2885 16787 2883 2883 16788 2885 2885 16789 2882 2882 16790 2885 2885 16791 2884 2884 16792 2886 2886 16793 2886 2886 16794 2884 2884 16795 2354 2354 16796 2886 2886 16797 2354 2354 16798 2352 2352 16799 2886 2886 16800 2352 2352 16801 2887 2887 16802 2352 2352 16803 2350 2350 16804 2887 2887 16805 2887 2887 16806 2350 2350 16807 2348 2348 16808 2887 2887 16809 2348 2348 16810 2888 2888 16811 2888 2888 16812 2348 2348 16813 2346 2346 16814 2887 2887 16815 2888 2888 16816 2889 2889 16817 2887 2887 16818 2889 2889 16819 2886 2886 16820 2889 2889 16821 2885 2885 16822 2886 2886 16823 2885 2885 16824 2889 2889 16825 2890 2890 16826 2885 2885 16827 2890 2890 16828 2891 2891 16829 2885 2885 16830 2891 2891 16831 2882 2882 16832 2891 2891 16833 2892 2892 16834 2882 2882 16835 2882 2882 16836 2892 2892 16837 2878 2878 16838 2892 2892 16839 2893 2893 16840 2878 2878 16841 2893 2893 16842 2892 2892 16843 2891 2891 16844 2878 2878 16845 2893 2893 16846 2877 2877 16847 2891 2891 16848 2894 2894 16849 2893 2893 16850 2894 2894 16851 2891 2891 16852 2890 2890 16853 2893 2893 16854 2894 2894 16855 2877 2877 16856 2890 2890 16857 2895 2895 16858 2894 2894 16859 2895 2895 16860 2890 2890 16861 2889 2889 16862 2895 2895 16863 2889 2889 16864 2896 2896 16865 2896 2896 16866 2889 2889 16867 2888 2888 16868 2895 2895 16869 2896 2896 16870 2894 2894 16871 2896 2896 16872 2877 2877 16873 2894 2894 16874 2877 2877 16875 2896 2896 16876 2876 2876 16877 2876 2876 16878 2896 2896 16879 2897 2897 16880 2897 2897 16881 2896 2896 16882 2888 2888 16883 2897 2897 16884 2888 2888 16885 2346 2346 16886 2897 2897 16887 2346 2346 16888 2344 2344 16889 2897 2897 16890 2344 2344 16891 2876 2876 16892 2358 2358 16893 2359 2359 16894 2708 2708 16895 2708 2708 16896 2359 2359 16897 2898 2898 16898 2359 2359 16899 2362 2362 16900 2898 2898 16901 2708 2708 16902 2898 2898 16903 2707 2707 16904 2362 2362 16905 2363 2363 16906 2898 2898 16907 2363 2363 16908 2365 2365 16909 2898 2898 16910 2898 2898 16911 2365 2365 16912 2367 2367 16913 2898 2898 16914 2367 2367 16915 2899 2899 16916 2899 2899 16917 2367 2367 16918 2369 2369 16919 2899 2899 16920 2369 2369 16921 2900 2900 16922 2900 2900 16923 2369 2369 16924 2371 2371 16925 2899 2899 16926 2900 2900 16927 2901 2901 16928 2899 2899 16929 2901 2901 16930 2898 2898 16931 2901 2901 16932 2902 2902 16933 2898 2898 16934 2898 2898 16935 2902 2902 16936 2707 2707 16937 2707 2707 16938 2902 2902 16939 2706 2706 16940 2902 2902 16941 2903 2903 16942 2706 2706 16943 2706 2706 16944 2903 2903 16945 2704 2704 16946 2903 2903 16947 2902 2902 16948 2904 2904 16949 2902 2902 16950 2901 2901 16951 2904 2904 16952 2903 2903 16953 2904 2904 16954 2905 2905 16955 2903 2903 16956 2905 2905 16957 2704 2704 16958 2704 2704 16959 2905 2905 16960 2705 2705 16961 2905 2905 16962 2906 2906 16963 2705 2705 16964 2906 2906 16965 2905 2905 16966 2907 2907 16967 2907 2907 16968 2905 2905 16969 2904 2904 16970 2906 2906 16971 2907 2907 16972 2908 2908 16973 2907 2907 16974 2904 2904 16975 2909 2909 16976 2909 2909 16977 2904 2904 16978 2901 2901 16979 2909 2909 16980 2901 2901 16981 2910 2910 16982 2910 2910 16983 2901 2901 16984 2900 2900 16985 2909 2909 16986 2910 2910 16987 2911 2911 16988 2910 2910 16989 2900 2900 16990 2912 2912 16991 2911 2911 16992 2910 2910 16993 2912 2912 16994 2900 2900 16995 2913 2913 16996 2912 2912 16997 2913 2913 16998 2900 2900 16999 2371 2371 17000 2913 2913 17001 2371 2371 17002 2374 2374 17003 2913 2913 17004 2374 2374 17005 2375 2375 17006 2913 2913 17007 2375 2375 17008 2914 2914 17009 2914 2914 17010 2375 2375 17011 2873 2873 17012 2913 2913 17013 2914 2914 17014 2915 2915 17015 2913 2913 17016 2915 2915 17017 2912 2912 17018 2912 2912 17019 2915 2915 17020 2911 2911 17021 2915 2915 17022 2916 2916 17023 2911 2911 17024 2911 2911 17025 2916 2916 17026 2917 2917 17027 2911 2911 17028 2917 2917 17029 2909 2909 17030 2917 2917 17031 2918 2918 17032 2909 2909 17033 2909 2909 17034 2918 2918 17035 2907 2907 17036 2907 2907 17037 2918 2918 17038 2908 2908 17039 2918 2918 17040 2919 2919 17041 2908 2908 17042 2919 2919 17043 2918 2918 17044 2920 2920 17045 2918 2918 17046 2917 2917 17047 2920 2920 17048 2920 2920 17049 2917 2917 17050 2921 2921 17051 2921 2921 17052 2917 2917 17053 2916 2916 17054 2920 2920 17055 2921 2921 17056 2922 2922 17057 2922 2922 17058 2921 2921 17059 2923 2923 17060 2922 2922 17061 2923 2923 17062 2924 2924 17063 2924 2924 17064 2923 2923 17065 665 665 17066 2923 2923 17067 664 664 17068 665 665 17069 664 664 17070 2923 2923 17071 2925 2925 17072 2925 2925 17073 2923 2923 17074 2921 2921 17075 2925 2925 17076 2921 2921 17077 2916 2916 17078 2925 2925 17079 2916 2916 17080 2926 2926 17081 2916 2916 17082 2915 2915 17083 2926 2926 17084 2926 2926 17085 2915 2915 17086 2927 2927 17087 2915 2915 17088 2914 2914 17089 2927 2927 17090 2927 2927 17091 2914 2914 17092 2873 2873 17093 2927 2927 17094 2873 2873 17095 654 654 17096 2927 2927 17097 654 654 17098 2926 2926 17099 2926 2926 17100 654 654 17101 2925 2925 17102 654 654 17103 664 664 17104 2925 2925 17105 2928 2928 17106 2744 2744 17107 2745 2745 17108 2744 2744 17109 2928 2928 17110 2743 2743 17111 2745 2745 17112 2929 2929 17113 2928 2928 17114 2929 2929 17115 2745 2745 17116 2817 2817 17117 2929 2929 17118 2817 2817 17119 2930 2930 17120 2817 2817 17121 2931 2931 17122 2930 2930 17123 2931 2931 17124 2817 2817 17125 2819 2819 17126 2931 2931 17127 2819 2819 17128 2932 2932 17129 2932 2932 17130 2819 2819 17131 2836 2836 17132 2932 2932 17133 2836 2836 17134 2837 2837 17135 2932 2932 17136 2837 2837 17137 2933 2933 17138 2932 2932 17139 2933 2933 17140 2931 2931 17141 2837 2837 17142 2859 2859 17143 2933 2933 17144 2931 2931 17145 2933 2933 17146 2934 2934 17147 2859 2859 17148 2934 2934 17149 2933 2933 17150 2934 2934 17151 2859 2859 17152 2860 2860 17153 2934 2934 17154 2860 2860 17155 2935 2935 17156 2935 2935 17157 2860 2860 17158 2861 2861 17159 2935 2935 17160 2861 2861 17161 2862 2862 17162 2935 2935 17163 2862 2862 17164 2936 2936 17165 2936 2936 17166 2862 2862 17167 2863 2863 17168 2936 2936 17169 2863 2863 17170 2937 2937 17171 2863 2863 17172 2864 2864 17173 2937 2937 17174 2936 2936 17175 2937 2937 17176 2938 2938 17177 2936 2936 17178 2938 2938 17179 2935 2935 17180 2937 2937 17181 2939 2939 17182 2938 2938 17183 2939 2939 17184 2937 2937 17185 2864 2864 17186 2939 2939 17187 2864 2864 17188 2940 2940 17189 2940 2940 17190 2864 2864 17191 2865 2865 17192 2940 2940 17193 2865 2865 17194 2866 2866 17195 2940 2940 17196 2866 2866 17197 2941 2941 17198 2940 2940 17199 2941 2941 17200 2942 2942 17201 2940 2940 17202 2942 2942 17203 2939 2939 17204 2939 2939 17205 2942 2942 17206 2938 2938 17207 2942 2942 17208 2943 2943 17209 2938 2938 17210 2943 2943 17211 2942 2942 17212 2941 2941 17213 2943 2943 17214 2941 2941 17215 2944 2944 17216 2944 2944 17217 2941 2941 17218 2945 2945 17219 2941 2941 17220 2866 2866 17221 2945 2945 17222 2945 2945 17223 2866 2866 17224 2867 2867 17225 2945 2945 17226 2867 2867 17227 2946 2946 17228 2946 2946 17229 2867 2867 17230 2869 2869 17231 2945 2945 17232 2946 2946 17233 2947 2947 17234 2945 2945 17235 2947 2947 17236 2944 2944 17237 2947 2947 17238 2948 2948 17239 2944 2944 17240 2948 2948 17241 2949 2949 17242 2944 2944 17243 2949 2949 17244 2943 2943 17245 2944 2944 17246 2943 2943 17247 2949 2949 17248 2938 2938 17249 2949 2949 17250 2950 2950 17251 2938 2938 17252 2950 2950 17253 2949 2949 17254 2948 2948 17255 2938 2938 17256 2950 2950 17257 2951 2951 17258 2938 2938 17259 2951 2951 17260 2952 2952 17261 2938 2938 17262 2952 2952 17263 2935 2935 17264 2952 2952 17265 2951 2951 17266 2953 2953 17267 2953 2953 17268 2951 2951 17269 2950 2950 17270 2953 2953 17271 2950 2950 17272 2954 2954 17273 2954 2954 17274 2950 2950 17275 2948 2948 17276 2953 2953 17277 2954 2954 17278 2955 2955 17279 2948 2948 17280 2955 2955 17281 2954 2954 17282 2955 2955 17283 2948 2948 17284 2947 2947 17285 2955 2955 17286 2947 2947 17287 2956 2956 17288 2956 2956 17289 2947 2947 17290 2946 2946 17291 2956 2956 17292 2946 2946 17293 2957 2957 17294 2957 2957 17295 2946 2946 17296 2869 2869 17297 2957 2957 17298 2869 2869 17299 2958 2958 17300 2958 2958 17301 2869 2869 17302 2870 2870 17303 2958 2958 17304 2870 2870 17305 2872 2872 17306 2958 2958 17307 2872 2872 17308 2741 2741 17309 2958 2958 17310 2741 2741 17311 2959 2959 17312 2958 2958 17313 2959 2959 17314 2957 2957 17315 2957 2957 17316 2959 2959 17317 2956 2956 17318 2959 2959 17319 2960 2960 17320 2956 2956 17321 2956 2956 17322 2960 2960 17323 2928 2928 17324 2956 2956 17325 2928 2928 17326 2955 2955 17327 2955 2955 17328 2928 2928 17329 2929 2929 17330 2955 2955 17331 2929 2929 17332 2961 2961 17333 2955 2955 17334 2961 2961 17335 2953 2953 17336 2961 2961 17337 2929 2929 17338 2930 2930 17339 2953 2953 17340 2961 2961 17341 2962 2962 17342 2953 2953 17343 2962 2962 17344 2952 2952 17345 2952 2952 17346 2962 2962 17347 2935 2935 17348 2962 2962 17349 2963 2963 17350 2935 2935 17351 2935 2935 17352 2963 2963 17353 2934 2934 17354 2934 2934 17355 2963 2963 17356 2931 2931 17357 2931 2931 17358 2963 2963 17359 2964 2964 17360 2963 2963 17361 2962 2962 17362 2964 2964 17363 2964 2964 17364 2962 2962 17365 2961 2961 17366 2964 2964 17367 2961 2961 17368 2930 2930 17369 2964 2964 17370 2930 2930 17371 2931 2931 17372 2741 2741 17373 2742 2742 17374 2959 2959 17375 2742 2742 17376 2960 2960 17377 2959 2959 17378 2960 2960 17379 2742 2742 17380 2743 2743 17381 2960 2960 17382 2743 2743 17383 2928 2928 17384 2645 2645 17385 2644 2644 17386 2965 2965 17387 2965 2965 17388 2644 2644 17389 2646 2646 17390 2965 2965 17391 2646 2646 17392 2966 2966 17393 2966 2966 17394 2646 2646 17395 2648 2648 17396 2966 2966 17397 2648 2648 17398 2967 2967 17399 2967 2967 17400 2648 2648 17401 2968 2968 17402 2648 2648 17403 2651 2651 17404 2968 2968 17405 2968 2968 17406 2651 2651 17407 2652 2652 17408 2968 2968 17409 2652 2652 17410 2969 2969 17411 2969 2969 17412 2652 2652 17413 2654 2654 17414 2969 2969 17415 2654 2654 17416 2970 2970 17417 2970 2970 17418 2654 2654 17419 2656 2656 17420 2970 2970 17421 2656 2656 17422 2971 2971 17423 2971 2971 17424 2656 2656 17425 2658 2658 17426 2971 2971 17427 2658 2658 17428 2972 2972 17429 2972 2972 17430 2658 2658 17431 2660 2660 17432 2972 2972 17433 2660 2660 17434 2973 2973 17435 2973 2973 17436 2660 2660 17437 2662 2662 17438 2972 2972 17439 2973 2973 17440 2974 2974 17441 2972 2972 17442 2974 2974 17443 2975 2975 17444 2972 2972 17445 2975 2975 17446 2971 2971 17447 2975 2975 17448 2976 2976 17449 2971 2971 17450 2971 2971 17451 2976 2976 17452 2970 2970 17453 2976 2976 17454 2977 2977 17455 2970 2970 17456 2970 2970 17457 2977 2977 17458 2978 2978 17459 2970 2970 17460 2978 2978 17461 2969 2969 17462 2969 2969 17463 2978 2978 17464 2979 2979 17465 2969 2969 17466 2979 2979 17467 2968 2968 17468 2968 2968 17469 2979 2979 17470 2980 2980 17471 2968 2968 17472 2980 2980 17473 2967 2967 17474 2967 2967 17475 2980 2980 17476 2966 2966 17477 2980 2980 17478 2981 2981 17479 2966 2966 17480 2966 2966 17481 2981 2981 17482 2982 2982 17483 2966 2966 17484 2982 2982 17485 2965 2965 17486 2982 2982 17487 2981 2981 17488 2983 2983 17489 2981 2981 17490 2984 2984 17491 2983 2983 17492 2984 2984 17493 2981 2981 17494 2980 2980 17495 2984 2984 17496 2980 2980 17497 2985 2985 17498 2985 2985 17499 2980 2980 17500 2979 2979 17501 2985 2985 17502 2979 2979 17503 2986 2986 17504 2986 2986 17505 2979 2979 17506 2978 2978 17507 2986 2986 17508 2978 2978 17509 2987 2987 17510 2987 2987 17511 2978 2978 17512 2977 2977 17513 2986 2986 17514 2987 2987 17515 2988 2988 17516 2986 2986 17517 2988 2988 17518 2985 2985 17519 2988 2988 17520 2989 2989 17521 2985 2985 17522 2985 2985 17523 2989 2989 17524 2984 2984 17525 2989 2989 17526 2983 2983 17527 2984 2984 17528 2983 2983 17529 2989 2989 17530 2990 2990 17531 2983 2983 17532 2990 2990 17533 2991 2991 17534 2983 2983 17535 2991 2991 17536 2982 2982 17537 2991 2991 17538 2992 2992 17539 2982 2982 17540 2982 2982 17541 2992 2992 17542 2965 2965 17543 2992 2992 17544 2993 2993 17545 2965 2965 17546 2965 2965 17547 2993 2993 17548 2645 2645 17549 2645 2645 17550 2993 2993 17551 2994 2994 17552 2645 2645 17553 2994 2994 17554 2684 2684 17555 2994 2994 17556 2993 2993 17557 2995 2995 17558 2993 2993 17559 2992 2992 17560 2995 2995 17561 2995 2995 17562 2992 2992 17563 2996 2996 17564 2992 2992 17565 2991 2991 17566 2996 2996 17567 2996 2996 17568 2991 2991 17569 2997 2997 17570 2991 2991 17571 2990 2990 17572 2997 2997 17573 2997 2997 17574 2990 2990 17575 2998 2998 17576 2990 2990 17577 2999 2999 17578 2998 2998 17579 2999 2999 17580 2990 2990 17581 2989 2989 17582 2999 2999 17583 2989 2989 17584 2988 2988 17585 2999 2999 17586 2988 2988 17587 3000 3000 17588 3000 3000 17589 2988 2988 17590 2987 2987 17591 3000 3000 17592 2987 2987 17593 3001 3001 17594 3001 3001 17595 2987 2987 17596 2977 2977 17597 3000 3000 17598 3001 3001 17599 3002 3002 17600 3001 3001 17601 2977 2977 17602 3003 3003 17603 3002 3002 17604 3001 3001 17605 3003 3003 17606 2977 2977 17607 2976 2976 17608 3003 3003 17609 3003 3003 17610 2976 2976 17611 2975 2975 17612 3003 3003 17613 2975 2975 17614 3004 3004 17615 3003 3003 17616 3004 3004 17617 3002 3002 17618 3004 3004 17619 2975 2975 17620 3005 3005 17621 2975 2975 17622 2974 2974 17623 3005 3005 17624 3004 3004 17625 3005 3005 17626 3006 3006 17627 3004 3004 17628 3006 3006 17629 3002 3002 17630 3006 3006 17631 3007 3007 17632 3002 3002 17633 3002 3002 17634 3007 3007 17635 3008 3008 17636 3002 3002 17637 3008 3008 17638 3000 3000 17639 3000 3000 17640 3008 3008 17641 2999 2999 17642 2999 2999 17643 3008 3008 17644 2998 2998 17645 3008 3008 17646 2399 2399 17647 2998 2998 17648 2399 2399 17649 3008 3008 17650 3007 3007 17651 2399 2399 17652 3007 3007 17653 3009 3009 17654 3009 3009 17655 3007 3007 17656 3006 3006 17657 3009 3009 17658 3006 3006 17659 3010 3010 17660 3010 3010 17661 3006 3006 17662 3005 3005 17663 3010 3010 17664 3005 3005 17665 3011 3011 17666 3011 3011 17667 3005 3005 17668 3012 3012 17669 3005 3005 17670 2974 2974 17671 3012 3012 17672 3012 3012 17673 2974 2974 17674 3013 3013 17675 2974 2974 17676 2973 2973 17677 3013 3013 17678 3013 3013 17679 2973 2973 17680 2662 2662 17681 3013 3013 17682 2662 2662 17683 3014 3014 17684 2662 2662 17685 2705 2705 17686 3014 3014 17687 3013 3013 17688 3014 3014 17689 3015 3015 17690 3013 3013 17691 3015 3015 17692 3012 3012 17693 3012 3012 17694 3015 3015 17695 3016 3016 17696 3012 3012 17697 3016 3016 17698 3011 3011 17699 3011 3011 17700 3016 3016 17701 3010 3010 17702 3016 3016 17703 3017 3017 17704 3010 3010 17705 3010 3010 17706 3017 3017 17707 2404 2404 17708 3010 3010 17709 2404 2404 17710 3009 3009 17711 3009 3009 17712 2404 2404 17713 2401 2401 17714 3009 3009 17715 2401 2401 17716 2399 2399 17717 2399 2399 17718 2397 2397 17719 2998 2998 17720 2998 2998 17721 2397 2397 17722 3018 3018 17723 3018 3018 17724 2397 2397 17725 2395 2395 17726 2998 2998 17727 3018 3018 17728 3019 3019 17729 2998 2998 17730 3019 3019 17731 2997 2997 17732 3019 3019 17733 3018 3018 17734 3020 3020 17735 3018 3018 17736 3021 3021 17737 3020 3020 17738 3021 3021 17739 3018 3018 17740 2395 2395 17741 3021 3021 17742 2395 2395 17743 2393 2393 17744 3021 3021 17745 2393 2393 17746 3022 3022 17747 3022 3022 17748 2393 2393 17749 2391 2391 17750 3022 3022 17751 2391 2391 17752 3023 3023 17753 3023 3023 17754 2391 2391 17755 2389 2389 17756 3023 3023 17757 2389 2389 17758 3024 3024 17759 2389 2389 17760 2388 2388 17761 3024 3024 17762 3024 3024 17763 2388 2388 17764 3025 3025 17765 2388 2388 17766 2386 2386 17767 3025 3025 17768 3025 3025 17769 2386 2386 17770 3026 3026 17771 2386 2386 17772 2384 2384 17773 3026 3026 17774 3026 3026 17775 2384 2384 17776 3027 3027 17777 2384 2384 17778 2381 2381 17779 3027 3027 17780 3027 3027 17781 2381 2381 17782 2379 2379 17783 3027 3027 17784 2379 2379 17785 2376 2376 17786 3027 3027 17787 2376 2376 17788 3028 3028 17789 3028 3028 17790 2376 2376 17791 2378 2378 17792 3027 3027 17793 3028 3028 17794 3029 3029 17795 3027 3027 17796 3029 3029 17797 3026 3026 17798 3029 3029 17799 3030 3030 17800 3026 3026 17801 3026 3026 17802 3030 3030 17803 3025 3025 17804 3030 3030 17805 3031 3031 17806 3025 3025 17807 3025 3025 17808 3031 3031 17809 3024 3024 17810 3031 3031 17811 3032 3032 17812 3024 3024 17813 3024 3024 17814 3032 3032 17815 3023 3023 17816 3032 3032 17817 3033 3033 17818 3023 3023 17819 3023 3023 17820 3033 3033 17821 3034 3034 17822 3023 3023 17823 3034 3034 17824 3022 3022 17825 3022 3022 17826 3034 3034 17827 3035 3035 17828 3022 3022 17829 3035 3035 17830 3021 3021 17831 3021 3021 17832 3035 3035 17833 3036 3036 17834 3021 3021 17835 3036 3036 17836 3020 3020 17837 3036 3036 17838 3035 3035 17839 3037 3037 17840 3035 3035 17841 3038 3038 17842 3037 3037 17843 3038 3038 17844 3035 3035 17845 3034 3034 17846 3038 3038 17847 3034 3034 17848 3039 3039 17849 3039 3039 17850 3034 3034 17851 3033 3033 17852 3039 3039 17853 3033 3033 17854 3040 3040 17855 3040 3040 17856 3033 3033 17857 3041 3041 17858 3033 3033 17859 3032 3032 17860 3041 3041 17861 3041 3041 17862 3032 3032 17863 3042 3042 17864 3032 3032 17865 3031 3031 17866 3042 3042 17867 3042 3042 17868 3031 3031 17869 3043 3043 17870 3031 3031 17871 3030 3030 17872 3043 3043 17873 3043 3043 17874 3030 3030 17875 3044 3044 17876 3030 3030 17877 3029 3029 17878 3044 3044 17879 3044 3044 17880 3029 3029 17881 3045 3045 17882 3045 3045 17883 3029 3029 17884 3028 3028 17885 3045 3045 17886 3028 3028 17887 3046 3046 17888 3046 3046 17889 3028 3028 17890 2378 2378 17891 3045 3045 17892 3046 3046 17893 3047 3047 17894 2378 2378 17895 3048 3048 17896 3046 3046 17897 3047 3047 17898 3046 3046 17899 3048 3048 17900 3047 3047 17901 3048 3048 17902 3049 3049 17903 3047 3047 17904 3049 3049 17905 3050 3050 17906 3047 3047 17907 3050 3050 17908 3045 3045 17909 3045 3045 17910 3050 3050 17911 3044 3044 17912 3044 3044 17913 3050 3050 17914 3051 3051 17915 3044 3044 17916 3051 3051 17917 3052 3052 17918 3044 3044 17919 3052 3052 17920 3043 3043 17921 3043 3043 17922 3052 3052 17923 3042 3042 17924 3052 3052 17925 3053 3053 17926 3042 3042 17927 3042 3042 17928 3053 3053 17929 3041 3041 17930 3053 3053 17931 3054 3054 17932 3041 3041 17933 3041 3041 17934 3054 3054 17935 3040 3040 17936 3054 3054 17937 3055 3055 17938 3040 3040 17939 3040 3040 17940 3055 3055 17941 3039 3039 17942 3055 3055 17943 3056 3056 17944 3039 3039 17945 3039 3039 17946 3056 3056 17947 3057 3057 17948 3039 3039 17949 3057 3057 17950 3058 3058 17951 3039 3039 17952 3058 3058 17953 3038 3038 17954 3038 3038 17955 3058 3058 17956 3059 3059 17957 3038 3038 17958 3059 3059 17959 3037 3037 17960 3059 3059 17961 3060 3060 17962 3037 3037 17963 3037 3037 17964 3060 3060 17965 3036 3036 17966 3060 3060 17967 3061 3061 17968 3036 3036 17969 3061 3061 17970 3020 3020 17971 3036 3036 17972 3061 3061 17973 3060 3060 17974 3062 3062 17975 3062 3062 17976 3060 3060 17977 3063 3063 17978 3063 3063 17979 3060 3060 17980 3059 3059 17981 3063 3063 17982 3059 3059 17983 3064 3064 17984 3064 3064 17985 3059 3059 17986 3065 3065 17987 3059 3059 17988 3058 3058 17989 3065 3065 17990 3065 3065 17991 3058 3058 17992 3066 3066 17993 3058 3058 17994 3057 3057 17995 3066 3066 17996 3066 3066 17997 3057 3057 17998 3067 3067 17999 3057 3057 18000 3056 3056 18001 3067 3067 18002 3067 3067 18003 3056 3056 18004 3068 3068 18005 3056 3056 18006 3069 3069 18007 3068 3068 18008 3069 3069 18009 3056 3056 18010 3055 3055 18011 3069 3069 18012 3055 3055 18013 3070 3070 18014 3070 3070 18015 3055 3055 18016 3054 3054 18017 3069 3069 18018 3070 3070 18019 3071 3071 18020 3069 3069 18021 3071 3071 18022 3072 3072 18023 3069 3069 18024 3072 3072 18025 3068 3068 18026 3068 3068 18027 3072 3072 18028 3073 3073 18029 3068 3068 18030 3073 3073 18031 3074 3074 18032 3068 3068 18033 3074 3074 18034 3067 3067 18035 3074 3074 18036 3075 3075 18037 3067 3067 18038 3067 3067 18039 3075 3075 18040 3066 3066 18041 3075 3075 18042 3076 3076 18043 3066 3066 18044 3066 3066 18045 3076 3076 18046 3065 3065 18047 3076 3076 18048 3077 3077 18049 3065 3065 18050 3065 3065 18051 3077 3077 18052 3064 3064 18053 3077 3077 18054 3078 3078 18055 3064 3064 18056 3064 3064 18057 3078 3078 18058 3079 3079 18059 3064 3064 18060 3079 3079 18061 3063 3063 18062 3063 3063 18063 3079 3079 18064 3080 3080 18065 3063 3063 18066 3080 3080 18067 3062 3062 18068 3062 3062 18069 3080 3080 18070 3081 3081 18071 3062 3062 18072 3081 3081 18073 3082 3082 18074 3062 3062 18075 3082 3082 18076 3061 3061 18077 3082 3082 18078 3020 3020 18079 3061 3061 18080 3020 3020 18081 3082 3082 18082 3083 3083 18083 3083 3083 18084 3082 3082 18085 3081 3081 18086 3020 3020 18087 3083 3083 18088 3019 3019 18089 3019 3019 18090 3083 3083 18091 2997 2997 18092 2997 2997 18093 3083 3083 18094 3084 3084 18095 3084 3084 18096 3083 3083 18097 3081 3081 18098 2997 2997 18099 3084 3084 18100 2996 2996 18101 3084 3084 18102 3081 3081 18103 3085 3085 18104 3085 3085 18105 3081 3081 18106 3080 3080 18107 3085 3085 18108 3080 3080 18109 3086 3086 18110 3080 3080 18111 3079 3079 18112 3086 3086 18113 3086 3086 18114 3079 3079 18115 3087 3087 18116 3087 3087 18117 3079 3079 18118 3078 3078 18119 3086 3086 18120 3087 3087 18121 3088 3088 18122 3086 3086 18123 3088 3088 18124 3085 3085 18125 3085 3085 18126 3088 3088 18127 3089 3089 18128 3085 3085 18129 3089 3089 18130 3090 3090 18131 3085 3085 18132 3090 3090 18133 3084 3084 18134 3084 3084 18135 3090 3090 18136 2996 2996 18137 3090 3090 18138 2995 2995 18139 2996 2996 18140 2995 2995 18141 3090 3090 18142 2994 2994 18143 3090 3090 18144 3089 3089 18145 2994 2994 18146 2994 2994 18147 3089 3089 18148 2684 2684 18149 3089 3089 18150 2782 2782 18151 2684 2684 18152 2782 2782 18153 3089 3089 18154 2783 2783 18155 3089 3089 18156 3088 3088 18157 2783 2783 18158 2783 2783 18159 3088 3088 18160 2784 2784 18161 2784 2784 18162 3088 3088 18163 3091 3091 18164 3088 3088 18165 3087 3087 18166 3091 3091 18167 2784 2784 18168 3091 3091 18169 3092 3092 18170 3087 3087 18171 3092 3092 18172 3091 3091 18173 3092 3092 18174 3087 3087 18175 3093 3093 18176 3093 3093 18177 3087 3087 18178 3078 3078 18179 3092 3092 18180 3093 3093 18181 3094 3094 18182 3093 3093 18183 3078 3078 18184 3095 3095 18185 3094 3094 18186 3093 3093 18187 3095 3095 18188 3078 3078 18189 3077 3077 18190 3095 3095 18191 3095 3095 18192 3077 3077 18193 3096 3096 18194 3077 3077 18195 3076 3076 18196 3096 3096 18197 3095 3095 18198 3096 3096 18199 3097 3097 18200 3095 3095 18201 3097 3097 18202 3094 3094 18203 3097 3097 18204 3096 3096 18205 3098 3098 18206 3096 3096 18207 3099 3099 18208 3098 3098 18209 3099 3099 18210 3096 3096 18211 3076 3076 18212 3099 3099 18213 3076 3076 18214 3075 3075 18215 3099 3099 18216 3075 3075 18217 3100 3100 18218 3075 3075 18219 3074 3074 18220 3100 3100 18221 3099 3099 18222 3100 3100 18223 3101 3101 18224 3099 3099 18225 3101 3101 18226 3098 3098 18227 3098 3098 18228 3101 3101 18229 2796 2796 18230 3098 3098 18231 2796 2796 18232 2797 2797 18233 3098 3098 18234 2797 2797 18235 3097 3097 18236 2797 2797 18237 2798 2798 18238 3097 3097 18239 3097 3097 18240 2798 2798 18241 3094 3094 18242 2798 2798 18243 2799 2799 18244 3094 3094 18245 3094 3094 18246 2799 2799 18247 2784 2784 18248 3094 3094 18249 2784 2784 18250 3092 3092 18251 2800 2800 18252 2796 2796 18253 3101 3101 18254 2800 2800 18255 3101 3101 18256 3102 3102 18257 3102 3102 18258 3101 3101 18259 3100 3100 18260 2800 2800 18261 3102 3102 18262 2802 2802 18263 3100 3100 18264 3103 3103 18265 3102 3102 18266 3103 3103 18267 3100 3100 18268 3074 3074 18269 3103 3103 18270 3074 3074 18271 3073 3073 18272 3103 3103 18273 3073 3073 18274 3104 3104 18275 3103 3103 18276 3104 3104 18277 3105 3105 18278 3103 3103 18279 3105 3105 18280 3102 3102 18281 3102 3102 18282 3105 3105 18283 2802 2802 18284 2802 2802 18285 3105 3105 18286 3106 3106 18287 2802 2802 18288 3106 3106 18289 2807 2807 18290 2807 2807 18291 3106 3106 18292 2808 2808 18293 3106 3106 18294 3107 3107 18295 2808 2808 18296 3107 3107 18297 3106 3106 18298 3108 3108 18299 3108 3108 18300 3106 3106 18301 3105 3105 18302 3108 3108 18303 3105 3105 18304 3104 3104 18305 3108 3108 18306 3104 3104 18307 3109 3109 18308 3104 3104 18309 3110 3110 18310 3109 3109 18311 3110 3110 18312 3104 3104 18313 3073 3073 18314 3110 3110 18315 3073 3073 18316 3072 3072 18317 3110 3110 18318 3072 3072 18319 3111 3111 18320 3111 3111 18321 3072 3072 18322 3071 3071 18323 3110 3110 18324 3111 3111 18325 3112 3112 18326 3071 3071 18327 3113 3113 18328 3111 3111 18329 3112 3112 18330 3111 3111 18331 3113 3113 18332 3071 3071 18333 3114 3114 18334 3113 3113 18335 3114 3114 18336 3071 3071 18337 3070 3070 18338 3113 3113 18339 3114 3114 18340 3054 3054 18341 3070 3070 18342 3054 3054 18343 3114 3114 18344 3113 3113 18345 3054 3054 18346 3115 3115 18347 3113 3113 18348 3115 3115 18349 3116 3116 18350 3113 3113 18351 3116 3116 18352 3112 3112 18353 3116 3116 18354 3115 3115 18355 3117 3117 18356 3116 3116 18357 3117 3117 18358 3118 3118 18359 3116 3116 18360 3118 3118 18361 3112 3112 18362 3112 3112 18363 3118 3118 18364 3119 3119 18365 3112 3112 18366 3119 3119 18367 3109 3109 18368 3112 3112 18369 3109 3109 18370 3110 3110 18371 3109 3109 18372 3119 3119 18373 3108 3108 18374 3108 3108 18375 3119 3119 18376 3120 3120 18377 3108 3108 18378 3120 3120 18379 3107 3107 18380 3120 3120 18381 3121 3121 18382 3107 3107 18383 3107 3107 18384 3121 3121 18385 2808 2808 18386 3121 3121 18387 2824 2824 18388 2808 2808 18389 2824 2824 18390 3121 3121 18391 3122 3122 18392 2824 2824 18393 3122 3122 18394 2826 2826 18395 2826 2826 18396 3122 3122 18397 3123 3123 18398 2826 2826 18399 3123 3123 18400 2828 2828 18401 2828 2828 18402 3123 3123 18403 2829 2829 18404 3123 3123 18405 3124 3124 18406 2829 2829 18407 2829 2829 18408 3124 3124 18409 2831 2831 18410 3124 3124 18411 3123 3123 18412 3125 3125 18413 3125 3125 18414 3123 3123 18415 3122 3122 18416 3125 3125 18417 3122 3122 18418 3126 3126 18419 3126 3126 18420 3122 3122 18421 3121 3121 18422 3126 3126 18423 3121 3121 18424 3127 3127 18425 3127 3127 18426 3121 3121 18427 3120 3120 18428 3127 3127 18429 3120 3120 18430 3128 3128 18431 3128 3128 18432 3120 3120 18433 3119 3119 18434 3128 3128 18435 3119 3119 18436 3118 3118 18437 3128 3128 18438 3118 3118 18439 3129 3129 18440 3129 3129 18441 3118 3118 18442 3117 3117 18443 3128 3128 18444 3129 3129 18445 3127 3127 18446 3129 3129 18447 3126 3126 18448 3127 3127 18449 3126 3126 18450 3129 3129 18451 3130 3130 18452 3126 3126 18453 3130 3130 18454 3125 3125 18455 3125 3125 18456 3130 3130 18457 3131 3131 18458 3125 3125 18459 3131 3131 18460 3124 3124 18461 3124 3124 18462 3131 3131 18463 3132 3132 18464 3124 3124 18465 3132 3132 18466 2831 2831 18467 2831 2831 18468 3132 3132 18469 2840 2840 18470 3132 3132 18471 3133 3133 18472 2840 2840 18473 2840 2840 18474 3133 3133 18475 2842 2842 18476 3132 3132 18477 3134 3134 18478 3133 3133 18479 3134 3134 18480 3132 3132 18481 3131 3131 18482 3134 3134 18483 3131 3131 18484 3135 3135 18485 3135 3135 18486 3131 3131 18487 3130 3130 18488 3134 3134 18489 3135 3135 18490 3136 3136 18491 3134 3134 18492 3136 3136 18493 3137 3137 18494 3134 3134 18495 3137 3137 18496 3133 3133 18497 3133 3133 18498 3137 3137 18499 3138 3138 18500 3133 3133 18501 3138 3138 18502 3139 3139 18503 3133 3133 18504 3139 3139 18505 2842 2842 18506 2842 2842 18507 3139 3139 18508 653 653 18509 3139 3139 18510 1631 1631 18511 653 653 18512 1631 1631 18513 3139 3139 18514 3140 3140 18515 1631 1631 18516 3140 3140 18517 1647 1647 18518 3139 3139 18519 3141 3141 18520 3140 3140 18521 3141 3141 18522 3139 3139 18523 3138 3138 18524 3141 3141 18525 3138 3138 18526 3142 3142 18527 3142 3142 18528 3138 3138 18529 3143 3143 18530 3143 3143 18531 3138 3138 18532 3137 3137 18533 3143 3143 18534 3137 3137 18535 3144 3144 18536 3137 3137 18537 3145 3145 18538 3144 3144 18539 3145 3145 18540 3137 3137 18541 3136 3136 18542 3145 3145 18543 3136 3136 18544 3146 3146 18545 3146 3146 18546 3136 3136 18547 3135 3135 18548 3146 3146 18549 3135 3135 18550 3147 3147 18551 3147 3147 18552 3135 3135 18553 3148 3148 18554 3135 3135 18555 3130 3130 18556 3148 3148 18557 3147 3147 18558 3148 3148 18559 3149 3149 18560 3147 3147 18561 3149 3149 18562 3150 3150 18563 3147 3147 18564 3150 3150 18565 3146 3146 18566 3150 3150 18567 3151 3151 18568 3146 3146 18569 3146 3146 18570 3151 3151 18571 3145 3145 18572 3151 3151 18573 3152 3152 18574 3145 3145 18575 3145 3145 18576 3152 3152 18577 3144 3144 18578 3152 3152 18579 3151 3151 18580 3153 3153 18581 3153 3153 18582 3151 3151 18583 3154 3154 18584 3151 3151 18585 3150 3150 18586 3154 3154 18587 3154 3154 18588 3150 3150 18589 3149 3149 18590 3154 3154 18591 3149 3149 18592 3155 3155 18593 3155 3155 18594 3149 3149 18595 3148 3148 18596 3155 3155 18597 3148 3148 18598 3156 3156 18599 3156 3156 18600 3148 3148 18601 3130 3130 18602 3156 3156 18603 3130 3130 18604 3157 3157 18605 3130 3130 18606 3129 3129 18607 3157 3157 18608 3157 3157 18609 3129 3129 18610 3117 3117 18611 3157 3157 18612 3117 3117 18613 3158 3158 18614 3157 3157 18615 3158 3158 18616 3156 3156 18617 3156 3156 18618 3158 3158 18619 3155 3155 18620 3158 3158 18621 3159 3159 18622 3155 3155 18623 3155 3155 18624 3159 3159 18625 3154 3154 18626 3159 3159 18627 3158 3158 18628 3160 3160 18629 3159 3159 18630 3160 3160 18631 3161 3161 18632 3159 3159 18633 3161 3161 18634 3154 3154 18635 3161 3161 18636 3162 3162 18637 3154 3154 18638 3162 3162 18639 3163 3163 18640 3154 3154 18641 3154 3154 18642 3163 3163 18643 3153 3153 18644 3153 3153 18645 3163 3163 18646 3164 3164 18647 3153 3153 18648 3164 3164 18649 3152 3152 18650 3164 3164 18651 3165 3165 18652 3152 3152 18653 3152 3152 18654 3165 3165 18655 3144 3144 18656 3165 3165 18657 3164 3164 18658 3166 3166 18659 3164 3164 18660 3163 3163 18661 3166 3166 18662 3165 3165 18663 3166 3166 18664 3167 3167 18665 3165 3165 18666 3167 3167 18667 3168 3168 18668 3165 3165 18669 3168 3168 18670 3144 3144 18671 3144 3144 18672 3168 3168 18673 3169 3169 18674 3144 3144 18675 3169 3169 18676 3143 3143 18677 3143 3143 18678 3169 3169 18679 3142 3142 18680 3169 3169 18681 3170 3170 18682 3142 3142 18683 3142 3142 18684 3170 3170 18685 3141 3141 18686 3170 3170 18687 3140 3140 18688 3141 3141 18689 3140 3140 18690 3170 3170 18691 3171 3171 18692 3171 3171 18693 3170 3170 18694 3172 3172 18695 3170 3170 18696 3169 3169 18697 3172 3172 18698 3172 3172 18699 3169 3169 18700 3173 3173 18701 3169 3169 18702 3168 3168 18703 3173 3173 18704 3173 3173 18705 3168 3168 18706 3167 3167 18707 3173 3173 18708 3167 3167 18709 3174 3174 18710 3174 3174 18711 3167 3167 18712 3175 3175 18713 3167 3167 18714 3166 3166 18715 3175 3175 18716 3166 3166 18717 3163 3163 18718 3175 3175 18719 3175 3175 18720 3163 3163 18721 3176 3176 18722 3175 3175 18723 3176 3176 18724 3174 3174 18725 3176 3176 18726 3177 3177 18727 3174 3174 18728 3174 3174 18729 3177 3177 18730 3178 3178 18731 3174 3174 18732 3178 3178 18733 3173 3173 18734 3173 3173 18735 3178 3178 18736 3172 3172 18737 3178 3178 18738 3179 3179 18739 3172 3172 18740 3172 3172 18741 3179 3179 18742 3180 3180 18743 3172 3172 18744 3180 3180 18745 3171 3171 18746 3171 3171 18747 3180 3180 18748 3181 3181 18749 3171 3171 18750 3181 3181 18751 3140 3140 18752 3140 3140 18753 3181 3181 18754 3182 3182 18755 3140 3140 18756 3182 3182 18757 1647 1647 18758 3181 3181 18759 3183 3183 18760 3182 3182 18761 1647 1647 18762 3182 3182 18763 3183 3183 18764 1647 1647 18765 3183 3183 18766 1646 1646 18767 3183 3183 18768 3049 3049 18769 1646 1646 18770 1646 1646 18771 3049 3049 18772 1636 1636 18773 3049 3049 18774 3183 3183 18775 3050 3050 18776 1636 1636 18777 3049 3049 18778 3048 3048 18779 1636 1636 18780 3048 3048 18781 3184 3184 18782 1636 1636 18783 3184 3184 18784 1638 1638 18785 3184 3184 18786 3048 3048 18787 2378 2378 18788 3184 3184 18789 2378 2378 18790 2421 2421 18791 2421 2421 18792 2378 2378 18793 2377 2377 18794 2421 2421 18795 2377 2377 18796 2419 2419 18797 2419 2419 18798 2377 2377 18799 2380 2380 18800 2419 2419 18801 2380 2380 18802 2418 2418 18803 2418 2418 18804 2380 2380 18805 2382 2382 18806 2418 2418 18807 2382 2382 18808 2416 2416 18809 2416 2416 18810 2382 2382 18811 2414 2414 18812 2382 2382 18813 2383 2383 18814 2414 2414 18815 2414 2414 18816 2383 2383 18817 2412 2412 18818 2383 2383 18819 2385 2385 18820 2412 2412 18821 2412 2412 18822 2385 2385 18823 2410 2410 18824 2385 2385 18825 2387 2387 18826 2410 2410 18827 2410 2410 18828 2387 2387 18829 3185 3185 18830 2410 2410 18831 3185 3185 18832 2407 2407 18833 2387 2387 18834 3186 3186 18835 3185 3185 18836 3186 3186 18837 2387 2387 18838 3187 3187 18839 2387 2387 18840 2390 2390 18841 3187 3187 18842 3186 3186 18843 3187 3187 18844 3188 3188 18845 3186 3186 18846 3188 3188 18847 3185 3185 18848 3185 3185 18849 3188 3188 18850 3189 3189 18851 3185 3185 18852 3189 3189 18853 3190 3190 18854 3185 3185 18855 3190 3190 18856 2407 2407 18857 3189 3189 18858 3191 3191 18859 3190 3190 18860 2407 2407 18861 3190 3190 18862 3191 3191 18863 2407 2407 18864 3191 3191 18865 2406 2406 18866 2406 2406 18867 3191 3191 18868 2403 2403 18869 3191 3191 18870 3192 3192 18871 2403 2403 18872 3192 3192 18873 3191 3191 18874 3193 3193 18875 3193 3193 18876 3191 3191 18877 3189 3189 18878 3192 3192 18879 3193 3193 18880 3194 3194 18881 3192 3192 18882 3194 3194 18883 2403 2403 18884 3194 3194 18885 2402 2402 18886 2403 2403 18887 2402 2402 18888 3194 3194 18889 2400 2400 18890 3194 3194 18891 3195 3195 18892 2400 2400 18893 3195 3195 18894 3194 3194 18895 3196 3196 18896 3196 3196 18897 3194 3194 18898 3193 3193 18899 3195 3195 18900 3196 3196 18901 3197 3197 18902 3195 3195 18903 3197 3197 18904 2400 2400 18905 3197 3197 18906 2398 2398 18907 2400 2400 18908 2398 2398 18909 3197 3197 18910 3198 3198 18911 2398 2398 18912 3198 3198 18913 2396 2396 18914 2396 2396 18915 3198 3198 18916 2394 2394 18917 3198 3198 18918 3199 3199 18919 2394 2394 18920 2394 2394 18921 3199 3199 18922 2392 2392 18923 3198 3198 18924 3200 3200 18925 3199 3199 18926 3200 3200 18927 3198 3198 18928 3197 3197 18929 3200 3200 18930 3197 3197 18931 3196 3196 18932 3200 3200 18933 3196 3196 18934 3201 3201 18935 3196 3196 18936 3202 3202 18937 3201 3201 18938 3202 3202 18939 3196 3196 18940 3193 3193 18941 3202 3202 18942 3193 3193 18943 3203 3203 18944 3203 3203 18945 3193 3193 18946 3189 3189 18947 3203 3203 18948 3189 3189 18949 3204 3204 18950 3203 3203 18951 3204 3204 18952 3202 3202 18953 3204 3204 18954 3189 3189 18955 3188 3188 18956 3202 3202 18957 3204 3204 18958 3205 3205 18959 3202 3202 18960 3205 3205 18961 3201 3201 18962 3205 3205 18963 3204 3204 18964 3188 3188 18965 3201 3201 18966 3205 3205 18967 3206 3206 18968 3201 3201 18969 3206 3206 18970 3200 3200 18971 3206 3206 18972 3207 3207 18973 3200 3200 18974 3200 3200 18975 3207 3207 18976 3199 3199 18977 3207 3207 18978 3206 3206 18979 3205 3205 18980 3207 3207 18981 3205 3205 18982 3188 3188 18983 3207 3207 18984 3188 3188 18985 3187 3187 18986 3207 3207 18987 3187 3187 18988 3208 3208 18989 3207 3207 18990 3208 3208 18991 3199 3199 18992 3199 3199 18993 3208 3208 18994 2392 2392 18995 2392 2392 18996 3208 3208 18997 2390 2390 18998 3208 3208 18999 3187 3187 19000 2390 2390 19001 3115 3115 19002 3158 3158 19003 3117 3117 19004 3158 3158 19005 3115 3115 19006 3209 3209 19007 3158 3158 19008 3209 3209 19009 3160 3160 19010 3209 3209 19011 3115 3115 19012 3210 3210 19013 3210 3210 19014 3115 3115 19015 3054 3054 19016 3209 3209 19017 3210 3210 19018 3211 3211 19019 3209 3209 19020 3211 3211 19021 3160 3160 19022 3160 3160 19023 3211 3211 19024 3161 3161 19025 3211 3211 19026 3212 3212 19027 3161 3161 19028 3161 3161 19029 3212 3212 19030 3162 3162 19031 3212 3212 19032 3211 3211 19033 3213 3213 19034 3213 3213 19035 3211 3211 19036 3210 3210 19037 3213 3213 19038 3210 3210 19039 3214 3214 19040 3214 3214 19041 3210 3210 19042 3054 3054 19043 3214 3214 19044 3054 3054 19045 3053 3053 19046 3214 3214 19047 3053 3053 19048 3052 3052 19049 3214 3214 19050 3052 3052 19051 3215 3215 19052 3215 3215 19053 3052 3052 19054 3051 3051 19055 3214 3214 19056 3215 3215 19057 3216 3216 19058 3214 3214 19059 3216 3216 19060 3213 3213 19061 3216 3216 19062 3215 3215 19063 3217 3217 19064 3217 3217 19065 3215 3215 19066 3051 3051 19067 3217 3217 19068 3051 3051 19069 3050 3050 19070 3217 3217 19071 3050 3050 19072 3218 3218 19073 3218 3218 19074 3050 3050 19075 3183 3183 19076 3218 3218 19077 3183 3183 19078 3181 3181 19079 3218 3218 19080 3181 3181 19081 3180 3180 19082 3218 3218 19083 3180 3180 19084 3219 3219 19085 3218 3218 19086 3219 3219 19087 3217 3217 19088 3217 3217 19089 3219 3219 19090 3216 3216 19091 3216 3216 19092 3219 3219 19093 3179 3179 19094 3179 3179 19095 3219 3219 19096 3180 3180 19097 3216 3216 19098 3179 3179 19099 3220 3220 19100 3216 3216 19101 3220 3220 19102 3213 3213 19103 3179 3179 19104 3178 3178 19105 3220 3220 19106 3220 3220 19107 3178 3178 19108 3177 3177 19109 3220 3220 19110 3177 3177 19111 3221 3221 19112 3220 3220 19113 3221 3221 19114 3213 3213 19115 3221 3221 19116 3222 3222 19117 3213 3213 19118 3213 3213 19119 3222 3222 19120 3212 3212 19121 3222 3222 19122 3221 3221 19123 3223 3223 19124 3212 3212 19125 3222 3222 19126 3223 3223 19127 3221 3221 19128 3224 3224 19129 3223 3223 19130 3224 3224 19131 3221 3221 19132 3177 3177 19133 3224 3224 19134 3177 3177 19135 3176 3176 19136 3224 3224 19137 3176 3176 19138 3163 3163 19139 3224 3224 19140 3163 3163 19141 3223 3223 19142 3223 3223 19143 3163 3163 19144 3225 3225 19145 3223 3223 19146 3225 3225 19147 3212 3212 19148 3225 3225 19149 3163 3163 19150 3162 3162 19151 3212 3212 19152 3225 3225 19153 3162 3162 19154 3017 3017 19155 2405 2405 19156 2404 2404 19157 2405 2405 19158 3017 3017 19159 3226 3226 19160 3226 3226 19161 3017 3017 19162 3016 3016 19163 2405 2405 19164 3226 3226 19165 2408 2408 19166 2408 2408 19167 3226 3226 19168 2409 2409 19169 2409 2409 19170 3226 3226 19171 2411 2411 19172 2411 2411 19173 3226 3226 19174 2413 2413 19175 3226 3226 19176 3227 3227 19177 2413 2413 19178 2413 2413 19179 3227 3227 19180 2415 2415 19181 3227 3227 19182 3228 3228 19183 2415 2415 19184 2415 2415 19185 3228 3228 19186 2417 2417 19187 3228 3228 19188 3227 3227 19189 3229 3229 19190 3229 3229 19191 3227 3227 19192 3226 3226 19193 3229 3229 19194 3226 3226 19195 3230 3230 19196 3230 3230 19197 3226 3226 19198 3016 3016 19199 3230 3230 19200 3016 3016 19201 3015 3015 19202 3230 3230 19203 3015 3015 19204 3231 3231 19205 3231 3231 19206 3015 3015 19207 3014 3014 19208 3230 3230 19209 3231 3231 19210 3232 3232 19211 3230 3230 19212 3232 3232 19213 3229 3229 19214 3232 3232 19215 3231 3231 19216 3233 3233 19217 3233 3233 19218 3231 3231 19219 3014 3014 19220 3233 3233 19221 3014 3014 19222 2705 2705 19223 3233 3233 19224 2705 2705 19225 2906 2906 19226 3233 3233 19227 2906 2906 19228 3234 3234 19229 3233 3233 19230 3234 3234 19231 3232 3232 19232 2906 2906 19233 2908 2908 19234 3234 3234 19235 3232 3232 19236 3234 3234 19237 3235 3235 19238 3232 3232 19239 3235 3235 19240 3229 3229 19241 3235 3235 19242 3236 3236 19243 3229 3229 19244 3229 3229 19245 3236 3236 19246 3228 3228 19247 3228 3228 19248 3236 3236 19249 3237 3237 19250 3228 3228 19251 3237 3237 19252 3238 3238 19253 3228 3228 19254 3238 3238 19255 2417 2417 19256 2417 2417 19257 3238 3238 19258 2420 2420 19259 2420 2420 19260 3238 3238 19261 2421 2421 19262 3238 3238 19263 3239 3239 19264 2421 2421 19265 2421 2421 19266 3239 3239 19267 3184 3184 19268 3239 3239 19269 3238 3238 19270 3240 3240 19271 3238 3238 19272 3237 3237 19273 3240 3240 19274 3240 3240 19275 3237 3237 19276 3241 3241 19277 3241 3241 19278 3237 3237 19279 3236 3236 19280 3241 3241 19281 3236 3236 19282 3235 3235 19283 3241 3241 19284 3235 3235 19285 3242 3242 19286 3235 3235 19287 3243 3243 19288 3242 3242 19289 3243 3243 19290 3235 3235 19291 3234 3234 19292 3243 3243 19293 3234 3234 19294 2908 2908 19295 3243 3243 19296 2908 2908 19297 2919 2919 19298 3243 3243 19299 2919 2919 19300 2920 2920 19301 3243 3243 19302 2920 2920 19303 3242 3242 19304 3242 3242 19305 2920 2920 19306 3244 3244 19307 2920 2920 19308 2922 2922 19309 3244 3244 19310 3242 3242 19311 3244 3244 19312 3245 3245 19313 3242 3242 19314 3245 3245 19315 3241 3241 19316 3241 3241 19317 3245 3245 19318 3240 3240 19319 3240 3240 19320 3245 3245 19321 3246 3246 19322 3240 3240 19323 3246 3246 19324 3247 3247 19325 3240 3240 19326 3247 3247 19327 3239 3239 19328 3239 3239 19329 3247 3247 19330 3184 3184 19331 3184 3184 19332 3247 3247 19333 1638 1638 19334 1638 1638 19335 3247 3247 19336 3246 3246 19337 1638 1638 19338 3246 3246 19339 3248 3248 19340 3248 3248 19341 3246 3246 19342 3245 3245 19343 3248 3248 19344 3245 3245 19345 3244 3244 19346 3248 3248 19347 3244 3244 19348 3249 3249 19349 3249 3249 19350 3244 3244 19351 2922 2922 19352 3249 3249 19353 2922 2922 19354 2924 2924 19355 3249 3249 19356 2924 2924 19357 665 665 19358 3249 3249 19359 665 665 19360 1640 1640 19361 3249 3249 19362 1640 1640 19363 3248 3248 19364 3248 3248 19365 1640 1640 19366 1638 1638 19367 3250 3250 19368 3251 3251 19369 2631 2631 19370 2631 2631 19371 3251 3251 19372 2632 2632 19373 3250 3250 19374 2631 2631 19375 2633 2633 19376 3250 3250 19377 2633 2633 19378 3252 3252 19379 2633 2633 19380 2634 2634 19381 3252 3252 19382 3252 3252 19383 2634 2634 19384 3253 3253 19385 2634 2634 19386 2635 2635 19387 3253 3253 19388 3253 3253 19389 2635 2635 19390 3254 3254 19391 2635 2635 19392 2636 2636 19393 3254 3254 19394 3254 3254 19395 2636 2636 19396 3255 3255 19397 2636 2636 19398 2637 2637 19399 3255 3255 19400 3255 3255 19401 2637 2637 19402 3256 3256 19403 2637 2637 19404 2638 2638 19405 3256 3256 19406 3256 3256 19407 2638 2638 19408 3257 3257 19409 2638 2638 19410 2639 2639 19411 3257 3257 19412 3257 3257 19413 2639 2639 19414 3258 3258 19415 2639 2639 19416 2640 2640 19417 3258 3258 19418 3258 3258 19419 2640 2640 19420 3259 3259 19421 2640 2640 19422 2641 2641 19423 3259 3259 19424 3259 3259 19425 2641 2641 19426 3260 3260 19427 2641 2641 19428 2642 2642 19429 3260 3260 19430 3260 3260 19431 2642 2642 19432 3261 3261 19433 2642 2642 19434 2632 2632 19435 3261 3261 19436 3261 3261 19437 2632 2632 19438 3251 3251 19439 3261 3261 19440 3251 3251 19441 3262 3262 19442 3261 3261 19443 3262 3262 19444 3263 3263 19445 3261 3261 19446 3263 3263 19447 3260 3260 19448 3263 3263 19449 3264 3264 19450 3260 3260 19451 3260 3260 19452 3264 3264 19453 3259 3259 19454 3264 3264 19455 3265 3265 19456 3259 3259 19457 3259 3259 19458 3265 3265 19459 3258 3258 19460 3265 3265 19461 3266 3266 19462 3258 3258 19463 3258 3258 19464 3266 3266 19465 3257 3257 19466 3266 3266 19467 3267 3267 19468 3257 3257 19469 3257 3257 19470 3267 3267 19471 3256 3256 19472 3267 3267 19473 3268 3268 19474 3256 3256 19475 3256 3256 19476 3268 3268 19477 3255 3255 19478 3268 3268 19479 3269 3269 19480 3255 3255 19481 3255 3255 19482 3269 3269 19483 3254 3254 19484 3269 3269 19485 3268 3268 19486 3270 3270 19487 3270 3270 19488 3268 3268 19489 3267 3267 19490 3270 3270 19491 3267 3267 19492 3266 3266 19493 3270 3270 19494 3266 3266 19495 3265 3265 19496 3270 3270 19497 3265 3265 19498 3264 3264 19499 3270 3270 19500 3264 3264 19501 3263 3263 19502 3270 3270 19503 3263 3263 19504 3262 3262 19505 3270 3270 19506 3262 3262 19507 3271 3271 19508 3271 3271 19509 3262 3262 19510 3251 3251 19511 3271 3271 19512 3251 3251 19513 3250 3250 19514 3271 3271 19515 3250 3250 19516 3272 3272 19517 3271 3271 19518 3272 3272 19519 3270 3270 19520 3250 3250 19521 3252 3252 19522 3272 3272 19523 3272 3272 19524 3252 3252 19525 3273 3273 19526 3272 3272 19527 3273 3273 19528 3270 3270 19529 3252 3252 19530 3253 3253 19531 3273 3273 19532 3270 3270 19533 3273 3273 19534 3274 3274 19535 3270 3270 19536 3274 3274 19537 3269 3269 19538 3269 3269 19539 3274 3274 19540 3254 3254 19541 3254 3254 19542 3274 3274 19543 3253 3253 19544 3274 3274 19545 3273 3273 19546 3253 3253 19547 2214 2214 19548 2211 2211 19549 2210 2210 19550 2214 2214 19551 2213 2213 19552 2211 2211 19553</p>\r\n        </polylist>\r\n      </mesh>\r\n    </geometry>\r\n  </library_geometries>\r\n  <library_animations>\r\n    <animation id=\"Armature_mixamorig_Hips_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_Hips_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_Hips_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Hips_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Hips_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_Hips_pose_matrix-output-array\" count=\"1856\">0.9973901 0.02060495 -0.06919686 -0.02126157 -0.01282673 0.9937349 0.1110253 1.793601 0.07105099 -0.109848 0.9914058 0.01019997 0 0 0 1 0.9956322 0.02987039 -0.08845507 5.21032e-4 -0.02111591 0.9949325 0.09830239 1.794308 0.09094317 -0.09600522 0.9912176 0.008939072 0 0 0 1 0.9934636 0.03813358 -0.1075915 0.02373255 -0.02908431 0.9960025 0.08445775 1.801368 0.1103821 -0.08077648 0.9906012 0.009879551 0 0 0 1 0.9908227 0.04720835 -0.1266569 0.04787315 -0.0383787 0.9967184 0.07127088 1.815105 0.1296059 -0.06575588 0.9893827 0.01320747 0 0 0 1 0.9875978 0.05853304 -0.1456856 0.07242198 -0.05021952 0.9969277 0.06010566 1.834898 0.1487562 -0.05204397 0.9875032 0.01871206 0 0 0 1 0.9839027 0.07426585 -0.1625417 0.1022769 -0.06658144 0.996413 0.05223136 1.882269 0.1658376 -0.04056833 0.9853181 0.03517095 0 0 0 1 0.9785696 0.09853994 -0.1808079 0.1323503 -0.08754518 0.9938485 0.06783277 1.919938 0.1863799 -0.05055022 0.9811766 0.05575958 0 0 0 1 0.969762 0.1298601 -0.2066349 0.1600166 -0.1079096 0.9875783 0.1142132 1.942866 0.2188999 -0.08846176 0.9717289 0.08077943 0 0 0 1 0.9690884 0.1320923 -0.2083728 0.1608963 -0.109142 0.9869875 0.1180828 1.943489 0.2212592 -0.09169043 0.9708951 0.0819919 0 0 0 1 0.9590491 0.1646525 -0.2304655 0.1860424 -0.1246461 0.9759966 0.178589 1.950923 0.2543387 -0.142549 0.9565518 0.1085874 0 0 0 1 0.9497249 0.196939 -0.2433878 0.2115033 -0.1376178 0.9608492 0.2404788 1.946143 0.2812186 -0.1948942 0.9396446 0.1379277 0 0 0 1 0.9431965 0.2229377 -0.2463315 0.2358537 -0.148545 0.9461775 0.2875456 1.934086 0.2971781 -0.2346207 0.9255475 0.1644174 0 0 0 1 0.9379296 0.2437102 -0.2467657 0.2578296 -0.1581714 0.9337716 0.3210176 1.919895 0.3086581 -0.2620606 0.9143601 0.1870847 0 0 0 1 0.9315202 0.2623102 -0.2519202 0.2767261 -0.166355 0.9232816 0.346233 1.907475 0.3234138 -0.2806149 0.9036918 0.2051305 0 0 0 1 0.9228533 0.2810557 -0.2633429 0.2933607 -0.1742231 0.9144118 0.3653729 1.899905 0.3434941 -0.2913051 0.8928344 0.2175595 0 0 0 1 0.9133587 0.3001628 -0.2750961 0.3086908 -0.1846938 0.9075824 0.3770708 1.899089 0.362855 -0.2935924 0.8843867 0.2251216 0 0 0 1 0.9061 0.317108 -0.2800451 0.3230957 -0.1989329 0.9035583 0.3794836 1.905174 0.3733745 -0.2881399 0.8817975 0.227643 0 0 0 1 0.9027564 0.3294103 -0.2766213 0.3355878 -0.2145692 0.9022101 0.3741345 1.915377 0.3728143 -0.278398 0.8851575 0.2272906 0 0 0 1 0.9028484 0.3368371 -0.267218 0.345224 -0.2286541 0.9024738 0.3650456 1.925092 0.3641182 -0.2684803 0.8918163 0.2261674 0 0 0 1 0.9061038 0.3388266 -0.2533225 0.3517902 -0.239622 0.9045236 0.3527294 1.928906 0.3486503 -0.2589079 0.9007827 0.2242545 0 0 0 1 0.9130526 0.3335139 -0.2347408 0.3566885 -0.2466469 0.9099328 0.3334474 1.921118 0.3248078 -0.246557 0.9130767 0.2186491 0 0 0 1 0.922271 0.3228011 -0.21264 0.3628256 -0.2498847 0.9175946 0.3091567 1.897889 0.2949135 -0.2319907 0.9269338 0.2067122 0 0 0 1 0.9300368 0.31313 -0.1923049 0.3704695 -0.2509391 0.9235011 0.2901296 1.861116 0.2684421 -0.2215744 0.9374664 0.1895412 0 0 0 1 0.9350148 0.3050239 -0.1808529 0.3777586 -0.2492374 0.9280704 0.2767055 1.818052 0.2522461 -0.2136483 0.943783 0.1681411 0 0 0 1 0.9401623 0.2908943 -0.1774121 0.3854638 -0.2419842 0.9366143 0.2533719 1.778341 0.2398712 -0.1952798 0.9509614 0.1404547 0 0 0 1 0.9483731 0.2675091 -0.1703742 0.3944134 -0.2299027 0.9499018 0.2117336 1.749485 0.2184794 -0.161633 0.9623625 0.1068748 0 0 0 1 0.9578083 0.2445498 -0.1509919 0.4038363 -0.2202472 0.9620579 0.1610451 1.73853 0.1846465 -0.1209948 0.9753286 0.0724926 0 0 0 1 0.9649132 0.2302727 -0.126161 0.4099646 -0.2168294 0.9697946 0.1117277 1.748741 0.1480781 -0.08045208 0.9856978 0.04234166 0 0 0 1 0.968046 0.224945 -0.110844 0.4115975 -0.2184027 0.9734758 0.06815514 1.779611 0.1232351 -0.04176868 0.9914981 0.01951875 0 0 0 1 0.9676821 0.2246166 -0.1146247 0.4097654 -0.2221596 0.9744192 0.0339448 1.823462 0.1193171 -0.007382786 0.9928287 0.005709181 0 0 0 1 0.9647312 0.2258507 -0.1352234 0.4060968 -0.2262569 0.9739868 0.01256119 1.869811 0.1345428 0.01847707 0.9907354 0.00100548 0 0 0 1 0.9597097 0.2293012 -0.1624125 0.4025707 -0.2314916 0.9728208 0.005567461 1.911877 0.1592749 0.032254 0.9867072 0.003772592 0 0 0 1 0.9534107 0.2359113 -0.188026 0.3995681 -0.2377108 0.9712454 0.01325221 1.944218 0.1857458 0.03206103 0.9820746 0.01269246 0 0 0 1 0.9459264 0.2461865 -0.2112243 0.397165 -0.2438679 0.969088 0.0373789 1.963353 0.2138971 0.01615314 0.9767228 0.02826845 0 0 0 1 0.9373168 0.2593405 -0.2327656 0.3947013 -0.2467428 0.9655862 0.08222616 1.967622 0.2460798 -0.01963872 0.9690506 0.05255623 0 0 0 1 0.9288268 0.2746666 -0.248674 0.3918235 -0.2436606 0.9584241 0.1485019 1.958324 0.2791236 -0.07734048 0.9571356 0.08580395 0 0 0 1 0.9226 0.2911076 -0.2531115 0.3889342 -0.2365986 0.9452569 0.2247452 1.9391 0.3046804 -0.1474641 0.9409696 0.1242325 0 0 0 1 0.9198394 0.3063574 -0.2450313 0.3851776 -0.2313159 0.9280386 0.2919543 1.913853 0.3168408 -0.2118715 0.924512 0.1587591 0 0 0 1 0.919548 0.3193039 -0.2290764 0.3797093 -0.2322047 0.9117622 0.3387775 1.887601 0.3170362 -0.2583296 0.9125534 0.1818464 0 0 0 1 0.9195806 0.3304133 -0.2125993 0.3725853 -0.2382974 0.8992466 0.3668376 1.86464 0.3123872 -0.2866749 0.9056664 0.1945054 0 0 0 1 0.9182053 0.3402281 -0.2028391 0.3645559 -0.2453908 0.890575 0.3829612 1.849244 0.3109377 -0.3018622 0.9012195 0.1999171 0 0 0 1 0.914795 0.3485857 -0.2040538 0.3566408 -0.2500979 0.8855255 0.3915299 1.844181 0.3171765 -0.3071362 0.8972549 0.1996107 0 0 0 1 0.9099064 0.3548779 -0.2147834 0.3493864 -0.2522242 0.8843923 0.3927253 1.850629 0.3293223 -0.3031697 0.8942231 0.1930888 0 0 0 1 0.9056016 0.3574115 -0.2283484 0.3425328 -0.2536118 0.8878654 0.3838963 1.867716 0.3399515 -0.2897452 0.894696 0.1798655 0 0 0 1 0.9047189 0.3537379 -0.2373881 0.3351508 -0.2553079 0.8962986 0.3625832 1.891338 0.3410301 -0.2674289 0.9012104 0.1634925 0 0 0 1 0.9085437 0.3432581 -0.2381643 0.3273597 -0.2570339 0.9086484 0.3290769 1.917212 0.3293659 -0.2377645 0.9137758 0.1456993 0 0 0 1 0.9163567 0.3265804 -0.2315936 0.3201038 -0.2571001 0.9234354 0.2848975 1.941003 0.3069037 -0.201525 0.9301601 0.1275891 0 0 0 1 0.9271735 0.3033705 -0.2198076 0.3131841 -0.2529309 0.9397267 0.2300857 1.957054 0.2763602 -0.1577332 0.9480218 0.1098604 0 0 0 1 0.9402685 0.2743209 -0.2016018 0.306068 -0.2431008 0.9556075 0.166482 1.959255 0.2383217 -0.1075282 0.9652151 0.09084783 0 0 0 1 0.9540589 0.2433165 -0.1748378 0.30081 -0.2276218 0.9680583 0.1051254 1.943449 0.1948319 -0.06049895 0.978969 0.06789269 0 0 0 1 0.9658638 0.2140068 -0.1459733 0.2992117 -0.2066269 0.9763142 0.06415255 1.910037 0.1562449 -0.03180062 0.9872063 0.04290422 0 0 0 1 0.9740573 0.1848153 -0.1305958 0.3009837 -0.1797922 0.9824651 0.04936386 1.864441 0.137429 -0.02460313 0.990206 0.01920201 0 0 0 1 0.9792627 0.1501788 -0.1359809 0.3028514 -0.1454576 0.9883822 0.04407164 1.813066 0.1410197 -0.02337826 0.9897307 -0.002484042 0 0 0 1 0.9825675 0.1098355 -0.1499906 0.303175 -0.1064617 0.993853 0.03036585 1.765889 0.1524039 -0.01386824 0.9882211 -0.02270116 0 0 0 1 0.9855239 0.06985386 -0.1544766 0.3011233 -0.06926203 0.9975558 0.009216573 1.732819 0.1547429 0.00161621 0.9879536 -0.0403925 0 0 0 1 0.9894105 0.03350992 -0.141223 0.2923412 -0.03520557 0.9993347 -0.00952489 1.716706 0.1408099 0.01439586 0.9899321 -0.05251682 0 0 0 1 0.9936686 0.003450422 -0.1122979 0.2791786 -0.006107399 0.9997092 -0.02332467 1.724328 0.1121848 0.02386284 0.9934008 -0.05864266 0 0 0 1 0.9973267 -0.02232449 -0.06957765 0.2626104 0.01989827 0.999176 -0.0353709 1.755403 0.07030997 0.03389186 0.9969491 -0.05918379 0 0 0 1 0.998925 -0.0436515 -0.01559437 0.2437125 0.0428801 0.9979843 -0.04678026 1.803308 0.01760496 0.04606128 0.9987836 -0.05524603 0 0 0 1 0.9973044 -0.05935903 0.04313209 0.2215643 0.06172144 0.9965393 -0.05567687 1.856403 -0.0396779 0.05818896 0.9975168 -0.04801536 0 0 0 1 0.9923073 -0.07089333 0.1014902 0.195023 0.07708941 0.9953072 -0.05848586 1.903633 -0.09686764 0.06585976 0.9931159 -0.03840303 0 0 0 1 0.9839046 -0.08267663 0.1584183 0.1652244 0.09156127 0.9945625 -0.0496185 1.939274 -0.1534546 0.06332485 0.9861246 -0.0276419 0 0 0 1 0.9724871 -0.09870486 0.211013 0.1343535 0.1060973 0.9940667 -0.02397478 1.960579 -0.2073946 0.04570306 0.9771892 -0.01632764 0 0 0 1 0.959674 -0.1208213 0.2538269 0.1026996 0.1200141 0.9925954 0.01872273 1.967977 -0.2542095 0.01249507 0.9670684 -0.003499854 0 0 0 1 0.9477265 -0.1449619 0.2842538 0.07069178 0.129204 0.9888881 0.07352941 1.962089 -0.2917542 -0.03295906 0.9559252 0.0126319 0 0 0 1 0.9379743 -0.1679475 0.3033114 0.03882024 0.1325821 0.9820998 0.1337986 1.944577 -0.3203532 -0.085286 0.9434512 0.0308048 0 0 0 1 0.9307979 -0.189244 0.312733 0.007827258 0.1325187 0.9720502 0.1937965 1.917449 -0.340667 -0.1389424 0.9298609 0.04849681 0 0 0 1 0.9253806 -0.2085156 0.3165312 -0.02058932 0.1307215 0.9594189 0.2498543 1.884679 -0.3557846 -0.1898329 0.9150851 0.06419681 0 0 0 1 0.9197897 -0.2255721 0.3210979 -0.04514972 0.1272887 0.9455302 0.2996169 1.851277 -0.3711929 -0.2347125 0.8984019 0.07817568 0 0 0 1 0.9132856 -0.2406409 0.3286361 -0.0656552 0.1232187 0.9322449 0.3402012 1.8234 -0.3882356 -0.2702067 0.8810571 0.08913446 0 0 0 1 0.9080327 -0.2542246 0.3329357 -0.08260809 0.1229424 0.9215214 0.3683524 1.807211 -0.4004515 -0.2935441 0.8680267 0.09806006 0 0 0 1 0.9067957 -0.2660782 0.3269923 -0.09710608 0.1308493 0.9149877 0.381675 1.806549 -0.4007494 -0.3033145 0.8645232 0.1054233 0 0 0 1 0.9092536 -0.2755675 0.3119618 -0.1084697 0.146706 0.9135399 0.3793702 1.820677 -0.3895317 -0.2991771 0.8710672 0.1116882 0 0 0 1 0.9129494 -0.2821968 0.2947681 -0.1154494 0.1663242 0.9169428 0.362701 1.844965 -0.3726386 -0.2821006 0.8840586 0.1162168 0 0 0 1 0.9165633 -0.2851732 0.2803351 -0.1189172 0.1850991 0.9239599 0.3347189 1.873025 -0.3544711 -0.2549013 0.8996531 0.1175762 0 0 0 1 0.9201996 -0.2839808 0.2694211 -0.1203292 0.2000638 0.9327682 0.2998635 1.898937 -0.3364629 -0.2220329 0.9151471 0.1155493 0 0 0 1 0.9239007 -0.2792749 0.2615581 -0.1215889 0.2100963 0.9415773 0.2632329 1.917536 -0.3197914 -0.1882488 0.9285987 0.1094836 0 0 0 1 0.9272867 -0.2730168 0.2561271 -0.1248038 0.2163178 0.9491803 0.2286113 1.925015 -0.3055256 -0.1565834 0.9392208 0.09781846 0 0 0 1 0.9305572 -0.2669055 0.2506487 -0.1313563 0.2202336 0.9548932 0.1991887 1.91826 -0.2925073 -0.1301552 0.9473643 0.0800521 0 0 0 1 0.9345446 -0.2610392 0.2418359 -0.14261 0.2208988 0.9583828 0.1808485 1.895655 -0.2789799 -0.1155897 0.9533148 0.05807618 0 0 0 1 0.9391462 -0.2540646 0.2312049 -0.1584673 0.215692 0.9599625 0.1787426 1.859133 -0.2673602 -0.1179964 0.9563448 0.03543366 0 0 0 1 0.9432397 -0.243826 0.2254937 -0.1764262 0.2033089 0.9608033 0.188474 1.814226 -0.26261 -0.1319313 0.9558398 0.01461732 0 0 0 1 0.946338 -0.2283995 0.2286439 -0.1932219 0.1845722 0.9627172 0.1977589 1.768965 -0.2652875 -0.1449455 0.9532121 -0.004089631 0 0 0 1 0.9483265 -0.2085939 0.2390927 -0.2069355 0.162761 0.9666418 0.1977685 1.73272 -0.2723703 -0.1486342 0.9506429 -0.02077885 0 0 0 1 0.9482663 -0.189767 0.2545176 -0.2170847 0.1437788 0.9714648 0.1886367 1.713189 -0.2830518 -0.1422836 0.948492 -0.03428542 0 0 0 1 0.9450074 -0.1780344 0.2743436 -0.2241009 0.1328475 0.9754873 0.1754313 1.714457 -0.2988515 -0.129338 0.9454943 -0.04322152 0 0 0 1 0.9384366 -0.1732759 0.2988514 -0.2273392 0.1288582 0.9782482 0.162561 1.735299 -0.3205188 -0.1140437 0.9403519 -0.04667611 0 0 0 1 0.9284945 -0.1729809 0.3285962 -0.2271627 0.1289807 0.9800139 0.1514495 1.772347 -0.3482267 -0.09823748 0.9322487 -0.0445217 0 0 0 1 0.9143362 -0.1771955 0.3641304 -0.2245531 0.133878 0.9808927 0.1411591 1.819675 -0.3821856 -0.08031788 0.9205885 -0.03740364 0 0 0 1 0.8954917 -0.1865805 0.4040822 -0.2198107 0.1451028 0.9806723 0.1312507 1.868387 -0.4207611 -0.05890044 0.9052573 -0.02616721 0 0 0 1 0.8731784 -0.2013883 0.4438495 -0.2135082 0.1620516 0.9787938 0.1253076 1.910043 -0.4596727 -0.03748942 0.8872968 -0.01169856 0 0 0 1 0.8520446 -0.2170812 0.4763356 -0.2019118 0.1747378 0.9757127 0.1321015 1.934453 -0.4934436 -0.02932256 0.8692834 0.0056585 0 0 0 1 0.8359718 -0.2384707 0.4942496 -0.1895788 0.1813495 0.9700955 0.1613282 1.944933 -0.5179416 -0.04523394 0.8542191 0.02506782 0 0 0 1 0.8270403 -0.2703032 0.49289 -0.1825629 0.1857332 0.9589582 0.2142481 1.947122 -0.5305729 -0.08564578 0.8433014 0.04663446 0 0 0 1 0.8274154 -0.3043211 0.4719881 -0.1788583 0.1880872 0.9420775 0.277693 1.939007 -0.5291571 -0.1409925 0.8367282 0.06882913 0 0 0 1 0.8368628 -0.3286798 0.4377559 -0.1736886 0.1881142 0.9236524 0.3338852 1.915601 -0.5140756 -0.197068 0.8347996 0.08884066 0 0 0 1 0.849835 -0.3445657 0.3988173 -0.1694097 0.1918852 0.9070429 0.3747709 1.885458 -0.4908776 -0.2419662 0.8369538 0.1037384 0 0 0 1 0.8602489 -0.3550991 0.3658907 -0.1645399 0.1978848 0.8938807 0.4022672 1.856281 -0.4699074 -0.2736458 0.8392286 0.1140395 0 0 0 1 0.8653476 -0.3628976 0.3456573 -0.1580855 0.20316 0.8844919 0.4199999 1.834184 -0.4581481 -0.2932221 0.8391193 0.1213129 0 0 0 1 0.8671873 -0.3683412 0.3351279 -0.1508489 0.2078755 0.8792903 0.4285282 1.8227 -0.4525192 -0.3019494 0.8390786 0.1262667 0 0 0 1 0.8697752 -0.3697694 0.3267441 -0.1434966 0.2136652 0.8790907 0.426083 1.823072 -0.4447902 -0.3007826 0.8436182 0.1294619 0 0 0 1 0.8753976 -0.3653207 0.3165745 -0.135572 0.2204318 0.8845082 0.4111628 1.835043 -0.430219 -0.2901478 0.854825 0.1312027 0 0 0 1 0.884282 -0.3543409 0.3041182 -0.1273114 0.226546 0.8950512 0.3841358 1.856257 -0.4083163 -0.2707876 0.8717522 0.1306395 0 0 0 1 0.896261 -0.33724 0.2880714 -0.1186983 0.230509 0.909072 0.347064 1.882696 -0.3789215 -0.2446569 0.8925028 0.1279673 0 0 0 1 0.9110091 -0.3145866 0.2666416 -0.1101481 0.2310889 0.9249605 0.3017386 1.909749 -0.3415558 -0.2132687 0.9153449 0.1238474 0 0 0 1 0.927187 -0.28697 0.2407747 -0.1022038 0.2272381 0.9418612 0.2475085 1.932561 -0.2978038 -0.1747735 0.9384919 0.1178473 0 0 0 1 0.9425818 -0.2571846 0.2130617 -0.09449365 0.2203779 0.9583173 0.181827 1.94691 -0.2509439 -0.1244327 0.9599705 0.1080166 0 0 0 1 0.9561737 -0.2292294 0.1821695 -0.08611633 0.2121155 0.9711792 0.1087099 1.949173 -0.2018388 -0.06530461 0.9772391 0.09273593 0 0 0 1 0.9691217 -0.2022191 0.1411049 -0.07843778 0.197163 0.9791412 0.04908456 1.937658 -0.1480875 -0.01974824 0.9887771 0.07372446 0 0 0 1 0.9820311 -0.1671523 0.08760737 -0.07527519 0.1649781 0.9857926 0.03154751 1.913351 -0.09163593 -0.01652733 0.9956554 0.05539826 0 0 0 1 0.9926493 -0.1149635 0.03782016 -0.07898278 0.1122748 0.9914256 0.06685192 1.876204 -0.04518141 -0.06211427 0.9970458 0.04091167 0 0 0 1 0.9979334 -0.06328286 0.01113883 -0.08155917 0.06171779 0.9922445 0.1078962 1.839287 -0.01788043 -0.1069858 0.9940996 0.02941526 0 0 0 1 0.9994606 -0.03139466 -0.00962454 -0.07234961 0.03233561 0.9919953 0.1220649 1.820245 0.005715311 -0.1223103 0.9924755 0.02274587 0 0 0 1 0.9995224 -0.007837773 -0.02989091 -0.05846385 0.01153229 0.9920257 0.1255067 1.806724 0.02866885 -0.1257915 0.9916424 0.01735149 0 0 0 1 0.9987257 0.008513304 -0.04974113 -0.04122833 -0.002445405 0.9926741 0.1207983 1.798149 0.05040512 -0.1205228 0.99143 0.01315029 0 0 0 1 0.9973901 0.02060495 -0.06919686 -0.02126157 -0.01282673 0.9937349 0.1110253 1.793601 0.07105099 -0.109848 0.9914058 0.01019997 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Hips_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Hips_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_Hips_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Hips_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_Hips_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_Hips_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_Hips_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_Hips_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_Hips_pose_matrix-sampler\" target=\"mixamorig_Hips/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_Spine_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_Spine_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_Spine_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Spine_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_Spine_pose_matrix-output-array\" count=\"1856\">0.9960486 -0.01905607 0.08674161 0 0.04315625 0.9574926 -0.2852112 0.1859758 -0.07761946 0.2878276 0.9545316 -0.01239344 0 0 0 1 0.9966546 -0.02229821 0.07862684 0 0.04124257 0.9678003 -0.248317 0.1859758 -0.07055807 0.2507292 0.9654825 -0.01239344 0 0 0 1 0.9971532 -0.02365746 0.07159545 0 0.03812727 0.977371 -0.2080664 0.1859758 -0.06505302 0.2102038 0.975491 -0.01239344 0 0 0 1 0.9975472 -0.02247234 0.06628747 0 0.03338474 0.9851493 -0.1684217 0.1859758 -0.06151822 0.1702217 0.9834834 -0.01239344 0 0 0 1 0.9978405 -0.01853689 0.06301194 0 0.02678006 0.9908069 -0.1326058 0.1859758 -0.05997459 0.1340069 0.9891639 -0.01239344 0 0 0 1 0.9979229 -0.005812582 0.06415495 0 0.01216581 0.9950041 -0.09908821 0.1859758 -0.06325848 0.09966287 0.9930086 -0.01239344 0 0 0 1 0.9982491 0.004916721 0.05894273 0 4.79894e-4 0.9958329 -0.09119509 0.1859758 -0.05914548 0.09106374 0.9940872 -0.01239344 0 0 0 1 0.9986578 0.01555823 0.04940241 0 -0.009951015 0.9936829 -0.1117817 0.1859758 -0.05082947 0.1111401 0.9925039 -0.01239344 0 0 0 1 0.9986838 0.01623615 0.0486514 0 -0.01059934 0.9934293 -0.1139551 0.1859758 -0.05018193 0.1132894 0.992294 -0.01239344 0 0 0 1 0.9990099 0.02565004 0.03635474 0 -0.01984436 0.9881954 -0.1519073 0.1859758 -0.03982202 0.1510355 0.9877259 -0.01239344 0 0 0 1 0.9992071 0.03470593 0.01951508 0 -0.03022054 0.9801753 -0.1958135 0.1859758 -0.02592409 0.1950685 0.9804471 -0.01239344 0 0 0 1 0.9991465 0.0413084 -4.39562e-4 0 -0.04032385 0.9729103 -0.2276386 0.1859758 -0.008975729 0.2274621 0.9737456 -0.01239344 0 0 0 1 0.9987797 0.04462732 -0.02115584 0 -0.04839341 0.9698627 -0.2387969 0.1859758 0.009861402 0.2395293 0.9708391 -0.01239344 0 0 0 1 0.9982345 0.04444654 -0.03940332 0 -0.05233783 0.9718613 -0.2296645 0.1859758 0.02808679 0.2313214 0.9724717 -0.01239344 0 0 0 1 0.997753 0.04137712 -0.05269614 0 -0.05144547 0.9770025 -0.206928 0.1859758 0.04292219 0.209174 0.976936 -0.01239344 0 0 0 1 0.9974939 0.03668379 -0.06049976 0 -0.04701666 0.9826596 -0.1793589 0.1859758 0.05287111 0.1817539 0.9819219 -0.01239344 0 0 0 1 0.9974204 0.03180202 -0.06435265 0 -0.04144959 0.9871025 -0.1546295 0.1859758 0.05860513 0.156898 0.9858744 -0.01239344 0 0 0 1 0.9973767 0.02761101 -0.06691359 0 -0.03666159 0.9897462 -0.1380517 0.1859758 0.06241572 0.1401427 0.988162 -0.01239344 0 0 0 1 0.9972175 0.02390192 -0.07061189 0 -0.03312866 0.9906242 -0.1325365 0.1859758 0.066782 0.134507 0.9886596 -0.01239344 0 0 0 1 0.9968863 0.02008648 -0.07625096 0 -0.03054914 0.9898723 -0.138634 0.1859758 0.07269403 0.1405317 0.9874038 -0.01239344 0 0 0 1 0.9964861 0.01594692 -0.08222602 0 -0.02855196 0.9875823 -0.1544856 0.1859758 0.07874141 0.1562905 0.9845675 -0.01239344 0 0 0 1 0.9963415 0.01195757 -0.0846205 0 -0.02677774 0.9839823 -0.1762424 0.1859758 0.08115767 0.1778636 0.9807026 -0.01239344 0 0 0 1 0.9968701 0.00915918 -0.07852229 0 -0.02469724 0.9796328 -0.1992724 0.1859758 0.07509781 0.200588 0.9767933 -0.01239344 0 0 0 1 0.9981253 0.008982841 -0.06054155 0 -0.0221073 0.9753022 -0.2197643 0.1859758 0.05707222 0.2206907 0.9736726 -0.01239344 0 0 0 1 0.9994423 0.01207502 -0.03113206 0 -0.01908977 0.9715629 -0.2360103 0.1859758 0.02739694 0.236473 0.9712518 -0.01239344 0 0 0 1 0.999816 0.01846021 0.005203441 0 -0.01658924 0.9685082 -0.2484273 0.1859758 -0.009625606 0.2482952 0.9686365 -0.01239344 0 0 0 1 0.9987881 0.02579007 0.04191827 0 -0.014113 0.9660228 -0.2580711 0.1859758 -0.0471497 0.2571668 0.9652161 -0.01239344 0 0 0 1 0.9968076 0.03282677 0.07278237 0 -0.01244581 0.964312 -0.2644758 0.1859758 -0.07886681 0.2627256 0.961642 -0.01239344 0 0 0 1 0.9948153 0.03859993 0.09408748 0 -0.0123957 0.9642939 -0.2645438 0.1859758 -0.1009394 0.2620059 0.9597731 -0.01239344 0 0 0 1 0.9934963 0.0425068 0.1056323 0 -0.0144043 0.9671711 -0.2537172 0.1859758 -0.1129492 0.2505456 0.9614933 -0.01239344 0 0 0 1 0.992956 0.04475117 0.1097081 0 -0.01851669 0.9731629 -0.2293716 0.1859758 -0.1170285 0.2257244 0.9671366 -0.01239344 0 0 0 1 0.9929048 0.04517703 0.1099967 0 -0.02310971 0.9806937 -0.1941793 0.1859758 -0.1166456 0.1902596 0.9747793 -0.01239344 0 0 0 1 0.9929634 0.04617763 0.109047 0 -0.02858288 0.98707 -0.1577193 0.1859758 -0.1149201 0.1534926 0.9814446 -0.01239344 0 0 0 1 0.9928508 0.05109021 0.1078753 0 -0.03645942 0.9903798 -0.1334868 0.1859758 -0.1136574 0.1285995 0.985162 -0.01239344 0 0 0 1 0.9923777 0.06283359 0.1060121 0 -0.0485143 0.9899787 -0.1326208 0.1859758 -0.1132828 0.1264668 0.9854812 -0.01239344 0 0 0 1 0.9914865 0.0805009 0.102343 0 -0.06374851 0.9854515 -0.1575481 0.1859758 -0.1135368 0.1496826 0.9821938 -0.01239344 0 0 0 1 0.9904975 0.09890044 0.0955686 0 -0.07821092 0.9766487 -0.2001001 0.1859758 -0.1131269 0.1907241 0.9751034 -0.01239344 0 0 0 1 0.9900565 0.1123131 0.08469836 0 -0.08848032 0.9652882 -0.2457431 0.1859758 -0.1093585 0.2358054 0.9656275 -0.01239344 0 0 0 1 0.9906402 0.1172994 0.06980552 0 -0.09331417 0.9552062 -0.2808435 0.1859758 -0.09962151 0.271701 0.9572116 -0.01239344 0 0 0 1 0.9920927 0.1141655 0.05213668 0 -0.09365597 0.949958 -0.2980065 0.1859758 -0.08354974 0.2907671 0.9531391 -0.01239344 0 0 0 1 0.993776 0.1062215 0.03356249 0 -0.09159271 0.9506142 -0.2965526 0.1859758 -0.06340524 0.2916328 0.9544267 -0.01239344 0 0 0 1 0.9950356 0.098216 0.01605148 0 -0.0898474 0.9559321 -0.2795019 0.1859758 -0.04279568 0.2766722 0.9600111 -0.01239344 0 0 0 1 0.9955642 0.09407574 0.001226149 0 -0.09077714 0.9639182 -0.2502417 0.1859758 -0.02472357 0.2490204 0.9681826 -0.01239344 0 0 0 1 0.9954001 0.09528486 -0.009957522 0 -0.09523343 0.9727917 -0.2112027 0.1859758 -0.01043784 0.2111795 0.9773914 -0.01239344 0 0 0 1 0.9947819 0.1005385 -0.01735312 0 -0.102024 0.9810452 -0.1647452 0.1859758 4.60975e-4 0.165656 0.9861833 -0.01239344 0 0 0 1 0.9941589 0.1056991 -0.02180561 0 -0.1075162 0.9875349 -0.1149563 0.1859758 0.009383015 0.1166293 0.9931312 -0.01239344 0 0 0 1 0.99408 0.1057719 -0.02483698 0 -0.1072495 0.9918639 -0.06858052 0.1859758 0.01738101 0.07083828 0.9973363 -0.01239344 0 0 0 1 0.9948441 0.09748506 -0.02795909 0 -0.09841289 0.994565 -0.03398711 0.1859758 0.0244939 0.03656341 0.9990311 -0.01239344 0 0 0 1 0.9962448 0.08045378 -0.03199044 0 -0.08107042 0.9965372 -0.01846796 0.1859758 0.03039385 0.02099207 0.9993176 -0.01239344 0 0 0 1 0.9976873 0.05727654 -0.03659532 0 -0.05822434 0.9979806 -0.0253804 0.1859758 0.03506774 0.02745242 0.9990079 -0.01239344 0 0 0 1 0.9986553 0.03243718 -0.04044001 0 -0.0345458 0.9980187 -0.05258232 0.1859758 0.03865428 0.05390864 0.9977974 -0.01239344 0 0 0 1 0.9990489 0.01043758 -0.04233824 0 -0.01433611 0.9955769 -0.09284902 0.1859758 0.04118186 0.09336765 0.9947796 -0.01239344 0 0 0 1 0.9990718 -0.005012877 -0.04277956 0 -8.60503e-4 0.990683 -0.1361838 0.1859758 0.04306366 0.1360942 0.9897594 -0.01239344 0 0 0 1 0.9989405 -0.01506583 -0.04348253 0 0.007316485 0.9848678 -0.1731525 0.1859758 0.04543325 0.1726509 0.9839346 -0.01239344 0 0 0 1 0.9986525 -0.02328175 -0.04637704 0 0.01369026 0.980248 -0.1972975 0.1859758 0.05005443 0.1963967 0.9792462 -0.01239344 0 0 0 1 0.9980686 -0.03013455 -0.0543237 0 0.01835218 0.9784641 -0.2055983 0.1859758 0.05934943 0.2042042 0.9771275 -0.01239344 0 0 0 1 0.996958 -0.0392958 -0.06730977 0 0.02525202 0.97987 -0.1980332 0.1859758 0.0737367 0.195731 0.9778817 -0.01239344 0 0 0 1 0.9951403 -0.05010416 -0.08476394 0 0.03452551 0.9837548 -0.1761653 0.1859758 0.09221359 0.1723828 0.9807043 -0.01239344 0 0 0 1 0.9926729 -0.06131092 -0.1041235 0 0.04605826 0.9886444 -0.1430409 0.1859758 0.1117111 0.1371971 0.9842244 -0.01239344 0 0 0 1 0.9899941 -0.07158709 -0.1216024 0 0.05908951 0.9928784 -0.1034439 0.1859758 0.1281417 0.09522343 0.9871739 -0.01239344 0 0 0 1 0.9878671 -0.07919212 -0.1335934 0 0.07116951 0.9954215 -0.06380206 0.1859758 0.1380344 0.05352017 0.9889803 -0.01239344 0 0 0 1 0.9869445 -0.08348744 -0.1377331 0 0.07987965 0.9963058 -0.0315265 0.1859758 0.1398564 0.02011282 0.9899674 -0.01239344 0 0 0 1 0.9873713 -0.08506456 -0.133648 0 0.08402964 0.9963732 -0.01337553 0.1859758 0.1343012 0.001976192 0.9909385 -0.01239344 0 0 0 1 0.9889596 -0.08283897 -0.1228687 0 0.08183946 0.9965585 -0.01316833 0.1859758 0.1235367 0.002967425 0.9923356 -0.01239344 0 0 0 1 0.9911585 -0.07775538 -0.1075141 0 0.07487143 0.9967232 -0.03061141 0.1859758 0.109542 0.02229102 0.9937323 -0.01239344 0 0 0 1 0.9934468 -0.0710399 -0.08953621 0 0.06576373 0.9959955 -0.06056362 0.1859758 0.09348011 0.05427849 0.9941405 -0.01239344 0 0 0 1 0.9954162 -0.06499965 -0.07015399 0 0.05824099 0.9938267 -0.09442578 0.1859758 0.07585857 0.08990712 0.993057 -0.01239344 0 0 0 1 0.9967527 -0.06304372 -0.05009596 0 0.05648589 0.9907992 -0.1229881 0.1859758 0.05738868 0.119759 0.9911432 -0.01239344 0 0 0 1 0.9972719 -0.06741229 -0.03006721 0 0.06259947 0.9882534 -0.1394129 0.1859758 0.03911217 0.1371503 0.9897777 -0.01239344 0 0 0 1 0.9968233 -0.0788428 -0.01126225 0 0.07647605 0.9870462 -0.1410347 0.1859758 0.02223593 0.1397254 0.9899406 -0.01239344 0 0 0 1 0.9953687 -0.0959999 0.005012214 0 0.09584177 0.9869885 -0.1291034 0.1859758 0.007446907 0.1289859 0.9916183 -0.01239344 0 0 0 1 0.9930409 -0.1163644 0.01814472 0 0.1176445 0.9872595 -0.1071367 0.1859758 -0.005446654 0.1085257 0.9940787 -0.01239344 0 0 0 1 0.9900813 -0.1374962 0.0288728 0 0.1393864 0.9870684 -0.0791641 0.1859758 -0.01761468 0.08240335 0.9964433 -0.01239344 0 0 0 1 0.9867532 -0.1574477 0.0390899 0 0.1592712 0.9860186 -0.04899041 0.1859758 -0.03082994 0.05456734 0.9980342 -0.01239344 0 0 0 1 0.9833485 -0.1745536 0.05055726 0 0.1757647 0.9842174 -0.02055701 0.1859758 -0.04617104 0.02910088 0.9985095 -0.01239344 0 0 0 1 0.9803405 -0.1868666 0.06335069 0 0.187154 0.9823294 0.001419209 0.1859758 -0.06249646 0.010465 0.9979904 -0.01239344 0 0 0 1 0.9783937 -0.1926932 0.07493283 0 0.1923757 0.9812537 0.01150022 0.1859758 -0.07574417 0.003163494 0.9971222 -0.01239344 0 0 0 1 0.9781872 -0.1913494 0.08084035 0 0.191611 0.9814602 0.004582547 0.1859758 -0.08021846 0.01100729 0.9967166 -0.01239344 0 0 0 1 0.9799419 -0.1840329 0.07645763 0 0.1862038 0.982259 -0.02224716 0.1859758 -0.07100701 0.03603763 0.9968246 -0.01239344 0 0 0 1 0.9830245 -0.1737797 0.05885089 0 0.1776163 0.9817601 -0.06781861 0.1859758 -0.04599197 0.07712021 0.9959605 -0.01239344 0 0 0 1 0.98598 -0.164525 0.02783478 0 0.1667371 0.9779097 -0.1260595 0.1859758 -0.006479956 0.1289333 0.9916321 -0.01239344 0 0 0 1 0.9870712 -0.1596782 -0.01390325 0 0.1542927 0.9700943 -0.1873772 0.1859758 0.04340756 0.1828095 0.9821895 -0.01239344 0 0 0 1 0.9850958 -0.160662 -0.06143351 0 0.1414603 0.9599037 -0.2420202 0.1859758 0.09785372 0.2297227 0.9683243 -0.01239344 0 0 0 1 0.9800703 -0.1662656 -0.1087098 0 0.1297853 0.9502261 -0.2832421 0.1859758 0.1503923 0.2634882 0.9528672 -0.01239344 0 0 0 1 0.9733911 -0.1732804 -0.1499451 0 0.1205338 0.9436905 -0.3080902 0.1859758 0.1948878 0.2818189 0.9394664 -0.01239344 0 0 0 1 0.9673516 -0.1773026 -0.1810938 0 0.113559 0.9420348 -0.3157135 0.1859758 0.2265735 0.2848411 0.9314132 -0.01239344 0 0 0 1 0.9638566 -0.1757207 -0.2002566 0 0.1089717 0.9459243 -0.3055354 0.1859758 0.2431166 0.27267 0.9308841 -0.01239344 0 0 0 1 0.9637892 -0.1665582 -0.2082517 0 0.1053175 0.9552084 -0.2765591 0.1859758 0.244987 0.2446122 0.9381611 -0.01239344 0 0 0 1 0.9667752 -0.148633 -0.2079751 0 0.09952732 0.9682488 -0.2293212 0.1859758 0.2354563 0.2010029 0.9508722 -0.01239344 0 0 0 1 0.9714225 -0.1239483 -0.2024232 0 0.08990577 0.9814221 -0.1694921 0.1859758 0.2196708 0.1464494 0.9645193 -0.01239344 0 0 0 1 0.9762998 -0.09648871 -0.1937231 0 0.07632057 0.9911059 -0.1090152 0.1859758 0.2025189 0.09164646 0.9749805 -0.01239344 0 0 0 1 0.9802415 -0.0767234 -0.1823183 0 0.06600849 0.9957557 -0.06413758 0.1859758 0.1864654 0.05083579 0.9811453 -0.01239344 0 0 0 1 0.9835674 -0.06447369 -0.1686355 0 0.05743401 0.997275 -0.04629973 0.1859758 0.1711611 0.03585349 0.9845905 -0.01239344 0 0 0 1 0.9868991 -0.05466494 -0.1517959 0 0.0462938 0.9972342 -0.0581466 0.1859758 0.1545547 0.05035762 0.9867001 -0.01239344 0 0 0 1 0.9902187 -0.0493054 -0.1305202 0 0.03718609 0.994904 -0.09371567 0.1859758 0.1344758 0.08794548 0.9870065 -0.01239344 0 0 0 1 0.9930277 -0.05152845 -0.1060222 0 0.03641351 0.989502 -0.1398564 0.1859758 0.1121157 0.1350206 0.9844793 -0.01239344 0 0 0 1 0.9953303 -0.05455318 -0.07963319 0 0.03938687 0.9827093 -0.1809166 0.1859758 0.08812588 0.1769353 0.9802693 -0.01239344 0 0 0 1 0.9969676 -0.05646485 -0.05354957 0 0.04428686 0.9775062 -0.2062047 0.1859758 0.06398834 0.2032079 0.9770426 -0.01239344 0 0 0 1 0.9978365 -0.05831321 -0.03036141 0 0.05058504 0.9759639 -0.2119797 0.1859758 0.04199288 0.2099852 0.9768023 -0.01239344 0 0 0 1 0.9980018 -0.06200944 -0.01213509 0 0.05832617 0.9779573 -0.2004919 0.1859758 0.02429999 0.1993835 0.9796202 -0.01239344 0 0 0 1 0.9976005 -0.06923211 9.83924e-5 0 0.06815095 0.9817694 -0.1774378 0.1859758 0.0121878 0.1770188 0.984132 -0.01239344 0 0 0 1 0.9967538 -0.0802328 0.00666517 0 0.08032864 0.9855633 -0.1490375 0.1859758 0.005388748 0.1490891 0.9888091 -0.01239344 0 0 0 1 0.9956195 -0.09302969 0.009334635 0 0.09347709 0.9883843 -0.1198276 0.1859758 0.001921315 0.1201752 0.9927511 -0.01239344 0 0 0 1 0.9945459 -0.1037176 0.01100938 0 0.1042914 0.990289 -0.09192919 0.1859758 -0.001367792 0.092576 0.9957047 -0.01239344 0 0 0 1 0.9940959 -0.1074584 0.01504053 0 0.1082243 0.9919239 -0.0661381 0.1859758 -0.007811967 0.06737536 0.9976971 -0.01239344 0 0 0 1 0.9945819 -0.1011151 0.02413196 0 0.1021098 0.9937844 -0.04433647 0.1859758 -0.01949888 0.04656035 0.9987251 -0.01239344 0 0 0 1 0.9956253 -0.08471231 0.03942145 0 0.08598877 0.9957853 -0.03189402 0.1859758 -0.0365535 0.0351443 0.9987134 -0.01239344 0 0 0 1 0.9962818 -0.06212721 0.05968873 0 0.06445152 0.9972032 -0.03783659 0.1859758 -0.05717113 0.04154291 0.9974996 -0.01239344 0 0 0 1 0.9958954 -0.03943325 0.08147085 0 0.04529051 0.9964229 -0.07134311 0.1859758 -0.07836617 0.07474014 0.9941189 -0.01239344 0 0 0 1 0.9947342 -0.02179123 0.1001427 0 0.03535291 0.9901168 -0.1357154 0.1859758 -0.09619556 0.1385411 0.9856738 -0.01239344 0 0 0 1 0.9937007 -0.0114894 0.111476 0 0.03691736 0.9727677 -0.2288231 0.1859758 -0.1058113 0.231497 0.9670641 -0.01239344 0 0 0 1 0.9935561 -0.008034887 0.1130558 0 0.04301411 0.9495899 -0.3105288 0.1859758 -0.1048616 0.3133909 0.9438167 -0.01239344 0 0 0 1 0.9940068 -0.008705966 0.1089686 0 0.04481702 0.9416535 -0.3335863 0.1859758 -0.09970646 0.3364709 0.9364004 -0.01239344 0 0 0 1 0.9946365 -0.0113261 0.1028121 0 0.04516285 0.9417846 -0.3331695 0.1859758 -0.0930534 0.3360258 0.9372448 -0.01239344 0 0 0 1 0.9953584 -0.01491804 0.09507406 0 0.04429077 0.9480808 -0.3149302 0.1859758 -0.08543976 0.3176794 0.9443411 -0.01239344 0 0 0 1 0.9960486 -0.01905607 0.08674161 0 0.04315625 0.9574926 -0.2852112 0.1859758 -0.07761946 0.2878276 0.9545316 -0.01239344 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Spine_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_Spine_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_Spine_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_Spine_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_Spine_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_Spine_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_Spine_pose_matrix-sampler\" target=\"mixamorig_Spine/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_Spine1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_Spine1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_Spine1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Spine1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_Spine1_pose_matrix-output-array\" count=\"1856\">0.9995906 -0.002965557 0.02846065 -1.86265e-9 0.006444544 0.9923934 -0.1229384 0.2174529 -0.02787958 0.1230714 0.9920061 2.98023e-8 0 0 0 1 0.9995834 0.008442356 0.02759589 -1.86265e-9 -0.005021664 0.9925479 -0.1217525 0.2174529 -0.02841812 0.1215632 0.9921766 2.98023e-8 0 0 0 1 0.9994872 0.01765238 0.02671439 -1.86265e-9 -0.01436046 0.9928193 -0.1187573 0.2174529 -0.02861891 0.1183128 0.9925638 2.98023e-8 0 0 0 1 0.9993851 0.02371806 0.02582598 -1.86265e-9 -0.02063379 0.9932939 -0.113758 0.2174529 -0.02835091 0.1131551 0.9931727 2.98023e-8 0 0 0 1 0.9993446 0.02623234 0.02493786 -1.86265e-9 -0.02342633 0.9940018 -0.1068257 0.2174529 -0.02759056 0.1061715 0.993965 2.98023e-8 0 0 0 1 0.9995965 0.01618037 0.02334912 -1.86265e-9 -0.01397421 0.995685 -0.09173734 0.2174529 -0.02473272 0.09137405 0.9955094 2.98023e-8 0 0 0 1 0.999796 0.004400467 0.01971618 -1.86265e-9 -0.002874838 0.9970462 -0.07675 0.2174529 -0.01999568 0.07667765 0.9968551 2.98023e-8 0 0 0 1 0.9998658 -0.006801773 0.01490828 -1.86265e-9 0.007702255 0.9980959 -0.06120108 0.2174529 -0.01446361 0.0613077 0.998014 2.98023e-8 0 0 0 1 0.9998661 -0.007466803 0.01456224 -1.86265e-9 0.008330351 0.9981533 -0.06017087 0.2174529 -0.01408606 0.06028408 0.998082 2.98023e-8 0 0 0 1 0.9998333 -0.0157216 0.009273502 -1.86265e-9 0.01613034 0.9988211 -0.04578529 0.2174529 -0.00854275 0.04592721 0.9989082 2.98023e-8 0 0 0 1 0.9997663 -0.02144072 0.002798432 -1.86265e-9 0.02152095 0.9992315 -0.03275968 0.2174529 -0.00209389 0.03281224 0.9994593 2.98023e-8 0 0 0 1 0.9997123 -0.02361291 -0.004218928 -1.86265e-9 0.02349988 0.9994092 -0.02508517 0.2174529 0.004808765 0.0249788 0.9996765 2.98023e-8 0 0 0 1 0.9996817 -0.02268686 -0.01103763 -1.86265e-9 0.02241368 0.9994542 -0.02427304 0.2174529 0.01158229 0.02401792 0.9996444 2.98023e-8 0 0 0 1 0.9996639 -0.01980351 -0.01672274 -1.86265e-9 0.01930461 0.9993786 -0.02948618 0.2174529 0.01729627 0.02915342 0.9994253 2.98023e-8 0 0 0 1 0.9996502 -0.01652059 -0.02065958 -1.86265e-9 0.01572683 0.9991536 -0.03801097 0.2174529 0.02127006 0.03767273 0.9990637 2.98023e-8 0 0 0 1 0.9996355 -0.01431491 -0.02288853 -1.86265e-9 0.01323678 0.9988269 -0.04658028 0.2174529 0.02352847 0.04626033 0.9986521 2.98023e-8 0 0 0 1 0.9996136 -0.01395559 -0.02404079 -1.86265e-9 0.01267548 0.9985352 -0.05260073 0.2174529 0.02473965 0.05227564 0.998326 2.98023e-8 0 0 0 1 0.9995742 -0.01510973 -0.02496815 -1.86265e-9 0.01372321 0.9984031 -0.05479932 0.2174529 0.02575628 0.05443333 0.9981852 2.98023e-8 0 0 0 1 0.9995167 -0.01654628 -0.02631116 -1.86265e-9 0.01511979 0.9984523 -0.05352023 0.2174529 0.02715599 0.05309653 0.99822 2.98023e-8 0 0 0 1 0.9994611 -0.0168745 -0.02816025 -1.86265e-9 0.01542752 0.9985877 -0.05083327 0.2174529 0.02897828 0.05037142 0.9983099 2.98023e-8 0 0 0 1 0.9994353 -0.01536964 -0.02988289 -1.86265e-9 0.01385569 0.9986417 -0.0502262 0.2174529 0.03061426 0.04978377 0.9982907 2.98023e-8 0 0 0 1 0.9994679 -0.01231108 -0.03020773 -1.86265e-9 0.01062057 0.9984022 -0.05549882 0.2174529 0.03084272 0.05514844 0.9980015 2.98023e-8 0 0 0 1 0.9995797 -0.008669475 -0.02766233 -1.86265e-9 0.006742872 0.9975942 -0.06899554 0.2174529 0.02819393 0.06878 0.9972333 2.98023e-8 0 0 0 1 0.9997593 -0.005387016 -0.02126991 -1.86265e-9 0.003450918 0.9959326 -0.09003438 0.2174529 0.02166841 0.08993927 0.9957114 2.98023e-8 0 0 0 1 0.9999335 -0.002810776 -0.01116228 -1.86265e-9 0.001513909 0.9934182 -0.1145346 0.2174529 0.01141075 0.1145101 0.9933562 2.98023e-8 0 0 0 1 0.9999989 -6.81468e-4 0.001286605 -1.86265e-9 8.5037e-4 0.9906791 -0.1362137 0.2174529 -0.001181788 0.1362146 0.9906786 2.98023e-8 0 0 0 1 0.9999018 0.00149976 0.01393998 -1.86265e-9 5.94588e-4 0.988832 -0.1490345 0.2174529 -0.01400781 0.1490282 0.9887336 2.98023e-8 0 0 0 1 0.9996865 0.004007372 0.0247176 -1.86265e-9 -2.58285e-4 0.9887086 -0.1498495 0.2174529 -0.02503901 0.1497962 0.9883997 2.98023e-8 0 0 0 1 0.9994563 0.006574085 0.03231121 -1.86265e-9 -0.001996893 0.9901923 -0.1396976 0.2174529 -0.03291269 0.1395571 0.9896668 2.98023e-8 0 0 0 1 0.9992984 0.008494804 0.036479 -1.86265e-9 -0.003942441 0.9923869 -0.1230971 0.2174529 -0.03724695 0.1228668 0.991724 2.98023e-8 0 0 0 1 0.9992443 0.0088485 0.03784979 -1.86265e-9 -0.004800636 0.9943835 -0.1057283 0.2174529 -0.03857274 0.1054667 0.9936743 2.98023e-8 0 0 0 1 0.999277 0.006724667 0.03742209 -1.86265e-9 -0.003270966 0.9957908 -0.09159718 0.2174529 -0.03788054 0.09140852 0.9950926 2.98023e-8 0 0 0 1 0.9993486 0.001403491 0.03605317 -1.86265e-9 0.001530651 0.9966944 -0.08122735 0.2174529 -0.03604799 0.08122967 0.9960433 2.98023e-8 0 0 0 1 0.9993886 -0.007389139 0.03417498 -1.86265e-9 0.009833369 0.9973624 -0.07191543 0.2174529 -0.03355344 0.07220751 0.9968251 2.98023e-8 0 0 0 1 0.9993131 -0.01899555 0.0318165 -1.86265e-9 0.02087864 0.9979838 -0.05993892 0.2174529 -0.03061377 0.06056198 0.9976948 2.98023e-8 0 0 0 1 0.9990881 -0.031498 0.02882506 -1.86265e-9 0.03273054 0.9985243 -0.04333645 0.2174529 -0.02741751 0.04424036 0.9986445 2.98023e-8 0 0 0 1 0.9988005 -0.0420312 0.02510997 -1.86265e-9 0.0426221 0.9988153 -0.02348053 0.2174529 -0.02409331 0.02452259 0.9994088 2.98023e-8 0 0 0 1 0.9986383 -0.04786476 0.0207594 -1.86265e-9 0.04796594 0.9988394 -0.004403546 0.2174529 -0.02052453 0.005393267 0.9997749 2.98023e-8 0 0 0 1 0.9987294 -0.04779159 0.01598465 -1.86265e-9 0.04764219 0.9988183 0.009600073 0.2174529 -0.01642456 -0.00882636 0.9998261 2.98023e-8 0 0 0 1 0.9990208 -0.04285463 0.01100001 -1.86265e-9 0.04267342 0.9989576 0.0162106 0.2174529 -0.01168324 -0.01572533 0.9998081 2.98023e-8 0 0 0 1 0.9993405 -0.0358104 0.005975091 -1.86265e-9 0.03571331 0.9992399 0.01563157 0.2174529 -0.006530324 -0.01540792 0.9998599 2.98023e-8 0 0 0 1 0.9995589 -0.02967883 0.00108067 -1.86265e-9 0.02966713 0.9995136 0.009589642 0.2174529 -0.001364754 -0.009553343 0.9999534 2.98023e-8 0 0 0 1 0.9996483 -0.0262894 -0.003451104 -1.86265e-9 0.02628952 0.9996543 -1.25021e-5 0.2174529 0.003450238 -7.82311e-5 0.999994 2.98023e-8 0 0 0 1 0.9996446 -0.02563236 -0.007337281 -1.86265e-9 0.02554467 0.9996042 -0.01180583 0.2174529 0.007636986 0.01161419 0.9999033 2.98023e-8 0 0 0 1 0.9996027 -0.02622064 -0.01033695 -1.86265e-9 0.02595638 0.9993522 -0.02491975 0.2174529 0.01098367 0.02464153 0.9996358 2.98023e-8 0 0 0 1 0.9995837 -0.02607112 -0.01236303 -1.86265e-9 0.02557504 0.9989228 -0.03871618 0.2174529 0.01335909 0.03838387 0.9991736 2.98023e-8 0 0 0 1 0.9996263 -0.02374714 -0.01353119 -1.86265e-9 0.02300362 0.9983464 -0.05268243 0.2174529 0.01475987 0.05235147 0.9985197 2.98023e-8 0 0 0 1 0.9997184 -0.01908285 -0.01409813 -1.86265e-9 0.01810271 0.9976121 -0.06665206 0.2174529 0.01533638 0.0663781 0.9976767 2.98023e-8 0 0 0 1 0.9998093 -0.01328855 -0.01430919 -1.86265e-9 0.01208617 0.9966355 -0.081065 0.2174529 0.01533828 0.08087657 0.996606 2.98023e-8 0 0 0 1 0.9998626 -0.008416506 -0.0142743 -1.86265e-9 0.006996378 0.9952818 -0.09677394 0.2174529 0.01502144 0.09666075 0.995204 2.98023e-8 0 0 0 1 0.9998815 -0.006415635 -0.01398277 -1.86265e-9 0.004776147 0.9934371 -0.1142799 0.2174529 0.01462418 0.1141995 0.9933502 2.98023e-8 0 0 0 1 0.9998755 -0.008216348 -0.01345799 -1.86265e-9 0.006354611 0.9911008 -0.1329623 0.2174529 0.01443068 0.1328602 0.9910297 2.98023e-8 0 0 0 1 0.9998263 -0.01342206 -0.01292968 -1.86265e-9 0.01131772 0.9884777 -0.1509429 0.2174529 0.01480666 0.1507703 0.988458 2.98023e-8 0 0 0 1 0.9997005 -0.02080887 -0.01287892 -1.86265e-9 0.01839009 0.9860149 -0.1656402 0.2174529 0.01614559 0.1653537 0.986102 2.98023e-8 0 0 0 1 0.999476 -0.02922029 -0.013927 -1.86265e-9 0.02634109 0.9842665 -0.1747156 0.2174529 0.01881312 0.1742572 0.9845203 2.98023e-8 0 0 0 1 0.9991386 -0.03802541 -0.01660521 -1.86265e-9 0.0344945 0.9836208 -0.1769193 0.2174529 0.02306066 0.1761941 0.9840853 2.98023e-8 0 0 0 1 0.998666 -0.04713687 -0.02108571 -1.86265e-9 0.04280511 0.9840724 -0.1725376 0.2174529 0.02888274 0.1714048 0.9847772 2.98023e-8 0 0 0 1 0.9980567 -0.05618698 -0.0269485 -1.86265e-9 0.0510679 0.9853037 -0.1629995 0.2174529 0.03571091 0.1613065 0.986258 2.98023e-8 0 0 0 1 0.9973811 -0.06426886 -0.03317677 -1.86265e-9 0.05859053 0.9868901 -0.1503831 0.2174529 0.04240679 0.1480454 0.9880709 2.98023e-8 0 0 0 1 0.9967955 -0.07013906 -0.03845943 -1.86265e-9 0.06427611 0.9885058 -0.136838 0.2174529 0.04761506 0.1339275 0.9898465 2.98023e-8 0 0 0 1 0.996481 -0.07270895 -0.04169804 -1.86265e-9 0.06704513 0.9900069 -0.124062 0.2174529 0.05030176 0.1208298 0.9913977 2.98023e-8 0 0 0 1 0.9965131 -0.07182772 -0.04245115 -1.86265e-9 0.06664731 0.9913684 -0.1129015 0.2174529 0.05019418 0.1096786 0.9926988 2.98023e-8 0 0 0 1 0.996819 -0.06831917 -0.04103569 -1.86265e-9 0.06378996 0.9926292 -0.1030451 0.2174529 0.04777317 0.1000996 0.9938298 2.98023e-8 0 0 0 1 0.9972293 -0.06379575 -0.03826171 -1.86265e-9 0.05999687 0.9938254 -0.09333593 0.2174529 0.04397989 0.09078172 0.9948992 2.98023e-8 0 0 0 1 0.9975839 -0.06003677 -0.0349532 -1.86265e-9 0.05698226 0.9949483 -0.08264995 0.2174529 0.03973865 0.08045855 0.9959654 2.98023e-8 0 0 0 1 0.9978073 -0.05820107 -0.03151218 -1.86265e-9 0.05584862 0.9959124 -0.07098825 0.2174529 0.03551496 0.06907268 0.9969791 2.98023e-8 0 0 0 1 0.9979236 -0.058117 -0.02776437 -1.86265e-9 0.05637223 0.9966081 -0.05995719 0.2174529 0.03115471 0.05826756 0.9978148 2.98023e-8 0 0 0 1 0.9980387 -0.05814679 -0.02318911 -1.86265e-9 0.05687691 0.9970208 -0.05210218 0.2174529 0.02614959 0.05068104 0.9983725 2.98023e-8 0 0 0 1 0.9982872 -0.05586153 -0.01738716 -1.86265e-9 0.05494206 0.9972622 -0.04949738 0.2174529 0.02010454 0.04845728 0.9986231 2.98023e-8 0 0 0 1 0.998726 -0.04936603 -0.01045877 -1.86265e-9 0.04875145 0.9974273 -0.05255607 0.2174529 0.01302635 0.05197921 0.998563 2.98023e-8 0 0 0 1 0.9992622 -0.03829182 -0.003000135 -1.86265e-9 0.03804435 0.9974867 -0.05977219 0.2174529 0.00528138 0.05961393 0.9982073 2.98023e-8 0 0 0 1 0.9997056 -0.02388309 0.004279373 -1.86265e-9 0.02412006 0.9973647 -0.06842427 0.2174529 -0.002633914 0.06850733 0.9976469 2.98023e-8 0 0 0 1 0.9999052 -0.008272302 0.0110033 -1.86265e-9 0.009081444 0.9970936 -0.07564311 0.2174529 -0.01034558 0.07573587 0.9970742 2.98023e-8 0 0 0 1 0.999831 0.006381026 0.01724389 -1.86265e-9 -0.004995121 0.996842 -0.07925124 0.2174529 -0.01769514 0.07915168 0.9967054 2.98023e-8 0 0 0 1 0.9995615 0.01840763 0.02319575 -1.86265e-9 -0.01654181 0.9967997 -0.07821111 0.2174529 -0.0245612 0.07779314 0.9966668 2.98023e-8 0 0 0 1 0.9992304 0.02677468 0.02866458 -1.86265e-9 -0.02462714 0.9970413 -0.07281691 0.2174529 -0.03052941 0.07205494 0.9969334 2.98023e-8 0 0 0 1 0.9989786 0.03108683 0.03279589 -1.86265e-9 -0.02891589 0.9974847 -0.06471221 0.2174529 -0.03472511 0.06369776 0.9973647 2.98023e-8 0 0 0 1 0.9989105 0.03165869 0.03428894 -1.86265e-9 -0.02968219 0.9979501 -0.05669332 0.2174529 -0.0360135 0.05561374 0.9978026 2.98023e-8 0 0 0 1 0.9990551 0.02946496 0.0319486 -1.86265e-9 -0.02777262 0.9982516 -0.05217919 0.2174529 -0.03343019 0.05124258 0.9981265 2.98023e-8 0 0 0 1 0.9993505 0.02576218 0.02520362 -1.86265e-9 -0.02436345 0.9982268 -0.05431272 0.2174529 -0.02655814 0.05366337 0.9982059 2.98023e-8 0 0 0 1 0.9996659 0.02151011 0.01432045 -1.86265e-9 -0.0205397 0.9976887 -0.0647715 0.2174529 -0.01568059 0.06445573 0.9977973 2.98023e-8 0 0 0 1 0.9998552 0.01701775 3.0433e-4 -1.86265e-9 -0.01693434 0.996433 -0.08267152 0.2174529 -0.001710127 0.08265437 0.9965767 2.98023e-8 0 0 0 1 0.9998091 0.01207059 -0.01536368 -1.86265e-9 -0.01360797 0.994458 -0.1042507 0.2174529 0.01402016 0.1044398 0.9944323 2.98023e-8 0 0 0 1 0.9994985 0.006282432 -0.03103728 -1.86265e-9 -0.01008427 0.9922435 -0.1238997 0.2174529 0.03001815 0.1241505 0.9918091 2.98023e-8 0 0 0 1 0.9989778 -7.18368e-4 -0.04519252 -1.86265e-9 -0.005455911 0.9906457 -0.1363495 0.2174529 0.04486773 0.1364568 0.9896293 2.98023e-8 0 0 0 1 0.9983521 -0.00917876 -0.05664645 -1.86265e-9 0.001225661 0.9903104 -0.1388645 0.2174529 0.05737219 0.1385663 0.9886898 2.98023e-8 0 0 0 1 0.9977217 -0.01912716 -0.06469415 -1.86265e-9 0.01043817 0.9911854 -0.1320702 0.2174529 0.06665004 0.131094 0.9891267 2.98023e-8 0 0 0 1 0.9971492 -0.03015513 -0.06916585 -1.86265e-9 0.02175714 0.9926432 -0.1191072 0.2174529 0.07224867 0.1172628 0.9904694 2.98023e-8 0 0 0 1 0.9966679 -0.04119413 -0.07040118 -1.86265e-9 0.03375315 0.9940257 -0.1037958 0.2174529 0.07425634 0.1010736 0.992104 2.98023e-8 0 0 0 1 0.9963182 -0.05069836 -0.06913394 -1.86265e-9 0.0444711 0.9950547 -0.08881703 0.2174529 0.07329492 0.08541556 0.9936458 2.98023e-8 0 0 0 1 0.9961649 -0.05712909 -0.06627131 -1.86265e-9 0.05212274 0.9958235 -0.07495922 0.2174529 0.07027688 0.07121745 0.9949818 2.98023e-8 0 0 0 1 0.996259 -0.0595771 -0.06260092 -1.86265e-9 0.05571818 0.9965398 -0.06167941 0.2174529 0.06605898 0.05796066 0.9961306 2.98023e-8 0 0 0 1 0.9965919 -0.05812851 -0.05853149 -1.86265e-9 0.05532672 0.9972942 -0.04840297 0.2174529 0.06118672 0.04499963 0.9971114 2.98023e-8 0 0 0 1 0.9970817 -0.05394546 -0.05401774 -1.86265e-9 0.05206706 0.998009 -0.03559808 0.2174529 0.05583053 0.03268166 0.9979052 2.98023e-8 0 0 0 1 0.9976134 -0.04890654 -0.04874118 -1.86265e-9 0.0477371 0.9985502 -0.02487555 0.2174529 0.04988709 0.02248941 0.9985014 2.98023e-8 0 0 0 1 0.9980894 -0.0448914 -0.04245087 -1.86265e-9 0.04415277 0.9988595 -0.01818015 0.2174529 0.04321857 0.01627107 0.9989332 2.98023e-8 0 0 0 1 0.9984518 -0.04303902 -0.03523863 -1.86265e-9 0.04246909 0.998957 -0.01676571 0.2174529 0.03592345 0.01524319 0.9992384 2.98023e-8 0 0 0 1 0.9986814 -0.04330334 -0.02757186 -1.86265e-9 0.0427409 0.9988723 -0.02067219 0.2174529 0.02843593 0.01946646 0.9994061 2.98023e-8 0 0 0 1 0.9988071 -0.04449997 -0.02009705 -1.86265e-9 0.04391099 0.9986187 -0.02885444 0.2174529 0.02135331 0.02793756 0.9993814 2.98023e-8 0 0 0 1 0.998903 -0.0448728 -0.01338872 -1.86265e-9 0.04431129 0.9982311 -0.0396411 0.2174529 0.01514384 0.03900431 0.9991243 2.98023e-8 0 0 0 1 0.9990503 -0.04286795 -0.007786106 -1.86265e-9 0.04241466 0.9977869 -0.05120657 0.2174529 0.009963997 0.0508277 0.9986575 2.98023e-8 0 0 0 1 0.9992729 -0.0379747 -0.003353231 -1.86265e-9 0.03769454 0.9973687 -0.0619217 0.2174529 0.005695864 0.06175025 0.9980753 2.98023e-8 0 0 0 1 0.9995124 -0.03122708 1.02638e-4 -1.86265e-9 0.03115643 0.9970192 -0.07058281 0.2174529 0.002101764 0.0705516 0.9975057 2.98023e-8 0 0 0 1 0.9996847 -0.02493078 0.00299998 -1.86265e-9 0.02508735 0.9967486 -0.07656848 0.2174529 -0.001081314 0.07661957 0.9970597 2.98023e-8 0 0 0 1 0.9997502 -0.02154879 0.005930105 -1.86265e-9 0.02195445 0.9965523 -0.08000955 0.2174529 -0.004185552 0.08011977 0.9967764 2.98023e-8 0 0 0 1 0.9997015 -0.02250207 0.009509191 -1.86265e-9 0.02320578 0.9963741 -0.08185643 0.2174529 -0.007632772 0.08205263 0.9965987 2.98023e-8 0 0 0 1 0.9995227 -0.02748277 0.01411417 -1.86265e-9 0.02856969 0.9960839 -0.08366896 0.2174529 -0.01175945 0.08403227 0.9963934 2.98023e-8 0 0 0 1 0.9992066 -0.03468299 0.01958999 -1.86265e-9 0.03626208 0.995546 -0.0870229 0.2174529 -0.01648453 0.08766419 0.9960136 2.98023e-8 0 0 0 1 0.998816 -0.04165786 0.02512749 -1.86265e-9 0.04382085 0.9947233 -0.09276348 0.2174529 -0.02113058 0.09375474 0.9953709 2.98023e-8 0 0 0 1 0.9984909 -0.04631283 0.02951318 -1.86265e-9 0.04906398 0.9937202 -0.1005636 0.2174529 -0.02467046 0.1018598 0.9944929 2.98023e-8 0 0 0 1 0.9983624 -0.04767854 0.03161393 -1.86265e-9 0.05086733 0.9927154 -0.1092168 0.2174529 -0.02617634 0.110646 0.993515 2.98023e-8 0 0 0 1 0.9984998 -0.04479637 0.03148429 -1.86265e-9 0.04817306 0.9920487 -0.1162674 0.2174529 -0.02602561 0.1176096 0.9927187 2.98023e-8 0 0 0 1 0.9988334 -0.03717681 0.03082079 -1.86265e-9 0.04060886 0.9920085 -0.1194573 0.2174529 -0.02613345 0.1205696 0.9923609 2.98023e-8 0 0 0 1 0.9991804 -0.02707286 0.03008937 -1.86265e-9 0.03054239 0.9921125 -0.1215726 0.2174529 -0.02656072 0.122392 0.9921261 2.98023e-8 0 0 0 1 0.9994546 -0.01524234 0.02929689 -1.86265e-9 0.01873103 0.9922597 -0.1227589 0.2174529 -0.02719899 0.1232406 0.9920039 2.98023e-8 0 0 0 1 0.9995906 -0.002965557 0.02846065 -1.86265e-9 0.006444544 0.9923934 -0.1229384 0.2174529 -0.02787958 0.1230714 0.9920061 2.98023e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Spine1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_Spine1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_Spine1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_Spine1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_Spine1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_Spine1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_Spine1_pose_matrix-sampler\" target=\"mixamorig_Spine1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_Spine2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_Spine2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_Spine2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Spine2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_Spine2_pose_matrix-output-array\" count=\"1856\">0.9995998 -0.003034242 0.02812797 -7.45058e-9 0.006473606 0.992385 -0.1230049 0.248517 -0.02754054 0.1231377 0.9920075 5.96046e-8 0 0 0 1 0.9996132 0.008219581 0.02657254 -7.45058e-9 -0.004918545 0.9925198 -0.1219849 0.248517 -0.02737644 0.1218071 0.9921761 5.96046e-8 0 0 0 1 0.9995338 0.0172932 0.0251615 -7.45058e-9 -0.01417768 0.9927786 -0.1191205 0.248517 -0.02703977 0.1187083 0.9925607 5.96046e-8 0 0 0 1 0.9994414 0.02326373 0.02398596 -7.45058e-9 -0.02037876 0.9932483 -0.1142033 0.248517 -0.0264808 0.1136508 0.9931678 5.96046e-8 0 0 0 1 0.9994019 0.02573852 0.02309257 -7.45058e-9 -0.02311901 0.9939579 -0.1072994 0.248517 -0.02571478 0.1067013 0.9939584 5.96046e-8 0 0 0 1 0.9996243 0.01579928 0.02239071 -7.45058e-9 -0.013675 0.9956613 -0.09204081 0.248517 -0.02374774 0.09170005 0.9955034 5.96046e-8 0 0 0 1 0.9998008 0.004184066 0.01951627 -7.45058e-9 -0.002672317 0.9970389 -0.0768531 0.248517 -0.01978004 0.07678562 0.9968512 5.96046e-8 0 0 0 1 0.9998592 -0.006863377 0.01531896 -7.45058e-9 0.007788162 0.9980984 -0.0611487 0.248517 -0.01487014 0.06125939 0.9980112 5.96046e-8 0 0 0 1 0.999859 -0.007520568 0.01500852 -7.45058e-9 0.008410073 0.9981563 -0.06011131 0.248517 -0.01452877 0.06022906 0.9980786 5.96046e-8 0 0 0 1 0.9998249 -0.01570727 0.0101744 -7.45058e-9 0.01615632 0.9988259 -0.04566944 0.248517 -0.00944512 0.04582578 0.9989047 5.96046e-8 0 0 0 1 0.9997612 -0.02147027 0.004082534 -7.45058e-9 0.02159237 0.9992327 -0.03267908 0.248517 -0.003377767 0.03275937 0.9994574 5.96046e-8 0 0 0 1 0.9997131 -0.02379219 -0.002688624 -7.45058e-9 0.02371729 0.9994032 -0.02510998 0.248517 0.003284439 0.02503902 0.9996809 5.96046e-8 0 0 0 1 0.9996897 -0.02305229 -0.009434691 -7.45058e-9 0.02281605 0.9994412 -0.02442381 0.248517 0.00999245 0.02420098 0.9996569 5.96046e-8 0 0 0 1 0.9996779 -0.02030644 -0.01522507 -7.45058e-9 0.0198471 0.9993606 -0.02973753 0.248517 0.0158192 0.0294258 0.9994416 5.96046e-8 0 0 0 1 0.9996662 -0.01706099 -0.01939317 -7.45058e-9 0.01630858 0.9991325 -0.03831574 0.248517 0.02003004 0.03798661 0.9990776 5.96046e-8 0 0 0 1 0.9996508 -0.0147976 -0.02188888 -7.45058e-9 0.01375817 0.998805 -0.04689828 0.248517 0.0225567 0.04658076 0.9986598 5.96046e-8 0 0 0 1 0.9996267 -0.01433501 -0.02325543 -7.45058e-9 0.01308801 0.9985132 -0.0529153 0.248517 0.0239794 0.05259123 0.9983282 5.96046e-8 0 0 0 1 0.999586 -0.01540108 -0.02430375 -7.45058e-9 0.01404251 0.9983814 -0.05511349 0.248517 0.02511321 0.05474943 0.9981841 5.96046e-8 0 0 0 1 0.9995287 -0.01680255 -0.02569217 -7.45058e-9 0.01540022 0.9984308 -0.05383849 0.248517 0.02655649 0.05341744 0.9982188 5.96046e-8 0 0 0 1 0.9994729 -0.01714479 -0.02756599 -7.45058e-9 0.01571863 0.9985672 -0.05114591 0.248517 0.02840339 0.05068561 0.9983106 5.96046e-8 0 0 0 1 0.9994467 -0.01566587 -0.02934244 -7.45058e-9 0.01417017 0.9986232 -0.05050644 0.248517 0.03009327 0.05006269 0.9982927 5.96046e-8 0 0 0 1 0.9994774 -0.01260319 -0.02976768 -7.45058e-9 0.01093009 0.9983869 -0.0557144 0.248517 0.03042185 0.0553599 0.9980027 5.96046e-8 0 0 0 1 0.9995861 -0.008917823 -0.02734846 -7.45058e-9 0.007008673 0.9975833 -0.06912625 0.248517 0.02789883 0.06890598 0.9972328 5.96046e-8 0 0 0 1 0.9997624 -0.005585083 -0.02107331 -7.45058e-9 0.003664851 0.9959272 -0.09008369 0.248517 0.02149061 0.08998498 0.9957112 5.96046e-8 0 0 0 1 0.9999345 -0.003003427 -0.01105374 -7.45058e-9 0.001717811 0.9934185 -0.1145281 0.248517 0.01132498 0.1145015 0.9933587 5.96046e-8 0 0 0 1 0.9999986 -9.40311e-4 0.001335252 -7.45058e-9 0.001113397 0.9906824 -0.1361878 0.248517 -0.001194749 0.1361891 0.9906819 5.96046e-8 0 0 0 1 0.9999021 0.00113371 0.01393912 -7.45058e-9 9.56285e-4 0.9888334 -0.1490223 0.248517 -0.01395241 0.149021 0.9887356 5.96046e-8 0 0 0 1 0.9996895 0.003565695 0.02466064 -7.45058e-9 1.70566e-4 0.9887055 -0.1498717 0.248517 -0.0249165 0.1498294 0.9883978 5.96046e-8 0 0 0 1 0.9994626 0.006141426 0.03219759 -7.45058e-9 -0.001582168 0.9901847 -0.1397564 0.248517 -0.03273986 0.1396303 0.9896621 5.96046e-8 0 0 0 1 0.9993067 0.008142974 0.0363289 -7.45058e-9 -0.003608646 0.9923785 -0.1231737 0.248517 -0.03705502 0.1229572 0.99172 5.96046e-8 0 0 0 1 0.9992519 0.00858645 0.03770839 -7.45058e-9 -0.004552642 0.9943784 -0.1057842 0.248517 -0.03840474 0.1055334 0.9936739 5.96046e-8 0 0 0 1 0.9992805 0.006509747 0.03736581 -7.45058e-9 -0.003062699 0.9957932 -0.09157759 0.248517 -0.03780475 0.09139729 0.9950966 5.96046e-8 0 0 0 1 0.9993434 0.001209356 0.03620824 -7.45058e-9 0.001731105 0.9967071 -0.08106828 0.248517 -0.03618703 0.08107772 0.9960506 5.96046e-8 0 0 0 1 0.9993685 -0.007510914 0.03473211 -7.45058e-9 0.00998275 0.997387 -0.07155201 0.248517 -0.03410394 0.07185349 0.996832 5.96046e-8 0 0 0 1 0.9992765 -0.0189112 0.03299785 -7.45058e-9 0.02084656 0.9980208 -0.05932817 0.248517 -0.03181057 0.05997315 0.9976929 5.96046e-8 0 0 0 1 0.9990426 -0.03106618 0.03079483 -7.45058e-9 0.03236111 0.9985729 -0.04248407 0.248517 -0.02943106 0.04343998 0.9986222 5.96046e-8 0 0 0 1 0.9987621 -0.04120376 0.02786592 -7.45058e-9 0.04183496 0.9988719 -0.02246061 0.248517 -0.02690902 0.02359858 0.9993591 5.96046e-8 0 0 0 1 0.9986164 -0.04674594 0.02407941 -7.45058e-9 0.0468398 0.9988967 -0.003348649 0.248517 -0.0238963 0.004471898 0.9997044 5.96046e-8 0 0 0 1 0.9987231 -0.04660753 0.01948994 -7.45058e-9 0.04640854 0.9988669 0.01054078 0.248517 -0.01995913 -0.009622812 0.9997545 5.96046e-8 0 0 0 1 0.9990211 -0.04185885 0.01430608 -7.45058e-9 0.04161522 0.9989903 0.01692358 0.248517 -0.01500003 -0.01631168 0.9997545 5.96046e-8 0 0 0 1 0.9993418 -0.03518445 0.008835733 -7.45058e-9 0.03503939 0.9992567 0.01606923 0.248517 -0.009394553 -0.01574907 0.9998318 5.96046e-8 0 0 0 1 0.9995594 -0.02947504 0.003443614 -7.45058e-9 0.02944019 0.9995188 0.009766698 0.248517 -0.003729833 -0.009661019 0.9999462 5.96046e-8 0 0 0 1 0.9996492 -0.02643287 -0.001488607 -7.45058e-9 0.02643283 0.9996505 -4.49717e-5 0.248517 0.001489276 5.63264e-6 0.9999986 5.96046e-8 0 0 0 1 0.9996467 -0.02596759 -0.005622689 -7.45058e-9 0.02589875 0.9995925 -0.0119881 0.248517 0.0059317 0.01183826 0.999912 5.96046e-8 0 0 0 1 0.9996087 -0.02657123 -0.008747807 -7.45058e-9 0.02634347 0.9993351 -0.02519691 0.248517 0.00941151 0.02495661 0.999644 5.96046e-8 0 0 0 1 0.9995954 -0.02629531 -0.01085105 -7.45058e-9 0.0258533 0.9989032 -0.03904021 0.248517 0.01186573 0.03874385 0.9991786 5.96046e-8 0 0 0 1 0.999644 -0.0237656 -0.0121274 -7.45058e-9 0.02309121 0.9983269 -0.05300868 0.248517 0.0133669 0.05270973 0.9985204 5.96046e-8 0 0 0 1 0.9997388 -0.01888276 -0.01288949 -7.45058e-9 0.01797922 0.9975951 -0.06694064 0.248517 0.01412252 0.06669137 0.9976737 5.96046e-8 0 0 0 1 0.999827 -0.01290491 -0.01339984 -7.45058e-9 0.01177413 0.9966212 -0.08128619 0.248517 0.01440356 0.08111432 0.9966006 5.96046e-8 0 0 0 1 0.9998742 -0.007905812 -0.01373455 -7.45058e-9 0.006538151 0.995271 -0.09691608 0.248517 0.01443579 0.09681416 0.9951976 5.96046e-8 0 0 0 1 0.9998876 -0.005834409 -0.01380186 -7.45058e-9 0.00421828 0.9934314 -0.1143527 0.248517 0.01437837 0.1142816 0.9933444 5.96046e-8 0 0 0 1 0.9998792 -0.007603755 -0.01353506 -7.45058e-9 0.005736723 0.9911004 -0.1329923 0.248517 0.01442584 0.1328986 0.9910246 5.96046e-8 0 0 0 1 0.999832 -0.01279166 -0.01311109 -7.45058e-9 0.01066684 0.988482 -0.1509624 0.248517 0.01489114 0.1507972 0.9884523 5.96046e-8 0 0 0 1 0.9997123 -0.02014568 -0.01302494 -7.45058e-9 0.01771116 0.9860202 -0.1656811 0.248517 0.01618061 0.1654027 0.9860933 5.96046e-8 0 0 0 1 0.9994968 -0.02848404 -0.01395776 -7.45058e-9 0.0256089 0.984269 -0.17481 0.248517 0.01871749 0.1743646 0.9845032 5.96046e-8 0 0 0 1 0.9991726 -0.0371577 -0.01652114 -7.45058e-9 0.03365082 0.9836168 -0.1771034 0.248517 0.02283123 0.1764009 0.9840536 5.96046e-8 0 0 0 1 0.9987187 -0.0460712 -0.02093684 -7.45058e-9 0.04177142 0.9840614 -0.172853 0.248517 0.02856668 0.1717569 0.984725 5.96046e-8 0 0 0 1 0.9981328 -0.05487098 -0.0268364 -7.45058e-9 0.04976964 0.9852907 -0.1634781 0.248517 0.03541185 0.1618372 0.986182 5.96046e-8 0 0 0 1 0.9974799 -0.06268823 -0.03322919 -7.45058e-9 0.05699122 0.9868852 -0.1510273 0.248517 0.04226104 0.1487529 0.9879709 5.96046e-8 0 0 0 1 0.9969079 -0.06833425 -0.03879192 -7.45058e-9 0.06240451 0.988519 -0.1376093 0.248517 0.04774997 0.1347631 0.9897267 5.96046e-8 0 0 0 1 0.9965915 -0.07077736 -0.04237366 -7.45058e-9 0.06500196 0.9900391 -0.1248884 0.248517 0.05079085 0.1217084 0.9912655 5.96046e-8 0 0 0 1 0.9966081 -0.06990945 -0.04341574 -7.45058e-9 0.06459158 0.9914126 -0.113706 0.248517 0.05099203 0.110516 0.9925653 5.96046e-8 0 0 0 1 0.9968928 -0.06657758 -0.04209986 -7.45058e-9 0.06191328 0.9926721 -0.1037726 0.248517 0.0487003 0.1008436 0.9937095 5.96046e-8 0 0 0 1 0.9972848 -0.06238494 -0.03913118 -7.45058e-9 0.0584835 0.9938563 -0.09396505 0.248517 0.04475276 0.09142137 0.9948062 5.96046e-8 0 0 0 1 0.9976293 -0.05906386 -0.03531689 -7.45058e-9 0.05596099 0.9949614 -0.08318788 0.248517 0.04005234 0.08101431 0.9959078 5.96046e-8 0 0 0 1 0.9978479 -0.05769106 -0.03116087 -7.45058e-9 0.05534753 0.9959069 -0.07145283 0.248517 0.03515552 0.06957436 0.9969571 5.96046e-8 0 0 0 1 0.9979596 -0.0579994 -0.02669816 -7.45058e-9 0.05630497 0.9965876 -0.06035614 0.248517 0.03010768 0.05872974 0.9978197 5.96046e-8 0 0 0 1 0.9980655 -0.05827557 -0.02166007 -7.45058e-9 0.05707522 0.9969923 -0.05242392 0.248517 0.02464997 0.05108631 0.99839 5.96046e-8 0 0 0 1 0.9983009 -0.05607204 -0.01584119 -7.45058e-9 0.05522321 0.9972354 -0.04972026 0.248517 0.01858531 0.04876095 0.9986375 5.96046e-8 0 0 0 1 0.9987281 -0.04953759 -0.009387724 -7.45058e-9 0.04897706 0.99741 -0.05267644 0.248517 0.01197287 0.05214965 0.9985675 5.96046e-8 0 0 0 1 0.9992591 -0.03838967 -0.002772011 -7.45058e-9 0.03815532 0.9974791 -0.05982947 0.248517 0.005061856 0.05967939 0.9982048 5.96046e-8 0 0 0 1 0.9997069 -0.02395576 0.003528655 -7.45058e-9 0.02414131 0.9973585 -0.06850773 0.248517 -0.00187818 0.06857282 0.9976445 5.96046e-8 0 0 0 1 0.9999206 -0.008411947 0.009373087 -7.45058e-9 0.00909928 0.9970754 -0.07587743 0.248517 -0.008707393 0.07595664 0.9970731 5.96046e-8 0 0 0 1 0.9998691 0.006092944 0.01499294 -7.45058e-9 -0.004878176 0.9968019 -0.07976535 0.248517 -0.01543099 0.07968181 0.9967011 5.96046e-8 0 0 0 1 0.9996258 0.01794361 0.02064032 -7.45058e-9 -0.01625849 0.9967342 -0.07909769 0.248517 -0.02199221 0.07873249 0.9966531 5.96046e-8 0 0 0 1 0.9993169 0.02617617 0.02608714 -7.45058e-9 -0.02418032 0.9969584 -0.07408822 0.248517 -0.02794715 0.07340679 0.9969103 5.96046e-8 0 0 0 1 0.9990744 0.0304489 0.03038441 -7.45058e-9 -0.02838221 0.9973978 -0.06627446 0.248517 -0.03232332 0.0653508 0.9973388 5.96046e-8 0 0 0 1 0.9990011 0.03109022 0.03209797 -7.45058e-9 -0.02918012 0.9978695 -0.0583528 0.248517 -0.03384378 0.05735794 0.9977797 5.96046e-8 0 0 0 1 0.9991312 0.02904771 0.02988468 -7.45058e-9 -0.02741425 0.9981812 -0.05368829 0.248517 -0.03138984 0.05282232 0.9981104 5.96046e-8 0 0 0 1 0.9994081 0.02553103 0.02304944 -7.45058e-9 -0.02422086 0.9981685 -0.05543473 0.248517 -0.02442252 0.05484363 0.9981961 5.96046e-8 0 0 0 1 0.9997 0.02145896 0.0118085 -7.45058e-9 -0.02064324 0.9976499 -0.06533274 0.248517 -0.01318271 0.06506935 0.9977936 5.96046e-8 0 0 0 1 0.9998496 0.01712071 -0.002771858 -7.45058e-9 -0.01729117 0.9964339 -0.08258688 0.248517 0.001348022 0.08262241 0.9965799 5.96046e-8 0 0 0 1 0.9997428 0.01230113 -0.01904203 -7.45058e-9 -0.01420886 0.9945248 -0.1035309 0.248517 0.01766422 0.1037748 0.9944438 5.96046e-8 0 0 0 1 0.999361 0.006606986 -0.03512669 -7.45058e-9 -0.01087202 0.9923903 -0.1226524 0.248517 0.03404902 0.1229559 0.9918278 5.96046e-8 0 0 0 1 0.9987841 -3.50961e-4 -0.04929619 -7.45058e-9 -0.00630377 0.9908563 -0.1347742 0.248517 0.04889274 0.1349211 0.9896494 5.96046e-8 0 0 0 1 0.9981424 -0.00882959 -0.06028149 -7.45058e-9 4.74546e-4 0.9905391 -0.1372295 0.248517 0.06092284 0.1369459 0.9887033 5.96046e-8 0 0 0 1 0.9975442 -0.01882767 -0.06746213 -7.45058e-9 0.009874823 0.9913777 -0.1306624 0.248517 0.06934053 0.1296754 0.9891289 5.96046e-8 0 0 0 1 0.9970366 -0.02987022 -0.07089344 -7.45058e-9 0.02134014 0.9927645 -0.118166 0.248517 0.07391013 0.116303 0.9904599 5.96046e-8 0 0 0 1 0.9966272 -0.04083015 -0.07118423 -7.45058e-9 0.03333658 0.9940758 -0.1034515 0.248517 0.07498647 0.1007295 0.9920837 5.96046e-8 0 0 0 1 0.9963365 -0.05017311 -0.06925356 -7.45058e-9 0.0439177 0.9950567 -0.0890682 0.248517 0.07338006 0.08570042 0.993615 5.96046e-8 0 0 0 1 0.9962184 -0.05646394 -0.0660332 -7.45058e-9 0.05142357 0.9958047 -0.07568818 0.248517 0.07002982 0.07200629 0.9949427 5.96046e-8 0 0 0 1 0.9963229 -0.05893413 -0.06219023 -7.45058e-9 0.05503171 0.996514 -0.06270042 0.248517 0.06566864 0.05904743 0.9960929 5.96046e-8 0 0 0 1 0.9966466 -0.05775841 -0.05796079 -7.45058e-9 0.05491439 0.9972625 -0.04951712 0.248517 0.06066216 0.04616824 0.9970899 5.96046e-8 0 0 0 1 0.9971204 -0.05405908 -0.05318038 -7.45058e-9 0.0521508 0.9979666 -0.03664008 0.248517 0.05505298 0.03376117 0.9979125 5.96046e-8 0 0 0 1 0.9976401 -0.04955935 -0.04752021 -7.45058e-9 0.04837574 0.9984974 -0.02574301 0.248517 0.0487246 0.02338344 0.9985384 5.96046e-8 0 0 0 1 0.9981097 -0.04594969 -0.04081264 -7.45058e-9 0.04521125 0.9987999 -0.01883602 0.248517 0.04162917 0.01695517 0.9989892 5.96046e-8 0 0 0 1 0.9984667 -0.04424442 -0.03326637 -7.45058e-9 0.04368975 0.9988967 -0.01722026 0.248517 0.03399157 0.01574051 0.9992982 5.96046e-8 0 0 0 1 0.9986902 -0.04438986 -0.02544423 -7.45058e-9 0.04386156 0.9988176 -0.02095869 0.248517 0.0263445 0.01981524 0.9994565 5.96046e-8 0 0 0 1 0.9988108 -0.04529095 -0.01804694 -7.45058e-9 0.04475611 0.9985765 -0.02901283 0.248517 0.01933527 0.02817065 0.999416 5.96046e-8 0 0 0 1 0.9989043 -0.04531962 -0.01166025 -7.45058e-9 0.04482433 0.9982053 -0.03971156 0.248517 0.01343904 0.03914544 0.9991429 5.96046e-8 0 0 0 1 0.999052 -0.04302759 -0.006594282 -7.45058e-9 0.04263449 0.9977764 -0.05122983 0.248517 0.008783915 0.0509001 0.9986649 5.96046e-8 0 0 0 1 0.9992753 -0.03795931 -0.002841335 -7.45058e-9 0.03771073 0.9973673 -0.06193766 0.248517 0.005184971 0.06178561 0.9980758 5.96046e-8 0 0 0 1 0.9995146 -0.03115505 -9.63658e-5 -7.45058e-9 0.03107046 0.9970189 -0.07062516 0.248517 0.002296416 0.07058787 0.9975029 5.96046e-8 0 0 0 1 0.9996873 -0.02490279 0.002199028 -7.45058e-9 0.02499809 0.9967444 -0.07665068 0.248517 -2.83049e-4 0.07668167 0.9970555 5.96046e-8 0 0 0 1 0.9997545 -0.02164073 0.00476294 -7.45058e-9 0.0219529 0.9965439 -0.08011228 0.248517 -0.003012788 0.08019719 0.9967745 5.96046e-8 0 0 0 1 0.9997064 -0.02276559 0.008292474 -7.45058e-9 0.02336904 0.9963646 -0.08192381 0.248517 -0.006397277 0.08209354 0.996604 5.96046e-8 0 0 0 1 0.9995226 -0.0279346 0.01318206 -7.45058e-9 0.02894116 0.9960769 -0.08362368 0.248517 -0.01079435 0.08396527 0.99641 5.96046e-8 0 0 0 1 0.9991922 -0.03528563 0.0192235 -7.45058e-9 0.03682671 0.9955451 -0.08679718 0.248517 -0.01607516 0.08743501 0.9960404 5.96046e-8 0 0 0 1 0.9987794 -0.04230357 0.0254914 -7.45058e-9 0.04448885 0.9947335 -0.09233591 0.248517 -0.02145101 0.09335735 0.9954016 5.96046e-8 0 0 0 1 0.9984333 -0.04683835 0.03061302 -7.45058e-9 0.04968406 0.9937481 -0.09997952 0.248517 -0.02573875 0.1013438 0.9945185 5.96046e-8 0 0 0 1 0.9982967 -0.04789183 0.03331486 -7.45058e-9 0.05125 0.9927657 -0.1085809 0.248517 -0.02787371 0.1101034 0.9935291 5.96046e-8 0 0 0 1 0.9984431 -0.04468499 0.03338652 -7.45058e-9 0.04827019 0.9921116 -0.1156914 0.248517 -0.02795349 0.1171229 0.9927238 5.96046e-8 0 0 0 1 0.9987892 -0.03697881 0.03243589 -7.45058e-9 0.04059454 0.9920632 -0.1190064 0.248517 -0.02777774 0.120179 0.9923633 5.96046e-8 0 0 0 1 0.9991515 -0.02689673 0.03118482 -7.45058e-9 0.03049352 0.9921499 -0.1212788 0.248517 -0.027678 0.1221269 0.9921285 5.96046e-8 0 0 0 1 0.9994436 -0.01516782 0.02970653 -7.45058e-9 0.01870437 0.9922746 -0.1226436 0.248517 -0.0276168 0.123131 0.9920061 5.96046e-8 0 0 0 1 0.9995998 -0.003034242 0.02812797 -7.45058e-9 0.006473606 0.992385 -0.1230049 0.248517 -0.02754054 0.1231377 0.9920075 5.96046e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Spine2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_Spine2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Spine2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_Spine2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_Spine2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_Spine2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_Spine2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_Spine2_pose_matrix-sampler\" target=\"mixamorig_Spine2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_Neck_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_Neck_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_Neck_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Neck_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Neck_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_Neck_pose_matrix-output-array\" count=\"1856\">0.9973934 -0.06039819 -0.03947162 1.49012e-8 0.05540739 0.9915627 -0.1171887 0.2795823 0.04621658 0.1146962 0.9923249 -5.96046e-8 0 0 0 1 0.9970158 -0.06643793 -0.03930826 1.49012e-8 0.06171213 0.9918815 -0.1111869 0.2795823 0.04637617 0.1084292 0.9930217 -5.96046e-8 0 0 0 1 0.9966726 -0.07168114 -0.03880182 1.49012e-8 0.06707097 0.9917424 -0.1093104 0.2795823 0.04631691 0.1063442 0.99325 -5.96046e-8 0 0 0 1 0.9964053 -0.07565601 -0.03811077 1.49012e-8 0.07096411 0.9911453 -0.1122278 0.2795823 0.04626402 0.1091199 0.9929514 -5.96046e-8 0 0 0 1 0.9962421 -0.07812525 -0.03738436 1.49012e-8 0.07314208 0.9900848 -0.1199268 0.2795823 0.04638299 0.1167417 0.9920786 -5.96046e-8 0 0 0 1 0.9964521 -0.07635634 -0.03539321 1.49012e-8 0.07033128 0.9864696 -0.1480921 0.2795823 0.0462221 0.1450773 0.98834 -5.96046e-8 0 0 0 1 0.9965116 -0.07668598 -0.03292058 1.49012e-8 0.06959513 0.9813327 -0.1792835 0.2795823 0.04605459 0.176367 0.9832466 -5.96046e-8 0 0 0 1 0.9964368 -0.07881578 -0.03002892 1.49012e-8 0.07076514 0.9749666 -0.2107897 0.2795823 0.04589076 0.2079136 0.9770701 -5.96046e-8 0 0 0 1 0.9964314 -0.07896554 -0.02981254 1.49012e-8 0.07086274 0.9745238 -0.2127949 0.2795823 0.0458565 0.2099228 0.9766419 -5.96046e-8 0 0 0 1 0.9963983 -0.08062382 -0.0262694 1.49012e-8 0.07201229 0.9681293 -0.2398747 0.2795823 0.04477179 0.237119 0.9704484 -5.96046e-8 0 0 0 1 0.9965757 -0.07991661 -0.02121595 1.49012e-8 0.07150828 0.9618375 -0.2641116 0.2795823 0.04151322 0.2616901 0.9642587 -5.96046e-8 0 0 0 1 0.997016 -0.07572675 -0.01498925 1.49012e-8 0.06846896 0.9571542 -0.2813684 0.2795823 0.03565413 0.2795025 0.9594828 -5.96046e-8 0 0 0 1 0.9976057 -0.06866458 -0.008234978 1.49012e-8 0.06329517 0.9545321 -0.2913108 0.2795823 0.02786329 0.290092 0.956593 -5.96046e-8 0 0 0 1 0.9981822 -0.06023638 -0.001850549 1.49012e-8 0.05700052 0.9536394 -0.2955045 0.2795823 0.01956489 0.294862 0.9553396 -5.96046e-8 0 0 0 1 0.9986473 -0.05188354 0.00336992 1.49012e-8 0.05054758 0.95367 -0.2965785 0.2795823 0.01217376 0.2963477 0.9550025 -5.96046e-8 0 0 0 1 0.998988 -0.04442691 0.006966166 1.49012e-8 0.04449106 0.9538823 -0.2968653 0.2795823 0.006543905 0.2968749 0.9548939 -5.96046e-8 0 0 0 1 0.9992334 -0.0381292 0.00888918 1.49012e-8 0.03904682 0.9539257 -0.297492 0.2795823 0.002863526 0.2976108 0.9546832 -5.96046e-8 0 0 0 1 0.9994085 -0.03305365 0.009488378 1.49012e-8 0.03437896 0.9538237 -0.2983926 0.2795823 8.12743e-4 0.2985424 0.9543959 -5.96046e-8 0 0 0 1 0.999526 -0.02929506 0.009456169 1.49012e-8 0.03078231 0.9537951 -0.2988766 0.2795823 -2.63635e-4 0.299026 0.9542449 -5.96046e-8 0 0 0 1 0.9995897 -0.02695895 0.009665795 1.49012e-8 0.02861471 0.9541312 -0.2980175 0.2795823 -0.001188189 0.2981717 0.9545115 -5.96046e-8 0 0 0 1 0.9996017 -0.02606188 0.01083804 1.49012e-8 0.02809843 0.9552248 -0.2945434 0.2795823 -0.002676394 0.2947306 0.9555767 -5.96046e-8 0 0 0 1 0.9995622 -0.02652585 0.01309914 1.49012e-8 0.02916821 0.9576113 -0.2865828 0.2795823 -0.004942022 0.2868394 0.9579659 -5.96046e-8 0 0 0 1 0.9994777 -0.0282572 0.01567479 1.49012e-8 0.03145644 0.9618136 -0.2718917 0.2795823 -0.007393319 0.2722426 0.9622002 -5.96046e-8 0 0 0 1 0.9993685 -0.03118449 0.01703009 1.49012e-8 0.03444371 0.9679399 -0.2488089 0.2795823 -0.008725122 0.2492383 0.9684029 -5.96046e-8 0 0 0 1 0.9992601 -0.03517941 0.01553592 1.49012e-8 0.03771873 0.9753261 -0.2175231 0.2795823 -0.00750025 0.2179481 0.9759316 -5.96046e-8 0 0 0 1 0.9991491 -0.03991309 0.01037844 1.49012e-8 0.04113256 0.9826491 -0.1808558 0.2795823 -0.002979845 0.1811288 0.9834548 -5.96046e-8 0 0 0 1 0.9989941 -0.04478577 0.002170991 1.49012e-8 0.04463181 0.988584 -0.1439078 0.2795823 0.004298829 0.1438599 0.9895888 -5.96046e-8 0 0 0 1 0.9987699 -0.04906321 -0.007153906 1.49012e-8 0.04794883 0.992492 -0.1125213 0.2795823 0.01262085 0.1120398 0.9936237 -5.96046e-8 0 0 0 1 0.998521 -0.05221523 -0.01514189 1.49012e-8 0.05062287 0.9945383 -0.09127307 0.2795823 0.01982504 0.09037155 0.9957106 -5.96046e-8 0 0 0 1 0.9983308 -0.05424169 -0.01983216 1.49012e-8 0.05244213 0.9952407 -0.08213517 0.2795823 0.02419292 0.08095801 0.9964239 -5.96046e-8 0 0 0 1 0.9982401 -0.05567631 -0.02041183 1.49012e-8 0.05376625 0.9949719 -0.08449736 0.2795823 0.02501372 0.08325115 0.9962144 -5.96046e-8 0 0 0 1 0.9982141 -0.05719145 -0.01723956 1.49012e-8 0.05527648 0.993817 -0.09629315 0.2795823 0.02264012 0.0951682 0.9952036 -5.96046e-8 0 0 0 1 0.9981865 -0.05910766 -0.01140662 1.49012e-8 0.0574051 0.9916757 -0.1152548 0.2795823 0.01812412 0.1143909 0.9932705 -5.96046e-8 0 0 0 1 0.9981125 -0.06126686 -0.004217304 1.49012e-8 0.060082 0.9884073 -0.1394311 0.2795823 0.01271092 0.1389146 0.9902228 -5.96046e-8 0 0 0 1 0.9979799 -0.06344917 0.003140803 1.49012e-8 0.06308333 0.9839684 -0.1668133 0.2795823 0.007493721 0.1666745 0.9859836 -5.96046e-8 0 0 0 1 0.9977739 -0.06597336 0.00972506 1.49012e-8 0.06660306 0.9785911 -0.1947393 0.2795823 0.003330743 0.1949535 0.9808068 -5.96046e-8 0 0 0 1 0.997449 -0.06980713 0.01490941 1.49012e-8 0.0713765 0.9728928 -0.219966 0.2795823 8.49945e-4 0.220469 0.9753937 -5.96046e-8 0 0 0 1 0.9969512 -0.07579847 0.01851032 1.49012e-8 0.07802547 0.9677045 -0.2397087 0.2795823 2.57034e-4 0.2404221 0.9706684 -5.96046e-8 0 0 0 1 0.9962922 -0.08345389 0.02090985 1.49012e-8 0.08602816 0.9636313 -0.2530097 0.2795823 9.65288e-4 0.2538705 0.9672374 -5.96046e-8 0 0 0 1 0.9956451 -0.09034113 0.02300754 1.49012e-8 0.09321266 0.9607352 -0.261342 0.2795823 0.001505775 0.2623484 0.9649721 -5.96046e-8 0 0 0 1 0.995335 -0.09293936 0.02588467 1.49012e-8 0.09647659 0.9586285 -0.2678128 0.2795823 7.65845e-5 0.2690608 0.9631234 -5.96046e-8 0 0 0 1 0.9956067 -0.08860163 0.03028058 1.49012e-8 0.09352136 0.9567789 -0.2753685 0.2795823 -0.004573701 0.2769906 0.9608616 -5.96046e-8 0 0 0 1 0.9963534 -0.07727467 0.03616715 1.49012e-8 0.08439932 0.9547648 -0.2851335 0.2795823 -0.01249751 0.2871463 0.9578052 -5.96046e-8 0 0 0 1 0.9971803 -0.0617196 0.04268131 1.49012e-8 0.07162043 0.9525394 -0.2958706 0.2795823 -0.02239461 0.2980933 0.954274 -5.96046e-8 0 0 0 1 0.9977611 -0.04609892 0.04844997 1.49012e-8 0.05871616 0.9506493 -0.3046611 0.2795823 -0.03201436 0.3068237 0.951228 -5.96046e-8 0 0 0 1 0.9980648 -0.0339393 0.05210242 1.49012e-8 0.04839412 0.9501126 -0.3081298 0.2795823 -0.03904544 0.310055 0.9499165 -5.96046e-8 0 0 0 1 0.9982499 -0.02675737 0.05273247 1.49012e-8 0.04154733 0.9519304 -0.3034844 0.2795823 -0.04207718 0.3051444 0.9513761 -5.96046e-8 0 0 0 1 0.9984538 -0.02391886 0.05017798 1.49012e-8 0.03744445 0.9565654 -0.2891032 0.2795823 -0.04108348 0.290535 0.9559821 -5.96046e-8 0 0 0 1 0.9987084 -0.0234305 0.04508153 1.49012e-8 0.03456302 0.9636754 -0.2648309 0.2795823 -0.03723882 0.2660471 0.9632404 -5.96046e-8 0 0 0 1 0.9989843 -0.0230116 0.03873692 1.49012e-8 0.0313964 0.9721696 -0.2321646 0.2795823 -0.03231639 0.2331449 0.9719049 -5.96046e-8 0 0 0 1 0.9992444 -0.02096633 0.0327228 1.49012e-8 0.02693574 0.9805837 -0.194242 0.2795823 -0.0280149 0.1949766 0.9804076 -5.96046e-8 0 0 0 1 0.9994569 -0.01668147 0.02841523 1.49012e-8 0.02090106 0.9876376 -0.1553558 0.2795823 -0.02547237 0.1558653 0.9874501 -5.96046e-8 0 0 0 1 0.9995901 -0.01065936 0.02656666 1.49012e-8 0.01377273 0.9926889 -0.119912 0.2795823 -0.02509423 0.1202286 0.992429 -5.96046e-8 0 0 0 1 0.9996227 -0.004022093 0.02717221 1.49012e-8 0.006485846 0.9958116 -0.09120184 0.2795823 -0.02669156 0.09134361 0.9954619 -5.96046e-8 0 0 0 1 0.9995563 0.002326407 0.02969177 1.49012e-8 -2.2386e-4 0.9975033 -0.07062012 0.2795823 -0.02978192 0.07058212 0.9970613 -5.96046e-8 0 0 0 1 0.9994065 0.0083305 0.03342487 1.49012e-8 -0.00639106 0.9983126 -0.05771664 0.2795823 -0.03384927 0.05746877 0.9977733 -5.96046e-8 0 0 0 1 0.9991807 0.01466408 0.03771522 1.49012e-8 -0.012732 0.9986191 -0.05096766 0.2795823 -0.03841051 0.05044571 0.9979881 -5.96046e-8 0 0 0 1 0.9988833 0.02189844 0.04186404 1.49012e-8 -0.0198483 0.9986125 -0.04877514 0.2795823 -0.04287405 0.04788974 0.9979321 -5.96046e-8 0 0 0 1 0.9985484 0.02964585 0.04496532 1.49012e-8 -0.02738145 0.9983657 -0.05016485 0.2795823 -0.046379 0.04886079 0.9977283 -5.96046e-8 0 0 0 1 0.9982778 0.03642746 0.04597932 1.49012e-8 -0.03388443 0.9979153 -0.05492568 0.2795823 -0.04788426 0.05327308 0.9974312 -5.96046e-8 0 0 0 1 0.9982096 0.0403861 0.04411741 1.49012e-8 -0.03754818 0.9972837 -0.06336403 0.2795823 -0.0465566 0.06159398 0.9970148 -5.96046e-8 0 0 0 1 0.9984151 0.04030297 0.03927712 1.49012e-8 -0.03723025 0.9964088 -0.07604903 0.2795823 -0.04220105 0.07446617 0.9963301 -5.96046e-8 0 0 0 1 0.9988234 0.03628436 0.03217327 1.49012e-8 -0.03312895 0.9950488 -0.09370333 0.2795823 -0.03541394 0.09252718 0.9950801 -5.96046e-8 0 0 0 1 0.9992668 0.02979673 0.02403104 1.49012e-8 -0.02679048 0.9927753 -0.116958 0.2795823 -0.02734239 0.1162285 0.992846 -5.96046e-8 0 0 0 1 0.9996065 0.02303012 0.01600471 1.49012e-8 -0.02045664 0.9891248 -0.1456491 0.2795823 -0.01918497 0.1452644 0.9892068 -5.96046e-8 0 0 0 1 0.999805 0.01774708 0.008655444 1.49012e-8 -0.0159243 0.9839087 -0.1779601 0.2795823 -0.01167443 0.1777875 0.9839997 -5.96046e-8 0 0 0 1 0.9998977 0.01418424 0.001793753 1.49012e-8 -0.0134901 0.9775542 -0.2102511 0.2795823 -0.004735731 0.2102054 0.9776456 -5.96046e-8 0 0 0 1 0.9999277 0.01082275 -0.005194314 1.49012e-8 -0.01174838 0.9711654 -0.238117 0.2795823 0.002467483 0.2381609 0.9712223 -5.96046e-8 0 0 0 1 0.999904 0.005474728 -0.01272235 1.49012e-8 -0.008574152 0.9660644 -0.2581588 0.2795823 0.01087727 0.2582431 0.9660187 -5.96046e-8 0 0 0 1 0.9997852 -0.002955023 -0.02051196 1.49012e-8 -0.002678605 0.9630527 -0.2693 0.2795823 0.02054989 0.2692972 0.9628378 -5.96046e-8 0 0 0 1 0.9995287 -0.01341887 -0.02760524 1.49012e-8 0.005378054 0.9620243 -0.2729107 0.2795823 0.03021908 0.2726336 0.9616432 -5.96046e-8 0 0 0 1 0.9991866 -0.0233062 -0.03290543 1.49012e-8 0.01348955 0.9622281 -0.2719099 0.2795823 0.03799972 0.2712448 0.9617599 -5.96046e-8 0 0 0 1 0.9989 -0.03021714 -0.03585552 1.49012e-8 0.01945047 0.9627973 -0.2695235 0.2795823 0.04266585 0.2685296 0.962326 -5.96046e-8 0 0 0 1 0.9987623 -0.03351158 -0.03675346 1.49012e-8 0.02244321 0.9630876 -0.2682512 0.2795823 0.04438632 0.2670942 0.9626477 -5.96046e-8 0 0 0 1 0.9987377 -0.03452325 -0.03648391 1.49012e-8 0.02344539 0.9627888 -0.2692364 0.2795823 0.04442122 0.2680412 0.9623828 -5.96046e-8 0 0 0 1 0.9987236 -0.03553368 -0.03589199 1.49012e-8 0.02445061 0.9619812 -0.2720195 0.2795823 0.04419327 0.2707948 0.9616222 -5.96046e-8 0 0 0 1 0.9986373 -0.03848724 -0.03524381 1.49012e-8 0.02734969 0.9611546 -0.2746519 0.2795823 0.04444535 0.2733137 0.9608976 -5.96046e-8 0 0 0 1 0.998436 -0.04428679 -0.03411253 1.49012e-8 0.03326211 0.9610965 -0.2742032 0.2795823 0.04492901 0.2726398 0.9610667 -5.96046e-8 0 0 0 1 0.9981092 -0.05268995 -0.03165067 1.49012e-8 0.04232883 0.962595 -0.2676178 0.2795823 0.04456754 0.2657719 0.9630054 -5.96046e-8 0 0 0 1 0.9976869 -0.06238176 -0.02700158 1.49012e-8 0.05356365 0.9660515 -0.2527353 0.2795823 0.04185101 0.2507044 0.9671584 -5.96046e-8 0 0 0 1 0.9972739 -0.07113263 -0.01961558 1.49012e-8 0.06476648 0.9712236 -0.229194 0.2795823 0.03535431 0.2272988 0.973183 -5.96046e-8 0 0 0 1 0.9970313 -0.07641453 -0.009446472 1.49012e-8 0.07301736 0.977295 -0.1989042 0.2795823 0.02443117 0.1976239 0.9799734 -5.96046e-8 0 0 0 1 0.997063 -0.07652957 0.002914391 1.49012e-8 0.07595237 0.9832287 -0.1658095 0.2795823 0.009823816 0.1655439 0.9861534 -5.96046e-8 0 0 0 1 0.9973053 -0.07154927 0.01619785 1.49012e-8 0.07308369 0.9881701 -0.1348278 0.2795823 -0.006359387 0.1356482 0.9907366 -5.96046e-8 0 0 0 1 0.9975892 -0.06320962 0.02862938 1.49012e-8 0.0660025 0.9917026 -0.1103147 0.2795823 -0.02141888 0.1119384 0.9934841 -5.96046e-8 0 0 0 1 0.9978157 -0.05378753 0.03834281 1.49012e-8 0.05721723 0.9938488 -0.09481767 0.2795823 -0.03300696 0.09680441 0.994756 -5.96046e-8 0 0 0 1 0.9980281 -0.04487254 0.04388489 1.49012e-8 0.04863353 0.9948644 -0.08876741 0.2795823 -0.03967628 0.09072658 0.9950851 -5.96046e-8 0 0 0 1 0.998323 -0.03689466 0.04460682 1.49012e-8 0.04084398 0.9950005 -0.09113604 0.2795823 -0.04102137 0.09280515 0.9948388 -5.96046e-8 0 0 0 1 0.998731 -0.02948109 0.04082426 1.49012e-8 0.03346029 0.9943749 -0.1004938 0.2795823 -0.03763193 0.1017323 0.9940997 -5.96046e-8 0 0 0 1 0.9991869 -0.02209386 0.03372396 1.49012e-8 0.02586267 0.9929409 -0.1157556 0.2795823 -0.0309284 0.1165337 0.9927052 -5.96046e-8 0 0 0 1 0.9995816 -0.01446432 0.02503913 1.49012e-8 0.01774488 0.990523 -0.1361957 0.2795823 -0.02283185 0.1365829 0.9903657 -5.96046e-8 0 0 0 1 0.9998403 -0.006715484 0.01655802 1.49012e-8 0.009292061 0.9869407 -0.1608156 0.2795823 -0.01526182 0.1609438 0.9868455 -5.96046e-8 0 0 0 1 0.9999536 7.26242e-4 0.009597436 1.49012e-8 0.001087938 0.9822302 -0.1876772 0.2795823 -0.009563189 0.187679 0.9821839 -5.96046e-8 0 0 0 1 0.9999623 0.007312089 0.004646953 1.49012e-8 -0.006149182 0.9768441 -0.2138642 0.2795823 -0.006103132 0.2138275 0.9768524 -5.96046e-8 0 0 0 1 0.9999201 0.01257823 0.001331244 1.49012e-8 -0.01190769 0.9716187 -0.2362524 0.2795823 -0.004265085 0.2362177 0.9716909 -5.96046e-8 0 0 0 1 0.9998666 0.01627976 -0.001286611 1.49012e-8 -0.01607672 0.9674322 -0.2526192 0.2795823 -0.002867859 0.2526061 0.9675649 -5.96046e-8 0 0 0 1 0.9998222 0.01837557 -0.004203051 1.49012e-8 -0.01883454 0.9647772 -0.2623928 0.2795823 -7.66583e-4 0.2624253 0.9649518 -5.96046e-8 0 0 0 1 0.9997891 0.0189097 -0.007985 1.49012e-8 -0.02035445 0.96358 -0.2666445 0.2795823 0.002652027 0.2667508 0.9637618 -5.96046e-8 0 0 0 1 0.9997616 0.01789573 -0.01249617 1.49012e-8 -0.02058666 0.96336 -0.2674203 0.2795823 0.007252637 0.2676138 0.9634989 -5.96046e-8 0 0 0 1 0.9997391 0.01530111 -0.016955 1.49012e-8 -0.01927285 0.9635437 -0.2668557 0.2795823 0.01225372 0.2671128 0.9635872 -5.96046e-8 0 0 0 1 0.9997322 0.01112243 -0.02029351 1.49012e-8 -0.016131 0.9637035 -0.2664873 0.2795823 0.01659296 0.2667432 0.9636247 -5.96046e-8 0 0 0 1 0.9997504 0.005509693 -0.02165217 1.49012e-8 -0.01109176 0.9636527 -0.2669276 0.2795823 0.01939449 0.2671011 0.9634733 -5.96046e-8 0 0 0 1 0.9997834 -0.001151815 -0.0207766 1.49012e-8 -0.004456466 0.9634476 -0.2678593 0.2795823 0.02032572 0.267894 0.9632339 -5.96046e-8 0 0 0 1 0.9998009 -0.008304497 -0.01814375 1.49012e-8 0.00313358 0.9633431 -0.2682536 0.2795823 0.01970639 0.2681432 0.9631776 -5.96046e-8 0 0 0 1 0.9997711 -0.01543748 -0.01479453 1.49012e-8 0.01093365 0.96371 -0.2667273 0.2795823 0.01837524 0.2665045 0.9636585 -5.96046e-8 0 0 0 1 0.9996803 -0.02226079 -0.01198357 1.49012e-8 0.01834673 0.9649127 -0.2619293 0.2795823 0.01739385 0.2616257 0.9650127 -5.96046e-8 0 0 0 1 0.9995323 -0.02860999 -0.01078814 1.49012e-8 0.02495439 0.9671751 -0.2528831 0.2795823 0.017669 0.2524957 0.9674366 -5.96046e-8 0 0 0 1 0.9993462 -0.03416955 -0.0118103 1.49012e-8 0.03035454 0.970475 -0.2392834 0.2795823 0.01963781 0.2387684 0.9708779 -5.96046e-8 0 0 0 1 0.9991488 -0.03838976 -0.01507568 1.49012e-8 0.0340981 0.9745171 -0.2217073 0.2795823 0.0232028 0.2210045 0.9749968 -5.96046e-8 0 0 0 1 0.9989645 -0.04078428 -0.02015853 1.49012e-8 0.03589394 0.9788152 -0.201576 0.2795823 0.02795259 0.2006437 0.9792656 -5.96046e-8 0 0 0 1 0.9988022 -0.04094956 -0.02678299 1.49012e-8 0.03546014 0.9829422 -0.1804647 0.2795823 0.03371608 0.1792988 0.9832168 -5.96046e-8 0 0 0 1 0.9986172 -0.04083554 -0.03310716 1.49012e-8 0.034973 0.9862416 -0.1615686 0.2795823 0.03924942 0.1601873 0.9863059 -5.96046e-8 0 0 0 1 0.9983801 -0.04383003 -0.03627717 1.49012e-8 0.03798563 0.9881799 -0.1485189 0.2795823 0.04235797 0.1469002 0.9882441 -5.96046e-8 0 0 0 1 0.9980956 -0.04843319 -0.03819837 1.49012e-8 0.04279412 0.9896898 -0.1366861 0.2795823 0.04442468 0.1347911 0.9898777 -5.96046e-8 0 0 0 1 0.9977627 -0.05418492 -0.03915913 1.49012e-8 0.04886057 0.9908194 -0.1260548 0.2795823 0.0456299 0.1238594 0.9912502 -5.96046e-8 0 0 0 1 0.9973934 -0.06039819 -0.03947162 1.49012e-8 0.05540739 0.9915627 -0.1171887 0.2795823 0.04621658 0.1146962 0.9923249 -5.96046e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Neck_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Neck_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_Neck_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Neck_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_Neck_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_Neck_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_Neck_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_Neck_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_Neck_pose_matrix-sampler\" target=\"mixamorig_Neck/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_Head_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_Head_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_Head_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Head_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Head_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_Head_pose_matrix-output-array\" count=\"1856\">0.9864268 -0.006283641 -0.1640799 0 0.07833466 0.8962314 0.4366155 0.0858748 0.14431 -0.4435423 0.8845592 0.01940441 0 0 0 1 0.9860526 -0.02598611 -0.1643926 0 0.09212448 0.90784 0.4090715 0.0858748 0.138612 -0.4185105 0.897572 0.01940441 0 0 0 1 0.9854116 -0.04667604 -0.1636619 0 0.1059263 0.920893 0.3751479 0.0858748 0.1332047 -0.3870112 0.9124029 0.01940441 0 0 0 1 0.9840273 -0.06913825 -0.1640415 0 0.1216566 0.9339142 0.3361604 0.0858748 0.1299591 -0.3507478 0.9274084 0.01940441 0 0 0 1 0.9814488 -0.09376643 -0.1672306 0 0.1403878 0.945513 0.2937624 0.0858748 0.1305737 -0.3117899 0.9411362 0.01940441 0 0 0 1 0.9773507 -0.1227953 -0.1723562 0 0.1611597 0.9597298 0.2301 0.0858748 0.1371602 -0.2526652 0.9577824 0.01940441 0 0 0 1 0.9739653 -0.1461741 -0.1732762 0 0.1765924 0.9684951 0.1755925 0.0858748 0.14215 -0.2016203 0.9690939 0.01940441 0 0 0 1 0.9720675 -0.1628934 -0.1689684 0 0.185728 0.9740343 0.1294702 0.0858748 0.1434912 -0.1572359 0.9770809 0.01940441 0 0 0 1 0.9720083 -0.1637771 -0.1684527 0 0.1861231 0.9743242 0.1266899 0.0858748 0.1433786 -0.1544966 0.9775344 0.01940441 0 0 0 1 0.9719796 -0.1741681 -0.1578643 0 0.1897771 0.977714 0.08977839 0.0858748 0.1387096 -0.1172218 0.9833711 0.01940441 0 0 0 1 0.9732741 -0.1826365 -0.1392179 0 0.1917031 0.9799302 0.05465248 0.0858748 0.1264423 -0.07988033 0.9887524 0.01940441 0 0 0 1 0.9749609 -0.1906973 -0.114392 0 0.194552 0.9806122 0.02343169 0.0858748 0.1077059 -0.04510015 0.9931591 0.01940441 0 0 0 1 0.9759731 -0.1998563 -0.08679739 0 0.2002193 0.9797405 -0.004593015 0.0858748 0.08595687 -0.01289582 0.9962153 0.01940441 0 0 0 1 0.9756484 -0.2106754 -0.06104146 0 0.2091677 0.9774138 -0.03019056 0.0858748 0.06602318 0.01668748 0.9976784 0.01940441 0 0 0 1 0.9738665 -0.2232879 -0.04154913 0 0.2209703 0.9737897 -0.05390731 0.0858748 0.05249695 0.04331744 0.997681 0.01940441 0 0 0 1 0.9708425 -0.2376714 -0.03125839 0 0.2348113 0.9690987 -0.07557383 0.0858748 0.04825421 0.0660305 0.9966502 0.01940441 0 0 0 1 0.9669049 -0.2532853 -0.03068451 0 0.2494985 0.9638176 -0.09384111 0.0858748 0.05334285 0.08307976 0.9951141 0.01940441 0 0 0 1 0.9625981 -0.2683354 -0.03742854 0 0.263204 0.9589329 -0.1056943 0.0858748 0.06425296 0.0918898 0.9936938 0.01940441 0 0 0 1 0.9590108 -0.2795357 -0.04645215 0 0.2735133 0.9559916 -0.1061633 0.0858748 0.07408426 0.08910647 0.993263 0.01940441 0 0 0 1 0.9576744 -0.2831891 -0.05161029 0 0.2780463 0.9564583 -0.08875626 0.0858748 0.07449791 0.07064956 0.9947154 0.01940441 0 0 0 1 0.959515 -0.2774527 -0.04848635 0 0.2752714 0.9602101 -0.047144 0.0858748 0.05963732 0.03188854 0.9977107 0.01940441 0 0 0 1 0.963672 -0.2644486 -0.03745618 0 0.2653588 0.9639036 0.02177832 0.0858748 0.03034493 -0.03092638 0.9990609 0.01940441 0 0 0 1 0.9678471 -0.2502989 -0.02494097 0 0.2514952 0.9610724 0.1144124 0.0858748 -0.004667252 -0.1170063 0.9931202 0.01940441 0 0 0 1 0.9700138 -0.2421271 -0.02115751 0 0.2407903 0.945507 0.2191726 0.0858748 -0.03306302 -0.2176949 0.9754566 0.01940441 0 0 0 1 0.9692219 -0.2437136 -0.03482115 0 0.241848 0.9161181 0.3197456 0.0858748 -0.04602609 -0.3183258 0.9468634 0.01940441 0 0 0 1 0.9649992 -0.2533017 -0.06793217 0 0.2588716 0.8785829 0.4013447 0.0858748 -0.04197726 -0.4048829 0.9134045 0.01940441 0 0 0 1 0.9574174 -0.2652268 -0.1140464 0 0.287641 0.8423851 0.4556865 0.0858748 -0.02478921 -0.4690866 0.8828043 0.01940441 0 0 0 1 0.9482355 -0.2737269 -0.1610053 0 0.3175671 0.8163888 0.4823488 0.0858748 -5.88909e-4 -0.5085104 0.8610555 0.01940441 0 0 0 1 0.9409292 -0.2759322 -0.1962475 0 0.3377653 0.8056139 0.4867247 0.0858748 0.02379671 -0.5242593 0.851226 0.01940441 0 0 0 1 0.9387243 -0.2721774 -0.211462 0 0.3421327 0.8101271 0.4760666 0.0858748 0.04173662 -0.5192434 0.8536068 0.01940441 0 0 0 1 0.9425104 -0.2643915 -0.2043797 0 0.330658 0.8263541 0.4558558 0.0858748 0.04836564 -0.4972286 0.8662704 0.01940441 0 0 0 1 0.9505559 -0.2545453 -0.1779045 0 0.307685 0.8496065 0.4283673 0.0858748 0.04210994 -0.4619256 0.8859182 0.01940441 0 0 0 1 0.9598386 -0.2442034 -0.1381087 0 0.2794465 0.8758457 0.3934514 0.0858748 0.0248798 -0.416244 0.9089124 0.01940441 0 0 0 1 0.9676275 -0.234894 -0.09231361 0 0.2523809 0.9019043 0.3505319 0.0858748 9.20221e-4 -0.3624825 0.9319901 0.01940441 0 0 0 1 0.9723741 -0.2285191 -0.04761913 0 0.2321215 0.9250453 0.3006839 0.0858748 -0.02466218 -0.3034307 0.9525343 0.01940441 0 0 0 1 0.9738062 -0.2271732 -0.009687769 0 0.2224366 0.9429351 0.2477806 0.0858748 -0.0471542 -0.2434451 0.9687678 0.01940441 0 0 0 1 0.9724649 -0.2323264 0.01834295 0 0.2242405 0.9542398 0.1978457 0.0858748 -0.06346835 -0.1882848 0.9800617 0.01940441 0 0 0 1 0.9691159 -0.2438927 0.03647212 0 0.2354908 0.9591628 0.1566873 0.0858748 -0.07319756 -0.1432593 0.9869744 0.01940441 0 0 0 1 0.9644656 -0.2599061 0.04748509 0 0.2522344 0.9592559 0.1273035 0.0858748 -0.07863728 -0.1108025 0.9907264 0.01940441 0 0 0 1 0.9592119 -0.2771526 0.0556675 0 0.2701017 0.9566639 0.1088094 0.0858748 -0.08341186 -0.08933538 0.9925028 0.01940441 0 0 0 1 0.9540546 -0.2924729 0.06510616 0 0.2856034 0.9533675 0.0975771 0.0858748 -0.09060875 -0.07449934 0.9930961 0.01940441 0 0 0 1 0.9494413 -0.304064 0.07814248 0 0.2970661 0.9506367 0.08967641 0.0858748 -0.1015525 -0.06192899 0.9929007 0.01940441 0 0 0 1 0.9453306 -0.3121573 0.09438137 0 0.304976 0.9487232 0.08315015 0.0858748 -0.1154977 -0.04982027 0.9920576 0.01940441 0 0 0 1 0.9413452 -0.3188057 0.1105988 0 0.3114387 0.9469809 0.0789493 0.0858748 -0.1299044 -0.03987381 0.9907244 0.01940441 0 0 0 1 0.9372434 -0.326722 0.1217684 0 0.3188066 0.9444219 0.08018604 0.0858748 -0.1411993 -0.03633323 0.9893143 0.01940441 0 0 0 1 0.9332828 -0.3374154 0.1230205 0 0.328061 0.940331 0.09029815 0.0858748 -0.146148 -0.04391542 0.9882875 0.01940441 0 0 0 1 0.9302441 -0.3494724 0.1118698 0 0.3377162 0.9346268 0.1114484 0.0858748 -0.1435046 -0.06589395 0.9874536 0.01940441 0 0 0 1 0.9293666 -0.3580536 0.08986252 0 0.3435808 0.9279884 0.144187 0.0858748 -0.135018 -0.1031275 0.9854617 0.01940441 0 0 0 1 0.9322409 -0.3563546 0.06275295 0 0.3395904 0.9215387 0.1882679 0.0858748 -0.1249194 -0.1542008 0.9801108 0.01940441 0 0 0 1 0.9401779 -0.3384632 0.03883407 0 0.3196352 0.9157863 0.2432459 0.0858748 -0.1178935 -0.2162816 0.969187 0.01940441 0 0 0 1 0.9529343 -0.3020516 0.02608594 0 0.2798339 0.909412 0.3076732 0.0858748 -0.116656 -0.2858926 0.9511344 0.01940441 0 0 0 1 0.9679227 -0.2495069 0.02952761 0 0.2203493 0.8994688 0.377362 0.0858748 -0.1207136 -0.3587508 0.925595 0.01940441 0 0 0 1 0.9810871 -0.1870316 0.04987306 0 0.1458756 0.8837608 0.4446202 0.0858748 -0.1272339 -0.4289358 0.8943295 0.01940441 0 0 0 1 0.9889672 -0.1221424 0.08381592 0 0.06428577 0.8636282 0.5000137 0.0858748 -0.1334587 -0.489109 0.8619519 0.01940441 0 0 0 1 0.9901987 -0.06092304 0.1256783 0 -0.01605026 0.8442493 0.5357103 0.0858748 -0.138741 -0.5324768 0.8349966 0.01940441 0 0 0 1 0.9855186 -0.006663738 0.1694363 0 -0.08856679 0.8318679 0.5478612 0.0858748 -0.1445994 -0.5549338 0.819231 0.01940441 0 0 0 1 0.9769275 0.03975146 0.2098388 0 -0.1490866 0.8304526 0.5367698 0.0858748 -0.1529238 -0.5556693 0.8172184 0.01940441 0 0 0 1 0.9670094 0.07867589 0.2422869 0 -0.1950987 0.8402923 0.5058119 0.0858748 -0.1637966 -0.5363947 0.82792 0.01940441 0 0 0 1 0.958573 0.1106086 0.2624943 0 -0.2251316 0.858757 0.460274 0.0858748 -0.1745085 -0.5003021 0.8480829 0.01940441 0 0 0 1 0.9541239 0.1354229 0.2670361 0 -0.238874 0.8820071 0.4062053 0.0858748 -0.1805182 -0.4513581 0.873893 0.01940441 0 0 0 1 0.9549666 0.152182 0.2547143 0 -0.2375622 0.9064842 0.3490712 0.0858748 -0.1777721 -0.3938619 0.9018148 0.01940441 0 0 0 1 0.9605605 0.1597358 0.2276136 0 -0.2239356 0.9296327 0.2926367 0.0858748 -0.1648525 -0.3320659 0.9287388 0.01940441 0 0 0 1 0.9688669 0.1577798 0.1907945 0 -0.2017251 0.9498677 0.2388689 0.0858748 -0.1435409 -0.2699202 0.9521235 0.01940441 0 0 0 1 0.977532 0.1476651 0.1504199 0 -0.1750385 0.9662592 0.1889574 0.0858748 -0.1174422 -0.211041 0.9703963 0.01940441 0 0 0 1 0.9849294 0.1324558 0.1112183 0 -0.1478954 0.9783863 0.1445231 0.0858748 -0.08967154 -0.1587937 0.9832312 0.01940441 0 0 0 1 0.990397 0.1162259 0.07487049 0 -0.1239131 0.9864123 0.1078719 0.0858748 -0.06131567 -0.1161134 0.9913416 0.01940441 0 0 0 1 0.9938588 0.1030149 0.04040735 0 -0.1060183 0.9910587 0.08101046 0.0858748 -0.03170079 -0.08479682 0.9958938 0.01940441 0 0 0 1 0.9953723 0.09588945 0.006239901 0 -0.09609222 0.9932954 0.06427172 0.0858748 -3.5096e-5 -0.06457388 0.9979129 0.01940441 0 0 0 1 0.9949706 0.09627969 -0.02762805 0 -0.09463289 0.9939499 0.05574909 0.0858748 0.03282839 -0.05285409 0.9980625 0.01940441 0 0 0 1 0.9928801 0.1036782 -0.05865101 0 -0.1006699 0.9935538 0.05211875 0.0858748 0.06367652 -0.04584321 0.996917 0.01940441 0 0 0 1 0.9898087 0.1158619 -0.08279072 0 -0.1119605 0.9924377 0.05032113 0.0858748 0.08799493 -0.04053897 0.9952955 0.01940441 0 0 0 1 0.9867958 0.1296923 -0.0970256 0 -0.1254334 0.990901 0.0488025 0.0858748 0.1024721 -0.03598773 0.9940845 0.01940441 0 0 0 1 0.9846447 0.1420285 -0.101503 0 -0.137813 0.9893215 0.04743773 0.0858748 0.1071567 -0.03272083 0.9937034 0.01940441 0 0 0 1 0.9835899 0.1504466 -0.09958237 0 -0.14642 0.9881237 0.04662013 0.0858748 0.1054135 -0.03127426 0.9939365 0.01940441 0 0 0 1 0.9834474 0.1539294 -0.09558725 0 -0.1500468 0.9875799 0.04660168 0.0858748 0.1015734 -0.03148776 0.9943293 0.01940441 0 0 0 1 0.9838823 0.153477 -0.09176153 0 -0.149618 0.9875979 0.04759115 0.0858748 0.09792763 -0.03309488 0.994643 0.01940441 0 0 0 1 0.9845721 0.1521723 -0.08637743 0 -0.148219 0.9876639 0.05050823 0.0858748 0.0929978 -0.03692618 0.9949814 0.01940441 0 0 0 1 0.9852566 0.1541514 -0.0742102 0 -0.1500607 0.9869807 0.05789196 0.0858748 0.08216813 -0.04590234 0.9955608 0.01940441 0 0 0 1 0.9854644 0.1626093 -0.04917361 0 -0.1587519 0.9845263 0.07420179 0.0858748 0.0604786 -0.06531674 0.9960301 0.01940441 0 0 0 1 0.9840651 0.1776423 -0.007665177 0 -0.1758845 0.9788401 0.1045787 0.0858748 0.02608059 -0.1015641 0.9944869 0.01940441 0 0 0 1 0.9795274 0.1951954 0.04923974 0 -0.2005005 0.96787 0.1517477 0.0858748 -0.01803724 -0.1585136 0.987192 0.01940441 0 0 0 1 0.9711737 0.208305 0.1158901 0 -0.2291114 0.9499 0.2125976 0.0858748 -0.06579889 -0.2330209 0.9702431 0.01940441 0 0 0 1 0.960084 0.210563 0.184125 0 -0.2562912 0.9258997 0.2775334 0.0858748 -0.1120431 -0.3136449 0.9429069 0.01940441 0 0 0 1 0.9485132 0.1997923 0.2457756 0 -0.2763945 0.9010641 0.3341996 0.0858748 -0.1546892 -0.3849237 0.9098927 0.01940441 0 0 0 1 0.9387277 0.1794144 0.29428 0 -0.2856145 0.882845 0.372839 0.0858748 -0.192911 -0.4340449 0.8799945 0.01940441 0 0 0 1 0.9325464 0.1567409 0.3252526 0 -0.2830385 0.8766601 0.3890455 0.0858748 -0.2241566 -0.454862 0.86189 0.01940441 0 0 0 1 0.9313232 0.1394452 0.3364402 0 -0.2705672 0.8832886 0.3828768 0.0858748 -0.2437836 -0.4476118 0.8603565 0.01940441 0 0 0 1 0.935527 0.132314 0.3275393 0 -0.2521024 0.8995738 0.3566669 0.0858748 -0.2474538 -0.416245 0.8749323 0.01940441 0 0 0 1 0.9441479 0.1357141 0.3002771 0 -0.2321221 0.9207033 0.3137276 0.0858748 -0.2338889 -0.3659061 0.9007823 0.01940441 0 0 0 1 0.9548194 0.1461032 0.2587922 0 -0.214176 0.9419984 0.2583947 0.0858748 -0.2060295 -0.3021474 0.9307302 0.01940441 0 0 0 1 0.9648995 0.1581119 0.2096887 0 -0.2000095 0.9598696 0.1965876 0.0858748 -0.170191 -0.231627 0.9578017 0.01940441 0 0 0 1 0.9726956 0.167211 0.1609464 0 -0.1896313 0.9724209 0.1357842 0.0858748 -0.1338031 -0.1625971 0.9775782 0.01940441 0 0 0 1 0.9778739 0.1715993 0.1196503 0 -0.1821699 0.9796909 0.08378509 0.0858748 -0.1028429 -0.103728 0.9892742 0.01940441 0 0 0 1 0.9809398 0.1724135 0.08961408 0 -0.1770498 0.983098 0.04659775 0.0858748 -0.08006537 -0.06157568 0.9948859 0.01940441 0 0 0 1 0.9824839 0.1725769 0.07030153 0 -0.1747872 0.984248 0.02655998 0.0858748 -0.06461051 -0.03838253 0.9971721 0.01940441 0 0 0 1 0.9828395 0.1752152 0.0576719 0 -0.1766974 0.984027 0.02165255 0.0858748 -0.05295686 -0.03147146 0.9981008 0.01940441 0 0 0 1 0.9821372 0.1823268 0.04650985 0 -0.1836663 0.982636 0.02633068 0.0858748 -0.04090147 -0.03440258 0.9985709 0.01940441 0 0 0 1 0.9804614 0.1939128 0.03306234 0 -0.1950007 0.980226 0.03364241 0.0858748 -0.02588487 -0.03943223 0.9988869 0.01940441 0 0 0 1 0.9780263 0.2078063 0.01676553 0 -0.2083071 0.9773323 0.03781357 0.0858748 -0.008527629 -0.04047501 0.999144 0.01940441 0 0 0 1 0.9753954 0.2204625 3.99715e-4 0 -0.2203321 0.9747525 0.03620923 0.0858748 0.007593147 -0.03540638 0.9993441 0.01940441 0 0 0 1 0.9734501 0.2286214 -0.01126379 0 -0.2282062 0.9731542 0.02987394 0.0858748 0.01779122 -0.02651033 0.99949 0.01940441 0 0 0 1 0.9728591 0.2309938 -0.01367495 0 -0.2306556 0.972773 0.02260348 0.0858748 0.01852387 -0.01883572 0.9996508 0.01940441 0 0 0 1 0.9734423 0.2288853 -0.004616285 0 -0.2287594 0.973294 0.01918724 0.0858748 0.008884668 -0.01762161 0.9998054 0.01940441 0 0 0 1 0.9741923 0.2252453 0.01462479 0 -0.2255447 0.9739423 0.02379459 0.0858748 -0.008884087 -0.02647904 0.9996099 0.01940441 0 0 0 1 0.9741112 0.2226256 0.03930963 0 -0.2241309 0.9737687 0.03924158 0.0858748 -0.02954233 -0.04703614 0.9984562 0.01940441 0 0 0 1 0.9732209 0.2212674 0.06230583 0 -0.2252904 0.9719645 0.06730157 0.0858748 -0.04566741 -0.0795362 0.9957855 0.01940441 0 0 0 1 0.9728928 0.2184994 0.07574686 0 -0.2259116 0.9679924 0.1093365 0.0858748 -0.04943246 -0.1234847 0.9911145 0.01940441 0 0 0 1 0.9749886 0.2099248 0.07299997 0 -0.2194367 0.9613613 0.1662276 0.0858748 -0.03528407 -0.1780888 0.9833816 0.01940441 0 0 0 1 0.9801514 0.19169 0.05057761 0 -0.1982322 0.9510801 0.2369611 0.0858748 -0.002680294 -0.2422838 0.9702016 0.01940441 0 0 0 1 0.9866363 0.162669 0.009342098 0 -0.1572282 0.935457 0.316543 0.0858748 0.04275258 -0.3137815 0.9485323 0.01940441 0 0 0 1 0.9910576 0.1241764 -0.04883672 0 -0.09477866 0.9127305 0.3974165 0.0858748 0.09392454 -0.3892339 0.9163379 0.01940441 0 0 0 1 0.9907102 0.08647236 -0.1049562 0 -0.02946727 0.8899624 0.4550812 0.0858748 0.132759 -0.4477607 0.8842429 0.01940441 0 0 0 1 0.9892621 0.05845783 -0.1339503 0 0.01144067 0.8827355 0.4697312 0.0858748 0.1457021 -0.4662197 0.8725882 0.01940441 0 0 0 1 0.9878367 0.03455213 -0.1516073 0 0.04115563 0.882131 0.4692026 0.0858748 0.1499495 -0.4697349 0.8699794 0.01940441 0 0 0 1 0.9869303 0.01349148 -0.1605807 0 0.06224265 0.8872414 0.457087 0.0858748 0.1486406 -0.461108 0.8748057 0.01940441 0 0 0 1 0.9864268 -0.006283641 -0.1640799 0 0.07833466 0.8962314 0.4366155 0.0858748 0.14431 -0.4435423 0.8845592 0.01940441 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Head_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_Head_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_Head_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_Head_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_Head_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_Head_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_Head_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_Head_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_Head_pose_matrix-sampler\" target=\"mixamorig_Head/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_HeadTop_End_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_HeadTop_End_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_HeadTop_End_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_HeadTop_End_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_HeadTop_End_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_HeadTop_End_pose_matrix-output-array\" count=\"1856\">1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1 1 -2.79397e-9 2.98023e-8 -1.49012e-8 -5.58794e-9 0.9999999 0 0.5703413 -1.49012e-8 7.45058e-9 1 0.1288749 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_HeadTop_End_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_HeadTop_End_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_HeadTop_End_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_HeadTop_End_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_HeadTop_End_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_HeadTop_End_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_HeadTop_End_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_HeadTop_End_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_HeadTop_End_pose_matrix-sampler\" target=\"mixamorig_HeadTop_End/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftShoulder_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftShoulder_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftShoulder_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftShoulder_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftShoulder_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftShoulder_pose_matrix-output-array\" count=\"1856\">-0.03501273 0.9672974 -0.2512164 0.1223452 0.001197189 -0.2513298 -0.9679006 0.231406 -0.9993861 -0.03418954 0.007641762 -0.004835844 0 0 0 1 -0.01059809 0.9762426 -0.2164222 0.1223452 6.53177e-4 -0.2164276 -0.9762985 0.231406 -0.9999437 -0.01048817 0.001656115 -0.004835844 0 0 0 1 0.01493819 0.9829971 -0.1830122 0.1223452 0.001558125 -0.1830552 -0.9831014 0.231406 -0.999887 0.01440067 -0.004266113 -0.004835844 0 0 0 1 0.04064437 0.9873645 -0.1531638 0.1223452 0.003607064 -0.1534344 -0.9881523 0.231406 -0.9991672 0.03961042 -0.009797722 -0.004835844 0 0 0 1 0.06576284 0.9895641 -0.1282116 0.1223452 0.006316423 -0.1289 -0.9916375 0.231406 -0.9978152 0.06440312 -0.01472726 -0.004835844 0 0 0 1 0.09464264 0.9886342 -0.1168132 0.1223452 0.007779777 -0.1180708 -0.9929748 0.231406 -0.9954809 0.09306905 -0.01886573 -0.004835844 0 0 0 1 0.1270539 0.9860688 -0.1073576 0.1223452 0.009538502 -0.1094443 -0.9939473 0.231406 -0.99185 0.1252609 -0.02331093 -0.004835844 0 0 0 1 0.1607145 0.9820526 -0.09871049 0.1223452 0.01173964 -0.1019054 -0.9947248 0.231406 -0.9869312 0.1587079 -0.02790654 -0.004835844 0 0 0 1 0.1628554 0.9817539 -0.09817106 0.1223452 0.01189658 -0.101446 -0.9947702 0.231406 -0.9865783 0.1608358 -0.02820051 -0.004835844 0 0 0 1 0.1912655 0.977312 -0.09098665 0.1223452 0.01418668 -0.09544086 -0.9953338 0.231406 -0.9814358 0.1890823 -0.0321193 -0.004835844 0 0 0 1 0.2139609 0.9731362 -0.08501123 0.1223452 0.01630867 -0.09057301 -0.9957563 0.231406 -0.976706 0.2116666 -0.03524956 -0.004835844 0 0 0 1 0.2248213 0.9709641 -0.08175886 0.1223452 0.01737288 -0.08788777 -0.995979 0.231406 -0.9742453 0.222497 -0.03662738 -0.004835844 0 0 0 1 0.2231577 0.9713818 -0.08135143 0.1223452 0.0170435 -0.08733138 -0.9960334 0.231406 -0.9746332 0.2208862 -0.03604436 -0.004835844 0 0 0 1 0.2120771 0.9737508 -0.08266057 0.1223452 0.01564589 -0.08795696 -0.9960014 0.231406 -0.9771274 0.2099359 -0.03388882 -0.004835844 0 0 0 1 0.1970914 0.9768055 -0.08370093 0.1223452 0.01392013 -0.08815514 -0.9960095 0.231406 -0.980286 0.1951399 -0.03097183 -0.004835844 0 0 0 1 0.1830447 0.9796076 -0.08284667 0.1223452 0.01250273 -0.08658319 -0.9961662 0.231406 -0.983025 0.1813072 -0.02809632 -0.004835844 0 0 0 1 0.1710429 0.981976 -0.08042018 0.1223452 0.01152819 -0.08361203 -0.9964317 0.231406 -0.9851961 0.1695056 -0.02562156 -0.004835844 0 0 0 1 0.1574939 0.9842952 -0.07973917 0.1223452 0.01044509 -0.08240268 -0.9965444 0.231406 -0.9874646 0.1561168 -0.02325895 -0.004835844 0 0 0 1 0.1362149 0.9868907 -0.08655798 0.1223452 0.008263797 -0.08850119 -0.9960417 0.231406 -0.9906448 0.1349604 -0.02021059 -0.004835844 0 0 0 1 0.1025111 0.9890199 -0.106448 0.1223452 0.00462541 -0.1074845 -0.9941959 0.231406 -0.9947211 0.1014239 -0.01559293 -0.004835844 0 0 0 1 0.05683954 0.9883695 -0.1410489 0.1223452 9.40025e-4 -0.1413302 -0.9899619 0.231406 -0.9983827 0.05613647 -0.008962214 -0.004835844 0 0 0 1 0.005784862 0.9826059 -0.1856128 0.1223452 -3.66747e-4 -0.1856138 -0.9826227 0.231406 -0.9999831 0.005752467 -7.13348e-4 -0.004835844 0 0 0 1 -0.04065489 0.9722813 -0.2302522 0.1223452 0.001536399 -0.2303816 -0.9730991 0.231406 -0.999172 -0.03991494 0.007872373 -0.004835844 0 0 0 1 -0.07399827 0.9614539 -0.2648225 0.1223452 0.004746556 -0.265208 -0.9641796 0.231406 -0.997247 -0.07260458 0.01506135 -0.004835844 0 0 0 1 -0.09076215 0.9546033 -0.2837164 0.1223452 0.006703973 -0.2843001 -0.9587119 0.231406 -0.99585 -0.08891675 0.01940411 -0.004835844 0 0 0 1 -0.09249519 0.9533601 -0.2873133 0.1223452 0.006632239 -0.287954 -0.9576213 0.231406 -0.995691 -0.09048086 0.02031147 -0.004835844 0 0 0 1 -0.08358283 0.956355 -0.279998 0.1223452 0.005555838 -0.2805296 -0.9598293 0.231406 -0.9964854 -0.08178081 0.01813412 -0.004835844 0 0 0 1 -0.06875498 0.9612697 -0.2668952 0.1223452 0.004734755 -0.2672108 -0.9636263 0.231406 -0.9976224 -0.06751768 0.01382074 -0.004835844 0 0 0 1 -0.05134348 0.9665194 -0.251404 0.1223452 0.004617721 -0.2515035 -0.9678454 0.231406 -0.9986704 -0.05085337 0.008450001 -0.004835844 0 0 0 1 -0.03273676 0.9715657 -0.234496 0.1223452 0.004944742 -0.2344614 -0.9721129 0.231406 -0.9994517 -0.03298332 0.002871394 -0.004835844 0 0 0 1 -0.01290538 0.9763799 -0.215675 0.1223452 0.005345851 -0.2156225 -0.976462 0.231406 -0.9999024 -0.01375452 -0.002436817 -0.004835844 0 0 0 1 0.008619346 0.9808368 -0.1946398 0.1223452 0.005761802 -0.1946925 -0.9808475 0.231406 -0.9999461 0.007332839 -0.007329404 -0.004835844 0 0 0 1 0.0320369 0.9844835 -0.1725284 0.1223452 0.006443471 -0.1728168 -0.9849329 0.231406 -0.9994659 0.03044258 -0.01187998 -0.004835844 0 0 0 1 0.05720521 0.9867811 -0.1516261 0.1223452 0.007664323 -0.1523044 -0.9883038 0.231406 -0.998333 0.05537406 -0.01627553 -0.004835844 0 0 0 1 0.08396066 0.9874011 -0.1341254 0.1223452 0.009446919 -0.1353833 -0.9907482 0.231406 -0.9964241 0.08191688 -0.02069473 -0.004835844 0 0 0 1 0.1121911 0.9863294 -0.1206951 0.1223452 0.01152843 -0.1227457 -0.9923713 0.231406 -0.9936196 0.1099438 -0.02514172 -0.004835844 0 0 0 1 0.1412633 0.9838156 -0.1102329 0.1223452 0.01353189 -0.113258 -0.9934734 0.231406 -0.9898793 0.1388498 -0.02931207 -0.004835844 0 0 0 1 0.1692258 0.9803922 -0.1009634 0.1223452 0.01514894 -0.1050162 -0.9943551 0.231406 -0.9854608 0.1667411 -0.03262329 -0.004835844 0 0 0 1 0.1927175 0.9769352 -0.09196387 0.1223452 0.01617682 -0.09687106 -0.9951653 0.231406 -0.9811211 0.1902982 -0.03447241 -0.004835844 0 0 0 1 0.2080593 0.9745177 -0.08382567 0.1223452 0.01644868 -0.08917502 -0.9958801 0.231406 -0.9779778 0.2058234 -0.03458318 -0.004835844 0 0 0 1 0.2128968 0.9739568 -0.07799475 0.1223452 0.01587379 -0.08326191 -0.9964014 0.231406 -0.9769458 0.2108926 -0.0331865 -0.004835844 0 0 0 1 0.2072001 0.975386 -0.07543406 0.1223452 0.01461148 -0.08018421 -0.9966732 0.231406 -0.9781893 0.2054087 -0.03086591 -0.004835844 0 0 0 1 0.1929145 0.9782813 -0.07582435 0.1223452 0.01307324 -0.07983164 -0.9967226 0.231406 -0.9811282 0.1912911 -0.02818987 -0.004835844 0 0 0 1 0.1725681 0.9818981 -0.07807925 0.1223452 0.01159894 -0.08128858 -0.9966233 0.231406 -0.9849291 0.1710798 -0.02541676 -0.004835844 0 0 0 1 0.1478024 0.9856198 -0.0819021 0.1223452 0.01012757 -0.08431557 -0.9963876 0.231406 -0.988965 0.146439 -0.02244395 -0.004835844 0 0 0 1 0.1188072 0.988906 -0.08916152 0.1223452 0.0082421 -0.09077659 -0.9958372 0.231406 -0.9928829 0.1175778 -0.0189355 -0.004835844 0 0 0 1 0.08500256 0.9909632 -0.1037619 0.1223452 0.005643904 -0.104616 -0.9944967 0.231406 -0.9963647 0.08394919 -0.01448554 -0.004835844 0 0 0 1 0.04642807 0.9904794 -0.1295967 0.1223452 0.002742082 -0.1298624 -0.9915284 0.231406 -0.9989178 0.04567944 -0.008745164 -0.004835844 0 0 0 1 0.004898038 0.9858554 -0.1675264 0.1223452 7.57068e-4 -0.1675321 -0.9858662 0.231406 -0.9999877 0.004702017 -0.001566887 -0.004835844 0 0 0 1 -0.03581787 0.9762567 -0.2136348 0.1223452 9.14216e-4 -0.2137398 -0.9768901 0.231406 -0.9993579 -0.0351854 0.00676325 -0.004835844 0 0 0 1 -0.07089607 0.9630351 -0.259879 0.1223452 0.00328511 -0.2603077 -0.9655202 0.231406 -0.9974783 -0.06930524 0.01529112 -0.004835844 0 0 0 1 -0.09582978 0.9498522 -0.2976536 0.1223452 0.006512582 -0.2984251 -0.9544109 0.231406 -0.9953765 -0.09339942 0.02241206 -0.004835844 0 0 0 1 -0.1074589 0.9410223 -0.3208269 0.1223452 0.00880304 -0.3217823 -0.9467729 0.231406 -0.9941704 -0.1045634 0.02629453 -0.004835844 0 0 0 1 -0.1045525 0.9391219 -0.3272901 0.1223452 0.009275496 -0.3281587 -0.9445772 0.231406 -0.994476 -0.1017936 0.02559903 -0.004835844 0 0 0 1 -0.08835009 0.9437309 -0.3186948 0.1223452 0.008495182 -0.3192205 -0.9476424 0.231406 -0.9960533 -0.08643158 0.0201861 -0.004835844 0 0 0 1 -0.06280991 0.952149 -0.2991106 0.1223452 0.007767797 -0.2992269 -0.9541504 0.231406 -0.9979951 -0.06225346 0.01139835 -0.004835844 0 0 0 1 -0.0336157 0.9613852 -0.2731455 0.1223452 0.007872999 -0.2730367 -0.9619712 0.231406 -0.9994038 -0.03448774 0.001609415 -0.004835844 0 0 0 1 -0.005783666 0.9696944 -0.2442524 0.1223452 0.008496642 -0.2442001 -0.9696875 0.231406 -0.9999471 -0.007683605 -0.006826758 -0.004835844 0 0 0 1 0.0186385 0.9766362 -0.2140893 0.1223452 0.008821994 -0.2142788 -0.9767325 0.231406 -0.9997873 0.01631622 -0.01260966 -0.004835844 0 0 0 1 0.04096445 0.9821524 -0.1835724 0.1223452 0.008485824 -0.1840619 -0.982878 0.231406 -0.9991244 0.03870537 -0.01587433 -0.004835844 0 0 0 1 0.06413745 0.985969 -0.1541155 0.1223452 0.007948518 -0.1549333 -0.9878929 0.231406 -0.9979094 0.06213603 -0.01777396 -0.004835844 0 0 0 1 0.09039064 0.987646 -0.1280038 0.1223452 0.008092016 -0.1292541 -0.9915785 0.231406 -0.9958733 0.08859369 -0.01967534 -0.004835844 0 0 0 1 0.1199739 0.9869448 -0.1074533 0.1223452 0.009506524 -0.1093721 -0.9939554 0.231406 -0.9927315 0.1182272 -0.02250409 -0.004835844 0 0 0 1 0.1512888 0.9840552 -0.09352605 0.1223452 0.01208699 -0.09644964 -0.9952645 0.231406 -0.9884158 0.149442 -0.02648598 -0.004835844 0 0 0 1 0.1817022 0.9795937 -0.08590835 0.1223452 0.01516593 -0.09014383 -0.9958134 0.231406 -0.9832366 0.1796387 -0.03123569 -0.004835844 0 0 0 1 0.2084324 0.9744717 -0.08343076 0.1223452 0.01794574 -0.08910045 -0.995861 0.231406 -0.977872 0.2060726 -0.03605893 -0.004835844 0 0 0 1 0.2294476 0.9696278 -0.08470881 0.1223452 0.01989347 -0.09168428 -0.9955894 0.231406 -0.9731177 0.2267505 -0.04032597 -0.004835844 0 0 0 1 0.244191 0.9656808 -0.08849492 0.1223452 0.02092272 -0.09648293 -0.9951147 0.231406 -0.9695014 0.2411465 -0.04376489 -0.004835844 0 0 0 1 0.253516 0.9627823 -0.09370145 0.1223452 0.02131695 -0.1024028 -0.9945145 0.231406 -0.9670962 0.2501281 -0.04648423 -0.004835844 0 0 0 1 0.2585177 0.9608903 -0.09928879 0.1223452 0.02147818 -0.1084747 -0.9938673 0.231406 -0.9657676 0.2547998 -0.04868078 -0.004835844 0 0 0 1 0.258974 0.9602362 -0.1043024 0.1223452 0.02166536 -0.1137342 -0.993275 0.231406 -0.9656413 0.2549727 -0.05025801 -0.004835844 0 0 0 1 0.2527458 0.9614621 -0.108213 0.1223452 0.02183187 -0.1174831 -0.9928349 0.231406 -0.9672863 0.2485725 -0.05068383 -0.004835844 0 0 0 1 0.2368268 0.9651359 -0.1114701 0.1223452 0.02158192 -0.1199317 -0.9925475 0.231406 -0.9713122 0.2326562 -0.04923248 -0.004835844 0 0 0 1 0.2093713 0.9709415 -0.1159161 0.1223452 0.02030358 -0.1228346 -0.9922194 0.231406 -0.9776251 0.2053889 -0.04543158 -0.004835844 0 0 0 1 0.1712583 0.9773076 -0.1246616 0.1223452 0.01759827 -0.1295452 -0.9914173 0.231406 -0.9850687 0.1675947 -0.0393846 -0.004835844 0 0 0 1 0.1261926 0.981915 -0.1411326 0.1223452 0.01382828 -0.1439973 -0.9894812 0.231406 -0.9919093 0.1229137 -0.03174952 -0.004835844 0 0 0 1 0.07950633 0.9826776 -0.1674014 0.1223452 0.01022905 -0.1687284 -0.9856094 0.231406 -0.9967818 0.07664989 -0.0234668 -0.004835844 0 0 0 1 0.03667494 0.9785966 -0.2024931 0.1223452 0.008248806 -0.2029189 -0.9791608 0.231406 -0.9992931 0.03424039 -0.01551419 -0.004835844 0 0 0 1 0.002337798 0.9703512 -0.2416885 0.1223452 0.008529693 -0.2416997 -0.9703137 0.231406 -0.9999608 2.06947e-4 -0.008841813 -0.004835844 0 0 0 1 -0.02024956 0.9605312 -0.2774341 0.1223452 0.01037386 -0.2772741 -0.9607349 0.231406 -0.9997411 -0.02233243 -0.004349649 -0.004835844 0 0 0 1 -0.02975696 0.9528388 -0.3020146 0.1223452 0.01224405 -0.3017782 -0.9532996 0.231406 -0.9994824 -0.03206514 -0.00268662 -0.004835844 0 0 0 1 -0.02717394 0.950258 -0.310276 0.1223452 0.01295283 -0.3100299 -0.9506385 0.231406 -0.9995466 -0.02985147 -0.003883779 -0.004835844 0 0 0 1 -0.01553925 0.9534101 -0.3012775 0.1223452 0.01241893 -0.3011067 -0.9535095 0.231406 -0.9998019 -0.01855832 -0.007161349 -0.004835844 0 0 0 1 0.001174275 0.9605941 -0.2779526 0.1223452 0.0113177 -0.2779477 -0.9605295 0.231406 -0.9999353 -0.002017811 -0.01119807 -0.004835844 0 0 0 1 0.01957128 0.9691542 -0.2456766 0.1223452 0.0102379 -0.2459051 -0.9692398 0.231406 -0.9997558 0.01645412 -0.01473475 -0.004835844 0 0 0 1 0.03787174 0.976917 -0.2102367 0.1223452 0.009340078 -0.2107245 -0.9775009 0.231406 -0.999239 0.03505607 -0.01710498 -0.004835844 0 0 0 1 0.05588155 0.982691 -0.1766219 0.1223452 0.008627057 -0.1773669 -0.9841069 0.231406 -0.9984 0.05346976 -0.01838928 -0.004835844 0 0 0 1 0.07413605 0.9861308 -0.1484917 0.1223452 0.008244693 -0.1495024 -0.988727 0.231406 -0.997214 0.07207612 -0.01921377 -0.004835844 0 0 0 1 0.09303191 0.9873999 -0.1280099 0.1223452 0.008470625 -0.1293477 -0.9915631 0.231406 -0.9956271 0.09116276 -0.02039734 -0.004835844 0 0 0 1 0.1125448 0.9868849 -0.1157222 0.1223452 0.009529769 -0.1175288 -0.9930238 0.231406 -0.9936008 0.1106569 -0.022632 -0.004835844 0 0 0 1 0.1324586 0.9849914 -0.1106642 0.1223452 0.01146567 -0.1131632 -0.9935102 0.231406 -0.9911222 0.1303302 -0.02628294 -0.004835844 0 0 0 1 0.1525826 0.9820593 -0.1108086 0.1223452 0.01411051 -0.1142748 -0.9933489 0.231406 -0.9881901 0.1500042 -0.03129366 -0.004835844 0 0 0 1 0.1726171 0.9784042 -0.1137022 0.1223452 0.01710901 -0.1183958 -0.9928192 0.231406 -0.9848403 0.1694323 -0.03717664 -0.004835844 0 0 0 1 0.1918373 0.9744101 -0.117147 0.1223452 0.02001393 -0.1232232 -0.9921772 0.231406 -0.9812227 0.187992 -0.0431405 -0.004835844 0 0 0 1 0.2090516 0.9705447 -0.1197514 0.1223452 0.02243173 -0.1271842 -0.9916254 0.231406 -0.9776472 0.2046147 -0.04835895 -0.004835844 0 0 0 1 0.2230079 0.9672616 -0.1211299 0.1223452 0.02413747 -0.1297003 -0.9912593 0.231406 -0.9745178 0.2181349 -0.05227131 -0.004835844 0 0 0 1 0.232883 0.9648642 -0.1216656 0.1223452 0.02509788 -0.1310265 -0.9910613 0.231406 -0.9721808 0.2277478 -0.05472985 -0.004835844 0 0 0 1 0.2383828 0.9634755 -0.1220187 0.1223452 0.02541521 -0.1317867 -0.9909523 0.231406 -0.9708387 0.2331249 -0.05590257 -0.004835844 0 0 0 1 0.2393537 0.9631426 -0.1227432 0.1223452 0.0252324 -0.1325456 -0.9908557 0.231406 -0.9706044 0.234068 -0.05602759 -0.004835844 0 0 0 1 0.2353166 0.9639488 -0.1242137 0.1223452 0.02464658 -0.1336798 -0.9907179 0.231406 -0.9716063 0.230071 -0.05521506 -0.004835844 0 0 0 1 0.2254382 0.9659675 -0.1268242 0.1223452 0.0236755 -0.1355685 -0.990485 0.231406 -0.9739696 0.2202906 -0.05343202 -0.004835844 0 0 0 1 0.2090075 0.9690633 -0.1312699 0.1223452 0.02228662 -0.1389199 -0.9900528 0.231406 -0.9776598 0.204003 -0.05063239 -0.004835844 0 0 0 1 0.185942 0.9727212 -0.1387048 0.1223452 0.02045757 -0.1449687 -0.9892249 0.231406 -0.9823477 0.1811009 -0.04685524 -0.004835844 0 0 0 1 0.1568467 0.9760625 -0.1506678 0.1223452 0.01821774 -0.1553893 -0.9876853 0.231406 -0.9874548 0.1521704 -0.04215392 -0.004835844 0 0 0 1 0.1226998 0.9780023 -0.1686891 0.1223452 0.01568589 -0.1718633 -0.9849958 0.231406 -0.9923199 0.1182128 -0.03642839 -0.004835844 0 0 0 1 0.08461769 0.9774222 -0.1936132 0.1223452 0.01312277 -0.1953864 -0.9806384 0.231406 -0.996327 0.08043872 -0.02935958 -0.004835844 0 0 0 1 0.04400314 0.9733959 -0.2248652 0.1223452 0.0109697 -0.2255404 -0.974172 0.231406 -0.9989713 0.04039997 -0.02060232 -0.004835844 0 0 0 1 0.002929933 0.9655849 -0.2600719 0.1223452 0.009757042 -0.2600883 -0.9655356 0.231406 -0.9999481 2.91482e-4 -0.01018324 -0.004835844 0 0 0 1 -0.03562595 0.9547556 -0.2952497 0.1223452 0.009815633 -0.2950887 -0.9554194 0.231406 -0.999317 -0.03693572 0.00114134 -0.004835844 0 0 0 1 -0.0680483 0.9430285 -0.3256785 0.1223452 0.01093781 -0.3257104 -0.9454062 0.231406 -0.9976218 -0.06789544 0.0118494 -0.004835844 0 0 0 1 -0.09110045 0.9332387 -0.3475141 0.1223452 0.01242182 -0.3478732 -0.9374593 0.231406 -0.9957641 -0.08971965 0.02009892 -0.004835844 0 0 0 1 -0.09926428 0.9303473 -0.352988 0.1223452 0.01257241 -0.353539 -0.9353354 0.231406 -0.9949816 -0.09728321 0.02339715 -0.004835844 0 0 0 1 -0.09094895 0.9366738 -0.3381867 0.1223452 0.009708494 -0.3387441 -0.9408283 0.231406 -0.9958081 -0.0888506 0.02171475 -0.004835844 0 0 0 1 -0.07655199 0.9460555 -0.3148313 0.1223452 0.006281108 -0.315294 -0.9489732 0.231406 -0.9970458 -0.07462326 0.01819408 -0.004835844 0 0 0 1 -0.05736512 0.9568481 -0.2848694 0.1223452 0.003193587 -0.285162 -0.958474 0.231406 -0.9983479 -0.05589269 0.01330253 -0.004835844 0 0 0 1 -0.03501273 0.9672974 -0.2512164 0.1223452 0.001197189 -0.2513298 -0.9679006 0.231406 -0.9993861 -0.03418954 0.007641762 -0.004835844 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftShoulder_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftShoulder_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftShoulder_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftShoulder_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftShoulder_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftShoulder_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftShoulder_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftShoulder_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftShoulder_pose_matrix-sampler\" target=\"mixamorig_LeftShoulder/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftArm_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftArm_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftArm_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftArm_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftArm_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftArm_pose_matrix-output-array\" count=\"1856\">0.9666396 -0.0792796 0.243562 0 0.2171604 0.7579051 -0.6151596 0.2750294 -0.1358273 0.6475298 0.7498376 0 0 0 0 1 0.9762592 -0.1794091 0.1213699 0 0.2159069 0.7610077 -0.6117612 0.2750294 0.0173921 0.6234422 0.7816762 0 0 0 0 1 0.9601266 -0.2795024 0.005949557 0 0.226721 0.7660112 -0.6015182 0.2750294 0.1635684 0.5788825 0.798837 0 0 0 0 1 0.922108 -0.3750304 -0.09523113 0 0.252353 0.7694609 -0.5867264 0.2750294 0.2933169 0.5169933 0.8041663 0 0 0 0 1 0.8679827 -0.4634459 -0.1783931 0 0.2927701 0.7677278 -0.5699823 0.2750294 0.4011134 0.4425066 0.8020576 0 0 0 0 1 0.8024055 -0.5608121 -0.2040477 0 0.3724588 0.73776 -0.5630141 0.2750294 0.4662833 0.3757662 0.8008619 0 0 0 0 1 0.7235377 -0.6604891 -0.2006171 0 0.4828064 0.6919335 -0.5367737 0.2750294 0.4933469 0.2915168 0.8195285 0 0 0 0 1 0.6350482 -0.7513849 -0.1792613 0 0.6027114 0.6271127 -0.4934254 0.2750294 0.4831695 0.2053062 0.851115 0 0 0 0 1 0.6291068 -0.7567867 -0.1774782 0 0.6103042 0.6222935 -0.4901831 0.2750294 0.4814076 0.2000619 0.8533594 0 0 0 0 1 0.5446023 -0.8252921 -0.1493362 0 0.7101419 0.5484915 -0.4414246 0.2750294 0.4462139 0.1343511 0.8847842 0 0 0 0 1 0.45809 -0.8812379 -0.1165084 0 0.7935894 0.4644895 -0.3930215 0.2750294 0.4004623 0.0875794 0.9121186 0 0 0 0 1 0.3802383 -0.9211509 -0.08306672 0 0.8498943 0.3834218 -0.3614796 0.2750294 0.3648269 0.06685051 0.9286728 0 0 0 0 1 0.3156351 -0.9476631 -0.04805301 0 0.8812856 0.3115456 -0.3553524 0.2750294 0.3517252 0.06981328 0.9334966 0 0 0 0 1 0.2724687 -0.9621263 -0.008608758 0 0.890655 0.2555929 -0.3760406 0.2750294 0.363999 0.09479177 0.9265632 0 0 0 0 1 0.2615698 -0.9644089 0.03869113 0 0.8809451 0.2221698 -0.4178235 0.2750294 0.3943567 0.1433747 0.9077043 0 0 0 0 1 0.2903603 -0.9519981 0.09690526 0 0.8566766 0.2134853 -0.4696058 0.2750294 0.426376 0.2193713 0.8775423 0 0 0 0 1 0.3557225 -0.9193546 0.1680736 0 0.8256884 0.2248988 -0.5173581 0.2750294 0.437836 0.3228124 0.839102 0 0 0 0 1 0.4415815 -0.8610603 0.2521527 0 0.7991083 0.2496569 -0.5468981 0.2750294 0.4079606 0.4429974 0.7983243 0 0 0 0 1 0.5248569 -0.7779497 0.3454268 0 0.7860397 0.2872687 -0.5473745 0.2750294 0.3265994 0.5588124 0.7622744 0 0 0 0 1 0.5872605 -0.6794872 0.4397981 0 0.7846202 0.3444949 -0.5154557 0.2750294 0.1987375 0.6477811 0.7354475 0 0 0 0 1 0.6240237 -0.5791405 0.5245862 0 0.7802684 0.4256211 -0.4582883 0.2750294 0.04213834 0.6953007 0.7174829 0 0 0 0 1 0.6428454 -0.4883127 0.59017 0 0.7569361 0.5231073 -0.3916717 0.2750294 -0.1174638 0.6985053 0.7058985 0 0 0 0 1 0.6563218 -0.4145778 0.6303707 0 0.7109339 0.6195682 -0.3327287 0.2750294 -0.2526156 0.6665291 0.7013735 0 0 0 0 1 0.6753232 -0.3628063 0.6421142 0 0.6532566 0.698378 -0.2924455 0.2750294 -0.3423371 0.6169606 0.7086363 0 0 0 0 1 0.7056929 -0.3357969 0.6238894 0 0.5997328 0.7519583 -0.2736415 0.2750294 -0.3772507 0.5672739 0.73204 0 0 0 0 1 0.7472648 -0.3337295 0.574648 0 0.5597054 0.7822435 -0.273542 0.2750294 -0.3582255 0.5260419 0.7713331 0 0 0 0 1 0.7947836 -0.3527344 0.4938595 0 0.5318488 0.7967865 -0.286824 0.2750294 -0.2923279 0.4906218 0.8208742 0 0 0 0 1 0.8400768 -0.384044 0.3831205 0 0.5079461 0.8048115 -0.3070331 0.2750294 -0.1904255 0.452536 0.8711771 0 0 0 0 1 0.8743753 -0.4165374 0.2489267 0 0.4807136 0.8135263 -0.3272451 0.2750294 -0.06619862 0.4057975 0.9115624 0 0 0 0 1 0.8904454 -0.4429109 0.1045814 0 0.4504082 0.8248184 -0.3417707 0.2750294 0.06511337 0.3514324 0.9339463 0 0 0 0 1 0.8848282 -0.4648431 -0.03162579 0 0.4261021 0.8348036 -0.348626 0.2750294 0.1884577 0.2949983 0.9367283 0 0 0 0 1 0.8590525 -0.491711 -0.1423005 0 0.4209776 0.8367906 -0.3500852 0.2750294 0.2912165 0.2408363 0.9258462 0 0 0 0 1 0.8175681 -0.533403 -0.216942 0 0.444921 0.824321 -0.3500574 0.2750294 0.3655516 0.1896737 0.9112608 0 0 0 0 1 0.7638209 -0.5933917 -0.2538974 0 0.4990346 0.7924334 -0.3507331 0.2750294 0.409319 0.1411937 0.9014002 0 0 0 0 1 0.6991233 -0.6667129 -0.258303 0 0.5747854 0.7389335 -0.3515666 0.2750294 0.4252629 0.09731969 0.8998226 0 0 0 0 1 0.625246 -0.7430161 -0.238735 0 0.6578918 0.6663635 -0.3509103 0.2750294 0.4198163 0.06234348 0.9054656 0 0 0 0 1 0.5466143 -0.8120586 -0.2043864 0 0.734645 0.582185 -0.3483641 0.2750294 0.4018829 0.04026936 0.9148054 0 0 0 0 1 0.4694321 -0.8677744 -0.1630991 0 0.7965497 0.4958996 -0.3458213 0.2750294 0.3809758 0.03242302 0.9240165 0 0 0 0 1 0.3995884 -0.9087749 -0.1202378 0 0.8408473 0.4156013 -0.3467724 0.2750294 0.3651091 0.03746453 0.9302108 0 0 0 0 1 0.3418689 -0.9364651 -0.07847676 0 0.8682845 0.3467102 -0.3547876 0.2750294 0.359455 0.05315074 0.9316478 0 0 0 0 1 0.3003722 -0.9530554 -0.03823482 0 0.8808677 0.2925504 -0.3721376 0.2750294 0.3658535 0.07810003 0.9273897 0 0 0 0 1 0.2788084 -0.9603453 0.001737818 0 0.8808945 0.2550205 -0.3987348 0.2750294 0.38248 0.1127014 0.9170647 0 0 0 0 1 0.2801074 -0.958969 0.04379895 0 0.8711573 0.234762 -0.4312449 0.2750294 0.4032682 0.1589506 0.9011713 0 0 0 0 1 0.3054736 -0.947871 0.09069948 0 0.8557271 0.2314983 -0.4627523 0.2750294 0.4176328 0.2189725 0.8818358 0 0 0 0 1 0.3529797 -0.9243771 0.1446794 0 0.8401425 0.2450872 -0.483831 0.2750294 0.4117832 0.2923339 0.8631195 0 0 0 0 1 0.4162344 -0.8854587 0.2066689 0 0.8294214 0.2766153 -0.4853289 0.2750294 0.372571 0.3734263 0.8495551 0 0 0 0 1 0.4845604 -0.8300741 0.2760041 0 0.8242027 0.3275254 -0.4619707 0.2750294 0.2930715 0.4513362 0.8428553 0 0 0 0 1 0.5455139 -0.7611744 0.3507536 0 0.8191196 0.3956544 -0.4153318 0.2750294 0.1773627 0.5138786 0.839328 0 0 0 0 1 0.588687 -0.6857157 0.4280674 0 0.807315 0.4717927 -0.3544771 0.2750294 0.04111136 0.5542612 0.831327 0 0 0 0 1 0.6088282 -0.6127885 0.5038043 0 0.7877339 0.5421037 -0.2925735 0.2750294 -0.09382835 0.5749907 0.8127623 0 0 0 0 1 0.6073672 -0.5515054 0.5717927 0 0.7667711 0.5952132 -0.2403814 0.2750294 -0.2077668 0.5844339 0.7843915 0 0 0 0 1 0.5922263 -0.5099925 0.6238396 0 0.7524858 0.6269159 -0.2018458 0.2750294 -0.2881551 0.5889688 0.7550381 0 0 0 0 1 0.5755926 -0.4952274 0.650725 0 0.7487034 0.6391605 -0.1758323 0.2750294 -0.3288408 0.5884079 0.7386746 0 0 0 0 1 0.5621928 -0.5066829 0.6536143 0 0.754923 0.6371291 -0.1554278 0.2750294 -0.3376841 0.580809 0.7406961 0 0 0 0 1 0.5539675 -0.5415179 0.6323593 0 0.7689213 0.623996 -0.1392445 0.2750294 -0.3191862 0.5633715 0.7620583 0 0 0 0 1 0.5494044 -0.5926543 0.5889958 0 0.7888988 0.6001894 -0.1319528 0.2750294 -0.2753066 0.5371535 0.797291 0 0 0 0 1 0.5453496 -0.6503378 0.5288239 0 0.8123448 0.5655761 -0.1421955 0.2750294 -0.206615 0.5071335 0.8367354 0 0 0 0 1 0.5363127 -0.70485 0.4642794 0 0.8356093 0.5208786 -0.1744781 0.2750294 -0.1188523 0.4815309 0.8683331 0 0 0 0 1 0.5195456 -0.7533848 0.4030929 0 0.8542857 0.4670581 -0.2281508 0.2750294 -0.0163824 0.4628913 0.8862638 0 0 0 0 1 0.4916965 -0.7982863 0.3478129 0 0.8656986 0.4051123 -0.2940244 0.2750294 0.09381251 0.4456717 0.8902676 0 0 0 0 1 0.4483725 -0.8433005 0.2963218 0 0.8707484 0.3372084 -0.3578934 0.2750294 0.2018896 0.4184913 0.8854973 0 0 0 0 1 0.386494 -0.889176 0.2449258 0 0.8733263 0.2674549 -0.4071477 0.2750294 0.2965194 0.3712602 0.8799105 0 0 0 0 1 0.3086655 -0.9316618 0.1916561 0 0.8771946 0.2009129 -0.4360775 0.2750294 0.3677706 0.3027218 0.8792637 0 0 0 0 1 0.2265196 -0.9641953 0.1378996 0 0.8827282 0.1433826 -0.4474735 0.2750294 0.4116795 0.2230893 0.8836014 0 0 0 0 1 0.1588673 -0.9833884 0.08779818 0 0.8867053 0.1030077 -0.4507142 0.2750294 0.4341834 0.1494549 0.88834 0 0 0 0 1 0.1241434 -0.9911988 0.04597309 0 0.8848233 0.08961344 -0.4572281 0.2750294 0.4490841 0.09743986 0.8881607 0 0 0 0 1 0.1328626 -0.9910221 0.01493371 0 0.8730494 0.1098873 -0.475089 0.2750294 0.4691828 0.07615936 0.8798112 0 0 0 0 1 0.185722 -0.9825824 -0.006268471 0 0.8472192 0.1633614 -0.5055023 0.2750294 0.4977219 0.08857211 0.8628026 0 0 0 0 1 0.2767825 -0.960699 -0.02118649 0 0.8037903 0.2435462 -0.542777 0.2750294 0.5266054 0.1332017 0.8396098 0 0 0 0 1 0.3972204 -0.9171249 -0.03313451 0 0.7414866 0.3420045 -0.5772613 0.2750294 0.540753 0.2047312 0.8158869 0 0 0 0 1 0.5359397 -0.8432231 -0.04175721 0 0.6616812 0.4502447 -0.599548 0.2750294 0.5243537 0.2936916 0.7992488 0 0 0 0 1 0.6779743 -0.7339288 -0.04122216 0 0.5680805 0.5587091 -0.6042587 0.2750294 0.4665143 0.3862544 0.7957211 0 0 0 0 1 0.8053496 -0.5923983 -0.02182333 0 0.4669116 0.656576 -0.5923696 0.2750294 0.3652473 0.4668748 0.805371 0 0 0 0 1 0.901699 -0.4316242 0.0252957 0 0.3672431 0.7336977 -0.5716821 0.2750294 0.2281924 0.5247748 0.8200852 0 0 0 0 1 0.9549829 -0.2780251 0.1034859 0 0.2874035 0.780607 -0.555024 0.2750294 0.0735288 0.5597808 0.8253722 0 0 0 0 1 0.9689364 -0.1397031 0.2040716 0 0.23192 0.799825 -0.5536184 0.2750294 -0.08587942 0.5837494 0.8073796 0 0 0 0 1 0.9495785 -0.02219677 0.3127428 0 0.2063068 0.7953523 -0.569958 0.2750294 -0.2360894 0.6057407 0.7598289 0 0 0 0 1 0.9071593 0.06858563 0.4151599 0 0.2131624 0.7757592 -0.5939355 0.2750294 -0.3627996 0.6272908 0.6891173 0 0 0 0 1 0.8557696 0.1264964 0.501654 0 0.2455782 0.754123 -0.6090894 0.2750294 -0.4553564 0.6444359 0.6142908 0 0 0 0 1 0.8096235 0.1448247 0.5688021 0 0.2915132 0.7418947 -0.6038315 0.2750294 -0.509441 0.6546894 0.558437 0 0 0 0 1 0.7783409 0.1189054 0.6164795 0 0.3430912 0.7417752 -0.5762447 0.2750294 -0.5258079 0.6600236 0.5365586 0 0 0 0 1 0.7633005 0.04883754 0.6441949 0 0.4007424 0.7463259 -0.5314162 0.2750294 -0.5067325 0.6637866 0.5500996 0 0 0 0 1 0.7569196 -0.06020325 0.6507292 0 0.4698288 0.7422544 -0.4778277 0.2750294 -0.4542398 0.6674083 0.5901122 0 0 0 0 1 0.7459609 -0.1982333 0.6358036 0 0.5533459 0.7157375 -0.4260614 0.2750294 -0.3706088 0.6696445 0.6436037 0 0 0 0 1 0.7186041 -0.3490625 0.6014677 0 0.6449963 0.657882 -0.3888074 0.2750294 -0.2599767 0.6673431 0.6979008 0 0 0 0 1 0.6725801 -0.4925262 0.5523173 0 0.72883 0.5701941 -0.3790593 0.2750294 -0.1282314 0.6574929 0.742469 0 0 0 0 1 0.6160142 -0.6148353 0.4924472 0 0.7874682 0.4643733 -0.4052794 0.2750294 0.02050084 0.6374443 0.770224 0 0 0 0 1 0.5551826 -0.7058398 0.4399577 0 0.8153265 0.357327 -0.4555881 0.2750294 0.1643634 0.6116438 0.7738715 0 0 0 0 1 0.492907 -0.7725329 0.4002942 0 0.8194965 0.2576186 -0.5119159 0.2750294 0.2923486 0.5803667 0.7600703 0 0 0 0 1 0.4262303 -0.8246777 0.3717992 0 0.8127798 0.1686846 -0.5576153 0.2750294 0.3971362 0.5398634 0.7421796 0 0 0 0 1 0.3527049 -0.8688204 0.347491 0 0.8058493 0.0932751 -0.5847278 0.2750294 0.4756114 0.4862617 0.7330371 0 0 0 0 1 0.2756421 -0.9069295 0.3185914 0 0.8038446 0.03573027 -0.5937653 0.2750294 0.5271201 0.4197646 0.7388792 0 0 0 0 1 0.2049026 -0.9384163 0.2781903 0 0.8079717 0.001748264 -0.5892188 0.2750294 0.5524462 0.3455022 0.7585722 0 0 0 0 1 0.1534767 -0.9624415 0.2239457 0 0.8177968 -0.003498793 -0.5754967 0.2750294 0.5546654 0.2714674 0.7865444 0 0 0 0 1 0.1321815 -0.9783491 0.1592519 0 0.8311226 0.02184202 -0.5556602 0.2750294 0.5401512 0.2058058 0.8160151 0 0 0 0 1 0.1455534 -0.9850314 0.09234548 0 0.8429761 0.07461788 -0.532751 0.2750294 0.5178858 0.1553887 0.8412188 0 0 0 0 1 0.1912737 -0.9809726 0.03327008 0 0.8466116 0.1477347 -0.5112956 0.2750294 0.496652 0.1259642 0.8587606 0 0 0 0 1 0.2630961 -0.9647173 -0.01005873 0 0.836113 0.2332004 -0.4965205 0.2750294 0.4813477 0.1222224 0.8679668 0 0 0 0 1 0.3544309 -0.9344461 -0.03449313 0 0.8081379 0.3246631 -0.491434 0.2750294 0.4704172 0.1463042 0.8702317 0 0 0 0 1 0.4596221 -0.8871449 -0.0414906 0 0.7621702 0.4179936 -0.4943462 0.2750294 0.4558997 0.1955895 0.8682744 0 0 0 0 1 0.5727996 -0.8189718 -0.03443736 0 0.7000693 0.5106273 -0.4991621 0.2750294 0.4263843 0.2618114 0.8658241 0 0 0 0 1 0.6864397 -0.7270283 -0.01518951 0 0.6249798 0.6005093 -0.4987876 0.2750294 0.3717541 0.3328945 0.8665913 0 0 0 0 1 0.7913239 -0.6111305 0.01805222 0 0.5397928 0.6844772 -0.4900148 0.2750294 0.2871068 0.3975048 0.8715272 0 0 0 0 1 0.8776391 -0.47416 0.07015631 0 0.4469382 0.7566446 -0.4772158 0.2750294 0.1731933 0.4501787 0.8759815 0 0 0 0 1 0.9356567 -0.3214096 0.1457478 0 0.3512853 0.8086096 -0.4719631 0.2750294 0.03384051 0.4927945 0.8694875 0 0 0 0 1 0.9551107 -0.1684895 0.2436695 0 0.2706162 0.830888 -0.4862015 0.2750294 -0.1205422 0.5303171 0.8391863 0 0 0 0 1 0.9350668 -0.02771217 0.3533869 0 0.221408 0.8242044 -0.5212156 0.2750294 -0.276819 0.5656141 0.7768217 0 0 0 0 1 0.8832385 0.0917291 0.4598648 0 0.2102851 0.7990642 -0.5632731 0.2750294 -0.4191301 0.5942071 0.6864752 0 0 0 0 1 0.8174384 0.1764875 0.5483128 0 0.2312856 0.7712344 -0.5930467 0.2750294 -0.527543 0.6115959 0.5896176 0 0 0 0 1 0.7632701 0.2197522 0.6075589 0 0.2616814 0.7546402 -0.6016988 0.2750294 -0.5907129 0.6182456 0.5184892 0 0 0 0 1 0.7448621 0.2193432 0.630134 0 0.2769557 0.7575719 -0.591084 0.2750294 -0.607022 0.6147954 0.5035384 0 0 0 0 1 0.7722349 0.1845453 0.6079444 0 0.2713231 0.7694478 -0.5782161 0.2750294 -0.5744885 0.6114681 0.5441232 0 0 0 0 1 0.8273226 0.1356216 0.5451094 0 0.2609894 0.7665082 -0.5868133 0.2750294 -0.4974154 0.6277518 0.5987536 0 0 0 0 1 0.8841769 0.07561865 0.4609917 0 0.2473492 0.761352 -0.599301 0.2750294 -0.3962954 0.643914 0.6544655 0 0 0 0 1 0.9335577 0.003872901 0.3584059 0 0.2311639 0.7576824 -0.610312 0.2750294 -0.2739214 0.652612 0.7064452 0 0 0 0 1 0.9666396 -0.0792796 0.243562 0 0.2171604 0.7579051 -0.6151596 0.2750294 -0.1358273 0.6475298 0.7498376 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftArm_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftArm_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftArm_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftArm_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftArm_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftArm_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftArm_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftArm_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftArm_pose_matrix-sampler\" target=\"mixamorig_LeftArm/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftForeArm_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftForeArm_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftForeArm_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftForeArm_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftForeArm_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftForeArm_pose_matrix-output-array\" count=\"1856\">-0.6836295 -0.7298101 0.005323619 0 0.7297986 -0.6836493 -0.004189081 0.5331789 0.006696671 0.001021415 0.9999768 -1.19209e-7 0 0 0 1 -0.6336667 -0.7735898 0.005037099 0 0.7735776 -0.6336857 -0.00444068 0.5331789 0.006627209 0.001082748 0.9999772 -1.19209e-7 0 0 0 1 -0.5641532 -0.8256573 0.004637897 0 0.8256444 -0.564171 -0.004739739 0.5331789 0.006529912 0.001155376 0.9999778 -1.19209e-7 0 0 0 1 -0.4686552 -0.8833719 0.004089355 0 0.8833581 -0.4686713 -0.005071424 0.5331789 0.006396469 0.001235694 0.9999784 -1.19209e-7 0 0 0 1 -0.3435382 -0.9391327 0.003370792 0 0.9391181 -0.3435521 -0.005391583 0.5331789 0.00622136 0.001313418 0.9999797 -1.19209e-7 0 0 0 1 -0.1063394 -0.994328 0.002008468 0 0.9943122 -0.1063493 -0.005708411 0.5331789 0.005889602 0.00139001 0.9999816 -1.19209e-7 0 0 0 1 0.1577048 -0.9874861 4.92275e-4 0 0.9874704 0.1576996 -0.005669251 0.5331789 0.005520582 0.001380205 0.9999835 -1.19209e-7 0 0 0 1 0.4054231 -0.9141287 -9.3013e-4 0 0.9141144 0.4054221 -0.005248122 0.5331789 0.005174488 0.001277506 0.9999855 -1.19209e-7 0 0 0 1 0.42013 -0.9074633 -0.00101459 0 0.907449 0.4201294 -0.00520958 0.5331789 0.005153716 0.001267999 0.9999856 -1.19209e-7 0 0 0 1 0.603824 -0.7971148 -0.002069443 0 0.7971023 0.6038266 -0.004576005 0.5331789 0.004897088 0.001113564 0.9999872 -1.19209e-7 0 0 0 1 0.7441342 -0.668024 -0.002875149 0 0.6680135 0.7441389 -0.00383468 0.5331789 0.004701138 9.32857e-4 0.9999883 -1.19209e-7 0 0 0 1 0.8315521 -0.5554363 -0.00337711 0 0.5554275 0.8315586 -0.003188141 0.5331789 0.004578948 7.7536e-4 0.9999889 -1.19209e-7 0 0 0 1 0.8778846 -0.4788585 -0.003643155 0 0.478851 0.8778915 -0.002748489 0.5331789 0.004514426 6.68328e-4 0.9999893 -1.19209e-7 0 0 0 1 0.892084 -0.4518543 -0.003724724 0 0.4518473 0.8920912 -0.002593219 0.5331789 0.004494518 6.30315e-4 0.9999894 -1.19209e-7 0 0 0 1 0.8756191 -0.4829885 -0.003630012 0 0.482981 0.8756261 -0.002772488 0.5331789 0.004517585 6.74371e-4 0.9999894 -1.19209e-7 0 0 0 1 0.8204665 -0.5716852 -0.003313452 0 0.5716763 0.8204724 -0.003281504 0.5331789 0.004594535 7.98121e-4 0.999989 -1.19209e-7 0 0 0 1 0.7122262 -0.7019446 -0.002691686 0 0.7019337 0.7122304 -0.004029438 0.5331789 0.004745483 9.80407e-4 0.9999879 -1.19209e-7 0 0 0 1 0.5409128 -0.8410769 -0.001707762 0 0.8410635 0.5409143 -0.004828386 0.5331789 0.004984707 0.001175404 0.9999866 -1.19209e-7 0 0 0 1 0.313921 -0.9494491 -4.04686e-4 0 0.9494341 0.3139185 -0.005450681 0.5331789 0.005302042 0.001326859 0.9999849 -1.19209e-7 0 0 0 1 0.0592908 -0.9982403 0.001057655 0 0.9982244 0.05928385 -0.005730808 0.5331789 0.005658031 0.001395524 0.9999827 -1.19209e-7 0 0 0 1 -0.1855723 -0.9826276 0.00246349 0 0.9826121 -0.1855835 -0.005641133 0.5331789 0.006000269 0.001373887 0.9999808 -1.19209e-7 0 0 0 1 -0.3907627 -0.9204844 0.003641903 0 0.9204696 -0.3907776 -0.005284533 0.5331789 0.006287409 0.001287311 0.9999791 -1.19209e-7 0 0 0 1 -0.5436088 -0.8393265 0.004519939 0 0.8393132 -0.5436263 -0.004818372 0.5331789 0.006501317 0.00117439 0.9999781 -1.19209e-7 0 0 0 1 -0.6472739 -0.7622404 0.005115211 0 0.7622286 -0.647293 -0.004375473 0.5331789 0.006646208 0.001066923 0.9999771 -1.19209e-7 0 0 0 1 -0.713323 -0.7008139 0.005494237 0 0.700803 -0.7133434 -0.004023291 0.5331789 0.006738871 9.80556e-4 0.9999766 -1.19209e-7 0 0 0 1 -0.7545997 -0.6561605 0.005731821 0 0.6561503 -0.7546206 -0.003766164 0.5331789 0.006796509 9.19074e-4 0.9999763 -1.19209e-7 0 0 0 1 -0.7807177 -0.6248564 0.005881339 0 0.6248467 -0.7807393 -0.003586717 0.5331789 0.006832972 8.74817e-4 0.9999759 -1.19209e-7 0 0 0 1 -0.7956244 -0.6057612 0.005967081 0 0.6057516 -0.7956461 -0.003476977 0.5331789 0.006853819 8.48264e-4 0.9999758 -1.19209e-7 0 0 0 1 -0.7966695 -0.6043856 0.005973101 0 0.604376 -0.7966915 -0.003469318 0.5331789 0.006855488 8.46148e-4 0.9999759 -1.19209e-7 0 0 0 1 -0.7748315 -0.6321408 0.005847484 0 0.6321309 -0.7748529 -0.003628835 0.5331789 0.006824896 8.84771e-4 0.999976 -1.19209e-7 0 0 0 1 -0.7150816 -0.6990193 0.005504519 0 0.6990085 -0.7151018 -0.004012816 0.5331789 0.006741315 9.78261e-4 0.9999765 -1.19209e-7 0 0 0 1 -0.5980487 -0.8014452 0.004832208 0 0.8014326 -0.598067 -0.004600912 0.5331789 0.006577373 0.001121193 0.9999776 -1.19209e-7 0 0 0 1 -0.4086327 -0.9126913 0.003744572 0 0.9126769 -0.4086477 -0.005239479 0.5331789 0.006312169 0.001276642 0.9999791 -1.19209e-7 0 0 0 1 -0.1527966 -0.9882552 0.002275258 0 0.9882396 -0.1528072 -0.005673684 0.5331789 0.00595466 0.001381606 0.9999813 -1.19209e-7 0 0 0 1 0.1328457 -0.9911366 6.35356e-4 0 0.9911208 0.1328401 -0.005690195 0.5331789 0.005555272 0.001385659 0.9999833 -1.19209e-7 0 0 0 1 0.3965814 -0.9179991 -8.79347e-4 0 0.9179845 0.3965803 -0.005270116 0.5331789 0.005186632 0.001282811 0.9999855 -1.19209e-7 0 0 0 1 0.6014453 -0.7989114 -0.002055854 0 0.7988989 0.6014477 -0.004586577 0.5331789 0.004900753 0.001116142 0.9999872 -1.19209e-7 0 0 0 1 0.7396339 -0.6730032 -0.002849519 0 0.6729927 0.7396387 -0.003863469 0.5331789 0.004707664 9.39816e-4 0.9999884 -1.19209e-7 0 0 0 1 0.8237318 -0.5669698 -0.003332138 0 0.5669609 0.823738 -0.003254466 0.5331789 0.004589975 7.91647e-4 0.9999889 -1.19209e-7 0 0 0 1 0.8712912 -0.4907531 -0.003605366 0 0.4907454 0.8712983 -0.002816983 0.5331789 0.004523695 6.85021e-4 0.9999893 -1.19209e-7 0 0 0 1 0.8957538 -0.4445346 -0.003745824 0 0.4445277 0.8957612 -0.002551459 0.5331789 0.004489511 6.20309e-4 0.9999896 -1.19209e-7 0 0 0 1 0.9039065 -0.4277133 -0.003792584 0 0.4277066 0.903914 -0.002454393 0.5331789 0.004477918 5.96346e-4 0.9999896 -1.19209e-7 0 0 0 1 0.8956211 -0.444802 -0.003745019 0 0.444795 0.8956285 -0.002552867 0.5331789 0.004489571 6.20622e-4 0.9999895 -1.19209e-7 0 0 0 1 0.8630309 -0.5051389 -0.003557831 0 0.505131 0.8630376 -0.002899401 0.5331789 0.004535079 7.0506e-4 0.9999892 -1.19209e-7 0 0 0 1 0.7890351 -0.61434 -0.003132969 0 0.6143304 0.7890407 -0.003526643 0.5331789 0.004638493 8.57912e-4 0.9999886 -1.19209e-7 0 0 0 1 0.6500964 -0.7598479 -0.002334982 0 0.759836 0.6500996 -0.004361913 0.5331789 0.004832298 0.001061425 0.9999875 -1.19209e-7 0 0 0 1 0.4315018 -0.9021115 -0.001079857 0 0.9020973 0.4315013 -0.005178772 0.5331789 0.005137771 0.001260519 0.9999858 -1.19209e-7 0 0 0 1 0.1505226 -0.9886063 5.33611e-4 0 0.9885908 0.1505173 -0.005675711 0.5331789 0.005530626 0.001381874 0.9999837 -1.19209e-7 0 0 0 1 -0.1396406 -0.9901998 0.002199858 0 0.9901841 -0.139651 -0.00568492 0.5331789 0.005936384 0.001384497 0.9999812 -1.19209e-7 0 0 0 1 -0.3805709 -0.9247449 0.003583103 0 0.9247304 -0.3805855 -0.005308956 0.5331789 0.006273028 0.001293004 0.9999793 -1.19209e-7 0 0 0 1 -0.5432611 -0.8395517 0.004517734 0 0.8395385 -0.5432785 -0.004819706 0.5331789 0.006500781 0.001174539 0.9999781 -1.19209e-7 0 0 0 1 -0.631476 -0.775379 0.005024374 0 0.7753668 -0.631495 -0.00445123 0.5331789 0.006624244 0.001085013 0.9999774 -1.19209e-7 0 0 0 1 -0.6632938 -0.7483412 0.005207241 0 0.7483294 -0.6633133 -0.004295841 0.5331789 0.006668702 0.001047403 0.999977 -1.19209e-7 0 0 0 1 -0.6606596 -0.7506678 0.005192071 0 0.7506559 -0.6606791 -0.00430952 0.5331789 0.006665319 0.001050442 0.999977 -1.19209e-7 0 0 0 1 -0.6383986 -0.7696894 0.005063921 0 0.7696772 -0.6384178 -0.004418522 0.5331789 0.006633736 0.001076847 0.9999773 -1.19209e-7 0 0 0 1 -0.6059101 -0.7955182 0.004877478 0 0.7955058 -0.6059285 -0.004567169 0.5331789 0.006588586 0.001112878 0.9999776 -1.19209e-7 0 0 0 1 -0.5649598 -0.8251055 0.004642487 0 0.8250926 -0.5649775 -0.004736908 0.5331789 0.006531328 0.001154363 0.9999779 -1.19209e-7 0 0 0 1 -0.510383 -0.8599364 0.004328698 0 0.8599227 -0.5103999 -0.004936814 0.5331789 0.006454661 0.001202732 0.9999783 -1.19209e-7 0 0 0 1 -0.4288606 -0.9033625 0.003860593 0 0.9033482 -0.428876 -0.005186178 0.5331789 0.006340651 0.00126341 0.999979 -1.19209e-7 0 0 0 1 -0.3038134 -0.9527265 0.003142565 0 0.9527114 -0.3038267 -0.005469538 0.5331789 0.006165732 0.001332313 0.99998 -1.19209e-7 0 0 0 1 -0.1226081 -0.9924529 0.002102196 0 0.9924372 -0.1226182 -0.005697645 0.5331789 0.005912326 0.001387745 0.9999815 -1.19209e-7 0 0 0 1 0.1120907 -0.9936976 7.54327e-4 0 0.9936819 0.1120847 -0.005705334 0.5331789 0.005584747 0.001389116 0.9999832 -1.19209e-7 0 0 0 1 0.3716985 -0.9283532 -7.36296e-4 0 0.9283385 0.371697 -0.005329922 0.5331789 0.005221665 0.001297653 0.9999853 -1.19209e-7 0 0 0 1 0.6066777 -0.7949452 -0.002085865 0 0.7949328 0.6066801 -0.004563645 0.5331789 0.004893273 0.001110524 0.9999875 -1.19209e-7 0 0 0 1 0.7743015 -0.6328093 -0.003048301 0 0.6327994 0.7743068 -0.003632456 0.5331789 0.004658937 8.83654e-4 0.9999886 -1.19209e-7 0 0 0 1 0.8645343 -0.5025611 -0.003566384 0 0.5025533 0.8645411 -0.002884448 0.5331789 0.004532903 7.01372e-4 0.9999892 -1.19209e-7 0 0 0 1 0.8931854 -0.4496731 -0.003731191 0 0.4496662 0.8931926 -0.002580903 0.5331789 0.004493237 6.27406e-4 0.9999894 -1.19209e-7 0 0 0 1 0.8744129 -0.4851693 -0.003623277 0 0.4851617 0.8744199 -0.002784744 0.5331789 0.004519284 6.77098e-4 0.9999895 -1.19209e-7 0 0 0 1 0.8079058 -0.5893023 -0.00324145 0 0.5892931 0.8079118 -0.003382571 0.5331789 0.004612088 8.22634e-4 0.9999887 -1.19209e-7 0 0 0 1 0.6881019 -0.7256095 -0.002553403 0 0.7255981 0.6881058 -0.004165523 0.5331789 0.004779458 0.001013532 0.9999877 -1.19209e-7 0 0 0 1 0.5165521 -0.8562545 -0.001568466 0 0.856241 0.516553 -0.004915498 0.5331789 0.005019128 0.001196161 0.9999866 -1.19209e-7 0 0 0 1 0.304961 -0.9523649 -3.53247e-4 0 0.9523499 0.3049583 -0.005467691 0.5331789 0.005314916 0.001331002 0.9999847 -1.19209e-7 0 0 0 1 0.07206982 -0.997399 9.8452e-4 0 0.9973832 0.07206309 -0.005725965 0.5331789 0.00564009 0.0013946 0.999983 -1.19209e-7 0 0 0 1 -0.1592696 -0.9872325 0.002312332 0 0.9872169 -0.1592803 -0.005667888 0.5331789 0.00596375 0.001380116 0.9999812 -1.19209e-7 0 0 0 1 -0.3585288 -0.9335122 0.003456891 0 0.9334974 -0.3585431 -0.005359262 0.5331789 0.006242286 0.00130558 0.9999795 -1.19209e-7 0 0 0 1 -0.5235118 -0.8520069 0.004404396 0 0.8519934 -0.5235289 -0.004891239 0.5331789 0.006473161 0.001191944 0.9999781 -1.19209e-7 0 0 0 1 -0.6497787 -0.760106 0.005129367 0 0.7600942 -0.6497979 -0.004363686 0.5331789 0.006649934 0.001063466 0.9999771 -1.19209e-7 0 0 0 1 -0.7361041 -0.6768449 0.005625129 0 0.6768343 -0.7361249 -0.003885441 0.5331789 0.006770656 9.47267e-4 0.9999763 -1.19209e-7 0 0 0 1 -0.7870541 -0.6168559 0.005917668 0 0.6168463 -0.7870755 -0.003540777 0.5331789 0.006841868 8.63492e-4 0.9999759 -1.19209e-7 0 0 0 1 -0.8093383 -0.5873116 0.006045461 0 0.5873024 -0.8093603 -0.003371395 0.5331789 0.006872997 8.21978e-4 0.9999758 -1.19209e-7 0 0 0 1 -0.8091235 -0.5876079 0.006044656 0 0.5875987 -0.8091454 -0.003372781 0.5331789 0.006872833 8.22902e-4 0.9999757 -1.19209e-7 0 0 0 1 -0.7915707 -0.6110488 0.005943716 0 0.6110393 -0.7915923 -0.003507912 0.5331789 0.006848484 8.55207e-4 0.9999759 -1.19209e-7 0 0 0 1 -0.7611182 -0.6485875 0.005769104 0 0.6485775 -0.7611393 -0.003722988 0.5331789 0.006805733 9.08166e-4 0.9999763 -1.19209e-7 0 0 0 1 -0.7209613 -0.6929532 0.005537957 0 0.6929423 -0.7209818 -0.003977939 0.5331789 0.006749287 9.69648e-4 0.9999766 -1.19209e-7 0 0 0 1 -0.6716616 -0.7408397 0.005254865 0 0.740828 -0.6716812 -0.004252911 0.5331789 0.00668028 0.001036465 0.9999769 -1.19209e-7 0 0 0 1 -0.609114 -0.7930678 0.004895866 0 0.7930554 -0.6091325 -0.004552692 0.5331789 0.006592803 0.001109689 0.9999774 -1.19209e-7 0 0 0 1 -0.5207389 -0.8537049 0.00438872 0 0.8536913 -0.5207561 -0.00490126 0.5331789 0.006469607 0.001194477 0.9999782 -1.19209e-7 0 0 0 1 -0.3988212 -0.9170212 0.003688514 0 0.9170069 -0.3988361 -0.005264826 0.5331789 0.006299065 0.001282722 0.999979 -1.19209e-7 0 0 0 1 -0.2321309 -0.9726808 0.002731115 0 0.9726655 -0.2321428 -0.005584091 0.5331789 0.006065484 0.001360267 0.9999806 -1.19209e-7 0 0 0 1 -0.01738003 -0.9998478 0.001497835 0 0.9998321 -0.01738828 -0.005740337 0.5331789 0.005765401 0.001397818 0.9999822 -1.19209e-7 0 0 0 1 0.2310242 -0.972948 7.14064e-5 0 0.9729325 0.2310203 -0.005586021 0.5331789 0.005418345 0.001360029 0.999984 -1.19209e-7 0 0 0 1 0.4779105 -0.8784075 -0.00134638 0 0.8783937 0.4779109 -0.005042918 0.5331789 0.0050731 0.001227409 0.9999861 -1.19209e-7 0 0 0 1 0.6812127 -0.7320812 -0.002513915 0 0.7320696 0.6812166 -0.004202411 0.5331789 0.004789025 0.001022384 0.9999877 -1.19209e-7 0 0 0 1 0.8164456 -0.5774127 -0.003290445 0 0.5774035 0.8164518 -0.003314309 0.5331789 0.004600048 8.05974e-4 0.999989 -1.19209e-7 0 0 0 1 0.8872595 -0.461256 -0.003697067 0 0.4612488 0.8872666 -0.002647281 0.5331789 0.004501313 6.43484e-4 0.9999895 -1.19209e-7 0 0 0 1 0.9119557 -0.410271 -0.003838837 0 0.4102646 0.9119633 -0.002354547 0.5331789 0.004466802 5.72216e-4 0.9999897 -1.19209e-7 0 0 0 1 0.9048205 -0.4257761 -0.003797889 0 0.4257694 0.9048281 -0.002443604 0.5331789 0.004476786 5.93912e-4 0.9999895 -1.19209e-7 0 0 0 1 0.8702983 -0.4925118 -0.003599554 0 0.4925041 0.8703054 -0.002826869 0.5331789 0.004524857 6.87353e-4 0.9999894 -1.19209e-7 0 0 0 1 0.807337 -0.5900816 -0.003238082 0 0.5900724 0.8073429 -0.003387153 0.5331789 0.004612863 8.23848e-4 0.9999887 -1.19209e-7 0 0 0 1 0.7133961 -0.7007557 -0.00269872 0 0.7007447 0.7134004 -0.004022643 0.5331789 0.004744023 9.78589e-4 0.9999881 -1.19209e-7 0 0 0 1 0.5848577 -0.8111335 -0.001960546 0 0.8111209 0.5848598 -0.004656717 0.5331789 0.004923761 0.001133218 0.9999869 -1.19209e-7 0 0 0 1 0.4175162 -0.9086689 -9.9948e-4 0 0.9086547 0.4175153 -0.005216412 0.5331789 0.005157262 0.001269788 0.9999856 -1.19209e-7 0 0 0 1 0.2107071 -0.9775492 1.88172e-4 0 0.9775338 0.2107029 -0.005612098 0.5331789 0.005446345 0.001366496 0.9999839 -1.19209e-7 0 0 0 1 -0.02574492 -0.9996674 0.001545787 0 0.9996514 -0.02575332 -0.005739361 0.5331789 0.00577718 0.00139755 0.9999821 -1.19209e-7 0 0 0 1 -0.2676168 -0.9635211 0.002934843 0 0.9635058 -0.2676294 -0.005531795 0.5331789 0.006115375 0.001347363 0.9999801 -1.19209e-7 0 0 0 1 -0.4766439 -0.8790869 0.004135191 0 0.8790729 -0.4766603 -0.005046777 0.5331789 0.006407622 0.001229703 0.9999785 -1.19209e-7 0 0 0 1 -0.6338968 -0.7734011 0.005038053 0 0.7733889 -0.6339158 -0.004440092 0.5331789 0.006627701 0.001081884 0.9999772 -1.19209e-7 0 0 0 1 -0.7384275 -0.6743096 0.005638361 0 0.674299 -0.7384484 -0.003870688 0.5331789 0.006773695 9.4375e-4 0.9999763 -1.19209e-7 0 0 0 1 -0.7963088 -0.604861 0.005970985 0 0.6048517 -0.7963303 -0.003472127 0.5331789 0.006854996 8.46803e-4 0.999976 -1.19209e-7 0 0 0 1 -0.8192898 -0.573347 0.006103009 0 0.5733382 -0.8193118 -0.003290877 0.5331789 0.006887063 8.02994e-4 0.9999756 -1.19209e-7 0 0 0 1 -0.8182828 -0.5747836 0.006097078 0 0.5747748 -0.8183049 -0.003298886 0.5331789 0.006885424 8.0511e-4 0.9999756 -1.19209e-7 0 0 0 1 -0.8029575 -0.5960064 0.006009012 0 0.5959972 -0.8029794 -0.003421105 0.5331789 0.006864086 8.34465e-4 0.999976 -1.19209e-7 0 0 0 1 -0.7758119 -0.6309371 0.005852789 0 0.6309274 -0.7758332 -0.003621586 0.5331789 0.00682576 8.83102e-4 0.999976 -1.19209e-7 0 0 0 1 -0.747385 -0.6643666 0.005689681 0 0.6643564 -0.7474059 -0.003813624 0.5331789 0.006786138 9.29773e-4 0.9999762 -1.19209e-7 0 0 0 1 -0.7177401 -0.6962891 0.005519599 0 0.6962783 -0.7177604 -0.003997073 0.5331789 0.006744817 9.74387e-4 0.9999765 -1.19209e-7 0 0 0 1 -0.6836295 -0.7298101 0.005323619 0 0.7297986 -0.6836493 -0.004189081 0.5331789 0.006696671 0.001021415 0.9999768 -1.19209e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftForeArm_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftForeArm_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftForeArm_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftForeArm_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftForeArm_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftForeArm_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftForeArm_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftForeArm_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftForeArm_pose_matrix-sampler\" target=\"mixamorig_LeftForeArm/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHand_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHand_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHand_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHand_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHand_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHand_pose_matrix-output-array\" count=\"1856\">0.7282688 0.5218611 0.4441684 2.38419e-7 -0.4460538 0.8530298 -0.2708795 0.4290272 -0.5202506 -8.50022e-4 0.8540133 0 0 0 0 1 0.7108549 0.5301111 0.462242 2.38419e-7 -0.4253882 0.8474259 -0.3176702 0.4290272 -0.5601163 0.02918509 0.8278999 0 0 0 0 1 0.6943816 0.5349615 0.4813012 2.38419e-7 -0.3989342 0.8428257 -0.3612432 0.4290272 -0.5989041 0.05883318 0.7986571 0 0 0 0 1 0.6822684 0.5334675 0.4999221 2.38419e-7 -0.36615 0.8411833 -0.397925 0.4290272 -0.6328062 0.08844525 0.7692423 0 0 0 0 1 0.6767874 0.5239325 0.5171593 2.38419e-7 -0.3277616 0.8434724 -0.4255897 0.4290272 -0.6591898 0.1185288 0.7425765 0 0 0 0 1 0.6909013 0.4878717 0.5335134 2.38419e-7 -0.2761753 0.86011 -0.4288801 0.4290272 -0.6681187 0.1489706 0.7289892 0 0 0 0 1 0.7247611 0.4386569 0.5313206 2.38419e-7 -0.2325025 0.8816216 -0.4107137 0.4290272 -0.6485863 0.174136 0.7409539 0 0 0 0 1 0.7674838 0.3889522 0.5095929 2.38419e-7 -0.2002308 0.900584 -0.3858184 0.4290272 -0.6089962 0.1940732 0.769064 0 0 0 0 1 0.7702507 0.386014 0.5076488 2.38419e-7 -0.1985496 0.901599 -0.3843144 0.4290272 -0.6060463 0.195225 0.7711 0 0 0 0 1 0.8063062 0.3506363 0.4763659 2.38419e-7 -0.180191 0.9126825 -0.366799 0.4290272 -0.5633839 0.2099155 0.7990832 0 0 0 0 1 0.8319483 0.3302498 0.4458672 2.38419e-7 -0.1717772 0.9173985 -0.3589884 0.4290272 -0.5275937 0.22207 0.8199575 0 0 0 0 1 0.8392853 0.3288161 0.4329898 2.38419e-7 -0.1727982 0.9164191 -0.3609935 0.4290272 -0.5155008 0.2281567 0.8259562 0 0 0 0 1 0.826977 0.3426079 0.4457902 2.38419e-7 -0.1796321 0.9123355 -0.3679349 0.4290272 -0.5327677 0.2241955 0.8160241 0 0 0 0 1 0.7958319 0.3664379 0.4820528 2.38419e-7 -0.1900795 0.9070419 -0.3756919 0.4290272 -0.5749099 0.2073593 0.7915054 0 0 0 0 1 0.7491274 0.3962139 0.5308699 2.38419e-7 -0.204837 0.9006794 -0.3831687 0.4290272 -0.6299604 0.1783005 0.755883 0 0 0 0 1 0.6937625 0.4295712 0.5780679 2.38419e-7 -0.2258318 0.8919179 -0.3917683 0.4290272 -0.6838814 0.141248 0.71579 0 0 0 0 1 0.6400982 0.4646887 0.6118326 2.38419e-7 -0.2540213 0.8795705 -0.4022799 0.4290272 -0.7250848 0.1020801 0.6810523 0 0 0 0 1 0.5999865 0.4987972 0.625474 2.38419e-7 -0.2894662 0.8642136 -0.4115144 0.4290272 -0.7458054 0.06584954 0.6629015 0 0 0 0 1 0.5835394 0.5278841 0.6171065 2.38419e-7 -0.3322458 0.8485857 -0.4117222 0.4290272 -0.7410094 0.035225 0.6705705 0 0 0 0 1 0.5950338 0.5478761 0.5880193 2.38419e-7 -0.3810076 0.8364958 -0.3938373 0.4290272 -0.70765 0.01030678 0.7064883 0 0 0 0 1 0.6295937 0.5565284 0.5421145 2.38419e-7 -0.430057 0.8307603 -0.3533952 0.4290272 -0.6470417 -0.01064476 0.7623805 0 0 0 0 1 0.6739284 0.5549855 0.4876595 2.38419e-7 -0.4704781 0.8313184 -0.2959055 0.4290272 -0.5696234 -0.03001395 0.8213578 0 0 0 0 1 0.7124582 0.5482017 0.4380391 2.38419e-7 -0.4968662 0.8349109 -0.2367442 0.4290272 -0.4955072 -0.04897636 0.8672222 0 0 0 0 1 0.734455 0.5435585 0.4063496 2.38419e-7 -0.5118986 0.8368183 -0.194151 0.4290272 -0.4455732 -0.06541464 0.8928525 0 0 0 0 1 0.7366338 0.5478791 0.3964838 2.38419e-7 -0.5222701 0.8333125 -0.1811745 0.4290272 -0.4296567 -0.07361233 0.8999872 0 0 0 0 1 0.7220926 0.5643609 0.400099 2.38419e-7 -0.5314178 0.8227955 -0.2015014 0.4290272 -0.4429192 -0.06711704 0.8940459 0 0 0 0 1 0.69873 0.5908744 0.4032913 2.38419e-7 -0.5377468 0.8056096 -0.2486394 0.4290272 -0.47181 -0.04313686 0.8806446 0 0 0 0 1 0.6767489 0.6201215 0.3968126 2.38419e-7 -0.5379881 0.7844914 -0.3084508 0.4290272 -0.5025731 -0.004736662 0.8645219 0 0 0 0 1 0.6654493 0.6417309 0.3812591 2.38419e-7 -0.529135 0.7658087 -0.3654487 0.4290272 -0.5264913 0.04145011 0.8491696 0 0 0 0 1 0.671113 0.6455708 0.3644809 2.38419e-7 -0.50721 0.7583959 -0.4093579 0.4290272 -0.5406901 0.08985707 0.8364092 0 0 0 0 1 0.6954846 0.6246953 0.355045 2.38419e-7 -0.4671354 0.768542 -0.4371816 0.4290272 -0.5459724 0.1381989 0.8263266 0 0 0 0 1 0.7341861 0.5774757 0.3570609 2.38419e-7 -0.4062472 0.7950155 -0.450459 0.4290272 -0.5439981 0.1856657 0.8182876 0 0 0 0 1 0.7774616 0.5094862 0.368751 2.38419e-7 -0.3289096 0.829116 -0.4520897 0.4290272 -0.5360708 0.2301967 0.8121809 0 0 0 0 1 0.8148168 0.4337826 0.3845863 2.38419e-7 -0.2475156 0.86021 -0.4458416 0.4290272 -0.5242233 0.268088 0.8082817 0 0 0 0 1 0.8400358 0.3669462 0.3996131 2.38419e-7 -0.1775458 0.8819482 -0.4366291 0.4290272 -0.5126575 0.2958345 0.8060179 0 0 0 0 1 0.8520274 0.321876 0.4128495 2.38419e-7 -0.1299839 0.8940184 -0.4287599 0.4290272 -0.5071025 0.3116515 0.8035675 0 0 0 0 1 0.8522779 0.3023271 0.4268735 2.38419e-7 -0.1069866 0.8995589 -0.4234948 0.4290272 -0.5120319 0.3152655 0.799019 0 0 0 0 1 0.8431564 0.3027608 0.4443235 2.38419e-7 -0.1032617 0.9021891 -0.4187981 0.4290272 -0.5276594 0.3072307 0.7919503 0 0 0 0 1 0.8283885 0.3127737 0.4646993 2.38419e-7 -0.1108225 0.9047055 -0.4113716 0.4290272 -0.5490821 0.2892763 0.78411 0 0 0 0 1 0.8130346 0.3228269 0.4845182 2.38419e-7 -0.122798 0.9085591 -0.3993006 0.4290272 -0.5691184 0.2651475 0.7783325 0 0 0 0 1 0.8007839 0.3281901 0.5010352 2.38419e-7 -0.1341278 0.9135326 -0.3840151 0.4290272 -0.583742 0.2403105 0.7755619 0 0 0 0 1 0.7903562 0.3299696 0.5161952 2.38419e-7 -0.1412287 0.9180006 -0.3705798 0.4290272 -0.5961475 0.2199885 0.7721487 0 0 0 0 1 0.7752958 0.333662 0.5362706 2.38419e-7 -0.1430632 0.9197735 -0.3654445 0.4290272 -0.6151824 0.2066069 0.7608314 0 0 0 0 1 0.7487447 0.3460274 0.5653731 2.38419e-7 -0.1423888 0.9169815 -0.372653 0.4290272 -0.6473848 0.1985192 0.7358555 0 0 0 0 1 0.7104349 0.3713944 0.5977862 2.38419e-7 -0.1456256 0.9086093 -0.3914359 0.4290272 -0.6885313 0.1910367 0.6995924 0 0 0 0 1 0.6709222 0.4093648 0.6182911 2.38419e-7 -0.1622657 0.894649 -0.4162605 0.4290272 -0.723556 0.178951 0.6666659 0 0 0 0 1 0.6468071 0.4552215 0.6118939 2.38419e-7 -0.2027856 0.8760951 -0.437419 0.4290272 -0.7351999 0.1588426 0.6589767 0 0 0 0 1 0.6473693 0.5020947 0.573423 2.38419e-7 -0.2718647 0.854978 -0.4417037 0.4290272 -0.7120413 0.1300519 0.6899883 0 0 0 0 1 0.6660294 0.5432694 0.5111391 2.38419e-7 -0.3602223 0.8342963 -0.4173599 0.4290272 -0.6531805 0.09385034 0.7513638 0 0 0 0 1 0.6871553 0.5738615 0.4455341 2.38419e-7 -0.4463397 0.817331 -0.3643498 0.4290272 -0.5732352 0.05150533 0.8177707 0 0 0 0 1 0.6994635 0.5914084 0.4012317 2.38419e-7 -0.5108277 0.8063644 -0.298046 0.4290272 -0.499806 0.003512084 0.8661305 0 0 0 0 1 0.7009049 0.5951295 0.3931323 2.38419e-7 -0.5475537 0.8021734 -0.2381233 0.4290272 -0.4570744 -0.04835922 0.888113 0 0 0 0 1 0.6951888 0.5856367 0.416824 2.38419e-7 -0.5606626 0.8046485 -0.1954433 0.4290272 -0.4498557 -0.09782761 0.8877274 0 0 0 0 1 0.6824707 0.5664965 0.4618607 2.38419e-7 -0.5606014 0.8111623 -0.166558 0.4290272 -0.4689986 -0.1452488 0.8711735 0 0 0 0 1 0.6692339 0.541464 0.5088646 2.38419e-7 -0.5533395 0.8202292 -0.1450501 0.4290272 -0.4959249 -0.1845024 0.8485385 0 0 0 0 1 0.6634607 0.5158413 0.5419667 2.38419e-7 -0.5418485 0.830764 -0.1274014 0.4290272 -0.5159653 -0.2091379 0.8306873 0 0 0 0 1 0.6708105 0.4919599 0.5549676 2.38419e-7 -0.5253795 0.8433863 -0.1125874 0.4290272 -0.5234407 -0.2160437 0.8242182 0 0 0 0 1 0.6894138 0.4668221 0.5538825 2.38419e-7 -0.5030953 0.8587091 -0.09753659 0.4290272 -0.5211564 -0.2114125 0.8268621 0 0 0 0 1 0.7186116 0.4337946 0.5435256 2.38419e-7 -0.4712617 0.8785291 -0.07809612 0.4290272 -0.5113809 -0.2000219 0.8357521 0 0 0 0 1 0.7582476 0.3863721 0.5251453 2.38419e-7 -0.4258015 0.9034399 -0.04989325 0.4290272 -0.4937147 -0.1857761 0.8495489 0 0 0 0 1 0.8065236 0.3221468 0.4957232 2.38419e-7 -0.3642333 0.931223 -0.01256292 0.4290272 -0.4656761 -0.1704265 0.8683898 0 0 0 0 1 0.8572911 0.2455486 0.4525017 2.38419e-7 -0.2883713 0.9571393 0.026948 0.4290272 -0.42649 -0.1535907 0.8913565 0 0 0 0 1 0.9007946 0.1687346 0.4001223 2.38419e-7 -0.2079172 0.9765262 0.05627485 0.4290272 -0.3812345 -0.1338844 0.9147323 0 0 0 0 1 0.9288221 0.1096632 0.3539259 2.38419e-7 -0.1414485 0.9878 0.06514108 0.4290272 -0.3424644 -0.1105667 0.9330025 0 0 0 0 1 0.9384251 0.08662888 0.3344458 2.38419e-7 -0.1098713 0.9926274 0.05117668 0.4290272 -0.3275466 -0.08477151 0.9410247 0 0 0 0 1 0.9278886 0.1105955 0.3560779 2.38419e-7 -0.1245731 0.9920734 0.01648843 0.4290272 -0.3514318 -0.05965716 0.934311 0 0 0 0 1 0.8911981 0.1788967 0.4168477 2.38419e-7 -0.1789659 0.9830707 -0.03928065 0.4290272 -0.416818 -0.03959465 0.9081274 0 0 0 0 1 0.8242947 0.2746378 0.4950884 2.38419e-7 -0.2504803 0.9611316 -0.116128 0.4290272 -0.5077384 -0.02828622 0.861047 0 0 0 0 1 0.7392417 0.3743601 0.5598003 2.38419e-7 -0.3152915 0.9269172 -0.2035087 0.4290272 -0.5950741 -0.02605817 0.8032485 0 0 0 0 1 0.6637689 0.459718 0.5899748 2.38419e-7 -0.3651673 0.887589 -0.2807816 0.4290272 -0.6527355 -0.0290654 0.7570283 0 0 0 0 1 0.6214769 0.5239156 0.5824767 2.38419e-7 -0.4078371 0.8511615 -0.3304435 0.4290272 -0.6689062 -0.03219259 0.7426495 0 0 0 0 1 0.6153181 0.5698557 0.5446545 2.38419e-7 -0.4529361 0.8210841 -0.3473757 0.4290272 -0.645161 -0.03294712 0.7633361 0 0 0 0 1 0.6289377 0.6047422 0.4885946 2.38419e-7 -0.5025275 0.7957402 -0.3380293 0.4290272 -0.5932149 -0.03293282 0.8043705 0 0 0 0 1 0.6406764 0.635284 0.4312169 2.38419e-7 -0.5524797 0.7714391 -0.3156703 0.4290272 -0.5331979 -0.03599602 0.8452244 0 0 0 0 1 0.6372004 0.6646576 0.3901357 2.38419e-7 -0.5973082 0.745788 -0.2949966 0.4290272 -0.4870304 -0.04505926 0.8722219 0 0 0 0 1 0.6167149 0.6948352 0.369955 2.38419e-7 -0.6339904 0.7169979 -0.289776 0.4290272 -0.4666036 -0.05583873 0.8827024 0 0 0 0 1 0.5907581 0.7193726 0.3653874 2.38419e-7 -0.656931 0.6917697 -0.2998267 0.4290272 -0.4684512 -0.06290933 0.8812468 0 0 0 0 1 0.5767643 0.7297407 0.3671806 2.38419e-7 -0.6628762 0.6807585 -0.3117098 0.4290272 -0.4774286 -0.06361228 0.876365 0 0 0 0 1 0.588579 0.7196265 0.3683919 2.38419e-7 -0.6535983 0.691759 -0.3070483 0.4290272 -0.4757986 -0.06005815 0.8775016 0 0 0 0 1 0.6276271 0.68716 0.3659174 2.38419e-7 -0.6329092 0.7240632 -0.27415 0.4290272 -0.4533322 -0.05952853 0.8893517 0 0 0 0 1 0.6815188 0.6370952 0.3600582 2.38419e-7 -0.6037594 0.76754 -0.2153062 0.4290272 -0.4135295 -0.07065329 0.9077457 0 0 0 0 1 0.7321491 0.5812887 0.355051 2.38419e-7 -0.5709088 0.8080016 -0.1455898 0.4290272 -0.3715116 -0.09610835 0.9234407 0 0 0 0 1 0.7659346 0.5345399 0.3572271 2.38419e-7 -0.5432951 0.8352351 -0.08492684 0.4290272 -0.3437654 -0.1290313 0.9301488 0 0 0 0 1 0.7783915 0.5076085 0.3693786 2.38419e-7 -0.5290434 0.8471596 -0.04933318 0.4290272 -0.3379646 -0.1570167 0.9279689 0 0 0 0 1 0.7734596 0.5016911 0.3873842 2.38419e-7 -0.5276334 0.8482745 -0.04509348 0.4290272 -0.3512311 -0.1695188 0.9208149 0 0 0 0 1 0.7618081 0.5075457 0.402549 2.38419e-7 -0.5286034 0.8462507 -0.06661689 0.4290272 -0.3744686 -0.1620395 0.9129714 0 0 0 0 1 0.7596716 0.5086919 0.4051316 2.38419e-7 -0.5164049 0.85053 -0.09962153 0.4290272 -0.3952534 -0.1335323 0.9088146 0 0 0 0 1 0.7728795 0.4904972 0.402579 2.38419e-7 -0.4856765 0.8655586 -0.122174 0.4290272 -0.4083817 -0.1010973 0.9071956 0 0 0 0 1 0.8031965 0.4466775 0.3941506 2.38419e-7 -0.4358319 0.8916708 -0.1223663 0.4290272 -0.4061109 -0.07349917 0.9108633 0 0 0 0 1 0.8450844 0.3789703 0.3771128 2.38419e-7 -0.3696067 0.9237838 -0.1000704 0.4290272 -0.3862944 -0.05481544 0.9207455 0 0 0 0 1 0.88819 0.2976016 0.3500746 2.38419e-7 -0.2930598 0.953727 -0.06723697 0.4290272 -0.3538854 -0.04287359 0.9343058 0 0 0 0 1 0.9224844 0.2191592 0.317792 2.38419e-7 -0.2173611 0.9752053 -0.04157759 0.4290272 -0.3190246 -0.03072092 0.9472485 0 0 0 0 1 0.9430048 0.161058 0.2912081 2.38419e-7 -0.1573251 0.9868776 -0.03635274 0.4290272 -0.2932416 -0.0115335 0.9559692 0 0 0 0 1 0.9501103 0.1348683 0.2812489 2.38419e-7 -0.1245461 0.9907243 -0.054346 0.4290272 -0.2859697 0.0166063 0.958095 0 0 0 0 1 0.9458211 0.142349 0.2918202 2.38419e-7 -0.1210412 0.9885669 -0.08991235 0.4290272 -0.3012828 0.04971883 0.9522377 0 0 0 0 1 0.9318038 0.1761906 0.3173299 2.38419e-7 -0.1398868 0.9810647 -0.1339533 0.4290272 -0.3349226 0.08042803 0.9388068 0 0 0 0 1 0.9110633 0.2245324 0.3457584 2.38419e-7 -0.1716949 0.9691309 -0.1769341 0.4290272 -0.3748126 0.1018332 0.921491 0 0 0 0 1 0.8890108 0.2764379 0.3650233 2.38419e-7 -0.2102366 0.9546262 -0.2109245 0.4290272 -0.4067684 0.110773 0.9067906 0 0 0 0 1 0.8708305 0.325402 0.3684666 2.38419e-7 -0.2528569 0.9392965 -0.2319164 0.4290272 -0.4215656 0.1087906 0.9002484 0 0 0 0 1 0.8578449 0.3699832 0.3566715 2.38419e-7 -0.2982381 0.9236207 -0.2407878 0.4290272 -0.4185166 0.1001857 0.9026667 0 0 0 0 1 0.8465538 0.4125456 0.336382 2.38419e-7 -0.3458236 0.906655 -0.2416249 0.4290272 -0.4046637 0.08821973 0.9102004 0 0 0 0 1 0.8304937 0.4571497 0.3182684 2.38419e-7 -0.3965493 0.8864786 -0.2385466 0.4290272 -0.3911897 0.07190245 0.9174973 0 0 0 0 1 0.8028879 0.5068954 0.3137324 2.38419e-7 -0.4519541 0.8607695 -0.2341221 0.4290272 -0.3887267 0.04618117 0.9201952 0 0 0 0 1 0.7589452 0.5611538 0.3303159 2.38419e-7 -0.5113845 0.8276858 -0.2311315 0.4290272 -0.4030981 0.0064978 0.9151337 0 0 0 0 1 0.6985656 0.6141919 0.3671165 2.38419e-7 -0.5695065 0.7878541 -0.2344103 0.4290272 -0.4332072 -0.04532421 0.9001542 0 0 0 0 1 0.6297311 0.6576599 0.4134275 2.38419e-7 -0.6169547 0.746817 -0.2482564 0.4290272 -0.472023 -0.09873122 0.8760402 0 0 0 0 1 0.568136 0.6867284 0.4534597 2.38419e-7 -0.6463504 0.7134347 -0.2706326 0.4290272 -0.509365 -0.1393377 0.8491952 0 0 0 0 1 0.533964 0.6974734 0.4779261 2.38419e-7 -0.6550245 0.69866 -0.2877793 0.4290272 -0.5346264 -0.1593895 0.8299215 0 0 0 0 1 0.5409555 0.6877443 0.4841229 2.38419e-7 -0.6463453 0.7082546 -0.2839247 0.4290272 -0.53815 -0.1593198 0.8276545 0 0 0 0 1 0.5873415 0.6586608 0.4703151 2.38419e-7 -0.6246064 0.7384346 -0.254129 0.4290272 -0.5146818 -0.1445013 0.845117 0 0 0 0 1 0.6586486 0.6134676 0.4357063 2.38419e-7 -0.5910634 0.7801545 -0.2049464 0.4290272 -0.4656461 -0.1225424 0.8764459 0 0 0 0 1 0.7187614 0.5670753 0.4022536 2.38419e-7 -0.5506157 0.8175417 -0.1686654 0.4290272 -0.424505 -0.1002569 0.8998581 0 0 0 0 1 0.7417967 0.5399475 0.3977368 2.38419e-7 -0.5169834 0.8381892 -0.1736866 0.4290272 -0.4271604 -0.07678312 0.9009098 0 0 0 0 1 0.7485386 0.5244213 0.4057983 2.38419e-7 -0.4893873 0.8498567 -0.1955596 0.4290272 -0.4474262 -0.05220866 0.8927959 0 0 0 0 1 0.7425017 0.519226 0.4231971 2.38419e-7 -0.4665481 0.8542088 -0.2294784 0.4290272 -0.4806498 -0.02705365 0.8764955 0 0 0 0 1 0.7282688 0.5218611 0.4441684 2.38419e-7 -0.4460538 0.8530298 -0.2708795 0.4290272 -0.5202506 -8.50022e-4 0.8540133 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHand_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHand_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHand_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHand_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHand_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHand_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHand_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHand_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHand_pose_matrix-sampler\" target=\"mixamorig_LeftHand/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandThumb1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandThumb1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandThumb1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandThumb1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandThumb1_pose_matrix-output-array\" count=\"1856\">0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1 0.6774048 -0.1602474 0.7179438 -0.06477928 0.5205941 0.7939757 -0.313981 0.06355351 -0.5197154 0.5864496 0.621267 0.0355947 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandThumb1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandThumb1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandThumb1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandThumb1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandThumb1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandThumb1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandThumb1_pose_matrix-sampler\" target=\"mixamorig_LeftHandThumb1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandThumb2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandThumb2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandThumb2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandThumb2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandThumb2_pose_matrix-output-array\" count=\"1856\">0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1 0.3388691 0.8117769 -0.4755902 0.01027095 -0.9392892 0.2629542 -0.2204334 0.07730496 -0.05388424 0.5214148 0.8516001 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandThumb2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandThumb2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandThumb2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandThumb2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandThumb2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandThumb2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandThumb2_pose_matrix-sampler\" target=\"mixamorig_LeftHandThumb2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandThumb3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandThumb3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandThumb3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandThumb3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandThumb3_pose_matrix-output-array\" count=\"1856\">0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1 0.8819755 0.4346311 -0.1822484 -0.005085111 -0.4640182 0.8684951 -0.1743653 0.08421451 0.08249721 0.2383526 0.9676682 -1.19209e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandThumb3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandThumb3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandThumb3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandThumb3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandThumb3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandThumb3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandThumb3_pose_matrix-sampler\" target=\"mixamorig_LeftHandThumb3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandThumb4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandThumb4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandThumb4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandThumb4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandThumb4_pose_matrix-output-array\" count=\"1856\">1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1 1 1.05053e-6 -2.38419e-7 -0.005185723 -1.017e-6 1 -2.38419e-7 0.07092172 2.08616e-7 2.45869e-7 1 1.19209e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandThumb4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandThumb4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandThumb4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandThumb4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandThumb4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandThumb4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandThumb4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandThumb4_pose_matrix-sampler\" target=\"mixamorig_LeftHandThumb4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandIndex1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandIndex1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandIndex1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandIndex1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandIndex1_pose_matrix-output-array\" count=\"1856\">0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1 0.9912257 0.1316714 -0.01156495 -0.08675927 0.002347834 -0.105021 -0.9944673 0.2383396 -0.1321574 0.9857144 -0.1044087 0.004653454 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandIndex1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandIndex1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandIndex1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandIndex1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandIndex1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandIndex1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandIndex1_pose_matrix-sampler\" target=\"mixamorig_LeftHandIndex1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandIndex2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandIndex2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandIndex2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandIndex2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandIndex2_pose_matrix-output-array\" count=\"1856\">0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1 0.9835114 0.1170768 -0.1378351 2.32458e-5 -0.1188194 -0.1562508 -0.9805447 0.07056022 -0.1363359 0.9807543 -0.1397634 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandIndex2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandIndex2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandIndex2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandIndex2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandIndex2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandIndex2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandIndex2_pose_matrix-sampler\" target=\"mixamorig_LeftHandIndex2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandIndex3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandIndex3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandIndex3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandIndex3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandIndex3_pose_matrix-output-array\" count=\"1856\">0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1 0.9946231 0.09424521 -0.04292467 5.76377e-5 -0.09408391 0.6491221 -0.7548435 0.06467301 -0.04327692 0.7548232 0.6544991 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandIndex3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandIndex3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandIndex3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandIndex3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandIndex3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandIndex3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandIndex3_pose_matrix-sampler\" target=\"mixamorig_LeftHandIndex3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandIndex4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandIndex4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandIndex4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandIndex4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandIndex4_pose_matrix-output-array\" count=\"1856\">1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1 1 1.10827e-7 -1.43051e-6 -8.08537e-5 -1.05239e-7 0.9999999 1.04122e-6 0.05102515 1.37091e-6 -9.98378e-7 1 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandIndex4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandIndex4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandIndex4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandIndex4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandIndex4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandIndex4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandIndex4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandIndex4_pose_matrix-sampler\" target=\"mixamorig_LeftHandIndex4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandMiddle1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandMiddle1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandMiddle1_pose_matrix-output-array\" count=\"1856\">0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1 0.9912484 0.1316409 -0.009863734 -0.03053755 0.004014298 -0.1047445 -0.9944911 0.2423518 -0.1319489 0.9857482 -0.1043562 -0.00457859 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandMiddle1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandMiddle1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandMiddle1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandMiddle1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandMiddle1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandMiddle1_pose_matrix-sampler\" target=\"mixamorig_LeftHandMiddle1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandMiddle2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandMiddle2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandMiddle2_pose_matrix-output-array\" count=\"1856\">0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1 0.9837824 0.116945 -0.1359994 3.80576e-5 -0.1169441 -0.1567113 -0.9806964 0.08281279 -0.1360002 0.9806964 -0.1404938 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandMiddle2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandMiddle2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandMiddle2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandMiddle2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandMiddle2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandMiddle2_pose_matrix-sampler\" target=\"mixamorig_LeftHandMiddle2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandMiddle3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandMiddle3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandMiddle3_pose_matrix-output-array\" count=\"1856\">0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1 0.9950854 0.09003599 -0.04121739 -3.4824e-5 -0.09003764 0.6494488 -0.7550561 0.07751489 -0.04121357 0.7550565 0.6543635 -2.38419e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandMiddle3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandMiddle3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandMiddle3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandMiddle3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandMiddle3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandMiddle3_pose_matrix-sampler\" target=\"mixamorig_LeftHandMiddle3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandMiddle4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandMiddle4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandMiddle4_pose_matrix-output-array\" count=\"1856\">1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1 1 2.06754e-7 4.47035e-7 -3.27826e-6 -1.77883e-7 1 -7.71135e-7 0.06682372 -3.8743e-7 7.76723e-7 0.9999999 1.19209e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandMiddle4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandMiddle4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandMiddle4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandMiddle4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandMiddle4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandMiddle4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandMiddle4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandMiddle4_pose_matrix-sampler\" target=\"mixamorig_LeftHandMiddle4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandRing1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandRing1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandRing1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandRing1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandRing1_pose_matrix-output-array\" count=\"1856\">0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1 0.9912437 0.1316689 -0.009951636 0.03548539 0.00396613 -0.1050207 -0.9944619 0.2626789 -0.1319849 0.9857146 -0.1046233 -0.002704859 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandRing1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandRing1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandRing1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandRing1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandRing1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandRing1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandRing1_pose_matrix-sampler\" target=\"mixamorig_LeftHandRing1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandRing2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandRing2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandRing2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandRing2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandRing2_pose_matrix-output-array\" count=\"1856\">0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1 0.9837725 0.1170006 -0.1360244 4.16636e-5 -0.1169995 -0.1564335 -0.9807339 0.06486607 -0.1360253 0.9807339 -0.140206 -5.96046e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandRing2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandRing2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandRing2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandRing2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandRing2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandRing2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandRing2_pose_matrix-sampler\" target=\"mixamorig_LeftHandRing2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandRing3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandRing3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandRing3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandRing3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandRing3_pose_matrix-output-array\" count=\"1856\">0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1 0.9950808 0.090078 -0.04123256 -2.94447e-5 -0.09007671 0.6494465 -0.7550534 0.065799 -0.04123533 0.755053 0.6543658 2.38419e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandRing3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandRing3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandRing3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandRing3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandRing3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandRing3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandRing3_pose_matrix-sampler\" target=\"mixamorig_LeftHandRing3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandRing4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandRing4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandRing4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandRing4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandRing4_pose_matrix-output-array\" count=\"1856\">0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1 0.9999999 1.4063e-7 1.78814e-7 -1.22488e-5 -1.49012e-7 0.9999999 7.45058e-9 0.05561519 -1.78814e-7 -9.31323e-9 0.9999999 -5.96046e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandRing4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandRing4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandRing4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandRing4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandRing4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandRing4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandRing4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandRing4_pose_matrix-sampler\" target=\"mixamorig_LeftHandRing4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandPinky1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandPinky1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandPinky1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandPinky1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandPinky1_pose_matrix-output-array\" count=\"1856\">0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1 0.9794849 0.2015176 2.8269e-4 0.08181137 0.0199807 -0.09572089 -0.9952078 0.2480615 -0.2005248 0.9747965 -0.09778357 0.004873753 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandPinky1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandPinky1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandPinky1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandPinky1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandPinky1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandPinky1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandPinky1_pose_matrix-sampler\" target=\"mixamorig_LeftHandPinky1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandPinky2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandPinky2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandPinky2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandPinky2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandPinky2_pose_matrix-output-array\" count=\"1856\">0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1 0.9912676 0.1193037 -0.05617203 4.17233e-6 -0.03710702 -0.1563961 -0.9869975 0.06388807 -0.1265375 0.9804626 -0.1506031 1.19209e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandPinky2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandPinky2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandPinky2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandPinky2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandPinky2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandPinky2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandPinky2_pose_matrix-sampler\" target=\"mixamorig_LeftHandPinky2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandPinky3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandPinky3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandPinky3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandPinky3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandPinky3_pose_matrix-output-array\" count=\"1856\">0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1 0.9957919 0.08331439 -0.03817788 1.33067e-5 -0.08331493 0.6494479 -0.7558281 0.0543716 -0.03817682 0.7558281 0.6536561 2.38419e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandPinky3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandPinky3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandPinky3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandPinky3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandPinky3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandPinky3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandPinky3_pose_matrix-sampler\" target=\"mixamorig_LeftHandPinky3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftHandPinky4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftHandPinky4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandPinky4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandPinky4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftHandPinky4_pose_matrix-output-array\" count=\"1856\">0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1 0.9999999 9.77889e-8 8.04663e-7 -1.75089e-5 -1.13621e-7 0.9999998 -1.07661e-6 0.04631877 -7.7486e-7 1.08592e-6 0.9999998 5.96046e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftHandPinky4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftHandPinky4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftHandPinky4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftHandPinky4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftHandPinky4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftHandPinky4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftHandPinky4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftHandPinky4_pose_matrix-sampler\" target=\"mixamorig_LeftHandPinky4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightShoulder_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightShoulder_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightShoulder_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightShoulder_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightShoulder_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightShoulder_pose_matrix-output-array\" count=\"1856\">-0.05153744 -0.9795392 0.1945418 -0.1223451 3.07024e-4 -0.1948162 -0.9808396 0.2311902 0.9986708 -0.05049047 0.01034105 -0.001599908 0 0 0 1 -0.03419776 -0.9842365 0.1735177 -0.1223451 2.23577e-4 -0.1736267 -0.9848114 0.2311902 0.9994148 -0.03363976 0.006157666 -0.001599908 0 0 0 1 -0.01425084 -0.9882368 0.1522635 -0.1223451 -4.54605e-4 -0.1522724 -0.9883381 0.2311902 0.9998982 -0.0141541 0.001720667 -0.001599908 0 0 0 1 0.008746948 -0.9912937 0.1313767 -0.1223451 -0.001896709 -0.1313979 -0.9913276 0.2311902 0.9999597 0.008421704 -0.003029585 -0.001599908 0 0 0 1 0.03479097 -0.99318 0.1112768 -0.1223451 -0.004262239 -0.1114906 -0.9937562 0.2311902 0.9993854 0.03409925 -0.008112133 -0.001599908 0 0 0 1 0.07292122 -0.9929018 0.09395745 -0.1223451 -0.007681668 -0.09476453 -0.9954699 0.2311902 0.997308 0.07186892 -0.01453757 -0.001599908 0 0 0 1 0.1080202 -0.9905768 0.08419575 -0.1223451 -0.0117307 -0.08595546 -0.9962296 0.2311902 0.9940792 0.1066251 -0.02090511 -0.001599908 0 0 0 1 0.137782 -0.9871581 0.08083465 -0.1223451 -0.01567218 -0.08377557 -0.9963611 0.2311902 0.9903384 0.1360136 -0.02701375 -0.001599908 0 0 0 1 0.1395103 -0.9869193 0.08078551 -0.1223451 -0.01591256 -0.08380717 -0.9963546 0.2311902 0.9900926 0.1377161 -0.02739644 -0.001599908 0 0 0 1 0.1610977 -0.9835562 0.08163512 -0.1223451 -0.01899251 -0.08578964 -0.996132 0.2311902 0.9867555 0.1589239 -0.03250077 -0.001599908 0 0 0 1 0.1773452 -0.9805207 0.08442268 -0.1223451 -0.02139738 -0.08960376 -0.9957474 0.2311902 0.983916 0.1747845 -0.03687146 -0.001599908 0 0 0 1 0.1853819 -0.9787447 0.08770372 -0.1223451 -0.02267599 -0.0934877 -0.995362 0.2311902 0.9824046 0.1825332 -0.039525 -0.001599908 0 0 0 1 0.1844635 -0.9786372 0.09078547 -0.1223451 -0.02282324 -0.09661091 -0.9950603 0.2311902 0.9825741 0.1814802 -0.04015699 -0.001599908 0 0 0 1 0.1746604 -0.9801592 0.09370573 -0.1223451 -0.02201614 -0.09903238 -0.9948404 0.2311902 0.9843824 0.1716959 -0.03887644 -0.001599908 0 0 0 1 0.156744 -0.9828361 0.09728234 -0.1223451 -0.02043447 -0.1017061 -0.9946043 0.2311902 0.9874277 0.1539102 -0.03602561 -0.001599908 0 0 0 1 0.1314845 -0.9859196 0.1033132 -0.1223451 -0.01805335 -0.1065821 -0.9941398 0.2311902 0.9911535 0.1288486 -0.03181314 -0.001599908 0 0 0 1 0.09915751 -0.9884654 0.114469 -0.1223451 -0.01468831 -0.1164774 -0.9930845 0.2311902 0.9949632 0.09679027 -0.02606854 -0.001599908 0 0 0 1 0.05995823 -0.9892529 0.1333524 -0.1223451 -0.01040965 -0.1342051 -0.9908986 0.2311902 0.9981465 0.05802417 -0.01834455 -0.001599908 0 0 0 1 0.01514467 -0.9868608 0.1608601 -0.1223451 -0.005970061 -0.1609649 -0.9869421 0.2311902 0.9998675 0.01398635 -0.008329421 -0.001599908 0 0 0 1 -0.03203762 -0.9802997 0.1948992 -0.1223451 -0.002601653 -0.1949168 -0.9808161 0.2311902 0.9994831 -0.0319303 0.003694236 -0.001599908 0 0 0 1 -0.07668901 -0.9700057 0.2306672 -0.1223451 -0.001103342 -0.2312658 -0.9728897 0.2311902 0.9970543 -0.07486471 0.01666531 -0.001599908 0 0 0 1 -0.1139697 -0.9581318 0.2626667 -0.1223451 -0.001145959 -0.2642624 -0.9644499 0.2311902 0.9934833 -0.1102193 0.02901992 -0.001599908 0 0 0 1 -0.1410617 -0.9475015 0.2869528 -0.1223451 -0.001659602 -0.2896244 -0.9571387 0.2311902 0.9899992 -0.1354921 0.03928247 -0.001599908 0 0 0 1 -0.1578817 -0.9400839 0.3021846 -0.1223451 -0.001829118 -0.3057437 -0.9521121 0.2311902 0.9874562 -0.150874 0.04655182 -0.001599908 0 0 0 1 -0.166148 -0.936438 0.3089957 -0.1223451 -0.001567274 -0.3130998 -0.9497187 0.2311902 0.9860995 -0.1582784 0.0505532 -0.001599908 0 0 0 1 -0.1676839 -0.9363333 0.3084823 -0.1223451 -0.001175523 -0.3127227 -0.9498436 0.2311902 0.9858398 -0.1596364 0.05133784 -0.001599908 0 0 0 1 -0.1632155 -0.9395692 0.3009482 -0.1223451 -8.1566e-4 -0.3049099 -0.9523807 0.2311902 0.9865899 -0.155689 0.04899967 -0.001599908 0 0 0 1 -0.1523292 -0.9461203 0.2857477 -0.1223451 -3.67761e-4 -0.2890674 -0.9573088 0.2311902 0.9883296 -0.1459314 0.04368553 -0.001599908 0 0 0 1 -0.1343577 -0.9556003 0.2622512 -0.1223451 2.85715e-4 -0.264688 -0.964334 0.2311902 0.9909326 -0.129491 0.03583592 -0.001599908 0 0 0 1 -0.1093774 -0.9667206 0.2312736 -0.1223451 9.25243e-4 -0.2327684 -0.9725314 0.2311902 0.9939997 -0.1061592 0.02635407 -0.001599908 0 0 0 1 -0.07857621 -0.9774621 0.1959412 -0.1223451 0.001013517 -0.1966271 -0.9804776 0.2311902 0.9969076 -0.07684386 0.01644087 -0.001599908 0 0 0 1 -0.04381137 -0.9859565 0.1611517 -0.1223451 5.32568e-5 -0.1613088 -0.9869038 0.2311902 0.9990398 -0.04322924 0.007119596 -0.001599908 0 0 0 1 -0.006868336 -0.9912657 0.1316992 -0.1223451 -0.002120435 -0.1316875 -0.9912888 0.2311902 0.999974 -0.007087991 -0.001197457 -0.001599908 0 0 0 1 0.03079557 -0.9934341 0.110181 -0.1223451 -0.005366534 -0.1103959 -0.9938731 0.2311902 0.9995112 0.03001538 -0.008731067 -0.001599908 0 0 0 1 0.06753604 -0.9930568 0.09631468 -0.1223451 -0.009393096 -0.09716362 -0.9952239 0.2311902 0.9976726 0.0663086 -0.01588994 -0.001599908 0 0 0 1 0.1008016 -0.9910111 0.08794896 -0.1223451 -0.01377803 -0.08978118 -0.995866 0.2311902 0.9948109 0.09917297 -0.02270436 -0.001599908 0 0 0 1 0.1271899 -0.988403 0.08295217 -0.1223451 -0.01789111 -0.08590384 -0.9961424 0.2311902 0.9917169 0.1252149 -0.02860978 -0.001599908 0 0 0 1 0.1437528 -0.9863359 0.08047157 -0.1223451 -0.02094811 -0.08433072 -0.9962174 0.2311902 0.9893917 0.1415231 -0.03278467 -0.001599908 0 0 0 1 0.1498674 -0.9853963 0.0808294 -0.1223451 -0.02236509 -0.08511046 -0.9961203 0.2311902 0.988453 0.1474781 -0.03479379 -0.001599908 0 0 0 1 0.1482066 -0.985351 0.08436762 -0.1223451 -0.02219889 -0.08860282 -0.9958194 0.2311902 0.9887071 0.145714 -0.03500527 -0.001599908 0 0 0 1 0.1437527 -0.9854898 0.09024676 -0.1223451 -0.02119163 -0.09423842 -0.9953239 0.2311902 0.9893867 0.1411678 -0.03443119 -0.001599908 0 0 0 1 0.1411125 -0.9853113 0.09616615 -0.1223451 -0.02029669 -0.09999706 -0.9947805 0.2311902 0.9897855 0.1384239 -0.03410941 -0.001599908 0 0 0 1 0.1415607 -0.9849203 0.09945944 -0.1223451 -0.02011076 -0.1033117 -0.9944456 0.2311902 0.9897252 0.138774 -0.03443247 -0.001599908 0 0 0 1 0.1415513 -0.984952 0.09915709 -0.1223451 -0.02047616 -0.1030574 -0.9944644 0.2311902 0.989719 0.1387371 -0.03475603 -0.001599908 0 0 0 1 0.133728 -0.9861718 0.09788437 -0.1223451 -0.02016559 -0.1014589 -0.9946352 0.2311902 0.9908128 0.1310365 -0.03345472 -0.001599908 0 0 0 1 0.1101868 -0.9886591 0.1020357 -0.1223451 -0.01713192 -0.1045348 -0.9943735 0.2311902 0.993763 0.1078186 -0.02845606 -0.001599908 0 0 0 1 0.06655051 -0.9906392 0.1191829 -0.1223451 -0.01023898 -0.1201194 -0.9927064 0.2311902 0.9977304 0.06484462 -0.01813722 -0.001599908 0 0 0 1 0.005050007 -0.9881423 0.1534571 -0.1223451 -0.001513541 -0.1534664 -0.9881525 0.2311902 0.9999859 0.004757694 -0.002270669 -0.001599908 0 0 0 1 -0.06483345 -0.9773022 0.201684 -0.1223451 0.004398525 -0.2023871 -0.9792957 0.2311902 0.9978863 -0.06260424 0.01742014 -0.001599908 0 0 0 1 -0.1293545 -0.9586105 0.253639 -0.1223451 0.004527211 -0.2563563 -0.9665715 0.2311902 0.9915879 -0.1238824 0.03750065 -0.001599908 0 0 0 1 -0.1766333 -0.9383391 0.2971869 -0.1223451 7.18564e-4 -0.3020571 -0.9532893 0.2311902 0.9842763 -0.1681694 0.05402762 -0.001599908 0 0 0 1 -0.2018716 -0.9241155 0.3244346 -0.1223451 -0.002711177 -0.3307259 -0.9437227 0.2311902 0.9794081 -0.1913907 0.06425875 -0.001599908 0 0 0 1 -0.2079549 -0.9191652 0.334499 -0.1223451 -0.00343883 -0.3412859 -0.9399531 0.2311902 0.9781321 -0.1966184 0.06781128 -0.001599908 0 0 0 1 -0.2022607 -0.921304 0.3320984 -0.1223451 -0.002218038 -0.3386753 -0.9409006 0.2311902 0.9793291 -0.1910441 0.06645718 -0.001599908 0 0 0 1 -0.1924273 -0.9262971 0.3239522 -0.1223451 -7.72029e-4 -0.3299787 -0.9439877 0.2311902 0.9813108 -0.1818994 0.06278175 -0.001599908 0 0 0 1 -0.1831516 -0.9311749 0.3152274 -0.1223451 -1.66893e-6 -0.3206511 -0.9471971 0.2311902 0.9830845 -0.1734815 0.05872622 -0.001599908 0 0 0 1 -0.1752557 -0.935194 0.3077287 -0.1223451 1.24693e-4 -0.3125874 -0.9498888 0.2311902 0.9845227 -0.1664354 0.05489931 -0.001599908 0 0 0 1 -0.1669753 -0.9391124 0.3003111 -0.1223451 -2.54214e-5 -0.304583 -0.9524858 0.2311902 0.9859609 -0.1590495 0.05083397 -0.001599908 0 0 0 1 -0.1561227 -0.944023 0.2905959 -0.1223451 -1.82271e-4 -0.2941759 -0.9557511 0.2311902 0.9877374 -0.1492677 0.04575551 -0.001599908 0 0 0 1 -0.1416006 -0.9504819 0.2766463 -0.1223451 -3.17097e-4 -0.2794186 -0.9601693 0.2311902 0.9899235 -0.1360486 0.03926444 -0.001599908 0 0 0 1 -0.1235114 -0.9582844 0.2577505 -0.1223451 -5.42581e-4 -0.259674 -0.9656959 0.2311902 0.9923428 -0.1194146 0.03155273 -0.001599908 0 0 0 1 -0.1021443 -0.9667659 0.2343721 -0.1223451 -9.3931e-4 -0.2355106 -0.9718711 0.2311902 0.9947691 -0.09949151 0.02314791 -0.001599908 0 0 0 1 -0.07688784 -0.9751567 0.2077439 -0.1223451 -0.001552939 -0.2082432 -0.9780758 0.2311902 0.9970383 -0.07552499 0.01449695 -0.001599908 0 0 0 1 -0.0462513 -0.9826639 0.1795336 -0.1223451 -0.002596915 -0.179607 -0.9837348 0.2311902 0.9989263 -0.04596546 0.005755097 -0.001599908 0 0 0 1 -0.009428643 -0.9883779 0.1517224 -0.1223451 -0.004511505 -0.1516855 -0.9884183 0.2311902 0.9999452 -0.01000417 -0.003028959 -0.001599908 0 0 0 1 0.03151778 -0.9914698 0.126467 -0.1223451 -0.007565737 -0.1267629 -0.991904 0.2311902 0.9994743 0.03030559 -0.01149654 -0.001599908 0 0 0 1 0.07078804 -0.9918582 0.1058568 -0.1223451 -0.01125106 -0.1069102 -0.9942048 0.2311902 0.9974277 0.0691866 -0.01872748 -0.001599908 0 0 0 1 0.1006588 -0.9907142 0.09139416 -0.1223451 -0.01423252 -0.09328511 -0.9955376 0.2311902 0.994819 0.09890868 -0.02349037 -0.001599908 0 0 0 1 0.115243 -0.9898177 0.08354287 -0.1223451 -0.01517978 -0.08584818 -0.9961923 0.2311902 0.993221 0.1135359 -0.02491868 -0.001599908 0 0 0 1 0.1136558 -0.9901815 0.08137697 -0.1223451 -0.01377451 -0.08347026 -0.9964149 0.2311902 0.9934246 0.1121272 -0.02312618 -0.001599908 0 0 0 1 0.1003542 -0.9915052 0.08274037 -0.1223451 -0.01089829 -0.08425057 -0.9963848 0.2311902 0.9948919 0.09908952 -0.01926064 -0.001599908 0 0 0 1 0.08235342 -0.9929574 0.08516587 -0.1223451 -0.007895947 -0.08610348 -0.9962549 0.2311902 0.9965718 0.08137231 -0.01493132 -0.001599908 0 0 0 1 0.06512962 -0.994058 0.08721602 -0.1223451 -0.005710781 -0.08777145 -0.9961242 0.2311902 0.9978606 0.06437894 -0.01139343 -0.001599908 0 0 0 1 0.04992283 -0.9947314 0.08953549 -0.1223451 -0.004517406 -0.08987124 -0.9959428 0.2311902 0.9987426 0.04931562 -0.008980304 -0.001599908 0 0 0 1 0.03403201 -0.9948968 0.09498173 -0.1223451 -0.00381121 -0.09516525 -0.9954539 0.2311902 0.9994133 0.03351511 -0.007030487 -0.001599908 0 0 0 1 0.01343137 -0.9941022 0.1076095 -0.1223451 -0.002822757 -0.1076564 -0.994184 0.2311902 0.9999057 0.01304927 -0.004252166 -0.001599908 0 0 0 1 -0.01438556 -0.991315 0.1307177 -0.1223451 -0.001175672 -0.1307142 -0.9914194 0.2311902 0.9998957 -0.01441602 7.14898e-4 -0.001599908 0 0 0 1 -0.04903613 -0.9851024 0.1648292 -0.1223451 6.80625e-4 -0.1650606 -0.9862832 0.2311902 0.9987964 -0.04825157 0.008764416 -0.001599908 0 0 0 1 -0.08758937 -0.9744482 0.2068287 -0.1223451 0.001790732 -0.2077803 -0.9781737 0.2311902 0.996155 -0.08530747 0.01994431 -0.001599908 0 0 0 1 -0.1258059 -0.95983 0.2507954 -0.1223451 0.001521409 -0.2529902 -0.9674674 0.2311902 0.9920536 -0.1213318 0.03328794 -0.001599908 0 0 0 1 -0.1593526 -0.9436342 0.290105 -0.1223451 9.53972e-5 -0.2938748 -0.9558434 0.2311902 0.9872215 -0.1522888 0.0469197 -0.001599908 0 0 0 1 -0.1845627 -0.9294273 0.3195323 -0.1223451 -0.001589566 -0.3248348 -0.9457692 0.2311902 0.9828193 -0.1750619 0.05847499 -0.001599908 0 0 0 1 -0.1988212 -0.9205176 0.3363285 -0.1223451 -0.002589047 -0.3426853 -0.9394464 0.2311902 0.980032 -0.187653 0.06574988 -0.001599908 0 0 0 1 -0.2008104 -0.9186666 0.3401859 -0.1223451 -0.002488911 -0.3467799 -0.937943 0.2311902 0.9796265 -0.1891957 0.0673506 -0.001599908 0 0 0 1 -0.190791 -0.9235752 0.3325766 -0.1223451 -0.0016011 -0.3385068 -0.9409624 0.2311902 0.9816291 -0.1800599 0.06310534 -0.001599908 0 0 0 1 -0.1709154 -0.933197 0.3161184 -0.1223451 -7.23153e-4 -0.3207204 -0.9471736 0.2311902 0.9852853 -0.1621154 0.05414122 -0.001599908 0 0 0 1 -0.1452223 -0.9446655 0.2941376 -0.1223451 -5.98758e-4 -0.2972051 -0.9548132 0.2311902 0.9893987 -0.1388366 0.04259521 -0.001599908 0 0 0 1 -0.1187628 -0.9554698 0.2701341 -0.1223451 -0.001390487 -0.2718991 -0.9623247 0.2311902 0.9929215 -0.1146642 0.03096291 -0.001599908 0 0 0 1 -0.09574644 -0.9643105 0.2468551 -0.1223451 -0.002590269 -0.2477522 -0.9688196 0.2311902 0.9954022 -0.0934007 0.02122352 -0.001599908 0 0 0 1 -0.0775464 -0.9711761 0.2253956 -0.1223451 -0.003486633 -0.2258108 -0.9741647 0.2311902 0.9969824 -0.07632911 0.01412463 -0.001599908 0 0 0 1 -0.06185792 -0.9767796 0.2051206 -0.1223451 -0.003747314 -0.2052853 -0.9786948 0.2311902 0.9980778 -0.06130891 0.009038121 -0.001599908 0 0 0 1 -0.04371456 -0.9818321 0.1846463 -0.1223451 -0.003664315 -0.184664 -0.9827949 0.2311902 0.9990372 -0.04363928 0.004474729 -0.001599908 0 0 0 1 -0.01799517 -0.9864187 0.1632591 -0.1223451 -0.004040301 -0.1632124 -0.9865825 0.2311902 0.9998298 -0.01841356 -0.001048446 -0.001599908 0 0 0 1 0.01773528 -0.9897746 0.1415304 -0.1223451 -0.005796909 -0.141652 -0.9898993 0.2311902 0.9998256 0.01673549 -0.008249879 -0.001599908 0 0 0 1 0.06139631 -0.9907446 0.1210561 -0.1223451 -0.009344488 -0.12185 -0.9925042 0.2311902 0.9980696 0.05980468 -0.01673922 -0.001599908 0 0 0 1 0.1065351 -0.9889058 0.1035124 -0.1223451 -0.01407412 -0.1055941 -0.9943095 0.2311902 0.9942092 0.1044718 -0.02516752 -0.001599908 0 0 0 1 0.1445911 -0.9853758 0.09015183 -0.1223451 -0.01850557 -0.09378617 -0.9954202 0.2311902 0.9893185 0.1422603 -0.03179571 -0.001599908 0 0 0 1 0.168291 -0.9823533 0.08160537 -0.1223451 -0.02109298 -0.08635587 -0.9960408 0.2311902 0.9855114 0.1659033 -0.03525373 -0.001599908 0 0 0 1 0.1744887 -0.9815817 0.07778595 -0.1223451 -0.0210996 -0.08270695 -0.9963503 0.2311902 0.9844331 0.1722105 -0.03514248 -0.001599908 0 0 0 1 0.1650698 -0.983207 0.07781782 -0.1223451 -0.01894647 -0.08204664 -0.9964481 0.2311902 0.9860998 0.163009 -0.03217188 -0.001599908 0 0 0 1 0.1455992 -0.9860843 0.08023708 -0.1223451 -0.01585171 -0.08341604 -0.9963885 0.2311902 0.9892164 0.1438014 -0.02777651 -0.001599908 0 0 0 1 0.1224279 -0.9889528 0.08356398 -0.1223451 -0.01305366 -0.08579454 -0.9962271 0.2311902 0.9923913 0.1208751 -0.02341321 -0.001599908 0 0 0 1 0.09975991 -0.9911875 0.08714743 -0.1223451 -0.01114056 -0.08869138 -0.9959967 0.2311902 0.9949489 0.09838948 -0.01989031 -0.001599908 0 0 0 1 0.07818722 -0.9926848 0.09199578 -0.1223451 -0.009839594 -0.09304214 -0.9956132 0.2311902 0.9968901 0.07693884 -0.01704237 -0.001599908 0 0 0 1 0.05526995 -0.9933487 0.1010122 -0.1223451 -0.008295983 -0.1016201 -0.9947886 0.2311902 0.9984369 0.05414372 -0.01385736 -0.001599908 0 0 0 1 0.02763702 -0.9926336 0.1179586 -0.1223451 -0.005776227 -0.1181602 -0.9929775 0.2311902 0.9996012 0.02676138 -0.008999348 -0.001599908 0 0 0 1 -0.006408259 -0.9893935 0.1451166 -0.1223451 -0.002531826 -0.145103 -0.9894131 0.2311902 0.9999762 -0.006708043 -0.001575172 -0.001599908 0 0 0 1 -0.04483056 -0.9825298 0.1806239 -0.1223451 1.90139e-5 -0.1808065 -0.9835184 0.2311902 0.9989944 -0.04408848 0.008124292 -0.001599908 0 0 0 1 -0.08148637 -0.9725237 0.2180758 -0.1223451 4.92692e-4 -0.2188426 -0.9757599 0.2311902 0.9966741 -0.07940394 0.01831183 -0.001599908 0 0 0 1 -0.1082099 -0.9625193 0.2486893 -0.1223451 -8.92073e-4 -0.250064 -0.9682287 0.2311902 0.9941275 -0.104994 0.02620077 -0.001599908 0 0 0 1 -0.1170513 -0.9573627 0.2641122 -0.1223451 -0.002450049 -0.2656611 -0.9640632 0.2311902 0.9931225 -0.1134922 0.02875039 -0.001599908 0 0 0 1 -0.1088034 -0.9590449 0.2615227 -0.1223451 -0.002758801 -0.2627922 -0.9648483 0.2311902 0.9940593 -0.1057005 0.02594683 -0.001599908 0 0 0 1 -0.09543921 -0.9637917 0.2489913 -0.1223451 -0.001794934 -0.2499661 -0.9682528 0.2311902 0.9954334 -0.09285645 0.02212662 -0.001599908 0 0 0 1 -0.08157529 -0.9690163 0.2331358 -0.1223451 -8.32736e-4 -0.233849 -0.9722723 0.2311902 0.9966666 -0.07950777 0.01826939 -0.001599908 0 0 0 1 -0.06708939 -0.9743812 0.2146631 -0.1223451 -8.04067e-5 -0.2151426 -0.9765825 0.2311902 0.9977468 -0.06553583 0.01435542 -0.001599908 0 0 0 1 -0.05153744 -0.9795392 0.1945418 -0.1223451 3.07024e-4 -0.1948162 -0.9808396 0.2311902 0.9986708 -0.05049047 0.01034105 -0.001599908 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightShoulder_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightShoulder_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightShoulder_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightShoulder_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightShoulder_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightShoulder_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightShoulder_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightShoulder_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightShoulder_pose_matrix-sampler\" target=\"mixamorig_RightShoulder/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightArm_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightArm_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightArm_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightArm_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightArm_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightArm_pose_matrix-output-array\" count=\"1856\">0.4404181 0.6916953 -0.5723541 0 -0.8961176 0.3776058 -0.2332093 0.2750295 0.05481447 0.6156061 0.7861451 -2.38419e-7 0 0 0 1 0.4077568 0.7521302 -0.5177202 0 -0.9114602 0.3014121 -0.2799832 0.2750295 -0.05453673 0.5860467 0.8084398 -2.38419e-7 0 0 0 1 0.36555 0.8081954 -0.4617281 0 -0.9163803 0.225536 -0.3307264 0.2750295 -0.1631554 0.5440158 0.8230594 -2.38419e-7 0 0 0 1 0.3164111 0.8564153 -0.4079659 0 -0.9102136 0.1529548 -0.3848576 0.2750295 -0.2671977 0.4931095 0.8279177 -2.38419e-7 0 0 0 1 0.2636133 0.8955821 -0.3583856 0 -0.8929496 0.08601874 -0.4418609 0.2750295 -0.3648949 0.4365009 0.8223857 -2.38419e-7 0 0 0 1 0.2042302 0.9250701 -0.3202108 0 -0.8629864 0.01572574 -0.5049815 0.2750295 -0.4621077 0.3794702 0.8015349 -2.38419e-7 0 0 0 1 0.14321 0.9508247 -0.2746325 0 -0.8367501 -0.03186573 -0.5466567 0.2750295 -0.5285262 0.3080855 0.7910393 -2.38419e-7 0 0 0 1 0.0887316 0.9708562 -0.2226313 0 -0.8232796 -0.05432563 -0.5650298 0.2750295 -0.5606573 0.2334239 0.794466 -2.38419e-7 0 0 0 1 0.08566773 0.971918 -0.2191702 0 -0.8229394 -0.05497704 -0.5654625 0.2750295 -0.5616328 0.2288057 0.7951202 -2.38419e-7 0 0 0 1 0.05098873 0.9839041 -0.1712671 0 -0.8244758 -0.05530673 -0.5631875 0.2750295 -0.5635948 0.1699218 0.8083854 -2.38419e-7 0 0 0 1 0.03733104 0.9909766 -0.1287311 0 -0.834685 -0.03990987 -0.5492794 0.2750295 -0.5494608 0.1279551 0.8256633 -2.38419e-7 0 0 0 1 0.05119826 0.993479 -0.1018716 0 -0.8449028 -0.01129713 -0.5348002 0.2750295 -0.5324638 0.1134525 0.8388148 -2.38419e-7 0 0 0 1 0.09278916 0.991318 -0.09315991 0 -0.8475991 0.02954712 -0.5298139 0.2750295 -0.5224615 0.1281233 0.8429818 -2.38419e-7 0 0 0 1 0.1615975 0.981655 -0.1011909 0 -0.8392286 0.08275077 -0.5374451 0.2750295 -0.5192121 0.171772 0.8372054 -2.38419e-7 0 0 0 1 0.2563096 0.9587935 -0.1225556 0 -0.8205379 0.1488074 -0.5518816 0.2750295 -0.5109035 0.2420141 0.8248674 -2.38419e-7 0 0 0 1 0.372406 0.9151778 -0.1541532 0 -0.7950194 0.2288909 -0.5617408 0.2750295 -0.4788086 0.3317505 0.8128245 -2.38419e-7 0 0 0 1 0.5001647 0.8437302 -0.1948192 0 -0.7646045 0.3247096 -0.5567256 0.2750295 -0.4064667 0.4274142 0.8075282 -2.38419e-7 0 0 0 1 0.6249998 0.7409732 -0.2456291 0 -0.7253247 0.4349043 -0.5336307 0.2750295 -0.2885811 0.5116802 0.8092613 -2.38419e-7 0 0 0 1 0.7298233 0.6099244 -0.3087873 0 -0.6702251 0.5493342 -0.4990287 0.2750295 -0.1347424 0.5711601 0.8097036 -2.38419e-7 0 0 0 1 0.7905954 0.4758494 -0.3853907 0 -0.611843 0.6391929 -0.4659186 0.2750295 0.02463186 0.6041517 0.7964883 -2.38419e-7 0 0 0 1 0.8091193 0.352076 -0.4704974 0 -0.5622324 0.6967053 -0.4455284 0.2750295 0.1709383 0.6250148 0.7616665 -2.38419e-7 0 0 0 1 0.79212 0.255869 -0.5541449 0 -0.5384881 0.720394 -0.4371071 0.2750295 0.2873605 0.6446418 0.7084211 -2.38419e-7 0 0 0 1 0.7528401 0.2055275 -0.6252918 0 -0.5511631 0.7161445 -0.4282006 0.2750295 0.3597924 0.6670045 0.6524216 -2.38419e-7 0 0 0 1 0.707591 0.2063476 -0.675822 0 -0.590928 0.6972145 -0.405827 0.2750295 0.3874516 0.6865218 0.6152794 -2.38419e-7 0 0 0 1 0.6665794 0.2523292 -0.7014283 0 -0.6395454 0.6769903 -0.3642329 0.2750295 0.3829538 0.6913855 0.6126437 -2.38419e-7 0 0 0 1 0.6312637 0.3329018 -0.700487 0 -0.685942 0.6611294 -0.3039586 0.2750295 0.3619243 0.6723716 0.6456985 -2.38419e-7 0 0 0 1 0.5974338 0.4348143 -0.6738021 0 -0.7297767 0.6430951 -0.2320656 0.2750295 0.3324134 0.630369 0.7015241 -2.38419e-7 0 0 0 1 0.5615285 0.5410509 -0.6260587 0 -0.7742358 0.6105179 -0.1668124 0.2750295 0.2919661 0.5783871 0.7617243 -2.38419e-7 0 0 0 1 0.5245398 0.6350796 -0.5670372 0 -0.819591 0.5569712 -0.1343602 0.2750295 0.2304941 0.5352162 0.8126595 -2.38419e-7 0 0 0 1 0.4887727 0.7096263 -0.5074758 0 -0.8617907 0.4832201 -0.1543205 0.2750295 0.1357127 0.5127654 0.8477342 -2.38419e-7 0 0 0 1 0.4509481 0.7702077 -0.4510273 0 -0.8925498 0.3889499 -0.2281934 0.2750295 -3.29331e-4 0.5054678 0.8628452 -2.38419e-7 0 0 0 1 0.3991561 0.8214232 -0.4073549 0 -0.903208 0.2758202 -0.3288433 0.2750295 -0.1577629 0.4991861 0.8520116 -2.38419e-7 0 0 0 1 0.3249562 0.8690215 -0.3731012 0 -0.8916755 0.150069 -0.4270754 0.2750295 -0.315147 0.4714661 0.8236512 -2.38419e-7 0 0 0 1 0.2283917 0.9116191 -0.3417417 0 -0.8638636 0.02788348 -0.5029533 0.2750295 -0.4489731 0.4100885 0.793883 -2.38419e-7 0 0 0 1 0.1213495 0.9435006 -0.3083514 0 -0.8321045 -0.07267343 -0.5498366 0.2750295 -0.5411801 0.323303 0.7762725 -2.38419e-7 0 0 0 1 0.02442211 0.9620942 -0.2716212 0 -0.8091817 -0.1405263 -0.5705057 0.2750295 -0.5870503 0.2337239 0.7750771 -2.38419e-7 0 0 0 1 -0.0429907 0.9713852 -0.2335848 0 -0.8015339 -0.1731027 -0.5723443 0.2750295 -0.5964012 0.1626208 0.7860404 -2.38419e-7 0 0 0 1 -0.07262634 0.9775286 -0.1978968 0 -0.8068742 -0.1742178 -0.5644484 0.2750295 -0.5862417 0.118684 0.8013954 -2.38419e-7 0 0 0 1 -0.06943089 0.9833415 -0.1679842 0 -0.8174859 -0.1525935 -0.5553663 0.2750295 -0.5717482 0.09876511 0.8144626 -2.38419e-7 0 0 0 1 -0.04484159 0.9882388 -0.1461964 0 -0.8260344 -0.1189823 -0.5509173 0.2750295 -0.5618325 0.09605926 0.8216547 -2.38419e-7 0 0 0 1 -0.007001966 0.9909372 -0.1341416 0 -0.8293 -0.08071095 -0.5529436 0.2750295 -0.5587593 0.1073719 0.8223496 -2.38419e-7 0 0 0 1 0.04496428 0.9900388 -0.1334231 0 -0.8280774 -0.03777125 -0.55934 0.2750295 -0.5588078 0.1356349 0.8181301 -2.38419e-7 0 0 0 1 0.1188201 0.9821404 -0.1458828 0 -0.8250754 0.01592577 -0.5647975 0.2750295 -0.5523872 0.1874737 0.8122325 -2.38419e-7 0 0 0 1 0.2206497 0.959884 -0.1730199 0 -0.822549 0.08780186 -0.561875 0.2750295 -0.5241437 0.2662949 0.8089253 -2.38419e-7 0 0 0 1 0.3458524 0.913333 -0.2149618 0 -0.819809 0.1827061 -0.5427072 0.2750295 -0.4563977 0.3639243 0.8119481 -2.38419e-7 0 0 0 1 0.4773524 0.8362179 -0.269951 0 -0.8108548 0.3008086 -0.502024 0.2750295 -0.338598 0.4585336 0.8216432 -2.38419e-7 0 0 0 1 0.5940574 0.7312928 -0.3351206 0 -0.7846495 0.4349784 -0.4417222 0.2750295 -0.1772581 0.5253606 0.8322109 -2.38419e-7 0 0 0 1 0.6814344 0.6075921 -0.4080182 0 -0.7318653 0.5691411 -0.3747686 0.2750295 0.004513383 0.5539947 0.8325077 -2.38419e-7 0 0 0 1 0.7269387 0.4893622 -0.4817513 0 -0.6663066 0.672358 -0.3224434 0.2750295 0.1661177 0.5553908 0.8148285 -2.38419e-7 0 0 0 1 0.7441825 0.3780348 -0.5507101 0 -0.6001005 0.7404687 -0.3026301 0.2750295 0.2933789 0.5556937 0.7779031 -2.38419e-7 0 0 0 1 0.7419772 0.280144 -0.6090886 0 -0.5507802 0.772702 -0.3155512 0.2750295 0.3822442 0.5696057 0.7276252 -2.38419e-7 0 0 0 1 0.7282509 0.2091002 -0.6526312 0 -0.530152 0.7753583 -0.3431587 0.2750295 0.4342686 0.5958993 0.6755103 -2.38419e-7 0 0 0 1 0.7132574 0.1728533 -0.6792534 0 -0.5320756 0.7643649 -0.3641995 0.2750295 0.4562446 0.6211823 0.6371601 -2.38419e-7 0 0 0 1 0.7078382 0.1730154 -0.684858 0 -0.5410176 0.7561543 -0.3681443 0.2750295 0.4541638 0.6311069 0.6288393 -2.38419e-7 0 0 0 1 0.7183848 0.2069618 -0.6641459 0 -0.5467519 0.7582585 -0.3551144 0.2750295 0.4300992 0.6182319 0.6578783 -2.38419e-7 0 0 0 1 0.7422283 0.266248 -0.6149866 0 -0.5487812 0.7681801 -0.329754 0.2750295 0.3846244 0.5822459 0.7162772 -2.38419e-7 0 0 0 1 0.7710836 0.3368406 -0.5403407 0 -0.5507426 0.7787082 -0.3004921 0.2750295 0.3195499 0.5292934 0.7859618 -2.38419e-7 0 0 0 1 0.7975327 0.4048103 -0.447292 0 -0.5545996 0.7837555 -0.2795464 0.2750295 0.2374043 0.4710154 0.8495785 -2.38419e-7 0 0 0 1 0.8163639 0.4632654 -0.3448692 0 -0.5601918 0.7804176 -0.2777282 0.2750295 0.1404802 0.4199203 0.8966224 -2.38419e-7 0 0 0 1 0.8226219 0.5145108 -0.2420157 0 -0.5676814 0.7672285 -0.2984925 0.2750295 0.03210369 0.3829344 0.9232174 -2.38419e-7 0 0 0 1 0.8099954 0.5679089 -0.1462411 0 -0.5805655 0.7413573 -0.3366491 0.2750295 -0.08276919 0.3575869 0.9302045 -2.38419e-7 0 0 0 1 0.7659507 0.639821 -0.06283391 0 -0.6108137 0.6937501 -0.3815978 0.2750295 -0.2005633 0.3306649 0.9221902 -2.38419e-7 0 0 0 1 0.6967819 0.7172827 -3.56853e-4 0 -0.6500497 0.6312597 -0.4230202 0.2750295 -0.3031999 0.2949848 0.9061199 -2.38419e-7 0 0 0 1 0.6087711 0.7923197 0.04033756 0 -0.6959017 0.5577214 -0.4524019 0.2750295 -0.380944 0.2473382 0.8909014 -2.38419e-7 0 0 0 1 0.5098593 0.8580669 0.06135385 0 -0.7466593 0.4768263 -0.4638276 0.2750295 -0.4272503 0.1906765 0.8837984 -2.38419e-7 0 0 0 1 0.4096823 0.9098287 0.06612007 0 -0.7991737 0.3929154 -0.454905 0.2750295 -0.4398652 0.1335252 0.8880818 -2.38419e-7 0 0 0 1 0.3176352 0.9464116 0.05841812 0 -0.8483286 0.3111594 -0.4283901 0.2750295 -0.4236107 0.086514 0.9017035 -2.38419e-7 0 0 0 1 0.2418138 0.96945 0.04113963 0 -0.8881415 0.2382106 -0.3930141 0.2750295 -0.3908076 0.05849838 0.9186112 -2.38419e-7 0 0 0 1 0.188711 0.9819167 0.0150744 0 -0.9147584 0.1813463 -0.3610125 0.2750295 -0.357218 0.05433765 0.932439 -2.38419e-7 0 0 0 1 0.1625159 0.9864729 -0.02144045 0 -0.9282919 0.1454933 -0.3422067 0.2750295 -0.3344582 0.075517 0.9393799 -2.38419e-7 0 0 0 1 0.1638573 0.9838982 -0.07137391 0 -0.9318911 0.1306484 -0.3383921 0.2750295 -0.3236186 0.1219608 0.9382944 -2.38419e-7 0 0 0 1 0.1891514 0.9723656 -0.1368456 0 -0.9301378 0.1327529 -0.3423745 0.2750295 -0.3147467 0.1920458 0.9295443 -2.38419e-7 0 0 0 1 0.231506 0.9482448 -0.217339 0 -0.9278322 0.1480543 -0.3423545 0.2750295 -0.292458 0.2809113 0.9140879 -2.38419e-7 0 0 0 1 0.2826982 0.9080199 -0.3091625 0 -0.927762 0.1769863 -0.3285315 0.2750295 -0.2435957 0.3797046 0.8924601 -2.38419e-7 0 0 0 1 0.3350047 0.8502349 -0.4060444 0 -0.9280976 0.2234481 -0.297834 0.2750295 -0.1624991 0.4766247 0.8639575 -2.38419e-7 0 0 0 1 0.3840638 0.7777485 -0.497596 0 -0.9217107 0.2912898 -0.2561226 0.2750295 -0.05425437 0.5570073 0.8287333 -2.38419e-7 0 0 0 1 0.4280075 0.6959429 -0.5766042 0 -0.9010621 0.3779901 -0.2126269 0.2750295 0.0699745 0.6105623 0.7888703 -2.38419e-7 0 0 0 1 0.4630434 0.613028 -0.640146 0 -0.8646812 0.4711078 -0.1743081 0.2750295 0.1947221 0.6342345 0.7482173 -2.38419e-7 0 0 0 1 0.4903061 0.5396228 -0.6844025 0 -0.8172879 0.5574265 -0.1459981 0.2750295 0.3027202 0.6309376 0.7143373 -2.38419e-7 0 0 0 1 0.5148306 0.4846113 -0.7071783 0 -0.7677392 0.6276876 -0.1287808 0.2750295 0.3814785 0.6092288 0.6952081 -2.38419e-7 0 0 0 1 0.5428029 0.4524023 -0.7075992 0 -0.7242874 0.6786732 -0.1216959 0.2750295 0.4251733 0.5785623 0.6960553 -2.38419e-7 0 0 0 1 0.5786201 0.4412727 -0.6859132 0 -0.6905668 0.7125338 -0.1241474 0.2750295 0.4339534 0.5455032 0.7170148 -2.38419e-7 0 0 0 1 0.6245685 0.4439061 -0.6425427 0 -0.6639901 0.7349595 -0.1376631 0.2750295 0.4111334 0.5126222 0.7537822 -2.38419e-7 0 0 0 1 0.681039 0.4500563 -0.5776116 0 -0.6373168 0.7527475 -0.1649184 0.2750295 0.3605732 0.4804375 0.7994789 -2.38419e-7 0 0 0 1 0.7450569 0.4502422 -0.4921095 0 -0.6022111 0.7712762 -0.206093 0.2750295 0.2867606 0.449905 0.8457858 -2.38419e-7 0 0 0 1 0.8091806 0.4399557 -0.3894423 0 -0.5538923 0.7923262 -0.2557773 0.2750295 0.1960347 0.4226792 0.8848233 -2.38419e-7 0 0 0 1 0.863203 0.422548 -0.2762849 0 -0.4955502 0.8137464 -0.303721 0.2750295 0.09648916 0.3990859 0.9118224 -2.38419e-7 0 0 0 1 0.8983891 0.4080477 -0.1624609 0 -0.4391859 0.8316839 -0.3397306 0.2750295 -0.003510237 0.3765608 0.926385 -2.38419e-7 0 0 0 1 0.9107608 0.4086081 -0.05961448 0 -0.4014971 0.8425171 -0.3591166 0.2750295 -0.09651178 0.3510044 0.9313868 -2.38419e-7 0 0 0 1 0.8963711 0.4427006 0.02312702 0 -0.4049086 0.8388569 -0.3638238 0.2750295 -0.1804654 0.3167568 0.9311804 -2.38419e-7 0 0 0 1 0.8612688 0.5027218 0.07406932 0 -0.4466279 0.8184319 -0.3615138 0.2750295 -0.2423617 0.2782792 0.9294199 -2.38419e-7 0 0 0 1 0.8102219 0.5788375 0.09212647 0 -0.5154377 0.7784841 -0.3581703 0.2750295 -0.2790416 0.2427121 0.9290997 -2.38419e-7 0 0 0 1 0.7437587 0.6630737 0.08459213 0 -0.5994487 0.7176197 -0.3545177 0.2750295 -0.2957765 0.212967 0.9312147 -2.38419e-7 0 0 0 1 0.6618372 0.7469978 0.06297192 0 -0.6870718 0.638046 -0.347605 0.2750295 -0.2998393 0.1867918 0.9355238 -2.38419e-7 0 0 0 1 0.5660547 0.8234501 0.03887668 0 -0.7690665 0.5444763 -0.3347859 0.2750295 -0.296847 0.1596084 0.9414917 -2.38419e-7 0 0 0 1 0.460573 0.8873993 0.01986322 0 -0.8388579 0.4424763 -0.317067 0.2750295 -0.2901542 0.12937 0.9481949 -2.38419e-7 0 0 0 1 0.3523714 0.9358332 0.007085055 0 -0.8921632 0.3381953 -0.2994468 0.2750295 -0.2826285 0.09919551 0.9540865 -2.38419e-7 0 0 0 1 0.251428 0.9678668 -0.004191607 0 -0.9271028 0.2395903 -0.2882293 0.2750295 -0.2779633 0.07635498 0.9575519 -2.38419e-7 0 0 0 1 0.1696709 0.9852611 -0.02172616 0 -0.9450043 0.1564045 -0.2872348 0.2750295 -0.2796033 0.06926674 0.9576135 -2.38419e-7 0 0 0 1 0.1178937 0.991628 -0.0526787 0 -0.9504368 0.09730937 -0.2952964 0.2750295 -0.2876982 0.08488134 0.9539518 -2.38419e-7 0 0 0 1 0.1019271 0.9896651 -0.1008625 0 -0.949556 0.06656398 -0.3064508 0.2750295 -0.29657 0.1270103 0.9465274 -2.38419e-7 0 0 0 1 0.1201651 0.9788027 -0.1658474 0 -0.9478559 0.0634467 -0.3123198 0.2750295 -0.2951771 0.1947294 0.9353878 -2.38419e-7 0 0 0 1 0.1639021 0.9558693 -0.2438225 0 -0.9485597 0.08484532 -0.3050165 0.2750295 -0.2708688 0.2812732 0.9206057 -2.38419e-7 0 0 0 1 0.2206227 0.9180776 -0.329331 0 -0.9515613 0.1284675 -0.2793327 0.2750295 -0.2141408 0.3750058 0.90195 -2.38419e-7 0 0 0 1 0.2785214 0.8652859 -0.4167804 0 -0.9526691 0.1938472 -0.2341893 0.2750295 -0.1218489 0.4622805 0.8783218 -2.38419e-7 0 0 0 1 0.3296524 0.8000622 -0.501228 0 -0.9441015 0.2800665 -0.1738821 0.2750295 0.001260623 0.5305308 0.8476646 -2.38419e-7 0 0 0 1 0.3705436 0.7267597 -0.578375 0 -0.9179555 0.3814877 -0.1087404 0.2750295 0.1416148 0.5712156 0.808491 -2.38419e-7 0 0 0 1 0.404681 0.6533006 -0.6398681 0 -0.8723351 0.485714 -0.05579306 0.2750295 0.2743433 0.5807581 0.7664564 -2.38419e-7 0 0 0 1 0.4312859 0.585021 -0.6868353 0 -0.8184497 0.574034 -0.02498983 0.2750295 0.3796473 0.572918 0.7263833 -2.38419e-7 0 0 0 1 0.4531902 0.5314662 -0.7156549 0 -0.7751774 0.6313596 -0.02201701 0.2750295 0.4401343 0.5647374 0.6981068 -2.38419e-7 0 0 0 1 0.4735767 0.5008402 -0.7244888 0 -0.758467 0.6500571 -0.04640156 0.2750295 0.4477194 0.5714756 0.6877229 -2.38419e-7 0 0 0 1 0.4880177 0.5025578 -0.7136344 0 -0.7719535 0.6300796 -0.08418252 0.2750295 0.40734 0.591975 0.6954417 -2.38419e-7 0 0 0 1 0.4880942 0.5360013 -0.6888151 0 -0.8060032 0.5795937 -0.120123 0.2750295 0.3348468 0.6138185 0.7149154 -2.38419e-7 0 0 0 1 0.4806635 0.5812504 -0.6565899 0 -0.8405974 0.518637 -0.1562411 0.2750295 0.2497167 0.6270271 0.7378875 -2.38419e-7 0 0 0 1 0.4648066 0.6347836 -0.6172554 0 -0.871749 0.4500929 -0.1935714 0.2750295 0.1549465 0.6280652 0.7625781 -2.38419e-7 0 0 0 1 0.4404181 0.6916953 -0.5723541 0 -0.8961176 0.3776058 -0.2332093 0.2750295 0.05481447 0.6156061 0.7861451 -2.38419e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightArm_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightArm_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightArm_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightArm_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightArm_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightArm_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightArm_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightArm_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightArm_pose_matrix-sampler\" target=\"mixamorig_RightArm/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightForeArm_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightForeArm_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightForeArm_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightForeArm_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightForeArm_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightForeArm_pose_matrix-output-array\" count=\"1856\">-0.3330657 0.9404839 0.06751251 5.96046e-8 -0.940779 -0.3362664 0.04313111 0.5333436 0.06326628 -0.04914883 0.9967861 0 0 0 0 1 -0.2215278 0.9731559 0.06239879 5.96046e-8 -0.9734613 -0.224459 0.04462925 0.5333436 0.05743715 -0.05085614 0.9970533 0 0 0 0 1 -0.0835042 0.994929 0.05607122 5.96046e-8 -0.9952412 -0.0861019 0.04562801 0.5333436 0.05022448 -0.05199423 0.9973837 0 0 0 0 1 0.08051054 0.9955707 0.0485518 5.96046e-8 -0.995883 0.07830916 0.0456574 0.5333436 0.04165313 -0.05202782 0.9977766 0 0 0 0 1 0.2648932 0.9634439 0.04009905 5.96046e-8 -0.9637461 0.2631375 0.04418388 0.5333436 0.03201716 -0.0503493 0.9982185 0 0 0 0 1 0.531973 0.8463033 0.02785447 5.96046e-8 -0.8465688 0.5308625 0.03881171 0.5333436 0.01805964 -0.04422748 0.9988585 0 0 0 0 1 0.7529578 0.6578305 0.01772341 5.96046e-8 -0.6580371 0.7523811 0.03016889 0.5333436 0.006511293 -0.03437856 0.9993879 0 0 0 0 1 0.8946434 0.4466403 0.01122791 5.96046e-8 -0.4467805 0.8944093 0.02048391 0.5333436 -8.93369e-4 -0.02334219 0.9997273 0 0 0 0 1 0.9010757 0.4335244 0.01093301 5.96046e-8 -0.4336605 0.900857 0.01988211 0.5333436 -0.001229659 -0.0226565 0.9997427 0 0 0 0 1 0.9631184 0.2689572 0.008088589 5.96046e-8 -0.2690417 0.9630497 0.01233521 0.5333436 -0.004471987 -0.01405653 0.9998914 0 0 0 0 1 0.9876037 0.1568139 0.006966323 5.96046e-8 -0.1568631 0.9875944 0.007192403 0.5333436 -0.005752057 -0.008196026 0.9999501 0 0 0 0 1 0.992942 0.1184119 0.006721407 5.96046e-8 -0.1184491 0.9929454 0.005431503 0.5333436 -0.006030828 -0.006189317 0.9999628 0 0 0 0 1 0.9892111 0.1463367 0.006892443 5.96046e-8 -0.1463827 0.9892054 0.0067119 0.5333436 -0.005835831 -0.007648438 0.9999542 0 0 0 0 1 0.9731127 0.2302043 0.007630557 5.96046e-8 -0.2302766 0.9730682 0.01055795 0.5333436 -0.004994571 -0.01203129 0.9999154 0 0 0 0 1 0.9327306 0.3604501 0.009482026 5.96046e-8 -0.3605633 0.9325884 0.01653102 0.5333436 -0.002884164 -0.01883787 0.9998186 0 0 0 0 1 0.8509333 0.5251075 0.01323184 5.96046e-8 -0.5252724 0.8505934 0.02408212 0.5333436 0.0013908 -0.02744254 0.9996227 0 0 0 0 1 0.7100744 0.7038515 0.01968953 5.96046e-8 -0.7040726 0.7093941 0.03227922 0.5333436 0.008752186 -0.03678352 0.9992852 0 0 0 0 1 0.501054 0.8649212 0.02927211 5.96046e-8 -0.8651923 0.4998689 0.03966594 0.5333436 0.0196757 -0.04520074 0.9987844 0 0 0 0 1 0.2350878 0.9710895 0.04146525 5.96046e-8 -0.9713944 0.2332599 0.04453459 0.5333436 0.03357488 -0.05074856 0.9981471 0 0 0 0 1 -0.03149207 0.9980615 0.05368686 5.96046e-8 -0.9983748 -0.03396407 0.04577154 0.5333436 0.04750621 -0.05215812 0.9975084 0 0 0 0 1 -0.2710781 0.9603827 0.0646705 5.96046e-8 -0.9606839 -0.2741291 0.04404363 0.5333436 0.06002679 -0.05018863 0.9969343 0 0 0 0 1 -0.4566002 0.8866579 0.07317591 5.96046e-8 -0.886936 -0.4600994 0.04066247 0.5333436 0.06972188 -0.04633582 0.9964901 0 0 0 0 1 -0.5736476 0.8153284 0.07854199 5.96046e-8 -0.8155841 -0.5774297 0.03739148 0.5333436 0.0758388 -0.04260798 0.9962096 0 0 0 0 1 -0.6304047 0.7720144 0.08114383 5.96046e-8 -0.7722567 -0.6343238 0.03540501 0.5333436 0.07880461 -0.04034431 0.9960736 0 0 0 0 1 -0.6451927 0.7596264 0.08182216 5.96046e-8 -0.7598647 -0.6491476 0.03483725 0.5333436 0.07957792 -0.03969702 0.9960381 0 0 0 0 1 -0.6361184 0.7672855 0.08140594 5.96046e-8 -0.767526 -0.6400515 0.03518811 0.5333436 0.07910335 -0.04009731 0.9960598 0 0 0 0 1 -0.6167578 0.7830243 0.08051816 5.96046e-8 -0.7832698 -0.620644 0.03590986 0.5333436 0.07809129 -0.04091968 0.9961063 0 0 0 0 1 -0.5936552 0.8007874 0.07945916 5.96046e-8 -0.8010386 -0.5974856 0.03672466 0.5333436 0.07688439 -0.04184797 0.9961617 0 0 0 0 1 -0.5631595 0.8226531 0.07806119 5.96046e-8 -0.8229114 -0.566916 0.0377275 0.5333436 0.07529086 -0.0429908 0.9962345 0 0 0 0 1 -0.5093586 0.857228 0.07559434 5.96046e-8 -0.8574969 -0.5129853 0.03931281 0.5333436 0.0724788 -0.04479755 0.9963634 0 0 0 0 1 -0.4020458 0.9128882 0.07067484 5.96046e-8 -0.9131745 -0.4054133 0.04186577 0.5333436 0.06687129 -0.04770645 0.9966207 0 0 0 0 1 -0.2214699 0.9731693 0.06239596 5.96046e-8 -0.9734747 -0.224401 0.04462978 0.5333436 0.05743405 -0.05085668 0.9970533 0 0 0 0 1 0.04105037 0.9978874 0.05036104 5.96046e-8 -0.9982004 0.03875367 0.04576334 0.5333436 0.043715 -0.05214894 0.9976823 0 0 0 0 1 0.3548274 0.9342398 0.03597596 5.96046e-8 -0.9345329 0.3532889 0.04284427 0.5333436 0.02731696 -0.04882303 0.9984342 0 0 0 0 1 0.6469835 0.7621698 0.02258182 5.96046e-8 -0.7624092 0.6461508 0.03495386 0.5333436 0.01204953 -0.0398311 0.9991339 0 0 0 0 1 0.8492121 0.5278847 0.01331067 5.96046e-8 -0.5280505 0.848868 0.02420962 0.5333436 0.001480952 -0.02758777 0.9996185 0 0 0 0 1 0.9499465 0.3122919 0.008692622 5.96046e-8 -0.3123899 0.9498461 0.01432237 0.5333436 -0.003783911 -0.01632094 0.9998597 0 0 0 0 1 0.985674 0.1685157 0.007054478 5.96046e-8 -0.1685687 0.9856598 0.007729083 0.5333436 -0.005650818 -0.00880754 0.9999454 0 0 0 0 1 0.9949254 0.1003999 0.00663051 5.96046e-8 -0.1004315 0.9949334 0.004605174 0.5333436 -0.00613448 -0.005247742 0.9999677 0 0 0 0 1 0.9964209 0.08427724 0.006562084 5.96046e-8 -0.08430372 0.996433 0.003865898 0.5333436 -0.006212831 -0.00440529 0.9999712 0 0 0 0 1 0.995191 0.09773065 0.006618381 5.96046e-8 -0.09776138 0.9951997 0.004482836 0.5333436 -0.006148487 -0.005108327 0.9999682 0 0 0 0 1 0.9906713 0.1361034 0.006825387 5.96046e-8 -0.1361462 0.9906691 0.006242752 0.5333436 -0.005912036 -0.007113785 0.9999574 0 0 0 0 1 0.9771156 0.2125803 0.007446855 5.96046e-8 -0.2126471 0.9770806 0.009749413 0.5333436 -0.005203635 -0.01110986 0.9999249 0 0 0 0 1 0.9387954 0.3443529 0.009203672 5.96046e-8 -0.3444611 0.938668 0.01579273 0.5333436 -0.003200874 -0.01799649 0.999833 0 0 0 0 1 0.8465661 0.5321144 0.01343217 5.96046e-8 -0.5322814 0.8462159 0.02440348 0.5333436 0.001618981 -0.02780887 0.9996123 0 0 0 0 1 0.6680251 0.743825 0.02161729 5.96046e-8 -0.7440584 0.6672434 0.03411219 0.5333436 0.01094954 -0.03887236 0.9991844 0 0 0 0 1 0.3945253 0.9182502 0.03415576 5.96046e-8 -0.9185385 0.3930827 0.04211149 0.5333436 0.02524289 -0.04798743 0.9985292 0 0 0 0 1 0.06284471 0.9968022 0.04936177 5.96046e-8 -0.997115 0.06060067 0.04571357 0.5333436 0.04257613 -0.05209219 0.9977343 0 0 0 0 1 -0.2358843 0.9697334 0.06305718 5.96046e-8 -0.9700377 -0.2388502 0.0444724 0.5333436 0.05818763 -0.05067748 0.9970188 0 0 0 0 1 -0.468811 0.8802158 0.07373551 5.96046e-8 -0.880492 -0.4723397 0.04036686 0.5333436 0.07035968 -0.04599905 0.9964606 0 0 0 0 1 -0.6221994 0.7786815 0.08076784 5.96046e-8 -0.7789259 -0.6260988 0.03571093 0.5333436 0.07837597 -0.04069276 0.9960933 0 0 0 0 1 -0.7021773 0.7069782 0.08443427 5.96046e-8 -0.7072 -0.7062699 0.0324229 0.5333436 0.08255565 -0.03694528 0.9959016 0 0 0 0 1 -0.7288419 0.6793034 0.08565688 5.96046e-8 -0.6795166 -0.7329989 0.03115338 0.5333436 0.08394888 -0.0354993 0.9958377 0 0 0 0 1 -0.7223195 0.6862718 0.08535796 5.96046e-8 -0.6864873 -0.7264606 0.03147286 0.5333436 0.08360821 -0.03586368 0.9958535 0 0 0 0 1 -0.6986655 0.7104688 0.08427307 5.96046e-8 -0.7106917 -0.7027495 0.03258255 0.5333436 0.08237174 -0.03712782 0.9959102 0 0 0 0 1 -0.6693817 0.7382758 0.08293089 5.96046e-8 -0.7385073 -0.6733952 0.03385788 0.5333436 0.08084175 -0.03858118 0.9959803 0 0 0 0 1 -0.6396925 0.7642909 0.08156982 5.96046e-8 -0.7645307 -0.6436341 0.03505099 0.5333436 0.07929021 -0.03994073 0.9960515 0 0 0 0 1 -0.6070138 0.7906475 0.08007169 5.96046e-8 -0.7908956 -0.6108765 0.0362595 0.5333436 0.07758242 -0.04131828 0.9961296 0 0 0 0 1 -0.5624191 0.823163 0.07802701 5.96046e-8 -0.8234211 -0.5661742 0.0377509 0.5333436 0.07525188 -0.04301724 0.9962364 0 0 0 0 1 -0.4947018 0.8658276 0.07492238 5.96046e-8 -0.8660992 -0.498293 0.03970709 0.5333436 0.07171279 -0.04524705 0.9963987 0 0 0 0 1 -0.3917742 0.9173792 0.07020405 5.96046e-8 -0.917667 -0.3951168 0.04207107 0.5333436 0.06633392 -0.04794155 0.9966453 0 0 0 0 1 -0.229202 0.9713544 0.06275094 5.96046e-8 -0.971659 -0.2321518 0.04454675 0.5333436 0.05783841 -0.05076227 0.9970348 0 0 0 0 1 -0.02036579 0.9983779 0.05317643 5.96046e-8 -0.9986911 -0.02281095 0.04578602 0.5333436 0.0469248 -0.05217433 0.9975353 0 0 0 0 1 0.2160435 0.9754658 0.04233864 5.96046e-8 -0.9757718 0.2141697 0.04473534 0.5333436 0.03457016 -0.05097765 0.9981016 0 0 0 0 1 0.453226 0.8908403 0.0314649 5.96046e-8 -0.8911197 0.4519253 0.04085466 0.5333436 0.0221753 -0.04655543 0.9986697 0 0 0 0 1 0.6595358 0.7513512 0.0220066 5.96046e-8 -0.751587 0.6587336 0.03445762 0.5333436 0.01139337 -0.03926593 0.9991641 0 0 0 0 1 0.8101032 0.5860932 0.01510379 5.96046e-8 -0.5862773 0.8096648 0.02687889 0.5333436 0.003524579 -0.03062969 0.9995248 0 0 0 0 1 0.8982556 0.4393347 0.01106241 5.96046e-8 -0.4394725 0.8980304 0.02014846 0.5333436 -0.001082391 -0.02296007 0.999736 0 0 0 0 1 0.9353883 0.3534988 0.009359926 5.96046e-8 -0.3536098 0.9352525 0.01621246 0.5333436 -0.003022745 -0.01847473 0.9998251 0 0 0 0 1 0.935603 0.3529308 0.009350151 5.96046e-8 -0.3530416 0.9354677 0.01618665 0.5333436 -0.003033966 -0.01844522 0.9998254 0 0 0 0 1 0.8995089 0.4367642 0.01100475 5.96046e-8 -0.4369013 0.8992864 0.02003062 0.5333436 -0.001147762 -0.02282572 0.999739 0 0 0 0 1 0.8146309 0.5797884 0.01489624 5.96046e-8 -0.5799705 0.8142034 0.02658975 0.5333436 0.003287897 -0.03030023 0.9995356 0 0 0 0 1 0.6712592 0.7409119 0.02146918 5.96046e-8 -0.7411446 0.670485 0.03397861 0.5333436 0.01078043 -0.03872016 0.9991921 0 0 0 0 1 0.4758639 0.8789929 0.03042686 5.96046e-8 -0.8792687 0.4746178 0.04031122 0.5333436 0.02099214 -0.04593599 0.998724 0 0 0 0 1 0.2500589 0.9673717 0.04077893 5.96046e-8 -0.9676753 0.2482672 0.04436424 0.5333436 0.03279267 -0.05055436 0.998183 0 0 0 0 1 0.02667308 0.9983416 0.05102026 5.96046e-8 -0.9986547 0.0243416 0.04578444 0.5333436 0.04446664 -0.05217281 0.9976476 0 0 0 0 1 -0.1758085 0.9825761 0.06030285 5.96046e-8 -0.9828844 -0.1786293 0.04506159 0.5333436 0.05504829 -0.05134848 0.9971627 0 0 0 0 1 -0.34755 0.9351799 0.0681763 5.96046e-8 -0.9354733 -0.3507857 0.04288793 0.5333436 0.06402326 -0.04887131 0.9967512 0 0 0 0 1 -0.4793518 0.8744794 0.07421893 5.96046e-8 -0.8747535 -0.482906 0.04010409 0.5333436 0.07091096 -0.04569925 0.9964354 0 0 0 0 1 -0.5707586 0.817366 0.07840958 5.96046e-8 -0.8176225 -0.5745336 0.03748474 0.5333436 0.07568768 -0.04271469 0.9962164 0 0 0 0 1 -0.6276458 0.7742723 0.08101746 5.96046e-8 -0.774515 -0.6315585 0.03550872 0.5333436 0.07866064 -0.0404623 0.9960803 0 0 0 0 1 -0.6591693 0.7474599 0.08246285 5.96046e-8 -0.7476944 -0.6631579 0.03427896 0.5333436 0.08030796 -0.03906133 0.9960047 0 0 0 0 1 -0.6744975 0.7335782 0.08316526 5.96046e-8 -0.7338082 -0.6785233 0.03364262 0.5333436 0.08110908 -0.03833545 0.9959678 0 0 0 0 1 -0.6803311 0.728141 0.08343282 5.96046e-8 -0.7283694 -0.684371 0.03339311 0.5333436 0.08141387 -0.0380515 0.9959539 0 0 0 0 1 -0.6796303 0.7287988 0.08340061 5.96046e-8 -0.7290276 -0.6836683 0.0334233 0.5333436 0.08137721 -0.03808577 0.9959558 0 0 0 0 1 -0.6710961 0.7367091 0.08300945 5.96046e-8 -0.7369403 -0.6751135 0.03378615 0.5333436 0.08093137 -0.03849918 0.9959762 0 0 0 0 1 -0.6495847 0.7558522 0.08202335 5.96046e-8 -0.7560894 -0.65355 0.03466406 0.5333436 0.07980734 -0.03949972 0.9960276 0 0 0 0 1 -0.6077592 0.7900714 0.08010596 5.96046e-8 -0.7903193 -0.6116236 0.0362331 0.5333436 0.07762137 -0.04128824 0.9961279 0 0 0 0 1 -0.5377296 0.8396038 0.07689553 5.96046e-8 -0.8398671 -0.5414249 0.03850412 0.5333436 0.07396138 -0.04387717 0.9962955 0 0 0 0 1 -0.4195367 0.9049203 0.07147658 5.96046e-8 -0.9052043 -0.4229463 0.04150006 0.5333436 0.06778502 -0.04729009 0.9965789 0 0 0 0 1 -0.2552289 0.9647641 0.06394371 5.96046e-8 -0.9650669 -0.2582416 0.04424474 0.5333436 0.05919865 -0.05041736 0.9969724 0 0 0 0 1 -0.05711576 0.9968594 0.05486152 5.96046e-8 -0.9971721 -0.05964977 0.04571646 0.5333436 0.04884538 -0.0520952 0.9974471 0 0 0 0 1 0.158881 0.9862737 0.04495925 5.96046e-8 -0.9865835 0.156869 0.04523087 0.5333436 0.0375573 -0.05154237 0.9979645 0 0 0 0 1 0.3733558 0.9270231 0.0351266 5.96046e-8 -0.9273141 0.371862 0.04251361 0.5333436 0.02634889 -0.04844606 0.9984785 0 0 0 0 1 0.5678265 0.8227308 0.0262107 5.96046e-8 -0.8229895 0.5668025 0.03773114 0.5333436 0.01618629 -0.04299584 0.9989443 0 0 0 0 1 0.7272108 0.6861542 0.018904 5.96046e-8 -0.6863698 0.7265717 0.03146759 0.5333436 0.007856533 -0.03585863 0.9993262 0 0 0 0 1 0.8420528 0.5392231 0.01363876 5.96046e-8 -0.5393925 0.8416913 0.02472955 0.5333436 0.00185518 -0.02818015 0.9996014 0 0 0 0 1 0.9115258 0.4111107 0.01045394 5.96046e-8 -0.4112397 0.9113324 0.01885444 0.5333436 -0.001775697 -0.02148536 0.9997678 0 0 0 0 1 0.9434047 0.3315225 0.008992523 5.96046e-8 -0.3316267 0.9432881 0.01520437 0.5333436 -0.003441885 -0.01732606 0.999844 0 0 0 0 1 0.9468578 0.3215326 0.008834094 5.96046e-8 -0.3216336 0.9467497 0.01474631 0.5333436 -0.003622174 -0.01680401 0.9998527 0 0 0 0 1 0.9221883 0.3866132 0.009965152 5.96046e-8 -0.3867347 0.9220207 0.01773095 0.5333436 -0.002332985 -0.02020514 0.9997934 0 0 0 0 1 0.8579798 0.5135217 0.01290876 5.96046e-8 -0.513683 0.8576569 0.02355099 0.5333436 0.001022696 -0.02683726 0.9996395 0 0 0 0 1 0.7401492 0.6721937 0.01831117 5.96046e-8 -0.6724048 0.7395415 0.03082752 0.5333436 0.007180274 -0.03512949 0.9993571 0 0 0 0 1 0.5650407 0.8246429 0.02633855 5.96046e-8 -0.8249017 0.56401 0.03781861 0.5333436 0.0163317 -0.04309577 0.9989375 0 0 0 0 1 0.3451675 0.9378344 0.03641874 5.96046e-8 -0.9381287 0.3436057 0.04300955 0.5333436 0.02782223 -0.04901096 0.9984108 0 0 0 0 1 0.1051641 0.9933238 0.04742166 5.96046e-8 -0.9936355 0.1030223 0.04555449 0.5333436 0.04036485 -0.05191043 0.9978358 0 0 0 0 1 -0.1260963 0.9903199 0.0580236 5.96046e-8 -0.9906308 -0.1287969 0.04541636 0.5333436 0.05244994 -0.0517531 0.9972819 0 0 0 0 1 -0.3179444 0.9457522 0.06681922 5.96046e-8 -0.9460489 -0.3211086 0.04337266 0.5333436 0.06247601 -0.0494241 0.9968222 0 0 0 0 1 -0.4644592 0.8825365 0.07353646 5.96046e-8 -0.8828135 -0.4679774 0.04047364 0.5333436 0.07013282 -0.04612052 0.9964711 0 0 0 0 1 -0.5587389 0.8256811 0.07785821 5.96046e-8 -0.8259404 -0.5624848 0.03786647 0.5333436 0.07505971 -0.0431487 0.9962454 0 0 0 0 1 -0.6028341 0.7938579 0.0798797 5.96046e-8 -0.794107 -0.6066867 0.03640679 0.5333436 0.07736376 -0.04148571 0.9961396 0 0 0 0 1 -0.6005852 0.7955716 0.07977667 5.96046e-8 -0.7958212 -0.6044323 0.03648525 0.5333436 0.07724622 -0.0415754 0.996145 0 0 0 0 1 -0.5530931 0.829498 0.07759956 5.96046e-8 -0.8297582 -0.5568255 0.0380412 0.5333436 0.07476455 -0.04334845 0.9962589 0 0 0 0 1 -0.491943 0.8674089 0.07479629 5.96046e-8 -0.8676811 -0.4955276 0.0397796 0.5333436 0.07156879 -0.04532996 0.9964052 0 0 0 0 1 -0.4186999 0.9053106 0.07143816 5.96046e-8 -0.9055946 -0.4221075 0.04151797 0.5333436 0.06774125 -0.04731041 0.9965807 0 0 0 0 1 -0.3330657 0.9404839 0.06751248 5.96046e-8 -0.940779 -0.3362665 0.04313114 0.5333436 0.06326631 -0.0491488 0.9967861 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightForeArm_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightForeArm_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightForeArm_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightForeArm_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightForeArm_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightForeArm_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightForeArm_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightForeArm_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightForeArm_pose_matrix-sampler\" target=\"mixamorig_RightForeArm/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHand_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHand_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHand_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHand_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHand_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHand_pose_matrix-output-array\" count=\"1856\">0.7399998 -0.2082993 -0.6395399 0 0.3906745 0.9071116 0.1565945 0.4275032 0.5475156 -0.3657318 0.7526397 0 0 0 0 1 0.7568107 -0.1552441 -0.6349304 0 0.3588019 0.910618 0.2050257 0.4275032 0.5463501 -0.3829799 0.7448674 0 0 0 0 1 0.7776964 -0.09627652 -0.6212237 0 0.3201417 0.9111147 0.2595748 0.4275032 0.5410153 -0.40075 0.7393925 0 0 0 0 1 0.8004625 -0.03120103 -0.5985701 0 0.2741467 0.9071229 0.3193296 0.4275032 0.5330133 -0.4197074 0.7346717 0 0 0 0 1 0.8227262 0.03959298 -0.5670571 0 0.220163 0.8975145 0.3820939 0.4275032 0.5240704 -0.4392037 0.7296917 0 0 0 0 1 0.8563496 0.1296398 -0.4998585 0 0.13723 0.8760383 0.4623036 0.4275032 0.4978282 -0.4644891 0.7324046 0 0 0 0 1 0.8830296 0.1926576 -0.4279502 0 0.06471732 0.8531601 0.5176187 0.4275032 0.4648334 -0.4847685 0.7408973 0 0 0 0 1 0.9034879 0.2192 -0.3683216 0 0.01605821 0.8414181 0.5401456 0.4275032 0.4283126 -0.4939296 0.7566912 0 0 0 0 1 0.9046509 0.2196464 -0.3651878 0 0.01392037 0.8412517 0.5404645 0.4275032 0.4259259 -0.4940152 0.7579815 0 0 0 0 1 0.9191717 0.2117626 -0.332084 0 -0.002930492 0.8468128 0.5318827 0.4275032 0.393846 -0.4879183 0.7789868 0 0 0 0 1 0.9291468 0.1824254 -0.3215691 0 0.003017008 0.866016 0.5000066 0.4275032 0.3696982 -0.4655498 0.8041059 0 0 0 0 1 0.9315972 0.1473814 -0.3322724 0 0.02135012 0.8903482 0.454779 0.4275032 0.3628642 -0.430765 0.8262995 0 0 0 0 1 0.9273775 0.1190996 -0.3546633 0 0.03893924 0.912101 0.4081117 0.4275032 0.3720948 -0.392284 0.8412243 0 0 0 0 1 0.9201298 0.1005102 -0.3784951 0 0.05057991 0.9279053 0.3693683 0.4275032 0.388333 -0.3590111 0.8487097 0 0 0 0 1 0.9140112 0.08513382 -0.3966552 0 0.06065154 0.9380693 0.3410964 0.4275032 0.4011291 -0.3358237 0.8522425 0 0 0 0 1 0.9113169 0.06182835 -0.4070361 0 0.07868752 0.9442763 0.3196089 0.4275032 0.4041157 -0.3232936 0.8556702 0 0 0 0 1 0.9109511 0.02041832 -0.4120085 0 0.114293 0.9471806 0.2996427 0.4275032 0.3963648 -0.3200495 0.8605016 0 0 0 0 1 0.9081019 -0.04393333 -0.4164377 0 0.1732105 0.9448255 0.2780332 0.4275032 0.3812462 -0.324614 0.8656078 0 0 0 0 1 0.8959157 -0.1277798 -0.425449 0 0.2535762 0.9334741 0.2536232 0.4275032 0.3647378 -0.3351088 0.8687162 0 0 0 0 1 0.8706222 -0.2157659 -0.4421107 0 0.3413753 0.9120725 0.2271258 0.4275032 0.3542311 -0.3486663 0.8677279 0 0 0 0 1 0.8325885 -0.2981671 -0.4667894 0 0.4247342 0.8846105 0.1925215 0.4275032 0.3555235 -0.3585527 0.8631585 0 0 0 0 1 0.7922976 -0.3585994 -0.4936298 0 0.4851353 0.860904 0.1532565 0.4275032 0.3700103 -0.3609022 0.8560616 0 0 0 0 1 0.7656695 -0.3843546 -0.515773 0 0.5105091 0.8509212 0.1237476 0.4275032 0.3913193 -0.3580565 0.8477407 0 0 0 0 1 0.7627953 -0.3731796 -0.5280909 0 0.502583 0.8560133 0.121042 0.4275032 0.4068825 -0.3577399 0.8405167 0 0 0 0 1 0.7810429 -0.3347314 -0.5271872 0 0.474366 0.8670608 0.1522567 0.4275032 0.4061384 -0.3689989 0.835997 0 0 0 0 1 0.8083042 -0.2874632 -0.5138181 0 0.442791 0.8719931 0.2087198 0.4275032 0.3880466 -0.3962232 0.8321218 0 0 0 0 1 0.8311006 -0.2508187 -0.4963483 0 0.422711 0.8648739 0.2707551 0.4275032 0.3613683 -0.4348366 0.8248212 0 0 0 0 1 0.8400821 -0.2364978 -0.4881911 0 0.4231953 0.8487462 0.3170732 0.4275032 0.3393634 -0.4729677 0.8131014 0 0 0 0 1 0.8316561 -0.2427999 -0.4993958 0 0.4432303 0.8320179 0.3336058 0.4275032 0.3345069 -0.4987926 0.799569 0 0 0 0 1 0.8093005 -0.2566442 -0.5283617 0 0.4694697 0.8232204 0.3192273 0.4275032 0.3530304 -0.5064007 0.7867194 0 0 0 0 1 0.786874 -0.2594574 -0.5599204 0 0.4789653 0.8288938 0.2890102 0.4275032 0.3891289 -0.4955972 0.7765062 0 0 0 0 1 0.7726273 -0.2379627 -0.5885749 0 0.4647413 0.8435954 0.2690018 0.4275032 0.4325068 -0.4813732 0.7623762 0 0 0 0 1 0.7761129 -0.1920187 -0.6006474 0 0.4278868 0.8600353 0.2779426 0.4275032 0.463208 -0.472724 0.7496468 0 0 0 0 1 0.7998261 -0.1336643 -0.5851594 0 0.3762718 0.8712077 0.3153032 0.4275032 0.4676509 -0.4723669 0.7471089 0 0 0 0 1 0.8368736 -0.08262938 -0.5411236 0 0.3205032 0.875344 0.3620089 0.4275032 0.4437569 -0.4763876 0.7590351 0 0 0 0 1 0.8750851 -0.0569202 -0.4806097 0 0.2739334 0.8769276 0.3949155 0.4275032 0.3989813 -0.4772398 0.7829787 0 0 0 0 1 0.903684 -0.06295916 -0.4235459 0 0.2494175 0.8814057 0.4011419 0.4275032 0.3480604 -0.4681454 0.8122151 0 0 0 0 1 0.9170861 -0.09148633 -0.38805 0 0.2498549 0.8903556 0.3805773 0.4275032 0.310685 -0.4459785 0.8393912 0 0 0 0 1 0.9154235 -0.1227888 -0.3833048 0 0.2634051 0.902837 0.3398573 0.4275032 0.3043312 -0.4120778 0.8588214 0 0 0 0 1 0.9024823 -0.1389627 -0.4076945 0 0.2715004 0.9183425 0.2879827 0.4275032 0.3343846 -0.3705886 0.8665164 0 0 0 0 1 0.8821186 -0.1347663 -0.4513364 0 0.2631951 0.9356791 0.2350158 0.4275032 0.3906339 -0.3261015 0.86085 0 0 0 0 1 0.8573994 -0.1197999 -0.5005137 0 0.2434242 0.9512661 0.1893058 0.4275032 0.4534431 -0.2841478 0.8447775 0 0 0 0 1 0.833068 -0.111747 -0.5417657 0 0.2292763 0.9610491 0.1543259 0.4275032 0.5034181 -0.252778 0.8262404 0 0 0 0 1 0.8161316 -0.1257055 -0.5640273 0 0.2380717 0.9625124 0.1299668 0.4275032 0.5265461 -0.240349 0.8154637 0 0 0 0 1 0.8122635 -0.1664438 -0.5590386 0 0.2764151 0.9538108 0.1176411 0.4275032 0.5136365 -0.2500823 0.8207532 0 0 0 0 1 0.8214245 -0.2275728 -0.5229456 0 0.3366036 0.9336544 0.1224222 0.4275032 0.4603907 -0.2765861 0.8435284 0 0 0 0 1 0.8369497 -0.2964563 -0.4600309 0 0.4013733 0.9039237 0.1477195 0.4275032 0.3720406 -0.308278 0.8755286 0 0 0 0 1 0.8498011 -0.3603784 -0.3846621 0 0.4544034 0.8707007 0.1881411 0.4275032 0.2671238 -0.3346744 0.90368 0 0 0 0 1 0.8576517 -0.4081576 -0.3127949 0 0.4852579 0.8436779 0.2296346 0.4275032 0.1701712 -0.3487327 0.9216436 0 0 0 0 1 0.8557569 -0.4459605 -0.262296 0 0.5074945 0.8221596 0.2578806 0.4275032 0.1006448 -0.3537968 0.9298915 0 0 0 0 1 0.8466343 -0.4728091 -0.2442572 0 0.5280321 0.8034927 0.2749209 0.4275032 0.06627384 -0.3617331 0.9299229 0 0 0 0 1 0.8366419 -0.4819584 -0.260281 0 0.5439948 0.7866507 0.2919769 0.4275032 0.0640296 -0.3858717 0.9203277 0 0 0 0 1 0.8315722 -0.4662779 -0.3017816 0 0.5491406 0.7716731 0.3208812 0.4275032 0.08325693 -0.4325566 0.8977542 0 0 0 0 1 0.8340038 -0.4269738 -0.3494722 0 0.541051 0.7570366 0.3662776 0.4275032 0.1081724 -0.4945593 0.8623859 0 0 0 0 1 0.8434212 -0.3766758 -0.383087 0 0.5225575 0.7407919 0.4220909 0.4275032 0.1247965 -0.5561855 0.8216345 0 0 0 0 1 0.8574623 -0.3313209 -0.3936812 0 0.4984 0.7249659 0.4754174 0.4275032 0.1278898 -0.6038634 0.7867612 0 0 0 0 1 0.8721082 -0.3012831 -0.3855585 0 0.4739885 0.7158167 0.5127777 0.4275032 0.1214981 -0.6299481 0.7670746 0 0 0 0 1 0.8829752 -0.2886967 -0.3701468 0 0.4549686 0.7204642 0.5233874 0.4275032 0.1155774 -0.6305433 0.7675002 0 0 0 0 1 0.8872275 -0.289558 -0.3591421 0 0.4449089 0.7429167 0.5001307 0.4275032 0.121996 -0.6035154 0.787963 0 0 0 0 1 0.8842479 -0.2978181 -0.3597356 0 0.4423575 0.7811053 0.4406747 0.4275032 0.1497506 -0.5487974 0.8224328 0 0 0 0 1 0.8755206 -0.3081247 -0.3721861 0 0.4398887 0.8269808 0.3501433 0.4275032 0.1999031 -0.4702783 0.8595794 0 0 0 0 1 0.8664011 -0.3120326 -0.3898519 0 0.4242718 0.8717077 0.2451914 0.4275032 0.2633292 -0.3778373 0.8876353 0 0 0 0 1 0.8596014 -0.3047741 -0.4101195 0 0.3930907 0.9072291 0.1497158 0.4275032 0.326443 -0.2899101 0.8996594 0 0 0 0 1 0.857524 -0.2859339 -0.4276612 0 0.3520836 0.9323133 0.08263552 0.4275032 0.3750861 -0.2214345 0.9001538 0 0 0 0 1 0.8618939 -0.2539059 -0.4389423 0 0.3069485 0.9502465 0.05304526 0.4275032 0.403635 -0.1804521 0.8969479 0 0 0 0 1 0.8716315 -0.2069083 -0.4443505 0 0.2586656 0.9641982 0.05842322 0.4275032 0.4163538 -0.1658618 0.8939458 0 0 0 0 1 0.8820081 -0.1466233 -0.4478427 0 0.2060287 0.9747019 0.08664855 0.4275032 0.4238085 -0.1686932 0.8899037 0 0 0 0 1 0.8866915 -0.08164132 -0.4550964 0 0.1523331 0.980915 0.1208301 0.4275032 0.4365463 -0.1764652 0.8822058 0 0 0 0 1 0.8817269 -0.02661029 -0.4710088 0 0.107479 0.9834824 0.1456372 0.4275032 0.4593537 -0.1790359 0.8700231 0 0 0 0 1 0.867521 0.003762394 -0.4973862 0 0.08278677 0.9849311 0.1518438 0.4275032 0.4904626 -0.1729047 0.8541371 0 0 0 0 1 0.8470115 0.001451269 -0.5315723 0 0.08444235 0.986931 0.1372455 0.4275032 0.5248247 -0.1611357 0.8358194 0 0 0 0 1 0.8232733 -0.03240587 -0.5667193 0 0.1113614 0.9881886 0.1052687 0.4275032 0.5566142 -0.1497755 0.8171583 0 0 0 0 1 0.7992861 -0.08991255 -0.5941862 0 0.1575626 0.9855086 0.06282208 0.4275032 0.5799272 -0.1438344 0.8018702 0 0 0 0 1 0.7781767 -0.1607582 -0.6071225 0 0.2157646 0.9762784 0.01804946 0.4275032 0.5898192 -0.1450412 0.7944032 0 0 0 0 1 0.7622566 -0.235279 -0.6029994 0 0.2794346 0.9599279 -0.02131015 0.4275032 0.58385 -0.1522552 0.7974566 0 0 0 0 1 0.7558829 -0.2991314 -0.5823755 0 0.3364657 0.9405521 -0.04639633 0.4275032 0.5616332 -0.1608791 0.8115946 0 0 0 0 1 0.7589824 -0.3486276 -0.549913 0 0.383974 0.9217399 -0.0543987 0.4275032 0.5258418 -0.1698647 0.8334483 0 0 0 0 1 0.7670313 -0.3847282 -0.5134655 0 0.4236583 0.9047035 -0.0449995 0.4275032 0.4818468 -0.1830181 0.8569294 0 0 0 0 1 0.7794472 -0.4036933 -0.4790549 0 0.451137 0.8922753 -0.01788518 0.4275032 0.4346691 -0.2021789 0.8776025 0 0 0 0 1 0.7952561 -0.4051932 -0.4509832 0 0.4643117 0.8853655 0.02328804 0.4275032 0.389849 -0.2279168 0.8922284 0 0 0 0 1 0.8119214 -0.3921591 -0.4324285 0 0.464324 0.8827971 0.07122046 0.4275032 0.3538169 -0.2586124 0.8988508 0 0 0 0 1 0.8256564 -0.3694417 -0.4263847 0 0.4554566 0.8824947 0.1173127 0.4275032 0.3329422 -0.2910598 0.8969021 0 0 0 0 1 0.8336697 -0.3416606 -0.4338922 0 0.442732 0.8831083 0.1552667 0.4275032 0.3301255 -0.3215391 0.8874849 0 0 0 0 1 0.8355564 -0.312309 -0.452005 0 0.4296818 0.8841622 0.1833865 0.4275032 0.3423725 -0.3474481 0.8729609 0 0 0 0 1 0.8331662 -0.2835267 -0.4748117 0 0.4175404 0.8854809 0.2039188 0.4275032 0.3626205 -0.3681515 0.856137 0 0 0 0 1 0.8298655 -0.2559689 -0.4957851 0 0.4049687 0.8875642 0.2196126 0.4275032 0.3838273 -0.3830265 0.8402183 0 0 0 0 1 0.8290237 -0.2295308 -0.5099362 0 0.3883654 0.8924213 0.2296876 0.4275032 0.4023576 -0.3884582 0.8289803 0 0 0 0 1 0.8319623 -0.2048032 -0.515649 0 0.3637002 0.903159 0.2280913 0.4275032 0.4189993 -0.3773052 0.8258814 0 0 0 0 1 0.8369526 -0.1839483 -0.5154349 0 0.3293797 0.9214531 0.2059921 0.4275032 0.4370574 -0.3421795 0.8318017 0 0 0 0 1 0.8424326 -0.1665207 -0.5124235 0 0.284044 0.9454098 0.1597462 0.4275032 0.4578493 -0.2801263 0.8437434 0 0 0 0 1 0.8444611 -0.1510358 -0.5138808 0 0.2323934 0.9677258 0.09746607 0.4275032 0.4825751 -0.2017288 0.8523065 0 0 0 0 1 0.8422589 -0.1406251 -0.5204076 0 0.1847382 0.9822137 0.03357655 0.4275032 0.5064299 -0.1244193 0.8532574 0 0 0 0 1 0.8388448 -0.1380063 -0.5265865 0 0.1523739 0.9881891 -0.0162522 0.4275032 0.5226103 -0.06660503 0.849966 0 0 0 0 1 0.8384352 -0.1434015 -0.5257967 0 0.1427685 0.988863 -0.04203565 0.4275032 0.525969 -0.03982311 0.8495708 0 0 0 0 1 0.84325 -0.1531772 -0.5152338 0 0.1538735 0.9872118 -0.04165962 0.4275032 0.5150265 -0.0441514 0.8560362 0 0 0 0 1 0.8515679 -0.1611237 -0.4988697 0 0.1742962 0.9844806 -0.02044259 0.4275032 0.4944215 -0.06954283 0.8664356 0 0 0 0 1 0.8586606 -0.1623353 -0.4861572 0 0.1910132 0.9815401 0.009620145 0.4275032 0.4756213 -0.1011229 0.8738182 0 0 0 0 1 0.859339 -0.1569322 -0.4867325 0 0.1979995 0.9796215 0.03372388 0.4275032 0.4715213 -0.125353 0.8728997 0 0 0 0 1 0.8503455 -0.1504065 -0.5042717 0 0.1976223 0.9794152 0.04112247 0.4275032 0.4877065 -0.1346237 0.862565 0 0 0 0 1 0.8321435 -0.1502356 -0.5338222 0 0.195967 0.9801626 0.02963039 0.4275032 0.5187811 -0.1292683 0.8450772 0 0 0 0 1 0.8094572 -0.1614992 -0.5645325 0 0.1991286 0.9799595 0.00517834 0.4275032 0.5523831 -0.1166063 0.8253943 0 0 0 0 1 0.789319 -0.1845917 -0.5855774 0 0.2123185 0.9769576 -0.02177555 0.4275032 0.5761042 -0.1071411 0.8103236 0 0 0 0 1 0.7772166 -0.2160182 -0.5909907 0 0.2387235 0.9702343 -0.04069159 0.4275032 0.5821898 -0.1094573 0.8056511 0 0 0 0 1 0.7742873 -0.2510019 -0.5809274 0 0.277492 0.9596826 -0.04479668 0.4275032 0.5687503 -0.1265173 0.8127214 0 0 0 0 1 0.7776632 -0.2858523 -0.559936 0 0.3236108 0.945604 -0.03329475 0.4275032 0.5389953 -0.1553092 0.8278664 0 0 0 0 1 0.7827924 -0.3189274 -0.5343416 0 0.3707407 0.9286692 -0.01116343 0.4275032 0.4997872 -0.1893636 0.8451946 0 0 0 0 1 0.7855996 -0.3497498 -0.5103996 0 0.4139415 0.9102043 0.01341817 0.4275032 0.4598751 -0.221817 0.8598325 0 0 0 0 1 0.788314 -0.3732139 -0.4891546 0 0.4440184 0.8954325 0.03237852 0.4275032 0.4259208 -0.2427181 0.8715958 0 0 0 0 1 0.7831097 -0.39544 -0.4799648 0 0.4690573 0.8823339 0.03836329 0.4275032 0.408319 -0.2551737 0.8764483 0 0 0 0 1 0.7707006 -0.4101448 -0.4876488 0 0.4849601 0.8739727 0.03138237 0.4275032 0.4133205 -0.2606766 0.8724754 0 0 0 0 1 0.7510195 -0.4088494 -0.5184706 0 0.4868925 0.8733038 0.01661848 0.4275032 0.4459879 -0.2649203 0.8549338 0 0 0 0 1 0.7309394 -0.3867562 -0.5622693 0 0.4755259 0.8796034 0.01314086 0.4275032 0.4894919 -0.276979 0.8268495 0 0 0 0 1 0.726712 -0.347367 -0.5926428 0 0.4562122 0.8890454 0.03831964 0.4275032 0.5135754 -0.2982182 0.8045532 0 0 0 0 1 0.7274254 -0.3033692 -0.6154828 0 0.4354727 0.897285 0.07240698 0.4275032 0.5302978 -0.3206967 0.784817 0 0 0 0 1 0.7320876 -0.2566146 -0.6310278 0 0.4136447 0.9034626 0.1124871 0.4275032 0.5412443 -0.3433718 0.767561 0 0 0 0 1 0.7400001 -0.2082991 -0.6395398 0 0.3906742 0.9071116 0.1565945 0.4275032 0.5475157 -0.3657317 0.7526397 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHand_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHand_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHand_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHand_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHand_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHand_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHand_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHand_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHand_pose_matrix-sampler\" target=\"mixamorig_RightHand/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandThumb1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandThumb1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandThumb1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandThumb1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandThumb1_pose_matrix-output-array\" count=\"1856\">0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1 0.4292602 0.1796812 -0.8851274 0.07056642 -0.7493492 0.6179367 -0.2379704 0.06620902 0.5041939 0.7654206 0.3998996 0.03664601 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandThumb1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandThumb1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandThumb1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandThumb1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandThumb1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandThumb1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandThumb1_pose_matrix-sampler\" target=\"mixamorig_RightHandThumb1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandThumb2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandThumb2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandThumb2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandThumb2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandThumb2_pose_matrix-output-array\" count=\"1856\">0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1 0.5634797 -0.822419 -0.0782143 -0.0105226 0.521279 0.4274008 -0.7386451 0.08210486 0.6409048 0.3754398 0.6695415 -1.19209e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandThumb2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandThumb2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandThumb2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandThumb2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandThumb2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandThumb2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandThumb2_pose_matrix-sampler\" target=\"mixamorig_RightHandThumb2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandThumb3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandThumb3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandThumb3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandThumb3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandThumb3_pose_matrix-output-array\" count=\"1856\">0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1 0.8677778 -0.4743571 -0.1481473 0.001309156 0.4038074 0.8468254 -0.3461601 0.08144575 0.2896583 0.240567 0.9264049 5.96046e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandThumb3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandThumb3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandThumb3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandThumb3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandThumb3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandThumb3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandThumb3_pose_matrix-sampler\" target=\"mixamorig_RightHandThumb3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandThumb4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandThumb4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandThumb4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandThumb4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandThumb4_pose_matrix-output-array\" count=\"1856\">0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1 0.9999998 -5.96046e-7 -9.42498e-7 0.009213209 5.66244e-7 0.9999997 -9.23872e-7 0.06508899 9.574e-7 9.31323e-7 0.9999997 4.47035e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandThumb4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandThumb4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandThumb4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandThumb4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandThumb4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandThumb4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandThumb4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandThumb4_pose_matrix-sampler\" target=\"mixamorig_RightHandThumb4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandIndex1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandIndex1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandIndex1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandIndex1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandIndex1_pose_matrix-output-array\" count=\"1856\">0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1 0.9896635 -0.1430186 0.01056194 0.08863008 -0.02005208 -0.2109305 -0.9772953 0.2416081 0.1419992 0.9669816 -0.2116181 0.001582861 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandIndex1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandIndex1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandIndex1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandIndex1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandIndex1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandIndex1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandIndex1_pose_matrix-sampler\" target=\"mixamorig_RightHandIndex1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandIndex2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandIndex2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandIndex2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandIndex2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandIndex2_pose_matrix-output-array\" count=\"1856\">0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1 0.9838259 -0.1110501 0.1405511 -4.46141e-5 0.1128962 -0.22478 -0.9678474 0.07081938 0.1390727 0.968061 -0.2086072 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandIndex2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandIndex2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandIndex2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandIndex2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandIndex2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandIndex2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandIndex2_pose_matrix-sampler\" target=\"mixamorig_RightHandIndex2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandIndex3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandIndex3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandIndex3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandIndex3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandIndex3_pose_matrix-output-array\" count=\"1856\">0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1 0.9946539 -0.09318794 0.04448926 -5.47469e-5 0.09306118 0.6222049 -0.7773033 0.06529723 0.04475382 0.777288 0.627551 -2.38419e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandIndex3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandIndex3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandIndex3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandIndex3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandIndex3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandIndex3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandIndex3_pose_matrix-sampler\" target=\"mixamorig_RightHandIndex3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandIndex4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandIndex4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandIndex4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandIndex4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandIndex4_pose_matrix-output-array\" count=\"1856\">1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1 1 -1.2666e-7 1.66893e-6 9.92566e-5 1.17347e-7 1 9.46224e-7 0.05418384 -1.66893e-6 -8.801e-7 1 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandIndex4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandIndex4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandIndex4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandIndex4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandIndex4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandIndex4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandIndex4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandIndex4_pose_matrix-sampler\" target=\"mixamorig_RightHandIndex4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandMiddle1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandMiddle1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandMiddle1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandMiddle1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandMiddle1_pose_matrix-output-array\" count=\"1856\">0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1 0.9895089 -0.1441903 0.00902316 0.03262627 -0.02182129 -0.2109047 -0.977263 0.2422579 0.1428148 0.9668136 -0.2118384 7.70569e-4 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandMiddle1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandMiddle1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandMiddle1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandMiddle1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandMiddle1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandMiddle1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandMiddle1_pose_matrix-sampler\" target=\"mixamorig_RightHandMiddle1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandMiddle2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandMiddle2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandMiddle2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandMiddle2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandMiddle2_pose_matrix-output-array\" count=\"1856\">0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1 0.9842155 -0.1113159 0.1375829 8.09729e-5 0.1099141 -0.2248199 -0.9681816 0.08442831 0.1387053 0.9680212 -0.209036 -5.96046e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandMiddle2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandMiddle2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandMiddle2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandMiddle2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandMiddle2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandMiddle2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandMiddle2_pose_matrix-sampler\" target=\"mixamorig_RightHandMiddle2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandMiddle3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandMiddle3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandMiddle3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandMiddle3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandMiddle3_pose_matrix-output-array\" count=\"1856\">0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1 0.9952245 -0.08775895 0.04273462 -2.23666e-5 0.08829081 0.6226441 -0.7775083 0.0791244 0.04162486 0.7775682 0.6274191 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandMiddle3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandMiddle3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandMiddle3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandMiddle3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandMiddle3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandMiddle3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandMiddle3_pose_matrix-sampler\" target=\"mixamorig_RightHandMiddle3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandMiddle4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandMiddle4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandMiddle4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandMiddle4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandMiddle4_pose_matrix-output-array\" count=\"1856\">1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1 1 -1.86265e-9 -3.27826e-7 -5.86808e-5 -6.51926e-8 0.9999999 2.42144e-8 0.0681082 2.38419e-7 -1.29454e-7 0.9999998 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandMiddle4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandMiddle4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandMiddle4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandMiddle4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandMiddle4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandMiddle4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandMiddle4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandMiddle4_pose_matrix-sampler\" target=\"mixamorig_RightHandMiddle4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandRing1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandRing1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandRing1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandRing1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandRing1_pose_matrix-output-array\" count=\"1856\">0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1 0.9896471 -0.1430172 0.01203355 -0.03411114 -0.01859853 -0.2109296 -0.9773243 0.2740172 0.1423125 0.9669821 -0.2114057 -0.00292325 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandRing1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandRing1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandRing1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandRing1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandRing1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandRing1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandRing1_pose_matrix-sampler\" target=\"mixamorig_RightHandRing1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandRing2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandRing2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandRing2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandRing2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandRing2_pose_matrix-output-array\" count=\"1856\">0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1 0.9832338 -0.1139955 0.1423264 -3.44813e-5 0.1139939 -0.2249528 -0.9676788 0.06462979 0.1423279 0.9676784 -0.2081864 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandRing2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandRing2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandRing2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandRing2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandRing2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandRing2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandRing2_pose_matrix-sampler\" target=\"mixamorig_RightHandRing2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandRing3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandRing3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandRing3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandRing3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandRing3_pose_matrix-output-array\" count=\"1856\">0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1 0.9948331 -0.09155931 0.04386005 3.03537e-5 0.09155965 0.6225141 -0.7772338 0.06369225 0.04385956 0.7772338 0.6276811 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandRing3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandRing3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandRing3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandRing3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandRing3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandRing3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandRing3_pose_matrix-sampler\" target=\"mixamorig_RightHandRing3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandRing4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandRing4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandRing4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandRing4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandRing4_pose_matrix-output-array\" count=\"1856\">1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1 1 1.65775e-7 5.96046e-8 4.1686e-6 -1.60187e-7 1 -3.44589e-8 0.05149317 -2.08616e-7 9.59262e-8 1 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandRing4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandRing4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandRing4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandRing4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandRing4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandRing4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandRing4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandRing4_pose_matrix-sampler\" target=\"mixamorig_RightHandRing4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandPinky1_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandPinky1_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandPinky1_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky1_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandPinky1_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandPinky1_pose_matrix-output-array\" count=\"1856\">0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1 0.9896922 -0.1430176 0.007438183 -0.08714551 -0.02313626 -0.2109298 -0.9772273 0.2710944 0.1413297 0.9669822 -0.2120644 0.004019976 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky1_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandPinky1_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandPinky1_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky1_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandPinky1_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandPinky1_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandPinky1_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandPinky1_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandPinky1_pose_matrix-sampler\" target=\"mixamorig_RightHandPinky1/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandPinky2_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandPinky2_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandPinky2_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky2_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandPinky2_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandPinky2_pose_matrix-output-array\" count=\"1856\">0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1 0.9847615 -0.1074698 0.1367298 -1.5527e-5 0.1099058 -0.2247265 -0.9682041 0.05386353 0.1347794 0.9684776 -0.2094904 -5.96046e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky2_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandPinky2_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandPinky2_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky2_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandPinky2_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandPinky2_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandPinky2_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandPinky2_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandPinky2_pose_matrix-sampler\" target=\"mixamorig_RightHandPinky2/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandPinky3_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandPinky3_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandPinky3_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky3_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandPinky3_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandPinky3_pose_matrix-output-array\" count=\"1856\">0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1 0.9948094 -0.09190551 0.04367143 -6.62208e-5 0.09160605 0.6220824 -0.7775738 0.04851356 0.0442961 0.7775387 0.6272728 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky3_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandPinky3_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandPinky3_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky3_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandPinky3_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandPinky3_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandPinky3_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandPinky3_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandPinky3_pose_matrix-sampler\" target=\"mixamorig_RightHandPinky3/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightHandPinky4_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightHandPinky4_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightHandPinky4_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky4_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandPinky4_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightHandPinky4_pose_matrix-output-array\" count=\"1856\">1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1 1 3.72529e-8 -2.98023e-8 8.19936e-5 2.23517e-8 1 -1.49012e-8 0.03659093 8.9407e-8 1.94646e-7 1 -2.38419e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky4_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightHandPinky4_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightHandPinky4_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightHandPinky4_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightHandPinky4_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightHandPinky4_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightHandPinky4_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightHandPinky4_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightHandPinky4_pose_matrix-sampler\" target=\"mixamorig_RightHandPinky4/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftUpLeg_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftUpLeg_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftUpLeg_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftUpLeg_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftUpLeg_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftUpLeg_pose_matrix-output-array\" count=\"1856\">-0.8933007 0.4369812 0.1051133 0.2127781 -0.3552978 -0.8298255 0.4302944 -0.1033177 0.2752541 0.3470396 0.8965476 0.007440224 0 0 0 1 -0.8954058 0.4343406 0.09789811 0.2127781 -0.3520697 -0.8253111 0.4414839 -0.1033177 0.2725486 0.360844 0.8919122 0.007440224 0 0 0 1 -0.897948 0.4298404 0.094413 0.2127781 -0.3475376 -0.824217 0.4470834 -0.1033177 0.2699891 0.3686494 0.8894954 0.007440224 0 0 0 1 -0.8999773 0.4253221 0.09554884 0.2127781 -0.3432805 -0.8265767 0.4460147 -0.1033177 0.2686761 0.3686067 0.8899106 0.007440224 0 0 0 1 -0.9006654 0.422499 0.1014101 0.2127781 -0.3408889 -0.8318281 0.4380144 -0.1033177 0.2694142 0.3599386 0.8932295 0.007440224 0 0 0 1 -0.9000793 0.417215 0.1256043 0.2127781 -0.3395064 -0.8522534 0.397994 -0.1033177 0.2730936 0.3155862 0.9087486 0.007440224 0 0 0 1 -0.8945835 0.419445 0.1541868 0.2127781 -0.3499644 -0.8721087 0.3419805 -0.1033177 0.2779077 0.2519734 0.9269708 0.007440224 0 0 0 1 -0.8822896 0.4291264 0.1933981 0.2127781 -0.3739796 -0.8885981 0.265578 -0.1033177 0.2858178 0.1619924 0.9444921 0.007440224 0 0 0 1 -0.8811663 0.4303598 0.1957652 0.2127781 -0.376322 -0.8890774 0.2606203 -0.1033177 0.2862089 0.1559816 0.945385 0.007440224 0 0 0 1 -0.8677256 0.4389172 0.2332201 0.2127781 -0.4031058 -0.8959703 0.1863943 -0.1033177 0.2907679 0.06772876 0.9543929 0.007440224 0 0 0 1 -0.8549905 0.4451764 0.2660761 0.2127781 -0.4295465 -0.8953376 0.1177274 -0.1033177 0.2906356 -0.01363464 0.9567359 0.007440224 0 0 0 1 -0.8455898 0.4503898 0.2865563 0.2127781 -0.448972 -0.8904222 0.07464676 -0.1033177 0.2887744 -0.06553387 0.9551506 0.007440224 0 0 0 1 -0.8378124 0.4556851 0.3006808 0.2127781 -0.4634764 -0.8847312 0.04939536 -0.1033177 0.2885287 -0.09797327 0.9524447 0.007440224 0 0 0 1 -0.8297031 0.4615453 0.3139365 0.2127781 -0.4772589 -0.8782552 0.02985007 -0.1033177 0.2894918 -0.1250612 0.9489743 0.007440224 0 0 0 1 -0.8217781 0.4665534 0.3271027 0.2127781 -0.4900106 -0.8716311 0.01217387 -0.1033177 0.2907909 -0.1502786 0.9449103 0.007440224 0 0 0 1 -0.8151971 0.4710845 0.3369288 0.2127781 -0.500674 -0.8656351 -0.001071624 -0.1033177 0.2911508 -0.1695641 0.9415296 0.007440224 0 0 0 1 -0.8113526 0.4755675 0.3398976 0.2127781 -0.507192 -0.8618191 -0.00487937 -0.1033177 0.290608 -0.1763513 0.9404499 0.007440224 0 0 0 1 -0.8100592 0.4796095 0.3372926 0.2127781 -0.5094326 -0.8605102 1.12422e-4 -0.1033177 0.2902959 -0.1717358 0.9413998 0.007440224 0 0 0 1 -0.8100431 0.4833183 0.3319954 0.2127781 -0.5090263 -0.8606806 0.01099105 -0.1033177 0.2910525 -0.1600902 0.9432167 0.007440224 0 0 0 1 -0.8123122 0.4868639 0.321092 0.2127781 -0.5048961 -0.8626345 0.0306824 -0.1033177 0.2919214 -0.1371933 0.9465508 0.007440224 0 0 0 1 -0.8211363 0.4884802 0.2951437 0.2127781 -0.4918799 -0.867996 0.0680951 -0.1033177 0.2894449 -0.08925849 0.953023 0.007440224 0 0 0 1 -0.8371753 0.4858163 0.2512123 0.2127781 -0.4697419 -0.8739532 0.1246916 -0.1033177 0.2801232 -0.01361442 0.9598668 0.007440224 0 0 0 1 -0.8532854 0.4809722 0.201388 0.2127781 -0.4484865 -0.8739894 0.1870881 -0.1033177 0.2659932 0.06932202 0.9614784 0.007440224 0 0 0 1 -0.8655508 0.4758257 0.1562022 0.2127781 -0.4321172 -0.8672372 0.2473333 -0.1033177 0.2531497 0.1465845 0.9562566 0.007440224 0 0 0 1 -0.879203 0.4629982 0.1123516 0.2127781 -0.4104758 -0.8558382 0.3147232 -0.1033177 0.2418688 0.230591 0.9425105 0.007440224 0 0 0 1 -0.8981582 0.4348033 0.0651572 0.2127781 -0.3772062 -0.838205 0.3938624 -0.1033177 0.2258653 0.3291765 0.9168567 0.007440224 0 0 0 1 -0.9177748 0.3965878 0.01987318 0.2127781 -0.3415147 -0.8138821 0.4700674 -0.1033177 0.2025948 0.4246329 0.8824062 0.007440224 0 0 0 1 -0.9320332 0.3620806 -0.01413068 0.2127781 -0.3145289 -0.789036 0.5277247 -0.1033177 0.1799265 0.4963056 0.8492972 0.007440224 0 0 0 1 -0.9388077 0.3431966 -0.02904927 0.2127781 -0.2996373 -0.7722322 0.5602448 -0.1033177 0.1698384 0.5346707 0.8278167 0.007440224 0 0 0 1 -0.9386619 0.3440453 -0.02311399 0.2127781 -0.2955164 -0.7680969 0.5680641 -0.1033177 0.1776832 0.540055 0.822659 0.007440224 0 0 0 1 -0.9335222 0.3584989 -0.001545459 0.2127781 -0.2990254 -0.7762637 0.5549759 -0.1033177 0.1977558 0.5185488 0.8318645 0.007440224 0 0 0 1 -0.9257922 0.3770722 0.02670414 0.2127781 -0.3078999 -0.7931713 0.5254301 -0.1033177 0.2193034 0.478221 0.8504172 0.007440224 0 0 0 1 -0.9171938 0.394513 0.05569915 0.2127781 -0.3205449 -0.8136925 0.484928 -0.1033177 0.23663 0.4269229 0.8727781 0.007440224 0 0 0 1 -0.9074076 0.4114487 0.08549227 0.2127781 -0.3372724 -0.8343978 0.4359211 -0.1033177 0.2506915 0.3667277 0.8959146 0.007440224 0 0 0 1 -0.8961996 0.4273304 0.1191747 0.2127781 -0.3581022 -0.8553894 0.3742611 -0.1033177 0.2618717 0.2927393 0.9196333 0.007440224 0 0 0 1 -0.8853101 0.4376816 0.1569981 0.2127781 -0.3808647 -0.8762578 0.2951506 -0.1033177 0.2667506 0.2015076 0.9424635 0.007440224 0 0 0 1 -0.8763055 0.4412767 0.1932644 0.2127781 -0.4030832 -0.8913324 0.2074859 -0.1033177 0.2638193 0.1039217 0.958957 0.007440224 0 0 0 1 -0.8682179 0.4448065 0.219846 0.2127781 -0.4242318 -0.8952813 0.1360083 -0.1033177 0.2573193 0.024821 0.9660068 0.007440224 0 0 0 1 -0.8592641 0.4550416 0.2336445 0.2127781 -0.4450527 -0.8902306 0.09704351 -0.1033177 0.2521542 -0.02059647 0.967467 0.007440224 0 0 0 1 -0.8499049 0.4702199 0.237787 0.2127781 -0.4644165 -0.8816668 0.08354963 -0.1033177 0.2489335 -0.0394214 0.9677175 0.007440224 0 0 0 1 -0.8421412 0.4840258 0.2377075 0.2127781 -0.4799795 -0.8737438 0.07868341 -0.1033177 0.2457782 -0.0478306 0.9681446 0.007440224 0 0 0 1 -0.8366854 0.4928025 0.2389365 0.2127781 -0.4905196 -0.8683429 0.07328502 -0.1033177 0.2435918 -0.05588494 0.9682658 0.007440224 0 0 0 1 -0.8317481 0.4984646 0.2443676 0.2127781 -0.4977054 -0.8645566 0.06950534 -0.1033177 0.2459135 -0.06381059 0.9671882 0.007440224 0 0 0 1 -0.8260928 0.5040354 0.2520057 0.2127781 -0.5027122 -0.861228 0.07460948 -0.1033177 0.2546382 -0.06505035 0.9648455 0.007440224 0 0 0 1 -0.821669 0.5089682 0.2565133 0.2127781 -0.503572 -0.8590904 0.09153421 -0.1033177 0.2669541 -0.05396042 0.9621966 0.007440224 0 0 0 1 -0.822025 0.5103882 0.2525203 0.2127781 -0.4971144 -0.8594943 0.11894 -0.1033177 0.2777435 -0.02775802 0.9602532 0.007440224 0 0 0 1 -0.8291872 0.5058348 0.2378388 0.2127781 -0.4816789 -0.8625143 0.1550939 -0.1033177 0.2835893 0.01404202 0.9588423 0.007440224 0 0 0 1 -0.8431401 0.494581 0.2109317 0.2127781 -0.4569381 -0.8658543 0.2037241 -0.1033177 0.2833922 0.07538754 0.9560357 0.007440224 0 0 0 1 -0.8626197 0.4767009 0.1692066 0.2127781 -0.4241678 -0.8639274 0.271497 -0.1033177 0.2756031 0.1624295 0.9474482 0.007440224 0 0 0 1 -0.8861809 0.4492014 0.1135306 0.2127781 -0.386428 -0.8517623 0.3538001 -0.1033177 0.2556263 0.2696629 0.928405 0.007440224 0 0 0 1 -0.9107819 0.4094012 0.05342739 0.2127781 -0.3494828 -0.8333662 0.4282082 -0.1033177 0.219831 0.3713361 0.9020988 0.007440224 0 0 0 1 -0.9318744 0.3627568 0.002276395 0.2127781 -0.3171391 -0.817704 0.4803983 -0.1033177 0.1761264 0.4469529 0.8770467 0.007440224 0 0 0 1 -0.9474124 0.3183897 -0.03202125 0.2127781 -0.2874791 -0.8029171 0.5221873 -0.1033177 0.1405455 0.5039363 0.8522287 0.007440224 0 0 0 1 -0.9580868 0.2822624 -0.04883764 0.2127781 -0.2591975 -0.7816392 0.567324 -0.1033177 0.1219576 0.5562085 0.8220445 0.007440224 0 0 0 1 -0.9652328 0.2562074 -0.05168176 0.2127781 -0.2334607 -0.7562443 0.6112204 -0.1033177 0.1175118 0.6020399 0.7897707 0.007440224 0 0 0 1 -0.9703596 0.2373422 -0.04536575 0.2127781 -0.2103202 -0.7371372 0.6421788 -0.1033177 0.118972 0.6326904 0.7652104 0.007440224 0 0 0 1 -0.9749121 0.2199147 -0.03422637 0.2127781 -0.1883515 -0.733317 0.6532758 -0.1033177 0.1185629 0.6433375 0.7563453 0.007440224 0 0 0 1 -0.9797763 0.1989611 -0.02099353 0.2127781 -0.1652031 -0.7453932 0.6458304 -0.1033177 0.1128433 0.6362417 0.7631919 0.007440224 0 0 0 1 -0.9840482 0.1777926 -0.005126443 0.2127781 -0.142181 -0.7689759 0.6232657 -0.1033177 0.1068665 0.6140564 0.7819928 0.007440224 0 0 0 1 -0.9861431 0.1651321 0.01551658 0.2127781 -0.1244082 -0.7983169 0.5892471 -0.1033177 0.1096874 0.5791554 0.8078032 0.007440224 0 0 0 1 -0.9856898 0.16371 0.04002936 0.2127781 -0.1154857 -0.8290968 0.5470475 -0.1033177 0.122742 0.5345999 0.8361434 0.007440224 0 0 0 1 -0.9837117 0.1682953 0.06305031 0.2127781 -0.1137868 -0.8547971 0.5063338 -0.1033177 0.1391056 0.4909157 0.860029 0.007440224 0 0 0 1 -0.9816217 0.1733834 0.07965356 0.2127781 -0.1143903 -0.8688869 0.4816122 -0.1033177 0.1527103 0.4636526 0.8727568 0.007440224 0 0 0 1 -0.9797606 0.176484 0.09439421 0.2127781 -0.1156155 -0.8840593 0.4528488 -0.1033177 0.1633676 0.4327731 0.8865761 0.007440224 0 0 0 1 -0.9771407 0.1834933 0.1073022 0.2127781 -0.1226928 -0.8990946 0.4202085 -0.1033177 0.1735772 0.3974405 0.9010608 0.007440224 0 0 0 1 -0.9731954 0.1973047 0.1181064 0.2127781 -0.1377836 -0.9115373 0.3874463 -0.1033177 0.1841005 0.3607905 0.9142951 0.007440224 0 0 0 1 -0.9682674 0.2159336 0.1257715 0.2127781 -0.1585036 -0.9198076 0.3589294 -0.1033177 0.1931876 0.327607 0.9248518 0.007440224 0 0 0 1 -0.9635063 0.2348023 0.1284952 0.2127781 -0.1803029 -0.9241648 0.3367641 -0.1033177 0.1978209 0.3013088 0.9327798 0.007440224 0 0 0 1 -0.9602931 0.2493674 0.1250617 0.2127781 -0.1985961 -0.9259176 0.3213034 -0.1033177 0.1959166 0.2837112 0.9386816 0.007440224 0 0 0 1 -0.9589005 0.258366 0.1172369 0.2127781 -0.2116409 -0.9265715 0.3109227 -0.1033177 0.1889574 0.2733343 0.9431766 0.007440224 0 0 0 1 -0.9581491 0.2632153 0.112498 0.2127781 -0.2197744 -0.9282603 0.3000526 -0.1033177 0.183403 0.2627733 0.9472656 0.007440224 0 0 0 1 -0.956591 0.2664996 0.1178951 0.2127781 -0.2243986 -0.9317522 0.2854522 -0.1033177 0.185919 0.246608 0.9511137 0.007440224 0 0 0 1 -0.9540298 0.2686127 0.1328979 0.2127781 -0.2259227 -0.9359851 0.2699826 -0.1033177 0.1969084 0.2275491 0.9536493 0.007440224 0 0 0 1 -0.9517558 0.2669198 0.1513344 0.2127781 -0.2223656 -0.9398679 0.2592337 -0.1033177 0.2114261 0.2130779 0.9538844 0.007440224 0 0 0 1 -0.9510394 0.2604218 0.166409 0.2127781 -0.2131856 -0.942651 0.2568282 -0.1033177 0.2237466 0.2087799 0.9520226 0.007440224 0 0 0 1 -0.952354 0.2506173 0.1737829 0.2127781 -0.200609 -0.9439902 0.2619889 -0.1033177 0.2297057 0.2146459 0.949295 0.007440224 0 0 0 1 -0.9558285 0.2390565 0.1709725 0.2127781 -0.1864513 -0.9428971 0.2760087 -0.1033177 0.2271885 0.2319411 0.9458263 0.007440224 0 0 0 1 -0.9607029 0.2279521 0.158352 0.2127781 -0.1728149 -0.9377054 0.3014025 -0.1033177 0.2171901 0.2621951 0.9402556 0.007440224 0 0 0 1 -0.9648651 0.2215351 0.1412276 0.2127781 -0.1629481 -0.9262912 0.3397535 -0.1033177 0.2060824 0.3048059 0.9298505 0.007440224 0 0 0 1 -0.9657006 0.2262689 0.1273277 0.2127781 -0.1619076 -0.9081991 0.3859536 -0.1033177 0.2029654 0.352103 0.9136888 0.007440224 0 0 0 1 -0.9621307 0.2453045 0.1188178 0.2127781 -0.1726936 -0.8858873 0.4305579 -0.1033177 0.2108742 0.393737 0.8947076 0.007440224 0 0 0 1 -0.9558144 0.2727459 0.1096185 0.2127781 -0.1917726 -0.8612167 0.4706683 -0.1033177 0.2227755 0.4288531 0.875474 0.007440224 0 0 0 1 -0.9498389 0.298467 0.0933331 0.2127781 -0.2122678 -0.8345178 0.508451 -0.1033177 0.2296413 0.4631388 0.8560175 0.007440224 0 0 0 1 -0.9462368 0.3155618 0.07102382 0.2127781 -0.2291396 -0.8089452 0.5413894 -0.1033177 0.2282936 0.4960121 0.8377665 0.007440224 0 0 0 1 -0.9462227 0.3195195 0.05057346 0.2127781 -0.2365928 -0.7901405 0.5654216 -0.1033177 0.2206207 0.5230536 0.8232496 0.007440224 0 0 0 1 -0.94961 0.3107494 0.04078333 0.2127781 -0.2312889 -0.7826368 0.5779141 -0.1033177 0.2115023 0.5393645 0.8150773 0.007440224 0 0 0 1 -0.9526519 0.3011796 0.04162693 0.2127781 -0.2226049 -0.7841745 0.5792385 -0.1033177 0.2070948 0.5425504 0.8140942 0.007440224 0 0 0 1 -0.9540614 0.2949075 0.05275986 0.2127781 -0.2137177 -0.7933758 0.5699818 -0.1033177 0.2099475 0.5325263 0.8199612 0.007440224 0 0 0 1 -0.9562945 0.2827925 0.07427453 0.2127781 -0.1974399 -0.8119454 0.5493281 -0.1033177 0.2156501 0.5106586 0.8322988 0.007440224 0 0 0 1 -0.960264 0.2607571 0.09943041 0.2127781 -0.1746078 -0.8393236 0.514828 -0.1033177 0.2176966 0.4770133 0.8515076 0.007440224 0 0 0 1 -0.9666721 0.2254404 0.1212816 0.2127781 -0.1452984 -0.8732482 0.4651084 -0.1033177 0.2107604 0.4319886 0.8769063 0.007440224 0 0 0 1 -0.972213 0.1979143 0.1249763 0.2127781 -0.1218338 -0.8837702 0.4517813 -0.1033177 0.1998615 0.4240045 0.8833312 0.007440224 0 0 0 1 -0.9740669 0.1864461 0.1281372 0.2127781 -0.1148966 -0.8956119 0.429742 -0.1033177 0.194882 0.4038778 0.8938136 0.007440224 0 0 0 1 -0.9734995 0.1783866 0.143054 0.2127781 -0.1167589 -0.9257029 0.3597791 -0.1033177 0.1966024 0.3335446 0.9220055 0.007440224 0 0 0 1 -0.9693876 0.1800312 0.1669249 0.2127781 -0.1328282 -0.9563983 0.2601121 -0.1033177 0.2064722 0.229979 0.9510401 0.007440224 0 0 0 1 -0.9619356 0.2011988 0.1848961 0.2127781 -0.1614499 -0.9643942 0.2094694 -0.1033177 0.220455 0.1716463 0.9601747 0.007440224 0 0 0 1 -0.9550711 0.2207826 0.1976918 0.2127781 -0.1859469 -0.9658662 0.1803493 -0.1033177 0.2307592 0.1354877 0.9635311 0.007440224 0 0 0 1 -0.9508788 0.2319526 0.204976 0.2127781 -0.2009415 -0.9662417 0.1612429 -0.1033177 0.2354545 0.1121357 0.9653939 0.007440224 0 0 0 1 -0.9497304 0.2355061 0.2062438 0.2127781 -0.206479 -0.9664525 0.1527591 -0.1033177 0.2352979 0.1024964 0.9665029 0.007440224 0 0 0 1 -0.9501739 0.2350166 0.204754 0.2127781 -0.205857 -0.9663984 0.1539374 -0.1033177 0.2340492 0.1041188 0.9666325 0.007440224 0 0 0 1 -0.9506361 0.2335874 0.2042433 0.2127781 -0.2024022 -0.9657395 0.1624205 -0.1033177 0.2351826 0.113065 0.9653517 0.007440224 0 0 0 1 -0.9506162 0.2320505 0.2060796 0.2127781 -0.1973536 -0.9644682 0.1756478 -0.1033177 0.2395138 0.1263047 0.9626416 0.007440224 0 0 0 1 -0.9501623 0.2304039 0.2099833 0.2127781 -0.191153 -0.962721 0.191386 -0.1033177 0.2462488 0.1417104 0.9587901 0.007440224 0 0 0 1 -0.9492749 0.2291977 0.2152513 0.2127781 -0.1849877 -0.9606707 0.2071017 -0.1033177 0.2542504 0.1567793 0.9543456 0.007440224 0 0 0 1 -0.9480656 0.229604 0.220093 0.2127781 -0.1804399 -0.9581391 0.2222845 -0.1033177 0.2619147 0.1710286 0.9498149 0.007440224 0 0 0 1 -0.9477249 0.2316543 0.2194113 0.2127781 -0.1765018 -0.9534963 0.2443177 -0.1033177 0.2658028 0.1928214 0.9445462 0.007440224 0 0 0 1 -0.9506232 0.2328188 0.2051794 0.2127781 -0.1702931 -0.9440959 0.2822813 -0.1033177 0.259427 0.2334047 0.9371332 0.007440224 0 0 0 1 -0.9571654 0.2314696 0.1739069 0.2127781 -0.1626891 -0.9268851 0.3382549 -0.1033177 0.2394848 0.2954757 0.924846 0.007440224 0 0 0 1 -0.9622908 0.2348399 0.1372383 0.2127781 -0.1642995 -0.9039584 0.3947967 -0.1033177 0.216769 0.3573638 0.9084607 0.007440224 0 0 0 1 -0.9587746 0.2595934 0.1155423 0.2127781 -0.1891085 -0.8864588 0.4224081 -0.1033177 0.2120751 0.3831473 0.8990111 0.007440224 0 0 0 1 -0.9404604 0.3185688 0.1184713 0.2127781 -0.2449372 -0.876898 0.4135879 -0.1033177 0.235641 0.3599483 0.9027231 0.007440224 0 0 0 1 -0.9168062 0.3793351 0.1247347 0.2127781 -0.3023099 -0.8634378 0.4038361 -0.1033177 0.2608876 0.3325343 0.9062876 0.007440224 0 0 0 1 -0.9037336 0.4095849 0.1244737 0.2127781 -0.3311443 -0.8531542 0.4030769 -0.1033177 0.2712873 0.3230588 0.9066615 0.007440224 0 0 0 1 -0.8962081 0.427305 0.1192004 0.2127781 -0.3473542 -0.8430637 0.4105951 -0.1033177 0.2759407 0.3265775 0.9039925 0.007440224 0 0 0 1 -0.8929237 0.4352982 0.1148506 0.2127781 -0.3548551 -0.8375321 0.415473 -0.1033177 0.2770436 0.3302338 0.9023256 0.007440224 0 0 0 1 -0.8933007 0.4369812 0.1051133 0.2127781 -0.3552978 -0.8298255 0.4302944 -0.1033177 0.2752541 0.3470396 0.8965476 0.007440224 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftUpLeg_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftUpLeg_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftUpLeg_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftUpLeg_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftUpLeg_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftUpLeg_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftUpLeg_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftUpLeg_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftUpLeg_pose_matrix-sampler\" target=\"mixamorig_LeftUpLeg/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftLeg_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftLeg_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftLeg_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftLeg_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftLeg_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftLeg_pose_matrix-output-array\" count=\"1856\">0.9846862 -0.1264323 0.1200323 0 -0.03060707 0.5524452 0.832987 0.8884575 -0.1716278 -0.8239048 0.5401158 0 0 0 0 1 0.9859579 -0.1202563 0.1158676 0 -0.03428864 0.5332741 0.8452474 0.8884575 -0.1634354 -0.8373514 0.5216625 0 0 0 0 1 0.98762 -0.1115735 0.1102638 0 -0.03553637 0.5255085 0.8500457 0.8884575 -0.1527871 -0.8434405 0.515038 0 0 0 0 1 0.9895076 -0.1020989 0.102224 0 -0.03284893 0.5300239 0.8473459 0.8884575 -0.1406943 -0.8418137 0.5211092 0 0 0 0 1 0.9914225 -0.09289259 0.09193544 0 -0.02646472 0.5461738 0.8372533 0.8884575 -0.1279874 -0.832505 0.5390309 0 0 0 0 1 0.994116 -0.08055817 0.07241134 0 -0.007926546 0.6126047 0.7903497 0.8884575 -0.1080286 -0.7862734 0.6083618 0 0 0 0 1 0.9954721 -0.07219178 0.06182964 0 0.001730584 0.6641513 0.7475958 0.8884575 -0.09503454 -0.744104 0.6612694 0 0 0 0 1 0.9961941 -0.06520969 0.05783693 0 0.003680751 0.6944285 0.7195522 0.8884575 -0.08708535 -0.7166009 0.6920255 0 0 0 0 1 0.9962141 -0.06490333 0.05783397 0 0.003581904 0.6953571 0.7186553 0.8884575 -0.08685842 -0.7157274 0.6929573 0 0 0 0 1 0.9965919 -0.06163848 0.05481738 0 0.003857337 0.6986471 0.7154555 0.8884575 -0.08239761 -0.7128059 0.6965042 0 0 0 0 1 0.996713 -0.06128339 0.05298489 0 0.003715113 0.6879202 0.7257765 0.8884575 -0.0809274 -0.7231941 0.6858869 0 0 0 0 1 0.9964244 -0.0643829 0.05470745 0 0.001747236 0.6630888 0.7485385 0.8884575 -0.08446893 -0.7457663 0.6608309 0 0 0 0 1 0.996016 -0.06781 0.05791128 0 -0.00183972 0.6336589 0.7736102 0.8884575 -0.08915451 -0.7706348 0.6310099 0 0 0 0 1 0.9960172 -0.06672083 0.05914111 0 -0.006263658 0.6093187 0.7929006 0.8884575 -0.08893877 -0.7901133 0.6064742 0 0 0 0 1 0.9965401 -0.06228071 0.05503392 0 -0.007243238 0.5945645 0.8040152 0.8884575 -0.08279581 -0.8016321 0.5920565 0 0 0 0 1 0.9972364 -0.05762859 0.04688646 0 -0.003836259 0.5903187 0.8071612 0.8884575 -0.07419343 -0.8051105 0.5884663 0 0 0 0 1 0.9976211 -0.05675415 0.03912228 0 0.002294362 0.5945752 0.8040365 0.8884575 -0.06889354 -0.8020344 0.5932913 0 0 0 0 1 0.9975084 -0.06069325 0.03596047 0 0.008001402 0.603786 0.7971061 0.8884575 -0.07009135 -0.7948323 0.6027675 0 0 0 0 1 0.99697 -0.06791454 0.03792453 0 0.01161048 0.6120133 0.7907622 0.8884575 -0.07691458 -0.787926 0.6109475 0 0 0 0 1 0.996103 -0.07780866 0.04152597 0 0.01455636 0.6094167 0.7927163 0.8884575 -0.08698681 -0.7890227 0.6081746 0 0 0 0 1 0.9950575 -0.09083624 0.04011331 0 0.02048493 0.5830562 0.8121734 0.8884575 -0.0971631 -0.8073376 0.5820355 0 0 0 0 1 0.9940183 -0.105002 0.0300291 0 0.02977303 0.525089 0.850526 0.8884575 -0.1050749 -0.8445445 0.5250746 0 0 0 0 1 0.9931837 -0.1154875 0.01576819 0 0.03729253 0.4430137 0.8957387 0.8884575 -0.1104321 -0.8890452 0.4443009 0 0 0 0 1 0.9929811 -0.1182609 0.00167267 0 0.04053853 0.3536006 0.9345174 0.8884575 -0.1111083 -0.9278904 0.3559131 0 0 0 0 1 0.9935105 -0.112859 -0.01411772 0 0.04464136 0.2727644 0.9610443 0.8884575 -0.1046117 -0.9554382 0.2760328 0 0 0 0 1 0.9939965 -0.1045558 -0.03222786 0 0.05393278 0.2119571 0.9757894 0.8884575 -0.09519354 -0.9716699 0.2163237 0 0 0 0 1 0.99378 -0.1007015 -0.04754336 0 0.06549845 0.1832833 0.9808755 0.8884575 -0.09006174 -0.9778886 0.1887392 0 0 0 0 1 0.9931456 -0.1034165 -0.05446699 0 0.07381713 0.1936513 0.9782894 0.8884575 -0.09062359 -0.9756044 0.199958 0 0 0 0 1 0.9927263 -0.108416 -0.05234398 0 0.07753955 0.2431886 0.9668746 0.8884575 -0.09209515 -0.9639007 0.2498266 0 0 0 0 1 0.992956 -0.1095588 -0.04510884 0 0.07814763 0.3194388 0.9443787 0.8884575 -0.08905546 -0.9412521 0.3257506 0 0 0 0 1 0.9937525 -0.1045695 -0.03899534 0 0.07826305 0.4038562 0.9114684 0.8884575 -0.07956326 -0.9088261 0.4095175 0 0 0 0 1 0.9945922 -0.09655364 -0.03825486 0 0.08040051 0.4826693 0.8721043 0.8884575 -0.06574036 -0.870464 0.4878225 0 0 0 0 1 0.9951196 -0.08957027 -0.04139593 0 0.08373881 0.5446811 0.8344519 0.8884575 -0.05219448 -0.8338461 0.5495237 0 0 0 0 1 0.9954583 -0.08391911 -0.04494642 0 0.08562113 0.5828662 0.8080443 0.8884575 -0.04161261 -0.808223 0.5874045 0 0 0 0 1 0.9957317 -0.07861356 -0.04835258 0 0.08581509 0.5957906 0.7985418 0.8884575 -0.03396814 -0.799283 0.5999941 0 0 0 0 1 0.9957786 -0.07569103 -0.05192056 0 0.08665671 0.5887898 0.8036274 0.8884575 -0.03025709 -0.8047342 0.5928637 0 0 0 0 1 0.9955487 -0.07715543 -0.05412632 0 0.08854439 0.5689359 0.8176011 0.8884575 -0.03228794 -0.8187545 0.5732352 0 0 0 0 1 0.9952088 -0.08347518 -0.05090244 0 0.08804592 0.538812 0.8378122 0.8884575 -0.04250965 -0.83828 0.5435804 0 0 0 0 1 0.9947615 -0.09389009 -0.0404229 0 0.08236828 0.5020349 0.8609159 0.8884575 -0.06053771 -0.8597357 0.5071387 0 0 0 0 1 0.9939345 -0.1064074 -0.02777974 0 0.07455026 0.4662244 0.8815196 0.8884575 -0.08084852 -0.8782438 0.4713295 0 0 0 0 1 0.992853 -0.1177286 -0.01955977 0 0.07003466 0.4420571 0.8942485 0.8884575 -0.09663205 -0.8892272 0.4471433 0 0 0 0 1 0.9920241 -0.1247539 -0.01801832 0 0.07112967 0.4360415 0.8971108 0.8884575 -0.1040613 -0.8912374 0.4414376 0 0 0 0 1 0.9918699 -0.1259665 -0.01805782 0 0.07329015 0.4494659 0.8902858 0.8884575 -0.1040298 -0.8843713 0.4550442 0 0 0 0 1 0.9923863 -0.1225142 -0.01262939 0 0.07029594 0.4792228 0.8748735 0.8884575 -0.1011321 -0.8691003 0.4841866 0 0 0 0 1 0.9930959 -0.1173041 2.15948e-4 0 0.06106584 0.5185532 0.852862 0.8884575 -0.1001561 -0.8469605 0.5221364 0 0 0 0 1 0.9933953 -0.1133038 0.01809904 0 0.04889764 0.5607432 0.8265446 0.8884575 -0.1037996 -0.8202007 0.5625803 0 0 0 0 1 0.9929968 -0.111804 0.03816874 0 0.036729 0.5992322 0.7997323 0.8884575 -0.1122852 -0.7927299 0.5991423 0 0 0 0 1 0.9921086 -0.1122229 0.05591299 0 0.02664533 0.6244731 0.7805916 0.8884575 -0.1225164 -0.772942 0.6225356 0 0 0 0 1 0.9911194 -0.1147389 0.06721045 0 0.01940662 0.6248358 0.7805148 0.8884575 -0.1315509 -0.7722791 0.6215138 0 0 0 0 1 0.9903619 -0.1209756 0.06743829 0 0.01749154 0.5922557 0.8055601 0.8884575 -0.1373938 -0.7966166 0.5886637 0 0 0 0 1 0.9902833 -0.1293291 0.05111499 0 0.02538044 0.529475 0.8479454 0.8884575 -0.1367281 -0.8384089 0.5276128 0 0 0 0 1 0.9911224 -0.1318154 0.01733947 0 0.04406029 0.4487046 0.8925931 0.8884575 -0.1254379 -0.8839053 0.4505293 0 0 0 0 1 0.9922553 -0.1221355 -0.02263109 0 0.06593805 0.363509 0.9292539 0.8884575 -0.1052683 -0.9235494 0.3687474 0 0 0 0 1 0.9933689 -0.1030254 -0.05102582 0 0.07913939 0.290816 0.9535 0.8884575 -0.08339559 -0.9512159 0.2970412 0 0 0 0 1 0.9948744 -0.08296377 -0.05780821 0 0.07659591 0.2450871 0.9664705 0.8884575 -0.06601395 -0.9659446 0.2501858 0 0 0 0 1 0.9966942 -0.06804314 -0.04439309 0 0.05903068 0.2310816 0.9711418 0.8884575 -0.05582109 -0.9705519 0.2343346 0 0 0 0 1 0.998028 -0.05919726 -0.02086943 0 0.03551616 0.2584454 0.9653726 0.8884575 -0.0517538 -0.9642102 0.2600384 0 0 0 0 1 0.9984127 -0.05563977 0.008727461 0 0.01003484 0.328226 0.9445457 0.8884575 -0.05541892 -0.9429592 0.3282635 0 0 0 0 1 0.9973028 -0.0548429 0.04877388 0 -0.02040562 0.431154 0.9020473 0.8884575 -0.07049993 -0.90061 0.4288723 0 0 0 0 1 0.9932446 -0.05222397 0.1036226 0 -0.05822458 0.5481474 0.8343525 0.8884575 -0.1003736 -0.8347496 0.541404 0 0 0 0 1 0.9866613 -0.04293743 0.1570218 0 -0.09014934 0.6590481 0.7466784 0.8884575 -0.1355453 -0.7508742 0.6463866 0 0 0 0 1 0.9866646 -0.02379743 0.1610167 0 -0.09087045 0.7401934 0.6662252 0.8884575 -0.135038 -0.6719725 0.7281605 0 0 0 0 1 0.9862458 -0.006266374 0.1651657 0 -0.09940977 0.7758498 0.6230366 0.8884575 -0.1320479 -0.6308863 0.7645558 0 0 0 0 1 0.9865407 0.007729784 0.1633321 0 -0.1067246 0.7872167 0.6073709 0.8884575 -0.1238829 -0.6166277 0.7774467 0 0 0 0 1 0.9867356 0.01371836 0.1617532 0 -0.1118965 0.7793638 0.6164988 0.8884575 -0.1176072 -0.6264212 0.7705613 0 0 0 0 1 0.9872087 0.01126041 0.1590348 0 -0.1123408 0.756935 0.6437615 0.8884575 -0.11313 -0.6533929 0.7485182 0 0 0 0 1 0.9878018 9.30883e-4 0.1557133 0 -0.1081666 0.7234467 0.6818538 0.8884575 -0.1120155 -0.6903796 0.7147227 0 0 0 0 1 0.988238 -0.01671317 0.1520063 0 -0.09973859 0.6830473 0.7235317 0.8884575 -0.11592 -0.7301825 0.6733467 0 0 0 0 1 0.9883459 -0.03999551 0.1468758 0 -0.08750057 0.6402664 0.763153 0.8884575 -0.1245624 -0.767111 0.6293051 0 0 0 0 1 0.9879289 -0.06349928 0.1412938 0 -0.07445446 0.6052101 0.7925762 0.8884575 -0.1358405 -0.7935292 0.5931769 0 0 0 0 1 0.9874378 -0.07876713 0.1369736 0 -0.06492806 0.5880421 0.8062198 0.8884575 -0.1440499 -0.8049858 0.5755411 0 0 0 0 1 0.9877313 -0.07902398 0.1346912 0 -0.06179659 0.5943103 0.8018581 0.8884575 -0.1434143 -0.8003439 0.5821357 0 0 0 0 1 0.9888734 -0.06360849 0.1344732 0 -0.0662324 0.6211654 0.7808753 0.8884575 -0.1332005 -0.7810935 0.6100411 0 0 0 0 1 0.9899561 -0.03846255 0.1360416 0 -0.077085 0.6597974 0.7474794 0.8884575 -0.1185098 -0.7504588 0.6502056 0 0 0 0 1 0.9904293 -0.01200001 0.1374975 0 -0.08959056 0.701915 0.7066035 0.8884575 -0.1049908 -0.7121593 0.6941224 0 0 0 0 1 0.9911016 0.009336721 0.132779 0 -0.09592263 0.7416968 0.6638408 0.8884575 -0.0922837 -0.6706702 0.7359927 0 0 0 0 1 0.9918883 0.02043483 0.1254578 0 -0.095451 0.7715389 0.6289805 0.8884575 -0.08394243 -0.6358536 0.7672312 0 0 0 0 1 0.9927908 0.02214358 0.1177959 0 -0.09011414 0.7859001 0.6117517 0.8884575 -0.07902944 -0.6179565 0.78223 0 0 0 0 1 0.9935182 0.01836342 0.1121787 0 -0.08447554 0.7796087 0.6205431 0.8884575 -0.07606024 -0.6259973 0.7761068 0 0 0 0 1 0.9938405 0.01136991 0.1102345 0 -0.08139053 0.7499765 0.6564379 0.8884575 -0.07520962 -0.6613666 0.7462826 0 0 0 0 1 0.9936879 0.001385204 0.1121709 0 -0.08102605 0.7004008 0.7091355 0.8884575 -0.07758233 -0.7137482 0.6960922 0 0 0 0 1 0.9930502 -0.01302195 0.1169678 0 -0.08158775 0.6401098 0.7639387 0.8884575 -0.08482023 -0.7681727 0.6345991 0 0 0 0 1 0.9919258 -0.03159909 0.1228196 0 -0.08167118 0.5817333 0.8092688 0.8884575 -0.0970204 -0.8127656 0.5744557 0 0 0 0 1 0.9908782 -0.04972843 0.1252486 0 -0.07880135 0.540141 0.8378769 0.8884575 -0.1093182 -0.8401039 0.5312954 0 0 0 0 1 0.9893958 -0.06399909 0.1303836 0 -0.07803622 0.5228838 0.8488241 0.8884575 -0.1224995 -0.8499979 0.5123451 0 0 0 0 1 0.9886985 -0.07000895 0.1325662 0 -0.07552232 0.5312748 0.8438263 0.8884575 -0.1295045 -0.8443016 0.5199835 0 0 0 0 1 0.9887992 -0.06518037 0.1342663 0 -0.07369482 0.569069 0.8189807 0.8884575 -0.1297882 -0.8197024 0.5578916 0 0 0 0 1 0.9894376 -0.04927771 0.1363259 0 -0.07483125 0.6318144 0.771499 0.8884575 -0.1241503 -0.7735517 0.6214536 0 0 0 0 1 0.9904662 -0.02457424 0.1355454 0 -0.07862003 0.7071294 0.7026994 0.8884575 -0.1131165 -0.7066567 0.698456 0 0 0 0 1 0.9907312 0.005605172 0.1357207 0 -0.0880076 0.7875683 0.6099104 0.8884575 -0.1034707 -0.6162018 0.780762 0 0 0 0 1 0.9892985 0.02622232 0.1435293 0 -0.0949964 0.8624089 0.4972187 0.8884575 -0.1107428 -0.5055325 0.855671 0 0 0 0 1 0.9950733 0.04213826 0.08974132 0 -0.07891236 0.8845944 0.4596362 0.8884575 -0.06001638 -0.4644534 0.8835616 0 0 0 0 1 0.9979994 0.05737977 0.02654184 0 -0.0631507 0.8849848 0.4613173 0.8884575 0.002981171 -0.4620706 0.886838 0 0 0 0 1 0.9953963 0.04974315 0.08192264 0 -0.0818701 0.8857132 0.4569564 0.8884575 -0.04982951 -0.4615598 0.8857084 0 0 0 0 1 0.9861788 0.03185317 0.1625944 0 -0.1021341 0.8895895 0.4451956 0.8884575 -0.1304614 -0.4556488 0.8805477 0 0 0 0 1 0.987915 0.02715795 0.1525982 0 -0.1018793 0.8557467 0.5072652 0.8884575 -0.1168092 -0.5166814 0.8481721 0 0 0 0 1 0.9897626 0.02003555 0.1413074 0 -0.09835333 0.8132118 0.5735964 0.8884575 -0.1034205 -0.5816226 0.8068575 0 0 0 0 1 0.9906878 0.0126805 0.1355593 0 -0.09556447 0.7739423 0.6260035 0.8884575 -0.0969771 -0.6331289 0.7679473 0 0 0 0 1 0.9912457 0.006852292 0.1318511 0 -0.0937046 0.7400392 0.6660038 0.8884575 -0.09301131 -0.6725287 0.7342029 0 0 0 0 1 0.9912512 0.005261831 0.131883 0 -0.0960661 0.7139636 0.6935612 0.8884575 -0.09051026 -0.7001629 0.708223 0 0 0 0 1 0.9909371 0.009682804 0.1339767 0 -0.1025824 0.6984631 0.7082555 0.8884575 -0.08671993 -0.7155803 0.6931264 0 0 0 0 1 0.9905565 0.01903484 0.1357761 0 -0.1105929 0.6962559 0.7092226 0.8884575 -0.08103498 -0.7175411 0.6917862 0 0 0 0 1 0.9901038 0.0308062 0.1369129 0 -0.1182368 0.7086337 0.695599 0.8884575 -0.07559234 -0.7049033 0.7052639 0 0 0 0 1 0.9892204 0.04234069 0.1401792 0 -0.1261125 0.7328514 0.6685988 0.8884575 -0.07442158 -0.67907 0.7302912 0 0 0 0 1 0.9890764 0.05058379 0.1384514 0 -0.1276074 0.763992 0.632481 0.8884575 -0.07378247 -0.6432397 0.7621014 0 0 0 0 1 0.9893595 0.0519952 0.1358825 0 -0.1236462 0.7926978 0.5969434 0.8884575 -0.07667558 -0.6073931 0.7906923 0 0 0 0 1 0.9900438 0.04640668 0.1328891 0 -0.1149488 0.8114398 0.5730197 0.8884575 -0.08123962 -0.5825902 0.8086954 0 0 0 0 1 0.9909261 0.03280775 0.1303423 0 -0.1022932 0.8131375 0.5730127 0.8884575 -0.08718692 -0.5811465 0.8091152 0 0 0 0 1 0.9915096 0.005094726 0.1299331 0 -0.08309574 0.7934111 0.6029873 0.8884575 -0.1000183 -0.6086646 0.7870983 0 0 0 0 1 0.9905086 -0.03839177 0.1319805 0 -0.05778346 0.7549233 0.6532624 0.8884575 -0.1247151 -0.6546882 0.7455397 0 0 0 0 1 0.987169 -0.08507741 0.1351258 0 -0.03634865 0.7042908 0.7089804 0.8884575 -0.1554861 -0.7047951 0.6921619 0 0 0 0 1 0.9842877 -0.1155731 0.133493 0 -0.02437586 0.6598486 0.751003 0.8884575 -0.1748809 -0.7424572 0.6466638 0 0 0 0 1 0.9830782 -0.1269254 0.1320869 0 -0.02266545 0.6312352 0.77526 0.8884575 -0.1817781 -0.765135 0.617677 0 0 0 0 1 0.9833323 -0.1317943 0.1252501 0 -0.02128882 0.6006818 0.7992045 0.8884575 -0.1805661 -0.7885501 0.5878643 0 0 0 0 1 0.9841994 -0.1293174 0.1209474 0 -0.02373838 0.5805407 0.813885 0.8884575 -0.1754644 -0.8038964 0.5682982 0 0 0 0 1 0.9846862 -0.1264323 0.1200323 0 -0.03060707 0.5524452 0.832987 0.8884575 -0.1716278 -0.8239048 0.5401158 0 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftLeg_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftLeg_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftLeg_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftLeg_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftLeg_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftLeg_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftLeg_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftLeg_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftLeg_pose_matrix-sampler\" target=\"mixamorig_LeftLeg/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftFoot_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftFoot_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftFoot_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftFoot_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftFoot_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftFoot_pose_matrix-output-array\" count=\"1856\">0.9433436 0.2451101 -0.2236603 -5.96046e-8 -0.2589704 0.1224371 -0.9580939 0.8964035 -0.2074541 0.9617329 0.1789765 1.49012e-8 0 0 0 1 0.9495768 0.2129991 -0.2300774 -5.96046e-8 -0.2577645 0.1125757 -0.9596272 0.8964035 -0.1784987 0.9705453 0.1618027 1.49012e-8 0 0 0 1 0.9549941 0.182707 -0.2336756 -5.96046e-8 -0.2557628 0.1081935 -0.9606662 0.8964035 -0.1502383 0.9771962 0.1500537 1.49012e-8 0 0 0 1 0.9594134 0.1569861 -0.2342675 -5.96046e-8 -0.2526364 0.1093539 -0.9613619 0.8964035 -0.1253024 0.981528 0.1445759 1.49012e-8 0 0 0 1 0.9630373 0.1373715 -0.2317075 -5.96046e-8 -0.2479185 0.115642 -0.9618543 0.8964035 -0.1053362 0.9837459 0.1454246 1.49012e-8 0 0 0 1 0.9669015 0.1354095 -0.2162543 -5.96046e-8 -0.2353176 0.1456352 -0.9609457 0.8964035 -0.09862698 0.980028 0.172679 1.49012e-8 0 0 0 1 0.9708092 0.1311954 -0.2007913 -5.96046e-8 -0.2209847 0.1637863 -0.9614263 0.8964035 -0.09324779 0.977733 0.1879973 1.49012e-8 0 0 0 1 0.9741666 0.1251161 -0.1880037 -5.96046e-8 -0.207142 0.1634474 -0.9645609 0.8964035 -0.08995333 0.9785862 0.1851417 1.49012e-8 0 0 0 1 0.974247 0.1249156 -0.1877203 -5.96046e-8 -0.2067698 0.1628578 -0.9647403 0.8964035 -0.08993936 0.9787102 0.1844923 1.49012e-8 0 0 0 1 0.977664 0.1167259 -0.1747802 -5.96046e-8 -0.1911116 0.1476677 -0.9703973 0.8964035 -0.0874611 0.9821249 0.1666769 1.49012e-8 0 0 0 1 0.9796186 0.1095167 -0.168385 -5.96046e-8 -0.1806038 0.1133107 -0.9770075 0.8964035 -0.08791888 0.9875053 0.1307804 1.49012e-8 0 0 0 1 0.9810056 0.1031697 -0.1642682 -5.96046e-8 -0.1724093 0.07564133 -0.9821171 0.8964035 -0.08889925 0.9917835 0.09199199 1.49012e-8 0 0 0 1 0.982987 0.09568463 -0.1567837 -5.96046e-8 -0.1610825 0.03894216 -0.9861726 0.8964035 -0.08825606 0.9946496 0.05369267 1.49012e-8 0 0 0 1 0.9847049 0.08938189 -0.1495573 -5.96046e-8 -0.150892 0.008327782 -0.9885154 0.8964035 -0.08710992 0.9959626 0.02168736 1.49012e-8 0 0 0 1 0.985885 0.08519854 -0.1441257 -5.96046e-8 -0.1435392 -0.01300338 -0.9895594 0.8964035 -0.08618315 0.9962791 -5.90622e-4 1.49012e-8 0 0 0 1 0.9866365 0.08299004 -0.1402177 -5.96046e-8 -0.138685 -0.02398175 -0.9900462 0.8964035 -0.08552662 0.9962619 -0.01215196 1.49012e-8 0 0 0 1 0.9872581 0.08202442 -0.1363582 -5.96046e-8 -0.1347743 -0.02457401 -0.9905717 0.8964035 -0.08460195 0.9963274 -0.01320618 1.49012e-8 0 0 0 1 0.9879297 0.08145799 -0.1317558 -5.96046e-8 -0.130699 -0.01819474 -0.9912555 0.8964035 -0.08314294 0.9965107 -0.007328749 1.49012e-8 0 0 0 1 0.9885969 0.08081271 -0.1270649 -5.96046e-8 -0.1266271 -0.01054072 -0.9918947 0.8964035 -0.08149702 0.9966739 -1.87576e-4 1.49012e-8 0 0 0 1 0.9890355 0.08006514 -0.1240901 -5.96046e-8 -0.1238115 -0.008454502 -0.99227 0.8964035 -0.08049531 0.9967538 0.001551062 1.49012e-8 0 0 0 1 0.9890425 0.07931931 -0.1245132 -5.96046e-8 -0.1234331 -0.01839757 -0.9921824 0.8964035 -0.08098996 0.9966796 -0.008405507 1.49012e-8 0 0 0 1 0.9887442 0.0781334 -0.1275939 -5.96046e-8 -0.1245156 -0.0430969 -0.9912816 0.8964035 -0.08295108 0.996011 -0.03288314 1.49012e-8 0 0 0 1 0.988454 0.07611788 -0.131015 -5.96046e-8 -0.1250833 -0.0780873 -0.9890687 0.8964035 -0.08551641 0.9940366 -0.06766468 1.49012e-8 0 0 0 1 0.9882979 0.07378153 -0.1335038 -5.96046e-8 -0.1246685 -0.1136005 -0.985674 0.8964035 -0.0878906 0.990783 -0.103073 1.49012e-8 0 0 0 1 0.9882529 0.07227246 -0.1346573 -5.96046e-8 -0.1238649 -0.1373248 -0.9827511 0.8964035 -0.08951764 0.987886 -0.1267597 1.49012e-8 0 0 0 1 0.988295 0.07230613 -0.1343301 -5.96046e-8 -0.12317 -0.1413428 -0.9822688 0.8964035 -0.09001064 0.9873166 -0.1307825 1.49012e-8 0 0 0 1 0.9886216 0.0736483 -0.1311607 -5.96046e-8 -0.1214417 -0.1237528 -0.9848542 0.8964035 -0.08876434 0.9895763 -0.1134008 1.49012e-8 0 0 0 1 0.9891776 0.07581794 -0.1256155 -5.96046e-8 -0.1188373 -0.08813128 -0.9889949 0.8964035 -0.08605423 0.9932192 -0.07816759 1.49012e-8 0 0 0 1 0.9898122 0.07841101 -0.118843 -5.96046e-8 -0.1159864 -0.04004744 -0.9924433 0.8964035 -0.08257783 0.9961165 -0.03054491 1.49012e-8 0 0 0 1 0.9903607 0.08104593 -0.1123253 -5.96046e-8 -0.1136375 0.01174867 -0.9934529 0.8964035 -0.07919562 0.9966412 0.02084514 1.49012e-8 0 0 0 1 0.9906623 0.08363301 -0.1076754 -5.96046e-8 -0.1127949 0.05910051 -0.9918595 0.8964035 -0.07658851 0.9947426 0.06798187 1.49012e-8 0 0 0 1 0.9906486 0.08641899 -0.105579 -5.96046e-8 -0.113931 0.09821773 -0.9886218 0.8964035 -0.07506594 0.9914056 0.1071449 1.49012e-8 0 0 0 1 0.9903683 0.08918443 -0.1059106 -5.96046e-8 -0.1166057 0.1247732 -0.9853097 0.8964035 -0.07465948 0.988169 0.1339707 1.49012e-8 0 0 0 1 0.9899806 0.0907825 -0.1081524 -5.96046e-8 -0.1197011 0.1332733 -0.9838243 0.8964035 -0.07490022 0.9869127 0.1428047 1.49012e-8 0 0 0 1 0.9894362 0.09119151 -0.112695 -5.96046e-8 -0.123238 0.1197149 -0.98513 0.8964035 -0.07634421 0.9886115 0.1296883 1.49012e-8 0 0 0 1 0.9885662 0.09090608 -0.1203028 -5.96046e-8 -0.1282076 0.08678621 -0.9879428 0.8964035 -0.07936938 0.9920707 0.09744868 1.49012e-8 0 0 0 1 0.9874287 0.09008876 -0.1298785 -5.96046e-8 -0.1341208 0.04272941 -0.9900436 0.8964035 -0.08364217 0.9950167 0.05427501 1.49012e-8 0 0 0 1 0.9863105 0.08856993 -0.1390925 -5.96046e-8 -0.1393514 -0.003284663 -0.9902376 0.8964035 -0.08816215 0.9960646 0.009102553 1.49012e-8 0 0 0 1 0.9854964 0.08649759 -0.1459966 -5.96046e-8 -0.1426655 -0.04354906 -0.9888127 0.8964035 -0.09188794 0.9952998 -0.03057733 1.49012e-8 0 0 0 1 0.984791 0.08477987 -0.1516538 -5.96046e-8 -0.1454759 -0.07486406 -0.9865255 0.8964035 -0.09499089 0.9935833 -0.0613921 1.49012e-8 0 0 0 1 0.9837831 0.08455731 -0.1581803 -5.96046e-8 -0.1501307 -0.09434813 -0.9841541 0.8964035 -0.09814149 0.9919417 -0.08012357 1.49012e-8 0 0 0 1 0.9824152 0.08606871 -0.1656896 -5.96046e-8 -0.1569517 -0.09996614 -0.9825343 0.8964035 -0.1011288 0.9912612 -0.08469972 1.49012e-8 0 0 0 1 0.9813066 0.08861791 -0.1708335 -5.96046e-8 -0.1629091 -0.09008875 -0.9825196 0.8964035 -0.102459 0.9919832 -0.07396805 1.49012e-8 0 0 0 1 0.9812012 0.09117751 -0.1700915 -5.96046e-8 -0.1645948 -0.06480408 -0.9842303 0.8964035 -0.1007623 0.9937238 -0.04857853 1.49012e-8 0 0 0 1 0.9820478 0.09315763 -0.1640233 -5.96046e-8 -0.1619591 -0.0293543 -0.986361 0.8964035 -0.09670181 0.9952186 -0.01373968 1.49012e-8 0 0 0 1 0.9833362 0.09449024 -0.1553113 -5.96046e-8 -0.1570275 0.01096043 -0.9875337 0.8964035 -0.09161001 0.9954654 0.02561525 1.49012e-8 0 0 0 1 0.984659 0.09532025 -0.146152 -5.96046e-8 -0.1514004 0.0503352 -0.9871901 0.8964035 -0.08674259 0.9941733 0.06399453 1.49012e-8 0 0 0 1 0.9856388 0.09601356 -0.138917 -5.96046e-8 -0.146907 0.08184955 -0.9857584 0.8964035 -0.08327588 0.9920092 0.09477904 1.49012e-8 0 0 0 1 0.9860818 0.09676971 -0.1351968 -5.96046e-8 -0.1447204 0.09928527 -0.9844788 0.8964035 -0.08184468 0.9903424 0.1119078 1.49012e-8 0 0 0 1 0.985896 0.09766408 -0.1359071 -5.96046e-8 -0.1455413 0.09941244 -0.984345 0.8964035 -0.08262426 0.9902419 0.1122245 1.49012e-8 0 0 0 1 0.9847342 0.09928743 -0.1429702 -5.96046e-8 -0.1513286 0.08246121 -0.9850383 0.8964035 -0.08601242 0.9916362 0.09622732 1.49012e-8 0 0 0 1 0.9823323 0.1019032 -0.1569675 -5.96046e-8 -0.1629487 0.05324501 -0.9851971 0.8964035 -0.09203703 0.9933684 0.06890914 1.49012e-8 0 0 0 1 0.9790487 0.1046332 -0.174687 -5.96046e-8 -0.1777061 0.02018818 -0.9838766 0.8964035 -0.09941959 0.994306 0.03835911 1.49012e-8 0 0 0 1 0.976477 0.1059239 -0.1878102 -5.96046e-8 -0.1883798 -0.004692465 -0.9820852 0.8964035 -0.1049076 0.9943631 0.01537177 1.49012e-8 0 0 0 1 0.9762405 0.104976 -0.1895646 -5.96046e-8 -0.1891949 -0.01356056 -0.9818459 0.8964035 -0.1056409 0.9943824 0.006622434 1.49012e-8 0 0 0 1 0.9779243 0.1025651 -0.182057 -5.96046e-8 -0.1822822 -0.007252187 -0.9832196 0.8964035 -0.1021644 0.9947 0.01160359 1.49012e-8 0 0 0 1 0.9805892 0.1002743 -0.1684936 -5.96046e-8 -0.1710807 0.01772383 -0.9850976 0.8964035 -0.09579367 0.994802 0.03453472 1.49012e-8 0 0 0 1 0.983445 0.09871481 -0.1519583 -5.96046e-8 -0.1584926 0.06207865 -0.9854068 0.8964035 -0.0878409 0.9931775 0.07669649 1.49012e-8 0 0 0 1 0.9864033 0.09698331 -0.1326761 -5.96046e-8 -0.1441832 0.1232773 -0.9818423 0.8964035 -0.07886638 0.987622 0.1355845 1.49012e-8 0 0 0 1 0.989086 0.09470686 -0.1128697 -5.96046e-8 -0.1295611 0.1942557 -0.9723573 0.8964035 -0.07016333 0.9763685 0.2044058 1.49012e-8 0 0 0 1 0.9900511 0.1057572 -0.092813 -5.96046e-8 -0.1181332 0.2663959 -0.9565971 0.8964035 -0.07644201 0.9580443 0.276239 1.49012e-8 0 0 0 1 0.9859999 0.1589639 -0.05034882 -5.96046e-8 -0.1031579 0.3442867 -0.9331801 0.8964035 -0.1310076 0.9253092 0.3558648 1.49012e-8 0 0 0 1 0.9787863 0.2038023 -0.02102213 -5.96046e-8 -0.1113821 0.4431764 -0.889488 0.8964035 -0.1719632 0.8729602 0.4564748 1.49012e-8 0 0 0 1 0.9760237 0.2176351 -0.003569327 -5.96046e-8 -0.1173359 0.5122608 -0.850777 0.8964035 -0.1833305 0.8307974 0.5255148 1.49012e-8 0 0 0 1 0.9775873 0.2103204 -0.009396724 -5.96046e-8 -0.1249315 0.5436099 -0.8299882 0.8964035 -0.1694553 0.8125601 0.5577017 1.49012e-8 0 0 0 1 0.9791551 0.2012237 -0.02764423 -5.96046e-8 -0.1344446 0.5400707 -0.8308119 0.8964035 -0.1522492 0.8172106 0.5558662 1.49012e-8 0 0 0 1 0.9780188 0.2035686 -0.04515661 -5.96046e-8 -0.1455556 0.5114387 -0.8469028 0.8964035 -0.149308 0.8348595 0.5298273 1.49012e-8 0 0 0 1 0.9737896 0.2200984 -0.05736278 -5.96046e-8 -0.1576567 0.4713769 -0.867726 0.8964035 -0.1639456 0.8540262 0.4937218 1.49012e-8 0 0 0 1 0.9677783 0.2439525 -0.06238808 -5.96046e-8 -0.1657447 0.4306367 -0.8871758 0.8964035 -0.1895622 0.86893 0.4571945 1.49012e-8 0 0 0 1 0.9598784 0.2721895 -0.06742726 -5.96046e-8 -0.1778186 0.4048953 -0.8969061 0.8964035 -0.2168275 0.8729106 0.4370505 1.49012e-8 0 0 0 1 0.9525327 0.2960903 -0.07079609 -5.96046e-8 -0.1910315 0.4002534 -0.8962725 0.8964035 -0.2370412 0.8672532 0.4378169 1.49012e-8 0 0 0 1 0.9487451 0.3085395 -0.06845504 -5.96046e-8 -0.2006087 0.4205512 -0.8848124 0.8964035 -0.2442107 0.8531941 0.4608916 1.49012e-8 0 0 0 1 0.9486962 0.310073 -0.06189024 -5.96046e-8 -0.2091376 0.4685548 -0.858323 0.8964035 -0.2371438 0.8272313 0.5093639 1.49012e-8 0 0 0 1 0.9518458 0.3019347 -0.05315106 -5.96046e-8 -0.2159312 0.5371904 -0.815353 0.8964035 -0.217631 0.7875676 0.5765193 1.49012e-8 0 0 0 1 0.9562467 0.2887449 -0.04710191 -5.96046e-8 -0.2224353 0.6129733 -0.7581467 0.8964035 -0.1900388 0.7354527 0.6503806 1.49012e-8 0 0 0 1 0.9598648 0.2761269 -0.04912836 -5.96046e-8 -0.2313117 0.6803496 -0.6954277 0.8964035 -0.1586018 0.6788806 0.7169148 1.49012e-8 0 0 0 1 0.9618263 0.2667236 -0.06122582 -5.96046e-8 -0.2429054 0.7290456 -0.6399139 0.8964035 -0.1260437 0.6303583 0.7660037 1.49012e-8 0 0 0 1 0.9620373 0.2601738 -0.08242569 -5.96046e-8 -0.2560551 0.7559289 -0.602501 0.8964035 -0.09444705 0.600734 0.7938505 1.49012e-8 0 0 0 1 0.9608874 0.2549974 -0.1080367 -5.96046e-8 -0.2682846 0.7603374 -0.5915325 0.8964035 -0.06869489 0.5973809 0.7990102 1.49012e-8 0 0 0 1 0.9587474 0.2527602 -0.13006 -5.96046e-8 -0.2783601 0.7420864 -0.6097736 0.8964035 -0.05761075 0.6208225 0.7818315 1.49012e-8 0 0 0 1 0.9561248 0.2560307 -0.1423855 -5.96046e-8 -0.2852698 0.7030411 -0.6514251 0.8964035 -0.06668192 0.6634622 0.7452326 1.49012e-8 0 0 0 1 0.9531353 0.2630472 -0.1494651 -5.96046e-8 -0.2893199 0.648005 -0.7045452 0.8964035 -0.08847458 0.7147698 0.693741 1.49012e-8 0 0 0 1 0.9501556 0.2655806 -0.1633136 -5.96046e-8 -0.2933747 0.5843076 -0.7566478 0.8964035 -0.1055257 0.7668453 0.6330976 1.49012e-8 0 0 0 1 0.9480278 0.255888 -0.1891156 -5.96046e-8 -0.300249 0.5226795 -0.7979077 0.8964035 -0.1053282 0.8132204 0.5723448 1.49012e-8 0 0 0 1 0.94986 0.2289549 -0.212946 -5.96046e-8 -0.3000332 0.4757002 -0.8268554 0.8964035 -0.08801413 0.8492875 0.5205425 1.49012e-8 0 0 0 1 0.959692 0.1899699 -0.2071298 -5.96046e-8 -0.2728857 0.4534386 -0.8484851 0.8964035 -0.06726602 0.8708071 0.4870013 1.49012e-8 0 0 0 1 0.9626048 0.1841419 -0.198705 -5.96046e-8 -0.2646993 0.483153 -0.8345643 0.8964035 -0.05767334 0.8559529 0.5138275 1.49012e-8 0 0 0 1 0.9587139 0.2108852 -0.1907751 -5.96046e-8 -0.2785428 0.5612484 -0.7793682 0.8964035 -0.05728503 0.8003299 0.5968171 1.49012e-8 0 0 0 1 0.9616991 0.2252089 -0.1562555 -5.96046e-8 -0.2677942 0.6503009 -0.7109116 0.8964035 -0.05849054 0.7255273 0.6857035 1.49012e-8 0 0 0 1 0.9679813 0.2224303 -0.1163489 -5.96046e-8 -0.2446849 0.7325768 -0.6351856 0.8964035 -0.05605006 0.6433166 0.7635459 1.49012e-8 0 0 0 1 0.9717793 0.2172474 -0.09191649 -5.96046e-8 -0.2309316 0.7966618 -0.5585703 0.8964035 -0.04812156 0.5640334 0.8243487 1.49012e-8 0 0 0 1 0.9765713 0.2068044 -0.05950069 -5.96046e-8 -0.2122006 0.8794879 -0.4259956 0.8964035 -0.03576767 0.4286413 0.9027666 1.49012e-8 0 0 0 1 0.9812129 0.1910592 -0.02680003 -5.96046e-8 -0.1884668 0.9195176 -0.344918 0.8964035 -0.04125659 0.3434888 0.9382506 1.49012e-8 0 0 0 1 0.9784456 0.2052734 -0.02251808 -5.96046e-8 -0.1947719 0.8811188 -0.4309223 0.8964035 -0.06861577 0.42602 0.9021081 1.49012e-8 0 0 0 1 0.9720372 0.2327066 -0.0314879 -5.96046e-8 -0.2070068 0.785831 -0.5827675 0.8964035 -0.1108697 0.5729899 0.8120287 1.49012e-8 0 0 0 1 0.9685036 0.2476346 -0.02603787 -5.96046e-8 -0.1970613 0.6983607 -0.6880837 0.8964035 -0.1522096 0.6715428 0.7251639 1.49012e-8 0 0 0 1 0.9659397 0.2561125 -0.03697407 -5.96046e-8 -0.1914753 0.6113003 -0.7678863 0.8964035 -0.1740631 0.7488114 0.6395183 1.49012e-8 0 0 0 1 0.9652444 0.255201 -0.05634928 -5.96046e-8 -0.1886263 0.5310366 -0.8260872 0.8964035 -0.1808948 0.808005 0.5607179 1.49012e-8 0 0 0 1 0.965828 0.2492102 -0.07121092 -5.96046e-8 -0.1861439 0.4757693 -0.8596478 0.8964035 -0.1803531 0.8435273 0.5059 1.49012e-8 0 0 0 1 0.967701 0.2395706 -0.07849126 -5.96046e-8 -0.1834963 0.4558517 -0.8709354 0.8964035 -0.1728702 0.8572079 0.4850884 1.49012e-8 0 0 0 1 0.9703189 0.2282611 -0.07986277 -5.96046e-8 -0.1820201 0.4719372 -0.8626379 0.8964035 -0.1592165 0.8515705 0.4994776 1.49012e-8 0 0 0 1 0.9728767 0.2176437 -0.07837208 -5.96046e-8 -0.1829202 0.5164165 -0.8365729 0.8964035 -0.1416022 0.8282182 0.542221 1.49012e-8 0 0 0 1 0.9748859 0.2090385 -0.0768167 -5.96046e-8 -0.1862607 0.5762262 -0.7957831 0.8964035 -0.1220855 0.7901055 0.6006903 1.49012e-8 0 0 0 1 0.9762356 0.2020189 -0.07843657 -5.96046e-8 -0.1916902 0.6361427 -0.7473806 0.8964035 -0.1010881 0.7446551 0.6597502 1.49012e-8 0 0 0 1 0.9759052 0.2020984 -0.08225115 -5.96046e-8 -0.2008085 0.684428 -0.7008811 0.8964035 -0.08535194 0.7005103 0.7085199 1.49012e-8 0 0 0 1 0.9735618 0.2121847 -0.08458831 -5.96046e-8 -0.2134063 0.7128366 -0.6680734 0.8964035 -0.08145733 0.6684626 0.7392718 1.49012e-8 0 0 0 1 0.9693337 0.2303167 -0.08571111 -5.96046e-8 -0.2285514 0.7167171 -0.6588484 0.8964035 -0.09031323 0.6582334 0.7473772 1.49012e-8 0 0 0 1 0.9635629 0.251583 -0.09084573 -5.96046e-8 -0.2448169 0.6926668 -0.6784377 0.8964035 -0.1077576 0.6759578 0.7290197 1.49012e-8 0 0 0 1 0.9558643 0.2749483 -0.1035698 -5.96046e-8 -0.2615635 0.6357805 -0.7262011 0.8964035 -0.1338201 0.7212397 0.6796363 1.49012e-8 0 0 0 1 0.9454351 0.3027827 -0.1203117 -5.96046e-8 -0.2746102 0.5418225 -0.7943661 0.8964035 -0.1753328 0.7840605 0.5954053 1.49012e-8 0 0 0 1 0.9331741 0.3316469 -0.1385521 -5.96046e-8 -0.2755021 0.4124337 -0.8683302 0.8964035 -0.2308355 0.8484745 0.4762416 1.49012e-8 0 0 0 1 0.9256848 0.3400262 -0.1658006 -5.96046e-8 -0.2723402 0.2948003 -0.9159278 0.8964035 -0.2625614 0.8930146 0.3654949 1.49012e-8 0 0 0 1 0.9267946 0.3259383 -0.1865903 -5.96046e-8 -0.2678808 0.2254785 -0.9366961 0.8964035 -0.2632331 0.9181087 0.2962849 1.49012e-8 0 0 0 1 0.9303901 0.3057399 -0.2022317 -5.96046e-8 -0.2651672 0.1804164 -0.9471729 0.8964035 -0.2531027 0.9348652 0.2489298 1.49012e-8 0 0 0 1 0.9364531 0.2764353 -0.2159607 -5.96046e-8 -0.2610492 0.1379227 -0.9554218 0.8964035 -0.2343265 0.951084 0.2013212 1.49012e-8 0 0 0 1 0.9433436 0.2451101 -0.2236603 -5.96046e-8 -0.2589704 0.1224371 -0.9580939 0.8964035 -0.2074541 0.9617329 0.1789765 1.49012e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftFoot_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftFoot_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftFoot_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftFoot_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftFoot_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftFoot_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftFoot_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftFoot_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftFoot_pose_matrix-sampler\" target=\"mixamorig_LeftFoot/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftToeBase_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftToeBase_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftToeBase_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftToeBase_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftToeBase_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftToeBase_pose_matrix-output-array\" count=\"1856\">0.9984249 -0.03905094 -0.04027557 5.96046e-8 7.9168e-4 0.727674 -0.6859225 0.3430771 0.05609339 0.6848105 0.726559 2.98023e-8 0 0 0 1 0.9984161 -0.03823975 -0.04126542 5.96046e-8 5.51157e-4 0.7400986 -0.672498 0.3430771 0.05625664 0.6714102 0.7389475 2.98023e-8 0 0 0 1 0.9984089 -0.03761099 -0.04200797 5.96046e-8 3.70301e-4 0.7493795 -0.6621406 0.3430771 0.05638366 0.6610719 0.7482011 2.98023e-8 0 0 0 1 0.9984045 -0.03721351 -0.04246658 5.96046e-8 2.58423e-4 0.7550952 -0.6556152 0.3430771 0.05646405 0.6545583 0.7539001 2.98023e-8 0 0 0 1 0.9984026 -0.0370583 -0.04264363 5.96046e-8 2.15109e-4 0.757296 -0.6530715 0.3430771 0.05649558 0.6520194 0.7560944 2.98023e-8 0 0 0 1 0.9984121 -0.03788896 -0.04168224 5.96046e-8 4.4968e-4 0.7453129 -0.6667147 0.3430771 0.05632744 0.6656375 0.7441465 2.98023e-8 0 0 0 1 0.9984219 -0.03875834 -0.04063666 5.96046e-8 7.03987e-4 0.7322144 -0.6810735 0.3430771 0.05615205 0.6799701 0.7310864 2.98023e-8 0 0 0 1 0.99843 -0.03951571 -0.03969144 5.96046e-8 9.33301e-4 0.7203135 -0.6936477 0.3430771 0.05600027 0.692522 0.7192198 2.98023e-8 0 0 0 1 0.9984306 -0.03955562 -0.03964067 5.96046e-8 9.45643e-4 0.7196737 -0.6943116 0.3430771 0.05599228 0.6931847 0.7185817 2.98023e-8 0 0 0 1 0.9984348 -0.03993995 -0.03914692 5.96046e-8 0.001065269 0.7134361 -0.7007194 0.3430771 0.05591552 0.6995811 0.7123621 2.98023e-8 0 0 0 1 0.9984333 -0.0398065 -0.03931914 5.96046e-8 0.001023598 0.7156156 -0.6984934 0.3430771 0.05594197 0.6973591 0.7145354 2.98023e-8 0 0 0 1 0.9984249 -0.03904874 -0.04027828 5.96046e-8 7.90983e-4 0.7277077 -0.6858867 0.3430771 0.05609383 0.6847748 0.7265926 2.98023e-8 0 0 0 1 0.9984123 -0.03790759 -0.04166017 5.96046e-8 4.55063e-4 0.7450378 -0.667022 0.3430771 0.0563236 0.6659442 0.7438723 2.98023e-8 0 0 0 1 0.9984 -0.03681244 -0.04292152 5.96046e-8 1.47302e-4 0.7607501 -0.6490451 0.3430771 0.05654547 0.6480004 0.7595383 2.98023e-8 0 0 0 1 0.9983938 -0.03627998 -0.04351336 5.96046e-8 2.49222e-6 0.7680856 -0.6403471 0.3430771 0.05665378 0.6393186 0.7668521 2.98023e-8 0 0 0 1 0.9983937 -0.0362714 -0.04352295 5.96046e-8 1.37836e-7 0.768203 -0.6402063 0.3430771 0.05665564 0.639178 0.7669691 2.98023e-8 0 0 0 1 0.9983937 -0.03627087 -0.04352327 5.96046e-8 2.6077e-8 0.7682087 -0.6401995 0.3430771 0.05665555 0.6391713 0.7669748 2.98023e-8 0 0 0 1 0.9983937 -0.03627092 -0.04352332 5.96046e-8 8.56817e-8 0.7682095 -0.6401986 0.3430771 0.05665561 0.6391705 0.7669755 2.98023e-8 0 0 0 1 0.9983937 -0.0362709 -0.04352339 5.96046e-8 4.84288e-8 0.7682095 -0.6401986 0.3430771 0.05665565 0.6391702 0.7669757 2.98023e-8 0 0 0 1 0.9983937 -0.03627095 -0.04352332 5.96046e-8 7.45058e-8 0.7682089 -0.6401992 0.3430771 0.05665563 0.6391709 0.766975 2.98023e-8 0 0 0 1 0.9983937 -0.03627124 -0.04352298 5.96046e-8 1.19209e-7 0.7682045 -0.6402045 0.3430771 0.05665556 0.6391763 0.7669706 2.98023e-8 0 0 0 1 0.9983965 -0.03651691 -0.04325167 5.96046e-8 6.6597e-5 0.7648456 -0.6442135 0.3430771 0.05660555 0.6431777 0.7636217 2.98023e-8 0 0 0 1 0.9983997 -0.03679328 -0.04294307 5.96046e-8 1.42127e-4 0.7610185 -0.6487301 0.3430771 0.05654938 0.647686 0.7598059 2.98023e-8 0 0 0 1 0.9983977 -0.03661893 -0.04313815 5.96046e-8 9.43579e-5 0.7634384 -0.6458805 0.3430771 0.05658478 0.6448417 0.7622187 2.98023e-8 0 0 0 1 0.9983937 -0.03627085 -0.04352328 5.96046e-8 5.21541e-8 0.7682092 -0.6401988 0.3430771 0.05665554 0.6391706 0.7669753 2.98023e-8 0 0 0 1 0.9983937 -0.03627092 -0.04352333 5.96046e-8 8.9407e-8 0.7682093 -0.6401987 0.3430771 0.05665562 0.6391705 0.7669755 2.98023e-8 0 0 0 1 0.9983937 -0.03627093 -0.04352332 5.96046e-8 7.82311e-8 0.7682092 -0.6401989 0.3430771 0.05665561 0.6391708 0.7669752 2.98023e-8 0 0 0 1 0.9983937 -0.03627095 -0.0435232 5.96046e-8 5.58794e-8 0.7682079 -0.6402005 0.3430771 0.05665554 0.6391723 0.766974 2.98023e-8 0 0 0 1 0.9983937 -0.03627089 -0.04352329 5.96046e-8 7.07805e-8 0.7682092 -0.6401988 0.3430771 0.05665557 0.6391706 0.7669753 2.98023e-8 0 0 0 1 0.9983937 -0.0362709 -0.04352328 5.96046e-8 5.21541e-8 0.7682087 -0.6401994 0.3430771 0.05665558 0.6391712 0.7669749 2.98023e-8 0 0 0 1 0.9983937 -0.03627089 -0.04352327 5.96046e-8 8.19564e-8 0.7682092 -0.6401989 0.3430771 0.05665556 0.6391708 0.7669752 2.98023e-8 0 0 0 1 0.9983937 -0.03627096 -0.04352322 5.96046e-8 1.08033e-7 0.7682086 -0.6401997 0.3430771 0.05665556 0.6391715 0.7669746 2.98023e-8 0 0 0 1 0.9983963 -0.03649671 -0.04327417 5.96046e-8 6.10985e-5 0.7651237 -0.6438832 0.3430771 0.05660971 0.642848 0.763899 2.98023e-8 0 0 0 1 0.998405 -0.03725842 -0.0424151 5.96046e-8 2.70873e-4 0.7544534 -0.6563533 0.3430771 0.05645491 0.6552951 0.7532603 2.98023e-8 0 0 0 1 0.9984108 -0.03776785 -0.04182466 5.96046e-8 4.14994e-4 0.7470917 -0.6647207 0.3430771 0.05635194 0.6636471 0.7459201 2.98023e-8 0 0 0 1 0.9984128 -0.03795594 -0.04160311 5.96046e-8 4.68899e-4 0.7443236 -0.6678188 0.3430771 0.05631386 0.6667396 0.74316 2.98023e-8 0 0 0 1 0.9984124 -0.03791114 -0.04165615 5.96046e-8 4.55998e-4 0.7449858 -0.66708 0.3430771 0.05632301 0.6660022 0.7438205 2.98023e-8 0 0 0 1 0.9984099 -0.03768823 -0.04191784 5.96046e-8 3.92225e-4 0.7482544 -0.6634117 0.3430771 0.05636803 0.6623405 0.7470794 2.98023e-8 0 0 0 1 0.998405 -0.03726057 -0.04241287 5.96046e-8 2.71626e-4 0.754426 -0.6563848 0.3430771 0.05645465 0.6553264 0.7532331 2.98023e-8 0 0 0 1 0.9983985 -0.03669371 -0.04305447 5.96046e-8 1.14851e-4 0.7624019 -0.6471037 0.3430771 0.05656944 0.6460625 0.7611855 2.98023e-8 0 0 0 1 0.9983947 -0.03637152 -0.04341283 5.96046e-8 2.71574e-5 0.7668399 -0.6418384 0.3430771 0.05663533 0.6408072 0.76561 2.98023e-8 0 0 0 1 0.9983937 -0.03627092 -0.04352314 5.96046e-8 1.63913e-7 0.7682087 -0.6401994 0.3430771 0.05665547 0.6391712 0.7669749 2.98023e-8 0 0 0 1 0.9983937 -0.03627086 -0.04352338 5.96046e-8 -2.23517e-8 0.7682089 -0.6401992 0.3430771 0.05665563 0.6391709 0.766975 2.98023e-8 0 0 0 1 0.9983937 -0.03627096 -0.04352324 5.96046e-8 1.19209e-7 0.7682087 -0.6401995 0.3430771 0.05665558 0.6391712 0.7669748 2.98023e-8 0 0 0 1 0.9983937 -0.03627098 -0.04352337 5.96046e-8 6.70552e-8 0.768209 -0.6401992 0.3430771 0.0566557 0.6391709 0.766975 2.98023e-8 0 0 0 1 0.9983937 -0.03627087 -0.04352329 5.96046e-8 5.21541e-8 0.7682091 -0.6401989 0.3430771 0.05665556 0.6391708 0.7669751 2.98023e-8 0 0 0 1 0.9983937 -0.03627085 -0.04352331 5.96046e-8 1.49012e-8 0.768209 -0.6401991 0.3430771 0.05665556 0.6391708 0.7669751 2.98023e-8 0 0 0 1 0.9983937 -0.03627098 -0.04352323 5.96046e-8 1.45286e-7 0.7682087 -0.6401994 0.3430771 0.05665559 0.6391712 0.7669749 2.98023e-8 0 0 0 1 0.9983937 -0.03627089 -0.04352332 5.96046e-8 3.35276e-8 0.7682089 -0.6401992 0.3430771 0.05665561 0.6391709 0.766975 2.98023e-8 0 0 0 1 0.9983937 -0.03627089 -0.04352329 5.96046e-8 5.21541e-8 0.7682089 -0.6401992 0.3430771 0.05665558 0.6391709 0.766975 2.98023e-8 0 0 0 1 0.9983937 -0.03627089 -0.04352326 5.96046e-8 8.19564e-8 0.7682092 -0.6401988 0.3430771 0.05665555 0.6391706 0.7669752 2.98023e-8 0 0 0 1 0.9983937 -0.03627104 -0.0435231 5.96046e-8 1.82539e-7 0.7682079 -0.6402005 0.3430771 0.05665551 0.6391723 0.766974 2.98023e-8 0 0 0 1 0.9983937 -0.03627091 -0.04352331 5.96046e-8 5.58794e-8 0.7682089 -0.6401992 0.3430771 0.0566556 0.6391709 0.766975 2.98023e-8 0 0 0 1 0.9983937 -0.0362709 -0.0435233 5.96046e-8 9.31323e-8 0.7682093 -0.6401987 0.3430771 0.05665559 0.6391705 0.7669755 2.98023e-8 0 0 0 1 0.9983937 -0.03627085 -0.04352325 5.96046e-8 9.68575e-8 0.7682095 -0.6401985 0.3430771 0.05665551 0.6391702 0.7669756 2.98023e-8 0 0 0 1 0.9983937 -0.03627095 -0.04352308 5.96046e-8 1.30385e-7 0.7682077 -0.6402006 0.3430771 0.05665546 0.6391723 0.7669739 2.98023e-8 0 0 0 1 0.9983937 -0.03627086 -0.04352337 5.96046e-8 -3.35276e-8 0.7682087 -0.6401994 0.3430771 0.05665562 0.6391712 0.7669749 2.98023e-8 0 0 0 1 0.9983937 -0.03627088 -0.04352337 5.96046e-8 1.49012e-8 0.7682092 -0.6401989 0.3430771 0.05665563 0.6391706 0.7669753 2.98023e-8 0 0 0 1 0.9983937 -0.03627084 -0.04352332 5.96046e-8 4.09782e-8 0.7682095 -0.6401985 0.3430771 0.05665557 0.6391702 0.7669756 2.98023e-8 0 0 0 1 0.9983944 -0.03633144 -0.0434567 5.96046e-8 1.63838e-5 0.7673849 -0.6411866 0.3430771 0.05664326 0.6401565 0.7661535 2.98023e-8 0 0 0 1 0.9984121 -0.0378879 -0.04168331 5.96046e-8 4.49345e-4 0.7453266 -0.6666994 0.3430771 0.05632752 0.6656222 0.7441602 2.98023e-8 0 0 0 1 0.9984353 -0.03999804 -0.03907131 5.96046e-8 0.001083396 0.7124786 -0.7016925 0.3430771 0.05590381 0.7005525 0.7114074 2.98023e-8 0 0 0 1 0.9984561 -0.04194495 -0.03641217 5.96046e-8 0.001724873 0.6786438 -0.7344654 0.3430771 0.05551801 0.7332687 0.6776686 2.98023e-8 0 0 0 1 0.9984734 -0.04368161 -0.03379548 5.96046e-8 0.002352398 0.6449993 -0.7641795 0.3430771 0.05517865 0.7629337 0.6441176 2.98023e-8 0 0 0 1 0.9984825 -0.04459561 -0.03230837 5.96046e-8 0.002707731 0.6257365 -0.7800298 0.3430771 0.05500244 0.7787587 0.6249077 2.98023e-8 0 0 0 1 0.9984815 -0.044496 -0.03247456 5.96046e-8 0.002668045 0.6278937 -0.7782944 0.3430771 0.05502157 0.7770261 0.627059 2.98023e-8 0 0 0 1 0.9984739 -0.04372142 -0.03373234 5.96046e-8 0.002367526 0.6441841 -0.7648667 0.3430771 0.05517089 0.7636198 0.6433048 2.98023e-8 0 0 0 1 0.9984645 -0.04276998 -0.03520063 5.96046e-8 0.002015799 0.6631078 -0.7485213 0.3430771 0.05535604 0.7473011 0.6621761 2.98023e-8 0 0 0 1 0.9984573 -0.04206197 -0.03624346 5.96046e-8 0.00176546 0.6764861 -0.7364531 0.3430771 0.05549487 0.7352532 0.6755168 2.98023e-8 0 0 0 1 0.9984547 -0.04179306 -0.0366293 5.96046e-8 0.001672681 0.6814215 -0.7318894 0.3430771 0.0555479 0.730697 0.6804384 2.98023e-8 0 0 0 1 0.9984569 -0.04202486 -0.03629669 5.96046e-8 0.001752611 0.6771689 -0.7358254 0.3430771 0.05550196 0.7346265 0.6761976 2.98023e-8 0 0 0 1 0.9984652 -0.04285068 -0.03507953 5.96046e-8 0.002044942 0.66155 -0.7498982 0.3430771 0.05534051 0.7486757 0.6606225 2.98023e-8 0 0 0 1 0.9984797 -0.04433447 -0.03274123 5.96046e-8 0.002604045 0.6313516 -0.7754921 0.3430771 0.05505227 0.7742282 0.6305076 2.98023e-8 0 0 0 1 0.9985262 -0.04626817 -0.02835883 5.96046e-8 0.004116826 0.5856522 -0.8105517 0.3430771 0.05411116 0.8092407 0.5849798 2.98023e-8 0 0 0 1 0.9985878 -0.04819105 -0.02235148 5.96046e-8 0.006561145 0.5294217 -0.8483331 0.3430771 0.05271544 0.8469889 0.5289901 2.98023e-8 0 0 0 1 0.9986129 -0.04964191 -0.01754465 5.96046e-8 0.008099589 0.4741004 -0.8804334 0.3430771 0.05202433 0.8790702 0.4738448 2.98023e-8 0 0 0 1 0.9986153 -0.05062396 -0.01428802 5.96046e-8 0.008808613 0.4287308 -0.9033893 0.3430771 0.05185885 0.9020128 0.4285831 2.98023e-8 0 0 0 1 0.9986056 -0.05122646 -0.01274527 5.96046e-8 0.008858457 0.4006376 -0.9161937 0.3430771 0.05203959 0.9148036 0.4005328 2.98023e-8 0 0 0 1 0.9986034 -0.05134647 -0.0124337 5.96046e-8 0.008825842 0.3941839 -0.9189891 0.3430771 0.052088 0.9175961 0.3940866 2.98023e-8 0 0 0 1 0.9986194 -0.05089069 -0.01300201 5.96046e-8 0.009017177 0.4099631 -0.9120574 0.3430771 0.05174559 0.9106812 0.4098561 2.98023e-8 0 0 0 1 0.998638 -0.05003072 -0.0147831 5.96046e-8 0.009029176 0.4448475 -0.8955609 0.3430771 0.05138178 0.8942078 0.4446935 2.98023e-8 0 0 0 1 0.9986349 -0.04892483 -0.01828294 5.96046e-8 0.00825385 0.4934826 -0.8697164 0.3430771 0.05157303 0.8683787 0.4932128 2.98023e-8 0 0 0 1 0.9985975 -0.0474251 -0.02353281 5.96046e-8 0.006440774 0.5500178 -0.8351281 0.3430771 0.0525495 0.8338054 0.5495518 2.98023e-8 0 0 0 1 0.9985145 -0.04531265 -0.03024919 5.96046e-8 0.003579911 0.6085867 -0.7934792 0.3430771 0.0543639 0.7921923 0.6078451 2.98023e-8 0 0 0 1 0.9984355 -0.04297296 -0.03576906 5.96046e-8 0.001504526 0.6601617 -0.751122 0.3430771 0.05589129 0.7498934 0.6591936 2.98023e-8 0 0 0 1 0.9984531 -0.04164931 -0.03683313 5.96046e-8 0.001623709 0.6840275 -0.7294543 0.3430771 0.05557615 0.7282662 0.6830371 2.98023e-8 0 0 0 1 0.9984536 -0.04172339 -0.03672849 5.96046e-8 0.001648843 0.6826885 -0.7307076 0.3430771 0.05556171 0.7295173 0.6817017 2.98023e-8 0 0 0 1 0.9981837 -0.04336715 -0.04181136 5.96046e-8 -0.002759136 0.6604339 -0.750879 0.3430771 0.06017713 0.7496308 0.6591148 2.98023e-8 0 0 0 1 0.9985088 -0.04519802 -0.0306095 5.96046e-8 0.003398996 0.6111327 -0.7915209 0.3430771 0.05448162 0.7902368 0.6103751 2.98023e-8 0 0 0 1 0.9985566 -0.04672905 -0.02646898 5.96046e-8 0.004882552 0.5698102 -0.8217617 0.3430771 0.05348244 0.8204467 0.5692161 2.98023e-8 0 0 0 1 0.9986027 -0.04765058 -0.02284231 5.96046e-8 0.006321236 0.5368854 -0.8436314 0.3430771 0.05246324 0.8423084 0.5364365 2.98023e-8 0 0 0 1 0.9985717 -0.0508775 -0.01630586 5.96046e-8 0.007104065 0.428935 -0.9033074 0.3430771 0.05295216 0.9019017 0.4286837 2.98023e-8 0 0 0 1 0.9984781 -0.05338754 -0.0138244 5.96046e-8 0.006099038 0.3560378 -0.9344515 0.3430771 0.05481008 0.9329453 0.3558216 2.98023e-8 0 0 0 1 0.9986398 -0.05041461 -0.01329523 5.96046e-8 0.009075329 0.4191865 -0.9078546 0.3430771 0.05134234 0.9064994 0.4190738 2.98023e-8 0 0 0 1 0.9986703 -0.04712607 -0.02089976 5.96046e-8 0.008209493 0.5456114 -0.837998 0.3430771 0.05089471 0.8367122 0.5452729 2.98023e-8 0 0 0 1 0.9986035 -0.04463223 -0.02826741 5.96046e-8 0.005432434 0.6189691 -0.7853962 0.3430771 0.05255067 0.7841461 0.618347 2.98023e-8 0 0 0 1 0.9985062 -0.0421747 -0.03473576 5.96046e-8 0.002668381 0.6726298 -0.7399742 0.3430771 0.0545725 0.7387763 0.6717377 2.98023e-8 0 0 0 1 0.9984457 -0.03978251 -0.03903031 5.96046e-8 0.001210146 0.7156367 -0.6984715 0.3430771 0.05571849 0.6973389 0.7145725 2.98023e-8 0 0 0 1 0.9984199 -0.03830223 -0.04111334 5.96046e-8 6.14841e-4 0.7390814 -0.6736159 0.3430771 0.05618709 0.6725265 0.7379372 2.98023e-8 0 0 0 1 0.9984186 -0.03826227 -0.04117995 5.96046e-8 5.91658e-4 0.7396954 -0.6729416 0.3430771 0.05620889 0.6718534 0.7385484 2.98023e-8 0 0 0 1 0.9984391 -0.03969073 -0.03929099 5.96046e-8 0.001094148 0.7172851 -0.6967788 0.3430771 0.0558385 0.6956484 0.716209 2.98023e-8 0 0 0 1 0.9984848 -0.04210506 -0.03542025 5.96046e-8 0.002264548 0.6746478 -0.7381362 0.3430771 0.05497545 0.7369379 0.6737212 2.98023e-8 0 0 0 1 0.9985654 -0.04469009 -0.02948927 5.96046e-8 0.004545309 0.6195274 -0.7849617 0.3430771 0.05334944 0.7837019 0.6188418 2.98023e-8 0 0 0 1 0.9986713 -0.04673806 -0.02169665 5.96046e-8 0.008369822 0.5626032 -0.8266845 0.3430771 0.05084423 0.8254046 0.5622471 2.98023e-8 0 0 0 1 0.998724 -0.04789301 -0.0160073 5.96046e-8 0.01088876 0.5137852 -0.8578497 0.3430771 0.04930932 0.856581 0.5136513 2.98023e-8 0 0 0 1 0.9987506 -0.0484177 -0.01236555 5.96046e-8 0.01234717 0.4788775 -0.8777948 0.3430771 0.0484224 0.8765454 0.478877 2.98023e-8 0 0 0 1 0.9987522 -0.04861271 -0.01142067 5.96046e-8 0.01237151 0.4624538 -0.8865571 0.3430771 0.04837948 0.8853096 0.4624784 2.98023e-8 0 0 0 1 0.9987324 -0.04866882 -0.01282691 5.96046e-8 0.01131374 0.4654201 -0.8850175 0.3430771 0.04904266 0.8837509 0.4653808 2.98023e-8 0 0 0 1 0.9987029 -0.04843822 -0.0156875 5.96046e-8 0.00997135 0.4882167 -0.8726654 0.3430771 0.04992926 0.8713772 0.4880664 2.98023e-8 0 0 0 1 0.998668 -0.04752149 -0.02008406 5.96046e-8 0.00846085 0.53488 -0.8448855 0.3430771 0.05089278 0.8435902 0.53457 2.98023e-8 0 0 0 1 0.9984991 -0.04642259 -0.02905677 5.96046e-8 0.003480606 0.5832765 -0.8122661 0.3430771 0.05465563 0.810946 0.5825627 2.98023e-8 0 0 0 1 0.9984738 -0.04371212 -0.03374752 5.96046e-8 0.002363857 0.6443774 -0.7647038 0.3430771 0.05517297 0.7634573 0.6434973 2.98023e-8 0 0 0 1 0.9984554 -0.04186799 -0.03652237 5.96046e-8 0.001698393 0.6800541 -0.7331599 0.3430771 0.05553311 0.7319656 0.6790748 2.98023e-8 0 0 0 1 0.9984455 -0.04091632 -0.03784979 5.96046e-8 0.001378641 0.6969839 -0.7170852 0.3430771 0.05572121 0.7159183 0.6959569 2.98023e-8 0 0 0 1 0.998435 -0.03996561 -0.03911349 5.96046e-8 0.001073223 0.7130126 -0.7011502 0.3430771 0.05591031 0.7000113 0.7119396 2.98023e-8 0 0 0 1 0.9984249 -0.03905094 -0.04027557 5.96046e-8 7.9168e-4 0.727674 -0.6859225 0.3430771 0.05609339 0.6848105 0.726559 2.98023e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftToeBase_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftToeBase_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftToeBase_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftToeBase_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftToeBase_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftToeBase_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftToeBase_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftToeBase_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftToeBase_pose_matrix-sampler\" target=\"mixamorig_LeftToeBase/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_LeftToe_End_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_LeftToe_End_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_LeftToe_End_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftToe_End_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftToe_End_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_LeftToe_End_pose_matrix-output-array\" count=\"1856\">0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1 0.9999999 -3.72529e-9 -3.46918e-7 -5.96046e-8 3.72529e-9 1 1.63913e-7 0.1364299 3.48315e-7 -1.63913e-7 0.9999999 -3.72529e-9 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftToe_End_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_LeftToe_End_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_LeftToe_End_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_LeftToe_End_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_LeftToe_End_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_LeftToe_End_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_LeftToe_End_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_LeftToe_End_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_LeftToe_End_pose_matrix-sampler\" target=\"mixamorig_LeftToe_End/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightUpLeg_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightUpLeg_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightUpLeg_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightUpLeg_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightUpLeg_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightUpLeg_pose_matrix-output-array\" count=\"1856\">-0.9956402 -0.09318601 -0.003625322 -0.2127781 0.07868089 -0.860256 0.5037541 -0.1033177 -0.05005834 0.5012733 0.8638381 0.002375036 0 0 0 1 -0.994418 -0.1050846 -0.009301107 -0.2127781 0.08500074 -0.8503279 0.5193428 -0.1033177 -0.06248075 0.515654 0.8545139 0.002375036 0 0 0 1 -0.992679 -0.1195194 -0.01732463 -0.2127781 0.09229931 -0.8433354 0.529401 -0.1033177 -0.07788099 0.523927 0.8481931 0.002375036 0 0 0 1 -0.9906855 -0.1332857 -0.02781143 -0.2127781 0.09830504 -0.8415202 0.5312055 -0.1033177 -0.09420284 0.5235245 0.8467851 0.002375036 0 0 0 1 -0.9887868 -0.1436599 -0.04073079 -0.2127781 0.1013914 -0.8461841 0.5231559 -0.1033177 -0.1096191 0.5131608 0.8512617 0.002375036 0 0 0 1 -0.985703 -0.1547867 -0.06653412 -0.2127781 0.1051086 -0.8735931 0.4751704 -0.1033177 -0.1316707 0.4613845 0.8773735 0.002375036 0 0 0 1 -0.9831756 -0.157861 -0.09188036 -0.2127781 0.1068835 -0.9051498 0.4114361 -0.1033177 -0.148112 0.3946944 0.9067944 0.002375036 0 0 0 1 -0.9816849 -0.1547298 -0.1111318 -0.2127781 0.1074775 -0.9314912 0.347523 -0.1033177 -0.1572873 0.3292147 0.9310616 0.002375036 0 0 0 1 -0.9816444 -0.1540392 -0.1124396 -0.2127781 0.1071225 -0.9331466 0.3431646 -0.1033177 -0.1577803 0.3248217 0.9325198 0.002375036 0 0 0 1 -0.9799173 -0.1533736 -0.1274178 -0.2127781 0.1128099 -0.953353 0.2799856 -0.1033177 -0.1644134 0.2599896 0.9515097 0.002375036 0 0 0 1 -0.9774376 -0.1573918 -0.1408553 -0.2127781 0.1240027 -0.9674608 0.2205507 -0.1033177 -0.1709817 0.198109 0.9651502 0.002375036 0 0 0 1 -0.9748961 -0.1635569 -0.1510729 -0.2127781 0.1363843 -0.9749944 0.1754567 -0.1033177 -0.1759893 0.150449 0.9728256 0.002375036 0 0 0 1 -0.972979 -0.1682605 -0.1581038 -0.2127781 0.1461432 -0.9789508 0.1424681 -0.1033177 -0.1787445 0.1155135 0.9770896 0.002375036 0 0 0 1 -0.9719086 -0.1702707 -0.1624752 -0.2127781 0.1518664 -0.9811202 0.1197481 -0.1033177 -0.1797942 0.09171058 0.9794185 0.002375036 0 0 0 1 -0.9715657 -0.1697734 -0.1650254 -0.2127781 0.1533251 -0.9822721 0.1078535 -0.1033177 -0.1804074 0.07948516 0.9803736 0.002375036 0 0 0 1 -0.9718392 -0.1663892 -0.1668517 -0.2127781 0.1502047 -0.9830186 0.1054178 -0.1033177 -0.1815557 0.07738808 0.9803294 0.002375036 0 0 0 1 -0.9727054 -0.1594659 -0.1685572 -0.2127781 0.1424179 -0.9838002 0.108878 -0.1033177 -0.1831858 0.08190146 0.9796593 0.002375036 0 0 0 1 -0.9740486 -0.1499679 -0.1695155 -0.2127781 0.1319969 -0.9848123 0.1127871 -0.1033177 -0.1838524 0.08748543 0.9790512 0.002375036 0 0 0 1 -0.9755962 -0.1407908 -0.1684829 -0.2127781 0.1225748 -0.9858812 0.1140755 -0.1033177 -0.1821619 0.09064063 0.9790803 0.002375036 0 0 0 1 -0.9773082 -0.1333057 -0.1646049 -0.2127781 0.1146087 -0.9863384 0.1183247 -0.1033177 -0.1781265 0.09677537 0.9792355 0.002375036 0 0 0 1 -0.9792805 -0.1292515 -0.1558851 -0.2127781 0.1080115 -0.9845522 0.1378042 -0.1033177 -0.1712853 0.1181123 0.9781144 0.002375036 0 0 0 1 -0.9815252 -0.1293054 -0.1410146 -0.2127781 0.1038912 -0.9791259 0.1746964 -0.1033177 -0.1606571 0.1568195 0.9744712 0.002375036 0 0 0 1 -0.9841638 -0.1295079 -0.1210194 -0.2127781 0.1013671 -0.9713159 0.2151029 -0.1033177 -0.1454025 0.1994298 0.9690629 0.002375036 0 0 0 1 -0.9872956 -0.1262596 -0.09644747 -0.2127781 0.0981176 -0.9619694 0.2549266 -0.1033177 -0.1249632 0.2422255 0.9621372 0.002375036 0 0 0 1 -0.9901084 -0.1218891 -0.06946247 -0.2127781 0.09523565 -0.9475188 0.3051848 -0.1033177 -0.1030126 0.2955515 0.949755 0.002375036 0 0 0 1 -0.9910789 -0.1256337 -0.04444437 -0.2127781 0.1007489 -0.9246697 0.3671987 -0.1033177 -0.08722579 0.3594459 0.9290785 0.002375036 0 0 0 1 -0.990493 -0.1338726 -0.03159129 -0.2127781 0.1083689 -0.9009479 0.4201766 -0.1033177 -0.08470909 0.4127594 0.9068907 0.002375036 0 0 0 1 -0.9892231 -0.1431619 -0.03063643 -0.2127781 0.1136597 -0.8828743 0.4556471 -0.1033177 -0.09227624 0.4472555 0.8896317 0.002375036 0 0 0 1 -0.9882396 -0.1484234 -0.03673732 -0.2127781 0.1131197 -0.8713514 0.4774414 -0.1033177 -0.1028715 0.4676716 0.8778939 0.002375036 0 0 0 1 -0.9882125 -0.1458446 -0.04649534 -0.2127781 0.1047458 -0.8657511 0.4893901 -0.1033177 -0.1116252 0.4787521 0.870823 0.002375036 0 0 0 1 -0.9884009 -0.1410631 -0.05622717 -0.2127781 0.09548032 -0.8652113 0.4922324 -0.1033177 -0.1180811 0.4811554 0.8686445 0.002375036 0 0 0 1 -0.9886171 -0.1342742 -0.06784646 -0.2127781 0.08566596 -0.873174 0.4798212 -0.1033177 -0.1236662 0.4685483 0.8747377 0.002375036 0 0 0 1 -0.9887012 -0.1262371 -0.08081196 -0.2127781 0.07653533 -0.8887519 0.4519534 -0.1033177 -0.1288719 0.4406628 0.8883723 0.002375036 0 0 0 1 -0.9886419 -0.1173298 -0.09390146 -0.2127781 0.06849081 -0.9079684 0.4134031 -0.1033177 -0.1337609 0.4022771 0.9056922 0.002375036 0 0 0 1 -0.9878702 -0.1134666 -0.1059923 -0.2127781 0.06703852 -0.9274077 0.3679956 -0.1033177 -0.1400501 0.3564271 0.9237657 0.002375036 0 0 0 1 -0.9858451 -0.1188696 -0.118219 -0.2127781 0.07675251 -0.9469416 0.3121058 -0.1033177 -0.1490432 0.2986152 0.9426621 0.002375036 0 0 0 1 -0.9825954 -0.1312014 -0.1314857 -0.2127781 0.09619344 -0.9649819 0.2440417 -0.1033177 -0.1588968 0.227147 0.9608083 0.002375036 0 0 0 1 -0.9793899 -0.1421821 -0.1434436 -0.2127781 0.1159655 -0.9773571 0.1769867 -0.1033177 -0.1653569 0.1567053 0.973703 0.002375036 0 0 0 1 -0.9781215 -0.1444088 -0.1497357 -0.2127781 0.1261123 -0.9840755 0.1252629 -0.1033177 -0.1654372 0.1036396 0.980758 0.002375036 0 0 0 1 -0.9791695 -0.1369777 -0.1498685 -0.2127781 0.123908 -0.9878913 0.09336492 -0.1033177 -0.1608396 0.07285096 0.9842868 0.002375036 0 0 0 1 -0.9805741 -0.12767 -0.1489006 -0.2127781 0.1169425 -0.9900121 0.07873953 -0.1033177 -0.157463 0.05979786 0.9857111 0.002375036 0 0 0 1 -0.9803785 -0.1250287 -0.1523882 -0.2127781 0.11378 -0.9902424 0.08046219 -0.1033177 -0.1609582 0.06154541 0.9850391 0.002375036 0 0 0 1 -0.9784886 -0.1290386 -0.1609506 -0.2127781 0.1145154 -0.988723 0.09650031 -0.1033177 -0.1715848 0.07599388 0.9822325 0.002375036 0 0 0 1 -0.9764343 -0.1321743 -0.1705951 -0.2127781 0.1122969 -0.9862347 0.1213672 -0.1033177 -0.1842853 0.0993505 0.9778371 0.002375036 0 0 0 1 -0.9758202 -0.1290181 -0.1764246 -0.2127781 0.1030464 -0.9834208 0.1492119 -0.1033177 -0.1927475 0.1274249 0.972938 0.002375036 0 0 0 1 -0.9771033 -0.1200803 -0.175631 -0.2127781 0.0885138 -0.9801015 0.1776682 -0.1033177 -0.1934675 0.1580551 0.9682902 0.002375036 0 0 0 1 -0.9796883 -0.1092395 -0.1681482 -0.2127781 0.07277068 -0.975097 0.2094988 -0.1033177 -0.1868432 0.193008 0.9632417 0.002375036 0 0 0 1 -0.9826943 -0.1026891 -0.1541534 -0.2127781 0.06110652 -0.9653893 0.2535537 -0.1033177 -0.174852 0.2397467 0.9549584 0.002375036 0 0 0 1 -0.9855428 -0.1037235 -0.1339522 -0.2127781 0.05664571 -0.9469125 0.316461 -0.1033177 -0.1596623 0.3042989 0.939099 0.002375036 0 0 0 1 -0.9877324 -0.1119524 -0.1088471 -0.2127781 0.06111406 -0.9186602 0.3902923 -0.1033177 -0.1436846 0.3788532 0.9142329 0.002375036 0 0 0 1 -0.9887162 -0.1260858 -0.08086544 -0.2127781 0.07587905 -0.8870631 0.4553688 -0.1033177 -0.1291452 0.4440953 0.8866216 0.002375036 0 0 0 1 -0.9885536 -0.1425052 -0.04950013 -0.2127781 0.09843959 -0.8579891 0.5041468 -0.1033177 -0.1143109 0.4935044 0.8621969 0.002375036 0 0 0 1 -0.9873238 -0.1583328 -0.01091072 -0.2127781 0.1262619 -0.8252673 0.550447 -0.1033177 -0.0961549 0.5420927 0.8347976 0.002375036 0 0 0 1 -0.9846044 -0.1721846 0.03005844 -0.2127781 0.1556014 -0.7851232 0.5994742 -0.1033177 -0.07961757 0.594923 0.7998277 0.002375036 0 0 0 1 -0.9805098 -0.18686 0.06066645 -0.2127781 0.1820657 -0.7482248 0.6379747 -0.1033177 -0.07381666 0.6365867 0.7676625 0.002375036 0 0 0 1 -0.9728404 -0.2153633 0.08483293 -0.2127781 0.2163804 -0.7159833 0.6637372 -0.1033177 -0.08220261 0.6640678 0.7431376 0.002375036 0 0 0 1 -0.965837 -0.2436381 0.08829491 -0.2127781 0.2385904 -0.703041 0.669931 -0.1033177 -0.1011427 0.6681116 0.7371526 0.002375036 0 0 0 1 -0.958362 -0.2761068 0.0728284 -0.2127781 0.2547421 -0.711452 0.6549366 -0.1033177 -0.1290156 0.6462201 0.7521645 0.002375036 0 0 0 1 -0.9494235 -0.3111253 0.04233699 -0.2127781 0.268401 -0.734182 0.6236484 -0.1033177 -0.1629468 0.6034713 0.7805561 0.002375036 0 0 0 1 -0.9399173 -0.3413928 0.001775231 -0.2127781 0.2785061 -0.7637494 0.5823408 -0.1033177 -0.1974482 0.5478481 0.8129413 0.002375036 0 0 0 1 -0.9299007 -0.3655423 -0.04074189 -0.2127781 0.2881502 -0.7928699 0.5369602 -0.1033177 -0.2285819 0.4875816 0.8426217 0.002375036 0 0 0 1 -0.920364 -0.382817 -0.07985939 -0.2127781 0.2985925 -0.8198053 0.4886323 -0.1033177 -0.2525231 0.4258758 0.8688262 0.002375036 0 0 0 1 -0.9131777 -0.3921551 -0.1109822 -0.2127781 0.308754 -0.8434058 0.4397008 -0.1033177 -0.2660311 0.3672605 0.8912597 0.002375036 0 0 0 1 -0.907934 -0.3974882 -0.1328736 -0.2127781 0.3206718 -0.8629826 0.3904229 -0.1033177 -0.2698533 0.3118711 0.9109954 0.002375036 0 0 0 1 -0.9052704 -0.3967807 -0.1518113 -0.2127781 0.3296217 -0.8814501 0.3382224 -0.1033177 -0.2680115 0.256144 0.9287394 0.002375036 0 0 0 1 -0.9043818 -0.3929791 -0.1663051 -0.2127781 0.3371387 -0.8969375 0.2860766 -0.1033177 -0.2615846 0.2026562 0.9436636 0.002375036 0 0 0 1 -0.9066632 -0.3846543 -0.1732038 -0.2127781 0.3386553 -0.9084927 0.2448536 -0.1033177 -0.2515356 0.1633449 0.9539629 0.002375036 0 0 0 1 -0.9090659 -0.3767956 -0.1778218 -0.2127781 0.3389485 -0.9170001 0.2102961 -0.1033177 -0.2422984 0.1309021 0.9613287 0.002375036 0 0 0 1 -0.9076101 -0.3753253 -0.1880723 -0.2127781 0.3436744 -0.9215618 0.1805865 -0.1033177 -0.2410962 0.09926803 0.9654095 0.002375036 0 0 0 1 -0.9019095 -0.3801081 -0.2051186 -0.2127781 0.3533235 -0.9224349 0.1558087 -0.1033177 -0.2484299 0.06805362 0.9662546 0.002375036 0 0 0 1 -0.896454 -0.3846896 -0.2199557 -0.2127781 0.362336 -0.9220823 0.1359279 -0.1033177 -0.2551046 0.04215676 0.9659925 0.002375036 0 0 0 1 -0.8951054 -0.3848923 -0.2250346 -0.2127781 0.3656973 -0.9225346 0.1232667 -0.1033177 -0.255044 0.02804364 0.966521 0.002375036 0 0 0 1 -0.8960457 -0.3841599 -0.2225304 -0.2127781 0.3658608 -0.9228957 0.1200372 -0.1033177 -0.2514831 0.02614524 0.9675069 0.002375036 0 0 0 1 -0.8958892 -0.3871042 -0.2180132 -0.2127781 0.3672201 -0.9214174 0.1270401 -0.1033177 -0.2500561 0.03375661 0.9676413 0.002375036 0 0 0 1 -0.894554 -0.3929768 -0.2129298 -0.2127781 0.3690232 -0.918164 0.1442089 -0.1033177 -0.2521726 0.05042822 0.9663658 0.002375036 0 0 0 1 -0.8943804 -0.3975526 -0.2050172 -0.2127781 0.3676991 -0.9144359 0.1691268 -0.1033177 -0.2547092 0.07588072 0.9640344 0.002375036 0 0 0 1 -0.8975589 -0.3971909 -0.1913738 -0.2127781 0.3605108 -0.911052 0.2000391 -0.1033177 -0.2538025 0.1105561 0.9609154 0.002375036 0 0 0 1 -0.9043939 -0.391383 -0.1699635 -0.2127781 0.3476093 -0.9068049 0.2384786 -0.1033177 -0.2474575 0.1565993 0.9561582 0.002375036 0 0 0 1 -0.9133335 -0.3820416 -0.1409337 -0.2127781 0.3317426 -0.8987945 0.2865568 -0.1033177 -0.2361442 0.2149698 0.9476395 0.002375036 0 0 0 1 -0.9226815 -0.3698371 -0.108976 -0.2127781 0.3151368 -0.8862469 0.3394919 -0.1033177 -0.2221335 0.2789022 0.9342735 0.002375036 0 0 0 1 -0.9315621 -0.3543063 -0.08158284 -0.2127781 0.2980618 -0.8727177 0.3866815 -0.1033177 -0.2081996 0.3359027 0.9185963 0.002375036 0 0 0 1 -0.9395564 -0.3364927 -0.06326881 -0.2127781 0.2798397 -0.8611607 0.4243718 -0.1033177 -0.1972797 0.3810176 0.9032736 0.002375036 0 0 0 1 -0.9463199 -0.318636 -0.05427855 -0.2127781 0.2599728 -0.8501071 0.4579647 -0.1033177 -0.1920637 0.4192716 0.8873104 0.002375036 0 0 0 1 -0.9511372 -0.304028 -0.05386494 -0.2127781 0.2399645 -0.8376495 0.4906729 -0.1033177 -0.1942953 0.453773 0.8696761 0.002375036 0 0 0 1 -0.9528683 -0.2972454 -0.06069156 -0.2127781 0.224518 -0.8254676 0.517875 -0.1033177 -0.2040319 0.4798416 0.8532993 0.002375036 0 0 0 1 -0.9513075 -0.2997653 -0.07177146 -0.2127781 0.2177042 -0.8182645 0.5320221 -0.1033177 -0.2182069 0.4904931 0.8436818 0.002375036 0 0 0 1 -0.9482569 -0.3060896 -0.08434562 -0.2127781 0.2178771 -0.8205756 0.5283791 -0.1033177 -0.2309405 0.4826637 0.8448069 0.002375036 0 0 0 1 -0.9456913 -0.3101445 -0.09733879 -0.2127781 0.2212723 -0.8335636 0.5061719 -0.1033177 -0.2381216 0.4571453 0.8569207 0.002375036 0 0 0 1 -0.943202 -0.3132738 -0.1105714 -0.2127781 0.2280919 -0.8526485 0.4700682 -0.1033177 -0.2415357 0.4181502 0.8756756 0.002375036 0 0 0 1 -0.9389466 -0.320703 -0.1245999 -0.2127781 0.2407053 -0.8710693 0.428134 -0.1033177 -0.2458361 0.3720046 0.8950832 0.002375036 0 0 0 1 -0.9322397 -0.3338561 -0.1395195 -0.2127781 0.2593899 -0.8854505 0.3856079 -0.1033177 -0.2522723 0.3232905 0.9120519 0.002375036 0 0 0 1 -0.9255893 -0.3446411 -0.1565347 -0.2127781 0.2766832 -0.8982115 0.3415586 -0.1033177 -0.2583135 0.272834 0.9267323 0.002375036 0 0 0 1 -0.9208409 -0.3485778 -0.1747617 -0.2127781 0.291593 -0.9131329 0.2848876 -0.1033177 -0.2588834 0.2113783 0.9424944 0.002375036 0 0 0 1 -0.9188597 -0.3450516 -0.191397 -0.2127781 0.3048646 -0.9287727 0.2108036 -0.1033177 -0.2504997 0.1353501 0.9586067 0.002375036 0 0 0 1 -0.9196945 -0.3370209 -0.2014328 -0.2127781 0.3147998 -0.9395536 0.1346841 -0.1033177 -0.2346454 0.06045868 0.9701974 0.002375036 0 0 0 1 -0.9207299 -0.3330899 -0.2032336 -0.2127781 0.3229893 -0.9428428 0.08200362 -0.1033177 -0.2189291 0.009862289 0.9756893 0.002375036 0 0 0 1 -0.9168178 -0.3432948 -0.2039365 -0.2127781 0.3382764 -0.9391246 0.06011236 -0.1033177 -0.2121553 -0.01387346 0.9771358 0.002375036 0 0 0 1 -0.9057588 -0.3669856 -0.2119411 -0.2127781 0.3629774 -0.929929 0.05898304 -0.1033177 -0.2187333 -0.02350397 0.9755002 0.002375036 0 0 0 1 -0.8904982 -0.3952488 -0.2253615 -0.2127781 0.3912281 -0.9180507 0.06421117 -0.1033177 -0.2322699 -0.03098629 0.9721563 0.002375036 0 0 0 1 -0.8782983 -0.4162141 -0.235274 -0.2127781 0.4121572 -0.9085248 0.06861834 -0.1033177 -0.2423096 -0.03670092 0.9695029 0.002375036 0 0 0 1 -0.8745193 -0.4243751 -0.2347723 -0.2127781 0.419637 -0.9048008 0.07238744 -0.1033177 -0.243139 -0.03521331 0.9693505 0.002375036 0 0 0 1 -0.8776519 -0.4228698 -0.2256206 -0.2127781 0.4160798 -0.9058641 0.07929114 -0.1033177 -0.2379089 -0.02428455 0.9709821 0.002375036 0 0 0 1 -0.8819964 -0.41934 -0.2150183 -0.2127781 0.4085064 -0.9078188 0.09480027 -0.1033177 -0.2349485 -0.004221238 0.9719973 0.002375036 0 0 0 1 -0.8842878 -0.4183506 -0.2073982 -0.2127781 0.4011773 -0.9079731 0.1210003 -0.1033177 -0.2389299 0.02379731 0.9707435 0.002375036 0 0 0 1 -0.8866668 -0.4169284 -0.1999729 -0.2127781 0.3911034 -0.9069071 0.1567075 -0.1033177 -0.24669 0.06073887 0.9671875 0.002375036 0 0 0 1 -0.8932063 -0.4093382 -0.186068 -0.2127781 0.3726934 -0.9054914 0.2029397 -0.1033177 -0.2515513 0.1119224 0.9613492 0.002375036 0 0 0 1 -0.9045191 -0.3951611 -0.1602785 -0.2127781 0.3459468 -0.8997578 0.2660007 -0.1033177 -0.2493221 0.1851565 0.9505539 0.002375036 0 0 0 1 -0.9179078 -0.3772598 -0.122951 -0.2127781 0.3162569 -0.8827353 0.3475052 -0.1033177 -0.2396301 0.2800952 0.9295811 0.002375036 0 0 0 1 -0.9332593 -0.3496181 -0.0824061 -0.2127781 0.2839702 -0.8586138 0.426782 -0.1033177 -0.2199629 0.3748989 0.900591 0.002375036 0 0 0 1 -0.9534661 -0.2974583 -0.0491695 -0.2127781 0.2405076 -0.8487592 0.4709185 -0.1033177 -0.1818087 0.4371806 0.8808042 0.002375036 0 0 0 1 -0.9764345 -0.2144503 -0.02414159 -0.2127781 0.1786615 -0.8660465 0.4669508 -0.1033177 -0.1210424 0.4516349 0.8839523 0.002375036 0 0 0 1 -0.9903777 -0.1382232 -0.006574914 -0.2127781 0.120119 -0.8823053 0.4550917 -0.1033177 -0.06870212 0.4499237 0.8904187 0.002375036 0 0 0 1 -0.9944679 -0.1050205 -7.76622e-4 -0.2127781 0.09297288 -0.8837742 0.4585832 -0.1033177 -0.04884379 0.4559748 0.8886496 0.002375036 0 0 0 1 -0.9960241 -0.08905762 0.001045894 -0.2127781 0.07910366 -0.8791769 0.4698832 -0.1033177 -0.04092394 0.4680985 0.8827263 0.002375036 0 0 0 1 -0.9962231 -0.08681021 -1.11666e-4 -0.2127781 0.07581357 -0.8706487 0.4860274 -0.1033177 -0.04228615 0.484184 0.873942 0.002375036 0 0 0 1 -0.9956402 -0.09318601 -0.003625322 -0.2127781 0.07868089 -0.860256 0.5037541 -0.1033177 -0.05005834 0.5012733 0.8638381 0.002375036 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightUpLeg_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightUpLeg_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightUpLeg_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightUpLeg_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightUpLeg_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightUpLeg_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightUpLeg_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightUpLeg_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightUpLeg_pose_matrix-sampler\" target=\"mixamorig_RightUpLeg/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightLeg_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightLeg_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightLeg_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightLeg_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightLeg_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightLeg_pose_matrix-output-array\" count=\"1856\">0.9872048 0.1253448 -0.09856477 -2.98023e-8 0.04922797 0.34836 0.9360676 0.8919234 0.1516672 -0.9289424 0.3377323 -1.19209e-7 0 0 0 1 0.9856842 0.1195018 -0.1189352 -2.98023e-8 0.06885081 0.3586245 0.9309394 0.8919234 0.153902 -0.9258014 0.3452627 -1.19209e-7 0 0 0 1 0.9840054 0.1125642 -0.1380664 -2.98023e-8 0.08552738 0.3813477 0.9204668 0.8919234 0.1562629 -0.917553 0.3656209 -1.19209e-7 0 0 0 1 0.9826056 0.1046241 -0.1534263 -2.98023e-8 0.09655254 0.4179107 0.903343 0.8919234 0.15863 -0.9024439 0.4005395 -1.19209e-7 0 0 0 1 0.9820786 0.09577201 -0.1623252 -2.98023e-8 0.09951903 0.467902 0.8781593 0.8919234 0.1600554 -0.8785758 0.4499852 -1.19209e-7 0 0 0 1 0.9837961 0.08082968 -0.1600357 -2.98023e-8 0.08498758 0.575711 0.8132244 0.8919234 0.157867 -0.8136482 0.5595127 -1.19209e-7 0 0 0 1 0.9851511 0.06709901 -0.1580338 -2.98023e-8 0.07448815 0.6622838 0.7455413 0.8919234 0.1546883 -0.7462426 0.6474516 -1.19209e-7 0 0 0 1 0.9859478 0.06403701 -0.1542919 -2.98023e-8 0.06507879 0.7034057 0.7078032 0.8919234 0.1538555 -0.7078981 0.6893538 -1.19209e-7 0 0 0 1 0.9859753 0.06411062 -0.1540853 -2.98023e-8 0.06456752 0.7048377 0.7064242 0.8919234 0.1538944 -0.7064657 0.6908132 -1.19209e-7 0 0 0 1 0.9865988 0.06642878 -0.1490277 -2.98023e-8 0.05638167 0.7183028 0.6934422 0.8919234 0.1531116 -0.692552 0.7049315 -1.19209e-7 0 0 0 1 0.9865472 0.07285717 -0.1463425 -2.98023e-8 0.05036881 0.7161728 0.6961036 0.8919234 0.1555226 -0.6941103 0.7028685 -1.19209e-7 0 0 0 1 0.9861746 0.0818202 -0.1441001 -2.98023e-8 0.04422589 0.708099 0.7047274 0.8919234 0.159698 -0.7013573 0.6946907 -1.19209e-7 0 0 0 1 0.9855052 0.0928877 -0.1419539 -2.98023e-8 0.03666146 0.7003885 0.7128198 0.8919234 0.1656351 -0.7076921 0.6868312 -1.19209e-7 0 0 0 1 0.9846854 0.1044224 -0.1396085 -2.98023e-8 0.02820706 0.6948079 0.7186421 0.8919234 0.1720435 -0.7115744 0.6812217 -1.19209e-7 0 0 0 1 0.9841543 0.1124537 -0.1370926 -2.98023e-8 0.0214123 0.6921325 0.7214531 0.8919234 0.1760163 -0.7129566 0.6787574 -1.19209e-7 0 0 0 1 0.9843885 0.1127385 -0.1351624 -2.98023e-8 0.01941073 0.6937116 0.7199913 0.8919234 0.1749345 -0.711375 0.6806934 -1.19209e-7 0 0 0 1 0.9852688 0.1050164 -0.1349692 -2.98023e-8 0.02279497 0.7015461 0.7122595 0.8919234 0.1694861 -0.7048436 0.6888177 -1.19209e-7 0 0 0 1 0.9862508 0.09368869 -0.1361299 -2.98023e-8 0.02851804 0.7149108 0.6986341 0.8919234 0.1627749 -0.6929109 0.7024096 -1.19209e-7 0 0 0 1 0.9875336 0.08193451 -0.1344009 -2.98023e-8 0.03241912 0.7296689 0.683032 0.8919234 0.154032 -0.6788744 0.7179165 -1.19209e-7 0 0 0 1 0.9885018 0.0744405 -0.1316148 -2.98023e-8 0.03444811 0.7366663 0.6753789 0.8919234 0.1472317 -0.6721474 0.7256316 -1.19209e-7 0 0 0 1 0.9890655 0.0737661 -0.1277006 -2.98023e-8 0.03455957 0.7258668 0.6869668 0.8919234 0.1433685 -0.6838687 0.7153805 -1.19209e-7 0 0 0 1 0.9890245 0.07976751 -0.124368 -2.98023e-8 0.03454412 0.6935747 0.7195559 0.8919234 0.1436557 -0.7159548 0.6832069 -1.19209e-7 0 0 0 1 0.9880174 0.09107278 -0.1246066 -2.98023e-8 0.03656065 0.6462653 0.7622367 0.8919234 0.1499479 -0.7576592 0.6351916 -1.19209e-7 0 0 0 1 0.9861019 0.1062081 -0.1277591 -2.98023e-8 0.0400201 0.5944929 0.8031044 0.8919234 0.161248 -0.797056 0.5819802 -1.19209e-7 0 0 0 1 0.9842193 0.1205802 -0.1295088 -2.98023e-8 0.04310378 0.5464702 0.8363687 0.8919234 0.1716223 -0.8287526 0.5326489 -1.19209e-7 0 0 0 1 0.9829603 0.1287 -0.1312443 -2.98023e-8 0.04694294 0.5145618 0.8561673 0.8919234 0.1777221 -0.8477397 0.4997522 -1.19209e-7 0 0 0 1 0.9830243 0.1281859 -0.1312673 -2.98023e-8 0.04868848 0.5075468 0.8602475 0.8919234 0.1768959 -0.8520358 0.4926898 -1.19209e-7 0 0 0 1 0.9856943 0.1178533 -0.1204872 -2.98023e-8 0.04015917 0.5300587 0.8470097 0.8919234 0.1636882 -0.8397315 0.5177429 -1.19209e-7 0 0 0 1 0.9887548 0.1020851 -0.1092816 -2.98023e-8 0.0305388 0.5775251 0.8158016 0.8919234 0.1463941 -0.8099652 0.567913 -1.19209e-7 0 0 0 1 0.9884291 0.08881006 -0.1229641 -2.98023e-8 0.0383325 0.6381031 0.7689965 0.8919234 0.1467584 -0.7648123 0.6273154 -1.19209e-7 0 0 0 1 0.9882146 0.07501587 -0.1334319 -2.98023e-8 0.04285683 0.7012352 0.7116408 0.8919234 0.1469515 -0.7089725 0.689756 -1.19209e-7 0 0 0 1 0.9901273 0.05665922 -0.1282079 -2.98023e-8 0.04071049 0.7589939 0.6498238 0.8919234 0.1341276 -0.6486279 0.749194 -1.19209e-7 0 0 0 1 0.9910628 0.04148473 -0.1267806 -2.98023e-8 0.04164506 0.8066886 0.589508 0.8919234 0.126728 -0.5895193 0.7977514 -1.19209e-7 0 0 0 1 0.9911031 0.03363851 -0.1287743 -2.98023e-8 0.04279516 0.835613 0.5476494 0.8919234 0.1260276 -0.5482882 0.826739 -1.19209e-7 0 0 0 1 0.9908491 0.03172401 -0.1311922 -2.98023e-8 0.04489989 0.8391572 0.5420326 0.8919234 0.1272863 -0.5429631 0.8300537 -1.19209e-7 0 0 0 1 0.9904948 0.03730848 -0.1323928 -2.98023e-8 0.04540106 0.8198926 0.5707144 0.8919234 0.1298404 -0.5713004 0.8104055 -1.19209e-7 0 0 0 1 0.9897086 0.05195327 -0.1333319 -2.98023e-8 0.04102726 0.7896222 0.6122203 0.8919234 0.1370887 -0.6113901 0.7793645 -1.19209e-7 0 0 0 1 0.9883643 0.07150114 -0.1342503 -2.98023e-8 0.03365832 0.7579305 0.6514667 0.8919234 0.148333 -0.6484053 0.7467048 -1.19209e-7 0 0 0 1 0.9873724 0.08797895 -0.13174 -2.98023e-8 0.02618498 0.7295289 0.6834491 0.8919234 0.1562372 -0.6782684 0.7180129 -1.19209e-7 0 0 0 1 0.986278 0.100102 -0.1312818 -2.98023e-8 0.02309496 0.7037271 0.710095 0.8919234 0.1634685 -0.7033831 0.6917588 -1.19209e-7 0 0 0 1 0.9855915 0.1050132 -0.1325938 -2.98023e-8 0.02548765 0.6827622 0.7301961 0.8919234 0.1672103 -0.7230546 0.6702483 -1.19209e-7 0 0 0 1 0.9862242 0.09925372 -0.1323271 -2.98023e-8 0.0324556 0.6683166 0.7431689 0.8919234 0.1621987 -0.7372261 0.6558886 -1.19209e-7 0 0 0 1 0.9878081 0.08296831 -0.1317216 -2.98023e-8 0.04406914 0.6624918 0.747772 0.8919234 0.1493058 -0.7444604 0.6507585 -1.19209e-7 0 0 0 1 0.9890553 0.06125213 -0.1342275 -2.98023e-8 0.05925397 0.668263 0.7415619 0.8919234 0.1351215 -0.7413995 0.6573197 -1.19209e-7 0 0 0 1 0.9894119 0.04122773 -0.1391541 -2.98023e-8 0.0734395 0.6847708 0.7250488 0.8919234 0.1251807 -0.7275916 0.6744927 -1.19209e-7 0 0 0 1 0.9898774 0.02620907 -0.1394837 -2.98023e-8 0.0798515 0.7096392 0.7000257 0.8919234 0.1173302 -0.7040776 0.700363 -1.19209e-7 0 0 0 1 0.9900712 0.01848242 -0.1393461 -2.98023e-8 0.08075415 0.7366182 0.6714708 0.8919234 0.1150553 -0.676057 0.7278116 -1.19209e-7 0 0 0 1 0.9903187 0.01767426 -0.1376814 -2.98023e-8 0.07717904 0.7543095 0.6519668 0.8919234 0.1153775 -0.6562813 0.7456427 -1.19209e-7 0 0 0 1 0.9908016 0.02425865 -0.133131 -2.98023e-8 0.06983124 0.7510377 0.6565564 0.8919234 0.1159136 -0.659814 0.7424351 -1.19209e-7 0 0 0 1 0.9911162 0.04075102 -0.1266013 -2.98023e-8 0.05837547 0.7220182 0.6894075 0.8919234 0.1195025 -0.6906735 0.713225 -1.19209e-7 0 0 0 1 0.9902496 0.06642013 -0.1224489 -2.98023e-8 0.04657644 0.6705555 0.7403959 0.8919234 0.131286 -0.7388801 0.6609238 -1.19209e-7 0 0 0 1 0.9873913 0.09808727 -0.1242463 -2.98023e-8 0.03981599 0.6057655 0.7946465 0.8919234 0.1532089 -0.789574 0.5942221 -1.19209e-7 0 0 0 1 0.9836671 0.1299424 -0.1245534 -2.98023e-8 0.03662432 0.5330111 0.8453155 0.8919234 0.1762307 -0.836071 0.5195464 -1.19209e-7 0 0 0 1 0.9789718 0.155003 -0.1326198 -2.98023e-8 0.04666927 0.462694 0.885289 0.8919234 0.1985848 -0.8728623 0.4457305 -1.19209e-7 0 0 0 1 0.9769076 0.1659634 -0.134564 -2.98023e-8 0.05604196 0.4087156 0.9109395 0.8919234 0.206181 -0.8974451 0.3899764 -1.19209e-7 0 0 0 1 0.9733385 0.1713302 -0.1525051 -2.98023e-8 0.07687702 0.3827478 0.9206489 0.8919234 0.2161059 -0.9078273 0.3593717 -1.19209e-7 0 0 0 1 0.9739637 0.1715171 -0.1482441 -2.98023e-8 0.0737119 0.3787893 0.9225428 0.8919234 0.2143852 -0.9094508 0.3562842 -1.19209e-7 0 0 0 1 0.9745745 0.1670968 -0.149274 -2.98023e-8 0.06830625 0.4129363 0.9081951 0.8919234 0.2133971 -0.8953003 0.3910235 -1.19209e-7 0 0 0 1 0.9763511 0.1534601 -0.1522767 -2.98023e-8 0.06191524 0.4763755 0.8770596 0.8919234 0.2071345 -0.8657464 0.4556081 -1.19209e-7 0 0 0 1 0.9794034 0.132941 -0.1519712 -2.98023e-8 0.05436378 0.5512432 0.8325719 0.8919234 0.194456 -0.8236855 0.5326622 -1.19209e-7 0 0 0 1 0.9859164 0.1050488 -0.130128 -2.98023e-8 0.0378455 0.6177709 0.7854471 0.8919234 0.1628996 -0.77931 0.6050948 -1.19209e-7 0 0 0 1 0.9911417 0.07957275 -0.1063297 -2.98023e-8 0.02673245 0.6647087 0.7466246 0.8919234 0.1300892 -0.7428533 0.6566933 -1.19209e-7 0 0 0 1 0.9945607 0.06516712 -0.08125199 -2.98023e-8 0.01492284 0.6828918 0.7303674 0.8919234 0.1030822 -0.7276073 0.678205 -1.19209e-7 0 0 0 1 0.9964123 0.06166305 -0.05796404 -2.98023e-8 9.8877e-4 0.6763858 0.7365471 0.8919234 0.08462381 -0.7339621 0.6738981 -1.19209e-7 0 0 0 1 0.9974911 0.06090696 -0.03607595 -2.98023e-8 -0.0123611 0.6516578 0.7584124 0.8919234 0.06970178 -0.7560638 0.6507757 -1.19209e-7 0 0 0 1 0.9979085 0.06078055 -0.02200136 -2.98023e-8 -0.02007137 0.6149021 0.7883482 0.8919234 0.06144493 -0.7862577 0.6148361 -1.19209e-7 0 0 0 1 0.9979722 0.06309611 -0.008351445 -2.98023e-8 -0.02828848 0.5572695 0.8298498 0.8919234 0.05701432 -0.827931 0.5579244 -1.19209e-7 0 0 0 1 0.997924 0.06440096 -2.06083e-4 -2.98023e-8 -0.0316219 0.4927795 0.8695797 0.8919234 0.05610331 -0.8677683 0.4937928 -1.19209e-7 0 0 0 1 0.9982119 0.05974083 -0.001881503 -2.98023e-8 -0.02412072 0.4314362 0.9018209 0.8919234 0.05468731 -0.9001632 0.4321058 -1.19209e-7 0 0 0 1 0.9986104 0.0509593 -0.01342608 -2.98023e-8 -0.007126316 0.3830166 0.923714 0.8919234 0.05221424 -0.922335 0.3828473 -1.19209e-7 0 0 0 1 0.9987283 0.04494769 -0.02282522 -2.98023e-8 0.005392395 0.3549287 0.934878 0.8919234 0.05012194 -0.9338125 0.3542348 -1.19209e-7 0 0 0 1 0.9986485 0.0469571 -0.02227331 -2.98023e-8 0.004421458 0.3502495 0.9366463 0.8919234 0.0517834 -0.9354788 0.3495685 -1.19209e-7 0 0 0 1 0.9983127 0.05517311 -0.01809146 -2.98023e-8 -0.00346382 0.3676154 0.9299719 0.8919234 0.05796012 -0.9283401 0.3671862 -1.19209e-7 0 0 0 1 0.997781 0.06387338 -0.01878715 -2.98023e-8 -0.008443628 0.4012969 0.9159092 0.8919234 0.06604145 -0.9137183 0.4009458 -1.19209e-7 0 0 0 1 0.9972592 0.06944253 -0.02551903 -2.98023e-8 -0.007814001 0.4418669 0.897047 0.8919234 0.07356918 -0.8943892 0.4411986 -1.19209e-7 0 0 0 1 0.9968475 0.07210971 -0.03309155 -2.98023e-8 -0.005585749 0.4798341 0.8773416 0.8919234 0.07914332 -0.874391 0.4787242 -1.19209e-7 0 0 0 1 0.9966069 0.07449932 -0.03499097 -2.98023e-8 -0.007515591 0.5057174 0.8626667 0.8919234 0.08196361 -0.8594767 0.5045611 -1.19209e-7 0 0 0 1 0.9964811 0.07906161 -0.02783092 -2.98023e-8 -0.01656165 0.5112232 0.8592886 0.8919234 0.08216457 -0.855804 0.5107335 -1.19209e-7 0 0 0 1 0.9962283 0.08553786 -0.01454924 -2.98023e-8 -0.02932137 0.4897115 0.8713914 0.8919234 0.08166188 -0.8676785 0.4903726 -1.19209e-7 0 0 0 1 0.995901 0.09042747 -0.001925536 -2.98023e-8 -0.03816908 0.4394758 0.8974433 0.8919234 0.08199977 -0.8936914 0.4411258 -1.19209e-7 0 0 0 1 0.9959486 0.08964736 0.007033758 -2.98023e-8 -0.03962104 0.3672635 0.9292728 0.8919234 0.08072362 -0.9257869 0.3693273 -1.19209e-7 0 0 0 1 0.9965804 0.08133346 0.01457071 -2.98023e-8 -0.03731121 0.2856199 0.9576167 0.8919234 0.07372462 -0.9548858 0.2876776 -1.19209e-7 0 0 0 1 0.9975592 0.0663987 0.02160131 -2.98023e-8 -0.03507366 0.2090006 0.9772865 0.8919234 0.0603759 -0.9756588 0.2108192 -1.19209e-7 0 0 0 1 0.9985305 0.04768646 0.02574238 -2.98023e-8 -0.03270665 0.1515629 0.9879065 0.8919234 0.04320818 -0.9872968 0.1528998 -1.19209e-7 0 0 0 1 0.9992607 0.02887542 0.02537544 -2.98023e-8 -0.02874471 0.1229832 0.9919925 0.8919234 0.02552345 -0.9919887 0.1237222 -1.19209e-7 0 0 0 1 0.9996384 0.01283274 0.02362813 -2.98023e-8 -0.0250718 0.1273711 0.9915384 0.8919234 0.009714633 -0.9917722 0.1276465 -1.19209e-7 0 0 0 1 0.9996101 7.04736e-4 0.02790438 -2.98023e-8 -0.02764539 0.1631666 0.9862112 0.8919234 -0.003858052 -0.9865984 0.1631224 -1.19209e-7 0 0 0 1 0.9989386 -0.007781766 0.04539696 -2.98023e-8 -0.04245166 0.226826 0.9730099 0.8919234 -0.01786892 -0.9739045 0.2262547 -1.19209e-7 0 0 0 1 0.9969894 -0.01352907 0.07634947 -2.98023e-8 -0.06842887 0.3095614 0.9484143 0.8919234 -0.036466 -0.9507833 0.3077036 -1.19209e-7 0 0 0 1 0.9934186 -0.01740214 0.1132093 -2.98023e-8 -0.09711206 0.3961103 0.9130533 0.8919234 -0.06073239 -0.9180382 0.3918133 -1.19209e-7 0 0 0 1 0.9889889 -0.01903761 0.146759 -2.98023e-8 -0.1206057 0.4710098 0.8738446 0.8919234 -0.0857608 -0.8819227 0.4635274 -1.19209e-7 0 0 0 1 0.9876483 -0.0140697 0.1560522 -2.98023e-8 -0.1262675 0.5182342 0.8458666 0.8919234 -0.0927726 -0.8551235 0.5100565 -1.19209e-7 0 0 0 1 0.987377 -0.003323168 0.1583519 -2.98023e-8 -0.1311257 0.5436271 0.829021 0.8919234 -0.08883932 -0.8393204 0.5363292 -1.19209e-7 0 0 0 1 0.9869248 0.01296138 0.160658 -2.98023e-8 -0.1406898 0.5556409 0.8194326 0.8919234 -0.07864718 -0.8313214 0.5501993 -1.19209e-7 0 0 0 1 0.9861944 0.03292044 0.1622852 -2.98023e-8 -0.1534802 0.5496238 0.8211929 0.8919234 -0.06216179 -0.8347636 0.5470885 -1.19209e-7 0 0 0 1 0.9854445 0.05145428 0.1620221 -2.98023e-8 -0.165186 0.5149575 0.8411496 0.8919234 -0.04015376 -0.8556701 0.5159616 -1.19209e-7 0 0 0 1 0.9876097 0.06434423 0.1431303 -2.98023e-8 -0.1565869 0.4641783 0.8717909 0.8919234 -0.01034324 -0.8834018 0.4685026 -1.19209e-7 0 0 0 1 0.9928413 0.07138862 0.09575807 -2.98023e-8 -0.1168212 0.4134326 0.9030098 0.8919234 0.0248751 -0.9077322 0.4188126 -1.19209e-7 0 0 0 1 0.9960886 0.07303369 0.0497305 -2.98023e-8 -0.07368519 0.376018 0.9236783 0.8919234 0.04876008 -0.9237299 0.3799286 -1.19209e-7 0 0 0 1 0.9969716 0.07500249 0.02054022 -2.98023e-8 -0.04610676 0.3574158 0.9328067 0.8919234 0.06262142 -0.9309291 0.3597915 -1.19209e-7 0 0 0 1 0.9966052 0.08155002 0.01128571 -2.98023e-8 -0.0398545 0.3579504 0.9328898 0.8919234 0.07203747 -0.9301727 0.3599853 -1.19209e-7 0 0 0 1 0.9957215 0.09167725 0.01154922 -2.98023e-8 -0.04542226 0.3767863 0.925186 0.8919234 0.08046694 -0.9217526 0.3793384 -1.19209e-7 0 0 0 1 0.9949203 0.1005051 0.005675398 -2.98023e-8 -0.04664692 0.410339 0.9107394 0.8919234 0.08920515 -0.9063779 0.4129426 -1.19209e-7 0 0 0 1 0.9944192 0.1044427 -0.01489501 -2.98023e-8 -0.03421088 0.4527916 0.8909601 0.8919234 0.09979863 -0.8854784 0.4538376 -1.19209e-7 0 0 0 1 0.9935485 0.1039782 -0.04527052 -2.98023e-8 -0.0124703 0.4969396 0.8676959 0.8919234 0.1127181 -0.8615336 0.4950303 -1.19209e-7 0 0 0 1 0.9920486 0.1021241 -0.0735516 -2.98023e-8 0.007669296 0.5342798 0.845273 0.8919234 0.1256199 -0.8391161 0.5292482 -1.19209e-7 0 0 0 1 0.9905651 0.1015748 -0.091994 -2.98023e-8 0.02009369 0.5563788 0.830686 0.8919234 0.1355602 -0.8246974 0.5490883 -1.19209e-7 0 0 0 1 0.989233 0.10382 -0.1031465 -2.98023e-8 0.02816573 0.5565662 0.8303258 0.8919234 0.1436123 -0.8242911 0.5476494 -1.19209e-7 0 0 0 1 0.9874592 0.1100592 -0.1131847 -2.98023e-8 0.03717634 0.5346695 0.8442433 0.8919234 0.1534332 -0.8378637 0.5238727 -1.19209e-7 0 0 0 1 0.9857134 0.1207878 -0.117385 -2.98023e-8 0.0424603 0.4962218 0.867157 0.8919234 0.162991 -0.8597525 0.4840037 -1.19209e-7 0 0 0 1 0.9863946 0.1325798 -0.09720132 -2.98023e-8 0.02890715 0.4421752 0.896463 0.8919234 0.1618329 -0.8870761 0.4323266 -1.19209e-7 0 0 0 1 0.988369 0.1372169 -0.06555974 -2.98023e-8 0.006787427 0.3908702 0.9204212 0.8919234 0.1519227 -0.9101605 0.3853927 -1.19209e-7 0 0 0 1 0.9889132 0.1361819 -0.05920092 -2.98023e-8 0.004919617 0.368412 0.9296499 0.8919234 0.1484118 -0.9196342 0.3636574 -1.19209e-7 0 0 0 1 0.9888929 0.1337419 -0.06483595 -2.98023e-8 0.01338615 0.3543108 0.935032 0.8919234 0.1480251 -0.9255146 0.348585 -1.19209e-7 0 0 0 1 0.9883314 0.1300449 -0.07930341 -2.98023e-8 0.02942956 0.3477997 0.9371072 0.8919234 0.1494477 -0.9285063 0.3399142 -1.19209e-7 0 0 0 1 0.9872048 0.1253448 -0.09856477 -2.98023e-8 0.04922797 0.34836 0.9360676 0.8919234 0.1516672 -0.9289424 0.3377323 -1.19209e-7 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightLeg_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightLeg_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightLeg_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightLeg_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightLeg_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightLeg_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightLeg_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightLeg_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightLeg_pose_matrix-sampler\" target=\"mixamorig_RightLeg/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightFoot_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightFoot_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightFoot_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightFoot_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightFoot_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightFoot_pose_matrix-output-array\" count=\"1856\">0.9955053 -0.08008539 0.05054766 -5.96046e-8 0.05222221 0.01895443 -0.9984555 0.9029053 0.07900362 0.9966074 0.02305138 -7.45058e-9 0 0 0 1 0.9951651 -0.08654004 0.04644455 -5.96046e-8 0.04935356 0.03178343 -0.9982755 0.9029053 0.08491467 0.9957411 0.03590083 -7.45058e-9 0 0 0 1 0.9943414 -0.09779713 0.04147967 -5.96046e-8 0.04657577 0.05041489 -0.9976414 0.9029053 0.09547532 0.9939284 0.05468455 -7.45058e-9 0 0 0 1 0.992693 -0.1151357 0.03610934 -5.96046e-8 0.0449651 0.0752705 -0.9961487 0.9029053 0.1119744 0.9904936 0.07989752 -7.45058e-9 0 0 0 1 0.9897397 -0.1395655 0.03060536 -5.96046e-8 0.04570037 0.1062701 -0.9932864 0.9029053 0.1353762 0.9844938 0.1115578 -7.45058e-9 0 0 0 1 0.9825141 -0.1848494 0.02227754 -5.96046e-8 0.05312765 0.1636657 -0.9850842 0.9029053 0.1784461 0.9690427 0.1706244 -7.45058e-9 0 0 0 1 0.973532 -0.2283962 0.00839038 -5.96046e-8 0.06162676 0.226977 -0.9719483 0.9029053 0.2200849 0.9467399 0.2350446 -7.45058e-9 0 0 0 1 0.9612021 -0.275458 -0.01459657 -5.96046e-8 0.07216026 0.3021693 -0.950519 0.9029053 0.2662387 0.9125876 0.3103229 -7.45058e-9 0 0 0 1 0.9603952 -0.2781541 -0.01646672 -5.96046e-8 0.0719369 0.3046056 -0.9497581 0.9029053 0.269195 0.9109585 0.3125513 -7.45058e-9 0 0 0 1 0.9481217 -0.3155249 -0.03885004 -5.96046e-8 0.07882875 0.3517243 -0.9327785 0.9029053 0.3079795 0.881325 0.3583497 -7.45058e-9 0 0 0 1 0.9373509 -0.3446427 -0.05093393 -5.96046e-8 0.08607684 0.3707729 -0.9247259 0.9029053 0.337585 0.8624085 0.3772101 -7.45058e-9 0 0 0 1 0.9290485 -0.366633 -0.04948465 -5.96046e-8 0.09557682 0.3670757 -0.9252676 0.9029053 0.3573984 0.8548892 0.3760728 -7.45058e-9 0 0 0 1 0.9211929 -0.3868476 -0.04186211 -5.96046e-8 0.1056988 0.3523253 -0.9298895 0.9029053 0.3744746 0.8521829 0.3654489 -7.45058e-9 0 0 0 1 0.911838 -0.4087779 -0.0381056 -5.96046e-8 0.1137685 0.340772 -0.9332368 0.9029053 0.394472 0.8466256 0.3572349 -7.45058e-9 0 0 0 1 0.9006857 -0.4320441 -0.04585756 -5.96046e-8 0.1190432 0.3469145 -0.9303112 0.9029053 0.4178442 0.8324591 0.3638928 -7.45058e-9 0 0 0 1 0.8898631 -0.4512932 -0.06691451 -5.96046e-8 0.1232862 0.3790798 -0.9171144 0.9029053 0.4392535 0.8078569 0.3929674 -7.45058e-9 0 0 0 1 0.8830981 -0.4595049 -0.09482899 -5.96046e-8 0.1300852 0.4339806 -0.8914808 0.9029053 0.450794 0.7749294 0.4430222 -7.45058e-9 0 0 0 1 0.8825381 -0.4553581 -0.1173678 -5.96046e-8 0.1412704 0.4948039 -0.8574449 0.9029053 0.4485185 0.7401473 0.501012 -7.45058e-9 0 0 0 1 0.8874951 -0.4436478 -0.1246151 -5.96046e-8 0.1560783 0.5438331 -0.8245513 0.9029053 0.4335803 0.7123356 0.5518931 -7.45058e-9 0 0 0 1 0.8966258 -0.4283796 -0.1120396 -5.96046e-8 0.1705667 0.5676547 -0.8054037 0.9029053 0.4086183 0.7030356 0.5820411 -7.45058e-9 0 0 0 1 0.9085001 -0.4107872 -0.07668655 -5.96046e-8 0.1837374 0.557492 -0.8095943 0.9029053 0.3753232 0.7214265 0.5819586 -7.45058e-9 0 0 0 1 0.9203233 -0.3905575 -0.02167359 -5.96046e-8 0.1964276 0.5093636 -0.8378334 0.9029053 0.3382619 0.7668202 0.5454955 -7.45058e-9 0 0 0 1 0.9297965 -0.3655963 0.04263117 -5.96046e-8 0.2089629 0.4289652 -0.8788191 0.9029053 0.3030058 0.8260316 0.4752463 -7.45058e-9 0 0 0 1 0.9370476 -0.3322842 0.1073721 -5.96046e-8 0.2231288 0.3332155 -0.9160682 0.9029053 0.2686169 0.8823574 0.3863809 -7.45058e-9 0 0 0 1 0.9475792 -0.2796432 0.1545734 -5.96046e-8 0.2240609 0.2366636 -0.9454031 0.9029053 0.2277937 0.9304783 0.2869147 -7.45058e-9 0 0 0 1 0.9518505 -0.2292893 0.2034874 -5.96046e-8 0.2458736 0.1745305 -0.9534597 0.9029053 0.1831034 0.9575832 0.2225029 -7.45058e-9 0 0 0 1 0.9570448 -0.177316 0.2293986 -5.96046e-8 0.2559044 0.1446494 -0.9558187 0.9029053 0.1362996 0.9734657 0.1838119 -7.45058e-9 0 0 0 1 0.9569834 -0.1593597 0.2424604 -5.96046e-8 0.2676338 0.1621265 -0.9497826 0.9029053 0.1120478 0.9738169 0.1978024 -7.45058e-9 0 0 0 1 0.9535632 -0.1742819 0.2456476 -5.96046e-8 0.2822641 0.2325263 -0.93073 0.9029053 0.1050899 0.9568472 0.2709221 -7.45058e-9 0 0 0 1 0.9531925 -0.189074 0.2359545 -5.96046e-8 0.2887755 0.3379593 -0.8957633 0.9029053 0.08962257 0.9219729 0.3767403 -7.45058e-9 0 0 0 1 0.9492359 -0.2301775 0.2144041 -5.96046e-8 0.3005541 0.462503 -0.8341211 0.9029053 0.09283341 0.8562179 0.5082053 -7.45058e-9 0 0 0 1 0.950175 -0.2686415 0.1581096 -5.96046e-8 0.2887588 0.567517 -0.7710658 0.9029053 0.1174104 0.778303 0.6168134 -7.45058e-9 0 0 0 1 0.949336 -0.2968325 0.1032065 -5.96046e-8 0.2789522 0.644686 -0.7117341 0.9029053 0.1447301 0.7044644 0.6948258 -7.45058e-9 0 0 0 1 0.9471149 -0.315257 0.05988128 -5.96046e-8 0.2711675 0.68651 -0.6746642 0.9029053 0.1715835 0.6552226 0.7356916 -7.45058e-9 0 0 0 1 0.9439229 -0.3290703 0.02687498 -5.96046e-8 0.2598542 0.6902266 -0.6753243 0.9029053 0.2036794 0.6444377 0.7370309 -7.45058e-9 0 0 0 1 0.9385041 -0.3452533 0.003120566 -5.96046e-8 0.2434182 0.6552215 -0.7151449 0.9029053 0.2448615 0.6719261 0.6989691 -7.45058e-9 0 0 0 1 0.9304521 -0.3663686 -0.005702844 -5.96046e-8 0.2261716 0.5865055 -0.7777258 0.9029053 0.2882792 0.722347 0.6285774 -7.45058e-9 0 0 0 1 0.9233452 -0.3839328 0.005357143 -5.96046e-8 0.2120752 0.4983037 -0.8406648 0.9029053 0.3200894 0.77736 0.5415291 -7.45058e-9 0 0 0 1 0.9211721 -0.3878995 0.03123497 -5.96046e-8 0.2038904 0.4127084 -0.8877503 0.9029053 0.331467 0.8241395 0.4592643 -7.45058e-9 0 0 0 1 0.9233868 -0.3795444 0.05746553 -5.96046e-8 0.1988271 0.3448275 -0.9173666 0.9029053 0.3283658 0.8585099 0.393873 -7.45058e-9 0 0 0 1 0.9258066 -0.3718608 0.06783132 -5.96046e-8 0.1913427 0.3062781 -0.9325135 0.9029053 0.3259901 0.8763065 0.3547071 -7.45058e-9 0 0 0 1 0.9245626 -0.3775772 0.05117603 -5.96046e-8 0.1766613 0.3057809 -0.9355687 0.9029053 0.3376007 0.8740327 0.3494169 -7.45058e-9 0 0 0 1 0.9201884 -0.3913544 0.009729667 -5.96046e-8 0.1567936 0.3456667 -0.9251649 0.9029053 0.3587041 0.8528517 0.3794404 -7.45058e-9 0 0 0 1 0.9170232 -0.3967002 -0.04119939 -5.96046e-8 0.139594 0.4160118 -0.8985809 0.9029053 0.3736067 0.8182684 0.4368694 -7.45058e-9 0 0 0 1 0.9183602 -0.3871165 -0.08218937 -5.96046e-8 0.1315694 0.4945302 -0.8591446 0.9029053 0.3732342 0.7781907 0.5050895 -7.45058e-9 0 0 0 1 0.9239889 -0.3686557 -0.101671 -5.96046e-8 0.1358879 0.5650247 -0.8138068 0.9029053 0.3574612 0.7381328 0.5721725 -7.45058e-9 0 0 0 1 0.9319148 -0.3484736 -0.1004996 -5.96046e-8 0.147692 0.6177286 -0.7723976 0.9029053 0.3312418 0.7049661 0.6271373 -7.45058e-9 0 0 0 1 0.938634 -0.3339882 -0.08612914 -5.96046e-8 0.1604677 0.6438952 -0.7480969 0.9029053 0.3053138 0.6883683 0.6579762 -7.45058e-9 0 0 0 1 0.9424601 -0.3281749 -0.06379387 -5.96046e-8 0.1696874 0.63398 -0.7545034 0.9029053 0.2880532 0.7002642 0.6531882 -7.45058e-9 0 0 0 1 0.9430611 -0.3309073 -0.03370388 -5.96046e-8 0.1762732 0.5831369 -0.7930189 0.9029053 0.2820697 0.7419243 0.6082637 -7.45058e-9 0 0 0 1 0.9412949 -0.3375656 0.003615852 -5.96046e-8 0.1809829 0.4955679 -0.8495042 0.9029053 0.2849715 0.8002884 0.5275693 -7.45058e-9 0 0 0 1 0.940145 -0.337211 0.04915105 -5.96046e-8 0.185913 0.386665 -0.9032863 0.9029053 0.2855932 0.858358 0.426213 -7.45058e-9 0 0 0 1 0.9413569 -0.3215839 0.1021309 -5.96046e-8 0.1962135 0.2754965 -0.9410642 0.9029053 0.2744944 0.9059167 0.3224396 -7.45058e-9 0 0 0 1 0.9491283 -0.2778837 0.1481078 -5.96046e-8 0.2022537 0.1774832 -0.9631162 0.9029053 0.2413478 0.9440763 0.2246573 -7.45058e-9 0 0 0 1 0.9659578 -0.2079156 0.1539358 -5.96046e-8 0.1753117 0.08852589 -0.9805248 0.9029053 0.1902392 0.9741325 0.1219623 -7.45058e-9 0 0 0 1 0.9571578 -0.2068317 0.2026549 -5.96046e-8 0.221664 0.07305133 -0.9723827 0.9029053 0.1863154 0.9756453 0.1157688 -7.45058e-9 0 0 0 1 0.9582818 -0.2038264 0.2003756 -5.96046e-8 0.218288 0.06933516 -0.9734181 0.9029053 0.1845153 0.9765484 0.1109354 -7.45058e-9 0 0 0 1 0.9615356 -0.1904958 0.1978895 -5.96046e-8 0.2162241 0.08062631 -0.9730089 0.9029053 0.1693991 0.9783714 0.1187147 -7.45058e-9 0 0 0 1 0.9662044 -0.1677732 0.1957066 -5.96046e-8 0.2150958 0.1063153 -0.9707887 0.9029053 0.1420657 0.980076 0.1388097 -7.45058e-9 0 0 0 1 0.9709791 -0.1426195 0.1919868 -5.96046e-8 0.2117559 0.13953 -0.9673111 0.9029053 0.1111695 0.9798931 0.1656812 -7.45058e-9 0 0 0 1 0.9743201 -0.1364258 0.1791319 -5.96046e-8 0.2011707 0.1700493 -0.9646831 0.9029053 0.1011464 0.9759461 0.1931273 -7.45058e-9 0 0 0 1 0.9777099 -0.1301887 0.1647243 -5.96046e-8 0.1875117 0.1884634 -0.964013 0.9029053 0.09445912 0.9734126 0.2086744 -7.45058e-9 0 0 0 1 0.9823194 -0.1184632 0.1449654 -5.96046e-8 0.1655426 0.1880126 -0.968115 0.9029053 0.08743075 0.9749961 0.2042991 -7.45058e-9 0 0 0 1 0.9833022 -0.1149612 0.1410696 -5.96046e-8 0.1600008 0.1768398 -0.9711474 0.9029053 0.08669763 0.9775026 0.1922808 -7.45058e-9 0 0 0 1 0.9859434 -0.1055674 0.1295026 -5.96046e-8 0.143621 0.1394449 -0.9797592 0.9029053 0.08537219 0.9845862 0.1526465 -7.45058e-9 0 0 0 1 0.9853969 -0.1044826 0.1344467 -5.96046e-8 0.1443087 0.09337056 -0.9851177 0.9029053 0.09037425 0.9901341 0.1070847 -7.45058e-9 0 0 0 1 0.9869575 -0.097748 0.1279072 -5.96046e-8 0.1324338 0.04128948 -0.9903314 0.9029053 0.09152171 0.9943542 0.0536961 -7.45058e-9 0 0 0 1 0.9887026 -0.08992053 0.1199211 -5.96046e-8 0.1193172 -0.01208082 -0.9927825 0.9029053 0.0907203 0.9958754 -0.001215309 -7.45058e-9 0 0 0 1 0.9908919 -0.08098578 0.1075847 -5.96046e-8 0.1027908 -0.06121325 -0.9928176 0.9029053 0.08698974 0.9948337 -0.05233118 -7.45058e-9 0 0 0 1 0.9932855 -0.07225146 0.09035254 -5.96046e-8 0.08291302 -0.1000672 -0.9915199 0.9029053 0.08068012 0.9923536 -0.09340474 -7.45058e-9 0 0 0 1 0.9949677 -0.06595442 0.07542519 -5.96046e-8 0.06681222 -0.1242492 -0.9899992 0.9029053 0.07466635 0.9900565 -0.1192175 -7.45058e-9 0 0 0 1 0.9957207 -0.06317599 0.06744415 -5.96046e-8 0.05869289 -0.1313855 -0.9895922 0.9029053 0.07137965 0.9893162 -0.1271154 -7.45058e-9 0 0 0 1 0.9960123 -0.06262312 0.06354089 -5.96046e-8 0.05551277 -0.1225114 -0.9909132 0.9029053 0.06983858 0.9904892 -0.1185466 -7.45058e-9 0 0 0 1 0.9962515 -0.06268055 0.05961261 -5.96046e-8 0.05307095 -0.1012984 -0.9934394 0.9029053 0.068308 0.9928794 -0.09759232 -7.45058e-9 0 0 0 1 0.9965622 -0.06253104 0.05434489 -5.96046e-8 0.04973715 -0.07302186 -0.9960893 0.9029053 0.06625486 0.9953681 -0.06966087 -7.45058e-9 0 0 0 1 0.9968151 -0.06244291 0.04960217 -5.96046e-8 0.04692039 -0.04370493 -0.9979421 0.9029053 0.06448227 0.9970912 -0.040636 -7.45058e-9 0 0 0 1 0.9968629 -0.06305129 0.04784222 -5.96046e-8 0.04670601 -0.01937261 -0.9987207 0.9029053 0.06389749 0.9978219 -0.01636708 -7.45058e-9 0 0 0 1 0.9966638 -0.06457217 0.04991006 -5.96046e-8 0.04971487 -0.004625946 -0.9987525 0.9029053 0.06472251 0.997902 -0.001400441 -7.45058e-9 0 0 0 1 0.9963725 -0.06608649 0.0536086 -5.96046e-8 0.05354563 -0.002723724 -0.9985616 0.9029053 0.06613746 0.99781 8.2472e-4 -7.45058e-9 0 0 0 1 0.9963819 -0.0656935 0.05392047 -5.96046e-8 0.05307131 -0.014604 -0.9984838 0.9029053 0.06638137 0.9977329 -0.01106483 -7.45058e-9 0 0 0 1 0.9968792 -0.06264499 0.04803145 -5.96046e-8 0.04572214 -0.03779015 -0.998239 0.9029053 0.06434979 0.9973201 -0.03480804 -7.45058e-9 0 0 0 1 0.9975703 -0.05824023 0.03823346 -5.96046e-8 0.03431822 -0.06680241 -0.9971758 0.9029053 0.06062985 0.9960649 -0.06464148 -7.45058e-9 0 0 0 1 0.9981552 -0.0539632 0.0278173 -5.96046e-8 0.02266628 -0.09382084 -0.9953309 0.9029053 0.05632111 0.9941254 -0.09242472 -7.45058e-9 0 0 0 1 0.9985882 -0.05017841 0.01742874 -5.96046e-8 0.01175152 -0.1112882 -0.9937186 0.9029053 0.05180285 0.9925205 -0.1105416 -7.45058e-9 0 0 0 1 0.9988781 -0.04682843 0.00703328 -5.96046e-8 0.001556009 -0.1159866 -0.9932494 0.9029053 0.04732809 0.9921461 -0.1157838 -7.45058e-9 0 0 0 1 0.9990101 -0.04446265 -0.001194079 -5.96046e-8 -0.006001022 -0.1081347 -0.994118 0.9029053 0.044072 0.9931413 -0.1082946 -7.45058e-9 0 0 0 1 0.9990083 -0.04445963 -0.002317313 -5.96046e-8 -0.006307747 -0.08982396 -0.9959376 0.9029053 0.04407086 0.9949647 -0.09001535 -7.45058e-9 0 0 0 1 0.9988288 -0.047938 0.00653578 -5.96046e-8 0.00353507 -0.06241363 -0.998044 0.9029053 0.04825216 0.9968984 -0.06217119 -7.45058e-9 0 0 0 1 0.9982436 -0.05459211 0.02299881 -5.96046e-8 0.02147425 -0.02834919 -0.9993671 0.9029053 0.05520957 0.998106 -0.02712715 -7.45058e-9 0 0 0 1 0.9971612 -0.06272326 0.04165519 -5.96046e-8 0.04215389 0.006649137 -0.999089 0.9029053 0.06238916 0.9980087 0.009274244 -7.45058e-9 0 0 0 1 0.9958181 -0.06991426 0.05880526 -5.96046e-8 0.0613826 0.03530496 -0.9974896 0.9029053 0.06766264 0.996928 0.03944874 -7.45058e-9 0 0 0 1 0.9950487 -0.06110787 0.07838123 -5.96046e-8 0.08131948 0.04717684 -0.995571 0.9029053 0.05713946 0.9970155 0.05191249 -7.45058e-9 0 0 0 1 0.9938557 -0.05451762 0.09632365 -5.96046e-8 0.09880456 0.04480046 -0.9940978 0.9029053 0.04988051 0.9975071 0.04991174 -7.45058e-9 0 0 0 1 0.9925448 -0.05422748 0.1091499 -5.96046e-8 0.1110523 0.03339535 -0.9932531 0.9029053 0.05021653 0.9979699 0.03916839 -7.45058e-9 0 0 0 1 0.9912381 -0.06003851 0.1176515 -5.96046e-8 0.1185392 0.01143271 -0.9928834 0.9029053 0.05826618 0.9981305 0.0184494 -7.45058e-9 0 0 0 1 0.9897091 -0.07493555 0.121903 -5.96046e-8 0.1202605 -0.02607089 -0.9923996 0.9029053 0.07754418 0.9968473 -0.0167909 -7.45058e-9 0 0 0 1 0.9896106 -0.08461314 0.1162393 -5.96046e-8 0.1105743 -0.06882602 -0.9914817 0.9029053 0.0918927 0.9940338 -0.05875498 -7.45058e-9 0 0 0 1 0.9920415 -0.07618451 0.100248 -5.96046e-8 0.09178556 -0.1074593 -0.9899634 0.9029053 0.0861925 0.991286 -0.09961149 -7.45058e-9 0 0 0 1 0.9942651 -0.06840248 0.08220432 -5.96046e-8 0.07238552 -0.1353686 -0.9881474 0.9029053 0.07871963 0.9884312 -0.1296409 -7.45058e-9 0 0 0 1 0.9953107 -0.06432494 0.07224242 -5.96046e-8 0.06193258 -0.1499185 -0.9867565 0.9029053 0.07430357 0.9866034 -0.1452318 -7.45058e-9 0 0 0 1 0.9952391 -0.06444741 0.0731116 -5.96046e-8 0.06268638 -0.1511091 -0.9865274 0.9029053 0.07462697 0.9864138 -0.1463498 -7.45058e-9 0 0 0 1 0.9945995 -0.06707141 0.07920362 -5.96046e-8 0.06928318 -0.139135 -0.9878467 0.9029053 0.07727629 0.9879993 -0.1337367 -7.45058e-9 0 0 0 1 0.9942889 -0.06934613 0.08112086 -5.96046e-8 0.07280652 -0.1150046 -0.9906932 0.9029053 0.07803002 0.9909414 -0.109299 -7.45058e-9 0 0 0 1 0.9948228 -0.06933594 0.07429553 -5.96046e-8 0.06854607 -0.08190963 -0.9942796 0.9029053 0.07502486 0.9942247 -0.07673287 -7.45058e-9 0 0 0 1 0.9958124 -0.06727911 0.06189305 -5.96046e-8 0.05898828 -0.04433709 -0.9972734 0.9029053 0.06983983 0.9967484 -0.04018289 -7.45058e-9 0 0 0 1 0.9966183 -0.06487249 0.05043032 -5.96046e-8 0.05003642 -0.007682562 -0.9987177 0.9029053 0.06517676 0.9978638 -0.004410625 -7.45058e-9 0 0 0 1 0.996997 -0.06362849 0.04413993 -5.96046e-8 0.04567918 0.02294326 -0.9986926 0.9029053 0.0625326 0.9977098 0.02578086 -7.45058e-9 0 0 0 1 0.9970925 -0.06345363 0.04219039 -5.96046e-8 0.04500892 0.04366606 -0.9980318 0.9029053 0.06148646 0.9970288 0.04639509 -7.45058e-9 0 0 0 1 0.9971944 -0.06297335 0.04046716 -5.96046e-8 0.04383411 0.05303738 -0.9976299 0.9029053 0.06067785 0.9966048 0.05564883 -7.45058e-9 0 0 0 1 0.9973573 -0.06194887 0.03795302 -5.96046e-8 0.04111158 0.05053535 -0.9978756 0.9029053 0.05989932 0.9967989 0.05294856 -7.45058e-9 0 0 0 1 0.9971707 -0.06289043 0.04117399 -5.96046e-8 0.0432776 0.03246164 -0.9985356 0.9029053 0.06146175 0.9974922 0.03509149 -7.45058e-9 0 0 0 1 0.9965244 -0.06619889 0.05056045 -5.96046e-8 0.05147224 0.01214087 -0.9986004 0.9029053 0.06549242 0.9977323 0.015506 -7.45058e-9 0 0 0 1 0.9960291 -0.07055297 0.05429472 -5.96046e-8 0.05492719 0.007054687 -0.9984653 0.9029053 0.07006168 0.9974829 0.0109019 -7.45058e-9 0 0 0 1 0.9957438 -0.07381215 0.05518803 -5.96046e-8 0.05584518 0.006868571 -0.9984158 0.9029053 0.07331616 0.9972483 0.01096126 -7.45058e-9 0 0 0 1 0.9956284 -0.07649177 0.05359889 -5.96046e-8 0.05459575 0.0110006 -0.9984479 0.9029053 0.07578343 0.9970093 0.01512858 -7.45058e-9 0 0 0 1 0.9955053 -0.08008539 0.05054766 -5.96046e-8 0.05222221 0.01895443 -0.9984555 0.9029053 0.07900362 0.9966074 0.02305138 -7.45058e-9 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightFoot_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightFoot_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightFoot_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightFoot_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightFoot_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightFoot_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightFoot_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightFoot_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightFoot_pose_matrix-sampler\" target=\"mixamorig_RightFoot/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightToeBase_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightToeBase_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightToeBase_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightToeBase_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightToeBase_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightToeBase_pose_matrix-output-array\" count=\"1856\">0.9985636 0.03361341 0.0417246 2.98023e-8 4.17233e-7 0.7787315 -0.6273574 0.3501284 -0.0535799 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361343 0.0417246 2.98023e-8 4.45172e-7 0.7787309 -0.6273581 0.3501284 -0.0535799 0.626457 0.7776122 2.98023e-8 0 0 0 1 0.9985636 0.03361339 0.04172462 2.98023e-8 4.52623e-7 0.7787314 -0.6273575 0.3501284 -0.05357991 0.6264565 0.7776127 2.98023e-8 0 0 0 1 0.9985645 0.03368755 0.04164494 2.98023e-8 -1.96062e-5 0.7777028 -0.6286317 0.3501284 -0.0535645 0.6277286 0.7765869 2.98023e-8 0 0 0 1 0.9985704 0.034224 0.04106153 2.98023e-8 -1.662e-4 0.7701495 -0.6378633 0.3501284 -0.05345378 0.6369445 0.7690542 2.98023e-8 0 0 0 1 0.9985861 0.03567922 0.03940528 2.98023e-8 -5.8062e-4 0.7485611 -0.6630656 0.3501284 -0.05315494 0.6621053 0.7475233 2.98023e-8 0 0 0 1 0.9986038 0.0373695 0.03733252 2.98023e-8 -0.001096627 0.7212711 -0.6926517 0.3501284 -0.05281094 0.691644 0.720305 2.98023e-8 0 0 0 1 0.9986185 0.03880328 0.03543107 2.98023e-8 -0.001567272 0.6959857 -0.7180539 0.3501284 -0.05252238 0.7170066 0.6950849 2.98023e-8 0 0 0 1 0.9986195 0.03890136 0.03529564 2.98023e-8 -0.00160069 0.6941759 -0.7198033 0.3501284 -0.05250274 0.7187531 0.6932798 2.98023e-8 0 0 0 1 0.9986327 0.04026978 0.03332796 2.98023e-8 -0.002085183 0.6677635 -0.7443706 0.3501284 -0.05223084 0.7432835 0.6669343 2.98023e-8 0 0 0 1 0.9986414 0.04117775 0.03193303 2.98023e-8 -0.002427295 0.6489092 -0.7608619 0.3501284 -0.05205224 0.7597507 0.6481274 2.98023e-8 0 0 0 1 0.9986448 0.04154981 0.03133858 2.98023e-8 -0.002572739 0.6408422 -0.7676681 0.3501284 -0.05197958 0.7665471 0.6400807 2.98023e-8 0 0 0 1 0.9986455 0.04162785 0.03121205 2.98023e-8 -0.00260374 0.6391242 -0.769099 0.3501284 -0.05196434 0.7679761 0.6383667 2.98023e-8 0 0 0 1 0.9986466 0.04172875 0.03104767 2.98023e-8 -0.002643934 0.6368891 -0.7709508 0.3501284 -0.05194475 0.7698255 0.6361372 2.98023e-8 0 0 0 1 0.9986504 0.04216449 0.03032471 2.98023e-8 -0.002820441 0.6270431 -0.7789793 0.3501284 -0.05186019 0.7778424 0.6263157 2.98023e-8 0 0 0 1 0.998659 0.04314249 0.02862199 2.98023e-8 -0.003235148 0.6037506 -0.7971666 0.3501284 -0.05167232 0.796005 0.6030803 2.98023e-8 0 0 0 1 0.9986704 0.04456379 0.02591549 2.98023e-8 -0.003891405 0.5664449 -0.8240904 0.3501284 -0.0514043 0.8228937 0.5658651 2.98023e-8 0 0 0 1 0.9987155 0.0458355 0.02159766 2.98023e-8 -0.005743695 0.5259138 -0.8505185 0.3501284 -0.05034246 0.8493019 0.5255014 2.98023e-8 0 0 0 1 0.9988362 0.04642221 0.01309821 2.98023e-8 -0.01109626 0.4854138 -0.8742139 0.3501284 -0.04694103 0.8730512 0.4853638 2.98023e-8 0 0 0 1 0.998843 0.04680053 0.01106814 2.98023e-8 -0.01179668 0.4615512 -0.887035 0.3501284 -0.04662225 0.8858781 0.4615692 2.98023e-8 0 0 0 1 0.9988322 0.04681174 0.01195676 2.98023e-8 -0.01107719 0.4627657 -0.8864113 0.3501284 -0.04702765 0.8852439 0.4627437 2.98023e-8 0 0 0 1 0.998802 0.0463386 0.01571782 2.98023e-8 -0.009131193 0.4920864 -0.8704982 0.3501284 -0.04807223 0.8693121 0.4919199 2.98023e-8 0 0 0 1 0.9987499 0.04507232 0.02161467 2.98023e-8 -0.006452035 0.545026 -0.8383943 0.3501284 -0.04956894 0.8372068 0.5446353 2.98023e-8 0 0 0 1 0.9986586 0.04310223 0.02869407 2.98023e-8 -0.00321752 0.6047397 -0.7964165 0.3501284 -0.0516798 0.7952559 0.6040671 2.98023e-8 0 0 0 1 0.9986404 0.04106583 0.03210896 2.98023e-8 -0.002384067 0.651292 -0.7588233 0.3501284 -0.05207403 0.7577151 0.6505043 2.98023e-8 0 0 0 1 0.9986269 0.03965104 0.03423663 2.98023e-8 -0.001861952 0.6799902 -0.7332186 0.3501284 -0.05235349 0.7321481 0.6791303 2.98023e-8 0 0 0 1 0.9986065 0.03761721 0.03701392 2.98023e-8 -0.001175649 0.7170507 -0.69702 0.3501284 -0.05276082 0.6960052 0.7160956 2.98023e-8 0 0 0 1 0.9986011 0.03709893 0.03767584 2.98023e-8 -0.001011182 0.7258098 -0.6878945 0.3501284 -0.05286567 0.6868942 0.724832 2.98023e-8 0 0 0 1 0.9986171 0.03866269 0.0356241 2.98023e-8 -0.00151952 0.6985604 -0.7155495 0.3501284 -0.05255067 0.7145059 0.6976529 2.98023e-8 0 0 0 1 0.9986376 0.04077283 0.03256461 2.98023e-8 -0.002272561 0.657459 -0.7534867 0.3501284 -0.0521317 0.7523862 0.6566559 2.98023e-8 0 0 0 1 0.9986573 0.0429646 0.02894064 2.98023e-8 -0.003157737 0.6081212 -0.7938379 0.3501284 -0.05170636 0.7926808 0.6074401 2.98023e-8 0 0 0 1 0.9987257 0.04501063 0.02282805 2.98023e-8 -0.005584519 0.5481054 -0.8363905 0.3501284 -0.05015866 0.8351973 0.5476581 2.98023e-8 0 0 0 1 0.9987739 0.04635953 0.01737375 2.98023e-8 -0.007750105 0.4930076 -0.8699905 0.3501284 -0.04889776 0.868789 0.4927622 2.98023e-8 0 0 0 1 0.9987974 0.0469344 0.01416194 2.98023e-8 -0.009032505 0.4601071 -0.8878173 0.3501284 -0.0481852 0.886622 0.4599777 2.98023e-8 0 0 0 1 0.9988049 0.04698694 0.01345928 2.98023e-8 -0.009375762 0.4544467 -0.8907245 0.3501284 -0.04796897 0.8895338 0.4543441 2.98023e-8 0 0 0 1 0.9988037 0.04653201 0.01503202 2.98023e-8 -0.008991119 0.4769193 -0.8789011 0.3501284 -0.04806611 0.8777145 0.476767 2.98023e-8 0 0 0 1 0.9987866 0.04553966 0.01875463 2.98023e-8 -0.007772112 0.5217719 -0.8530497 0.3501284 -0.04863325 0.8518688 0.5214925 2.98023e-8 0 0 0 1 0.9987499 0.04398954 0.02374362 2.98023e-8 -0.005966108 0.5764837 -0.8170869 0.3501284 -0.0496311 0.8159238 0.5760253 2.98023e-8 0 0 0 1 0.9986526 0.04241642 0.02989698 2.98023e-8 -0.002924776 0.6212065 -0.7836415 0.3501284 -0.05181146 0.7824982 0.6204934 2.98023e-8 0 0 0 1 0.9986408 0.04109478 0.03206388 2.98023e-8 -0.002395293 0.650682 -0.7593465 0.3501284 -0.05206859 0.7582377 0.6498957 2.98023e-8 0 0 0 1 0.9986342 0.04038916 0.03314883 2.98023e-8 -0.002129233 0.6653492 -0.7465291 0.3501284 -0.05220725 0.7454389 0.6645262 2.98023e-8 0 0 0 1 0.9986361 0.04059839 0.03283175 2.98023e-8 -0.00220694 0.6610684 -0.7503223 0.3501284 -0.05216593 0.7492265 0.6602563 2.98023e-8 0 0 0 1 0.9986464 0.04170567 0.03108518 2.98023e-8 -0.002634576 0.6373975 -0.7705305 0.3501284 -0.05194914 0.7694057 0.6366443 2.98023e-8 0 0 0 1 0.9986609 0.0433834 0.02818382 2.98023e-8 -0.003341474 0.5977319 -0.801689 0.3501284 -0.05162639 0.8005213 0.5970764 2.98023e-8 0 0 0 1 0.9986744 0.04510567 0.0247969 2.98023e-8 -0.004161531 0.5509297 -0.8345412 0.3501284 -0.05130392 0.8333318 0.550387 2.98023e-8 0 0 0 1 0.9990067 0.04451676 0.00192794 2.98023e-8 -0.02090492 0.506462 -0.8620086 0.3501284 -0.03935029 0.8611123 0.5068895 2.98023e-8 0 0 0 1 0.9990211 0.04410501 -0.003428567 2.98023e-8 -0.0235437 0.4644689 -0.8852762 0.3501284 -0.03745269 0.8844902 0.4650525 2.98023e-8 0 0 0 1 0.9990315 0.04359324 -0.005963203 2.98023e-8 -0.02459171 0.4408346 -0.8972514 0.3501284 -0.03648533 0.8965292 0.4414796 2.98023e-8 0 0 0 1 0.9990469 0.0431851 -0.006346472 2.98023e-8 -0.02485286 0.4432648 -0.8960459 0.3501284 -0.03588269 0.8953497 0.4439155 2.98023e-8 0 0 0 1 0.9990568 0.0432456 -0.003964625 2.98023e-8 -0.02402997 0.4744678 -0.8799447 0.3501284 -0.03617268 0.8792099 0.4750593 2.98023e-8 0 0 0 1 0.9990338 0.0438296 0.003209107 2.98023e-8 -0.02051804 0.5297608 -0.8478986 0.3501284 -0.03886314 0.8470136 0.5301481 2.98023e-8 0 0 0 1 0.9986678 0.04423191 0.02657527 2.98023e-8 -0.003731677 0.5755686 -0.817745 0.3501284 -0.05146633 0.8165565 0.5749668 2.98023e-8 0 0 0 1 0.9986482 0.04190633 0.03075554 2.98023e-8 -0.002715252 0.6329132 -0.7742178 0.3501284 -0.05191024 0.7730877 0.6321713 2.98023e-8 0 0 0 1 0.9986309 0.04005568 0.03364604 2.98023e-8 -0.002006972 0.672047 -0.7405056 0.3501284 -0.0522732 0.7394242 0.6712071 2.98023e-8 0 0 0 1 0.9985862 0.03568295 0.03940064 2.98023e-8 -5.81913e-4 0.748504 -0.6631299 0.3501284 -0.05315398 0.6621694 0.7474664 2.98023e-8 0 0 0 1 0.9985639 0.03362688 0.04171007 2.98023e-8 -3.25777e-6 0.7785447 -0.627589 0.3501284 -0.05357705 0.6266875 0.7774265 2.98023e-8 0 0 0 1 0.9985636 0.03361963 0.04171791 2.98023e-8 -1.24425e-6 0.7786449 -0.6274648 0.3501284 -0.05357859 0.6265636 0.7775265 2.98023e-8 0 0 0 1 0.9985636 0.03361988 0.04171766 2.98023e-8 -1.33365e-6 0.7786419 -0.6274685 0.3501284 -0.05357856 0.6265673 0.7775235 2.98023e-8 0 0 0 1 0.9985636 0.03361937 0.04171814 2.98023e-8 -1.20699e-6 0.7786485 -0.6274603 0.3501284 -0.05357861 0.6265591 0.77753 2.98023e-8 0 0 0 1 0.9985638 0.03361741 0.04172031 2.98023e-8 -6.20261e-7 0.7786756 -0.6274267 0.3501284 -0.05357907 0.6265256 0.777557 2.98023e-8 0 0 0 1 0.9985654 0.03377477 0.04155108 2.98023e-8 -4.32022e-5 0.776489 -0.6301305 0.3501284 -0.05354651 0.6292247 0.7753763 2.98023e-8 0 0 0 1 0.9985761 0.03475667 0.04046812 2.98023e-8 -3.14908e-4 0.762438 -0.6470612 0.3501284 -0.05334413 0.6461272 0.7613632 2.98023e-8 0 0 0 1 0.9985941 0.0364258 0.0385107 2.98023e-8 -8.03718e-4 0.7368196 -0.6760889 0.3501284 -0.05300253 0.6751075 0.7358128 2.98023e-8 0 0 0 1 0.9986027 0.03725969 0.03747243 2.98023e-8 -0.001061827 0.7231217 -0.69072 0.3501284 -0.05283315 0.6897151 0.7221507 2.98023e-8 0 0 0 1 0.9985996 0.03695675 0.03785456 2.98023e-8 -9.6691e-4 0.7281715 -0.6853942 0.3501284 -0.05289457 0.6843979 0.7271874 2.98023e-8 0 0 0 1 0.9985846 0.03553316 0.0395764 2.98023e-8 -5.37988e-4 0.7508037 -0.6605251 0.3501284 -0.05318467 0.6595688 0.7497601 2.98023e-8 0 0 0 1 0.9985677 0.03397899 0.04132977 2.98023e-8 -9.87761e-5 0.7736249 -0.6336439 0.3501284 -0.05350433 0.6327323 0.7725201 2.98023e-8 0 0 0 1 0.9985636 0.03361436 0.04172353 2.98023e-8 1.08033e-7 0.7787186 -0.6273734 0.3501284 -0.05357966 0.6264724 0.7775999 2.98023e-8 0 0 0 1 0.9985636 0.03361354 0.04172446 2.98023e-8 4.28408e-7 0.7787292 -0.6273603 0.3501284 -0.05357987 0.6264592 0.7776105 2.98023e-8 0 0 0 1 0.9985636 0.03361344 0.04172455 2.98023e-8 3.85568e-7 0.7787312 -0.6273577 0.3501284 -0.05357988 0.6264566 0.7776125 2.98023e-8 0 0 0 1 0.9985636 0.03361343 0.04172461 2.98023e-8 4.02331e-7 0.7787315 -0.6273574 0.3501284 -0.05357992 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.0336134 0.04172454 2.98023e-8 3.85568e-7 0.7787315 -0.6273574 0.3501284 -0.05357984 0.6264563 0.7776128 2.98023e-8 0 0 0 1 0.9985636 0.03361341 0.04172463 2.98023e-8 4.24683e-7 0.7787316 -0.6273572 0.3501284 -0.05357992 0.6264561 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361345 0.04172459 2.98023e-8 4.1537e-7 0.778731 -0.6273579 0.3501284 -0.05357992 0.6264569 0.7776123 2.98023e-8 0 0 0 1 0.9985636 0.03361338 0.04172453 2.98023e-8 4.09782e-7 0.7787313 -0.6273575 0.3501284 -0.05357984 0.6264565 0.7776126 2.98023e-8 0 0 0 1 0.9985636 0.03361339 0.04172463 2.98023e-8 4.33996e-7 0.7787316 -0.6273572 0.3501284 -0.05357992 0.6264561 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361343 0.04172461 2.98023e-8 4.17233e-7 0.7787314 -0.6273575 0.3501284 -0.05357992 0.6264565 0.7776126 2.98023e-8 0 0 0 1 0.9985636 0.03361341 0.04172457 2.98023e-8 4.2282e-7 0.7787312 -0.6273578 0.3501284 -0.05357987 0.6264567 0.7776124 2.98023e-8 0 0 0 1 0.9985636 0.03361337 0.04172456 2.98023e-8 4.17233e-7 0.7787315 -0.6273574 0.3501284 -0.05357984 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361342 0.04172463 2.98023e-8 4.19095e-7 0.7787316 -0.6273572 0.3501284 -0.05357993 0.6264562 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.0336134 0.04172456 2.98023e-8 4.07919e-7 0.7787314 -0.6273575 0.3501284 -0.05357986 0.6264565 0.7776127 2.98023e-8 0 0 0 1 0.9985636 0.03361341 0.04172458 2.98023e-8 4.00469e-7 0.7787314 -0.6273575 0.3501284 -0.05357989 0.6264563 0.7776127 2.98023e-8 0 0 0 1 0.9985636 0.03361337 0.04172454 2.98023e-8 4.13507e-7 0.7787315 -0.6273574 0.3501284 -0.05357983 0.6264563 0.7776127 2.98023e-8 0 0 0 1 0.9985636 0.03361344 0.04172455 2.98023e-8 4.1537e-7 0.7787309 -0.6273581 0.3501284 -0.05357988 0.6264571 0.7776121 2.98023e-8 0 0 0 1 0.9985637 0.03361348 0.04172466 2.98023e-8 4.04194e-7 0.7787314 -0.6273575 0.3501284 -0.05357999 0.6264564 0.7776127 2.98023e-8 0 0 0 1 0.9985636 0.03361337 0.04172458 2.98023e-8 4.32134e-7 0.7787315 -0.6273574 0.3501284 -0.05357986 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361344 0.04172448 2.98023e-8 3.53903e-7 0.7787311 -0.6273579 0.3501284 -0.05357983 0.6264568 0.7776124 2.98023e-8 0 0 0 1 0.9985636 0.03361339 0.04172449 2.98023e-8 3.85568e-7 0.7787312 -0.6273577 0.3501284 -0.05357981 0.6264567 0.7776125 2.98023e-8 0 0 0 1 0.9985637 0.03361348 0.04172466 2.98023e-8 4.26546e-7 0.7787311 -0.6273578 0.3501284 -0.05357998 0.6264568 0.7776124 2.98023e-8 0 0 0 1 0.9985636 0.03361341 0.04172451 2.98023e-8 3.68804e-7 0.7787313 -0.6273575 0.3501284 -0.05357984 0.6264564 0.7776126 2.98023e-8 0 0 0 1 0.9985636 0.0336134 0.04172454 2.98023e-8 3.91155e-7 0.7787314 -0.6273575 0.3501284 -0.05357985 0.6264563 0.7776127 2.98023e-8 0 0 0 1 0.9985651 0.03373589 0.04159291 2.98023e-8 -3.2654e-5 0.7770304 -0.6294631 0.3501284 -0.05355448 0.6285585 0.7759162 2.98023e-8 0 0 0 1 0.9985676 0.0339616 0.0413487 2.98023e-8 -9.41064e-5 0.7738708 -0.6333434 0.3501284 -0.05350794 0.6324322 0.7727653 2.98023e-8 0 0 0 1 0.9985667 0.03388913 0.04142728 2.98023e-8 -7.42953e-5 0.7748885 -0.6320981 0.3501284 -0.05352279 0.6311891 0.7737802 2.98023e-8 0 0 0 1 0.9985636 0.03361351 0.0417243 2.98023e-8 3.7998e-7 0.7787288 -0.6273608 0.3501284 -0.05357973 0.6264597 0.7776101 2.98023e-8 0 0 0 1 0.9985636 0.03361381 0.04172416 2.98023e-8 2.81259e-7 0.7787262 -0.627364 0.3501284 -0.05357981 0.6264629 0.7776074 2.98023e-8 0 0 0 1 0.9985636 0.03361334 0.04172458 2.98023e-8 4.61936e-7 0.7787314 -0.6273575 0.3501284 -0.05357984 0.6264565 0.7776127 2.98023e-8 0 0 0 1 0.9985636 0.03361341 0.04172449 2.98023e-8 3.72529e-7 0.7787312 -0.6273577 0.3501284 -0.05357982 0.6264567 0.7776124 2.98023e-8 0 0 0 1 0.9985636 0.03361342 0.04172461 2.98023e-8 4.13507e-7 0.7787315 -0.6273574 0.3501284 -0.05357992 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361334 0.04172463 2.98023e-8 4.97326e-7 0.7787313 -0.6273576 0.3501284 -0.05357988 0.6264565 0.7776126 2.98023e-8 0 0 0 1 0.9985636 0.03361337 0.04172451 2.98023e-8 3.74392e-7 0.7787316 -0.6273572 0.3501284 -0.05357981 0.6264561 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361344 0.04172452 2.98023e-8 3.5204e-7 0.7787314 -0.6273575 0.3501284 -0.05357986 0.6264564 0.7776127 2.98023e-8 0 0 0 1 0.9985636 0.03361338 0.04172467 2.98023e-8 4.82425e-7 0.7787316 -0.6273574 0.3501284 -0.05357993 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361342 0.04172457 2.98023e-8 3.83705e-7 0.7787315 -0.6273574 0.3501284 -0.05357988 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361339 0.04172451 2.98023e-8 3.81842e-7 0.7787314 -0.6273575 0.3501284 -0.05357982 0.6264563 0.7776127 2.98023e-8 0 0 0 1 0.9985636 0.03361342 0.04172461 2.98023e-8 4.26546e-7 0.7787313 -0.6273576 0.3501284 -0.05357993 0.6264565 0.7776126 2.98023e-8 0 0 0 1 0.9985636 0.03361341 0.04172458 2.98023e-8 3.94881e-7 0.7787315 -0.6273574 0.3501284 -0.05357989 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361341 0.04172463 2.98023e-8 4.26546e-7 0.7787316 -0.6273574 0.3501284 -0.05357993 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361338 0.04172458 2.98023e-8 4.52623e-7 0.7787312 -0.6273578 0.3501284 -0.05357987 0.6264567 0.7776124 2.98023e-8 0 0 0 1 0.9985636 0.03361338 0.04172454 2.98023e-8 4.20958e-7 0.7787313 -0.6273575 0.3501284 -0.05357984 0.6264565 0.7776126 2.98023e-8 0 0 0 1 0.9985636 0.03361339 0.04172455 2.98023e-8 4.1537e-7 0.7787312 -0.6273577 0.3501284 -0.05357985 0.6264567 0.7776125 2.98023e-8 0 0 0 1 0.9985636 0.03361429 0.04172371 2.98023e-8 1.99303e-7 0.7787195 -0.6273723 0.3501284 -0.05357976 0.6264712 0.7776007 2.98023e-8 0 0 0 1 0.9985636 0.03361342 0.04172461 2.98023e-8 4.24683e-7 0.7787312 -0.6273577 0.3501284 -0.05357992 0.6264566 0.7776126 2.98023e-8 0 0 0 1 0.9985636 0.03361339 0.04172454 2.98023e-8 3.83705e-7 0.7787316 -0.6273574 0.3501284 -0.05357984 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361342 0.0417246 2.98023e-8 4.00469e-7 0.7787315 -0.6273574 0.3501284 -0.0535799 0.6264563 0.7776129 2.98023e-8 0 0 0 1 0.9985636 0.03361341 0.0417246 2.98023e-8 4.1537e-7 0.7787315 -0.6273574 0.3501284 -0.0535799 0.6264563 0.7776129 2.98023e-8 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightToeBase_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightToeBase_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightToeBase_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightToeBase_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightToeBase_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightToeBase_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightToeBase_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightToeBase_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightToeBase_pose_matrix-sampler\" target=\"mixamorig_RightToeBase/transform\"/>\r\n    </animation>\r\n    <animation id=\"Armature_mixamorig_RightToe_End_pose_matrix\">\r\n      <source id=\"Armature_mixamorig_RightToe_End_pose_matrix-input\">\r\n        <float_array id=\"Armature_mixamorig_RightToe_End_pose_matrix-input-array\" count=\"116\">0.0333333 0.06666666 0.1 0.1333333 0.1666666 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666666 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333334 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightToe_End_pose_matrix-input-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"TIME\" type=\"float\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightToe_End_pose_matrix-output\">\r\n        <float_array id=\"Armature_mixamorig_RightToe_End_pose_matrix-output-array\" count=\"1856\">1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1 1 2.10479e-7 2.93949e-7 -2.98023e-8 -2.14204e-7 1 3.72529e-9 0.1407584 -2.93367e-7 -3.72529e-9 1 1.86265e-9 0 0 0 1</float_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightToe_End_pose_matrix-output-array\" count=\"116\" stride=\"16\">\r\n            <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <source id=\"Armature_mixamorig_RightToe_End_pose_matrix-interpolation\">\r\n        <Name_array id=\"Armature_mixamorig_RightToe_End_pose_matrix-interpolation-array\" count=\"116\">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>\r\n        <technique_common>\r\n          <accessor source=\"#Armature_mixamorig_RightToe_End_pose_matrix-interpolation-array\" count=\"116\" stride=\"1\">\r\n            <param name=\"INTERPOLATION\" type=\"name\"/>\r\n          </accessor>\r\n        </technique_common>\r\n      </source>\r\n      <sampler id=\"Armature_mixamorig_RightToe_End_pose_matrix-sampler\">\r\n        <input semantic=\"INPUT\" source=\"#Armature_mixamorig_RightToe_End_pose_matrix-input\"/>\r\n        <input semantic=\"OUTPUT\" source=\"#Armature_mixamorig_RightToe_End_pose_matrix-output\"/>\r\n        <input semantic=\"INTERPOLATION\" source=\"#Armature_mixamorig_RightToe_End_pose_matrix-interpolation\"/>\r\n      </sampler>\r\n      <channel source=\"#Armature_mixamorig_RightToe_End_pose_matrix-sampler\" target=\"mixamorig_RightToe_End/transform\"/>\r\n    </animation>\r\n  </library_animations>\r\n  <library_controllers>\r\n    <controller id=\"Armature_Stormtrooper-skin\" name=\"Armature\">\r\n      <skin source=\"#Stormtroopermesh-mesh\">\r\n        <bind_shape_matrix>-1.662001 5.26272e-8 -1.23829e-8 3.40529e-8 -1.23829e-8 -1.0532e-8 -1.662 -1.23829e-8 -5.26272e-8 1.662 -2.91063e-8 -7.42972e-8 0 0 0 1</bind_shape_matrix>\r\n        <source id=\"Armature_Stormtrooper-skin-joints\">\r\n          <Name_array id=\"Armature_Stormtrooper-skin-joints-array\" count=\"52\">mixamorig_Hips mixamorig_Spine mixamorig_Spine1 mixamorig_Spine2 mixamorig_Neck mixamorig_Head mixamorig_LeftShoulder mixamorig_LeftArm mixamorig_LeftForeArm mixamorig_LeftHand mixamorig_LeftHandThumb1 mixamorig_LeftHandThumb2 mixamorig_LeftHandThumb3 mixamorig_LeftHandIndex1 mixamorig_LeftHandIndex2 mixamorig_LeftHandIndex3 mixamorig_LeftHandMiddle1 mixamorig_LeftHandMiddle2 mixamorig_LeftHandMiddle3 mixamorig_LeftHandRing1 mixamorig_LeftHandRing2 mixamorig_LeftHandRing3 mixamorig_LeftHandPinky1 mixamorig_LeftHandPinky2 mixamorig_LeftHandPinky3 mixamorig_RightShoulder mixamorig_RightArm mixamorig_RightForeArm mixamorig_RightHand mixamorig_RightHandThumb1 mixamorig_RightHandThumb2 mixamorig_RightHandThumb3 mixamorig_RightHandIndex1 mixamorig_RightHandIndex2 mixamorig_RightHandIndex3 mixamorig_RightHandMiddle1 mixamorig_RightHandMiddle2 mixamorig_RightHandMiddle3 mixamorig_RightHandRing1 mixamorig_RightHandRing2 mixamorig_RightHandRing3 mixamorig_RightHandPinky1 mixamorig_RightHandPinky2 mixamorig_RightHandPinky3 mixamorig_LeftUpLeg mixamorig_LeftLeg mixamorig_LeftFoot mixamorig_LeftToeBase mixamorig_RightUpLeg mixamorig_RightLeg mixamorig_RightFoot mixamorig_RightToeBase</Name_array>\r\n          <technique_common>\r\n            <accessor source=\"#Armature_Stormtrooper-skin-joints-array\" count=\"52\" stride=\"1\">\r\n              <param name=\"JOINT\" type=\"name\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"Armature_Stormtrooper-skin-bind_poses\">\r\n          <float_array id=\"Armature_Stormtrooper-skin-bind_poses-array\" count=\"832\">-0.6016845 0 0 -0.003793656 0 0 0.6016845 -2.116619 0 -0.6016845 0 -0.01212382 0 0 0 1 -0.6016845 0 0 -0.003793656 0 0.04000759 0.6003529 -2.297517 0 -0.600353 0.04000759 -0.1528367 0 0 0 1 -0.6016845 0 0 -0.003793656 0 0.04000765 0.6003529 -2.51497 0 -0.600353 0.04000765 -0.1528369 0 0 0 1 -0.6016845 0 0 -0.003793656 0 0.04000759 0.6003529 -2.763487 0 -0.600353 0.04000759 -0.1528366 0 0 0 1 -0.6016845 0 0 -0.003793656 0 0 0.6016845 -3.046498 0 -0.6016845 0 0.04984343 0 0 0 1 -0.6016845 0 0 -0.003793656 0 0 0.6016845 -3.132373 0 -0.6016845 0 0.03043901 0 0 0 1 0.02328914 0.5998863 -0.04022777 0.1540204 -0.5604909 0.0070948 -0.2186868 0.9715747 0.2175588 -0.04593825 -0.5590903 2.835405 0 0 0 1 0.004856288 0.6016234 0.007071614 -0.08567851 -0.2865747 0.008531093 -0.5289863 2.365099 0.5290328 -9.01463e-4 -0.2866143 1.716795 0 0 0 1 -0.07411831 0.5807852 -0.1386336 0.4212675 -0.2931283 -0.157097 -0.5014186 1.730822 0.5201986 -0.005772352 -0.3022985 1.771283 0 0 0 1 -0.03076994 0.580749 -0.1542983 0.5361043 -0.2370864 -0.1536996 -0.5312164 1.483415 0.5521481 -0.03363311 -0.236697 1.587972 0 0 0 1 -0.2092508 0.2201328 -0.5194035 1.499915 0.09588485 -0.5320445 -0.2641192 0.9035589 0.5559176 0.1746265 -0.1499512 1.311785 0 0 0 1 -0.2092507 0.2201325 -0.5194037 1.489645 0.09629935 -0.5319144 -0.2642306 0.8272307 0.555846 0.1750231 -0.1497542 1.311168 0 0 0 1 -0.2092509 0.2201323 -0.5194036 1.49473 0.05429661 -0.5435532 -0.2522417 0.6424812 0.5615071 0.1345949 -0.1691691 1.363251 0 0 0 1 -0.079364 0.5361335 -0.2613168 0.867995 -0.2334324 -0.2705121 -0.4841042 1.06559 0.5488486 -0.03752696 -0.2436821 1.598803 0 0 0 1 -0.07936412 0.5361337 -0.2613166 0.8679708 -0.2197821 -0.2713575 -0.4899848 1.03428 0.5544559 -0.03082263 -0.2316306 1.573697 0 0 0 1 -0.079364 0.5361337 -0.2613165 0.8679132 -0.281471 -0.2660848 -0.4604315 0.7841598 0.5258322 -0.06151288 -0.2859032 1.673844 0 0 0 1 -0.05005973 0.56623 -0.1972355 0.6662654 -0.2305584 -0.2008824 -0.5181828 1.199797 0.5534989 -0.03246593 -0.2336858 1.585596 0 0 0 1 -0.05006003 0.5662301 -0.1972353 0.6662263 -0.2601738 -0.1988312 -0.5047772 1.029541 0.5402109 -0.04328894 -0.2613855 1.64372 0 0 0 1 -0.05005878 0.5662299 -0.1972359 0.6662651 -0.2466232 -0.1998488 -0.5111377 0.9927153 0.5465303 -0.03831917 -0.2487177 1.61947 0 0 0 1 -0.03789186 0.5758582 -0.1702225 0.5371506 -0.2283039 -0.1715684 -0.5295904 1.227248 0.5553969 -0.03123784 -0.2293089 1.573658 0 0 0 1 -0.03789222 0.5758581 -0.1702228 0.5371091 -0.2694273 -0.1687335 -0.5108447 1.04074 0.5366539 -0.04405242 -0.2684887 1.656622 0 0 0 1 -0.03789293 0.5758582 -0.1702222 0.5371355 -0.2609315 -0.169407 -0.5150149 1.000942 0.5408356 -0.04138535 -0.2604004 1.641043 0 0 0 1 0.007571339 0.5978616 -0.06729388 0.2507344 -0.2635321 -0.05720382 -0.5378688 1.21967 0.5408491 -0.03624242 -0.2611377 1.639578 0 0 0 1 0.007571578 0.5978615 -0.06729388 0.2507305 -0.2463403 -0.05831849 -0.5458384 1.206925 0.5488928 -0.03442013 -0.2440411 1.602304 0 0 0 1 0.007571876 0.5978615 -0.06729412 0.2507183 -0.3019561 -0.05443286 -0.5175749 0.9801029 0.5203743 -0.04028505 -0.2993525 1.71323 0 0 0 1 0.007985234 -0.6003043 0.03994154 -0.1524853 0.560491 -0.007094919 -0.2186868 0.9798182 -0.2186561 -0.04010933 -0.559111 2.832266 0 0 0 1 -0.01931321 -0.6006252 -0.03001302 0.2014932 0.2864865 0.01721292 -0.5288228 2.36747 -0.5287504 0.03126496 -0.2854295 1.701822 0 0 0 1 -0.09704118 -0.5823716 0.1159768 -0.3085718 0.2941737 -0.14923 -0.5032063 1.739327 -0.5158191 0.02445548 -0.3087994 1.783351 0 0 0 1 -0.03488236 -0.5797001 0.1573386 -0.5373371 0.2467498 -0.1575212 -0.5256671 1.454562 -0.5476515 -0.03404891 -0.2468662 1.609956 0 0 0 1 -0.2214143 -0.2070422 0.5197436 -1.484032 -0.08872538 -0.538898 -0.2524701 0.8492465 -0.5523838 0.169549 -0.1677787 1.359708 0 0 0 1 -0.2214139 -0.2070422 0.5197438 -1.47351 -0.06758844 -0.5449737 -0.2458858 0.7147126 -0.5553666 0.1488675 -0.1772875 1.387982 0 0 0 1 -0.2214139 -0.2070423 0.5197438 -1.474819 -0.07537037 -0.5428323 -0.248348 0.6526704 -0.5543642 0.1564957 -0.1738216 1.378964 0 0 0 1 -0.08823126 -0.5309424 0.2689607 -0.877107 0.2211675 -0.2816782 -0.4834942 1.080361 -0.5525619 -0.02796477 -0.2364695 1.585389 0 0 0 1 -0.08823144 -0.5309426 0.2689602 -0.8770607 0.2175381 -0.2818552 -0.4850351 1.01992 -0.5540008 -0.02611613 -0.2332929 1.578733 0 0 0 1 -0.08823066 -0.5309426 0.2689604 -0.877008 0.2662934 -0.2783822 -0.4621854 0.8093545 -0.5322854 -0.05126172 -0.2758064 1.657904 0 0 0 1 -0.0501604 -0.5687822 0.1897236 -0.6442478 0.2849513 -0.190126 -0.4946506 1.049034 -0.527552 -0.04861354 -0.2852194 1.693662 0 0 0 1 -0.05015999 -0.5687822 0.1897238 -0.6443302 0.2571827 -0.1923931 -0.5087891 1.051221 -0.5416322 -0.0386793 -0.2591579 1.641306 0 0 0 1 -0.05016088 -0.5687823 0.1897232 -0.6443048 0.2439296 -0.193277 -0.5149433 1.011739 -0.5477287 -0.03398633 -0.2467037 1.617173 0 0 0 1 -0.03075718 -0.5822499 0.1485373 -0.483438 0.246229 -0.1478838 -0.528702 1.191929 -0.5481329 -0.03375983 -0.2458354 1.610557 0 0 0 1 -0.0307579 -0.5822499 0.1485371 -0.4834015 0.2726808 -0.1460606 -0.5160772 1.047372 -0.5354657 -0.0409345 -0.2713397 1.663644 0 0 0 1 -0.03075772 -0.58225 0.1485371 -0.4834322 0.2626452 -0.1467986 -0.5210487 1.014541 -0.540459 -0.03820306 -0.2616659 1.645005 0 0 0 1 -0.01967751 -0.588273 0.1247881 -0.3767261 0.2737103 -0.119934 -0.5222288 1.132604 -0.5354624 -0.03968781 -0.2715317 1.660598 0 0 0 1 -0.01967763 -0.588273 0.124788 -0.3767099 0.2423998 -0.1220217 -0.5370078 1.172639 -0.550345 -0.03271061 -0.2409875 1.595677 0 0 0 1 -0.01967781 -0.5882731 0.1247878 -0.3766427 0.3408512 -0.113773 -0.4825977 0.8065754 -0.4954369 -0.05490839 -0.3369747 1.777436 0 0 0 1 0.5988152 -0.001897156 -0.05869907 0.4118908 -0.05872976 -0.01931458 -0.5984998 1.980878 -3.96743e-7 -0.6013719 0.01940745 -0.08449357 0 0 0 1 0.600736 -0.001091361 -0.03381985 0.3662175 -0.03346866 0.06941038 -0.5967298 1.108922 -0.004981398 -0.597667 -0.06923985 0.07971 0 0 0 1 0.6002141 0.02925759 -0.03026044 0.3616977 0.005780696 -0.4857431 -0.355028 0.1899799 0.04169458 -0.3538678 0.4848337 -0.1368033 0 0 0 1 0.6016123 0.009162008 -0.002743363 0.3533661 0.009320437 -0.6003955 0.03825289 -0.2181702 0.002154588 0.03829067 0.600461 -0.02265435 0 0 0 1 0.5988348 0.005507409 0.05824142 -0.4027441 0.05850136 -0.05637544 -0.5961742 1.973186 -1.98605e-6 -0.5990133 0.0566439 -0.2039706 0 0 0 1 0.6007025 0.003237009 0.03422933 -0.3589539 0.03321635 0.1000524 -0.5923771 1.112057 0.008876919 -0.5932996 -0.0997098 0.08612108 0 0 0 1 0.6003562 -0.02749276 0.02901899 -0.354012 -0.005651175 -0.4907591 -0.348064 0.1849052 -0.0395745 -0.3470232 0.4899323 -0.1431595 0 0 0 1 0.6016142 -0.008859992 0.002726674 -0.345833 -0.009012401 -0.6004885 0.036848 -0.2302471 -0.002178728 0.03688424 0.600549 -0.02243959 0 0 0 1</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#Armature_Stormtrooper-skin-bind_poses-array\" count=\"52\" stride=\"16\">\r\n              <param name=\"TRANSFORM\" type=\"float4x4\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <source id=\"Armature_Stormtrooper-skin-weights\">\r\n          <float_array id=\"Armature_Stormtrooper-skin-weights-array\" count=\"8561\">0.001075327 0.01480233 0.9841223 9.74015e-4 0.03297698 0.966049 9.13393e-4 0.02647805 0.9726086 0.001315176 0.0393036 0.9593812 0.001305222 0.08424645 0.9144483 0.001932799 0.02430909 0.9737581 0.00155878 0.008719146 0.989722 0.003288626 0.02032381 0.9763875 0.002557158 0.00607568 0.9912959 7.11832e-5 0.003764986 0.01820534 0.9780296 0.002964317 0.005825459 0.9912102 0.004840314 0.01892918 0.9762305 0.003893494 0.005866229 0.9902402 0.004360318 0.005507588 0.990132 0.005748569 0.01980435 0.974447 0.00811541 0.006736993 0.9851476 0.004188179 0.0690388 0.926773 0.003459751 0.06973338 0.9268068 0.002931177 0.07197237 0.9250964 0.001702368 0.08008134 0.9182162 0.001169383 0.1124059 0.8864247 0.001387178 0.1977308 0.8008819 0.01043301 3.18671e-4 0.3095809 0.6796675 0.08146232 0.001565456 0.3942346 0.5227376 0.001388847 5.7782e-4 0.2468252 0.7512081 0.001361608 7.51032e-4 0.2695481 0.7283391 0.001271724 8.296e-4 0.280372 0.7175266 0.001357793 0.001004099 0.2874065 0.7102316 0.005155205 0.07146424 0.9233805 0.01128911 0.02328437 0.9654265 0.01525694 0.009737491 0.9750055 0.02431315 0.03153157 0.9441553 0.0105074 0.09018915 0.8993034 0.002355456 0.003966689 0.292916 0.7007619 0.001463949 0.001450598 0.2869107 0.7101747 0.00572431 1.78909e-4 0.4995193 0.4945775 0.00582993 1.1216e-4 0.4891378 0.50492 0.006489992 8.3932e-5 0.4811869 0.5122391 0.01104736 9.95351e-5 0.443422 0.545431 0.02306723 2.49446e-4 0.4779154 0.4987679 0.06887143 0.002923429 0.5320109 0.3961942 0.01597595 3.0842e-4 0.5933708 0.3903447 0.01778376 0.002621769 0.6653219 0.3142725 0.008330106 6.32859e-5 0.603892 0.3877146 0.007454514 6.88986e-5 0.614514 0.3779626 0.007027268 1.17326e-4 0.6297116 0.3631438 0.006061255 3.07539e-4 0.5078249 0.4858064 0.01007795 0.001517117 0.5230258 0.4653791 0.007256388 2.58073e-4 0.6370456 0.3554399 0.003296971 2.03984e-4 0.7184595 0.2780395 0.004041135 1.52882e-4 0.7057363 0.2900696 0.005035877 1.81074e-4 0.691414 0.3033691 5.92008e-4 0.7449541 0.2544539 4.23538e-4 0.7594583 0.2401182 5.25617e-4 0.7690119 0.2304626 0.003063857 5.26901e-4 0.7319167 0.2644926 0.001284241 0.7873941 0.2113215 4.30144e-4 0.005944967 0.7961291 0.1974958 0.01064431 0.001767218 0.680962 0.3066264 0.02062827 0.005089581 0.5991976 0.3750845 0.01413017 0.01506465 0.3707163 0.6000887 0.02761197 0.1143378 0.8580502 0.05120903 0.05363214 0.8951588 0.07355993 0.1801456 0.7462944 0.09057235 0.06145107 0.4738843 0.3740923 0.04400426 0.02204 0.6995194 0.2344363 0.03029626 0.02040773 0.9492959 0.02555257 0.01577991 0.9586675 8.85888e-4 0.02878808 0.970326 9.62786e-4 0.03757041 0.9614668 0.001001358 0.01244741 0.9865512 0.001538276 0.02960181 0.9688599 0.001397192 0.1009649 0.897638 0.001417934 0.007344603 0.990745 4.92422e-4 9.3114e-4 0.1623285 0.8367403 0.03962951 0.001375019 0.2260139 0.7329815 0.1036505 0.002107441 0.3931277 0.5011143 0.01604413 1.25315e-4 0.4698207 0.5140099 0.0740866 0.003404438 0.5346145 0.3878945 0.01631295 3.40777e-4 0.5941576 0.3891887 0.01365464 0.003759741 0.6804916 0.302094 0.006305634 1.18735e-4 0.6672804 0.3262952 0.001057684 0.7616336 0.2373086 0.001048386 0.7748251 0.2241264 0.001968026 0.7980443 0.1999877 0.008329212 0.8158378 0.175833 0.01053762 0.001671195 0.6766984 0.3110927 0.04437333 0.02133476 0.6864215 0.2478703 0.01441055 0.002642095 0.5646366 0.4183108 0.1024616 0.07063651 0.4768291 0.3500727 4.60611e-4 0.01335608 0.1863357 0.7998476 0.008561134 0.09078127 0.2112606 0.6893969 0.06015169 0.06514149 0.8747068 0.01666164 0.02770382 0.9556345 0.03395736 0.02487689 0.9411657 0.01387876 0.007879793 0.9782415 0.02831828 0.01860326 0.9530784 0.007389247 0.00536561 0.9871914 5.38073e-5 0.004322826 0.03578752 0.9598897 0.003918468 0.004579722 0.9906852 8.16607e-4 0.003112256 0.004567742 0.991487 8.32948e-4 0.002381563 0.004948437 0.9917301 9.39892e-4 0.003777086 3.27115e-4 0.3999354 0.5959604 0.009402215 0.01742023 0.9703205 0.002856969 0 0.02475559 0.03148484 0.9414207 0.002338707 0 0.03033566 0.04046082 0.9272957 0.001907765 0 0.01769721 0.05383127 0.9275984 8.73111e-4 0 0.0583626 0.104946 0.836424 2.6739e-4 0 0.006601512 0.04266268 0.949174 0.00156176 0 0.003630101 0.01199823 0.980468 0.003903687 0 0.005290389 0.04203408 0.9505391 0.002136349 0 0.002437174 0.009522259 0.982163 0.005877494 0 0.005420207 0.0383684 0.9538333 0.002377927 0 0.002575814 0.00953871 0.9818425 0.006042897 0 0.007138907 0.04223519 0.948203 0.002422749 0 0.003353416 0.0102958 0.9800461 0.006304621 0 0.004092812 0.01041793 0.9786706 0.006818592 0 0.009162068 0.0472511 0.9412133 0.002373516 0 0.01026624 0.01532632 0.9672871 0.007120311 0 0.01196861 0.1606017 0.8269867 4.42967e-4 0 0.0097332 0.1543772 0.8354586 4.3089e-4 0 0.008720815 0.1547926 0.8360834 4.03356e-4 0 0.01074391 0.1719996 0.8170263 2.30044e-4 0 0.02956891 0.209212 0.7612191 0 0.08980655 0.2932404 0.616953 0.009227752 0.03039193 0.5326498 0.4277305 0.04049789 0.08919125 0.6034899 0.2668209 0.002424776 0.01208209 0.470305 0.515188 0.002213239 0.01077836 0.4943326 0.4926757 0.002474188 0.01208323 0.5113556 0.474087 0.002607524 0.0150389 0.5173912 0.4649624 0.01608562 0.1741626 0.8093382 4.13621e-4 0 0.02336412 0.05708259 0.9170674 0.002485871 0 0.02888363 0.02453351 0.9396875 0.006895422 0.06589996 0.0769118 0.8551763 0.002011954 0.0413357 0.2111267 0.74744 9.76494e-5 0 0.003530025 0.04916322 0.5012806 0.4460261 0.002692401 0.01943188 0.5151722 0.4627035 0.007061898 0.02005982 0.6931534 0.2797248 0.006933212 0.01593917 0.6920656 0.285062 0.007204592 0.01431381 0.6918089 0.2866727 0.009492337 0.01570057 0.6803728 0.2944342 0.01625591 0.03060454 0.7087239 0.2444155 0.03809815 0.08918064 0.7356333 0.1370878 0.01383465 0.03441464 0.7884 0.1633506 0.01773816 0.1020839 0.8168781 0.06329977 0.009623885 0.02134257 0.7785367 0.1904967 0.009324371 0.02279108 0.7788627 0.1890217 0.009380578 0.02834486 0.7773262 0.1849482 0.007496774 0.02599662 0.6942268 0.2722797 0.01064205 0.06318509 0.6756642 0.2505086 0.009915828 0.0367859 0.7735065 0.1797917 0.01002407 0.04175114 0.8327563 0.1154686 0.01003038 0.03649508 0.834925 0.1185494 0.01051414 0.03745079 0.8336694 0.1183656 0.009718358 0.05944627 0.8655346 0.06530076 0.00922501 0.05373471 0.8683452 0.06869512 0.009109139 0.05839198 0.8663697 0.06612914 0.0105651 0.0570051 0.8247267 0.107703 0.009460508 0.08235239 0.854149 0.05403804 0.01415973 0.1731545 0.7680724 0.04461336 0.01370787 0.09090089 0.7564143 0.1389769 0.01825171 0.1344224 0.6680593 0.1792665 0.01247429 0.1497941 0.5139341 0.3237975 0.1201342 0.2378855 0.6419803 0 0.1558938 0.09726679 0.7463992 4.40234e-4 0.2917427 0.2668781 0.4413792 0.04045683 0.3351459 0.4557516 0.1686456 0.03110122 0.3068233 0.5954529 0.06662249 0.07238054 0.03702837 0.88613 0.00446099 0.05766779 0.03029984 0.9062498 0.005782425 0.02398985 0.03007727 0.9434574 0.0024755 0 0.008609831 0.01442605 0.9736114 0.003352761 0 0.03390324 0.0436173 0.9206222 0.001857221 0 0.01013296 0.04408782 0.9445914 0.00118786 0 0.003279626 0.009301364 0.9826334 0.004785537 0 0.06961733 0.1197013 0.8105055 1.75753e-4 0 0.008594572 0.08100771 0.9091637 0.001233994 0 0.002213537 0.007671296 0.9831412 0.006973862 0 0.002562999 0.007374167 0.9821636 0.007899224 0 0.003455281 0.007838129 0.9800038 0.008702635 0 0.008952319 0.01191842 0.9703361 0.008793056 0 0.03953391 0.06625235 0.8917878 0.002425909 0 0.02631008 0.02175182 0.9440671 0.007870912 0.08424592 0.03850203 0.8728861 0.004365861 0.05927133 0.02893847 0.9055895 0.006200551 0.1868513 0.1012737 0.711677 1.98035e-4 0.08295309 0.3573459 0.559701 0 0.3267842 0.2712367 0.4019791 0.04879021 0.3750876 0.432608 0.1435142 0.01396095 0.09351581 0.6772322 0.215291 0.0303269 0.2595558 0.6138398 0.09627741 0.004919528 0.01486021 0.6179366 0.3622836 0.01843076 0.3266438 0.6549255 0 0.1072267 0.3130314 0.5797419 0.04793608 0.1067676 0.5915256 0.2537707 0.01248496 0.02225607 0.6946069 0.270652 0.04179674 0.09785312 0.7300307 0.1303194 0.009838938 0.03002142 0.8051944 0.1549453 0.01410681 0.09568619 0.7511488 0.1390581 0.01234173 0.1838444 0.7800074 0.02380651 0.008207023 0.092013 0.8683357 0.03144425 0.008399784 0.0681405 0.8756324 0.04782718 0.008859217 0.073116 0.8735073 0.04451739 0.01653051 0.1009734 0.8215615 0.06093442 0.01381838 0.03452265 0.7889778 0.1626811 0.05745214 0.9425479 0.05640161 0.9435985 0.04506683 0.9549332 0.04857629 0.9514238 0.06267952 0.9373205 0.05549782 0.9445022 0.07033318 0.9296668 0.06391197 0.936088 0.07990455 0.9200955 0.1108169 0.8891831 0.08384978 0.9161502 0.1060563 0.8939437 0.08050388 0.9194961 0.0931465 0.9068535 0.07383781 0.9261622 0.08285069 0.9171493 0.06639647 0.9336035 0.06245517 0.9375448 0.05990064 0.9400994 0.04496222 0.9550378 0.06803232 0.9319676 0.8642948 0.1357052 0.94844 0.05156004 0.9981207 0.001879274 0.9051439 0.09485614 0.7942273 0.2057727 0.9224131 0.07758694 1 0.9760663 0.02393364 0.8580957 0.1419043 0.7973304 0.2026696 0.8020408 0.1979592 0.7305778 0.2694221 0.7162501 0.2837499 0.6683339 0.3316661 0.6893558 0.3106442 0.7669125 0.2330875 0.7462478 0.2537522 0.8010356 0.1989644 0.8532244 0.1467756 0.6859847 0.3140153 0.6846012 0.3153988 0.6220845 0.3779155 0.575714 0.424286 0.6282706 0.3717294 0.5995315 0.4004685 0.5153483 0.4846517 0.5446932 0.4553067 0.4260793 0.5739207 0.5946276 0.4053725 0.5434808 0.4565193 0.4737673 0.5262327 0.4759988 0.5240013 0.2864775 0.7135226 0.4252464 0.5747537 0.5664612 0.4335388 0.42234 0.57766 0.5970342 0.4029658 0.1759566 0.8240435 0.350906 0.649094 0.4725911 0.527409 0.2733802 0.7266198 0.5393019 0.460698 0.1759566 0.8240435 0.4604936 0.5395064 0.6399146 0.3600854 0.5627755 0.4372246 1 1 0.4531964 0.5468037 0.6387081 0.3612919 1 0.8919854 0.1080146 1 1 1 1 1 1 0.8921539 0.107846 0.9909676 0.009032309 0.982122 0.01787799 0.932771 0.06722897 0.9629356 0.03706431 1 1 1 0.6279 0.3721 0.5851935 0.4148065 0.6050456 0.3949544 0.5672636 0.4327364 0.583014 0.4169861 0.5382413 0.4617586 0.5796333 0.4203668 0.5975185 0.4024816 0.6228129 0.3771871 0.6308751 0.3691249 0.6788271 0.321173 0.6848667 0.3151333 0.732718 0.267282 0.7350752 0.2649248 0.7901074 0.2098926 0.7870543 0.2129457 0.8476029 0.1523971 0.8384055 0.1615945 0.8244321 0.1755679 0.8308936 0.1691064 0.8533284 0.1466716 0.8380288 0.1619712 0.8326777 0.1673223 0.8435302 0.1564698 0.7389499 0.2610502 0.7587589 0.2412411 0.5553726 0.4446274 0.5226746 0.4773255 0.5191801 0.48082 0.5153902 0.4846098 0.5133974 0.4866026 0.4509876 0.5490124 0.5635008 0.4364992 0.5764722 0.4235278 0.6283612 0.3716388 0.6318917 0.3681083 0.6848533 0.3151468 0.6829737 0.3170263 0.7396007 0.2603993 0.7346032 0.2653969 0.7854198 0.2145802 0.7796796 0.2203204 0.7337498 0.2662502 0.69917 0.30083 0.0428605 0.9571395 0.06208395 0.9379161 0.06143605 0.938564 0.04503905 0.954961 0.06701457 0.9329854 0.05438226 0.9456177 0.0766189 0.923381 0.06943356 0.9305664 0.09594208 0.9040579 0.1126173 0.8873828 0.09951603 0.900484 0.1133303 0.8866698 0.09707629 0.9029238 0.1156488 0.8843511 0.08828914 0.9117108 0.09384882 0.9061511 0.07709079 0.9229092 0.0726751 0.9273248 0.06814205 0.931858 0.0463584 0.9536415 0.07614445 0.9238556 0.02274996 0.7370948 0.2401552 0.0857284 0.8055806 0.1086909 0.1282182 0.7907436 0.08103811 0.01892071 0.7168553 0.2642239 0.07588845 0.01686447 0.9072471 0.1031005 0.01445615 0.8824433 0.006238162 0.1124582 0.8813036 0.1535825 0.8464174 0.1168959 0.8831041 0.003226101 0.144553 0.8522209 0.003843665 0.141519 0.8546373 0.6482141 0.3517858 0.7527873 0.2472127 0.01229196 0.5125798 0.4751282 0.004356443 0.3849226 0.6107209 0.4866837 0.5133163 0.2460703 0.7539297 0.1202643 0.1615875 0.7051795 0.01296865 0.1586794 0.8413206 0.424959 9.59858e-4 0.008735358 0.5653458 0.1602138 0.8397862 0.6047575 0.3952425 0.003762602 0.2207949 0.7754425 0.6655398 0.3344603 0.01385694 0.2763807 0.7097623 0.6925622 0.3074378 0.02756005 0.3054143 0.6670257 0.008573651 0.6924193 0.2990071 0.04448932 0.3433065 0.6122041 0.6748608 0.3251392 0.7957748 0.2042253 0.7612856 0.2387144 0.6340482 0.3659518 0.07990014 0.07812672 0.7193932 0.1225799 0.1516232 0.06019228 0.5555698 0.2326147 0.2568251 0.04746001 0.4319202 0.2637946 0.3279395 0.02591103 0.2358087 0.4103408 0.7138571 0.2861428 0.6573825 0.3426175 0.006890594 0.7418521 0.2512574 0.008900225 0.7056677 0.2854321 0.002128005 0.2945147 0.7033573 0.01486867 0.5149252 0.4702062 0.01864176 0.5129058 0.4684525 0.003428757 0.2998982 0.696673 0.152226 0.847774 1.86577e-4 0.1462655 0.8535479 4.91388e-4 0.1457918 0.8537168 0.001426815 0.1407193 0.8578539 0.01039361 0.2219995 0.7676069 0.01202768 0.2109183 0.777054 0.04705595 0.3190296 0.6339144 0.05181878 0.3118 0.6261528 0.01022845 0.7544084 0.2455917 0.8017829 0.198217 0.09369713 0.9063029 0.737282 0.262718 0.005494177 0.7716464 0.2228593 0.02455055 0.4980866 0.4773628 0.01268094 0.1911832 0.7924602 0.00367552 0.05642592 0.2931064 0.6281237 0.02234387 0.003567159 0.1221371 0.8742957 0.007853806 0.2587863 0.7333599 0.08852732 0.9114727 0.00662589 0.0936259 0.8934752 0.006272971 0.004302263 0.1170367 0.8786609 0.04540312 0.9433541 0.01124274 0.02487999 0.9751201 1 0.01648193 0.9652493 0.01826876 1 0.1491359 0.4666535 0.3835807 6.2997e-4 0.1695699 0.6399843 0.1904458 0.3438561 0.3818562 0.2557638 0.01852399 0.4481775 0.5004073 0.0514152 0.08341425 0.1624568 0.6041344 0.1499945 0.9603481 0.03965187 1 0.9910259 0.008974075 0.8970149 8.8964e-4 0.1020954 0.7906801 0.003857135 0.002699375 0.2027634 0.04490399 0.1791391 0.7170531 0.05890375 0.01300781 0.1617047 0.8077747 0.01751279 0.01437097 0.1126395 0.8269465 0.04604309 0.03878295 0.1060127 0.7455354 0.1096689 0.07262343 0.137001 0.6246821 0.1656934 0.05131191 0.1865942 0.4076796 0.3544142 0.1558175 0.1983996 0.3755561 0.2702267 0.1557066 0.220339 0.6239544 0.1543033 0.2180675 0.6276291 0.1100572 0.1539393 0.7360036 0 0.5862788 0.2808979 0.1216478 0.01117545 0.03694236 0.7582113 0.1654897 0.03935658 0.0650587 0.8823277 0.02097481 0.01978796 0.01185059 0.08982378 0.1258398 0.7837701 5.66296e-4 0 0.04305428 0.01782864 0.9379057 0.001211285 0.03955626 0.01958286 0.9407149 1.46056e-4 0.1067494 0.7838752 0.004455924 0.01279163 0.09212774 0.4540876 0.5459124 0.04319292 0.7688331 0.187974 0.02235764 0.6848664 0.2927759 0.01677286 0.6293898 0.3538373 0.01588469 0.5912141 0.3929012 0.2876389 0.7123611 0.1523028 0.7256093 0.1220878 0.3511316 0.6488685 0.0186057 0.608276 0.3731182 0.3691285 0.6308715 0.003079831 0.6205298 0.3763903 0.2104243 0.6732121 0.1163635 0.2224514 0.6713144 0.1062341 0.08581006 0.9085527 0.005637168 0.0732032 0.9267968 0.1701902 0.7303988 0.09941095 0.4215228 0.5430979 0.03537935 0.09277248 0.6935781 0.2136493 0.1416003 0.6561155 0.2022841 0.1494828 0.6640403 0.1864768 0.08822166 0.6869837 0.2247946 0.1271589 0.6511002 0.2217408 0.1313036 0.6602506 0.2084459 0.4132788 0.5589107 0.02781057 0.1656295 0.7464405 0.08792996 0.09487235 0.9051277 0.08669793 0.913302 0.3783978 0.6216023 0.4828475 0.5171525 0.4862111 0.5137889 0.433623 0.5663771 0.4837949 0.516205 0.488574 0.511426 0.5313702 0.4686298 0.55616 0.44384 0.007662713 0.6440289 0.3483084 0.5437346 0.4562655 0.02345842 0.7169914 0.2595502 0.01378208 0.6975947 0.2886232 0.0220555 0.7104771 0.2674674 0.0299474 0.7396346 0.230418 0.04654252 0.7581602 0.1952971 0.05838727 0.8022873 0.1393254 0.09518659 0.7954749 0.1093384 0.1241255 0.797006 0.07886838 0.1438287 0.03722488 0.8189464 0.1570297 0.03615915 0.8068112 0.4375449 0.1480132 0.4144418 0.01977795 0.659206 0.321016 0.03080588 0.6285286 0.3406655 0.04843538 0.6478628 0.3037018 0.04814302 0.6910102 0.2608468 0.04472017 0.7285327 0.226747 0.1727063 0.7541993 0.07309442 0.293679 0.6886358 0.01768517 0.1568995 0.7152578 0.1278427 0.1495196 0.6900059 0.1604744 0.1183227 0.7071686 0.1745087 0.08832085 0.7563735 0.1553056 0.1743069 0.8256931 0.3279396 0.6468794 0.02518093 0.3488901 0.6511099 0.4362397 0.5637603 0.4696663 0.5303338 0.5531771 0.4468229 1 0.9255499 0.0454235 0.02902656 1 0.7601984 0.2398017 0.9537394 0.04626059 0.4952347 0.5039125 8.52744e-4 0.6582249 0.1722946 0.1694803 0.4226232 0.3591794 0.2181974 0.258714 0.7411283 1.57724e-4 0.2585874 0.4887505 0.2526621 0.3907499 0.609219 3.10942e-5 0.5520525 0.4479476 0.8466863 0.1533138 0.6982206 0.3017795 0.762862 0.2371381 0.8346982 0.1653019 0.7962258 0.2037742 0.8259654 0.1740345 0.8287343 0.1712657 0.7825888 0.2174112 0.8375315 0.01480275 0.1476657 0.5119867 0.4880133 0.49746 0.50254 0.6250867 0.3749133 0.8571312 0.02732622 0.1155425 0.6801783 0.3198217 0.9339733 0.01917195 0.04685479 0.7515544 0.2484456 0.9709446 0.02905535 1 0.8476665 0.1257779 0.02655559 0.4518401 0.5475552 6.04671e-4 0.5913967 0.3165082 0.09209513 0.4135949 0.5864051 0.4116793 0.5883207 0.2560269 0.7439731 0.2504448 0.7495552 0.2114143 0.7885857 0.2337747 0.7662253 0.2144204 0.7855796 0.2441277 0.7558709 1.32091e-6 0.2952626 0.7045776 1.59713e-4 0.38346 0.5494874 0.0670526 0.2001391 0.7993596 5.01291e-4 0.2585579 0.6352658 0.1061763 0.1968507 0.8031098 3.95451e-5 0.1386598 0.8613402 0.1333569 0.8666431 0.1212778 0.8787221 0.1174133 0.8825867 0.1363633 0.8636367 0.1812629 0.8187372 0.2230527 0.7769473 0.2297393 0.7702607 0.4882585 0.5117416 0.5538832 0.4461168 0.4736644 0.5263357 0.5570146 0.4429854 0.6322604 0.3677396 0.5099895 0.4900104 0.6672905 0.3327096 0.522374 0.4776261 0.3308198 0.6691774 2.77813e-6 0.3523148 0.6476825 2.79216e-6 0.2397271 0.7602124 6.04095e-5 0.2268943 0.7730797 2.59401e-5 0.09641218 0.8984006 0.005187153 0.05732113 0.9423181 3.6078e-4 0.0276786 0.9715812 7.40221e-4 0.05555033 0.9330664 0.01138323 0.04106622 0.956861 0.002072691 0.03613817 0.9623444 0.001517415 0.08653366 0.8740094 0.03945696 0.0679419 0.7182078 0.2138502 0.09457081 0.7277342 0.1776949 0.1633264 0.6434283 0.1932454 0.1941258 0.7987303 0.007143914 0.1112871 0.8887105 2.29126e-6 0.1233106 0.8764639 2.25465e-4 0.077609 0.9219453 4.45807e-4 0.1873767 0.7138494 0.09877389 1 1 0.9999812 1.88865e-5 0.0187031 0.9812937 3.20861e-6 1 0.04324173 0.9567583 1 0.1038547 0.8961431 2.31123e-6 0.07013911 0.929623 2.37884e-4 0.1102179 0.8897821 0.04101449 0.9589855 0.02814 0.97186 1 1 0.02020204 0.979798 1 0.03066146 0.9693385 1 0.08216446 0.9178355 0.04579347 0.9542065 1 0.05483818 0.9451618 0.1475744 0.8524256 0.2550821 0.7449179 0.1640669 0.835933 0.12102 0.87898 0.09975343 0.9002466 0.4504711 0.549529 0.1907024 0.8092976 0.2134041 0.7865959 0.05928117 0.9407188 1 0.03980821 0.9601915 2.6845e-7 1 0.008025228 0.9919738 1.0289e-6 1 0.09719347 0.9028065 0.1083935 0.8916065 0.2282809 0.5062051 0.2655141 0.5440589 0.3493574 0.1065836 0.6069259 0.2908695 0.1022046 0.2699663 0.4418437 0.2881901 0.8314511 0.120848 0.018691 0.02900981 0.1466513 0.4729945 0.3803542 0.4670885 0.279915 0.246118 0.006878435 0.7943435 0.104072 0.0609104 0.04067409 0.5809304 0.1605746 0.2363037 0.02219134 0.09921455 0.9007854 0.08625394 0.9137461 0.1716611 0.8283389 0.3964266 0.6035735 0.168362 0.5170422 0.3145958 0.04747998 0.95252 0.1251842 0.8748158 0.7011648 0.1196669 0.1791683 0.725049 0.1020317 0.1502169 0.02270251 0.9177346 0.001474976 0.0807904 0.9892058 3.2773e-4 0.01046645 0.739643 0.08305048 0.1773065 1 0.7806693 0.07106828 0.1482625 0.09834551 0.9016546 0.07733911 0.922661 0.06847888 0.9315211 0.09954839 0.9004516 0.6420348 0.2875781 0.07038718 0.7319568 0.2131618 0.05488127 0.8703199 0.08573669 0.006517946 0.03742545 0.833639 0.01365524 0.001192927 0.1515127 0.772688 0.2273119 0.002386271 0.001448869 0.8537904 0.1423745 0 0.003741443 0.002179026 0.831282 0.1627975 0 0.01463407 0.01202684 0.9486367 0.02470237 0 0.01388794 0.01321274 0.9566952 0.01620399 0 0.001472175 8.80363e-4 0.8812396 0.1164078 1.41339e-7 0.04282271 0.05202829 0.9007473 0.004401624 0 0.03107774 0.0350914 0.9281252 0.005705714 0 0.03531789 0.03048145 0.9342006 0 0.08429181 0.1103324 0.804576 7.99798e-4 0 0.1178909 0.1657335 0.7163757 0 0.1215589 0.3114392 0.5670019 0.01930975 0.047899 0.5890871 0.3437041 0.01880019 0.03676486 0.6967622 0.2476727 0.01144838 0.02980202 0.8035345 0.155215 0.0142377 0.1157304 0.7650239 0.1050079 0.009837746 0.1705409 0.8070701 0.01255124 0.02156454 0.3164711 0.6353768 0.02658748 0.02521055 0.2211639 0.6503644 0.1032611 0.04269582 0.4512593 0.4775996 0.0284453 0.00807321 0.03577733 0.6836468 0.2725027 0.006638884 0.01218914 0.6494167 0.3317552 0.006195664 0.01649594 0.5514651 0.4258432 0.001031398 0.02695775 0.3937464 0.5782644 0.05312019 0.185168 0.7617118 0 0.03620821 0.07676213 0.8864422 5.87395e-4 0 0.0246582 0.04246926 0.9311634 0.001709103 0 0.007959663 0.007669091 0.9735017 0.01086944 0 0.001093626 6.58497e-4 0.8776137 0.120634 1.98989e-7 0.005428552 0.005657434 0.9782901 0.01062387 0 4.31705e-4 2.95558e-4 0.7851872 0.2140852 4.65189e-7 0.01608037 0.03280532 0.9492717 0.001842558 0 0.01126927 0.06428021 0.9236438 8.06663e-4 0 0.0175386 0.1929303 0.7894992 3.19852e-5 0 0.01056098 0.2537034 0.7357357 0 0.01019096 0.298411 0.691398 0 0.02286511 0.3387961 0.6383387 0 0.01277995 0.1198216 0.5711172 0.2962813 0.04576396 0.3431183 0.4977067 0.113411 0.05415111 0.4452913 0.3440162 0.1565414 0.02752363 0.4111567 0.3502206 0.211099 0.1191807 0.2435059 0.6373134 0 0.05197674 0.2498296 0.6981936 0 0.01007449 0.0716741 0.9167248 0.001526653 0 0.006742835 0.06891107 0.9231401 0.001205921 0 0.004351377 0.02258628 0.9702429 0.002819478 0 0.001779675 0.003171682 0.9786061 0.01644253 0 3.2322e-4 2.33214e-4 0.7076633 0.29178 2.68842e-7 0.001837432 0.003178596 0.9741122 0.02087175 0 0.004635453 0.02059733 0.9708049 0.003962218 0 0.02482002 0.07704621 0.896338 0.001795709 0 0.05855429 0.07757413 0.8618137 0.002057969 0.2397688 0.1054715 0.6547597 0.3435621 0.1249744 0.5314634 0.1236543 0.03548347 0.8397123 0.001149892 0.1838685 0.07677775 0.7390804 2.73292e-4 0.1323866 0.04161036 0.824486 0.001516938 0.04249584 0.01788216 0.938134 0.00148791 0.02910953 0.01401185 0.9468463 0.01003229 0.04238492 0.01504737 0.9304803 0.01208746 0.06132346 0.02301967 0.9076096 0.008047223 0.0590853 0.04036819 0.896102 0.00444442 0.05004101 0.043177 0.90241 0.004371821 0.01392596 0.02893513 0.9526903 0.004448711 0 0.004310071 0.004295527 0.9648157 0.0265786 0 7.89967e-4 4.44458e-4 0.7126246 0.286141 0.01080602 0.006326198 0.9578434 0.02502423 0.001810312 8.36026e-4 0.7725221 0.2248315 0.01334506 0.006659448 0.9511975 0.02879804 0.01621717 0.006462454 0.941989 0.03533124 0.01409137 0.007018625 0.9394847 0.03940522 0.003956079 0.00182408 0.8080867 0.1861331 0.003053128 0.001253843 0.784868 0.2108249 0.002179622 9.08762e-4 0.7866588 0.2102528 4.64769e-4 2.61244e-4 0.6264259 0.3728482 6.82555e-4 3.1555e-4 0.6121052 0.3868967 9.92575e-4 4.10377e-4 0.6360798 0.3625172 0.001949369 8.19985e-4 0.6911534 0.3060772 0.002618193 0.001224696 0.7338156 0.2623416 0.002769351 0.001553893 0.7802248 0.2154519 0 7.20909e-4 4.09942e-4 0.8140154 0.1848534 2.96731e-7 0.001368045 7.87299e-4 0.8382201 0.1596243 1.31495e-7 0.1340252 0.8659748 0.170319 0.8296809 0 0.1090735 0.8909265 0.1219314 0.8780686 1.88744e-5 1.27408e-5 0.4360368 0.5639312 4.37975e-7 0.2463546 0.7536439 1.51388e-6 2.75843e-5 1.91959e-5 0.4972841 0.5026686 5.43216e-7 1.62476e-4 1.15257e-4 0.6455228 0.354199 4.92326e-7 4.43014e-5 2.98472e-5 0.5217127 0.4782125 6.89596e-7 3.84906e-5 2.53829e-5 0.5176733 0.4822621 8.28632e-7 1.74708e-4 1.20617e-4 0.6672607 0.3324434 6.45439e-7 5.86192e-5 3.86793e-5 0.5473536 0.4525482 8.73768e-7 1.13305e-4 6.98249e-5 0.5933513 0.4064646 1.05955e-6 2.24122e-4 1.41683e-4 0.6712137 0.3284198 7.96147e-7 3.17057e-4 1.73097e-4 0.6899189 0.3095905 4.61202e-7 1.94652e-4 1.03331e-4 0.6323855 0.3673161 4.83594e-7 4.80293e-4 2.58308e-4 0.6627143 0.336547 1.70236e-7 2.82208e-4 1.46846e-4 0.6239441 0.3756267 2.17388e-7 1.19714e-4 6.18087e-5 0.6003233 0.3994948 4.26056e-7 0.001057386 5.16258e-4 0.6072548 0.3911715 0 5.39135e-4 2.6494e-4 0.5463211 0.4528749 0 0.3501327 0.6498673 0 7.21421e-4 3.66158e-4 0.5703474 0.428565 0 9.20363e-4 4.80374e-4 0.6014523 0.3971471 0 0.001576721 8.8758e-4 0.7012839 0.2962517 0 8.98076e-4 4.96074e-4 0.757185 0.2414207 1.50636e-7 6.48192e-4 3.59428e-4 0.6093361 0.3896563 0 5.78096e-4 3.2577e-4 0.7827476 0.2163481 3.51604e-7 3.19048e-4 2.09786e-4 0.7291868 0.2702837 6.1863e-7 0.1028697 0.8970294 1.00985e-4 0.1015468 0.8983927 6.03734e-5 0.01583087 0.9284937 0.05567538 0.0143035 0.9472359 0.03846055 0.0195325 0.9804675 0.02241373 0.9775863 0.02991425 0.9700857 0.01764261 0.9364333 0.04592412 0.1043877 0.8955046 1.07756e-4 0.09436964 0.9053505 2.79919e-4 0.09436762 0.9052332 3.99175e-4 0.08210462 0.9170727 8.22728e-4 0.01238965 0.9121586 0.07545173 0.01362186 0.9230234 0.06335479 0.02488577 0.9751142 0.02929162 0.9707084 0.008197307 0.8848185 0.1069842 0.0271281 0.9728719 0.05924594 0.9399947 7.59363e-4 0.05420261 0.9451157 6.81706e-4 0.04659599 0.9529038 5.00182e-4 0.04293853 0.9566247 4.36854e-4 0.005650341 0.9410477 0.05330204 0.006515026 0.9121785 0.08130639 0.007139265 0.9066351 0.08622562 0.05036669 0.9496333 0.08680111 0.9131988 0.07558369 0.9244163 0.005192995 0.9431844 0.05162262 0.04497426 0.9550257 0.0322687 0.9673679 3.63357e-4 0.004582464 0.9263798 0.06903779 0.03360056 0.9663994 0.00338602 0.877137 0.119477 0.003957569 0.9101626 0.08587986 0.03593176 0.9640683 0.3332267 0.6667733 0.3116663 0.6883337 0.3847901 0.6152099 0.3852018 0.6147983 0.08613741 0.9138232 3.94843e-5 0.08525699 0.9147062 3.69111e-5 0.06828051 0.9315764 1.43126e-4 0.06442075 0.9353882 1.91031e-4 0.05085158 0.948398 7.50396e-4 0.003950178 0.8052216 0.1908283 0.002653717 0.9138231 0.08352303 0.006149411 0.9594628 0.03438776 5.24764e-4 0.8828882 0.116587 0.001392006 0.8954504 0.1031575 0.002087652 0.9504249 0.04748737 0.004409611 0.958733 0.03685736 0.02444106 0.9755589 0.03242766 0.9675723 0.01978623 0.9752742 0.004939496 1 0.9818497 0.01815026 0.8611825 0.1388175 0.8340091 0.1659909 0.9056233 0.09437674 1 1 1 0.005183875 0.9948161 1 0.7852394 0.213884 8.76642e-4 0.8667181 0.133282 0.7425666 0.2534037 0.004029691 0.9643365 0.03566348 1 1 1 1 1 1 1 1 1 0.9926311 0.007368922 1 1 1 1 1 0.8154706 0.1798893 0.003823935 8.16135e-4 0.9995065 4.86649e-4 6.90722e-6 1 0.999566 3.80365e-4 5.37703e-5 0.9775811 0.02209162 3.27261e-4 0.8964164 0.08445894 0.00397545 0.01513028 1.88414e-5 0.5808301 0.3857082 0.03344398 1.75852e-5 0.4173328 0.5440793 0.03858798 0.5404042 0.4396997 0.01989609 0.2089796 0.6474156 0.1436048 0.1159335 0.6067921 0.2772744 0.2912657 0.638778 0.0699563 0.2843586 0.4303033 0.2755523 0.009785771 0.8147609 0.1115643 0.02022761 0.05336368 8.33089e-5 0.6984171 0.01011079 0.003035783 0.2866153 0.001647949 1.73039e-4 0.9296578 0.06971919 6.23099e-4 0.9838609 0.004429519 0.006014764 0.005694687 0.92418 0.013727 0.05244719 0.0096457 0.950343 8.83272e-4 0.01478916 0.03398454 0.999746 3.24472e-6 2.50778e-4 0.9955759 0.004424154 0.9173004 0.002129673 0.08056986 0.8612267 0.002722799 0.05848437 0.07756608 0.8579845 0.002466261 0.1395493 0.9908054 0.009194552 0.9596146 0.04038536 1 1 0.9552554 0.04474467 0 0.8189373 7.31705e-4 0.1803283 2.59905e-6 0.8134207 6.82813e-4 0.1858965 0.5614898 0.001318573 0.4371916 0.4455328 1.7563e-4 0.5542709 2.06601e-5 0.01029759 0.8936237 0.09607869 0.01235812 0.9464423 0.04119956 0.5402441 0.01360762 0.4461483 0.5983844 0.002507805 0.2382009 0.1609069 0.06762659 0.9323703 3.16086e-6 0.003939449 0.9629341 0.03312629 0.1867054 0.8132933 1.28947e-6 0.8009669 0.1990332 0.7510759 0.2286332 0.02029019 6.68193e-7 0.4374763 0.562479 4.47487e-5 0.4557424 0.5442577 0.7288872 0.271112 7.02807e-7 0.6151503 0.0372532 0.3114917 0.03610485 0.5264264 0.4090075 2.47746e-4 0.06431847 0.03035968 0.1322414 1.09109e-4 0.8372897 0.6709576 0.3290418 5.39597e-7 0.2308622 0.7691267 1.11238e-5 0.2117695 0.7882139 1.65974e-5 0.003490626 0.9664228 0.03008663 0.00662595 0.8317525 0.1616215 0.5952543 0.4047458 2.18962e-5 0.5660563 0.4339219 0.1741691 0.8258309 0.002446413 0.9708142 0.02673923 0.002152979 0.9668878 0.03095912 1.65467e-4 0.5607846 0.43905 6.18606e-4 0.5962413 0.4031401 0.1586621 0.8413379 0.1836394 0.8163606 0.1168431 0.8831569 0.1987187 0.8012813 0.1315431 0.868457 0.01672667 0.6928095 0.001082003 0.2893818 0.5023772 0.4976224 3.97397e-7 0.3360959 0.6639034 7.50556e-7 0.07680487 0.9231833 1.17584e-5 0.1024111 0.8975818 7.14968e-6 9.26451e-5 0.3780705 0.6218369 0.3801392 0.01972192 0.5983581 4.86284e-4 0.001294553 0.3247382 0.6669517 0.007693052 6.17035e-4 0.2548582 0.7364326 0.008504867 2.04324e-4 0.08176642 1.0725e-4 0.9126741 0.00544089 1.13656e-5 7.38041e-5 0.7860641 0.2138606 1.50996e-6 7.85166e-5 0.7253343 0.2745855 1.67859e-6 0.004605412 0.982582 0.01281255 0.02647161 0.4300464 0.003803491 0.5392449 4.33485e-4 0.4475134 0.5524865 0.05747663 0.9425076 1.57406e-5 0.08300179 0.9169642 3.4028e-5 6.84258e-5 0.9667145 0.03321701 7.73754e-4 0.9236598 0.07556658 0.4085518 0.5914482 0.5108681 0.4891319 0.08917915 0.9108209 9.27292e-4 0.9306235 0.06844925 0.001233458 0.8026794 0.1960871 0.434242 0.5657581 0.3815971 0.618403 0.07138663 0.9286134 0.0628755 0.9371245 0.04878944 0.9512105 0.05280876 0.9471912 0.06990599 0.930094 0.4904973 0.5095007 2.0062e-6 0.1762588 0.8236826 5.86817e-5 0.268554 0.7314152 3.08932e-5 0.03729134 0.8963965 0.06631213 0.02072095 0.962837 0.01644212 0.3642556 0.6357444 5.76367e-4 0.3338842 0.6655395 1 1 1 1 1 1 0.001605033 0.66773 0.3306649 0.03933703 0.9291312 0.03153187 2.54349e-5 0.4538177 0.5461242 3.26362e-5 5.75363e-5 0.7486726 0.2512692 7.25374e-7 4.18992e-6 0.3573351 0.6426551 5.55233e-6 0.03034985 0.9044707 0.06517952 0.248757 0.7512429 0.6454375 0.003539204 0.004746615 0.3424903 0.001916766 0.00186944 0.6980412 0.09538847 0.1254255 0.07954329 0.001601457 0.0947411 0.230279 0.6658269 0.009031534 1.21386e-4 0.1700609 0.7823425 0.04759651 0.08464664 0.7599969 0.1553565 0.1087982 0.7253977 0.165804 0.05492591 0.7506201 0.194454 0.01395052 0.6021304 0.3839191 0.01297992 0.574102 0.4129181 0.3987588 0.6012411 9.22189e-5 0.401411 0.5984968 0.2696313 0.7303687 0.2942025 0.7057975 0.2143462 0.7856537 0.2073632 0.7926368 0.1995718 0.8004282 0.2087532 0.7912468 0.2701218 0.7298782 0.3922601 0.6077399 0.007126033 0.5596573 0.4332166 0.001357436 0.9964805 0.002162039 3.42725e-4 0.9860174 0.01307374 5.66267e-4 0.002342581 0.9944701 0.003187239 1.76338e-4 0.9902773 0.009289741 2.56698e-4 7.16968e-5 0.9399702 0.05133581 0.008622229 1.32522e-4 0.99277 0.007097601 0.001143276 0.9973294 0.001527309 0.001125276 0.9974271 0.001447558 1.37077e-4 0.9927282 0.007030129 1.04579e-4 2.44074e-5 0.9659987 0.02779573 0.00618118 3.18074e-5 0.9545826 0.03808194 0.007303535 5.22857e-6 0.800108 0.1814718 0.01841497 1.20795e-5 0.7689259 0.2077739 0.02328813 0.3301654 0.6324602 0.03737437 0.3232542 0.6521389 0.02460682 0.2720693 0.7004573 0.02747333 0.2702358 0.6820186 0.04774558 0.3139138 0.6696703 0.01641589 0.3697914 0.6132665 0.01694196 0.4978631 0.4862982 0.01583862 0.3815782 0.6040608 0.01436096 0.5006287 0.4836568 0.0157144 3.90642e-6 0.8487411 0.1365507 0.01470416 2.62956e-5 0.9650069 0.0286054 0.006361365 1.67727e-4 0.9922062 0.007550776 7.52861e-5 0.001308798 0.99717 0.00152117 3.11181e-4 0.9902704 0.009191215 2.27238e-4 0.002435982 0.9954815 0.002082407 3.27404e-5 0.9616363 0.03147125 0.006859719 3.95103e-6 0.8472699 0.1378969 0.01482927 5.44201e-6 0.831599 0.1519913 0.01640439 0.3897007 0.592785 0.01751428 0.3225489 0.6608155 0.01663559 0.2529032 0.7198652 0.02723157 0.3119791 0.6611917 0.0268293 0.2397658 0.7147236 0.04551059 1.06203e-5 0.8135761 0.1662685 0.0201447 5.6719e-5 0.9560377 0.03602904 0.007876396 1.17245e-4 0.9417685 0.04898452 0.009129822 6.43829e-4 0.985404 0.01318323 7.68842e-4 0.004150569 0.9926096 0.00323981 8.3834e-4 0.9832136 0.01535636 5.91745e-4 0.005205273 0.9904709 0.00432384 1.35654e-4 0.9288817 0.06077152 0.01021111 2.21409e-5 0.8033444 0.1739627 0.02267074 0.3644495 0.5866751 0.04887545 0.3125323 0.6495923 0.03787547 0.2717505 0.6721808 0.05606865 0.2352879 0.6807252 0.08398681 0.3340857 0.6103499 0.05556434 0.2486776 0.6597468 0.09157556 2.37337e-5 0.7696588 0.2046002 0.02571713 2.37617e-5 0.7641164 0.2097346 0.02612525 1.32178e-4 0.9299993 0.05989497 0.009973526 7.76035e-4 0.9826601 0.01603031 5.3343e-4 0.005066752 0.9907219 0.004211366 6.09327e-4 0.9828551 0.01614385 3.91705e-4 0.003599941 0.9921348 0.004265189 1.152e-4 0.9315438 0.05875831 0.009582579 1.7861e-5 0.7563886 0.217207 0.02638655 0.3252683 0.612858 0.06187373 0.3553749 0.590045 0.05458003 0.2861253 0.6462733 0.06760138 0.1292249 0.7662493 0.1045258 0.08204746 0.8094261 0.1085264 0.05136537 0.7181373 0.2304973 0.07583308 0.6195676 0.3045993 0.001392841 0.4335949 0.5650122 0.1701007 0.6994811 0.1304182 0.2129132 0.7207958 0.06629091 0.1332326 0.666025 0.2007424 0.03612142 0.4623667 0.5015119 5.35515e-4 0.3062597 0.6932048 1 1 1 1 1 1 0.04779148 0.9522085 0.163176 0.8368241 0.03793251 0.5628523 0.3992152 0.1149511 0.7021908 0.1828581 0.1238252 0.757364 0.1188108 0.146951 0.7861055 0.06694346 0.07669651 0.8323596 0.09094399 0.02474272 0.6314296 0.3438277 0.1806304 0.8193696 1 1 1 1 1 1 1 1 0.1348758 0.8651242 0.006952166 0.6082065 0.3848414 0.03554689 0.7838395 0.1806136 0.05590927 0.8516584 0.09243243 0.1112031 0.8526973 0.03609961 0.06817477 0.8751532 0.05667209 0.167123 0.8024322 0.0304448 0.2115451 0.7716819 0.01677298 0.1314696 0.849078 0.01945227 0.08756464 0.8824281 0.0300073 0.1455 0.837338 0.01716196 0.09891891 0.8756288 0.02545225 0.1029952 0.8673929 0.02961188 0.1520783 0.825938 0.0219838 0.0996384 0.8593072 0.0410543 0.2349649 0.7505059 0.01452922 0.2305475 0.751175 0.01827758 0.1586096 0.8005555 0.04083484 0.08977818 0.8459725 0.06424921 0.2302015 0.738071 0.03172749 0.182977 0.7456637 0.07135933 0.2256155 0.746354 0.02803051 0.5673719 0.4326281 0.5900219 0.4099781 0.5916813 0.4083186 0.2865858 0.6963989 0.01701533 0.1692928 0.7690545 0.06165277 0.1794782 0.7588422 0.06167966 0.5479375 0.4520626 0.6033591 0.396641 0.1684312 0.7692939 0.06227481 0.5432491 0.4567509 0.1674289 0.730199 0.1023721 0.1719282 0.7292998 0.09877204 0.5504682 0.4495318 0.5256752 0.4743247 0.1899492 0.7565054 0.05354547 0.04806035 0.7276312 0.2243084 0.09878295 0.7505543 0.1506627 0.268553 0.7028796 0.02856749 0.5898378 0.4101622 0.1521142 0.7553988 0.09248703 0.6197549 0.3802451 0.6252123 0.3747877 0.3424488 0.6544499 0.003101348 0.1605407 0.7527213 0.08673793 0.3364957 0.6635043 0.5818637 0.4181364 0.1607033 0.7863674 0.05292928 0.02747237 0.7059239 0.2666037 0.03763455 0.7129988 0.2493667 0.1864873 0.7604318 0.05308097 0.5862268 0.4137732 0.6102767 0.3897233 0.1638297 0.7846828 0.05148762 0.02747654 0.7110794 0.261444 0.5891486 0.4108514 0.1460853 0.795937 0.05797779 8.64056e-4 0.5487545 0.4503815 0.002368867 0.5680398 0.4295914 0.1446382 0.8321261 0.02323567 0.5903945 0.4096055 0.5887233 0.4112768 0.1710427 0.7648906 0.06406664 0.03283548 0.7247741 0.2423904 0.02584964 0.7126755 0.2614748 0.1647949 0.7458188 0.08938628 0.5118528 0.4881472 0.5374142 0.4625858 0.0246157 0.7113482 0.264036 0.02245962 0.7053442 0.2721961 0.1680867 0.7436352 0.08827817 0.4922543 0.5077457 0.5478528 0.4521473 0.1722503 0.7681106 0.05963897 0.09584003 0.8583666 0.04579329 0.1069595 0.7961072 0.09693324 0.1048808 0.81259 0.0825293 0.08910501 0.8528528 0.05804222 0.09006255 0.834163 0.07577449 0.08800482 0.831611 0.08038407 0.1697072 0.8302927 0.1392176 0.8513435 0.009438991 0.1834785 0.8165215 0.2118945 0.7881055 0.1501753 0.796142 0.05368274 0.2395011 0.7462688 0.01423007 0.2383101 0.76169 0.1471272 0.8126148 0.04025799 0.1434596 0.8565404 0.1416354 0.8583647 0.02923578 0.9707643 0.01932817 0.9806696 2.13254e-6 0.06954455 0.9304555 0.01519381 0.9848062 0.01646459 0.9835354 0.02126455 0.9787355 0.03665006 0.9633499 0.0567795 0.9432204 0.06275492 0.9372451 0.05659556 0.9434044 0.05781251 0.9421875 0.1877942 0.8122059 0.2288602 0.7711399 0.4528469 0.5471532 0.5554469 0.4445531 0.4198094 0.5801905 0.1993308 0.8006693 0.1914162 0.8085838 0.4489 0.5511 0.169863 0.830137 0.9558683 0.04413169 0.7528515 0.2471485 0.9775316 0.02246832 0.9628306 0.03716945 0.984726 0.01527398 0.7405728 0.2594271 0.4547263 0.5452738 0.2928192 0.7071809 0.1001091 0.8998909 0.06085073 0.9391493 0.1716461 0.8283539 0.4687514 0.5312486 0.610357 0.389643 0.8474571 0.1525428 0.8275811 0.1724189 0.9490205 0.05097949 0.9400722 0.05992782 0.9766961 0.02330386 0.8928043 0.1071957 0.8541147 0.1458853 0.8135718 0.1864282 0.4526963 0.5473037 0.7877079 0.2122921 0.1003397 0.8996603 0.04617053 0.9538295 0.04492712 0.9550729 0.09366071 0.9063394 0.1845019 0.8154981 0.4734532 0.5265469 0.8231832 0.1768168 0.05599814 0.9440018 0.08203327 0.9179667 0.1340639 0.8659361 0.1321188 0.8678812 0.08485913 0.9151409 0.08900183 0.9109981 0.1519489 0.848051 0.08435112 0.9156488 0.1463564 0.8536437 0.07774364 0.9222564 0.1357267 0.8642733 0.9892907 0.01070928 0.9820283 0.01797169 0.80083 0.1991699 0.8905372 0.1094629 0.9464297 0.05357027 0.8812341 0.1187659 0.7156875 0.2843125 9.0991e-4 0.9952079 0.003882169 6.91566e-4 0.9965921 0.002716302 0.01185148 0.9881485 0.008581936 0.9914181 0.03199911 0.9680008 0.02339977 0.9766003 0.009966492 0.9900335 8.99732e-4 0.9970676 0.002032697 0.001024603 0.9969425 0.002032876 0.01051121 0.9894887 0.01333081 0.9866692 0.001288056 0.9966176 0.002094209 0.001946568 0.9956561 0.002397298 0.0222187 0.9777813 0.002755105 0.9938256 0.00341928 0.03643929 0.9635607 0.02523857 0.9747615 0.02375525 0.9762447 0.05831193 0.9416881 0.03299224 0.9670078 0.1220389 0.877961 0.05121481 0.9487852 0.003279387 0.9918507 0.004869878 0.05220383 0.9477961 0.003030359 0.9919436 0.005026042 0.3280319 0.6719681 0.4324882 0.5675118 0.05071359 0.9492865 0.4444507 0.5555492 0.267221 0.732779 0.02658802 0.9734119 0.001816928 0.9928444 0.005338668 0.08680748 0.9131925 0.003628611 0.9865444 0.009826838 0.01639437 0.0227667 0.9596019 0.001236975 0.009488761 0.01543349 0.9742701 8.07585e-4 0.001438319 0.990106 0.008455574 0.9329463 0.06705367 0.007776319 0.002979218 0.9889582 2.86266e-4 0.9470474 0.05295252 0.9805889 0.01941114 2.95206e-4 0.9962529 0.003451883 0.9928735 0.00712651 3.13923e-4 2.45783e-5 0.9986155 0.001046061 0.007603526 4.88817e-4 0.9918148 9.27836e-5 4.8604e-4 0.9991402 3.73764e-4 0.006148815 2.61808e-5 0.9937995 2.56014e-5 0.9970101 0.002989888 0.9975995 0.002400457 5.12399e-4 0.9991735 3.1402e-4 0.005368649 6.15584e-6 0.9946088 1.6312e-5 0.004297733 3.01426e-7 0.9956793 2.26403e-5 5.119e-4 0.9990746 4.13602e-4 0.9963497 0.003650307 5.22291e-4 0.9983047 0.0011729 0.9926808 0.007319152 0.00422275 0.9957258 5.14972e-5 0.00559163 0.9942328 1.75539e-4 7.71939e-4 0.996219 0.003009021 0.9804863 0.01951372 0.9574696 0.04253041 5.01517e-4 0.9928392 0.006659209 0.932183 0.06781697 0.01145738 0.9881419 4.00643e-4 2.88774e-4 0.989378 0.01033318 0.9105011 0.08949881 0.9894878 0.01051217 0.9274234 0.07257664 0.01802206 0.007498741 0.9738413 6.37869e-4 0.01679539 0.003520071 0.9791661 5.18352e-4 0.9983111 0.001688897 0.9991916 8.08488e-4 0.9997605 2.39468e-4 0.9998561 1.43912e-4 0.9998604 1.39626e-4 0.9997689 2.31159e-4 0.9963096 0.003690481 0.9952011 0.004799008 0.9898689 0.010131 0.9787897 0.02121031 0.9673008 0.03269922 0.9390317 0.06096833 0.8959316 0.1040684 0.9763461 0.02365392 0.9872579 0.0127421 0.9916468 0.008353233 0.9943664 0.005633652 0.9995869 4.13171e-4 0.9994862 5.13854e-4 0.9902777 0.009722352 0.9813852 0.01861482 0.9906188 0.009381234 0.983254 0.01674604 0.9585503 0.04144966 0.9824435 0.01755654 0.9981715 0.001828551 0.9972068 0.002793192 0.9970685 0.002931535 0.9976912 0.002308845 0.9569621 0.04303789 0.957085 0.04291492 0.9704586 0.02954137 0.9755518 0.02444827 0.9777631 0.02223694 0.9248211 0.07517892 0.9229464 0.07705354 0.9279177 0.07208228 0.9152938 0.08470624 0.8950663 0.1049337 0.8899661 0.1100339 0.01515209 0.641678 0.3431699 0.0146209 0.6550599 0.3303192 0.1743724 0.7364013 0.08922618 0.01728093 0.6526805 0.3300386 0.02126908 0.6694083 0.3093227 0.01668131 0.6601758 0.323143 0.01674735 0.6555337 0.3277189 0.4818878 0.5181122 0.01622653 0.6688148 0.3149587 0.01996445 0.6807864 0.2992492 0.1557664 0.7505729 0.09366065 0.1628538 0.747187 0.08995908 0.5145613 0.4854387 0.5485894 0.4514107 0.5632186 0.4367814 0.5479863 0.4520137 0.505703 0.494297 0.5443701 0.4556299 0.1643139 0.7442398 0.09144628 0.1579784 0.7483301 0.09369158 0.02190804 0.675714 0.3023779 0.02837824 0.6841346 0.2874871 0.02997422 0.6936101 0.2764156 0.02844762 0.7011546 0.2703978 0.557769 0.442231 0.16171 0.7422721 0.09601777 0.4813597 0.5186403 0.01460802 0.6453478 0.3400441 0.4899963 0.5100038 0.5296022 0.4703978 0.01302963 0.6574435 0.3295269 0.1528538 0.7512121 0.09593403 0.5552077 0.4447923 0.1648076 0.7452472 0.08994519 0.4941715 0.5058286 0.1107881 0.7632718 0.1259401 0.03563034 0.6663795 0.2979902 0.02383106 0.6255328 0.3506361 0.03009754 0.9699024 0.03228116 0.9677188 0.5524839 0.1608606 0.2466976 0.03995788 0.2793713 0.3662793 0.3543494 0.004039406 0.8143717 0.181589 0.01002663 0.8255029 0.1644704 0.009366333 0.8250651 0.1655685 0.1886683 0.7226988 0.08863276 0.6360512 0.3538691 0.01007962 0.5032562 0.4967439 0.08967691 0.8106185 0.0997045 0.3759156 0.310147 0.3139375 0.0396434 0.8412405 0.1191161 0.0434063 0.4481032 0.5084905 0.03683269 0.8089128 0.1542544 0.008473813 0.3751394 0.6163868 0.0371834 0.07256793 0.044564 0.6765285 0.1691561 0.1861294 0.3240046 0.4598404 0.02379721 0.006228268 0.02425426 0.7365163 0.2392294 0.4829614 0.4183053 0.0987333 0.03993773 0.6992962 0.260766 0.4659034 0.4349336 0.09916305 0.04500228 0.04423159 0.6484709 0.2622951 0.440994 0.4571093 0.1018967 0.08682495 0.05203455 0.6046905 0.25645 0.6549098 0.3370755 0.008014619 0.7371739 0.2628261 0.6402898 0.3597102 0.6300656 0.3699344 0.04270452 0.416102 0.5411936 0.04203826 0.427695 0.5302668 0.2850891 0.7149109 0.005871772 0.3569485 0.6371797 0.5725327 0.09798431 0.1131471 0.1761375 0.04019844 0.568822 0.0507636 0.05989128 0.2576227 0.06290036 0.544667 0.3813239 0.07400912 0.4714705 0.4349814 0.09354811 0.008315145 0.1830902 0.7093549 0.09923976 0.1834928 0.722685 0.09382206 0.05391001 0.8345487 0.1115413 0.04068201 0.8364275 0.1228905 0.02488183 0.8142506 0.1608676 0.01564532 0.8211767 0.163178 0.01634448 0.7844158 0.1992397 0.01128727 0.7865992 0.2021135 0.03386414 0.711327 0.2548088 0.004024922 0.02075004 0.7084336 0.2667914 0.09209847 0.04586702 0.5978929 0.2641416 0.1035315 0.03906315 0.5851481 0.2722572 0.7309 0.2664716 0.002628386 0.7405559 0.2594441 0.2834309 0.7165691 0.5789626 0.1023317 0.1167075 0.164464 0.03753429 0.5913342 0.3449783 0.06368744 0.01777976 0.1763253 0.7013283 0.1045666 0.1177614 0.03233712 0.5707334 0.2791679 0.003990352 0.01605975 0.7084161 0.2715339 0.00583595 0.7911203 0.2030437 0.02516061 0.8344044 0.1404351 0.002266824 0.7877657 0.2099673 0.01243025 0.3339135 0.6536563 0.004812955 0.7880548 0.2071322 0.05736678 0.9426333 0.02113658 0.9780397 8.23746e-4 0.2659968 0.1036487 0.4279586 0.2023958 0.382996 0.3036286 0.2549058 0.05846971 0.5474395 0.09071552 0.2305767 0.1312682 0.6430852 0.3062201 0.04571628 0.004978418 0.1754753 0.007505714 0.4459141 0.3711048 0.9756191 0.02438086 1 0.9113524 0.002540051 7.23291e-4 0.08538419 0.6852886 0.08110803 0.0748912 0.1312409 0.02747118 0.08409881 0.01083177 0.5734824 0.331587 0.003041505 0.01145994 0.7097721 0.2757264 0.004432559 0.004463315 0.7024734 0.2886308 0.07192671 0.005527794 0.5668874 0.355658 0.1519865 0.005389332 0.4488725 0.3937516 0.2530316 0.005172193 0.2860074 0.4557889 0.3068706 0.00775969 0.2783737 0.406996 0.2400899 0.001887083 0.1813619 0.5766611 0.3373454 0.002742171 0.1838653 0.4760472 0.2935939 0.001269876 0.1689091 0.536227 0.7492247 0.0702641 0.1196286 0.06088256 0.0523765 0.8408235 0.04109328 0.04829126 0.01741546 0.04829174 0.8780289 0.001195728 0.05008322 0.02240025 0.3467922 8.55333e-4 0.1554128 0.4969397 0.2625418 1.56318e-4 0.1214041 0.6158978 0.2330595 1.21963e-4 0.117657 0.6491616 0.008098006 0.8978041 0.04341417 0.05068367 0.3964661 0.6032346 2.99336e-4 0.05818688 0.7303739 0.2114392 0.02350813 0.6522739 0.324218 0.01111489 0.6149614 0.3739237 0.003555834 0.6068714 0.3895727 0.1810376 0.8028081 0.006225883 0.007256984 0.00267136 0.1390143 0.7804232 0.08056241 0.3406024 0.6593977 0.6238237 0.3761763 0.2061055 0.6993613 0.09453326 0.1149795 0.8812659 0.003754615 0.327028 0.5380318 0.1162823 0.0186578 0.4952396 0.4870688 0.01769155 0.103059 0.754794 0.1421471 0.1367145 0.6966599 0.1666256 0.100053 0.7463333 0.1536138 0.1217339 0.6952311 0.183035 0.484703 0.5005248 0.01477217 0.3118012 0.5754684 0.09645718 0.01627314 0.1248828 0.8732529 0.001864254 0.4247297 0.5752704 0.5385399 0.4614601 0.008195281 0.6383662 0.3534385 0.01483261 0.658499 0.3266684 0.0650255 0.7520244 0.1829502 0.04328739 0.06706053 0.8896521 5.70632e-6 0.03253048 0.0502178 0.917246 0.1887693 0.1136694 0.176763 0.5207982 0.01291483 0.6644853 0.3225998 0.0297141 0.6865225 0.2837634 0.03972601 0.6864195 0.2738545 0.0487262 0.7003374 0.2509363 0.2055002 0.7327486 0.06175112 0.1457484 0.7494686 0.1047828 0.1144345 0.8020536 0.08351188 0.07125574 0.7890284 0.1397159 0.1294125 0.8705875 0.2470726 0.7529273 0.3757247 0.6242753 0.4958105 0.5041895 1 0.8067066 0.002158164 0.1911352 0.9542607 0.04573929 0.4831718 0.01848554 0.4983426 0.2663316 0.03253543 0.701133 0.355522 0.004316031 0.640162 0.5826564 0.4173436 0.9098476 0.09015244 0.736052 0.263948 0.828382 0.171618 0.8995242 0.1004757 0.8721893 0.1278108 0.9029202 0.09707987 0.9071883 0.0928117 0.8711897 0.1288103 0.8917329 0.04263484 0.06563222 0.5933217 0.4066783 0.58152 0.41848 0.742188 0.257812 0.9339051 0.03988736 0.0262075 0.813794 0.186206 1 0.8556952 0.02417308 0.1201317 1 0.5204813 0.1000697 0.3794491 0.4841746 0.02328926 0.4925362 0.4902415 0.5097585 0.2786496 0.7213504 0.261153 0.738847 0.218773 0.781227 0.2600851 8.25337e-4 0.7390896 0.237598 0.01225054 0.7501513 0.2799344 0.06640708 0.6536585 0.3379051 0.1976717 0.4644232 0.2294436 0.2920076 0.4785489 0.2258716 0.1710209 0.6031076 0.1526122 0.02931559 0.8180721 0.1350896 0.005113661 0.8597968 0.115144 1.51488e-4 0.8847045 0.1028577 0.8971423 0.1180182 0.8819819 0.158174 0.8418259 0.2047206 0.7952794 0.2192894 0.7807106 0.5380654 0.4619346 0.6043156 0.3956844 0.4642474 0.5357527 0.5613655 0.4386345 0.651003 0.3489971 0.5136603 0.4863396 0.7252058 0.2747942 0.562148 0.437852 0.2663069 0.001205146 0.7324879 0.3047834 0.002271115 0.6929455 0.2077794 0.01935118 0.7728694 0.1635635 0.01166909 0.8247674 0.1156419 0.1556213 0.7287368 0.0678659 0.08587998 0.8462541 0.04787278 0.1747169 0.7774103 0.06521415 0.4150682 0.5197176 0.0601781 0.2592076 0.6806142 0.05641525 0.2281093 0.7154753 0.09098559 0.528777 0.3802374 0.2209152 0.1485993 0.6304855 0.1373503 0.1583263 0.7043234 0.1524322 0.3328971 0.5146707 0.09411591 0.2575476 0.6483364 0.02968132 0.07317429 0.8971006 4.36843e-5 0.04976481 0.08024418 0.8699717 1.92899e-5 0.08775269 0.2190339 0.6932134 0.121363 0.1281489 0.7504881 0.1221542 0.03297805 0.8448677 0.05709993 0.02150243 0.9213976 0.05322223 0.01017069 0.936607 0.116073 0.01580989 0.8681171 0.0343039 5.78561e-4 0.9651176 0.01924204 0.980758 0.01926773 0.9807322 0.0563367 0.9436632 0.02520775 3.25098e-6 0.9747891 0.03096854 2.43882e-5 0.9690071 0.1043372 2.86119e-6 0.8956599 0.2329999 0.7670001 0.1380686 0.8619313 0.1029971 0.8970029 0.08778649 0.9122136 0.09657663 0.001009762 0.9024136 0.4508357 0.5491643 0.1358344 2.98685e-5 0.8641357 0.1562677 1.9141e-4 0.843541 0.03582352 1.14077e-4 0.9640624 0.03376531 0.002646446 0.9635882 0.02521842 0.01944845 0.9553331 0.8790056 0.1209944 0.2940543 0.5072177 0.198728 0.9122725 0.08304673 1.58545e-4 0.004522144 0.23556 0.5308952 0.2335447 0.741619 0.2379642 0.02041685 0.8141267 0.1858733 0.8066899 0.1825049 0.01057839 2.26733e-4 0.03674066 0.3639709 0.5992885 0.1547354 0.8452646 0.1121352 0.8878648 0.05165809 0.948342 0.1173682 0.8826318 0.07101994 0.92898 0.7841514 0.09276503 0.1230835 1 0.2694594 0.7305406 0.3420091 0.2566007 0.40139 0.9382716 0.01032793 0.003394663 0.04800575 0.8043289 0.1864032 0.009267866 0.6250717 0.3257707 0.04915761 0.8749945 0.1250055 0.9143722 0.07654249 0.009085237 0.7949427 0.2050573 0.7786042 0.2213958 0.01746004 0.9731118 0.009427905 1.65419e-7 0.9276173 0.07238125 1.47373e-6 0.9330641 0.06693482 1.10633e-6 1.167e-4 0.01230347 0.9811293 0.006450414 0 0.9403655 0.05963385 6.1932e-7 6.21206e-4 0.0491693 0.9501624 4.71552e-5 0.04430079 1.75488e-4 0.09471637 0.8608073 0.2881611 3.42231e-4 0.1377816 0.573715 0.00127238 0.1186811 0.8800465 0.2437806 0.001834213 0.1805028 0.5738822 0.07487446 0.001399457 0.2357587 0.6879673 0.03101813 5.29709e-4 0.3555574 0.6128948 0.02840054 3.77058e-4 0.4677876 0.5034348 0.01069372 1.79429e-4 0.6299163 0.3592105 0.009377181 0.002795577 0.7274179 0.2604093 0.009318947 0.825248 0.1654331 0.01209193 0.02727693 0.8013373 0.1592938 0.03141564 0.01283586 0.6836 0.2721486 0.07867121 0.06787216 0.6577706 0.1956859 0.006895959 6.82417e-4 0.5034577 0.4889639 0.006397306 1.24005e-4 0.4219356 0.5715431 0.006453752 2.70487e-4 0.3151665 0.6781092 4.74888e-4 7.53207e-4 0.1984837 0.8002882 0.00130409 0.1128497 0.8858463 0.001223385 0.05791151 0.940865 0.001052856 0.0344659 0.9644812 3.30599e-4 0.007303297 0.9879569 0.004409074 0 0.9464929 0.05350685 3.56908e-7 4.32601e-4 0.005765259 0.9894624 0.004339694 0 0.9076002 0.09239977 0 0.001119017 0.02686589 0.972015 0.001561105 0.04130256 0.9571363 0.001271784 0.09920984 0.8995184 0.001699924 0.1082295 0.8900706 0.001885712 0.1419828 0.8561314 0.004168868 0.1589983 0.8368328 0.01222765 0.007143259 0.4107427 0.5698863 0.07274222 0.04120898 0.5825099 0.3035388 0.1583553 0.1193403 0.3578127 0.3644918 0.08298802 0.08945858 0.3176359 0.5099175 0.02847999 0.1270762 0.8444438 0.01031535 0.1191064 0.8705782 0.005565941 0.03260213 0.9618319 0.002356529 0.03430211 0.9633413 0.002051889 0.0137428 0.9842054 7.73263e-4 0.002797842 0.991155 0.005273878 0 0.8613948 0.1386052 0.00169748 0.00205636 0.9901977 0.006048381 0.004224538 0.01069712 0.9850783 0.01206415 0.03199845 0.9559374 0.02241152 0.03269445 0.944894 0.07792103 0.09117197 0.830907 0.05554544 0.1013478 0.1470755 0.6960312 0.05112874 0.07960164 0.8692696 0.06487685 0.06818521 0.8669379 0.04533463 0.04259502 0.9120703 0.2607316 1.49021e-4 0.1206619 0.6184574 0.04680365 0.9531963 0.008552849 0.01466631 0.9767808 0.02531886 0.01952868 0.9551524 0.02596712 0.01845377 0.9555791 0.02134317 0.01713865 0.9615182 0.00887537 0.01130342 0.9798212 0.002869069 0.001894712 0.9874198 0.007816374 0.8640298 0.1359702 0.004676163 0.002266883 0.9850572 0.007999658 0.8902938 0.1097062 0.003877758 0.00241959 0.9848927 0.008809924 0 0.003109633 0.9846801 0.01221013 0 0.006944477 0.978285 0.01477032 1.7511e-7 0.9045292 0.09546965 1.10889e-6 0.8996103 0.1003895 2.42755e-7 0.8965381 0.1034619 0.8066184 0.1933815 0.7887117 0.2112884 0.7865553 0.2134447 0.8338404 0.1661589 6.46427e-7 0.8601585 0.1398397 1.7637e-6 0.8966307 0.1033673 2.10392e-6 0.9182065 0.08179312 3.43607e-7 0.916583 0.08341598 1.1445e-6 0.2235687 0.7764312 0.1964309 0.8035188 5.02905e-5 0.2696599 0.7302734 6.68423e-5 0.2424276 0.7575724 0.650593 0.349407 0.6982712 0.3017288 0.4422847 0.5577153 0.8192376 0.1807624 0.7219862 0.2780138 0 0.7167509 0.2832491 0 0.829384 0.170616 0 0.7384966 0.2615035 0 0.7842368 0.2157632 0 0.8433633 0.1566365 0 0.8462065 0.153793 5.11995e-7 0.807048 0.1929514 6.13984e-7 0.8041149 0.195883 2.0715e-6 0.7762771 0.2237212 1.86959e-6 0.7803202 0.219679 8.20653e-7 0.7771129 0.2228833 3.83251e-6 0.5256575 0.4743326 9.96087e-6 0.7307738 0.269221 5.26414e-6 0.7532656 0.2467291 5.23695e-6 0.7651714 0.2348236 4.95045e-6 0.8361613 0.1638355 3.2014e-6 0.873048 0.1269505 1.52125e-6 0.7723221 0.2276737 4.2106e-6 0.8997184 0.1002812 4.15398e-7 0.8775966 0.1224033 0 0.2107868 0.788021 0.001192212 0.1959043 0.8021413 0.001954317 0.07465493 0.8209314 0.1044136 0.06316578 0.8023776 0.1344566 0.07951343 0.8265113 0.09397518 0.217153 0.7819125 9.34404e-4 0.2162624 0.7832465 4.91093e-4 0.2187075 0.7807496 5.4282e-4 0.2025815 0.7971331 2.85422e-4 0.07681024 0.8316836 0.09150606 0.07867503 0.8392829 0.08204203 0.06806451 0.8501344 0.08180111 0.1568094 0.8431025 8.82428e-5 0.1450201 0.8549094 7.04906e-5 0.1224146 0.8775449 4.04131e-5 0.1123363 0.8876097 5.39774e-5 0.04371821 0.9347105 0.02157133 0.05071544 0.9210143 0.0282703 0.0539996 0.8963641 0.04963624 0.03969627 0.9384705 0.02183318 0.07820427 0.9216836 1.1225e-4 0.02910506 0.9356827 0.03521215 0.5439062 0.4560939 0.438913 0.561087 0.6008471 0.3991515 1.37358e-6 0.5561661 0.4438275 6.42574e-6 0.1603818 0.8375377 0.00208044 0.04625034 0.790515 0.1632346 0.1551387 0.8431263 0.001734912 0.1215279 0.876052 0.002420008 0.1148208 0.8824099 0.002769291 0.02989643 0.7286067 0.2414969 0.0403164 0.7767903 0.1828932 0.0274626 0.7141447 0.2583927 0.02415573 0.7314019 0.2444423 0.09279906 0.9012428 0.005958199 0.02080214 0.8337986 0.1453992 0.0760051 0.9239763 1.86157e-5 0.4060005 0.5774417 0.01655775 0.34539 0.6316705 0.02293956 0.341035 0.6478763 0.01108872 0.3899381 0.6007606 0.009301245 0.3751516 0.6204387 0.00440967 2.63919e-7 0.8179629 0.1770654 0.004971504 0.4227267 0.5727661 0.004507184 0.5223307 0.4750016 0.002667665 0.4268112 0.5711734 0.002015471 0.5285466 0.4693174 0.002135932 1.26551e-6 0.8522362 0.144894 0.002868533 1.42884e-5 0.9580894 0.04027688 0.001619398 2.10608e-5 0.9445129 0.05335664 0.002109289 1.60103e-6 0.7914621 0.2013655 0.007170736 8.26775e-5 0.9896765 0.01024079 1.23679e-4 0.9853737 0.01450264 2.15807e-5 0.9657011 0.03309834 0.00117886 2.54346e-5 0.9642115 0.03460139 0.001161575 1.18192e-6 0.8484522 0.1489016 0.002644956 1.65127e-6 0.8353218 0.1620779 0.002598643 0.4411337 0.5570567 0.001809537 0.3838723 0.6144416 0.001685917 0.3279698 0.669032 0.002998173 0.3823943 0.6145477 0.003057897 0.3326772 0.6597869 0.007535934 2.08204e-6 0.8246859 0.1718158 0.00349611 0.4008052 0.5932483 0.005946397 0.3639853 0.6240403 0.01197427 0.4470954 0.5431275 0.009777128 0.3433921 0.6316854 0.02492249 0.4374871 0.5470926 0.01542031 0.3461425 0.6183646 0.03549289 3.23116e-6 0.7929562 0.2006879 0.006352484 5.07464e-6 0.819563 0.1757035 0.004728436 5.37193e-5 0.9460866 0.05208361 0.001776158 3.98972e-5 0.9581852 0.04041224 0.00136274 3.06529e-5 0.9619604 0.0368179 0.00119096 1.7057e-4 0.9902268 0.009540438 6.21921e-5 1.3677e-4 0.9909905 0.008872687 1.12996e-4 0.9910791 0.008766174 4.17124e-5 2.42061e-4 0.9889618 0.010791 5.16758e-6 3.58749e-4 0.9853783 0.0142076 5.53668e-5 4.69042e-5 0.9326468 0.06503349 0.002272784 3.84678e-6 0.7869841 0.2060215 0.006990551 0.425718 0.5538963 0.02038568 0.436358 0.541121 0.02252095 0.3749789 0.594385 0.03063613 2.38546e-6 0.7780631 0.2141455 0.007789015 3.699e-5 0.9329262 0.06467103 0.002365708 4.3736e-5 0.9312705 0.06633877 0.002346992 3.91423e-4 0.9819287 0.0176478 3.21471e-5 3.52867e-4 0.9805294 0.01903182 8.59122e-5 2.51697e-4 0.9806753 0.01900583 6.70583e-5 0.2006992 0.7402547 0.05904608 0.1020308 0.7502195 0.1477497 0.1401984 0.8084966 0.05130499 0.1415314 0.6671016 0.1913669 0.02104824 0.497015 0.4819366 0.2549196 0.6732437 0.07183665 0.286538 0.6750662 0.03839576 0.2258854 0.6778165 0.09629803 0.08542668 0.5899716 0.3246017 0.02738153 0.4112246 0.5613939 1 0.01139348 0.9886065 1 1 1 1 0.1100676 0.8899325 0.2474515 0.7525485 0.09760195 0.6746906 0.2277075 0.2095752 0.7181849 0.07223981 0.2192593 0.7448823 0.03585839 0.2349858 0.7518998 0.01311439 0.1478974 0.8329162 0.01918649 0.07498586 0.7848379 0.1401762 0.3061857 0.6938143 1 1 1 1 1 1 1 1 0.2435539 0.756446 0.04159522 0.7365036 0.2219012 0.09101772 0.8475573 0.06142497 0.1156445 0.8609176 0.02343785 0.1815208 0.8133677 0.005111455 0.128216 0.8598729 0.01191103 0.2462476 0.7501457 0.003606617 0.2830399 0.715116 0.001843988 0.1995516 0.797897 0.002551436 0.15077 0.843715 0.005514919 0.2104439 0.7865189 0.003037154 0.161502 0.8331218 0.005376219 0.1636637 0.8286077 0.007728576 0.2166274 0.7775233 0.005849301 0.1590642 0.8271843 0.01375144 0.2971462 0.7005556 0.002298116 0.2959554 0.6990528 0.00499171 0.2236006 0.7602574 0.01614195 0.1489359 0.8237864 0.02727752 0.3006556 0.6867153 0.01262915 0.4998846 0.5001155 0.171503 0.7313989 0.09709805 0.5594978 0.4405022 0.5855713 0.4144287 0.6173487 0.3826513 0.5755623 0.4244377 0.04235053 0.9576495 0.04130172 0.9586983 0.05557775 0.9444223 0.05226027 0.9477397 0.04286736 0.9571326 0.03638011 0.9636199 0.05615508 0.9438449 1.64199e-4 0.0885933 0.9112426 0.08325493 0.916745 0.05813354 0.9418665 0.05194145 0.9480586 0.03362494 0.9115957 0.05477929 0.01815623 0.9338276 0.04801601 0.01818799 0.9669865 0.01482546 0.04002612 0.9599738 0.04763036 0.9523697 0.03809964 0.9619004 0.005112469 0.9948875 0.008600115 0.9853489 0.006050884 0.8774089 0.122591 0.8578708 0.1421292 0.9195728 0.08042716 1 0.0236867 0.9763132 0.01565015 0.9843499 0.02773219 0.9722678 0.01842451 0.9815755 0.8098857 0.187771 0.002343297 0.8872106 0.1127894 0.7171169 0.2828831 0.9672895 0.03271061 1 1 1 0.999998 2.05143e-6 1 0.005550861 0.9944491 0.9999989 1.138e-6 0.9999953 4.6522e-6 0.9999956 4.38146e-6 0.999925 7.51249e-5 0.9999865 1.35095e-5 1 0.9999936 6.47369e-6 1 0.9999957 4.32944e-6 0.8854404 0.1145252 3.44e-5 0.984588 2.39903e-4 0.01517206 1 0.9667543 1.45194e-4 0.03310042 0.9522126 0.006178855 0.04160857 0.9556921 0.03947603 0.002733349 0.0020985 0.7375372 0.2486855 0.01374852 2.87624e-5 0.3702517 0.5611692 0.06857913 0.6168894 0.360242 0.02286863 0.2426723 0.60966 0.1476676 0.1335112 0.537429 0.3286387 4.21059e-4 0.05501449 0.3468215 0.5928801 0.005283892 0.1051793 0.3976191 0.4971347 6.6919e-5 0.9158707 0.05630934 0.01810288 0.009717047 0.8221468 0.1651831 0.01210206 5.67886e-4 0.9089965 0.03885453 0.05214887 0.7942932 0.00146538 0.2042045 2.46088e-5 1.22241e-5 0.5579035 0.001466035 0.4406051 2.53689e-5 0.9014567 1.28957e-5 0.09683656 2.91843e-4 0.00140208 0.9999435 5.65837e-5 0.9998798 1.2016e-4 0.9961394 0.003860592 0.7685507 0.2085291 0.01505231 0.007867932 0.9853092 0.01469075 0.9998916 1.08391e-4 0.9992642 7.35794e-4 0.999964 3.59879e-5 0.9999831 1.68843e-5 0.999446 5.53985e-4 0.9856315 0.01436841 0.9545528 0.04544723 0.7169174 0.2830826 0.7559596 0.2440404 1 1 0.6951643 0.004565894 0.3002698 0.7198146 0.1223695 0.09966874 0.05814713 0.2362694 0.05078321 0.7129473 1 0.2362694 0.05078321 0.7129473 0.001430034 0.718406 0.280164 0.6797367 0.3202633 0.3286408 0.6713592 0.3522389 0.6477611 1.64972e-5 0.8002808 0.1997027 0.5593719 0.2902865 0.1395154 0.01082617 0.2129836 0.7831887 0.001963138 0.001826047 3.84975e-5 0.07154411 0.08714485 1.74539e-4 0.8411068 2.97364e-5 6.64403e-4 0.7218983 0.2774373 0.4154167 0.5841025 4.80768e-4 0.494778 0.5037698 0.001452147 0.01290357 0.9207299 0.06636655 0.01132011 0.8102875 0.1783924 0.5284439 0.4715561 0.642401 0.357599 0.09157246 0.9084276 0.01469045 0.9103119 0.07499754 0.02304881 0.8251194 0.1518318 0.5402663 0.4597337 0.007164716 0.5180775 0.4747578 0.1077526 0.8922475 0.1370748 0.8629251 0.06015437 0.9398456 0.154322 0.8456781 0.05535662 0.9446434 0.03340232 0.558036 0.005080401 0.4034813 0.5967634 0.4032201 1.6499e-5 0.3974399 0.6025307 2.93598e-5 0.1830121 0.8164496 5.38211e-4 0.201155 0.7987125 1.32536e-4 2.50292e-4 0.4062618 0.5934879 0 0.1720035 0.8213245 0.006672084 0.1798524 0.7415469 0.05782681 0.02077376 0.07576537 0.8176546 0.106136 4.43912e-4 0.09599179 0.7720183 0.1319898 8.32165e-7 0.5951901 0.4048091 0.5685492 0.4314509 1.63826e-4 0.8333203 0.1665159 0.003254532 0.1009224 0.01863843 0.8527277 0.02445691 2.02521e-5 0.3118407 0.6881254 1.36388e-5 0.197802 0.8021973 7.53036e-7 0.1760253 0.8239689 5.73615e-6 0.7579672 0.2420328 0.8059939 0.1940061 0.2728847 0.7271153 0.324362 0.675638 0.05517184 0.9448282 0.8484673 0.1515328 0.01921766 0.7142903 0.266492 0.3682966 0.6317034 0.002704203 0.4237903 0.5735054 0.04780942 0.9521906 0.03759056 0.9624094 0.009865403 0.9901346 0.02020388 0.9797961 0.04116082 0.9588392 0.3983837 0.6016048 1.14804e-5 0.1760172 0.8237745 2.08288e-4 0.2640708 0.7359264 2.7898e-6 0.02516466 0.9570338 0.01780146 0.02641755 0.9369122 0.0366702 0.4142439 0.5857561 0.6328018 0.3671982 0.01299691 0.9870032 0.01447868 0.9855213 0.006192803 0.9938072 0.00421375 0.9957862 0.009503901 0.990496 0.004167258 0.9958327 0.005617976 0.2852865 0.7090955 0.03145074 0.8157395 0.1528096 0.282562 0.7173716 6.63945e-5 2.11547e-6 0.5862182 0.4137796 0.2828204 0.7171742 5.44751e-6 0.0281437 0.7122078 0.2596485 0.1674377 0.8325622 0.6403374 0.001340568 0.2863826 0.05609446 0.01584488 0.6880164 0.0919305 0.172236 0.03236043 0.01545649 0.1454943 0.1745414 0.6773841 0.002580046 0.138274 0.8554659 0.006260037 0.08619254 0.8835207 0.03028666 0.05184882 0.9270468 0.02110433 0.03512084 0.9130913 0.05178779 0.005728244 0.6185171 0.3757547 0.01766413 0.6881415 0.2941944 8.33326e-4 0.1181957 0.8809709 0.08740627 0.9125937 0.002842783 0.9971572 0.007989764 0.9920102 5.90953e-4 0.999409 3.0439e-4 0.9996957 2.05463e-4 0.9997945 2.7838e-4 0.9997217 8.87132e-4 0.9991129 0.03986489 0.9601351 0.001742899 0.3968618 0.6013953 0.2338227 0.7661774 0.5675467 0.4324533 0.6225109 0.3774891 0.9354979 0.064502 0.9325796 0.06742042 0.8918475 0.1081526 0.6899144 0.3100856 0.6319944 0.3680056 0.3495928 0.6504071 0.3042898 0.6957102 0.1674395 0.8325604 0.1105189 0.8894812 0.1990007 0.8009993 0.1148331 0.885167 0.2775798 0.7224202 0.449906 0.5500941 0.6908023 0.3091977 0.9356032 0.06439685 0.9359174 0.06408262 0.6862618 0.3137382 0.5543025 0.4456976 0.450025 0.549975 0.291794 0.7082061 0.1845166 0.8154835 0.1205696 0.8794304 0.2243989 0.7756011 0.1423625 0.8576374 0.2290597 0.7709403 0.3398647 0.6601353 0.08645963 0.9135404 0.04678082 0.9532192 0.05015069 0.9498493 0.481423 0.518577 0.4392587 0.5607413 0.897648 0.1023519 0.3836546 0.6163454 0.8786605 0.1213395 0.8792489 0.1207512 0.9047723 0.09522771 0.4634872 0.5365129 0.6861961 0.3138039 0.9511961 0.0488038 0.9774117 0.02258831 0.7950901 0.2049099 0.8759796 0.1240204 0.9900603 0.00993967 0.9949019 0.005098104 0.995912 0.004087984 0.9962145 0.00378549 0.9957458 0.004254221 0.9941202 0.005879759 0.9918581 0.008141815 0.9819428 0.01805716 0.9761456 0.02385437 0.9534795 0.04652047 0.5570318 0.4429681 0.4056017 0.5943983 0.6930927 0.3069074 0.6908525 0.3091476 0.7931107 0.2068892 0.8686395 0.1313605 0.9011293 0.09887081 0.9324491 0.06755089 0.9297234 0.07027667 0.9161286 0.08387136 0.9107045 0.08929556 0.9497385 0.05026143 0.9340258 0.06597423 0.9870128 0.01298713 0.9913405 0.008659482 0.9939026 0.006097376 0.9580824 0.04191756 0.9599131 0.04008686 0.9940739 0.005926072 0.7212494 0.2787507 0.7919055 0.2080945 0.9779303 0.02206975 0.8911381 0.1088619 0.9631763 0.03682374 0.9432648 0.05673521 0.9862265 0.01377344 0.923865 0.07613503 0.9912229 0.008777201 0.9344517 0.0655483 0.9928547 0.007145285 0.94106 0.05894005 0.6975294 0.3024706 0.3155615 0.6844385 0.6159284 0.3840715 0.6266887 0.3733113 0.8729198 0.1270802 0.6176058 0.3823943 0.555047 0.444953 0.5114287 0.4885714 0.4233628 0.5766372 0.9406223 0.05937761 0.6444912 0.3555088 0.6463831 0.353617 0.641434 0.358566 0.5821973 0.4178028 0.4742439 0.5257561 0.3972804 0.6027196 0.307647 0.6850218 0.00620377 0.001127362 0.2466129 0.7533871 0.2563993 0.7436007 0.3020368 0.6976335 3.04725e-4 2.50145e-5 0.5959312 0.4040688 0.01479136 0.585037 0.4001716 0.009432077 0.5745686 0.4159994 0.5822602 0.4177398 0.2324841 0.7675158 0.2140388 0.7859613 0.2229478 0.7770522 0.2387149 0.761285 0.38792 0.61208 0.438259 0.5544217 0.007319152 0.02706927 0.5645343 0.4083964 0.6253734 0.3746265 0.4442929 0.547762 0.00794512 0.6371554 0.3628446 0.03302216 0.5682155 0.3987624 0.3841214 0.6158787 0.388957 0.611043 0.3784529 0.6215471 0.3664565 0.6335436 0.3901489 0.6098511 0.9036177 0.0963822 0.02593028 0.7222492 0.2518206 0.03177928 0.9253063 0.04291433 1 0.9839954 0.01600456 0.9268415 0.0731585 1 0.1216554 0.8783446 0.1505195 0.8494805 0.3988049 0.6011952 0.5020746 0.4979254 0.1761259 0.8230839 7.9017e-4 0.09144872 0.7370128 0.1715385 0.04297536 0.5422832 0.407481 0.007260322 0.02566516 0.3985748 0.5616959 0.01406425 0.008032917 0.2341589 0.7578081 0.04719585 0.4824939 0.4445786 0.02573156 0.1155213 0.5641825 0.2671271 0.05316907 0.2882652 0.627695 0.08403986 0.3656377 0.6343623 0.0489248 0.6547665 0.2963087 0.04867047 0.6778582 0.2734713 0.3321891 0.6678109 0.3413795 0.6583634 2.57131e-4 0.3876755 0.6123245 0.5028647 0.4971352 0.01781541 0.7150015 0.2671832 0.6702237 0.1447166 0.007187068 0.1778725 0.02591145 0.7004907 0.2491273 0.0244705 0.08625805 0.6315258 0.2822162 0.3993746 0.5614859 0.0391395 0.5446766 0.1580586 0.2972648 0.2553006 0.05616205 0.6885373 0.09578752 0.5160117 0.299509 0.08869171 0.8751792 0.1222217 0.002599 0.03274399 0.4992811 0.4142776 0.05369728 0.03804135 0.8937366 0.06822192 1 0.9622628 0.0377373 0.1511909 0.848809 0.4071261 0.592874 0.2294055 0.7675167 0.003077805 0.1906577 0.4902241 0.2608842 0.05823391 0.07795912 0.2188668 0.5854758 0.1176981 0.02460843 0.06092327 0.7693304 0.1451379 0.0205453 0.8336471 0.1458075 0.08948141 0.1056486 0.6321102 0.1727597 0.2460281 0.2307888 0.3480935 0.1750895 0.4550632 0.3770304 0.1216554 0.04625087 0.4016821 0.5983179 0.02684676 0.6831514 0.2900018 0.3310226 0.6689774 0.362219 0.637781 0.4380373 0.5619626 0.01694786 0.6166722 0.3663799 0.7662184 0.04698395 0.1867975 0.8036841 0.106884 0.05098998 0.03844201 0.05444169 0.7022779 0.2432804 0.542845 0.3777393 0.06002855 0.01938712 0.3531792 0.1250455 0.1768624 0.3449128 0.2132654 0.1719904 0.3497799 0.2649644 0.04950475 0.08692854 0.8635666 0.6147112 0.3852889 0.6231775 0.3768225 0.9925431 0.007456898 0.9676503 0.03234964 0.6363213 0.3636787 1 0.6386248 0.3613752 0.9931856 0.00681442 0.9280768 0.07192313 0.6217854 0.3782147 0.6058898 0.3941102 0.6851892 0.3148109 0.6717284 0.3282716 0.8969381 0.1030619 0.9446645 0.05533552 0.9291107 0.07088929 1 1 1 1 0.6143558 0.3856443 0.623382 0.376618 0.6130922 0.3869079 1 0.6376216 0.3623784 0.6495842 0.3504158 0.5239393 0.4760608 0.6067892 0.3932108 0.9900799 0.00992012 1 0.5931384 0.4068616 0.6123259 0.3876742 1 0.6395751 0.3604249 1 0.9850125 0.01498752 0.5839259 0.4160742 0.6208404 0.3791596 0.698119 0.301881 0.6836867 0.3163133 1 0.959693 0.04030698 0.9925099 0.007490158 1 1 0.6402085 0.3597915 0.6298866 0.3701133 0.6002079 0.3997921 0.01651853 0.9834814 0.02322006 0.9767799 0.0147233 0.9852767 0.01266729 0.9873327 0.01086199 0.9891381 0.009673714 0.9903263 0.008706271 0.9912937 0.007185637 0.9928143 0.007600724 0.9923993 0.00599724 0.9940028 0.005999982 0.994 0.0054304 0.9945697 0.005708754 0.9942912 0.005252838 0.9947472 0.004945933 0.995054 0.003994405 0.9960055 0.003744602 0.9962553 0.002694427 0.9973056 0.002776801 0.9972233 0.001855492 0.9981445 0.001928627 0.9980713 0.001320064 0.9986799 0.001446187 0.9985539 0.001078963 0.998921 0.001204967 0.998795 0.001094937 0.998905 0.001234591 0.9987654 0.001541972 0.998458 0.001425087 0.9985749 0.002078711 0.9979212 0.002183437 0.9978166 0.003243565 0.9967564 0.003229618 0.9967704 0.004203975 0.995796 0.004580259 0.9954198 0.004434108 0.9955659 0.005374073 0.9946259 0.00610882 0.9938912 0.006510555 0.9934895 0.007701337 0.9922986 0.008063077 0.9919369 0.00984615 0.9901538 0.0102117 0.9897884 0.01256227 0.9874377 0.01231962 0.9876803 0.01702731 0.9829727 0.0258882 0.9741117 0.02287679 0.9771232 0.04044759 0.9595524 0.01788514 0.9821148 0.01502698 0.984973 0.01243984 0.9875602 0.01130741 0.9886927 0.008718311 0.9912816 0.008835315 0.9911648 0.006855547 0.9931444 0.006557345 0.9934427 0.006009221 0.9939908 0.006246387 0.9937536 0.005572915 0.9944271 0.00538069 0.9946193 0.004341483 0.9956585 0.004049122 0.9959508 0.002905726 0.9970943 0.002910077 0.9970899 0.001868903 0.9981312 0.002001464 0.9979985 0.001455128 0.9985449 0.001593708 0.9984063 0.001294553 0.9987055 0.001398861 0.9986012 0.001349329 0.9986507 0.001442849 0.9985572 0.001734793 0.9982652 0.001650393 0.9983496 0.002095043 0.9979049 0.002340078 0.9976599 0.003414332 0.9965856 0.003289759 0.9967103 0.004647135 0.9953529 0.00498259 0.9950174 0.004779994 0.99522 0.006049513 0.9939505 0.007140696 0.9928594 0.007737696 0.9922624 0.009607493 0.9903926 0.01021951 0.9897805 0.0133512 0.9866488 0.01369303 0.986307 0.01811981 0.9818801 0.01739883 0.9826012 0.02487766 0.9751224 0.3511508 0.5799346 0.06891459 0.8620805 0.136825 0.0010944 0.984659 0.01534098 0.7446027 0.2452064 0.0101909 0.2947315 0.4911066 0.2141618 0.1104215 0.511258 0.3708839 0.007436454 0.1567885 0.7541976 0.08901381 0.03609514 0.7447493 0.2191556 0.185981 0.7557737 0.05824524 0.1535332 0.3637809 0.4789898 0.002059519 0.001636624 0.6377179 0.3198497 0.04243248 0.9287176 0.06900382 0.001752853 1.83418e-4 3.42377e-4 0.9680938 0.03190624 1 1 0.9887537 6.79352e-5 0.01117837 0.9175962 0.003031551 0.007344543 0.07202309 4.64301e-6 0.9565504 0.01301884 0.001877963 0.006676018 0.0192064 0.002670288 0.8105029 0.1422792 0.03319483 0.006925761 0.007097244 0.7468479 0.004845917 0.2268 0.02150613 0.6260035 0.01786601 0.3523543 0.003776133 0.7363626 0.06059664 0.1084854 0.09454268 1.27299e-5 0.5374582 0.01238298 0.4500635 9.53015e-5 0.4632046 4.56795e-4 0.5363327 5.96842e-6 0.3408228 0.00181353 0.04695177 0.6100509 3.60946e-4 0.2722334 2.37376e-4 0.5499666 0.1775541 8.54922e-6 0.2182441 0.02244204 0.7524594 0.006854236 0.009187757 0.9906364 1.75947e-4 0.004731655 0.9947819 4.86538e-4 0.07414972 0.9242884 0.00156176 0.04246157 0.950611 0.006927311 5.86164e-5 0.6239262 0.3760144 8.77426e-7 0.6964282 0.3035626 9.20859e-6 3.27831e-6 0.3020473 0.6979173 3.21599e-5 0.01744186 0.7449423 0.2376157 0.01287949 0.790983 0.1961376 0.2057154 0.7942846 1 1 0.2336077 0.7663924 0.2253459 0.7746265 2.77454e-5 0.1488955 0.8510979 6.68017e-6 0.2811756 0.7188229 1.52465e-6 0.04515099 0.9547613 8.77424e-5 0.8127 0.1873001 7.77187e-4 0.7507372 0.2484856 6.78608e-5 0.3360741 0.6638581 0.06841361 0.9315863 0.07821708 0.9217829 0.3045863 0.6954137 0.0860303 0.9139512 1.85098e-5 0.3847098 0.6152901 0 0.4562546 0.5224078 7.36253e-6 0.02133023 0.09196907 0.9080198 1.11427e-5 0.002179682 0.9543815 0.04343879 0.002927184 0.8625231 0.1345497 2.70481e-4 0.5762622 0.4234673 0.1724477 0.8275523 0.1925063 0.8074937 0.5211529 0.4788471 0.1576828 0.8422413 7.59099e-5 0.009355068 0.6110882 0.3795567 0.368532 0.631468 0.009613275 0.9232093 0.06717729 1 0.7322062 0.2677939 0.7645005 0.2354995 0.3955504 0.6044496 0.8093101 0.1906899 0.4048951 0.5951049 1 1 1 0.05265516 0.9473448 1 1 0.3929291 0.6070709 0.4509825 0.5490174 0.7786215 0.2213785 0.2827319 0.7172681 0.01307684 0.6041094 0.3828138 1 0.8580172 0.1419827 0.4184204 0.5815796 1 1 0.4442987 0.5557013 0.8335677 0.1664322 0.07824456 0.9217554 0.144585 0.855415 0.2219005 0.7373453 0.04075425 0.05888885 0.7540593 0.1870517 0.07591336 0.7584391 0.1656475 0.01108574 0.577376 0.4115383 0.009696781 0.560118 0.4301853 0.004919409 0.5377928 0.4572878 0.377315 0.622685 0.4060551 0.5939449 0.3923243 0.6076757 0.2779388 0.7220613 0.2744587 0.7255412 0.2320161 0.7679839 0.1088114 0.8708229 0.02036565 0.9219432 0.07805681 0.8257994 0.1742006 0.9356226 0.06437742 0.7845414 0.2154585 0.4342658 0.4954532 0.0702809 0.8873993 0.1126006 0.9953268 0.004673242 0.7728287 0.2200787 0.007092595 0.3248409 0.551149 0.1240102 0.2222064 0.5267069 0.2493681 0.00171858 0.02919304 0.2351337 0.7231671 0.01250612 0.05419415 0.8633056 0.08250015 0.05184859 0.3551617 0.5822383 0.01075136 0.4643421 0.37503 0.1315593 0.002993881 0.02607476 0.6259581 0.3357931 0.03823298 1.57562e-5 0.9442725 0.05565321 7.36877e-5 6.33339e-7 0.9692103 0.03078973 1 0 0.9999988 1.21541e-6 0.9999629 3.70913e-5 0.9458257 0.02020245 0.03293299 0.001038908 0.8702942 0.0156393 0.003795444 0.09594172 0.01431244 1.68763e-5 0.7477815 0.1691896 0.02241623 0.00558573 0.05502623 5.19994e-7 0.631283 0.006867229 0.2700957 0.09175413 0.5150334 0.0248382 0.4404941 0.01963067 3.59338e-6 0.7077098 0.08636915 0.2043302 0.001590728 0.8511262 0.06004619 0.08882755 0.8326879 0.1673122 0.5097867 0.2368822 0.2533312 0.44826 0.01201677 0.5281389 0.01158428 0.2804526 6.18942e-6 0.05828762 0.6610749 1.78753e-4 0.04409325 0.9548538 0.001052916 0.08867359 0.02450138 0.886147 6.77949e-4 0.131644 0.7711179 0.05417293 0.04306513 0.007206022 0.855029 0.1377649 0.475844 0.5241504 5.59679e-6 0.4593247 0.5406718 3.53687e-6 0.1855772 0.8142587 1.64155e-4 0.02051913 0.6017206 0.3777602 0.01629656 0.8834142 0.1002894 4.88452e-4 0.132216 0.8672955 0.007273733 0.9927263 0.01520442 0.9847956 0.2432636 0.7567365 0.1853714 0.8145239 1.04709e-4 0.2658665 0.7340102 1.23365e-4 0.3242223 0.6756566 1.21172e-4 0.1270004 0.8720681 9.31461e-4 0.5802582 0.4197419 0.4167494 0.5832507 0.2249929 0.775007 0.04682564 0.9531744 0.05177915 0.9482209 0.2153585 0.7846415 0.1476522 0.8513071 0.001040577 0.680823 0.319177 0.5136553 0.4862298 1.14882e-4 0.2267969 0.7714694 0.00173366 0.01348346 0.816442 0.1700745 0.01049399 0.7181947 0.2713112 0.4837892 0.5162108 0.08999156 0.9100084 0.09877347 0.9012265 0.3984916 0.6015084 0.161288 0.8373827 0.001329421 1 0.4229053 0.5770947 1 0.6584935 0.3117752 0.02973133 0.02513033 0.6810982 0.2937715 0.01791077 0.6740218 0.3080673 0.001277446 0.5688061 0.4299166 0.01098573 0.6798938 0.3091204 5.78875e-4 0.5568686 0.4425526 0.4700546 0.5299454 0.478024 0.5219761 0.459649 0.540351 0.4707175 0.5292825 0.4567291 0.5432709 0.474725 0.525275 0.00222665 0.5616552 0.4361181 0.002319216 0.5699554 0.4277253 0.02666598 0.6733016 0.3000324 0.6748402 0.3251599 1 0.6415073 0.3584927 0.06213319 0.6487162 0.2891505 0.001710057 0.552091 0.446199 0.4768416 0.5231584 0.4845222 0.5154778 0.003429114 0.5759897 0.4205812 0.02951419 0.6914402 0.2790457 0.8319972 0.1680028 1 0.08210611 0.3269147 0.5838723 0.0071069 0.09913408 0.856685 0.04418092 0.1325388 0.831048 0.03641319 0.02268284 0.6312065 0.3461106 0.01021945 0.6241029 0.3656777 0.002504885 0.4964131 0.501082 0.06329023 0.9367098 0.00125724 0.1613292 0.8374134 0.09492135 0.9050786 0.00662291 0.9933771 0.01282823 0.9871718 0.001622855 0.9983772 0.3811094 0.6188907 0.4957749 0.504225 0.276623 0.7233769 0.2153031 0.7846969 0.1913934 0.8086065 0.2097533 0.7902466 0.3000915 0.6969264 0.002982139 0.38402 0.6131845 0.002795577 0.4735415 0.5264586 0.563082 0.436918 0.02374476 0.5799922 0.3962631 0.004478693 0.5699467 0.4255747 6.15502e-4 0.9993845 6.09366e-4 0.9993907 9.96843e-4 0.9990032 2.93637e-4 0.9997064 2.69359e-4 0.9997307 2.36297e-5 0.9999764 1 1 1 1 1 1 1 1 1 1 1 3.56679e-4 0.9996433 2.80685e-4 0.9997194 0.001128435 0.9988716 1.70024e-4 0.99983 1 1 1 1 1 1 2.89002e-4 0.999711 5.98198e-4 0.9994018 6.06035e-4 0.9993939 3.33259e-4 0.9996668 1.07798e-4 0.9998922 1.68026e-5 0.9999832 1 3.32832e-4 0.9996672 5.06819e-4 0.9994932 9.71117e-4 0.9990289 9.76902e-4 0.9990231 9.98035e-4 0.999002 0.001013338 0.9989867 0.001295685 0.9987043 0.001274287 0.9987257 0.001259803 0.9987402 0.001251816 0.9987481 0.001331567 0.9986684 0.001373887 0.9986261 9.27731e-4 0.9990723 4.12368e-5 0.9999588 1 1 1 1 1.10148e-4 0.9998899 2.66564e-4 0.9997335 4.41287e-4 0.9995587 7.25803e-4 0.9992743 0.001046776 0.9989532 9.95039e-4 0.999005 0.001029312 0.9989707 0.001086473 0.9989135 0.001077711 0.9989222 0.002255618 0.9977444 0.00246483 0.9975351 0.002132773 0.9978672 0.002155423 0.9978445 0.00206083 0.9979392 0.001651883 0.9983481 0.00156933 0.9984306 0.001841843 0.9981581 0.002203106 0.9977968 0.003105521 0.9968945 0.005314826 0.9946851 0.007290124 0.9927099 0.007606148 0.9923938 0.009927213 0.9900729 0.01378959 0.9862104 0.02125853 0.9787415 0.02349025 0.9765098 0.0167641 0.9832358 0.01174807 0.9882519 0.0107339 0.9892661 0.008480131 0.9915198 0.006610631 0.9933893 0.00336039 0.9966396 0.003118753 0.9968813 0.00439763 0.9956023 0.005427241 0.9945728 0.008869767 0.9911302 0.0114479 0.9885521 0.01566982 0.9843302 0.01868242 0.9813176 0.02493792 0.9750621 0.03985369 0.9601463 0.03394031 0.9660597 0.02776056 0.9722394 0.04471951 0.9552804 0.04479157 0.9552084 0.07178461 0.9282154 0.07282179 0.9271782 0.04312962 0.9568704 0.02738052 0.9726195 0.02117735 0.9788226 0.01837342 0.9816266 0.01567238 0.9843276 0.01313954 0.9868605 0.00820291 0.9917971 0.006053209 0.9939468 0.004909515 0.9950905 0.003212749 0.9967873 0.00273621 0.9972638 0.002447187 0.9975528 0.00331068 0.9966893 0.00457555 0.9954245 0.005491435 0.9945086 0.007078647 0.9929214 0.01097106 0.989029 0.0113359 0.9886641 0.01348686 0.9865131 0.01580435 0.9841956 0.01373678 0.9862632 0.01200312 0.9879968 0.009635746 0.9903643 0.008933424 0.9910666 0.008637905 0.991362 0.005930185 0.9940698 0.004314839 0.9956852 0.003711938 0.9962881 0.002792656 0.9972074 0.002390503 0.9976095 0.001845359 0.9981546 0.001881122 0.9981189 0.001677274 0.9983227 0.001643121 0.9983568 0.001872777 0.9981273 0.002126991 0.997873 0.002465069 0.9975349 0.001875758 0.9981242 0.001616299 0.9983837 0.001665771 0.9983342 0.001565158 0.9984349 0.001777648 0.9982224 0.001940965 0.998059 0.002063512 0.9979365 0.002385139 0.9976149 0.003068864 0.9969311 0.002597212 0.9974029 0.003463864 0.9965361 0.004786849 0.9952131 0.004057228 0.9959428 0.005788147 0.9942119 0.00690788 0.9930921 0.007384479 0.9926155 0.006313741 0.9936863 0.005982637 0.9940174 0.005429506 0.9945705 0.003697514 0.9963025 0.002438664 0.9975613 0.007902324 0.9920976 0.00809741 0.9919026 0.008148908 0.9918511 0.00835067 0.9916493 0.008775651 0.9912243 0.008432984 0.991567 0.01831561 0.9816844 0.01755255 0.9824475 0.0206449 0.9793551 0.02115547 0.9788445 0.02140516 0.9785948 0.01483017 0.9851698 0.0103017 0.9896983 0.01238995 0.9876101 0.01892262 0.9810773 0.01416397 0.985836 0.01837074 0.9816293 0.0277422 0.9722577 0.02183616 0.9781639 0.04606723 0.9539328 0.03312987 0.9668702 0.02543187 0.9745681 0.02284497 0.977155 0.02902108 0.9709789 0.03043508 0.9695649 0.0424053 0.9575947 0.04333895 0.9566611 0.06226253 0.9377375 0.06260496 0.9373951 0.1097856 0.8902143 0.1040348 0.8959652 0.1882651 0.8117349 0.0624656 0.9375344 0.0431829 0.956817 0.02949208 0.9705079 0.02607047 0.9739295 0.0341404 0.9658595 0.06210142 0.9378986 0.09640145 0.9035986 0.1494449 0.8505551 0.01981776 0.4912455 0.4889367 0.40602 0.59398 0.03867441 0.5222343 0.4390914 0.1174663 0.8825337 0.07806289 0.9219371 0.1077402 0.8922598 0.1606408 0.8393592 0.357864 0.642136 0.1216126 0.4995692 0.3788182 0.02872306 0.3963535 0.5749235 0.05883198 0.4564257 0.4847424 0.004987001 0.2980738 0.6969391 0.3416784 0.6583216 0.2453957 0.7546042 0.1986158 0.8013843 0.1612495 0.8387505 0.1417627 0.8582373 0.1025213 0.8974787 0.07986229 0.9201377 0.07339799 0.926602 0.07239496 0.927605 0.08068042 0.9193195 0.09685987 0.9031402 0.1331606 0.8668394 0.1470489 0.8529511 0.1629033 0.8370967 0.1184789 0.8815211 0.1407163 0.8592837 0.2009287 0.7990713 0.1379835 0.8620164 0.2236846 0.7763154 0.2978633 0.7021367 0.1560432 0.8439568 0.02578872 0.9742112 0.004183053 0.995817 0.004719257 0.9952807 0.004547119 0.9954529 0.003326475 0.9966735 0.003143787 0.9968562 0.003130137 0.9968698 0.002281308 0.9977186 0.001649498 0.9983505 0.001983106 0.998017 0.001388013 0.998612 0.001366794 0.9986332 0.002055704 0.9979444 0.001554548 0.9984455 0.001999258 0.9980008 0.002765476 0.9972346 0.002278983 0.997721 0.00234574 0.9976543 0.002241432 0.9977585 0.00215125 0.9978488 0.002927362 0.9970726 0.003070414 0.9969297 0.003234446 0.9967655 0.003403007 0.996597 0.003621816 0.9963782 0.00373286 0.9962671 0.005597174 0.9944028 0.007690727 0.9923093 0.005463004 0.9945369 0.00382483 0.9961752 0.004080832 0.9959191 0.005725324 0.9942747 0.004419505 0.9955804 0.004543125 0.9954569 0.005919098 0.9940809 0.006317853 0.9936821 0.008499503 0.9915005 0.008050978 0.991949 0.01250362 0.9874964 0.01093482 0.9890651 0.0107727 0.9892273 0.01621526 0.9837847 0.01647794 0.983522 0.01814073 0.9818593 0.01378631 0.9862137 0.009432673 0.9905674 0.009630918 0.990369 0.01422977 0.9857702 0.0211789 0.978821 0.02202653 0.9779735 0.03081649 0.9691835 0.03150999 0.96849 0.02783477 0.9721652 0.02676737 0.9732326 0.02480787 0.9751922 0.035681 0.964319 0.02872163 0.9712784 0.03307723 0.9669227 0.05065912 0.9493408 0.04881542 0.9511846 0.05769318 0.9423068 0.06068432 0.9393156 0.06564432 0.9343556 0.1110433 0.8889567 0.1108169 0.8891831 0.09063088 0.9093691 0.107015 0.892985 0.1451031 0.8548969 0.1134747 0.8865252 0.09522831 0.9047717 0.08319389 0.9168061 0.08405584 0.9159441 0.08580559 0.9141944 0.09321755 0.9067825 0.06440925 0.9355908 0.06526583 0.9347341 0.07879519 0.9212048 0.04943346 0.9505665 0.0446695 0.9553305 0.05301654 0.9469835 0.04405057 0.9559495 0.05283492 0.947165 0.04997795 0.9500221 0.06388193 0.936118 0.09169334 0.9083067 0.1140772 0.8859228 0.07018542 0.9298145 0.0472334 0.9527665 0.0411446 0.9588555 0.04594367 0.9540563 0.05222785 0.9477722 0.04144185 0.9585582 6.02578e-4 0.9993975 3.09474e-4 0.9996906 1.08217e-4 0.9998918 1 1 1 1 2.15758e-4 0.9997842 5.99213e-4 0.9994009 7.15569e-4 0.9992845 3.21927e-4 0.999678 1.11706e-4 0.9998883 4.80103e-5 0.9999521 6.81423e-5 0.9999319 1.12342e-4 0.9998877 2.18455e-4 0.9997816 3.65175e-4 0.9996349 5.99987e-4 0.9994 6.34382e-4 0.9993657 4.36069e-4 0.9995639 3.29047e-4 0.9996709 2.85854e-4 0.9997141 2.6894e-4 0.9997311 5.62847e-4 0.9994372 5.86599e-4 0.9994134 9.7772e-4 0.9990224 9.49537e-4 0.9990505 9.59773e-4 0.9990403 9.76009e-4 0.999024 0.00125724 0.9987427 0.001201272 0.9987987 0.001190543 0.9988095 0.00129497 0.998705 0.001388847 0.9986111 0.00101906 0.9989809 5.4575e-4 0.9994543 2.86398e-4 0.9997136 5.33235e-4 0.9994668 3.15331e-4 0.9996847 4.83294e-4 0.9995168 7.67064e-4 0.999233 8.68715e-4 0.9991313 9.33404e-4 0.9990666 0.001020848 0.9989792 0.001341342 0.9986587 0.001370608 0.9986295 0.001327931 0.998672 0.001324892 0.9986751 0.001226007 0.9987741 0.002268314 0.9977317 0.002198219 0.9978017 0.002233982 0.997766 0.002265036 0.997735 0.001677095 0.9983229 0.001574397 0.9984256 0.00185132 0.9981487 0.002238452 0.9977615 0.003188788 0.9968112 0.00603944 0.9939606 0.008940398 0.9910596 0.008899271 0.9911007 0.01231491 0.987685 0.01966887 0.9803311 0.03449338 0.9655066 0.03540015 0.9645999 0.02118968 0.9788103 0.01368111 0.986319 0.01220601 0.9877939 0.009125828 0.9908741 0.006987631 0.9930123 0.003515899 0.9964841 0.003058969 0.996941 0.004313051 0.995687 0.005486428 0.9945135 0.009191274 0.9908087 0.01228898 0.987711 0.0173496 0.9826504 0.02213472 0.9778652 0.03227281 0.9677272 0.06389635 0.9361037 0.0577287 0.9422714 0.04972404 0.950276 0.002526402 0.08662033 0.9108533 0.09618014 0.9038198 0.1446204 0.125941 0.6892032 0.04023534 0.1522026 0.8477974 0.07112646 0.9288735 0.03663134 0.9633687 0.0253793 0.9746207 0.02034097 0.979659 0.01683372 0.9831662 0.01354312 0.9864569 0.008228003 0.991772 0.005950033 0.9940499 0.004727423 0.9952726 0.003098487 0.9969015 0.002616941 0.9973831 0.002299785 0.9977002 0.00306338 0.9969367 0.004363834 0.9956361 0.005329906 0.99467 0.006871104 0.9931289 0.01099669 0.9890033 0.01139545 0.9886046 0.01393836 0.9860616 0.01687526 0.9831248 0.01418226 0.9858177 0.0120843 0.9879157 0.009715139 0.9902849 0.008978843 0.9910212 0.008535504 0.9914644 0.005747199 0.9942528 0.004042685 0.9959573 0.003581583 0.9964184 0.002750039 0.9972499 0.002271771 0.9977282 0.001752376 0.9982476 0.001774907 0.9982251 0.001579761 0.9984203 0.001554608 0.9984454 0.001800417 0.9981996 0.002044379 0.9979556 0.002409338 0.9975907 0.001819372 0.9981806 0.001598596 0.9984014 0.001606523 0.9983935 0.001972794 0.9980272 0.002308189 0.9976918 0.002971768 0.9970282 0.002530395 0.9974696 0.003358662 0.9966413 0.004569828 0.9954301 0.003984928 0.996015 0.005699992 0.9943 0.006581604 0.9934185 0.006967782 0.9930323 0.006238222 0.9937618 0.007982075 0.9920179 0.008102953 0.9918971 0.008607685 0.9913923 0.008316278 0.9916837 0.01859778 0.9814023 0.02156138 0.9784386 0.02186232 0.9781376 0.01504611 0.9849539 0.009942412 0.9900575 0.01253253 0.9874675 0.01955944 0.9804406 0.01469939 0.9853006 0.02005356 0.9799464 0.03043991 0.9695601 0.02351647 0.9764835 0.04846417 0.9515358 0.03511035 0.9648897 0.02634829 0.9736518 0.0240181 0.9759818 0.0297026 0.9702974 0.04361289 0.9563871 0.06388556 0.9361144 0.1128903 0.8871096 0.06512027 0.9348797 0.04489225 0.9551077 0.02990955 0.9700905 0.02706998 0.97293 0.03811061 0.9618894 0.0645982 0.9354018 0.1123689 0.8876311 0.1874459 0.8125541 0.06796908 0.5276806 0.4043503 0.1324108 0.8675891 0.0778858 0.9221141 0.1289892 0.8710108 0.2120375 0.7879626 0.05262458 0.4424886 0.5048868 0.1039097 0.5378571 0.3582332 0.4455581 0.4280821 0.1263598 0.167641 0.4986674 0.3336915 0.06628167 0.4234415 0.5102767 0.2459502 0.7540499 0.2035261 0.7964738 0.1372561 0.8627439 0.1268165 0.8731835 0.08635586 0.9136442 0.07547378 0.9245262 0.07697302 0.923027 0.08550024 0.9144998 0.1246228 0.8753772 0.1281046 0.8718954 0.1131065 0.8868936 0.07087117 0.9291289 0.06474971 0.9352503 0.06218129 0.9378187 0.05089551 0.9491046 0.05473172 0.9452682 0.05757576 0.9424242 0.04623556 0.9537644 0.05037111 0.9496288 0.05552572 0.9444743 0.09964096 0.900359 0.1308848 0.8691152 0.1765828 0.8234173 0.1215001 0.8784999 0.1746785 0.8253214 0.1931412 0.8068588 0.2455174 0.7544826 0.07643699 0.3847789 0.5387842 0.3649029 0.6350971 0.1944591 0.8055409 0.1503577 0.8496423 0.1413809 0.8586192 0.1155815 0.8844185 0.1046115 0.8953885 0.1057542 0.8942458 0.1097025 0.8902975 0.1274664 0.8725336 0.2454121 0.754588 0.6528895 0.2855692 0.06154125 0.7142181 0.261153 0.02462887 0.5352593 0.1892021 0.2755385 0.04090136 0.9590987 0.004560291 0.9954397 0.005175471 0.9948245 0.004918158 0.9950818 0.003536701 0.9964632 0.003253698 0.9967463 0.003272771 0.9967272 0.002413213 0.9975868 0.001806497 0.9981935 0.002125203 0.9978749 0.001569807 0.9984302 0.001539885 0.9984601 0.002171158 0.9978289 0.001692295 0.9983077 0.002121806 0.9978782 0.002894759 0.9971052 0.002352476 0.9976475 0.002459466 0.9975405 0.002380013 0.99762 0.002276003 0.997724 0.003050029 0.9969499 0.003273069 0.9967269 0.003471255 0.9965288 0.003675401 0.9963245 0.003842353 0.9961577 0.03627437 0.9637256 0.03246587 0.9675342 0.04607391 0.9539261 0.04886567 0.9511343 0.05929064 0.9407093 0.04330629 0.9566937 0.0666185 0.9333814 0.0857644 0.9142356 0.1188879 0.8811122 0.2564816 0.7435184 0.1417691 0.8582309 0.07939362 0.9206064 0.07976806 0.920232 0.06196969 0.9380304 0.06008362 0.9399164 0.07923376 0.9207662 0.04589915 0.9541009 0.003913164 0.9960868 0.006058573 0.9939414 0.00874108 0.9912589 0.005477786 0.9945223 0.003809332 0.9961907 0.004002273 0.9959977 0.005605399 0.9943947 0.004356741 0.9956433 0.005909621 0.9940904 0.008333802 0.9916662 0.008255541 0.9917445 0.01151472 0.9884853 0.01292258 0.9870774 0.01903402 0.980966 0.01669985 0.9833002 0.01215952 0.9878404 0.01318776 0.9868122 0.009236752 0.9907632 0.02004754 0.9799524 0.01730608 0.9826939 0.02576303 0.974237 0.03041607 0.9695839 0.02538537 0.9746147 0.02930068 0.9706993 0.2876242 0.7123758 0.3724334 0.6275666 0.2458402 0.7541598 0.2219023 0.7780977 0.245499 0.7545011 0.3062753 0.6937248 0.3870351 0.6129649 0.4651865 0.5348135 0.5245781 0.4754219 0.01318591 0.5423951 0.4444191 6.43128e-4 0.5320599 0.467297 0.4716193 0.5283808 0.3620428 0.6379572 0.4339129 0.5660871 0.4821903 0.5178098 4.73398e-4 0.5023159 0.4972106 0.4842128 0.5157873 0.43669 0.56331 0.3850905 0.6149095 0.3318886 0.6681114 0.3874596 0.6125404 0.2967491 0.7032509 0.2672446 0.7327554 0.2526084 0.7473917 0.2954505 0.7045496</float_array>\r\n          <technique_common>\r\n            <accessor source=\"#Armature_Stormtrooper-skin-weights-array\" count=\"8561\" stride=\"1\">\r\n              <param name=\"WEIGHT\" type=\"float\"/>\r\n            </accessor>\r\n          </technique_common>\r\n        </source>\r\n        <joints>\r\n          <input semantic=\"JOINT\" source=\"#Armature_Stormtrooper-skin-joints\"/>\r\n          <input semantic=\"INV_BIND_MATRIX\" source=\"#Armature_Stormtrooper-skin-bind_poses\"/>\r\n        </joints>\r\n        <vertex_weights count=\"3275\">\r\n          <input semantic=\"JOINT\" source=\"#Armature_Stormtrooper-skin-joints\" offset=\"0\"/>\r\n          <input semantic=\"WEIGHT\" source=\"#Armature_Stormtrooper-skin-weights\" offset=\"1\"/>\r\n          <vcount>3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 3 4 4 4 4 3 3 3 4 4 3 3 3 3 3 3 3 4 3 4 4 4 4 4 4 4 3 3 3 3 4 4 4 4 4 4 3 3 3 3 3 4 3 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 3 4 4 4 4 4 4 5 5 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 3 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 2 2 1 2 1 1 1 1 1 1 2 2 2 2 2 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 2 3 3 2 2 3 3 2 2 4 2 4 2 2 3 2 3 2 3 3 3 2 2 2 2 4 4 4 4 2 2 3 3 3 3 3 3 2 3 3 3 3 3 3 4 2 2 2 2 3 3 4 4 3 3 2 4 3 3 2 1 3 1 4 3 4 3 4 2 1 2 3 4 4 4 4 4 4 4 4 3 3 4 4 4 5 5 4 4 5 2 3 3 3 3 2 3 2 3 2 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 2 1 3 1 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 3 2 3 2 2 1 3 3 3 2 2 2 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 1 2 3 1 2 1 3 3 2 2 2 1 1 2 1 2 1 2 2 1 2 2 2 2 2 2 2 2 2 2 1 3 1 3 1 2 2 3 3 3 3 4 3 4 4 4 2 2 2 2 3 2 2 3 4 3 3 3 1 3 2 2 2 2 3 3 4 4 2 5 5 5 5 5 5 5 4 5 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 4 3 3 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 2 3 2 2 5 3 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 3 5 5 5 5 5 5 5 3 3 3 3 2 2 2 3 3 3 3 3 3 3 2 2 3 2 3 3 3 3 3 3 3 2 2 2 3 2 3 3 2 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 1 2 2 2 2 1 1 1 2 1 3 2 3 2 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 4 3 1 3 3 5 4 3 3 3 3 3 4 5 6 3 4 4 4 3 2 3 4 3 2 2 1 1 3 4 3 3 4 3 3 3 4 3 3 3 2 4 3 2 3 4 4 4 3 3 3 3 3 2 3 2 3 3 3 3 2 2 2 2 2 4 3 3 3 3 3 5 4 4 5 4 4 3 5 2 3 3 3 3 2 2 2 3 3 2 2 2 2 2 2 2 3 3 3 3 3 2 3 1 1 1 1 1 1 3 3 4 4 4 3 2 6 5 5 3 3 3 3 3 3 2 3 2 2 2 2 2 2 2 2 3 3 4 3 4 4 3 3 3 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 4 4 3 4 3 4 4 4 3 3 3 3 3 4 4 4 4 3 4 3 4 4 3 3 3 3 3 3 4 4 4 4 3 4 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 1 1 1 1 1 1 2 2 3 3 3 3 3 3 2 1 1 1 1 1 1 1 1 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 3 3 3 2 2 3 2 3 3 2 2 3 3 3 3 2 3 2 2 3 3 2 2 3 3 3 3 2 2 3 3 2 3 3 3 3 2 2 3 3 3 3 2 2 3 3 3 2 2 3 3 3 3 3 3 3 2 3 2 2 3 3 2 3 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 2 3 3 2 2 3 3 2 3 2 2 2 2 2 2 2 3 2 3 2 2 2 2 2 2 3 2 3 4 4 3 2 4 2 2 3 2 4 4 3 4 2 2 3 4 4 3 2 3 2 3 3 3 2 2 3 2 3 3 2 2 2 4 4 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 2 3 3 3 3 2 2 2 2 2 2 3 3 3 3 3 3 2 3 2 3 2 2 3 3 2 3 2 3 3 3 2 2 4 3 3 3 3 3 3 2 3 3 3 3 3 3 5 5 3 3 3 3 4 3 4 3 2 2 2 3 3 2 3 5 5 3 3 4 3 3 3 3 3 3 3 3 4 4 4 3 2 2 5 3 4 4 4 3 3 3 3 3 2 3 4 4 4 4 4 2 1 4 5 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 3 3 3 3 3 5 3 2 2 3 3 4 3 3 3 3 3 3 4 3 2 2 3 3 3 3 4 4 3 3 3 3 3 3 3 3 2 2 2 2 1 3 2 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 3 2 1 3 1 3 3 2 2 2 2 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 2 2 2 3 3 3 2 2 2 2 3 2 3 3 3 3 3 2 3 4 3 3 2 4 3 2 2 2 2 2 3 1 2 3 4 3 3 2 3 2 2 4 3 3 5 3 4 4 4 3 4 4 4 4 4 4 3 4 4 4 4 4 4 4 3 3 3 5 3 5 3 3 3 3 3 3 3 4 4 4 4 3 3 3 3 3 5 2 4 3 3 3 3 4 3 3 3 4 2 3 3 3 3 3 4 2 4 2 5 4 4 3 3 2 2 2 2 3 3 3 3 3 2 3 3 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 4 4 4 4 3 3 4 4 4 4 3 3 3 3 3 4 3 3 3 3 3 3 4 4 4 4 4 4 3 4 4 4 4 4 3 3 3 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 1 2 1 1 1 1 2 2 3 3 3 3 3 3 2 1 1 1 1 1 1 1 1 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 3 3 3 2 2 2 2 3 2 2 2 1 2 2 2 2 3 2 2 2 1 1 1 2 1 2 2 2 2 2 2 1 2 1 2 3 3 1 3 3 4 4 3 3 3 4 4 4 4 4 3 5 4 5 2 2 2 4 2 2 2 2 2 2 2 2 2 2 1 1 3 4 3 1 3 3 2 2 2 3 4 5 5 3 3 3 3 3 2 2 2 3 3 2 3 2 2 2 2 2 4 3 3 3 3 4 3 4 4 3 3 2 3 5 4 3 3 2 2 2 2 2 2 3 2 3 2 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 3 3 3 3 3 3 2 5 5 4 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 4 2 2 4 2 3 3 2 2 2 2 2 2 3 3 2 3 2 3 2 2 2 2 2 2 3 3 1 2 2 1 2 2 2 2 3 3 4 4 3 4 4 3 2 3 3 2 3 2 2 3 4 4 3 3 3 3 4 3 4 3 1 2 2 2 3 4 4 4 3 4 4 4 2 3 2 2 2 3 3 4 3 4 4 4 3 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 1 1 1 1 2 2 2 1 2 2 2 2 2 1 2 2 1 2 1 2 2 2 2 2 1 2 2 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 3 3 4 3 3 3 5 3 5 2 1 1 3 5 6 5 4 4 5 4 4 5 5 4 3 3 3 3 4 3 4 3 3 2 1 1 2 3 3 3 3 2 3 3 2 2 2 3 3 4 3 3 3 3 2 2 2 3 3 2 3 1 2 2 2 2 2 1 1 1 2 1 1 2 2 2 2 3 1 2 2 1 1 2 2 2 2 3 3 3 3 3 3 2 2 2 2 2 2 3 2 2 2 2 3 2 2 3 3 4 4 3 4 5 4 4 2 2 2 2 4 6 6 4 5 4 3 2 3 4 5 3 4 4 3 3 3 3 3 3 3 2 2 2 3 3 3 3 2 2 2 2 2 2 3 2 3 3 3 3 2 2 2 2 3 1 2 1 3 3 3 3 3 3 2 2 2 2 2 2 3 3 3 2 1 2 3 3 2 2 3 3 2 1 4 3 3 3 3 3 2 3 2 2 2 2 2 2 2 2 2 2 3 3 2 2 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 3 2 2 2 2 2 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 4 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 2 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 2 2 2 2 3 2 2 2 2 2 2 2 2 2 </vcount>\r\n          <v>3 0 25 1 26 2 3 3 25 4 26 5 3 6 25 7 26 8 3 9 25 10 26 11 3 12 25 13 26 14 3 15 25 16 26 17 3 18 25 19 26 20 3 21 25 22 26 23 3 24 25 25 26 26 27 27 3 28 25 29 26 30 3 31 25 32 26 33 3 34 25 35 26 36 3 37 25 38 26 39 3 40 25 41 26 42 3 43 25 44 26 45 3 46 25 47 26 48 3 49 25 50 26 51 3 52 25 53 26 54 3 55 25 56 26 57 3 58 25 59 26 60 3 61 25 62 26 63 3 64 25 65 26 66 2 67 3 68 25 69 26 70 2 71 3 72 25 73 26 74 2 75 3 76 25 77 26 78 2 79 3 80 25 81 26 82 2 83 3 84 25 85 26 86 2 87 3 88 25 89 26 90 3 91 25 92 26 93 3 94 25 95 26 96 3 97 25 98 26 99 3 100 25 101 26 102 3 103 25 104 26 105 2 106 3 107 25 108 26 109 2 110 3 111 25 112 26 113 2 114 3 115 25 116 26 117 2 118 3 119 25 120 26 121 2 122 3 123 25 124 26 125 2 126 3 127 25 128 26 129 2 130 3 131 25 132 26 133 2 134 3 135 25 136 26 137 2 138 3 139 25 140 26 141 2 142 3 143 25 144 26 145 2 146 3 147 25 148 26 149 2 150 3 151 25 152 26 153 2 154 3 155 25 156 26 157 2 158 3 159 25 160 26 161 2 162 3 163 25 164 26 165 2 166 3 167 25 168 26 169 2 170 3 171 25 172 26 173 2 174 3 175 25 176 26 177 2 178 3 179 25 180 26 181 3 182 25 183 26 184 3 185 25 186 26 187 3 188 25 189 26 190 2 191 3 192 25 193 26 194 3 195 25 196 26 197 2 198 3 199 25 200 26 201 2 202 3 203 25 204 26 205 2 206 3 207 25 208 26 209 2 210 3 211 25 212 26 213 3 214 25 215 26 216 3 217 25 218 26 219 3 220 25 221 26 222 2 223 3 224 25 225 26 226 2 227 3 228 25 229 26 230 3 231 25 232 26 233 3 234 25 235 26 236 3 237 25 238 26 239 3 240 25 241 26 242 3 243 25 244 26 245 3 246 25 247 26 248 3 249 25 250 26 251 3 252 25 253 26 254 27 255 3 256 25 257 26 258 2 259 3 260 25 261 26 262 2 263 3 264 25 265 26 266 2 267 3 268 25 269 26 270 2 271 3 272 25 273 26 274 2 275 3 276 25 277 26 278 2 279 3 280 25 281 26 282 2 283 3 284 25 285 26 286 3 287 25 288 26 289 3 290 25 291 26 292 3 293 25 294 26 295 3 296 25 297 26 298 2 299 3 300 25 301 26 302 2 303 3 304 25 305 26 306 2 307 3 308 25 309 26 310 2 311 3 312 25 313 26 314 2 315 3 316 25 317 26 318 2 319 3 320 25 321 26 322 3 323 25 324 26 325 3 326 25 327 26 328 3 329 25 330 26 331 3 332 25 333 26 334 3 335 25 336 26 337 3 338 25 339 26 340 27 341 3 342 25 343 26 344 3 345 25 346 26 347 27 348 3 349 25 350 26 351 27 352 3 353 25 354 26 355 27 356 2 357 3 358 25 359 26 360 3 361 6 362 7 363 8 364 9 365 3 366 6 367 7 368 8 369 9 370 3 371 6 372 7 373 8 374 9 375 3 376 6 377 7 378 8 379 9 380 3 381 6 382 7 383 8 384 9 385 3 386 6 387 7 388 8 389 9 390 3 391 6 392 7 393 8 394 9 395 3 396 6 397 7 398 8 399 9 400 3 401 6 402 7 403 8 404 9 405 3 406 6 407 7 408 8 409 9 410 3 411 6 412 7 413 8 414 9 415 3 416 6 417 7 418 8 419 9 420 3 421 6 422 7 423 8 424 9 425 3 426 6 427 7 428 8 429 9 430 3 431 6 432 7 433 8 434 9 435 3 436 6 437 7 438 8 439 9 440 3 441 6 442 7 443 8 444 9 445 3 446 6 447 7 448 8 449 9 450 3 451 6 452 7 453 8 454 9 455 3 456 6 457 7 458 8 459 9 460 3 461 6 462 7 463 9 464 3 465 6 466 7 467 2 468 3 469 6 470 7 471 2 472 3 473 6 474 7 475 2 476 3 477 6 478 7 479 2 480 3 481 6 482 7 483 2 484 3 485 6 486 7 487 2 488 3 489 6 490 7 491 3 492 6 493 7 494 8 495 9 496 3 497 6 498 7 499 8 500 9 501 3 502 6 503 7 504 8 505 3 506 6 507 7 508 8 509 3 510 6 511 7 512 8 513 9 514 2 515 3 516 6 517 7 518 2 519 3 520 6 521 7 522 2 523 3 524 6 525 7 526 2 527 3 528 6 529 7 530 2 531 3 532 6 533 7 534 2 535 3 536 6 537 7 538 2 539 3 540 6 541 7 542 2 543 3 544 6 545 7 546 2 547 3 548 6 549 7 550 2 551 3 552 6 553 7 554 2 555 3 556 6 557 7 558 2 559 3 560 6 561 7 562 2 563 3 564 6 565 7 566 2 567 3 568 6 569 7 570 2 571 3 572 6 573 7 574 2 575 3 576 6 577 7 578 2 579 3 580 6 581 7 582 2 583 3 584 6 585 7 586 2 587 3 588 6 589 7 590 2 591 3 592 6 593 7 594 2 595 3 596 6 597 7 598 2 599 3 600 6 601 7 602 2 603 3 604 6 605 7 606 2 607 3 608 6 609 7 610 2 611 3 612 6 613 7 614 2 615 3 616 6 617 7 618 2 619 3 620 6 621 7 622 2 623 3 624 6 625 7 626 3 627 6 628 7 629 9 630 3 631 6 632 7 633 8 634 3 635 6 636 7 637 2 638 3 639 6 640 7 641 2 642 3 643 6 644 7 645 3 646 6 647 7 648 8 649 3 650 6 651 7 652 8 653 3 654 6 655 7 656 8 657 9 658 3 659 6 660 7 661 8 662 9 663 3 664 6 665 7 666 8 667 9 668 3 669 6 670 7 671 8 672 9 673 3 674 6 675 7 676 8 677 9 678 3 679 6 680 7 681 8 682 9 683 3 684 6 685 7 686 8 687 9 688 3 689 6 690 7 691 8 692 9 693 3 694 6 695 7 696 8 697 9 698 3 699 6 700 7 701 8 702 9 703 3 704 6 705 7 706 8 707 9 708 3 709 6 710 7 711 8 712 9 713 3 714 6 715 7 716 8 717 3 718 6 719 7 720 8 721 3 722 6 723 7 724 8 725 3 726 6 727 7 728 8 729 3 730 6 731 7 732 9 733 3 734 6 735 7 736 2 737 3 738 6 739 7 740 2 741 3 742 6 743 7 744 2 745 3 746 6 747 7 748 2 749 3 750 6 751 7 752 3 753 6 754 7 755 9 756 3 757 6 758 7 759 2 760 3 761 6 762 7 763 2 764 3 765 6 766 7 767 2 768 3 769 6 770 7 771 2 772 3 773 6 774 7 775 2 776 3 777 6 778 7 779 2 780 3 781 6 782 7 783 2 784 3 785 6 786 7 787 2 788 3 789 6 790 7 791 2 792 3 793 6 794 7 795 2 796 3 797 6 798 7 799 2 800 3 801 6 802 7 803 4 804 5 805 4 806 5 807 4 808 5 809 4 810 5 811 4 812 5 813 4 814 5 815 4 816 5 817 4 818 5 819 4 820 5 821 4 822 5 823 4 824 5 825 4 826 5 827 4 828 5 829 4 830 5 831 4 832 5 833 4 834 5 835 4 836 5 837 4 838 5 839 4 840 5 841 4 842 5 843 4 844 5 845 0 846 1 847 0 848 1 849 0 850 1 851 0 852 1 853 0 854 1 855 0 856 1 857 0 858 0 859 1 860 0 861 1 862 0 863 1 864 0 865 1 866 0 867 1 868 0 869 1 870 0 871 1 872 0 873 1 874 0 875 1 876 0 877 1 878 0 879 1 880 0 881 1 882 0 883 1 884 0 885 1 886 0 887 1 888 0 889 1 890 0 891 1 892 0 893 1 894 0 895 1 896 0 897 1 898 0 899 1 900 0 901 1 902 0 903 1 904 0 905 1 906 0 907 1 908 0 909 1 910 0 911 1 912 0 913 1 914 0 915 1 916 0 917 1 918 0 919 1 920 0 921 1 922 0 923 1 924 0 925 1 926 0 927 1 928 0 929 1 930 0 931 1 932 0 933 1 934 0 935 1 936 0 937 0 938 0 939 1 940 0 941 1 942 0 943 0 944 1 945 0 946 0 947 0 948 0 949 0 950 0 951 0 952 1 953 0 954 1 955 0 956 1 957 0 958 1 959 0 960 1 961 0 962 0 963 0 964 0 965 1 966 0 967 1 968 0 969 1 970 0 971 1 972 0 973 1 974 0 975 1 976 0 977 1 978 0 979 1 980 0 981 1 982 0 983 1 984 0 985 1 986 0 987 1 988 0 989 1 990 0 991 1 992 0 993 1 994 0 995 1 996 0 997 1 998 0 999 1 1000 0 1001 1 1002 0 1003 1 1004 0 1005 1 1006 0 1007 1 1008 0 1009 1 1010 0 1011 1 1012 0 1013 1 1014 0 1015 1 1016 0 1017 1 1018 0 1019 1 1020 0 1021 1 1022 0 1023 1 1024 0 1025 1 1026 0 1027 1 1028 0 1029 1 1030 0 1031 1 1032 0 1033 1 1034 0 1035 1 1036 0 1037 1 1038 0 1039 1 1040 0 1041 1 1042 0 1043 1 1044 0 1045 1 1046 0 1047 1 1048 0 1049 1 1050 0 1051 1 1052 4 1053 5 1054 4 1055 5 1056 4 1057 5 1058 4 1059 5 1060 4 1061 5 1062 4 1063 5 1064 4 1065 5 1066 4 1067 5 1068 4 1069 5 1070 4 1071 5 1072 4 1073 5 1074 4 1075 5 1076 4 1077 5 1078 4 1079 5 1080 4 1081 5 1082 4 1083 5 1084 4 1085 5 1086 4 1087 5 1088 4 1089 5 1090 4 1091 5 1092 4 1093 5 1094 0 1095 1 1096 2 1097 0 1098 1 1099 2 1100 0 1101 1 1102 2 1103 0 1104 1 1105 2 1106 3 1107 6 1108 7 1109 3 1110 6 1111 7 1112 2 1113 3 1114 6 1115 4 1116 5 1117 4 1118 5 1119 2 1120 3 1121 6 1122 2 1123 3 1124 6 1125 3 1126 6 1127 3 1128 6 1129 2 1130 3 1131 6 1132 2 1133 3 1134 6 1135 3 1136 6 1137 3 1138 6 1139 3 1140 4 1141 5 1142 6 1143 3 1144 6 1145 3 1146 4 1147 5 1148 6 1149 3 1150 6 1151 3 1152 6 1153 2 1154 3 1155 6 1156 3 1157 6 1158 2 1159 3 1160 6 1161 3 1162 6 1163 2 1164 3 1165 6 1166 2 1167 3 1168 6 1169 2 1170 3 1171 6 1172 3 1173 6 1174 3 1175 6 1176 3 1177 6 1178 3 1179 6 1180 3 1181 4 1182 5 1183 6 1184 3 1185 4 1186 5 1187 6 1188 3 1189 4 1190 5 1191 6 1192 3 1193 4 1194 5 1195 6 1196 3 1197 6 1198 3 1199 6 1200 2 1201 3 1202 6 1203 2 1204 3 1205 6 1206 2 1207 3 1208 6 1209 2 1210 3 1211 6 1212 2 1213 3 1214 6 1215 2 1216 3 1217 6 1218 3 1219 6 1220 2 1221 3 1222 6 1223 2 1224 3 1225 6 1226 2 1227 3 1228 6 1229 2 1230 3 1231 6 1232 2 1233 3 1234 6 1235 2 1236 3 1237 6 1238 2 1239 3 1240 6 1241 7 1242 3 1243 6 1244 3 1245 6 1246 4 1247 5 1248 3 1249 6 1250 2 1251 3 1252 6 1253 2 1254 3 1255 6 1256 2 1257 3 1258 6 1259 7 1260 2 1261 3 1262 6 1263 7 1264 2 1265 3 1266 6 1267 2 1268 3 1269 6 1270 4 1271 5 1272 2 1273 3 1274 6 1275 7 1276 2 1277 3 1278 6 1279 2 1280 3 1281 6 1282 2 1283 3 1284 3 1285 2 1286 3 1287 6 1288 3 1289 2 1290 3 1291 6 1292 7 1293 2 1294 3 1295 6 1296 2 1297 3 1298 6 1299 7 1300 2 1301 3 1302 6 1303 2 1304 3 1305 6 1306 7 1307 3 1308 6 1309 3 1310 3 1311 6 1312 3 1313 5 1314 6 1315 3 1316 4 1317 5 1318 6 1319 2 1320 3 1321 6 1322 7 1323 2 1324 3 1325 6 1326 7 1327 2 1328 3 1329 6 1330 7 1331 2 1332 3 1333 6 1334 7 1335 2 1336 3 1337 6 1338 7 1339 2 1340 3 1341 6 1342 7 1343 2 1344 3 1345 6 1346 7 1347 3 1348 6 1349 7 1350 3 1351 6 1352 7 1353 3 1354 6 1355 7 1356 9 1357 2 1358 3 1359 6 1360 7 1361 1 1362 2 1363 3 1364 6 1365 1 1366 2 1367 3 1368 6 1369 7 1370 3 1371 6 1372 7 1373 8 1374 9 1375 3 1376 6 1377 7 1378 8 1379 3 1380 6 1381 7 1382 8 1383 1 1384 2 1385 3 1386 6 1387 7 1388 1 1389 2 1390 0 1391 1 1392 2 1393 0 1394 1 1395 2 1396 0 1397 1 1398 2 1399 0 1400 1 1401 2 1402 1 1403 2 1404 1 1405 2 1406 3 1407 1 1408 2 1409 0 1410 1 1411 2 1412 1 1413 2 1414 0 1415 1 1416 2 1417 1 1418 2 1419 3 1420 1 1421 2 1422 3 1423 2 1424 3 1425 6 1426 2 1427 3 1428 2 1429 3 1430 6 1431 2 1432 3 1433 6 1434 1 1435 2 1436 3 1437 1 1438 2 1439 3 1440 1 1441 2 1442 3 1443 1 1444 2 1445 3 1446 1 1447 2 1448 3 1449 1 1450 2 1451 3 1452 2 1453 3 1454 6 1455 2 1456 3 1457 6 1458 2 1459 3 1460 2 1461 3 1462 1 1463 2 1464 1 1465 2 1466 1 1467 2 1468 1 1469 2 1470 1 1471 2 1472 1 1473 2 1474 1 1475 2 1476 1 1477 2 1478 0 1479 1 1480 2 1481 1 1482 2 1483 0 1484 1 1485 2 1486 0 1487 1 1488 2 1489 0 1490 1 1491 2 1492 0 1493 1 1494 2 1495 0 1496 1 1497 2 1498 0 1499 1 1500 2 1501 0 1502 1 1503 2 1504 0 1505 1 1506 2 1507 3 1508 6 1509 7 1510 3 1511 6 1512 7 1513 3 1514 6 1515 7 1516 0 1517 1 1518 2 1519 0 1520 1 1521 2 1522 0 1523 1 1524 2 1525 0 1526 1 1527 2 1528 0 1529 1 1530 2 1531 0 1532 1 1533 2 1534 0 1535 1 1536 2 1537 0 1538 1 1539 2 1540 0 1541 1 1542 2 1543 0 1544 1 1545 2 1546 0 1547 1 1548 2 1549 0 1550 1 1551 0 1552 1 1553 2 1554 0 1555 1 1556 0 1557 1 1558 0 1559 1 1560 0 1561 1 1562 0 1563 0 1564 44 1565 48 1566 0 1567 0 1568 44 1569 0 1570 44 1571 0 1572 44 1573 48 1574 0 1575 44 1576 48 1577 0 1578 44 1579 48 1580 0 1581 44 1582 48 1583 0 1584 44 1585 48 1586 0 1587 44 1588 48 1589 0 1590 44 1591 0 1592 44 1593 0 1594 44 1595 0 1596 44 1597 0 1598 44 1599 0 1600 44 1601 0 1602 44 1603 0 1604 44 1605 0 1606 44 1607 0 1608 1 1609 44 1610 0 1611 44 1612 0 1613 44 1614 0 1615 44 1616 0 1617 1 1618 44 1619 0 1620 44 1621 0 1622 1 1623 44 1624 0 1625 44 1626 0 1627 44 1628 0 1629 0 1630 44 1631 48 1632 0 1633 44 1634 48 1635 0 1636 44 1637 48 1638 0 1639 44 1640 0 1641 44 1642 0 1643 44 1644 0 1645 44 1646 0 1647 44 1648 0 1649 44 1650 0 1651 44 1652 0 1653 44 1654 48 1655 0 1656 44 1657 48 1658 0 1659 44 1660 48 1661 0 1662 44 1663 48 1664 0 1665 44 1666 48 1667 0 1668 44 1669 48 1670 0 1671 44 1672 0 1673 44 1674 0 1675 44 1676 0 1677 44 1678 0 1679 44 1680 0 1681 44 1682 0 1683 44 1684 0 1685 44 1686 0 1687 44 1688 0 1689 44 1690 0 1691 44 1692 0 1693 44 1694 0 1695 44 1696 0 1697 44 1698 0 1699 44 1700 0 1701 44 1702 0 1703 44 1704 48 1705 0 1706 44 1707 48 1708 0 1709 44 1710 48 1711 0 1712 44 1713 48 1714 0 1715 44 1716 48 1717 0 1718 44 1719 48 1720 0 1721 44 1722 48 1723 0 1724 44 1725 48 1726 0 1727 44 1728 48 1729 0 1730 44 1731 48 1732 0 1733 44 1734 48 1735 0 1736 44 1737 48 1738 0 1739 44 1740 48 1741 0 1742 44 1743 48 1744 0 1745 44 1746 48 1747 0 1748 44 1749 48 1750 0 1751 44 1752 48 1753 0 1754 44 1755 48 1756 0 1757 44 1758 48 1759 44 1760 44 1761 44 1762 48 1763 0 1764 44 1765 48 1766 44 1767 0 1768 44 1769 44 1770 0 1771 44 1772 48 1773 0 1774 44 1775 48 1776 0 1777 44 1778 0 1779 44 1780 0 1781 44 1782 44 1783 44 1784 0 1785 44 1786 44 1787 0 1788 44 1789 44 1790 0 1791 44 1792 0 1793 44 1794 44 1795 0 1796 44 1797 0 1798 44 1799 0 1800 44 1801 0 1802 44 1803 0 1804 44 1805 0 1806 44 1807 0 1808 44 1809 0 1810 44 1811 0 1812 44 1813 0 1814 44 1815 44 1816 0 1817 44 1818 48 1819 44 1820 0 1821 44 1822 48 1823 44 1824 0 1825 44 1826 0 1827 44 1828 3 1829 4 1830 5 1831 3 1832 4 1833 5 1834 3 1835 4 1836 5 1837 3 1838 4 1839 5 1840 3 1841 4 1842 5 1843 6 1844 3 1845 4 1846 5 1847 3 1848 4 1849 5 1850 6 1851 3 1852 4 1853 5 1854 6 1855 3 1856 4 1857 5 1858 6 1859 4 1860 5 1861 4 1862 5 1863 4 1864 5 1865 4 1866 5 1867 3 1868 4 1869 5 1870 4 1871 5 1872 4 1873 5 1874 3 1875 4 1876 5 1877 3 1878 4 1879 5 1880 6 1881 3 1882 5 1883 6 1884 3 1885 5 1886 6 1887 3 1888 4 1889 5 1890 3 1891 3 1892 4 1893 5 1894 4 1895 5 1896 4 1897 5 1898 4 1899 5 1900 4 1901 5 1902 3 1903 4 1904 5 1905 3 1906 4 1907 5 1908 3 1909 4 1910 5 1911 6 1912 3 1913 4 1914 5 1915 6 1916 3 1917 6 1918 3 1919 6 1920 7 1921 8 1922 9 1923 3 1924 6 1925 7 1926 8 1927 9 1928 3 1929 6 1930 7 1931 8 1932 9 1933 3 1934 6 1935 7 1936 8 1937 9 1938 3 1939 6 1940 7 1941 8 1942 9 1943 3 1944 6 1945 7 1946 8 1947 9 1948 3 1949 6 1950 7 1951 8 1952 9 1953 3 1954 6 1955 7 1956 9 1957 3 1958 6 1959 7 1960 8 1961 9 1962 3 1963 6 1964 7 1965 9 1966 3 1967 6 1968 7 1969 2 1970 3 1971 6 1972 7 1973 2 1974 3 1975 6 1976 7 1977 2 1978 3 1979 6 1980 7 1981 2 1982 3 1983 6 1984 7 1985 2 1986 3 1987 6 1988 7 1989 2 1990 3 1991 6 1992 7 1993 2 1994 3 1995 6 1996 7 1997 2 1998 3 1999 6 2000 7 2001 2 2002 3 2003 6 2004 7 2005 2 2006 3 2007 6 2008 7 2009 2 2010 3 2011 6 2012 7 2013 2 2014 3 2015 6 2016 7 2017 3 2018 6 2019 7 2020 9 2021 3 2022 6 2023 7 2024 8 2025 9 2026 3 2027 6 2028 7 2029 8 2030 9 2031 3 2032 6 2033 7 2034 8 2035 9 2036 3 2037 6 2038 7 2039 8 2040 9 2041 3 2042 6 2043 7 2044 8 2045 9 2046 3 2047 6 2048 7 2049 8 2050 9 2051 3 2052 6 2053 7 2054 8 2055 9 2056 3 2057 6 2058 7 2059 8 2060 9 2061 3 2062 6 2063 7 2064 8 2065 9 2066 3 2067 6 2068 7 2069 9 2070 3 2071 6 2072 7 2073 9 2074 3 2075 6 2076 7 2077 9 2078 2 2079 3 2080 6 2081 7 2082 2 2083 3 2084 6 2085 7 2086 2 2087 3 2088 6 2089 7 2090 2 2091 3 2092 6 2093 7 2094 3 2095 6 2096 7 2097 9 2098 3 2099 6 2100 7 2101 9 2102 3 2103 6 2104 7 2105 8 2106 9 2107 3 2108 6 2109 7 2110 8 2111 9 2112 3 2113 6 2114 7 2115 8 2116 9 2117 3 2118 6 2119 7 2120 8 2121 9 2122 3 2123 6 2124 7 2125 8 2126 9 2127 3 2128 6 2129 7 2130 8 2131 9 2132 3 2133 6 2134 7 2135 8 2136 9 2137 3 2138 6 2139 7 2140 8 2141 9 2142 3 2143 6 2144 7 2145 8 2146 3 2147 6 2148 7 2149 3 2150 6 2151 7 2152 3 2153 6 2154 7 2155 8 2156 3 2157 6 2158 7 2159 8 2160 3 2161 6 2162 7 2163 8 2164 3 2165 6 2166 7 2167 8 2168 3 2169 6 2170 7 2171 8 2172 3 2173 6 2174 7 2175 8 2176 3 2177 6 2178 7 2179 8 2180 3 2181 6 2182 7 2183 8 2184 3 2185 6 2186 7 2187 8 2188 3 2189 6 2190 7 2191 8 2192 9 2193 3 2194 6 2195 7 2196 8 2197 9 2198 3 2199 6 2200 7 2201 8 2202 3 2203 6 2204 7 2205 8 2206 3 2207 6 2208 7 2209 8 2210 3 2211 6 2212 7 2213 8 2214 3 2215 6 2216 7 2217 8 2218 3 2219 6 2220 7 2221 8 2222 3 2223 6 2224 7 2225 8 2226 3 2227 6 2228 7 2229 8 2230 3 2231 6 2232 7 2233 8 2234 3 2235 6 2236 7 2237 8 2238 3 2239 6 2240 7 2241 8 2242 3 2243 6 2244 7 2245 8 2246 3 2247 6 2248 7 2249 8 2250 3 2251 6 2252 7 2253 8 2254 3 2255 6 2256 7 2257 8 2258 9 2259 3 2260 6 2261 7 2262 8 2263 9 2264 3 2265 6 2266 7 2267 8 2268 9 2269 7 2270 8 2271 7 2272 8 2273 9 2274 7 2275 8 2276 7 2277 8 2278 3 2279 6 2280 7 2281 8 2282 9 2283 7 2284 8 2285 9 2286 3 2287 6 2288 7 2289 8 2290 9 2291 3 2292 6 2293 7 2294 8 2295 9 2296 3 2297 6 2298 7 2299 8 2300 9 2301 3 2302 6 2303 7 2304 8 2305 9 2306 3 2307 6 2308 7 2309 8 2310 9 2311 3 2312 6 2313 7 2314 8 2315 9 2316 3 2317 6 2318 7 2319 8 2320 9 2321 3 2322 6 2323 7 2324 8 2325 9 2326 3 2327 6 2328 7 2329 8 2330 9 2331 3 2332 6 2333 7 2334 8 2335 9 2336 3 2337 6 2338 7 2339 8 2340 9 2341 3 2342 6 2343 7 2344 8 2345 9 2346 3 2347 6 2348 7 2349 8 2350 9 2351 3 2352 6 2353 7 2354 8 2355 9 2356 3 2357 6 2358 7 2359 8 2360 9 2361 7 2362 8 2363 9 2364 3 2365 6 2366 7 2367 8 2368 9 2369 3 2370 6 2371 7 2372 8 2373 9 2374 3 2375 6 2376 7 2377 8 2378 9 2379 3 2380 6 2381 7 2382 8 2383 9 2384 3 2385 6 2386 7 2387 8 2388 9 2389 3 2390 6 2391 7 2392 8 2393 9 2394 3 2395 6 2396 7 2397 8 2398 9 2399 7 2400 8 2401 9 2402 7 2403 8 2404 9 2405 7 2406 8 2407 9 2408 7 2409 8 2410 9 2411 8 2412 9 2413 8 2414 9 2415 8 2416 9 2417 7 2418 8 2419 9 2420 7 2421 8 2422 9 2423 7 2424 8 2425 9 2426 7 2427 8 2428 9 2429 7 2430 8 2431 9 2432 7 2433 8 2434 9 2435 7 2436 8 2437 9 2438 8 2439 9 2440 8 2441 9 2442 7 2443 8 2444 9 2445 8 2446 9 2447 7 2448 8 2449 9 2450 7 2451 8 2452 9 2453 7 2454 8 2455 9 2456 7 2457 8 2458 9 2459 7 2460 8 2461 9 2462 7 2463 8 2464 9 2465 7 2466 8 2467 9 2468 8 2469 9 2470 8 2471 9 2472 8 2473 9 2474 7 2475 8 2476 9 2477 8 2478 9 2479 7 2480 8 2481 9 2482 7 2483 8 2484 9 2485 8 2486 9 2487 7 2488 8 2489 9 2490 8 2491 9 2492 10 2493 7 2494 8 2495 7 2496 8 2497 7 2498 8 2499 7 2500 8 2501 7 2502 8 2503 7 2504 8 2505 9 2506 7 2507 8 2508 9 2509 7 2510 8 2511 9 2512 7 2513 8 2514 9 2515 7 2516 8 2517 9 2518 7 2519 8 2520 9 2521 8 2522 9 2523 10 2524 8 2525 9 2526 10 2527 7 2528 8 2529 9 2530 7 2531 8 2532 9 2533 7 2534 8 2535 9 2536 7 2537 8 2538 9 2539 8 2540 9 2541 8 2542 9 2543 8 2544 9 2545 10 2546 9 2547 9 2548 10 2549 9 2550 10 2551 9 2552 10 2553 9 2554 10 2555 9 2556 9 2557 9 2558 8 2559 9 2560 9 2561 9 2562 10 2563 11 2564 9 2565 10 2566 9 2567 10 2568 11 2569 9 2570 10 2571 9 2572 9 2573 9 2574 9 2575 9 2576 9 2577 9 2578 9 2579 9 2580 9 2581 22 2582 9 2583 9 2584 9 2585 9 2586 9 2587 9 2588 10 2589 11 2590 13 2591 9 2592 13 2593 16 2594 9 2595 9 2596 13 2597 16 2598 9 2599 13 2600 16 2601 9 2602 10 2603 11 2604 13 2605 16 2606 9 2607 10 2608 11 2609 13 2610 9 2611 10 2612 11 2613 9 2614 10 2615 11 2616 9 2617 10 2618 11 2619 9 2620 10 2621 11 2622 10 2623 11 2624 12 2625 9 2626 10 2627 11 2628 13 2629 9 2630 10 2631 11 2632 13 2633 16 2634 9 2635 10 2636 11 2637 13 2638 14 2639 16 2640 9 2641 13 2642 16 2643 9 2644 13 2645 16 2646 19 2647 9 2648 13 2649 16 2650 19 2651 9 2652 16 2653 19 2654 22 2655 9 2656 16 2657 19 2658 9 2659 22 2660 9 2661 19 2662 22 2663 9 2664 16 2665 19 2666 22 2667 9 2668 19 2669 22 2670 9 2671 22 2672 9 2673 22 2674 9 2675 9 2676 9 2677 22 2678 23 2679 9 2680 19 2681 22 2682 23 2683 9 2684 19 2685 22 2686 9 2687 19 2688 22 2689 9 2690 19 2691 22 2692 23 2693 9 2694 22 2695 23 2696 9 2697 22 2698 23 2699 9 2700 19 2701 22 2702 9 2703 16 2704 19 2705 22 2706 9 2707 22 2708 23 2709 9 2710 22 2711 23 2712 9 2713 22 2714 23 2715 19 2716 20 2717 19 2718 20 2719 22 2720 23 2721 19 2722 20 2723 21 2724 19 2725 20 2726 19 2727 20 2728 21 2729 9 2730 16 2731 19 2732 22 2733 9 2734 16 2735 17 2736 19 2737 9 2738 16 2739 17 2740 19 2741 19 2742 20 2743 21 2744 19 2745 20 2746 21 2747 19 2748 20 2749 21 2750 19 2751 20 2752 21 2753 19 2754 20 2755 21 2756 20 2757 21 2758 19 2759 20 2760 21 2761 20 2762 21 2763 19 2764 20 2765 21 2766 19 2767 20 2768 21 2769 19 2770 20 2771 21 2772 19 2773 20 2774 21 2775 20 2776 21 2777 20 2778 21 2779 20 2780 21 2781 20 2782 21 2783 20 2784 21 2785 9 2786 16 2787 17 2788 19 2789 16 2790 17 2791 18 2792 16 2793 17 2794 18 2795 16 2796 17 2797 18 2798 16 2799 17 2800 18 2801 9 2802 16 2803 17 2804 9 2805 13 2806 16 2807 17 2808 19 2809 9 2810 13 2811 14 2812 16 2813 9 2814 13 2815 14 2816 16 2817 9 2818 11 2819 13 2820 14 2821 16 2822 9 2823 13 2824 14 2825 15 2826 9 2827 13 2828 14 2829 15 2830 9 2831 13 2832 14 2833 9 2834 13 2835 14 2836 16 2837 17 2838 16 2839 17 2840 16 2841 17 2842 18 2843 16 2844 17 2845 18 2846 16 2847 17 2848 18 2849 16 2850 17 2851 18 2852 17 2853 18 2854 17 2855 18 2856 17 2857 18 2858 16 2859 17 2860 18 2861 16 2862 17 2863 18 2864 17 2865 18 2866 17 2867 18 2868 17 2869 18 2870 17 2871 18 2872 17 2873 18 2874 17 2875 18 2876 17 2877 18 2878 13 2879 14 2880 15 2881 13 2882 14 2883 15 2884 13 2885 14 2886 15 2887 13 2888 14 2889 15 2890 13 2891 14 2892 15 2893 14 2894 15 2895 13 2896 14 2897 15 2898 15 2899 15 2900 15 2901 15 2902 15 2903 15 2904 13 2905 14 2906 15 2907 13 2908 14 2909 15 2910 9 2911 13 2912 14 2913 15 2914 9 2915 13 2916 14 2917 15 2918 9 2919 13 2920 14 2921 15 2922 13 2923 14 2924 15 2925 14 2926 15 2927 9 2928 10 2929 11 2930 13 2931 14 2932 16 2933 9 2934 10 2935 11 2936 13 2937 16 2938 9 2939 10 2940 11 2941 13 2942 16 2943 10 2944 11 2945 12 2946 10 2947 11 2948 12 2949 10 2950 11 2951 12 2952 10 2953 11 2954 12 2955 10 2956 11 2957 12 2958 10 2959 11 2960 12 2961 11 2962 12 2963 10 2964 11 2965 12 2966 11 2967 12 2968 11 2969 12 2970 11 2971 12 2972 11 2973 12 2974 11 2975 12 2976 11 2977 12 2978 11 2979 12 2980 11 2981 12 2982 10 2983 11 2984 12 2985 44 2986 45 2987 46 2988 44 2989 45 2990 46 2991 47 2992 44 2993 45 2994 46 2995 44 2996 45 2997 46 2998 47 2999 44 3000 45 3001 46 3002 47 3003 44 3004 45 3005 46 3006 44 3007 45 3008 46 3009 44 3010 45 3011 46 3012 44 3013 45 3014 46 3015 47 3016 44 3017 45 3018 46 3019 47 3020 44 3021 45 3022 46 3023 47 3024 44 3025 45 3026 46 3027 47 3028 44 3029 45 3030 46 3031 47 3032 45 3033 46 3034 47 3035 45 3036 46 3037 47 3038 45 3039 46 3040 47 3041 45 3042 46 3043 47 3044 45 3045 46 3046 47 3047 45 3048 46 3049 47 3050 45 3051 46 3052 47 3053 45 3054 46 3055 47 3056 45 3057 46 3058 47 3059 44 3060 45 3061 46 3062 47 3063 44 3064 45 3065 46 3066 47 3067 44 3068 45 3069 46 3070 47 3071 44 3072 45 3073 46 3074 44 3075 45 3076 46 3077 47 3078 44 3079 45 3080 46 3081 44 3082 45 3083 46 3084 47 3085 44 3086 45 3087 46 3088 47 3089 44 3090 45 3091 46 3092 47 3093 45 3094 46 3095 47 3096 45 3097 46 3098 47 3099 45 3100 46 3101 47 3102 45 3103 46 3104 47 3105 45 3106 46 3107 47 3108 44 3109 45 3110 46 3111 47 3112 44 3113 45 3114 46 3115 47 3116 44 3117 45 3118 46 3119 47 3120 44 3121 45 3122 46 3123 47 3124 44 3125 45 3126 46 3127 44 3128 45 3129 46 3130 47 3131 44 3132 45 3133 46 3134 44 3135 45 3136 46 3137 47 3138 44 3139 45 3140 46 3141 47 3142 45 3143 46 3144 47 3145 45 3146 46 3147 47 3148 45 3149 46 3150 47 3151 45 3152 46 3153 47 3154 45 3155 46 3156 47 3157 45 3158 46 3159 47 3160 44 3161 45 3162 46 3163 47 3164 44 3165 45 3166 46 3167 47 3168 44 3169 45 3170 46 3171 47 3172 44 3173 45 3174 46 3175 47 3176 44 3177 45 3178 46 3179 44 3180 45 3181 46 3182 47 3183 44 3184 45 3185 46 3186 44 3187 45 3188 46 3189 47 3190 44 3191 45 3192 46 3193 47 3194 45 3195 46 3196 47 3197 45 3198 46 3199 47 3200 45 3201 46 3202 47 3203 45 3204 46 3205 47 3206 45 3207 46 3208 47 3209 45 3210 46 3211 47 3212 45 3213 46 3214 47 3215 45 3216 46 3217 47 3218 45 3219 46 3220 47 3221 45 3222 46 3223 47 3224 45 3225 46 3226 47 3227 45 3228 46 3229 47 3230 45 3231 46 3232 47 3233 47 3234 47 3235 47 3236 47 3237 47 3238 47 3239 46 3240 47 3241 46 3242 47 3243 45 3244 46 3245 47 3246 45 3247 46 3248 47 3249 45 3250 46 3251 47 3252 45 3253 46 3254 47 3255 45 3256 46 3257 47 3258 45 3259 46 3260 47 3261 46 3262 47 3263 47 3264 47 3265 47 3266 47 3267 47 3268 47 3269 47 3270 47 3271 46 3272 47 3273 45 3274 46 3275 47 3276 45 3277 46 3278 47 3279 45 3280 46 3281 47 3282 45 3283 46 3284 47 3285 45 3286 46 3287 47 3288 45 3289 46 3290 47 3291 45 3292 46 3293 47 3294 45 3295 46 3296 47 3297 45 3298 46 3299 47 3300 45 3301 46 3302 47 3303 45 3304 46 3305 47 3306 45 3307 46 3308 47 3309 45 3310 46 3311 47 3312 45 3313 46 3314 47 3315 45 3316 46 3317 47 3318 45 3319 46 3320 47 3321 45 3322 46 3323 47 3324 45 3325 46 3326 47 3327 45 3328 46 3329 47 3330 0 3331 1 3332 2 3333 0 3334 1 3335 2 3336 0 3337 1 3338 0 3339 1 3340 0 3341 1 3342 0 3343 1 3344 2 3345 0 3346 1 3347 2 3348 0 3349 1 3350 2 3351 0 3352 1 3353 0 3354 1 3355 0 3356 1 3357 2 3358 0 3359 1 3360 0 3361 1 3362 2 3363 0 3364 1 3365 2 3366 0 3367 1 3368 0 3369 1 3370 0 3371 1 3372 2 3373 0 3374 1 3375 2 3376 0 3377 1 3378 2 3379 0 3380 1 3381 2 3382 0 3383 1 3384 0 3385 1 3386 2 3387 0 3388 1 3389 0 3390 1 3391 0 3392 1 3393 2 3394 0 3395 1 3396 2 3397 0 3398 1 3399 0 3400 1 3401 0 3402 1 3403 2 3404 0 3405 1 3406 2 3407 0 3408 1 3409 2 3410 0 3411 1 3412 2 3413 0 3414 1 3415 0 3416 1 3417 0 3418 1 3419 2 3420 0 3421 1 3422 2 3423 0 3424 1 3425 0 3426 1 3427 2 3428 0 3429 1 3430 2 3431 0 3432 1 3433 2 3434 0 3435 1 3436 2 3437 0 3438 1 3439 0 3440 1 3441 0 3442 1 3443 2 3444 0 3445 1 3446 2 3447 0 3448 1 3449 2 3450 0 3451 1 3452 2 3453 0 3454 1 3455 0 3456 1 3457 0 3458 1 3459 2 3460 0 3461 1 3462 2 3463 0 3464 1 3465 2 3466 0 3467 1 3468 0 3469 1 3470 0 3471 1 3472 2 3473 0 3474 1 3475 2 3476 0 3477 1 3478 2 3479 0 3480 1 3481 2 3482 0 3483 1 3484 2 3485 0 3486 1 3487 2 3488 0 3489 1 3490 2 3491 0 3492 1 3493 0 3494 1 3495 2 3496 0 3497 1 3498 0 3499 1 3500 0 3501 1 3502 2 3503 0 3504 1 3505 2 3506 0 3507 1 3508 0 3509 1 3510 2 3511 0 3512 1 3513 0 3514 1 3515 44 3516 45 3517 44 3518 45 3519 46 3520 44 3521 45 3522 44 3523 45 3524 44 3525 45 3526 44 3527 45 3528 44 3529 45 3530 44 3531 45 3532 44 3533 45 3534 44 3535 45 3536 44 3537 45 3538 44 3539 45 3540 44 3541 45 3542 44 3543 45 3544 44 3545 45 3546 44 3547 45 3548 44 3549 45 3550 44 3551 45 3552 44 3553 45 3554 44 3555 45 3556 44 3557 45 3558 44 3559 45 3560 44 3561 45 3562 44 3563 45 3564 44 3565 45 3566 44 3567 45 3568 44 3569 45 3570 44 3571 45 3572 44 3573 45 3574 44 3575 45 3576 44 3577 45 3578 44 3579 45 3580 44 3581 45 3582 44 3583 45 3584 44 3585 45 3586 44 3587 45 3588 44 3589 45 3590 44 3591 45 3592 44 3593 45 3594 44 3595 45 3596 44 3597 45 3598 44 3599 45 3600 44 3601 45 3602 44 3603 45 3604 44 3605 45 3606 44 3607 45 3608 44 3609 45 3610 44 3611 45 3612 44 3613 45 3614 44 3615 45 3616 44 3617 45 3618 44 3619 45 3620 44 3621 45 3622 44 3623 45 3624 44 3625 45 3626 44 3627 45 3628 44 3629 45 3630 44 3631 45 3632 44 3633 45 3634 44 3635 45 3636 44 3637 45 3638 44 3639 45 3640 44 3641 45 3642 44 3643 45 3644 44 3645 45 3646 44 3647 45 3648 44 3649 45 3650 44 3651 45 3652 48 3653 49 3654 50 3655 48 3656 49 3657 50 3658 48 3659 49 3660 48 3661 49 3662 48 3663 49 3664 48 3665 49 3666 48 3667 49 3668 48 3669 49 3670 50 3671 48 3672 49 3673 50 3674 48 3675 49 3676 48 3677 49 3678 48 3679 49 3680 50 3681 48 3682 49 3683 50 3684 48 3685 49 3686 48 3687 49 3688 50 3689 48 3690 49 3691 48 3692 49 3693 48 3694 49 3695 48 3696 49 3697 48 3698 49 3699 48 3700 49 3701 48 3702 49 3703 48 3704 49 3705 50 3706 48 3707 49 3708 48 3709 49 3710 50 3711 48 3712 49 3713 48 3714 49 3715 48 3716 49 3717 48 3718 49 3719 48 3720 49 3721 48 3722 49 3723 48 3724 49 3725 50 3726 48 3727 49 3728 44 3729 48 3730 49 3731 0 3732 44 3733 48 3734 49 3735 0 3736 44 3737 48 3738 49 3739 44 3740 48 3741 49 3742 48 3743 49 3744 0 3745 44 3746 48 3747 49 3748 48 3749 49 3750 48 3751 49 3752 44 3753 48 3754 49 3755 48 3756 49 3757 0 3758 44 3759 48 3760 49 3761 0 3762 44 3763 48 3764 49 3765 0 3766 48 3767 49 3768 0 3769 44 3770 48 3771 49 3772 48 3773 49 3774 48 3775 49 3776 0 3777 48 3778 49 3779 0 3780 44 3781 48 3782 49 3783 0 3784 44 3785 48 3786 49 3787 0 3788 48 3789 49 3790 48 3791 49 3792 0 3793 48 3794 49 3795 48 3796 49 3797 0 3798 48 3799 49 3800 0 3801 48 3802 49 3803 0 3804 48 3805 49 3806 48 3807 49 3808 48 3809 49 3810 0 3811 48 3812 49 3813 48 3814 49 3815 0 3816 48 3817 49 3818 0 3819 48 3820 49 3821 48 3822 49 3823 48 3824 49 3825 48 3826 49 3827 0 3828 44 3829 48 3830 49 3831 0 3832 44 3833 48 3834 49 3835 44 3836 45 3837 44 3838 45 3839 44 3840 45 3841 44 3842 45 3843 44 3844 45 3845 44 3846 45 3847 44 3848 45 3849 44 3850 45 3851 44 3852 45 3853 44 3854 45 3855 44 3856 45 3857 44 3858 45 3859 44 3860 45 3861 44 3862 45 3863 44 3864 45 3865 44 3866 45 3867 44 3868 45 3869 44 3870 45 3871 44 3872 45 3873 44 3874 45 3875 44 3876 45 3877 44 3878 45 3879 44 3880 45 3881 44 3882 45 3883 44 3884 45 3885 44 3886 45 3887 44 3888 45 3889 44 3890 45 3891 44 3892 45 3893 44 3894 45 3895 44 3896 45 3897 44 3898 45 3899 44 3900 45 3901 44 3902 45 3903 44 3904 45 3905 44 3906 45 3907 44 3908 45 3909 44 3910 45 3911 44 3912 45 3913 44 3914 45 3915 0 3916 1 3917 2 3918 0 3919 1 3920 2 3921 0 3922 1 3923 2 3924 0 3925 1 3926 2 3927 0 3928 1 3929 2 3930 0 3931 1 3932 2 3933 0 3934 1 3935 2 3936 1 3937 2 3938 0 3939 1 3940 2 3941 0 3942 1 3943 2 3944 0 3945 1 3946 2 3947 0 3948 1 3949 2 3950 0 3951 1 3952 0 3953 1 3954 0 3955 1 3956 0 3957 1 3958 0 3959 1 3960 0 3961 1 3962 0 3963 1 3964 2 3965 0 3966 1 3967 2 3968 0 3969 1 3970 2 3971 0 3972 1 3973 2 3974 0 3975 1 3976 2 3977 0 3978 1 3979 2 3980 0 3981 1 3982 0 3983 1 3984 2 3985 0 3986 1 3987 0 3988 1 3989 2 3990 1 3991 2 3992 1 3993 2 3994 0 3995 1 3996 2 3997 0 3998 1 3999 2 4000 0 4001 1 4002 0 4003 1 4004 2 4005 0 4006 1 4007 0 4008 1 4009 2 4010 0 4011 1 4012 2 4013 0 4014 1 4015 2 4016 25 4017 26 4018 25 4019 26 4020 3 4021 4 4022 5 4023 25 4024 3 4025 4 4026 5 4027 3 4028 25 4029 26 4030 3 4031 25 4032 26 4033 3 4034 25 4035 26 4036 3 4037 25 4038 26 4039 3 4040 25 4041 26 4042 3 4043 25 4044 3 4045 25 4046 26 4047 3 4048 4 4049 5 4050 3 4051 25 4052 26 4053 3 4054 4 4055 5 4056 3 4057 25 4058 26 4059 3 4060 4 4061 5 4062 3 4063 4 4064 5 4065 25 4066 26 4067 3 4068 4 4069 5 4070 25 4071 26 4072 3 4073 25 4074 26 4075 3 4076 25 4077 26 4078 3 4079 25 4080 26 4081 3 4082 25 4083 26 4084 2 4085 3 4086 25 4087 26 4088 3 4089 25 4090 26 4091 2 4092 3 4093 25 4094 26 4095 3 4096 25 4097 26 4098 3 4099 25 4100 3 4101 25 4102 3 4103 25 4104 3 4105 4 4106 5 4107 3 4108 4 4109 5 4110 4 4111 5 4112 3 4113 4 4114 5 4115 3 4116 4 4117 5 4118 25 4119 26 4120 3 4121 4 4122 5 4123 25 4124 26 4125 3 4126 25 4127 26 4128 3 4129 25 4130 26 4131 2 4132 3 4133 25 4134 26 4135 3 4136 25 4137 26 4138 3 4139 25 4140 26 4141 3 4142 25 4143 26 4144 3 4145 25 4146 26 4147 3 4148 25 4149 26 4150 3 4151 25 4152 26 4153 3 4154 25 4155 26 4156 3 4157 25 4158 26 4159 2 4160 3 4161 25 4162 26 4163 2 4164 3 4165 25 4166 26 4167 2 4168 3 4169 25 4170 26 4171 3 4172 25 4173 26 4174 3 4175 25 4176 4 4177 5 4178 3 4179 4 4180 5 4181 25 4182 26 4183 3 4184 25 4185 26 4186 2 4187 3 4188 25 4189 26 4190 2 4191 3 4192 25 4193 26 4194 2 4195 3 4196 25 4197 26 4198 3 4199 25 4200 26 4201 3 4202 25 4203 26 4204 3 4205 25 4206 26 4207 3 4208 4 4209 5 4210 3 4211 25 4212 26 4213 2 4214 3 4215 2 4216 3 4217 25 4218 2 4219 3 4220 25 4221 26 4222 2 4223 3 4224 25 4225 26 4226 2 4227 3 4228 25 4229 26 4230 2 4231 3 4232 25 4233 26 4234 2 4235 3 4236 25 4237 26 4238 3 4239 25 4240 3 4241 3 4242 4 4243 5 4244 25 4245 3 4246 4 4247 5 4248 25 4249 26 4250 2 4251 3 4252 25 4253 26 4254 2 4255 3 4256 25 4257 26 4258 2 4259 3 4260 25 4261 26 4262 2 4263 3 4264 25 4265 26 4266 2 4267 3 4268 25 4269 26 4270 2 4271 3 4272 25 4273 26 4274 2 4275 3 4276 25 4277 26 4278 2 4279 3 4280 25 4281 26 4282 2 4283 3 4284 25 4285 26 4286 2 4287 3 4288 25 4289 26 4290 2 4291 3 4292 25 4293 26 4294 1 4295 2 4296 3 4297 25 4298 26 4299 1 4300 2 4301 3 4302 25 4303 26 4304 2 4305 3 4306 25 4307 26 4308 2 4309 3 4310 25 4311 26 4312 2 4313 3 4314 25 4315 26 4316 1 4317 2 4318 25 4319 26 4320 1 4321 2 4322 26 4323 0 4324 1 4325 2 4326 0 4327 1 4328 2 4329 0 4330 1 4331 2 4332 0 4333 1 4334 2 4335 1 4336 2 4337 3 4338 25 4339 26 4340 1 4341 2 4342 3 4343 1 4344 2 4345 1 4346 2 4347 1 4348 2 4349 3 4350 2 4351 3 4352 25 4353 2 4354 3 4355 25 4356 26 4357 2 4358 3 4359 25 4360 1 4361 2 4362 3 4363 1 4364 2 4365 3 4366 1 4367 2 4368 3 4369 1 4370 2 4371 3 4372 2 4373 3 4374 25 4375 2 4376 3 4377 25 4378 26 4379 2 4380 3 4381 25 4382 1 4383 2 4384 1 4385 2 4386 0 4387 1 4388 2 4389 0 4390 1 4391 2 4392 0 4393 1 4394 2 4395 3 4396 25 4397 26 4398 2 4399 3 4400 25 4401 26 4402 2 4403 3 4404 25 4405 26 4406 0 4407 1 4408 2 4409 0 4410 1 4411 2 4412 0 4413 1 4414 2 4415 0 4416 1 4417 2 4418 0 4419 1 4420 2 4421 0 4422 1 4423 2 4424 0 4425 1 4426 2 4427 0 4428 1 4429 2 4430 0 4431 1 4432 0 4433 1 4434 0 4435 1 4436 0 4437 1 4438 0 4439 0 4440 44 4441 48 4442 0 4443 48 4444 0 4445 44 4446 48 4447 0 4448 44 4449 48 4450 0 4451 44 4452 48 4453 0 4454 48 4455 0 4456 48 4457 0 4458 48 4459 0 4460 48 4461 0 4462 48 4463 0 4464 48 4465 0 4466 48 4467 0 4468 48 4469 0 4470 48 4471 0 4472 1 4473 48 4474 0 4475 48 4476 0 4477 48 4478 0 4479 48 4480 0 4481 1 4482 48 4483 0 4484 48 4485 0 4486 0 4487 44 4488 48 4489 0 4490 0 4491 44 4492 48 4493 0 4494 44 4495 48 4496 0 4497 48 4498 0 4499 48 4500 0 4501 48 4502 0 4503 48 4504 0 4505 44 4506 48 4507 0 4508 44 4509 48 4510 0 4511 44 4512 48 4513 0 4514 44 4515 48 4516 0 4517 44 4518 48 4519 0 4520 44 4521 48 4522 0 4523 44 4524 48 4525 0 4526 44 4527 48 4528 0 4529 44 4530 48 4531 0 4532 48 4533 0 4534 48 4535 0 4536 48 4537 0 4538 48 4539 0 4540 48 4541 0 4542 48 4543 0 4544 48 4545 0 4546 48 4547 0 4548 48 4549 0 4550 48 4551 0 4552 48 4553 0 4554 48 4555 0 4556 48 4557 0 4558 44 4559 48 4560 0 4561 44 4562 48 4563 0 4564 44 4565 48 4566 0 4567 44 4568 48 4569 0 4570 44 4571 48 4572 0 4573 44 4574 48 4575 0 4576 44 4577 48 4578 0 4579 44 4580 48 4581 0 4582 44 4583 48 4584 0 4585 44 4586 48 4587 0 4588 44 4589 48 4590 0 4591 44 4592 48 4593 0 4594 44 4595 48 4596 0 4597 44 4598 48 4599 0 4600 44 4601 48 4602 0 4603 44 4604 48 4605 49 4606 0 4607 44 4608 48 4609 49 4610 0 4611 44 4612 48 4613 0 4614 44 4615 48 4616 0 4617 44 4618 48 4619 0 4620 44 4621 48 4622 0 4623 44 4624 48 4625 0 4626 44 4627 48 4628 0 4629 44 4630 48 4631 0 4632 48 4633 0 4634 48 4635 0 4636 48 4637 0 4638 44 4639 48 4640 0 4641 44 4642 48 4643 0 4644 44 4645 48 4646 0 4647 48 4648 0 4649 48 4650 0 4651 48 4652 0 4653 48 4654 0 4655 44 4656 48 4657 0 4658 48 4659 0 4660 44 4661 48 4662 0 4663 44 4664 48 4665 0 4666 44 4667 48 4668 0 4669 44 4670 48 4671 0 4672 44 4673 48 4674 3 4675 4 4676 3 4677 4 4678 5 4679 3 4680 4 4681 5 4682 25 4683 3 4684 4 4685 5 4686 3 4687 4 4688 5 4689 3 4690 25 4691 3 4692 4 4693 5 4694 25 4695 3 4696 4 4697 5 4698 4 4699 5 4700 4 4701 5 4702 4 4703 5 4704 4 4705 5 4706 4 4707 5 4708 3 4709 4 4710 5 4711 3 4712 4 4713 5 4714 3 4715 4 4716 5 4717 3 4718 4 4719 5 4720 25 4721 3 4722 4 4723 5 4724 3 4725 4 4726 5 4727 3 4728 4 4729 3 4730 4 4731 25 4732 3 4733 25 4734 3 4735 25 4736 25 4737 26 4738 27 4739 28 4740 26 4741 27 4742 28 4743 26 4744 27 4745 28 4746 3 4747 25 4748 26 4749 27 4750 28 4751 26 4752 27 4753 28 4754 3 4755 25 4756 26 4757 27 4758 2 4759 3 4760 25 4761 26 4762 2 4763 3 4764 25 4765 26 4766 3 4767 25 4768 26 4769 2 4770 3 4771 25 4772 26 4773 2 4774 3 4775 25 4776 26 4777 2 4778 3 4779 25 4780 26 4781 2 4782 3 4783 25 4784 26 4785 2 4786 3 4787 25 4788 26 4789 2 4790 3 4791 25 4792 26 4793 3 4794 25 4795 26 4796 2 4797 3 4798 25 4799 26 4800 2 4801 3 4802 25 4803 26 4804 2 4805 3 4806 25 4807 26 4808 2 4809 3 4810 25 4811 26 4812 2 4813 3 4814 25 4815 26 4816 2 4817 3 4818 25 4819 26 4820 2 4821 3 4822 25 4823 26 4824 3 4825 25 4826 26 4827 3 4828 25 4829 26 4830 3 4831 25 4832 26 4833 3 4834 25 4835 26 4836 27 4837 28 4838 26 4839 27 4840 28 4841 3 4842 25 4843 26 4844 27 4845 28 4846 26 4847 27 4848 28 4849 3 4850 25 4851 26 4852 3 4853 25 4854 26 4855 3 4856 25 4857 26 4858 3 4859 25 4860 26 4861 3 4862 25 4863 26 4864 3 4865 25 4866 26 4867 2 4868 3 4869 25 4870 26 4871 2 4872 3 4873 25 4874 26 4875 2 4876 3 4877 25 4878 26 4879 2 4880 3 4881 25 4882 26 4883 3 4884 25 4885 26 4886 3 4887 25 4888 26 4889 3 4890 25 4891 26 4892 3 4893 25 4894 26 4895 3 4896 25 4897 26 4898 3 4899 25 4900 26 4901 27 4902 28 4903 26 4904 27 4905 3 4906 25 4907 26 4908 27 4909 3 4910 25 4911 26 4912 3 4913 25 4914 26 4915 3 4916 25 4917 26 4918 3 4919 25 4920 26 4921 2 4922 3 4923 25 4924 26 4925 3 4926 25 4927 26 4928 3 4929 25 4930 26 4931 3 4932 25 4933 26 4934 2 4935 3 4936 25 4937 26 4938 25 4939 26 4940 3 4941 25 4942 26 4943 3 4944 25 4945 26 4946 3 4947 25 4948 26 4949 3 4950 25 4951 26 4952 3 4953 25 4954 26 4955 3 4956 25 4957 26 4958 27 4959 26 4960 27 4961 3 4962 25 4963 26 4964 27 4965 26 4966 27 4967 3 4968 25 4969 26 4970 27 4971 28 4972 25 4973 26 4974 27 4975 28 4976 25 4977 26 4978 27 4979 28 4980 26 4981 27 4982 28 4983 26 4984 27 4985 28 4986 26 4987 27 4988 26 4989 27 4990 26 4991 27 4992 26 4993 27 4994 26 4995 27 4996 28 4997 26 4998 27 4999 28 5000 26 5001 27 5002 28 5003 26 5004 27 5005 28 5006 26 5007 27 5008 28 5009 26 5010 27 5011 26 5012 27 5013 28 5014 26 5015 27 5016 28 5017 26 5018 27 5019 26 5020 27 5021 26 5022 27 5023 26 5024 27 5025 26 5026 27 5027 26 5028 27 5029 28 5030 26 5031 27 5032 28 5033 26 5034 27 5035 28 5036 26 5037 27 5038 28 5039 26 5040 27 5041 28 5042 26 5043 27 5044 28 5045 26 5046 27 5047 28 5048 26 5049 27 5050 28 5051 26 5052 27 5053 28 5054 26 5055 27 5056 28 5057 26 5058 27 5059 28 5060 26 5061 27 5062 28 5063 26 5064 27 5065 28 5066 26 5067 27 5068 28 5069 26 5070 27 5071 28 5072 26 5073 27 5074 28 5075 26 5076 27 5077 28 5078 26 5079 27 5080 28 5081 26 5082 27 5083 28 5084 26 5085 27 5086 28 5087 26 5088 27 5089 28 5090 26 5091 27 5092 28 5093 26 5094 27 5095 28 5096 26 5097 27 5098 28 5099 26 5100 27 5101 28 5102 26 5103 27 5104 28 5105 26 5106 27 5107 28 5108 26 5109 27 5110 28 5111 26 5112 27 5113 28 5114 26 5115 27 5116 28 5117 26 5118 27 5119 28 5120 26 5121 27 5122 28 5123 26 5124 27 5125 28 5126 26 5127 27 5128 28 5129 26 5130 27 5131 28 5132 26 5133 27 5134 28 5135 26 5136 27 5137 28 5138 26 5139 27 5140 28 5141 26 5142 27 5143 28 5144 26 5145 27 5146 28 5147 26 5148 27 5149 28 5150 26 5151 27 5152 28 5153 26 5154 27 5155 28 5156 26 5157 27 5158 26 5159 27 5160 26 5161 27 5162 28 5163 26 5164 27 5165 28 5166 26 5167 27 5168 28 5169 26 5170 27 5171 28 5172 26 5173 27 5174 28 5175 26 5176 27 5177 28 5178 26 5179 27 5180 28 5181 26 5182 27 5183 28 5184 26 5185 27 5186 28 5187 26 5188 27 5189 28 5190 26 5191 27 5192 28 5193 26 5194 27 5195 28 5196 26 5197 27 5198 28 5199 26 5200 27 5201 28 5202 49 5203 50 5204 51 5205 49 5206 50 5207 51 5208 49 5209 50 5210 51 5211 49 5212 50 5213 51 5214 49 5215 50 5216 51 5217 48 5218 49 5219 50 5220 51 5221 49 5222 50 5223 51 5224 49 5225 50 5226 51 5227 49 5228 50 5229 51 5230 49 5231 50 5232 51 5233 48 5234 49 5235 50 5236 51 5237 48 5238 49 5239 50 5240 51 5241 48 5242 49 5243 50 5244 51 5245 48 5246 49 5247 50 5248 51 5249 48 5250 49 5251 50 5252 48 5253 49 5254 50 5255 48 5256 49 5257 50 5258 51 5259 48 5260 49 5261 50 5262 51 5263 48 5264 49 5265 50 5266 51 5267 48 5268 49 5269 50 5270 51 5271 49 5272 50 5273 51 5274 49 5275 50 5276 51 5277 49 5278 50 5279 51 5280 49 5281 50 5282 51 5283 49 5284 50 5285 51 5286 48 5287 49 5288 50 5289 51 5290 49 5291 50 5292 51 5293 49 5294 50 5295 51 5296 49 5297 50 5298 51 5299 49 5300 50 5301 51 5302 49 5303 50 5304 51 5305 49 5306 50 5307 51 5308 48 5309 49 5310 50 5311 51 5312 48 5313 49 5314 50 5315 51 5316 48 5317 49 5318 50 5319 51 5320 48 5321 49 5322 50 5323 51 5324 48 5325 49 5326 50 5327 51 5328 48 5329 49 5330 50 5331 51 5332 48 5333 49 5334 50 5335 48 5336 49 5337 50 5338 51 5339 48 5340 49 5341 50 5342 51 5343 48 5344 49 5345 50 5346 51 5347 48 5348 49 5349 50 5350 51 5351 48 5352 49 5353 50 5354 51 5355 49 5356 50 5357 51 5358 49 5359 50 5360 51 5361 49 5362 50 5363 51 5364 48 5365 49 5366 50 5367 51 5368 48 5369 49 5370 50 5371 51 5372 48 5373 49 5374 50 5375 51 5376 48 5377 49 5378 50 5379 51 5380 48 5381 49 5382 50 5383 51 5384 48 5385 49 5386 50 5387 51 5388 49 5389 50 5390 51 5391 49 5392 50 5393 51 5394 49 5395 50 5396 51 5397 49 5398 50 5399 51 5400 49 5401 50 5402 51 5403 49 5404 50 5405 51 5406 49 5407 50 5408 51 5409 49 5410 50 5411 51 5412 49 5413 50 5414 51 5415 49 5416 50 5417 51 5418 51 5419 50 5420 51 5421 51 5422 51 5423 51 5424 51 5425 50 5426 51 5427 50 5428 51 5429 49 5430 50 5431 51 5432 49 5433 50 5434 51 5435 49 5436 50 5437 51 5438 49 5439 50 5440 51 5441 49 5442 50 5443 51 5444 49 5445 50 5446 51 5447 50 5448 51 5449 51 5450 51 5451 51 5452 51 5453 51 5454 51 5455 51 5456 51 5457 50 5458 51 5459 49 5460 50 5461 51 5462 49 5463 50 5464 51 5465 49 5466 50 5467 51 5468 49 5469 50 5470 51 5471 49 5472 50 5473 51 5474 49 5475 50 5476 51 5477 49 5478 50 5479 51 5480 49 5481 50 5482 51 5483 49 5484 50 5485 51 5486 49 5487 50 5488 51 5489 49 5490 50 5491 51 5492 49 5493 50 5494 51 5495 49 5496 50 5497 51 5498 49 5499 50 5500 51 5501 49 5502 50 5503 51 5504 49 5505 50 5506 51 5507 49 5508 50 5509 51 5510 49 5511 50 5512 51 5513 49 5514 50 5515 51 5516 0 5517 1 5518 0 5519 1 5520 2 5521 0 5522 1 5523 0 5524 1 5525 0 5526 1 5527 0 5528 1 5529 27 5530 28 5531 27 5532 28 5533 27 5534 28 5535 27 5536 28 5537 27 5538 28 5539 27 5540 28 5541 27 5542 28 5543 26 5544 27 5545 28 5546 27 5547 28 5548 27 5549 28 5550 27 5551 28 5552 27 5553 28 5554 29 5555 27 5556 28 5557 29 5558 27 5559 28 5560 29 5561 27 5562 28 5563 27 5564 28 5565 27 5566 28 5567 27 5568 28 5569 27 5570 28 5571 29 5572 28 5573 29 5574 28 5575 29 5576 28 5577 29 5578 28 5579 27 5580 28 5581 27 5582 28 5583 27 5584 28 5585 27 5586 28 5587 28 5588 29 5589 30 5590 28 5591 29 5592 28 5593 29 5594 28 5595 29 5596 28 5597 28 5598 28 5599 28 5600 41 5601 28 5602 27 5603 28 5604 28 5605 41 5606 28 5607 41 5608 28 5609 41 5610 28 5611 41 5612 28 5613 41 5614 28 5615 28 5616 41 5617 28 5618 28 5619 32 5620 28 5621 29 5622 32 5623 28 5624 32 5625 35 5626 28 5627 28 5628 32 5629 35 5630 28 5631 32 5632 35 5633 28 5634 29 5635 32 5636 35 5637 28 5638 29 5639 30 5640 32 5641 28 5642 29 5643 30 5644 28 5645 29 5646 30 5647 28 5648 29 5649 30 5650 28 5651 29 5652 30 5653 31 5654 28 5655 29 5656 30 5657 31 5658 28 5659 29 5660 30 5661 32 5662 28 5663 29 5664 30 5665 32 5666 28 5667 32 5668 33 5669 35 5670 28 5671 32 5672 35 5673 28 5674 32 5675 35 5676 38 5677 41 5678 28 5679 32 5680 35 5681 38 5682 28 5683 32 5684 35 5685 38 5686 41 5687 28 5688 41 5689 28 5690 41 5691 28 5692 41 5693 28 5694 35 5695 38 5696 41 5697 28 5698 41 5699 28 5700 41 5701 28 5702 41 5703 28 5704 41 5705 28 5706 41 5707 28 5708 41 5709 28 5710 41 5711 28 5712 41 5713 28 5714 41 5715 28 5716 41 5717 41 5718 41 5719 28 5720 38 5721 41 5722 28 5723 35 5724 38 5725 41 5726 28 5727 38 5728 41 5729 41 5730 28 5731 38 5732 41 5733 28 5734 38 5735 39 5736 38 5737 39 5738 38 5739 39 5740 38 5741 39 5742 28 5743 38 5744 39 5745 28 5746 35 5747 38 5748 41 5749 28 5750 35 5751 36 5752 38 5753 41 5754 28 5755 35 5756 36 5757 38 5758 41 5759 28 5760 38 5761 39 5762 38 5763 39 5764 40 5765 38 5766 39 5767 40 5768 38 5769 39 5770 40 5771 38 5772 39 5773 40 5774 39 5775 40 5776 39 5777 40 5778 39 5779 40 5780 38 5781 39 5782 40 5783 38 5784 39 5785 40 5786 39 5787 40 5788 38 5789 39 5790 40 5791 39 5792 40 5793 39 5794 40 5795 39 5796 40 5797 39 5798 40 5799 39 5800 40 5801 28 5802 35 5803 36 5804 38 5805 35 5806 36 5807 37 5808 35 5809 36 5810 37 5811 35 5812 36 5813 37 5814 35 5815 36 5816 37 5817 28 5818 35 5819 36 5820 37 5821 28 5822 35 5823 36 5824 28 5825 32 5826 33 5827 35 5828 28 5829 32 5830 33 5831 35 5832 28 5833 32 5834 33 5835 28 5836 32 5837 33 5838 32 5839 33 5840 28 5841 32 5842 33 5843 28 5844 32 5845 33 5846 35 5847 36 5848 28 5849 35 5850 36 5851 37 5852 35 5853 36 5854 37 5855 35 5856 36 5857 37 5858 36 5859 37 5860 36 5861 37 5862 36 5863 37 5864 36 5865 37 5866 36 5867 37 5868 36 5869 37 5870 35 5871 36 5872 37 5873 36 5874 37 5875 35 5876 36 5877 37 5878 36 5879 37 5880 36 5881 37 5882 36 5883 37 5884 36 5885 37 5886 36 5887 37 5888 32 5889 33 5890 34 5891 32 5892 33 5893 34 5894 32 5895 33 5896 34 5897 32 5898 33 5899 34 5900 32 5901 33 5902 34 5903 33 5904 34 5905 33 5906 34 5907 33 5908 34 5909 33 5910 34 5911 33 5912 34 5913 33 5914 34 5915 33 5916 34 5917 33 5918 34 5919 32 5920 33 5921 34 5922 32 5923 33 5924 34 5925 32 5926 33 5927 34 5928 28 5929 32 5930 33 5931 32 5932 33 5933 34 5934 32 5935 33 5936 34 5937 33 5938 34 5939 28 5940 30 5941 32 5942 33 5943 35 5944 28 5945 29 5946 30 5947 32 5948 35 5949 28 5950 29 5951 30 5952 32 5953 29 5954 30 5955 31 5956 29 5957 30 5958 31 5959 29 5960 30 5961 31 5962 29 5963 30 5964 31 5965 29 5966 30 5967 31 5968 29 5969 30 5970 31 5971 29 5972 30 5973 31 5974 30 5975 31 5976 30 5977 31 5978 30 5979 31 5980 30 5981 31 5982 30 5983 31 5984 30 5985 31 5986 30 5987 31 5988 30 5989 31 5990 30 5991 31 5992 29 5993 30 5994 31 5995 48 5996 49 5997 48 5998 49 5999 48 6000 49 6001 48 6002 49 6003 48 6004 49 6005 48 6006 49 6007 48 6008 49 6009 48 6010 49 6011 48 6012 49 6013 48 6014 49 6015 48 6016 49 6017 48 6018 49 6019 48 6020 49 6021 48 6022 49 6023 48 6024 49 6025 48 6026 49 6027 48 6028 49 6029 48 6030 49 6031 48 6032 49 6033 48 6034 49 6035 48 6036 49 6037 48 6038 49 6039 48 6040 49 6041 48 6042 49 6043 48 6044 49 6045 48 6046 49 6047 48 6048 49 6049 48 6050 49 6051 48 6052 49 6053 48 6054 49 6055 48 6056 49 6057 48 6058 49 6059 48 6060 49 6061 48 6062 49 6063 48 6064 49 6065 48 6066 49 6067 48 6068 49 6069 48 6070 49 6071 48 6072 49 6073 48 6074 49 6075 48 6076 49 6077 48 6078 49 6079 48 6080 49 6081 48 6082 49 6083 48 6084 49 6085 48 6086 49 6087 48 6088 49 6089 48 6090 49 6091 48 6092 49 6093 48 6094 49 6095 48 6096 49 6097 48 6098 49 6099 48 6100 49 6101 48 6102 49 6103 48 6104 49 6105 48 6106 49 6107 48 6108 49 6109 48 6110 49 6111 48 6112 49 6113 48 6114 49 6115 48 6116 49 6117 48 6118 49 6119 48 6120 49 6121 48 6122 49 6123 48 6124 49 6125 48 6126 49 6127 48 6128 49 6129 48 6130 49 6131 48 6132 49 6133 48 6134 49 6135 48 6136 49 6137 48 6138 49 6139 48 6140 49 6141 48 6142 49 6143 48 6144 49 6145 48 6146 49 6147 48 6148 49 6149 48 6150 49 6151 48 6152 49 6153 48 6154 49 6155 48 6156 49 6157 48 6158 49 6159 48 6160 49 6161 48 6162 49 6163 48 6164 49 6165 48 6166 49 6167 48 6168 49 6169 48 6170 49 6171 0 6172 1 6173 0 6174 1 6175 0 6176 44 6177 0 6178 1 6179 0 6180 1 6181 0 6182 1 6183 0 6184 1 6185 0 6186 48 6187 0 6188 1 6189 0 6190 1 6191 0 6192 1 6193 0 6194 1 6195 0 6196 1 6197 0 6198 1 6199 2 6200 3 6201 25 6202 26 6203 2 6204 3 6205 2 6206 3 6207 2 6208 3 6209 25 6210 26 6211 2 6212 3 6213 1 6214 2 6215 3 6216 1 6217 2 6218 3 6219 2 6220 3 6221 2 6222 3 6223 2 6224 3 6225 2 6226 3 6227 2 6228 3 6229 2 6230 3 6231 2 6232 3 6233 25 6234 1 6235 2 6236 3 6237 2 6238 3 6239 2 6240 3 6241 25 6242 2 6243 3 6244 1 6245 2 6246 3 6247 2 6248 3 6249 2 6250 3 6251 2 6252 3 6253 2 6254 3 6255 2 6256 3 6257 3 6258 6 6259 2 6260 3 6261 6 6262 2 6263 3 6264 6 6265 3 6266 3 6267 4 6268 3 6269 4 6270 3 6271 2 6272 3 6273 2 6274 3 6275 2 6276 3 6277 2 6278 3 6279 2 6280 3 6281 6 6282 2 6283 3 6284 6 6285 2 6286 3 6287 6 6288 7 6289 2 6290 3 6291 6 6292 7 6293 2 6294 3 6295 6 6296 2 6297 3 6298 6 6299 7 6300 2 6301 3 6302 6 6303 7 6304 2 6305 3 6306 6 6307 2 6308 3 6309 1 6310 2 6311 3 6312 1 6313 2 6314 3 6315 1 6316 2 6317 1 6318 2 6319 3 6320 1 6321 2 6322 1 6323 2 6324 0 6325 1 6326 2 6327 2 6328 3 6329 6 6330 7 6331 1 6332 2 6333 3 6334 6 6335 1 6336 2 6337 3 6338 2 6339 3 6340 6 6341 3 6342 6 6343 7 6344 3 6345 6 6346 7 6347 2 6348 3 6349 6 6350 7 6351 3 6352 25 6353 26 6354 2 6355 3 6356 25 6357 26 6358 2 6359 3 6360 25 6361 3 6362 3 6363 4 6364 2 6365 3 6366 2 6367 3 6368 2 6369 3 6370 25 6371 2 6372 3 6373 25 6374 26 6375 2 6376 3 6377 25 6378 26 6379 2 6380 3 6381 25 6382 26 6383 3 6384 25 6385 26 6386 2 6387 3 6388 25 6389 26 6390 2 6391 3 6392 25 6393 26 6394 2 6395 3 6396 25 6397 26 6398 2 6399 3 6400 1 6401 2 6402 3 6403 1 6404 2 6405 1 6406 2 6407 1 6408 2 6409 0 6410 1 6411 2 6412 2 6413 25 6414 26 6415 2 6416 3 6417 25 6418 26 6419 1 6420 2 6421 3 6422 2 6423 3 6424 25 6425 26 6426 2 6427 3 6428 25 6429 26 6430 2 6431 3 6432 25 6433 26 6434 3 6435 25 6436 26 6437 0 6438 1 6439 0 6440 1 6441 0 6442 44 6443 0 6444 44 6445 0 6446 1 6447 0 6448 0 6449 1 6450 0 6451 44 6452 0 6453 44 6454 0 6455 1 6456 0 6457 1 6458 0 6459 1 6460 0 6461 1 6462 0 6463 44 6464 0 6465 44 6466 0 6467 44 6468 0 6469 0 6470 0 6471 0 6472 0 6473 1 6474 0 6475 1 6476 0 6477 1 6478 0 6479 0 6480 1 6481 0 6482 1 6483 0 6484 1 6485 0 6486 1 6487 0 6488 48 6489 0 6490 0 6491 1 6492 0 6493 1 6494 0 6495 0 6496 1 6497 0 6498 0 6499 48 6500 0 6501 1 6502 0 6503 1 6504 0 6505 1 6506 0 6507 1 6508 0 6509 0 6510 48 6511 0 6512 48 6513 0 6514 0 6515 0 6516 1 6517 0 6518 1 6519 0 6520 1 6521 4 6522 5 6523 4 6524 5 6525 4 6526 5 6527 4 6528 5 6529 4 6530 5 6531 4 6532 5 6533 4 6534 5 6535 4 6536 5 6537 4 6538 5 6539 4 6540 5 6541 4 6542 5 6543 4 6544 5 6545 4 6546 5 6547 4 6548 5 6549 4 6550 5 6551 4 6552 5 6553 4 6554 5 6555 4 6556 5 6557 4 6558 5 6559 4 6560 5 6561 4 6562 5 6563 4 6564 5 6565 4 6566 5 6567 4 6568 5 6569 4 6570 5 6571 4 6572 5 6573 4 6574 5 6575 4 6576 5 6577 4 6578 5 6579 4 6580 5 6581 4 6582 5 6583 4 6584 5 6585 4 6586 5 6587 4 6588 5 6589 4 6590 5 6591 4 6592 5 6593 4 6594 5 6595 4 6596 5 6597 4 6598 5 6599 4 6600 5 6601 4 6602 5 6603 4 6604 5 6605 4 6606 5 6607 4 6608 5 6609 4 6610 5 6611 4 6612 5 6613 4 6614 5 6615 4 6616 5 6617 4 6618 5 6619 4 6620 5 6621 4 6622 5 6623 4 6624 5 6625 4 6626 5 6627 4 6628 5 6629 4 6630 5 6631 4 6632 5 6633 4 6634 5 6635 4 6636 5 6637 4 6638 5 6639 4 6640 5 6641 4 6642 5 6643 4 6644 5 6645 4 6646 5 6647 4 6648 5 6649 4 6650 5 6651 4 6652 5 6653 4 6654 5 6655 4 6656 5 6657 4 6658 5 6659 4 6660 5 6661 4 6662 5 6663 4 6664 5 6665 4 6666 5 6667 4 6668 5 6669 4 6670 5 6671 4 6672 5 6673 4 6674 5 6675 4 6676 5 6677 4 6678 5 6679 4 6680 5 6681 4 6682 5 6683 4 6684 5 6685 4 6686 5 6687 4 6688 5 6689 4 6690 5 6691 4 6692 5 6693 4 6694 5 6695 4 6696 5 6697 4 6698 5 6699 4 6700 5 6701 4 6702 5 6703 4 6704 5 6705 9 6706 10 6707 11 6708 9 6709 10 6710 11 6711 9 6712 10 6713 9 6714 10 6715 11 6716 9 6717 10 6718 11 6719 9 6720 10 6721 11 6722 12 6723 10 6724 11 6725 12 6726 10 6727 11 6728 12 6729 10 6730 11 6731 12 6732 9 6733 10 6734 11 6735 13 6736 16 6737 9 6738 10 6739 11 6740 9 6741 10 6742 11 6743 13 6744 16 6745 9 6746 10 6747 9 6748 9 6749 9 6750 19 6751 22 6752 9 6753 16 6754 19 6755 22 6756 23 6757 9 6758 10 6759 11 6760 13 6761 16 6762 19 6763 9 6764 10 6765 11 6766 13 6767 16 6768 9 6769 11 6770 13 6771 16 6772 9 6773 13 6774 16 6775 19 6776 9 6777 16 6778 19 6779 22 6780 23 6781 9 6782 19 6783 22 6784 23 6785 9 6786 19 6787 22 6788 23 6789 9 6790 16 6791 19 6792 22 6793 23 6794 9 6795 16 6796 19 6797 22 6798 23 6799 9 6800 16 6801 19 6802 22 6803 9 6804 16 6805 17 6806 9 6807 16 6808 17 6809 9 6810 13 6811 14 6812 9 6813 13 6814 14 6815 9 6816 13 6817 14 6818 15 6819 13 6820 14 6821 15 6822 9 6823 13 6824 14 6825 15 6826 13 6827 14 6828 15 6829 13 6830 14 6831 15 6832 14 6833 15 6834 15 6835 15 6836 14 6837 15 6838 13 6839 14 6840 15 6841 16 6842 17 6843 18 6844 16 6845 17 6846 18 6847 16 6848 17 6849 18 6850 17 6851 18 6852 16 6853 17 6854 18 6855 16 6856 17 6857 18 6858 17 6859 18 6860 17 6861 18 6862 17 6863 18 6864 16 6865 17 6866 18 6867 19 6868 20 6869 21 6870 19 6871 20 6872 21 6873 22 6874 19 6875 20 6876 21 6877 19 6878 20 6879 21 6880 19 6881 20 6882 21 6883 19 6884 20 6885 21 6886 20 6887 21 6888 20 6889 21 6890 20 6891 21 6892 19 6893 20 6894 21 6895 9 6896 22 6897 23 6898 22 6899 23 6900 9 6901 22 6902 23 6903 23 6904 23 6905 24 6906 23 6907 24 6908 23 6909 24 6910 23 6911 24 6912 23 6913 24 6914 24 6915 24 6916 24 6917 23 6918 24 6919 24 6920 24 6921 23 6922 24 6923 23 6924 24 6925 23 6926 24 6927 22 6928 23 6929 9 6930 22 6931 23 6932 23 6933 23 6934 24 6935 23 6936 24 6937 24 6938 24 6939 23 6940 24 6941 23 6942 24 6943 22 6944 23 6945 22 6946 23 6947 10 6948 11 6949 12 6950 10 6951 11 6952 12 6953 10 6954 11 6955 12 6956 10 6957 11 6958 12 6959 10 6960 11 6961 12 6962 10 6963 11 6964 12 6965 11 6966 12 6967 11 6968 12 6969 11 6970 12 6971 11 6972 12 6973 11 6974 12 6975 11 6976 12 6977 0 6978 1 6979 2 6980 44 6981 45 6982 44 6983 45 6984 44 6985 45 6986 44 6987 45 6988 28 6989 29 6990 30 6991 28 6992 29 6993 28 6994 29 6995 28 6996 29 6997 30 6998 28 6999 29 7000 30 7001 28 7002 29 7003 30 7004 31 7005 28 7006 29 7007 30 7008 31 7009 29 7010 30 7011 31 7012 28 7013 29 7014 30 7015 31 7016 28 7017 29 7018 30 7019 32 7020 35 7021 28 7022 29 7023 30 7024 32 7025 28 7026 29 7027 32 7028 41 7029 28 7030 29 7031 28 7032 41 7033 28 7034 41 7035 28 7036 41 7037 28 7038 35 7039 38 7040 41 7041 28 7042 29 7043 32 7044 35 7045 38 7046 41 7047 28 7048 29 7049 30 7050 32 7051 35 7052 41 7053 28 7054 29 7055 32 7056 35 7057 28 7058 32 7059 35 7060 38 7061 41 7062 28 7063 35 7064 38 7065 41 7066 28 7067 38 7068 41 7069 28 7070 41 7071 28 7072 38 7073 41 7074 28 7075 35 7076 38 7077 41 7078 28 7079 32 7080 35 7081 38 7082 41 7083 28 7084 35 7085 36 7086 28 7087 32 7088 35 7089 36 7090 28 7091 32 7092 33 7093 35 7094 28 7095 32 7096 33 7097 32 7098 33 7099 34 7100 32 7101 33 7102 34 7103 32 7104 33 7105 34 7106 32 7107 33 7108 34 7109 32 7110 33 7111 34 7112 32 7113 33 7114 34 7115 33 7116 34 7117 33 7118 34 7119 33 7120 34 7121 32 7122 33 7123 34 7124 35 7125 36 7126 37 7127 35 7128 36 7129 37 7130 35 7131 36 7132 37 7133 36 7134 37 7135 36 7136 37 7137 36 7138 37 7139 36 7140 37 7141 36 7142 37 7143 36 7144 37 7145 35 7146 36 7147 37 7148 38 7149 39 7150 38 7151 39 7152 40 7153 38 7154 39 7155 40 7156 38 7157 39 7158 40 7159 38 7160 39 7161 40 7162 39 7163 40 7164 39 7165 40 7166 39 7167 40 7168 39 7169 40 7170 38 7171 39 7172 40 7173 41 7174 41 7175 42 7176 41 7177 41 7178 42 7179 43 7180 41 7181 42 7182 43 7183 41 7184 42 7185 43 7186 41 7187 42 7188 43 7189 41 7190 42 7191 43 7192 41 7193 42 7194 43 7195 42 7196 43 7197 42 7198 43 7199 42 7200 43 7201 42 7202 43 7203 42 7204 43 7205 42 7206 43 7207 41 7208 42 7209 43 7210 41 7211 42 7212 43 7213 41 7214 42 7215 43 7216 41 7217 42 7218 41 7219 41 7220 42 7221 41 7222 42 7223 43 7224 41 7225 42 7226 43 7227 42 7228 43 7229 42 7230 43 7231 41 7232 42 7233 43 7234 41 7235 42 7236 43 7237 41 7238 42 7239 41 7240 28 7241 29 7242 30 7243 31 7244 29 7245 30 7246 31 7247 29 7248 30 7249 31 7250 29 7251 30 7252 31 7253 29 7254 30 7255 31 7256 29 7257 30 7258 31 7259 30 7260 31 7261 29 7262 30 7263 31 7264 30 7265 31 7266 30 7267 31 7268 30 7269 31 7270 30 7271 31 7272 2 7273 3 7274 2 7275 3 7276 2 7277 3 7278 2 7279 3 7280 2 7281 3 7282 2 7283 3 7284 2 7285 3 7286 6 7287 2 7288 3 7289 6 7290 2 7291 3 7292 2 7293 3 7294 1 7295 2 7296 3 7297 1 7298 2 7299 3 7300 4 7301 5 7302 4 7303 5 7304 4 7305 5 7306 4 7307 5 7308 4 7309 5 7310 4 7311 5 7312 5 7313 5 7314 5 7315 5 7316 5 7317 5 7318 5 7319 5 7320 5 7321 5 7322 5 7323 4 7324 5 7325 4 7326 5 7327 4 7328 5 7329 4 7330 5 7331 5 7332 5 7333 5 7334 5 7335 5 7336 5 7337 4 7338 5 7339 4 7340 5 7341 4 7342 5 7343 4 7344 5 7345 4 7346 5 7347 4 7348 5 7349 5 7350 4 7351 5 7352 4 7353 5 7354 4 7355 5 7356 4 7357 5 7358 4 7359 5 7360 4 7361 5 7362 4 7363 5 7364 4 7365 5 7366 4 7367 5 7368 4 7369 5 7370 4 7371 5 7372 4 7373 5 7374 4 7375 5 7376 4 7377 5 7378 5 7379 5 7380 5 7381 5 7382 4 7383 5 7384 4 7385 5 7386 4 7387 5 7388 4 7389 5 7390 4 7391 5 7392 4 7393 5 7394 4 7395 5 7396 4 7397 5 7398 4 7399 5 7400 4 7401 5 7402 4 7403 5 7404 4 7405 5 7406 4 7407 5 7408 4 7409 5 7410 4 7411 5 7412 4 7413 5 7414 4 7415 5 7416 4 7417 5 7418 4 7419 5 7420 4 7421 5 7422 4 7423 5 7424 4 7425 5 7426 4 7427 5 7428 4 7429 5 7430 4 7431 5 7432 4 7433 5 7434 4 7435 5 7436 4 7437 5 7438 4 7439 5 7440 4 7441 5 7442 4 7443 5 7444 4 7445 5 7446 4 7447 5 7448 4 7449 5 7450 4 7451 5 7452 4 7453 5 7454 4 7455 5 7456 4 7457 5 7458 4 7459 5 7460 4 7461 5 7462 4 7463 5 7464 4 7465 5 7466 4 7467 5 7468 4 7469 5 7470 4 7471 5 7472 4 7473 5 7474 4 7475 5 7476 4 7477 5 7478 4 7479 5 7480 4 7481 5 7482 4 7483 5 7484 4 7485 5 7486 4 7487 5 7488 4 7489 5 7490 4 7491 5 7492 4 7493 5 7494 4 7495 5 7496 4 7497 5 7498 4 7499 5 7500 4 7501 5 7502 4 7503 5 7504 4 7505 5 7506 4 7507 5 7508 4 7509 5 7510 4 7511 5 7512 4 7513 5 7514 4 7515 5 7516 4 7517 5 7518 4 7519 5 7520 4 7521 5 7522 4 7523 5 7524 4 7525 5 7526 4 7527 5 7528 4 7529 5 7530 4 7531 5 7532 4 7533 5 7534 4 7535 5 7536 4 7537 5 7538 4 7539 5 7540 4 7541 5 7542 4 7543 5 7544 4 7545 5 7546 4 7547 5 7548 4 7549 5 7550 4 7551 5 7552 4 7553 5 7554 4 7555 5 7556 4 7557 5 7558 4 7559 5 7560 4 7561 5 7562 4 7563 5 7564 4 7565 5 7566 4 7567 5 7568 4 7569 5 7570 4 7571 5 7572 4 7573 5 7574 4 7575 5 7576 4 7577 5 7578 4 7579 5 7580 4 7581 5 7582 4 7583 5 7584 4 7585 5 7586 4 7587 5 7588 4 7589 5 7590 4 7591 5 7592 4 7593 5 7594 4 7595 5 7596 4 7597 5 7598 4 7599 5 7600 4 7601 5 7602 4 7603 5 7604 4 7605 5 7606 4 7607 5 7608 4 7609 5 7610 4 7611 5 7612 4 7613 5 7614 4 7615 5 7616 4 7617 5 7618 4 7619 5 7620 4 7621 5 7622 4 7623 5 7624 4 7625 5 7626 4 7627 5 7628 4 7629 5 7630 4 7631 5 7632 4 7633 5 7634 4 7635 5 7636 4 7637 5 7638 4 7639 5 7640 4 7641 5 7642 4 7643 5 7644 4 7645 5 7646 4 7647 5 7648 4 7649 5 7650 4 7651 5 7652 4 7653 5 7654 4 7655 5 7656 4 7657 5 7658 4 7659 5 7660 4 7661 5 7662 4 7663 5 7664 4 7665 5 7666 4 7667 5 7668 4 7669 5 7670 4 7671 5 7672 3 7673 4 7674 5 7675 4 7676 5 7677 3 7678 4 7679 5 7680 4 7681 5 7682 4 7683 5 7684 4 7685 5 7686 4 7687 5 7688 4 7689 5 7690 3 7691 4 7692 5 7693 3 7694 4 7695 5 7696 3 7697 4 7698 5 7699 3 7700 4 7701 5 7702 4 7703 5 7704 4 7705 5 7706 4 7707 5 7708 4 7709 5 7710 4 7711 5 7712 4 7713 5 7714 4 7715 5 7716 4 7717 5 7718 4 7719 5 7720 4 7721 5 7722 4 7723 5 7724 4 7725 5 7726 4 7727 5 7728 4 7729 5 7730 4 7731 5 7732 4 7733 5 7734 4 7735 5 7736 4 7737 5 7738 4 7739 5 7740 4 7741 5 7742 4 7743 5 7744 4 7745 5 7746 4 7747 5 7748 4 7749 5 7750 4 7751 5 7752 4 7753 5 7754 4 7755 5 7756 4 7757 5 7758 4 7759 5 7760 4 7761 5 7762 4 7763 5 7764 4 7765 5 7766 4 7767 5 7768 4 7769 5 7770 4 7771 5 7772 4 7773 5 7774 4 7775 5 7776 4 7777 5 7778 4 7779 5 7780 4 7781 5 7782 4 7783 5 7784 4 7785 5 7786 4 7787 5 7788 4 7789 5 7790 4 7791 5 7792 4 7793 5 7794 4 7795 5 7796 4 7797 5 7798 4 7799 5 7800 4 7801 5 7802 4 7803 5 7804 4 7805 5 7806 4 7807 5 7808 4 7809 5 7810 4 7811 5 7812 4 7813 5 7814 4 7815 5 7816 4 7817 5 7818 4 7819 5 7820 4 7821 5 7822 4 7823 5 7824 4 7825 5 7826 4 7827 5 7828 4 7829 5 7830 4 7831 5 7832 4 7833 5 7834 4 7835 5 7836 4 7837 5 7838 4 7839 5 7840 4 7841 5 7842 4 7843 5 7844 4 7845 5 7846 4 7847 5 7848 4 7849 5 7850 4 7851 5 7852 4 7853 5 7854 4 7855 5 7856 4 7857 5 7858 4 7859 5 7860 4 7861 5 7862 4 7863 5 7864 4 7865 5 7866 4 7867 5 7868 4 7869 5 7870 4 7871 5 7872 4 7873 5 7874 4 7875 5 7876 4 7877 5 7878 4 7879 5 7880 4 7881 5 7882 4 7883 5 7884 4 7885 5 7886 4 7887 5 7888 4 7889 5 7890 4 7891 5 7892 4 7893 5 7894 4 7895 5 7896 4 7897 5 7898 4 7899 5 7900 4 7901 5 7902 4 7903 5 7904 4 7905 5 7906 4 7907 5 7908 4 7909 5 7910 4 7911 5 7912 4 7913 5 7914 4 7915 5 7916 4 7917 5 7918 4 7919 5 7920 4 7921 5 7922 4 7923 5 7924 4 7925 5 7926 4 7927 5 7928 4 7929 5 7930 4 7931 5 7932 4 7933 5 7934 5 7935 5 7936 5 7937 5 7938 4 7939 5 7940 4 7941 5 7942 4 7943 5 7944 4 7945 5 7946 4 7947 5 7948 4 7949 5 7950 4 7951 5 7952 4 7953 5 7954 4 7955 5 7956 4 7957 5 7958 4 7959 5 7960 4 7961 5 7962 4 7963 5 7964 4 7965 5 7966 4 7967 5 7968 4 7969 5 7970 4 7971 5 7972 4 7973 5 7974 4 7975 5 7976 4 7977 5 7978 4 7979 5 7980 4 7981 5 7982 4 7983 5 7984 4 7985 5 7986 4 7987 5 7988 4 7989 5 7990 4 7991 5 7992 4 7993 5 7994 4 7995 5 7996 4 7997 5 7998 4 7999 5 8000 4 8001 5 8002 4 8003 5 8004 4 8005 5 8006 4 8007 5 8008 4 8009 5 8010 4 8011 5 8012 4 8013 5 8014 4 8015 5 8016 4 8017 5 8018 4 8019 5 8020 4 8021 5 8022 4 8023 5 8024 4 8025 5 8026 4 8027 5 8028 4 8029 5 8030 4 8031 5 8032 4 8033 5 8034 4 8035 5 8036 4 8037 5 8038 4 8039 5 8040 4 8041 5 8042 4 8043 5 8044 4 8045 5 8046 4 8047 5 8048 4 8049 5 8050 4 8051 5 8052 4 8053 5 8054 4 8055 5 8056 4 8057 5 8058 4 8059 5 8060 4 8061 5 8062 4 8063 5 8064 4 8065 5 8066 4 8067 5 8068 4 8069 5 8070 4 8071 5 8072 4 8073 5 8074 4 8075 5 8076 4 8077 5 8078 4 8079 5 8080 4 8081 5 8082 4 8083 5 8084 4 8085 5 8086 4 8087 5 8088 3 8089 4 8090 5 8091 4 8092 5 8093 3 8094 4 8095 5 8096 25 8097 4 8098 5 8099 4 8100 5 8101 4 8102 5 8103 4 8104 5 8105 4 8106 5 8107 4 8108 5 8109 4 8110 5 8111 4 8112 5 8113 4 8114 5 8115 4 8116 5 8117 4 8118 5 8119 4 8120 5 8121 4 8122 5 8123 4 8124 5 8125 4 8126 5 8127 4 8128 5 8129 4 8130 5 8131 4 8132 5 8133 4 8134 5 8135 4 8136 5 8137 4 8138 5 8139 4 8140 5 8141 4 8142 5 8143 4 8144 5 8145 4 8146 5 8147 4 8148 5 8149 4 8150 5 8151 4 8152 5 8153 4 8154 5 8155 4 8156 5 8157 4 8158 5 8159 4 8160 5 8161 4 8162 5 8163 4 8164 5 8165 4 8166 5 8167 4 8168 5 8169 4 8170 5 8171 4 8172 5 8173 4 8174 5 8175 4 8176 5 8177 4 8178 5 8179 4 8180 5 8181 4 8182 5 8183 4 8184 5 8185 4 8186 5 8187 4 8188 5 8189 4 8190 5 8191 4 8192 5 8193 4 8194 5 8195 4 8196 5 8197 4 8198 5 8199 4 8200 5 8201 4 8202 5 8203 4 8204 5 8205 4 8206 5 8207 4 8208 5 8209 4 8210 5 8211 4 8212 5 8213 4 8214 5 8215 4 8216 5 8217 4 8218 5 8219 4 8220 5 8221 4 8222 5 8223 4 8224 5 8225 4 8226 5 8227 4 8228 5 8229 4 8230 5 8231 4 8232 5 8233 4 8234 5 8235 4 8236 5 8237 4 8238 5 8239 4 8240 5 8241 4 8242 5 8243 4 8244 5 8245 4 8246 5 8247 4 8248 5 8249 4 8250 5 8251 4 8252 5 8253 4 8254 5 8255 4 8256 5 8257 4 8258 5 8259 4 8260 5 8261 4 8262 5 8263 3 8264 4 8265 5 8266 4 8267 5 8268 4 8269 5 8270 4 8271 5 8272 4 8273 5 8274 3 8275 4 8276 5 8277 3 8278 4 8279 5 8280 3 8281 4 8282 5 8283 3 8284 4 8285 5 8286 3 8287 4 8288 5 8289 4 8290 5 8291 4 8292 5 8293 4 8294 5 8295 4 8296 5 8297 4 8298 5 8299 4 8300 5 8301 4 8302 5 8303 4 8304 5 8305 4 8306 5 8307 4 8308 5 8309 4 8310 5 8311 4 8312 5 8313 4 8314 5 8315 4 8316 5 8317 4 8318 5 8319 4 8320 5 8321 4 8322 5 8323 4 8324 5 8325 4 8326 5 8327 4 8328 5 8329 4 8330 5 8331 4 8332 5 8333 4 8334 5 8335 4 8336 5 8337 4 8338 5 8339 4 8340 5 8341 4 8342 5 8343 3 8344 4 8345 5 8346 4 8347 5 8348 4 8349 5 8350 4 8351 5 8352 4 8353 5 8354 4 8355 5 8356 4 8357 5 8358 4 8359 5 8360 4 8361 5 8362 4 8363 5 8364 4 8365 5 8366 3 8367 4 8368 5 8369 3 8370 4 8371 5 8372 3 8373 4 8374 5 8375 4 8376 5 8377 4 8378 5 8379 4 8380 5 8381 4 8382 5 8383 4 8384 5 8385 4 8386 5 8387 4 8388 5 8389 4 8390 5 8391 4 8392 5 8393 4 8394 5 8395 4 8396 5 8397 4 8398 5 8399 4 8400 5 8401 4 8402 5 8403 4 8404 5 8405 4 8406 5 8407 4 8408 5 8409 4 8410 5 8411 4 8412 5 8413 4 8414 5 8415 4 8416 5 8417 4 8418 5 8419 4 8420 5 8421 4 8422 5 8423 4 8424 5 8425 4 8426 5 8427 4 8428 5 8429 4 8430 5 8431 4 8432 5 8433 4 8434 5 8435 4 8436 5 8437 4 8438 5 8439 4 8440 5 8441 4 8442 5 8443 4 8444 5 8445 4 8446 5 8447 4 8448 5 8449 4 8450 5 8451 4 8452 5 8453 4 8454 5 8455 4 8456 5 8457 4 8458 5 8459 4 8460 5 8461 4 8462 5 8463 4 8464 5 8465 4 8466 5 8467 4 8468 5 8469 4 8470 5 8471 4 8472 5 8473 4 8474 5 8475 4 8476 5 8477 4 8478 5 8479 4 8480 5 8481 4 8482 5 8483 4 8484 5 8485 4 8486 5 8487 4 8488 5 8489 4 8490 5 8491 4 8492 5 8493 4 8494 5 8495 4 8496 5 8497 4 8498 5 8499 4 8500 5 8501 4 8502 5 8503 4 8504 5 8505 4 8506 5 8507 2 8508 3 8509 2 8510 3 8511 2 8512 3 8513 2 8514 3 8515 2 8516 3 8517 2 8518 3 8519 2 8520 3 8521 2 8522 3 8523 2 8524 3 8525 1 8526 2 8527 3 8528 1 8529 2 8530 3 8531 2 8532 3 8533 2 8534 3 8535 2 8536 3 8537 2 8538 3 8539 1 8540 2 8541 3 8542 2 8543 3 8544 2 8545 3 8546 2 8547 3 8548 2 8549 3 8550 2 8551 3 8552 2 8553 3 8554 2 8555 3 8556 2 8557 3 8558 2 8559 3 8560</v>\r\n        </vertex_weights>\r\n      </skin>\r\n    </controller>\r\n  </library_controllers>\r\n  <library_visual_scenes>\r\n    <visual_scene id=\"Scene\" name=\"Scene\">\r\n      <node id=\"Armature\" name=\"Armature\" type=\"NODE\">\r\n        <translate sid=\"location\">0 0 0</translate>\r\n        <rotate sid=\"rotationZ\">0 0 1 180</rotate>\r\n        <rotate sid=\"rotationY\">0 1 0 0</rotate>\r\n        <rotate sid=\"rotationX\">1 0 0 90</rotate>\r\n        <scale sid=\"scale\">1.662001 1.662001 1.662001</scale>\r\n        <node id=\"mixamorig_Hips\" name=\"mixamorig:Hips\" sid=\"mixamorig_Hips\" type=\"JOINT\">\r\n          <matrix sid=\"transform\">1 0 0 0.003793706 0 1 0 2.116619 0 0 1 0.01212385 0 0 0 1</matrix>\r\n          <node id=\"mixamorig_Spine\" name=\"mixamorig:Spine\" sid=\"mixamorig_Spine\" type=\"JOINT\">\r\n            <matrix sid=\"transform\">1 0 0 0 0 0.9977869 0.06649269 0.1859758 0 -0.06649269 0.9977869 -0.01239346 0 0 0 1</matrix>\r\n            <node id=\"mixamorig_Spine1\" name=\"mixamorig:Spine1\" sid=\"mixamorig_Spine1\" type=\"JOINT\">\r\n              <matrix sid=\"transform\">1 -1.98992e-9 -7.01055e-11 -2.32831e-10 1.87376e-9 1 9.68575e-8 0.2174532 6.23645e-11 -8.9407e-8 1 -1.49012e-8 0 0 0 1</matrix>\r\n              <node id=\"mixamorig_Spine2\" name=\"mixamorig:Spine2\" sid=\"mixamorig_Spine2\" type=\"JOINT\">\r\n                <matrix sid=\"transform\">1 1.97855e-9 7.35142e-11 4.65661e-10 -1.87376e-9 1 -1.11759e-7 0.248517 -6.23647e-11 1.11759e-7 1 0 0 0 0 1</matrix>\r\n                <node id=\"mixamorig_Neck\" name=\"mixamorig:Neck\" sid=\"mixamorig_Neck\" type=\"JOINT\">\r\n                  <matrix sid=\"transform\">1 1.16415e-10 0 4.65661e-10 0 0.9977869 -0.06649268 0.279583 0 0.06649267 0.9977868 -1.49012e-8 0 0 0 1</matrix>\r\n                  <node id=\"mixamorig_Head\" name=\"mixamorig:Head\" sid=\"mixamorig_Head\" type=\"JOINT\">\r\n                    <matrix sid=\"transform\">1 0 0 4.65661e-10 0 0.9999999 0 0.08587456 0 0 1 0.01940444 0 0 0 1</matrix>\r\n                    <node id=\"mixamorig_HeadTop_End\" name=\"mixamorig:HeadTop_End\" sid=\"mixamorig_HeadTop_End\" type=\"JOINT\">\r\n                      <matrix sid=\"transform\">1 0 0 0 0 1 0 0.5703411 0 0 1 0.1288749 0 0 0 1</matrix>\r\n                    </node>\r\n                  </node>\r\n                </node>\r\n                <node id=\"mixamorig_LeftShoulder\" name=\"mixamorig:LeftShoulder\" sid=\"mixamorig_LeftShoulder\" type=\"JOINT\">\r\n                  <matrix sid=\"transform\">-0.03870665 0.9315362 -0.361583 0.1223452 -4.16674e-4 -0.3618692 -0.9322288 0.2314062 -0.9992505 -0.03593274 0.01439488 -0.004835621 0 0 0 1</matrix>\r\n                  <node id=\"mixamorig_LeftArm\" name=\"mixamorig:LeftArm\" sid=\"mixamorig_LeftArm\" type=\"JOINT\">\r\n                    <matrix sid=\"transform\">0.9964365 0.05448125 0.06438748 1.49012e-8 3.72529e-9 0.7633888 -0.6459391 0.2750294 -0.08434425 0.6436374 0.7606687 0 0 0 0 1</matrix>\r\n                    <node id=\"mixamorig_LeftForeArm\" name=\"mixamorig:LeftForeArm\" sid=\"mixamorig_LeftForeArm\" type=\"JOINT\">\r\n                      <matrix sid=\"transform\">0.961465 -0.2747955 -0.008519504 0 0.2749275 0.9610031 0.02979582 0.5331789 -5.00819e-7 -0.03098998 0.9995198 -2.38419e-7 0 0 0 1</matrix>\r\n                      <node id=\"mixamorig_LeftHand\" name=\"mixamorig:LeftHand\" sid=\"mixamorig_LeftHand\" type=\"JOINT\">\r\n                        <matrix sid=\"transform\">0.9970659 0.00538753 -0.07635876 0 -0.01338692 0.9944201 -0.1046401 0.4290272 0.07536897 0.1053554 0.9915745 1.19209e-7 0 0 0 1</matrix>\r\n                        <node id=\"mixamorig_LeftHandThumb1\" name=\"mixamorig:LeftHandThumb1\" sid=\"mixamorig_LeftHandThumb1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.5922906 -0.7490702 0.2967919 -0.06477934 0.8057243 0.550644 -0.2181731 0.06355369 2.12342e-7 0.3683544 0.9296855 0.03559458 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_LeftHandThumb2\" name=\"mixamorig:LeftHandThumb2\" sid=\"mixamorig_LeftHandThumb2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 -6.85453e-7 -2.01166e-7 0.01027071 6.85453e-7 0.9999998 -7.45445e-4 0.07730472 1.49012e-7 7.45475e-4 0.9999998 0 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_LeftHandThumb3\" name=\"mixamorig:LeftHandThumb3\" sid=\"mixamorig_LeftHandThumb3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">1 -8.9407e-8 4.47035e-7 -0.005084991 1.19209e-7 0.9971778 0.07507646 0.08421463 -4.47035e-7 -0.07507646 0.9971778 2.38419e-7 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_LeftHandThumb4\" name=\"mixamorig:LeftHandThumb4\" sid=\"mixamorig_LeftHandThumb4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">1 9.83477e-7 -2.45869e-7 -0.005185723 -1.04308e-6 1 -2.68221e-7 0.0709216 1.56462e-7 2.38419e-7 1 0 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                        <node id=\"mixamorig_LeftHandIndex1\" name=\"mixamorig:LeftHandIndex1\" sid=\"mixamorig_LeftHandIndex1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.9781715 -0.2077776 -0.002988815 -0.08675939 0.207799 0.9780704 0.01406341 0.2383395 1.2219e-6 -0.01437757 0.9998966 0.004653215 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_LeftHandIndex2\" name=\"mixamorig:LeftHandIndex2\" sid=\"mixamorig_LeftHandIndex2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 2.08616e-7 3.42727e-7 2.3365e-5 -2.38419e-7 0.9996939 -0.02474051 0.07056022 -2.86847e-7 0.02474058 0.999694 -3.57628e-7 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_LeftHandIndex3\" name=\"mixamorig:LeftHandIndex3\" sid=\"mixamorig_LeftHandIndex3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">0.9999999 2.38419e-7 -1.86265e-7 5.77569e-5 -1.49012e-7 0.9934995 0.1138371 0.06467283 1.63913e-7 -0.113837 0.9934995 1.19209e-7 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_LeftHandIndex4\" name=\"mixamorig:LeftHandIndex4\" sid=\"mixamorig_LeftHandIndex4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">1 1.78814e-7 -1.40071e-6 -8.08835e-5 -1.78814e-7 1 8.12113e-7 0.05102557 1.35601e-6 -8.86619e-7 0.9999999 0 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                        <node id=\"mixamorig_LeftHandMiddle1\" name=\"mixamorig:LeftHandMiddle1\" sid=\"mixamorig_LeftHandMiddle1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.9966487 -0.08179925 4.74177e-4 -0.03053755 0.08180067 0.9966319 -0.005798641 0.2423519 1.76951e-6 0.005817978 0.999983 -0.00457871 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_LeftHandMiddle2\" name=\"mixamorig:LeftHandMiddle2\" sid=\"mixamorig_LeftHandMiddle2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 -1.19209e-7 6.55651e-7 3.80278e-5 5.96046e-8 0.9985344 0.05411607 0.08281255 -6.33299e-7 -0.05411614 0.9985348 -1.19209e-7 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_LeftHandMiddle3\" name=\"mixamorig:LeftHandMiddle3\" sid=\"mixamorig_LeftHandMiddle3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">0.9999999 -2.98023e-8 -2.25008e-6 -3.48687e-5 -2.98023e-8 0.9996891 -0.02493383 0.07751489 2.29478e-6 0.02493394 0.9996891 2.38419e-7 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_LeftHandMiddle4\" name=\"mixamorig:LeftHandMiddle4\" sid=\"mixamorig_LeftHandMiddle4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">0.9999999 1.78814e-7 4.02331e-7 -3.15905e-6 -1.78814e-7 1 -8.84756e-7 0.06682324 -4.13507e-7 7.61822e-7 0.9999999 -2.38419e-7 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                        <node id=\"mixamorig_LeftHandRing1\" name=\"mixamorig:LeftHandRing1\" sid=\"mixamorig_LeftHandRing1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.9995468 -0.0301041 4.17415e-4 0.03548539 0.03010702 0.9994488 -0.01398548 0.2626789 3.86685e-6 0.01399166 0.9999021 -0.002705097 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_LeftHandRing2\" name=\"mixamorig:LeftHandRing2\" sid=\"mixamorig_LeftHandRing2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">0.9999999 -5.66244e-7 2.83122e-7 4.17233e-5 5.96046e-7 0.9971679 0.07520728 0.06486607 -4.09782e-7 -0.0752074 0.9971677 -1.19209e-7 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_LeftHandRing3\" name=\"mixamorig:LeftHandRing3\" sid=\"mixamorig_LeftHandRing3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">1 3.57628e-7 1.49012e-6 -2.93255e-5 -3.27826e-7 0.9998758 -0.01576855 0.06579906 -1.57952e-6 0.01576843 0.9998756 0 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_LeftHandRing4\" name=\"mixamorig:LeftHandRing4\" sid=\"mixamorig_LeftHandRing4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">0.9999999 1.49012e-7 1.78814e-7 -1.22786e-5 -1.49012e-7 0.9999999 4.84288e-8 0.05561537 -1.93715e-7 -1.30385e-8 0.9999999 2.38419e-7 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                        <node id=\"mixamorig_LeftHandPinky1\" name=\"mixamorig:LeftHandPinky1\" sid=\"mixamorig_LeftHandPinky1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.9871104 0.1598789 0.007191416 0.08181137 -0.1600406 0.9861128 0.04437054 0.2480617 2.38791e-6 -0.04494959 0.9989892 0.004873872 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_LeftHandPinky2\" name=\"mixamorig:LeftHandPinky2\" sid=\"mixamorig_LeftHandPinky2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 1.19209e-7 -3.31551e-7 4.26173e-6 -1.2666e-7 0.9995024 -0.03154407 0.06388819 3.35276e-7 0.03154415 0.9995024 -1.19209e-7 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_LeftHandPinky3\" name=\"mixamorig:LeftHandPinky3\" sid=\"mixamorig_LeftHandPinky3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">1 -5.96046e-8 -5.81145e-7 1.32918e-5 1.11759e-7 0.9946039 0.1037454 0.05437136 5.99772e-7 -0.1037454 0.9946039 2.38419e-7 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_LeftHandPinky4\" name=\"mixamorig:LeftHandPinky4\" sid=\"mixamorig_LeftHandPinky4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">1 8.19564e-8 8.19564e-7 -1.76132e-5 -7.45058e-8 0.9999999 -9.73232e-7 0.04631847 -8.04663e-7 1.11293e-6 1 -2.38419e-7 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                      </node>\r\n                    </node>\r\n                  </node>\r\n                </node>\r\n                <node id=\"mixamorig_RightShoulder\" name=\"mixamorig:RightShoulder\" sid=\"mixamorig_RightShoulder\" type=\"JOINT\">\r\n                  <matrix sid=\"transform\">-0.01327125 -0.931536 0.3634064 -0.1223452 -1.03995e-4 -0.3634371 -0.9316186 0.2311907 0.9999117 -0.01240178 0.004726391 -0.001599759 0 0 0 1</matrix>\r\n                  <node id=\"mixamorig_RightArm\" name=\"mixamorig:RightArm\" sid=\"mixamorig_RightArm\" type=\"JOINT\">\r\n                    <matrix sid=\"transform\">0.9922119 -0.08056769 -0.09499682 1.49012e-8 -2.95229e-7 0.7626489 -0.6468125 0.2750294 0.1245614 0.6417753 0.7567092 0 0 0 0 1</matrix>\r\n                    <node id=\"mixamorig_RightForeArm\" name=\"mixamorig:RightForeArm\" sid=\"mixamorig_RightForeArm\" type=\"JOINT\">\r\n                      <matrix sid=\"transform\">0.9617596 0.2736075 0.01254509 -1.49012e-8 -0.2738949 0.9607506 0.04404685 0.5333432 -1.18092e-6 -0.04579844 0.9989507 1.19209e-7 0 0 0 1</matrix>\r\n                      <node id=\"mixamorig_RightHand\" name=\"mixamorig:RightHand\" sid=\"mixamorig_RightHand\" type=\"JOINT\">\r\n                        <matrix sid=\"transform\">0.992291 0.01885426 0.1224867 0 -0.008084327 0.9961021 -0.08783624 0.4275031 -0.1236654 0.08616888 0.9885755 2.38419e-7 0 0 0 1</matrix>\r\n                        <node id=\"mixamorig_RightHandThumb1\" name=\"mixamorig:RightHandThumb1\" sid=\"mixamorig_RightHandThumb1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.5787503 0.7617466 -0.2911879 0.07056642 -0.8155047 0.5405992 -0.2066502 0.0662092 9.23872e-7 0.3570639 0.9340799 0.03664589 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_RightHandThumb2\" name=\"mixamorig:RightHandThumb2\" sid=\"mixamorig_RightHandThumb2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 1.49012e-7 6.55651e-7 -0.01052248 -1.19209e-7 0.9992721 0.03814808 0.08210498 -5.66244e-7 -0.03814806 0.9992722 0 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_RightHandThumb3\" name=\"mixamorig:RightHandThumb3\" sid=\"mixamorig_RightHandThumb3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">1 -1.78814e-7 1.78814e-7 0.001309037 2.38419e-7 0.9999017 -0.01402429 0.08144587 -1.63913e-7 0.01402427 0.9999017 0 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_RightHandThumb4\" name=\"mixamorig:RightHandThumb4\" sid=\"mixamorig_RightHandThumb4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">1 -5.66244e-7 -9.68575e-7 0.009213328 5.66244e-7 1 -9.23872e-7 0.06508893 9.98378e-7 8.9407e-7 1 3.57628e-7 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                        <node id=\"mixamorig_RightHandIndex1\" name=\"mixamorig:RightHandIndex1\" sid=\"mixamorig_RightHandIndex1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.9755778 0.2196031 -0.004750658 0.08863008 -0.2196544 0.9753498 -0.02109044 0.2416083 2.05636e-6 0.02161876 0.9997662 0.001582623 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_RightHandIndex2\" name=\"mixamorig:RightHandIndex2\" sid=\"mixamorig_RightHandIndex2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 -7.45058e-7 -6.29574e-7 -4.45843e-5 7.15256e-7 0.9999785 -0.006559696 0.0708195 5.84871e-7 0.006559763 0.9999785 0 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_RightHandIndex3\" name=\"mixamorig:RightHandIndex3\" sid=\"mixamorig_RightHandIndex3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">1 -1.78814e-7 1.19954e-6 -5.46575e-5 0 0.9959792 0.08958478 0.06529713 -1.30013e-6 -0.08958474 0.9959792 -1.19209e-7 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_RightHandIndex4\" name=\"mixamorig:RightHandIndex4\" sid=\"mixamorig_RightHandIndex4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">1 -1.19209e-7 1.67638e-6 9.94802e-5 1.19209e-7 1 9.23872e-7 0.05418396 -1.70618e-6 -9.08971e-7 1 1.19209e-7 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                        <node id=\"mixamorig_RightHandMiddle1\" name=\"mixamorig:RightHandMiddle1\" sid=\"mixamorig_RightHandMiddle1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.9980646 0.06200831 0.004716747 0.03262633 -0.06218734 0.9951875 0.07572626 0.2422581 1.60187e-6 -0.0758731 0.9971176 7.70211e-4 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_RightHandMiddle2\" name=\"mixamorig:RightHandMiddle2\" sid=\"mixamorig_RightHandMiddle2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 0 9.16421e-7 8.10027e-5 2.98023e-8 0.9986521 -0.05190887 0.08442807 -9.16421e-7 0.05190885 0.9986517 3.57628e-7 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_RightHandMiddle3\" name=\"mixamorig:RightHandMiddle3\" sid=\"mixamorig_RightHandMiddle3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">1 -2.98023e-7 -1.79559e-6 -2.22921e-5 2.38419e-7 0.9997041 -0.02432806 0.07912445 1.79559e-6 0.02432805 0.999704 -2.38419e-7 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_RightHandMiddle4\" name=\"mixamorig:RightHandMiddle4\" sid=\"mixamorig_RightHandMiddle4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">0.9999999 0 -3.7998e-7 -5.8651e-5 0 1 1.06171e-7 0.06810802 3.39001e-7 -1.67638e-8 1 -1.19209e-7 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                        <node id=\"mixamorig_RightHandRing1\" name=\"mixamorig:RightHandRing1\" sid=\"mixamorig_RightHandRing1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.9998606 -0.01670082 3.14787e-5 -0.03411102 0.01670091 0.9998586 -0.00195068 0.2740173 1.12131e-6 0.001950894 0.9999982 -0.002923369 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_RightHandRing2\" name=\"mixamorig:RightHandRing2\" sid=\"mixamorig_RightHandRing2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 2.38419e-7 -1.25915e-6 -3.45707e-5 -2.23517e-7 0.998809 0.04879289 0.06462991 1.27777e-6 -0.04879282 0.9988088 0 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_RightHandRing3\" name=\"mixamorig:RightHandRing3\" sid=\"mixamorig_RightHandRing3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">1 -1.49012e-7 3.65078e-7 3.03686e-5 1.3411e-7 0.999826 -0.01865327 0.06369221 -3.35276e-7 0.01865322 0.9998259 -1.19209e-7 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_RightHandRing4\" name=\"mixamorig:RightHandRing4\" sid=\"mixamorig_RightHandRing4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">1 1.19209e-7 1.30385e-7 4.20213e-6 -1.78814e-7 1 -8.10251e-8 0.05149305 -1.11759e-7 7.35745e-8 1 1.19209e-7 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                        <node id=\"mixamorig_RightHandPinky1\" name=\"mixamorig:RightHandPinky1\" sid=\"mixamorig_RightHandPinky1\" type=\"JOINT\">\r\n                          <matrix sid=\"transform\">0.9981159 -0.0612907 -0.002864785 -0.08714548 0.06135766 0.9970284 0.04657606 0.2710944 1.59815e-6 -0.04666422 0.9989105 0.004019737 0 0 0 1</matrix>\r\n                          <node id=\"mixamorig_RightHandPinky2\" name=\"mixamorig:RightHandPinky2\" sid=\"mixamorig_RightHandPinky2\" type=\"JOINT\">\r\n                            <matrix sid=\"transform\">1 -4.47035e-8 -2.64496e-7 -1.56462e-5 4.47035e-8 0.9983383 -0.05762427 0.05386376 3.05474e-7 0.05762411 0.9983382 1.19209e-7 0 0 0 1</matrix>\r\n                            <node id=\"mixamorig_RightHandPinky3\" name=\"mixamorig:RightHandPinky3\" sid=\"mixamorig_RightHandPinky3\" type=\"JOINT\">\r\n                              <matrix sid=\"transform\">0.9999999 -1.63913e-7 -4.61936e-7 -6.62506e-5 2.5332e-7 0.9824304 0.1866288 0.04851377 4.13507e-7 -0.1866288 0.9824306 0 0 0 0 1</matrix>\r\n                              <node id=\"mixamorig_RightHandPinky4\" name=\"mixamorig:RightHandPinky4\" sid=\"mixamorig_RightHandPinky4\" type=\"JOINT\">\r\n                                <matrix sid=\"transform\">1 2.98023e-8 -8.9407e-8 8.19564e-5 -1.49012e-8 0.9999999 2.04891e-7 0.03659064 5.96046e-8 1.86265e-9 1 -1.19209e-7 0 0 0 1</matrix>\r\n                              </node>\r\n                            </node>\r\n                          </node>\r\n                        </node>\r\n                      </node>\r\n                    </node>\r\n                  </node>\r\n                </node>\r\n              </node>\r\n            </node>\r\n          </node>\r\n          <node id=\"mixamorig_LeftUpLeg\" name=\"mixamorig:LeftUpLeg\" sid=\"mixamorig_LeftUpLeg\" type=\"JOINT\">\r\n            <matrix sid=\"transform\">-0.9952187 0.09760824 4.73857e-6 0.2127781 -0.0975575 -0.994707 0.03225537 -0.1033177 0.003149033 0.03210112 0.9994789 0.007440217 0 0 0 1</matrix>\r\n            <node id=\"mixamorig_LeftLeg\" name=\"mixamorig:LeftLeg\" sid=\"mixamorig_LeftLeg\" type=\"JOINT\">\r\n              <matrix sid=\"transform\">0.9991392 0.04103182 0.006115091 -5.96046e-8 -0.04148501 0.9882419 0.1471625 0.8884574 -4.84684e-6 -0.1472895 0.9890935 7.45058e-9 0 0 0 1</matrix>\r\n              <node id=\"mixamorig_LeftFoot\" name=\"mixamorig:LeftFoot\" sid=\"mixamorig_LeftFoot\" type=\"JOINT\">\r\n                <matrix sid=\"transform\">0.99871 0.04421942 0.02495845 5.96046e-8 2.37487e-8 0.4915327 -0.8708593 0.8964036 -0.05077678 0.8697358 0.4908985 -7.45058e-9 0 0 0 1</matrix>\r\n                <node id=\"mixamorig_LeftToeBase\" name=\"mixamorig:LeftToeBase\" sid=\"mixamorig_LeftToeBase\" type=\"JOINT\">\r\n                  <matrix sid=\"transform\">0.9983937 -0.03627088 -0.04352333 0 6.23986e-8 0.7682095 -0.6401984 0.3430771 0.05665559 0.6391701 0.7669756 -1.49012e-7 0 0 0 1</matrix>\r\n                  <node id=\"mixamorig_LeftToe_End\" name=\"mixamorig:LeftToe_End\" sid=\"mixamorig_LeftToe_End\" type=\"JOINT\">\r\n                    <matrix sid=\"transform\">1 -3.72529e-9 -3.45986e-7 0 2.79397e-9 0.9999999 1.93715e-7 0.1364299 3.46277e-7 -1.93715e-7 0.9999999 1.86265e-9 0 0 0 1</matrix>\r\n                  </node>\r\n                </node>\r\n              </node>\r\n            </node>\r\n          </node>\r\n          <node id=\"mixamorig_RightUpLeg\" name=\"mixamorig:RightUpLeg\" sid=\"mixamorig_RightUpLeg\" type=\"JOINT\">\r\n            <matrix sid=\"transform\">-0.9952603 -0.09722896 1.86265e-8 -0.2127781 0.09679761 -0.9908417 0.09414198 -0.1033177 -0.009150084 0.09369639 0.9955572 0.002375036 0 0 0 1</matrix>\r\n            <node id=\"mixamorig_RightLeg\" name=\"mixamorig:RightLeg\" sid=\"mixamorig_RightLeg\" type=\"JOINT\">\r\n              <matrix sid=\"transform\">0.9991916 -0.03883471 -0.01038012 2.98023e-8 0.04019804 0.9653016 0.2580253 0.8919234 -3.88827e-7 -0.258234 0.9660824 -1.49012e-8 0 0 0 1</matrix>\r\n              <node id=\"mixamorig_RightFoot\" name=\"mixamorig:RightFoot\" sid=\"mixamorig_RightFoot\" type=\"JOINT\">\r\n                <matrix sid=\"transform\">0.9986582 -0.04667187 -0.02244307 2.98023e-8 1.03936e-6 0.4333856 -0.9012085 0.9029052 0.0517876 0.8999994 0.4328042 -7.45058e-9 0 0 0 1</matrix>\r\n                <node id=\"mixamorig_RightToeBase\" name=\"mixamorig:RightToeBase\" sid=\"mixamorig_RightToeBase\" type=\"JOINT\">\r\n                  <matrix sid=\"transform\">0.9985635 0.03361339 0.0417246 -5.96046e-8 4.2282e-7 0.7787317 -0.6273572 0.3501284 -0.05357987 0.626456 0.777613 -1.49012e-7 0 0 0 1</matrix>\r\n                  <node id=\"mixamorig_RightToe_End\" name=\"mixamorig:RightToe_End\" sid=\"mixamorig_RightToe_End\" type=\"JOINT\">\r\n                    <matrix sid=\"transform\">1 2.09548e-7 2.93308e-7 2.98023e-8 -2.09548e-7 0.9999999 1.49012e-8 0.1407584 -2.93483e-7 -1.49012e-8 1 -3.72529e-9 0 0 0 1</matrix>\r\n                  </node>\r\n                </node>\r\n              </node>\r\n            </node>\r\n          </node>\r\n        </node>\r\n      </node>\r\n      <node id=\"Stormtrooper\" name=\"Stormtrooper\" type=\"NODE\">\r\n        <translate sid=\"location\">0 0 0</translate>\r\n        <rotate sid=\"rotationZ\">0 0 1 0</rotate>\r\n        <rotate sid=\"rotationY\">0 1 0 0</rotate>\r\n        <rotate sid=\"rotationX\">1 0 0 0</rotate>\r\n        <scale sid=\"scale\">1 1 1</scale>\r\n        <instance_controller url=\"#Armature_Stormtrooper-skin\">\r\n          <skeleton>#mixamorig_Hips</skeleton>\r\n          <bind_material>\r\n            <technique_common>\r\n              <instance_material symbol=\"Stormtroopermat-material\" target=\"#Stormtroopermat-material\">\r\n                <bind_vertex_input semantic=\"StormtrooperDiffuseUVLayer\" input_semantic=\"TEXCOORD\" input_set=\"0\"/>\r\n              </instance_material>\r\n            </technique_common>\r\n          </bind_material>\r\n        </instance_controller>\r\n      </node>\r\n    </visual_scene>\r\n  </library_visual_scenes>\r\n  <scene>\r\n    <instance_visual_scene url=\"#Scene\"/>\r\n  </scene>\r\n</COLLADA>\r\n"
  },
  {
    "path": "public/models/fbx/nurbs.fbx",
    "content": "; FBX 7.2.0 project file\r\n; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.\r\n; All rights reserved.\r\n; ----------------------------------------------------\r\n\r\nFBXHeaderExtension:  {\r\n\tFBXHeaderVersion: 1003\r\n\tFBXVersion: 7200\r\n}\r\n\r\n; Object properties\r\n;------------------------------------------------------------------\r\n\r\nObjects:  {\r\n\tGeometry: 1000, \"Geometry::\", \"NurbsCurve\" {\r\n\t\tGeometryVersion: 124\r\n\t\tType: \"NurbsCurve\"\r\n\t\tNurbsCurveVersion: 100\r\n\t\tOrder: 3\r\n\t\tDimension: 3\r\n\t\tForm: \"Open\"\r\n\t\tRational: 1\r\n\t\tPoints: *32 {\r\n\t\t\ta: 10,20,0,1, 10,20,10,1, 0,20,10,1, -10,20,10,1, -10,20,0,1, -10,20,-10,1, 0,20,-10,1, 10,22,-10,1\r\n\t\t}\r\n\t\tKnotVector: *11 {\r\n\t\t\ta: 0,0,0,0.17,0.33,0.5,0.67,0.83,1,1,1\r\n\t\t}\r\n\t}\r\n\tGeometry: 1001, \"Geometry::\", \"NurbsCurve\" {\r\n\t\tGeometryVersion: 124\r\n\t\tType: \"NurbsCurve\"\r\n\t\tNurbsCurveVersion: 100\r\n\t\tOrder: 3\r\n\t\tDimension: 3\r\n\t\tForm: \"Closed\"\r\n\t\tRational: 1\r\n\t\tPoints: *32 {\r\n\t\t\ta: 10,15,0,1, 10,15,10,1, 0,15,10,1, -10,15,10,1, -10,15,0,1, -10,15,-10,1, 0,15,-10,1, 10,17,-10,1\r\n\t\t}\r\n\t\tKnotVector: *12 {\r\n\t\t\ta: 0,0,0,0.14,0.29,0.43,0.57,0.71,0.86,1,1,1\r\n\t\t}\r\n\t}\r\n\tGeometry: 1003, \"Geometry::\", \"NurbsCurve\" {\r\n\t\tGeometryVersion: 124\r\n\t\tType: \"NurbsCurve\"\r\n\t\tNurbsCurveVersion: 100\r\n\t\tOrder: 3\r\n\t\tDimension: 3\r\n\t\tForm: \"Open\"\r\n\t\tRational: 0\r\n\t\tPoints: *28 {\r\n\t\t\ta: -7.88491751885913,0,-6.3416140214512,1,-7.55614153653084,0,-2.14888095861657,1,-6.89858957187424,0,6.23658516705268,1,6.75015994493138,0,6.91307446273969,1,8.41087276805083,0,-7.08434013027703,1,4.56806678889053,0,-9.8832858634819,1,-2.6353540655343,1.51455220168221,-9.66990979123821,1\r\n\t\t}\r\n\t\tKnotVector: *10 {\r\n\t\t\ta: 0,0,0,1,2,3,4,5,5,5\r\n\t\t}\r\n\t}\r\n\tGeometry: 1004, \"Geometry::\", \"NurbsCurve\" {\r\n\t\tGeometryVersion: 124\r\n\t\tType: \"NurbsCurve\"\r\n\t\tNurbsCurveVersion: 100\r\n\t\tOrder: 3\r\n\t\tDimension: 3\r\n\t\tForm: \"Periodic\"\r\n\t\tRational: 0\r\n\t\tPoints: *28 {\r\n\t\t\ta: -7.98766001333675,-5.56797696184566e-17,-7.65184310358704,1,-7.55614153653083,9.29849790468227e-18,-2.14888095861657,1,-6.89858957187424,-5.31636952823902e-17,6.23658516705267,1,6.75015994493138,0,6.91307446273969,1,8.41087276805082,4.96506830649454e-16,-7.08434013027705,1,4.56806678889055,-2.91370319417538e-16,-9.8832858634819,1,-4.88642308254206,1.9878497647079,-9.60322976866206,1\r\n\t\t}\r\n\t\tKnotVector: *12 {\r\n\t\t\ta: -0.625,-0.3125,0,1,2,3,4,5,5.3125,5.625,6.625,7.625\r\n\t\t}\r\n\t}\r\n\tGeometry: 1005, \"Geometry::\", \"NurbsCurve\" {\r\n\t\tGeometryVersion: 124\r\n\t\tType: \"NurbsCurve\"\r\n\t\tNurbsCurveVersion: 100\r\n\t\tOrder: 4\r\n\t\tDimension: 3\r\n\t\tForm: \"Periodic\"\r\n\t\tRational: 0\r\n\t\tPoints: *32 {\r\n\t\t\ta: 0.783611624891225,4.79823734098847e-17,-0.783611624891224,1,-1.26431706078293e-16,6.78573232311091e-17,-1.10819418755439,1,-0.783611624891224,4.79823734098847e-17,-0.783611624891224,1,-1.10819418755439,1.96633546161879e-32,-3.21126950723723e-16,1,-0.783611624891224,-4.79823734098847e-17,0.783611624891224,1,-3.33920536359052e-16,-6.78573232311091e-17,1.10819418755439,1,0.783611624891224,-4.79823734098847e-17,0.783611624891224,1,1.10819418755439,-3.64463006790479e-32,5.95213259928059e-16,1\r\n\t\t}\r\n\t\tKnotVector: *15 {\r\n\t\t\ta: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11\r\n\t\t}\r\n\t}\r\n\tModel: 10, \"Model::Layer 01\", \"Null\" {\r\n\t}\r\n\tModel: 100, \"Model::Object_1\", \"NurbsCurve\" {\r\n\t}\r\n\tModel: 101, \"Model::Object_2\", \"NurbsCurve\" {\r\n\t}\r\n\tModel: 103, \"Model::Object_4\", \"NurbsCurve\" {\r\n\t}\r\n\tModel: 104, \"Model::Object_5\", \"NurbsCurve\" {\r\n\t\tProperties70:  {\r\n\t\t\tP: \"Lcl Translation\", \"Lcl Translation\", \"\", \"A\",0,3.38368368081907,0\r\n\t\t}\r\n\t}\r\n\tModel: 105, \"Model::Object_6\", \"NurbsCurve\" {\r\n\t\tProperties70:  {\r\n\t\t\tP: \"Lcl Translation\", \"Lcl Translation\", \"\", \"A\",0.000265865200637982,2.121861293983,0.0232605698569328\r\n\t\t\tP: \"Lcl Scaling\", \"Lcl Scaling\", \"\", \"A\",9.95283433152597,1,9.95283433152597\r\n\t\t}\r\n\t}\r\n}\r\n\r\n; Object connections\r\n;------------------------------------------------------------------\r\n\r\nConnections:  {\r\n\t;Model::Layer 01, Model::RootNode\r\n\tC: \"OO\",10,0\r\n\r\n\t;Model::Object_1, Model::Layer 01\r\n\tC: \"OO\",100,10\r\n\r\n\t;Geometry::, Model::Object_1\r\n\tC: \"OO\",1000,100\r\n\r\n\t;Model::Object_2, Model::Layer 01\r\n\tC: \"OO\",101,10\r\n\r\n\t;Geometry::, Model::Object_2\r\n\tC: \"OO\",1001,101\r\n\r\n\t;Model::Object_4, Model::Layer 01\r\n\tC: \"OO\",103,10\r\n\r\n\t;Geometry::, Model::Object_4\r\n\tC: \"OO\",1003,103\r\n\r\n\t;Model::Object_5, Model::Layer 01\r\n\tC: \"OO\",104,10\r\n\r\n\t;Geometry::, Model::Object_5\r\n\tC: \"OO\",1004,104\r\n\r\n\t;Model::Object_6, Model::Layer 01\r\n\tC: \"OO\",105,10\r\n\r\n\t;Geometry::, Model::Object_6\r\n\tC: \"OO\",1005,105\r\n}\r\n"
  },
  {
    "path": "public/models/fbx/stanford-bunny.fbx",
    "content": "; FBX 7.5.0 project file\r\n; Copyright (C) 1997-2015 Autodesk Inc. and/or its licensors.\r\n; All rights reserved.\r\n; ----------------------------------------------------\r\n\r\nFBXHeaderExtension:  {\r\n\tFBXHeaderVersion: 1003\r\n\tFBXVersion: 7500\r\n\tCreationTimeStamp:  {\r\n\t\tVersion: 1000\r\n\t\tYear: 2018\r\n\t\tMonth: 3\r\n\t\tDay: 5\r\n\t\tHour: 17\r\n\t\tMinute: 48\r\n\t\tSecond: 57\r\n\t\tMillisecond: 84\r\n\t}\r\n\tCreator: \"FBX SDK/FBX Plugins version 2017.0.1\"\r\n\tSceneInfo: \"SceneInfo::GlobalInfo\", \"UserData\" {\r\n\t\tType: \"UserData\"\r\n\t\tVersion: 100\r\n\t\tMetaData:  {\r\n\t\t\tVersion: 100\r\n\t\t\tTitle: \"\"\r\n\t\t\tSubject: \"\"\r\n\t\t\tAuthor: \"\"\r\n\t\t\tKeywords: \"\"\r\n\t\t\tRevision: \"\"\r\n\t\t\tComment: \"\"\r\n\t\t}\r\n\t\tProperties70:  {\r\n\t\t\tP: \"DocumentUrl\", \"KString\", \"Url\", \"\", \"D:\\bunny-ascii.fbx\"\r\n\t\t\tP: \"SrcDocumentUrl\", \"KString\", \"Url\", \"\", \"D:\\bunny-ascii.fbx\"\r\n\t\t\tP: \"Original\", \"Compound\", \"\", \"\"\r\n\t\t\tP: \"Original|ApplicationVendor\", \"KString\", \"\", \"\", \"Autodesk\"\r\n\t\t\tP: \"Original|ApplicationName\", \"KString\", \"\", \"\", \"Maya\"\r\n\t\t\tP: \"Original|ApplicationVersion\", \"KString\", \"\", \"\", \"2017\"\r\n\t\t\tP: \"Original|DateTime_GMT\", \"DateTime\", \"\", \"\", \"05/03/2018 09:48:57.083\"\r\n\t\t\tP: \"Original|FileName\", \"KString\", \"\", \"\", \"D:\\bunny-ascii.fbx\"\r\n\t\t\tP: \"LastSaved\", \"Compound\", \"\", \"\"\r\n\t\t\tP: \"LastSaved|ApplicationVendor\", \"KString\", \"\", \"\", \"Autodesk\"\r\n\t\t\tP: \"LastSaved|ApplicationName\", \"KString\", \"\", \"\", \"Maya\"\r\n\t\t\tP: \"LastSaved|ApplicationVersion\", \"KString\", \"\", \"\", \"2017\"\r\n\t\t\tP: \"LastSaved|DateTime_GMT\", \"DateTime\", \"\", \"\", \"05/03/2018 09:48:57.083\"\r\n\t\t\tP: \"Original|ApplicationActiveProject\", \"KString\", \"\", \"\", \"D:\\\"\r\n\t\t\tP: \"Original|ApplicationNativeFile\", \"KString\", \"\", \"\", \"D:\\bunny.ma\"\r\n\t\t}\r\n\t}\r\n}\r\nGlobalSettings:  {\r\n\tVersion: 1000\r\n\tProperties70:  {\r\n\t\tP: \"UpAxis\", \"int\", \"Integer\", \"\",1\r\n\t\tP: \"UpAxisSign\", \"int\", \"Integer\", \"\",1\r\n\t\tP: \"FrontAxis\", \"int\", \"Integer\", \"\",2\r\n\t\tP: \"FrontAxisSign\", \"int\", \"Integer\", \"\",1\r\n\t\tP: \"CoordAxis\", \"int\", \"Integer\", \"\",0\r\n\t\tP: \"CoordAxisSign\", \"int\", \"Integer\", \"\",1\r\n\t\tP: \"OriginalUpAxis\", \"int\", \"Integer\", \"\",1\r\n\t\tP: \"OriginalUpAxisSign\", \"int\", \"Integer\", \"\",1\r\n\t\tP: \"UnitScaleFactor\", \"double\", \"Number\", \"\",1\r\n\t\tP: \"OriginalUnitScaleFactor\", \"double\", \"Number\", \"\",1\r\n\t\tP: \"AmbientColor\", \"ColorRGB\", \"Color\", \"\",0,0,0\r\n\t\tP: \"DefaultCamera\", \"KString\", \"\", \"\", \"Producer Perspective\"\r\n\t\tP: \"TimeMode\", \"enum\", \"\", \"\",11\r\n\t\tP: \"TimeProtocol\", \"enum\", \"\", \"\",2\r\n\t\tP: \"SnapOnFrameMode\", \"enum\", \"\", \"\",0\r\n\t\tP: \"TimeSpanStart\", \"KTime\", \"Time\", \"\",1924423250\r\n\t\tP: \"TimeSpanStop\", \"KTime\", \"Time\", \"\",384884650000\r\n\t\tP: \"CustomFrameRate\", \"double\", \"Number\", \"\",-1\r\n\t\tP: \"TimeMarker\", \"Compound\", \"\", \"\"\r\n\t\tP: \"CurrentTimeMarker\", \"int\", \"Integer\", \"\",-1\r\n\t}\r\n}\r\n\r\n; Documents Description\r\n;------------------------------------------------------------------\r\n\r\nDocuments:  {\r\n\tCount: 1\r\n\tDocument: 2286596784, \"\", \"Scene\" {\r\n\t\tProperties70:  {\r\n\t\t\tP: \"SourceObject\", \"object\", \"\", \"\"\r\n\t\t\tP: \"ActiveAnimStackName\", \"KString\", \"\", \"\", \"Take 001\"\r\n\t\t}\r\n\t\tRootNode: 0\r\n\t}\r\n}\r\n\r\n; Document References\r\n;------------------------------------------------------------------\r\n\r\nReferences:  {\r\n}\r\n\r\n; Object definitions\r\n;------------------------------------------------------------------\r\n\r\nDefinitions:  {\r\n\tVersion: 100\r\n\tCount: 12\r\n\tObjectType: \"GlobalSettings\" {\r\n\t\tCount: 1\r\n\t}\r\n\tObjectType: \"AnimationStack\" {\r\n\t\tCount: 1\r\n\t\tPropertyTemplate: \"FbxAnimStack\" {\r\n\t\t\tProperties70:  {\r\n\t\t\t\tP: \"Description\", \"KString\", \"\", \"\", \"\"\r\n\t\t\t\tP: \"LocalStart\", \"KTime\", \"Time\", \"\",0\r\n\t\t\t\tP: \"LocalStop\", \"KTime\", \"Time\", \"\",0\r\n\t\t\t\tP: \"ReferenceStart\", \"KTime\", \"Time\", \"\",0\r\n\t\t\t\tP: \"ReferenceStop\", \"KTime\", \"Time\", \"\",0\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tObjectType: \"AnimationLayer\" {\r\n\t\tCount: 1\r\n\t\tPropertyTemplate: \"FbxAnimLayer\" {\r\n\t\t\tProperties70:  {\r\n\t\t\t\tP: \"Weight\", \"Number\", \"\", \"A\",100\r\n\t\t\t\tP: \"Mute\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"Solo\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"Lock\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"Color\", \"ColorRGB\", \"Color\", \"\",0.8,0.8,0.8\r\n\t\t\t\tP: \"BlendMode\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationAccumulationMode\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"ScaleAccumulationMode\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"BlendModeBypass\", \"ULongLong\", \"\", \"\",0\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tObjectType: \"Geometry\" {\r\n\t\tCount: 1\r\n\t\tPropertyTemplate: \"FbxMesh\" {\r\n\t\t\tProperties70:  {\r\n\t\t\t\tP: \"Color\", \"ColorRGB\", \"Color\", \"\",0.8,0.8,0.8\r\n\t\t\t\tP: \"BBoxMin\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"BBoxMax\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"Primary Visibility\", \"bool\", \"\", \"\",1\r\n\t\t\t\tP: \"Casts Shadows\", \"bool\", \"\", \"\",1\r\n\t\t\t\tP: \"Receive Shadows\", \"bool\", \"\", \"\",1\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tObjectType: \"Material\" {\r\n\t\tCount: 1\r\n\t\tPropertyTemplate: \"FbxSurfacePhong\" {\r\n\t\t\tProperties70:  {\r\n\t\t\t\tP: \"ShadingModel\", \"KString\", \"\", \"\", \"Phong\"\r\n\t\t\t\tP: \"MultiLayer\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"EmissiveColor\", \"Color\", \"\", \"A\",0,0,0\r\n\t\t\t\tP: \"EmissiveFactor\", \"Number\", \"\", \"A\",1\r\n\t\t\t\tP: \"AmbientColor\", \"Color\", \"\", \"A\",0.2,0.2,0.2\r\n\t\t\t\tP: \"AmbientFactor\", \"Number\", \"\", \"A\",1\r\n\t\t\t\tP: \"DiffuseColor\", \"Color\", \"\", \"A\",0.8,0.8,0.8\r\n\t\t\t\tP: \"DiffuseFactor\", \"Number\", \"\", \"A\",1\r\n\t\t\t\tP: \"Bump\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"NormalMap\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"BumpFactor\", \"double\", \"Number\", \"\",1\r\n\t\t\t\tP: \"TransparentColor\", \"Color\", \"\", \"A\",0,0,0\r\n\t\t\t\tP: \"TransparencyFactor\", \"Number\", \"\", \"A\",0\r\n\t\t\t\tP: \"DisplacementColor\", \"ColorRGB\", \"Color\", \"\",0,0,0\r\n\t\t\t\tP: \"DisplacementFactor\", \"double\", \"Number\", \"\",1\r\n\t\t\t\tP: \"VectorDisplacementColor\", \"ColorRGB\", \"Color\", \"\",0,0,0\r\n\t\t\t\tP: \"VectorDisplacementFactor\", \"double\", \"Number\", \"\",1\r\n\t\t\t\tP: \"SpecularColor\", \"Color\", \"\", \"A\",0.2,0.2,0.2\r\n\t\t\t\tP: \"SpecularFactor\", \"Number\", \"\", \"A\",1\r\n\t\t\t\tP: \"ShininessExponent\", \"Number\", \"\", \"A\",20\r\n\t\t\t\tP: \"ReflectionColor\", \"Color\", \"\", \"A\",0,0,0\r\n\t\t\t\tP: \"ReflectionFactor\", \"Number\", \"\", \"A\",1\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tObjectType: \"Texture\" {\r\n\t\tCount: 3\r\n\t\tPropertyTemplate: \"FbxFileTexture\" {\r\n\t\t\tProperties70:  {\r\n\t\t\t\tP: \"TextureTypeUse\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"Texture alpha\", \"Number\", \"\", \"A\",1\r\n\t\t\t\tP: \"CurrentMappingType\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"WrapModeU\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"WrapModeV\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"UVSwap\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"PremultiplyAlpha\", \"bool\", \"\", \"\",1\r\n\t\t\t\tP: \"Translation\", \"Vector\", \"\", \"A\",0,0,0\r\n\t\t\t\tP: \"Rotation\", \"Vector\", \"\", \"A\",0,0,0\r\n\t\t\t\tP: \"Scaling\", \"Vector\", \"\", \"A\",1,1,1\r\n\t\t\t\tP: \"TextureRotationPivot\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"TextureScalingPivot\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"CurrentTextureBlendMode\", \"enum\", \"\", \"\",1\r\n\t\t\t\tP: \"UVSet\", \"KString\", \"\", \"\", \"default\"\r\n\t\t\t\tP: \"UseMaterial\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"UseMipMap\", \"bool\", \"\", \"\",0\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tObjectType: \"Model\" {\r\n\t\tCount: 1\r\n\t\tPropertyTemplate: \"FbxNode\" {\r\n\t\t\tProperties70:  {\r\n\t\t\t\tP: \"QuaternionInterpolate\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationOffset\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"RotationPivot\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"ScalingOffset\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"ScalingPivot\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"TranslationActive\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"TranslationMin\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"TranslationMax\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"TranslationMinX\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"TranslationMinY\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"TranslationMinZ\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"TranslationMaxX\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"TranslationMaxY\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"TranslationMaxZ\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationOrder\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationSpaceForLimitOnly\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationStiffnessX\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"RotationStiffnessY\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"RotationStiffnessZ\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"AxisLen\", \"double\", \"Number\", \"\",10\r\n\t\t\t\tP: \"PreRotation\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"PostRotation\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"RotationActive\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationMin\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"RotationMax\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"RotationMinX\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationMinY\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationMinZ\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationMaxX\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationMaxY\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"RotationMaxZ\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"InheritType\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"ScalingActive\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"ScalingMin\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"ScalingMax\", \"Vector3D\", \"Vector\", \"\",1,1,1\r\n\t\t\t\tP: \"ScalingMinX\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"ScalingMinY\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"ScalingMinZ\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"ScalingMaxX\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"ScalingMaxY\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"ScalingMaxZ\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"GeometricTranslation\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"GeometricRotation\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\t\tP: \"GeometricScaling\", \"Vector3D\", \"Vector\", \"\",1,1,1\r\n\t\t\t\tP: \"MinDampRangeX\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MinDampRangeY\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MinDampRangeZ\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MaxDampRangeX\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MaxDampRangeY\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MaxDampRangeZ\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MinDampStrengthX\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MinDampStrengthY\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MinDampStrengthZ\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MaxDampStrengthX\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MaxDampStrengthY\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"MaxDampStrengthZ\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"PreferedAngleX\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"PreferedAngleY\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"PreferedAngleZ\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"LookAtProperty\", \"object\", \"\", \"\"\r\n\t\t\t\tP: \"UpVectorProperty\", \"object\", \"\", \"\"\r\n\t\t\t\tP: \"Show\", \"bool\", \"\", \"\",1\r\n\t\t\t\tP: \"NegativePercentShapeSupport\", \"bool\", \"\", \"\",1\r\n\t\t\t\tP: \"DefaultAttributeIndex\", \"int\", \"Integer\", \"\",-1\r\n\t\t\t\tP: \"Freeze\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"LODBox\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"Lcl Translation\", \"Lcl Translation\", \"\", \"A\",0,0,0\r\n\t\t\t\tP: \"Lcl Rotation\", \"Lcl Rotation\", \"\", \"A\",0,0,0\r\n\t\t\t\tP: \"Lcl Scaling\", \"Lcl Scaling\", \"\", \"A\",1,1,1\r\n\t\t\t\tP: \"Visibility\", \"Visibility\", \"\", \"A\",1\r\n\t\t\t\tP: \"Visibility Inheritance\", \"Visibility Inheritance\", \"\", \"\",1\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tObjectType: \"Video\" {\r\n\t\tCount: 3\r\n\t\tPropertyTemplate: \"FbxVideo\" {\r\n\t\t\tProperties70:  {\r\n\t\t\t\tP: \"ImageSequence\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"ImageSequenceOffset\", \"int\", \"Integer\", \"\",0\r\n\t\t\t\tP: \"FrameRate\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"LastFrame\", \"int\", \"Integer\", \"\",0\r\n\t\t\t\tP: \"Width\", \"int\", \"Integer\", \"\",0\r\n\t\t\t\tP: \"Height\", \"int\", \"Integer\", \"\",0\r\n\t\t\t\tP: \"Path\", \"KString\", \"XRefUrl\", \"\", \"\"\r\n\t\t\t\tP: \"StartFrame\", \"int\", \"Integer\", \"\",0\r\n\t\t\t\tP: \"StopFrame\", \"int\", \"Integer\", \"\",0\r\n\t\t\t\tP: \"PlaySpeed\", \"double\", \"Number\", \"\",0\r\n\t\t\t\tP: \"Offset\", \"KTime\", \"Time\", \"\",0\r\n\t\t\t\tP: \"InterlaceMode\", \"enum\", \"\", \"\",0\r\n\t\t\t\tP: \"FreeRunning\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"Loop\", \"bool\", \"\", \"\",0\r\n\t\t\t\tP: \"AccessMode\", \"enum\", \"\", \"\",0\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\n; Object properties\r\n;------------------------------------------------------------------\r\n\r\nObjects:  {\r\n\tGeometry: 1938977120, \"Geometry::\", \"Mesh\" {\r\n\t\tVertices: *45774 {\r\n\t\t\ta: -230.728103637695,4.68608903884888,63.8041572570801,-227.490783691406,0.933628022670746,58.9468803405762,-226.531692504883,0.776153981685638,63.7823524475098,-224.3955078125,-3.02820706367493,60.9709777832031,-229.676010131836,4.97194719314575,68.1609802246094,-223.717422485352,-3.66176891326904,63.7140464782715,-224.162475585938,-4.18509006500244,57.6427536010742,-225.297576904297,0.927745997905731,67.3258056640625,-236.843719482422,10.5875377655029,70.0572738647461,-223.672424316406,-8.0493688583374,60.4284248352051,-224.319488525391,-3.76120901107788,54.2359161376953,-226.032653808594,3.73264598846436,71.8602447509766,-232.944320678711,12.1485900878906,81.9322280883789,-222.571319580078,-3.75735807418823,66.9121551513672,-222.64631652832,-8.04057788848877,65.3647155761719,-224.177474975586,-8.02623558044434,51.465747833252,-227.580810546875,8.41695499420166,81.8371200561523,-222.975341796875,-0.335431009531021,69.7040328979492,-237.337768554688,14.6749382019043,79.6791076660156,-223.921432495117,-12.2684030532837,64.0423812866211,-225.104568481445,-12.6585397720337,59.6315460205078,-223.789443969727,3.98494005203247,77.8758316040039,-222.776336669922,0.893495976924896,73.0748672485352,-232.791305541992,14.2867002487183,89.0406341552734,-235.862609863281,15.4335126876831,84.7466125488281,-221.046157836914,-3.85493803024292,71.2336883544922,-219.633026123047,-12.5881328582764,77.2046737670898,-226.078659057617,-12.2164974212646,49.9003944396973,-224.116470336914,7.7043251991272,88.7285003662109,-239.644973754883,18.5439186096191,83.6600952148438,-216.81575012207,-8.33670711517334,82.6152954101563,-226.028656005859,-16.355001449585,63.3885154724121,-228.974945068359,-20.1664752960205,58.0794944763184,-221.062164306641,0.294422000646591,76.7400283813477,-220.446105957031,4.42645406723022,88.4941787719727,-237.654800415039,19.0945701599121,89.6150817871094,-228.256866455078,11.3987169265747,92.4335632324219,-218.751937866211,-3.77080988883972,78.1838607788086,-217.140777587891,-12.2006959915161,83.8925247192383,\r\n-219.770050048828,-16.7652416229248,82.0451431274414,-229.306976318359,-19.4446048736572,51.4123420715332,-218.528915405273,0.611636996269226,84.8130111694336,-220.099075317383,5.27876710891724,92.7040939331055,-236.034637451172,18.0552673339844,92.6082763671875,-232.554290771484,14.8646574020386,93.9355087280273,-220.152069091797,6.01617002487183,97.8023834228516,-241.212142944336,22.6242160797119,87.4403686523438,-216.015670776367,-3.93812608718872,85.3773727416992,-227.920837402344,-21.4391994476318,66.0658721923828,-214.715545654297,-8.42812633514404,86.97802734375,-224.491500854492,-23.1049633026123,78.3620758056641,-227.699813842773,-16.2739944458008,44.1189270019531,-231.885238647461,-27.6328086853027,56.3103218078613,-216.5947265625,0.882494986057281,89.916618347168,-239.567977905273,23.2409782409668,92.7543869018555,-230.274063110352,12.9022636413574,96.0311126708984,-227.775817871094,10.7804555892944,98.9899978637695,-230.2470703125,-25.1093597412109,62.8283615112305,-215.583633422852,-13.1649904251099,88.0102233886719,-222.225280761719,-23.0879611968994,84.1755523681641,-229.390991210938,-20.89794921875,44.0617218017578,-231.288177490234,-26.1917667388916,51.2315254211426,-217.201782226563,3.59590196609497,94.6113739013672,-235.941635131836,18.2621898651123,95.5800704956055,-238.673889160156,22.1598701477051,95.9776077270508,-235.029541015625,16.359302520752,99.0584106445313,-225.574600219727,9.10402202606201,100.403846740723,-241.801193237305,27.5136966705322,92.2932434082031,-213.690444946289,-3.95762801170349,89.4182586669922,-229.06396484375,-25.5271015167236,68.668830871582,-211.975280761719,-8.62923622131348,91.734489440918,-226.190673828125,-29.2001609802246,80.5671005249023,-230.339584350586,-23.5448570251465,47.6466217041016,-233.158355712891,-33.4093742370605,56.679256439209,-231.235168457031,-29.05224609375,64.3761138916016,-211.44921875,-0.332522004842758,95.58447265625,-214.121490478516,2.96442008018494,101.213920593262,-240.769104003906,26.590705871582,95.7462844848633,-233.673400878906,13.7848510742188,102.54305267334,\r\n-221.886245727539,6.40167713165283,102.990097045898,-231.400192260742,9.21213340759277,110.311813354492,-218.007873535156,-21.4443016052246,90.4202651977539,-212.838363647461,-13.5533275604248,92.9783096313477,-222.705337524414,-26.9908447265625,86.1907501220703,-230.773132324219,-27.451488494873,39.8035011291504,-231.030654907227,-26.8216285705566,45.5175132751465,-232.788314819336,-34.0384368896484,61.790657043457,-233.63639831543,-37.4940719604492,48.4838523864746,-212.665344238281,1.96598303318024,98.2408294677734,-237.843811035156,19.6371250152588,99.6717681884766,-239.837005615234,23.4347972869873,99.7066802978516,-238.30485534668,14.9497652053833,111.538940429688,-242.400253295898,31.6647033691406,95.9514999389648,-209.889068603516,-3.88745093345642,94.9183044433594,-229.854034423828,-29.6844081878662,70.9241561889648,-207.330825805664,-9.41667175292969,98.2461318969727,-224.853546142578,-33.0941429138184,85.4310760498047,-232.368286132813,-34.249755859375,43.4313621520996,-233.319366455078,-38.1130332946777,61.2480049133301,-233.884414672852,-38.4990730285645,54.4266357421875,-230.886123657227,-34.3138656616211,71.0269622802734,-208.551940917969,-0.877708971500397,100.715873718262,-217.241806030273,3.83887600898743,105.754364013672,-241.7001953125,28.9157333374023,99.0220108032227,-235.426574707031,11.7342500686646,112.331016540527,-227.030746459961,5.70553922653198,114.030181884766,-229.709014892578,-34.6002922058105,75.2435760498047,-221.456207275391,-34.2953605651855,91.3858642578125,-213.592437744141,-17.990062713623,94.6732788085938,-207.519836425781,-14.6749382019043,99.9733963012695,-227.883834838867,-38.0317268371582,81.7399139404297,-231.570709228516,-30.850622177124,41.617431640625,-232.229263305664,-38.968017578125,66.537223815918,-232.238265991211,-37.2247467041016,36.8986206054688,-233.85041809082,-41.6678810119629,53.6642646789551,-209.165008544922,0.126789003610611,105.14030456543,-240.630081176758,18.901252746582,110.388824462891,-241.703201293945,22.7046241760254,107.454528808594,-241.965209960938,27.8486289978027,102.517051696777,\r\n-232.324264526367,8.34341716766357,116.499420166016,-236.472671508789,11.558032989502,118.947662353516,-242.947311401367,35.3758659362793,98.7563781738281,-206.855773925781,-4.79884004592896,99.2306213378906,-218.490921020508,-34.2302513122559,95.6477813720703,-205.188613891602,-13.1045837402344,101.958999633789,-223.578414916992,-39.9187088012695,90.0276260375977,-231.50569152832,-32.3381195068359,38.3510627746582,-233.358367919922,-42.6964836120605,59.2145042419434,-232.289260864258,-42.5356712341309,35.1850509643555,-233.632400512695,-43.0421180725098,46.2834396362305,-231.235168457031,-42.9185066223145,73.9502487182617,-205.478637695313,-3.61007404327393,103.16911315918,-222.463302612305,3.37248992919922,116.813446044922,-213.369415283203,1.80181705951691,109.446731567383,-239.818008422852,15.1575860977173,122.103965759277,-242.942321777344,33.9527282714844,101.85498046875,-228.833923339844,5.72733116149902,119.160682678223,-204.701568603516,-7.55352020263672,101.683967590332,-230.998138427734,-48.6108627319336,77.6329116821289,-214.078475952148,-33.4868812561035,100.83088684082,-209.098983764648,-24.9426441192627,102.644058227539,-201.930282592773,-20.410400390625,108.049591064453,-226.599716186523,-44.2474365234375,86.0784454345703,-230.82112121582,-31.5466918945313,34.2509613037109,-232.84033203125,-46.9720001220703,60.6742515563965,-231.617202758789,-37.7231941223145,33.4277801513672,-233.519378662109,-46.2944374084473,53.1526107788086,-232.298263549805,-44.4640579223633,67.0848770141602,-205.482635498047,-2.21811699867249,108.160598754883,-209.501037597656,0.0244420003145933,110.775863647461,-242.012222290039,18.8834495544434,122.452003479004,-243.507369995117,23.3300876617432,115.823356628418,-244.216445922852,27.5799026489258,112.910064697266,-243.427368164063,32.7128028869629,105.791374206543,-232.967346191406,8.16769981384277,121.832946777344,-236.718704223633,11.4676237106323,123.98014831543,-243.545379638672,41.2992477416992,99.2810287475586,-229.266967773438,-44.9721069335938,80.884033203125,-220.68212890625,-41.1174278259277,94.6506805419922,\r\n-202.792373657227,-9.83954429626465,104.287216186523,-201.251220703125,-13.2396984100342,106.746459960938,-230.996139526367,-38.2216453552246,29.9569396972656,-233.26335144043,-46.6376686096191,47.2803382873535,-232.945327758789,-53.4044342041016,71.285888671875,-202.99739074707,-5.46833610534668,105.871376037598,-224.156463623047,3.27478098869324,122.276992797852,-215.501617431641,0.567425012588501,120.948852539063,-210.317108154297,-0.246076002717018,116.246391296387,-241.559173583984,19.0004615783691,131.950942993164,-243.427368164063,38.3776626586914,104.608261108398,-238.067825317383,13.275200843811,128.476593017578,-229.277969360352,5.60890913009644,124.850242614746,-227.771820068359,-50.6594619750977,84.8478164672852,-214.86555480957,-42.4702606201172,102.463043212891,-206.465728759766,-40.3392524719238,111.169898986816,-198.558975219727,-16.9247589111328,110.412818908691,-221.490203857422,-48.5611572265625,94.5979766845703,-233.595397949219,-55.0095901489258,66.4740219116211,-233.569381713867,-51.3102264404297,52.6115608215332,-230.729110717773,-43.7671890258789,28.1232604980469,-231.777221679688,-51.4359397888184,40.3601608276367,-232.150253295898,-55.5813484191895,74.554313659668,-204.154510498047,-2.65653991699219,114.341209411621,-201.605255126953,-4.69392013549805,110.610847473145,-243.805389404297,23.1975727081299,125.800331115723,-244.771484375,28.0759506225586,119.637733459473,-244.731491088867,31.6612033843994,114.441215515137,-244.215438842773,36.2238464355469,110.702850341797,-232.172256469727,7.60277509689331,128.374588012695,-243.213333129883,44.677978515625,102.960090637207,-230.1640625,-53.3104248046875,79.8417205810547,-199.192031860352,-37.3736610412598,117.039474487305,-200.449157714844,-8.11250495910645,108.034591674805,-198.440948486328,-10.6881475448608,110.274803161621,-193.210433959961,-22.3817939758301,117.333503723145,-233.160354614258,-51.0515022277832,59.7089538574219,-231.108154296875,-50.6833648681641,32.1916580200195,-232.706314086914,-50.9656944274902,46.0831184387207,-233.768417358398,-60.0874862670898,65.9915771484375,\r\n-232.622299194336,-59.4896278381348,71.9472503662109,-217.57682800293,0.827269971370697,126.266380310059,-225.662628173828,3.77969002723694,127.362487792969,-210.980178833008,-0.531349003314972,125.637313842773,-206.847778320313,-1.71117794513702,120.300788879395,-238.984924316406,15.218391418457,132.393981933594,-243.444366455078,23.3339862823486,131.273880004883,-243.451354980469,40.6034774780273,108.593643188477,-233.56037902832,9.32962417602539,132.435974121094,-228.461898803711,-57.3805236816406,83.0085372924805,-210.187103271484,-46.7360763549805,108.485633850098,-214.79655456543,-47.9316940307617,103.332130432129,-200.878204345703,-43.4231567382813,117.172485351563,-195.20263671875,-13.7737503051758,113.621131896973,-192.124328613281,-16.6541328430176,117.145484924316,-222.14826965332,-52.5883522033691,93.6894836425781,-234.028427124023,-55.5225410461426,53.9530906677246,-230.121047973633,-51.4207382202148,29.1315593719482,-231.733215332031,-55.2820167541504,39.2946548461914,-234.017425537109,-59.2604064941406,47.6231689453125,-234.160446166992,-59.8065605163574,58.693058013916,-229.43098449707,-64.2500915527344,79.0807571411133,-199.195022583008,-6.4783148765564,112.497024536133,-199.964111328125,-5.03282308578491,117.025466918945,-237.954833984375,16.2370910644531,137.524490356445,-244.602462768555,27.9977436065674,132.877029418945,-242.637283325195,24.4014892578125,136.606399536133,-244.98551940918,27.9841423034668,127.115463256836,-245.097534179688,32.4659805297852,121.578918457031,-244.637481689453,37.9471206665039,117.218490600586,-227.168762207031,4.9315128326416,131.93293762207,-241.56217956543,53.6896591186523,110.099792480469,-225.79963684082,-59.5674362182617,87.6837921142578,-205.744674682617,-43.3512496948242,112.68204498291,-217.932861328125,-53.901782989502,99.2776336669922,-195.738693237305,-45.0077095031738,121.356895446777,-194.544570922852,-33.3776702880859,119.927749633789,-196.947799682617,-8.19796276092529,114.253196716309,-190.092132568359,-23.4426956176758,120.284790039063,-230.730117797852,-56.474536895752,31.6848087310791,\r\n-233.312377929688,-63.7518501281738,65.7741470336914,-233.723403930664,-64.0211715698242,58.7181549072266,-231.828216552734,-64.1467895507813,72.0273590087891,-217.802841186523,1.24685204029083,130.493804931641,-203.283432006836,-3.2061140537262,122.632019042969,-233.769409179688,10.9137687683105,136.81640625,-239.215957641602,19.8633460998535,139.626678466797,-242.438262939453,48.6034622192383,114.573234558105,-228.717910766602,6.57657480239868,135.788314819336,-203.960479736328,-47.5314559936523,114.981269836426,-206.92578125,-52.198413848877,112.068984985352,-213.928466796875,-52.0959053039551,104.264221191406,-191.752304077148,-39.4570693969727,123.810134887695,-191.575286865234,-11.5376310348511,118.328598022461,-194.237533569336,-9.45194625854492,116.544425964355,-188.627990722656,-17.7999458312988,120.575820922852,-223.104370117188,-60.1797981262207,91.606086730957,-234.166442871094,-59.8395614624023,52.3486328125,-229.689025878906,-55.7272644042969,28.2930774688721,-231.72721862793,-59.4545249938965,35.6493988037109,-233.193359375,-60.4578247070313,41.9791145324707,-229.343978881836,-68.7975463867188,75.8615341186523,-209.169998168945,-0.347725987434387,132.742004394531,-197.176834106445,-6.0107889175415,118.997657775879,-232.510299682617,12.2140970230103,141.552886962891,-234.642486572266,17.3669013977051,144.71418762207,-244.538467407227,31.0410423278809,135.80632019043,-245.542556762695,32.1299476623535,128.45458984375,-239.867004394531,23.8460369110107,142.007934570313,-245.377548217773,36.4436721801758,129.040649414063,-244.032424926758,45.1417236328125,125.772323608398,-217.870864868164,2.28449392318726,136.440383911133,-241.369171142578,53.8821792602539,116.28239440918,-224.060455322266,-65.8940582275391,88.5454788208008,-215.060592651367,-65.1298828125,100.961898803711,-193.41845703125,-46.7192764282227,123.81413269043,-202.449356079102,-54.6181526184082,115.987373352051,-188.324966430664,-35.6676940917969,125.237281799316,-189.169036865234,-13.4762210845947,120.281791687012,-185.355667114258,-18.9188537597656,122.909049987793,\r\n-233.665405273438,-64.019172668457,46.3430442810059,-229.425994873047,-60.4213218688965,25.4754009246826,-230.615112304688,-64.5414276123047,26.8642349243164,-232.328277587891,-68.8488464355469,61.3270111083984,-231.367172241211,-68.5557250976563,68.8295516967773,-233.591400146484,-64.6039352416992,52.4028396606445,-226.596710205078,-70.0909652709961,81.436882019043,-208.666961669922,0.73149698972702,139.261657714844,-198.635971069336,-4.4286642074585,124.825233459473,-229.219970703125,8.44224739074707,139.967712402344,-236.161651611328,23.0259571075439,147.015411376953,-241.136138916016,27.7369174957275,142.365951538086,-243.264343261719,48.8295822143555,126.515403747559,-222.974349975586,4.6907901763916,138.537582397461,-240.713088989258,57.8061637878418,110.322814941406,-241.52717590332,54.0501937866211,122.138977050781,-207.1748046875,-57.0521926879883,111.475929260254,-210.521133422852,-63.2006912231445,106.700454711914,-201.054214477539,-59.0894889831543,117.761543273926,-188.258941650391,-49.1108093261719,129.667709350586,-184.815612792969,-30.6448020935059,126.01335144043,-189.934112548828,-8.68527126312256,122.283988952637,-193.192428588867,-7.37275218963623,120.218780517578,-185.663696289063,-26.0732555389404,124.012153625488,-185.964736938477,-13.9795703887939,122.506004333496,-216.905746459961,-68.4322052001953,97.6711807250977,-233.282363891602,-64.0511779785156,40.8164024353027,-228.715911865234,-72.863639831543,71.9673538208008,-226.440704345703,-74.8467330932617,76.6944198608398,-199.926086425781,-2.18996500968933,136.320358276367,-195.391647338867,-5.3298921585083,123.441093444824,-230.476089477539,14.3932104110718,147.072418212891,-226.531692504883,9.37740898132324,144.97721862793,-230.259063720703,19.4525051116943,151.86589050293,-244.853500366211,36.354362487793,134.704208374023,-242.439254760742,32.0298385620117,141.644882202148,-244.328460693359,43.2381362915039,132.660003662109,-218.132873535156,3.54596710205078,141.106842041016,-239.807006835938,59.5063323974609,116.627433776855,-219.771041870117,-74.0662536621094,91.1480407714844,\r\n-212.538330078125,-71.4973068237305,103.818176269531,-194.706588745117,-62.854362487793,126.165374755859,-190.592193603516,-52.8840827941895,128.377578735352,-206.909774780273,-61.7226486206055,111.693954467773,-183.583480834961,-41.4211578369141,131.462890625,-187.171844482422,-9.52507400512695,123.54411315918,-182.28337097168,-21.648021697998,124.894241333008,-182.396377563477,-14.8522548675537,124.112167358398,-218.162887573242,-73.4557037353516,93.9954147338867,-232.745315551758,-68.6858291625977,46.6700782775879,-232.606292724609,-68.7446365356445,39.3105583190918,-229.90803527832,-72.7296295166016,66.0834808349609,-232.290267944336,-68.4929122924805,54.6154556274414,-224.621520996094,-75.4203948974609,80.8397216796875,-200.595169067383,-0.541206002235413,142.662994384766,-194.54557800293,-2.6608510017395,138.719589233398,-192.614379882813,-4.38333892822266,129.599700927734,-224.379486083984,6.43311023712158,141.74690246582,-232.04524230957,23.5323066711426,152.38493347168,-243.257354736328,36.0726356506348,140.478775024414,-238.482879638672,32.3594703674316,147.822494506836,-235.3515625,27.7904243469238,150.589767456055,-242.342254638672,51.4837455749512,129.92073059082,-206.89176940918,2.01609706878662,144.798187255859,-239.245956420898,62.2561988830566,110.597839355469,-239.938018798828,58.5192337036133,124.082168579102,-221.294189453125,-75.394287109375,87.2280502319336,-195.824691772461,-66.4678192138672,125.336288452148,-188.966018676758,-56.4639358520508,130.541793823242,-201.955291748047,-67.439208984375,117.915565490723,-181.681304931641,-44.9970092773438,134.067138671875,-181.831314086914,-28.4006824493408,126.948448181152,-178.446990966797,-35.6110916137695,132.662994384766,-189.198059082031,-6.03021097183228,126.183372497559,-192.175338745117,-5.65980386734009,125.236282348633,-183.696502685547,-10.0521850585938,124.654220581055,-211.643249511719,-79.6246032714844,104.581253051758,-215.888656616211,-74.7952346801758,97.6857757568359,-231.574203491211,-70.2309799194336,51.5778579711914,-230.858123779297,-68.5543212890625,28.6021060943604,\r\n-230.697113037109,-72.420295715332,60.7692565917969,-230.278060913086,-72.326789855957,54.7289657592773,-224.618515014648,-82.006233215332,66.7331390380859,-222.526321411133,-82.1648483276367,76.1417617797852,-193.940505981445,-1.38590598106384,144.069122314453,-228.814926147461,15.9046592712402,150.344741821289,-225.278579711914,11.9753742218018,149.505661010742,-218.840957641602,5.41126012802124,145.360244750977,-226.688720703125,24.0221538543701,157.064392089844,-243.453369140625,41.8054962158203,137.448471069336,-241.374160766602,50.0817108154297,136.637390136719,-212.728363037109,4.35711717605591,146.407348632813,-235.559585571289,71.2141799926758,109.99878692627,-236.649688720703,67.3843994140625,115.962364196777,-218.172897338867,-80.5128860473633,89.6571960449219,-217.368804931641,-79.1929626464844,93.0642242431641,-203.898483276367,-73.6762161254883,115.830352783203,-194.077529907227,-70.6990280151367,127.107460021973,-181.420288085938,-50.9397926330566,135.66130065918,-185.974731445313,-6.22875022888184,126.897438049316,-178.950042724609,-26.2712745666504,127.704513549805,-179.028045654297,-17.5365180969238,125.292282104492,-179.103057861328,-10.4878282546997,125.191268920898,-203.968490600586,-80.3303756713867,115.196296691895,-231.037139892578,-73.5290985107422,45.0645217895508,-231.435180664063,-72.9435501098633,39.8475112915039,-230.034057617188,-68.9360504150391,23.0834655761719,-225.42658996582,-81.1979598999023,60.8419647216797,-219.543014526367,-86.4786758422852,77.3490905761719,-219.846038818359,-80.1112518310547,85.4575805664063,-197.907897949219,0.593424022197723,147.390441894531,-191.203231811523,-2.45987105369568,140.095733642578,-222.255294799805,14.2409963607788,154.168121337891,-219.427017211914,9.7800989151001,151.659851074219,-218.789947509766,7.55926084518433,149.130615234375,-231.647201538086,28.5934009552002,154.387130737305,-222.416305541992,18.6295261383057,157.21940612793,-241.688201904297,40.4640617370605,142.515975952148,-233.007339477539,32.4285774230957,153.760070800781,-239.449966430664,36.5884857177734,146.675369262695,\r\n-237.354766845703,64.8971633911133,125.232269287109,-239.065933227539,56.6613502502441,135.262252807617,-206.179718017578,4.06598806381226,148.920593261719,-191.029220581055,-66.1968841552734,129.711700439453,-200.529144287109,-76.7414245605469,119.83674621582,-183.51448059082,-57.0387878417969,134.840209960938,-177.120864868164,-47.0696105957031,137.433471679688,-175.924743652344,-40.527172088623,136.072326660156,-186.675796508789,-4.18978118896484,130.876831054688,-182.337371826172,-6.04386186599731,127.42049407959,-209.493041992188,-82.7311096191406,107.063491821289,-214.744552612305,-83.9245223999023,97.8277893066406,-226.970748901367,-77.6273040771484,51.3477363586426,-230.004043579102,-73.1072616577148,31.1631565093994,-229.794021606445,-72.9391479492188,23.7583312988281,-224.065460205078,-86.5870819091797,58.7144546508789,-221.223175048828,-86.7331008911133,72.8477478027344,-192.776382446289,0.391887009143829,148.253540039063,-200.246139526367,3.17481088638306,150.217727661133,-188.466979980469,-0.815622985363007,144.697189331055,-213.388412475586,6.96947288513184,150.574752807617,-222.672317504883,23.6514167785645,159.327621459961,-224.738525390625,28.2954730987549,159.685653686523,-240.105026245117,46.6127662658691,142.365951538086,-235.49658203125,37.7456016540527,151.356842041016,-237.707794189453,61.7429504394531,132.053955078125,-235.95263671875,60.749755859375,139.148635864258,-235.271560668945,71.7711334228516,116.473419189453,-218.101867675781,-84.327766418457,85.7079010009766,-216.722732543945,-86.5515823364258,91.5660781860352,-195.929702758789,-77.4450912475586,124.458206176758,-192.055328369141,-73.4500961303711,128.494598388672,-180.257171630859,-58.5890426635742,137.173446655273,-177.24787902832,-51.0995101928711,138.126541137695,-174.161575317383,-31.8925266265869,133.216064453125,-175.633712768555,-19.9125518798828,126.802429199219,-175.944732666016,-14.8498554229736,125.39429473877,-178.873031616211,-5.08687782287598,127.506500244141,-204.486541748047,-86.8306045532227,112.521026611328,-211.584228515625,-87.4061660766602,102.245018005371,\r\n-229.666000366211,-76.441291809082,41.2762489318848,-225.675628662109,-82.1537475585938,46.2803382873535,-225.493606567383,-81.8290176391602,36.8392143249512,-224.732528686523,-82.7698135375977,57.4470329284668,-223.385391235352,-86.2753524780273,65.033073425293,-220.600112915039,-90.0736236572266,71.5624160766602,-217.734848022461,-87.8256072998047,80.8409194946289,-194.13752746582,3.22065591812134,152.122909545898,-187.141845703125,-2.01980805397034,140.437759399414,-217.122787475586,13.2655000686646,155.964279174805,-224.666519165039,32.3491706848145,160.248718261719,-219.384002685547,23.5395088195801,160.737762451172,-237.945831298828,40.6315841674805,148.173522949219,-237.406768798828,47.0876121520996,146.751388549805,-231.949234008789,36.3989677429199,154.624145507813,-236.549697875977,66.4339065551758,129.698699951172,-235.887619018555,63.9419631958008,136.53337097168,-205.003601074219,7.13263893127441,152.304931640625,-207.453842163086,7.64967012405396,152.562942504883,-234.607498168945,75.3048782348633,114.740249633789,-235.732604980469,70.7631378173828,126.372383117676,-199.641067504883,-81.9159240722656,119.755737304688,-180.975250244141,-66.3976058959961,136.569396972656,-172.7734375,-51.6718635559082,139.797698974609,-173.087463378906,-39.699390411377,137.007431030273,-174.70964050293,-24.1045627593994,128.865631103516,-178.563995361328,-2.78457307815552,131.637908935547,-173.975555419922,-10.6575441360474,124.658218383789,-173.84553527832,-6.03542184829712,125.029258728027,-214.083480834961,-87.9794235229492,97.603874206543,-226.23567199707,-81.5786972045898,41.9448165893555,-225.287582397461,-81.3678741455078,52.2821273803711,-224.979553222656,-82.2422561645508,31.9600353240967,-228.476898193359,-77.1998672485352,24.2743816375732,-223.266372680664,-90.8893051147461,61.870964050293,-216.930770874023,-92.3882598876953,77.2396697998047,-221.019165039063,-95.3891448974609,65.9990768432617,-186.962829589844,1.28657603263855,149.284622192383,-188.501983642578,3.52090501785278,153.435043334961,-196.665771484375,6.60955810546875,154.843185424805,\r\n-182.374374389648,1.00275802612305,147.697479248047,-217.084777832031,16.8395500183105,158.266510009766,-213.774444580078,10.2253017425537,154.202117919922,-225.428588867188,36.7131958007813,159.693649291992,-220.865142822266,28.2008628845215,161.419815063477,-221.711227416992,33.4071731567383,161.608840942383,-233.979431152344,58.6679496765137,144.276138305664,-228.500900268555,41.2052345275879,156.967391967773,-235.223556518555,46.153923034668,149.85368347168,-235.567581176758,68.2639923095703,133.158050537109,-233.391372680664,63.9368667602539,142.020919799805,-201.017196655273,7.33700895309448,153.319030761719,-235.034545898438,75.2961807250977,124.891242980957,-216.143692016602,-91.6962890625,88.0314331054688,-195.744689941406,-82.1708526611328,123.314086914063,-189.818115234375,-77.5901031494141,129.123657226563,-181.462295532227,-72.096565246582,135.429275512695,-178.583999633789,-66.5501251220703,137.794494628906,-177.326873779297,-58.2917098999023,138.512573242188,-171.382293701172,-44.8578948974609,139.334655761719,-166.78385925293,-31.1825561523438,135.763305664063,-167.741943359375,-25.6884174346924,132.913024902344,-171.931365966797,-15.5801267623901,126.238372802734,-173.790542602539,-3.41921496391296,127.088455200195,-203.180404663086,-91.027717590332,111.951972961426,-197.618881225586,-86.4944763183594,120.039772033691,-210.684158325195,-91.8404006958008,101.349937438965,-213.49543762207,-92.2327423095703,96.0319137573242,-224.451507568359,-86.7368011474609,44.0819206237793,-224.548522949219,-86.0297317504883,48.9267997741699,-228.023849487305,-77.5851974487305,28.8807334899902,-223.640426635742,-86.2636566162109,32.8415222167969,-224.01545715332,-91.3036499023438,55.5529479980469,-218.615921020508,-97.5136566162109,70.0347671508789,-214.769561767578,-95.9443969726563,80.1918640136719,-192.341354370117,6.75293207168579,156.605346679688,-174.783630371094,0.546265006065369,141.327850341797,-211.950286865234,13.8664588928223,157.244400024414,-215.10758972168,21.1683731079102,160.909774780273,-217.856857299805,26.4922962188721,162.077880859375,\r\n-230.288070678711,57.5156326293945,150.455749511719,-233.063339233398,45.1933288574219,152.276916503906,-234.074447631836,75.6329116821289,131.44189453125,-231.927230834961,73.7383270263672,139.169631958008,-201.605255126953,11.8933658599854,155.964279174805,-234.211456298828,84.2340545654297,120.95085144043,-234.436477661133,77.8057250976563,128.04655456543,-214.614532470703,-95.6671752929688,83.6296997070313,-172.034362792969,-61.3430137634277,139.812698364258,-168.92805480957,-47.1096153259277,140.24674987793,-163.492523193359,-14.0121726989746,129.040649414063,-169.165084838867,-10.4660263061523,125.494300842285,-169.915161132813,-5.99768781661987,125.194274902344,-167.589935302734,0.305251002311707,131.60090637207,-225.896636962891,-81.6934051513672,25.9666481018066,-223.349395751953,-86.6852951049805,27.2893772125244,-224.333480834961,-91.0843276977539,48.9407997131348,-222.809326171875,-95.4110488891602,59.1619033813477,-213.865463256836,-100.148811340332,76.9716491699219,-219.641021728516,-98.9082870483398,65.553825378418,-183.782516479492,5.30957984924316,158.185501098633,-187.625885009766,7.68477296829224,160.790756225586,-195.531661987305,9.14763641357422,157.861465454102,-198.70198059082,10.5882377624512,157.023391723633,-176.416778564453,2.60349488258362,149.857696533203,-212.006286621094,17.9503593444824,159.720657348633,-223.706420898438,41.4404602050781,160.106704711914,-217.021774291992,32.0510406494141,162.541931152344,-230.514099121094,64.0955810546875,146.892395019531,-227.420791625977,46.1554260253906,156.72135925293,-230.330078125,53.7390632629395,151.998901367188,-232.38427734375,78.1090545654297,134.779205322266,-204.748565673828,15.2050895690918,157.567443847656,-234.193450927734,79.7342147827148,112.348014831543,-214.864547729492,-95.0794143676758,87.237548828125,-213.447418212891,-95.852294921875,91.3909606933594,-189.931106567383,-88.9252090454102,124.896240234375,-190.136138916016,-83.0110321044922,127.101455688477,-178.972045898438,-80.9344253540039,134.678192138672,-173.140472412109,-78.0416412353516,138.470581054688,\r\n-173.321502685547,-72.0014572143555,139.256652832031,-168.016967773438,-61.8991661071777,141.032821655273,-162.356414794922,-37.5173759460449,138.854614257813,-164.464630126953,-52.1887168884277,141.167831420898,-164.073577880859,-34.6613960266113,137.771499633789,-160.045181274414,-22.6254177093506,134.961227416992,-164.387603759766,-9.90130043029785,126.93643951416,-167.503921508789,-1.83177900314331,127.383483886719,-203.027389526367,-96.7083740234375,108.287612915039,-195.970703125,-90.3397521972656,119.619720458984,-208.935974121094,-96.6966781616211,100.386840820313,-223.024368286133,-90.5249710083008,32.9827346801758,-223.847442626953,-90.8906021118164,40.2496490478516,-225.386596679688,-81.9602355957031,20.8681488037109,-223.348388671875,-95.4144515991211,52.8368797302246,-220.988159179688,-99.3835372924805,59.2430114746094,-211.799270629883,-104.021194458008,76.7282257080078,-215.593627929688,-103.144111633301,69.0858688354492,-212.069274902344,-101.136909484863,80.6403045654297,-179.583099365234,3.85075688362122,155.02018737793,-191.588287353516,11.5312299728394,163.798049926758,-167.140884399414,2.40266489982605,138.898620605469,-173.610504150391,4.41265201568604,153.341018676758,-220.207092285156,41.0052185058594,161.607833862305,-212.241302490234,22.3695907592773,161.594833374023,-213.404418945313,28.7264156341553,162.5859375,-217.916854858398,37.3216590881348,162.309906005859,-227.906829833984,59.342113494873,153.320022583008,-231.642196655273,92.068115234375,127.432495117188,-232.975341796875,92.0968246459961,122.189971923828,-226.661712646484,79.0501403808594,146.052307128906,-229.766021728516,87.7514953613281,134.908218383789,-202.169311523438,17.6419277191162,160.397720336914,-233.438385009766,95.0367126464844,115.49031829834,-234.003433227539,90.5236740112305,111.610946655273,-212.305313110352,-99.0992126464844,88.1848449707031,-211.275207519531,-97.4941482543945,95.3858489990234,-184.444580078125,-84.7120971679688,130.130752563477,-170.130172729492,-72.3410873413086,140.89680480957,-159.159103393555,-42.5935745239258,140.069732666016,\r\n-157.119903564453,-28.0439491271973,138.208541870117,-159.483139038086,-11.1086893081665,129.141662597656,-166.23779296875,-5.89057683944702,125.661315917969,-162.63444519043,2.65605998039246,131.454895019531,-198.495956420898,-95.0296173095703,114.450218200684,-222.240280151367,-90.8731002807617,27.970344543457,-223.904434204102,-94.1285247802734,48.363941192627,-221.416198730469,-99.2026214599609,55.0589981079102,-216.884750366211,-103.533149719238,64.6955413818359,-210.10009765625,-103.174110412598,83.4837799072266,-177.569900512695,5.89132690429688,158.955581665039,-183.164459228516,7.59059381484985,161.913864135742,-186.530776977539,10.4187211990356,164.805160522461,-205.509643554688,20.8981475830078,160.491729736328,-221.355194091797,45.198127746582,161.510833740234,-208.743957519531,22.6971244812012,161.152786254883,-209.035995483398,33.0009346008301,162.974975585938,-213.722442626953,36.8303070068359,163.109985351563,-224.302490234375,67.8812561035156,156.618347167969,-224.330490112305,46.5800666809082,159.192611694336,-227.178756713867,55.7062606811523,154.895172119141,-226.439697265625,71.7690353393555,150.82177734375,-228.702911376953,82.3317642211914,140.743789672852,-197.176834106445,15.906457901001,163.833068847656,-187.08984375,-95.0316162109375,124.026153564453,-179.014038085938,-86.295654296875,133.249053955078,-172.141372680664,-83.958625793457,137.800506591797,-166.876861572266,-67.0619659423828,142.440963745117,-162.386413574219,-54.1746101379395,141.755889892578,-159.697158813477,-34.4270706176758,138.934616088867,-160.671249389648,-6.07046508789063,126.811431884766,-162.814453125,-2.43849897384644,126.234367370605,-160.019180297852,2.03099894523621,128.084548950195,-206.192718505859,-99.7462768554688,101.498954772949,-198.55696105957,-98.7459716796875,111.479927062988,-190.240142822266,-97.6537704467773,119.748741149902,-207.984878540039,-100.984893798828,97.018310546875,-223.301391601563,-95.0835189819336,42.8190994262695,-222.17626953125,-86.645393371582,21.459005355835,-222.265289306641,-95.2947387695313,33.8886222839355,\r\n-221.626220703125,-98.8550872802734,48.3953437805176,-220.1220703125,-100.906890869141,51.698070526123,-217.783843994141,-103.732162475586,60.6357460021973,-206.906784057617,-110.668838500977,76.7248153686523,-206.244720458984,-110.91487121582,78.6194076538086,-208.390930175781,-111.212898254395,68.0832748413086,-189.603088378906,13.5918321609497,166.982376098633,-161.523330688477,5.56725597381592,140.580780029297,-168.233993530273,5.00244998931885,149.055618286133,-218.55192565918,45.2569313049316,163.145980834961,-215.164581298828,41.1453323364258,163.58203125,-208.061904907227,27.7542190551758,162.292907714844,-224.40950012207,63.4754219055176,158.136505126953,-228.702911376953,93.0032196044922,133.243057250977,-224.871551513672,76.9477386474609,150.415740966797,-224.944549560547,84.5394821166992,145.491256713867,-226.739730834961,91.5629730224609,137.836517333984,-198.178924560547,20.1228713989258,165.965255737305,-203.12141418457,22.6044158935547,162.226898193359,-207.782867431641,-103.328125,92.3253555297852,-180.454177856445,-90.9962158203125,130.813827514648,-165.46272277832,-82.656005859375,142.591979980469,-165.027679443359,-77.2970733642578,144.125122070313,-163.146484375,-68.7577362060547,145.23323059082,-161.338317871094,-57.9052734375,143.298049926758,-153.053497314453,-37.0965347290039,140.728790283203,-151.048309326172,-41.3450508117676,141.793899536133,-153.05549621582,-31.8031158447266,140.289749145508,-157.526947021484,6.68800497055054,133.718109130859,-201.955291748047,-101.682960510254,104.941291809082,-191.687286376953,-101.511947631836,115.435317993164,-219.933059692383,-91.0782241821289,21.4553050994873,-221.63623046875,-95.4429550170898,29.2398681640625,-218.177886962891,-103.519149780273,55.3607292175293,-211.378219604492,-109.492729187012,62.6771469116211,-203.406448364258,-109.85376739502,88.7205963134766,-174.496597290039,9.24009609222412,163.781051635742,-171.389297485352,6.90554714202881,157.949478149414,-176.775833129883,11.4736242294312,166.985366821289,-183.532485961914,14.2081928253174,169.021560668945,\r\n-193.373443603516,14.9653663635254,166.027282714844,-158.994094848633,7.83937788009644,141.860916137695,-164.282608032227,6.11840915679932,147.330444335938,-222.815338134766,50.2929267883301,160.416732788086,-219.638031005859,50.1165084838867,163.625030517578,-209.708053588867,36.8470115661621,163.742050170898,-204.284515380859,30.8409214019775,163.809051513672,-211.381225585938,41.1831359863281,165.233200073242,-223.286376953125,72.0207595825195,156.101303100586,-221.394195556641,67.4209060668945,160.958770751953,-228.40788269043,97.3811416625977,130.299774169922,-222.99836730957,78.1842575073242,152.511947631836,-224.994552612305,89.265251159668,141.999908447266,-192.839401245117,18.4183044433594,168.716537475586,-203.984481811523,26.7481212615967,163.033981323242,-184.035537719727,-103.179107666016,121.818946838379,-179.198059082031,-95.2690353393555,129.81672668457,-169.070068359375,-90.6939849853516,137.690505981445,-164.202590942383,-73.855842590332,144.871200561523,-160.231216430664,-63.3341064453125,145.859298706055,-154.051605224609,-47.0346069335938,142.648986816406,-157.927978515625,-1.51779901981354,126.156364440918,-155.107711791992,6.43975114822388,129.691711425781,-203.124404907227,-103.825172424316,100.74787902832,-195.872695922852,-105.679351806641,107.217506408691,-188.745010375977,-104.499237060547,116.278396606445,-200.506149291992,-111.466926574707,92.3702545166016,-220.107070922852,-96.1154174804688,24.9567489624023,-220.651138305664,-99.3196334838867,30.8255252838135,-220.264083862305,-99.9929962158203,38.8342094421387,-217.151779174805,-103.95418548584,49.2748336791992,-211.687255859375,-109.560737609863,55.2108116149902,-201.931289672852,-115.991371154785,81.7644119262695,-204.771575927734,-114.63623046875,71.596321105957,-208.657943725586,-113.080078125,61.3326148986816,-186.70280456543,17.7476387023926,171.102767944336,-165.786743164063,8.2698802947998,154.408126831055,-216.768753051758,48.989200592041,165.651229858398,-206.050704956055,36.8981170654297,164.79216003418,-213.072387695313,45.6348724365234,166.786346435547,\r\n-222.575317382813,58.763355255127,161.386825561523,-220.134078979492,72.9521484375,159.443618774414,-221.02116394043,62.1569938659668,162.854949951172,-225.64762878418,97.5597610473633,134.524185180664,-220.509124755859,88.618782043457,148.544555664063,-223.335388183594,93.3637466430664,141.140838623047,-198.09391784668,24.1966705322266,167.887466430664,-178.667007446289,-108.778656005859,123.297088623047,-159.110092163086,-89.2353439331055,143.687072753906,-160.515228271484,-79.2876663208008,145.93830871582,-157.705947875977,-72.8565444946289,147.843490600586,-159.28010559082,-67.9546585083008,147.081420898438,-155.971786499023,-54.9848861694336,144.939208984375,-148.115020751953,-36.7629013061523,141.299850463867,-151.437347412109,-49.0687065124512,144.651168823242,-157.344924926758,2.20316600799561,126.748420715332,-152.034408569336,12.3573112487793,135.698303222656,-200.302139282227,-109.112693786621,96.7674865722656,-217.76383972168,-95.4732513427734,18.5539207458496,-220.473098754883,-99.7437744140625,35.0432357788086,-215.81965637207,-105.280311584473,43.0588226318359,-199.952102661133,-120.365791320801,76.0068511962891,-206.326736450195,-114.542221069336,66.1068801879883,-200.59016418457,-114.538223266602,87.4056701660156,-169.085067749023,9.61317157745361,161.703857421875,-170.604217529297,12.5323276519775,166.502319335938,-178.078948974609,14.3820085525513,169.476608276367,-162.379409790039,9.00508213043213,151.583862304688,-219.365997314453,54.5072402954102,164.761154174805,-206.065704345703,40.1630363464355,166.974365234375,-201.96630859375,36.5299797058105,167.263397216797,-208.680953979492,46.6417694091797,170.333694458008,-221.454208374023,76.2545700073242,155.977279663086,-216.43571472168,63.3456077575684,166.730331420898,-215.500610351563,72.1473693847656,164.05908203125,-221.700225830078,97.3673477172852,139.812698364258,-191.809295654297,23.7363243103027,171.816848754883,-182.161346435547,-111.721946716309,118.314598083496,-177.375900268555,-101.496948242188,128.06755065918,-169.84114074707,-95.4299545288086,135.422271728516,\r\n-158.085006713867,-94.2769393920898,141.970916748047,-150.657272338867,-63.3495063781738,149.469650268555,-147.335952758789,-55.1578063964844,148.690567016602,-146.651870727539,-41.6116790771484,142.93000793457,-155.181716918945,12.1384887695313,143.151031494141,-193.468460083008,-108.639640808105,107.148498535156,-196.860794067383,-110.806854248047,99.9337997436523,-218.826950073242,-99.9279937744141,24.1827735900879,-217.890853881836,-103.989189147949,32.2720642089844,-217.475814819336,-103.769172668457,36.8125114440918,-212.870376586914,-108.323616027832,47.990608215332,-194.988616943359,-126.533401489258,76.8616333007813,-201.690277099609,-119.470710754395,71.4072036743164,-209.022994995117,-114.092178344727,53.0307006835938,-206.342727661133,-118.189582824707,60.1444969177246,-193.813491821289,-121.374893188477,92.5916748046875,-173.919540405273,15.507719039917,169.956665039063,-175.905746459961,19.8914489746094,173.045959472656,-188.095932006836,22.3232879638672,173.025970458984,-158.536041259766,12.7456493377686,152.3779296875,-160.948272705078,12.8182563781738,156.581344604492,-210.317108154297,54.1874084472656,171.980850219727,-209.751068115234,50.2331199645996,171.448806762695,-197.857894897461,28.5399971008301,169.281600952148,-199.060012817383,36.2785568237305,169.429611206055,-219.701034545898,58.6880531311035,164.714141845703,-218.017868041992,83.8754196166992,154.43913269043,-214.896575927734,67.7697372436523,166.572326660156,-215.369613647461,78.069953918457,160.643737792969,-218.043869018555,98.8490905761719,142.399963378906,-191.728302001953,27.8833312988281,173.247985839844,-196.151718139648,-113.943168640137,97.5359649658203,-186.30876159668,-112.351005554199,113.312103271484,-177.831939697266,-113.810157775879,120.752838134766,-174.508605957031,-111.041877746582,124.774230957031,-156.364837646484,-86.4379653930664,145.748275756836,-153.942581176758,-90.9360122680664,145.031219482422,-156.476837158203,-79.1018524169922,147.400451660156,-154.153610229492,-68.4067077636719,148.906600952148,-146.606872558594,-50.210319519043,147.093414306641,\r\n-150.430252075195,16.9431591033936,140.890808105469,-217.103790283203,-99.9738998413086,18.6447315216064,-217.768844604492,-103.996192932129,28.2071666717529,-212.342315673828,-109.408721923828,40.0521278381348,-211.222198486328,-110.066787719727,51.0457038879395,-196.577774047852,-122.227981567383,83.677604675293,-198.353942871094,-124.642211914063,72.1344757080078,-203.136413574219,-122.989051818848,62.8621635437012,-193.744491577148,-118.00456237793,97.4091491699219,-166.386810302734,14.1045818328857,165.601226806641,-168.456008911133,17.4270076751709,169.662628173828,-180.003158569336,23.204273223877,174.434097290039,-165.270706176758,12.4016151428223,161.948883056641,-201.232223510742,41.4551620483398,170.154678344727,-202.912399291992,45.0606155395508,171.579818725586,-206.713760375977,50.567455291748,173.020965576172,-210.48112487793,63.4207153320313,171.288803100586,-210.870178222656,58.7327575683594,171.712829589844,-210.145095825195,67.4529037475586,170.236694335938,-209.106994628906,79.2439651489258,164.674133300781,-217.396820068359,91.2504425048828,149.578659057617,-189.39306640625,25.8622341156006,173.836044311523,-183.380477905273,-116.636428833008,113.055084228516,-168.856048583984,-99.5234527587891,134.013137817383,-153.966583251953,-96.8521881103516,142.222946166992,-151.784378051758,-76.8616333007813,148.479553222656,-151.993408203125,-72.9667510986328,149.098617553711,-145.03271484375,-55.4221305847168,149.420639038086,-147.326950073242,-67.8301467895508,150.495758056641,-142.771484375,-50.3751373291016,148.126525878906,-155.553741455078,17.6693325042725,155.202209472656,-193.752502441406,-113.243095397949,102.490043640137,-189.754104614258,-116.318397521973,105.515342712402,-216.119674682617,-104.363220214844,20.3347969055176,-212.861358642578,-111.102890014648,29.2184658050537,-209.572036743164,-113.359107971191,46.5344619750977,-191.882308959961,-128.127563476563,81.8117218017578,-196.049728393555,-127.45149230957,71.9026565551758,-205.633651733398,-122.197967529297,53.1991195678711,-205.082611083984,-121.872940063477,58.4300308227539,\r\n-191.884307861328,-124.849235534668,90.0993347167969,-189.434066772461,-121.839942932129,99.4394454956055,-171.810348510742,19.3194923400879,172.163879394531,-175.624710083008,24.2999801635742,175.186172485352,-184.132553100586,27.907735824585,175.472198486328,-158.760055541992,17.6282272338867,160.577743530273,-195.817687988281,37.021728515625,171.731826782227,-194.984619140625,32.8619194030762,172.040863037109,-198.103927612305,41.4397583007813,171.387802124023,-210.947174072266,86.5316772460938,158.55354309082,-208.445922851563,72.6009216308594,168.905548095703,-206.881774902344,95.9033966064453,154.111099243164,-191.548278808594,33.0107345581055,174.142074584961,-172.501403808594,-116.217391967773,122.776031494141,-175.999755859375,-118.349594116211,118.599624633789,-169.231079101563,-109.803756713867,128.054550170898,-160.62825012207,-99.8695907592773,137.818511962891,-153.029495239258,-86.0872344970703,146.598373413086,-149.485168457031,-95.2766418457031,143.817092895508,-145.876800537109,-62.0265769958496,150.442749023438,-153.384536743164,22.3740921020508,156.890380859375,-214.110488891602,-104.994293212891,14.6610412597656,-214.110488891602,-109.080688476563,25.9885501861572,-210.480133056641,-113.958168029785,32.8078193664551,-209.779067993164,-113.922164916992,39.0465316772461,-191.805297851563,-130.308776855469,75.0456619262695,-195.969711303711,-128.951629638672,68.3682022094727,-200.354141235352,-126.501396179199,63.6396408081055,-207.747863769531,-117.864547729492,50.1501159667969,-202.715362548828,-126.29337310791,56.0045928955078,-163.771545410156,17.5141162872314,166.858352661133,-170.444198608398,22.7776317596436,173.663024902344,-178.941040039063,27.7458171844482,176.279281616211,-206.395736694336,55.1164016723633,174.07405090332,-199.751068115234,51.2836227416992,174.763137817383,-207.159805297852,60.1003913879395,173.64501953125,-205.930679321289,64.78955078125,173.281982421875,-206.122695922852,69.1047744750977,171.72282409668,-204.694564819336,76.6843185424805,168.757537841797,-206.573745727539,85.1866455078125,162.431930541992,\r\n-187.098831176758,33.0652389526367,175.840240478516,-184.539596557617,-120.392791748047,107.728561401367,-179.776123046875,-121.139869689941,112.274002075195,-150.013214111328,-89.4627685546875,146.012313842773,-151.852386474609,-105.10230255127,138.274551391602,-147.686981201172,-103.732162475586,140.010726928711,-146.642868041992,-72.9700469970703,149.789672851563,-138.121047973633,-53.8747787475586,149.786682128906,-143.465560913086,-67.7515411376953,150.845779418945,-148.070007324219,21.7912368774414,141.91291809082,-213.45442199707,-109.161697387695,19.9703598022461,-208.668960571289,-117.178482055664,25.5434055328369,-208.590942382813,-117.723533630371,31.2706661224365,-207.648849487305,-118.593620300293,43.4252624511719,-186.320755004883,-132.0439453125,84.458381652832,-188.723983764648,-129.351684570313,86.5662841796875,-200.551147460938,-127.57950592041,59.6540489196777,-205.768676757813,-122.666023254395,45.794189453125,-184.715606689453,-128.812622070313,95.0407180786133,-164.23258972168,22.459400177002,170.762741088867,-174.136566162109,28.4365863800049,176.222274780273,-180.386184692383,31.835018157959,176.948348999023,-157.676956176758,22.3964958190918,163.979080200195,-198.174926757813,46.0386123657227,172.994964599609,-195.035614013672,41.4625625610352,172.740936279297,-205.555648803711,92.2126312255859,157.986480712891,-187.498886108398,37.429370880127,175.972259521484,-158.772064208984,-117.88655090332,127.78052520752,-169.265106201172,-119.829742431641,121.809944152832,-173.608505249023,-123.042053222656,115.760345458984,-160.42822265625,-112.3330078125,130.401779174805,-157.255905151367,-107.413528442383,134.889221191406,-146.323837280273,-99.7945785522461,141.762893676758,-147.669982910156,-90.0891265869141,145.730285644531,-144.952697753906,-82.4615783691406,147.382446289063,-142.882507324219,-72.2565765380859,150.12971496582,-137.050933837891,-58.7594566345215,150.382736206055,-147.020919799805,26.5576038360596,144.059127807617,-212.580337524414,-109.158699035645,16.3544063568115,-208.063903808594,-118.054565429688,36.7350044250488,\r\n-183.74250793457,-136.258346557617,76.4671936035156,-197.153823852539,-129.92073059082,62.4471206665039,-189.760101318359,-134.06413269043,67.3034057617188,-199.796096801758,-129.168655395508,55.4756393432617,-181.606307983398,-124.82022857666,105.52734375,-160.829254150391,22.1792736053467,167.624435424805,-163.737548828125,27.022346496582,172.465896606445,-168.616027832031,27.8463287353516,174.782135009766,-202.342330932617,59.807559967041,175.37419128418,-199.888092041016,53.5046920776367,175.287689208984,-194.537567138672,46.1469192504883,173.764022827148,-198.929000854492,69.884147644043,173.642028808594,-201.099212646484,75.2866744995117,170.755737304688,-200.976196289063,86.0261306762695,164.549118041992,-201.755279541016,94.3381500244141,158.40153503418,-202.266311645508,100.085807800293,153.43603515625,-183.393478393555,39.3389511108398,176.787322998047,-191.399261474609,41.9607124328613,174.274078369141,-168.167984008789,-123.957145690918,118.614631652832,-171.614334106445,-126.972442626953,112.697044372559,-147.073913574219,-113.597129821777,136.091339111328,-142.813507080078,-109.172698974609,139.187637329102,-143.461563110352,-103.983192443848,140.643783569336,-143.954605102539,-96.511962890625,142.872009277344,-137.642990112305,-63.0951843261719,150.302734375,-139.915222167969,-73.3866958618164,149.52766418457,-151.777374267578,26.7199192047119,157.039398193359,-154.665664672852,26.9034366607666,162.64094543457,-209.687057495117,-113.823150634766,17.2655963897705,-210.529144287109,-109.738746643066,11.9371728897095,-205.213607788086,-122.538009643555,30.1331558227539,-205.45263671875,-122.775032043457,36.161548614502,-182.624389648438,-138.267547607422,73.2579803466797,-179.2470703125,-138.389572143555,80.2869720458984,-182.992446899414,-132.788009643555,89.406364440918,-196.158721923828,-131.404876708984,58.8681716918945,-203.09440612793,-126.545394897461,44.432056427002,-199.044006347656,-130.452789306641,49.7009735107422,-178.447982788086,-131.956924438477,98.0084075927734,-158.571044921875,27.3075752258301,168.252487182617,\r\n-173.416488647461,32.6473999023438,176.595321655273,-168.553024291992,32.3265647888184,175.399185180664,-200.025100708008,55.725757598877,175.812240600586,-194.907608032227,55.360523223877,175.798217773438,-199.575057983398,64.7381362915039,175.043167114258,-188.693984985352,46.7817840576172,174.94514465332,-178.172973632813,37.2508506774902,177.168365478516,-151.516357421875,-122.563011169434,127.620506286621,-151.42333984375,-115.468315124512,132.994049072266,-160.598251342773,-124.983245849609,121.569915771484,-137.844009399414,-84.0595397949219,145.802291870117,-143.259552001953,-91.4003601074219,144.552169799805,-134.145645141602,-64.2269973754883,149.814697265625,-147.642974853516,31.4562816619873,149.250625610352,-207.557830810547,-117.527519226074,20.892650604248,-204.155517578125,-122.410995483398,24.8410377502441,-176.828826904297,-141.833908081055,77.1622619628906,-177.337875366211,-134.698196411133,93.9158020019531,-191.033218383789,-135.076232910156,58.8659706115723,-185.94172668457,-137.790496826172,66.2005920410156,-169.664123535156,-131.89892578125,107.572547912598,-160.631240844727,32.4130783081055,171.231781005859,-164.930679321289,30.7891178131104,173.802047729492,-194.301544189453,60.5599365234375,176.178268432617,-191.30924987793,51.2608222961426,175.020141601563,-197.683883666992,79.2132568359375,169.49560546875,-195.006622314453,68.6422271728516,174.31608581543,-197.981903076172,91.6813812255859,161.71484375,-198.691970825195,101.144912719727,154.177124023438,-185.394668579102,50.5128517150879,175.181167602539,-180.58219909668,42.1638298034668,176.798324584961,-151.193313598633,-119.075668334961,130.526794433594,-154.900680541992,-133.40608215332,116.252395629883,-161.122283935547,-131.631896972656,114.306205749512,-145.285751342773,-117.266487121582,134.363159179688,-137.573989868164,-111.584930419922,140.114730834961,-140.770309448242,-101.845977783203,141.911911010742,-136.661895751953,-77.4686889648438,147.590454101563,-140.215240478516,-94.4577560424805,143.816101074219,-133.523590087891,-72.9234466552734,148.157516479492,\r\n-151.013305664063,31.1953582763672,157.7724609375,-154.283615112305,31.4864864349365,163.774047851563,-207.751861572266,-114.253196716309,12.9932765960693,-205.790664672852,-118.221580505371,16.5331249237061,-201.375244140625,-126.137359619141,29.4798927307129,-202.274322509766,-126.672416687012,37.4608726501465,-178.557006835938,-143.04801940918,72.0366592407227,-169.077072143555,-147.386444091797,78.8155212402344,-173.547515869141,-139.543670654297,87.5161819458008,-188.945022583008,-136.337371826172,60.7237548828125,-192.260345458984,-134.639205932617,54.2028121948242,-200.226119995117,-129.105651855469,42.9237098693848,-171.765350341797,-134.885208129883,100.428848266602,-156.987899780273,31.4068775177002,167.494415283203,-170.090179443359,37.8020057678223,176.03825378418,-164.809661865234,36.3119583129883,173.798034667969,-188.141952514648,53.840877532959,175.149154663086,-192.971420288086,63.6127319335938,175.64421081543,-194.27653503418,75.2597808837891,171.746826171875,-173.370498657227,41.8417015075684,176.375289916992,-152.993499755859,-131.757904052734,118.947662353516,-138.093032836914,-117.293487548828,136.994430541992,-133.424575805664,-80.399284362793,146.85139465332,-147.318954467773,36.0246276855469,149.916687011719,-195.854690551758,-128.375579833984,21.4425048828125,-175.231674194336,-147.457443237305,70.2008819580078,-169.990158081055,-143.13102722168,85.0408325195313,-171.433303833008,-148.929580688477,73.0020599365234,-166.106781005859,-139.414657592773,98.0615158081055,-186.427780151367,-139.660690307617,56.9043807983398,-185.798721313477,-138.972610473633,63.1216926574707,-177.996948242188,-147.399444580078,65.4060134887695,-189.402069091797,-137.28645324707,49.058910369873,-195.647674560547,-131.973937988281,39.8652114868164,-192.483367919922,-134.961227416992,46.3128433227539,-159.417129516602,-138.901611328125,105.594352722168,-157.486938476563,38.0885314941406,167.809448242188,-185.172653198242,56.2820167541504,174.673110961914,-194.502578735352,83.7242050170898,167.245391845703,-190.108123779297,69.3493957519531,173.662017822266,\r\n-193.68147277832,102.18701171875,154.713165283203,-181.731323242188,51.0832061767578,175.101165771484,-176.480804443359,46.1926231384277,175.963256835938,-155.705749511719,-138.610580444336,109.20671081543,-148.078002929688,-135.332260131836,117.65453338623,-140.256240844727,-135.37126159668,120.108772277832,-138.298065185547,-120.83283996582,134.201156616211,-135.825820922852,-113.081581115723,139.777206420898,-134.330673217773,-104.870277404785,143.216033935547,-137.127944946289,-98.5896606445313,143.696075439453,-136.800903320313,-88.3439559936523,145.07421875,-133.74560546875,-86.1942443847656,145.851287841797,-151.014297485352,35.6223907470703,158.339508056641,-154.801681518555,35.8870162963867,164.624145507813,-203.42643737793,-118.925651550293,13.5906362533569,-196.522766113281,-130.233749389648,31.1939601898193,-163.848571777344,-148.560562133789,82.7247085571289,-165.045669555664,-152.154907226563,74.9168395996094,-163.838562011719,-143.717086791992,91.707389831543,-159.63916015625,-142.643981933594,98.6880722045898,-160.615249633789,35.8425140380859,171.063766479492,-169.590133666992,41.9539108276367,175.484191894531,-165.699752807617,40.5869750976563,173.926040649414,-187.8369140625,64.5023193359375,174.252090454102,-191.784301757813,75.394287109375,171.554809570313,-194.186538696289,96.2628326416016,159.05859375,-172.672424316406,47.9814033508301,174.799133300781,-148.766082763672,-137.803497314453,114.523223876953,-132.242462158203,-118.329597473145,137.33544921875,-134.912719726563,-110.332809448242,141.221343994141,-134.077651977539,-114.578231811523,139.439666748047,-150.817276000977,40.4894676208496,156.863372802734,-200.085098266602,-120.786834716797,11.8369636535645,-194.117523193359,-127.875526428223,16.2393951416016,-192.728393554688,-132.827011108398,25.1668701171875,-172.494400024414,-150.555755615234,68.4319076538086,-184.839630126953,-141.589874267578,52.6136627197266,-181.254272460938,-145.388244628906,61.4546279907227,-188.760009765625,-138.248550415039,42.956714630127,-192.268341064453,-134.715194702148,39.02392578125,\r\n-193.579483032227,-132.903030395508,31.6054019927979,-152.809478759766,-142.820999145508,104.361228942871,-154.309616088867,40.6200828552246,162.80696105957,-160.347213745117,39.7751998901367,170.192672729492,-184.783615112305,60.7581558227539,173.798034667969,-190.14714050293,84.4015731811523,166.699340820313,-185.413665771484,68.5750198364258,172.376907348633,-188.34196472168,75.500602722168,170.893753051758,-190.196136474609,92.1077270507813,161.844863891602,-185.927734375,105.348320007324,152.633972167969,-181.906341552734,57.130199432373,173.635025024414,-178.771026611328,57.6803550720215,172.588912963867,-139.791198730469,-139.682693481445,115.954360961914,-134.385681152344,-132.554992675781,125.182273864746,-145.049713134766,-141.086822509766,111.844970703125,-132.745513916016,-126.821426391602,130.155746459961,-133.291061401367,-106.975486755371,142.771987915039,-131.611404418945,-100.477844238281,145.015213012695,-133.771621704102,-95.3746490478516,145.171234130859,-190.791198730469,-132.166961669922,17.615629196167,-171.560317993164,-152.802963256836,63.715950012207,-160.4072265625,-150.158706665039,83.4564819335938,-162.176391601563,-153.177017211914,75.6679229736328,-165.411712646484,-154.55615234375,68.2691955566406,-154.810684204102,-150.537750244141,87.6204833984375,-185.545684814453,-141.255844116211,46.6251754760742,-179.838119506836,-147.542465209961,57.9898872375488,-176.822830200195,-149.878692626953,61.1024932861328,-158.497024536133,46.9515991210938,165.5322265625,-161.326324462891,45.1329231262207,169.24658203125,-166.781860351563,44.4814605712891,173.480010986328,-170.951248168945,51.3027267456055,172.872955322266,-132.324462890625,-138.380569458008,120.166778564453,-130.088256835938,-113.67813873291,140.250747680664,-124.598709106445,-121.504905700684,134.542190551758,-132.25146484375,-109.080688476563,142.32795715332,-133.041793823242,-104.805770874023,143.498062133789,-154.893676757813,45.1499252319336,161.915863037109,-192.373352050781,-128.476593017578,13.1253900527954,-190.141143798828,-136.09733581543,24.4297981262207,\r\n-189.478073120117,-137.698486328125,29.3656826019287,-178.591003417969,-147.669464111328,47.8082885742188,-189.5380859375,-137.644485473633,36.3537673950195,-182.046356201172,-145.88330078125,39.9983215332031,-145.193740844727,-146.681381225586,102.57405090332,-141.366348266602,-145.097213745117,107.616546630859,-180.737213134766,64.7063369750977,170.937744140625,-185.326675415039,84.478874206543,165.508209228516,-184.66259765625,76.2263717651367,169.41259765625,-183.70849609375,98.5281524658203,157.038391113281,-175.926742553711,63.0100746154785,169.304595947266,-131.91242980957,-142.95100402832,114.925262451172,-127.951042175293,-135.976318359375,124.119163513184,-123.739631652832,-114.631233215332,139.052627563477,-125.803833007813,-127.406478881836,130.247772216797,-131.752914428711,-104.741264343262,143.780090332031,-151.587356567383,44.6838798522949,156.749359130859,-188.02392578125,-133.122039794922,10.7411556243896,-186.45378112793,-136.834411621094,13.2762041091919,-162.697448730469,-157.877471923828,60.6847496032715,-175.327682495117,-151.548843383789,57.1878089904785,-156.078796386719,-152.492935180664,82.6890029907227,-151.653366088867,-159.504623413086,68.8935546875,-180.006149291992,-146.588363647461,45.3110427856445,-174.175567626953,-152.533950805664,51.2048187255859,-142.936508178711,-150.454742431641,96.2837448120117,-155.957794189453,49.462345123291,161.122787475586,-162.972473144531,50.7212715148926,167.732452392578,-166.420806884766,50.0381011962891,170.845748901367,-175.58171081543,72.2780838012695,165.951263427734,-185.343673706055,91.3040466308594,161.660842895508,-177.875946044922,80.979133605957,164.357116699219,-180.253173828125,105.075302124023,152.193923950195,-172.55241394043,61.7070465087891,168.251495361328,-121.301391601563,-144.233123779297,116.195388793945,-123.418594360352,-136.42936706543,124.624221801758,-120.882354736328,-139.681686401367,121.973960876465,-125.461799621582,-106.802467346191,143.605087280273,-123.896644592285,-108.551635742188,142.485977172852,-120.307289123535,-127.751518249512,130.02473449707,\r\n-129.175155639648,-104.612251281738,144.344146728516,-187.38786315918,-139.071624755859,23.385196685791,-187.178848266602,-140.78678894043,31.9989395141602,-164.283615112305,-158.361511230469,54.9790916442871,-166.703842163086,-158.072494506836,48.1857261657715,-147.489959716797,-151.976898193359,89.7754974365234,-155.963790893555,-156.074295043945,74.1001663208008,-172.572418212891,-154.263122558594,43.8351974487305,-174.515609741211,-152.684967041016,41.1449356079102,-133.606597900391,-149.647659301758,103.558151245117,-132.257461547852,-145.660263061523,111.01188659668,-158.775054931641,54.5459442138672,161.220809936523,-180.46418762207,87.7776947021484,162.311904907227,-180.433181762695,93.4933624267578,159.299621582031,-177.171859741211,98.8472900390625,155.42024230957,-172.727432250977,67.9485626220703,165.640228271484,-120.493316650391,-136.144332885742,125.070259094238,-152.157424926758,49.1783180236816,155.649261474609,-183.67350769043,-138.090530395508,9.36090087890625,-185.037643432617,-139.395660400391,15.5193252563477,-184.901626586914,-142.569976806641,29.4095859527588,-159.312118530273,-160.729751586914,53.8758850097656,-149.764175415039,-160.99577331543,65.8773574829102,-169.651123046875,-156.436340332031,46.0638160705566,-148.599075317383,-155.26921081543,81.3321762084961,-144.764694213867,-158.828567504883,76.0697555541992,-179.179061889648,-148.975601196289,36.981128692627,-140.131225585938,-154.638153076172,87.5389785766602,-133.948638916016,-152.027893066406,98.5487594604492,-155.81477355957,54.781665802002,157.344421386719,-169.621124267578,63.4453163146973,165.467208862305,-172.781433105469,78.5353012084961,162.112899780273,-174.157577514648,93.8094940185547,156.936370849609,-122.539512634277,-149.048599243164,108.590644836426,-111.866470336914,-144.639175415039,117.882553100586,-112.26350402832,-138.492568969727,123.140075683594,-182.506393432617,-140.295745849609,11.371618270874,-181.856323242188,-143.48405456543,22.2292823791504,-177.812927246094,-149.769683837891,32.0421447753906,-150.547256469727,-162.687942504883,57.9427795410156,\r\n-138.533081054688,-163.779052734375,66.3494033813477,-164.73063659668,-158.981582641602,43.1281318664551,-141.441360473633,-161.216796875,72.1605758666992,-169.370101928711,-156.411315917969,39.8317070007324,-173.826538085938,-153.448028564453,35.9254264831543,-125.533805847168,-152.118911743164,101.711967468262,-162.523422241211,63.0390777587891,158.914581298828,-170.489212036133,72.2635803222656,162.223892211914,-172.772430419922,88.0292282104492,158.654541015625,-167.263900756836,67.5120162963867,161.107788085938,-118.428108215332,-149.87467956543,108.246604919434,-112.490531921387,-141.564865112305,120.832847595215,-114.901763916016,-145.375244140625,116.046371459961,-153.360534667969,54.4141311645508,154.080108642578,-175.188674926758,-143.350051879883,6.92006206512451,-178.477005004883,-144.447158813477,15.5826301574707,-176.123764038086,-150.092712402344,27.0728569030762,-155.789764404297,-162.439910888672,48.1553230285645,-145.398742675781,-165.136169433594,52.3389358520508,-141.419372558594,-164.52912902832,60.9788818359375,-136.191848754883,-160.872756958008,76.5728073120117,-134.702713012695,-156.211303710938,87.664192199707,-128.094055175781,-153.904083251953,96.8917922973633,-157.431945800781,62.8232574462891,152.26692199707,-170.746231079102,82.3384704589844,159.127593994141,-118.561126708984,-151.559844970703,104.920288085938,-108.217109680176,-143.084030151367,120.670829772949,-111.094390869141,-148.074508666992,114.624237060547,-174.299591064453,-146.465362548828,12.280707359314,-174.16357421875,-150.130706787109,21.819242477417,-171.87434387207,-154.33512878418,31.5466957092285,-134.477676391602,-167.472412109375,56.9862899780273,-133.879623413086,-166.079284667969,63.1127891540527,-161.911361694336,-159.448623657227,37.3610649108887,-156.330810546875,-161.756851196289,41.8387031555176,-167.609924316406,-156.936386108398,35.2258567810059,-120.494316101074,-154.566146850586,98.7918853759766,-163.010467529297,67.6079254150391,156.282318115234,-167.322906494141,73.6415176391602,158.585540771484,-169.042068481445,88.380859375,155.763275146484,\r\n-114.625732421875,-152.569946289063,106.505439758301,-113.666641235352,-148.568557739258,112.194999694824,-108.016090393066,-147.756484985352,116.877456665039,-167.867965698242,-147.484451293945,2.86521410942078,-171.671325683594,-149.913696289063,16.0389747619629,-169.731140136719,-154.588150024414,26.7441253662109,-151.525360107422,-163.777053833008,44.6085739135742,-137.72200012207,-167.336410522461,50.9267921447754,-131.531387329102,-164.3701171875,69.9991607666016,-133.815612792969,-160.120681762695,79.8818283081055,-127.265975952148,-157.607437133789,88.2820587158203,-122.92155456543,-156.851364135742,93.1939392089844,-158.582046508789,67.0840759277344,150.432754516602,-117.391014099121,-153.702056884766,102.183013916016,-111.176399230957,-152.134902954102,110.521835327148,-107.563049316406,-152.607955932617,114.04418182373,-167.697937011719,-149.629669189453,8.20799827575684,-167.914962768555,-153.409027099609,19.7415370941162,-165.310699462891,-157.139389038086,28.086856842041,-142.777496337891,-166.198287963867,48.4082489013672,-132.08544921875,-168.726547241211,52.8443794250488,-122.770538330078,-169.584609985352,59.5416374206543,-130.282272338867,-163.172988891602,75.4029922485352,-162.864456176758,-158.406524658203,32.6519050598145,-149.749176025391,-162.767944335938,33.1778526306152,-147.984008789063,-164.410110473633,39.6148872375488,-118.480117797852,-158.390518188477,93.8112945556641,-164.025573730469,72.7140274047852,155.090194702148,-166.343811035156,84.5205841064453,154.372131347656,-113.828659057617,-157.239410400391,101.981994628906,-163.660552978516,-149.949188232422,1.6401150226593,-166.006774902344,-152.670959472656,14.7706518173218,-164.064575195313,-156.42333984375,22.9370517730713,-140.405258178711,-166.700347900391,43.2853469848633,-135.497787475586,-167.977462768555,45.9674072265625,-129.698211669922,-169.581619262695,48.3769454956055,-153.993591308594,-159.187591552734,20.3494987487793,-150.068206787109,-161.485824584961,25.7522277832031,-125.614814758301,-162.017868041992,80.357177734375,\r\n-116.171890258789,-157.665451049805,98.3073425292969,-122.028457641602,-159.718658447266,86.9247207641602,-116.718940734863,-162.28190612793,90.7354888916016,-160.485229492188,71.8929443359375,150.423751831055,-110.853370666504,-157.307418823242,106.903480529785,-108.682159423828,-156.796371459961,110.588836669922,-161.189300537109,-149.336639404297,-3.56573605537415,-159.453140258789,-152.413940429688,0.415015012025833,-162.723449707031,-152.293930053711,7.50999879837036,-153.524536132813,-157.969467163086,13.7213487625122,-118.23609161377,-170.573715209961,66.6162338256836,-142.202438354492,-164.00407409668,26.8514366149902,-139.4931640625,-165.368209838867,30.0104446411133,-120.506317138672,-163.054977416992,81.5112915039063,-118.477119445801,-167.381408691406,75.3656921386719,-118.413108825684,-162.936965942383,84.9572296142578,-115.136787414551,-162.039886474609,94.755989074707,-163.508529663086,77.4321823120117,152.833984375,-112.410522460938,-161.779861450195,101.344940185547,-157.033889770508,-155.100204467773,9.75262928009033,-159.888168334961,-153.485046386719,7.87929582595825,-130.432281494141,-168.441513061523,36.3329620361328,-130.994338989258,-169.047576904297,43.4213562011719,-126.836936950684,-169.962646484375,45.4008522033691,-113.250602722168,-173.925048828125,64.8396606445313,-118.707138061523,-169.175567626953,70.9620513916016,-147.25993347168,-160.04768371582,12.2809076309204,-139.940216064453,-161.775848388672,12.7319507598877,-114.625732421875,-166.961364746094,88.6394882202148,-113.907669067383,-167.485412597656,92.4213562011719,-108.089096069336,-162.238906860352,109.816772460938,-155.071701049805,-153.40202331543,-3.08978891372681,-151.899383544922,-155.541244506836,-0.875559985637665,-149.370147705078,-156.939376831055,2.57528591156006,-123.452606201172,-171.196762084961,43.1490287780762,-111.044387817383,-175.4091796875,58.6873512268066,-144.218643188477,-161.374801635742,15.2105941772461,-136.625900268555,-162.823959350586,13.1304903030396,-138.423065185547,-164.945159912109,24.865140914917,\r\n-134.814712524414,-167.111373901367,33.3103675842285,-115.658836364746,-168.649520874023,77.284782409668,-113.381614685059,-172.981948852539,70.1766815185547,-115.680839538574,-167.637435913086,81.0258483886719,-112.870567321777,-166.551330566406,97.9926071166992,-115.1337890625,-167.349395751953,84.9872360229492,-110.366325378418,-166.028259277344,104.820274353027,-146.518859863281,-158.411514282227,5.04712820053101,-126.798934936523,-170.24267578125,38.7977066040039,-119.742240905762,-173.511993408203,43.311149597168,-111.450424194336,-175.110168457031,54.8722801208496,-108.566139221191,-178.955535888672,61.8655662536621,-142.864501953125,-160.307708740234,7.96915483474731,-134.009628295898,-162.017868041992,6.26299810409546,-136.137847900391,-164.964157104492,20.0023632049561,-135.288757324219,-166.558334350586,27.2761764526367,-130.596298217773,-169.236587524414,30.0548477172852,-113.069580078125,-173.403991699219,74.3414916992188,-113.629638671875,-172.230880737305,87.2529525756836,-112.500526428223,-170.565704345703,97.6522674560547,-107.390029907227,-171.772827148438,110.562835693359,-146.066818237305,-156.555328369141,-2.51752305030823,-127.192970275879,-170.161682128906,35.2404556274414,-122.062469482422,-173.746032714844,38.2327499389648,-116.36491394043,-174.914138793945,46.4219512939453,-107.996086120605,-178.392486572266,55.2793197631836,-112.804557800293,-175.175170898438,51.4099426269531,-107.24600982666,-180.231658935547,58.2234115600586,-109.024185180664,-179.498596191406,64.8890609741211,-110.229309082031,-178.110458374023,68.7906494140625,-135.555786132813,-160.539733886719,3.13469099998474,-132.759506225586,-164.982162475586,10.7329559326172,-134.294662475586,-165.060180664063,15.9992713928223,-134.133651733398,-166.883361816406,22.7587337493896,-113.682647705078,-171.793823242188,81.4086837768555,-110.063293457031,-170.674728393555,105.226318359375,-113.03458404541,-177.408386230469,91.9687118530273,-139.73420715332,-159.07958984375,1.51996302604675,-124.209671020508,-173.485992431641,35.507682800293,\r\n-119.658233642578,-177.250366210938,38.9634208679199,-117.235992431641,-176.501281738281,42.1213302612305,-108.540138244629,-179.249557495117,52.2528228759766,-107.230010986328,-184.113037109375,62.8769645690918,-132.238464355469,-161.990875244141,3.80282592773438,-130.980346679688,-164.27409362793,5.25650882720947,-131.863418579102,-168.532516479492,19.9056549072266,-131.792419433594,-169.001556396484,25.0795612335205,-126.621910095215,-173.097961425781,31.1631565093994,-112.32551574707,-176.989349365234,78.4753952026367,-111.328414916992,-178.903533935547,74.6277236938477,-113.050582885742,-175.893249511719,83.0567474365234,-113.285606384277,-178.320465087891,87.6798934936523,-112.101493835449,-176.322265625,98.0932159423828,-109.816261291504,-175.851226806641,105.890380859375,-111.083389282227,-179.419570922852,48.4291496276855,-114.914764404297,-179.497589111328,44.222038269043,-106.816970825195,-182.679901123047,54.8355751037598,-106.31192779541,-184.886108398438,58.299617767334,-130.214263916016,-168.794540405273,10.044487953186,-130.975341796875,-168.806533813477,15.7134428024292,-129.036148071289,-173.003952026367,23.6220188140869,-110.220306396484,-179.986633300781,71.366096496582,-113.50163269043,-182.910934448242,88.5707855224609,-112.528526306152,-183.504989624023,99.1719207763672,-107.751068115234,-179.13655090332,110.841865539551,-124.077667236328,-178.069458007813,32.7891159057617,-119.033172607422,-179.848617553711,39.5602798461914,-108.179100036621,-184.097030639648,51.7026710510254,-106.507942199707,-189.826599121094,60.6284446716309,-109.853271484375,-183.444976806641,70.9882583618164,-129.076141357422,-168.975555419922,5.76950883865356,-129.12516784668,-173.35498046875,19.1737823486328,-126.385887145996,-177.796432495117,27.4644947052002,-112.459518432617,-183.225952148438,79.6075057983398,-113.180595397949,-181.186767578125,83.8208236694336,-111.425422668457,-180.738708496094,102.240020751953,-109.992286682129,-182.280868530273,106.943489074707,-122.501502990723,-181.756805419922,35.297664642334,\r\n-110.546340942383,-184.350067138672,48.7663841247559,-117.355003356934,-183.753997802734,41.7064895629883,-107.07999420166,-192.172836303711,56.0175933837891,-107.905082702637,-188.626480102539,66.0297698974609,-106.482940673828,-190.90771484375,58.520938873291,-110.377326965332,-188.018417358398,72.6486206054688,-128.963150024414,-173.353988647461,8.72923946380615,-129.295181274414,-173.073974609375,14.4751224517822,-128.170074462891,-177.792419433594,19.8757514953613,-114.469718933105,-190.817687988281,87.6054840087891,-114.059684753418,-187.738403320313,90.9192123413086,-112.055480957031,-187.307357788086,103.995193481445,-108.488136291504,-183.837020874023,110.778861999512,-124.773735046387,-182.308868408203,31.7471141815186,-109.600250244141,-192.164825439453,51.5768585205078,-108.027084350586,-193.391952514648,66.2260971069336,-107.689056396484,-196.942306518555,58.7005577087402,-128.877136230469,-177.373382568359,14.9967737197876,-126.910942077637,-182.336868286133,25.8549365997314,-113.326614379883,-187.473373413086,82.2537612915039,-113.333610534668,-187.645385742188,98.3491363525391,-110.682357788086,-187.923416137695,108.320617675781,-118.853157043457,-188.555480957031,40.9592170715332,-125.890838623047,-188.976516723633,32.4409828186035,-112.749549865723,-188.730499267578,47.1515235900879,-109.138198852539,-197.503341674805,55.4396362304688,-107.527038574219,-197.512344360352,62.3959197998047,-129.326171875,-181.991836547852,14.2361993789673,-114.090682983398,-192.144836425781,83.300666809082,-115.311805725098,-192.508865356445,92.8199996948242,-114.600738525391,-191.168731689453,96.6429748535156,-114.514724731445,-191.977813720703,103.534149169922,-108.701156616211,-187.979415893555,112.286003112793,-127.208969116211,-187.259353637695,28.4229888916016,-123.65161895752,-189.338562011719,35.8239135742188,-112.614540100098,-197.785385131836,50.9257926940918,-111.145401000977,-192.924911499023,50.0774078369141,-108.953178405762,-197.376342773438,67.4526138305664,-111.645446777344,-192.573867797852,75.2165756225586,\r\n-108.63614654541,-200.891677856445,61.6656455993652,-128.836135864258,-177.800430297852,8.78053379058838,-128.813125610352,-186.393264770508,21.8020401000977,-115.225799560547,-196.51025390625,84.228157043457,-116.007873535156,-196.272232055664,87.4269714355469,-115.156791687012,-192.363845825195,100.001899719238,-113.917663574219,-192.095825195313,106.859481811523,-112.323516845703,-192.224822998047,111.400924682617,-120.140274047852,-193.271942138672,41.2455444335938,-128.791137695313,-193.4189453125,29.4371871948242,-125.567810058594,-193.695983886719,35.3035621643066,-109.989288330078,-201.861770629883,58.3928260803223,-112.495529174805,-201.024703979492,53.9223861694336,-109.526237487793,-201.927795410156,64.9142684936523,-111.843467712402,-196.534255981445,74.2873840332031,-130.644317626953,-190.037612915039,17.3200016021729,-114.029685974121,-196.954299926758,79.9699401855469,-117.643035888672,-195.899200439453,96.2211303710938,-116.69694519043,-196.250228881836,90.6828918457031,-119.197189331055,-196.243225097656,101.731971740723,-119.237182617188,-195.965194702148,105.916381835938,-109.620246887207,-191.996810913086,116.438415527344,-116.693939208984,-202.081802368164,50.5201568603516,-111.355415344238,-201.961791992188,69.5801239013672,-111.619445800781,-205.852172851563,61.9333724975586,-129.225158691406,-183.760009765625,8.14033222198486,-131.26936340332,-191.73078918457,13.7516508102417,-130.240264892578,-190.819686889648,21.5167121887207,-117.35400390625,-200.776672363281,84.1078414916992,-115.450820922852,-201.032699584961,80.0292434692383,-118.807144165039,-200.585647583008,87.3812637329102,-120.344299316406,-196.335235595703,109.418724060059,-116.442916870117,-195.563171386719,118.11157989502,-123.358589172363,-196.459259033203,39.5847816467285,-129.949234008789,-198.031402587891,32.4438858032227,-113.702644348145,-205.910171508789,58.2265090942383,-121.527412414551,-198.273422241211,42.8716049194336,-111.562438964844,-205.627151489258,65.3133010864258,-130.516296386719,-189.253540039063,10.4567279815674,\r\n-132.524505615234,-195.402145385742,15.0371770858765,-131.778427124023,-194.937103271484,21.728931427002,-120.131278991699,-200.502655029297,90.6186828613281,-123.382598876953,-200.085601806641,97.1341247558594,-126.200874328613,-199.806579589844,103.579147338867,-127.513000488281,-199.726577758789,106.69945526123,-117.950065612793,-195.662185668945,113.440116882324,-113.624633789063,-195.171112060547,120.84684753418,-130.634292602539,-194.860092163086,26.1743698120117,-127.253974914551,-198.223419189453,36.5030822753906,-131.517395019531,-197.859390258789,29.3204765319824,-123.022560119629,-202.279815673828,45.2565383911133,-119.027168273926,-206.266220092773,53.4032363891602,-113.246597290039,-206.22819519043,69.0785675048828,-116.540924072266,-210.393615722656,61.7353553771973,-114.475723266602,-209.456527709961,64.7026443481445,-131.972442626953,-194.93310546875,10.2908115386963,-119.405212402344,-205.12109375,80.9002304077148,-122.45450592041,-205.428131103516,84.2467575073242,-115.324806213379,-205.626159667969,74.4596939086914,-122.165473937988,-200.868682861328,93.5330657958984,-123.650619506836,-204.71305847168,87.3291625976563,-125.060760498047,-199.970596313477,100.359840393066,-137.360977172852,-203.056900024414,109.308715820313,-128.092056274414,-199.085510253906,113.402122497559,-124.439697265625,-197.821380615234,120.789840698242,-122.029457092285,-197.952392578125,125.925338745117,-125.214775085449,-200.758666992188,41.4320640563965,-133.543594360352,-202.116806030273,34.2069549560547,-119.437210083008,-211.488723754883,60.6685485839844,-135.288757324219,-199.257537841797,10.3592185974121,-137.242950439453,-199.396545410156,19.1836853027344,-134.578689575195,-199.094512939453,26.438793182373,-117.171989440918,-205.408126831055,77.6895141601563,-130.777313232422,-206.347213745117,92.1953353881836,-138.936126708984,-207.738357543945,97.5706634521484,-133.380569458008,-203.651962280273,101.20092010498,-129.182159423828,-202.217819213867,39.2590484619141,-136.713897705078,-202.451843261719,31.3237724304199,\r\n-123.793632507324,-207.181304931641,50.9436988830566,-128.927139282227,-205.863174438477,45.0575218200684,-116.961967468262,-211.028671264648,69.2850952148438,-120.135276794434,-214.161987304688,65.2076873779297,-135.995834350586,-199.120513916016,13.5845336914063,-135.699798583984,-198.891479492188,23.024959564209,-126.301879882813,-210.60563659668,79.9173278808594,-122.382499694824,-211.131683349609,75.8790435791016,-130.503295898438,-208.215408325195,88.7789993286133,-119.222183227539,-209.802551269531,74.4432983398438,-138.247055053711,-202.695861816406,113.89616394043,-131.163360595703,-199.699554443359,118.078575134277,-126.485900878906,-199.169509887695,128.513595581055,-137.07194519043,-205.286117553711,37.2206497192383,-133.978637695313,-206.027191162109,41.236644744873,-133.192565917969,-214.432006835938,54.9025840759277,-127.490005493164,-218.511413574219,65.1355895996094,-142.382461547852,-203.375930786133,10.3820209503174,-144.217636108398,-203.200912475586,14.1442890167236,-144.184631347656,-202.500839233398,22.9074478149414,-143.205535888672,-203.085891723633,27.1558647155762,-135.454772949219,-212.988876342773,85.4149703979492,-142.112426757813,-211.696731567383,93.587776184082,-144.8046875,-206.838256835938,109.122703552246,-132.376480102539,-199.990585327148,123.251083374023,-129.212158203125,-199.321533203125,126.571411132813,-142.213439941406,-205.565139770508,34.1304473876953,-132.732513427734,-218.585418701172,61.0470848083496,-122.168472290039,-214.199996948242,71.1904754638672,-119.882255554199,-213.823944091797,68.4322128295898,-130.995346069336,-221.182662963867,68.3838043212891,-147.598968505859,-203.539947509766,19.8684520721436,-130.803329467773,-217.74333190918,74.5744094848633,-137.662994384766,-216.993270874023,81.5575942993164,-145.064712524414,-211.67073059082,97.4386444091797,-148.839080810547,-210.932678222656,105.768371582031,-138.451080322266,-202.469833374023,119.24568939209,-146.107818603516,-207.001281738281,113.257102966309,-134.833709716797,-202.005783081055,129.860717773438,\r\n-137.296951293945,-209.902572631836,45.6141738891602,-138.638092041016,-213.992965698242,50.8604888916016,-137.781005859375,-218.360397338867,57.1287002563477,-133.201553344727,-221.407699584961,64.6494369506836,-152.021408081055,-206.710250854492,12.0821876525879,-154.238616943359,-206.386215209961,16.6656360626221,-154.656661987305,-206.438232421875,23.8227386474609,-151.085311889648,-205.462127685547,26.0418548583984,-128.276077270508,-218.221374511719,71.3372955322266,-148.392044067383,-215.845153808594,94.4161605834961,-150.243225097656,-210.843658447266,110.811859130859,-142.278442382813,-204.237014770508,116.041374206543,-139.654190063477,-203.275909423828,125.546310424805,-128.485107421875,-200.780670166016,132.475982666016,-150.818283081055,-206.957275390625,31.0702476501465,-150.561248779297,-209.585540771484,36.4172744750977,-136.762908935547,-222.435791015625,62.8154602050781,-136.092834472656,-225.11506652832,67.8258514404297,-156.789855957031,-207.075286865234,19.7935428619385,-133.610610961914,-222.180770874023,71.5414123535156,-135.675796508789,-221.799728393555,74.7300262451172,-145.464767456055,-216.002166748047,90.5110702514648,-151.301330566406,-214.908050537109,102.503051757813,-152.031402587891,-214.85205078125,106.565444946289,-145.123733520508,-206.638244628906,120.780838012695,-149.811187744141,-210.540634155273,116.909461975098,-146.258834838867,-207.039291381836,116.601432800293,-131.040344238281,-202.641845703125,135.437271118164,-150.469253540039,-213.869964599609,42.9867134094238,-143.569580078125,-218.04035949707,52.5560531616211,-145.000717163086,-221.984756469727,55.6754570007324,-160.952270507813,-210.352615356445,13.4904251098633,-161.524337768555,-210.094589233398,16.6001300811768,-162.097381591797,-210.438613891602,22.6478214263916,-158.292022705078,-209.867568969727,29.6637096405029,-143.479568481445,-220.606628417969,83.3526763916016,-149.640182495117,-220.093566894531,90.4542694091797,-152.074401855469,-219.6865234375,95.1401290893555,-154.098602294922,-216.371215820313,114.194198608398,\r\n-152.754470825195,-213.792953491211,115.998374938965,-144.446655273438,-206.584243774414,125.89533996582,-142.935501098633,-206.51823425293,129.843719482422,-136.466873168945,-206.411239624023,138.522583007813,-155.826766967773,-210.475631713867,33.7144088745117,-154.943695068359,-214.223999023438,39.531177520752,-139.291152954102,-226.756210327148,65.1915893554688,-136.845916748047,-226.282165527344,71.4793090820313,-161.349319458008,-210.419616699219,27.1237602233887,-140.188247680664,-229.114440917969,74.3631896972656,-154.152603149414,-220.369598388672,100.437843322754,-154.792678833008,-222.393783569336,107.260513305664,-152.782485961914,-215.588119506836,121.348899841309,-148.454055786133,-210.38362121582,125.09326171875,-139.212158203125,-206.552230834961,135.918319702148,-151.527359008789,-217.771347045898,46.9480056762695,-155.688751220703,-218.306396484375,43.7655906677246,-145.217727661133,-226.21516418457,59.4616317749023,-138.868103027344,-229.530487060547,68.9303588867188,-166.268798828125,-214.313995361328,14.1545906066895,-165.909759521484,-214.068984985352,27.8145294189453,-164.071578979492,-213.907958984375,30.4813899993896,-157.781967163086,-213.208892822266,35.7934112548828,-145.425750732422,-224.321990966797,83.1609497070313,-150.134216308594,-224.602005004883,88.0320358276367,-152.012405395508,-223.141860961914,91.28564453125,-154.869674682617,-223.197860717773,97.932502746582,-154.644668579102,-217.31330871582,116.72444152832,-156.455825805664,-224.942047119141,110.146797180176,-147.233932495117,-210.700637817383,128.871627807617,-143.860595703125,-210.506622314453,135.168258666992,-140.152252197266,-210.973678588867,141.308853149414,-159.44612121582,-217.842346191406,38.9892272949219,-153.863586425781,-221.991760253906,49.4656524658203,-149.313125610352,-226.411193847656,56.139404296875,-141.921417236328,-231.53369140625,67.1555862426758,-138.834106445313,-229.737503051758,71.7948379516602,-166.7568359375,-214.999069213867,20.3794002532959,-167.39289855957,-215.076065063477,24.9817504882813,\r\n-162.459426879883,-215.069076538086,33.6128997802734,-146.452850341797,-231.903717041016,79.6026992797852,-156.569854736328,-225.799118041992,100.942901611328,-157.276931762695,-224.916030883789,115.275299072266,-158.850082397461,-229.596496582031,111.382919311523,-150.831283569336,-214.994079589844,126.722427368164,-154.892684936523,-220.352584838867,122.69702911377,-161.939361572266,-223.35888671875,40.5187759399414,-147.111923217773,-233.409866333008,63.6469421386719,-143.389556884766,-234.460983276367,71.8596420288086,-169.871139526367,-219.044464111328,15.2790012359619,-167.804946899414,-217.430297851563,30.5851001739502,-170.349197387695,-218.855453491211,28.5110988616943,-167.256896972656,-219.453506469727,32.8769264221191,-148.431060791016,-228.389389038086,84.5668869018555,-152.873489379883,-227.855316162109,90.0029220581055,-158.914077758789,-230.241561889648,103.12410736084,-155.586761474609,-227.127258300781,95.6534805297852,-158.256011962891,-227.069244384766,119.361701965332,-144.825698852539,-214.326995849609,137.871520996094,-158.281021118164,-225.296081542969,48.3538398742676,-164.056579589844,-221.819747924805,37.3240623474121,-159.419128417969,-222.982849121094,43.9687156677246,-155.586761474609,-226.011138916016,51.4409446716309,-151.444351196289,-233.56689453125,59.379020690918,-144.860702514648,-234.703994750977,67.1334838867188,-170.66423034668,-218.995452880859,24.0311584472656,-171.765350341797,-222.04475402832,18.4251098632813,-151.927383422852,-232.554779052734,85.5126800537109,-148.763092041016,-239.025421142578,77.6136093139648,-157.901992797852,-230.873626708984,97.6949768066406,-160.543243408203,-233.932922363281,105.087303161621,-152.020401000977,-220.374588012695,129.498687744141,-157.441940307617,-227.555297851563,123.733123779297,-142.780487060547,-214.595031738281,141.468872070313,-169.022064208984,-234.14794921875,40.1333351135254,-165.839767456055,-230.977630615234,41.6020812988281,-149.83918762207,-236.138137817383,62.6621437072754,-148.008010864258,-238.981414794922,65.5284271240234,\r\n-146.215835571289,-238.614379882813,69.394905090332,-173.863540649414,-222.788833618164,27.2551746368408,-152.332443237305,-239.038421630859,82.8532180786133,-146.542877197266,-241.663681030273,73.2365798950195,-155.693756103516,-231.920715332031,91.1792373657227,-159.517135620117,-235.901123046875,100.242828369141,-160.747253417969,-234.418960571289,110.795860290527,-155.83576965332,-227.660308837891,128.010543823242,-159.123092651367,-232.454788208008,123.515106201172,-146.530868530273,-219.271484375,139.721694946289,-157.085891723633,-230.304565429688,53.1424102783203,-162.230392456055,-229.907516479492,47.5072593688965,-151.99040222168,-239.445465087891,60.4519271850586,-173.469512939453,-224.421981811523,30.6618099212646,-155.290725708008,-236.658187866211,87.1472396850586,-157.054901123047,-237.259246826172,92.740592956543,-160.255218505859,-233.969940185547,118.173583984375,-151.059310913086,-224.801040649414,134.612197875977,-160.716262817383,-231.591690063477,50.6168632507324,-167.010864257813,-235.858123779297,44.0906257629395,-155.635757446289,-235.188034057617,56.7128601074219,-150.158218383789,-239.400451660156,63.219799041748,-146.651870727539,-241.844696044922,68.2272872924805,-176.479797363281,-227.345275878906,25.4039936065674,-175.919738769531,-226.785217285156,29.2099666595459,-154.393630981445,-232.196746826172,133.309066772461,-157.212905883789,-232.893829345703,128.593597412109,-151.768371582031,-231.606689453125,138.150543212891,-161.849365234375,-234.827011108398,50.9877014160156,-171.278289794922,-235.466064453125,38.7412986755371,-169.487121582031,-239.002426147461,41.9599151611328,-155.680755615234,-238.826400756836,57.1951065063477,-175.081665039063,-228.387390136719,16.9409637451172,-177.080856323242,-231.192657470703,30.395580291748,-175.261672973633,-232.171752929688,33.2657623291016,-166.478820800781,-240.335540771484,45.0657196044922,-164.011581420898,-239.376449584961,48.699577331543,-178.38298034668,-231.5546875,27.1141605377197,-178.11994934082,-232.259765625,22.3097896575928,-176.508804321289,-236.115127563477,33.3325691223145,\r\n-171.234283447266,-240.419555664063,38.9488182067871,-160.844253540039,-239.077423095703,51.7931785583496,-177.240875244141,-232.907821655273,16.9324626922607,-178.983047485352,-236.510177612305,28.4144878387451,-173.792541503906,-239.944519042969,36.3365631103516,-179.376083374023,-236.439163208008,24.0131568908691,-178.623016357422,-237.567291259766,18.349401473999,-177.140869140625,-239.593490600586,31.6845092773438,-178.987045288086,-239.88151550293,25.1911716461182,-178.14697265625,-240.805587768555,27.7949275970459,-48.8926963806152,-189.816604614258,-37.9022102355957,-49.8839912414551,-189.632583618164,-34.4899749755859,-48.3402442932129,-184.789108276367,-33.9960250854492,-56.0384941101074,-194.470062255859,-37.7255935668945,-50.5863647460938,-187.71940612793,-30.5880947113037,-45.2459373474121,-185.579193115234,-41.4083557128906,-52.4068412780762,-194.016006469727,-43.2157287597656,-52.4204444885254,-191.531768798828,-32.8913192749023,-51.3507385253906,-182.717895507813,-29.3660736083984,-46.6543807983398,-190.092636108398,-43.6730766296387,-47.181827545166,-178.780517578125,-37.9925193786621,-61.4101257324219,-197.786376953125,-42.5149612426758,-56.0333938598633,-193.477966308594,-33.2105484008789,-53.7769737243652,-190.843704223633,-30.1689529418945,-53.8074760437012,-187.1943359375,-28.2558631896973,-50.4287452697754,-178.19645690918,-31.7172031402588,-43.8547058105469,-185.623184204102,-45.8447914123535,-44.4308586120605,-180.556701660156,-44.4095497131348,-56.2488174438477,-197.331329345703,-49.393138885498,-62.7915573120117,-197.273330688477,-38.1688385009766,-49.8239898681641,-193.948013305664,-47.6419639587402,-59.9153747558594,-194.814086914063,-34.3461608886719,-54.6594619750977,-182.367874145508,-27.7716178894043,-54.0112953186035,-174.954147338867,-29.3556728363037,-44.8299942016602,-190.331649780273,-49.055004119873,-48.7121772766113,-175.664215087891,-34.939323425293,-46.2668418884277,-172.036865234375,-43.5723648071289,-56.9303817749023,-199.058502197266,-56.7260551452637,-68.0557708740234,-199.838577270508,-42.6504783630371,\r\n-57.5703468322754,-191.181732177734,-30.015438079834,-56.8639793395996,-186.759292602539,-27.8728275299072,-50.947998046875,-172.865936279297,-32.0011329650879,-42.516170501709,-185.716201782227,-52.8712768554688,-43.0198211669922,-180.154647827148,-54.1959075927734,-48.8011894226074,-171.429794311523,-35.3201560974121,-44.8586006164551,-174.285079956055,-47.4812507629395,-48.9281005859375,-194.800094604492,-53.7851676940918,-63.0146827697754,-201.796768188477,-59.7526512145996,-63.4358215332031,-195.383148193359,-33.9848251342773,-71.0556716918945,-199.430541992188,-37.4255638122559,-61.4652290344238,-191.825805664063,-30.6403980255127,-57.3478240966797,-176.175262451172,-28.6357021331787,-58.2455139160156,-182.64289855957,-27.831823348999,-53.7049713134766,-166.467315673828,-32.3197631835938,-43.161434173584,-189.917617797852,-54.0716934204102,-44.6052780151367,-172.991958618164,-51.0201988220215,-47.8296928405762,-166.986358642578,-41.7762908935547,-46.1269264221191,-166.169281005859,-50.4815444946289,-58.0620956420898,-200.905685424805,-61.8739585876465,-47.0621185302734,-194.673080444336,-56.9288749694824,-66.8322525024414,-195.87419128418,-33.2991561889648,-74.7322311401367,-201.643753051758,-41.0163154602051,-70.7664413452148,-202.400833129883,-50.782169342041,-57.0928001403809,-167.078369140625,-31.0720405578613,-62.9007682800293,-187.161346435547,-28.6952075958252,-50.9142951965332,-168.122482299805,-33.6674957275391,-41.8403053283691,-190.625671386719,-59.0719833374023,-41.639087677002,-181.469772338867,-59.9960746765137,-44.4730606079102,-168.079467773438,-54.9816818237305,-49.0815162658691,-167.021377563477,-37.4843711853027,-51.7074699401855,-198.040405273438,-59.7617530822754,-62.5969390869141,-203.25390625,-65.8429489135742,-64.5161285400391,-191.756790161133,-30.3886737823486,-71.5673141479492,-197.71337890625,-33.9206199645996,-76.1198654174805,-199.904586791992,-35.4042625427246,-71.9352569580078,-202.087799072266,-46.889892578125,-74.0253601074219,-205.120101928711,-56.3100166320801,-66.2105865478516,-182.482879638672,-29.1021480560303,\r\n-64.4540252685547,-167.931442260742,-31.1840515136719,-57.130802154541,-158.621551513672,-35.2381477355957,-51.235424041748,-164.0390625,-35.6175880432129,-40.2002449035645,-186.182250976563,-62.8285522460938,-42.7136917114258,-175.209167480469,-58.0421829223633,-50.2802352905273,-150.622756958008,-51.2877235412598,-49.7166748046875,-158.848556518555,-44.436351776123,-51.6182632446289,-199.250534057617,-64.0227661132813,-68.6446380615234,-204.578048706055,-63.827751159668,-51.8178825378418,-200.134613037109,-67.0702667236328,-44.2866477966309,-195.090118408203,-62.5656280517578,-68.2441864013672,-191.947814941406,-30.4629821777344,-69.6731338500977,-195.091125488281,-31.8954200744629,-78.616813659668,-202.954879760742,-39.964714050293,-74.5083084106445,-204.223022460938,-53.186206817627,-72.9751510620117,-205.704162597656,-60.7088432312012,-76.915641784668,-205.221115112305,-49.8713836669922,-63.0534858703613,-174.956146240234,-29.6910057067871,-60.711856842041,-163.71403503418,-32.3546676635742,-66.6377334594727,-187.020324707031,-29.1098499298096,-53.7159690856934,-159.153594970703,-36.7318954467773,-38.9269218444824,-190.841705322266,-66.6824264526367,-40.7686004638672,-178.939529418945,-63.8843574523926,-45.1812324523926,-163.036972045898,-55.1453971862793,-40.9366188049316,-168.711532592773,-63.7815437316895,-45.2614402770996,-158.83757019043,-57.5800399780273,-51.4139442443848,-158.278503417969,-40.8394966125488,-65.2872085571289,-205.871170043945,-70.1058654785156,-61.5718383789063,-204.5810546875,-71.2713775634766,-76.2550735473633,-196.692276000977,-32.0903396606445,-73.0455627441406,-194.800094604492,-31.6851005554199,-80.3647766113281,-201.749771118164,-34.6816940307617,-77.3241806030273,-206.242202758789,-54.4952354431152,-78.2362747192383,-209.945571899414,-63.4749183654785,-68.7246398925781,-174.105056762695,-30.5676918029785,-65.8631591796875,-163.254989624023,-32.4577789306641,-73.0239639282227,-187.580383300781,-30.1127471923828,-60.6396484375,-145.366256713867,-41.3148422241211,-54.3059272766113,-153.816070556641,-39.2873458862305,\r\n-37.3497657775879,-186.062240600586,-69.139274597168,-40.4013633728027,-163.632034301758,-67.1876831054688,-48.2220306396484,-151.468841552734,-55.9552764892578,-51.6429672241211,-153.016998291016,-44.4413528442383,-47.1160202026367,-198.280426025391,-66.4169006347656,-69.8504486083984,-207.131286621094,-67.9137496948242,-73.7658309936523,-206.992279052734,-64.3455047607422,-56.7257652282715,-203.348922729492,-72.5153961181641,-81.3387756347656,-199.557556152344,-31.8429164886475,-82.3163681030273,-205.119094848633,-37.9635162353516,-81.186164855957,-205.80517578125,-43.0308113098145,-80.0471496582031,-209.64453125,-57.3303146362305,-75.180778503418,-182.225845336914,-30.5991954803467,-71.3193969726563,-168.866546630859,-31.1229457855225,-71.6111221313477,-164.243103027344,-32.0264358520508,-65.5227279663086,-158.988586425781,-34.3345603942871,-57.1782073974609,-149.180618286133,-40.0323181152344,-65.0582809448242,-149.026596069336,-39.5030670166016,-41.9026107788086,-195.182113647461,-66.7033309936523,-35.1392517089844,-190.784698486328,-72.5509033203125,-39.7046966552734,-172.093856811523,-66.6009216308594,-37.5447845458984,-173.316986083984,-70.7303237915039,-40.6856918334961,-156.225311279297,-71.5816040039063,-38.7593040466309,-168.173477172852,-69.7426300048828,-52.1578178405762,-146.122314453125,-50.0182991027832,-44.3906555175781,-149.247619628906,-66.9662551879883,-53.3994407653809,-152.043899536133,-41.3519477844238,-45.8111953735352,-199.103515625,-70.1335678100586,-64.3231048583984,-209.052490234375,-76.9059371948242,-68.5667266845703,-210.309616088867,-73.0887603759766,-59.3603210449219,-206.177200317383,-76.5869064331055,-50.1207160949707,-202.102798461914,-73.6302108764648,-76.5496063232422,-191.741790771484,-30.7653102874756,-81.9766387939453,-196.077209472656,-30.4589805603027,-85.1076431274414,-206.124206542969,-34.2410545349121,-83.0626449584961,-209.336502075195,-46.2821311950684,-81.6731109619141,-210.081588745117,-51.4154357910156,-82.8334197998047,-213.999969482422,-60.4817237854004,-75.0497589111328,-210.176605224609,-67.0787734985352,\r\n-70.0430755615234,-160.19970703125,-33.3405647277832,-78.8184280395508,-186.597274780273,-30.721305847168,-56.7177619934082,-144.977203369141,-43.2493362426758,-68.2409896850586,-134.326171875,-45.1614227294922,-38.6967964172363,-195.235137939453,-70.4488983154297,-34.3739738464355,-186.3642578125,-74.2668762207031,-33.6710052490234,-174.035064697266,-78.8877258300781,-37.7826042175293,-161.462829589844,-77.0419464111328,-51.5413551330566,-136.748397827148,-56.7080535888672,-47.3530426025391,-141.734878540039,-64.580322265625,-54.0554046630859,-145.091217041016,-46.9210929870605,-71.8267440795898,-211.119689941406,-70.4370040893555,-86.7129058837891,-201.18571472168,-29.9212284088135,-87.512077331543,-206.89128112793,-31.4726810455322,-85.9679260253906,-209.040481567383,-37.8273048400879,-83.3747787475586,-213.248886108398,-54.8904762268066,-82.2087631225586,-214.600021362305,-63.6401329040527,-79.2423706054688,-214.216995239258,-66.7062377929688,-79.1169586181641,-177.343383789063,-31.3587684631348,-79.3722763061523,-170.105667114258,-32.299861907959,-73.8986434936523,-159.085601806641,-33.9871253967285,-72.1333694458008,-154.428131103516,-35.9622192382813,-69.383903503418,-151.13981628418,-38.001220703125,-60.414924621582,-139.214645385742,-44.3227424621582,-72.5778121948242,-145.561264038086,-40.3285484313965,-31.2198638916016,-184.560089111328,-79.239860534668,-34.7726135253906,-196.457260131836,-74.5290985107422,-36.9267272949219,-167.955459594727,-74.5118942260742,-43.4304618835449,-149.056610107422,-70.0069580078125,-40.550479888916,-153.390029907227,-74.6310119628906,-53.0279006958008,-136.538375854492,-53.7800674438477,-49.2763328552246,-138.498565673828,-61.3057060241699,-46.8201942443848,-141.026824951172,-67.2874908447266,-41.9454154968262,-199.411544799805,-72.9081344604492,-59.6708526611328,-208.964477539063,-80.2196578979492,-67.5745239257813,-211.903762817383,-76.8798294067383,-77.5070037841797,-217.117263793945,-70.0461654663086,-46.6376762390137,-203.860977172852,-78.3797760009766,-83.7061080932617,-191.844802856445,-30.152551651001,\r\n-87.916618347168,-196.197219848633,-29.2222595214844,-90.6071853637695,-213.436920166016,-34.4177665710449,-85.7961120605469,-215.358108520508,-50.6591606140137,-86.798210144043,-213.312911987305,-44.7562828063965,-88.1066436767578,-221.488693237305,-60.0589828491211,-82.4249877929688,-165.044174194336,-33.8912200927734,-83.1242523193359,-178.74951171875,-31.2704601287842,-57.4467353820801,-139.551666259766,-46.0418090820313,-74.8616485595703,-141.768890380859,-42.2227363586426,-63.802059173584,-133.846115112305,-46.0393104553223,-32.3630752563477,-177.765426635742,-79.9019241333008,-31.208963394165,-192.057815551758,-77.2953720092773,-38.3058586120605,-198.313446044922,-73.1465606689453,-33.6445007324219,-167.626434326172,-82.5147857666016,-39.0223274230957,-154.535140991211,-79.9705352783203,-55.6039543151855,-123.121063232422,-59.9872741699219,-53.1890144348145,-123.559104919434,-65.4261016845703,-49.8338890075684,-125.644317626953,-73.6540145874023,-55.1767120361328,-137.811508178711,-49.5734558105469,-49.7297782897949,-207.116287231445,-81.809814453125,-63.6426429748535,-213.428924560547,-82.3724670410156,-67.8798599243164,-214.871063232422,-79.9051208496094,-74.3252944946289,-219.496520996094,-76.3355712890625,-79.5587997436523,-222.702819824219,-72.754524230957,-84.2616577148438,-187.211334228516,-30.3309688568115,-95.6953811645508,-196.092208862305,-26.0761528015137,-90.0424346923828,-206.8642578125,-29.8296184539795,-93.9383163452148,-215.592132568359,-31.9948310852051,-87.8439102172852,-219.923538208008,-53.8654747009277,-88.9142150878906,-224.768020629883,-63.4867172241211,-84.2611618041992,-221.121673583984,-66.8788528442383,-84.4823837280273,-173.272979736328,-32.1676483154297,-82.5371932983398,-158.926574707031,-35.6239852905273,-76.8761367797852,-153.648056030273,-36.7256927490234,-60.586841583252,-127.340484619141,-50.8829803466797,-70.3526992797852,-125.693313598633,-49.2504234313965,-67.3536071777344,-128.063537597656,-48.1865196228027,-31.0621490478516,-171.842849731445,-84.4457778930664,-27.099760055542,-181.825820922852,-84.0771331787109,\r\n-29.1743640899658,-178.250473022461,-83.5288848876953,-31.7470169067383,-196.975296020508,-76.9717407226563,-37.8723182678223,-201.073699951172,-76.6895141601563,-43.8543014526367,-144.810195922852,-75.2446670532227,-45.7308883666992,-140.252746582031,-73.4210891723633,-42.7044906616211,-145.251235961914,-79.9950332641602,-37.3799667358398,-156.619354248047,-83.2320556640625,-57.1545066833496,-126.445388793945,-54.54833984375,-47.7346839904785,-131.035827636719,-74.7504196166992,-51.0289077758789,-210.498626708984,-85.0313262939453,-59.3932266235352,-211.999771118164,-83.6245880126953,-72.2765884399414,-220.462600708008,-80.1631546020508,-84.4973831176758,-225.896133422852,-69.7149276733398,-43.0641250610352,-206.679244995117,-82.6919021606445,-90.4575729370117,-187.105346679688,-28.8360214233398,-89.9467163085938,-192.01481628418,-28.5783958435059,-93.541877746582,-201.408737182617,-27.5788993835449,-91.9755172729492,-209.539535522461,-30.0233383178711,-93.2881469726563,-217.827346801758,-34.5179786682129,-91.2527465820313,-218.550430297852,-42.0786209106445,-91.5950775146484,-226.260177612305,-52.2878189086914,-90.7548980712891,-226.631195068359,-60.0133781433105,-85.7819137573242,-167.008377075195,-33.6283912658691,-87.377067565918,-182.495880126953,-30.2812633514404,-57.6416549682617,-130.477783203125,-51.450439453125,-81.6181030273438,-148.834594726563,-39.7768936157227,-73.6865234375,-126.606407165527,-49.3291282653809,-63.7542533874512,-122.686027526855,-51.5689506530762,-28.1056594848633,-191.154739379883,-80.5206832885742,-28.4066886901855,-196.369247436523,-79.1259460449219,-34.5334892272949,-200.934677124023,-77.8423233032227,-33.8938293457031,-161.435821533203,-86.8555068969727,-42.0301246643066,-144.282150268555,-82.9266204833984,-57.7065582275391,-121.057861328125,-57.4546279907227,-55.2802238464355,-116.61442565918,-66.2527923583984,-53.4550437927246,-118.676628112793,-70.4377975463867,-48.3471412658691,-124.473197937012,-80.0093383789063,-58.7858657836914,-215.579116821289,-86.7835998535156,-66.3619079589844,-216.435211181641,-82.842414855957,\r\n-81.910530090332,-227.645309448242,-76.3795776367188,-83.3691787719727,-227.692306518555,-73.0765609741211,-101.710472106934,-200.458633422852,-24.8942356109619,-97.1979293823242,-191.867797851563,-25.2438697814941,-102.368537902832,-210.627639770508,-27.652307510376,-102.075508117676,-205.831176757813,-26.0759525299072,-96.7721862792969,-220.969650268555,-33.5974884033203,-97.5159606933594,-215.570114135742,-30.6960048675537,-92.0387268066406,-233.440872192383,-63.5948295593262,-89.0424346923828,-229.116439819336,-66.3987045288086,-88.2322463989258,-177.694412231445,-30.9334278106689,-89.0611343383789,-172.687927246094,-31.9416255950928,-82.5955963134766,-153.963088989258,-37.4047622680664,-86.0254364013672,-156.461334228516,-36.7157936096191,-80.3002700805664,-127.355484008789,-50.7122650146484,-70.3601989746094,-120.871841430664,-51.0521965026855,-67.4620132446289,-121.334884643555,-51.1049041748047,-60.5927391052246,-120.899848937988,-54.0327911376953,-28.0570545196533,-171.303787231445,-88.3097457885742,-25.2821826934814,-195.468154907227,-81.3635711669922,-25.277982711792,-176.859329223633,-87.7035903930664,-31.2821712493896,-200.706665039063,-78.8922271728516,-38.1228408813477,-204.636047363281,-80.7365112304688,-30.8058242797852,-164.475112915039,-89.5202713012695,-44.2962455749512,-140.697799682617,-78.5462951660156,-45.5189628601074,-136.682403564453,-77.0651473999023,-37.4338760375977,-152.049896240234,-86.4316635131836,-57.8915786743164,-116.251388549805,-60.2007942199707,-53.2816276550293,-113.26309967041,-79.4152755737305,-43.9639129638672,-131.494873046875,-85.2798538208008,-43.6581802368164,-210.417617797852,-86.0361251831055,-64.3154067993164,-218.156372070313,-85.3909683227539,-70.8195495605469,-223.379898071289,-83.7485046386719,-79.7482147216797,-228.181350708008,-79.61669921875,-86.4256744384766,-233.154846191406,-72.8123321533203,-97.6876831054688,-187.625381469727,-25.5332984924316,-95.3550491333008,-182.100830078125,-28.02024269104,-104.471740722656,-191.913803100586,-22.9542446136475,-94.5161666870117,-221.921737670898,-37.5611763000488,\r\n-93.5824737548828,-222.981857299805,-42.8921012878418,-93.6156768798828,-231.482696533203,-53.3422241210938,-92.4505615234375,-231.355667114258,-60.2100982666016,-88.4563751220703,-234.165954589844,-69.6886215209961,-89.3340530395508,-155.595245361328,-36.9555168151855,-83.2616577148438,-138.451568603516,-45.3307418823242,-86.1217422485352,-150.228729248047,-39.1796340942383,-80.592399597168,-121.600914001465,-52.6539573669434,-73.5142059326172,-120.871841430664,-51.2977256774902,-67.3451080322266,-112.350006103516,-53.6268501281738,-64.132194519043,-114.194190979004,-54.2288093566895,-22.0917701721191,-182.748916625977,-87.4145660400391,-28.5829067230225,-201.091705322266,-79.9674301147461,-34.7736129760742,-205.098098754883,-81.5348815917969,-33.1484565734863,-158.169509887695,-89.9323120117188,-42.7859992980957,-136.258346557617,-84.8783111572266,-40.0831336975098,-144.34114074707,-86.0437240600586,-60.6411476135254,-116.385406494141,-56.0187873840332,-55.6498603820801,-112.002975463867,-69.1530685424805,-56.9365844726563,-111.337913513184,-65.0542755126953,-54.4196395874023,-112.199996948242,-76.4504852294922,-49.035213470459,-119.830741882324,-82.9187240600586,-49.6788711547852,-114.048179626465,-86.1440353393555,-38.3239593505859,-208.487426757813,-84.558479309082,-44.5199699401855,-214.071975708008,-88.3863525390625,-50.6276664733887,-214.304992675781,-87.9550170898438,-58.7485618591309,-219.612518310547,-88.950309753418,-67.1482849121094,-222.909851074219,-86.1289367675781,-74.2463836669922,-227.294281005859,-83.5637817382813,-82.7117080688477,-232.341766357422,-79.7063064575195,-84.6951065063477,-232.250762939453,-76.476188659668,-106.718963623047,-197.418350219727,-22.5193023681641,-106.156913757324,-201.416732788086,-23.4366931915283,-104.630760192871,-187.317352294922,-23.0341548919678,-105.093803405762,-221.053665161133,-30.775411605835,-109.696258544922,-211.549743652344,-25.1090564727783,-101.848487854004,-220.127578735352,-31.2866611480713,-96.6479721069336,-225.907135009766,-36.7402992248535,-94.7388916015625,-226.564208984375,-44.9749031066895,\r\n-93.2472457885742,-235.939117431641,-61.5554275512695,-93.9334106445313,-174.472091674805,-30.4721813201904,-92.3583526611328,-160.658752441406,-34.9783248901367,-83.2422637939453,-129.563690185547,-50.0312995910645,-83.3520736694336,-123.332084655762,-52.5031433105469,-71.4052047729492,-112.856056213379,-52.9665870666504,-27.2049713134766,-162.748947143555,-94.2674331665039,-23.7844352722168,-170.58171081543,-92.5821685791016,-22.3714962005615,-194.917098999023,-83.3885650634766,-25.7390289306641,-200.225616455078,-80.9648284912109,-20.7266368865967,-176.910339355469,-91.2257385253906,-31.4694900512695,-204.968078613281,-81.7770080566406,-30.5348987579346,-158.243499755859,-93.0952224731445,-36.526683807373,-148.281524658203,-89.1754302978516,-60.4292259216309,-111.512924194336,-57.4299240112305,-58.1217994689941,-111.68293762207,-61.0164756774902,-53.5246505737305,-108.888671875,-81.8530120849609,-44.0529251098633,-122.518005371094,-92.265739440918,-35.8705177307129,-214.146987915039,-88.1112289428711,-51.1860198974609,-218.655426025391,-90.1795349121094,-63.8510627746582,-223.092864990234,-88.02392578125,-70.901252746582,-229.203460693359,-86.4528656005859,-81.6579055786133,-235.688095092773,-82.3766708374023,-88.8916168212891,-240.560577392578,-71.9967498779297,-86.6402969360352,-236.865203857422,-75.7231216430664,-101.458442687988,-183.273956298828,-25.4174880981445,-108.484130859375,-192.743896484375,-20.9565505981445,-109.078193664551,-206.585250854492,-23.2713775634766,-108.383125305176,-187.702392578125,-21.0406589508057,-108.349128723145,-217.751327514648,-28.7816181182861,-98.8503952026367,-224.522003173828,-33.4992752075195,-96.6694793701172,-223.823928833008,-34.5741844177246,-96.1803283691406,-230.857635498047,-45.861888885498,-93.4718704223633,-239.853500366211,-62.0093727111816,-98.7063827514648,-164.133087158203,-32.9391250610352,-92.3994598388672,-147.482452392578,-39.543872833252,-89.4540710449219,-148.793594360352,-39.5111694335938,-98.9754028320313,-172.385894775391,-29.8928260803223,-86.211051940918,-127.079452514648,-50.8714828491211,\r\n-86.1098403930664,-136.955429077148,-46.0115051269531,-83.2699584960938,-111.193893432617,-54.7721633911133,-67.1585922241211,-106.975479125977,-55.556640625,-12.8924684524536,-188.354461669922,-91.3422470092773,-22.130973815918,-200.608657836914,-82.5339813232422,-14.2596025466919,-181.78581237793,-93.1064224243164,-28.3012790679932,-204.880081176758,-82.2475509643555,-34.4633827209473,-209.777557373047,-85.4538726806641,-32.9770355224609,-146.079315185547,-93.9789047241211,-40.7737998962402,-131.82292175293,-90.9567108154297,-38.2866554260254,-136.500381469727,-91.5056610107422,-36.3236656188965,-140.989807128906,-91.8612976074219,-56.2554168701172,-107.58854675293,-70.4646987915039,-57.405330657959,-107.034492492676,-64.8419494628906,-55.5543479919434,-105.95238494873,-76.7565155029297,-47.3297424316406,-116.65242767334,-88.9166107177734,-51.0281066894531,-107.543533325195,-86.9970169067383,-41.4849700927734,-218.533401489258,-90.2031402587891,-46.3938522338867,-218.332397460938,-90.426155090332,-56.8483734130859,-222.169769287109,-90.3524475097656,-61.0112838745117,-223.591918945313,-89.3023452758789,-84.8518218994141,-237.34326171875,-79.6445999145508,-102.199523925781,-178.211471557617,-27.0342464447021,-113.957672119141,-201.815780639648,-19.0566635131836,-114.022674560547,-192.89289855957,-17.4144039154053,-108.815170288086,-181.756805419922,-21.9489479064941,-105.404838562012,-183.082946777344,-23.6792163848877,-107.130004882813,-231.687698364258,-32.7793083190918,-109.525238037109,-226.076156616211,-31.3970737457275,-114.626739501953,-219.94255065918,-27.7553157806396,-114.732749938965,-211.157684326172,-22.414493560791,-102.04850769043,-231.04264831543,-33.5671844482422,-97.7800903320313,-229.937530517578,-37.3140563964844,-97.2844314575195,-234.741012573242,-45.4840507507324,-94.7268905639648,-235.899124145508,-53.808967590332,-95.2769470214844,-239.978515625,-53.7393646240234,-91.555778503418,-241.43864440918,-67.0016632080078,-97.730583190918,-155.772262573242,-35.1715393066406,-96.0934219360352,-146.702377319336,-39.0050201416016,\r\n-89.3245544433594,-138.370559692383,-44.9644012451172,-102.165512084961,-169.084564208984,-29.9077262878418,-79.2513732910156,-111.790954589844,-54.4865379333496,-87.0131378173828,-112.235000610352,-54.1350021362305,-70.3699035644531,-107.024490356445,-54.980583190918,-63.884765625,-107.148498535156,-56.2131042480469,-22.6277236938477,-165.307205200195,-96.590461730957,-27.2040691375732,-155.671264648438,-97.1065063476563,-17.2450942993164,-196.137222290039,-85.952522277832,-18.5723247528076,-200.101608276367,-83.8780136108398,-24.222677230835,-205.139099121094,-83.3098602294922,-13.5286312103271,-176.356292724609,-96.3344345092773,-29.2104682922363,-209.011474609375,-84.7126007080078,-28.430591583252,-150.86279296875,-97.3235321044922,-58.7268562316895,-107.634544372559,-59.9727745056152,-56.3070220947266,-103.009094238281,-73.0050506591797,-54.9331893920898,-102.689064025879,-78.6705017089844,-49.7205772399902,-108.63264465332,-89.9589080810547,-40.8115043640137,-126.361381530762,-95.6964721679688,-47.7767868041992,-109.010681152344,-95.5942687988281,-52.6841659545898,-103.678161621094,-83.5764846801758,-34.8489189147949,-218.319396972656,-89.3023452758789,-46.5759696960449,-223.075866699219,-91.8409957885742,-52.1187133789063,-222.859832763672,-91.4021530151367,-65.7695541381836,-232.263763427734,-89.6862869262695,-78.4070892333984,-238.061325073242,-85.2316513061523,-82.7220077514648,-240.26155090332,-82.8060150146484,-85.6847076416016,-241.401657104492,-79.8868255615234,-105.350830078125,-176.564300537109,-25.9740428924561,-116.787948608398,-197.449340820313,-16.3325958251953,-114.275703430176,-188.047439575195,-17.005163192749,-116.217895507813,-206.538238525391,-19.4665031433105,-114.193695068359,-181.450775146484,-18.0427646636963,-116.112884521484,-227.373275756836,-30.8727207183838,-98.951904296875,-228.973434448242,-34.6363906860352,-93.1863403320313,-243.15283203125,-59.8991661071777,-91.3763656616211,-244.040908813477,-64.7995452880859,-89.2904586791992,-244.020904541016,-70.1023635864258,-102.12451171875,-160.485733032227,-32.9105186462402,\r\n-93.9360122680664,-140.841796875,-42.3288421630859,-86.4033737182617,-120.898849487305,-52.668155670166,-89.5595779418945,-130.86181640625,-47.9714965820313,-79.0867538452148,-106.949485778809,-55.6553497314453,-84.9006195068359,-107.087493896484,-55.8464698791504,-73.9478530883789,-105.056289672852,-55.7033538818359,-63.7917594909668,-102.368034362793,-57.779857635498,-61.0917892456055,-106.59944152832,-57.2703094482422,-20.6733303070068,-158.264495849609,-101.094909667969,-12.2687082290649,-195.124114990234,-89.0674209594727,-8.56474494934082,-187.706390380859,-93.733283996582,-18.9140586853027,-205.544143676758,-83.9755249023438,-7.4053111076355,-179.068542480469,-98.3245315551758,-27.1612663269043,-146.649368286133,-99.835578918457,-37.9956283569336,-128.545608520508,-98.7583694458008,-33.3322715759277,-137.472473144531,-98.4273376464844,-32.7244148254395,-141.73388671875,-96.126220703125,-58.419132232666,-103.106101989746,-63.5542221069336,-57.0114936828613,-98.7974853515625,-71.1874694824219,-45.4128532409668,-114.156181335449,-96.7323684692383,-49.6180686950684,-103.288124084473,-93.0563125610352,-51.0332069396973,-100.717872619629,-87.6882858276367,-27.2387733459473,-213.552917480469,-87.0293273925781,-40.8457069396973,-222.413787841797,-90.8542022705078,-58.6650543212891,-230.28857421875,-91.4052505493164,-64.8651580810547,-238.057327270508,-91.8684005737305,-73.0753707885742,-240.249542236328,-88.8047027587891,-86.7447052001953,-244.346939086914,-75.8499298095703,-118.990165710449,-202.392837524414,-16.3467979431152,-119.620223999023,-192.472854614258,-12.917462348938,-114.732749938965,-172.550903320313,-20.1644725799561,-101.730476379395,-237.067230224609,-34.8962135314941,-114.395713806152,-231.814727783203,-32.310661315918,-119.092178344727,-225.079055786133,-28.8885269165039,-119.625221252441,-211.007675170898,-20.2612819671631,-99.4201507568359,-236.83821105957,-35.3962631225586,-99.1309204101563,-238.812408447266,-40.9646110534668,-94.9067077636719,-242.884796142578,-54.1863059997559,-102.056510925293,-151.02880859375,-34.7585029602051,\r\n-100.278335571289,-148.424545288086,-36.6885948181152,-99.3404388427734,-142.249938964844,-39.6153793334961,-92.8087997436523,-135.388259887695,-45.0962142944336,-105.884880065918,-166.545333862305,-28.7203102111816,-89.2004470825195,-124.114158630371,-50.8855819702148,-92.4533615112305,-129.043655395508,-47.3134307861328,-94.587776184082,-112.261001586914,-51.7257652282715,-91.5884780883789,-106.365425109863,-55.0211868286133,-73.1005706787109,-96.011604309082,-59.0643844604492,-16.2848014831543,-161.452819824219,-102.515045166016,-22.0716686248779,-150.339721679688,-102.872077941895,-13.9948768615723,-168.218475341797,-100.565856933594,-15.4197158813477,-200.088607788086,-85.2570495605469,-8.37502574920654,-195.080123901367,-90.7550888061523,-12.2298040390015,-199.988586425781,-86.674186706543,-15.9324674606323,-203.94499206543,-84.1596450805664,-28.4585933685303,-141.96891784668,-101.027900695801,-60.6232452392578,-102.599052429199,-59.6403388977051,-58.6259498596191,-98.4736480712891,-67.3382949829102,-52.5300521850586,-97.8522872924805,-82.7927093505859,-43.6064796447754,-112.917060852051,-100.598854064941,-44.7588920593262,-108.701652526855,-100.925880432129,-34.037540435791,-222.475799560547,-89.6235809326172,-23.4151000976563,-218.037368774414,-88.0967254638672,-51.8214836120605,-230.591598510742,-92.7348861694336,-55.2629203796387,-230.391586303711,-92.2837371826172,-59.7220573425293,-236.341156005859,-93.0869216918945,-79.2985763549805,-243.570861816406,-84.5517807006836,-84.5435943603516,-243.498870849609,-80.658203125,-120.808349609375,-196.425247192383,-12.6044311523438,-120.263290405273,-187.772399902344,-11.6808414459229,-116.573928833008,-183.438980102539,-15.6437301635742,-121.278388977051,-206.442230224609,-16.7002334594727,-118.024070739746,-176.290267944336,-15.804744720459,-108.352127075195,-235.279052734375,-33.7321014404297,-117.911056518555,-235.06103515625,-32.5706901550293,-127.959045410156,-220.074554443359,-22.6756191253662,-121.307388305664,-228.502380371094,-29.4686832427979,-98.7430801391602,-235.836120605469,-37.2406463623047,\r\n-98.2010269165039,-239.915512084961,-45.4546508789063,-97.2282333374023,-243.281829833984,-48.1609153747559,-105.564849853516,-155.35823059082,-32.1940498352051,-98.7746887207031,-134.217147827148,-42.7379837036133,-106.07389831543,-160.502731323242,-30.6794013977051,-93.6417846679688,-118.81364440918,-50.1020050048828,-92.4720687866211,-99.6791687011719,-57.6917495727539,-78.2603759765625,-95.9730072021484,-59.2290992736816,-69.9920654296875,-93.7572860717773,-60.7078475952148,-18.675235748291,-148.275527954102,-106.426422119141,-9.4941349029541,-204.146011352539,-85.5283813476563,-4.21834802627563,-190.344650268555,-94.3938446044922,-14.158091545105,-209.241500854492,-84.9605178833008,-20.2754936218262,-214.375015258789,-87.0318222045898,-10.0813932418823,-164.091079711914,-104.865272521973,-22.5610160827637,-144.303146362305,-105.33731842041,-35.8237152099609,-130.226760864258,-100.698860168457,-60.8203620910645,-97.8602905273438,-63.5975303649902,-57.605052947998,-94.1272201538086,-70.7440338134766,-55.6388549804688,-94.4878616333008,-74.657112121582,-47.4350547790527,-104.738258361816,-97.9954986572266,-38.6393928527832,-116.421409606934,-105.283309936523,-48.8366928100586,-98.4594497680664,-95.0374145507813,-52.7714767456055,-90.4005584716797,-81.1809539794922,-38.2312507629395,-230.804611206055,-90.5253677368164,-25.1092662811279,-222.728820800781,-88.5381698608398,-48.073917388916,-230.624603271484,-92.5849685668945,-56.1098022460938,-235.7041015625,-93.5824661254883,-60.8454666137695,-241.450668334961,-94.0478134155273,-69.6172256469727,-243.926910400391,-90.7685928344727,-74.1524658203125,-244.821990966797,-88.1868438720703,-83.3402709960938,-245.308029174805,-79.1182479858398,-122.894546508789,-200.859680175781,-12.4079122543335,-123.518615722656,-191.899795532227,-7.85263586044312,-118.032073974609,-166.079284667969,-19.8283405303955,-115.221794128418,-160.998779296875,-23.9760456085205,-100.58536529541,-239.558471679688,-37.3520584106445,-104.983787536621,-240.281539916992,-36.1602401733398,-109.504234313965,-240.671585083008,-35.4489707946777,\r\n-113.707641601563,-240.793594360352,-34.6205863952637,-128.729110717773,-225.040054321289,-24.9020366668701,-128.161071777344,-230.479583740234,-27.2587661743164,-126.624908447266,-212.853851318359,-18.3776969909668,-123.756637573242,-209.307510375977,-17.0352649688721,-100.924392700195,-244.074905395508,-40.4093551635742,-105.397834777832,-145.456253051758,-34.5840835571289,-105.395835876465,-150.19873046875,-33.0849380493164,-102.864585876465,-139.183639526367,-39.0008201599121,-97.5364685058594,-109.89476776123,-52.3868293762207,-96.1423263549805,-118.922653198242,-48.9032859802246,-95.863395690918,-101.896987915039,-56.6289482116699,-88.4577713012695,-100.983894348145,-57.533634185791,-77.0986557006836,-89.0923309326172,-61.8823623657227,-63.8632621765137,-97.6219635009766,-60.7271461486816,-72.9453506469727,-88.0766296386719,-62.7084426879883,-15.8954629898071,-144.976211547852,-109.760757446289,-12.6003398895264,-205.219116210938,-84.7199935913086,-1.20240294933319,-200.653671264648,-89.68798828125,0.0560920014977455,-177.800430297852,-101.960990905762,-1.36951994895935,-194.987106323242,-92.9528045654297,-4.04618215560913,-166.313293457031,-106.463424682617,-28.0460529327393,-135.238250732422,-105.79736328125,-32.6721076965332,-130.928833007813,-103.921180725098,-60.5387382507324,-92.86669921875,-67.23388671875,-38.8705177307129,-111.013877868652,-106.834465026855,-43.9566116333008,-103.910186767578,-102.662055969238,-50.4874534606934,-90.6561813354492,-89.9927139282227,-28.9124374389648,-229.221466064453,-88.7977905273438,-16.3480072021484,-222.55680847168,-87.6747894287109,-13.5126285552979,-213.640930175781,-86.1354370117188,-48.8974952697754,-235.429077148438,-93.4113540649414,-52.7117691040039,-235.601089477539,-93.7744827270508,-57.2698173522949,-241.065628051758,-94.2709350585938,-65.0100784301758,-242.60676574707,-92.553466796875,-124.649719238281,-196.148223876953,-7.88871908187866,-124.401695251465,-187.295349121094,-5.32283782958984,-119.807243347168,-183.178939819336,-12.2398958206177,-125.370788574219,-204.548049926758,-12.6031312942505,\r\n-119.893257141113,-166.070266723633,-17.779239654541,-120.367301940918,-241.889694213867,-33.6299934387207,-125.655822753906,-239.381454467773,-31.0922431945801,-134.289672851563,-224.570007324219,-22.8381328582764,-134.986724853516,-218.107376098633,-18.8981475830078,-105.446838378906,-140.632781982422,-36.8475074768066,-114.751754760742,-154.463134765625,-26.4102840423584,-114.830757141113,-151.061798095703,-26.8692283630371,-102.618560791016,-128.940628051758,-42.8622970581055,-97.9811096191406,-125.548309326172,-45.4950561523438,-83.1609497070313,-96.5096588134766,-59.1321907043457,-94.7455902099609,-95.8911972045898,-58.987377166748,-67.1758880615234,-92.908203125,-62.4713172912598,-19.6427307128906,-131.603897094727,-113.793144226074,-13.0917882919312,-146.881393432617,-110.374816894531,-24.2689838409424,-133.459075927734,-109.825759887695,-3.33693194389343,-204.791061401367,-86.6734848022461,-8.97199440002441,-209.586532592773,-84.3612670898438,0.521701991558075,-188.572479248047,-96.9266967773438,-7.15451622009277,-161.167785644531,-107.469528198242,-32.8925285339355,-124.577209472656,-107.265510559082,-63.9804763793945,-92.8499984741211,-64.4190063476563,-56.7275619506836,-85.7030029296875,-72.8635406494141,-54.3137283325195,-86.1995468139648,-76.406379699707,-52.2446250915527,-85.3257598876953,-80.5150833129883,-45.4258575439453,-100.223815917969,-100.748870849609,-41.308650970459,-102.249015808105,-105.538345336914,-34.8482208251953,-116.17138671875,-108.847663879395,-48.5917663574219,-90.2959518432617,-93.301139831543,-50.1048164367676,-85.9533233642578,-88.6214752197266,-32.4677848815918,-233.451873779297,-89.7507934570313,-11.3062133789063,-218.26139831543,-86.7871017456055,-52.9571914672852,-241.07861328125,-93.8689956665039,-63.1111907958984,-245.009994506836,-91.6208724975586,-59.4057273864746,-244.785980224609,-92.0734252929688,-67.6621322631836,-245.710083007813,-88.5320739746094,-71.485107421875,-245.836090087891,-87.8381042480469,-125.904838562012,-200.40364074707,-9.03648090362549,-127.519004821777,-191.334747314453,-0.527252972126007,\r\n-122.75853729248,-182.877914428711,-7.90560102462769,-120.697334289551,-176.233276367188,-12.2900009155273,-121.11937713623,-161.066772460938,-17.7411365509033,-118.185089111328,-160.345718383789,-21.5269050598145,-135.725799560547,-230.947631835938,-24.787525177002,-131.01335144043,-240.583572387695,-29.2418613433838,-137.988037109375,-214.434005737305,-14.6066274642944,-127.254974365234,-208.118408203125,-14.1866855621338,-110.939376831055,-145.799285888672,-30.6733016967773,-108.693153381348,-140.697799682617,-34.8664131164551,-105.40283203125,-135.26025390625,-39.5014686584473,-118.328102111816,-151.230819702148,-23.8628349304199,-99.3809432983398,-116.620429992676,-49.035701751709,-100.104316711426,-106.255416870117,-54.418529510498,-99.2401351928711,-98.1672210693359,-58.5567321777344,-88.8417129516602,-93.9832077026367,-59.3407096862793,-76.6206130981445,-84.0877380371094,-63.2920989990234,-88.1488418579102,-84.3758697509766,-62.9305648803711,-67.235595703125,-88.242546081543,-65.186279296875,-14.1787948608398,-136.297348022461,-114.633224487305,-0.142412006855011,-209.371520996094,-84.8260116577148,-4.05784320831299,-209.292510986328,-84.5583801269531,6.25554800033569,-198.757476806641,-92.6906814575195,0.448931992053986,-167.079376220703,-107.539535522461,3.91261792182922,-192.535858154297,-95.7015762329102,-1.85067701339722,-161.773849487305,-109.050682067871,-64.030876159668,-88.2540512084961,-66.3278961181641,-61.2510108947754,-83.709602355957,-68.2007827758789,-47.2048301696777,-95.616569519043,-97.1146087646484,-38.3496627807617,-101.154907226563,-108.254600524902,-34.3365707397461,-111.676940917969,-110.017776489258,-25.0789623260498,-233.320861816406,-88.427360534668,-36.9959297180176,-237.858322143555,-91.1748275756836,-43.513069152832,-238.209350585938,-92.602668762207,-10.2020053863525,-222.696823120117,-86.7418975830078,-53.8157768249512,-245.137023925781,-90.8184967041016,-128.246078491211,-200.108612060547,-5.72223711013794,-128.630111694336,-195.675186157227,-0.706269979476929,-126.847930908203,-184.293060302734,0.353917986154556,\r\n-129.564208984375,-204.826065063477,-9.51016807556152,-122.753540039063,-165.580215454102,-13.5692262649536,-137.51399230957,-237.877319335938,-26.3634796142578,-138.031036376953,-222.491806030273,-20.7618312835693,-140.617294311523,-226.238174438477,-21.5591087341309,-140.839309692383,-218.613418579102,-17.1812801361084,-132.008438110352,-209.743560791016,-12.9971704483032,-108.821174621582,-135.839309692383,-37.9969177246094,-115.066780090332,-146.086318969727,-28.2343635559082,-105.397834777832,-126.706413269043,-43.1969299316406,-102.888580322266,-121.901947021484,-45.5374603271484,-99.3032302856445,-121.415893554688,-46.6293678283691,-101.540451049805,-114.16918182373,-50.1958122253418,-94.033821105957,-90.5438766479492,-61.075080871582,-80.1998672485352,-84.2109527587891,-63.0791778564453,-73.5545120239258,-83.5640869140625,-64.0923767089844,-69.1634826660156,-84.2360534667969,-65.45361328125,-23.172477722168,-121.843940734863,-115.311294555664,-14.4536218643188,-131.537887573242,-116.36540222168,-9.33386039733887,-138.710601806641,-115.392303466797,-9.89515495300293,-149.454650878906,-110.607833862305,3.93668103218079,-209.2705078125,-85.0117263793945,5.3104248046875,-205.890167236328,-87.5654830932617,-5.34426879882813,-213.411926269531,-84.3783645629883,3.28004598617554,-167.613418579102,-107.845565795898,-30.971040725708,-122.430999755859,-109.719749450684,-58.3692245483398,-82.9134216308594,-71.3257827758789,-53.3074264526367,-81.7261123657227,-77.1856536865234,-49.0935173034668,-81.1431503295898,-86.0829315185547,-42.7453956604004,-93.8082962036133,-102.942085266113,-35.0799407958984,-105.438331604004,-110.131790161133,-40.1593437194824,-95.2923355102539,-106.638450622559,-23.2897872924805,-115.990364074707,-116.706436157227,-45.4263572692871,-85.4233703613281,-95.4068450927734,-45.0140151977539,-91.114128112793,-98.5987548828125,-31.5009937286377,-238.72639465332,-89.74609375,-39.7575988769531,-235.832107543945,-91.4323501586914,-47.2368316650391,-240.235549926758,-93.270637512207,-24.8347396850586,-237.208236694336,-88.2876510620117,\r\n-3.85794305801392,-218.045364379883,-84.7593078613281,-15.3873128890991,-229.759521484375,-87.2027435302734,-49.3624420166016,-244.975006103516,-90.3738555908203,-63.4225196838379,-246.168121337891,-86.8779144287109,-129.827224731445,-190.726684570313,5.74273586273193,-122.884544372559,-178.805511474609,-7.82650279998779,-128.370086669922,-185.673187255859,3.81371688842773,-122.833541870117,-174.072052001953,-9.01737976074219,-124.245681762695,-161.062774658203,-12.7540464401245,-121.256385803223,-155.97428894043,-18.8671436309814,-143.702575683594,-232.440780639648,-22.0674591064453,-145.560760498047,-216.575225830078,-12.9598655700684,-138.828109741211,-211.93376159668,-11.3147048950195,-111.828460693359,-140.26774597168,-33.556583404541,-118.19408416748,-146.212326049805,-26.3071746826172,-115.169792175293,-141.122817993164,-31.6432971954346,-108.573150634766,-130.533782958984,-41.2886428833008,-106.230911254883,-111.903961181641,-51.7541656494141,-106.338928222656,-103.208114624023,-56.5182342529297,-99.3645401000977,-91.682991027832,-61.7827491760254,-80.0272445678711,-75.6143112182617,-64.0965728759766,-72.8233413696289,-78.8678283691406,-64.9088592529297,-85.0424346923828,-80.941032409668,-63.7276420593262,-19.2981967926025,-122.02995300293,-117.368499755859,1.54781603813171,-214.126983642578,-83.269157409668,-1.67734003067017,-214.067977905273,-83.8536148071289,10.188793182373,-203.112899780273,-90.2990493774414,8.93546009063721,-197.99040222168,-93.3256454467773,6.87355804443359,-178.462493896484,-102.722061157227,-5.94457817077637,-152.545959472656,-110.551826477051,-64.0652847290039,-83.6484909057617,-66.5620193481445,-60.6851539611816,-78.4802932739258,-70.9412460327148,-56.6384544372559,-79.9203262329102,-73.7882308959961,-50.640869140625,-79.6956100463867,-80.3318710327148,-45.5832710266113,-78.4065856933594,-90.4923629760742,-33.8173217773438,-98.1305160522461,-112.43701171875,-37.4261703491211,-95.9525985717773,-109.792755126953,-30.8593292236328,-107.127494812012,-112.619033813477,-27.9914474487305,-239.161437988281,-88.9422073364258,\r\n-38.1628456115723,-242.422760009766,-91.0630264282227,-41.1186332702637,-241.445663452148,-91.8003921508789,-45.2164344787598,-243.471862792969,-91.847297668457,-21.2760906219482,-236.117126464844,-87.8508987426758,0.398809999227524,-223.325881958008,-83.911018371582,-11.9064722061157,-237.138244628906,-85.6035842895508,-49.1998252868652,-246.518157958984,-83.9651184082031,-58.8011665344238,-246.39013671875,-86.0183258056641,-130.972351074219,-199.91259765625,-0.734046995639801,-132.354461669922,-204.205001831055,-5.69526481628418,-130.945327758789,-195.366149902344,5.31739521026611,-127.48299407959,-178.031448364258,2.9484429359436,-123.98365020752,-169.189590454102,-8.88229560852051,-126.017860412598,-161.170791625977,-8.91065883636475,-124.392700195313,-156.25129699707,-14.9263591766357,-121.211387634277,-151.245819091797,-20.69482421875,-146.821884155273,-240.207550048828,-22.9203433990479,-146.889907836914,-221.923736572266,-17.2642879486084,-148.939102172852,-225.609115600586,-18.3036918640137,-152.790481567383,-230.497589111328,-18.6623249053955,-148.702072143555,-220.244583129883,-15.1357803344727,-134.999725341797,-208.135406494141,-9.007248878479,-113.15559387207,-132.60400390625,-39.4977684020996,-121.308395385742,-146.429336547852,-23.8992385864258,-118.381103515625,-141.350860595703,-30.3445701599121,-106.478942871094,-121.325889587402,-45.720573425293,-111.169403076172,-127.050453186035,-43.3341407775879,-105.918884277344,-117.251487731934,-48.071907043457,-106.519943237305,-107.092498779297,-54.6242485046387,-105.381828308105,-93.458251953125,-61.78955078125,-94.6909790039063,-83.6524963378906,-63.9996643066406,-76.7536315917969,-74.2769775390625,-64.8192443847656,-93.6755828857422,-79.207160949707,-65.0191650390625,-16.2606983184814,-122.11897277832,-118.434600830078,-11.9483757019043,-130.78581237793,-117.225486755371,-4.41614818572998,-147.568466186523,-112.621032714844,6.35504722595215,-214.027984619141,-82.4896774291992,9.88449287414551,-208.843460083008,-85.4650726318359,6.35052680969238,-159.897674560547,-110.685844421387,\r\n6.71683311462402,-166.350296020508,-108.609642028809,-0.597820997238159,-152.650955200195,-111.404914855957,-63.9894790649414,-78.9616394042969,-67.8623504638672,-52.1121139526367,-77.3552856445313,-77.1827545166016,-45.2199363708496,-71.3673934936523,-83.5344848632813,-44.8077964782715,-73.3844909667969,-87.1707382202148,-43.2671432495117,-83.7368087768555,-98.634162902832,-40.0899353027344,-88.8898162841797,-105.971382141113,-37.5053787231445,-88.3031539916992,-109.322708129883,-23.3617935180664,-111.893966674805,-117.150482177734,-44.892204284668,-80.1338500976563,-93.0839233398438,-29.9318389892578,-241.795700073242,-87.6036758422852,-36.39697265625,-243.951904296875,-88.8112030029297,-27.662015914917,-242.675765991211,-85.5196762084961,-22.6435241699219,-241.436645507813,-85.5964813232422,-16.3099040985107,-236.52717590332,-86.8356018066406,-46.7303848266602,-246.103103637695,-88.4286651611328,-127.053955078125,-172.932952880859,1.58705902099609,-127.37198638916,-156.897384643555,-10.7864542007446,-124.471702575684,-151.523849487305,-17.6833305358887,-149.945190429688,-237.819305419922,-21.2041759490967,-154.197616577148,-219.346496582031,-11.440318107605,-143.83659362793,-213.022872924805,-9.33198070526123,-138.876113891602,-208.57844543457,-6.18436193466187,-121.512413024902,-141.464859008789,-28.9572353363037,-118.264091491699,-135.652297973633,-36.4537658691406,-113.268608093262,-118.307594299316,-48.4573440551758,-119.773239135742,-107.656555175781,-56.5850372314453,-117.916061401367,-101.141914367676,-59.5116271972656,-99.690071105957,-88.4084625244141,-63.1039810180664,-80.5234909057617,-70.3430862426758,-65.6769332885742,-83.807014465332,-71.7198257446289,-65.2033843994141,-68.3903045654297,-75.09326171875,-67.2534866333008,-67.2535934448242,-79.1453552246094,-66.2623901367188,-86.6672973632813,-71.2283782958984,-65.5979232788086,-19.1553821563721,-113.769149780273,-118.931655883789,-3.90340805053711,-138.633575439453,-116.703430175781,-3.91694903373718,-142.468963623047,-115.228286743164,5.27070093154907,-218.064361572266,-82.0170288085938,\r\n14.6756324768066,-199.386535644531,-92.5257568359375,13.7639427185059,-204.767059326172,-88.9284057617188,13.7626428604126,-192.969909667969,-95.7330780029297,10.47412109375,-168.386489868164,-107.260513305664,-64.0825805664063,-74.2690811157227,-70.3126831054688,-59.7581596374512,-75.1191635131836,-72.8708343505859,-54.9641914367676,-74.5485076904297,-74.8210296630859,-50.3195381164551,-73.1068649291992,-77.1229553222656,-47.3925476074219,-72.472900390625,-80.0457382202148,-39.3904647827148,-81.8293151855469,-105.24430847168,-34.8669242858887,-93.6152725219727,-111.968963623047,-26.7040214538574,-105.511337280273,-115.37230682373,-32.7448120117188,-242.856796264648,-87.4713745117188,-41.7873992919922,-245.673080444336,-87.7705917358398,1.87723898887634,-228.450378417969,-83.1443481445313,-17.02907371521,-242.574768066406,-83.4444732666016,-43.7589912414551,-246.559158325195,-81.9364242553711,-134.564697265625,-204.146011352539,-2.62797403335571,-133.857620239258,-199.693557739258,5.50684309005737,-127.030960083008,-164.284103393555,-3.67811703681946,-126.764923095703,-168.833541870117,-0.733455002307892,-127.685020446777,-160.593734741211,-6.02924680709839,-127.739028930664,-151.698867797852,-15.6681318283081,-124.545715332031,-146.629379272461,-21.7279243469238,-159.384124755859,-226.809234619141,-14.1494827270508,-156.774856567383,-236.06413269043,-18.6030197143555,-152.438430786133,-216.251190185547,-8.62701225280762,-156.248825073242,-222.797836303711,-13.3938093185425,-125.659820556641,-141.426849365234,-27.3757781982422,-121.737434387207,-136.391372680664,-35.3021545410156,-116.083877563477,-130.838821411133,-40.8977012634277,-118.105079650879,-126.275375366211,-44.314338684082,-119.620223999023,-112.619033813477,-53.7377624511719,-111.846466064453,-93.1842346191406,-62.8081512451172,-100.469345092773,-83.9374237060547,-64.3806076049805,-106.966987609863,-88.3634567260742,-63.8831558227539,-75.8075332641602,-69.2624893188477,-67.4057006835938,-96.2323379516602,-76.2245712280273,-65.47021484375,-12.7755565643311,-120.385795593262,-119.497711181641,\r\n-16.1474876403809,-113.902160644531,-119.806739807129,-8.99971675872803,-130.125762939453,-117.64852142334,2.8935980796814,-151.678863525391,-112.80305480957,12.7175407409668,-214.60302734375,-80.8083190917969,13.3888072967529,-210.448608398438,-83.5940933227539,11.2179937362671,-182.094833374023,-101.274925231934,10.4993238449097,-157.80046081543,-111.645935058594,10.2221956253052,-177.517395019531,-103.337120056152,-44.8549003601074,-67.89794921875,-79.6930084228516,-41.7649002075195,-67.8246459960938,-88.8431015014648,-41.5282745361328,-72.5130004882813,-95.2354278564453,-40.1022338867188,-76.5220031738281,-101.468940734863,-31.2560691833496,-94.4485549926758,-114.17618560791,-35.101448059082,-86.0808410644531,-111.248901367188,-23.5519123077393,-103.934188842773,-117.171478271484,-31.9189338684082,-245.284027099609,-81.8095169067383,-36.4294776916504,-246.1201171875,-82.5497817993164,-24.9495506286621,-245.418045043945,-79.7424087524414,10.6177349090576,-223.546905517578,-80.9292297363281,-5.95637893676758,-236.847213745117,-84.0204315185547,-9.60242557525635,-242.060729980469,-82.2199554443359,-137.841018676758,-203.9169921875,2.34475302696228,-130.966339111328,-156.815368652344,-7.75748586654663,-130.972351074219,-152.392944335938,-13.6006288528442,-127.845031738281,-146.730377197266,-20.5278072357178,-159.450119018555,-230.552597045898,-15.7683410644531,-158.112487792969,-233.308364868164,-17.1856803894043,-157.639953613281,-219.904541015625,-9.35185241699219,-147.330947875977,-211.936767578125,-5.18527412414551,-124.824737548828,-136.398361206055,-34.6999969482422,-122.56551361084,-131.547897338867,-40.6490783691406,-123.104568481445,-126.109359741211,-45.231128692627,-123.089569091797,-111.466926574707,-54.7963676452637,-122.043464660645,-102.390029907227,-59.1020851135254,-120.365303039551,-93.0781173706055,-63.6221313476563,-83.5739898681641,-65.1343841552734,-66.8905487060547,-75.6113128662109,-64.9591598510742,-69.2835845947266,-86.6467971801758,-65.1050796508789,-66.2736892700195,-68.4584121704102,-69.1340713500977,-70.2084808349609,\r\n-95.4930572509766,-68.3871002197266,-65.8544540405273,-19.6783332824707,-101.109909057617,-118.780639648438,1.95301604270935,-137.055435180664,-117.317497253418,1.68086898326874,-144.365142822266,-115.697334289551,10.6151351928711,-219.347503662109,-80.6986083984375,17.2167835235596,-203.690963745117,-90.019416809082,19.7374286651611,-198.181427001953,-93.2278289794922,16.4139022827148,-190.186630249023,-97.4615478515625,6.90784120559692,-151.9208984375,-113.426109313965,13.7081384658813,-158.186508178711,-110.940864562988,13.334300994873,-169.774627685547,-105.940376281738,-64.3588180541992,-69.6526260375977,-71.8002319335938,-61.6292457580566,-68.0031585693359,-72.5451049804688,-51.3542366027832,-69.2755889892578,-75.0432510375977,-47.5727653503418,-68.5302124023438,-76.6079025268555,-40.2020454406738,-62.9773712158203,-84.9501190185547,-36.3959732055664,-75.2616806030273,-105.936378479004,-31.4206829071045,-85.883918762207,-113.526123046875,-36.0475387573242,-81.6479034423828,-109.412712097168,-29.4951953887939,-245.96110534668,-79.2903594970703,-40.1000328063965,-246.699172973633,-81.1032485961914,12.5139207839966,-229.075439453125,-80.100944519043,-1.90094196796417,-231.824722290039,-83.6259918212891,-13.4404220581055,-245.659072875977,-77.5279922485352,-141.527374267578,-207.769348144531,-2.08138990402222,-140.683288574219,-203.692962646484,7.13972282409668,-128.555099487305,-164.659133911133,0.186882004141808,-129.516189575195,-161.052780151367,-2.93659400939941,-131.11735534668,-146.805389404297,-19.8026351928711,-162.7724609375,-230.968627929688,-13.4230117797852,-159.828170776367,-223.632904052734,-11.433217048645,-162.042388916016,-235.555084228516,-15.7696409225464,-155.056701660156,-215.566116333008,-5.0008659362793,-128.36408996582,-136.405364990234,-34.0332298278809,-128.148056030273,-126.229370117188,-45.6960754394531,-127.358985900879,-107.057487487793,-56.7965621948242,-122.446502685547,-96.8890914916992,-61.9954681396484,-113.60863494873,-88.5595779418945,-64.2195892333984,-104.620758056641,-81.9067230224609,-64.663932800293,\r\n-90.2092514038086,-65.7756500244141,-65.8905487060547,-103.577651977539,-73.1003646850586,-64.98486328125,-11.4165239334106,-116.751441955566,-120.247779846191,-16.8388557434082,-93.9361114501953,-119.818740844727,2.10171103477478,-129.51969909668,-118.362594604492,16.3284950256348,-213.571929931641,-81.1726531982422,14.3373003005981,-218.812438964844,-79.725212097168,22.3979892730713,-194.942108154297,-94.84228515625,16.5856189727783,-184.968124389648,-100.91088104248,12.7311420440674,-152.657958984375,-112.70304107666,15.1863832473755,-178.633499145508,-103.42212677002,-55.2618217468262,-68.7236404418945,-73.9370422363281,-39.1977462768555,-58.5575370788574,-79.7326049804688,-45.8643989562988,-66.8270492553711,-76.7488174438477,-38.0528335571289,-63.7195434570313,-91.6705780029297,-39.5644798278809,-68.2711944580078,-95.1665191650391,-38.4837799072266,-73.1411666870117,-101.80997467041,-27.6375141143799,-88.2995529174805,-115.426307678223,-30.72141456604,-79.6559066772461,-112.507019042969,-18.8622531890869,-246.053115844727,-77.2415618896484,3.46704411506653,-234.991027832031,-81.4749755859375,16.6084213256836,-224.142959594727,-79.569694519043,-2.61509203910828,-239.282455444336,-81.3267669677734,-9.97188186645508,-246.076110839844,-75.6961135864258,-145.10871887207,-207.924377441406,1.39646100997925,-133.48258972168,-159.034576416016,-2.64917588233948,-138.512084960938,-151.860870361328,-11.7985534667969,-136.429885864258,-147.323440551758,-18.0838680267334,-162.905471801758,-226.598205566406,-9.22596073150635,-159.735153198242,-218.407409667969,-3.01711201667786,-161.302307128906,-222.751831054688,-8.0611572265625,-152.324432373047,-212.651840209961,-2.11363291740417,-137.634979248047,-131.510894775391,-39.7145881652832,-127.823036193848,-130.768814086914,-41.3885498046875,-130.718307495117,-117.873550415039,-51.1001052856445,-129.926239013672,-111.772956848145,-54.6562538146973,-128.201065063477,-101.386932373047,-58.9465713500977,-126.175872802734,-93.4059524536133,-62.8797569274902,-118.893157958984,-88.4668655395508,-64.2835998535156,\r\n-109.532241821289,-84.681999206543,-64.5511245727539,-88.645393371582,-61.0766868591309,-66.3027954101563,-81.5808029174805,-60.2962074279785,-68.6765289306641,-70.8886566162109,-64.9978713989258,-70.5513076782227,-103.514656066895,-62.8325576782227,-64.7389373779297,-93.4710693359375,-60.8357620239258,-65.3723068237305,-12.7211513519287,-109.267707824707,-120.403793334961,-5.48578310012817,-120.436805725098,-119.666725158691,5.66656017303467,-144.532165527344,-115.652328491211,-6.42449522018433,-128.728622436523,-117.93155670166,9.50866603851318,-125.760322570801,-118.124572753906,20.3719902038574,-204.293014526367,-89.4220657348633,28.6690044403076,-199.702560424805,-92.5564651489258,19.8237361907959,-210.202606201172,-83.7170944213867,19.7272262573242,-184.556076049805,-101.607955932617,9.7793025970459,-147.310440063477,-113.970169067383,21.6827201843262,-152.029891967773,-110.046775817871,18.9075489044189,-163.330001831055,-106.753456115723,16.4185047149658,-172.076858520508,-104.698257446289,-67.3757019042969,-64.4943161010742,-71.3856887817383,-57.7352638244629,-63.7040405273438,-72.7328186035156,-46.8808975219727,-57.9483795166016,-73.4740982055664,-45.861499786377,-61.3909149169922,-74.3904876708984,-37.3385620117188,-58.9367752075195,-84.4679718017578,-39.8758125305176,-56.1276016235352,-76.3559799194336,-33.0665435791016,-68.1159744262695,-104.27220916748,-32.6008987426758,-75.5999069213867,-109.562728881836,-24.1934757232666,-83.9953308105469,-116.210388183594,-23.4727058410645,-79.6397018432617,-115.590324401855,14.5232172012329,-237.534271240234,-78.1921539306641,17.479907989502,-228.021331787109,-79.401481628418,-6.49310207366943,-245.259033203125,-76.0468521118164,-148.703063964844,-207.420318603516,6.64580488204956,-131.28938293457,-161.492828369141,0.13934800028801,-137.546981811523,-156.642349243164,-4.95405197143555,-165.299697875977,-235.8291015625,-12.8623571395874,-166.128784179688,-231.552688598633,-8.25095367431641,-158.712066650391,-215.199081420898,1.69763004779816,-140.065231323242,-141.967910766602,-23.7659244537354,\r\n-132.591491699219,-131.313858032227,-40.5876731872559,-133.513595581055,-126.267372131348,-45.386043548584,-133.001541137695,-107.891571044922,-55.8319664001465,-131.602401733398,-100.646865844727,-58.4490203857422,-126.777923583984,-88.6510925292969,-63.7524452209473,-122.821533203125,-87.4820785522461,-64.1989898681641,-109.718254089355,-77.0326461791992,-64.3371963500977,-75.2403717041016,-60.5759353637695,-69.9242477416992,-106.078895568848,-63.4540176391602,-64.6907348632813,-8.81109809875488,-113.368110656738,-120.49080657959,-5.22326707839966,-115.845352172852,-120.163764953613,-12.7580556869507,-93.6571807861328,-120.472801208496,8.45178318023682,-135.306259155273,-116.590423583984,3.92812991142273,-121.265884399414,-119.734733581543,17.2807884216309,-218.156372070313,-79.178955078125,25.6408061981201,-204.388031005859,-90.2348403930664,28.7431125640869,-192.689880371094,-95.5253601074219,19.3993968963623,-214.884063720703,-79.9343338012695,22.5421028137207,-185.107147216797,-101.114906311035,15.0160655975342,-147.860488891602,-112.61302947998,21.2227745056152,-147.884490966797,-110.75984954834,21.7125225067139,-156.746368408203,-108.563629150391,19.6870231628418,-175.69921875,-103.712158203125,-66.6430358886719,-60.6358451843262,-71.3671951293945,-49.771484375,-52.007396697998,-71.9752426147461,-36.6637992858887,-54.5886497497559,-78.3282699584961,-34.5766944885254,-64.0895767211914,-98.4512405395508,-32.3529739379883,-59.6340446472168,-95.2961349487305,-36.9632263183594,-68.3831024169922,-99.7455673217773,-30.6570091247559,-68.2959899902344,-106.750457763672,-19.6392307281494,-86.7415008544922,-118.09056854248,-28.8862361907959,-73.1263656616211,-111.004875183105,-23.7235298156738,-75.155158996582,-114.092170715332,19.458402633667,-233.196853637695,-78.3089752197266,9.97897338867188,-242.242736816406,-76.9608306884766,28.6437015533447,-223.456893920898,-78.0768508911133,-2.27778792381287,-245.037017822266,-75.1052551269531,3.34714293479919,-242.369735717773,-77.9027328491211,-154.668670654297,-211.190689086914,4.21342706680298,\r\n-144.198638916016,-155.838272094727,-4.67129421234131,-143.800598144531,-142.689971923828,-21.5853118896484,-168.514022827148,-230.746612548828,-2.11312294006348,-163.285507202148,-222.738815307617,-3.12319207191467,-162.88346862793,-219.094467163086,1.30525195598602,-140.573272705078,-131.643890380859,-38.6925888061523,-139.881210327148,-126.65941619873,-44.1803245544434,-134.553695678711,-112.36100769043,-53.5163421630859,-134.70671081543,-120.523811340332,-48.8852882385254,-131.441390991211,-93.3375473022461,-61.3498077392578,-132.361465454102,-88.5098724365234,-62.2610969543457,-127.754028320313,-77.345573425293,-63.7276420593262,-117.341003417969,-80.3827743530273,-64.2624893188477,-109.215209960938,-70.9882583618164,-64.5918273925781,-83.2963714599609,-56.0609931945801,-68.2928848266602,-78.9536437988281,-55.6906585693359,-69.0878601074219,-90.0898361206055,-55.9957847595215,-66.0363693237305,-107.043998718262,-56.0027885437012,-64.6040267944336,-94.7138824462891,-55.6409530639648,-65.0428695678711,-9.00365734100342,-103.061103820801,-120.342788696289,-6.57078886032104,-93.9679107666016,-120.454795837402,-14.4355192184448,-89.7010879516602,-119.954750061035,10.0412788391113,-139.269638061523,-115.309295654297,7.64814376831055,-119.833740234375,-119.37769317627,14.4043064117432,-126.739418029785,-117.345497131348,22.3150825500488,-214.037979125977,-80.4548797607422,26.236665725708,-209.155487060547,-85.713996887207,30.5701904296875,-194.991104125977,-94.2193298339844,29.4024753570557,-202.985900878906,-91.2775344848633,21.7349243164063,-179.993637084961,-103.063095092773,21.12766456604,-138.675598144531,-111.172889709473,26.5369968414307,-147.399444580078,-109.608741760254,26.316873550415,-152.746963500977,-109.279708862305,24.5097961425781,-161.993865966797,-105.790367126465,21.9848499298096,-165.791244506836,-104.961280822754,28.2459621429443,-170.530715942383,-103.033088684082,-58.4068260192871,-53.6976623535156,-71.5285110473633,-38.8396110534668,-51.5886535644531,-74.6489105224609,-46.5559692382813,-48.1804237365723,-71.5455093383789,\r\n-33.3115692138672,-54.4851417541504,-82.8969192504883,-30.9611396789551,-55.3791275024414,-89.7186889648438,-30.4531898498535,-63.8818588256836,-103.068099975586,-18.425910949707,-79.4668884277344,-116.951454162598,-19.2551918029785,-73.7546234130859,-114.995262145996,20.5422077178955,-238.604370117188,-76.5268936157227,15.269190788269,-242.126724243164,-75.8262252807617,29.0432395935059,-228.441390991211,-78.0700454711914,20.3514881134033,-219.280487060547,-78.9609298706055,-157.819976806641,-210.612640380859,8.16074275970459,-145.264739990234,-152.704971313477,-8.94508266448975,-168.740036010742,-236.446166992188,-7.37903881072998,-163.354522705078,-214.65803527832,7.13137292861938,-143.502563476563,-131.862930297852,-37.062328338623,-140.321258544922,-121.966957092285,-47.0137062072754,-140.163238525391,-113.490119934082,-51.4199371337891,-134.485687255859,-100.846878051758,-57.5540351867676,-136.791915893555,-94.079216003418,-58.8735656738281,-130.383285522461,-83.7673110961914,-63.3055992126465,-71.7663421630859,-54.6513557434082,-69.7940292358398,-109.255210876465,-65.3254013061523,-65.0144653320313,-112.904571533203,-60.7639541625977,-65.7938461303711,-4.70007610321045,-110.313812255859,-120.238777160645,1.2386759519577,-114.303199768066,-120.286781311035,-6.21402406692505,-88.5662841796875,-120.591812133789,12.8061485290527,-134.401168823242,-115.66633605957,8.52029037475586,-115.685340881348,-119.507705688477,14.5000152587891,-119.031661987305,-117.95955657959,16.3161926269531,-138.509582519531,-112.729042053223,25.9379367828369,-214.706039428711,-80.0281372070313,29.9841346740723,-208.258407592773,-87.2239379882813,27.1055507659912,-184.757110595703,-100.551849365234,34.9931259155273,-189.878601074219,-96.1720199584961,38.1626319885254,-192.438858032227,-94.7204818725586,33.4138679504395,-204.440032958984,-90.2523422241211,26.6206035614014,-180.099655151367,-102.264015197754,25.905834197998,-143.076019287109,-109.550727844238,26.8602275848389,-158.732543945313,-107.168502807617,-40.082935333252,-47.9608993530273,-72.9235458374023,\r\n-33.8617248535156,-51.7161674499512,-77.7094116210938,-27.882137298584,-59.556037902832,-101.110908508301,-26.8139343261719,-56.2785148620605,-97.2626266479492,-25.8631401062012,-62.6605415344238,-105.850372314453,-24.6594219207764,-66.5978240966797,-109.49072265625,-15.7509479522705,-84.033935546875,-118.56761932373,-24.4073963165283,-70.3517990112305,-111.790954589844,27.860523223877,-233.327850341797,-77.2923736572266,32.784008026123,-224.076950073242,-77.9973373413086,26.3535766601563,-219.4375,-78.0899505615234,-148.211029052734,-146.975402832031,-14.5763244628906,-172.277389526367,-237.25325012207,-0.726140975952148,-166.997863769531,-224.346984863281,1.23623502254486,-167.80094909668,-218.574417114258,6.91653108596802,-145.107711791992,-126.596405029297,-41.8071937561035,-142.920501708984,-107.660552978516,-53.255615234375,-143.581588745117,-100.010803222656,-55.626049041748,-134.79670715332,-82.8857269287109,-61.7713508605957,-124.122665405273,-74.9656448364258,-64.3556060791016,-131.693405151367,-76.2598724365234,-62.9265594482422,-117.712043762207,-74.6726150512695,-64.9026565551758,-80.6074981689453,-49.2220268249512,-67.8967514038086,-85.5079803466797,-50.3037300109863,-67.092170715332,-72.9296569824219,-51.2178192138672,-68.8457412719727,-89.9826278686523,-47.4522514343262,-65.8376541137695,-113.814659118652,-71.6344223022461,-65.0559768676758,-113.71565246582,-56.1422996520996,-65.5204162597656,-100.442344665527,-51.6184577941895,-65.1979827880859,-0.412900000810623,-101.618957519531,-119.252685546875,0.0903559997677803,-105.919372558594,-119.336692810059,-3.18342709541321,-92.5246658325195,-120.654823303223,-7.41542196273804,-83.0439376831055,-119.774726867676,19.132869720459,-125.868339538574,-115.778343200684,19.4585018157959,-118.902648925781,-116.898452758789,29.4477806091309,-213.197891235352,-81.5178833007813,34.4686737060547,-184.993133544922,-98.7004699707031,38.0461235046387,-199.148513793945,-92.6160736083984,20.7189235687256,-133.539093017578,-112.261001586914,34.7015953063965,-143.786087036133,-108.392616271973,\r\n31.8955211639404,-152.167907714844,-109.163696289063,31.3796691894531,-156.677352905273,-108.275611877441,27.6908092498779,-166.427307128906,-104.053199768066,-56.8003692626953,-42.3919525146484,-69.1351699829102,-34.5107841491699,-48.2744293212891,-74.5586090087891,-39.1156387329102,-41.789192199707,-71.4377975463867,-29.2816734313965,-50.4441452026367,-79.4596862792969,-27.511302947998,-52.5696487426758,-88.6281814575195,-10.6968536376953,-71.4139938354492,-115.607322692871,-9.87966442108154,-76.8566284179688,-117.622528076172,-17.9066600799561,-67.8461456298828,-112.675033569336,25.235767364502,-237.63427734375,-76.379280090332,33.063232421875,-219.529510498047,-77.7033081054688,35.3034553527832,-228.324371337891,-77.564094543457,29.5016841888428,-217.947357177734,-77.9284362792969,-153.513549804688,-151.863876342773,-6.50184392929077,-147.311950683594,-141.688888549805,-21.2089748382568,-172.765441894531,-232.461776733398,3.00269794464111,-165.283706665039,-214.346008300781,10.2770109176636,-169.735137939453,-223.959945678711,4.27018213272095,-148.009002685547,-126.447387695313,-40.2041358947754,-147.481964111328,-117.216491699219,-48.0720062255859,-149.344146728516,-112.486022949219,-50.442138671875,-151.39533996582,-107.563545227051,-51.9148864746094,-141.188339233398,-94.8348922729492,-57.2317047119141,-140.314254760742,-89.1396331787109,-58.4333229064941,-140.767303466797,-84.6470947265625,-58.6034355163574,-128.772109985352,-66.3979110717773,-64.6650390625,-131.71240234375,-67.5108184814453,-63.4326095581055,-69.0596694946289,-41.7483901977539,-66.8840484619141,-95.1069259643555,-47.6872711181641,-65.5505218505859,-114.20369720459,-65.3608016967773,-66.0189666748047,-118.454109191895,-61.3179092407227,-66.3515930175781,-112.49153137207,-51.6724624633789,-65.3311004638672,-108.438133239746,-51.990894317627,-65.1133728027344,0.266261011362076,-98.5715560913086,-119.778732299805,13.1488828659058,-106.585441589355,-118.199577331543,0.15327300131321,-88.3938598632813,-121.546905517578,16.547815322876,-110.007781982422,-117.861549377441,\r\n24.7191162109375,-109.52473449707,-116.667434692383,32.6588935852051,-214.389007568359,-80.2056579589844,34.3234596252441,-180.19465637207,-100.266822814941,41.7953910827637,-185.256164550781,-96.8882904052734,46.6474647521973,-193.890991210938,-93.9649047851563,36.7911987304688,-209.218505859375,-85.2503509521484,39.720287322998,-203.939987182617,-89.9298095703125,33.5464820861816,-175.649215698242,-101.129905700684,26.5245952606201,-138.405563354492,-109.843757629395,36.3576583862305,-147.758483886719,-108.557632446289,32.8725128173828,-161.159790039063,-106.520431518555,32.4385719299316,-166.796340942383,-103.752166748047,-48.3057403564453,-38.0263252258301,-68.7495346069336,-61.5073318481445,-41.6348762512207,-68.3193893432617,-30.6886138916016,-43.2922401428223,-73.4785995483398,-44.4769668579102,-37.4961738586426,-69.1550674438477,-30.6697101593018,-47.8337898254395,-75.5635070800781,-22.5224113464355,-55.3791275024414,-100.04280090332,-24.5542125701904,-50.9135894775391,-88.5273742675781,-19.9092559814453,-57.5997467041016,-104.977279663086,-21.7714405059814,-61.5510292053223,-107.508529663086,34.9911231994629,-238.112335205078,-75.1986694335938,39.1668319702148,-218.740432739258,-76.9925384521484,37.4263648986816,-233.092849731445,-76.4750900268555,-153.357528686523,-147.76448059082,-11.0924825668335,-152.266418457031,-142.042922973633,-17.8171405792236,-147.989013671875,-132.017944335938,-34.1232414245605,-176.312789916992,-237.744293212891,5.26389980316162,-169.492111206055,-218.168380737305,11.1739988327026,-170.932250976563,-222.751831054688,7.21327018737793,-152.674468994141,-117.161483764648,-46.435848236084,-149.098114013672,-101.852981567383,-53.790168762207,-150.263244628906,-92.6935882568359,-55.9561767578125,-140.764297485352,-79.0814514160156,-58.6336402893066,-135.035736083984,-73.5645065307617,-61.6142349243164,-125.244781494141,-66.43310546875,-65.7543411254883,-120.318290710449,-69.6713256835938,-65.9906692504883,-83.6853103637695,-46.1796226501465,-66.6983337402344,-74.6532211303711,-40.272647857666,-65.8842544555664,\r\n-94.0593185424805,-42.9212074279785,-65.4282073974609,-120.845344543457,-49.689769744873,-65.0610733032227,-117.685043334961,-48.9944038391113,-65.2063903808594,-105.877883911133,-46.1421203613281,-66.0625762939453,5.04951906204224,-102.36302947998,-119.205673217773,2.35190510749817,-92.3439483642578,-121.410888671875,-0.795804977416992,-80.843620300293,-120.524803161621,23.1069583892822,-126.862426757813,-113.824150085449,24.3444805145264,-121.177871704102,-115.392303466797,25.2612705230713,-113.956169128418,-116.36840057373,41.2340354919434,-179.837631225586,-98.936393737793,42.661376953125,-190.230651855469,-95.1740188598633,44.5815620422363,-198.862487792969,-92.2132263183594,32.3515663146973,-171.656814575195,-102.000991821289,28.0376415252686,-126.547401428223,-112.629035949707,34.1065368652344,-138.839614868164,-108.865661621094,44.9992027282715,-143.369049072266,-106.19140625,43.5832672119141,-152.692962646484,-107.294509887695,36.8869094848633,-157.579437255859,-107.544532775879,-52.3384323120117,-30.3703746795654,-67.1645812988281,-59.2609100341797,-32.4906845092773,-66.9637603759766,-32.2118606567383,-35.8907165527344,-71.7157211303711,-36.4863815307617,-35.130241394043,-70.8427352905273,-25.2738838195801,-48.9773979187012,-80.8383178710938,-26.7516250610352,-47.0329093933105,-76.5166931152344,-22.1401767730713,-52.8118782043457,-95.6157684326172,-17.2829990386963,-63.7721481323242,-110.749847412109,-3.53615188598633,-72.7560272216797,-117.917556762695,-3.69570803642273,-66.6714324951172,-115.232284545898,36.6588897705078,-214.274993896484,-79.9304351806641,45.8108863830566,-228.153350830078,-76.4172897338867,-158.342010498047,-150.290725708008,-5.65958118438721,-151.698379516602,-137.500473022461,-23.8029289245605,-175.725723266602,-232.394760131836,6.60144090652466,-174.056564331055,-230.16455078125,6.30142116546631,-151.977386474609,-126.321380615234,-37.9260101318359,-156.227813720703,-107.381523132324,-50.536548614502,-144.644668579102,-89.4021606445313,-57.1533966064453,-144.333648681641,-84.1076431274414,-57.3267135620117,\r\n-132.402481079102,-63.0602798461914,-63.1197814941406,-128.446090698242,-59.4525260925293,-64.8929595947266,-84.7769165039063,-38.6235847473145,-64.6422271728516,-74.0531616210938,-33.0927429199219,-64.534423828125,-88.9887237548828,-37.8860130310059,-64.3912048339844,-120.281295776367,-64.9959716796875,-66.4858093261719,-122.252487182617,-58.8925704956055,-66.0929718017578,-112.640548706055,-43.2457389831543,-66.3804016113281,6.38159990310669,-96.9706954956055,-120.413795471191,19.6744232177734,-101.604957580566,-117.024459838867,3.52757000923157,-87.7953033447266,-121.418899536133,30.1834526062012,-107.096496582031,-116.082374572754,45.3870429992676,-184.702102661133,-96.0645141601563,50.4273338317871,-199.261535644531,-91.6366729736328,47.2104225158691,-189.693588256836,-94.6569747924805,42.0962181091309,-214.300003051758,-78.7627182006836,46.817985534668,-204.195007324219,-88.1244354248047,36.3440551757813,-170.872741699219,-101.89998626709,30.4401779174805,-128.397583007813,-111.629936218262,38.380054473877,-138.954605102539,-107.663551330566,34.7846031188965,-134.243148803711,-110.018775939941,42.9240036010742,-138.792602539063,-106.410423278809,48.4448394775391,-146.686370849609,-105.851371765137,36.3996620178223,-161.286804199219,-106.345420837402,-48.7364807128906,-30.3148708343506,-67.5198135375977,-43.7686920166016,-32.6646003723145,-68.589714050293,-26.9108428955078,-37.6649932861328,-72.921142578125,-16.5700283050537,-53.7902717590332,-101.924980163574,-21.5042133331299,-47.7506790161133,-82.2301559448242,-18.7835464477539,-50.0538063049316,-92.3778533935547,-17.4964199066162,-60.0969886779785,-108.254600524902,-5.32683706283569,-61.939769744873,-112.420013427734,46.164119720459,-233.008819580078,-75.9040374755859,45.6722679138184,-224.177978515625,-76.3113708496094,-157.247909545898,-143.448059082031,-12.7642469406128,-157.73095703125,-138.061538696289,-18.3125915527344,-157.73796081543,-132.094940185547,-26.3305778503418,-177.241882324219,-234.304962158203,8.82075786590576,-171.824340820313,-222.300796508789,10.7763595581055,\r\n-161.185302734375,-117.29549407959,-41.5693702697754,-155.239715576172,-112.771049499512,-48.4902496337891,-160.38623046875,-90.3860549926758,-53.239013671875,-152.338439941406,-88.6964874267578,-56.1529006958008,-144.363662719727,-73.2603759765625,-56.79736328125,-137.906021118164,-68.6974258422852,-59.8043556213379,-125.056755065918,-59.8918724060059,-65.8716506958008,-77.9413452148438,-37.2563514709473,-64.755241394043,-104.429733276367,-42.413158416748,-66.2134780883789,-101.345436096191,-38.2457466125488,-65.7942428588867,-121.830444335938,-42.7153854370117,-64.4787139892578,-125.958847045898,-48.6605682373047,-64.3854064941406,-116.066879272461,-42.0411186218262,-65.9545593261719,9.01987838745117,-92.8308944702148,-120.986854553223,12.0614767074585,-101.66096496582,-118.469604492188,0.125048995018005,-74.7810287475586,-119.028663635254,4.50277614593506,-79.1486587524414,-119.989753723145,23.1936683654785,-100.849876403809,-116.629425048828,26.7486152648926,-119.481712341309,-115.158279418945,29.9275283813477,-97.3694458007813,-116.89444732666,29.6238975524902,-113.703140258789,-115.230285644531,47.3078308105469,-170.669723510742,-99.9957962036133,54.5910415649414,-194.375045776367,-93.3249435424805,54.4769325256348,-190.206634521484,-93.5909652709961,33.6964988708496,-120.910850524902,-111.894958496094,50.4147338867188,-139.20964050293,-105.22631072998,48.2693252563477,-151.935897827148,-105.883369445801,44.2552337646484,-156.546340942383,-106.141395568848,-46.6717796325684,-23.6203155517578,-67.0476684570313,-52.2950286865234,-24.5613079071045,-65.9961624145508,-25.4046936035156,-42.5083656311035,-74.3047714233398,-34.5589942932129,-27.8412265777588,-70.6221160888672,-26.6802196502686,-32.2296600341797,-72.0004501342773,-22.5630149841309,-45.9580001831055,-77.0715484619141,-12.098991394043,-50.0820045471191,-97.7378692626953,-12.0054807662964,-55.5530433654785,-106.021385192871,-18.9137592315674,-48.3952407836914,-87.8701095581055,0.424347996711731,-66.1358795166016,-115.274291992188,-0.429163992404938,-70.5380096435547,-117.407501220703,\r\n44.2259292602539,-237.921310424805,-74.6318130493164,42.3996505737305,-219.211486816406,-76.5288925170898,53.2019081115723,-228.579406738281,-75.3746795654297,-164.186599731445,-144.117126464844,-6.54557800292969,-174.881652832031,-229.176467895508,10.2343072891235,-178.585998535156,-237.199234008789,10.1927032470703,-158.673065185547,-127.387481689453,-31.7791118621826,-162.048385620117,-122.392990112305,-35.3415603637695,-161.941360473633,-108.138595581055,-47.6288604736328,-172.131378173828,-90.5986785888672,-48.5703582763672,-147.492965698242,-86.5694808959961,-56.858570098877,-141.650390625,-66.770149230957,-57.2698059082031,-147.832000732422,-72.4002990722656,-56.2822113037109,-132.648498535156,-55.0836982727051,-62.238697052002,-79.4617919921875,-29.8579254150391,-63.6325302124023,-76.6113128662109,-29.4574851989746,-63.6311302185059,-63.779655456543,-28.3229751586914,-64.9352569580078,-98.1215209960938,-32.285961151123,-64.7379455566406,-115.03377532959,-37.4194641113281,-65.7572402954102,17.4917087554932,-95.8383941650391,-118.020561218262,14.8011445999146,-85.1067352294922,-119.852737426758,11.2232942581177,-79.3430709838867,-119.707733154297,21.0769596099854,-95.4533538818359,-117.091468811035,34.2864570617676,-101.7099609375,-116.186378479004,32.1508445739746,-113.240089416504,-114.569229125977,51.0810012817383,-174.378082275391,-97.5964584350586,50.5755500793457,-185.370162963867,-94.1881256103516,56.9527740478516,-199.267532348633,-90.791389465332,53.4453315734863,-204.166000366211,-86.8437042236328,47.270824432373,-208.956481933594,-82.5976943969727,39.5994758605957,-167.851455688477,-102.586051940918,40.8879013061523,-120.259788513184,-110.419815063477,37.120433807373,-129.968734741211,-110.536827087402,44.6880722045898,-133.970123291016,-106.735458374023,51.0176963806152,-134.27815246582,-105.046287536621,51.7523651123047,-147.529449462891,-105.457336425781,44.2632331848145,-161.636840820313,-104.142204284668,-56.5178451538086,-26.4596939086914,-65.7948455810547,-27.2523746490479,-27.5742034912109,-71.4434967041016,\r\n-19.1378803253174,-37.5938835144043,-72.9221420288086,-8.45570373535156,-52.3686294555664,-103.319122314453,-17.6541347503662,-45.2426338195801,-78.4419784545898,-12.4452247619629,-46.6286697387695,-88.5048675537109,-5.78134202957153,-58.2423057556152,-109.921768188477,0.000715999980457127,-61.7238502502441,-112.758041381836,55.3857231140137,-238.231338500977,-73.3696823120117,45.5170555114746,-214.390014648438,-77.7900161743164,46.7192726135254,-219.447494506836,-75.7100143432617,55.3951225280762,-223.814926147461,-74.5675048828125,59.6066360473633,-233.176849365234,-74.4167861938477,-164.178588867188,-137.551467895508,-12.9994697570801,-163.190490722656,-132.727005004883,-20.3786926269531,-165.406723022461,-124.269180297852,-30.3490695953369,-164.677642822266,-112.75505065918,-43.4376525878906,-169.045074462891,-118.144577026367,-34.7206001281738,-165.876770019531,-102.863075256348,-47.6333656311035,-164.577621459961,-85.3253631591797,-52.297420501709,-154.898681640625,-84.0497283935547,-55.9285774230957,-144.480651855469,-58.8757667541504,-56.1486968994141,-137.550979614258,-56.3308181762695,-58.3886184692383,-131.335372924805,-48.7351760864258,-62.7052421569824,-128.259063720703,-48.9110908508301,-63.9613647460938,-91.7477951049805,-28.7671184539795,-64.1377792358398,-72.8266372680664,-28.0774517059326,-63.3008003234863,-108.456130981445,-35.0220336914063,-65.7870407104492,-124.492706298828,-39.8184013366699,-63.1471824645996,-118.628135681152,-35.5812873840332,-64.6916351318359,13.7562417984009,-92.1526336669922,-119.956756591797,7.41598081588745,-69.9674606323242,-117.100471496582,12.0652770996094,-75.1320648193359,-118.765632629395,26.2886714935303,-93.412353515625,-116.914459228516,35.6227836608887,-106.608444213867,-115.441307067871,32.6670951843262,-92.03662109375,-116.463409423828,51.892578125,-170.540710449219,-98.988395690918,51.7307662963867,-180.392669677734,-94.9235000610352,58.8799667358398,-194.527053833008,-92.3569412231445,56.0190849304199,-185.438171386719,-93.1237182617188,49.6261596679688,-164.422119140625,-101.674957275391,\r\n37.0024185180664,-116.584419250488,-112.113983154297,41.3470458984375,-128.762619018555,-109.479721069336,55.9931793212891,-139.049621582031,-104.532241821289,56.4433250427246,-143.29704284668,-105.31632232666,52.2567138671875,-153.43603515625,-104.683258056641,51.6182518005371,-157.244415283203,-103.859176635742,-49.9968032836914,-19.0391654968262,-64.7844467163086,-19.5017166137695,-42.7798919677734,-74.6469116210938,-34.4437828063965,-22.8526401519775,-70.0377655029297,-17.8568534851074,-26.9669437408447,-71.7561340332031,-15.0439786911011,-37.6102867126465,-72.9937515258789,-6.24961805343628,-49.662769317627,-99.550651550293,-5.418625831604,-55.0669975280762,-107.048484802246,1.3607280254364,-44.9527053833008,-92.7757873535156,9.23392868041992,-62.0917854309082,-113.344100952148,54.8559684753418,-219.242477416992,-74.2513732910156,59.341007232666,-228.507385253906,-74.5009994506836,-166.215286254883,-144.029602050781,-4.35716819763184,-165.831756591797,-139.642684936523,-9.36854362487793,-167.165878295898,-108.598640441895,-44.4812545776367,-171.449310302734,-98.5156478881836,-46.0232048034668,-178.464996337891,-85.6765899658203,-46.4486465454102,-153.597564697266,-77.4049835205078,-56.1700019836426,-141.236343383789,-56.9936828613281,-56.7039527893066,-150.992294311523,-66.5928268432617,-55.8812713623047,-134.410675048828,-44.9304008483887,-60.3241081237793,-137.79899597168,-48.0220031738281,-58.0766868591309,-89.3289566040039,-22.8781414031982,-63.3828048706055,-78.3825912475586,-25.3418827056885,-62.8248519897461,-62.954273223877,-19.2508869171143,-61.3558082580566,-57.0398941040039,-18.9597568511963,-62.5407257080078,-100.49235534668,-28.8033237457275,-64.2616882324219,-114.518730163574,-33.0423393249512,-65.0182647705078,24.4383907318115,-84.7320022583008,-117.382499694824,18.412899017334,-79.7543106079102,-118.679626464844,20.8451366424561,-83.6493911743164,-118.378593444824,28.911527633667,-84.2296524047852,-116.834449768066,39.5343704223633,-102.394035339355,-114.950256347656,39.3998565673828,-93.2284317016602,-115.183280944824,\r\n37.7394905090332,-110.169792175293,-114.08317565918,55.4742317199707,-171.818832397461,-98.0258026123047,55.2329063415527,-180.558700561523,-93.8230895996094,60.8964614868164,-204.588043212891,-85.3662567138672,62.30419921875,-194.587066650391,-91.3534469604492,52.4958381652832,-209.632537841797,-80.4484786987305,50.2104148864746,-214.510025024414,-76.2681732177734,44.098316192627,-111.891960144043,-111.53092956543,45.5825614929199,-123.64811706543,-109.208702087402,49.8623809814453,-129.647705078125,-106.276412963867,61.1563873291016,-134.916213989258,-102.331024169922,57.6508445739746,-147.429443359375,-105.160301208496,-43.4149589538574,-18.2503871917725,-66.6920318603516,-21.8722496032715,-22.999454498291,-71.0028533935547,-14.9095659255981,-42.2096366882324,-75.1147613525391,-36.1203460693359,-19.1887798309326,-68.787841796875,0.716817021369934,-48.9050903320313,-100.101806640625,-2.21269202232361,-47.0018043518066,-95.6539764404297,1.27001905441284,-51.5572547912598,-103.590141296387,-5.31104612350464,-42.5033645629883,-80.7223052978516,-0.508749008178711,-42.9837112426758,-86.3447570800781,2.62068200111389,-57.9869842529297,-110.169792175293,59.2682991027832,-237.208236694336,-73.481201171875,64.0155715942383,-223.913940429688,-72.9274444580078,59.6715431213379,-219.104461669922,-73.5052947998047,69.3555908203125,-228.83642578125,-72.5608062744141,-166.902359008789,-141.867401123047,-5.9558048248291,-168.243988037109,-143.942092895508,-2.16875910758972,-170.42919921875,-135.202239990234,-9.99927711486816,-168.636016845703,-132.248947143555,-15.2409896850586,-170.908248901367,-122.486000061035,-27.5801982879639,-175.312683105469,-113.417114257813,-34.4003677368164,-176.493804931641,-90.5398712158203,-46.4882507324219,-171.237289428711,-80.9347381591797,-49.7300682067871,-164.23258972168,-80.7162094116211,-52.4543342590332,-157.50993347168,-78.7017135620117,-55.1798057556152,-144.365661621094,-49.737476348877,-55.3341217041016,-150.480255126953,-53.9071846008301,-55.3569221496582,-141.453369140625,-48.1757202148438,-55.9316787719727,\r\n-131.53239440918,-42.9106025695801,-61.326904296875,-83.5211944580078,-23.6664199829102,-63.2184906005859,-72.2302856445313,-21.7265281677246,-61.1851921081543,-67.1036834716797,-17.6212253570557,-60.3876113891602,-107.47403717041,-28.4489860534668,-64.2589874267578,-121.764434814453,-30.2633666992188,-61.7177429199219,-114.031684875488,-28.7382144927979,-63.7246398925781,11.9382648468018,-69.5337142944336,-116.681434631348,15.8547477722168,-71.492301940918,-116.418403625488,39.8776016235352,-97.4516525268555,-114.829246520996,39.4680633544922,-106.408432006836,-114.540222167969,37.377857208252,-84.0722427368164,-116.277389526367,40.6894798278809,-88.5014724731445,-115.544319152832,58.0215797424316,-165.084167480469,-100.28182220459,61.5554275512695,-199.348526000977,-89.686882019043,67.9952545166016,-187.89241027832,-90.2791442871094,63.469612121582,-184.777114868164,-91.8383026123047,58.0330810546875,-180.150650024414,-93.9765014648438,47.6113586425781,-112.374008178711,-110.763854980469,49.1635131835938,-125.295272827148,-108.006576538086,60.9665679931641,-130.097747802734,-103.514137268066,61.2362937927246,-139.263641357422,-102.804069519043,60.6472396850586,-143.667083740234,-104.202201843262,59.006477355957,-152.660949707031,-103.838172912598,-41.555477142334,-14.5051221847534,-65.63232421875,-50.7096748352051,-14.8248519897461,-62.4391136169434,-29.939338684082,-18.0650691986084,-69.1710739135742,-13.3329105377197,-23.6946239471436,-70.5453109741211,-12.1729984283447,-33.1965522766113,-72.4413909912109,-11.1575994491577,-37.6013832092285,-73.3475799560547,1.88302898406982,-54.7256622314453,-107.061485290527,12.9885683059692,-39.9780158996582,-86.3085556030273,3.82644009590149,-46.2053298950195,-96.6939697265625,9.11881828308105,-57.4383316040039,-110.281799316406,62.6021270751953,-238.144332885742,-72.4901962280273,57.5466346740723,-215.049072265625,-75.0885543823242,70.5949172973633,-233.468872070313,-72.4955978393555,-169.618133544922,-139.617691040039,-5.36603212356567,-173.540512084961,-118.00456237793,-31.096342086792,\r\n-175.78971862793,-103.634155273438,-40.695484161377,-175.784729003906,-108.563636779785,-37.8456039428711,-179.235076904297,-90.5575714111328,-44.9728012084961,-178.600997924805,-78.5195007324219,-46.5816612243652,-154.112609863281,-66.054573059082,-55.1757011413574,-138.132049560547,-43.0741195678711,-57.0550880432129,-130.473281860352,-38.5396766662598,-60.1265907287598,-100.912391662598,-24.4369945526123,-63.0995788574219,-85.1544494628906,-17.1744823455811,-61.900260925293,-78.5034942626953,-18.9528560638428,-61.3183059692383,-58.2386131286621,-13.2907018661499,-60.6252365112305,-124.971748352051,-30.9319305419922,-60.0148773193359,-118.818145751953,-27.4567909240723,-61.8914604187012,24.9636402130127,-79.6123046875,-116.957458496094,19.7626304626465,-75.688117980957,-117.092468261719,44.934398651123,-96.0979156494141,-113.083076477051,45.0959167480469,-106.642456054688,-112.067977905273,30.4113731384277,-79.3318710327148,-115.962356567383,51.4904403686523,-88.6864929199219,-112.477020263672,58.5634307861328,-171.04475402832,-98.3859405517578,61.0847816467285,-209.820556640625,-79.4315795898438,65.9418563842773,-199.473541259766,-88.1225357055664,71.1634674072266,-194.29704284668,-88.0734252929688,61.7245445251465,-180.69970703125,-93.302734375,48.1101112365723,-104.93628692627,-111.082885742188,48.9752922058105,-121.313888549805,-109.209701538086,56.8602676391602,-121.583915710449,-107.894569396973,64.7814407348633,-134.134140014648,-101.755966186523,65.9971618652344,-139.454666137695,-101.419937133789,62.2671966552734,-148.372543334961,-103.629150390625,-54.8777847290039,-13.4592189788818,-60.8775634765625,-20.8609504699707,-18.197883605957,-69.4261016845703,-9.10049724578857,-26.9916458129883,-71.3003845214844,-5.68674278259277,-40.5798797607422,-76.349983215332,-33.7032089233398,-14.0693788528442,-66.9546585083008,9.17160415649414,-48.0304069519043,-100.871887207031,10.4540185928345,-53.884578704834,-107.449523925781,2.67814707756042,-39.488468170166,-77.9726333618164,11.3005018234253,-43.0282135009766,-93.2202301025391,\r\n13.1602840423584,-61.7732543945313,-112.67603302002,66.0443649291992,-219.615509033203,-72.7749328613281,70.6802215576172,-224.193969726563,-71.9395446777344,61.1263847351074,-214.15397644043,-75.4433898925781,78.4945831298828,-227.175262451172,-70.7773284912109,-177.269882202148,-134.066131591797,-2.69035005569458,-172.823440551758,-143.263031005859,3.1818950176239,-173.593505859375,-130.117752075195,-14.3562030792236,-173.931564331055,-134.664199829102,-6.42651605606079,-175.591705322266,-124.179168701172,-20.9632511138916,-181.822326660156,-114.34920501709,-26.5597972869873,-178.561996459961,-107.41552734375,-36.1275367736816,-182.83642578125,-85.4369659423828,-44.1087188720703,-182.953430175781,-79.3629760742188,-44.569263458252,-175.087661743164,-74.0612564086914,-47.7846755981445,-166.137771606445,-76.0708541870117,-51.1496086120605,-158.433029174805,-71.8893432617188,-54.149600982666,-141.582382202148,-42.6510810852051,-54.8433723449707,-150.209228515625,-48.4273452758789,-54.1584014892578,-153.951583862305,-53.1907119750977,-54.2128105163574,-134.977722167969,-38.3432579040527,-57.7529563903809,-92.9821166992188,-17.9997634887695,-61.5723304748535,-88.8315124511719,-17.5129165649414,-61.9319648742676,-71.7383346557617,-17.5442180633545,-60.3353080749512,-69.4747085571289,-10.1833982467651,-59.3387107849121,-108.619148254395,-24.0949611663818,-62.4551162719727,-123.640617370605,-22.0129566192627,-57.0932922363281,-114.634735107422,-24.0969619750977,-61.4288177490234,17.4311027526855,-65.865852355957,-113.541122436523,22.7682266235352,-73.3886947631836,-115.059272766113,42.475154876709,-79.5135879516602,-114.48120880127,45.2214279174805,-83.9051208496094,-114.658233642578,61.6114349365234,-170.163681030273,-98.2525253295898,66.6202239990234,-204.717071533203,-83.6520919799805,67.422004699707,-180.078643798828,-92.107421875,70.9477462768555,-185.925216674805,-90.3170471191406,53.6478500366211,-105.764358520508,-110.027778625488,62.1342811584473,-125.295272827148,-105.280311584473,69.9911499023438,-130.082748413086,-102.545043945313,\r\n66.1161727905273,-143.732086181641,-102.078994750977,68.2620849609375,-148.502563476563,-101.021896362305,61.4040107727051,-159.222610473633,-101.008888244629,-46.3211441040039,-10.2314033508301,-60.7109451293945,-50.2047271728516,-11.6290397644043,-60.643238067627,-26.3141841888428,-14.1410856246948,-67.6990356445313,-16.9250621795654,-13.6066331863403,-67.1768798828125,-10.950478553772,-18.9811592102051,-68.6859283447266,-5.62704706192017,-29.9120311737061,-71.8359832763672,-6.18205118179321,-36.9602203369141,-73.5346984863281,-0.431959003210068,-40.020622253418,-77.4200820922852,7.43056297302246,-38.8338088989258,-78.4662857055664,17.4670066833496,-39.9374122619629,-87.577278137207,12.1443853378296,-45.2030296325684,-97.4931488037109,16.0351657867432,-57.7680625915527,-110.345809936523,68.3037872314453,-237.311248779297,-71.9126434326172,64.7236328125,-214.841064453125,-74.5981063842773,74.6377105712891,-233.539886474609,-71.5009994506836,-178.403991699219,-129.769714355469,-10.7526502609253,-179.262069702148,-119.206680297852,-24.1348609924316,-179.448089599609,-96.3921432495117,-41.741886138916,-184.059555053711,-89.4511642456055,-41.5899696350098,-182.083343505859,-68.7468338012695,-44.4469528198242,-157.250915527344,-59.6524429321289,-53.1151008605957,-145.180740356445,-43.1380271911621,-53.4768371582031,-138.48307800293,-38.070930480957,-55.8289680480957,-129.377182006836,-30.9142284393311,-57.4346237182617,-97.4045486450195,-19.2937908172607,-61.4142150878906,-77.3635864257813,-14.9560661315918,-60.5621337890625,-83.8298187255859,-8.65711784362793,-58.841064453125,-61.7784576416016,-5.06843709945679,-58.7949562072754,-101.092407226563,-16.0459728240967,-59.2020988464355,-117.725044250488,-19.3995990753174,-58.1703948974609,25.2156658172607,-71.0119552612305,-113.705131530762,50.6168556213379,-98.5517578125,-110.956871032715,30.3822727203369,-71.4066925048828,-113.164085388184,52.4857368469238,-84.2323532104492,-112.088981628418,67.0220642089844,-209.409530639648,-78.6967086791992,74.0947570800781,-199.326538085938,-84.5315780639648,\r\n74.1650619506836,-189.738586425781,-89.0870208740234,64.7255325317383,-175.983245849609,-94.4225540161133,54.019889831543,-116.096374511719,-109.613739013672,53.333122253418,-111.233901977539,-110.15079498291,54.3780250549316,-98.6540679931641,-109.705749511719,63.353401184082,-120.569816589355,-106.660446166992,71.6409149169922,-125.717323303223,-104.062194824219,69.5091094970703,-134.951232910156,-100.968894958496,71.6215133666992,-143.528076171875,-100.28182220459,-39.8065032958984,-10.9498729705811,-63.6208305358887,-53.6894645690918,-10.3961181640625,-59.7070465087891,-5.79733276367188,-18.3057956695557,-68.5846176147461,-2.15359592437744,-32.8324165344238,-72.3715896606445,-1.73527503013611,-29.2644176483154,-71.4515991210938,-1.47254002094269,-37.1858444213867,-73.9461441040039,-32.26806640625,-9.5505256652832,-64.3760070800781,17.0276641845703,-47.4309463500977,-100.960891723633,1.97144794464111,-37.0198287963867,-74.0377502441406,7.12996387481689,-36.852912902832,-74.1089630126953,16.7177333831787,-37.4689712524414,-80.0319366455078,17.7789363861084,-42.7373886108398,-93.9152984619141,17.9928588867188,-62.3370056152344,-112.244995117188,71.5204086303711,-238.8994140625,-69.7324295043945,69.5921173095703,-214.725036621094,-74.1967697143555,76.3266677856445,-219.863540649414,-71.8165283203125,76.9939422607422,-223.634918212891,-71.0149536132813,73.0790557861328,-236.219650268555,-70.6167144775391,-177.934936523438,-138.418563842773,3.1385509967804,-182.900421142578,-129.199661254883,-4.03443193435669,-182.02033996582,-125.31428527832,-15.5779218673706,-183.519485473633,-122.158973693848,-18.5977172851563,-182.786407470703,-119.073661804199,-21.9334449768066,-183.213455200195,-108.531639099121,-29.7707138061523,-186.858810424805,-81.8905258178711,-41.5496673583984,-185.919723510742,-85.8459167480469,-41.3879508972168,-186.065734863281,-71.4693069458008,-42.5549659729004,-175.905746459961,-49.7166709899902,-45.050708770752,-171.703323364258,-70.64501953125,-48.6180610656738,-163.815567016602,-59.6653480529785,-49.1452102661133,\r\n-161.665344238281,-58.5438385009766,-50.1639137268066,-142.516479492188,-38.3050537109375,-54.044792175293,-154.17561340332,-47.9272956848145,-52.9915885925293,-150.542251586914,-43.4121551513672,-52.4016304016113,-157.429931640625,-52.0707054138184,-52.474536895752,-135.351776123047,-33.3782691955566,-56.2282028198242,-80.0613479614258,-10.5643348693848,-59.7726516723633,-69.9529647827148,-5.34551382064819,-58.0960884094238,-57.9126815795898,-3.99505090713501,-57.6943511962891,-110.649345397949,-19.2385845184326,-59.5877380371094,-128.720123291016,-24.7681255340576,-55.9791831970215,-117.096977233887,-14.933464050293,-56.4889297485352,49.7504692077637,-79.7704238891602,-112.119979858398,40.451057434082,-70.1758728027344,-111.105880737305,51.6955604553223,-93.2736434936523,-111.709945678711,54.7584609985352,-89.0615310668945,-111.007873535156,64.9602584838867,-157.987487792969,-99.6277618408203,64.7730407714844,-171.387802124023,-96.4396514892578,71.2239761352539,-204.791061401367,-81.6377029418945,71.4497985839844,-178.189453125,-92.7982940673828,74.4931945800781,-195.037109375,-86.7512969970703,76.6067047119141,-181.373779296875,-92.5320587158203,68.2889862060547,-176.571304321289,-93.1659317016602,63.1773872375488,-106.997482299805,-108.032585144043,58.3721122741699,-98.3583374023438,-108.376617431641,66.8598480224609,-115.910362243652,-106.837463378906,69.6350173950195,-120.817840576172,-105.639350891113,73.8614349365234,-139.403656005859,-99.4604415893555,74.5858001708984,-130.319778442383,-101.199913024902,-47.492057800293,-4.61076211929321,-56.0685882568359,-34.508186340332,-3.74558711051941,-58.9959754943848,-51.9457931518555,-5.86844491958618,-56.7177543640137,-20.2626914978027,-9.47927856445313,-65.4644088745117,-11.6922512054443,-9.64169502258301,-66.3720932006836,-1.31695401668549,-25.6964168548584,-70.531608581543,-26.187370300293,-8.66497898101807,-64.6797332763672,16.5361156463623,-50.6835670471191,-104.41423034668,18.8065376281738,-54.1717071533203,-107.493530273438,16.0572681427002,-35.5882873535156,-75.4411926269531,\r\n30.6512985229492,-38.1820411682129,-85.1129379272461,23.7757244110107,-40.7121887207031,-89.7801895141602,18.0257606506348,-44.9347038269043,-97.6597671508789,26.7995204925537,-62.6801414489746,-111.382911682129,83.2521514892578,-224.258972167969,-70.3910903930664,75.6149063110352,-237.559280395508,-70.090461730957,-183.26545715332,-133.500076293945,3.26058292388916,-186.500778198242,-128.833618164063,0.214499995112419,-185.790710449219,-124.791229248047,-12.5910301208496,-187.137832641602,-114.706237792969,-22.2086734771729,-186.243759155273,-109.433723449707,-25.9436378479004,-181.908340454102,-103.746162414551,-34.7797012329102,-182.46337890625,-97.0397033691406,-38.3145484924316,-188.14094543457,-74.1284637451172,-41.1870307922363,-190.485168457031,-89.3714599609375,-33.6313934326172,-188.061935424805,-58.1910018920898,-40.5449714660645,-172.790435791016,-60.9658737182617,-47.1802215576172,-166.376815795898,-59.1019897460938,-48.2911262512207,-150.158218383789,-38.5039710998535,-51.3861312866211,-137.746002197266,-30.7403125762939,-55.4718322753906,-141.797393798828,-31.7500114440918,-54.7902641296387,-97.0089111328125,-9.22563362121582,-56.6921501159668,-90.3807601928711,-1.25805294513702,-53.7056617736816,-75.1437683105469,-10.0846881866455,-59.4697265625,-74.9658508300781,-5.24816417694092,-57.8083610534668,-61.5854415893555,-2.60000491142273,-57.837963104248,-105.026794433594,-14.8044509887695,-58.1659965515137,-122.43049621582,-15.3023996353149,-55.1303977966309,-110.986381530762,-15.0018701553345,-57.6173439025879,44.685375213623,-71.4493026733398,-110.568832397461,32.4319725036621,-62.5802345275879,-110.298805236816,60.6386375427246,-84.8699188232422,-107.177505493164,56.3492164611816,-77.9112396240234,-107.859565734863,64.7692413330078,-166.77734375,-97.8613891601563,72.4431915283203,-208.693450927734,-77.7548217773438,77.7684173583984,-195.26513671875,-85.9182205200195,78.9454345703125,-185.087142944336,-91.0256118774414,79.0025405883789,-189.609588623047,-88.8316040039063,67.9235458374023,-171.401794433594,-94.8120880126953,\r\n63.5713233947754,-111.460922241211,-107.999580383301,59.72314453125,-89.9023132324219,-108.016578674316,75.9622421264648,-120.937850952148,-104.190200805664,74.8149261474609,-134.806213378906,-99.4319381713867,78.7528076171875,-125.409294128418,-101.765968322754,71.0511627197266,-148.558563232422,-99.785774230957,79.5047836303711,-139.143646240234,-97.5797576904297,71.015754699707,-158.046493530273,-95.9990997314453,-41.2444496154785,-4.35283613204956,-57.018985748291,-13.0131807327271,-7.47316312789917,-65.5166091918945,-6.15517902374268,-12.2469997406006,-67.1800842285156,-0.51509302854538,-14.0123729705811,-66.902946472168,2.20264101028442,-29.3778781890869,-71.0379028320313,0.442842990159988,-27.5371475219727,-70.7847595214844,-31.3911819458008,-5.9924168586731,-61.9561653137207,25.1742610931396,-50.980598449707,-104.295219421387,28.1921577453613,-58.5291366577148,-109.285705566406,5.72223615646362,-33.0593376159668,-71.5442047119141,9.41989803314209,-32.823314666748,-71.7756271362305,22.4894981384277,-35.0634384155273,-75.8699264526367,30.8727188110352,-34.7606048583984,-76.4631881713867,25.9677391052246,-42.3125457763672,-92.5983657836914,75.809326171875,-214.643020629883,-73.7290191650391,81.7165069580078,-219.115463256836,-71.9878540039063,-191.736297607422,-123.837135314941,-3.50575995445251,-187.950912475586,-120.522811889648,-16.7042331695557,-186.454772949219,-118.259590148926,-20.2788829803467,-188.195938110352,-99.7111740112305,-28.8723258972168,-186.157745361328,-98.6927719116211,-32.0926399230957,-193.020416259766,-84.5112762451172,-33.5879898071289,-190.876205444336,-75.7122192382813,-38.4157600402832,-190.301162719727,-61.2213020324707,-39.2149391174316,-173.053466796875,-48.5483551025391,-46.0730094909668,-185.425674438477,-50.249626159668,-40.7675895690918,-163.869567871094,-49.0887107849121,-48.5323524475098,-150.053207397461,-34.5400848388672,-51.6560592651367,-154.078598022461,-39.1237335205078,-50.3358268737793,-157.84797668457,-47.8115844726563,-51.4831428527832,-131.022338867188,-24.0380554199219,-55.4970321655273,\r\n-148.572067260742,-29.0549468994141,-53.080696105957,-100.461349487305,-10.0985898971558,-56.9635772705078,-80.8299255371094,-2.53565788269043,-55.9683799743652,-70.7171325683594,-0.17748099565506,-55.9696807861328,-57.4755363464355,1.8290890455246,-54.4567337036133,-124.062660217285,-13.8008527755737,-54.4281311035156,-113.098587036133,-10.6541442871094,-56.3735198974609,49.5608520507813,-74.7664260864258,-110.107780456543,42.2303352355957,-63.0137748718262,-109.198699951172,70.9688491821289,-162.478912353516,-94.8574905395508,67.9732513427734,-166.802337646484,-95.8994979858398,78.0221405029297,-200.095611572266,-82.5950927734375,71.1259613037109,-172.855941772461,-93.8371887207031,82.7091979980469,-181.037750244141,-91.8397979736328,72.0925598144531,-111.767959594727,-105.863372802734,66.8043441772461,-97.0473175048828,-105.302322387695,66.2577896118164,-88.8157043457031,-105.208305358887,73.0775604248047,-116.586418151855,-105.508331298828,82.6316909790039,-129.387680053711,-98.1962203979492,74.8069229125977,-148.488555908203,-98.4845504760742,81.7981109619141,-144.053115844727,-97.3120346069336,-50.6706733703613,-1.50024700164795,-54.5796432495117,-44.5237693786621,-0.429619014263153,-54.1166000366211,-37.632194519043,-0.231079995632172,-55.0006866455078,-14.6196384429932,-3.96498894691467,-63.5018196105957,-25.147668838501,-4.83902406692505,-62.3732070922852,-7.52910280227661,-5.09778022766113,-63.9782676696777,-5.53640794754028,-8.3549690246582,-65.6824340820313,1.46121799945831,-22.9171466827393,-69.6244201660156,26.3297748565674,-45.4486503601074,-97.5027465820313,25.9389362335205,-47.986701965332,-100.974891662598,29.469482421875,-54.5895500183105,-106.84546661377,16.6333255767822,-31.7273082733154,-72.9944534301758,27.5825977325439,-34.8861198425293,-76.264274597168,31.4141731262207,-41.0319213867188,-90.4514617919922,39.8445014953613,-36.1770439147949,-80.3251724243164,74.3994903564453,-209.850570678711,-76.3432769775391,88.4862594604492,-218.96745300293,-72.2224731445313,-188.769012451172,-128.531585693359,3.43336009979248,\r\n-185.862716674805,-133.293060302734,6.5436749458313,-193.220428466797,-123.80712890625,0.270702004432678,-191.629287719727,-120.082763671875,-12.9759683609009,-196.166717529297,-119.215682983398,-7.45536708831787,-190.870208740234,-116.074378967285,-18.011360168457,-191.017227172852,-111.353912353516,-20.7897338867188,-194.606567382813,-100.37183380127,-22.5643062591553,-195.004623413086,-80.1545486450195,-32.9031181335449,-192.274337768555,-70.4862060546875,-37.2143440246582,-189.232055664063,-94.0836181640625,-31.704704284668,-196.112716674805,-89.9291152954102,-28.0880489349365,-191.229248046875,-53.1565055847168,-37.7343940734863,-174.89665222168,-43.620475769043,-44.6622734069824,-167.201889038086,-48.8020820617676,-47.4300422668457,-155.348724365234,-34.7206039428711,-49.285026550293,-143.98161315918,-24.5463047027588,-54.1600036621094,-137.764007568359,-22.7520294189453,-54.8099670410156,-94.6008758544922,-1.69117605686188,-53.643253326416,-102.393539428711,-7.18520402908325,-56.2612075805664,-89.1269378662109,6.58830499649048,-49.0601043701172,-67.2427978515625,3.19762301445007,-54.3535232543945,-61.948673248291,6.84622097015381,-52.1303024291992,49.580753326416,-70.7863388061523,-108.87166595459,39.8159980773926,-58.9782791137695,-108.132591247559,60.7606506347656,-76.677116394043,-105.232307434082,78.1392517089844,-204.755065917969,-79.0081405639648,77.7008056640625,-176.443283081055,-93.4035491943359,83.9557189941406,-188.219451904297,-88.9040069580078,85.9088134765625,-195.110122680664,-85.2920532226563,81.5057830810547,-176.262268066406,-92.9723052978516,71.6586151123047,-168.079467773438,-94.1227188110352,72.2408752441406,-106.998481750488,-105.418327331543,77.2322616577148,-113.852157592773,-104.726257324219,82.1148452758789,-120.96785736084,-101.522941589355,83.882209777832,-135.236251831055,-95.7977828979492,84.4876708984375,-125.887336730957,-99.052001953125,74.7066192626953,-158.351516723633,-94.4158477783203,87.0890350341797,-139.437652587891,-94.5444564819336,-55.0203971862793,2.93782806396484,-53.4837379455566,\r\n-41.2575492858887,-0.635170996189117,-54.5289421081543,-28.1377620697021,-1.79045498371124,-59.5618324279785,-32.5346946716309,1.86103200912476,-54.3047180175781,3.96736407279968,-18.0452690124512,-68.1824798583984,31.9999294281006,-48.1827239990234,-101.112907409668,5.0491189956665,-22.6732215881348,-69.8166427612305,21.7144222259521,-31.441780090332,-73.2384719848633,26.719913482666,-31.648401260376,-73.165168762207,40.545467376709,-43.0082168579102,-93.6398773193359,29.977331161499,-31.759313583374,-72.9599456787109,37.6508827209473,-34.5033798217773,-75.9115371704102,44.2622337341309,-38.8369064331055,-85.4694747924805,80.6464004516602,-209.326507568359,-75.9352340698242,89.0031127929688,-214.317993164063,-74.2112655639648,-197.970901489258,-119.136672973633,-2.99409008026123,-195.400650024414,-96.330940246582,-24.2793750762939,-197.60285949707,-84.3874740600586,-29.0057373046875,-198.076919555664,-78.6051025390625,-29.7773151397705,-194.458557128906,-65.7900466918945,-34.5308799743652,-194.502578735352,-54.8372764587402,-34.9577217102051,-171.010269165039,-43.0820236206055,-45.8002815246582,-185.380676269531,-44.4195518493652,-39.6768836975098,-162.88948059082,-43.4846611022949,-47.8385848999023,-154.815673828125,-29.6419048309326,-49.9273872375488,-159.693145751953,-39.5504760742188,-48.1617164611816,-129.718215942383,-12.6261367797852,-53.554744720459,-148.091018676758,-24.6049118041992,-52.9822883605957,-101.418449401855,-1.26940405368805,-54.2976188659668,-93.384651184082,2.73243808746338,-51.3964309692383,-84.4949798583984,6.44847202301025,-49.4711456298828,-71.8134384155273,4.76903676986694,-53.0141906738281,-54.0433006286621,7.98728179931641,-51.1222038269043,-113.612640380859,-6.02562093734741,-55.6012420654297,-108.116104125977,-5.83975219726563,-56.0435905456543,49.758171081543,-59.9447746276855,-106.109397888184,51.1736106872559,-62.8299560546875,-106.605438232422,64.4976119995117,-84.4696807861328,-105.367317199707,52.8623733520508,-67.4016036987305,-107.033485412598,85.7798004150391,-199.855575561523,-81.959831237793,\r\n78.3602676391602,-171.155776977539,-93.4727554321289,89.0570220947266,-176.134262084961,-90.9708099365234,87.2196426391602,-189.437576293945,-87.5161743164063,76.7413177490234,-106.863471984863,-104.743255615234,72.4464874267578,-87.8724136352539,-103.561141967773,70.3056869506836,-99.4179458618164,-104.755256652832,80.6510009765625,-113.825157165527,-103.437133789063,88.9013061523438,-126.022354125977,-97.7013702392578,83.9638214111328,-148.710571289063,-96.2170257568359,89.9181060791016,-144.174133300781,-94.187126159668,74.3801803588867,-162.541931152344,-93.618766784668,-49.1741218566895,4.00879287719727,-52.5279426574707,-40.7347946166992,3.70052289962769,-52.579948425293,-36.2723617553711,3.50362300872803,-52.7513656616211,-10.2285079956055,2.64164900779724,-58.342414855957,-2.45604610443115,-7.35876083374023,-64.3416976928711,2.97277593612671,-12.0843849182129,-65.5901184082031,34.0576324462891,-51.5849533081055,-104.125198364258,40.8544998168945,-55.5507431030273,-105.99137878418,14.095775604248,-21.355993270874,-71.0743637084961,36.6807899475098,-31.8940258026123,-71.9729461669922,41.8514938354492,-34.6300964355469,-76.0481491088867,51.0706977844238,-36.9824256896973,-80.2867584228516,-193.941513061523,-123.598106384277,3.4963059425354,-190.572174072266,-127.961540222168,6.74133396148682,-198.751983642578,-118.464614868164,0.63102799654007,-198.026901245117,-114.84725189209,-10.8235569000244,-200.887191772461,-114.582229614258,-6.38829183578491,-196.138717651367,-109.436729431152,-16.8248443603516,-198.871002197266,-98.3439331054688,-19.1909770965576,-198.737976074219,-88.8049087524414,-25.9632415771484,-193.502471923828,-50.0491065979004,-35.1698417663574,-174.952651977539,-39.5827789306641,-43.4878578186035,-167.251907348633,-43.0473175048828,-46.562557220459,-189.807098388672,-43.7858924865723,-36.3126564025879,-160.31721496582,-30.1198501586914,-46.5269546508789,-152.369430541992,-24.7208213806152,-51.0502967834473,-163.34049987793,-34.590389251709,-45.6028633117676,-140.611297607422,-20.0631656646729,-53.8545722961426,\r\n-132.888534545898,-12.2236976623535,-52.9083786010742,-146.083831787109,-19.5685176849365,-52.4269332885742,-104.39973449707,4.20734214782715,-52.2106132507324,-109.2412109375,-1.26536405086517,-54.950382232666,-78.0090484619141,9.96144580841064,-48.6109619140625,-85.062141418457,11.6507415771484,-47.0789070129395,-95.8022994995117,8.42806625366211,-48.395637512207,-66.861457824707,14.6908388137817,-47.1986236572266,-62.1714973449707,12.4534196853638,-48.7438735961914,-126.93994140625,-6.12966012954712,-52.9719886779785,64.9108581542969,-77.5795974731445,-103.842170715332,59.6383399963379,-66.6108322143555,-104.226211547852,84.8142013549805,-205.168106079102,-78.043342590332,81.4569778442383,-171.918838500977,-93.0237121582031,91.4993591308594,-195.097122192383,-83.6993942260742,90.5206680297852,-171.0927734375,-90.8143920898438,94.8612899780273,-179.46159362793,-88.3601531982422,80.0702362060547,-162.932968139648,-92.6206741333008,80.4497756958008,-105.621353149414,-103.591148376465,84.7465972900391,-118.126571655273,-100.31282043457,87.4014587402344,-121.474899291992,-98.669059753418,88.5616683959961,-135.119247436523,-94.6220626831055,84.2644500732422,-153.344024658203,-94.5702667236328,90.7223815917969,-139.387649536133,-93.7821884155273,-41.8114013671875,8.39365196228027,-50.6756629943848,-25.9434471130371,1.65518200397491,-56.9227752685547,-33.2728652954102,8.29583263397217,-49.2389221191406,-17.5416240692139,-1.41828894615173,-61.2768020629883,-5.8132848739624,0.876116991043091,-59.4909248352051,6.39305114746094,-14.0758790969849,-66.4716110229492,12.1080808639526,-17.8737506866455,-69.5273056030273,41.3937492370605,-45.1904296875,-97.0396041870117,39.7068862915039,-48.1632194519043,-100.629852294922,22.8127307891846,-22.9843521118164,-71.2552795410156,26.7604179382324,-26.8250274658203,-71.6396179199219,50.615852355957,-38.8315086364746,-84.3068618774414,33.0426330566406,-28.0759506225586,-70.5694122314453,41.0661201477051,-32.7252082824707,-71.9646453857422,52.5056419372559,-35.3082580566406,-75.5905075073242,\r\n84.7606048583984,-210.268600463867,-75.5121994018555,-202.151321411133,-114.236190795898,-2.59016990661621,-200.685165405273,-84.3918685913086,-25.2832736968994,-201.338241577148,-77.3791809082031,-25.6007041931152,-196.061721801758,-64.6792373657227,-32.4344749450684,-196.891799926758,-48.4876518249512,-31.4438762664795,-170.442199707031,-33.0440368652344,-42.9257049560547,-167.574935913086,-33.08984375,-43.8816947937012,-186.314758300781,-37.035228729248,-36.5814819335938,-183.747512817383,-38.5260772705078,-38.7836952209473,-160.340209960938,-25.1429634094238,-45.8480911254883,-102.84058380127,12.4099159240723,-47.2383232116699,-80.9144287109375,12.5125255584717,-46.8764877319336,-94.5131683349609,11.1172895431519,-47.3154296875,-73.8845443725586,14.5501260757446,-46.3193359375,-55.4838409423828,11.9809741973877,-48.570255279541,-120.628326416016,-0.862812995910645,-53.0038871765137,62.9301643371582,-58.0147857666016,-100.638862609863,49.0005989074707,-55.9003791809082,-104.479232788086,91.1197204589844,-204.657043457031,-77.3802795410156,92.2157287597656,-190.952713012695,-85.0843353271484,95.887092590332,-176.39729309082,-88.9658203125,98.3588333129883,-185.708206176758,-84.3602676391602,89.3979568481445,-162.919967651367,-90.4055557250977,74.2333679199219,-97.3446350097656,-104.115196228027,83.5888900756836,-109.244705200195,-101.883979797363,91.9804077148438,-148.740570068359,-93.2188262939453,82.3415679931641,-158.217498779297,-93.0486145019531,-20.7154369354248,6.66064310073853,-53.3529243469238,-16.3875122070313,5.62030076980591,-55.3730201721191,-30.6186046600342,8.39696311950684,-49.0018005371094,-37.2559547424316,9.22430419921875,-49.3479347229004,-10.6862525939941,5.77575588226318,-56.3894233703613,-2.54917502403259,-0.584674000740051,-60.0692825317383,6.8348240852356,-4.43817520141602,-61.0525779724121,41.2752380371094,-51.8409805297852,-103.448135375977,19.3896942138672,-14.0064725875854,-68.3450927734375,23.075855255127,-14.8902587890625,-68.5878143310547,48.2098197937012,-43.2691383361816,-92.4784622192383,\r\n38.8796043395996,-27.1598606109619,-69.6917266845703,40.7749938964844,-30.4519824981689,-69.9623565673828,48.1603126525879,-32.7480087280273,-71.5667114257813,57.0265846252441,-39.8116035461426,-83.2174530029297,92.3872528076172,-209.592544555664,-75.3137741088867,-201.718276977539,-115.069274902344,3.3673939704895,-198.573974609375,-119.35669708252,6.79756021499634,-202.1953125,-109.245704650879,-9.38420581817627,-200.00910949707,-109.51473236084,-12.2280950546265,-203.476440429688,-109.990783691406,-6.35874891281128,-201.869293212891,-94.3695449829102,-17.6910305023193,-200.29313659668,-67.6228332519531,-26.2730712890625,-201.240234375,-88.4885711669922,-22.529203414917,-196.362747192383,-58.0588874816895,-32.6538963317871,-201.540252685547,-53.0341949462891,-27.2543659210205,-173.572509765625,-33.0267333984375,-41.7155838012695,-192.10432434082,-31.8847236633301,-29.7896156311035,-181.924331665039,-25.0315532684326,-34.9623222351074,-164.051574707031,-25.8586349487305,-43.9718055725098,-151.16731262207,-19.7678375244141,-50.0335998535156,-136.217849731445,-10.1069898605347,-51.4677391052246,-108.593147277832,3.87408995628357,-52.6266555786133,-107.622047424316,18.681131362915,-44.4726524353027,-76.8449325561523,17.749340057373,-44.1407203674316,-92.0318222045898,17.3540992736816,-45.7910804748535,-83.426887512207,17.0533714294434,-45.0226097106934,-103.337631225586,19.4707088470459,-44.0708160400391,-99.0351104736328,18.9179534912109,-44.6284675598145,-64.6305389404297,17.2529907226563,-44.9977073669434,-73.4288024902344,18.3652992248535,-43.7059783935547,-56.3257255554199,15.6934375762939,-45.1518211364746,-45.1980323791504,12.8752613067627,-48.2747268676758,-129.958236694336,-1.22175002098084,-50.909984588623,65.1177749633789,-62.789852142334,-101.576950073242,55.9753799438477,-53.9408874511719,-101.098907470703,65.5697174072266,-66.6697311401367,-102.405029296875,70.9657516479492,-78.9729385375977,-102.470039367676,98.9907913208008,-172.294876098633,-88.5908813476563,101.452438354492,-176.539306640625,-87.2558517456055,\r\n88.1318283081055,-158.40852355957,-91.3176422119141,77.6906051635742,-99.1409149169922,-103.799163818359,93.2473373413086,-157.973480224609,-89.775390625,-27.0072536468506,7.86199998855591,-50.1328086853027,-32.0884475708008,18.213285446167,-42.5094604492188,-37.6673965454102,17.4316062927246,-43.3015365600586,-5.16567182540894,7.19509506225586,-56.5149345397949,3.25522398948669,-3.8049430847168,-60.7331466674805,10.1636905670166,-6.56372308731079,-62.8671569824219,13.1554841995239,-10.411319732666,-65.8637542724609,49.9318885803223,-49.2379264831543,-100.045799255371,17.0999717712402,-11.0721845626831,-67.0277633666992,28.9289283752441,-18.0799713134766,-69.0881652832031,58.8968658447266,-44.7204818725586,-91.1428298950195,51.8828811645508,-46.4949531555176,-96.3253326416016,35.2081413269043,-21.9497509002686,-69.3369903564453,44.6799736022949,-28.8900299072266,-69.207275390625,53.9718856811523,-33.0800437927246,-71.1330718994141,62.0040702819824,-37.0522308349609,-73.8655395507813,60.1956939697266,-42.5124664306641,-86.9223098754883,-205.416641235352,-109.722747802734,0.309879988431931,-204.713562011719,-109.833763122559,-2.9921600818634,-203.427444458008,-98.6959762573242,-13.2037897109985,-204.868576049805,-78.7995223999023,-19.7028274536133,-204.455551147461,-73.3470840454102,-20.9860515594482,-204.176513671875,-88.2188415527344,-17.5866184234619,-200.375137329102,-57.7400588989258,-28.0370426177979,-205.895690917969,-49.000602722168,-21.6866207122803,-193.546463012695,-40.5490760803223,-31.4962825775146,-168.391006469727,-25.8034286499023,-41.7383842468262,-188.963027954102,-25.4902973175049,-29.7728137969971,-159.455139160156,-20.3306903839111,-44.6633720397949,-140.211242675781,-6.903076171875,-49.0665016174316,-144.868698120117,-9.52186298370361,-48.2499237060547,-111.906471252441,3.84871697425842,-52.43603515625,-79.4250869750977,21.7300281524658,-42.3178443908691,-89.365364074707,20.7818374633789,-44.5017547607422,-71.7560424804688,21.9495506286621,-40.8411979675293,-128.732116699219,3.35876893997192,-49.5608520507813,\r\n70.5610046386719,-61.4621238708496,-100.601852416992,62.2865982055664,-55.0879974365234,-99.7232666015625,49.5071487426758,-51.9113845825195,-102.141006469727,66.9540557861328,-72.0923614501953,-102.838073730469,-42.7141914367676,11.6302404403687,-48.949390411377,-22.4630069732666,12.1065864562988,-48.1400146484375,-15.8948631286621,9.69699001312256,-52.5564460754395,-25.4482975006104,14.3630065917969,-45.6981735229492,-9.0564432144165,10.9060678482056,-53.7464637756348,-0.86115700006485,7.40478515625,-56.3890228271484,4.30567598342896,4.90733098983765,-56.5577392578125,10.7799510955811,-0.327347993850708,-59.1532936096191,23.0711555480957,-7.35447978973389,-66.8284454345703,26.2965717315674,-12.9510688781738,-68.1344757080078,39.2810440063477,-23.5548076629639,-69.5558090209961,51.089599609375,-29.1235542297363,-68.855339050293,47.8292846679688,-29.968936920166,-69.3036880493164,69.3238830566406,-41.7058868408203,-82.0192337036133,-203.659454345703,-114.063179016113,6.69332981109619,-206.177719116211,-109.614738464355,3.55476188659668,-205.220611572266,-105.499336242676,-6.31089496612549,-207.412826538086,-88.8178024291992,-13.2913990020752,-204.22151184082,-83.7898101806641,-19.3446922302246,-202.871383666992,-64.954460144043,-23.6215114593506,-205.766662597656,-57.6037445068359,-22.8496360778809,-207.533843994141,-54.745662689209,-21.1204662322998,-204.797576904297,-45.4160499572754,-21.4708995819092,-200.909194946289,-40.3348503112793,-23.3611850738525,-173.150466918945,-24.4509963989258,-38.8791084289551,-192.141326904297,-22.5173072814941,-26.3790798187256,-195.152633666992,-36.1691436767578,-28.3503742218018,-163.633529663086,-19.4346046447754,-41.9631080627441,-154.446640014648,-11.0913858413696,-42.4942626953125,-148.246032714844,-10.0483846664429,-46.56005859375,-105.693855285645,24.6345138549805,-41.5005645751953,-75.7949295043945,23.7036228179932,-40.3536491394043,-93.6250762939453,20.7646350860596,-44.6586723327637,-87.8427124023438,24.9260425567627,-42.2831382751465,-60.9596786499023,18.8367462158203,-42.4876594543457,\r\n-67.2009887695313,22.7911338806152,-39.7442893981934,-47.1248245239258,15.9220600128174,-45.5456581115723,-119.755241394043,2.81240606307983,-51.7676696777344,73.4720001220703,-65.6760406494141,-101.202911376953,60.5744285583496,-50.9466934204102,-97.7106704711914,73.5863037109375,-70.9037475585938,-101.79296875,95.4181442260742,-162.798965454102,-88.6711883544922,-28.4749965667725,21.9405498504639,-39.6905822753906,-37.5265808105469,21.4957065582275,-39.6726837158203,-3.62890100479126,11.854061126709,-53.6830558776855,7.73189306259155,3.27897095680237,-56.8059616088867,14.4021062850952,-3.40547394752502,-62.1800880432129,18.9243488311768,-2.60478496551514,-63.2849998474121,60.1399879455566,-47.5212593078613,-94.6909713745117,24.4359874725342,-3.19988393783569,-65.5741195678711,27.8454246520996,-5.02533197402954,-67.1041717529297,32.0561332702637,-13.581130027771,-68.2409896850586,68.4580001831055,-45.7944869995117,-90.0014190673828,37.7621955871582,-13.4632186889648,-67.8438415527344,43.6343727111816,-20.5007076263428,-68.3588943481445,54.7762603759766,-30.5534954071045,-68.7887344360352,60.3834114074707,-34.1521453857422,-70.3525924682617,70.6155166625977,-43.7253837585449,-85.5398788452148,-206.912780761719,-105.45532989502,-2.071368932724,-205.868682861328,-97.5421600341797,-9.84296131134033,-207.098785400391,-82.2664642333984,-16.0817718505859,-207.380828857422,-73.2019729614258,-17.522912979126,-210.392120361328,-52.8958854675293,-17.0599689483643,-209.172012329102,-43.9900093078613,-15.6693315505981,-175.76872253418,-16.6337299346924,-34.5050773620605,-184.391586303711,-18.8402462005615,-30.193754196167,-196.17073059082,-25.7365207672119,-24.4536914825439,-198.242935180664,-27.8328266143799,-23.2597751617432,-157.074890136719,-10.1785974502563,-40.6514778137207,-144.028610229492,1.25525295734406,-44.5093574523926,-112.122489929199,18.8880500793457,-44.2665328979492,-110.741355895996,24.0862617492676,-41.0998229980469,-82.988037109375,28.5990028381348,-39.4569625854492,-93.6626815795898,24.5957107543945,-42.8505973815918,\r\n-62.1267929077148,24.5394058227539,-36.6776885986328,-54.962890625,29.9512348175049,-29.4414825439453,-68.8010482788086,26.2873764038086,-37.1823387145996,-46.3621482849121,21.1514720916748,-40.1259307861328,-116.166885375977,7.94575881958008,-49.7132682800293,-125.763824462891,9.16404819488525,-47.4538459777832,71.5505065917969,-56.4678344726563,-98.5181503295898,74.8825378417969,-60.9809722900391,-99.3150329589844,67.6914215087891,-51.5229454040527,-96.7468795776367,-17.9542636871338,16.398006439209,-45.0234107971191,-12.3166122436523,13.6800413131714,-50.4318351745605,-18.5684242248535,20.1169700622559,-41.0893211364746,-6.1272349357605,14.5607271194458,-51.0966033935547,-0.185257002711296,10.8267612457275,-54.0257911682129,7.34610414505005,9.80115032196045,-52.369327545166,15.8826513290405,9.66576671600342,-53.0722961425781,33.6793937683105,-4.74101495742798,-67.4866104125977,32.5401840209961,-9.2299337387085,-68.023063659668,52.5269393920898,-21.2325801849365,-67.1853790283203,56.2572059631348,-27.4146862030029,-67.7228317260742,-207.66584777832,-109.43172454834,6.72255277633667,-209.854064941406,-104.848274230957,5.69301223754883,-207.247802734375,-100.777870178223,-4.75915193557739,-210.000076293945,-88.6231842041016,-10.2496013641357,-211.525238037109,-70.5989227294922,-14.1132802963257,-210.40412902832,-63.6494369506836,-17.4095039367676,-213.857467651367,-57.138801574707,-13.8635540008545,-206.169708251953,-39.1107330322266,-17.7258338928223,-201.823287963867,-35.5835876464844,-21.0070533752441,-168.054977416992,-11.6503419876099,-36.3613586425781,-180.156158447266,-9.90221118927002,-28.8243217468262,-192.239349365234,-13.345908164978,-22.2914810180664,-203.17041015625,-30.7182102203369,-18.6941299438477,-161.187301635742,-8.90323162078857,-38.4488639831543,-154.00959777832,-7.29267406463623,-41.1938323974609,-149.020111083984,2.76535105705261,-41.0565223693848,-111.958473205566,27.1255588531494,-38.743293762207,-77.8734359741211,31.7344093322754,-36.4423675537109,-90.4113616943359,28.7281150817871,-40.2583389282227,\r\n-53.7298698425293,24.4596977233887,-35.7025947570801,-73.978157043457,34.7740058898926,-33.5030822753906,-140.659286499023,7.31781721115112,-43.0597152709961,-129.387176513672,7.46127080917358,-47.3283348083496,-31.1731605529785,24.8643379211426,-36.5888824462891,-17.0564765930176,27.7597198486328,-34.2984580993652,-2.19742107391357,19.6960296630859,-45.8176879882813,2.32348203659058,16.2972965240479,-48.6445655822754,18.3902969360352,3.26425004005432,-58.9813766479492,11.4150133132935,9.44652462005615,-52.4710388183594,28.0809478759766,1.7349100112915,-63.880256652832,29.2274570465088,-1.44737195968628,-65.9868698120117,68.9229431152344,-48.5165519714355,-93.5189590454102,71.7648315429688,-48.4119453430176,-92.0794219970703,45.5967597961426,-11.2037982940674,-66.5444183349609,-211.184204101563,-96.4063415527344,1.41752302646637,-208.539947509766,-96.1579208374023,-5.6025447845459,-213.062393188477,-82.3921737670898,-9.68886470794678,-213.856460571289,-74.4890975952148,-10.487024307251,-211.80126953125,-61.6678428649902,-16.4335079193115,-215.078582763672,-49.7592735290527,-10.006477355957,-210.566146850586,-40.0219230651855,-13.2983989715576,-159.126098632813,-3.11652493476868,-36.9827194213867,-170.427200317383,-4.08299016952515,-31.7131042480469,-200.296142578125,-22.6938247680664,-19.2118797302246,-196.946792602539,-16.4848155975342,-19.6602230072021,-184.873626708984,-0.976733982563019,-22.1290645599365,-206.741760253906,-26.1444606781006,-13.7697458267212,-149.12712097168,6.84620094299316,-39.2692451477051,-120.983360290527,17.3384990692139,-43.295036315918,-118.646133422852,23.3630886077881,-40.1125297546387,-105.438835144043,28.2774715423584,-39.4807624816895,-83.4652862548828,32.136646270752,-37.2141418457031,-97.510856628418,28.5673007965088,-40.1584281921387,-89.4086608886719,33.408374786377,-36.8402061462402,-57.6482543945313,30.437183380127,-29.5804958343506,-52.2264251708984,28.1412582397461,-31.3512687683105,-62.5918388366699,29.0509452819824,-32.917121887207,-67.5990295410156,31.4895858764648,-33.3561668395996,\r\n-48.3894462585449,25.5387020111084,-34.9719200134277,-37.8128089904785,24.8274345397949,-35.9515228271484,-130.341278076172,11.9350690841675,-44.4156494140625,75.5639038085938,-56.9501800537109,-97.201416015625,73.4160919189453,-52.5751533508301,-95.4379501342773,-12.024884223938,26.0157508850098,-35.4872741699219,-7.24313497543335,18.561918258667,-46.2050247192383,-25.1547718048096,26.5186996459961,-35.3755645751953,25.4077835083008,5.07004690170288,-60.6478385925293,14.1085767745972,13.8914613723755,-50.1523094177246,19.2626838684082,7.56864213943481,-55.7441596984863,5.51386499404907,17.2459907531738,-47.764778137207,33.9612197875977,-0.94608598947525,-66.1045761108398,39.7647895812988,-6.21383905410767,-67.1184692382813,52.707160949707,-15.6209306716919,-65.7483367919922,-212.210296630859,-100.232818603516,7.8106689453125,-213.361419677734,-87.5237731933594,-6.46472978591919,-213.926467895508,-65.8013458251953,-13.124981880188,-216.153686523438,-71.8218307495117,-8.10669040679932,-214.947570800781,-60.8916664123535,-12.779748916626,-217.433807373047,-56.0774955749512,-8.73262214660645,-213.695449829102,-43.3804512023926,-10.0355796813965,-213.232406616211,-35.4773750305176,-10.1793937683105,-174.808639526367,2.06051206588745,-27.0180435180664,-194.317535400391,-9.19229125976563,-18.4073009490967,-187.422866821289,-0.255284011363983,-19.8152370452881,-211.265197753906,-31.2850646972656,-11.1932926177979,-122.713531494141,26.4297904968262,-36.6016807556152,-107.349029541016,31.9460296630859,-36.4680709838867,-80.9558410644531,35.4782752990723,-34.5552825927734,-100.653373718262,32.441577911377,-37.2001419067383,-46.9886093139648,30.9749355316162,-27.1360549926758,-128.566101074219,17.255989074707,-41.4804573059082,-141.872421264648,10.7790555953979,-40.4895629882813,-8.52312088012695,24.9502449035645,-36.979118347168,-22.341194152832,32.2119598388672,-28.7534141540527,-34.8166160583496,29.0309448242188,-30.3195686340332,-17.0612773895264,31.7247085571289,-30.019437789917,-2.35891604423523,23.593111038208,-41.6000747680664,\r\n2.64104390144348,20.486608505249,-45.4902572631836,20.7618293762207,13.4926223754883,-50.494743347168,24.1331596374512,13.0266771316528,-51.2010116577148,31.7225036621094,5.4746470451355,-61.5961303710938,40.9236030578613,-2.34640002250671,-65.6188278198242,45.629566192627,-4.96456623077393,-65.0497665405273,-212.789352416992,-95.9587097167969,6.69847011566162,-212.821350097656,-91.6477813720703,-1.98397099971771,-215.507629394531,-83.0142364501953,-6.450599193573,-216.516723632813,-78.5630950927734,-6.44577789306641,-216.376708984375,-44.6732788085938,-6.33810710906982,-161.322311401367,6.64241123199463,-31.9601287841797,-203.660461425781,-13.6509380340576,-11.5671300888062,-202.253326416016,-9.57883930206299,-10.8977642059326,-185.341674804688,6.90707683563232,-17.5172138214111,-177.545913696289,10.8312616348267,-20.9045448303223,-210.355117797852,-23.3467864990234,-8.48115825653076,-126.890937805176,21.5873146057129,-38.8652038574219,-114.601737976074,30.7688159942627,-35.1608390808105,-149.813186645508,10.6544437408447,-36.6417846679688,-139.381164550781,16.5112171173096,-37.7378921508789,-30.3047752380371,28.8024234771729,-31.4155750274658,5.88976192474365,24.6301136016846,-42.3288421630859,27.6416034698486,8.77952003479004,-57.5817375183105,12.9206609725952,17.5049152374268,-48.1010093688965,27.3821792602539,11.3418121337891,-53.977783203125,34.1460418701172,1.73901998996735,-64.4290084838867,54.3641204833984,-8.2921724319458,-62.5553283691406,-214.256500244141,-95.8858032226563,10.714054107666,-214.841552734375,-91.4094543457031,7.19884920120239,-215.215606689453,-87.3545608520508,-3.25132489204407,-217.157791137695,-62.4208145141602,-9.54863166809082,-218.679931640625,-78.5537948608398,-2.6696081161499,-217.719848632813,-41.0733261108398,-2.68352890014648,-215.603637695313,-35.952522277832,-6.69093179702759,-214.564529418945,-30.1458549499512,-6.82684516906738,-172.587417602539,6.07212495803833,-26.3553791046143,-193.038421630859,-4.51529312133789,-16.6863307952881,-189.091033935547,3.68622088432312,-15.924656867981,\r\n-153.438537597656,12.0092763900757,-33.7514038085938,-134.412673950195,21.0500621795654,-36.4078636169434,-121.006362915039,30.3305721282959,-33.6007881164551,1.53028500080109,27.1199588775635,-38.0965270996094,9.97172164916992,21.2070789337158,-45.5861625671387,24.4914932250977,16.9399585723877,-48.1769142150879,18.2610836029053,21.3072891235352,-45.4009437561035,30.9128227233887,14.3913097381592,-50.841178894043,34.5183792114258,8.33191680908203,-58.6957473754883,38.9547119140625,5.38590812683105,-61.072681427002,41.6442756652832,2.64435911178589,-62.6956405639648,48.7797737121582,0.664488971233368,-61.4260177612305,53.9308776855469,-1.7878350019455,-60.5752334594727,-216.367706298828,-87.1493377685547,0.0609930008649826,-217.502807617188,-82.8142166137695,-3.24393391609192,-218.387908935547,-70.6780242919922,-4.49937677383423,-218.239883422852,-62.0004768371582,-7.52645397186279,-219.018966674805,-55.4751358032227,-5.55041980743408,-163.54052734375,11.7288503646851,-28.0008392333984,-206.56575012207,-10.0557851791382,-6.45341920852661,-202.865386962891,-5.2133412361145,-7.17586898803711,-189.726104736328,8.02628707885742,-13.1426839828491,-183.414474487305,11.1433916091919,-16.8898525238037,-173.565505981445,10.9041690826416,-23.1216621398926,-215.131591796875,-25.5733070373535,-3.42547202110291,-131.477386474609,29.9647369384766,-29.6837043762207,-145.871795654297,23.7152233123779,-28.5973987579346,-140.046234130859,27.0493507385254,-28.8613243103027,7.37377691268921,27.7548198699951,-38.93701171875,15.0881729125977,24.5763092041016,-42.902099609375,33.838809967041,11.2774057388306,-54.9428787231445,-217.075790405273,-91.4241561889648,13.9560708999634,-217.59782409668,-86.8579177856445,5.84051609039307,-221.493209838867,-78.2806701660156,4.21288681030273,-219.155975341797,-82.411979675293,1.4713180065155,-221.670227050781,-38.3439559936523,6.07302904129028,-216.351699829102,-31.093448638916,-3.70163893699646,-168.792037963867,15.4786167144775,-23.1709651947021,-208.403930664063,-9.50076103210449,-3.59835910797119,\r\n-195.070617675781,-0.779596984386444,-11.543327331543,-192.846405029297,7.21008682250977,-9.96010208129883,-186.874816894531,10.8828659057617,-14.6369304656982,-180.521194458008,15.1818876266479,-18.0411643981934,-173.610504150391,15.8561544418335,-21.2037734985352,-154.766662597656,19.6073207855225,-27.6123027801514,12.6100311279297,27.5175971984863,-40.0548210144043,30.8645191192627,17.6624317169189,-48.0073013305664,21.6591167449951,25.0993595123291,-43.2074317932129,39.7480888366699,13.6886405944824,-51.9588890075684,43.4130477905273,8.95470714569092,-56.8631706237793,47.2308235168457,6.02426099777222,-58.607536315918,52.9573822021484,3.15862894058228,-59.3654136657715,-220.085067749023,-69.3621978759766,-0.605307996273041,-221.676223754883,-73.7343215942383,3.43487000465393,-219.830047607422,-60.9391708374023,-3.41286110877991,-221.603225708008,-48.3933410644531,3.58577489852905,-218.079879760742,-26.2892742156982,3.74093008041382,-217.872863769531,-32.7253074645996,0.693029999732971,-163.944564819336,15.7410430908203,-25.3481788635254,-205.894683837891,-0.536220014095306,0.175915002822876,-194.0615234375,3.3914520740509,-9.84513092041016,-202.266311645508,-0.460130989551544,-3.79661798477173,-192.631393432617,11.2740039825439,-10.4190168380737,-189.825119018555,14.2298946380615,-13.0344743728638,-184.972625732422,15.5739259719849,-15.7703409194946,-177.255874633789,15.2500944137573,-19.7798347473145,-216.897750854492,-23.7235260009766,2.24600410461426,-214.307510375977,-18.485912322998,0.261831998825073,-157.938980102539,19.6411247253418,-26.1589603424072,-150.191223144531,24.9870491027832,-25.9392395019531,-141.286346435547,29.9665374755859,-26.2131652832031,22.0150527954102,28.8039226531982,-40.423957824707,37.1098289489746,23.4017925262451,-44.3031387329102,38.6976852416992,17.5586204528809,-48.3362350463867,-220.069076538086,-86.8660125732422,14.4745216369629,-221.486206054688,-82.4106826782227,8.3223991394043,-224.754531860352,-77.8725280761719,11.0693893432617,-220.560119628906,-55.2795181274414,-1.16241002082825,\r\n-223.042358398438,-43.0165138244629,7.8608341217041,-220.589126586914,-24.797830581665,9.52590656280518,-164.056579589844,20.7087287902832,-23.4267902374268,-209.163009643555,-6.10256814956665,0.169746994972229,-198.601974487305,3.32849597930908,-5.15499114990234,-196.553771972656,10.7616548538208,-7.54785585403442,-195.685684204102,7.34432888031006,-7.17895984649658,-181.160263061523,19.8479461669922,-18.611120223999,-175.954742431641,20.436502456665,-20.4402980804443,-169.408096313477,19.9067516326904,-21.9578475952148,-154.717666625977,25.5246028900146,-24.6609134674072,-145.840789794922,30.0686473846436,-24.8555316925049,32.2112503051758,29.2276649475098,-40.4549598693848,45.6004638671875,11.6480417251587,-54.2870178222656,49.8747825622559,7.82259607315063,-57.2222023010254,-220.593124389648,-65.5548248291016,0.471192985773087,-221.669219970703,-67.9852600097656,4.02027797698975,-225.899642944336,-73.4240951538086,11.5733375549316,-221.16618347168,-54.887077331543,3.00590801239014,-223.20637512207,-37.354362487793,10.250807762146,-223.080368041992,-47.587963104248,8.33368015289307,-160.541244506836,20.2540855407715,-24.7374210357666,-208.413925170898,-0.239682003855705,3.22397994995117,-202.385330200195,3.76038908958435,-1.27755105495453,-197.309844970703,14.2428960800171,-8.9916877746582,-193.135437011719,15.5445232391357,-11.643536567688,-191.193237304688,19.0723686218262,-14.2858963012695,-212.687347412109,-9.05348682403564,5.08483219146729,-158.186004638672,24.9324436187744,-24.1657657623291,-151.553359985352,30.1956577301025,-23.8202304840088,-223.767440795898,-82.0884399414063,14.5944328308105,-223.413391113281,-68.7926406860352,7.53126192092896,-227.180755615234,-77.6665115356445,17.4599151611328,-221.328201293945,-61.4812240600586,4.66323089599609,-221.878234863281,-55.7305641174316,8.81101703643799,-224.951553344727,-38.7420959472656,13.5361299514771,-222.606323242188,-56.224006652832,11.2439050674438,-226.320678710938,-47.5468559265137,14.9504690170288,-221.634231567383,-23.5762119293213,14.162091255188,\r\n-165.782745361328,25.2931785583496,-22.8789386749268,-161.325317382813,24.7993297576904,-23.5144996643066,-206.73176574707,4.55024576187134,2.28139710426331,-210.258117675781,-4.23900508880615,3.38918590545654,-199.213027954102,7.08272409439087,-3.99060702323914,-202.802383422852,14.8089513778687,-5.7121958732605,-183.793518066406,24.4040908813477,-19.1279716491699,-171.352294921875,24.1117630004883,-21.8284358978271,-217.301803588867,-15.0066709518433,9.03523921966553,-216.28369140625,-8.78176116943359,12.0380830764771,-156.384826660156,29.4880905151367,-23.6043090820313,-222.408309936523,-60.7827529907227,10.0223846435547,-228.318878173828,-73.3342895507813,17.4963188171387,-226.151672363281,-69.0918655395508,12.295708656311,-226.720718383789,-43.1648292541504,15.5051231384277,-223.908447265625,-29.2214622497559,19.0670738220215,-220.256088256836,-16.1803855895996,15.6415367126465,-159.755661010742,24.8658866882324,-23.8401317596436,-209.945083618164,3.55157804489136,5.76264810562134,-211.111190795898,-0.161335006356239,6.58369922637939,-203.201416015625,7.78535318374634,-1.37984097003937,-205.176605224609,19.319694519043,-6.27522087097168,-197.407852172852,19.6287231445313,-11.5315256118774,-192.215347290039,24.7489242553711,-16.2068843841553,-185.876724243164,29.4077816009521,-19.7143287658691,-176.053756713867,29.5384941101074,-21.9535484313965,-214.573516845703,-4.3004322052002,11.7006502151489,-160.786254882813,30.2812671661377,-23.4851970672607,-226.375686645508,-64.5103225708008,14.8143548965454,-227.661819458008,-38.6150856018066,20.4445056915283,-226.730728149414,-35.6741943359375,20.1726818084717,-225.355590820313,-55.794864654541,16.5317249298096,-227.172760009766,-51.6286582946777,22.3998985290527,-223.506408691406,-17.7705421447754,24.4791011810303,-221.826248168945,-14.2625980377197,21.1647777557373,-213.755447387695,8.17432117462158,7.06846618652344,-208.643951416016,10.0717868804932,0.682412981987,-207.931884765625,13.9400663375854,-2.43376493453979,-210.97917175293,19.098072052002,-2.70770192146301,\r\n-196.997817993164,24.4741973876953,-13.6982393264771,-217.12678527832,-4.54729604721069,16.7831478118896,-226.418701171875,-60.4429244995117,17.5773258209229,-228.743911743164,-69.0028610229492,18.3856067657471,-228.473892211914,-42.8959045410156,22.3181915283203,-227.537811279297,-26.6843147277832,28.3920841217041,-224.924545288086,-19.2298851013184,27.7548236846924,-220.154067993164,-8.42757606506348,21.6012210845947,-166.596832275391,30.7680644989014,-23.2701263427734,-175.087661743164,34.0621376037598,-22.5939102172852,-213.000366210938,3.85627794265747,9.03128910064697,-214.214492797852,0.0880929976701736,11.8432645797729,-209.308013916016,26.2680721282959,-6.22945690155029,-205.304626464844,25.8872375488281,-8.39492893218994,-194.806594848633,29.1096534729004,-16.2671909332275,-216.297714233398,0.147225007414818,15.0248756408691,-229.02294921875,-64.697639465332,21.2440853118896,-229.203964233398,-33.8453178405762,27.3332824707031,-226.24967956543,-55.6383514404297,19.0674724578857,-223.147384643555,-13.3358068466187,27.520601272583,-221.949249267578,-8.28487110137939,29.0342502593994,-167.410919189453,36.2429504394531,-23.6613159179688,-213.452423095703,14.1422853469849,1.47792899608612,-216.307708740234,4.55949687957764,12.6547431945801,-213.061386108398,25.5462036132813,-3.81827092170715,-204.628570556641,32.7550086975098,-10.8264570236206,-192.609375,34.1295471191406,-17.8571453094482,-199.17903137207,29.0919513702393,-13.6321315765381,-188.068923950195,34.1892509460449,-19.4596042633057,-219.096984863281,-3.97741007804871,21.5425148010254,-218.302886962891,-0.218909993767738,18.6544303894043,-229.896041870117,-26.9765434265137,35.0069313049316,-227.871841430664,-21.5458106994629,34.0750427246094,-227.471786499023,-56.0977973937988,22.9292507171631,-224.449493408203,-14.8840579986572,31.6178016662598,-220.499114990234,-3.86658906936646,25.9976501464844,-160.173202514648,41.0225219726563,-23.8141307830811,-223.851440429688,12.0447797775269,14.7888526916504,-216.65673828125,24.1299648284912,-0.632274985313416,\r\n-215.317596435547,33.5716896057129,-6.02025604248047,-209.46403503418,33.2064552307129,-8.46210479736328,-196.810791015625,33.1796493530273,-15.7682409286499,-179.917129516602,38.9807167053223,-21.5871124267578,-218.841949462891,4.48785018920898,15.6167335510254,-222.117279052734,-3.83518600463867,32.5280914306641,-172.904449462891,44.7431831359863,-23.0561542510986,-162.77946472168,50.384635925293,-23.5353031158447,-216.595718383789,16.8735542297363,2.97185492515564,-220.980163574219,34.8851165771484,-3.52882194519043,-209.814071655273,38.3384590148926,-9.32439994812012,-202.321334838867,34.5861892700195,-12.6323337554932,-196.956802368164,45.7873878479004,-16.3717002868652,-188.467971801758,41.504566192627,-19.6836242675781,-220.224090576172,0.386036992073059,22.2834873199463,-221.232177734375,4.65121603012085,18.82594871521,-230.334579467773,-27.2140159606934,37.405216217041,-228.631408691406,-21.2218799591064,39.0683822631836,-227.785827636719,-18.9099025726318,39.0969848632813,-222.922348022461,-8.08274173736572,38.4132690429688,-222.172271728516,0.372108995914459,27.4359912872314,-168.839050292969,46.7984848022461,-23.4584941864014,-226.801727294922,17.9447593688965,13.6164379119873,-219.649032592773,22.1387691497803,3.0669538974762,-218.280883789063,37.6904907226563,-5.76299095153809,-222.126266479492,31.070743560791,-0.802402019500732,-206.569747924805,41.463062286377,-11.0568799972534,-202.121307373047,43.1438255310059,-13.20578956604,-192.945419311523,43.420654296875,-18.2569847106934,-177.695922851563,43.8418960571289,-22.2157726287842,-229.643508911133,-23.9372463226318,39.5343284606934,-225.038558959961,-12.0189781188965,41.0453262329102,-223.961456298828,0.540175020694733,31.9728374481201,-222.992370605469,-3.59181189537048,38.6130867004395,-171.849349975586,53.9380874633789,-24.1021575927734,-165.374725341797,57.7105522155762,-24.1561641693115,-227.021743774414,12.137188911438,18.710636138916,-224.211471557617,22.6028137207031,7.35810518264771,-222.103271484375,39.8327026367188,-3.40837001800537,-224.177474975586,35.2602577209473,-0.84817898273468,\r\n-214.482528686523,43.5552673339844,-7.80141115188599,-202.43034362793,51.6519622802734,-13.753643989563,-192.651382446289,52.1501121520996,-19.4437007904053,-189.467071533203,51.7847747802734,-20.5810127258301,-178.455001831055,53.0805015563965,-23.1422634124756,-224.186477661133,5.30941009521484,23.399995803833,-224.323486328125,-8.4962215423584,45.6792793273926,-225.208572387695,0.953049004077911,35.4808807373047,-227.107757568359,4.45927715301514,30.6046028137207,-224.009460449219,-4.1664080619812,44.4628601074219,-233.752410888672,18.1656799316406,21.2157821655273,-228.700912475586,24.8020305633545,11.0458860397339,-225.003540039063,30.5492935180664,2.26916599273682,-218.750930786133,42.1052284240723,-5.77201223373413,-211.23420715332,52.5679512023926,-10.3599109649658,-197.418838500977,52.458740234375,-16.5898208618164,-226.119674682617,0.954591989517212,39.0449295043945,-174.553619384766,57.7629623413086,-23.956844329834,-170.17317199707,60.1194915771484,-24.2490730285645,-230.948135375977,13.6792411804199,21.8775482177734,-226.894744873047,9.22166442871094,21.9523544311523,-224.75553894043,41.2885475158691,-0.860598027706146,-220.480102539063,52.5718536376953,-4.24646186828613,-226.956741333008,35.2297515869141,2.54153299331665,-218.693939208984,51.2214202880859,-5.72179698944092,-215.602630615234,52.0038948059082,-7.88098812103271,-199.661071777344,57.6421508789063,-14.6695337295532,-193.578475952148,57.6254463195801,-18.6682262420654,-190.133148193359,58.3957214355469,-20.1360683441162,-183.227462768555,57.7643623352051,-22.1824703216553,-230.381088256836,9.41892337799072,26.8680362701416,-224.308486938477,-3.76782894134521,47.9424018859863,-234.222457885742,9.73018264770508,33.7053070068359,-227.237777709961,0.851067006587982,44.681884765625,-234.014434814453,13.8769598007202,25.9842491149902,-234.72151184082,22.7147254943848,19.7373371124268,-227.850830078125,30.9502334594727,5.72828483581543,-211.225204467773,57.0534934997559,-10.0883846282959,-202.839385986328,57.658748626709,-13.1122808456421,-236.583694458008,9.89602947235107,39.6622924804688,\r\n-175.067657470703,62.2666015625,-23.3287811279297,-236.334655761719,18.2445888519287,25.4293956756592,-233.946426391602,26.6054077148438,16.9518642425537,-229.818023681641,30.9883365631104,9.03192901611328,-225.287582397461,53.2065162658691,0.926797986030579,-228.087844848633,37.1301383972168,4.20081520080566,-216.629745483398,57.2454071044922,-6.54207706451416,-199.56005859375,66.9463577270508,-12.547625541687,-192.978424072266,67.8020477294922,-16.7671394348145,-184.66960144043,63.7968521118164,-20.8561382293701,-224.752532958984,-2.71336603164673,51.097412109375,-227.582809448242,0.799018979072571,47.3213424682617,-238.142837524414,9.8261833190918,46.4823570251465,-237.880813598633,14.0788803100586,33.4737854003906,-170.898254394531,71.7024230957031,-22.0974617004395,-237.514785766602,27.1967639923096,24.2559795379639,-230.567092895508,26.6652126312256,12.2492036819458,-241.350143432617,22.963550567627,32.7615165710449,-224.432495117188,56.1192016601563,1.00244796276093,-227.057754516602,47.7962837219238,2.88052606582642,-219.685028076172,58.9948806762695,-3.06144595146179,-212.940368652344,62.7140464782715,-7.26849889755249,-202.947387695313,66.2446899414063,-10.767050743103,-189.855117797852,66.9989624023438,-18.446102142334,-185.840713500977,67.7260360717773,-19.6476211547852,-240.281051635742,14.2288942337036,39.9523162841797,-240.260040283203,18.5009136199951,33.4486808776855,-233.934432983398,31.0389423370361,16.4911193847656,-231.932235717773,32.2799606323242,12.4922275543213,-230.411087036133,35.922420501709,9.45635986328125,-227.116760253906,57.3446197509766,5.79219102859497,-228.40087890625,52.8506813049316,6.17870903015137,-228.687911987305,47.3812408447266,6.02329397201538,-215.84765625,62.4082145690918,-5.22286796569824,-209.207000732422,61.8499603271484,-9.54935169219971,-195.8046875,79.7255096435547,-12.5285243988037,-203.349426269531,73.0951614379883,-9.18801689147949,-189.606079101563,75.1245651245117,-17.1820812225342,-180.000137329102,72.0762634277344,-20.4018955230713,-228.281875610352,1.1693149805069,53.0256996154785,\r\n-235.633605957031,6.8239688873291,53.4622421264648,-242.339248657227,14.3665075302124,50.0324058532715,-236.960723876953,34.5767860412598,23.6630210876465,-241.314147949219,27.3453788757324,31.4708881378174,-242.125228881836,18.5243148803711,39.0990333557129,-226.767730712891,61.8991661071777,7.84932279586792,-222.802337646484,66.1094741821289,4.53642797470093,-216.667739868164,73.5391082763672,1.0874400138855,-212.847351074219,71.3841934204102,-3.34124398231506,-207.589859008789,67.7731475830078,-8.17803764343262,-200.787185668945,80.7682113647461,-9.57892513275146,-185.887710571289,75.7730255126953,-18.490608215332,-239.50798034668,10.0836877822876,53.6488609313965,-171.603332519531,81.789909362793,-21.0905647277832,-241.252151489258,33.1320457458496,31.1570568084717,-234.810501098633,39.7778968811035,19.9985637664795,-243.255340576172,27.4021854400635,36.9109191894531,-243.188339233398,22.7583293914795,39.1864433288574,-232.088241577148,42.3697509765625,14.8745622634888,-230.533096313477,52.1665115356445,12.292407989502,-229.787017822266,61.8225593566895,13.8107566833496,-220.319091796875,73.2378768920898,4.68277311325073,-207.379821777344,71.9603500366211,-6.97069978713989,-196.540771484375,85.2272567749023,-11.6652393341064,-187.765899658203,81.3761749267578,-16.4902114868164,-206.983795166016,76.0706558227539,-6.00047492980957,-232.01123046875,4.72611284255981,59.0019874572754,-237.794815063477,9.10772228240967,61.100887298584,-243.972412109375,18.4269065856934,49.7470779418945,-242.253234863281,13.7532472610474,54.1883125305176,-238.437881469727,37.3055534362793,26.2379741668701,-242.769302368164,32.1437492370605,34.2554588317871,-229.574005126953,65.4731140136719,13.7696533203125,-226.348678588867,66.3335037231445,9.13180923461914,-226.335678100586,74.7497253417969,11.660945892334,-213.115386962891,77.2583694458008,-0.579203009605408,-217.432815551758,80.829216003418,4.82164621353149,-199.796096801758,86.3231582641602,-9.87361431121826,-188.50798034668,86.0832366943359,-15.3212976455688,-207.438842773438,80.6854019165039,-4.35166311264038,\r\n-176.408782958984,85.6139907836914,-19.1587734222412,-240.826095581055,11.7349500656128,58.7819633483887,-241.590179443359,42.2979431152344,30.2256660461426,-235.762619018555,43.9704093933105,21.5018100738525,-231.98323059082,50.6291618347168,15.5159244537354,-245.246536254883,31.0917453765869,42.1000328063965,-244.708480834961,35.6660957336426,38.2016448974609,-245.210525512695,25.4567947387695,46.6661758422852,-232.818328857422,60.2140007019043,19.1229763031006,-221.397201538086,80.2300567626953,8.48593521118164,-203.280426025391,85.2500534057617,-7.14482688903809,-195.357650756836,94.9902114868164,-12.3819103240967,-182.867431640625,85.479377746582,-17.366397857666,-171.773345947266,90.7146911621094,-19.6544227600098,-242.355255126953,14.4045124053955,63.4946250915527,-244.505462646484,18.369701385498,56.120002746582,-243.25634765625,15.1189823150635,58.8544731140137,-236.647689819336,47.9223976135254,22.4266014099121,-244.168441772461,40.0116233825684,35.9598274230957,-245.444564819336,22.4358997344971,52.8429794311523,-232.482284545898,70.8010330200195,17.6652355194092,-228.458892822266,70.3166885375977,12.6072387695313,-224.238479614258,81.2567672729492,12.1729955673218,-213.920455932617,85.8155059814453,3.6334400177002,-219.287994384766,90.8015975952148,9.89113330841064,-202.580352783203,93.3250503540039,-7.43042421340942,-199.702072143555,96.1826248168945,-9.51980876922607,-187.607879638672,93.728889465332,-15.3946046829224,-179.235076904297,91.1462326049805,-17.8143405914307,-210.476119995117,84.0630416870117,-0.302794992923737,-207.005798339844,84.2079544067383,-3.78154706954956,-239.541976928711,11.5419311523438,65.6369323730469,-238.865905761719,50.1344146728516,26.333984375,-246.955703735352,27.4637908935547,53.1895141601563,-247.531753540039,35.7888069152832,49.6837730407715,-246.909698486328,40.4195594787598,47.298038482666,-242.759292602539,45.4556541442871,33.0637435913086,-234.400482177734,53.2029151916504,19.7690391540527,-236.077651977539,63.2070960998535,24.3225860595703,-231.221160888672,74.9738464355469,17.2313919067383,\r\n-227.488784790039,79.4559783935547,15.3617086410522,-222.258285522461,88.2711486816406,12.1897983551025,-205.870681762695,89.1858444213867,-3.97924590110779,-197.209823608398,100.697868347168,-10.1453895568848,-189.703094482422,99.0498046875,-14.3431024551392,-175.559707641602,95.7102737426758,-19.2306804656982,-241.884216308594,14.444016456604,67.551025390625,-244.891494750977,19.0730686187744,61.5632362365723,-247.220733642578,26.1654644012451,57.834171295166,-247.664779663086,31.59889793396,52.1200103759766,-244.538467407227,44.11572265625,38.2497482299805,-237.002731323242,58.0257873535156,24.8868427276611,-235.156555175781,71.1448745727539,23.3057861328125,-225.296569824219,84.7372970581055,15.5512266159058,-213.75244140625,94.7314834594727,7.58614683151245,-220.369110107422,93.244743347168,12.2740058898926,-204.242523193359,97.5860595703125,-4.66934394836426,-201.728271484375,98.4999542236328,-7.27395915985107,-193.389450073242,100.344833374023,-12.4268140792847,-183.214462280273,95.1014175415039,-16.8264465332031,-184.975631713867,101.092903137207,-16.635124206543,-209.440032958984,89.0486297607422,0.813151001930237,-169.532119750977,95.2790374755859,-20.2645816802979,-244.115417480469,18.0391674041748,68.4727096557617,-240.494079589844,61.5870361328125,33.3037643432617,-247.961807250977,41.5078659057617,53.8419799804688,-248.698883056641,32.3392715454102,59.3311157226563,-246.462646484375,49.122314453125,48.2240295410156,-243.11833190918,60.0451812744141,40.3354568481445,-237.503784179688,66.4079055786133,27.701717376709,-233.61540222168,75.1329650878906,21.6254234313965,-229.757019042969,79.476188659668,18.5250186920166,-226.389678955078,85.6366958618164,18.5440216064453,-222.931350708008,92.9249114990234,16.1052837371826,-207.585845947266,92.9954071044922,-0.421436011791229,-199.137008666992,107.866569519043,-6.06702089309692,-194.541564941406,105.27131652832,-10.2793035507202,-189.133041381836,105.26131439209,-13.9410619735718,-173.236480712891,99.5722579956055,-21.3248863220215,-180.567199707031,99.209716796875,-18.3872985839844,\r\n-239.671997070313,15.2694959640503,75.4085922241211,-242.875305175781,19.5306148529053,76.6336135864258,-245.956604003906,22.7436275482178,71.16748046875,-247.438766479492,26.1537628173828,61.8466644287109,-239.139938354492,65.7048416137695,31.2707672119141,-249.03190612793,36.2229461669922,59.3768196105957,-244.790496826172,55.5285415649414,44.689582824707,-235.260559082031,75.2702789306641,26.5575046539307,-237.410766601563,70.83154296875,29.8309268951416,-232.126251220703,79.5854949951172,22.9635543823242,-214.173492431641,101.402931213379,12.1476936340332,-211.359222412109,101.217918395996,8.76888275146484,-220.123077392578,97.0889129638672,15.2329959869385,-202.496353149414,107.71656036377,-2.91351199150085,-206.491744995117,105.857376098633,2.03601288795471,-185.154663085938,106.154396057129,-17.4364051818848,-209.074996948242,101.237915039063,5.47259998321533,-177.421890258789,100.227821350098,-20.2159786224365,-241.081130981445,66.583122253418,37.8875160217285,-249.376937866211,42.705883026123,61.4702262878418,-248.096817016602,49.4665489196777,58.6048431396484,-248.639862060547,31.4160785675049,64.265495300293,-246.447647094727,53.3768310546875,51.0408058166504,-243.872406005859,62.2837028503418,45.6087760925293,-227.231781005859,86.6089859008789,21.7438335418701,-222.516296386719,96.0966110229492,18.8730545043945,-217.617828369141,101.775970458984,16.6169319152832,-204.868576049805,107.175506591797,-0.0565220005810261,-204.129501342773,113.441116333008,0.366984993219376,-196.666778564453,109.840766906738,-7.25186681747437,-192.341354370117,110.23380279541,-10.7931537628174,-182.029342651367,104.752258300781,-20.0486602783203,-187.425872802734,110.066787719727,-16.7978420257568,-177.920944213867,104.39323425293,-23.3788871765137,-244.534469604492,23.8050327301025,81.1440505981445,-248.159820556641,30.2506637573242,74.3799896240234,-242.967315673828,66.5253143310547,46.4575538635254,-239.246948242188,70.9248504638672,36.4944763183594,-249.67497253418,38.3533592224121,65.0983810424805,-245.080520629883,57.9561805725098,48.8288879394531,\r\n-236.601684570313,75.0813522338867,32.5444946289063,-233.832412719727,79.7389144897461,29.1790618896484,-227.940841674805,87.7336959838867,25.6647186279297,-211.756256103516,105.68635559082,10.7539577484131,-214.175491333008,106.425430297852,14.8639612197876,-208.926971435547,114.797248840332,6.97096681594849,-200.358139038086,117.567520141602,-1.83548605442047,-189.304046630859,110.450828552246,-14.1510829925537,-185.282653808594,109.872764587402,-20.2323799133301,-171.112274169922,101.726974487305,-24.1618633270264,-247.036712646484,28.0262470245361,78.2379684448242,-240.513076782227,71.0926666259766,43.1539344787598,-250,44.7118835449219,69.8606491088867,-249.277923583984,49.0748100280762,65.2575988769531,-248.569869995117,53.2269134521484,65.8103485107422,-249.558959960938,36.5356826782227,71.2470855712891,-246.611663818359,57.8107643127441,58.4928321838379,-243.564376831055,65.9352645874023,51.1812210083008,-231.261169433594,83.8954162597656,29.558801651001,-223.989456176758,97.5170593261719,27.3348827362061,-216.60173034668,106.232406616211,19.1161766052246,-220.465103149414,102.110000610352,22.6551246643066,-204.900573730469,118.89665222168,3.35526299476624,-195.232635498047,114.713241577148,-7.6895899772644,-191.408264160156,114.076179504395,-13.1943893432617,-183.669509887695,109.648742675781,-23.4450931549072,-187.870910644531,113.831153869629,-20.6742210388184,-174.494598388672,104.20320892334,-26.7236156463623,-245.227523803711,27.2823734283447,84.1345520019531,-248.127822875977,31.7934150695801,78.9816436767578,-241.947204589844,70.598518371582,52.0780067443848,-238.068832397461,75.024658203125,39.7814025878906,-249.955001831055,40.352954864502,71.7285308837891,-244.707489013672,62.2588996887207,54.7500686645508,-235.023544311523,79.6187057495117,37.1344413757324,-232.210266113281,84.3956680297852,36.9976272583008,-229.59700012207,88.378059387207,34.2912635803223,-226.556701660156,93.2774429321289,30.322774887085,-213.535430908203,110.708847045898,14.4617204666138,-215.068572998047,108.470626831055,16.788948059082,\r\n-210.356109619141,112.671043395996,8.89524555206299,-199.151016235352,123.308082580566,-0.980812013149261,-197.638870239258,118.721633911133,-4.16499376296997,-191.547286987305,118.695625305176,-17.81494140625,-182.181350708008,109.556732177734,-27.3062725067139,-178.344985961914,106.083389282227,-26.9521389007568,-246.849700927734,31.677604675293,84.2638549804688,-248.966903686523,36.0900344848633,79.0991516113281,-239.643981933594,75.037353515625,53.5322494506836,-235.790618896484,80.0420455932617,42.9796142578125,-249.636978149414,42.180835723877,77.2607727050781,-249.402938842773,49.3480377197266,72.9871597290039,-246.027618408203,63.031177520752,64.8714599609375,-243.56037902832,66.7638473510742,58.2272109985352,-225.81364440918,97.6676635742188,32.8908271789551,-222.5283203125,101.696960449219,28.2008666992188,-220.229095458984,106.019393920898,26.1076622009277,-215.635635375977,110.829360961914,18.839448928833,-208.839981079102,122.515007019043,10.121696472168,-211.201202392578,119.370697021484,12.3338117599487,-198.274932861328,128.184555053711,-0.0709120035171509,-195.646682739258,119.790740966797,-7.46060705184937,-193.711502075195,118.580619812012,-11.5899324417114,-185.965728759766,116.019371032715,-30.691104888916,-190.178146362305,118.950660705566,-23.6108093261719,-174.789627075195,106.930473327637,-36.5478782653809,-243.42936706543,31.986234664917,92.4967651367188,-247.671768188477,35.6347923278809,84.8294219970703,-240.840103149414,73.289176940918,60.0800895690918,-238.593887329102,75.4532470703125,46.7844390869141,-248.245834350586,55.7099571228027,70.3581008911133,-233.694396972656,84.1036376953125,42.8167991638184,-230.811126708984,88.5288772583008,39.3107566833496,-228.431884765625,92.8312911987305,36.2123527526855,-224.037460327148,101.710960388184,31.4775886535645,-217.73583984375,110.94987487793,23.2171783447266,-204.243515014648,127.778518676758,7.32379198074341,-196.705780029297,123.131065368652,-4.8000168800354,-188.266967773438,119.00365447998,-29.945629119873,-193.589477539063,123.846138000488,-14.6235294342041,\r\n-191.119232177734,123.937149047852,-23.1730651855469,-184.635589599609,115.776344299316,-34.7909049987793,-179.5380859375,109.284713745117,-34.7691040039063,-248.490844726563,40.1432342529297,83.1814498901367,-237.662796020508,79.7558135986328,56.2140121459961,-236.674697875977,79.8138198852539,50.4149436950684,-248.017807006836,51.9583930969238,81.0255432128906,-247.992797851563,55.7061576843262,76.2332763671875,-246.775680541992,61.2414016723633,72.2432861328125,-245.059509277344,66.0947799682617,66.0450744628906,-225.99365234375,101.893989562988,35.1671485900879,-228.449890136719,97.1701202392578,38.5196762084961,-222.792327880859,106.182403564453,30.6490077972412,-216.411712646484,115.876350402832,20.5106143951416,-214.635543823242,119.461700439453,17.4142112731934,-220.177093505859,111.386917114258,26.8243312835693,-212.945373535156,123.348083496094,15.3833112716675,-210.587142944336,128.019546508789,14.0629816055298,-196.389755249023,127.511497497559,-4.62326908111572,-201.890289306641,132.240951538086,7.94137191772461,-189.921112060547,123.339088439941,-33.1617469787598,-191.84130859375,123.446098327637,-19.5630130767822,-190.922225952148,122.722023010254,-26.2991733551025,-189.298049926758,123.331085205078,-37.7592964172363,-177.476898193359,109.373718261719,-39.3826560974121,-243.756393432617,36.5733833312988,94.8530960083008,-244.603469848633,41.7800941467285,94.7685852050781,-238.218841552734,79.377685546875,60.8653717041016,-237.168746948242,79.7848205566406,53.3144798278809,-234.83251953125,84.2623519897461,47.9670028686523,-247.682769775391,47.5255584716797,84.8361206054688,-244.477462768555,67.5856246948242,68.4712066650391,-233.395370483398,88.4506683349609,46.0959205627441,-230.760116577148,92.9698104858398,41.9577140808105,-225.422592163086,106.480438232422,34.1292495727539,-205.411636352539,132.222961425781,12.1874980926514,-194.27653503418,130.972839355469,-12.9050607681274,-196.321731567383,132.399963378906,-0.938099980354309,-197.862884521484,132.558990478516,2.22167110443115,-190.281158447266,123.771133422852,-29.6049976348877,\r\n-191.911315917969,127.857528686523,-18.056266784668,-190.258148193359,128.270568847656,-22.3572883605957,-190.225143432617,127.297477722168,-26.297872543335,-182.786407470703,114.827255249023,-38.9752159118652,-175.548706054688,108.936676025391,-42.2238349914551,-244.116424560547,49.6311645507813,96.7875900268555,-236.985717773438,84.0864410400391,58.21630859375,-239.851013183594,75.7444229125977,64.0876846313477,-236.830215454102,81.9501342773438,54.3156280517578,-245.08251953125,58.3987236022949,87.8190078735352,-245.968612670898,53.6497573852539,88.3139572143555,-244.248443603516,62.5954322814941,85.9106216430664,-232.042251586914,101.622955322266,46.254035949707,-227.913833618164,106.276412963867,37.5589866638184,-232.072250366211,97.2671279907227,45.9112014770508,-222.766326904297,113.539123535156,29.0754528045654,-218.110870361328,119.270690917969,22.5623149871826,-216.280685424805,124.174171447754,19.4805126190186,-216.546722412109,128.271575927734,20.6361255645752,-211.846267700195,132.186950683594,18.6680335998535,-194.879608154297,132.288970947266,-9.13643074035645,-195.044616699219,133.241058349609,-5.11535787582397,-200.56916809082,136.059341430664,11.6390447616577,-197.432846069336,136.285354614258,6.46714687347412,-192.685394287109,132.358963012695,-17.1916809082031,-190.067123413086,127.476486206055,-34.7462043762207,-188.286956787109,123.274078369141,-44.0652160644531,-180.103149414063,112.967071533203,-42.9110984802246,-244.766479492188,45.1982307434082,94.8712005615234,-237.464767456055,84.2064514160156,64.7943496704102,-237.790817260742,80.0696411132813,69.2394866943359,-235.909118652344,84.1744003295898,53.0916557312012,-234.932525634766,88.5200729370117,51.1535148620605,-244.272445678711,66.9032516479492,74.9149398803711,-242.083221435547,71.4693069458008,72.5722122192383,-233.779418945313,93.0695190429688,48.4119491577148,-228.422882080078,114.948257446289,34.0471420288086,-203.820465087891,136.026336669922,15.9031620025635,-193.737487792969,136.837417602539,-12.1920909881592,-195.019622802734,137.001434326172,2.29103803634644,\r\n-193.862487792969,137.246444702148,-1.98599100112915,-193.276443481445,136.8994140625,-16.2937927246094,-190.013122558594,127.642501831055,-41.5903701782227,-189.02001953125,132.288970947266,-30.7953128814697,-191.276245117188,132.433990478516,-20.292085647583,-190.084121704102,131.937927246094,-24.1043586730957,-177.166854858398,110.752853393555,-46.8650894165039,-237.074737548828,88.5260772705078,58.8403663635254,-239.598983764648,75.5694046020508,71.3712005615234,-242.83430480957,53.1541061401367,100.387840270996,-242.218246459961,60.3085098266602,96.6799774169922,-242.35725402832,66.9693603515625,86.5323791503906,-234.687515258789,97.2318267822266,50.4257431030273,-232.713302612305,106.111396789551,46.1147232055664,-231.512191772461,115.135284423828,37.4780769348145,-223.293380737305,119.643730163574,28.5489025115967,-220.583114624023,123.73112487793,25.3766918182373,-220.669128417969,128.035537719727,26.6833190917969,-217.773849487305,131.797912597656,24.9543495178223,-210.105102539063,135.81330871582,22.8762454986572,-192.640380859375,140.549774169922,-9.05357360839844,-196.614776611328,139.289657592773,13.6500406265259,-195.839691162109,138.782592773438,9.49694442749023,-192.478378295898,140.784790039063,5.73438596725464,-192.694381713867,137.427474975586,-19.9349498748779,-188.998016357422,131.482879638672,-40.7936935424805,-189.070037841797,131.92692565918,-35.126838684082,-190.022125244141,127.614501953125,-45.9909057617188,-180.588195800781,114.22119140625,-47.9430923461914,-236.695709228516,84.4049682617188,71.8833465576172,-237.86181640625,90.6603775024414,63.2663040161133,-238.403869628906,75.6956176757813,78.3207778930664,-235.839614868164,92.864501953125,53.4751434326172,-237.154739379883,99.019401550293,53.2897262573242,-233.683395385742,115.198287963867,40.9055137634277,-231.989227294922,119.401702880859,37.3732643127441,-215.382614135742,134.438171386719,26.174768447876,-199.001998901367,139.283645629883,17.9677639007568,-192.882400512695,140.663772583008,-13.9086589813232,-192.111328125,140.705795288086,-0.254907995462418,\r\n-192.772384643555,141.717880249023,-18.7259311676025,-188.960021972656,132.07194519043,-45.9986038208008,-190.325164794922,136.389373779297,-34.5380783081055,-193.00341796875,140.309753417969,-24.1176586151123,-191.172241210938,136.845413208008,-28.2055606842041,-189.740097045898,126.954444885254,-48.7136688232422,-186.493774414063,122.651016235352,-51.4677391052246,-177.69792175293,112.425018310547,-53.2799186706543,-236.050628662109,80.0956497192383,78.6699066162109,-237.503784179688,88.7757949829102,68.1201782226563,-238.162841796875,92.8416976928711,60.0542907714844,-241.509170532227,56.8108673095703,104.468238830566,-240.314056396484,63.0209770202637,101.904991149902,-240.154037475586,71.0885620117188,86.9093170166016,-234.357482910156,110.356811523438,46.4444541931152,-236.276657104492,106.740463256836,50.8736877441406,-224.252487182617,123.86213684082,30.3046741485596,-228.085845947266,123.714126586914,34.4423789978027,-221.944259643555,132.589004516602,33.7769165039063,-217.246795654297,135.719299316406,32.3108711242676,-211.438217163086,137.499465942383,28.9336395263672,-204.533554077148,139.321655273438,25.8997402191162,-191.10823059082,144.167129516602,-9.42257976531982,-192.343353271484,141.897903442383,16.3984107971191,-190.932220458984,141.962921142578,11.604040145874,-189.759094238281,143.658081054688,1.9750269651413,-189.215057373047,136.205352783203,-40.3234481811523,-187.932922363281,136.519378662109,-46.0250053405762,-189.070037841797,132.626007080078,-51.6567573547363,-180.761215209961,117.975555419922,-58.1997985839844,-234.94352722168,84.3254623413086,78.7807235717773,-236.851715087891,91.7631988525391,73.3252868652344,-238.357864379883,93.0125198364258,66.409309387207,-239.574981689453,97.1842193603516,59.9158744812012,-237.325759887695,93.1044235229492,56.8869781494141,-235.418563842773,80.0481414794922,82.6746063232422,-238.49186706543,65.9880676269531,105.643356323242,-239.074935913086,71.7082290649414,91.2284469604492,-236.794708251953,112.955070495605,50.9788970947266,-238.121841430664,101.890983581543,53.6110572814941,\r\n-234.57649230957,119.483711242676,41.2910499572754,-232.655303955078,123.694122314453,39.6671905517578,-224.480499267578,128.33757019043,32.8596229553223,-196.33073425293,141.312835693359,21.4041023254395,-191.832290649414,145.352233886719,-16.330696105957,-190.179138183594,144.202133178711,-3.25742602348328,-188.097930908203,143.87109375,7.52317094802856,-193.696472167969,144.533157348633,-29.3353710174561,-188.691986083984,137.124435424805,-43.3578453063965,-187.534881591797,136.514389038086,-49.3215293884277,-193.045425415039,141.044830322266,-30.8097152709961,-192.489379882813,141.075820922852,-38.9826164245605,-189.530090332031,128.175552368164,-52.1377029418945,-185.380676269531,123.142066955566,-57.857063293457,-176.176773071289,113.677139282227,-58.3278121948242,-238.012832641602,93.766487121582,69.9016571044922,-240.24104309082,98.5613555908203,64.4934234619141,-239.675003051758,100.86589050293,56.6842575073242,-233.610397338867,80.3610763549805,91.3873596191406,-236.436676025391,119.700729370117,45.6325759887695,-238.60888671875,106.299415588379,54.3935317993164,-229.544998168945,128.341567993164,39.1612396240234,-221.322189331055,136.393371582031,41.7311935424805,-224.597518920898,132.824020385742,38.3002586364746,-213.814468383789,138.692596435547,37.1012382507324,-207.626846313477,140.862808227539,36.8996200561523,-196.290740966797,142.357940673828,26.3395843505859,-192.448364257813,147.408447265625,-23.7495231628418,-187.641906738281,147.771484375,-5.93965816497803,-188.07893371582,143.625061035156,17.8016471862793,-185.852722167969,144.131134033203,12.9001684188843,-186.959823608398,147.194412231445,-1.69279205799103,-185.658706665039,146.332336425781,3.83094906806946,-190.686187744141,140.957809448242,-46.1178169250488,-189.3720703125,140.913803100586,-49.4137382507324,-194.535568237305,145.623260498047,-42.317943572998,-188.865005493164,127.634506225586,-56.3229179382324,-189.539077758789,131.561889648438,-55.2021064758301,-187.24885559082,136.661392211914,-52.5510444641113,-184.116546630859,122.786033630371,-62.9032592773438,\r\n-180.137145996094,118.606620788574,-62.6533355712891,-233.655395507813,88.415168762207,82.3713760375977,-233.477386474609,84.144645690918,83.854118347168,-239.100936889648,101.63695526123,72.7949371337891,-240.848098754883,102.281028747559,61.6789474487305,-236.479675292969,71.9459533691406,101.559951782227,-233.125350952148,80.1351470947266,95.5088653564453,-237.524780273438,111.103889465332,53.3125305175781,-238.969924926758,119.817741394043,54.9751892089844,-236.258666992188,124.199165344238,45.78369140625,-234.301467895508,128.290573120117,45.9313049316406,-189.216049194336,148.272521972656,-12.7917490005493,-191.313247680664,148.183532714844,-18.5165119171143,-183.719497680664,145.682281494141,9.1388692855835,-193.690475463867,148.445541381836,-31.092342376709,-194.309539794922,145.612274169922,-37.4599647521973,-194.511566162109,145.93229675293,-45.8219871520996,-188.135940551758,141.040817260742,-52.6149482727051,-187.738906860352,135.536270141602,-55.684455871582,-187.852920532227,127.697509765625,-62.922061920166,-175.026657104492,115.292297363281,-64.6778335571289,-234.760513305664,93.2709426879883,80.9033279418945,-240.470077514648,101.690963745117,67.9258575439453,-236.028625488281,97.4536514282227,78.4415893554688,-239.922012329102,106.311416625977,57.4791374206543,-234.524490356445,75.86962890625,102.594062805176,-231.747222900391,84.656494140625,90.6960906982422,-238.644882202148,115.028266906738,56.0174942016602,-237.895812988281,123.636116027832,50.5563583374023,-239.482971191406,110.858863830566,58.2641143798828,-228.585891723633,131.925918579102,41.8078994750977,-218.550918579102,138.973617553711,47.3210411071777,-226.246673583984,133.779113769531,41.945011138916,-198.710983276367,143.582061767578,36.9672241210938,-192.109329223633,144.163131713867,30.2944736480713,-190.157150268555,152.480941772461,-22.2224731445313,-183.621505737305,150.608749389648,-5.23023891448975,-185.299667358398,151.297836303711,-10.139289855957,-183.101440429688,149.032608032227,-0.241210997104645,-191.876312255859,152.331924438477,-27.2499656677246,\r\n-193.55046081543,145.462249755859,-49.429141998291,-192.431350708008,145.516250610352,-52.7144622802734,-195.364654541016,150.211730957031,-43.819393157959,-188.363967895508,132.695999145508,-61.6159362792969,-187.004821777344,140.525756835938,-56.0980949401855,-182.638397216797,122.541007995605,-70.0221557617188,-178.046951293945,118.372596740723,-68.5731201171875,-232.378280639648,88.9189147949219,86.4900817871094,-233.913436889648,93.284538269043,84.8855209350586,-239.631988525391,108.64965057373,73.8635406494141,-238.910919189453,105.191307067871,76.00634765625,-240.709091186523,106.349418640137,67.3384017944336,-240.89811706543,106.356422424316,62.5759353637695,-233.164352416992,79.9672317504883,99.6101608276367,-234.678497314453,75.0774536132813,107.842575073242,-232.369766235352,82.6812057495117,95.4324035644531,-238.534881591797,124.902236938477,54.0393981933594,-239.666000366211,115.456314086914,60.4548263549805,-236.369659423828,128.584609985352,51.5139503479004,-231.414184570313,131.98893737793,46.8389930725098,-227.669815063477,134.812210083008,47.8537902832031,-211.399215698242,141.976913452148,50.4710464477539,-189.204055786133,151.511840820313,-18.2922897338867,-185.651702880859,153.798080444336,-15.6280279159546,-193.714492797852,152.772964477539,-34.4143676757813,-195.797698974609,149.982696533203,-49.4564437866211,-190.550170898438,145.17822265625,-56.1791000366211,-186.258758544922,137.491470336914,-61.4573211669922,-188.583984375,131.440872192383,-64.9476623535156,-186.403778076172,127.511497497559,-73.8439254760742,-172.704437255859,116.070373535156,-71.544807434082,-236.567687988281,100.300827026367,79.7852249145508,-233.797409057617,78.9407348632813,105.68635559082,-231.614196777344,85.2272567749023,95.3559494018555,-231.721221923828,88.2805480957031,89.5790863037109,-239.529983520508,123.761131286621,59.0663909912109,-239.921005249023,119.229682922363,61.5830383300781,-234.508499145508,131.437881469727,53.0530014038086,-225.6826171875,136.660400390625,53.4675445556641,-217.629837036133,139.765701293945,50.3597412109375,\r\n-186.519775390625,156.333312988281,-21.0210571289063,-189.307052612305,156.06428527832,-25.0576515197754,-180.564193725586,153.553039550781,-8.52104091644287,-181.66130065918,156.911376953125,-16.1130752563477,-191.691299438477,156.791366577148,-32.2103538513184,-195.580673217773,150.02668762207,-52.7054595947266,-195.118637084961,150.083709716797,-55.9050750732422,-195.687683105469,154.943176269531,-48.8791885375977,-188.233947753906,132.128952026367,-66.3816070556641,-185.994735717773,141.008819580078,-59.6554412841797,-184.072555541992,124.52320098877,-75.9228363037109,-179.557113647461,120.946846008301,-75.3433837890625,-233.589401245117,93.1975326538086,88.8411102294922,-236.314666748047,99.2340240478516,84.4588851928711,-239.600982666016,111.043876647949,80.8861312866211,-240.104019165039,112.234001159668,70.0416717529297,-238.411880493164,105.559349060059,79.2965774536133,-240.400054931641,110.415817260742,63.5734329223633,-232.528289794922,84.6993026733398,101.319931030273,-238.038833618164,127.814529418945,59.5899429321289,-240.042526245117,116.643432617188,64.0387344360352,-231.226150512695,133.914123535156,54.4622421264648,-215.190582275391,141.052825927734,55.5557479858398,-193.32844543457,156.916381835938,-37.5752792358398,-196.296737670898,154.520141601563,-54.7431602478027,-194.106521606445,149.971694946289,-59.0840873718262,-185.231658935547,140.983810424805,-62.8771553039551,-187.32585144043,145.319229125977,-62.1404838562012,-186.782806396484,131.823928833008,-79.1031494140625,-186.603790283203,128.210556030273,-78.0697479248047,-174.568618774414,118.693626403809,-78.2273635864258,-240.072021484375,115.591331481934,77.6705169677734,-240.164047241211,114.057174682617,66.4944229125977,-233.643402099609,84.0695419311523,108.165603637695,-231.898239135742,88.4672698974609,96.5746612548828,-234.151443481445,95.4498519897461,93.6396789550781,-239.602981567383,123.85213470459,62.9085693359375,-240.387054443359,119.963760375977,69.4022979736328,-233.992431640625,132.539978027344,63.9001655578613,-222.86735534668,138.326553344727,59.6638526916504,\r\n-228.233871459961,135.890319824219,59.6050453186035,-187.10383605957,160.363723754883,-28.1355514526367,-190.690185546875,161.321807861328,-35.9846229553223,-196.51676940918,154.54914855957,-59.1759948730469,-192.318359375,149.812683105469,-62.2570953369141,-195.816696166992,159.389617919922,-54.8216667175293,-184.768615722656,141.006820678711,-66.1641845703125,-185.420669555664,136.548385620117,-76.5491943359375,-185.640701293945,127.034454345703,-81.0040283203125,-181.986328125,122.954048156738,-79.2008590698242,-177.828918457031,120.526809692383,-80.3164672851563,-237.327774047852,100.718872070313,88.2432479858398,-238.916915893555,107.056488037109,82.8261184692383,-239.575973510742,115.011268615723,82.6231994628906,-239.926010131836,119.177680969238,75.8868408203125,-233.609405517578,90.7264862060547,106.692459106445,-232.900329589844,92.8931045532227,95.5963745117188,-237.10173034668,129.102645874023,64.8163604736328,-216.480728149414,140.761795043945,62.9462738037109,-188.995025634766,161.300811767578,-32.7001991271973,-184.228561401367,164.22509765625,-31.1271457672119,-194.706588745117,157.824478149414,-45.7948837280273,-192.261337280273,160.628753662109,-39.111629486084,-196.105728149414,154.401138305664,-62.3553085327148,-196.861801147461,158.933578491211,-62.0131721496582,-184.287567138672,141.185836791992,-70.37109375,-185.704696655273,145.35124206543,-65.3570938110352,-187.977935791016,149.172622680664,-67.5663223266602,-184.459579467773,136.493377685547,-86.7991027832031,-173.849548339844,119.315696716309,-84.7379989624023,-239.163940429688,110.483825683594,85.9254302978516,-239.420959472656,119.631729125977,79.4028854370117,-233.371368408203,94.0127105712891,101.177925109863,-234.726501464844,97.7854843139648,95.2936401367188,-237.622787475586,102.115013122559,90.2886505126953,-239.488967895508,124.244178771973,68.4077072143555,-236.390670776367,128.759613037109,70.8399429321289,-228.085845947266,135.842300415039,67.1106796264648,-230.688110351563,134.581176757813,64.3018035888672,-216.126678466797,140.759796142578,67.567626953125,\r\n-193.327453613281,161.23779296875,-44.3136367797852,-186.277755737305,165.853256225586,-36.0984306335449,-189.415069580078,165.009170532227,-39.8014945983887,-194.94059753418,154.366119384766,-65.5533218383789,-194.478561401367,162.952972412109,-51.4613380432129,-195.941711425781,163.635040283203,-60.82275390625,-184.589599609375,145.363235473633,-68.5429077148438,-183.557495117188,140.815795898438,-77.6686096191406,-186.324768066406,131.370880126953,-84.3166580200195,-183.249450683594,123.964149475098,-84.2662506103516,-179.261077880859,121.181869506836,-86.7082977294922,-176.640823364258,120.048767089844,-85.0726318359375,-238.839904785156,106.441429138184,86.9414291381836,-238.277862548828,114.805252075195,87.5402755737305,-238.095840454102,119.341697692871,84.2461624145508,-238.554870605469,124.103164672852,74.9176406860352,-233.590408325195,97.1288223266602,103.489143371582,-233.955429077148,97.4456481933594,98.8010864257813,-235.348571777344,101.635955810547,97.1720275878906,-232.166244506836,132.751022338867,70.410400390625,-197.049819946289,158.916580200195,-65.58251953125,-197.084808349609,163.606033325195,-68.3178863525391,-183.834518432617,145.389251708984,-71.7290191650391,-193.135437011719,154.3701171875,-68.766731262207,-183.05744934082,145.318237304688,-76.6801147460938,-182.76741027832,140.978805541992,-86.0108261108398,-185.769714355469,131.862930297852,-87.6829833984375,-185.927734375,127.505493164063,-85.1253356933594,-174.13557434082,119.979759216309,-91.1815338134766,-237.80680847168,109.886764526367,91.0438232421875,-236.868728637695,124.160171508789,80.6319046020508,-233.170349121094,100.14281463623,108.037590026855,-237.6748046875,105.767364501953,92.0981292724609,-234.409484863281,128.575607299805,77.2954788208008,-222.785339355469,137.51448059082,72.5632171630859,-192.589370727539,166.486312866211,-50.0671005249023,-186.402770996094,170.106658935547,-44.2887382507324,-190.807205200195,165.798248291016,-44.4118499755859,-196.650772094727,158.903564453125,-68.7407302856445,-194.347549438477,166.30029296875,-56.7044525146484,\r\n-195.191635131836,171.110763549805,-68.6074142456055,-186.057739257813,149.778686523438,-71.8760375976563,-189.160034179688,153.49104309082,-73.3584823608398,-182.563400268555,144.894195556641,-82.4856719970703,-183.841522216797,136.087341308594,-91.4452514648438,-184.830627441406,130.822814941406,-91.0704193115234,-182.935424804688,124.010154724121,-88.1919403076172,-235.787612915039,114.054176330566,93.4457626342773,-234.545486450195,118.549621582031,92.4558563232422,-234.881530761719,122.234977722168,87.6024856567383,-233.365371704102,101.90699005127,104.603256225586,-234.126449584961,102.316024780273,101.122917175293,-233.931427001953,105.477340698242,101.501953125,-230.464096069336,132.306976318359,76.6580200195313,-225.691619873047,135.360260009766,76.6232147216797,-193.714492797852,169.95964050293,-60.9583702087402,-196.667770385742,167.69743347168,-70.9827575683594,-184.733612060547,149.743682861328,-75.0586547851563,-195.713684082031,158.821563720703,-71.9618453979492,-183.293472290039,149.754684448242,-81.4552764892578,-181.527282714844,140.643783569336,-95.6468734741211,-181.526290893555,145.293243408203,-88.8291015625,-184.757614135742,127.405479431152,-89.4521636962891,-181.599304199219,124.068153381348,-92.2012329101563,-177.323883056641,121.231880187988,-93.653076171875,-234.683502197266,109.670753479004,98.0203094482422,-231.917236328125,127.963539123535,84.8182144165039,-231.899230957031,105.650352478027,108.685653686523,-232.094253540039,108.945671081543,104.59024810791,-191.035217285156,170.23567199707,-53.358024597168,-189.34504699707,169.482604980469,-47.9255905151367,-197.460861206055,163.322006225586,-72.0003509521484,-192.275344848633,170.140670776367,-56.6286468505859,-193.894515991211,173.119964599609,-66.6178283691406,-197.607879638672,172.341888427734,-80.4917831420898,-183.831512451172,149.751678466797,-78.2723617553711,-194.204544067383,158.764556884766,-75.1771697998047,-182.437377929688,149.682662963867,-85.7440948486328,-182.326370239258,135.984313964844,-100.450836181641,-184.629592895508,131.488876342773,-94.5576553344727,\r\n-174.627624511719,122.156967163086,-104.143203735352,-232.326263427734,114.419212341309,99.7853851318359,-230.753112792969,118.755638122559,99.01220703125,-230.054046630859,123.152069091797,95.3231430053711,-232.68830871582,97.5527572631836,116.498916625977,-227.286773681641,131.574890136719,85.5280914306641,-186.953826904297,173.963043212891,-52.5792503356934,-191.266250610352,173.81103515625,-60.0523834228516,-195.002624511719,175.845230102539,-75.8100280761719,-197.529861450195,167.814453125,-75.2821731567383,-186.928817749023,154.266128540039,-78.3667755126953,-197.387847900391,163.230987548828,-75.1764678955078,-192.214340209961,158.788558959961,-78.3914794921875,-185.503692626953,154.237121582031,-81.564094543457,-184.460586547852,154.262115478516,-84.7685012817383,-180.55419921875,145.264236450195,-97.0299987792969,-179.431091308594,140.78678894043,-109.767753601074,-183.845520019531,127.242469787598,-94.6958770751953,-180.924224853516,149.944686889648,-95.3825454711914,-181.247253417969,124.353187561035,-98.5512542724609,-177.022842407227,122.196975708008,-100.394828796387,-226.431701660156,127.762519836426,94.5455627441406,-232.313262939453,98.8107833862305,117.003219604492,-231.236663818359,107.400024414063,109.104690551758,-188.832000732422,175.140167236328,-57.5234336853027,-191.124237060547,177.282379150391,-66.8754501342773,-192.434356689453,179.521591186523,-74.6303100585938,-198.034912109375,176.305267333984,-86.4923706054688,-197.994903564453,167.848449707031,-78.4499893188477,-196.712783813477,163.268005371094,-78.3802795410156,-183.031448364258,154.331115722656,-89.5723724365234,-178.315979003906,145.319229125977,-111.750946044922,-183.141464233398,131.70491027832,-102.955085754395,-180.256164550781,136.743392944336,-113.248100280762,-183.895523071289,127.962539672852,-98.8124771118164,-178.622009277344,123.867141723633,-105.133293151855,-227.447784423828,118.767631530762,105.500343322754,-229.218978881836,114.536224365234,106.448432922363,-225.676620483398,123.39208984375,102.763076782227,-231.918731689453,102.859580993652,113.096588134766,\r\n-230.574096679688,109.149696350098,109.523735046387,-195.823699951172,179.392578125,-83.607292175293,-198.577972412109,172.361892700195,-84.880012512207,-198.15592956543,167.871444702148,-81.6396026611328,-188.667984008789,158.359512329102,-83.1905517578125,-195.456665039063,163.32600402832,-81.593994140625,-185.681701660156,158.800567626953,-90.1313323974609,-182.266372680664,131.661911010742,-107.685546875,-177.951934814453,144.298141479492,-116.842445373535,-181.841323852539,154.430130004883,-95.6701736450195,-174.249588012695,123.588104248047,-113.596130371094,-231.938232421875,100.068801879883,117.507514953613,-193.728500366211,183.816009521484,-85.8018035888672,-196.967803955078,183.164947509766,-93.2555389404297,-198.914001464844,172.338897705078,-88.1460342407227,-183.968536376953,158.751556396484,-94.4591522216797,-178.13395690918,149.492645263672,-112.217987060547,-181.667297363281,127.070449829102,-105.656349182129,-180.822235107422,131.714904785156,-115.410301208496,-179.555099487305,136.151336669922,-119.03865814209,-180.009155273438,155.314208984375,-106.271408081055,-177.819915771484,124.63321685791,-113.77214050293,-198.906997680664,176.746322631836,-91.2907485961914,-197.828887939453,167.830444335938,-84.8479156494141,-193.749496459961,163.287002563477,-84.8077011108398,-190.745193481445,162.790939331055,-88.9934158325195,-187.858917236328,163.247985839844,-94.446647644043,-181.19026184082,127.671508789063,-110.318809509277,-178.148971557617,135.849304199219,-127.938529968262,-176.888824462891,149.892700195313,-120.587814331055,-183.003448486328,158.752563476563,-97.6693649291992,-181.905334472656,158.719543457031,-101.750968933105,-179.957138061523,127.065452575684,-114.122184753418,-176.904846191406,125.104263305664,-117.895545959473,-193.573486328125,187.438369750977,-91.4263534545898,-198.791976928711,181.22575378418,-96.6694717407227,-198.783981323242,172.278869628906,-91.2955474853516,-196.911804199219,167.750427246094,-88.0246276855469,-185.996734619141,163.251983642578,-97.652961730957,-177.564910888672,155.421234130859,-118.577613830566,\r\n-179.255081176758,131.829925537109,-123.020050048828,-176.111755371094,147.332427978516,-125.908332824707,-180.110153198242,161.711853027344,-113.241088867188,-171.944351196289,124.892234802246,-119.299682617188,-199.293029785156,185.384170532227,-103.534141540527,-199.32405090332,176.836334228516,-94.5696640014648,-193.622482299805,167.743438720703,-94.4460525512695,-189.250045776367,167.078369140625,-99.225715637207,-178.700012207031,160.041687011719,-117.353492736816,-179.139053344727,127.582504272461,-120.247779846191,-178.035949707031,131.113845825195,-127.564491271973,-177.197860717773,139.943710327148,-129.073638916016,-174.894653320313,154.581146240234,-131.710891723633,-184.41357421875,163.253997802734,-100.867881774902,-181.858322143555,163.28401184082,-108.193603515625,-174.288589477539,125.623306274414,-122.372993469238,-198.05290222168,188.608474731445,-105.446327209473,-199.848083496094,181.396774291992,-100.966888427734,-199.543060302734,176.832336425781,-97.7252731323242,-195.525665283203,167.735427856445,-91.2287368774414,-198.173919677734,172.235870361328,-94.4344482421875,-177.385894775391,158.855560302734,-121.929946899414,-177.391891479492,127.405479431152,-124.179168701172,-176.417785644531,131.185852050781,-131.964935302734,-176.568801879883,135.871322631836,-134.473175048828,-175.875747680664,144.349151611328,-131.526885986328,-174.70964050293,149.767684936523,-134.220138549805,-183.14045715332,163.243988037109,-104.086196899414,-180.697219848633,167.627426147461,-117.678527832031,-182.045349121094,167.743438720703,-113.708137512207,-177.634902954102,125.872337341309,-120.657821655273,-168.671035766602,126.552398681641,-123.827125549316,-192.549377441406,191.629776000977,-98.6866683959961,-200.26513671875,184.75910949707,-107.296508789063,-200.316131591797,181.371780395508,-104.154205322266,-196.943801879883,172.223876953125,-97.645263671875,-186.535781860352,167.69743347168,-104.114196777344,-176.727813720703,165.816253662109,-129.702697753906,-175.855743408203,128.343566894531,-129.307662963867,\r\n-175.697723388672,140.443756103516,-136.852401733398,-174.816635131836,163.081970214844,-135.164245605469,-172.820434570313,153.545043945313,-141.51286315918,-178.752014160156,170.348693847656,-126.475387573242,-184.622589111328,167.665435791016,-107.326507568359,-183.165451049805,167.695434570313,-110.509819030762,-169.991165161133,126.93643951416,-127.369476318359,-195.671676635742,192.389862060547,-107.539535522461,-199.610061645508,188.409469604492,-109.934768676758,-199.307022094727,176.866333007813,-100.933883666992,-195.001617431641,172.249877929688,-100.872886657715,-190.828201293945,171.669815063477,-105.258308410645,-175.150665283203,132.356964111328,-135.936309814453,-173.066467285156,129.398681640625,-134.051132202148,-173.583511352539,126.976440429688,-128.038543701172,-175.046661376953,136.07633972168,-139.160629272461,-174.39860534668,159.259613037109,-135.031234741211,-172.832427978516,159.17658996582,-140.992813110352,-174.084564208984,144.50715637207,-142.187942504883,-183.142456054688,172.145874023438,-117.0224609375,-181.365280151367,172.296875,-121.097862243652,-184.857620239258,172.11686706543,-113.79615020752,-200.599166870117,185.720199584961,-112.840049743652,-199.945098876953,180.710708618164,-106.913475036621,-198.206924438477,176.843338012695,-104.156204223633,-176.387786865234,173.821029663086,-136.961410522461,-174.617614746094,140.108734130859,-141.973907470703,-171.536315917969,170.520706176758,-149.826675415039,-170.974258422852,159.873672485352,-149.449630737305,-172.749435424805,144.932205200195,-146.852386474609,-180.877227783203,176.720321655273,-127.25146484375,-187.016830444336,172.056854248047,-110.584831237793,-169.266098022461,128.863632202148,-133.095031738281,-197.976913452148,192.528854370117,-112.015975952148,-200.633163452148,189.859603881836,-116.663421630859,-199.373046875,181.726806640625,-110.301803588867,-172.895446777344,176.046264648438,-148.270523071289,-178.092956542969,177.252365112305,-135.059234619141,-172.205368041992,132.680999755859,-139.99772644043,-172.796432495117,136.67839050293,-145.621276855469,\r\n-171.054260253906,153.827072143555,-150.204711914063,-173.51350402832,140.008712768555,-145.618270874023,-184.900619506836,176.533309936523,-120.345794677734,-187.771896362305,175.877227783203,-115.920356750488,-182.808410644531,176.644302368164,-123.442085266113,-195.683685302734,196.777282714844,-116.10237121582,-199.549057006836,193.988006591797,-119.082664489746,-199.834091186523,185.700210571289,-117.149475097656,-197.356842041016,181.169738769531,-113.91015625,-196.259735107422,176.767318725586,-107.420524597168,-193.593475341797,176.63330078125,-110.680847167969,-173.897537231445,181.800827026367,-149.582656860352,-178.74201965332,181.061752319336,-137.269439697266,-168.906051635742,132.393966674805,-140.835800170898,-171.471313476563,178.644500732422,-153.384033203125,-169.879150390625,167.168380737305,-154.265106201172,-169.638122558594,158.300521850586,-154.773162841797,-171.10026550293,139.856704711914,-150.119720458984,-170.957244873047,149.485641479492,-152.817977905273,-184.615600585938,181.108749389648,-126.682411193848,-180.517196655273,181.140747070313,-133.117034912109,-200.800186157227,190.23664855957,-120.313781738281,-171.148284912109,135.069229125977,-145.068206787109,-169.456115722656,182.856918334961,-159.885665893555,-169.192077636719,161.802856445313,-156.591339111328,-168.503021240234,174.374084472656,-159.68864440918,-171.523315429688,145.165222167969,-152.064895629883,-191.061233520508,181.013732910156,-120.339790344238,-187.411865234375,181.696807861328,-124.713218688965,-182.292358398438,181.149749755859,-129.849716186523,-197.724868774414,197.320327758789,-120.454795837402,-194.533569335938,181.064743041992,-117.103469848633,-197.940902709961,185.747207641602,-120.316780090332,-200.710159301758,193.747985839844,-123.089057922363,-176.03076171875,185.859222412109,-148.11051940918,-171.107269287109,188.139434814453,-159.191604614258,-181.639297485352,185.526168823242,-136.47737121582,-167.724945068359,137.194442749023,-150.432739257813,-167.526916503906,168.16748046875,-162.159881591797,\r\n-168.812057495117,154.078094482422,-160.403717041016,-169.531112670898,149.129623413086,-158.130493164063,-170.341186523438,144.940200805664,-155.404220581055,-187.407867431641,185.548187255859,-129.924728393555,-184.169555664063,185.522171020508,-133.182052612305,-194.761581420898,201.211715698242,-122.827033996582,-199.087020874023,197.358337402344,-123.896133422852,-200.070098876953,190.274642944336,-123.539100646973,-179.642105102539,185.774200439453,-140.249740600586,-174.594619750977,192.22282409668,-155.77326965332,-167.269897460938,183.608993530273,-164.992156982422,-167.854949951172,192.003814697266,-167.342391967773,-165.913757324219,162.438919067383,-168.190490722656,-164.568618774414,177.876419067383,-170.061660766602,-167.828948974609,157.835479736328,-162.860946655273,-168.216995239258,140.816787719727,-155.365219116211,-194.895599365234,185.632186889648,-123.509094238281,-194.915603637695,190.210647583008,-129.989730834961,-200.596160888672,194.523056030273,-126.380378723145,-178.773025512695,190.794692993164,-147.227416992188,-170.727233886719,195.192123413086,-164.341094970703,-186.911819458008,189.991622924805,-136.417373657227,-183.375473022461,190.023620605469,-139.68669128418,-163.619537353516,162.844955444336,-174.055053710938,-162.46142578125,171.836853027344,-176.074249267578,-167.885955810547,149.450653076172,-161.85285949707,-167.269897460938,153.621063232422,-164.735137939453,-168.185989379883,144.622177124023,-158.853561401367,-198.059906005859,190.265640258789,-126.765419006348,-191.049224853516,190.093627929688,-133.177047729492,-197.473861694336,200.942687988281,-126.531394958496,-199.748077392578,198.824478149414,-128.957641601563,-180.85823059082,190.143630981445,-142.948013305664,-179.443084716797,194.890106201172,-150.132720947266,-172.638412475586,199.437545776367,-164.307098388672,-164.686645507813,180.596694946289,-169.924652099609,-164.338607788086,188.346466064453,-172.366882324219,-169.722122192383,201.277725219727,-169.514602661133,-163.170486450195,166.66032409668,-174.592102050781,\r\n-164.315612792969,158.534530639648,-171.840835571289,-166.013778686523,158.238510131836,-168.504516601563,-160.999282836914,177.005355834961,-178.697509765625,-166.152801513672,154.182113647461,-167.537414550781,-197.872894287109,194.718078613281,-133.274047851563,-199.824096679688,194.751083374023,-129.952728271484,-195.748687744141,207.001281738281,-133.698089599609,-182.4423828125,194.666076660156,-146.100311279297,-177.931945800781,199.530548095703,-156.751358032227,-194.523574829102,194.657073974609,-136.524368286133,-190.075134277344,194.572067260742,-139.674682617188,-185.804718017578,194.576080322266,-142.822998046875,-164.679641723633,201.359725952148,-176.896331787109,-166.073776245117,206.895278930664,-177.585403442383,-161.275299072266,162.649948120117,-177.144348144531,-161.573333740234,157.994491577148,-174.784118652344,-160.084197998047,171.94384765625,-180.808715820313,-161.222305297852,167.732437133789,-178.456497192383,-164.924667358398,149.34162902832,-165.716232299805,-199.132019042969,201.927795410156,-133.147048950195,-200.250137329102,198.216430664063,-132.697006225586,-184.528594970703,199.119522094727,-149.268615722656,-180.992248535156,199.122512817383,-152.553939819336,-173.011459350586,203.611953735352,-166.795349121094,-176.648818969727,203.704956054688,-162.215881347656,-159.800170898438,184.711090087891,-181.270767211914,-160.810256958008,191.559768676758,-180.085647583008,-161.874374389648,198.329437255859,-180.140640258789,-168.108978271484,211.612731933594,-177.769409179688,-161.217300415039,152.940979003906,-170.987762451172,-164.568618774414,153.314025878906,-169.334594726563,-158.279022216797,176.307266235352,-183.235946655273,-199.287033081055,198.8544921875,-136.025329589844,-197.827896118164,205.318130493164,-135.014236450195,-188.832000732422,199.123519897461,-146.023300170898,-182.718414306641,203.52294921875,-155.744262695313,-171.037261962891,210.740646362305,-174.036041259766,-179.401092529297,203.647964477539,-158.978561401367,-196.929794311523,199.088516235352,-139.70768737793,\r\n-193.214431762695,199.164520263672,-142.947006225586,-162.356414794922,207.947372436523,-182.977935791016,-165.031677246094,213.103881835938,-181.979827880859,-158.42903137207,162.724945068359,-179.182556152344,-158.638046264648,158.354522705078,-176.536285400391,-158.891082763672,154.751159667969,-173.561996459961,-158.421035766602,167.355407714844,-181.352767944336,-157.856964111328,171.508804321289,-183.162948608398,-161.986389160156,149.293640136719,-167.511413574219,-199.2490234375,202.829879760742,-137.889511108398,-198.168914794922,206.600250244141,-138.733581542969,-191.860305786133,203.619964599609,-149.342636108398,-187.012817382813,203.507949829102,-152.525939941406,-177.28288269043,211.100692749023,-168.212478637695,-173.722518920898,210.019577026367,-170.819732666016,-181.768325805664,212.31379699707,-165.441207885742,-157.452941894531,184.370071411133,-185.054138183594,-158.162994384766,192.866912841797,-184.627090454102,-158.660049438477,201.266723632813,-185.414169311523,-169.466110229492,217.370300292969,-179.465576171875,-154.959701538086,172.476913452148,-184.983108520508,-195.792694091797,203.568939208984,-146.207321166992,-184.988647460938,208.038391113281,-158.997589111328,-189.743103027344,207.993392944336,-155.845260620117,-176.977844238281,217.301300048828,-173.003952026367,-198.376937866211,203.869979858398,-142.437957763672,-155.713760375977,178.817520141602,-186.256256103516,-160.316207885742,211.340713500977,-186.42626953125,-165.454711914063,218.46240234375,-183.621994018555,-154.614654541016,158.936584472656,-177.241363525391,-154.606643676758,163.477020263672,-180.691711425781,-156.289810180664,155.376220703125,-174.391082763672,-155.931793212891,168.100479125977,-183.019927978516,-197.406845092773,208.24040222168,-149.277618408203,-194.180541992188,207.956390380859,-152.640960693359,-186.911819458008,217.871353149414,-165.347198486328,-186.84880065918,212.774841308594,-162.199890136719,-155.038696289063,186.542282104492,-187.607376098633,-155.76676940918,193.804992675781,-187.56037902832,\r\n-155.615753173828,202.785873413086,-189.060531616211,-173.685531616211,222.048751831055,-177.61540222168,-169.382095336914,222.344787597656,-181.125747680664,-152.4814453125,176.120254516602,-187.196350097656,-152.632461547852,167.395401000977,-183.491973876953,-198.472946166992,207.920364379883,-142.428955078125,-198.613967895508,207.545333862305,-145.759292602539,-191.513259887695,212.667846679688,-159.069580078125,-195.310653686523,212.891860961914,-155.783264160156,-151.646362304688,182.883911132813,-189.14453125,-161.939361572266,219.255477905273,-186.447265625,-157.782974243164,212.455810546875,-188.852493286133,-177.958938598633,222.102752685547,-173.780029296875,-167.177886962891,225.106063842773,-182.599884033203,-197.24983215332,212.106781005859,-152.05290222168,-191.183242797852,217.395294189453,-161.425811767578,-152.39143371582,191.529769897461,-190.068618774414,-152.091400146484,203.333923339844,-191.73779296875,-172.929443359375,225.991134643555,-177.7744140625,-175.97575378418,226.019134521484,-174.515090942383,-169.988159179688,226.634201049805,-179.692596435547,-150.453247070313,178.174957275391,-188.007415771484,-149.260131835938,173.466003417969,-186.870315551758,-194.085525512695,216.722244262695,-158.655532836914,-196.036712646484,215.51611328125,-153.686050415039,-189.320053100586,220.954650878906,-162.243881225586,-184.880630493164,221.147674560547,-168.1884765625,-147.263931274414,190.335647583008,-192.211837768555,-152.170425415039,209.384521484375,-191.850799560547,-179.415084838867,226.113159179688,-170.449691772461,-148.139022827148,181.703811645508,-189.835601806641,-194.735580444336,217.419296264648,-156.307312011719,-191.391265869141,220.461608886719,-158.422515869141,-186.638793945313,222.532806396484,-164.752151489258,-183.553482055664,224.628021240234,-167.887451171875,-146.315841674805,186.286254882813,-191.354736328125,-149.161117553711,198.198425292969,-192.803894042969,-153.853591918945,213.206893920898,-190.734680175781,12.0590763092041,59.5257339477539,18.1552810668945,12.9355621337891,58.5825424194336,12.6671447753906,\r\n-1.26821994781494,55.8588752746582,17.8568534851074,31.2622585296631,63.2362937927246,16.4613170623779,-3.57958602905273,53.3826293945313,11.1423959732056,5.28382205963135,58.6234436035156,23.3899955749512,24.9440383911133,59.5406341552734,5.97058916091919,25.6157054901123,63.2537994384766,23.1050682067871,9.44202995300293,55.4177322387695,4.99817323684692,-13.8950672149658,51.775074005127,14.5686311721802,-4.22314882278442,56.5394401550293,26.9643478393555,13.1644849777222,60.9323692321777,25.9259433746338,38.6078796386719,62.6976432800293,8.6771240234375,20.9262447357178,57.0169868469238,0.469538003206253,35.8010025024414,64.6675415039063,20.7595386505127,-1.7110630273819,52.0024948120117,5.4187650680542,-8.79110717773438,50.2451248168945,5.2930121421814,-8.05964469909668,54.9381828308105,21.1723785400391,5.14504909515381,59.0861892700195,27.4949989318848,44.0364074707031,65.1361846923828,16.1906909942627,36.5923805236816,59.9868774414063,0.528424024581909,31.3944721221924,57.1814041137695,-5.4248480796814,18.6024188995361,63.5673294067383,44.8858032226563,30.7354068756104,64.9814682006836,33.7859153747559,10.0212869644165,53.0217971801758,-1.82341504096985,-19.1797866821289,47.8537864685059,4.42337703704834,-19.7007350921631,50.697265625,16.200590133667,-12.3513164520264,54.4038314819336,26.0098514556885,0.380647987127304,58.6689491271973,38.4999771118164,13.0254707336426,62.2188949584961,43.8020935058594,54.3067169189453,64.8953552246094,10.3555183410645,47.2732238769531,62.2592010498047,4.43532800674438,18.8166389465332,54.6511573791504,-4.79528617858887,26.3413753509521,64.7876510620117,43.2036361694336,46.2585258483887,67.5856246948242,36.7452049255371,45.9014930725098,66.3944091796875,24.2193756103516,1.65385699272156,49.9202919006348,-2.51235198974609,-5.91743516921997,48.2824287414551,-2.29866099357605,-14.3743143081665,46.9916038513184,-1.78165102005005,-21.1636791229248,51.6466636657715,24.102165222168,-5.16183090209961,57.321418762207,41.5461730957031,60.6472396850586,67.2275848388672,19.6274261474609,\r\n36.8341026306152,57.3702239990234,-6.77613019943237,17.7511348724365,52.7168655395508,-8.78939723968506,11.8757581710815,62.0933837890625,48.2320289611816,22.8999404907227,64.3040008544922,49.8917922973633,37.5569763183594,66.5114135742188,42.6009788513184,55.1862030029297,67.2614898681641,22.3154907226563,6.54017496109009,50.1725158691406,-5.2857141494751,-1.35243797302246,47.491455078125,-6.37949085235596,-26.6059131622314,48.9657974243164,15.5032224655151,-23.4014987945557,46.0389137268066,0.924284994602203,-27.8108310699463,49.8829879760742,22.0963687896729,-25.4986038208008,51.7060661315918,36.662899017334,-17.4132118225098,54.2527160644531,41.6092834472656,60.9941711425781,65.0979766845703,10.0668897628784,53.7657623291016,63.3265075683594,5.57371997833252,30.4304752349854,54.6864585876465,-11.4540185928345,38.313549041748,55.7629623413086,-11.0200757980347,14.0315685272217,62.5538291931152,53.2173194885254,36.2222442626953,66.1089782714844,55.7307662963867,41.0388145446777,67.0838775634766,48.8887939453125,53.1248016357422,68.1160736083984,34.790714263916,2.69507908821106,46.0199089050293,-10.6451396942139,-6.5407657623291,45.7264823913574,-8.62132167816162,-13.2982091903687,45.0118103027344,-7.77676820755005,-31.0157432556152,47.4644508361816,11.9142723083496,-32.3140716552734,45.3817481994629,4.56890201568604,-22.0343647003174,42.9768104553223,-7.87985897064209,-3.88709592819214,57.7977638244629,46.3959503173828,68.7540283203125,66.44921875,15.9293651580811,62.2267913818359,68.0769653320313,26.9314422607422,49.6973648071289,60.5370330810547,-0.216352999210358,22.6971187591553,51.6287574768066,-13.8600540161133,18.2610836029053,63.0958824157715,58.4194297790527,45.1463203430176,67.3628997802734,53.6596603393555,63.3077964782715,69.1069717407227,41.6788902282715,6.92233276367188,47.8337898254395,-9.68126487731934,-1.06903994083405,44.8576927185059,-11.6664400100708,-28.2687759399414,42.4060554504395,-6.65928888320923,-30.9300365447998,50.1143112182617,29.6132068634033,-27.24387550354,51.3678321838379,44.0581207275391,\r\n-10.9892816543579,55.9336814880371,49.2387275695801,70.6392135620117,68.0250701904297,26.5475044250488,71.9550476074219,64.7631454467773,9.66007041931152,64.1951904296875,63.5104217529297,5.42470502853394,65.6907348632813,61.4793243408203,0.681451976299286,30.9032211303711,52.9347877502441,-15.5148162841797,39.8554992675781,54.1598052978516,-14.6053266525269,16.9169521331787,50.5079498291016,-12.5449256896973,1.07898998260498,58.7471580505371,54.9504852294922,14.2661924362183,62.0792846679688,60.3143119812012,36.2268447875977,65.7983474731445,61.4176216125488,63.0844764709473,68.6878280639648,33.0494422912598,7.26039600372314,44.836296081543,-14.3217000961304,-0.405324012041092,40.950511932373,-17.6620254516602,-15.3721122741699,40.5541763305664,-16.5908222198486,-34.876823425293,48.9828987121582,23.4783039093018,-35.688304901123,47.3588371276855,13.5651330947876,-32.9558372497559,41.7974967956543,-7.1273250579834,-26.8858394622803,39.8107032775879,-13.3396034240723,-32.4297828674316,50.2810287475586,40.1777420043945,74.5268936157227,67.4345092773438,23.850040435791,76.4442901611328,65.4132080078125,13.950270652771,52.1307029724121,58.9917793273926,-3.41741108894348,48.379337310791,55.9156761169434,-9.70419692993164,24.0669536590576,49.5593566894531,-18.2591857910156,18.0950660705566,48.2856292724609,-16.7238349914551,23.3228797912598,63.199390411377,66.8284530639648,34.0027236938477,64.941764831543,67.5923233032227,56.5363349914551,68.5722198486328,53.2920265197754,70.8034286499023,69.0290679931641,39.805004119873,3.12905097007751,42.1838340759277,-16.2137851715088,-9.1851053237915,39.5623741149902,-19.6697254180908,-38.4413757324219,48.7449760437012,22.4904079437256,-39.3462600708008,47.2960357666016,12.8274602890015,-36.5531883239746,45.1106224060059,5.08538198471069,-33.5819969177246,39.4307632446289,-13.5007190704346,-36.3677673339844,49.6245651245117,32.9737358093262,-23.3553943634033,52.0518989562988,49.3963432312012,-32.8661231994629,50.0362014770508,46.0369148254395,-6.90511178970337,56.4449310302734,56.1869087219238,\r\n77.5306930541992,67.7690353393555,28.6192073822021,77.4217758178711,63.1260871887207,6.13253498077393,72.1743698120117,62.7579498291016,3.81568789482117,62.9196586608887,59.0454864501953,-3.79617810249329,31.2490577697754,50.6881675720215,-19.5951175689697,43.7426834106445,52.9732933044434,-16.055269241333,7.73905277252197,59.8448638916016,62.7897567749023,19.0429592132568,61.3940162658691,72.141975402832,48.3951377868652,67.2719955444336,60.4849319458008,40.8838005065918,65.1345825195313,71.1203765869141,61.0651817321777,68.7483367919922,55.5503463745117,66.7952423095703,69.1920852661133,46.0878219604492,3.16780495643616,35.8423118591309,-23.4889984130859,-8.42727088928223,35.2182540893555,-25.3740825653076,-25.7193241119385,36.4509696960449,-20.2829837799072,-41.0363273620605,49.6862678527832,32.1012496948242,-42.9722175598145,49.5750617980957,25.2476768493652,-36.8939208984375,41.6420822143555,-7.3408260345459,-29.3669834136963,36.7069969177246,-19.1717758178711,-36.9414253234863,49.9199905395508,42.1421356201172,83.3318557739258,65.1627883911133,16.7561454772949,85.8032989501953,63.371711730957,11.0726890563965,70.6698226928711,56.443733215332,-9.69053554534912,53.4086265563965,56.4247283935547,-7.81295204162598,38.2327423095703,50.7658729553223,-20.1926746368408,51.327522277832,52.1843147277832,-14.7237396240234,28.7122077941895,47.7611808776855,-22.8064308166504,21.0010528564453,46.436149597168,-20.7349281311035,11.5854301452637,43.2511367797852,-18.4043006896973,27.6506023406982,63.002872467041,74.5745162963867,33.3631629943848,63.3669090270996,77.768424987793,55.4427261352539,67.8314437866211,61.3705177307129,78.5219955444336,68.5252151489258,47.6743774414063,7.73925304412842,37.5086784362793,-22.7473258972168,-12.730052947998,35.4593734741211,-25.2782745361328,-0.553122997283936,35.3642654418945,-24.0973567962646,-42.8718070983887,47.8658905029297,13.4479217529297,-45.7298889160156,49.7043724060059,19.9889621734619,-41.3765602111816,44.9589042663574,3.96375203132629,-44.8450012207031,39.9928169250488,-12.7746477127075,\r\n-39.3882675170898,37.6096839904785,-17.7477359771729,-39.3462600708008,49.9045906066895,37.6464920043945,-26.7442264556885,50.50634765625,52.9550933837891,-13.9562730789185,53.2935218811035,60.1499977111816,-34.3769721984863,49.5196533203125,50.3144378662109,-0.540897011756897,57.4806327819824,63.427417755127,87.2199401855469,64.6820373535156,17.9150581359863,78.6096038818359,68.2264862060547,37.9409217834473,79.7168045043945,58.2768096923828,-4.40045785903931,88.1934356689453,61.5291328430176,7.06102609634399,74.3800811767578,58.0872917175293,-6.18155193328857,66.7362365722656,53.3820304870605,-14.5635242462158,58.2888069152832,52.7180633544922,-13.7665452957153,34.913215637207,48.0908126831055,-23.8356323242188,41.7645874023438,49.3546371459961,-21.4128952026367,7.70919990539551,57.7636604309082,73.783935546875,18.3208904266357,59.8337631225586,78.7750244140625,46.3623390197754,65.1345825195313,73.9074478149414,44.1663246154785,63.8837585449219,79.0806579589844,50.3628311157227,66.3592987060547,68.0291748046875,70.0436630249023,68.3630981445313,60.9804763793945,70.7147216796875,68.7719345092773,54.9779891967773,4.44141006469727,33.9420280456543,-26.7199153900146,-4.63486909866333,28.5244941711426,-32.9581260681152,-30.393482208252,32.8054161071777,-25.3519802093506,-44.5473709106445,50.9782943725586,40.7319946289063,-47.207332611084,51.3762359619141,31.2856693267822,-40.8184013366699,42.9038047790527,-3.83416199684143,-44.654182434082,41.7220878601074,-8.70130920410156,-38.0761375427246,35.2897605895996,-21.7362270355225,-41.7927017211914,50.2467231750488,44.7087821960449,-40.383861541748,49.5522575378418,50.4613456726074,0.491317987442017,57.033390045166,67.6483306884766,84.2279510498047,66.8958511352539,31.0141448974609,87.7873001098633,59.085391998291,0.870766997337341,92.4194488525391,62.1627922058105,12.4761266708374,78.0124359130859,54.9252815246582,-11.5437269210815,73.8966369628906,52.857780456543,-15.8002452850342,51.093204498291,49.5294532775879,-18.3513946533203,29.8487205505371,45.2216339111328,-25.9287376403809,\r\n18.0851669311523,42.711784362793,-22.8207321166992,12.4757165908813,40.3339538574219,-21.7700290679932,31.0762405395508,61.6304397583008,83.0737457275391,39.8981056213379,62.9299697875977,81.7709121704102,62.18798828125,66.2155838012695,73.6598205566406,82.8719100952148,67.7104339599609,40.5355758666992,80.3470687866211,67.9489593505859,55.492244720459,10.7811517715454,34.9312210083008,-28.6025981903076,-46.9195022583008,49.6775665283203,16.4976215362549,-54.1249084472656,54.1373062133789,32.6990089416504,-44.0858268737793,44.4047508239746,-0.566881000995636,-47.8590927124023,37.5746803283691,-17.5253124237061,-49.129020690918,40.3597564697266,-13.3739070892334,-47.6537742614746,35.4077682495117,-20.9215469360352,-29.2092685699463,49.2431259155273,56.8436737060547,-21.9058513641357,50.5494537353516,59.4917335510254,-36.7194023132324,48.9558982849121,54.3962326049805,93.2774353027344,64.1795883178711,26.7231216430664,87.7791900634766,53.7239646911621,-9.54576206207275,97.7347717285156,58.0160827636719,5.35059785842896,66.4417037963867,50.1037101745605,-19.436502456665,58.0049781799316,48.4082412719727,-19.8977451324463,37.9631156921387,45.1245193481445,-26.4558887481689,48.5069465637207,46.7484817504883,-22.0478572845459,34.3230590820313,45.3148384094238,-26.6432075500488,23.7443218231201,40.7919960021973,-27.9084320068359,16.9802589416504,38.7338943481445,-26.6397075653076,-0.359950989484787,55.6314506530762,71.7841415405273,9.22128772735596,56.460132598877,80.4049835205078,36.1438331604004,61.6513442993164,85.2724609375,28.4299812316895,59.774959564209,86.9289245605469,56.364917755127,64.0912780761719,81.5964965820313,52.197811126709,62.347110748291,86.2403564453125,65.9165573120117,65.8213500976563,76.2327728271484,87.1662368774414,66.843147277832,41.9826164245605,84.3047561645508,67.4367065429688,49.3687400817871,-53.6288604736328,54.028694152832,41.9045066833496,-55.2546195983887,53.7605667114258,20.6487274169922,-46.9983100891113,43.6880798339844,-4.83846092224121,-49.3277397155762,43.8335952758789,-6.49446296691895,\r\n-21.3416976928711,49.492748260498,64.1047821044922,94.4137496948242,62.8560600280762,18.8920555114746,99.9592895507813,55.476734161377,1.57535803318024,102.310516357422,58.0363883972168,10.0956926345825,84.4174652099609,51.4362373352051,-14.8577518463135,68.9519577026367,49.0389060974121,-21.0427589416504,45.9971046447754,43.7095832824707,-25.5488014221191,52.55224609375,45.3176422119141,-23.2745780944824,28.9727344512939,39.4030609130859,-30.6738014221191,-0.858111023902893,54.0713996887207,76.2794799804688,17.9011497497559,58.3892211914063,82.9988403320313,33.9535217285156,60.0202827453613,88.8625106811523,47.9096908569336,61.0305824279785,88.971321105957,63.1990852355957,64.4863204956055,81.1151504516602,75.6266021728516,67.0527725219727,67.1152801513672,80.9723281860352,67.2951889038086,61.6611480712891,87.3172454833984,66.5129165649414,55.5018424987793,17.3337936401367,36.3828659057617,-30.1237487792969,10.7141447067261,31.645601272583,-34.3031578063965,-51.3034324645996,51.4204406738281,16.5685272216797,-48.056713104248,46.9029960632324,3.59184598922729,-59.3432197570801,55.8377685546875,30.9034328460693,-58.3697242736816,55.6416511535645,36.7792091369629,-52.2016220092773,40.0299224853516,-15.9747610092163,-52.0600051879883,35.1290397644043,-22.4695987701416,-53.9633941650391,44.7642860412598,-8.62102127075195,-31.5743999481201,47.9982032775879,60.816463470459,-25.8674392700195,47.7424774169922,65.321907043457,102.316520690918,59.3220138549805,15.0901832580566,93.8330917358398,64.9425659179688,42.8774032592773,100.043296813965,61.2186012268066,21.2102832794189,95.6431655883789,52.1861152648926,-7.16790914535522,105.729858398438,55.1030006408691,6.42204284667969,74.8294296264648,50.3085289001465,-18.9301528930664,63.9357566833496,46.4600524902344,-23.6401138305664,43.4673538208008,35.6894989013672,-33.0882377624512,37.1000289916992,38.3571586608887,-31.9240245819092,33.5342826843262,36.882511138916,-33.4028701782227,21.5482063293457,36.6301879882813,-31.4907817840576,-13.4189195632935,49.8813858032227,72.7457275390625,\r\n-1.32358503341675,52.2114143371582,80.6848068237305,10.5303268432617,54.8330764770508,85.8927154541016,44.5458602905273,59.1679992675781,92.9421157836914,24.5742034912109,57.1869049072266,90.5434799194336,31.7240028381348,57.7975654602051,92.7145919799805,58.9108657836914,61.6692428588867,88.6638946533203,52.0895004272461,59.6435432434082,92.1648406982422,61.5185203552246,63.1498870849609,85.1395492553711,73.2051696777344,63.3752098083496,83.7647094726563,79.9721298217773,64.9914703369141,75.2641830444336,-56.3569297790527,52.6953659057617,12.8080587387085,-60.083194732666,55.5273399353027,21.9084491729736,-56.943187713623,49.6703681945801,-0.385010004043579,-21.06907081604,47.7281761169434,69.4019012451172,100.778366088867,62.4468193054199,38.3282623291016,98.0805053710938,62.660041809082,27.9588432312012,94.483154296875,48.484447479248,-13.6788358688354,108.52912902832,49.6661682128906,-1.68132102489471,114.596725463867,52.0983047485352,10.1653995513916,112.739540100098,50.4723434448242,3.83242893218994,82.1928482055664,49.0517082214355,-18.7506332397461,71.6183166503906,43.5086631774902,-26.9232349395752,67.4017028808594,42.2753410339355,-28.4454822540283,55.2809104919434,42.4063529968262,-26.6143035888672,50.2632179260254,40.2607460021973,-28.4228801727295,29.4482803344727,32.8620185852051,-37.3256530761719,24.2423706054688,32.9923324584961,-36.4930725097656,42.570068359375,57.0268898010254,96.9052047729492,85.497673034668,65.6318283081055,67.7000427246094,90.4262542724609,65.0665817260742,63.7616539001465,13.1394834518433,30.7381114959717,-36.4988746643066,-62.1543960571289,55.1370010375977,14.9068651199341,-65.4609222412109,57.0952949523926,22.5178108215332,-54.9363861083984,38.5674819946289,-20.0739631652832,-60.7355575561523,46.8884925842285,-12.7260427474976,-62.7569541931152,49.235424041748,-9.62965965270996,112.823547363281,54.848575592041,18.0596733093262,101.248413085938,62.0141754150391,46.6488723754883,94.0043029785156,64.3077011108398,59.1601028442383,103.603652954102,61.0991897583008,34.910026550293,\r\n88.3135452270508,45.9266014099121,-20.0670623779297,98.8494873046875,45.7515830993652,-15.2609920501709,105.260810852051,48.9150924682617,-5.32637786865234,76.0497512817383,43.6487770080566,-26.3450775146484,62.0070724487305,39.6445846557617,-30.8564186096191,44.2435264587402,29.8406238555908,-38.5956764221191,47.2588272094727,56.1466026306152,98.6599731445313,29.073844909668,55.1893081665039,96.1396255493164,37.8169975280762,54.2959213256836,100.417846679688,64.9078598022461,60.1964988708496,91.1218338012695,59.9703674316406,58.9214744567871,93.5630722045898,73.6518096923828,61.2183952331543,89.2596435546875,81.0440368652344,61.9085655212402,85.5820846557617,88.3564529418945,62.8279571533203,78.0271453857422,-58.2981185913086,52.1904144287109,6.02259397506714,-57.5646476745605,42.9402084350586,-16.3702011108398,-64.0466842651367,51.2232208251953,-5.29175519943237,111.19938659668,56.9641799926758,27.8254318237305,112.422508239746,57.2767105102539,45.2419357299805,90.575569152832,43.9985122680664,-22.2981815338135,109.497222900391,43.9485054016113,-11.7540483474731,114.098678588867,42.4067535400391,-10.1845951080322,121.190376281738,49.8803863525391,15.6778402328491,122.250473022461,45.8088912963867,4.54401922225952,81.6943969726563,44.7489814758301,-24.0303516387939,69.4932098388672,39.1457366943359,-33.1006393432617,52.0814971923828,35.0272331237793,-33.7459030151367,38.7720947265625,28.2984733581543,-40.1737327575684,36.1531867980957,32.5904922485352,-36.7883033752441,46.0977096557617,53.1520080566406,103.15111541748,57.547233581543,53.9385871887207,101.766975402832,90.1330261230469,64.0301742553711,70.7440414428711,99.1946182250977,61.7379493713379,66.3949127197266,-66.1420822143555,55.235912322998,7.61803007125854,-67.8813552856445,56.955982208252,17.5012187957764,-64.0629806518555,53.0847015380859,0.929265022277832,-60.7328567504883,32.5733947753906,-28.9662342071533,-63.6528434753418,44.8317947387695,-18.0871677398682,-63.8786659240723,46.8041839599609,-15.4524097442627,-68.5872268676758,50.6976661682129,-10.4819231033325,\r\n119.681221008301,52.3133277893066,25.4785003662109,101.13240814209,61.4200210571289,62.1050872802734,103.624649047852,60.5659370422363,53.1597137451172,117.65202331543,54.6120529174805,39.9563179016113,82.409065246582,43.0487174987793,-26.3650798797607,101.724464416504,43.0277137756348,-18.4339027404785,121.436393737793,39.0235214233398,-8.38899803161621,122.396484375,47.8758926391602,10.675350189209,75.4333877563477,37.5339775085449,-35.6729888916016,63.9440612792969,35.4930801391602,-36.1559410095215,57.8433647155762,30.4973888397217,-40.1953353881836,45.8604888916016,26.7843246459961,-41.8522987365723,40.0517196655273,23.3489894866943,-44.3584403991699,65.33349609375,51.3525314331055,104.774269104004,73.9924392700195,58.8014602661133,93.6349792480469,83.9604187011719,58.2990112304688,92.8073959350586,87.5626754760742,60.8880653381348,85.0648422241211,95.4179382324219,59.9559745788574,79.43408203125,-77.2848815917969,59.6193428039551,29.1613616943359,-60.1869010925293,36.3523635864258,-24.7602214813232,-68.5350189208984,48.434944152832,-15.5297183990479,-70.4170989990234,55.0577926635742,1.58348894119263,111.217399597168,57.5841407775879,55.6400566101074,89.01611328125,40.8019981384277,-28.489688873291,91.7890930175781,38.6552886962891,-30.7835121154785,114.284690856934,39.0605278015137,-15.6860332489014,107.944068908691,40.4219589233398,-17.9695568084717,125.964836120605,46.754280090332,15.0008735656738,125.70881652832,48.4854545593262,23.3569927215576,128.088043212891,38.4869728088379,-2.52647399902344,131.026336669922,41.3620567321777,8.93760967254639,70.9860534667969,36.5750846862793,-36.5575790405273,37.9409637451172,25.850133895874,-42.2384376525879,58.657543182373,49.931095123291,107.296516418457,86.6918869018555,59.5228309631348,89.2912521362305,100.57234954834,58.8151626586914,77.8467330932617,101.266418457031,59.652645111084,73.2475814819336,107.614036560059,58.4617309570313,63.9276657104492,-72.4188003540039,57.5235366821289,13.2321996688843,-80.5710983276367,59.7987594604492,24.3715915679932,-68.4457092285156,37.5835838317871,-29.5964965820313,\r\n-65.7356414794922,41.8628005981445,-22.6551170349121,-68.4142150878906,45.865592956543,-19.4774055480957,-77.543701171875,51.6780624389648,-12.8007507324219,124.174667358398,50.6606636047363,33.8147201538086,115.783836364746,55.6517562866211,47.6307716369629,83.8076019287109,38.8099021911621,-33.0934371948242,101.941482543945,39.1037292480469,-24.5501022338867,105.919868469238,39.4145622253418,-20.7678318023682,125.035743713379,31.5107879638672,-17.5589160919189,129.060134887695,33.682201385498,-10.3624105453491,136.446868896484,32.2449569702148,-3.54217290878296,75.1785659790039,33.7386054992676,-39.5005683898926,69.0693588256836,32.0612411499023,-40.301643371582,52.2225112915039,23.5111045837402,-47.1656188964844,43.9784049987793,22.035758972168,-46.0497093200684,38.5807762145996,23.3753910064697,-44.3307914733887,70.8178405761719,50.0809097290039,106.762466430664,83.3109588623047,55.3835296630859,97.6455688476563,62.9838676452637,48.6137657165527,108.593643188477,96.9271926879883,52.2221145629883,97.7974853515625,99.5128479003906,55.3262214660645,89.7269897460938,97.5320510864258,54.4223327636719,93.4196624755859,102.698554992676,56.5577430725098,83.1819534301758,-73.9244537353516,57.1119956970215,7.98432588577271,-68.6444320678711,39.9552154541016,-27.4219837188721,-75.8688354492188,47.039909362793,-21.4876022338867,-78.9343414306641,55.731861114502,-0.340319007635117,-78.1250610351563,49.814884185791,-17.4860095977783,124.501693725586,51.0231018066406,41.5428733825684,122.642509460449,51.4038352966309,63.6920433044434,94.6311645507813,36.138240814209,-32.7384033203125,116.937957763672,35.4752769470215,-18.4881076812744,111.856460571289,32.2592620849609,-25.1416606903076,133.081527709961,41.5637741088867,14.6327381134033,132.681503295898,43.1030235290527,19.8238468170166,129.757217407227,47.4222450256348,34.5413856506348,132.256454467773,31.5491924285889,-10.3428087234497,134.633682250977,36.11083984375,2.62327098846436,83.1207427978516,36.2454528808594,-36.5143737792969,80.9080200195313,33.2985610961914,-39.7979965209961,\r\n65.9512557983398,29.749116897583,-42.4100494384766,60.6710433959961,23.5991115570068,-49.2360229492188,43.3173408508301,18.9500560760498,-48.1984176635742,39.3747024536133,20.4538059234619,-46.347339630127,81.8160095214844,51.6104583740234,103.531150817871,95.5730667114258,50.7078704833984,100.582862854004,109.467224121094,55.570442199707,72.5888137817383,116.55891418457,54.3382263183594,63.1461906433105,-83.4389877319336,59.860466003418,17.8223514556885,-73.7897415161133,38.619384765625,-30.7736110687256,-70.8530502319336,43.2244338989258,-24.848030090332,-83.8208236694336,54.2494163513184,-8.81363010406494,-85.1650543212891,50.7621726989746,-17.9901580810547,126.509895324707,49.8072776794434,52.0852088928223,89.8023910522461,35.1955490112305,-35.6521911621094,104.055694580078,35.5990905761719,-27.7634162902832,111.253395080566,26.8043270111084,-32.8019104003906,124.863731384277,27.0531520843506,-23.8615341186523,130.986328125,28.0235462188721,-16.8891525268555,136.701889038086,36.7546997070313,9.14041900634766,138.581069946289,27.121057510376,-9.45036220550537,144.567657470703,28.0507488250732,0.573145985603333,73.3568801879883,29.1705589294434,-43.1193237304688,77.431884765625,27.4331874847412,-44.3038368225098,57.6714477539063,20.3327922821045,-51.8774795532227,50.9045829772949,19.6988296508789,-50.301326751709,67.6335220336914,46.715877532959,110.763862609863,81.6420974731445,47.6946716308594,108.79866027832,102.353530883789,53.2950210571289,91.8130950927734,99.509147644043,47.424446105957,102.368034362793,115.121780395508,54.2141151428223,67.2160873413086,-87.6974945068359,58.7501564025879,7.84738302230835,-86.0785446166992,61.1231880187988,23.0996685028076,-72.8893432617188,41.8375015258789,-27.4642868041992,-77.2746734619141,44.8942985534668,-24.8741340637207,-86.8752212524414,48.5313568115234,-21.95094871521,-84.879020690918,52.6766624450684,-13.757643699646,-86.5331802368164,56.0199890136719,-3.5264720916748,131.927429199219,46.4351501464844,43.3031463623047,130.487289428711,46.3563423156738,66.3486022949219,\r\n124.074653625488,49.6153602600098,72.9348526000977,87.5393676757813,32.422176361084,-39.2735443115234,98.592155456543,30.7582130432129,-36.2657508850098,117.674026489258,25.1717662811279,-30.1951541900635,138.026016235352,38.8527069091797,19.6364288330078,136.286849975586,42.5019645690918,32.1471557617188,143.948608398438,24.9609451293945,-6.76521921157837,144.10661315918,30.4305820465088,6.30030107498169,146.044799804688,24.7109203338623,-4.37346506118774,83.3812637329102,29.8176212310791,-42.2302360534668,64.7661437988281,24.7015209197998,-48.4640464782715,63.597827911377,20.8974475860596,-52.1063003540039,54.3095169067383,14.8337535858154,-55.1590003967285,74.3243789672852,45.6683731079102,112.01798248291,90.3662490844727,47.8807907104492,105.990386962891,104.147705078125,51.4236373901367,93.2286376953125,96.3299331665039,45.5597648620605,106.537437438965,105.724853515625,53.3839302062988,87.5374755859375,112.224487304688,51.0477027893066,83.3672714233398,114.496719360352,53.1848106384277,72.1789779663086,-87.7818145751953,59.638843536377,11.9829778671265,-87.8217086791992,60.7001457214355,17.1300830841064,-79.8478317260742,41.8112983703613,-28.9457321166992,-83.4776840209961,45.2796363830566,-25.4462890625,-93.3427505493164,55.092399597168,-9.77399444580078,-91.314453125,51.002498626709,-18.2608852386475,134.643692016602,44.4269523620605,40.3083534240723,131.511383056641,46.3502426147461,58.6266479492188,104.65274810791,32.5145835876465,-30.8647212982178,112.244499206543,23.240177154541,-35.7486000061035,129.773208618164,22.1453704833984,-25.3688812255859,124.076652526855,20.5960178375244,-31.1234455108643,143.630569458008,33.4396781921387,14.7368478775024,143.044509887695,36.9545211791992,28.0800552368164,140.040222167969,20.5289115905762,-15.5909242630005,145.176727294922,20.1015701293945,-11.53342628479,154.075592041016,22.5173072814941,6.53955507278442,73.3504791259766,26.5122985839844,-45.789981842041,83.2871551513672,25.8250312805176,-44.7200775146484,69.382194519043,22.1212673187256,-50.7831726074219,62.8146514892578,17.5085144042969,-54.6999549865723,\r\n49.6731605529785,12.1354894638062,-54.999885559082,83.4359741210938,43.1693305969238,113.593132019043,99.4428405761719,43.0738182067871,107.388526916504,107.162994384766,46.1402206420898,97.283935546875,122.103454589844,49.654468536377,76.491096496582,-94.5962753295898,56.7565612792969,-5.01777791976929,-90.7386932373047,60.6627426147461,13.0401821136475,-89.2024459838867,62.7813529968262,25.0093555450439,-82.9950408935547,39.1549377441406,-31.8400173187256,-91.3947601318359,45.8835983276367,-25.426887512207,-92.5965728759766,53.2203140258789,-14.0847759246826,-93.5929794311523,48.4358444213867,-22.0701599121094,135.953826904297,43.3427467346191,53.5049476623535,132.023422241211,44.4897613525391,72.7881393432617,135.004730224609,43.4740600585938,63.6240386962891,90.575065612793,28.8429260253906,-41.4497604370117,103.997688293457,29.0888519287109,-34.6246871948242,132.536483764648,24.5702075958252,-19.4475021362305,127.248962402344,23.5703105926514,-26.0474491119385,143.302536010742,35.5993881225586,22.1626758575439,143.726593017578,37.4675712585449,41.054027557373,143.270538330078,37.5709800720215,34.5437889099121,153.509536743164,12.4470195770264,-12.8591556549072,152.886474609375,25.9938488006592,15.0532789230347,154.645660400391,19.0290641784668,0.400763005018234,80.0221405029297,22.63671875,-47.363639831543,91.2694396972656,24.5092010498047,-44.1875267028809,57.5568313598633,16.7681446075439,-54.6779556274414,69.2046737670898,17.2924957275391,-54.4097290039063,83.8545150756836,39.3336524963379,117.196487426758,112.223487854004,49.1597175598145,87.8962173461914,95.8116836547852,41.6093788146973,110.854866027832,109.884262084961,47.915397644043,92.5227661132813,115.931854248047,50.0659065246582,80.72021484375,128.229064941406,44.9620056152344,81.0580444335938,-93.5658721923828,59.4205207824707,5.83490610122681,-91.6319885253906,63.304801940918,19.6680316925049,-87.0514373779297,42.4361572265625,-28.7733154296875,-96.2700424194336,52.2855224609375,-15.7863435745239,-98.7838897705078,55.5019378662109,-9.17661571502686,\r\n144.661682128906,36.5543823242188,48.724178314209,131.395370483398,43.6009712219238,78.5841979980469,97.9645919799805,27.2551708221436,-39.543571472168,113.788650512695,19.5738162994385,-37.8811073303223,104.113693237305,24.9779472351074,-38.0015182495117,130.888320922852,17.9598598480225,-28.551794052124,148.209014892578,31.5277900695801,22.4515056610107,148.251022338867,33.1068458557129,36.4339752197266,141.433364868164,14.4624176025391,-20.7530288696289,137.641983032227,19.4778099060059,-19.0735645294189,151.920379638672,9.67215824127197,-18.2182807922363,153.089508056641,17.0910739898682,-6.19884395599365,158.944061279297,17.3408985137939,5.45183801651001,158.045974731445,20.5370121002197,11.7070512771606,83.959716796875,18.0686702728271,-49.1529159545898,87.2017364501953,21.0098571777344,-46.4956512451172,58.8988647460938,12.9685707092285,-57.4352226257324,66.0863723754883,13.6698389053345,-57.0262832641602,87.9721145629883,40.8494033813477,114.359214782715,99.2340240478516,38.1983413696289,112.28800201416,105.86686706543,40.8722038269043,104.647254943848,112.895553588867,45.3408432006836,94.3260498046875,120.678321838379,48.5896606445313,81.1356506347656,123.522598266602,46.203426361084,84.4034729003906,-95.8003997802734,58.4480247497559,0.334930986166,-94.4503631591797,61.6473426818848,10.2876119613647,-92.0217208862305,65.7976455688477,26.70631980896,-94.2728424072266,36.080738067627,-34.5750846862793,-92.7727966308594,41.9241065979004,-29.3429718017578,-100.167320251465,43.8100929260254,-26.6222057342529,-97.7067794799805,56.9604797363281,-5.32979822158813,-105.437835693359,47.2022285461426,-21.096263885498,143.90559387207,36.7785034179688,56.1458053588867,139.883209228516,38.9005126953125,68.3420028686523,137.51496887207,38.7030906677246,78.3765869140625,95.8761901855469,24.0756587982178,-42.896800994873,122.175468444824,17.1923847198486,-35.038028717041,135.439758300781,14.7954502105713,-25.9577407836914,129.272171020508,14.6704368591309,-32.4330749511719,151.644348144531,29.3604755401611,27.9073390960693,\r\n154.781646728516,27.2431697845459,45.764591217041,148.119018554688,7.44653987884521,-23.9629440307617,156.426818847656,6.35270214080811,-17.0104637145996,158.256011962891,8.58417129516602,-11.1599903106689,154.931671142578,25.7870273590088,22.4964084625244,73.2392730712891,18.7547378540039,-52.5814514160156,84.6175842285156,10.3107099533081,-54.2411117553711,96.3688430786133,15.9956674575806,-46.9223937988281,73.5761032104492,13.4369173049927,-55.8488693237305,57.0715866088867,8.43763637542725,-58.8907661437988,91.5583648681641,36.3305587768555,116.549423217773,116.039863586426,46.7485809326172,89.0110244750977,97.4365386962891,36.6078872680664,114.523223876953,110.704345703125,43.6570816040039,98.0804138183594,126.77791595459,43.3408470153809,86.9434280395508,133.590576171875,39.1056327819824,86.2866592407227,-96.6845779418945,60.4976272583008,5.10108280181885,-97.2279357910156,62.7453498840332,8.22093868255615,-93.9705123901367,63.3391075134277,14.4898233413696,-95.0415191650391,67.8232421875,21.218282699585,-102.756576538086,52.1935157775879,-14.6218290328979,-101.107414245605,57.2531127929688,-5.40333604812622,152.276412963867,28.6157035827637,62.4868278503418,115.113777160645,15.4262113571167,-39.9260101318359,104.561744689941,19.8657474517822,-41.3783531188965,134.151641845703,11.2240991592407,-30.198055267334,152.815475463867,29.1139526367188,38.4596710205078,137.628982543945,11.2555027008057,-26.8712291717529,139.681182861328,7.57973289489746,-28.7286109924316,154.005599975586,4.62382316589355,-21.6000137329102,161.45930480957,17.3151950836182,13.4971256256104,162.479415893555,4.94184398651123,-8.25666618347168,162.476409912109,17.0108661651611,17.3201007843018,98.1668167114258,18.8850498199463,-44.9373970031738,87.6918869018555,13.3121042251587,-50.6741638183594,88.0500259399414,17.5079154968262,-47.8537826538086,63.3714065551758,9.4315242767334,-59.1143913269043,72.4850006103516,9.27415752410889,-58.1228904724121,105.248809814453,36.3390617370605,110.168800354004,100.405334472656,30.9392318725586,117.375511169434,\r\n109.530227661133,39.1769371032715,104.693267822266,117.237983703613,40.5809745788574,100.961898803711,118.584114074707,42.7875938415527,96.0013122558594,122.463493347168,40.8649063110352,96.838996887207,-99.7003784179688,61.5302314758301,2.98256611824036,-99.2299346923828,59.0694885253906,-0.951584994792938,-96.9354019165039,65.2640914916992,12.0259828567505,-96.8308944702148,72.7110290527344,26.8045291900635,-102.600563049316,36.8677139282227,-33.2501525878906,-105.40283203125,39.9381141662598,-29.7066078186035,-103.950691223145,55.1056022644043,-9.63348960876465,-107.515045166016,51.829776763916,-14.194188117981,149.209121704102,29.9491348266602,76.0479583740234,145.512756347656,33.1156463623047,77.3185806274414,144.23063659668,32.6193962097168,82.498291015625,122.746528625488,11.3792152404785,-38.4796676635742,128.283065795898,11.4666242599487,-35.0244293212891,156.341827392578,25.1618671417236,28.887134552002,155.561752319336,25.2776775360107,63.0008773803711,148.412048339844,3.85221791267395,-27.1341552734375,161.552322387695,0.313690990209579,-16.3981037139893,161.347305297852,2.91273498535156,-13.8279514312744,161.389312744141,14.4712181091309,5.77046918869019,159.2041015625,22.246280670166,30.170259475708,92.8756942749023,8.8259449005127,-52.148006439209,98.0407028198242,11.1714935302734,-49.0319023132324,92.5738677978516,12.9862718582153,-49.1404113769531,84.6933975219727,6.56940412521362,-56.1589012145996,103.678657531738,33.2052536010742,114.252197265625,116.413902282715,36.8791122436523,106.813468933105,129.547180175781,37.3014526367188,95.6516799926758,-99.7029800415039,67.0657653808594,9.62380695343018,-97.3048400878906,68.6708297729492,16.5770282745361,-108.195106506348,35.0985412597656,-33.6181907653809,-110.386322021484,38.9673194885254,-29.095947265625,-104.720764160156,58.0199851989746,-5.4325590133667,-102.633560180664,60.1295928955078,-1.43054699897766,-110.626350402832,48.5415573120117,-17.5117111206055,155.181701660156,24.3968906402588,73.9348526000977,141.267349243164,33.1398468017578,86.2352600097656,\r\n115.774841308594,12.0529813766479,-41.5254669189453,109.018173217773,8.97280883789063,-45.4961547851563,134.260650634766,7.92793703079224,-32.1406478881836,163.430511474609,16.4093074798584,61.4311218261719,143.053512573242,2.12758803367615,-31.8118133544922,153.1875,1.55910301208496,-24.8649311065674,160.238204956055,-5.00741100311279,-22.2570762634277,164.130584716797,12.7040452957153,10.249608039856,166.300796508789,0.148675993084908,-7.11812400817871,164.259582519531,6.65983295440674,-0.807655990123749,164.950668334961,14.407112121582,23.0897655487061,103.989685058594,6.98874521255493,-48.6227607727051,89.4972686767578,6.67884492874146,-54.6850547790527,70.7567291259766,5.03459310531616,-59.6189384460449,80.6188888549805,3.6585590839386,-58.0066795349121,61.7434463500977,4.4336838722229,-59.9198684692383,105.556838989258,29.7475147247314,116.528427124023,110.326309204102,33.1085433959961,112.158996582031,119.99324798584,36.498779296875,105.616348266602,126.532890319824,37.0040283203125,99.5819625854492,-101.546455383301,65.1821823120117,5.20063304901123,-100.641372680664,70.861946105957,12.1765966415405,-99.935302734375,73.9339447021484,18.7165393829346,-107.382026672363,55.192310333252,-9.6912956237793,-110.940376281738,52.5900535583496,-12.8481550216675,156.194808959961,22.2017765045166,79.0680541992188,148.190017700195,30.0629444122314,80.0507431030273,152.592437744141,23.0806617736816,86.8398132324219,118.754127502441,6.18875598907471,-42.9694061279297,130.760299682617,5.39555883407593,-35.9439163208008,161.13427734375,20.1028709411621,37.3250617980957,135.496780395508,3.77817988395691,-34.0276298522949,146.793869018555,-0.135148003697395,-31.284761428833,150.081192016602,-0.532124996185303,-29.0090408325195,163.129470825195,-5.62519121170044,-19.0291614532471,168.560012817383,8.56349945068359,18.6791343688965,93.1039199829102,4.51053190231323,-54.3805236816406,98.2447204589844,7.83593797683716,-51.0834007263184,67.1638793945313,3.39091205596924,-60.2101974487305,88.4929656982422,2.47153210639954,-56.4180221557617,\r\n59.5456314086914,-2.606684923172,-59.9027671813965,114.97176361084,33.0359382629395,111.377922058105,122.277481079102,37.8132057189941,102.298027038574,119.310180664063,32.8713188171387,110.038787841797,139.579177856445,31.7073078155518,90.9525146484375,131.387359619141,31.1900577545166,101.928993225098,-104.18571472168,63.4159126281738,0.543998003005981,-102.41854095459,70.4227066040039,7.86794519424438,-99.1289138793945,76.7028121948242,27.5069980621338,-114.169692993164,44.7826881408691,-20.4811019897461,-107.422035217285,60.9445724487305,-4.16311407089233,-110.29931640625,56.6383514404297,-9.01972961425781,-114.364715576172,48.9997024536133,-16.0046634674072,162.49641418457,15.3716058731079,76.09765625,148.548049926758,25.4642944335938,89.4135589599609,122.218475341797,2.64464902877808,-42.5933685302734,108.350112915039,4.10593223571777,-47.590259552002,164.085571289063,14.5289239883423,69.4248123168945,165.44270324707,14.4386138916016,41.9059104919434,142.171432495117,-3.0635199546814,-36.077033996582,153.849578857422,-3.90991306304932,-27.7117118835449,166.427795410156,-7.48026323318481,-15.5221176147461,164.630630493164,-14.4082117080688,-26.1305561065674,169.989151000977,-10.6828470230103,-11.8974618911743,168.53401184082,7.23337888717651,14.0704832077026,168.050964355469,5.28903818130493,8.10473823547363,169.732131958008,-1.31782901287079,0.332132995128632,170.053161621094,7.3734917640686,24.8583393096924,98.6645584106445,3.1635799407959,-52.7312622070313,79.0608367919922,-4.56321716308594,-59.2109985351563,71.7585296630859,-0.667509019374847,-59.9371719360352,88.1719284057617,-5.04904508590698,-57.4609260559082,115.817848205566,28.98703956604,114.64323425293,124.482696533203,33.2728614807129,106.169410705566,138.804092407227,29.4420852661133,95.2889404296875,-104.252723693848,67.6785278320313,3.13630104064941,-105.078804016113,78.4891891479492,10.1822023391724,-101.685470581055,76.9917449951172,17.9418621063232,-101.977500915527,81.0841445922852,23.0915660858154,-119.851249694824,35.7444000244141,-28.1966571807861,\r\n-113.768653869629,54.178409576416,-11.6885414123535,155.278717041016,21.8102378845215,83.2291564941406,163.328491210938,12.8175563812256,81.09765625,152.100387573242,21.5347118377686,90.3212509155273,118.037063598633,2.15095090866089,-44.890495300293,125.76781463623,-0.0748860016465187,-41.2868423461914,132.626480102539,0.697695016860962,-37.3437538146973,169.485107421875,7.58471298217773,64.2436981201172,170.329177856445,7.53927898406982,42.5983772277832,145.244720458984,-9.7791576385498,-38.0042190551758,157.379913330078,-5.37195587158203,-25.5102958679199,149.237121582031,-8.2076940536499,-34.3648643493652,167.163879394531,-13.3660097122192,-21.7472267150879,159.842163085938,-10.5036287307739,-27.7076110839844,169.732131958008,-4.62269306182861,-5.21290683746338,174.427597045898,1.01402902603149,20.635326385498,97.4201354980469,-0.641278028488159,-54.1307983398438,68.4805068969727,-4.34487581253052,-60.0016746520996,94.0475082397461,-8.66494941711426,-56.4603271484375,58.7399520874023,-6.15673303604126,-60.5620307922363,105.734855651855,24.5247039794922,119.898750305176,121.136367797852,29.3177719116211,112.001983642578,147.823989868164,23.7802314758301,93.3906555175781,126.043846130371,28.7268161773682,109.114692687988,134.976715087891,28.6405067443848,100.696868896484,-107.454032897949,65.4293060302734,-1.83416604995728,-108.00708770752,80.7285079956055,6.4262638092041,-105.345825195313,71.9341506958008,3.84159994125366,-126.65291595459,31.8373203277588,-29.63330078125,-121.445404052734,41.9735107421875,-21.0098533630371,-113.201599121094,59.3874206542969,-8.62412166595459,-117.198989868164,52.4631423950195,-13.4381132125854,166.538818359375,9.55390644073486,76.6572189331055,159.786163330078,12.3340091705322,89.9893264770508,121.568405151367,-4.32279396057129,-45.0613136291504,115.506813049316,-1.47441399097443,-46.9214935302734,137.336944580078,-7.84138822555542,-41.368049621582,138.963119506836,-13.6605377197266,-44.0925178527832,153.727569580078,-8.32784557342529,-30.974630355835,169.928146362305,-15.9652652740479,-19.7593326568604,\r\n164.146591186523,-17.3498001098633,-29.1992568969727,168.938049316406,-17.609827041626,-23.3548851013184,172.136367797852,-6.41663885116577,-1.22942698001862,174.563613891602,-0.874993026256561,14.8097553253174,172.370376586914,-2.09879589080811,5.72386503219604,176.704803466797,-1.00683903694153,40.0912322998047,87.2873458862305,-13.1603889465332,-59.2554016113281,74.0747528076172,-5.07187700271606,-59.8044548034668,64.6853332519531,-5.76395511627197,-59.9595718383789,64.4805145263672,-10.2373037338257,-60.8715629577637,115.228782653809,25.2568740844727,117.42650604248,143.244522094727,23.7719287872314,98.4302444458008,135.619781494141,21.6999263763428,106.733467102051,138.163040161133,25.7426223754883,100.57186126709,-109.553237915039,71.9165496826172,-1.94223701953888,-110.196304321289,63.0818786621094,-5.18495416641235,-104.409736633301,84.6506958007813,18.0421714782715,-107.84107208252,85.8332138061523,10.5705404281616,-127.753028869629,35.6824951171875,-25.3671817779541,-119.488220214844,47.6465682983398,-16.5335178375244,-116.141891479492,56.1657028198242,-11.1926927566528,163.523529052734,10.2577047348022,85.7092056274414,170.245178222656,1.47629499435425,83.1261520385742,151.480331420898,17.6967334747314,96.4611587524414,107.655044555664,-4.18166017532349,-50.4051361083984,125.361778259277,-4.35331678390503,-43.4504547119141,172.231384277344,4.19433116912842,61.0192794799805,171.160278320313,3.34004688262939,73.107666015625,128.882125854492,-5.07093715667725,-42.4141502380371,149.028106689453,-16.9163570404053,-40.9597091674805,156.847869873047,-14.0936813354492,-33.3470649719238,173.070449829102,-21.4365997314453,-19.1974773406982,173.463485717773,-15.6521339416504,-9.3763952255249,179.351058959961,-9.11519336700439,13.500527381897,178.686004638672,-4.08556985855103,33.190559387207,175.221664428711,0.465701997280121,52.0834083557129,103.033584594727,-8.84592723846436,-53.4544334411621,78.9144287109375,-9.41448211669922,-60.1300888061523,68.7746276855469,-8.76744937896729,-60.385913848877,97.8709869384766,-12.2840032577515,-56.1328964233398,\r\n113.808647155762,18.9651584625244,121.24488067627,120.970352172852,24.5194034576416,115.43132019043,125.57780456543,23.9156436920166,112.952072143555,146.273834228516,19.1757793426514,101.039909362793,131.857406616211,18.7969417572021,111.943977355957,-113.497627258301,70.0637664794922,-6.76959991455078,-112.711555480957,64.5042266845703,-7.09065103530884,-110.101295471191,76.9679489135742,0.614706993103027,-110.821365356445,86.3085632324219,6.41746282577515,-103.257621765137,85.3826675415039,23.4391994476318,-124.444694519043,45.0122108459473,-18.5540142059326,-127.044960021973,41.5395698547363,-20.6539192199707,-121.719429016113,52.2682228088379,-14.273494720459,-120.151275634766,57.6902542114258,-12.349006652832,166.5908203125,2.10083603858948,91.0864334106445,153.700561523438,11.9623718261719,100.377838134766,112.750541687012,-6.7003870010376,-49.1419105529785,123.726615905762,-8.22163581848145,-45.8955955505371,174.566604614258,0.456061989068985,63.9067687988281,133.536575317383,-11.2408018112183,-45.000804901123,137.669998168945,-19.7705383300781,-48.5877571105957,152.50244140625,-16.5487213134766,-38.5515747070313,169.821136474609,-21.2898864746094,-24.9751434326172,162.073364257813,-20.6876277923584,-33.4260749816895,176.207763671875,-16.0362720489502,-2.13233494758606,175.692718505859,-6.99643611907959,6.87191677093506,179.011032104492,-6.46913385391235,19.9658603668213,181.844314575195,-8.80056190490723,38.429069519043,178.800018310547,-4.7291841506958,47.4522552490234,81.6396942138672,-13.4195146560669,-60.6607398986816,73.7481231689453,-10.3167114257813,-60.8292541503906,90.935302734375,-17.6681327819824,-59.4939270019531,60.5000228881836,-15.5980291366577,-63.9717636108398,117.471008300781,20.3171920776367,119.350700378418,140.871292114258,17.821647644043,107.271514892578,143.881607055664,16.8821544647217,106.133399963379,135.244750976563,17.3216972351074,110.745849609375,-114.449722290039,76.5317993164063,-4.604248046875,-106.182914733887,90.9407119750977,17.9848651885986,-110.708351135254,90.9568099975586,8.66718292236328,\r\n-104.630760192871,91.2287445068359,23.7086277008057,-134.314666748047,34.0471382141113,-25.5145969390869,-122.67552947998,49.1908226013184,-15.8607511520386,-130.528305053711,37.8211097717285,-23.2738780975342,-116.246894836426,61.0589866638184,-9.97358417510986,169.869140625,-0.950567007064819,88.3998641967773,175.781707763672,-4.00213193893433,73.3518905639648,149.830184936523,12.3707122802734,105.099304199219,115.342796325684,-10.7664546966553,-49.2900238037109,109.853256225586,-10.3087100982666,-51.2562217712402,126.979934692383,-12.9435682296753,-47.6807708740234,151.532348632813,-19.9195537567139,-41.1679306030273,147.594955444336,-21.6346206665039,-44.6194686889648,174.891632080078,-20.6184196472168,-13.365406036377,165.939758300781,-22.9703502655029,-30.8320178985596,177.204864501953,-19.1046714782715,-4.44985198974609,179.928131103516,-13.4209146499634,7.93084096908569,183.742492675781,-14.3689079284668,17.0920791625977,182.771408081055,-10.9012680053711,25.2238750457764,103.14860534668,-12.7100458145142,-54.6192474365234,83.2769546508789,-18.3518981933594,-60.964771270752,75.6272048950195,-14.5456247329712,-61.9528656005859,70.2675857543945,-13.8138542175293,-62.0832824707031,86.8586120605469,-20.4437026977539,-60.829158782959,96.7189712524414,-15.6613340377808,-57.5836372375488,68.7567291259766,-16.9596614837646,-63.5179214477539,59.7202453613281,-20.0151615142822,-65.6441268920898,120.522308349609,11.539529800415,121.871940612793,129.085144042969,14.6686372756958,116.054382324219,132.358459472656,11.3373107910156,116.639434814453,-118.258094787598,72.5607070922852,-9.00916862487793,-115.26880645752,66.0685806274414,-8.89516830444336,-108.316116333008,91.4068603515625,12.7883567810059,-113.317611694336,84.9230270385742,2.74752306938171,-114.753753662109,90.255744934082,4.15845108032227,-128.844131469727,45.1540260314941,-18.7936363220215,-126.829933166504,48.9044914245605,-17.121675491333,-133.479583740234,41.2055397033691,-21.3761901855469,-127.674018859863,52.481143951416,-16.4191055297852,-119.34220123291,68.0420684814453,-10.8882637023926,\r\n175.355682373047,-8.73070526123047,86.2252502441406,176.37077331543,-8.48763179779053,82.1375503540039,166.597808837891,0.258111000061035,93.009521484375,158.94206237793,7.13106918334961,97.4798583984375,153.131500244141,7.00296592712402,105.86637878418,118.626121520996,-12.374813079834,-49.1384086608887,179.208053588867,-7.2463698387146,63.934268951416,133.018539428711,-16.8804531097412,-48.6155624389648,139.814193725586,-23.6491165161133,-49.6075553894043,176.735824584961,-29.0104446411133,-19.663423538208,176.600799560547,-24.7940292358398,-15.6646308898926,171.279266357422,-26.9887447357178,-26.3382778167725,161.384307861328,-24.0687599182129,-35.7612037658691,178.938034057617,-18.7069320678711,-0.355172008275986,177.686920166016,-12.6311378479004,4.80465507507324,184.870620727539,-19.1660785675049,10.1032943725586,185.076629638672,-14.5911302566528,37.6930961608887,182.195358276367,-10.9540729522705,51.3759384155273,178.011947631836,-4.66817712783813,61.2036018371582,100.909385681152,-16.2998962402344,-57.2350044250488,77.2056655883789,-18.236686706543,-62.4449157714844,91.2770385742188,-22.3821926116943,-62.0300712585449,68.2477874755859,-20.1951770782471,-64.5398178100586,118.643119812012,8.15725898742676,124.210174560547,141.420364379883,12.8314580917358,111.406921386719,145.228729248047,11.0116786956787,110.476829528809,-117.435012817383,76.3512878417969,-6.78682088851929,-108.101104736328,96.1472244262695,14.0090770721436,-106.09090423584,95.9882049560547,20.3316974639893,-110.671348571777,95.3553466796875,9.40640640258789,-115.634834289551,95.5061645507813,4.09172487258911,-117.243995666504,80.7055130004883,-3.75765490531921,-137.156936645508,36.3335609436035,-23.7042198181152,-130.604293823242,57.7603607177734,-16.4396076202393,-128.082061767578,66.5705261230469,-14.4009065628052,177.0068359375,-13.3363065719604,88.2617568969727,178.692001342773,-10.0108814239502,75.4039916992188,175.014633178711,-12.8744621276855,91.7369918823242,147.701965332031,7.63773918151855,110.941879272461,116.619926452637,-14.7961502075195,-51.4310340881348,\r\n109.431213378906,-14.0977821350098,-53.3708267211914,125.26676940918,-16.7998466491699,-50.8196754455566,130.760299682617,-21.5487117767334,-52.6323547363281,151.722366333008,-24.1671695709229,-42.9585075378418,146.794876098633,-25.6219100952148,-46.8138847351074,134.73469543457,-25.3739852905273,-53.1951065063477,181.186248779297,-25.3274822235107,-6.12181615829468,165.649719238281,-26.8894367218018,-33.0665397644043,182.308349609375,-19.5499153137207,3.86753296852112,186.553787231445,-18.7970428466797,18.1167793273926,184.98161315918,-14.9050598144531,23.3916969299316,104.174705505371,-16.7063388824463,-56.8975715637207,80.7392044067383,-22.61061668396,-61.8164558410645,73.0466537475586,-18.7648391723633,-63.1533851623535,85.3882675170898,-25.8127288818359,-63.2177925109863,99.7058715820313,-18.9753589630127,-59.4349212646484,63.4213104248047,-26.3095779418945,-66.272590637207,124.108657836914,7.36160087585449,122.672027587891,139.557174682617,4.56221723556519,118.542625427246,-128.726119995117,71.3443908691406,-13.7937479019165,-125.117767333984,78.6740036010742,-9.05244445800781,-104.702766418457,96.9088973999023,28.2630729675293,-116.590934753418,86.2357559204102,0.778459012508392,-118.552124023438,92.4964599609375,0.800760984420776,-134.96272277832,45.0417137145996,-20.4014949798584,-130.408279418945,48.7406768798828,-18.1367740631104,-140.159240722656,38.7636985778809,-23.1528644561768,180.618194580078,-15.4209108352661,79.4528884887695,159.395111083984,1.3760449886322,101.789978027344,167.647918701172,-5.69313812255859,96.488655090332,151.694366455078,1.39532697200775,111.252906799316,182.596389770508,-14.152286529541,63.8602638244629,141.10432434082,-32.0422401428223,-52.1401023864746,137.587982177734,-29.8880271911621,-53.5330429077148,179.466079711914,-28.952335357666,-14.2752952575684,176.240753173828,-31.5559921264648,-21.8274345397949,173.539505004883,-33.1001434326172,-26.349178314209,163.004455566406,-29.4858894348145,-36.5162734985352,186.355758666992,-23.5397052764893,7.30587005615234,188.094924926758,-23.5949115753174,13.5035266876221,\r\n184.734603881836,-15.7997484207153,49.8593902587891,187.465866088867,-19.9067516326904,27.3951873779297,75.7049102783203,-22.5929145812988,-62.9670677185059,80.3782653808594,-27.5301971435547,-63.0904808044434,95.7559814453125,-26.6336097717285,-65.9167556762695,98.3303298950195,-23.2383766174316,-63.3987121582031,68.3182907104492,-26.9620418548584,-65.2534866333008,124.739715576172,2.86532092094421,125.382286071777,145.095703125,0.454928010702133,118.044570922852,134.343658447266,-0.125945001840591,124.448196411133,-128.183074951172,75.4135894775391,-12.1321859359741,-109.621246337891,100.206817626953,10.612943649292,-107.347023010254,100.76887512207,14.7234468460083,-105.256820678711,101.325927734375,25.2276763916016,-115.021774291992,99.7279739379883,4.47652196884155,-117.398010253906,103.734161376953,2.6193699836731,-121.05436706543,82.7792129516602,-4.56525421142578,-142.953521728516,34.3598670959473,-24.1404609680176,-140.879302978516,43.2164344787598,-22.4323959350586,-140.708297729492,57.586742401123,-20.0583610534668,-140.316253662109,62.208797454834,-19.451602935791,-135.932815551758,73.3245849609375,-16.7369365692139,178.386978149414,-19.8018398284912,91.3542556762695,174.229568481445,-16.1559829711914,95.5601654052734,158.696044921875,-6.01468896865845,107.366523742676,151.214324951172,-5.12933301925659,116.498420715332,109.959266662598,-17.0723724365234,-56.0858917236328,121.766426086426,-20.3911972045898,-55.3049163818359,126.791923522949,-22.1381683349609,-54.7499618530273,128.788116455078,-27.2798748016357,-57.7252540588379,152.367431640625,-28.4701881408691,-43.8272933959961,146.597854614258,-35.0158348083496,-49.3983383178711,131.729400634766,-32.5266876220703,-58.9163665771484,184.277557373047,-28.5047931671143,-3.11373090744019,167.651916503906,-33.167049407959,-33.16064453125,183.859512329102,-24.5878086090088,0.329793006181717,188.862991333008,-23.8683376312256,19.4938144683838,187.264846801758,-19.2369842529297,39.0000267028809,187.867904663086,-20.2319812774658,32.442081451416,104.692756652832,-22.8973426818848,-63.2919006347656,\r\n87.3972625732422,-28.0122451782227,-65.0658721923828,83.060432434082,-32.3523712158203,-65.5462188720703,66.3751983642578,-31.2387619018555,-67.2728881835938,141.003311157227,-1.09116697311401,122.354995727539,-132.124450683594,76.3902816772461,-14.1959867477417,-127.436996459961,80.6476058959961,-10.0252780914307,-111.630447387695,100.045806884766,7.87772607803345,-105.913879394531,100.940887451172,19.2902946472168,-104.993797302246,101.004898071289,28.7600212097168,-121.231384277344,86.8271102905273,-3.16754698753357,-119.685234069824,102.812080383301,1.14153599739075,-145.623779296875,39.9222145080566,-23.3367824554443,-146.386856079102,45.6252708435059,-23.0697555541992,-138.48307800293,67.8163452148438,-18.3863983154297,181.50227355957,-20.4612045288086,83.809814453125,182.289352416992,-19.3730983734131,79.0630493164063,166.093765258789,-9.16385841369629,100.998901367188,167.621917724609,-17.4423084259033,104.515243530273,158.80305480957,-12.2368993759155,111.833961486816,117.361991882324,-18.2690906524658,-54.83056640625,110.697341918945,-21.1803760528564,-60.7296485900879,145.571746826172,-39.0554275512695,-52.0895004272461,136.928909301758,-38.5402755737305,-58.209300994873,180.294158935547,-33.3070602416992,-15.4606113433838,177.360885620117,-37.4403686523438,-21.9723491668701,185.157638549805,-33.2588577270508,-5.47401285171509,172.488388061523,-36.0857353210449,-28.4246807098389,162.857452392578,-34.4276733398438,-37.832103729248,188.462966918945,-28.2576694488525,7.32453203201294,190.340148925781,-28.8158226013184,16.2459964752197,184.78059387207,-18.8407459259033,62.0051803588867,190.710174560547,-29.0343456268311,51.2653274536133,192.781387329102,-32.2775611877441,26.400089263916,74.496696472168,-28.6421051025391,-63.9931640625,92.6803741455078,-30.7269115447998,-67.2819900512695,86.5497817993164,-31.9197273254395,-66.3288955688477,102.494537353516,-26.0539512634277,-65.5661239624023,79.5901947021484,-32.6679000854492,-65.2385864257813,74.7979278564453,-32.1891555786133,-65.4765090942383,128.508087158203,-1.27714502811432,127.044456481934,\r\n146.479843139648,-4.57650804519653,120.694831848145,135.904800415039,-4.69397020339966,126.80443572998,-110.556335449219,105.181304931641,7.60153913497925,-108.186111450195,104.761268615723,10.633846282959,-105.32682800293,105.20930480957,14.8757619857788,-104.282722473145,105.928375244141,28.8323287963867,-103.803672790527,105.672355651855,23.7990341186523,-121.445404052734,95.2736358642578,-1.60247302055359,-113.839660644531,104.300224304199,4.96138000488281,-118.750137329102,109.357719421387,1.80321002006531,-149.595153808594,34.2484550476074,-23.3885898590088,-149.921188354492,55.4506378173828,-22.5951099395752,-148.118026733398,67.511116027832,-21.2253761291504,-143.776596069336,71.7138290405273,-19.4420013427734,-136.565887451172,78.9950408935547,-15.9167556762695,182.419372558594,-31.7765121459961,90.8968048095703,175.942733764648,-22.7110252380371,97.1786270141602,158.04997253418,-16.5203189849854,115.471321105957,122.798522949219,-25.8216304779053,-59.6237411499023,124.681709289551,-30.2670650482178,-61.6254348754883,157.074890136719,-41.6166763305664,-43.1382217407227,132.773498535156,-37.1184387207031,-60.2124977111816,183.506469726563,-34.9721260070801,-9.97524356842041,189.602066040039,-33.8955230712891,4.64439916610718,167.335891723633,-37.8140029907227,-34.3169593811035,189.759094238281,-29.8756275177002,10.1068935394287,191.041213989258,-29.528694152832,21.6034202575684,186.93782043457,-21.530309677124,53.1167106628418,191.797286987305,-29.2954711914063,32.9266319274902,192.825393676758,-32.0337409973145,39.2359504699707,110.503318786621,-23.1069641113281,-62.6782379150391,98.52734375,-29.9594345092773,-67.6049194335938,85.9248199462891,-36.6745948791504,-68.2817840576172,81.0403366088867,-36.3655624389648,-67.9318542480469,110.60033416748,-26.6764144897461,-65.0715713500977,71.194465637207,-35.3393630981445,-68.94775390625,150.086196899414,-8.96232795715332,119.880752563477,142.167419433594,-4.83250284194946,124.210174560547,-132.429489135742,82.1196517944336,-13.3902082443237,-104.068702697754,105.38932800293,19.3594017028809,\r\n-124.043655395508,89.2122421264648,-5.81027603149414,-115.460823059082,109.464729309082,2.83217096328735,-122.3544921875,109.749755859375,0.666996002197266,-123.539611816406,99.9270858764648,-1.99707198143005,-153.11750793457,34.706600189209,-23.3433837890625,-149.903198242188,46.8489875793457,-23.3638877868652,-145.921813964844,76.5800094604492,-19.0920677185059,185.648696899414,-28.7277145385742,78.4069900512695,180.117141723633,-32.7692108154297,96.1704254150391,184.890609741211,-30.4723854064941,83.2886657714844,173.397491455078,-24.3121814727783,101.535949707031,186.112731933594,-27.7307186126709,74.4744033813477,165.716735839844,-22.8312377929688,110.940872192383,115.633827209473,-24.5815086364746,-62.0904808044434,124.473693847656,-34.7451057434082,-63.6575317382813,158.140991210938,-46.851993560791,-44.0769157409668,141.534362792969,-41.0251197814941,-56.5021324157715,135.443756103516,-44.6509742736816,-61.2620010375977,129.429183959961,-37.6623916625977,-62.0358772277832,182.297348022461,-40.1052284240723,-14.5353212356567,177.646896362305,-43.2752418518066,-22.7753276824951,186.55778503418,-37.7712020874023,-5.76791191101074,172.632415771484,-43.0066146850586,-29.0946483612061,161.928359985352,-44.4152526855469,-39.8065986633301,192.502365112305,-40.3532562255859,9.98046207427979,192.58935546875,-36.0567321777344,16.1137828826904,188.067916870117,-27.972240447998,63.7088432312012,191.986297607422,-38.1200332641602,66.9969635009766,193.271438598633,-36.1879463195801,53.6292610168457,194.90559387207,-38.1074333190918,25.0743598937988,194.252532958984,-38.7501945495605,19.1707820892334,97.2562255859375,-32.618896484375,-68.2938842773438,89.6410751342773,-36.2288513183594,-68.2814865112305,146.08381652832,-8.66705894470215,123.19807434082,139.172134399414,-8.97723007202148,127.294479370117,-127.986045837402,85.0089340209961,-9.95078086853027,-106.872978210449,108.939674377441,7.55721378326416,-112.228500366211,109.300712585449,4.22049713134766,-104.535751342773,108.612640380859,10.1945018768311,-100.901390075684,109.110687255859,16.3017024993896,\r\n-101.599464416504,110.761856079102,28.574104309082,-99.1108169555664,111.248901367188,22.0017585754395,-125.939849853516,93.4114532470703,-6.82377481460571,-122.761535644531,116.13338470459,-0.0916000008583069,-122.727531433105,104.484237670898,-0.147756993770599,-117.06697845459,114.091178894043,1.05493700504303,-152.335433959961,32.4511299133301,-23.5818061828613,-153.11750793457,61.7571487426758,-22.8786373138428,-155.222717285156,56.2313117980957,-23.2612762451172,-149.144119262695,81.3629760742188,-19.3096885681152,-136.307861328125,84.7431030273438,-15.1746826171875,184.258560180664,-43.6445770263672,96.0408172607422,185.223648071289,-35.3095588684082,87.4862823486328,175.78971862793,-30.0416431427002,101.719970703125,168.354995727539,-29.8989295959473,112.455017089844,153.772567749023,-17.0074672698975,119.887756347656,159.00407409668,-21.8756446838379,117.864555358887,115.912857055664,-28.293872833252,-64.7587432861328,117.483009338379,-31.639799118042,-65.6760330200195,149.917175292969,-49.3339347839355,-53.8988761901855,138.010025024414,-43.2642364501953,-59.7362518310547,146.785873413086,-44.0298156738281,-53.7666625976563,186.20573425293,-46.6499710083008,-11.757848739624,189.542068481445,-37.8788108825684,1.39560997486115,167.817932128906,-45.6531753540039,-34.7885055541992,164.418594360352,-45.6059684753418,-37.9416160583496,195.591674804688,-39.3725547790527,30.4829902648926,194.445541381836,-36.4761734008789,39.594783782959,103.185600280762,-35.6697959899902,-68.2468872070313,93.4328536987305,-35.5257835388184,-68.5005111694336,108.745155334473,-32.0612411499023,-67.1384735107422,83.5096817016602,-39.5409774780273,-71.2771835327148,88.7030868530273,-39.9079093933105,-70.5921173095703,79.3705673217773,-38.9746170043945,-71.6819229125977,-131.372375488281,87.5857849121094,-12.4918203353882,-109.510238647461,109.555732727051,5.51247406005859,-101.890495300293,109.013679504395,13.3338098526001,-100.650367736816,110.58683013916,25.5020027160645,-127.782028198242,90.1042251586914,-9.55544281005859,-113.346611022949,114.321197509766,1.10172200202942,\r\n-124.908241271973,115.078277587891,-0.218813002109528,-125.937843322754,109.225700378418,-0.326956003904343,-129.800216674805,95.7760848999023,-8.91777038574219,-126.018859863281,104.558242797852,-1.43683695793152,-154.751159667969,32.0973472595215,-23.4738464355469,-154.102600097656,67.4719161987305,-22.4391956329346,-156.645355224609,37.8645629882813,-23.5787563323975,-157.456939697266,78.9325332641602,-21.3250865936279,190.194137573242,-40.969612121582,81.2827682495117,178.956039428711,-42.8980026245117,105.561347961426,164.473617553711,-30.3906764984131,117.698539733887,121.448394775391,-37.7606010437012,-65.9367599487305,163.689544677734,-49.4593467712402,-40.5402679443359,153.661544799805,-51.120906829834,-51.7051620483398,144.140609741211,-46.7989845275879,-57.1378974914551,138.527069091797,-52.2258186340332,-62.1496887207031,125.952842712402,-48.1036148071289,-65.6981353759766,178.934036254883,-46.9551010131836,-22.2772808074951,173.08544921875,-47.3561401367188,-29.4915866851807,192.408340454102,-44.4252510070801,5.46642923355103,195.616668701172,-47.2325286865234,12.8986682891846,194.571563720703,-44.0478134155273,64.2585983276367,195.286636352539,-41.9476127624512,51.9343910217285,196.986801147461,-45.0431137084961,23.6095180511475,97.1843185424805,-35.9826240539551,-68.6717224121094,91.9032974243164,-40.0890274047852,-70.3332824707031,113.127578735352,-31.7638130187988,-66.8408432006836,71.1492691040039,-38.1696434020996,-73.0604553222656,148.650054931641,-17.2363872528076,123.505104064941,142.386444091797,-12.8330583572388,126.43839263916,-106.239921569824,112.151992797852,3.97998404502869,-101.559455871582,111.799957275391,6.14384603500366,-110.017288208008,113.114082336426,2.13335299491882,-99.2418365478516,111.506927490234,8.76698303222656,-96.5920715332031,111.469924926758,16.3059024810791,-96.2882461547852,112.048980712891,19.0468692779541,-97.3798522949219,115.662338256836,28.2057666778564,-95.8391952514648,115.153785705566,23.7637825012207,-119.868255615234,118.300590515137,-0.368707001209259,-124.704727172852,111.88646697998,0.160484999418259,\r\n-126.476898193359,122.563011169434,-0.691730976104736,-115.736839294434,118.779640197754,-1.04045796394348,-126.843933105469,101.664962768555,-3.30054998397827,-160.496231079102,63.4433174133301,-23.6768169403076,-155.485748291016,90.7587966918945,-19.8049354553223,-149.694183349609,93.8547897338867,-17.9029502868652,-135.092742919922,89.9559097290039,-13.8134498596191,193.181427001953,-44.4536552429199,74.8157348632813,179.647094726563,-47.3097343444824,107.098503112793,189.936096191406,-44.7881851196289,85.6684951782227,174.220565795898,-37.4686737060547,108.94367980957,167.171875,-34.4657745361328,116.893455505371,155.831756591797,-21.5809154510498,120.457809448242,166.498809814453,-43.6883811950684,123.90714263916,120.164268493652,-44.9462051391602,-67.5033111572266,116.289894104004,-36.2763557434082,-67.2890853881836,149.060104370117,-53.4702415466309,-56.3638191223145,134.819702148438,-52.7370681762695,-64.1113739013672,181.426284790039,-50.2197227478027,-21.2461795806885,189.409057617188,-49.5631561279297,-5.6032657623291,191.467254638672,-46.6074676513672,1.0417959690094,167.714935302734,-48.7477760314941,-36.0066261291504,196.288726806641,-42.1559295654297,36.6826972961426,198.291931152344,-48.5770606994629,28.8875350952148,100.601348876953,-41.363956451416,-69.6886215209961,108.44312286377,-40.1947364807129,-68.5689163208008,95.9381942749023,-40.2900466918945,-70.0198516845703,111.822448730469,-41.4922676086426,-68.7360305786133,88.0885238647461,-42.3940544128418,-73.8491363525391,78.1201477050781,-40.0962295532227,-74.1733703613281,-133.060546875,92.8533020019531,-12.0173740386963,-91.7761001586914,115.599327087402,4.6647310256958,-92.443962097168,113.875160217285,13.8854637145996,-94.0906295776367,114.89225769043,21.7612361907959,-99.2601318359375,115.741348266602,30.9464359283447,-96.6089706420898,114.822746276855,25.5139045715332,-105.915878295898,118.848640441895,-2.73502397537231,-122.762535095215,123.66911315918,-1.27370095252991,-125.981597900391,114.550727844238,-0.282418996095657,-131.606399536133,109.688751220703,-1.57340002059937,\r\n-127.054954528809,114.023170471191,-0.346024990081787,-108.236106872559,121.568908691406,-4.14546203613281,-134.751708984375,98.8464889526367,-9.52109909057617,-133.2265625,107.485534667969,-2.65061593055725,-159.154113769531,73.3389892578125,-22.1128635406494,-152.357437133789,94.9765090942383,-18.6297206878662,-161.085296630859,90.6899871826172,-20.4487991333008,-142.39045715332,90.7584991455078,-16.0664691925049,192.101318359375,-45.9764060974121,81.1455535888672,177.66389465332,-50.0640068054199,111.616943359375,188.969009399414,-51.055305480957,91.3207550048828,157.899978637695,-28.6828117370605,122.757034301758,163.154479980469,-37.6913909912109,123.715126037598,160.917266845703,-55.0321922302246,-48.2048187255859,157.370910644531,-57.1327018737793,-52.674259185791,143.427551269531,-52.802074432373,-59.66064453125,135.947830200195,-60.3787155151367,-67.0635681152344,123.396583557129,-53.970386505127,-68.8591384887695,119.430198669434,-47.9460983276367,-68.4612045288086,173.241470336914,-50.9516944885254,-31.0454387664795,184.851608276367,-49.8952903747559,-16.0687713623047,187.297836303711,-51.3197288513184,-12.9147615432739,194.341552734375,-55.1966094970703,0.837085008621216,168.541015625,-52.1640129089355,-37.5733757019043,196.74577331543,-59.0465850830078,4.05990123748779,199.556045532227,-56.432430267334,21.7888374328613,196.791778564453,-48.4256439208984,54.2691230773926,194.511566162109,-50.3535346984863,77.0004501342773,198.014892578125,-50.4028396606445,43.8928031921387,199.564056396484,-53.6300582885742,27.9109382629395,92.5606689453125,-43.4069519042969,-73.5018005371094,149.799179077148,-21.7174282073975,124.645217895508,-101.250427246094,114.846252441406,1.47243797779083,-93.2512435913086,116.249389648438,1.54223501682281,-89.7481002807617,116.008369445801,7.7868070602417,-91.9605178833008,115.169281005859,18.8182487487793,-96.8738784790039,116.889205932617,28.7194423675537,-94.9737091064453,117.360496520996,26.8657855987549,-92.5675735473633,119.058662414551,25.5258045196533,-119.109176635742,123.466102600098,-2.02152395248413,\r\n-111.871467590332,123.374092102051,-4.02662086486816,-137.34797668457,104.857276916504,-5.94668912887573,-166.113784790039,72.3048858642578,-22.4735984802246,-162.445434570313,84.3885726928711,-21.3850917816162,-156.18782043457,95.458854675293,-19.7556324005127,-149.079116821289,99.2482299804688,-17.6053218841553,-145.010711669922,96.3633422851563,-15.7202367782593,-140.852310180664,94.4631576538086,-14.237491607666,179.892120361328,-53.8980827331543,109.802764892578,183.428466796875,-54.0300941467285,102.913093566895,192.38835144043,-50.5059471130371,83.8121185302734,172.397399902344,-42.4495582580566,113.885162353516,170.853240966797,-49.2543258666992,121.497909545898,164.724624633789,-45.0948181152344,126.690414428711,115.259788513184,-44.1006202697754,-68.6719284057617,165.852752685547,-53.8185768127441,-42.1808280944824,148.50505065918,-58.3103141784668,-58.4400215148926,126.754913330078,-59.4160194396973,-69.7686309814453,183.364456176758,-56.7630615234375,-24.3742847442627,175.525695800781,-61.8692626953125,-36.7340965270996,191.40625,-59.5965385437012,-8.89409828186035,198.036895751953,-58.0342864990234,12.284107208252,195.740676879883,-52.509147644043,72.2868804931641,199.990097045898,-58.3185157775879,38.6619911193848,99.926383972168,-44.6160697937012,-71.5478057861328,104.86376953125,-45.9397010803223,-71.1958694458008,112.834548950195,-47.6126670837402,-70.5402069091797,95.5563583374023,-44.8139915466309,-73.7092208862305,82.2815551757813,-44.4856605529785,-79.9028244018555,143.095504760742,-17.0536708831787,127.3134765625,-104.254722595215,115.575325012207,0.284830003976822,-96.2898406982422,116.476409912109,0.0173349995166063,-83.9676284790039,120.034767150879,1.0041309595108,-83.5086898803711,121.34789276123,-2.59480094909668,-86.557487487793,117.860549926758,9.07271289825439,-91.2443466186523,115.05827331543,16.8673553466797,-88.8746185302734,120.292785644531,23.124870300293,-95.2555923461914,118.070068359375,28.0583534240723,-96.3678970336914,118.116073608398,29.233118057251,-140.517272949219,98.1847229003906,-12.2119932174683,\r\n-102.665565490723,124.249176025391,-6.25391912460327,-131.682403564453,119.343696594238,-0.708841025829315,-136.881927490234,109.141693115234,-3.87482595443726,-111.014381408691,128.274566650391,-5.98501300811768,-137.203948974609,101.066902160645,-8.77442646026611,-152.438430786133,99.3719329833984,-19.1384716033936,-163.767547607422,94.1735305786133,-20.4141979217529,-165.920761108398,90.6638793945313,-20.4565010070801,175.237670898438,-51.7253684997559,116.235397338867,189.143020629883,-57.2846145629883,93.3678512573242,167.408905029297,-53.3433265686035,127.904541015625,157.762954711914,-32.267261505127,125.13826751709,157.802963256836,-37.1848411560059,128.53059387207,168.373992919922,-62.8488616943359,-46.1596221923828,168.377990722656,-59.1859970092773,-43.6935768127441,157.277908325195,-61.4010162353516,-54.5284423828125,141.293334960938,-63.0108757019043,-65.0672760009766,128.07405090332,-66.190788269043,-71.9067459106445,121.163368225098,-58.6410446166992,-72.0230560302734,116.894943237305,-53.6472549438477,-71.6467132568359,188.105926513672,-59.8756675720215,-19.6819248199463,185.975723266602,-59.5556373596191,-23.261474609375,195.959701538086,-62.0495796203613,-0.226374998688698,197.516845703125,-64.1970977783203,3.03748106956482,200.573150634766,-59.5017318725586,28.4707946777344,198.032897949219,-54.4198341369629,53.998893737793,195.030609130859,-54.662956237793,77.9571380615234,90.229736328125,-47.8568878173828,-80.8107147216797,148.388031005859,-23.1530704498291,126.972450256348,-101.763473510742,118.894653320313,-2.88360905647278,-98.5109558105469,117.974555969238,-2.02454495429993,-92.7369918823242,120.308784484863,-4.13352108001709,-83.2798690795898,119.898750305176,4.61548614501953,-87.5530853271484,120.981857299805,-4.21654987335205,-82.4323883056641,120.759834289551,12.6959476470947,-83.9732360839844,120.395797729492,15.7381458282471,-85.8204116821289,120.636817932129,19.543119430542,-93.1313323974609,120.477806091309,27.9109382629395,-105.820877075195,128.566604614258,-7.48908996582031,-116.383911132813,128.261566162109,-4.12002992630005,\r\n-130.505798339844,123.807632446289,-0.27334600687027,-135.699798583984,118.051567077637,-1.56112897396088,-140.766296386719,102.709060668945,-9.87082290649414,-139.877212524414,106.624450683594,-7.06816911697388,-167.847946166992,83.6030960083008,-21.3669910430908,-154.634658813477,100.830879211426,-21.1170654296875,-158.847076416016,97.7516784667969,-20.7715320587158,-150.765289306641,103.179107666016,-19.9458503723145,-145.912811279297,99.8073806762695,-15.7035350799561,193.104415893555,-54.8699798583984,83.8398208618164,174.67561340332,-55.7748680114746,119.346702575684,185.503677368164,-64.3330993652344,101.668968200684,162.455413818359,-50.3356323242188,131.782913208008,163.004455566406,-64.4190063476563,-51.2147178649902,151.399337768555,-66.2581939697266,-58.9309730529785,148.524047851563,-65.0517807006836,-60.4394187927246,136.149841308594,-66.9221572875977,-68.9996566772461,123.26057434082,-70.2418823242188,-75.3628845214844,120.58031463623,-66.5110168457031,-75.5934066772461,180.569183349609,-62.795051574707,-31.326265335083,189.200042724609,-64.2975006103516,-19.8471412658691,192.808395385742,-64.4444198608398,-8.32704162597656,200.388122558594,-63.0827827453613,20.7672386169434,198.264923095703,-58.0560874938965,57.0543975830078,196.831787109375,-62.4262161254883,74.2191772460938,200.066101074219,-61.2859039306641,43.6177787780762,102.087493896484,-48.5814590454102,-73.8078308105469,98.0015029907227,-47.9892044067383,-75.5348968505859,108.706146240234,-52.5355453491211,-73.526496887207,92.2813339233398,-50.5776557922363,-82.8524169921875,75.975944519043,-45.0212135314941,-84.3192596435547,77.9791412353516,-46.7364807128906,-85.6067886352539,143.672576904297,-21.5689125061035,129.640701293945,-95.1963348388672,122.510009765625,-6.18832302093506,-76.210075378418,124.803230285645,-4.28124618530273,-73.7245330810547,125.272277832031,-1.82486498355865,-80.5068969726563,126.475387573242,-9.23493099212646,-80.7788162231445,121.314888000488,8.41695880889893,-99.4753570556641,122.398994445801,-5.67503213882446,\r\n-100.624359130859,132.399963378906,-10.4396200180054,-133.991638183594,122.96704864502,0.0823109969496727,-129.329177856445,128.271575927734,0.162149995565414,-139.497177124023,114.702239990234,-4.93059921264648,-108.580146789551,133.161041259766,-8.31595134735107,-162.436431884766,97.7854843139648,-21.5481071472168,-148.105026245117,104.081199645996,-17.8795471191406,-143.507568359375,100.582855224609,-13.4217109680176,179.953125,-60.3052101135254,112.111991882324,190.480163574219,-66.8732528686523,92.9335098266602,175.106658935547,-59.5873413085938,119.908752441406,152.969482421875,-29.7535152435303,128.108551025391,163.888549804688,-58.3869209289551,133.688110351563,152.757461547852,-34.8257141113281,132.323959350586,169.185073852539,-67.4295043945313,-47.6700706481934,157.425918579102,-66.1546859741211,-55.8364677429199,141.200332641602,-67.7133407592773,-66.3566970825195,131.318359375,-75.0849533081055,-72.6457138061523,126.826919555664,-74.998046875,-74.7307205200195,112.327507019043,-69.1050720214844,-81.7126083374023,114.385704040527,-60.7554550170898,-76.4693908691406,113.499618530273,-53.9409866333008,-73.0260543823242,187.066833496094,-63.8275566101074,-23.8352336883545,173.039459228516,-66.2395935058594,-42.8955001831055,193.186416625977,-69.3768997192383,-9.57495498657227,196.589752197266,-70.863639831543,-2.14706707000732,200.926193237305,-69.962158203125,25.313383102417,200.154113769531,-68.0731658935547,16.9150619506836,198.381927490234,-70.4910049438477,72.6353225708008,194.28352355957,-65.3237991333008,83.5976943969727,195.609664916992,-63.5504264831543,79.18896484375,82.5708923339844,-49.4839477539063,-86.528076171875,148.309036254883,-30.0361423492432,133.246063232422,-90.1729431152344,123.562110900879,-7.3318247795105,-76.6172103881836,126.308372497559,-7.60161113739014,-69.0570755004883,127.364479064941,-0.154798999428749,-86.26416015625,124.137161254883,-7.70667219161987,-71.455810546875,126.170364379883,5.07571077346802,-78.23876953125,125.355285644531,15.7959518432617,-76.1648635864258,125.423294067383,12.940972328186,\r\n-80.5230941772461,125.139259338379,18.2632923126221,-96.8095855712891,126.10636138916,-8.32459163665771,-103.592658996582,137.221435546875,-11.5901317596436,-140.165252685547,117.585517883301,-4.46498394012451,-138.558074951172,122.951049804688,-0.359441012144089,-143.626586914063,104.993293762207,-12.3849096298218,-142.373458862305,114.163185119629,-8.19533920288086,-152.039398193359,104.631256103516,-22.7771282196045,-167.879959106445,96.8456420898438,-21.2174243927002,-166.227798461914,98.4122467041016,-22.1702690124512,-149.512161254883,106.81746673584,-21.3360862731934,-145.982803344727,104.39323425293,-15.3958053588867,182.198348999023,-67.4831161499023,109.601745605469,187.448852539063,-71.8805389404297,100.382835388184,167.610916137695,-62.6294364929199,130.931823730469,160.010177612305,-58.6573486328125,137.324447631836,151.827377319336,-42.3662490844727,136.964416503906,167.464904785156,-70.9752578735352,-49.9897956848145,157.636947631836,-69.9415512084961,-56.484432220459,147.786987304688,-74.0104522705078,-62.3399047851563,136.487869262695,-76.3525848388672,-70.1261672973633,115.748840332031,-77.3846817016602,-82.2133560180664,181.748306274414,-67.0174713134766,-31.897123336792,174.420593261719,-70.720329284668,-43.3599472045898,190.070114135742,-68.8128433227539,-18.8502426147461,188.968017578125,-70.0889663696289,-21.8778400421143,198.13591003418,-68.4142074584961,3.76507306098938,201.586242675781,-71.9050521850586,33.1446495056152,200.63916015625,-77.7087173461914,20.9047527313232,199.282012939453,-66.2022857666016,56.3624267578125,197.881881713867,-73.7341232299805,77.5843124389648,100.054298400879,-52.560848236084,-78.2932739257813,103.408622741699,-52.6474571228027,-75.9573440551758,97.9815902709961,-57.002082824707,-85.0663375854492,82.0537338256836,-52.4022331237793,-89.6398773193359,77.2787704467773,-50.7204704284668,-90.8254013061523,145.000701904297,-25.4469947814941,131.941940307617,-89.9666213989258,130.009735107422,-12.1762895584106,-66.3348083496094,130.133758544922,-7.30088186264038,-61.6010398864746,131.834930419922,-5.02097797393799,\r\n-80.4572830200195,131.524887084961,-14.3983068466187,-74.6299209594727,129.634704589844,-11.5985317230225,-73.7466278076172,125.863334655762,9.77121162414551,-99.4337463378906,137.607482910156,-13.395209312439,-94.2722473144531,130.664794921875,-11.4064140319824,-133.705612182617,127.757522583008,1.27139794826508,-139.935211181641,130.721801757813,3.5083270072937,-147.441940307617,109.221702575684,-18.1792774200439,179.64909362793,-67.9707641601563,113.962173461914,191.543762207031,-72.0149078369141,92.8634033203125,171.032257080078,-64.390510559082,126.698417663574,162.222381591797,-64.1124877929688,137.281448364258,149.349136352539,-34.8858184814453,135.371276855469,172.072357177734,-75.6332092285156,-47.2977294921875,150.741271972656,-74.1219635009766,-60.399715423584,130.303253173828,-79.7533111572266,-74.5811080932617,123.540603637695,-81.7402114868164,-79.1848526000977,110.145286560059,-64.1312866210938,-80.7066116333008,106.641944885254,-73.1743698120117,-87.1321334838867,183.789505004883,-70.9382476806641,-30.4266777038574,185.279647827148,-72.2280807495117,-28.4447822570801,193.008407592773,-73.9296493530273,-11.2508983612061,197.352828979492,-73.2636795043945,0.359342992305756,201.046203613281,-75.5965118408203,42.7966957092285,201.864273071289,-78.1523590087891,30.0867519378662,198.90998840332,-72.6483154296875,8.59376621246338,200.058090209961,-75.7522201538086,59.4919319152832,200.425140380859,-73.4869003295898,50.0386047363281,200.261123657227,-87.17724609375,70.0084609985352,108.448120117188,-56.307014465332,-75.8612289428711,92.2366333007813,-54.6194534301758,-86.6866912841797,142.072418212891,-28.4556884765625,135.791320800781,-84.7833099365234,131.002838134766,-13.708438873291,-67.479118347168,130.666809082031,-9.72698879241943,-74.119270324707,134.34716796875,-16.8565483093262,-68.4423141479492,133.119049072266,-14.149582862854,-132.496490478516,133.087051391602,2.32090091705322,-141.462371826172,120.890846252441,-3.47163701057434,-143.939605712891,119.405700683594,-7.79588985443115,-143.779602050781,131.059844970703,2.78528690338135,\r\n-143.994613647461,113.727149963379,-10.8467588424683,-145.367752075195,111.961967468262,-13.7937479019165,184.604583740234,-77.4775924682617,108.09659576416,192.607360839844,-77.1565628051758,92.7932968139648,167.265884399414,-68.1814804077148,132.230972290039,157.366912841797,-60.7131462097168,140.170745849609,147.756973266602,-50.6878662109375,143.273056030273,146.46484375,-44.741081237793,141.576889038086,167.762939453125,-80.1667556762695,-51.5835494995117,164.286605834961,-74.9176406860352,-52.8786773681641,156.793853759766,-74.7521209716797,-57.2857093811035,150.940292358398,-78.5404968261719,-60.3243103027344,144.436645507813,-81.0496444702148,-64.7882461547852,135.6337890625,-81.4537811279297,-71.6600189208984,113.593627929688,-81.7028045654297,-84.503173828125,105.936882019043,-67.9477615356445,-85.7364959716797,176.763824462891,-74.6934127807617,-41.6594772338867,186.909805297852,-76.4426956176758,-25.7447204589844,195.777679443359,-78.219367980957,-4.18566703796387,197.040802001953,-76.5414962768555,0.31114798784256,202.309326171875,-85.1444473266602,38.1767463684082,202.710357666016,-89.1570358276367,35.6244926452637,200.612152099609,-82.2112579345703,19.679931640625,199.365036010742,-76.9515380859375,13.6489410400391,195.461654663086,-75.8733367919922,85.4886779785156,198.840972900391,-87.8833160400391,77.5130004882813,105.622848510742,-58.3247146606445,-79.1174468994141,94.487060546875,-58.6292457580566,-88.681884765625,86.4347610473633,-56.9090766906738,-91.1144256591797,79.6197967529297,-54.4519386291504,-92.7295837402344,146.233825683594,-35.5035781860352,137.470474243164,-91.3081512451172,138.305557250977,-16.8048439025879,-82.7198104858398,140.951812744141,-20.6683216094971,-52.2166213989258,137.370452880859,-11.2297964096069,-73.6889266967773,140.877807617188,-22.3947925567627,-69.1726837158203,136.088333129883,-18.0730686187744,-136.861907958984,131.831924438477,3.48956608772278,-142.624481201172,126.103363037109,0.0180430002510548,-143.304550170898,135.159240722656,5.80343198776245,-146.283843994141,115.346298217773,-16.1379776000977,\r\n174.268569946289,-70.1871795654297,121.92594909668,189.207046508789,-79.2725677490234,99.2991333007813,178.550994873047,-74.0394592285156,116.150382995605,169.128067016602,-70.3588943481445,129.728729248047,153.709564208984,-55.1312026977539,140.537780761719,160.035171508789,-67.1675872802734,140.119735717773,161.895355224609,-70.016357421875,138.785614013672,168.319976806641,-84.0148315429688,-51.4522399902344,147.957000732422,-83.0778427124023,-62.2895011901855,142.318435668945,-84.186149597168,-66.7128372192383,129.504180908203,-83.4481811523438,-76.2164688110352,128.15104675293,-87.2623519897461,-77.6556015014648,106.406921386719,-63.5029220581055,-82.8085174560547,109.023178100586,-80.0172424316406,-87.1430358886719,101.190414428711,-70.5087127685547,-90.5976791381836,182.416366577148,-78.7681198120117,-34.2958564758301,193.975494384766,-78.1865615844727,-8.9697847366333,188.079925537109,-80.2310562133789,-22.9300422668457,202.543334960938,-90.3562545776367,28.2959766387939,202.058288574219,-93.8652038574219,20.9002513885498,202.047286987305,-95.7766876220703,58.9742813110352,197.428833007813,-78.4985885620117,80.8334197998047,201.230209350586,-96.8003845214844,70.5160140991211,99.4163360595703,-60.8483619689941,-86.9578170776367,140.301254272461,-30.7244091033936,137.95751953125,-53.1741180419922,137.810501098633,-14.0507726669312,-62.5983390808105,134.809219360352,-14.4384107589722,-69.412109375,139.886703491211,-21.9270458221436,-63.8446617126465,138.278549194336,-19.6156196594238,-139.635177612305,135.062225341797,5.64060592651367,-136.17985534668,136.280349731445,5.06961107254028,-144.258636474609,123.738121032715,-3.55910491943359,-145.701782226563,119.397705078125,-12.5771293640137,-146.70588684082,133.68310546875,3.18254590034485,-146.279846191406,129.857727050781,-0.227078005671501,175.228668212891,-76.2012710571289,120.453804016113,186.209732055664,-83.4713821411133,105.970390319824,183.942520141602,-87.2978515625,110.317817687988,193.173416137695,-84.5517883300781,93.0731201171875,194.613555908203,-85.2261505126953,90.0580291748047,\r\n164.590637207031,-72.8905410766602,135.678298950195,152.206405639648,-59.7714538574219,142.837005615234,155.868774414063,-63.8569564819336,141.86491394043,142.948501586914,-49.9159889221191,146.024307250977,147.955993652344,-55.5288391113281,144.644165039063,175.368682861328,-79.4834899902344,-44.2657318115234,163.940551757813,-81.6148986816406,-54.2002067565918,160.848251342773,-79.0936508178711,-55.3422203063965,152.338424682617,-86.8090057373047,-58.9572715759277,148.309036254883,-89.8684005737305,-61.8063545227051,145.152725219727,-87.5616836547852,-64.7440414428711,134.48567199707,-87.9896240234375,-73.8638381958008,137.851013183594,-87.4294662475586,-71.2433776855469,116.945953369141,-86.722297668457,-83.2652587890625,100.092308044434,-65.3976058959961,-89.1669311523438,107.120994567871,-86.5526809692383,-88.1196365356445,104.241706848145,-76.7434234619141,-89.300048828125,183.673492431641,-83.2098541259766,-31.9562282562256,195.734680175781,-87.1504364013672,0.548991978168488,192.870391845703,-84.1636505126953,-10.4669218063354,203.291412353516,-99.8398818969727,40.6371879577637,201.091201782227,-88.2284469604492,18.58762550354,198.629959106445,-81.6082992553711,12.0986890792847,202.678359985352,-96.9727096557617,49.0289115905762,201.909271240234,-97.8385925292969,66.4034118652344,200.235107421875,-98.9845962524414,75.0437622070313,94.2386245727539,-62.8948631286621,-91.3264465332031,81.4243774414063,-59.8992691040039,-95.1194229125977,-75.4502944946289,145.059219360352,-24.8170280456543,-43.4918670654297,142.510955810547,-17.7643375396729,-65.6519393920898,146.74137878418,-27.5587978363037,-64.3430099487305,142.271942138672,-23.9009380340576,-146.122833251953,124.519203186035,-7.26920890808105,-146.2568359375,123.606117248535,-10.3634119033813,-146.816879272461,137.370452880859,7.42428112030029,-139.398162841797,139.011627197266,7.981125831604,167.507904052734,-80.5315856933594,130.433776855469,186.560775756836,-94.041618347168,105.270317077637,179.002029418945,-85.6114959716797,116.854454040527,189.757080078125,-91.2362442016602,99.1982269287109,\r\n159.179092407227,-73.2414779663086,141.011825561523,157.194900512695,-68.3850021362305,141.96891784668,141.359344482422,-44.4358024597168,144.050628662109,162.200393676758,-76.9979476928711,138.007537841797,139.77018737793,-38.9556198120117,142.076934814453,164.289596557617,-88.2062454223633,-54.1702041625977,175.371688842773,-84.4847793579102,-44.3453407287598,138.685089111328,-92.9151000976563,-71.3756942749023,120.398292541504,-96.7595825195313,-81.52978515625,101.27042388916,-78.8545303344727,-91.0428161621094,97.1127090454102,-67.607421875,-92.0254135131836,180.259155273438,-83.2726669311523,-37.3975639343262,186.717803955078,-87.282356262207,-23.6951198577881,195.328643798828,-89.9054107666016,-0.963375985622406,196.966796875,-82.2434539794922,4.52731704711914,203.036376953125,-107.579544067383,31.074348449707,202.400329589844,-107.116500854492,24.1269683837891,200.855163574219,-96.5459594726563,14.1551914215088,202.821365356445,-107.395523071289,56.1150054931641,203.446426391602,-109.319709777832,47.389347076416,196.831787109375,-97.2683258056641,84.1504516601563,198.801971435547,-100.728874206543,79.5533981323242,201.258209228516,-102.679061889648,71.3883972167969,86.8228988647461,-61.8310585021973,-93.5128555297852,-69.6136245727539,148.422546386719,-28.1711578369141,-53.2048187255859,139.328659057617,-17.2262840270996,-57.2957191467285,140.023712158203,-20.0685634613037,-59.7358627319336,143.327041625977,-24.5070972442627,-146.296844482422,126.644416809082,-4.01469898223877,-149.905197143555,137.84049987793,6.81182098388672,-143.755599975586,138.671600341797,9.21979713439941,-149.390151977539,134.034133911133,1.16862797737122,169.64811706543,-89.819206237793,126.865432739258,171.751327514648,-91.9189071655273,124.593208312988,180.544189453125,-94.3725433349609,115.384307861328,192.898391723633,-90.4320602416992,93.3900604248047,145.441757202148,-59.8730659484863,146.706390380859,150.196212768555,-64.1007766723633,144.385162353516,156.399826049805,-71.0011596679688,142.350952148438,143.381546020508,-55.5787467956543,147.558456420898,\r\n139.633178710938,-46.8396873474121,147.136413574219,160.717254638672,-88.0723266601563,-55.9869804382324,167.985946655273,-88.7741012573242,-51.1983108520508,175.316665649414,-87.8381042480469,-43.9221000671387,155.326721191406,-87.9247131347656,-57.6642456054688,149.838180541992,-93.3177490234375,-61.0870819091797,132.52848815918,-93.5710678100586,-75.4377899169922,110.888359069824,-94.2988357543945,-86.7110977172852,127.663009643555,-96.6420669555664,-77.9211349487305,112.269493103027,-99.1969223022461,-86.0003280639648,97.8466873168945,-85.016731262207,-92.2527389526367,99.331428527832,-72.2409820556641,-92.0724182128906,190.251129150391,-90.4386672973633,-14.7077369689941,183.463470458984,-87.3943634033203,-31.3354663848877,196.694778442383,-90.4563674926758,3.34473204612732,196.747772216797,-86.5795822143555,4.98643207550049,193.578475952148,-91.0934295654297,-6.55731916427612,203.455429077148,-108.554634094238,40.1354370117188,198.217910766602,-86.0360336303711,9.9908332824707,199.2490234375,-95.0486145019531,7.80315923690796,202.183303833008,-106.959480285645,65.929069519043,194.844589233398,-93.7926940917969,89.0495300292969,199.69206237793,-104.986282348633,76.6490097045898,92.3574447631836,-66.7885437011719,-93.4641494750977,82.8081130981445,-64.1015777587891,-96.2782363891602,-47.8121910095215,143.365051269531,-21.6302146911621,-59.2613105773926,148.313537597656,-29.1283493041992,-66.8533554077148,152.954986572266,-31.5067844390869,-148.776092529297,131.504898071289,-2.78758907318115,-149.647674560547,135.937316894531,3.99022507667542,-139.957214355469,142.471954345703,11.496129989624,165.022659301758,-85.937126159668,133.445083618164,183.102432250977,-91.8166961669922,111.594940185547,186.013717651367,-107.537536621094,104.934288024902,173.077453613281,-99.5508575439453,123.923149108887,189.747085571289,-102.851081848145,97.4171447753906,161.699340820313,-82.1675491333008,137.418472290039,158.641036987305,-84.4465789794922,139.802703857422,161.184295654297,-93.2868423461914,-55.3925247192383,165.577728271484,-93.8050918579102,-51.6910629272461,\r\n179.31005859375,-87.8580093383789,-38.0003204345703,156.782852172852,-96.2465286254883,-57.8582649230957,144.499649047852,-103.45613861084,-67.4385070800781,141.308349609375,-101.905990600586,-69.9016494750977,135.347763061523,-98.5666580200195,-74.3119735717773,103.738655090332,-91.3906555175781,-90.1020202636719,126.681907653809,-106.172409057617,-79.1117477416992,111.546424865723,-108.038589477539,-85.9674224853516,98.8637847900391,-90.1615371704102,-92.1194229125977,96.7683792114258,-73.1968688964844,-93.3174438476563,187.23583984375,-95.1380233764648,-19.3574924468994,185.482681274414,-92.6470794677734,-23.8201313018799,196.386749267578,-95.0904159545898,0.0850580036640167,194.539566040039,-95.3784484863281,-4.22601079940796,203.562438964844,-111.655937194824,35.1184463500977,203.375427246094,-113.111083984375,28.5956058502197,200.455139160156,-107.472526550293,13.4382209777832,198.724975585938,-99.9761962890625,4.61051511764526,202.480331420898,-109.004684448242,62.696346282959,203.707458496094,-112.836051940918,53.6845626831055,193.476455688477,-103.490142822266,90.9666137695313,196.18571472168,-110.571830749512,84.7569122314453,201.735260009766,-113.953170776367,67.5875244140625,86.6454849243164,-67.0682678222656,-95.4033432006836,-39.6155891418457,147.910491943359,-25.4363899230957,-55.0969047546387,144.431167602539,-25.1705627441406,-61.3332176208496,152.534957885742,-31.9868297576904,-56.2741203308105,148.120513916016,-29.0508422851563,-152.103408813477,137.391464233398,4.1103367805481,165.494705200195,-92.9677124023438,133.604095458984,183.631484985352,-107.116500854492,109.050689697266,179.527084350586,-111.154891967773,114.593231201172,174.720626831055,-104.9052734375,122.274978637695,146.893890380859,-68.4367065429688,145.774291992188,150.042190551758,-73.210075378418,143.883102416992,155.997772216797,-81.1939544677734,141.436859130859,157.490936279297,-91.3518524169922,-57.2240028381348,170.889236450195,-92.8531036376953,-46.856388092041,176.51579284668,-92.2977447509766,-40.7655906677246,154.498641967773,-99.2489242553711,-59.5993347167969,\r\n149.074111938477,-101.268928527832,-63.5510215759277,138.162033081055,-102.01099395752,-72.5638046264648,100.877380371094,-99.4325408935547,-92.6514739990234,135.023727416992,-106.205406188965,-74.9140319824219,118.862144470215,-108.037590026855,-82.2519607543945,106.467933654785,-108.582641601563,-88.5910797119141,93.6172637939453,-85.0211334228516,-93.6840744018555,192.593368530273,-96.6986770629883,-8.66508483886719,189.285034179688,-96.0822143554688,-15.4098072052002,182.252349853516,-92.0023193359375,-31.3752708435059,203.823455810547,-111.790954589844,43.4121589660645,202.452331542969,-112.631042480469,22.2638854980469,201.080200195313,-111.493927001953,16.2337951660156,203.055389404297,-111.096885681152,58.1905059814453,204.395523071289,-114.316200256348,49.2367286682129,197.512847900391,-118.275588989258,79.6757049560547,200.001098632813,-114.444213867188,73.3936004638672,88.4151611328125,-71.8599395751953,-95.3417434692383,78.3302688598633,-68.0033569335938,-99.8981857299805,-49.1438179016113,147.157424926758,-27.4875888824463,-34.4079780578613,147.850494384766,-23.3719863891602,-46.4775619506836,146.689376831055,-26.2462673187256,-53.5478553771973,153.052001953125,-33.1543464660645,169.984146118164,-99.1008148193359,127.927536010742,160.576232910156,-86.3802642822266,138.156539916992,162.686431884766,-94.1498260498047,137.077438354492,184.118545532227,-120.947845458984,107.525543212891,186.375747680664,-115.557319641113,104.05419921875,172.575408935547,-114.888259887695,124.42219543457,155.049682617188,-86.5640869140625,141.866912841797,162.799453735352,-98.9326934814453,-52.3488273620605,168.857040405273,-102.525047302246,-43.633171081543,156.88786315918,-99.645866394043,-58.0111808776855,152.875473022461,-104.611251831055,-61.609935760498,144.188613891602,-113.76815032959,-69.0480651855469,101.851470947266,-104.059204101563,-91.8446960449219,95.8679885864258,-94.7426834106445,-94.3295440673828,128.191055297852,-115.026268005371,-79.3674697875977,120.538307189941,-113.447113037109,-82.0974426269531,107.981079101563,-113.296104431152,-88.1845397949219,\r\n92.3447418212891,-89.4337692260742,-94.6240692138672,89.7603912353516,-79.0549468994141,-95.1162185668945,187.103820800781,-100.210815429688,-18.3068904876709,184.291549682617,-96.6405715942383,-23.9448413848877,196.543762207031,-100.35083770752,-1.09446394443512,204.306518554688,-114.37720489502,39.5552787780762,204.990585327148,-116.575424194336,35.0628395080566,203.652450561523,-117.427505493164,24.5161075592041,199.800079345703,-115.557319641113,12.1191911697388,198.552963256836,-103.296127319336,4.21100616455078,202.92839050293,-115.210289001465,62.9301681518555,204.057495117188,-115.996368408203,58.6295471191406,205.168594360352,-116.57942199707,54.3149261474609,193.448455810547,-116.677436828613,90.8694076538086,190.722183227539,-116.743438720703,96.4633560180664,201.144195556641,-119.139671325684,70.7087326049805,80.6688995361328,-71.4562072753906,-99.2501220703125,-32.8015213012695,152.425933837891,-30.0121364593506,-32.4156837463379,147.160415649414,-20.9928531646729,-41.6422882080078,150.581756591797,-29.8570213317871,-51.399242401123,148.866592407227,-29.6017971038818,-54.9450874328613,157.159393310547,-35.8147048950195,165.315689086914,-98.1742172241211,134.117141723633,178.383972167969,-122.661018371582,115.343299865723,180.889221191406,-126.094360351563,112.12198638916,177.0068359375,-113.529121398926,117.790550231934,172.58740234375,-110.751846313477,124.967247009277,168.968063354492,-103.221115112305,129.275680541992,156.457824707031,-91.7014846801758,141.784896850586,147.105911254883,-75.7625198364258,145.651275634766,149.760162353516,-80.1306533813477,143.625076293945,160.013168334961,-98.6316680908203,-55.3890228271484,179.378067016602,-101.05290222168,-30.3666725158691,156.446823120117,-104.899276733398,-58.4179229736328,149.755172729492,-109.77075958252,-64.4912109375,138.404052734375,-113.634132385254,-73.5871047973633,93.8330917358398,-103.26611328125,-95.3693389892578,91.0298156738281,-99.1177139282227,-96.9773025512695,133.320556640625,-115.247291564941,-76.9154357910156,114.910758972168,-113.471115112305,-84.9867248535156,\r\n101.525444030762,-112.71004486084,-91.353645324707,101.249412536621,-108.049591064453,-91.5248641967773,90.2567367553711,-85.3811721801758,-94.9983062744141,192.204330444336,-102.243019104004,-9.55316162109375,183.313461303711,-101.008895874023,-23.6206092834473,196.168716430664,-104.565246582031,-2.00873303413391,205.132598876953,-115.91236114502,44.7666893005371,204.953582763672,-117.723533630371,30.1191558837891,202.046295166016,-116.947456359863,18.738941192627,199.168014526367,-111.823959350586,9.43430805206299,203.026382446289,-119.568717956543,66.3704147338867,206.732757568359,-117.3125,49.7059745788574,194.646575927734,-123.798133850098,86.4009704589844,198.002899169922,-121.895950317383,78.4655914306641,81.010139465332,-79.7997207641602,-99.0970077514648,77.1650543212891,-71.4533004760742,-100.693862915039,-44.3251495361328,153.291015625,-33.3663673400879,-24.8102378845215,153.050003051758,-28.2013607025146,-38.9575233459473,153.617065429688,-32.8360176086426,-47.8338928222656,153.754058837891,-33.9300231933594,156.080795288086,-97.8005828857422,142.717987060547,160.621231079102,-98.6849746704102,139.111633300781,171.526306152344,-125.00025177002,123.24308013916,182.636383056641,-127.896537780762,109.051689147949,169.911148071289,-117.517509460449,127.404487609863,161.765335083008,-102.826080322266,-52.1833076477051,163.693542480469,-106.869476318359,-48.1712188720703,176.1767578125,-96.1689224243164,-38.6226806640625,159.134078979492,-104.865280151367,-55.2399101257324,152.890472412109,-110.94287109375,-61.9203643798828,147.8759765625,-115.335296630859,-66.1516799926758,144.920700073242,-120.86784362793,-68.6716232299805,93.5675659179688,-108.402618408203,-94.4324493408203,88.4716644287109,-93.6602783203125,-97.5058517456055,126.364875793457,-120.816841125488,-80.735107421875,120.85733795166,-118.007568359375,-82.8350143432617,115.883850097656,-122.853042602539,-86.8587112426758,102.004486083984,-117.415504455566,-91.9428100585938,87.0104217529297,-80.665901184082,-96.2433242797852,188.746994018555,-106.092399597168,-15.4391088485718,\r\n206.390716552734,-117.853553771973,39.9652214050293,207.851852416992,-120.730834960938,30.2600688934326,205.962677001953,-120.652824401855,26.826732635498,203.318420410156,-120.778831481934,20.521614074707,197.962890625,-117.130477905273,8.15297317504883,201.282211303711,-121.32088470459,15.9028615951538,197.082809448242,-110.663841247559,1.88743901252747,204.727554321289,-119.308685302734,62.344913482666,205.77165222168,-118.670623779297,58.4985389709473,207.429824829102,-118.675628662109,55.1262054443359,190.217132568359,-122.206977844238,96.79638671875,192.496368408203,-124.134162902832,91.5057678222656,202.284317016602,-123.892135620117,71.862548828125,203.682464599609,-122.725021362305,68.3572006225586,-27.4608974456787,155.039199829102,-32.0734405517578,-33.2779655456543,156.160308837891,-34.675895690918,-23.5281105041504,151.412826538086,-24.3760833740234,-44.9518127441406,158.855560302734,-37.909610748291,160.287200927734,-103.176109313965,139.020614624023,165.509704589844,-102.780067443848,133.211059570313,170.380187988281,-129.237670898438,124.602210998535,177.676910400391,-136.312347412109,116.950462341309,179.217056274414,-139.639694213867,114.730247497559,185.639694213867,-130.174758911133,102.717063903809,168.238983154297,-125.139259338379,127.229469299316,168.869049072266,-109.270713806152,129.138656616211,168.211975097656,-106.918472290039,-42.3828506469727,173.54850769043,-102.243019104004,-37.6961898803711,179.718109130859,-105.993385314941,-27.9326324462891,158.543029785156,-118.628623962402,-54.0641937255859,136.196838378906,-118.103576660156,-75.1293563842773,89.2827453613281,-104.757270812988,-97.6776733398438,83.6875991821289,-96.0807113647461,-100.194816589355,126.096855163574,-126.302375793457,-81.078239440918,108.371116638184,-122.185974121094,-89.9620056152344,93.3297424316406,-116.698432922363,-95.1020126342773,82.4414749145508,-85.3644638061523,-99.0165023803711,195.720672607422,-108.991683959961,-2.22956490516663,191.67626953125,-111.735946655273,-9.99107456207275,182.820419311523,-105.253311157227,-23.3536853790283,\r\n208.124893188477,-118.236587524414,44.2522392272949,205.686645507813,-122.657012939453,22.7186298370361,198.593963623047,-123.152069091797,11.1177930831909,206.003677368164,-122.104965209961,65.0688781738281,210.470123291016,-118.348594665527,51.4526481628418,191.275238037109,-130.846817016602,92.3059539794922,196.032699584961,-127.112457275391,83.844123840332,199.627044677734,-125.799331665039,77.1506652832031,75.1457595825195,-81.3848724365234,-101.430938720703,-22.1508750915527,157.286407470703,-33.5730857849121,-39.2460517883301,157.817474365234,-36.9677200317383,-16.9231624603271,155.714263916016,-29.5787963867188,-43.7139892578125,162.762939453125,-40.4183540344238,154.801666259766,-102.709060668945,143.528060913086,164.726623535156,-106.836463928223,133.082046508789,181.623291015625,-136.72639465332,110.397819519043,184.250549316406,-133.987121582031,104.657257080078,167.5869140625,-119.302688598633,129.363677978516,173.774520874023,-106.511436462402,-35.0219306945801,167.279891967773,-111.60693359375,-42.2948417663574,162.104385375977,-112.143989562988,-49.0396041870117,155.385711669922,-114.448211669922,-58.8901672363281,149.796188354492,-118.673629760742,-63.9352607727051,136.548873901367,-122.634017944336,-74.2617721557617,129.372161865234,-126.541397094727,-78.9350357055664,90.8155899047852,-112.314010620117,-95.6827697753906,85.689094543457,-102.485038757324,-99.7533721923828,122.952545166016,-124.446189880371,-82.8046112060547,108.696144104004,-126.398391723633,-90.3126449584961,100.329330444336,-121.528907775879,-93.7420806884766,93.9455032348633,-112.552032470703,-94.0728149414063,189.366058349609,-116.819442749023,-15.0356693267822,187.551879882813,-110.823860168457,-17.5758190155029,210.992156982422,-118.213584899902,46.957405090332,208.926467895508,-119.172676086426,39.7754020690918,209.728042602539,-120.108772277832,35.2985649108887,208.722946166992,-122.962043762207,25.2822818756104,203.330413818359,-124.337181091309,18.6589336395264,196.423736572266,-122.616012573242,6.89764976501465,200.50813293457,-126.324371337891,14.4131164550781,\r\n208.048889160156,-120.45580291748,60.5127334594727,210.490112304688,-119.136672973633,56.250114440918,194.160507202148,-131.539886474609,87.8174133300781,204.192504882813,-126.442390441895,73.6088104248047,206.699752807617,-124.261177062988,69.1715774536133,-27.1906700134277,158.800567626953,-36.4433670043945,-34.6748046875,159.813659667969,-38.3573532104492,-13.7830562591553,155.567245483398,-27.7913208007813,159.473129272461,-107.305511474609,138.909622192383,154.901672363281,-106.94548034668,142.898010253906,167.049865722656,-129.731704711914,127.71851348877,170.869247436523,-141.758880615234,125.446296691895,179.726104736328,-145.590270996094,112.774047851563,186.562789916992,-139.768707275391,98.1175155639648,165.543716430664,-114.255195617676,131.406875610352,163.91455078125,-123.388092041016,131.583908081055,170.780227661133,-111.244903564453,-37.3266563415527,183.551483154297,-109.631744384766,-22.645414352417,178.624008178711,-110.524833679199,-29.3810768127441,162.565414428711,-115.873352050781,-48.0379028320313,157.799957275391,-124.088157653809,-54.2101097106934,147.66096496582,-126.353385925293,-64.9673614501953,144.329635620117,-126.117362976074,-68.4560012817383,87.2736434936523,-112.611030578613,-98.5634536743164,86.7517929077148,-107.271514892578,-99.2998199462891,80.7829132080078,-95.9961090087891,-101.828971862793,77.6581039428711,-88.6254806518555,-101.830978393555,122.869537353516,-131.584899902344,-83.7148971557617,117.796035766602,-127.235466003418,-86.5626831054688,99.6562576293945,-126.263374328613,-94.8694915771484,92.8066864013672,-121.318885803223,-96.4788513183594,193.90950012207,-115.778343200684,-4.04972314834595,190.85319519043,-118.49161529541,-11.586932182312,212.365295410156,-119.014663696289,40.7983016967773,210.77165222168,-121.135871887207,31.9595355987549,209.833557128906,-121.446899414063,29.4402885437012,208.916961669922,-125.576309204102,20.5457153320313,205.610641479492,-125.867340087891,19.3294982910156,197.511856079102,-128.562606811523,10.1719999313354,194.064514160156,-125.063255310059,2.09651899337769,\r\n209.828048706055,-122.043960571289,65.2674942016602,216.866744995117,-118.288589477539,59.066089630127,220.241073608398,-117.353500366211,50.2789306640625,191.786285400391,-135.422271728516,91.3898620605469,197.559844970703,-131.676910400391,84.0990447998047,199.88508605957,-129.154647827148,80.1575622558594,-23.6191215515137,161.711853027344,-38.8904075622559,-15.1166868209839,158.915573120117,-34.2772521972656,-39.1060371398926,162.044891357422,-40.042121887207,-10.0439891815186,160.923767089844,-36.3938636779785,160.233200073242,-111.54793548584,136.174346923828,172.335372924805,-146.501358032227,122.966049194336,181.533279418945,-145.912292480469,109.339714050293,184.266555786133,-145.965301513672,101.67797088623,161.766342163086,-113.940162658691,134.039138793945,174.614608764648,-110.850860595703,-33.4012680053711,168.958053588867,-115.876350402832,-39.5910758972168,160.592239379883,-124.825233459473,-51.2438163757324,152.683456420898,-122.016952514648,-59.9747734069824,138.553070068359,-129.626693725586,-71.2690734863281,130.82731628418,-129.036651611328,-77.5035858154297,89.8414993286133,-117.085472106934,-96.9738006591797,109.384216308594,-130.620803833008,-89.9621047973633,192.744384765625,-116.056373596191,-7.03931617736816,189.187026977539,-123.131065368652,-15.4833135604858,186.368759155273,-118.478614807129,-20.5016040802002,215.787139892578,-118.208084106445,43.8259468078613,211.884765625,-120.357292175293,34.2598114013672,211.81526184082,-122.162971496582,28.6205081939697,212.274307250977,-123.675117492676,24.4235973358154,203.311416625977,-128.434585571289,15.8810586929321,194.288528442383,-134.200149536133,5.06279993057251,200.000091552734,-131.23486328125,12.3481140136719,212.114288330078,-120.086761474609,61.478328704834,219.221969604492,-117.524513244629,54.934684753418,221.971252441406,-117.478515625,45.7030830383301,193.934494018555,-137.92951965332,90.0034255981445,196.851791381836,-135.410278320313,86.7564010620117,208.632934570313,-124.801231384277,71.7271270751953,204.568542480469,-128.89762878418,77.9507369995117,\r\n-28.3949890136719,162.831954956055,-40.3690528869629,-19.0145683288574,160.651748657227,-37.2417488098145,-31.5866012573242,165.316207885742,-42.4302558898926,-6.18504095077515,160.989776611328,-35.8271064758301,-43.6557807922363,166.901351928711,-42.4177551269531,157.037887573242,-111.494926452637,139.724700927734,168.032958984375,-140.495758056641,128.104553222656,161.223297119141,-130.953826904297,132.747009277344,168.079971313477,-146.349349975586,128.107559204102,179.888122558594,-151.136810302734,110.397819519043,176.339782714844,-151.297836303711,115.975372314453,185.213638305664,-149.21061706543,99.5893630981445,171.053253173828,-117.369499206543,-37.4042625427246,180.254150390625,-119.752731323242,-29.663402557373,176.263763427734,-115.227294921875,-32.5916900634766,166.483810424805,-120.851837158203,-43.4237518310547,158.701049804688,-132.386962890625,-52.7441635131836,152.291427612305,-129.195663452148,-58.4783248901367,146.112808227539,-131.22785949707,-64.9896697998047,142.459442138672,-132.260955810547,-68.2185821533203,135.400756835938,-129.801727294922,-73.4774017333984,124.062644958496,-136.966430664063,-82.759407043457,118.339088439941,-132.037933349609,-86.6203842163086,100.624351501465,-131.153854370117,-94.2545318603516,93.3994522094727,-125.633316040039,-96.7414779663086,191.933303833008,-123.440101623535,-7.19452095031738,220.582107543945,-118.202583312988,40.6944885253906,214.041473388672,-120.605819702148,33.2210578918457,214.025466918945,-125.787330627441,19.9443588256836,206.187698364258,-129.582702636719,15.1717901229858,196.658752441406,-133.285064697266,8.75060081481934,191.985305786133,-135.641296386719,0.171149000525475,216.047668457031,-120.760833740234,68.0313720703125,217.434799194336,-119.285690307617,64.2643966674805,223.443389892578,-118.110572814941,60.8470649719238,225.459579467773,-117.541519165039,49.862190246582,187.847900390625,-143.662078857422,96.0662155151367,190.362152099609,-143.140029907227,93.6454849243164,200.808166503906,-134.388168334961,85.1845474243164,201.454238891602,-131.468872070313,81.7115173339844,\r\n-25.9808521270752,167.03337097168,-43.4899559020996,-19.3515014648438,164.492111206055,-41.2282371520996,-14.7415504455566,163.363006591797,-39.9180068969727,-10.5513391494751,163.833053588867,-40.4077568054199,-34.8391189575195,167.390396118164,-43.5486640930176,-4.80967712402344,165.445205688477,-42.0734214782715,156.024795532227,-116.700439453125,137.854522705078,165.184677124023,-133.326065063477,129.363677978516,157.399917602539,-120.529808044434,135.711303710938,168.103973388672,-151.094802856445,127.128463745117,181.947326660156,-151.354827880859,105.177314758301,181.997329711914,-155.036193847656,103.496139526367,166.291778564453,-126.209365844727,-44.9212989807129,163.956558227539,-129.14665222168,-48.0163993835449,154.744659423828,-132.669006347656,-55.7445602416992,148.75407409668,-132.56298828125,-61.1930923461914,135.453765869141,-141.728881835938,-69.7217254638672,131.896423339844,-133.817108154297,-75.6532135009766,119.550216674805,-137.641494750977,-85.5842819213867,125.652809143066,-140.615783691406,-80.8921203613281,110.192291259766,-136.015319824219,-89.0060195922852,97.1608123779297,-130.813812255859,-95.3527450561523,103.637649536133,-138.432571411133,-91.3172454833984,191.397262573242,-132.170959472656,-2.97399806976318,189.332046508789,-127.91153717041,-13.5047187805176,186.370758056641,-123.541107177734,-20.7197284698486,181.122253417969,-124.251174926758,-29.162353515625,218.652923583984,-120.178779602051,32.6006965637207,219.778030395508,-122.329986572266,25.871337890625,209.652038574219,-129.345672607422,15.3950128555298,202.837371826172,-134.581176757813,10.5675392150879,196.451736450195,-138.188537597656,6.68112897872925,193.302444458008,-140.133728027344,2.91309905052185,199.308013916016,-135.55729675293,9.52392673492432,225.944641113281,-117.735534667969,57.34912109375,228.148849487305,-118.439605712891,41.5535736083984,193.414459228516,-144.339141845703,92.662483215332,196.685775756836,-140.186737060547,89.6547927856445,208.897964477539,-128.274566650391,79.2551727294922,205.142593383789,-131.488876342773,82.4597854614258,\r\n213.313385009766,-123.920143127441,73.9606552124023,-27.5598068237305,173.822021484375,-47.4531478881836,-1.54518699645996,164.968154907227,-41.2065315246582,-41.3077545166016,172.147872924805,-44.9914054870605,164.513610839844,-143.921096801758,131.139862060547,161.723342895508,-137.833511352539,132.340972900391,157.831954956055,-130.612808227539,135.142242431641,164.61962890625,-149.806686401367,130.7158203125,179.392074584961,-156.281326293945,107.578544616699,173.573501586914,-158.484527587891,117.014472961426,169.608123779297,-158.790557861328,122.701026916504,184.599578857422,-154.043090820313,100.671867370605,188.007919311523,-148.610549926758,96.6013717651367,175.31266784668,-127.390480041504,-36.306453704834,177.758911132813,-122.839042663574,-33.0846405029297,164.092575073242,-133.725112915039,-47.9905014038086,155.430725097656,-139.127624511719,-55.0206871032715,150.450241088867,-135.607284545898,-58.6608467102051,142.264434814453,-140.418762207031,-64.7490463256836,139.008117675781,-141.061828613281,-67.4589996337891,131.813415527344,-144.959213256836,-72.1869659423828,122.690521240234,-142.172927856445,-82.9103240966797,116.601921081543,-137.063430786133,-86.9026107788086,98.3947372436523,-140.250747680664,-92.6153717041016,94.117919921875,-129.969741821289,-96.1285171508789,90.5473709106445,-131.097854614258,-95.9254989624023,189.016006469727,-138.221542358398,-6.34500789642334,187.709884643555,-127.56950378418,-17.6967296600342,224.805526733398,-118.220581054688,39.9289169311523,222.176254272461,-119.501708984375,34.2336578369141,220.958160400391,-125.402290344238,20.1689796447754,219.400985717773,-128.087554931641,16.2851982116699,207.371810913086,-136.115341186523,8.85775184631348,190.35514831543,-141.82389831543,-2.1976420879364,221.722213745117,-121.096862792969,70.1603775024414,224.6455078125,-119.564720153809,65.9430694580078,228.636901855469,-118.782646179199,60.9201736450195,227.882827758789,-117.953559875488,53.0455017089844,230.082046508789,-118.613624572754,46.2760391235352,190.483169555664,-146.808395385742,94.6496810913086,\r\n200.195114135742,-140.596771240234,90.5184783935547,219.110977172852,-122.822036743164,73.7585296630859,-21.3176937103271,170.112655639648,-45.4775505065918,-14.5830335617065,169.183578491211,-45.3909454345703,-11.4593276977539,167.224380493164,-43.9386024475098,-4.31097793579102,170.167678833008,-47.2361221313477,-32.7711181640625,175.813232421875,-47.9177932739258,0.925888001918793,171.717834472656,-49.3701324462891,162.230392456055,-157.589447021484,131.052841186523,164.640625,-159.443618774414,128.230575561523,184.267547607422,-158.183502197266,101.474945068359,187.569869995117,-154.409133911133,99.0729064941406,170.562210083008,-128.722625732422,-40.8983001708984,163.026458740234,-140.223754882813,-48.7298736572266,160.105194091797,-140.666778564453,-51.7426643371582,144.873687744141,-140.623779296875,-61.806453704834,149.092102050781,-140.268753051758,-58.7366523742676,140.023223876953,-145.45524597168,-65.549919128418,134.635681152344,-147.150421142578,-69.5734176635742,128.801116943359,-145.567260742188,-75.7767181396484,125.612800598145,-149.918701171875,-78.2086563110352,119.525207519531,-145.856292724609,-83.7000961303711,114.351699829102,-147.916488647461,-85.5709838867188,110.46932220459,-145.369247436523,-87.6036758422852,94.2711334228516,-140.490768432617,-93.4491500854492,100.967185974121,-144.502151489258,-91.2783355712891,93.2498321533203,-134.987228393555,-94.6890716552734,187.955917358398,-132.086944580078,-15.2399892807007,181.692291259766,-128.647598266602,-28.236364364624,178.745010375977,-128.880630493164,-32.720100402832,224.357467651367,-123.240074157715,24.4529991149902,218.605911254883,-131.432876586914,12.4219207763672,216.819747924805,-135.506271362305,8.27457427978516,202.584350585938,-139.640686035156,6.25554704666138,195.788681030273,-142.667984008789,4.02684783935547,199.320037841797,-142.425964355469,4.43179798126221,192.615356445313,-144.577163696289,1.12784397602081,231.740203857422,-118.952659606934,53.1066055297852,232.459274291992,-120.321784973145,37.6134872436523,228.598907470703,-119.870750427246,34.4533805847168,\r\n193.531448364258,-149.339630126953,95.2138366699219,197.154815673828,-145.052215576172,93.1081314086914,203.812454223633,-134.58918762207,86.3052673339844,213.596420288086,-126.281372070313,78.7591247558594,209.123977661133,-132.380966186523,85.7851104736328,-17.5143222808838,169.922653198242,-45.6311683654785,-31.2327651977539,181.594787597656,-51.0284957885742,4.88262319564819,171.256790161133,-49.2039184570313,158.14599609375,-139.515670776367,134.625198364258,161.008285522461,-147.938491821289,133.221054077148,160.247207641602,-154.561157226563,133.046035766602,172.105361938477,-167.822448730469,112.858062744141,178.88801574707,-160.122680664063,106.136405944824,169.262069702148,-165.585220336914,119.531715393066,166.273788452148,-163.89306640625,124.58521270752,181.499282836914,-160.936782836914,103.247123718262,190.734176635742,-152.705963134766,97.2010269165039,190.224136352539,-149.628662109375,95.6072692871094,176.06575012207,-133.205047607422,-35.9719200134277,166.601806640625,-138.735595703125,-44.7865867614746,153.930572509766,-144.675170898438,-55.8183670043945,143.558563232422,-145.007202148438,-62.1680870056152,132.364471435547,-150.496734619141,-71.8572387695313,128.892120361328,-150.614761352539,-75.0852508544922,122.359489440918,-153.626052856445,-79.7821197509766,103.539642333984,-148.753570556641,-89.9413070678711,98.6753616333008,-149.527648925781,-91.0623245239258,101.10750579834,-149.140609741211,-90.5018157958984,185.687698364258,-132.173950195313,-20.2516803741455,187.475860595703,-139.963714599609,-9.93365859985352,226.535690307617,-121.567909240723,28.676212310791,228.299865722656,-126.361381530762,20.1963844299316,226.050643920898,-131.561889648438,13.1475915908813,212.787338256836,-140.525756835938,4.05849123001099,187.814910888672,-144.427154541016,-6.72004508972168,189.571075439453,-147.094421386719,-2.97385811805725,225.89762878418,-123.106063842773,73.6657180786133,229.352966308594,-120.555809020996,66.259895324707,235.203536987305,-120.751831054688,56.5512466430664,233.832412719727,-120.202781677246,43.0301208496094,\r\n202.02229309082,-144.454162597656,94.9059066772461,204.402526855469,-140.818786621094,92.6986923217773,220.411087036133,-125.4462890625,78.3700866699219,-19.3776054382324,177.237365722656,-50.4909439086914,-3.60493898391724,176.673324584961,-53.2454147338867,0.110694997012615,175.93424987793,-53.4897384643555,-23.9418506622314,181.542785644531,-52.4109306335449,3.9219388961792,166.693344116211,-43.1491241455078,8.06821537017822,178.651504516602,-58.3110122680664,158.530029296875,-161.284805297852,132.539993286133,161.404312133789,-163.18798828125,129.903732299805,174.651611328125,-167.346405029297,109.128700256348,184.088531494141,-162.15788269043,102.143013000488,186.835800170898,-161.756851196289,101.991996765137,190.363143920898,-157.518447875977,100.095817565918,161.000259399414,-150.304718017578,-49.1572151184082,164.459609985352,-143.554061889648,-46.1022109985352,158.913070678711,-148.251525878906,-52.0825004577637,147.143905639648,-144.890197753906,-59.5771331787109,139.897201538086,-149.291625976563,-65.9884643554688,119.215171813965,-154.223098754883,-81.5326843261719,115.395797729492,-153.493041992188,-83.47607421875,125.920829772949,-154.60514831543,-77.5722961425781,186.100738525391,-137.789505004883,-16.4160041809082,179.07502746582,-133.761108398438,-32.0460357666016,228.439880371094,-128.466583251953,17.3104991912842,229.625,-124.052154541016,24.8667392730713,223.401382446289,-134.6171875,9.69693374633789,216.608734130859,-142.901000976563,2.05305504798889,211.935272216797,-144.702178955078,0.596439003944397,195.49365234375,-146.521362304688,1.52542304992676,192.373352050781,-149.472640991211,-1.02737700939178,233.723388671875,-120.732833862305,60.2413063049316,235.708587646484,-120.623817443848,50.6732711791992,236.200637817383,-121.710922241211,39.9454193115234,232.416275024414,-122.038955688477,30.9243335723877,198.79997253418,-149.993698120117,97.8268966674805,209.473022460938,-136.223358154297,89.7439041137695,215.19157409668,-128.107559204102,81.7963256835938,-28.0806560516357,186.325271606445,-53.9169807434082,\r\n6.69061517715454,169.171081542969,-46.5842628479004,9.77702331542969,175.909240722656,-55.6070442199707,154.33561706543,-143.325042724609,136.658386230469,153.593551635742,-150.460739135742,136.685394287109,152.769470214844,-158.476531982422,135.902313232422,168.897048950195,-174.630111694336,112.85506439209,178.380966186523,-165.192184448242,105.449333190918,164.213592529297,-169.721633911133,123.55411529541,160.602233886719,-167.899444580078,128.409591674805,181.124252319336,-166.338302612305,103.861183166504,193.821487426758,-153.722061157227,98.3338394165039,174.57861328125,-138.377563476563,-36.6408843994141,161.925354003906,-156.726348876953,-45.8129844665527,168.004943847656,-142.990005493164,-41.7030830383301,155.598739624023,-149.134613037109,-54.8295707702637,144.242630004883,-148.049514770508,-61.80615234375,130.844314575195,-155.002182006836,-74.3174743652344,134.433670043945,-157.846466064453,-72.4875030517578,121.152366638184,-158.918579101563,-80.2381591796875,102.833572387695,-158.501525878906,-87.374153137207,99.7149124145508,-151.771118164063,-90.1402816772461,184.402572631836,-137.50846862793,-20.6685218811035,185.128631591797,-149.475646972656,-10.0285787582397,232.487289428711,-127.191467285156,21.3491954803467,231.404174804688,-135.106246948242,11.9070711135864,232.078231811523,-131.648895263672,15.1416873931885,220.414093017578,-139.075622558594,5.58239078521729,208.559936523438,-151.092803955078,-3.70364904403687,196.01969909668,-151.665863037109,-2.11966395378113,186.784790039063,-149.491653442383,-6.83501577377319,188.943008422852,-153.029006958008,-4.2179799079895,224.337478637695,-127.352478027344,80.1904602050781,230.641098022461,-124.206169128418,72.7453308105469,232.539276123047,-122.09196472168,66.4817199707031,236.472671508789,-123.307083129883,63.258903503418,238.096832275391,-122.102966308594,51.9920997619629,237.246734619141,-123.348083496094,34.9677276611328,213.964462280273,-131.973937988281,86.2673568725586,200.034088134766,-156.667343139648,102.992095947266,208.533935546875,-142.441955566406,95.0249176025391,\r\n219.25798034668,-128.949630737305,82.9378280639648,-6.57645988464355,181.421783447266,-55.9530792236328,0.454980999231339,181.613784790039,-58.5003280639648,5.35338878631592,180.427688598633,-59.2311973571777,-34.1057472229004,186.532287597656,-52.2676200866699,-19.4030075073242,186.333267211914,-55.9916801452637,8.57158374786377,167.887451171875,-44.4630508422852,8.07495307922363,170.409957885742,-48.301830291748,7.17095708847046,171.45280456543,-49.6116561889648,15.9258546829224,179.223556518555,-61.8833618164063,153.165496826172,-164.043075561523,134.434173583984,174.415588378906,-171.511795043945,107.6435546875,164.642623901367,-177.876419067383,116.432411193848,184.34455871582,-166.594329833984,103.745170593262,190.545166015625,-162.305892944336,103.325126647949,195.524658203125,-158.291519165039,102.604057312012,177.549896240234,-138.26155090332,-33.0565338134766,159.657135009766,-157.403427124023,-48.753173828125,158.270004272461,-152.833984375,-52.0027923583984,168.489013671875,-148.774566650391,-38.5758781433105,166.836837768555,-152.157913208008,-39.5914764404297,149.793167114258,-149.48664855957,-58.4107208251953,142.247436523438,-154.709167480469,-65.4745101928711,115.899856567383,-158.742553710938,-82.377571105957,110.471321105957,-158.723541259766,-84.2688522338867,128.62109375,-161.277801513672,-77.0155410766602,100.754470825195,-154.014587402344,-89.2182388305664,182.648391723633,-144.655181884766,-20.7389297485352,184.521591186523,-146.116317749023,-14.3462018966675,179.837112426758,-137.304458618164,-29.5314903259277,233.368362426758,-124.518196105957,26.5579051971436,224.134460449219,-139.958724975586,5.92912483215332,219.449005126953,-146.729370117188,-0.126755997538567,216.361694335938,-150.589752197266,-3.34675407409668,212.725341796875,-150.761764526367,-3.70564889907837,191.35124206543,-157.251403808594,-5.45609092712402,228.365875244141,-125.530296325684,76.2519760131836,239.207946777344,-123.706123352051,57.3980255126953,239.949996948242,-123.473098754883,45.7859916687012,237.081726074219,-126.018348693848,27.8527336120605,\r\n216.057662963867,-135.140243530273,89.5610809326172,213.057373046875,-140.221725463867,93.5333633422852,9.19790554046631,184.080032348633,-64.4096069335938,-31.0193462371826,191.28874206543,-54.7156562805176,-26.8157825469971,188.751495361328,-55.1914558410645,9.45929145812988,171.648818969727,-50.0193977355957,13.5619239807129,174.39909362793,-54.3822250366211,18.0127582550049,186.073226928711,-70.866340637207,149.437133789063,-165.838256835938,136.226348876953,156.10578918457,-168.04345703125,131.534896850586,167.650924682617,-180.764709472656,110.234809875488,178.123947143555,-170.538711547852,105.25032043457,155.676742553711,-184.992126464844,121.791938781738,158.753051757813,-173.855041503906,126.548400878906,181.06623840332,-171.27278137207,104.965286254883,174.379577636719,-146.995407104492,-32.9857292175293,161.222290039063,-161.290802001953,-44.6819763183594,167.16487121582,-157.353424072266,-37.9073104858398,154.050598144531,-153.136993408203,-55.3193168640137,145.65576171875,-153.658065795898,-61.6025314331055,137.266952514648,-159.943664550781,-70.3412857055664,120.907341003418,-163.351013183594,-80.7524108886719,104.766761779785,-163.030975341797,-86.4404678344727,183.190444946289,-154.817169189453,-10.5497303009033,185.372665405273,-156.290313720703,-7.42174291610718,237.47477722168,-130.541793823242,20.7457370758057,236.911712646484,-128.355575561523,23.2683849334717,228.409866333008,-140.206726074219,7.52762079238892,235.172546386719,-133.590087890625,15.3958120346069,223.007354736328,-145.622268676758,1.98637795448303,204.231506347656,-156.712356567383,-6.88993215560913,213.83544921875,-155.925277709961,-6.76717901229858,188.505966186523,-158.023483276367,-6.07421207427979,222.827331542969,-131.255859375,84.8881225585938,226.779724121094,-131.347885131836,83.8329238891602,235.190536499023,-125.6953125,70.2337875366211,235.032531738281,-129.049652099609,75.1173629760742,239.938995361328,-125.445289611816,60.9232749938965,241.769180297852,-125.073249816895,53.0069999694824,240.728073120117,-126.163360595703,35.0665397644043,\r\n195.805679321289,-161.690841674805,104.905281066895,208.146881103516,-145.984313964844,97.4324493408203,214.546508789063,-143.966110229492,96.0622177124023,-7.77348709106445,186.180252075195,-58.5253295898438,4.16170215606689,184.934127807617,-62.6055297851563,-22.476957321167,188.755493164063,-56.2288055419922,154.74365234375,-173.372985839844,130.168746948242,170.087158203125,-181.369781494141,107.594551086426,162.196380615234,-188.024429321289,111.703948974609,175.239669799805,-174.523101806641,106.217407226563,187.168838500977,-171.016754150391,106.626449584961,191.100219726563,-166.773345947266,105.99739074707,178.913024902344,-146.993408203125,-26.3409767150879,176.517791748047,-147.05940246582,-30.144250869751,156.616836547852,-157.548446655273,-51.9324836730957,156.049789428711,-161.497817993164,-50.1280097961426,172.450393676758,-155.756256103516,-32.2783584594727,149.516143798828,-154.272125244141,-58.2902069091797,142.697479248047,-158.963577270508,-65.0357666015625,130.23225402832,-165.490219116211,-76.3484802246094,110.389312744141,-163.109985351563,-84.279655456543,100.302322387695,-163.012969970703,-87.6383895874023,123.849632263184,-170.861740112305,-80.3790664672852,180.305160522461,-153.570037841797,-19.8321399688721,180.760208129883,-158.805557250977,-13.1840877532959,234.898513793945,-140.69580078125,10.5607385635376,235.760604858398,-137.328460693359,12.956672668457,220.994155883789,-152.932983398438,-3.50207901000977,209.024978637695,-156.27131652832,-7.06816911697388,195.436645507813,-163.211990356445,-9.60238742828369,190.523162841797,-163.6650390625,-9.0252513885498,231.299163818359,-130.891830444336,80.7271118164063,238.175827026367,-126.295372009277,66.5075225830078,241.512145996094,-124.68822479248,48.840892791748,243.232330322266,-127.133460998535,42.086727142334,239.71598815918,-128.862640380859,26.6085109710693,217.008758544922,-137.919525146484,91.6756896972656,200.443145751953,-162.260894775391,106.010391235352,203.632446289063,-157.873474121094,104.119201660156,-19.4579124450684,191.111724853516,-58.172794342041,\r\n2.06869792938232,188.494476318359,-64.1414794921875,7.62317180633545,189.425567626953,-67.9656600952148,17.565315246582,191.217742919922,-75.4712905883789,-25.5509071350098,191.177734375,-56.4659271240234,165.42170715332,-187.509368896484,108.583648681641,177.98893737793,-175.493194580078,105.588348388672,157.033889770508,-194.2490234375,112.895065307617,155.122695922852,-181.869812011719,124.653221130371,153.11799621582,-181.628799438477,126.463394165039,166.683822631836,-161.427825927734,-37.2387466430664,159.919174194336,-165.64323425293,-43.2252311706543,152.130401611328,-157.980484008789,-55.3273162841797,147.916976928711,-158.396514892578,-58.7761573791504,142.429443359375,-163.294006347656,-64.0889739990234,133.760589599609,-166.32829284668,-72.9423446655273,112.406509399414,-172.06086730957,-85.1279373168945,108.561126708984,-171.904846191406,-86.4777755737305,118.734130859375,-172.45491027832,-82.6877975463867,178.596984863281,-154.993179321289,-23.0905609130859,182.285354614258,-160.03369140625,-10.0904846191406,238.202835083008,-134.612182617188,17.2799968719482,226.252670288086,-147.642471313477,2.5816969871521,228.209854125977,-147.085418701172,4.14939117431641,218.624908447266,-156.668350219727,-6.16284990310669,210.175079345703,-160.136688232422,-9.06916522979736,203.520431518555,-160.405715942383,-9.12710952758789,187.447860717773,-161.830856323242,-7.89769983291626,221.384185791016,-135.795303344727,89.2226486206055,229.089950561523,-135.242263793945,86.1914520263672,239.035919189453,-130.623794555664,71.9536514282227,233.630386352539,-132.828018188477,80.7683181762695,240.662078857422,-128.375579833984,65.3699111938477,244.14241027832,-128.003540039063,54.3630294799805,244.321441650391,-127.846527099609,49.9072952270508,243.561370849609,-129.432678222656,35.5602874755859,196.762771606445,-166.330291748047,107.054496765137,207.908874511719,-152.171905517578,101.023895263672,213.214385986328,-148.819580078125,98.947998046875,218.035858154297,-147.103424072266,97.1980285644531,-11.3323163986206,191.498764038086,-60.3431091308594,\r\n-2.11912298202515,194.735092163086,-65.948356628418,12.5569248199463,194.455062866211,-75.1616592407227,145.14372253418,-172.776931762695,136.221343994141,168.45100402832,-189.142532348633,106.587448120117,172.586410522461,-183.23095703125,106.410430908203,162.159393310547,-191.540771484375,109.305717468262,153.964584350586,-191.414749145508,119.084678649902,151.492340087891,-189.88459777832,122.758033752441,153.019989013672,-175.825729370117,130.006744384766,183.034423828125,-176.863327026367,107.267517089844,189.367050170898,-173.128967285156,107.629547119141,175.800735473633,-155.782257080078,-28.1081504821777,163.620529174805,-166.360290527344,-38.5338745117188,171.649322509766,-160.781768798828,-31.0957431793213,150.390228271484,-167.066375732422,-51.6602592468262,148.499038696289,-162.933959960938,-56.2498092651367,126.033843994141,-172.722915649414,-79.1735534667969,138.477066040039,-163.712036132813,-68.3838958740234,128.985137939453,-172.872940063477,-76.8339233398438,117.769035339355,-176.970352172852,-83.151741027832,178.117950439453,-162.874954223633,-16.1504802703857,177.069854736328,-160.282699584961,-22.5849094390869,184.658584594727,-161.696838378906,-8.35596466064453,180.887222290039,-165.123168945313,-11.146689414978,240.674072265625,-132.024932861328,23.9147472381592,238.577880859375,-139.053619384766,14.6622409820557,231.287155151367,-149.075607299805,5.74808692932129,223.285369873047,-158.047485351563,-4.78840494155884,225.050552368164,-154.657150268555,-2.11927390098572,217.509796142578,-160.447723388672,-7.91285181045532,200.235107421875,-164.778137207031,-11.0831823348999,186.503768920898,-168.9765625,-11.4547185897827,225.403579711914,-137.851501464844,89.5961837768555,232.245254516602,-136.866409301758,84.9555282592773,236.586685180664,-134.166152954102,78.8433303833008,244.427444458008,-131.380874633789,60.5825386047363,244.962509155273,-129.366683959961,41.9280128479004,244.33544921875,-132.137954711914,33.3469734191895,219.488998413086,-140.329742431641,92.8310012817383,203.916473388672,-162.569931030273,106.037391662598,\r\n199.753067016602,-168.785537719727,107.966583251953,208.681945800781,-157.787460327148,103.576148986816,-14.9123659133911,196.377243041992,-61.4860191345215,-9.82518768310547,194.679077148438,-62.528923034668,2.91894102096558,195.734176635742,-69.4089965820313,17.0708675384521,195.80517578125,-78.9939422607422,-24.772632598877,196.170227050781,-58.1716957092285,164.875640869141,-193.683975219727,106.54044342041,176.407775878906,-182.073837280273,106.560447692871,157.737945556641,-199.856582641602,107.59154510498,152.153411865234,-202.206817626953,112.869064331055,151.296325683594,-178.278472900391,129.8447265625,155.305709838867,-172.43489074707,-43.3945503234863,122.760528564453,-177.106353759766,-80.6482009887695,143.085510253906,-168.148483276367,-60.4933242797852,140.028213500977,-172.871932983398,-61.7866516113281,135.829803466797,-168.283493041992,-69.4370040893555,131.001327514648,-174.204071044922,-73.8982391357422,113.205589294434,-176.733322143555,-84.7990036010742,109.574226379395,-176.703323364258,-85.689697265625,178.743011474609,-164.888153076172,-13.3822078704834,183.657485961914,-165.250183105469,-9.90197658538818,240.839096069336,-137.080429077148,19.1739826202393,228.073837280273,-151.956893920898,1.82987296581268,238.301849365234,-145.098220825195,12.0553846359253,206.735748291016,-164.941162109375,-11.4218158721924,196.165710449219,-169.426605224609,-12.7822494506836,212.434310913086,-164.832153320313,-10.3480100631714,188.90901184082,-174.13606262207,-14.4711141586304,228.379867553711,-139.04362487793,89.1138381958008,241.448150634766,-133.133041381836,70.8864517211914,236.594680786133,-139.96272277832,82.8409194946289,246.940689086914,-132.265960693359,51.2473258972168,245.997589111328,-131.809906005859,40.3062515258789,204.735549926758,-166.724334716797,106.74446105957,207.657836914063,-161.663833618164,105.045295715332,211.916259765625,-153.531051635742,101.332931518555,217.608825683594,-153.335037231445,100.088813781738,223.778427124023,-144.811187744141,94.160026550293,-20.335298538208,195.935195922852,-59.7225494384766,\r\n0.542716979980469,200.805679321289,-71.0557632446289,-6.38204097747803,201.217712402344,-67.2235794067383,14.5959253311157,200.879684448242,-80.9722290039063,168.231979370117,-197.763381958008,105.475341796875,171.128265380859,-192.817886352539,106.594451904297,160.306198120117,-199.656555175781,105.709365844727,174.504592895508,-189.332550048828,107.016494750977,152.2744140625,-208.195404052734,106.946487426758,148.18000793457,-199.252532958984,120.625823974609,146.035797119141,-208.349411010742,116.806449890137,189.317047119141,-183.621994018555,109.414726257324,184.264556884766,-188.362457275391,109.171699523926,175.036651611328,-160.455718994141,-26.3877811431885,171.755325317383,-165.239196777344,-27.6610069274902,147.027908325195,-167.592422485352,-55.4012260437012,149.665161132813,-172.035858154297,-49.9809951782227,156.174789428711,-177.507400512695,-39.055721282959,125.919830322266,-177.216369628906,-78.4422836303711,128.574096679688,-178.61750793457,-75.0370483398438,112.052474975586,-181.3427734375,-83.6313934326172,117.810035705566,-181.598785400391,-81.6873016357422,177.194854736328,-169.739639282227,-13.5723257064819,175.475677490234,-168.581527709961,-16.3270969390869,182.929412841797,-169.005554199219,-11.3317060470581,180.25715637207,-169.480606079102,-12.067479133606,243.201324462891,-136.787399291992,25.3294868469238,240.104019165039,-142.703979492188,15.0493793487549,231.824203491211,-154.641159057617,4.61154508590698,234.241455078125,-151.388824462891,8.04374217987061,241.811187744141,-139.70768737793,19.7882442474365,223.477401733398,-162.550933837891,-5.76292085647583,228.741897583008,-157.201416015625,-0.131640002131462,205.630645751953,-168.478515625,-12.6320343017578,217.560821533203,-165.032180786133,-8.74710273742676,183.212448120117,-173.384994506836,-13.2768983840942,233.433380126953,-141.279846191406,86.8048095703125,239.205932617188,-137.483474731445,78.0387496948242,245.379531860352,-135.947326660156,64.6556396484375,247.429748535156,-135.917327880859,56.8158683776855,245.432556152344,-135.68928527832,33.0695457458496,\r\n203.269409179688,-171.622817993164,107.831573486328,213.80744934082,-162.750946044922,103.244117736816,213.111373901367,-157.775451660156,102.532051086426,221.301177978516,-150.272720336914,97.6144714355469,-15.4090147018433,200.775665283203,-62.7980499267578,-21.7289333343506,200.684661865234,-60.3975143432617,18.949951171875,199.972595214844,-83.0956344604492,145.555755615234,-177.267364501953,133.581085205078,164.865646362305,-199.625564575195,104.64525604248,154.635650634766,-208.501434326172,104.407234191895,158.057983398438,-207.525344848633,102.918090820313,147.386932373047,-195.877197265625,122.859039306641,144.168609619141,-207.662353515625,119.961761474609,147.913986206055,-213.292907714844,108.05859375,149.075103759766,-189.442565917969,124.569213867188,169.701126098633,-169.926651000977,-26.4083843231201,153.04948425293,-179.672607421875,-43.1163215637207,159.467132568359,-175.366180419922,-36.0029258728027,154.538635253906,-176.007247924805,-42.4531593322754,122.633514404297,-181.744812011719,-79.0168380737305,144.665679931641,-172.206878662109,-56.9217720031738,137.340942382813,-173.233978271484,-64.766845703125,134.579681396484,-178.128448486328,-66.0910720825195,132.281463623047,-182.213851928711,-67.9429550170898,104.203704833984,-181.821823120117,-84.5761795043945,173.734512329102,-166.028259277344,-23.5466041564941,240.637069702148,-149.642669677734,14.6166362762451,239.076919555664,-152.630950927734,12.4626245498657,227.157745361328,-160.312713623047,-2.60678195953369,210.539138793945,-169.455596923828,-11.997971534729,196.014694213867,-174.00505065918,-14.3114986419678,215.465606689453,-168.721542358398,-9.84802055358887,185.694686889648,-177.913436889648,-15.7255373001099,229.219970703125,-144.109115600586,91.2851486206055,243.07731628418,-137.289459228516,71.6760330200195,239.785980224609,-141.65087890625,79.7522125244141,236.982711791992,-145.726287841797,85.2308578491211,248.179809570313,-135.884323120117,51.9099884033203,248.168807983398,-136.538375854492,46.0039138793945,246.940689086914,-135.544281005859,39.201545715332,\r\n210.075088500977,-166.483306884766,104.93628692627,194.033508300781,-180.345672607422,109.287712097168,207.739852905273,-171.485794067383,106.166412353516,200.571151733398,-172.653915405273,108.495628356934,218.026870727539,-157.330413818359,101.091903686523,221.163162231445,-154.125106811523,98.9944076538086,225.762619018555,-149.236618041992,95.2001342773438,-6.14194679260254,205.412124633789,-69.1069717407227,-12.1329936981201,205.386123657227,-65.7508392333984,3.31663990020752,205.365127563477,-75.3823852539063,17.2923908233643,206.357223510742,-86.1028366088867,144.276626586914,-187.048324584961,128.264572143555,168.831039428711,-203.492950439453,104.211219787598,176.116760253906,-198.025405883789,107.251518249512,176.192764282227,-194.107025146484,107.57054901123,161.698333740234,-203.247909545898,103.669166564941,183.367462158203,-193.138916015625,109.077690124512,148.972091674805,-218.201370239258,102.289031982422,143.001510620117,-202.494842529297,123.694129943848,138.542068481445,-212.54182434082,123.732124328613,138.636077880859,-217.514312744141,118.661628723145,143.713577270508,-214.326995849609,113.66414642334,188.464965820313,-189.277557373047,109.705757141113,163.127471923828,-170.890731811523,-35.2256469726563,151.050308227539,-179.961639404297,-46.3841438293457,156.259811401367,-182.653900146484,-34.2601547241211,125.91283416748,-181.98583984375,-76.1855621337891,144.256637573242,-176.860336303711,-57.1604957580566,138.236038208008,-178.001434326172,-62.4317169189453,129.131149291992,-187.175338745117,-69.5416107177734,114.813751220703,-186.259246826172,-79.6874084472656,119.194175720215,-186.42626953125,-77.7766189575195,174.23356628418,-173.769027709961,-15.4594106674194,179.737106323242,-173.145965576172,-13.0719766616821,173.647521972656,-169.493606567383,-19.4417018890381,244.714477539063,-149.239624023438,22.8706455230713,247.248718261719,-142.846984863281,33.4456787109375,242.217224121094,-146.634368896484,18.0167694091797,236.240646362305,-159.295608520508,8.59548568725586,232.112243652344,-159.921676635742,3.08329606056213,\r\n225.393585205078,-166.350296020508,-4.24315214157104,221.391189575195,-166.743347167969,-6.99228096008301,229.010925292969,-162.922958374023,-0.878687977790833,205.354614257813,-173.449005126953,-13.5373229980469,191.71028137207,-178.684524536133,-15.9205560684204,180.019134521484,-177.747421264648,-14.7259387969971,231.951217651367,-146.237335205078,90.2111434936523,243.801376342773,-141.546875,73.0066604614258,239.902008056641,-145.770278930664,81.2537689208984,245.624572753906,-140.418762207031,68.3533020019531,247.872772216797,-140.297744750977,60.4706268310547,248.885879516602,-139.646682739258,53.982593536377,193.267440795898,-185.124145507813,109.713752746582,196.774780273438,-178.70051574707,109.187698364258,207.534820556641,-175.957244873047,106.220413208008,203.588439941406,-176.996353149414,107.900581359863,214.185485839844,-167.598419189453,103.070106506348,225.831634521484,-153.919082641602,96.4504547119141,-18.9062576293945,205.717163085938,-62.27099609375,165.091674804688,-207.086288452148,102.210021972656,177.061859130859,-203.082901000977,106.016395568848,186.763793945313,-193.889999389648,109.28971862793,151.566345214844,-219.523513793945,99.2286224365234,157.212905883789,-211.872772216797,100.51985168457,161.097274780273,-210.12858581543,100.720878601074,144.049621582031,-191.816802978516,126.164367675781,140.879302978516,-197.386352539063,126.418395996094,139.191131591797,-214.433013916016,121.182876586914,143.061508178711,-219.562515258789,107.967582702637,145.896789550781,-220.503601074219,103.441146850586,164.490615844727,-174.735122680664,-28.8612251281738,169.674118041992,-176.248275756836,-19.7484302520752,147.711975097656,-176.991348266602,-52.5510444641113,151.005294799805,-185.308151245117,-43.7705841064453,157.792953491211,-182.557876586914,-30.9395294189453,153.916580200195,-184.763107299805,-37.6440849304199,122.657508850098,-186.590286254883,-75.7083129882813,125.969841003418,-186.916305541992,-72.8032302856445,135.950820922852,-183.165939331055,-64.2963943481445,132.240463256836,-187.320358276367,-66.7672424316406,\r\n107.227996826172,-187.053329467773,-81.0670394897461,103.318618774414,-186.069229125977,-82.6788024902344,176.836822509766,-176.195251464844,-14.2245903015137,248.150802612305,-149.578659057617,32.1175498962402,242.536254882813,-154.449142456055,16.6946411132813,240.384048461914,-159.516632080078,13.5415306091309,213.881454467773,-174.111053466797,-10.482723236084,208.837966918945,-175.023147583008,-12.6326341629028,197.084808349609,-178.228469848633,-15.1113767623901,186.231750488281,-182.214859008789,-16.8401470184326,176.919830322266,-182.438888549805,-15.8045454025269,231.289154052734,-149.276626586914,91.7649002075195,242.608276367188,-145.784286499023,76.8259353637695,235.217544555664,-151.391830444336,88.4939804077148,238.591873168945,-149.913696289063,84.2373580932617,248.496841430664,-141.98291015625,39.3341598510742,213.547424316406,-171.131774902344,103.02409362793,196.933792114258,-184.693099975586,109.134696960449,200.284118652344,-180.227661132813,108.648643493652,220.290084838867,-160.731750488281,100.484855651855,-13.8567628860474,210.044586181641,-65.6325302124023,-6.88956117630005,209.954574584961,-70.0867614746094,2.97775602340698,210.05158996582,-77.0519485473633,173.471496582031,-207.675354003906,103.425132751465,183.630493164063,-197.778381347656,108.465629577637,147.420944213867,-222.932846069336,99.7249755859375,137.809997558594,-211.128692626953,125.671318054199,138.071014404297,-206.250213623047,126.758422851563,139.878204345703,-219.030471801758,113.992172241211,190.739181518555,-193.464950561523,108.957679748535,194.029510498047,-189.233535766602,109.344718933105,159.113082885742,-183.705001831055,-26.8823299407959,149.055099487305,-181.032745361328,-49.9562911987305,152.832473754883,-189.695587158203,-34.0965385437012,155.271713256836,-189.045516967773,-27.4558868408203,146.577865600586,-181.172744750977,-54.5909461975098,139.743194580078,-185.966217041016,-61.4976234436035,129.562194824219,-191.927810668945,-66.7490310668945,125.945838928223,-191.828796386719,-69.1039733886719,96.9789047241211,-195.212127685547,-81.6691970825195,\r\n110.649337768555,-192.169830322266,-75.9086380004883,122.142463684082,-191.551773071289,-71.5984115600586,173.340484619141,-180.632705688477,-15.716236114502,246.810684204102,-153.783081054688,26.5388031005859,232.427261352539,-164.005065917969,3.31283807754517,238.187835693359,-163.828048706055,11.3184127807617,230.152053833008,-168.737533569336,1.42458295822144,221.307189941406,-172.377883911133,-6.39007186889648,199.732070922852,-181.791809082031,-14.8556518554688,195.771682739258,-182.615905761719,-15.91965675354,191.137222290039,-182.987930297852,-16.8085422515869,245.432556152344,-145.146224975586,70.8375473022461,242.908294677734,-150.923782348633,77.0529556274414,248.022796630859,-145.225234985352,62.6361427307129,249.267913818359,-141.696884155273,45.4978637695313,204.687545776367,-180.931732177734,107.020492553711,214.583526611328,-177.413375854492,101.243919372559,222.961334228516,-171.079772949219,98.1188201904297,222.548309326172,-165.452224731445,99.1254196166992,227.366775512695,-159.208587646484,96.0170135498047,230.314071655273,-154.774169921875,93.4205627441406,14.8903541564941,213.334899902344,-87.3815536499023,173.358489990234,-211.330703735352,101.14591217041,177.726913452148,-207.443328857422,103.823173522949,183.669494628906,-202.724868774414,106.506439208984,165.405700683594,-212.158782958984,99.7139739990234,187.963912963867,-199.529541015625,107.46053314209,156.564834594727,-216.899261474609,98.0317077636719,151.362335205078,-223.377899169922,96.1367263793945,160.683227539063,-216.238189697266,97.2777328491211,141.489364624023,-223.35188293457,105.362327575684,137.928009033203,-224.047958374023,109.646743774414,142.362442016602,-225.336074829102,101.621963500977,164.366607666016,-183.355972290039,-19.8313407897949,158.878067016602,-187.013320922852,-23.0960597991943,150.438247680664,-189.83659362793,-40.6393775939941,147.653961181641,-185.682189941406,-51.5883522033691,143.969604492188,-181.528793334961,-57.8200607299805,135.464767456055,-188.343460083008,-64.2890014648438,103.341621398926,-190.777694702148,-80.4885864257813,\r\n114.581726074219,-196.367248535156,-70.3301849365234,106.552940368652,-190.983703613281,-78.6292037963867,171.137268066406,-178.669494628906,-16.6897315979004,249.394927978516,-154.395141601563,35.6463966369629,249.914978027344,-151.537841796875,39.8357048034668,243.222320556641,-158.729553222656,18.0847759246826,240.803085327148,-164.412109375,15.4790210723877,225.300567626953,-176.980346679688,-1.38088202476501,223.292373657227,-176.850326538086,-3.54069304466248,211.301208496094,-177.999435424805,-11.1222867965698,200.471145629883,-185.863220214844,-13.9457626342773,217.322784423828,-178.704513549805,-7.5555567741394,178.790023803711,-187.188339233398,-16.6966323852539,183.309463500977,-188.056427001953,-17.109073638916,245.116516113281,-149.922698974609,71.8817443847656,237.154739379883,-154.062088012695,86.2785568237305,240.985107421875,-155.916275024414,80.3157806396484,249.220916748047,-144.373138427734,55.2735214233398,249.917984008789,-147.281433105469,45.8812026977539,196.865783691406,-190.251647949219,108.216606140137,201.472229003906,-185.9072265625,107.431533813477,206.817764282227,-182.652893066406,105.389335632324,222.455291748047,-175.447189331055,97.2545318603516,-10.4034252166748,215.005065917969,-68.4473037719727,-2.33329391479492,215.19108581543,-74.5386962890625,3.84363102912903,214.709045410156,-79.2447662353516,179.231063842773,-210.262603759766,101.583961486816,181.507278442383,-206.736267089844,104.028198242188,166.173782348633,-215.934158325195,97.395149230957,156.408828735352,-221.512710571289,94.8675994873047,144.349624633789,-226.717224121094,97.6883773803711,196.066711425781,-194.04801940918,107.056495666504,191.690292358398,-199.204513549805,106.184410095215,167.561920166016,-182.623901367188,-17.5010108947754,147.901977539063,-190.399658203125,-47.5568580627441,150.737274169922,-194.514053344727,-31.1591491699219,149.037109375,-194.606079101563,-36.7913017272949,145.518753051758,-185.846206665039,-55.3813247680664,142.777481079102,-186.231246948242,-58.6280403137207,127.315971374512,-196.943298339844,-63.8947563171387,\r\n135.337768554688,-193.153915405273,-62.0518760681152,121.977447509766,-196.847290039063,-66.5605163574219,100.225311279297,-195.460144042969,-79.9141235351563,108.043083190918,-195.882202148438,-74.2409744262695,173.695510864258,-186.62028503418,-16.2404861450195,169.844131469727,-184.264053344727,-16.4906120300293,249.267913818359,-157.951477050781,36.302661895752,245.038497924805,-158.653549194336,22.2816867828369,243.337341308594,-163.059982299805,19.6616306304932,235.535568237305,-168.550506591797,9.063551902771,226.373672485352,-180.76872253418,1.62406301498413,194.453552246094,-187.277359008789,-16.1054744720459,190.209136962891,-187.029327392578,-16.9957618713379,230.36506652832,-160.731750488281,93.4843673706055,247.414733886719,-149.357635498047,64.8125534057617,243.708389282227,-162.46891784668,74.1944732666016,235.003524780273,-158.006484985352,88.509880065918,249.172912597656,-149.677658081055,56.5852508544922,200.338119506836,-189.444564819336,106.862480163574,208.434921264648,-185.284164428711,103.184112548828,217.101776123047,-180.85871887207,98.3948440551758,227.576797485352,-171.050750732422,94.4979629516602,226.389678955078,-166.898361206055,96.2939376831055,9.75059986114502,220.37858581543,-85.3409576416016,176.357772827148,-215.51611328125,97.1331253051758,172.155364990234,-214.795043945313,98.3209381103516,186.796798706055,-203.719955444336,105.35432434082,160.783248901367,-219.91455078125,94.7645874023438,151.564346313477,-226.33317565918,92.1112289428711,165.12467956543,-219.188491821289,94.9216003417969,137.656997680664,-227.71630859375,103.734169006348,139.297149658203,-229.086441040039,98.7642822265625,190.530166625977,-203.195907592773,103.749176025391,164.629623413086,-187.523376464844,-17.3467960357666,155.711761474609,-194.215026855469,-19.3663940429688,153.938583374023,-194.009017944336,-22.3056812286377,146.711883544922,-194.990097045898,-44.5990676879883,144.574661254883,-190.352645874023,-54.269115447998,151.952377319336,-194.398040771484,-26.4400863647461,139.277145385742,-190.946701049805,-60.250301361084,\r\n135.006729125977,-196.716278076172,-59.2362022399902,101.109405517578,-199.404541015625,-76.7926177978516,97.1004104614258,-200.23762512207,-78.4043807983398,93.8429870605469,-204.804061889648,-76.7035140991211,107.499031066895,-200.805679321289,-71.9865570068359,115.425811767578,-201.186721801758,-66.8558502197266,250,-156.842361450195,42.8563041687012,247.159713745117,-158.40251159668,28.481294631958,242.058212280273,-167.492416381836,19.8073463439941,235.738586425781,-177.705413818359,14.6705408096313,223.208374023438,-182.837921142578,-0.825695991516113,218.157867431641,-185.5341796875,-4.09041690826416,210.926162719727,-184.512084960938,-9.55621242523193,193.620468139648,-191.575775146484,-15.1086759567261,174.442596435547,-193.471969604492,-16.0196666717529,185.435653686523,-191.70378112793,-16.5984230041504,246.390640258789,-156.895385742188,66.7081451416016,241.712188720703,-165.367202758789,77.0527572631836,205.621643066406,-189.539566040039,103.364135742188,212.822341918945,-184.798110961914,99.6336669921875,222.094268798828,-180.22265625,95.4311599731445,226.667709350586,-176.212280273438,93.576171875,-3.8829460144043,219.627517700195,-73.8966369628906,15.6712312698364,219.019470214844,-89.2774505615234,182.694396972656,-210.929672241211,99.7776870727539,170.565216064453,-218.416412353516,95.2031326293945,160.766250610352,-223.412902832031,91.6107864379883,146.137817382813,-229.266464233398,91.6753845214844,155.949783325195,-226.330169677734,89.7888031005859,135.040725708008,-227.825317382813,108.312614440918,141.977401733398,-230.549591064453,92.7419891357422,195.017608642578,-199.353530883789,104.198211669922,160.024169921875,-194.159027099609,-16.7250347137451,144.934692382813,-195.087112426758,-48.7299728393555,147.076904296875,-199.48454284668,-31.3233642578125,149.027099609375,-199.285537719727,-23.5150012969971,145.208724975586,-199.660568237305,-38.3671531677246,128.808120727539,-201.569747924805,-57.8454666137695,122.611511230469,-201.691757202148,-62.0380783081055,138.332046508789,-194.631072998047,-58.3008117675781,\r\n103.472633361816,-200.580657958984,-74.5779037475586,119.516204833984,-201.450744628906,-64.2645874023438,248.834869384766,-162.751937866211,39.5315742492676,247.608764648438,-162.616928100586,33.4134750366211,245.44255065918,-162.962982177734,25.8033332824707,228.699905395508,-182.150848388672,5.78316020965576,243.920394897461,-167.857452392578,25.3214855194092,238.938903808594,-175.114166259766,19.1796817779541,222.451293945313,-186.777297973633,0.783276975154877,214.121490478516,-185.830200195313,-7.10332202911377,203.903472900391,-192.688873291016,-10.386513710022,190.151138305664,-191.642776489258,-16.1408767700195,175.548706054688,-199.13151550293,-15.0322685241699,179.336059570313,-197.781372070313,-14.9951658248901,248.543853759766,-157.799453735352,56.9352836608887,246.063613891602,-162.996978759766,66.2141876220703,239.274932861328,-162.471908569336,81.2560653686523,243.438354492188,-168.215484619141,72.1845779418945,202.509338378906,-194.358047485352,102.830085754395,215.189575195313,-187.445373535156,96.287841796875,230.195053100586,-170.901748657227,91.2934494018555,7.39153909683228,225.15705871582,-84.0553359985352,11.3855104446411,225.946136474609,-87.2083435058594,178.755004882813,-217.939361572266,93.2710418701172,188.007919311523,-208.170394897461,99.831184387207,150.458236694336,-228.89143371582,89.0425338745117,169.557098388672,-221.421691894531,92.167236328125,195.437652587891,-204.440032958984,98.7606887817383,163.910552978516,-194.51106262207,-16.0974731445313,167.554916381836,-190.464660644531,-16.4309062957764,154.826675415039,-200.503646850586,-16.7209339141846,151.740371704102,-199.531539916992,-19.551513671875,143.159530639648,-199.770584106445,-44.6144676208496,141.737380981445,-195.085113525391,-53.994686126709,128.247055053711,-206.247222900391,-52.6091537475586,125.381774902344,-201.764770507813,-60.0019760131836,138.926116943359,-199.146514892578,-52.5261421203613,96.8506851196289,-205.510147094727,-75.5277938842773,110.894355773926,-205.779159545898,-69.1174697875977,104.880767822266,-204.649047851563,-72.5864105224609,\r\n100.258323669434,-205.19010925293,-74.4214935302734,116.438911437988,-206.035186767578,-65.2443923950195,249.146911621094,-162.185897827148,44.0927276611328,227.154754638672,-186.856307983398,6.4653468132019,241.511169433594,-176.465286254883,27.751823425293,235.755599975586,-185.768203735352,19.9174556732178,232.985336303711,-186.225250244141,14.97887134552,213.782440185547,-193.147918701172,-3.19367909431458,209.425003051758,-192.604873657227,-7.05885791778564,199.286010742188,-196.659271240234,-10.8945636749268,190.755187988281,-195.734176635742,-14.2436923980713,169.537109375,-200.740661621094,-15.3247976303101,182.026321411133,-197.965393066406,-14.5242204666138,247.964797973633,-162.722946166992,56.0624961853027,233.944427490234,-171.856842041016,85.523681640625,238.777893066406,-170.629730224609,79.7288131713867,239.619964599609,-175.973236083984,76.1191635131836,219.713012695313,-186.25325012207,93.4078598022461,225.630615234375,-180.674697875977,92.1591339111328,233.13134765625,-176.688323974609,84.9645309448242,16.7871398925781,223.768920898438,-89.7527923583984,183.103424072266,-215.906158447266,93.3190536499023,159.140075683594,-226.60319519043,88.383659362793,146.259826660156,-232.195755004883,85.7526016235352,152.056396484375,-230.755615234375,85.0625457763672,200.255126953125,-198.774490356445,100.918891906738,160.976257324219,-198.841491699219,-15.417106628418,155.590744018555,-205.699157714844,-14.8553524017334,140.856292724609,-199.959594726563,-48.5247535705566,143.53955078125,-204.476028442383,-27.5782985687256,141.705383300781,-204.435028076172,-34.5359802246094,139.648178100586,-203.953994750977,-41.4220542907715,124.663711547852,-206.593246459961,-55.6825523376465,119.945251464844,-206.902282714844,-61.8145523071289,122.535499572754,-206.554229736328,-58.4386215209961,248.098815917969,-166.042266845703,41.9463157653809,247.064697265625,-166.916351318359,36.8085136413574,237.636779785156,-185.802200317383,25.5702095031738,224.501495361328,-191.536773681641,6.82308292388916,204.765548706055,-196.571258544922,-7.97346782684326,\r\n175.068649291992,-205.825164794922,-12.5980310440063,167.867950439453,-205.647155761719,-14.231990814209,245.667572021484,-167.373397827148,64.4386215209961,246.919692993164,-167.287384033203,56.4416351318359,241.803176879883,-175.214172363281,71.6980285644531,211.789260864258,-194.471054077148,94.2308349609375,14.0464706420898,227.790328979492,-88.3708572387695,176.401779174805,-221.835739135742,88.363166809082,182.202362060547,-219.932540893555,87.5359802246094,167.055862426758,-224.667022705078,88.5961837768555,145.816787719727,-234.259948730469,81.3806762695313,206.474731445313,-199.195510864258,94.8893051147461,202.117309570313,-203.503936767578,94.2115325927734,151.046310424805,-205.089096069336,-16.5761222839355,147.180923461914,-204.015991210938,-19.6022167205811,136.686889648438,-204.835067749023,-44.9440002441406,145.035705566406,-204.058990478516,-23.0491542816162,123.983642578125,-211.302703857422,-52.0188941955566,133.61360168457,-204.870086669922,-49.2541236877441,100.129302978516,-209.865570068359,-73.5528030395508,94.7216796875,-214.843063354492,-73.4555892944336,113.160583496094,-210.424621582031,-67.6369247436523,105.466835021973,-210.042587280273,-71.5433044433594,116.877944946289,-211.527725219727,-64.5359191894531,246.898681640625,-169.121566772461,49.0629119873047,229.831008911133,-191.255737304688,14.3087062835693,242.833297729492,-180.170654296875,41.2766456604004,239.035919189453,-185.530166625977,31.0429458618164,235.727584838867,-190.640670776367,27.6862163543701,232.977325439453,-190.896713256836,19.9524593353271,211.029174804688,-197.55436706543,-2.02156400680542,193.28044128418,-201.289733886719,-10.3037061691284,199.573043823242,-201.913787841797,-6.92011499404907,189.257034301758,-201.682754516602,-11.2061939239502,183.008438110352,-206.358215332031,-9.90999698638916,243.806381225586,-173.31298828125,64.9332656860352,238.071823120117,-181.454772949219,74.8364334106445,212.429321289063,-198.37744140625,90.4070587158203,223.972442626953,-184.959121704102,90.3985595703125,233.234344482422,-181.058746337891,82.418083190918,\r\n192.091323852539,-214.766036987305,86.9544219970703,197.162826538086,-206.944274902344,94.0075149536133,165.281692504883,-227.097244262695,85.3867721557617,159.712142944336,-205.85417175293,-14.2586936950684,151.821380615234,-210.467636108398,-14.0466728210449,137.063934326172,-209.025482177734,-30.779712677002,138.902114868164,-209.60954284668,-23.8829364776611,133.908615112305,-209.877563476563,-35.7794036865234,132.061447143555,-209.650543212891,-40.1579322814941,126.189865112305,-210.986679077148,-48.8070793151855,122.642509460449,-211.292709350586,-55.1947059631348,121.39338684082,-211.191696166992,-58.4392204284668,98.0406036376953,-214.726043701172,-72.844841003418,109.741241455078,-210.239593505859,-69.5766143798828,119.827239990234,-211.907760620117,-61.2315979003906,242.594253540039,-181.379776000977,47.9403038024902,225.659606933594,-196.19921875,13.9498701095581,221.466201782227,-196.459259033203,8.33763122558594,203.576446533203,-202.022796630859,-3.90517902374268,196.504745483398,-201.398727416992,-8.97610569000244,166.577819824219,-210.496627807617,-12.1244850158691,177.848922729492,-211.752746582031,-8.62179088592529,245.165512084961,-172.255874633789,58.4086265563965,240.603073120117,-181.041748046875,68.5906219482422,177.544891357422,-223.482894897461,84.3430633544922,189.98811340332,-218.572418212891,81.7573165893555,155.295715332031,-232.093734741211,80.8437194824219,208.441925048828,-203.220916748047,89.2623443603516,204.779571533203,-206.595245361328,88.4654693603516,159.159103393555,-210.589630126953,-12.7443447113037,148.903091430664,-215.65412902832,-12.0592775344849,142.485458374023,-209.31950378418,-17.3735980987549,138.213043212891,-212.0087890625,-19.1557731628418,128.588088989258,-210.644638061523,-44.8196868896484,123.043548583984,-215.902145385742,-48.7881774902344,122.329483032227,-215.966171264648,-52.0223922729492,95.3264312744141,-224.36198425293,-68.9341506958008,113.163581848145,-214.724044799805,-66.7110366821289,108.74015045166,-215.314102172852,-68.786735534668,117.846046447754,-216.117172241211,-61.6298332214355,\r\n228.523880004883,-196.008209228516,19.5423183441162,240.596084594727,-185.757202148438,41.6595840454102,237.992813110352,-190.214645385742,40.3879585266113,231.242156982422,-195.460144042969,26.0088520050049,208.56494140625,-202.229827880859,0.763005971908569,193.390441894531,-206.793258666992,-4.84839105606079,190.159133911133,-206.522232055664,-7.0713791847229,201.728256225586,-207.519332885742,1.36602795124054,196.465744018555,-207.266311645508,-2.44267606735229,186.794799804688,-206.402236938477,-8.680006980896,181.846313476563,-214.289001464844,-4.92394876480103,241.743179321289,-181.140747070313,60.6894493103027,235.914611816406,-185.851211547852,74.3851928710938,238.410858154297,-185.806198120117,68.2400894165039,216.137680053711,-198.37043762207,86.0629348754883,231.185150146484,-185.593185424805,81.3823776245117,181.602294921875,-223.036849975586,81.5092926025391,198.217910766602,-214.971069335938,80.6482086181641,200.701156616211,-211.178695678711,85.4350738525391,169.694122314453,-228.299362182617,79.8278274536133,153.51953125,-235.04801940918,74.5398025512695,145.508758544922,-210.937683105469,-15.0171680450439,130.150238037109,-215.067077636719,-28.0252437591553,127.316970825195,-215.232086181641,-35.362060546875,133.334564208984,-214.517028808594,-22.8699378967285,127.07494354248,-212.608825683594,-41.7674903869629,124.011650085449,-216.066177368164,-44.7225799560547,120.647323608398,-216.071182250977,-57.3203125,89.8335952758789,-224.332992553711,-69.9318466186523,104.71475982666,-220.824630737305,-67.8104400634766,115.382804870605,-217.144271850586,-63.6424331665039,232.95832824707,-195.589172363281,33.9591293334961,223.810424804688,-200.636657714844,19.4898128509521,221.2841796875,-200.798690795898,14.1176872253418,216.08366394043,-201.754776000977,8.35442161560059,175.506698608398,-215.892150878906,-6.6226749420166,164.220581054688,-215.463119506836,-9.57868480682373,239.801986694336,-185.827209472656,60.4215240478516,227.012741088867,-191.509765625,80.4552841186523,197.297836303711,-217.089263916016,76.4658966064453,\r\n165.130676269531,-231.017639160156,76.2747802734375,211.302215576172,-204.138000488281,84.7329025268555,209.97607421875,-207.705352783203,81.0996551513672,157.319915771484,-215.388107299805,-10.4474201202393,139.660171508789,-220.211578369141,-11.6113338470459,134.120635986328,-218.301391601563,-16.263391494751,141.718383789063,-211.951766967773,-15.6362276077271,129.951232910156,-219.433502197266,-19.7355308532715,125.64380645752,-215.579116821289,-39.1575355529785,121.41739654541,-221.105667114258,-44.8039855957031,120.262283325195,-220.617614746094,-51.486644744873,90.7483901977539,-229.012451171875,-68.7012252807617,102.560539245605,-224.38298034668,-66.6537246704102,110.539329528809,-219.881546020508,-65.2854995727539,116.743934631348,-220.96565246582,-58.3541145324707,240.685073852539,-185.828201293945,47.7010765075684,225.871627807617,-200.474639892578,26.2329750061035,237.814804077148,-190.872711181641,48.2489318847656,234.63948059082,-194.748092651367,41.2854461669922,210.902160644531,-206.708251953125,9.27667331695557,192.760375976563,-213.236892700195,3.05729293823242,189.168029785156,-214.682037353516,1.63421404361725,186.64778137207,-212.621826171875,-3.08230805397034,197.773880004883,-211.952774047852,5.10525417327881,176.471786499023,-220.454605102539,-2.33817505836487,234.969512939453,-190.988723754883,68.5589218139648,229.291961669922,-191.940811157227,77.0609588623047,236.855712890625,-190.47966003418,61.813159942627,220.223083496094,-199.659561157227,79.9777374267578,174.689605712891,-228.599395751953,73.5134048461914,181.629287719727,-225.904144287109,73.0125579833984,211.372207641602,-209.177490234375,76.7361297607422,167.136871337891,-231.514694213867,73.2763824462891,155.547729492188,-221.320678710938,-6.82536506652832,145.526748657227,-220.265594482422,-10.0964860916138,127.802017211914,-219.909545898438,-22.6921195983887,125.033744812012,-220.255569458008,-28.1279525756836,123.379585266113,-219.755523681641,-37.0951309204102,118.314094543457,-221.116668701172,-55.5838432312012,96.2209243774414,-229.232467651367,-67.0093688964844,\r\n86.5162734985352,-229.328475952148,-69.5304107666016,104.999786376953,-226.525207519531,-64.0643768310547,108.614135742188,-226.095153808594,-61.9098625183105,111.570426940918,-226.532196044922,-58.7910575866699,229.512985229492,-200.529647827148,45.4348564147949,228.457885742188,-200.475631713867,36.6120948791504,218.361892700195,-205.957183837891,19.9392566680908,215.133575439453,-205.962188720703,13.3961172103882,203.203399658203,-211.842758178711,9.38037300109863,166.536819458008,-221.154663085938,-5.01357793807983,181.39826965332,-219.895538330078,0.678237020969391,170.868240356445,-221.113662719727,-3.78635692596436,232.962326049805,-190.326644897461,73.6424179077148,194.748580932617,-220.681625366211,69.4289093017578,209.190994262695,-211.874771118164,73.3359909057617,155.732757568359,-236.738189697266,67.1356811523438,216.158676147461,-203.731964111328,79.6840057373047,136.11784362793,-219.780532836914,-13.569525718689,141.307342529297,-225.768127441406,-7.24250602722168,127.238960266113,-225.538101196289,-15.7041358947754,123.559600830078,-220.519607543945,-32.7208023071289,118.989151000977,-228.516403198242,-33.7995071411133,116.489906311035,-230.796615600586,-40.9733123779297,115.611824035645,-228.349365234375,-49.6469612121582,91.3225402832031,-234.381958007813,-67.4770126342773,87.7151947021484,-233.561889648438,-68.9234466552734,100.899383544922,-229.250457763672,-65.0478668212891,234.157440185547,-195.620162963867,50.075611114502,220.748123168945,-206.467239379883,32.8737258911133,207.198791503906,-211.279708862305,12.4290218353271,185.624694824219,-222.762832641602,9.47484302520752,193.210418701172,-220.055557250977,12.7712545394897,161.470306396484,-220.856643676758,-6.27140092849731,176.114761352539,-223.212860107422,0.830779016017914,171.890335083008,-225.576110839844,1.8102810382843,232.23225402832,-195.747177124023,64.978874206543,229.765014648438,-195.653167724609,71.1689758300781,219.59001159668,-203.620956420898,74.5694122314453,168.13996887207,-233.113845825195,66.0080718994141,185.138626098633,-226.549194335938,64.2044982910156,\r\n205.650650024414,-216.00715637207,66.8928604125977,213.906448364258,-209.754547119141,70.7800369262695,146.926895141602,-225.942138671875,-5.4606819152832,135.088729858398,-225.547088623047,-9.6530818939209,131.475387573242,-224.042953491211,-13.2839975357056,123.054557800293,-226.984252929688,-21.6777191162109,120.62931060791,-229.130447387695,-25.1962642669678,120.24227142334,-234.434982299805,-13.4642162322998,109.30020904541,-235.985122680664,-51.4321365356445,93.9249954223633,-236.344161987305,-65.8377532958984,83.6126861572266,-233.700897216797,-69.6401138305664,103.992691040039,-231.601684570313,-61.8350524902344,107.778053283691,-235.416076660156,-54.5914459228516,222.956344604492,-205.797164916992,39.4784736633301,229.307968139648,-200.589660644531,51.3037300109863,211.077178955078,-210.778656005859,17.2222919464111,215.30158996582,-211.206695556641,32.7781143188477,179.881118774414,-223.000854492188,3.54221105575562,161.759338378906,-226.828231811523,-0.469545990228653,168.256988525391,-225.412094116211,-0.222902998328209,157.189895629883,-225.84912109375,-2.94161510467529,196.642761230469,-221.333679199219,62.6482429504395,154.12858581543,-238.377365112305,62.1732940673828,137.506973266602,-230.029541015625,-4.46238422393799,141.480361938477,-231.851715087891,-0.993664026260376,128.80712890625,-229.114440917969,-9.71827793121338,122.372489929199,-233.992935180664,-10.2359991073608,112.232490539551,-239.551467895508,-37.3889617919922,113.207588195801,-234.924026489258,-44.1478233337402,110.246299743652,-236.490173339844,-48.2682266235352,90.81298828125,-239.899520874023,-64.1023788452148,88.618278503418,-236.916213989258,-67.6995315551758,85.1167373657227,-238.577377319336,-67.1452713012695,101.787467956543,-234.891006469727,-61.936466217041,103.909683227539,-236.81120300293,-57.5564384460449,225.288558959961,-204.465042114258,46.5183639526367,227.777816772461,-200.635650634766,62.9284706115723,217.592819213867,-210.316619873047,39.7506980895996,213.677444458008,-210.552627563477,22.5562152862549,200.860168457031,-217.042266845703,16.2693977355957,\r\n182.842422485352,-226.93522644043,14.7011451721191,179.652099609375,-227.362274169922,11.2228031158447,165.405700683594,-224.891036987305,-1.78657102584839,174.918640136719,-226.368179321289,4.89008283615112,169.21907043457,-229.047439575195,6.31534194946289,225.751617431641,-201.070693969727,68.1341781616211,171.808334350586,-233.161849975586,58.7809638977051,188.620986938477,-225.949142456055,59.0205879211426,202.256301879883,-219.104461669922,59.9627799987793,210.852157592773,-213.612930297852,63.889965057373,219.040954589844,-206.753265380859,68.2770919799805,159.178100585938,-237.9453125,55.6590576171875,149.629150390625,-230.585601806641,-0.161340996623039,132.318450927734,-230.944625854492,-5.30731582641602,118.27808380127,-235.236053466797,-17.0167636871338,116.957954406738,-235.149047851563,-24.0223503112793,116.664421081543,-233.883926391602,-29.4874858856201,106.800964355469,-239.692489624023,-49.3885383605957,96.2532272338867,-238.770385742188,-62.6527328491211,81.0420379638672,-237.702301025391,-68.8861465454102,217.774841308594,-210.537628173828,46.0302124023438,223.487396240234,-205.683151245117,51.3749389648438,206.245712280273,-215.77815246582,23.216178894043,209.042984008789,-215.875152587891,32.8160209655762,211.19319152832,-215.103073120117,39.8816146850586,191.82829284668,-222.154769897461,15.4032125473022,165.178680419922,-229.270462036133,4.53971910476685,158.901062011719,-229.688507080078,1.65925598144531,172.674407958984,-229.942535400391,11.2065010070801,206.5107421875,-217.108276367188,58.7880630493164,135.162750244141,-234.756011962891,0.448936998844147,145.311737060547,-235.899124145508,6.59173917770386,124.654708862305,-233.388870239258,-6.90663290023804,116.121879577637,-238.992416381836,-15.7237367630005,114.339698791504,-239.251449584961,-25.175464630127,109.766250610352,-239.680480957031,-43.154224395752,105.995880126953,-241.378646850586,-45.2018241882324,93.4977569580078,-242.311737060547,-58.5760383605957,77.8913269042969,-242.019714355469,-65.1184768676758,100.146308898926,-238.564376831055,-59.8230590820313,\r\n100.730369567871,-241.774703979492,-52.7452659606934,222.147262573242,-205.581146240234,62.6374397277832,194.095520019531,-222.78483581543,22.5229110717773,187.218841552734,-225.772125244141,17.9209594726563,176.971832275391,-229.402481079102,13.6420412063599,160.761245727539,-231.714706420898,6.51477193832397,164.74462890625,-233.101837158203,13.2150983810425,163.636520385742,-238.42936706543,47.3400421142578,180.600189208984,-230.28157043457,53.4793434143066,194.405548095703,-223.963943481445,52.2261238098145,199.613052368164,-221.882736206055,45.4107513427734,217.075775146484,-210.012588500977,59.194507598877,211.203186035156,-214.374008178711,57.1476020812988,153.773559570313,-233.541885375977,6.12437391281128,126.469886779785,-234.275970458984,-3.90989899635315,129.152145385742,-236.332168579102,-0.280389010906219,139.033111572266,-236.62419128418,4.99799394607544,110.003273010254,-241.653686523438,-37.3106536865234,102.105499267578,-242.937805175781,-45.2873344421387,97.2131271362305,-241.844696044922,-57.0072822570801,90.1209182739258,-243.143814086914,-58.209300994873,85.9123077392578,-242.89680480957,-60.4165153503418,215.728637695313,-211.733749389648,50.584358215332,210.673126220703,-215.585113525391,46.8004875183105,202.713348388672,-219.85954284668,32.9806365966797,176.186767578125,-230.946624755859,18.4986152648926,183.59147644043,-228.249374389648,20.1044731140137,168.194976806641,-234.100936889648,20.4145050048828,169.095062255859,-236.501174926758,46.9763069152832,176.312774658203,-232.180755615234,53.3256301879883,131.137344360352,-239.539474487305,6.58478879928589,135.302749633789,-239.182434082031,8.35912322998047,138.74609375,-240.028518676758,13.1483917236328,144.228637695313,-239.104431152344,14.0841836929321,106.664947509766,-242.319747924805,-39.0265235900879,103.125602722168,-242.977798461914,-39.0487213134766,92.7040786743164,-243.529861450195,-52.9604835510254,98.5476531982422,-243.645874023438,-45.189323425293,205.399627685547,-218.774444580078,42.5793762207031,194.687576293945,-223.896942138672,31.2750682830811,\r\n154.225601196289,-237.123245239258,14.9296674728394,155.329711914063,-238.835403442383,21.9992599487305,168.73503112793,-237.019226074219,41.5316734313965,184.811599731445,-228.777420043945,46.8023872375488,174.687606811523,-234.042938232422,45.7606887817383,97.3637390136719,-243.348846435547,-51.1463088989258,198.622955322266,-222.378784179688,39.2733535766602,188.009918212891,-226.791213989258,26.1840686798096,181.224243164063,-230.144546508789,24.9750499725342,172.193359375,-233.985931396484,26.8811378479004,162.909469604492,-237.898315429688,29.3421783447266,148.140014648438,-240.503570556641,22.2567844390869,189.547073364258,-226.523208618164,35.0949401855469,179.684097290039,-231.535690307617,31.536693572998,177.403884887695,-232.971832275391,39.3287582397461,164.134582519531,-238.497375488281,36.0074310302734,-174.462600708008,145.823287963867,21.8729476928711,-169.839141845703,145.605270385742,24.9389476776123,-167.611938476563,145.051208496094,20.1123733520508,-177.387893676758,146.106307983398,29.7076148986816,-160.941268920898,144.503158569336,23.8450393676758,-171.970352172852,146.025314331055,15.6116333007813,-180.315185546875,145.435256958008,20.2889938354492,-180.36018371582,147.544464111328,45.3395462036133,-166.169799804688,146.080307006836,32.8624229431152,-159.402130126953,143.410049438477,17.6514339447021,-174.674621582031,146.039306640625,17.2834968566895,-165.922760009766,144.577163696289,15.9478664398193,-179.763122558594,145.688278198242,15.2569990158081,-183.573486328125,145.938293457031,33.8111152648926,-175.890747070313,147.529449462891,44.0563201904297,-154.439636230469,145.441253662109,33.3848762512207,-153.038497924805,142.832992553711,17.7451438903809,-176.594818115234,147.17741394043,10.1654996871948,-169.48811340332,145.92529296875,12.6679458618164,-183.667495727539,144.814193725586,18.8939552307129,-188.658996582031,145.104217529297,32.3168716430664,-185.64469909668,147.438446044922,49.5364608764648,-185.894714355469,147.665466308594,54.9001808166504,-156.843872070313,146.992401123047,45.3865509033203,\r\n-150.962295532227,143.854095458984,23.1478710174561,-158.372024536133,142.442962646484,13.3338098526001,-174.776626586914,148.709579467773,5.05756902694702,-171.966354370117,148.134506225586,5.8242039680481,-165.152694702148,144.686172485352,9.89240264892578,-180.057159423828,147.809478759766,56.6987571716309,-150.89729309082,146.092315673828,37.8306121826172,-147.5849609375,144.820190429688,27.2267723083496,-169.473114013672,147.620468139648,48.2975387573242,-160.284210205078,142.639984130859,10.6660490036011,-148.191024780273,142.788986206055,17.7382411956787,-155.286727905273,141.148818969727,11.0416860580444,-178.576995849609,149.809677124023,1.49973094463348,-180.347686767578,146.157318115234,12.2862777709961,-169.028076171875,147.572463989258,4.56829214096069,-180.752212524414,145.686767578125,13.7274656295776,-185.87321472168,144.219635009766,18.3478012084961,-187.888412475586,144.488662719727,24.5942134857178,-191.995315551758,146.79638671875,53.1140098571777,-176.810836791992,148.095504760742,70.4009017944336,-144.822708129883,146.622375488281,41.8574028015137,-145.653778076172,144.208129882813,21.6630268096924,-170.241195678711,148.125503540039,55.5579490661621,-150.638275146484,141.103820800781,12.9415721893311,-180.932235717773,146.626373291016,9.31555652618408,-175.965759277344,151.684860229492,-2.27439904212952,-172.974456787109,150.974807739258,-1.06752097606659,-169.877151489258,149.640670776367,-0.509046971797943,-161.295303344727,143.00700378418,7.26593589782715,-166.289794921875,147.055404663086,1.12581396102905,-181.741317749023,145.685272216797,12.1979341506958,-195.214630126953,144.904205322266,40.2963523864746,-193.654479980469,146.693374633789,61.3446159362793,-142.41845703125,146.291320800781,34.436580657959,-155.191711425781,147.685470581055,55.8593788146973,-144.149627685547,145.622268676758,29.0208473205566,-142.537475585938,145.638259887695,24.8834438323975,-162.093383789063,147.877502441406,57.4183311462402,-155.220703125,139.56266784668,5.43410587310791,-144.518676757813,143.227035522461,16.9954681396484,\r\n-147.461944580078,140.977813720703,13.1056880950928,-152.999496459961,139.734680175781,8.75991344451904,-179.614105224609,151.643859863281,-3.56829595565796,-156.735870361328,140.307754516602,1.50985205173492,-163.342498779297,145.504257202148,-0.345975995063782,-202.331329345703,144.488159179688,51.8092803955078,-201.016189575195,145.331237792969,62.9168701171875,-166.602828979492,148.281524658203,69.9235534667969,-184.560592651367,147.291427612305,72.7810363769531,-139.885208129883,146.560363769531,39.0121269226074,-136.024841308594,146.364349365234,45.0313186645508,-140.782302856445,146.036315917969,20.272388458252,-173.96955871582,154.555145263672,-8.00473117828369,-177.240875244141,154.877182006836,-9.05471420288086,-170.771240234375,153.464050292969,-7.54829597473145,-164.818649291992,148.299530029297,-5.07699394226074,-158.63005065918,141.971908569336,-0.491430014371872,-195.428665161133,146.286331176758,66.158088684082,-164.691635131836,147.970489501953,78.7258148193359,-176.313781738281,147.746475219727,77.1522674560547,-137.692001342773,147.056411743164,34.6492004394531,-139.680206298828,146.802383422852,29.2279663085938,-145.144729614258,147.077423095703,57.9953880310059,-137.723007202148,148.161529541016,25.541805267334,-152.501449584961,136.613388061523,-0.247264996170998,-140.605270385742,144.490158081055,15.2171945571899,-144.013610839844,141.243835449219,12.7729549407959,-166.746841430664,150.825790405273,-7.21431303024292,-157.022888183594,141.868896484375,-6.40401411056519,-161.470321655273,145.708282470703,-5.2640118598938,-208.662963867188,143.270034790039,56.7164611816406,-201.841293334961,144.467163085938,72.5729141235352,-155.184707641602,147.802474975586,75.2818832397461,-186.089752197266,146.530364990234,79.60400390625,-134.269668579102,146.71337890625,40.9919204711914,-152.824478149414,147.770477294922,71.3536987304688,-136.536880493164,146.073318481445,62.6884460449219,-135.257751464844,150.770767211914,20.9275531768799,-153.854583740234,137.963516235352,-3.95919394493103,-142.309448242188,142.867004394531,13.9950752258301,\r\n-136.638900756836,148.634567260742,17.1213817596436,-175.102661132813,159.203598022461,-16.6103248596191,-171.478317260742,157.656463623047,-14.9423599243164,-166.543823242188,154.18310546875,-13.4564151763916,-163.373519897461,151.108795166016,-12.7294435501099,-159.406127929688,145.800277709961,-9.984375,-207.108810424805,143.679077148438,61.7956581115723,-200.035110473633,144.211135864258,79.8479309082031,-154.342636108398,147.374435424805,80.1642608642578,-163.885559082031,146.981399536133,86.4708786010742,-175.266677856445,147.223419189453,82.209358215332,-131.434387207031,145.783279418945,47.5844650268555,-135.555786132813,148.507553100586,30.9159317016602,-134.121658325195,147.715484619141,36.1817474365234,-145.021713256836,147.192413330078,71.4208984375,-132.498489379883,151.731857299805,27.0976581573486,-150.94580078125,135.323760986328,0.46068200469017,-150.381240844727,133.818099975586,-6.15674877166748,-135.11474609375,147.815475463867,12.2964086532593,-178.496002197266,160.217697143555,-19.399097442627,-167.748947143555,156.824371337891,-16.6703281402588,-152.848480224609,137.728500366211,-8.71049976348877,-214.304504394531,140.774795532227,73.2014770507813,-147.717971801758,147.028411865234,77.7146148681641,-157.008895874023,146.899383544922,84.292366027832,-182.068344116211,146.22932434082,85.0218353271484,-186.545791625977,145.109222412109,88.5454788208008,-127.919036865234,146.436340332031,43.1060256958008,-130.504302978516,148.209533691406,37.5383796691895,-141.542373657227,146.233322143555,76.5835113525391,-132.255462646484,145.350234985352,57.609748840332,-131.059341430664,155.804275512695,18.5604228973389,-150.638763427734,134.059143066406,-1.51742696762085,-130.897323608398,153.347030639648,11.3843193054199,-173.231475830078,165.238189697266,-27.5272941589355,-175.943740844727,165.238189697266,-27.4639873504639,-169.528121948242,160.457717895508,-21.2837810516357,-158.212020874023,154.672149658203,-27.0076427459717,-161.980377197266,156.032287597656,-23.0599555969238,-158.031982421875,147.102416992188,-15.502815246582,\r\n-155.583755493164,142.697982788086,-12.8644571304321,-212.212295532227,140.671783447266,78.3827896118164,-147.42594909668,145.859298706055,85.6655960083008,-173.072463989258,146.061309814453,89.1915435791016,-154.372634887695,144.960205078125,92.4962692260742,-199.430038452148,143.783081054688,83.5214920043945,-126.549903869629,144.701171875,48.5410614013672,-131.467391967773,150.106704711914,32.4936904907227,-132.861526489258,145.108215332031,68.7863464355469,-128.864135742188,144.862197875977,51.4121437072754,-127.574012756348,159.002578735352,19.2498893737793,-130.729309082031,155.865280151367,14.603835105896,-151.25732421875,136.592376708984,-12.5363254547119,-135.284759521484,143.460052490234,8.51808929443359,-127.147964477539,154.158111572266,6.7211217880249,-181.349273681641,167.706436157227,-34.6154861450195,-165.320709228516,159.678634643555,-24.4832954406738,-158.76106262207,150.595748901367,-19.8627414703369,-165.067687988281,145.765289306641,92.0655212402344,-200.361129760742,142.372940063477,88.7093963623047,-125.472801208496,148.268524169922,39.3587608337402,-123.27458190918,145.180221557617,44.9473114013672,-127.537002563477,151.121795654297,33.8518218994141,-134.783706665039,144.816192626953,75.9552536010742,-128.655120849609,144.339141845703,57.3606224060059,-127.536003112793,154.621154785156,28.4734935760498,-124.878746032715,159.506622314453,22.9478530883789,-127.397987365723,159.440628051758,15.6687393188477,-149.425140380859,133.444076538086,-13.482816696167,-130.155258178711,146.259323120117,5.5927619934082,-126.977951049805,158.752563476563,11.5314340591431,-177.895935058594,171.205764770508,-39.2709465026855,-170.493209838867,166.29328918457,-30.8472194671631,-166.654846191406,163.850051879883,-30.2104568481445,-154.575653076172,152.197906494141,-29.9782333374023,-154.133605957031,147.543472290039,-24.5712032318115,-154.112609863281,144.462158203125,-20.133768081665,-152.188415527344,139.833709716797,-17.4506053924561,-218.529922485352,137.361465454102,82.1161499023438,-204.749557495117,141.363861083984,87.4921798706055,\r\n-142.471466064453,140.999801635742,102.897087097168,-133.071548461914,141.424850463867,94.5545654296875,-176.41178894043,143.221038818359,99.1316146850586,-156.052795410156,143.945098876953,96.8295974731445,-187.985931396484,143.833099365234,93.1134262084961,-124.151672363281,142.754989624023,53.8141746520996,-122.114471435547,142.98600769043,48.8629913330078,-130.084259033203,142.374938964844,84.9296264648438,-127.251968383789,143.617065429688,63.4485206604004,-120.247283935547,165.352203369141,16.3734073638916,-125.022758483887,159.811660766602,8.41852855682373,-125.422798156738,150.0537109375,2.4927179813385,-175.931747436523,177.054351806641,-50.1625137329102,-171.827346801758,171.200775146484,-39.6770820617676,-182.682418823242,174.300079345703,-48.1253128051758,-162.791458129883,162.353912353516,-32.8564147949219,-160.00617980957,159.23161315918,-31.9959335327148,-154.428634643555,154.724166870117,-34.8763160705566,-137.790008544922,141.456848144531,98.5607604980469,-167.239883422852,143.088027954102,100.985900878906,-161.646347045898,143.516571044922,98.9077453613281,-207.360824584961,139.397659301758,91.3080520629883,-190.984222412109,140.984802246094,100.619857788086,-120.751335144043,147.240432739258,41.2034378051758,-122.381500244141,151.533843994141,35.7301063537598,-120.028266906738,144.100112915039,45.0080146789551,-120.828346252441,159.854675292969,26.2640762329102,-127.016952514648,142.347946166992,77.2672729492188,-116.971961975098,165.612228393555,20.7019329071045,-122.478507995605,163.877044677734,14.0183782577515,-150.144226074219,138.219543457031,-21.3084850311279,-123.795639038086,159.00358581543,5.27867078781128,-122.872543334961,163.379013061523,10.9908800125122,-121.588424682617,158.523529052734,1.91178095340729,-179.591110229492,177.651412963867,-52.5091438293457,-166.840850830078,170.303695678711,-40.9984130859375,-165.265701293945,167.939468383789,-38.3622550964355,-162.610443115234,165.501220703125,-37.9382133483887,-151.695373535156,150.849792480469,-34.6942939758301,-150.521255493164,142.571975708008,-26.4967918395996,\r\n-221.48420715332,133.839126586914,89.4340667724609,-148.765090942383,140.782791137695,105.917381286621,-172.917449951172,139.555679321289,109.617744445801,-158.737060546875,142.943496704102,100.033355712891,-185.551681518555,139.910705566406,106.230407714844,-202.998397827148,138.403564453125,99.259033203125,-120.036270141602,140.789794921875,51.1817207336426,-120.171287536621,142.331451416016,47.7841835021973,-122.049468994141,141.176834106445,56.6150512695313,-124.894744873047,142.376953125,64.2627944946289,-116.885955810547,167.479415893555,16.9292640686035,-116.973960876465,168.696517944336,12.0468835830688,-121.719429016113,164.008071899414,8.41178798675537,-118.355102539063,156.353317260742,-2.56839799880981,-173.604507446289,178.060455322266,-52.6267547607422,-178.31298828125,184.444076538086,-65.9279556274414,-169.356094360352,172.039855957031,-42.677978515625,-181.574310302734,181.979843139648,-62.6919364929199,-158.982070922852,161.532821655273,-37.7348937988281,-149.50715637207,155.944274902344,-48.6156616210938,-217.634826660156,135.587295532227,89.7554016113281,-153.718566894531,140.74479675293,106.653457641602,-179.47509765625,140.069717407227,107.465530395508,-162.539428710938,137.383453369141,114.939262390137,-159.495635986328,141.642623901367,104.091201782227,-208.890975952148,136.962432861328,97.1553268432617,-195.419662475586,136.883407592773,108.852668762207,-189.209045410156,137.432479858398,110.995880126953,-117.595024108887,150.24072265625,37.7789077758789,-117.923065185547,146.351348876953,41.6498870849609,-117.9970703125,158.041488647461,29.9019336700439,-118.228088378906,141.676879882813,46.705379486084,-123.884643554688,141.140823364258,73.1877746582031,-109.648246765137,167.264389038086,23.3078861236572,-110.758361816406,172.027862548828,15.3094034194946,-120.765335083008,163.829055786133,5.21604490280151,-118.907157897949,159.594635009766,-0.831479012966156,-165.567733764648,173.890045166016,-49.846378326416,-161.658355712891,169.276580810547,-45.7860832214355,-159.676147460938,166.152282714844,-43.4211502075195,\r\n-153.454544067383,158.488540649414,-43.6854782104492,-222.511306762695,131.526901245117,93.6046752929688,-157.569946289063,141.343353271484,104.945289611816,-161.421325683594,141.941909790039,103.237121582031,-182.323364257813,137.32145690918,113.153091430664,-165.562728881836,135.255264282227,119.076667785645,-204.261520385742,135.463272094727,105.736366271973,-116.806945800781,155.510238647461,32.8252182006836,-115.981872558594,143.732086181641,43.0618209838867,-119.132179260254,141.233337402344,48.9435501098633,-117.864059448242,137.589492797852,55.9808883666992,-120.983360290527,139.881698608398,60.8394660949707,-109.823272705078,170.02766418457,19.7179355621338,-118.953163146973,163.929061889648,2.04535388946533,-117.246994018555,168.749542236328,7.68021583557129,-116.664932250977,163.832046508789,-1.13431704044342,-170.929244995117,177.644409179688,-53.2642135620117,-175.700729370117,185.765197753906,-68.5887145996094,-183.005447387695,185.439178466797,-70.9429473876953,-161.776351928711,172.246871948242,-51.3639297485352,-151.438339233398,163.11198425293,-55.3947257995605,-214.798553466797,133.341064453125,100.00350189209,-157.102890014648,138.511581420898,112.291007995605,-159.877166748047,135.582290649414,118.336601257324,-200.194122314453,133.923126220703,112.066986083984,-192.292343139648,134.944229125977,114.853256225586,-187.501892089844,134.315170288086,117.756538391113,-114.236694335938,148.314529418945,39.0619316101074,-113.657646179199,155.972290039063,33.045841217041,-110.201301574707,163.399002075195,27.1808662414551,-118.926406860352,140.212982177734,50.2623558044434,-117.422012329102,138.306549072266,51.5180511474609,-102.499542236328,176.261276245117,16.4883193969727,-105.61385345459,177.795425415039,9.78912258148193,-102.301528930664,179.15055847168,12.0081796646118,-117.390007019043,167.976470947266,4.77993202209473,-106.933982849121,177.792419433594,5.42129516601563,-113.474624633789,163.200988769531,-5.03391981124878,-180.133148193359,188.2314453125,-75.2264633178711,-158.575042724609,173.414001464844,-58.9742736816406,\r\n-167.249908447266,177.489395141602,-56.3150177001953,-156.885879516602,167.191390991211,-50.3602333068848,-157.694961547852,170.479705810547,-54.471134185791,-148.172027587891,160.704742431641,-59.8354606628418,-218.843948364258,130.958831787109,100.245826721191,-173.779541015625,132.675994873047,122.789031982422,-165.98176574707,132.041946411133,124.092163085938,-206.845779418945,132.525985717773,109.644744873047,-104.840782165527,166.049270629883,25.9957504272461,-118.272842407227,139.592178344727,50.3464393615723,-114.902763366699,134.471176147461,53.1618156433105,-116.965721130371,138.350555419922,50.5146026611328,-117.816551208496,139.636184692383,49.3429908752441,-102.263519287109,172.498901367188,20.9801597595215,-115.570823669434,168.649520874023,2.04664397239685,-112.588539123535,172.815933227539,4.91641521453857,-112.827560424805,157.666458129883,-7.34934616088867,-113.786651611328,168.597518920898,-1.20529401302338,-173.420501708984,185.810211181641,-69.6009140014648,-177.726928710938,190.627670288086,-80.1782531738281,-185.013641357422,188.912506103516,-80.9430313110352,-161.359313964844,176.240280151367,-61.1598892211914,-170.344192504883,183.994033813477,-67.9226455688477,-151.807373046875,169.590621948242,-67.2356872558594,-154.251617431641,167.763427734375,-56.7937622070313,-221.606231689453,127.390480041504,103.042106628418,-214.318511962891,130.891830444336,105.678359985352,-159.628158569336,132.522979736328,122.694030761719,-203.745468139648,130.520782470703,115.788345336914,-195.160629272461,131.469879150391,119.647727966309,-186.506774902344,126.523399353027,130.348785400391,-110.926376342773,152.84797668457,35.6553993225098,-98.6319732666016,177.9814453125,17.1392822265625,-96.6678848266602,183.473968505859,11.016583442688,-96.9667053222656,186.624282836914,3.04465198516846,-108.025085449219,176.824340820313,2.03091311454773,-106.497940063477,166.231292724609,-11.0482788085938,-111.716453552246,168.378494262695,-4.31945991516113,-182.317367553711,192.220825195313,-86.1695404052734,-157.646957397461,175.638214111328,-66.8460464477539,\r\n-155.277725219727,171.720825195313,-62.6697387695313,-164.481628417969,180.29167175293,-66.0303649902344,-147.741973876953,164.719146728516,-69.5034103393555,-217.121780395508,127.265472412109,109.331718444824,-171.929351806641,130.162750244141,126.655418395996,-165.004669189453,127.298477172852,129.595703125,-208.220916748047,127.526496887207,117.142486572266,-192.00732421875,129.376678466797,124.506202697754,-180.183166503906,125.891334533691,132.135955810547,-106.496940612793,159.286605834961,31.2126636505127,-98.6705703735352,170.984756469727,23.0728645324707,-116.509422302246,138.394561767578,49.5111541748047,-95.1452255249023,177.700408935547,18.907356262207,-102.626564025879,182.096832275391,1.7874790430069,-112.025482177734,172.609924316406,1.54854500293732,-108.581146240234,170.021667480469,-7.27176904678345,-101.817481994629,164.325103759766,-15.6278266906738,-110.28231048584,173.269989013672,-1.2287369966507,-170.52522277832,189.639587402344,-81.0579376220703,-175.438690185547,191.815795898438,-83.6181869506836,-179.562103271484,193.553970336914,-88.3955535888672,-187.673904418945,192.362838745117,-92.3894500732422,-159.373123168945,177.932434082031,-68.7630310058594,-166.593826293945,183.678009033203,-71.5207061767578,-150.301239013672,170.233673095703,-74.3911895751953,-222.678329467773,123.317085266113,107.821571350098,-168.247985839844,127.963539123535,129.354675292969,-201.575256347656,126.244369506836,124.468200683594,-195.545669555664,125.500297546387,129.179656982422,-187.323852539063,120.910850524902,137.663497924805,-95.0232162475586,182.55387878418,13.6538419723511,-90.3971633911133,190.171630859375,4.37721300125122,-97.6059722900391,186.819305419922,-1.25732004642487,-106.352928161621,177.988433837891,-1.22681605815887,-105.242820739746,171.203765869141,-10.3106060028076,-101.803482055664,159.68864440918,-16.4218063354492,-93.213134765625,175.669204711914,-19.9356498718262,-108.690155029297,173.147964477539,-4.43540096282959,-167.525909423828,187.457366943359,-78.9994430541992,-186.240768432617,197.062316894531,-103.157104492188,\r\n-155.89079284668,177.977447509766,-77.4791870117188,-162.179397583008,181.216766357422,-72.270378112793,-147.015914916992,164.986175537109,-75.4111862182617,-153.919586181641,180.116653442383,-89.2412414550781,-218.866958618164,123.972145080566,112.362014770508,-180.193161010742,122.076965332031,136.986419677734,-170.778244018555,121.322883605957,136.596389770508,-215.369613647461,123.304084777832,116.841453552246,-210.213119506836,123.668113708496,121.34489440918,-196.925796508789,122.729026794434,132.535995483398,-94.1023254394531,173.810028076172,21.7936401367188,-89.7864990234375,185.089141845703,13.342511177063,-90.2197494506836,188.157440185547,8.49271488189697,-91.3859634399414,191.110717773438,0.135174006223679,-102.73356628418,182.052841186523,-1.68381094932556,-103.762672424316,177.682403564453,-7.67641878128052,-97.4658584594727,175.509201049805,-16.1401767730713,-92.4617691040039,170.468704223633,-21.7180252075195,-105.359825134277,177.880432128906,-4.46590423583984,-172.131378173828,192.481857299805,-87.3317565917969,-165.729751586914,190.376663208008,-90.0217132568359,-175.896743774414,194.198028564453,-90.4124526977539,-183.350479125977,198.128402709961,-104.267211914063,-159.274108886719,181.574798583984,-78.5035858154297,-163.241500854492,183.723007202148,-76.3766784667969,-147.93701171875,169.904647827148,-84.3042602539063,-150.036209106445,174.950149536133,-89.3037490844727,-224.495498657227,119.106674194336,110.798858642578,-177.692916870117,118.807640075684,140.265747070313,-166.372802734375,119.114669799805,137.105438232422,-201.597259521484,122.652015686035,129.983734130859,-192.944412231445,118.119575500488,139.576690673828,-182.301361083984,118.173583984375,141.099838256836,-87.3550643920898,178.772521972656,19.2557907104492,-89.182243347168,181.356781005859,17.4001083374023,-80.385383605957,198.475448608398,-3.12206196784973,-101.549453735352,182.648895263672,-4.4222297668457,-90.2411499023438,192.855911254883,-6.01476621627808,-101.585464477539,177.50439453125,-10.8676614761353,-91.122932434082,162.452911376953,-23.5892086029053,\r\n-84.4875869750977,180.036636352539,-26.3604793548584,-92.5225677490234,181.773803710938,-18.2878894805908,-168.565017700195,191.731781005859,-89.3994522094727,-163.685546875,186.628295898438,-83.2668533325195,-188.991027832031,199.486541748047,-112.878059387207,-156.90087890625,182.021835327148,-85.6004867553711,-152.458450317383,182.675903320313,-105.837364196777,-221.161178588867,119.556716918945,115.487319946289,-169.255081176758,115.547325134277,141.197830200195,-174.270584106445,115.997367858887,142.198944091797,-215.111587524414,118.714637756348,123.432098388672,-202.379333496094,118.981658935547,134.191146850586,-196.921798706055,114.073173522949,142.690994262695,-190.574172973633,111.776954650879,146.892395019531,-81.1017532348633,193.712982177734,5.64955711364746,-84.5360870361328,185.086135864258,15.0026741027832,-79.966438293457,196.651275634766,1.39322996139526,-85.2845611572266,196.313247680664,-5.71411609649658,-97.568962097168,186.667297363281,-4.87087297439575,-100.389343261719,182.5048828125,-7.68572902679443,-98.708381652832,177.503387451172,-13.9975681304932,-88.3130569458008,170.4296875,-24.870433807373,-96.0904235839844,182.188858032227,-14.0922775268555,-171.914352416992,195.310134887695,-97.2030181884766,-161.046295166016,186.702301025391,-88.9898147583008,-166.020782470703,193.510971069336,-100.224815368652,-180.052154541016,198.231430053711,-104.056190490723,-184.954620361328,201.497741699219,-113.693138122559,-147.185928344727,170.265670776367,-90.7588958740234,-156.535842895508,186.095230102539,-99.5099487304688,-150.773284912109,178.515487670898,-99.6747589111328,-154.876678466797,185.658187866211,-105.242309570313,-226.651718139648,114.703239440918,112.543037414551,-218.213897705078,117.190483093262,122.096969604492,-180.108154296875,110.159797668457,148.228515625,-166.019775390625,113.790153503418,141.021820068359,-183.103439331055,113.418113708496,145.621276855469,-81.1869659423828,190.252639770508,10.3532180786133,-72.9316558837891,202.212814331055,-3.51642107963562,-80.1817626953125,199.672561645508,-6.98273992538452,\r\n-84.4899826049805,196.921295166016,-10.4428195953369,-96.1482238769531,187.229339599609,-7.67320823669434,-98.4990539550781,182.346862792969,-10.8824634552002,-85.5687866210938,164.531127929688,-27.0069427490234,-84.3818740844727,174.778121948242,-27.4394855499268,-84.6595993041992,184.647094726563,-24.6121063232422,-93.1037292480469,186.95832824707,-14.152382850647,-175.855743408203,198.584457397461,-106.354415893555,-161.665344238281,190.77668762207,-100.258819580078,-181.839324951172,201.303726196289,-112.372009277344,-190.034133911133,202.948883056641,-120.781829833984,-158.852081298828,188.532485961914,-100.290824890137,-148.556076049805,175.013153076172,-100.680862426758,-150.022201538086,179.864624023438,-109.494720458984,-154.059600830078,188.513473510742,-122.07795715332,-224.891540527344,113.269104003906,117.631530761719,-222.869354248047,112.316009521484,121.94295501709,-173.584518432617,109.0546875,147.542465209961,-166.069778442383,106.096397399902,145.955307006836,-217.552825927734,112.700050354004,128.543594360352,-194.192535400391,107.359519958496,150.194717407227,-199.522064208984,110.322807312012,145.428253173828,-82.1365509033203,181.902816772461,17.0243701934814,-75.6969223022461,195.966201782227,5.39718294143677,-79.3390808105469,186.264251708984,14.2544012069702,-70.2650833129883,201.878768920898,-0.754770994186401,-75.7219314575195,202.628845214844,-8.75547504425049,-91.6588821411133,191.283737182617,-9.61035823822021,-78.4548950195313,178.206451416016,-31.0866432189941,-74.0380630493164,188.769500732422,-31.5523872375488,-90.1905364990234,186.67529296875,-17.9994602203369,-94.9295043945313,187.10334777832,-10.9228658676147,-173.999557495117,200.705673217773,-115.088272094727,-171.274276733398,199.901596069336,-115.719329833984,-163.620529174805,195.864196777344,-116.373405456543,-177.882934570313,201.077697753906,-113.268096923828,-184.2265625,208.980484008789,-128.900619506836,-186.643798828125,206.181198120117,-124.05615234375,-158.698059082031,192.961898803711,-119.540710449219,-151.594360351563,184.916122436523,-121.344886779785,\r\n-157.019897460938,192.377838134766,-123.612113952637,-228.62890625,107.848564147949,117.066474914551,-223.369400024414,107.269515991211,127.93953704834,-229.733016967773,108.350616455078,113.527130126953,-169.012069702148,108.796661376953,145.905288696289,-173.903549194336,105.210304260254,150.374740600586,-204.253524780273,113.718147277832,138.679595947266,-75.7547302246094,190.903701782227,10.8091630935669,-64.5562286376953,207.760360717773,-7.19416093826294,-70.6175231933594,206.118209838867,-10.2937049865723,-80.589599609375,199.900588989258,-10.5879325866699,-89.202751159668,191.660781860352,-14.2663946151733,-78.955940246582,171.633819580078,-31.2334575653076,-76.4719009399414,183.139938354492,-31.4825801849365,-80.2729721069336,191.568771362305,-25.0152473449707,-84.975227355957,191.330749511719,-20.4950046539307,-166.957870483398,198.074401855469,-116.932456970215,-160.189193725586,192.245849609375,-111.579925537109,-180.830230712891,205.230117797852,-121.485900878906,-189.178039550781,215.11506652832,-141.297836303711,-150.209228515625,182.114852905273,-119.621215820313,-150.296234130859,184.466079711914,-127.141456604004,-155.383728027344,193.654983520508,-132.571990966797,-227.215774536133,105.879379272461,122.676025390625,-170.647216796875,102.760070800781,150.495758056641,-221.217178344727,104.007194519043,134.085144042969,-217.297805786133,108.309616088867,133.701110839844,-204.692565917969,104.743263244629,147.497467041016,-72.9186553955078,195.181121826172,7.57841682434082,-69.9056549072266,198.84748840332,3.95555090904236,-64.8788604736328,204.520034790039,-1.44726800918579,-74.3223876953125,204.394027709961,-14.103178024292,-79.4706954956055,200.511657714844,-13.8848571777344,-84.5753936767578,196.243225097656,-14.295597076416,-64.9629669189453,188.773498535156,-37.8677062988281,-67.0832824707031,178.702514648438,-37.9531173706055,-68.928955078125,196.783294677734,-32.3837699890137,-87.4553756713867,191.413757324219,-17.4136028289795,-173.931564331055,204.054992675781,-124.235176086426,-177.262878417969,203.732955932617,-120.458801269531,\r\n-168.910049438477,202.363830566406,-126.310371398926,-164.253601074219,198.299438476563,-123.026054382324,-182.272369384766,211.298706054688,-134.007125854492,-192.398361206055,211.04167175293,-136.500366210938,-160.355209350586,196.82829284668,-127.452484130859,-148.501052856445,179.846618652344,-123.562103271484,-158.741058349609,197.357330322266,-132.586990356445,-229.79801940918,101.669967651367,122.140975952148,-227.400787353516,101.623954772949,127.870529174805,-166.216796875,99.4942474365234,149.225631713867,-224.516494750977,101.920989990234,132.160949707031,-215.99967956543,103.29012298584,139.920715332031,-57.3035202026367,212.041778564453,-9.56082344055176,-65.21240234375,209.573532104492,-13.549524307251,-68.3711013793945,208.28141784668,-15.9538602828979,-81.3811798095703,195.989212036133,-20.4565010070801,-60.3705215454102,195.799179077148,-39.1686325073242,-75.5633163452148,195.924194335938,-26.8512287139893,-83.3321685791016,196.141220092773,-17.3808994293213,-179.502090454102,212.095779418945,-136.991409301758,-183.339477539063,215.442123413086,-141.508865356445,-186.32975769043,217.340301513672,-144.485153198242,-193.337448120117,213.856948852539,-142.70198059082,-151.775375366211,189.990615844727,-135.643295288086,-147.648971557617,180.085647583008,-131.154846191406,-156.638854980469,198.255416870117,-139.351638793945,-169.129089355469,96.8181915283203,152.687957763672,-56.2636184692383,209.454528808594,-4.88592481613159,-60.7551612854004,211.382705688477,-11.8070526123047,-72.319694519043,205.558135986328,-18.3259925842285,-78.358283996582,200.81169128418,-17.3878993988037,-59.6615524291992,184.165054321289,-42.2612380981445,-78.6784210205078,195.918197631836,-23.6130104064941,-59.6790542602539,201.304733276367,-37.2961502075195,-72.1408767700195,200.649673461914,-26.9456367492676,-56.2847213745117,191.825805664063,-43.2416343688965,-175.611709594727,208.845458984375,-133.149047851563,-172.207366943359,206.579254150391,-132.117950439453,-161.415313720703,200.041610717773,-133.221054077148,-189.843109130859,216.251693725586,-143.896591186523,\r\n-148.672073364258,184.971130371094,-137.122436523438,-153.277526855469,195.674179077148,-142.860000610352,-230.19206237793,97.3714447021484,126.403396606445,-52.910888671875,213.28190612793,-8.4725456237793,-57.8125686645508,213.96696472168,-15.4928140640259,-62.5841407775879,211.586730957031,-17.1611785888672,-66.6938400268555,209.091491699219,-21.021656036377,-76.8838424682617,200.754669189453,-20.53000831604,-67.9137573242188,200.64567565918,-31.0625400543213,-55.190013885498,201.985794067383,-40.7588920593262,-74.8227386474609,200.716674804688,-23.6676158905029,-54.8119773864746,197.501342773438,-42.7396850585938,-167.080871582031,206.005187988281,-137.841506958008,-161.54833984375,203.767974853516,-141.35383605957,-175.902740478516,212.134780883789,-139.642669677734,-181.069244384766,216.724243164063,-144.444152832031,-181.883331298828,221.653717041016,-151.717864990234,-190.508178710938,217.388305664063,-146.495346069336,-149.167114257813,190.606674194336,-146.370330810547,-153.350524902344,199.257537841797,-148.958587646484,-156.493835449219,201.617767333984,-146.217315673828,-231.790222167969,96.0684585571289,122.470001220703,-53.7788734436035,215.567123413086,-13.8549537658691,-71.1962814331055,205.004089355469,-22.9510459899902,-53.6811676025391,186.098236083984,-45.1311187744141,-62.7780570983887,205.7431640625,-31.6549968719482,-55.9860916137695,205.976181030273,-37.8327026367188,-67.7921524047852,205.384124755859,-27.0843505859375,-46.808292388916,203.283935546875,-46.0311088562012,-171.883346557617,212.945877075195,-144.842193603516,-177.071868896484,215.404098510742,-144.61116027832,-185.6376953125,221.798721313477,-152.560943603516,-150.732284545898,196.685272216797,-151.684860229492,-49.684871673584,216.81623840332,-11.8953619003296,-55.4296379089355,215.970169067383,-19.1413726806641,-60.3846206665039,213.206893920898,-20.5724124908447,-64.3581161499023,210.034591674805,-24.2370700836182,-48.4823532104492,192.852905273438,-47.0620079040527,-47.774486541748,206.430236816406,-44.2790336608887,-167.871963500977,210.430618286133,-144.745178222656,\r\n-162.928466796875,205.474136352539,-142.445953369141,-156.512847900391,204.809066772461,-151.052810668945,-178.697021484375,218.190383911133,-147.921478271484,-153.412536621094,203.897979736328,-155.328216552734,-51.050407409668,218.029357910156,-17.4897117614746,-48.6498718261719,186.265243530273,-47.2048225402832,-57.0426940917969,209.655532836914,-33.8573150634766,-62.6268424987793,210.012588500977,-27.1456565856934,-46.6854782104492,211.014678955078,-42.7125816345215,-35.0605430603027,213.372909545898,-51.1577072143555,-42.8549041748047,202.356842041016,-48.6800651550293,-161.443313598633,209.122497558594,-150.194717407227,-164.830657958984,213.48991394043,-152.270904541016,-169.449111938477,218.265396118164,-154.68115234375,-171.349304199219,221.504699707031,-157.739456176758,-178.025955200195,224.4169921875,-157.807464599609,-149.502166748047,204.245025634766,-164.019073486328,-46.5726661682129,219.763534545898,-15.2949953079224,-53.5319519042969,217.339294433594,-22.7835273742676,-58.6992568969727,214.108978271484,-23.8259315490723,-44.5360679626465,190.56867980957,-49.1428108215332,-60.2115058898926,209.947570800781,-30.1342487335205,-47.8120880126953,213.885971069336,-39.4782638549805,-38.5827865600586,214.473007202148,-47.8124809265137,-41.1842422485352,198.416442871094,-50.4177360534668,-158.654052734375,207.521347045898,-151.686859130859,-172.259384155273,224.98405456543,-161.899856567383,-151.529357910156,207.048294067383,-162.965957641602,-48.6183700561523,220.107574462891,-21.1427669525146,-54.9709930419922,214.653030395508,-30.2392597198486,-51.5466575622559,214.667037963867,-34.7300987243652,-57.0964012145996,214.436004638672,-26.9905414581299,-38.423770904541,218.539413452148,-45.3015365600586,-31.3166751861572,212.823852539063,-54.1401023864746,-31.4168834686279,219.531509399414,-51.3648262023926,-155.391723632813,212.102783203125,-162.439926147461,-154.973693847656,209.031478881836,-159.430618286133,-163.190490722656,216.347198486328,-158.100494384766,-165.65673828125,220.78564453125,-161.682846069336,\r\n-165.408721923828,224.671020507813,-166.99836730957,-151.641357421875,210.794662475586,-166.774353027344,-44.116527557373,222.401794433594,-19.2691841125488,-51.496150970459,218.486404418945,-26.3125743865967,-39.4452705383301,195.400146484375,-51.5949516296387,-44.7305870056152,219.427505493164,-37.0315246582031,-41.0857315063477,219.967559814453,-41.0644226074219,-31.5374946594238,208.121398925781,-54.9129791259766,-155.921783447266,216.452209472656,-166.968368530273,-147.93701171875,213.009872436523,-176.117263793945,-46.1886291503906,221.963745117188,-24.8488292694092,-34.3220710754395,200.620651245117,-54.0582962036133,-37.3947715759277,191.060729980469,-52.2182121276855,-49.4177474975586,219.183486938477,-29.8809242248535,-47.2159309387207,219.392501831055,-33.5252799987793,-31.0881519317627,226.224166870117,-46.3927421569824,-32.5836982727051,226.971252441406,-43.4250526428223,-25.0921630859375,219.620513916016,-57.115592956543,-28.8006286621094,206.748260498047,-56.8849678039551,-151.442337036133,214.580032348633,-171.433792114258,-156.749862670898,219.328506469727,-169.317596435547,-158.46403503418,222.546798706055,-171.292785644531,-145.97981262207,205.247116088867,-172.833923339844,-41.4449691772461,224.83903503418,-22.831033706665,-31.6279048919678,195.899200439453,-55.3009185791016,-34.5113372802734,193.479965209961,-53.7595634460449,-36.5501861572266,226.889236450195,-37.2876510620117,-40.791202545166,224.68701171875,-32.9063186645508,-28.8109283447266,224.329986572266,-50.7700691223145,-34.1829528808594,227.200256347656,-40.6849822998047,-21.7902393341064,217.834350585938,-60.2769012451172,-22.8569469451904,225.727127075195,-56.2469100952148,-152.880477905273,220.296585083008,-175.350189208984,-145.692779541016,209.504516601563,-177.556396484375,-43.9527130126953,223.205871582031,-28.6637058258057,-27.7476253509521,200.599655151367,-57.5578384399414,-26.2302742004395,233.846923828125,-43.2644348144531,-24.5119075775146,231.320678710938,-49.7714767456055,-29.8374290466309,232.195755004883,-38.4922676086426,\r\n-19.7085361480713,226.310165405273,-59.2648048400879,-21.2873916625977,210.883666992188,-61.2911987304688,-146.831893920898,215.606140136719,-182.302856445313,-150.036209106445,218.70344543457,-178.424468994141,-38.7479019165039,226.824234008789,-26.6954135894775,-33.5101890563965,230.432586669922,-33.2760581970215,-24.4562015533447,233.973937988281,-46.5978622436523,-22.6734275817871,231.11164855957,-52.6114501953125,-16.2768001556396,227.228256225586,-62.4973182678223,-17.9775676727295,233.556884765625,-57.12939453125,-24.4129962921143,205.21711730957,-59.5324287414551,-19.0672721862793,217.721328735352,-62.3514060974121,-143.897613525391,210.284606933594,-186.012222290039,-21.1728801727295,237.492263793945,-47.7228736877441,-17.1318836212158,214.723037719727,-63.8605537414551,-17.9097595214844,238.011337280273,-53.2537155151367,-13.6048383712769,224.117950439453,-65.8430480957031,-12.1345949172974,233.720901489258,-64.3824081420898,-11.6612482070923,219.979553222656,-67.7135314941406,-14.1156892776489,238.692398071289,-58.339714050293,-16.4929218292236,241.468673706055,-49.6327590942383,-12.4950294494629,228.754409790039,-65.9213562011719,-14.5009260177612,241.566665649414,-54.0638961791992,-6.80221223831177,224.379989624023,-71.6494140625,-8.95643329620361,228.883422851563,-69.3134841918945,-11.0294857025146,238.687393188477,-62.6386337280273,-11.4678287506104,242.983810424805,-57.7523574829102,-6.92899417877197,238.10432434082,-68.3501968383789,-6.14350700378418,234.414962768555,-70.9293441772461,-3.80117797851563,228.646392822266,-74.2783737182617,-8.06331634521484,242.598770141602,-63.3490028381348,-3.53472208976746,240.52458190918,-70.7141265869141,-5.03865909576416,243.20783996582,-66.4179077148438,-5.40402507781982,246.062103271484,-61.9384651184082,-0.696727991104126,233.422866821289,-76.7019119262695,6.35037708282471,231.262664794922,-83.3324584960938,0.00306800007820129,238.724395751953,-75.2509765625,4.15085077285767,237.351257324219,-79.904426574707,11.5959310531616,231.832717895508,-86.3228607177734,\r\n7.82041120529175,234.849014282227,-83.4646759033203,-135.528793334961,-214.519027709961,146.555374145508,-140.387268066406,-214.752044677734,143.757095336914,-135.856811523438,-210.057586669922,143.319046020508,-135.690795898438,-222.31379699707,150.553756713867,-130.969345092773,-209.872573852539,145.643280029297,-142.456466674805,-219.729522705078,144.471160888672,-138.753112792969,-222.940856933594,148.420547485352,-132.031433105469,-221.5537109375,152.694961547852,-131.133361816406,-206.219207763672,141.419860839844,-130.072250366211,-218.42041015625,151.895889282227,-145.435760498047,-220.298583984375,142.032928466797,-136.163848876953,-227.566299438477,152.297927856445,-132.928527832031,-226.584197998047,154.145095825195,-127.643013000488,-208.180404663086,144.689193725586,-127.320976257324,-212.453811645508,148.75358581543,-144.570678710938,-224.723022460938,144.485153198242,-129.293182373047,-225.338073730469,155.224212646484,-127.830032348633,-221.024658203125,153.852081298828,-126.986946105957,-204.169006347656,139.502670288086,-125.828834533691,-216.58122253418,152.098907470703,-149.164108276367,-231.109649658203,141.890914916992,-139.77619934082,-231.600692749023,150.588760375977,-133.287551879883,-231.251663208008,154.555145263672,-129.779220581055,-228.454391479492,155.553237915039,-123.542610168457,-209.178497314453,146.327346801758,-122.891548156738,-204.533050537109,140.472778320313,-122.982559204102,-212.53483581543,149.600662231445,-124.611717224121,-200.658676147461,133.598083496094,-145.066711425781,-231.366668701172,145.836288452148,-136.681900024414,-231.532684326172,152.893981933594,-124.686721801758,-229.368469238281,156.16130065918,-122.683532714844,-222.192779541016,154.863174438477,-119.247192382813,-217.077270507813,152.330932617188,-148.544052124023,-235.404067993164,143.20002746582,-153.652557373047,-236.072128295898,136.964416503906,-144.89469909668,-235.993133544922,146.354339599609,-138.182052612305,-235.40007019043,151.930892944336,-134.200653076172,-235.664093017578,153.880081176758,\r\n-127.555999755859,-233.24885559082,155.831268310547,-122.047470092773,-225.197067260742,155.776275634766,-118.135078430176,-208.045379638672,144.85319519043,-120.028266906738,-200.841690063477,135.008224487305,-113.841659545898,-212.466812133789,148.555572509766,-151.235336303711,-236.805206298828,140.366760253906,-140.963317871094,-237.580291748047,149.348648071289,-121.359397888184,-234.374969482422,155.936279296875,-119.798248291016,-229.567489624023,156.211318969727,-115.832855224609,-225.123062133789,154.889175415039,-117.151985168457,-220.569610595703,153.654052734375,-116.857955932617,-204.154006958008,139.791702270508,-119.857246398926,-198.134414672852,128.916625976563,-112.536529541016,-216.349197387695,150.68376159668,-149.263137817383,-238.638397216797,141.962905883789,-145.027725219727,-239.386459350586,144.793182373047,-137.744003295898,-239.17643737793,150.842788696289,-125.048759460449,-236.401168823242,155.485244750977,-113.767654418945,-208.887466430664,145.222229003906,-112.959571838379,-200.734664916992,133.158050537109,-112.339515686035,-196.474258422852,124.850242614746,-102.498550415039,-212.950866699219,144.806182861328,-149.257125854492,-240.26155090332,140.243743896484,-140.496276855469,-240.871612548828,147.101409912109,-131.867416381836,-239.074417114258,152.735961914063,-115.650833129883,-233.729904174805,155.598251342773,-123.36058807373,-238.729385375977,154.067108154297,-115.099784851074,-229.680511474609,155.541244506836,-110.318313598633,-220.880630493164,151.972885131836,-106.26692199707,-204.248016357422,136.761413574219,-105.905883789063,-208.695449829102,142.156921386719,-102.560554504395,-216.561218261719,146.961395263672,-144.252639770508,-242.012710571289,141.246856689453,-136.585891723633,-241.428649902344,148.459548950195,-117.136985778809,-237.54328918457,154.643157958984,-110.021286010742,-228.427383422852,153.833068847656,-110.129295349121,-224.289978027344,153.042999267578,-107.990089416504,-200.444641113281,131.733917236328,-111.586441040039,-198.546447753906,129.064651489258,\r\n-108.806167602539,-193.669982910156,120.810844421387,-97.5644683837891,-217.619338989258,146.08332824707,-99.4749526977539,-208.845458984375,140.399765014648,-139.371170043945,-242.590774536133,143.292053222656,-129.664215087891,-241.468673706055,150.013702392578,-110.302314758301,-236.885208129883,153.990081787109,-107.184013366699,-234.225952148438,153.42204284668,-116.751953125,-240.298538208008,151.765869140625,-105.006797790527,-228.056350708008,151.622863769531,-102.322532653809,-220.624618530273,148.420547485352,-104.281723022461,-200.671661376953,131.849914550781,-108.343124389648,-196.276229858398,125.738327026367,-98.7042770385742,-221.870742797852,147.736480712891,-96.5640640258789,-213.139892578125,143.473068237305,-132.163452148438,-242.919799804688,145.242233276367,-121.556411743164,-241.072616577148,150.852783203125,-110.993385314941,-239.913513183594,152.056900024414,-101.458442687988,-204.442031860352,136.130340576172,-105.118804931641,-196.494262695313,126.967445373535,-105.291816711426,-192.206832885742,122.412994384766,-106.80997467041,-190.843704223633,118.826644897461,-92.2225494384766,-221.296676635742,146.386352539063,-92.5706787109375,-216.958251953125,145.131225585938,-95.2981414794922,-207.978378295898,139.015625,-120.426307678223,-242.33674621582,147.122421264648,-107.496040344238,-239.054428100586,152.099899291992,-110.010284423828,-241.615676879883,148.798583984375,-103.134613037109,-233.433868408203,152.120910644531,-100.280334472656,-228.560394287109,150.106704711914,-95.8320007324219,-204.65104675293,135.696304321289,-99.1623229980469,-200.771667480469,132.370986938477,-101.932495117188,-196.408248901367,127.889541625977,-104.598754882813,-187.679382324219,119.192687988281,-93.002815246582,-227.810317993164,148.418548583984,-90.6612854003906,-213.347900390625,143.01301574707,-89.4548721313477,-208.032379150391,139.135635375977,-103.289627075195,-237.844299316406,151.604858398438,-101.834487915039,-192.085830688477,124.618217468262,-86.8550186157227,-216.425216674805,143.38005065918,\r\n-92.5012664794922,-204.248016357422,135.719299316406,-105.076805114746,-241.194641113281,148.951599121094,-97.8418960571289,-233.421875,150.89079284668,-94.5424652099609,-200.593658447266,132.446975708008,-98.7626876831055,-196.248229980469,128.789627075195,-97.1646270751953,-191.775802612305,126.857429504395,-101.630462646484,-187.727401733398,122.400993347168,-104.943786621094,-182.82991027832,115.780349731445,-83.5460891723633,-217.921340942383,142.700988769531,-83.0510482788086,-212.951873779297,140.372756958008,-88.3448638916016,-206.311218261719,137.464462280273,-98.178825378418,-239.943511962891,148.867599487305,-97.8066864013672,-236.71418762207,150.97380065918,-91.1355361938477,-232.7578125,148.922592163086,-94.7506866455078,-195.945190429688,129.669708251953,-97.5428619384766,-187.420364379883,125.219268798828,-102.32852935791,-183.547988891602,119.875755310059,-82.9545288085938,-223.349884033203,143.835098266602,-88.8740158081055,-200.602645874023,133.551086425781,-92.9857177734375,-236.975219726563,149.159606933594,-85.3085708618164,-232.124755859375,146.946395874023,-90.1476364135742,-187.511367797852,128.783630371094,-98.68017578125,-182.66389465332,123.348091125488,-101.358436584473,-178.964538574219,119.787742614746,-79.017448425293,-224.043960571289,142.400955200195,-79.4884948730469,-216.476211547852,140.922821044922,-83.066047668457,-207.544342041016,137.319458007813,-88.1150436401367,-236.565185546875,147.858489990234,-86.6527938842773,-195.711181640625,131.895935058594,-91.5835800170898,-191.666778564453,129.052642822266,-94.9545135498047,-182.779907226563,126.080352783203,-81.4852905273438,-230.230560302734,144.7841796875,-79.297477722168,-209.629531860352,138.386566162109,-83.452880859375,-201.180709838867,134.046127319336,-94.2464447021484,-240.354553222656,146.438354492188,-90.2632446289063,-239.904510498047,146.018310546875,-84.1427536010742,-234.973022460938,146.608367919922,-89.1522445678711,-182.440887451172,129.067642211914,-86.4729843139648,-191.180740356445,130.735809326172,-97.03271484375,-178.640502929688,124.424194335938,\r\n-103.735664367676,-172.843933105469,116.142387390137,-75.9702529907227,-231.635711669922,142.790008544922,-76.3604888916016,-214.435012817383,139.274658203125,-86.6569976806641,-239.077423095703,145.889297485352,-80.4358901977539,-195.807174682617,132.429977416992,-85.6179962158203,-185.222137451172,130.385787963867,-93.5162658691406,-177.534393310547,127.146461486816,-101.12841796875,-172.588912963867,119.586723327637,-78.7979278564453,-235.691101074219,144.217147827148,-73.1500701904297,-226.736221313477,141.212829589844,-76.2422714233398,-208.286422729492,137.366470336914,-79.525993347168,-200.653671264648,134.121154785156,-82.6655044555664,-238.391357421875,144.93620300293,-82.8874282836914,-191.608764648438,131.482894897461,-86.2881622314453,-171.423797607422,131.767913818359,-88.6786956787109,-168.962554931641,130.899826049805,-96.6663818359375,-171.290786743164,124.559211730957,-105.929885864258,-161.492828369141,113.624137878418,-73.8050384521484,-236.498184204102,142.716995239258,-71.0579681396484,-232.527786254883,143.083023071289,-72.2278823852539,-217.669326782227,139.073638916016,-72.4777069091797,-213.515914916992,137.988525390625,-75.8799438476563,-200.207626342773,133.619110107422,-78.7048187255859,-191.135726928711,131.578903198242,-82.6348037719727,-180.913726806641,131.456893920898,-90.9695129394531,-163.270004272461,129.897735595703,-81.8405227661133,-186.850311279297,131.32487487793,-93.5940780639648,-157.791458129883,128.253570556641,-102.044509887695,-161.502822875977,118.807647705078,-69.807746887207,-224.689025878906,141.754898071289,-69.0674743652344,-219.273483276367,140.399765014648,-72.6113204956055,-207.060287475586,135.702301025391,-74.659423828125,-195.969192504883,132.070953369141,-82.6345977783203,-170.72673034668,133.11604309082,-89.16064453125,-158.245498657227,131.603912353516,-98.5343627929688,-156.719345092773,123.46410369873,-105.300819396973,-156.969375610352,115.139289855957,-70.6529235839844,-237.453262329102,143.279052734375,-68.5270156860352,-228.312362670898,145.034210205078,\r\n-68.2478942871094,-214.873062133789,138.827606201172,-69.6021270751953,-212.49983215332,137.067443847656,-70.5497207641602,-202.878875732422,133.565093994141,-70.193489074707,-187.895416259766,130.998840332031,-76.0373611450195,-186.976318359375,131.436889648438,-78.2657699584961,-181.442779541016,131.848922729492,-82.5960006713867,-161.547821044922,134.338165283203,-85.8032150268555,-158.780563354492,133.505081176758,-94.1188278198242,-150.771774291992,128.532592773438,-68.7116394042969,-234.59098815918,145.471267700195,-65.5561294555664,-222.991851806641,148.144515991211,-67.1578903198242,-219.097473144531,143.06901550293,-65.5273284912109,-213.880966186523,141.253845214844,-67.7650451660156,-206.102203369141,134.303161621094,-66.4941177368164,-200.676666259766,132.546997070313,-68.4454116821289,-193.843994140625,131.273880004883,-79.3838882446289,-171.939849853516,133.399078369141,-86.0938415527344,-150.298721313477,134.862228393555,-89.8193130493164,-144.985198974609,132.921020507813,-100.608360290527,-151.894882202148,122.009956359863,-68.4110107421875,-239.205444335938,144.505157470703,-65.6914443969727,-227.123260498047,148.945602416992,-64.6160354614258,-218.411407470703,147.285430908203,-65.4020156860352,-209.412521362305,136.411376953125,-70.6525268554688,-182.539886474609,131.167861938477,-65.0430755615234,-187.357360839844,129.843719482422,-79.4160842895508,-162.880966186523,134.794204711914,-82.3422775268555,-152.013885498047,136.261367797852,-76.3911895751953,-174.632110595703,133.003036499023,-97.1775283813477,-147.839477539063,126.39338684082,-92.1117324829102,-141.914901733398,131.943939208984,-66.3509063720703,-236.619186401367,147.825485229492,-64.0882873535156,-231.698699951172,151.109817504883,-59.4315299987793,-222.483810424805,155.175216674805,-60.0757904052734,-227.130264282227,155.73127746582,-64.213996887207,-214.34001159668,144.457153320313,-62.0240821838379,-206.442230224609,137.108444213867,-63.4637222290039,-204.059997558594,134.214141845703,-64.4365234375,-196.831283569336,131.183853149414,\r\n-66.4613189697266,-181.298767089844,130.458786010742,-62.146598815918,-191.659790039063,129.442687988281,-71.5831146240234,-177.540390014648,132.025939941406,-76.1830673217773,-164.835159301758,134.809204101563,-83.7272033691406,-141.285842895508,136.413375854492,-101.758476257324,-147.255432128906,122.621017456055,-88.4615707397461,-138.425567626953,134.85221862793,-104.650756835938,-147.157424926758,119.981758117676,-65.2416000366211,-240.35856628418,145.826293945313,-60.8801727294922,-231.486694335938,155.166213989258,-57.922679901123,-218.361389160156,154.794174194336,-61.9751777648926,-214.328994750977,147.896484375,-61.1136932373047,-209.904571533203,144.902206420898,-58.856071472168,-206.019180297852,143.041015625,-63.1403923034668,-200.366638183594,132.445983886719,-56.7508659362793,-187.316360473633,127.190467834473,-62.2642097473145,-182.901931762695,128.988647460938,-77.8459320068359,-154.988189697266,136.973419189453,-71.607421875,-168.885559082031,134.012130737305,-77.452995300293,-150.091705322266,137.750503540039,-95.4667587280273,-141.347854614258,129.922744750977,-98.7332763671875,-142.310943603516,127.540504455566,-91.7528915405273,-136.04133605957,134.23616027832,-63.2955093383789,-237.721298217773,150.262725830078,-60.97998046875,-235.738098144531,154.444137573242,-55.3154258728027,-222.388793945313,162.579940795898,-58.5932464599609,-233.374877929688,158.427536010742,-59.7487602233887,-201.903793334961,134.637191772461,-57.8038711547852,-202.180801391602,137.792495727539,-59.3550224304199,-195.471145629883,130.109756469727,-60.3810234069824,-199.354537963867,132.051956176758,-64.1146926879883,-169.382598876953,132.169952392578,-57.2184143066406,-191.653778076172,128.384582519531,-62.6475448608398,-179.071548461914,129.638702392578,-71.6740341186523,-155.792251586914,137.590484619141,-72.9193572998047,-163.832046508789,135.313262939453,-76.6249160766602,-141.988922119141,138.501571655273,-83.6646041870117,-136.548385620117,137.302459716797,-87.2066497802734,-131.744903564453,137.924514770508,-60.8647727966309,-241.218643188477,148.266540527344,\r\n-55.5952529907227,-226.470184326172,163.085983276367,-55.8692779541016,-213.690933227539,153.643051147461,-53.9002876281738,-218.1923828125,161.815872192383,-58.5219383239746,-210.515625,148.662567138672,-56.6721611022949,-206.021194458008,146.12532043457,-54.921688079834,-201.873779296875,142.713989257813,-53.1999206542969,-190.830688476563,127.822532653809,-53.2967262268066,-183.122940063477,125.587310791016,-73.2040786743164,-153.348022460938,137.946517944336,-64.3815155029297,-164.144088745117,133.778121948242,-69.6354293823242,-162.183898925781,135.68229675293,-100.91039276123,-134.208160400391,130.933822631836,-102.085510253906,-137.262451171875,128.564605712891,-89.7883987426758,-127.428489685059,138.942626953125,-105.812873840332,-137.818496704102,125.859329223633,-60.2311058044434,-239.579483032227,152.30793762207,-58.4288330078125,-238.196350097656,156.344329833984,-53.2207183837891,-222.606826782227,164.992172241211,-52.8730850219727,-214.127975463867,159.224609375,-55.328125,-232.043731689453,163.135986328125,-54.9931945800781,-198.15641784668,135.096237182617,-51.6571655273438,-197.199310302734,139.384674072266,-55.4328384399414,-194.589080810547,129.969741821289,-56.8663787841797,-198.000411987305,132.385986328125,-59.3907279968262,-170.971755981445,130.028747558594,-51.6252632141113,-187.535369873047,125.760322570801,-48.5333633422852,-178.055435180664,124.220176696777,-69.4066009521484,-146.719375610352,138.840606689453,-59.3226203918457,-162.822967529297,132.288970947266,-72.6015167236328,-142.884002685547,138.964614868164,-81.0482482910156,-134.497177124023,138.447570800781,-95.7810897827148,-128.485595703125,135.964324951172,-86.4180755615234,-124.032150268555,140.645782470703,-108.756164550781,-138.037536621094,124.10816192627,-57.4856414794922,-241.798690795898,149.746673583984,-56.6868591308594,-235.501068115234,160.353713989258,-53.343132019043,-228.208374023438,166.103271484375,-53.3941383361816,-208.990478515625,151.774871826172,-51.7476768493652,-210.022583007813,154.800186157227,-50.5892601013184,-213.88996887207,161.986877441406,\r\n-50.7984848022461,-218.37939453125,165.342193603516,-53.548454284668,-204.20100402832,147.236434936523,-49.1385192871094,-198.258422851563,143.750091552734,-52.5022506713867,-172.478912353516,126.665420532227,-48.9668045043945,-190.055633544922,127.704513549805,-52.0023002624512,-193.929000854492,131.325881958008,-46.6760787963867,-183.032928466797,123.487106323242,-65.8508605957031,-156.1123046875,136.980422973633,-66.7809524536133,-148.826583862305,138.398559570313,-63.1108894348145,-155.655258178711,136.379364013672,-78.2200698852539,-132.960037231445,138.979629516602,-102.366539001465,-127.596504211426,132.580993652344,-97.488655090332,-119.971755981445,138.564575195313,-89.6014862060547,-123.697120666504,140.098724365234,-105.792877197266,-131.505889892578,128.678619384766,-57.1384048461914,-240.926605224609,153.759078979492,-55.4826431274414,-239.292449951172,158.649551391602,-51.0658111572266,-226.578201293945,167.734451293945,-49.760082244873,-210.286605834961,158.689559936523,-49.9737014770508,-222.172775268555,167.533416748047,-51.8036842346191,-234.890014648438,166.490325927734,-53.8954887390137,-237.58528137207,162.37890625,-49.0615119934082,-193.987014770508,136.274368286133,-46.2971420288086,-193.75798034668,139.267654418945,-53.1470108032227,-162.690948486328,129.198654174805,-56.3087196350098,-161.4658203125,131.160858154297,-45.6246757507324,-186.66828918457,125.111267089844,-43.8209991455078,-178.307464599609,122.378997802734,-44.477367401123,-169.629623413086,123.937149047852,-65.3045043945313,-136.972427368164,138.790603637695,-68.7834396362305,-132.55598449707,139.081634521484,-60.1683044433594,-152.931991577148,135.883316040039,-82.2566604614258,-126.282371520996,140.053726196289,-98.9107971191406,-122.63801574707,136.929428100586,-86.4576797485352,-118.363594055176,141.425872802734,-108.941177368164,-128.768615722656,128.994644165039,-112.310516357422,-132.093933105469,126.701416015625,-54.5200462341309,-242.227737426758,148.862594604492,-50.4893531799316,-231.289657592773,168.162475585938,-49.2527313232422,-205.531143188477,151.482849121094,\r\n-46.8624000549316,-205.68115234375,154.75016784668,-46.7761917114258,-211.642730712891,163.609039306641,-45.6282768249512,-217.672332763672,167.975463867188,-41.6269836425781,-193.565963745117,142.441955566406,-44.6010780334473,-158.871566772461,126.401382446289,-57.4601364135742,-153.065994262695,134.225143432617,-46.4509544372559,-190.021621704102,129.492691040039,-42.6649856567383,-182.676895141602,122.616020202637,-63.2517051696777,-149.702667236328,137.579483032227,-61.6147422790527,-139.334655761719,137.963531494141,-74.7334289550781,-125.04125213623,139.536682128906,-80.8099212646484,-115.842353820801,142.024932861328,-105.883880615234,-127.215469360352,130.898834228516,-102.405540466309,-123.631118774414,134.963226318359,-101.932495117188,-119.054664611816,138.113525390625,-95.4149475097656,-117.69953918457,139.701705932617,-92.2747497558594,-115.464317321777,140.427764892578,-52.7348747253418,-241.525665283203,156.14729309082,-52.2151222229004,-240.534576416016,160.198699951172,-45.3982543945313,-227.275283813477,171.049758911133,-45.8609008789063,-231.838714599609,170.929748535156,-39.8174095153809,-201.897796630859,158.526550292969,-43.3865585327148,-205.642150878906,159.848663330078,-42.9907150268555,-222.548797607422,171.402801513672,-49.9435005187988,-238.938400268555,165.367202758789,-44.1708335876465,-197.504348754883,145.979309082031,-44.1531295776367,-190.062637329102,132.460983276367,-40.6824913024902,-189.969619750977,135.213256835938,-47.1166229248047,-150.411743164063,128.595596313477,-50.9679985046387,-153.902069091797,129.720718383789,-41.7911033630371,-186.110229492188,125.68132019043,-40.5981826782227,-166.533309936523,123.166076660156,-40.442569732666,-178.692520141602,121.434906005859,-40.5274772644043,-155.723251342773,125.514305114746,-59.7383613586426,-129.399673461914,138.789611816406,-63.1988983154297,-128.408584594727,139.395660400391,-54.6404571533203,-143.29704284668,134.386169433594,-58.4519348144531,-141.354858398438,136.714385986328,-71.5560150146484,-121.728927612305,139.846710205078,\r\n-75.8975448608398,-119.098670959473,140.576782226563,-75.683219909668,-109.346710205078,142.729995727539,-105.784873962402,-124.423194885254,133.36506652832,-98.1917266845703,-114.323196411133,140.295745849609,-85.568489074707,-111.280899047852,141.949905395508,-109.783264160156,-124.421188354492,132.415985107422,-112.448524475098,-128.29557800293,129.161666870117,-49.8382873535156,-242.142730712891,151.680877685547,-39.4542694091797,-197.201324462891,149.937683105469,-36.8581161499023,-197.252334594727,153.355026245117,-45.2553405761719,-213.705932617188,166.039276123047,-43.0641250610352,-209.27751159668,164.146087646484,-39.9496192932129,-217.120269775391,170.422698974609,-46.6667785644531,-238.133331298828,169.167587280273,-44.7491874694824,-235.431076049805,171.564804077148,-35.6380996704102,-189.887603759766,137.879516601563,-43.6697845458984,-147.739486694336,127.873527526855,-38.6848983764648,-182.251846313477,122.529014587402,-40.5678787231445,-146.461364746094,127.260475158691,-56.6558609008789,-130.885833740234,137.843521118164,-63.9010696411133,-122.095962524414,139.978713989258,-78.854133605957,-106.227409362793,143.467071533203,-106.307922363281,-121.013854980469,136.666397094727,-101.729476928711,-114.078178405762,141.106842041016,-94.9770126342773,-109.533737182617,140.929824829102,-82.4809875488281,-110.01978302002,142.667984008789,-88.7919998168945,-109.312713623047,141.179840087891,-117.618034362793,-122.758033752441,133.772125244141,-49.1996269226074,-241.918716430664,156.607345581055,-48.1736297607422,-241.039627075195,162.381912231445,-42.4851684570313,-226.061157226563,173.041961669922,-39.9372177124023,-230.988632202148,176.076248168945,-38.302360534668,-203.075897216797,161.834869384766,-35.0232391357422,-198.471450805664,158.562545776367,-41.4622688293457,-213.658935546875,167.757446289063,-36.9404258728027,-222.554809570313,176.025253295898,-45.9053039550781,-240.097534179688,166.965362548828,-38.4276695251465,-185.929214477539,126.993446350098,-38.0191307067871,-193.613967895508,144.984222412109,\r\n-33.2822685241699,-186.107238769531,130.738815307617,-47.1512260437012,-134.186157226563,132.27197265625,-50.6011657714844,-134.56217956543,134.078155517578,-37.4553756713867,-164.27409362793,123.418098449707,-37.3261642456055,-177.876419067383,121.778938293457,-37.2993583679199,-150.758773803711,126.178367614746,-59.9761848449707,-120.042762756348,139.664688110352,-53.4677467346191,-131.479873657227,136.385360717773,-64.0703811645508,-111.354911804199,139.848709106445,-72.0374603271484,-116.052375793457,140.312759399414,-72.6357269287109,-100.231819152832,143.132034301758,-111.448425292969,-121.567909240723,135.360275268555,-108.479133605957,-117.858551025391,139.448669433594,-104.812774658203,-114.254188537598,141.715896606445,-98.4951553344727,-109.041679382324,142.430953979492,-92.1406326293945,-105.809371948242,140.90380859375,-81.9831390380859,-104.515235900879,143.083023071289,-88.4209747314453,-103.793167114258,141.158828735352,-45.368049621582,-241.981704711914,157.773468017578,-35.1462516784668,-193.243942260742,147.219436645508,-31.6949100494385,-194.219024658203,152.802978515625,-40.104434967041,-208.125396728516,165.312194824219,-37.4428749084473,-217.886352539063,172.582916259766,-36.3062629699707,-208.188400268555,166.855346679688,-43.5962791442871,-239.066421508789,170.232696533203,-40.6911926269531,-234.690994262695,175.078155517578,-32.2656669616699,-189.796600341797,140.137725830078,-30.1312580108643,-185.564193725586,132.685012817383,-40.5942840576172,-131.330856323242,131.067840576172,-44.0555229187012,-126.932434082031,132.642990112305,-34.6420021057129,-181.902816772461,124.14217376709,-37.3067588806152,-138.544586181641,129.347671508789,-56.4625358581543,-116.290397644043,138.957626342773,-69.3994064331055,-101.003898620605,142.689987182617,-76.8040313720703,-99.1003112792969,143.084014892578,-101.564460754395,-109.432723999023,143.593078613281,-95.3967514038086,-104.544242858887,142.169937133789,-119.806243896484,-114.362205505371,139.346649169922,-39.7356986999512,-242.0537109375,150.02571105957,\r\n-44.2039375305176,-241.593688964844,162.880966186523,-37.9682235717773,-226.732223510742,176.899337768555,-34.0099411010742,-201.893783569336,163.730041503906,-30.7023124694824,-197.549362182617,160.424728393555,-33.4905853271484,-210.150604248047,168.617523193359,-34.4938850402832,-218.117370605469,174.819137573242,-40.9389190673828,-240.735595703125,168.733535766602,-40.9059143066406,-238.248352050781,173.004959106445,-37.0846405029297,-231.813720703125,177.558410644531,-30.6009044647217,-181.963836669922,128.199569702148,-46.703182220459,-122.434997558594,134.212142944336,-49.8404884338379,-126.104362487793,135.023239135742,-34.8645248413086,-177.775421142578,123.153076171875,-34.4978866577148,-163.071975708008,124.839233398438,-34.0205383300781,-149.420654296875,127.871528625488,-50.9769973754883,-116.76944732666,136.57438659668,-58.5591430664063,-107.314514160156,139.294647216797,-63.3991203308105,-105.564346313477,140.314758300781,-70.3932037353516,-95.2177276611328,143.763092041016,-73.0128631591797,-94.7915954589844,143.23503112793,-116.594932556152,-119.004661560059,136.936416625977,-108.967185974121,-114.118186950684,141.688888549805,-105.070808410645,-109.03067779541,144.239135742188,-99.0779190063477,-103.415130615234,144.729187011719,-91.7536926269531,-100.674865722656,141.198837280273,-82.4332885742188,-100.157814025879,142.312942504883,-37.5396842956543,-241.906707763672,164.574127197266,-34.7407073974609,-226.683212280273,178.07844543457,-31.8153228759766,-191.462768554688,145.690277099609,-27.9957485198975,-194.182022094727,155.001190185547,-30.9247360229492,-210.38362121582,169.934661865234,-33.2513618469238,-222.18977355957,177.458389282227,-31.0326461791992,-214.715042114258,173.902038574219,-28.6432113647461,-201.693756103516,165.888259887695,-37.5160827636719,-236.901214599609,176.023254394531,-27.3701877593994,-186.052230834961,136.007339477539,-28.2703742980957,-181.302764892578,131.189865112305,-37.4096717834473,-132.488983154297,131.214859008789,-40.8901100158691,-123.654113769531,132.981048583984,\r\n-43.7828979492188,-119.703727722168,134.011138916016,-32.1867599487305,-177.556396484375,125.711326599121,-34.2040596008301,-139.089630126953,130.830825805664,-49.773380279541,-107.835563659668,137.102432250977,-60.0706901550293,-103.174110412598,139.871719360352,-64.0586853027344,-100.053802490234,141.967910766602,-65.7935485839844,-90.3629608154297,145.133239746094,-76.8644332885742,-95.594367980957,142.414962768555,-101.52645111084,-104.823272705078,145.259231567383,-95.3999481201172,-96.7263793945313,143.927108764648,-82.7085113525391,-95.2470321655273,140.960815429688,-87.8901214599609,-98.7218704223633,140.536773681641,-119.698234558105,-109.140693664551,141.888916015625,-29.5565013885498,-242.134719848633,153.074005126953,-27.6148109436035,-190.336639404297,144.550170898438,-27.5983104705811,-197.616363525391,161.709854125977,-28.9570426940918,-208.651443481445,170.047668457031,-31.9418354034424,-218.664428710938,176.581314086914,-37.0077323913574,-239.739501953125,173.444000244141,-33.6030960083008,-235.033020019531,177.925430297852,-37.5597877502441,-123.624114990234,133.978134155273,-44.0990257263184,-112.100982666016,135.574279785156,-31.3791809082031,-152.630950927734,129.632705688477,-31.1939601898193,-142.982009887695,132.619995117188,-47.2190322875977,-108.576644897461,136.557373046875,-51.0769119262695,-99.4059448242188,137.644485473633,-54.8582801818848,-98.4032440185547,138.872604370117,-72.7539367675781,-86.4989776611328,144.62516784668,-69.563720703125,-85.6953964233398,145.538269042969,-75.7345275878906,-90.9941177368164,142.610977172852,-108.098091125488,-106.484436035156,144.782180786133,-104.72876739502,-103.652153015137,145.814300537109,-102.341529846191,-100.546852111816,146.066329956055,-90.27685546875,-93.6865768432617,141.593887329102,-98.4152450561523,-95.7014770507813,145.543258666992,-88.7554016113281,-95.8331909179688,140.662796020508,-27.7311210632324,-241.851699829102,166.890350341797,-35.0060348510742,-241.28564453125,170.266693115234,-32.0624504089355,-231.588684082031,178.859527587891,\r\n-30.6306076049805,-227.091247558594,178.882522583008,-24.6655216217041,-193.411956787109,153.016998291016,-30.1332588195801,-221.919738769531,178.252471923828,-28.588207244873,-218.042358398438,177.287368774414,-22.336893081665,-201.731781005859,168.692535400391,-34.7675132751465,-237.675277709961,176.630310058594,-24.8181381225586,-182.231857299805,136.043334960938,-24.7154273986816,-186.873306274414,138.787612915039,-27.5191020965576,-176.025238037109,132.454986572266,-34.1962547302246,-132.365966796875,133.599090576172,-40.5769805908203,-118.560623168945,134.393173217773,-31.8123226165771,-166.080276489258,127.073455810547,-31.1333560943604,-135.779312133789,136.216354370117,-47.1478233337402,-101.575958251953,137.115432739258,-59.132999420166,-97.4883499145508,140.975814819336,-63.1859970092773,-91.8945999145508,144.300140380859,-66.2477951049805,-85.4128723144531,145.774291992188,-79.3836898803711,-91.5471725463867,141.205841064453,-113.841659545898,-109.139694213867,142.606979370117,-94.4667587280273,-90.5268707275391,145.154235839844,-85.199348449707,-91.6932907104492,140.575775146484,-117.441009521484,-100.286827087402,145.63427734375,-24.4646034240723,-197.574356079102,162.335906982422,-23.7626342773438,-189.623580932617,143.690078735352,-27.246675491333,-214.020965576172,175.495208740234,-23.9486522674561,-208.010391235352,172.983947753906,-31.964937210083,-238.996429443359,175.434188842773,-25.4300975799561,-236.470184326172,178.384475708008,-34.8732223510742,-124.480201721191,135.927322387695,-37.202751159668,-119.008666992188,136.557373046875,-40.5899848937988,-113.427116394043,136.085327148438,-43.8014984130859,-105.652351379395,137.29345703125,-29.4820957183838,-152.388931274414,132.327972412109,-28.6686153411865,-136.580383300781,140.16374206543,-47.2040328979492,-96.9607009887695,137.739501953125,-50.2842330932617,-93.9484100341797,138.126541137695,-53.9474906921387,-91.0989227294922,139.747695922852,-63.1133880615234,-86.7049026489258,145.195236206055,-72.6648254394531,-80.3773727416992,144.852203369141,\r\n-78.7095184326172,-83.7030029296875,142.154922485352,-66.5317306518555,-78.5110931396484,145.862289428711,-111.087394714355,-96.5356597900391,146.375350952148,-111.040382385254,-101.932983398438,145.353240966797,-102.302528381348,-95.2827377319336,146.244338989258,-85.8054122924805,-82.3328704833984,142.9990234375,-98.2502365112305,-90.6221771240234,146.375350952148,-82.60009765625,-90.8238067626953,140.343765258789,-114.157691955566,-101.839981079102,144.937194824219,-123.098564147949,-99.060302734375,147.417449951172,-24.3475914001465,-240.956604003906,172.294891357422,-24.250581741333,-232.719818115234,179.446594238281,-26.5646095275879,-225.618103027344,179.03955078125,-20.8977546691895,-194.169021606445,155.401229858398,-21.1442775726318,-190.12663269043,146.526351928711,-25.3411884307861,-220.931655883789,178.526504516602,-23.0652656555176,-214.807052612305,177.381393432617,-21.239185333252,-205.433120727539,172.263885498047,-21.2514877319336,-198.388442993164,164.487121582031,-26.4044914245605,-239.3564453125,175.747222900391,-22.0234622955322,-185.696197509766,140.504776000977,-23.425500869751,-176.299270629883,138.734588623047,-28.7451229095459,-166.806335449219,131.153854370117,-26.4235954284668,-149.32763671875,137.762496948242,-26.5332050323486,-143.548065185547,139.90771484375,-33.3105697631836,-124.806228637695,138.064529418945,-43.9752159118652,-100.15380859375,138.639587402344,-60.2720108032227,-89.0396270751953,143.666076660156,-69.8229522705078,-76.1334609985352,145.442260742188,-62.9963760375977,-82.9940338134766,145.393249511719,-85.6222991943359,-86.5445861816406,141.695877075195,-90.9321136474609,-81.9807357788086,145.9453125,-94.9037017822266,-82.6274948120117,147.665481567383,-114.703742980957,-95.1661224365234,147.090408325195,-120.349296569824,-94.7082748413086,148.906600952148,-20.7577381134033,-241.835693359375,168.356506347656,-22.7883396148682,-212.23779296875,176.259262084961,-17.9963703155518,-201.694763183594,169.058563232422,-21.0486698150635,-235.965118408203,178.750518798828,-21.0049629211426,-180.875732421875,141.452865600586,\r\n-39.6097831726074,-109.108688354492,139.360656738281,-26.3622875213623,-155.845275878906,136.436370849609,-25.3821926116943,-136.887405395508,146.186325073242,-28.7937278747559,-128.608596801758,145.05322265625,-40.9195137023926,-104.385231018066,140.37776184082,-47.3194427490234,-89.5672760009766,138.801605224609,-44.0478248596191,-95.6712799072266,139.93571472168,-50.247730255127,-83.3304672241211,139.413665771484,-56.3761291503906,-83.1306457519531,141.893905639648,-73.620719909668,-66.6197280883789,143.230041503906,-79.1601638793945,-77.6045074462891,141.972915649414,-63.5501365661621,-78.0971527099609,144.973205566406,-66.7484436035156,-73.5397109985352,145.058212280273,-81.9840393066406,-82.4261779785156,141.721893310547,-102.777572631836,-90.8179016113281,146.8583984375,-83.3507766723633,-77.5191955566406,142.319961547852,-99.7960891723633,-81.8410186767578,149.38264465332,-124.915740966797,-94.7275848388672,148.594573974609,-127.11296081543,-100.091812133789,146.343338012695,-17.1498851776123,-240.230545043945,173.164978027344,-19.6619319915771,-238.220352172852,176.899337768555,-19.7439384460449,-232.37077331543,178.920547485352,-19.5782241821289,-221.065673828125,178.4384765625,-16.6006317138672,-197.122314453125,161.469818115234,-17.9605655670166,-189.872604370117,148.196517944336,-18.7203407287598,-185.801208496094,144.297134399414,-20.4676094055176,-215.509124755859,177.618408203125,-17.8151512145996,-206.376220703125,173.550003051758,-17.5324230194092,-180.650695800781,146.466354370117,-23.7610340118408,-168.130477905273,138.684585571289,-34.4408798217773,-117.963562011719,141.577880859375,-21.1144752502441,-154.112106323242,143.544067382813,-22.2307834625244,-149.599670410156,143.358047485352,-19.374002456665,-148.434539794922,148.192520141602,-31.6980113983154,-120.094772338867,144.900207519531,-41.0655288696289,-100.429840087891,142.104934692383,-53.3359298706055,-82.214958190918,140.539779663086,-69.5106201171875,-68.4743041992188,144.624176025391,-75.5616073608398,-71.1632766723633,142.830001831055,\r\n-59.4783325195313,-77.1343612670898,143.133041381836,-107.076995849609,-89.8736038208008,147.28742980957,-89.8663101196289,-77.9809417724609,145.935302734375,-97.1945266723633,-77.058952331543,149.416641235352,-110.977378845215,-90.9292144775391,147.45344543457,-117.392013549805,-90.3448486328125,149.406646728516,-124.530708312988,-91.0326156616211,149.217636108398,-17.5883293151855,-193.098922729492,153.211013793945,-17.4903182983398,-209.307510375977,175.177169799805,-12.2382040023804,-205.014099121094,171.840835571289,-10.7485580444336,-201.566741943359,167.634429931641,-17.2726974487305,-234.736999511719,178.297485351563,-14.5603322982788,-175.728210449219,152.054901123047,-19.4861145019531,-167.347396850586,144.715179443359,-35.8429183959961,-109.112693786621,146.764389038086,-38.2769546508789,-104.522239685059,145.286254882813,-20.7467384338379,-159.035583496094,143.43505859375,-14.6958456039429,-148.244522094727,156.122299194336,-24.1084671020508,-130.477783203125,151.709869384766,-26.8607368469238,-122.347984313965,151.350830078125,-44.0235214233398,-90.391357421875,141.291854858398,-47.0187149047852,-82.179557800293,140.257751464844,-41.0676307678223,-95.8263931274414,144.312133789063,-50.4425506591797,-78.1777572631836,141.044815063477,-55.1340065002441,-77.4054870605469,141.894912719727,-69.8233489990234,-60.339412689209,144.172119140625,-75.2796859741211,-59.9574737548828,142.013931274414,-79.717414855957,-72.5207138061523,141.428863525391,-62.7427558898926,-72.5705108642578,143.729095458984,-65.4356155395508,-68.4139099121094,144.413162231445,-91.483268737793,-72.8458404541016,146.412353515625,-103.164611816406,-76.3090744018555,151.113815307617,-120.997360229492,-88.5601806640625,149.981704711914,-129.79621887207,-94.7191848754883,146.750381469727,-13.9357709884644,-237.649291992188,176.217269897461,-16.4441165924072,-227.247268676758,178.168472290039,-14.9193668365479,-217.366302490234,177.110366821289,-14.6888446807861,-194.035018920898,155.657257080078,-15.121187210083,-185.722198486328,148.176528930664,\r\n-15.3823118209839,-190.212646484375,149.924697875977,-14.5326290130615,-211.509719848633,175.667221069336,-11.0031843185425,-209.8515625,174.377090454102,-11.129096031189,-197.239334106445,160.700759887695,-13.3090085983276,-180.358673095703,152.310928344727,-17.4541645050049,-158.34001159668,148.505554199219,-20.4701118469238,-136.436370849609,154.511154174805,-17.3019008636475,-151.141815185547,150.429748535156,-28.2391719818115,-117.125473022461,152.69596862793,-35.6764984130859,-103.146110534668,150.930801391602,-35.0838432312012,-98.3949432373047,155.102203369141,-67.0133743286133,-63.7505493164063,144.844207763672,-78.8953323364258,-68.1920852661133,141.711898803711,-82.1844635009766,-71.4502029418945,141.360855102539,-59.8540725708008,-73.1013641357422,142.998016357422,-106.755966186523,-81.0540390014648,150.5927734375,-111.138389587402,-81.4990844726563,150.377731323242,-85.8728179931641,-72.6448211669922,143.042022705078,-97.8023910522461,-72.633918762207,149.485641479492,-114.359710693359,-86.2054443359375,149.542663574219,-115.566825866699,-82.3725738525391,150.39973449707,-130.573303222656,-83.8790130615234,147.07341003418,-123.868644714355,-84.6063919067383,149.62565612793,-6.86504793167114,-206.230209350586,171.021759033203,-5.43787813186646,-201.8427734375,165.837249755859,-13.2844066619873,-233.645904541016,177.284378051758,-11.1039333343506,-178.083450317383,155.530242919922,-14.971471786499,-169.494598388672,151.938888549805,-31.5950012207031,-108.035591125488,154.376129150391,-17.6380348205566,-155.878280639648,148.56005859375,-18.1721363067627,-153.980590820313,148.105514526367,-14.9724731445313,-136.71240234375,164.019073486328,-16.7009677886963,-153.914825439453,150.386245727539,-16.26584815979,-152.49543762207,151.548355102539,-19.6948356628418,-129.726715087891,160.472732543945,-22.190580368042,-120.796844482422,161.376815795898,-41.4214630126953,-90.9090118408203,145.41325378418,-43.8709030151367,-82.1680526733398,143.239028930664,-47.0968208312988,-77.6594085693359,142.310943603516,-36.1553497314453,-94.3327484130859,155.419235229492,\r\n-53.6664657592773,-73.5760116577148,142.991012573242,-57.3517227172852,-73.0846633911133,142.942016601563,-66.0315780639648,-59.3861198425293,145.409240722656,-73.2062759399414,-53.4736404418945,142.297943115234,-79.2125625610352,-59.6825485229492,141.354858398438,-60.1649017333984,-68.8856506347656,143.783096313477,-63.0086822509766,-68.4207077026367,143.834091186523,-63.3703155517578,-64.3087005615234,144.873199462891,-91.7417907714844,-63.546630859375,143.965103149414,-103.970687866211,-72.2972869873047,150.977798461914,-107.937080383301,-78.0923538208008,151.239822387695,-119.334197998047,-77.7970199584961,150.529754638672,-126.995948791504,-81.3407745361328,148.496551513672,-13.3619146347046,-221.469696044922,177.025344848633,-9.10915756225586,-214.528030395508,175.083160400391,-11.0976934432983,-193.545959472656,155.197204589844,-12.6033401489258,-189.355560302734,151.34782409668,-2.03813505172729,-210.641647338867,171.304794311523,-5.42275714874268,-197.839401245117,159.793670654297,-11.6699485778809,-184.810119628906,152.224914550781,-9.81025695800781,-180.12565612793,156.35432434082,-11.7295951843262,-175.768218994141,155.402221679688,-13.0168809890747,-173.632019042969,154.281616210938,-15.807879447937,-157.992233276367,151.040802001953,-10.3191165924072,-148.120513916016,163.46501159668,-15.9653816223145,-153.881958007813,151.526596069336,-14.9628210067749,-151.046798706055,154.394638061523,-21.626823425293,-117.587516784668,164.939163208008,-32.581298828125,-103.636154174805,156.274322509766,-40.9404182434082,-86.6467895507813,147.312438964844,-50.2552299499512,-73.0079574584961,143.926116943359,-32.1765594482422,-94.1596221923828,164.941177368164,-68.8323516845703,-54.7696685791016,144.576171875,-76.2076721191406,-51.239818572998,140.89680480957,-82.0521469116211,-64.6603393554688,141.621887207031,-86.5403823852539,-65.8911514282227,142.356964111328,-97.6219711303711,-63.1757926940918,146.336334228516,-97.3766479492188,-68.3462982177734,148.189529418945,-110.658348083496,-73.0158538818359,151.325820922852,\r\n-101.4814453125,-68.2455902099609,149.431640625,-111.880470275879,-75.9718475341797,151.31282043457,-130.548294067383,-77.1622619628906,147.689483642578,-122.363502502441,-74.7301254272461,149.556655883789,-8.1334228515625,-194.286041259766,155.776275634766,0.32710599899292,-206.442230224609,167.769439697266,-2.23494410514832,-202.089813232422,164.383102416992,-6.93656492233276,-233.72590637207,175.186172485352,-8.43776226043701,-184.56608581543,155.96728515625,-8.89885711669922,-175.808227539063,158.749557495117,-11.4734296798706,-171.53581237793,156.508346557617,-15.8998126983643,-156.761352539063,151.068054199219,-14.9847364425659,-157.818344116211,152.30842590332,-16.1668643951416,-155.812515258789,150.840774536133,-11.0898523330688,-150.792266845703,160.811767578125,-11.4007234573364,-142.351943969727,165.648223876953,-13.0597848892212,-133.96711730957,168.965560913086,-15.4312801361084,-155.779632568359,151.981140136719,-15.7478227615356,-153.172256469727,152.107650756836,-15.0963087081909,-152.447937011719,153.530792236328,-15.7340469360352,-125.993347167969,168.971572875977,-16.8682594299316,-121.388893127441,169.804641723633,-29.2719745635986,-105.423332214355,162.408920288086,-36.1810493469238,-90.0993270874023,156.910369873047,-43.8451995849609,-77.6543045043945,144.653167724609,-40.6922912597656,-81.409782409668,147.897491455078,-47.1254234313965,-73.0165557861328,144.664184570313,-31.6570072174072,-98.6781692504883,163.195999145508,-53.0875091552734,-67.9607620239258,145.89729309082,-58.6561546325684,-65.3046035766602,145.463256835938,-64.4250183105469,-54.6585540771484,146.300338745117,-72.0004653930664,-45.361442565918,141.293853759766,-67.1818923950195,-50.5243530273438,144.708190917969,-79.6459121704102,-50.5189514160156,140.509780883789,-82.9658355712891,-58.547737121582,141.786895751953,-88.9566268920898,-59.0284843444824,143.086013793945,-95.6171722412109,-59.4071197509766,144.893203735352,-106.397933959961,-68.3754959106445,150.196716308594,-116.417907714844,-72.3579864501953,150.502746582031,\r\n-127.578010559082,-73.6271209716797,148.216522216797,-4.0426721572876,-220.221572875977,174.047058105469,-8.93626117706299,-189.669586181641,153.724075317383,0.886323988437653,-214.877059936523,171.544815063477,8.75083160400391,-210.837661743164,167.096389770508,-5.38649320602417,-193.597961425781,155.739273071289,-1.8525869846344,-197.475341796875,158.73356628418,-6.31150388717651,-179.892623901367,160.397720336914,-10.2933139801025,-165.147186279297,158.809555053711,-14.5731639862061,-157.731399536133,152.942230224609,-15.1642284393311,-156.728485107422,152.208419799805,-8.90148830413818,-150.730270385742,164.483123779297,-7.24141502380371,-147.693481445313,167.646423339844,-15.0634870529175,-155.763198852539,152.551330566406,-15.5975904464722,-153.865509033203,152.096786499023,-9.28685474395752,-152.066146850586,163.156494140625,-11.2233400344849,-152.193405151367,159.94792175293,-19.4630126953125,-115.966369628906,169.97265625,-26.0311546325684,-103.778167724609,170.975769042969,-37.4190711975098,-85.913215637207,154.601150512695,-49.5416603088379,-68.310188293457,146.027313232422,-27.7764263153076,-98.3737335205078,172.039855957031,-34.1404495239258,-88.2110443115234,162.122894287109,-60.005687713623,-59.3293151855469,147.202438354492,-75.8889465332031,-45.2113304138184,140.299743652344,-86.8931198120117,-55.9178771972656,142.686981201172,-101.22241973877,-58.7385559082031,146.646362304688,-103.168617248535,-63.975269317627,148.307540893555,-111.147399902344,-68.971061706543,150.41374206543,-130.193267822266,-71.6396179199219,148.091522216797,-116.728942871094,-67.1659851074219,149.29362487793,-122.562515258789,-70.6506195068359,149.181625366211,6.21950387954712,-206.276214599609,165.111190795898,3.68805599212646,-202.177810668945,162.028884887695,-3.44657301902771,-229.559494018555,173.822036743164,-5.32120704650879,-189.021530151367,156.378326416016,-5.1794228553772,-184.265045166016,159.376617431641,-3.88957595825195,-173.060958862305,164.702133178711,-7.34749603271484,-171.067764282227,161.519836425781,-14.1615934371948,-157.644439697266,153.576049804688,\r\n-15.0307025909424,-157.202896118164,152.322052001953,-14.5961475372314,-157.423675537109,152.94905090332,-10.7333574295044,-136.247344970703,170.876754760742,-14.10888671875,-121.850936889648,172.719940185547,-14.7964363098145,-156.712036132813,152.778594970703,-15.2297973632813,-153.849075317383,152.666961669922,-7.48385906219482,-153.340026855469,165.501220703125,-17.9453639984131,-114.707237243652,172.615921020508,-43.4739646911621,-72.5076065063477,145.93830871582,-40.7214965820313,-76.3753814697266,147.650482177734,-37.7710037231445,-81.0635452270508,153.402038574219,-46.3883514404297,-68.2285842895508,145.910308837891,-28.7088184356689,-93.9714050292969,172.22688293457,-31.6996116638184,-88.0727310180664,166.815353393555,-56.6836585998535,-63.8263511657715,146.832382202148,-52.6972694396973,-62.8069534301758,147.487457275391,-61.7582588195801,-50.6408615112305,146.437347412109,-57.380729675293,-54.4987411499023,147.935501098633,-66.2776947021484,-43.7140846252441,143.170028686523,-72.4578094482422,-41.6277770996094,140.258743286133,-80.4083862304688,-42.3813552856445,140.273742675781,-94.8498992919922,-50.7588729858398,144.906204223633,-114.29670715332,-63.0753784179688,148.311538696289,-109.890274047852,-60.1305923461914,147.216430664063,-125.119766235352,-67.8229446411133,149.321624755859,5.16388082504272,-219.10546875,170.49169921875,8.92891025543213,-214.994079589844,168.453506469727,12.509220123291,-205.946182250977,161.842864990234,-2.6175320148468,-192.822891235352,156.550354003906,1.5318249464035,-198.647476196289,159.110595703125,-2.18429899215698,-236.357162475586,172.578918457031,1.73466503620148,-232.938827514648,171.52880859375,-1.98869001865387,-183.913024902344,162.183898925781,-0.873194992542267,-178.36247253418,165.859268188477,-7.9674859046936,-167.318405151367,161.710845947266,-7.39498996734619,-160.272705078125,163.987075805664,-14.6629114151001,-157.186462402344,152.892227172852,-5.54816913604736,-144.857192993164,170.905746459961,-24.2537822723389,-103.413131713867,174.112075805664,-37.9947280883789,-76.1941680908203,151.777877807617,\r\n-45.1652297973633,-62.6196365356445,146.530364990234,-24.7035255432129,-98.654167175293,176.593307495117,-33.6609039306641,-79.0284423828125,162.157897949219,-61.1274948120117,-45.1757278442383,145.026214599609,-56.397533416748,-58.7174530029297,147.899490356445,-76.0500564575195,-39.3782615661621,139.394668579102,-102.04150390625,-50.0478057861328,147.891494750977,-104.529754638672,-58.8928718566895,147.341445922852,-108.791160583496,-58.8913726806641,147.007415771484,-127.336990356445,-63.2908020019531,150.128723144531,-117.851058959961,-61.9350700378418,148.53955078125,-121.782440185547,-64.9939727783203,149.262634277344,10.1628913879395,-226.809234619141,168.728530883789,16.4512062072754,-215.057067871094,165.807250976563,7.49954891204834,-202.224822998047,160.658737182617,18.9685535430908,-211.258712768555,163.238006591797,0.7761350274086,-193.923004150391,157.703460693359,4.34238004684448,-197.923400878906,158.483535766602,4.71110582351685,-231.213653564453,170.363708496094,-2.0665979385376,-188.774490356445,158.706558227539,-5.44933891296387,-164.077087402344,165.877258300781,-4.82836818695068,-148.212524414063,169.95866394043,-8.87376499176025,-135.287261962891,173.255981445313,-15.0530796051025,-114.459213256836,175.177169799805,-22.5592155456543,-102.484039306641,176.68132019043,-43.9193077087402,-64.9236602783203,146.339340209961,-40.5851783752441,-68.3939971923828,147.513458251953,-38.4943771362305,-72.3492889404297,150.153717041016,-27.4802989959717,-89.3625564575195,174.950149536133,-25.3192863464355,-93.3725509643555,177.72541809082,-28.8891353607178,-77.2214660644531,169.084564208984,-51.9378929138184,-59.0782890319824,147.806488037109,-55.0883026123047,-42.5501708984375,146.211318969727,-53.7970771789551,-46.3808441162109,147.406448364258,-65.2378005981445,-36.7573013305664,141.313858032227,-72.5024108886719,-37.5343780517578,139.210647583008,-85.0291366577148,-38.9713172912598,141.283843994141,-79.0114517211914,-35.3783683776855,139.207641601563,-90.8445053100586,-51.1827163696289,143.727096557617,\r\n-101.131416320801,-45.4263534545898,147.256423950195,-105.128807067871,-49.7855796813965,148.368530273438,-113.875663757324,-56.9170761108398,146.491348266602,16.5426158905029,-218.975448608398,166.309310913086,20.3434886932373,-227.397277832031,165.058166503906,10.7261457443237,-202.296813964844,159.903671264648,17.0975685119629,-206.810256958008,160.909774780273,1.84699594974518,-238.266342163086,170.105667114258,6.45093679428101,-236.763198852539,169.275604248047,1.18653094768524,-188.505477905273,160.669738769531,1.16455900669098,-183.669998168945,164.241088867188,-2.53428411483765,-159.200592041016,169.940658569336,-1.94369602203369,-152.884979248047,171.460815429688,-0.980010986328125,-146.382339477539,173.853042602539,-2.7822380065918,-140.956802368164,174.734130859375,-12.0878896713257,-118.630630493164,175.612213134766,-16.9469661712646,-110.317810058594,175.952239990234,-35.5907936096191,-72.2794799804688,155.46223449707,-32.669506072998,-71.7331237792969,160.720764160156,-40.3714599609375,-62.7263450622559,146.841400146484,-26.7387256622314,-84.7894058227539,175.472198486328,-21.7975406646729,-97.1277236938477,180.186660766602,-29.2106685638428,-71.9522476196289,166.470321655273,-47.6603736877441,-54.4507369995117,147.698471069336,-57.850772857666,-36.8123092651367,142.94401550293,-52.2680282592773,-51.7888717651367,147.883499145508,-75.5395050048828,-32.4699821472168,137.691497802734,-92.9803161621094,-45.9612045288086,143.882110595703,-105.366828918457,-46.9499015808105,148.072509765625,-108.171104431152,-54.7953681945801,147.157424926758,-113.161590576172,-50.7128715515137,146.027313232422,-131.802429199219,-59.012882232666,150.607772827148,-126.141868591309,-58.4951324462891,150.390731811523,-121.18238067627,-59.5807418823242,149.104614257813,14.4409103393555,-232.896820068359,167.391418457031,19.027458190918,-235.567092895508,165.869262695313,23.4403915405273,-215.151092529297,163.553039550781,24.2201671600342,-219.041473388672,164.080078125,7.6188907623291,-197.835388183594,158.90657043457,13.8924570083618,-202.297821044922,159.682647705078,\r\n20.3102855682373,-207.000274658203,160.016677856445,4.41110706329346,-193.23893737793,159.07958984375,11.1183843612671,-235.370071411133,168.391510009766,0.934392988681793,-177.922439575195,167.082382202148,0.750167012214661,-166.520309448242,169.794647216797,-6.94283580780029,-133.36506652832,175.357192993164,-9.19554615020752,-111.090888977051,180.23567199707,-13.8918657302856,-107.899574279785,179.092559814453,-19.336799621582,-101.727973937988,179.712615966797,-37.2570571899414,-67.7964477539063,150.560745239258,-40.9632186889648,-58.7270545959473,146.743377685547,-24.4884052276611,-87.0973358154297,179.035537719727,-21.3675003051758,-93.2883377075195,181.583801269531,-25.3162841796875,-72.0283584594727,172.704940795898,-26.0241546630859,-76.3774871826172,173.654022216797,-48.9706039428711,-40.9350128173828,147.599456787109,-50.8442878723145,-36.4452705383301,145.645278930664,-48.5196571350098,-50.2609252929688,148.117523193359,-57.3537254333496,-31.7008075714111,140.788803100586,-65.1504898071289,-32.5401878356934,139.614685058594,-71.4721069335938,-32.5946922302246,137.973526000977,-85.1517486572266,-27.9167346954346,139.768692016602,-79.1113586425781,-27.5187969207764,137.136444091797,-95.5326690673828,-40.8742065429688,143.713073730469,-105.097801208496,-41.1680374145508,146.646362304688,-117.643035888672,-54.8551750183105,146.811386108398,-117.707038879395,-49.2584266662598,145.650283813477,26.7103118896484,-232.352767944336,163.532028198242,26.9707374572754,-211.44172668457,160.128692626953,10.7353467941284,-197.752380371094,160.037689208984,23.5113983154297,-207.12629699707,159.021591186523,17.1345748901367,-202.413833618164,159.631652832031,10.0628795623779,-238.993423461914,166.99836730957,4.57527303695679,-184.395065307617,165.227203369141,0.934073984622955,-160.959777832031,171.693832397461,1.95319604873657,-155.308212280273,174.099075317383,1.06645894050598,-141.767883300781,176.713317871094,-2.93818807601929,-137.566482543945,176.035247802734,-9.26579284667969,-115.884353637695,178.551498413086,-34.7898139953613,-59.1006889343262,149.449645996094,\r\n-33.5259895324707,-67.8374481201172,157.229400634766,-30.2839736938477,-67.5002136230469,162.038879394531,-37.945125579834,-59.3774185180664,147.485458374023,-21.6906318664551,-89.4537658691406,181.651809692383,-23.8341426849365,-77.2017669677734,176.917343139648,-18.4941177368164,-98.1345138549805,181.942840576172,-23.6651248931885,-67.2849884033203,171.64582824707,-47.4728546142578,-44.960205078125,148.548553466797,-72.3342895507813,-28.0295467376709,136.135345458984,-83.2787704467773,-20.5341129302979,137.296447753906,-89.2757568359375,-32.076343536377,140.954818725586,-90.4774703979492,-42.1749305725098,142.755981445313,-75.9757537841797,-24.628812789917,135.236251831055,-101.651466369629,-38.6252822875977,145.466262817383,-108.527137756348,-41.3968544006348,146.150329589844,-114.058685302734,-45.9416007995605,145.428253173828,-127.844032287598,-54.5131416320801,150.011703491211,-133.710601806641,-55.3721237182617,150.356735229492,-124.095664978027,-54.546745300293,149.23762512207,31.7652072906494,-227.222259521484,161.642852783203,14.4714126586914,-237.967315673828,166.345306396484,23.2467727661133,-235.283050537109,164.71614074707,35.0168266296387,-215.399108886719,159.597640991211,7.62323188781738,-193.110916137695,161.059783935547,13.9074573516846,-197.66535949707,161.402816772461,20.3967933654785,-202.517852783203,159.472640991211,3.48409605026245,-175.129165649414,168.652542114258,4.54164886474609,-166.513305664063,170.799728393555,2.21495199203491,-148.411544799805,175.601211547852,-0.762539982795715,-136.407867431641,177.622406005859,-6.23814678192139,-116.013366699219,180.468673706055,-8.13347244262695,-105.727363586426,183.112945556641,-35.0322380065918,-63.770149230957,151.643859863281,-32.2273635864258,-63.6461372375488,156.434326171875,-40.3948631286621,-54.6915588378906,147.703475952148,-21.9959602355957,-85.0632400512695,181.170761108398,-20.7566394805908,-80.6877059936523,181.185760498047,-15.7527494430542,-89.3738555908203,185.206161499023,-15.5532293319702,-93.2798385620117,184.859130859375,-21.4473075866699,-70.0491638183594,175.822235107422,\r\n-41.879508972168,-49.3812408447266,149.037612915039,-44.2254371643066,-41.1924362182617,148.198516845703,-47.2950401306152,-35.415470123291,145.934310913086,-50.6522674560547,-30.8000183105469,142.878005981445,-66.9298629760742,-26.6173095703125,136.264358520508,-85.3154678344727,-15.8100500106812,136.547378540039,-89.0706329345703,-20.6149196624756,138.647598266602,-76.293083190918,-20.0151615142822,133.884124755859,-95.664680480957,-36.7713012695313,142.358963012695,-104.342727661133,-35.0331344604492,144.38916015625,-108.261108398438,-36.6839942932129,144.65217590332,-122.309494018555,-49.1793174743652,146.479354858398,-117.821044921875,-42.2890434265137,144.131118774414,35.0087242126465,-222.006759643555,160.677749633789,18.2141799926758,-239.62548828125,163.842056274414,22.0473556518555,-238.652389526367,163.724044799805,26.5445957183838,-237.648284912109,163.017974853516,34.3436584472656,-234.677993774414,161.500839233398,38.6763877868652,-218.695419311523,159.302627563477,33.1021385192871,-211.557739257813,158.333511352539,26.9948406219482,-206.630249023438,158.160491943359,10.7460479736328,-192.914901733398,163.366012573242,23.5984077453613,-202.423843383789,159.349624633789,17.2085800170898,-197.62336730957,162.298904418945,7.55058479309082,-183.11994934082,166.550323486328,4.33680009841919,-160.610733032227,173.194976806641,8.57305526733398,-153.186019897461,177.916442871094,4.33447885513306,-145.685287475586,176.795333862305,-2.59153890609741,-131.0478515625,178.531494140625,-3.67378497123718,-111.554931640625,182.814926147461,-37.1769485473633,-54.7972717285156,148.49055480957,-31.7017116546631,-58.8575668334961,152.43293762207,-28.8531322479248,-63.5738296508789,161.213806152344,-23.531810760498,-60.2182998657227,165.118179321289,-17.0384769439697,-84.3998718261719,184.388076782227,-19.5588226318359,-76.0936508178711,180.436676025391,-6.45103693008423,-96.5647583007813,188.059432983398,-18.2647953033447,-59.7947578430176,172.025863647461,-41.4612693786621,-45.6072692871094,149.418640136719,-56.7763671875,-27.1057567596436,138.536575317383,\r\n-56.5816535949707,-17.1552810668945,132.789016723633,-70.1359786987305,-23.3943920135498,134.127151489258,-72.767936706543,-21.1806755065918,133.322067260742,-81.9529418945313,-14.2615966796875,134.686187744141,-94.7172927856445,-31.6972045898438,140.61979675293,-91.6049880981445,-36.3784675598145,141.822891235352,-101.654472351074,-32.2208595275879,142.305938720703,-114.651741027832,-39.834602355957,143.875091552734,-124.091667175293,-45.8211898803711,145.349243164063,-122.576515197754,-41.748893737793,144.148132324219,-128.394088745117,-50.0347023010254,148.42155456543,-135.043746948242,-50.327033996582,148.858581542969,41.1780319213867,-226.797210693359,158.912582397461,30.8496170043945,-235.757095336914,162.467926025391,37.356258392334,-232.143753051758,160.484725952148,43.7239799499512,-218.336395263672,157.538436889648,30.365270614624,-207.818374633789,157.554443359375,36.3437576293945,-211.685729980469,157.36442565918,7.59753894805908,-188.237442016602,164.306106567383,13.9359607696533,-192.729888916016,165.324203491211,22.4841976165771,-198.259429931641,162.504928588867,7.24125385284424,-174.77311706543,168.951568603516,8.88651561737061,-158.051483154297,176.663314819336,10.6354370117188,-173.577011108398,169.773635864258,7.85355377197266,-147.758483886719,177.54541015625,4.30830717086792,-141.093826293945,177.918441772461,1.46335804462433,-130.893829345703,180.453674316406,-2.10409188270569,-122.418991088867,181.033737182617,-4.83848905563354,-105.747360229492,184.286056518555,-34.049243927002,-53.638557434082,149.110610961914,-31.2899703979492,-54.882080078125,149.775680541992,-27.9816474914551,-59.1521987915039,158.813552856445,-20.6254272460938,-60.3402137756348,169.699630737305,-15.9847717285156,-79.9204254150391,184.087051391602,-6.47532987594604,-92.0144195556641,189.369567871094,-8.19881916046143,-87.7756958007813,188.980514526367,-16.1456871032715,-62.6932411193848,175.701217651367,-38.8014068603516,-44.4377555847168,148.764587402344,-44.2810478210449,-34.9162216186523,145.58625793457,-46.3004417419434,-21.8941459655762,138.898620605469,\r\n-37.2843589782715,-50.1094093322754,149.424652099609,-66.3493041992188,-15.413610458374,129.585708618164,-86.4663848876953,-10.3116111755371,134.042129516602,-89.0142288208008,-14.6312341690063,136.424377441406,-92.0703277587891,-17.1601829528809,137.311447143555,-75.6974182128906,-12.6302366256714,130.498794555664,-98.4714584350586,-32.5256843566895,141.337844848633,-105.180809020996,-28.2650699615479,140.452758789063,-108.266120910645,-30.9017295837402,141.950912475586,-114.267707824707,-32.2070541381836,140.979827880859,-127.374984741211,-45.6926803588867,145.725280761719,-117.431007385254,-35.0138282775879,142.037933349609,-120.833343505859,-37.0708312988281,143.197036743164,49.2372207641602,-222.458801269531,156.176300048828,30.1514492034912,-239.62548828125,160.745758056641,38.180736541748,-237.685287475586,159.95068359375,33.8777122497559,-238.610382080078,160.616744995117,39.5671691894531,-211.943771362305,156.511352539063,33.1364402770996,-207.121292114258,157.272415161133,28.2216606140137,-202.190811157227,159.756652832031,12.8940582275391,-188.393463134766,167.228378295898,17.2038803100586,-192.601867675781,166.463317871094,10.3388071060181,-180.984725952148,167.996459960938,9.14925098419189,-162.473907470703,174.505096435547,11.5621280670166,-169.638610839844,171.679824829102,11.7868499755859,-155.474227905273,179.46159362793,12.0520763397217,-148.557556152344,179.440582275391,9.65025043487549,-141.004821777344,177.901443481445,4.49942588806152,-134.420166015625,180.164657592773,0.664013028144836,-111.488922119141,183.994033813477,-27.2655773162842,-51.8258781433105,150.106704711914,-19.6170272827148,-54.399730682373,164.392105102539,-14.5507307052612,-74.3577880859375,182.924926757813,-17.2301940917969,-70.4130935668945,179.332580566406,-9.21798801422119,-83.1406478881836,188.020431518555,-2.05397701263428,-95.6661758422852,189.210556030273,-1.83646500110626,-100.900886535645,187.102340698242,-16.4666194915771,-54.452335357666,168.683532714844,-11.8817701339722,-58.3551177978516,176.000259399414,-43.6614837646484,-28.1973628997803,142.329956054688,\r\n-50.3405380249023,-10.1051912307739,130.94482421875,-62.9343719482422,-13.9811697006226,129.548690795898,-69.4954147338867,-13.7234449386597,128.79362487793,-72.3927001953125,-13.9960718154907,129.601699829102,-81.6425094604492,-10.1944990158081,132.542999267578,-97.7500915527344,-28.0975532531738,139.399673461914,-101.376441955566,-27.5722026824951,139.291656494141,-127.374984741211,-41.2307395935059,143.849090576172,-125.174774169922,-36.0670356750488,143.592086791992,-135.312759399414,-41.258243560791,144.044128417969,-142.522476196289,-41.7130851745605,143.900115966797,50.9413871765137,-230.576599121094,156.110305786133,43.1725234985352,-235.33805847168,159.029586791992,48.8710823059082,-217.983367919922,155.563232421875,43.200927734375,-211.54573059082,155.509246826172,36.450366973877,-207.207305908203,157.11540222168,30.5254878997803,-196.89128112793,165.427215576172,22.7597236633301,-192.376846313477,167.659423828125,13.5548229217529,-163.456024169922,176.836334228516,17.0644683837891,-175.776229858398,172.292892456055,14.0827751159668,-159.901672363281,178.717514038086,12.3655071258545,-151.876876831055,180.124649047852,11.7192430496216,-143.337051391602,178.182464599609,7.5401439666748,-137.752502441406,178.717514038086,4.41351699829102,-123.06706237793,182.147842407227,1.34971702098846,-106.43342590332,185.527191162109,-31.1721591949463,-49.9298934936523,147.906494140625,-34.5114898681641,-49.5522575378418,148.990600585938,-27.4593963623047,-54.6628570556641,153.33203125,-28.2017688751221,-50.5641555786133,148.44255065918,-23.8746433258057,-54.8461761474609,159.568634033203,-9.56409168243408,-78.1371612548828,186.569290161133,-4.60851716995239,-87.6172866821289,190.020629882813,-5.43758821487427,-83.2261581420898,189.373565673828,-0.755114018917084,-92.5149612426758,189.884613037109,-12.3547163009644,-54.0710983276367,172.177871704102,-10.8501682281494,-64.0475769042969,179.894638061523,-38.9761238098145,-39.4650688171387,146.230346679688,-40.4911727905273,-31.8650226593018,143.609085083008,-47.0229148864746,-6.6746940612793,129.836715698242,\r\n-40.4233665466309,-25.3601856231689,141.183837890625,-62.0199813842773,-5.82238006591797,125.903343200684,-66.0004730224609,-2.88858294487,124.073165893555,-83.395378112793,-5.58646678924561,130.343780517578,-93.4274597167969,-7.98744297027588,132.779006958008,-98.6048736572266,-23.3147850036621,137.602478027344,-73.5274047851563,-5.69691801071167,126.482391357422,-79.0708541870117,-5.63992309570313,128.785629272461,-104.561752319336,-23.2309761047363,136.801406860352,-108.797164916992,-24.8294334411621,138.183547973633,-117.48902130127,-27.0187473297119,139.477661132813,-131.413375854492,-41.5221710205078,143.935104370117,-124.099662780762,-32.3123664855957,143.011016845703,54.2520141601563,-225.533096313477,154.924179077148,55.343318939209,-221.337677001953,154.237121582031,40.1198272705078,-206.789260864258,157.438430786133,33.1657447814941,-202.207824707031,160.220703125,17.114070892334,-187.836395263672,169.056564331055,16.3516960144043,-183.28596496582,170.204696655273,16.108772277832,-169.89665222168,174.331085205078,19.631519317627,-154.977188110352,182.773910522461,19.4654026031494,-145.822280883789,182.630889892578,13.9286603927612,-141.327850341797,179.031539916992,11.0390758514404,-131.119842529297,179.59260559082,7.67810678482056,-128.609603881836,180.753707885742,4.11265802383423,-115.847351074219,183.714996337891,-25.6541194915771,-46.0954170227051,147.475463867188,-23.1065692901611,-50.2170219421387,152.519943237305,-18.9996662139893,-50.6591644287109,159.425628662109,-13.6130399703979,-50.0803108215332,166.147277832031,-6.22365522384644,-68.4534072875977,184.093048095703,-5.48152208328247,-78.6490020751953,188.108444213867,1.09288203716278,-96.8046798706055,188.455474853516,1.73806500434875,-101.352935791016,187.039337158203,0.053812999278307,-57.0536918640137,181.747817993164,-8.34682273864746,-54.2613182067871,175.217178344727,-31.6209049224854,-44.7016792297363,145.767288208008,-51.6680679321289,-5.78153705596924,128.195571899414,-37.9649238586426,-6.4673638343811,130.726806640625,-38.7357025146484,-17.9388561248779,137.448471069336,\r\n-69.8120498657227,-2.9142050743103,124.353187561035,-90.381965637207,-5.81461000442505,131.425888061523,-94.3795547485352,-16.2982978820801,136.402359008789,-101.369438171387,-23.1178665161133,136.861404418945,-113.850662231445,-25.90793800354,138.286560058594,-123.637619018555,-27.7610206604004,141.599884033203,-133.549591064453,-36.4873733520508,142.664993286133,-127.200973510742,-32.7887115478516,143.344055175781,-141.301345825195,-37.0202293395996,142.482971191406,49.918384552002,-236.526184082031,156.495346069336,55.2574081420898,-235.152038574219,155.216201782227,54.8683738708496,-215.610137939453,153.106018066406,46.5646553039551,-211.272705078125,154.839172363281,43.006908416748,-207.430328369141,156.584350585938,36.4937705993652,-202.198822021484,160.824752807617,29.4844837188721,-191.788803100586,169.773635864258,24.2151679992676,-187.680389404297,170.585723876953,22.27707862854,-169.295593261719,177.161361694336,23.4893970489502,-164.492111206055,180.526702880859,21.1632671356201,-182.922927856445,171.58381652832,21.1527671813965,-173.787033081055,174.62712097168,23.1501617431641,-159.854675292969,182.741912841797,18.5173091888428,-150.965789794922,182.755905151367,19.7473297119141,-142.084915161133,182.000839233398,13.7855463027954,-135.446273803711,179.017547607422,10.4462175369263,-124.25617980957,181.633804321289,9.73864936828613,-114.261199951172,185.800216674805,-28.5294017791748,-45.923900604248,146.343338012695,-21.1928825378418,-50.6534614562988,155.881286621094,-21.8269443511963,-46.1156196594238,149.751678466797,-1.92864394187927,-87.3575592041016,190.142639160156,-2.18509888648987,-79.8024215698242,188.799499511719,3.54076194763184,-92.330451965332,188.616485595703,4.1732439994812,-104.633255004883,186.562286376953,-7.05204582214355,-49.9043922424316,171.668823242188,-2.54196405410767,-61.5957336425781,182.833923339844,-37.3008613586426,-36.3903656005859,144.639175415039,-37.3409652709961,-29.1507568359375,143.118026733398,-49.7832832336426,-1.82867896556854,126.010345458984,-41.4807662963867,-1.12540996074677,126.39338684082,\r\n-34.5347900390625,-23.7344245910645,141.405868530273,-62.077091217041,-1.55495202541351,123.534111022949,-71.1604766845703,3.45003795623779,121.130874633789,-82.287971496582,-0.487621009349823,126.346389770508,-93.7317886352539,-1.62715899944305,128.466598510742,-96.9757080078125,-10.682147026062,133.555084228516,-79.0545501708984,-1.19686698913574,126.012344360352,-102.017501831055,-18.7612380981445,134.9072265625,-107.680053710938,-18.8626480102539,134.493179321289,-110.98738861084,-19.1829814910889,135.323272705078,-115.093780517578,-22.1727733612061,136.833404541016,-122.881546020508,-22.8259372711182,139.392669677734,-129.020141601563,-28.1507587432861,142.339950561523,60.2322959899902,-234.305969238281,154.103103637695,63.1988906860352,-216.732238769531,151.953887939453,59.6982421875,-216.738235473633,152.496948242188,49.6071548461914,-212.472808837891,154.436126708984,46.1499176025391,-207.125289916992,156.928375244141,40.1172294616699,-201.55973815918,162.087875366211,32.9817276000977,-192.730895996094,169.613632202148,24.2484703063965,-155.22721862793,184.188049316406,25.7511177062988,-143.685089111328,183.922027587891,25.6954116821289,-150.598754882813,184.746109008789,19.2765827178955,-137.205444335938,181.336776733398,13.8767547607422,-127.952537536621,181.074737548828,7.28367805480957,-119.917747497559,182.975936889648,8.97408390045166,-110.471824645996,186.688293457031,-22.9602565765381,-41.9083061218262,148.169525146484,-30.962739944458,-41.2287406921387,145.376251220703,-18.6505317687988,-46.2601318359375,152.095901489258,-10.8244657516479,-46.4232482910156,162.507919311523,-16.2992038726807,-46.4307518005371,154.297119140625,0.00108299998100847,-69.5863189697266,186.14924621582,-1.78126001358032,-74.8818359375,187.348373413086,4.52003812789917,-97.2311325073242,187.683395385742,-6.58150005340576,-45.7928848266602,165.526214599609,2.75987505912781,-61.0825843811035,184.651092529297,0.273295998573303,-53.4817428588867,179.210556030273,-3.32896089553833,-49.7622756958008,173.822036743164,-34.1258506774902,-36.5933876037598,144.81217956543,\r\n-33.7850151062012,-7.05570077896118,132.230972290039,-35.4020729064941,-1.19885694980621,127.51350402832,-33.0577430725098,-13.3808116912842,136.073333740234,-65.2364959716797,3.18697190284729,120.360801696777,-73.9104461669922,-1.02982103824615,124.229179382324,-85.7212066650391,-0.531625986099243,126.929443359375,-98.9560012817383,-5.41918087005615,130.709808349609,-104.386734008789,-17.9322566986084,133.965133666992,-127.251968383789,-22.3364887237549,139.798706054688,-135.788818359375,-32.5793914794922,142.163925170898,-142.227447509766,-31.88112449646,141.462860107422,66.6369247436523,-225.985137939453,152.323928833008,58.272403717041,-212.000762939453,153.449035644531,52.9689865112305,-212.571823120117,153.369018554688,41.6157722473145,-196.557250976563,167.68342590332,31.413272857666,-187.453369140625,172.495895385742,38.175235748291,-192.142822265625,171.293792724609,28.8606224060059,-173.391998291016,176.941345214844,28.1523532867432,-164.451110839844,181.721817016602,29.4966869354248,-178.329467773438,175.245178222656,28.242561340332,-159.498626708984,183.746017456055,23.4422912597656,-137.724487304688,182.70491027832,19.1861743927002,-132.796020507813,181.921829223633,16.8153419494629,-116.970458984375,186.382263183594,-19.2126884460449,-41.4782676696777,149.360641479492,-13.2945079803467,-45.8169898986816,156.45832824707,4.77856302261353,-87.3208541870117,188.157440185547,3.5127489566803,-80.4209823608398,187.763397216797,1.7901599407196,-75.9359359741211,187.436370849609,7.18581914901733,-92.7529830932617,188.025421142578,7.9355320930481,-99.2913284301758,187.465362548828,8.16191387176514,-105.478340148926,187.121337890625,-1.04162704944611,-45.5673675537109,170.120666503906,4.58857393264771,-56.8188705444336,183.127960205078,5.04344892501831,-52.8735809326172,180.557693481445,-34.0082397460938,-32.8352165222168,144.718185424805,-32.8203201293945,-27.6148071289063,143.693084716797,-41.7069892883301,3.87120890617371,122.356994628906,-34.937427520752,7.27271318435669,120.780838012695,-24.2369804382324,-12.3584108352661,138.573577880859,\r\n-58.5146369934082,3.07269096374512,120.691825866699,-72.5553131103516,10.5379323959351,117.037467956543,-75.8197326660156,3.91802406311035,121.546913146973,-78.4247894287109,4.83994388580322,121.285888671875,-87.0253372192383,9.83433437347412,117.825546264648,-90.3530654907227,2.85932993888855,124.154174804688,-99.2048263549805,-1.54698204994202,128.272567749023,-104.756767272949,-10.0270833969116,131.214859008789,-108.506141662598,-11.4808254241943,131.315872192383,-115.361808776855,-10.9340705871582,132.822021484375,-120.271293640137,-14.090181350708,134.733215332031,-123.738632202148,-15.705638885498,136.277359008789,-131.789428710938,-23.0823612213135,140.21875,-135.672805786133,-27.4485893249512,141.282852172852,65.9288558959961,-235.523086547852,152.998001098633,61.4498176574707,-211.99577331543,153.544052124023,66.89794921875,-216.796234130859,151.53385925293,55.2668113708496,-211.214691162109,153.490036010742,52.239315032959,-207.549346923828,156.371337890625,48.5692558288574,-201.896789550781,162.16389465332,30.9096240997314,-182.682891845703,174.362091064453,31.541784286499,-154.301116943359,185.262161254883,32.0702362060547,-142.051910400391,184.897125244141,15.2067852020264,-121.207878112793,184.540100097656,18.7493305206299,-128.300567626953,183.227951049805,15.3086948394775,-109.394721984863,188.124450683594,-21.7123336791992,-36.6019859313965,148.317535400391,-26.7157249450684,-35.9233207702637,147.554458618164,-15.8489589691162,-41.7412910461426,150.174728393555,-6.38571119308472,-42.8445014953613,158.91357421875,-6.76373815536499,-41.4683609008789,154.337127685547,-12.5832386016846,-42.000114440918,151.343826293945,7.2488751411438,-65.3376998901367,186.795303344727,-1.10537397861481,-41.6141777038574,160.983779907227,8.76536273956299,-57.0592918395996,183.96403503418,3.65695309638977,-49.335334777832,177.161361694336,-28.7857265472412,-31.5526924133301,146.315338134766,-25.3972949981689,-21.3137893676758,143.073013305664,-49.5817642211914,7.25491094589233,118.922653198242,-26.3477878570557,-3.78115105628967,133.301071166992,\r\n-30.5726013183594,-2.25331091880798,130.24577331543,-31.9043312072754,4.3981409072876,123.950149536133,-62.6538467407227,7.5942440032959,117.01847076416,-72.5824127197266,15.6053285598755,113.350112915039,-82.459587097168,8.91939353942871,118.495613098145,-97.7730865478516,2.68315291404724,124.787231445313,-106.933982849121,-5.99232721328735,129.238662719727,-111.372413635254,-10.4595251083374,131.408874511719,-128.915130615234,-16.3311996459961,136.935424804688,-152.362442016602,-28.1393585205078,139.61767578125,70.9268417358398,-233.904922485352,152.17692565918,64.6314239501953,-211.937774658203,153.557052612305,76.0875473022461,-224.688018798828,151.27783203125,57.491828918457,-206.84326171875,157.743469238281,47.2313232421875,-196.905303955078,168.098480224609,43.7793846130371,-191.905792236328,172.961944580078,38.1161308288574,-187.16633605957,175.104156494141,34.6014862060547,-176.914337158203,177.575408935547,30.2692604064941,-168.618530273438,179.591598510742,32.9961280822754,-159.385620117188,183.810012817383,30.7927112579346,-151.133819580078,185.498184204102,28.4796848297119,-137.119445800781,183.849014282227,25.2064647674561,-132.775009155273,183.816009521484,20.8549365997314,-123.597114562988,185.8662109375,19.7376289367676,-116.326400756836,187.154342651367,-18.1892871856689,-36.5929870605469,148.29753112793,-9.44106006622314,-41.4863662719727,152.129898071289,6.37812995910645,-71.1882705688477,187.514389038086,12.2013902664185,-61.1102905273438,186.449279785156,7.80191898345947,-86.749397277832,188.153442382813,10.4805221557617,-98.770378112793,188.04443359375,14.4766139984131,-104.429229736328,188.829498291016,1.36262798309326,-42.465763092041,165.868255615234,10.5176258087158,-52.0163955688477,180.481689453125,3.22986102104187,-46.3709449768066,173.392990112305,-26.2709808349609,-27.7019138336182,145.62028503418,-37.9844284057617,11.9464712142944,116.735443115234,-30.5517997741699,16.9432601928711,112.920066833496,-17.1898899078369,-5.38362789154053,136.62239074707,-57.8500747680664,10.8421621322632,114.398208618164,\r\n-66.2249984741211,8.55856800079346,116.873458862305,-76.3545913696289,14.7045412063599,114.485221862793,-95.2248382568359,13.5658292770386,114.07218170166,-81.1772613525391,18.822244644165,111.062881469727,-98.7419815063477,9.48210906982422,118.078575134277,-103.015602111816,3.53033590316772,123.456100463867,-106.405937194824,-1.39191603660584,126.783424377441,-110.98738861084,-5.54724407196045,128.861633300781,-118.866157531738,-10.0951890945435,132.802017211914,-114.474723815918,-5.81555986404419,129.563705444336,-123.745628356934,-10.3840179443359,133.326080322266,-132.183456420898,-16.7242393493652,137.018417358398,75.1492538452148,-233.688903808594,151.715866088867,63.4458122253418,-206.793258666992,158.82356262207,68.2253799438477,-211.422714233398,154.344131469727,72.0968627929688,-217.486312866211,150.970794677734,52.640453338623,-201.76676940918,162.977966308594,38.5405731201172,-182.452880859375,177.636413574219,33.284854888916,-173.266983032227,177.928436279297,33.4862747192383,-168.20947265625,179.699615478516,39.7157859802246,-154.27912902832,184.525085449219,38.4664649963379,-150.239730834961,185.385162353516,35.8626098632813,-145.825286865234,185.496185302734,34.1381416320801,-137.003433227539,184.939117431641,25.7508182525635,-129.225662231445,185.531188964844,22.329381942749,-110.580833435059,188.737503051758,-23.680326461792,-32.5882911682129,147.589462280273,-14.2156982421875,-36.4968795776367,148.24853515625,-0.690545976161957,-38.1451377868652,152.675964355469,-6.3024730682373,-37.8098030090332,149.340637207031,-10.0606918334961,-37.5435791015625,148.657562255859,10.2130947113037,-68.4270095825195,187.555389404297,9.3343391418457,-80.4100799560547,188.361465454102,11.7453460693359,-90.2271423339844,189.362564086914,16.8827476501465,-103.48713684082,189.678604125977,3.40384793281555,-43.6441764831543,169.746643066406,2.74432396888733,-37.8787117004395,154.562149047852,14.3690032958984,-57.1927032470703,185.083145141602,13.0947780609131,-47.8942909240723,176.924346923828,8.58586597442627,-44.3683471679688,172.348892211914,\r\n-21.4699096679688,-20.0056610107422,143.261047363281,-49.0971145629883,11.7404499053955,115.594329833984,-22.1654777526855,7.41223621368408,126.840431213379,-28.3338832855225,3.65583801269531,126.353385925293,-28.0234527587891,16.3255996704102,114.328201293945,-16.8678588867188,4.84586477279663,130.844833374023,-63.857063293457,14.0770788192749,111.88697052002,-75.6922225952148,23.0150566101074,107.646553039551,-118.801147460938,-6.07564496994019,130.3837890625,-129.346176147461,-10.4369220733643,133.28205871582,-149.287124633789,-23.5253067016602,138.285568237305,-148.648071289063,-18.6734294891357,135.939315795898,-153.950592041016,-22.7603302001953,137.059432983398,72.0729598999023,-212.474822998047,153.219009399414,79.7176055908203,-230.733612060547,150.998794555664,75.0844497680664,-216.354187011719,150.740783691406,58.4084167480469,-201.394729614258,164.782150268555,53.2374114990234,-196.433242797852,169.582626342773,49.3149261474609,-191.83479309082,174.407104492188,45.1027145385742,-186.984329223633,177.558410644531,36.940113067627,-173.631011962891,178.074447631836,36.2361450195313,-160.752746582031,182.643890380859,41.0307159423828,-177.898422241211,178.706512451172,29.4855842590332,-132.566986083984,185.019134521484,23.6241092681885,-119.00365447998,188.112442016602,23.4843940734863,-114.639228820801,188.401458740234,-2.50667095184326,-37.1335411071777,149.524658203125,17.5376129150391,-66.0823745727539,186.580291748047,12.0109710693359,-78.1408615112305,188.676483154297,16.5227146148682,-96.6393661499023,190.577667236328,8.08776760101318,-41.2152404785156,167.50341796875,10.1281871795654,-38.702392578125,163.457015991211,14.0372695922852,-52.4194374084473,181.880828857422,16.3687992095947,-61.1752967834473,186.176239013672,-19.7633438110352,-27.3720817565918,146.392349243164,-40.248950958252,15.7080392837524,113.448120117188,-34.2479629516602,19.2595863342285,110.626846313477,-19.90305519104,5.51707077026367,129.475692749023,-29.7419204711914,25.5380020141602,106.45743560791,-6.73000478744507,-1.36397397518158,136.453384399414,\r\n-7.21274185180664,5.68573713302612,132.641998291016,-58.6801528930664,16.5060176849365,110.165802001953,-49.5494613647461,17.0686721801758,111.24390411377,-69.6044235229492,20.575216293335,108.574638366699,-72.6224212646484,26.1184597015381,104.851280212402,-81.5208969116211,22.0765628814697,108.183601379395,-98.9378051757813,16.7523422241211,111.126892089844,-103.277618408203,7.90292501449585,119.674728393555,-112.080490112305,3.22749590873718,123.402099609375,-112.930572509766,-1.13338100910187,126.347389221191,-117.433013916016,-1.11270904541016,126.386383056641,-126.980949401855,-5.43514204025269,129.824722290039,-137.320953369141,-12.3274078369141,133.532089233398,67.5313110351563,-201.653762817383,165.744247436523,82.5950927734375,-225.169067382813,150.397735595703,78.5730895996094,-216.903259277344,150.073699951172,64.6497268676758,-201.734771728516,165.339202880859,45.3048362731934,-182.453887939453,179.62760925293,36.2750511169434,-169.020553588867,178.808532714844,39.8221969604492,-163.628036499023,179.857635498047,42.6578750610352,-150.829788208008,185.588180541992,40.4634628295898,-145.666259765625,186.0322265625,35.8436088562012,-132.664993286133,186.258255004883,29.0334396362305,-123.31908416748,189.574584960938,20.0535583496094,-101.620956420898,190.754684448242,26.9136333465576,-114.121185302734,189.703598022461,-11.7773590087891,-31.8772220611572,146.908401489258,4.21841812133789,-33.1432456970215,148.156524658203,0.484019011259079,-33.8690185546875,147.210433959961,-7.68219804763794,-33.5879936218262,146.678375244141,-3.46468496322632,-34.2524566650391,146.631362915039,17.2429847717285,-70.4357070922852,186.856307983398,16.5606174468994,-78.0819549560547,188.59748840332,14.0495719909668,-83.5979919433594,189.313552856445,16.1344757080078,-90.4735641479492,190.444671630859,10.8465566635132,-33.965030670166,151.871887207031,18.5865154266357,-52.6351585388184,183.20295715332,18.6857261657715,-56.8235702514648,185.229156494141,14.771541595459,-44.539665222168,173.753021240234,19.1046676635742,-46.1828231811523,177.755416870117,\r\n-18.5401210784912,-22.8134346008301,144.863204956055,-16.92236328125,17.4250068664551,121.148872375488,-24.9585514068604,15.0727767944336,117.471519470215,-24.3230895996094,25.1605663299561,109.552742004395,-14.2526016235352,-13.6299362182617,140.998825073242,-6.11894512176514,14.2402963638306,127.453491210938,-9.31660938262939,19.4858093261719,122.83504486084,-63.3355102539063,17.573522567749,109.364723205566,-51.1952209472656,20.1422748565674,108.64965057373,-68.0852737426758,24.1288642883301,106.019393920898,-75.5471038818359,29.0407466888428,102.205024719238,-94.7523880004883,19.6029205322266,108.310615539551,-98.2880325317383,21.0767650604248,107.095504760742,-104.533752441406,13.8826599121094,114.793251037598,-111.544441223145,10.2233009338379,118.070579528809,-135.076736450195,-3.91242289543152,127.837532043457,-145.068725585938,-14.7607469558716,134.213150024414,-157.558441162109,-15.5900526046753,131.998443603516,74.0058517456055,-201.637756347656,164.933166503906,84.3370590209961,-220.105575561523,149.849685668945,86.5222702026367,-233.148849487305,149.584655761719,75.2607727050781,-211.283706665039,153.558059692383,77.7260055541992,-211.909774780273,152.228912353516,60.047176361084,-196.66227722168,169.732635498047,52.4589385986328,-190.628677368164,175.484191894531,49.2102165222168,-187.077331542969,178.505493164063,42.2518348693848,-169.741638183594,177.938430786133,39.5690727233887,-168.961563110352,178.149459838867,49.4016342163086,-177.893432617188,180.96174621582,43.0349082946777,-155.876266479492,183.557983398438,45.6417655944824,-145.750274658203,187.00732421875,45.0516090393066,-137.227447509766,186.785308837891,33.2465515136719,-123.194068908691,190.819702148438,29.3898754119873,-119.035667419434,190.730682373047,25.5962028503418,-109.09268951416,189.506576538086,-15.2165956497192,-26.541202545166,146.167327880859,7.37150716781616,-33.9271278381348,149.579666137695,19.4820041656494,-70.7966384887695,187.268356323242,20.9771480560303,-60.5645370483398,186.216247558594,20.2429790496826,-96.747184753418,191.338745117188,\r\n11.9585657119751,-41.0274200439453,168.7275390625,18.188777923584,-35.7279014587402,162.108901977539,-36.8265151977539,23.4699001312256,106.260414123535,-46.4669609069824,20.1993789672852,108.736663818359,-20.8163452148438,17.801643371582,118.285591125488,-26.9709491729736,29.0961513519287,104.425231933594,-6.74840688705444,-11.8923654556274,140.909805297852,-0.133397996425629,3.56229901313782,135.193252563477,0.507901012897491,9.20101165771484,131.989929199219,-54.7214698791504,22.8870429992676,106.535438537598,-71.102668762207,34.1723480224609,98.4731521606445,-91.5940780639648,24.0377559661865,104.257217407227,-102.298530578613,20.863245010376,108.404624938965,-107.329025268555,17.2346897125244,112.469024658203,-117.29500579834,8.50648307800293,119.359703063965,-126.781929016113,2.5643310546875,123.432098388672,-152.048400878906,-10.7912578582764,130.811828613281,-140.187240600586,-4.30619192123413,127.887535095215,-146.310836791992,-6.91285705566406,129.267669677734,-155.071701049805,-8.55468845367432,129.03564453125,65.6546249389648,-196.432235717773,170.203689575195,70.1781692504883,-196.611267089844,169.739639282227,86.9301147460938,-225.129058837891,149.731674194336,81.028938293457,-212.395812988281,150.831787109375,81.8293151855469,-216.87825012207,149.656677246094,55.9819793701172,-192.349838256836,173.021957397461,49.1441078186035,-182.381866455078,180.503692626953,46.5090522766113,-168.653518676758,178.654510498047,43.023609161377,-160.509735107422,180.746704101563,48.082706451416,-150.505752563477,186.947326660156,45.9489974975586,-154.510131835938,185.034133911133,42.6263732910156,-132.778015136719,187.243347167969,37.8479042053223,-123.413093566895,191.470764160156,23.5820064544678,-100.120811462402,191.270751953125,31.8914184570313,-112.776054382324,191.848815917969,29.350471496582,-109.639739990234,190.435653686523,-8.44791316986084,-27.7773208618164,145.272232055664,8.51562881469727,-29.7037105560303,145.951309204102,1.48195004463196,-29.4636878967285,145.810287475586,-1.58488094806671,-31.3917770385742,145.628280639648,\r\n-5.14729022979736,-30.7297115325928,145.480270385742,22.6899185180664,-64.3952102661133,187.287353515625,22.9887466430664,-78.1455612182617,189.165542602539,21.6247138977051,-91.8270950317383,191.316741943359,14.7995452880859,-38.0221252441406,164.890151977539,17.6675262451172,-31.5134887695313,150.670761108398,10.7872524261475,-28.9813404083252,146.001312255859,23.2094707489014,-56.2395133972168,185.032135009766,20.4286975860596,-48.0416069030762,179.985641479492,16.2022838592529,-40.7745933532715,169.747650146484,-12.904468536377,-21.2971858978271,143.780090332031,-36.1818504333496,27.5140953063965,102.24201965332,-19.5583229064941,25.2603759765625,112.671043395996,-10.4950342178345,24.4748973846436,118.448608398438,-20.8919525146484,29.8655261993408,106.849472045898,-12.3349142074585,-16.3810043334961,142.027923583984,-3.66670489311218,-5.62621116638184,138.569580078125,-0.337561994791031,-1.22503995895386,137.418472290039,0.154262006282806,21.7020263671875,123.570114135742,-63.2731056213379,27.9814434051514,103.662155151367,-55.0950012207031,27.2432708740234,103.422134399414,-49.7423820495605,25.1011581420898,104.400238037109,-77.452995300293,32.6513023376465,98.1446228027344,-64.1554946899414,33.3056602478027,99.7206802368164,-95.2605361938477,24.8420333862305,102.733070373535,-83.6391983032227,24.9191417694092,104.976287841797,-101.880493164063,25.0220527648926,105.537338256836,-113.943664550781,11.8739633560181,117.043472290039,-120.002265930176,3.07500100135803,122.960052490234,-131.652404785156,3.54585790634155,122.640022277832,-139.280151367188,2.85114908218384,123.230079650879,-157.277420043945,-9.83168888092041,129.088653564453,76.5057907104492,-197.085311889648,167.673431396484,93.5335540771484,-223.825927734375,148.96159362793,96.7633743286133,-232.660797119141,147.897491455078,81.1220474243164,-207.201309204102,155.63525390625,87.4428634643555,-215.302108764648,148.82258605957,61.17138671875,-192.081832885742,172.739929199219,58.181697845459,-187.940414428711,175.091156005859,52.3986282348633,-185.893218994141,178.912536621094,\r\n42.9549026489258,-165.363204956055,178.560501098633,52.931282043457,-180.413681030273,180.707717895508,51.7806663513184,-168.931549072266,179.967636108398,50.7701683044434,-145.892303466797,187.163330078125,42.3298416137695,-127.996543884277,189.429565429688,46.6389656066895,-132.484985351563,187.437362670898,33.0443344116211,-118.633628845215,192.07682800293,28.8644237518311,-102.626052856445,190.441650390625,27.4717864990234,-105.78337097168,190.161636352539,4.6005859375,-27.9555397033691,145.684280395508,23.4933967590332,-69.9114532470703,188.159439086914,27.9735355377197,-61.5070266723633,187.299346923828,25.4488887786865,-96.203727722168,191.462768554688,24.2804756164551,-37.1134338378906,167.893463134766,22.9527435302734,-32.8941230773926,157.786468505859,14.6658315658569,-29.5035915374756,146.83740234375,26.4684886932373,-51.8481826782227,182.94792175293,24.7004146575928,-43.6299781799316,176.264266967773,25.65260887146,-47.9640998840332,180.272659301758,29.577091217041,-56.5780448913574,185.669204711914,24.7027149200439,-40.1987380981445,172.52490234375,-40.134937286377,23.8915405273438,105.336326599121,-2.32893395423889,26.2226696014404,119.658729553223,-20.2216873168945,33.8402137756348,101.92699432373,-29.0319519042969,31.4548816680908,100.390838623047,-5.76681995391846,-18.9032516479492,143.360046386719,1.12201499938965,-17.81884765625,142.436950683594,6.90735197067261,4.93176317214966,136.537384033203,5.18198204040527,16.7728443145752,128.373580932617,-44.7141876220703,25.0566558837891,103.930191040039,-74.1651763916016,38.4250640869141,92.8908081054688,-68.7774429321289,37.8769111633301,95.0756225585938,-99.3825378417969,27.0050468444824,102.443046569824,-82.1123580932617,31.6635036468506,97.7049789428711,-92.6759872436523,29.0579471588135,98.2593307495117,-104.777770996094,25.3842868804932,107.008483886719,-109.288215637207,20.8315410614014,110.853866577148,-112.249504089355,16.6373310089111,113.753150939941,-117.261993408203,11.7541522979736,117.40550994873,-122.147476196289,7.48201322555542,120.18278503418,\r\n-128.542098999023,7.23644876480103,120.791839599609,-149.602157592773,-2.18775391578674,126.475395202637,-143.916610717773,-1.38300502300262,126.020355224609,-158.736053466797,-9.84556484222412,128.740371704102,68.5359115600586,-192.198822021484,173.161972045898,79.1074447631836,-201.847778320313,162.865951538086,75.9826431274414,-192.651870727539,170.412704467773,100.73836517334,-229.17546081543,147.316452026367,95.3079299926758,-219.256484985352,148.869598388672,84.2772521972656,-213.261901855469,149.483642578125,85.0943298339844,-207.608337402344,153.022994995117,92.5319595336914,-214.432006835938,148.202529907227,65.2056884765625,-190.833709716797,173.988052368164,46.2178230285645,-164.035064697266,179.448593139648,52.9843864440918,-177.168365478516,180.979736328125,52.5729484558105,-173.399002075195,180.580703735352,51.8840789794922,-164.438110351563,181.267776489258,50.2654190063477,-154.690155029297,186.323257446289,49.0863037109375,-136.359359741211,186.770309448242,54.8643684387207,-150.632751464844,187.201354980469,38.0304222106934,-118.83763885498,192.908905029297,44.156421661377,-122.158973693848,192.125823974609,34.8030052185059,-103.234115600586,191.237747192383,34.2336463928223,-114.860252380371,192.655883789063,32.3114624023438,-102.269027709961,190.502670288086,-6.22699499130249,-23.8398361206055,144.52717590332,12.5574245452881,-25.0598545074463,144.930206298828,4.63343906402588,-22.8356380462646,144.017105102539,0.827260971069336,-23.6909217834473,144.612167358398,-2.28603911399841,-27.1715621948242,145.208236694336,27.1101512908936,-66.2424926757813,188.292465209961,24.3416805267334,-84.307861328125,190.214645385742,27.1571559906006,-90.8544998168945,190.848709106445,27.4665851593018,-34.676097869873,164.574127197266,23.0983581542969,-31.2504634857178,153.011001586914,17.1587753295898,-27.44748878479,146.08332824707,-40.3007545471191,27.8928337097168,100.678871154785,-8.20150947570801,30.0350437164307,114.167190551758,-13.4945268630981,34.2902603149414,105.605346679688,-36.327564239502,30.8358211517334,97.3408432006836,\r\n-1.70973300933838,-22.3217868804932,144.562164306641,1.21278405189514,-5.39398813247681,139.259658813477,0.655290007591248,-11.9161682128906,140.738784790039,9.84906959533691,-1.74750101566315,140.569778442383,1.60290205478668,25.5780067443848,121.585922241211,-54.9153861999512,30.5250911712646,100.063804626465,-48.8280906677246,29.7041110992432,99.0935134887695,-63.4019203186035,36.1397399902344,96.603271484375,-95.9979095458984,28.7261161804199,98.7473754882813,-86.2368621826172,31.9599323272705,96.2453308105469,-102.472541809082,29.9490356445313,103.827178955078,-120.928352355957,12.3545112609863,117.91756439209,-115.825859069824,17.1552810668945,114.705238342285,-134.552703857422,7.55565118789673,120.980857849121,-154.722915649414,-6.8798770904541,128.320083618164,-143.998611450195,2.31281709671021,124.189170837402,-157.988983154297,-8.58244132995605,128.339080810547,71.7673263549805,-192.178833007813,172.334884643555,81.5970916748047,-196.956298828125,165.569229125977,85.513671875,-188.052429199219,169.305603027344,101.825477600098,-219.423492431641,147.993499755859,104.658744812012,-231.680709838867,146.048309326172,86.4432601928711,-202.980895996094,157.344421386719,87.3850555419922,-210.779663085938,149.326629638672,90.4365615844727,-210.890655517578,148.222518920898,62.0076713562012,-187.064331054688,175.347198486328,59.0833854675293,-182.825912475586,177.032348632813,56.8134613037109,-172.702926635742,179.899627685547,55.6158447265625,-168.470504760742,180.394683837891,51.3443260192871,-159.319610595703,184.262069702148,54.4215278625488,-138.13752746582,186.186248779297,63.564525604248,-150.363739013672,187.117340087891,46.5231513977051,-127.54549407959,189.245544433594,54.2698135375977,-131.522888183594,186.528274536133,32.9575271606445,-95.4185562133789,190.052627563477,37.7069892883301,-105.590347290039,192.572875976563,37.8410034179688,-109.352722167969,193.151931762695,26.8634262084961,-74.8997421264648,188.863510131836,33.0980377197266,-66.9514617919922,188.056427001953,34.6373901367188,-57.2617111206055,185.977233886719,\r\n30.1819534301758,-37.3903656005859,169.539611816406,20.9787502288818,-30.2832679748535,149.418640136719,28.1975593566895,-31.173755645752,155.319229125977,28.7437114715576,-33.1036415100098,161.336822509766,19.7010250091553,-27.6369075775146,146.681365966797,33.9533195495605,-48.3821411132813,181.14875793457,31.1185436248779,-53.2222137451172,184.156051635742,36.0907325744629,-39.8733062744141,173.062957763672,-1.09029197692871,29.8802280426025,117.045471191406,-13.3875179290771,37.9321136474609,99.9683990478516,-33.6237030029297,33.5734901428223,93.504768371582,3.88179492950439,-15.6665353775024,142.350952148438,10.2770013809204,15.2601957321167,131.015838623047,16.2819900512695,4.30724191665649,138.902618408203,10.0785818099976,25.5499038696289,125.246276855469,-44.2597427368164,28.9955425262451,99.0787124633789,-72.0060653686523,41.817195892334,89.0815353393555,-81.2765731811523,37.7819023132324,90.4458694458008,-67.1371841430664,40.6463813781738,91.2097396850586,-98.9962005615234,31.0312404632568,98.6706695556641,-95.7040786743164,32.8905220031738,95.2467346191406,-90.7835006713867,33.8998222351074,93.4636611938477,-107.113006591797,27.0883541107178,108.366622924805,-105.005798339844,30.6966075897217,106.960487365723,-113.07258605957,21.3612937927246,112.388023376465,-118.947166442871,15.8619546890259,116.053382873535,-124.189674377441,11.8618621826172,119.128677368164,-127.238975524902,12.0702829360962,119.933753967285,-139.583190917969,7.51161623001099,121.57292175293,-130.671310424805,11.6289396286011,120.577819824219,-151.988143920898,-3.6964099407196,127.03995513916,-155.427490234375,-7.9300651550293,128.660858154297,-145.982818603516,0.603434026241302,125.403289794922,-143.050521850586,7.41315603256226,122.549011230469,-148.825592041016,0.201059997081757,125.630813598633,-157.615447998047,-7.95087909698486,128.138427734375,71.8161315917969,-187.443374633789,174.848129272461,67.2352828979492,-186.985321044922,175.945236206055,85.5829772949219,-197.009307861328,163.156982421875,82.2297515869141,-185.92121887207,171.463806152344,\r\n78.2300643920898,-187.507369995117,171.912857055664,106.628944396973,-219.156463623047,147.161437988281,99.1760177612305,-215.176086425781,147.83349609375,89.5225677490234,-206.445236206055,150.848785400391,96.85888671875,-210.235595703125,146.791381835938,58.8802642822266,-177.954437255859,178.169464111328,56.603141784668,-163.762054443359,182.246856689453,61.788948059082,-158.948577880859,185.206161499023,60.9925727844238,-154.820159912109,186.767303466797,57.9164695739746,-141.837905883789,186.222244262695,63.9663619995117,-146.618377685547,186.694290161133,50.4146347045898,-127.290473937988,188.416473388672,52.9607810974121,-126.6494140625,187.92741394043,40.8994026184082,-114.067176818848,193.655975341797,42.9257011413574,-117.88355255127,193.362945556641,40.7672882080078,-101.513946533203,192.079818725586,36.7321968078613,-94.4906616210938,189.546585083008,7.84064292907715,-18.9016513824463,143.860092163086,35.2093467712402,-62.0115776062012,187.315353393555,28.6490020751953,-79.938232421875,189.016525268555,33.3631629943848,-84.1609497070313,187.966430664063,36.4097633361816,-36.1524429321289,167.900466918945,23.1943683624268,-27.1490612030029,147.171432495117,26.7671165466309,-27.9681415557861,148.628570556641,17.7158298492432,-22.8299369812012,144.985214233398,35.1160354614258,-44.1874313354492,177.585403442383,-40.442268371582,31.0310401916504,95.9100036621094,-0.617720007896423,34.7915115356445,111.819961547852,-3.08490800857544,38.5960845947266,105.178314208984,-18.7635440826416,37.8878135681152,95.9919128417969,-5.6795220375061,34.235954284668,110.269805908203,-38.4308700561523,33.8104133605957,90.7611999511719,9.06146240234375,-5.42416191101074,141.786895751953,8.6816349029541,-9.62892436981201,142.766983032227,15.1718816757202,10.1636962890625,135.340270996094,17.2762870788574,-0.618161976337433,141.292846679688,8.2277307510376,30.4955883026123,120.946853637695,-52.4037399291992,32.3551712036133,96.6955795288086,-41.9599189758301,33.1437454223633,92.0723266601563,-80.9806365966797,40.9572143554688,85.8182144165039,\r\n-60.7798614501953,38.0296287536621,93.2262344360352,-86.1404418945313,38.2327461242676,88.39306640625,-101.472442626953,35.1998481750488,100.448844909668,-110.011283874512,25.4993991851807,110.590835571289,-103.389640808105,34.5023803710938,104.649253845215,-122.798538208008,16.7798442840576,118.295593261719,-117.503021240234,21.1741752624512,115.533325195313,-135.965835571289,12.1502914428711,121.560913085938,-150.620758056641,-2.10467600822449,126.399894714355,-154.374130249023,-5.20506477355957,127.604507446289,-156.156814575195,-7.93700313568115,128.486724853516,-148.049011230469,2.58987402915955,124.786231994629,-146.492858886719,7.1821141242981,124.033157348633,-150.061950683594,-1.04034399986267,126.248626708984,87.5568771362305,-182.606903076172,171.572814941406,105.747856140137,-214.264999389648,147.025421142578,108.628135681152,-226.924224853516,145.506256103516,91.7064819335938,-198.777481079102,156.602340698242,92.3467407226563,-206.980285644531,148.673568725586,63.303596496582,-182.17985534668,176.878326416016,62.4582138061523,-178.551498413086,177.076354980469,63.2904968261719,-173.742034912109,177.169357299805,59.1882934570313,-168.955551147461,179.892639160156,60.9060592651367,-136.891418457031,184.931121826172,56.0988922119141,-133.167053222656,185.851211547852,69.8086395263672,-146.219329833984,185.663192749023,66.7910385131836,-155.085205078125,185.978225708008,56.3862228393555,-124.136161804199,187.557388305664,47.5892562866211,-118.752632141113,192.72688293457,45.5460586547852,-106.05339050293,193.181930541992,41.8477973937988,-92.9758071899414,189.670593261719,47.3411331176758,-109.254707336426,193.54997253418,11.0084743499756,-17.9704608917236,144.412155151367,33.3108596801758,-74.2969818115234,188.2724609375,37.4427642822266,-73.8659439086914,188.395462036133,37.9305114746094,-52.2425193786621,183.510986328125,41.5517654418945,-60.9465751647949,186.129241943359,29.5826930999756,-28.7015113830566,148.85758972168,36.0335273742676,-31.7139072418213,157.96647644043,42.0173110961914,-34.3737678527832,165.034164428711,\r\n20.8489379882813,-23.8876399993896,145.190231323242,44.876594543457,-44.5126647949219,177.862442016602,42.5084609985352,-47.6042671203613,180.228668212891,6.6101222038269,34.8134117126465,115.75634765625,-10.4724311828613,40.8464012145996,96.1900253295898,-23.4928073883057,38.8983116149902,90.1427383422852,-36.3479690551758,39.0934295654297,78.8930358886719,16.9562568664551,-5.46619606018066,142.684982299805,18.2475814819336,20.2856884002686,130.161758422852,25.0783538818359,4.53700494766235,140.457778930664,24.0318508148193,15.8825559616089,134.376159667969,17.9039497375488,30.3863773345947,123.779136657715,-46.5602684020996,37.2132453918457,86.4482727050781,-42.666088104248,35.1389465332031,88.4730682373047,-67.8843612670898,44.5184631347656,84.6484985351563,-71.8824462890625,44.4791603088379,84.2156600952148,-58.1345024108887,42.3913536071777,85.3175659179688,-98.3495407104492,35.6335906982422,95.4748611450195,-95.1748275756836,37.5410766601563,92.0340194702148,-91.5590744018555,37.5692825317383,89.6373825073242,-105.161811828613,35.4047698974609,108.35262298584,-110.229309082031,30.2796669006348,112.328010559082,-113.339614868164,25.6218128204346,113.294105529785,-126.20287322998,17.1354808807373,120.975860595703,-128.891128540039,16.7793445587158,122.345993041992,-143.308547973633,11.6916456222534,123.466102600098,-132.33447265625,16.7957458496094,123.551109313965,-151.639358520508,-2.02159810066223,126.32438659668,-155.783264160156,-7.30544090270996,128.286071777344,-157.241912841797,-7.31931686401367,127.937789916992,71.7666320800781,-182.775909423828,175.998260498047,78.1923522949219,-181.540786743164,173.57600402832,90.540168762207,-185.952224731445,167.834442138672,81.2759628295898,-182.015838623047,172.865951538086,84.7114944458008,-178.231475830078,173.591003417969,110.740341186523,-218.46240234375,145.937301635742,104.098693847656,-209.564544677734,145.754287719727,111.682441711426,-232.653793334961,142.115921020508,93.4805603027344,-202.1748046875,151.663879394531,91.1624298095703,-192.100830078125,162.678939819336,\r\n96.4546508789063,-205.659164428711,147.715469360352,69.058464050293,-182.246856689453,176.648315429688,62.9535636901855,-169.04557800293,178.837524414063,61.9812660217285,-163.901062011719,182.121841430664,70.1720657348633,-150.50276184082,185.801208496094,68.0703659057617,-137.450469970703,184.308059692383,52.6259536743164,-118.846641540527,191.01872253418,55.8223648071289,-118.892646789551,189.335556030273,48.7229690551758,-113.841156005859,193.404968261719,48.4378395080566,-104.465240478516,192.793899536133,36.2973518371582,-86.1874465942383,188.09342956543,43.6733741760254,-74.0830612182617,188.095428466797,42.3496437072754,-56.8073654174805,185.011138916016,42.1311225891113,-37.2918548583984,169.860641479492,26.5124931335449,-23.0751628875732,145.262237548828,32.1425437927246,-30.1313533782959,151.395843505859,29.7940120697021,-25.7162189483643,145.642272949219,22.6556148529053,-22.392692565918,145.020217895508,17.3663959503174,-16.7430400848389,144.458160400391,48.744270324707,-40.7801933288574,174.582122802734,11.6534366607666,41.8721046447754,109.64274597168,-4.46461296081543,41.5951766967773,98.940299987793,-10.7697610855103,42.7209854125977,91.5420761108398,-18.5140190124512,43.4946594238281,82.0086364746094,-31.6428050994873,37.1175346374512,87.2807540893555,-39.1481437683105,37.5965843200684,81.8199234008789,15.0242671966553,25.8918361663818,126.321380615234,25.9008331298828,-0.257115006446838,142.630966186523,13.1243810653687,34.1450462341309,119.068672180176,-55.6588592529297,39.6424827575684,88.3738632202148,-81.4177856445313,43.7279853820801,80.824821472168,-88.9358215332031,40.9161109924316,84.9276275634766,-98.0173110961914,39.5761795043945,94.5915756225586,-104.346725463867,42.8644981384277,106.033393859863,-107.21501159668,34.8349151611328,110.856864929199,-122.909553527832,20.2758865356445,119.745735168457,-117.771049499512,25.9545421600342,117.838554382324,-138.150054931641,16.6495304107666,125.109260559082,-150.521759033203,0.107064999639988,126.021858215332,-153.676559448242,-1.85544204711914,126.173370361328,\r\n-149.513168334961,6.98792505264282,125.736328125,-146.475860595703,11.8451614379883,126.065353393555,-156.494842529297,-6.05619382858276,127.536499023438,90.9382095336914,-181.362777709961,170.367706298828,88.568473815918,-178.079452514648,172.951950073242,111.543426513672,-214.032974243164,145.537261962891,100.676361083984,-206.018188476563,146.024307250977,108.626136779785,-209.94157409668,145.070220947266,112.394508361816,-227.497299194336,143.527069091797,113.437614440918,-222.285797119141,144.095123291016,96.9783020019531,-196.292236328125,154.367126464844,98.5751571655273,-191.726776123047,156.788360595703,68.5694198608398,-173.856048583984,176.399276733398,70.6515197753906,-169.00456237793,177.304382324219,67.1235733032227,-159.751647949219,183.963027954102,62.8406524658203,-132.560989379883,184.329055786133,62.5117225646973,-126.034355163574,185.021133422852,76.5376968383789,-150.838790893555,183.591003417969,72.7274169921875,-137.57649230957,183.316970825195,72.9535446166992,-155.674255371094,183.88801574707,58.9031677246094,-116.578422546387,187.90641784668,52.7669677734375,-114.291198730469,192.240844726563,47.4196395874023,-96.3014373779297,190.431655883789,42.7458839416504,-87.7559967041016,189.29655456543,52.028995513916,-109.792755126953,192.834899902344,41.8959999084473,-80.5423965454102,189.034515380859,45.8903923034668,-52.2249183654785,182.770904541016,47.2709274291992,-70.249382019043,187.044342041016,50.5650482177734,-61.4616241455078,185.185150146484,32.0105323791504,-28.1497573852539,147.134414672852,46.8587875366211,-32.5977935791016,161.173797607422,35.9953231811523,-30.5248908996582,152.806976318359,48.2452201843262,-37.9232139587402,171.16877746582,46.8813858032227,-48.4316444396973,180.65771484375,54.0777931213379,-43.8239936828613,176.997344970703,8.27455520629883,44.5001602172852,104.162208557129,0.718227028846741,43.6706809997559,99.6682662963867,-5.31177616119385,45.6028671264648,89.956413269043,-24.5411109924316,44.3825492858887,74.7507247924805,-25.9896507263184,40.0417251586914,85.5201797485352,\r\n-40.226245880127,39.751895904541,77.7842254638672,-31.6388053894043,41.7112846374512,76.1439666748047,26.2155647277832,24.0158538818359,129.355682373047,21.5481052398682,-4.71182203292847,143.184036254883,27.4788875579834,16.1693859100342,134.525177001953,32.5572853088379,0.295127987861633,142.641983032227,22.0174522399902,34.9115219116211,120.744834899902,-47.8971977233887,39.8489074707031,82.6631088256836,-61.3772201538086,47.9409942626953,75.6899185180664,-70.7940368652344,48.8629875183105,75.7619247436523,-82.1423568725586,46.5867652893066,75.5022048950195,-85.5406875610352,44.0953216552734,79.760612487793,-52.4801483154297,43.1033210754395,80.2560729980469,-93.2434463500977,41.0333213806152,87.9487228393555,-107.185012817383,40.4684677124023,111.078887939453,-114.767753601074,35.3917694091797,118.998664855957,-106.795974731445,45.7767868041992,109.667755126953,-128.19807434082,25.6841163635254,127.967544555664,-124.980751037598,26.5865058898926,125.926338195801,-135.630798339844,22.1727733612061,129.065643310547,-142.520477294922,15.5354232788086,126.074356079102,-151.441345214844,2.40188503265381,125.568313598633,75.0192489624023,-178.123458862305,175.080169677734,78.2301635742188,-176.095260620117,174.397079467773,100.37133026123,-187.470367431641,158.269515991211,81.8957214355469,-174.139053344727,174.311080932617,101.465438842773,-182.425888061523,160.258712768555,86.6328887939453,-173.836029052734,174.275085449219,116.068870544434,-217.93635559082,143.212036132813,103.974678039551,-205.841171264648,145.139236450195,107.558036804199,-205.220108032227,143.915115356445,117.404998779297,-227.879318237305,140.25373840332,99.9996871948242,-200.764663696289,148.895599365234,73.1870651245117,-173.464996337891,175.731216430664,69.7431335449219,-164.835159301758,180.034652709961,62.1357841491699,-116.978462219238,186.220245361328,80.8325119018555,-146.006317138672,182.161849975586,69.3794937133789,-132.76301574707,183.871017456055,55.8891716003418,-114.436218261719,190.519668579102,52.8649749755859,-97.177619934082,189.87760925293,\r\n45.8785934448242,-91.1762313842773,189.598587036133,44.0854148864746,-82.6710052490234,189.470565795898,54.3791236877441,-52.3210258483887,182.062850952148,51.7316627502441,-78.8697280883789,189.005523681641,57.2241020202637,-56.164005279541,182.934921264648,30.1472492218018,-21.523509979248,145.098220825195,26.8450241088867,-18.5513172149658,145.158233642578,35.7486953735352,-28.8556270599365,148.001510620117,33.6107864379883,-24.8825397491455,145.644271850586,51.468936920166,-35.800910949707,167.947463989258,43.6948738098145,-30.9925365447998,155.589248657227,21.0427570343018,-10.9083690643311,144.172119140625,54.8995742797852,-47.8749923706055,179.798614501953,54.916877746582,-39.8023986816406,172.996963500977,15.4460077285767,39.0236206054688,114.409210205078,14.9898643493652,45.8053894042969,105.375328063965,-12.0218830108643,44.2088317871094,86.7438049316406,-36.9359245300293,44.1169204711914,69.1654815673828,-33.9364318847656,42.9022026062012,71.9353561401367,28.9068279266357,-5.36251497268677,144.842208862305,33.2444534301758,7.40130519866943,138.84260559082,31.3649673461914,-3.87781000137329,144.565170288086,31.8933181762695,30.2578659057617,125.637313842773,31.9291248321533,35.0359344482422,121.940948486328,22.8689365386963,39.3847618103027,116.642433166504,-55.4103317260742,48.6570701599121,70.4415054321289,-65.1173858642578,49.2734298706055,74.364387512207,-82.4021759033203,49.7751808166504,69.5822219848633,-96.2500381469727,43.2841415405273,91.8460083007813,-89.234748840332,45.2229309082031,81.3314743041992,-99.8844909667969,44.5914726257324,98.8927917480469,-110.447334289551,40.0739288330078,114.923263549805,-121.44841003418,30.7626132965088,124.133163452148,-102.92359161377,48.9250946044922,104.142211914063,-132.850524902344,26.1862678527832,130.768814086914,-140.116226196289,20.4206008911133,129.478698730469,-154.805679321289,2.30970597267151,126.270378112793,-148.724090576172,11.7637529373169,128.625610351563,-152.126403808594,6.90939712524414,127.621505737305,-142.598480224609,20.9106483459473,132.027938842773,\r\n92.0672225952148,-177.526397705078,171.229782104492,100.543342590332,-177.492401123047,163.43701171875,91.3958511352539,-173.026947021484,172.622924804688,113.43660736084,-209.884567260742,143.720077514648,117.092971801758,-213.668930053711,142.700988769531,102.638549804688,-202.045806884766,146.603363037109,111.041374206543,-205.644149780273,142.637985229492,115.644821166992,-233.789901733398,138.137542724609,121.414390563965,-225.228057861328,138.808609008789,104.251708984375,-188.966522216797,154.795181274414,76.9537353515625,-162.08088684082,178.822525024414,71.7694320678711,-159.854675292969,182.518890380859,65.5307159423828,-128.063537597656,184.301055908203,65.3169937133789,-119.966758728027,185.399169921875,82.4358749389648,-151.866882324219,181.172760009766,81.6261901855469,-155.751251220703,180.219665527344,74.6589126586914,-132.430969238281,183.39697265625,80.6543960571289,-142.505966186523,181.924835205078,62.5603256225586,-110.667839050293,186.512283325195,55.5558395385742,-109.586738586426,191.392761230469,54.4229278564453,-104.948287963867,191.587783813477,51.6247520446777,-92.4897613525391,189.392562866211,52.5418434143066,-68.3640975952148,186.298263549805,58.3369102478027,-64.7434463500977,184.781112670898,24.5633010864258,-14.8045501708984,145.089218139648,54.2300071716309,-34.4672775268555,164.824157714844,53.1974105834961,-31.7707118988037,158.063491821289,40.534366607666,-29.8916301727295,149.652679443359,62.3935089111328,-44.3361434936523,175.080169677734,60.7927551269531,-48.1200141906738,178.683517456055,21.0752601623535,44.2454376220703,109.792762756348,13.1670846939087,48.7359771728516,99.6798706054688,5.11757612228394,45.1202201843262,100.920890808105,5.88319110870361,51.7645721435547,88.5132751464844,-40.4494705200195,45.5496635437012,67.8745574951172,33.185546875,25.4272937774658,129.027648925781,33.7217979431152,15.4944181442261,134.773208618164,40.5117645263672,-4.65680599212646,144.560165405273,37.8400039672852,3.28669190406799,141.282852172852,26.877628326416,39.328254699707,117.605529785156,\r\n-45.8708000183105,45.6226692199707,70.8964538574219,-63.3485107421875,51.5263481140137,68.328498840332,-68.4059143066406,51.5964546203613,69.3438034057617,-74.7239303588867,51.4162406921387,68.8468475341797,-85.8394165039063,47.3145332336426,74.7798385620117,-50.7607803344727,48.4786491394043,68.2230834960938,-94.3674545288086,45.0160102844238,87.9192199707031,-93.1661376953125,48.2641296386719,84.6693954467773,-112.060485839844,44.9407005310059,116.385406494141,-109.060195922852,49.3737373352051,111.940971374512,-126.399894714355,36.143440246582,130.798812866211,-116.299903869629,40.0273208618164,121.752937316895,-105.064796447754,53.3227272033691,106.724464416504,-128.58610534668,34.3496627807617,131.857925415039,-131.252365112305,30.4787864685059,131.947937011719,-138.19905090332,25.8840370178223,132.985046386719,81.2819595336914,-168.660522460938,174.968139648438,84.8782119750977,-169.160568237305,174.302093505859,103.914680480957,-177.484390258789,161.075790405273,87.6800842285156,-165.324203491211,173.648025512695,122.916542053223,-218.128372192383,138.839599609375,105.954879760742,-200.805679321289,145.439270019531,110.090286254883,-201.33073425293,142.831008911133,122.181465148926,-227.892333984375,137.001419067383,103.903671264648,-196.488250732422,149.508666992188,75.6831130981445,-169.259582519531,175.932235717773,65.7625427246094,-114.06517791748,185.946228027344,85.5069732666016,-146.825393676758,180.172668457031,71.073860168457,-128.572601318359,184.221069335938,80.2433624267578,-132.235961914063,182.667907714844,81.3760681152344,-137.090423583984,181.782821655273,85.9635162353516,-142.378952026367,179.946640014648,55.7898597717285,-101.307922363281,190.099624633789,56.0429878234863,-96.4398498535156,189.183532714844,54.523738861084,-90.6421813964844,189.308547973633,54.3400192260742,-83.144645690918,189.639587402344,60.1072845458984,-52.4537391662598,181.19775390625,57.7171516418457,-79.0394439697266,189.117538452148,68.234375,-60.7415504455566,181.724822998047,33.2640533447266,-19.0740699768066,145.932312011719,\r\n32.1483459472656,-13.3118047714233,146.353332519531,37.6109809875488,-25.6753158569336,145.916305541992,56.4961280822754,-37.9045143127441,170.112670898438,48.8755874633789,-30.2895679473877,152.444946289063,41.5965728759766,-28.5426979064941,146.504348754883,29.8095169067383,-9.14290618896484,145.835296630859,67.4036026000977,-40.4510650634766,169.303604125977,22.8298320770264,53.4046325683594,96.3133392333984,2.27980303764343,51.9879913330078,84.5990447998047,-34.1987533569336,46.3562431335449,64.5710296630859,-39.7409019470215,47.4570503234863,62.3709144592285,36.0583267211914,18.3846015930176,133.493087768555,33.512580871582,-9.50376129150391,146.128326416016,37.7821998596191,-0.784823000431061,143.097015380859,39.6323776245117,32.8835220336914,124.842231750488,38.5985794067383,39.4125595092773,119.390701293945,25.3552799224854,43.3804512023926,112.621040344238,-57.9987907409668,51.3916358947754,65.1051788330078,-80.0847549438477,51.633659362793,66.674430847168,-86.2902603149414,50.0908088684082,70.4673080444336,-99.1650238037109,48.7386741638184,97.6517715454102,-97.4778594970703,51.5120468139648,93.0057220458984,-89.7158966064453,48.5930595397949,78.7085189819336,-100.826385498047,53.2733192443848,99.6508712768555,-138.416061401367,30.8266220092773,135.861312866211,-150.537246704102,11.8268594741821,131.581909179688,-146.710891723633,17.0491714477539,132.89501953125,105.825866699219,-182.152847290039,158.139495849609,95.5582580566406,-173.587020874023,169.262588500977,101.488441467285,-173.096969604492,164.2041015625,92.1569290161133,-169.590621948242,172.099868774414,116.103866577148,-205.119094848633,140.600769042969,119.870246887207,-209.355514526367,140.319763183594,125.615798950195,-213.075866699219,137.048446655273,113.869659423828,-201.31672668457,140.706787109375,120.199272155762,-233.219863891602,133.456085205078,126.111854553223,-218.601425170898,136.169342041016,107.842063903809,-192.352844238281,150.397735595703,79.9901275634766,-164.642135620117,176.456298828125,71.8566360473633,-119.113670349121,186.287261962891,\r\n84.1074371337891,-155.544250488281,178.747512817383,85.8178024291992,-150.900787353516,179.534591674805,80.7630081176758,-159.915664672852,178.339477539063,75.171760559082,-120.74983215332,186.076232910156,85.0336227416992,-137.154449462891,180.648712158203,65.2333908081055,-107.139495849609,185.656204223633,62.3450012207031,-101.892990112305,186.975326538086,58.7284507751465,-105.265312194824,189.327545166016,56.694149017334,-70.9093475341797,186.725311279297,61.2360954284668,-66.7649383544922,185.000137329102,37.8815078735352,-21.955150604248,145.831298828125,60.4414176940918,-36.318058013916,165.635238647461,58.7555503845215,-33.768009185791,161.08479309082,55.7963600158691,-31.1643543243408,154.927185058594,49.1996154785156,-28.9450359344482,148.579574584961,67.4968109130859,-48.3895416259766,176.395278930664,72.6213150024414,-44.1819305419922,171.399795532227,66.4146041870117,-52.5992546081543,179.414596557617,9.76824188232422,52.2863235473633,90.6772918701172,-44.6345825195313,47.6347694396973,65.7227401733398,43.2653312683105,-9.75368595123291,145.946304321289,43.6600723266602,5.88157606124878,140.61979675293,42.8349914550781,12.6927433013916,137.663497924805,40.3510513305664,26.0288505554199,129.824722290039,30.2527599334717,43.4119529724121,114.077178955078,-64.250602722168,53.5699501037598,62.3690147399902,-76.9942474365234,53.6834602355957,62.4889259338379,-83.7744140625,51.8985862731934,66.6078262329102,-88.3767623901367,49.614860534668,74.0144577026367,-52.2142219543457,50.7954788208008,62.8590660095215,-92.4847717285156,52.4918403625488,80.7594146728516,-118.939163208008,44.2644386291504,124.55721282959,-112.186500549316,53.884578704834,114.517227172852,-123.690628051758,39.790699005127,129.166656494141,-103.540649414063,60.4434242248535,101.056907653809,-127.859031677246,40.7223892211914,132.911026000977,-137.645980834961,35.4778747558594,137.031433105469,-141.106338500977,25.5954074859619,134.750213623047,-144.440658569336,21.5049076080322,134.831207275391,84.4580688476563,-164.686141967773,174.617111206055,\r\n108.896171569824,-187.314361572266,153.921081542969,107.164993286133,-177.748428344727,159.837661743164,104.672752380371,-173.062957763672,162.221893310547,91.6235733032227,-164.459106445313,171.672821044922,108.283103942871,-196.998306274414,146.195327758789,112.416511535645,-196.276229858398,144.358154296875,125.600799560547,-224.780029296875,134.273162841797,122.994552612305,-230.142547607422,133.048049926758,71.5648040771484,-115.038276672363,186.653289794922,78.0588455200195,-120.880851745605,185.599182128906,89.5317687988281,-139.17463684082,178.336486816406,67.0960693359375,-107.766555786133,185.602188110352,59.0058784484863,-100.307823181152,188.659484863281,58.4652252197266,-91.9674072265625,188.932525634766,58.439022064209,-84.7647094726563,189.622573852539,63.8519515991211,-75.171760559082,188.074432373047,72.7068176269531,-65.5436248779297,182.762908935547,46.717170715332,-18.4155044555664,146.643371582031,45.7229766845703,-26.650110244751,145.929306030273,66.1663818359375,-38.4006614685059,166.887359619141,55.4438285827637,-29.5745964050293,150.614761352539,70.9737548828125,-39.8054008483887,166.686340332031,32.3298645019531,48.1722183227539,107.729560852051,-36.5885925292969,48.1517181396484,59.0539894104004,-47.2592353820801,50.2863273620605,58.3146171569824,42.1051216125488,-13.9658689498901,146.566375732422,45.7887802124023,1.69342601299286,141.91291809082,49.1754112243652,14.3769092559814,137.612487792969,41.6330757141113,20.2516841888428,133.521087646484,51.2072105407715,27.0298480987549,130.10075378418,43.1800270080566,39.0896301269531,119.925750732422,36.7136917114258,42.4969673156738,116.122375488281,-77.4904937744141,55.2976188659668,57.7859687805176,-81.2158660888672,53.9686889648438,62.1363906860352,-87.7058944702148,53.4192352294922,68.917854309082,-89.1870422363281,51.9656944274902,72.3220901489258,-98.3563385009766,58.6828536987305,91.897705078125,-95.5958709716797,61.5477294921875,82.8396224975586,-115.95686340332,48.9586982727051,119.712738037109,-107.833068847656,58.0630874633789,108.631645202637,\r\n-137.283950805664,39.9079093933105,137.79150390625,-141.551376342773,32.4950866699219,139.130630493164,-142.881500244141,26.2538738250732,136.977416992188,-146.335845947266,21.5608139038086,137.930511474609,110.033271789551,-182.570877075195,156.903381347656,88.1021347045898,-159.886672973633,173.774032592773,98.1341094970703,-168.738540649414,167.285400390625,101.975486755371,-169.136566162109,164.484130859375,94.9476013183594,-164.0390625,169.144577026367,120.368286132813,-205.540145874023,138.806610107422,119.818237304688,-200.5146484375,137.834518432617,131.75341796875,-207.778350830078,131.697906494141,129.138153076172,-214.764038085938,134.487182617188,116.450904846191,-196.557250976563,140.880798339844,123.159561157227,-233.263854980469,126.798431396484,129.814208984375,-218.817443847656,132.756011962891,111.272399902344,-191.901794433594,149.128616333008,83.8511123657227,-160.470733642578,176.195266723633,86.8902053833008,-156.344314575195,175.792221069336,91.2448348999023,-142.594970703125,176.760330200195,82.31005859375,-125.097259521484,183.544982910156,76.2530670166016,-114.561225891113,186.425277709961,91.2814331054688,-132.194961547852,179.061538696289,65.723030090332,-101.811981201172,185.405166625977,61.0849800109863,-96.560661315918,187.87841796875,63.9559631347656,-78.7542114257813,188.951522827148,71.4738006591797,-60.8678665161133,180.931732177734,67.4676055908203,-70.7680358886719,185.981231689453,49.7596702575684,-20.760835647583,146.509353637695,63.8316497802734,-35.0482330322266,161.053787231445,61.4768180847168,-30.7345123291016,152.31494140625,54.1101989746094,-27.0231475830078,147.616470336914,49.594352722168,-25.5835056304932,146.440353393555,71.1902694702148,-54.3447265625,178.095458984375,73.1564636230469,-48.2495307922363,174.064056396484,74.7199172973633,-40.2197418212891,165.328201293945,-40.8349075317383,48.7280769348145,57.6224479675293,48.1011085510254,-14.1985912322998,146.339340209961,49.3119277954102,-2.92716693878174,142.883010864258,51.9128837585449,8.36182880401611,140.205749511719,\r\n48.6838684082031,21.8153381347656,133.352066040039,47.9247894287109,35.1198425292969,123.76513671875,38.4792633056641,44.3026428222656,114.159187316895,-53.7370681762695,53.0924034118652,54.7680702209473,-71.16748046875,56.2528114318848,52.6603660583496,-85.421875,54.6819610595703,64.984977722168,-90.6517868041992,56.0529937744141,72.6475219726563,-123.972648620605,49.4646492004395,128.423583984375,-126.449897766113,44.863094329834,131.841918945313,-117.929061889648,53.0142974853516,120.436805725098,-114.819755554199,58.1836013793945,115.826354980469,-100.399345397949,62.6748428344727,93.881706237793,-106.805969238281,66.9486618041992,102.356033325195,-129.846221923828,44.5111618041992,134.194152832031,-140.690292358398,39.0421257019043,140.113723754883,113.766639709473,-186.99333190918,152.798980712891,107.85506439209,-173.05094909668,161.321823120117,113.986663818359,-177.478393554688,158.970581054688,104.78776550293,-168.477508544922,163.099990844727,93.5982666015625,-160.187698364258,169.850646972656,124.691719055176,-201.484741210938,135.141235351563,116.562919616699,-193.036926269531,144.401153564453,128.8701171875,-223.754928588867,130.618804931641,127.073944091797,-229.097442626953,126.779426574707,73.1530685424805,-110.956871032715,186.415283203125,90.2211380004883,-149.458648681641,175.781219482422,80.6100921630859,-116.571418762207,185.490188598633,97.3413314819336,-141.302841186523,175.376190185547,69.0272598266602,-100.60285949707,184.586090087891,67.2849884033203,-97.4621505737305,185.344161987305,67.7426300048828,-82.9710311889648,188.698486328125,64.0439758300781,-92.5527725219727,187.637405395508,69.4867095947266,-78.9583358764648,188.233444213867,76.1736526489258,-61.6396408081055,179.849624633789,73.1079559326172,-70.2874908447266,184.893127441406,68.1527709960938,-35.7020988464355,160.65673828125,58.6834487915039,-27.4064846038818,148.119522094727,77.9876403808594,-48.626766204834,172.151870727539,71.9202423095703,-35.6079902648926,159.760650634766,80.6426010131836,-44.5149612426758,167.310394287109,\r\n40.5111656188965,47.374942779541,110.011787414551,51.740665435791,2.9421980381012,141.526870727539,52.9993896484375,13.2556991577148,138.081527709961,54.4173278808594,22.2493801116943,132.975021362305,52.9697875976563,30.7585144042969,127.19947052002,48.1982154846191,38.1153335571289,121.169876098633,45.0595092773438,42.4423599243164,116.125381469727,-64.6081390380859,54.9767875671387,56.2600173950195,-78.9434432983398,57.1893043518066,52.4852447509766,-81.9037322998047,56.3429183959961,57.1883087158203,-84.0162353515625,55.6492538452148,61.474925994873,-88.9911270141602,58.0090827941895,67.9663619995117,-92.1731414794922,62.0595817565918,73.2235717773438,-122.045471191406,56.274715423584,123.228080749512,-114.406715393066,62.6412391662598,113.518127441406,-109.982284545898,64.6064300537109,107.829566955566,-137.910018920898,44.9091033935547,138.251541137695,-140.918304443359,44.0086135864258,140.44775390625,-143.577575683594,33.2426567077637,141.777893066406,-144.929702758789,26.330680847168,139.841720581055,115.825843811035,-182.189849853516,155.839263916016,97.0350036621094,-160.985778808594,167.691436767578,114.541717529297,-173.028945922852,160.475723266602,90.8933944702148,-155.886276245117,172.422897338867,119.897247314453,-196.965301513672,138.236541748047,128.958129882813,-200.549652099609,132.54899597168,135.182754516602,-206.503234863281,129.008651733398,133.632598876953,-214.119979858398,130.07275390625,117.295989990234,-186.062240600586,152.144912719727,121.356391906738,-192.031814575195,140.797805786133,125.917831420898,-232.805816650391,120.049766540527,132.859512329102,-219.270477294922,128.455581665039,74.3491821289063,-101.596954345703,184.482070922852,93.154426574707,-147.46044921875,174.434097290039,87.6720886230469,-126.123359680176,181.240753173828,84.0883331298828,-119.154670715332,183.821014404297,78.5168838500977,-109.286712646484,185.698196411133,98.7685775756836,-145.812286376953,173.249984741211,98.4244384765625,-138.493560791016,175.260177612305,67.8911437988281,-87.7850036621094,187.944427490234,\r\n70.6935195922852,-74.4773025512695,187.011322021484,85.4126663208008,-65.1349868774414,179.424591064453,84.4326629638672,-69.3460006713867,181.493789672852,55.4427261352539,-22.5890121459961,146.240341186523,52.9339828491211,-23.5245056152344,146.563369750977,65.7403335571289,-32.1066474914551,154.779159545898,62.3542060852051,-26.6997165679932,147.40544128418,76.9018325805664,-56.2248077392578,176.577301025391,75.6143035888672,-36.099437713623,160.022674560547,77.8794250488281,-40.2678451538086,163.871063232422,-45.8960037231445,51.2456207275391,46.708683013916,-53.0009994506836,53.7251625061035,48.5493621826172,52.5742454528809,-7.37630319595337,143.432067871094,60.1198844909668,3.72093510627747,141.051818847656,57.5772361755371,7.97361087799072,139.981719970703,56.9255714416504,26.3747844696045,129.929733276367,53.5170402526855,35.0989418029785,123.292091369629,-61.9083709716797,55.5520439147949,50.5634574890137,-79.5611038208008,58.558536529541,47.9146995544434,-87.1116409301758,58.3029136657715,62.6557464599609,-99.1560287475586,67.5897216796875,85.8952178955078,-96.2979431152344,66.0183715820313,80.9521408081055,-127.705017089844,55.2357139587402,129.537689208984,-129.180160522461,48.6632690429688,133.1640625,-123.846641540527,62.8884658813477,122.147972106934,-101.701469421387,66.1113739013672,93.6388854980469,-111.497428894043,71.7246246337891,105.06029510498,-137.436965942383,49.6926727294922,137.049438476563,-142.90950012207,39.9943161010742,142.481979370117,108.577140808105,-167.357406616211,162.433929443359,117.165977478027,-177.565399169922,157.894485473633,100.838371276855,-160.322723388672,165.844268798828,92.4735565185547,-155.253219604492,171.539810180664,123.799629211426,-196.187225341797,136.49137878418,125.10075378418,-186.902313232422,142.865997314453,119.578216552734,-186.843307495117,149.45964050293,130.992340087891,-224.313995361328,126.536399841309,129.67919921875,-228.978439331055,120.381797790527,93.7131805419922,-124.455192565918,178.002456665039,84.2923583984375,-110.830856323242,184.196044921875,\r\n81.4258728027344,-109.056686401367,185.120132446289,100.65535736084,-141.488876342773,173.495010375977,100.491340637207,-132.504989624023,174.386093139648,72.1090621948242,-97.3621444702148,184.326065063477,74.4483871459961,-84.1413497924805,186.705307006836,73.4075927734375,-92.9343109130859,184.73210144043,77.0408477783203,-78.8374252319336,186.135238647461,76.6996078491211,-74.5895080566406,185.580184936523,69.3008880615234,-31.915828704834,154.710159301758,65.9942626953125,-27.3704814910889,148.446548461914,60.3608093261719,-23.2064743041992,145.617279052734,81.3691711425781,-54.2818183898926,174.134063720703,82.3455657958984,-48.9489936828613,170.467697143555,74.5485992431641,-31.8587226867676,156.206314086914,81.9202194213867,-41.1459312438965,163.495010375977,52.4663352966309,43.005615234375,115.150283813477,56.1931991577148,-5.470046043396,142.295944213867,60.1156845092773,-0.436484009027481,141.604888916016,59.7803535461426,15.3445043563843,135.819320678711,65.1199722290039,21.5013084411621,131.797927856445,65.1030731201172,27.2865734100342,127.397483825684,59.0408821105957,40.4474639892578,116.945465087891,-73.2711868286133,58.0047836303711,45.243537902832,-82.7744140625,58.4397239685059,52.027904510498,-85.1095428466797,57.5519371032715,58.8267669677734,-89.1124420166016,60.8008575439453,65.2076873779297,-94.0381240844727,66.754638671875,74.3650894165039,-125.535804748535,59.0326843261719,125.384284973145,-112.94457244873,66.8273468017578,109.658744812012,-124.902740478516,67.5902252197266,120.724838256836,-108.186111450195,72.5430068969727,99.667366027832,-142.398452758789,48.961597442627,140.678787231445,-143.878616333008,44.6457748413086,143.4140625,-145.282745361328,33.7905120849609,144.9501953125,119.05216217041,-181.019729614258,154.886184692383,114.912757873535,-168.903549194336,161.249801635742,105.991874694824,-160.191696166992,164.028076171875,118.078071594238,-173.026947021484,159.212600708008,97.9485931396484,-155.988296508789,168.613525390625,135.894805908203,-201.406723022461,128.566604614258,\r\n128.361068725586,-195.868194580078,133.827117919922,124.491691589355,-191.618789672852,138.869613647461,122.59651184082,-182.178848266602,151.049819946289,129.636199951172,-231.730697631836,111.500930786133,136.266860961914,-218.211380004883,122.892044067383,75.9007339477539,-97.5220565795898,183.707000732422,89.3168487548828,-113.309097290039,181.22575378418,104.020690917969,-147.744476318359,169.200576782227,105.070793151855,-135.428268432617,171.490814208984,91.0041122436523,-69.3200912475586,179.283569335938,82.8915176391602,-73.8355331420898,183.380966186523,56.4508247375488,-19.1992816925049,145.076217651367,68.6730270385742,-27.7710208892822,150.020706176758,65.3234939575195,-23.046459197998,145.024215698242,78.7837142944336,-35.992130279541,159.749649047852,78.1064453125,-31.6852054595947,156.886383056641,-63.1029891967773,56.3913269042969,44.9496078491211,59.4102172851563,-9.31552219390869,142.010925292969,64.9498596191406,9.56839847564697,137.550491333008,65.9687576293945,-0.773810982704163,140.438766479492,-81.0333480834961,60.175895690918,42.8283996582031,-84.0112380981445,60.3448143005371,47.9871063232422,-86.3581695556641,61.3312072753906,50.9597969055176,-89.8233108520508,64.6215286254883,57.1667022705078,-97.4565582275391,70.5127105712891,78.2423706054688,-104.186714172363,71.8272399902344,92.2003402709961,-91.2329483032227,65.2851943969727,65.9707641601563,-131.237365722656,53.6058540344238,132.647003173828,-129.534194946289,63.7543487548828,126.280380249023,-127.954040527344,71.4032974243164,121.080863952637,-110.938377380371,75.7713241577148,100.574859619141,-120.10327911377,72.4219970703125,112.993072509766,-141.412368774414,53.5496482849121,138.19953918457,-145.667785644531,40.2291412353516,146.661376953125,-145.47526550293,37.0098266601563,145.805786132813,109.342208862305,-160.583724975586,162.941970825195,120.651321411133,-176.683319091797,156.086303710938,102.966583251953,-155.233215332031,166.690338134766,132.522491455078,-196.485260009766,130.914825439453,128.029037475586,-191.309753417969,136.623397827148,\r\n129.569198608398,-182.311874389648,142.533966064453,133.342559814453,-223.835922241211,121.619918823242,132.859512329102,-227.913345336914,113.170097351074,99.1179046630859,-123.073059082031,176.572296142578,92.1609268188477,-113.344108581543,180.29866027832,89.5976791381836,-107.80256652832,181.244750976563,84.7784042358398,-104.684265136719,183.169952392578,80.7966156005859,-97.1939239501953,182.745910644531,106.96297454834,-142.141937255859,168.641540527344,102.725555419922,-128.003540039063,174.170074462891,82.2143478393555,-90.2326431274414,182.591888427734,82.3230590820313,-82.1478500366211,184.110046386719,82.0985336303711,-77.9758453369141,184.325057983398,88.3253479003906,-73.5888061523438,180.965744018555,90.6976852416992,-65.1911849975586,178.174468994141,85.7950057983398,-55.485034942627,174.086059570313,57.9035682678223,-14.1394853591919,143.173034667969,71.9442443847656,-28.9973411560059,152.759979248047,72.44580078125,-22.0895652770996,146.196319580078,67.9283447265625,-19.0321655273438,142.782989501953,63.9966659545898,-18.3251953125,142.743988037109,90.5473709106445,-53.1630096435547,171.406799316406,78.6368026733398,-27.6532096862793,154.407135009766,81.9734268188477,-35.8739166259766,159.871673583984,-61.0689888000488,56.1952095031738,41.5577774047852,71.3501815795898,4.91266107559204,137.841522216797,67.3561935424805,17.2859935760498,133.783111572266,74.6337127685547,21.3457927703857,129.254669189453,70.9794540405273,26.930139541626,126.033355712891,63.0752754211426,43.714282989502,113.479118347168,-76.0970611572266,59.2688064575195,39.7341995239258,-88.9238204956055,64.4621200561523,50.7167739868164,-93.3925552368164,69.4360046386719,65.2560958862305,-94.8041000366211,69.8141403198242,70.950553894043,-132.989547729492,59.018482208252,131.251861572266,-104.101707458496,77.1486587524414,85.2320556640625,-108.701156616211,79.4831924438477,91.739387512207,-115.085784912109,75.8194274902344,105.716361999512,-146.192825317383,49.1853218078613,145.341247558594,-144.320648193359,53.5900535583496,140.674789428711,\r\n-147.770980834961,44.6051712036133,149.802688598633,117.990051269531,-164.355102539063,160.798751831055,118.591117858887,-168.575531005859,160.098693847656,106.405921936035,-155.598236083984,165.064178466797,121.358390808105,-169.136566162109,158.471527099609,133.473571777344,-191.646789550781,131.876922607422,135.147735595703,-223.533905029297,116.701438903809,79.170051574707,-93.3636474609375,182.948928833008,108.224098205566,-151.274810791016,165.452209472656,114.483711242676,-147.939498901367,162.010879516602,109.332206726074,-129.728713989258,170.0966796875,86.464973449707,-90.6387786865234,180.929733276367,92.7737884521484,-75.3225784301758,178.889526367188,94.2322235107422,-65.4854125976563,176.824325561523,90.6919860839844,-61.2544021606445,176.472305297852,71.6295166015625,-18.5294151306152,142.746994018555,89.2373352050781,-44.9665069580078,164.851150512695,81.9533309936523,-33.0427398681641,158.565551757813,84.2763519287109,-40.2704467773438,162.360916137695,64.3365936279297,-14.5179233551025,141.457870483398,70.6717224121094,11.2382011413574,135.853317260742,65.7245330810547,-10.0144815444946,140.418762207031,71.3888931274414,0.819293975830078,138.771606445313,-79.2445755004883,60.0600852966309,37.3067588806152,-85.5082855224609,62.0927848815918,44.8015937805176,-88.1269454956055,64.2913055419922,45.0006141662598,-91.9009094238281,69.376594543457,48.1857261657715,-99.2091217041016,74.0886611938477,76.4450988769531,-134.09765625,71.6772232055664,124.72322845459,-125.724822998047,76.0388565063477,115.708343505859,-114.819755554199,84.8254165649414,95.8406982421875,-116.716941833496,80.3704223632813,103.474136352539,-147.496963500977,53.8922805786133,144.514175415039,-146.159820556641,57.9519805908203,139.669677734375,125.227760314941,-177.526397705078,151.218826293945,112.540519714355,-159.501617431641,161.981887817383,109.956268310547,-155.672256469727,163.373016357422,124.274673461914,-173.345977783203,154.194122314453,140.181228637695,-191.016723632813,128.842636108398,133.209548950195,-186.487274169922,135.420272827148,\r\n130.895324707031,-176.713317871094,145.069213867188,134.411666870117,-179.908630371094,139.717697143555,102.525543212891,-121.644920349121,174.968139648438,96.4857482910156,-113.080078125,179.512588500977,98.0630111694336,-107.750556945801,179.719619750977,90.4667587280273,-103.875175476074,180.766708374023,86.3755569458008,-95.4654541015625,180.917724609375,110.964363098145,-133.438079833984,168.544525146484,88.1272277832031,-80.0889511108398,181.361770629883,95.3687438964844,-73.5410079956055,177.363388061523,95.3472442626953,-69.2445831298828,177.20036315918,92.3591461181641,-57.2128067016602,173.579010009766,79.2375640869141,-23.4339962005615,150.979797363281,74.3663787841797,-14.4049110412598,140.019729614258,68.4935073852539,-14.4760179519653,140.692794799805,95.6600723266602,-44.8581962585449,163.125991821289,87.5013732910156,-26.9239387512207,156.524353027344,85.8279037475586,-35.9468193054199,160.170700073242,-70.4961090087891,58.5559387207031,35.2058525085449,77.4721832275391,13.8807601928711,132.831024169922,77.0861511230469,6.20074796676636,135.394271850586,77.7414093017578,17.364501953125,130.884826660156,74.9881439208984,29.8467235565186,123.693130493164,70.9531478881836,31.6868057250977,122.28199005127,-84.9334259033203,62.1119842529297,38.2867584228516,-90.9589157104492,68.0487670898438,43.4521598815918,-94.2437362670898,72.7456283569336,54.1669082641602,-100.693367004395,81.2158584594727,63.8936653137207,-139.980209350586,59.8668670654297,134.044128417969,-130.377288818359,75.315673828125,120.270790100098,-112.330513000488,84.57568359375,90.7761993408203,-118.348098754883,84.9214248657227,101.231918334961,-124.401695251465,85.1751480102539,107.442535400391,-143.253540039063,58.2920112609863,136.820404052734,119.187171936035,-160.010681152344,160.219696044922,124.131652832031,-168.487503051758,156.190322875977,135.068725585938,-187.430374145508,133.37907409668,134.087646484375,-175.964248657227,142.722991943359,99.8392791748047,-112.42301940918,178.478500366211,90.9287033081055,-98.5665588378906,179.704620361328,\r\n112.897560119629,-150.845779418945,162.484924316406,116.111869812012,-138.337554931641,163.713043212891,114.174682617188,-128.292572021484,166.928375244141,106.21590423584,-121.396896362305,172.281890869141,91.1202239990234,-89.8857116699219,178.415481567383,95.9043960571289,-82.3413696289063,175.792221069336,93.0959167480469,-86.7010955810547,177.340377807617,94.7004699707031,-61.0690841674805,174.663116455078,98.3889389038086,-63.9017601013184,173.506011962891,78.4410781860352,-18.8793506622314,145.26823425293,71.3440856933594,-13.6639394760132,139.767700195313,78.0624465942383,-13.9272651672363,140.064727783203,86.8272018432617,-22.6054153442383,152.888977050781,98.5929565429688,-52.1370086669922,167.794448852539,89.8250961303711,-40.5148696899414,161.867858886719,88.0309219360352,-31.6555004119873,158.817565917969,68.9178466796875,43.4135551452637,113.77815246582,-64.1491928100586,57.1952056884766,33.1095504760742,77.6104049682617,10.9602737426758,133.949127197266,74.2932739257813,-5.78845691680908,137.725494384766,77.7147064208984,-4.79076910018921,136.49137878418,77.9335327148438,27.1402587890625,124.923248291016,-70.2451858520508,58.4012222290039,28.3502826690674,-81.9175338745117,60.829662322998,32.3191680908203,-87.1586456298828,63.5385246276855,40.790901184082,-90.1156387329102,66.6240310668945,39.057731628418,-95.4357604980469,74.1156616210938,40.9100112915039,-97.5607681274414,78.1604614257813,44.4130554199219,-97.5666656494141,77.7364120483398,57.9798851013184,-104.431739807129,81.8266220092773,75.6254119873047,-143.969604492188,71.1196746826172,129.643707275391,-134.856719970703,76.7463226318359,121.976959228516,-133.190551757813,85.3054580688477,113.945167541504,-109.86026763916,85.5382843017578,82.9771347045898,-114.973770141602,89.546272277832,90.7665023803711,-117.929061889648,89.5681762695313,96.8600921630859,-129.860229492188,85.097541809082,111.866966247559,-150.808288574219,58.4099235534668,146.019302368164,-147.892990112305,65.4989166259766,135.843322753906,132.245452880859,-169.630615234375,147.195434570313,\r\n121.827438354492,-160.395721435547,159.246612548828,114.816749572754,-155.131195068359,160.934768676758,130.923324584961,-165.273193359375,150.075698852539,124.500694274902,-164.245101928711,156.878372192383,140.652282714844,-186.149230957031,131.253860473633,140.249237060547,-170.67073059082,141.53385925293,102.632553100586,-114.982269287109,176.289291381836,99.0367965698242,-103.219116210938,179.53059387207,98.9645919799805,-99.0949096679688,178.830535888672,116.286895751953,-151.366836547852,160.171691894531,117.310989379883,-130.352767944336,164.79216003418,120.844337463379,-141.836898803711,158.824554443359,100.40633392334,-68.9125518798828,172.808929443359,100.525344848633,-77.2070693969727,172.66291809082,100.750366210938,-56.4540328979492,169.485610961914,84.5551834106445,-18.5819206237793,148.0625,72.5300064086914,-9.82531261444092,138.501571655273,76.6703109741211,-9.70641136169434,137.823516845703,93.9650039672852,-40.3285522460938,161.034790039063,100.428337097168,-45.0310134887695,161.230804443359,93.5319595336914,-22.8926429748535,154.195114135742,92.0147094726563,-27.573802947998,157.408416748047,92.3006362915039,-35.7670059204102,159.834671020508,87.7913970947266,12.0338792800903,129.379669189453,81.1292419433594,-1.05955398082733,134.503173828125,83.6129913330078,7.20626592636108,132.23796081543,82.016731262207,22.8340377807617,126.230369567871,77.8699264526367,38.3002548217773,118.333602905273,79.9174194335938,35.2059478759766,120.397796630859,73.092658996582,40.1394348144531,116.477416992188,-83.720703125,61.1483917236328,29.2518711090088,-87.0046310424805,63.4023628234863,36.1831474304199,-98.4356460571289,80.1768569946289,48.364143371582,-101.688468933105,85.0224304199219,57.7506637573242,-105.358825683594,85.7577972412109,70.9773635864258,-141.769393920898,63.3372077941895,132.816009521484,-113.014579772949,88.802604675293,85.7697143554688,-122.144477844238,89.7360992431641,102.416038513184,-131.805419921875,89.2075424194336,110.890869140625,-153.127517700195,67.3213958740234,141.413864135742,\r\n-147.791000366211,75.2335662841797,129.774719238281,-151.446350097656,69.6752319335938,136.853408813477,119.56421661377,-151.569839477539,158.709564208984,139.392166137695,-177.080352783203,138.236541748047,135.842803955078,-168.264495849609,145.305252075195,103.217613220215,-107.622543334961,177.853439331055,96.2211227416992,-93.171630859375,177.21337890625,94.4387512207031,-90.2493438720703,176.911346435547,119.947250366211,-146.287322998047,158.4365234375,120.460296630859,-133.627090454102,161.898864746094,117.520004272461,-126.54239654541,165.766250610352,109.856262207031,-121.418899536133,170.236694335938,107.331016540527,-116.601425170898,172.887954711914,97.529655456543,-85.172248840332,174.670120239258,99.110107421875,-60.4321212768555,172.039855957031,105.083793640137,-65.363899230957,169.646621704102,81.6830978393555,-14.4396152496338,141.462860107422,80.7659072875977,-9.92634296417236,137.554489135742,87.3698577880859,-17.1519794464111,147.511459350586,102.646553039551,-52.6863594055176,166.099273681641,98.401237487793,-40.280647277832,159.711654663086,90.1743316650391,-16.8310470581055,147.719482421875,92.6014633178711,-31.4630813598633,158.797561645508,87.4661636352539,16.7621421813965,127.604507446289,82.3530654907227,-5.42319107055664,135.25325012207,84.6386871337891,21.980052947998,125.846336364746,84.8679122924805,32.8985252380371,121.01586151123,-87.3468627929688,62.7691497802734,30.5771007537842,-89.0758361816406,64.692741394043,34.0795402526855,-92.0165252685547,68.0454711914063,33.8746223449707,-97.6099700927734,76.8408279418945,37.2889595031738,-99.311637878418,81.7309112548828,41.6562843322754,-100.787376403809,84.8256072998047,51.9598960876465,-142.829498291016,75.7947235107422,125.960350036621,-137.290954589844,84.6471939086914,116.729438781738,-111.81046295166,91.255744934082,79.0052490234375,-115.009773254395,95.3441467285156,84.7007064819336,-118.770141601563,94.1554260253906,95.7294845581055,-122.692527770996,94.2587356567383,101.070907592773,-126.559913635254,89.8117065429688,106.601448059082,\r\n-150.097213745117,75.0052490234375,132.053955078125,134.305648803711,-164.48811340332,147.496459960938,125.237770080566,-146.617370605469,154.73616027832,124.951736450195,-159.353607177734,156.871383666992,131.355361938477,-157.807464599609,150.94580078125,139.488159179688,-165.009170532227,144.822204589844,105.890869140625,-111.889961242676,175.424194335938,104.435722351074,-98.7318725585938,177.33837890625,106.07788848877,-102.812080383301,177.296371459961,100.969390869141,-95.6826782226563,177.319381713867,122.381484985352,-135.057235717773,160.009689331055,123.964637756348,-143.029022216797,155.604248046875,105.283805847168,-75.9989471435547,169.588623046875,102.528541564941,-81.3696746826172,171.856842041016,104.220710754395,-61.3589134216309,169.381591796875,84.8743133544922,-14.385009765625,142.960021972656,104.909774780273,-56.6159477233887,166.906356811523,104.674751281738,-51.8275756835938,163.507034301758,106.573936462402,-47.0635108947754,159.488632202148,100.888381958008,-26.9383392333984,155.627258300781,94.037109375,-18.9122543334961,150.193725585938,98.0803070068359,-31.3656730651855,157.823471069336,97.8988876342773,-35.4596748352051,158.653549194336,94.0337142944336,10.7724561691284,128.44758605957,88.4178619384766,5.86714506149292,130.927825927734,84.3053588867188,-0.720903992652893,133.30207824707,-88.2113494873047,63.7309455871582,32.3283195495605,-100.787376403809,85.9807205200195,47.6346740722656,-104.922790527344,91.0488204956055,59.5967445373535,-145.404754638672,79.3235778808594,124.94425201416,-114.23469543457,95.7535858154297,80.2245635986328,-116.433921813965,95.5328598022461,89.9610137939453,-126.857933044434,94.214729309082,105.287315368652,-133.249557495117,94.2232284545898,110.431823730469,-154.204620361328,71.894645690918,139.488662719727,-151.283325195313,80.6243057250977,130.825836181641,-153.315521240234,76.5205001831055,135.339263916016,133.954620361328,-159.841659545898,148.779586791992,125.882827758789,-155.010177612305,155.857269287109,145.121704101563,-168.496505737305,138.189544677734,\r\n142.137420654297,-164.209091186523,143.161041259766,109.879257202148,-108.634643554688,175.193176269531,102.443534851074,-85.7555999755859,172.916946411133,120.41429901123,-122.824035644531,166.014282226563,124.179664611816,-136.666397094727,157.443435668945,124.313682556152,-130.051742553711,160.766754150391,112.384506225586,-119.3876953125,169.942657470703,106.993980407715,-64.6841430664063,167.781448364258,109.030174255371,-71.572509765625,166.250289916992,84.5383834838867,-9.62382316589355,137.494491577148,93.6535720825195,-10.0416841506958,140.134735107422,88.0392227172852,-10.1046895980835,138.735595703125,103.714660644531,-48.0666122436523,161.468826293945,109.087181091309,-44.0835227966309,157.615447998047,103.037590026855,-22.790433883667,152.459945678711,99.5257415771484,-18.0777721405029,148.69157409668,91.2255325317383,6.9775538444519,130.160751342773,94.0471115112305,19.933952331543,123.855140686035,87.1682434082031,-5.76064395904541,134.652191162109,-89.1391372680664,63.7370452880859,29.5444488525391,-89.1074905395508,64.2148971557617,31.8119945526123,-100.41234588623,81.2556686401367,32.0172386169434,-101.196426391602,87.1832427978516,42.211238861084,-103.542655944824,93.985107421875,46.4914588928223,-108.241111755371,91.1464309692383,70.8633499145508,-106.902976989746,91.1204299926758,67.0680694580078,-148.446060180664,80.8139190673828,126.842430114746,-140.991317749023,85.5191802978516,117.889556884766,-144.00260925293,84.86181640625,120.153778076172,-139.318161010742,90.2169418334961,114.75325012207,-113.713653564453,97.645263671875,75.9202423095703,-115.009773254395,100.513847351074,77.8529357910156,-116.441917419434,102.148010253906,85.918327331543,-119.206184387207,99.8540802001953,94.1695327758789,-122.947555541992,99.0735015869141,100.013008117676,-127.31697845459,98.739875793457,104.754264831543,-137.053939819336,93.6975784301758,112.711051940918,-153.274520874023,80.2814636230469,133.806121826172,139.762191772461,-159.312606811523,146.174331665039,131.177352905273,-150.19172668457,150.824783325195,\r\n134.533676147461,-152.663955688477,149.059616088867,146.639862060547,-162.663940429688,139.199630737305,143.106521606445,-159.258605957031,144.092132568359,110.461318969727,-93.2233352661133,173.747024536133,109.558227539063,-98.9922943115234,175.532211303711,110.819351196289,-103.832176208496,175.326171875,115.577819824219,-118.496612548828,169.508605957031,126.623901367188,-137.021423339844,154.290115356445,105.865867614746,-81.7017059326172,170.438705444336,107.015983581543,-60.3470115661621,166.415313720703,109.97526550293,-75.7309265136719,166.674331665039,108.113090515137,-56.1820030212402,162.493927001953,107.420021057129,-51.6304588317871,160.889770507813,109.821258544922,-49.8371810913086,158.881576538086,108.679145812988,-31.752010345459,155.308227539063,111.295402526855,-27.5122966766357,153.110015869141,99.176513671875,-11.2557029724121,141.478866577148,96.3484344482422,6.97013282775879,129.795715332031,97.6116638183594,16.9410591125488,124.454200744629,88.9437103271484,-0.936936020851135,132.438980102539,93.2733383178711,26.8511295318604,121.070869445801,92.5802688598633,31.3333702087402,119.10767364502,-101.312431335449,86.5206756591797,37.1851463317871,-102.693565368652,92.5139617919922,43.1671333312988,-112.731552124023,98.9537963867188,71.7430267333984,-106.044898986816,96.038215637207,55.771369934082,-108.492141723633,101.084899902344,59.5399398803711,-148.598068237305,84.6535949707031,125.10326385498,-146.433853149414,85.6251907348633,121.805938720703,-116.486915588379,110.568832397461,78.1667633056641,-118.563125610352,104.800270080566,90.4038619995117,-136.194854736328,98.5486602783203,112.23600769043,-160.596237182617,76.6029052734375,148.527557373047,-151.365341186523,85.2372512817383,129.425689697266,-154.173614501953,85.2568511962891,135.054244995117,-157.409927368164,81.3554763793945,141.790893554688,113.018569946289,-108.314613342285,173.738021850586,108.933166503906,-85.3952713012695,170.823745727539,117.40299987793,-115.557319641113,169.705627441406,124.69571685791,-124.225173950195,162.59294128418,\r\n130.925323486328,-125.12126159668,156.142303466797,130.201263427734,-140.964813232422,150.686767578125,130.042236328125,-136.473373413086,151.183807373047,109.410217285156,-65.2553939819336,164.867156982422,113.130577087402,-73.3719863891602,164.292114257813,111.273399353027,-61.1773948669434,160.872772216797,90.8643951416016,-5.35959482192993,134.754211425781,112.77254486084,-51.1368141174316,157.983489990234,105.698852539063,-18.4144039154053,147.836486816406,113.311592102051,-22.6497192382813,149.214630126953,97.2713241577148,-5.71662998199463,136.364364624023,98.0658111572266,27.5393981933594,119.925750732422,-104.219718933105,99.1542205810547,38.4948768615723,-105.03279876709,100.795883178711,43.0109176635742,-111.20240020752,105.614349365234,60.8987693786621,-113.557640075684,105.417327880859,66.2756958007813,-142.288436889648,89.7696990966797,116.720443725586,-146.859909057617,89.4665679931641,121.089866638184,-141.008316040039,93.8310928344727,115.830352783203,-115.186790466309,105.811370849609,71.6490249633789,-118.567123413086,111.037879943848,85.3708724975586,-122.289489746094,102.95108795166,98.7906875610352,-119.74723815918,106.472427368164,93.3999557495117,-125.206771850586,103.558143615723,102.887092590332,140.166229248047,-155.640243530273,146.449356079102,136.32585144043,-138.423568725586,147.069412231445,150.804275512695,-149.896697998047,138.762603759766,146.919891357422,-153.110992431641,141.811889648438,114.410705566406,-98.2851257324219,173.116958618164,114.917755126953,-103.911186218262,172.859954833984,115.460807800293,-87.2373428344727,169.177581787109,120.971351623535,-117.352500915527,167.196380615234,127.873023986816,-124.991241455078,159.615646362305,133.592575073242,-127.14045715332,151.1328125,114.416709899902,-79.3961791992188,166.359313964844,112.19149017334,-68.6088180541992,162.987976074219,110.696342468262,-56.3981285095215,159.844665527344,113.071571350098,-44.0209159851074,156.681365966797,113.744644165039,-32.7145042419434,154.410125732422,115.752838134766,-25.2900772094727,149.913696289063,\r\n104.361717224121,-5.41757106781006,135.868316650391,104.967781066895,-10.1244916915894,139.861709594727,97.2192230224609,-0.473722010850906,132.92903137207,99.9568939208984,6.2854962348938,130.042755126953,-103.256622314453,92.7027893066406,33.8863258361816,-107.987091064453,104.968284606934,50.5727577209473,-109.764259338379,106.203407287598,55.9753875732422,-150.064208984375,89.1860427856445,126.586410522461,-115.618835449219,109.888763427734,71.0740661621094,-117.091979980469,115.508323669434,78.7399139404297,-119.390197753906,115.549324035645,85.6205978393555,-120.374298095703,103.830177307129,95.3053436279297,-130.322265625,103.620155334473,107.565544128418,-138.671096801758,99.0096054077148,115.182289123535,-161.59733581543,83.0270309448242,148.53955078125,-157.174911499023,93.1385269165039,139.951721191406,142.311431884766,-148.377548217773,145.441268920898,143.968597412109,-153.33903503418,144.360153198242,116.433906555176,-92.2346420288086,170.429702758789,120.760330200195,-112.505027770996,167.847442626953,126.866920471191,-114.891258239746,162.685943603516,129.574203491211,-114.965270996094,160.732757568359,133.425567626953,-116.022369384766,156.904373168945,135.690795898438,-133.17204284668,147.177429199219,137.092926025391,-124.385192871094,148.067504882813,136.560882568359,-115.840354919434,152.344940185547,116.313896179199,-71.3144912719727,162.586944580078,113.296592712402,-60.3605155944824,159.069595336914,117.525016784668,-42.4474563598633,155.955291748047,116.871948242188,-55.9546813964844,158.140502929688,119.059158325195,-31.9173278808594,152.299942016602,111.949462890625,-17.1807842254639,145.173233032227,127.021934509277,-22.5196075439453,142.033920288086,102.832572937012,-1.52591896057129,133.578094482422,104.229713439941,5.60170888900757,129.722717285156,103.617652893066,14.6745376586914,125.02725982666,103.070091247559,27.7319679260254,118.637130737305,-104.523750305176,100.959892272949,33.7149085998535,-106.089904785156,106.019393920898,42.0279235839844,-113.112594604492,111.068885803223,60.9989814758301,\r\n-114.682746887207,110.568832397461,65.8965606689453,-111.635444641113,110.680847167969,56.5387420654297,-145.780792236328,94.0634155273438,120.845848083496,-115.896865844727,115.750343322754,72.7549285888672,-122.297492980957,108.35262298584,99.9043884277344,-120.665328979492,110.409820556641,95.7729873657227,-127.109962463379,107.655548095703,105.785369873047,-134.11865234375,104.12020111084,110.74885559082,-136.773910522461,102.415031433105,113.872161865234,-140.669296264648,98.8933868408203,118.122573852539,-158.765060424805,93.3894577026367,142.509979248047,-152.040405273438,95.1743240356445,131.207855224609,143.51155090332,-144.773193359375,144.48616027832,146.719879150391,-146.91438293457,142.46696472168,119.524208068848,-98.4149398803711,169.368591308594,119.372192382813,-103.271118164063,169.489608764648,119.653221130371,-85.1156387329102,167.024368286133,138.64208984375,-127.156455993652,145.891296386719,140.811294555664,-133.518081665039,144.283142089844,113.827651977539,-67.3351974487305,161.280807495117,119.817237854004,-75.9701461791992,163.832061767578,122.657508850098,-38.6264839172363,153.900085449219,122.819526672363,-44.112621307373,155.532241821289,116.976951599121,-16.4389114379883,142.510971069336,120.786331176758,-28.6696090698242,149.671676635742,115.830848693848,-9.99376964569092,136.596389770508,111.237396240234,-1.40121698379517,131.355880737305,107.537033081055,13.9606676101685,124.672218322754,-105.11580657959,106.249412536621,36.0022315979004,-108.849174499512,110.455825805664,47.9530029296875,-148.113021850586,94.4027557373047,124.091163635254,-116.165885925293,120.742835998535,75.9191436767578,-117.315002441406,124.842231750488,81.1013565063477,-124.442695617676,108.154594421387,103.168113708496,-120.704330444336,116.668426513672,91.6977920532227,-131.088348388672,111.636940002441,109.260704040527,-164.617645263672,88.8421020507813,151.288833618164,-160.798263549805,93.6957778930664,145.437240600586,-149.909194946289,96.1707229614258,127.622505187988,-151.906387329102,99.1661224365234,130.988845825195,\r\n-158.562042236328,98.9822006225586,141.282852172852,149.311126708984,-140.095733642578,140.145721435547,119.167175292969,-91.9329071044922,168.84455871582,125.02074432373,-102.911087036133,165.756240844727,126.350875854492,-107.909576416016,164.295104980469,133.99462890625,-107.831565856934,159.450622558594,137.941009521484,-107.527534484863,154.954193115234,140.596267700195,-122.263977050781,145.922302246094,138.640075683594,-116.430404663086,149.574661254883,116.18888092041,-63.5083236694336,159.610641479492,120.348289489746,-67.366096496582,161.115783691406,122.716522216797,-51.7612724304199,157.579452514648,125.043746948242,-36.7471008300781,152.115905761719,124.084655761719,-17.9107551574707,139.953720092773,112.10147857666,-5.66827487945557,133.850112915039,-104.662757873535,105.609344482422,32.3250694274902,-105.57585144043,110.51082611084,38.0308303833008,-112.350517272949,115.281295776367,57.7118606567383,-114.080680847168,116.325401306152,64.5213317871094,-106.897979736328,111.508926391602,41.8466033935547,-110.522331237793,116.689437866211,50.6230621337891,-142.95051574707,99.459846496582,120.957862854004,-144.973724365234,102.651054382324,123.844139099121,-114.336715698242,121.241882324219,67.6984405517578,-119.707237243652,120.389793395996,86.7850112915039,-123.954650878906,112.71704864502,102.525054931641,-122.332489013672,113.197090148926,99.3196411132813,-126.653915405273,112.360008239746,105.584350585938,-135.670806884766,109.55973815918,114.546226501465,-133.259552001953,116.08137512207,111.666946411133,-139.457168579102,103.530143737793,119.684730529785,-162.96647644043,93.4619522094727,148.166519165039,-162.443420410156,99.4651412963867,145.900299072266,145.581756591797,-131.892929077148,140.920806884766,123.387588500977,-96.4927520751953,167.007369995117,124.4296875,-77.5377960205078,163.042984008789,124.261672973633,-84.9766235351563,165.434219360352,131.251342773438,-104.899276733398,162.073883056641,136.363861083984,-107.665550231934,157.01139831543,141.873397827148,-128.715621948242,143.500061035156,\r\n122.75952911377,-71.0490646362305,162.05387878418,122.649513244629,-58.4671287536621,158.986587524414,126.136856079102,-43.5641670227051,154.343139648438,120.028259277344,-10.1735973358154,134.85221862793,129.891235351563,-21.1729755401611,139.047622680664,128.093048095703,-37.4589691162109,150.743774414063,116.735931396484,-5.66401481628418,132.759017944336,112.543525695801,7.42891788482666,126.148361206055,-104.198715209961,111.068885803223,34.6045951843262,-108.042091369629,115.280296325684,44.761791229248,-147.406951904297,100.745872497559,125.511299133301,-115.170791625977,125.960342407227,71.2237854003906,-116.648933410645,125.20726776123,78.4712905883789,-119.016174316406,129.435684204102,87.3341674804688,-121.361396789551,120.805839538574,92.4167633056641,-129.885238647461,118.326599121094,107.772560119629,-137.018920898438,109.875762939453,118.148582458496,-166.715835571289,93.7948913574219,151.986907958984,-149.302124023438,105.244316101074,128.020553588867,-156.899871826172,103.960182189941,137.446472167969,-162.636444091797,103.615158081055,144.479156494141,152.182403564453,-135.563293457031,138.009536743164,125.673805236816,-89.3474578857422,165.637237548828,135.168746948242,-100.583854675293,159.701644897461,136.920913696289,-103.046104431152,157.493438720703,140.118225097656,-108.094589233398,152.285934448242,144.771682739258,-125.286277770996,142.197937011719,142.165420532227,-110.644844055176,149.738677978516,126.797920227051,-57.1729049682617,158.143493652344,126.761917114258,-15.3399028778076,134.904220581055,133.643600463867,-25.8714351654053,139.896713256836,130.00422668457,-29.0913505554199,144.294143676758,119.364189147949,-4.65102577209473,131.500885009766,114.191688537598,2.90006399154663,128.104553222656,-102.835586547852,110.927871704102,31.6320037841797,-103.375640869141,115.754341125488,36.1762466430664,-105.53084564209,116.003364562988,39.835205078125,-112.763549804688,120.61181640625,61.0664901733398,-110.543342590332,121.044860839844,51.0867080688477,-106.865982055664,120.420799255371,43.8729019165039,\r\n-141.620376586914,104.670257568359,122.347991943359,-147.087921142578,107.6435546875,126.284378051758,-114.014671325684,124.920234680176,65.8627548217773,-118.172088623047,130.885833740234,82.5018920898438,-121.271392822266,126.59440612793,92.0250244140625,-128.763122558594,121.662925720215,105.702362060547,-126.523902893066,122.087959289551,102.310028076172,-123.707626342773,121.623916625977,97.4700546264648,-136.334869384766,117.999565124512,119.029670715332,-131.10334777832,121.616920471191,108.980682373047,-138.634094238281,110.359809875488,121.111877441406,-152.480453491211,103.845176696777,131.367874145508,-159.800170898438,103.832176208496,141.352844238281,144.969711303711,-129.53369140625,141.096832275391,130.936325073242,-98.285026550293,162.944976806641,128.243057250977,-93.6284790039063,164.576126098633,126.906929016113,-73.0785675048828,161.235809326172,127.798011779785,-81.5699920654297,162.353912353516,129.272171020508,-88.8723068237305,163.518035888672,141.372344970703,-102.604057312012,152.753982543945,126.020843505859,-67.7353363037109,160.75276184082,130.801315307617,-43.5764694213867,152.0458984375,131.193344116211,-48.5321578979492,153.677062988281,125.81982421875,-12.4785223007202,133.097045898438,133.049530029297,-22.1125659942627,136.784408569336,133.668594360352,-41.4415626525879,149.235626220703,-101.335441589355,115.80534362793,33.5617904663086,-141.414367675781,109.080688476563,123.301086425781,-114.981773376465,128.517593383789,67.6250305175781,-117.100982666016,130.376770019531,76.3162841796875,-119.919258117676,132.800018310547,87.942024230957,-121.626419067383,132.224960327148,92.490364074707,-133.01155090332,125.876335144043,113.642143249512,-169.085571289063,92.5995254516602,154.225616455078,-152.546447753906,108.566635131836,130.754806518555,-156.668869018555,108.407623291016,135.695297241211,-160.286209106445,108.517639160156,139.820693969727,-162.827453613281,108.662651062012,142.108932495117,150.049194335938,-128.719619750977,138.49658203125,129.675201416016,-77.9307403564453,160.346710205078,\r\n141.467361450195,-98.6470642089844,152.867980957031,133.719589233398,-95.0818176269531,160.964767456055,144.470642089844,-106.781463623047,149.522659301758,148.244033813477,-124.010154724121,140.297744750977,146.312835693359,-116.607429504395,145.201232910156,129.014129638672,-67.3609008789063,159.645645141602,133.6005859375,-56.836669921875,154.802185058594,130.981338500977,-18.0860710144043,133.819122314453,136.967910766602,-25.283878326416,136.633392333984,133.390563964844,-31.4298801422119,143.09001159668,-103.344627380371,120.925849914551,38.9778213500977,-99.6201705932617,119.746734619141,34.0927467346191,-111.941474914551,125.709320068359,55.3398284912109,-109.243209838867,125.136260986328,48.0941162109375,-148.364044189453,112.67504119873,127.162460327148,-114.295707702637,129.951736450195,61.001880645752,-119.26619720459,134.456161499023,81.4926910400391,-124.381698608398,131.214859008789,97.9134979248047,-126.793930053711,126.150360107422,102.254020690918,-129.580215454102,127.37947845459,107.240509033203,-137.413970947266,122.042953491211,120.318794250488,-138.957122802734,117.512512207031,122.071968078613,-152.200424194336,112.708045959473,129.682708740234,132.402465820313,-71.1457748413086,158.643539428711,133.060531616211,-84.2997589111328,159.258605957031,141.562377929688,-91.0978240966797,152.839981079102,151.62434387207,-111.870964050293,143.894104003906,146.233825683594,-103.558143615723,148.979598999023,146.655853271484,-98.4966506958008,148.771575927734,150.263229370117,-115.520324707031,143.355056762695,136.128845214844,-49.8959922790527,151.256820678711,127.137954711914,-5.71595001220703,129.941741943359,131.340362548828,-15.6493339538574,131.805923461914,137.111923217773,-22.8265380859375,134.320159912109,-110.867370605469,125.742324829102,51.5120506286621,-106.590950012207,125.218269348145,43.9538116455078,-104.120704650879,125.638313293457,41.078426361084,-141.200332641602,113.503120422363,123.728126525879,-116.68994140625,132.395965576172,69.2085876464844,-119.251190185547,136.013320922852,73.9358520507813,\r\n-121.572418212891,136.113342285156,87.5217819213867,-123.354591369629,135.479278564453,93.8178939819336,-135.650802612305,126.472389221191,117.155487060547,-131.316375732422,130.939834594727,110.031784057617,-155.430740356445,113.086074829102,132.738006591797,-159.371124267578,113.337104797363,136.550384521484,-162.972473144531,113.582130432129,139.253646850586,155.945770263672,-125.12126159668,136.079330444336,151.531341552734,-124.890235900879,137.915512084961,134.860717773438,-88.544075012207,158.771560668945,135.601776123047,-73.9959487915039,157.203414916992,136.213836669922,-82.706901550293,157.058395385742,144.827697753906,-92.6958847045898,149.5556640625,138.479064941406,-89.2296447753906,155.785263061523,136.839904785156,-58.2869110107422,153.011993408203,129.220153808594,-10.65234375,131.159866333008,-95.3559494018555,120.569816589355,30.2604694366455,-101.033409118652,125.298278808594,37.9526214599609,-111.152397155762,129.803726196289,49.4428482055664,-108.661155700684,130.175750732422,45.1313247680664,-150.022201538086,117.469512939453,127.570503234863,-142.01643371582,117.433502197266,124.12816619873,-113.367614746094,131.081848144531,54.1919136047363,-116.71794128418,134.182159423828,62.9762763977051,-121.146377563477,137.562469482422,80.6015014648438,-128.772109985352,130.984832763672,106.157409667969,-127.161964416504,134.834213256836,101.696968078613,-139.024124145508,126.35538482666,120.077766418457,-133.986633300781,130.8408203125,113.365112304688,-141.378356933594,122.277984619141,122.90104675293,-155.598754882813,118.046569824219,130.927825927734,153.873580932617,-119.785743713379,138.022537231445,147.161926269531,-84.6506958007813,145.796295166016,141.337341308594,-80.3356704711914,153.393035888672,147.540954589844,-92.63427734375,147.280426025391,137.226943969727,-64.8372573852539,153.831069946289,132.488479614258,-9.29847145080566,129.924743652344,139.353149414063,-18.1850814819336,130.077758789063,-95.5595703125,125.242279052734,32.666202545166,-106.146903991699,130.298767089844,42.515869140625,\r\n-101.746475219727,130.089736938477,39.1666412353516,-121.492408752441,139.120620727539,72.9887542724609,-124.034660339355,138.425567626953,88.7384033203125,-127.496002197266,138.036514282227,98.0142059326172,-137.23796081543,130.420791625977,116.574424743652,-140.201248168945,124.316680908203,121.489402770996,-130.524307250977,133.804107666016,107.667556762695,-135.759796142578,133.228057861328,113.515129089355,-162.102386474609,118.053565979004,135.736297607422,138.607086181641,-77.3257751464844,155.510238647461,142.717483520508,-81.4212799072266,151.703872680664,151.362335205078,-94.6375732421875,145.328247070313,141.690368652344,-60.1188888549805,149.558654785156,139.794189453125,-66.7611465454102,151.833892822266,137.922012329102,-13.3060035705566,128.825637817383,-89.9154205322266,124.968246459961,27.729621887207,-96.7398834228516,130.538787841797,35.2395553588867,-113.226600646973,133.746109008789,49.7558784484863,-109.568237304688,135.453277587891,43.4638595581055,-111.7724609375,134.467178344727,46.3137435913086,-153.527542114258,122.42399597168,127.997543334961,-118.697143554688,137.246444702148,61.946174621582,-123.27458190918,139.941711425781,78.9444427490234,-131.460388183594,136.628387451172,105.894378662109,-142.388458251953,131.202865600586,119.04167175293,-143.138534545898,127.657508850098,121.432907104492,-161.955383300781,124.436195373535,130.993850708008,144.927688598633,-80.8670272827148,148.424560546875,149.975189208984,-85.2858505249023,143.974105834961,144.113616943359,-75.1162643432617,148.721588134766,-90.2100448608398,129.439682006836,29.7169170379639,-107.243011474609,136.476364135742,41.715389251709,-103.776672363281,134.016143798828,40.2529487609863,-97.3330383300781,134.978225708008,36.1214447021484,-149.603164672852,121.827941894531,126.295379638672,-158.321014404297,122.047966003418,130.734817504883,-115.596832275391,138.482559204102,47.5042572021484,-126.110862731934,140.422760009766,86.5250778198242,-129.487197875977,139.893707275391,95.9588012695313,-133.115539550781,138.788589477539,103.634155273438,\r\n-139.065139770508,134.690200805664,114.038177490234,-150.69026184082,126.840431213379,124.498199462891,144.823699951172,-69.9454498291016,147.344451904297,142.740982055664,-14.9433650970459,126.875938415527,-84.9504318237305,129.804733276367,25.6639194488525,-90.8122024536133,134.23014831543,31.2530651092529,-113.998672485352,139.795700073242,44.4051551818848,-111.523429870605,143.309036254883,40.8519058227539,-156.128799438477,126.389381408691,127.100456237793,-136.328857421875,136.945419311523,109.467727661133,-144.410659790039,134.262145996094,116.877456665039,-157.086898803711,129.592697143555,125.111267089844,-84.6016998291016,134.971221923828,27.2041702270508,-105.472839355469,141.428848266602,39.256950378418,-96.9597015380859,140.278747558594,35.3178634643555,-91.3055572509766,139.760696411133,31.4138813018799,-136.533874511719,139.654693603516,103.969192504883,-142.992523193359,137.266464233398,112.241004943848,-152.423431396484,133.044036865234,120.547813415527,-139.660186767578,137.987518310547,109.389724731445,-79.8915328979492,140.010711669922,25.4684982299805,-87.4586715698242,139.336654663086,29.568000793457,-99.9710006713867,141.766891479492,36.7440032958984,-108.959182739258,148.212524414063,37.7815093994141,-147.323944091797,136.234344482422,115.405311584473,-79.8399276733398,130.142761230469,21.3995990753174,-84.1982498168945,139.17463684082,27.75732421875,-102.04150390625,148.282531738281,35.8025131225586,-93.914306640625,143.171020507813,32.141056060791,-98.5607604980469,152.773971557617,32.6893081665039,-91.8727111816406,144.767196655273,29.6768131256104,-143.703582763672,139.508666992188,107.722564697266,-148.429061889648,138.999618530273,110.604843139648,-151.172317504883,137.062423706055,114.79125213623,-154.240615844727,135.202239990234,118.148582458496,-76.9761505126953,137.192443847656,22.2082805633545,-82.0286483764648,144.155136108398,26.2990798950195,-85.5650863647461,143.521072387695,27.6264095306396,-95.1536254882813,148.357543945313,31.531494140625,-72.8463439941406,133.957122802734,17.4476146697998,\r\n-75.0297622680664,143.560073852539,23.2791843414307,-78.9822387695313,144.875183105469,25.5771102905273,-95.6651840209961,153.688064575195,31.1088523864746,-84.9002227783203,149.090606689453,24.3798923492432,-152.445434570313,138.903610229492,110.722358703613,-70.9665603637695,143.92610168457,20.9740581512451,-77.2221755981445,148.294525146484,23.4143981933594,-90.6674957275391,148.711578369141,27.1303634643555,-92.8031997680664,153.510040283203,29.1508617401123,-65.372314453125,141.9619140625,15.9409656524658,-73.3024826049805,148.902587890625,22.1234703063965,-87.8905181884766,152.793975830078,24.5300064086914,-68.0250701904297,145.271240234375,19.7402381896973,-65.6415405273438,134.709197998047,12.0055809020996,-68.0457763671875,148.993606567383,20.7849407196045,-83.1767501831055,152.663955688477,21.3845996856689,-85.3281707763672,154.10710144043,22.0014591217041,-65.1808929443359,148.29753112793,18.7977466583252,-62.7634544372559,134.900207519531,9.65095996856689,-72.6922302246094,153.543045043945,18.8144474029541,-76.5123062133789,153.560043334961,18.9675636291504,-80.3323822021484,153.903076171875,19.6022243499756,-90.3935623168945,157.801452636719,27.1600646972656,-87.3278656005859,159.110595703125,24.5171051025391,-61.9161758422852,148.888580322266,17.3007984161377,-59.1208000183105,148.775573730469,15.8312549591064,-68.5074157714844,153.02099609375,18.5440216064453,-83.0194396972656,157.450424194336,19.9040546417236,-64.9917755126953,153.640060424805,17.2002906799316,-57.374927520752,142.124923706055,10.3342161178589,-72.7481307983398,158.676544189453,13.4843254089355,-75.8077392578125,157.382431030273,15.1044836044312,-78.6540145874023,158.079483032227,15.6732387542725,-80.7688140869141,158.757568359375,17.3471031188965,-80.6263122558594,166.963363647461,19.7394371032715,-61.6492462158203,153.627059936523,16.6611366271973,-60.2179069519043,134.861221313477,7.13170289993286,-55.6038513183594,148.861587524414,13.6919450759888,-69.3773040771484,162.554931640625,8.48641490936279,-80.6422119140625,162.694946289063,18.4321098327637,\r\n-58.2278137207031,153.542037963867,16.0033721923828,-65.524528503418,158.412521362305,12.3304119110107,-54.4473419189453,140.136734008789,6.77363681793213,-71.658821105957,162.132888793945,9.61577606201172,-76.108268737793,162.208892822266,12.9608726501465,-78.6010131835938,162.649948120117,15.5515279769897,-77.5355072021484,171.982849121094,17.8641548156738,-61.5667381286621,158.253509521484,12.4158210754395,-58.39892578125,134.875213623047,5.36570978164673,-49.5020561218262,144.398147583008,6.43657398223877,-54.9754905700684,153.588043212891,14.9461688995361,-71.485710144043,166.981353759766,8.41788864135742,-73.6496200561523,163.45002746582,10.519434928894,-75.5222091674805,167.535415649414,13.9378690719604,-74.9666519165039,172.110855102539,15.509822845459,-65.7548522949219,163.416000366211,6.72095203399658,-57.7042579650879,158.170501708984,12.2903079986572,-56.1207046508789,135.560287475586,2.86171388626099,-48.4414520263672,149.141616821289,9.44190883636475,-49.6482696533203,140.46076965332,3.12569999694824,-49.8781929016113,153.865081787109,12.5756359100342,-68.7196426391602,167.564422607422,5.86187791824341,-73.7437286376953,167.472412109375,11.2523059844971,-61.6290435791016,162.801956176758,6.35901689529419,-43.0536231994629,149.559646606445,6.77551794052124,-43.3960571289063,144.950210571289,2.85291290283203,-52.6585655212402,158.417510986328,10.8630676269531,-69.0051651000977,172.321884155273,6.90400981903076,-72.2455825805664,176.885330200195,14.2621021270752,-65.3821105957031,167.351409912109,3.36900401115417,-58.1459045410156,162.820953369141,5.56064891815186,-52.3681373596191,136.805419921875,-0.044344998896122,-46.4833602905273,153.102996826172,10.7860612869263,-46.3504486083984,140.637771606445,-0.244102001190186,-47.220531463623,158.189498901367,9.1577205657959,-66.7712478637695,171.74983215332,3.94174003601074,-70.8845443725586,172.329895019531,9.84828758239746,-67.5108184814453,180.316665649414,10.2264060974121,-61.6810493469238,167.995468139648,0.981401026248932,-41.7594985961914,153.899078369141,8.60755729675293,\r\n-40.010425567627,148.502563476563,3.94591999053955,-40.0675315856934,144.094116210938,-1.5823210477829,-53.4226379394531,163.379013061523,3.37454390525818,-65.2176971435547,176.512298583984,3.75770211219788,-64.1930923461914,172.261871337891,1.17761898040771,-58.3324203491211,167.471420288086,-0.375126987695694,-50.8773918151855,137.118438720703,-3.43952298164368,-43.2210388183594,140.884811401367,-5.00304698944092,-48.1616249084473,167.609420776367,-4.60305690765381,-61.1832008361816,172.115859985352,-1.40607404708862,-41.2986526489258,158.585540771484,6.53243398666382,-38.1556434631348,153.714065551758,6.63167381286621,-33.8078155517578,150.052703857422,1.38017904758453,-37.9931297302246,143.268035888672,-5.7286581993103,-53.7126693725586,167.544418334961,-2.47696900367737,-43.9369125366211,162.824966430664,1.39306998252869,-62.0548858642578,176.510299682617,-0.530565023422241,-65.1279907226563,181.657806396484,7.37897682189941,-57.7302627563477,172.205871582031,-3.63156199455261,-46.2537384033203,139.132629394531,-7.25346708297729,-35.1087455749512,146.064315795898,-2.90898108482361,-36.7414054870605,143.409057617188,-8.38682842254639,-50.0504112243652,172.10285949707,-7.96240615844727,-42.9270133972168,167.776428222656,-5.90753507614136,-61.3528175354004,181.687805175781,1.15867698192596,-61.575439453125,184.25505065918,3.63755989074707,-59.4809341430664,176.99235534668,-3.22917294502258,-38.1181411743164,158.507537841797,5.49416208267212,-33.8630256652832,153.933090209961,4.45630979537964,-30.1176567077637,149.463653564453,-2.37125897407532,-54.7670707702637,172.658920288086,-5.70361518859863,-45.4396553039551,172.266876220703,-9.98447513580322,-38.8274078369141,163.21598815918,0.213534995913506,-59.296215057373,182.100830078125,-2.06628894805908,-56.5777473449707,177.057342529297,-6.04680919647217,-38.1638450622559,142.959014892578,-12.4803190231323,-30.0666522979736,154.087112426758,2.09706902503967,-32.3546752929688,146.127319335938,-6.06265020370483,-45.726188659668,176.853332519531,-12.9586658477783,-51.7686805725098,177.232360839844,-9.64388179779053,\r\n-37.8066101074219,167.859451293945,-7.02440500259399,-41.5076713562012,172.242874145508,-11.4517183303833,-57.6217498779297,181.683807373047,-4.68268489837646,-31.9001312255859,145.301239013672,-9.98387432098389,-32.2073593139648,158.386520385742,3.67930388450623,-27.9782466888428,148.496551513672,-6.4955530166626,-27.3277835845947,153.710067749023,-0.248276993632317,-33.2745666503906,163.210998535156,-0.854885995388031,-57.2306137084961,191.18473815918,1.19657099246979,-55.2950248718262,181.117752075195,-7.49658107757568,-53.7259712219238,186.13623046875,-8.04484367370605,-29.5373992919922,146.522354125977,-14.5294198989868,-28.9909477233887,159.188598632813,2.11826109886169,-24.780933380127,153.482040405273,-2.41473293304443,-26.6340141296387,158.555526733398,0.796095013618469,-48.6694755554199,181.666809082031,-13.1538848876953,-41.2949523925781,177.019348144531,-15.3517999649048,-33.7496109008789,172.379898071289,-14.4771146774292,-30.9263362884521,167.855453491211,-9.13170146942139,-53.4498443603516,194.834091186523,-2.3937509059906,-25.8025321960449,148.34553527832,-10.2381992340088,-28.9689426422119,147.567459106445,-18.9054489135742,-22.0373649597168,152.549957275391,-5.91845607757568,-23.5731143951416,158.471527099609,-0.946126997470856,-51.781177520752,181.912826538086,-10.9916734695435,-44.770092010498,181.845825195313,-15.8290481567383,-36.5074844360352,177.139358520508,-17.6933307647705,-28.7415218353271,163.209991455078,-2.39740109443665,-50.1774215698242,191.165740966797,-10.2932052612305,-20.109375,149.939697265625,-15.129077911377,-19.8131465911865,150.556762695313,-18.9233493804932,-21.3773002624512,156.457336425781,-2.27696895599365,-22.8552436828613,163.320999145508,-5.25937223434448,-47.782787322998,186.404266357422,-14.535120010376,-50.4935531616211,185.932220458984,-12.0012722015381,-38.47607421875,181.616790771484,-19.5043067932129,-20.5694217681885,167.245391845703,-12.3744087219238,-29.5132961273193,176.904327392578,-20.8407382965088,-45.3729515075684,195.915191650391,-14.5097179412842,-20.5736217498779,150.414733886719,-11.5725297927856,\r\n-17.7382431030273,152.523956298828,-23.0557556152344,-18.6725368499756,156.836364746094,-4.27064514160156,-18.5742244720459,159.929672241211,-3.73891305923462,-44.6072769165039,186.485275268555,-17.1853809356689,-32.0728492736816,181.726806640625,-23.1334648132324,-40.1892433166504,186.518280029297,-20.3717937469482,-16.8811588287354,172.428894042969,-21.1852722167969,-48.0483131408691,191.279739379883,-13.3578052520752,-47.0423126220703,201.251708984375,-8.05144500732422,-15.7238464355469,152.157913208008,-16.3508987426758,-15.6593399047852,153.506042480469,-11.9129638671875,-12.9809770584106,153.330032348633,-20.8800430297852,-17.7343425750732,154.064086914063,-8.39417934417725,-16.5369262695313,162.756942749023,-7.85947704315186,-45.7415885925293,190.749694824219,-16.1948833465576,-34.3260688781738,186.280242919922,-24.1610641479492,-12.8326625823975,167.414398193359,-15.5112161636353,-25.9299449920654,181.593795776367,-26.1510581970215,-14.0019779205322,177.180358886719,-27.460786819458,-42.836799621582,197.01530456543,-17.5611171722412,-10.4794321060181,155.340225219727,-26.0800514221191,-16.1177845001221,158.493530273438,-5.88153314590454,-43.1007270812988,191.187744140625,-18.6892280578613,-28.6969165802002,186.109237670898,-27.4374847412109,-35.6165962219238,191.08772277832,-24.6843147277832,-14.0047779083252,163.9140625,-10.2559013366699,-8.68295574188232,172.845932006836,-24.1561641693115,-40.1504364013672,209.714553833008,-12.8004512786865,-12.7284526824951,154.740173339844,-13.2197923660278,-11.3103132247925,154.68815612793,-16.353199005127,-13.6845474243164,158.99658203125,-8.30875968933105,-7.58178806304932,155.631240844727,-21.9790496826172,-39.498477935791,191.496765136719,-21.8944416046143,-30.0125465393066,191.390747070313,-28.5716953277588,-11.2968120574951,163.31201171875,-11.1460886001587,-8.13393211364746,168.131484985352,-17.827543258667,-22.9881572723389,186.234252929688,-30.5188865661621,-11.873969078064,181.634796142578,-32.2242546081543,-4.95600080490112,177.403381347656,-30.9393272399902,\r\n-38.1122398376465,201.394729614258,-21.5382061004639,-11.0651893615723,158.44953918457,-10.5937337875366,-8.69760799407959,155.448226928711,-18.7573356628418,-6.02082586288452,156.484329223633,-25.6090068817139,-41.0764312744141,196.080215454102,-20.0290584564209,-24.3159885406494,190.798690795898,-32.0253372192383,-34.5870933532715,196.23323059082,-26.1639595031738,-38.5124778747559,195.461151123047,-22.6717185974121,-8.60494804382324,163.385009765625,-12.8619556427002,-4.50927686691284,167.620422363281,-18.8093395233154,-14.5590324401855,186.323257446289,-34.4902763366699,-4.4813551902771,171.931838989258,-24.4398918151855,-37.5233840942383,210.571624755859,-16.048267364502,-8.86951541900635,158.610549926758,-13.0023708343506,-6.60567283630371,158.697555541992,-15.590124130249,-3.01723098754883,158.672546386719,-21.6322154998779,-2.69052910804749,158.089492797852,-27.6894092559814,-4.48179388046265,158.803558349609,-18.1702785491943,-23.7348327636719,196.104217529297,-34.0238304138184,-29.8933353424072,195.811187744141,-29.6159973144531,-5.87994194030762,163.469024658203,-14.6440305709839,-17.488317489624,191.285736083984,-35.8698081970215,-2.05631709098816,182.164855957031,-36.6949920654297,-4.68363380432129,186.602279663086,-39.302547454834,0.779344975948334,172.630920410156,-27.1652584075928,-31.9867382049561,215.695129394531,-21.2080745697021,-3.66565489768982,157.360427856445,-25.0383491516113,0.348814994096756,160.604736328125,-32.6449966430664,-29.5717029571533,200.516647338867,-30.2997665405273,-34.8844223022461,200.960693359375,-25.5927047729492,-3.59715795516968,162.775939941406,-16.1155757904053,-1.69712197780609,168.05046081543,-20.9683513641357,-4.60531616210938,191.769805908203,-42.8003883361816,0.883750021457672,177.385375976563,-32.6513977050781,0.563920021057129,168.671524047852,-22.7501258850098,-32.0407447814941,206.788269042969,-26.5613994598389,-1.77737998962402,163.397003173828,-18.3725967407227,-0.173897996544838,159.420623779297,-25.0200481414795,2.0888888835907,160.510726928711,-28.9467315673828,\r\n-16.2759990692139,195.854202270508,-38.4517669677734,-6.07082986831665,196.519256591797,-44.5069580078125,4.09586620330811,177.386383056641,-33.7998085021973,1.12252497673035,186.546279907227,-41.7871894836426,3.94515109062195,172.476913452148,-28.9309310913086,3.26936507225037,167.635437011719,-24.5006980895996,-27.0596561431885,219.683532714844,-25.8590316772461,0.79668802022934,163.730041503906,-21.3335876464844,4.55901098251343,162.011871337891,-32.804313659668,-22.3754978179932,201.053695678711,-35.8141059875488,-17.9827671051025,200.904678344727,-38.7990989685059,-30.675910949707,206.203201293945,-28.4344825744629,3.45115303993225,196.245223999023,-49.6739654541016,7.556884765625,177.743408203125,-35.6742897033691,5.27068090438843,191.807800292969,-47.7215728759766,-23.7103290557861,217.671325683594,-31.8566188812256,3.30298805236816,162.279907226563,-25.9365386962891,6.38152980804443,163.282012939453,-30.9853324890137,-21.9645595550537,205.906173706055,-36.4579696655273,-12.4139223098755,200.351638793945,-42.3576469421387,-28.5890064239502,206.489227294922,-30.6405982971191,0.691164970397949,201.035705566406,-50.484245300293,7.74243402481079,172.286880493164,-31.4994831085205,7.83840322494507,186.161254882813,-44.0860176086426,6.48396015167236,166.790344238281,-28.5968990325928,-23.4726047515869,224.7490234375,-28.3483734130859,9.91445636749268,166.593322753906,-35.387565612793,-26.5318050384521,205.658157348633,-32.7529029846191,-5.40787506103516,201.167709350586,-46.7418785095215,-13.8462619781494,205.573135375977,-42.5646667480469,12.5642261505127,195.942199707031,-54.429328918457,10.4311170578003,201.038696289063,-56.2885131835938,10.875659942627,173.61701965332,-34.2998580932617,10.544828414917,177.534393310547,-37.1805381774902,11.6455364227295,186.528274536133,-46.1759223937988,-21.2926921844482,224.531997680664,-31.2659587860107,9.166823387146,167.743438720703,-32.0354347229004,-22.5858173370361,211.233703613281,-35.605785369873,-5.06353187561035,205.509140014648,-48.3388328552246,-19.2702941894531,221.075668334961,-36.0306282043457,\r\n14.3919048309326,191.36474609375,-51.8534774780273,2.84989404678345,205.594146728516,-53.6815567016602,10.7507476806641,170.256683349609,-33.4610786437988,11.0096731185913,181.61279296875,-41.3770523071289,-17.6937389373779,210.132583618164,-39.8796043395996,-6.90411186218262,210.166595458984,-48.0790061950684,17.9401531219482,195.536163330078,-57.8924674987793,9.72618770599365,205.876174926758,-58.2327041625977,13.4718141555786,173.577011108398,-36.9288177490234,12.6329326629639,170.426696777344,-36.142936706543,13.1935882568359,176.719314575195,-38.7066879272461,14.6397285461426,186.983322143555,-48.2817268371582,15.5161151885986,181.853820800781,-44.713680267334,-18.4300117492676,229.52848815918,-32.5508842468262,-11.6773500442505,211.190689086914,-44.762882232666,-18.131383895874,216.661224365234,-38.9734153747559,0.396187990903854,209.963562011719,-53.4490356445313,-17.3782081604004,221.460693359375,-38.3457527160645,14.993763923645,200.979705810547,-59.4690246582031,17.9244518280029,186.413269042969,-50.206916809082,5.72077512741089,210.840667724609,-57.5073318481445,15.0284671783447,177.4833984375,-41.3742523193359,-16.460319519043,229.349472045898,-35.3143577575684,-11.5120334625244,219.031463623047,-45.1117172241211,-15.4084148406982,217.441299438477,-41.6930809020996,-3.78516602516174,218.012359619141,-51.8790817260742,-7.73748397827148,217.270278930664,-48.3007316589355,-12.0523872375488,227.73030090332,-42.9260025024414,18.4453010559082,202.952880859375,-63.9943695068359,19.5669116973877,191.37174987793,-55.8427696228027,12.2185916900635,207.720352172852,-61.1781883239746,18.0722675323486,181.904815673828,-47.4062423706055,-16.1210842132568,234.465972900391,-34.4170684814453,-0.206448003649712,214.784042358398,-54.3123168945313,22.0675582885742,191.002716064453,-58.5793380737305,22.1265640258789,185.593185424805,-55.1950073242188,6.95803594589233,215.562118530273,-60.2312965393066,20.3796920776367,182.070831298828,-50.7641716003418,-14.9593706130981,234.354461669922,-35.7161445617676,-13.7976579666138,234.242950439453,-37.0152244567871,\r\n-8.18926811218262,224.362991333008,-48.1780204772949,-9.65877246856689,227.194259643555,-46.0759124755859,1.08088099956512,219.843551635742,-56.7465591430664,17.399299621582,210.681640625,-68.0493621826172,21.0396556854248,203.285934448242,-67.1061706542969,-14.3205080032349,238.956420898438,-37.2756462097168,-8.66024398803711,234.274963378906,-44.871696472168,-1.60372197628021,224.462997436523,-55.2314109802246,23.5242004394531,196.162231445313,-65.077278137207,16.8866481781006,214.875061035156,-70.0095520019531,-11.9789791107178,238.34635925293,-39.1284294128418,-4.95236110687256,232.072738647461,-51.1696128845215,-2.80155992507935,229.778518676758,-54.4008255004883,3.89770698547363,224.82502746582,-60.6012344360352,6.18755102157593,219.788528442383,-61.2342948913574,19.8760414123535,213.010879516602,-72.7975311279297,21.8758392333984,211.861770629883,-75.3629837036133,13.6009283065796,219.734527587891,-68.7941436767578,-7.99315881729126,239.185440063477,-44.9549026489258,-4.83087921142578,238.598373413086,-49.5247497558594,1.56208801269531,229.592498779297,-59.1185913085938,24.6428089141846,200.519653320313,-71.138069152832,17.0451641082764,222.167770385742,-74.2437744140625,-1.57245898246765,239.846496582031,-54.903076171875,2.54528403282166,237.762298583984,-60.5263290405273,10.4846220016479,224.78303527832,-67.3489990234375,11.2790002822876,228.612396240234,-70.2519760131836,7.79200792312622,229.78352355957,-65.849853515625,17.6300220489502,227.238265991211,-78.7464065551758,12.9909677505493,234.182952880859,-76.1205596923828,5.51374483108521,235.603088378906,-64.3448944091797,9.48893547058105,234.483978271484,-71.0304565429688,6.92769384384155,236.611175537109,-67.4439010620117,-164.168594360352,131.139846801758,-134.974212646484,-165.668731689453,131.787902832031,-138.395553588867,-161.199310302734,134.17414855957,-138.576568603516,-162.417434692383,134.238159179688,-141.686874389648,-159.584136962891,134.957229614258,-135.132232666016,-158.800064086914,137.584487915039,-141.544860839844,-164.974670410156,134.123138427734,-143.794082641602,\r\n-157.43994140625,138.644577026367,-137.450454711914,-162.220397949219,131.699905395508,-131.99592590332,-160.463226318359,136.777404785156,-144.917190551758,-157.752975463867,136.259353637695,-128.896621704102,-156.011779785156,142.603973388672,-140.646789550781,-157.020889282227,141.411849975586,-144.032104492188,-161.612335205078,136.833419799805,-147.911483764648,-154.841674804688,140.993804931641,-128.964645385742,-160.304214477539,132.712005615234,-127.354476928711,-150.769287109375,153.493041992188,-140.443756103516,-158.235015869141,140.189727783203,-147.564453125,-164.214599609375,136.861419677734,-149.917678833008,-153.130508422852,138.715591430664,-118.111572265625,-151.099319458008,154.557159423828,-145.98030090332,-156.252822875977,144.537155151367,-150.077697753906,-159.768173217773,139.528671264648,-150.934783935547,-151.512359619141,146.728378295898,-127.927528381348,-150.876281738281,143.273040771484,-120.197776794434,-156.791870117188,134.308166503906,-119.553718566895,-148.691070556641,159.917663574219,-143.184020996094,-161.047286987305,139.936721801758,-154.532135009766,-148.946105957031,154.524139404297,-132.995040893555,-149.001098632813,144.556167602539,-114.599227905273,-161.168304443359,130.075744628906,-121.000854492188,-154.00260925293,135.586288452148,-113.756141662598,-154.23161315918,149.905700683594,-157.616439819336,-149.228134155273,159.954666137695,-151.256820678711,-147.564956665039,159.905670166016,-135.410263061523,-157.596954345703,143.063018798828,-153.568054199219,-149.543167114258,150.215728759766,-126.178359985352,-147.255935668945,149.575668334961,-115.22728729248,-150.555252075195,140.063720703125,-112.128982543945,-158.180999755859,131.17985534668,-115.359306335449,-151.861389160156,154.801162719727,-159.787658691406,-147.416946411133,164.735137939453,-143.430053710938,-158.164993286133,143.534072875977,-157.401412963867,-148.045013427734,154.544143676758,-126.69140625,-147.406951904297,144.544158935547,-108.47762298584,-162.591445922852,127.245468139648,-115.081275939941,\r\n-153.853591918945,132.279968261719,-106.768455505371,-151.041305541992,136.354370117188,-107.070487976074,-154.99870300293,149.52165222168,-161.876861572266,-151.037292480469,156.691345214844,-165.350189208984,-147.835998535156,164.313095092773,-153.891082763672,-146.681869506836,165.101181030273,-136.71337890625,-161.516342163086,142.201934814453,-158.712554931641,-146.831893920898,154.339126586914,-120.188774108887,-146.741882324219,159.756652832031,-127.010437011719,-145.387756347656,149.528656005859,-105.125297546387,-148.343032836914,140.087738037109,-105.026290893555,-159.861175537109,128.126556396484,-111.529922485352,-153.252532958984,152.350921630859,-164.270080566406,-148.028015136719,164.249099731445,-160.726745605469,-146.672866821289,169.470596313477,-149.843688964844,-146.37385559082,171.720825195313,-142.028915405273,-146.231842041016,164.646133422852,-129.047637939453,-159.79817199707,146.360336303711,-163.505020141602,-145.773788452148,154.842163085938,-113.433113098145,-146.40185546875,140.972808837891,-98.5183486938477,-163.085494995117,124.988243103027,-108.476623535156,-149.225128173828,135.927322387695,-100.418838500977,-156.131805419922,128.78662109375,-104.631248474121,-155.781768798828,149.195617675781,-165.029159545898,-154.100601196289,152.0458984375,-167.481399536133,-148.907104492188,161.754852294922,-168.552520751953,-146.601867675781,169.623611450195,-158.706558227539,-146.111831665039,170.654724121094,-134.435165405273,-145.781799316406,159.490631103516,-120.198776245117,-145.43376159668,164.874160766602,-122.087959289551,-144.291641235352,147.159423828125,-93.4824600219727,-143.973617553711,154.604156494141,-101.358932495117,-152.640472412109,130.082748413086,-98.5129470825195,-152.088409423828,155.612243652344,-170.053665161133,-146.591873168945,168.65852355957,-170.302688598633,-146.091827392578,174.514099121094,-154.01708984375,-146.190826416016,174.756118774414,-139.369659423828,-145.787796020508,169.634613037109,-127.102447509766,-144.736694335938,160.631744384766,-112.46501159668,\r\n-146.081832885742,139.439651489258,-92.0816192626953,-148.070007324219,136.199356079102,-96.4717483520508,-159.817169189453,125.361282348633,-103.258110046387,-157.701950073242,125.816329956055,-100.572853088379,-147.183929443359,166.513305664063,-175.643203735352,-150.127227783203,159.425628662109,-172.27587890625,-145.546768188477,175.259170532227,-165.099182128906,-146.23583984375,179.691604614258,-145.942306518555,-146.309844970703,174.98014831543,-132.572982788086,-145.628784179688,170.268676757813,-121.127868652344,-143.534561157227,154.960189819336,-95.005500793457,-145.000717163086,142.019912719727,-86.9731216430664,-143.931610107422,159.510620117188,-103.903175354004,-165.583740234375,122.862037658691,-103.585144042969,-149.940185546875,131.237869262695,-92.0308151245117,-154.964691162109,126.380378723145,-95.8391876220703,-145.464767456055,171.201766967773,-178.055450439453,-145.292755126953,174.517105102539,-171.046752929688,-145.744781494141,179.819625854492,-155.67024230957,-146.579864501953,179.922622680664,-139.561676025391,-146.399856567383,174.661117553711,-125.71231842041,-144.714691162109,164.169082641602,-113.341102600098,-143.411544799805,153.76106262207,-89.6493759155273,-143.62858581543,159.687652587891,-97.4806518554688,-147.587966918945,135.196243286133,-91.2931442260742,-146.659866333008,135.126251220703,-85.1377334594727,-144.503677368164,164.878158569336,-109.188690185547,-163.552536010742,122.520011901855,-99.5461578369141,-159.697158813477,122.996055603027,-95.8297882080078,-145.019714355469,180.107650756836,-165.733245849609,-146.18083190918,184.678100585938,-152.164916992188,-147.337951660156,185.317153930664,-144.195129394531,-147.004913330078,175.534194946289,-121.060859680176,-145.529769897461,169.908645629883,-113.642135620117,-143.875595092773,160.174697875977,-92.9766082763672,-143.938613891602,148.846588134766,-84.9941253662109,-146.186828613281,134.571182250977,-77.5844955444336,-144.508666992188,164.879165649414,-104.287208557129,-152.526458740234,127.374481201172,-91.0601196289063,\r\n-148.480056762695,130.15576171875,-82.6451873779297,-156.822875976563,123.429092407227,-91.2335357666016,-144.095626831055,175.684219360352,-180.008636474609,-144.014617919922,180.033645629883,-174.857116699219,-145.495758056641,185.532180786133,-159.566635131836,-146.787887573242,185.079147338867,-147.672470092773,-144.260635375977,160.228698730469,-82.9210205078125,-144.639678955078,165.119171142578,-97.7867813110352,-143.680587768555,154.938186645508,-83.4604721069336,-144.012619018555,144.746185302734,-75.9663391113281,-144.985717773438,139.67268371582,-77.1550598144531,-145.702774047852,169.761627197266,-107.593536376953,-165.811752319336,120.875839233398,-95.8984985351563,-150.520248413086,127.965545654297,-85.9565200805664,-163.193496704102,120.550811767578,-91.2888412475586,-144.445663452148,184.868118286133,-167.49040222168,-146.01481628418,190.305648803711,-158.699554443359,-147.343948364258,189.753601074219,-152.032897949219,-148.824081420898,179.313583374023,-117.89754486084,-147.493957519531,175.366180419922,-111.369903564453,-145.181732177734,165.209182739258,-89.5464706420898,-143.542572021484,150.255722045898,-79.7180099487305,-147.565963745117,130.158752441406,-75.7776184082031,-144.578674316406,139.652694702148,-66.8175430297852,-146.138824462891,169.96565246582,-100.721870422363,-154.067596435547,124.21216583252,-86.8724136352539,-151.597366333008,124.945243835449,-81.7160034179688,-159.908172607422,120.671829223633,-87.3801574707031,-142.340454101563,184.313064575195,-182.6708984375,-143.429565429688,184.881118774414,-176.137268066406,-144.490661621094,190.078628540039,-166.607315063477,-143.654586791992,154.707168579102,-77.897331237793,-143.457565307617,149.721664428711,-70.5813140869141,-147.090911865234,130.636795043945,-69.9745559692383,-150.310241699219,125.605308532715,-78.1355590820313,-145.793792724609,134.667205810547,-66.7091369628906,-165.819747924805,118.642623901367,-84.9884262084961,-146.131820678711,195.218139648438,-162.843948364258,-148.142028808594,194.590072631836,-155.757263183594,\r\n-144.98371887207,160.053680419922,-75.0789489746094,-143.613586425781,145.705276489258,-69.3635940551758,-148.79508972168,126.80542755127,-72.4970016479492,-145.606781005859,134.465179443359,-55.5860443115234,-157.755966186523,120.907852172852,-84.7788009643555,-155.776779174805,121.173873901367,-81.912223815918,-153.985595703125,121.584915161133,-78.8199157714844,-161.598342895508,118.392601013184,-81.6138916015625,-141.634384155273,190.033615112305,-185.586181640625,-143.443572998047,191.367752075195,-175.188171386719,-144.52067565918,196.390243530273,-169.805633544922,-143.944610595703,154.714172363281,-72.1015625,-144.093627929688,144.317138671875,-61.9805679321289,-144.035629272461,149.566650390625,-62.2267913818359,-147.158935546875,128.527587890625,-57.7921562194824,-148.701065063477,124.803230285645,-62.6759376525879,-152.430435180664,122.310989379883,-75.4577865600586,-144.702682495117,139.550674438477,-58.1182899475098,-166.711837768555,116.621429443359,-77.9733352661133,-148.017013549805,200.507659912109,-163.287002563477,-145.528762817383,200.116607666016,-169.279586791992,-144.49365234375,155.232208251953,-65.9589614868164,-150.542251586914,123.284080505371,-70.1615676879883,-144.742691040039,139.840698242188,-51.730167388916,-146.880905151367,126.706413269043,-49.0257987976074,-159.01708984375,118.30859375,-78.0376434326172,-157.078887939453,118.674629211426,-75.2323684692383,-163.986587524414,116.206390380859,-76.1585540771484,-141.729400634766,194.757095336914,-186.532272338867,-143.73860168457,204.846084594727,-181.014739990234,-144.484664916992,144.718170166016,-54.6908569335938,-145.607772827148,155.140197753906,-59.925365447998,-148.112030029297,125.605308532715,-59.339111328125,-151.844390869141,120.428802490234,-65.4078063964844,-155.155715942383,119.263687133789,-72.1959686279297,-145.475769042969,134.984222412109,-49.6055564880371,-168.292999267578,114.475212097168,-70.2966842651367,-144.56266784668,205.19010925293,-176.96533203125,-144.688690185547,150.056716918945,-57.6980514526367,-150.125228881836,121.761932373047,-60.928466796875,\r\n-153.385543823242,119.790740966797,-68.9757537841797,-145.750793457031,139.34065246582,-43.121021270752,-145.562759399414,145.093215942383,-47.4852485656738,-145.870788574219,133.665084838867,-43.6131706237793,-148.206024169922,122.726020812988,-51.4271354675293,-162.58544921875,115.868354797363,-73.4143905639648,-160.408233642578,116.039367675781,-70.9649505615234,-142.423461914063,202.677871704102,-186.978317260742,-145.5927734375,149.903701782227,-52.8010673522949,-154.513656616211,117.027465820313,-62.3242034912109,-156.315811157227,116.60343170166,-65.4682159423828,-158.306015014648,116.331398010254,-68.3080902099609,-146.391860961914,125.428291320801,-38.4330596923828,-147.876998901367,121.104873657227,-44.5153617858887,-165.150680541992,113.968170166016,-68.5153121948242,-151.34033203125,118.450607299805,-55.5958442687988,-152.82048034668,117.704536437988,-59.0828857421875,-146.624877929688,142.960006713867,-40.6584777832031,-145.95881652832,133.183044433594,-38.2368431091309,-149.617156982422,119.308685302734,-50.0772018432617,-163.499542236328,113.683135986328,-65.6927337646484,-169.708129882813,112.352012634277,-61.3145027160645,-157.51594543457,114.051177978516,-58.696849822998,-159.808166503906,113.925163269043,-62.0368766784668,-146.249847412109,124.621215820313,-30.1658535003662,-146.904907226563,119.780731201172,-32.7992134094238,-150.440246582031,116.312400817871,-46.0372085571289,-155.541748046875,114.48021697998,-55.836067199707,-153.651565551758,115.118286132813,-52.7491645812988,-146.219833374023,130.870819091797,-32.3246612548828,-148.186019897461,116.888450622559,-38.5855751037598,-149.152114868164,116.691436767578,-42.5870704650879,-151.988403320313,115.6943359375,-49.428539276123,-165.413711547852,111.296905517578,-57.1504974365234,-161.621337890625,111.674942016602,-55.5998420715332,-147.309951782227,139.674682617188,-33.8872184753418,-146.655868530273,130.381774902344,-28.3901786804199,-146.525863647461,119.815742492676,-24.5030975341797,-148.361038208008,114.443214416504,-33.5946884155273,\r\n-152.664459228516,112.651039123535,-43.4657554626465,-154.605651855469,112.247001647949,-46.4138450622559,-171.197280883789,108.869667053223,-46.8627891540527,-158.915069580078,111.77995300293,-51.7950744628906,-156.720855712891,111.991973876953,-49.1956176757813,-146.49885559082,124.877235412598,-23.8015289306641,-147.588958740234,115.20629119873,-28.5240917205811,-149.796188354492,112.984069824219,-37.1600341796875,-150.840286254883,113.09008026123,-40.3525505065918,-163.250503540039,109.342712402344,-46.5725593566895,-168.705032348633,107.940574645996,-43.4907569885254,-147.485961914063,134.187149047852,-27.3163738250732,-147.43994140625,130.028747558594,-21.5511074066162,-146.283843994141,119.727737426758,-17.2034816741943,-146.817886352539,114.843254089355,-20.0000553131104,-148.827087402344,111.443916320801,-28.4684867858887,-151.445343017578,110.049781799316,-34.5169792175293,-155.60075378418,109.518737792969,-40.0805244445801,-158.401031494141,109.548736572266,-43.7135810852051,-146.957901000977,125.384284973145,-15.2416896820068,-148.264038085938,110.794853210449,-22.9280433654785,-150.431259155273,109.852767944336,-31.4541778564453,-153.357528686523,109.741760253906,-37.4682655334473,-167.534912109375,106.237411499023,-37.3185539245605,-150.791290283203,107.297515869141,-25.1295585632324,-152.330429077148,107.035491943359,-28.4934883117676,-155.554748535156,107.131500244141,-34.1287422180176,-154.333633422852,106.210403442383,-29.8598213195801,-159.5361328125,106.663452148438,-35.9025115966797,-163.376525878906,107.424530029297,-40.3079452514648,-164.704635620117,103.957183837891,-30.792013168335,-154.933700561523,103.586143493652,-24.6555137634277,-159.241104125977,104.304222106934,-29.9188270568848,-159.672149658203,101.014892578125,-24.0517520904541,-163.099487304688,101.316925048828,-25.4011859893799,-166.249801635742,101.867980957031,-26.3000736236572,-166.238800048828,100.140113830566,-24.2351722717285,-167.448913574219,99.2409286499023,-22.6681671142578,-168.670043945313,100.069610595703,-23.1660671234131,\r\n-59.0790977478027,-230.796615600586,-5.37702322006226,-52.3554344177246,-230.229568481445,-26.335277557373,-48.1693229675293,-230.700607299805,-5.99526405334473,-56.2212142944336,-230.277572631836,-32.4111747741699,-57.2014083862305,-230.961624145508,-2.3222439289093,-62.0007820129395,-230.824615478516,-16.8583488464355,-53.8540802001953,-231.096649169922,1.63140404224396,-61.6425476074219,-230.88362121582,-9.86954307556152,-62.4203186035156,-230.443588256836,-24.7302207946777,-63.0760841369629,-230.737609863281,-12.015772819519,-66.6222381591797,-231.185653686523,-16.9745597839355,-58.4336318969727,-230.504577636719,-34.2138481140137,-56.4264335632324,-230.964630126953,-39.3627548217773,-58.283317565918,-236.083129882813,-46.6601715087891,-61.8846702575684,-240.873611450195,-49.0097007751465,-57.3590278625488,-238.483383178711,-50.0695037841797,-60.570240020752,-242.621780395508,-53.0195922851563,-66.8309478759766,-231.74169921875,-22.882137298584,-62.979679107666,-231.663711547852,-32.6056938171387,-60.6818542480469,-232.686798095703,-38.8356018066406,-54.9414863586426,-232.021728515625,-43.951301574707,-59.2760162353516,-234.066940307617,-42.8931007385254,-63.8162574768066,-246.180130004883,-68.5566177368164,-72.7589416503906,-246.173126220703,-70.523307800293,-62.9001693725586,-245.001007080078,-57.4674263000488,-59.1185989379883,-244.175918579102,-57.3339157104492,-63.0202827453613,-238.990417480469,-45.1010131835938,-64.6552352905273,-244.153930664063,-52.6797561645508,-70.1506805419922,-233.63688659668,-18.3333930969238,-61.021785736084,-245.676071166992,-62.4369163513184,-65.584228515625,-245.668075561523,-59.6691436767578,-70.3641052246094,-245.692077636719,-56.0304870605469,-68.6474380493164,-246.207122802734,-80.9912338256836,-66.3082046508789,-243.106811523438,-48.0321044921875,-71.4295043945313,-235.063034057617,-18.7711353302002,-70.1111755371094,-235.868118286133,-25.5753021240234,-65.7355422973633,-235.954116821289,-36.5758781433105,-82.4967956542969,-246.333145141602,-69.8596420288086,-74.30908203125,-245.903091430664,-82.9374237060547,\r\n-67.7925491333008,-241.874694824219,-43.5010566711426,-68.4714126586914,-245.142013549805,-52.536247253418,-67.7498397827148,-235.572082519531,-31.4535789489746,-69.4088134765625,-240.871612548828,-38.7653961181641,-78.2652740478516,-245.693084716797,-47.3908386230469,-70.3627014160156,-244.573974609375,-47.4829483032227,-76.5829162597656,-241.828689575195,-21.3290863037109,-73.8920440673828,-240.890609741211,-27.7690181732178,-71.42919921875,-240.485565185547,-33.5714836120605,-75.4626007080078,-245.197036743164,-44.2998390197754,-87.8162078857422,-246.099105834961,-41.9070014953613,-80.1984634399414,-245.948089599609,-77.9303359985352,-72.2207870483398,-243.981903076172,-42.4082489013672,-78.6174087524414,-242.734786987305,-14.417308807373,-74.9814529418945,-243.790893554688,-35.5100746154785,-82.7419128417969,-245.417053222656,-25.4788932800293,-86.6316986083984,-245.845092773438,-29.0629444122314,-87.379768371582,-246.386138916016,-58.8718643188477,-84.9158325195313,-245.966110229492,-73.0148544311523,-76.9921493530273,-245.585067749023,-83.5128860473633,-79.138053894043,-244.396957397461,-25.4827938079834,-81.5443954467773,-244.917007446289,-19.6305198669434,-96.7985916137695,-246.240127563477,-22.7398242950439,-92.4815673828125,-246.185119628906,-45.1792221069336,-89.2842559814453,-245.891098022461,-63.3111991882324,-83.9330291748047,-245.335052490234,-13.8973579406738,-87.7719039916992,-245.759078979492,-11.2683010101318,-92.6538848876953,-245.400054931641,-53.9322814941406,-83.004638671875,-245.346054077148,-7.70725107192993,-98.416145324707,-246.242126464844,-6.43685722351074,-101.586463928223,-246.300140380859,-28.9760341644287,-96.4793548583984,-245.818099975586,-44.7936859130859,-48.4764556884766,-245.390045166016,38.5042762756348,-51.8650856018066,-245.851089477539,39.909912109375,-50.7035713195801,-245.586059570313,35.2292556762695,-55.6158561706543,-245.996109008789,37.7335014343262,-54.9613914489746,-245.574066162109,45.2621383666992,-80.5831985473633,-245.98210144043,-7.95100498199463,-93.4310607910156,-245.816101074219,5.68229007720947,\r\n-100.396339416504,-246.197128295898,-34.8230094909668,-52.8311805725098,-245.534057617188,32.4018783569336,-58.7787666320801,-244.970001220703,43.3940582275391,-85.402473449707,-245.802093505859,5.34055709838867,-81.9355316162109,-245.482040405273,-1.55213797092438,-105.828872680664,-246.352142333984,-14.8401508331299,-100.589363098145,-246.023101806641,6.0212140083313,-103.807678222656,-246.108108520508,-34.5403785705566,-58.5626411437988,-243.250839233398,47.8870964050293,-55.3939323425293,-245.49006652832,28.2702732086182,-59.0081901550293,-245.87109375,38.4072685241699,-77.6347122192383,-244.941009521484,-0.986163020133972,-106.497940063477,-246.547149658203,-29.1434516906738,-107.05899810791,-246.110107421875,-1.32205605506897,-95.2591323852539,-246.159118652344,14.2036962509155,-103.146614074707,-246.525161743164,18.9228572845459,-62.1109924316406,-242.034713745117,44.7188873291016,-57.5845489501953,-245.625061035156,25.3497867584229,-63.1452941894531,-245.219039916992,37.1878471374512,-60.9251747131348,-245.922088623047,31.0948524475098,-81.43798828125,-245.914093017578,7.77903604507446,-86.5150833129883,-246.307144165039,15.7676486968994,-111.987480163574,-246.271133422852,5.14285707473755,-106.782974243164,-244.893997192383,-35.5513801574707,-62.065486907959,-238.383361816406,48.549259185791,-64.8844604492188,-242.784790039063,40.447868347168,-75.5995101928711,-245.977111816406,12.3318119049072,-119.583221435547,-246.765182495117,-11.8349561691284,-94.0621185302734,-246.193130493164,20.3815002441406,-107.110000610352,-246.4521484375,23.3900966644287,-111.830459594727,-246.388137817383,-30.3719711303711,-64.5139312744141,-238.223342895508,45.2653388977051,-66.0785827636719,-238.574371337891,44.0285186767578,-60.9372749328613,-245.798080444336,21.5936183929443,-68.3658065795898,-244.175918579102,35.341667175293,-66.4181137084961,-245.911087036133,31.0549468994141,-76.2811813354492,-246.258117675781,18.5597229003906,-73.4385986328125,-244.734985351563,3.85984206199646,-115.296806335449,-246.624176025391,-21.8319358825684,\r\n-78.6387100219727,-246.133117675781,22.9163494110107,-97.7848892211914,-245.680084228516,24.2249774932861,-102.87858581543,-246.160125732422,24.0022563934326,-114.549728393555,-246.336135864258,26.0973606109619,-117.070976257324,-246.161117553711,12.9097690582275,-110.951377868652,-244.779983520508,-34.6331901550293,-69.3549041748047,-241.214630126953,38.091236114502,-66.0862808227539,-245.932098388672,17.2959995269775,-71.3319931030273,-246.117126464844,24.6725215911865,-69.4888153076172,-245.753082275391,11.6566457748413,-71.3923034667969,-245.149017333984,7.2723560333252,-75.4776000976563,-244.418960571289,0.151556000113487,-126.813934326172,-246.649169921875,-21.9591484069824,-92.13623046875,-245.026016235352,25.356388092041,-104.501747131348,-245.148010253906,28.531400680542,-111.615447998047,-246.188125610352,27.9867458343506,-127.721015930176,-246.291137695313,10.7027530670166,-115.014770507813,-246.451156616211,-25.8274269104004,-115.00577545166,-245.054016113281,-32.1536483764648,-70.3381958007813,-238.18034362793,40.0029258728027,-71.0155639648438,-245.690078735352,29.9547386169434,-71.7166290283203,-243.81689453125,33.888427734375,-67.4830169677734,-245.867095947266,14.9537687301636,-123.946647644043,-246.228118896484,-27.3383750915527,-130.402282714844,-246.703170776367,-22.3831901550293,-80.4840927124023,-244.942001342773,27.6266098022461,-96.5971755981445,-243.843902587891,27.8486328125,-100.614364624023,-244.080932617188,28.4815940856934,-108.194107055664,-245.87109375,28.452392578125,-114.279708862305,-245.403045654297,35.5043830871582,-129.372177124023,-246.768188476563,-5.00550699234009,-71.3385925292969,-238.254348754883,39.2343482971191,-74.0513610839844,-239.152435302734,36.9117202758789,-76.0347595214844,-245.411041259766,28.5342998504639,-127.025955200195,-245.823089599609,-28.7347106933594,-83.24755859375,-242.439758300781,30.2395668029785,-92.2071380615234,-242.459762573242,29.0355491638184,-102.182518005371,-242.555770874023,31.6012001037598,-105.725868225098,-243.579864501953,32.553092956543,\r\n-109.647247314453,-244.764984130859,32.9189300537109,-118.666130065918,-246.192123413086,36.2163505554199,-128.161071777344,-246.372146606445,23.3467903137207,-136.178848266602,-246.661163330078,-1.89100205898285,-122.275489807129,-245.001998901367,-31.9434261322021,-76.6481094360352,-243.362854003906,32.1382522583008,-136.115844726563,-246.455154418945,-23.2769775390625,-131.312377929688,-245.066024780273,-28.174955368042,-96.6880798339844,-239.181442260742,31.6584053039551,-111.642448425293,-244.396957397461,37.0337333679199,-120.607322692871,-246.50715637207,30.6506080627441,-117.958061218262,-246.05810546875,43.9096069335938,-137.671005249023,-246.290145874023,27.3232822418213,-77.9455413818359,-239.92350769043,34.364673614502,-124.505706787109,-242.909805297852,-32.33056640625,-128.158065795898,-243.628875732422,-30.7075042724609,-80.6943130493164,-239.539474487305,33.4667854309082,-90.0371246337891,-238.83740234375,31.3156719207764,-94.9487152099609,-239.191436767578,31.1795597076416,-103.545654296875,-240.330551147461,34.9170265197754,-105.46484375,-241.301651000977,36.0857391357422,-112.079490661621,-244.448959350586,41.8905067443848,-120.212287902832,-246.180130004883,48.6415672302246,-126.034858703613,-246.223129272461,46.926399230957,-133.208557128906,-245.817092895508,51.9934005737305,-141.921417236328,-246.450149536133,12.913969039917,-139.527191162109,-246.602172851563,-18.8298416137695,-135.431777954102,-245.202026367188,-27.1928615570068,-83.8534240722656,-238.821411132813,32.6392021179199,-86.6972045898438,-238.631393432617,31.9416332244873,-119.024169921875,-247.33723449707,51.8818893432617,-141.662384033203,-245.404052734375,55.5972518920898,-143.374557495117,-245.701080322266,39.9831199645996,-144.893707275391,-246.907196044922,-7.33235502243042,-139.721206665039,-245.752075195313,-24.6658134460449,-128.437088012695,-246.083114624023,60.9129753112793,-119.241195678711,-247.25422668457,56.0802993774414,-138.035034179688,-245.260025024414,64.2882080078125,-151.724380493164,-246.063110351563,24.8896427154541,\r\n-150.739288330078,-246.726165771484,5.90072202682495,-143.451568603516,-245.890090942383,-23.7897262573242,-145.705780029297,-246.378143310547,-19.4395008087158,-138.848114013672,-242.366744995117,-26.8688297271729,-122.649520874023,-246.229125976563,56.494140625,-132.634490966797,-245.44905090332,67.7390441894531,-146.961898803711,-245.169021606445,52.5623550415039,-141.267349243164,-244.872009277344,64.1433868408203,-153.528549194336,-246.648162841797,-0.104154996573925,-143.074523925781,-243.439849853516,-25.2839736938477,-146.067825317383,-244.648971557617,59.6249465942383,-157.498947143555,-245.113021850586,40.9698181152344,-159.118087768555,-246.611175537109,9.91785526275635,-146.306838989258,-244.807983398438,-23.3705863952637,-151.583358764648,-246.208129882813,-15.0245676040649,-150.55224609375,-244.630966186523,53.1100082397461,-144.579666137695,-243.780899047852,66.2646942138672,-153.232528686523,-244.949005126953,47.1553230285645,-159.640151977539,-245.434051513672,34.4231758117676,-162.757461547852,-246.352142333984,-2.02669501304626,-148.655075073242,-245.903091430664,-20.0232582092285,-156.332824707031,-245.929092407227,-16.6024227142334,-150.500259399414,-243.320846557617,58.7642593383789,-146.832885742188,-242.861801147461,64.45751953125,-157.184906005859,-244.550964355469,45.9708099365234,-161.750350952148,-244.80598449707,39.4188652038574,-167.373901367188,-245.571060180664,25.4986019134521,-170.783233642578,-245.710083007813,9.22120666503906,-149.699172973633,-243.337844848633,-21.8326358795166,-152.668472290039,-245.174026489258,-19.6151180267334,-148.835083007813,-242.458755493164,62.0068817138672,-153.744567871094,-242.457763671875,56.2673149108887,-155.604751586914,-243.830902099609,51.3915405273438,-160.619247436523,-243.898895263672,45.2506408691406,-164.975677490234,-245.187026977539,33.2578620910645,-169.552108764648,-245.821090698242,14.8625602722168,-164.070587158203,-245.836090087891,-10.3500099182129,-159.402130126953,-246.168121337891,-11.4981231689453,-156.577850341797,-243.590866088867,-19.2694854736328,\r\n-158.848083496094,-242.677780151367,50.4999504089355,-163.863571166992,-243.273834228516,43.4530601501465,-165.271697998047,-244.240936279297,38.9184188842773,-170.475204467773,-244.619964599609,30.320276260376,-172.686416625977,-244.813980102539,22.9590549468994,-173.332489013672,-244.904998779297,15.3046026229858,-169.693130493164,-245.026016235352,-2.57177805900574,-159.891174316406,-245.190032958984,-16.2189846038818,-153.566558837891,-240.529571533203,-20.359790802002,-156.797866821289,-241.960708618164,54.3022270202637,-162.670440673828,-241.987716674805,48.1049194335938,-168.484008789063,-243.677886962891,37.0600357055664,-175.655731201172,-243.714874267578,12.3545150756836,-171.851348876953,-244.865997314453,2.82896089553833,-168.030975341797,-245.038024902344,-7.81387186050415,-160.212203979492,-240.883605957031,-17.4306049346924,-157.036895751953,-239.311447143555,-19.0524635314941,-167.784942626953,-242.378753662109,41.7808952331543,-173.32649230957,-242.695785522461,34.1475486755371,-175.035659790039,-242.976806640625,29.4186878204346,-175.926742553711,-243.403854370117,22.0334625244141,-173.984558105469,-244.575973510742,7.78394603729248,-176.864837646484,-242.30973815918,16.673038482666,-173.242477416992,-242.235748291016,0.369933009147644,-167.182891845703,-243.837890625,-11.0256767272949,-171.043273925781,-243.645874023438,-5.03465986251831,-163.329498291016,-243.626876831055,-14.7513418197632,-172.014358520508,-243.994903564453,31.7081108093262,-177.62190246582,-242.480758666992,10.094292640686,-178.671020507813,-240.286544799805,13.0799856185913,-176.175765991211,-242.512756347656,6.20743179321289,-169.854141235352,-243.569869995117,-8.28755760192871,-163.603530883789,-239.775497436523,-15.2275876998901,-170.427200317383,-241.241638183594,-6.66545009613037,-166.598831176758,-240.537582397461,-12.2109928131104,-178.727020263672,-240.309539794922,8.97572422027588,45.335636138916,-233.506881713867,48.6651725769043,46.4956512451172,-234.180953979492,52.9033889770508,43.8361892700195,-232.160751342773,52.9962959289551,\r\n47.5790557861328,-233.129837036133,60.0645904541016,45.6570701599121,-232.112747192383,58.2172088623047,42.984504699707,-231.085647583008,57.6857566833496,41.5906677246094,-231.146636962891,50.2295265197754,44.0141105651855,-230.723617553711,62.732551574707,39.4781646728516,-230.659591674805,56.5646476745605,47.0589065551758,-231.635711669922,63.9576721191406,51.5939483642578,-235.238052368164,64.5313262939453,37.6551818847656,-230.542602539063,48.2868347167969,33.8483085632324,-230.428588867188,37.0648345947266,34.7396965026855,-230.77961730957,56.4483337402344,49.0590019226074,-232.466781616211,65.9211654663086,45.2896308898926,-230.425582885742,68.5340194702148,52.4587364196777,-233.924911499023,68.3646011352539,42.8699951171875,-230.118545532227,73.0251617431641,26.6143016815186,-230.628601074219,66.7232437133789,28.1143493652344,-230.431579589844,34.7706108093262,48.5149459838867,-230.88362121582,70.1656799316406,45.4591484069824,-229.641510009766,89.2727508544922,29.4717826843262,-230.448577880859,77.0285491943359,25.3371772766113,-230.063537597656,14.1790933609009,18.310489654541,-230.66960144043,38.1287384033203,16.0320663452148,-231.157638549805,65.1878890991211,46.3687362670898,-229.973541259766,75.2374725341797,51.9151802062988,-231.81672668457,71.3879013061523,35.6267852783203,-229.929534912109,86.4955825805664,25.344877243042,-230.081558227539,90.3353500366211,17.2714862823486,-230.458587646484,84.7718124389648,49.4225387573242,-230.087554931641,75.3046798706055,13.9162588119507,-230.892623901367,44.5499687194824,8.98495483398438,-230.83561706543,77.8261337280273,21.6086120605469,-229.186462402344,106.076400756836,8.66681385040283,-231.074645996094,68.5357208251953,8.35671424865723,-230.285568237305,89.3616638183594,14.5718221664429,-229.393478393555,106.716461181641,6.24132585525513,-230.986633300781,59.6895523071289,-1.42493498325348,-230.325561523438,94.4092559814453,-1.52497494220734,-231.214660644531,72.2334823608398,-0.764580011367798,-229.844528198242,102.931091308594,10.4485177993774,-228.29736328125,120.121772766113,\r\n-7.62740278244019,-229.643508911133,110.902877807617,-9.20576763153076,-231.249664306641,80.8006210327148,-0.807694017887115,-229.173461914063,111.835960388184,-12.8842678070068,-230.970626831055,87.6808929443359,-7.48682880401611,-227.830322265625,131.038848876953,-13.5477323532104,-230.137557983398,103.654159545898,-20.9328556060791,-231.689712524414,77.5556030273438,-11.4180240631104,-228.029342651367,130.305770874023,-19.8459491729736,-230.974624633789,93.9458160400391,-17.6305332183838,-228.197372436523,129.224655151367,-23.0225620269775,-230.017532348633,108.376625061035,-31.5178928375244,-230.962631225586,100.957901000977,-27.0781593322754,-228.922424316406,121.000862121582,-29.8172283172607,-229.674499511719,115.125289916992,-21.1162738800049,-228.315368652344,128.56559753418,-35.0884437561035,-229.934539794922,113.798156738281,-23.9596538543701,-228.512405395508,128.266571044922,-32.063850402832,-229.289474487305,123.969146728516,-41.702091217041,-231.0146484375,108.793663024902,-28.8842353820801,-228.925430297852,127.162460327148,-30.1557598114014,-229.067443847656,125.974349975586,-37.5443878173828,-230.155548095703,120.004760742188,-41.0506286621094,-230.495590209961,116.72144317627,-43.9691123962402,-230.982635498047,112.845062255859,-47.7791862487793,-233.095840454102,110.564834594727,-14.2083978652954,-228.148361206055,129.799728393555,-186.332763671875,181.390777587891,-66.5415191650391,-186.655792236328,184.652099609375,-73.2192687988281,-189.138031005859,181.969833374023,-71.6930236816406,-185.210662841797,178.019439697266,-58.181999206543,-189.715103149414,187.51237487793,-84.8113021850586,-190.509170532227,190.24365234375,-91.5360717773438,-51.6356658935547,136.8994140625,-7.70606088638306,-58.5888481140137,133.088043212891,-2.01494407653809,-63.2707023620605,130.821823120117,3.30393695831299,-64.5242309570313,130.980834960938,6.85711622238159,-67.489616394043,130.052734375,9.17676258087158,-70.749641418457,130.134750366211,13.004077911377,-74.3268890380859,130.367767333984,16.5437240600586,-84.0217361450195,125.057250976563,22.2988872528076,\r\n-148.977096557617,149.685668945313,-40.4161567687988,-148.349044799805,144.615173339844,-35.7102928161621,-146.972900390625,149.85368347168,-47.2425231933594,-148.695068359375,137.923522949219,-26.2453670501709,-147.378952026367,154.679153442383,-52.701961517334,-148.464050292969,132.626998901367,-18.324592590332,-146.170822143555,159.733657836914,-65.0010681152344,-147.585968017578,128.026550292969,-10.7003450393677,-148.078002929688,129.336685180664,-6.82377481460571,-146.091827392578,165.06916809082,-80.8938217163086,-166.455810546875,128.873626708984,-131.218856811523,-165.19367980957,128.875640869141,-128.154556274414,-163.383514404297,129.404678344727,-125.173263549805,-166.538818359375,126.676414489746,-121.386894226074,-164.642639160156,126.868438720703,-118.44059753418,-169.501113891602,124.574203491211,-116.844444274902,-167.379898071289,124.237174987793,-112.451011657715,-171.354293823242,123.195068359375,-111.626937866211,-169.634124755859,121.255882263184,-99.0489044189453,-169.476119995117,119.710731506348,-91.2939453125,-170.662231445313,118.065567016602,-81.3031616210938,-174.11457824707,110.899864196777,-52.7935676574707,-171.219284057617,105.212310791016,-32.9827270507813,-169.037063598633,103.171112060547,-28.3833770751953,-189.202056884766,194.623077392578,-100.228813171387,-191.271255493164,196.030212402344,-107.795562744141,-196.088729858398,210.252593994141,-140.035720825195,-197.060821533203,210.983673095703,-144.156112670898,-195.188629150391,214.448013305664,-146.754379272461,-197.619873046875,211.750747680664,-148.321533203125,-195.75569152832,215.444122314453,-150.417724609375,-192.27033996582,218.149383544922,-149.369644165039,-192.916397094727,218.898452758789,-153.422027587891,-188.463973999023,221.647720336914,-154.625152587891,-186.480773925781,223.259887695313,-159.317611694336,-180.472198486328,225.430099487305,-160.079696655273,-181.272277832031,226.538208007813,-165.915252685547,-177.9609375,227.050247192383,-165.098175048828,-175.889739990234,227.728302001953,-169.221572875977,\r\n-174.6826171875,226.510208129883,-163.583023071289,-172.616424560547,227.614303588867,-167.551422119141,-173.754531860352,228.044357299805,-173.088958740234,-169.035064697266,226.783218383789,-167.328384399414,-170.76123046875,228.32536315918,-171.637817382813,-171.756332397461,228.08235168457,-176.137268066406,-166.973876953125,227.831329345703,-172.126861572266,-163.292510986328,225.898147583008,-171.134780883789,-168.443008422852,228.26237487793,-176.163269042969,-166.717834472656,227.457290649414,-180.656707763672,-161.55534362793,226.884231567383,-176.271255493164,-164.123596191406,227.815322875977,-178.296478271484,-157.500946044922,224.851028442383,-176.41227722168,-163.292510986328,227.397277832031,-181.416778564453,-164.49462890625,226.314178466797,-183.017929077148,-157.617950439453,225.982147216797,-180.535690307617,-151.226333618164,221.948745727539,-181.536773681641,-160.060180664063,223.258880615234,-186.413269042969,-153.904586791992,223.913940429688,-181.157745361328,-155.62776184082,224.520004272461,-185.468170166016,-151.143310546875,222.182769775391,-185.677185058594,-148.980102539063,219.478515625,-183.559982299805,-158.512023925781,219.16047668457,-188.486465454102,-152.858474731445,223.966949462891,-184.435073852539,-156.035797119141,222.012756347656,-188.59748840332,-149.740173339844,217.804351806641,-189.440551757813,-152.921493530273,221.702728271484,-188.630477905273,-155.163711547852,218.144378662109,-189.634567260742,-147.235931396484,217.654327392578,-186.68928527832,-145.351745605469,214.537033081055,-187.219345092773,-146.888900756836,217.048263549805,-189.207550048828,-146.184829711914,214.272003173828,-190.834701538086,-143.78759765625,210.478622436523,-189.519577026367,-149.051116943359,212.180801391602,-192.094818115234,-145.236740112305,209.580535888672,-192.269836425781,-142.813507080078,205.248107910156,-190.499664306641,-148.672073364258,207.647354125977,-192.872894287109,-141.280349731445,196.900283813477,-190.156631469727,-145.050720214844,204.480041503906,-193.247940063477,\r\n-142.490478515625,202.158813476563,-192.233825683594,-149.104110717773,203.064895629883,-192.999908447266,-141.66438293457,191.796798706055,-189.887603759766,-141.351348876953,195.816192626953,-191.584777832031,-146.045806884766,199.170516967773,-193.655975341797,-143.300552368164,200.225616455078,-193.420959472656,-142.717483520508,195.681182861328,-192.919891357422,-141.986419677734,184.8701171875,-185.881210327148,-145.021713256836,194.245025634766,-193.446960449219,-143.650588989258,190.83171081543,-192.378845214844,-142.898498535156,186.187255859375,-189.583572387695,-143.632583618164,181.712814331055,-188.654479980469,-143.377548217773,178.405487060547,-184.660079956055,-145.410751342773,181.919815063477,-190.063613891602,-145.333755493164,178.05143737793,-187.704391479492,-144.945709228516,173.505996704102,-183.471984863281,-146.791885375977,172.941955566406,-186.01123046875,-147.505966186523,167.196380615234,-180.398666381836,-150.906295776367,164.079086303711,-180.985733032227,-150.327239990234,162.393920898438,-177.974426269531,-151.135314941406,159.298614501953,-175.48518371582,-153.277526855469,156.000289916992,-173.674011230469,-156.212814331055,152.720962524414,-171.019760131836,-158.156005859375,149.312637329102,-167.46940612793,-164.827651977539,144.810195922852,-161.383819580078,-165.636734008789,141.838897705078,-158.117492675781,-164.762649536133,139.40266418457,-154.975189208984,-49.7449798583984,167.329406738281,-41.5980758666992,-47.3339424133301,171.573822021484,-43.777889251709,-54.4848442077637,172.238876342773,-42.5993690490723,-57.6695556640625,167.12336730957,-40.2794456481934,-52.5042495727539,176.811325073242,-44.3344421386719,-47.8382949829102,176.75032043457,-45.5666618347168,-57.3505249023438,162.248901367188,-38.2939491271973,-58.9885864257813,172.11686706543,-41.4630584716797,-57.5501441955566,176.318267822266,-42.8723945617676,-39.7243957519531,176.517303466797,-47.0508079528809,-64.2033004760742,167.112365722656,-38.7035865783691,-63.6846466064453,171.495803833008,-39.7452926635742,\r\n-55.7587661743164,181.51579284668,-44.0868186950684,-50.7628784179688,181.577789306641,-45.9386978149414,-46.1555290222168,181.610794067383,-47.2614288330078,-64.022575378418,162.155883789063,-36.9912185668945,-60.2085075378418,178.44548034668,-42.1172256469727,-41.0486297607422,181.531799316406,-48.6401596069336,-36.3531684875488,181.506790161133,-49.833179473877,-69.9781646728516,171.817825317383,-36.4480667114258,-68.556526184082,166.953353881836,-36.6894912719727,-64.2999038696289,157.263412475586,-34.4416732788086,-65.1603927612305,176.099258422852,-39.2869453430176,-42.0729293823242,186.212249755859,-49.6448593139648,-69.5743255615234,162.172882080078,-35.0900344848633,-73.260383605957,166.863357543945,-34.3082580566406,-69.8057479858398,157.348403930664,-33.1381416320801,-76.2460708618164,162.060882568359,-32.0627403259277,-79.8157272338867,166.360290527344,-30.6386985778809,-73.4198989868164,152.419937133789,-29.6009979248047,-76.2809829711914,157.277404785156,-30.7440071105957,-82.5144958496094,161.708831787109,-28.5816955566406,-79.3982849121094,152.275924682617,-27.380880355835,-83.5534896850586,157.107391357422,-27.2387657165527,-87.8674163818359,157.269409179688,-25.269172668457,-79.0540466308594,147.567459106445,-25.2208690643311,-84.4520797729492,152.334930419922,-25.5820026397705,-88.9682235717773,152.385940551758,-23.7390213012695,-92.2867431640625,156.865371704102,-22.8119316101074,-86.0056381225586,147.431457519531,-23.076358795166,-98.2524337768555,157.386428833008,-19.0997676849365,-88.9896240234375,142.734985351563,-19.825138092041,-92.6760864257813,147.532455444336,-20.5965137481689,-94.2040405273438,152.484939575195,-21.171070098877,-98.5580673217773,152.063903808594,-18.7009296417236,-104.608757019043,152.331924438477,-14.7257404327393,-95.5885772705078,142.677978515625,-17.5116119384766,-112.994575500488,151.940887451172,-8.20676136016846,-98.9999084472656,147.554458618164,-17.643123626709,-109.450233459473,147.530456542969,-11.0079746246338,-102.161514282227,142.666976928711,-14.4711141586304,\r\n-105.104804992676,147.091415405273,-13.984766960144,-114.246696472168,147.737487792969,-7.55739688873291,-118.929153442383,148.909591674805,-3.95739388465881,-108.316116333008,142.724990844727,-11.0336780548096,-113.962677001953,142.581970214844,-7.58729982376099,-121.907455444336,138.868606567383,-2.4915599822998,-122.747535705566,145.607269287109,-1.43901705741882,-106.667961120605,137.803497314453,-10.5484304428101,-111.217399597168,137.963516235352,-8.48688793182373,-117.24299621582,137.823501586914,-5.19914579391479,-126.512901306152,140.41276550293,0.591602027416229,-128.427093505859,143.00700378418,2.70640897750854,-120.697334289551,133.105041503906,-3.09105896949768,-114.45272064209,133.231063842773,-5.94714879989624,-126.14086151123,133.295059204102,-0.571991980075836,-129.145156860352,137.185440063477,1.60718095302582,-134.089645385742,140.873809814453,6.12104415893555,-125.243782043457,128.507583618164,-1.13753795623779,-132.220474243164,138.485565185547,3.77345299720764,-121.159378051758,128.098556518555,-2.48000907897949,15.7782402038574,232.780807495117,-79.4393768310547,13.9062576293945,236.213150024414,-80.9420318603516,16.9365539550781,233.369873046875,-83.3111572265625,11.5288238525391,236.323165893555,-83.7052001953125,14.9152555465698,234.143951416016,-85.3006591796875,18.4715042114258,229.926544189453,-83.8889236450195,15.2874927520752,231.514694213867,-87.5946807861328,17.3613967895508,232.0107421875,-86.2159423828125,20.2283763885498,225.123062133789,-83.4152679443359,17.8286418914795,228.524398803711,-88.2019424438477,21.7171230316162,219.956558227539,-81.227653503418,19.7114276885986,227.260269165039,-86.6574859619141,22.6317138671875,220.208572387695,-84.5112762451172,20.5010032653809,223.704925537109,-88.5449676513672,24.1720638275146,207.090301513672,-75.9524383544922,24.5878028869629,214.868057250977,-84.7387008666992,25.2420692443848,209.867568969727,-80.744010925293,23.0370502471924,219.607513427734,-87.9164123535156,19.3235893249512,220.139572143555,-90.5260696411133,25.6874122619629,200.522659301758,-74.4416885375977,\r\n21.4372959136963,221.019653320313,-89.9920196533203,25.7717208862305,209.015472412109,-83.7114944458008,23.6588134765625,215.209091186523,-88.1412353515625,26.3435745239258,200.107604980469,-77.9910430908203,25.7032146453857,195.068115234375,-71.6663208007813,22.249475479126,215.859146118164,-89.6304779052734,24.2249698638916,209.849563598633,-86.6697845458984,19.18967628479,215.205093383789,-89.7835922241211,25.6865100860596,195.242141723633,-75.5644073486328,24.9199352264404,195.645172119141,-67.9246520996094,25.7905216217041,200.006591796875,-81.0172348022461,25.0432472229004,205.490142822266,-84.7408981323242,21.7508277893066,211.557739257813,-88.8381042480469,25.8716297149658,196.268218994141,-78.5886917114258,25.7100143432617,191.599761962891,-70.7407302856445,24.7988243103027,191.483764648438,-74.1321563720703,24.9340381622314,201.485748291016,-83.1339416503906,23.4429912567139,205.514144897461,-86.3524551391602,20.8615398406982,206.31721496582,-87.051628112793,18.1894779205322,210.130584716797,-88.1258316040039,24.0361499786377,192.671875,-77.3688812255859,24.9921436309814,190.176635742188,-65.0754776000977,23.4660930633545,197.240325927734,-81.5762939453125,22.3057804107666,201.834777832031,-84.7392959594727,24.2997741699219,188.815505981445,-72.045654296875,24.4737949371338,186.888305664063,-68.1857833862305,23.7956275939941,190.836700439453,-61.5277252197266,21.9176425933838,189.75959777832,-75.2882766723633,20.6638202667236,193.646987915039,-78.9638290405273,24.3498802185059,185.215148925781,-65.1020736694336,24.202465057373,185.746200561523,-62.2888984680176,21.8471355438232,185.806198120117,-70.772331237793,22.664514541626,183.710006713867,-67.2255783081055,23.5766048431396,185.893218994141,-59.1020851135254,22.3102798461914,182.293869018555,-64.2905960083008,22.5195007324219,181.709808349609,-59.3309097290039,19.3116874694824,182.619903564453,-67.1282730102539,20.2904815673828,180.149658203125,-62.4953193664551,21.8166332244873,179.91162109375,-54.8786735534668,19.7471294403076,178.114456176758,-58.8137588500977,\r\n20.0504589080811,176.367294311523,-55.1182975769043,20.3694915771484,177.127365112305,-52.0889015197754,17.7747364044189,175.49919128418,-56.2368087768555,19.088565826416,176.268280029297,-48.3462333679199,17.3312931060791,173.958038330078,-52.0788993835449,18.4345016479492,177.777420043945,-45.3203353881836,15.7620391845703,171.27278137207,-46.063907623291,13.0409727096558,170.920761108398,-48.4685440063477,17.3663959503174,173.854034423828,-43.9815063476563,15.5541191101074,170.888732910156,-42.0520172119141,11.8307542800903,168.232482910156,-42.5058631896973,15.5101137161255,173.466995239258,-39.8055953979492,14.2318887710571,170.497711181641,-39.1925392150879,8.15222263336182,165.171188354492,-38.5386734008789,11.7483463287354,167.821441650391,-38.6546859741211,3.64382195472717,163.408004760742,-37.7630958557129,-0.431950986385345,162.844955444336,-37.7947006225586,134.134643554688,-241.569671630859,15.039176940918,128.109039306641,-242.429763793945,13.6554412841797,128.964141845703,-243.408843994141,20.9784603118896,135.511779785156,-242.497756958008,21.6736278533936,125.43278503418,-243.487869262695,20.3500995635986,142.261428833008,-241.556671142578,22.3013896942139,125.984840393066,-243.358856201172,26.9699478149414,129.487182617188,-243.758880615234,27.5159015655518,133.959625244141,-243.307846069336,28.3163795471191,122.938545227051,-242.577774047852,25.0664596557617,143.234527587891,-242.25373840332,28.9819431304932,130.790298461914,-243.341842651367,33.4012756347656,133.992630004883,-243.398849487305,34.1459503173828,137.301940917969,-243.210830688477,34.734504699707,127.28596496582,-242.695785522461,32.7541122436523,123.882629394531,-241.684677124023,30.9215335845947,119.960250854492,-238.900405883789,29.5590019226074,149.256118774414,-241.599685668945,29.6354084014893,148.694061279297,-241.972717285156,35.2507553100586,134.639678955078,-243.144821166992,40.5586776733398,139.311141967773,-243.129821777344,42.5184707641602,131.558380126953,-242.531768798828,38.7856025695801,127.803016662598,-241.689682006836,36.6684989929199,\r\n123.216575622559,-239.454467773438,34.5444869995117,121.344383239746,-239.214431762695,31.6648063659668,155.943771362305,-240.108535766602,29.7716217041016,155.505737304688,-240.976623535156,42.214038848877,157.141891479492,-240.561569213867,36.2975578308105,135.789810180664,-242.853805541992,46.3640480041504,137.205947875977,-242.619766235352,52.8074798583984,142.924499511719,-242.492752075195,49.2189254760742,130.544296264648,-241.322647094727,42.2226409912109,132.187438964844,-241.536666870117,48.8696899414063,125.986839294434,-238.449356079102,41.859203338623,161.50732421875,-239.665481567383,42.1997375488281,152.954483032227,-241.034622192383,47.6047706604004,155.755767822266,-240.223541259766,49.6237678527832,135.669799804688,-241.718688964844,65.5791244506836,149.163101196289,-240.91960144043,54.7909736633301,138.780090332031,-241.059616088867,66.5677261352539,143.779586791992,-241.893692016602,54.6788635253906,133.401565551758,-242.234741210938,53.7242698669434,132.128448486328,-242.282745361328,64.8899612426758,129.313171386719,-239.939514160156,47.5618667602539,127.576995849609,-239.016418457031,52.2368240356445,129.829208374023,-240.754592895508,54.1973152160645,126.57689666748,-237.894317626953,44.2252388000488,142.985504150391,-240.15852355957,66.5288162231445,137.867004394531,-239.835494995117,73.1000671386719,131.990432739258,-240.724594116211,75.9358444213867,129.549179077148,-242.30973815918,62.7783584594727,126.15185546875,-242.194732666016,71.3307952880859,127.674003601074,-241.528671264648,76.5496063232422,127.475982666016,-241.047622680664,59.6858520507813,125.290771484375,-238.887405395508,57.4510345458984,125.745819091797,-237.089233398438,49.8726921081543,123.279571533203,-236.853210449219,55.7398681640625,146.584854125977,-236.921203613281,74.0463562011719,135.657791137695,-239.109436035156,77.5395050048828,129.232147216797,-239.665481567383,83.3209686279297,135.291748046875,-237.779296875,81.3205795288086,121.552406311035,-241.697677612305,82.0758438110352,124.498695373535,-240.740585327148,85.1813507080078,\r\n124.859733581543,-241.942718505859,66.463020324707,120.786331176758,-242.278747558594,75.3356857299805,122.301483154297,-240.181533813477,63.640739440918,120.756324768066,-237.068222045898,60.3641204833984,134.856719970703,-234.735000610352,89.0109252929688,126.063850402832,-238.723388671875,90.9281158447266,130.852325439453,-235.437072753906,92.8730087280273,121.221374511719,-240.475555419922,93.437255859375,117.216987609863,-241.430648803711,92.2484436035156,119.31819152832,-241.979705810547,71.3045959472656,116.956954956055,-242.39875793457,77.8116226196289,116.352890014648,-240.749588012695,69.0183715820313,112.228492736816,-240.382553100586,71.2821960449219,136.708877563477,-231.956741333008,94.8953018188477,129.276168823242,-234.982025146484,98.7787857055664,122.407485961914,-239.207443237305,99.0743103027344,110.521331787109,-242.320739746094,81.5187911987305,105.774864196777,-241.967712402344,100.660865783691,114.247688293457,-242.327743530273,75.921142578125,109.498222351074,-241.829696655273,73.6819229125977,104.712753295898,-242.30973815918,87.5509796142578,94.3487396240234,-242.473754882813,89.6771926879883,99.5875549316406,-242.216720581055,99.0652084350586,104.92578125,-242.66877746582,80.4246826171875,102.198509216309,-243.398849487305,74.5976104736328,95.5258560180664,-242.204727172852,95.4623565673828,89.5260696411133,-242.335739135742,89.0104217529297,90.3573532104492,-242.822784423828,83.6669082641602,95.7693786621094,-242.942810058594,78.5466003417969,91.9614028930664,-241.5966796875,94.8865051269531,100.409339904785,-243.455871582031,74.3755874633789,82.6571960449219,-241.710678100586,86.7502059936523,84.2031402587891,-242.782791137695,82.1515502929688,85.2188491821289,-240.294540405273,91.8820037841797,88.6927871704102,-241.054626464844,93.2792434692383,90.727180480957,-242.843811035156,78.0550537109375,94.0794143676758,-242.877807617188,72.7943344116211,96.7143707275391,-243.332855224609,73.4440994262695,88.0652236938477,-238.938400268555,96.9677047729492,77.9689331054688,-242.504760742188,80.4951934814453,\r\n79.285758972168,-243.225830078125,75.5390014648438,85.1286315917969,-242.954803466797,76.5143051147461,78.948127746582,-238.815414428711,89.1687393188477,83.2698593139648,-237.41926574707,94.2846450805664,77.1958541870117,-240.858612060547,84.7192077636719,87.5574798583984,-242.134719848633,68.4165115356445,91.3110427856445,-242.390762329102,71.8074417114258,75.1791610717773,-243.119812011719,74.8380355834961,73.2172698974609,-241.560668945313,79.4406890869141,76.9596328735352,-243.621887207031,68.3994064331055,81.7272033691406,-243.059814453125,70.3598022460938,81.5037841796875,-233.849914550781,96.4074478149414,68.1321716308594,-238.611373901367,80.3010711669922,69.5983123779297,-236.040130615234,84.2681579589844,68.7020263671875,-232.147750854492,87.1320419311523,84.9684219360352,-241.945709228516,65.2061004638672,72.9934463500977,-244.008911132813,66.2947006225586,70.5201034545898,-242.663772583008,73.4126968383789,68.4413986206055,-240.98762512207,76.7420272827148,75.7817153930664,-243.574859619141,57.936580657959,77.9276351928711,-242.981796264648,59.9900817871094,79.3733673095703,-242.629776000977,61.1764984130859,75.9026336669922,-231.619689941406,93.818000793457,63.4856147766113,-233.270858764648,81.6690063476563,61.9268646240234,-230.594604492188,84.3203659057617,66.5067138671875,-229.571487426758,89.6860961914063,71.2907867431641,-230.290573120117,91.5814743041992,63.5660247802734,-239.011428833008,75.2968826293945,68.7154312133789,-243.480865478516,67.8834533691406,64.630126953125,-241.557662963867,71.5790176391602,67.0060653686523,-244.115921020508,61.1374931335449,71.1041641235352,-244.460952758789,57.679256439209,75.4046783447266,-229.074447631836,97.6173706054688,59.9595680236816,-232.528778076172,79.7265167236328,69.4087905883789,-228.361389160156,95.292839050293,59.9766731262207,-229.142456054688,87.9031143188477,63.8941535949707,-228.212371826172,95.4249572753906,57.6917495727539,-230.145553588867,82.3428726196289,59.3951148986816,-238.134323120117,71.9154510498047,64.5380172729492,-243.106811523438,66.5303192138672,\r\n60.064079284668,-241.837692260742,65.1900863647461,59.164192199707,-239.806503295898,68.9063568115234,71.0598602294922,-227.741317749023,101.49195098877,55.9999847412109,-233.16584777832,74.1369705200195,53.6360511779785,-230.740615844727,76.1981735229492,58.5460319519043,-228.701416015625,92.2506408691406,57.740852355957,-228.411392211914,98.6185684204102,64.9124603271484,-227.632308959961,110.405822753906,55.1423988342285,-229.08544921875,87.2633590698242,54.1890029907227,-229.603500366211,81.7286148071289,50.8772811889648,-229.657501220703,80.9227294921875,55.9115715026855,-227.689315795898,112.691040039063,47.4069404602051,-228.123352050781,112.376014709473,40.567569732666,-229.446487426758,94.8097991943359,40.3154449462891,-227.855316162109,117.418510437012,44.4345474243164,-227.463287353516,121.138877868652,32.9539222717285,-228.465377807617,114.710243225098,28.6358013153076,-228.923431396484,107.846572875977,34.8453102111816,-227.26628112793,123.567108154297,23.0169506072998,-227.210266113281,126.671417236328,30.060941696167,-227.851318359375,120.494812011719,17.9841575622559,-227.947341918945,122.924049377441,32.6161918640137,-227.178268432617,124.304191589355,20.5703105926514,-227.128265380859,127.514503479004,11.1289854049683,-227.305282592773,129.961730957031,4.07240390777588,-228.095352172852,126.074356079102,7.65344476699829,-227.20426940918,131.346878051758,1.8405749797821,-227.248260498047,132.664001464844,-1.52691495418549,-227.491287231445,132.211959838867,-4.28081512451172,-227.680313110352,131.53288269043,5.54520797729492,242.665771484375,-69.6181182861328,3.20349907875061,244.839981079102,-69.6698226928711,4.40288591384888,242.837799072266,-65.7665405273438,3.7105278968811,243.193832397461,-73.4201889038086,2.38257789611816,245.828094482422,-65.6846389770508,6.59199094772339,242.041717529297,-73.5823059082031,0.310407012701035,243.042816162109,-72.0276565551758,2.65802502632141,243.434844970703,-61.9981727600098,-0.535785973072052,244.957000732422,-68.6585235595703,7.25984621047974,238.873413085938,-69.8730392456055,\r\n5.01624584197998,241.243637084961,-77.2177658081055,0.977365016937256,246.662170410156,-61.9509658813477,-1.11616504192352,246.889205932617,-64.3892059326172,8.93867969512939,238.856399536133,-73.7869262695313,7.9393630027771,240.962600708008,-76.9226303100586,-0.237054005265236,245.276031494141,-58.3317108154297,8.34250164031982,239.076416015625,-80.6649017333984,-2.41813206672668,247.564254760742,-59.7826538085938,10.6366367340088,238.82341003418,-78.0318374633789,-0.387190014123917,242.233749389648,-56.7021522521973,-3.97599506378174,246.799179077148,-55.0179862976074,11.4554176330566,238.406356811523,-81.1398468017578,-2.47695803642273,244.741989135742,-54.6908569335938,-6.59802198410034,246.814178466797,-56.6032409667969,-7.73328304290771,245.812088012695,-51.0434989929199,-4.46814298629761,243.034820556641,-51.1620101928711,-10.7702598571777,244.81999206543,-54.5537414550781,-6.91080188751221,243.377853393555,-47.5427551269531,-11.954776763916,244.52294921875,-49.0743064880371,-8.8552827835083,245.329040527344,-47.446346282959,-10.0891942977905,243.322845458984,-44.6086692810059,-14.4116172790527,243.230834960938,-44.8492889404297,-18.3356018066406,240.887603759766,-46.0124053955078,-12.5415344238281,241.784698486328,-40.7433891296387,-16.3848114013672,241.571670532227,-40.8322982788086,-21.147777557373,238.665390014648,-42.6885795593262,-18.3754062652588,238.663391113281,-36.3863639831543,-24.3193874359131,236.667190551758,-37.5471725463867,-21.757137298584,237.428268432617,-34.3034553527832,-19.2380905151367,234.817016601563,-31.9741306304932,-23.8844451904297,235.460067749023,-31.1834526062012,-28.9673442840576,233.590881347656,-32.460376739502,-21.1735801696777,230.179550170898,-29.6410007476807,-21.3553981781006,234.042938232422,-29.8529224395752,-26.957447052002,233.188858032227,-28.2446632385254,-23.6304206848145,233.290863037109,-28.6145992279053,-31.0569496154785,231.624694824219,-28.0342426300049,-27.5592060089111,229.80451965332,-25.1327590942383,-24.6082153320313,229.815521240234,-27.046745300293,\r\n-34.3634719848633,229.584487915039,-25.3112754821777,-31.0241451263428,229.087448120117,-22.9890480041504,-25.4524993896484,225.802124023438,-25.7612209320068,-28.0429534912109,224.654022216797,-23.2658748626709,-36.0058326721191,227.085250854492,-20.7921333312988,-31.5872001647949,225.118057250977,-20.2637825012207,-30.3940849304199,220.084564208984,-21.3489894866943,-39.9315185546875,223.986938476563,-17.7713375091553,-34.1788558959961,224.375991821289,-18.2575855255127,-32.747314453125,220.289596557617,-18.7345314025879,-36.6851005554199,224.203979492188,-17.1348743438721,-42.2169456481934,220.686614990234,-14.6495323181152,-38.3221588134766,220.452606201172,-14.7548418045044,-35.1784553527832,220.328598022461,-16.438606262207,-35.0149345397949,215.071075439453,-17.2562885284424,-43.8194999694824,218.513412475586,-12.0289745330811,-40.7049942016602,215.919158935547,-11.9210643768311,-37.3426628112793,215.268081665039,-14.3894071578979,-46.1401252746582,217.714324951172,-11.2070951461792,-43.7173881530762,215.066070556641,-9.70028686523438,-46.7007827758789,214.772048950195,-8.84861278533936,-42.3344535827637,210.361618041992,-10.1049861907959,-49.5721626281738,213.970962524414,-8.14754486083984,-44.4643630981445,211.230712890625,-8.32963275909424,-44.966911315918,206.091186523438,-8.52874183654785,-46.9898109436035,210.613647460938,-7.03219509124756,-50.0546112060547,210.340621948242,-5.62107706069946,-47.7958908081055,205.696151733398,-5.63038778305054,-52.7875785827637,209.441528320313,-4.32621002197266,-49.8952941894531,200.807678222656,-4.05965423583984,-50.7328758239746,205.754150390625,-2.96743702888489,-54.4083366394043,206.311218261719,-1.68477094173431,-53.1533126831055,201.445739746094,-0.711372017860413,-56.8413734436035,204.115005493164,0.468847006559372,-54.9330863952637,196.138229370117,0.183667004108429,-61.5574378967285,203.270919799805,1.40917205810547,-56.8689804077148,200.728668212891,1.76275599002838,-57.383129119873,196.163223266602,2.83763194084167,-59.5817413330078,200.020614624023,3.47671389579773,\r\n-65.3999176025391,200.151611328125,3.94174003601074,-59.5297393798828,191.172744750977,4.33546876907349,-62.4165191650391,199.944595336914,4.39648485183716,-60.4523277282715,196.154220581055,5.26068878173828,-66.344108581543,195.938201904297,7.03246307373047,-63.5350303649902,196.860290527344,6.22734403610229,-63.1952972412109,191.79280090332,7.57680606842041,-62.4836273193359,186.279251098633,6.12425422668457,-69.6108245849609,194.705078125,8.31865882873535,-67.8500518798828,191.464767456055,10.0316867828369,-66.3194046020508,186.375259399414,10.1077938079834,-72.0422592163086,191.342758178711,10.7070531845093,-69.9316558837891,187.210342407227,12.1720972061157,-69.7284393310547,182.115859985352,12.7976579666138,-72.7414321899414,186.46826171875,13.2042980194092,-75.5248031616211,185.711196899414,14.3122062683105,-73.3881988525391,181.569793701172,15.0492792129517,-75.8308334350586,177.233367919922,16.711841583252,-77.6277084350586,181.4677734375,16.538122177124,-79.2629699707031,176.751312255859,18.2690944671631,-84.5750885009766,176.111251831055,20.1088733673096,-81.4452819824219,172.14387512207,20.0898723602295,-85.6553955078125,172.028854370117,21.6562252044678,-83.2438583374023,167.059371948242,21.6880283355713,-90.2000503540039,171.577819824219,22.7169303894043,-85.7475051879883,162.97297668457,23.4579029083252,-87.7659072875977,167.101379394531,23.6804256439209,-92.0571212768555,167.324401855469,24.7428283691406,-89.1802444458008,162.44091796875,25.5139045715332,-95.3222427368164,167.331405639648,25.2347755432129,-92.1650390625,162.466918945313,26.7917308807373,-98.6400680541992,166.864364624023,25.7775287628174,-95.2021331787109,162.519927978516,27.647611618042,-94.2876434326172,157.840469360352,29.2671718597412,-98.4441452026367,162.430908203125,28.4214878082275,-101.857482910156,163.005981445313,28.4844932556152,-98.3789520263672,157.884475708008,30.7694187164307,-102.495544433594,157.737457275391,31.833122253418,-105.68985748291,153.143005371094,34.746711730957,-101.679466247559,153.268020629883,33.7542114257813,\r\n117.967056274414,-240.867599487305,101.301933288574,114.37370300293,-241.232635498047,108.681655883789,134.864715576172,-231.279663085938,99.8454818725586,117.254981994629,-240.045532226563,112.367012023926,121.380386352539,-237.687286376953,112.543037414551,132.771499633789,-231.15364074707,104.890281677246,99.7971725463867,-242.439758300781,110.929878234863,84.8188018798828,-235.369064331055,98.3937454223633,46.8141822814941,-227.399276733398,120.237785339355,110.486320495605,-241.657684326172,119.723739624023,126.480888366699,-234.758010864258,109.402725219727,107.376014709473,-242.003707885742,119.445709228516,80.4972839355469,-230.730606079102,99.8960952758789,93.2341384887695,-241.095626831055,99.7309799194336,89.9048080444336,-239.314453125,99.3482360839844,58.9210662841797,-227.164260864258,116.672439575195,56.3358154296875,-227.115264892578,117.586524963379,115.961853027344,-239.018417358398,125.243278503418,112.647537231445,-240.761596679688,123.934150695801,92.4115524291992,-242.695785522461,130.595794677734,96.7846755981445,-242.338745117188,109.965774536133,96.3017349243164,-241.950714111328,101.638961791992,84.0974349975586,-232.700790405273,102.220024108887,67.7594299316406,-227.002243041992,114.544227600098,105.896873474121,-241.47966003418,131.032836914063,118.43709564209,-236.665191650391,128.871627807617,91.7292785644531,-242.513763427734,122.241981506348,100.181312561035,-241.802703857422,135.994338989258,75.1143569946289,-228.088348388672,101.725975036621,89.695686340332,-238.194351196289,102.925086975098,92.3464431762695,-240.242538452148,104.563247680664,79.350471496582,-229.100448608398,103.207122802734,70.7968292236328,-226.94123840332,113.05207824707,113.675636291504,-238.840408325195,130.984848022461,109.489219665527,-240.383560180664,131.732925415039,82.7977066040039,-242.954803466797,132.422988891602,95.1831283569336,-242.200729370117,135.996337890625,88.914306640625,-242.113723754883,119.192687988281,93.4292526245117,-241.609680175781,109.709754943848,72.6068115234375,-227.348281860352,106.964485168457,\r\n82.8302154541016,-230.920623779297,106.210411071777,103.86767578125,-241.027618408203,136.879425048828,107.763053894043,-239.761505126953,136.623397827148,116.173881530762,-235.943115234375,134.515182495117,89.1084213256836,-242.819793701172,135.144241333008,97.6114654541016,-240.832611083984,141.283843994141,76.0999450683594,-227.714309692383,106.706466674805,88.3738555908203,-237.275253295898,106.997489929199,90.2375335693359,-239.953506469727,109.576736450195,84.8127059936523,-233.618881225586,108.747665405273,78.5736923217773,-228.011337280273,109.61474609375,73.8942337036133,-227.414276123047,111.69295501709,112.089477539063,-237.949310302734,135.722305297852,102.504539489746,-239.807495117188,141.273849487305,83.2431488037109,-242.698791503906,139.837707519531,79.4082794189453,-242.698791503906,128.546600341797,88.9604187011719,-242.261749267578,140.712783813477,87.2379455566406,-240.961608886719,115.754348754883,81.6322937011719,-227.991333007813,108.428634643555,107.823059082031,-238.067337036133,140.342758178711,76.3000717163086,-242.780792236328,138.661590576172,76.6889114379883,-242.813781738281,132.613998413086,78.1722564697266,-241.573669433594,123.420097351074,100.656356811523,-237.740295410156,144.93620300293,92.1324234008789,-240.334548950195,144.95719909668,85.7179946899414,-237.851303100586,112.94807434082,82.1843490600586,-236.669189453125,116.98747253418,104.866767883301,-236.035125732422,144.247146606445,86.4610595703125,-241.165634155273,145.048217773438,79.4430770874023,-242.144729614258,144.454162597656,96.6523590087891,-239.015426635742,145.234237670898,82.9487228393555,-241.744674682617,144.835205078125,71.796630859375,-242.538772583008,143.066024780273,73.2712707519531,-242.687789916992,131.163864135742,97.6251602172852,-235.577087402344,147.315444946289,89.6949844360352,-237.561279296875,148.028503417969,84.6170883178711,-238.942428588867,148.510559082031,75.8349227905273,-240.977615356445,148.026504516602,69.8426361083984,-242.801788330078,137.108444213867,80.8526153564453,-240.038528442383,148.721588134766,\r\n74.9213333129883,-242.342742919922,124.904243469238,71.1150588989258,-241.493667602539,147.794494628906,63.8715553283691,-242.815795898438,141.756896972656,62.8015480041504,-242.697784423828,135.677307128906,67.7941436767578,-241.954711914063,126.456390380859,81.7839050292969,-236.307159423828,150.481750488281,77.5357971191406,-237.363250732422,150.77278137207,73.1967697143555,-238.157333374023,151.076812744141,67.745231628418,-241.886703491211,147.436447143555,64.5601196289063,-241.902694702148,127.989547729492,69.4968109130859,-239.15544128418,151.151809692383,57.5621376037598,-242.815795898438,140.335754394531,64.2649917602539,-242.079727172852,147.03141784668,59.7615509033203,-242.110733032227,130.564804077148,65.7804412841797,-240.00651550293,151.217834472656,55.439826965332,-242.19873046875,131.989929199219,58.3648147583008,-242.452758789063,146.194320678711,49.1312103271484,-242.652770996094,139.262649536133,54.0765914916992,-242.698791503906,145.342254638672,61.5290222167969,-240.886611938477,150.774780273438,62.3082008361816,-238.421356201172,153.18701171875,45.789379119873,-241.924713134766,134.366165161133,55.9527778625488,-241.488662719727,150.632766723633,49.0106964111328,-242.739791870117,144.419158935547,43.6492691040039,-241.911712646484,135.199249267578,52.424633026123,-242.019714355469,150.139724731445,58.0549812316895,-238.536376953125,153.774078369141,42.7042808532715,-242.756790161133,143.040023803711,54.052490234375,-239.551467895508,154.027099609375,46.4790496826172,-242.400756835938,149.574661254883,35.7171974182129,-242.381759643555,141.956909179688,50.7960739135742,-240.762588500977,153.643051147461,40.1141242980957,-242.749786376953,148.527557373047,33.894718170166,-241.81770324707,137.665496826172,47.5971603393555,-240.948608398438,154.094100952148,41.8572959899902,-241.751693725586,153.957092285156,34.2952537536621,-242.722793579102,146.711380004883,31.6495952606201,-241.916717529297,138.384567260742,35.115234375,-242.404754638672,152.810974121094,45.7421760559082,-239.298446655273,157.124404907227,\r\n36.7501945495605,-240.909606933594,157.230407714844,28.5568923950195,-242.712783813477,145.896286010742,30.1902523040771,-242.714782714844,151.922882080078,42.0884170532227,-239.761505126953,157.665451049805,32.0750389099121,-241.482666015625,157.161407470703,19.8732414245605,-241.889694213867,141.706893920898,25.0603485107422,-242.667770385742,151.121810913086,21.8392353057861,-241.754699707031,140.968826293945,28.5912971496582,-241.926712036133,156.671356201172,16.1929817199707,-242.462753295898,149.219635009766,22.9434432983398,-242.265747070313,155.832275390625,10.0584812164307,-241.917709350586,144.285140991211,24.9351387023926,-240.779586791992,160.260711669922,16.2131843566895,-242.446762084961,154.634170532227,7.80984020233154,-242.086730957031,145.087219238281,20.2881813049316,-241.300643920898,160.148696899414,3.55295300483704,-242.549774169922,152.048904418945,-33.5395927429199,-242.625778198242,144.221145629883,-36.6583976745605,-242.605773925781,143.562057495117,11.0762796401978,-242.155731201172,158.842575073242,16.830545425415,-241.696685791016,159.658645629883,-1.77737998962402,-242.263748168945,147.520462036133,4.20514678955078,-242.492752075195,157.388427734375,-4.86026096343994,-242.176727294922,148.584564208984,-30.5256958007813,-242.528778076172,144.365158081055,-3.85951399803162,-242.491760253906,155.479232788086,8.38010597229004,-241.333648681641,163.221008300781,13.0201711654663,-240.818603515625,163.32600402832,-27.3009815216064,-242.134719848633,144.746185302734,-1.81145298480988,-242.266738891602,161.593841552734,2.34241390228271,-242.007705688477,162.567947387695,-11.3686189651489,-242.161727905273,148.302536010742,-25.6743202209473,-242.124725341797,151.627853393555,-6.78473997116089,-242.501754760742,160.740753173828,4.44369983673096,-240.447555541992,166.736343383789,-23.5948162078857,-241.847702026367,145.276229858398,-0.470272988080978,-241.308654785156,166.542327880859,-15.5898332595825,-242.179733276367,163.184997558594,-20.2070846557617,-241.925704956055,146.08332824707,-21.0423679351807,-242.304748535156,161.896865844727,\r\n-7.56033611297607,-242.110733032227,165.652236938477,-13.6422424316406,-242.195724487305,147.762481689453,-4.67672395706177,-240.247543334961,170.401702880859,-1.39623200893402,-239.817504882813,169.955657958984,-17.0500755310059,-242.128723144531,146.977401733398,-12.9414739608765,-241.214630126953,169.671630859375,-8.36440467834473,-240.993621826172,170.195678710938,-6.5091028213501,-238.389358520508,173.497009277344,-10.3051156997681,-239.461471557617,173.701019287109,-9.7088565826416,-236.532180786133,175.72721862793,30.8488178253174,-242.648773193359,-73.0413513183594,25.0987548828125,-242.251739501953,-73.7621231079102,38.1767387390137,-242.371765136719,-72.1796722412109,24.3398780822754,-245.157012939453,-69.4230041503906,38.416561126709,-244.921005249023,-67.280387878418,20.0184555053711,-244.247940063477,-71.5057983398438,51.4107322692871,-242.167724609375,-70.6557235717773,44.8330879211426,-242.182723999023,-71.3593902587891,29.177453994751,-245.31103515625,-63.506519317627,22.1026592254639,-245.54606628418,-64.7905426025391,44.6497688293457,-245.063018798828,-60.5396270751953,37.2105407714844,-245.399047851563,-61.7219467163086,52.4607353210449,-244.590972900391,-65.2385864257813,17.9824562072754,-245.540069580078,-65.4473114013672,16.0435657501221,-245.295028686523,-70.8339385986328,12.8528537750244,-245.15901184082,-72.161865234375,58.2961044311523,-241.21662902832,-70.8358383178711,55.1665992736816,-242.739791870117,-69.3257827758789,28.3320713043213,-244.66796875,-57.8437652587891,12.3273029327393,-245.022018432617,-60.8041534423828,45.9328956604004,-244.330947875977,-54.6511535644531,35.9407157897949,-244.724990844727,-56.3207168579102,56.9498748779297,-244.354934692383,-64.9781646728516,56.3916206359863,-245,-58.0932884216309,12.5644254684448,-245.715072631836,-66.2671890258789,9.99891376495361,-245.506057739258,-71.9008483886719,6.79820108413696,-245.229034423828,-73.2839736938477,61.4392127990723,-242.490753173828,-68.5898208618164,35.9983215332031,-243.048812866211,-51.8766822814941,26.5753974914551,-243.0908203125,-53.5357398986816,\r\n15.4516077041626,-243.193832397461,-55.6140480041504,8.89142608642578,-243.471862792969,-56.6716499328613,0.84364902973175,-243.537872314453,-58.1435966491699,5.08377313613892,-245.782073974609,-67.7709350585938,1.65289700031281,-245.192031860352,-62.653434753418,56.5769386291504,-244.411956787109,-52.5691452026367,51.5007400512695,-242.666778564453,-48.994800567627,59.803955078125,-244.716979980469,-62.9157600402832,66.2872848510742,-244.775985717773,-56.658748626709,1.1314560174942,-245.629058837891,-73.299072265625,66.0104675292969,-241.944717407227,-68.0903701782227,65.0831756591797,-244.489959716797,-62.30419921875,36.3208541870117,-239.932510375977,-48.6688652038574,30.2690601348877,-240.098526000977,-49.6249618530273,12.333402633667,-240.219543457031,-52.8615760803223,6.02187490463257,-240.548568725586,-53.9296798706055,-5.59673404693604,-245.71208190918,-63.758544921875,-5.44460916519165,-240.78759765625,-56.1570014953613,-10.5162363052368,-244.004913330078,-60.1013870239258,-2.1270740032196,-246.19612121582,-68.886344909668,67.3795928955078,-244.237945556641,-50.8459777832031,64.8643493652344,-242.485763549805,-46.5722579956055,59.720344543457,-239.253448486328,-44.5889625549316,48.1428146362305,-239.659484863281,-46.563159942627,71.8576354980469,-244.80598449707,-55.9661827087402,69.9502487182617,-243.783889770508,-62.8932571411133,40.1976356506348,-232.155746459961,-43.095817565918,35.6312866210938,-232.217758178711,-43.9843063354492,27.0037403106689,-236.639190673828,-48.1540145874023,25.5365962982178,-232.352767944336,-45.6229667663574,9.22307777404785,-236.377166748047,-51.1133041381836,2.2230920791626,-232.94482421875,-49.9051856994629,-10.6598491668701,-237.404266357422,-54.9311790466309,-23.1680755615234,-241.411651611328,-58.7645568847656,-12.2903099060059,-245.713073730469,-64.9871673583984,-24.4554004669189,-244.291946411133,-62.2395973205566,-8.62425136566162,-246.491149902344,-69.8438415527344,75.2674713134766,-244.402954101563,-49.073902130127,72.5416030883789,-242.922805786133,-44.2326278686523,\r\n64.4670104980469,-239.651489257813,-43.5495643615723,58.8781623840332,-235.124038696289,-42.464656829834,50.6582565307617,-235.168045043945,-43.8988990783691,78.1958541870117,-244.446960449219,-54.9872856140137,73.7964248657227,-244.553970336914,-60.3422088623047,48.3840370178223,-231.392669677734,-41.6631774902344,34.118335723877,-229.432479858398,-40.7278861999512,42.4144515991211,-229.32746887207,-39.1603355407715,9.4741325378418,-232.486785888672,-48.5660552978516,20.3371887207031,-229.919540405273,-42.9946098327637,2.18870902061462,-230.3095703125,-46.1631202697754,-5.48111200332642,-232.99983215332,-51.2025108337402,-16.5398273468018,-233.401870727539,-53.1853065490723,-24.6924266815186,-233.513885498047,-54.114200592041,-31.0828514099121,-242.428756713867,-59.8240585327148,-31.2663707733154,-234.442977905273,-54.8179664611816,-32.0708503723145,-238.569381713867,-57.0814895629883,-26.030855178833,-245.82209777832,-67.2370910644531,-29.3715839385986,-244.887008666992,-63.2682952880859,-13.7928562164307,-246.330139160156,-70.8466415405273,-21.7455348968506,-246.440155029297,-72.4611968994141,80.8224105834961,-244.274948120117,-47.7509765625,79.4750823974609,-243.435852050781,-42.6576766967773,75.1372604370117,-240.434555053711,-40.1116256713867,72.1028594970703,-236.395156860352,-38.3720588684082,66.4621124267578,-232.326766967773,-37.3436546325684,57.2943115234375,-231.569686889648,-40.1798324584961,82.0988388061523,-243.903900146484,-59.098388671875,84.9119186401367,-244.149932861328,-53.3057174682617,56.6877479553223,-229.22346496582,-36.4960746765137,46.6652679443359,-228.945434570313,-38.1660346984863,43.3967475891113,-228.327362060547,-33.8610153198242,32.9349212646484,-228.384384155273,-35.8433113098145,20.0881633758545,-228.874435424805,-37.8484039306641,9.72058773040771,-229.969543457031,-44.9665031433105,10.7687501907349,-228.923431396484,-39.7356910705566,2.43998408317566,-229.307479858398,-40.9553108215332,-4.33277988433838,-230.342575073242,-47.3850402832031,-4.39748620986938,-229.34147644043,-42.3330421447754,\r\n-14.1123886108398,-230.671600341797,-49.132209777832,-22.6933288574219,-230.707611083984,-50.2749214172363,-27.9888477325439,-231.109649658203,-51.5430450439453,-39.0256271362305,-235.858123779297,-55.3726196289063,-34.8412208557129,-231.647705078125,-52.2458152770996,-38.1242408752441,-239.715484619141,-57.8967704772949,-37.2925605773926,-244.953994750977,-64.4112091064453,-38.5448837280273,-242.775787353516,-60.626335144043,-32.3218727111816,-246.125122070313,-68.3721923828125,-27.4479942321777,-246.453155517578,-73.3307800292969,88.0202255249023,-244.154922485352,-45.4925575256348,85.6265869140625,-243.843902587891,-40.8142967224121,83.3992691040039,-242.230743408203,-36.9501152038574,78.7503128051758,-240.795593261719,-38.6407852172852,73.9105377197266,-233.577880859375,-35.3599586486816,72.0353546142578,-233.483871459961,-36.0660285949707,67.9773559570313,-230.266571044922,-33.4238739013672,59.8832626342773,-228.274368286133,-30.2717628479004,50.129508972168,-228.083358764648,-32.7198028564453,41.3184432983398,-228.358383178711,-27.592601776123,23.5271015167236,-228.716415405273,-31.5111846923828,8.02417087554932,-228.931427001953,-34.7611045837402,-3.9873960018158,-229.297470092773,-35.7761001586914,-12.0951910018921,-229.664505004883,-43.7253799438477,-24.3749923706055,-229.714508056641,-46.2238235473633,-31.2733707427979,-229.787521362305,-47.2062225341797,-42.8973083496094,-232.975830078125,-52.430835723877,-37.1090393066406,-229.976531982422,-48.2707252502441,-44.5756721496582,-240.080535888672,-57.3495140075684,-42.4729652404785,-245.243026733398,-65.127685546875,-46.085521697998,-243.601867675781,-61.3705101013184,-39.4654731750488,-246.082107543945,-69.6905212402344,-33.9056282043457,-246.552154541016,-74.1319580078125,81.5086822509766,-239.795501708984,-35.019229888916,77.4887847900391,-234.81201171875,-33.7350044250488,75.7984237670898,-231.979736328125,-30.4294776916504,73.0763549804688,-230.102554321289,-27.4138813018799,68.8810501098633,-229.148468017578,-27.4064826965332,60.238597869873,-227.878326416016,-24.2142696380615,\r\n57.8374633789063,-227.836318969727,-20.0957641601563,42.9149971008301,-228.752410888672,-9.15956401824951,33.1085395812988,-228.756408691406,-19.7791347503662,24.7019157409668,-229.631500244141,1.32465302944183,17.640022277832,-229.738510131836,-0.442036002874374,11.657036781311,-229.685501098633,-9.02176952362061,3.81046795845032,-229.586486816406,-13.7345418930054,-4.27210378646851,-229.584487915039,-26.0731525421143,-10.1554012298584,-229.567489624023,-36.2528495788574,-28.0714550018311,-229.658508300781,-41.0272178649902,-37.0566368103027,-229.494491577148,-42.3836517333984,-41.6313858032227,-229.689514160156,-43.6340713500977,-44.6056785583496,-230.728607177734,-48.442943572998,-49.8108863830566,-235.760101318359,-52.1936111450195,-48.6376686096191,-231.851715087891,-48.7903747558594,-50.0850143432617,-241.687683105469,-58.012279510498,-48.6337699890137,-238.406356811523,-54.8860740661621,-51.1440162658691,-245.729080200195,-66.296989440918,-50.300235748291,-244.088928222656,-61.5046234130859,-44.9193077087402,-246.095108032227,-70.895149230957,-38.2699546813965,-246.566162109375,-75.4272918701172,71.2682723999023,-229.142456054688,-22.7477264404297,62.5742263793945,-228.099349975586,-15.4243078231812,54.7073554992676,-228.225372314453,-10.4519195556641,43.3050384521484,-229.48649597168,12.2184009552002,35.2929534912109,-229.729507446289,10.720853805542,32.504581451416,-229.142456054688,-2.32457399368286,19.1587715148926,-230.086547851563,11.7788581848145,12.423412322998,-230.421585083008,13.4782247543335,6.58388996124268,-230.479583740234,2.30230903625488,-1.40036296844482,-230.327560424805,-2.6372549533844,-17.417911529541,-230.818618774414,-3.25939607620239,-29.6649112701416,-230.660598754883,-20.2717838287354,-41.1548385620117,-230.461578369141,-26.0370483398438,-44.4237594604492,-229.781524658203,-38.4758644104004,-47.2923393249512,-230.043533325195,-44.317138671875,-53.2943267822266,-233.925918579102,-48.2874298095703,-51.0045013427734,-230.763610839844,-44.3951454162598,-55.286922454834,-240.806594848633,-54.1430015563965,\r\n-53.8954887390137,-244.794982910156,-61.7377471923828,-55.2687225341797,-243.103820800781,-57.4270248413086,-51.9968032836914,-246.221130371094,-72.0326538085938,-56.1518096923828,-246.005111694336,-67.1024703979492,-0.606218993663788,-230.719619750977,9.58143329620361,2.86292505264282,-230.612594604492,18.7034358978271,-6.16707992553711,-230.679595947266,7.26676607131958,-14.8594617843628,-230.932632446289,8.24759101867676,-27.7061195373535,-230.942626953125,-7.13168478012085,-31.8829288482666,-230.870635986328,5.84870719909668,-38.9291191101074,-230.856628417969,-15.4144067764282,-49.4851531982422,-229.822525024414,-38.5394744873047,-52.7765769958496,-230.223556518555,-39.3505516052246,-57.4997406005859,-245.379043579102,-62.0444755554199,-11.9206733703613,-231.086639404297,28.424488067627,-19.1563816070557,-231.408676147461,31.1047515869141,-23.9299507141113,-230.875625610352,11.575138092041,-34.7909164428711,-231.85871887207,32.1753578186035,-41.4105644226074,-230.961624145508,3.77417397499084,-38.8457107543945,-231.658706665039,22.1750755310059,-45.2759399414063,-231.285659790039,11.7308530807495,-41.2267456054688,-231.53369140625,18.5414218902588,-47.373046875,-231.045639038086,8.21206760406494,-48.7092781066895,-231.057647705078,5.98262977600098,-37.2279510498047,-231.732711791992,23.7931346893311,-43.0802268981934,-231.469680786133,15.9044618606567,100.093307495117,-238.770385742188,17.1322822570801,102.595550537109,-241.737686157227,14.3341083526611,103.05859375,-237.96630859375,17.0638751983643,98.9126815795898,-242.516754150391,14.3106060028076,106.387916564941,-241.038619995117,15.1446876525879,95.5800628662109,-240.115524291992,17.2002906799316,102.099494934082,-243.750885009766,9.9924430847168,105.379821777344,-237.953308105469,17.1261825561523,94.3896408081055,-243.301834106445,13.9449701309204,97.0452117919922,-244.185928344727,9.59140396118164,109.120193481445,-238.656387329102,18.7264385223389,108.054084777832,-243.221832275391,10.9314746856689,90.6482772827148,-240.861602783203,17.2458934783936,\r\n98.5659561157227,-244.216918945313,4.30267477035522,110.989372253418,-242.057708740234,15.7165441513062,104.245712280273,-244.072906494141,4.55488014221191,85.5367813110352,-244.412963867188,7.25438404083252,86.2849502563477,-243.374847412109,12.856463432312,112.543525695801,-238.757385253906,21.7965393066406,113.487617492676,-243.355850219727,12.0029802322388,110.162292480469,-243.430847167969,5.53097581863403,87.6197814941406,-239.969512939453,18.0057678222656,86.3165588378906,-244.306945800781,0.857819974422455,100.814376831055,-243.486862182617,-9.43072032928467,115.262786865234,-242.601776123047,17.7077388763428,110.988372802734,-242.434753417969,-6.43667697906494,82.472770690918,-243.848892211914,12.4496231079102,84.3463592529297,-242.055709838867,16.3785076141357,96.9170913696289,-243.836898803711,-2.75220608711243,81.1779556274414,-244.315948486328,6.3179030418396,104.224708557129,-243.084823608398,-11.1923933029175,115.805839538574,-240.944610595703,21.9438533782959,119.589210510254,-243.405853271484,13.2073984146118,116.457908630371,-243.082824707031,6.09712076187134,115.511817932129,-241.938705444336,-6.55808877944946,85.157844543457,-238.864410400391,19.2935943603516,88.5400695800781,-243.814895629883,-8.02931308746338,80.806510925293,-243.84489440918,-0.998763978481293,102.68155670166,-242.968811035156,-28.9404315948486,118.688125610352,-242.975799560547,19.1358795166016,114.848747253418,-238.184341430664,24.1151676177979,106.750953674316,-242.243743896484,-19.0504627227783,114.32169342041,-241.371658325195,-13.9097604751587,78.984130859375,-244.319946289063,12.0452842712402,80.7636032104492,-242.901809692383,17.3150005340576,75.7040100097656,-244.203918457031,5.20319414138794,95.4431457519531,-243.621887207031,-18.3831977844238,95.3668441772461,-243.797897338867,-28.3836765289307,119.914245605469,-241.833694458008,23.8387393951416,122.307479858398,-243.354843139648,19.5575199127197,120.371292114258,-242.796783447266,6.55298614501953,119.711227416992,-241.607681274414,0.128112003207207,110.053283691406,-241.777694702148,-23.3652877807617,\r\n118.092071533203,-239.315460205078,-10.14089012146,78.3264694213867,-241.875701904297,21.8184413909912,85.3203582763672,-243.344848632813,-11.3898134231567,76.7310180664063,-243.627883911133,-0.0173690002411604,91.9043960571289,-243.546859741211,-19.1937770843506,124.622711181641,-243.108825683594,13.5456314086914,123.400588989258,-242.636779785156,7.80642890930176,118.33309173584,-240.993621826172,-5.72744798660278,111.868461608887,-241.422653198242,-27.8857288360596,74.3085708618164,-244.493957519531,11.2804088592529,76.5960998535156,-244.092926025391,17.2077903747559,78.5271911621094,-238.626373291016,23.3968963623047,79.9893264770508,-243.023818969727,-6.70526313781738,71.9526443481445,-243.360855102539,3.30746793746948,93.4000473022461,-244.022903442383,-37.9236106872559,107.937072753906,-242.304748535156,-32.8380165100098,123.819625854492,-240.354553222656,1.87065696716309,121.871437072754,-238.75439453125,-1.79474198818207,69.4361038208008,-244.074905395508,10.0204162597656,74.9027328491211,-243.231826782227,21.4796085357666,74.7748184204102,-240.56657409668,26.5492057800293,88.7630920410156,-242.943801879883,-20.3414897918701,82.6795959472656,-242.110733032227,-13.6632356643677,74.8195266723633,-242.304748535156,-2.98926901817322,91.3631439208984,-243.5888671875,-27.9129314422607,126.82592010498,-241.279632568359,6.75627613067627,122.602508544922,-236.442169189453,-4.01115989685059,69.8451385498047,-244.32194519043,16.2343940734863,71.6671142578125,-243.580871582031,21.6989307403564,77.8624267578125,-240.792587280273,-9.63959121704102,66.867546081543,-242.5927734375,7.71811008453369,69.9008483886719,-241.144638061523,1.04081594944,89.5405654907227,-244.068908691406,-40.3419494628906,90.2185363769531,-243.702880859375,-33.9376220703125,65.3733062744141,-244.319946289063,18.7320384979248,85.2487487792969,-241.598678588867,-19.5685157775879,87.6745834350586,-242.086730957031,-25.7725219726563,80.8192138671875,-239.400451660156,-16.2667903900146,64.2440872192383,-243.37385559082,13.8642616271973,73.0363540649414,-238.938400268555,-5.79786396026611,\r\n65.4916076660156,-244.512954711914,27.8356304168701,69.448600769043,-243.861892700195,27.3536834716797,76.7075119018555,-236.702194213867,-13.4179105758667,60.8626556396484,-240.608581542969,13.117488861084,65.3630065917969,-239.226440429688,4.60008382797241,87.0844345092773,-243.050811767578,-35.5295791625977,85.8984069824219,-241.183639526367,-30.607795715332,60.861255645752,-244.139923095703,31.1992607116699,61.1360855102539,-243.585861206055,21.1166725158691,71.2820816040039,-243.700881958008,32.1821594238281,83.216552734375,-239.101440429688,-22.1402645111084,79.4664840698242,-235.658081054688,-19.8556423187256,59.5785293579102,-241.821701049805,17.6444320678711,64.6597366333008,-234.545974731445,0.152198001742363,69.8806457519531,-232.355758666992,-9.09256839752197,84.69189453125,-239.8125,-26.1270561218262,61.2558975219727,-244.14892578125,41.119930267334,67.5920181274414,-244.381942749023,38.3928642272949,75.6606140136719,-232.511779785156,-17.4213027954102,54.4340286254883,-239.396453857422,22.9248504638672,58.0968856811523,-234.178955078125,8.72598934173584,83.738899230957,-239.723495483398,-32.0819396972656,79.3232727050781,-233.946914672852,-27.2667694091797,57.1753997802734,-243.269836425781,40.140438079834,56.553337097168,-242.989807128906,33.8870277404785,56.300910949707,-241.903701782227,25.2792816162109,69.9082489013672,-246.212127685547,41.4315643310547,77.8203277587891,-232.573791503906,-22.9026412963867,54.2702140808105,-235.361053466797,16.6919384002686,63.2992973327637,-230.931625366211,-3.07372689247131,60.1738929748535,-232.636795043945,3.65078210830688,71.2724761962891,-230.486587524414,-13.9635648727417,58.0967864990234,-243.464859008789,46.7864875793457,66.2341842651367,-244.609970092773,44.3745536804199,73.7074203491211,-230.069549560547,-19.9336490631104,50.505443572998,-238.481369018555,33.065544128418,50.9987907409668,-236.249145507813,25.1248664855957,52.6895561218262,-231.90771484375,13.5890350341797,66.3148956298828,-229.581497192383,-9.65372276306152,55.4700317382813,-231.075637817383,7.39182806015015,\r\n75.4563903808594,-230.789611816406,-24.8652324676514,55.0332870483398,-242.290740966797,46.5203628540039,60.5922355651855,-243.918899536133,52.05810546875,53.0897979736328,-241.291656494141,42.9562149047852,68.4702987670898,-244.797988891602,52.3318290710449,52.5442428588867,-240.763595581055,35.7058029174805,71.3241806030273,-245.849090576172,48.1309204101563,48.9547882080078,-232.626800537109,22.2949886322021,58.2534027099609,-230.109558105469,1.21198296546936,60.8958625793457,-229.082443237305,-5.66507196426392,67.3062896728516,-228.726409912109,-15.1270780563354,53.4394340515137,-241.175628662109,51.0027008056641,56.1100921630859,-242.448760986328,52.5725555419922,47.2675247192383,-235.701095581055,40.5792808532715,46.8752861022949,-234.677001953125,34.7742118835449,45.7960815429688,-232.555786132813,30.537296295166,49.5547523498535,-230.066543579102,13.1039876937866,54.9609794616699,-229.252456665039,1.53390395641327,51.0134925842285,-239.423461914063,49.1048126220703,58.7730560302734,-243.0078125,57.8685722351074,50.0023956298828,-238.632385253906,44.2940444946289,72.7060241699219,-245.063018798828,51.5424537658691,44.5171585083008,-230.728607177734,26.2918796539307,51.5058403015137,-239.154434204102,54.1686096191406,62.6650352478027,-243.483871459961,61.3059120178223,55.9316749572754,-241.609680175781,58.4581336975098,43.8764953613281,-232.457778930664,43.6696853637695,43.4681549072266,-231.915725708008,36.6214942932129,41.8652954101563,-230.6416015625,32.5119895935059,44.868091583252,-229.705505371094,17.2220916748047,50.3607292175293,-228.973434448242,3.27032399177551,56.1392936706543,-240.416564941406,62.4471206665039,40.3156471252441,-229.988540649414,27.2096710205078,52.9211807250977,-238.64338684082,59.9306755065918,40.6230773925781,-230.820617675781,44.8602981567383,39.7854919433594,-230.522583007813,38.5520820617676,37.8644065856934,-230.28157043457,34.937126159668,55.1608009338379,-237.96630859375,65.8746566772461,29.7531108856201,-230.067535400391,23.8873443603516,7.82876205444336,-230.859634399414,33.7949142456055,\r\n0.959864020347595,-231.118637084961,36.5546875,-5.44054794311523,-231.465667724609,47.7102813720703,-7.76009607315063,-231.448669433594,67.9563674926758,-14.1291904449463,-231.461669921875,44.4336547851563,-15.6956434249878,-231.830718994141,66.8477554321289,-18.2058887481689,-231.691711425781,48.5901641845703,-22.9376525878906,-231.832717895508,74.3883895874023,-25.6054134368896,-232.198745727539,44.2750396728516,-32.4414825439453,-231.668701171875,88.5326766967773,-24.1437702178955,-231.940734863281,58.8151664733887,-30.310375213623,-232.063735961914,39.2681541442871,-36.7050018310547,-231.477691650391,98.4399490356445,-29.0760555267334,-232.373764038086,74.5485153198242,-27.9066390991211,-232.485778808594,55.7201614379883,-28.9983463287354,-232.435775756836,49.7651786804199,-30.1755619049072,-232.519775390625,61.7486534118652,-35.4563789367676,-232.208755493164,83.4101715087891,-33.242862701416,-232.318771362305,77.9647369384766,-31.3402767181396,-231.502685546875,49.1142196655273,-34.1395492553711,-232.061737060547,36.6778984069824,-40.5393753051758,-232.066741943359,96.1980361938477,-34.4573822021484,-232.52278137207,72.0448608398438,-32.1836585998535,-232.369766235352,66.4299087524414,-34.1461524963379,-235.708099365234,56.8204727172852,-32.8468246459961,-231.656707763672,42.2713470458984,-43.6646842956543,-231.828720092773,104.068206787109,-36.8942222595215,-233.265853881836,77.9747467041016,-41.2559471130371,-234.156951904297,88.1686401367188,-34.5073852539063,-234.391967773438,61.7981605529785,-45.988208770752,-234.216949462891,99.7890853881836,-39.2979545593262,-233.850921630859,83.8013153076172,-35.6511001586914,-233.58088684082,66.8595581054688,-38.6574935913086,-235.358062744141,72.2808837890625,-38.1940460205078,-240.170532226563,58.9330787658691,-49.4896545410156,-234.180953979492,110.606842041016,-42.4850654602051,-237.880310058594,79.7157135009766,-50.8339881896973,-238.461364746094,100.785873413086,-40.1620407104492,-238.766387939453,65.9197692871094,-51.2559280395508,-242.163726806641,91.0840301513672,\r\n-46.8923034667969,-242.56477355957,79.012451171875,-43.815601348877,-240.87060546875,73.2220764160156,-43.5750732421875,-243.501861572266,62.3467102050781,-54.0554046630859,-239.336456298828,108.364624023438,-56.1810111999512,-242.132720947266,103.076103210449,-45.8841018676758,-243.695877075195,67.9896621704102,-40.1199378967285,-242.310745239258,59.3926239013672,-55.0349006652832,-239.388458251953,114.302200317383,-55.5355491638184,-243.886901855469,91.8812026977539,-50.6628684997559,-244.409957885742,79.7010192871094,-48.2365303039551,-244.300933837891,73.7591323852539,-46.7623863220215,-245.112014770508,60.9969825744629,-59.0736923217773,-242.539779663086,110.229804992676,-60.0098876953125,-243.435852050781,103.414138793945,-50.183723449707,-245.15901184082,69.1765823364258,-43.5095710754395,-244.761993408203,50.7848815917969,-61.3850212097168,-243.055816650391,115.822357177734,-57.059497833252,-244.581970214844,86.5462875366211,-51.9641990661621,-245.713073730469,57.4540328979492,-49.3443412780762,-245.655075073242,52.1821136474609,-60.268310546875,-243.193832397461,121.704925537109,-62.9153709411621,-243.452850341797,109.904777526855,-63.904670715332,-243.706878662109,104.008193969727,-53.5406494140625,-245.122024536133,68.1088790893555,-44.8905029296875,-244.880004882813,44.8803024291992,-64.6867446899414,-243.403854370117,117.906555175781,-58.1016006469727,-244.505950927734,122.503005981445,-63.3221130371094,-244.402954101563,93.2699432373047,-56.1935081481934,-244.581970214844,76.3109817504883,-54.6867637634277,-245.233032226563,62.1490936279297,-53.9070892333984,-245.586059570313,51.1145133972168,-45.4701614379883,-244.86799621582,42.707389831543,-62.1152954101563,-243.100814819336,129.965744018555,-59.0477905273438,-243.253829956055,127.601509094238,-69.5587158203125,-243.087814331055,131.153854370117,-72.5866165161133,-243.486862182617,110.660842895508,-68.8767547607422,-244.119918823242,98.0858154296875,-59.7689590454102,-244.455963134766,84.3428649902344,-57.5845489501953,-243.845901489258,70.9530563354492,\r\n-55.6672592163086,-245.148010253906,56.7682647705078,-55.0837020874023,-244.272933959961,125.46329498291,-66.5044174194336,-244.311935424805,93.594970703125,-64.2897109985352,-244.000915527344,87.8254089355469,-61.6932525634766,-243.166839599609,80.9812393188477,-57.7949714660645,-243.748886108398,62.8277587890625,-59.3877258300781,-243.06982421875,75.6312103271484,-57.2760162353516,-243.990905761719,52.819580078125,-54.6420593261719,-242.816787719727,135.587280273438,-64.8015518188477,-242.632766723633,137.635482788086,-51.9714965820313,-243.409851074219,128.317581176758,-73.5488128662109,-243.247833251953,124.317184448242,-74.6154174804688,-244.100921630859,97.4755554199219,-69.0054626464844,-243.677886962891,91.159538269043,-59.3563232421875,-242.838806152344,68.8948593139648,-58.5961456298828,-243.164840698242,57.7720642089844,-61.8018646240234,-240.362564086914,73.5516128540039,-58.526439666748,-242.604766845703,142.996017456055,-70.5933227539063,-242.560775756836,135.678298950195,-79.8131256103516,-243.234832763672,108.550636291504,-79.3724822998047,-242.992797851563,127.850532531738,-72.9861526489258,-243.895889282227,92.2232437133789,-65.9365692138672,-242.337738037109,84.3922729492188,-62.0808906555176,-239.741500854492,76.7833251953125,-61.4216232299805,-240.539581298828,67.0378723144531,-60.800464630127,-240.235549926758,60.9959831237793,-60.592342376709,-239.648483276367,57.8934745788574,-50.3234367370605,-242.417755126953,142.017929077148,-63.2181015014648,-242.084732055664,142.481979370117,-67.7382431030273,-241.535659790039,141.43586730957,-78.2940826416016,-242.346740722656,134.22314453125,-78.9884414672852,-243.991912841797,97.6923751831055,-77.5914154052734,-244.380935668945,90.0888290405273,-72.7937393188477,-242.487762451172,87.5506896972656,-50.141918182373,-243.480865478516,131.177856445313,-71.4732055664063,-240.520568847656,140.933822631836,-76.3824920654297,-241.208633422852,138.873611450195,-83.4642868041992,-243.107818603516,126.367385864258,-84.4946823120117,-242.907806396484,133.30207824707,\r\n-83.7228088378906,-243.230834960938,105.964385986328,-48.4000473022461,-243.382843017578,133.618103027344,-80.6150054931641,-241.491668701172,138.673599243164,-82.8758239746094,-243.93391418457,99.1696243286133,-76.4194946289063,-244.587966918945,90.1942367553711,-40.4651718139648,-242.739791870117,140.605773925781,-75.4749984741211,-239.199432373047,141.997909545898,-79.1836624145508,-239.329452514648,142.574966430664,-90.954719543457,-242.921798706055,132.3349609375,-88.0351333618164,-242.882797241211,114.027183532715,-86.4725799560547,-242.393753051758,138.167541503906,-87.9930267333984,-244.231918334961,98.0928192138672,-43.7121887207031,-243.0908203125,137.337448120117,-84.3943786621094,-240.80859375,142.41096496582,-94.9864120483398,-243.252838134766,103.197120666504,-83.0723495483398,-245.383041381836,90.0218200683594,-42.7869987487793,-243.001815795898,138.009536743164,-92.1829376220703,-242.741790771484,137.039443969727,-95.4314575195313,-242.9248046875,123.091064453125,-98.7578887939453,-243.091812133789,108.283615112305,-90.2206497192383,-241.711685180664,142.171936035156,-100.906394958496,-244.089920043945,97.3333435058594,-88.6070861816406,-245.335052490234,91.3428497314453,-100.100318908691,-242.965805053711,135.498291015625,-107.676055908203,-242.990798950195,117.694541931152,-107.493041992188,-243.381851196289,101.860984802246,-93.1664352416992,-245.314025878906,93.2266387939453,-96.2115325927734,-242.264739990234,141.444869995117,-99.4891586303711,-245.432052612305,92.7359924316406,-109.092193603516,-243.909896850586,95.231330871582,-108.492141723633,-243.004821777344,139.466674804688,-101.267433166504,-242.719787597656,140.625793457031,-117.512016296387,-243.655883789063,100.84188079834,-101.499450683594,-245.387054443359,92.5136642456055,-104.727767944336,-245.288040161133,91.8460083007813,-112.703552246094,-243.584869384766,95.8657989501953,-99.1492156982422,-241.868698120117,145.06721496582,-114.49772644043,-243.061813354492,121.772933959961,-108.416122436523,-245.445053100586,89.3885650634766,\r\n-112.649543762207,-244.509948730469,89.2029495239258,-105.987892150879,-242.64176940918,144.699188232422,-116.130889892578,-243.214828491211,137.526489257813,-123.906646728516,-243.357849121094,112.400016784668,-118.006072998047,-244.192932128906,90.7374954223633,-124.829734802246,-243.435852050781,124.078163146973,-129.432189941406,-243.951904296875,101.125915527344,-129.585205078125,-244.464950561523,89.074333190918,-110.374320983887,-245.680084228516,87.1614456176758,-117.499015808105,-245.252029418945,82.3329696655273,-121.603424072266,-243.027816772461,142.284942626953,-130.216262817383,-243.320846557617,140.783798217773,-134.201644897461,-243.544860839844,110.338813781738,-132.489486694336,-243.316848754883,123.62712097168,-120.54231262207,-245.413055419922,77.2093734741211,-112.335517883301,-245.89909362793,84.6905059814453,-140.464279174805,-243.779891967773,108.538642883301,-139.586181640625,-244.400955200195,82.7339172363281,-126.634910583496,-245.576065063477,73.4994049072266,-115.824859619141,-246.623168945313,74.0935668945313,-114.857757568359,-246.261123657227,77.8162307739258,-122.48950958252,-246.171127319336,64.7949523925781,-139.681198120117,-244.773986816406,73.4742050170898,-141.00732421875,-243.15983581543,137.287460327148,-140.442260742188,-243.646881103516,120.025764465332,-140.733291625977,-244.204925537109,95.6479797363281,-121.815444946289,-245.541061401367,71.2933959960938,-119.631233215332,-245.786071777344,69.8338470458984,-118.864158630371,-247.564254760742,61.6839485168457,-143.357543945313,-244.03791809082,71.6491241455078,-147.164932250977,-243.456848144531,117.366500854492,-146.729888916016,-243.701873779297,104.686264038086,-144.759689331055,-244.000915527344,77.1056594848633,-144.622680664063,-244.076904296875,90.4207611083984,-117.415008544922,-247.356246948242,68.4299087524414,-147.374954223633,-243.06282043457,130.841827392578,-146.493850708008,-242.542770385742,136.764404296875,-150.208221435547,-243.666885375977,109.978782653809,-152.770477294922,-243.26383972168,114.777252197266,\r\n-150.522247314453,-243.540863037109,98.9319000244141,-149.368148803711,-243.370849609375,87.7848052978516,-149.430145263672,-242.704788208008,79.5543975830078,-152.153427124023,-241.424652099609,133.632110595703,-152.350433349609,-242.327743530273,128.468597412109,-151.523361206055,-242.548767089844,84.4735794067383,-153.936584472656,-243.238830566406,107.695556640625,-155.167709350586,-242.208724975586,121.385894775391,-154.266616821289,-243.107818603516,100.993896484375,-153.418548583984,-241.7216796875,89.263557434082,-153.116516113281,-239.011428833008,136.528381347656,-154.65966796875,-240.0205078125,132.240966796875,-155.873794555664,-242.563766479492,112.596038818359,-157.159912109375,-240.298538208008,125.378288269043,-156.889877319336,-241.729675292969,116.605430603027,-155.298721313477,-241.539672851563,94.4246597290039,-154.751663208008,-240.071533203125,86.9329223632813,-155.010696411133,-241.135635375977,128.394577026367,-158.517028808594,-241.766693115234,105.60334777832,-158.31201171875,-241.28564453125,110.631843566895,-157.882965087891,-240.691589355469,120.975860595703,-157.505935668945,-241.102615356445,99.9343032836914,-156.585845947266,-237.200241088867,130.228775024414,-158.707061767578,-240.724594116211,114.611236572266,-159.612152099609,-236.980224609375,122.550010681152,-159.784164428711,-238.762390136719,118.117576599121,-157.975982666016,-239.393447875977,96.8612976074219,-160.571243286133,-238.406356811523,105.424331665039,-159.723159790039,-240.774597167969,107.795570373535,-160.799255371094,-237.888320922852,111.200897216797,-158.588043212891,-236.765197753906,126.505401611328\r\n\t\t} \r\n\t\tPolygonVertexIndex: *91014 {\r\n\t\t\ta: 0,1,-3,3,2,-2,0,2,-5,5,2,-4,3,1,-7,4,2,-8,4,8,-1,7,2,-6,5,3,-10,6,1,-11,9,3,-7,11,4,-8,8,4,-13,5,13,-8,14,5,-10,15,6,-11,9,6,-16,11,16,-5,17,11,-8,4,16,-13,8,12,-19,5,14,-14,17,7,-14,14,9,-20,20,9,-16,16,11,-22,22,11,-18,23,12,-17,12,24,-19,25,13,-15,25,17,-14,19,9,-21,26,14,-20,20,15,-28,11,22,-22,16,21,-29,22,17,-26,23,24,-13,16,28,-24,18,24,-30,14,30,-26,19,20,-32,14,26,-31,26,19,-32,20,27,-33,22,33,-22,28,21,-35,22,25,-34,23,35,-25,36,23,-29,35,29,-25,37,25,-31,20,32,-32,26,38,-31,39,26,-32,27,40,-33,33,41,-22,34,21,-42,28,34,-43,37,33,-26,35,23,-44,36,44,-24,28,45,-37,35,46,-30,47,37,-31,32,48,-32,26,39,-39,30,38,-50,39,31,-51,51,40,-28,40,52,-33,33,37,-42,34,41,-54,34,53,-43,28,42,-46,43,23,-45,54,35,-44,44,36,-56,45,56,-37,54,46,-36,47,41,-38,30,49,-48,32,57,-49,50,31,-49,58,38,-40,58,49,-39,59,39,-51,40,51,-61,40,61,-53,52,57,-33,53,41,-48,42,53,-63,45,42,-63,43,44,-64,64,54,-44,55,36,-57,44,55,-66,56,45,-67,54,67,-47,47,49,-69,57,69,-49,50,48,-70,58,39,-60,70,49,-59,71,59,-51,60,72,-41,72,61,-41,73,52,-62,52,74,-58,47,68,-54,53,75,-63,45,62,-77,63,44,-66,64,43,-64,77,54,-65,55,56,-79,65,55,-79,66,45,-80,80,56,-67,77,67,-55,70,68,-50,57,74,-70,69,71,-51,58,59,-82,70,58,-83,71,83,-60,84,72,-61,85,61,-73,86,52,-74,73,61,-88,74,52,-87,53,68,-76,62,75,-89,62,88,-77,45,76,-80,63,65,-90,63,89,-65,64,90,-78,78,56,-81,91,65,-79,80,66,-80,92,67,-78,70,93,-69,74,94,-70,71,69,-95,81,59,-84,81,82,-59,70,82,-96,71,96,-84,84,85,-73,85,97,-62,86,73,-99,97,87,-62,73,87,-100,86,100,-75,93,75,-69,101,88,-76,76,88,-102,102,79,-77,91,89,-66,64,89,-91,77,90,-104,78,80,-105,104,91,-79,80,79,-106,77,103,-93,70,95,-94,74,100,-95,71,94,-107,107,81,-84,81,108,-83,109,95,-83,71,110,-97,96,107,-84,84,111,-86,111,97,-86,98,73,-100,86,98,-113,87,97,-114,87,114,-100,86,112,-101,101,75,-94,76,101,-116,102,105,-80,76,115,-103,89,91,-117,117,90,-90,103,90,-119,104,80,-120,91,104,-121,80,105,-120,121,92,-104,122,93,-96,94,100,-107,71,106,-111,123,81,-108,123,108,-82,109,82,-109,124,95,-110,110,125,-97,107,96,-126,84,126,\r\n-112,97,111,-114,98,99,-128,98,127,-113,113,128,-88,114,87,-130,114,127,-100,112,130,-101,122,101,-94,131,115,-102,132,105,-103,133,102,-116,134,116,-92,89,116,-118,117,118,-91,103,118,-136,104,119,-121,134,91,-121,119,105,-137,121,103,-136,137,122,-96,138,106,-101,138,110,-107,107,125,-124,123,139,-109,108,140,-110,137,95,-125,124,109,-142,142,125,-111,126,84,-144,126,113,-112,144,112,-128,128,113,-146,128,129,-88,114,129,-147,114,146,-128,130,112,-148,100,130,-139,131,101,-123,148,115,-132,136,105,-133,102,133,-133,133,115,-150,116,134,-151,117,116,-152,117,152,-119,153,135,-119,154,120,-120,134,120,-156,119,136,-155,121,135,-157,131,122,-138,138,157,-111,123,125,-159,139,123,-159,139,140,-109,109,140,-142,159,137,-125,124,141,-161,158,125,-143,142,110,-158,113,126,-144,112,144,-148,146,144,-128,145,113,-144,145,161,-129,128,162,-130,162,146,-130,163,130,-148,138,130,-164,148,149,-116,131,164,-149,136,132,-166,132,133,-167,133,149,-168,150,134,-169,116,150,-152,117,151,-153,152,153,-119,135,153,-170,154,155,-121,134,155,-171,154,136,-172,135,169,-157,131,137,-165,138,172,-158,173,139,-159,139,174,-141,141,140,-175,159,164,-138,124,160,-160,175,160,-142,176,158,-143,142,157,-173,147,144,-178,146,178,-145,161,145,-144,179,128,-162,162,128,-181,162,178,-147,177,163,-148,181,138,-164,149,148,-183,183,148,-165,132,166,-166,136,165,-172,166,133,-168,149,182,-168,134,170,-169,150,168,-185,151,150,-185,185,152,-152,186,153,-153,169,153,-188,154,188,-156,170,155,-189,154,171,-189,156,169,-190,172,138,-191,139,173,-175,173,158,-177,141,174,-192,192,164,-160,192,159,-161,160,175,-194,141,194,-176,176,142,-173,195,177,-145,144,178,-196,128,179,-197,180,128,-197,162,180,-198,162,197,-179,198,163,-178,181,190,-139,199,181,-164,183,182,-149,192,183,-165,166,200,-166,171,165,-202,202,166,-168,167,182,-204,204,168,-171,205,184,-169,151,184,-186,185,186,-153,186,187,-154,206,169,-188,170,188,-208,201,188,-172,189,169,-207,172,190,-209,209,174,-174,176,210,-174,191,174,-212,194,141,-192,192,160,-194,193,175,-213,194,213,-176,214,176,\r\n-173,215,177,-196,178,215,-196,179,216,-197,217,180,-197,197,180,-218,178,197,-219,198,199,-164,219,198,-178,190,181,-209,181,199,-221,182,183,-222,192,221,-184,200,166,-203,200,201,-166,202,167,-204,182,222,-204,204,223,-169,170,207,-205,205,224,-185,225,205,-169,226,185,-185,227,186,-186,187,186,-229,228,206,-188,207,188,-230,229,188,-202,206,230,-190,208,231,-173,209,232,-175,209,173,-211,176,233,-211,174,232,-212,234,191,-212,191,235,-195,192,193,-222,213,212,-176,193,212,-237,237,213,-195,233,176,-215,172,231,-215,215,219,-178,215,178,-219,216,238,-197,217,196,-239,217,218,-198,198,239,-200,219,240,-199,181,220,-209,199,241,-221,222,182,-222,200,202,-243,242,201,-201,243,202,-204,222,243,-204,204,244,-224,168,223,-246,204,207,-245,225,224,-206,226,184,-225,168,245,-226,226,227,-186,227,228,-187,228,246,-207,207,229,-248,229,201,-243,206,246,-231,231,208,-221,209,248,-233,249,209,-211,250,210,-234,248,211,-233,191,234,-252,211,248,-235,235,191,-252,194,235,-238,236,221,-194,213,252,-213,236,212,-254,237,254,-214,233,214,-256,231,255,-215,256,219,-216,215,218,-257,216,257,-239,217,238,-259,218,217,-260,239,198,-241,239,241,-200,256,240,-220,241,260,-221,236,222,-222,242,202,-262,202,243,-262,222,262,-244,263,223,-245,264,245,-224,247,244,-208,265,224,-226,226,224,-267,225,245,-268,227,226,-267,228,227,-269,246,228,-270,229,270,-248,229,242,-271,271,230,-247,231,220,-273,209,249,-249,250,249,-211,233,273,-251,234,274,-252,234,248,-276,251,276,-236,235,276,-238,277,252,-214,253,212,-253,236,253,-263,237,278,-255,254,277,-214,233,255,-274,231,272,-256,256,218,-280,238,257,-281,281,258,-239,259,217,-259,218,259,-280,282,239,-241,239,283,-242,284,240,-257,283,260,-242,285,220,-261,222,236,-263,261,286,-243,287,261,-244,243,262,-288,263,264,-224,288,263,-245,264,289,-246,288,244,-248,266,224,-266,225,290,-266,245,289,-268,225,267,-291,227,266,-269,269,228,-269,291,246,-270,270,292,-248,286,270,-243,293,230,-272,271,246,-295,285,272,-221,249,275,-249,295,249,-251,296,250,-274,274,234,-298,274,298,-252,275,297,-235,251,\r\n298,-277,299,237,-277,277,300,-253,253,252,-302,253,301,-263,302,278,-238,303,254,-279,303,277,-255,273,255,-305,255,272,-305,256,279,-285,281,238,-281,305,258,-282,259,258,-306,279,259,-306,282,283,-240,284,282,-241,283,306,-261,307,285,-261,308,286,-262,308,261,-288,309,287,-263,310,264,-264,288,311,-264,312,289,-265,292,288,-248,266,265,-314,290,314,-266,290,267,-290,266,313,-269,268,315,-270,291,294,-247,315,291,-270,292,270,-317,316,270,-287,293,271,-318,294,317,-272,285,318,-273,295,275,-250,295,250,-297,273,319,-297,320,274,-298,321,298,-275,297,275,-323,276,298,-324,302,237,-300,276,323,-300,300,277,-325,301,252,-301,309,262,-302,278,302,-326,278,326,-304,277,303,-325,319,273,-305,327,304,-273,328,284,-280,281,329,-306,279,305,-330,330,283,-283,331,282,-285,330,306,-284,306,307,-261,285,307,-333,286,308,-334,308,287,-335,287,309,-336,312,264,-311,263,311,-311,288,336,-312,337,289,-313,336,288,-293,313,265,-339,290,339,-315,338,265,-315,290,289,-341,315,268,-314,291,341,-295,341,291,-316,292,316,-337,316,286,-343,343,293,-318,294,344,-318,345,318,-286,327,272,-319,295,322,-276,296,322,-296,319,322,-297,274,320,-322,346,320,-298,298,321,-348,348,297,-323,323,298,-350,299,350,-303,351,299,-324,300,324,-353,301,300,-354,353,309,-302,350,325,-303,325,326,-279,303,326,-355,303,354,-325,355,319,-305,356,304,-328,328,357,-285,329,328,-280,358,329,-282,330,282,-360,331,360,-283,331,284,-358,361,306,-331,306,361,-308,307,362,-333,332,345,-286,308,363,-334,286,333,-343,287,335,-335,308,334,-364,353,335,-310,312,310,-365,365,310,-312,336,366,-312,337,340,-290,312,367,-338,313,338,-369,340,339,-291,339,338,-315,313,368,-316,341,344,-295,369,341,-316,336,316,-367,316,342,-371,317,371,-344,317,344,-373,345,373,-319,327,318,-375,319,375,-323,347,321,-321,320,346,-377,346,297,-349,347,377,-299,375,348,-323,298,377,-350,351,323,-350,351,350,-300,352,324,-379,353,300,-353,350,379,-326,325,380,-327,381,354,-327,354,378,-325,355,382,-320,356,355,-305,327,374,-357,357,328,-384,329,384,-329,358,384,-330,385,358,-282,360,359,-283,\r\n386,330,-360,331,357,-361,386,361,-331,362,307,-362,332,362,-388,332,388,-346,389,333,-364,389,342,-334,335,390,-335,390,363,-335,353,352,-336,365,364,-311,364,391,-313,392,365,-312,366,393,-312,340,337,-395,367,312,-396,394,337,-368,338,396,-369,340,397,-340,338,339,-399,369,315,-369,341,399,-345,400,341,-370,366,316,-371,342,401,-371,371,317,-373,372,344,-400,373,345,-389,318,373,-375,319,382,-376,320,402,-348,376,346,-404,320,376,-403,403,346,-349,404,377,-348,403,348,-376,349,377,-406,349,406,-352,351,379,-351,352,378,-408,380,325,-380,380,381,-327,354,381,-409,408,378,-355,409,382,-356,355,356,-411,374,410,-357,383,328,-385,411,357,-384,412,384,-359,385,413,-359,386,359,-361,360,357,-412,386,414,-362,362,361,-416,415,387,-363,387,388,-333,389,363,-417,389,417,-343,407,390,-336,418,363,-391,352,407,-336,365,391,-365,395,312,-392,392,391,-366,392,311,-394,393,366,-420,340,394,-398,367,395,-421,421,394,-368,338,398,-397,396,422,-369,423,339,-398,423,398,-340,369,368,-423,341,424,-400,341,400,-425,369,425,-401,366,370,-420,417,401,-343,401,419,-371,426,371,-373,399,426,-373,373,388,-428,374,373,-429,382,403,-376,404,347,-403,403,429,-377,402,376,-431,404,431,-378,405,377,-433,405,406,-350,406,433,-352,351,433,-380,378,408,-408,380,379,-435,381,380,-436,408,381,-437,409,437,-383,355,438,-410,355,410,-439,374,428,-411,384,439,-384,411,383,-441,412,441,-385,413,412,-359,386,360,-412,442,414,-387,414,443,-362,415,361,-444,444,387,-416,445,388,-388,416,363,-419,416,446,-390,446,417,-390,407,447,-391,390,447,-419,395,391,-449,392,448,-392,393,419,-393,394,449,-398,395,450,-421,367,420,-422,421,449,-395,451,396,-399,422,396,-453,423,397,-454,423,451,-399,422,425,-370,424,454,-400,400,455,-425,455,400,-426,417,456,-402,401,457,-420,371,426,-459,459,426,-400,445,427,-389,428,373,-428,382,460,-404,404,402,-462,460,429,-404,430,376,-430,402,430,-462,431,404,-462,432,377,-432,432,462,-406,405,463,-407,406,463,-434,433,464,-380,465,407,-409,379,464,-435,380,434,-436,381,435,-467,436,381,-468,465,408,-437,437,409,-439,460,382,\r\n-438,468,438,-411,428,468,-411,441,439,-385,383,439,-470,383,469,-441,470,411,-441,412,471,-442,412,413,-473,386,411,-471,470,414,-443,470,442,-387,414,473,-444,415,443,-474,474,387,-445,475,444,-416,445,387,-475,416,418,-477,477,446,-417,446,478,-418,407,465,-448,447,479,-419,448,480,-396,481,448,-393,481,392,-420,482,397,-450,395,480,-451,420,450,-484,421,420,-484,421,484,-450,451,452,-397,422,452,-486,453,397,-483,453,486,-424,423,487,-452,422,485,-426,424,488,-455,459,399,-455,488,424,-456,489,455,-426,417,490,-457,457,401,-457,457,481,-420,491,458,-427,459,491,-427,445,492,-428,428,427,-493,460,493,-430,494,430,-430,430,495,-462,431,461,-497,432,431,-498,432,497,-463,498,405,-463,498,463,-406,499,433,-464,464,433,-501,434,464,-502,434,501,-436,466,435,-502,381,466,-468,502,436,-468,502,465,-437,437,438,-504,460,437,-505,468,505,-439,428,506,-469,469,439,-442,440,469,-508,470,440,-509,412,509,-472,441,471,-511,472,509,-413,508,414,-471,473,414,-512,415,473,-476,444,512,-475,475,512,-445,474,513,-446,418,479,-477,416,476,-478,514,446,-478,514,478,-447,490,417,-479,447,465,-516,447,515,-480,516,480,-449,481,516,-449,482,449,-485,517,450,-481,483,450,-519,421,483,-485,451,487,-453,452,519,-486,453,482,-487,423,486,-521,423,520,-488,425,485,-490,459,454,-489,455,521,-489,455,489,-523,456,490,-524,456,516,-458,457,516,-482,491,524,-459,525,491,-460,445,526,-493,506,428,-493,460,504,-494,429,493,-495,430,494,-496,495,496,-462,496,497,-432,497,527,-463,528,498,-463,463,498,-500,433,499,-501,464,500,-530,464,529,-502,466,501,-531,467,466,-532,467,531,-503,532,465,-503,503,438,-506,504,437,-504,506,505,-469,469,441,-508,440,507,-509,471,509,-534,534,510,-472,510,507,-442,472,533,-510,508,535,-415,535,511,-415,536,473,-512,475,473,-537,537,474,-513,475,538,-513,474,537,-514,513,526,-446,476,479,-540,476,539,-478,477,540,-515,541,478,-515,490,478,-543,465,532,-516,543,479,-516,544,480,-517,482,484,-546,518,450,-518,544,517,-481,483,518,-547,484,483,-547,452,487,-520,519,547,-486,486,482,-546,548,520,-487,549,487,-521,489,\r\n485,-548,525,459,-489,455,550,-522,525,488,-522,547,522,-490,550,455,-523,523,490,-543,551,456,-524,551,516,-457,524,491,-526,552,458,-525,492,526,-554,506,492,-555,504,555,-494,494,493,-557,494,557,-496,495,558,-497,496,559,-498,497,559,-528,462,527,-561,528,561,-499,562,528,-463,563,499,-499,500,499,-565,529,500,-565,501,529,-566,565,530,-502,466,530,-532,566,502,-532,502,566,-533,503,505,-568,568,504,-504,506,569,-506,507,535,-509,534,471,-534,534,570,-511,510,571,-508,472,572,-534,573,511,-536,536,511,-574,574,475,-537,537,512,-576,538,475,-575,538,576,-513,537,577,-514,513,577,-527,578,539,-480,539,540,-478,579,514,-541,541,542,-479,541,514,-580,515,532,-581,578,479,-544,515,581,-544,551,544,-517,582,545,-485,518,517,-584,583,517,-545,546,518,-585,484,546,-586,549,519,-488,519,586,-548,486,545,-549,548,549,-521,550,587,-522,588,525,-522,547,589,-523,590,550,-523,523,542,-592,523,591,-552,524,525,-593,552,524,-594,553,526,-595,554,492,-554,554,595,-507,504,568,-556,556,493,-556,494,556,-597,494,596,-558,557,558,-496,559,496,-559,597,527,-560,560,527,-598,462,560,-563,598,561,-529,563,498,-562,562,598,-529,499,563,-600,499,599,-565,529,564,-601,600,565,-530,601,530,-566,601,531,-531,566,531,-602,602,532,-567,569,567,-506,603,503,-568,568,503,-604,595,569,-507,535,507,-572,534,533,-573,534,604,-571,570,571,-511,605,573,-536,536,573,-607,606,574,-537,512,576,-576,577,537,-576,538,574,-608,576,538,-608,577,608,-527,609,539,-579,610,540,-540,540,611,-580,541,579,-543,602,580,-533,581,515,-581,543,581,-579,612,544,-552,613,545,-583,582,484,-586,584,518,-584,583,544,-615,615,546,-585,616,585,-547,586,519,-550,617,547,-587,545,618,-549,548,619,-550,590,587,-551,587,588,-522,592,525,-589,589,547,-621,522,589,-622,590,522,-622,591,542,-623,612,551,-592,524,592,-594,608,594,-527,554,553,-595,595,554,-595,555,568,-624,596,556,-556,596,624,-558,557,625,-559,558,597,-560,597,626,-561,562,560,-628,598,628,-562,628,563,-562,627,598,-563,628,599,-564,600,629,-566,601,565,-630,601,630,-567,631,602,-567,569,632,-568,567,633,-604,\r\n634,568,-604,635,569,-596,535,571,-637,637,534,-573,534,637,-605,570,604,-639,571,570,-637,605,639,-574,605,535,-637,606,573,-641,606,641,-575,642,575,-577,643,577,-576,607,574,-642,607,644,-577,643,608,-578,609,610,-540,609,578,-582,540,610,-612,579,611,-646,622,542,-580,580,602,-647,581,580,-648,612,614,-545,545,613,-619,648,613,-583,649,582,-586,650,584,-584,583,614,-651,616,546,-616,650,615,-585,616,649,-586,619,586,-550,547,617,-621,617,586,-652,618,619,-549,587,590,-653,589,620,-654,621,589,-655,655,590,-622,656,591,-623,657,612,-592,608,658,-595,594,658,-596,623,568,-635,623,659,-556,659,596,-556,596,659,-625,624,625,-558,625,660,-559,597,558,-662,597,662,-627,560,626,-664,627,560,-664,628,598,-665,627,665,-599,599,628,-667,601,629,-631,631,566,-631,631,667,-603,635,632,-570,632,668,-568,567,668,-634,633,669,-604,634,603,-670,635,595,-659,604,637,-671,671,638,-605,638,636,-571,605,636,-640,640,573,-640,606,640,-673,641,606,-673,642,643,-576,576,644,-643,607,641,-674,607,673,-645,608,643,-675,610,609,-676,676,609,-582,610,677,-612,678,645,-612,579,645,-680,622,579,-680,646,602,-681,646,681,-581,580,681,-648,676,581,-648,612,650,-615,618,613,-683,648,683,-614,649,648,-583,616,615,-685,650,685,-616,649,616,-687,586,619,-652,617,687,-621,617,651,-689,682,619,-619,655,652,-591,689,587,-653,653,620,-691,589,653,-655,654,691,-622,655,621,-692,656,657,-592,622,692,-657,693,612,-658,608,674,-659,623,634,-695,623,695,-660,659,625,-625,625,696,-661,558,660,-662,697,597,-662,697,662,-598,662,698,-627,626,698,-664,627,663,-700,665,664,-599,664,666,-629,627,699,-666,630,629,-701,630,700,-632,667,631,-702,602,667,-681,632,635,-703,632,702,-669,668,703,-634,703,669,-634,634,669,-705,705,635,-659,706,604,-671,671,707,-639,671,604,-707,708,636,-639,708,639,-637,640,639,-710,672,640,-710,641,672,-711,711,643,-643,712,642,-645,710,673,-642,713,644,-674,643,711,-675,676,675,-610,610,675,-678,611,677,-679,645,678,-715,679,645,-693,622,679,-693,680,681,-647,715,647,-682,676,647,-716,693,650,-613,683,682,-614,648,716,-684,649,716,\r\n-649,684,615,-718,686,616,-685,693,685,-651,685,717,-616,649,686,-719,719,651,-620,687,617,-721,687,690,-621,651,721,-689,688,720,-618,719,619,-683,655,722,-653,689,652,-723,690,654,-654,723,691,-655,724,655,-692,693,657,-657,725,656,-693,705,658,-675,634,704,-695,726,623,-695,726,695,-624,659,695,-697,659,696,-626,727,660,-697,660,728,-662,697,661,-729,697,729,-663,730,698,-663,663,698,-732,663,731,-700,664,665,-733,664,732,-667,733,665,-700,631,700,-735,631,734,-702,667,701,-736,680,667,-736,635,736,-703,668,702,-704,703,704,-670,736,635,-706,737,706,-671,671,706,-708,738,638,-708,738,708,-639,708,739,-640,639,739,-710,709,710,-673,711,642,-741,740,642,-713,644,741,-713,710,713,-674,713,741,-645,711,742,-675,743,675,-677,675,744,-678,677,745,-679,678,745,-715,645,714,-693,680,746,-682,715,681,-747,743,676,-716,682,683,-748,747,683,-717,649,718,-717,684,717,-749,686,684,-749,693,725,-686,685,749,-718,718,686,-751,651,719,-722,687,720,-752,751,690,-688,752,688,-722,720,688,-754,682,747,-720,754,722,-656,690,723,-655,691,723,-725,655,724,-755,725,693,-657,755,725,-693,742,705,-675,756,694,-705,756,726,-695,757,695,-727,758,696,-696,660,727,-729,727,696,-760,729,697,-729,730,662,-730,760,698,-731,731,698,-762,733,699,-732,665,762,-733,733,762,-666,735,763,-681,702,736,-704,703,764,-705,736,705,-766,737,766,-707,766,707,-707,738,707,-768,738,768,-709,739,708,-769,709,739,-770,709,769,-711,770,711,-741,740,712,-772,741,771,-713,713,710,-773,713,773,-742,711,774,-743,743,744,-676,775,677,-745,677,775,-746,745,776,-715,692,714,-778,680,778,-747,746,779,-716,779,743,-716,780,747,-717,716,718,-782,749,748,-718,686,748,-751,782,685,-726,783,749,-686,781,718,-751,719,784,-722,720,785,-752,785,690,-752,688,752,-787,784,752,-722,753,688,-787,753,787,-721,719,747,-785,785,723,-691,788,724,-724,754,724,-789,755,789,-726,692,777,-756,742,790,-706,704,791,-757,792,726,-757,695,757,-759,757,726,-794,759,696,-759,794,728,-728,795,727,-760,796,729,-729,729,797,-731,698,760,-762,760,730,-798,733,731,-762,798,762,-734,735,799,-764,680,\r\n763,-779,703,736,-766,703,765,-765,764,791,-705,790,765,-706,766,737,-801,801,707,-767,767,707,-802,738,767,-769,739,768,-803,769,739,-803,803,710,-770,770,804,-712,770,740,-806,740,771,-806,806,771,-742,710,803,-773,713,772,-774,806,741,-774,711,804,-775,807,742,-775,744,743,-809,809,775,-745,776,745,-776,810,714,-777,777,714,-811,746,778,-780,811,743,-780,780,784,-748,781,780,-717,748,749,-813,750,748,-814,783,685,-783,782,725,-790,783,812,-750,814,781,-751,785,720,-788,752,815,-787,752,784,-817,817,753,-787,753,818,-788,785,819,-724,819,788,-724,820,789,-756,777,820,-756,790,742,-808,756,791,-822,792,793,-727,821,792,-757,822,758,-758,757,793,-823,759,758,-823,794,796,-729,794,727,-796,795,759,-824,729,796,-825,729,825,-798,826,761,-761,827,760,-798,798,733,-762,798,828,-763,829,763,-800,778,763,-830,765,830,-765,791,764,-832,765,790,-831,766,800,-833,766,832,-802,833,767,-802,768,767,-834,768,833,-803,834,769,-803,803,769,-835,770,835,-805,770,805,-837,805,771,-807,834,772,-804,773,772,-838,838,806,-774,839,774,-805,840,807,-775,811,808,-744,744,808,-810,809,841,-776,841,776,-776,842,810,-777,777,810,-844,779,778,-830,811,779,-845,784,780,-817,814,780,-782,748,812,-814,750,813,-815,783,782,-846,782,789,-847,847,812,-784,848,785,-788,815,752,-817,817,786,-816,817,849,-754,849,818,-754,818,848,-788,848,819,-786,850,788,-820,820,851,-790,777,843,-821,830,790,-808,791,831,-822,852,793,-793,853,792,-822,854,822,-794,822,855,-760,794,856,-797,794,795,-857,759,855,-824,795,823,-858,856,824,-797,825,729,-825,825,827,-798,761,826,-829,858,826,-761,858,760,-828,798,761,-829,829,799,-860,830,831,-765,860,832,-801,801,832,-862,801,861,-834,862,802,-834,834,802,-864,864,835,-771,804,835,-840,836,805,-866,836,864,-771,805,806,-867,834,867,-773,772,867,-838,837,838,-774,838,868,-807,840,774,-840,840,831,-808,811,869,-809,809,808,-870,809,870,-842,870,776,-842,810,842,-872,870,842,-777,871,843,-811,779,829,-845,811,844,-870,872,816,-781,814,872,-781,847,813,-813,873,814,-814,782,846,-846,783,845,-848,846,789,-852,815,816,-875,\r\n875,817,-816,876,849,-818,877,818,-850,878,848,-819,848,850,-820,820,879,-852,820,843,-880,830,807,-832,880,821,-832,793,852,-855,852,792,-854,853,821,-882,854,855,-823,882,856,-796,823,855,-884,857,823,-885,857,882,-796,856,882,-825,885,825,-825,825,885,-828,886,828,-827,826,858,-887,887,858,-828,888,859,-800,859,844,-830,889,832,-861,889,861,-833,833,861,-891,802,862,-864,833,891,-863,834,863,-893,864,893,-836,835,894,-840,865,805,-867,836,865,-865,895,866,-807,834,892,-868,867,896,-838,837,868,-839,895,806,-869,840,839,-898,880,831,-841,809,869,-899,870,809,-899,842,899,-872,870,899,-843,871,900,-844,901,869,-845,816,872,-875,814,873,-873,902,813,-848,902,873,-814,851,845,-847,847,845,-904,875,815,-875,817,875,-877,877,849,-877,878,818,-878,904,848,-879,850,848,-905,851,879,-906,879,843,-901,881,821,-881,852,906,-855,907,852,-854,908,853,-882,854,909,-856,883,855,-911,884,823,-884,857,884,-912,912,882,-858,882,913,-825,913,885,-825,914,827,-886,915,886,-859,887,915,-859,827,914,-888,888,916,-860,859,901,-845,917,889,-861,889,890,-862,891,833,-891,863,862,-919,891,918,-863,863,918,-893,864,919,-894,835,893,-895,839,894,-898,866,920,-866,865,921,-865,895,920,-867,892,896,-868,837,896,-869,895,868,-923,897,923,-841,923,880,-841,924,898,-870,870,898,-926,900,871,-900,899,870,-927,924,869,-902,927,874,-873,873,928,-873,847,903,-903,929,873,-903,851,903,-846,874,927,-876,930,876,-876,877,876,-932,932,878,-878,933,904,-879,850,904,-935,879,935,-906,851,905,-937,879,900,-936,881,880,-924,852,907,-907,854,906,-910,937,907,-854,937,853,-909,881,938,-909,910,855,-910,910,939,-884,883,940,-885,941,911,-885,857,911,-943,882,912,-914,912,857,-943,914,885,-914,887,943,-916,914,944,-888,916,945,-860,859,946,-902,917,947,-890,917,860,-949,890,889,-948,891,890,-950,891,950,-919,918,896,-893,864,951,-920,919,952,-894,953,894,-894,897,894,-954,865,920,-922,951,864,-922,895,954,-921,868,896,-956,956,922,-869,895,922,-955,897,957,-924,924,958,-899,925,898,-959,925,926,-871,959,900,-900,899,926,-961,924,901,-959,961,927,-873,928,873,\r\n-963,928,961,-873,929,902,-904,873,929,-963,851,936,-904,963,875,-928,930,931,-877,963,930,-876,932,877,-932,933,878,-933,934,904,-934,964,905,-936,964,936,-906,935,900,-966,923,938,-882,907,966,-907,909,906,-968,907,937,-969,938,937,-909,910,909,-968,939,910,-968,883,939,-941,941,884,-941,941,942,-912,913,912,-970,912,942,-971,914,913,-945,887,971,-944,943,971,-916,887,944,-972,945,916,-973,859,945,-947,946,958,-902,917,948,-948,890,947,-974,890,974,-950,949,950,-892,950,896,-919,919,951,-976,919,975,-953,952,953,-894,897,953,-977,920,977,-922,921,978,-952,920,954,-978,950,955,-897,868,955,-957,956,954,-923,957,897,-977,957,979,-924,925,958,-981,925,981,-927,965,900,-960,959,899,-961,981,960,-927,927,961,-983,962,961,-929,929,903,-937,983,962,-930,982,963,-928,984,931,-931,963,985,-931,984,932,-932,933,932,-987,934,933,-988,988,964,-936,964,929,-937,935,965,-990,938,923,-980,907,968,-967,990,906,-967,967,906,-991,991,968,-938,937,938,-993,993,939,-968,939,994,-941,941,940,-996,941,995,-943,912,970,-970,913,969,-997,970,942,-998,944,913,-997,944,998,-972,972,999,-946,999,946,-946,946,1000,-959,1001,947,-949,947,1002,-974,973,974,-891,974,1003,-950,949,1004,-951,1005,975,-952,1006,952,-976,952,1007,-954,1007,976,-954,921,977,-1009,921,1008,-979,951,978,-1006,977,954,-1010,1004,955,-951,955,1010,-957,956,1009,-955,957,976,-1012,957,1011,-980,1012,980,-959,925,980,-982,965,959,-1014,960,1013,-960,981,1014,-961,962,982,-962,1015,962,-984,929,964,-984,1016,963,-983,984,930,-1018,1016,985,-964,985,1017,-931,986,932,-985,987,933,-987,964,988,-1016,988,935,-990,965,1018,-990,938,979,-993,966,968,-1020,993,990,-967,993,967,-991,991,1019,-969,937,992,-992,1020,939,-994,1020,994,-940,994,995,-941,997,942,-996,969,970,-998,969,1021,-997,944,996,-999,999,972,-1023,999,1000,-947,1012,958,-1001,1001,1002,-948,973,1002,-975,1023,1003,-975,1004,949,-1004,1005,1024,-976,1006,1025,-953,975,1026,-1007,952,1025,-1008,1007,1027,-977,1008,977,-1029,978,1008,-1030,978,1030,-1006,977,1009,-1032,1004,1010,-956,1032,956,-1011,1033,1009,-957,\r\n976,1027,-1012,1011,1034,-980,1012,1035,-981,980,1014,-982,965,1013,-1019,960,1014,-1014,982,962,-1016,964,1015,-984,982,1036,-1017,984,1017,-1038,1016,1038,-986,1017,985,-1039,986,984,-1038,987,986,-1040,1015,988,-1037,989,1040,-989,1018,1041,-990,979,1042,-993,1019,1043,-967,993,966,-1045,1019,991,-1044,1042,991,-993,1020,993,-1046,1046,994,-1021,994,1047,-996,997,995,-1049,969,997,-1050,969,1050,-1022,998,996,-1022,999,1022,-1052,999,1051,-1001,1012,1000,-1053,1002,1001,-1054,1002,1023,-975,1003,1023,-1055,1003,1054,-1005,1005,1030,-1025,1024,1026,-976,1055,1025,-1007,1006,1026,-1057,1025,1057,-1008,1007,1057,-1028,1031,1028,-978,1029,1008,-1029,978,1029,-1031,1009,1033,-1032,1054,1010,-1005,1033,956,-1033,1054,1032,-1011,1027,1058,-1012,1011,1058,-1035,1042,979,-1035,1035,1012,-1053,1035,1059,-981,980,1059,-1015,1018,1013,-1061,1013,1014,-1062,982,1015,-1037,1016,1036,-1063,1037,1017,-1064,1062,1038,-1017,1063,1017,-1039,1037,1064,-987,986,1064,-1040,1036,988,-1041,989,1041,-1041,1065,1041,-1019,1043,1044,-967,993,1044,-1046,1043,991,-1067,1042,1066,-992,1067,1020,-1046,1068,994,-1047,1069,1046,-1021,1068,1047,-995,1047,1048,-996,1049,997,-1049,1049,1050,-970,1070,1051,-1023,1000,1051,-1053,1001,1071,-1054,1002,1053,-1073,1002,1072,-1024,1023,1073,-1055,1074,1024,-1031,1024,1074,-1027,1055,1057,-1026,1006,1056,-1056,1074,1056,-1027,1027,1057,-1059,1031,1075,-1029,1076,1029,-1029,1029,1076,-1031,1033,1077,-1032,1033,1032,-1079,1054,1079,-1033,1058,1080,-1035,1042,1034,-1081,1035,1052,-1082,1082,1059,-1036,1082,1014,-1060,1061,1060,-1014,1018,1060,-1066,1082,1061,-1015,1062,1036,-1084,1084,1037,-1064,1085,1038,-1063,1086,1063,-1039,1037,1087,-1065,1064,1088,-1040,1036,1040,-1090,1089,1040,-1042,1041,1065,-1091,1043,1091,-1045,1092,1045,-1045,1066,1091,-1044,1042,1093,-1067,1020,1067,-1070,1045,1094,-1068,1068,1046,-1070,1095,1047,-1069,1047,1096,-1049,1048,1097,-1050,1049,1097,-1051,1051,1070,-1082,1052,1051,-1082,1071,1072,-1054,1072,1098,-1024,1098,1073,-1024,1054,1073,-1080,1099,1074,-1031,1100,1057,-1056,1055,\r\n1056,-1102,1074,1102,-1057,1103,1058,-1058,1031,1104,-1076,1028,1075,-1106,1076,1028,-1106,1030,1076,-1107,1077,1033,-1079,1104,1031,-1078,1032,1079,-1079,1103,1080,-1059,1042,1080,-1094,1081,1107,-1036,1082,1035,-1109,1061,1109,-1061,1109,1065,-1061,1109,1061,-1083,1036,1089,-1084,1085,1062,-1084,1087,1037,-1085,1084,1063,-1087,1085,1086,-1039,1087,1088,-1065,1041,1090,-1090,1065,1110,-1091,1091,1111,-1045,1094,1045,-1093,1044,1111,-1093,1066,1093,-1092,1112,1069,-1068,1113,1067,-1095,1114,1068,-1070,1115,1047,-1096,1114,1095,-1069,1047,1115,-1097,1097,1048,-1097,1081,1070,-1117,1071,1117,-1073,1117,1098,-1073,1098,1118,-1074,1079,1073,-1120,1099,1102,-1075,1106,1099,-1031,1057,1100,-1104,1055,1101,-1101,1102,1101,-1057,1120,1075,-1105,1075,1120,-1106,1105,1106,-1077,1077,1078,-1122,1104,1077,-1123,1079,1121,-1079,1123,1080,-1104,1080,1124,-1094,1107,1081,-1117,1108,1035,-1108,1109,1082,-1109,1110,1065,-1110,1089,1125,-1084,1125,1085,-1084,1126,1087,-1085,1086,1127,-1085,1086,1085,-1128,1087,1128,-1089,1089,1090,-1126,1110,1129,-1091,1091,1130,-1112,1131,1094,-1093,1131,1092,-1112,1091,1093,-1131,1112,1114,-1070,1132,1112,-1068,1132,1067,-1114,1113,1094,-1134,1095,1114,-1116,1115,1134,-1097,1135,1116,-1071,1117,1136,-1099,1137,1118,-1099,1118,1119,-1074,1079,1119,-1122,1099,1138,-1103,1139,1099,-1107,1140,1103,-1101,1101,1140,-1101,1102,1141,-1102,1120,1104,-1143,1120,1143,-1106,1106,1105,-1140,1122,1077,-1122,1122,1142,-1105,1080,1123,-1125,1123,1103,-1145,1093,1124,-1131,1107,1116,-1146,1108,1107,-1147,1108,1147,-1110,1109,1147,-1111,1085,1125,-1149,1149,1087,-1127,1127,1126,-1085,1127,1085,-1151,1087,1149,-1129,1151,1088,-1129,1090,1129,-1126,1110,1152,-1130,1130,1153,-1112,1131,1154,-1095,1111,1155,-1132,1156,1114,-1113,1132,1157,-1113,1154,1133,-1095,1113,1133,-1159,1134,1115,-1115,1134,1159,-1097,1135,1145,-1117,1136,1137,-1099,1160,1118,-1138,1118,1160,-1120,1119,1161,-1122,1162,1138,-1100,1102,1138,-1142,1099,1139,-1164,1103,1140,-1165,1101,1165,-1141,1101,1141,-1166,1142,1166,-1121,1143,1120,-1167,1143,1139,\r\n-1106,1161,1122,-1122,1122,1167,-1143,1123,1168,-1125,1144,1103,-1165,1123,1144,-1169,1124,1169,-1131,1145,1170,-1108,1170,1146,-1108,1108,1146,-1148,1110,1147,-1153,1148,1125,-1130,1148,1150,-1086,1149,1126,-1172,1171,1126,-1128,1150,1171,-1128,1149,1172,-1129,1128,1173,-1152,1129,1152,-1175,1130,1169,-1154,1111,1153,-1156,1131,1155,-1155,1159,1114,-1157,1112,1157,-1157,1154,1175,-1134,1133,1175,-1159,1159,1134,-1115,1176,1145,-1136,1136,1177,-1138,1178,1160,-1138,1160,1179,-1120,1119,1179,-1162,1162,1180,-1139,1099,1163,-1163,1138,1181,-1142,1182,1163,-1140,1140,1183,-1165,1165,1183,-1141,1184,1165,-1142,1167,1166,-1143,1166,1182,-1144,1182,1139,-1144,1161,1185,-1123,1185,1167,-1123,1124,1168,-1170,1144,1164,-1187,1187,1168,-1145,1188,1170,-1146,1170,1189,-1147,1146,1189,-1148,1189,1152,-1148,1174,1148,-1130,1150,1148,-1191,1149,1171,-1173,1150,1191,-1172,1128,1172,-1174,1189,1174,-1153,1153,1169,-1193,1193,1155,-1154,1175,1154,-1156,1175,1194,-1159,1176,1188,-1146,1177,1195,-1138,1178,1196,-1161,1178,1137,-1196,1160,1196,-1180,1161,1179,-1198,1162,1163,-1181,1180,1198,-1139,1138,1198,-1182,1199,1141,-1182,1163,1182,-1201,1183,1186,-1165,1184,1183,-1166,1201,1184,-1142,1166,1167,-1203,1166,1202,-1183,1185,1161,-1198,1185,1203,-1168,1168,1192,-1170,1144,1186,-1188,1187,1204,-1169,1188,1205,-1171,1170,1205,-1190,1174,1206,-1149,1206,1190,-1149,1207,1150,-1191,1171,1191,-1173,1191,1150,-1208,1172,1191,-1174,1174,1189,-1209,1153,1192,-1210,1193,1210,-1156,1211,1193,-1154,1155,1210,-1176,1175,1210,-1195,1188,1176,-1213,1213,1195,-1178,1214,1196,-1179,1214,1178,-1196,1196,1215,-1180,1215,1197,-1180,1180,1163,-1217,1180,1217,-1199,1218,1181,-1199,1201,1141,-1200,1199,1181,-1219,1200,1182,-1203,1200,1216,-1164,1183,1184,-1187,1201,1219,-1185,1202,1167,-1204,1203,1185,-1198,1168,1204,-1193,1220,1187,-1187,1221,1204,-1188,1205,1188,-1223,1208,1189,-1206,1174,1208,-1207,1190,1206,-1224,1223,1207,-1191,1224,1209,-1193,1209,1211,-1154,1225,1210,-1194,1193,1211,-1227,1225,1194,-1211,1188,1212,-1223,1195,1213,-1228,1214,1228,-1197,\r\n1195,1227,-1215,1196,1228,-1216,1229,1197,-1216,1180,1216,-1218,1230,1198,-1218,1230,1218,-1199,1219,1201,-1200,1231,1199,-1219,1202,1232,-1201,1200,1233,-1217,1220,1186,-1185,1220,1184,-1220,1202,1203,-1235,1203,1197,-1230,1192,1204,-1225,1221,1187,-1221,1204,1221,-1236,1205,1222,-1237,1208,1205,-1237,1237,1206,-1209,1223,1206,-1238,1223,1238,-1208,1224,1239,-1210,1211,1209,-1241,1225,1193,-1242,1211,1240,-1227,1226,1241,-1194,1227,1213,-1243,1214,1243,-1229,1214,1227,-1244,1228,1244,-1216,1244,1229,-1216,1216,1245,-1218,1230,1217,-1247,1231,1218,-1231,1199,1247,-1220,1199,1231,-1248,1202,1234,-1233,1232,1233,-1201,1245,1216,-1234,1248,1220,-1220,1229,1234,-1204,1235,1224,-1205,1221,1220,-1250,1235,1221,-1251,1251,1236,-1223,1208,1236,-1238,1223,1237,-1239,1252,1239,-1225,1239,1240,-1210,1240,1253,-1227,1226,1254,-1242,1242,1255,-1228,1228,1243,-1257,1243,1227,-1256,1256,1244,-1229,1257,1229,-1245,1258,1217,-1246,1246,1217,-1259,1230,1246,-1260,1231,1230,-1261,1261,1219,-1248,1260,1247,-1232,1232,1234,-1263,1233,1232,-1264,1245,1233,-1265,1248,1249,-1221,1261,1248,-1220,1229,1257,-1235,1235,1252,-1225,1249,1250,-1222,1265,1235,-1251,1251,1266,-1237,1237,1236,-1267,1237,1267,-1239,1268,1239,-1253,1239,1253,-1241,1254,1226,-1254,1255,1242,-1270,1256,1243,-1271,1255,1270,-1244,1256,1271,-1245,1271,1257,-1245,1258,1245,-1273,1246,1258,-1274,1259,1246,-1275,1260,1230,-1260,1247,1260,-1262,1257,1262,-1235,1232,1262,-1276,1276,1263,-1233,1233,1263,-1265,1272,1245,-1265,1249,1248,-1278,1261,1277,-1249,1278,1252,-1236,1250,1249,-1280,1265,1278,-1236,1265,1250,-1281,1266,1251,-1282,1267,1237,-1267,1268,1282,-1240,1278,1268,-1253,1282,1253,-1240,1254,1253,-1284,1269,1242,-1285,1285,1255,-1270,1271,1256,-1271,1270,1255,-1287,1257,1271,-1288,1273,1258,-1273,1274,1246,-1274,1259,1274,-1261,1260,1288,-1262,1257,1275,-1263,1232,1275,-1277,1263,1276,-1290,1264,1263,-1290,1264,1290,-1273,1291,1249,-1278,1292,1277,-1262,1249,1291,-1280,1250,1279,-1294,1294,1278,-1266,1293,1280,-1251,1265,1280,-1295,1266,1281,-1296,1267,1266,-1296,1268,\r\n1296,-1283,1278,1296,-1269,1282,1283,-1254,1285,1269,-1285,1255,1285,-1287,1271,1270,-1298,1286,1298,-1271,1271,1297,-1288,1257,1287,-1276,1273,1272,-1300,1274,1273,-1301,1274,1301,-1261,1260,1302,-1289,1261,1288,-1304,1304,1276,-1276,1289,1276,-1306,1289,1290,-1265,1290,1299,-1273,1291,1277,-1293,1292,1261,-1304,1279,1291,-1294,1296,1278,-1295,1293,1306,-1281,1307,1294,-1281,1296,1308,-1283,1308,1283,-1283,1309,1285,-1285,1285,1310,-1287,1297,1270,-1299,1310,1298,-1287,1311,1287,-1298,1304,1275,-1288,1273,1299,-1301,1300,1301,-1275,1312,1260,-1302,1302,1260,-1314,1302,1303,-1289,1304,1314,-1277,1276,1314,-1306,1305,1315,-1290,1289,1316,-1291,1317,1299,-1291,1292,1318,-1292,1319,1292,-1304,1320,1293,-1292,1296,1294,-1322,1322,1306,-1294,1306,1307,-1281,1307,1321,-1295,1308,1296,-1324,1310,1285,-1310,1298,1311,-1298,1310,1311,-1299,1311,1324,-1288,1324,1304,-1288,1325,1300,-1300,1300,1325,-1302,1312,1326,-1261,1325,1312,-1302,1327,1313,-1261,1302,1313,-1329,1302,1319,-1304,1329,1314,-1305,1305,1314,-1330,1315,1305,-1331,1331,1289,-1316,1289,1331,-1317,1290,1316,-1333,1299,1317,-1334,1317,1290,-1333,1292,1334,-1319,1320,1291,-1319,1319,1334,-1293,1320,1322,-1294,1323,1296,-1322,1322,1335,-1307,1307,1306,-1336,1307,1336,-1322,1323,1337,-1309,1338,1311,-1311,1311,1338,-1325,1324,1329,-1305,1325,1299,-1340,1312,1340,-1327,1341,1260,-1327,1325,1340,-1313,1327,1342,-1314,1327,1260,-1344,1344,1328,-1314,1328,1345,-1303,1319,1302,-1347,1347,1305,-1330,1330,1305,-1348,1330,1348,-1316,1331,1315,-1350,1350,1316,-1332,1316,1350,-1333,1317,1332,-1334,1333,1339,-1300,1318,1334,-1352,1320,1318,-1352,1346,1334,-1320,1351,1322,-1321,1323,1321,-1353,1351,1335,-1323,1307,1335,-1354,1336,1307,-1354,1321,1336,-1353,1323,1352,-1338,1338,1354,-1325,1324,1354,-1330,1325,1339,-1356,1356,1326,-1341,1343,1260,-1342,1341,1326,-1358,1355,1340,-1326,1342,1327,-1359,1344,1313,-1343,1327,1343,-1359,1344,1359,-1329,1328,1359,-1346,1345,1346,-1303,1329,1354,-1348,1330,1347,-1361,1348,1330,-1362,1349,1315,-1349,1349,1362,-1332,1350,1331,-1363,1363,1332,\r\n-1351,1363,1333,-1333,1333,1364,-1340,1334,1365,-1352,1366,1334,-1347,1335,1351,-1368,1368,1353,-1336,1336,1353,-1370,1352,1336,-1370,1352,1370,-1338,1355,1339,-1365,1356,1357,-1327,1355,1356,-1341,1371,1343,-1342,1372,1341,-1358,1373,1342,-1359,1344,1342,-1374,1371,1358,-1344,1374,1359,-1345,1345,1359,-1347,1361,1330,-1361,1348,1361,-1376,1376,1349,-1349,1349,1376,-1363,1362,1363,-1351,1377,1333,-1364,1364,1333,-1378,1366,1365,-1335,1367,1351,-1366,1366,1346,-1379,1368,1335,-1368,1368,1379,-1354,1380,1369,-1354,1352,1369,-1371,1370,1381,-1338,1355,1364,-1383,1356,1383,-1358,1382,1356,-1356,1371,1341,-1373,1357,1383,-1373,1373,1358,-1385,1373,1374,-1345,1371,1384,-1359,1385,1359,-1375,1359,1386,-1347,1387,1375,-1362,1375,1376,-1349,1376,1388,-1363,1362,1377,-1364,1364,1377,-1390,1366,1390,-1366,1365,1391,-1368,1378,1346,-1387,1366,1378,-1391,1368,1367,-1392,1379,1368,-1392,1380,1353,-1380,1369,1380,-1393,1370,1369,-1393,1370,1393,-1382,1382,1364,-1390,1383,1356,-1395,1382,1394,-1357,1371,1372,-1396,1396,1372,-1384,1384,1397,-1374,1373,1397,-1375,1384,1371,-1396,1385,1398,-1360,1399,1385,-1375,1400,1386,-1360,1387,1401,-1376,1375,1402,-1377,1402,1388,-1377,1377,1362,-1389,1403,1389,-1378,1391,1365,-1391,1386,1390,-1379,1379,1391,-1405,1380,1379,-1406,1380,1406,-1393,1370,1392,-1394,1407,1381,-1394,1389,1408,-1383,1394,1396,-1384,1382,1408,-1395,1396,1395,-1373,1409,1397,-1385,1374,1397,-1400,1409,1384,-1396,1398,1385,-1411,1398,1400,-1360,1385,1399,-1412,1386,1400,-1391,1401,1402,-1376,1412,1388,-1403,1377,1388,-1404,1403,1413,-1390,1414,1391,-1391,1414,1404,-1392,1379,1404,-1406,1415,1380,-1406,1415,1406,-1381,1406,1393,-1393,1416,1407,-1394,1389,1413,-1409,1394,1417,-1397,1408,1418,-1395,1396,1419,-1396,1420,1397,-1410,1411,1399,-1398,1419,1409,-1396,1421,1410,-1386,1400,1398,-1411,1411,1421,-1386,1414,1390,-1401,1401,1412,-1403,1412,1403,-1389,1422,1413,-1404,1414,1423,-1405,1424,1405,-1405,1415,1405,-1426,1415,1426,-1407,1406,1416,-1394,1416,1427,-1408,1428,1408,-1414,1429,1417,-1395,1417,1419,-1397,1428,1418,-1409,\r\n1429,1394,-1419,1411,1397,-1421,1420,1409,-1431,1431,1409,-1420,1421,1432,-1411,1433,1400,-1411,1411,1434,-1422,1414,1400,-1434,1412,1401,-1436,1412,1422,-1404,1422,1436,-1414,1423,1414,-1434,1437,1404,-1424,1424,1425,-1406,1438,1424,-1405,1415,1425,-1440,1439,1426,-1416,1426,1440,-1407,1416,1406,-1441,1416,1441,-1428,1413,1436,-1429,1429,1442,-1418,1442,1419,-1418,1443,1418,-1429,1444,1429,-1419,1420,1445,-1412,1431,1430,-1410,1420,1430,-1447,1431,1419,-1443,1421,1447,-1433,1410,1432,-1449,1433,1410,-1449,1445,1434,-1412,1447,1421,-1435,1422,1412,-1436,1436,1422,-1450,1423,1433,-1451,1437,1438,-1405,1450,1437,-1424,1424,1451,-1426,1438,1452,-1425,1451,1439,-1426,1439,1453,-1427,1454,1440,-1427,1440,1441,-1417,1455,1427,-1442,1436,1443,-1429,1444,1442,-1430,1444,1418,-1444,1446,1445,-1421,1431,1442,-1431,1446,1430,-1457,1447,1457,-1433,1457,1448,-1433,1448,1450,-1434,1458,1434,-1446,1447,1434,-1459,1422,1435,-1460,1460,1449,-1423,1461,1436,-1450,1438,1437,-1463,1450,1463,-1438,1451,1424,-1453,1438,1464,-1453,1451,1453,-1440,1453,1454,-1427,1465,1440,-1455,1440,1465,-1442,1455,1441,-1467,1436,1461,-1444,1467,1442,-1445,1443,1468,-1445,1469,1445,-1447,1470,1430,-1443,1470,1456,-1431,1446,1456,-1470,1447,1471,-1458,1448,1457,-1451,1458,1445,-1470,1471,1447,-1459,1459,1472,-1423,1460,1473,-1450,1460,1422,-1473,1474,1461,-1450,1463,1462,-1438,1464,1438,-1463,1457,1463,-1451,1451,1452,-1476,1475,1452,-1465,1451,1476,-1454,1454,1453,-1478,1465,1454,-1479,1465,1479,-1442,1466,1441,-1480,1480,1455,-1467,1461,1481,-1444,1467,1470,-1443,1467,1444,-1483,1483,1468,-1444,1482,1444,-1469,1484,1456,-1471,1469,1456,-1486,1486,1457,-1472,1469,1487,-1459,1458,1488,-1472,1489,1473,-1461,1474,1449,-1474,1489,1460,-1473,1481,1461,-1475,1490,1462,-1464,1464,1462,-1492,1457,1492,-1464,1493,1451,-1476,1475,1464,-1495,1451,1493,-1477,1495,1453,-1477,1477,1453,-1496,1454,1477,-1479,1465,1478,-1497,1465,1497,-1480,1479,1498,-1467,1480,1466,-1500,1443,1481,-1484,1467,1500,-1471,1500,1467,-1483,1483,1501,-1469,1501,1482,-1469,1484,1485,-1457,1470,\r\n1500,-1485,1469,1485,-1503,1486,1492,-1458,1486,1471,-1489,1469,1502,-1488,1458,1487,-1489,1489,1503,-1474,1474,1473,-1505,1481,1474,-1506,1491,1462,-1491,1506,1490,-1464,1491,1494,-1465,1506,1463,-1493,1493,1475,-1495,1507,1476,-1494,1495,1476,-1509,1477,1495,-1510,1509,1478,-1478,1509,1496,-1479,1465,1496,-1498,1479,1497,-1499,1466,1498,-1500,1481,1505,-1484,1500,1482,-1511,1501,1483,-1512,1501,1510,-1483,1485,1484,-1513,1513,1484,-1501,1502,1485,-1513,1492,1486,-1515,1514,1486,-1489,1487,1502,-1516,1487,1515,-1489,1473,1503,-1517,1504,1473,-1517,1474,1504,-1518,1505,1474,-1518,1491,1490,-1519,1506,1519,-1491,1520,1494,-1492,1506,1492,-1522,1520,1493,-1495,1508,1476,-1508,1507,1493,-1521,1508,1509,-1496,1509,1508,-1497,1522,1497,-1497,1497,1523,-1499,1499,1498,-1525,1505,1511,-1484,1513,1500,-1511,1501,1511,-1526,1510,1501,-1527,1513,1512,-1485,1502,1512,-1528,1492,1514,-1522,1514,1488,-1516,1528,1515,-1503,1503,1529,-1517,1504,1516,-1531,1504,1531,-1518,1505,1517,-1533,1490,1519,-1519,1518,1533,-1492,1519,1506,-1522,1520,1491,-1534,1507,1534,-1509,1507,1520,-1535,1535,1496,-1509,1497,1522,-1524,1522,1496,-1536,1498,1523,-1537,1524,1498,-1538,1505,1532,-1512,1513,1510,-1527,1525,1511,-1539,1525,1526,-1502,1513,1527,-1513,1502,1527,-1540,1540,1521,-1515,1514,1515,-1542,1515,1528,-1543,1539,1528,-1503,1530,1516,-1530,1504,1530,-1544,1504,1543,-1532,1517,1531,-1533,1519,1544,-1519,1518,1545,-1534,1521,1540,-1520,1533,1534,-1521,1546,1508,-1535,1535,1508,-1548,1548,1523,-1523,1522,1535,-1550,1536,1523,-1549,1536,1537,-1499,1524,1537,-1551,1511,1532,-1539,1513,1526,-1552,1525,1538,-1552,1525,1551,-1527,1552,1527,-1514,1539,1527,-1554,1541,1540,-1515,1515,1542,-1542,1554,1542,-1529,1554,1528,-1540,1530,1529,-1556,1556,1543,-1531,1543,1557,-1532,1558,1532,-1532,1559,1544,-1520,1544,1545,-1519,1533,1545,-1535,1540,1559,-1520,1547,1508,-1547,1546,1534,-1561,1561,1535,-1548,1562,1548,-1523,1549,1535,-1562,1562,1522,-1550,1536,1548,-1564,1536,1550,-1538,1564,1524,-1551,1538,1532,-1566,1552,1513,-1552,1566,1551,-1539,1552,1553,\r\n-1528,1539,1553,-1568,1541,1542,-1541,1554,1568,-1543,1554,1539,-1568,1555,1556,-1531,1569,1543,-1557,1569,1557,-1544,1557,1558,-1532,1558,1565,-1533,1559,1570,-1545,1544,1571,-1546,1572,1534,-1546,1540,1542,-1560,1547,1546,-1574,1572,1560,-1535,1573,1546,-1561,1561,1547,-1575,1548,1562,-1576,1576,1549,-1562,1562,1549,-1578,1575,1563,-1549,1563,1550,-1537,1564,1550,-1579,1538,1565,-1567,1552,1551,-1580,1566,1579,-1552,1580,1553,-1553,1567,1553,-1582,1554,1567,-1569,1570,1542,-1569,1555,1582,-1557,1569,1556,-1584,1569,1584,-1558,1557,1585,-1559,1565,1558,-1586,1570,1559,-1543,1570,1571,-1545,1586,1545,-1572,1572,1545,-1587,1574,1547,-1574,1572,1587,-1561,1573,1560,-1589,1589,1561,-1575,1575,1562,-1578,1576,1577,-1550,1576,1561,-1591,1575,1591,-1564,1592,1550,-1564,1593,1578,-1551,1566,1565,-1595,1552,1579,-1581,1579,1566,-1596,1580,1581,-1554,1567,1581,-1597,1567,1596,-1569,1570,1568,-1598,1583,1556,-1583,1569,1583,-1585,1598,1557,-1585,1585,1557,-1599,1585,1594,-1566,1597,1571,-1571,1586,1571,-1600,1586,1587,-1573,1600,1574,-1574,1588,1560,-1588,1588,1600,-1574,1561,1589,-1591,1589,1574,-1602,1575,1577,-1577,1602,1576,-1591,1575,1603,-1592,1592,1563,-1592,1592,1604,-1551,1593,1550,-1605,1566,1594,-1596,1605,1580,-1580,1579,1595,-1607,1605,1581,-1581,1581,1607,-1597,1568,1596,-1609,1568,1608,-1598,1583,1582,-1610,1609,1584,-1584,1610,1598,-1585,1585,1598,-1612,1585,1612,-1595,1597,1599,-1572,1586,1599,-1614,1587,1586,-1615,1574,1600,-1602,1587,1615,-1589,1600,1588,-1617,1617,1590,-1590,1601,1618,-1590,1576,1603,-1576,1602,1603,-1577,1602,1590,-1618,1603,1619,-1592,1591,1619,-1593,1592,1620,-1605,1621,1593,-1605,1595,1594,-1613,1579,1606,-1606,1622,1606,-1596,1605,1623,-1582,1624,1607,-1582,1625,1596,-1608,1608,1596,-1626,1597,1608,-1627,1627,1584,-1610,1610,1611,-1599,1610,1584,-1629,1629,1585,-1612,1629,1612,-1586,1597,1626,-1600,1630,1613,-1600,1613,1614,-1587,1587,1614,-1616,1600,1631,-1602,1616,1588,-1616,1616,1631,-1601,1617,1589,-1633,1633,1618,-1602,1632,1589,-1619,1602,1634,-1604,1617,1635,-1603,1603,1634,-1620,\r\n1620,1592,-1620,1621,1604,-1621,1612,1622,-1596,1605,1606,-1624,1622,1636,-1607,1624,1581,-1624,1637,1607,-1625,1637,1625,-1608,1608,1625,-1639,1626,1608,-1639,1628,1584,-1628,1639,1627,-1610,1610,1640,-1612,1610,1628,-1642,1629,1611,-1643,1629,1622,-1613,1599,1626,-1639,1630,1643,-1614,1638,1630,-1600,1643,1614,-1614,1644,1615,-1615,1631,1645,-1602,1616,1615,-1647,1616,1646,-1632,1617,1632,-1648,1632,1618,-1634,1601,1645,-1634,1602,1635,-1635,1617,1647,-1636,1634,1648,-1620,1620,1619,-1649,1620,1648,-1622,1649,1623,-1607,1622,1650,-1637,1636,1651,-1607,1652,1624,-1624,1637,1624,-1654,1625,1637,-1655,1638,1625,-1655,1627,1655,-1629,1639,1656,-1628,1641,1640,-1611,1640,1642,-1612,1641,1628,-1656,1622,1629,-1643,1657,1643,-1631,1630,1638,-1659,1644,1614,-1644,1644,1646,-1616,1631,1659,-1646,1646,1659,-1632,1633,1647,-1633,1660,1633,-1646,1634,1635,-1662,1635,1647,-1663,1634,1661,-1649,1621,1648,-1664,1652,1623,-1650,1606,1651,-1650,1622,1642,-1651,1650,1664,-1637,1665,1651,-1637,1653,1624,-1653,1653,1666,-1638,1637,1667,-1655,1654,1668,-1639,1627,1656,-1656,1641,1642,-1641,1641,1655,-1670,1644,1643,-1658,1657,1630,-1671,1671,1658,-1639,1670,1630,-1659,1672,1646,-1645,1645,1659,-1674,1672,1659,-1647,1674,1647,-1634,1674,1633,-1661,1660,1645,-1674,1675,1661,-1636,1676,1662,-1648,1662,1675,-1636,1661,1677,-1649,1648,1677,-1664,1678,1652,-1650,1679,1649,-1652,1664,1650,-1643,1665,1636,-1665,1665,1679,-1652,1678,1653,-1653,1653,1680,-1667,1666,1667,-1638,1654,1667,-1669,1671,1638,-1669,1669,1655,-1657,1681,1642,-1642,1641,1669,-1682,1672,1644,-1658,1670,1682,-1658,1659,1683,-1674,1672,1683,-1660,1674,1684,-1648,1685,1661,-1676,1676,1675,-1663,1676,1647,-1685,1677,1661,-1686,1686,1678,-1650,1686,1649,-1680,1664,1642,-1682,1665,1664,-1688,1687,1679,-1666,1678,1688,-1654,1653,1688,-1681,1680,1689,-1667,1689,1667,-1667,1668,1667,-1691,1671,1668,-1691,1691,1669,-1657,1669,1692,-1682,1672,1657,-1683,1682,1683,-1673,1685,1675,-1694,1694,1675,-1677,1695,1677,-1686,1686,1696,-1679,1686,1679,-1697,1664,1681,-1698,1698,1687,-1665,1696,\r\n1679,-1688,1696,1688,-1679,1680,1688,-1700,1692,1669,-1692,1700,1691,-1657,1701,1681,-1693,1694,1693,-1676,1695,1685,-1694,1697,1681,-1703,1698,1664,-1698,1698,1703,-1688,1687,1704,-1697,1696,1699,-1689,1705,1692,-1692,1706,1691,-1701,1702,1681,-1702,1701,1692,-1706,1697,1702,-1708,1698,1697,-1709,1687,1703,-1705,1709,1696,-1705,1699,1696,-1710,1706,1705,-1692,1706,1700,-1711,1707,1702,-1702,1711,1701,-1706,1712,1697,-1708,1708,1697,-1713,1705,1706,-1714,1714,1706,-1711,1707,1701,-1712,1711,1705,-1714,1715,1712,-1708,1714,1713,-1707,1715,1707,-1712,1716,1711,-1714,1714,1716,-1714,1717,1715,-1712,1716,1717,-1712,1718,1719,-1721,1718,1721,-1720,1720,1719,-1723,1723,1718,-1721,1724,1721,-1719,1725,1719,-1722,1725,1722,-1720,1720,1722,-1727,1718,1723,-1728,1720,1728,-1724,1724,1729,-1722,1718,1727,-1725,1725,1721,-1731,1725,1731,-1723,1726,1722,-1733,1733,1720,-1727,1734,1727,-1724,1720,1733,-1729,1723,1728,-1736,1729,1724,-1737,1737,1721,-1730,1724,1727,-1739,1730,1721,-1740,1725,1730,-1732,1731,1732,-1723,1740,1726,-1733,1733,1726,-1742,1727,1734,-1743,1734,1723,-1736,1743,1728,-1734,1728,1744,-1736,1736,1724,-1739,1745,1729,-1737,1739,1721,-1738,1746,1737,-1730,1727,1742,-1739,1730,1739,-1748,1731,1730,-1748,1731,1747,-1733,1740,1741,-1727,1740,1732,-1749,1749,1733,-1742,1750,1742,-1735,1735,1751,-1735,1743,1752,-1729,1743,1733,-1750,1728,1752,-1745,1735,1744,-1754,1754,1736,-1739,1755,1729,-1746,1745,1736,-1755,1739,1737,-1757,1757,1737,-1747,1746,1729,-1756,1754,1738,-1743,1758,1747,-1740,1748,1732,-1748,1740,1759,-1742,1740,1748,-1761,1741,1761,-1750,1762,1742,-1751,1750,1734,-1752,1751,1735,-1764,1752,1743,-1750,1764,1744,-1753,1753,1744,-1766,1735,1753,-1764,1745,1766,-1756,1767,1745,-1755,1768,1756,-1738,1758,1739,-1757,1757,1768,-1738,1769,1757,-1747,1746,1755,-1771,1762,1754,-1743,1758,1748,-1748,1740,1760,-1760,1759,1771,-1742,1748,1772,-1761,1741,1771,-1762,1773,1749,-1762,1762,1750,-1775,1750,1751,-1776,1751,1763,-1777,1773,1752,-1750,1765,1744,-1765,1777,1764,-1753,1763,1753,-1766,1745,1778,-1767,1779,1755,\r\n-1767,1778,1745,-1768,1767,1754,-1763,1768,1780,-1757,1758,1756,-1781,1768,1757,-1782,1782,1757,-1770,1746,1783,-1770,1784,1770,-1756,1746,1770,-1784,1748,1758,-1773,1785,1759,-1761,1759,1786,-1772,1785,1760,-1773,1771,1787,-1762,1773,1761,-1789,1789,1774,-1751,1762,1774,-1768,1751,1790,-1776,1789,1750,-1776,1765,1776,-1764,1751,1776,-1791,1773,1777,-1753,1791,1765,-1765,1777,1792,-1765,1793,1766,-1779,1779,1794,-1756,1795,1779,-1767,1796,1778,-1768,1780,1768,-1798,1758,1780,-1773,1782,1781,-1758,1768,1781,-1799,1782,1769,-1800,1799,1769,-1784,1770,1784,-1801,1801,1784,-1756,1802,1783,-1771,1759,1785,-1804,1759,1803,-1787,1771,1786,-1805,1805,1785,-1773,1771,1804,-1788,1787,1806,-1762,1788,1761,-1807,1773,1788,-1778,1807,1774,-1790,1796,1767,-1775,1808,1775,-1791,1789,1775,-1809,1765,1809,-1777,1776,1810,-1791,1811,1765,-1792,1792,1791,-1765,1777,1812,-1793,1793,1795,-1767,1793,1778,-1797,1794,1779,-1814,1794,1801,-1756,1795,1814,-1780,1798,1797,-1769,1797,1805,-1781,1805,1772,-1781,1815,1781,-1783,1816,1798,-1782,1817,1782,-1800,1799,1783,-1803,1784,1818,-1801,1770,1800,-1803,1819,1784,-1802,1785,1820,-1804,1803,1820,-1787,1804,1786,-1822,1805,1822,-1786,1823,1787,-1805,1824,1806,-1788,1788,1806,-1813,1777,1788,-1813,1807,1796,-1775,1807,1789,-1826,1808,1790,-1811,1825,1789,-1809,1811,1809,-1766,1826,1776,-1810,1826,1810,-1777,1791,1827,-1812,1791,1792,-1829,1792,1812,-1829,1829,1795,-1794,1829,1793,-1797,1813,1779,-1815,1794,1813,-1831,1831,1801,-1795,1832,1814,-1796,1816,1797,-1799,1805,1797,-1823,1816,1781,-1816,1782,1833,-1816,1782,1817,-1834,1834,1817,-1800,1802,1835,-1800,1784,1836,-1819,1802,1800,-1819,1819,1836,-1785,1831,1819,-1802,1785,1837,-1821,1786,1820,-1839,1786,1839,-1822,1804,1821,-1841,1785,1822,-1838,1787,1823,-1842,1823,1804,-1843,1824,1812,-1807,1787,1841,-1825,1807,1843,-1797,1807,1825,-1845,1808,1810,-1846,1825,1808,-1847,1809,1811,-1848,1809,1847,-1827,1848,1810,-1827,1827,1791,-1850,1850,1811,-1828,1828,1849,-1792,1812,1851,-1829,1852,1795,-1830,1829,1796,-1844,1813,1814,-1854,1830,1813,-1855,\r\n1831,1794,-1831,1832,1855,-1815,1856,1832,-1796,1816,1857,-1798,1822,1797,-1858,1816,1815,-1858,1858,1815,-1834,1833,1817,-1860,1834,1859,-1818,1834,1799,-1836,1802,1860,-1836,1861,1818,-1837,1802,1818,-1862,1862,1836,-1820,1831,1863,-1820,1820,1837,-1839,1839,1786,-1839,1864,1821,-1840,1864,1840,-1822,1804,1840,-1843,1822,1865,-1838,1866,1841,-1824,1842,1867,-1824,1812,1824,-1852,1851,1824,-1842,1868,1843,-1808,1844,1825,-1870,1807,1844,-1869,1848,1845,-1811,1808,1845,-1847,1870,1825,-1847,1850,1847,-1812,1847,1871,-1827,1871,1848,-1827,1827,1849,-1873,1873,1850,-1828,1828,1874,-1850,1851,1874,-1829,1856,1795,-1853,1852,1829,-1844,1814,1855,-1854,1813,1853,-1855,1854,1875,-1831,1831,1830,-1864,1856,1855,-1833,1822,1857,-1866,1858,1857,-1816,1876,1858,-1834,1877,1833,-1860,1859,1834,-1879,1834,1835,-1879,1861,1860,-1803,1860,1878,-1836,1879,1861,-1837,1862,1879,-1837,1880,1862,-1820,1863,1881,-1820,1837,1882,-1839,1839,1838,-1884,1864,1839,-1885,1864,1885,-1841,1842,1840,-1887,1882,1837,-1866,1851,1841,-1867,1866,1823,-1888,1888,1867,-1843,1867,1887,-1824,1868,1852,-1844,1870,1869,-1826,1889,1844,-1870,1844,1890,-1869,1846,1845,-1849,1891,1870,-1847,1892,1847,-1851,1871,1847,-1894,1848,1871,-1892,1872,1849,-1895,1827,1872,-1896,1850,1873,-1897,1873,1827,-1896,1874,1894,-1850,1851,1866,-1875,1856,1852,-1898,1853,1855,-1899,1854,1853,-1900,1854,1900,-1876,1875,1863,-1831,1855,1856,-1902,1865,1857,-1903,1902,1857,-1859,1876,1903,-1859,1876,1833,-1878,1877,1859,-1905,1878,1904,-1860,1861,1905,-1861,1860,1906,-1879,1879,1905,-1862,1907,1879,-1863,1907,1862,-1881,1819,1881,-1881,1863,1900,-1882,1882,1883,-1839,1908,1839,-1884,1884,1839,-1909,1864,1884,-1886,1885,1886,-1841,1842,1886,-1889,1865,1909,-1883,1910,1866,-1888,1867,1888,-1912,1867,1912,-1888,1852,1868,-1898,1913,1869,-1871,1914,1844,-1890,1913,1889,-1870,1914,1890,-1845,1868,1890,-1916,1848,1891,-1847,1891,1916,-1871,1893,1847,-1893,1850,1896,-1893,1871,1893,-1918,1871,1916,-1892,1872,1894,-1919,1919,1895,-1873,1920,1896,-1874,1920,1873,-1896,1921,1894,-1875,1910,\r\n1874,-1867,1901,1856,-1898,1898,1855,-1923,1898,1923,-1854,1899,1853,-1925,1854,1899,-1926,1854,1926,-1901,1875,1900,-1864,1855,1901,-1923,1865,1902,-1928,1858,1903,-1903,1903,1876,-1929,1876,1877,-1930,1877,1904,-1931,1904,1878,-1907,1905,1906,-1861,1905,1879,-1932,1931,1879,-1908,1932,1907,-1881,1880,1881,-1934,1900,1933,-1882,1882,1909,-1884,1908,1883,-1935,1935,1884,-1909,1884,1936,-1886,1888,1886,-1886,1865,1927,-1910,1910,1887,-1938,1888,1936,-1912,1867,1911,-1939,1939,1912,-1868,1887,1912,-1938,1868,1915,-1898,1913,1870,-1941,1941,1914,-1890,1942,1889,-1914,1890,1914,-1944,1890,1944,-1916,1940,1870,-1917,1893,1892,-1946,1946,1892,-1897,1917,1893,-1948,1917,1948,-1872,1948,1916,-1872,1894,1949,-1919,1872,1918,-1920,1919,1920,-1896,1950,1896,-1921,1949,1894,-1922,1921,1874,-1911,1944,1901,-1898,1898,1922,-1952,1952,1923,-1899,1924,1853,-1924,1924,1953,-1900,1953,1925,-1900,1854,1925,-1927,1926,1954,-1901,1955,1922,-1902,1902,1956,-1928,1957,1902,-1904,1958,1928,-1877,1903,1928,-1958,1929,1877,-1960,1958,1876,-1930,1960,1930,-1905,1877,1930,-1960,1904,1906,-1962,1905,1961,-1907,1931,1962,-1906,1963,1931,-1908,1932,1963,-1908,1932,1880,-1934,1900,1954,-1934,1909,1934,-1884,1934,1964,-1909,1936,1884,-1936,1935,1908,-1965,1888,1885,-1937,1909,1927,-1966,1910,1937,-1967,1967,1911,-1937,1911,1968,-1939,1867,1938,-1940,1969,1912,-1940,1969,1937,-1913,1944,1897,-1916,1942,1913,-1941,1914,1941,-1971,1889,1942,-1942,1914,1971,-1944,1890,1943,-1973,1972,1944,-1891,1940,1916,-1974,1945,1892,-1947,1947,1893,-1946,1946,1896,-1951,1947,1974,-1918,1948,1917,-1975,1973,1916,-1949,1975,1918,-1950,1976,1919,-1919,1920,1919,-1978,1978,1950,-1921,1949,1921,-1967,1910,1966,-1922,1944,1955,-1902,1955,1951,-1923,1952,1898,-1952,1952,1979,-1924,1923,1980,-1925,1924,1980,-1954,1981,1925,-1954,1925,1981,-1927,1982,1954,-1927,1902,1957,-1957,1956,1965,-1928,1983,1928,-1959,1957,1928,-1985,1929,1959,-1986,1986,1958,-1930,1987,1930,-1961,1961,1960,-1905,1930,1988,-1960,1962,1961,-1906,1962,1931,-1964,1989,1963,-1933,1932,1933,-1991,1954,1990,\r\n-1934,1934,1909,-1992,1934,1992,-1965,1936,1935,-1994,1964,1994,-1936,1991,1909,-1966,1949,1966,-1938,1967,1995,-1912,1936,1993,-1968,1995,1968,-1912,1968,1996,-1939,1997,1939,-1939,1997,1969,-1940,1937,1969,-1999,1942,1940,-2000,1941,2000,-1971,1914,1970,-1972,2001,1941,-1943,2002,1943,-1972,2002,1972,-1944,1972,2003,-1945,2004,1940,-1974,2005,1945,-1947,1947,1945,-2006,1950,2006,-1947,1947,2005,-1975,1948,1974,-2008,1973,1948,-2008,2008,1918,-1976,1949,1998,-1976,1976,1977,-1920,2008,1976,-1919,1920,1977,-2010,1950,1978,-2011,1978,1920,-2010,1944,2003,-1956,1951,1955,-2012,1952,1951,-1980,1979,2012,-1924,1923,2012,-1981,2013,1953,-1981,2014,1981,-1954,1982,1926,-1982,2015,1954,-1983,1956,1957,-2017,2017,1965,-1957,1983,2018,-1929,1983,1958,-1987,2018,1984,-1929,2016,1957,-1985,1985,1959,-1989,1985,1986,-1930,1987,1988,-1931,2019,1987,-1961,2019,1960,-1962,1961,1962,-2021,2021,1962,-1964,1989,2022,-1964,1989,1932,-1991,1954,2023,-1991,1934,1991,-1993,1992,2024,-1965,1993,1935,-1995,1994,1964,-2025,2017,1991,-1966,1937,1998,-1950,2025,1995,-1968,1967,1993,-2027,1995,2027,-1969,1968,2028,-1997,1938,1996,-1998,1997,2029,-1970,2030,1998,-1970,2004,1999,-1941,1999,2001,-1943,2000,1941,-2032,1970,2000,-1972,2001,2031,-1942,2002,1971,-2033,2002,2033,-1973,1972,2033,-2004,2004,1973,-2035,2005,1946,-2007,2010,2006,-1951,2005,2035,-1975,2036,2007,-1975,1973,2007,-2035,1975,2037,-2009,1975,1998,-2038,1977,1976,-2039,1976,2008,-2040,2040,2009,-1978,2010,1978,-2042,2009,2042,-1979,1955,2003,-2044,2043,2011,-1956,2011,2044,-1952,2045,1979,-1952,1979,2046,-2013,2012,2047,-1981,2048,1953,-2014,1980,2047,-2014,2014,2049,-1982,2014,1953,-2049,2050,1982,-1982,1954,2015,-2024,2050,2015,-1983,1956,2016,-2018,1983,2051,-2019,1986,2052,-1984,2018,2053,-1985,2053,2016,-1985,1985,1988,-2055,1985,2055,-1987,1987,2056,-1989,2019,2057,-1988,2020,2019,-1962,1962,2058,-2021,1962,2021,-2059,2021,1963,-2023,1989,2059,-2023,1989,1990,-2024,1991,2060,-1993,1992,2061,-2025,2026,1993,-1995,2024,2026,-1995,1991,2017,-2061,2062,1995,-2026,2025,1967,-2027,\r\n2027,1995,-2064,1968,2027,-2029,1996,2028,-2065,1997,1996,-2030,2029,2030,-1970,2030,2037,-1999,2065,1999,-2005,1999,2066,-2002,2000,2031,-2068,1971,2000,-2069,2001,2069,-2032,1971,2068,-2033,2002,2032,-2071,2033,2002,-2071,2033,2043,-2004,2071,2004,-2035,2035,2005,-2007,2035,2006,-2011,2035,2036,-1975,2036,2072,-2008,2072,2034,-2008,2037,2073,-2009,2038,1976,-2040,2040,1977,-2039,2008,2074,-2040,2040,2075,-2010,1978,2042,-2042,2076,2010,-2042,2009,2075,-2043,2043,2077,-2012,2077,2044,-2012,1951,2044,-2046,2045,2078,-1980,2078,2046,-1980,2046,2079,-2013,2012,2079,-2048,2013,2080,-2049,2080,2013,-2048,2014,2081,-2050,2049,2050,-1982,2014,2048,-2082,2082,2023,-2016,2083,2015,-2051,2017,2016,-2085,1983,2052,-2052,2018,2051,-2086,2086,2052,-1987,2018,2087,-2054,2053,2084,-2017,2054,1988,-2057,1985,2054,-2089,1985,2088,-2056,1986,2055,-2087,2089,2056,-1988,2058,2057,-2020,2057,2090,-1988,2058,2019,-2021,2091,2058,-2022,2022,2059,-2022,2092,2059,-1990,2082,1989,-2024,2060,2093,-1993,2061,1992,-2094,2061,2094,-2025,2095,2026,-2025,2017,2096,-2061,2062,2063,-1996,2097,2062,-2026,2026,2098,-2026,2099,2027,-2064,2028,2027,-2065,1996,2064,-2030,2100,2030,-2030,2030,2073,-2038,2065,2066,-2000,2065,2004,-2072,2001,2066,-2070,2101,2067,-2032,2067,2102,-2001,2102,2068,-2001,2031,2069,-2104,2068,2104,-2033,2104,2070,-2033,2033,2070,-2106,2105,2043,-2034,2071,2034,-2107,2035,2010,-2108,2035,2108,-2037,2036,2109,-2073,2106,2034,-2073,2008,2073,-2075,2039,2110,-2039,2110,2040,-2039,2074,2111,-2040,2075,2040,-2113,2113,2041,-2043,2107,2010,-2077,2041,2113,-2077,2114,2042,-2076,2105,2077,-2044,2077,2115,-2045,2045,2044,-2117,2078,2045,-2117,2078,2117,-2047,2046,2118,-2080,2079,2080,-2048,2080,2081,-2049,2049,2081,-2120,2049,2119,-2051,2083,2082,-2016,2119,2083,-2051,2084,2120,-2018,2051,2052,-2122,2085,2051,-2123,2018,2085,-2088,2121,2052,-2087,2123,2053,-2088,2084,2053,-2125,2054,2056,-2126,2054,2126,-2089,2088,2127,-2056,2128,2086,-2056,2129,2056,-2090,2089,1987,-2091,2057,2058,-2131,2057,2089,-2091,2058,2091,-2131,2091,2021,-2132,2059,\r\n2132,-2022,2092,2133,-2060,2092,1989,-2135,2134,1989,-2083,2096,2093,-2061,2093,2135,-2062,2094,2061,-2137,2094,2095,-2025,2026,2095,-2138,2017,2138,-2097,2063,2062,-2098,2097,2025,-2099,2137,2098,-2027,2139,2027,-2100,2099,2063,-2141,2139,2064,-2028,2141,2029,-2065,2142,2030,-2101,2100,2029,-2142,2142,2073,-2031,2065,2143,-2067,2065,2071,-2145,2066,2143,-2070,2145,2067,-2102,2031,2103,-2102,2146,2102,-2068,2102,2147,-2069,2103,2069,-2149,2104,2068,-2148,2104,2149,-2071,2105,2070,-2150,2071,2106,-2151,2035,2107,-2109,2109,2036,-2109,2072,2109,-2107,2151,2074,-2074,2152,2110,-2040,2040,2110,-2113,2151,2111,-2075,2152,2039,-2112,2153,2075,-2113,2154,2113,-2043,2107,2076,-2156,2113,2156,-2077,2114,2154,-2043,2075,2157,-2115,2149,2077,-2106,2158,2115,-2078,2115,2116,-2045,2078,2116,-2160,2078,2160,-2118,2118,2046,-2118,2079,2118,-2162,2079,2161,-2081,2162,2081,-2081,2163,2119,-2082,2083,2164,-2083,2119,2164,-2084,2084,2165,-2121,2120,2138,-2018,2051,2121,-2167,2051,2166,-2123,2085,2122,-2168,2167,2087,-2086,2168,2121,-2087,2123,2124,-2054,2169,2123,-2088,2084,2124,-2166,2129,2125,-2057,2054,2125,-2127,2170,2088,-2127,2088,2170,-2128,2128,2055,-2128,2128,2168,-2087,2089,2171,-2130,2130,2171,-2058,2089,2057,-2172,2131,2130,-2092,2132,2131,-2022,2059,2133,-2133,2092,2172,-2134,2092,2134,-2174,2174,2134,-2083,2093,2096,-2176,2175,2135,-2094,2135,2136,-2062,2176,2094,-2137,2095,2094,-2177,2176,2137,-2096,2175,2096,-2139,2097,2177,-2064,2097,2098,-2179,2178,2098,-2138,2139,2099,-2180,2063,2177,-2141,2180,2099,-2141,2064,2139,-2182,2141,2064,-2182,2142,2100,-2183,2141,2182,-2101,2183,2073,-2143,2184,2143,-2066,2071,2150,-2145,2065,2144,-2185,2148,2069,-2144,2146,2067,-2146,2145,2101,-2186,2103,2186,-2102,2146,2187,-2103,2187,2147,-2103,2188,2103,-2149,2104,2147,-2150,2106,2189,-2151,2108,2107,-2191,2108,2191,-2110,2109,2192,-2107,2183,2151,-2074,2152,2112,-2111,2151,2193,-2112,2152,2111,-2195,2075,2153,-2158,2152,2153,-2113,2154,2156,-2114,2195,2155,-2077,2190,2107,-2156,2195,2076,-2157,2154,2114,-2197,2197,2114,-2158,2198,2077,\r\n-2150,2158,2199,-2116,2198,2158,-2078,2159,2116,-2116,2159,2160,-2079,2160,2200,-2118,2118,2117,-2201,2161,2118,-2201,2161,2201,-2081,2162,2163,-2082,2202,2162,-2081,2163,2164,-2120,2164,2203,-2083,2120,2165,-2139,2204,2166,-2122,2122,2166,-2206,2167,2122,-2206,2087,2167,-2170,2204,2121,-2169,2123,2165,-2125,2169,2206,-2124,2129,2207,-2126,2208,2126,-2126,2208,2170,-2127,2209,2127,-2171,2128,2127,-2211,2128,2210,-2169,2171,2211,-2130,2171,2130,-2212,2212,2130,-2132,2132,2133,-2132,2173,2172,-2093,2213,2133,-2173,2174,2173,-2135,2174,2082,-2204,2214,2135,-2176,2135,2215,-2137,2216,2176,-2137,2137,2176,-2218,2175,2138,-2219,2097,2219,-2178,2097,2178,-2220,2178,2137,-2221,2179,2099,-2181,2181,2139,-2180,2221,2140,-2178,2180,2140,-2223,2223,2141,-2182,2183,2142,-2183,2141,2223,-2183,2143,2184,-2225,2225,2144,-2151,2225,2184,-2145,2148,2143,-2227,2145,2227,-2147,2228,2185,-2102,2145,2185,-2230,2186,2103,-2189,2228,2101,-2187,2187,2146,-2231,2198,2147,-2188,2188,2148,-2227,2147,2198,-2150,2231,2189,-2107,2225,2150,-2190,2108,2190,-2192,2109,2191,-2193,2231,2106,-2193,2232,2151,-2184,2232,2193,-2152,2111,2193,-2234,2194,2111,-2234,2153,2152,-2195,2153,2234,-2158,2196,2156,-2155,2235,2155,-2196,2155,2235,-2191,2195,2156,-2237,2114,2197,-2197,2157,2234,-2198,2237,2199,-2159,2159,2115,-2200,2238,2158,-2199,2159,2239,-2161,2200,2160,-2241,2161,2200,-2242,2161,2241,-2202,2202,2080,-2202,2162,2242,-2164,2202,2242,-2163,2163,2243,-2165,2243,2203,-2165,2218,2138,-2166,2244,2166,-2205,2244,2205,-2167,2167,2205,-2246,2169,2167,-2247,2247,2204,-2169,2218,2165,-2124,2169,2248,-2207,2218,2123,-2207,2211,2207,-2130,2207,2249,-2126,2208,2125,-2250,2170,2208,-2251,2209,2251,-2128,2209,2170,-2253,2251,2210,-2128,2247,2168,-2211,2130,2253,-2212,2130,2212,-2254,2254,2212,-2132,2131,2133,-2255,2255,2133,-2214,2215,2135,-2215,2214,2175,-2257,2136,2215,-2217,2216,2257,-2177,2257,2217,-2177,2217,2220,-2138,2258,2175,-2219,2219,2259,-2178,2219,2178,-2221,2180,2181,-2180,2221,2222,-2141,2221,2177,-2260,2180,2222,-2261,2261,2223,-2182,2232,2183,-2183,\r\n2182,2223,-2263,2184,2263,-2225,2226,2143,-2225,2184,2225,-2264,2229,2227,-2146,2146,2227,-2231,2228,2264,-2186,2229,2185,-2265,2188,2265,-2187,2228,2186,-2266,2187,2230,-2267,2198,2187,-2268,2188,2226,-2269,2269,2189,-2232,2225,2189,-2270,2190,2270,-2192,2231,2192,-2192,2232,2271,-2194,2271,2233,-2194,2194,2233,-2273,2153,2194,-2274,2234,2153,-2274,2274,2156,-2197,2236,2235,-2196,2275,2190,-2236,2156,2274,-2237,2196,2197,-2277,2277,2197,-2235,2237,2278,-2200,2279,2237,-2159,2159,2199,-2281,2238,2279,-2159,2238,2198,-2268,2159,2280,-2240,2160,2239,-2241,2240,2281,-2201,2241,2200,-2282,2282,2201,-2242,2202,2201,-2284,2243,2163,-2243,2284,2242,-2203,2243,2285,-2204,2244,2204,-2287,2205,2244,-2288,2245,2205,-2288,2246,2167,-2246,2246,2248,-2170,2247,2286,-2205,2248,2288,-2207,2289,2218,-2207,2211,2290,-2208,2291,2249,-2208,2292,2208,-2250,2250,2208,-2294,2170,2250,-2253,2209,2294,-2252,2295,2209,-2253,2251,2296,-2211,2210,2297,-2248,2290,2211,-2254,2212,2290,-2254,2254,2298,-2213,2255,2254,-2134,2215,2214,-2300,2258,2256,-2176,2300,2214,-2257,2215,2301,-2217,2216,2301,-2258,2217,2257,-2221,2289,2258,-2219,2219,2220,-2260,2180,2261,-2182,2221,2302,-2223,2303,2221,-2260,2304,2260,-2223,2260,2305,-2181,2306,2223,-2262,2232,2182,-2308,2262,2223,-2309,2262,2307,-2183,2224,2263,-2310,2268,2226,-2225,2269,2263,-2226,2229,2310,-2228,2310,2230,-2228,2311,2264,-2229,2264,2310,-2230,2188,2312,-2266,2313,2228,-2266,2310,2266,-2231,2266,2267,-2188,2314,2188,-2269,2269,2231,-2316,2275,2270,-2191,2191,2270,-2317,2316,2231,-2192,2232,2307,-2272,2271,2317,-2234,2272,2233,-2318,2194,2272,-2274,2234,2273,-2278,2274,2196,-2277,2318,2235,-2237,2275,2235,-2319,2319,2236,-2275,2197,2320,-2277,2277,2320,-2198,2321,2278,-2238,2280,2199,-2279,2279,2321,-2238,2322,2279,-2239,2267,2323,-2239,2239,2280,-2325,2239,2325,-2241,2281,2240,-2326,2241,2281,-2327,2282,2327,-2202,2282,2241,-2327,2283,2201,-2328,2284,2202,-2284,2243,2242,-2286,2244,2286,-2329,2287,2244,-2329,2329,2245,-2288,2330,2246,-2246,2246,2330,-2249,2331,2286,-2248,2248,2332,-2289,2288,\r\n2289,-2207,2290,2291,-2208,2292,2249,-2292,2292,2293,-2209,2333,2250,-2294,2252,2250,-2335,2294,2209,-2296,2335,2251,-2295,2252,2334,-2296,2296,2251,-2337,2296,2297,-2211,2331,2247,-2298,2298,2290,-2213,2298,2254,-2256,2300,2299,-2215,2215,2299,-2338,2258,2338,-2257,2300,2256,-2340,2215,2337,-2302,2301,2340,-2258,2257,2341,-2221,2289,2338,-2259,2259,2220,-2304,2342,2261,-2181,2303,2302,-2222,2304,2222,-2303,2304,2343,-2261,2260,2343,-2306,2342,2180,-2306,2306,2308,-2224,2342,2306,-2262,2262,2308,-2345,2262,2344,-2308,2309,2263,-2346,2224,2309,-2347,2268,2224,-2347,2347,2263,-2270,2311,2348,-2265,2313,2311,-2229,2310,2264,-2350,2312,2188,-2315,2312,2350,-2266,2265,2350,-2314,2349,2266,-2311,2266,2323,-2268,2351,2314,-2269,2316,2315,-2232,2347,2269,-2316,2275,2352,-2271,2316,2270,-2353,2353,2271,-2308,2317,2271,-2354,2317,2354,-2273,2272,2355,-2274,2356,2277,-2274,2274,2276,-2358,2318,2236,-2359,2275,2318,-2360,2358,2236,-2320,2319,2274,-2358,2276,2320,-2361,2361,2320,-2278,2321,2362,-2279,2280,2278,-2325,2321,2279,-2323,2363,2322,-2239,2238,2323,-2364,2325,2239,-2325,2281,2325,-2365,2326,2281,-2365,2327,2282,-2366,2282,2326,-2367,2283,2327,-2368,2284,2283,-2369,2286,2369,-2329,2287,2328,-2371,2245,2329,-2372,2287,2370,-2330,2371,2330,-2246,2372,2248,-2331,2286,2331,-2370,2332,2248,-2373,2332,2373,-2289,2288,2374,-2290,2290,2298,-2292,2333,2334,-2251,2295,2375,-2295,2335,2336,-2252,2294,2375,-2336,2295,2334,-2377,2296,2336,-2378,2378,2297,-2297,2378,2331,-2298,2299,2300,-2380,2299,2380,-2338,2256,2338,-2340,2379,2300,-2340,2381,2301,-2338,2301,2381,-2341,2340,2341,-2258,2341,2303,-2221,2289,2382,-2339,2302,2303,-2384,2304,2302,-2385,2385,2343,-2305,2343,2386,-2306,2342,2305,-2387,2308,2306,-2388,2306,2342,-2389,2308,2389,-2345,2353,2307,-2345,2347,2345,-2264,2309,2345,-2391,2390,2346,-2310,2268,2346,-2352,2311,2391,-2349,2392,2264,-2349,2393,2311,-2314,2392,2349,-2265,2312,2314,-2395,2312,2395,-2351,2395,2313,-2351,2323,2266,-2350,2396,2314,-2352,2352,2315,-2317,2347,2315,-2353,2275,2359,-2353,2397,2317,-2354,2317,2398,\r\n-2355,2272,2354,-2356,2273,2355,-2357,2361,2277,-2357,2276,2399,-2358,2400,2318,-2359,2359,2318,-2402,2319,2357,-2359,2360,2320,-2362,2360,2399,-2277,2362,2321,-2403,2362,2403,-2279,2324,2278,-2405,2321,2322,-2403,2363,2405,-2323,2323,2349,-2364,2325,2324,-2365,2326,2364,-2407,2365,2282,-2367,2327,2365,-2368,2366,2326,-2407,2367,2368,-2284,2407,2328,-2370,2370,2328,-2409,2371,2329,-2410,2329,2370,-2410,2372,2330,-2372,2410,2369,-2332,2372,2411,-2333,2332,2411,-2374,2288,2373,-2375,2374,2382,-2290,2295,2412,-2376,2413,2336,-2336,2375,2414,-2336,2412,2295,-2377,2377,2336,-2416,2296,2377,-2417,2378,2296,-2417,2410,2331,-2379,2380,2299,-2380,2380,2417,-2338,2339,2338,-2383,2418,2379,-2340,2381,2337,-2418,2419,2340,-2382,2340,2420,-2342,2341,2421,-2304,2421,2383,-2304,2302,2383,-2423,2422,2384,-2303,2384,2385,-2305,2385,2423,-2344,2388,2386,-2344,2388,2342,-2387,2306,2424,-2388,2387,2425,-2309,2306,2388,-2425,2426,2389,-2309,2389,2353,-2345,2347,2427,-2346,2345,2428,-2391,2390,2429,-2347,2346,2430,-2352,2431,2391,-2312,2392,2348,-2392,2393,2432,-2312,2395,2393,-2314,2433,2349,-2393,2394,2314,-2397,2312,2394,-2435,2395,2312,-2435,2430,2396,-2352,2352,2435,-2348,2359,2435,-2353,2317,2397,-2399,2389,2397,-2354,2398,2436,-2355,2437,2355,-2355,2356,2355,-2438,2361,2356,-2439,2439,2357,-2400,2400,2440,-2319,2358,2441,-2401,2440,2401,-2319,2401,2442,-2360,2439,2358,-2358,2360,2361,-2444,2360,2444,-2400,2362,2402,-2446,2403,2362,-2446,2446,2278,-2404,2404,2278,-2447,2447,2324,-2405,2448,2402,-2323,2449,2405,-2364,2450,2322,-2406,2449,2363,-2350,2364,2324,-2448,2451,2406,-2365,2365,2366,-2453,2452,2367,-2366,2366,2406,-2453,2408,2328,-2408,2407,2369,-2411,2408,2453,-2371,2371,2409,-2455,2455,2409,-2371,2454,2372,-2372,2372,2456,-2412,2411,2457,-2374,2374,2373,-2459,2382,2374,-2459,2375,2412,-2460,2413,2415,-2337,2413,2335,-2415,2375,2459,-2415,2377,2415,-2461,2416,2377,-2462,2378,2416,-2411,2380,2379,-2463,2380,2462,-2418,2339,2382,-2464,2418,2464,-2380,2418,2339,-2464,2417,2465,-2382,2340,2419,-2421,2419,2381,-2466,2421,2341,-2421,\r\n2421,2422,-2384,2422,2466,-2385,2467,2385,-2385,2468,2423,-2386,2343,2423,-2389,2469,2387,-2425,2387,2470,-2426,2426,2308,-2426,2471,2424,-2389,2389,2426,-2398,2427,2347,-2436,2427,2472,-2346,2345,2472,-2429,2428,2429,-2391,2430,2346,-2430,2431,2473,-2392,2432,2431,-2312,2392,2391,-2475,2393,2475,-2433,2393,2395,-2477,2449,2349,-2434,2474,2433,-2393,2394,2396,-2435,2395,2434,-2478,2478,2396,-2431,2359,2427,-2436,2398,2397,-2480,2436,2398,-2481,2481,2354,-2437,2437,2354,-2482,2356,2437,-2483,2356,2482,-2439,2361,2438,-2484,2444,2439,-2400,2440,2400,-2485,2358,2439,-2442,2400,2441,-2486,2401,2440,-2487,2401,2486,-2443,2442,2427,-2360,2443,2361,-2484,2360,2443,-2445,2487,2445,-2403,2445,2488,-2404,2446,2403,-2490,2404,2446,-2490,2447,2404,-2491,2448,2487,-2403,2491,2448,-2323,2405,2449,-2493,2450,2491,-2323,2493,2450,-2406,2364,2447,-2452,2451,2494,-2407,2452,2406,-2496,2407,2496,-2409,2410,2497,-2408,2408,2498,-2454,2455,2370,-2454,2454,2409,-2500,2409,2455,-2500,2454,2456,-2373,2500,2411,-2457,2457,2411,-2502,2457,2502,-2374,2458,2373,-2503,2503,2382,-2459,2504,2459,-2413,2413,2505,-2416,2414,2506,-2414,2459,2507,-2415,2415,2508,-2461,2377,2460,-2462,2416,2461,-2510,2416,2509,-2411,2464,2462,-2380,2417,2462,-2511,2463,2382,-2512,2512,2464,-2419,2418,2463,-2513,2510,2465,-2418,2420,2419,-2514,2465,2514,-2420,2420,2422,-2422,2466,2422,-2516,2384,2466,-2517,2517,2385,-2468,2467,2384,-2517,2423,2468,-2519,2517,2468,-2386,2518,2388,-2424,2519,2387,-2470,2469,2424,-2472,2519,2470,-2388,2470,2426,-2426,2471,2388,-2521,2479,2397,-2427,2427,2442,-2473,2521,2428,-2473,2522,2429,-2429,2430,2429,-2524,2473,2431,-2525,2474,2391,-2474,2432,2525,-2432,2393,2476,-2476,2432,2475,-2526,2476,2395,-2478,2474,2449,-2434,2396,2526,-2435,2477,2434,-2528,2528,2396,-2479,2430,2523,-2479,2398,2479,-2530,2398,2529,-2481,2481,2436,-2481,2437,2481,-2531,2437,2530,-2483,2482,2531,-2439,2438,2532,-2484,2439,2444,-2534,2400,2485,-2485,2440,2484,-2487,2441,2439,-2535,2485,2441,-2536,2536,2442,-2487,2537,2443,-2484,2533,2444,-2444,2487,2538,-2446,2445,\r\n2539,-2489,2489,2403,-2489,2404,2489,-2491,2451,2447,-2491,2448,2540,-2488,2491,2541,-2449,2474,2492,-2450,2405,2492,-2494,2542,2491,-2451,2542,2450,-2494,2543,2494,-2452,2494,2495,-2407,2407,2497,-2497,2408,2496,-2499,2410,2509,-2498,1472,2453,-2499,1459,2455,-2454,2454,2499,-2545,1459,2499,-2456,2456,2454,-2545,2500,2501,-2412,2456,2544,-2501,2457,2501,-2546,2457,2545,-2503,2458,2502,-2547,2382,2503,-2512,2546,2503,-2459,2459,2504,-2548,2413,2506,-2506,2415,2505,-2509,2414,2507,-2507,2547,2507,-2460,2548,2460,-2509,2460,2549,-2462,2509,2461,-2551,2464,2510,-2463,2463,2511,-2552,2512,2552,-2465,2512,2463,-2552,2510,2514,-2466,2514,2513,-2420,2420,2513,-2516,2515,2422,-2421,2466,2515,-2554,2516,2466,-2555,2517,2467,-2556,2516,2554,-2468,2518,2468,-2557,2517,2556,-2469,2518,2520,-2389,2519,2469,-2558,2469,2471,-2559,2519,2559,-2471,2560,2426,-2471,2471,2520,-2562,2479,2426,-2561,2562,2472,-2443,2521,2522,-2429,2472,2562,-2522,2522,2563,-2430,2564,2523,-2430,2524,2431,-2526,2565,2473,-2525,2474,2473,-2493,2566,2475,-2477,2567,2525,-2476,2477,2568,-2477,2526,2396,-2529,2527,2434,-2527,2477,2527,-2570,2528,2478,-2524,2479,2560,-2530,2480,2529,-2571,2481,2480,-2572,2530,2481,-2573,2482,2530,-2574,2482,2574,-2532,2438,2531,-2533,2537,2483,-2533,2575,2439,-2534,2576,2484,-2486,2577,2486,-2485,2534,2439,-2576,2535,2441,-2535,2576,2485,-2536,2562,2442,-2537,2536,2486,-2578,2537,2533,-2444,2538,2487,-2541,2538,2578,-2446,2578,2539,-2446,2579,2488,-2540,2489,2488,-2580,2579,2490,-2490,2451,2490,-2544,2541,2540,-2449,2542,2541,-2492,2492,2580,-2494,2542,2493,-2582,2494,2543,-2583,2497,2583,-2497,2496,2584,-2499,2509,2550,-2498,1459,2453,-1473,2498,1489,-1473,1435,2544,-2500,1435,2499,-1460,2501,2500,-2586,2500,2544,-2587,2587,2545,-2502,2588,2502,-2546,2588,2546,-2503,2511,2503,-2590,2546,2589,-2504,2506,2508,-2506,2507,2590,-2507,2507,2547,-2592,2592,2460,-2549,2593,2548,-2509,2592,2549,-2461,2461,2549,-2551,2464,2552,-2511,2551,2511,-2595,2512,2595,-2553,2512,2551,-2596,2596,2514,-2511,2597,2513,-2515,2515,2513,-2554,2598,2466,\r\n-2554,2598,2554,-2467,2554,2555,-2468,2555,2599,-2518,2518,2556,-2601,2601,2556,-2518,2520,2518,-2601,2469,2558,-2558,2602,2519,-2558,2558,2471,-2562,2519,2602,-2560,2560,2470,-2560,2561,2520,-2604,2522,2521,-2605,2562,2605,-2522,2563,2522,-2607,2563,2564,-2430,2607,2523,-2565,2524,2525,-2609,2565,2492,-2474,2524,2608,-2566,2567,2475,-2567,2566,2476,-2569,2525,2567,-2610,2610,2568,-2478,2526,2528,-2608,2526,2611,-2528,2569,2527,-2612,2612,2477,-2570,2528,2523,-2608,2560,2559,-2530,2529,2559,-2571,2571,2480,-2571,2572,2481,-2572,2530,2572,-2574,2574,2482,-2574,2613,2531,-2575,2531,2614,-2533,2532,2615,-2538,2616,2575,-2534,2484,2576,-2618,2484,2617,-2578,2575,2535,-2535,2576,2535,-2619,2536,2619,-2563,2536,2577,-2620,2616,2533,-2538,2540,2620,-2539,2538,2620,-2579,2578,2621,-2540,2579,2539,-2622,2579,2543,-2491,2541,2622,-2541,2581,2541,-2543,2623,2580,-2493,2624,2493,-2581,2581,2493,-2626,2579,2582,-2544,2583,2497,-2551,2496,2583,-2627,2496,2626,-2585,1489,2498,-2585,1401,2544,-1436,2500,2586,-2586,2501,2585,-2588,1387,2586,-2545,2545,2587,-2628,2588,2545,-2629,2588,2629,-2547,2511,2589,-2595,2589,2546,-2630,2593,2508,-2507,2507,2630,-2591,2506,2590,-2594,2591,2631,-2508,2592,2548,-2633,2593,2632,-2549,2592,2633,-2550,2633,2550,-2550,2552,2596,-2511,2551,2594,-2635,2552,2595,-2636,2634,2595,-2552,2597,2514,-2597,2553,2513,-2598,2553,2636,-2599,2554,2598,-2638,2554,2638,-2556,2599,2555,-2640,2601,2517,-2600,2601,2600,-2557,2520,2600,-2604,2558,2640,-2558,2602,2557,-2642,2642,2558,-2562,2643,2559,-2603,2561,2603,-2645,2521,2605,-2605,2522,2604,-2607,2645,2605,-2563,2646,2563,-2607,2647,2564,-2564,2647,2607,-2565,2525,2609,-2609,2623,2492,-2566,2565,2608,-2649,2649,2567,-2567,2650,2566,-2569,2649,2609,-2568,2568,2610,-2652,2612,2610,-2478,2526,2607,-2653,2526,2652,-2612,2611,2653,-2570,2569,2654,-2613,2559,2643,-2571,2571,2570,-2656,2656,2572,-2572,2573,2572,-2658,2574,2573,-2659,2531,2613,-2660,2613,2574,-2659,2531,2659,-2615,2614,2615,-2533,2537,2615,-2617,2616,2660,-2576,2576,2661,-2618,2619,2577,-2618,2662,2535,-2576,\r\n2618,2535,-2663,2576,2618,-2662,2619,2645,-2563,2540,2663,-2621,2621,2578,-2621,2579,2621,-2665,2581,2622,-2542,2622,2663,-2541,2665,2580,-2624,2493,2624,-2626,2580,2666,-2625,2581,2625,-2668,2664,2582,-2580,2583,2550,-2669,2583,2668,-2627,2669,2584,-2627,2584,1503,-1490,2544,1401,-1388,2670,2585,-2587,2587,2585,-2672,1387,2670,-2587,2587,2671,-2628,2545,2627,-2629,2672,2588,-2629,2588,2672,-2630,2589,2629,-2595,2631,2630,-2508,2590,2630,-2674,2590,2674,-2594,2631,2591,-2676,2592,2632,-2677,2674,2632,-2594,2592,2676,-2634,2633,2668,-2551,2635,2596,-2553,2634,2594,-2678,2634,2635,-2596,2635,2597,-2597,2636,2553,-2598,2678,2598,-2637,2678,2637,-2599,2637,2679,-2555,2554,2679,-2639,2638,2680,-2556,2680,2639,-2556,2599,2639,-2682,2601,2599,-2682,2600,2601,-2683,2603,2600,-2683,2558,2642,-2641,2640,2641,-2558,2643,2602,-2642,2642,2561,-2684,2603,2684,-2645,2683,2561,-2645,2685,2604,-2606,2685,2606,-2605,2605,2645,-2687,2647,2563,-2647,2646,2606,-2688,2647,2652,-2608,2688,2608,-2610,2565,2648,-2624,2689,2648,-2609,2566,2650,-2650,2650,2568,-2691,2688,2609,-2650,2691,2651,-2611,2651,2690,-2569,2691,2610,-2613,2692,2611,-2653,2611,2692,-2654,2569,2653,-2655,2612,2654,-2694,2655,2570,-2644,2571,2655,-2657,2656,2694,-2573,2572,2694,-2658,2658,2573,-2658,2695,2659,-2614,2696,2613,-2659,2697,2614,-2660,2614,2698,-2616,2615,2699,-2617,2699,2660,-2617,2575,2660,-2663,2700,2617,-2662,2619,2617,-2646,2662,2701,-2619,2618,2701,-2662,2702,2622,-2582,2580,2665,-2704,2704,2665,-2624,2624,2705,-2626,2703,2666,-2581,2624,2666,-2706,2706,2667,-2626,2667,2702,-2582,2626,2668,-2708,1503,2584,-2670,2669,2626,-2708,2670,2671,-2586,1361,2670,-1388,2671,2708,-2628,2627,2709,-2629,2672,2628,-2711,2594,2629,-2673,2630,2631,-2676,2673,2630,-2676,2590,2673,-2712,2590,2711,-2675,2712,2676,-2633,2674,2713,-2633,2676,2714,-2634,2633,2707,-2669,2594,2715,-2678,2634,2677,-2717,2635,2634,-2717,2636,2597,-2636,2678,2636,-2717,2717,2637,-2679,2718,2679,-2638,2679,2719,-2639,2638,2719,-2681,2720,2639,-2681,2639,2721,-2682,2722,2601,-2682,2682,2601,-2723,2603,\r\n2682,-2685,2642,2723,-2641,2641,2640,-2725,2725,2643,-2642,2642,2683,-2724,2684,2726,-2645,2683,2644,-2728,2728,2685,-2606,2729,2606,-2686,2686,2645,-2618,2605,2686,-2729,2730,2647,-2647,2687,2606,-2732,2687,2732,-2647,2652,2647,-2731,2689,2608,-2689,2648,2689,-2624,2733,2649,-2651,2690,2734,-2651,2649,2735,-2689,2736,2651,-2692,2651,2736,-2691,2691,2612,-2694,2737,2692,-2653,2692,2738,-2654,2654,2653,-2740,2693,2654,-2741,2741,2655,-2644,2741,2656,-2656,2742,2694,-2657,2743,2657,-2695,2658,2657,-2745,2695,2745,-2660,2613,2746,-2696,2746,2613,-2697,2744,2696,-2659,2614,2697,-2699,2697,2659,-2746,2615,2698,-2700,2699,2747,-2661,2662,2660,-2749,2686,2617,-2701,2700,2661,-2750,2662,2748,-2702,2750,2661,-2702,2703,2665,-2752,2665,2704,-2753,2704,2623,-2690,2753,2625,-2706,2703,2705,-2667,2706,2625,-2754,2669,1529,-1504,2669,2707,-2755,2671,2670,-2756,1361,2755,-2671,2671,2755,-2709,2708,2756,-2628,2627,2756,-2710,2628,2709,-2711,2672,2710,-2595,2757,2673,-2676,2711,2673,-2759,2711,2713,-2675,2712,2759,-2677,2712,2632,-2714,2714,2676,-2760,2714,2707,-2634,2594,2760,-2716,2677,2715,-2762,2761,2716,-2678,2635,2716,-2637,2762,2678,-2717,2718,2637,-2718,2762,2717,-2679,2718,2763,-2680,2719,2679,-2765,2720,2680,-2720,2720,2765,-2640,2766,2721,-2640,2722,2681,-2722,2722,2767,-2683,2682,2767,-2685,2723,2724,-2641,2641,2724,-2769,2725,2741,-2644,2725,2641,-2769,2727,2723,-2684,2726,2684,-2770,2726,2727,-2645,2728,2770,-2686,2729,2731,-2607,2685,2771,-2730,2772,2728,-2687,2730,2646,-2774,2687,2731,-2730,2732,2687,-2775,2646,2732,-2774,2737,2652,-2731,2689,2688,-2776,2733,2735,-2650,2733,2650,-2777,2690,2777,-2735,2776,2650,-2735,2688,2735,-2779,2691,2693,-2737,2779,2690,-2737,2692,2737,-2781,2692,2781,-2739,2782,2653,-2739,2739,2653,-2783,2654,2739,-2741,2783,2693,-2741,2741,2784,-2657,2785,2694,-2743,2656,2784,-2743,2744,2657,-2744,2694,2785,-2744,2695,2786,-2746,2695,2746,-2787,2746,2696,-2745,2697,2787,-2699,2788,2697,-2746,2698,2789,-2700,2789,2747,-2700,2790,2660,-2748,2790,2748,-2661,2791,2686,-2701,2750,2749,-2662,2791,2700,\r\n-2750,2701,2748,-2793,2750,2701,-2794,2751,2665,-2795,2751,2795,-2704,2796,2752,-2705,2752,2794,-2666,2689,2775,-2705,2797,2753,-2706,2705,2703,-2799,2669,2754,-1530,2707,2799,-2755,1360,2755,-1362,2755,1347,-2709,1354,2756,-2709,2756,2800,-2710,2710,2709,-2802,2594,2710,-2761,2757,2758,-2674,2711,2758,-2803,2711,2803,-2714,2804,2759,-2713,2713,2803,-2713,2714,2759,-2800,2714,2799,-2708,2715,2760,-2806,2715,2806,-2762,2762,2716,-2762,2718,2717,-2808,2808,2717,-2763,2718,2807,-2764,2764,2679,-2764,2809,2719,-2765,2720,2719,-2810,2765,2720,-2811,2765,2766,-2640,2811,2721,-2767,2722,2721,-2813,2812,2767,-2723,2813,2684,-2768,2814,2724,-2724,2815,2768,-2725,2725,2784,-2742,2784,2725,-2769,2727,2816,-2724,2769,2684,-2814,2769,2817,-2727,2727,2726,-2819,2770,2728,-2820,2685,2770,-2772,2774,2729,-2772,2772,2820,-2729,2686,2821,-2773,2822,2730,-2774,2687,2729,-2775,2732,2774,-2824,2824,2773,-2733,2737,2730,-2823,2688,2778,-2776,2825,2735,-2734,2733,2776,-2827,2690,2779,-2778,2777,2827,-2735,2776,2734,-2829,2825,2778,-2736,2829,2736,-2694,2779,2736,-2830,2780,2737,-2831,2781,2692,-2781,2781,2831,-2739,2782,2738,-2833,2782,2833,-2740,2834,2740,-2740,2829,2693,-2784,2835,2783,-2741,2836,2785,-2743,2836,2742,-2785,2837,2744,-2744,2785,2838,-2744,2786,2839,-2746,2786,2746,-2838,2837,2746,-2745,2697,2788,-2788,2698,2787,-2790,2840,2788,-2746,2789,2787,-2748,2790,2747,-2842,2790,2792,-2749,2686,2791,-2822,2750,2842,-2750,2749,2842,-2792,2793,2701,-2793,2750,2793,-2844,2844,2751,-2795,2795,2751,-2846,2798,2703,-2796,2846,2752,-2797,2796,2704,-2848,2846,2794,-2753,2847,2704,-2776,2705,2798,-2798,1529,2754,-1556,2848,2754,-2800,2755,1360,-1348,1347,1354,-2709,2756,1354,-2801,2849,2709,-2801,2849,2801,-2710,2801,2760,-2711,2757,2850,-2759,2802,2758,-2851,2803,2711,-2803,2759,2804,-2852,2804,2712,-2804,2799,2759,-2849,2852,2805,-2761,2715,2805,-2807,2806,2762,-2762,2807,2717,-2809,2808,2762,-2854,2807,2854,-2764,2855,2764,-2764,2809,2764,-2857,2810,2720,-2810,2765,2810,-2858,2857,2766,-2766,2812,2721,-2812,2857,2811,-2767,2812,2813,-2768,\r\n2814,2815,-2725,2814,2723,-2817,2858,2768,-2816,2784,2768,-2859,2727,2818,-2817,2813,2859,-2770,2817,2769,-2861,2726,2817,-2819,2728,2820,-2820,2770,2819,-2862,2861,2771,-2771,2774,2771,-2863,2820,2772,-2864,2772,2821,-2864,2822,2773,-2865,2865,2823,-2775,2866,2732,-2824,2824,2864,-2774,2824,2732,-2867,2737,2822,-2868,2847,2775,-2779,2868,2825,-2734,2869,2826,-2777,2868,2733,-2827,2779,2870,-2778,2827,2777,-2872,2827,2872,-2735,2873,2828,-2735,2776,2828,-2870,2825,2847,-2779,2829,2874,-2780,2737,2867,-2831,2781,2780,-2831,2831,2781,-2876,2832,2738,-2832,2782,2832,-2877,2782,2876,-2834,2833,2834,-2740,2835,2740,-2835,2783,2835,-2830,2836,2838,-2786,2858,2836,-2785,2877,2837,-2744,2743,2838,-2878,2786,2878,-2840,2840,2745,-2840,2878,2786,-2838,2879,2787,-2789,2880,2788,-2841,2787,2841,-2748,2790,2841,-2882,2792,2790,-2883,2821,2791,-2884,2750,2843,-2843,2883,2791,-2843,2884,2793,-2793,2793,2884,-2844,2844,2845,-2752,2794,2885,-2845,2846,2796,-2887,2847,2887,-2797,2794,2846,-2886,2848,1555,-2755,2800,1354,-1339,1338,2849,-2801,2801,2849,-2889,2801,2852,-2761,2802,2850,-2890,2803,2802,-2891,2891,2851,-2805,2759,2851,-2849,2803,2890,-2805,2805,2852,-2893,2805,2892,-2807,2806,2853,-2763,2807,2808,-2855,2808,2853,-2855,2763,2854,-2894,2764,2855,-2857,2763,2894,-2856,2809,2856,-2811,2810,2895,-2858,2812,2811,-2897,2857,2897,-2812,2812,2898,-2814,2814,2899,-2816,2814,2816,-2901,2858,2815,-2902,2902,2816,-2819,2813,2903,-2860,2860,2769,-2860,2860,2904,-2818,2905,2818,-2818,2819,2820,-2907,2861,2819,-2908,2862,2771,-2862,2865,2774,-2863,2820,2863,-2909,2821,2909,-2864,2822,2864,-2868,2823,2865,-2867,2910,2864,-2825,2911,2824,-2867,2868,2887,-2826,2912,2826,-2870,2868,2826,-2913,2870,2779,-2875,2913,2777,-2871,2913,2871,-2778,2827,2871,-2873,2914,2734,-2873,2873,2869,-2829,2914,2873,-2735,2847,2825,-2888,2829,2835,-2875,2915,2830,-2868,2875,2781,-2831,2875,2916,-2832,2832,2831,-2918,2918,2876,-2833,2919,2833,-2877,2919,2834,-2834,2834,2919,-2836,2836,2920,-2839,2836,2858,-2921,2877,2921,-2838,2922,2877,-2839,2923,2839,-2879,2840,\r\n2839,-2925,2878,2837,-2922,2787,2879,-2842,2879,2788,-2881,2880,2840,-2925,2879,2881,-2842,2881,2882,-2791,2792,2882,-2885,2909,2821,-2884,2843,2925,-2843,2926,2883,-2843,2927,2843,-2885,2928,2844,-2886,2886,2796,-2930,2930,2846,-2887,2931,2796,-2888,2930,2885,-2847,2848,1582,-1556,1338,2932,-2850,2849,2932,-2889,2933,2801,-2889,2852,2801,-2934,2889,2934,-2803,2802,2934,-2891,2935,2851,-2892,2891,2804,-2937,2935,2848,-2852,2890,2936,-2805,2852,2937,-2893,2938,2806,-2893,2938,2853,-2807,2854,2853,-2940,2940,2893,-2855,2763,2893,-2895,2941,2856,-2856,2894,2941,-2856,2942,2810,-2857,2895,2810,-2944,2897,2857,-2896,2896,2811,-2945,2812,2896,-2899,2897,2945,-2812,2903,2813,-2899,2814,2900,-2900,2815,2899,-2902,2816,2902,-2901,2858,2901,-2947,2902,2818,-2948,2859,2903,-2949,2948,2860,-2860,2949,2904,-2861,2950,2817,-2905,2947,2818,-2906,2905,2817,-2952,2952,2906,-2821,2819,2906,-2908,2907,2862,-2862,2862,2953,-2866,2908,2863,-2955,2820,2908,-2953,2954,2863,-2910,2915,2867,-2865,2866,2865,-2956,2915,2864,-2911,2911,2910,-2825,2866,2956,-2912,2868,2931,-2888,2957,2912,-2870,2868,2912,-2932,2958,2870,-2875,2913,2870,-2959,2913,2959,-2872,2872,2871,-2960,2960,2914,-2873,2961,2869,-2874,2962,2873,-2915,2835,2963,-2875,2915,2964,-2831,2830,2964,-2876,2875,2964,-2917,2965,2831,-2917,2965,2917,-2832,2832,2917,-2919,2966,2876,-2919,2967,2919,-2877,2919,2967,-2836,2920,2968,-2839,2969,2920,-2859,2877,2970,-2922,2877,2922,-2971,2838,2971,-2923,2923,2924,-2840,2923,2878,-2973,2972,2878,-2922,2879,2880,-2974,2880,2924,-2975,2881,2879,-2976,2976,2882,-2882,2882,2927,-2885,2909,2883,-2927,2927,2925,-2844,2925,2926,-2843,2928,2885,-2978,2931,2929,-2797,2978,2886,-2930,2930,2886,-2979,2885,2930,-2980,2935,1582,-2849,2932,1338,-1311,2932,2980,-2889,2933,2888,-2982,2982,2852,-2934,2889,2983,-2935,2936,2890,-2935,2891,2984,-2936,2985,2891,-2937,2982,2937,-2853,2937,2986,-2893,2892,2986,-2939,2938,2939,-2854,2854,2939,-2941,2940,2987,-2894,2987,2894,-2894,2941,2942,-2857,2988,2941,-2895,2942,2943,-2811,2895,2943,-2990,2897,2895,-2991,2944,2811,\r\n-2946,2896,2944,-2992,2898,2896,-2993,2945,2897,-2991,2992,2903,-2899,2900,2993,-2900,2901,2899,-2995,2902,2993,-2901,2946,2901,-2995,2969,2858,-2947,2902,2947,-2996,2992,2948,-2904,2949,2860,-2949,2996,2904,-2950,2950,2951,-2818,2950,2904,-2998,2947,2905,-2999,2905,2951,-2999,2999,2906,-2953,2999,2907,-2907,2862,2907,-2954,2955,2865,-2954,2954,3000,-2909,2952,2908,-3001,2954,2909,-3002,2866,2955,-2957,3002,2915,-2911,3003,2910,-2912,3004,2911,-2957,2912,2957,-2932,2961,2957,-2870,2958,2874,-2964,2958,3005,-2914,2913,3005,-2960,2872,2959,-3007,3007,2914,-2961,2960,2872,-3007,2962,2961,-2874,3007,2962,-2915,3008,2963,-2836,2915,3009,-2965,3010,2916,-2965,2916,3011,-2966,2917,2965,-3013,3013,2918,-2918,2967,2876,-2967,3013,2966,-2919,2835,2967,-3009,3014,2968,-2921,2971,2838,-2969,3015,2920,-2970,2972,2921,-2971,2922,3016,-2971,2971,3017,-2923,2923,3018,-2925,2972,3019,-2924,2973,2880,-3021,2975,2879,-2974,2924,3018,-2975,3020,2880,-2975,2976,2881,-2976,2976,3021,-2883,2927,2882,-3022,3022,2909,-2927,2927,3023,-2926,3022,2926,-2926,2885,2979,-2978,2931,2957,-2930,2978,2929,-3025,2930,2978,-3026,2930,3025,-2980,2935,1609,-1583,1309,2932,-1311,2932,3026,-2981,2888,2980,-2982,2981,3027,-2934,2933,3027,-2983,2983,3028,-2935,2936,2934,-3030,2985,2984,-2892,2935,2984,-1610,2985,2936,-3030,2937,2982,-3031,2986,2937,-3031,2938,2986,-2940,2940,2939,-3032,2940,2988,-2988,2987,2988,-2895,2941,3032,-2943,2988,3032,-2942,2943,2942,-3034,2943,3033,-2990,2989,2990,-2896,2944,2945,-3035,2991,2944,-3036,2991,2992,-2897,3034,2945,-2991,2994,2899,-2994,2902,3036,-2994,2946,2994,-3038,2946,3015,-2970,2947,2998,-2996,2995,3038,-2903,3039,2948,-2993,3039,2949,-2949,2997,2904,-2997,2996,2949,-3041,2950,2998,-2952,3041,2950,-2998,3042,2999,-2953,2907,2999,-2954,2955,2953,-3044,2954,3044,-3001,2952,3000,-3043,3001,2909,-3023,2954,3001,-3045,2955,3043,-2957,2915,3002,-3010,3003,3002,-2911,3003,2911,-3005,3004,2956,-3046,3024,2957,-2962,2958,2963,-3006,3005,3046,-2960,3046,3006,-2960,3007,2960,-3048,3006,3048,-2961,3049,2961,-2963,3050,2962,-3008,\r\n3008,3051,-2964,2964,3009,-3053,3010,3053,-2917,3010,2964,-3055,2916,3055,-3012,3056,2965,-3012,3056,3012,-2966,3012,3013,-2918,3057,2967,-2967,3013,3057,-2967,3008,2967,-3052,2968,3014,-3059,3015,3014,-2921,3059,2971,-2969,2972,2970,-3020,2922,3017,-3017,3060,2970,-3017,3017,2971,-3060,3018,2923,-3020,3061,2973,-3021,3061,2975,-2974,3018,3062,-2975,3020,2974,-3064,3064,2976,-2976,3064,3021,-2977,2927,3021,-3066,2927,3065,-3024,3022,2925,-3024,2977,2979,-3067,3024,2929,-2958,3049,2978,-3025,3025,2978,-3068,2979,3025,-3067,3026,2932,-1310,3026,3068,-2981,2980,3068,-2982,3069,3027,-2982,2982,3027,-3071,3071,3028,-2984,3029,2934,-3029,3072,2984,-2986,1639,1609,-2985,2985,3029,-3073,2982,3070,-3031,3073,2986,-3031,3074,2939,-2987,3074,3031,-2940,3075,2940,-3032,2988,2940,-3076,3032,3033,-2943,3076,3032,-2989,3077,2989,-3034,2990,2989,-3079,3035,2944,-3035,2991,3035,-3080,2991,3039,-2993,3034,2990,-3079,2994,2993,-3081,3036,2902,-3039,3036,3080,-2994,3037,2994,-3081,3015,2946,-3038,2995,2998,-3082,3038,2995,-3083,3040,2949,-3040,2996,3083,-2998,2996,3040,-3085,3041,2998,-2951,3041,2997,-3086,2999,3042,-3087,2999,3087,-2954,2953,3087,-3044,3086,3000,-3045,3086,3042,-3001,3022,3088,-3002,3001,3089,-3045,2956,3043,-3091,3003,3009,-3003,3003,3004,-3092,2956,3092,-3046,3093,3004,-3046,3049,3024,-2962,3005,2963,-3095,3094,3046,-3006,3006,3046,-3049,3095,3047,-2961,3007,3047,-3051,3096,2960,-3049,3050,3049,-2963,2963,3051,-3095,3052,3009,-3098,2964,3052,-3055,3010,3054,-3054,3053,3055,-2917,3055,3098,-3012,3056,3011,-3099,3012,3056,-3100,3100,3013,-3013,3051,2967,-3058,3100,3057,-3014,3058,3014,-3102,2968,3058,-3060,3102,3014,-3016,3103,3019,-2971,3104,3016,-3018,3103,2970,-3061,3060,3016,-3106,3017,3059,-3105,3106,3018,-3020,3107,3061,-3021,3108,2975,-3062,3106,3062,-3019,2974,3062,-3110,3109,3063,-2975,3107,3020,-3064,3108,3064,-2976,3021,3064,-3066,3110,3023,-3066,3111,3022,-3024,3112,2977,-3067,3113,2978,-3050,3113,3067,-2979,3114,3025,-3068,3114,3066,-3026,3026,1309,-1285,3115,3068,-3027,3068,3069,-2982,3069,3070,-3028,3071,\r\n3116,-3029,3117,3071,-2984,3029,3028,-3117,2984,3072,-1640,3029,3116,-3073,3030,3070,-3119,3073,3074,-2987,3073,3030,-3120,3120,3031,-3075,3075,3031,-3122,3076,2988,-3076,3032,3122,-3034,3076,3122,-3033,3077,3123,-2990,3033,3124,-3078,2989,3123,-3079,3034,3125,-3036,3035,3084,-3080,2991,3079,-3040,3034,3078,-3126,3038,3126,-3037,3126,3080,-3037,3127,3037,-3081,3015,3037,-3129,3041,3081,-2999,2995,3081,-3083,3082,3129,-3039,3040,3039,-3080,2996,3084,-3084,3083,3085,-2998,3084,3040,-3080,3085,3130,-3042,3087,2999,-3087,3087,3131,-3044,3044,3132,-3087,3022,3111,-3089,3088,3089,-3002,3133,3044,-3090,3043,3134,-3091,2956,3090,-3093,3009,3003,-3092,3093,3091,-3005,3135,3045,-3093,3093,3045,-3137,3094,3137,-3047,3046,3138,-3049,3139,3047,-3096,3095,2960,-3097,3050,3047,-3141,3096,3048,-3139,3049,3050,-3142,3051,3142,-3095,3009,3091,-3098,3143,3052,-3098,3144,3054,-3053,3054,3144,-3054,3053,3145,-3056,3055,3146,-3099,3147,3056,-3099,3147,3099,-3057,3012,3099,-3101,3051,3057,-3143,3057,3100,-3149,3102,3101,-3015,3058,3101,-3060,3102,3015,-3150,3019,3103,-3107,3104,3150,-3017,3103,3060,-3152,3016,3150,-3106,3151,3060,-3106,3059,3101,-3105,3152,3061,-3108,3152,3108,-3062,3153,3062,-3107,3153,3109,-3063,3154,3063,-3110,3154,3107,-3064,3064,3108,-3156,3064,3155,-3066,3111,3023,-3111,3110,3065,-3157,3157,3112,-3067,3113,3049,-3159,3113,3159,-3068,3160,3114,-3068,3161,3066,-3115,3115,3026,-1285,3162,3068,-3116,3069,3068,-3163,3163,3070,-3070,3071,1700,-3117,3117,1710,-3072,3072,1656,-1640,3116,1700,-3073,3118,3070,-3165,3119,3030,-3119,3074,3073,-3166,3166,3073,-3120,3120,3167,-3032,3165,3120,-3075,3167,3121,-3032,3121,3168,-3076,3076,3075,-3170,3122,3124,-3034,3169,3122,-3077,3170,3123,-3078,3124,3170,-3078,3123,3171,-3079,3172,3035,-3126,3035,3173,-3085,3125,3078,-3172,3174,3126,-3039,3127,3080,-3127,3037,3127,-3176,3128,3037,-3176,3128,3149,-3016,3041,3176,-3082,3082,3081,-3177,3082,3176,-3130,3174,3038,-3130,3177,3083,-3085,3178,3085,-3084,3178,3130,-3086,3130,3176,-3042,3087,3086,-3180,3087,3179,-3132,3043,3131,-3135,3133,3132,\r\n-3045,3086,3132,-3180,3111,3180,-3089,3089,3088,-3182,3133,3089,-3182,3090,3134,-3183,3182,3092,-3091,3093,3136,-3092,3183,3045,-3136,3135,3092,-3185,3045,3183,-3137,3185,3137,-3095,3137,3186,-3047,3046,3186,-3139,3139,3140,-3048,3095,3187,-3140,3095,3096,-3188,3050,3140,-3142,3138,3188,-3097,3141,3158,-3050,3189,3094,-3143,3136,3097,-3092,3143,3144,-3053,3143,3097,-3191,3144,3191,-3054,3145,3053,-3192,3055,3145,-3147,3098,3146,-3193,3193,3147,-3099,3099,3147,-3195,3195,3100,-3100,3057,3148,-3143,3195,3148,-3101,3102,3196,-3102,3149,3196,-3103,3106,3103,-3198,3104,3198,-3151,3151,3197,-3104,3105,3150,-3200,3105,3200,-3152,3101,3198,-3105,3201,3152,-3108,3202,3108,-3153,3106,3197,-3154,3153,3154,-3110,3107,3154,-3204,3155,3108,-3203,3065,3155,-3157,3111,3110,-3181,3156,3204,-3111,3157,3066,-3162,3113,3158,-3160,3205,3067,-3160,3114,3160,-3207,3160,3067,-3206,3114,3206,-3162,3207,3115,-1285,3115,3208,-3163,3162,3163,-3070,3164,3070,-3164,3071,1710,-1701,3117,1714,-1711,3072,1700,-1657,3119,3118,-3165,3166,3165,-3074,3164,3166,-3120,3209,3167,-3121,3165,3209,-3121,3121,3167,-3211,3168,3121,-3212,3169,3075,-3169,3122,3212,-3125,3212,3122,-3170,3213,3123,-3171,3214,3170,-3125,3213,3171,-3124,3172,3173,-3036,3172,3125,-3216,3173,3177,-3085,3171,3216,-3126,3174,3217,-3127,3218,3127,-3127,3127,3218,-3176,3128,3175,-3220,3128,3220,-3150,3176,3221,-3130,3221,3174,-3130,3178,3083,-3178,3178,3222,-3131,3222,3176,-3131,3131,3179,-3224,3131,3223,-3135,3133,3224,-3133,3179,3132,-3226,3180,3181,-3089,3224,3133,-3182,3226,3182,-3135,3092,3182,-3227,3183,3135,-3228,3184,3092,-3227,3184,3228,-3136,3136,3183,-3230,3185,3230,-3138,3185,3094,-3190,3137,3231,-3187,3186,3231,-3139,3232,3140,-3140,3187,3233,-3140,3188,3187,-3097,3234,3141,-3141,3138,3231,-3189,3158,3141,-3236,3189,3142,-3149,3190,3097,-3137,3143,3191,-3145,3236,3143,-3191,3145,3191,-3238,3146,3145,-3239,3146,3239,-3193,3098,3192,-3194,3193,3240,-3148,3240,3194,-3148,3195,3099,-3195,3195,3189,-3149,3196,3241,-3102,3149,3220,-3197,3150,3198,-3243,3151,3243,-3198,3150,3242,-3200,\r\n3105,3199,-3201,3200,3243,-3152,3101,3244,-3199,3201,3245,-3153,3107,3246,-3202,3152,3247,-3203,3197,3243,-3154,3154,3153,-3249,3203,3154,-3250,3107,3203,-3247,3250,3155,-3203,3250,3156,-3156,3204,3180,-3111,3250,3204,-3157,3251,3157,-3162,3158,3235,-3160,3205,3159,-3236,3206,3160,-3253,3253,3160,-3206,3161,3206,-3255,3115,3207,-3256,3256,3207,-1285,3115,3255,-3209,3257,3162,-3209,3258,3163,-3163,3164,3163,-3260,3166,3260,-3166,3164,3259,-3167,3209,3210,-3168,3165,3260,-3210,3210,3261,-3122,3121,3261,-3212,3168,3211,-3263,3263,3169,-3169,3212,3214,-3125,3212,3169,-3265,3265,3213,-3171,3170,3214,-3267,3267,3171,-3214,3172,3268,-3174,3215,3125,-3217,3172,3215,-3269,3177,3173,-3269,3267,3216,-3172,3221,3217,-3175,3217,3269,-3127,3218,3126,-3270,3270,3175,-3219,3271,3219,-3176,3219,3220,-3129,3272,3221,-3177,3177,3273,-3179,3178,3274,-3223,3222,3272,-3177,3223,3179,-3226,3226,3134,-3224,3132,3224,-3226,3275,3181,-3181,3224,3181,-3277,3135,3277,-3228,3183,3227,-3279,3226,3279,-3185,3184,3280,-3229,3135,3228,-3278,3183,3278,-3230,3190,3136,-3230,3185,3281,-3231,3137,3230,-3232,3189,3281,-3186,3232,3234,-3141,3139,3282,-3233,3233,3187,-3284,3139,3233,-3283,3284,3187,-3189,3234,3235,-3142,3231,3285,-3189,3143,3237,-3192,3143,3236,-3287,3190,3229,-3237,3287,3145,-3238,3145,3287,-3239,3238,3288,-3147,3146,3288,-3240,3239,3289,-3193,3193,3192,-3291,3240,3193,-3291,3240,3291,-3195,3291,3195,-3195,3189,3195,-3282,3241,3196,-3293,3244,3101,-3242,3196,3220,-3294,3198,3294,-3243,3242,3295,-3200,3200,3199,-3297,3200,3297,-3244,3244,3294,-3199,3201,3246,-3246,3152,3245,-3248,3202,3247,-3299,3153,3243,-3249,3154,3248,-3250,3203,3249,-3300,3300,3246,-3204,3202,3298,-3251,3275,3180,-3205,3301,3204,-3251,3302,3251,-3162,3235,3303,-3206,3160,3253,-3253,3254,3206,-3253,3253,3205,-3304,3161,3254,-3305,3207,3305,-3256,3305,3207,-3257,1284,1242,-3257,3255,3305,-3209,3162,3257,-3259,3305,3257,-3209,3258,3259,-3164,3306,3260,-3167,3306,3166,-3260,3209,3307,-3211,3308,3209,-3261,3261,3210,-3310,3211,3261,-3310,3262,3211,-3311,3262,3263,-3169,3264,\r\n3169,-3264,3212,3311,-3215,3212,3264,-3312,3267,3213,-3266,3266,3265,-3171,3311,3266,-3215,3215,3216,-3313,3268,3215,-3314,3268,3313,-3178,3312,3216,-3268,3221,3314,-3218,3315,3269,-3218,3218,3269,-3317,3270,3271,-3176,3270,3218,-3317,3219,3271,-3318,3219,3317,-3221,3272,3314,-3222,3273,3177,-3319,3319,3178,-3274,3274,3178,-3320,3222,3274,-3273,3223,3225,-3321,3223,3320,-3227,3320,3225,-3225,3181,3275,-3277,3321,3224,-3277,3227,3277,-3323,3323,3278,-3228,3226,3324,-3280,3280,3184,-3280,3325,3228,-3281,3322,3277,-3229,3278,3236,-3230,3281,3326,-3231,3231,3230,-3327,3327,3234,-3233,3232,3282,-3329,3284,3283,-3188,3329,3233,-3284,3282,3233,-3329,3188,3330,-3285,3235,3234,-3304,3285,3231,-3327,3188,3285,-3331,3143,3286,-3238,3236,3331,-3287,3287,3237,-3333,3333,3238,-3288,3238,3333,-3289,3334,3239,-3289,3289,3239,-3336,3289,3290,-3193,3240,3290,-3337,3240,3336,-3292,3291,3281,-3196,3196,3293,-3293,3244,3241,-3293,3220,3337,-3294,3294,3338,-3243,3242,3338,-3296,3339,3199,-3296,3339,3296,-3200,3200,3296,-3298,3340,3243,-3298,3244,3341,-3295,3245,3246,-3301,3342,3247,-3246,3343,3298,-3248,3340,3248,-3244,3344,3249,-3249,3249,3344,-3300,3203,3299,-3346,3203,3345,-3301,3301,3250,-3299,3346,3275,-3205,3204,3301,-3347,3304,3302,-3162,3253,3347,-3253,3348,3254,-3253,3349,3253,-3304,3350,3304,-3255,3305,3256,-3352,1242,3352,-3257,3258,3257,-3354,3354,3257,-3306,3258,3355,-3260,3260,3306,-3357,3259,3355,-3307,3308,3307,-3210,3307,3309,-3211,3260,3357,-3309,3358,3211,-3310,3359,3310,-3212,3262,3310,-3361,3262,3361,-3264,3263,3362,-3265,3311,3264,-3363,3267,3265,-3364,3266,3364,-3266,3266,3311,-3366,3215,3312,-3367,3215,3366,-3314,3177,3313,-3319,3312,3267,-3364,3367,3217,-3315,3315,3316,-3270,3368,3315,-3218,3270,3369,-3272,3270,3316,-3370,3271,3370,-3318,3220,3317,-3338,3272,3371,-3315,3273,3318,-3373,3273,3372,-3320,3274,3319,-3374,3272,3274,-3372,3324,3226,-3321,3320,3224,-3322,3276,3275,-3375,3321,3276,-3376,3323,3227,-3323,3278,3323,-3237,3376,3279,-3325,3377,3280,-3280,3322,3228,-3326,3377,3325,-3281,3326,3281,-3379,3327,3303,\r\n-3235,3232,3379,-3328,3232,3328,-3380,3380,3283,-3285,3328,3233,-3330,3329,3283,-3382,3330,3380,-3285,3285,3326,-3331,3237,3286,-3333,3323,3331,-3237,3382,3286,-3332,3333,3287,-3333,3288,3333,-3384,3334,3335,-3240,3384,3334,-3289,3385,3289,-3336,3385,3290,-3290,3385,3336,-3291,3291,3336,-3387,3281,3291,-3388,3293,3388,-3293,3341,3244,-3293,3293,3337,-3390,3338,3294,-3391,3338,3391,-3296,3392,3339,-3296,3393,3296,-3340,3296,3394,-3298,3297,3394,-3341,3294,3341,-3391,3342,3245,-3301,3343,3247,-3343,3343,3301,-3299,3395,3248,-3341,3344,3248,-3396,3344,3396,-3300,3299,3397,-3346,3398,3300,-3346,3275,3346,-3375,3399,3346,-3302,3302,3304,-3401,3253,3401,-3348,3348,3252,-3348,3350,3254,-3349,3401,3253,-3350,3303,3327,-3350,3304,3350,-3403,3352,3351,-3257,3354,3305,-3352,3352,1242,-1214,3403,3353,-3258,3258,3353,-3356,3403,3257,-3355,3404,3356,-3307,3260,3356,-3358,3355,3404,-3307,3308,3357,-3308,3309,3307,-3406,3358,3359,-3212,3406,3358,-3310,3407,3310,-3360,3360,3310,-3408,3360,3361,-3263,3263,3361,-3363,3408,3311,-3363,3363,3265,-3410,3365,3364,-3267,3364,3409,-3266,3365,3311,-3409,3410,3366,-3313,3366,3411,-3314,3411,3318,-3314,3410,3312,-3364,3368,3217,-3368,3314,3412,-3368,3315,3413,-3317,3414,3315,-3369,3369,3370,-3272,3369,3316,-3414,3317,3370,-3416,3317,3415,-3338,3371,3416,-3315,3372,3318,-3412,3372,3417,-3320,3417,3373,-3320,3371,3274,-3374,3320,3418,-3325,3320,3321,-3376,3375,3276,-3375,3322,3419,-3324,3377,3279,-3377,3376,3324,-3421,3322,3325,-3420,3421,3325,-3378,3378,3281,-3388,3378,3330,-3327,3422,3327,-3380,3328,3423,-3380,3380,3381,-3284,3328,3329,-3424,3329,3381,-3425,3330,3425,-3381,3426,3332,-3287,3323,3419,-3332,3427,3286,-3383,3382,3331,-3429,3333,3332,-3427,3383,3333,-3430,3383,3430,-3289,3431,3335,-3335,3431,3334,-3385,3430,3384,-3289,3432,3385,-3336,3336,3385,-3387,3387,3291,-3387,3389,3388,-3294,3292,3388,-3434,3341,3292,-3434,3434,3389,-3338,3390,3391,-3339,3295,3391,-3393,3392,3435,-3340,3393,3436,-3297,3393,3339,-3438,3394,3296,-3437,3438,3340,-3395,3341,3439,-3391,3398,3342,-3301,3440,3343,-3343,\r\n3399,3301,-3344,3395,3340,-3439,3344,3395,-3442,3344,3442,-3397,3396,3443,-3300,3299,3443,-3398,3397,3444,-3346,3398,3345,-3445,3445,3374,-3347,3445,3346,-3400,3304,3446,-3401,3401,3447,-3348,3347,3448,-3349,3348,3449,-3351,3401,3349,-3423,3422,3349,-3328,3402,3450,-3305,3352,3451,-3352,3354,3351,-3453,3352,1213,-3452,3453,3353,-3404,3353,3454,-3356,3403,3354,-3453,3455,3356,-3405,3357,3356,-3457,3454,3404,-3356,3357,3405,-3308,3406,3309,-3406,3358,3457,-3360,3406,3458,-3359,3359,3459,-3408,3460,3360,-3408,3461,3361,-3361,3361,3462,-3363,3408,3362,-3464,3464,3363,-3410,3465,3364,-3366,3466,3409,-3365,3365,3408,-3468,3366,3410,-3469,3366,3468,-3412,3410,3363,-3465,3368,3367,-3415,3314,3416,-3413,3412,3414,-3368,3315,3469,-3414,3315,3414,-3470,3369,3413,-3371,3415,3370,-3471,3471,3337,-3416,3371,3472,-3417,3372,3411,-3474,3372,3474,-3418,3417,3472,-3374,3371,3373,-3473,3320,3375,-3419,3324,3418,-3421,3375,3374,-3446,3376,3475,-3378,3376,3420,-3477,3325,3477,-3420,3478,3325,-3422,3421,3377,-3476,3387,3479,-3379,3378,3480,-3331,3481,3422,-3380,3379,3423,-3482,3380,3482,-3382,3483,3423,-3330,3381,3484,-3425,3483,3329,-3425,3330,3480,-3426,3485,3380,-3426,3426,3286,-3428,3428,3331,-3420,3486,3427,-3383,3428,3487,-3383,3426,3488,-3334,3429,3333,-3489,3429,3489,-3384,3383,3489,-3431,3335,3431,-3491,3491,3431,-3385,3430,3491,-3385,3432,3386,-3386,3432,3335,-3491,3387,3386,-3480,3388,3389,-3493,3493,3433,-3389,3439,3341,-3434,3434,3494,-3390,3337,3471,-3435,3495,3391,-3391,3392,3391,-3497,3392,3496,-3436,3339,3435,-3498,3436,3393,-3438,3437,3339,-3498,3438,3394,-3437,3498,3390,-3440,3440,3342,-3399,3440,3499,-3344,3343,3500,-3400,3438,3441,-3396,3441,3442,-3345,3501,3396,-3443,3443,3396,-3502,3502,3397,-3444,3503,3444,-3398,3398,3444,-3505,3399,3505,-3446,3450,3446,-3305,3401,3422,-3448,3347,3447,-3449,3449,3348,-3449,3449,3506,-3351,3450,3402,-3508,3508,3351,-3452,3509,3452,-3352,1213,1177,-3452,3453,3454,-3354,3453,3403,-3511,3403,3452,-3511,3455,3511,-3357,3455,3404,-3455,3512,3456,-3357,3513,3357,-3457,3357,3514,-3406,3405,\r\n3514,-3407,3358,3458,-3458,3457,3515,-3360,3406,3516,-3459,3515,3459,-3360,3407,3459,-3518,3460,3518,-3361,3407,3517,-3461,3461,3519,-3362,3518,3461,-3361,3462,3361,-3520,3462,3463,-3363,3467,3408,-3464,3520,3464,-3410,3465,3466,-3365,3365,3467,-3466,3520,3409,-3467,3410,3521,-3469,3473,3411,-3469,3410,3464,-3523,3523,3412,-3417,3414,3412,-3525,3469,3525,-3414,3414,3526,-3470,3525,3370,-3414,3525,3470,-3371,3415,3470,-3528,3471,3415,-3528,3528,3416,-3473,3473,3529,-3373,3372,3529,-3475,3474,3530,-3418,3417,3530,-3473,3418,3375,-3446,3420,3418,-3506,3376,3531,-3476,3476,3420,-3533,3376,3476,-3532,3325,3478,-3478,3419,3477,-3479,3478,3421,-3534,3421,3475,-3535,3479,3535,-3379,3378,3535,-3481,3536,3422,-3482,3423,3536,-3482,3380,3485,-3483,3381,3482,-3485,3483,3537,-3424,3424,3484,-3539,3483,3424,-3540,3480,3540,-3426,3485,3425,-3541,3541,3426,-3428,3419,3478,-3429,3486,3541,-3428,3486,3382,-3488,3428,3542,-3488,3426,3541,-3489,3429,3488,-3490,3430,3489,-3544,3544,3490,-3432,3544,3431,-3492,3545,3491,-3431,3386,3432,-3547,3490,3547,-3433,3386,3548,-3480,3494,3492,-3390,3388,3492,-3550,3439,3433,-3494,3388,3549,-3494,3434,3471,-3495,3495,3550,-3392,3495,3390,-3499,3391,3550,-3497,3496,3551,-3436,3552,3497,-3436,3436,3437,-3554,3437,3497,-3555,3438,3436,-3442,3498,3439,-3556,3398,3504,-3441,3556,3499,-3441,3343,3499,-3501,3399,3500,-3558,3441,3558,-3443,3501,3442,-3560,3501,3560,-3444,3502,3503,-3398,3502,3443,-3562,3444,3503,-3563,3444,3562,-3505,3399,3557,-3506,3418,3445,-3506,3446,3450,-3508,3422,3536,-3448,3448,3447,-3564,3564,3449,-3449,3449,3564,-3507,3508,3509,-3352,3451,1177,-3509,3509,3565,-3453,3453,3566,-3455,3453,3510,-3567,3510,3452,-3566,3455,3567,-3512,3512,3356,-3512,3455,3454,-3568,3456,3512,-3569,3357,3513,-3515,3456,3569,-3514,3406,3514,-3570,3570,3457,-3459,3457,3571,-3516,3406,3569,-3517,3458,3516,-3571,3515,3572,-3460,3459,3572,-3518,3518,3460,-3574,3517,3574,-3461,3518,3519,-3462,3462,3519,-3576,3462,3575,-3464,3463,3575,-3468,3520,3576,-3465,3577,3466,-3466,3467,3578,-3466,3520,3466,-3578,3410,3522,\r\n-3522,3468,3521,-3580,3468,3579,-3474,3580,3522,-3465,3523,3524,-3413,3523,3416,-3582,3414,3524,-3583,3469,3526,-3526,3414,3582,-3527,3470,3525,-3527,3527,3470,-3584,3527,3584,-3472,3416,3528,-3582,3528,3472,-3531,3473,3579,-3530,3529,3585,-3475,3474,3586,-3531,3420,3505,-3533,3475,3531,-3588,3532,3588,-3477,3531,3476,-3589,3421,3534,-3534,3542,3478,-3534,3587,3534,-3476,3479,3589,-3536,3480,3535,-3591,3423,3591,-3537,3482,3485,-3593,3592,3484,-3483,3483,3539,-3538,3591,3423,-3538,3484,3593,-3539,3539,3424,-3539,3590,3540,-3481,3592,3485,-3541,3428,3478,-3543,3594,3541,-3487,3486,3487,-3596,3596,3487,-3543,3541,3594,-3489,3489,3488,-3598,3543,3489,-3598,3430,3543,-3546,3490,3544,-3548,3598,3544,-3492,3598,3491,-3546,3599,3546,-3433,3546,3548,-3387,3600,3432,-3548,3548,3589,-3480,3494,3601,-3493,3492,3602,-3550,3555,3439,-3494,3493,3549,-3604,3584,3494,-3472,3604,3550,-3496,3498,3605,-3496,3496,3550,-3607,3496,3607,-3552,3552,3435,-3552,3497,3552,-3609,3554,3553,-3438,3553,3558,-3437,3554,3497,-3609,3436,3558,-3442,3555,3605,-3499,3440,3504,-3610,3556,3500,-3500,3610,3556,-3441,3500,3611,-3558,3559,3442,-3559,3559,3612,-3502,3501,3612,-3561,3560,3613,-3444,3503,3502,-3615,3613,3561,-3444,3561,3615,-3503,3503,3614,-3563,3609,3504,-3563,3505,3557,-3533,3616,3447,-3537,3616,3563,-3448,3564,3448,-3564,3506,3564,-3618,3618,3509,-3509,3508,1177,-3620,3509,3620,-3566,3566,3567,-3455,3566,3510,-3622,3510,3565,-3623,3623,3511,-3568,3512,3511,-3625,3512,3625,-3569,3568,3569,-3457,3513,3569,-3515,3626,3457,-3571,3457,3626,-3572,3627,3515,-3572,3569,3628,-3517,3570,3516,-3630,3515,3627,-3573,3572,3630,-3518,3573,3460,-3632,3518,3573,-3633,3574,3517,-3631,3460,3574,-3632,3519,3518,-3633,3575,3519,-3633,3575,3578,-3468,3633,3576,-3521,3464,3576,-3581,3577,3465,-3579,3577,3633,-3521,3521,3522,-3635,3579,3521,-3636,3580,3634,-3523,3523,3636,-3525,3637,3523,-3582,3638,3582,-3525,3582,3583,-3527,3583,3470,-3527,3639,3527,-3584,3640,3584,-3528,3581,3528,-3638,3528,3530,-3638,3529,3579,-3586,3474,3585,-3587,3530,3586,-3638,3587,3531,-3642,\r\n3588,3532,-3643,3531,3588,-3642,3643,3533,-3535,3596,3542,-3534,3534,3587,-3642,3535,3589,-3591,3644,3536,-3592,3484,3592,-3646,3539,3646,-3538,3647,3591,-3538,3484,3648,-3594,3646,3538,-3594,3646,3539,-3539,3590,3649,-3541,3592,3540,-3650,3594,3486,-3651,3596,3595,-3488,3595,3650,-3487,3488,3594,-3598,3543,3597,-3652,3545,3543,-3653,3653,3547,-3545,3653,3544,-3599,3598,3545,-3655,3599,3655,-3547,3600,3599,-3433,3546,3655,-3549,3547,3656,-3601,3589,3548,-3656,3494,3657,-3602,3492,3601,-3603,3658,3549,-3603,3659,3555,-3494,3658,3603,-3550,3603,3660,-3494,3494,3584,-3658,3550,3604,-3607,3604,3495,-3606,3607,3496,-3607,3551,3607,-3553,3608,3552,-3662,3553,3554,-3609,3558,3553,-3609,3555,3659,-3606,3610,3440,-3610,3500,3556,-3612,3610,3662,-3557,3642,3557,-3612,3558,3608,-3560,3559,3663,-3613,3612,3664,-3561,3665,3613,-3561,3614,3502,-3667,3561,3613,-3668,3561,3668,-3616,3669,3502,-3616,3562,3614,-3610,3642,3532,-3558,3644,3616,-3537,3563,3616,-3671,3564,3563,-3671,3617,3564,-3672,3618,3620,-3510,3618,3508,-3620,3619,1177,-1137,3672,3565,-3621,3566,3623,-3568,3621,3510,-3623,3566,3621,-3624,3672,3622,-3566,3623,3624,-3512,3512,3624,-3626,3568,3625,-3674,3628,3569,-3569,3674,3626,-3571,3675,3571,-3627,3675,3627,-3572,3628,3629,-3517,3674,3570,-3630,3676,3572,-3628,3572,3677,-3631,3678,3573,-3632,3678,3632,-3574,3574,3630,-3680,3679,3631,-3575,3575,3632,-3681,3578,3575,-3681,3633,3681,-3577,3580,3576,-3682,3577,3578,-3683,3577,3682,-3634,3634,3635,-3522,3683,3579,-3636,3634,3580,-3685,3636,3523,-3686,3636,3686,-3525,3637,3685,-3524,3687,3582,-3639,3638,3524,-3687,3582,3688,-3584,3639,3640,-3528,3688,3639,-3584,3689,3584,-3641,3585,3579,-3684,3690,3586,-3586,3637,3586,-3692,3692,3588,-3643,3641,3588,-3694,3643,3694,-3534,3534,3695,-3644,3694,3596,-3534,3534,3641,-3696,3649,3590,-3590,3644,3591,-3697,3697,3645,-3593,3645,3648,-3485,3647,3537,-3647,3647,3696,-3592,3648,3698,-3594,3646,3593,-3700,3592,3649,-3698,3700,3594,-3651,3595,3596,-3702,3702,3650,-3596,3594,3651,-3598,3703,3543,-3652,3703,3652,-3544,3652,3654,-3546,3547,\r\n3653,-3657,3653,3598,-3705,3654,3704,-3599,3599,3705,-3656,3705,3599,-3601,3706,3600,-3657,3589,3655,-3708,3601,3657,-3709,3601,3708,-3603,3658,3602,-3710,3659,3493,-3661,3658,3709,-3604,3603,3710,-3661,3689,3657,-3585,3604,3711,-3607,3604,3605,-3660,3712,3607,-3607,3712,3552,-3608,3552,3713,-3662,3661,3663,-3609,3610,3609,-3663,3556,3714,-3612,3556,3662,-3715,3611,3715,-3643,3663,3559,-3609,3663,3716,-3613,3664,3612,-3717,3665,3560,-3665,3613,3665,-3668,3502,3669,-3667,3666,3609,-3615,3717,3561,-3668,3668,3561,-3718,3718,3615,-3669,3615,3719,-3670,3644,3670,-3617,3564,3670,-3672,3620,3618,-3721,3618,3619,-3722,3721,3619,-1137,3672,3620,-3723,3723,3621,-3623,3621,3723,-3624,3672,3724,-3623,3725,3624,-3624,3624,3725,-3626,3726,3673,-3626,3568,3673,-3629,3674,3675,-3627,3676,3627,-3676,3673,3629,-3629,3629,3727,-3675,3676,3677,-3573,3630,3677,-3729,3729,3678,-3632,3678,3730,-3633,3679,3630,-3732,3729,3631,-3680,3680,3632,-3731,3680,3682,-3579,3732,3681,-3634,3580,3681,-3734,3682,3734,-3634,3634,3735,-3636,3736,3683,-3636,3684,3580,-3734,3737,3634,-3685,3738,3636,-3686,3738,3686,-3637,3685,3637,-3740,3687,3740,-3583,3687,3638,-3742,3638,3686,-3743,3582,3740,-3689,3743,3640,-3640,3688,3743,-3640,3689,3640,-3745,3745,3585,-3684,3586,3690,-3692,3745,3690,-3586,3637,3691,-3740,3693,3588,-3693,3642,3715,-3693,3641,3693,-3696,3643,3746,-3695,3643,3695,-3748,3701,3596,-3695,3589,3707,-3650,3748,3644,-3697,3697,3749,-3646,3645,3749,-3649,3699,3647,-3647,3647,3750,-3697,3648,3751,-3699,3698,3752,-3594,3752,3699,-3594,3753,3697,-3650,3700,3651,-3595,3700,3650,-3703,3701,3702,-3596,3754,3703,-3652,3755,3652,-3704,3652,3756,-3655,3653,3757,-3657,3653,3704,-3758,3704,3654,-3757,3705,3758,-3656,3600,3706,-3706,3706,3656,-3760,3753,3707,-3656,3689,3708,-3658,3602,3708,-3690,3602,3760,-3710,3659,3660,-3762,3709,3710,-3604,3762,3660,-3711,3604,3763,-3712,3711,3764,-3607,3659,3763,-3605,3712,3606,-3765,3552,3712,-3714,3661,3713,-3766,3663,3661,-3767,3609,3767,-3663,3611,3714,-3716,3768,3714,-3663,3663,3766,-3717,3716,3769,-3665,3665,3664,\r\n-3771,3770,3667,-3666,3669,3771,-3667,3767,3609,-3667,3717,3667,-3773,3773,3668,-3718,3718,3774,-3616,3718,3668,-3774,3615,3774,-3720,3669,3719,-3772,3748,3670,-3645,3775,3671,-3671,3618,3721,-3721,3620,3720,-3723,1117,3721,-1137,3672,3722,-3777,3723,3622,-3725,3623,3723,-3726,3776,3724,-3673,3725,3726,-3626,3726,3727,-3674,3777,3675,-3675,3778,3676,-3676,3673,3727,-3630,3777,3674,-3728,3676,3779,-3678,3728,3677,-3781,3728,3731,-3631,3729,3781,-3679,3730,3678,-3783,3783,3679,-3732,3729,3679,-3785,3680,3730,-3735,3680,3734,-3683,3732,3785,-3682,3633,3734,-3733,3681,3785,-3734,3737,3735,-3635,3735,3736,-3636,3736,3745,-3684,3684,3733,-3738,3685,3739,-3739,3738,3786,-3687,3687,3787,-3741,3741,3638,-3789,3687,3741,-3788,3786,3742,-3687,3638,3742,-3789,3740,3789,-3689,3744,3640,-3744,3789,3743,-3689,3744,3790,-3690,3739,3691,-3691,3745,3791,-3691,3792,3693,-3693,3793,3692,-3716,3693,3747,-3696,3747,3746,-3644,3694,3746,-3702,3753,3649,-3708,3794,3748,-3697,3751,3749,-3698,3751,3648,-3750,3699,3795,-3648,3750,3647,-3796,3794,3696,-3751,3796,3698,-3752,3796,3752,-3699,3797,3699,-3753,3798,3697,-3754,3700,3754,-3652,3700,3702,-3800,3701,3799,-3703,3800,3703,-3755,3652,3755,-3757,3755,3703,-3801,3759,3656,-3758,3705,3801,-3759,3655,3758,-3803,3801,3705,-3707,3753,3655,-3803,3760,3602,-3690,3710,3709,-3761,3660,3803,-3762,3659,3761,-3805,3762,3805,-3661,3762,3710,-3807,3804,3711,-3764,3711,3807,-3765,3659,3804,-3764,3808,3712,-3765,3713,3712,-3809,3713,3809,-3766,3766,3661,-3766,3768,3662,-3768,3810,3715,-3715,3810,3714,-3769,3716,3766,-3812,3716,3812,-3770,3664,3769,-3771,3770,3772,-3668,3771,3813,-3667,3666,3813,-3768,3772,3814,-3718,3773,3717,-3816,3718,3816,-3775,3773,3816,-3719,3719,3774,-3818,3719,3817,-3772,3748,3775,-3671,3775,3818,-3672,3720,3721,-3820,3720,3819,-3723,1117,3820,-3722,3722,3819,-3777,3821,3723,-3725,3822,3725,-3724,3776,3823,-3725,3726,3725,-3823,3727,3726,-3825,3778,3675,-3778,3778,3825,-3677,3727,3826,-3778,3676,3825,-3780,3779,3827,-3678,3780,3677,-3829,3728,3780,-3732,3829,3781,-3730,3782,3678,-3782,\r\n3730,3782,-3735,3783,3784,-3680,3830,3783,-3732,3729,3784,-3832,3832,3785,-3733,3832,3732,-3735,3833,3733,-3786,3737,3834,-3736,3736,3735,-3835,3834,3745,-3737,3737,3733,-3834,3835,3738,-3740,3786,3738,-3837,3837,3740,-3788,3741,3788,-3839,3839,3787,-3742,3840,3742,-3787,3788,3742,-3842,3837,3789,-3741,3842,3744,-3744,3843,3743,-3790,3744,3844,-3791,3845,3689,-3791,3791,3739,-3691,3791,3745,-3847,3693,3792,-3848,3792,3692,-3849,3692,3793,-3849,3793,3715,-3811,3847,3747,-3694,3849,3746,-3748,3850,3701,-3747,3794,3775,-3749,3751,3697,-3799,3797,3795,-3700,3751,3851,-3797,3796,3852,-3753,3852,3797,-3753,3798,3753,-3854,3700,3854,-3755,3854,3700,-3800,3854,3799,-3702,3758,3801,-3856,3758,3853,-3803,3802,3853,-3754,3760,3689,-3846,3806,3710,-3761,3660,3856,-3804,3804,3761,-3804,3857,3805,-3763,3660,3805,-3857,3806,3858,-3763,3804,3807,-3712,3764,3807,-3860,3808,3764,-3860,3713,3808,-3861,3713,3860,-3810,3861,3765,-3810,3766,3765,-3863,3768,3767,-3864,3863,3810,-3769,3766,3864,-3812,3716,3811,-3813,3865,3769,-3813,3770,3769,-3866,3865,3772,-3771,3813,3771,-3867,3813,3867,-3768,3772,3868,-3815,3815,3717,-3815,3869,3773,-3816,3816,3870,-3775,3773,3869,-3817,3774,3871,-3818,3817,3872,-3772,3775,3794,-3819,3820,3819,-3722,3820,1117,-1072,3776,3819,-3874,3821,3822,-3724,3821,3724,-3824,3874,3823,-3777,3875,3726,-3823,3824,3726,-3876,3727,3824,-3827,3777,3876,-3779,3778,3877,-3826,3826,3878,-3778,3825,3827,-3780,3827,3879,-3678,3828,3677,-3880,3780,3828,-3881,3881,3731,-3781,3829,3882,-3782,3831,3829,-3730,3781,3882,-3783,3832,3734,-3783,3784,3783,-3832,3830,3883,-3784,3731,3881,-3831,3832,3884,-3786,3884,3833,-3786,3885,3834,-3738,3834,3846,-3746,3833,3886,-3738,3836,3738,-3836,3887,3835,-3740,3836,3840,-3787,3787,3888,-3838,3788,3841,-3839,3889,3741,-3839,3787,3839,-3889,3889,3839,-3742,3840,3841,-3743,3837,3843,-3790,3744,3842,-3845,3842,3743,-3891,3890,3743,-3844,3790,3844,-3846,3791,3887,-3740,3791,3846,-3892,3792,3892,-3848,3893,3792,-3849,3848,3793,-3895,3793,3810,-3895,3747,3847,-3850,3849,3895,-3747,3895,3850,-3747,3751,\r\n3798,-3852,3796,3851,-3853,3855,3798,-3854,3853,3758,-3856,3845,3896,-3761,3896,3806,-3761,3856,3897,-3804,3804,3803,-3899,3857,3899,-3806,3857,3762,-3859,3805,3899,-3857,3896,3858,-3807,3804,3898,-3808,3807,3900,-3860,3901,3808,-3860,3860,3808,-3902,3902,3809,-3861,3861,3862,-3766,3903,3861,-3810,3766,3862,-3865,3867,3863,-3768,3863,3894,-3811,3811,3864,-3905,3812,3811,-3905,3865,3812,-3906,3865,3868,-3773,3872,3866,-3772,3867,3813,-3867,3868,3906,-3815,3869,3815,-3815,3816,3907,-3871,3774,3870,-3872,3869,3908,-3817,3817,3871,-3910,3817,3909,-3873,3820,3910,-3820,3820,1071,-3911,3819,3911,-3874,3776,3873,-3875,3875,3822,-3822,3821,3823,-3913,3874,3912,-3824,3875,3913,-3825,3824,3878,-3827,3777,3914,-3877,3778,3876,-3878,3877,3915,-3826,3777,3878,-3915,3825,3915,-3828,3879,3827,-3916,3916,3828,-3880,3917,3880,-3829,3780,3880,-3919,3881,3780,-3920,3920,3882,-3830,3920,3829,-3832,3832,3782,-3883,3831,3783,-3884,3883,3830,-3922,3881,3922,-3831,3884,3832,-3924,3884,3924,-3834,3834,3885,-3847,3737,3886,-3886,3833,3925,-3887,3836,3835,-3888,3926,3840,-3837,3837,3888,-3928,3928,3838,-3842,3928,3889,-3839,3929,3888,-3840,3929,3839,-3890,3926,3841,-3841,3837,3927,-3844,3844,3842,-3931,3931,3842,-3891,3843,3927,-3891,3932,3845,-3845,3887,3791,-3934,3891,3846,-3886,3891,3933,-3792,3892,3792,-3894,3934,3847,-3893,3893,3848,-3936,3863,3848,-3895,3934,3849,-3848,3934,3895,-3850,3895,3936,-3851,3851,3798,-3938,3798,3855,-3938,3858,3896,-3846,3856,3899,-3898,3897,3898,-3804,3899,3857,-3939,3858,3939,-3858,3900,3807,-3899,3859,3900,-3941,3859,3940,-3902,3902,3860,-3902,3941,3809,-3903,3862,3861,-3943,3903,3942,-3862,3941,3903,-3810,3943,3864,-3863,3944,3863,-3868,3864,3945,-3905,3812,3904,-3947,3812,3946,-3906,3865,3905,-3948,3865,3947,-3869,3948,3866,-3873,3944,3867,-3867,3949,3906,-3869,3814,3906,-3951,3869,3814,-3951,3907,3816,-3909,3907,3951,-3871,3952,3871,-3871,3907,3908,-3870,3872,3909,-3954,3819,3910,-3912,1001,3910,-1072,3954,3873,-3912,3954,3874,-3874,3955,3875,-3822,3821,3912,-3956,3954,3912,-3875,3875,3955,-3914,3824,3913,\r\n-3879,3914,3956,-3877,3877,3876,-3957,3957,3915,-3878,3956,3914,-3879,3916,3879,-3916,3917,3828,-3917,3917,3958,-3881,3959,3918,-3881,3780,3918,-3920,3881,3919,-3923,3923,3882,-3921,3960,3920,-3832,3923,3832,-3883,3831,3883,-3962,3830,3962,-3922,3921,3961,-3884,3922,3963,-3831,3923,3964,-3885,3964,3924,-3885,3925,3833,-3925,3885,3886,-3966,3886,3925,-3966,3887,3966,-3837,3926,3836,-3968,3927,3888,-3969,3841,3926,-3929,3928,3969,-3890,3929,3968,-3889,3969,3929,-3890,3970,3930,-3843,3971,3844,-3931,3931,3970,-3843,3931,3890,-3973,3890,3927,-3973,3845,3932,-3859,3932,3844,-3974,3974,3887,-3934,3885,3965,-3892,3891,3975,-3934,3976,3892,-3894,3977,3934,-3893,3863,3935,-3849,3935,3978,-3894,3895,3934,-3937,3897,3899,-3980,3897,3980,-3899,3857,3939,-3939,3899,3938,-3982,3858,3932,-3940,3900,3898,-3981,3982,3940,-3901,3901,3940,-3984,3983,3902,-3902,3941,3902,-3985,3942,3943,-3863,3942,3903,-3986,3941,3984,-3904,3864,3943,-3946,3863,3944,-3936,3946,3904,-3946,3946,3986,-3906,3947,3905,-3988,3949,3868,-3948,3948,3944,-3867,3872,3953,-3949,3906,3949,-3951,3950,3988,-3870,3907,3989,-3952,3952,3870,-3952,3988,3907,-3870,3910,3990,-3912,3910,1001,-3991,3991,3954,-3912,3912,3992,-3956,3954,3992,-3913,3955,3993,-3914,3913,3956,-3879,3877,3956,-3958,3994,3915,-3958,3916,3915,-3996,3916,3995,-3918,3917,3996,-3959,3958,3959,-3881,3959,3997,-3919,3997,3919,-3919,3998,3922,-3920,3999,3923,-3921,3920,3960,-4000,3831,4000,-3961,4000,3831,-3962,3830,3963,-3963,3921,3962,-4002,3921,4000,-3962,3963,3922,-4003,4003,3964,-3924,3924,3964,-4005,3924,4004,-3926,3925,4005,-3966,3966,3887,-3975,3836,3966,-3968,3926,3967,-4007,3968,4007,-3928,3926,3969,-3929,4008,3968,-3930,3969,4008,-3930,3970,3971,-3931,3971,4009,-3845,3931,3972,-3971,4010,3972,-3928,3844,4009,-3974,3973,3939,-3933,3974,3933,-3976,3965,4011,-3892,4012,3975,-3892,3977,3892,-3977,3978,3976,-3894,3935,3944,-3979,3981,3979,-3900,3897,3979,-3981,4013,3938,-3940,3938,4014,-3982,3982,3900,-3981,3940,3982,-4016,3940,4016,-3984,3983,3984,-3903,3942,4017,-3944,4018,3985,-3904,3942,3985,-4018,\r\n4018,3903,-3985,3945,3943,-4020,3945,4020,-3947,3946,4020,-3987,3905,3986,-3988,3947,3987,-3950,3944,3948,-4022,3948,3953,-4023,3950,3949,-4024,4023,3988,-3951,3907,3988,-3990,3911,3990,-3992,1001,948,-3991,3991,4024,-3955,4025,3955,-3993,3954,4024,-3993,3955,4025,-3994,3913,3993,-4027,3913,4026,-3957,3956,4026,-3958,3994,3995,-3916,4027,3994,-3958,4028,3917,-3996,3917,4028,-3997,3996,4029,-3959,3958,4029,-3960,3959,4030,-3998,3997,3998,-3920,3998,4002,-3923,3923,3999,-4032,3999,3960,-4033,4032,3960,-4001,3962,3963,-4034,3962,4034,-4002,4001,4035,-3922,4000,3921,-4036,4002,4036,-3964,4031,3964,-4004,3923,4031,-4004,4031,4004,-3965,3925,4004,-4006,4005,4037,-3966,3966,3974,-4039,3966,4039,-3968,3967,4039,-4007,4040,3926,-4007,3968,4041,-4008,4010,3927,-4008,4042,3969,-3927,4008,4043,-3969,4042,4008,-3970,3971,3970,-4045,4009,3971,-4046,3972,4046,-3971,4047,3972,-4011,3973,4009,-4049,3973,4049,-3940,3975,4038,-3975,4037,4011,-3966,4012,3891,-4012,4012,4050,-3976,3977,3976,-4052,3976,3978,-4053,3944,4021,-3979,4053,3979,-3982,3979,4054,-3981,4013,4055,-3939,4013,3939,-4050,4055,4014,-3939,4053,3981,-4015,3982,3980,-4055,4054,4015,-3983,3940,4015,-4017,3984,3983,-4017,4056,3943,-4018,4018,4057,-3986,4058,4017,-3986,3984,4059,-4019,4056,4019,-3944,4019,4020,-3946,4060,3986,-4021,3987,3986,-4062,3987,4061,-3950,3948,4022,-4022,4061,4023,-3950,4023,4062,-3989,3990,948,-3992,3991,4063,-4025,3992,4024,-4026,3993,4025,-4065,3993,4064,-4027,3957,4026,-4028,4065,3995,-3995,4027,4066,-3995,4028,3995,-4066,4028,4067,-3997,4068,4029,-3997,3959,4029,-4070,4069,4030,-3960,4030,4070,-3998,4002,3998,-3998,4032,4031,-4000,4000,4071,-4033,4036,4033,-3964,3962,4033,-4035,4072,4001,-4035,4035,4001,-4074,4000,4035,-4072,4074,4036,-4003,4005,4004,-4032,4031,4037,-4006,3966,4038,-4040,4006,4039,-4076,4042,3926,-4041,4040,4006,-4077,4041,3968,-4044,4041,4077,-4008,4007,4077,-4011,4078,4043,-4009,4078,4008,-4043,3970,4046,-4045,3971,4079,-4046,4009,4045,-4049,4047,4046,-3973,3973,4048,-4050,3975,4080,-4039,4011,4037,-4082,4012,4011,-4051,3975,\r\n4050,-4081,4052,4051,-3977,3978,4021,-4053,4053,4082,-3980,3979,4082,-4055,4013,4083,-4056,4084,4013,-4050,4055,4085,-4015,4086,4015,-4055,4016,4015,-4088,3984,4016,-4060,4056,4017,-4059,4059,4057,-4019,4088,3985,-4058,4058,3985,-4090,4056,4090,-4020,4060,4020,-4020,4091,3986,-4061,3986,4091,-4062,4021,4022,-4053,4092,4023,-4062,4092,4062,-4024,860,3991,-949,860,4063,-3992,4063,4093,-4025,4025,4024,-4095,4094,4064,-4026,4026,4064,-4096,4026,4096,-4028,4066,4065,-3995,4096,4066,-4028,4028,4065,-4068,4068,3996,-4068,4029,4068,-4098,4029,4097,-4070,4069,4070,-4031,4074,3997,-4071,4074,4002,-3998,4098,4031,-4033,4071,4098,-4033,4033,4036,-4100,4033,4099,-4035,4073,4001,-4073,4072,4034,-4101,4073,4101,-4036,4102,4071,-4036,4074,4103,-4037,4098,4037,-4032,4104,4039,-4039,4075,4039,-4105,4075,4105,-4007,4042,4040,-4079,4076,4006,-4106,4078,4040,-4077,4041,4043,-4078,4045,4079,-4049,4084,4049,-4049,4038,4080,-4105,4037,4106,-4082,4050,4011,-4082,4107,4080,-4051,4086,4054,-4083,4013,4108,-4084,4085,4055,-4084,4013,4084,-4109,4015,4086,-4110,4015,4109,-4088,4016,4087,-4060,4058,4110,-4057,4059,4111,-4058,4088,4089,-3986,4111,4088,-4058,4089,4112,-4059,4056,4110,-4091,4019,4090,-4114,4019,4113,-4061,4113,4091,-4061,4092,4061,-4092,4114,4062,-4093,860,800,-4064,4093,4063,-4116,4116,4024,-4094,4116,4094,-4025,4094,4117,-4065,4064,4117,-4096,4095,4096,-4027,4066,4118,-4066,4119,4066,-4097,4065,4118,-4068,4068,4067,-4119,4068,4120,-4098,4069,4097,-4122,4070,4069,-4122,4122,4074,-4071,4071,4123,-4099,4099,4036,-4104,4099,4100,-4035,4073,4072,-4125,4100,4124,-4073,4125,4101,-4074,4102,4035,-4102,4102,4123,-4072,4074,4122,-4104,4037,4098,-4127,4075,4104,-4128,4075,4128,-4106,4079,4084,-4049,4104,4080,-4128,4126,4106,-4038,4106,4107,-4082,4107,4050,-4082,4107,4127,-4081,4086,4082,-4130,4129,4109,-4087,4130,4087,-4110,4111,4059,-4088,4110,4058,-4113,4131,4089,-4089,4132,4088,-4112,4089,4133,-4113,4110,4134,-4091,4090,4135,-4114,4113,4136,-4092,4091,4137,-4093,4138,4114,-4093,4063,800,-4116,4093,4115,-4117,4094,4116,-4140,4117,4094,-4140,\r\n4117,4140,-4096,4095,4140,-4097,4141,4118,-4067,4119,4141,-4067,4096,4140,-4120,4142,4068,-4119,4143,4120,-4069,4097,4120,-4122,4070,4121,-4123,4123,4144,-4099,4099,4103,-4146,4145,4100,-4100,4124,4125,-4074,4100,4146,-4125,4125,4147,-4102,4148,4102,-4102,4102,4149,-4124,4122,4150,-4104,4126,4098,-4145,4075,4127,-4152,4151,4128,-4076,4106,4126,-4153,4106,4152,-4108,4153,4127,-4108,4154,4109,-4130,4130,4111,-4088,4109,4155,-4131,4110,4112,-4157,4089,4131,-4134,4131,4088,-4133,4111,4130,-4133,4133,4156,-4113,4110,4156,-4135,4090,4134,-4136,4113,4135,-4137,4091,4136,-4138,4092,4137,-4139,4115,800,-738,4115,4157,-4117,4116,4158,-4140,4117,4139,-4141,4141,4142,-4119,4119,4159,-4142,4160,4119,-4141,4143,4068,-4143,4143,4161,-4121,4162,4121,-4121,4122,4121,-4163,4144,4123,-4164,4145,4103,-4165,4100,4145,-4147,4125,4124,-4166,4124,4146,-4166,4166,4147,-4126,4147,4167,-4102,4148,4168,-4103,4148,4101,-4168,4149,4102,-4170,4163,4123,-4150,4122,4162,-4151,4150,4164,-4104,4126,4144,-4171,4153,4151,-4128,4152,4126,-4171,4107,4152,-4154,4171,4109,-4155,4109,4171,-4156,4132,4130,-4156,4131,4172,-4134,4173,4131,-4133,4133,4174,-4157,4156,4174,-4135,4135,4134,-4176,4135,4175,-4137,4136,4176,-4138,4177,4138,-4138,4157,4115,-738,4116,4157,-4159,4139,4158,-4161,4160,4140,-4140,4178,4142,-4142,4119,4160,-4160,4159,4179,-4142,4180,4143,-4143,4143,4181,-4162,4120,4161,-4183,4120,4183,-4163,4144,4163,-4185,4164,4185,-4146,4145,4185,-4147,4186,4125,-4166,4165,4146,-4188,4166,4188,-4148,4186,4166,-4126,4147,4189,-4168,4148,4190,-4169,4168,4191,-4103,4148,4167,-4191,4102,4191,-4170,4169,4163,-4150,4162,4192,-4151,4150,4193,-4165,4194,4170,-4145,4195,4152,-4171,4152,4196,-4154,4171,4197,-4156,4173,4132,-4156,4172,4131,-4199,4199,4133,-4173,4173,4198,-4132,4133,4199,-4175,4134,4174,-4176,4175,4176,-4137,4177,4137,-4177,4157,737,-671,4157,4200,-4159,4201,4160,-4159,4178,4180,-4143,4178,4141,-4180,4201,4159,-4161,4179,4159,-4203,4203,4143,-4181,4143,4203,-4182,4204,4161,-4182,4161,4205,-4183,4182,4183,-4121,4162,4183,-4193,4184,4163,-4207,4184,4194,\r\n-4145,4164,4207,-4186,4187,4146,-4186,4208,4186,-4166,4165,4187,-4209,4166,4209,-4189,4189,4147,-4189,4186,4210,-4167,4189,4190,-4168,4190,4211,-4169,4168,4211,-4192,4169,4191,-4213,4169,4213,-4164,4150,4192,-4194,4207,4164,-4194,4170,4194,-4215,4195,4215,-4153,4170,4214,-4196,4152,4215,-4197,4197,4173,-4156,4199,4172,-4199,4198,4173,-4217,4217,4174,-4200,4217,4175,-4175,4175,4217,-4177,4177,4176,-4219,4157,670,-4201,4158,4200,-4202,4219,4180,-4179,4178,4179,-4221,4202,4159,-4202,4179,4202,-4222,4180,4219,-4204,4203,4222,-4182,4161,4204,-4224,4181,4224,-4205,4223,4205,-4162,4182,4205,-4193,4182,4192,-4184,4213,4206,-4164,4206,4225,-4185,4184,4225,-4195,4226,4185,-4208,4187,4185,-4228,4208,4210,-4187,4208,4187,-4228,4210,4209,-4167,4188,4209,-4229,4189,4188,-4230,4189,4230,-4191,4211,4190,-4231,4211,4212,-4192,4213,4169,-4213,4193,4192,-4206,4207,4193,-4232,4194,4232,-4215,4215,4195,-4234,4214,4233,-4196,4173,4197,-4217,4217,4218,-4177,4200,670,-638,4200,4234,-4202,4178,4220,-4220,4220,4179,-4236,4202,4201,-4235,4202,4236,-4222,4179,4221,-4236,4203,4219,-4238,4237,4222,-4204,4181,4222,-4239,4223,4204,-4240,4181,4240,-4225,4224,4241,-4205,4205,4223,-4243,4243,4206,-4214,4206,4244,-4226,4232,4194,-4226,4185,4226,-4246,4226,4207,-4247,4227,4185,-4246,4247,4210,-4209,4208,4227,-4248,4247,4209,-4211,4228,4209,-4249,4228,4229,-4189,4189,4229,-4231,4211,4230,-4250,4211,4249,-4213,4213,4212,-4251,4251,4193,-4206,4252,4231,-4194,4246,4207,-4232,4253,4214,-4233,4214,4253,-4234,4200,637,-4235,4219,4220,-4238,4220,4235,-4255,4202,4234,-4237,4255,4221,-4237,4221,4256,-4236,4237,4238,-4223,4238,4240,-4182,4257,4239,-4205,4223,4239,-4259,4224,4240,-4242,4204,4241,-4258,4223,4258,-4243,4259,4205,-4243,4244,4206,-4244,4243,4213,-4251,4244,4260,-4226,4260,4232,-4226,4226,4261,-4246,4246,4262,-4227,4245,4263,-4228,4263,4247,-4228,4247,4263,-4210,4263,4248,-4210,4228,4248,-4265,4228,4265,-4230,4229,4265,-4231,4266,4249,-4231,4267,4212,-4250,4212,4268,-4251,4193,4251,-4253,4205,4259,-4252,4252,4269,-4232,4269,4246,-4232,4253,4232,-4271,\r\n572,4234,-638,4220,4254,-4238,4235,4271,-4255,572,4236,-4235,4255,4256,-4222,472,4255,-4237,4256,4271,-4236,4254,4238,-4238,4240,4238,-4255,4239,4257,-4273,4273,4258,-4240,4240,4274,-4242,4257,4241,-4276,4258,4276,-4243,4259,4242,-4278,4244,4243,-4271,4250,4268,-4244,4260,4244,-4271,4232,4260,-4271,4226,4262,-4262,4278,4245,-4262,4269,4262,-4247,4245,4279,-4264,4280,4248,-4264,4264,4248,-4282,4264,4265,-4229,4282,4230,-4266,4266,4267,-4250,4282,4266,-4231,4267,4268,-4213,4252,4251,-4260,4269,4252,-4284,4284,4254,-4272,472,4236,-573,4256,4255,-4286,4255,472,-414,4256,4285,-4272,4240,4254,-4275,4286,4272,-4258,4239,4272,-4274,4258,4273,-4288,4274,4275,-4242,4286,4257,-4276,4288,4276,-4259,4276,4277,-4243,4259,4277,-4290,4243,4290,-4271,4291,4243,-4269,4292,4261,-4263,4279,4245,-4279,4292,4278,-4262,4293,4262,-4270,4280,4263,-4280,4280,4281,-4249,4264,4281,-4295,4264,4295,-4266,4282,4265,-4296,4296,4267,-4267,4282,4296,-4267,4267,4291,-4269,4252,4259,-4290,4252,4289,-4284,4297,4269,-4284,4284,4274,-4255,4284,4271,-4299,4255,413,-4286,4285,4298,-4272,4286,179,-4273,4273,4272,-4300,4273,4299,-4288,4288,4258,-4288,4300,4275,-4275,4286,4275,-217,4288,4301,-4277,4277,4276,-4302,4289,4277,-4303,4290,4243,-4292,4290,4303,-4271,4293,4292,-4263,4279,4278,-4305,4305,4278,-4293,4293,4269,-4298,4280,4279,-4305,4280,4304,-4282,4306,4294,-4282,4264,4294,-4296,4282,4295,-4308,4296,4308,-4268,4296,4282,-4310,4267,4310,-4292,4283,4289,-4312,4297,4283,-4313,4300,4274,-4285,4284,4298,-281,4285,413,-386,4285,385,-4299,216,179,-4287,161,4272,-180,161,4299,-4273,4287,4299,-4314,4287,4314,-4289,4300,4315,-4276,216,4275,-258,4288,4316,-4302,4277,4301,-4303,4289,4302,-4318,4303,4290,-4292,4270,4303,-4319,4305,4292,-4294,4319,4304,-4279,4278,4305,-4320,4293,4297,-4306,4281,4304,-4321,4321,4294,-4307,4281,4320,-4307,4295,4294,-4323,4295,4322,-4308,4309,4282,-4308,4308,4296,-4324,4308,4310,-4268,4296,4309,-4324,4310,4324,-4292,4311,4289,-4318,4283,4311,-4313,4325,4297,-4313,4315,4300,-4285,280,4298,-282,4315,4284,-281,385,281,-4299,4299,161,-144,\r\n4299,143,-4314,4314,4287,-4314,4316,4288,-4315,4315,257,-4276,4301,4316,-4303,4326,4317,-4303,4291,4327,-4304,4318,4303,-4329,4304,4319,-4330,4325,4319,-4306,4325,4305,-4298,4304,4329,-4321,4321,4322,-4295,4330,4321,-4307,4330,4306,-4321,4307,4322,-4332,4309,4307,-4333,4323,4333,-4309,4308,4334,-4311,4309,4332,-4324,4310,4334,-4325,4324,4327,-4292,4311,4317,-4336,4312,4311,-4336,4325,4312,-4337,257,4315,-281,4337,4313,-144,4313,4338,-4315,4314,4339,-4317,4316,4340,-4303,4326,4341,-4318,4302,4340,-4327,4327,4342,-4304,4328,4303,-4343,4329,4319,-4344,4325,4336,-4320,4320,4329,-4345,4345,4322,-4322,4330,4345,-4322,4346,4330,-4321,4322,4345,-4332,4307,4331,-4348,4332,4307,-4348,4323,4348,-4334,4349,4308,-4334,4308,4349,-4335,4348,4323,-4333,4334,4350,-4325,4327,4324,-4351,4341,4335,-4318,4312,4335,-4337,4313,4337,-4352,84,4337,-144,4313,4351,-4339,4314,4338,-4340,4339,51,-4317,4352,4340,-4317,4341,4326,-4354,4326,4340,-4355,4342,4327,-4356,4328,4342,-4357,4343,4319,-4358,4329,4343,-4359,4357,4319,-4337,4344,4329,-4359,4346,4320,-4345,4345,4330,-4360,4346,4360,-4331,4361,4331,-4346,4361,4347,-4332,4348,4332,-4348,4348,4362,-4334,4333,4363,-4350,4363,4334,-4350,4334,4364,-4351,4327,4350,-4366,4341,4366,-4336,4335,4366,-4337,4337,60,-4352,60,4337,-85,4351,60,-4339,4338,60,-4340,4339,60,-52,4316,51,-4353,4340,4352,-4368,4353,4326,-4369,4341,4353,-4370,4370,4354,-4341,4326,4354,-4369,4327,4365,-4356,4356,4342,-4356,4343,4357,-4372,4372,4358,-4344,4357,4336,-4367,4373,4344,-4359,4346,4344,-4374,4330,4360,-4360,4374,4345,-4360,4373,4360,-4347,4345,4374,-4362,4361,4375,-4348,4348,4347,-4363,4333,4362,-4377,4376,4363,-4334,4334,4363,-4365,4365,4350,-4365,4341,4369,-4367,51,4367,-4353,4340,4367,-4371,4368,4369,-4354,4370,4377,-4355,4377,4368,-4355,4365,4378,-4356,4379,4356,-4356,4380,4371,-4358,4343,4371,-4373,4372,4373,-4359,4381,4357,-4367,4382,4359,-4361,4359,4383,-4375,4360,4373,-4385,4385,4361,-4375,4361,4386,-4376,4362,4347,-4376,4376,4362,-4388,4363,4376,-4389,4364,4363,-4390,4365,4364,-4391,4391,4366,-4370,51,27,-4368,4370,\r\n4367,-4393,4369,4368,-4394,4394,4377,-4371,4377,4393,-4369,4378,4365,-4391,4378,4379,-4356,4380,4395,-4372,4380,4357,-4382,4396,4372,-4372,4397,4373,-4373,4381,4366,-4392,4359,4382,-4384,4360,4384,-4383,4385,4374,-4384,4397,4384,-4374,4385,4386,-4362,4386,4398,-4376,4375,4399,-4363,4387,4362,-4400,4387,4388,-4377,4363,4388,-4390,4364,4389,-4391,4393,4391,-4370,27,15,-4368,4367,15,-4393,4370,4392,-4395,4400,4377,-4395,4400,4393,-4378,4378,4390,-4402,4379,4378,-4402,4395,4380,-4392,4371,4395,-4403,4380,4381,-4392,4396,4403,-4373,4371,4402,-4397,4397,4372,-4405,4405,4383,-4383,4382,4384,-4407,4383,4407,-4386,4397,4406,-4385,4386,4385,-4408,4398,4386,-4408,4375,4398,-4400,4408,4387,-4400,4409,4388,-4388,4409,4389,-4389,4410,4390,-4390,4393,4395,-4392,4392,15,-4412,4412,4394,-4393,4400,4394,-4414,4400,4414,-4394,4401,4390,-4411,4401,4415,-4380,4414,4402,-4396,4416,4403,-4397,4417,4372,-4404,4418,4396,-4403,4404,4372,-4418,4397,4404,-4407,4383,4405,-4420,4405,4382,-4421,4382,4406,-4421,4383,4421,-4408,4398,4407,-4423,4399,4398,-4424,4409,4387,-4409,4408,4399,-4424,4424,4389,-4410,4425,4410,-4390,4414,4395,-4394,4411,15,-11,4392,4411,-4413,4413,4394,-4413,4426,4400,-4414,4426,4414,-4401,4415,4401,-4411,4427,4402,-4415,4416,4428,-4404,4418,4416,-4397,4417,4403,-4430,4418,4402,-4428,4404,4417,-4430,4430,4406,-4405,4405,4431,-4420,4419,4421,-4384,4405,4420,-4433,4420,4406,-4434,4407,4421,-4435,4422,4407,-4435,4422,4435,-4399,4435,4423,-4399,4409,4408,-4437,4437,4408,-4424,4424,4425,-4390,4424,4409,-4439,4439,4410,-4426,4411,10,-4441,4412,4411,-4441,4441,4413,-4413,4442,4426,-4414,4426,4427,-4415,4410,4439,-4416,4416,4443,-4429,4429,4403,-4429,4418,4444,-4417,4427,4445,-4419,4429,4430,-4405,4406,4430,-4434,4432,4431,-4406,4431,4446,-4420,4419,4447,-4422,4432,4420,-4434,4448,4434,-4422,4449,4422,-4435,4422,4450,-4436,4450,4423,-4436,4436,4408,-4452,4436,4438,-4410,4437,4451,-4409,4450,4437,-4424,4424,4438,-4426,4452,4439,-4426,4440,10,-2,4441,4412,-4441,4453,4413,-4442,4442,4445,-4427,4453,4442,-4414,4427,4426,-4446,4439,4454,\r\n-4416,4455,4443,-4417,4443,4456,-4429,4456,4429,-4429,4444,4418,-4458,4416,4444,-4456,4418,4445,-4459,4430,4429,-4460,4433,4430,-4461,4431,4432,-4462,4446,4431,-4462,4419,4446,-4448,4462,4421,-4448,4432,4433,-4461,4449,4434,-4449,4462,4448,-4422,4463,4422,-4450,4463,4450,-4423,4436,4451,-4465,4436,4465,-4439,4437,4466,-4452,4437,4450,-4464,4425,4438,-4453,4452,4454,-4440,4440,1,-4468,4440,4467,-4442,4468,4453,-4442,4445,4442,-4470,4470,4442,-4454,4455,4471,-4444,4443,4471,-4457,4456,4459,-4430,4418,4458,-4458,4472,4444,-4458,4472,4455,-4445,4445,4469,-4459,4459,4460,-4431,4432,4460,-4462,4461,4473,-4447,4446,4474,-4448,4447,4475,-4463,4476,4449,-4449,4448,4462,-4478,4463,4449,-4467,4464,4451,-4479,4436,4464,-4480,4465,4436,-4480,4438,4465,-4453,4437,4463,-4467,4466,4480,-4452,4452,4481,-4455,4467,1,-1,4468,4441,-4468,4482,4453,-4469,4470,4469,-4443,4482,4470,-4454,4455,4483,-4472,4484,4456,-4472,4456,4485,-4460,4458,4486,-4458,4457,4487,-4473,4483,4455,-4473,4469,4488,-4459,4459,4485,-4461,4461,4460,-4486,4461,4489,-4474,4474,4446,-4474,4475,4447,-4475,4475,4490,-4463,4449,4476,-4467,4476,4448,-4478,4477,4462,-4491,4478,4451,-4492,4464,4478,-4493,4492,4479,-4465,4493,4465,-4480,4493,4452,-4466,4476,4480,-4467,4451,4480,-4492,4493,4481,-4453,4494,4454,-4482,4467,0,-4469,4468,4495,-4483,4469,4470,-4497,4497,4470,-4483,4498,4471,-4484,4456,4484,-4486,4484,4471,-4499,4458,4488,-4487,4457,4486,-4488,4472,4487,-4500,4483,4472,-4500,4469,4500,-4489,4489,4461,-4486,4473,4489,-4502,4474,4473,-4503,4475,4474,-4503,4490,4475,-4504,4476,4477,-4505,4477,4490,-4506,4491,4506,-4479,4507,4492,-4479,4508,4479,-4493,4509,4493,-4480,4476,4510,-4481,4511,4491,-4481,4481,4493,-4510,4509,4494,-4482,4468,0,-9,4468,4512,-4496,4497,4482,-4496,4497,4496,-4471,4469,4496,-4501,4483,4513,-4499,4485,4484,-4499,4488,4514,-4487,4515,4487,-4487,4516,4499,-4488,4517,4483,-4500,4514,4488,-4501,4489,4485,-4519,4501,4489,-4520,4501,4502,-4474,4520,4475,-4503,4521,4503,-4476,4503,4522,-4491,4504,4477,-4506,4510,4476,-4505,4505,4490,-4523,4491,4523,-4507,\r\n4507,4478,-4507,4507,4524,-4493,4509,4479,-4509,4508,4492,-4526,4480,4510,-4512,4511,4523,-4492,4526,4494,-4510,4512,4468,-9,4495,4512,-4528,4497,4495,-4529,4497,4528,-4497,4500,4496,-4530,4483,4517,-4514,4498,4513,-4519,4485,4498,-4519,4530,4486,-4515,4516,4487,-4516,4530,4515,-4487,4516,4531,-4500,4517,4499,-4532,4514,4500,-4530,4518,4532,-4490,4532,4519,-4490,4533,4501,-4520,4501,4520,-4503,4520,4521,-4476,4521,4534,-4504,4503,4534,-4523,4504,4505,-4536,4535,4510,-4505,4505,4522,-4537,4537,4506,-4524,4507,4506,-4539,4507,4538,-4525,4492,4524,-4540,4508,4540,-4510,4539,4525,-4493,4525,4541,-4509,4542,4511,-4511,4542,4523,-4512,4526,4543,-4495,4526,4509,-4541,4512,8,-4528,4495,4527,-4545,4528,4495,-4545,4528,4529,-4497,4513,4517,-4546,4532,4518,-4514,4530,4514,-4530,4515,4546,-4517,4547,4515,-4531,4548,4531,-4517,4549,4517,-4532,4550,4519,-4533,4501,4533,-4552,4550,4533,-4520,4551,4520,-4502,4521,4520,-4553,4534,4521,-4554,4554,4522,-4535,4505,4536,-4536,4542,4510,-4536,4554,4536,-4523,4537,4538,-4507,4523,4555,-4538,4538,4556,-4525,4557,4539,-4525,4508,4541,-4541,4539,4558,-4526,4525,4558,-4542,4542,4555,-4524,4543,4526,-4560,4526,4540,-4561,4561,4527,-9,4544,4527,-4563,4528,4544,-4564,4564,4529,-4529,4549,4545,-4518,4513,4545,-4566,4513,4550,-4533,4547,4530,-4530,4566,4546,-4516,4548,4516,-4547,4566,4515,-4548,4548,4567,-4532,4549,4531,-4568,4551,4533,-4569,4550,4569,-4534,4551,4570,-4521,4520,4570,-4553,4553,4521,-4553,4554,4534,-4554,4571,4535,-4537,4542,4535,-4573,4554,4573,-4537,4537,4574,-4539,4537,4555,-4576,4538,4574,-4557,4557,4524,-4557,4539,4557,-4559,4560,4540,-4542,4576,4541,-4559,4577,4555,-4543,4578,4559,-4527,4560,4578,-4527,4561,4562,-4528,4561,8,-19,4544,4562,-4564,4564,4528,-4564,4564,4547,-4530,4579,4545,-4550,4565,4545,-4580,4550,4513,-4566,4546,4566,-4581,4548,4546,-4582,4547,4582,-4567,4567,4548,-4584,4584,4549,-4568,4568,4533,-4570,4551,4568,-4571,4550,4565,-4570,4552,4570,-4586,4553,4552,-4586,4553,4586,-4555,4571,4572,-4536,4587,4571,-4537,4542,4572,-4578,4554,4586,-4574,4587,4536,-4574,\r\n4537,4588,-4575,4577,4575,-4556,4588,4537,-4576,4574,4589,-4557,4557,4556,-4591,4558,4557,-4592,4592,4560,-4542,4541,4576,-4593,4576,4558,-4594,4578,4594,-4560,4578,4560,-4593,29,4562,-4562,4561,18,-30,4595,4563,-4563,4564,4563,-4597,4582,4547,-4565,4579,4549,-4598,4598,4565,-4580,4580,4566,-4600,4546,4580,-4582,4583,4548,-4582,4566,4582,-4600,4567,4583,-4601,4584,4597,-4550,4567,4600,-4585,4568,4569,-4602,4570,4568,-4603,4569,4565,-4599,4570,4603,-4586,4553,4585,-4587,4571,4604,-4573,4571,4587,-4606,4604,4577,-4573,4573,4586,-4588,4574,4588,-4590,4604,4575,-4578,4606,4588,-4576,4607,4556,-4590,4607,4590,-4557,4557,4590,-4592,4558,4591,-4609,4592,4576,-4610,4593,4558,-4609,4576,4593,-4610,4592,4594,-4579,4594,4610,-4560,4595,4562,-30,4595,4611,-4564,4596,4563,-4612,4582,4564,-4597,4579,4597,-4613,4598,4579,-4613,4599,4613,-4581,4614,4581,-4581,4615,4583,-4582,4582,4616,-4600,4600,4583,-4618,4597,4584,-4619,4600,4618,-4585,4569,4598,-4602,4568,4601,-4603,4570,4602,-4620,4570,4619,-4604,4603,4620,-4586,4586,4585,-4621,4571,4605,-4605,4605,4587,-4622,4586,4622,-4588,4606,4589,-4589,4604,4606,-4576,4607,4589,-4624,4590,4607,-4625,4590,4624,-4592,4608,4591,-4626,4592,4609,-4627,4593,4608,-4626,4609,4593,-4628,4626,4594,-4593,4594,4628,-4611,29,46,-4596,4611,4595,-4630,4596,4611,-4631,4582,4596,-4617,4631,4612,-4598,4612,4632,-4599,4633,4613,-4600,4614,4580,-4614,4614,4615,-4582,4615,4617,-4584,4633,4599,-4617,4617,4634,-4601,4597,4618,-4632,4600,4634,-4619,4632,4601,-4599,4635,4602,-4602,4602,4636,-4620,4603,4619,-4638,4638,4620,-4604,4620,4622,-4587,4605,4639,-4605,4621,4587,-4623,4621,4640,-4606,4589,4606,-4624,4606,4604,-4642,4607,4623,-4643,4643,4624,-4608,4591,4624,-4626,4626,4609,-4628,4625,4644,-4594,4593,4644,-4628,4626,4645,-4595,4628,4594,-4647,4629,4595,-47,4647,4611,-4630,4647,4630,-4612,4630,4648,-4597,4596,4648,-4617,4612,4631,-4650,4612,4650,-4633,4651,4613,-4634,4614,4613,-4653,4614,4652,-4616,4615,4653,-4618,4616,4648,-4634,4634,4617,-4654,4618,4654,-4632,4618,4634,-4655,4632,4635,-4602,4635,4636,-4603,\r\n4637,4619,-4637,4637,4638,-4604,4655,4620,-4639,4656,4622,-4621,4640,4639,-4606,4639,4641,-4605,4621,4622,-4658,4621,4658,-4641,4606,4659,-4624,4606,4641,-4661,4661,4642,-4624,4607,4642,-4644,4624,4643,-4663,4663,4625,-4625,4664,4626,-4628,4663,4644,-4626,4665,4627,-4645,4664,4645,-4627,4594,4645,-4647,4666,4628,-4647,4629,46,-68,4629,4667,-4648,4647,4668,-4631,4668,4648,-4631,4631,4669,-4650,4670,4612,-4650,4612,4670,-4651,4632,4650,-4636,4651,4652,-4614,4648,4651,-4634,4615,4652,-4672,4653,4615,-4672,4634,4653,-4655,4669,4631,-4655,4635,4672,-4637,4637,4636,-4674,4674,4638,-4638,4675,4620,-4656,4674,4655,-4639,4656,4657,-4623,4656,4620,-4676,4639,4640,-4659,4639,4660,-4642,4676,4621,-4658,4658,4621,-4677,4659,4606,-4661,4623,4659,-4678,4661,4678,-4643,4661,4623,-4678,4643,4642,-4679,4643,4678,-4663,4624,4662,-4664,4664,4627,-4680,4663,4680,-4645,4665,4679,-4628,4665,4644,-4682,4645,4664,-4683,4646,4645,-4684,4646,4683,-4667,4629,67,-4668,4647,4667,-4669,4668,4684,-4649,4669,4685,-4650,4686,4670,-4650,4670,4686,-4651,4650,4672,-4636,4687,4652,-4652,4651,4648,-4685,4652,4688,-4672,4671,4689,-4654,4690,4654,-4654,4669,4654,-4691,4672,4673,-4637,4674,4637,-4674,4655,4691,-4676,4674,4692,-4656,4657,4656,-4694,4656,4675,-4694,4639,4658,-4695,4639,4695,-4661,4676,4657,-4697,4658,4676,-4695,4697,4659,-4661,4698,4677,-4660,4699,4678,-4662,4661,4677,-4701,4678,4680,-4663,4680,4663,-4663,4701,4664,-4680,4680,4702,-4645,4665,4703,-4680,4681,4644,-4703,4703,4665,-4682,4704,4682,-4665,4645,4682,-4684,4666,4683,-4706,92,4667,-68,4667,4706,-4669,4684,4668,-4708,4708,4685,-4670,4685,4709,-4650,4709,4686,-4650,4650,4686,-4711,4650,4710,-4673,4652,4687,-4689,4687,4651,-4712,4684,4711,-4652,4689,4671,-4689,4653,4689,-4691,4690,4712,-4670,4673,4672,-4714,4674,4673,-4715,4655,4692,-4692,4715,4675,-4692,4674,4714,-4693,4693,4696,-4658,4693,4675,-4716,4694,4695,-4640,4697,4660,-4696,4694,4676,-4697,4697,4698,-4660,4698,4716,-4678,4678,4699,-4718,4699,4661,-4719,4700,4677,-4717,4719,4661,-4701,4678,4717,-4681,4701,4704,-4665,4701,4679,-4721,\r\n4702,4680,-4722,4720,4679,-4704,4681,4702,-4723,4703,4681,-4724,4704,4724,-4683,4724,4683,-4683,4705,4683,-4725,4725,4666,-4706,4667,92,-4707,4668,4706,-4708,4684,4707,-4727,4708,4727,-4686,4669,4728,-4709,4727,4709,-4686,4729,4686,-4710,4729,4710,-4687,4710,4713,-4673,4688,4687,-4731,4731,4687,-4712,4684,4726,-4712,4688,4732,-4690,4690,4689,-4713,4669,4712,-4729,4713,4714,-4674,4691,4692,-4734,4715,4691,-4735,4714,4735,-4693,4696,4693,-4737,4693,4715,-4737,4737,4695,-4695,4697,4695,-4739,4737,4694,-4697,4739,4698,-4698,4698,4740,-4717,4699,4741,-4718,4718,4661,-4720,4742,4699,-4719,4700,4716,-4744,4744,4719,-4701,4717,4745,-4681,4701,4746,-4705,4720,4746,-4702,4680,4745,-4722,4722,4702,-4722,4720,4703,-4724,4723,4681,-4723,4704,4747,-4725,4724,4748,-4706,4725,4705,-4749,121,4706,-93,4707,4706,-157,4749,4726,-4708,4708,4750,-4728,4708,4728,-4752,4727,4729,-4710,4752,4710,-4730,4710,4753,-4714,4731,4730,-4688,4688,4730,-4733,4731,4711,-4727,4732,4754,-4690,4712,4689,-4755,4712,4755,-4729,4713,4756,-4715,4692,4735,-4734,4691,4733,-4735,4715,4734,-4758,4756,4735,-4715,4736,4737,-4697,4757,4736,-4716,4737,4738,-4696,4697,4738,-4740,4739,4740,-4699,4740,4758,-4717,4742,4741,-4700,4741,4759,-4718,4718,4719,-4761,4718,4761,-4743,4743,4716,-4759,4743,4744,-4701,4760,4719,-4745,4717,4762,-4746,4746,4763,-4705,4720,4764,-4747,4765,4721,-4746,4722,4721,-4766,4720,4723,-4765,4723,4722,-4767,4704,4763,-4748,4747,4748,-4725,4767,4725,-4749,4706,121,-157,4707,156,-4750,4726,4749,-157,4708,4751,-4751,4750,4768,-4728,4728,4769,-4752,4727,4752,-4730,4710,4752,-4754,4753,4756,-4714,4731,4770,-4731,4771,4732,-4731,4731,4726,-4771,4754,4732,-4773,4712,4754,-4756,4728,4755,-4770,4773,4733,-4736,4774,4734,-4734,4757,4734,-4776,4756,4773,-4736,4737,4736,-4777,4776,4736,-4758,4777,4738,-4738,4739,4738,-4779,4739,4779,-4741,4758,4740,-4781,4741,4742,-4760,4762,4717,-4760,4718,4760,-4762,4761,4781,-4743,4758,4782,-4744,4743,4783,-4745,4760,4744,-4785,4745,4762,-4786,4746,4786,-4764,4746,4764,-4788,4785,4765,-4746,4722,4765,-4767,4764,4723,-4767,\r\n4788,4747,-4764,4789,4748,-4748,4767,4748,-4790,4726,156,-190,4751,4790,-4751,4750,4791,-4769,4753,4727,-4769,4769,4792,-4752,4727,4753,-4753,4753,4793,-4757,4771,4730,-4771,4772,4732,-4772,4726,189,-4771,4754,4772,-4756,4769,4755,-4793,4773,4794,-4734,4774,4795,-4735,4774,4733,-4795,4734,4795,-4776,4757,4775,-4797,4793,4773,-4757,4777,4737,-4777,4796,4776,-4758,4777,4778,-4739,4739,4778,-4780,4779,4797,-4741,4740,4797,-4781,4758,4780,-4799,4781,4759,-4743,4762,4759,-4800,4760,4800,-4762,4761,4800,-4782,4782,4758,-4799,4743,4782,-4784,4744,4783,-4785,4760,4784,-4801,4785,4762,-4802,4787,4786,-4747,4763,4786,-4803,4787,4764,-4804,4785,4804,-4766,4765,4804,-4767,4766,4805,-4765,4806,4747,-4789,4788,4763,-4803,4747,4807,-4790,4767,4789,-4809,4790,4751,-4810,4750,4790,-4811,4810,4791,-4751,4791,4811,-4769,4768,4793,-4754,4751,4792,-4810,4771,4770,-4813,4771,4813,-4773,4812,4770,-190,4814,4755,-4773,4814,4792,-4756,4793,4794,-4774,4795,4774,-4816,4774,4794,-4817,4795,4796,-4776,4777,4776,-4818,4796,4818,-4777,4777,4817,-4779,4819,4779,-4779,4820,4797,-4780,4797,4821,-4781,4822,4798,-4781,4799,4759,-4782,4762,4799,-4802,4823,4781,-4801,4798,4824,-4783,4825,4783,-4783,4825,4784,-4784,4826,4800,-4785,4785,4801,-4805,4787,4827,-4787,4828,4802,-4787,4803,4764,-4806,4787,4803,-4828,4805,4766,-4805,4747,4806,-4808,4806,4788,-4830,4829,4788,-4803,4807,4830,-4790,4830,4808,-4790,4831,4790,-4810,4790,4832,-4811,4810,4833,-4792,4791,4834,-4812,4811,4835,-4769,4835,4793,-4769,4836,4809,-4793,4813,4771,-4813,4837,4772,-4814,230,4812,-190,4838,4814,-4773,4814,4836,-4793,4835,4794,-4794,4816,4815,-4775,4795,4815,-4840,4840,4816,-4795,4796,4795,-4842,4817,4776,-4819,4842,4818,-4797,4843,4778,-4818,4819,4820,-4780,4819,4778,-4844,4820,4821,-4798,4822,4780,-4822,4844,4798,-4823,4799,4781,-4824,4845,4801,-4800,4823,4800,-4847,4798,4844,-4825,4825,4782,-4825,4825,4847,-4785,4826,4846,-4801,4826,4784,-4848,4801,4848,-4805,4827,4849,-4787,4850,4802,-4829,4828,4786,-4850,4803,4805,-4852,4827,4803,-4853,4851,4805,-4805,4853,4807,-4807,4853,4806,\r\n-4830,4829,4802,-4851,4830,4807,-4855,4855,4808,-4831,4831,4832,-4791,4836,4831,-4810,4810,4832,-4857,4833,4810,-4857,4833,4857,-4792,4857,4834,-4792,4811,4834,-4859,4835,4811,-4859,293,4813,-4813,4837,4838,-4773,343,4837,-4814,293,4812,-231,4838,4859,-4815,4814,4859,-4837,4835,4858,-4795,4815,4816,-4840,4860,4795,-4840,4840,4861,-4817,4840,4794,-4859,4860,4841,-4796,4796,4841,-4843,4817,4818,-4844,4862,4818,-4843,4863,4820,-4820,4819,4843,-4865,4865,4821,-4821,4866,4822,-4822,4867,4844,-4823,4845,4799,-4824,4868,4801,-4846,4823,4846,-4870,4844,4870,-4825,4825,4824,-4871,4847,4825,-4872,4826,4872,-4847,4826,4847,-4874,4801,4868,-4849,4851,4804,-4849,4849,4827,-4875,4850,4828,-4876,4874,4828,-4850,4851,4852,-4804,4876,4827,-4853,4853,4877,-4808,4878,4853,-4830,4850,4879,-4830,4854,4807,-4878,4854,4880,-4831,4830,4881,-4856,4831,4882,-4833,4883,4831,-4837,4884,4856,-4833,4856,4857,-4834,4857,4885,-4835,4885,4858,-4835,343,4813,-294,4838,4837,-4887,4837,343,-372,4859,4838,-4888,4836,4859,-4884,4888,4839,-4817,4889,4860,-4840,4858,4861,-4841,4888,4816,-4862,4860,4890,-4842,4890,4842,-4842,4862,4843,-4819,4891,4862,-4843,4863,4865,-4821,4819,4864,-4864,4862,4864,-4844,4865,4866,-4822,4867,4822,-4867,4870,4844,-4868,4892,4845,-4824,4845,4893,-4869,4872,4869,-4847,4869,4892,-4824,4825,4870,-4872,4847,4871,-4895,4873,4872,-4827,4873,4847,-4895,4848,4868,-4896,4851,4848,-4897,4874,4827,-4898,4874,4875,-4829,4875,4898,-4851,4852,4851,-4897,4897,4827,-4877,4876,4852,-4897,4853,4878,-4878,4878,4829,-4900,4850,4898,-4880,4879,4899,-4830,4900,4854,-4878,4854,4900,-4881,4830,4880,-4882,4901,4855,-4882,4883,4882,-4832,4832,4882,-4903,4856,4884,-4904,4832,4904,-4885,4856,4903,-4858,4857,4903,-4886,4858,4885,-4906,4837,4906,-4887,4838,4886,-4888,371,4906,-4838,4887,4907,-4860,4883,4859,-4908,4888,4908,-4840,4889,4909,-4861,4889,4839,-4909,4858,4905,-4862,4888,4861,-4911,4860,4909,-4891,4890,4891,-4843,4891,4911,-4863,4863,4912,-4866,4863,4864,-4914,4911,4864,-4863,4866,4865,-4913,4867,4866,-4915,4870,4867,-4916,4892,4893,-4846,4893,\r\n4916,-4869,4917,4869,-4873,4869,4918,-4893,4873,4919,-4873,4868,4920,-4896,4848,4895,-4897,4897,4921,-4875,4874,4921,-4876,4875,4922,-4899,4897,4876,-4924,4876,4896,-4924,4924,4877,-4879,4924,4878,-4900,4879,4898,-4926,4879,4925,-4900,4900,4877,-4925,4926,4880,-4901,4926,4881,-4881,4901,4881,-4928,4883,4928,-4883,4882,4929,-4903,4904,4832,-4903,4884,4930,-4904,4931,4884,-4905,4932,4885,-4904,4905,4885,-4934,4906,4934,-4887,4887,4886,-4935,371,4935,-4907,4887,4936,-4908,4883,4907,-4929,4888,4910,-4909,4909,4889,-4938,4889,4908,-4939,4905,4910,-4862,4890,4909,-4940,4939,4891,-4891,4911,4891,-4941,4912,4863,-4942,4911,4913,-4865,4863,4913,-4942,4912,4942,-4867,4866,4942,-4915,4914,4915,-4868,4892,4943,-4894,4943,4916,-4894,4868,4916,-4921,4917,4918,-4870,4917,4872,-4920,4944,4892,-4919,4945,4895,-4921,4895,4923,-4897,4897,4946,-4922,4875,4921,-4923,4898,4922,-4948,4946,4897,-4924,4948,4924,-4900,4925,4898,-4948,4948,4899,-4926,4900,4924,-4950,4900,4950,-4927,4881,4926,-4928,4901,4927,-4952,4928,4929,-4883,4929,4952,-4903,4904,4902,-4953,4931,4930,-4885,4932,4903,-4931,4931,4904,-4953,4933,4885,-4933,4905,4933,-4911,4906,4953,-4935,4936,4887,-4935,4935,371,-459,4935,4953,-4907,4936,4954,-4908,4907,4955,-4929,4910,4938,-4909,4956,4937,-4890,4937,4939,-4910,4938,4957,-4890,4939,4958,-4892,4958,4940,-4892,4911,4940,-4942,4959,4912,-4942,4941,4913,-4912,4942,4912,-4961,4944,4943,-4893,4943,4961,-4917,4962,4920,-4917,4917,4963,-4919,4964,4944,-4919,4895,4945,-4924,4945,4920,-4966,4966,4921,-4947,4966,4922,-4922,4922,4967,-4948,4946,4923,-4969,4948,4969,-4925,4925,4947,-4971,4925,4970,-4949,4924,4969,-4950,4969,4900,-4950,4900,4969,-4951,4950,4971,-4927,4927,4926,-4973,4927,4972,-4952,4928,4973,-4930,4929,4974,-4953,4931,4975,-4931,4976,4932,-4931,4931,4952,-4978,4932,4978,-4934,4910,4933,-4979,4934,4953,-4980,4954,4936,-4935,4953,4935,-459,4907,4954,-4956,4928,4955,-4974,4978,4938,-4911,4956,4980,-4938,4956,4889,-4958,4937,4980,-4940,4981,4957,-4939,4980,4958,-4940,4958,4941,-4941,4960,4912,-4960,4941,4982,-4960,4942,4960,\r\n-4984,4961,4943,-4945,4962,4916,-4962,4962,4965,-4921,4964,4918,-4964,4961,4944,-4965,4923,4945,-4969,4965,4984,-4946,4985,4966,-4947,4966,4967,-4923,4947,4967,-4987,4968,4985,-4947,4948,4987,-4970,4988,4970,-4948,4970,4987,-4949,4969,4989,-4951,4950,4990,-4972,4926,4971,-4973,4991,4951,-4973,4929,4973,-4975,4974,4977,-4953,4931,4977,-4976,4992,4930,-4976,4932,4976,-4994,4930,4992,-4977,4978,4932,-4994,4994,4979,-4954,4954,4934,-4980,4953,458,-553,4955,4954,-4996,4955,4996,-4974,4978,4993,-4939,4956,4997,-4981,4956,4957,-4998,4957,4981,-4999,4993,4981,-4939,4980,4999,-4959,4941,4958,-4983,4960,4959,-5001,4959,4982,-5002,4960,5000,-4984,5002,4962,-4962,4962,5002,-4966,5002,4961,-4965,4984,4968,-4946,4965,5003,-4985,4966,4985,-4968,4967,5004,-4987,4986,5005,-4948,4985,4968,-5007,5007,4969,-4988,4970,4988,-4988,4947,5005,-4989,4969,5008,-4990,4950,4989,-4991,4990,5009,-4972,4971,5010,-4973,4991,4972,-5012,5012,4974,-4974,4974,5013,-4978,4975,4977,-5014,4975,5014,-4993,4993,4976,-4999,5015,4976,-4993,4994,5016,-4980,4994,4953,-553,4954,4979,-4996,4955,4995,-5018,5017,4996,-4956,4996,5012,-4974,5018,4980,-4998,4998,4997,-4958,4981,4993,-4999,5018,4999,-4981,4958,4999,-4983,4959,5001,-5001,5001,4982,-5000,4983,5000,-5020,5020,4965,-5003,5002,4964,-5022,4984,5022,-4969,5003,4965,-5021,4984,5003,-5024,4967,4985,-5005,5024,4986,-5005,4986,5024,-5006,5006,4968,-5023,5025,4985,-5007,5026,4969,-5008,4987,5027,-5008,5027,4987,-4989,4988,5005,-5029,5008,4969,-5027,4989,5008,-5030,4990,4989,-5010,4971,5009,-5011,5011,4972,-5011,4991,5011,-5031,4974,5012,-5014,4975,5013,-5032,5014,4975,-5032,5032,4992,-5015,4976,5015,-4999,5015,4992,-5033,593,5016,-4995,5016,4995,-4980,593,4994,-553,4995,5033,-5018,5017,5034,-4997,4996,5035,-5013,4997,5036,-5019,4997,4998,-5037,5018,5037,-5000,5038,5000,-5002,5039,5001,-5000,5040,5019,-5001,5021,5020,-5003,4984,5041,-5023,5003,5020,-5043,5003,5043,-5024,5041,4984,-5024,5025,5004,-4986,5024,5004,-5026,5024,5044,-5006,5022,5045,-5007,5025,5006,-5047,5026,5007,-5048,5047,5007,-5028,5027,4988,-5029,5028,\r\n5005,-5045,5026,5048,-5009,5008,5048,-5030,4989,5029,-5050,4989,5049,-5010,5010,5009,-5051,5010,5051,-5012,5052,5030,-5012,5013,5012,-5054,5013,5053,-5032,5014,5031,-5055,5032,5014,-5056,5015,5056,-4999,5015,5032,-5057,593,5057,-5017,4995,5016,-5034,5033,5058,-5018,5058,5034,-5018,4996,5034,-5060,5035,4996,-5060,5053,5012,-5036,5018,5036,-5038,4998,5056,-5037,4999,5037,-5061,5038,5040,-5001,5039,5038,-5002,4999,5060,-5040,5042,5020,-5022,5022,5041,-5046,5003,5042,-5044,5041,5023,-5044,5061,5024,-5026,5024,5061,-5045,5046,5006,-5046,5062,5025,-5047,5047,5063,-5027,5047,5027,-5029,5044,5064,-5029,5026,5065,-5049,5066,5029,-5049,5067,5049,-5030,5068,5009,-5050,5068,5050,-5010,5010,5050,-5052,5051,5052,-5012,5069,5030,-5053,5031,5053,-5071,5054,5031,-5071,5014,5054,-5056,5071,5032,-5056,5056,5032,-5072,593,5072,-5058,5016,5057,-5034,5033,5057,-5059,5059,5034,-5059,5059,5073,-5036,5053,5035,-5074,5037,5036,-5057,5074,5060,-5038,5038,5075,-5041,5039,5060,-5039,5076,5045,-5042,5042,5077,-5044,5078,5041,-5044,5061,5025,-5063,5044,5061,-5080,5080,5046,-5046,5046,5081,-5063,5047,5082,-5064,5026,5063,-5066,5047,5028,-5083,5044,5079,-5065,5083,5028,-5065,5084,5048,-5066,5029,5066,-5086,5066,5048,-5085,5067,5068,-5050,5067,5029,-5087,5050,5068,-5088,5050,5087,-5052,5051,5069,-5053,5053,5073,-5071,5054,5070,-5089,5089,5055,-5055,5090,5071,-5056,5056,5071,-5075,5072,593,-593,5072,5091,-5058,5057,5092,-5059,5092,5059,-5059,5093,5073,-5060,5074,5037,-5057,5060,5074,-5095,5075,5038,-5096,5095,5038,-5061,5080,5045,-5077,5076,5041,-5079,5078,5043,-5078,5062,5079,-5062,5080,5096,-5047,5046,5096,-5082,5062,5081,-5098,5063,5082,-5099,5063,5098,-5066,5028,5083,-5083,5079,5099,-5065,5083,5064,-5100,5084,5065,-5101,5085,5066,-5102,5029,5085,-5087,5084,5102,-5067,5068,5067,-5104,5067,5086,-5104,5068,5103,-5088,5087,5104,-5052,5051,5105,-5070,5070,5073,-5107,5070,5106,-5089,5089,5054,-5089,5090,5055,-5090,5071,5090,-5108,5074,5071,-5108,5072,592,-5109,5072,5109,-5092,5057,5091,-5093,5092,5093,-5060,5093,5106,-5074,5074,5107,-5095,5060,5094,-5096,\r\n5076,5110,-5081,5076,5078,-5112,5077,5111,-5079,5112,5079,-5063,5080,5113,-5097,5096,5114,-5082,5081,5115,-5098,5112,5062,-5098,5082,5083,-5099,5116,5065,-5099,5079,5112,-5100,5083,5099,-5118,5116,5100,-5066,5100,5118,-5085,5102,5101,-5067,5119,5085,-5102,5086,5085,-5121,5084,5118,-5103,5086,5104,-5104,5103,5104,-5088,5051,5104,-5106,5069,5105,-5122,5122,5088,-5107,5089,5088,-5124,5090,5089,-5125,5124,5107,-5091,592,5125,-5109,5108,5109,-5073,5091,5109,-5094,5093,5092,-5092,5106,5093,-5110,5126,5094,-5108,5094,5126,-5096,5076,5111,-5111,5110,5113,-5081,5127,5111,-5078,5113,5128,-5097,5096,5128,-5115,5081,5114,-5130,5081,5129,-5116,5130,5097,-5116,5130,5112,-5098,5083,5131,-5099,5116,5098,-5132,5099,5112,-5133,5099,5132,-5118,5117,5133,-5084,5116,5134,-5101,5100,5135,-5119,5102,5136,-5102,5119,5120,-5086,5137,5119,-5102,5086,5120,-5139,5118,5139,-5103,5086,5138,-5105,5140,5105,-5105,5105,5141,-5122,5122,5123,-5089,5122,5106,-5110,5089,5123,-5125,5124,5142,-5108,5125,592,-589,5125,5143,-5109,5108,5144,-5110,5107,5142,-5127,5127,5110,-5112,5110,5145,-5114,5113,5145,-5129,5146,5114,-5129,5129,5114,-5148,5129,5148,-5116,5130,5115,-5150,5112,5130,-5133,5083,5133,-5132,5116,5131,-5135,5132,5150,-5118,5117,5150,-5134,5135,5100,-5135,5135,5151,-5119,5102,5139,-5137,5136,5152,-5102,5120,5119,-5154,5154,5119,-5138,5137,5101,-5153,5155,5138,-5121,5118,5151,-5140,5138,5140,-5105,5105,5140,-5142,5156,5121,-5142,5157,5123,-5123,5109,5158,-5123,5124,5123,-5160,5124,5159,-5143,5143,5125,-589,5160,5108,-5144,5108,5160,-5145,5144,5161,-5110,5145,5110,-5128,5146,5128,-5146,5146,5147,-5115,5162,5129,-5148,5162,5148,-5130,5115,5148,-5164,5164,5149,-5116,5130,5149,-5133,5131,5133,-5166,5134,5131,-5166,5132,5149,-5151,5150,5166,-5134,5135,5134,-5166,5135,5167,-5152,5136,5139,-5153,5153,5119,-5169,5120,5153,-5156,5154,5168,-5120,5154,5137,-5170,5152,5169,-5138,5155,5140,-5139,5151,5170,-5140,5140,5156,-5142,5171,5121,-5157,5157,5159,-5124,5122,5158,-5158,5158,5109,-5162,5172,5143,-589,5143,5172,-5161,5160,5172,-5145,5161,5144,-5173,5173,5162,\r\n-5148,5174,5148,-5163,5163,5148,-5176,5164,5115,-5164,5164,5150,-5150,5133,5166,-5166,5150,5164,-5167,5167,5135,-5166,5151,5167,-5177,5139,5177,-5153,5153,5168,-5179,5178,5155,-5154,5168,5154,-5180,5180,5154,-5170,5169,5152,-5178,5140,5155,-5179,5170,5151,-5177,5181,5139,-5171,5140,5178,-5157,5156,5182,-5172,5174,5162,-5174,5148,5174,-5184,5148,5183,-5176,5163,5175,-5185,5164,5163,-5185,5185,5165,-5167,5166,5164,-5185,5167,5165,-5187,5167,5187,-5177,5139,5181,-5178,5178,5168,-5189,5154,5180,-5180,5168,5179,-5189,5189,5180,-5170,5177,5190,-5170,5170,5176,-5192,5181,5170,-5193,5178,5188,-5157,5156,5193,-5183,5182,5194,-5172,5195,5174,-5174,5183,5174,-5197,5197,5175,-5184,5198,5184,-5176,5185,5186,-5166,5166,5184,-5186,5187,5167,-5187,5199,5176,-5188,5200,5177,-5182,5201,5179,-5181,5188,5179,-5194,5189,5201,-5181,5202,5189,-5170,5177,5200,-5191,5202,5169,-5191,5191,5176,-5200,5192,5170,-5192,5203,5181,-5193,5188,5193,-5157,5182,5193,-5195,5171,5194,-5205,5195,5205,-5175,5196,5174,-5206,5183,5196,-5207,5197,5198,-5176,5197,5183,-5207,5198,5185,-5185,5185,5198,-5187,5187,5186,-5208,5199,5187,-5209,5200,5181,-5210,5201,5210,-5180,5193,5179,-5211,5201,5189,-5212,5212,5189,-5203,5200,5213,-5191,5202,5190,-5214,5199,5214,-5192,5192,5191,-5215,5209,5181,-5204,5203,5192,-5216,5193,5210,-5195,5216,5204,-5195,5205,5195,-5218,5196,5205,-5219,5219,5206,-5197,5198,5197,-5221,5197,5206,-5222,5198,5220,-5187,5207,5186,-5221,5187,5207,-5209,5199,5208,-5215,5222,5200,-5210,5223,5210,-5202,5189,5224,-5212,5201,5211,-5224,5225,5189,-5213,5202,5226,-5213,5200,5222,-5214,5227,5202,-5214,5214,5228,-5193,5203,5229,-5210,5228,5215,-5193,5203,5215,-5231,5194,5210,-5232,5216,5232,-5205,5194,5231,-5217,5195,5233,-5218,5217,5234,-5206,5235,5218,-5206,5219,5196,-5219,5219,5221,-5207,5220,5197,-5222,5220,5221,-5208,5208,5207,-5237,5237,5214,-5209,5238,5222,-5210,5223,5231,-5211,5225,5224,-5190,5211,5224,-5240,5223,5211,-5240,5240,5225,-5213,5227,5226,-5203,5240,5212,-5227,5241,5213,-5223,5213,5242,-5228,5237,5228,-5215,5203,5230,-5230,5229,5243,-5210,\r\n5228,5244,-5216,5230,5215,-5246,5216,5246,-5233,5223,5216,-5232,5233,5247,-5218,5217,5248,-5235,5235,5205,-5235,5235,5249,-5219,5219,5218,-5250,5221,5219,-5237,5221,5236,-5208,5208,5236,-5251,5237,5208,-5252,5241,5222,-5239,5243,5238,-5210,5252,5224,-5226,5239,5224,-5254,5223,5239,-5255,5240,5255,-5226,5240,5226,-5228,5256,5213,-5242,5213,5257,-5243,5242,5258,-5228,5244,5228,-5238,5259,5229,-5231,5229,5260,-5244,5245,5215,-5245,5230,5245,-5262,5254,5246,-5217,5223,5254,-5217,5247,5248,-5218,5234,5248,-5263,5235,5234,-5264,5264,5249,-5236,5236,5219,-5250,5236,5249,-5251,5250,5251,-5209,5244,5237,-5252,5241,5238,-5266,5265,5238,-5244,5252,5253,-5225,5255,5252,-5226,5253,5254,-5240,5240,5266,-5256,5258,5240,-5228,5257,5213,-5257,5267,5256,-5242,5242,5257,-5269,5269,5258,-5243,5259,5260,-5230,5259,5230,-5262,5243,5260,-5271,5244,5271,-5246,5271,5261,-5246,5272,5246,-5255,5248,5247,-5274,5274,5262,-5249,5234,5262,-5276,5275,5263,-5235,5264,5235,-5264,5264,5250,-5250,5250,5264,-5252,5244,5251,-5272,5276,5241,-5266,5265,5243,-5278,5253,5252,-5279,5255,5278,-5253,5253,5272,-5255,5240,5258,-5267,5279,5255,-5267,5256,5267,-5258,5276,5267,-5242,5257,5267,-5269,5280,5242,-5269,5269,5281,-5259,5280,5269,-5243,5259,5282,-5261,5283,5259,-5262,5284,5270,-5261,5277,5243,-5271,5271,5283,-5262,5285,5273,-5248,5286,5248,-5274,5287,5262,-5275,5286,5274,-5249,5288,5275,-5263,5275,5289,-5264,5264,5263,-5290,5264,5289,-5252,5271,5251,-5291,5265,5291,-5277,5277,5292,-5266,5253,5278,-5294,5279,5278,-5256,5272,5253,-5294,5266,5258,-5282,5279,5266,-5282,5276,5294,-5268,5295,5268,-5268,5268,5296,-5281,5297,5281,-5270,5298,5269,-5281,5283,5282,-5260,5260,5282,-5285,5284,5299,-5271,5277,5270,-5301,5283,5271,-5291,5286,5273,-5286,5287,5288,-5263,5274,5301,-5288,5274,5286,-5302,5288,5290,-5276,5290,5289,-5276,5290,5251,-5290,5265,5292,-5292,5276,5291,-5295,5300,5292,-5278,5293,5278,-5303,5279,5302,-5279,5297,5279,-5282,5303,5267,-5295,5295,5304,-5269,5305,5295,-5268,5296,5268,-5305,5296,5298,-5281,5306,5297,-5270,5298,5306,-5270,5283,5307,-5283,5308,\r\n5284,-5283,5299,5284,-5309,5309,5270,-5300,5309,5300,-5271,5283,5290,-5289,5285,5310,-5287,5288,5287,-5312,5312,5287,-5302,5301,5286,-5314,5292,5314,-5292,5294,5291,-5316,5300,5316,-5293,5317,5293,-5303,5297,5302,-5280,5267,5303,-5306,5315,5303,-5295,5295,5318,-5305,5295,5305,-5319,5319,5296,-5305,5296,5320,-5299,5306,5321,-5298,5306,5298,-5322,5307,5283,-5312,5308,5282,-5308,5322,5299,-5309,5322,5309,-5300,5309,5323,-5301,5288,5311,-5284,5285,5324,-5311,5325,5286,-5311,5312,5311,-5288,5326,5312,-5302,5325,5313,-5287,5301,5313,-5327,5314,5292,-5328,5328,5291,-5315,5315,5291,-5329,5316,5300,-5324,5327,5292,-5317,5317,5302,-5298,5329,5305,-5304,5303,5315,-5331,5304,5318,-5332,5305,5332,-5319,5320,5296,-5320,5319,5304,-5334,5320,5321,-5299,5297,5321,-5335,5312,5307,-5312,5307,5335,-5309,5336,5322,-5309,5323,5309,-5323,5325,5310,-5325,5326,5335,-5313,5337,5313,-5326,5337,5326,-5314,5314,5327,-5339,5328,5314,-5339,5339,5315,-5329,5323,5340,-5317,5327,5316,-5342,5334,5317,-5298,5305,5329,-5333,5303,5330,-5330,5339,5330,-5316,5331,5318,-5343,5331,5333,-5305,5332,5343,-5319,5320,5319,-5345,5319,5333,-5346,5320,5346,-5322,5334,5321,-5347,5307,5312,-5336,5308,5335,-5348,5322,5336,-5349,5336,5308,-5348,5323,5322,-5349,5349,5325,-5325,5326,5347,-5336,5325,5350,-5338,5326,5337,-5348,5351,5338,-5328,5328,5338,-5353,5353,5339,-5329,5323,5348,-5341,5316,5340,-5342,5351,5327,-5342,5354,5332,-5330,5330,5355,-5330,5330,5339,-5357,5357,5342,-5319,5331,5342,-5359,5359,5333,-5332,5360,5343,-5333,5318,5343,-5358,5319,5345,-5345,5320,5344,-5347,5345,5333,-5362,5336,5362,-5349,5347,5363,-5337,5350,5325,-5350,5349,5324,-5365,5350,5363,-5338,5347,5337,-5364,5351,5365,-5339,5365,5352,-5339,5366,5328,-5353,5353,5356,-5340,5328,5366,-5354,5340,5348,-5368,5341,5340,-5369,5341,5369,-5352,5360,5332,-5355,5329,5355,-5355,5355,5330,-5371,5330,5356,-5372,5357,5372,-5343,5358,5342,-5374,5331,5358,-5360,5359,5361,-5334,5374,5343,-5361,5357,5343,-5376,5376,5344,-5346,5345,5361,-5377,5336,5363,-5363,5367,5348,-5363,5377,5350,-5350,5349,5364,-5378,5378,5363,\r\n-5351,5365,5351,-5370,5365,5379,-5353,5366,5352,-5381,5353,5381,-5357,5382,5353,-5367,5340,5367,-5369,5341,5368,-5370,5383,5360,-5355,5384,5354,-5356,5330,5371,-5371,5385,5355,-5371,5356,5386,-5372,5357,5375,-5373,5373,5342,-5373,5358,5373,-5388,5358,5388,-5360,5361,5359,-5389,5374,5375,-5344,5389,5374,-5361,5376,5361,-5389,5378,5362,-5364,5367,5362,-5391,5377,5378,-5351,5391,5377,-5365,5365,5369,-5393,5365,5392,-5380,5379,5380,-5353,5393,5366,-5381,5382,5381,-5354,5394,5356,-5382,5382,5366,-5396,5396,5368,-5368,5369,5368,-5398,5383,5389,-5361,5384,5383,-5355,5384,5355,-5386,5371,5398,-5371,5398,5385,-5371,5356,5394,-5387,5399,5371,-5387,5400,5372,-5376,5373,5372,-5402,5387,5373,-5403,5358,5387,-5389,5374,5403,-5376,5404,5374,-5390,5376,5388,-5406,5390,5362,-5379,5390,5396,-5368,5390,5378,-5378,5377,5391,-5407,5407,5391,-5365,5369,5397,-5393,5379,5392,-5409,5380,5379,-5410,5395,5366,-5394,5393,5380,-5410,5382,5410,-5382,5394,5381,-5412,5412,5382,-5396,5396,5397,-5369,5389,5383,-5414,5414,5383,-5385,5385,5415,-5385,5371,5399,-5399,5398,5415,-5386,5394,5416,-5387,5399,5386,-5417,5400,5401,-5373,5400,5375,-5404,5401,5402,-5374,5405,5388,-5388,5403,5374,-5405,5404,5389,-5418,5390,5406,-5397,5377,5406,-5391,5407,5406,-5392,5397,5418,-5393,5418,5408,-5393,5379,5408,-5410,5395,5393,-5420,5393,5409,-5421,5382,5412,-5411,5381,5410,-5412,5394,5411,-5422,5412,5395,-5420,5396,5422,-5398,5413,5383,-5415,5389,5413,-5424,5414,5384,-5416,5424,5398,-5400,5424,5415,-5399,5394,5421,-5417,5399,5416,-5426,5400,5426,-5402,5400,5403,-5428,5428,5402,-5402,5403,5404,-5430,5417,5389,-5424,5429,5404,-5418,5396,5406,-5423,5407,5422,-5407,5397,5422,-5419,5408,5418,-5431,5408,5431,-5410,5419,5393,-5421,5420,5409,-5432,5410,5412,-5433,5411,5410,-5422,5412,5419,-5434,5413,5414,-5435,5434,5423,-5414,5414,5415,-5436,5424,5399,-5426,5424,5436,-5416,5437,5416,-5422,5425,5416,-5439,5400,5427,-5427,5426,5428,-5402,5403,5429,-5428,5417,5423,-5440,5429,5417,-5441,5441,5422,-5408,5442,5418,-5423,5418,5442,-5431,5430,5431,-5409,5419,5420,-5444,5444,5420,-5432,\r\n5412,5433,-5433,5432,5421,-5411,5433,5419,-5444,5434,5414,-5436,5423,5434,-5446,5436,5435,-5416,5424,5425,-5447,5447,5436,-5425,5437,5438,-5417,5437,5421,-5449,5438,5449,-5426,5440,5427,-5430,5439,5423,-5446,5439,5440,-5418,5422,5441,-5443,5430,5450,-5432,5443,5420,-5445,5444,5431,-5451,5451,5432,-5434,5432,5448,-5422,5433,5443,-5452,5434,5435,-5453,5445,5434,-5453,5435,5436,-5453,5449,5446,-5426,5446,5447,-5425,5447,5453,-5437,5437,5454,-5439,5455,5437,-5449,5456,5449,-5439,5439,5445,-5458,5439,5458,-5441,5444,5459,-5444,5444,5450,-5461,5451,5461,-5433,5448,5432,-5463,5459,5451,-5444,5463,5445,-5453,5453,5452,-5437,5447,5464,-5454,5437,5455,-5455,5456,5438,-5455,5465,5455,-5449,5457,5445,-5467,5457,5458,-5440,5459,5444,-5468,5460,5467,-5445,5461,5451,-5469,5469,5432,-5462,5469,5462,-5433,5448,5462,-5471,5459,5468,-5452,5471,5445,-5464,5472,5463,-5453,5472,5452,-5454,5464,5447,-5474,5465,5448,-5471,5445,5471,-5467,5458,5457,-5467,5459,5467,-5469,5469,5470,-5463,5474,5475,-5477,5477,5475,-5475,5476,5475,-5479,5474,5476,-5480,5477,5480,-5476,5474,5481,-5478,5478,5475,-5483,5476,5478,-5484,5476,5484,-5480,5485,5474,-5480,5477,5486,-5481,5480,5487,-5476,5485,5481,-5475,5477,5481,-5489,5475,5487,-5483,5478,5482,-5490,5483,5478,-5491,5491,5476,-5484,5484,5476,-5492,5484,5492,-5480,5485,5479,-5493,5477,5493,-5487,5494,5480,-5487,5487,5480,-5496,5481,5485,-5497,5497,5488,-5482,5493,5477,-5489,5482,5487,-5499,5482,5498,-5490,5490,5478,-5490,5499,5483,-5491,5491,5483,-5501,5484,5491,-5502,5484,5502,-5493,5492,5503,-5486,5493,5504,-5487,5494,5495,-5481,5494,5486,-5506,5495,5506,-5488,5496,5485,-5504,5481,5496,-5508,5488,5497,-5509,5507,5497,-5482,5493,5488,-5510,5498,5487,-5507,5489,5498,-5511,5489,5511,-5491,5500,5483,-5500,5499,5490,-5513,5513,5491,-5501,5501,5491,-5514,5501,5514,-5485,5484,5514,-5503,5492,5502,-5504,5515,5504,-5494,5486,5504,-5506,5495,5494,-5517,5505,5516,-5495,5506,5495,-5518,5503,5518,-5497,5507,5496,-5520,5508,5497,-5521,5509,5488,-5509,5520,5497,-5508,5493,5509,-5522,5498,5506,-5518,5498,5522,-5511,5489,\r\n5510,-5524,5511,5489,-5524,5512,5490,-5512,5524,5500,-5500,5525,5499,-5513,5500,5526,-5514,5501,5513,-5528,5501,5528,-5515,5518,5502,-5515,5503,5502,-5519,5515,5529,-5505,5515,5493,-5522,5530,5505,-5505,5531,5495,-5517,5505,5532,-5517,5517,5495,-5532,5496,5518,-5534,5496,5533,-5520,5534,5507,-5520,5535,5508,-5521,5536,5509,-5509,5535,5520,-5508,5536,5521,-5510,5498,5517,-5523,5522,5537,-5511,5523,5510,-5538,5511,5523,-5539,5512,5511,-5540,5526,5500,-5525,5524,5499,-5541,5499,5525,-5542,5525,5512,-5543,5526,5527,-5514,5501,5527,-5529,5528,5543,-5515,5518,5514,-5544,5515,5544,-5530,5529,5530,-5505,5521,5545,-5516,5505,5530,-5547,5531,5516,-5533,5505,5546,-5533,5517,5531,-5548,5533,5518,-5544,5533,5548,-5520,5535,5507,-5535,5534,5519,-5549,5508,5535,-5550,5550,5536,-5509,5521,5536,-5546,5517,5551,-5523,5522,5551,-5538,5523,5537,-5553,5523,5552,-5539,5539,5511,-5539,5512,5539,-5543,5526,5524,-5541,5499,5541,-5541,5553,5541,-5526,5525,5542,-5554,5526,5554,-5528,5555,5528,-5528,5528,5556,-5544,5515,5557,-5545,5544,5558,-5530,5530,5529,-5560,5515,5545,-5558,5560,5546,-5531,5531,5532,-5562,5546,5562,-5533,5547,5531,-5562,5563,5517,-5548,5533,5543,-5565,5565,5548,-5534,5549,5535,-5535,5566,5534,-5549,5550,5508,-5550,5536,5550,-5568,5536,5567,-5546,5517,5563,-5552,5537,5551,-5569,5569,5552,-5538,5538,5552,-5571,5539,5538,-5571,5570,5542,-5540,5526,5540,-5572,5541,5572,-5541,5573,5541,-5554,5574,5553,-5543,5571,5554,-5527,5527,5554,-5576,5555,5556,-5529,5555,5527,-5576,5564,5543,-5557,5576,5544,-5558,5544,5577,-5559,5529,5558,-5560,5530,5559,-5561,5567,5557,-5546,5560,5578,-5547,5532,5562,-5562,5546,5579,-5563,5547,5561,-5581,5563,5547,-5582,5565,5533,-5565,5582,5548,-5566,5549,5534,-5567,5566,5548,-5584,5550,5549,-5585,5550,5585,-5568,5563,5568,-5552,5537,5568,-5587,5587,5552,-5570,5537,5586,-5570,5587,5570,-5553,5574,5542,-5571,5588,5571,-5541,5541,5589,-5573,5572,5588,-5541,5573,5590,-5542,5553,5591,-5574,5574,5591,-5554,5592,5554,-5572,5554,5592,-5576,5555,5593,-5557,5594,5555,-5576,5556,5595,-5565,5576,5577,-5545,5596,5576,\r\n-5558,5597,5558,-5578,5559,5558,-5599,5559,5598,-5561,5567,5585,-5558,5560,5599,-5579,5578,5579,-5547,5600,5561,-5563,5562,5579,-5602,5561,5600,-5581,5580,5581,-5548,5568,5563,-5582,5602,5565,-5565,5548,5582,-5584,5582,5565,-5604,5566,5604,-5550,5583,5605,-5567,5584,5549,-5605,5550,5584,-5607,5550,5607,-5586,5608,5586,-5569,5609,5587,-5570,5608,5569,-5587,5570,5587,-4084,5570,5610,-5575,5588,5611,-5572,5589,5541,-5591,5589,5612,-5573,5572,5612,-5589,5573,5613,-5591,5573,5591,-5614,5614,5591,-5575,5592,5571,-5612,5575,5592,-5616,5594,5593,-5556,5595,5556,-5594,5575,5615,-5595,5595,5602,-5565,5616,5577,-5577,5596,5616,-5577,5596,5557,-5586,5597,5598,-5559,5597,5577,-5618,5560,5598,-5619,5618,5599,-5561,5619,5578,-5600,5579,5578,-5620,5562,5620,-5601,5601,5579,-5622,5601,5620,-5563,5580,5600,-5623,5623,5581,-5581,5568,5581,-5625,5603,5565,-5603,5625,5583,-5583,5582,5603,-5626,5566,5605,-5605,5626,5605,-5584,5604,5627,-5585,5606,5584,-5628,5606,5607,-5551,5628,5585,-5608,5608,5568,-5630,5609,5630,-5588,5569,5631,-5610,5608,5631,-5570,5587,5630,-4084,4083,5610,-5571,5574,5610,-5615,5588,5612,-5612,5632,5589,-5591,5612,5589,-5634,5613,5634,-5591,5591,5635,-5614,5636,5591,-5615,5592,5611,-5638,5637,5615,-5593,5594,5638,-5594,5595,5593,-5640,5640,5594,-5616,5641,5602,-5596,5616,5617,-5578,5596,5642,-5617,5643,5596,-5586,5644,5598,-5598,5617,5645,-5598,5598,5646,-5619,5599,5618,-5648,5599,5648,-5620,5619,5621,-5580,5620,5649,-5601,5650,5601,-5622,5601,5650,-5621,5649,5622,-5601,5623,5580,-5623,5623,5624,-5582,5629,5568,-5625,5603,5602,-5652,5583,5625,-5627,5603,5652,-5626,5605,5653,-5605,5626,5654,-5606,5604,5655,-5628,5606,5627,-5657,5606,5657,-5608,5643,5585,-5629,5628,5607,-5658,5608,5629,-5659,5609,4085,-5631,5631,4053,-5610,5659,5631,-5609,4085,4083,-5631,4083,5660,-5611,5660,5614,-5611,5612,5661,-5612,5589,5632,-5634,5632,5590,-5635,5662,5612,-5634,5613,5663,-5635,5635,5591,-5637,5613,5635,-5665,5636,5614,-5666,5611,5661,-5638,5666,5615,-5638,5594,5640,-5639,5639,5593,-5639,5639,5641,-5596,5640,5615,-5668,5668,5602,-5642,\r\n5617,5616,-5643,5642,5596,-5670,5669,5596,-5644,5598,5644,-5647,5644,5597,-5671,5617,5671,-5646,5597,5645,-5671,5646,5672,-5619,5647,5618,-5674,5599,5647,-5649,5648,5621,-5620,5650,5649,-5621,5650,5621,-5675,5675,5622,-5650,5622,5675,-5624,5623,5676,-5625,5677,5629,-5625,5651,5602,-5669,5651,5652,-5604,5626,5625,-5679,5652,5678,-5626,5605,5654,-5654,5653,5655,-5605,5626,5679,-5655,5680,5627,-5656,5627,5680,-5657,5657,5606,-5657,5628,5681,-5644,5628,5657,-5683,5629,5683,-5659,5659,5608,-5659,5609,4014,-4086,5631,5659,-4054,5609,4053,-4015,4108,5660,-4084,5665,5614,-5661,5612,5662,-5662,5684,5633,-5633,5632,5634,-5685,5662,5633,-5686,5613,5664,-5664,5663,5686,-5635,5687,5635,-5637,5688,5664,-5636,5689,5636,-5666,5661,5666,-5638,5667,5615,-5667,5640,5690,-5639,5639,5638,-5692,5668,5641,-5640,5692,5640,-5668,5617,5642,-5672,5669,5693,-5643,5669,5643,-5682,5672,5646,-5645,5670,5694,-5645,5671,5695,-5646,5645,5695,-5671,5673,5618,-5673,5673,5696,-5648,5647,5697,-5649,5648,5674,-5622,5650,5698,-5650,5674,5699,-5651,5700,5675,-5650,5623,5675,-5702,5623,5702,-5677,5624,5676,-5678,5629,5677,-5703,5651,5668,-5704,5651,5704,-5653,5705,5626,-5679,5652,5706,-5679,5707,5653,-5655,5653,5707,-5656,5705,5679,-5627,5654,5679,-5709,5680,5655,-5708,5656,5680,-5710,5656,5682,-5658,5710,5681,-5629,5682,5711,-5629,5629,5702,-5684,5683,4129,-5659,5659,5658,-4130,5659,4082,-4054,4084,5660,-4109,5660,4084,-5666,5712,5661,-5663,5633,5684,-5714,5686,5684,-5635,5713,5685,-5634,5662,5685,-5713,5663,5664,-5715,5714,5686,-5664,5688,5635,-5688,5687,5636,-5690,5715,5664,-5689,5665,4079,-5690,5692,5690,-5641,5690,5691,-5639,5691,5716,-5640,5668,5639,-5704,5642,5717,-5672,5669,5710,-5694,5717,5642,-5694,5710,5669,-5682,5672,5644,-5695,5694,5670,-5719,5671,5719,-5696,5670,5695,-5719,5673,5672,-5721,5696,5673,-5722,5697,5647,-5697,5648,5697,-5675,5650,5722,-5699,5698,5700,-5650,5674,5723,-5700,5699,5722,-5651,5675,5700,-5725,5724,5701,-5676,5702,5623,-5702,5676,5702,-5678,5651,5703,-5726,5704,5651,-5726,5726,5652,-5705,5705,5678,-5728,5726,5706,-5653,5706,\r\n5727,-5679,5707,5654,-5709,5728,5679,-5706,5679,5728,-5709,5680,5707,-5730,5709,5680,-5730,5709,5730,-5657,5731,5682,-5657,5711,5710,-5629,5732,5711,-5683,5733,5683,-5703,5734,4129,-5684,4129,4082,-5660,5665,4084,-4080,5684,5735,-5714,5686,5736,-5685,5713,5737,-5686,5712,5685,-5739,5714,5664,-5716,5736,5686,-5715,5688,5687,-5740,5740,5687,-5690,5688,5741,-5716,4079,3971,-5690,5692,5742,-5691,5691,5690,-5744,5691,5743,-5717,5716,5703,-5640,5671,5717,-5745,5745,5693,-5711,5746,5717,-5694,5672,5694,-5721,5747,5694,-5719,5671,5744,-5720,5695,5719,-5749,5748,5718,-5696,5673,5720,-5750,5673,5749,-5722,5750,5696,-5722,5750,5697,-5697,5697,5723,-5675,5722,5751,-5699,5698,5752,-5701,5699,5723,-5723,5753,5724,-5701,5724,5754,-5702,5701,5733,-5703,5755,5725,-5704,5756,5704,-5726,5726,5704,-5758,5758,5705,-5728,5759,5706,-5727,5706,5760,-5728,5761,5707,-5709,5728,5705,-5759,5762,5708,-5729,5763,5729,-5708,5764,5709,-5730,5730,5709,-5766,5656,5730,-5732,5731,5732,-5683,5710,5711,-5733,5733,5734,-5684,4154,4129,-5735,5735,5684,-5737,5713,5735,-5767,5737,5713,-5768,5737,5738,-5686,5736,5714,-5716,5739,5687,-5741,5741,5688,-5740,5689,3971,-5741,5768,5715,-5742,5742,5743,-5691,5716,5743,-5770,5716,5755,-5704,5746,5744,-5718,5770,5693,-5746,5732,5745,-5711,5746,5693,-5772,5720,5694,-5773,5694,5747,-5773,5773,5747,-5719,5719,5744,-5775,5719,5774,-5749,5718,5748,-5776,5720,5776,-5750,5721,5749,-5778,5778,5750,-5722,5779,5697,-5751,5723,5697,-5780,5751,5722,-5781,5698,5751,-5753,5753,5700,-5753,5722,5723,-5781,5781,5724,-5754,5754,5724,-5783,5733,5701,-5755,5755,5756,-5726,5704,5756,-5758,5759,5726,-5758,5758,5727,-5784,5760,5706,-5760,5760,5783,-5728,5763,5707,-5762,5761,5708,-5763,5758,5762,-5729,5764,5729,-5764,5765,5709,-5765,5784,5730,-5766,5730,5784,-5732,5732,5731,-5786,5734,5733,-5787,5734,5786,-4155,5735,5736,-5767,5713,5766,-5788,5787,5767,-5714,5788,5737,-5768,5736,5715,-5769,5740,5789,-5740,5741,5739,-5791,3971,4044,-5741,5768,5741,-5792,5755,5716,-5770,5746,5792,-5745,5770,5771,-5694,5770,5745,-5794,5794,5745,-5733,5746,5771,\r\n-5796,5720,5772,-5797,5797,5772,-5748,5798,5747,-5774,5773,5718,-5776,5744,5792,-5775,5774,5775,-5749,5776,5720,-5797,5776,5799,-5750,5799,5777,-5750,5721,5777,-5779,5750,5778,-5801,5800,5779,-5751,5780,5723,-5780,5780,5801,-5752,5753,5752,-5752,5781,5782,-5725,4216,5781,-5754,5786,5754,-5783,5733,5754,-5787,5758,5783,-5803,5760,5759,-5804,5760,5804,-5784,5761,5805,-5764,5762,5806,-5762,5758,5802,-5763,5807,5764,-5764,5808,5765,-5765,5784,5765,-5810,5785,5731,-5785,5785,5794,-5733,4171,4154,-5787,5810,5766,-5737,5810,5787,-5767,5767,5787,-5789,5768,5810,-5737,5789,5740,-4045,5739,5789,-5812,5739,5811,-5791,5791,5741,-5791,5812,5768,-5792,5746,5813,-5793,5795,5771,-5771,5745,5794,-5794,5814,5770,-5794,5813,5746,-5796,5815,5796,-5773,5797,5815,-5773,5798,5797,-5748,5773,5816,-5799,5773,5775,-5818,5818,5774,-5793,5819,5775,-5775,5776,5796,-5821,5776,5820,-5800,5821,5777,-5800,5778,5777,-5822,5821,5800,-5779,5800,5822,-5780,5780,5779,-5823,5780,5822,-5802,5823,5751,-5802,5751,5824,-5754,5781,4197,-5783,4197,5781,-4217,5753,5824,-4217,5786,5782,-4198,5825,5802,-5784,5803,5804,-5761,5825,5783,-5805,5761,5806,-5806,5807,5763,-5806,5762,5826,-5807,5826,5762,-5803,5764,5807,-5809,5809,5765,-5809,5827,5784,-5810,5827,5785,-5785,5785,5828,-5795,4171,5786,-4198,5787,5810,-5830,5788,5787,-5831,5831,5810,-5769,5789,4044,-5833,5833,5811,-5790,5790,5811,-5834,5790,5834,-5792,5812,5831,-5769,5835,5812,-5792,5836,5792,-5814,5814,5795,-5771,5794,5837,-5794,5838,5814,-5794,5839,5813,-5796,5796,5815,-5841,5815,5797,-5842,5841,5797,-5799,5816,5773,-5818,5841,5798,-5817,5817,5775,-5843,5843,5774,-5819,5836,5818,-5793,5819,5842,-5776,5819,5774,-5844,5796,5840,-5821,5799,5820,-5841,5844,5821,-5800,5821,5845,-5801,5822,5800,-5847,5801,5822,-5848,5751,5823,-5825,5823,5801,-5849,5824,5823,-4217,5826,5802,-5826,5849,5805,-5807,5805,5850,-5808,5849,5806,-5827,5807,5851,-5809,5852,5809,-5809,5853,5827,-5810,5828,5785,-5828,5794,5828,-5838,5810,5831,-5830,5829,5830,-5788,5788,5830,-5855,4044,4046,-5833,5789,5832,-5856,5833,5789,-5856,5790,5833,-5835,\r\n5791,5834,-5857,5857,5831,-5813,5857,5812,-5836,5835,5791,-5857,5813,5839,-5837,5839,5795,-5815,5837,5838,-5794,5814,5838,-5859,5859,5840,-5816,5815,5841,-5861,5816,5817,-5862,5816,5862,-5842,5817,5842,-5862,5863,5843,-5819,5818,5836,-5865,5865,5842,-5820,5819,5843,-5867,5844,5799,-5841,5844,5867,-5822,5821,5867,-5846,5800,5845,-5847,5846,5847,-5823,5801,5847,-5849,5848,5868,-5824,5823,5868,-4217,5869,5826,-5826,5805,5849,-5851,5807,5850,-5852,5849,5826,-5870,5808,5851,-5871,5852,5853,-5810,5852,5808,-5871,5871,5827,-5854,5827,5872,-5829,5873,5837,-5829,5829,5831,-5858,5829,5874,-5831,5875,5854,-5831,5832,4046,-5877,5832,5877,-5856,5833,5855,-5878,5878,5834,-5834,5856,5834,-5879,5857,5835,-5880,5879,5835,-5857,5836,5839,-5881,5881,5839,-5815,5858,5838,-5838,5814,5858,-5882,5882,5840,-5860,5859,5815,-5861,5883,5860,-5842,5816,5861,-5863,5884,5841,-5863,5885,5861,-5843,5863,5866,-5844,5864,5863,-5819,5836,5880,-5865,5865,5886,-5843,5865,5819,-5888,5887,5819,-5867,5882,5844,-5841,5888,5867,-5845,5845,5867,-5890,5845,5889,-5847,5846,5890,-5848,5848,5847,-5892,5868,5848,-5893,5868,4198,-4217,5850,5849,-5894,5851,5850,-5895,5895,5849,-5870,5896,5870,-5852,5897,5853,-5853,5898,5852,-5871,5827,5871,-5873,5899,5871,-5854,5873,5828,-5873,5873,5858,-5838,5857,5900,-5830,5900,5874,-5830,5874,5875,-5831,4047,5876,-4047,5901,5832,-5877,5832,5901,-5878,5878,5833,-5878,5856,5878,-5903,5857,5879,-5904,5904,5879,-5857,5905,5880,-5840,5839,5881,-5906,5906,5881,-5859,5882,5859,-5861,5907,5860,-5884,5883,5841,-5885,5861,5908,-5863,5909,5884,-5863,5885,5908,-5862,5885,5842,-5887,5910,5866,-5864,5911,5863,-5865,5864,5880,-5913,5886,5865,-5914,5865,5887,-5914,5887,5866,-5915,5844,5882,-5916,5888,5889,-5868,5844,5916,-5889,5917,5846,-5890,5846,5918,-5891,5891,5847,-5891,5891,5919,-5849,5892,5848,-5921,4198,5868,-5893,5849,5895,-5894,5893,5921,-5851,5894,5850,-5922,5894,5922,-5852,5898,5870,-5897,5896,5851,-5923,5899,5853,-5898,5852,5898,-5898,5899,5872,-5872,5873,5872,-5924,5873,5924,-5859,5903,5900,-5858,5925,5874,-5901,5875,5874,-5926,5926,\r\n5876,-4048,5926,5901,-5877,5927,5877,-5902,5878,5877,-5928,5927,5902,-5879,5904,5856,-5903,5903,5879,-5929,5929,5879,-5905,5912,5880,-5906,5881,5930,-5906,5930,5881,-5907,5906,5858,-5925,5915,5882,-5861,5931,5860,-5908,5907,5883,-5933,5884,5932,-5884,5909,5862,-5909,5909,5933,-5885,5908,5885,-5935,5935,5885,-5887,5910,5936,-5867,5911,5910,-5864,5911,5864,-5913,5886,5913,-5936,5887,5937,-5914,5866,5936,-5915,5938,5887,-5915,5844,5915,-5917,5939,5889,-5889,5916,5940,-5889,5918,5846,-5918,5939,5917,-5890,5918,5941,-5891,5890,5942,-5892,5891,5942,-5920,5920,5848,-5920,4198,5892,-5921,5893,5895,-5944,5921,5893,-5945,5894,5921,-5923,5945,5898,-5897,5896,5922,-5947,5899,5897,-5946,5945,5897,-5899,5872,5899,-5924,5923,5947,-5874,5924,5873,-5948,5903,5948,-5901,5948,5925,-5901,5949,5875,-5926,5926,4047,-4011,5901,5926,-5951,5901,5950,-5928,5927,5951,-5903,5902,5952,-5905,5879,5953,-5929,5954,5903,-5929,5879,5929,-5954,5929,5904,-5953,5905,5955,-5913,5905,5930,-5956,5930,5906,-5957,5957,5906,-5925,5931,5915,-5861,5931,5907,-5959,5932,5959,-5908,5884,5933,-5933,5909,5908,-5961,5960,5933,-5910,5885,5935,-5935,5960,5908,-5935,5961,5936,-5911,5961,5910,-5912,5911,5912,-5963,5913,5937,-5936,5963,5937,-5888,5936,5964,-5915,5965,5887,-5939,5938,5914,-5965,5958,5916,-5916,5940,5939,-5889,5940,5916,-5967,5967,5918,-5918,5917,5939,-5968,5918,5968,-5942,5890,5941,-5943,5969,5919,-5943,4199,5920,-5920,4198,5920,-4200,5970,5893,-5944,5970,5944,-5894,5971,5921,-5945,5971,5922,-5922,5945,5896,-5973,5973,5946,-5923,5946,5972,-5897,5899,5945,-5975,5923,5899,-5976,5923,5976,-5948,5957,5924,-5948,5954,5948,-5904,5948,5977,-5926,5925,5978,-5950,5926,4010,-4078,5979,5950,-5927,5927,5950,-5952,5902,5951,-5981,5902,5980,-5953,5981,5928,-5954,5954,5928,-5982,5929,5982,-5954,5929,5952,-5983,5912,5955,-5984,5930,5984,-5956,5957,5956,-5907,5930,5956,-5985,5915,5931,-5959,5958,5907,-5960,5985,5959,-5933,5985,5932,-5934,5960,5986,-5934,5935,5987,-5935,5934,5988,-5961,5989,5936,-5962,5961,5911,-5991,5983,5962,-5913,5990,5911,-5963,5935,5937,-5992,5937,5963,\r\n-5993,5965,5963,-5888,5989,5964,-5937,5938,5993,-5966,5938,5964,-5994,5958,5966,-5917,5994,5939,-5941,5995,5940,-5967,5918,5967,-5969,5996,5967,-5940,5997,5941,-5969,5941,5969,-5943,5998,5919,-5970,4199,5919,-4218,5970,5999,-5945,5971,5944,-6000,5973,5922,-5972,5945,5972,-5975,5973,6000,-5947,5946,6001,-5973,5975,5899,-5975,5923,5975,-5977,5976,6002,-5948,5957,5947,-6003,6003,5948,-5955,5977,5948,-6005,5978,5925,-5978,5978,6005,-5950,5926,4077,-6007,5979,5951,-5951,6006,5979,-5927,5979,5980,-5952,5980,6007,-5953,6008,5981,-5954,6003,5954,-5982,6008,5953,-5983,6009,5982,-5953,5983,5955,-6011,6010,5955,-5985,6011,5956,-5958,5956,6012,-5985,5958,5959,-6014,5985,6014,-5960,5985,5933,-6015,5988,5986,-5961,5986,6014,-5934,5935,6015,-5988,6016,5934,-5988,5988,5934,-6017,5989,5961,-6018,6017,5961,-5991,5983,6018,-5963,5990,5962,-6020,5937,5992,-5992,5991,6015,-5936,6020,5992,-5964,6020,5963,-5966,5964,5989,-6022,5965,5993,-6023,5993,5964,-6022,5958,6013,-5967,5939,5994,-5997,6023,5994,-5941,5995,6023,-5941,6024,5995,-5967,5996,5968,-5968,6025,5941,-5998,5968,6026,-5998,5969,5941,-6026,4217,5919,-5999,5998,5969,-4219,5970,6027,-6000,5999,5973,-5972,5972,6028,-5975,6029,6000,-5974,6000,6001,-5947,5972,6001,-6031,5974,6028,-5976,6031,5976,-5976,6002,5976,-6032,5957,6002,-6033,5948,6003,-6034,6033,6004,-5949,5978,5977,-6005,5978,6034,-6006,6006,4077,-4044,6006,6035,-5980,5979,6035,-5981,5980,6035,-6008,6007,6009,-5953,6036,5981,-6009,6037,6003,-5982,6036,6008,-5983,6036,5982,-6010,6010,6038,-5984,6012,6010,-5985,6011,6012,-5957,6011,5957,-6040,6013,5959,-6041,6014,6040,-5960,5988,6041,-5987,5986,6042,-6015,6043,5987,-6016,6043,6016,-5988,5988,6016,-6044,6044,5989,-6018,6017,5990,-6045,6018,5983,-6039,6019,5962,-6019,5990,6019,-6046,6046,5991,-5993,5991,6047,-6016,6048,5992,-6021,6049,6020,-5966,5989,6044,-6022,6022,5993,-6051,5965,6022,-6050,6021,6051,-5994,6024,5966,-6014,5996,5994,-6024,6052,6023,-5996,6024,6053,-5996,5968,5996,-6027,5997,6054,-6026,6055,5997,-6027,6025,6054,-5970,5998,4218,-4218,6054,4218,-5970,6056,5999,-6028,\r\n5973,5999,-6030,5972,6030,-6029,6057,6000,-6030,6058,6001,-6001,6030,6001,-6060,6031,5975,-6029,6002,6031,-6061,6002,6061,-6033,6039,5957,-6033,6062,6033,-6004,6004,6033,-6064,5978,6004,-6035,6005,6034,-6065,6065,6006,-4044,6066,6035,-6007,6035,6066,-6008,6007,6067,-6010,6037,5981,-6037,6037,6068,-6004,6036,6009,-6070,6070,6038,-6011,6010,6012,-6071,6012,6011,-6072,6011,6039,-6073,6013,6040,-6074,6042,6040,-6015,6074,6041,-5989,6042,5986,-6042,6015,6075,-6044,5988,6043,-6077,6077,6044,-5991,6018,6038,-6079,6018,6045,-6020,6077,5990,-6046,5991,6046,-6048,6046,5992,-6080,6015,6047,-6076,6048,6079,-5993,6080,6048,-6021,6049,6081,-6021,6044,6082,-6022,6051,6050,-5994,6081,6022,-6051,6081,6049,-6023,6021,6082,-6052,6024,6013,-6074,5996,6023,-6084,6052,6084,-6024,6052,5995,-6054,6024,6085,-6054,6083,6026,-5997,6054,5997,-6056,6055,6026,-6087,4218,6054,-6088,6056,6029,-6000,6056,6027,-6089,6089,6028,-6031,6057,6058,-6001,6057,6029,-6091,6001,6058,-6092,6059,6001,-6092,6089,6030,-6060,6089,6031,-6029,6031,6089,-6061,6061,6002,-6061,6092,6032,-6062,6093,6039,-6033,6062,6094,-6034,6062,6003,-6069,6063,6033,-6096,6096,6004,-6064,6096,6034,-6005,6034,6097,-6065,6066,6006,-6066,6065,4043,-4079,6007,6066,-6068,6067,6069,-6010,6037,6036,-6099,6068,6037,-6100,6036,6069,-6099,6070,6100,-6039,6012,6071,-6071,6071,6011,-6073,6039,6093,-6073,6042,6073,-6041,6074,6101,-6042,6076,6074,-5989,6042,6041,-6103,6043,6075,-6104,6043,6103,-6077,6044,6077,-6083,6038,6100,-6079,6018,6078,-6046,6104,6077,-6046,6105,6047,-6047,6046,6079,-6107,6105,6075,-6048,6107,6079,-6049,6107,6048,-6081,6080,6020,-6082,6051,6108,-6051,6109,6081,-6051,6051,6082,-6111,6111,6024,-6074,6084,6083,-6024,6052,6112,-6085,6052,6053,-6114,6085,6024,-6112,6085,6113,-6054,6026,6083,-6087,6055,6114,-6055,6055,6086,-6116,6087,6054,-6115,4177,4218,-6088,6029,6056,-6091,6090,6056,-6089,6116,6058,-6058,6117,6057,-6091,6118,6091,-6059,6091,6119,-6060,6089,6059,-6121,6061,6060,-6090,6093,6032,-6093,6092,6061,-6122,6122,6094,-6063,6094,6095,-6034,6123,6062,-6069,6063,6095,-6125,6096,\r\n6063,-6125,6096,6097,-6035,6125,6064,-6098,6066,6065,-6127,6065,4078,-6127,6066,6126,-6068,6069,6067,-6128,6128,6037,-6099,6128,6099,-6038,6123,6068,-6100,6129,6098,-6070,6130,6100,-6071,6070,6071,-6132,6071,6072,-6132,6072,6093,-6133,6102,6073,-6043,6101,6074,-6134,6101,6102,-6042,6133,6074,-6077,6105,6103,-6076,6134,6076,-6104,6077,6135,-6083,6078,6100,-6137,6104,6045,-6079,6135,6077,-6105,6046,6106,-6106,6137,6106,-6080,6079,6107,-6138,6138,6107,-6081,6080,6081,-6140,6051,6110,-6109,6140,6050,-6109,6139,6081,-6110,6140,6109,-6051,6110,6082,-6142,6102,6111,-6074,6084,6086,-6084,6052,6113,-6113,6112,6142,-6085,6085,6111,-6144,6085,6144,-6114,6055,6115,-6115,6115,6086,-6146,6087,6114,-4178,6117,6090,-6089,6116,6118,-6059,6146,6116,-6058,6117,6146,-6058,6118,6147,-6092,6119,6091,-6148,6119,6120,-6060,6061,6089,-6121,6148,6093,-6093,6061,6120,-6122,6148,6092,-6122,6122,6095,-6095,6122,6062,-6124,6149,6124,-6096,6096,6124,-6151,6097,6096,-6151,6150,6125,-6098,6151,6126,-4079,6127,6067,-6127,6127,6152,-6070,6129,6128,-6099,6153,6099,-6129,6123,6099,-6155,6129,6069,-6156,6130,6156,-6101,6131,6130,-6071,6131,6072,-6133,6132,6093,-6158,6101,6133,-6159,6159,6102,-6102,6133,6076,-6135,6105,6160,-6104,6160,6134,-6104,6135,6141,-6083,6100,6156,-6137,6161,6078,-6137,6104,6078,-6136,6106,6160,-6106,6162,6106,-6138,6107,6163,-6138,6138,6164,-6108,6080,6139,-6139,6165,6108,-6111,6165,6140,-6109,6166,6139,-6110,6140,6167,-6110,6141,6168,-6111,6169,6111,-6103,6084,6145,-6087,6113,6144,-6113,6112,6144,-6143,6170,6084,-6143,6111,6169,-6144,6143,6144,-6086,6115,6171,-6115,6115,6145,-6173,4177,6114,-6174,6116,6146,-6119,6117,6174,-6147,6175,6147,-6119,6176,6119,-6148,6120,6119,-6122,6157,6093,-6149,6177,6148,-6122,6178,6095,-6123,6154,6122,-6124,6149,6179,-6125,6149,6095,-6179,6150,6124,-6180,6125,6150,-6181,6151,6127,-6127,4078,4076,-6152,6151,6152,-6128,6155,6069,-6153,6181,6128,-6130,6153,6154,-6100,6153,6128,-6182,6129,6155,-6183,6130,6183,-6157,6131,6184,-6131,6131,6132,-6185,6132,6157,-6186,6133,6186,-6159,6158,6159,-6102,6169,6102,\r\n-6160,6133,6134,-6188,6160,6187,-6135,6141,6135,-6079,6161,6136,-6157,6078,6161,-6189,6106,6189,-6161,6162,6189,-6107,6137,6190,-6163,6163,6107,-6165,6163,6191,-6138,6138,6192,-6165,6138,6139,-6167,6193,6165,-6111,6165,6167,-6141,6167,6166,-6110,6141,6188,-6169,6193,6110,-6169,6145,6084,-6171,6143,6142,-6145,6194,6170,-6143,6169,6195,-6144,6171,6115,-6173,6196,6114,-6172,6197,6172,-6146,6173,6114,-6197,4177,6173,-6199,6146,6175,-6119,6146,6174,-6176,6147,6175,-6200,6119,6176,-6201,6176,6147,-6202,6121,6119,-6201,6148,6202,-6158,6148,6177,-6204,6121,6200,-6178,6178,6122,-6205,6154,6204,-6123,6205,6179,-6150,6178,6205,-6150,6150,6179,-6181,6206,6125,-6181,6151,4076,-4106,6152,6151,-4129,6155,6152,-6208,6181,6129,-6183,6208,6154,-6154,6153,6181,-6210,6210,6182,-6156,6184,6183,-6131,6211,6156,-6184,6184,6132,-6186,6212,6185,-6158,6133,6213,-6187,6186,6159,-6159,6159,6214,-6170,6133,6187,-6214,6187,6160,-6190,6141,6078,-6189,6215,6161,-6157,6161,6216,-6189,6162,6217,-6190,6190,6137,-6192,6190,6217,-6163,6163,6164,-6219,6163,6218,-6192,6138,6219,-6193,6220,6164,-6193,6138,6166,-6222,6165,6193,-6223,6223,6167,-6166,6224,6166,-6168,6168,6188,-6217,6225,6193,-6169,6145,6170,-6198,6195,6142,-6144,6194,6197,-6171,6195,6194,-6143,6169,6226,-6196,6171,6172,-6228,6171,6228,-6197,6229,6172,-6198,6173,6196,-6199,4177,6198,-4139,6230,6175,-6175,6175,6230,-6200,6147,6199,-6202,6176,6231,-6201,6231,6176,-6202,6148,6232,-6203,6202,6212,-6158,6177,6231,-6204,6203,6232,-6149,6231,6177,-6201,6178,6204,-6234,6208,6204,-6155,6234,6179,-6206,6178,6233,-6206,6235,6180,-6180,6206,6180,-6237,6151,4105,-4129,6152,4128,-6238,6237,6207,-6153,6210,6155,-6208,6181,6182,-6210,6153,6209,-6209,6238,6182,-6211,6184,6239,-6184,6211,6215,-6157,6183,6240,-6212,6184,6185,-6240,6185,6212,-6242,6186,6213,-6243,6186,6242,-6160,6214,6159,-6243,6226,6169,-6215,6213,6187,-6244,6187,6189,-6245,6245,6161,-6216,6161,6246,-6217,6189,6217,-6245,6191,6247,-6191,6190,6247,-6218,6248,6218,-6165,6249,6191,-6219,6221,6219,-6139,6250,6192,-6220,6164,6220,-6252,6220,6192,-6251,\r\n6221,6166,-6253,6193,6253,-6223,6165,6222,-6224,6224,6167,-6224,6252,6166,-6225,6246,6168,-6217,6193,6225,-6254,6246,6225,-6169,6254,6197,-6195,6194,6195,-6227,6227,6172,-6230,6171,6227,-6229,6255,6196,-6229,6256,6229,-6198,6198,6196,-6256,4138,6198,-6258,6258,6230,-6175,6199,6230,-6202,6201,6259,-6232,6202,6232,-6261,6202,6260,-6213,6261,6203,-6232,6203,6262,-6233,6233,6204,-6264,6208,6263,-6205,6235,6179,-6235,6234,6205,-6265,6205,6233,-6266,6236,6180,-6236,6266,6237,-4129,6207,6237,-6267,6267,6210,-6208,6182,6238,-6210,6208,6209,-6269,6210,6269,-6239,6183,6239,-6241,6211,6270,-6216,6211,6240,-6271,6185,6271,-6240,6260,6241,-6213,6185,6241,-6272,6242,6213,-6273,6214,6242,-6274,6226,6214,-6255,6243,6187,-6245,6272,6213,-6244,6245,6246,-6162,6245,6215,-6271,6274,6244,-6218,6249,6247,-6192,6275,6217,-6248,6276,6218,-6249,6164,6251,-6249,6276,6249,-6219,6219,6221,-6278,6250,6219,-6278,6251,6220,-6279,6250,6279,-6221,6280,6221,-6253,6222,6253,-6282,6281,6223,-6223,6224,6223,-6283,6280,6252,-6225,6225,6283,-6254,6283,6225,-6247,6254,6256,-6198,6194,6226,-6255,6227,6229,-6285,6285,6228,-6228,6285,6255,-6229,6284,6229,-6257,6286,6198,-6256,6287,6257,-6199,4138,6257,-4115,6230,6258,-6289,6259,6201,-6231,6261,6231,-6260,6232,6289,-6261,6203,6261,-6291,6203,6290,-6263,6262,6291,-6233,6292,6233,-6264,6208,6293,-6264,6235,6234,-6295,6264,6205,-6266,6264,6295,-6235,6292,6265,-6234,6236,6235,-6295,4151,6266,-4129,6207,6266,-6297,6267,6297,-6211,6267,6207,-6297,6209,6238,-6269,6208,6268,-6294,6210,6297,-6270,6269,6298,-6239,6299,6240,-6240,6240,6300,-6271,6299,6239,-6272,6260,6301,-6242,6241,6301,-6272,6242,6272,-6274,6214,6273,-6303,6214,6302,-6255,6303,6243,-6245,6272,6243,-6304,6246,6245,-6305,6305,6245,-6271,6274,6306,-6245,6217,6275,-6275,6247,6249,-6308,6247,6307,-6276,6276,6248,-6309,6248,6251,-6309,6276,6308,-6250,6309,6277,-6222,6250,6277,-6280,6279,6278,-6221,6251,6278,-6309,6280,6310,-6222,6311,6281,-6254,6281,6282,-6224,6224,6282,-6281,6253,6283,-6313,6246,6313,-6284,6256,6254,-6315,6284,6315,-6228,6227,6315,-6286,6285,\r\n6316,-6256,6284,6256,-6318,6198,6286,-6288,6286,6255,-6317,6257,6287,-4063,4114,6257,-4063,6258,6318,-6289,6288,6319,-6231,6259,6230,-6320,6261,6259,-6321,6289,6232,-6292,6260,6289,-6322,6290,6261,-6323,6291,6262,-6291,6323,6292,-6264,6324,6263,-6294,6234,6295,-6295,6264,6265,-6326,6326,6295,-6265,6325,6265,-6293,6327,6236,-6295,4151,6296,-6267,6297,6267,-6329,6267,6296,-6330,6268,6238,-6299,6324,6293,-6269,6297,6330,-6270,6331,6298,-6270,6240,6299,-6301,6270,6300,-6306,6332,6299,-6272,6260,6321,-6302,6301,6333,-6272,6272,6334,-6274,6302,6273,-6335,6314,6254,-6303,6306,6303,-6245,6303,6335,-6273,6304,6245,-6337,6313,6246,-6305,6336,6245,-6306,6274,6337,-6307,6274,6275,-6339,6307,6249,-6340,6307,6338,-6276,6249,6308,-6340,6277,6309,-6280,6309,6221,-6311,6279,6340,-6279,6278,6341,-6309,6342,6310,-6281,6343,6281,-6312,6311,6253,-6345,6281,6343,-6283,6282,6343,-6281,6345,6312,-6284,6253,6312,-6345,6283,6313,-6347,6256,6314,-6318,6284,6347,-6316,6315,6348,-6286,6348,6316,-6286,6349,6284,-6318,6287,6286,-6317,6287,6350,-4063,6351,6288,-6319,6288,6351,-6320,6320,6259,-6320,6320,6322,-6262,6289,6291,-6353,6353,6321,-6290,6354,6290,-6323,6290,6352,-6292,6355,6292,-6324,6323,6263,-6325,6294,6295,-6357,6326,6264,-6326,6357,6295,-6327,6355,6325,-6293,6358,6327,-6295,6296,4151,-6360,6328,6267,-6330,6328,6360,-6298,6329,6296,-6362,6268,6298,-6363,6268,6362,-6325,6330,6297,-6361,6331,6269,-6331,6362,6298,-6332,6299,6363,-6301,6364,6305,-6301,6299,6332,-6364,6333,6332,-6272,6321,6365,-6302,6333,6301,-6366,6366,6334,-6273,6334,6367,-6303,6302,6367,-6315,6303,6306,-6369,6335,6303,-6369,6272,6335,-6367,6304,6336,-6314,6336,6305,-6365,6274,6338,-6338,6337,6368,-6307,6339,6369,-6308,6370,6338,-6308,6339,6308,-6342,6309,6340,-6280,6309,6310,-6372,6372,6278,-6341,6372,6341,-6279,6342,6373,-6311,6342,6280,-6344,6311,6374,-6344,6375,6311,-6345,6345,6376,-6313,6346,6345,-6284,6376,6344,-6313,6336,6346,-6314,6317,6314,-6378,6378,6347,-6285,6315,6347,-6380,6315,6379,-6349,6316,6348,-6381,6349,6381,-6285,6382,6349,-6318,6287,6316,-6381,6287,6383,\r\n-6351,6384,4062,-6351,6351,6318,-6386,6351,6385,-6320,6320,6319,-6387,6320,6386,-6323,6353,6289,-6353,6321,6353,-6366,6290,6354,-6353,6354,6322,-6388,6355,6323,-6389,6324,6389,-6324,6390,6356,-6296,6358,6294,-6357,6325,6391,-6327,6357,6390,-6296,6392,6357,-6327,6391,6325,-6356,6359,4151,-4154,6296,6359,-6362,6328,6329,-6394,6394,6360,-6329,6395,6329,-6362,6362,6389,-6325,6396,6330,-6361,6396,6331,-6331,6331,6397,-6363,6398,6300,-6364,6399,6364,-6301,6332,6400,-6364,6333,6401,-6333,6333,6365,-6403,6334,6366,-6368,6367,6377,-6315,6368,6403,-6336,6335,6403,-6367,6404,6336,-6365,6405,6337,-6339,6337,6405,-6369,6339,6341,-6370,6369,6370,-6308,6370,6406,-6339,6340,6309,-6408,6373,6371,-6311,6309,6371,-6409,6340,6409,-6373,6372,6410,-6342,6342,6411,-6374,6342,6343,-6413,6311,6413,-6375,6374,6412,-6344,6311,6375,-6414,6375,6344,-6377,6345,6414,-6377,6346,6415,-6346,6336,6416,-6347,6317,6377,-6418,6418,6347,-6379,6381,6378,-6285,6418,6379,-6348,6379,6380,-6349,6349,6419,-6382,6419,6349,-6383,6417,6382,-6318,6380,6383,-6288,6420,6350,-6384,4062,6384,-3989,6420,6384,-6351,6318,6421,-6386,6385,6386,-6320,6322,6386,-6388,6353,6352,-6423,6353,6423,-6366,6422,6352,-6355,6422,6354,-6388,6323,6397,-6389,6355,6388,-6425,6389,6397,-6324,6356,6390,-6426,6426,6358,-6357,6392,6326,-6392,6427,6390,-6358,6392,6428,-6358,6429,6391,-6356,4196,6359,-4154,6430,6361,-6360,6329,6395,-6394,6393,6394,-6329,6394,6396,-6361,6395,6361,-6431,6362,6397,-6390,6331,6396,-6432,6397,6331,-6433,6398,6399,-6301,6398,6363,-6434,6399,6434,-6365,6401,6400,-6333,6400,6435,-6364,6401,6333,-6403,6365,6436,-6403,6366,6437,-6368,6367,6438,-6378,6368,6439,-6404,6403,6437,-6367,6404,6416,-6337,6404,6364,-6435,6440,6405,-6339,6405,6439,-6369,6369,6341,-6411,6369,6441,-6371,6370,6442,-6407,6338,6406,-6444,6408,6407,-6310,6340,6407,-6410,6444,6371,-6374,6444,6408,-6372,6372,6409,-6446,6372,6445,-6411,6342,6412,-6412,6411,6444,-6374,6374,6413,-6447,6412,6374,-6412,6413,6375,-6448,6448,6375,-6377,6345,6415,-6415,6376,6414,-6449,6416,6415,-6347,6449,6417,-6378,6418,6378,-6451,\r\n6381,6450,-6379,6451,6379,-6419,6380,6379,-6452,6381,6419,-6453,6453,6419,-6383,6417,6453,-6383,6383,6380,-6452,6420,6383,-6452,3988,6384,-6455,6384,6420,-6455,6421,6455,-6386,6385,6455,-6387,6455,6387,-6387,6422,6423,-6354,6365,6423,-6437,6422,6387,-6457,6397,6457,-6389,6458,6424,-6389,6429,6355,-6425,6427,6425,-6391,6356,6425,-6427,6459,6358,-6427,6392,6391,-6461,6427,6357,-6429,6461,6428,-6393,6429,6460,-6392,6359,4196,-6431,6393,6395,-6463,6394,6393,-6464,6394,6463,-6397,6430,6464,-6396,6431,6396,-6463,6432,6331,-6432,6397,6432,-6458,6398,6433,-6400,6433,6363,-6436,6465,6434,-6400,6401,6466,-6401,6400,6467,-6436,6401,6402,-6467,6402,6436,-6469,6438,6367,-6438,6449,6377,-6439,6439,6437,-6404,6415,6416,-6405,6469,6404,-6435,6440,6439,-6406,6440,6338,-6444,6369,6410,-6442,6442,6370,-6442,6406,6442,-6471,6443,6406,-6472,6472,6407,-6409,6473,6409,-6408,6444,6472,-6409,6409,6474,-6446,6475,6410,-6446,6444,6411,-6447,6476,6446,-6414,6374,6446,-6412,6448,6447,-6376,6413,6447,-6478,6414,6415,-6479,6448,6414,-6480,6453,6417,-6450,6480,6418,-6451,6381,6481,-6451,6451,6418,-6481,6482,6452,-6420,6381,6452,-6482,6419,6453,-6484,6420,6451,-6485,6454,3989,-3989,6484,6454,-6421,6455,6421,-6486,6485,6387,-6456,6422,6456,-6424,6486,6436,-6424,6387,6487,-6457,6457,6488,-6389,6458,6429,-6425,6458,6388,-6489,6427,6489,-6426,6490,6426,-6426,6491,6459,-6427,6461,6392,-6461,6427,6428,-6493,6493,6428,-6462,6494,6460,-6430,4196,6495,-6431,6395,6496,-6463,6462,6463,-6394,6396,6463,-6463,6464,6430,-6496,6464,6496,-6396,6431,6462,-6498,6432,6431,-6499,6432,6499,-6458,6433,6465,-6400,6500,6433,-6436,6465,6469,-6435,6466,6467,-6401,6467,6501,-6436,6402,6502,-6467,6436,6503,-6469,6468,6502,-6403,6438,6437,-6505,6504,6449,-6439,6439,6505,-6438,6415,6404,-6470,6440,6506,-6440,6443,6507,-6441,6475,6441,-6411,6442,6441,-6509,6442,6509,-6471,6471,6406,-6471,6471,6510,-6444,6472,6473,-6408,6473,6474,-6410,6444,6511,-6473,6512,6445,-6475,6445,6512,-6476,6513,6444,-6447,6513,6446,-6477,6476,6413,-6478,6447,6448,-6480,6514,6477,-6448,6469,6478,-6416,6515,\r\n6414,-6479,6479,6414,-6517,6453,6449,-6518,6480,6450,-6482,6451,6480,-6485,6482,6518,-6453,6483,6482,-6420,6452,6519,-6482,6483,6453,-6518,6520,3989,-6455,6520,6454,-6485,6485,6487,-6388,6456,6486,-6424,6436,6486,-6504,6487,6521,-6457,6457,6522,-6489,6458,6494,-6430,6488,6523,-6459,6427,6524,-6490,6490,6425,-6490,6490,6525,-6427,6491,6526,-6460,6491,6426,-6526,6461,6460,-6528,6493,6492,-6429,6427,6492,-6525,6528,6493,-6462,6527,6460,-6495,6495,4196,-4216,6497,6462,-6497,6495,6529,-6465,6496,6464,-6531,6431,6497,-6499,6432,6498,-6532,6531,6499,-6433,6457,6499,-6523,6433,6532,-6466,6433,6500,-6533,6501,6500,-6436,6465,6533,-6470,6467,6466,-6535,6467,6534,-6502,6502,6535,-6467,6503,6536,-6469,6536,6502,-6469,6537,6504,-6438,6449,6504,-6539,6505,6439,-6507,6537,6437,-6506,6440,6507,-6507,6507,6443,-6511,6441,6475,-6509,6442,6508,-6510,6470,6509,-6540,6471,6470,-6541,6540,6510,-6472,6541,6473,-6473,6474,6473,-6543,6513,6511,-6445,6543,6472,-6512,6544,6512,-6475,6475,6512,-6546,6513,6476,-6512,6476,6477,-6547,6447,6479,-6515,6547,6477,-6515,6469,6548,-6479,6515,6516,-6415,6515,6478,-6550,6479,6516,-6551,6538,6517,-6450,6551,6480,-6482,6484,6480,-6552,6482,6552,-6519,6452,6518,-6554,6554,6482,-6484,6452,6553,-6520,6555,6481,-6520,6483,6517,-6555,6520,3951,-3990,6520,6484,-6557,6557,6487,-6486,6521,6486,-6457,6486,6558,-6504,6487,6559,-6522,6522,6523,-6489,6523,6494,-6459,6560,6489,-6525,6489,6561,-6491,6490,6562,-6526,6491,6563,-6527,6525,6564,-6492,6565,6461,-6528,6492,6493,-6567,6566,6524,-6493,6493,6528,-6568,6528,6461,-6566,6523,6527,-6495,6495,4215,-6569,6496,6569,-6498,6568,6529,-6496,6530,6464,-6530,6569,6496,-6531,6570,6498,-6498,6570,6531,-6499,6531,6571,-6500,6499,6572,-6523,6533,6465,-6533,6532,6500,-6574,6501,6574,-6501,6548,6469,-6534,6466,6535,-6535,6535,6501,-6535,6535,6502,-6537,6536,6503,-6576,6538,6504,-6538,6505,6506,-6577,6538,6537,-6506,6576,6506,-6508,6510,6577,-6508,6475,6545,-6509,6509,6508,-6579,6578,6539,-6510,6470,6539,-6541,6540,6579,-6511,6541,6542,-6474,6472,6580,-6542,6474,6542,-6545,6543,6580,\r\n-6473,6581,6543,-6512,6544,6582,-6513,6582,6545,-6513,6511,6476,-6547,6583,6546,-6478,6479,6584,-6515,6547,6583,-6478,6584,6547,-6515,6548,6585,-6479,6515,6586,-6517,6478,6585,-6550,6549,6587,-6516,6516,6586,-6551,6479,6550,-6585,6517,6538,-6589,6551,6481,-6556,6484,6551,-6557,6552,6482,-6590,6553,6518,-6553,6554,6589,-6483,6590,6519,-6554,6555,6519,-6592,6592,6554,-6518,3952,3951,-6521,6520,6556,-6594,6559,6487,-6558,6521,6558,-6487,6558,6594,-6504,6595,6521,-6560,6522,6596,-6524,6560,6561,-6490,6566,6560,-6525,6562,6490,-6562,6525,6562,-6598,6491,6564,-6564,6525,6597,-6565,6565,6527,-6599,6493,6599,-6567,6600,6567,-6529,6599,6493,-6568,6528,6565,-6602,6527,6523,-6599,6568,4215,-4234,6570,6497,-6570,6568,6602,-6530,6603,6530,-6530,6603,6569,-6531,6531,6570,-6572,6604,6499,-6572,6572,6499,-6605,6572,6596,-6523,6532,6605,-6534,6500,6606,-6574,6573,6607,-6533,6608,6574,-6502,6500,6574,-6607,6533,6609,-6549,6535,6608,-6502,6610,6535,-6537,6594,6575,-6504,6536,6575,-6611,6611,6505,-6577,6538,6505,-6612,6577,6576,-6508,6510,6612,-6578,6545,6578,-6509,6539,6578,-6614,6614,6540,-6540,6540,6615,-6580,6579,6616,-6511,6541,6617,-6543,6580,6617,-6542,6618,6544,-6543,6543,6619,-6581,6619,6543,-6582,6581,6511,-6547,6582,6544,-6621,6582,6621,-6546,6583,6581,-6547,6583,6547,-6623,6547,6584,-6624,6585,6548,-6625,6586,6515,-6588,6549,6585,-6626,6549,6626,-6588,6550,6586,-6628,6550,6628,-6585,6611,6588,-6539,6517,6588,-6593,6555,6556,-6552,6552,6589,-6630,6630,6553,-6553,6589,6554,-6593,6590,6591,-6520,6590,6553,-6631,6555,6591,-6557,6593,3952,-6521,6556,6591,-6594,6595,6558,-6522,6594,6558,-6632,6595,6559,-6633,6633,6523,-6597,6560,6634,-6562,6635,6560,-6567,6562,6561,-6637,6597,6562,-6638,6563,6564,-6639,6639,6564,-6598,6565,6598,-6641,6599,6635,-6567,6641,6567,-6601,6528,6642,-6601,6599,6567,-6644,6640,6601,-6566,6528,6601,-6643,6523,6633,-6599,6568,4233,-6645,6645,6570,-6570,6644,6602,-6569,6603,6529,-6603,6569,6603,-6647,6571,6570,-6605,6572,6604,-6648,6648,6596,-6573,6607,6605,-6533,6609,6533,-6606,6606,6649,-6574,6650,6607,-6574,\r\n6651,6574,-6609,6651,6606,-6575,6609,6624,-6549,6535,6652,-6609,6610,6652,-6536,6594,6653,-6576,6654,6610,-6576,6611,6576,-6656,6655,6576,-6578,6612,6510,-6617,6656,6577,-6613,6545,6621,-6579,6578,6621,-6614,6613,6657,-6540,6540,6614,-6659,6659,6614,-6540,6540,6658,-6616,6615,6616,-6580,6617,6618,-6543,6617,6580,-6661,6618,6620,-6545,6660,6580,-6620,6619,6581,-6662,6620,6662,-6583,6582,6663,-6622,6583,6622,-6582,6622,6547,-6624,6628,6623,-6585,6625,6585,-6625,6586,6587,-6665,6549,6625,-6627,6665,6587,-6627,6586,6664,-6628,6627,6628,-6551,6611,6592,-6589,6666,6629,-6590,6667,6552,-6630,6667,6630,-6553,6589,6592,-6669,6590,6669,-6592,6590,6630,-6671,3952,6593,-3872,6591,6671,-6594,6631,6558,-6596,6594,6631,-6654,6632,6631,-6596,6633,6596,-6673,6634,6560,-6674,6636,6561,-6635,6635,6673,-6561,6636,6674,-6563,6674,6637,-6563,6639,6597,-6638,6638,6564,-6676,6639,6675,-6565,6640,6598,-6677,6635,6599,-6678,6567,6641,-6644,6641,6600,-6679,6600,6642,-6680,6599,6643,-6678,6601,6640,-6681,6681,6642,-6602,6676,6598,-6634,6644,4233,-6683,6570,6645,-6684,6645,6569,-6647,6602,6644,-6683,6602,6684,-6604,6603,4318,-6647,6685,6604,-6571,6604,6685,-6648,6648,6572,-6648,6648,6672,-6597,6686,6605,-6608,6605,6624,-6610,6649,6606,-6688,6650,6573,-6650,6650,6686,-6608,6651,6608,-6653,6651,6687,-6607,6652,6610,-6689,6653,6654,-6576,6654,6688,-6611,6592,6611,-6656,6655,6577,-6657,6616,6689,-6613,6656,6612,-6690,6621,6690,-6614,6691,6657,-6614,6539,6657,-6660,6658,6614,-6693,6659,6692,-6615,6615,6658,-6694,6615,6694,-6617,6695,6618,-6618,6660,6695,-6618,6696,6620,-6619,6660,6619,-6662,6697,6661,-6582,6696,6662,-6621,6582,6662,-6664,6663,6690,-6622,6697,6581,-6623,6698,6622,-6624,6628,6698,-6624,6625,6624,-6606,6664,6587,-6666,6699,6626,-6626,6700,6665,-6627,6627,6664,-6702,6627,6701,-6629,6702,6629,-6667,6589,6668,-6667,6667,6629,-6703,6630,6667,-6704,6668,6592,-6705,6669,6590,-6671,6669,6671,-6592,6630,6703,-6671,6593,6705,-3872,6671,6705,-6594,6706,6653,-6632,6707,6631,-6633,6633,6672,-6677,6708,6634,-6674,6636,6634,-6710,6635,6710,-6674,6636,\r\n6711,-6675,6712,6637,-6675,6639,6637,-6714,6714,6638,-6676,6715,6675,-6640,6676,6680,-6641,6710,6635,-6678,6643,6641,-6717,6717,6678,-6601,6641,6678,-6719,6681,6679,-6643,6600,6679,-6718,6719,6677,-6644,6601,6680,-6721,6601,6720,-6682,4253,6682,-4234,6645,6721,-6684,6685,6570,-6684,6645,6646,-6722,6602,6682,-4271,6684,6602,-4271,6684,4318,-6604,6646,4318,-4329,6722,6647,-6686,6648,6647,-6724,6724,6672,-6649,6686,6725,-6606,6649,6687,-6727,6727,6650,-6650,6686,6650,-6728,6728,6651,-6653,6728,6687,-6652,6652,6688,-6730,6653,6730,-6655,6688,6654,-6732,6592,6655,-6705,6656,6704,-6656,6732,6689,-6617,6656,6689,-6734,6690,6691,-6614,6657,6691,-6735,6659,6657,-6693,6658,6692,-6694,6615,6693,-6736,6615,6735,-6695,6732,6616,-6695,6696,6618,-6696,6660,6736,-6696,6660,6661,-6738,6738,6661,-6698,6696,6739,-6663,6739,6663,-6663,6739,6690,-6664,6697,6622,-6699,6628,6701,-6699,6725,6625,-6606,6740,6664,-6666,6699,6700,-6627,6725,6699,-6626,6700,6740,-6666,6701,6664,-6742,6742,6702,-6667,6668,6743,-6667,6667,6702,-6745,6744,6703,-6668,6704,6745,-6669,6669,6670,-6747,6669,6747,-6672,6746,6670,-6704,6705,3909,-3872,6671,6747,-6706,6706,6730,-6654,6706,6631,-6708,6676,6672,-6749,6708,6709,-6635,6708,6673,-6711,6636,6709,-6712,6749,6674,-6712,6712,6713,-6638,6712,6674,-6751,6751,6639,-6714,6638,6714,-6753,6675,6753,-6715,6753,6675,-6716,6715,6639,-6752,6676,6748,-6681,6677,6754,-6711,6641,6755,-6717,6716,6719,-6644,6678,6717,-6757,6678,6756,-6719,6755,6641,-6719,6681,6757,-6680,6758,6717,-6680,6759,6677,-6720,6680,6760,-6721,6681,6720,-6762,6682,4253,-4271,6762,6683,-6722,6685,6683,-6763,6646,4356,-6722,4318,6684,-4271,6646,4328,-4357,6763,6647,-6723,6764,6722,-6686,6763,6723,-6648,6765,6648,-6724,6748,6672,-6725,6724,6648,-6766,6686,6766,-6726,6726,6687,-6768,6726,6768,-6650,6727,6649,-6769,6686,6727,-6767,6728,6652,-6730,6767,6687,-6729,6688,6731,-6730,6730,6769,-6655,6770,6731,-6655,6656,6733,-6705,6733,6689,-6733,6771,6691,-6691,6734,6691,-6773,6734,6773,-6658,6773,6692,-6658,6693,6692,-6774,6735,6693,-6775,6694,6735,-6776,6776,6732,\r\n-6695,6695,6777,-6697,6736,6660,-6779,6695,6736,-6778,6738,6737,-6662,6660,6737,-6780,6780,6738,-6698,6739,6696,-6778,6739,6781,-6691,6782,6697,-6699,6698,6701,-6784,6740,6741,-6665,6784,6700,-6700,6725,6785,-6700,6786,6740,-6701,6701,6741,-6788,6744,6702,-6743,6743,6742,-6667,6668,6745,-6744,6744,6788,-6704,6704,6733,-6746,6747,6669,-6747,6788,6746,-6704,3909,6705,-6748,6706,6789,-6731,6708,6790,-6710,6710,6754,-6709,6791,6711,-6710,6749,6792,-6675,6791,6749,-6712,6713,6712,-6794,6792,6750,-6675,6712,6750,-6794,6713,6793,-6752,6714,6794,-6753,6795,6714,-6754,6796,6753,-6716,6796,6715,-6752,6680,6748,-6761,6677,6759,-6755,6797,6716,-6756,6716,6797,-6720,6717,6758,-6757,6756,6758,-6719,6681,6761,-6758,6679,6757,-6759,6759,6719,-6799,6720,6760,-6800,6761,6720,-6800,6800,6762,-6722,6801,6685,-6763,6721,4356,-4380,6802,6763,-6723,6802,6722,-6765,6801,6764,-6686,6763,6803,-6724,6804,6765,-6724,6724,6805,-6749,6724,6765,-6806,6785,6725,-6767,6767,6806,-6727,6768,6726,-6808,6768,6808,-6728,6766,6727,-6809,6809,6728,-6730,6767,6728,-6810,6729,6731,-6811,6769,6730,-6790,6770,6654,-6770,6811,6731,-6771,6733,6732,-6813,6771,6772,-6692,6771,6690,-6814,6734,6772,-6815,6734,6814,-6774,6773,6774,-6694,6735,6774,-6816,6735,6815,-6776,6776,6694,-6776,6812,6732,-6777,6778,6660,-6780,6778,6816,-6737,6777,6736,-6818,6738,6818,-6738,6818,6779,-6738,6780,6818,-6739,6780,6697,-6783,6739,6777,-6782,6813,6690,-6782,6782,6698,-6820,6783,6701,-6788,6698,6783,-6820,6741,6740,-6788,6786,6700,-6785,6784,6699,-6821,6785,6820,-6700,6821,6740,-6787,6744,6742,-6823,6743,6823,-6743,6745,6824,-6744,6825,6788,-6745,6733,6812,-6746,6746,6826,-6748,6746,6788,-6827,6747,3953,-3910,6789,6706,-6828,6708,6828,-6791,6829,6709,-6791,6708,6754,-6829,6829,6791,-6710,6749,6830,-6793,6749,6791,-6832,6750,6792,-6833,6750,6833,-6794,6834,6751,-6794,6714,6835,-6795,6794,6836,-6753,6835,6714,-6796,6796,6795,-6754,6751,6834,-6797,6760,6748,-6838,6838,6754,-6760,6797,6798,-6720,6758,6839,-6719,6757,6761,-6841,6839,6758,-6758,6759,6798,-6842,6799,6760,-6843,6799,6840,-6762,\r\n6800,6801,-6763,6721,4379,-6801,6802,6843,-6764,6764,6844,-6803,6845,6764,-6802,6843,6803,-6764,6804,6723,-6804,6805,6765,-6805,6837,6748,-6806,6808,6785,-6767,6767,6846,-6807,6806,6807,-6727,6807,6847,-6769,6768,6847,-6809,6729,6810,-6810,6767,6809,-6847,6810,6731,-6849,6769,6789,-6850,6770,6769,-6850,6811,6848,-6732,6770,6850,-6812,6772,6771,-6852,6771,6813,-6853,6814,6772,-6854,6814,6854,-6774,6854,6774,-6774,6774,6855,-6816,6775,6815,-6857,6857,6776,-6776,6812,6776,-6825,6858,6778,-6780,6859,6816,-6779,6736,6816,-6818,6817,6781,-6778,6779,6818,-6859,6780,6860,-6819,6780,6782,-6861,6852,6813,-6782,6861,6782,-6820,6787,6862,-6784,6783,6861,-6820,6821,6787,-6741,6784,6863,-6787,6784,6820,-6864,6820,6785,-6865,6786,6863,-6822,6742,6823,-6823,6825,6744,-6823,6743,6824,-6824,6812,6824,-6746,6865,6788,-6826,3953,6747,-6827,6788,6865,-6827,6789,6827,-6867,6828,6867,-6791,6868,6829,-6791,6867,6828,-6755,6829,6869,-6792,6749,6831,-6831,6870,6792,-6831,6791,6871,-6832,6870,6832,-6793,6872,6750,-6833,6750,6873,-6834,6874,6793,-6834,6793,6874,-6835,6875,6794,-6836,6794,6875,-6837,6796,6835,-6796,6760,6837,-6843,6867,6754,-6839,6759,6876,-6839,6797,6877,-6799,6839,6878,-6719,6879,6757,-6841,6757,6879,-6840,6877,6841,-6799,6759,6841,-6877,6799,6842,-6881,6881,6840,-6800,6800,6882,-6802,4379,4415,-6801,6883,6843,-6803,6764,6845,-6845,6884,6802,-6845,6882,6845,-6802,6803,6843,-6886,6804,6803,-6887,6805,6804,-6838,6785,6808,-6888,6888,6806,-6847,6806,6889,-6808,6889,6847,-6808,6847,6887,-6809,6810,6846,-6810,6810,6848,-6889,6866,6849,-6790,6770,6849,-6851,6848,6811,-6891,6890,6811,-6851,6771,6852,-6852,6772,6851,-6892,6853,6772,-6892,6853,6892,-6815,6854,6814,-6894,6854,6894,-6775,6894,6855,-6775,6895,6815,-6856,6815,6896,-6857,6775,6856,-6858,6857,6824,-6777,6859,6778,-6859,6859,6897,-6817,6816,6897,-6818,6817,6852,-6782,6818,6898,-6859,6860,6899,-6819,6782,6861,-6861,6787,6821,-6863,6783,6862,-6901,6900,6861,-6784,6863,6820,-6902,6785,6887,-6865,6902,6820,-6865,6821,6863,-6904,6904,6822,-6824,6825,6822,-6906,6823,6824,-6907,6907,\r\n6865,-6826,6826,6908,-3954,6909,6826,-6866,6866,6827,-6911,6867,6868,-6791,6868,6911,-6830,6829,6911,-6870,6871,6791,-6870,6831,6912,-6831,6870,6830,-6914,6871,6914,-6832,6915,6832,-6871,6872,6873,-6751,6915,6872,-6833,6874,6833,-6874,6835,6796,-6876,6842,6837,-6881,6867,6838,-6917,6838,6876,-6918,6878,6839,-6919,6878,6919,-6719,6879,6840,-6921,6879,6918,-6840,6921,6876,-6842,6881,6799,-6881,6881,6920,-6841,6800,4415,-6883,6843,6883,-6886,6802,6884,-6884,4543,6844,-6846,6922,6884,-6845,6845,6882,-4455,6803,6885,-6924,6803,6923,-6887,6924,6804,-6887,6924,6837,-6805,6888,6925,-6807,6846,6810,-6889,6925,6889,-6807,6889,6926,-6848,6847,6926,-6888,6848,6927,-6889,6866,6928,-6850,6850,6849,-6929,6848,6890,-6930,6850,6930,-6891,6851,6852,-6818,6931,6891,-6852,6853,6891,-6933,6853,6932,-6893,6814,6892,-6894,6933,6854,-6894,6894,6854,-6934,6855,6894,-6935,6815,6895,-6897,6935,6895,-6856,6936,6856,-6897,6856,6937,-6858,6938,6824,-6858,6859,6858,-6940,6859,6939,-6898,6940,6817,-6898,6818,6899,-6899,6898,6939,-6859,6860,6941,-6900,6942,6860,-6862,6862,6821,-6904,6900,6862,-6944,6900,6944,-6862,6820,6945,-6902,6903,6863,-6902,6946,6864,-6888,6820,6902,-6946,6902,6864,-6948,6905,6822,-6905,6906,6904,-6824,6907,6825,-6906,6938,6906,-6825,6948,6865,-6908,6909,6908,-6827,3953,6908,-4023,6948,6909,-6866,6910,6949,-6867,6867,6916,-6869,6916,6911,-6869,6950,6869,-6912,6871,6869,-6951,6831,6951,-6913,6830,6912,-6914,6952,6870,-6914,6871,6953,-6915,6831,6914,-6952,6915,6870,-6955,6955,6873,-6873,6872,6915,-6957,6874,6873,-6958,6837,6924,-6881,6958,6916,-6839,6959,6917,-6877,6958,6838,-6918,6919,6878,-6919,6960,6879,-6921,6879,6961,-6919,6921,6959,-6877,6881,6880,-6963,6963,6920,-6882,4415,4454,-6883,6883,6964,-6886,4543,6965,-6845,4494,4543,-6846,6922,6844,-6967,4494,6845,-4455,6923,6885,-6968,6968,6886,-6924,6968,6924,-6887,6927,6925,-6889,6969,6889,-6926,6970,6926,-6890,6946,6887,-6927,6927,6848,-6972,6866,6949,-6929,6930,6850,-6929,6972,6929,-6891,6929,6971,-6849,6890,6930,-6974,6940,6851,-6818,6974,6891,-6932,6940,6931,-6852,6974,6932,\r\n-6892,6892,6932,-6976,6892,6976,-6894,6976,6933,-6894,6933,6977,-6895,6894,6977,-6935,6935,6855,-6935,6895,6978,-6897,6978,6895,-6936,6856,6936,-6938,6978,6936,-6897,6937,6938,-6858,6939,6979,-6898,6897,6980,-6941,6898,6899,-6982,6898,6982,-6940,6942,6941,-6861,6899,6941,-6982,6942,6861,-6984,6984,6862,-6904,6862,6984,-6944,6900,6943,-6986,6900,6985,-6945,6944,6983,-6862,6901,6945,-6987,6901,6986,-6904,6864,6946,-6948,6945,6902,-6988,6987,6902,-6948,6905,6904,-6989,6906,6989,-6905,6990,6907,-6906,6906,6938,-6938,6948,6907,-6992,4022,6908,-6910,6909,6948,-6993,6910,6993,-6950,6916,6958,-6912,6950,6911,-6995,6950,6953,-6872,6995,6912,-6952,6995,6913,-6913,6870,6952,-6955,6913,6996,-6953,6953,6997,-6915,6998,6951,-6915,6915,6954,-7000,6955,6957,-6874,6956,6955,-6873,6999,6956,-6916,6962,6880,-6925,6959,7000,-6918,6917,7001,-6959,6919,6918,-7003,6960,6961,-6880,6963,6960,-6921,7003,6918,-6962,6963,6881,-6963,6964,6967,-6886,6965,4543,-4560,6965,6966,-6845,6923,6967,-7005,6923,7004,-6969,6962,6924,-6969,6927,7005,-6926,6970,6889,-6970,6969,6925,-7006,7006,6926,-6971,6926,7006,-6947,6927,6971,-7008,6949,6930,-6929,7008,6929,-6973,6890,6973,-6973,7008,6971,-6930,6930,7009,-6974,6931,7010,-6975,6931,6940,-6981,6974,6975,-6933,6892,6975,-7012,6976,6892,-7012,6976,6977,-6934,6977,7012,-6935,7012,6935,-6935,6978,6935,-7014,6937,6936,-7015,6978,7015,-6937,7016,6979,-6940,6897,6979,-6981,6982,6898,-6982,6982,7017,-6940,6942,7018,-6942,6981,6941,-7019,6942,6983,-7020,7020,6984,-6904,6943,6984,-7022,7021,6985,-6944,6944,6985,-7023,6944,7022,-6984,7023,6986,-6946,6903,6986,-7025,6946,6987,-6948,7025,6945,-6988,6989,6988,-6905,6905,6988,-6991,6989,6906,-7027,7027,6907,-6991,7026,6906,-6938,6991,6907,-7028,6991,6992,-6949,4022,6909,-6993,6949,6993,-7029,7001,6911,-6959,6994,6911,-7002,6994,7029,-6951,6950,7029,-6954,7030,6995,-6952,6996,6913,-6996,6953,7029,-6998,6914,6997,-7032,6998,7032,-6952,6914,7031,-6999,7000,7001,-6918,7003,7002,-6919,6919,7002,-7034,7034,6961,-6961,6963,7035,-6961,7036,7003,-6962,6963,6962,-7038,6966,6965,-4560,\r\n6968,7004,-7039,6968,7038,-6963,7007,7005,-6928,6969,7039,-6971,7005,7039,-6970,7040,7006,-6971,7006,7040,-6947,7007,6971,-7042,6930,6949,-7010,7008,6972,-7043,6973,7043,-6973,7041,6971,-7009,7009,7044,-6974,6931,6980,-7011,7045,6974,-7011,6975,6974,-7047,6975,7047,-7012,7011,7048,-6977,6976,7049,-6978,7050,7012,-6978,7012,7013,-6936,7051,6978,-7014,6936,7052,-7015,7026,6937,-7015,6978,7051,-7016,6936,7015,-7053,7016,7053,-6980,7016,6939,-7018,7053,6980,-6980,6982,6981,-7019,6982,7054,-7018,6942,7055,-7019,7022,7019,-6984,7056,6942,-7020,6984,7020,-7058,6903,7024,-7021,7058,7021,-6985,6985,7021,-7060,7060,7022,-6986,7023,7024,-6987,6945,7025,-7024,7061,6987,-6947,7025,6987,-7063,6989,7063,-6989,7063,6990,-6989,6989,7026,-7064,7064,7027,-6991,6991,7027,-7066,6991,7066,-6993,6992,4052,-4023,6949,7028,-7068,7068,6994,-7002,6994,7069,-7030,7070,6995,-7031,7030,6951,-7033,6995,7070,-6997,7071,6997,-7030,7031,6997,-7072,6998,7072,-7033,7031,7072,-6999,7000,7068,-7002,7003,7073,-7003,7073,7033,-7003,7034,7074,-6962,7034,6960,-7036,7037,7035,-6964,7003,7036,-7076,7036,6961,-7075,7038,7037,-6963,7038,7004,-7077,7007,7077,-7006,7078,6970,-7040,7005,7079,-7040,6970,7078,-7041,6946,7040,-7062,7041,7080,-7008,6949,7067,-7010,7042,6972,-7082,7082,7008,-7043,7044,7043,-6974,6972,7043,-7082,7083,7041,-7009,7044,7009,-7068,6980,7053,-7011,7045,7046,-6975,7084,7045,-7011,6975,7046,-7048,7011,7047,-7049,7085,6976,-7049,7085,7049,-6977,7049,7086,-6978,7087,7012,-7051,7050,6977,-7087,7013,7012,-7088,7013,7088,-7052,7014,7052,-7090,7026,7014,-7090,7051,7090,-7016,7091,7052,-7016,7016,7092,-7054,7017,7092,-7017,6982,7018,-7094,6982,7094,-7055,7092,7017,-7055,7056,7055,-6943,7093,7018,-7056,7056,7019,-7023,7057,7020,-7025,7058,6984,-7058,7058,7095,-7022,7021,7096,-7060,7059,7060,-6986,7056,7022,-7061,7057,7024,-7024,7023,7025,-7098,6987,7061,-7099,7062,6987,-7099,7062,7099,-7026,6990,7063,-7101,7026,7089,-7064,7064,7065,-7028,7100,7064,-6991,6991,7065,-7067,7066,4052,-6993,7028,7101,-7068,6994,7068,-7070,7071,7029,-7070,7070,7030,-7103,7103,\r\n7030,-7033,7104,7031,-7072,7072,7105,-7033,7104,7072,-7032,7003,7106,-7074,7107,7033,-7074,7034,7108,-7075,7035,7108,-7035,7109,7035,-7038,7110,7075,-7037,7003,7075,-7107,7036,7074,-7112,7038,7109,-7038,7109,7038,-7077,7080,7077,-7008,7077,7112,-7006,7039,7113,-7079,7079,7005,-7113,7114,7039,-7080,7115,7040,-7079,7116,7061,-7041,7117,7080,-7042,7042,7081,-7119,7082,7083,-7009,7082,7042,-7120,7120,7043,-7045,7081,7043,-7122,7083,7117,-7042,7067,7101,-7045,7122,7010,-7054,7046,7045,-7124,7084,7123,-7046,7084,7010,-7123,7124,7047,-7047,7047,7125,-7049,7085,7048,-7127,7049,7085,-7128,7127,7086,-7050,7087,7050,-7129,7086,7129,-7051,7013,7087,-7089,7130,7051,-7089,7131,7089,-7053,7132,7090,-7052,7090,7133,-7016,7052,7091,-7132,7091,7015,-7134,7122,7053,-7093,7094,6982,-7094,7094,7134,-7055,7134,7092,-7055,7135,7055,-7057,7055,7136,-7094,7058,7057,-7138,7058,7137,-7096,7095,7096,-7022,7138,7059,-7097,7059,7139,-7061,7139,7056,-7061,7057,7023,-7141,7141,7097,-7026,7023,7097,-7141,7116,7098,-7062,7098,7116,-7063,7099,7062,-7143,7025,7099,-7142,7063,7089,-7101,7064,7143,-7066,7100,7143,-7065,7065,7144,-7067,4052,7066,-4052,7145,7071,-7070,7102,7030,-7104,7102,7146,-7071,7103,7032,-7106,7147,7104,-7072,7148,7105,-7073,7148,7072,-7105,7107,7073,-7107,7108,7111,-7075,7035,7149,-7109,7035,7109,-7151,7075,7110,-7152,7111,7110,-7037,7075,7152,-7107,7080,7153,-7078,7112,7077,-7154,7039,7114,-7114,7154,7078,-7114,7112,7155,-7080,7114,7079,-7156,7115,7116,-7041,7115,7078,-7157,7117,7153,-7081,7081,7121,-7119,7118,7119,-7043,7157,7083,-7083,7082,7119,-7159,7043,7120,-7122,7159,7120,-7045,7083,7160,-7118,7161,7044,-7102,7046,7123,-7125,7162,7123,-7085,7084,7122,-7164,7124,7125,-7048,7125,7126,-7049,7085,7126,-7128,7127,7164,-7087,7128,7050,-7130,7087,7128,-7089,7164,7129,-7087,7130,7132,-7052,7130,7088,-7166,7100,7089,-7132,7090,7132,-7167,7133,7090,-7167,7167,7131,-7092,7091,7133,-7167,7122,7092,-7169,7094,7093,-7137,7094,7169,-7135,7092,7134,-7169,7170,7055,-7136,7056,7171,-7136,7170,7136,-7056,7140,7137,-7058,7137,7172,-7096,7095,7173,\r\n-7097,7059,7138,-7140,7096,7174,-7139,7139,7171,-7057,7141,7175,-7098,7097,7176,-7141,7062,7116,-7178,7178,7142,-7063,7142,7179,-7100,7179,7141,-7100,7143,7180,-7066,7100,7131,-7144,7180,7144,-7066,7144,4051,-7067,7181,7071,-7146,7182,7102,-7104,7102,7182,-7147,7105,7183,-7104,7104,7147,-7149,7147,7071,-7182,7105,7148,-7185,7152,7107,-7107,7108,7185,-7112,7149,7035,-7151,7108,7149,-7186,7186,7151,-7111,7075,7151,-7188,7188,7110,-7112,7187,7152,-7076,7189,7112,-7154,7113,7114,-7155,7078,7154,-7157,7190,7155,-7113,7191,7114,-7156,7116,7115,-7193,7192,7115,-7157,7117,7160,-7154,7121,7193,-7119,7118,7194,-7120,7083,7157,-7161,7157,7082,-7159,7158,7119,-7196,7120,7196,-7122,7120,7159,-7198,7161,7159,-7045,7198,7124,-7124,7162,7198,-7124,7084,7199,-7163,7122,7168,-7164,7084,7163,-7201,7201,7125,-7125,7125,7202,-7127,7127,7126,-7165,7129,7164,-7129,7203,7088,-7129,7130,7204,-7133,7165,7088,-7206,7165,7206,-7131,7132,7207,-7167,7167,7143,-7132,7167,7091,-7209,7208,7091,-7167,7094,7136,-7210,7169,7094,-7210,7169,7210,-7135,7210,7168,-7135,7170,7135,-7212,7135,7171,-7213,7213,7136,-7171,7176,7137,-7141,7137,7214,-7173,7095,7172,-7174,7174,7096,-7174,7138,7215,-7140,7216,7138,-7175,7215,7171,-7140,7141,7217,-7176,7175,7176,-7098,7116,7218,-7178,7178,7062,-7178,7142,7178,-7220,7179,7142,-7220,7141,7179,-7218,7143,7220,-7181,7180,7221,-7145,7144,3977,-4052,7103,7183,-7183,7182,7222,-7147,7105,7184,-7184,7223,7148,-7148,7181,7224,-7148,7223,7184,-7149,7225,7111,-7186,7226,7186,-7111,7188,7226,-7111,7225,7188,-7112,7152,7187,-7228,7190,7112,-7190,7189,7153,-7229,7229,7154,-7115,7154,7230,-7157,7231,7155,-7191,7114,7191,-7230,7231,7191,-7156,7192,7218,-7117,7156,7232,-7193,7233,7153,-7161,7196,7193,-7122,7118,7193,-7195,7119,7194,-7196,7157,7234,-7161,7158,7195,-7158,7159,7161,-7198,7198,7201,-7125,7198,7162,-7236,7199,7084,-7201,7162,7199,-7237,7237,7163,-7169,7200,7163,-7238,7125,7201,-7239,7125,7238,-7203,7202,7239,-7127,7240,7164,-7127,7241,7128,-7165,7203,7205,-7089,7241,7203,-7129,7206,7204,-7131,7132,7204,-7243,7165,7205,-7244,\r\n7244,7206,-7166,7132,7245,-7208,7207,7246,-7167,7167,7220,-7144,7246,7167,-7209,7208,7166,-7247,7209,7136,-7214,7169,7209,-7248,7169,7248,-7211,7210,7237,-7169,7211,7135,-7213,7249,7170,-7212,7215,7212,-7172,7250,7213,-7171,7214,7137,-7177,7172,7214,-7252,7172,7252,-7174,7174,7173,-7254,7138,7216,-7216,7254,7216,-7175,7175,7217,-7256,7176,7175,-7257,7257,7177,-7219,7258,7178,-7178,7219,7178,-7259,7179,7219,-7260,7179,7259,-7218,7180,7220,-7261,7260,7221,-7181,7221,3977,-7145,7183,7222,-7183,7261,7146,-7223,7262,7183,-7185,7263,7223,-7148,7263,7147,-7225,7264,7184,-7224,7186,7226,-7266,7226,7188,-7266,7231,7190,-7190,7228,7153,-7234,7228,7266,-7190,7267,7154,-7230,7154,7267,-7231,7232,7156,-7231,7229,7191,-7269,7269,7191,-7232,7232,7218,-7193,7234,7233,-7161,7193,7270,-7195,7194,7271,-7196,7157,7272,-7235,7272,7157,-7196,7273,7201,-7199,7162,7236,-7236,7273,7198,-7236,7199,7200,-7275,7199,7274,-7237,7200,7237,-7276,7273,7238,-7202,7202,7238,-7277,7277,7239,-7203,7240,7126,-7240,7278,7164,-7241,7164,7278,-7242,7241,7205,-7204,7279,7204,-7207,7204,7279,-7243,7242,7245,-7133,7243,7205,-7281,7281,7165,-7244,7244,7282,-7207,7244,7165,-7282,7207,7245,-7284,7207,7283,-7247,7167,7246,-7221,7209,7213,-7285,7209,7285,-7248,7247,7248,-7170,7248,7286,-7211,7237,7210,-7287,7215,7211,-7213,7250,7170,-7250,7216,7249,-7212,7250,7284,-7214,7287,7214,-7177,7251,7214,-7288,7251,7252,-7173,7252,7288,-7174,7173,7289,-7254,7174,7253,-7255,7216,7211,-7216,7254,7249,-7217,7255,7217,-7260,7175,7255,-7291,7175,7290,-7257,7176,7256,-7292,7258,7177,-7258,7232,7257,-7219,7258,7292,-7220,7293,7259,-7220,7260,7220,-7295,7295,7221,-7261,7221,7295,-3978,7183,7296,-7223,7261,7297,-7147,7298,7261,-7223,7262,7296,-7184,7264,7262,-7185,7299,7223,-7264,7299,7264,-7224,7231,7189,-7301,7301,7228,-7234,7302,7266,-7229,7300,7189,-7267,7267,7229,-7269,7267,7303,-7231,7304,7232,-7231,7191,7305,-7269,7269,7305,-7192,7231,7300,-7270,7301,7233,-7235,7194,7270,-7272,7272,7195,-7272,7234,7272,-7307,7307,7235,-7237,7238,7273,-7236,7274,7200,-7276,7274,7308,-7237,7275,\r\n7237,-7287,7309,7276,-7239,7276,7277,-7203,7239,7277,-7311,7239,7311,-7241,7311,7278,-7241,7278,7280,-7242,7241,7280,-7206,7279,7206,-7313,7242,7279,-7314,7242,7313,-7246,7243,7280,-7315,7281,7243,-7316,7282,7244,-7317,7312,7206,-7283,7281,7315,-7245,7317,7283,-7246,7318,7246,-7284,7246,7294,-7221,7284,7285,-7210,7285,7319,-7248,7247,7320,-7249,7286,7248,-7321,7249,7321,-7251,7250,7321,-7285,7291,7287,-7177,7251,7287,-7323,7251,7323,-7253,7252,7324,-7289,7173,7288,-7290,7325,7253,-7290,7253,7326,-7255,7254,7321,-7250,7255,7259,-7328,7327,7290,-7256,7328,7256,-7291,7291,7256,-7330,7258,7257,-7331,7257,7232,-7332,7258,7330,-7293,7293,7219,-7293,7259,7293,-7333,7260,7294,-7334,7260,7333,-7296,3934,3977,-7296,7298,7222,-7297,7334,7297,-7262,7146,7297,-7336,7298,7336,-7262,7262,7337,-7297,7337,7262,-7265,7299,7263,-7339,7337,7264,-7300,7302,7228,-7302,7339,7266,-7303,7339,7300,-7267,7267,7268,-7341,7267,7341,-7304,7230,7303,-7305,7331,7232,-7305,7342,7268,-7306,7343,7305,-7270,7269,7300,-7345,7234,7345,-7302,7346,7271,-7271,7272,7271,-7348,7272,7347,-7307,7345,7234,-7307,7348,7235,-7308,7308,7307,-7237,7348,7238,-7236,7274,7275,-7309,7275,7286,-7350,7309,7350,-7277,7309,7238,-7349,7310,7277,-7277,7351,7239,-7311,7311,7239,-7352,7278,7311,-7353,7352,7280,-7279,7312,7353,-7280,7279,7354,-7314,7317,7245,-7314,7355,7314,-7281,7314,7315,-7244,7356,7316,-7245,7316,7357,-7283,7358,7312,-7283,7315,7356,-7245,7317,7359,-7284,7246,7318,-7295,7359,7318,-7284,7284,7360,-7286,7319,7285,-7361,7247,7319,-7321,7286,7320,-7362,7321,7362,-7285,7291,7363,-7288,7363,7322,-7288,7322,7323,-7252,7364,7252,-7324,7252,7364,-7325,7365,7288,-7325,7289,7288,-7366,7325,7366,-7254,7325,7289,-7366,7253,7366,-7327,7254,7326,-7322,7367,7327,-7260,7327,7328,-7291,7328,7329,-7257,7368,7291,-7330,7330,7257,-7332,7330,7369,-7293,7293,7292,-7371,7293,7370,-7333,7367,7259,-7333,7371,7333,-7295,7372,7295,-7334,3934,7295,-3937,7373,7298,-7297,7374,7297,-7335,7375,7334,-7262,7374,7335,-7298,7298,7373,-7337,7261,7336,-7376,7337,7376,-7297,7376,7299,-7339,7376,7337,\r\n-7300,7377,7302,-7302,7339,7302,-7379,7339,7344,-7301,7340,7268,-7380,7267,7340,-7342,7341,7380,-7304,7304,7303,-7332,7268,7342,-7380,7305,7379,-7343,7305,7343,-7382,7344,7343,-7270,7377,7301,-7346,7271,7346,-7348,7348,7307,-7383,7308,7383,-7308,7275,7384,-7309,7361,7349,-7287,7349,7384,-7276,7385,7350,-7310,7310,7276,-7351,7309,7348,-7386,7386,7351,-7311,7351,7387,-7312,7352,7311,-7389,7355,7280,-7353,7312,7389,-7354,7279,7353,-7355,7390,7313,-7355,7390,7317,-7314,7391,7314,-7356,7314,7392,-7316,7316,7356,-7394,7316,7394,-7358,7358,7282,-7358,7358,7389,-7313,7315,7392,-7357,7317,7390,-7360,7318,7395,-7295,7318,7359,-7396,7362,7360,-7285,7319,7360,-7397,7361,7320,-7320,7321,7326,-7363,7291,7368,-7364,7322,7363,-7398,7322,7397,-7324,7364,7323,-7399,7364,7399,-7325,7400,7365,-7325,7366,7325,-7402,7402,7325,-7366,7403,7326,-7367,7367,7404,-7328,7327,7404,-7329,7329,7328,-7406,7368,7329,-7407,7330,7331,-7408,7330,7408,-7370,7292,7369,-7371,7332,7370,-7410,7367,7332,-7411,7333,7371,-7373,7294,7395,-7372,7372,3936,-7296,7373,7296,-7377,7334,7411,-7375,7375,7412,-7335,7413,7335,-7375,7375,7336,-7374,7414,7376,-7339,7377,7378,-7303,7415,7339,-7379,7339,7416,-7345,7379,7417,-7341,7418,7341,-7341,7341,7419,-7381,7420,7303,-7381,7303,7407,-7332,7379,7305,-7422,7381,7343,-7423,7421,7305,-7382,7422,7343,-7345,7382,7307,-7384,7348,7382,-7386,7383,7308,-7424,7424,7308,-7385,7361,7425,-7350,7424,7384,-7350,7385,7426,-7351,7386,7310,-7351,7351,7386,-7388,7311,7387,-7389,7388,7427,-7353,7352,7427,-7356,7428,7353,-7390,7353,7428,-7355,7390,7354,-7430,7391,7392,-7315,7391,7355,-7431,7392,7393,-7357,7393,7431,-7317,7394,7316,-7432,7432,7357,-7395,7358,7357,-7390,7433,7359,-7391,7359,7433,-7396,7362,7434,-7361,7435,7396,-7361,7319,7396,-7437,7436,7361,-7320,7403,7362,-7327,7437,7363,-7369,7437,7397,-7364,7397,7398,-7324,7364,7398,-7400,7438,7324,-7400,7402,7365,-7401,7324,7438,-7401,7401,7325,-7440,7401,7403,-7367,7325,7402,-7440,7367,7440,-7405,7404,7405,-7329,7329,7405,-7407,7368,7406,-7442,7330,7407,-7409,7442,7369,-7409,7370,7369,-7444,\r\n7370,7444,-7410,7409,7410,-7333,7367,7410,-7441,7445,7372,-7372,7371,7395,-7434,3850,3936,-7373,7414,7373,-7377,7412,7411,-7335,7374,7411,-7447,7412,7375,-7448,7374,7448,-7414,7447,7375,-7374,7414,7338,-7450,7450,7378,-7378,7339,7415,-7417,7450,7415,-7379,7416,7451,-7345,7379,7421,-7418,7417,7418,-7341,7341,7418,-7420,7380,7419,-7453,7303,7420,-7408,7420,7380,-7454,7381,7422,-7455,7381,7454,-7422,7422,7344,-7452,7385,7382,-7384,7455,7423,-7309,7456,7383,-7424,7308,7424,-7456,7425,7361,-7437,7455,7349,-7426,7455,7424,-7350,7426,7385,-7458,7350,7426,-7459,7350,7458,-7387,7386,7459,-7388,7459,7388,-7388,7388,7460,-7428,7461,7355,-7428,7462,7428,-7390,7428,7463,-7355,7429,7354,-7464,7433,7390,-7430,7391,7464,-7393,7461,7430,-7356,7391,7430,-7465,7392,7464,-7394,7393,7465,-7432,7466,7394,-7432,7357,7432,-7468,7432,7394,-7467,7357,7467,-7390,7434,7362,-7404,7360,7434,-7436,7435,7468,-7397,7469,7436,-7397,7470,7437,-7369,7397,7437,-7472,7397,7472,-7399,7473,7399,-7399,7399,7473,-7439,7402,7400,-7475,7438,7474,-7401,7475,7401,-7440,7401,7475,-7404,7402,7476,-7440,7477,7404,-7441,7477,7405,-7405,7477,7406,-7406,7441,7406,-7479,7470,7368,-7442,7407,7442,-7409,7442,7479,-7370,7443,7369,-7480,7370,7443,-7445,7480,7409,-7445,7481,7410,-7410,7410,7481,-7441,7445,3850,-7373,7371,7433,-7446,7447,7373,-7415,7412,7482,-7412,7482,7446,-7412,7374,7446,-7449,7412,7447,-7484,7484,7413,-7449,7414,7449,-7448,7485,7416,-7416,7450,7486,-7416,7416,7485,-7452,7487,7417,-7422,7488,7418,-7418,7488,7419,-7419,7489,7452,-7420,7380,7452,-7454,7407,7420,-7443,7420,7453,-7491,7454,7422,-7492,7492,7421,-7455,7422,7451,-7492,7457,7385,-7384,7455,7493,-7424,7457,7383,-7457,7456,7423,-7494,7425,7436,-7495,7455,7425,-7496,7457,7496,-7427,7426,7497,-7459,7386,7458,-7460,7498,7388,-7460,7499,7460,-7389,7461,7427,-7461,7462,7500,-7429,7462,7389,-7468,7428,7501,-7464,7463,7502,-7430,7429,7503,-7434,7430,7461,-7505,7430,7504,-7465,7464,7505,-7394,7505,7465,-7394,7506,7431,-7466,7466,7431,-7507,7467,7432,-7463,7466,7507,-7433,7508,7434,-7404,7508,7435,-7435,7509,\r\n7468,-7436,7396,7468,-7470,7494,7436,-7470,7437,7470,-7511,7471,7437,-7511,7471,7472,-7398,7472,7511,-7399,7473,7398,-7513,7473,7513,-7439,7402,7474,-7477,7438,7514,-7475,7475,7439,-7516,7516,7403,-7476,7515,7439,-7477,7440,7517,-7478,7406,7477,-7479,7478,7518,-7442,7470,7441,-7520,7479,7442,-7521,7479,7521,-7444,7443,7522,-7445,7409,7480,-7482,7522,7480,-7445,7440,7481,-7518,7445,3701,-3851,7503,7445,-7434,7482,7412,-7484,7482,7523,-7447,7446,7524,-7449,7483,7447,-7526,7484,7448,-7527,7447,7449,-7526,7486,7485,-7416,7485,7527,-7452,7487,7488,-7418,7487,7421,-7493,7528,7419,-7489,7529,7452,-7490,7528,7489,-7420,7529,7453,-7453,7420,7490,-7443,7490,7453,-7531,7491,7492,-7455,7451,7531,-7492,7493,7455,-7533,7457,7456,-7534,7493,7533,-7457,7495,7425,-7495,7495,7532,-7456,7533,7496,-7458,7534,7426,-7497,7534,7497,-7427,7497,7535,-7459,7535,7459,-7459,7498,7499,-7389,7459,7535,-7499,7499,7536,-7461,7461,7460,-7538,7462,7538,-7501,7501,7428,-7501,3800,7463,-7502,3754,7502,-7464,7429,7502,-7504,7461,7537,-7505,7505,7464,-7505,7505,7539,-7466,7506,7465,-7540,7466,7506,-7508,7462,7432,-7539,7432,7507,-7539,7508,7403,-7517,7508,7540,-7436,7509,7541,-7469,7509,7435,-7541,7542,7469,-7469,7469,7542,-7495,7470,7543,-7511,7472,7471,-7511,7511,7472,-7545,7512,7398,-7512,7545,7473,-7513,7546,7513,-7474,7438,7513,-7515,7474,7547,-7477,7514,7547,-7475,7515,7548,-7476,7516,7475,-7549,7515,7476,-7550,7477,7517,-7551,7477,7550,-7479,7478,7550,-7519,7441,7518,-7552,7441,7551,-7520,7470,7519,-7553,7490,7520,-7443,7479,7520,-7554,7521,7479,-7555,7522,7443,-7522,7481,7480,-7556,7480,7522,-7557,7481,7555,-7518,7503,3701,-7446,7482,7483,-7558,7523,7482,-7558,7523,7558,-7447,7558,7524,-7447,7524,7526,-7449,7559,7483,-7526,7526,7560,-7485,7449,7561,-7526,7486,7562,-7486,7485,7562,-7528,7451,7527,-7532,7487,7563,-7489,7564,7487,-7493,7528,7488,-7566,7566,7529,-7490,7489,7528,-7568,7529,7530,-7454,7530,7568,-7491,7531,7492,-7492,7493,7532,-7570,7493,7569,-7534,7495,7494,-7571,7571,7532,-7496,7533,7572,-7497,7534,7496,-7573,7534,7573,-7498,7497,7574,\r\n-7536,7499,7498,-7576,7574,7498,-7536,7576,7536,-7500,7536,7577,-7461,7577,7537,-7461,7538,3755,-7501,3800,7501,-7501,3754,7463,-3801,3754,3854,-7503,3854,7503,-7503,7578,7504,-7538,7505,7504,-7580,7579,7539,-7506,7580,7506,-7540,7506,7581,-7508,7507,3756,-7539,7582,7508,-7517,7582,7540,-7509,7509,7582,-7542,7542,7468,-7542,7540,7582,-7510,7494,7542,-7571,7543,7470,-7553,7543,7583,-7511,7544,7472,-7511,7584,7511,-7545,7545,7512,-7512,7546,7473,-7546,7546,7585,-7514,7586,7514,-7514,7547,7549,-7477,7586,7547,-7515,7515,7587,-7549,7588,7516,-7549,7587,7515,-7550,7517,7589,-7551,7518,7550,-7591,7591,7551,-7519,7592,7519,-7552,7552,7519,-7593,7593,7520,-7491,7553,7520,-7595,7554,7479,-7554,7595,7521,-7555,7522,7521,-7597,7556,7555,-7481,7556,7522,-7597,7517,7555,-7590,3854,3701,-7504,7559,7557,-7484,7523,7557,-7598,7523,7598,-7559,7599,7524,-7559,7524,7600,-7527,7559,7525,-7602,7526,7602,-7561,7561,7601,-7526,7562,7603,-7528,7531,7527,-7604,7563,7487,-7605,7563,7565,-7489,7604,7487,-7565,7492,7605,-7565,7528,7565,-7607,7529,7566,-7608,7566,7489,-7568,7606,7567,-7529,7529,7607,-7531,7608,7568,-7531,7568,7593,-7491,7531,7605,-7493,7571,7569,-7533,7533,7569,-7573,7571,7495,-7571,7609,7534,-7573,7534,7610,-7574,7611,7497,-7574,7611,7574,-7498,7612,7575,-7499,7576,7499,-7576,7574,7612,-7499,7613,7536,-7577,7613,7577,-7537,7577,7614,-7538,7538,3756,-3756,3755,3800,-7501,7615,7504,-7579,7537,7616,-7579,7579,7504,-7616,7579,7617,-7540,7580,7618,-7507,7619,7580,-7540,7506,7618,-7582,7581,3704,-7508,7507,3704,-3757,7516,7620,-7583,7621,7541,-7583,7542,7541,-7623,7623,7570,-7543,7583,7543,-7553,7510,7583,-7625,7584,7544,-7511,7511,7584,-7546,7545,7625,-7547,7625,7585,-7547,7626,7513,-7586,7586,7513,-7627,7627,7549,-7548,7627,7547,-7587,7628,7548,-7588,7516,7588,-7621,7588,7548,-7630,7587,7549,-7631,7550,7589,-7591,7591,7518,-7591,7631,7551,-7592,7631,7592,-7552,7552,7592,-7633,7593,7594,-7521,7553,7594,-7634,7554,7553,-7635,7595,7596,-7522,7634,7595,-7555,7635,7555,-7557,7556,7596,-7637,7637,7589,-7556,7557,7559,-7598,7597,7598,-7524,\r\n7599,7558,-7599,7524,7599,-7601,7526,7600,-7603,7601,7638,-7560,7639,7560,-7603,7601,7561,-7641,7531,7603,-7606,7563,7604,-7642,7641,7565,-7564,7604,7564,-7643,7643,7564,-7606,7565,7644,-7607,7607,7566,-7646,7567,7646,-7567,7647,7567,-7607,7608,7530,-7608,7568,7608,-7649,7568,7649,-7594,7569,7571,-7651,7572,7569,-7610,7571,7570,-7652,7609,7610,-7535,7573,7610,-7653,7573,7653,-7612,7574,7611,-7655,7575,7612,-7656,7575,7655,-7577,7574,7654,-7613,7576,7656,-7614,7613,7657,-7578,7577,7657,-7615,7614,7616,-7538,7615,7578,-7659,7578,7616,-7659,7579,7615,-7660,7579,7659,-7618,7617,7619,-7540,7660,7618,-7581,7619,7660,-7581,7618,7661,-7582,7581,7662,-3705,7582,7620,-7664,7664,7541,-7622,7582,7663,-7622,7664,7622,-7542,7623,7542,-7623,7651,7570,-7624,7552,7665,-7584,7583,7666,-7625,7510,7624,-7585,7624,7545,-7585,7624,7625,-7546,7667,7585,-7626,7626,7585,-7669,7669,7586,-7627,7627,7630,-7550,7669,7627,-7587,7629,7548,-7629,7628,7587,-7631,7588,7663,-7621,7670,7588,-7630,7589,7671,-7591,7672,7591,-7591,7673,7631,-7592,7674,7592,-7632,7675,7632,-7593,7665,7552,-7633,7676,7594,-7594,7676,7633,-7595,7633,7634,-7554,7595,7636,-7597,7595,7634,-7678,7635,7637,-7556,7635,7556,-7637,7637,7678,-7590,7597,7559,-7639,7597,7679,-7599,7599,7598,-7681,7599,7681,-7601,7600,7682,-7603,7638,7601,-7684,7639,7602,-7685,7683,7601,-7641,7642,7641,-7605,7565,7641,-7645,7643,7642,-7565,7644,7685,-7607,7566,7646,-7646,7608,7607,-7646,7646,7567,-7648,7647,7606,-7687,7648,7608,-7688,7568,7648,-7689,7688,7649,-7569,7676,7593,-7650,7571,7651,-7651,7569,7650,-7690,7689,7609,-7570,7689,7610,-7610,7689,7652,-7611,7690,7573,-7653,7691,7653,-7574,7611,7653,-7655,7692,7655,-7613,7576,7655,-7657,7654,7693,-7613,7613,7656,-7695,7613,7695,-7658,7657,7696,-7615,7697,7616,-7615,7615,7658,-7699,7697,7658,-7617,7615,7699,-7660,7617,7659,-7701,7617,7700,-7620,7660,7701,-7619,7702,7660,-7620,7618,7703,-7662,7581,7661,-7663,7662,3757,-3705,7664,7621,-7705,7663,7704,-7622,7664,7705,-7623,7623,7622,-7706,7623,7706,-7652,7666,7583,-7666,7666,7625,-7625,7667,7668,-7586,7667,\r\n7625,-7708,7626,7668,-7709,7709,7669,-7627,7630,7627,-7711,7710,7627,-7670,7628,7711,-7630,7712,7628,-7631,7588,7670,-7664,7670,7629,-7714,7671,7589,-7679,7671,7672,-7591,7673,7591,-7673,7714,7631,-7674,7675,7592,-7675,7631,7714,-7675,7675,7715,-7633,7716,7665,-7633,7676,7717,-7634,7633,7718,-7635,7595,7719,-7637,7677,7634,-7719,7719,7595,-7678,7637,7635,-7721,7635,7636,-7722,7720,7678,-7638,7597,7638,-7680,7722,7598,-7680,7722,7680,-7599,7680,7681,-7600,7600,7681,-7683,7682,7684,-7603,7723,7638,-7684,7724,7639,-7685,7641,7642,-7726,7641,7726,-7645,7642,7643,-7726,7727,7685,-7645,7606,7685,-7687,7728,7645,-7647,7608,7645,-7730,7646,7647,-7731,7647,7686,-7732,7608,7732,-7688,7648,7687,-7689,7733,7649,-7689,7676,7649,-7735,7651,7706,-7651,7650,7735,-7690,7735,7652,-7690,7691,7573,-7691,7690,7652,-7737,7653,7691,-7738,7653,7693,-7655,7738,7655,-7693,7612,7693,-7693,7655,7694,-7657,7613,7694,-7696,7739,7657,-7696,7696,7657,-7741,7697,7614,-7697,7658,7741,-7699,7615,7698,-7700,7658,7697,-7742,7699,7700,-7660,7619,7700,-7743,7743,7701,-7661,7701,7703,-7619,7660,7702,-7745,7742,7702,-7620,7703,7662,-7662,7703,3757,-7663,7664,7704,-7746,7746,7704,-7664,7664,7745,-7706,7623,7705,-7707,7666,7665,-7717,7747,7625,-7667,7748,7668,-7668,7747,7707,-7626,7667,7707,-7749,7749,7708,-7669,7709,7626,-7709,7709,7750,-7670,7712,7630,-7711,7710,7669,-7751,7628,7712,-7712,7711,7713,-7630,7663,7670,-7752,7670,7713,-7753,7671,7678,-7754,7753,7672,-7672,7754,7673,-7673,7714,7673,-7756,7714,7675,-7675,7715,7675,-7757,7716,7632,-7716,7676,7734,-7718,7718,7633,-7718,7721,7636,-7720,7677,7718,-7758,7758,7719,-7678,7635,7721,-7721,7720,7759,-7679,7760,7679,-7639,7760,7722,-7680,7722,7760,-7681,7761,7681,-7681,7761,7682,-7682,7682,7762,-7685,7638,7723,-7764,7639,7724,-7765,7684,7765,-7725,7726,7641,-7726,7726,7727,-7645,7727,7766,-7686,7686,7685,-7768,7768,7645,-7729,7730,7728,-7647,7729,7645,-7769,7729,7732,-7609,7647,7731,-7731,7731,7686,-7768,7687,7732,-7770,7770,7688,-7688,7734,7649,-7734,7771,7733,-7689,7650,7706,-7736,7735,7736,-7653,7690,7772,\r\n-7692,7736,7773,-7691,7691,7774,-7738,7653,7737,-7694,7738,7694,-7656,7738,7692,-7776,7692,7693,-7776,7694,7776,-7696,7740,7657,-7740,7695,7776,-7740,7740,7697,-7697,7777,7698,-7742,7778,7699,-7699,7779,7741,-7698,7700,7699,-7743,7743,3801,-7702,7660,7744,-7744,7701,3759,-7704,7702,7742,-7745,3759,3757,-7704,7780,7745,-7705,7746,7780,-7705,7663,7751,-7747,7781,7705,-7746,7781,7706,-7706,7666,7716,-7748,7782,7668,-7749,7747,7783,-7708,7748,7707,-7784,7749,7784,-7709,7782,7749,-7669,7784,7709,-7709,7709,7785,-7751,7786,7712,-7711,7786,7710,-7751,7787,7711,-7713,7711,7787,-7714,7751,7670,-7753,7788,7752,-7714,7678,7759,-7754,7753,7754,-7673,7789,7673,-7755,7789,7755,-7674,7790,7714,-7756,7714,7756,-7676,7715,7756,-7792,7716,7715,-7793,7733,7717,-7735,7793,7718,-7718,7719,7794,-7722,7757,7718,-7794,7757,7758,-7678,7758,7794,-7720,7720,7721,-7796,7759,7720,-7796,7638,7763,-7761,7680,7760,-7762,7762,7682,-7762,7684,7762,-7766,7763,7723,-7797,7797,7764,-7725,7798,7724,-7766,7725,7799,-7727,7800,7727,-7727,7766,7727,-7802,7685,7766,-7768,7728,7802,-7769,7730,7802,-7729,7803,7729,-7769,7803,7732,-7730,7804,7730,-7732,7731,7767,-7806,7806,7769,-7733,7687,7769,-7771,7770,7771,-7689,7771,7807,-7734,7706,7781,-7736,7736,7735,-7809,7690,7809,-7773,7691,7772,-7775,7736,7810,-7774,7690,7773,-7810,7774,7811,-7738,7693,7737,-7776,7738,7812,-7695,7738,7775,-7813,7776,7694,-7813,7740,7739,-7814,7776,7814,-7740,7740,7779,-7698,7777,7778,-7699,7777,7741,-7816,7816,7699,-7779,7779,7815,-7742,7816,7742,-7700,3801,7743,-3856,7701,3801,-3707,7743,7744,-7818,7701,3706,-3760,7744,7742,-7818,7818,7745,-7781,7819,7780,-7747,7819,7746,-7752,7781,7745,-7819,7792,7747,-7717,7748,7820,-7783,7792,7783,-7748,7748,7783,-7821,7821,7784,-7750,7822,7749,-7783,7823,7709,-7785,7709,7823,-7786,7785,7786,-7751,7824,7712,-7787,7787,7712,-7826,7787,7788,-7714,7826,7751,-7753,7788,7827,-7753,7759,7828,-7754,7829,7754,-7754,7830,7789,-7755,7831,7755,-7790,7756,7714,-7791,7832,7790,-7756,7756,7790,-7792,7715,7791,-7834,7792,7715,-7834,7733,7807,-7718,7807,7793,-7718,\r\n7721,7794,-7835,7793,7835,-7758,7758,7757,-7837,7758,7836,-7795,7721,7834,-7796,7759,7795,-7838,7838,7760,-7764,7761,7760,-7839,7761,7839,-7763,7762,7840,-7766,7841,7796,-7724,7842,7763,-7797,7764,7797,-7844,7844,7797,-7725,7845,7724,-7799,7846,7798,-7766,7800,7726,-7800,7727,7800,-7802,7766,7801,-7848,7805,7767,-7767,7848,7768,-7803,7849,7802,-7731,7848,7803,-7769,7803,7806,-7733,7849,7730,-7805,7804,7731,-7806,7806,7850,-7770,7769,7850,-7771,7771,7770,-7852,7852,7807,-7772,7735,7781,-7854,7853,7808,-7736,7808,7810,-7737,7854,7772,-7810,7774,7772,-7856,7810,7856,-7774,7809,7773,-7858,7811,7774,-7856,7858,7737,-7812,7858,7775,-7738,7812,7775,-7859,7859,7776,-7813,7739,7814,-7814,7740,7813,-7780,7859,7814,-7777,7777,7860,-7779,7860,7777,-7816,7816,7778,-7862,7862,7815,-7780,7816,7863,-7743,7743,7817,-3856,7863,7817,-7743,7864,7818,-7781,7819,7865,-7781,7819,7751,-7827,7866,7781,-7819,7820,7822,-7783,7783,7792,-7868,7820,7783,-7868,7784,7821,-7869,7822,7821,-7750,7784,7868,-7824,7869,7785,-7824,7785,7870,-7787,7825,7712,-7825,7871,7824,-7787,7787,7825,-7789,7826,7752,-7828,7788,7872,-7828,7759,7837,-7829,7828,7873,-7754,7830,7754,-7830,7829,7753,-7874,7831,7789,-7831,7831,7874,-7756,7875,7790,-7833,7832,7755,-7875,7790,7875,-7792,7833,7791,-7876,7792,7833,-7877,7852,7793,-7808,7834,7794,-7878,7793,7852,-7836,7836,7757,-7836,7836,7878,-7795,7837,7795,-7835,7838,7763,-7843,7761,7838,-7840,7762,7839,-7841,7840,7879,-7766,7841,7880,-7797,7796,7881,-7843,7797,7844,-7844,7724,7845,-7845,7882,7845,-7799,7846,7883,-7799,7884,7846,-7766,7847,7801,-7886,7766,7847,-7887,7766,7886,-7806,7848,7802,-7888,7849,7887,-7803,7848,7888,-7804,7806,7803,-7889,7889,7849,-7805,7890,7804,-7806,7806,7891,-7851,7770,7850,-7852,7852,7771,-7852,7853,7781,-7867,7892,7808,-7854,7808,7892,-7811,7854,7855,-7773,7854,7809,-7894,7810,7892,-7857,7857,7773,-7857,7894,7809,-7858,7811,7855,-7896,7811,7895,-7859,7896,7812,-7859,7896,7859,-7813,7862,7813,-7815,7779,7813,-7863,7859,7897,-7815,7861,7778,-7861,7815,7898,-7861,7816,7861,-7900,7862,7898,-7816,7863,\r\n7816,-3856,7817,7863,-3856,7864,7866,-7819,7780,7865,-7865,7819,7900,-7866,7826,7901,-7820,7902,7822,-7821,7792,7876,-7868,7820,7867,-7904,7904,7868,-7822,7821,7822,-7906,7868,7906,-7824,7870,7785,-7870,7906,7869,-7824,7871,7786,-7871,7825,7824,-7908,7908,7824,-7872,7872,7788,-7826,7826,7827,-7902,7827,7872,-7910,7910,7828,-7838,7911,7873,-7829,7830,7829,-7913,7829,7873,-7914,7912,7831,-7831,7831,7914,-7875,7875,7832,-7916,7915,7832,-7875,7916,7833,-7876,7916,7876,-7834,7877,7794,-7879,7877,7837,-7835,7852,7917,-7836,7836,7835,-7919,7836,7919,-7879,7842,7920,-7839,7920,7839,-7839,7921,7840,-7840,7921,7879,-7841,7884,7765,-7880,7881,7796,-7881,7922,7842,-7882,7844,7882,-7844,7845,7882,-7845,7798,7883,-7883,7886,7847,-7886,7805,7886,-7924,7848,7887,-7925,7925,7887,-7850,7888,7848,-7927,7806,7888,-7892,7849,7889,-7926,7889,7804,-7891,7890,7805,-7924,7891,7927,-7851,7851,7850,-7929,7852,7851,-7918,7866,7929,-7854,7853,7930,-7893,7931,7855,-7855,7809,7894,-7894,7854,7893,-7933,7892,7933,-7857,7856,7894,-7858,7855,7931,-7896,7934,7858,-7896,7858,7934,-7897,7896,7935,-7860,7862,7814,-7937,7935,7897,-7860,7897,7936,-7815,7898,7861,-7861,7937,7899,-7862,7899,7938,-7817,7862,7939,-7899,7816,3937,-3856,7864,7929,-7867,7864,7865,-7941,7819,7901,-7901,7941,7865,-7901,7905,7822,-7903,7820,7903,-7903,7903,7867,-7877,7868,7904,-7907,7904,7821,-7943,7821,7905,-7944,7944,7870,-7870,7944,7869,-7907,7908,7871,-7871,7907,7824,-7946,7946,7825,-7908,7945,7824,-7909,7946,7872,-7826,7827,7909,-7902,7947,7909,-7873,7911,7828,-7911,7877,7910,-7838,7873,7911,-7949,7829,7913,-7913,7873,7948,-7914,7949,7831,-7913,7949,7914,-7832,7915,7874,-7915,7915,7950,-7876,7916,7875,-7952,7952,7876,-7917,7877,7878,-7954,7954,7835,-7918,7955,7918,-7836,7919,7836,-7919,7919,7953,-7879,7842,7956,-7921,7920,7957,-7840,7921,7839,-7958,7921,7958,-7880,7959,7884,-7880,7960,7881,-7881,7842,7922,-7957,7881,7960,-7923,7885,7923,-7887,7961,7924,-7888,7848,7924,-7927,7925,7961,-7888,7888,7926,-7963,7891,7888,-7963,7963,7925,-7890,7890,7964,-7890,7923,7965,-7891,7891,7962,\r\n-7928,7928,7850,-7928,7851,7928,-7918,7929,7930,-7854,7930,7933,-7893,7931,7854,-7933,7966,7893,-7895,7967,7932,-7894,7856,7933,-7895,7968,7895,-7932,7934,7895,-7969,7969,7896,-7935,7935,7896,-7970,7862,7936,-7940,7935,7970,-7898,7897,7971,-7937,7937,7861,-7899,7937,7972,-7900,7973,7938,-7900,3937,7816,-7939,7898,7939,-7975,7864,7975,-7930,7865,7941,-7941,7864,7940,-7976,7900,7901,-7977,7941,7900,-7977,7977,7905,-7903,7952,7902,-7904,7952,7903,-7877,7906,7904,-7979,7942,7821,-7944,7904,7942,-7980,7977,7943,-7906,7944,7980,-7871,7944,7906,-7979,7908,7870,-7981,7907,7945,-7982,7946,7907,-7983,7908,7981,-7946,7947,7872,-7947,7983,7901,-7910,7983,7909,-7948,7910,7984,-7912,7877,7984,-7911,7911,7985,-7949,7912,7913,-7987,7987,7913,-7949,7949,7912,-7989,7949,7988,-7915,7915,7914,-7990,7990,7950,-7916,7951,7875,-7951,7991,7916,-7952,7991,7952,-7917,7984,7877,-7954,7954,7955,-7836,7954,7917,-7993,7993,7918,-7956,7919,7918,-7995,7919,7995,-7954,7956,7996,-7921,7997,7957,-7921,7921,7957,-7959,7998,7879,-7959,7959,7879,-7999,7922,7960,-7957,7923,7885,-8000,7924,7961,-8001,8001,7926,-7925,8002,7961,-7926,8001,7962,-7927,7925,7963,-8003,7889,8003,-7964,7890,7965,-7965,7964,8004,-7890,7923,8005,-7966,8006,7927,-7963,7928,7927,-8008,7992,7917,-7929,7930,7929,-8009,8008,7933,-7931,7931,7932,-7969,7893,7966,-8010,8010,7966,-7895,8011,7932,-7968,7893,8009,-7968,8010,7894,-7934,7969,7934,-7969,7935,7969,-8013,8013,7939,-7937,7970,7935,-8013,8014,7897,-7971,8014,7971,-7898,8015,7936,-7972,7898,7974,-7938,7974,7972,-7938,7972,7973,-7900,7973,3851,-7939,3851,3937,-7939,8016,7974,-7940,7975,8008,-7930,7941,8017,-7941,7975,7940,-8019,7901,8019,-7977,7976,8020,-7942,7977,7902,-8022,7902,7952,-8022,7904,7979,-7979,7942,7943,-8023,8023,7979,-7943,8022,7943,-7978,8024,7980,-7945,7978,8025,-7945,7908,7980,-8027,7981,7982,-7908,7946,7982,-8028,7908,8026,-7982,7947,7946,-8029,7901,7983,-8020,7947,8028,-7984,7911,7984,-8030,7911,8029,-7986,7985,8030,-7949,7913,8031,-7987,7986,7988,-7913,7987,8031,-7914,7987,7948,-8031,7914,7988,-8033,7914,8032,-7990,\r\n7915,7989,-7991,7951,7950,-7991,8033,7991,-7952,8034,7952,-7992,7984,7953,-8036,7954,8036,-7956,7954,7992,-8038,7918,7993,-7995,7955,8038,-7994,7995,7919,-7995,7953,7995,-8036,8039,7996,-7957,8040,7920,-7997,7957,7997,-8042,7997,7920,-8041,7957,8041,-7959,7958,8041,-7999,7959,7998,-8043,8043,7956,-7961,8005,7923,-8000,8044,8000,-7962,7924,8000,-8002,8002,8044,-7962,7962,8001,-8046,8002,7963,-8047,7889,8004,-8004,7963,8003,-8048,7965,8004,-7965,8005,8048,-7966,8007,7927,-8007,7962,8045,-8007,7992,7928,-8008,7933,8008,-8011,8012,7968,-7933,8010,8009,-7967,8011,8012,-7933,8011,7967,-8050,8009,8049,-7968,7969,7968,-8013,8013,8050,-7940,8013,7936,-8016,7970,8012,-8052,8014,7970,-8053,8014,8053,-7972,7971,8054,-8016,7972,7974,-8056,7972,8056,-7974,3851,7973,-3853,8055,7974,-8017,8050,8016,-7940,8018,8008,-7976,7941,8057,-8018,8017,8018,-7941,7976,8019,-8059,7976,8058,-8021,8057,7941,-8021,7977,8021,-8060,8034,8021,-7953,7979,8060,-7979,8061,7942,-8023,8060,7979,-8024,8061,8023,-7943,7977,8059,-8023,8024,8026,-7981,8024,7944,-8026,7978,8060,-8026,7981,8062,-7983,8062,8027,-7983,7946,8027,-8064,8064,7981,-8027,7946,8065,-8029,8058,8019,-7984,7983,8028,-8059,8029,7984,-8036,8066,7985,-8030,8066,8030,-7986,8067,7986,-8032,8067,7988,-7987,8031,7987,-8069,8030,8068,-7988,8067,8032,-7989,8069,7989,-8033,7989,8069,-7991,8033,7951,-7991,8033,8070,-7992,8070,8034,-7992,7954,8071,-8037,7955,8036,-8073,8037,7992,-8008,7954,8037,-8072,7994,7993,-8074,7955,8072,-8039,8038,8073,-7994,7995,7994,-8075,7995,8075,-8036,8040,7996,-8040,8076,8039,-7957,7997,8077,-8042,7997,8040,-8079,8041,8077,-7999,8079,8042,-7999,7956,8043,-8077,8048,8005,-8000,8000,8044,-8081,8001,8000,-8082,8082,8044,-8003,8083,8045,-8002,7963,8084,-8047,8002,8046,-8083,8003,8004,-8086,8047,8003,-8087,7963,8047,-8085,7965,8048,-8005,8007,8006,-8088,8006,8045,-8089,8010,8008,-8090,8010,8090,-8010,8091,8012,-8012,8011,8049,-8093,8009,8093,-8050,8050,8013,-8095,8013,8015,-8095,8012,8091,-8052,7970,8051,-8053,8014,8052,-8054,8054,7971,-8054,8095,8015,-8055,8055,8056,-7973,3852,\r\n7973,-8057,8055,8016,-8097,8050,8097,-8017,8089,8008,-8019,8098,8017,-8058,8099,8018,-8018,8058,8100,-8021,8057,8020,-8102,8102,8059,-8022,8034,8102,-8022,8061,8022,-8104,8060,8023,-8105,8023,8061,-8106,8106,8022,-8060,8024,8107,-8027,8024,8025,-8109,8025,8060,-8109,8062,7981,-8065,8062,8109,-8028,8027,8109,-8064,8063,8065,-7947,8064,8026,-8111,8111,8028,-8066,8058,8028,-8101,8029,8035,-8076,8029,8075,-8067,8066,8112,-8031,8113,8067,-8032,8031,8068,-8114,8112,8068,-8031,8067,8114,-8033,8069,8032,-8116,8069,8033,-7991,8033,8069,-8071,8070,8116,-8035,8036,8071,-8073,8007,8087,-8038,8117,8071,-8038,8073,8074,-7995,8072,8118,-8039,8119,8073,-8039,7995,8074,-8121,8120,8075,-7996,8040,8039,-8122,8122,8039,-8077,8077,7997,-8079,8078,8040,-8122,8077,8079,-7999,8042,8079,-8124,8043,8122,-8077,8124,8048,-8000,8044,8125,-8081,8000,8080,-8082,8001,8081,-8084,8044,8082,-8126,8083,8088,-8046,8046,8084,-8127,8082,8046,-8128,8004,8128,-8086,8003,8085,-8130,8003,8129,-8087,8047,8086,-8131,8084,8047,-8131,8048,8131,-8005,8006,8088,-8088,8089,8090,-8011,8132,8009,-8091,8011,8092,-8092,8133,8092,-8050,8093,8009,-8135,8049,8093,-8136,8050,8094,-8137,8094,8015,-8096,8051,8091,-8138,8052,8051,-8138,8138,8053,-8053,8054,8053,-8140,8095,8054,-8141,8055,8096,-8057,3852,8056,-8142,8097,8096,-8017,8050,8136,-8098,8089,8018,-8143,8017,8098,-8100,8098,8057,-8102,8142,8018,-8100,8101,8020,-8101,8059,8102,-8107,8034,8116,-8103,8106,8103,-8023,8143,8061,-8104,8104,8023,-8106,8060,8104,-8109,8105,8061,-8145,8024,8145,-8108,8107,8110,-8027,8108,8145,-8025,8146,8062,-8065,8062,8146,-8110,8109,8147,-8064,8063,8147,-8066,8148,8064,-8111,8100,8028,-8112,8111,8065,-8150,8150,8066,-8076,8112,8066,-8151,8067,8113,-8152,8113,8068,-8153,8112,8153,-8069,8067,8151,-8115,8115,8032,-8115,8069,8115,-8155,8155,8070,-8070,8116,8070,-8157,8071,8157,-8073,8087,8158,-8038,8117,8159,-8072,8160,8117,-8038,8073,8161,-8075,8157,8118,-8073,8119,8038,-8119,8161,8073,-8120,8162,8120,-8075,8163,8075,-8121,8122,8121,-8040,8077,8078,-8165,8078,8121,-8166,8077,8166,-8080,8079,8167,\r\n-8124,8168,8048,-8125,8125,8169,-8081,8170,8081,-8081,8083,8081,-8172,8082,8172,-8126,8083,8173,-8089,8084,8174,-8127,8046,8126,-8128,8082,8127,-8173,8131,8128,-8005,8175,8085,-8129,8085,8176,-8130,8129,8177,-8087,8178,8130,-8087,8084,8130,-8175,8048,8168,-8132,8087,8088,-8180,8089,8142,-8091,8180,8009,-8133,8090,8142,-8133,8137,8091,-8093,8133,8181,-8093,8135,8133,-8050,8009,8180,-8135,8182,8093,-8135,8133,8135,-8094,8183,8136,-8095,8094,8095,-8184,8052,8137,-8185,8138,8139,-8054,8052,8185,-8139,8140,8054,-8140,8140,8186,-8096,8096,8141,-8057,8141,3797,-3853,8097,8187,-8097,8097,8136,-8189,8098,8189,-8100,8101,8190,-8099,8142,8099,-8192,8101,8100,-8112,8106,8102,-8193,8102,8116,-8194,8106,8194,-8104,8143,8144,-8062,8103,8194,-8144,8195,8104,-8106,8104,8196,-8109,8195,8105,-8145,8145,8197,-8108,8107,8198,-8111,8199,8145,-8109,8148,8146,-8065,8146,8200,-8110,8147,8109,-8201,8201,8065,-8148,8148,8110,-8199,8149,8065,-8202,8149,8202,-8112,8150,8075,-8164,8203,8112,-8151,8113,8204,-8152,8205,8152,-8069,8152,8204,-8114,8203,8153,-8113,8153,8205,-8069,8151,8206,-8115,8115,8114,-8208,8115,8208,-8155,8155,8069,-8155,8156,8070,-8156,8116,8156,-8194,8159,8157,-8072,8209,8158,-8088,8158,8210,-8038,8159,8117,-8212,8117,8160,-8213,8210,8160,-8038,8161,8162,-8075,8157,8213,-8119,8161,8119,-8119,8162,8214,-8121,8120,8214,-8164,8122,8215,-8122,8164,8078,-8166,8166,8077,-8165,8165,8121,-8216,8166,8167,-8080,8169,8125,-8217,8217,8080,-8170,8171,8081,-8171,8217,8170,-8081,8173,8083,-8172,8125,8172,-8217,8173,8218,-8089,8219,8126,-8175,8127,8126,-8221,8127,8221,-8173,8128,8131,-8223,8085,8175,-8177,8175,8128,-8224,8224,8129,-8177,8224,8177,-8130,8177,8178,-8087,8225,8130,-8179,8226,8174,-8131,8168,8222,-8132,8179,8088,-8219,8179,8209,-8088,8132,8227,-8181,8132,8142,-8229,8137,8092,-8230,8133,8230,-8182,8181,8229,-8093,8180,8231,-8135,8182,8232,-8094,8182,8134,-8232,8133,8093,-8233,8183,8233,-8137,8183,8095,-8235,8229,8184,-8138,8184,8185,-8053,8138,8185,-8140,8235,8140,-8140,8186,8140,-8237,8186,8234,-8096,8096,8237,-8142,8238,3797,-8142,\r\n8097,8188,-8188,8096,8187,-8238,8188,8136,-8234,8098,8239,-8190,8099,8189,-8192,8101,8111,-8191,8098,8190,-8240,8142,8191,-8229,8240,8192,-8103,8192,8194,-8107,8240,8102,-8194,8143,8241,-8145,8143,8194,-8242,8195,8196,-8105,8199,8108,-8197,8195,8144,-8243,8199,8197,-8146,8197,8198,-8108,8148,8243,-8147,8146,8244,-8201,8245,8147,-8201,8201,8147,-8246,8198,8243,-8149,8246,8149,-8202,8202,8149,-8248,8190,8111,-8203,8150,8163,-8249,8150,8248,-8204,8206,8151,-8205,8205,8249,-8153,8152,8249,-8205,8203,8250,-8154,8205,8153,-8252,8206,8207,-8115,8115,8207,-8209,8155,8154,-8209,8252,8156,-8156,8193,8156,-8253,8159,8253,-8158,8209,8254,-8159,8158,8254,-8211,8117,8212,-8212,8253,8159,-8212,8255,8212,-8161,8210,8255,-8161,8161,8256,-8163,8157,8253,-8214,8256,8118,-8214,8256,8161,-8119,8162,8256,-8215,8248,8163,-8215,8164,8165,-8258,8166,8164,-8259,8165,8215,-8258,8166,8259,-8168,8169,8216,-8261,8217,8169,-8261,8261,8171,-8171,8261,8170,-8218,8173,8171,-8262,8172,8221,-8217,8173,8261,-8219,8219,8220,-8127,8174,8262,-8220,8127,8220,-8222,8223,8128,-8223,8175,8263,-8177,8223,8264,-8176,8177,8265,-8179,8225,8226,-8131,8178,8265,-8226,8226,8262,-8175,8266,8179,-8219,8179,8267,-8210,8228,8227,-8133,8227,8268,-8181,8230,8133,-8233,8230,8269,-8182,8181,8269,-8230,8268,8231,-8181,8232,8182,-8271,8182,8231,-8272,8183,8234,-8234,8272,8184,-8230,8184,8273,-8186,8185,8235,-8140,8235,8236,-8141,8274,8186,-8237,8186,8275,-8235,8238,8141,-8238,8238,8276,-3798,8277,8187,-8189,8277,8237,-8188,8188,8233,-8279,8239,8279,-8190,8189,8228,-8192,8190,8202,-8240,8240,8280,-8193,8192,8241,-8195,8252,8240,-8194,8144,8241,-8243,8195,8281,-8197,8199,8196,-8282,8242,8282,-8196,8283,8197,-8200,8198,8197,-8285,8243,8244,-8147,8285,8200,-8245,8245,8200,-8286,8201,8245,-8287,8198,8284,-8244,8149,8246,-8248,8246,8201,-8288,8239,8202,-8248,8250,8203,-8249,8206,8204,-8289,8205,8289,-8250,8249,8288,-8205,8250,8251,-8154,8205,8251,-8290,8206,8290,-8208,8207,8290,-8209,8208,8291,-8156,8291,8252,-8156,8267,8254,-8210,8210,8254,-8256,8211,8212,-8293,8253,8211,-8294,8255,\r\n8292,-8213,8253,8294,-8214,8256,8213,-8296,8214,8256,-8297,8248,8214,-8298,8257,8258,-8165,8259,8166,-8259,8259,8298,-8168,8299,8260,-8217,8300,8217,-8261,8261,8217,-8302,8221,8302,-8217,8218,8261,-8304,8304,8220,-8220,8262,8305,-8220,8306,8221,-8221,8175,8264,-8264,8226,8225,-8308,8308,8225,-8266,8226,8309,-8263,8267,8179,-8267,8266,8218,-8304,8228,8310,-8228,8227,8311,-8269,8230,8232,-8313,8230,8313,-8270,8272,8229,-8270,8231,8268,-8272,8182,8271,-8271,8270,8312,-8233,8233,8234,-8279,8272,8314,-8185,8314,8273,-8185,8185,8273,-8236,8315,8236,-8236,8274,8275,-8187,8315,8274,-8237,8278,8234,-8276,8238,8237,-8317,8238,8316,-8277,3797,8276,-3796,8317,8277,-8189,8318,8237,-8278,8188,8278,-8318,8239,8247,-8280,8189,8279,-8320,8189,8319,-8229,8280,8240,-8321,8192,8280,-8242,8252,8321,-8241,8322,8242,-8242,8282,8281,-8196,8283,8199,-8282,8242,8323,-8283,8283,8324,-8198,8284,8197,-8326,8243,8326,-8245,8244,8327,-8286,8245,8285,-8287,8286,8287,-8202,8328,8243,-8285,8329,8247,-8247,8246,8287,-8331,8250,8248,-8298,8288,8290,-8207,8289,8331,-8250,8288,8249,-8332,8250,8332,-8252,8333,8289,-8252,8208,8290,-8335,8208,8335,-8292,8321,8252,-8292,8267,8336,-8255,8254,8337,-8256,8211,8292,-8339,8211,8338,-8294,8253,8293,-8340,8337,8292,-8256,8253,8339,-8295,8294,8295,-8214,8296,8256,-8296,8296,8297,-8215,8257,8340,-8259,8259,8258,-8342,8342,8298,-8260,8260,8299,-8344,8302,8299,-8217,8344,8217,-8301,8300,8260,-8344,8301,8217,-8345,8301,8303,-8262,8302,8221,-8346,8304,8306,-8221,8304,8219,-8347,8347,8305,-8263,8305,8346,-8220,8306,8345,-8222,8225,8308,-8308,8226,8307,-8310,8347,8262,-8310,8267,8266,-8349,8266,8303,-8350,8228,8350,-8311,8310,8311,-8228,8311,8271,-8269,8351,8230,-8313,8230,8351,-8314,8272,8269,-8314,8352,8270,-8272,8270,8353,-8313,8354,8314,-8273,8355,8273,-8315,8273,8315,-8236,8275,8274,-8357,8357,8274,-8316,8278,8275,-8359,8318,8316,-8238,8359,8276,-8317,8276,3750,-3796,8317,8360,-8278,8318,8277,-8361,8358,8317,-8279,8361,8279,-8248,8362,8319,-8280,8319,8350,-8229,8320,8240,-8322,8320,8363,-8281,8280,8364,-8242,8322,8365,\r\n-8243,8322,8241,-8365,8282,8366,-8282,8366,8283,-8282,8323,8242,-8366,8366,8282,-8324,8324,8283,-8368,8197,8324,-8326,8325,8328,-8285,8326,8243,-8329,8326,8327,-8245,8285,8327,-8369,8285,8368,-8287,8286,8368,-8288,8329,8361,-8248,8330,8329,-8247,8330,8287,-8370,8250,8297,-8371,8288,8371,-8291,8372,8331,-8290,8331,8371,-8289,8373,8332,-8251,8333,8251,-8333,8333,8372,-8290,8334,8290,-8375,8334,8335,-8209,8291,8335,-8322,8348,8336,-8268,8375,8254,-8337,8254,8375,-8338,8337,8338,-8293,8338,8376,-8294,8293,8377,-8340,8294,8339,-8379,8294,8379,-8296,8295,8379,-8297,8370,8297,-8297,8340,8341,-8259,8341,8342,-8260,8342,8380,-8299,8381,8343,-8300,8302,8382,-8300,8343,8344,-8301,8301,8344,-8384,8303,8301,-8384,8345,8382,-8303,8304,8384,-8307,8304,8346,-8385,8347,8385,-8306,8305,8385,-8347,8306,8386,-8346,8308,8387,-8308,8387,8309,-8308,8347,8309,-8389,8349,8348,-8267,8349,8303,-8390,8390,8310,-8351,8310,8391,-8312,8392,8271,-8312,8351,8312,-8394,8313,8351,-8395,8272,8313,-8355,8353,8270,-8353,8352,8271,-8396,8393,8312,-8354,8355,8314,-8355,8355,8396,-8274,8396,8315,-8274,8356,8274,-8398,8356,8358,-8276,8274,8357,-8398,8396,8357,-8316,8318,8398,-8317,8276,8359,-8400,8398,8359,-8317,3750,8276,-8401,8317,8401,-8361,8360,8398,-8319,8358,8402,-8318,8361,8362,-8280,8319,8362,-8351,8320,8321,-8404,8320,8403,-8364,8363,8404,-8281,8280,8404,-8365,8322,8364,-8366,8283,8366,-8368,8323,8365,-8406,8366,8323,-8407,8324,8367,-8408,8324,8407,-8326,8325,8408,-8329,8326,8328,-8410,8327,8326,-8410,8368,8327,-8411,8369,8287,-8369,8411,8361,-8330,8330,8411,-8330,8330,8369,-8413,8250,8370,-8374,8371,8374,-8291,8372,8413,-8332,8331,8413,-8372,8333,8332,-8374,8372,8333,-8415,8334,8374,-8336,8403,8321,-8336,8375,8336,-8349,8415,8337,-8376,8337,8415,-8339,8376,8338,-8416,8376,8416,-8294,8377,8293,-8417,8339,8377,-8418,8339,8418,-8379,8294,8378,-8380,8370,8296,-8380,8340,8419,-8342,8342,8341,-8420,8419,8380,-8343,8298,8380,-8421,8381,8421,-8344,8382,8381,-8300,8343,8421,-8345,8421,8383,-8345,8303,8383,-8390,8345,8422,-8383,8384,8386,-8307,8346,8423,-8385,\r\n8385,8347,-8425,8385,8425,-8347,8386,8422,-8346,8387,8308,-8427,8309,8387,-8389,8347,8388,-8428,8349,8428,-8349,8389,8428,-8350,8429,8310,-8391,8362,8390,-8351,8310,8429,-8392,8392,8311,-8392,8392,8395,-8272,8393,8430,-8352,8430,8394,-8352,8313,8394,-8355,8353,8352,-8432,8432,8352,-8396,8393,8353,-8434,8355,8354,-8395,8396,8355,-8395,8356,8397,-8435,8435,8358,-8357,8436,8397,-8358,8396,8436,-8358,8399,8359,-8399,8276,8399,-8401,8400,3794,-3751,8402,8401,-8318,8437,8360,-8402,8360,8437,-8399,8402,8358,-8439,8361,8411,-8363,8403,8439,-8364,8363,8440,-8405,8364,8404,-8442,8365,8364,-8442,8367,8366,-8443,8405,8365,-8444,8444,8323,-8406,8323,8444,-8407,8442,8366,-8407,8367,8445,-8408,8407,8408,-8326,8446,8328,-8409,8446,8409,-8329,8409,8447,-8328,8447,8410,-8328,8410,8448,-8369,8369,8368,-8449,8411,8330,-8450,8412,8369,-8449,8450,8330,-8413,8378,8373,-8371,8371,8451,-8375,8372,8452,-8414,8371,8413,-8452,8373,8453,-8334,8414,8333,-8454,8414,8454,-8373,8403,8335,-8375,8455,8375,-8349,8455,8415,-8376,8376,8415,-8417,8377,8416,-8457,8456,8417,-8378,8339,8417,-8419,8418,8457,-8379,8370,8379,-8379,8419,8458,-8381,8459,8420,-8381,8381,8460,-8422,8381,8382,-8423,8421,8461,-8384,8383,8461,-8390,8423,8386,-8385,8346,8425,-8424,8427,8424,-8348,8424,8462,-8386,8425,8385,-8463,8463,8422,-8387,8455,8348,-8429,8389,8464,-8429,8429,8390,-8466,8466,8390,-8363,8429,8467,-8392,8392,8391,-8469,8432,8395,-8393,8393,8469,-8431,8430,8470,-8395,8432,8431,-8353,8431,8433,-8354,8469,8393,-8434,8396,8394,-8471,8471,8434,-8398,8434,8472,-8357,8435,8438,-8359,8435,8356,-8473,8473,8397,-8437,8436,8396,-8471,8474,8399,-8399,8474,8400,-8400,8400,3818,-3795,8402,8475,-8402,8437,8401,-8477,8477,8398,-8438,8402,8438,-8479,8466,8362,-8412,8403,8479,-8440,8440,8363,-8440,8441,8404,-8441,8365,8441,-8444,8480,8367,-8443,8405,8443,-8482,8444,8405,-8482,8444,8482,-8407,8483,8442,-8407,8480,8445,-8368,8445,8408,-8408,8484,8446,-8409,8485,8409,-8447,8447,8409,-8486,8486,8410,-8448,8448,8410,-8488,8449,8330,-8451,8449,8488,-8412,8412,8448,-8488,8412,8489,-8451,8457,\r\n8373,-8379,8403,8374,-8452,8372,8454,-8453,8452,8490,-8414,8490,8451,-8414,8491,8453,-8374,8453,8492,-8415,8493,8454,-8415,8456,8415,-8456,8456,8416,-8416,8456,8494,-8418,8495,8418,-8418,8457,8418,-8497,8459,8380,-8459,8420,8459,-8498,8463,8460,-8382,8498,8421,-8461,8381,8422,-8464,8461,8421,-8499,8461,8464,-8390,8423,8463,-8387,8499,8423,-8426,8424,8427,-8501,8424,8500,-8463,8501,8425,-8463,8428,8502,-8456,8428,8464,-8503,8466,8465,-8391,8429,8465,-8504,8467,8429,-8505,8468,8391,-8468,8392,8468,-8433,8505,8430,-8470,8430,8505,-8471,8506,8431,-8433,8431,8507,-8434,8508,8469,-8434,8509,8434,-8472,8473,8471,-8398,8434,8509,-8473,8435,8510,-8439,8511,8435,-8473,8436,8470,-8474,8474,8398,-8478,8474,3818,-8401,8402,8478,-8476,8475,8476,-8402,8476,8477,-8438,8478,8438,-8511,8466,8411,-8489,8451,8479,-8404,8479,8512,-8440,8440,8439,-8514,8513,8441,-8441,8441,8513,-8444,8483,8480,-8443,8481,8443,-8514,8481,8514,-8445,8444,8514,-8483,8406,8482,-8484,8480,8515,-8446,8408,8445,-8485,8485,8446,-8485,8516,8447,-8486,8486,8487,-8411,8516,8486,-8448,8517,8449,-8451,8449,8518,-8489,8489,8412,-8488,8450,8489,-8518,8491,8373,-8458,8454,8519,-8453,8452,8520,-8491,8451,8490,-8480,8453,8491,-8493,8493,8414,-8493,8493,8521,-8455,8522,8456,-8456,8522,8494,-8457,8495,8417,-8495,8496,8418,-8496,8457,8496,-8492,8497,8459,-8524,8463,8524,-8461,8460,8525,-8499,8464,8461,-8499,8423,8526,-8464,8526,8423,-8500,8425,8501,-8500,8427,8527,-8501,8501,8462,-8501,8528,8455,-8503,8502,8464,-8530,8466,8488,-8466,8503,8465,-8489,8503,8504,-8430,8467,8504,-8531,8530,8468,-8468,8531,8432,-8469,8505,8469,-8533,8505,8473,-8471,8506,8507,-8432,8533,8506,-8433,8508,8433,-8508,8508,8532,-8470,8509,8471,-8535,8535,8471,-8474,8509,8511,-8473,8510,8435,-8512,8474,8477,-8537,8474,8537,-3819,8478,8538,-8476,8476,8475,-8540,8536,8477,-8477,8510,8540,-8479,8541,8512,-8480,8512,8513,-8440,8483,8542,-8481,8543,8481,-8514,8481,8544,-8515,8482,8514,-8546,8482,8546,-8484,8515,8480,-8543,8515,8484,-8446,8484,8547,-8486,8516,8485,-8548,8486,8548,-8488,8516,8549,-8487,8518,8449,\r\n-8518,8503,8488,-8519,8489,8487,-8551,8551,8517,-8490,8552,8519,-8455,8519,8520,-8453,8541,8490,-8521,8541,8479,-8491,8491,8496,-8493,8493,8492,-8497,8521,8493,-8554,8521,8552,-8455,8522,8455,-8529,8522,8554,-8495,8494,8555,-8496,8556,8496,-8496,8526,8524,-8464,8524,8525,-8461,8525,8557,-8499,8464,8498,-8559,8526,8499,-8560,8501,8559,-8500,8501,8500,-8528,8528,8502,-8530,8529,8464,-8559,8560,8504,-8504,8530,8504,-8562,8468,8530,-8532,8533,8432,-8532,8535,8505,-8533,8535,8473,-8506,8506,8562,-8508,8533,8563,-8507,8508,8507,-8565,8565,8532,-8509,8534,8471,-8567,8509,8534,-8568,8535,8566,-8472,8509,8567,-8512,8510,8511,-8569,8474,8536,-8570,8537,8474,-8570,8537,3671,-3819,8538,8478,-8541,8538,8570,-8476,8475,8570,-8540,8536,8476,-8540,8510,8571,-8541,8512,8541,-8573,8513,8512,-8544,8546,8542,-8484,8481,8543,-8545,8544,8545,-8515,8545,8546,-8483,8515,8542,-8574,8515,8574,-8485,8484,8574,-8548,8516,8547,-8576,8576,8548,-8487,8548,8550,-8488,8575,8549,-8517,8576,8486,-8550,8518,8517,-8578,8560,8503,-8519,8489,8550,-8552,8551,8578,-8518,8579,8519,-8553,8519,8579,-8521,8541,8520,-8580,8493,8496,-8557,8493,8556,-8554,8580,8521,-8554,8521,8580,-8553,8528,8554,-8523,8494,8554,-8556,8556,8495,-8556,8526,8559,-8525,8524,8581,-8526,8525,8582,-8558,8558,8498,-8558,8583,8559,-8502,8583,8501,-8528,8529,8584,-8529,8558,8585,-8530,8586,8504,-8561,8561,8504,-8587,8530,8561,-8588,8588,8531,-8531,8589,8533,-8532,8590,8535,-8533,8562,8506,-8564,8564,8507,-8563,8589,8563,-8534,8565,8508,-8565,8590,8532,-8566,8534,8566,-8592,8592,8567,-8535,8535,8590,-8567,8568,8511,-8568,8568,8571,-8511,8536,8539,-8570,8593,8537,-8570,8537,3617,-3672,8538,8540,-8595,8538,8595,-8571,8570,8595,-8540,8596,8540,-8572,8572,8541,-8580,8512,8572,-8544,8546,8597,-8543,8544,8543,-8599,8599,8545,-8545,8545,8600,-8547,8542,8597,-8574,8573,8574,-8516,8574,8601,-8548,8601,8575,-8548,8576,8602,-8549,8548,8603,-8551,8575,8604,-8550,8576,8549,-8606,8577,8517,-8579,8577,8586,-8519,8560,8518,-8587,8606,8551,-8551,8578,8551,-8608,8608,8579,-8553,8609,8553,-8557,8580,8553,-8611,\r\n8608,8552,-8581,8584,8554,-8529,8555,8554,-8612,8612,8556,-8556,8559,8581,-8525,8581,8613,-8526,8525,8613,-8583,8614,8557,-8583,8615,8558,-8558,8616,8559,-8584,8583,8527,-8618,8529,8585,-8585,8558,8615,-8586,8561,8586,-8588,8530,8587,-8619,8588,8589,-8532,8588,8530,-8619,8563,8619,-8563,8564,8562,-8621,8621,8563,-8590,8565,8564,-8621,8590,8565,-8623,8591,8566,-8624,8592,8534,-8592,8624,8567,-8593,8590,8623,-8567,8568,8567,-8625,8568,8624,-8572,8595,8569,-8540,8593,8625,-8538,8626,8593,-8570,8625,3617,-8538,8627,8594,-8541,8538,8594,-8596,8596,8627,-8541,8596,8571,-8625,8572,8579,-8609,8572,8598,-8544,8600,8597,-8547,8544,8598,-8600,8599,8628,-8546,8600,8545,-8629,8629,8573,-8598,8630,8574,-8574,8601,8574,-8632,8601,8604,-8576,8602,8576,-8606,8602,8603,-8549,8606,8550,-8604,8604,8605,-8550,8577,8578,-8633,8577,8633,-8587,8606,8607,-8552,8607,8632,-8579,8553,8609,-8611,8612,8609,-8557,8634,8580,-8611,8608,8580,-8635,8554,8584,-8612,8555,8611,-8636,8635,8612,-8556,8559,8616,-8582,8616,8613,-8582,8636,8582,-8614,8557,8614,-8616,8636,8614,-8583,8616,8583,-8638,8637,8583,-8618,8584,8585,-8639,8615,8639,-8586,8640,8587,-8587,8641,8618,-8588,8588,8642,-8590,8618,8643,-8589,8621,8619,-8564,8620,8562,-8620,8589,8644,-8622,8645,8565,-8621,8645,8622,-8566,8622,8623,-8591,8591,8623,-8647,8592,8591,-8648,8624,8592,-8648,8595,8626,-8570,8593,8648,-8626,8649,8593,-8627,3506,3617,-8626,8627,8650,-8595,8595,8594,-8651,8651,8627,-8597,8624,8651,-8597,8572,8608,-8653,8598,8572,-8653,8600,8653,-8598,8654,8599,-8599,8628,8599,-8656,8628,8653,-8601,8629,8630,-8574,8597,8653,-8630,8630,8631,-8575,8601,8631,-8657,8601,8656,-8605,8657,8602,-8606,8603,8602,-8659,8659,8606,-8604,8604,8660,-8606,8633,8577,-8633,8640,8586,-8634,8607,8606,-8660,8607,8661,-8633,8662,8610,-8610,8609,8612,-8664,8610,8664,-8635,8634,8652,-8609,8584,8638,-8612,8635,8611,-8666,8635,8663,-8613,8616,8666,-8614,8636,8613,-8668,8614,8668,-8616,8614,8636,-8669,8616,8637,-8670,8617,8669,-8638,8639,8638,-8586,8615,8668,-8640,8640,8670,-8588,8618,8641,-8644,8671,8641,-8588,8588,\r\n8643,-8643,8644,8589,-8643,8621,8672,-8620,8620,8619,-8674,8644,8672,-8622,8645,8620,-8675,8645,8623,-8623,8646,8623,-8675,8647,8591,-8647,8647,8675,-8625,8595,8650,-8627,8676,8648,-8594,8648,8677,-8626,8649,8676,-8594,8649,8626,-8679,3506,8625,-8678,8679,8650,-8628,8680,8627,-8652,8675,8651,-8625,8598,8652,-8655,8654,8655,-8600,8681,8628,-8656,8682,8653,-8629,8629,8683,-8631,8653,8683,-8630,8630,8684,-8632,8656,8631,-8685,8604,8656,-8686,8657,8658,-8603,8657,8605,-8661,8659,8603,-8659,8604,8685,-8661,8686,8633,-8633,8640,8633,-8671,8687,8607,-8660,8607,8687,-8662,8661,8688,-8633,8662,8664,-8611,8662,8609,-8690,8689,8609,-8664,8664,8654,-8635,8634,8654,-8653,8665,8611,-8639,8665,8663,-8636,8666,8616,-8670,8613,8666,-8668,8667,8690,-8637,8691,8668,-8637,8669,8617,-8693,8693,8638,-8640,8668,8693,-8640,8670,8671,-8588,8694,8643,-8642,8695,8641,-8672,8694,8642,-8644,8644,8642,-8697,8673,8619,-8673,8697,8620,-8674,8644,8696,-8673,8697,8674,-8621,8645,8674,-8624,8646,8674,-8699,8699,8647,-8647,8647,8700,-8676,8650,8678,-8627,8676,8701,-8649,8702,8677,-8649,8703,8676,-8650,8703,8649,-8679,3506,8677,-3351,8650,8679,-8679,8679,8627,-8681,8651,8675,-8681,8704,8655,-8655,8681,8682,-8629,8655,8704,-8682,8682,8705,-8654,8684,8630,-8684,8705,8683,-8654,8656,8684,-8707,8706,8685,-8657,8658,8657,-8708,8708,8657,-8661,8687,8659,-8659,8685,8708,-8661,8686,8709,-8634,8688,8686,-8633,8709,8670,-8634,8710,8661,-8688,8661,8711,-8689,8662,8712,-8665,8662,8689,-8714,8713,8689,-8664,8704,8654,-8665,8693,8665,-8639,8665,8714,-8664,8669,8715,-8667,8666,8715,-8668,8667,8716,-8691,8690,8717,-8637,8691,8718,-8669,8691,8636,-8718,8669,8692,-8716,8693,8668,-8715,8670,8719,-8672,8694,8641,-8721,8695,8720,-8642,8695,8671,-8720,8721,8642,-8695,8721,8696,-8643,8673,8672,-8723,8697,8673,-8724,8724,8672,-8697,8697,8698,-8675,8698,8699,-8647,8647,8699,-8701,8725,8675,-8701,8726,8701,-8677,8648,8701,-8703,8702,8727,-8678,8726,8676,-8704,8703,8678,-8729,8727,3350,-8678,8679,8728,-8679,8679,8680,-8729,8729,8680,-8676,8681,8730,-8683,8704,8731,-8682,8682,8730,\r\n-8706,8684,8683,-8733,8733,8683,-8706,8684,8732,-8707,8708,8685,-8707,8708,8707,-8658,8658,8707,-8735,8687,8658,-8735,8686,8735,-8710,8688,8736,-8687,8709,8737,-8671,8710,8711,-8662,8710,8687,-8735,8736,8688,-8712,8662,8713,-8713,8664,8712,-8705,8663,8714,-8714,8693,8714,-8666,8716,8667,-8716,8716,8738,-8691,8717,8690,-8739,8717,8718,-8692,8718,8714,-8669,8715,8692,-8740,8737,8719,-8671,8721,8694,-8721,8740,8720,-8696,8741,8695,-8720,8721,8742,-8697,8724,8722,-8673,8723,8673,-8723,8697,8723,-8699,8696,8743,-8725,8699,8698,-8745,8699,8745,-8701,8725,8729,-8676,8725,8700,-8747,8726,8747,-8702,8701,8748,-8703,8702,8749,-8728,8703,8750,-8727,8728,8750,-8704,8727,3402,-3351,8680,8751,-8729,8751,8680,-8730,8752,8730,-8682,8731,8704,-8754,8752,8681,-8732,8730,8754,-8706,8732,8683,-8756,8733,8755,-8684,8733,8705,-8755,8706,8732,-8757,8708,8706,-8757,8757,8707,-8709,8758,8734,-8708,8735,8686,-8760,8737,8709,-8736,8736,8759,-8687,8710,8760,-8712,8710,8734,-8761,8736,8711,-8762,8762,8712,-8714,8753,8704,-8713,8713,8714,-8763,8716,8715,-8764,8716,8764,-8739,8717,8738,-8766,8766,8718,-8718,8767,8714,-8719,8715,8739,-8769,8769,8719,-8738,8742,8721,-8721,8770,8720,-8741,8741,8740,-8696,8769,8741,-8720,8696,8742,-8744,8724,8771,-8723,8771,8723,-8723,8772,8698,-8724,8698,8773,-8745,8745,8699,-8745,8700,8745,-8747,8725,8774,-8730,8725,8746,-8775,8747,8726,-8776,8701,8747,-8749,8749,8702,-8749,8776,8727,-8750,8775,8726,-8751,8751,8750,-8729,8727,3507,-3403,8751,8729,-8775,8752,8777,-8731,8778,8731,-8754,8752,8731,-8779,8777,8754,-8731,8779,8732,-8756,8733,8780,-8756,8733,8754,-8782,8779,8756,-8733,8782,8708,-8757,8757,8758,-8708,8708,8782,-8758,8758,8760,-8735,8735,8759,-8784,8784,8737,-8736,8736,8783,-8760,8760,8785,-8712,8785,8761,-8712,8736,8761,-8784,8753,8712,-8763,8767,8762,-8715,8715,8768,-8764,8764,8716,-8764,8764,8765,-8739,8717,8765,-8787,8766,8767,-8719,8766,8717,-8787,8769,8737,-8785,8742,8720,-8771,8770,8740,-8788,8741,8787,-8741,8788,8741,-8770,8742,8789,-8744,8724,8790,-8772,8772,8723,-8772,8773,8698,-8773,8773,8791,-8745,\r\n8792,8745,-8745,8746,8745,-8793,8774,8746,-8794,8747,8775,-8795,8747,8749,-8749,8776,3507,-8728,8776,8749,-8796,8796,8775,-8751,8751,8796,-8751,8797,8751,-8775,8752,8778,-8778,8798,8778,-8754,8777,8781,-8755,8755,8780,-8780,8780,8733,-8782,8779,8799,-8757,8782,8756,-8801,8757,8801,-8759,8757,8782,-8801,8758,8785,-8761,8802,8735,-8784,8735,8802,-8785,8803,8761,-8786,8783,8761,-8804,8753,8762,-8799,8767,8798,-8763,8804,8763,-8769,8805,8764,-8764,8764,8806,-8766,8807,8786,-8766,8808,8767,-8767,8766,8786,-8810,8769,8784,-8811,8811,8742,-8771,8812,8770,-8788,8741,8813,-8788,8788,8813,-8742,8810,8788,-8770,8742,8811,-8790,8790,8772,-8772,8791,8773,-8773,8792,8744,-8815,8746,8792,-8794,8774,8793,-8816,8816,8794,-8776,8817,8747,-8795,8747,8818,-8750,8776,8795,-3508,8795,8749,-8819,8796,8816,-8776,8751,8797,-8797,8797,8774,-8816,8777,8778,-8820,8798,8808,-8779,8820,8781,-8778,8780,8821,-8780,8780,8781,-8822,8799,8779,-8822,8800,8756,-8800,8757,8822,-8802,8785,8758,-8802,8757,8800,-8824,8802,8783,-8804,8810,8784,-8803,8803,8785,-8825,8808,8798,-8768,8804,8825,-8764,8806,8764,-8806,8805,8763,-8827,8807,8765,-8807,8807,8820,-8787,8809,8808,-8767,8786,8820,-8810,8811,8770,-8813,8812,8787,-8828,8813,8828,-8788,8788,8829,-8814,8810,8830,-8789,8791,8772,-8791,8831,8792,-8815,8793,8792,-8832,8815,8793,-8833,8816,8833,-8795,8818,8747,-8818,8833,8817,-8795,8797,8816,-8797,8834,8797,-8816,8819,8778,-8809,8777,8819,-8821,8835,8781,-8821,8821,8781,-8836,8799,8821,-8837,8823,8800,-8800,8823,8822,-8758,8785,8801,-8823,8837,8802,-8804,8810,8802,-8838,8824,8785,-8823,8838,8803,-8825,8825,8804,-8840,8825,8826,-8764,8806,8805,-8841,8841,8805,-8827,8840,8807,-8807,8835,8820,-8808,8819,8808,-8810,8820,8819,-8810,8828,8827,-8788,8813,8829,-8829,8830,8829,-8789,8837,8830,-8811,8831,8832,-8794,8815,8832,-8835,8833,8816,-8843,8797,8842,-8817,8834,8842,-8798,8821,8835,-8844,8821,8843,-8837,8836,8844,-8800,8823,8799,-8845,8823,8845,-8823,8837,8803,-8839,8824,8822,-8847,8838,8824,-8848,8841,8825,-8840,8825,8841,-8827,8841,8840,-8806,8840,8843,-8808,8843,\r\n8835,-8808,8837,8848,-8831,8833,8842,-8835,8849,8836,-8844,8836,8850,-8845,8823,8844,-8846,8822,8845,-8847,8837,8838,-8849,8847,8824,-8847,8841,8839,-8852,8841,8851,-8841,8849,8843,-8841,8849,8850,-8837,8850,8845,-8845,8845,8850,-8847,8847,8846,-8853,8851,8839,-8851,8840,8851,-8850,8851,8850,-8850,8850,8852,-8847,8852,8850,-8840,8853,8854,-8856,8853,8856,-8855,8854,8857,-8856,8858,8853,-8856,8856,8853,-8860,8856,8860,-8855,8861,8857,-8855,8862,8855,-8858,8853,8858,-8864,8858,8855,-8865,8853,8865,-8860,8856,8859,-8867,8866,8860,-8857,8854,8860,-8868,8861,8868,-8858,8854,8867,-8862,8855,8862,-8865,8857,8869,-8863,8858,8870,-8864,8865,8853,-8864,8871,8858,-8865,8865,8872,-8860,8859,8873,-8867,8866,8874,-8861,8867,8860,-8876,8868,8861,-8877,8857,8868,-8878,8861,8867,-8877,8862,8878,-8865,8869,8857,-8878,8869,8878,-8863,8879,8870,-8859,8870,8865,-8864,8858,8871,-8881,8871,8864,-8882,8872,8865,-4872,8859,8872,-8874,8873,8874,-8867,8874,8875,-8861,8867,8875,-8883,8876,8883,-8869,8877,8868,-8885,8885,8876,-8868,8886,8864,-8879,8877,8887,-8870,8869,8888,-8879,8889,8870,-8880,8858,8880,-8880,8890,8865,-8871,8871,8891,-8881,8886,8881,-8865,8891,8871,-8882,8865,8892,-4872,8893,8872,-4872,8872,8894,-8874,8874,8873,-8896,8874,8895,-8876,8896,8882,-8876,8867,8882,-8886,8897,8883,-8877,8883,8884,-8869,8884,8898,-8878,8876,8885,-8900,8886,8878,-8889,8877,8898,-8888,8887,8900,-8870,8869,8900,-8889,8870,8889,-8902,8879,8902,-8890,8903,8879,-8881,8892,8865,-8891,8901,8890,-8871,8904,8880,-8892,8886,8905,-8882,8891,8881,-8907,8892,8907,-4872,8894,8872,-8894,4870,8893,-4872,8894,4915,-8874,8908,8895,-8874,8875,8895,-8910,8899,8882,-8897,8896,8875,-8910,8885,8882,-8900,8897,8910,-8884,8911,8897,-8877,8883,8912,-8885,8884,8913,-8899,8876,8899,-8915,8915,8886,-8889,8887,8898,-8917,8900,8887,-8918,8918,8888,-8901,8903,8902,-8880,8889,8902,-8920,8904,8903,-8881,8907,8892,-8891,8890,8901,-8908,8891,8906,-8905,8905,8886,-8921,8905,8921,-8882,8881,8921,-8907,4915,8894,-8894,4915,8893,-4871,4915,8908,-8874,8895,8908,-8923,8923,8909,-8896,8899,8896,\r\n-8925,8925,8896,-8910,8897,8926,-8911,8910,8912,-8884,8927,8897,-8912,8911,8876,-8915,8912,8913,-8885,8928,8898,-8914,8899,8924,-8915,8886,8915,-8921,8915,8888,-8919,8898,8928,-8917,8916,8917,-8888,8917,7186,-8901,8918,8900,-7187,8929,8902,-8904,8930,8919,-8903,8931,8903,-8905,8906,8932,-8905,8920,8933,-8906,8933,8921,-8906,8921,8932,-8907,4915,4914,-8909,8922,8908,-4915,8922,8923,-8896,8909,8923,-8935,8935,8924,-8897,8896,8925,-8937,8925,8909,-8935,8926,8897,-8928,8937,8910,-8927,8910,8938,-8913,8911,8939,-8928,8924,8911,-8915,8938,8913,-8913,8928,8913,-8941,8920,8915,-8942,8918,7265,-8916,8942,8916,-8929,8917,8916,-8944,8917,7151,-7187,8918,7186,-7266,8929,8930,-8903,8903,8931,-8930,8904,8944,-8932,8904,8932,-8945,8933,8920,-8946,8921,8933,-8947,8921,8946,-8933,4942,8922,-4915,8923,8922,-8948,8934,8923,-8949,8949,8924,-8936,8896,8936,-8936,8936,8925,-8951,8934,8950,-8926,8927,8951,-8927,8937,8938,-8911,8937,8926,-8952,8952,8939,-8912,8939,8953,-8928,8924,8952,-8912,8913,8938,-8941,8928,8940,-8955,7265,8941,-8916,8920,8941,-8956,8942,8956,-8917,8928,8957,-8943,8956,8943,-8917,8943,7151,-8918,8929,8958,-8931,8931,8959,-8930,8944,8960,-8932,8944,8932,-8962,8945,8920,-8956,8933,8945,-8947,8962,8932,-8947,8922,4942,-8948,8963,8923,-8948,5040,8948,-8924,8964,8934,-8949,8924,8949,-8953,8935,8965,-8950,8936,8966,-8936,8967,8936,-8951,8950,8934,-8965,8968,8951,-8928,8937,8969,-8939,8970,8937,-8952,8971,8939,-8953,8971,8953,-8940,8968,8927,-8954,8969,8940,-8939,8954,8940,-8973,8928,8954,-8958,8973,8941,-7266,8974,8955,-8942,8956,8942,-7228,8975,8942,-8958,8943,8956,-7228,7151,8943,-7188,8958,8929,-8960,8976,8930,-8959,8977,8959,-8932,8944,8961,-8961,8977,8931,-8961,8932,8962,-8962,8955,8978,-8946,8945,8962,-8947,8947,4942,-4984,5040,8923,-8964,5019,8963,-8948,8979,8948,-5041,8979,8964,-8949,8980,8952,-8950,8965,8935,-8982,8980,8949,-8966,8966,8936,-8968,8981,8935,-8967,8982,8967,-8951,8964,8983,-8951,8984,8951,-8969,8970,8969,-8938,8985,8970,-8952,8952,8980,-8972,8986,8953,-8972,8987,8968,-8954,8972,8940,-8970,8954,8972,-8989,\r\n8954,8988,-8958,8941,8973,-8990,8974,8978,-8956,8941,8989,-8975,8942,8975,-7228,8990,8975,-8958,7187,8943,-7228,8991,8958,-8960,8976,8958,-8993,8993,8959,-8978,8994,8960,-8962,8960,8995,-8978,8996,8961,-8963,8945,8978,-8998,8945,8997,-8963,8947,4983,-5020,5019,5040,-8964,5040,5075,-8980,8964,8979,-8999,8999,8965,-8982,8980,8965,-9000,8966,8967,-9001,8981,8966,-9002,8982,9000,-8968,8982,8950,-8984,8983,8964,-9003,8984,8985,-8952,8968,9003,-8985,8970,9004,-8970,8985,9004,-8971,8971,8980,-8987,8986,9005,-8954,9006,8968,-8988,8953,9005,-8988,8969,9004,-8973,8972,9007,-8989,8957,8988,-9009,8978,8974,-9010,9010,7227,-8976,8975,8990,-9012,8957,9008,-8991,8958,8991,-8993,8991,8959,-8994,9012,8976,-8993,8993,8977,-9014,8960,8994,-8996,8994,8961,-9015,8995,9013,-8978,9014,8961,-8997,8996,8962,-8998,8997,8978,-9010,8998,8979,-5076,8964,8998,-9003,8999,8981,-9002,8986,8980,-9000,9000,9015,-8967,9015,9001,-8967,8983,9000,-8983,8983,9002,-9017,8985,8984,-9018,9006,9003,-8969,9003,9018,-8985,8985,9019,-9005,8986,9020,-9006,9006,8987,-9022,9005,9021,-8988,9022,8972,-9005,8972,9023,-9008,9024,8988,-9008,9024,9008,-8989,8974,9025,-9010,8975,9026,-9011,9027,9011,-8991,8975,9011,-9027,9027,8990,-9009,8992,8991,-9029,9029,8991,-8994,8992,9028,-9013,9013,9030,-8994,8995,8994,-9014,8994,9014,-9032,9014,8996,-9033,9033,8996,-8998,8997,9009,-9035,5075,9035,-8999,8998,9036,-9003,9001,9037,-9000,8986,8999,-9039,9039,9015,-9001,9015,9040,-9002,8983,9039,-9001,9016,9002,-9037,9016,9041,-8984,9017,8984,-9019,8985,9017,-9020,9042,9003,-9007,9043,9018,-9004,9019,9022,-9005,8986,9044,-9021,9020,9044,-9006,9006,9021,-9043,9045,9021,-9006,9023,8972,-9023,9023,9046,-9008,9024,9007,-9047,9024,9027,-9009,9009,9025,-9035,9047,9011,-9028,9011,9048,-9027,8991,9049,-9029,8991,9029,-9051,8993,9030,-9030,9051,9012,-9029,9013,9052,-9031,9053,9013,-8995,9031,9014,-9033,9054,8994,-9032,9033,9032,-8997,8997,9034,-9034,9035,5075,-5096,9035,9036,-8999,9040,9037,-9002,8999,9037,-9056,9038,8999,-9056,8986,9038,-9045,9056,9015,-9040,9057,9040,-9016,8983,9041,-9040,9058,\r\n9016,-9037,9016,9059,-9042,9060,9017,-9019,9061,9019,-9018,9042,9043,-9004,9043,9062,-9019,9019,9063,-9023,9005,9044,-9065,9045,9042,-9022,9045,9005,-9065,9023,9022,-9064,9065,9046,-9024,9024,9046,-9067,9024,9066,-9028,9067,9034,-9026,9068,9011,-9048,9047,9027,-9070,9011,9070,-9049,8991,9050,-9050,9071,9028,-9050,9072,9050,-9030,9073,9029,-9031,9071,9051,-9029,9052,9013,-9054,9030,9052,-9075,8994,9054,-9054,9075,9031,-9033,9075,9054,-9032,9033,9076,-9033,9067,9033,-9035,5095,9077,-9036,9035,9058,-9037,9040,9078,-9038,9056,9057,-9016,9039,9079,-9057,9040,9057,-9081,9039,9041,-9082,9058,9082,-9017,9059,9016,-9083,9041,9059,-9082,9060,9061,-9018,9060,9018,-9063,9061,9063,-9020,9083,9043,-9043,9062,9043,-9085,9042,9045,-9086,9064,9086,-9046,9065,9023,-9064,9087,9046,-9066,9088,9066,-9047,9066,9069,-9028,9011,9068,-9071,9068,9047,-9090,9089,9047,-9070,9090,9048,-9071,9050,9091,-9050,9049,9092,-9072,9093,9050,-9073,9072,9029,-9074,9073,9030,-9075,9071,9094,-9052,9095,9052,-9054,9074,9052,-9096,9053,9054,-9096,9075,9032,-9077,9054,9075,-9097,9033,9067,-9077,5095,5126,-9078,9077,9097,-9036,9035,9097,-9059,9040,9098,-9079,9056,9080,-9058,9099,9079,-9040,9079,9100,-9057,9101,9040,-9081,9099,9039,-9082,9058,9102,-9083,9059,9082,-9104,9059,9104,-9082,9060,9105,-9062,9106,9060,-9063,9107,9063,-9062,9083,9084,-9044,9042,9085,-9084,9108,9062,-9085,9085,9045,-9087,9064,9109,-9087,9063,9110,-9066,9088,9046,-9088,9111,9087,-9066,9066,9088,-9070,9112,9070,-9069,9112,9068,-9090,9089,9069,-9089,9070,9113,-9091,9093,9091,-9051,9049,9091,-9093,9071,9092,-9095,9072,9114,-9094,9073,9115,-9073,9073,9074,-9117,9116,9074,-9096,9117,9095,-9055,9096,9117,-9055,9118,9077,-5127,9118,9097,-9078,9058,9097,-9103,9119,9098,-9041,9080,9056,-9121,9079,9099,-9122,9079,9122,-9101,9100,9120,-9057,9040,9101,-9120,9120,9101,-9081,9081,9121,-9100,9082,9102,-9124,9123,9103,-9083,9059,9103,-9105,9104,9121,-9082,9105,9060,-9107,9105,9124,-9062,9062,9125,-9107,9110,9063,-9108,9107,9061,-9125,9084,9083,-9127,9127,9083,-9086,9125,9062,-9109,9108,9084,-9127,9085,9086,\r\n-9129,9109,9128,-9087,9129,9065,-9111,9111,9088,-9088,9129,9111,-9066,9130,9070,-9113,9112,9089,-9132,9088,9131,-9090,9070,9130,-9114,9132,9090,-9114,9133,9091,-9094,9091,9134,-9093,9135,9094,-9093,9072,9136,-9115,9093,9114,-9134,9073,9116,-9116,9072,9115,-9137,9116,9095,-9118,9117,9096,-9138,9118,5126,-5143,9138,9097,-9119,9138,9102,-9098,9098,9119,-9140,9122,9079,-9122,9122,9140,-9101,9139,9120,-9101,9119,9101,-9140,9101,9120,-9140,9138,9123,-9103,9123,9141,-9104,9142,9104,-9104,9104,9143,-9122,9144,9105,-9107,9105,9145,-9125,9144,9106,-9126,9107,9146,-9111,9145,9107,-9125,9126,9083,-9148,9127,9148,-9084,9128,9127,-9086,9108,9126,-9148,9129,9110,-9150,9088,9111,-9151,9111,9129,-9152,9112,9152,-9131,9112,9131,-9153,9153,9131,-9089,9132,9113,-9131,9154,9090,-9133,9091,9133,-9135,9092,9134,-9156,9092,9155,-9136,9156,9114,-9137,9114,9157,-9134,9116,9158,-9116,9115,9159,-9137,9117,9158,-9117,9137,9096,-9161,9158,9117,-9138,5142,9161,-9119,9118,9161,-9139,9122,9121,-9163,9140,9122,-9164,9100,9140,-9140,9138,9164,-9124,9164,9141,-9124,9142,9103,-9142,9142,9143,-9105,9162,9121,-9144,9105,9144,-9146,9107,9145,-9147,9146,9165,-9111,9147,9083,-9167,9148,9127,-9168,9168,9083,-9149,9147,9169,-9109,9110,9170,-9150,9129,9149,-9152,9111,9151,-9151,9088,9150,-9154,9171,9130,-9153,9131,9172,-9153,9131,9153,-9173,9132,9130,-9172,9090,9154,-9174,9132,9174,-9155,9133,9175,-9135,9155,9134,-9177,9177,9135,-9156,9114,9156,-9179,9156,9136,-9160,9114,9178,-9158,9179,9133,-9158,9115,9158,-9160,9160,9180,-9138,9181,9158,-9138,9182,9161,-5143,9183,9138,-9162,9163,9122,-9163,9140,9163,-9185,9183,9164,-9139,9164,9185,-9142,9142,9141,-9187,9143,9142,-9187,9187,9162,-9144,9188,9145,-9145,9145,9165,-9147,9110,9165,-9171,9166,9083,-9169,9169,9147,-9167,9168,9148,-9168,9149,9170,-9190,9149,9190,-9152,9151,9191,-9151,9191,9153,-9151,9171,9152,-9173,9192,9172,-9154,9132,9171,-9175,9173,9154,-9194,9194,9154,-9175,9133,9179,-9176,9175,9176,-9135,9195,9155,-9177,9195,9177,-9156,9156,9196,-9179,9156,9159,-9198,9198,9157,-9179,9179,9157,-9199,9181,9159,-9159,\r\n9180,9160,-9200,9181,9137,-9181,9182,9200,-9162,9182,5142,-5160,9183,9161,-9201,9163,9162,-9202,9184,9163,-9203,9183,9200,-9165,9185,9164,-9204,9185,9186,-9142,9204,9143,-9187,9187,9205,-9163,9143,9204,-9188,9145,9188,-9207,9145,9206,-9166,9207,9170,-9166,9208,9166,-9169,9169,9166,-9209,9208,9168,-9168,9170,9209,-9190,9149,9189,-9191,9151,9190,-9192,9191,9210,-9154,9171,9172,-9212,9192,9211,-9173,9192,9153,-9211,9171,9211,-9175,9212,9193,-9155,9213,9173,-9194,9212,9154,-9195,9194,9174,-9215,9215,9175,-9180,9216,9176,-9176,9217,9195,-9177,9218,9177,-9196,9156,9197,-9197,9196,9219,-9179,9197,9159,-9182,9198,9178,-9220,9198,9220,-9180,9199,9221,-9181,9180,9197,-9182,9182,9222,-9201,5159,9222,-9183,9201,9162,-9206,9163,9201,-9224,9202,9163,-9224,9164,9200,-9204,9224,9185,-9204,9224,9186,-9186,9225,9204,-9187,9205,9187,-9227,9187,9204,-9226,9209,9170,-9208,9227,9189,-9210,9227,9190,-9190,9190,9228,-9192,9229,9210,-9192,9214,9211,-9193,9192,9210,-9231,9214,9174,-9212,9212,9231,-9194,9232,9173,-9214,9233,9213,-9194,9212,9194,-9235,9234,9194,-9215,9216,9175,-9216,9179,9235,-9216,9216,9217,-9177,9236,9195,-9218,9236,9218,-9196,9197,9180,-9197,9237,9219,-9197,9238,9198,-9220,9198,9238,-9221,9179,9220,-9236,9221,9199,-9240,9240,9180,-9222,9222,9241,-9201,9222,5159,-5158,9205,9242,-9202,9201,9242,-9224,9243,9202,-9224,9244,9203,-9201,9245,9224,-9204,9224,9225,-9187,9187,9246,-9227,9226,9242,-9206,9187,9225,-9247,9209,9207,-9248,9248,9227,-9210,9190,9227,-9250,9228,9190,-9250,9191,9228,-9251,9210,9229,-9252,9229,9191,-9251,9192,9230,-9215,9230,9210,-9252,9252,9231,-9213,9231,9253,-9194,9254,9232,-9214,9233,9254,-9214,9253,9233,-9194,9255,9212,-9235,9234,9214,-9231,9256,9216,-9216,9235,9257,-9216,9217,9216,-9259,9236,9217,-9260,9237,9196,-9181,9260,9219,-9238,9260,9238,-9220,9261,9220,-9239,9261,9235,-9221,9221,9239,-9263,9180,9240,-9238,9221,9263,-9241,9222,9264,-9242,9241,9244,-9201,5157,9264,-9223,9265,9223,-9243,9243,9266,-9203,9243,9223,-9266,9244,9245,-9204,9245,9267,-9225,9224,9267,-9226,9246,9268,-9227,9226,9269,-9243,9267,\r\n9246,-9226,9270,9209,-9248,9248,9249,-9228,9209,9271,-9249,9228,9249,-9273,9228,9272,-9251,9273,9251,-9230,9229,9250,-9275,9230,9251,-9256,9231,9252,-9276,9252,9212,-9256,9231,9275,-9254,9276,9232,-9255,9277,9254,-9234,9233,9253,-9279,9255,9234,-9231,9256,9258,-9217,9215,9279,-9257,9235,9280,-9258,9279,9215,-9258,9217,9258,-9260,9281,9236,-9260,9237,9282,-9261,9261,9238,-9261,9235,9261,-9281,9221,9262,-9264,9237,9240,-9283,9263,9283,-9241,9264,9284,-9242,9241,9284,-9245,5157,5158,-9265,9242,9269,-9266,9266,9243,-9286,9243,9265,-9287,9244,9287,-9246,9245,9288,-9268,9289,9268,-9247,9268,9290,-9227,9290,9269,-9227,9267,9288,-9247,9209,9270,-9272,9248,9291,-9250,9271,9292,-9249,9293,9272,-9250,9294,9250,-9273,9273,9255,-9252,9229,9295,-9274,9274,9250,-9295,9229,9274,-9296,9296,9275,-9253,9255,9273,-9253,9297,9253,-9276,9276,9254,-9299,9277,9298,-9255,9278,9277,-9234,9278,9253,-9300,9300,9258,-9257,9300,9256,-9280,9257,9280,-9302,9302,9279,-9258,9303,9259,-9259,9259,9304,-9282,9260,9282,-9302,9260,9280,-9262,9305,9263,-9263,9306,9282,-9241,9263,9307,-9284,9240,9283,-9309,9264,9309,-9285,9244,9284,-9311,9309,9264,-5159,9265,9269,-9312,9243,9286,-9286,9266,9285,-9313,9265,9311,-9287,9244,9310,-9288,9288,9245,-9288,9290,9268,-9290,9246,9288,-9290,9269,9290,-9314,9271,9270,-9293,9314,9291,-9249,9293,9249,-9292,9248,9292,-9315,9293,9315,-9273,9294,9272,-9317,9296,9273,-9296,9274,9294,-9318,9318,9295,-9275,9296,9319,-9276,9296,9252,-9274,9299,9253,-9298,9297,9275,-9320,9320,9276,-9299,9277,9321,-9299,9322,9277,-9279,9278,9299,-9324,9258,9300,-9325,9279,9302,-9301,9260,9301,-9281,9301,9325,-9258,9257,9325,-9303,9303,9326,-9260,9303,9258,-9325,9259,9326,-9305,9304,9327,-9282,9328,9301,-9283,9305,9329,-9264,9282,9306,-9329,9240,9308,-9307,9307,9263,-9330,9307,9330,-9284,9283,9331,-9309,9284,9309,-9333,9284,9333,-9311,5158,5161,-9310,9311,9269,-9314,9285,9286,-9335,9312,9285,-9336,9334,9286,-9312,9287,9310,-9337,9288,9287,-9337,9290,9289,-9338,9338,9289,-9289,9290,1088,-9314,9270,9339,-9293,9340,9291,-9315,9340,9293,-9292,9341,9314,\r\n-9293,9342,9315,-9294,9315,9343,-9273,9316,9272,-9344,9294,9316,-9318,9318,9296,-9296,9274,9317,-9345,9318,9274,-9345,9296,9318,-9320,9299,9297,-9320,9298,9321,-9321,9277,9345,-9322,9322,9346,-9278,9322,9278,-9348,9348,9323,-9300,9278,9323,-9348,9300,9349,-9325,9302,9350,-9301,9301,9328,-9326,9325,9351,-9303,9303,9352,-9327,9303,9324,-9353,9304,9326,-9354,9354,9327,-9305,9355,9328,-9307,9306,9308,-9356,9307,9329,-9331,9330,9356,-9284,9283,9356,-9332,9308,9331,-9358,9358,9332,-9310,9284,9332,-9334,9359,9310,-9334,9360,9309,-5162,1088,9311,-9314,9285,9334,-9362,9361,9335,-9286,9311,9362,-9335,9359,9336,-9311,9336,9363,-9289,9338,9337,-9290,1039,9290,-9338,9338,9288,-9364,1039,1088,-9291,9341,9292,-9340,9314,9364,-9341,9340,9342,-9294,9341,9364,-9315,9315,9342,-9366,9343,9315,-9367,9316,9343,-9368,9316,9367,-9318,9344,9317,-9369,9318,9344,-9349,9319,9318,-9349,9319,9348,-9300,9320,9321,-9370,9277,9370,-9346,9345,9369,-9322,9322,9371,-9347,9277,9346,-9371,9372,9322,-9348,9348,9344,-9324,9323,9368,-9348,9300,9350,-9350,9324,9349,-9353,9373,9350,-9303,9325,9328,-9375,9351,9325,-9375,9302,9351,-9374,9352,9375,-9327,9326,9375,-9354,9354,9304,-9354,9376,9327,-9355,9328,9355,-9375,9308,9357,-9356,9377,9356,-9331,9378,9331,-9357,9331,9379,-9358,9358,9380,-9333,9360,9358,-9310,9332,9380,-9334,9380,9359,-9334,5172,9360,-5162,9311,1088,-1152,9381,9361,-9335,9381,9335,-9362,9362,9311,-1152,9334,9362,-9382,9359,9382,-9337,9363,9336,-9384,987,9337,-9339,9337,987,-1040,9384,9338,-9364,9364,9385,-9341,9386,9342,-9341,9387,9365,-9343,9315,9365,-9367,9343,9366,-9389,9367,9343,-9390,9317,9367,-9391,9317,9390,-9369,9323,9344,-9369,9345,9370,-9392,9369,9345,-9393,9372,9371,-9323,9393,9346,-9372,9391,9370,-9347,9372,9347,-9395,9368,9394,-9348,9395,9349,-9351,9352,9349,-9397,9397,9350,-9374,9355,9351,-9375,9351,9398,-9374,9352,9396,-9376,9353,9375,-9400,9354,9353,-9377,9376,9400,-9328,9355,9357,-9402,9356,9377,-9403,9331,9378,-9380,9356,9402,-9379,9403,9357,-9380,9380,9358,-9405,9358,9360,-5173,9380,9405,-9360,9406,9335,-9382,9362,1151,-1174,\r\n9362,1173,-9382,9359,9407,-9383,9383,9336,-9383,9363,9383,-9409,987,9338,-935,9338,9384,-935,9408,9384,-9364,9386,9340,-9386,9387,9342,-9387,9387,9409,-9366,9365,9410,-9367,9411,9388,-9367,9343,9388,-9390,9367,9389,-9391,9368,9390,-9395,9391,9392,-9346,9372,9412,-9372,9346,9393,-9414,9371,9414,-9394,9346,9413,-9392,9394,9415,-9373,9395,9396,-9350,9350,9397,-9396,9397,9373,-9399,9398,9351,-9356,9416,9375,-9397,9375,9416,-9400,9417,9353,-9400,9418,9376,-9354,9376,9419,-9401,9357,9403,-9402,9398,9355,-9402,9379,9378,-9421,9421,9378,-9403,9379,9422,-9404,9358,5172,-9405,9405,9380,-9405,9407,9359,-9406,9423,9406,-9382,9381,1173,-1192,722,9382,-9408,788,9383,-9383,9383,788,-9409,934,9384,-851,9384,9408,-789,9387,9424,-9410,9425,9365,-9410,9425,9410,-9366,9411,9366,-9411,9411,9426,-9389,9388,9427,-9390,9389,9415,-9391,9394,9390,-9416,9392,9391,-9429,9415,9412,-9373,9371,9412,-9430,9393,9430,-9414,9371,9429,-9415,9393,9414,-9432,9432,9391,-9414,9433,9396,-9396,9397,9434,-9396,9435,9397,-9399,9396,9433,-9417,9399,9416,-9418,9353,9417,-9419,9436,9376,-9419,9376,9436,-9420,9435,9401,-9404,9401,9435,-9399,9378,9437,-9421,9438,9379,-9421,9378,9421,-9438,9438,9422,-9380,9403,9422,-9436,5172,9439,-9405,9439,9405,-9405,689,9407,-9406,1191,9423,-9382,754,9382,-723,689,722,-9408,754,788,-9383,850,9384,-789,9409,9424,-9441,9425,9409,-9442,9442,9410,-9426,9411,9410,-9443,9426,9411,-9444,9426,9427,-9389,9427,9415,-9390,9432,9428,-9392,9415,9427,-9413,9412,9444,-9430,9393,9445,-9431,9413,9430,-9447,9429,9447,-9415,9431,9414,-9448,9445,9393,-9432,9432,9413,-9449,9434,9433,-9396,9397,9449,-9435,9435,9450,-9398,9433,9451,-9417,9416,9452,-9418,9417,9453,-9419,9454,9436,-9419,9436,9454,-9420,9455,9420,-9438,9438,9420,-9456,9438,9456,-9423,9422,9457,-9436,5172,9458,-9440,9405,9439,-690,9423,1191,-1208,9409,9440,-9460,9459,9441,-9410,9425,9441,-9443,9442,9443,-9412,9426,9443,-9461,9426,9444,-9428,9432,9461,-9429,9412,9427,-9445,9429,9444,-9448,9462,9430,-9446,9463,9446,-9431,9413,9446,-9449,9460,9431,-9448,9445,9431,-9465,9448,9465,-9433,9434,\r\n9449,-9434,9397,9450,-9450,9450,9435,-9458,9433,9466,-9452,9416,9451,-9468,9416,9467,-9453,9453,9417,-9453,9468,9418,-9454,9454,9418,-9469,9469,9438,-9456,9438,9469,-9457,9422,9456,-9458,9458,5172,-589,587,9439,-9459,689,9439,-588,9459,9440,-9471,9459,9471,-9442,9442,9441,-9473,9442,9472,-9444,9443,9473,-9461,9460,9444,-9427,9474,9461,-9433,9460,9447,-9445,9463,9430,-9463,9445,9464,-9463,9446,9463,-9476,9446,9475,-9449,9460,9464,-9432,9448,9475,-9466,9432,9465,-9475,9433,9449,-9477,9477,9449,-9451,9450,9457,-9479,9476,9466,-9434,9466,9467,-9452,9467,9479,-9453,9479,9453,-9453,9469,9480,-9457,9457,9456,-9481,587,9458,-589,9459,9470,-9482,9471,9459,-9482,9472,9441,-9472,9443,9472,-9474,9460,9473,-9465,9474,9482,-9462,9463,9462,-9484,9464,9484,-9463,9485,9475,-9464,9486,9465,-9476,9465,9487,-9475,9476,9449,-9489,9488,9449,-9478,9450,9478,-9478,9457,9480,-9479,9466,9476,-9490,9467,9466,-9491,9479,9467,-9492,9453,9479,-9493,9493,9480,-9470,9494,9481,-9471,9471,9481,-9496,9472,9471,-9497,9496,9473,-9473,9464,9473,-9485,9482,9474,-9498,9483,9462,-9499,9499,9463,-9484,9484,9498,-9463,9500,9475,-9486,9485,9463,-9500,9465,9486,-9488,9486,9475,-9501,9501,9474,-9488,9476,9488,-9490,9477,9502,-9489,9477,9478,-9503,9478,9480,-9503,9489,9490,-9467,9467,9490,-9492,9503,9479,-9492,9503,9492,-9480,9493,9504,-9481,9481,9494,-9506,9495,9481,-9506,9471,9495,-9497,9496,9484,-9474,9501,9497,-9475,9483,9498,-9507,9499,9483,-9508,9484,9508,-9499,9500,9485,-9510,9485,9499,-9510,9510,9487,-9487,9500,9511,-9487,9510,9501,-9488,9489,9488,-9513,9513,9488,-9503,9513,9502,-9481,9489,9514,-9491,9490,9515,-9492,9516,9503,-9492,9504,9493,-9518,9504,9513,-9481,9518,9505,-9495,9495,9505,-9520,9496,9495,-9509,9496,9508,-9485,9497,9501,-9521,9508,9506,-9499,9507,9483,-9507,9521,9499,-9508,9509,9511,-9501,9499,9522,-9510,9511,9510,-9487,9510,9523,-9502,9513,9512,-9489,9524,9489,-9513,9524,9514,-9490,9515,9490,-9515,9516,9491,-9516,9517,9493,-9526,9517,9513,-9505,9526,9505,-9519,9526,9519,-9506,9508,9495,-9520,9527,9520,-9502,9497,9520,-9529,9508,9519,-9507,\r\n9529,9507,-9507,9499,9521,-9523,9521,9507,-9531,9509,9531,-9512,9509,9522,-9533,9533,9510,-9512,9510,9534,-9524,9523,9527,-9502,9517,9512,-9514,9524,9512,-9536,9514,9524,-9537,9537,9515,-9515,9516,9515,-9538,9525,9493,-9539,9517,9525,-9536,9518,9539,-9527,9519,9526,-9530,9540,9520,-9528,9541,9528,-9521,9529,9506,-9520,9530,9507,-9530,9542,9522,-9522,9521,9530,-9544,9531,9509,-9533,9544,9511,-9532,9532,9522,-9546,9546,9510,-9534,9511,9547,-9534,9546,9534,-9511,9534,9527,-9524,9512,9517,-9536,9548,9524,-9536,9536,9524,-9549,9514,9536,-9538,9538,9549,-9526,9548,9535,-9526,9526,9539,-9551,9526,9550,-9530,9540,9541,-9521,9551,9540,-9528,9528,9541,-7881,9530,9529,-9551,9542,9545,-9523,9542,9521,-9544,9550,9543,-9531,9532,9552,-9532,9511,9544,-9548,9531,9553,-9545,9545,9554,-9533,9546,9533,-9556,9533,9547,-9556,9556,9534,-9547,9551,9527,-9535,9537,9536,-9549,9549,9557,-9526,9525,9558,-9549,9550,9539,-9560,9541,9540,-7881,8043,9540,-9552,9554,9545,-9543,9543,9560,-9543,9550,9559,-9544,9554,9552,-9533,9561,9531,-9553,9562,9547,-9545,9561,9553,-9532,9562,9544,-9554,9563,9546,-9556,9564,9555,-9548,9565,9534,-9557,9566,9556,-9547,9565,9551,-9535,9557,9549,-9568,9525,9557,-9559,9540,7960,-7881,9540,8043,-7961,8122,8043,-9552,9554,9542,-9561,9559,9560,-9544,9564,9547,-9563,9561,9568,-9554,9568,9562,-9554,9563,9566,-9547,9555,9564,-9564,9556,8215,-9566,9556,9566,-9570,9565,8122,-9552,9564,9562,-9571,9568,9570,-9563,9571,9566,-9564,9564,9572,-9564,9556,8257,-8216,8215,8122,-9566,9573,9569,-9567,9556,9569,-8258,9564,9570,-9575,9568,9575,-9571,9571,9573,-9567,9571,9563,-9577,9564,9574,-9573,9563,9572,-9577,8340,9569,-9574,8257,9569,-8341,9570,9577,-9575,9577,9570,-9576,9573,9571,-9579,9571,9576,-9580,9580,9572,-9575,9572,9579,-9577,8340,9573,-8420,9581,9574,-9578,9571,9579,-9579,9573,9578,-8420,9582,9572,-9581,9581,9580,-9575,9579,9572,-9584,9584,9578,-9580,8458,8419,-9579,9583,9572,-9583,9582,9580,-9586,9580,9581,-9586,9584,9579,-9584,9584,8458,-9579,9586,9583,-9583,9587,9582,-9586,9585,9581,-9589,9589,9584,-9584,9590,8458,-9585,9591,\r\n9583,-9587,9586,9582,-9588,9587,9585,-9589,9589,9590,-9585,9589,9583,-9592,9590,8459,-8459,9589,9592,-9591,9591,9592,-9590,9593,8459,-9591,9592,9594,-9591,8459,9593,-8524,9594,9593,-9591,9595,1621,-9597,1621,9595,-9598,1621,1663,-9597,9596,9598,-9596,9599,9597,-9596,1621,9597,-1594,1663,9600,-9597,9596,9601,-9599,9595,9598,-9603,9597,9599,-9604,9595,9604,-9600,1593,9597,-9604,9605,9600,-1664,9596,9600,-9602,9601,9606,-9599,9602,9598,-9608,9595,9602,-9605,9603,9599,-9609,9599,9604,-9610,1593,9603,-1579,9605,9610,-9601,9605,1663,-1678,9600,9610,-9602,9606,9601,-9611,9606,9607,-9599,9602,9607,-9612,9602,9612,-9605,9599,9609,-9609,9603,9608,-9614,9609,9604,-9615,9603,9613,-1579,9615,9610,-9606,1695,9605,-1678,9606,9610,-9617,9607,9606,-9618,9618,9611,-9608,9611,9612,-9603,9614,9604,-9613,9619,9608,-9610,9620,9613,-9609,9614,9621,-9610,1578,9613,-9623,9623,9610,-9616,1695,9615,-9606,9616,9610,-9624,9624,9606,-9617,9606,9624,-9618,9618,9607,-9618,9618,9625,-9612,9611,9626,-9613,9626,9614,-9613,9619,9620,-9609,9621,9619,-9610,9620,9622,-9614,9614,9627,-9622,9622,1564,-1579,9623,9615,-9629,9629,9615,-1696,9616,9623,-9631,9616,9631,-9625,9617,9624,-9633,9618,9617,-9634,9625,9618,-9634,9634,9611,-9626,9626,9611,-9635,9614,9626,-9628,9619,9635,-9621,9619,9621,-9636,9620,9636,-9623,9637,9621,-9628,9622,1524,-1565,9615,9638,-9629,9628,9630,-9624,9638,9615,-9630,9630,9639,-9617,9631,9616,-9640,9631,9632,-9625,9617,9632,-9634,9640,9625,-9634,9634,9625,-9642,9626,9634,-9643,9626,9643,-9628,9644,9620,-9636,9637,9635,-9622,9644,9636,-9621,9622,9636,-9646,9646,9637,-9628,1499,1524,-9623,9628,9638,-9648,9628,9648,-9631,9630,9648,-9640,9631,9639,-9650,9631,9649,-9633,9650,9633,-9633,9641,9625,-9641,9640,9633,-9651,9641,9642,-9635,9626,9642,-9644,9646,9627,-9644,9635,9651,-9645,9637,9651,-9636,9636,9644,-9653,9645,9636,-9654,9622,9645,-1500,9637,9646,-9655,9647,9638,-9656,9648,9628,-9648,9639,9648,-9657,9656,9649,-9640,9649,9657,-9633,9650,9632,-9658,9640,9658,-9642,9650,9659,-9641,9660,9642,-9642,9661,9643,-9643,9661,9646,-9644,9644,9651,\r\n-9663,9663,9651,-9638,9644,9662,-9653,9636,9652,-9654,9645,9653,-1481,1480,1499,-9646,9664,9654,-9647,9637,9654,-9664,9648,9647,-9656,9656,9648,-9666,9656,9666,-9650,9649,9666,-9658,9659,9650,-9658,9640,9667,-9659,9660,9641,-9659,9659,9667,-9641,9660,9668,-9643,9661,9642,-9670,9664,9646,-9662,9663,9662,-9652,9670,9652,-9663,9653,9652,-9672,9653,9672,-1481,9664,9673,-9655,9663,9654,-9675,9655,9665,-9649,9656,9665,-9676,9666,9656,-9676,9676,9657,-9667,9659,9657,-9677,9658,9667,-9678,9678,9660,-9659,9667,9659,-9680,9660,9678,-9669,9668,9669,-9643,9661,9669,-9681,9661,9681,-9665,9663,9674,-9663,9670,9671,-9653,9662,9682,-9671,9683,9653,-9672,9683,9672,-9654,1480,9672,-1456,9664,9684,-9674,9654,9673,-9686,9654,9685,-9675,9666,9675,-9687,9676,9666,-9687,9676,9687,-9660,9688,9677,-9668,9678,9658,-9678,9687,9679,-9660,9688,9667,-9680,9668,9678,-9681,9668,9680,-9670,9680,9681,-9662,9681,9684,-9665,9662,9674,-9690,9670,9683,-9672,9689,9682,-9663,9690,9670,-9683,9683,9691,-9673,9692,1455,-9673,9684,9693,-9674,9673,9694,-9686,9674,9685,-9696,9696,9676,-9687,9676,9696,-9688,9697,9677,-9689,9697,9678,-9678,9696,9679,-9688,9688,9679,-9699,9678,9699,-9681,9680,9700,-9682,9684,9681,-9701,9689,9674,-9702,9683,9670,-9691,9689,9702,-9683,9703,9690,-9683,9683,9690,-9692,9691,9692,-9673,9704,1455,-9693,9684,9705,-9694,9673,9693,-9695,9685,9694,-9707,9685,9707,-9696,9701,9674,-9696,9698,9697,-9689,9708,9678,-9698,9698,9679,-9697,9678,9708,-9700,9680,9699,-9701,9700,9705,-9685,9689,9701,-9703,9703,9682,-9703,9703,9709,-9691,9691,9690,-9710,9691,9704,-9693,1427,1455,-9705,9693,9705,-9711,9693,9710,-9695,9694,9710,-9707,9685,9706,-9708,9711,9695,-9708,9701,9695,-9712,9712,9697,-9699,9708,9697,-9713,9713,9699,-9709,9713,9700,-9700,9713,9705,-9701,9702,9701,-9715,9703,9702,-9716,9709,9703,-9717,9709,9717,-9692,9691,9717,-9705,9718,1427,-9705,9705,9719,-9711,9706,9710,-9721,9706,9720,-9708,9707,9721,-9712,9701,9711,-9715,9722,9708,-9713,9708,9723,-9714,9713,9724,-9706,9702,9714,-9726,9715,9702,-9726,9703,9715,-9717,9726,9709,-9717,9709,9726,-9718,\r\n9704,9717,-9728,1407,1427,-9719,9718,9704,-9728,9728,9719,-9706,9719,9720,-9711,9707,9720,-9722,9721,9729,-9712,9714,9711,-9730,9708,9722,-9724,9730,9713,-9724,9724,9713,-9731,9731,9705,-9725,9725,9714,-9730,9725,9716,-9716,9732,9726,-9717,9733,9717,-9727,9733,9727,-9718,1407,9718,-1382,9734,9718,-9728,9719,9728,-9736,9705,9731,-9729,9719,9736,-9721,9720,9737,-9722,9737,9729,-9722,9730,9723,-9723,9730,9738,-9725,9731,9724,-9739,9725,9729,-9740,9725,9740,-9717,9732,9741,-9727,9716,9740,-9733,9733,9726,-9742,9733,9734,-9728,9718,9734,-1382,9742,9735,-9729,9719,9735,-9737,9731,9742,-9729,9736,9743,-9721,9743,9737,-9721,9729,9737,-9745,9745,9730,-9723,9730,9746,-9739,9738,9747,-9732,9744,9739,-9730,9725,9739,-9741,9741,9732,-9749,9749,9732,-9741,9741,9750,-9734,9750,9734,-9734,9734,9751,-1382,9735,9742,-9753,9753,9736,-9736,9731,9747,-9743,9736,9753,-9744,9737,9743,-9745,9730,9745,-9747,9754,9738,-9747,9754,9747,-9739,9744,9755,-9740,9749,9740,-9740,9732,9756,-9749,9741,9748,-9758,9749,9756,-9733,9741,9757,-9751,9750,9758,-9735,9734,9758,-9752,1381,9751,-1338,9759,9752,-9743,9760,9735,-9753,9753,9735,-9761,9747,9759,-9743,9743,9753,-9762,9762,9744,-9744,9763,9747,-9755,9744,9762,-9756,9739,9755,-9765,9749,9739,-9765,9756,9765,-9749,9766,9757,-9749,9764,9756,-9750,9750,9757,-9768,9767,9758,-9751,9751,9758,-9769,9751,1308,-1338,9752,9759,-9770,9770,9760,-9753,9771,9753,-9761,9747,9763,-9760,9753,9772,-9762,9762,9743,-9762,9755,9762,-9774,9764,9755,-9775,9756,9775,-9766,9765,9766,-9749,9766,9776,-9758,9764,9777,-9757,9778,9767,-9758,9779,9758,-9768,9758,9779,-9769,9751,9768,-1309,9770,9752,-9770,9760,9770,-9781,9771,9772,-9754,9771,9760,-9782,9772,9782,-9762,9761,9773,-9763,9755,9773,-9784,9755,9783,-9775,9774,9777,-9765,9775,9756,-9778,9784,9765,-9776,9765,9785,-9767,9776,9766,-9786,9757,9776,-9779,9786,9767,-9779,9767,9786,-9780,9787,9768,-9780,1308,9768,-1284,9788,9770,-9770,9770,9789,-9781,9780,9781,-9761,9771,9790,-9773,9790,9771,-9782,9772,9791,-9783,9761,9782,-9774,9773,9792,-9784,9793,9774,-9784,9774,9794,-9778,9775,\r\n9777,-9796,9784,9796,-9766,9784,9775,-9796,9765,9797,-9786,9778,9776,-9786,9798,9786,-9779,9786,9787,-9780,1283,9768,-9788,9770,9788,-9800,9799,9789,-9771,9800,9780,-9790,9781,9780,-9802,9791,9772,-9791,9790,9781,-9803,9803,9782,-9792,9782,9792,-9774,9804,9783,-9793,9774,9793,-9795,9805,9793,-9784,9794,9795,-9778,9784,9806,-9797,9765,9796,-9798,9795,9806,-9785,9785,9797,-9808,9808,9778,-9786,9798,9809,-9787,9778,9808,-9799,9786,9809,-9788,1283,9787,-1255,9810,9799,-9789,9811,9789,-9800,9812,9780,-9801,9811,9800,-9790,9801,9780,-9813,9802,9781,-9802,9813,9791,-9791,9813,9790,-9803,9803,9792,-9783,9803,9791,-9814,9805,9783,-9805,9803,9804,-9793,9814,9794,-9794,9805,9815,-9794,9814,9795,-9795,9796,9806,-9817,9796,9817,-9798,9795,9818,-9807,9797,9817,-9808,9785,9807,-9809,9809,9798,-9820,9808,9820,-9799,1254,9787,-9810,9821,9799,-9811,9822,9811,-9800,9812,9800,-9824,9800,9811,-9825,9801,9812,-9826,9825,9802,-9802,9826,9813,-9803,9827,9803,-9814,9828,9805,-9805,9803,9827,-9805,9793,9829,-9815,9805,9830,-9816,9793,9815,-9830,9831,9795,-9815,9806,9832,-9817,9796,9816,-9818,9831,9818,-9796,9806,9818,-9833,9817,9833,-9808,9833,9808,-9808,9820,9819,-9799,9809,9819,-9835,9808,9835,-9821,9809,9836,-1255,9821,9822,-9800,9821,9810,-9838,9838,9811,-9823,9800,9824,-9824,9839,9812,-9824,9824,9811,-9839,9840,9825,-9813,9825,9841,-9803,9827,9813,-9827,9826,9802,-9843,9805,9828,-9831,9843,9828,-9805,9843,9804,-9828,9814,9829,-9832,9830,9844,-9816,9845,9829,-9816,9816,9832,-9847,9846,9817,-9817,9818,9831,-9848,9832,9818,-9848,9817,9848,-9834,9833,9835,-9809,9820,9849,-9820,9834,9819,-9851,9836,9809,-9835,9851,9820,-9836,1241,1254,-9837,9821,9852,-9823,9821,9837,-9853,9838,9822,-9854,9824,9854,-9824,9840,9812,-9840,9839,9823,-9855,9824,9838,-9856,9840,9841,-9826,9841,9842,-9803,9856,9827,-9827,9842,9857,-9827,9858,9830,-9829,9843,9859,-9829,9856,9843,-9828,9860,9831,-9830,9861,9844,-9831,9845,9815,-9845,9862,9829,-9846,9846,9832,-9864,9817,9846,-9849,9847,9831,-9861,9864,9832,-9848,9848,9865,-9834,9833,9866,-9836,9849,9820,-9852,9850,9819,\r\n-9850,9836,9834,-9851,9851,9835,-9868,1225,1241,-9837,9852,9853,-9823,9868,9852,-9838,9838,9853,-9856,9824,9869,-9855,9870,9840,-9840,9871,9839,-9855,9855,9869,-9825,9841,9840,-9873,9841,9873,-9843,9856,9826,-9858,9857,9842,-9875,9858,9861,-9831,9858,9828,-9860,9843,9856,-9860,9829,9862,-9861,9875,9844,-9862,9845,9844,-9877,9845,9876,-9863,9864,9863,-9833,9846,9863,-9878,9846,9877,-9849,9878,9847,-9861,9847,9879,-9865,9848,9877,-9866,9865,9866,-9834,9867,9835,-9867,9851,9880,-9850,9880,9850,-9850,9836,9850,-9882,9882,9851,-9868,9883,1225,-9837,9852,9884,-9854,9868,9884,-9853,9853,9885,-9856,9869,9886,-9855,9872,9840,-9871,9870,9839,-9888,9871,9887,-9840,9871,9854,-9887,9888,9869,-9856,9841,9872,-9874,9874,9842,-9874,9856,9857,-9890,9857,9874,-9891,9858,9891,-9862,9858,9859,-9893,9892,9859,-9857,9860,9862,-9894,9894,9844,-9876,9875,9861,-9892,9894,9876,-9845,9862,9876,-9896,9864,9879,-9864,9877,9863,-9897,9878,9879,-9848,9860,9897,-9879,9877,9898,-9866,9866,9865,-9900,9866,9899,-9868,9880,9851,-9901,9880,9881,-9851,9836,9881,-9884,9900,9851,-9883,9867,9901,-9883,9883,9902,-1226,9884,9885,-9854,9903,9884,-9869,9904,9855,-9886,9905,9886,-9870,9906,9872,-9871,9887,9907,-9871,9871,9908,-9888,9871,9886,-9910,9888,9905,-9870,9888,9855,-9905,9910,9873,-9873,9910,9874,-9874,9889,9857,-9891,9856,9889,-9893,9890,9874,-9912,9891,9858,-9893,9862,9912,-9894,9893,9897,-9861,9875,9913,-9895,9875,9891,-9915,9915,9876,-9895,9915,9895,-9877,9862,9895,-9913,9879,9916,-9864,9896,9863,-9918,9877,9896,-9899,9879,9878,-9917,9878,9897,-9919,9919,9865,-9899,9865,9919,-9900,9899,9901,-9868,9920,9880,-9901,9880,9883,-9882,9921,9900,-9883,9922,9882,-9902,9902,9883,-9924,1225,9902,-1195,9884,9924,-9886,9884,9903,-9925,9904,9885,-9926,9926,9886,-9906,9906,9910,-9873,9906,9870,-9908,9887,9927,-9908,9871,9909,-9909,9887,9908,-9928,9928,9909,-9887,9888,9929,-9906,9930,9888,-9905,9910,9911,-9875,9889,9890,-9932,9892,9889,-9915,9932,9890,-9912,9891,9892,-9915,9893,9912,-9934,9893,9934,-9898,9875,9914,-9914,9935,9894,-9914,9915,9894,-9936,9936,9895,-9916,\r\n9895,9937,-9913,9916,9917,-9864,9917,9938,-9897,9896,9939,-9899,9878,9918,-9917,9897,9940,-9919,9919,9898,-9940,9899,9919,-9942,9899,9941,-9902,9923,9880,-9921,9920,9900,-9943,9880,9923,-9884,9942,9900,-9922,9922,9921,-9883,9901,9943,-9923,9902,9923,-9945,1194,9902,-9946,9924,9925,-9886,9946,9924,-9904,9930,9904,-9926,9928,9886,-9927,9947,9926,-9906,9906,9948,-9911,9907,9948,-9907,9907,9927,-9950,9909,9950,-9909,9908,9950,-9928,9909,9928,-9952,9930,9929,-9889,9905,9929,-9948,9910,9948,-9912,9932,9931,-9891,9914,9889,-9932,9932,9911,-9953,9953,9933,-9913,9933,9934,-9894,9897,9934,-9955,9913,9914,-9956,9935,9913,-9956,9956,9915,-9936,9936,9937,-9896,9956,9936,-9916,9912,9937,-9954,9957,9917,-9917,9917,9958,-9939,9896,9938,-9940,9918,9957,-9917,9897,9954,-9941,9918,9940,-9958,9919,9939,-9960,9941,9919,-9960,9901,9941,-9961,9923,9920,-9962,9942,9962,-9921,9942,9921,-9964,9922,9964,-9922,9901,9960,-9944,9943,9965,-9923,9944,9923,-9962,9945,9902,-9945,1194,9945,-1159,9924,9966,-9926,9946,9966,-9925,9967,9930,-9926,9968,9928,-9927,9947,9969,-9927,9907,9949,-9949,9949,9927,-9971,9909,9951,-9951,9971,9927,-9951,9972,9951,-9929,9930,9973,-9930,9947,9929,-9970,9948,9974,-9912,9975,9931,-9933,9914,9931,-9956,9952,9911,-9975,9932,9952,-9977,9933,9953,-9978,9934,9933,-9979,9934,9978,-9955,9979,9935,-9956,9935,9979,-9957,9936,9980,-9938,9981,9936,-9957,9937,9982,-9954,9917,9957,-9959,9983,9938,-9959,9984,9939,-9939,9940,9954,-9986,9940,9986,-9958,9939,9987,-9960,9941,9959,-9989,9960,9941,-9990,9990,9961,-9921,9942,9963,-9963,9990,9920,-9963,9991,9963,-9922,9964,9922,-9966,9964,9991,-9922,9992,9943,-9961,9992,9965,-9944,9944,9961,-9994,9945,9944,-9995,1158,9945,-9995,9967,9925,-9967,9966,9946,-9996,9967,9973,-9931,9972,9928,-9969,9968,9926,-9970,9949,9996,-9949,9971,9970,-9928,9997,9949,-9971,9951,9998,-9951,9999,9971,-9951,9951,9972,-10001,9973,10001,-9930,10002,9969,-9930,9948,9996,-9975,9975,9955,-9932,9975,9932,-9977,9974,9996,-9953,9952,10003,-9977,9977,9953,-10005,9933,9977,-9979,9985,9954,-9979,9979,9955,-9976,10005,9956,-9980,\r\n9981,9980,-9937,9980,9982,-9938,9981,9956,-10006,10006,9953,-9983,9957,9986,-9959,9938,9983,-9985,9983,9958,-10008,9984,10008,-9940,9940,9985,-9987,10008,9987,-9940,9959,9987,-9989,9989,9941,-9989,10009,9960,-9990,9990,9993,-9962,9962,9963,-10011,9990,9962,-10011,10011,9963,-9992,9965,10012,-9965,9991,9964,-10013,10013,9992,-9961,9992,10014,-9966,9994,9944,-9994,1158,9994,-10016,10016,9967,-9967,10016,9966,-9996,10017,9973,-9968,9972,9968,-10019,9968,9969,-10020,9997,9996,-9950,9970,9971,-10021,9997,9970,-10022,10022,9998,-9952,9999,9950,-9999,9971,9999,-10021,10000,9972,-10024,10000,10022,-9952,10024,10001,-9974,10002,9929,-10002,9969,10002,-10020,9975,9976,-10026,9952,9996,-10027,9952,10026,-10004,10027,9976,-10004,10006,10004,-9954,10028,9977,-10005,10029,9978,-9978,9985,9978,-10030,10025,9979,-9976,10025,10005,-9980,9981,10030,-9981,9980,10030,-9983,10031,9981,-10006,10006,9982,-10033,10007,9958,-9987,9983,10033,-9985,9983,10007,-10034,10008,9984,-10034,9986,9985,-10035,9987,10008,-10036,9988,9987,-10037,9989,9988,-10037,10009,10013,-9961,10009,9989,-10038,9990,10038,-9994,10039,10010,-9964,9990,10010,-10039,10011,10040,-9964,10041,10011,-9992,9965,10042,-10013,10041,9991,-10013,10043,9992,-10014,10014,9992,-10045,9965,10014,-10043,9993,10015,-9995,1158,10015,-1114,10017,9967,-10017,9995,10045,-10017,10024,9973,-10018,9968,10019,-10019,10018,10023,-9973,9997,10046,-9997,10021,9970,-10021,9997,10021,-10048,10022,9999,-9999,9999,10048,-10021,10049,10000,-10024,10000,10050,-10023,10051,10001,-10025,10051,10002,-10002,10002,10052,-10020,10027,10025,-9977,10046,10026,-9997,10053,10003,-10027,10027,10003,-10055,10006,10055,-10005,10028,10029,-9978,10056,10028,-10005,9985,10029,-10035,10057,10005,-10026,10031,10030,-9982,10030,10032,-9983,10057,10031,-10006,10032,10058,-10007,10034,10007,-9987,10007,10059,-10034,10033,10035,-10009,9987,10035,-10037,10060,9989,-10037,10043,10013,-10010,10037,9989,-10061,10009,10037,-10062,9993,10038,-10016,10039,10038,-10011,10039,9963,-10041,10011,10062,-10041,10011,10041,-10063,10012,\r\n10042,-10064,10012,10063,-10042,10043,10044,-9993,10014,10044,-10043,10015,10064,-1114,10017,10016,-10046,10045,9995,-10066,10066,10024,-10018,10067,10018,-10020,10067,10023,-10019,10047,10046,-9998,10068,10021,-10021,10069,10047,-10022,10022,10048,-10000,10068,10020,-10049,10000,10049,-10071,10023,10071,-10050,10000,10070,-10051,10022,10050,-10049,10024,10072,-10052,10051,10073,-10003,10052,10002,-10074,10052,10074,-10020,10027,10057,-10026,10046,10053,-10027,10053,10054,-10004,10027,10054,-10076,10006,10058,-10056,10056,10004,-10056,10028,10076,-10030,10028,10056,-10077,10077,10034,-10030,10031,10078,-10031,10030,10079,-10033,10031,10057,-10079,10032,10080,-10059,10034,10081,-10008,10007,10081,-10060,10033,10059,-10083,10033,10082,-10036,10083,10036,-10036,10060,10036,-10084,10043,10009,-10062,10084,10037,-10061,10061,10037,-10086,10086,10015,-10039,10086,10038,-10040,10087,10039,-10041,10088,10040,-10063,10062,10041,-10090,10090,10063,-10043,10041,10063,-10090,10043,10091,-10045,10090,10042,-10045,10015,10086,-10065,1132,1113,-10065,10066,10017,-10046,10065,10092,-10046,10024,10066,-10073,10067,10019,-10075,10067,10093,-10024,10047,10094,-10047,10021,10068,-10070,10047,10069,-10096,10048,10050,-10069,10049,10096,-10071,10023,10097,-10072,10049,10071,-10099,10070,10099,-10051,10051,10072,-10074,10052,10073,-10101,10100,10074,-10053,10057,10027,-10076,10053,10046,-10095,10101,10054,-10054,10054,10102,-10076,10103,10055,-10059,10104,10056,-10056,10076,10077,-10030,10105,10076,-10057,10034,10077,-10082,10078,10079,-10031,10080,10032,-10080,10078,10057,-10107,10080,10107,-10059,10108,10059,-10082,10082,10059,-10109,10035,10082,-10110,10109,10083,-10036,10060,10083,-10111,10061,10091,-10044,10084,10085,-10038,10060,10111,-10085,10112,10061,-10086,10039,10087,-10087,10087,10040,-10089,10113,10088,-10063,10113,10062,-10090,10090,10114,-10064,10063,10114,-10090,10044,10091,-10116,10044,10116,-10091,10064,10086,-10088,1132,10064,-10118,10092,10066,-10046,10092,10065,-10119,10066,10092,-10073,10067,10074,-10094,10097,10023,\r\n-10094,10119,10094,-10048,10068,10099,-10070,10120,10095,-10070,10047,10095,-10120,10050,10099,-10069,10049,10098,-10097,10121,10070,-10097,10122,10071,-10098,10098,10071,-10123,10099,10070,-10122,10123,10073,-10073,10100,10073,-10124,10124,10074,-10101,10057,10075,-10107,10053,10094,-10120,10101,10102,-10055,10101,10053,-10120,10106,10075,-10103,10125,10055,-10104,10103,10058,-10108,10105,10056,-10105,10104,10055,-10126,10077,10076,-10082,10076,10105,-10127,10078,10106,-10080,10127,10080,-10080,10080,10128,-10108,10081,10129,-10109,10082,10108,-10131,10131,10109,-10083,10083,10109,-10111,10111,10060,-10111,10061,10112,-10092,10084,10132,-10086,10084,10111,-10134,10112,10085,-10135,10087,10088,-10136,10113,10136,-10089,10113,10089,-10138,10090,10138,-10115,10089,10114,-10140,10115,10091,-10113,10044,10115,-10117,10090,10116,-10141,10087,10117,-10065,1132,10117,-1158,10118,10141,-10093,10092,10142,-10073,10074,10143,-10094,10093,10144,-10098,10120,10069,-10100,10120,10145,-10096,10145,10119,-10096,10121,10096,-10099,10122,10097,-10147,10147,10098,-10123,10099,10121,-10149,10123,10072,-10143,10100,10123,-10150,10074,10124,-10144,10100,10149,-10125,10102,10101,-10151,10101,10119,-10152,10102,10152,-10107,10125,10103,-10154,10153,10103,-10108,10154,10105,-10105,10154,10104,-10126,10076,10129,-10082,10105,10154,-10127,10076,10126,-10130,10106,10155,-10080,10128,10080,-10128,10155,10127,-10080,10107,10128,-10157,10108,10129,-10158,10130,10108,-10158,10082,10130,-10132,10109,10131,-10159,10158,10110,-10110,10111,10110,-10160,10132,10084,-10134,10134,10085,-10133,10111,10160,-10134,10161,10112,-10135,10088,10136,-10136,10162,10087,-10136,10113,10137,-10137,10139,10137,-10090,10090,10140,-10139,10138,10163,-10115,10163,10139,-10115,10115,10112,-10162,10115,10164,-10117,10140,10116,-10165,10162,10117,-10088,10117,10165,-1158,10141,10142,-10093,10093,10143,-10145,10097,10144,-10147,10166,10120,-10100,10166,10145,-10121,10145,10167,-10120,10168,10121,-10099,10147,10122,-10147,10168,10098,-10148,10169,10148,-10122,10099,10148,\r\n-10167,10123,10142,-10171,10123,10170,-10150,10124,10171,-10144,10124,10149,-10171,10101,10151,-10151,10102,10150,-10153,10151,10119,-10168,10155,10106,-10153,10172,10125,-10154,10153,10107,-10157,10173,10154,-10126,10174,10126,-10155,10175,10129,-10127,10128,10127,-10177,10155,10176,-10128,10156,10128,-10178,10129,10175,-10158,10178,10130,-10158,10130,10179,-10132,10158,10131,-10181,10159,10110,-10159,10181,10111,-10160,10132,10133,-10183,10134,10132,-10184,10111,10181,-10161,10160,10184,-10134,10161,10134,-10184,10136,10185,-10136,10162,10135,-10187,10136,10137,-10186,10187,10137,-10140,10138,10140,-10165,10163,10138,-10189,10163,10189,-10140,10115,10161,-10191,10164,10115,-10191,10117,10162,-10192,10117,10191,-10166,10165,10192,-1158,10142,10141,-10194,10194,10144,-10144,10146,10144,-10196,10166,10196,-10146,10197,10167,-10146,10168,10169,-10122,10198,10147,-10147,10168,10147,-10200,10200,10148,-10170,10166,10148,-10202,10170,10142,-10203,10124,10170,-10172,10194,10143,-10172,10150,10151,-10204,10150,10204,-10153,10151,10167,-10204,10155,10152,-10206,10173,10125,-10173,10156,10172,-10154,10174,10154,-10174,10175,10126,-10175,10128,10176,-10207,10155,10205,-10177,10128,10207,-10178,10208,10156,-10178,10175,10209,-10158,10179,10130,-10179,10178,10157,-10210,10131,10179,-10181,10210,10158,-10181,10210,10159,-10159,10181,10159,-10211,10182,10133,-10212,10132,10182,-10184,10181,10212,-10161,10212,10184,-10161,10184,10211,-10134,10161,10183,-10191,10185,10186,-10136,10191,10162,-10187,10185,10137,-10188,10189,10187,-10140,10138,10164,-10214,10138,10213,-10189,10188,10214,-10164,10215,10189,-10164,10190,10213,-10165,10165,10191,-10217,10165,10217,-10193,1156,1157,-10193,10193,10141,-10219,10142,10193,-10203,10144,10194,-10196,10198,10146,-10196,10166,10201,-10197,10145,10196,-10198,10197,10203,-10168,10168,10219,-10170,10198,10199,-10148,10219,10168,-10200,10200,10220,-10149,10169,10219,-10201,10148,10220,-10202,10170,10202,-10172,10221,10194,-10172,10150,10203,-10223,10150,10222,-10205,10204,10205,-10153,10173,10172,\r\n-10209,10208,10172,-10157,10223,10174,-10174,10174,10223,-10176,10206,10176,-10225,10128,10206,-10208,10176,10205,-10225,10207,10225,-10178,10226,10208,-10178,10175,10227,-10210,10179,10178,-10229,10209,10229,-10179,10179,10230,-10181,10210,10180,-10232,10181,10210,-10213,10211,10232,-10183,10233,10183,-10183,10212,10234,-10185,10184,10235,-10212,10236,10190,-10184,10185,10191,-10187,10185,10187,-10238,10189,10237,-10188,10236,10188,-10214,10238,10214,-10189,10215,10163,-10215,10239,10189,-10216,10236,10213,-10191,10185,10216,-10192,10217,10165,-10217,10217,10240,-10193,10241,1156,-10193,10193,10218,-10243,10202,10193,-10244,10194,10244,-10196,10195,10245,-10199,10246,10196,-10202,10247,10197,-10197,10203,10197,-10249,10198,10249,-10200,10219,10199,-10250,10200,10250,-10221,10200,10219,-10251,10201,10220,-10247,10202,10243,-10172,10194,10221,-10245,10221,10171,-10244,10203,10248,-10223,10251,10204,-10223,10252,10205,-10205,10253,10173,-10209,10173,10253,-10224,10227,10175,-10224,10206,10224,-10255,10255,10207,-10207,10252,10224,-10206,10225,10207,-10257,10226,10177,-10226,10208,10226,-10258,10258,10209,-10228,10229,10228,-10179,10179,10228,-10231,10209,10258,-10230,10180,10230,-10260,10231,10180,-10260,10212,10210,-10232,10260,10232,-10212,10182,10232,-10262,10233,10236,-10184,10233,10182,-10262,10212,10262,-10235,10234,10235,-10185,10260,10211,-10236,10237,10263,-10186,10239,10237,-10190,10236,10238,-10189,10238,10264,-10215,10215,10214,-10265,10215,10265,-10240,10266,10216,-10186,10267,10217,-10217,10268,10240,-10218,10192,10240,-10242,1156,10241,-1160,10242,10243,-10194,10244,10245,-10196,10245,10249,-10199,10196,10246,-10270,10247,10248,-10198,10196,10269,-10248,10219,10249,-10271,10250,10271,-10221,10219,10270,-10251,10220,10272,-10247,10221,10273,-10245,10221,10243,-10274,10251,10222,-10249,10251,10274,-10205,10275,10252,-10205,10208,10257,-10254,10276,10223,-10254,10223,10277,-10228,10278,10254,-10225,10255,10206,-10255,10256,10207,-10256,10278,10224,-10253,10279,10225,-10257,10225,10280,-10227,10226,10281,\r\n-10258,10258,10227,-10278,10229,10282,-10229,10228,10283,-10231,10284,10229,-10259,10259,10230,-10286,10259,10286,-10232,10212,10231,-10263,10232,10260,-10288,10288,10261,-10233,10236,10233,-10239,10233,10261,-10290,10262,10290,-10235,10290,10235,-10235,10291,10260,-10236,10237,10239,-10264,10263,10266,-10186,10238,10292,-10265,10215,10264,-10266,10239,10265,-10294,10267,10216,-10267,10217,10267,-10295,10295,10240,-10269,10217,10294,-10269,10295,10241,-10241,10241,1096,-1160,10243,10242,-10297,10244,10297,-10246,10245,10298,-10250,10246,10299,-10270,10300,10248,-10248,10247,10269,-10302,10249,10302,-10271,10250,10303,-10272,10220,10271,-10273,10302,10250,-10271,10304,10246,-10273,10273,10297,-10245,10296,10273,-10244,10251,10248,-10301,10305,10274,-10252,10204,10274,-10276,10275,10278,-10253,10257,10276,-10254,10223,10276,-10278,10306,10254,-10279,10256,10255,-10255,10225,10279,-10308,10256,10308,-10280,10307,10280,-10226,10280,10281,-10227,10257,10281,-10310,10277,10310,-10259,10229,10284,-10283,10228,10282,-10284,10283,10285,-10231,10311,10284,-10259,10259,10285,-10287,10231,10286,-10263,10312,10287,-10261,10232,10287,-10289,10288,10313,-10262,10314,10238,-10234,10289,10261,-10314,10233,10289,-10315,10262,10315,-10291,10290,10291,-10236,10291,10312,-10261,10239,10316,-10264,10266,10263,-10318,10318,10292,-10239,10265,10264,-10293,10293,10265,-10320,10239,10293,-10317,10320,10267,-10267,10294,10267,-10322,10295,10268,-10323,10268,10294,-10324,10241,10295,-1097,10245,10297,-10299,10249,10298,-10303,10304,10299,-10247,10299,10301,-10270,10247,10301,-10301,10303,10250,-10303,10271,10303,-10325,10271,10324,-10273,10272,10325,-10305,10326,10297,-10274,10300,10305,-10252,10305,10327,-10275,10275,10274,-10329,10278,10275,-10329,10257,10329,-10277,10276,10310,-10278,10254,10306,-10331,10306,10278,-10329,10254,10331,-10257,10279,10332,-10308,10256,10333,-10309,10308,10334,-10280,10335,10280,-10308,10335,10281,-10281,10281,10336,-10310,10329,10257,-10310,10311,10258,-10311,10282,10284,-10338,10338,10283,-10283,10283,10339,\r\n-10286,10284,10311,-10341,10286,10285,-10342,10286,10342,-10263,10343,10287,-10313,10344,10288,-10288,10288,10345,-10314,10314,10318,-10239,10314,10289,-10314,10342,10315,-10263,10315,10346,-10291,10290,10347,-10292,10312,10291,-10349,10316,10317,-10264,10317,10320,-10267,10318,10349,-10293,10319,10265,-10293,10350,10293,-10320,10293,10351,-10317,10267,10320,-10322,10352,10294,-10322,10322,10268,-10354,1050,10295,-10323,10352,10323,-10295,10323,10353,-10269,10295,1097,-1097,10297,10354,-10299,10355,10302,-10299,10304,10356,-10300,10301,10299,-10358,10300,10301,-10358,10303,10302,-10356,10358,10324,-10304,10272,10324,-10326,10359,10304,-10326,10297,10326,-10355,10300,10360,-10306,10327,10305,-10362,10274,10327,-10363,10274,10363,-10329,10276,10329,-10311,10364,10330,-10307,10254,10330,-10332,10364,10306,-10329,10333,10256,-10332,10279,10365,-10333,10307,10332,-10336,10366,10308,-10334,10334,10308,-10367,10367,10279,-10335,10281,10335,-10337,10368,10309,-10337,10368,10329,-10310,10369,10311,-10311,10284,10340,-10338,10282,10337,-10371,10339,10283,-10339,10338,10282,-10371,10339,10371,-10286,10340,10311,-10373,10371,10341,-10286,10342,10286,-10342,10343,10373,-10288,10343,10312,-10349,10288,10344,-10375,10373,10344,-10288,10288,10374,-10346,10375,10313,-10346,10376,10318,-10315,10314,10313,-10376,10342,10346,-10316,10346,10347,-10291,10291,10347,-10349,10316,10351,-10318,10320,10317,-10322,10318,10376,-10350,10292,10349,-10378,10319,10292,-10379,10379,10293,-10351,10350,10319,-10381,10293,10379,-10352,10381,10352,-10322,10382,10322,-10354,10295,1050,-1098,10322,1021,-1051,10352,10383,-10324,10323,10383,-10354,10355,10298,-10355,10356,10304,-10385,10356,10357,-10300,10300,10357,-10361,10358,10303,-10356,10324,10358,-10386,10325,10324,-10386,10359,10384,-10305,10386,10359,-10326,10326,10387,-10355,10360,10388,-10306,10361,10305,-10389,10327,10361,-10390,10327,10389,-10363,10274,10362,-10364,10363,10390,-10329,10369,10310,-10330,10330,10364,-10392,10391,10331,-10331,10392,10364,-10329,10331,10393,-10334,10279,10394,-10366,\r\n10365,10395,-10333,10396,10335,-10333,10366,10333,-10398,10366,10398,-10335,10394,10279,-10368,10399,10367,-10335,10336,10335,-10401,10401,10368,-10337,10329,10368,-10403,10369,10402,-10312,10337,10340,-10404,10337,10403,-10371,10404,10339,-10339,10370,10405,-10339,10406,10371,-10340,10372,10311,-10408,10340,10372,-10404,10408,10341,-10372,10342,10341,-10410,10410,10373,-10344,10343,10348,-10410,10374,10344,-10412,10373,10412,-10345,10413,10345,-10375,10375,10345,-10415,10376,10314,-10376,10342,10409,-10347,10346,10348,-10348,10351,10381,-10318,10381,10321,-10318,10349,10376,-10416,10416,10377,-10350,10292,10377,-10379,10380,10319,-10379,10379,10350,-10418,10380,10417,-10351,10379,10381,-10352,10381,10418,-10353,10322,10382,-1022,10353,10419,-10383,10418,10383,-10353,10353,10383,-10420,10354,10420,-10356,10356,10384,-10422,10357,10356,-10422,10357,10421,-10361,10355,10422,-10359,10358,10423,-10386,10385,10386,-10326,10359,10424,-10385,10386,10425,-10360,10420,10354,-10388,10388,10360,-10422,10426,10361,-10389,10361,10426,-10390,10390,10362,-10390,10362,10390,-10364,10390,10427,-10329,10369,10329,-10403,10392,10391,-10365,10331,10391,-10394,10428,10392,-10329,10429,10333,-10394,10394,10430,-10366,10365,10431,-10396,10396,10332,-10396,10335,10396,-10401,10397,10333,-10430,10432,10366,-10398,10398,10366,-10434,10334,10398,-10400,10367,10434,-10395,10435,10367,-10400,10400,10401,-10337,10436,10368,-10402,10437,10402,-10369,10407,10311,-10403,10370,10403,-10439,10406,10339,-10405,10338,10405,-10405,10370,10438,-10406,10439,10371,-10407,10440,10372,-10408,10403,10372,-10442,10409,10341,-10409,10408,10371,-10440,10410,10412,-10374,10343,10442,-10411,10348,10346,-10410,10343,10409,-10443,10411,10344,-10413,10374,10411,-10444,10345,10413,-10415,10374,10443,-10414,10376,10375,-10415,10415,10376,-10445,10416,10349,-10416,10416,10445,-10378,10377,10446,-10379,10380,10378,-10447,10447,10379,-10418,10380,10446,-10418,10418,10381,-10380,998,1021,-10383,10382,10419,-10449,10418,10449,-10384,10419,10383,-10451,10422,10355,-10421,10421,\r\n10384,-10425,10358,10422,-10424,10451,10385,-10424,10386,10385,-10453,10425,10424,-10360,10386,10452,-10426,10420,10387,-10454,10388,10421,-10455,10426,10388,-10456,10426,10456,-10390,10457,10390,-10390,10427,10390,-10458,10328,10427,-10459,10459,10391,-10393,10459,10393,-10392,10428,10460,-10393,10458,10428,-10329,10429,10393,-10460,10430,10394,-10435,10431,10365,-10431,10431,10461,-10396,10396,10395,-10462,10400,10396,-10463,10463,10397,-10430,10433,10366,-10433,10463,10432,-10398,10464,10398,-10434,10464,10399,-10399,10434,10367,-10436,10465,10435,-10400,10462,10401,-10401,10437,10368,-10437,10466,10436,-10402,10407,10402,-10438,10438,10403,-10442,10467,10406,-10405,10404,10405,-10469,10405,10438,-10470,10439,10406,-10471,10471,10372,-10441,10440,10407,-10438,10441,10372,-10473,10409,10408,-10474,10408,10439,-10475,10475,10412,-10411,10410,10442,-10477,10442,10409,-10474,10411,10412,-10478,10443,10411,-10479,10413,10444,-10415,10413,10443,-10480,10376,10414,-10445,10416,10415,-10445,10416,10480,-10446,10377,10445,-10447,10418,10379,-10448,10447,10417,-10482,10446,10482,-10418,10382,10448,-999,10483,10448,-10420,10447,10449,-10419,10450,10383,-10450,10419,10450,-10484,10484,10422,-10421,10454,10421,-10425,10422,10485,-10424,10451,10452,-10386,10486,10451,-10424,10425,10487,-10425,10425,10452,-10489,10387,10489,-10454,10453,10490,-10421,10388,10454,-10456,10455,10491,-10427,10426,10492,-10457,10457,10389,-10457,10427,10457,-10494,10458,10427,-10495,10460,10459,-10393,10428,10458,-10461,10495,10429,-10460,10465,10430,-10435,10465,10431,-10431,10431,10496,-10462,10462,10396,-10462,10495,10463,-10430,10432,10458,-10434,10463,10458,-10433,10464,10433,-10459,10465,10399,-10465,10465,10434,-10436,10462,10466,-10402,10497,10437,-10437,10466,10497,-10437,10438,10441,-10470,10467,10470,-10407,10467,10404,-10469,10468,10405,-10499,10498,10405,-10470,10470,10499,-10440,10471,10472,-10373,10500,10471,-10441,10440,10437,-10498,10501,10441,-10473,10474,10473,-10409,10439,10499,-10475,10475,10502,-10413,10410,10476,-10476,10503,\r\n10476,-10443,10442,10473,-10504,10412,10502,-10478,10478,10411,-10478,10443,10478,-10505,10413,10479,-10445,10479,10443,-10505,10416,10444,-10481,10445,10480,-10506,10445,10506,-10447,10481,10417,-10483,10449,10447,-10482,10446,10507,-10483,998,10448,-972,10483,10508,-10449,10450,10449,-10510,10483,10450,-10511,10422,10484,-10486,10484,10420,-10512,10454,10424,-10488,10512,10423,-10486,10452,10451,-10514,10486,10513,-10452,10514,10486,-10424,10515,10487,-10426,10452,10516,-10489,10425,10488,-10516,10453,10489,-10491,10420,10490,-10518,10518,10455,-10455,10455,10518,-10492,10492,10426,-10492,10519,10456,-10493,10493,10457,-10457,10493,10494,-10428,10458,10494,-10465,10460,10495,-10460,10460,10458,-10496,10520,10431,-10466,10520,10496,-10432,10496,10521,-10462,10461,10521,-10463,10495,10458,-10464,10465,10464,-10495,10462,10522,-10467,10466,10523,-10498,10501,10469,-10442,10467,10524,-10471,10525,10467,-10469,10526,10468,-10499,10501,10498,-10470,10470,10524,-10500,10472,10471,-10528,10528,10471,-10501,10500,10440,-10498,10529,10501,-10473,10503,10473,-10475,10474,10499,-10531,10502,10475,-10532,10532,10475,-10477,10503,10530,-10477,10533,10477,-10503,10478,10477,-10534,10534,10504,-10479,10479,10535,-10445,10479,10504,-10537,10537,10480,-10445,10505,10480,-10539,10539,10445,-10506,10445,10539,-10507,10506,10507,-10447,10540,10481,-10483,10481,10509,-10450,10540,10482,-10508,971,10448,-10509,10508,10483,-10511,10509,10510,-10451,10484,10541,-10486,10511,10420,-10518,10511,10542,-10485,10487,10518,-10455,10514,10423,-10513,10512,10485,-10542,10516,10452,-10514,10486,10543,-10514,10486,10514,-10545,10515,10518,-10488,10516,10515,-10489,10545,10490,-10490,10546,10517,-10491,10547,10491,-10519,10492,10491,-10549,10493,10456,-10520,10549,10519,-10493,10493,10519,-10495,10520,10465,-10551,10496,10520,-10552,10521,10496,-10553,10553,10462,-10522,10519,10465,-10495,10462,10553,-10523,10466,10522,-10555,10554,10523,-10467,10497,10523,-10501,10467,10525,-10525,10525,10468,-10527,10555,10526,-10499,10501,10556,-10499,10557,10499,\r\n-10525,10471,10528,-10528,10472,10527,-10559,10559,10528,-10501,10501,10529,-10561,10529,10472,-10559,10503,10474,-10531,10499,10561,-10531,10532,10531,-10476,10562,10502,-10532,10563,10532,-10477,10563,10476,-10531,10533,10502,-10563,10478,10533,-10535,10534,10564,-10505,10535,10479,-10537,10535,10537,-10445,10564,10536,-10505,10537,10565,-10481,10480,10565,-10539,10566,10505,-10539,10566,10539,-10506,10567,10506,-10540,10506,10567,-10508,10540,10509,-10482,10540,10507,-10569,971,10508,-10570,10508,10510,-10571,10509,10571,-10511,10484,10542,-10542,10572,10511,-10518,10573,10542,-10512,10512,10574,-10515,10541,10575,-10513,10516,10513,-10577,10577,10543,-10487,10513,10543,-10577,10514,10578,-10545,10486,10544,-10578,10515,10547,-10519,10515,10516,-10580,10546,10490,-10546,10546,10580,-10518,10491,10547,-10549,10548,10581,-10493,10465,10519,-10550,10549,10492,-10583,10465,10549,-10551,10520,10550,-10552,10551,10552,-10497,10552,10583,-10522,10553,10521,-10584,10584,10522,-10554,10585,10554,-10523,10586,10523,-10555,10500,10523,-10587,10557,10524,-10526,10587,10525,-10527,10526,10555,-10588,10555,10498,-10557,10560,10556,-10502,10499,10557,-10589,10527,10528,-10590,10558,10527,-10590,10590,10528,-10560,10586,10559,-10501,10560,10529,-10592,10558,10592,-10530,10499,10588,-10562,10563,10530,-10562,10531,10532,-10594,10562,10531,-10595,10532,10563,-10596,10533,10562,-10597,10597,10534,-10534,10534,10598,-10565,10535,10536,-10600,10537,10535,-10566,10536,10564,-10601,10538,10565,-10602,10566,10538,-10603,10568,10539,-10567,10539,10568,-10568,10507,10567,-10569,10540,10603,-10510,10604,10540,-10569,10569,10508,-10571,915,971,-10570,10510,10571,-10571,10509,10603,-10572,10542,10575,-10542,10572,10573,-10512,10572,10517,-10581,10573,10605,-10543,10512,10575,-10575,10574,10606,-10515,10516,10576,-10580,10577,10607,-10544,10543,10607,-10577,10578,10514,-10609,10609,10544,-10579,10609,10577,-10545,10547,10515,-10580,10546,10610,-10581,10548,10547,-10612,10548,10611,-10582,10581,10582,-10493,10612,10549,-10583,10613,10550,-10550,\r\n10550,10613,-10552,10552,10551,-10615,10615,10583,-10553,10553,10583,-10617,10585,10522,-10585,10616,10584,-10554,10554,10585,-10587,10525,10617,-10558,10525,10587,-10618,10587,10555,-10619,10556,10618,-10556,10560,10619,-10557,10557,10620,-10589,10528,10621,-10590,10589,10622,-10559,10528,10590,-10622,10559,10623,-10591,10559,10586,-10624,10529,10592,-10592,10560,10591,-10625,10558,10622,-10593,10588,10595,-10562,10563,10561,-10596,10532,10625,-10594,10531,10593,-10595,10562,10594,-10597,10532,10595,-10626,10533,10596,-10598,10598,10534,-10598,10564,10598,-10627,10536,10627,-10600,10535,10599,-10629,10565,10535,-10630,10600,10564,-10631,10536,10600,-10628,10601,10565,-10630,10538,10601,-10632,10538,10631,-10603,10632,10566,-10603,10633,10568,-10567,10604,10603,-10541,10604,10568,-10634,10569,10570,-10635,915,10569,-10636,10570,10571,-10637,10636,10571,-10604,10542,10637,-10576,10572,10638,-10574,10580,10638,-10573,10605,10573,-10640,10542,10605,-10638,10640,10574,-10576,10640,10606,-10575,10606,10608,-10515,10641,10579,-10577,10607,10577,-10643,10576,10607,-10642,10578,10608,-10644,10609,10578,-10644,10609,10642,-10578,10547,10579,-10612,10580,10610,-10639,10611,10644,-10582,10581,10644,-10583,10613,10549,-10613,10612,10582,-10646,10613,10646,-10552,10614,10551,-10647,10614,10615,-10553,10647,10583,-10616,10648,10616,-10584,10649,10585,-10585,10584,10616,-10649,10586,10585,-10650,10557,10617,-10621,10650,10617,-10588,10587,10618,-10652,10618,10556,-10620,10619,10560,-10625,10620,10652,-10589,10653,10589,-10622,10589,10654,-10623,10590,10655,-10622,10590,10623,-10657,10623,10586,-10650,10622,10591,-10593,10657,10624,-10592,10595,10588,-10659,10625,10659,-10594,10660,10594,-10594,10661,10596,-10595,10595,10658,-10626,10597,10596,-10663,10598,10597,-10663,10626,10598,-10663,10564,10626,-10631,10599,10627,-10664,10628,10599,-10665,10535,10628,-10630,10630,10665,-10601,10600,10665,-10628,10629,10666,-10602,10631,10601,-10667,10602,10631,-10668,10632,10633,-10567,10602,10668,-10633,10669,10603,-10605,10604,10633,-10671,\r\n10634,10570,-10637,10634,10635,-10570,886,915,-10636,10669,10636,-10604,10671,10575,-10638,10638,10672,-10574,10573,10673,-10640,10605,10639,-10675,10675,10637,-10606,10575,10676,-10641,10677,10606,-10641,10678,10608,-10607,10641,10611,-10580,10607,10642,-10680,10679,10641,-10608,10680,10643,-10609,10643,10681,-10610,10609,10681,-10643,10611,10682,-10645,10645,10582,-10645,10613,10612,-10684,10612,10645,-10684,10613,10684,-10647,10614,10646,-10686,10614,10647,-10616,10583,10647,-10687,10686,10648,-10584,10649,10584,-10688,10687,10584,-10649,10620,10617,-10689,10617,10650,-10690,10650,10587,-10652,10651,10618,-10691,10618,10619,-10691,10619,10624,-10692,10652,10620,-10689,10652,10658,-10589,10653,10654,-10590,10692,10653,-10622,10622,10654,-10694,10590,10656,-10656,10621,10655,-10693,10623,10694,-10657,10623,10649,-10695,10622,10657,-10592,10695,10624,-10658,10625,10696,-10660,10659,10660,-10594,10594,10660,-10662,10697,10596,-10662,10625,10658,-10697,10596,10698,-10663,10626,10662,-10700,10626,10700,-10631,10701,10663,-10628,10663,10664,-10600,10664,10702,-10629,10628,10703,-10630,10630,10700,-10666,10701,10627,-10666,10703,10666,-10630,10631,10666,-10705,10631,10704,-10668,10602,10667,-10669,10632,10705,-10634,10632,10668,-10706,10604,10706,-10670,10633,10705,-10671,10604,10670,-10708,10634,10636,-10709,10634,10709,-10636,10635,10709,-887,10669,10708,-10637,10575,10671,-10677,10710,10671,-10638,10672,10673,-10574,10674,10639,-10674,10674,10711,-10606,10675,10712,-10638,10675,10605,-10712,10676,10713,-10641,10677,10714,-10607,10640,10715,-10678,10678,10680,-10609,10678,10606,-10715,10716,10611,-10642,10717,10679,-10643,10679,10716,-10642,10680,10718,-10644,10681,10643,-10719,10717,10642,-10682,10716,10682,-10612,10682,10719,-10645,10645,10644,-10720,10613,10683,-10721,10645,10721,-10684,10613,10720,-10685,10646,10684,-10723,10646,10722,-10686,10723,10614,-10686,10614,10724,-10648,10686,10647,-10725,10686,10725,-10649,10649,10687,-10727,10687,10648,-10726,10617,10727,-10689,10650,10651,-10690,10728,10617,-10690,10729,\r\n10651,-10691,10619,10691,-10691,10624,10730,-10692,10652,10688,-10659,10692,10654,-10654,10693,10654,-10732,10622,10693,-10658,10656,10732,-10656,10655,10733,-10693,10656,10694,-10733,10726,10694,-10650,10624,10695,-10731,10695,10657,-10735,10735,10659,-10697,10659,10736,-10661,10737,10661,-10661,10596,10697,-10699,10661,10698,-10698,10738,10696,-10659,10739,10662,-10699,10739,10699,-10663,10626,10699,-10701,10663,10701,-10741,10663,10741,-10665,10702,10664,-10743,10702,10703,-10629,10700,10743,-10666,10701,10665,-10744,10703,10702,-10667,10744,10704,-10667,10704,10745,-10668,10668,10667,-10747,10747,10705,-10669,10706,10604,-10708,10748,10669,-10707,10749,10670,-10706,10707,10670,-10751,10708,10709,-10635,886,10709,-829,10748,10708,-10670,10751,10676,-10672,10751,10671,-10711,10710,10637,-10713,10674,10752,-10712,10675,10753,-10713,10711,10754,-10676,10676,10751,-10714,10640,10713,-10756,10714,10677,-10757,10755,10715,-10641,10715,10756,-10678,10757,10680,-10679,10678,10714,-10758,10717,10758,-10680,10716,10679,-10759,10757,10718,-10681,10681,10718,-10760,10717,10681,-10760,10716,10758,-10683,10760,10719,-10683,10719,10721,-10646,10761,10720,-10684,10683,10721,-10763,10684,10720,-10764,10722,10684,-10765,10722,10765,-10686,10723,10766,-10615,10723,10685,-10766,10724,10614,-10767,10724,10725,-10687,10726,10687,-10768,10687,10725,-10768,10617,10728,-10728,10738,10688,-10728,10729,10689,-10652,10768,10728,-10690,10729,10690,-10692,10769,10691,-10731,10738,10658,-10689,10731,10654,-10693,10770,10693,-10732,10693,10771,-10658,10733,10655,-10733,10733,10772,-10693,10694,10773,-10733,10694,10726,-10775,10730,10695,-10776,10657,10771,-10735,10695,10734,-10777,10736,10659,-10736,10738,10735,-10697,10660,10736,-10778,10661,10737,-10779,10660,10777,-10738,10661,10778,-10699,10739,10698,-10780,10739,10780,-10700,10700,10699,-10782,10701,10782,-10741,10741,10663,-10741,10741,10742,-10665,10702,10742,-10784,10700,10781,-10744,10701,10743,-10783,10744,10666,-10703,10704,10744,-10785,10745,10704,-10785,10746,10667,-10746,10746,10747,\r\n-10669,10749,10705,-10748,10785,10706,-10708,10785,10748,-10707,10749,10750,-10671,10707,10750,-10787,10708,10787,-10710,828,10709,-10789,10787,10708,-10749,10710,10789,-10752,10710,10712,-10791,10711,10752,-10755,10753,10675,-10755,10790,10712,-10754,10713,10751,-10792,10755,10713,-10793,10714,10756,-10758,10755,10793,-10716,10756,10715,-10794,10717,10759,-10759,10757,10794,-10719,10759,10718,-10796,10760,10682,-10759,10721,10719,-10761,10720,10761,-10797,10761,10683,-10763,10721,10797,-10763,10720,10798,-10764,10684,10763,-10800,10799,10764,-10685,10722,10764,-10801,10765,10722,-10801,10723,10801,-10767,10765,10801,-10724,10766,10802,-10725,10724,10767,-10726,10803,10726,-10768,10804,10727,-10729,10727,10805,-10739,10806,10689,-10730,10807,10728,-10769,10806,10768,-10690,10691,10808,-10730,10769,10808,-10692,10775,10769,-10731,10692,10772,-10732,10693,10770,-10772,10731,10809,-10771,10732,10810,-10734,10733,10811,-10773,10694,10774,-10774,10773,10812,-10733,10803,10774,-10727,10775,10695,-10814,10771,10814,-10735,10776,10734,-10815,10695,10776,-10814,10736,10735,-10816,10805,10735,-10739,10816,10777,-10737,10817,10778,-10738,10818,10737,-10778,10698,10778,-10780,10819,10739,-10780,10820,10780,-10740,10699,10780,-10782,10740,10782,-10822,10741,10740,-10823,10741,10822,-10743,10823,10783,-10743,10702,10783,-10745,10824,10743,-10782,10782,10743,-10826,10784,10744,-10784,10784,10826,-10746,10746,10745,-10828,10746,10827,-10748,10749,10747,-10829,10785,10707,-10787,10829,10748,-10786,10830,10750,-10750,10786,10750,-10831,10787,10788,-10710,10788,762,-829,10787,10748,-10830,10789,10710,-10791,10751,10789,-10832,10832,10791,-10752,10713,10791,-10793,10755,10792,-10834,10757,10756,-10835,10755,10833,-10794,10756,10793,-10835,10835,10758,-10760,10757,10834,-10795,10795,10718,-10795,10759,10795,-10836,10758,10836,-10761,10760,10836,-10722,10761,10837,-10797,10798,10720,-10797,10837,10761,-10763,10797,10721,-10837,10837,10762,-10798,10838,10763,-10799,10799,10763,-10839,10839,10764,-10800,10840,10800,-10765,10800,10840,-10766,\r\n10801,10841,-10767,10801,10765,-10842,10766,10842,-10803,10802,10767,-10725,10803,10767,-10844,10804,10805,-10728,10804,10728,-10808,10808,10806,-10730,10807,10768,-10845,10768,10806,-10846,10769,10846,-10809,10775,10847,-10770,10731,10772,-10810,10770,10814,-10772,10848,10770,-10810,10812,10810,-10733,10733,10810,-10812,10811,10849,-10773,10774,10850,-10774,10773,10850,-10813,10774,10803,-10852,10775,10813,-10848,10776,10814,-10853,10813,10776,-10854,10735,10854,-10816,10816,10736,-10816,10735,10805,-10855,10818,10777,-10817,10778,10817,-10856,10817,10737,-10857,10818,10857,-10738,10778,10855,-10780,10739,10819,-10821,10855,10819,-10780,10858,10780,-10821,10824,10781,-10781,10821,10782,-10826,10859,10740,-10822,10740,10859,-10823,10742,10822,-10861,10823,10784,-10784,10823,10742,-10861,10743,10824,-10826,10784,10861,-10827,10745,10826,-10828,10747,10827,-10863,10862,10828,-10748,10828,10863,-10750,10785,10786,-10865,10785,10864,-10830,10863,10830,-10750,10865,10786,-10831,10787,10866,-10789,10788,10866,-763,10829,10864,-10788,10789,10790,-10868,10789,10868,-10832,10832,10751,-10832,10832,10869,-10792,10792,10791,-10871,10833,10792,-10872,10833,10872,-10794,10872,10834,-10794,10835,10836,-10759,10872,10794,-10835,10873,10795,-10795,10874,10835,-10796,10837,10875,-10797,10876,10798,-10797,10797,10836,-10878,10878,10837,-10798,10838,10798,-10880,10799,10838,-10881,10839,10881,-10765,10799,10880,-10840,10840,10764,-10882,10765,10840,-10883,10841,10842,-10767,10765,10882,-10842,10883,10802,-10843,10767,10802,-10844,10803,10843,-10885,10804,10854,-10806,10885,10804,-10808,10886,10806,-10809,10844,10768,-10888,10885,10807,-10845,10886,10845,-10807,10768,10845,-10888,10846,10769,-10848,10846,10886,-10809,10849,10809,-10773,10848,10814,-10771,10849,10848,-10810,10812,10888,-10811,10810,10888,-10812,10811,10889,-10850,10851,10850,-10775,10812,10850,-10891,10891,10851,-10804,10813,10892,-10848,10893,10852,-10815,10776,10852,-10854,10813,10853,-10893,10854,10894,-10816,10816,10815,-10895,10818,10816,-10896,10855,10817,-10897,\r\n10856,10737,-10858,10856,10897,-10818,10818,10898,-10858,10899,10820,-10820,10855,10896,-10820,10858,10824,-10781,10820,10900,-10859,10821,10825,-10902,10859,10821,-10903,10822,10859,-10903,10860,10822,-10904,10823,10861,-10785,10860,10903,-10824,10825,10824,-10905,10905,10826,-10862,10906,10827,-10827,10907,10862,-10828,10862,10908,-10829,10828,10909,-10864,10786,10865,-10865,10910,10830,-10864,10910,10865,-10831,10866,10787,-10865,10866,732,-763,10867,10868,-10790,10831,10868,-10912,10912,10832,-10832,10869,10832,-10914,10914,10791,-10870,10914,10870,-10792,10792,10870,-10916,10871,10792,-10916,10833,10871,-10917,10872,10833,-10917,10877,10836,-10836,10794,10872,-10917,10873,10874,-10796,10873,10794,-10918,10874,10877,-10836,10878,10875,-10838,10876,10796,-10876,10876,10879,-10799,10877,10878,-10798,10838,10879,-10919,10880,10838,-10919,10839,10919,-10882,10880,10920,-10840,10840,10881,-10922,10882,10840,-10922,10841,10883,-10843,10882,10922,-10842,10923,10802,-10884,10923,10843,-10803,10884,10843,-10924,10884,10924,-10804,10854,10804,-10886,10844,10887,-10926,10885,10844,-10927,10845,10886,-10928,10845,10927,-10888,10846,10847,-10929,10846,10929,-10887,10848,10893,-10815,10849,10930,-10849,10812,10890,-10889,10888,10889,-10812,10849,10889,-10932,10851,10932,-10851,10890,10850,-10933,10851,10891,-10933,10924,10891,-10804,10933,10847,-10893,10934,10852,-10894,10853,10852,-10936,10892,10853,-10937,10937,10894,-10855,10816,10894,-10896,10898,10818,-10896,10896,10817,-10898,10857,10938,-10857,10856,10939,-10898,10898,10940,-10858,10820,10899,-10942,10896,10899,-10820,10942,10824,-10859,10900,10820,-10942,10858,10900,-10943,10901,10825,-10905,10901,10943,-10822,10943,10902,-10822,10944,10822,-10903,10944,10903,-10823,10905,10861,-10824,10903,10905,-10824,10942,10904,-10825,10945,10826,-10906,10906,10907,-10828,10945,10906,-10827,10907,10908,-10863,10909,10828,-10909,10863,10909,-10947,10865,10947,-10865,10910,10863,-10947,10910,10947,-10866,10866,10864,-10948,732,10866,-10949,10949,10831,-10912,10913,10832,-10913,10949,\r\n10912,-10832,10869,10913,-10951,10914,10869,-10952,10914,10915,-10871,10871,10915,-10917,10794,10916,-10953,10873,10953,-10875,10917,10794,-10955,10873,10917,-10954,10877,10874,-10954,10878,10955,-10876,10876,10875,-10956,10876,10956,-10880,10877,10957,-10879,10879,10958,-10919,10880,10918,-10921,10920,10919,-10840,10959,10881,-10920,10921,10881,-10960,10882,10921,-10961,10883,10841,-10923,10882,10960,-10923,10884,10923,-10884,10924,10884,-10962,10885,10926,-10855,10962,10925,-10888,10844,10925,-10927,10929,10927,-10887,10962,10887,-10928,10928,10847,-10934,10846,10928,-10964,10963,10929,-10847,10934,10893,-10849,10849,10931,-10931,10934,10848,-10931,10964,10888,-10891,10888,10965,-10890,10889,10966,-10932,10890,10932,-10968,10968,10932,-10892,10891,10924,-10970,10970,10933,-10893,10971,10852,-10935,10972,10935,-10853,10853,10935,-10937,10892,10936,-10971,10973,10894,-10938,10937,10854,-10927,10973,10895,-10895,10898,10895,-10975,10975,10896,-10898,10857,10940,-10939,10938,10939,-10857,10976,10897,-10940,10898,10977,-10941,10899,10978,-10942,10896,10978,-10900,10979,10900,-10942,10980,10942,-10901,10981,10901,-10905,10982,10943,-10902,10902,10943,-10984,10944,10902,-10985,10985,10903,-10945,10903,10985,-10906,10942,10981,-10905,10945,10905,-10986,10907,10906,-10987,10945,10986,-10907,10987,10908,-10908,10988,10909,-10909,10989,10946,-10910,10990,10910,-10947,10991,10947,-10911,10948,10866,-10948,10948,666,-733,10992,10949,-10912,10912,10993,-10914,10994,10912,-10950,10993,10950,-10914,10950,10995,-10870,10951,10869,-10996,10914,10951,-10997,10915,10914,-10997,10916,10915,-10998,10916,10997,-10953,10794,10952,-10955,10917,10954,-10954,10998,10877,-10954,10878,10957,-10956,10876,10955,-10957,10958,10879,-10957,10998,10957,-10878,10958,10999,-10919,10920,10918,-11000,11000,10919,-10921,11000,10959,-10920,10921,10959,-10961,11001,10883,-10923,10960,11002,-10923,10884,10883,-11002,11001,10961,-10885,10924,10961,-11004,11004,10925,-10963,10925,11005,-10927,10929,11006,-10928,10962,10927,-11007,10928,10933,-11008,11008,10963,\r\n-10929,10929,10963,-11010,10966,10930,-10932,11010,10934,-10931,10964,10965,-10889,10964,10890,-10968,10889,10965,-10967,10967,10932,-10969,10968,10891,-10970,10924,11003,-10970,10970,11011,-10934,10971,10972,-10853,10971,10934,-11013,11013,10935,-10973,11013,10936,-10936,11013,10970,-10937,10973,10937,-11015,10926,11005,-10938,10974,10895,-10974,10898,10974,-11016,11016,10896,-10976,10976,10975,-10898,11017,10938,-10941,10938,11018,-10940,10939,11019,-10977,10898,11015,-10978,10940,10977,-11018,10978,11020,-10942,10896,11016,-10979,10979,10980,-10901,10979,10941,-11022,10980,10981,-10943,10901,10981,-11023,10943,10982,-10984,11022,10982,-10902,11023,10902,-10984,10902,11023,-10985,11024,10944,-10985,11024,10985,-10945,10986,10945,-10986,10907,10986,-11026,10988,10908,-10988,11025,10987,-10908,10988,10989,-10910,10946,10989,-11027,10991,10910,-10991,10990,10946,-11027,10991,10948,-10948,666,10948,-11028,10992,11028,-10950,11029,10993,-10913,10994,11029,-10913,10994,10949,-11031,10993,11031,-10951,10950,11031,-10996,10996,10951,-10996,10915,10996,-10998,10997,11032,-10953,11033,10954,-10953,10953,10954,-11035,11034,10998,-10954,10955,10957,-11036,11036,10956,-10956,10958,10956,-11038,11035,10957,-10999,11037,10999,-10959,11038,10920,-11000,11038,11000,-10921,11000,11039,-10960,11040,10960,-10960,10922,11002,-11002,11040,11002,-10961,11001,11041,-10962,11003,10961,-11043,10925,11004,-11006,11043,11004,-10963,10929,11009,-11007,11043,10962,-11007,11011,11007,-10934,11007,11008,-10929,11008,11044,-10964,11009,10963,-11045,10966,11045,-10931,11046,10934,-11011,10930,11045,-11011,10964,11047,-10966,10964,10967,-11048,10966,10965,-11046,10967,10968,-11049,10968,10969,-11049,11003,11049,-10970,11011,10970,-11051,10971,11012,-10973,11046,11012,-10935,10972,11051,-11014,11052,10970,-11014,11005,11014,-10938,10974,10973,-11015,10974,11053,-11016,10975,11054,-11017,11054,10975,-10977,11017,11018,-10939,10939,11018,-11020,11055,10976,-11020,10977,11015,-11057,11017,10977,-11057,10978,11057,-11021,11058,10941,-11021,11016,11057,\r\n-10979,10979,11059,-10981,11058,11021,-10942,11059,10979,-11022,10981,10980,-11060,10981,11059,-11023,10982,11060,-10984,11022,11061,-10983,11023,10983,-11063,11063,10984,-11024,11064,11024,-10985,11024,10986,-10986,11025,10986,-11066,10988,10987,-11067,11067,10987,-11026,10988,11068,-10990,11026,10989,-11069,11027,10991,-10991,10990,11026,-11070,11027,10948,-10992,11027,599,-667,11028,11070,-10950,11029,11071,-10994,11072,11029,-10995,10949,11070,-11031,10994,11030,-11074,11031,10993,-11072,10996,10995,-11032,10997,10996,-11075,10997,11074,-11033,11033,10952,-11033,11033,11034,-10955,11075,10998,-11035,11076,10955,-11036,11036,11077,-10957,11036,10955,-11077,11037,10956,-11078,11035,10998,-11076,11037,11078,-11000,11038,10999,-11080,11038,11080,-11001,11081,11039,-11001,11040,10959,-11040,11001,11002,-11042,11040,11082,-11003,11042,10961,-11042,11083,11003,-11043,11084,11005,-11005,11004,11043,-11085,11085,11006,-11010,11085,11043,-11007,11011,11086,-11008,11007,11086,-11009,11087,11044,-11009,11009,11044,-11089,11010,11089,-11047,11010,11045,-11090,10965,11047,-11091,11091,11047,-10968,10965,11090,-11046,10967,11048,-11092,10969,11049,-11049,11049,11003,-11093,11093,11050,-10971,11011,11050,-11095,10972,11012,-11052,11095,11012,-11047,11096,11013,-11052,11052,11093,-10971,11013,11097,-11053,11084,11014,-11006,10974,11014,-11054,11098,11015,-11054,11054,11099,-11017,11055,11054,-10977,11017,11100,-11019,11019,11018,-11102,11055,11019,-11103,11056,11015,-11099,11017,11056,-11104,11020,11057,-11105,11104,11058,-11021,11057,11016,-11100,11104,11021,-11059,11105,11059,-11022,11022,11059,-11062,11060,10982,-11062,11060,11062,-10984,11063,11023,-11063,11064,10984,-11064,11024,11064,-11066,11024,11065,-10987,11025,11065,-11068,11066,10987,-11107,10988,11066,-11069,11106,10987,-11068,11026,11068,-11108,11108,11027,-10991,11026,11107,-11070,11109,10990,-11070,599,11027,-11111,11072,11071,-11030,11111,11072,-10995,11070,11112,-11031,11113,11073,-11031,11073,11111,-10995,11031,11071,-11115,11031,11074,-10997,11074,11115,-11033,\r\n11116,11033,-11033,11117,11034,-11034,11117,11075,-11035,11035,11118,-11077,11036,11076,-11078,11037,11077,-11120,11035,11075,-11121,11078,11037,-11120,11078,11079,-11000,11038,11079,-11081,11081,11000,-11081,11081,11121,-11040,11121,11040,-11040,11002,11082,-11042,11040,11121,-11083,11042,11041,-11123,11003,11083,-11093,11083,11042,-11124,11084,11043,-11086,11085,11009,-11089,11094,11086,-11012,11124,11008,-11087,11044,11087,-11089,11087,11008,-11125,11089,11125,-11047,11126,11089,-11046,11090,11047,-11092,11126,11045,-11091,11127,11091,-11049,11049,11127,-11049,11049,11092,-11128,11128,11050,-11094,11129,11094,-11051,11051,11012,-11131,11012,11095,-11131,11131,11095,-11047,11096,11097,-11014,11051,11130,-11097,11093,11052,-11098,11084,11053,-11015,11053,11132,-11099,11054,11133,-11100,11055,11134,-11055,11135,11100,-11018,11018,11100,-11102,11101,11102,-11020,11055,11102,-11137,11056,11098,-11138,11103,11056,-11139,11103,11135,-11018,11139,11104,-11058,11140,11057,-11100,11021,11104,-11142,11105,11061,-11060,11021,11142,-11106,11060,11061,-11144,11062,11060,-11145,11062,11145,-11064,11063,11146,-11065,11147,11065,-11065,11067,11065,-11148,11106,11068,-11067,11106,11067,-11149,11107,11068,-11150,11027,11108,-11111,11108,10990,-11110,11150,11069,-11108,11150,11109,-11070,11110,564,-600,11072,11151,-11072,11072,11111,-11152,11152,11030,-11113,11113,11111,-11074,11153,11113,-11031,11114,11071,-11155,11074,11031,-11115,11074,11114,-11116,11116,11032,-11116,11116,11117,-11034,11155,11075,-11118,11035,11120,-11119,11076,11118,-11157,11076,11156,-11078,11119,11077,-11157,11155,11120,-11076,11078,11119,-11158,11158,11079,-11079,11080,11079,-11160,11159,11081,-11081,11121,11081,-11161,11041,11082,-11162,11082,11121,-11162,11041,11161,-11123,11122,11123,-11043,11083,11162,-11093,11083,11123,-11164,11084,11085,-11133,11085,11088,-11165,11094,11165,-11087,11166,11124,-11087,11088,11087,-11168,11087,11124,-11169,11089,11169,-11126,11131,11046,-11126,11089,11126,-11171,11091,11171,-11091,11171,11126,-11091,11172,11091,-11128,11162,\r\n11127,-11093,11129,11050,-11129,11128,11093,-11098,11094,11129,-11174,11095,11174,-11131,11095,11131,-11176,11176,11097,-11097,11177,11096,-11131,11084,11132,-11054,11178,11098,-11133,11133,11054,-11135,11133,11140,-11100,11055,11136,-11135,11179,11100,-11136,11101,11100,-11181,11102,11101,-11181,11136,11102,-11182,11098,11182,-11138,11138,11056,-11138,11103,11138,-11184,11103,11184,-11136,11139,11185,-11105,11139,11057,-11187,11057,11140,-11187,11187,11141,-11105,11141,11142,-11022,11105,11143,-11062,11105,11142,-11189,11189,11060,-11144,11190,11144,-11061,11191,11062,-11145,11145,11062,-11192,11063,11145,-11193,11063,11192,-11147,11146,11147,-11065,11067,11147,-11149,11106,11149,-11069,11106,11148,-11150,11107,11149,-11194,11108,11109,-11111,11107,11193,-11151,11150,11194,-11110,564,11110,-11196,11154,11071,-11152,11111,11196,-11152,11152,11197,-11031,11112,11198,-11153,11199,11111,-11114,11153,11200,-11114,11030,11197,-11154,11114,11154,-11202,11115,11114,-11202,11116,11115,-11203,11203,11117,-11117,11203,11155,-11118,11120,11204,-11119,11156,11118,-11206,11157,11119,-11157,11120,11155,-11207,11207,11078,-11158,11158,11159,-11080,11207,11158,-11079,11208,11081,-11160,11160,11081,-11210,11121,11160,-11211,11121,11210,-11162,11211,11122,-11162,11122,11211,-11124,11083,11212,-11163,11211,11163,-11124,11083,11163,-11213,11213,11132,-11086,11088,11167,-11165,11213,11085,-11165,11214,11165,-11095,11165,11166,-11087,11166,11168,-11125,11168,11167,-11088,11089,11170,-11170,11125,11169,-11216,11131,11125,-11217,11171,11170,-11127,11172,11171,-11092,11217,11172,-11128,11162,11217,-11128,11128,11218,-11130,11218,11128,-11098,11173,11129,-11220,11214,11094,-11174,11095,11175,-11175,11177,11130,-11175,11131,11216,-11176,11218,11097,-11177,11177,11176,-11097,11098,11178,-11183,11213,11178,-11133,11133,11134,-11221,11133,11221,-11141,11220,11134,-11137,11100,11179,-11223,11135,11184,-11180,11100,11222,-11181,11102,11180,-11182,11136,11181,-11224,11182,11224,-11138,11225,11138,-11138,11138,11226,-11184,11183,11184,-11104,11185,\r\n11139,-11228,11104,11185,-11188,11139,11186,-11228,11221,11186,-11141,11187,11142,-11142,11105,11188,-11144,11228,11188,-11143,11189,11190,-11061,11189,11143,-11230,11190,11230,-11145,11231,11191,-11145,11191,11192,-11146,11192,11232,-11147,11148,11147,-11147,11149,11148,-11234,11149,11233,-11194,11110,11109,-11235,11193,11235,-11151,11236,11194,-11151,11234,11109,-11195,11237,11195,-11111,564,11195,-601,11151,11238,-11155,11199,11196,-11112,11239,11151,-11197,11152,11240,-11198,11152,11198,-11241,11200,11199,-11114,11200,11153,-11242,11242,11153,-11198,11201,11154,-11239,11115,11201,-11244,11243,11202,-11116,11116,11202,-11204,11155,11203,-11245,11245,11204,-11121,11205,11118,-11205,11157,11156,-11206,11155,11244,-11207,11206,11245,-11121,11246,11207,-11158,11158,11247,-11160,11207,11248,-11159,11208,11209,-11082,11159,11247,-11209,11249,11160,-11210,11250,11210,-11161,11211,11161,-11211,11162,11212,-11252,11252,11163,-11212,11163,11253,-11213,11254,11164,-11168,11254,11213,-11165,11214,11255,-11166,11166,11165,-11257,11166,11257,-11169,11258,11167,-11169,11170,11215,-11170,11125,11215,-11260,11259,11216,-11126,11171,11260,-11171,11261,11171,-11173,11261,11172,-11218,11162,11251,-11218,11129,11218,-11263,11129,11262,-11220,11173,11219,-11264,11214,11173,-11265,11175,11265,-11175,11266,11177,-11175,11265,11175,-11217,11267,11218,-11177,11176,11177,-11268,11182,11178,-11269,11268,11178,-11214,11133,11220,-11222,11220,11136,-11270,11270,11222,-11180,11271,11179,-11185,11181,11180,-11223,11272,11223,-11182,11223,11269,-11137,11224,11182,-11274,11274,11137,-11225,11225,11226,-11139,11137,11275,-11226,11226,11276,-11184,11184,11183,-11277,11185,11227,-11278,11187,11185,-11278,11186,11278,-11228,11221,11279,-11187,11187,11277,-11143,11143,11188,-11281,11280,11188,-11229,11142,11281,-11229,11282,11190,-11190,11229,11143,-11284,11282,11189,-11230,11190,11284,-11231,11230,11231,-11145,11231,11192,-11192,11285,11232,-11193,11286,11146,-11233,11286,11148,-11147,11286,11233,-11149,11287,11193,-11234,11110,11234,-11238,11235,11193,\r\n-11289,11236,11150,-11236,11194,11236,-11235,11195,11237,-11290,600,11195,-11290,11239,11238,-11152,11199,11200,-11197,11196,11290,-11240,11240,11291,-11198,11292,11240,-11199,11242,11241,-11154,11200,11241,-11294,11294,11242,-11198,11295,11201,-11239,11243,11201,-11296,11243,11296,-11203,11203,11202,-11298,11203,11297,-11245,11245,11298,-11205,11204,11298,-11206,11298,11157,-11206,11206,11244,-11300,11245,11206,-11301,11207,11246,-11249,11298,11246,-11158,11158,11248,-11248,11301,11209,-11209,11247,11301,-11209,11249,11302,-11161,11303,11249,-11210,11250,11304,-11211,11250,11160,-11303,11304,11211,-11211,11212,11305,-11252,11163,11252,-11254,11304,11252,-11212,11306,11212,-11254,11254,11167,-11259,11268,11213,-11255,11255,11214,-11265,11255,11307,-11166,11307,11256,-11166,11256,11257,-11167,11168,11257,-11259,11170,11260,-11216,11308,11259,-11216,11259,11309,-11217,11261,11260,-11172,11261,11217,-11311,11217,11251,-11311,11267,11262,-11219,11262,11311,-11220,11312,11263,-11220,11173,11263,-11314,11264,11173,-11314,11314,11174,-11266,11315,11177,-11267,11316,11266,-11175,11317,11265,-11217,11177,11318,-11268,11182,11268,-11274,11220,11319,-11222,11269,11319,-11221,11181,11222,-11271,11270,11179,-11272,11271,11184,-11321,11272,11321,-11224,11181,11270,-11273,11322,11269,-11224,11224,11273,-11324,11137,11274,-11276,11324,11274,-11225,11226,11225,-11326,11225,11275,-11326,11276,11226,-11327,11320,11184,-11277,11227,11278,-11278,11278,11186,-11280,11279,11221,-11328,11277,11281,-11143,11283,11143,-11281,11280,11228,-11329,11228,11281,-11330,11282,11330,-11191,11229,11283,-11332,11332,11282,-11230,11284,11190,-11331,11333,11230,-11285,11231,11230,-11335,11231,11335,-11193,11336,11232,-11286,11285,11192,-11336,11337,11286,-11233,11286,11337,-11234,11288,11193,-11288,11287,11233,-11339,11237,11234,-11340,11340,11235,-11289,11236,11235,-11341,11234,11236,-11340,11289,11237,-11342,600,11289,-11342,11239,11342,-11239,11343,11196,-11201,11343,11290,-11197,11239,11290,-11345,11345,11291,-11241,11346,11197,-11292,11345,11240,-11293,\r\n11347,11241,-11243,11241,11348,-11294,11343,11200,-11294,11294,11347,-11243,11294,11197,-11350,11238,11350,-11296,11243,11295,-11297,11296,11297,-11203,11299,11244,-11298,11298,11245,-11352,11206,11299,-11353,11300,11206,-11354,11245,11300,-11355,11248,11246,-11352,11298,11351,-11247,11247,11248,-11356,11301,11356,-11210,11247,11357,-11302,11303,11302,-11250,11303,11209,-11357,11358,11304,-11251,11302,11359,-11251,11306,11305,-11213,11305,11310,-11252,11252,11360,-11254,11304,11361,-11253,11253,11362,-11307,11254,11258,-11364,11268,11254,-11364,11255,11264,-11365,11255,11365,-11308,11307,11366,-11257,11256,11367,-11258,11257,11367,-11259,11260,11308,-11216,11259,11308,-11369,11259,11368,-11310,11309,11317,-11217,11260,11261,-11370,11261,11310,-11371,11262,11267,-11312,11371,11219,-11312,11372,11263,-11313,11219,11371,-11313,11313,11263,-11374,11264,11313,-11365,11314,11316,-11175,11317,11314,-11266,11315,11318,-11178,11316,11315,-11267,11318,11311,-11268,11273,11268,-11364,11327,11221,-11320,11374,11319,-11270,11270,11271,-11376,11271,11320,-11376,11376,11321,-11273,11321,11322,-11224,11272,11270,-11376,11322,11377,-11270,11323,11273,-11364,11224,11323,-11379,11275,11274,-11380,11324,11380,-11275,11224,11378,-11325,11226,11325,-11327,11275,11381,-11326,11276,11326,-11383,11320,11276,-11383,11278,11281,-11278,11278,11279,-11384,11279,11327,-11385,11331,11283,-11281,11329,11328,-11229,11328,11331,-11281,11385,11329,-11282,11386,11330,-11283,11331,11387,-11230,11332,11386,-11283,11387,11332,-11230,11388,11284,-11331,11333,11334,-11231,11333,11284,-11389,11335,11231,-11335,11336,11389,-11233,11336,11285,-11391,11285,11335,-11391,11337,11232,-11390,11338,11233,-11338,11288,11287,-11392,11338,11391,-11288,11339,11392,-11238,11393,11340,-11289,11236,11340,-11340,11394,11341,-11238,600,11341,-630,11239,11395,-11343,11342,11350,-11239,11396,11290,-11344,11397,11344,-11291,11344,11395,-11240,11398,11291,-11346,11346,11349,-11198,11398,11346,-11292,11345,11292,-11400,11347,11348,-11242,11400,11293,-11349,11343,11293,-11401,11347,\r\n11294,-11402,11294,11349,-11403,11295,11350,-11404,11296,11295,-11404,11404,11297,-11297,11404,11299,-11298,11354,11351,-11246,11405,11352,-11300,11206,11352,-11354,11406,11300,-11354,11406,11354,-11301,11354,11248,-11352,11355,11248,-11408,11247,11355,-11358,11301,11408,-11357,11409,11301,-11358,11303,11410,-11303,11303,11356,-11412,11358,11361,-11305,11358,11250,-11360,11410,11359,-11303,11306,11362,-11306,11412,11310,-11306,11252,11413,-11361,11253,11360,-11363,11414,11252,-11362,11363,11258,-11368,11365,11255,-11365,11307,11365,-11367,11256,11366,-11368,11415,11308,-11261,11415,11368,-11309,11368,11416,-11310,11417,11317,-11310,11369,11261,-11371,11415,11260,-11370,11370,11310,-11413,11371,11311,-11419,11263,11372,-11420,11420,11372,-11313,11371,11421,-11313,11422,11373,-11264,11313,11373,-11365,11316,11314,-11424,11314,11317,-11425,11318,11315,-11426,11316,11423,-11316,11418,11311,-11319,11374,11327,-11320,11374,11269,-11378,11320,11426,-11376,11376,11427,-11322,11272,11375,-11377,11322,11321,-11429,11377,11322,-11429,11378,11323,-11364,11379,11274,-11381,11275,11379,-11382,11429,11380,-11325,11324,11378,-11367,11430,11326,-11326,11381,11431,-11326,11432,11382,-11327,11382,11426,-11321,11278,11383,-11282,11279,11384,-11384,11433,11384,-11328,11329,11434,-11329,11331,11328,-11436,11385,11436,-11330,11281,11383,-11386,11386,11437,-11331,11387,11331,-11436,11438,11386,-11333,11439,11332,-11388,11388,11330,-11438,11333,11440,-11335,11388,11441,-11334,11335,11334,-11443,11389,11336,-11444,11336,11390,-11444,11442,11390,-11336,11444,11337,-11390,11445,11338,-11338,11446,11288,-11392,11338,11447,-11392,11392,11339,-11449,11237,11392,-11450,11450,11340,-11394,11393,11288,-11452,11452,11339,-11341,11341,11394,-630,11453,11394,-11238,11454,11342,-11396,11455,11350,-11343,11396,11397,-11291,11396,11343,-11457,11457,11344,-11398,11344,11458,-11396,11345,11459,-11399,11349,11346,-11461,11460,11346,-11399,11399,11459,-11346,11347,11401,-11349,11348,11461,-11401,11343,11400,-11457,11402,11401,-11295,11402,11349,-11463,11455,\r\n11403,-11351,11296,11403,-11405,11404,11463,-11300,11405,11353,-11353,11463,11405,-11300,11406,11353,-11406,11406,11464,-11355,11354,11407,-11249,11465,11355,-11408,11357,11355,-11467,11408,11301,-11468,11408,11411,-11357,11409,11468,-11302,11466,11409,-11358,11303,11469,-11411,11470,11303,-11412,11358,11471,-11362,11358,11359,-11473,11469,11359,-11411,11362,11412,-11306,11414,11413,-11253,11473,11360,-11414,11362,11360,-11475,11414,11361,-11472,11363,11367,-11379,11365,11364,-11476,11365,11324,-11367,11366,11378,-11368,11415,11416,-11369,11309,11416,-11477,11417,11424,-11318,11309,11476,-11418,11369,11370,-11478,11369,11477,-11416,11478,11370,-11413,11371,11418,-11480,11372,11480,-11420,11263,11419,-11423,11420,11481,-11373,11420,11312,-11422,11371,11479,-11422,11422,11482,-11374,11364,11373,-11483,11314,11424,-11424,11315,11483,-11426,11318,11425,-11419,11315,11423,-11484,11374,11433,-11328,11374,11377,-11485,11375,11426,-11486,11376,11486,-11428,11427,11487,-11322,11488,11376,-11376,11428,11321,-11488,11428,11489,-11378,11379,11380,-11491,11381,11379,-11491,11429,11491,-11381,11365,11429,-11325,11326,11430,-11433,11430,11325,-11493,11431,11381,-11494,11431,11492,-11326,11432,11494,-11383,11382,11494,-11427,11384,11495,-11384,11496,11384,-11434,11436,11434,-11330,11328,11434,-11498,11328,11497,-11436,11498,11436,-11386,11383,11498,-11386,11438,11437,-11387,11387,11435,-11500,11439,11438,-11333,11439,11387,-11500,11388,11437,-11501,11333,11441,-11441,11501,11334,-11441,11388,11502,-11442,11442,11334,-11502,11389,11443,-11504,11443,11390,-11505,11442,11504,-11391,11337,11444,-11446,11444,11389,-11504,11338,11445,-11448,11446,11451,-11289,11391,11505,-11447,11505,11391,-11448,11448,11339,-11507,11507,11392,-11449,11507,11449,-11393,11237,11449,-11509,11340,11450,-11453,11509,11450,-11394,11510,11393,-11452,11511,11339,-11453,11394,11453,-630,11237,11508,-11454,11455,11342,-11455,11458,11454,-11396,11456,11397,-11397,11457,11458,-11345,11457,11397,-11513,11459,11513,-11399,11349,11460,-11463,11513,11460,-11399,11459,\r\n11399,-11515,11348,11401,-11462,11400,11461,-11516,11456,11400,-11516,11402,11461,-11402,11402,11462,-11517,11403,11455,-11518,11403,11517,-11405,11463,11404,-11519,11519,11405,-11464,11406,11405,-11521,11406,11520,-11465,11407,11354,-11465,11355,11465,-11467,11465,11407,-11465,11468,11467,-11302,11408,11467,-11522,11522,11411,-11409,11468,11409,-11524,11466,11524,-11410,11470,11469,-11304,11470,11411,-11526,11358,11472,-11472,11359,11526,-11473,11469,11526,-11360,11362,11474,-11413,11527,11413,-11415,11473,11528,-11361,11527,11473,-11414,11360,11528,-11475,11414,11471,-11530,11364,11530,-11476,11365,11475,-11430,11416,11415,-11532,11416,11532,-11477,11417,11533,-11425,11417,11476,-11535,11370,11478,-11478,11415,11477,-11532,11478,11412,-11475,11418,11425,-11480,11480,11372,-11482,11422,11419,-11481,11481,11420,-11536,11420,11421,-11537,11537,11421,-11480,11422,11538,-11483,11364,11482,-11531,11423,11424,-11534,11483,11539,-11426,11423,11540,-11484,11484,11433,-11375,11484,11377,-11490,11541,11485,-11427,11485,11488,-11376,11488,11486,-11377,11486,11542,-11428,11487,11427,-11543,11428,11487,-11544,11544,11489,-11429,11491,11490,-11381,11490,11545,-11382,11429,11475,-11492,11546,11432,-11431,11430,11492,-11547,11545,11493,-11382,11547,11431,-11494,11431,11548,-11493,11494,11432,-11550,11426,11494,-11542,11384,11550,-11496,11495,11498,-11384,11384,11496,-11552,11484,11496,-11434,11436,11552,-11435,11434,11553,-11498,11499,11435,-11498,11498,11554,-11437,11555,11437,-11439,11438,11439,-11557,11439,11499,-11558,11555,11500,-11438,11388,11500,-11503,11558,11440,-11442,11440,11559,-11502,11558,11441,-11503,11442,11501,-11561,11443,11504,-11504,11504,11442,-11561,11444,11561,-11446,11561,11444,-11504,11447,11445,-11563,11563,11451,-11447,11563,11446,-11506,11505,11447,-11565,11506,11339,-11512,11506,11565,-11449,11507,11448,-11566,11449,11507,-11567,11566,11508,-11450,11509,11452,-11451,11393,11510,-11510,11451,11563,-11511,11509,11511,-11453,11453,11567,-630,11567,11453,-11509,11568,11455,-11455,11458,11569,-11455,11570,\r\n11397,-11457,11571,11458,-11458,11570,11512,-11398,11457,11512,-11573,11573,11513,-11460,11462,11460,-11575,11513,11574,-11461,11399,11575,-11515,11573,11459,-11515,11515,11461,-11577,11515,11577,-11457,11402,11516,-11462,11578,11516,-11463,11579,11517,-11456,11517,11518,-11405,11519,11463,-11519,11519,11580,-11406,11580,11520,-11406,11464,11520,-11582,11466,11465,-11525,11465,11464,-11582,11521,11467,-11469,11408,11521,-11523,11522,11525,-11412,11582,11523,-11410,11583,11468,-11524,11582,11409,-11525,11470,11584,-11470,11525,11585,-11471,11586,11471,-11473,11472,11526,-11587,11469,11584,-11527,11414,11529,-11528,11528,11473,-11588,11473,11527,-11588,11528,11588,-11475,11586,11529,-11472,11475,11530,-11492,11532,11416,-11532,11589,11476,-11533,11533,11417,-11591,11476,11589,-11535,11590,11417,-11535,11478,11531,-11478,11474,11588,-11479,11479,11425,-11592,11481,11592,-11481,11422,11480,-11539,11420,11593,-11536,11594,11481,-11536,11537,11536,-11422,11420,11536,-11594,11479,11591,-11538,11482,11538,-11596,11482,11596,-11531,11423,11533,-11541,11540,11539,-11484,11425,11539,-11598,11484,11489,-11497,11485,11541,-11599,11485,11486,-11489,11486,11599,-11543,11487,11542,-11601,11543,11487,-11602,11543,11602,-11429,11489,11544,-11604,11544,11428,-11603,11490,11491,-11546,11546,11604,-11433,11546,11492,-11549,11493,11545,-11606,11431,11547,-11549,11493,11605,-11548,11432,11604,-11550,11494,11549,-11607,11606,11541,-11495,11550,11384,-11552,11550,11607,-11496,11495,11607,-11499,11551,11496,-11490,11554,11552,-11437,11552,11553,-11435,11553,11608,-11498,11499,11497,-11609,11498,11607,-11555,11556,11555,-11439,11439,11557,-11557,11609,11557,-11500,11555,11610,-11501,11611,11502,-11501,11440,11558,-11613,11440,11612,-11560,11559,11560,-11502,11558,11502,-11612,11613,11503,-11505,11614,11504,-11561,11562,11445,-11562,11561,11503,-11614,11564,11447,-11563,11563,11505,-11616,11615,11505,-11565,11511,11616,-11507,11565,11506,-11617,11617,11507,-11566,11617,11566,-11508,11508,11566,-11568,11510,11618,-11510,11510,11563,-11620,11511,\r\n11509,-11617,11567,11620,-630,11568,11579,-11456,11568,11454,-11570,11571,11569,-11459,11570,11456,-11578,11457,11572,-11572,11621,11512,-11571,11622,11572,-11513,11623,11513,-11574,11462,11574,-11625,11625,11574,-11514,11626,11514,-11576,11573,11514,-11628,11461,11516,-11577,11628,11515,-11577,11515,11629,-11578,11578,11576,-11517,11624,11578,-11463,11630,11517,-11580,11517,11630,-11519,11630,11519,-11519,11580,11519,-11632,11580,11581,-11521,11465,11632,-11525,11632,11465,-11582,11583,11521,-11469,11633,11522,-11522,11522,11634,-11526,11635,11523,-11583,11636,11583,-11524,11637,11582,-11525,11585,11584,-11471,11525,11638,-11586,11639,11586,-11527,11639,11526,-11585,11527,11529,-11588,11528,11587,-11641,11528,11641,-11589,11642,11529,-11587,11530,11545,-11492,11532,11531,-11479,11589,11532,-11644,11644,11533,-11591,11645,11534,-11590,11646,11590,-11535,11588,11532,-11479,11425,11597,-11592,11594,11592,-11482,11595,11480,-11593,11595,11538,-11481,11593,11647,-11536,11594,11535,-11648,11536,11537,-11649,11593,11536,-11650,11537,11591,-11651,11595,11596,-11483,11530,11596,-11546,11644,11540,-11534,11539,11540,-11652,11652,11597,-11540,11606,11598,-11542,11485,11598,-11654,11653,11486,-11486,11486,11654,-11600,11655,11542,-11600,11600,11542,-11656,11600,11601,-11488,11601,11656,-11544,11657,11602,-11544,11658,11603,-11545,11489,11603,-11552,11544,11602,-11660,11604,11546,-11661,11660,11546,-11549,11545,11661,-11606,11547,11662,-11549,11605,11663,-11548,11549,11604,-11661,11549,11664,-11607,11658,11550,-11552,11607,11550,-11666,11552,11554,-11667,11553,11552,-11668,11668,11608,-11554,11499,11608,-11670,11607,11670,-11555,11556,11610,-11556,11557,11671,-11557,11609,11671,-11558,11669,11609,-11500,11611,11500,-11611,11672,11612,-11559,11673,11559,-11613,11560,11559,-11615,11558,11611,-11675,11614,11613,-11505,11561,11675,-11563,11613,11676,-11562,11564,11562,-11678,11678,11563,-11616,11615,11564,-11678,11679,11565,-11617,11617,11565,-11680,11566,11617,-11621,11620,11567,-11567,11618,11510,-11620,11509,11618,-11680,11678,\r\n11619,-11564,11679,11616,-11510,11620,700,-630,11680,11579,-11569,11680,11568,-11570,11681,11569,-11572,11682,11570,-11578,11683,11571,-11573,11621,11622,-11513,11570,11684,-11622,11572,11622,-11686,11623,11625,-11514,11573,11686,-11624,11624,11574,-11688,11625,11688,-11575,11626,11627,-11515,11575,11689,-11627,11573,11627,-11687,11515,11628,-11630,11690,11628,-11577,11682,11577,-11630,11690,11576,-11579,11578,11624,-11691,11691,11630,-11580,11631,11519,-11631,11580,11631,-11693,11692,11581,-11581,11637,11524,-11633,11632,11581,-11693,11583,11633,-11522,11633,11634,-11523,11634,11693,-11526,11523,11635,-11695,11637,11635,-11583,11636,11695,-11584,11523,11694,-11637,11696,11584,-11586,11693,11638,-11526,11696,11585,-11639,11639,11642,-11587,11639,11584,-11697,11587,11529,-11643,11640,11587,-11698,11698,11528,-11641,11528,11698,-11642,11641,11643,-11589,11588,11643,-11533,11699,11589,-11644,11700,11644,-11591,11646,11534,-11646,11589,11701,-11646,11590,11646,-11703,11650,11591,-11598,11594,11703,-11593,11595,11592,-11705,11705,11647,-11594,11647,11706,-11595,11707,11648,-11538,11536,11648,-11709,11649,11536,-11709,11593,11649,-11706,11707,11537,-11651,11595,11709,-11597,11709,11545,-11597,11644,11651,-11541,11651,11710,-11540,11711,11597,-11653,11652,11539,-11711,11598,11606,-11713,11713,11653,-11599,11486,11653,-11655,11654,11655,-11600,11714,11600,-11656,11601,11600,-11715,5769,11656,-11602,11656,11657,-11544,11657,11659,-11603,11658,11551,-11604,11658,11544,-11716,11544,11659,-11717,11662,11660,-11549,11661,11545,-11710,11605,11661,-11718,11547,11718,-11663,11719,11663,-11606,11663,11718,-11548,11660,11720,-11550,11721,11664,-11550,11606,11664,-11723,11658,11665,-11551,11607,11665,-11671,11666,11554,-11724,11724,11552,-11667,11724,11667,-11553,11725,11553,-11668,11608,11668,-11670,11725,11668,-11554,11670,11723,-11555,11726,11610,-11557,11671,11726,-11557,11727,11671,-11610,11669,11727,-11610,11611,11610,-11729,11672,11729,-11613,11672,11558,-11675,11730,11559,-11674,11673,11612,-11730,11730,11614,-11560,11674,11611,\r\n-11732,11613,11614,-11677,11561,11676,-11676,11732,11562,-11676,11732,11677,-11563,11678,11615,-11734,11615,11677,-11734,11679,11734,-11618,700,11620,-11618,11735,11618,-11620,11618,11736,-11680,11678,11737,-11620,11691,11579,-11681,11681,11680,-11570,11683,11681,-11572,11682,11684,-11571,11572,11685,-11684,11621,11738,-11623,11739,11621,-11685,11740,11685,-11623,11741,11625,-11624,11742,11623,-11687,11687,11574,-11689,11624,11687,-11744,11688,11625,-11745,11627,11626,-11690,11575,11745,-11690,11686,11627,-11747,11629,11628,-11691,11747,11682,-11630,11624,11743,-11691,11691,11631,-11631,11692,11631,-11749,11637,11632,-11750,11749,11632,-11693,11583,11695,-11634,11633,11750,-11635,11634,11751,-11694,11635,11752,-11695,11753,11635,-11638,11754,11695,-11637,11755,11636,-11695,11693,11756,-11639,11638,11757,-11697,11639,11757,-11643,11639,11696,-11758,11758,11587,-11643,11697,11587,-11759,11697,11759,-11641,11759,11698,-11641,11641,11698,-11700,11641,11699,-11644,11699,11701,-11590,11700,11651,-11645,11590,11702,-11701,11646,11645,-11761,11645,11701,-11761,11761,11702,-11647,11650,11597,-11712,11706,11703,-11595,11704,11592,-11704,11595,11704,-11763,11705,11706,-11648,11648,11707,-11764,11764,11708,-11649,11765,11649,-11709,11649,11765,-11706,11650,11711,-11708,11595,11762,-11710,11651,11700,-11711,11652,11766,-11712,11767,11652,-11711,11712,11606,-11723,11712,11768,-11599,11713,11769,-11654,11713,11598,-11769,11654,11653,-11771,11654,11771,-11656,11771,11714,-11656,11714,5755,-11602,5743,11656,-5770,11601,5755,-5770,11657,11656,-11660,11715,11544,-11717,11715,11772,-11659,11656,11716,-11660,11662,11773,-11661,11709,11717,-11662,11719,11605,-11718,11718,11774,-11663,11719,11775,-11664,11718,11663,-11777,11773,11720,-11661,11720,11721,-11550,11721,11777,-11665,11777,11722,-11665,11778,11665,-11659,11670,11665,-11779,11779,11666,-11724,11724,11666,-11780,11724,11780,-11668,11725,11667,-11782,11782,11669,-11669,11725,11782,-11669,11723,11670,-11784,11726,11728,-11611,11671,11784,-11727,11727,11785,-11672,11782,11727,-11670,\r\n11611,11728,-11732,11786,11729,-11673,11672,11674,-11788,11788,11730,-11674,11789,11673,-11730,11730,11676,-11615,11790,11674,-11732,11676,11791,-11676,11675,11792,-11733,11793,11677,-11733,11678,11733,-11738,11733,11677,-11794,11736,11734,-11680,700,11617,-11735,11618,11735,-11737,11735,11619,-11738,11680,11681,-11692,11794,11681,-11684,11747,11684,-11683,11685,11795,-11684,11621,11739,-11739,11622,11738,-11741,11739,11684,-11797,11740,11797,-11686,11625,11741,-11745,11742,11741,-11624,11798,11742,-11687,11687,11688,-11800,11799,11743,-11688,11688,11744,-11801,11746,11627,-11690,11745,11801,-11690,11798,11686,-11747,11802,11629,-11691,11802,11747,-11630,11802,11690,-11744,11631,11691,-11804,11631,11803,-11749,11692,11748,-11750,11637,11749,-11749,11633,11695,-11751,11751,11634,-11751,11693,11751,-11805,11635,11753,-11753,11752,11805,-11695,11753,11637,-11749,11754,11806,-11696,11754,11636,-11808,11808,11636,-11756,11809,11755,-11695,11756,11693,-11805,11756,11757,-11639,11758,11642,-11758,11758,11810,-11698,11811,11759,-11698,11812,11698,-11760,11813,11699,-11699,11701,11699,-11814,11700,11702,-11815,11761,11646,-11761,11760,11701,-11816,11702,11761,-11817,11706,11817,-11704,11703,11817,-11705,11818,11762,-11705,11819,11706,-11706,11707,11820,-11764,11764,11648,-11764,11764,11821,-11709,11821,11765,-11709,11705,11765,-11823,11707,11711,-11821,11762,11823,-11710,11710,11700,-11815,11767,11766,-11653,11824,11711,-11767,11767,11710,-11815,11712,11722,-11769,11713,11825,-11770,11653,11769,-11771,11713,11768,-11826,11771,11654,-11771,11771,11826,-11715,11714,5756,-5756,5743,11716,-11657,11827,11715,-11717,11772,11715,-11829,11772,11778,-11659,11774,11773,-11663,11823,11717,-11710,11823,11719,-11718,11829,11774,-11719,11719,11830,-11776,11775,11831,-11664,11663,11831,-11777,11718,11776,-11830,11832,11720,-11774,11721,11720,-11833,11721,11833,-11778,11777,11834,-11723,11778,11783,-11671,11779,11723,-11836,11724,11779,-11781,11781,11667,-11781,11725,11781,-11837,11782,11725,-11838,11723,11783,-11836,11726,11838,-11729,11785,\r\n11784,-11672,11784,11839,-11727,11727,11840,-11786,11782,11840,-11728,11838,11731,-11729,11789,11729,-11787,11672,11787,-11787,11787,11674,-11791,11676,11730,-11789,11788,11673,-11790,11790,11731,-11842,11788,11791,-11677,11675,11791,-11793,11842,11732,-11793,11732,11842,-11794,11733,11793,-11738,11736,701,-11735,11734,734,-701,11735,11843,-11737,11737,11844,-11736,11681,11803,-11692,11794,11803,-11682,11794,11683,-11796,11747,11845,-11685,11795,11685,-11798,11846,11738,-11740,11740,11738,-11847,11845,11796,-11685,11796,11847,-11740,11740,11848,-11798,11741,11849,-11745,11742,11850,-11742,11798,11851,-11743,11800,11799,-11689,11799,11802,-11744,11852,11800,-11745,11746,11689,-11802,11801,11745,-11854,11854,11798,-11747,11855,11747,-11803,11748,11803,-11857,11695,11806,-11751,11806,11751,-11751,11751,11857,-11805,11858,11752,-11754,11752,11859,-11806,11809,11694,-11806,11753,11748,-11861,11754,11861,-11807,11808,11807,-11637,11754,11807,-11862,11862,11808,-11756,11862,11755,-11810,11756,11804,-11864,11756,11864,-11758,11865,11758,-11758,11865,11810,-11759,11811,11697,-11811,11811,11812,-11760,11812,11813,-11699,11701,11813,-11816,11702,11816,-11815,11761,11760,-11867,11760,11815,-11867,11761,11867,-11817,11868,11817,-11707,11704,11817,-11819,11818,11823,-11763,11819,11868,-11707,11705,11822,-11820,11869,11763,-11821,11764,11763,-11871,11871,11821,-11765,11821,11872,-11766,11872,11822,-11766,11824,11820,-11712,11767,11873,-11767,11766,11874,-11825,11875,11767,-11815,11834,11768,-11723,5759,11769,-11826,11769,11876,-11771,11825,11768,-5804,11876,11771,-11771,11826,11771,-5758,11826,5756,-11715,11716,5743,-11828,11827,11828,-11716,11828,11877,-11773,11772,11877,-11779,11773,11774,-11830,11823,11830,-11720,11775,11830,-11879,11831,11775,-11880,11879,11776,-11832,11829,11776,-11881,11773,11881,-11833,11721,11832,-11834,11882,11777,-11834,11834,11777,-11883,11783,11778,-11878,11779,11835,-11884,11883,11780,-11780,11884,11781,-11781,11781,11884,-11837,11725,11836,-11886,11837,11725,-11886,11782,11837,-11887,11887,11835,-11784,\r\n11839,11838,-11727,11785,11839,-11785,11888,11785,-11841,11840,11782,-11887,11838,11841,-11732,11786,11889,-11790,11786,11787,-11891,11787,11790,-11891,11789,11891,-11789,11790,11841,-11893,11788,11893,-11792,11894,11792,-11792,11842,11792,-11895,11895,11793,-11843,11737,11793,-11896,701,11736,-11844,11734,701,-735,11735,11844,-11844,11896,11844,-11738,11794,11856,-11804,11794,11795,-11898,11747,11898,-11846,11795,11797,-11898,11847,11846,-11740,11740,11846,-11849,11899,11796,-11846,11796,11900,-11848,11797,11848,-11902,11850,11849,-11742,11849,11852,-11745,11742,11851,-11851,11798,11854,-11852,11800,11902,-11800,11802,11799,-11903,11852,11903,-11801,11904,11746,-11802,11801,11853,-11906,11854,11746,-11905,11855,11898,-11748,11902,11855,-11803,11856,11860,-11749,11857,11751,-11807,11804,11857,-11907,11752,11858,-11860,11858,11753,-11861,11859,11809,-11806,11857,11806,-11862,11808,11862,-11808,11807,11907,-11862,11809,11908,-11863,11863,11804,-11910,11756,11863,-11865,11864,11865,-11758,11810,11865,-11911,11810,11910,-11812,11911,11812,-11812,11812,11912,-11814,11912,11815,-11814,11875,11814,-11817,11867,11761,-11867,11913,11866,-11816,11914,11816,-11868,11915,11817,-11869,11915,11818,-11818,11823,11818,-11831,11819,11916,-11869,11819,11822,-11917,11869,11870,-11764,11820,11917,-11870,11871,11764,-11871,11871,11918,-11822,11872,11821,-11919,11872,11916,-11823,11820,11824,-11918,11767,11875,-11874,11766,11873,-11875,11874,11919,-11825,11834,11920,-11769,5759,11876,-11770,5803,5759,-11826,5803,11768,-5805,11771,11876,-5758,5756,11826,-5758,5743,5742,-11828,11828,11827,-11922,11828,11922,-11878,11773,11829,-11882,11878,11830,-11924,11878,11924,-11776,11879,11775,-11925,11776,11879,-11926,11776,11925,-11881,11829,11880,-11927,11881,11927,-11833,11833,11832,-11929,11882,11833,-11930,11834,11882,-11921,11877,11887,-11784,11883,11835,-11888,11883,11930,-11781,11884,11780,-11931,11836,11884,-11932,11836,11931,-11886,11837,11885,-11933,11886,11837,-11934,11838,11839,-11842,11934,11839,-11786,11888,11935,-11786,11840,11886,-11889,\r\n11786,11936,-11890,11789,11889,-11892,11786,11890,-11937,11937,11890,-11791,11893,11788,-11892,11934,11892,-11842,11937,11790,-11893,11938,11791,-11894,11894,11791,-11939,11894,11939,-11843,11940,11895,-11843,11737,11895,-11897,11843,735,-702,11843,11844,-736,11844,11896,-11942,11794,11897,-11857,11845,11898,-11943,11897,11797,-11944,11847,11944,-11847,11848,11846,-11945,11899,11900,-11797,11845,11942,-11900,11945,11847,-11901,11848,11946,-11902,11797,11901,-11944,11947,11849,-11851,11948,11852,-11850,11949,11850,-11852,11950,11851,-11855,11903,11902,-11801,11903,11852,-11952,11904,11801,-11906,11952,11905,-11854,11904,11953,-11855,11855,11954,-11899,11855,11902,-11955,11955,11860,-11857,11861,11906,-11858,11804,11906,-11910,11858,11956,-11860,11858,11860,-11956,11859,11957,-11810,11958,11807,-11863,11958,11907,-11808,11861,11907,-11960,11908,11809,-11958,11960,11862,-11909,11909,11961,-11864,11864,11863,-11962,11865,11864,-11911,11811,11910,-11963,11912,11812,-11912,11811,11962,-11912,11912,11963,-11816,11875,11816,-11965,11913,11867,-11867,11913,11815,-11964,11914,11964,-11817,11914,11867,-11966,11868,11966,-11916,11818,11915,-11924,11923,11830,-11819,11868,11916,-11967,11967,11870,-11870,11967,11869,-11918,11871,11870,-11968,11918,11871,-11969,11872,11918,-11970,11970,11916,-11873,11917,11824,-11920,11875,11971,-11874,11972,11874,-11874,11973,11919,-11875,11768,11920,-5805,11876,5759,-5758,11827,5742,-11922,11828,11921,-11975,11922,11828,-11975,11877,11922,-11888,11926,11881,-11830,11878,11923,-11976,11924,11878,-11977,11879,11924,-11978,11879,11977,-11926,11925,11926,-11881,11881,11978,-11928,11979,11832,-11928,11979,11928,-11833,11833,11928,-11981,11929,11833,-11981,11882,11929,-11981,11882,11980,-11921,11981,11883,-11888,11883,11982,-11931,11930,11931,-11885,11885,11931,-11984,11983,11932,-11886,11933,11837,-11933,11888,11886,-11934,11934,11841,-11840,11785,11935,-11935,11935,11888,-11985,11936,11985,-11890,11889,11986,-11892,11936,11890,-11988,11937,11988,-11891,11893,11891,-11987,11989,11892,-11935,11892,11990,\r\n-11938,11938,11893,-11992,11938,11992,-11895,11939,11894,-11993,11940,11842,-11940,11940,11896,-11896,11844,799,-736,11941,11896,-11941,11844,11941,-800,11955,11856,-11898,11898,11993,-11943,11897,11943,-11956,11945,11944,-11848,11848,11944,-11947,11900,11899,-11995,11899,11942,-11996,11945,11900,-11997,11997,11901,-11947,11997,11943,-11902,11947,11948,-11850,11998,11947,-11851,11948,11951,-11853,11949,11998,-11851,11950,11949,-11852,11953,11950,-11855,11903,11954,-11903,11903,11951,-12000,11905,12000,-11905,11905,11952,-12002,11904,12000,-11954,11993,11898,-11955,11906,11861,-11960,11909,11906,-12003,11858,11955,-11957,12003,11859,-11957,11859,12003,-11958,11960,11958,-11863,12004,11907,-11959,11959,11907,-12005,12005,11908,-11958,11960,11908,-12006,12006,11961,-11910,11961,12007,-11865,11910,11864,-11963,11912,11911,-12009,12009,11911,-11963,12008,11963,-11913,11971,11875,-11965,11913,11965,-11868,11963,12010,-11914,11964,11914,-12012,11965,12012,-11915,11966,11975,-11916,11975,11923,-11916,11970,11966,-11917,12013,11967,-11918,11871,11967,-11969,11918,11968,-12015,11969,11918,-12015,11969,11970,-11873,11917,11919,-12014,11972,11873,-11972,11972,12015,-11875,11973,12016,-11920,12017,11973,-11875,5804,11920,-12019,11921,5742,-5693,11974,11921,-5693,11974,5666,-11923,11887,11922,-11982,11881,11926,-11979,11975,11976,-11879,11976,12019,-11925,12019,11977,-11925,11977,12020,-11926,11925,11978,-11927,11978,12021,-11928,11979,11927,-12023,11928,11979,-12024,11980,11928,-12025,12018,11920,-11981,11981,12025,-11884,11982,11883,-12026,11982,12026,-11931,11930,12027,-11932,11931,12028,-11984,11983,12029,-11933,11933,11932,-11985,11933,11984,-11889,11935,11989,-11935,12030,11935,-11985,11985,11936,-12032,11889,11985,-11987,11988,11987,-11891,11987,12031,-11937,11937,12032,-11989,11986,11991,-11894,11989,11990,-11893,11990,12033,-11938,12034,11938,-11992,11938,12035,-11993,12036,11939,-11993,11939,12037,-11941,12037,11941,-11941,11941,888,-800,12038,11942,-11994,11956,11955,-11944,12039,11944,-11946,12039,11946,-11945,11994,\r\n11899,-12041,11900,11994,-11997,11995,11942,-12039,11995,12040,-11900,12039,11945,-11997,11997,11946,-12040,11997,12041,-11944,11998,11948,-11948,12042,11951,-11949,11998,11949,-12044,11950,12044,-11950,11950,11953,-12046,11903,12046,-11955,11999,11951,-12048,11903,11999,-12047,11905,12001,-12001,12048,12001,-11953,12049,11953,-12001,12046,11993,-11955,11906,11959,-12003,12050,11909,-12003,12003,11956,-12042,11957,12003,-12052,11958,11960,-12053,12004,11958,-12054,12004,12054,-11960,11957,12055,-12006,12005,12056,-11961,12007,11961,-12007,12006,11909,-12051,11962,11864,-12008,12057,12008,-11912,12057,11911,-12010,11962,12007,-12010,12008,12010,-11964,11971,11964,-12012,11913,12058,-11966,11913,12010,-12059,11914,12059,-12012,12058,12012,-11966,12012,12060,-11915,11975,11966,-12062,12062,11966,-11971,12013,12063,-11968,12063,11968,-11968,12014,11968,-12065,11969,12014,-12062,12062,11970,-11970,12013,11919,-12017,12065,11972,-11972,11972,12065,-12016,12017,11874,-12016,11973,12066,-12017,12067,11973,-12018,5825,5804,-12019,11974,5692,-5668,11974,5667,-5667,11922,5666,-12069,11981,11922,-12070,12070,11976,-11976,11976,12070,-12020,12071,11977,-12020,12072,12020,-11978,11978,11925,-12021,12020,12021,-11979,12073,11927,-12022,12073,12022,-11928,11979,12022,-12075,12023,11979,-12075,11928,12023,-12025,11980,12024,-12019,11981,12075,-12026,12075,11982,-12026,11982,12076,-12027,11930,12026,-12028,12027,12028,-11932,11983,12028,-12078,11983,12077,-12030,11984,11932,-12030,11935,12078,-11990,12030,12079,-11936,12029,12030,-11985,12080,11985,-12032,12081,11986,-11986,12031,11987,-11989,12033,12032,-11938,12082,11988,-12033,11986,12081,-11992,12083,11990,-11990,11990,12084,-12034,11938,12034,-12036,12034,11991,-12086,11992,12035,-12087,12036,12037,-11940,12036,11992,-12087,888,11941,-12038,11993,12046,-12039,12041,11956,-11944,11994,12040,-12088,12087,11996,-11995,11995,12038,-12089,12088,12040,-11996,12039,11996,-12090,11997,12039,-12091,12090,12041,-11998,11998,12091,-11949,12042,12047,-11952,12091,12042,-11949,12043,11949,\r\n-12045,11998,12043,-12092,11950,12045,-12045,12045,11953,-12050,12092,11999,-12048,12046,11999,-12094,12001,12094,-12001,12048,12095,-12002,12094,12049,-12001,12054,12002,-11960,12050,12002,-12055,12003,12041,-12091,12051,12003,-12091,12051,12055,-11958,12052,11960,-12097,12052,12053,-11959,12004,12053,-12098,12098,12054,-12005,12099,12005,-12056,12056,12005,-12100,12056,12100,-11961,12101,12007,-12007,12101,12006,-12051,12008,12057,-12103,12009,12103,-12058,12009,12007,-12104,12008,12102,-12011,11971,12011,-12066,12058,12010,-12105,11914,12060,-12060,12011,12059,-12066,12058,12105,-12013,12012,12105,-12061,12062,12061,-11967,11975,12061,-12071,12013,12106,-12064,12107,11968,-12064,12107,12064,-11969,12014,12064,-12109,12061,12014,-12109,11969,12061,-12063,12013,12016,-12107,12109,12015,-12066,12110,12017,-12016,12066,11973,-12068,12111,12016,-12067,12017,12112,-12068,12018,12113,-5826,12068,5666,-5662,12069,11922,-12069,12075,11981,-12070,12070,12114,-12020,12072,11977,-12072,12071,12019,-12116,12116,12020,-12073,12020,12116,-12022,12117,12073,-12022,12022,12073,-12119,12022,12118,-12075,12023,12074,-12120,12023,12113,-12025,12018,12024,-12114,12120,11982,-12076,12076,11982,-12121,12121,12026,-12077,12121,12027,-12027,12122,12028,-12028,12122,12077,-12029,12029,12077,-12124,11935,12079,-12079,12083,11989,-12079,12030,12124,-12080,12123,12030,-12030,12081,11985,-12081,12080,12031,-12126,12031,11988,-12083,12033,12126,-12033,12082,12032,-12128,12085,11991,-12082,11990,12083,-12129,12128,12084,-11991,12084,12126,-12034,12034,12129,-12036,12034,12085,-12130,12130,12086,-12036,12036,916,-12038,12131,12036,-12087,888,12037,-917,12132,12038,-12047,12133,12087,-12041,11996,12087,-12135,12088,12038,-12133,12135,12040,-12089,11996,12134,-12090,12039,12089,-12137,12136,12090,-12040,12091,12047,-12043,12043,12044,-12138,12138,12091,-12044,8264,12044,-12046,12049,8263,-12046,12092,12093,-12000,12092,12047,-12140,12046,12093,-12141,12001,12095,-12095,12095,12048,-12142,12142,12049,-12095,12143,12050,-12055,12136,12051,-12091,12136,\r\n12055,-12052,12096,11960,-12101,12144,12052,-12097,12144,12053,-12053,12144,12097,-12054,12098,12004,-12098,12098,12143,-12055,12055,12145,-12100,12056,12099,-12147,12056,12146,-12101,12007,12101,-12104,12143,12101,-12051,12057,12103,-12103,12102,12104,-12011,12058,12104,-12106,12060,12147,-12060,12065,12059,-12110,12105,12148,-12061,12149,12070,-12062,12106,12150,-12064,12150,12107,-12064,12064,12107,-12152,12064,12151,-12109,12061,12108,-12150,12106,12016,-12112,12110,12015,-12110,12110,12112,-12018,12152,12066,-12068,12111,12066,-12154,12152,12067,-12113,5869,5825,-12114,5661,12069,-12069,12154,12075,-12070,12114,12070,-12156,12114,12115,-12020,12156,12072,-12072,12115,12157,-12072,12156,12116,-12073,12117,12021,-12117,12073,12117,-12119,12118,12119,-12075,12113,12023,-12120,12120,12075,-12155,12076,12120,-12159,12121,12076,-12160,12121,12122,-12028,12160,12077,-12123,12077,12161,-12124,12078,12079,-12163,12083,12078,-12164,12164,12124,-12031,12079,12124,-12163,12164,12030,-12124,12165,12081,-12081,12125,12031,-12083,12166,12080,-12126,12127,12032,-12127,12167,12082,-12128,12085,12081,-12166,12083,12163,-12129,12128,12168,-12085,12084,12169,-12127,12130,12035,-12130,12085,12170,-12130,12086,12130,-12172,916,12036,-12132,12172,12131,-12087,12132,12046,-12141,12133,12173,-12088,12135,12133,-12041,12173,12134,-12088,12088,12132,-12175,12135,12088,-12175,12089,12134,-12176,12089,12175,-12137,12139,12047,-12092,8264,12137,-12045,12043,12137,-12177,12138,12177,-12092,12138,12043,-12177,8264,12045,-8264,12049,12142,-8264,12093,12092,-12141,12178,12092,-12140,12094,12095,-12180,12141,12180,-12096,12094,12179,-12143,12055,12136,-12176,12096,12100,-12182,12144,12096,-12183,12097,12144,-12184,12184,12098,-12098,12185,12143,-12099,12055,12175,-12146,12145,12186,-12100,12146,12099,-12187,12187,12100,-12147,12143,12103,-12102,12188,12102,-12104,12104,12102,-12190,12190,12105,-12105,12147,12060,-12192,12059,12147,-12193,12059,12193,-12110,12105,12190,-12149,12060,12148,-12192,12149,12194,-12071,12106,12195,-12151,12107,12150,\r\n-12197,12151,12107,-12198,12108,12151,-12199,12108,12198,-12150,12106,12111,-12196,12109,12193,-12111,12199,12112,-12111,12152,12153,-12067,12200,12111,-12154,12152,12112,-12202,5895,5869,-12114,5712,12069,-5662,12154,12069,-12203,12070,12194,-12156,12155,12115,-12115,12071,12203,-12157,12115,12155,-12158,12071,12157,-12204,12204,12116,-12157,12117,12116,-12205,12205,12118,-12118,12118,12206,-12120,12119,12207,-12114,12154,12208,-12121,12120,12208,-12159,12158,12159,-12077,12160,12121,-12160,12121,12160,-12123,12209,12077,-12161,12209,12161,-12078,12161,12164,-12124,12163,12078,-12163,12164,12210,-12125,12211,12162,-12125,12080,12212,-12166,12166,12125,-12083,12080,12166,-12213,12127,12126,-12170,12082,12167,-12167,12167,12127,-12170,12170,12085,-12166,12163,12213,-12129,12128,12214,-12169,12215,12084,-12169,12084,12215,-12170,12130,12129,-12217,12217,12129,-12171,12218,12171,-12131,12171,12172,-12087,916,12131,-973,12131,12172,-1023,12174,12132,-12141,12219,12173,-12134,12220,12133,-12136,12173,12221,-12135,12135,12174,-12223,12175,12134,-12222,12177,12139,-12092,12137,8264,-8224,12137,8223,-12177,12223,12177,-12139,12223,12138,-12177,8176,8263,-12143,12178,12140,-12093,12177,12178,-12140,12095,12224,-12180,12180,12141,-8427,12095,12180,-12225,12142,12179,-12225,12181,12100,-12188,12096,12181,-12183,12144,12182,-12184,12184,12097,-12184,12098,12184,-12186,12143,12185,-12226,12175,12221,-12146,12226,12186,-12146,12227,12146,-12187,12187,12146,-12229,12143,12225,-12104,12229,12102,-12189,12188,12103,-12226,12229,12189,-12103,12104,12189,-12191,12230,12147,-12192,12231,12192,-12148,12059,12192,-12233,12059,12232,-12194,12190,12191,-12149,12194,12149,-12199,12150,12195,-12197,12107,12196,-12234,12107,12233,-12198,12151,12197,-12199,12200,12195,-12112,12199,12110,-12194,12199,12234,-12113,12152,12235,-12154,12153,12235,-12201,12201,12112,-12237,12152,12201,-12236,12207,5895,-12114,5712,12202,-12070,12154,12202,-12209,12237,12155,-12195,12238,12156,-12204,12155,12239,-12158,12157,12240,-12204,12156,12238,-12205,12205,12117,\r\n-12205,12118,12205,-12207,12119,12206,-12208,12208,12241,-12159,12158,12242,-12160,12160,12159,-12243,12160,12243,-12210,12209,12244,-12162,12164,12161,-12211,12163,12162,-12214,12210,12211,-12125,12211,12245,-12163,12170,12165,-12213,12212,12166,-12247,12166,12167,-12247,12167,12169,-12248,12214,12128,-12214,12214,12248,-12169,12249,12215,-12169,12215,12247,-12170,12250,12216,-12130,12218,12130,-12217,12250,12129,-12218,12217,12170,-12252,1070,12171,-12219,12172,12171,-1023,972,12131,-1023,12252,12174,-12141,12219,12253,-12174,12220,12219,-12134,12222,12220,-12136,12173,12254,-12222,12255,12222,-12175,12256,12176,-8224,12177,12223,-12258,12256,12223,-12177,8224,8176,-12143,12178,12258,-12141,12259,12178,-12178,8308,12180,-8427,12180,8308,-12225,8177,12142,-12225,12187,12260,-12182,12261,12182,-12182,12262,12183,-12183,12263,12184,-12184,12184,12264,-12186,12185,12264,-12226,12221,12226,-12146,12226,12227,-12187,12227,12265,-12147,12146,12265,-12229,12187,12228,-12261,12264,12229,-12189,12225,12264,-12189,12266,12189,-12230,12266,12190,-12190,12267,12147,-12231,12266,12230,-12192,12232,12192,-12232,12147,12268,-12232,12232,12269,-12194,12190,12266,-12192,12237,12194,-12199,12196,12195,-12271,12271,12233,-12197,12233,12272,-12198,12198,12197,-12238,12200,12270,-12196,12199,12193,-12270,12273,12234,-12200,12112,12234,-12237,12274,12200,-12236,12236,12275,-12202,12275,12235,-12202,12207,5943,-5896,5712,5738,-12203,12276,12208,-12203,12155,12237,-12240,12238,12203,-12278,12157,12239,-12241,12203,12240,-12279,12238,12277,-12205,12204,12279,-12206,12280,12206,-12206,12207,12206,-12282,12208,12276,-12242,12241,12282,-12159,12282,12242,-12159,12160,12242,-12244,12283,12209,-12244,12209,12283,-12245,12244,12284,-12162,12284,12210,-12162,12213,12162,-12246,12210,12285,-12212,12285,12245,-12212,12286,12170,-12213,12286,12212,-12247,12287,12246,-12168,12287,12167,-12248,12213,12288,-12215,12248,12214,-12289,12248,12289,-12169,12215,12249,-12291,12289,12249,-12169,12247,12215,-12291,12250,1212,-12217,12216,1176,-12219,12250,12217,\r\n-12252,12251,12170,-12292,12171,1070,-1023,12218,1135,-1071,12252,12255,-12175,12252,12140,-12259,12219,12292,-12254,12173,12253,-12255,12219,12220,-12223,12226,12221,-12255,12222,12255,-12294,12256,8223,-8223,12223,12294,-12258,12177,12257,-12260,12256,12294,-12224,8177,8224,-12143,12178,12295,-12259,12295,12178,-12260,12224,8308,-8266,12224,8265,-8178,12181,12260,-12297,12262,12182,-12262,12181,12296,-12262,12263,12183,-12263,12263,12297,-12185,12264,12184,-12298,12227,12226,-12299,12299,12265,-12228,12228,12265,-12301,12260,12228,-12302,12302,12229,-12265,12266,12229,-12303,12147,12267,-12269,12230,12303,-12268,12230,12266,-12305,12305,12232,-12232,12231,12268,-12307,12305,12269,-12233,12307,12196,-12271,12271,12308,-12234,12309,12271,-12197,12272,12233,-12309,12272,12237,-12198,12270,12200,-12311,12199,12269,-12312,12273,12312,-12235,12199,12311,-12274,12312,12236,-12235,12274,12310,-12201,12274,12235,-12314,12312,12275,-12237,12275,12313,-12236,12207,12314,-5944,12202,5738,-12316,12315,12276,-12203,12272,12239,-12238,12316,12277,-12204,12240,12239,-12318,12318,12278,-12241,12316,12203,-12279,12277,12279,-12205,12319,12205,-12280,12206,12280,-12282,12280,12205,-12320,12281,12314,-12208,12276,12320,-12242,12282,12241,-12322,12282,12322,-12243,12242,12322,-12244,12283,12243,-12324,12283,12324,-12245,12325,12284,-12245,12210,12284,-12327,12213,12245,-12328,12210,12326,-12286,12327,12245,-12286,12291,12170,-12287,12328,12286,-12247,12287,12329,-12247,12247,12330,-12288,12213,12331,-12289,12288,12332,-12249,12333,12289,-12249,12249,12289,-12291,12334,12247,-12291,12335,1212,-12251,12216,1212,-1177,12218,1176,-1136,12335,12250,-12252,12251,12291,-12337,12255,12252,-12338,12252,12258,-12338,12338,12292,-12220,12253,12292,-12340,12253,12339,-12255,12338,12219,-12223,12298,12226,-12255,12255,12340,-12294,12341,12222,-12294,12256,8222,-8169,12259,12257,-12295,12294,12256,-12343,12337,12258,-12296,12259,12343,-12296,12344,12296,-12261,12296,12262,-12262,12345,12263,-12263,12297,12263,-12347,12302,12264,-12298,12347,12227,\r\n-12299,12299,12348,-12266,12349,12299,-12228,12348,12300,-12266,12300,12301,-12229,12344,12260,-12302,12302,12304,-12267,12268,12267,-12351,12230,12304,-12304,12351,12267,-12304,12231,12306,-12306,12268,12350,-12307,12352,12269,-12306,12309,12196,-12308,12307,12270,-12354,12308,12271,-12355,12309,12355,-12272,12272,12308,-12240,12353,12270,-12311,12352,12311,-12270,12312,12273,-12357,12311,12357,-12274,12310,12274,-12359,12359,12274,-12314,12360,12275,-12313,12360,12313,-12276,5943,12314,-5971,12315,5738,-5738,12276,12315,-12321,12361,12277,-12317,12354,12317,-12240,12318,12240,-12318,12362,12278,-12319,12363,12316,-12279,12277,12364,-12280,12364,12319,-12280,12280,12365,-12282,12280,12319,-12367,12281,12367,-12315,5854,12241,-12321,12321,12241,-5855,12282,12321,-12369,12322,12282,-12370,12323,12243,-12323,12323,12324,-12284,12325,12244,-12325,12325,12370,-12285,12370,12326,-12285,12331,12213,-12328,12326,12371,-12286,12327,12285,-12373,12373,12291,-12287,12286,12328,-12374,12329,12328,-12247,12330,12329,-12288,12247,12334,-12331,12288,12331,-12375,12374,12332,-12289,12248,12332,-12334,12333,12375,-12290,12290,12289,-12376,12376,12334,-12291,12335,1222,-1213,12377,12335,-12252,12291,12378,-12337,12251,12336,-12380,12255,12337,-12341,12338,12380,-12293,12339,12292,-12381,12339,12298,-12255,12338,12222,-12342,12341,12293,-12341,8168,12342,-12257,12381,12259,-12295,12381,12294,-12343,12295,12382,-12338,12259,12381,-12344,12295,12343,-12383,12296,12344,-12384,12296,12383,-12263,12345,12346,-12264,12262,12383,-12346,12297,12346,-12385,12297,12385,-12303,12347,12386,-12228,12347,12298,-12340,12387,12348,-12300,12387,12299,-12350,12349,12227,-12387,12348,12388,-12301,12300,12389,-12302,12390,12344,-12302,12304,12302,-12386,12351,12350,-12268,12391,12303,-12305,12351,12303,-12392,12305,12306,-12393,12393,12306,-12351,12305,12392,-12353,12394,12309,-12308,12394,12307,-12354,12355,12354,-12272,12308,12354,-12240,12309,12395,-12356,12353,12310,-12397,12397,12311,-12353,12398,12356,-12274,12312,12356,-12361,12357,12311,-12398,\r\n12398,12273,-12358,12359,12358,-12275,12399,12310,-12359,12359,12313,-12401,12400,12313,-12361,12314,12367,-5971,5788,12315,-5738,5788,12320,-12316,12361,12401,-12278,12361,12316,-12364,12355,12317,-12355,12318,12317,-12356,12363,12278,-12363,12362,12318,-12403,12277,12401,-12365,12319,12364,-12404,12280,12366,-12366,12281,12365,-12368,12366,12319,-12405,5788,5854,-12321,12321,5854,-5876,12321,5875,-12369,12282,12368,-12406,12369,12282,-12406,12406,12322,-12370,12322,12406,-12324,12323,12407,-12325,12325,12324,-12409,12325,12409,-12371,12326,12370,-12411,12372,12331,-12328,12326,12410,-12372,12285,12371,-12373,12291,12373,-12379,12373,12328,-12379,12329,12411,-12329,12412,12329,-12331,12330,12334,-12377,12374,12331,-12414,12332,12374,-12415,12332,12415,-12334,12333,12416,-12376,12375,12417,-12291,12376,12290,-12418,12335,12377,-1223,12251,12379,-12378,12418,12336,-12379,12418,12379,-12337,12337,12419,-12341,12420,12380,-12339,12347,12339,-12381,12338,12341,-12422,12422,12341,-12341,8168,12381,-12343,12337,12382,-12420,12381,7999,-12344,12343,12423,-12383,12383,12344,-12425,12425,12346,-12346,12426,12345,-12384,12384,12346,-12428,12297,12384,-12386,12347,12380,-12387,12348,12387,-12389,12349,12428,-12388,12349,12386,-12430,12300,12388,-12390,12390,12301,-12390,12424,12344,-12391,12391,12304,-12386,12350,12351,-12431,12391,12431,-12352,12432,12392,-12307,12432,12306,-12394,12430,12393,-12351,12352,12392,-12433,12394,12395,-12310,12353,12433,-12395,12318,12355,-12396,12396,12310,-12400,12433,12353,-12397,12397,12352,-12435,12356,12398,-12361,12397,12435,-12358,12398,12357,-12437,12359,12437,-12359,12438,12399,-12359,12400,12439,-12360,12440,12400,-12361,5970,12367,-12366,12361,12441,-12402,12442,12361,-12364,12443,12363,-12363,12402,12318,-12396,12443,12362,-12403,12403,12364,-12402,12404,12319,-12404,6027,12365,-12367,6027,12366,-12405,5875,5949,-12369,5949,12405,-12369,12405,12444,-12370,12406,12369,-12445,12407,12323,-12407,6125,12324,-12408,6125,12408,-12325,12325,12408,-12410,12370,12409,-12446,12410,12370,-12446,\r\n12413,12331,-12373,12410,12446,-12372,12446,12372,-12372,12378,12328,-12448,12411,12329,-12413,12328,12411,-12448,12412,12330,-12377,12374,12413,-12449,12448,12414,-12375,12449,12332,-12415,12332,12449,-12416,12333,12415,-12417,12450,12375,-12417,12417,12375,-12451,12417,12451,-12377,12377,1251,-1223,12379,12452,-12378,12418,12378,-12454,12454,12379,-12419,12455,12340,-12420,12420,12386,-12381,12456,12420,-12339,12422,12421,-12342,12456,12338,-12422,12455,12422,-12341,8124,12381,-8169,12423,12419,-12383,12381,8124,-8000,12457,12343,-8000,12343,12458,-12424,12383,12424,-12460,12425,12427,-12347,12426,12425,-12346,12383,12459,-12427,12384,12427,-12461,12385,12384,-12392,12461,12388,-12388,12349,12462,-12429,12428,12463,-12388,12420,12429,-12387,12349,12429,-12463,12388,12464,-12390,12390,12389,-12465,12390,12464,-12425,12351,12431,-12431,12391,12460,-12432,12432,12393,-12466,12430,12466,-12394,12432,12434,-12353,12467,12395,-12395,12467,12394,-12434,12468,12396,-12400,12433,12396,-12470,12397,12434,-12436,12440,12360,-12399,12435,12470,-12358,12470,12436,-12358,12398,12436,-12472,12359,12439,-12438,12472,12358,-12438,12468,12399,-12439,12438,12358,-12474,12400,12440,-12440,6027,5970,-12366,12474,12441,-12362,12441,12475,-12402,12442,12474,-12362,12442,12363,-12444,12467,12402,-12396,12402,12476,-12444,12403,12401,-12476,12404,12403,-12476,6027,12404,-6089,12405,5949,-6006,12477,12444,-12406,12406,12444,-12479,6064,12407,-12407,6125,12407,-6065,12408,6125,-6207,12409,12408,-12480,12445,12409,-12481,12445,12481,-12411,12413,12372,-12483,12410,12481,-12447,12483,12372,-12447,12378,12447,-12485,12411,12412,-12486,12447,12411,-12487,12487,12412,-12377,12488,12448,-12414,12448,12489,-12415,12414,12490,-12450,12491,12415,-12450,12415,12492,-12417,12450,12416,-12494,12417,12450,-12452,12451,12494,-12377,12377,12452,-1252,12452,12379,-12455,12484,12453,-12379,12453,12495,-12419,12495,12454,-12419,12455,12419,-12497,12497,12420,-12457,12456,12421,-12423,12455,12498,-12423,12423,12496,-12420,12457,12499,-12344,7885,12457,-8000,\r\n12458,12343,-12500,12423,12458,-12501,12424,12464,-12460,12501,12427,-12426,12502,12425,-12427,12503,12426,-12460,12427,12501,-12461,12384,12460,-12392,12504,12388,-12462,12461,12387,-12464,12428,12462,-12464,12497,12429,-12421,12462,12429,-12506,12388,12504,-12465,12430,12431,-12507,12460,12506,-12432,12465,12393,-12467,12465,12507,-12433,12466,12430,-12509,12432,12507,-12435,12433,12469,-12468,12468,12469,-12397,12434,12509,-12436,12398,12471,-12441,12510,12470,-12436,12510,12436,-12471,12471,12436,-12512,12437,12439,-12513,12472,12473,-12359,12437,12513,-12473,12468,12438,-12515,12514,12438,-12474,12440,12512,-12440,12474,12515,-12442,12441,12516,-12476,12474,12442,-12518,12442,12443,-12518,12467,12476,-12403,12517,12443,-12477,12518,12404,-12476,12519,6088,-12405,6005,12477,-12406,12444,12477,-12479,12406,12478,-6065,12408,6206,-12480,12409,12479,-12521,12520,12480,-12410,12445,12480,-12522,12445,12521,-12482,12482,12372,-12484,12413,12482,-12523,12481,12523,-12447,12446,12524,-12484,12525,12484,-12448,12487,12485,-12413,12486,12411,-12486,12526,12447,-12487,12487,12376,-12495,12488,12489,-12449,12413,12522,-12489,12414,12489,-12528,12414,12527,-12491,12528,12449,-12491,12415,12491,-12493,12491,12449,-12529,12492,12493,-12417,12451,12450,-12494,12451,12529,-12495,12452,1281,-1252,12454,12530,-12453,12484,12531,-12454,12532,12495,-12454,12454,12495,-12534,12496,12498,-12456,12422,12497,-12457,12422,12498,-12498,12496,12423,-12501,12457,7885,-12500,12458,12499,-12501,12504,12459,-12465,12502,12501,-12426,12426,12503,-12503,12459,12534,-12504,12501,12535,-12461,12504,12461,-12537,12537,12461,-12464,12538,12463,-12463,12539,12429,-12498,12429,12540,-12506,12462,12505,-12539,12506,12508,-12431,12460,12535,-12507,12465,12466,-12542,12465,12541,-12508,12542,12466,-12509,12507,12543,-12435,12467,12469,-12477,12468,12544,-12470,12543,12509,-12435,12510,12435,-12510,12440,12471,-12513,12510,12511,-12437,12545,12471,-12512,12437,12512,-12514,12546,12473,-12473,12472,12513,-12548,12514,12548,-12469,12514,12473,-12547,12517,\r\n12515,-12475,12515,12516,-12442,12518,12475,-12517,12544,12517,-12477,12519,12404,-12519,12549,6088,-12520,12477,6005,-6065,12478,12477,-6065,6236,12479,-6207,12520,12479,-6328,12550,12480,-12521,12521,12480,-12551,12521,12551,-12482,12482,12483,-12553,12522,12482,-12554,12481,12551,-12524,12446,12523,-12525,12483,12524,-12553,12525,12531,-12485,12525,12447,-12527,12487,12554,-12486,12486,12485,-12555,12526,12486,-12556,12494,12556,-12488,12557,12489,-12489,12488,12522,-12558,12557,12527,-12490,12527,12558,-12491,12490,12558,-12529,12559,12492,-12492,12491,12528,-12561,12492,12561,-12494,12529,12451,-12494,12529,12556,-12495,12530,1281,-12453,12530,12454,-12534,12532,12453,-12532,12495,12532,-12534,12496,12562,-12499,12498,12563,-12498,12562,12496,-12501,12564,12499,-7886,12500,12499,-12566,12504,12534,-12460,12502,12566,-12502,12503,12566,-12503,12503,12534,-12568,12568,12535,-12502,12461,12569,-12537,12534,12504,-12537,12537,12569,-12462,12537,12463,-12571,12538,12570,-12464,12429,12539,-12541,12539,12497,-12564,12505,12540,-12572,12505,12571,-12539,12506,12572,-12509,12506,12535,-12573,12573,12541,-12467,12507,12541,-12544,12573,12466,-12543,12572,12542,-12509,12544,12476,-12470,12548,12544,-12469,12574,12509,-12544,12574,12510,-12510,12471,12575,-12513,12574,12511,-12511,12545,12575,-12472,12574,12545,-12512,12576,12513,-12513,12472,12547,-12547,12513,12577,-12548,12514,12578,-12549,12514,12546,-12580,12517,12580,-12516,12581,12516,-12516,12516,12549,-12519,12517,12544,-12581,12519,12518,-12550,12549,6117,-6089,6236,6327,-12480,6327,12582,-12521,12520,12582,-12551,12521,12550,-12552,12482,12552,-12554,12553,12557,-12523,12551,12583,-12524,12583,12524,-12524,12584,12552,-12525,12525,12585,-12532,12525,12526,-12556,12487,12556,-12555,12554,12555,-12487,12527,12557,-12587,12558,12527,-12588,12558,12588,-12529,12559,12561,-12493,12589,12559,-12492,12588,12560,-12529,12491,12560,-12590,12561,12590,-12494,12529,12493,-12591,12529,12591,-12557,1281,12530,-1296,12592,12530,-12534,12585,12532,-12532,12533,12532,-12594,\r\n12594,12498,-12563,12498,12594,-12564,12500,12595,-12563,12564,12565,-12500,7801,12564,-7886,12500,12565,-12596,12596,12501,-12567,12503,12567,-12567,12597,12567,-12535,12572,12535,-12569,12568,12501,-12597,12597,12536,-12570,12597,12534,-12537,12537,12598,-12570,12537,12570,-12600,12600,12570,-12539,12539,12601,-12541,12539,12563,-12602,12540,12602,-12572,12571,12603,-12539,12573,12543,-12542,12573,12542,-12605,12572,12604,-12543,12580,12544,-12549,12543,12605,-12575,12512,12575,-12607,12545,12607,-12576,12545,12574,-12606,12513,12576,-12609,12576,12512,-12607,12546,12547,-12610,12513,12608,-12578,12610,12547,-12578,12578,12514,-12580,12578,12611,-12549,12609,12579,-12547,12581,12515,-12581,12612,12516,-12582,12613,12549,-12517,12614,6117,-12550,12582,6327,-6359,12615,12550,-12583,12550,12616,-12552,12552,12617,-12554,12557,12553,-12619,12583,12551,-12617,12583,12584,-12525,12619,12552,-12585,12555,12585,-12526,12556,12620,-12555,12620,12555,-12555,12618,12586,-12558,12527,12586,-12622,12587,12527,-12622,12588,12558,-12588,12559,12622,-12562,12589,12622,-12560,12623,12560,-12589,12589,12560,-12624,12561,12624,-12591,12625,12529,-12591,12591,12529,-12627,12627,12556,-12592,12530,12592,-1296,12592,12533,-12629,12629,12532,-12586,12532,12629,-12594,12628,12533,-12594,12594,12562,-12596,12630,12563,-12595,12631,12565,-12565,7800,12564,-7802,12595,12565,-12632,12632,12596,-12567,12632,12566,-12568,12633,12567,-12598,12568,12634,-12573,12568,12596,-12635,12597,12569,-12599,12537,12599,-12599,12570,12600,-12600,12538,12603,-12601,12601,12635,-12541,12636,12601,-12564,12602,12540,-12636,12571,12602,-12604,12573,12637,-12544,12637,12573,-12605,12638,12604,-12573,12580,12548,-12612,12605,12543,-12638,12607,12606,-12576,12545,12605,-12608,12576,12639,-12609,12576,12606,-12641,12641,12609,-12548,12642,12577,-12609,12610,12641,-12548,12577,12642,-12611,12578,12579,-12644,12578,12644,-12612,12609,12643,-12580,12580,12611,-12582,12613,12516,-12613,12581,12611,-12613,12549,12613,-12646,6117,12614,-6175,6258,12614,-12550,12582,6358,\r\n-6460,12615,12646,-12551,6459,12615,-12583,12646,12616,-12551,12552,12619,-12618,12617,12618,-12554,12583,12616,-12648,12584,12583,-12648,12647,12619,-12585,12648,12585,-12556,12556,12627,-12621,12620,12648,-12556,12586,12618,-12622,12587,12621,-12650,12650,12588,-12588,12622,12651,-12562,12589,12623,-12623,12623,12588,-12653,12561,12651,-12625,12590,12624,-12654,12529,12625,-12627,12625,12590,-12654,12627,12591,-12627,1295,12592,-12655,12655,12592,-12629,12629,12585,-12657,12657,12593,-12630,12658,12628,-12594,12594,12595,-12632,12636,12563,-12631,12594,12631,-12631,12659,12631,-12565,7799,12564,-7801,12596,12632,-12661,12632,12567,-12634,12633,12597,-12662,12634,12638,-12573,12596,12660,-12635,12597,12598,-12663,12598,12599,-12663,12663,12599,-12601,12603,12664,-12601,12636,12635,-12602,12635,12665,-12603,12666,12603,-12603,12637,12604,-12668,12638,12668,-12605,12605,12637,-12668,12607,12669,-12607,12605,12667,-12608,12576,12640,-12640,12670,12608,-12640,12606,12669,-12641,12609,12641,-12644,12670,12642,-12609,12671,12641,-12611,12670,12610,-12643,12672,12578,-12644,12644,12578,-12673,12644,12612,-12612,12645,12613,-12613,6258,12549,-12646,12614,6258,-6175,12673,12646,-12616,6526,12615,-6460,12646,12674,-12617,12675,12617,-12620,12617,12676,-12619,12616,12677,-12648,12647,12678,-12620,12648,12656,-12586,12620,12627,-12680,12680,12648,-12621,12621,12618,-12677,12681,12649,-12622,12650,12587,-12650,12588,12650,-12683,12683,12651,-12623,12622,12623,-12685,12652,12588,-12683,12652,12684,-12624,12651,12685,-12625,12653,12624,-12686,12626,12625,-12687,12625,12653,-12688,12688,12627,-12627,12689,12654,-12593,1295,12654,-1268,12655,12689,-12593,12655,12628,-12691,12629,12656,-12658,12657,12658,-12594,12658,12690,-12629,12636,12630,-12692,12659,12630,-12632,7799,12659,-12565,12660,12632,-12693,12661,12632,-12634,12662,12661,-12598,12693,12638,-12635,12660,12694,-12635,12695,12662,-12600,12663,12695,-12600,12663,12600,-12697,12603,12666,-12665,12600,12664,-12697,12697,12635,-12637,12665,12635,-12698,12666,12602,-12666,12668,\r\n12667,-12605,12638,12698,-12669,12607,12699,-12670,12699,12607,-12668,12700,12639,-12641,12700,12670,-12640,12700,12640,-12670,12701,12643,-12642,12641,12671,-12702,12610,12702,-12672,12670,12703,-12611,12672,12643,-12705,12672,12704,-12645,12644,12705,-12613,12645,12612,-12706,12645,6318,-6259,12673,12706,-12647,6526,12673,-12616,12674,12646,-12707,12674,12677,-12617,12675,12676,-12618,12675,12619,-12679,12677,12707,-12648,12707,12678,-12648,12648,12708,-12657,12688,12679,-12628,12680,12620,-12680,12648,12680,-12709,12681,12621,-12677,12649,12681,-12710,12710,12650,-12650,12682,12650,-12712,12683,12685,-12652,12683,12622,-12685,12682,12712,-12653,12712,12684,-12653,12653,12685,-12714,12625,12687,-12687,12626,12686,-12715,12653,12713,-12688,12626,12714,-12689,12689,12715,-12655,12715,1267,-12655,12689,12655,-12691,12657,12656,-12717,12658,12657,-12718,12658,12718,-12691,12659,12691,-12631,12636,12691,-12698,7799,12719,-12660,12632,12661,-12693,12660,12692,-12721,12695,12661,-12663,12693,12698,-12639,12693,12634,-12695,12720,12694,-12661,12663,12721,-12696,12722,12663,-12697,12664,12666,-12724,12664,12722,-12697,12665,12697,-12725,12666,12665,-12726,12668,12699,-12668,12698,12699,-12669,12699,12726,-12670,12670,12700,-12704,12726,12700,-12670,12704,12643,-12702,12701,12671,-12728,12728,12702,-12611,12727,12671,-12703,12610,12703,-12730,12704,12730,-12645,12644,12731,-12706,12705,6421,-12646,6421,6318,-12646,12706,12673,-12733,12673,6526,-6564,12733,12674,-12707,12674,12734,-12678,12735,12676,-12676,12675,12678,-12737,12734,12707,-12678,12707,12737,-12679,12716,12656,-12709,12688,12738,-12680,12738,12680,-12680,12708,12680,-12740,12681,12676,-12736,12709,12681,-12741,12710,12649,-12710,12741,12650,-12711,12711,12650,-12742,12682,12711,-12743,12683,12743,-12686,12683,12684,-12745,12682,12742,-12713,12712,12745,-12685,12685,12743,-12714,12686,12687,-12747,12714,12686,-12747,12747,12687,-12714,12688,12714,-12749,12715,12689,-9407,12715,1238,-1268,12689,12690,-9407,12716,12749,-12658,12657,12749,-12718,12750,12658,-12718,\r\n12718,12658,-12751,9335,12690,-12719,12691,12659,-12720,12691,12751,-12698,12719,7799,-7726,12692,12661,-12753,12692,12753,-12721,12661,12695,-12753,12693,12754,-12699,12755,12693,-12695,12756,12694,-12721,12663,12722,-12722,12721,12752,-12696,12666,12725,-12724,12757,12664,-12724,12757,12722,-12665,12751,12724,-12698,12725,12665,-12725,12698,12758,-12700,12758,12726,-12700,12759,12703,-12701,12726,12760,-12701,12701,12730,-12705,12701,12727,-12762,12762,12702,-12729,12610,12729,-12729,12762,12727,-12703,12763,12729,-12704,12644,12730,-12732,6485,12705,-12732,12705,6485,-6422,6563,12732,-12674,12732,12764,-12707,12674,12733,-12735,12733,12706,-12765,12736,12735,-12676,12736,12678,-12738,12734,12737,-12708,12716,12708,-12740,12738,12688,-12749,12680,12738,-12766,12739,12680,-12766,12681,12735,-12741,12709,12740,-12767,12710,12709,-12768,12741,12710,-12768,12741,12768,-12712,12711,12769,-12743,12683,12744,-12744,12745,12744,-12685,12712,12742,-12746,12747,12713,-12744,12770,12746,-12688,12714,12746,-12749,12747,12770,-12688,9423,12715,-9407,12771,1238,-12716,9406,12690,-9336,12772,12749,-12717,12749,12773,-12718,12750,12717,-12775,12718,12750,-12776,9335,12718,-12776,12776,12691,-12720,12776,12751,-12692,7643,12719,-7726,12692,12752,-12754,12753,12756,-12721,12777,12754,-12694,12698,12754,-12759,12777,12693,-12756,12756,12755,-12695,12778,12721,-12723,12779,12752,-12722,12780,12723,-12726,12757,12723,-12781,12757,12778,-12723,12781,12724,-12752,12782,12725,-12725,12783,12726,-12759,12763,12703,-12760,12759,12700,-12761,12726,12784,-12761,12761,12730,-12702,12761,12727,-12786,12786,12762,-12729,12728,12729,-12788,12785,12727,-12763,12763,12787,-12730,6485,12731,-12731,6638,12732,-6564,12732,6752,-12765,12734,12733,-12789,12733,12764,-12790,12736,12790,-12736,12736,12737,-12792,12734,12788,-12738,12792,12716,-12740,12765,12738,-12749,12739,12765,-12793,12790,12740,-12736,12740,12793,-12767,12767,12709,-12767,12794,12741,-12768,12741,12794,-12769,12711,12768,-12770,12795,12742,-12770,12743,12744,-12797,12744,12745,-12797,\r\n12745,12742,-12797,12747,12743,-12798,12746,12770,-12799,12748,12746,-12800,12747,12797,-12771,9423,12771,-12716,1238,12771,-1208,12773,12749,-12773,12800,12772,-12717,12717,12773,-12775,12750,12774,-12776,9335,12775,-9313,12719,7643,-12777,12776,12781,-12752,12753,12752,-12780,12756,12753,-12780,12754,12777,-12802,12783,12758,-12755,12777,12755,-12803,12755,12756,-12803,12778,12803,-12722,12779,12721,-12804,12725,12804,-12781,12805,12757,-12781,12757,12806,-12779,12781,12782,-12725,12807,12725,-12783,12783,12784,-12727,12808,12763,-12760,12808,12759,-12761,12784,12808,-12761,12730,12761,-12810,12761,12785,-12811,12786,12811,-12763,7101,12786,-12729,7101,12728,-12788,12811,12785,-12763,12763,7197,-12788,6557,6485,-12731,12732,6638,-6753,12789,12764,-6753,12733,12789,-12789,12812,12790,-12737,12813,12791,-12738,12812,12736,-12792,12814,12737,-12789,12792,12800,-12717,12765,12748,-12816,12815,12792,-12766,12790,12793,-12741,12793,12816,-12767,12767,12766,-12817,12794,12767,-12818,12768,12794,-12819,12768,12819,-12770,12795,12796,-12743,12795,12769,-12820,12743,12796,-12798,12820,12798,-12771,12798,12799,-12747,12799,12815,-12749,12770,12797,-12822,12771,9423,-1208,12773,12772,-12823,12800,12822,-12773,12823,12774,-12774,12824,12775,-12775,12824,9312,-12776,12776,7643,-12826,12776,12826,-12782,12756,12779,-12828,12801,12777,-12829,12754,12801,-12784,12829,12777,-12803,12756,12827,-12803,12830,12803,-12779,12779,12803,-12832,12725,12807,-12805,7486,12780,-12805,12805,12806,-12758,7486,12805,-12781,12806,12830,-12779,12807,12782,-12782,12801,12784,-12784,12808,7197,-12764,12832,12808,-12785,12809,12761,-12834,12730,12809,-6558,12810,12785,-12812,12761,12810,-12834,7028,12811,-12787,12786,7101,-7029,7161,7101,-12788,7197,7161,-12788,12834,12789,-6753,12788,12789,-12836,12812,12836,-12791,12791,12813,-12838,12814,12813,-12738,12812,12791,-12837,12788,12835,-12815,12800,12792,-12839,12815,12839,-12793,12840,12793,-12791,12793,12841,-12817,12767,12816,-12818,12794,12817,-12843,12818,12794,-12843,12818,12819,-12769,12795,12843,\r\n-12797,12819,12844,-12796,12843,12797,-12797,12820,12845,-12799,12770,12846,-12821,12798,12847,-12800,12799,12839,-12816,12821,12797,-12844,12821,12846,-12771,12773,12822,-12824,12822,12800,-12849,12823,12824,-12775,12824,9266,-9313,12825,7643,-7606,12776,12825,-12827,12849,12781,-12827,12831,12827,-12780,12829,12828,-12778,12801,12828,-12785,12802,12831,-12830,12802,12827,-12832,12850,12803,-12831,12851,12831,-12804,12804,12807,-7563,12804,7562,-7487,12805,7450,-12807,12805,7486,-7451,12806,12852,-12831,12849,12807,-12782,12808,7120,-7198,7196,12808,-12833,12832,12784,-12854,12854,12809,-12834,12809,6559,-6558,12855,12810,-12812,12833,12810,-12855,12811,7028,-6994,12789,12834,-12857,12835,12789,-12857,12840,12790,-12837,12813,12857,-12838,12791,12837,-12837,12813,12814,-12858,12858,12814,-12836,12839,12838,-12793,12800,12838,-12849,12840,9167,-12794,12793,9167,-12842,12816,12841,-12818,12859,12842,-12818,12818,12842,-12861,12818,12860,-12820,12795,12844,-12844,12844,12819,-12862,12820,12862,-12846,12845,12863,-12799,12820,12846,-12863,12863,12847,-12799,12847,12839,-12800,12821,12843,-12865,12821,12865,-12847,12822,12848,-12824,12866,12824,-12824,12866,9266,-12825,12849,12825,-7606,12826,12825,-12850,12867,12828,-12830,12784,12828,-12854,12851,12829,-12832,12803,12850,-12869,12850,12830,-12853,12868,12851,-12804,12807,7603,-7563,7377,12806,-7451,12806,12869,-12853,12807,12849,-7604,7120,12808,-7197,12832,12870,-7197,12832,12853,-12872,12809,12854,-6560,12855,12872,-12811,6910,12855,-12812,6632,12854,-12811,6910,12811,-6994,12834,12873,-12857,12835,12856,-12875,12840,12836,-12876,12876,12837,-12858,12836,12837,-12878,12857,12814,-12859,12858,12835,-12875,12839,12847,-12839,12838,12878,-12849,12875,9167,-12841,9127,12841,-9168,12879,12817,-12842,12880,12842,-12860,12859,12817,-12880,12880,12860,-12843,12860,12861,-12820,12844,12864,-12844,12861,12881,-12845,12862,12882,-12846,12863,12845,-12884,12862,12846,-12866,12847,12863,-12884,12864,12865,-12822,12866,12823,-12849,9266,12866,-12885,7605,7603,-12850,12867,12853,\r\n-12829,12867,12829,-12852,12868,12850,-12886,12886,12850,-12853,12851,12868,-12888,7377,12869,-12807,12886,12852,-12870,12832,12871,-12871,7196,12870,-7194,12867,12871,-12854,6632,6559,-12855,12855,6707,-12873,12810,12872,-6633,6827,12855,-6911,12873,12888,-12857,12874,12856,-12889,12836,12877,-12876,12876,12877,-12838,12857,12889,-12877,12857,12858,-12891,12858,12874,-12892,12892,12838,-12848,12892,12878,-12839,12878,12893,-12849,12875,12894,-9168,9127,12879,-12842,12880,12859,-9110,12859,12879,-9129,12880,12895,-12861,12896,12861,-12861,12844,12881,-12865,12861,12897,-12882,12898,12882,-12863,12883,12845,-12883,12862,12865,-12899,12899,12847,-12884,12865,12864,-12882,12893,12866,-12849,12893,12884,-12867,9266,12884,-9203,12851,12871,-12868,7346,12885,-12851,12868,12885,-12888,12886,7347,-12851,12851,12887,-12872,7377,7345,-12870,12869,7306,-12887,12871,12900,-12871,7193,12870,-12901,12901,6707,-12856,6632,12872,-6708,6827,12901,-12856,12888,12873,-12903,12874,12888,-12904,12894,12875,-12878,12876,12904,-12878,12890,12889,-12858,12905,12876,-12890,12858,12891,-12891,12891,12874,-12904,12892,12847,-12900,12892,12899,-12879,12878,12906,-12894,12879,9127,-9129,9109,12859,-9129,9109,9064,-12881,12880,9064,-12896,12895,12896,-12861,12897,12861,-12897,12907,12881,-12898,12898,12908,-12883,12899,12883,-12883,12898,12865,-12908,12865,12881,-12908,12884,12893,-12907,12884,12909,-9203,12885,7346,-12888,7346,12850,-7348,7306,7347,-12887,12900,12871,-12888,12869,7345,-7307,7193,12900,-7271,6707,12901,-6707,12901,6827,-6707,12888,12902,-12911,12910,12903,-12889,12904,12894,-12878,12876,12905,-12905,12911,12889,-12891,12905,12889,-12912,12890,12891,-12913,12913,12891,-12904,12906,12878,-12900,9044,12895,-9065,12895,9044,-12897,12897,12896,-9039,12897,12914,-12908,12898,12915,-12909,12908,12916,-12883,12882,12909,-12900,12898,12907,-12918,12884,12906,-12910,9184,9202,-12910,12900,12887,-7347,7346,7270,-12901,12902,12918,-12911,12910,12919,-12904,12920,12911,-12891,12905,12911,-12922,12913,12912,-12892,12920,12890,-12913,12903,12919,\r\n-12914,12906,12899,-12910,9038,12896,-9045,12914,12897,-9039,12907,12914,-12918,12917,12915,-12899,12922,12908,-12916,12916,12908,-12923,12882,12916,-12910,9184,12909,-12917,12918,12902,-12924,12918,12924,-12911,12919,12910,-12925,12925,12911,-12921,12911,12925,-12922,12912,12913,-12927,12920,12912,-12928,12913,12919,-12929,9055,12914,-9039,12917,12914,-9038,12917,12929,-12916,12930,12922,-12916,12931,12916,-12923,12932,9184,-12917,12918,12923,-12934,12918,12934,-12925,12919,12924,-12936,12920,12927,-12926,12913,12928,-12927,12912,12926,-12937,12936,12927,-12913,12928,12919,-12936,9055,9037,-12915,12929,12917,-9038,12929,12930,-12916,12922,12930,-12932,12931,12932,-12917,12932,9140,-9185,12937,12933,-12924,12918,12933,-12939,12934,12918,-12940,12935,12924,-12935,12936,12926,-12929,12927,12936,-12941,12928,12935,-12942,9037,9078,-12930,9078,12930,-12930,12942,12931,-12931,12932,12931,-9140,9140,12932,-9140,12933,12937,-12944,12933,12943,-12939,12918,12938,-12940,12934,12939,-12945,12935,12934,-12942,12936,12928,-12946,12936,12946,-12941,12945,12928,-12942,12930,9078,-9099,12931,12942,-9140,9098,12942,-12931,12947,12943,-12938,12943,12948,-12939,12938,12944,-12940,12941,12934,-12945,12936,12945,-12947,12945,12941,-12950,12942,9098,-9140,12950,12943,-12948,12937,12951,-12948,12948,12943,-12953,12948,12944,-12939,12941,12944,-12954,12945,12949,-12947,12949,12941,-12955,12950,12952,-12944,12950,12947,-12956,12947,12951,-12957,12948,12952,-12958,12944,12948,-12959,12959,12953,-12945,12941,12953,-12955,12946,12949,-12961,12949,12954,-12962,12955,12952,-12951,12955,12947,-12963,12956,12963,-12948,12964,12957,-12953,12958,12948,-12958,12944,12958,-12960,12959,12965,-12954,12965,12954,-12954,12960,12949,-12962,12954,12965,-12962,12955,12964,-12953,12962,12947,-12964,12955,12962,-12967,12956,12967,-12964,12957,12964,-12969,12958,12957,-12970,12970,12959,-12959,12965,12959,-12972,12961,12965,-12973,12964,12955,-12967,12963,12973,-12963,12973,12966,-12963,12974,12967,-12957,12967,12975,-12964,12964,12976,-12969,12968,12969,-12958,\r\n12958,12969,-12971,12970,12971,-12960,12965,12971,-12978,12965,12977,-12973,12964,12966,-12977,12963,12978,-12974,12973,12979,-12967,12980,12967,-12975,12980,12975,-12968,12963,12975,-12979,12976,12981,-12969,12968,12982,-12970,12970,12969,-12983,12970,12983,-12972,12983,12977,-12972,12972,12977,-12985,12966,12979,-12977,12973,12978,-12986,12973,12985,-12980,12974,12986,-12981,12987,12975,-12981,12988,12978,-12976,12981,12976,-12990,12990,12968,-12982,12982,12968,-12991,12970,12982,-12984,12991,12977,-12984,12992,12984,-12978,12976,12979,-12994,12994,12985,-12979,12985,12993,-12980,12995,12980,-12987,12975,12987,-12997,12997,12987,-12981,12988,12994,-12979,12988,12975,-12999,12976,12999,-12990,12990,12981,-12990,12982,12990,-13001,12991,12983,-12983,12992,12977,-12992,12976,12993,-13000,12994,13001,-12986,12993,12985,-13002,12995,12997,-12981,13002,12996,-12988,12975,12996,-12999,13003,12987,-12998,13004,12994,-12989,12988,12998,-13005,12999,13005,-12990,12990,12989,-13001,12991,12982,-13001,12992,12991,-13007,12999,12993,-13008,12994,13008,-13002,12993,13001,-13008,12995,13009,-12998,13002,13010,-12997,13002,12987,-13004,12998,12996,-13011,13003,12997,-13012,13004,13008,-12995,13004,12998,-13013,13013,13005,-13000,13005,13014,-12990,12989,13014,-13001,12991,13000,-13015,13015,13006,-12992,12999,13007,-13014,13001,13008,-13017,13001,13016,-13008,13009,13011,-12998,13017,13010,-13003,13003,13018,-13003,12998,13010,-13013,13011,13019,-13004,13020,13008,-13005,13004,13012,-13021,13005,13013,-13022,13014,13005,-13016,13015,12991,-13015,13022,13013,-13008,13016,13008,-13024,13022,13007,-13017,13009,13024,-13012,13017,13012,-13011,13018,13017,-13003,13003,13019,-13019,13019,13011,-13026,13020,13023,-13009,13026,13020,-13013,13022,13021,-13014,13005,13021,-13016,13016,13023,-13028,13022,13016,-13028,13024,13025,-13012,13028,13012,-13018,13017,13018,-13030,13030,13018,-13020,13019,13025,-13032,13032,13023,-13021,13026,13032,-13021,13026,13012,-13034,13022,13034,-13022,13021,13035,-13016,13027,13023,-13037,13022,13027,-13035,\r\n13024,13037,-13026,13028,13033,-13013,13017,13029,-13029,13030,13029,-13019,13019,13038,-13031,13031,13025,-13040,13038,13019,-13032,13032,13036,-13024,13026,13040,-13033,13026,13033,-13042,13042,13021,-13035,13035,13021,-13044,13027,13036,-13045,13027,13044,-13035,13039,13025,-13038,13045,13033,-13029,13045,13028,-13030,13029,13030,-13047,13030,13038,-13048,13038,13031,-13040,13048,13036,-13033,13026,13049,-13041,13040,13048,-13033,13050,13041,-13034,13026,13041,-13050,13042,13043,-13022,13051,13042,-13035,13052,13044,-13037,13044,13051,-13035,13039,13037,-13054,13045,13050,-13034,13029,13046,-13046,13054,13046,-13031,13038,13055,-13048,13030,13047,-13055,13038,13039,-13056,13048,13052,-13037,13056,13040,-13050,13048,13040,-13058,13058,13041,-13051,13049,13041,-13060,13051,13043,-13043,13052,13060,-13045,13060,13051,-13045,13039,13053,-13062,13045,13062,-13051,13045,13046,-13063,13054,13062,-13047,13055,13063,-13048,13054,13047,-13065,13039,13061,-13056,13048,13057,-13053,13056,13057,-13041,13056,13049,-13060,13058,13059,-13042,13050,13065,-13059,13051,13066,-13044,13067,13060,-13053,13051,13060,-13069,13069,13061,-13054,13050,13062,-13066,13062,13054,-13071,13061,13063,-13056,13071,13047,-13064,13064,13047,-13072,13054,13064,-13073,13067,13052,-13058,13057,13056,-13074,13056,13059,-13075,13059,13058,-13076,13076,13058,-13066,13066,13051,-13078,13067,13068,-13061,13051,13068,-13078,13078,13061,-13070,13069,13053,-13080,13062,13070,-13066,13070,13054,-13073,13078,13063,-13062,13080,13071,-13064,13064,13071,-13082,13072,13064,-13082,13057,13082,-13068,13073,13056,-13084,13073,13082,-13058,13059,13084,-13075,13056,13074,-13084,13076,13075,-13059,13059,13075,-13085,13065,13085,-13077,13068,13067,-13083,13077,13068,-13087,13069,13087,-13079,13088,13069,-13080,13070,13085,-13066,13070,13072,-13086,13080,13063,-13079,13089,13071,-13081,13089,13081,-13072,13072,13081,-13091,13073,13083,-13092,13073,13092,-13083,13093,13074,-13085,13093,13083,-13075,13094,13075,-13077,13095,13084,-13076,13090,13076,-13086,13092,13068,-13083,\r\n13092,13086,-13069,13096,13077,-13087,13069,13088,-13088,13078,13087,-13098,13079,13098,-13089,13090,13085,-13073,13078,13097,-13081,13099,13089,-13081,13081,13089,-13101,13081,13100,-13091,13101,13091,-13084,13092,13073,-13092,13102,13093,-13085,13083,13093,-13104,13104,13075,-13095,13094,13076,-13091,13095,13102,-13085,13104,13095,-13076,13092,13105,-13087,13096,13106,-13078,13086,13105,-13097,13107,13087,-13089,13097,13087,-13109,13109,13088,-13099,13080,13097,-13111,13099,13100,-13090,13080,13110,-13100,13111,13090,-13101,13101,13112,-13092,13083,13103,-13102,13092,13091,-13106,13102,13113,-13094,13093,13113,-13104,13094,13114,-13105,13111,13094,-13091,13115,13102,-13096,13116,13095,-13105,13106,13096,-13118,13112,13096,-13106,13107,13108,-13088,13109,13107,-13089,13108,13110,-13098,13118,13109,-13099,13099,13119,-13101,13099,13110,-13120,13100,13119,-13112,13101,13120,-13113,13112,13105,-13092,13101,13103,-13121,13121,13113,-13103,13103,13113,-13123,13094,13123,-13115,13104,13114,-13125,13111,13123,-13095,13115,13121,-13103,13116,13115,-13096,13104,13124,-13117,13117,13096,-13113,13106,13117,-13126,13108,13107,-13127,13109,13127,-13108,13108,13128,-13111,13118,13129,-13110,13128,13119,-13111,13128,13111,-13120,13112,13120,-13118,13130,13120,-13104,13121,13131,-13114,13131,13122,-13114,13103,13122,-13131,13123,13132,-13115,13114,13133,-13125,13111,13128,-13124,13115,13134,-13122,13115,13116,-13136,13116,13124,-13137,13125,13117,-13138,13126,13107,-13128,13108,13126,-13139,13127,13109,-13140,13128,13108,-13139,13140,13129,-13119,13129,13139,-13110,13120,13141,-13118,13130,13141,-13121,13121,13142,-13132,13122,13131,-13144,13130,13122,-13145,13123,13128,-13133,13132,13145,-13115,13114,13145,-13134,13133,13146,-13125,13134,13115,-13148,13121,13134,-13143,13116,13136,-13136,13115,13135,-13148,13148,13136,-13125,13137,13117,-13142,13137,13149,-13126,13150,13126,-13128,13138,13126,-13151,13127,13139,-13152,13128,13138,-13133,13152,13129,-13141,13140,13118,-13154,13154,13139,-13130,13144,13141,-13131,13155,13131,-13143,\r\n13143,13131,-13157,13144,13122,-13144,13138,13145,-13133,13157,13133,-13146,13146,13133,-13158,13148,13124,-13147,13134,13147,-13159,13158,13142,-13135,13136,13159,-13136,13160,13147,-13136,13161,13136,-13149,13144,13137,-13142,13149,13137,-13163,13150,13127,-13152,13138,13150,-13146,13154,13151,-13140,13154,13129,-13153,13140,13163,-13153,13164,13153,-13119,13140,13153,-13164,13155,13156,-13132,13158,13155,-13143,13143,13156,-13166,13144,13143,-13167,13157,13145,-13151,13167,13146,-13158,13168,13148,-13147,13158,13147,-13170,13136,13170,-13160,13159,13160,-13136,13160,13169,-13148,13161,13170,-13137,13161,13148,-13172,13144,13166,-13138,13162,13137,-13173,13150,13151,-13158,13151,13154,-13168,13154,13152,-13174,13174,13152,-13164,13164,13175,-13154,13174,13163,-13154,13156,13155,-13166,13155,13158,-13177,13165,13166,-13144,13173,13146,-13168,13167,13157,-13152,13168,13171,-13149,13168,13146,-13174,13177,13158,-13170,13159,13170,-13179,13179,13160,-13160,13169,13160,-13180,13180,13170,-13162,13161,13171,-13182,13166,13172,-13138,13182,13162,-13173,13173,13167,-13155,13183,13173,-13153,13183,13152,-13175,13175,13164,-13185,13175,13174,-13154,13165,13155,-13186,13177,13176,-13159,13155,13176,-13187,13165,13187,-13167,13168,13183,-13172,13183,13168,-13174,13177,13169,-13189,13180,13178,-13171,13178,13189,-13160,13189,13179,-13160,13190,13169,-13180,13180,13161,-13182,13183,13181,-13172,13172,13166,-13188,13191,13182,-13173,13183,13174,-13193,13175,13184,-13194,13175,13192,-13175,13185,13155,-13187,13165,13185,-13195,13176,13177,-13196,13176,13195,-13187,13187,13165,-13197,13190,13188,-13170,13177,13188,-13198,13180,13198,-13179,13178,13198,-13190,13189,13199,-13180,13179,13199,-13191,13181,13200,-13181,13183,13192,-13182,13191,13172,-13188,13182,13191,-13202,13202,13193,-13185,13175,13193,-13193,13194,13185,-13187,13165,13194,-13204,13195,13177,-13205,13205,13186,-13196,13165,13203,-13197,13191,13187,-13197,13206,13188,-13191,13207,13197,-13189,13197,13204,-13178,13180,13200,-13199,13208,13189,-13199,13209,13199,-13190,\r\n13210,13190,-13200,13200,13181,-13193,13201,13191,-13212,13202,13212,-13194,13200,13192,-13194,13205,13194,-13187,13194,13213,-13204,13195,13204,-13215,13195,13214,-13206,13196,13203,-13214,13196,13215,-13192,13206,13207,-13189,13190,13216,-13207,13197,13207,-13218,13197,13214,-13205,13212,13198,-13201,13189,13208,-13210,13208,13198,-13219,13219,13199,-13210,13190,13210,-13217,13210,13199,-13220,13215,13211,-13192,13212,13202,-13219,13212,13200,-13194,13205,13220,-13195,13213,13194,-13221,13205,13214,-13222,13196,13213,-13216,13207,13206,-13223,13206,13216,-13223,13207,13223,-13218,13214,13197,-13218,13212,13218,-13199,13208,13224,-13210,13218,13225,-13209,13219,13209,-13227,13216,13210,-13228,13219,13228,-13211,13211,13215,-13230,13218,13202,-13226,13230,13220,-13206,13213,13220,-13232,13221,13214,-13233,13221,13230,-13206,13233,13215,-13214,13207,13222,-13235,13235,13222,-13217,13207,13234,-13224,13236,13217,-13224,13214,13217,-13233,13208,13225,-13225,13226,13209,-13225,13237,13219,-13227,13210,13228,-13228,13235,13216,-13228,13219,13237,-13229,13238,13229,-13216,13230,13239,-13221,13231,13220,-13241,13233,13213,-13232,13241,13221,-13233,13242,13230,-13222,13215,13233,-13244,13244,13234,-13223,13235,13245,-13223,13223,13234,-13247,13236,13232,-13218,13246,13236,-13224,13227,13228,-13248,13235,13227,-13248,13229,13238,-13249,13238,13215,-13244,13242,13239,-13231,13239,13240,-13221,13243,13231,-13241,13243,13233,-13232,13241,13242,-13222,13249,13241,-13233,13244,13246,-13235,13250,13244,-13223,13235,13251,-13246,13245,13250,-13223,13236,13249,-13233,13252,13236,-13247,13235,13247,-13254,13254,13248,-13239,13255,13238,-13244,13239,13242,-13257,13257,13240,-13240,13257,13243,-13241,13241,13256,-13243,13258,13241,-13250,13244,13259,-13247,13244,13250,-13261,13253,13251,-13236,13245,13251,-13251,13249,13236,-13253,13259,13252,-13247,13248,13254,-13262,13255,13254,-13239,13255,13243,-13263,13256,13257,-13240,13257,13262,-13244,13241,13263,-13257,13241,13258,-13264,13249,13252,-13259,13259,13244,-13261,13260,13250,-13265,\r\n13265,13252,-13260,13254,13255,-13262,13266,13255,-13263,13267,13257,-13257,13262,13257,-13268,13268,13256,-13264,13258,13269,-13264,13252,13270,-13259,13271,13259,-13261,13264,13272,-13261,13265,13273,-13253,13259,13271,-13266,13255,13266,-13262,13266,13262,-13275,13268,13267,-13257,13275,13262,-13268,13263,13276,-13269,13258,13270,-13270,13263,13269,-13277,13273,13270,-13253,13271,13260,-13273,13277,13272,-13265,13273,13265,-13279,13271,13278,-13266,13274,13262,-13276,13268,13279,-13268,13275,13267,-13280,13268,13276,-13281,13270,13281,-13270,13269,13281,-13277,13273,13281,-13271,13272,13278,-13272,13278,13282,-13274,13280,13279,-13269,13283,13280,-13277,13283,13276,-13282,13282,13281,-13274,13278,13272,-13285,13278,13285,-13283,13283,13286,-13281,13283,13281,-13283,13285,13278,-13285,13282,13285,-13288,13283,13288,-13287,13283,13282,-13289,13282,13287,-13289,13289,13290,-13292,13292,13291,-13291,13291,13293,-13290,13294,13291,-13293,13290,13295,-13293,13291,13296,-13294,13293,13297,-13290,13294,13296,-13292,13298,13294,-13293,13298,13292,-13296,13299,13293,-13297,13293,13299,-13298,13294,13300,-13297,13301,13294,-13299,13298,13295,-13303,13296,13303,-13300,13297,13299,-13305,13301,13300,-13295,13296,13300,-13306,13306,13301,-13299,13302,13295,-13308,13298,13302,-13307,13296,13305,-13304,13308,13299,-13304,13304,13299,-13309,13300,13301,-13310,13309,13305,-13301,13306,13310,-13302,13302,13307,-13312,13302,13311,-13307,13303,13305,-13313,13303,13313,-13309,13314,13304,-13309,13309,13301,-13311,13309,13315,-13306,13306,13311,-13311,13316,13311,-13308,13317,13312,-13306,13303,13312,-13314,13313,13318,-13309,13314,13319,-13305,13320,13314,-13309,13321,13309,-13311,13315,13309,-13323,13323,13305,-13316,13311,13324,-13311,13311,13316,-13325,13317,13325,-13313,13317,13305,-13324,13312,13325,-13314,13313,13326,-13319,13308,13318,-13328,13314,13328,-13320,13320,13328,-13315,13308,13327,-13321,13321,13329,-13310,13321,13310,-13325,13322,13309,-13330,13315,13322,-13331,13323,13315,-13331,13331,13324,-13317,13317,13332,-13326,\r\n13317,13323,-13333,13326,13313,-13326,13318,13326,-13334,13318,13333,-13328,13319,13328,-13335,13328,13320,-13336,13320,13327,-13337,13329,13321,-13338,13331,13321,-13325,13329,13338,-13323,13330,13322,-13340,13330,13340,-13324,13341,13331,-13317,13342,13325,-13333,13343,13332,-13324,13326,13325,-13343,13344,13333,-13327,13345,13327,-13334,13334,13328,-13347,13320,13336,-13336,13328,13335,-13347,13345,13336,-13328,13337,13321,-13332,13329,13337,-13348,13338,13329,-13348,13348,13322,-13339,13348,13339,-13323,13330,13339,-13350,13330,13350,-13341,13340,13351,-13324,13341,13352,-13332,13342,13332,-13344,13343,13323,-13352,13353,13326,-13343,13344,13354,-13334,13344,13326,-13354,13354,13345,-13334,13334,13346,-13356,13336,13356,-13336,13335,13357,-13347,13336,13345,-13357,13337,13331,-13353,13337,13358,-13348,13338,13347,-13360,13360,13348,-13339,13348,13361,-13340,13361,13349,-13340,13350,13330,-13350,13350,13362,-13341,13340,13362,-13352,13343,13363,-13343,13364,13343,-13352,13353,13342,-13364,13354,13344,-13366,13366,13344,-13354,13354,13356,-13346,13357,13355,-13347,13356,13367,-13336,13367,13357,-13336,13358,13337,-13353,13359,13347,-13359,13359,13368,-13339,13360,13369,-13349,13360,13338,-13369,13361,13348,-13370,13361,13370,-13350,13370,13350,-13350,13362,13350,-13372,13362,13372,-13352,13343,13364,-13364,13364,13351,-13373,13363,13373,-13354,13344,13366,-13366,13374,13354,-13366,13366,13353,-13374,13375,13356,-13355,13376,13355,-13358,13367,13356,-13376,13367,13377,-13358,13369,13360,-13379,13379,13360,-13369,13361,13369,-13381,13380,13370,-13362,13370,13381,-13351,13371,13350,-13382,13362,13371,-13383,13362,13382,-13373,13364,13373,-13364,13372,13383,-13365,13384,13365,-13367,13374,13375,-13355,13374,13365,-13386,13373,13386,-13367,13376,13387,-13356,13376,13357,-13378,13388,13367,-13376,13389,13377,-13368,13379,13378,-13361,13390,13369,-13379,13391,13380,-13370,13380,13392,-13371,13381,13370,-13393,13371,13381,-13394,13393,13382,-13372,13394,13372,-13383,13364,13395,-13374,13383,13372,-13395,13364,13383,-13396,\r\n13384,13396,-13366,13384,13366,-13398,13374,13398,-13376,13365,13396,-13386,13399,13374,-13386,13386,13373,-13401,13397,13366,-13387,13387,13376,-13402,13376,13377,-13402,13388,13389,-13368,13388,13375,-13399,13402,13377,-13390,13391,13369,-13391,13391,13403,-13381,13403,13392,-13381,13381,13392,-13405,13393,13381,-13406,9421,13382,-13394,9421,13394,-13383,13395,13400,-13374,13394,13406,-13384,13407,13395,-13384,13384,13408,-13397,13408,13384,-13398,13399,13398,-13375,13396,13409,-13386,13410,13399,-13386,13400,13411,-13387,13397,13386,-13412,13402,13401,-13378,13412,13389,-13389,13413,13388,-13399,13402,13389,-13415,13415,13391,-13391,13416,13403,-13392,13417,13392,-13404,13417,13404,-13393,13404,13418,-13382,13405,13381,-13419,9437,13393,-13406,9421,13393,-9438,13394,9421,-9403,13407,13400,-13396,13406,13394,-9403,13407,13383,-13407,13408,13419,-13397,13408,13397,-13421,13413,13398,-13400,13396,13421,-13410,13422,13385,-13410,13410,13413,-13400,13385,13423,-13411,13400,13424,-13412,13397,13411,-13421,13425,13401,-13403,13412,13414,-13390,13426,13412,-13389,13388,13413,-13427,13402,13414,-13428,13415,13416,-13392,13416,13428,-13404,13417,13403,-13429,13417,13429,-13405,13430,13418,-13405,13405,13418,-9456,9437,13405,-9456,13407,13424,-13401,9402,13431,-13407,13432,13407,-13407,13433,13419,-13409,13421,13396,-13420,13420,13433,-13409,13421,13434,-13410,13422,13423,-13386,13422,13409,-13435,13413,13410,-13436,13436,13410,-13424,13424,13437,-13412,13437,13420,-13412,13425,13402,-13428,13414,13412,-13439,13426,13438,-13413,13439,13426,-13414,13414,13440,-13428,13441,13416,-13416,13442,13428,-13417,13417,13428,-13444,13417,13443,-13430,13404,13429,-13431,13430,9455,-13419,13407,13432,-13425,13432,13406,-13432,13444,13421,-13420,13420,13437,-13434,13444,13434,-13422,13436,13423,-13423,13445,13422,-13435,13410,13446,-13436,13413,13435,-13448,13410,13436,-13449,13424,13432,-13438,13414,13438,-13441,13439,13438,-13427,13439,13413,-13448,13449,13427,-13441,13441,13442,-13417,13442,13443,-13429,13450,13429,-13444,13451,13430,\r\n-13430,13430,9469,-9456,13444,13419,-13453,13445,13434,-13445,13422,13453,-13437,13445,13453,-13423,13410,13448,-13447,13454,13435,-13447,13454,13447,-13436,13436,13455,-13449,13456,13440,-13439,13439,13457,-13439,13439,13447,-13459,13459,13449,-13441,13460,13442,-13442,13443,13442,-13462,13450,13451,-13430,13462,13450,-13444,9469,13430,-13452,13444,13452,-13464,13444,13463,-13446,13453,13464,-13437,13445,13465,-13454,13466,13446,-13449,13467,13454,-13447,13447,13454,-13469,13469,13455,-13437,13455,13466,-13449,13459,13440,-13457,13456,13438,-13458,13457,13439,-13459,13447,13468,-13459,13449,13459,-13471,13442,13460,-13462,13443,13461,-13463,13471,13451,-13451,13462,13472,-13451,13471,9469,-13452,13473,13463,-13453,13463,13473,-13446,13453,13465,-13465,13469,13436,-13465,13445,13473,-13466,13466,13467,-13447,13467,13474,-13455,13468,13454,-13475,13475,13455,-13470,13466,13455,-13477,13456,13457,-13460,13457,13458,-13478,13458,13468,-13479,13459,13479,-13471,13460,13480,-13462,13462,13461,-13482,13471,13450,-13473,9538,13472,-13463,13471,9493,-9470,13482,13464,-13466,13482,13469,-13465,13483,13465,-13474,13467,13466,-13485,13467,13485,-13475,13468,13474,-13487,13487,13455,-13476,13475,13469,-13483,13476,13455,-13488,13484,13466,-13477,13457,13477,-13460,13477,13458,-13479,13486,13478,-13469,13459,13477,-13480,13488,13470,-13480,13461,13480,-13482,13462,13481,-13490,13471,13472,-9494,13472,9538,-9494,13462,13489,-9539,13482,13465,-13491,13490,13465,-13484,13484,13491,-13468,13491,13485,-13468,13485,13492,-13475,13486,13474,-13493,13475,13493,-13488,13475,13482,-13495,13487,13495,-13477,13484,13476,-13497,13477,13478,-13498,13478,13486,-13499,13497,13479,-13478,13497,13488,-13480,13480,13499,-13482,13489,13481,-9550,9538,13489,-9550,13500,13482,-13491,13500,13490,-13484,13496,13491,-13485,13491,13501,-13486,13492,13485,-13503,13486,13492,-13504,13475,13494,-13494,13487,13493,-13496,13482,13500,-13495,13476,13495,-13505,13505,13496,-13477,13478,13498,-13498,13503,13498,-13487,13497,13506,-13489,13499,9567,-13482,9549,\r\n13481,-9568,13507,13491,-13497,13508,13501,-13492,13502,13485,-13502,13492,13502,-13504,13509,13493,-13495,13510,13495,-13494,13504,13495,-13511,13505,13476,-13505,13505,13511,-13497,13497,13498,-13507,13503,13512,-13499,13513,13488,-13507,13507,13508,-13492,13511,13507,-13497,13508,13514,-13502,13502,13501,-13516,13502,13515,-13504,13510,13493,-13510,13510,13516,-13505,13505,13504,-13518,13511,13505,-13519,13512,13506,-13499,13503,13515,-13513,13512,13513,-13507,13508,13507,-13520,13511,13520,-13508,13519,13514,-13509,13501,13514,-13516,13510,13509,-13522,13510,13521,-13517,13504,13516,-13518,13505,13517,-13523,13518,13505,-13524,13511,13518,-13525,13512,13515,-13526,13512,13525,-13514,13520,13519,-13508,13520,13511,-13525,13519,13526,-13515,13526,13515,-13515,13527,13521,-13510,13528,13516,-13522,13517,13516,-13530,13522,13517,-13531,13522,13523,-13506,13518,13523,-13532,13532,13524,-13519,13526,13525,-13516,13513,13525,-13534,13520,13534,-13520,13520,13524,-13536,13526,13519,-13535,13527,13528,-13522,13516,13528,-13537,13516,13536,-13530,13517,13529,-13538,13530,13517,-13538,13522,13530,-13539,13522,13539,-13524,13523,13539,-13532,13531,13532,-13519,13532,13535,-13525,13526,13540,-13526,13525,13541,-13534,13534,13520,-13536,13526,13534,-13541,13528,13527,-13543,13543,13536,-13529,13536,13544,-13530,13537,13529,-13546,13530,13537,-13547,13547,13538,-13531,13539,13522,-13539,13548,13531,-13540,13531,13549,-13533,13549,13535,-13533,13525,13540,-13542,13534,13535,-13541,13543,13528,-13543,13543,13550,-13537,13536,13550,-13545,13545,13529,-13545,13537,13545,-13552,13537,13551,-13547,13552,13530,-13547,13547,13553,-13539,13547,13530,-13553,13539,13538,-13554,13549,13531,-13549,13553,13548,-13540,13535,13549,-13541,13554,13541,-13541,13550,7109,-13545,7076,13545,-13545,13551,13545,-7005,13555,13546,-13552,13556,13552,-13547,13547,13557,-13554,13547,13552,-13559,13549,13548,-13560,13553,13559,-13549,13549,13560,-13541,13554,13540,-13561,7109,13550,-7151,7109,7076,-13545,7004,13545,-7077,7004,6967,-13552,13555,13556,-13547,\r\n13555,13551,-6968,13552,13556,-13559,13558,13557,-13548,13559,13553,-13558,13559,13560,-13550,13561,13554,-13561,13555,13562,-13557,6964,13555,-6968,13562,13558,-13557,13558,13563,-13558,13563,13559,-13558,13559,13561,-13561,13562,13555,-6965,13562,13564,-13559,13563,13558,-13565,13563,13561,-13560,6883,13562,-6965,6883,13564,-13563,13564,13565,-13564,13563,13565,-13562,6883,6884,-13565,13564,6922,-13566,13565,13566,-13562,6922,13564,-6885,6922,6966,-13566,13567,13566,-13566,6966,13567,-13566,13566,13567,-13569,6966,13568,-13568,13568,13569,-13567,13568,6966,-4560,13569,13568,-4560,13570,13571,-13573,13570,13573,-13572,13570,13572,-13575,13570,13575,-13574,13574,13572,-13577,13577,13575,-13571,13575,13578,-13574,13579,13575,-13578,13578,13575,-13581,13578,13581,-13574,13581,13582,-13574,13583,13584,-13586,13584,13586,-13586,13580,13575,-13580,13580,13587,-13579,13578,13588,-13582,13589,13582,-13582,13590,13582,-13592,13592,13593,-2496,13586,13594,-13596,13583,13590,-13592,13583,13596,-13585,13584,13597,-13587,13580,13598,-13588,13587,13588,-13579,13588,13589,-13582,13589,13591,-13583,13592,13599,-13601,13593,13592,-13602,13602,2495,-13594,13599,13595,-13595,13597,13594,-13587,13583,13591,-13597,13584,13596,-13604,13584,13603,-13598,13604,13587,-13599,13587,13605,-13589,13588,13606,-13590,13596,13591,-13590,13599,13594,-13601,13592,13600,-13602,13593,13601,-13608,2495,13602,-2453,13608,13602,-13594,13597,13600,-13595,13609,13603,-13597,13610,13597,-13604,13604,13605,-13588,13605,13611,-13589,13588,13611,-13607,13612,13589,-13607,13596,13589,-13610,13610,13601,-13601,13601,13613,-13608,13607,13608,-13594,13608,2368,-13603,13610,13600,-13598,13609,13614,-13604,13610,13603,-13615,13615,13605,-13605,13605,13616,-13612,13606,13611,-13618,13609,13589,-13613,13617,13612,-13607,13610,13614,-13602,13618,13613,-13602,13607,13613,-13620,13608,13607,-13621,2367,13602,-2369,13608,2284,-2369,13614,13609,-13622,13616,13605,-13616,13622,13615,-13605,13616,13617,-13612,13609,13612,-13622,13617,13623,-13613,13618,13601,-13615,13624,\r\n13613,-13619,13619,13613,-13626,13607,13619,-13627,13627,13620,-13608,13620,13628,-13609,2284,13608,-13629,13614,13621,-13619,13616,13615,-13630,13615,13622,-13631,13623,13617,-13617,13621,13612,-13624,13624,13625,-13614,13624,13618,-13624,13619,13625,-13632,13626,13619,-13633,13626,13633,-13608,13627,2285,-13621,13627,13607,-13634,13620,2242,-13629,2284,13628,-2243,13621,13623,-13619,13629,13615,-13631,13623,13616,-13630,13630,13622,-13635,13635,13625,-13625,13623,13629,-13625,13635,13631,-13626,13619,13631,-13633,13626,13632,-13637,13633,13626,-13637,13627,2203,-2286,2285,2242,-13621,13627,13633,-2175,13629,13630,-13625,13637,13634,-13623,13630,13634,-13625,13624,13634,-13636,13638,13631,-13636,13631,13639,-13633,13636,13632,-13641,13633,13636,-2173,2174,2203,-13628,2174,13633,-2174,13641,13642,-13644,13644,13642,-13646,13635,13634,-13638,13646,13637,-13623,13631,13638,-13640,13635,13647,-13639,13632,13639,-13649,13640,13632,-13649,13636,13640,-2256,2213,2172,-13637,13633,2172,-2174,13643,13642,-13650,13644,13649,-13643,13645,13650,-13645,13635,13637,-13652,13646,13652,-13638,13653,13639,-13639,13635,13651,-13648,13647,13654,-13639,13648,13639,-13656,13640,13648,-2299,2298,2255,-13641,13636,2255,-2214,13656,13650,-13646,13649,13644,-13658,13644,13650,-13659,13652,13651,-13638,13659,13652,-13647,13639,13653,-13661,13653,13638,-13662,13647,13651,-13663,13647,13663,-13655,13654,13661,-13639,13660,13655,-13640,13648,13655,-2299,13650,13656,-13665,13657,13644,-13666,13650,13666,-13659,13667,13644,-13659,13652,13668,-13652,13652,13659,-13669,13653,13661,-13661,13662,13651,-13670,13647,13662,-13664,13670,13654,-13664,13654,13670,-13662,13660,13671,-13656,2298,13655,-13672,13672,13664,-13657,13650,13664,-13674,13667,13665,-13645,13650,13673,-13667,13667,13658,-13667,13651,13668,-13670,13674,13668,-13660,13661,13675,-13661,13662,13669,-13677,13676,13663,-13663,13663,13677,-13671,13670,13675,-13662,13660,13678,-13672,13671,2291,-2299,13679,13664,-13673,13680,13673,-13665,13681,13665,-13668,13682,13666,-13674,13683,13667,-13667,\r\n13684,13669,-13669,13684,13668,-13675,13685,13674,-13660,13660,13675,-13687,13687,13676,-13670,13676,13688,-13664,13677,13663,-13690,13670,13677,-13691,13670,13691,-13676,13678,13660,-13687,13671,13678,-13693,2291,13671,-2293,13680,13664,-13680,13693,13673,-13681,13694,13681,-13668,13683,13666,-13683,13693,13682,-13674,13667,13683,-13696,13669,13684,-13688,13696,13684,-13675,13697,13674,-13686,13685,13659,-13699,13699,13686,-13676,13687,13700,-13677,13700,13688,-13677,13688,13689,-13664,13677,13689,-13702,13677,13702,-13691,13691,13670,-13691,13675,13691,-13704,13704,13678,-13687,13705,13692,-13679,13671,13692,-2293,13706,13693,-13681,13694,13667,-13696,13707,13683,-13683,13682,13693,-13709,13707,13695,-13684,13695,13687,-13685,13709,13684,-13697,13696,13674,-13698,13710,13686,-13700,13699,13675,-13712,13700,13687,-13713,13688,13700,-13714,13688,13714,-13690,13701,13689,-13715,13701,13715,-13678,13677,13715,-13703,13702,13716,-13691,13690,13703,-13692,13675,13703,-13718,13678,13704,-13706,13710,13704,-13687,13705,2293,-13693,2292,13692,-2294,13718,13693,-13707,13695,13709,-13695,13682,13708,-13708,13719,13708,-13694,13707,13720,-13696,13695,13720,-13688,13709,13695,-13685,13721,13710,-13700,13717,13711,-13676,13711,13721,-13700,13712,13687,-13721,13700,13712,-13723,13723,13713,-13701,13713,13714,-13689,13701,13714,-13725,13701,13725,-13716,13702,13715,-13727,13726,13716,-13703,13727,13690,-13717,13703,13690,-13729,13717,13703,-13730,13705,13704,-13731,13710,13730,-13705,13705,13730,-2294,13719,13693,-13719,13708,13731,-13708,13708,13719,-13732,13707,13731,-13721,13721,13730,-13711,13717,13732,-13712,13711,13733,-13722,13712,13720,-13732,13731,13722,-13713,13723,13700,-13723,13723,13734,-13714,13713,13734,-13715,13734,13724,-13715,13725,13701,-13725,13726,13715,-13726,13716,13726,-13736,13736,13690,-13728,13716,13737,-13728,13728,13690,-13737,13728,13738,-13704,13729,13703,-13739,13732,13717,-13730,13730,2333,-2294,13739,13731,-13720,13721,13740,-13731,13732,13733,-13712,13741,13721,-13734,13731,13742,-13723,13723,\r\n13722,-13744,13734,13723,-13745,13734,13745,-13725,13725,13724,-13746,13726,13725,-13747,13726,13746,-13736,13735,13747,-13717,13727,13748,-13737,13716,13747,-13738,13727,13737,-13749,13749,13728,-13737,13728,13750,-13739,13729,13738,-13752,13752,13732,-13730,13740,2333,-13731,13739,13742,-13732,13740,13721,-13742,13733,13732,-13754,13741,13733,-2377,13754,13722,-13743,13743,13722,-13756,13744,13723,-13744,13746,13725,-13746,13747,13735,-13747,13749,13736,-13749,13756,13737,-13748,13756,13748,-13738,13728,13749,-13751,13757,13738,-13751,13758,13751,-13739,13759,13729,-13752,13760,13732,-13753,13752,13729,-13760,13740,2334,-2334,13740,13741,-2335,13732,13760,-13754,13733,13753,-2377,2376,2334,-13742,13755,13722,-13755,13761,13749,-13749,13762,13748,-13757,13750,13749,-13762,13738,13757,-13759,13763,13757,-13751,13751,13758,-13765,13751,13765,-13760,13760,13752,-13767,13752,13759,-13768,13753,13760,-13769,13753,13768,-2377,13769,13761,-13749,13769,13748,-13763,13770,13750,-13762,13771,13758,-13758,13757,13763,-13773,13763,13750,-13771,13771,13764,-13759,13764,13765,-13752,13759,13765,-13774,13767,13766,-13753,13760,13766,-13775,13767,13759,-13774,13768,13760,-13775,13768,2412,-2377,13771,13757,-13776,13775,13757,-13773,13764,13771,-13777,13777,13765,-13765,13777,13773,-13766,13767,13778,-13767,13774,13766,-13779,13767,13773,-13780,13768,13774,-2413,13771,13775,-13781,13775,13772,-13782,13776,13771,-13783,13783,13764,-13777,13764,13783,-13778,13777,13784,-13774,13785,13778,-13768,13774,13778,-2505,13779,13773,-13787,13779,13785,-13768,13774,2504,-2413,13780,13775,-13788,13782,13771,-13781,13775,13781,-13789,13776,13782,-13790,13776,13790,-13784,13777,13783,-13792,13784,13777,-13793,13786,13773,-13785,13785,13793,-13779,2504,13778,-13794,13786,13794,-13780,13794,13785,-13780,13775,13795,-13788,13796,13780,-13788,13797,13782,-13781,1690,13788,-13782,13775,13788,-13796,13797,13789,-13783,13798,13776,-13790,13790,13776,-13799,13799,13783,-13791,13799,13791,-13784,13791,13800,-13778,13777,13800,-13793,13792,13801,-13785,13802,\r\n13786,-13785,13794,13793,-13786,2504,13793,-2548,13794,13786,-13804,1680,13787,-13796,13797,13780,-13797,13796,13787,-1681,1690,1667,-13789,1667,13795,-13789,13797,13804,-13790,13798,13789,-13805,13790,13798,-13806,13806,13799,-13791,13791,13799,-13808,13800,13791,-13809,13809,13792,-13801,13792,13810,-13802,13801,13802,-13785,13786,13802,-13812,13793,13794,-13813,13793,13812,-2548,13803,13786,-13812,13794,13803,-13813,1680,13795,-1690,13796,13813,-13798,1680,1699,-13797,1667,1689,-13796,13813,13804,-13798,13804,13814,-13799,13798,13814,-13806,13806,13790,-13806,13806,13815,-13800,13815,13807,-13800,13808,13791,-13808,13800,13808,-13810,13816,13792,-13810,13810,13792,-13818,13818,13801,-13811,13801,13811,-13803,2591,2547,-13813,13819,13803,-13812,13812,13803,-13821,13796,1699,-13814,13813,1709,-13805,13804,1709,-13815,13814,1703,-13806,13805,13821,-13807,13815,13806,-13822,13815,13822,-13808,13808,13807,-13824,13809,13808,-13825,13825,13792,-13817,13816,13809,-13827,13817,13792,-13826,13817,13827,-13811,13818,13828,-13802,13818,13810,-13830,13830,13811,-13802,13812,13820,-2592,13819,13820,-13804,13830,13819,-13812,1699,1709,-13814,1709,1704,-13815,13814,1704,-1704,13805,1703,-13822,13821,1708,-13816,13815,1708,-13823,13831,13807,-13823,13831,13823,-13808,13823,13824,-13809,13809,13824,-13827,13816,13832,-13826,13833,13816,-13827,13817,13825,-13835,13834,13827,-13818,13810,13827,-13830,13828,13818,-13836,13801,13828,-13831,13829,13835,-13819,13819,2591,-13821,13819,13830,-13837,1703,1698,-13822,13821,1698,-1709,1712,13822,-1709,13822,13823,-13832,1717,13824,-13824,1716,13826,-13825,13816,13833,-13833,13832,13834,-13826,1714,13833,-13827,13834,2983,-13828,13837,13829,-13828,13828,13835,-13838,13828,13838,-13831,13829,13837,-13836,2591,13819,-2676,13838,13836,-13831,13836,2675,-13820,1715,13822,-1713,13822,1715,-13824,1716,13824,-1718,1715,1717,-13824,1714,13826,-1717,13839,13832,-13834,13839,13834,-13833,13833,1714,-3118,13839,2983,-13835,2889,13827,-2984,13837,13827,-2890,13837,13838,-13829,13838,2757,-13837,2757,2675,\r\n-13837,13839,13833,-3118,13839,3117,-2984,13837,2889,-2851,13838,13837,-2851,2757,13838,-2851,2452,13602,-2368,13840,13841,-13843,13841,13843,-13845,13842,13841,-13846,13846,13840,-13843,13843,13847,-13845,13841,13844,-13846,13842,13845,-13849,13846,13842,-13849,13849,13843,-13851,13849,13847,-13844,13847,13845,-13845,13847,13848,-13846,13846,13848,-13852,13852,13851,-13854,13854,13849,-13851,13855,13847,-13850,13850,13856,-13855,13857,13848,-13848,13848,13853,-13852,13858,13852,-13854,13858,13859,-13853,13854,13855,-13850,13855,13857,-13848,13860,13854,-13857,13861,13848,-13858,13862,13853,-13849,13862,13858,-13854,13863,13859,-13865,13859,13858,-13866,13860,13855,-13855,13866,13857,-13856,13867,13860,-13857,13861,13868,-13849,13866,13861,-13858,13848,13868,-13863,13862,13869,-13859,13859,13865,-13865,13858,13870,-13866,13860,13866,-13856,13860,13867,-13872,13869,13862,-13869,13869,13870,-13859,13872,13864,-13866,13865,13870,-13874,13860,13871,-13867,13869,13868,-13875,13870,13869,-13875,13865,13875,-13873,13873,13870,-13877,13875,13865,-13874,13870,13874,-13878,13878,13872,-13876,13879,13876,-13871,13873,13876,-13880,13875,13873,-13881,13881,13870,-13878,13878,13875,-13881,13881,13879,-13871,13873,13879,-13881,13881,13877,-13883,13881,13883,-13880,13879,13884,-13881,13881,13882,-13886,13881,13885,-13884,13886,13879,-13884,13884,13879,-13887,13887,13883,-13886,13886,13883,-13889,13884,13886,-13890,13890,13883,-13888,13890,13888,-13884,13888,13891,-13887,13886,13891,-13890,13892,13888,-13891,13888,13893,-13892,13891,13894,-13890,13892,13893,-13889,13891,13893,-13895,13892,13895,-13894,13896,13894,-13894,13892,13897,-13896,13893,13895,-13897,13896,13898,-13895,13899,13895,-13898,13895,13900,-13897,13896,13900,-13899,13898,13901,-13895,13899,13902,-13896,13900,13895,-13904,13904,13898,-13901,13905,13901,-13899,13903,13895,-13903,13905,13898,-13905,13905,13906,-13902,13907,13901,-13907,13892,13890,-13909,5042,9012,-9052,9012,5042,-5022,9012,5021,-8977,8976,5021,-4965,8976,4964,-8931,4963,8930,-4965,8930,4963,-8920,4917,\r\n8919,-4964,8919,4917,-4920,8919,4919,-8890,4919,8901,-8890,4919,4873,-8902,4894,8901,-4874,8901,4894,-8908,8907,4894,-4872,13909,9135,-13911,9135,13909,-9095,9177,13910,-9136,13909,13910,-13912,13912,9094,-13910,13913,13910,-9178,13913,13911,-13911,5146,13909,-13912,9051,9094,-13913,5145,13912,-13910,9218,13913,-9178,13913,5173,-13912,5145,13909,-5147,5146,13911,-5148,9051,13912,-5128,5145,5127,-13913,13914,13913,-9219,13913,5195,-5174,13911,5173,-5148,5077,9051,-5128,13914,5195,-13914,13914,9218,-5234,9051,5077,-5043,13914,5233,-5196,13118,7484,-7561,7484,13118,-13099,7484,13098,-7414,13079,7413,-13099,7413,13079,-7336,7335,13079,-7147,7070,7146,-13080,13053,7070,-13080,7070,13053,-13916,13053,13037,-13916,13915,6996,-7071,13024,13915,-13038,13915,13916,-6997,13916,13915,-13025,13916,6952,-6997,13916,13024,-13010,13916,13917,-6953,12995,13916,-13010,13916,12995,-13918,6952,13917,-6955,12995,12986,-13918,13918,6954,-13918,12974,13917,-12987,13919,6954,-13919,13918,13917,-12975,6999,6954,-13920,13919,13918,-12957,12974,12956,-13919,6999,13919,-13921,12951,13919,-12957,13920,13919,-12952,6999,13920,-6957,12937,13920,-12952,13920,13921,-6957,13920,12937,-13922,6956,13921,-6956,12937,12923,-13922,6957,6955,-13922,12923,6957,-13922,6957,12923,-13923,12902,13922,-12924,6957,13922,-6875,12873,13922,-12903,6874,13922,-6835,12873,6834,-13923,12873,6796,-6835,12873,6875,-6797,6875,12873,-12835,12834,6836,-6876,6836,12834,-6753,13923,9075,-13925,9075,13923,-9097,9075,9076,-13925,13509,13923,-13925,9096,13923,-13926,13924,9076,-13927,13923,13509,-13926,13527,13509,-13925,9096,13925,-13928,9067,13926,-9077,13924,13926,-13528,13509,13494,-13926,13500,13927,-13926,13927,9160,-9097,9067,13928,-13927,13542,13527,-13927,13500,13925,-13495,13927,13500,-13484,13483,9160,-13928,13928,9067,-9026,13928,13542,-13927,9160,13483,-13930,9025,13930,-13929,13928,13543,-13543,13483,13473,-13930,9199,9160,-13930,13930,9025,-13932,13928,13930,-13551,13550,13543,-13929,13473,13452,-13930,13452,9199,-13930,8974,13931,-9026,13930,13931,-7150,13930,\r\n7150,-13551,9199,13452,-9240,8974,7225,-13932,13931,7185,-7150,13930,7149,-7151,9239,13452,-13933,8989,7225,-8975,7225,7185,-13932,13452,13419,-13933,13932,9262,-9240,8989,7188,-7226,13932,13419,-13434,13932,13433,-9263,8973,7188,-8990,9305,9262,-13434,7188,8973,-7266,9305,13433,-13438,9305,13437,-9330,13432,9329,-13438,13432,9330,-9330,13431,9330,-13433,9330,13431,-9378,9377,13431,-9403,5272,13289,-13934,13289,13297,-13934,5272,13933,-5247,13933,13297,-13935,13933,13934,-5247,13297,13304,-13935,5232,5246,-13935,13935,13934,-13305,5232,13934,-13936,13319,13935,-13305,5232,13935,-13937,13319,13936,-13936,5232,13936,-5205,13936,13319,-13938,13936,13938,-5205,13319,13334,-13938,13936,13937,-13939,5171,5204,-13939,13939,13937,-13335,13937,13939,-13939,5171,13938,-13941,13355,13939,-13335,13939,13940,-13939,5171,13940,-5122,13939,13355,-13388,13941,13940,-13940,13941,5121,-13941,13939,13387,-13942,5069,5121,-13942,13387,13401,-13942,13942,5069,-13942,13425,13941,-13402,5069,13942,-5031,13942,13941,-13426,13942,13943,-5031,13425,13427,-13943,13942,13449,-13944,5030,13943,-4992,13449,13942,-13428,13449,13470,-13944,4951,4991,-13944,13470,4951,-13944,13488,4951,-13471,13488,4901,-4952,13513,4901,-13489,13513,4855,-4902,4855,13513,-13945,13513,13533,-13945,4808,4855,-13945,13533,4725,-13945,4767,4808,-13945,13533,4666,-4726,4725,4767,-13945,4666,13533,-13542,4666,13541,-13946,13541,13554,-13946,4666,13945,-4629,13946,13945,-13555,13946,4628,-13946,13561,13946,-13555,4610,4628,-13947,13566,13946,-13562,13566,4610,-13947,13569,4610,-13567,4610,13569,-4560,13947,5233,-9219,5233,13947,-13949,13947,9218,-9237,9236,13948,-13948,5233,13948,-5248,9281,13948,-9237,5285,5247,-13949,9281,5285,-13949,9327,5285,-9282,9327,5324,-5286,5324,9327,-9401,9400,5364,-5325,5364,9400,-13950,13949,9400,-9420,5364,13949,-5408,9419,13950,-13950,5407,13949,-5442,13951,13950,-9420,13950,5441,-13950,13951,13952,-13951,9454,13951,-9420,5442,5441,-13951,13953,13952,-13952,5442,13950,-13953,13951,9454,-13955,13952,13953,-5451,13953,13951,-13955,5442,13952,\r\n-5431,9454,9468,-13955,5460,5450,-13954,13952,5450,-5431,13955,13953,-13955,13956,13954,-9469,13953,13955,-5461,13956,13955,-13955,13957,13956,-9469,5460,13955,-5468,13955,13956,-5469,13956,13957,-5469,13958,13957,-9469,13955,5468,-5468,5461,5468,-13958,13959,13957,-13959,13958,9468,-9454,5469,5461,-13958,13959,5469,-13958,13960,13959,-13959,9453,9492,-13959,5469,13959,-5471,13959,13960,-5466,13960,13958,-9493,5465,5470,-13960,13960,13961,-5466,9492,13962,-13961,13960,13962,-13962,5465,13961,-5456,9492,9503,-13963,13963,13961,-13963,5455,13961,-13965,9503,13963,-13963,13964,13961,-13964,5455,13964,-5455,13965,13963,-9504,13963,13966,-13965,13964,13967,-5455,13963,13965,-13967,13965,9503,-9517,13964,13966,-13968,5456,5454,-13968,13965,13968,-13967,13965,9516,-13970,13970,13967,-13967,13970,5456,-13968,13965,13969,-13969,13968,13970,-13967,9537,13969,-9517,5456,13970,-13972,13968,13969,-13973,13973,13970,-13969,9537,13974,-13970,13973,13971,-13971,5456,13971,-5450,13972,13969,-13975,13973,13968,-13973,9537,9548,-13975,13975,13971,-13974,13976,5449,-13972,13977,13972,-13975,13973,13972,-13976,13978,13974,-9549,13976,13971,-13976,5449,13976,-13980,13977,13975,-13973,13977,13974,-13981,13980,13974,-13979,13978,9548,-9559,13979,13976,-13976,5449,13979,-5447,13975,13977,-13982,13977,13980,-13982,13978,13982,-13981,13978,9558,-13984,13979,13975,-13982,13979,13984,-5447,13981,13980,-13986,13983,13982,-13979,13985,13980,-13983,13983,9558,-9558,13979,13981,-13987,13979,13986,-13985,5446,13984,-5448,13981,13985,-13983,13983,13987,-13983,13988,13986,-13982,13986,13989,-13985,13984,13989,-5448,13988,13981,-13983,13987,13988,-13983,13986,13988,-13990,13987,13989,-13989,13983,9557,-13991,13983,13990,-13988,13991,13990,-9558,13989,5473,-5448,13987,13990,-13993,13990,13991,-13993,13991,9557,-9568,13989,13987,-5474,13993,13987,-13993,13993,13992,-13992,13994,13991,-9568,13987,13995,-5474,13993,13995,-13988,13993,13991,-13995,13994,9567,-13500,5473,13995,-5465,13993,13996,-13996,13993,13994,-13997,13994,13499,-13998,13995,13998,-5465,\r\n13996,13998,-13996,13994,13997,-13997,13499,13999,-13998,13998,5453,-5465,14000,13998,-13997,14000,13996,-13998,13480,13999,-13500,13997,13999,-14002,14002,5453,-13999,14000,14002,-13999,13997,14001,-14001,14003,13999,-13481,14001,13999,-14005,5472,5453,-14003,14002,14000,-14006,14000,14001,-14007,14003,14004,-14000,14003,13480,-13461,14006,14001,-14005,14002,14005,-5473,14006,14005,-14001,14003,14007,-14005,14008,14003,-13461,14006,14004,-14008,14005,14009,-5473,14006,14007,-14006,14010,14007,-14004,14003,14008,-14012,13460,13441,-14009,14005,14007,-14010,5472,14009,-5464,14010,14009,-14008,14011,14010,-14004,14011,14008,-14013,14008,13441,-14014,14009,14010,-5464,5471,14010,-14012,14008,14013,-14013,14011,14012,-14015,13441,13415,-14014,5463,14010,-5472,14014,5471,-14012,14013,14015,-14013,14014,14012,-14016,14016,14013,-13416,14014,5466,-5472,14016,14015,-14014,14014,14015,-5467,13415,13390,-14017,14015,14016,-14018,5458,5466,-14016,14016,13390,-14019,14017,14016,-14019,14015,14017,-5459,13390,13378,-14019,14017,14018,-14020,14017,5440,-5459,13378,14020,-14019,14020,14019,-14019,14017,14019,-5441,14020,13378,-14022,14020,5427,-14020,5440,14019,-5428,13379,14021,-13379,14020,14021,-5427,5426,5427,-14021,13379,14022,-14022,5426,14021,-14023,13368,14022,-13380,5426,14022,-5429,13368,14023,-14023,14023,5428,-14023,13359,14023,-13369,5428,14023,-5403,14024,14023,-13360,14023,5387,-5403,14024,5387,-14024,13359,13358,-14025,5405,5387,-14025,14024,13358,-13353,13352,5405,-14025,5405,13352,-5377,5376,13352,-14026,13341,14025,-13353,5376,14025,-5345,14025,13341,-14027,5346,5344,-14026,13341,14027,-14027,14025,14026,-5347,13341,13316,-14028,5334,14026,-14028,5334,5346,-14027,14027,13316,-13308,5334,14027,-5318,13307,5317,-14028,5317,13307,-5294,13307,13295,-5294,13290,5293,-13296,5272,5293,-13291,13289,5272,-13291,7561,14028,-14030,7561,7449,-14029,14029,14028,-14031,7640,7561,-14030,14028,7449,-14032,14031,14030,-14029,14029,14030,-14033,7640,14029,-14034,14034,14031,-7450,14031,14035,-14031,14032,14030,-14037,14033,14029,\r\n-14033,14033,14037,-7641,14038,14031,-14035,14034,7449,-7339,14031,14039,-14036,14030,14035,-14037,14040,14032,-14037,14033,14032,-14042,14033,14042,-14038,7683,7640,-14038,14038,14039,-14032,14038,14034,-14044,7338,14043,-14035,14044,14035,-14040,14035,14044,-14037,14040,14041,-14033,14040,14036,-14045,14033,14041,-14043,14037,14042,-14046,14037,14046,-7684,14047,14039,-14039,14048,14038,-14044,14049,14043,-7339,14044,14039,-14051,14040,9461,-14042,14040,14044,-9429,14041,9482,-14043,14042,14051,-14046,14046,14037,-14046,7723,7683,-14047,14047,14050,-14040,14048,14047,-14039,14052,14048,-14044,14052,14043,-14050,14049,7338,-7264,14044,14050,-9429,9428,9461,-14041,9482,14041,-9462,14051,14042,-9483,14046,14045,-14052,7723,14046,-7842,14050,14047,-9393,14048,14053,-14048,14048,14052,-14054,14049,14054,-14053,14049,7263,-7225,9428,14050,-9393,9497,14051,-9483,14051,7841,-14047,9369,9392,-14048,14053,9369,-14048,14052,14055,-14054,7224,14054,-14050,14052,14054,-14056,9528,14051,-9498,9528,7841,-14052,14053,14056,-9370,14053,14055,-14057,7224,14057,-14055,14058,14055,-14055,7841,9528,-7881,9320,9369,-14057,14059,14056,-14056,7224,7181,-14058,14058,14054,-14058,14058,14059,-14056,14059,9320,-14057,7181,7145,-14058,14060,14058,-14058,14061,14059,-14059,14061,9320,-14060,14060,14057,-7146,14061,14058,-14061,14061,14062,-9321,7145,14063,-14061,14060,14064,-14062,14061,14064,-14063,9276,9320,-14063,14063,7145,-7070,14060,14063,-14065,14064,14065,-14063,14066,9276,-14063,14063,7069,-14068,14064,14063,-14068,14064,14067,-14066,14062,14065,-14067,14066,14068,-9277,14069,14067,-7070,14067,14070,-14066,14065,14071,-14067,14066,14071,-14069,9276,14068,-9233,14067,14069,-14071,7068,14069,-7070,14065,14070,-14072,14072,14068,-14072,14073,9232,-14069,14074,14070,-14070,14069,7068,-14075,14070,14072,-14072,14073,14068,-14073,14073,14075,-9233,14076,14070,-14075,7000,14074,-7069,14076,14072,-14071,14072,14076,-14074,14073,14077,-14076,9232,14075,-9174,14078,14076,-14075,14078,14074,-7001,14079,14073,-14077,14073,14079,-14078,14077,14080,\r\n-14076,14081,9173,-14076,14079,14076,-14079,6959,14078,-7001,14082,14077,-14080,14077,14082,-14081,14081,14075,-14081,14081,9090,-9174,14082,14079,-14079,6959,14082,-14079,14083,14080,-14083,14081,14080,-14085,14081,14085,-9091,14086,14082,-6960,14080,14083,-14085,14083,14082,-14088,14084,14085,-14082,9090,14085,-9049,14086,14087,-14083,6921,14086,-6960,14083,14088,-14085,14087,14088,-14084,14089,14085,-14085,14085,14090,-9049,14086,6921,-14088,14091,14084,-14089,14087,14092,-14089,14085,14089,-14091,14089,14084,-14094,14090,9026,-9049,14087,6921,-14093,14091,14093,-14085,14091,14088,-14093,14094,14090,-14090,14094,14089,-14094,14090,14095,-9027,6921,6841,-14093,14091,14096,-14094,14091,14092,-6878,14094,14097,-14091,6919,14094,-14094,14090,14097,-14096,9010,9026,-14096,6877,14092,-6842,14091,14098,-14097,6919,14093,-14097,6877,14098,-14092,14094,7033,-14098,6919,7033,-14095,7107,14095,-14098,7152,9010,-14096,6755,14096,-14099,6919,14096,-6719,6877,6797,-14099,14097,7033,-7108,7107,7152,-14096,9010,7152,-7228,6718,14096,-6756,6797,6755,-14099,14099,14100,-13286,14101,14100,-14100,13284,14099,-13286,9593,14102,-14104,14102,14100,-14104,14101,14103,-14101,14104,14101,-14100,13284,14104,-14100,14105,9593,-14104,14106,14103,-14102,14104,14106,-14102,14104,13284,-14108,9593,14105,-8524,14106,14105,-14104,14108,14106,-14105,13284,14109,-14108,14104,14107,-14111,14108,8523,-14106,14108,14105,-14107,14104,14110,-14109,13272,14109,-13285,14111,14107,-14110,14110,14107,-14113,8523,14108,-8498,14108,14110,-14113,14113,14109,-13273,14111,14112,-14108,14111,14109,-14115,8497,14108,-14113,14113,14115,-14110,14113,13272,-13278,14112,14111,-14117,14115,14114,-14110,14111,14114,-14117,14117,8497,-14113,14118,14115,-14114,14118,14113,-13278,14112,14116,-14120,14114,14115,-14121,14121,14116,-14115,14117,8420,-8498,14112,14119,-14118,14118,14122,-14116,14118,13277,-14124,14119,14116,-14125,14120,14115,-14123,14114,14120,-14126,14124,14116,-14122,14121,14114,-14126,14117,14126,-8421,14117,14119,-14125,14118,14127,-14123,14128,14123,-13278,\r\n14123,14127,-14119,14120,14122,-14130,14130,14125,-14121,14131,14124,-14122,14131,14121,-14126,14117,14124,-14127,8298,8420,-14127,14127,14132,-14123,14133,14123,-14129,13277,13264,-14129,14123,14134,-14128,14132,14129,-14123,14129,14135,-14121,14130,14136,-14126,14130,14120,-14136,14131,14126,-14125,14131,14125,-14138,14126,14138,-8299,14127,14139,-14133,14134,14123,-14134,14140,14133,-14129,14140,14128,-13265,14134,14139,-14128,14132,14141,-14130,14135,14129,-14142,14142,14136,-14131,14137,14125,-14137,14130,14135,-14143,14131,14138,-14127,14131,14137,-14139,14138,8167,-8299,14132,14139,-14142,14134,14133,-14144,14144,14133,-14141,13264,14145,-14141,14139,14134,-14147,14142,14135,-14142,14137,14136,-14143,14138,14137,-8168,14147,14141,-14140,14144,14143,-14134,14143,14146,-14135,14144,14140,-14149,13264,13250,-14146,14149,14140,-14146,14147,14139,-14147,14142,14141,-8124,14142,8123,-14138,8123,8167,-14138,8123,14141,-14148,14144,14150,-14144,14146,14143,-14151,14149,14148,-14141,14144,14148,-14152,13250,14152,-14146,14152,14149,-14146,14147,14146,-7960,8123,14147,-8043,14150,14144,-14152,14146,14150,-7885,14149,14153,-14149,14153,14151,-14149,14152,13250,-13252,14152,14154,-14150,7959,14146,-7885,14147,7959,-8043,14150,14151,-14156,7884,14150,-14156,14149,14154,-14154,14153,14155,-14152,14152,13251,-14155,7846,7884,-14156,14156,14153,-14155,14155,14153,-14157,14157,14154,-13252,7846,14155,-14157,14158,14156,-14155,14157,14158,-14155,13253,14157,-13252,14158,7846,-14157,14158,14157,-14160,14160,14157,-13254,14158,14161,-7847,14160,14159,-14158,14158,14159,-14162,14160,13253,-14163,7846,14161,-7884,14163,14159,-14161,14159,14163,-14162,13247,14162,-13254,14160,14162,-14164,14163,7883,-14162,13247,14164,-14163,14163,14162,-14166,14166,7883,-14164,13247,13228,-14165,14167,14162,-14165,14167,14165,-14163,14163,14165,-14167,14166,7882,-7884,14164,13228,-13238,14164,13237,-14168,14167,14168,-14166,14165,14169,-14167,14166,7843,-7883,14167,13237,-14171,14167,14170,-14169,14165,14168,-14170,14166,14169,-7844,13237,13226,\r\n-14171,14171,14168,-14171,14171,14169,-14169,14169,14172,-7844,13226,13224,-14171,14170,13224,-14172,14171,14173,-14170,14169,14173,-14173,7843,14172,-14175,13224,13225,-14172,14171,13225,-14174,13202,14172,-14174,14174,14172,-13185,7843,14174,-7765,13202,14173,-13226,13184,14172,-13203,14174,13184,-13165,14175,7764,-14175,14174,13164,-14176,14175,7639,-7765,13164,13118,-14176,14175,7560,-7640,14175,13118,-7561,14176,14177,-8828,8828,14176,-8828,8828,8829,-14177,14176,14178,-14178,14179,14178,-14177,14176,8829,-14180,14180,14177,-14179,8829,14181,-14180,8830,14181,-8830,14180,14178,-14183,14183,14182,-14179,14183,14178,-14185,14179,14184,-14179,14179,14181,-14185,14182,14185,-14181,8848,14181,-8831,14184,14181,-14187,8848,14186,-14182,14183,14184,-14188,14184,14188,-14188,14188,14184,-14190,14184,14186,-14190,14182,14183,-14191,14190,14183,-14188,14182,14191,-14186,14190,14191,-14183,14185,14191,-14193,14193,14186,-8849,8838,14193,-8849,14186,14194,-14190,14193,14194,-14187,14188,14189,-14196,14189,14196,-14196,14189,14194,-14197,14188,14197,-14188,14195,14197,-14189,14190,14187,-14199,14197,14198,-14188,14190,14199,-14192,14190,14198,-14200,14192,14191,-14201,14199,14200,-14192,14193,8838,-14202,8838,8847,-14202,14193,14201,-14195,14196,14194,-14203,14201,14203,-14195,14202,14194,-14204,14204,14195,-14197,14205,14204,-14197,14196,14202,-14207,14205,14196,-14207,14195,14207,-14198,14207,14195,-14209,14204,14208,-14196,14197,14207,-14199,14199,14198,-14210,14198,14207,-14210,14203,14201,-8848,8852,14203,-8848,14202,14203,-14211,8852,14210,-14204,14211,14206,-14203,14202,14210,-14213,14211,14202,-14213,14206,14213,-14206,14211,14214,-14207,14213,14206,-14216,14216,14206,-14215,14216,14215,-14207,14204,14205,-14218,14218,14217,-14206,14218,14205,-14214,14204,14217,-14209,14207,14208,-14220,14208,14220,-14220,14208,14221,-14221,14217,14221,-14209,14209,14207,-14223,14222,14207,-14220,8839,14210,-8853,8804,14212,-14211,8839,8804,-14211,14211,14212,-14215,8804,8768,-14213,14214,14212,-8740,8768,8739,-14213,14223,14216,-14215,\r\n14223,14214,-8740,14216,14223,-14216,14213,14215,-14225,14215,14223,-14225,14225,14218,-14214,14225,14213,-14225,14226,14217,-14219,14227,14226,-14219,14227,14218,-14229,14225,14228,-14219,14217,14229,-14222,14217,14226,-14230,14221,14230,-14221,14221,14229,-14231,14219,14220,-14232,14231,14220,-14233,14232,14220,-14231,14222,14219,-14232,8739,8692,-14224,14224,14223,-14234,14233,14223,-8618,14223,8692,-8618,14225,14224,-14235,14234,14224,-14234,14225,14235,-14229,14225,14236,-14236,14234,14236,-14226,14228,14237,-14228,14238,14237,-14229,14238,14228,-14236,14227,14239,-14227,14240,14239,-14228,14240,14227,-14238,14239,14229,-14227,14241,14230,-14230,14239,14241,-14230,14242,14232,-14231,14242,14230,-14242,14233,8617,-8528,14234,14233,-8528,14234,8527,-14237,14243,14235,-14237,14243,14236,-8428,8527,8427,-14237,14238,14235,-14245,14245,14235,-14244,14244,14235,-14246,14238,14246,-14238,14238,14244,-14247,14247,14240,-14238,14247,14237,-14247,14240,14248,-14240,14240,14249,-14249,14249,14240,-14248,14248,14241,-14240,14250,14242,-14242,14248,14250,-14242,14242,14250,-14252,14243,8427,-14253,14245,14243,-14253,14244,14245,-14254,14254,14246,-14245,14253,14254,-14245,14255,14249,-14248,14255,14247,-14257,14257,14248,-14250,14255,14257,-14250,14257,14250,-14249,14251,14250,-14259,14257,14258,-14251,14255,14256,-14260,14256,14260,-14260,14260,14256,-14262,14255,14258,-14258,14262,14258,-14256,14262,14255,-14260,14258,14262,-14264,14264,14260,-14262,14260,14265,-14267,14266,14267,-14261,14260,14268,-14266,14259,14260,-14268,14260,14264,-14269,14262,14259,-14268,14262,14267,-14264,14263,14267,-14270,14270,14271,-14266,14266,14265,-14272,14270,14265,-14273,14265,14273,-14273,14268,14273,-14266,14266,14271,-14275,14266,14274,-14268,14274,14275,-14268,14276,14267,-14276,14269,14267,-14277,14273,14268,-14278,14271,14278,-14280,14279,14280,-14272,14271,14270,-14279,14271,14280,-14275,14273,14277,-14273,14281,14270,-14273,14281,14272,-14283,14282,14272,-14278,14283,14278,-14271,14283,14270,-14282,14274,14280,-14285,14285,14274,\r\n-14285,14275,14274,-14286,14278,14286,-14280,14278,14287,-14287,14283,14287,-14279,14288,14279,-14287,14288,14289,-14280,14279,14289,-14281,14284,14280,-14290,14281,14282,-14291,14291,14283,-14282,14291,14281,-14293,14292,14281,-14294,14290,14293,-14282,14283,14291,-14288,14284,14289,-14295,14295,14288,-14287,14296,14295,-14287,14296,14286,-14288,14287,14297,-14297,14287,14291,-14298,14288,14295,-14299,14299,14288,-14299,14300,14288,-14300,14289,14288,-14301,14294,14289,-14301,14290,14301,-14294,14293,14302,-14292,14302,14293,-14304,14293,14291,-14293,14303,14293,-14305,14305,14304,-14294,14305,14293,-14302,14297,14291,-14307,14291,14302,-14307,14295,14296,-14308,14308,14307,-14297,14308,14296,-14298,14309,14310,-14296,14298,14295,-14311,14307,14309,-14296,14297,14306,-14309,14305,14301,-14312,14312,14306,-14303,14312,14302,-14304,14305,14313,-14305,14311,14313,-14306,14303,14304,-14315,14314,14304,-14316,14313,14315,-14305,14303,14316,-14313,14314,14316,-14304,14308,14306,-14318,14317,14306,-14313,14307,14308,-14319,14319,14318,-14309,14319,14308,-14321,14308,14317,-14321,14307,14318,-14310,14311,14321,-14314,14317,14312,-14323,14323,14322,-14313,14312,14316,-14324,14321,14315,-14314,14324,14315,-14326,14314,14315,-14325,14325,14315,-14327,14321,14326,-14316,14314,14327,-14317,14314,14324,-14328,14316,14328,-14324,14327,14328,-14317,14320,14317,-13857,13856,14317,-14323,14322,14323,-13868,13871,13867,-14324,13871,14323,-14330,14329,14323,-14329,14322,13867,-13857,14330,14325,-14327,13861,14325,-14332,13861,14327,-14326,14325,14330,-14332,14324,14325,-14328,13861,14329,-14328,14329,14328,-14328,14329,13861,-13867,14329,13866,-13872,13861,14332,-13869,13861,14331,-14333,14332,14331,-14334,14334,14333,-14332,14335,13868,-14333,14332,14333,-14336,14336,13868,-14336,13874,13868,-14337,14337,14333,-14335,14335,14333,-14338,14335,14338,-14337,14338,14335,-14340,14339,14335,-14338,14336,14338,-13875,14340,13877,-13875,14340,13874,-14339,14341,14339,-14338,14338,14339,-14342,14338,14342,-14341,13877,14340,-13883,14340,14343,\r\n-13883,14343,14340,-14343,14344,13882,-14344,14345,14344,-14344,13885,13882,-14345,14346,14344,-14346,14347,13885,-14345,14347,14344,-14347,14347,13887,-13886,14348,13887,-14348,14349,14350,-14352,14349,14352,-14351,14353,14351,-14351,13288,14349,-14352,14349,14354,-14353,14352,14355,-14351,14356,14351,-14354,14353,14350,-14358,14349,13288,-14359,13288,14351,-13287,14349,14358,-14355,14352,14354,-14360,14352,9591,-14356,14357,14350,-14356,14356,13286,-14352,14353,14360,-14357,14361,14353,-14358,14358,13288,-13288,14358,14362,-14355,14354,14363,-14360,14352,14359,-9592,9591,9586,-14356,14357,14355,-9587,13280,13286,-14357,14353,14361,-14361,14364,14356,-14361,9587,14361,-14358,14358,13287,-14363,14354,14362,-14364,14365,14359,-14364,9591,14359,-9593,9586,9587,-14358,14364,13280,-14357,14366,14360,-14362,14364,14360,-14367,14361,9587,-9589,14362,13287,-13286,14367,14363,-14363,14365,9592,-14360,14367,14365,-14364,13280,14364,-14369,14361,9588,-14367,14364,14366,-14370,14362,13285,-14368,9592,14365,-9595,14370,14365,-14368,14371,14368,-14365,13280,14368,-13280,9588,14372,-14367,14366,14372,-14370,14371,14364,-14370,14100,14367,-13286,14365,14102,-9595,14365,14370,-14103,14100,14370,-14368,14368,14371,-13280,9588,9581,-14373,14373,14369,-14373,14374,14371,-14370,14102,9593,-9595,14100,14102,-14371,14374,13279,-14372,14372,9581,-14376,14373,14374,-14370,14372,14375,-14374,13275,13279,-14375,9581,9577,-14376,14374,14373,-14377,14373,14375,-14378,14374,14376,-13276,14375,9577,-14378,14378,14376,-14374,14378,14373,-14378,13275,14376,-13275,9577,9575,-14378,14379,14376,-14379,14379,14378,-14378,14376,14379,-13275,14377,9575,-14381,14377,14380,-14380,13266,13274,-14380,14381,14380,-9576,14379,14380,-14383,14379,14382,-13267,14383,14380,-14382,14381,9575,-9569,14382,14380,-14384,13261,13266,-14383,14384,14383,-14382,14384,14381,-9569,14383,13261,-14383,14385,14383,-14385,9561,14384,-9569,14385,13261,-14384,14386,14385,-14385,9561,9552,-14385,13261,14385,-13249,14387,14385,-14387,14386,14384,-9553,14388,13248,-14386,14387,14388,\r\n-14386,14389,14387,-14387,9554,14386,-9553,14388,13229,-13249,14389,14388,-14388,14386,14390,-14390,14386,9554,-14391,14391,13229,-14389,14392,14388,-14390,14389,14390,-14394,14390,9554,-9561,14391,13211,-13230,14391,14388,-14393,14394,14392,-14390,14393,14390,-14396,14389,14393,-14395,14395,14390,-9561,13211,14391,-13202,14394,14391,-14393,14393,14395,-14397,14397,14394,-14394,14395,9560,-14399,14397,13201,-14392,14397,14391,-14395,14396,14395,-14400,14393,14396,-14398,9559,14398,-9561,14395,14398,-14400,14400,13201,-14398,14396,14399,-14402,14400,14397,-14397,14398,9559,-14403,14399,14398,-14403,13182,13201,-14401,14403,14401,-14400,14401,14400,-14397,9559,9539,-14403,14403,14399,-14403,14401,13182,-14401,14403,14404,-14402,14402,9539,-14406,14403,14402,-14407,14404,13182,-14402,14404,14403,-14408,9518,14405,-9540,14402,14405,-14409,14408,14406,-14403,14403,14406,-14408,13182,14404,-13163,14404,14407,-13163,14405,9518,-14410,14408,14405,-14411,14406,14408,-14412,14406,14411,-14408,14412,13162,-14408,9518,9494,-14410,14405,14409,-14411,14411,14408,-14411,14412,14407,-14412,13162,14412,-13150,14409,9494,-14414,14414,14410,-14410,14410,14415,-14412,14415,14412,-14412,14415,13149,-14413,14413,9494,-14417,14409,14413,-14415,14414,14415,-14411,14415,13125,-13150,9494,9470,-14417,14413,14416,-14418,14414,14413,-14418,14415,14414,-13126,14416,9470,-14419,14416,14418,-14418,14414,14417,-14420,14419,13125,-14415,14418,9470,-14421,14421,14417,-14419,14421,14419,-14418,14422,13125,-14420,9440,14420,-9471,14418,14420,-14424,14423,14421,-14419,14422,14419,-14422,14422,13106,-13126,14424,14420,-9441,14424,14423,-14421,14423,14422,-14422,14422,14425,-13107,14426,14424,-9441,14425,14423,-14425,14425,14422,-14424,13106,14425,-14428,14426,14428,-14425,9424,14426,-9441,14428,14425,-14425,14428,14427,-14426,13106,14427,-13078,14429,14428,-14427,14429,14426,-9425,14430,14427,-14429,13077,14427,-14431,14430,14428,-14430,14429,9424,-14432,14432,13077,-14431,14429,14431,-14431,14433,14431,-9425,14432,13066,-13078,14434,14432,-14431,14434,\r\n14430,-14432,14433,14434,-14432,14433,9424,-9388,14432,14435,-13067,14435,14432,-14435,14436,14434,-14434,14433,9387,-14438,13066,14435,-14439,14436,14435,-14435,14439,14436,-14434,14437,9387,-9387,14433,14437,-14440,14440,14438,-14436,13066,14438,-13044,14440,14435,-14437,14440,14436,-14440,14441,14437,-9387,14442,14439,-14438,14443,14438,-14441,14438,14444,-13044,14442,14440,-14440,14441,14442,-14438,14445,14441,-9387,14438,14443,-14445,14443,14440,-14443,13035,13043,-14445,14441,14443,-14443,14445,14446,-14442,14445,9386,-9386,14443,14447,-14445,13035,14444,-14448,14443,14441,-14447,14445,14448,-14447,14445,9385,-14449,14443,14446,-14448,13015,13035,-14448,14448,14449,-14447,9364,14448,-9386,14446,14449,-14448,14450,13015,-14448,14449,14448,-14452,14448,9364,-14452,14450,14447,-14450,14450,13006,-13016,14449,14451,-14451,14451,9364,-14453,14450,14453,-13007,14450,14451,-14454,9341,14452,-9365,14451,14452,-14454,14454,13006,-14454,14455,14452,-9342,14455,14453,-14453,12992,13006,-14455,14454,14453,-14456,9341,9339,-14456,12984,12992,-14455,14456,14454,-14456,14456,14455,-9340,14456,12984,-14455,14456,9339,-14458,14458,12984,-14457,9270,14457,-9340,14458,14456,-14458,12972,12984,-14459,14457,9270,-14460,14457,14459,-14459,14458,14460,-12973,9270,14461,-14460,14458,14459,-14461,14462,12972,-14461,9270,9247,-14462,14463,14459,-14462,14460,14459,-14464,14462,12961,-12973,14463,14462,-14461,14464,14461,-9248,14464,14463,-14462,14465,12961,-14463,14463,14465,-14463,9247,14466,-14465,14463,14464,-14466,12960,12961,-14466,9247,9207,-14467,14464,14466,-14468,14467,14465,-14465,14467,12960,-14466,14468,14466,-9208,14467,14466,-14470,14470,12960,-14468,14468,14469,-14467,9207,9165,-14469,14470,14467,-14470,12946,12960,-14471,14471,14469,-14469,14468,9165,-14473,14471,14470,-14470,14470,12940,-12947,14468,14472,-14472,9206,14472,-9166,14473,14470,-14472,14470,14473,-12941,14473,14471,-14473,14472,9206,-14475,12927,12940,-14474,14474,14473,-14473,14474,9206,-14476,14474,12927,-14474,9188,14475,-9207,14474,14475,-14477,14476,\r\n12927,-14475,9188,12921,-14476,14476,14475,-12926,14476,12925,-12928,9144,12921,-9189,12925,14475,-12922,12921,9144,-12906,9125,12905,-9145,9125,12904,-12906,9125,9108,-12905,9108,12894,-12905,9169,12894,-9109,9208,12894,-9170,12894,9208,-9168,14247,14246,-14478,14254,14477,-14247,14477,14478,-14248,14245,14252,-14480,8388,14252,-8428,14253,14245,-14480,14256,14247,-14479,14480,14477,-14255,14477,14480,-14479,14253,14481,-14255,14479,14252,-8389,14253,14479,-14483,14478,14483,-14257,14484,14282,-14278,14290,14282,-14485,14331,14330,-14486,14334,14331,-14486,14480,14254,-14482,14486,14478,-14481,14253,14487,-14482,14479,8388,-8388,14482,14479,-8388,14487,14253,-14483,14478,14488,-14484,14483,14261,-14257,14301,14290,-14490,14490,14268,-14265,14268,14491,-14278,14484,14277,-14492,14290,14484,-14490,14330,14326,-14493,14485,14330,-14494,14481,14494,-14481,14478,14486,-14489,14480,14495,-14487,14481,14487,-14495,14482,8387,-8427,14487,14482,-12142,14496,14483,-14489,14483,14497,-14262,14311,14301,-14490,14498,14264,-14262,14490,14491,-14269,14498,14490,-14265,14499,14484,-14492,14499,14489,-14485,14492,14326,-14501,14492,14493,-14331,14480,14494,-14496,14501,14488,-14487,14501,14486,-14496,14502,14494,-14488,8426,12141,-14483,12141,12048,-14488,14496,14503,-14484,14488,14504,-14497,14497,14483,-14504,14261,14497,-14499,14311,14489,-14506,14311,14505,-14322,14506,14491,-14491,14498,14507,-14491,14499,14491,-14507,14499,14508,-14490,14509,14326,-14322,14500,14326,-14510,14494,14510,-14496,14501,14504,-14489,14495,14511,-14502,14494,14502,-14511,14487,12048,-14503,14496,14512,-14504,14496,14504,-14514,14497,14503,-14515,14498,14497,-14516,14505,14489,-14509,14321,14505,-14517,14507,14506,-14491,14498,14515,-14508,14499,14506,-14518,14499,14517,-14509,14516,14509,-14322,14495,14510,-14512,14504,14501,-14519,14501,14511,-14520,14520,14510,-14503,11952,14502,-12049,14496,14521,-14513,14512,14514,-14504,14504,14522,-14514,14513,14521,-14497,14515,14497,-14515,14508,14523,-14506,14516,14505,-14524,14524,14506,-14508,14515,14525,\r\n-14508,14506,14526,-14518,14517,14527,-14509,14509,14516,-14529,14529,14511,-14511,14501,14519,-14519,14504,14518,-14531,14511,14529,-14520,14529,14510,-14521,11853,14520,-14503,11853,14502,-11953,14521,14531,-14513,14514,14512,-14533,14504,14530,-14523,14533,14513,-14523,14513,14533,-14522,14515,14514,-14535,14508,14527,-14524,14528,14516,-14524,14506,14524,-14527,14525,14524,-14508,14525,14515,-14535,14526,14535,-14518,14527,14517,-14536,14519,14536,-14519,14536,14530,-14519,14529,14536,-14520,14520,11745,-14530,11853,11745,-14521,14521,14533,-14532,14512,14531,-14538,14538,14532,-14513,14539,14514,-14533,14530,14540,-14523,14533,14522,-14542,14539,14534,-14515,14528,14523,-14528,14524,14542,-14527,14525,14542,-14525,14525,14534,-14543,14535,14526,-14544,14536,14544,-14531,11745,14536,-14530,14531,14533,-14546,14546,14537,-14532,14512,14537,-14539,14538,14539,-14533,14530,14544,-14541,14547,14522,-14541,14547,14541,-14523,14545,14533,-14542,14534,14539,-14543,14542,14543,-14527,11575,14544,-14537,11745,11575,-14537,14545,14548,-14532,14537,14546,-14550,14546,14531,-14549,14538,14537,-14551,14538,14550,-14540,14540,14544,-11400,14547,14540,-14552,14547,14552,-14542,14545,14541,-14553,14542,14539,-14544,11575,11399,-14545,14545,14553,-14549,14546,14554,-14550,14537,14549,-14556,14546,14548,-14557,14537,14555,-14551,14539,14550,-14558,11399,14551,-14541,14547,14551,-14553,14552,14553,-14546,14548,14553,-14557,14554,14546,-14557,14554,14558,-14550,14559,14555,-14550,14550,14555,-14561,14557,14550,-14562,11399,11292,-14552,14552,14551,-11293,14552,11198,-14554,14553,14562,-14557,14554,14556,-14564,14554,14564,-14559,14565,14549,-14559,14559,14560,-14556,14565,14559,-14550,14550,14560,-14567,14561,14550,-14567,11292,11198,-14553,14553,11198,-14563,14563,14556,-14563,14563,14564,-14555,14567,14558,-14565,14558,14567,-14566,14568,14560,-14560,14569,14559,-14566,14566,14560,-14571,11198,11112,-14563,14563,14562,-11113,14563,11070,-14565,14567,14564,-11029,14571,14565,-14568,14560,14568,-14573,14568,14559,-14574,14573,14559,\r\n-14570,14569,14565,-14572,14570,14560,-14573,11070,14563,-11113,11028,14564,-11071,11028,10992,-14568,14571,14567,-10993,14568,14574,-14573,14575,14568,-14574,14573,14569,-14577,14569,14571,-14577,14571,10992,-14578,14568,14575,-14575,14572,14574,-14579,14573,14579,-14576,14579,14573,-14577,14571,14577,-14577,10992,10911,-14578,14575,14580,-14575,14578,14574,-14582,14582,14575,-14580,14579,14576,-14584,14583,14576,-14578,14583,14577,-10912,14575,14582,-14581,14584,14574,-14581,14574,14584,-14582,14582,14579,-14586,14585,14579,-14584,10868,14583,-10912,14586,14580,-14583,14584,14580,-14587,14584,14587,-14582,14585,14588,-14583,14585,14583,-10869,14586,14582,-14589,14589,14584,-14587,14584,14589,-14588,14581,14587,-14591,14585,10867,-14589,10867,14585,-10869,14591,14586,-14589,14589,14586,-14593,14593,14587,-14590,14590,14587,-14595,14591,14588,-10868,14591,14592,-14587,14589,14592,-14596,14593,14594,-14588,14589,14595,-14594,14591,10867,-14597,14591,14596,-14593,14597,14595,-14593,14593,14598,-14595,14599,14593,-14596,10867,10790,-14597,14600,14592,-14597,14597,14601,-14596,14592,14600,-14598,14593,14599,-14599,14594,14598,-14603,14599,14595,-14602,14600,14596,-10791,14597,10754,-14602,14597,14600,-10754,14599,14603,-14599,14603,14602,-14599,14604,14594,-14603,14601,14605,-14600,10790,10753,-14601,10753,10754,-14598,10752,14601,-10755,14599,14605,-14604,14603,14606,-14603,14601,10752,-14606,14603,14605,-14608,14603,14607,-14607,14602,14606,-14609,14605,10752,-14610,14605,14609,-14608,14610,14606,-14608,14608,14606,-14612,10674,14609,-10753,14609,14612,-14608,14613,14606,-14611,14610,14607,-14613,14613,14611,-14607,10674,10673,-14610,14614,10065,-14616,14609,10673,-14613,14616,14613,-14611,14617,14610,-14613,14611,14613,-14619,10065,14614,-10119,10672,14612,-10674,14619,14613,-14617,14616,14610,-14618,14612,10672,-14618,14618,14613,-14621,10118,14614,-14622,14622,14613,-14620,14619,14616,-14624,14624,14616,-14618,10672,14624,-14618,14622,14620,-14614,14625,10118,-14622,14626,14622,-14620,14623,14616,-14625,14623,14627,\r\n-14620,10638,14624,-10673,14622,14628,-14621,10118,14625,-14630,14630,14622,-14627,14626,14619,-14628,14623,14624,-10611,14623,14631,-14628,10610,14624,-10639,14622,14630,-14629,14632,14629,-14626,10141,10118,-14630,14630,14626,-14634,14633,14626,-14628,14631,14623,-10611,14633,14627,-14632,14634,14628,-14631,14635,14629,-14633,10141,14629,-14637,14633,14637,-14631,14631,10610,-10547,14633,14631,-10546,14634,14638,-14629,14634,14630,-14638,14635,14636,-14630,14636,10218,-10142,14633,14639,-14638,10546,10545,-14632,10545,14640,-14634,14638,14634,-14642,14634,14637,-14643,14641,14636,-14636,14636,14634,-10219,14639,14633,-14641,14639,14643,-14638,10545,10489,-14641,14641,14634,-14637,14642,14637,-14644,10218,14634,-14643,14639,14640,-10490,14639,14644,-14644,14643,14645,-14643,10218,14642,-10243,10489,14644,-14640,14643,14644,-14646,14642,14645,-10243,10489,10387,-14645,14646,14645,-14645,10242,14645,-10297,14646,14644,-10388,10296,14645,-14647,10387,10326,-14647,10296,14646,-10327,10296,10326,-10274,14647,14648,-2929,2928,2977,-14648,2928,14648,-2845,3112,14649,-2978,14649,14647,-2978,14650,14647,-14652,14649,14651,-14648,14647,14650,-14649,14650,14652,-14649,14652,2844,-14649,2844,14652,-2846,3157,14653,-3113,14654,3112,-14654,14649,3112,-14655,14649,14654,-14652,14650,14651,-14656,14656,14650,-14656,14650,14656,-14653,14657,14658,-14652,14659,14657,-14652,14658,14655,-14652,14659,14651,-14655,14660,14652,-14657,14652,14660,-14662,14652,14661,-2846,14662,2845,-14662,2795,2845,-14663,3251,14663,-3158,14664,3157,-14664,14653,3157,-14665,14653,14664,-14660,14654,14653,-14660,14658,14665,-14656,14665,14656,-14656,14666,14656,-14666,14660,14656,-14667,14657,14667,-14659,14667,14668,-14659,14665,14658,-14669,14659,14669,-14671,14670,14657,-14660,14659,14664,-14670,14670,14667,-14658,14660,14666,-14672,14660,14671,-14662,14662,14661,-14672,14662,14671,-14673,14662,14672,-2796,14673,2795,-14673,2798,2795,-14674,3302,14663,-3252,14674,14663,-3303,14674,14669,-14664,14664,14663,-14670,14665,14668,-14676,14676,14665,-14676,14666,\r\n14665,-14677,14677,14666,-14677,14677,14678,-14667,14679,14666,-14679,14671,14666,-14681,14666,14679,-14682,14666,14681,-14681,14682,14667,-14671,14682,14683,-14668,14675,14667,-14684,14667,14675,-14669,14669,14684,-14671,14669,14674,-14685,14670,14685,-14683,14670,14684,-14686,14671,14680,-14673,14673,14672,-14681,14673,14680,-14687,14673,14686,-2799,14686,2797,-2799,3400,14687,-3303,14674,3302,-14688,14674,14687,-14689,14688,14684,-14675,14675,14683,-14690,14689,14690,-14676,14676,14675,-14691,14690,14691,-14677,14677,14676,-14692,14677,14691,-14679,14692,14678,-14692,14679,14678,-14693,14693,14681,-14680,14692,14694,-14680,14679,14695,-14694,14679,14694,-14696,14680,14681,-14697,14693,14696,-14682,14680,14696,-14687,14697,14682,-14686,14697,14698,-14683,14698,14683,-14683,14698,14699,-14684,14700,14683,-14700,14700,14689,-14684,14688,14685,-14685,14685,14701,-14698,14685,14702,-14702,14702,14685,-14689,14686,14696,-2798,2797,14696,-2754,14687,3400,-3447,14687,3446,-14703,14702,14688,-14688,14689,14700,-14704,14689,14703,-14705,14689,14705,-14691,14704,14706,-14690,14706,14705,-14690,14690,14705,-14692,14707,14691,-14706,14691,14707,-14693,14708,14692,-14708,14692,14708,-14695,14709,14694,-14709,14710,14694,-14710,14710,14695,-14695,14711,14693,-14696,14711,14695,-14713,14712,14695,-14711,14696,14693,-14714,14711,14713,-14694,14696,14713,-2754,14697,14701,-14715,14697,14714,-14716,14698,14697,-14716,14698,14715,-14717,14699,14698,-14717,14699,14716,-14718,14717,14718,-14700,14700,14699,-14719,14718,14703,-14701,14719,14714,-14702,14701,14720,-14720,14702,14720,-14702,14702,8795,-14721,14702,3446,-8796,2706,2753,-14714,3446,3507,-8796,14721,14703,-14719,14703,14722,-14705,14721,14723,-14704,14722,14703,-14724,14704,14722,-14707,14706,14724,-14706,14725,14706,-14723,14706,14725,-14725,14705,14724,-14708,14724,14708,-14708,14724,14726,-14709,14708,14726,-14728,14709,14708,-14728,14727,14728,-14710,14709,14728,-14711,14728,14729,-14711,14730,14712,-14711,14731,14710,-14730,14730,14710,-14733,14732,14710,-14732,14711,\r\n14712,-14734,14712,14734,-14734,14712,14730,-14735,14713,14711,-14736,14736,14735,-14712,14736,14711,-14734,14713,14735,-2707,14737,14714,-14720,14737,14738,-14715,14715,14714,-14739,14715,14738,-14740,14716,14715,-14740,14716,14739,-14741,14716,14740,-14718,14717,14740,-14742,14717,14741,-14743,14717,14742,-14719,14721,14718,-14743,14743,14719,-14721,14743,14720,-8796,14744,14737,-14720,14744,14719,-14744,14743,8795,-8819,2706,14735,-2668,14721,14742,-14746,14746,14721,-14746,14723,14721,-14747,14723,14746,-14748,14747,14748,-14724,14722,14723,-14749,14725,14722,-14749,14749,14725,-14749,14750,14724,-14726,14751,14725,-14750,14750,14725,-14752,14750,14726,-14725,14750,14751,-14727,14752,14726,-14752,14753,14727,-14727,14752,14754,-14727,14753,14726,-14755,14755,14727,-14754,14727,14755,-14729,14756,14728,-14756,14728,14756,-14730,14756,14757,-14730,14731,14729,-14758,14732,14731,-14759,14757,14759,-14732,14759,14758,-14732,14760,14730,-14733,14760,14732,-14759,14761,14734,-14731,14762,14761,-14731,14762,14730,-14761,14763,14733,-14735,14761,14763,-14735,14736,14733,-14765,14763,14764,-14734,14736,2702,-14736,2702,14736,-2623,14736,14764,-2623,2667,14735,-2703,14737,14744,-14766,14737,14765,-14767,14766,14738,-14738,14767,14738,-14767,14767,14768,-14739,14768,14739,-14739,14768,14769,-14740,14739,14769,-14741,14740,14769,-14771,14770,14741,-14741,14770,14771,-14742,14745,14741,-14772,14742,14741,-14746,14744,14743,-8819,14744,8833,-14766,14744,8817,-8834,8818,8817,-14745,14745,14771,-14773,14772,14773,-14746,14746,14745,-14774,14747,14746,-14774,14747,14773,-14775,14747,14774,-14749,14774,14775,-14749,14749,14748,-14776,14776,14749,-14776,14751,14749,-14777,14752,14751,-14777,14776,14777,-14753,14752,14777,-14755,14754,14777,-14779,14754,14778,-14754,14755,14753,-14779,14756,14755,-14779,14778,14779,-14757,14779,14757,-14757,14779,14780,-14758,14757,14780,-14760,14781,14758,-14760,14759,14780,-14783,14781,14759,-14783,14783,14760,-14759,14783,14758,-14782,14762,14760,-14784,14761,14762,-14785,14784,14762,-14786,14762,\r\n14783,-14786,14786,14763,-14762,14761,14784,-14787,14787,14764,-14764,14786,14787,-14764,2622,14764,-2664,14787,2663,-14765,14765,8833,-8835,14767,14788,-14769,14768,14788,-14790,14789,14769,-14769,14789,14790,-14770,14790,14771,-14770,14770,14769,-14772,14771,14790,-14792,14771,14791,-14793,14772,14771,-14793,14772,14792,-14794,14793,14773,-14773,14794,14773,-14794,14774,14773,-14795,14794,14795,-14775,14795,14796,-14775,14774,14796,-14776,14796,14797,-14776,14798,14775,-14798,14798,14776,-14776,14798,14799,-14777,14776,14799,-14801,14800,14801,-14777,14801,14777,-14777,14801,14802,-14778,14802,14778,-14778,14803,14778,-14803,14778,14803,-14780,14779,14803,-14781,14804,14780,-14804,14804,14782,-14781,14804,14805,-14783,14806,14781,-14783,14806,14782,-14806,14781,14807,-14784,14781,14808,-14808,14781,14806,-14809,14785,14783,-14810,14809,14783,-14811,14807,14810,-14784,14811,14784,-14786,14811,14785,-14813,14785,14809,-14813,14813,14786,-14785,14811,14813,-14785,14814,14787,-14787,14786,2582,-14815,14813,2582,-14787,2663,14787,-2621,2620,14787,-2622,14814,2621,-14788,14815,14792,-14792,14815,14793,-14793,14815,14816,-14794,14816,14794,-14794,14794,14816,-14818,14795,14794,-14818,14817,14818,-14796,14818,14819,-14796,14795,14819,-14821,14795,14820,-14797,14797,14796,-14821,13863,14797,-14821,13863,14821,-14798,14797,14821,-14799,14822,14798,-14822,14823,14798,-14823,14823,14799,-14799,14823,14824,-14800,14799,14824,-14801,14801,14800,-14825,14824,14825,-14802,14825,14802,-14802,14825,14826,-14803,14803,14802,-14827,14803,14826,-14805,14826,14827,-14805,14828,14804,-14828,14804,14828,-14806,14805,14828,-14830,14805,14829,-14807,14829,14808,-14807,14808,14830,-14808,14808,14831,-14831,14831,14808,-14830,14810,14807,-14833,13585,14807,-14831,13585,14832,-14808,14810,14832,-14810,14833,14812,-14810,14809,14832,-14835,14809,14834,-14834,14833,14811,-14813,14813,14811,-14836,14835,14811,-14837,14833,14836,-14812,2494,2582,-14814,2494,14813,-14836,2664,14814,-2583,2664,2621,-14815,13863,14820,-14820,14822,14837,-14824,14822,\r\n14838,-14838,14837,14824,-14824,14837,14839,-14825,14839,14825,-14825,14840,14825,-14840,14825,14841,-14827,14840,14842,-14826,14825,14842,-14842,14841,14843,-14827,14827,14826,-14844,14827,14843,-13573,14827,13572,-13572,13571,14828,-14828,13571,14844,-14829,14829,14828,-14845,14829,14844,-14832,14845,14831,-14845,14831,13590,-14831,14831,14845,-13591,13583,13585,-14831,13590,13583,-14831,13586,14832,-13586,13595,14834,-14833,13586,13595,-14833,14833,14834,-14847,13595,14846,-14835,14833,14846,-14837,14835,14836,-2496,14836,13592,-2496,14846,13599,-14837,14836,13599,-13593,2495,2494,-14836,14837,14838,-14848,14837,14847,-14840,14840,14839,-14848,14840,14847,-14849,14840,14848,-14850,14840,14849,-14843,14843,14841,-14843,14849,14850,-14843,14851,14843,-14843,14852,14842,-14851,14851,14842,-14854,14854,14842,-14853,14853,14842,-14855,13572,14843,-14852,14851,14855,-13573,14856,13572,-14856,13576,13572,-14857,13571,13573,-14845,14845,14844,-13574,14845,13573,-13583,13590,14845,-13583,14846,13595,-13600,14852,14850,-14858,14858,14853,-14855,14851,14853,-14856,14859,14860,-14862,14860,14859,-14863,14863,14861,-14861,14864,14862,-14860,14860,14862,-14866,14861,14863,-14867,14863,14860,-14866,14867,14862,-14865,14865,14862,-14869,14866,14863,-14870,14870,14863,-14866,14867,14868,-14863,14871,14867,-14865,14865,14868,-14873,14863,14873,-14870,14863,14870,-14874,14874,14870,-14866,14868,14867,-14876,14876,14867,-14872,14868,14875,-14873,14874,14865,-14873,14873,14877,-14870,14878,14873,-14871,14879,14870,-14875,14876,14875,-14868,14880,14876,-14872,14881,14872,-14876,14874,14872,-14883,14873,14883,-14878,14873,14878,-14884,14878,14870,-14880,14879,14874,-14885,14885,14875,-14877,14880,14886,-14877,14881,14887,-14873,14888,14881,-14876,14882,14872,-14888,14874,14882,-14890,14883,14890,-14878,14891,14883,-14879,14879,14892,-14879,14874,14889,-14885,14879,14884,-14894,14888,14875,-14886,14885,14876,-14887,14880,14894,-14887,14895,14887,-14882,14896,14881,-14889,14895,14882,-14888,14882,14897,-14890,14883,14898,-14891,14877,14890,\r\n-14900,14883,14891,-14899,14891,14878,-14893,14893,14892,-14880,14900,14884,-14890,14901,14893,-14885,14902,14888,-14886,14903,14885,-14887,14903,14886,-14895,14895,14881,-14897,14888,14904,-14897,14895,14905,-14883,14897,14882,-14907,14889,14897,-14901,14907,14890,-14899,14907,14899,-14891,14891,14908,-14899,14892,14909,-14892,14893,14910,-14893,14900,14911,-14885,14901,14912,-14894,14901,14884,-14912,14902,14904,-14889,14902,14885,-14904,14913,14903,-14895,14914,14895,-14897,14896,14904,-14916,14895,14916,-14906,14905,14906,-14883,14897,14906,-8835,14897,14911,-14901,14908,14907,-14899,14899,14907,-14193,14891,14917,-14909,14910,14909,-14893,14909,14918,-14892,14910,14893,-14920,14912,14901,-8791,14912,14919,-14894,14901,14911,-14921,14921,14904,-14903,14922,14902,-14904,14913,14922,-14904,14923,14913,-14895,14914,14916,-14896,14914,14896,-14925,14904,14925,-14916,14896,14915,-14925,14906,14905,-14917,14926,8834,-14907,14897,8834,-8833,14897,14927,-14912,14907,14908,-14186,14907,14185,-14193,14917,14891,-14919,14917,14180,-14909,14910,14928,-14910,14909,14928,-14919,14929,14910,-14920,8790,14901,-8792,14912,8790,-8725,14919,14912,-8744,14927,14920,-14912,14920,8791,-14902,14930,14904,-14922,14902,14922,-14922,14931,14922,-14914,14932,14913,-14924,14914,14933,-14917,14924,14934,-14915,14930,14925,-14905,14935,14915,-14926,14935,14924,-14916,14906,14916,-14937,14765,8834,-14927,14936,14926,-14907,8831,14897,-8833,8831,14927,-14898,14908,14180,-14186,14917,14918,-14938,14917,14177,-14181,14910,14929,-14929,14928,14937,-14919,14919,14938,-14930,8743,14912,-8725,14919,8743,-8790,8814,14920,-14928,8791,14920,-8745,14939,14930,-14922,14939,14921,-14923,14940,14922,-14932,14932,14931,-14914,14914,14934,-14934,14933,14936,-14917,14924,14941,-14935,14930,14942,-14926,14935,14925,-14944,14935,14941,-14925,14926,14944,-14766,14936,14945,-14927,8831,8814,-14928,14917,14937,-14178,14928,14929,-8812,14937,14928,-8813,8789,14938,-14920,8811,14929,-14939,8814,8744,-14921,14930,14939,-14947,14939,14922,-14941,14940,14931,-14933,14947,\r\n14933,-14935,14933,14948,-14937,14949,14934,-14942,14942,14930,-14951,14943,14925,-14943,14943,14951,-14936,14935,14951,-14942,14926,14945,-14945,14944,14766,-14766,14948,14945,-14937,8827,14177,-14938,8812,14928,-8812,8827,14937,-8813,8789,8811,-14939,14952,14946,-14940,14930,14946,-14951,14939,14940,-14954,14940,14932,-14954,14933,14947,-14949,14947,14934,-14950,14949,14941,-14955,14942,14950,-14956,14943,14942,-14957,14943,14956,-14952,14941,14951,-14955,14945,14957,-14945,14944,14957,-14767,14948,14958,-14946,14952,14959,-14947,14939,14953,-14953,14960,14950,-14947,14961,14953,-14933,14947,14962,-14949,14947,14949,-14963,14949,14954,-14964,14950,14964,-14956,14942,14955,-14957,14965,14951,-14957,14966,14954,-14952,14945,14958,-14958,14766,14957,-14768,14948,14967,-14959,14968,14959,-14953,14959,14960,-14947,14969,14952,-14954,14960,14964,-14951,14969,14953,-14962,14962,14967,-14949,14949,14963,-14963,14963,14954,-14971,14955,14964,-14972,14972,14956,-14956,14965,14966,-14952,14956,14972,-14966,14970,14954,-14967,14958,14973,-14958,14767,14957,-14974,14974,14958,-14968,14968,14975,-14960,14968,14952,-14970,14960,14959,-14977,14977,14964,-14961,14978,14969,-14962,14967,14962,-14964,14970,14979,-14964,14977,14971,-14965,14955,14971,-14981,14955,14980,-14973,14966,14965,-14982,14965,14972,-14983,14966,14983,-14971,14974,14973,-14959,14767,14973,-14789,14967,14979,-14975,14984,14975,-14969,14959,14975,-14977,14968,14969,-14986,14960,14976,-14978,14985,14969,-14979,14967,14963,-14980,14970,14986,-14980,14971,14977,-14988,14971,14988,-14981,14980,14989,-14973,14965,14982,-14982,14990,14966,-14982,14972,14991,-14983,14983,14966,-14991,14986,14970,-14984,14973,14974,-14791,14973,14789,-14789,14979,14992,-14975,14984,14993,-14976,14968,14994,-14985,14975,14995,-14977,14996,14968,-14986,14976,14997,-14978,14998,14985,-14979,14992,14979,-14987,14987,14977,-14998,14971,14987,-14989,14988,14999,-14981,14999,14989,-14981,14972,14989,-14992,15000,14981,-14983,14990,14981,-15002,14991,15000,-14983,14983,14990,-15003,15002,14986,\r\n-14984,14790,14974,-14993,14789,14973,-14791,14993,14984,-15004,14995,14975,-14994,14996,14994,-14969,14984,14994,-15005,14995,14997,-14977,14998,14996,-14986,14992,14986,-14816,14997,15005,-14988,15006,14988,-14988,14999,14988,-15008,14999,15008,-14990,14991,14989,-15009,15000,15001,-14982,15002,14990,-15002,14991,15009,-15001,14815,14986,-15003,14791,14790,-14993,15004,15003,-14985,15003,15010,-14994,14995,14993,-15011,14309,14994,-14997,15011,15004,-14995,14995,15012,-14998,14998,15013,-14997,14815,14791,-14993,14997,15012,-15006,15005,15006,-14988,15006,15007,-14989,14999,15007,-15015,15014,15008,-15000,14991,15008,-15010,15001,15000,-15010,15002,15001,-14817,15002,14816,-14816,15004,15015,-15004,15003,15015,-15011,14995,15010,-15013,14309,15016,-14995,14310,14309,-14997,15011,15017,-15005,15016,15011,-14995,14310,14996,-15014,15005,15012,-13841,15005,15018,-15007,15006,15019,-15008,15014,15007,-15021,15014,15021,-15009,15008,15022,-15010,15001,15009,-14817,15015,15004,-15018,15010,15015,-13842,15012,15010,-13842,15016,14309,-14319,15023,15017,-15012,15016,14319,-15012,14298,14310,-15014,15012,13841,-13841,15018,15005,-13841,15018,15019,-15007,15020,15007,-15020,15020,15024,-15015,15021,15014,-15025,15021,15022,-15009,14817,15009,-15023,15009,14817,-14817,15015,15017,-15026,13841,15015,-13844,15016,14318,-14320,15023,15025,-15018,15011,14319,-15024,15018,13840,-13847,15018,15026,-15020,15027,15020,-15020,15020,15028,-15025,14818,15021,-15025,15021,14818,-15023,15022,14818,-14818,15015,15025,-13844,15025,15023,-13851,14319,15029,-15024,15018,13846,-15027,15027,15019,-15027,15027,15028,-15021,15028,13852,-15025,14818,15024,-14820,13843,15025,-13851,13850,15023,-15030,14320,15029,-14320,15026,13846,-13852,15027,15026,-13852,15027,13851,-15029,13852,15028,-13852,15024,13852,-15031,14819,15024,-15031,13850,15029,-13857,14320,13856,-15030,13859,15030,-13853,13863,14819,-15031,13859,13863,-15031,13864,14821,-13864,13864,13872,-14822,14822,14821,-13873,14822,13872,-15032,13872,13878,-15033,15031,13872,-15033,15031,14838,\r\n-14823,15032,13878,-15034,13880,15033,-13879,15031,15032,-14839,15032,15033,-14848,13880,15034,-15034,15032,14847,-14839,13884,15034,-13881,15035,14847,-15034,15035,15033,-15035,15034,13884,-15037,14847,15035,-14849,15034,15036,-15036,13884,13889,-15037,15035,15037,-14849,15036,15037,-15036,13889,15038,-15037,15037,15039,-14849,15038,15037,-15037,13894,15040,-13890,15038,13889,-15041,15037,15041,-15040,15039,15042,-14849,14849,14848,-15043,15038,15041,-15038,13894,15043,-15041,15038,15040,-15045,15041,15045,-15040,15046,15042,-15040,15042,14850,-14850,15038,15047,-15042,15043,13894,-13902,15048,15040,-15044,15044,15040,-15050,15038,15044,-15048,15045,15041,-15048,15039,15045,-15047,15046,15050,-15043,15051,14850,-15043,15052,15043,-13902,15040,15048,-15050,15048,15043,-15053,15053,15044,-15050,15044,15054,-15048,15045,15047,-15056,15045,15055,-15047,15046,15055,-15051,15056,15042,-15051,15051,15042,-15057,15057,15052,-13902,15048,15058,-15050,15052,15059,-15049,15053,15054,-15045,15053,15049,-15059,15054,15060,-15048,15055,15047,-15061,15057,15061,-15053,15057,13901,-13908,15048,15062,-15059,15059,15052,-15062,15059,15062,-15049,15053,15063,-15055,15053,15058,-15065,15060,15054,-15064,15055,15060,-15066,15066,15061,-15058,13907,15066,-15058,15067,15058,-15063,15059,15061,-15069,15062,15059,-15068,15064,15063,-15054,15067,15064,-15059,15060,15063,-15070,15069,15065,-15061,15066,15068,-15062,15068,15070,-15060,15071,15067,-15060,15069,15063,-15065,15067,15072,-15065,15069,15073,-15066,15066,15074,-15069,15075,15070,-15069,15071,15059,-15071,15071,15072,-15068,15072,15069,-15065,15076,15073,-15070,15065,15073,-15078,15078,15074,-15067,15075,15068,-15075,15075,15079,-15071,15071,15070,-15081,15071,15081,-15073,15072,15076,-15070,15076,15082,-15074,15077,15073,-15083,15083,15074,-15079,15083,15075,-15075,15084,15079,-15076,15070,15079,-15081,15080,15081,-15072,15072,15081,-15077,15082,15076,-15086,15086,15077,-15083,15078,15087,-15084,15083,15084,-15076,15084,15088,-15080,15080,15079,-15089,15080,15085,-15082,15085,15076,\r\n-15082,15082,15085,-15090,15086,15082,-15091,15091,15087,-15079,15092,15083,-15088,15084,15083,-15093,15093,15088,-15085,15088,15085,-15081,15094,15089,-15086,15082,15089,-15091,15086,15090,-15096,15096,15087,-15092,15078,15097,-15092,15092,15087,-15097,15084,15092,-15094,15093,15098,-15089,15088,15099,-15086,15094,15100,-15090,15099,15094,-15086,15090,15089,-15102,15095,15090,-15103,15096,15091,-15104,15104,15091,-15098,15092,15096,-15106,15092,15106,-15094,15093,15107,-15099,15098,15108,-15089,15099,15088,-15109,15100,15094,-15110,15110,15089,-15101,15099,15109,-15095,15110,15101,-15090,13642,15090,-15102,13641,15102,-15091,15104,15103,-15092,15105,15096,-15104,15111,15104,-15098,15092,15105,-15107,15107,15093,-15107,15107,15112,-15099,15098,15113,-15109,15099,15108,-15115,15100,15109,-15116,15110,15100,-15116,15109,15099,-15117,15110,15117,-15102,13641,15090,-13643,13645,13642,-15102,15118,15103,-15105,15105,15103,-15120,15120,15104,-15112,15121,15106,-15106,15106,15122,-15108,15107,15123,-15113,15112,15113,-15099,15113,15114,-15109,15099,15114,-15117,15115,15109,-15125,15125,15110,-15116,15109,15116,-15127,15117,15110,-15126,13645,15101,-15118,15103,15118,-15128,15120,15118,-15105,15119,15103,-15128,15105,15119,-15129,15121,15129,-15107,15121,15105,-15131,15106,15129,-15123,15122,15131,-15108,15123,15107,-15132,15113,15112,-15124,15113,15132,-15115,15116,15114,-15134,15124,15109,-15127,15115,15124,-15135,15125,15115,-15136,15126,15116,-15134,15117,15125,-15137,13645,15117,-13657,15118,9946,-15128,15120,15137,-15119,15138,15119,-15128,15128,15119,-15140,15105,15128,-15141,15130,15129,-15122,15105,15140,-15131,15122,15129,-15142,15122,15142,-15132,15123,15131,-15144,15113,15123,-15133,15132,15133,-15115,15134,15124,-15127,15135,15115,-15135,15136,15125,-15136,15136,13656,-15118,15137,9946,-15119,15127,9946,-9904,15120,15144,-15138,15139,15119,-15139,15127,9868,-15139,15128,15139,-15146,15140,15128,-15147,15129,15130,-15148,15148,15130,-15141,15129,15149,-15142,15141,15142,-15123,15143,15131,-15143,15132,15123,-15144,\r\n15133,15132,-15144,15136,13672,-13657,9946,15137,-9996,15127,9903,-9869,15150,15137,-15145,15139,15138,-9838,9868,9837,-15139,15145,15139,-9811,15146,15128,-15146,15146,15151,-15141,15147,15130,-15149,15149,15129,-15148,15148,15140,-15152,15141,15149,-15153,15153,15142,-15142,10065,9995,-15138,15150,15154,-15138,15139,9837,-9811,9810,9788,-15146,15146,15145,-15156,15146,15156,-15152,15148,15157,-15148,15149,15147,-15159,15148,15151,-15160,15149,15160,-15153,15153,15141,-15153,10065,15137,-15155,15161,15154,-15151,15145,9788,-9770,15145,9769,-15156,15156,15146,-15156,15162,15151,-15157,15157,15148,-15160,15147,15157,-15159,15149,15158,-15164,15162,15159,-15152,15149,15163,-15161,15160,15164,-15153,15153,15152,-15165,14615,10065,-15155,15165,15154,-15162,9769,9759,-15156,15156,15155,-9760,15162,15156,-9764,15157,15159,-15167,15158,15157,-15168,15168,15163,-15159,15162,15169,-15160,15170,15160,-15164,15164,15160,-15172,9763,15156,-9760,9763,9754,-15163,15169,15166,-15160,15172,15157,-15167,15173,15167,-15158,15168,15158,-15168,15163,15168,-15175,15162,9754,-15170,15170,15175,-15161,15170,15163,-15175,15171,15160,-15176,15166,15169,-15177,15173,15157,-15173,15166,15176,-15173,15173,15168,-15168,15174,15168,-15174,9754,9746,-15170,15175,15170,-15178,15178,15170,-15175,15169,9745,-15177,15173,15172,-15180,15180,15172,-15177,15174,15173,-15182,15169,9746,-9746,15177,15170,-15183,15178,15183,-15171,15174,15184,-15179,9745,15185,-15177,15180,15179,-15173,15173,15179,-15187,15176,15185,-15181,15173,15186,-15182,15181,15184,-15175,15182,15170,-15184,15183,15178,-15188,15178,15184,-15189,9745,9722,-15186,15180,15189,-15180,15190,15186,-15180,15185,15189,-15181,15191,15181,-15187,15192,15184,-15182,15178,15188,-15188,15192,15188,-15185,9722,9712,-15186,15179,15189,-15191,15193,15186,-15191,15185,9712,-15190,15181,15191,-15195,15193,15191,-15187,15195,15192,-15182,15187,15188,-15197,15188,15192,-15198,15198,15190,-15190,15193,15190,-15200,9712,9698,-15190,15200,15194,-15192,15181,15194,-15196,15191,15193,-15202,15195,15202,-15193,\r\n15196,15188,-15204,15192,15202,-15198,15188,15197,-15204,15199,15190,-15199,15198,15189,-9699,15193,15199,-15202,15194,15200,-15205,15200,15191,-15202,15205,15195,-15195,15206,15202,-15196,15197,15202,-15208,15203,15197,-15209,15209,13761,-13770,13769,13762,-15210,13761,15206,-13771,15210,13772,-13764,13763,13770,-15211,15198,9696,-15200,9698,9696,-15199,15211,15201,-15200,15212,15204,-15201,15194,15204,-15214,15201,15212,-15201,15210,15195,-15206,15194,15213,-15206,15206,15214,-15203,15195,13770,-15207,15207,15202,-15216,15208,15197,-15208,15209,15206,-13762,15216,15209,-13763,13772,15210,-15218,15195,15210,-13771,9696,9686,-15200,15212,15201,-15212,15211,15199,-9687,15218,15204,-15213,15219,15213,-15205,15210,15205,-15221,15205,15213,-15222,15206,15209,-15215,15214,15215,-15203,15207,15215,-15223,15215,15209,-15217,15210,15220,-15218,13772,15217,-13782,15211,15223,-15213,15211,9686,-9676,15218,15219,-15205,15218,15212,-15224,15221,15213,-15220,15220,15205,-15222,15215,15214,-15210,15222,15215,-15217,15217,15220,-1672,13781,15217,-1672,15211,15224,-15224,9675,9665,-15212,15225,15219,-15219,15226,15218,-15224,15227,15221,-15220,15220,15221,-15229,1671,15220,-15230,1690,13781,-1672,15211,9665,-15225,15223,15224,-15231,15227,15219,-15226,15225,15218,-15227,15231,15226,-15224,15228,15221,-15228,15232,15220,-15229,15232,15229,-15221,1671,15229,-1659,9655,15224,-9666,9655,15230,-15225,15231,15223,-15231,15227,15225,-15234,15233,15225,-15227,15231,15234,-15227,15228,15227,-15236,15232,15228,-15237,15229,15232,-1671,1658,15229,-1671,9655,15237,-15231,15238,15231,-15231,15233,15235,-15228,15233,15226,-15240,15231,15240,-15235,15226,15234,-15242,15228,15235,-15243,15242,15236,-15229,15232,15236,-15244,15232,15243,-1671,9655,9638,-15238,15238,15230,-15238,15238,15244,-15232,15245,15235,-15234,15226,15241,-15240,15233,15239,-15247,15240,15231,-15245,15240,15247,-15235,15247,15241,-15235,15248,15242,-15236,15242,1683,-15237,15243,15236,-1684,1670,15243,-1683,9629,15237,-9639,15238,15237,-9630,15238,15249,-15245,15245,15248,-15236,\r\n15245,15233,-15247,15239,15241,-15251,15246,15239,-15251,15240,15244,-15250,15240,15251,-15248,15247,15252,-15242,15248,15253,-15243,1683,15242,-15254,1682,15243,-1684,9629,15249,-15239,15245,15254,-15249,15245,15246,-15256,15250,15241,-15253,15246,15250,-15257,15249,15257,-15241,15240,15257,-15252,15247,15251,-15253,1673,15253,-15249,1683,15253,-1674,9629,1693,-15250,15254,15245,-15256,15254,1673,-15249,15255,15246,-15257,15252,15256,-15251,15249,1694,-15258,1676,15251,-15258,15251,1684,-15253,1693,9629,-1696,1694,15249,-1694,15254,15255,-15257,1660,1673,-15255,15256,15252,-1685,1694,1676,-15258,15251,1676,-1685,15254,15256,-1675,1674,1660,-15255,15256,1684,-1675\r\n\t\t} \r\n\t\tEdges: *45598 {\r\n\t\t\ta: 0,1,2,3,5,7,8,9,11,13,14,16,17,18,19,23,25,26,28,29,32,33,35,37,38,39,40,42,44,45,47,50,51,52,54,56,58,61,62,64,68,70,71,72,74,76,77,78,80,81,83,84,85,87,89,90,95,96,98,100,101,103,106,107,110,111,115,118,119,120,121,124,125,127,131,133,134,135,136,139,140,142,144,145,147,149,150,153,155,157,159,160,162,164,165,166,168,169,173,175,176,177,181,182,183,184,186,187,189,190,192,194,195,196,199,202,203,205,206,207,209,210,211,214,217,218,220,223,227,228,230,232,233,234,235,237,240,244,246,247,251,252,254,255,258,260,262,263,264,265,267,272,274,275,278,280,281,282,284,287,289,290,292,293,294,295,298,299,300,301,305,308,309,311,312,314,315,316,318,321,323,324,325,328,330,331,334,335,338,341,342,344,346,347,350,352,353,354,356,357,360,364,366,370,371,373,374,375,376,378,380,381,383,384,386,388,389,392,394,397,398,400,403,406,407,409,411,412,416,417,419,422,423,425,426,427,429,430,434,437,438,442,443,444,445,447,450,451,454,455,456,460,461,462,463,465,468,470,473,474,476,477,481,484,485,487,488,489,493,494,496,499,502,505,506,507,509,510,511,513,515,516,517,519,522,523,525,530,532,533,535,536,537,538,541,545,547,548,549,553,556,557,558,560,562,563,565,566,568,569,571,573,575,576,578,580,583,585,587,588,593,594,596,597,598,602,603,604,607,610,611,613,615,616,619,620,621,624,625,627,630,632,633,635,636,638,639,641,643,645,649,650,652,656,658,659,662,663,665,666,668,669,673,675,676,678,679,683,685,686,687,689,691,692,693,696,698,700,701,702,706,707,709,712,713,715,719,720,722,725,727,730,731,733,734,736,737,738,739,741,743,744,746,748,749,751,754,755,758,759,760,763,764,767,768,772,774,776,778,779,782,785,788,790,792,797,798,799,801,802,804,807,809,812,813,816,817,820,821,823,824,826,827,829,830,832,835,837,841,842,843,847,848,850,851,853,856,858,859,861,863,864,865,869,870,874,876,878,879,881,884,886,887,888,889,893,894,896,898,899,900,903,906,908,910,911,912,914,916,919,923,925,928,931,932,935,936,938,939,941,943,944,945,946,950,952,955,956,958,959,961,965,967,968,969,971,974,976,977,978,979,983,984,986,\r\n988,991,992,995,997,998,1000,1002,1004,1005,1008,1010,1011,1014,1017,1018,1021,1022,1023,1025,1027,1028,1029,1031,1032,1034,1036,1038,1041,1044,1046,1048,1049,1050,1055,1057,1058,1059,1061,1062,1063,1066,1067,1070,1073,1075,1076,1077,1078,1080,1082,1083,1085,1086,1089,1090,1092,1094,1097,1099,1100,1101,1104,1106,1108,1111,1112,1114,1115,1116,1121,1122,1127,1128,1129,1131,1132,1135,1137,1138,1140,1142,1143,1145,1146,1148,1150,1151,1152,1156,1157,1160,1161,1162,1164,1165,1167,1168,1172,1173,1174,1177,1179,1181,1182,1183,1186,1188,1192,1193,1194,1196,1199,1201,1203,1208,1209,1210,1214,1215,1218,1219,1221,1222,1225,1227,1228,1232,1234,1235,1236,1239,1241,1242,1245,1246,1249,1250,1252,1254,1259,1261,1263,1266,1269,1270,1273,1274,1277,1279,1283,1284,1285,1287,1289,1290,1292,1293,1297,1298,1300,1304,1306,1308,1311,1312,1315,1316,1317,1318,1321,1322,1323,1326,1328,1330,1332,1333,1336,1337,1339,1340,1343,1344,1347,1350,1351,1353,1357,1358,1360,1362,1363,1365,1367,1368,1370,1371,1374,1376,1378,1379,1381,1382,1385,1387,1388,1390,1391,1392,1393,1396,1398,1400,1402,1403,1405,1407,1410,1411,1413,1414,1417,1418,1419,1420,1423,1425,1427,1430,1432,1433,1434,1435,1437,1441,1444,1447,1448,1450,1451,1452,1454,1457,1459,1461,1463,1464,1465,1467,1469,1470,1473,1475,1479,1480,1482,1484,1486,1488,1491,1493,1494,1495,1499,1502,1503,1504,1507,1510,1513,1517,1518,1520,1521,1522,1524,1527,1529,1531,1532,1533,1536,1539,1541,1542,1544,1546,1547,1548,1549,1551,1555,1557,1559,1560,1561,1564,1565,1567,1569,1571,1572,1574,1575,1579,1580,1582,1585,1589,1590,1592,1595,1598,1599,1602,1605,1606,1608,1610,1611,1613,1616,1617,1619,1620,1622,1623,1624,1626,1628,1629,1633,1634,1635,1636,1640,1642,1644,1645,1647,1650,1654,1655,1658,1660,1661,1662,1665,1666,1668,1673,1674,1675,1677,1679,1680,1682,1684,1685,1687,1688,1691,1693,1696,1697,1700,1703,1705,1706,1707,1708,1711,1715,1716,1718,1719,1721,1722,1723,1727,1728,1730,1731,1733,1734,1737,1741,1742,1744,1745,1747,1748,1750,1751,1754,1756,1758,1759,1761,1763,1766,1768,1769,1770,1771,1775,1777,1778,1781,1782,\r\n1783,1787,1789,1792,1793,1794,1796,1797,1798,1800,1802,1805,1806,1809,1812,1816,1818,1820,1822,1823,1824,1826,1828,1829,1830,1831,1833,1835,1837,1838,1840,1841,1842,1845,1848,1852,1853,1855,1857,1859,1860,1862,1863,1864,1866,1869,1871,1873,1874,1875,1876,1880,1881,1883,1885,1887,1888,1890,1893,1894,1897,1900,1903,1905,1909,1910,1911,1913,1914,1915,1917,1920,1921,1924,1925,1926,1929,1933,1935,1938,1940,1942,1945,1946,1947,1948,1951,1952,1953,1954,1957,1958,1959,1960,1964,1966,1967,1970,1971,1972,1974,1978,1982,1983,1987,1988,1991,1992,1993,1995,1996,1998,2000,2001,2004,2005,2007,2011,2014,2015,2016,2017,2019,2022,2024,2025,2028,2030,2032,2034,2039,2041,2042,2043,2044,2046,2048,2049,2052,2053,2055,2059,2061,2064,2065,2067,2069,2070,2071,2074,2075,2077,2078,2081,2082,2083,2085,2086,2089,2090,2093,2094,2095,2097,2099,2102,2103,2104,2108,2111,2114,2116,2119,2121,2122,2125,2126,2128,2132,2133,2135,2138,2140,2141,2142,2143,2145,2149,2150,2153,2154,2158,2159,2160,2163,2165,2167,2168,2169,2174,2175,2177,2178,2180,2181,2182,2186,2189,2190,2191,2194,2195,2196,2199,2203,2204,2205,2206,2208,2210,2211,2213,2217,2222,2223,2228,2230,2231,2233,2236,2237,2238,2240,2242,2244,2245,2247,2249,2250,2255,2256,2257,2260,2262,2263,2266,2268,2271,2274,2276,2277,2281,2282,2284,2285,2286,2291,2292,2293,2296,2297,2298,2299,2302,2303,2304,2307,2308,2311,2314,2317,2318,2320,2321,2323,2324,2325,2326,2328,2329,2332,2335,2337,2338,2341,2342,2343,2344,2346,2351,2352,2354,2355,2356,2360,2361,2363,2364,2366,2369,2370,2371,2373,2376,2377,2380,2383,2384,2385,2389,2391,2392,2394,2395,2398,2400,2403,2405,2407,2408,2410,2411,2412,2415,2418,2419,2421,2422,2426,2427,2428,2430,2431,2434,2435,2436,2438,2439,2444,2445,2446,2449,2450,2451,2456,2458,2462,2465,2466,2467,2469,2470,2473,2475,2476,2478,2480,2482,2485,2488,2489,2491,2492,2495,2498,2501,2502,2504,2505,2508,2512,2513,2515,2517,2519,2520,2521,2524,2525,2528,2529,2531,2535,2536,2540,2541,2543,2544,2546,2549,2551,2552,2553,2555,2556,2557,2560,2562,2563,2565,2566,2568,2570,2573,2574,2576,2578,2581,2582,2585,\r\n2586,2587,2589,2593,2594,2597,2598,2599,2601,2602,2605,2607,2608,2612,2615,2616,2618,2619,2620,2624,2625,2628,2630,2631,2634,2635,2639,2640,2641,2643,2645,2646,2647,2650,2651,2653,2654,2656,2658,2660,2661,2664,2666,2668,2669,2671,2672,2674,2678,2680,2682,2684,2685,2689,2690,2692,2693,2694,2695,2697,2698,2702,2704,2705,2707,2708,2709,2710,2713,2714,2715,2718,2722,2723,2725,2727,2728,2730,2733,2734,2737,2740,2742,2744,2745,2750,2752,2753,2755,2757,2759,2760,2765,2766,2768,2770,2771,2773,2776,2778,2779,2782,2785,2786,2788,2791,2795,2796,2797,2800,2801,2803,2804,2805,2806,2811,2812,2814,2816,2817,2818,2822,2824,2827,2830,2832,2835,2838,2839,2841,2843,2845,2848,2851,2852,2854,2857,2858,2860,2861,2863,2865,2867,2870,2873,2874,2878,2881,2884,2885,2886,2888,2889,2892,2895,2896,2898,2901,2903,2906,2907,2909,2910,2911,2914,2916,2920,2921,2923,2925,2926,2928,2930,2932,2933,2935,2937,2939,2940,2942,2944,2945,2948,2949,2953,2954,2957,2959,2961,2962,2966,2967,2969,2970,2972,2975,2978,2979,2980,2984,2985,2990,2993,2994,2996,2997,3002,3003,3005,3007,3008,3010,3011,3012,3013,3016,3017,3018,3019,3021,3022,3024,3025,3028,3031,3032,3033,3034,3036,3038,3039,3041,3043,3044,3047,3049,3050,3051,3055,3057,3059,3061,3064,3065,3066,3068,3069,3070,3072,3077,3078,3079,3081,3082,3084,3085,3087,3089,3092,3093,3095,3097,3098,3101,3102,3103,3105,3106,3109,3111,3113,3114,3117,3119,3120,3125,3127,3128,3131,3132,3133,3135,3138,3140,3142,3143,3146,3148,3149,3151,3152,3153,3156,3157,3160,3162,3165,3166,3168,3170,3171,3172,3174,3176,3178,3179,3181,3184,3185,3187,3188,3190,3191,3194,3195,3196,3199,3203,3205,3206,3208,3210,3215,3216,3218,3221,3223,3225,3227,3230,3231,3235,3236,3238,3241,3242,3243,3246,3248,3249,3254,3255,3257,3258,3261,3263,3266,3267,3272,3275,3276,3277,3279,3282,3284,3286,3287,3288,3292,3296,3298,3299,3302,3303,3304,3306,3308,3309,3311,3312,3313,3316,3318,3323,3325,3327,3329,3330,3332,3335,3338,3340,3341,3342,3344,3345,3347,3350,3351,3353,3354,3355,3357,3358,3360,3363,3368,3370,3371,3373,3374,3377,3379,3380,3383,3385,3387,3392,3395,3397,\r\n3398,3401,3402,3403,3405,3406,3408,3411,3412,3415,3416,3417,3418,3420,3423,3426,3429,3430,3434,3435,3436,3438,3440,3441,3442,3444,3445,3447,3449,3450,3452,3454,3455,3456,3458,3460,3463,3464,3466,3468,3469,3473,3475,3476,3477,3478,3480,3482,3483,3485,3488,3489,3490,3492,3495,3500,3502,3505,3506,3509,3511,3512,3514,3515,3516,3520,3522,3524,3525,3527,3528,3530,3532,3536,3537,3540,3543,3547,3550,3551,3552,3556,3557,3559,3560,3562,3563,3564,3566,3567,3569,3570,3572,3573,3574,3577,3581,3582,3583,3585,3589,3591,3594,3595,3598,3599,3600,3601,3604,3605,3608,3610,3611,3612,3613,3616,3617,3619,3623,3624,3625,3627,3630,3631,3634,3636,3637,3641,3644,3646,3647,3648,3650,3651,3655,3659,3661,3662,3665,3666,3670,3673,3674,3676,3679,3680,3682,3683,3684,3686,3687,3688,3690,3692,3694,3695,3698,3700,3701,3702,3703,3706,3710,3711,3715,3716,3717,3718,3720,3724,3725,3726,3727,3730,3731,3733,3735,3736,3739,3740,3741,3744,3747,3749,3751,3752,3754,3756,3757,3761,3762,3765,3766,3768,3770,3772,3775,3776,3777,3778,3780,3783,3784,3787,3789,3791,3792,3795,3796,3799,3802,3803,3804,3807,3811,3814,3815,3817,3820,3821,3823,3826,3827,3829,3831,3832,3834,3838,3839,3840,3842,3843,3845,3846,3847,3851,3852,3854,3855,3859,3860,3863,3865,3866,3867,3869,3870,3872,3873,3876,3878,3880,3882,3886,3889,3892,3893,3895,3896,3900,3903,3905,3908,3909,3912,3915,3916,3918,3922,3923,3926,3927,3930,3934,3935,3936,3938,3940,3941,3942,3945,3946,3948,3953,3954,3955,3959,3960,3963,3965,3966,3968,3971,3972,3974,3977,3979,3981,3983,3984,3988,3989,3993,3995,3996,3997,4001,4002,4003,4005,4007,4009,4010,4012,4015,4016,4018,4020,4022,4024,4025,4027,4030,4031,4034,4035,4036,4039,4041,4046,4047,4049,4051,4053,4055,4056,4059,4060,4063,4065,4069,4070,4073,4074,4075,4077,4080,4083,4084,4086,4088,4089,4090,4092,4093,4096,4099,4101,4102,4106,4109,4111,4112,4115,4117,4120,4121,4124,4125,4126,4128,4129,4132,4133,4135,4138,4139,4140,4143,4145,4147,4148,4150,4152,4154,4155,4159,4162,4167,4169,4170,4173,4175,4176,4179,4181,4182,4184,4186,4189,4190,4193,4196,4197,4199,4201,4202,4205,4206,4207,\r\n4209,4212,4213,4216,4218,4219,4222,4223,4224,4225,4227,4231,4232,4233,4234,4238,4240,4241,4243,4245,4247,4249,4250,4251,4255,4256,4257,4258,4260,4261,4263,4266,4268,4270,4272,4273,4276,4277,4278,4279,4281,4282,4284,4287,4289,4291,4292,4293,4297,4299,4301,4302,4304,4307,4308,4309,4311,4312,4314,4318,4319,4320,4325,4326,4327,4330,4332,4335,4337,4340,4341,4342,4345,4347,4348,4350,4351,4353,4355,4357,4360,4361,4364,4365,4367,4368,4370,4371,4373,4374,4375,4378,4382,4385,4386,4388,4389,4390,4393,4397,4399,4401,4404,4408,4409,4410,4412,4415,4417,4420,4421,4424,4425,4427,4428,4429,4432,4433,4435,4437,4439,4441,4444,4448,4450,4452,4454,4456,4457,4458,4460,4463,4464,4466,4469,4471,4473,4475,4476,4479,4483,4484,4486,4487,4490,4493,4494,4497,4499,4502,4503,4504,4507,4508,4509,4511,4512,4513,4515,4516,4518,4521,4523,4524,4529,4531,4532,4533,4536,4539,4541,4543,4547,4548,4553,4555,4556,4558,4559,4560,4561,4563,4565,4566,4568,4571,4572,4573,4575,4577,4580,4581,4582,4585,4586,4588,4591,4592,4594,4596,4598,4601,4603,4605,4607,4610,4611,4612,4615,4616,4619,4620,4624,4625,4626,4628,4629,4631,4632,4634,4635,4639,4641,4642,4644,4647,4649,4651,4652,4655,4657,4658,4660,4662,4666,4669,4672,4673,4675,4676,4677,4679,4680,4682,4685,4688,4689,4690,4692,4695,4698,4701,4703,4704,4705,4708,4712,4714,4716,4718,4719,4721,4722,4724,4725,4726,4728,4729,4732,4735,4738,4739,4740,4745,4746,4750,4751,4752,4754,4757,4762,4763,4764,4767,4769,4771,4772,4774,4776,4778,4780,4781,4782,4784,4786,4789,4790,4791,4795,4796,4797,4798,4801,4803,4806,4807,4811,4812,4813,4815,4816,4820,4821,4822,4824,4828,4829,4830,4833,4837,4840,4842,4844,4845,4848,4851,4853,4855,4858,4862,4864,4865,4866,4868,4869,4871,4872,4874,4875,4877,4878,4881,4882,4885,4890,4892,4894,4898,4900,4901,4902,4905,4907,4909,4910,4912,4913,4914,4918,4920,4922,4924,4926,4928,4930,4932,4934,4935,4937,4938,4941,4943,4944,4948,4949,4951,4953,4954,4957,4958,4959,4960,4962,4963,4967,4969,4971,4973,4975,4977,4978,4980,4985,4987,4988,4991,4993,4994,4997,4998,4999,5001,5004,5005,5007,5009,5011,5014,5016,5018,\r\n5019,5022,5026,5027,5030,5032,5036,5039,5040,5042,5045,5047,5048,5051,5054,5055,5056,5058,5060,5061,5063,5064,5065,5068,5069,5072,5074,5075,5076,5078,5079,5080,5082,5085,5087,5088,5090,5091,5095,5097,5098,5100,5103,5105,5106,5111,5113,5114,5115,5119,5121,5122,5125,5128,5130,5131,5133,5134,5136,5139,5143,5146,5147,5148,5149,5151,5154,5156,5158,5159,5162,5164,5165,5168,5169,5171,5172,5173,5176,5178,5180,5181,5185,5187,5189,5191,5192,5193,5195,5196,5198,5200,5201,5202,5203,5206,5207,5209,5213,5215,5218,5220,5222,5225,5226,5227,5231,5232,5233,5235,5236,5238,5240,5242,5243,5245,5249,5252,5253,5254,5256,5257,5259,5260,5262,5263,5265,5266,5269,5270,5273,5275,5276,5277,5278,5280,5283,5284,5286,5287,5289,5291,5294,5296,5300,5301,5302,5305,5306,5307,5309,5311,5313,5314,5316,5317,5321,5322,5325,5327,5329,5330,5332,5334,5336,5338,5339,5340,5345,5347,5350,5352,5354,5355,5358,5363,5366,5369,5370,5372,5373,5377,5378,5379,5382,5383,5386,5387,5389,5390,5391,5396,5399,5401,5405,5406,5410,5411,5413,5414,5416,5418,5419,5422,5425,5428,5429,5431,5433,5437,5440,5441,5442,5443,5445,5448,5452,5453,5455,5457,5461,5462,5463,5464,5466,5467,5470,5472,5476,5478,5483,5484,5485,5488,5489,5490,5491,5495,5498,5499,5503,5504,5505,5510,5511,5513,5514,5517,5519,5520,5521,5523,5527,5528,5530,5531,5532,5534,5535,5539,5540,5543,5545,5547,5549,5552,5553,5555,5557,5558,5559,5561,5562,5563,5566,5567,5569,5572,5575,5576,5578,5579,5582,5583,5584,5586,5587,5589,5592,5593,5595,5597,5598,5599,5601,5604,5605,5607,5608,5610,5612,5613,5615,5616,5617,5619,5623,5624,5626,5629,5632,5633,5634,5637,5638,5640,5644,5645,5647,5649,5651,5653,5656,5657,5658,5661,5662,5664,5667,5669,5671,5673,5675,5677,5678,5679,5682,5687,5690,5692,5693,5696,5697,5698,5701,5704,5705,5706,5708,5712,5716,5718,5720,5721,5724,5729,5732,5733,5734,5737,5740,5741,5742,5747,5748,5752,5754,5756,5759,5760,5761,5763,5764,5766,5767,5770,5772,5773,5776,5777,5779,5780,5781,5782,5785,5786,5787,5790,5792,5793,5795,5797,5799,5800,5802,5803,5805,5809,5812,5816,5820,5821,5824,5825,5826,5827,5831,5834,5836,5837,\r\n5839,5840,5841,5842,5844,5845,5847,5848,5850,5851,5854,5855,5857,5859,5863,5864,5865,5867,5868,5869,5872,5873,5875,5876,5877,5878,5882,5884,5885,5887,5890,5891,5893,5894,5895,5899,5900,5902,5905,5907,5910,5912,5914,5915,5916,5917,5920,5922,5927,5929,5932,5934,5939,5940,5943,5944,5947,5951,5954,5955,5956,5959,5962,5963,5965,5966,5971,5972,5974,5975,5976,5981,5982,5983,5986,5990,5992,5994,5996,5997,6001,6004,6005,6006,6009,6011,6012,6014,6015,6017,6018,6021,6026,6027,6030,6032,6034,6036,6037,6040,6041,6043,6045,6046,6048,6050,6052,6054,6058,6060,6064,6066,6067,6069,6071,6073,6075,6076,6079,6080,6081,6082,6084,6085,6089,6091,6092,6093,6095,6096,6099,6103,6105,6109,6110,6111,6113,6114,6116,6117,6119,6120,6121,6123,6124,6127,6128,6131,6133,6134,6135,6136,6138,6140,6141,6144,6145,6148,6150,6151,6155,6156,6158,6159,6160,6162,6163,6166,6169,6170,6174,6177,6178,6180,6184,6186,6188,6189,6191,6193,6194,6195,6196,6198,6200,6201,6202,6205,6206,6209,6211,6212,6215,6218,6220,6222,6226,6228,6229,6232,6233,6234,6235,6237,6242,6244,6248,6251,6254,6255,6258,6262,6264,6265,6267,6268,6272,6274,6277,6279,6281,6282,6284,6285,6287,6288,6290,6291,6295,6299,6301,6302,6303,6304,6306,6309,6310,6313,6314,6315,6318,6322,6325,6327,6330,6332,6334,6336,6340,6341,6343,6344,6345,6348,6350,6351,6352,6356,6359,6362,6365,6366,6367,6369,6372,6374,6375,6376,6379,6381,6382,6385,6387,6388,6390,6391,6393,6395,6398,6400,6402,6405,6407,6410,6412,6413,6415,6417,6418,6420,6422,6423,6424,6426,6428,6429,6433,6435,6436,6438,6440,6441,6443,6444,6447,6448,6451,6452,6453,6454,6457,6461,6462,6466,6469,6470,6472,6475,6476,6478,6479,6480,6481,6484,6487,6488,6489,6491,6492,6496,6497,6499,6501,6503,6505,6507,6508,6510,6511,6513,6514,6516,6517,6519,6521,6522,6523,6525,6529,6530,6533,6534,6535,6537,6540,6543,6545,6547,6549,6550,6552,6554,6556,6559,6560,6562,6563,6564,6565,6568,6570,6571,6575,6576,6579,6582,6583,6585,6586,6590,6592,6594,6595,6597,6598,6600,6604,6607,6611,6612,6616,6617,6620,6621,6624,6625,6627,6628,6631,6632,6634,6637,6640,6642,6644,6646,6648,6649,6652,6657,\r\n6659,6660,6661,6663,6665,6666,6667,6670,6672,6673,6676,6678,6679,6681,6683,6684,6685,6687,6690,6692,6693,6696,6697,6702,6703,6705,6709,6712,6713,6714,6716,6717,6719,6720,6721,6724,6726,6729,6733,6734,6736,6738,6739,6742,6744,6748,6749,6750,6752,6755,6756,6757,6759,6762,6763,6765,6766,6770,6772,6775,6776,6778,6780,6781,6784,6786,6788,6790,6791,6792,6795,6798,6800,6802,6803,6805,6809,6810,6811,6813,6817,6819,6820,6822,6823,6826,6828,6829,6831,6834,6836,6838,6842,6844,6847,6848,6850,6851,6852,6853,6855,6857,6859,6862,6865,6866,6867,6869,6870,6872,6875,6876,6877,6879,6883,6884,6885,6886,6888,6890,6893,6896,6899,6900,6904,6906,6907,6911,6914,6916,6918,6920,6921,6923,6925,6926,6929,6931,6934,6935,6936,6939,6941,6942,6945,6947,6949,6950,6951,6955,6958,6959,6960,6961,6964,6967,6969,6971,6973,6975,6977,6978,6983,6984,6986,6987,6988,6990,6991,6995,6998,7000,7001,7004,7006,7010,7012,7013,7015,7016,7019,7020,7022,7025,7026,7027,7029,7030,7033,7034,7036,7037,7039,7041,7045,7046,7047,7048,7051,7053,7054,7056,7059,7060,7063,7064,7067,7068,7069,7072,7075,7077,7082,7083,7085,7086,7089,7093,7094,7096,7097,7098,7100,7102,7105,7107,7109,7110,7113,7114,7116,7117,7119,7120,7123,7124,7127,7128,7131,7133,7134,7136,7139,7141,7142,7144,7145,7146,7148,7149,7153,7154,7156,7157,7159,7160,7161,7164,7168,7170,7173,7176,7178,7179,7180,7184,7185,7186,7188,7190,7191,7196,7198,7199,7201,7202,7203,7206,7207,7209,7213,7214,7216,7217,7219,7220,7223,7225,7227,7231,7232,7233,7235,7237,7241,7243,7244,7245,7248,7250,7252,7253,7254,7258,7259,7261,7262,7265,7266,7267,7269,7272,7276,7277,7279,7280,7281,7283,7286,7288,7289,7291,7292,7295,7298,7300,7302,7303,7305,7309,7312,7313,7316,7317,7318,7320,7322,7323,7325,7327,7330,7331,7332,7334,7335,7339,7342,7343,7346,7347,7348,7350,7353,7358,7360,7363,7364,7365,7366,7369,7372,7375,7376,7378,7379,7380,7381,7383,7384,7387,7388,7389,7391,7393,7394,7395,7398,7403,7406,7408,7412,7413,7414,7416,7418,7419,7420,7422,7425,7427,7428,7429,7433,7434,7437,7439,7442,7444,7446,7449,7451,7453,7454,7455,7458,7459,7462,7464,7465,7467,\r\n7468,7470,7472,7473,7474,7476,7478,7479,7481,7483,7484,7485,7487,7488,7491,7495,7496,7499,7500,7503,7506,7507,7509,7512,7514,7516,7518,7519,7521,7524,7526,7528,7529,7530,7533,7535,7538,7540,7541,7542,7544,7546,7549,7550,7552,7553,7556,7557,7558,7562,7563,7566,7571,7572,7573,7577,7578,7579,7581,7582,7584,7586,7588,7590,7594,7595,7596,7597,7599,7601,7602,7605,7606,7609,7610,7611,7613,7614,7615,7618,7619,7620,7622,7625,7626,7627,7630,7631,7632,7634,7636,7639,7641,7645,7646,7649,7650,7653,7657,7658,7659,7663,7664,7667,7669,7672,7674,7675,7678,7681,7682,7683,7685,7688,7690,7691,7692,7696,7697,7700,7702,7704,7705,7708,7710,7714,7717,7718,7720,7721,7724,7725,7726,7730,7731,7733,7734,7737,7738,7740,7741,7743,7745,7747,7748,7749,7751,7753,7754,7757,7758,7759,7763,7764,7767,7770,7772,7773,7775,7776,7778,7781,7782,7785,7787,7789,7793,7795,7796,7797,7799,7801,7803,7806,7808,7811,7812,7817,7819,7820,7823,7824,7825,7827,7829,7831,7833,7834,7837,7838,7839,7840,7842,7847,7849,7852,7853,7854,7857,7860,7862,7863,7864,7866,7868,7869,7872,7873,7875,7879,7880,7881,7882,7884,7885,7889,7891,7895,7898,7901,7903,7904,7907,7908,7909,7913,7915,7916,7917,7921,7922,7923,7925,7926,7927,7930,7934,7935,7936,7938,7940,7941,7943,7944,7945,7947,7948,7950,7955,7956,7958,7961,7962,7966,7967,7969,7970,7971,7972,7975,7977,7979,7980,7981,7983,7987,7989,7992,7994,7996,8000,8002,8003,8004,8008,8009,8011,8013,8016,8018,8020,8022,8023,8025,8027,8028,8032,8034,8036,8037,8040,8043,8045,8047,8049,8050,8052,8053,8055,8056,8058,8060,8063,8064,8067,8069,8072,8073,8078,8079,8082,8085,8087,8088,8089,8091,8093,8095,8096,8097,8098,8100,8103,8104,8106,8108,8109,8111,8112,8115,8120,8123,8125,8126,8127,8129,8130,8131,8133,8135,8136,8137,8141,8143,8144,8145,8148,8149,8153,8154,8156,8157,8160,8162,8164,8165,8166,8169,8170,8174,8175,8176,8179,8181,8182,8184,8187,8189,8190,8192,8193,8194,8196,8200,8201,8204,8205,8206,8209,8210,8213,8214,8219,8222,8224,8225,8227,8228,8229,8232,8235,8236,8238,8239,8241,8244,8245,8247,8249,8250,8253,8255,8256,8259,8264,8265,8269,8272,8273,8274,\r\n8275,8277,8280,8283,8285,8288,8290,8291,8292,8294,8295,8297,8299,8300,8301,8302,8306,8307,8308,8310,8313,8316,8318,8320,8323,8324,8326,8328,8330,8331,8332,8334,8336,8337,8339,8340,8344,8346,8347,8350,8354,8357,8358,8359,8361,8362,8366,8367,8369,8370,8375,8376,8380,8381,8384,8385,8386,8389,8390,8392,8393,8394,8395,8399,8400,8402,8403,8404,8406,8410,8411,8412,8414,8417,8418,8420,8422,8423,8424,8426,8427,8428,8430,8431,8433,8435,8438,8441,8444,8445,8447,8449,8450,8451,8452,8454,8456,8458,8459,8461,8463,8465,8468,8470,8473,8474,8475,8476,8478,8479,8482,8483,8485,8487,8488,8492,8493,8494,8496,8499,8503,8506,8507,8508,8513,8515,8518,8520,8521,8524,8525,8527,8528,8531,8532,8534,8535,8540,8543,8544,8546,8548,8549,8551,8552,8553,8556,8560,8563,8566,8569,8572,8573,8575,8576,8577,8581,8582,8583,8585,8588,8590,8591,8594,8596,8597,8599,8602,8603,8606,8608,8609,8612,8614,8615,8616,8617,8619,8621,8623,8624,8625,8630,8633,8634,8638,8640,8642,8643,8644,8647,8648,8649,8654,8656,8657,8659,8660,8661,8665,8666,8668,8672,8673,8675,8676,8677,8680,8681,8682,8683,8686,8687,8689,8691,8692,8696,8699,8700,8701,8704,8706,8708,8710,8714,8716,8717,8719,8720,8722,8726,8728,8729,8730,8733,8737,8738,8739,8741,8743,8744,8746,8747,8748,8753,8755,8756,8758,8761,8763,8764,8766,8767,8770,8772,8775,8777,8779,8780,8781,8783,8785,8786,8789,8790,8794,8795,8797,8800,8801,8803,8804,8808,8810,8812,8813,8814,8818,8820,8822,8825,8827,8828,8829,8831,8832,8833,8835,8837,8838,8840,8841,8845,8847,8852,8854,8855,8856,8858,8859,8861,8864,8867,8869,8870,8871,8874,8876,8878,8879,8882,8883,8885,8886,8890,8891,8893,8895,8896,8900,8901,8904,8906,8907,8910,8913,8916,8917,8919,8920,8922,8924,8926,8929,8930,8931,8936,8938,8939,8941,8942,8943,8945,8947,8948,8949,8952,8956,8957,8959,8962,8963,8964,8967,8969,8971,8972,8974,8976,8978,8979,8980,8983,8984,8985,8986,8988,8989,8993,8997,9000,9002,9005,9008,9009,9010,9013,9014,9015,9017,9020,9021,9025,9026,9027,9028,9030,9032,9033,9035,9037,9038,9040,9043,9044,9045,9049,9050,9052,9055,9056,9059,9061,9063,9065,9068,9069,9072,9076,9077,\r\n9078,9081,9083,9086,9087,9091,9094,9095,9098,9099,9101,9102,9103,9107,9108,9109,9113,9115,9117,9119,9121,9122,9123,9126,9127,9130,9131,9133,9136,9137,9138,9141,9143,9145,9146,9147,9148,9150,9154,9155,9157,9158,9160,9162,9163,9166,9167,9168,9170,9171,9172,9174,9177,9182,9183,9184,9187,9189,9190,9192,9194,9197,9199,9201,9203,9204,9205,9207,9209,9210,9212,9215,9217,9218,9219,9221,9222,9226,9227,9228,9230,9231,9235,9237,9239,9240,9244,9246,9247,9251,9252,9256,9257,9258,9260,9263,9264,9265,9267,9268,9271,9275,9278,9279,9283,9285,9286,9290,9291,9293,9294,9298,9299,9302,9305,9306,9308,9309,9310,9313,9314,9316,9317,9318,9323,9324,9325,9327,9330,9333,9335,9336,9337,9340,9341,9343,9346,9347,9350,9352,9355,9358,9360,9361,9365,9367,9369,9371,9372,9373,9375,9376,9378,9380,9382,9383,9385,9386,9389,9390,9391,9393,9394,9396,9399,9404,9407,9408,9410,9412,9413,9416,9417,9420,9421,9423,9426,9429,9431,9433,9434,9436,9437,9439,9442,9443,9446,9448,9451,9453,9454,9456,9458,9461,9462,9463,9465,9466,9468,9469,9472,9474,9478,9479,9482,9484,9485,9486,9488,9491,9492,9494,9496,9497,9498,9501,9503,9506,9509,9510,9512,9513,9515,9516,9519,9520,9523,9525,9527,9528,9530,9533,9536,9537,9540,9543,9544,9546,9550,9554,9557,9558,9560,9562,9566,9567,9568,9570,9571,9573,9576,9577,9579,9581,9582,9587,9590,9591,9593,9596,9599,9601,9602,9603,9606,9607,9610,9612,9613,9615,9619,9620,9623,9624,9626,9627,9628,9632,9633,9637,9638,9639,9641,9642,9644,9645,9646,9649,9652,9653,9654,9656,9659,9660,9664,9665,9668,9669,9671,9672,9674,9675,9680,9682,9683,9686,9687,9688,9690,9691,9693,9696,9698,9699,9701,9704,9707,9709,9710,9712,9713,9715,9717,9719,9722,9723,9727,9728,9731,9732,9734,9735,9737,9740,9742,9743,9744,9746,9749,9752,9753,9755,9756,9761,9762,9764,9765,9768,9770,9771,9774,9775,9776,9777,9778,9781,9782,9783,9785,9786,9788,9789,9791,9792,9796,9797,9799,9800,9801,9802,9804,9805,9808,9811,9812,9813,9814,9817,9818,9819,9821,9822,9824,9826,9829,9830,9832,9833,9834,9836,9838,9839,9841,9842,9844,9846,9849,9851,9853,9854,9856,9857,9860,9861,9863,9864,9865,9869,9870,9872,\r\n9875,9876,9878,9880,9883,9884,9887,9889,9891,9895,9896,9897,9899,9900,9902,9903,9904,9906,9907,9911,9913,9916,9917,9918,9920,9921,9923,9926,9928,9929,9930,9932,9935,9938,9939,9941,9944,9945,9946,9949,9950,9951,9952,9954,9956,9959,9961,9962,9965,9966,9968,9970,9971,9973,9975,9976,9978,9980,9981,9983,9986,9987,9990,9992,9994,9995,9996,9999,10003,10005,10006,10008,10009,10012,10014,10016,10018,10019,10021,10022,10024,10025,10026,10031,10032,10034,10037,10038,10039,10041,10043,10046,10049,10050,10051,10055,10057,10058,10059,10061,10062,10063,10065,10067,10069,10072,10074,10076,10077,10078,10082,10083,10084,10087,10088,10089,10091,10093,10095,10096,10100,10101,10105,10107,10110,10112,10113,10114,10116,10118,10119,10120,10122,10124,10125,10127,10129,10130,10132,10134,10138,10139,10141,10142,10145,10147,10148,10149,10151,10152,10154,10156,10157,10159,10162,10163,10164,10166,10168,10170,10171,10175,10177,10179,10181,10184,10185,10187,10190,10191,10192,10194,10195,10197,10199,10200,10203,10204,10206,10211,10213,10214,10215,10218,10219,10221,10224,10225,10230,10232,10233,10235,10236,10238,10241,10242,10243,10246,10248,10250,10251,10252,10255,10258,10259,10260,10261,10263,10265,10266,10268,10270,10271,10275,10279,10280,10283,10286,10287,10290,10292,10293,10296,10297,10300,10301,10303,10305,10307,10310,10313,10315,10316,10317,10319,10320,10322,10323,10327,10331,10332,10333,10336,10338,10340,10341,10342,10344,10345,10349,10350,10353,10356,10357,10360,10361,10362,10363,10366,10367,10369,10372,10373,10375,10376,10377,10381,10383,10384,10387,10388,10390,10391,10393,10394,10396,10397,10399,10401,10403,10405,10406,10407,10409,10410,10413,10414,10416,10418,10421,10423,10424,10426,10427,10430,10431,10432,10434,10436,10437,10438,10442,10444,10446,10448,10450,10451,10452,10457,10458,10459,10461,10463,10466,10467,10469,10470,10471,10474,10478,10479,10481,10482,10486,10488,10489,10491,10493,10494,10495,10498,10502,10503,10505,10507,10508,10510,10512,10516,10518,10520,10521,10524,10525,10527,10531,10532,10533,10535,10536,10537,10539,10544,\r\n10547,10549,10552,10554,10555,10558,10560,10564,10566,10569,10571,10572,10574,10576,10577,10579,10581,10584,10587,10589,10590,10593,10595,10596,10597,10599,10600,10603,10604,10606,10607,10608,10609,10612,10613,10616,10619,10621,10622,10623,10625,10626,10629,10632,10635,10637,10638,10639,10643,10644,10646,10647,10649,10651,10652,10654,10655,10657,10658,10660,10661,10663,10664,10667,10668,10672,10675,10676,10678,10679,10681,10682,10683,10684,10686,10690,10691,10693,10694,10697,10698,10699,10703,10705,10706,10707,10710,10711,10713,10714,10716,10719,10721,10724,10726,10728,10729,10731,10734,10736,10739,10741,10743,10747,10749,10750,10752,10754,10756,10757,10758,10759,10762,10764,10766,10767,10769,10770,10773,10777,10778,10782,10783,10787,10789,10792,10793,10794,10798,10799,10800,10802,10803,10805,10808,10809,10811,10812,10817,10819,10820,10821,10822,10825,10826,10828,10829,10830,10831,10837,10840,10841,10843,10846,10847,10849,10850,10852,10853,10856,10857,10861,10862,10865,10866,10868,10870,10871,10872,10876,10879,10880,10881,10883,10884,10885,10889,10891,10894,10895,10896,10897,10900,10901,10902,10904,10906,10909,10912,10913,10914,10916,10917,10919,10921,10922,10923,10924,10928,10930,10931,10932,10934,10936,10937,10938,10939,10941,10944,10945,10948,10950,10953,10955,10958,10961,10962,10964,10966,10967,10968,10970,10973,10974,10975,10977,10981,10983,10984,10986,10988,10989,10990,10992,10994,10995,10997,10999,11002,11003,11006,11007,11009,11011,11014,11015,11016,11019,11020,11022,11024,11025,11030,11032,11034,11037,11038,11042,11045,11050,11051,11053,11054,11055,11057,11058,11059,11062,11064,11066,11067,11075,11077,11078,11080,11082,11083,11086,11087,11088,11092,11093,11096,11099,11102,11103,11104,11108,11111,11112,11114,11115,11117,11119,11120,11121,11123,11125,11126,11130,11133,11138,11139,11140,11142,11143,11146,11148,11150,11152,11154,11156,11158,11160,11163,11165,11167,11168,11170,11171,11172,11174,11175,11177,11178,11181,11182,11184,11189,11190,11192,11194,11195,11196,11200,11201,11202,11203,11206,11207,11208,11209,\r\n11213,11216,11217,11218,11221,11223,11226,11227,11229,11231,11232,11236,11237,11239,11240,11241,11242,11245,11247,11249,11250,11252,11253,11256,11257,11259,11261,11262,11264,11267,11268,11269,11272,11275,11276,11279,11280,11282,11283,11284,11286,11289,11293,11294,11296,11297,11300,11302,11305,11306,11308,11310,11311,11314,11316,11318,11319,11321,11324,11325,11327,11329,11330,11331,11333,11334,11335,11339,11340,11345,11348,11349,11352,11355,11357,11360,11362,11363,11364,11366,11367,11368,11372,11373,11374,11377,11379,11380,11384,11387,11388,11394,11396,11398,11399,11400,11401,11403,11404,11407,11409,11410,11412,11414,11415,11418,11422,11423,11425,11427,11431,11432,11433,11434,11437,11440,11441,11444,11445,11448,11449,11451,11453,11455,11457,11458,11461,11464,11465,11467,11468,11469,11471,11473,11474,11475,11476,11479,11480,11481,11484,11485,11487,11489,11490,11491,11493,11494,11496,11498,11500,11502,11503,11507,11508,11510,11512,11514,11518,11520,11521,11523,11524,11526,11527,11529,11533,11534,11535,11536,11538,11539,11541,11542,11544,11547,11548,11551,11555,11556,11557,11561,11562,11563,11565,11566,11570,11571,11575,11577,11579,11582,11584,11585,11587,11590,11591,11593,11595,11598,11601,11603,11604,11605,11608,11609,11611,11612,11613,11614,11617,11620,11621,11624,11625,11628,11630,11633,11636,11637,11640,11641,11643,11646,11647,11651,11654,11655,11656,11658,11659,11662,11664,11666,11668,11670,11671,11673,11677,11679,11680,11682,11685,11686,11689,11691,11692,11696,11697,11698,11700,11704,11706,11708,11709,11711,11713,11714,11716,11719,11720,11721,11723,11724,11725,11727,11732,11734,11735,11737,11740,11742,11744,11745,11747,11748,11749,11754,11756,11758,11760,11762,11763,11766,11767,11771,11772,11773,11775,11777,11778,11779,11781,11784,11786,11787,11788,11790,11792,11794,11797,11799,11801,11802,11805,11810,11812,11814,11816,11817,11818,11820,11824,11825,11826,11827,11829,11833,11834,11835,11839,11840,11842,11843,11844,11845,11847,11848,11852,11854,11856,11857,11859,11862,11863,11866,11867,11868,11870,11873,11875,11877,\r\n11879,11880,11883,11884,11887,11888,11891,11892,11893,11895,11896,11898,11901,11905,11906,11908,11910,11913,11916,11917,11920,11921,11923,11924,11926,11930,11931,11933,11935,11936,11938,11939,11940,11941,11943,11944,11946,11948,11949,11951,11954,11956,11957,11958,11962,11965,11966,11967,11968,11970,11971,11974,11975,11978,11979,11982,11983,11986,11987,11988,11992,11993,11994,11995,11999,12002,12003,12006,12008,12010,12011,12012,12015,12017,12018,12020,12023,12024,12027,12028,12031,12032,12034,12036,12038,12040,12042,12044,12045,12046,12049,12050,12053,12054,12055,12059,12061,12062,12064,12068,12070,12072,12074,12075,12077,12079,12081,12086,12087,12089,12090,12092,12094,12095,12096,12097,12099,12102,12103,12105,12108,12110,12111,12115,12116,12117,12118,12122,12124,12125,12127,12129,12131,12132,12134,12135,12136,12138,12141,12142,12144,12148,12149,12151,12154,12155,12156,12159,12161,12162,12165,12167,12169,12171,12175,12177,12179,12181,12185,12186,12189,12190,12192,12193,12198,12201,12205,12207,12208,12211,12212,12213,12215,12217,12218,12219,12222,12225,12227,12230,12231,12236,12237,12238,12241,12242,12245,12247,12248,12250,12252,12254,12256,12257,12260,12262,12263,12264,12267,12269,12270,12272,12274,12277,12281,12284,12286,12287,12288,12289,12291,12292,12294,12297,12299,12301,12303,12304,12307,12308,12309,12310,12312,12313,12315,12318,12321,12322,12325,12326,12328,12330,12333,12336,12338,12341,12344,12346,12347,12348,12350,12351,12353,12354,12355,12357,12362,12363,12366,12367,12371,12374,12375,12376,12378,12381,12383,12384,12387,12388,12391,12393,12395,12397,12398,12401,12403,12407,12408,12411,12412,12414,12415,12417,12419,12420,12423,12425,12427,12428,12430,12432,12433,12436,12438,12440,12442,12444,12447,12449,12450,12455,12456,12458,12459,12460,12462,12464,12466,12467,12469,12470,12471,12472,12475,12478,12479,12482,12485,12486,12488,12490,12491,12492,12494,12497,12499,12502,12503,12504,12506,12507,12511,12512,12513,12514,12516,12518,12520,12521,12524,12527,12529,12530,12531,12533,12536,12540,12542,12545,12547,12550,\r\n12554,12555,12557,12558,12562,12563,12566,12569,12570,12571,12573,12576,12578,12580,12583,12584,12586,12589,12591,12593,12596,12597,12599,12600,12601,12604,12605,12607,12608,12610,12614,12615,12616,12618,12621,12622,12624,12629,12630,12632,12633,12637,12638,12640,12641,12642,12644,12647,12648,12649,12653,12654,12657,12658,12662,12664,12665,12666,12667,12670,12671,12672,12677,12678,12679,12682,12684,12686,12688,12690,12692,12695,12697,12698,12700,12702,12703,12705,12708,12711,12713,12714,12715,12719,12720,12723,12728,12730,12731,12732,12734,12737,12739,12740,12741,12742,12746,12748,12750,12754,12756,12757,12761,12762,12763,12767,12769,12770,12772,12773,12775,12776,12777,12779,12782,12783,12784,12788,12789,12790,12792,12796,12797,12799,12800,12803,12804,12806,12807,12810,12812,12814,12817,12818,12819,12821,12822,12823,12825,12827,12829,12830,12831,12836,12838,12841,12843,12844,12848,12849,12851,12853,12854,12857,12858,12860,12861,12862,12865,12866,12868,12869,12872,12875,12876,12879,12882,12883,12885,12887,12888,12889,12891,12893,12894,12896,12898,12899,12901,12903,12904,12906,12908,12909,12910,12912,12913,12917,12918,12921,12922,12924,12928,12929,12930,12933,12935,12936,12937,12940,12943,12945,12949,12951,12954,12955,12957,12959,12960,12962,12963,12964,12966,12968,12970,12971,12973,12974,12975,12979,12980,12983,12984,12987,12988,12990,12993,12995,12996,12999,13000,13002,13004,13005,13008,13011,13013,13015,13016,13017,13021,13022,13023,13027,13029,13030,13034,13036,13039,13043,13044,13046,13049,13050,13052,13053,13054,13056,13059,13061,13064,13065,13068,13070,13071,13072,13075,13076,13077,13078,13082,13084,13085,13086,13087,13091,13094,13097,13099,13102,13103,13106,13107,13109,13110,13112,13114,13116,13118,13119,13120,13122,13125,13130,13131,13134,13136,13138,13139,13142,13143,13145,13147,13150,13151,13152,13157,13158,13163,13164,13168,13169,13170,13171,13174,13175,13177,13179,13180,13182,13183,13185,13189,13191,13193,13194,13199,13200,13201,13204,13208,13209,13212,13216,13217,13219,13222,13223,13225,13226,13229,13230,\r\n13232,13233,13234,13236,13240,13241,13244,13245,13246,13249,13251,13254,13257,13259,13260,13265,13266,13267,13271,13272,13274,13277,13278,13279,13281,13282,13284,13286,13288,13289,13291,13292,13294,13295,13298,13301,13303,13304,13305,13307,13308,13309,13312,13316,13317,13319,13321,13325,13327,13328,13331,13333,13334,13336,13337,13339,13340,13342,13343,13344,13345,13348,13349,13351,13352,13354,13356,13359,13361,13363,13367,13368,13369,13371,13372,13375,13377,13380,13381,13383,13387,13390,13391,13393,13394,13395,13397,13398,13402,13403,13404,13405,13408,13412,13413,13415,13417,13419,13422,13425,13426,13429,13430,13432,13433,13434,13436,13437,13438,13442,13444,13445,13447,13448,13449,13450,13454,13455,13459,13460,13461,13465,13467,13468,13470,13472,13473,13475,13476,13480,13481,13482,13483,13485,13490,13491,13493,13494,13499,13501,13503,13505,13506,13507,13510,13513,13517,13518,13519,13521,13523,13525,13526,13528,13532,13533,13537,13538,13539,13540,13543,13544,13546,13548,13549,13552,13555,13558,13559,13562,13564,13568,13569,13572,13574,13576,13577,13579,13580,13582,13586,13587,13589,13590,13591,13594,13597,13599,13602,13603,13605,13607,13608,13609,13613,13615,13616,13618,13619,13622,13625,13628,13629,13630,13634,13635,13637,13640,13641,13643,13644,13645,13647,13648,13650,13654,13655,13656,13659,13662,13663,13665,13667,13671,13672,13674,13675,13678,13680,13682,13683,13686,13687,13689,13690,13692,13693,13695,13696,13698,13700,13703,13704,13705,13707,13710,13712,13715,13717,13718,13721,13722,13725,13726,13728,13732,13734,13737,13738,13740,13742,13745,13747,13748,13749,13751,13752,13753,13755,13756,13758,13761,13762,13764,13768,13769,13770,13771,13774,13775,13778,13779,13781,13784,13785,13787,13788,13790,13791,13793,13794,13796,13799,13802,13803,13805,13807,13808,13809,13813,13817,13820,13821,13822,13825,13826,13827,13829,13830,13833,13834,13836,13837,13840,13841,13844,13846,13847,13848,13853,13855,13858,13859,13861,13862,13864,13867,13868,13870,13873,13874,13875,13876,13880,13881,13882,13885,13889,13892,13893,13896,13897,\r\n13899,13901,13902,13904,13906,13908,13910,13911,13912,13916,13917,13919,13921,13925,13926,13927,13930,13932,13937,13938,13939,13941,13945,13946,13947,13948,13951,13952,13955,13956,13960,13963,13964,13965,13967,13968,13972,13973,13975,13976,13977,13979,13982,13984,13985,13987,13990,13991,13992,13996,13997,13999,14002,14003,14005,14006,14008,14010,14015,14017,14019,14021,14022,14023,14026,14027,14030,14032,14033,14034,14037,14039,14041,14042,14043,14046,14048,14050,14052,14053,14056,14057,14058,14059,14061,14062,14064,14065,14069,14071,14072,14074,14076,14079,14081,14083,14084,14085,14086,14090,14091,14093,14094,14096,14097,14098,14100,14101,14103,14104,14106,14107,14110,14113,14114,14116,14118,14122,14123,14125,14126,14127,14129,14131,14133,14137,14138,14139,14140,14142,14146,14147,14149,14150,14151,14153,14156,14158,14159,14160,14163,14166,14168,14171,14172,14175,14179,14180,14183,14185,14187,14189,14190,14192,14194,14195,14197,14198,14201,14202,14203,14206,14209,14213,14214,14217,14218,14221,14222,14223,14225,14227,14230,14231,14233,14237,14239,14240,14242,14244,14245,14247,14248,14251,14252,14254,14257,14260,14261,14263,14264,14265,14267,14268,14270,14273,14274,14275,14277,14278,14282,14284,14288,14289,14290,14292,14293,14295,14299,14301,14303,14306,14307,14309,14310,14314,14317,14320,14322,14324,14325,14327,14329,14330,14331,14336,14337,14341,14344,14345,14347,14350,14351,14353,14355,14359,14360,14362,14365,14368,14370,14373,14375,14376,14377,14380,14381,14382,14386,14387,14388,14389,14393,14394,14397,14401,14402,14407,14408,14410,14411,14413,14414,14416,14419,14420,14421,14424,14428,14429,14431,14432,14433,14434,14436,14438,14440,14441,14444,14445,14447,14448,14452,14454,14455,14457,14459,14462,14463,14465,14467,14469,14471,14472,14474,14475,14476,14480,14483,14485,14486,14489,14491,14494,14495,14497,14498,14500,14501,14503,14504,14505,14506,14509,14513,14514,14516,14517,14519,14520,14522,14525,14528,14531,14534,14537,14538,14543,14544,14545,14547,14550,14552,14555,14556,14560,14562,14565,14568,14569,14572,14573,\r\n14575,14576,14577,14578,14580,14581,14584,14589,14592,14594,14599,14600,14602,14603,14604,14606,14607,14609,14610,14614,14615,14616,14619,14622,14623,14626,14627,14628,14630,14631,14633,14634,14638,14641,14644,14645,14646,14647,14650,14652,14654,14655,14657,14659,14661,14663,14664,14667,14670,14671,14674,14675,14676,14678,14681,14683,14685,14687,14690,14692,14696,14698,14699,14701,14702,14703,14704,14707,14708,14709,14712,14714,14716,14717,14718,14722,14726,14729,14731,14732,14733,14735,14737,14738,14739,14740,14744,14745,14747,14752,14755,14759,14762,14764,14768,14769,14771,14772,14773,14775,14776,14778,14780,14782,14783,14785,14787,14791,14792,14793,14794,14797,14801,14802,14803,14806,14808,14809,14813,14814,14817,14818,14820,14823,14825,14826,14828,14830,14831,14832,14837,14839,14840,14842,14846,14847,14851,14854,14856,14858,14860,14861,14863,14864,14865,14866,14869,14873,14876,14877,14878,14881,14883,14884,14887,14888,14889,14892,14893,14895,14898,14902,14903,14905,14906,14907,14912,14915,14916,14917,14920,14921,14922,14923,14926,14927,14930,14931,14935,14937,14938,14941,14942,14943,14945,14946,14948,14950,14951,14953,14956,14958,14960,14961,14963,14964,14966,14967,14971,14975,14977,14978,14979,14981,14982,14984,14985,14989,14990,14991,14995,14996,14998,15000,15001,15003,15004,15007,15010,15011,15012,15014,15016,15017,15019,15020,15022,15023,15026,15028,15030,15034,15036,15037,15039,15040,15044,15045,15047,15050,15052,15054,15057,15058,15062,15064,15065,15066,15069,15072,15074,15076,15078,15079,15082,15083,15084,15088,15089,15091,15093,15095,15096,15102,15104,15106,15107,15108,15112,15115,15117,15119,15121,15124,15126,15130,15131,15132,15133,15136,15137,15139,15140,15141,15145,15147,15150,15154,15155,15156,15159,15164,15165,15167,15168,15171,15172,15175,15177,15178,15180,15184,15185,15188,15190,15191,15194,15196,15198,15203,15205,15206,15207,15208,15212,15213,15215,15216,15220,15221,15224,15226,15227,15228,15231,15233,15235,15237,15239,15241,15244,15245,15248,15249,15251,15252,15257,15258,15260,15262,15265,15268,\r\n15269,15272,15274,15276,15277,15280,15284,15285,15287,15288,15290,15291,15293,15294,15295,15297,15298,15300,15304,15306,15308,15310,15312,15313,15316,15318,15320,15322,15323,15324,15326,15327,15328,15330,15334,15336,15338,15339,15343,15344,15347,15350,15351,15354,15357,15358,15360,15361,15364,15365,15368,15371,15374,15376,15377,15379,15381,15383,15384,15385,15387,15388,15390,15393,15394,15397,15398,15401,15404,15406,15407,15408,15410,15411,15413,15414,15415,15418,15420,15422,15423,15424,15426,15428,15431,15433,15435,15436,15439,15440,15441,15443,15445,15447,15448,15451,15452,15453,15455,15456,15458,15461,15463,15465,15467,15469,15470,15471,15472,15476,15479,15481,15483,15485,15486,15487,15489,15490,15492,15494,15496,15500,15501,15503,15504,15505,15508,15509,15511,15512,15513,15515,15516,15519,15521,15522,15524,15526,15527,15528,15529,15531,15532,15536,15537,15541,15545,15547,15549,15550,15553,15554,15557,15559,15560,15562,15564,15566,15568,15569,15571,15572,15575,15576,15578,15579,15584,15585,15589,15590,15592,15593,15594,15598,15600,15601,15604,15607,15610,15612,15614,15616,15617,15618,15621,15622,15626,15629,15630,15633,15634,15637,15638,15639,15645,15647,15650,15651,15654,15655,15658,15659,15662,15663,15664,15666,15668,15671,15672,15673,15676,15678,15682,15683,15684,15689,15690,15694,15695,15696,15699,15700,15702,15705,15706,15708,15710,15712,15713,15716,15718,15719,15721,15725,15727,15728,15729,15733,15734,15735,15736,15740,15742,15743,15745,15747,15749,15751,15752,15753,15754,15756,15758,15761,15763,15765,15767,15768,15769,15771,15773,15775,15779,15781,15783,15784,15787,15791,15792,15793,15795,15797,15798,15799,15801,15804,15806,15807,15810,15812,15813,15818,15820,15821,15823,15824,15826,15827,15828,15829,15831,15833,15834,15838,15840,15842,15844,15845,15847,15849,15850,15852,15855,15856,15858,15860,15861,15862,15865,15866,15868,15870,15874,15875,15876,15877,15879,15881,15883,15886,15887,15892,15893,15894,15895,15899,15901,15902,15903,15905,15907,15911,15912,15914,15917,15919,15920,15921,15924,15926,15928,15929,\r\n15930,15933,15935,15936,15938,15939,15941,15942,15947,15948,15949,15953,15954,15955,15958,15959,15961,15962,15964,15966,15968,15969,15970,15972,15973,15975,15977,15982,15983,15984,15986,15989,15991,15993,15995,15997,15998,16000,16002,16003,16006,16007,16008,16011,16013,16016,16018,16019,16022,16023,16024,16027,16028,16029,16030,16032,16034,16037,16038,16040,16041,16043,16046,16047,16049,16050,16051,16053,16054,16057,16058,16063,16066,16068,16070,16072,16075,16076,16077,16081,16083,16084,16087,16091,16093,16094,16095,16097,16099,16100,16103,16104,16106,16108,16109,16110,16115,16117,16120,16122,16124,16132,16134,16136,16137,16140,16143,16144,16148,16151,16153,16154,16157,16159,16161,16163,16165,16167,16172,16174,16175,16176,16177,16179,16181,16183,16184,16187,16189,16190,16191,16196,16197,16200,16203,16208,16209,16211,16214,16216,16218,16219,16222,16223,16225,16228,16231,16232,16233,16237,16238,16240,16241,16243,16246,16247,16248,16250,16251,16253,16254,16259,16261,16262,16265,16266,16268,16269,16271,16274,16275,16276,16279,16280,16281,16282,16284,16286,16288,16290,16293,16294,16297,16301,16303,16304,16307,16309,16310,16312,16314,16319,16321,16323,16326,16329,16331,16333,16335,16336,16340,16343,16344,16346,16347,16349,16350,16354,16355,16357,16358,16360,16361,16363,16367,16368,16370,16372,16374,16377,16378,16381,16382,16383,16384,16387,16389,16394,16395,16399,16400,16401,16405,16406,16408,16409,16410,16412,16414,16417,16420,16421,16423,16425,16429,16432,16435,16436,16438,16440,16441,16444,16446,16447,16450,16451,16452,16453,16455,16456,16458,16459,16462,16463,16465,16466,16467,16469,16470,16471,16475,16476,16477,16479,16481,16483,16484,16486,16487,16490,16493,16495,16496,16497,16498,16501,16504,16506,16508,16509,16511,16512,16513,16515,16517,16520,16523,16524,16526,16527,16531,16533,16535,16536,16539,16546,16548,16550,16553,16554,16555,16558,16559,16560,16562,16563,16565,16566,16570,16572,16573,16576,16578,16579,16581,16583,16584,16586,16588,16589,16592,16594,16598,16601,16602,16605,16609,16613,16614,16615,16617,16619,\r\n16620,16622,16623,16625,16627,16628,16629,16631,16632,16634,16635,16638,16641,16642,16645,16647,16649,16652,16653,16654,16657,16659,16661,16663,16664,16665,16668,16671,16672,16674,16676,16677,16681,16682,16683,16685,16687,16689,16691,16692,16695,16697,16699,16700,16703,16705,16706,16708,16710,16711,16715,16717,16720,16723,16726,16727,16729,16730,16732,16733,16734,16737,16739,16740,16742,16745,16747,16748,16749,16751,16753,16755,16758,16759,16762,16763,16765,16769,16772,16774,16775,16778,16779,16782,16783,16785,16788,16790,16792,16794,16796,16799,16800,16801,16805,16806,16808,16809,16811,16812,16814,16815,16816,16818,16819,16822,16825,16827,16829,16830,16834,16836,16838,16839,16841,16843,16845,16846,16848,16850,16851,16852,16855,16857,16858,16860,16864,16865,16868,16870,16871,16873,16874,16876,16877,16878,16880,16881,16886,16887,16890,16894,16895,16896,16899,16901,16904,16906,16907,16908,16913,16914,16915,16918,16919,16920,16922,16923,16924,16928,16929,16930,16932,16934,16935,16938,16939,16942,16944,16948,16950,16951,16953,16956,16959,16961,16962,16966,16967,16969,16970,16973,16975,16976,16978,16979,16982,16983,16986,16987,16990,16991,16992,16997,17000,17002,17003,17004,17009,17010,17012,17013,17017,17018,17020,17021,17023,17025,17027,17028,17032,17036,17037,17038,17042,17044,17045,17047,17049,17051,17052,17054,17055,17057,17059,17061,17066,17067,17068,17071,17074,17075,17076,17078,17081,17082,17085,17088,17090,17091,17092,17094,17096,17097,17098,17101,17102,17103,17105,17108,17109,17113,17115,17117,17120,17121,17123,17126,17127,17128,17130,17131,17133,17134,17136,17137,17140,17141,17144,17146,17150,17153,17154,17155,17159,17160,17162,17163,17164,17168,17170,17173,17176,17177,17179,17180,17182,17184,17187,17190,17191,17194,17196,17197,17200,17202,17203,17206,17207,17208,17212,17216,17218,17219,17222,17224,17227,17228,17229,17230,17235,17236,17238,17242,17243,17245,17247,17251,17252,17254,17255,17256,17261,17264,17265,17266,17269,17270,17271,17275,17277,17278,17280,17282,17283,17288,17290,17291,17292,17295,17297,17298,\r\n17300,17302,17305,17306,17307,17308,17311,17315,17317,17320,17323,17325,17330,17332,17333,17334,17336,17338,17340,17341,17343,17347,17348,17349,17350,17352,17354,17355,17357,17358,17359,17362,17363,17364,17365,17368,17369,17370,17371,17373,17375,17376,17379,17382,17384,17385,17389,17392,17393,17394,17397,17399,17401,17404,17406,17408,17411,17414,17415,17417,17418,17421,17422,17425,17426,17427,17429,17430,17434,17435,17437,17441,17443,17444,17448,17450,17452,17453,17455,17459,17460,17461,17464,17466,17468,17470,17471,17472,17474,17477,17478,17480,17483,17485,17488,17490,17492,17493,17495,17496,17499,17501,17504,17505,17508,17510,17511,17513,17515,17516,17519,17521,17522,17523,17528,17530,17531,17534,17535,17540,17543,17545,17546,17548,17549,17552,17553,17554,17557,17558,17559,17563,17564,17566,17567,17568,17569,17572,17574,17576,17580,17581,17583,17584,17587,17588,17589,17593,17594,17595,17596,17598,17600,17605,17606,17607,17611,17613,17615,17617,17619,17621,17622,17626,17629,17630,17632,17635,17637,17640,17641,17645,17647,17648,17649,17651,17654,17655,17659,17660,17662,17664,17666,17667,17669,17670,17672,17675,17677,17678,17680,17682,17684,17685,17687,17688,17690,17691,17695,17696,17697,17702,17703,17707,17709,17711,17712,17714,17715,17717,17718,17720,17721,17724,17726,17727,17732,17733,17735,17736,17739,17742,17743,17745,17747,17750,17752,17755,17758,17759,17760,17764,17765,17766,17768,17770,17771,17774,17775,17776,17778,17781,17782,17784,17785,17788,17790,17791,17793,17794,17797,17800,17802,17803,17805,17808,17810,17812,17813,17814,17818,17820,17821,17825,17827,17829,17835,17836,17840,17841,17842,17844,17845,17848,17850,17853,17855,17856,17857,17860,17864,17865,17868,17870,17872,17873,17874,17875,17877,17878,17880,17882,17885,17887,17888,17891,17893,17894,17895,17896,17899,17901,17903,17904,17906,17908,17910,17911,17913,17914,17916,17918,17919,17923,17926,17929,17930,17931,17935,17938,17939,17941,17943,17944,17947,17948,17950,17954,17956,17958,17960,17961,17964,17966,17967,17970,17972,17973,17977,17978,17980,17984,\r\n17986,17987,17988,17990,17992,17993,17994,17995,17997,17999,18000,18002,18005,18006,18008,18011,18012,18014,18015,18016,18018,18019,18021,18025,18028,18029,18032,18034,18035,18036,18038,18039,18040,18042,18045,18048,18049,18052,18053,18054,18057,18060,18062,18063,18066,18067,18069,18071,18072,18073,18077,18078,18080,18083,18085,18086,18089,18090,18093,18094,18098,18100,18104,18105,18107,18108,18110,18111,18114,18118,18119,18121,18124,18126,18130,18132,18133,18136,18137,18140,18142,18143,18144,18148,18150,18152,18154,18155,18157,18159,18161,18162,18163,18166,18168,18171,18172,18175,18178,18180,18181,18183,18186,18188,18189,18192,18196,18197,18198,18199,18203,18205,18208,18209,18210,18212,18214,18215,18216,18218,18220,18222,18225,18226,18228,18232,18233,18234,18235,18237,18241,18242,18243,18244,18246,18249,18251,18252,18254,18256,18258,18262,18263,18266,18268,18271,18273,18274,18278,18280,18282,18284,18286,18287,18290,18292,18294,18296,18297,18298,18300,18305,18309,18317,18318,18321,18324,18326,18327,18331,18332,18334,18335,18338,18339,18340,18344,18345,18347,18348,18350,18351,18354,18358,18359,18360,18363,18364,18366,18367,18369,18371,18373,18376,18377,18378,18379,18381,18382,18384,18389,18390,18391,18393,18397,18398,18400,18402,18403,18406,18407,18408,18413,18414,18416,18419,18421,18422,18425,18426,18427,18430,18431,18432,18433,18437,18438,18439,18442,18444,18446,18447,18448,18450,18453,18455,18457,18460,18461,18464,18467,18468,18471,18473,18475,18476,18478,18479,18480,18481,18484,18486,18487,18489,18494,18495,18498,18499,18502,18505,18506,18507,18508,18511,18514,18516,18519,18520,18522,18523,18525,18526,18528,18529,18532,18535,18536,18538,18539,18541,18543,18545,18546,18549,18552,18555,18557,18559,18563,18565,18566,18567,18569,18571,18572,18574,18575,18576,18578,18580,18582,18584,18585,18587,18589,18590,18591,18592,18595,18597,18601,18603,18604,18607,18610,18611,18612,18614,18615,18619,18620,18621,18623,18625,18626,18627,18629,18630,18631,18635,18637,18641,18642,18645,18648,18649,18653,18654,18656,18657,18659,18660,\r\n18663,18665,18666,18667,18669,18670,18672,18677,18680,18682,18684,18686,18688,18689,18690,18691,18694,18695,18696,18697,18699,18700,18703,18706,18710,18711,18712,18715,18717,18720,18723,18724,18727,18728,18730,18732,18734,18735,18738,18739,18741,18745,18746,18748,18750,18752,18754,18756,18757,18760,18762,18763,18766,18767,18770,18771,18772,18774,18778,18781,18782,18785,18787,18788,18789,18790,18792,18793,18796,18797,18798,18799,18801,18805,18808,18811,18812,18814,18817,18820,18821,18822,18824,18826,18830,18831,18833,18834,18836,18837,18838,18841,18845,18848,18850,18851,18852,18853,18857,18859,18862,18865,18867,18870,18873,18875,18878,18879,18880,18882,18884,18886,18887,18890,18892,18893,18894,18899,18900,18901,18904,18908,18909,18912,18916,18917,18919,18920,18922,18926,18927,18928,18930,18932,18934,18935,18936,18941,18943,18944,18946,18948,18952,18953,18954,18956,18959,18961,18964,18965,18967,18971,18973,18975,18977,18979,18980,18981,18983,18984,18985,18989,18990,18992,18995,18996,18999,19000,19004,19005,19007,19009,19010,19011,19014,19016,19018,19020,19021,19024,19028,19030,19033,19035,19036,19039,19040,19041,19043,19045,19047,19049,19051,19052,19053,19057,19058,19060,19062,19066,19070,19071,19072,19074,19075,19078,19080,19082,19083,19087,19089,19091,19092,19093,19097,19098,19100,19101,19103,19104,19107,19109,19111,19114,19115,19117,19121,19122,19124,19126,19128,19131,19132,19134,19136,19137,19139,19140,19142,19144,19145,19146,19147,19150,19151,19152,19154,19155,19156,19159,19160,19162,19164,19167,19170,19171,19173,19175,19176,19178,19180,19181,19182,19183,19185,19186,19190,19192,19193,19194,19195,19198,19199,19201,19202,19204,19207,19211,19212,19214,19215,19218,19220,19221,19222,19225,19227,19228,19231,19233,19234,19237,19238,19240,19243,19244,19246,19250,19253,19255,19256,19258,19259,19262,19264,19266,19268,19269,19271,19274,19275,19279,19280,19281,19284,19285,19288,19290,19292,19295,19297,19298,19299,19303,19306,19308,19311,19313,19316,19318,19319,19320,19323,19325,19326,19328,19329,19332,19336,19337,19339,19340,\r\n19341,19342,19346,19348,19349,19351,19352,19353,19354,19356,19358,19359,19361,19362,19363,19366,19369,19373,19376,19377,19380,19382,19385,19386,19387,19389,19390,19392,19394,19396,19398,19400,19402,19403,19404,19405,19409,19412,19415,19417,19420,19421,19422,19427,19430,19431,19433,19435,19439,19440,19442,19444,19446,19450,19453,19454,19455,19458,19460,19461,19463,19466,19467,19471,19473,19475,19477,19478,19479,19482,19487,19488,19490,19491,19492,19494,19499,19502,19503,19504,19506,19507,19509,19511,19512,19517,19519,19520,19522,19524,19525,19529,19530,19531,19533,19538,19539,19540,19544,19547,19548,19549,19553,19555,19556,19558,19560,19562,19565,19566,19569,19571,19572,19573,19575,19579,19582,19583,19584,19585,19587,19589,19591,19593,19595,19597,19598,19601,19603,19604,19605,19606,19608,19610,19613,19614,19617,19619,19621,19625,19626,19630,19631,19634,19635,19637,19638,19642,19644,19645,19647,19648,19651,19652,19655,19656,19658,19659,19660,19662,19665,19667,19670,19673,19675,19676,19677,19678,19680,19681,19684,19686,19687,19691,19692,19694,19697,19698,19699,19701,19702,19704,19705,19707,19708,19711,19712,19716,19717,19719,19720,19723,19724,19726,19728,19730,19731,19732,19736,19737,19739,19741,19742,19743,19746,19751,19752,19753,19755,19756,19758,19759,19761,19763,19764,19766,19767,19768,19771,19772,19773,19775,19776,19778,19779,19781,19783,19784,19786,19787,19789,19793,19795,19798,19800,19803,19804,19807,19810,19813,19814,19815,19817,19818,19819,19822,19823,19824,19825,19827,19828,19834,19837,19841,19842,19843,19846,19847,19848,19849,19851,19853,19856,19857,19858,19860,19861,19863,19865,19867,19869,19870,19872,19874,19875,19876,19880,19882,19884,19886,19889,19892,19893,19895,19896,19897,19899,19900,19904,19905,19906,19909,19912,19913,19914,19916,19917,19920,19925,19927,19930,19931,19932,19934,19937,19938,19939,19942,19944,19946,19948,19949,19951,19954,19955,19958,19961,19964,19965,19967,19970,19971,19972,19974,19975,19977,19980,19983,19985,19988,19989,19991,19992,19994,19996,19997,19998,19999,20001,20005,20008,20012,\r\n20013,20014,20017,20018,20019,20021,20022,20024,20026,20028,20032,20033,20035,20037,20038,20042,20043,20045,20046,20048,20049,20050,20053,20056,20058,20059,20061,20062,20064,20068,20069,20070,20071,20074,20076,20077,20079,20084,20085,20090,20091,20093,20094,20098,20102,20103,20104,20108,20110,20111,20112,20114,20116,20117,20118,20119,20121,20122,20124,20127,20131,20132,20135,20136,20138,20139,20140,20143,20145,20146,20149,20153,20155,20156,20157,20158,20161,20162,20164,20167,20171,20173,20174,20176,20177,20178,20179,20182,20184,20186,20187,20191,20194,20196,20197,20200,20201,20203,20204,20205,20206,20210,20211,20213,20215,20217,20222,20223,20224,20227,20230,20233,20234,20235,20237,20240,20241,20243,20245,20246,20247,20248,20250,20251,20253,20257,20258,20261,20263,20266,20268,20269,20273,20275,20277,20278,20280,20282,20284,20285,20287,20288,20290,20293,20294,20296,20298,20300,20302,20305,20306,20307,20308,20311,20312,20313,20314,20316,20320,20321,20323,20324,20326,20329,20336,20338,20341,20342,20343,20345,20347,20349,20353,20355,20356,20358,20359,20362,20366,20367,20368,20372,20374,20377,20378,20380,20382,20383,20386,20387,20388,20390,20391,20392,20395,20398,20400,20401,20404,20407,20408,20409,20410,20412,20416,20417,20419,20422,20424,20425,20427,20429,20430,20431,20435,20437,20440,20441,20443,20445,20447,20448,20452,20453,20455,20456,20458,20461,20465,20467,20468,20469,20470,20473,20477,20479,20481,20482,20484,20485,20488,20491,20492,20493,20494,20498,20500,20502,20504,20505,20508,20509,20512,20513,20514,20515,20518,20519,20520,20524,20528,20529,20530,20534,20535,20540,20544,20546,20548,20549,20550,20552,20554,20557,20558,20561,20563,20566,20568,20570,20573,20574,20576,20577,20580,20582,20583,20586,20587,20589,20590,20594,20596,20597,20598,20601,20603,20604,20605,20608,20609,20610,20611,20615,20617,20618,20619,20622,20623,20627,20631,20635,20636,20637,20640,20642,20643,20644,20648,20649,20650,20653,20655,20656,20659,20660,20661,20664,20665,20668,20672,20674,20676,20678,20679,20684,20686,20687,20688,20690,20692,20693,\r\n20694,20695,20697,20701,20702,20704,20705,20706,20708,20710,20711,20712,20713,20715,20721,20723,20725,20727,20729,20730,20731,20734,20735,20737,20739,20740,20743,20744,20746,20747,20750,20752,20756,20759,20760,20763,20765,20767,20771,20772,20776,20777,20779,20780,20781,20784,20785,20787,20789,20790,20792,20793,20794,20799,20801,20802,20804,20806,20809,20812,20815,20818,20821,20822,20824,20825,20827,20829,20831,20834,20837,20839,20841,20843,20845,20846,20847,20848,20850,20852,20853,20854,20856,20858,20862,20863,20867,20869,20870,20871,20874,20878,20881,20882,20884,20885,20886,20888,20891,20893,20894,20895,20896,20898,20902,20904,20905,20909,20910,20911,20914,20916,20918,20919,20921,20922,20925,20926,20929,20932,20936,20939,20941,20944,20945,20948,20951,20953,20957,20959,20961,20962,20964,20966,20968,20970,20971,20973,20974,20976,20978,20980,20981,20983,20984,20985,20986,20988,20990,20992,20997,21001,21002,21005,21007,21008,21009,21014,21017,21018,21020,21021,21026,21028,21030,21033,21037,21040,21041,21044,21045,21047,21048,21050,21051,21054,21059,21060,21062,21063,21064,21066,21068,21069,21073,21074,21075,21079,21080,21083,21084,21085,21089,21091,21092,21094,21096,21099,21101,21103,21104,21106,21107,21108,21109,21111,21114,21116,21119,21120,21121,21123,21126,21129,21131,21134,21135,21137,21139,21140,21141,21143,21145,21146,21147,21148,21150,21151,21153,21157,21161,21163,21164,21165,21167,21168,21173,21174,21177,21178,21181,21182,21184,21186,21188,21190,21191,21192,21194,21195,21198,21200,21201,21204,21208,21211,21212,21213,21216,21217,21221,21222,21224,21226,21227,21229,21230,21232,21235,21236,21239,21241,21243,21244,21246,21249,21250,21254,21255,21257,21258,21261,21262,21264,21265,21268,21270,21271,21274,21276,21277,21282,21283,21287,21290,21292,21295,21297,21300,21302,21305,21306,21308,21309,21310,21312,21316,21319,21320,21322,21323,21326,21328,21329,21330,21332,21334,21336,21337,21339,21341,21343,21345,21347,21349,21351,21356,21357,21360,21361,21363,21367,21368,21369,21371,21372,21373,21376,21377,21380,21383,21384,\r\n21387,21389,21391,21392,21393,21394,21396,21397,21399,21401,21404,21405,21407,21408,21410,21411,21415,21416,21417,21418,21421,21422,21424,21425,21427,21429,21431,21432,21436,21437,21438,21440,21442,21444,21448,21452,21454,21457,21459,21460,21463,21464,21467,21469,21471,21473,21474,21475,21478,21480,21483,21484,21486,21487,21489,21490,21492,21495,21497,21498,21503,21504,21507,21509,21510,21512,21513,21514,21516,21517,21520,21524,21525,21526,21529,21532,21533,21534,21536,21537,21542,21543,21544,21547,21548,21549,21552,21554,21555,21556,21558,21559,21561,21566,21568,21571,21572,21574,21575,21576,21577,21580,21582,21584,21586,21588,21589,21592,21593,21594,21597,21598,21602,21604,21605,21606,21608,21609,21610,21614,21616,21619,21621,21624,21626,21628,21631,21633,21637,21638,21641,21643,21645,21648,21651,21652,21654,21656,21657,21659,21665,21666,21667,21670,21671,21672,21675,21676,21679,21680,21681,21683,21685,21686,21688,21689,21693,21694,21697,21700,21702,21705,21708,21712,21715,21717,21718,21720,21721,21724,21725,21727,21729,21733,21735,21736,21740,21741,21744,21745,21749,21750,21751,21753,21755,21756,21758,21759,21762,21766,21771,21773,21774,21776,21780,21781,21785,21788,21789,21791,21792,21795,21797,21798,21800,21801,21805,21806,21807,21810,21812,21814,21818,21821,21822,21823,21826,21827,21830,21833,21836,21839,21840,21841,21844,21845,21846,21847,21850,21851,21852,21854,21855,21856,21861,21863,21866,21867,21868,21872,21875,21876,21878,21881,21883,21884,21885,21886,21889,21891,21894,21895,21898,21900,21901,21904,21905,21906,21907,21909,21913,21914,21916,21918,21921,21922,21925,21926,21928,21930,21931,21934,21936,21938,21939,21941,21942,21943,21947,21949,21950,21953,21954,21955,21957,21958,21961,21963,21964,21967,21968,21970,21972,21974,21977,21979,21981,21984,21986,21988,21989,21990,21992,21995,21996,21998,21999,22000,22004,22005,22010,22011,22013,22015,22016,22017,22019,22021,22022,22023,22025,22026,22028,22030,22031,22032,22035,22037,22038,22040,22041,22042,22044,22046,22047,22051,22052,22054,22055,22057,22058,22060,\r\n22064,22065,22068,22070,22071,22073,22074,22079,22080,22083,22084,22086,22087,22089,22093,22094,22095,22096,22100,22103,22105,22106,22107,22108,22115,22118,22119,22120,22124,22125,22127,22129,22131,22132,22134,22138,22139,22142,22144,22145,22147,22149,22151,22153,22154,22156,22157,22158,22161,22162,22165,22167,22169,22172,22173,22177,22178,22179,22180,22182,22183,22187,22188,22190,22191,22192,22195,22197,22198,22200,22201,22204,22206,22211,22213,22214,22215,22220,22221,22223,22224,22226,22229,22231,22233,22234,22236,22237,22239,22240,22242,22245,22246,22250,22252,22253,22254,22256,22257,22258,22260,22264,22268,22270,22272,22273,22276,22278,22279,22281,22284,22286,22287,22290,22291,22295,22296,22298,22299,22302,22303,22306,22308,22310,22312,22314,22317,22320,22324,22327,22328,22331,22333,22335,22339,22340,22341,22342,22344,22346,22348,22349,22351,22354,22356,22357,22359,22363,22366,22368,22370,22374,22375,22377,22380,22381,22384,22385,22386,22387,22391,22393,22395,22399,22401,22402,22404,22406,22409,22410,22412,22413,22416,22418,22420,22422,22425,22429,22430,22433,22435,22436,22437,22440,22445,22446,22447,22451,22452,22453,22456,22458,22459,22462,22463,22465,22467,22468,22471,22473,22474,22477,22481,22483,22484,22485,22488,22489,22491,22494,22495,22498,22500,22501,22504,22507,22511,22512,22514,22515,22517,22519,22520,22522,22523,22524,22526,22529,22532,22535,22537,22538,22539,22540,22543,22544,22545,22546,22549,22552,22554,22555,22559,22560,22562,22564,22565,22566,22568,22569,22572,22574,22577,22578,22582,22585,22586,22587,22589,22591,22593,22595,22597,22598,22601,22602,22607,22608,22610,22612,22613,22614,22617,22620,22623,22624,22627,22628,22630,22634,22636,22638,22642,22643,22644,22645,22649,22651,22652,22654,22658,22659,22661,22663,22664,22665,22668,22671,22673,22674,22676,22677,22678,22681,22682,22684,22687,22688,22690,22692,22694,22697,22698,22700,22702,22703,22706,22709,22710,22711,22713,22715,22718,22720,22721,22723,22725,22728,22730,22731,22734,22736,22738,22740,22744,22747,22749,22750,22754,22755,22757,22760,\r\n22763,22766,22767,22768,22770,22772,22774,22777,22779,22781,22782,22784,22789,22790,22791,22792,22794,22797,22798,22800,22801,22803,22808,22810,22811,22813,22815,22816,22819,22820,22822,22823,22825,22827,22828,22830,22833,22836,22838,22839,22841,22842,22846,22847,22849,22852,22855,22856,22857,22859,22861,22863,22864,22866,22868,22869,22871,22872,22875,22876,22879,22882,22883,22884,22885,22888,22891,22892,22894,22898,22899,22901,22903,22904,22905,22909,22910,22911,22915,22916,22918,22921,22924,22928,22929,22930,22933,22934,22937,22938,22942,22945,22947,22948,22950,22951,22955,22956,22959,22960,22963,22965,22967,22968,22969,22971,22974,22975,22977,22981,22983,22985,22987,22988,22990,22992,22993,22995,22998,22999,23001,23004,23006,23007,23009,23011,23013,23014,23018,23020,23023,23024,23025,23029,23030,23031,23033,23035,23036,23038,23040,23041,23045,23047,23050,23051,23052,23053,23055,23058,23060,23061,23064,23067,23068,23071,23073,23075,23077,23079,23084,23085,23086,23088,23090,23093,23094,23098,23100,23104,23106,23108,23109,23110,23114,23116,23117,23118,23119,23121,23124,23125,23127,23129,23131,23135,23137,23138,23139,23140,23143,23146,23149,23152,23153,23155,23156,23158,23159,23160,23164,23167,23170,23172,23173,23175,23177,23179,23182,23185,23186,23188,23191,23193,23196,23198,23199,23201,23203,23205,23206,23209,23211,23212,23214,23217,23221,23222,23224,23225,23228,23230,23231,23232,23233,23235,23236,23240,23241,23242,23244,23246,23250,23254,23256,23257,23260,23261,23262,23263,23266,23268,23270,23271,23272,23276,23277,23279,23280,23281,23283,23287,23288,23290,23291,23292,23293,23295,23297,23299,23300,23301,23302,23304,23307,23312,23313,23314,23317,23318,23320,23321,23323,23325,23327,23328,23329,23331,23332,23336,23337,23342,23345,23346,23350,23354,23355,23357,23358,23359,23361,23363,23364,23365,23367,23370,23373,23375,23377,23378,23380,23383,23385,23388,23389,23392,23394,23395,23398,23401,23402,23404,23407,23409,23411,23412,23413,23417,23418,23419,23421,23423,23425,23426,23427,23430,23431,23435,23436,23439,23440,23442,\r\n23446,23448,23450,23452,23453,23455,23457,23459,23462,23463,23467,23470,23471,23474,23476,23477,23480,23481,23482,23485,23487,23489,23492,23494,23496,23497,23500,23502,23506,23508,23509,23512,23513,23515,23518,23520,23524,23526,23527,23530,23532,23533,23535,23537,23538,23539,23541,23543,23545,23546,23548,23552,23553,23556,23558,23560,23561,23562,23563,23567,23568,23570,23572,23575,23577,23579,23580,23583,23586,23589,23590,23593,23594,23595,23599,23600,23601,23602,23604,23607,23611,23615,23617,23618,23620,23622,23625,23627,23631,23633,23634,23638,23639,23641,23645,23647,23648,23649,23650,23652,23654,23655,23656,23658,23661,23663,23666,23667,23668,23671,23675,23678,23680,23683,23687,23689,23691,23692,23696,23697,23699,23702,23703,23704,23708,23710,23713,23714,23716,23719,23721,23722,23724,23725,23727,23730,23733,23734,23737,23740,23741,23743,23745,23750,23751,23753,23755,23758,23759,23760,23762,23763,23766,23767,23770,23772,23775,23776,23778,23780,23782,23786,23787,23788,23791,23792,23795,23796,23798,23799,23800,23804,23805,23809,23810,23811,23814,23816,23819,23820,23824,23827,23828,23830,23831,23832,23833,23835,23839,23841,23844,23845,23850,23854,23855,23856,23859,23861,23864,23867,23868,23870,23871,23873,23874,23875,23877,23878,23880,23881,23883,23884,23886,23887,23889,23891,23893,23896,23899,23900,23903,23904,23905,23908,23910,23912,23913,23917,23919,23921,23922,23924,23926,23929,23931,23932,23935,23936,23937,23940,23943,23944,23946,23947,23949,23951,23952,23953,23955,23956,23960,23962,23963,23964,23968,23969,23971,23973,23975,23976,23978,23979,23982,23983,23986,23987,23989,23993,23995,23997,24001,24004,24007,24010,24013,24017,24018,24019,24021,24022,24025,24027,24030,24031,24033,24035,24038,24039,24040,24042,24044,24047,24049,24050,24052,24053,24055,24058,24059,24061,24063,24065,24066,24067,24069,24070,24074,24076,24077,24080,24082,24084,24088,24089,24090,24095,24097,24099,24101,24103,24107,24108,24109,24111,24113,24114,24115,24118,24121,24122,24124,24126,24127,24129,24131,24134,24136,24139,24140,24144,24146,24148,\r\n24150,24151,24153,24155,24156,24157,24160,24161,24162,24163,24166,24167,24168,24169,24172,24174,24176,24178,24179,24180,24181,24183,24186,24187,24189,24190,24192,24193,24196,24199,24201,24204,24205,24207,24208,24210,24212,24213,24215,24216,24217,24219,24220,24224,24226,24227,24228,24230,24231,24235,24238,24240,24245,24248,24249,24250,24252,24254,24255,24260,24261,24265,24266,24267,24269,24271,24273,24275,24276,24277,24279,24283,24286,24287,24288,24291,24292,24296,24297,24299,24301,24303,24304,24308,24309,24310,24312,24315,24316,24319,24322,24323,24324,24325,24328,24332,24334,24335,24336,24337,24340,24343,24345,24350,24352,24353,24354,24356,24357,24361,24364,24365,24367,24370,24372,24374,24376,24377,24380,24382,24383,24385,24387,24388,24391,24392,24393,24394,24396,24400,24401,24405,24408,24409,24412,24414,24416,24418,24419,24420,24425,24426,24430,24431,24433,24434,24435,24436,24440,24441,24446,24449,24451,24452,24453,24454,24457,24458,24459,24463,24465,24470,24471,24472,24475,24478,24479,24482,24483,24484,24487,24490,24491,24492,24496,24497,24499,24500,24501,24502,24504,24505,24508,24509,24510,24512,24513,24514,24518,24520,24521,24523,24524,24527,24528,24530,24532,24534,24538,24539,24540,24544,24547,24548,24550,24553,24554,24555,24557,24558,24560,24563,24564,24566,24568,24571,24574,24577,24578,24580,24582,24584,24585,24586,24588,24591,24594,24596,24598,24599,24601,24604,24607,24609,24611,24614,24617,24618,24619,24621,24624,24625,24627,24628,24630,24631,24633,24637,24639,24643,24644,24645,24646,24649,24651,24653,24654,24656,24657,24658,24661,24664,24666,24667,24669,24673,24674,24675,24679,24681,24682,24684,24687,24690,24692,24693,24696,24701,24703,24704,24705,24707,24708,24709,24712,24713,24714,24715,24718,24719,24721,24722,24724,24728,24733,24735,24737,24738,24741,24742,24744,24746,24748,24749,24750,24753,24755,24756,24759,24762,24767,24769,24770,24771,24773,24778,24779,24782,24784,24787,24789,24791,24793,24796,24797,24798,24803,24804,24806,24807,24811,24812,24813,24814,24816,24818,24819,24821,24824,24825,24828,24830,\r\n24833,24834,24838,24839,24840,24841,24845,24846,24848,24849,24852,24857,24859,24861,24863,24864,24868,24869,24871,24873,24876,24877,24880,24881,24883,24887,24888,24890,24892,24893,24894,24895,24899,24901,24902,24905,24906,24907,24909,24913,24914,24915,24917,24920,24923,24925,24927,24929,24931,24934,24935,24936,24937,24940,24941,24942,24943,24946,24947,24949,24950,24953,24955,24956,24959,24961,24966,24969,24973,24974,24975,24976,24978,24979,24982,24984,24985,24988,24991,24992,24995,24997,24998,25001,25002,25004,25006,25009,25012,25013,25014,25016,25018,25021,25022,25024,25028,25030,25031,25032,25036,25038,25039,25043,25045,25047,25049,25052,25054,25058,25064,25066,25070,25073,25074,25078,25080,25082,25083,25084,25087,25088,25090,25091,25092,25094,25099,25101,25104,25106,25109,25111,25112,25114,25115,25116,25117,25119,25120,25123,25126,25128,25132,25133,25136,25138,25139,25143,25145,25146,25147,25149,25150,25152,25153,25155,25156,25159,25161,25162,25166,25168,25169,25171,25174,25175,25176,25178,25179,25182,25184,25186,25189,25190,25193,25194,25195,25197,25199,25201,25205,25206,25207,25211,25212,25216,25219,25220,25221,25225,25228,25230,25231,25233,25235,25237,25238,25240,25241,25243,25244,25246,25247,25249,25250,25252,25253,25256,25259,25262,25264,25265,25266,25267,25269,25271,25272,25277,25278,25279,25281,25282,25284,25287,25288,25291,25292,25293,25294,25297,25299,25300,25306,25309,25315,25318,25319,25321,25322,25324,25325,25326,25328,25330,25333,25337,25339,25340,25341,25343,25346,25347,25349,25352,25354,25356,25358,25359,25363,25365,25366,25369,25372,25373,25374,25378,25382,25384,25386,25390,25392,25395,25396,25398,25401,25402,25404,25406,25407,25409,25411,25413,25416,25418,25419,25421,25422,25423,25426,25427,25428,25430,25431,25432,25436,25438,25439,25441,25442,25444,25445,25447,25448,25449,25451,25453,25456,25457,25459,25460,25461,25463,25464,25469,25470,25473,25474,25478,25479,25481,25482,25484,25487,25489,25492,25496,25497,25500,25503,25504,25506,25507,25511,25512,25516,25519,25521,25525,25528,25531,25533,25535,\r\n25536,25540,25541,25544,25546,25547,25549,25550,25554,25555,25558,25561,25562,25563,25565,25567,25568,25569,25570,25572,25577,25580,25582,25584,25586,25587,25589,25590,25593,25595,25596,25600,25601,25602,25604,25606,25607,25608,25609,25613,25614,25615,25617,25619,25620,25622,25623,25625,25626,25628,25631,25633,25636,25637,25639,25640,25642,25644,25645,25648,25649,25651,25652,25655,25658,25659,25661,25662,25664,25670,25672,25676,25677,25679,25680,25685,25686,25688,25689,25690,25692,25696,25697,25700,25703,25704,25706,25707,25708,25710,25714,25715,25717,25718,25720,25721,25724,25725,25726,25728,25732,25733,25734,25736,25737,25741,25742,25743,25745,25747,25748,25751,25752,25754,25755,25757,25758,25762,25764,25765,25769,25770,25771,25773,25774,25776,25780,25782,25785,25786,25788,25789,25793,25794,25796,25797,25799,25800,25801,25803,25807,25808,25809,25812,25815,25819,25821,25823,25826,25829,25830,25832,25833,25834,25836,25842,25843,25845,25847,25848,25849,25851,25855,25856,25858,25861,25862,25864,25865,25867,25868,25870,25871,25874,25876,25878,25880,25883,25886,25887,25890,25892,25893,25897,25898,25899,25900,25902,25903,25907,25909,25911,25915,25916,25918,25920,25922,25924,25925,25926,25928,25929,25930,25933,25935,25939,25941,25943,25944,25948,25950,25954,25956,25957,25959,25960,25962,25963,25965,25967,25969,25970,25972,25973,25975,25976,25978,25979,25982,25984,25989,25990,25992,25993,25997,26000,26001,26003,26004,26007,26010,26011,26013,26015,26016,26017,26019,26020,26022,26023,26027,26028,26029,26032,26036,26037,26038,26042,26045,26046,26047,26050,26054,26057,26059,26060,26062,26063,26064,26067,26069,26070,26073,26077,26079,26082,26084,26086,26088,26089,26092,26093,26094,26096,26097,26099,26101,26105,26107,26110,26113,26114,26117,26118,26119,26123,26125,26126,26128,26129,26132,26134,26135,26137,26138,26140,26141,26142,26143,26145,26147,26148,26150,26151,26153,26154,26155,26157,26159,26162,26163,26168,26169,26170,26174,26175,26179,26181,26182,26186,26187,26188,26190,26192,26193,26195,26196,26198,26201,26203,26204,26206,\r\n26207,26208,26211,26213,26214,26216,26217,26218,26222,26225,26228,26229,26230,26234,26235,26236,26240,26242,26243,26245,26247,26250,26252,26255,26257,26258,26260,26261,26263,26266,26267,26269,26272,26273,26277,26279,26282,26283,26286,26287,26291,26294,26295,26296,26298,26301,26303,26304,26307,26310,26311,26314,26317,26318,26319,26323,26324,26325,26327,26329,26330,26332,26335,26336,26337,26338,26340,26343,26344,26346,26348,26349,26352,26353,26357,26359,26362,26363,26366,26367,26371,26372,26375,26378,26379,26380,26382,26384,26385,26387,26388,26390,26391,26393,26395,26396,26397,26400,26404,26405,26407,26408,26409,26411,26413,26417,26418,26421,26424,26425,26427,26428,26430,26432,26434,26436,26437,26440,26442,26446,26447,26449,26450,26451,26453,26455,26456,26458,26459,26460,26462,26463,26467,26468,26469,26474,26475,26477,26480,26483,26484,26485,26489,26491,26492,26493,26494,26496,26497,26500,26504,26507,26508,26510,26512,26513,26514,26515,26517,26518,26521,26522,26524,26528,26530,26534,26535,26537,26538,26540,26541,26543,26544,26547,26552,26554,26558,26559,26562,26564,26567,26570,26572,26573,26575,26576,26577,26578,26581,26582,26583,26585,26588,26590,26593,26596,26597,26600,26601,26602,26604,26607,26609,26611,26614,26618,26619,26620,26622,26627,26628,26629,26632,26633,26635,26636,26637,26639,26641,26644,26645,26646,26647,26651,26652,26654,26658,26660,26662,26663,26666,26668,26669,26670,26672,26674,26675,26677,26681,26683,26686,26687,26688,26692,26695,26696,26698,26699,26702,26703,26704,26707,26709,26710,26713,26714,26715,26719,26722,26724,26727,26729,26730,26732,26733,26737,26740,26741,26743,26744,26747,26749,26751,26754,26755,26759,26760,26761,26765,26768,26770,26771,26774,26775,26776,26778,26780,26781,26783,26784,26785,26788,26789,26791,26792,26793,26797,26800,26803,26804,26806,26808,26809,26813,26815,26818,26819,26820,26821,26823,26826,26830,26831,26833,26834,26836,26839,26840,26842,26843,26846,26848,26849,26850,26853,26854,26857,26860,26861,26863,26864,26866,26868,26870,26871,26872,26874,26876,26879,26880,26883,26888,\r\n26889,26890,26893,26896,26898,26901,26903,26904,26905,26908,26909,26910,26912,26913,26916,26917,26921,26922,26923,26926,26929,26930,26932,26933,26934,26936,26938,26942,26943,26944,26947,26949,26950,26953,26954,26957,26958,26960,26961,26964,26965,26968,26971,26972,26973,26974,26976,26978,26980,26981,26983,26985,26986,26989,26993,26994,26995,26998,27000,27003,27008,27009,27012,27014,27015,27017,27018,27021,27025,27026,27027,27028,27030,27031,27034,27035,27036,27038,27040,27043,27044,27045,27047,27048,27050,27051,27054,27056,27057,27061,27063,27065,27068,27069,27070,27072,27073,27075,27078,27079,27081,27083,27085,27088,27090,27093,27097,27098,27101,27103,27107,27108,27109,27112,27113,27114,27116,27117,27119,27120,27123,27128,27131,27132,27135,27137,27140,27143,27145,27146,27147,27148,27152,27155,27157,27160,27163,27164,27165,27166,27168,27172,27173,27175,27176,27178,27179,27181,27184,27187,27189,27190,27192,27193,27195,27197,27199,27201,27204,27206,27209,27210,27211,27213,27214,27216,27218,27221,27222,27227,27228,27229,27231,27232,27235,27236,27238,27241,27242,27243,27244,27247,27248,27250,27252,27254,27255,27257,27258,27260,27262,27263,27264,27265,27270,27272,27273,27274,27276,27277,27281,27284,27285,27287,27289,27292,27293,27294,27297,27298,27301,27302,27303,27305,27306,27307,27309,27313,27314,27316,27319,27322,27323,27324,27329,27331,27333,27334,27337,27338,27340,27341,27343,27345,27347,27349,27351,27356,27357,27362,27365,27366,27369,27370,27373,27374,27376,27377,27380,27381,27383,27385,27387,27391,27392,27394,27395,27398,27400,27401,27403,27404,27405,27406,27408,27413,27414,27416,27418,27421,27424,27425,27426,27427,27429,27430,27432,27435,27437,27438,27441,27445,27446,27447,27449,27451,27453,27454,27457,27460,27462,27466,27467,27469,27470,27471,27472,27475,27476,27478,27480,27482,27484,27485,27488,27489,27491,27492,27493,27495,27496,27500,27501,27503,27505,27506,27507,27509,27510,27511,27513,27514,27516,27520,27524,27527,27530,27531,27532,27534,27535,27539,27540,27544,27545,27546,27548,27549,27550,27553,27554,27555,\r\n27558,27560,27561,27562,27564,27568,27572,27573,27574,27578,27579,27580,27582,27583,27586,27589,27592,27593,27594,27597,27600,27603,27607,27609,27612,27613,27615,27618,27619,27622,27623,27624,27625,27629,27630,27635,27636,27637,27639,27640,27642,27643,27645,27647,27650,27652,27655,27656,27658,27660,27663,27665,27670,27674,27676,27678,27679,27681,27682,27684,27688,27690,27693,27694,27696,27698,27700,27703,27704,27706,27709,27711,27713,27714,27716,27718,27719,27720,27724,27725,27728,27729,27731,27733,27734,27735,27736,27739,27740,27742,27746,27748,27750,27751,27753,27754,27756,27757,27760,27761,27763,27764,27765,27766,27769,27770,27771,27775,27779,27780,27782,27783,27785,27788,27791,27792,27793,27795,27796,27798,27800,27801,27802,27807,27808,27812,27815,27817,27820,27823,27825,27826,27828,27829,27833,27835,27838,27839,27840,27845,27846,27849,27853,27855,27856,27859,27862,27863,27864,27868,27869,27870,27871,27874,27878,27880,27883,27886,27889,27890,27891,27895,27896,27898,27899,27900,27901,27904,27906,27907,27909,27911,27914,27915,27916,27919,27920,27922,27923,27925,27926,27927,27930,27931,27933,27937,27940,27941,27942,27943,27947,27948,27950,27951,27954,27958,27959,27961,27962,27963,27967,27968,27969,27970,27973,27975,27977,27978,27980,27981,27982,27984,27986,27989,27991,27993,27995,27996,27997,27999,28001,28002,28005,28007,28009,28011,28012,28014,28016,28019,28021,28025,28027,28030,28031,28034,28035,28036,28038,28041,28043,28044,28045,28047,28048,28050,28051,28053,28054,28056,28059,28061,28064,28065,28067,28068,28071,28073,28074,28077,28080,28084,28085,28086,28088,28090,28091,28094,28095,28097,28098,28100,28101,28106,28107,28112,28113,28115,28118,28119,28121,28123,28124,28126,28130,28131,28132,28134,28139,28140,28141,28143,28144,28146,28148,28151,28153,28154,28156,28157,28160,28161,28163,28166,28169,28171,28172,28173,28175,28176,28179,28183,28184,28187,28188,28189,28191,28195,28196,28199,28200,28202,28203,28206,28208,28212,28213,28216,28219,28222,28224,28226,28227,28228,28232,28233,28237,28240,28242,28244,28245,28247,\r\n28249,28250,28251,28253,28254,28256,28257,28259,28262,28263,28265,28267,28268,28269,28270,28274,28276,28277,28278,28279,28282,28283,28285,28289,28291,28292,28294,28295,28296,28299,28302,28304,28305,28306,28308,28310,28311,28312,28316,28317,28318,28320,28321,28323,28324,28326,28328,28329,28331,28332,28335,28336,28338,28345,28346,28349,28351,28352,28354,28356,28358,28359,28361,28362,28367,28368,28369,28371,28374,28377,28379,28380,28384,28386,28389,28394,28397,28398,28400,28401,28402,28404,28407,28411,28414,28415,28416,28421,28423,28424,28426,28427,28429,28430,28431,28434,28435,28439,28442,28445,28447,28450,28451,28453,28455,28458,28460,28462,28465,28467,28469,28470,28474,28475,28477,28478,28479,28480,28483,28486,28489,28490,28491,28492,28495,28497,28500,28501,28505,28506,28507,28509,28510,28514,28516,28519,28520,28522,28524,28527,28528,28530,28531,28534,28535,28536,28541,28543,28544,28546,28547,28548,28551,28552,28554,28556,28557,28558,28560,28561,28563,28564,28567,28569,28570,28573,28575,28576,28579,28580,28582,28584,28586,28589,28591,28592,28594,28598,28599,28601,28602,28606,28607,28608,28609,28611,28612,28616,28617,28618,28620,28622,28623,28625,28627,28628,28629,28630,28634,28635,28636,28638,28639,28642,28645,28648,28649,28651,28652,28653,28657,28658,28659,28663,28664,28666,28667,28668,28672,28674,28675,28678,28680,28683,28684,28686,28690,28692,28697,28698,28700,28701,28703,28704,28707,28708,28711,28714,28715,28718,28719,28721,28724,28727,28729,28730,28731,28732,28735,28738,28739,28740,28743,28744,28748,28749,28754,28757,28760,28762,28764,28765,28769,28772,28773,28776,28777,28779,28780,28782,28785,28787,28788,28791,28792,28794,28795,28797,28801,28802,28803,28805,28810,28811,28812,28815,28816,28818,28820,28821,28822,28824,28826,28828,28831,28832,28833,28835,28836,28839,28840,28843,28844,28845,28846,28849,28850,28852,28855,28857,28861,28863,28864,28867,28868,28870,28872,28873,28875,28876,28878,28879,28881,28883,28885,28886,28887,28888,28892,28894,28895,28898,28901,28903,28906,28908,28911,28912,28916,28918,28920,28922,\r\n28923,28926,28931,28932,28933,28936,28937,28940,28943,28944,28949,28952,28954,28956,28957,28959,28961,28962,28966,28967,28968,28971,28972,28974,28976,28977,28980,28981,28983,28984,28987,28989,28991,28993,28995,28999,29001,29003,29005,29006,29008,29012,29013,29015,29018,29021,29023,29024,29025,29026,29029,29031,29032,29035,29038,29039,29040,29043,29044,29047,29050,29051,29053,29054,29056,29058,29060,29062,29066,29067,29070,29071,29074,29076,29077,29079,29080,29083,29084,29085,29087,29089,29092,29094,29095,29098,29100,29101,29103,29104,29107,29108,29109,29111,29112,29113,29117,29118,29119,29122,29123,29124,29126,29127,29128,29132,29134,29137,29138,29139,29142,29145,29147,29148,29154,29158,29161,29165,29167,29168,29169,29171,29173,29174,29175,29176,29180,29182,29183,29185,29187,29189,29191,29195,29196,29198,29199,29201,29202,29203,29207,29209,29210,29213,29215,29216,29218,29221,29225,29227,29228,29230,29233,29234,29237,29238,29240,29242,29246,29247,29249,29250,29256,29257,29259,29260,29262,29263,29265,29266,29269,29271,29272,29274,29276,29277,29279,29280,29282,29283,29286,29287,29290,29291,29292,29293,29297,29298,29303,29304,29305,29307,29308,29311,29312,29314,29315,29318,29321,29324,29325,29326,29329,29332,29333,29335,29338,29339,29340,29341,29343,29345,29347,29348,29350,29353,29354,29356,29357,29358,29359,29362,29364,29365,29368,29370,29371,29373,29377,29378,29381,29384,29386,29389,29392,29393,29394,29397,29401,29405,29407,29410,29414,29415,29417,29419,29423,29424,29426,29427,29428,29432,29433,29434,29436,29437,29439,29441,29442,29444,29445,29447,29448,29452,29454,29457,29459,29461,29462,29465,29467,29469,29471,29474,29475,29476,29479,29482,29486,29487,29488,29492,29495,29496,29498,29499,29500,29503,29505,29507,29508,29509,29511,29513,29516,29518,29519,29520,29522,29523,29524,29526,29527,29530,29533,29536,29538,29540,29541,29543,29545,29546,29549,29550,29554,29555,29557,29558,29560,29562,29566,29569,29570,29571,29573,29574,29576,29578,29579,29582,29583,29584,29586,29587,29589,29592,29594,29599,29600,29602,29603,29606,\r\n29609,29612,29615,29616,29619,29620,29623,29626,29627,29629,29630,29632,29635,29637,29638,29642,29644,29645,29647,29648,29650,29652,29653,29656,29657,29659,29662,29664,29665,29667,29668,29671,29672,29674,29678,29681,29683,29684,29687,29689,29690,29691,29692,29695,29697,29700,29704,29707,29709,29710,29713,29714,29715,29718,29720,29721,29722,29724,29725,29727,29728,29732,29734,29736,29738,29740,29743,29744,29745,29748,29749,29751,29754,29756,29758,29759,29761,29763,29764,29770,29773,29774,29775,29777,29779,29780,29782,29783,29784,29787,29788,29790,29794,29795,29801,29802,29804,29806,29809,29811,29814,29816,29817,29818,29821,29824,29825,29827,29829,29831,29832,29835,29836,29840,29842,29843,29845,29847,29848,29850,29851,29853,29854,29856,29857,29859,29862,29864,29866,29867,29868,29869,29872,29874,29876,29877,29878,29880,29885,29887,29889,29890,29894,29895,29896,29898,29899,29902,29904,29907,29908,29911,29913,29915,29917,29918,29919,29920,29923,29924,29926,29929,29932,29934,29935,29938,29942,29943,29944,29947,29949,29950,29953,29954,29955,29957,29960,29961,29963,29965,29967,29971,29973,29975,29976,29978,29979,29980,29983,29984,29986,29990,29991,29993,29995,29997,29998,30002,30005,30006,30009,30011,30012,30016,30017,30018,30020,30022,30025,30026,30029,30031,30033,30034,30038,30039,30040,30043,30046,30047,30049,30051,30055,30056,30057,30060,30063,30064,30066,30069,30071,30072,30076,30080,30081,30083,30085,30088,30092,30093,30095,30096,30098,30100,30101,30104,30105,30109,30112,30116,30118,30119,30120,30121,30124,30125,30126,30130,30131,30132,30134,30137,30140,30143,30144,30146,30148,30150,30151,30155,30157,30158,30160,30163,30164,30167,30168,30170,30173,30175,30176,30177,30178,30181,30184,30185,30187,30190,30192,30194,30195,30196,30199,30200,30202,30203,30205,30207,30208,30210,30211,30213,30215,30217,30218,30219,30221,30222,30224,30225,30229,30233,30234,30236,30237,30239,30240,30242,30244,30245,30246,30249,30251,30253,30257,30260,30263,30264,30266,30271,30274,30275,30276,30277,30281,30283,30284,30285,30290,30291,30295,30298,\r\n30299,30301,30302,30304,30305,30306,30307,30311,30313,30314,30315,30317,30318,30319,30323,30324,30325,30329,30332,30334,30335,30337,30339,30341,30343,30344,30346,30347,30348,30350,30352,30353,30355,30356,30358,30362,30364,30367,30369,30371,30372,30374,30375,30376,30379,30381,30383,30384,30385,30388,30390,30392,30393,30394,30396,30397,30399,30403,30404,30406,30407,30408,30409,30412,30414,30415,30417,30418,30420,30422,30425,30426,30431,30433,30436,30437,30438,30440,30441,30443,30444,30447,30451,30452,30455,30456,30458,30459,30464,30465,30467,30468,30469,30471,30475,30477,30478,30480,30481,30484,30485,30486,30487,30489,30492,30493,30495,30496,30500,30501,30502,30506,30508,30509,30514,30515,30517,30518,30521,30522,30525,30527,30529,30530,30532,30533,30534,30535,30539,30540,30542,30543,30544,30546,30547,30551,30552,30554,30555,30556,30560,30562,30563,30564,30566,30570,30574,30575,30577,30578,30579,30581,30584,30586,30588,30593,30595,30596,30599,30600,30603,30606,30609,30610,30612,30617,30618,30620,30622,30623,30624,30626,30627,30632,30634,30635,30636,30637,30639,30642,30644,30646,30647,30648,30650,30652,30653,30654,30659,30660,30664,30667,30669,30671,30673,30674,30676,30677,30678,30681,30685,30687,30689,30691,30693,30697,30699,30701,30702,30703,30705,30708,30709,30711,30713,30714,30716,30719,30720,30723,30725,30726,30728,30729,30731,30732,30735,30737,30738,30739,30743,30745,30748,30749,30750,30751,30753,30754,30757,30758,30759,30764,30767,30770,30771,30772,30774,30776,30777,30778,30780,30782,30783,30785,30786,30790,30792,30793,30796,30797,30800,30803,30804,30807,30808,30811,30813,30814,30816,30823,30826,30828,30832,30833,30834,30837,30840,30842,30843,30844,30846,30848,30851,30852,30855,30857,30858,30861,30862,30864,30866,30869,30870,30872,30873,30878,30879,30880,30883,30884,30885,30887,30889,30890,30891,30892,30895,30896,30897,30898,30900,30902,30903,30907,30909,30912,30913,30916,30918,30920,30921,30922,30924,30925,30928,30931,30932,30935,30936,30938,30939,30942,30943,30948,30949,30951,30953,30954,30957,30959,30960,30964,\r\n30967,30968,30969,30971,30974,30977,30980,30983,30984,30986,30988,30989,30991,30992,30993,30994,30998,31000,31001,31002,31006,31007,31008,31011,31012,31014,31016,31019,31022,31023,31024,31026,31028,31029,31033,31034,31037,31038,31040,31041,31042,31045,31046,31047,31051,31054,31056,31060,31061,31062,31065,31066,31069,31070,31072,31073,31074,31075,31079,31084,31085,31087,31088,31091,31094,31095,31097,31098,31101,31102,31105,31107,31109,31111,31112,31113,31115,31117,31120,31124,31125,31127,31128,31129,31132,31133,31134,31136,31138,31139,31140,31142,31143,31145,31147,31150,31153,31156,31157,31158,31159,31161,31162,31166,31168,31169,31170,31171,31176,31177,31179,31182,31184,31185,31189,31192,31193,31195,31196,31197,31198,31202,31204,31207,31208,31210,31211,31212,31213,31216,31217,31219,31221,31224,31226,31228,31229,31230,31232,31234,31237,31241,31242,31244,31246,31248,31250,31253,31254,31255,31258,31259,31260,31261,31263,31265,31267,31270,31272,31274,31275,31277,31279,31281,31283,31284,31285,31288,31292,31294,31295,31296,31297,31301,31302,31305,31307,31310,31311,31315,31316,31317,31320,31322,31324,31325,31327,31329,31332,31334,31335,31338,31340,31342,31343,31344,31346,31348,31349,31350,31353,31358,31359,31360,31362,31366,31368,31370,31371,31373,31375,31376,31378,31379,31381,31383,31384,31386,31388,31390,31391,31394,31395,31400,31402,31403,31404,31406,31408,31411,31412,31414,31415,31418,31421,31422,31423,31426,31427,31428,31430,31431,31435,31436,31437,31439,31440,31441,31444,31446,31449,31450,31454,31455,31460,31461,31466,31469,31471,31472,31473,31474,31479,31482,31483,31485,31489,31492,31493,31495,31496,31498,31501,31504,31505,31508,31509,31510,31514,31516,31517,31520,31521,31523,31524,31528,31531,31532,31533,31534,31537,31538,31539,31541,31543,31544,31547,31550,31552,31554,31558,31561,31562,31563,31564,31568,31571,31573,31574,31576,31579,31580,31582,31583,31584,31588,31589,31592,31593,31594,31596,31598,31600,31601,31603,31605,31609,31612,31613,31615,31616,31617,31619,31620,31622,31624,31626,31630,31631,31632,31634,31636,\r\n31638,31643,31646,31648,31649,31650,31654,31655,31656,31658,31659,31663,31664,31665,31666,31668,31673,31674,31678,31680,31681,31685,31688,31689,31691,31692,31696,31699,31700,31703,31705,31707,31710,31713,31714,31716,31717,31719,31721,31722,31724,31726,31727,31728,31729,31731,31732,31735,31736,31737,31738,31741,31742,31743,31746,31748,31749,31752,31753,31756,31760,31761,31763,31765,31766,31767,31771,31772,31773,31777,31778,31779,31781,31782,31786,31787,31788,31791,31793,31794,31796,31799,31801,31802,31805,31807,31811,31813,31815,31818,31819,31820,31821,31823,31825,31826,31828,31829,31830,31831,31833,31834,31837,31838,31840,31841,31842,31843,31845,31847,31848,31849,31851,31852,31854,31858,31859,31861,31864,31865,31867,31868,31869,31871,31874,31875,31876,31880,31881,31882,31884,31886,31888,31889,31891,31892,31893,31895,31898,31900,31901,31903,31907,31908,31910,31912,31913,31915,31916,31917,31918,31920,31921,31923,31924,31926,31930,31931,31932,31933,31937,31939,31940,31942,31943,31944,31948,31949,31952,31954,31955,31956,31957,31961,31963,31964,31965,31967,31970,31971,31972,31975,31978,31980,31982,31984,31987,31988,31989,31993,31994,31995,31996,31999,32000,32002,32003,32006,32009,32011,32012,32015,32016,32017,32020,32021,32024,32027,32028,32030,32031,32033,32034,32035,32038,32039,32040,32041,32043,32045,32049,32050,32054,32055,32057,32058,32060,32061,32062,32066,32068,32069,32071,32073,32075,32076,32078,32079,32081,32084,32085,32089,32091,32092,32096,32098,32099,32101,32102,32105,32107,32108,32110,32111,32113,32114,32115,32119,32121,32122,32126,32127,32128,32130,32133,32134,32137,32138,32141,32143,32146,32147,32150,32151,32152,32156,32159,32161,32162,32163,32165,32167,32169,32170,32173,32176,32177,32179,32183,32185,32189,32191,32193,32195,32197,32199,32200,32202,32204,32205,32206,32208,32209,32211,32212,32215,32216,32218,32220,32222,32224,32225,32226,32227,32231,32232,32234,32236,32237,32238,32240,32243,32244,32246,32249,32251,32252,32254,32257,32260,32261,32262,32264,32266,32267,32270,32271,32275,32276,32277,32278,32280,\r\n32282,32283,32285,32286,32290,32291,32292,32297,32300,32301,32303,32304,32305,32308,32311,32313,32316,32317,32320,32322,32323,32326,32327,32329,32330,32333,32334,32336,32339,32341,32342,32344,32345,32346,32347,32349,32353,32354,32355,32357,32359,32361,32366,32367,32369,32370,32371,32373,32376,32377,32379,32380,32382,32385,32387,32389,32391,32392,32394,32396,32397,32398,32400,32403,32405,32406,32408,32410,32411,32413,32416,32418,32419,32421,32424,32426,32428,32429,32431,32433,32438,32439,32441,32443,32446,32447,32448,32449,32451,32452,32456,32458,32459,32460,32461,32463,32465,32466,32468,32469,32473,32474,32475,32476,32478,32479,32483,32484,32485,32488,32490,32491,32494,32496,32498,32501,32503,32504,32505,32510,32512,32514,32517,32519,32520,32525,32526,32530,32531,32533,32534,32535,32538,32540,32543,32544,32545,32548,32549,32550,32554,32555,32556,32558,32560,32561,32564,32565,32567,32569,32572,32574,32576,32577,32578,32582,32583,32586,32588,32590,32591,32592,32593,32595,32596,32598,32602,32604,32608,32611,32613,32615,32617,32618,32619,32620,32622,32623,32625,32627,32629,32630,32631,32634,32635,32638,32639,32640,32642,32643,32645,32646,32649,32650,32652,32654,32655,32657,32658,32659,32661,32662,32665,32666,32667,32668,32670,32673,32674,32676,32678,32680,32682,32687,32688,32693,32695,32696,32698,32700,32701,32703,32704,32706,32707,32709,32710,32713,32714,32715,32716,32720,32723,32725,32726,32727,32728,32730,32731,32733,32735,32739,32740,32742,32745,32746,32749,32753,32754,32756,32757,32758,32762,32764,32765,32767,32768,32770,32772,32774,32776,32780,32781,32785,32786,32787,32789,32792,32794,32795,32798,32800,32803,32804,32805,32806,32809,32811,32812,32815,32816,32818,32820,32823,32827,32828,32829,32831,32833,32835,32836,32838,32840,32843,32844,32848,32849,32850,32854,32856,32859,32860,32862,32864,32866,32870,32871,32872,32875,32876,32877,32878,32882,32883,32887,32892,32897,32899,32901,32903,32905,32908,32909,32911,32913,32914,32916,32918,32919,32921,32922,32924,32925,32930,32931,32932,32935,32936,32939,32940,32942,32944,\r\n32946,32947,32951,32954,32955,32956,32958,32959,32962,32966,32967,32968,32970,32971,32973,32976,32977,32979,32980,32982,32984,32986,32987,32988,32989,32992,32995,32996,32998,32999,33000,33001,33003,33005,33006,33007,33009,33011,33013,33015,33019,33020,33023,33025,33026,33027,33030,33032,33033,33034,33037,33039,33040,33044,33045,33048,33052,33054,33056,33058,33059,33060,33063,33067,33070,33071,33072,33077,33080,33081,33083,33084,33085,33087,33090,33093,33094,33097,33099,33100,33102,33103,33107,33113,33115,33116,33117,33118,33121,33124,33125,33127,33128,33131,33133,33135,33136,33138,33141,33142,33144,33148,33149,33150,33155,33160,33161,33164,33165,33167,33169,33170,33171,33174,33179,33180,33182,33184,33187,33188,33191,33192,33193,33195,33197,33198,33201,33203,33204,33206,33207,33209,33216,33217,33219,33220,33222,33223,33226,33227,33230,33233,33235,33236,33237,33239,33240,33241,33244,33246,33247,33250,33251,33253,33255,33259,33260,33261,33263,33264,33266,33268,33270,33272,33274,33277,33278,33279,33283,33284,33286,33288,33290,33291,33294,33297,33298,33300,33301,33304,33306,33308,33309,33310,33312,33315,33317,33318,33320,33322,33323,33324,33326,33327,33329,33330,33331,33333,33335,33338,33339,33341,33342,33344,33345,33347,33349,33350,33352,33354,33359,33360,33365,33368,33370,33371,33373,33374,33375,33380,33383,33386,33388,33390,33392,33393,33397,33398,33399,33402,33405,33407,33408,33412,33413,33415,33416,33418,33420,33422,33424,33425,33427,33430,33431,33432,33433,33436,33437,33438,33440,33441,33443,33446,33448,33449,33451,33455,33457,33459,33461,33463,33464,33467,33468,33472,33476,33478,33479,33482,33483,33488,33491,33492,33497,33500,33501,33503,33505,33508,33509,33511,33512,33514,33517,33520,33521,33522,33525,33527,33530,33531,33532,33535,33536,33538,33541,33542,33545,33546,33547,33549,33553,33554,33555,33557,33559,33560,33562,33563,33564,33566,33567,33569,33572,33574,33576,33581,33582,33583,33585,33589,33592,33593,33594,33599,33600,33601,33605,33606,33609,33611,33612,33614,33619,33620,33622,33623,33624,33625,33627,33628,\r\n33630,33631,33634,33636,33638,33639,33641,33643,33644,33647,33648,33653,33654,33656,33657,33661,33663,33668,33670,33671,33673,33677,33678,33680,33681,33682,33686,33688,33690,33692,33695,33696,33698,33699,33702,33705,33706,33709,33710,33711,33713,33714,33716,33718,33719,33721,33723,33725,33728,33729,33732,33733,33737,33739,33741,33743,33744,33745,33747,33748,33754,33758,33759,33761,33762,33767,33769,33773,33774,33775,33779,33781,33785,33786,33788,33789,33792,33793,33799,33800,33802,33803,33804,33806,33808,33809,33810,33812,33815,33816,33817,33819,33822,33824,33825,33827,33828,33831,33832,33834,33836,33837,33839,33841,33842,33844,33845,33848,33851,33854,33856,33857,33858,33860,33861,33864,33869,33871,33875,33876,33878,33879,33880,33883,33884,33886,33887,33889,33892,33893,33895,33899,33900,33902,33903,33904,33908,33909,33910,33912,33914,33915,33917,33920,33922,33925,33927,33931,33932,33934,33937,33938,33941,33943,33946,33947,33948,33950,33953,33956,33958,33962,33963,33967,33968,33969,33971,33973,33974,33976,33977,33978,33979,33982,33984,33986,33988,33989,33990,33992,33994,33995,33998,33999,34000,34003,34006,34008,34012,34014,34015,34018,34020,34022,34024,34027,34031,34033,34034,34035,34040,34041,34043,34044,34045,34047,34049,34052,34053,34054,34056,34058,34060,34061,34062,34063,34067,34068,34070,34073,34075,34076,34079,34081,34082,34083,34085,34088,34090,34092,34094,34097,34098,34100,34102,34104,34106,34107,34109,34110,34113,34117,34119,34120,34123,34124,34127,34128,34131,34133,34135,34136,34138,34140,34141,34144,34145,34147,34148,34149,34153,34154,34156,34157,34158,34160,34161,34163,34164,34166,34167,34169,34171,34173,34175,34178,34179,34182,34183,34185,34188,34191,34194,34196,34198,34202,34204,34205,34207,34208,34209,34211,34212,34214,34216,34218,34220,34223,34224,34226,34229,34230,34231,34233,34235,34236,34241,34242,34244,34245,34247,34249,34250,34252,34253,34255,34258,34259,34261,34262,34263,34266,34267,34269,34271,34272,34273,34277,34278,34279,34282,34283,34286,34288,34290,34291,34295,34296,34297,34301,34304,34307,\r\n34309,34311,34315,34316,34317,34318,34320,34323,34325,34328,34329,34331,34332,34335,34337,34340,34341,34346,34348,34349,34350,34352,34355,34356,34357,34361,34364,34367,34368,34370,34372,34373,34374,34379,34380,34381,34384,34385,34386,34388,34389,34390,34392,34397,34399,34401,34402,34405,34407,34409,34411,34413,34415,34416,34417,34421,34422,34425,34426,34428,34429,34432,34436,34439,34441,34442,34444,34445,34447,34449,34451,34453,34454,34456,34457,34462,34464,34465,34469,34470,34471,34473,34476,34478,34481,34483,34484,34486,34488,34489,34491,34492,34494,34495,34497,34499,34501,34505,34506,34507,34510,34513,34514,34515,34517,34518,34522,34523,34524,34525,34528,34531,34532,34533,34537,34541,34542,34544,34547,34549,34550,34552,34554,34556,34557,34558,34560,34562,34565,34566,34568,34569,34573,34574,34575,34577,34579,34581,34582,34585,34587,34589,34590,34592,34596,34598,34599,34602,34604,34605,34609,34610,34611,34613,34614,34618,34619,34621,34622,34623,34624,34628,34629,34632,34633,34635,34636,34640,34641,34643,34645,34648,34649,34651,34653,34655,34658,34659,34660,34663,34666,34667,34668,34669,34671,34675,34682,34683,34685,34688,34689,34690,34692,34693,34695,34696,34698,34700,34702,34703,34704,34709,34711,34712,34714,34715,34716,34719,34722,34723,34726,34728,34731,34733,34734,34736,34738,34740,34742,34743,34745,34746,34749,34751,34753,34755,34756,34760,34763,34765,34767,34768,34770,34771,34775,34777,34779,34780,34784,34785,34787,34789,34790,34793,34794,34795,34798,34799,34800,34803,34806,34809,34810,34812,34814,34817,34820,34821,34823,34825,34826,34829,34830,34832,34833,34834,34837,34838,34839,34840,34843,34845,34848,34851,34852,34854,34856,34859,34861,34862,34865,34866,34867,34870,34871,34873,34875,34878,34880,34883,34885,34886,34888,34889,34892,34894,34897,34899,34901,34902,34905,34907,34908,34911,34913,34914,34915,34919,34922,34924,34925,34926,34927,34929,34932,34933,34935,34937,34938,34942,34943,34945,34947,34949,34952,34954,34955,34957,34958,34959,34964,34965,34966,34970,34971,34972,34975,34978,34980,34983,34985,34986,\r\n34988,34991,34994,34995,34996,34998,35001,35005,35006,35008,35009,35010,35013,35014,35016,35017,35019,35021,35022,35027,35028,35030,35032,35036,35039,35041,35042,35043,35045,35046,35047,35049,35051,35052,35054,35056,35059,35060,35062,35064,35065,35069,35072,35073,35075,35076,35077,35080,35082,35083,35085,35087,35089,35094,35097,35099,35101,35104,35106,35108,35109,35111,35113,35114,35117,35119,35120,35121,35122,35126,35127,35129,35131,35132,35134,35137,35138,35139,35141,35142,35144,35146,35148,35149,35153,35154,35155,35158,35159,35160,35162,35164,35167,35168,35170,35171,35173,35174,35175,35178,35180,35183,35184,35185,35188,35189,35190,35192,35194,35195,35196,35201,35203,35206,35207,35209,35211,35214,35216,35217,35218,35220,35221,35223,35226,35228,35233,35237,35239,35240,35241,35242,35246,35247,35248,35250,35255,35257,35258,35260,35261,35262,35266,35267,35268,35270,35271,35275,35276,35278,35279,35282,35285,35286,35290,35294,35295,35297,35298,35300,35301,35302,35306,35308,35309,35310,35312,35313,35316,35317,35321,35324,35326,35328,35332,35333,35335,35336,35338,35340,35341,35344,35348,35350,35352,35355,35356,35358,35362,35363,35365,35366,35368,35371,35374,35377,35379,35381,35382,35384,35386,35387,35388,35391,35393,35396,35399,35400,35401,35403,35405,35407,35408,35409,35411,35412,35415,35416,35419,35420,35423,35424,35428,35430,35431,35434,35435,35438,35441,35443,35447,35448,35450,35451,35453,35454,35456,35457,35458,35461,35462,35465,35468,35470,35471,35472,35474,35475,35478,35480,35482,35483,35486,35487,35490,35492,35494,35495,35497,35500,35503,35504,35505,35507,35508,35513,35514,35516,35517,35519,35521,35522,35524,35527,35528,35529,35533,35534,35535,35540,35541,35544,35546,35547,35548,35551,35552,35555,35558,35560,35562,35564,35566,35568,35570,35572,35573,35575,35577,35579,35582,35583,35587,35588,35589,35592,35596,35598,35599,35602,35603,35604,35605,35608,35611,35612,35614,35618,35619,35622,35624,35625,35628,35629,35633,35634,35639,35640,35642,35644,35648,35649,35654,35655,35657,35659,35660,35663,35664,35667,35669,35672,\r\n35673,35674,35676,35679,35681,35683,35684,35686,35687,35688,35689,35691,35696,35698,35699,35701,35702,35703,35705,35708,35709,35710,35712,35715,35719,35721,35723,35725,35727,35730,35732,35733,35734,35736,35737,35740,35742,35744,35745,35748,35750,35751,35752,35754,35755,35757,35759,35760,35764,35767,35769,35771,35773,35775,35778,35779,35782,35783,35785,35786,35788,35790,35791,35793,35795,35796,35798,35800,35804,35805,35807,35808,35810,35811,35814,35815,35819,35822,35824,35825,35826,35830,35832,35837,35838,35840,35841,35846,35848,35849,35850,35851,35853,35854,35857,35860,35861,35862,35863,35865,35870,35872,35873,35874,35879,35882,35884,35885,35886,35887,35889,35892,35893,35897,35898,35899,35901,35902,35906,35907,35909,35910,35913,35916,35917,35921,35924,35925,35928,35930,35931,35932,35936,35937,35939,35940,35942,35945,35947,35948,35949,35953,35956,35957,35959,35960,35962,35963,35966,35967,35968,35971,35972,35974,35977,35978,35979,35982,35984,35985,35989,35991,35993,35996,35998,35999,36001,36002,36005,36006,36008,36010,36011,36012,36014,36015,36018,36020,36023,36024,36026,36027,36028,36030,36033,36034,36037,36041,36045,36047,36048,36049,36051,36052,36056,36057,36061,36062,36064,36066,36067,36069,36071,36073,36074,36076,36077,36078,36080,36081,36083,36086,36087,36089,36091,36093,36096,36099,36102,36103,36106,36107,36108,36109,36111,36113,36115,36118,36120,36122,36124,36127,36129,36130,36134,36135,36136,36138,36141,36142,36144,36151,36152,36153,36156,36158,36160,36162,36164,36166,36167,36172,36173,36174,36179,36181,36184,36186,36188,36189,36190,36192,36195,36196,36199,36202,36203,36205,36206,36208,36212,36215,36217,36218,36220,36221,36222,36224,36225,36226,36229,36231,36232,36235,36237,36239,36240,36242,36243,36246,36248,36250,36251,36254,36256,36257,36258,36259,36262,36266,36269,36270,36274,36276,36279,36281,36284,36287,36289,36291,36293,36294,36296,36299,36301,36302,36303,36305,36307,36309,36310,36313,36314,36316,36318,36320,36321,36322,36325,36326,36327,36332,36334,36335,36337,36338,36341,36342,36344,36347,36348,36350,\r\n36352,36355,36356,36357,36358,36361,36363,36364,36367,36369,36370,36372,36376,36379,36380,36382,36383,36385,36386,36389,36392,36393,36398,36399,36401,36402,36405,36407,36408,36410,36412,36414,36418,36419,36422,36424,36425,36426,36427,36429,36431,36433,36434,36435,36439,36440,36443,36444,36445,36449,36450,36457,36458,36459,36461,36462,36467,36468,36470,36471,36473,36475,36478,36479,36482,36485,36486,36487,36490,36491,36493,36495,36496,36498,36500,36501,36502,36505,36506,36509,36510,36511,36513,36518,36519,36523,36524,36525,36526,36530,36532,36535,36538,36540,36541,36543,36545,36546,36547,36551,36552,36553,36556,36559,36562,36563,36565,36567,36569,36572,36574,36575,36576,36578,36579,36580,36583,36586,36587,36589,36592,36593,36595,36598,36600,36602,36604,36606,36610,36612,36613,36615,36617,36618,36622,36625,36626,36627,36628,36631,36632,36633,36634,36637,36639,36640,36643,36644,36646,36650,36652,36653,36657,36658,36660,36661,36665,36667,36668,36671,36673,36674,36676,36677,36680,36681,36683,36684,36686,36688,36691,36692,36693,36695,36698,36699,36701,36702,36706,36707,36709,36710,36713,36716,36717,36718,36720,36722,36724,36727,36729,36731,36733,36735,36736,36738,36739,36743,36746,36747,36750,36751,36754,36755,36758,36761,36762,36763,36766,36767,36769,36770,36771,36775,36778,36782,36783,36784,36786,36787,36789,36791,36792,36794,36796,36797,36799,36802,36804,36806,36808,36811,36812,36814,36816,36817,36819,36820,36822,36825,36827,36830,36831,36832,36834,36836,36838,36842,36843,36847,36848,36849,36851,36852,36854,36855,36858,36860,36863,36865,36866,36869,36870,36872,36873,36876,36878,36880,36881,36884,36885,36886,36889,36890,36892,36893,36895,36899,36902,36905,36906,36907,36909,36911,36913,36915,36918,36919,36923,36924,36926,36927,36928,36931,36934,36935,36938,36940,36943,36947,36949,36951,36954,36955,36957,36959,36962,36963,36967,36968,36969,36971,36972,36975,36976,36980,36981,36982,36984,36986,36987,36988,36990,36993,36996,37000,37001,37002,37004,37006,37007,37009,37012,37013,37014,37015,37017,37019,37022,37023,37024,37026,\r\n37028,37030,37031,37033,37036,37037,37039,37043,37045,37048,37051,37052,37054,37055,37056,37057,37059,37061,37064,37065,37066,37068,37071,37073,37076,37079,37081,37084,37085,37086,37088,37089,37091,37092,37095,37097,37098,37101,37102,37104,37106,37107,37109,37110,37111,37113,37114,37117,37118,37120,37122,37125,37126,37129,37131,37133,37134,37136,37138,37141,37143,37146,37147,37150,37151,37152,37156,37157,37158,37159,37161,37162,37164,37165,37168,37169,37170,37171,37173,37177,37181,37182,37183,37185,37186,37188,37189,37192,37193,37194,37196,37197,37200,37203,37206,37207,37211,37212,37215,37218,37220,37222,37224,37227,37228,37230,37234,37237,37238,37239,37240,37244,37247,37248,37249,37252,37253,37254,37258,37259,37260,37262,37265,37266,37268,37269,37270,37272,37274,37275,37278,37280,37282,37284,37287,37292,37297,37298,37300,37301,37302,37306,37307,37308,37309,37311,37314,37315,37319,37320,37321,37323,37324,37326,37327,37329,37330,37332,37335,37340,37341,37343,37344,37349,37350,37351,37353,37354,37357,37358,37359,37363,37365,37367,37368,37372,37373,37375,37378,37380,37384,37385,37387,37390,37391,37392,37394,37396,37399,37401,37404,37406,37408,37409,37410,37413,37415,37418,37420,37421,37422,37424,37425,37430,37433,37435,37436,37438,37440,37441,37444,37446,37449,37453,37456,37457,37458,37459,37461,37463,37466,37467,37471,37473,37475,37477,37478,37481,37482,37484,37485,37489,37492,37493,37495,37496,37498,37500,37501,37504,37505,37508,37510,37513,37517,37518,37520,37521,37522,37524,37525,37528,37531,37532,37535,37538,37539,37544,37545,37547,37548,37553,37555,37559,37561,37562,37564,37565,37566,37568,37569,37571,37572,37575,37576,37578,37580,37582,37583,37584,37586,37590,37594,37595,37597,37598,37600,37601,37604,37605,37607,37608,37609,37613,37614,37616,37618,37621,37622,37624,37625,37626,37629,37633,37634,37635,37639,37641,37643,37644,37645,37647,37648,37650,37655,37656,37657,37659,37661,37662,37664,37667,37669,37670,37671,37673,37674,37676,37677,37678,37680,37681,37683,37691,37692,37696,37697,37699,37700,37701,37702,37704,\r\n37707,37709,37710,37713,37716,37717,37719,37720,37722,37723,37725,37729,37730,37731,37734,37735,37739,37740,37741,37743,37744,37746,37750,37751,37752,37753,37757,37758,37759,37761,37764,37767,37768,37770,37772,37774,37776,37778,37781,37784,37787,37788,37790,37791,37794,37796,37798,37799,37801,37802,37805,37807,37809,37810,37812,37815,37816,37820,37821,37823,37826,37827,37830,37834,37836,37837,37839,37840,37842,37845,37846,37848,37849,37853,37854,37855,37857,37858,37862,37864,37865,37866,37870,37872,37874,37877,37880,37883,37884,37885,37888,37889,37891,37894,37895,37896,37900,37902,37903,37906,37908,37911,37912,37915,37916,37918,37920,37921,37923,37924,37926,37929,37931,37933,37934,37937,37940,37942,37946,37948,37951,37954,37955,37957,37958,37959,37962,37964,37966,37967,37968,37971,37973,37974,37976,37978,37979,37981,37984,37985,37987,37989,37991,37992,37993,37995,37999,38000,38002,38003,38004,38007,38009,38012,38013,38014,38017,38018,38019,38021,38023,38025,38027,38029,38031,38035,38036,38037,38039,38040,38043,38044,38046,38047,38049,38052,38055,38057,38058,38059,38061,38062,38064,38065,38067,38068,38070,38072,38074,38075,38076,38080,38081,38084,38085,38089,38090,38091,38092,38094,38099,38102,38103,38105,38106,38109,38110,38112,38113,38117,38119,38120,38121,38122,38126,38128,38130,38135,38137,38138,38141,38143,38144,38147,38150,38151,38152,38155,38158,38159,38160,38164,38166,38167,38169,38172,38173,38176,38178,38181,38183,38184,38185,38187,38192,38193,38195,38196,38197,38199,38202,38205,38206,38208,38209,38212,38214,38215,38218,38221,38224,38225,38228,38230,38233,38234,38237,38238,38241,38243,38245,38246,38247,38249,38252,38254,38255,38258,38259,38262,38263,38265,38267,38268,38269,38271,38274,38279,38281,38282,38284,38287,38290,38291,38292,38293,38295,38297,38300,38302,38303,38305,38309,38312,38313,38314,38316,38318,38319,38323,38325,38327,38330,38331,38334,38335,38337,38338,38340,38341,38343,38345,38347,38349,38350,38352,38355,38357,38358,38362,38364,38366,38369,38370,38373,38374,38376,38380,38381,38382,38384,38385,\r\n38386,38388,38389,38391,38392,38394,38397,38399,38400,38401,38405,38408,38410,38411,38412,38413,38415,38419,38420,38422,38423,38425,38426,38429,38431,38432,38433,38434,38437,38438,38439,38440,38442,38446,38448,38452,38453,38454,38456,38459,38460,38465,38467,38469,38473,38475,38479,38480,38482,38483,38484,38486,38487,38488,38490,38492,38494,38495,38497,38498,38500,38501,38502,38504,38506,38507,38508,38511,38513,38514,38515,38518,38519,38520,38524,38527,38530,38531,38532,38534,38535,38540,38542,38543,38545,38548,38549,38550,38552,38553,38558,38559,38560,38562,38564,38565,38567,38568,38571,38574,38575,38577,38580,38581,38583,38585,38587,38588,38591,38594,38595,38597,38599,38602,38604,38605,38608,38609,38610,38612,38614,38616,38619,38623,38624,38625,38630,38632,38633,38634,38635,38637,38638,38641,38645,38646,38651,38653,38654,38656,38658,38660,38662,38664,38667,38670,38672,38673,38675,38676,38680,38681,38682,38683,38686,38687,38689,38691,38692,38696,38698,38700,38704,38705,38707,38708,38711,38712,38715,38716,38718,38723,38725,38726,38727,38731,38732,38734,38735,38737,38740,38741,38743,38744,38746,38749,38750,38751,38753,38756,38758,38759,38761,38762,38765,38768,38769,38770,38772,38773,38775,38777,38779,38783,38784,38787,38789,38790,38794,38795,38798,38799,38804,38805,38809,38810,38811,38814,38819,38822,38823,38824,38828,38829,38830,38832,38834,38836,38839,38840,38841,38845,38846,38847,38848,38850,38852,38853,38856,38858,38861,38862,38864,38865,38869,38871,38876,38877,38879,38880,38885,38888,38889,38891,38892,38894,38896,38897,38899,38901,38903,38905,38909,38911,38912,38914,38915,38918,38919,38923,38925,38926,38928,38931,38933,38934,38936,38938,38940,38942,38944,38945,38946,38947,38949,38950,38952,38954,38956,38957,38958,38960,38961,38963,38964,38969,38971,38972,38973,38975,38977,38978,38979,38983,38985,38987,38989,38990,38992,38994,38997,38998,39002,39004,39007,39008,39011,39012,39017,39018,39020,39022,39023,39024,39026,39027,39028,39031,39032,39033,39035,39038,39039,39041,39042,39046,39047,39048,39049,39052,39053,39055,\r\n39057,39060,39062,39064,39065,39066,39070,39071,39073,39076,39079,39080,39082,39086,39089,39090,39091,39094,39095,39096,39098,39099,39100,39102,39105,39110,39112,39114,39117,39119,39120,39123,39126,39130,39131,39132,39134,39135,39136,39139,39140,39141,39144,39145,39148,39149,39150,39151,39155,39156,39160,39162,39167,39169,39170,39171,39176,39178,39180,39182,39183,39187,39188,39189,39191,39193,39194,39195,39196,39200,39203,39205,39207,39208,39210,39211,39213,39217,39218,39220,39224,39225,39226,39228,39230,39231,39233,39234,39235,39238,39239,39243,39245,39248,39249,39250,39258,39260,39261,39263,39264,39267,39269,39272,39275,39276,39277,39280,39281,39282,39283,39287,39289,39293,39296,39298,39300,39301,39303,39305,39307,39311,39312,39314,39316,39317,39318,39319,39321,39326,39328,39329,39331,39332,39333,39335,39336,39337,39340,39341,39343,39345,39349,39350,39351,39353,39356,39357,39358,39360,39362,39364,39365,39366,39369,39371,39372,39373,39375,39377,39379,39380,39383,39384,39388,39390,39391,39394,39398,39399,39404,39405,39406,39408,39409,39412,39414,39416,39417,39418,39420,39424,39425,39426,39430,39433,39435,39436,39438,39440,39441,39443,39446,39448,39451,39453,39455,39457,39460,39463,39466,39469,39472,39473,39475,39476,39479,39480,39482,39483,39485,39488,39489,39491,39494,39495,39498,39499,39501,39503,39504,39505,39508,39512,39513,39514,39517,39518,39519,39520,39524,39525,39527,39530,39532,39533,39536,39539,39540,39542,39544,39545,39546,39550,39551,39553,39554,39556,39558,39562,39563,39565,39569,39572,39575,39576,39577,39580,39581,39582,39583,39585,39588,39593,39595,39599,39601,39602,39605,39607,39610,39614,39616,39617,39618,39621,39623,39625,39626,39627,39628,39630,39631,39633,39635,39637,39639,39640,39643,39645,39649,39650,39651,39652,39654,39656,39658,39660,39663,39664,39667,39668,39670,39671,39672,39673,39675,39677,39678,39679,39681,39682,39686,39687,39691,39694,39695,39696,39698,39699,39702,39703,39706,39707,39710,39712,39713,39715,39716,39717,39720,39724,39726,39727,39729,39730,39732,39734,39735,39740,39743,39746,\r\n39747,39750,39751,39753,39756,39757,39760,39763,39766,39769,39770,39772,39773,39776,39777,39780,39781,39784,39785,39787,39788,39790,39791,39792,39793,39795,39798,39799,39802,39803,39804,39806,39808,39809,39810,39812,39813,39815,39817,39819,39823,39825,39826,39829,39833,39834,39836,39837,39838,39840,39843,39846,39847,39850,39853,39854,39856,39859,39863,39865,39870,39872,39875,39877,39880,39881,39882,39883,39885,39887,39890,39891,39892,39895,39897,39899,39900,39901,39903,39906,39908,39909,39910,39912,39914,39916,39918,39920,39922,39924,39928,39932,39933,39934,39936,39937,39939,39940,39942,39944,39946,39948,39952,39955,39956,39957,39959,39960,39961,39964,39966,39968,39970,39972,39974,39975,39979,39980,39982,39983,39985,39988,39989,39990,39992,39993,39994,39996,39999,40002,40006,40007,40008,40012,40015,40016,40019,40021,40024,40025,40028,40029,40030,40033,40034,40035,40036,40038,40041,40043,40044,40045,40048,40050,40055,40056,40057,40060,40062,40065,40066,40068,40069,40072,40075,40078,40079,40080,40084,40085,40087,40089,40091,40093,40094,40095,40097,40099,40100,40102,40103,40104,40106,40107,40108,40110,40112,40114,40115,40116,40119,40120,40123,40127,40128,40129,40132,40133,40134,40135,40137,40139,40140,40143,40148,40150,40153,40156,40157,40159,40160,40162,40163,40164,40165,40168,40169,40170,40173,40175,40178,40179,40183,40186,40189,40191,40193,40194,40196,40198,40199,40201,40202,40204,40206,40208,40209,40212,40213,40218,40221,40222,40225,40227,40228,40230,40231,40235,40237,40238,40239,40240,40244,40245,40247,40249,40250,40252,40255,40257,40259,40262,40264,40265,40267,40269,40271,40272,40274,40275,40276,40278,40280,40282,40283,40285,40287,40289,40291,40293,40296,40297,40299,40301,40304,40306,40307,40308,40309,40311,40312,40316,40317,40319,40321,40324,40325,40328,40329,40334,40335,40338,40340,40341,40345,40347,40350,40351,40354,40356,40359,40361,40364,40365,40366,40369,40371,40373,40374,40375,40378,40381,40382,40383,40385,40387,40388,40390,40391,40393,40395,40397,40398,40400,40403,40406,40407,40409,40410,40411,40413,40417,\r\n40418,40419,40421,40425,40426,40428,40429,40433,40435,40436,40441,40442,40443,40445,40446,40449,40452,40454,40455,40457,40460,40462,40463,40465,40469,40470,40472,40473,40477,40478,40479,40482,40484,40485,40488,40492,40493,40494,40495,40497,40500,40501,40504,40508,40509,40510,40514,40516,40518,40521,40524,40525,40527,40528,40531,40532,40533,40534,40536,40540,40543,40544,40545,40547,40549,40552,40553,40555,40557,40561,40562,40564,40567,40570,40571,40574,40576,40577,40578,40579,40581,40583,40586,40588,40589,40592,40594,40595,40596,40597,40600,40603,40604,40605,40608,40610,40611,40615,40617,40618,40620,40621,40623,40625,40627,40628,40629,40632,40635,40640,40641,40642,40644,40645,40648,40649,40650,40653,40656,40658,40661,40662,40667,40668,40672,40673,40675,40679,40680,40681,40685,40688,40689,40691,40693,40696,40697,40698,40701,40703,40705,40707,40710,40711,40713,40714,40718,40719,40723,40724,40727,40728,40731,40732,40734,40738,40739,40741,40742,40743,40744,40746,40748,40750,40754,40755,40756,40758,40759,40763,40765,40766,40767,40769,40771,40772,40773,40777,40778,40780,40782,40784,40786,40787,40788,40791,40793,40794,40798,40801,40802,40803,40805,40808,40811,40812,40817,40819,40820,40821,40826,40827,40828,40831,40833,40835,40838,40840,40843,40844,40845,40846,40849,40851,40854,40858,40859,40860,40862,40863,40864,40866,40868,40870,40871,40874,40876,40877,40879,40881,40884,40885,40887,40890,40892,40894,40897,40898,40900,40903,40904,40905,40906,40910,40911,40912,40915,40917,40919,40921,40922,40923,40924,40926,40927,40929,40930,40932,40934,40935,40938,40940,40941,40942,40946,40948,40951,40953,40954,40958,40959,40964,40965,40966,40968,40969,40971,40974,40976,40978,40979,40981,40983,40985,40987,40988,40989,40991,40992,40996,40998,41000,41002,41003,41004,41005,41007,41011,41013,41015,41017,41018,41019,41020,41022,41026,41027,41028,41030,41031,41032,41034,41036,41039,41041,41043,41045,41048,41049,41050,41052,41055,41058,41059,41061,41064,41065,41069,41070,41074,41075,41078,41079,41083,41084,41085,41086,41088,41090,41091,41092,41095,\r\n41098,41100,41101,41104,41107,41108,41109,41111,41112,41116,41118,41120,41123,41125,41127,41130,41132,41134,41137,41139,41141,41142,41145,41146,41148,41150,41153,41156,41157,41158,41161,41162,41165,41166,41167,41169,41171,41172,41173,41175,41179,41180,41181,41182,41186,41187,41192,41195,41198,41201,41202,41203,41205,41206,41208,41213,41216,41218,41219,41221,41222,41225,41226,41227,41230,41231,41233,41235,41238,41242,41244,41247,41248,41251,41255,41257,41258,41259,41261,41262,41264,41265,41266,41268,41271,41272,41274,41276,41277,41278,41280,41283,41285,41286,41288,41290,41293,41294,41295,41300,41301,41304,41305,41307,41308,41312,41313,41315,41316,41318,41319,41321,41322,41324,41326,41327,41328,41332,41333,41334,41336,41338,41339,41340,41344,41346,41348,41350,41351,41352,41357,41358,41360,41361,41362,41365,41366,41368,41369,41370,41374,41375,41376,41377,41380,41382,41384,41385,41387,41388,41390,41391,41392,41395,41399,41402,41405,41406,41407,41409,41412,41414,41415,41416,41419,41420,41422,41424,41427,41429,41430,41431,41433,41437,41438,41439,41441,41443,41445,41449,41452,41453,41455,41458,41460,41461,41463,41466,41467,41470,41472,41474,41477,41478,41479,41483,41484,41486,41487,41489,41492,41495,41496,41499,41500,41503,41504,41506,41507,41508,41511,41512,41514,41515,41519,41521,41523,41525,41526,41527,41531,41532,41536,41537,41538,41542,41544,41547,41549,41551,41552,41554,41556,41558,41559,41560,41562,41564,41566,41568,41570,41572,41573,41574,41577,41581,41583,41584,41588,41590,41592,41595,41599,41600,41603,41605,41606,41609,41610,41612,41615,41617,41618,41621,41622,41623,41626,41628,41630,41631,41632,41634,41637,41640,41641,41643,41644,41647,41649,41650,41652,41655,41656,41658,41659,41662,41663,41664,41666,41667,41668,41670,41673,41674,41677,41679,41682,41685,41687,41688,41690,41692,41694,41695,41698,41702,41704,41705,41706,41709,41710,41714,41716,41718,41720,41722,41723,41724,41726,41727,41730,41732,41734,41737,41739,41741,41742,41744,41746,41747,41750,41752,41754,41755,41757,41758,41761,41765,41767,41768,41769,41770,\r\n41773,41774,41775,41778,41780,41781,41784,41785,41788,41791,41792,41793,41795,41796,41797,41800,41803,41805,41807,41808,41809,41812,41813,41814,41815,41817,41818,41820,41824,41825,41828,41830,41831,41834,41835,41836,41838,41842,41843,41845,41846,41847,41849,41850,41853,41854,41857,41861,41862,41863,41865,41867,41868,41871,41872,41874,41877,41878,41882,41884,41885,41888,41890,41892,41893,41895,41896,41898,41902,41904,41905,41908,41910,41912,41913,41914,41916,41919,41921,41922,41924,41925,41928,41932,41933,41936,41938,41939,41940,41942,41943,41944,41946,41948,41950,41952,41955,41958,41959,41961,41963,41964,41968,41971,41973,41974,41977,41980,41982,41986,41987,41990,41992,41993,41994,41996,41999,42001,42002,42004,42006,42007,42009,42011,42012,42014,42015,42018,42021,42025,42026,42028,42029,42030,42032,42033,42034,42036,42037,42039,42042,42044,42050,42052,42053,42054,42055,42057,42062,42063,42065,42066,42069,42071,42074,42076,42077,42078,42079,42082,42083,42085,42087,42089,42091,42092,42094,42095,42096,42098,42099,42101,42104,42106,42107,42109,42112,42113,42114,42117,42120,42123,42125,42126,42128,42129,42131,42134,42135,42137,42139,42140,42142,42146,42149,42150,42151,42153,42155,42157,42161,42163,42164,42165,42167,42168,42171,42174,42175,42177,42178,42180,42181,42185,42186,42188,42190,42194,42196,42197,42199,42202,42203,42204,42208,42209,42210,42212,42215,42216,42218,42220,42222,42225,42227,42229,42231,42235,42236,42237,42239,42240,42241,42245,42247,42248,42250,42253,42256,42257,42258,42259,42261,42264,42265,42269,42270,42275,42276,42278,42279,42282,42284,42287,42288,42291,42292,42294,42295,42298,42303,42308,42310,42311,42313,42316,42317,42320,42321,42324,42325,42327,42329,42331,42332,42333,42335,42337,42339,42340,42342,42343,42345,42347,42348,42351,42354,42356,42357,42361,42362,42363,42365,42366,42368,42371,42374,42375,42376,42378,42380,42381,42382,42384,42388,42392,42394,42398,42400,42401,42402,42404,42407,42410,42411,42412,42416,42417,42419,42420,42424,42425,42426,42427,42429,42432,42433,42439,42440,42442,42443,42445,\r\n42448,42449,42451,42452,42454,42455,42458,42460,42462,42464,42465,42467,42468,42471,42474,42475,42477,42478,42482,42483,42484,42487,42489,42493,42494,42495,42496,42498,42499,42502,42504,42506,42507,42508,42510,42514,42515,42516,42519,42521,42523,42524,42526,42527,42529,42530,42532,42536,42538,42539,42541,42542,42544,42548,42551,42552,42554,42556,42557,42558,42559,42561,42562,42566,42568,42569,42572,42575,42576,42578,42579,42583,42584,42585,42586,42589,42593,42594,42596,42597,42599,42601,42602,42603,42604,42606,42608,42610,42611,42613,42617,42618,42620,42621,42624,42628,42631,42632,42633,42634,42638,42641,42642,42644,42647,42649,42650,42651,42654,42655,42657,42658,42662,42663,42665,42666,42669,42671,42672,42673,42675,42677,42678,42681,42682,42685,42687,42690,42691,42695,42697,42700,42701,42702,42703,42705,42706,42708,42711,42714,42716,42718,42720,42722,42725,42726,42727,42731,42733,42736,42738,42740,42741,42744,42747,42749,42752,42753,42754,42757,42758,42760,42764,42765,42767,42768,42770,42772,42774,42776,42777,42779,42780,42782,42783,42787,42790,42792,42793,42795,42797,42801,42803,42805,42806,42807,42811,42812,42814,42816,42817,42820,42823,42825,42829,42830,42831,42836,42838,42841,42842,42843,42844,42846,42847,42849,42852,42855,42857,42860,42862,42864,42866,42867,42868,42871,42872,42875,42876,42877,42880,42882,42884,42885,42888,42890,42891,42892,42895,42896,42897,42898,42902,42903,42907,42910,42912,42913,42916,42918,42922,42923,42926,42928,42931,42934,42935,42937,42940,42941,42942,42943,42945,42947,42949,42950,42951,42953,42954,42956,42957,42958,42961,42964,42965,42967,42968,42970,42971,42972,42973,42976,42979,42980,42982,42983,42985,42988,42990,42995,42996,42997,42999,43000,43002,43004,43007,43008,43010,43011,43014,43016,43017,43018,43020,43021,43023,43025,43026,43027,43029,43031,43032,43036,43037,43039,43040,43043,43046,43049,43051,43054,43055,43056,43058,43059,43060,43064,43065,43066,43070,43072,43075,43077,43078,43081,43083,43085,43087,43090,43091,43092,43096,43097,43098,43101,43102,43106,43107,43109,43111,43113,\r\n43115,43117,43119,43120,43122,43124,43126,43127,43128,43131,43134,43136,43137,43140,43144,43146,43148,43151,43153,43156,43157,43158,43162,43164,43165,43167,43171,43174,43175,43177,43179,43181,43183,43184,43185,43186,43188,43192,43194,43196,43199,43202,43203,43206,43210,43211,43213,43214,43215,43216,43220,43222,43223,43224,43226,43228,43230,43233,43234,43237,43239,43243,43246,43247,43249,43252,43253,43255,43256,43258,43262,43265,43266,43268,43269,43271,43273,43277,43278,43280,43285,43286,43288,43289,43291,43293,43294,43296,43299,43300,43302,43304,43305,43307,43308,43309,43313,43316,43317,43318,43320,43324,43327,43329,43330,43332,43334,43336,43337,43340,43342,43346,43348,43350,43351,43353,43355,43356,43358,43360,43361,43362,43363,43365,43367,43369,43372,43373,43374,43377,43379,43381,43383,43384,43386,43388,43389,43392,43396,43397,43400,43401,43404,43405,43409,43411,43413,43415,43416,43418,43420,43422,43426,43430,43431,43432,43434,43438,43441,43442,43443,43445,43447,43449,43451,43452,43453,43456,43458,43460,43461,43463,43464,43467,43469,43471,43474,43477,43478,43480,43481,43482,43484,43486,43490,43491,43492,43496,43499,43501,43502,43504,43505,43506,43507,43509,43510,43513,43515,43517,43518,43520,43523,43524,43525,43529,43530,43531,43533,43534,43536,43537,43540,43541,43543,43545,43546,43548,43551,43553,43556,43558,43560,43561,43563,43565,43566,43569,43571,43573,43577,43579,43580,43583,43584,43587,43588,43591,43592,43593,43594,43597,43599,43600,43603,43604,43605,43607,43610,43611,43612,43615,43617,43618,43621,43622,43624,43625,43626,43627,43629,43630,43633,43635,43639,43641,43644,43649,43650,43651,43653,43654,43657,43658,43660,43661,43663,43665,43668,43669,43671,43676,43677,43679,43680,43682,43683,43686,43690,43693,43694,43695,43698,43699,43702,43703,43705,43706,43707,43712,43713,43716,43719,43721,43722,43725,43726,43728,43731,43735,43737,43738,43741,43742,43743,43744,43748,43749,43751,43752,43754,43756,43759,43763,43764,43765,43769,43771,43774,43777,43781,43782,43783,43785,43786,43790,43791,43793,43795,43797,43798,43802,\r\n43804,43805,43808,43809,43811,43812,43814,43816,43818,43819,43821,43824,43825,43829,43831,43832,43834,43835,43837,43840,43843,43844,43846,43849,43850,43851,43855,43856,43858,43859,43862,43864,43865,43867,43868,43870,43872,43876,43877,43880,43881,43882,43884,43887,43890,43892,43893,43894,43896,43897,43899,43900,43903,43906,43908,43909,43911,43913,43915,43916,43917,43919,43921,43922,43923,43926,43927,43929,43933,43934,43936,43939,43940,43941,43943,43944,43945,43949,43950,43951,43953,43954,43957,43958,43959,43962,43964,43965,43966,43968,43971,43972,43976,43981,43983,43986,43988,43990,43991,43992,43995,43997,43998,43999,44001,44002,44004,44006,44007,44010,44011,44015,44020,44024,44025,44026,44030,44031,44033,44036,44039,44040,44041,44043,44045,44046,44049,44052,44053,44055,44057,44060,44061,44062,44065,44066,44067,44069,44070,44072,44075,44076,44078,44080,44081,44084,44085,44087,44089,44090,44091,44096,44098,44103,44107,44108,44109,44110,44112,44114,44115,44116,44119,44120,44121,44122,44124,44127,44128,44132,44134,44135,44136,44141,44142,44143,44146,44147,44149,44150,44153,44154,44158,44160,44162,44163,44166,44169,44173,44177,44178,44180,44181,44182,44184,44186,44187,44190,44192,44195,44196,44199,44201,44202,44205,44206,44214,44216,44217,44218,44222,44223,44224,44226,44227,44229,44231,44233,44235,44236,44241,44242,44244,44246,44248,44249,44250,44252,44255,44257,44258,44261,44263,44265,44266,44268,44271,44273,44276,44277,44279,44282,44283,44285,44287,44290,44291,44293,44294,44296,44300,44301,44303,44304,44308,44309,44310,44314,44315,44317,44318,44319,44322,44325,44327,44329,44330,44331,44333,44335,44337,44342,44344,44347,44349,44350,44352,44354,44356,44357,44359,44362,44363,44364,44368,44369,44370,44372,44373,44374,44377,44378,44379,44380,44382,44384,44387,44389,44390,44391,44392,44395,44396,44398,44401,44402,44403,44407,44408,44409,44410,44413,44414,44416,44417,44419,44422,44424,44425,44427,44428,44431,44433,44437,44438,44440,44443,44444,44446,44448,44451,44453,44454,44457,44458,44460,44461,44464,44465,44466,44468,44470,\r\n44472,44477,44480,44481,44482,44484,44485,44488,44490,44493,44496,44498,44500,44501,44502,44504,44505,44508,44513,44516,44517,44520,44522,44523,44524,44526,44528,44529,44531,44532,44534,44535,44537,44540,44541,44543,44544,44547,44550,44554,44555,44556,44561,44562,44563,44567,44568,44569,44572,44573,44574,44575,44577,44578,44581,44582,44584,44585,44588,44589,44593,44595,44598,44599,44602,44606,44609,44611,44612,44614,44615,44617,44618,44619,44624,44626,44629,44630,44631,44634,44637,44640,44642,44643,44645,44647,44649,44651,44653,44655,44656,44659,44660,44661,44662,44664,44665,44667,44669,44671,44672,44673,44676,44677,44680,44681,44683,44685,44686,44688,44690,44691,44692,44695,44697,44701,44702,44703,44706,44707,44711,44712,44713,44717,44718,44721,44725,44726,44728,44729,44730,44732,44734,44735,44738,44739,44740,44742,44744,44746,44749,44750,44753,44754,44759,44760,44762,44765,44767,44769,44770,44772,44774,44775,44776,44778,44779,44781,44782,44786,44789,44791,44792,44794,44795,44796,44800,44802,44804,44805,44808,44812,44814,44817,44819,44820,44822,44824,44825,44826,44827,44830,44832,44834,44836,44838,44840,44842,44843,44845,44846,44848,44849,44850,44851,44854,44856,44858,44860,44861,44863,44865,44866,44868,44873,44875,44876,44878,44879,44880,44883,44885,44887,44889,44893,44895,44897,44899,44900,44903,44904,44905,44908,44911,44913,44917,44918,44919,44921,44922,44926,44927,44928,44931,44934,44938,44939,44940,44942,44944,44947,44951,44952,44954,44955,44957,44958,44962,44964,44966,44969,44970,44971,44975,44978,44980,44982,44986,44987,44989,44990,44992,44993,44994,44997,44999,45001,45002,45003,45007,45008,45011,45013,45017,45020,45022,45023,45024,45026,45028,45030,45031,45033,45035,45036,45040,45042,45044,45045,45048,45049,45052,45053,45055,45056,45057,45058,45062,45063,45066,45067,45070,45071,45072,45074,45075,45080,45081,45085,45089,45091,45092,45093,45095,45098,45099,45101,45103,45105,45108,45109,45111,45112,45114,45115,45118,45120,45124,45125,45127,45129,45130,45134,45136,45138,45141,45143,45144,45146,45147,45149,45151,\r\n45153,45154,45157,45159,45160,45163,45168,45170,45171,45175,45177,45179,45180,45184,45186,45188,45189,45190,45194,45195,45196,45198,45201,45204,45205,45207,45209,45212,45213,45215,45217,45221,45222,45224,45226,45228,45231,45233,45234,45237,45239,45240,45244,45245,45247,45248,45249,45252,45254,45255,45256,45260,45261,45264,45268,45269,45272,45274,45277,45281,45283,45286,45287,45288,45290,45291,45293,45294,45295,45297,45299,45301,45302,45304,45306,45307,45309,45312,45314,45315,45318,45320,45322,45323,45324,45326,45328,45330,45333,45334,45337,45340,45341,45342,45343,45346,45348,45349,45352,45354,45355,45358,45360,45361,45364,45368,45370,45371,45372,45373,45375,45378,45382,45383,45384,45386,45387,45390,45394,45398,45400,45401,45406,45408,45410,45411,45413,45416,45419,45420,45423,45424,45426,45430,45432,45434,45435,45437,45438,45440,45442,45444,45447,45449,45451,45452,45453,45456,45458,45459,45460,45462,45463,45465,45467,45468,45470,45471,45473,45476,45477,45479,45481,45484,45485,45488,45490,45492,45496,45497,45498,45499,45502,45503,45505,45508,45511,45512,45513,45515,45518,45519,45520,45522,45523,45525,45527,45528,45530,45532,45533,45534,45536,45537,45539,45540,45542,45545,45547,45550,45551,45554,45555,45557,45558,45560,45561,45564,45569,45572,45573,45574,45577,45580,45581,45582,45584,45586,45587,45588,45591,45594,45596,45598,45599,45600,45601,45604,45605,45608,45609,45611,45612,45617,45618,45620,45622,45625,45627,45630,45631,45635,45637,45638,45639,45641,45642,45643,45646,45648,45651,45653,45654,45655,45659,45660,45662,45663,45667,45668,45671,45673,45674,45675,45679,45681,45683,45684,45685,45689,45690,45692,45694,45698,45699,45700,45703,45705,45706,45710,45713,45716,45717,45718,45720,45722,45725,45727,45731,45733,45734,45735,45739,45740,45742,45746,45747,45748,45752,45755,45757,45760,45762,45763,45765,45766,45768,45769,45772,45775,45777,45779,45780,45781,45783,45785,45787,45788,45790,45791,45793,45796,45797,45798,45801,45802,45806,45807,45809,45810,45812,45813,45814,45817,45821,45824,45825,45827,45829,45831,45835,45836,\r\n45838,45842,45843,45845,45847,45848,45850,45852,45854,45855,45858,45860,45864,45865,45869,45870,45871,45874,45875,45876,45880,45881,45885,45889,45891,45892,45894,45895,45897,45899,45901,45904,45905,45906,45908,45910,45911,45912,45913,45917,45918,45923,45925,45926,45927,45929,45932,45934,45937,45938,45939,45941,45942,45944,45946,45947,45949,45950,45951,45954,45955,45958,45959,45962,45963,45965,45966,45971,45972,45975,45976,45979,45980,45981,45982,45984,45985,45987,45990,45992,45993,45998,46001,46002,46004,46005,46006,46012,46016,46018,46019,46021,46022,46023,46025,46027,46028,46030,46033,46037,46040,46041,46042,46045,46046,46048,46050,46051,46053,46054,46056,46058,46060,46063,46064,46065,46066,46068,46072,46074,46076,46078,46080,46081,46084,46085,46086,46089,46092,46095,46097,46098,46099,46101,46102,46104,46107,46111,46112,46114,46116,46118,46121,46123,46127,46129,46132,46133,46135,46136,46137,46139,46142,46145,46147,46148,46149,46151,46154,46155,46159,46161,46163,46166,46167,46171,46172,46174,46177,46179,46181,46182,46187,46188,46189,46192,46193,46194,46196,46198,46199,46200,46202,46203,46205,46208,46209,46212,46213,46215,46216,46220,46221,46222,46224,46226,46227,46229,46231,46234,46236,46239,46241,46243,46245,46249,46250,46253,46254,46256,46257,46258,46260,46261,46264,46268,46270,46272,46275,46280,46281,46283,46284,46286,46288,46290,46292,46295,46296,46298,46301,46303,46305,46306,46308,46309,46313,46314,46315,46317,46319,46322,46324,46325,46326,46327,46330,46333,46336,46337,46340,46341,46343,46344,46346,46351,46352,46355,46357,46358,46359,46362,46363,46367,46370,46372,46373,46375,46376,46377,46382,46383,46385,46388,46389,46390,46392,46395,46396,46399,46400,46401,46403,46405,46406,46408,46411,46412,46413,46415,46418,46419,46421,46422,46427,46428,46432,46433,46434,46436,46438,46439,46440,46441,46443,46444,46446,46448,46450,46452,46454,46457,46459,46462,46463,46465,46466,46467,46469,46470,46472,46473,46477,46479,46480,46483,46485,46486,46488,46489,46491,46493,46495,46496,46499,46501,46502,46503,46507,46510,46511,46512,\r\n46514,46515,46517,46519,46523,46526,46528,46529,46530,46532,46535,46536,46538,46539,46542,46544,46546,46548,46551,46554,46555,46560,46562,46563,46566,46567,46570,46571,46572,46573,46575,46576,46579,46580,46582,46585,46588,46589,46590,46592,46595,46596,46598,46599,46600,46603,46604,46605,46609,46610,46612,46615,46616,46618,46621,46624,46625,46627,46629,46630,46632,46633,46635,46638,46643,46645,46646,46648,46651,46655,46656,46658,46659,46661,46663,46664,46665,46666,46669,46670,46672,46674,46675,46679,46681,46683,46685,46686,46688,46690,46691,46694,46696,46699,46702,46703,46704,46706,46709,46710,46712,46714,46716,46720,46721,46723,46724,46726,46729,46730,46731,46734,46735,46739,46741,46745,46747,46749,46751,46752,46755,46759,46760,46761,46767,46768,46772,46774,46775,46777,46778,46779,46780,46782,46783,46786,46787,46788,46789,46792,46796,46797,46800,46803,46804,46806,46810,46811,46813,46817,46819,46820,46821,46824,46825,46827,46829,46832,46833,46837,46839,46844,46846,46848,46849,46851,46855,46856,46857,46859,46860,46861,46865,46867,46871,46872,46874,46875,46878,46880,46881,46885,46886,46887,46890,46893,46895,46897,46901,46902,46903,46905,46908,46909,46912,46913,46916,46918,46921,46922,46924,46926,46930,46931,46932,46933,46937,46938,46940,46941,46942,46945,46946,46948,46950,46952,46954,46958,46960,46961,46963,46964,46965,46967,46968,46970,46971,46972,46975,46978,46979,46981,46982,46984,46987,46990,46991,46993,46994,46996,46997,46998,46999,47001,47003,47005,47006,47007,47008,47011,47012,47014,47017,47020,47023,47027,47028,47030,47031,47036,47038,47039,47040,47041,47045,47046,47048,47049,47051,47052,47053,47056,47057,47058,47060,47061,47065,47066,47068,47069,47071,47072,47073,47075,47076,47077,47080,47081,47083,47087,47088,47089,47092,47094,47098,47099,47100,47102,47104,47108,47110,47112,47113,47115,47117,47119,47121,47124,47125,47128,47129,47130,47134,47136,47137,47140,47143,47145,47147,47148,47151,47152,47154,47156,47158,47159,47160,47164,47165,47166,47168,47171,47174,47175,47179,47180,47181,47184,47186,47187,47188,47191,\r\n47194,47197,47199,47203,47204,47206,47207,47208,47209,47212,47213,47215,47218,47219,47222,47223,47224,47227,47229,47232,47234,47236,47238,47240,47242,47243,47245,47246,47248,47249,47252,47254,47255,47258,47259,47261,47263,47264,47266,47267,47269,47272,47273,47274,47278,47281,47282,47284,47288,47291,47294,47296,47299,47301,47304,47306,47309,47311,47314,47315,47316,47317,47319,47322,47325,47327,47329,47331,47332,47335,47337,47339,47342,47344,47345,47346,47348,47351,47353,47354,47356,47357,47358,47359,47362,47366,47368,47369,47370,47372,47374,47375,47376,47377,47379,47380,47382,47383,47385,47387,47388,47389,47391,47396,47399,47400,47402,47403,47405,47406,47410,47411,47413,47414,47415,47416,47418,47419,47421,47423,47424,47425,47427,47429,47431,47432,47433,47434,47436,47437,47439,47440,47443,47446,47448,47451,47453,47454,47455,47457,47458,47460,47462,47464,47467,47470,47471,47473,47475,47477,47479,47483,47484,47485,47487,47491,47493,47495,47498,47499,47501,47503,47506,47507,47508,47511,47512,47516,47517,47518,47520,47523,47526,47527,47530,47531,47532,47533,47535,47536,47539,47540,47543,47545,47546,47548,47549,47550,47551,47553,47557,47559,47561,47562,47563,47567,47568,47569,47571,47572,47574,47576,47577,47580,47581,47585,47586,47588,47591,47594,47595,47596,47600,47601,47603,47604,47605,47607,47609,47610,47613,47616,47619,47620,47623,47624,47625,47626,47630,47633,47635,47637,47640,47642,47643,47644,47647,47648,47650,47651,47652,47655,47658,47659,47663,47664,47665,47668,47670,47671,47675,47678,47681,47682,47686,47687,47688,47690,47693,47694,47699,47701,47703,47704,47706,47708,47710,47711,47712,47713,47716,47717,47719,47722,47723,47724,47726,47727,47730,47733,47735,47736,47738,47739,47744,47745,47748,47749,47752,47753,47755,47756,47757,47758,47760,47763,47764,47766,47767,47771,47774,47775,47776,47779,47780,47781,47784,47788,47790,47792,47794,47795,47796,47799,47800,47802,47804,47806,47809,47813,47814,47815,47818,47821,47824,47827,47829,47831,47832,47837,47838,47839,47842,47844,47849,47851,47852,47853,47856,47859,47860,47862,\r\n47863,47865,47867,47870,47871,47874,47876,47878,47879,47882,47884,47885,47887,47891,47892,47893,47896,47898,47899,47902,47903,47904,47908,47912,47913,47915,47918,47919,47920,47922,47923,47926,47929,47933,47934,47936,47937,47940,47941,47944,47946,47948,47953,47957,47959,47960,47962,47963,47965,47967,47968,47971,47972,47975,47976,47978,47981,47984,47986,47989,47991,47994,47995,47998,48002,48003,48004,48006,48007,48009,48010,48012,48016,48018,48021,48023,48024,48025,48027,48030,48031,48035,48036,48037,48040,48042,48046,48047,48049,48050,48052,48054,48056,48057,48058,48060,48063,48066,48068,48069,48070,48074,48075,48076,48078,48080,48081,48085,48086,48087,48088,48090,48094,48096,48097,48099,48102,48106,48108,48109,48113,48114,48115,48117,48119,48121,48122,48123,48126,48128,48131,48133,48134,48136,48139,48142,48143,48146,48149,48151,48152,48153,48154,48156,48159,48163,48165,48166,48169,48171,48172,48174,48177,48181,48184,48185,48187,48188,48189,48192,48193,48196,48197,48199,48200,48202,48203,48204,48209,48210,48211,48213,48215,48216,48218,48220,48221,48222,48223,48226,48227,48228,48230,48231,48232,48234,48236,48238,48241,48242,48243,48245,48246,48247,48251,48254,48255,48256,48258,48259,48262,48263,48264,48265,48269,48271,48274,48276,48280,48282,48283,48285,48289,48291,48293,48294,48297,48302,48304,48305,48307,48310,48312,48314,48315,48317,48319,48322,48325,48326,48328,48331,48332,48334,48336,48337,48339,48341,48342,48347,48348,48349,48351,48352,48355,48356,48357,48358,48360,48361,48364,48366,48369,48371,48372,48374,48376,48377,48380,48381,48384,48385,48389,48390,48391,48393,48395,48397,48398,48399,48400,48404,48405,48406,48408,48409,48412,48413,48415,48418,48419,48420,48424,48426,48431,48432,48435,48436,48439,48440,48441,48443,48445,48446,48447,48450,48452,48455,48458,48459,48463,48464,48465,48469,48470,48471,48473,48474,48477,48481,48484,48488,48490,48491,48493,48494,48495,48496,48498,48501,48504,48506,48508,48512,48513,48515,48516,48517,48519,48521,48522,48524,48525,48529,48530,48531,48533,48535,48536,48537,48540,48542,\r\n48543,48546,48547,48551,48552,48555,48557,48558,48560,48561,48566,48567,48568,48570,48571,48573,48574,48578,48579,48580,48582,48587,48590,48592,48593,48595,48597,48602,48603,48607,48608,48610,48613,48615,48618,48622,48623,48625,48626,48627,48628,48630,48632,48633,48636,48638,48641,48642,48646,48647,48648,48652,48654,48657,48659,48661,48663,48666,48667,48669,48670,48673,48674,48675,48676,48679,48683,48684,48687,48690,48691,48693,48695,48696,48697,48699,48703,48704,48707,48708,48711,48712,48715,48717,48718,48721,48723,48724,48726,48727,48729,48733,48734,48735,48739,48740,48741,48743,48744,48745,48747,48749,48751,48752,48754,48755,48757,48761,48763,48764,48767,48770,48771,48772,48774,48778,48779,48780,48784,48786,48789,48790,48793,48794,48795,48799,48800,48801,48802,48804,48807,48808,48810,48814,48817,48818,48820,48822,48823,48826,48829,48832,48835,48836,48838,48839,48841,48842,48844,48846,48847,48850,48851,48854,48856,48857,48860,48861,48863,48864,48868,48869,48871,48873,48876,48877,48880,48884,48886,48887,48889,48893,48896,48897,48899,48901,48905,48906,48907,48911,48913,48914,48915,48916,48919,48923,48924,48925,48929,48930,48934,48935,48936,48937,48939,48943,48945,48949,48951,48952,48954,48957,48958,48961,48962,48963,48964,48966,48970,48971,48973,48976,48977,48978,48979,48981,48984,48986,48987,48991,48995,48996,48999,49000,49002,49006,49009,49010,49011,49013,49015,49016,49019,49022,49024,49025,49026,49028,49029,49031,49032,49037,49039,49041,49044,49047,49049,49051,49054,49055,49057,49059,49060,49062,49063,49066,49067,49070,49072,49073,49075,49076,49077,49079,49081,49085,49086,49087,49089,49092,49094,49095,49098,49099,49101,49104,49105,49109,49111,49112,49115,49116,49118,49119,49121,49122,49123,49125,49126,49129,49131,49132,49136,49137,49138,49142,49143,49145,49146,49150,49153,49154,49155,49159,49161,49162,49167,49168,49170,49172,49173,49174,49178,49179,49180,49183,49185,49189,49191,49194,49195,49199,49200,49202,49205,49206,49207,49210,49211,49212,49214,49215,49216,49219,49220,49223,49224,49225,49227,49228,49230,49233,\r\n49238,49241,49242,49244,49245,49246,49248,49253,49254,49256,49259,49260,49262,49263,49266,49269,49270,49273,49274,49275,49277,49279,49280,49283,49284,49285,49289,49292,49294,49296,49298,49300,49301,49304,49305,49306,49308,49310,49311,49314,49317,49319,49320,49322,49325,49326,49328,49330,49331,49334,49335,49336,49340,49341,49342,49344,49349,49351,49353,49354,49356,49359,49361,49362,49363,49365,49367,49368,49370,49374,49375,49377,49379,49381,49382,49385,49387,49388,49389,49391,49392,49394,49400,49401,49404,49407,49409,49411,49412,49414,49416,49418,49419,49420,49423,49425,49429,49430,49432,49433,49436,49438,49440,49442,49444,49446,49448,49449,49450,49452,49454,49455,49457,49458,49462,49464,49465,49467,49469,49471,49475,49476,49480,49482,49485,49490,49493,49494,49497,49498,49501,49502,49503,49507,49509,49514,49515,49516,49519,49522,49524,49525,49528,49532,49533,49535,49536,49539,49542,49544,49545,49546,49550,49552,49556,49557,49558,49560,49561,49564,49567,49571,49572,49573,49575,49577,49578,49583,49586,49588,49591,49592,49593,49594,49596,49597,49601,49602,49603,49607,49609,49611,49612,49616,49617,49619,49621,49622,49624,49628,49629,49633,49634,49635,49638,49640,49642,49643,49644,49647,49650,49652,49655,49656,49660,49661,49662,49664,49665,49670,49672,49673,49674,49675,49677,49678,49681,49682,49685,49686,49687,49689,49691,49692,49695,49696,49698,49700,49701,49702,49705,49706,49707,49708,49712,49713,49716,49717,49721,49722,49723,49725,49726,49730,49733,49735,49736,49737,49739,49740,49742,49743,49746,49748,49753,49757,49759,49760,49761,49766,49767,49768,49770,49771,49773,49775,49776,49779,49782,49783,49786,49787,49789,49790,49791,49796,49799,49802,49803,49805,49807,49808,49810,49814,49815,49817,49821,49822,49824,49825,49828,49829,49830,49832,49834,49835,49837,49838,49839,49843,49846,49847,49849,49850,49853,49854,49859,49860,49861,49864,49868,49869,49870,49873,49874,49876,49878,49882,49884,49887,49891,49892,49893,49894,49897,49900,49901,49902,49904,49905,49908,49913,49915,49916,49919,49921,49923,49924,49926,49928,49930,49934,\r\n49937,49939,49941,49943,49945,49947,49951,49955,49957,49959,49960,49962,49963,49967,49968,49970,49973,49974,49975,49977,49978,49980,49982,49985,49987,49988,49989,49991,49992,49994,49995,49997,50000,50003,50004,50009,50012,50014,50015,50016,50018,50020,50024,50025,50029,50031,50033,50034,50038,50039,50040,50041,50044,50046,50048,50051,50053,50055,50056,50059,50060,50061,50063,50064,50065,50068,50070,50073,50074,50076,50079,50080,50082,50083,50085,50086,50089,50090,50093,50094,50095,50100,50102,50104,50105,50106,50108,50109,50111,50113,50114,50117,50118,50122,50123,50124,50126,50127,50130,50131,50134,50136,50138,50139,50141,50142,50144,50146,50147,50149,50152,50155,50158,50159,50160,50165,50166,50167,50170,50171,50172,50174,50177,50179,50180,50182,50183,50186,50187,50189,50190,50195,50197,50199,50202,50203,50205,50207,50208,50211,50213,50215,50217,50222,50225,50226,50229,50233,50235,50236,50240,50241,50243,50244,50246,50248,50249,50250,50255,50256,50261,50262,50266,50267,50268,50269,50271,50274,50278,50280,50283,50285,50288,50290,50293,50294,50295,50299,50301,50304,50306,50308,50310,50314,50315,50318,50320,50321,50322,50323,50325,50327,50328,50330,50331,50332,50334,50335,50337,50342,50343,50344,50346,50348,50349,50352,50356,50357,50359,50360,50363,50364,50367,50368,50370,50372,50375,50376,50377,50381,50382,50384,50385,50389,50390,50393,50394,50395,50397,50399,50401,50402,50403,50406,50410,50412,50416,50417,50419,50421,50423,50425,50426,50427,50429,50430,50431,50435,50438,50441,50442,50443,50445,50447,50449,50450,50451,50452,50454,50458,50461,50462,50463,50466,50467,50470,50471,50472,50473,50476,50479,50480,50481,50484,50488,50490,50491,50494,50496,50498,50500,50504,50505,50506,50509,50510,50511,50515,50516,50517,50521,50522,50525,50526,50527,50530,50532,50534,50535,50536,50538,50542,50543,50546,50547,50549,50550,50552,50553,50557,50559,50562,50564,50565,50567,50568,50569,50571,50574,50575,50579,50581,50582,50583,50588,50591,50593,50595,50597,50599,50601,50603,50605,50607,50608,50610,50614,50615,50618,50619,50620,50627,\r\n50628,50633,50635,50637,50638,50640,50642,50644,50645,50646,50648,50649,50652,50655,50657,50658,50660,50661,50665,50666,50669,50670,50672,50674,50676,50683,50684,50685,50687,50688,50689,50691,50694,50695,50697,50699,50700,50702,50705,50707,50710,50714,50716,50718,50720,50721,50725,50727,50728,50732,50733,50737,50738,50739,50743,50744,50745,50747,50750,50751,50754,50755,50757,50760,50763,50765,50766,50767,50769,50770,50773,50774,50777,50780,50781,50784,50785,50787,50788,50791,50793,50794,50796,50797,50799,50800,50804,50806,50809,50810,50811,50812,50815,50816,50817,50822,50823,50825,50826,50830,50831,50833,50834,50835,50837,50838,50841,50845,50847,50849,50850,50852,50854,50856,50857,50861,50863,50864,50865,50868,50872,50874,50876,50877,50878,50880,50881,50884,50887,50888,50889,50891,50893,50897,50898,50902,50903,50906,50907,50908,50910,50911,50913,50914,50916,50921,50924,50926,50929,50932,50939,50940,50941,50945,50946,50949,50953,50954,50955,50960,50961,50963,50964,50966,50967,50968,50970,50975,50977,50979,50980,50983,50984,50985,50986,50988,50992,50993,50994,50995,50997,50998,51000,51001,51003,51004,51006,51009,51012,51013,51017,51018,51020,51022,51023,51026,51027,51028,51031,51032,51033,51038,51040,51041,51044,51045,51047,51048,51050,51052,51053,51056,51057,51060,51061,51064,51067,51068,51069,51071,51074,51076,51079,51080,51081,51082,51085,51086,51087,51089,51090,51092,51094,51095,51096,51098,51101,51102,51104,51105,51108,51112,51114,51115,51117,51120,51122,51123,51124,51128,51130,51132,51133,51136,51139,51140,51142,51146,51147,51149,51152,51153,51156,51161,51162,51163,51165,51167,51170,51171,51174,51176,51177,51178,51181,51182,51183,51186,51188,51189,51193,51195,51199,51200,51201,51203,51204,51207,51208,51210,51214,51218,51219,51223,51227,51228,51232,51233,51234,51239,51242,51245,51247,51248,51249,51252,51254,51255,51256,51258,51259,51263,51266,51267,51268,51270,51272,51275,51277,51278,51280,51281,51282,51285,51289,51290,51291,51293,51294,51297,51299,51301,51303,51305,51306,51310,51314,51315,51316,51319,51320,51321,\r\n51322,51326,51327,51330,51332,51334,51336,51338,51341,51343,51345,51348,51350,51351,51353,51354,51355,51357,51359,51360,51362,51364,51365,51367,51368,51369,51371,51372,51374,51375,51376,51378,51381,51385,51387,51392,51394,51395,51397,51400,51401,51402,51404,51405,51407,51408,51409,51412,51416,51417,51421,51425,51427,51428,51429,51430,51432,51434,51435,51436,51439,51443,51446,51447,51448,51452,51454,51455,51458,51461,51463,51464,51468,51469,51473,51475,51476,51479,51480,51481,51483,51487,51491,51493,51494,51495,51496,51498,51499,51501,51502,51506,51507,51509,51512,51514,51515,51516,51517,51521,51522,51525,51528,51530,51533,51535,51537,51539,51542,51544,51545,51548,51549,51554,51555,51557,51560,51563,51564,51566,51568,51569,51570,51574,51575,51576,51578,51579,51584,51587,51591,51595,51597,51600,51603,51607,51610,51611,51612,51615,51619,51620,51622,51624,51625,51629,51630,51631,51635,51637,51638,51640,51641,51642,51644,51648,51651,51652,51657,51658,51662,51663,51665,51666,51667,51670,51673,51676,51680,51682,51683,51685,51689,51690,51693,51697,51700,51701,51703,51704,51706,51711,51716,51717,51718,51719,51720,51721,51723,51724,51726,51728,51730,51731,51732,51733,51735,51737,51738,51740,51742,51743,51745,51746,51747,51748,51751,51752,51753,51757,51758,51759,51760,51763,51766,51768,51769,51771,51772,51776,51777,51779,51780,51781,51783,51784,51786,51787,51790,51791,51793,51794,51796,51797,51799,51801,51802,51806,51807,51810,51812,51813,51817,51818,51820,51821,51823,51824,51826,51828,51831,51835,51836,51837,51838,51841,51842,51843,51845,51846,51848,51849,51850,51852,51853,51855,51857,51859,51861,51863,51864,51865,51867,51872,51873,51874,51876,51878,51879,51880,51883,51884,51886,51888,51890,51892,51894,51896,51897,51900,51901,51904,51905,51908,51910,51912,51913,51916,51919,51920,51921,51922,51924,51926,51929,51930,51933,51935,51936,51937,51940,51941,51942,51943,51947,51948,51951,51952,51954,51956,51958,51959,51960,51962,51965,51969,51970,51972,51974,51975,51976,51978,51979,51982,51983,51984,51986,51988,51989,51991,51992,51993,\r\n51995,51996,52000,52001,52002,52007,52009,52012,52015,52016,52017,52018,52021,52025,52029,52033,52034,52035,52037,52039,52040,52041,52043,52044,52045,52047,52050,52052,52055,52056,52059,52061,52063,52066,52070,52072,52074,52077,52078,52082,52083,52085,52086,52088,52089,52091,52092,52093,52095,52096,52098,52101,52105,52109,52110,52114,52115,52116,52118,52120,52121,52124,52127,52128,52130,52131,52132,52134,52135,52137,52140,52144,52145,52147,52148,52149,52150,52152,52154,52156,52157,52158,52164,52168,52170,52171,52174,52177,52178,52180,52181,52183,52185,52189,52190,52192,52193,52194,52196,52198,52201,52202,52203,52206,52207,52209,52214,52215,52217,52218,52219,52221,52225,52228,52229,52230,52234,52235,52236,52237,52239,52240,52242,52245,52248,52249,52251,52252,52254,52255,52258,52259,52262,52264,52266,52268,52270,52272,52274,52275,52277,52278,52280,52282,52284,52285,52287,52288,52290,52292,52295,52296,52298,52299,52300,52302,52304,52305,52307,52308,52313,52314,52318,52319,52321,52323,52325,52326,52328,52330,52331,52332,52334,52337,52339,52343,52344,52346,52347,52349,52351,52355,52357,52359,52360,52362,52367,52370,52371,52373,52374,52376,52377,52380,52382,52384,52385,52388,52391,52394,52395,52397,52398,52399,52401,52403,52404,52407,52409,52411,52413,52415,52416,52418,52421,52423,52424,52426,52429,52430,52431,52435,52438,52440,52442,52446,52448,52450,52451,52452,52454,52455,52457,52458,52459,52461,52463,52465,52466,52468,52477,52480,52481,52482,52484,52487,52489,52490,52492,52493,52494,52499,52501,52502,52503,52506,52507,52509,52510,52512,52516,52518,52519,52521,52523,52525,52528,52530,52531,52534,52535,52537,52538,52539,52541,52543,52544,52546,52549,52553,52554,52556,52558,52559,52561,52564,52565,52566,52571,52574,52577,52580,52582,52586,52589,52590,52591,52593,52596,52600,52601,52603,52604,52605,52608,52609,52611,52612,52614,52615,52618,52619,52620,52623,52625,52626,52627,52629,52631,52632,52635,52636,52638,52639,52641,52643,52645,52649,52651,52652,52653,52655,52657,52659,52660,52663,52666,52667,52669,52670,52671,52673,\r\n52675,52676,52677,52678,52680,52681,52683,52684,52687,52688,52689,52691,52692,52693,52695,52700,52701,52702,52706,52708,52710,52712,52713,52715,52716,52719,52720,52723,52726,52728,52730,52733,52734,52735,52739,52740,52744,52746,52748,52749,52750,52752,52753,52756,52757,52759,52761,52763,52764,52765,52767,52769,52772,52773,52775,52776,52780,52784,52785,52788,52792,52793,52796,52798,52800,52802,52803,52805,52807,52809,52811,52812,52813,52815,52817,52818,52820,52821,52824,52825,52827,52828,52831,52832,52833,52838,52841,52842,52844,52846,52847,52849,52851,52853,52854,52856,52858,52859,52860,52861,52864,52866,52868,52869,52871,52872,52874,52875,52880,52882,52883,52885,52887,52889,52890,52893,52894,52896,52899,52900,52902,52905,52906,52908,52911,52912,52915,52916,52918,52919,52920,52921,52925,52927,52929,52934,52935,52938,52940,52942,52943,52945,52946,52947,52948,52952,52953,52955,52956,52958,52959,52963,52966,52967,52970,52971,52973,52974,52975,52977,52978,52980,52982,52985,52988,52989,52990,52992,52994,52997,52999,53003,53005,53006,53008,53011,53013,53014,53017,53019,53020,53022,53025,53027,53028,53029,53031,53033,53036,53037,53038,53041,53042,53043,53044,53046,53047,53049,53051,53052,53054,53055,53059,53061,53063,53066,53067,53068,53070,53071,53075,53076,53078,53080,53082,53084,53087,53090,53091,53092,53094,53098,53101,53103,53104,53106,53107,53110,53111,53114,53115,53117,53118,53121,53123,53124,53128,53130,53132,53134,53135,53137,53138,53139,53140,53142,53146,53148,53151,53155,53156,53157,53161,53163,53168,53169,53170,53172,53173,53177,53180,53182,53183,53184,53186,53189,53192,53194,53195,53196,53199,53201,53202,53205,53208,53210,53212,53213,53214,53218,53220,53222,53223,53225,53226,53227,53229,53231,53232,53233,53236,53239,53242,53246,53248,53249,53252,53253,53255,53256,53260,53261,53264,53265,53266,53268,53270,53272,53277,53280,53281,53283,53285,53286,53287,53289,53291,53292,53293,53297,53298,53299,53301,53305,53306,53307,53308,53310,53315,53317,53318,53320,53321,53323,53324,53325,53326,53329,53331,53333,53336,53337,\r\n53339,53341,53344,53345,53347,53349,53351,53352,53353,53355,53356,53358,53359,53361,53365,53366,53369,53370,53371,53374,53377,53378,53380,53381,53383,53385,53386,53388,53393,53394,53399,53401,53404,53406,53407,53410,53411,53413,53414,53415,53417,53418,53419,53421,53422,53425,53428,53431,53433,53435,53436,53437,53440,53444,53446,53447,53448,53449,53451,53452,53455,53456,53457,53459,53461,53462,53465,53467,53469,53471,53473,53475,53476,53478,53480,53481,53483,53484,53486,53489,53491,53492,53493,53496,53497,53500,53501,53504,53505,53507,53508,53510,53511,53515,53519,53522,53525,53527,53528,53529,53530,53532,53533,53535,53540,53541,53543,53545,53548,53549,53550,53552,53554,53556,53559,53561,53562,53565,53566,53569,53570,53571,53573,53576,53577,53581,53582,53585,53586,53587,53591,53594,53596,53597,53599,53600,53602,53605,53606,53607,53610,53612,53613,53614,53617,53620,53621,53623,53625,53627,53628,53630,53633,53636,53637,53638,53641,53644,53646,53647,53650,53651,53652,53657,53659,53661,53663,53664,53666,53669,53671,53672,53673,53675,53676,53678,53679,53681,53682,53684,53686,53688,53689,53693,53696,53697,53698,53700,53701,53703,53706,53707,53709,53714,53716,53717,53720,53722,53724,53726,53727,53730,53732,53734,53735,53738,53741,53742,53744,53745,53748,53749,53751,53753,53754,53756,53758,53759,53763,53764,53766,53768,53769,53771,53773,53774,53777,53780,53781,53782,53784,53787,53789,53790,53794,53796,53798,53799,53801,53803,53806,53809,53810,53811,53813,53814,53815,53819,53820,53821,53824,53826,53828,53829,53831,53832,53834,53835,53838,53839,53841,53845,53848,53849,53850,53852,53854,53855,53858,53860,53861,53863,53864,53867,53869,53873,53874,53876,53877,53878,53880,53882,53883,53886,53889,53891,53894,53895,53897,53898,53899,53902,53903,53905,53906,53909,53910,53912,53913,53916,53918,53919,53923,53924,53926,53928,53929,53931,53932,53934,53937,53940,53942,53943,53944,53948,53949,53952,53953,53956,53958,53959,53961,53962,53964,53967,53969,53970,53973,53974,53977,53978,53980,53982,53984,53986,53987,53989,53990,53992,53993,53996,\r\n53998,54000,54002,54003,54005,54007,54008,54012,54015,54016,54018,54019,54023,54025,54027,54029,54030,54031,54035,54037,54040,54043,54045,54046,54048,54049,54052,54055,54058,54061,54062,54064,54065,54066,54067,54069,54070,54072,54074,54075,54076,54078,54082,54085,54087,54088,54090,54091,54093,54095,54096,54098,54099,54102,54103,54107,54109,54111,54113,54115,54117,54119,54121,54122,54123,54126,54130,54131,54132,54134,54137,54139,54140,54141,54143,54144,54146,54147,54148,54151,54152,54153,54156,54158,54159,54161,54162,54163,54166,54167,54168,54169,54172,54173,54176,54178,54179,54181,54184,54185,54187,54190,54194,54197,54199,54202,54203,54205,54207,54209,54212,54214,54216,54217,54220,54221,54222,54224,54226,54227,54228,54230,54231,54232,54239,54242,54243,54245,54246,54247,54249,54251,54253,54254,54256,54257,54259,54264,54265,54268,54270,54271,54275,54277,54279,54280,54282,54284,54285,54286,54289,54292,54296,54297,54298,54300,54301,54304,54305,54306,54307,54310,54314,54316,54317,54319,54320,54323,54325,54326,54329,54331,54332,54333,54335,54336,54337,54339,54340,54342,54344,54345,54348,54350,54351,54353,54354,54355,54359,54361,54363,54367,54368,54371,54373,54377,54379,54381,54382,54384,54385,54388,54389,54390,54392,54394,54396,54397,54399,54400,54403,54405,54406,54408,54409,54412,54415,54416,54417,54419,54420,54422,54424,54427,54429,54430,54433,54436,54437,54438,54440,54442,54444,54446,54447,54449,54450,54454,54455,54456,54459,54460,54462,54465,54466,54468,54471,54473,54476,54482,54483,54484,54486,54489,54493,54494,54496,54497,54499,54500,54502,54505,54506,54508,54509,54512,54517,54518,54519,54520,54522,54525,54526,54529,54531,54533,54535,54537,54538,54541,54544,54546,54548,54550,54551,54554,54556,54558,54559,54562,54566,54567,54569,54571,54574,54576,54578,54579,54581,54582,54583,54585,54586,54588,54592,54594,54597,54602,54603,54605,54606,54611,54613,54615,54616,54619,54620,54621,54623,54627,54629,54630,54631,54633,54635,54636,54638,54640,54643,54644,54646,54647,54649,54650,54652,54658,54659,54661,54662,54663,54666,54668,\r\n54671,54673,54674,54675,54678,54680,54682,54683,54684,54686,54687,54690,54691,54694,54697,54698,54700,54702,54703,54706,54707,54709,54710,54712,54715,54717,54719,54721,54722,54725,54726,54727,54729,54731,54734,54736,54738,54739,54743,54745,54746,54748,54751,54753,54758,54761,54762,54763,54765,54766,54768,54770,54772,54775,54778,54780,54783,54784,54787,54788,54789,54790,54793,54795,54796,54798,54802,54806,54809,54810,54812,54814,54816,54818,54819,54821,54822,54823,54826,54830,54832,54833,54834,54836,54837,54838,54841,54845,54848,54849,54851,54854,54855,54857,54858,54860,54862,54865,54869,54870,54871,54873,54875,54876,54881,54882,54883,54885,54886,54888,54889,54895,54896,54897,54901,54902,54903,54904,54907,54910,54911,54912,54914,54915,54917,54918,54919,54921,54923,54925,54928,54931,54933,54935,54937,54939,54941,54945,54946,54948,54950,54952,54954,54958,54960,54961,54963,54966,54968,54969,54972,54985,54986,54988,54989,54990,54992,54995,54997,54998,54999,55002,55005,55009,55011,55012,55014,55015,55018,55019,55020,55021,55025,55028,55030,55031,55032,55035,55036,55038,55039,55041,55042,55044,55045,55047,55048,55050,55052,55054,55056,55058,55061,55062,55063,55065,55066,55068,55069,55072,55076,55078,55079,55080,55084,55086,55090,55091,55092,55093,55095,55096,55102,55104,55106,55107,55109,55111,55113,55115,55117,55118,55119,55120,55123,55126,55130,55131,55132,55135,55136,55138,55142,55143,55145,55148,55149,55151,55153,55156,55160,55161,55163,55168,55169,55170,55171,55174,55175,55177,55179,55180,55182,55185,55187,55193,55195,55198,55199,55201,55203,55207,55210,55213,55214,55215,55217,55219,55220,55221,55224,55227,55228,55230,55233,55234,55238,55243,55244,55247,55250,55252,55255,55257,55258,55261,55262,55263,55264,55266,55268,55269,55271,55272,55273,55276,55277,55280,55282,55285,55288,55289,55291,55292,55294,55295,55297,55298,55299,55301,55302,55304,55306,55307,55309,55310,55311,55315,55318,55319,55321,55322,55323,55325,55326,55329,55331,55334,55336,55340,55341,55343,55345,55347,55348,55351,55354,55356,55360,55362,55364,55365,\r\n55368,55369,55372,55373,55376,55378,55380,55383,55387,55388,55390,55391,55392,55393,55396,55397,55399,55401,55403,55404,55405,55407,55411,55412,55413,55415,55418,55419,55420,55422,55423,55425,55427,55429,55430,55431,55434,55436,55438,55439,55441,55442,55447,55448,55449,55454,55455,55457,55458,55461,55462,55464,55467,55468,55470,55473,55475,55476,55481,55484,55486,55487,55488,55491,55493,55494,55499,55500,55502,55504,55505,55507,55509,55511,55513,55516,55517,55518,55519,55522,55523,55524,55526,55527,55528,55530,55533,55537,55538,55540,55541,55542,55544,55547,55549,55550,55552,55553,55554,55555,55558,55559,55560,55562,55563,55565,55571,55572,55574,55576,55577,55580,55581,55583,55585,55586,55587,55589,55590,55591,55593,55596,55602,55604,55607,55609,55611,55612,55616,55618,55619,55621,55623,55626,55628,55630,55631,55634,55635,55640,55641,55644,55645,55648,55650,55651,55653,55654,55657,55658,55660,55662,55664,55667,55670,55671,55672,55674,55675,55678,55679,55681,55683,55685,55688,55689,55690,55693,55695,55698,55700,55701,55703,55704,55709,55710,55712,55713,55715,55716,55718,55719,55721,55722,55726,55727,55729,55731,55739,55742,55743,55748,55749,55750,55752,55755,55759,55761,55762,55765,55766,55767,55771,55772,55773,55776,55778,55779,55780,55782,55788,55790,55792,55795,55796,55797,55798,55800,55804,55805,55807,55810,55812,55814,55818,55819,55823,55825,55826,55828,55829,55830,55832,55833,55837,55839,55841,55843,55846,55848,55850,55851,55855,55856,55857,55859,55862,55865,55867,55868,55870,55874,55875,55878,55880,55881,55883,55885,55886,55887,55889,55890,55892,55893,55895,55898,55901,55902,55907,55908,55911,55912,55914,55917,55919,55920,55921,55924,55926,55929,55930,55931,55933,55934,55936,55938,55939,55941,55943,55945,55947,55948,55950,55951,55954,55955,55957,55958,55959,55960,55964,55965,55967,55969,55971,55972,55975,55976,55978,55981,55982,55984,55985,55987,55989,55990,55994,55996,56000,56001,56005,56006,56007,56008,56011,56014,56015,56017,56018,56020,56022,56024,56025,56029,56030,56032,56033,56034,56036,56037,56042,56043,\r\n56045,56046,56048,56049,56050,56053,56054,56055,56057,56058,56063,56064,56066,56068,56072,56073,56074,56076,56077,56079,56082,56085,56088,56091,56092,56094,56098,56099,56100,56102,56104,56105,56106,56107,56110,56111,56113,56114,56117,56118,56120,56123,56125,56127,56128,56131,56133,56134,56136,56138,56139,56142,56143,56145,56150,56151,56152,56156,56157,56161,56163,56165,56167,56168,56170,56171,56172,56173,56175,56177,56178,56181,56185,56186,56187,56189,56192,56194,56195,56196,56197,56200,56203,56204,56206,56208,56210,56213,56216,56217,56221,56225,56226,56227,56229,56233,56234,56236,56237,56239,56242,56243,56245,56246,56249,56251,56252,56253,56256,56257,56261,56262,56263,56265,56266,56268,56270,56271,56273,56274,56278,56279,56280,56282,56284,56287,56290,56291,56295,56297,56299,56303,56305,56306,56307,56308,56311,56315,56316,56317,56321,56322,56325,56326,56329,56330,56333,56334,56337,56339,56341,56342,56343,56344,56346,56347,56350,56351,56352,56356,56357,56360,56361,56363,56366,56368,56369,56370,56372,56374,56375,56377,56379,56383,56384,56385,56386,56389,56391,56394,56395,56397,56399,56400,56404,56406,56407,56410,56411,56413,56416,56417,56420,56421,56422,56424,56426,56429,56430,56435,56437,56438,56442,56445,56449,56450,56451,56454,56457,56459,56460,56461,56463,56465,56466,56467,56469,56470,56473,56474,56475,56477,56479,56481,56483,56484,56487,56491,56492,56493,56494,56496,56497,56501,56503,56504,56507,56508,56509,56511,56513,56515,56517,56520,56522,56523,56524,56527,56530,56531,56532,56533,56537,56538,56541,56543,56546,56548,56551,56553,56557,56561,56562,56563,56567,56568,56573,56575,56576,56578,56581,56584,56586,56588,56591,56592,56594,56597,56598,56600,56601,56604,56608,56609,56611,56612,56614,56615,56616,56617,56620,56622,56624,56625,56626,56629,56630,56632,56634,56635,56638,56640,56642,56643,56644,56646,56647,56650,56651,56654,56656,56658,56660,56662,56665,56666,56669,56672,56673,56675,56676,56680,56682,56683,56687,56689,56691,56693,56696,56697,56699,56702,56703,56706,56708,56709,56711,56712,56716,56718,56720,56722,\r\n56723,56725,56727,56728,56730,56731,56733,56738,56739,56740,56744,56746,56747,56748,56749,56751,56752,56755,56759,56760,56764,56766,56768,56770,56772,56775,56776,56778,56782,56783,56784,56786,56787,56788,56790,56791,56793,56797,56800,56801,56802,56804,56805,56806,56808,56811,56812,56815,56816,56817,56819,56821,56824,56827,56830,56832,56834,56835,56838,56839,56843,56844,56845,56848,56849,56850,56854,56856,56857,56860,56863,56865,56867,56868,56870,56873,56874,56878,56879,56880,56882,56883,56885,56887,56890,56891,56894,56895,56896,56898,56900,56901,56905,56906,56907,56911,56912,56913,56917,56918,56919,56921,56922,56924,56926,56928,56929,56933,56935,56936,56938,56939,56940,56941,56943,56946,56947,56949,56950,56952,56954,56955,56957,56959,56962,56966,56968,56969,56970,56974,56975,56976,56977,56979,56983,56984,56986,56988,56993,56994,56996,56997,56998,57002,57004,57006,57008,57010,57012,57014,57016,57018,57020,57021,57022,57024,57027,57028,57032,57033,57034,57037,57039,57040,57042,57044,57045,57046,57049,57050,57051,57052,57056,57057,57058,57062,57063,57065,57066,57071,57073,57074,57075,57078,57080,57082,57083,57086,57088,57089,57090,57092,57093,57096,57098,57100,57102,57104,57105,57108,57109,57112,57114,57118,57119,57120,57122,57123,57124,57127,57130,57133,57135,57137,57138,57140,57141,57143,57144,57149,57152,57153,57155,57158,57159,57164,57167,57168,57171,57173,57174,57175,57177,57181,57182,57183,57184,57186,57187,57190,57193,57196,57197,57198,57199,57203,57204,57206,57207,57209,57211,57212,57214,57215,57217,57218,57219,57222,57224,57225,57227,57228,57230,57232,57234,57235,57237,57238,57241,57243,57245,57246,57247,57250,57252,57256,57258,57259,57261,57264,57268,57269,57270,57271,57273,57274,57276,57280,57281,57282,57284,57286,57288,57290,57293,57294,57296,57297,57298,57302,57304,57305,57307,57309,57311,57314,57316,57318,57319,57321,57323,57325,57326,57327,57331,57332,57335,57336,57337,57339,57342,57343,57346,57347,57350,57351,57353,57356,57357,57358,57361,57364,57365,57366,57367,57371,57374,57376,57377,57378,57381,57384,\r\n57386,57387,57388,57390,57392,57393,57394,57396,57399,57401,57402,57404,57407,57408,57410,57412,57413,57415,57419,57420,57422,57423,57424,57426,57427,57431,57434,57437,57439,57440,57443,57444,57447,57449,57451,57453,57454,57456,57458,57459,57461,57462,57466,57467,57468,57469,57473,57475,57476,57477,57482,57484,57487,57489,57491,57493,57494,57496,57498,57502,57503,57505,57507,57509,57510,57511,57514,57516,57521,57522,57523,57525,57529,57530,57531,57533,57534,57536,57537,57538,57540,57543,57544,57546,57547,57551,57553,57554,57555,57560,57561,57563,57565,57569,57571,57572,57574,57575,57576,57577,57580,57581,57584,57586,57587,57588,57590,57593,57594,57598,57599,57601,57604,57605,57606,57609,57610,57612,57613,57616,57617,57619,57622,57623,57624,57628,57632,57633,57634,57636,57637,57639,57642,57644,57645,57647,57648,57650,57651,57653,57654,57655,57657,57658,57661,57662,57663,57668,57669,57671,57672,57677,57679,57682,57683,57686,57687,57688,57690,57693,57694,57697,57698,57699,57701,57702,57706,57708,57709,57712,57713,57715,57718,57721,57722,57723,57725,57727,57729,57732,57734,57735,57738,57740,57741,57743,57745,57746,57748,57750,57751,57754,57757,57758,57759,57761,57762,57767,57768,57769,57772,57775,57777,57779,57780,57781,57783,57785,57786,57790,57791,57793,57794,57795,57797,57802,57803,57804,57805,57808,57810,57812,57815,57816,57818,57819,57820,57822,57825,57826,57828,57829,57832,57834,57835,57839,57841,57842,57844,57846,57848,57850,57851,57857,57858,57861,57862,57865,57866,57868,57869,57870,57873,57875,57878,57881,57882,57884,57885,57886,57888,57892,57893,57894,57895,57898,57901,57902,57903,57907,57910,57912,57917,57919,57920,57921,57923,57924,57928,57929,57931,57932,57935,57936,57938,57939,57942,57946,57948,57950,57951,57952,57955,57957,57961,57964,57967,57968,57971,57973,57974,57976,57977,57978,57979,57982,57983,57984,57985,57988,57990,57991,57995,57998,58000,58002,58003,58005,58008,58010,58011,58013,58014,58015,58018,58021,58022,58024,58026,58028,58029,58031,58032,58033,58036,58038,58039,58041,58043,58045,58049,58051,\r\n58052,58054,58055,58057,58058,58060,58062,58064,58066,58068,58069,58071,58073,58074,58075,58078,58080,58082,58083,58085,58087,58088,58089,58090,58092,58093,58096,58097,58099,58100,58101,58103,58105,58109,58110,58112,58115,58116,58119,58121,58122,58126,58127,58129,58130,58133,58136,58138,58139,58140,58145,58148,58149,58150,58152,58155,58157,58158,58159,58161,58163,58165,58166,58167,58168,58170,58172,58174,58176,58181,58183,58185,58186,58189,58190,58192,58196,58199,58200,58202,58203,58206,58211,58212,58214,58216,58219,58222,58223,58224,58225,58228,58230,58234,58238,58239,58241,58242,58246,58247,58250,58251,58253,58254,58255,58259,58260,58262,58263,58264,58268,58270,58271,58272,58274,58277,58278,58280,58282,58283,58285,58286,58287,58291,58292,58294,58295,58296,58298,58301,58303,58306,58307,58308,58311,58313,58316,58318,58321,58322,58324,58325,58327,58329,58331,58332,58335,58337,58338,58340,58343,58344,58347,58350,58351,58354,58356,58358,58360,58361,58364,58365,58366,58369,58373,58375,58376,58378,58379,58381,58382,58385,58386,58390,58391,58392,58393,58395,58397,58399,58401,58402,58404,58406,58407,58408,58412,58413,58415,58417,58418,58420,58422,58426,58430,58431,58432,58436,58438,58440,58443,58444,58448,58450,58451,58452,58455,58456,58458,58460,58461,58462,58464,58466,58467,58470,58471,58473,58476,58479,58481,58483,58484,58485,58486,58488,58491,58493,58495,58497,58499,58500,58503,58506,58509,58510,58512,58515,58516,58518,58522,58524,58526,58529,58532,58534,58535,58537,58539,58544,58545,58546,58549,58552,58553,58555,58557,58561,58563,58564,58568,58570,58571,58572,58574,58575,58577,58578,58581,58584,58586,58587,58589,58590,58595,58597,58598,58599,58600,58603,58606,58608,58609,58611,58612,58616,58617,58618,58620,58623,58626,58630,58631,58633,58637,58638,58639,58642,58644,58646,58647,58648,58650,58651,58654,58656,58657,58659,58660,58663,58666,58667,58669,58671,58673,58676,58679,58680,58682,58684,58685,58686,58688,58691,58692,58694,58695,58697,58699,58700,58701,58703,58705,58707,58708,58712,58714,58718,58721,58722,58723,58726,\r\n58730,58731,58732,58734,58735,58738,58741,58742,58744,58746,58747,58749,58750,58753,58754,58755,58756,58759,58762,58763,58764,58769,58772,58773,58775,58776,58777,58779,58781,58782,58784,58785,58788,58790,58792,58794,58799,58801,58802,58803,58804,58806,58808,58811,58813,58814,58815,58819,58820,58821,58824,58827,58828,58830,58832,58834,58838,58839,58841,58844,58845,58846,58849,58852,58853,58854,58855,58859,58861,58862,58863,58867,58868,58870,58873,58877,58878,58880,58881,58882,58884,58886,58888,58894,58896,58898,58899,58901,58904,58907,58908,58910,58913,58914,58916,58918,58922,58923,58928,58931,58932,58934,58937,58940,58943,58945,58948,58949,58951,58953,58955,58956,58957,58959,58960,58963,58964,58965,58967,58969,58973,58975,58977,58978,58981,58982,58984,58985,58987,58988,58989,58990,58993,58994,58995,58996,58999,59000,59003,59005,59008,59009,59010,59014,59016,59017,59019,59020,59022,59023,59025,59026,59030,59031,59032,59034,59039,59041,59042,59043,59045,59047,59048,59051,59053,59054,59056,59059,59062,59063,59065,59066,59067,59068,59071,59072,59075,59076,59078,59081,59082,59086,59089,59091,59092,59096,59097,59101,59102,59104,59105,59108,59110,59113,59114,59115,59119,59120,59123,59126,59127,59128,59130,59132,59134,59136,59138,59140,59142,59146,59148,59149,59151,59156,59157,59158,59162,59163,59166,59167,59169,59173,59176,59178,59180,59181,59184,59185,59187,59189,59192,59195,59196,59198,59200,59203,59204,59206,59208,59209,59213,59215,59218,59222,59225,59226,59228,59231,59232,59234,59235,59237,59238,59240,59242,59243,59244,59248,59249,59251,59253,59255,59256,59257,59260,59261,59264,59265,59267,59269,59270,59272,59273,59275,59277,59278,59282,59283,59284,59287,59288,59290,59292,59294,59297,59299,59300,59301,59302,59305,59306,59309,59311,59312,59314,59316,59317,59320,59321,59322,59324,59326,59327,59328,59329,59331,59333,59334,59337,59339,59341,59342,59343,59345,59347,59348,59350,59351,59353,59357,59359,59360,59361,59362,59365,59368,59369,59372,59373,59378,59381,59383,59384,59386,59388,59389,59391,59393,59394,59395,59399,59402,\r\n59404,59406,59408,59409,59414,59416,59417,59419,59421,59422,59424,59427,59431,59433,59438,59441,59442,59446,59447,59449,59451,59452,59454,59456,59457,59461,59462,59463,59464,59468,59470,59471,59473,59476,59480,59482,59485,59487,59490,59491,59493,59498,59499,59500,59503,59506,59509,59511,59513,59515,59516,59518,59520,59524,59525,59529,59531,59533,59536,59537,59539,59542,59544,59545,59547,59549,59550,59551,59554,59555,59556,59557,59559,59560,59563,59564,59566,59568,59569,59571,59573,59574,59575,59577,59578,59580,59582,59583,59587,59588,59589,59592,59594,59595,59597,59600,59601,59603,59607,59612,59613,59614,59616,59618,59620,59621,59623,59624,59625,59626,59628,59629,59631,59633,59634,59636,59638,59639,59640,59641,59645,59646,59647,59650,59653,59656,59659,59663,59665,59667,59669,59670,59672,59673,59675,59677,59681,59683,59684,59685,59687,59688,59692,59693,59696,59698,59699,59700,59702,59703,59707,59710,59713,59714,59717,59720,59721,59723,59725,59726,59727,59732,59733,59734,59736,59741,59742,59743,59745,59748,59751,59752,59756,59757,59758,59760,59762,59763,59765,59766,59768,59770,59773,59775,59778,59781,59785,59786,59787,59791,59794,59795,59796,59797,59800,59802,59803,59805,59806,59809,59813,59814,59815,59817,59819,59821,59823,59825,59826,59827,59829,59831,59834,59837,59840,59841,59843,59844,59845,59847,59848,59852,59853,59854,59856,59857,59859,59861,59863,59864,59865,59866,59869,59872,59873,59874,59876,59878,59881,59882,59883,59884,59886,59889,59891,59893,59895,59898,59899,59902,59905,59906,59909,59911,59912,59913,59915,59917,59919,59922,59926,59927,59928,59929,59931,59932,59934,59935,59937,59939,59941,59942,59943,59944,59946,59947,59950,59952,59955,59957,59958,59961,59966,59967,59969,59971,59973,59976,59980,59982,59984,59987,59989,59990,59991,59992,59994,59997,60001,60002,60003,60004,60007,60010,60012,60015,60017,60019,60022,60024,60026,60028,60030,60031,60033,60035,60038,60040,60042,60043,60045,60048,60051,60052,60055,60056,60057,60059,60062,60064,60065,60067,60069,60071,60073,60074,60076,60077,60079,60080,60082,60085,\r\n60088,60090,60093,60097,60101,60103,60104,60106,60108,60109,60111,60113,60114,60117,60118,60121,60122,60125,60126,60127,60129,60133,60134,60137,60138,60139,60141,60142,60144,60145,60147,60148,60150,60152,60153,60156,60157,60161,60164,60166,60167,60168,60170,60171,60172,60175,60176,60178,60179,60180,60181,60183,60185,60186,60188,60189,60190,60192,60197,60198,60201,60202,60204,60205,60208,60209,60210,60213,60216,60217,60221,60222,60224,60225,60226,60229,60231,60233,60235,60236,60237,60239,60240,60243,60246,60249,60250,60252,60254,60255,60256,60259,60260,60263,60266,60267,60269,60271,60273,60275,60277,60279,60280,60283,60284,60286,60287,60288,60289,60292,60294,60296,60298,60302,60305,60306,60307,60310,60312,60314,60317,60318,60320,60322,60324,60326,60327,60330,60332,60334,60337,60338,60341,60344,60345,60346,60349,60350,60351,60356,60357,60358,60362,60364,60365,60366,60370,60372,60374,60375,60377,60380,60381,60384,60388,60391,60394,60397,60400,60401,60403,60404,60405,60407,60409,60410,60412,60414,60416,60417,60419,60423,60426,60427,60430,60434,60436,60437,60438,60442,60446,60448,60449,60452,60453,60456,60458,60459,60460,60462,60463,60467,60469,60470,60472,60475,60477,60478,60482,60484,60485,60486,60489,60491,60492,60493,60495,60496,60498,60499,60501,60503,60505,60506,60507,60508,60512,60513,60515,60517,60518,60519,60521,60523,60524,60525,60526,60529,60530,60532,60534,60536,60537,60538,60540,60542,60544,60545,60547,60549,60551,60553,60554,60555,60557,60559,60560,60562,60563,60564,60565,60567,60569,60571,60572,60575,60577,60579,60582,60583,60589,60590,60591,60593,60595,60599,60601,60602,60603,60606,60609,60610,60613,60615,60616,60618,60622,60624,60625,60628,60629,60632,60634,60636,60637,60639,60640,60642,60645,60646,60648,60649,60653,60656,60657,60659,60661,60663,60665,60669,60670,60675,60679,60681,60683,60684,60686,60687,60688,60690,60691,60695,60697,60701,60702,60704,60706,60707,60709,60711,60712,60714,60716,60717,60720,60722,60723,60725,60728,60730,60731,60734,60736,60739,60741,60743,60744,60746,60748,60749,60752,60755,\r\n60756,60759,60760,60766,60770,60772,60773,60775,60778,60782,60784,60785,60788,60789,60790,60792,60793,60797,60798,60800,60802,60806,60809,60811,60812,60813,60814,60817,60818,60821,60824,60826,60828,60830,60832,60833,60834,60838,60841,60842,60844,60845,60847,60848,60849,60850,60852,60854,60857,60859,60860,60861,60863,60864,60867,60868,60870,60875,60878,60881,60882,60883,60887,60889,60890,60891,60893,60896,60897,60900,60902,60903,60908,60909,60911,60912,60917,60918,60920,60923,60926,60927,60929,60931,60932,60934,60935,60937,60938,60939,60941,60944,60946,60947,60949,60950,60952,60953,60954,60956,60958,60959,60962,60964,60965,60967,60968,60969,60970,60973,60974,60980,60981,60982,60985,60989,60991,60992,60993,60994,60997,60999,61001,61002,61007,61009,61011,61013,61016,61017,61018,61020,61023,61025,61026,61027,61030,61031,61032,61033,61035,61036,61039,61041,61042,61044,61045,61049,61051,61052,61054,61055,61056,61060,61062,61064,61065,61067,61068,61071,61072,61076,61077,61080,61081,61083,61088,61091,61095,61098,61100,61101,61105,61107,61112,61114,61115,61118,61119,61120,61122,61125,61127,61130,61131,61133,61134,61138,61140,61141,61144,61146,61148,61150,61153,61157,61159,61160,61162,61166,61168,61171,61172,61173,61174,61178,61181,61182,61183,61186,61188,61189,61192,61193,61195,61196,61198,61201,61202,61205,61206,61208,61210,61211,61212,61215,61217,61218,61220,61221,61222,61225,61228,61231,61232,61233,61235,61237,61241,61242,61244,61247,61248,61252,61254,61258,61260,61262,61263,61266,61267,61270,61277,61278,61279,61281,61282,61284,61287,61288,61290,61292,61293,61295,61296,61300,61303,61304,61305,61307,61310,61311,61313,61316,61318,61319,61321,61322,61323,61325,61326,61327,61329,61331,61334,61335,61337,61338,61339,61342,61343,61344,61346,61348,61349,61350,61352,61354,61356,61359,61361,61362,61367,61370,61373,61374,61377,61378,61382,61383,61384,61386,61391,61394,61397,61398,61399,61402,61403,61404,61407,61410,61412,61413,61415,61416,61418,61420,61421,61424,61425,61427,61429,61432,61433,61435,61436,61438,61439,61440,61442,61443,\r\n61447,61450,61451,61452,61456,61459,61463,61464,61466,61467,61468,61470,61472,61474,61477,61478,61479,61481,61483,61484,61487,61491,61492,61494,61497,61499,61500,61502,61505,61508,61510,61512,61513,61517,61518,61521,61524,61525,61528,61530,61532,61533,61536,61538,61540,61542,61546,61547,61549,61550,61552,61553,61554,61555,61558,61560,61562,61563,61565,61566,61567,61569,61570,61573,61574,61575,61577,61579,61581,61582,61585,61587,61591,61592,61595,61596,61597,61600,61602,61603,61607,61609,61610,61612,61615,61617,61620,61621,61625,61626,61628,61629,61631,61632,61634,61637,61640,61641,61643,61645,61649,61650,61654,61655,61657,61658,61661,61662,61664,61665,61669,61670,61671,61672,61675,61679,61681,61682,61684,61685,61687,61688,61690,61691,61692,61694,61695,61696,61699,61700,61702,61705,61706,61708,61709,61711,61712,61713,61715,61717,61722,61723,61725,61727,61730,61733,61735,61738,61740,61743,61748,61749,61750,61753,61755,61756,61759,61761,61762,61765,61768,61769,61770,61772,61773,61778,61779,61780,61783,61784,61786,61788,61791,61793,61794,61796,61798,61801,61802,61803,61805,61807,61808,61811,61812,61816,61818,61819,61822,61825,61826,61827,61830,61831,61833,61834,61836,61837,61839,61840,61843,61845,61846,61849,61852,61855,61856,61858,61860,61861,61866,61867,61870,61873,61876,61879,61883,61885,61886,61887,61888,61891,61892,61894,61895,61897,61898,61900,61904,61906,61907,61909,61911,61913,61914,61916,61917,61922,61924,61925,61927,61928,61930,61931,61934,61935,61936,61938,61939,61941,61945,61946,61948,61950,61952,61953,61956,61959,61961,61963,61964,61966,61969,61970,61973,61974,61978,61981,61983,61984,61987,61991,61993,61994,61995,61996,62000,62001,62004,62006,62007,62009,62010,62012,62015,62018,62020,62022,62024,62026,62027,62030,62033,62034,62035,62037,62039,62040,62041,62043,62044,62047,62048,62051,62052,62055,62057,62059,62060,62061,62062,62064,62066,62067,62069,62071,62074,62075,62078,62081,62083,62086,62087,62089,62090,62092,62094,62095,62098,62100,62101,62105,62107,62108,62109,62112,62113,62115,62117,62119,62120,62123,\r\n62124,62129,62130,62133,62135,62136,62137,62139,62140,62143,62144,62145,62147,62148,62149,62151,62153,62154,62156,62157,62161,62162,62163,62166,62168,62169,62170,62173,62175,62176,62180,62182,62183,62185,62187,62188,62191,62192,62193,62197,62198,62199,62203,62204,62207,62209,62210,62212,62213,62216,62218,62219,62221,62224,62225,62228,62229,62232,62235,62237,62239,62240,62242,62245,62247,62248,62251,62253,62256,62258,62259,62260,62262,62266,62268,62270,62272,62274,62275,62278,62279,62280,62281,62283,62285,62286,62289,62290,62292,62293,62296,62300,62301,62305,62306,62308,62311,62313,62314,62317,62319,62320,62323,62326,62327,62329,62330,62331,62332,62335,62337,62341,62343,62345,62346,62351,62352,62353,62355,62356,62360,62361,62362,62364,62365,62367,62368,62370,62375,62376,62378,62379,62381,62382,62385,62386,62390,62393,62394,62397,62398,62402,62404,62405,62406,62407,62410,62413,62414,62416,62418,62420,62421,62422,62426,62427,62428,62431,62432,62435,62436,62437,62440,62442,62444,62445,62447,62449,62451,62452,62455,62457,62461,62462,62464,62466,62467,62469,62470,62473,62475,62479,62482,62483,62484,62486,62487,62488,62490,62492,62494,62496,62499,62501,62502,62504,62505,62509,62512,62513,62514,62515,62518,62519,62520,62523,62524,62528,62530,62532,62534,62535,62536,62539,62540,62541,62543,62546,62547,62549,62550,62552,62554,62555,62556,62560,62562,62565,62567,62570,62573,62574,62575,62577,62578,62580,62581,62584,62587,62588,62590,62591,62592,62595,62598,62600,62602,62604,62605,62609,62610,62614,62615,62618,62620,62622,62624,62625,62628,62630,62632,62633,62635,62636,62638,62639,62640,62641,62643,62644,62648,62651,62652,62656,62657,62659,62662,62664,62666,62667,62670,62672,62675,62676,62678,62684,62685,62687,62688,62689,62693,62694,62695,62697,62698,62701,62702,62704,62705,62707,62710,62711,62714,62715,62719,62720,62722,62723,62725,62728,62731,62732,62733,62734,62737,62738,62739,62740,62744,62745,62749,62750,62752,62755,62759,62761,62762,62765,62768,62769,62774,62775,62777,62778,62781,62785,62786,62787,62788,62791,62792,62795,\r\n62796,62797,62800,62801,62803,62807,62810,62812,62813,62815,62816,62818,62820,62821,62825,62827,62829,62830,62833,62834,62837,62840,62842,62843,62846,62847,62848,62850,62851,62854,62855,62856,62860,62861,62864,62865,62866,62868,62871,62872,62874,62877,62879,62880,62882,62883,62884,62886,62888,62889,62891,62892,62895,62896,62898,62901,62905,62908,62910,62911,62913,62914,62916,62917,62920,62922,62923,62925,62929,62930,62931,62932,62936,62938,62941,62942,62943,62946,62948,62949,62951,62952,62954,62956,62958,62960,62961,62963,62965,62968,62969,62971,62972,62974,62976,62978,62980,62982,62984,62986,62987,62990,62991,62992,62995,62996,62998,63001,63002,63005,63006,63008,63009,63011,63014,63015,63018,63023,63026,63028,63029,63030,63032,63034,63037,63038,63040,63041,63043,63046,63048,63050,63052,63056,63058,63060,63061,63064,63066,63067,63071,63074,63077,63080,63081,63083,63086,63087,63089,63090,63092,63094,63096,63097,63100,63102,63103,63105,63109,63110,63111,63116,63117,63121,63122,63124,63125,63126,63127,63129,63130,63133,63135,63138,63140,63141,63145,63147,63148,63150,63151,63154,63157,63158,63160,63163,63164,63166,63167,63168,63169,63173,63175,63179,63181,63182,63184,63185,63186,63187,63190,63193,63195,63198,63200,63203,63206,63207,63209,63211,63214,63215,63216,63221,63223,63225,63226,63229,63232,63233,63234,63237,63238,63241,63242,63244,63246,63249,63251,63252,63253,63256,63259,63262,63263,63264,63265,63269,63270,63271,63274,63275,63277,63278,63279,63280,63282,63285,63288,63291,63293,63294,63296,63297,63298,63300,63302,63304,63305,63306,63308,63310,63311,63313,63314,63315,63316,63319,63323,63325,63326,63327,63331,63333,63335,63337,63340,63341,63342,63345,63347,63348,63350,63352,63353,63356,63357,63361,63365,63366,63369,63372,63375,63378,63379,63382,63384,63385,63387,63391,63392,63393,63395,63396,63397,63399,63401,63403,63406,63408,63409,63413,63415,63416,63418,63419,63422,63423,63424,63426,63427,63429,63431,63433,63435,63438,63439,63442,63443,63445,63446,63449,63451,63452,63453,63457,63460,63461,63462,63464,63465,63467,\r\n63468,63470,63471,63472,63474,63475,63478,63480,63482,63483,63488,63489,63492,63496,63497,63498,63500,63502,63503,63504,63506,63507,63511,63512,63515,63517,63518,63521,63524,63527,63528,63532,63533,63534,63537,63542,63543,63546,63550,63551,63554,63555,63556,63558,63559,63562,63563,63566,63567,63570,63571,63573,63575,63576,63581,63582,63583,63587,63589,63590,63592,63593,63595,63596,63598,63601,63602,63603,63604,63606,63609,63610,63613,63615,63619,63620,63621,63622,63626,63628,63630,63633,63635,63636,63638,63640,63641,63643,63644,63645,63647,63649,63653,63656,63657,63658,63660,63661,63663,63664,63667,63668,63669,63672,63674,63677,63679,63683,63684,63685,63687,63690,63692,63693,63698,63699,63702,63705,63707,63708,63711,63714,63719,63721,63722,63723,63724,63728,63729,63734,63736,63737,63738,63740,63743,63744,63748,63749,63751,63752,63753,63757,63760,63761,63762,63763,63766,63767,63769,63773,63774,63775,63779,63780,63781,63783,63784,63786,63787,63790,63792,63795,63797,63800,63802,63803,63806,63808,63812,63814,63815,63817,63819,63821,63823,63825,63830,63833,63835,63836,63837,63842,63844,63848,63849,63851,63852,63853,63855,63856,63859,63860,63861,63863,63865,63866,63867,63869,63870,63872,63873,63875,63877,63880,63882,63884,63887,63888,63892,63893,63894,63896,63898,63900,63903,63905,63906,63907,63909,63910,63912,63915,63917,63918,63920,63921,63923,63924,63926,63928,63929,63931,63932,63933,63935,63937,63939,63944,63946,63947,63948,63951,63953,63954,63956,63957,63959,63960,63962,63963,63965,63968,63969,63972,63974,63975,63976,63978,63980,63981,63984,63985,63989,63991,63992,63995,63997,63998,64000,64003,64006,64008,64010,64012,64015,64019,64020,64023,64024,64028,64029,64031,64032,64036,64038,64040,64041,64042,64046,64047,64051,64052,64053,64055,64056,64057,64059,64060,64064,64066,64067,64068,64070,64072,64073,64074,64077,64079,64080,64085,64087,64091,64094,64096,64098,64099,64101,64105,64106,64107,64109,64110,64113,64117,64118,64120,64124,64126,64127,64128,64130,64131,64134,64136,64137,64138,64140,64141,64144,64147,64149,64150,\r\n64153,64155,64159,64160,64161,64165,64166,64168,64170,64173,64175,64177,64179,64181,64182,64187,64189,64190,64193,64194,64197,64201,64202,64205,64208,64209,64213,64214,64215,64216,64218,64220,64221,64225,64226,64227,64228,64231,64235,64237,64239,64240,64242,64244,64246,64247,64248,64252,64253,64254,64256,64258,64259,64262,64263,64266,64268,64269,64272,64273,64275,64277,64279,64281,64284,64285,64288,64289,64291,64293,64295,64297,64301,64302,64305,64308,64309,64313,64314,64315,64317,64319,64321,64323,64324,64327,64330,64333,64334,64336,64338,64339,64342,64343,64345,64347,64350,64351,64353,64355,64356,64361,64362,64363,64365,64366,64370,64371,64375,64377,64379,64381,64382,64385,64386,64387,64389,64391,64392,64395,64396,64398,64403,64406,64408,64410,64411,64413,64414,64417,64418,64419,64421,64422,64424,64425,64429,64430,64432,64433,64434,64436,64437,64438,64442,64443,64445,64447,64448,64452,64455,64456,64458,64459,64461,64463,64465,64468,64469,64472,64475,64477,64478,64480,64484,64485,64488,64490,64491,64493,64494,64495,64499,64502,64505,64506,64507,64510,64511,64512,64513,64515,64517,64520,64522,64524,64525,64529,64530,64532,64533,64535,64537,64539,64541,64542,64545,64546,64549,64551,64553,64555,64556,64557,64558,64561,64564,64565,64566,64568,64570,64573,64576,64579,64580,64581,64583,64585,64586,64588,64590,64592,64593,64595,64596,64599,64600,64602,64606,64608,64610,64611,64612,64614,64617,64618,64621,64622,64624,64625,64628,64630,64631,64633,64634,64635,64640,64641,64644,64646,64648,64652,64653,64658,64661,64663,64664,64669,64672,64673,64675,64679,64681,64682,64683,64685,64687,64689,64691,64693,64694,64695,64698,64700,64701,64702,64704,64706,64707,64711,64712,64713,64716,64717,64719,64721,64722,64724,64725,64728,64729,64732,64735,64736,64738,64739,64742,64743,64747,64751,64752,64753,64755,64759,64762,64765,64766,64768,64771,64772,64775,64778,64779,64782,64784,64786,64790,64791,64792,64794,64796,64799,64802,64803,64805,64806,64810,64812,64814,64815,64817,64819,64820,64822,64824,64826,64827,64831,64835,64836,64839,64840,\r\n64842,64843,64845,64846,64848,64850,64852,64854,64858,64859,64861,64862,64864,64865,64866,64869,64871,64872,64874,64876,64877,64878,64881,64882,64885,64886,64888,64889,64890,64891,64893,64894,64896,64898,64901,64902,64906,64907,64909,64910,64912,64916,64917,64919,64920,64923,64926,64927,64930,64932,64934,64935,64938,64940,64942,64943,64946,64948,64952,64953,64956,64958,64960,64963,64964,64966,64970,64971,64975,64976,64977,64979,64981,64982,64983,64987,64988,64990,64991,64993,64996,64998,65001,65002,65005,65006,65008,65009,65011,65012,65013,65014,65016,65018,65020,65021,65023,65024,65025,65026,65030,65032,65033,65034,65035,65037,65040,65042,65043,65048,65051,65053,65054,65055,65056,65059,65060,65061,65063,65064,65066,65070,65072,65075,65076,65080,65082,65084,65086,65087,65090,65092,65093,65094,65095,65099,65101,65102,65103,65104,65106,65107,65110,65111,65113,65115,65117,65118,65121,65125,65126,65127,65129,65130,65132,65133,65135,65138,65140,65141,65143,65145,65149,65151,65155,65158,65159,65161,65164,65166,65167,65170,65171,65174,65175,65176,65178,65179,65181,65182,65184,65186,65187,65188,65191,65194,65195,65198,65200,65201,65202,65204,65205,65208,65209,65212,65213,65216,65218,65219,65220,65222,65223,65226,65229,65231,65233,65234,65236,65237,65239,65241,65243,65245,65247,65248,65250,65254,65256,65258,65260,65264,65265,65267,65268,65271,65274,65278,65281,65282,65284,65285,65286,65289,65292,65294,65295,65298,65299,65303,65305,65306,65309,65311,65315,65317,65321,65322,65326,65328,65332,65333,65334,65335,65339,65341,65342,65344,65347,65350,65353,65354,65355,65356,65358,65360,65361,65362,65364,65368,65369,65371,65374,65376,65379,65383,65385,65387,65388,65392,65393,65394,65395,65397,65399,65400,65403,65404,65408,65410,65411,65413,65416,65417,65418,65419,65421,65423,65426,65427,65429,65431,65433,65434,65436,65439,65441,65442,65443,65446,65448,65452,65453,65454,65456,65459,65461,65462,65463,65467,65470,65471,65472,65474,65477,65480,65482,65484,65487,65489,65490,65491,65493,65494,65496,65500,65502,65504,65505,65507,65510,65512,\r\n65513,65514,65516,65517,65518,65520,65522,65523,65526,65527,65530,65531,65532,65533,65535,65537,65538,65542,65543,65544,65547,65548,65550,65552,65555,65557,65560,65561,65563,65566,65567,65569,65570,65571,65572,65574,65576,65579,65580,65582,65584,65587,65588,65591,65593,65596,65597,65598,65600,65601,65603,65606,65607,65609,65610,65614,65615,65616,65618,65619,65622,65623,65625,65626,65630,65632,65633,65636,65637,65638,65640,65641,65644,65647,65648,65651,65652,65653,65655,65657,65659,65660,65663,65664,65665,65667,65670,65673,65675,65676,65678,65679,65682,65685,65687,65689,65692,65693,65696,65698,65701,65702,65705,65706,65710,65712,65713,65715,65716,65718,65720,65721,65725,65726,65727,65729,65730,65732,65735,65736,65737,65740,65741,65743,65745,65746,65749,65751,65755,65756,65758,65759,65761,65763,65767,65769,65771,65772,65775,65776,65778,65780,65781,65782,65786,65787,65790,65791,65794,65796,65799,65801,65804,65807,65810,65811,65812,65814,65817,65821,65824,65826,65828,65829,65830,65832,65836,65837,65839,65841,65844,65845,65847,65849,65851,65852,65855,65856,65858,65859,65861,65862,65864,65865,65867,65868,65869,65872,65874,65875,65877,65882,65885,65887,65888,65889,65890,65893,65895,65897,65899,65900,65902,65904,65906,65908,65909,65911,65914,65915,65918,65920,65924,65926,65927,65928,65933,65935,65936,65938,65939,65940,65941,65944,65945,65946,65948,65951,65952,65954,65956,65957,65958,65959,65961,65963,65966,65967,65969,65971,65975,65977,65978,65980,65981,65982,65984,65987,65989,65992,65993,65996,65997,65998,66000,66002,66003,66007,66008,66009,66011,66012,66014,66017,66018,66020,66021,66022,66026,66027,66031,66032,66033,66034,66037,66039,66044,66046,66047,66049,66050,66052,66053,66055,66056,66058,66059,66064,66065,66066,66067,66069,66070,66072,66077,66078,66080,66081,66082,66084,66087,66090,66091,66093,66094,66096,66097,66100,66101,66104,66106,66107,66108,66109,66111,66112,66114,66115,66118,66120,66124,66125,66127,66129,66133,66134,66136,66137,66139,66141,66143,66144,66146,66148,66151,66152,66154,66156,66159,66162,66165,66168,\r\n66173,66176,66177,66179,66181,66182,66184,66186,66188,66189,66194,66195,66196,66200,66202,66203,66205,66206,66207,66208,66211,66214,66216,66217,66220,66221,66224,66225,66229,66230,66232,66233,66236,66237,66240,66243,66245,66246,66248,66249,66250,66252,66255,66258,66260,66261,66266,66269,66270,66271,66274,66275,66277,66281,66284,66286,66287,66288,66291,66292,66294,66296,66298,66300,66302,66304,66306,66307,66309,66312,66314,66315,66317,66318,66321,66323,66324,66327,66331,66332,66333,66336,66338,66341,66343,66344,66346,66347,66349,66350,66353,66354,66356,66357,66360,66363,66365,66367,66369,66371,66372,66375,66379,66380,66382,66384,66385,66387,66389,66390,66391,66394,66395,66396,66401,66402,66406,66408,66410,66411,66412,66415,66417,66419,66422,66425,66427,66430,66432,66434,66435,66438,66439,66441,66443,66446,66449,66452,66454,66455,66457,66458,66459,66461,66462,66463,66465,66467,66469,66472,66473,66475,66476,66478,66479,66481,66485,66486,66491,66492,66493,66495,66496,66499,66502,66503,66506,66509,66512,66514,66516,66518,66520,66521,66522,66524,66525,66526,66528,66530,66531,66535,66538,66540,66542,66543,66544,66547,66548,66549,66550,66553,66555,66556,66560,66561,66563,66564,66566,66569,66570,66571,66573,66574,66577,66578,66580,66581,66583,66585,66588,66590,66591,66593,66594,66596,66597,66598,66601,66602,66604,66605,66606,66608,66610,66611,66612,66614,66616,66618,66620,66621,66623,66624,66626,66627,66631,66632,66633,66635,66636,66637,66639,66640,66643,66644,66647,66648,66652,66654,66655,66658,66660,66664,66665,66666,66670,66672,66673,66675,66678,66683,66684,66685,66687,66690,66692,66694,66695,66697,66698,66699,66702,66703,66705,66708,66709,66711,66713,66714,66715,66718,66719,66720,66723,66726,66729,66731,66733,66734,66737,66739,66742,66743,66744,66750,66754,66755,66756,66760,66763,66764,66766,66768,66770,66772,66773,66774,66775,66778,66780,66781,66785,66787,66789,66790,66794,66796,66798,66799,66802,66805,66807,66811,66812,66814,66815,66816,66817,66819,66820,66822,66824,66827,66828,66829,66832,66833,66836,66837,66838,66840,\r\n66844,66847,66848,66850,66851,66852,66855,66856,66859,66861,66862,66864,66866,66867,66871,66872,66874,66876,66878,66879,66882,66886,66887,66888,66893,66895,66896,66898,66900,66902,66903,66904,66908,66910,66911,66913,66914,66915,66919,66923,66925,66927,66930,66931,66935,66937,66938,66939,66941,66942,66946,66947,66949,66951,66953,66954,66956,66957,66959,66961,66964,66968,66969,66972,66975,66979,66980,66981,66982,66985,66987,66991,66992,66994,66997,66998,67001,67002,67006,67007,67009,67010,67012,67015,67016,67017,67019,67021,67022,67024,67028,67030,67034,67035,67039,67040,67041,67043,67045,67046,67047,67048,67050,67054,67055,67057,67059,67060,67062,67066,67068,67070,67071,67072,67074,67078,67081,67082,67083,67084,67087,67090,67091,67092,67093,67095,67096,67099,67100,67102,67105,67109,67111,67115,67118,67120,67121,67123,67124,67125,67127,67128,67129,67132,67136,67137,67138,67140,67141,67143,67148,67149,67151,67152,67155,67158,67159,67163,67165,67166,67167,67169,67170,67173,67174,67177,67179,67181,67183,67185,67188,67190,67191,67192,67195,67196,67198,67200,67201,67203,67207,67208,67209,67212,67213,67215,67216,67220,67221,67222,67224,67226,67228,67229,67231,67232,67233,67237,67239,67241,67242,67243,67247,67249,67250,67252,67256,67257,67258,67262,67264,67265,67266,67268,67271,67273,67274,67277,67278,67279,67283,67285,67286,67287,67290,67294,67297,67299,67302,67303,67307,67308,67310,67311,67312,67314,67316,67317,67319,67320,67324,67325,67326,67328,67330,67331,67332,67335,67336,67340,67342,67343,67344,67345,67348,67350,67352,67353,67355,67356,67361,67362,67363,67365,67369,67370,67372,67376,67379,67381,67383,67386,67388,67389,67391,67394,67395,67396,67398,67399,67401,67403,67405,67408,67411,67414,67415,67417,67419,67420,67422,67426,67430,67431,67433,67435,67436,67438,67442,67443,67447,67450,67451,67452,67453,67456,67458,67459,67461,67463,67464,67468,67471,67474,67475,67476,67477,67480,67482,67486,67487,67489,67492,67493,67494,67497,67498,67501,67502,67504,67505,67506,67507,67510,67511,67514,67516,67518,67519,67523,67525,67526,\r\n67528,67531,67534,67537,67538,67539,67544,67545,67546,67549,67553,67554,67557,67560,67561,67565,67567,67569,67573,67575,67577,67578,67579,67581,67583,67585,67586,67588,67590,67595,67596,67598,67599,67601,67604,67607,67610,67612,67613,67616,67617,67618,67622,67623,67625,67626,67630,67632,67633,67636,67637,67639,67641,67642,67644,67649,67650,67655,67657,67659,67661,67662,67664,67665,67667,67669,67670,67671,67673,67674,67676,67678,67679,67681,67683,67685,67686,67687,67689,67692,67695,67697,67699,67701,67705,67706,67707,67710,67711,67715,67716,67719,67721,67722,67723,67725,67727,67728,67730,67731,67733,67734,67737,67738,67740,67742,67745,67747,67750,67751,67752,67753,67755,67757,67758,67763,67765,67766,67767,67769,67770,67772,67773,67775,67776,67780,67782,67785,67787,67791,67792,67796,67798,67799,67801,67802,67804,67805,67806,67810,67812,67816,67817,67818,67820,67821,67825,67826,67827,67830,67831,67833,67835,67838,67839,67842,67843,67845,67847,67848,67850,67852,67855,67856,67858,67859,67862,67863,67864,67866,67867,67869,67870,67874,67875,67876,67878,67880,67882,67883,67885,67886,67888,67889,67890,67892,67894,67895,67896,67897,67899,67902,67903,67905,67908,67913,67914,67916,67917,67919,67921,67924,67925,67926,67929,67930,67932,67933,67936,67937,67938,67940,67943,67944,67946,67949,67951,67952,67958,67960,67961,67962,67968,67971,67973,67976,67977,67979,67980,67982,67983,67985,67986,67989,67990,67993,67994,67995,67998,67999,68002,68003,68004,68005,68007,68010,68011,68014,68017,68019,68021,68024,68027,68029,68031,68033,68036,68038,68039,68040,68045,68048,68049,68052,68055,68056,68059,68060,68061,68064,68065,68068,68070,68072,68073,68078,68079,68084,68087,68089,68090,68091,68093,68095,68097,68098,68103,68105,68106,68108,68111,68112,68113,68116,68117,68120,68121,68122,68125,68126,68127,68129,68130,68131,68133,68135,68137,68138,68141,68143,68147,68148,68149,68151,68154,68157,68158,68160,68162,68165,68167,68168,68169,68171,68173,68175,68178,68180,68183,68184,68186,68187,68190,68197,68198,68200,68201,68202,68207,68209,68210,68211,\r\n68212,68214,68216,68217,68220,68221,68223,68225,68227,68228,68229,68233,68236,68237,68238,68240,68241,68244,68246,68248,68250,68253,68256,68258,68259,68262,68264,68265,68269,68270,68271,68272,68276,68277,68279,68282,68283,68287,68288,68290,68293,68295,68297,68298,68302,68303,68305,68307,68308,68312,68313,68315,68316,68317,68319,68320,68324,68325,68328,68331,68335,68337,68338,68340,68342,68343,68345,68346,68348,68349,68351,68354,68356,68357,68359,68360,68363,68364,68365,68368,68369,68372,68373,68375,68377,68379,68383,68384,68386,68387,68390,68392,68394,68395,68397,68398,68400,68401,68403,68405,68406,68408,68409,68411,68412,68413,68415,68416,68418,68419,68424,68426,68429,68430,68431,68433,68437,68438,68442,68445,68449,68452,68453,68455,68457,68459,68462,68463,68468,68470,68471,68472,68476,68477,68478,68480,68481,68483,68485,68488,68491,68494,68496,68497,68499,68501,68504,68505,68506,68508,68509,68513,68515,68516,68517,68518,68520,68523,68524,68526,68533,68537,68538,68539,68541,68544,68545,68547,68552,68553,68554,68556,68557,68560,68561,68562,68565,68568,68569,68571,68574,68576,68579,68580,68582,68585,68586,68587,68590,68591,68592,68594,68595,68599,68600,68601,68604,68605,68607,68608,68610,68614,68616,68618,68620,68621,68622,68624,68625,68627,68628,68631,68633,68634,68635,68637,68638,68640,68642,68644,68648,68649,68654,68656,68660,68662,68664,68666,68667,68670,68671,68674,68677,68680,68681,68682,68683,68686,68688,68691,68693,68695,68696,68697,68701,68702,68705,68706,68707,68711,68712,68714,68715,68720,68722,68723,68725,68728,68732,68734,68738,68740,68741,68743,68745,68746,68750,68751,68752,68755,68756,68757,68759,68760,68762,68765,68766,68771,68772,68773,68775,68777,68778,68780,68781,68783,68786,68788,68789,68792,68794,68795,68797,68798,68799,68800,68803,68805,68807,68808,68810,68811,68812,68816,68817,68818,68820,68824,68825,68827,68829,68830,68834,68835,68838,68840,68843,68845,68847,68848,68851,68854,68858,68859,68860,68862,68865,68868,68870,68872,68873,68874,68877,68880,68883,68886,68888,68889,68890,68892,68893,68896,\r\n68899,68901,68903,68906,68907,68908,68910,68911,68913,68917,68918,68920,68924,68926,68927,68929,68930,68932,68934,68935,68937,68940,68941,68943,68944,68946,68949,68954,68956,68960,68963,68966,68968,68969,68970,68974,68976,68978,68980,68983,68985,68986,68988,68991,68992,68994,68995,68997,69000,69005,69006,69007,69011,69012,69014,69017,69018,69021,69022,69024,69025,69027,69028,69030,69031,69033,69034,69036,69039,69042,69044,69047,69049,69050,69051,69053,69054,69056,69058,69059,69061,69063,69066,69067,69069,69071,69072,69073,69077,69079,69080,69081,69082,69084,69088,69090,69092,69095,69097,69098,69099,69100,69102,69104,69105,69110,69111,69114,69118,69121,69124,69125,69127,69129,69130,69132,69134,69136,69138,69141,69145,69147,69149,69151,69152,69153,69155,69156,69157,69159,69162,69165,69166,69168,69169,69171,69173,69174,69177,69179,69180,69181,69184,69185,69186,69190,69191,69192,69196,69198,69201,69202,69205,69209,69210,69214,69215,69217,69218,69219,69223,69224,69225,69226,69229,69231,69233,69236,69239,69241,69242,69243,69246,69248,69250,69253,69254,69257,69259,69260,69261,69263,69264,69267,69270,69272,69275,69276,69279,69280,69283,69284,69286,69288,69289,69292,69293,69294,69295,69297,69299,69302,69303,69305,69308,69311,69316,69318,69320,69321,69325,69326,69327,69328,69331,69333,69337,69339,69341,69342,69343,69346,69347,69348,69351,69355,69358,69360,69361,69365,69366,69367,69369,69371,69373,69374,69377,69378,69381,69384,69389,69391,69392,69394,69398,69399,69404,69406,69408,69409,69411,69412,69415,69416,69418,69420,69424,69425,69427,69429,69431,69432,69433,69435,69440,69443,69444,69446,69447,69449,69450,69452,69453,69457,69459,69460,69463,69465,69468,69469,69473,69474,69475,69479,69480,69484,69487,69490,69492,69493,69495,69496,69498,69505,69508,69514,69517,69518,69519,69520,69523,69526,69527,69528,69529,69533,69535,69536,69538,69541,69542,69543,69544,69547,69548,69550,69551,69553,69555,69560,69561,69562,69566,69568,69569,69571,69574,69575,69577,69578,69580,69582,69584,69585,69586,69589,69591,69592,69595,69598,69600,69602,\r\n69605,69606,69608,69611,69612,69614,69617,69618,69619,69621,69623,69625,69627,69631,69634,69635,69637,69640,69641,69643,69644,69645,69646,69650,69651,69655,69657,69659,69660,69661,69664,69666,69668,69669,69671,69672,69674,69675,69677,69678,69682,69683,69686,69687,69689,69690,69691,69693,69694,69697,69699,69701,69702,69706,69708,69709,69713,69714,69715,69717,69719,69720,69724,69725,69728,69729,69731,69732,69733,69737,69739,69742,69743,69746,69748,69750,69751,69754,69755,69756,69761,69762,69766,69767,69768,69769,69772,69773,69778,69780,69782,69785,69788,69790,69791,69793,69794,69795,69797,69800,69801,69802,69804,69806,69807,69809,69811,69817,69820,69821,69824,69826,69828,69832,69833,69835,69836,69838,69839,69841,69843,69846,69847,69849,69851,69852,69856,69857,69860,69863,69865,69867,69869,69870,69871,69873,69877,69878,69879,69884,69887,69892,69895,69896,69897,69898,69900,69901,69904,69905,69906,69907,69911,69912,69914,69915,69916,69919,69920,69921,69922,69926,69929,69930,69933,69938,69940,69944,69945,69946,69949,69951,69955,69958,69959,69961,69962,69964,69965,69966,69968,69969,69972,69975,69977,69978,69981,69984,69987,69990,69994,69995,69996,69997,70000,70001,70003,70007,70010,70012,70013,70015,70017,70019,70021,70023,70026,70028,70031,70032,70034,70037,70038,70040,70041,70042,70045,70048,70049,70050,70052,70053,70058,70059,70062,70063,70066,70067,70068,70069,70071,70072,70077,70080,70082,70084,70087,70088,70091,70092,70096,70100,70101,70102,70104,70105,70107,70109,70111,70112,70115,70118,70119,70120,70123,70126,70128,70131,70132,70134,70137,70138,70140,70143,70144,70147,70148,70150,70151,70153,70154,70157,70158,70159,70163,70164,70165,70167,70168,70170,70171,70173,70174,70177,70178,70182,70185,70187,70189,70190,70192,70194,70197,70200,70201,70203,70206,70209,70210,70212,70214,70215,70216,70218,70220,70221,70222,70224,70227,70230,70232,70235,70236,70238,70239,70243,70244,70246,70250,70251,70256,70259,70260,70261,70263,70266,70268,70270,70271,70272,70273,70276,70277,70278,70279,70282,70283,70285,70288,70290,70292,70293,\r\n70295,70296,70300,70302,70304,70306,70307,70309,70310,70312,70313,70315,70316,70317,70318,70320,70321,70323,70324,70328,70331,70334,70335,70337,70340,70342,70344,70349,70350,70351,70354,70356,70357,70359,70362,70363,70366,70367,70368,70370,70371,70372,70374,70378,70379,70381,70382,70385,70388,70389,70391,70393,70397,70398,70399,70401,70403,70406,70409,70414,70415,70417,70418,70419,70421,70423,70425,70427,70428,70430,70433,70434,70437,70439,70440,70444,70445,70448,70450,70453,70455,70456,70458,70461,70462,70465,70467,70471,70472,70474,70478,70479,70480,70482,70483,70485,70488,70490,70491,70493,70496,70497,70500,70502,70504,70506,70508,70509,70510,70513,70516,70517,70519,70520,70521,70526,70529,70531,70537,70538,70539,70543,70544,70545,70549,70550,70552,70553,70554,70557,70558,70560,70563,70568,70570,70573,70577,70578,70580,70582,70583,70584,70585,70587,70588,70590,70593,70598,70601,70604,70605,70609,70610,70611,70615,70616,70617,70619,70620,70622,70625,70626,70627,70629,70631,70634,70636,70637,70638,70639,70642,70645,70648,70651,70652,70654,70657,70659,70660,70663,70665,70669,70671,70672,70674,70676,70677,70681,70682,70685,70690,70692,70694,70695,70697,70700,70701,70703,70704,70705,70707,70708,70712,70715,70718,70719,70720,70724,70726,70727,70728,70730,70732,70734,70736,70738,70739,70741,70744,70745,70746,70747,70752,70754,70757,70758,70760,70761,70764,70766,70767,70771,70772,70774,70778,70779,70780,70782,70787,70789,70790,70793,70794,70795,70798,70799,70802,70804,70805,70806,70809,70812,70813,70816,70818,70820,70821,70822,70824,70826,70830,70832,70833,70835,70837,70838,70841,70842,70844,70846,70849,70850,70851,70854,70858,70859,70860,70862,70863,70865,70866,70867,70869,70873,70874,70876,70877,70879,70882,70883,70884,70886,70887,70889,70890,70893,70898,70899,70901,70902,70905,70910,70911,70914,70915,70918,70919,70921,70924,70926,70930,70932,70936,70938,70939,70942,70944,70945,70947,70949,70950,70951,70953,70957,70958,70960,70963,70967,70970,70971,70974,70976,70978,70979,70982,70985,70986,70989,70991,70993,70994,70995,\r\n70998,71000,71001,71002,71004,71009,71011,71013,71018,71021,71023,71024,71026,71027,71028,71031,71033,71034,71035,71038,71039,71041,71042,71043,71045,71047,71051,71052,71054,71057,71058,71060,71063,71064,71066,71069,71071,71073,71074,71076,71077,71081,71082,71083,71086,71087,71090,71091,71093,71096,71097,71098,71100,71103,71107,71108,71111,71113,71114,71116,71120,71121,71125,71126,71127,71128,71132,71137,71140,71142,71144,71146,71147,71148,71149,71152,71156,71158,71159,71161,71162,71164,71165,71166,71168,71169,71171,71173,71175,71176,71180,71181,71183,71184,71187,71189,71191,71192,71193,71195,71197,71198,71200,71201,71202,71203,71206,71209,71211,71212,71214,71215,71218,71219,71221,71222,71224,71225,71227,71230,71233,71235,71237,71238,71241,71243,71245,71246,71249,71250,71254,71255,71257,71259,71262,71263,71266,71269,71271,71273,71276,71277,71279,71280,71281,71283,71284,71286,71287,71290,71292,71295,71297,71301,71303,71304,71307,71312,71313,71314,71316,71318,71319,71320,71324,71326,71330,71332,71336,71339,71340,71341,71343,71344,71346,71348,71350,71353,71354,71355,71357,71358,71360,71361,71365,71368,71369,71372,71373,71375,71376,71378,71379,71380,71383,71384,71387,71388,71393,71395,71397,71399,71402,71405,71406,71409,71412,71413,71416,71417,71419,71423,71426,71428,71431,71435,71437,71440,71441,71443,71445,71447,71448,71450,71452,71453,71455,71457,71459,71462,71463,71467,71469,71471,71472,71474,71476,71477,71479,71481,71486,71488,71491,71492,71494,71497,71499,71504,71505,71506,71508,71509,71512,71515,71516,71518,71520,71523,71527,71529,71531,71532,71534,71535,71536,71538,71539,71542,71546,71548,71551,71553,71554,71556,71557,71561,71562,71563,71565,71566,71569,71572,71574,71577,71578,71582,71584,71585,71587,71590,71591,71594,71595,71596,71598,71600,71601,71604,71606,71609,71612,71614,71615,71616,71618,71620,71625,71627,71628,71629,71631,71634,71637,71638,71640,71642,71643,71645,71647,71648,71649,71654,71655,71656,71658,71660,71661,71665,71667,71669,71670,71671,71673,71675,71676,71678,71679,71681,71682,71683,71686,71688,\r\n71691,71694,71695,71698,71701,71703,71705,71709,71711,71712,71715,71717,71718,71720,71723,71724,71725,71727,71728,71735,71737,71738,71739,71741,71742,71743,71746,71748,71753,71754,71756,71758,71760,71762,71763,71764,71766,71769,71773,71775,71777,71779,71782,71783,71785,71788,71789,71791,71793,71794,71796,71798,71800,71801,71803,71805,71806,71808,71812,71814,71816,71818,71820,71821,71823,71828,71829,71830,71832,71835,71837,71840,71841,71843,71846,71847,71848,71852,71853,71854,71857,71858,71859,71864,71865,71866,71868,71869,71873,71875,71876,71880,71883,71888,71889,71890,71893,71897,71900,71902,71903,71906,71907,71908,71911,71913,71919,71920,71924,71927,71932,71933,71936,71938,71942,71943,71944,71948,71950,71951,71952,71954,71956,71957,71959,71960,71961,71963,71966,71968,71970,71971,71974,71975,71976,71978,71980,71981,71982,71985,71987,71988,71989,71991,71993,71996,71997,72001,72002,72004,72005,72006,72007,72010,72012,72015,72019,72020,72021,72024,72027,72028,72031,72032,72033,72036,72039,72041,72043,72044,72045,72047,72050,72051,72054,72056,72058,72062,72063,72066,72067,72070,72071,72072,72073,72076,72079,72080,72081,72082,72084,72086,72088,72089,72091,72092,72094,72098,72101,72102,72104,72105,72106,72108,72109,72111,72112,72114,72115,72117,72119,72121,72123,72125,72126,72128,72137,72139,72140,72142,72143,72145,72147,72149,72151,72152,72154,72158,72161,72162,72163,72165,72167,72170,72173,72175,72176,72179,72180,72181,72183,72185,72186,72189,72191,72193,72194,72197,72198,72200,72201,72202,72204,72206,72207,72210,72215,72216,72220,72221,72223,72225,72227,72229,72232,72234,72236,72239,72241,72242,72244,72245,72246,72247,72250,72254,72255,72259,72260,72261,72262,72265,72266,72267,72269,72270,72272,72273,72277,72281,72283,72285,72287,72288,72290,72293,72294,72296,72297,72299,72300,72301,72303,72306,72307,72310,72311,72312,72313,72315,72317,72320,72322,72323,72325,72326,72329,72330,72335,72336,72337,72339,72344,72345,72346,72349,72350,72351,72353,72355,72357,72360,72364,72367,72368,72369,72373,72375,72376,72380,72381,72383,\r\n72384,72387,72389,72390,72391,72394,72395,72397,72399,72400,72404,72405,72410,72413,72414,72417,72419,72422,72423,72424,72427,72430,72433,72434,72436,72438,72442,72445,72446,72447,72448,72450,72451,72455,72456,72458,72461,72464,72465,72466,72468,72469,72471,72473,72476,72477,72480,72482,72485,72487,72488,72489,72491,72493,72495,72497,72500,72501,72507,72508,72511,72512,72513,72515,72516,72518,72520,72524,72527,72528,72531,72533,72535,72536,72539,72541,72543,72546,72549,72550,72554,72555,72560,72563,72565,72566,72568,72571,72572,72574,72577,72580,72581,72587,72589,72592,72593,72596,72597,72599,72601,72603,72604,72607,72608,72609,72610,72613,72614,72615,72619,72622,72625,72628,72630,72631,72633,72635,72638,72640,72641,72643,72644,72645,72646,72648,72649,72651,72652,72656,72658,72661,72663,72665,72666,72669,72670,72672,72674,72677,72679,72680,72681,72683,72684,72688,72690,72691,72693,72694,72697,72698,72699,72701,72702,72704,72706,72707,72709,72712,72715,72717,72718,72721,72722,72724,72728,72731,72734,72736,72737,72738,72739,72741,72743,72746,72747,72752,72753,72756,72757,72761,72764,72767,72769,72770,72772,72774,72775,72778,72779,72780,72781,72783,72785,72786,72787,72789,72791,72794,72795,72796,72798,72800,72801,72803,72806,72809,72812,72815,72816,72818,72821,72823,72825,72828,72829,72833,72836,72837,72839,72840,72844,72847,72848,72851,72854,72855,72856,72858,72862,72863,72866,72868,72872,72874,72875,72876,72879,72881,72883,72886,72888,72890,72893,72894,72895,72897,72900,72901,72904,72905,72906,72908,72909,72911,72912,72915,72917,72918,72923,72924,72927,72930,72936,72938,72939,72940,72943,72944,72945,72948,72952,72955,72956,72958,72960,72962,72963,72964,72966,72967,72969,72973,72975,72976,72980,72982,72985,72987,72988,72991,72992,72993,72994,72996,72999,73001,73004,73005,73007,73009,73010,73012,73016,73017,73018,73020,73024,73025,73027,73029,73031,73034,73036,73037,73039,73044,73046,73047,73048,73050,73055,73056,73059,73060,73064,73067,73069,73073,73074,73076,73078,73079,73080,73082,73088,73090,73091,73093,73094,73095,\r\n73096,73099,73100,73102,73104,73106,73108,73109,73111,73112,73114,73115,73116,73118,73119,73121,73122,73123,73125,73126,73128,73130,73131,73132,73135,73136,73138,73140,73141,73144,73148,73149,73152,73153,73155,73159,73160,73161,73163,73166,73167,73168,73170,73173,73174,73176,73181,73183,73184,73186,73188,73190,73191,73193,73194,73196,73198,73203,73205,73208,73210,73212,73216,73217,73219,73222,73223,73224,73229,73230,73231,73234,73235,73237,73240,73242,73245,73246,73249,73251,73253,73254,73258,73259,73261,73262,73263,73266,73267,73270,73271,73274,73275,73278,73279,73281,73282,73285,73286,73288,73290,73295,73296,73298,73299,73301,73302,73306,73309,73312,73315,73316,73317,73321,73322,73324,73328,73330,73331,73332,73333,73335,73336,73338,73340,73341,73346,73347,73349,73352,73353,73357,73360,73361,73363,73365,73367,73369,73373,73374,73379,73380,73381,73383,73386,73387,73389,73390,73392,73394,73396,73397,73398,73401,73405,73409,73411,73414,73416,73419,73423,73425,73426,73428,73429,73432,73433,73434,73436,73437,73439,73440,73442,73443,73444,73447,73449,73453,73456,73457,73459,73461,73463,73464,73465,73468,73470,73471,73473,73478,73480,73482,73485,73487,73489,73491,73493,73495,73496,73497,73498,73502,73503,73506,73511,73512,73514,73517,73518,73520,73523,73527,73531,73532,73533,73535,73538,73539,73540,73543,73544,73546,73547,73549,73552,73555,73557,73562,73563,73564,73568,73570,73571,73572,73573,73575,73577,73579,73581,73584,73585,73588,73590,73592,73594,73595,73596,73597,73601,73602,73605,73610,73613,73615,73617,73618,73620,73621,73625,73626,73628,73630,73631,73632,73635,73636,73638,73642,73643,73644,73646,73647,73648,73652,73653,73657,73658,73659,73663,73667,73669,73670,73672,73674,73675,73678,73680,73682,73684,73688,73689,73695,73698,73700,73701,73704,73705,73707,73710,73713,73716,73718,73720,73722,73723,73725,73726,73729,73730,73731,73732,73734,73736,73737,73738,73741,73746,73752,73753,73756,73759,73762,73764,73767,73768,73770,73773,73775,73776,73777,73781,73783,73785,73789,73790,73792,73793,73794,73795,73797,73800,73802,\r\n73803,73807,73809,73810,73814,73815,73816,73819,73821,73823,73824,73828,73829,73830,73832,73834,73836,73837,73839,73842,73846,73848,73850,73852,73854,73856,73859,73862,73863,73865,73869,73870,73873,73874,73875,73877,73878,73879,73882,73884,73885,73887,73888,73890,73894,73895,73896,73901,73902,73903,73906,73907,73908,73909,73913,73915,73916,73919,73921,73922,73924,73926,73928,73931,73932,73933,73935,73940,73941,73943,73944,73946,73947,73949,73952,73953,73955,73956,73957,73959,73960,73963,73964,73967,73968,73971,73973,73974,73977,73978,73980,73983,73987,73988,73991,73994,73995,73996,73998,74001,74003,74006,74007,74008,74010,74012,74014,74015,74016,74018,74020,74023,74024,74025,74027,74029,74033,74036,74037,74039,74040,74042,74043,74048,74049,74051,74054,74055,74057,74058,74059,74062,74066,74068,74071,74074,74076,74077,74079,74081,74084,74086,74088,74089,74093,74094,74096,74099,74102,74103,74107,74109,74110,74113,74114,74115,74117,74118,74120,74121,74125,74128,74129,74130,74131,74133,74137,74141,74143,74146,74147,74149,74151,74153,74156,74157,74158,74160,74163,74167,74169,74173,74174,74177,74178,74181,74183,74185,74187,74191,74194,74195,74196,74198,74199,74200,74203,74206,74207,74209,74212,74213,74215,74219,74222,74224,74225,74226,74228,74230,74231,74232,74234,74235,74237,74240,74243,74245,74247,74249,74250,74254,74255,74258,74260,74261,74262,74266,74269,74270,74272,74274,74276,74277,74278,74280,74283,74284,74286,74288,74290,74291,74292,74293,74297,74298,74299,74302,74305,74307,74309,74311,74314,74316,74319,74321,74322,74325,74327,74330,74331,74336,74339,74343,74345,74346,74349,74350,74352,74354,74355,74356,74358,74359,74361,74362,74364,74368,74369,74370,74372,74375,74376,74378,74381,74383,74384,74385,74387,74389,74390,74393,74394,74397,74398,74402,74404,74405,74407,74408,74409,74411,74412,74414,74416,74418,74422,74423,74425,74427,74430,74434,74435,74436,74439,74443,74444,74445,74448,74451,74453,74454,74455,74457,74459,74460,74464,74465,74467,74470,74472,74474,74477,74480,74481,74484,74485,74487,74488,74492,74493,74495,\r\n74496,74501,74502,74504,74506,74508,74509,74511,74512,74515,74516,74518,74520,74521,74525,74526,74529,74530,74532,74537,74538,74541,74546,74547,74548,74550,74553,74554,74556,74561,74563,74567,74569,74570,74571,74573,74575,74576,74577,74582,74583,74584,74586,74590,74591,74593,74596,74597,74599,74602,74604,74605,74607,74612,74614,74615,74617,74618,74619,74620,74622,74626,74628,74629,74632,74635,74636,74637,74640,74645,74646,74649,74650,74652,74654,74656,74657,74658,74662,74663,74665,74666,74667,74670,74673,74674,74677,74679,74684,74686,74687,74688,74690,74693,74695,74696,74697,74698,74700,74701,74703,74704,74710,74711,74714,74715,74717,74718,74719,74721,74723,74725,74726,74727,74730,74731,74735,74736,74737,74739,74743,74744,74747,74749,74750,74753,74754,74756,74759,74761,74762,74763,74764,74767,74768,74770,74772,74773,74776,74779,74780,74783,74784,74786,74788,74789,74791,74792,74793,74797,74799,74800,74803,74805,74807,74810,74811,74813,74816,74817,74818,74822,74824,74825,74826,74827,74830,74832,74833,74835,74837,74838,74840,74842,74844,74848,74850,74852,74853,74856,74861,74862,74863,74865,74868,74870,74871,74872,74874,74878,74879,74880,74882,74884,74886,74889,74891,74893,74895,74897,74901,74904,74905,74908,74912,74913,74918,74919,74924,74927,74929,74930,74933,74935,74938,74939,74941,74942,74945,74946,74947,74949,74950,74953,74955,74959,74963,74964,74966,74968,74970,74973,74976,74978,74982,74984,74985,74986,74989,74990,74992,74993,74996,74997,74999,75000,75003,75007,75009,75012,75014,75016,75020,75021,75024,75026,75027,75029,75030,75032,75035,75036,75039,75041,75042,75044,75045,75047,75050,75053,75054,75055,75057,75061,75062,75063,75065,75067,75068,75071,75072,75077,75078,75081,75082,75085,75086,75088,75089,75090,75091,75094,75095,75097,75099,75101,75104,75106,75108,75111,75112,75116,75117,75119,75121,75124,75126,75128,75130,75131,75133,75136,75139,75140,75142,75143,75145,75146,75148,75150,75154,75158,75159,75161,75163,75166,75169,75172,75174,75179,75182,75184,75185,75188,75190,75191,75193,75195,75196,75200,75201,75202,\r\n75204,75206,75207,75208,75210,75213,75215,75216,75219,75221,75224,75225,75229,75230,75232,75233,75234,75235,75237,75239,75242,75243,75246,75247,75251,75257,75259,75261,75263,75264,75266,75269,75270,75272,75273,75277,75278,75279,75282,75285,75286,75290,75292,75293,75295,75296,75297,75298,75300,75305,75307,75309,75311,75312,75315,75319,75320,75325,75326,75327,75330,75332,75333,75335,75336,75340,75341,75342,75343,75346,75347,75349,75350,75352,75354,75356,75358,75360,75362,75364,75365,75367,75369,75371,75372,75375,75378,75383,75384,75387,75390,75392,75394,75395,75397,75401,75403,75405,75407,75413,75417,75419,75421,75422,75423,75424,75427,75428,75429,75433,75436,75439,75440,75441,75442,75444,75446,75447,75448,75451,75454,75455,75458,75459,75462,75463,75465,75466,75468,75471,75472,75474,75475,75477,75478,75480,75485,75486,75490,75493,75494,75495,75498,75503,75505,75507,75509,75510,75513,75517,75519,75520,75525,75527,75528,75530,75532,75533,75537,75538,75543,75544,75546,75549,75552,75554,75556,75557,75558,75560,75561,75564,75566,75568,75572,75574,75575,75578,75581,75582,75583,75586,75589,75591,75593,75594,75598,75600,75601,75604,75607,75609,75611,75613,75614,75616,75619,75622,75623,75624,75625,75627,75628,75631,75633,75636,75640,75641,75642,75643,75646,75648,75650,75651,75654,75656,75660,75662,75664,75666,75670,75671,75674,75675,75678,75681,75684,75685,75688,75693,75694,75697,75698,75700,75702,75703,75705,75707,75708,75710,75714,75715,75718,75719,75721,75722,75723,75725,75727,75728,75731,75734,75736,75738,75739,75741,75744,75747,75749,75750,75752,75755,75756,75759,75762,75765,75766,75768,75769,75772,75773,75776,75779,75780,75785,75787,75788,75792,75797,75799,75800,75801,75803,75805,75806,75807,75812,75814,75817,75819,75825,75826,75829,75831,75834,75835,75839,75841,75843,75846,75847,75850,75851,75853,75854,75855,75857,75858,75861,75862,75864,75865,75867,75871,75872,75874,75875,75876,75877,75879,75881,75883,75885,75886,75888,75890,75893,75895,75897,75899,75902,75903,75906,75910,75912,75915,75917,75919,75921,75922,75925,75928,\r\n75930,75931,75933,75934,75938,75939,75941,75945,75949,75950,75952,75953,75956,75957,75958,75960,75963,75965,75967,75971,75974,75976,75978,75979,75988,75991,75993,75998,75999,76001,76002,76003,76007,76009,76010,76016,76017,76018,76021,76031,76036,76039,76045,76046,76047,76050,76054,76056,76058,76061,76063,76064,76065,76067,76070,76071,76075,76078,76079,76080,76081,76083,76084,76086,76087,76089,76090,76093,76094,76096,76100,76103,76107,76108,76110,76111,76113,76115,76117,76118,76119,76124,76126,76136,76138,76140,76143,76145,76148,76150,76154,76156,76157,76158,76159,76163,76164,76166,76168,76171,76172,76174,76175,76177,76178,76179,76183,76184,76185,76186,76188,76190,76191,76193,76194,76196,76198,76199,76200,76201,76204,76205,76207,76210,76213,76214,76215,76220,76226,76227,76231,76233,76236,76239,76241,76243,76244,76246,76247,76250,76253,76255,76256,76258,76259,76261,76263,76266,76268,76270,76271,76276,76277,76279,76282,76285,76286,76288,76291,76292,76293,76294,76298,76301,76303,76305,76308,76310,76311,76312,76314,76319,76321,76324,76325,76329,76331,76332,76333,76336,76337,76338,76342,76343,76345,76348,76349,76350,76354,76355,76357,76358,76360,76361,76363,76364,76365,76367,76369,76372,76373,76375,76376,76377,76381,76382,76383,76384,76386,76388,76391,76393,76395,76396,76398,76403,76405,76407,76412,76414,76415,76416,76417,76420,76421,76423,76424,76425,76427,76429,76430,76432,76433,76436,76437,76438,76440,76443,76445,76446,76447,76449,76450,76452,76456,76458,76462,76463,76465,76468,76470,76471,76473,76474,76476,76478,76479,76483,76485,76486,76488,76489,76493,76494,76495,76497,76501,76502,76504,76507,76508,76510,76512,76513,76515,76517,76518,76520,76522,76523,76524,76526,76529,76531,76533,76535,76536,76538,76540,76541,76542,76544,76545,76548,76550,76552,76553,76554,76556,76557,76561,76562,76563,76564,76568,76570,76571,76574,76577,76579,76581,76582,76586,76587,76590,76592,76594,76596,76598,76599,76601,76603,76605,76606,76609,76613,76615,76616,76618,76619,76620,76621,76624,76626,76627,76629,76630,76634,76637,76639,76640,76641,\r\n76645,76646,76647,76649,76650,76651,76654,76658,76659,76661,76663,76666,76667,76669,76671,76674,76676,76677,76678,76681,76683,76684,76686,76688,76690,76693,76694,76696,76697,76701,76703,76705,76706,76709,76710,76711,76713,76716,76720,76723,76724,76725,76728,76730,76731,76735,76738,76739,76742,76743,76746,76748,76750,76751,76752,76754,76756,76757,76758,76760,76761,76765,76766,76767,76768,76770,76771,76774,76775,76777,76779,76780,76782,76786,76788,76791,76792,76795,76796,76799,76800,76803,76804,76807,76808,76809,76811,76813,76814,76816,76817,76819,76823,76824,76826,76829,76831,76832,76834,76835,76838,76839,76841,76842,76843,76845,76848,76850,76852,76854,76857,76859,76860,76862,76863,76867,76868,76869,76873,76875,76877,76878,76879,76882,76885,76887,76890,76892,76894,76895,76896,76898,76900,76901,76902,76905,76906,76908,76912,76913,76914,76915,76918,76920,76923,76924,76927,76928,76930,76933,76935,76940,76941,76944,76945,76947,76948,76950,76952,76954,76955,76956,76958,76960,76963,76964,76965,76968,76970,76973,76975,76976,76979,76981,76982,76984,76985,76987,76988,76989,76991,76993,76994,76995,76999,77001,77003,77005,77006,77008,77012,77013,77016,77018,77020,77021,77024,77025,77026,77029,77030,77031,77034,77035,77038,77040,77044,77046,77047,77051,77053,77054,77055,77056,77058,77060,77061,77065,77069,77070,77072,77073,77077,77078,77080,77081,77082,77083,77085,77087,77088,77091,77093,77094,77096,77097,77099,77100,77103,77106,77108,77110,77113,77114,77115,77116,77122,77124,77126,77128,77129,77131,77133,77135,77138,77139,77141,77143,77144,77145,77147,77150,77151,77154,77157,77158,77160,77161,77164,77166,77168,77170,77171,77172,77174,77176,77177,77178,77182,77184,77186,77187,77188,77191,77194,77196,77197,77200,77202,77203,77205,77208,77210,77211,77213,77215,77216,77217,77219,77220,77223,77226,77229,77231,77232,77233,77236,77239,77241,77242,77248,77250,77252,77254,77255,77256,77257,77260,77261,77262,77265,77268,77272,77276,77278,77279,77281,77282,77283,77284,77286,77287,77289,77290,77292,77295,77299,77301,77303,77304,77305,77307,\r\n77311,77313,77314,77316,77317,77320,77322,77323,77326,77327,77329,77330,77332,77333,77336,77338,77339,77341,77342,77345,77346,77348,77349,77352,77353,77355,77358,77359,77362,77363,77365,77366,77368,77370,77371,77374,77376,77377,77380,77381,77383,77386,77389,77391,77393,77396,77397,77398,77400,77402,77405,77407,77408,77410,77412,77414,77416,77417,77418,77420,77421,77424,77426,77428,77429,77432,77433,77436,77438,77441,77444,77446,77447,77448,77451,77452,77454,77456,77457,77459,77460,77464,77465,77468,77470,77472,77477,77478,77479,77481,77483,77485,77487,77490,77494,77495,77497,77498,77501,77502,77504,77505,77507,77509,77510,77511,77512,77514,77517,77520,77524,77525,77527,77530,77531,77533,77536,77537,77539,77540,77541,77543,77544,77545,77549,77551,77554,77555,77556,77559,77561,77565,77570,77571,77573,77575,77576,77577,77579,77582,77583,77585,77587,77588,77589,77592,77594,77598,77600,77603,77605,77606,77607,77611,77612,77613,77617,77618,77619,77620,77622,77623,77629,77630,77631,77634,77635,77637,77640,77642,77645,77646,77651,77652,77654,77656,77657,77659,77660,77661,77666,77668,77669,77671,77672,77674,77677,77678,77679,77683,77684,77685,77686,77689,77691,77692,77695,77697,77698,77701,77705,77707,77708,77709,77711,77713,77717,77719,77720,77722,77723,77724,77726,77728,77732,77733,77735,77736,77738,77739,77743,77745,77747,77748,77750,77751,77753,77756,77758,77759,77760,77761,77765,77766,77769,77770,77773,77774,77776,77780,77781,77782,77784,77787,77788,77791,77792,77793,77796,77798,77800,77803,77804,77805,77807,77809,77813,77814,77818,77819,77823,77824,77828,77830,77831,77833,77836,77837,77839,77841,77842,77846,77850,77851,77853,77854,77857,77858,77860,77861,77862,77863,77866,77867,77869,77871,77873,77875,77876,77878,77879,77880,77883,77885,77887,77888,77889,77891,77893,77895,77897,77899,77902,77906,77907,77909,77911,77915,77917,77919,77921,77922,77923,77926,77927,77930,77931,77933,77934,77936,77938,77939,77940,77942,77943,77944,77947,77948,77949,77952,77956,77957,77960,77962,77963,77966,77967,77970,77973,77975,77979,77982,\r\n77984,77985,77988,77990,77991,77992,77994,77997,78000,78002,78004,78005,78006,78008,78009,78011,78013,78014,78015,78017,78018,78021,78024,78026,78027,78028,78031,78032,78033,78037,78041,78042,78046,78047,78048,78052,78053,78054,78057,78060,78061,78064,78067,78071,78073,78074,78075,78077,78079,78081,78083,78084,78086,78089,78090,78092,78093,78094,78096,78097,78099,78101,78102,78103,78105,78106,78109,78112,78115,78116,78117,78120,78122,78123,78124,78127,78130,78132,78137,78138,78140,78142,78143,78144,78149,78150,78151,78155,78157,78158,78159,78160,78163,78165,78168,78171,78172,78174,78177,78179,78182,78183,78187,78188,78189,78190,78192,78193,78197,78200,78202,78203,78204,78205,78208,78211,78213,78214,78215,78216,78218,78219,78220,78222,78224,78225,78226,78228,78229,78231,78232,78234,78237,78239,78242,78243,78245,78247,78249,78250,78252,78254,78256,78257,78258,78259,78262,78263,78264,78268,78269,78270,78272,78274,78275,78277,78280,78282,78284,78287,78289,78290,78291,78294,78295,78298,78299,78301,78304,78305,78306,78307,78309,78311,78314,78315,78316,78319,78321,78323,78324,78326,78328,78330,78331,78333,78334,78336,78338,78339,78341,78343,78344,78345,78347,78348,78349,78352,78354,78355,78359,78361,78363,78364,78367,78368,78369,78370,78372,78376,78378,78379,78383,78386,78388,78389,78392,78393,78395,78396,78397,78400,78404,78406,78407,78409,78412,78413,78415,78416,78418,78419,78421,78422,78423,78426,78427,78430,78431,78432,78433,78435,78437,78438,78440,78441,78443,78446,78447,78449,78450,78452,78454,78455,78457,78460,78462,78467,78469,78470,78473,78474,78476,78477,78481,78482,78483,78484,78486,78487,78489,78490,78494,78497,78498,78500,78501,78502,78506,78507,78511,78512,78513,78514,78516,78517,78520,78524,78525,78526,78529,78530,78531,78533,78534,78535,78537,78542,78543,78544,78547,78549,78550,78552,78554,78557,78559,78560,78561,78563,78564,78567,78570,78571,78573,78578,78581,78582,78583,78585,78586,78590,78593,78594,78595,78597,78601,78602,78603,78604,78607,78611,78612,78613,78616,78618,78620,78623,78624,78626,78627,78629,\r\n78632,78633,78634,78637,78638,78639,78641,78643,78644,78645,78648,78649,78653,78655,78656,78658,78660,78663,78664,78666,78668,78669,78673,78674,78675,78676,78678,78679,78683,78684,78686,78687,78689,78690,78693,78695,78696,78698,78699,78700,78704,78706,78707,78708,78711,78713,78714,78715,78719,78721,78723,78724,78727,78728,78729,78730,78733,78735,78737,78739,78740,78743,78745,78746,78748,78750,78755,78756,78758,78761,78762,78763,78765,78769,78770,78772,78773,78774,78776,78777,78780,78783,78784,78786,78788,78789,78790,78794,78795,78798,78799,78801,78803,78804,78805,78809,78810,78813,78815,78816,78818,78820,78821,78822,78824,78825,78827,78828,78830,78831,78834,78835,78839,78840,78842,78848,78849,78854,78857,78858,78859,78862,78863,78866,78867,78868,78870,78872,78873,78876,78877,78879,78880,78883,78885,78887,78888,78891,78893,78895,78898,78899,78900,78903,78904,78908,78909,78910,78912,78914,78916,78917,78921,78924,78925,78927,78929,78930,78932,78935,78936,78939,78940,78942,78947,78949,78950,78951,78953,78954,78955,78957,78962,78964,78965,78966,78969,78971,78972,78973,78975,78977,78978,78980,78982,78983,78985,78988,78990,78994,78998,78999,79001,79003,79005,79010,79011,79013,79014,79015,79018,79019,79021,79022,79024,79027,79029,79034,79035,79037,79038,79041,79044,79046,79047,79049,79050,79054,79055,79058,79059,79060,79062,79066,79068,79070,79071,79074,79075,79077,79079,79080,79081,79084,79085,79086,79088,79089,79091,79093,79094,79095,79098,79100,79103,79105,79106,79108,79110,79111,79113,79114,79116,79118,79119,79121,79123,79124,79125,79127,79128,79133,79136,79139,79141,79144,79145,79147,79150,79152,79154,79155,79156,79158,79161,79163,79165,79168,79172,79174,79176,79179,79180,79184,79185,79187,79189,79190,79192,79195,79196,79198,79199,79200,79201,79203,79204,79207,79208,79211,79212,79214,79215,79218,79220,79221,79224,79226,79228,79229,79230,79231,79234,79235,79236,79238,79241,79244,79247,79249,79253,79254,79258,79260,79262,79264,79267,79268,79270,79276,79279,79280,79283,79284,79285,79287,79290,79291,79295,79296,79297,79300,\r\n79301,79302,79303,79306,79307,79309,79310,79312,79313,79314,79317,79320,79321,79324,79325,79329,79331,79334,79335,79338,79339,79342,79343,79345,79346,79348,79351,79354,79357,79358,79359,79361,79363,79365,79368,79369,79371,79372,79377,79379,79380,79382,79385,79387,79389,79391,79392,79394,79397,79400,79401,79402,79405,79407,79408,79410,79412,79413,79416,79419,79420,79423,79424,79426,79430,79431,79432,79435,79436,79438,79439,79440,79444,79446,79450,79451,79452,79453,79455,79459,79462,79463,79465,79468,79471,79472,79474,79475,79477,79478,79480,79481,79483,79485,79490,79491,79492,79494,79497,79499,79500,79502,79504,79505,79507,79508,79509,79513,79514,79515,79517,79518,79522,79523,79524,79525,79528,79529,79532,79533,79537,79538,79540,79543,79544,79547,79549,79550,79551,79552,79555,79557,79560,79563,79564,79566,79567,79571,79573,79576,79577,79578,79580,79581,79582,79585,79586,79588,79589,79590,79592,79595,79596,79598,79599,79600,79602,79606,79609,79613,79614,79615,79618,79622,79624,79625,79627,79629,79631,79632,79633,79637,79640,79643,79644,79648,79650,79652,79653,79654,79656,79658,79660,79661,79662,79664,79665,79667,79668,79669,79672,79673,79675,79676,79677,79680,79681,79685,79687,79696,79698,79703,79705,79707,79712,79713,79716,79718,79719,79720,79722,79725,79728,79729,79731,79734,79739,79740,79741,79745,79746,79749,79752,79755,79756,79759,79762,79764,79765,79767,79768,79774,79776,79778,79779,79783,79784,79785,79788,79789,79793,79796,79797,79798,79799,79800,79801,79804,79805,79806,79807,79810,79811,79812,79814,79815,79816,79818,79820,79822,79823,79824,79825,79827,79828,79830,79831,79832,79833,79834,79838,79839,79840,79842,79843,79845,79847,79848,79849,79850,79851,79852,79853,79854,79855,79856,79857,79859,79860,79861,79863,79864,79866,79867,79869,79872,79875,79878,79879,79880,79882,79883,79884,79886,79887,79889,79890,79894,79897,79898,79900,79902,79904,79905,79906,79908,79909,79913,79915,79918,79921,79922,79924,79926,79928,79929,79932,79934,79935,79937,79938,79941,79942,79945,79947,79949,79951,79953,79955,79956,79957,79959,\r\n79962,79963,79968,79969,79973,79974,79976,79977,79978,79981,79982,79985,79986,79990,79992,79994,79996,79997,79999,80000,80001,80004,80008,80009,80012,80013,80015,80016,80020,80022,80023,80027,80028,80030,80032,80033,80035,80036,80037,80039,80040,80041,80045,80047,80050,80051,80053,80054,80057,80060,80061,80065,80066,80068,80069,80071,80072,80073,80074,80076,80077,80081,80082,80083,80093,80096,80098,80099,80100,80102,80104,80106,80110,80113,80114,80117,80118,80125,80126,80128,80130,80132,80134,80137,80139,80141,80142,80143,80146,80147,80149,80150,80155,80157,80158,80159,80160,80161,80162,80165,80166,80168,80170,80172,80173,80176,80177,80180,80182,80183,80186,80191,80192,80193,80196,80197,80200,80201,80202,80203,80205,80207,80209,80211,80212,80215,80216,80218,80219,80226,80228,80230,80231,80233,80234,80235,80238,80240,80242,80243,80245,80246,80248,80249,80250,80251,80253,80256,80260,80263,80264,80266,80267,80268,80269,80271,80273,80274,80275,80278,80281,80284,80285,80287,80289,80291,80293,80295,80296,80300,80301,80303,80305,80306,80307,80311,80315,80317,80319,80321,80322,80323,80326,80327,80328,80331,80332,80334,80337,80338,80340,80343,80345,80346,80348,80349,80351,80352,80354,80355,80357,80358,80360,80363,80364,80366,80368,80369,80370,80372,80373,80374,80377,80378,80380,80381,80382,80383,80387,80389,80390,80392,80396,80397,80399,80400,80402,80405,80406,80410,80411,80413,80415,80417,80418,80420,80422,80423,80424,80426,80427,80428,80430,80433,80437,80438,80439,80440,80444,80446,80447,80448,80450,80451,80453,80455,80457,80459,80462,80463,80465,80467,80468,80469,80472,80474,80475,80477,80480,80481,80483,80485,80486,80488,80489,80491,80492,80493,80494,80498,80499,80500,80503,80505,80506,80508,80512,80513,80515,80517,80520,80521,80526,80528,80529,80530,80533,80535,80537,80538,80539,80542,80547,80549,80550,80553,80558,80560,80561,80562,80564,80565,80569,80570,80571,80572,80575,80576,80577,80580,80582,80584,80585,80587,80588,80590,80591,80592,80596,80600,80601,80602,80605,80608,80610,80613,80614,80616,80617,80621,80622,80627,\r\n80628,80629,80632,80634,80639,80642,80644,80645,80646,80648,80649,80650,80654,80655,80656,80660,80663,80664,80667,80669,80670,80671,80673,80676,80678,80679,80680,80683,80684,80686,80687,80688,80689,80693,80695,80696,80698,80700,80701,80703,80704,80707,80710,80712,80714,80715,80716,80719,80720,80721,80723,80724,80727,80732,80734,80735,80737,80738,80739,80741,80743,80744,80747,80750,80753,80756,80757,80759,80760,80764,80766,80768,80769,80771,80772,80774,80775,80777,80780,80781,80785,80788,80791,80798,80799,80801,80802,80804,80807,80809,80811,80813,80815,80816,80817,80818,80821,80822,80824,80825,80827,80828,80830,80832,80834,80837,80838,80840,80841,80843,80845,80846,80849,80850,80853,80857,80858,80859,80863,80864,80867,80870,80871,80875,80876,80879,80881,80882,80883,80885,80886,80889,80890,80894,80896,80897,80899,80902,80903,80905,80906,80908,80909,80910,80912,80914,80916,80917,80919,80921,80923,80924,80926,80927,80928,80935,80936,80939,80941,80942,80944,80945,80946,80947,80950,80951,80953,80954,80957,80958,80959,80963,80964,80965,80967,80970,80971,80973,80975,80976,80978,80979,80981,80983,80985,80988,80990,80993,80994,80996,80997,81000,81001,81004,81006,81007,81009,81011,81012,81016,81019,81020,81021,81023,81026,81029,81031,81033,81036,81037,81041,81043,81044,81045,81047,81049,81050,81052,81053,81054,81056,81057,81058,81060,81064,81065,81067,81068,81070,81074,81076,81079,81081,81082,81085,81090,81093,81094,81097,81101,81102,81103,81105,81110,81112,81114,81116,81118,81119,81120,81122,81123,81128,81129,81131,81133,81134,81136,81138,81139,81142,81144,81145,81147,81148,81152,81153,81154,81157,81158,81160,81161,81162,81164,81166,81167,81170,81171,81172,81174,81175,81178,81179,81180,81182,81184,81186,81189,81196,81202,81204,81205,81208,81210,81212,81213,81216,81220,81222,81223,81225,81227,81229,81230,81231,81235,81238,81239,81241,81243,81246,81250,81251,81253,81258,81261,81264,81266,81267,81269,81271,81273,81276,81278,81279,81280,81282,81284,81286,81287,81288,81289,81295,81297,81300,81303,81307,81318,81320,81321,81326,81327,\r\n81330,81335,81336,81339,81340,81347,81353,81356,81363,81364,81365,81366,81367,81368,81370,81371,81372,81374,81375,81376,81379,81382,81383,81386,81387,81388,81389,81390,81393,81396,81400,81401,81402,81403,81404,81405,81407,81408,81410,81411,81412,81414,81416,81417,81420,81422,81423,81424,81426,81429,81432,81434,81435,81437,81438,81440,81441,81444,81445,81446,81448,81449,81450,81453,81455,81456,81458,81459,81460,81462,81466,81468,81469,81472,81474,81475,81477,81481,81482,81485,81486,81489,81491,81493,81494,81496,81499,81500,81503,81504,81505,81508,81509,81512,81514,81515,81516,81518,81519,81521,81524,81526,81527,81528,81530,81533,81534,81538,81541,81542,81543,81544,81546,81547,81550,81551,81553,81555,81557,81560,81561,81563,81565,81566,81568,81569,81570,81572,81573,81576,81577,81580,81582,81584,81585,81586,81588,81589,81591,81595,81597,81598,81600,81602,81603,81604,81607,81609,81610,81612,81614,81615,81616,81619,81621,81622,81624,81625,81628,81629,81630,81632,81633,81635,81638,81641,81642,81643,81645,81647,81649,81650,81651,81653,81656,81658,81662,81664,81666,81670,81672,81677,81679,81681,81685,81687,81691,81696,81697,81698,81700,81702,81706,81707,81708,81710,81711,81713,81714,81717,81719,81722,81723,81725,81726,81729,81730,81736,81739,81740,81744,81746,81747,81753,81756,81760,81761,81768,81770,81773,81775,81777,81781,81784,81788,81789,81793,81794,81796,81798,81801,81804,81805,81809,81810,81815,81816,81817,81819,81823,81826,81829,81831,81833,81834,81837,81839,81842,81845,81847,81848,81853,81854,81855,81860,81862,81864,81867,81868,81871,81874,81877,81881,81882,81886,81887,81888,81892,81894,81898,81900,81903,81906,81911,81912,81918,81919,81920,81922,81925,81927,81929,81931,81932,81934,81935,81937,81941,81943,81944,81945,81949,81952,81954,81956,81957,81960,81961,81965,81971,81972,81977,81978,81982,81983,81984,81985,81987,81991,81995,81997,81998,82000,82001,82006,82008,82011,82015,82016,82017,82021,82023,82024,82026,82033,82034,82035,82042,82044,82047,82052,82054,82056,82061,82067,82069,82071,82074,82077,82081,82086,82087,\r\n82088,82090,82093,82096,82097,82099,82102,82106,82107,82109,82112,82113,82117,82118,82119,82123,82126,82127,82128,82129,82132,82135,82139,82140,82142,82144,82147,82148,82149,82152,82156,82160,82161,82163,82164,82168,82172,82174,82176,82178,82179,82183,82187,82188,82189,82192,82194,82195,82198,82204,82208,82209,82212,82215,82218,82221,82225,82226,82228,82232,82233,82234,82238,82239,82247,82249,82250,82252,82255,82257,82259,82260,82263,82268,82269,82272,82275,82281,82283,82285,82286,82289,82290,82294,82296,82301,82302,82305,82308,82313,82314,82318,82319,82322,82324,82326,82327,82330,82332,82334,82335,82338,82339,82341,82346,82347,82349,82352,82354,82355,82357,82358,82361,82363,82366,82370,82374,82376,82377,82379,82381,82383,82386,82388,82390,82393,82394,82396,82398,82400,82406,82407,82409,82412,82415,82416,82419,82421,82423,82426,82429,82430,82433,82437,82438,82440,82441,82444,82447,82450,82452,82454,82456,82457,82458,82463,82465,82467,82469,82470,82471,82473,82474,82477,82481,82483,82487,82488,82489,82492,82493,82494,82496,82497,82501,82503,82506,82510,82511,82513,82514,82515,82517,82518,82519,82521,82525,82529,82532,82534,82536,82538,82539,82541,82542,82544,82546,82548,82550,82553,82555,82556,82557,82561,82562,82565,82568,82571,82573,82576,82577,82579,82581,82582,82585,82586,82589,82590,82591,82594,82595,82596,82601,82604,82606,82607,82609,82612,82616,82617,82618,82620,82622,82623,82624,82627,82631,82632,82636,82638,82642,82643,82645,82647,82649,82650,82654,82655,82657,82661,82663,82665,82667,82670,82671,82673,82674,82675,82677,82682,82685,82687,82689,82690,82693,82696,82697,82698,82699,82701,82705,82707,82708,82710,82713,82715,82718,82719,82723,82724,82725,82727,82728,82732,82734,82736,82738,82739,82742,82744,82745,82747,82748,82749,82754,82757,82759,82761,82764,82765,82767,82769,82772,82773,82774,82777,82779,82781,82783,82784,82786,82789,82792,82794,82797,82801,82802,82804,82805,82807,82809,82811,82813,82816,82817,82819,82824,82827,82828,82832,82833,82835,82836,82839,82843,82846,82849,82850,82853,82855,82856,82859,\r\n82861,82864,82867,82868,82869,82872,82873,82875,82879,82882,82883,82884,82885,82890,82894,82895,82899,82900,82904,82905,82909,82911,82912,82914,82917,82921,82923,82925,82926,82929,82933,82937,82940,82941,82945,82948,82949,82950,82954,82957,82958,82961,82962,82963,82966,82969,82971,82973,82979,82981,82983,82987,82990,82992,82997,83001,83002,83003,83005,83008,83009,83012,83014,83015,83016,83020,83021,83023,83024,83025,83027,83028,83029,83032,83033,83036,83037,83038,83040,83042,83045,83046,83047,83050,83052,83054,83056,83057,83058,83059,83063,83064,83068,83069,83070,83073,83075,83077,83079,83084,83086,83089,83090,83091,83092,83094,83096,83097,83099,83100,83102,83104,83105,83106,83107,83110,83111,83112,83113,83115,83116,83120,83123,83124,83127,83130,83132,83135,83138,83140,83150,83153,83155,83158,83159,83160,83161,83164,83166,83167,83171,83175,83178,83183,83184,83187,83188,83190,83194,83196,83199,83202,83203,83206,83208,83209,83211,83213,83219,83220,83222,83224,83228,83229,83232,83236,83238,83240,83241,83243,83244,83249,83252,83253,83254,83256,83257,83259,83260,83263,83267,83270,83272,83274,83275,83277,83279,83281,83282,83285,83287,83290,83292,83293,83295,83297,83298,83299,83301,83302,83305,83308,83311,83313,83317,83319,83321,83322,83324,83325,83327,83329,83331,83336,83337,83338,83340,83342,83343,83346,83350,83352,83353,83356,83358,83360,83363,83364,83366,83368,83370,83371,83373,83375,83378,83379,83382,83384,83386,83390,83391,83396,83397,83400,83402,83404,83405,83406,83407,83409,83411,83413,83416,83417,83418,83422,83424,83427,83430,83431,83433,83436,83438,83439,83440,83443,83445,83447,83448,83449,83452,83455,83456,83457,83461,83463,83468,83469,83471,83474,83475,83476,83479,83481,83482,83485,83486,83487,83488,83490,83492,83494,83498,83502,83503,83507,83508,83511,83512,83517,83519,83520,83522,83523,83525,83527,83530,83547,83548,83549,83550,83552,83553,83556,83557,83558,83559,83560,83562,83565,83567,83568,83571,83573,83574,83576,83577,83581,83582,83584,83586,83589,83591,83592,83593,83596,83597,83598,83600,83605,83607,83610,\r\n83612,83614,83615,83617,83621,83622,83624,83625,83629,83630,83633,83634,83635,83639,83641,83642,83643,83647,83649,83651,83652,83654,83657,83659,83660,83662,83663,83664,83666,83667,83671,83673,83674,83677,83678,83680,83681,83684,83686,83687,83690,83693,83694,83695,83699,83700,83701,83703,83705,83706,83710,83711,83712,83714,83715,83717,83720,83722,83726,83727,83728,83730,83732,83734,83736,83737,83739,83742,83743,83745,83746,83750,83751,83755,83756,83757,83758,83760,83761,83765,83766,83768,83771,83772,83775,83776,83780,83781,83783,83786,83788,83790,83794,83796,83800,83803,83804,83805,83807,83808,83809,83812,83813,83816,83819,83821,83823,83825,83826,83829,83833,83834,83836,83838,83840,83843,83845,83846,83848,83855,83856,83857,83861,83862,83866,83867,83868,83869,83871,83875,83876,83878,83882,83884,83885,83886,83887,83889,83894,83895,83896,83905,83906,83909,83911,83913,83917,83921,83922,83924,83927,83928,83930,83933,83934,83936,83937,83940,83943,83947,83948,83949,83951,83952,83953,83955,83959,83962,83963,83965,83967,83969,83971,83973,83977,83979,83982,83983,83986,83987,83988,83990,83992,83994,83996,83997,84001,84003,84008,84010,84012,84013,84015,84016,84018,84022,84023,84025,84028,84031,84034,84036,84038,84039,84042,84043,84046,84049,84051,84052,84055,84058,84059,84061,84064,84066,84068,84070,84071,84073,84083,84084,84086,84088,84090,84094,84096,84102,84103,84104,84105,84109,84111,84112,84114,84116,84118,84120,84122,84123,84124,84126,84130,84131,84132,84134,84136,84137,84138,84142,84144,84145,84147,84151,84152,84153,84157,84158,84159,84160,84163,84164,84166,84169,84170,84173,84174,84175,84177,84181,84182,84183,84185,84186,84189,84190,84192,84196,84197,84198,84199,84202,84204,84205,84207,84211,84212,84213,84216,84217,84220,84223,84224,84225,84229,84230,84232,84235,84238,84239,84240,84241,84245,84246,84248,84249,84251,84253,84254,84257,84258,84259,84262,84263,84264,84268,84271,84272,84274,84278,84279,84283,84284,84285,84288,84290,84292,84293,84296,84297,84298,84300,84301,84304,84305,84306,84308,84309,84313,84314,84315,84317,\r\n84320,84322,84325,84326,84327,84328,84330,84331,84333,84337,84338,84341,84342,84345,84347,84352,84355,84358,84359,84363,84365,84368,84370,84373,84374,84376,84378,84380,84383,84384,84386,84387,84389,84391,84392,84393,84396,84397,84400,84402,84403,84406,84409,84410,84412,84413,84416,84419,84421,84424,84425,84427,84428,84433,84434,84437,84438,84439,84441,84442,84444,84447,84448,84450,84452,84455,84456,84457,84459,84461,84464,84465,84468,84470,84471,84474,84476,84479,84482,84485,84487,84489,84491,84493,84494,84499,84500,84501,84503,84506,84507,84508,84511,84513,84515,84518,84519,84520,84522,84523,84527,84528,84531,84533,84534,84538,84539,84541,84542,84545,84547,84548,84549,84551,84552,84555,84557,84559,84560,84561,84563,84564,84567,84571,84572,84573,84577,84578,84579,84580,84583,84584,84585,84588,84590,84593,84595,84596,84597,84599,84600,84601,84602,84603,84604,84606,84607,84611,84613,84617,84619,84622,84623,84624,84625,84626,84629,84631,84632,84633,84634,84636,84640,84641,84643,84645,84646,84648,84650,84653,84655,84656,84657,84658,84659,84660,84661,84664,84667,84670,84672,84674,84676,84677,84680,84681,84683,84686,84688,84689,84690,84692,84695,84696,84697,84699,84700,84702,84705,84707,84708,84709,84712,84716,84718,84719,84720,84722,84724,84725,84727,84728,84729,84733,84736,84737,84738,84740,84741,84743,84746,84747,84748,84751,84754,84755,84756,84758,84759,84761,84764,84767,84768,84769,84771,84772,84773,84775,84776,84781,84782,84783,84785,84788,84790,84791,84793,84796,84797,84798,84800,84803,84804,84805,84806,84809,84810,84814,84817,84818,84819,84821,84824,84825,84826,84828,84832,84833,84835,84836,84837,84840,84841,84843,84847,84848,84851,84853,84854,84855,84857,84859,84860,84862,84865,84867,84868,84871,84872,84873,84875,84877,84879,84882,84883,84884,84887,84889,84890,84891,84894,84895,84898,84900,84901,84903,84907,84908,84911,84913,84914,84917,84919,84920,84923,84927,84929,84930,84931,84932,84933,84934,84937,84942,84943,84950,84954,84955,84958,84961,84962,84963,84965,84966,84968,84970,84972,84974,84977,84978,84980,84983,\r\n84984,84985,84988,84989,84992,84994,84996,84998,85001,85002,85004,85007,85008,85009,85012,85014,85015,85019,85020,85022,85023,85025,85028,85029,85031,85032,85034,85037,85038,85041,85043,85044,85045,85046,85047,85048,85050,85052,85053,85055,85056,85057,85059,85060,85062,85064,85066,85067,85069,85070,85072,85075,85078,85079,85080,85081,85085,85086,85089,85090,85092,85094,85097,85098,85099,85101,85102,85105,85108,85112,85115,85117,85119,85121,85122,85124,85126,85129,85131,85133,85135,85140,85143,85145,85148,85151,85154,85155,85157,85158,85161,85165,85166,85168,85171,85172,85174,85177,85179,85181,85182,85184,85186,85188,85189,85192,85196,85197,85200,85201,85204,85206,85210,85213,85215,85217,85218,85220,85227,85231,85232,85233,85237,85241,85243,85246,85247,85249,85250,85252,85255,85257,85259,85262,85264,85267,85269,85271,85274,85276,85279,85280,85282,85286,85287,85289,85291,85292,85294,85296,85298,85301,85304,85307,85308,85310,85313,85314,85317,85319,85320,85323,85326,85328,85330,85333,85335,85337,85340,85341,85343,85344,85347,85349,85350,85353,85356,85359,85360,85363,85365,85367,85368,85370,85372,85373,85376,85377,85382,85383,85385,85387,85388,85390,85394,85396,85398,85402,85403,85404,85406,85408,85409,85410,85412,85417,85418,85420,85422,85426,85428,85430,85432,85433,85436,85438,85439,85442,85445,85446,85448,85449,85453,85457,85458,85461,85462,85465,85466,85468,85469,85470,85474,85475,85476,85480,85481,85482,85486,85489,85492,85495,85496,85498,85499,85501,85502,85504,85506,85508,85510,85513,85517,85520,85522,85525,85526,85527,85529,85530,85531,85533,85536,85540,85541,85543,85545,85548,85552,85555,85556,85559,85561,85564,85565,85567,85570,85571,85572,85576,85577,85578,85580,85581,85584,85586,85587,85591,85592,85593,85598,85599,85602,85604,85605,85608,85611,85612,85614,85616,85617,85619,85624,85625,85626,85627,85629,85632,85635,85639,85641,85643,85646,85647,85649,85652,85655,85657,85658,85659,85661,85663,85665,85667,85668,85671,85673,85676,85677,85682,85683,85684,85688,85689,85691,85693,85694,85696,85697,85698,85701,85703,\r\n85706,85708,85710,85712,85714,85718,85721,85722,85724,85725,85727,85728,85730,85731,85732,85734,85737,85740,85742,85744,85748,85751,85752,85755,85756,85760,85761,85762,85766,85769,85770,85771,85774,85777,85781,85782,85783,85785,85789,85791,85793,85795,85796,85798,85802,85803,85807,85810,85811,85812,85813,85816,85818,85822,85824,85826,85827,85829,85830,85835,85838,85840,85844,85845,85847,85850,85851,85855,85856,85857,85859,85860,85865,85868,85870,85871,85873,85875,85876,85878,85879,85882,85884,85886,85888,85890,85892,85895,85896,85899,85902,85904,85905,85908,85910,85911,85914,85915,85918,85922,85924,85927,85928,85929,85932,85935,85937,85939,85940,85941,85943,85944,85948,85952,85955,85956,85958,85960,85961,85962,85965,85969,85971,85974,85976,85978,85982,85984,85985,85988,85989,85993,85994,85995,85998,86002,86003,86004,86007,86008,86011,86012,86016,86023,86025,86028,86032,86034,86037,86040,86047,86048,86049,86052,86053,86056,86057,86058,86063,86066,86067,86069,86071,86073,86074,86078,86080,86081,86082,86083,86085,86087,86090,86092,86093,86096,86099,86100,86102,86103,86104,86108,86111,86114,86115,86116,86118,86122,86123,86124,86126,86127,86128,86132,86134,86137,86138,86140,86141,86142,86143,86146,86148,86149,86152,86156,86158,86159,86160,86162,86163,86164,86168,86169,86171,86172,86175,86178,86180,86181,86185,86186,86187,86191,86193,86195,86198,86199,86201,86206,86208,86209,86211,86212,86216,86218,86221,86222,86224,86226,86228,86229,86230,86234,86235,86236,86238,86240,86243,86244,86245,86247,86250,86251,86254,86257,86259,86260,86263,86264,86266,86267,86269,86270,86273,86275,86276,86277,86281,86284,86285,86287,86289,86293,86296,86297,86299,86300,86301,86303,86304,86307,86308,86310,86313,86314,86316,86321,86322,86323,86327,86328,86330,86331,86332,86334,86335,86337,86338,86341,86342,86343,86345,86347,86350,86351,86353,86357,86358,86360,86364,86365,86368,86369,86371,86373,86375,86377,86380,86381,86383,86387,86389,86391,86396,86397,86398,86402,86403,86404,86406,86409,86412,86413,86419,86422,86423,86424,86426,86427,86429,86430,\r\n86431,86434,86435,86436,86441,86442,86443,86445,86449,86452,86453,86454,86455,86457,86461,86462,86463,86465,86467,86469,86473,86475,86477,86478,86483,86485,86487,86490,86492,86496,86497,86500,86501,86504,86506,86507,86509,86512,86513,86515,86516,86517,86518,86522,86524,86529,86530,86532,86533,86536,86537,86539,86540,86542,86545,86546,86547,86551,86553,86557,86561,86562,86563,86565,86567,86569,86570,86572,86573,86575,86579,86580,86581,86583,86584,86587,86588,86589,86590,86592,86594,86595,86598,86602,86603,86606,86611,86615,86616,86619,86621,86623,86625,86627,86628,86630,86632,86633,86635,86639,86640,86641,86644,86645,86646,86648,86650,86651,86653,86654,86657,86660,86663,86671,86675,86676,86677,86679,86681,86683,86684,86686,86689,86690,86692,86695,86696,86697,86698,86702,86704,86707,86709,86710,86713,86714,86715,86717,86719,86720,86723,86726,86728,86730,86732,86734,86737,86738,86741,86742,86745,86747,86750,86751,86752,86754,86755,86759,86762,86763,86765,86767,86770,86771,86772,86773,86778,86780,86782,86783,86784,86786,86788,86789,86792,86793,86797,86798,86799,86803,86806,86807,86809,86811,86813,86814,86815,86817,86819,86821,86823,86825,86826,86827,86830,86833,86836,86837,86840,86843,86844,86845,86848,86849,86850,86851,86853,86856,86858,86859,86860,86868,86872,86874,86875,86878,86881,86882,86884,86887,86888,86890,86891,86893,86895,86897,86899,86900,86901,86904,86905,86907,86909,86912,86913,86917,86919,86920,86921,86923,86925,86927,86928,86930,86932,86933,86935,86937,86940,86942,86945,86947,86950,86951,86953,86954,86955,86957,86959,86960,86961,86963,86964,86967,86970,86972,86973,86975,86978,86979,86980,86982,86985,86986,86989,86990,86991,86993,86996,86998,86999,87000,87001,87007,87009,87011,87014,87016,87017,87020,87023,87026,87027,87029,87030,87032,87034,87035,87036,87037,87041,87043,87044,87045,87046,87050,87051,87054,87057,87058,87063,87064,87067,87068,87070,87071,87072,87074,87075,87076,87080,87081,87082,87085,87092,87095,87098,87099,87100,87102,87103,87106,87108,87112,87115,87118,87120,87122,87124,87128,87131,87133,\r\n87137,87141,87142,87143,87145,87148,87150,87151,87153,87156,87157,87158,87159,87163,87165,87166,87168,87172,87174,87175,87177,87179,87182,87184,87187,87188,87189,87191,87193,87195,87196,87197,87198,87200,87201,87206,87207,87209,87211,87212,87214,87216,87218,87221,87222,87223,87225,87227,87230,87232,87233,87237,87238,87240,87243,87245,87248,87249,87250,87252,87253,87257,87258,87259,87260,87261,87265,87267,87271,87272,87274,87278,87280,87281,87283,87285,87287,87290,87291,87294,87296,87297,87298,87304,87305,87306,87308,87311,87312,87314,87315,87316,87318,87320,87322,87323,87325,87326,87328,87330,87332,87333,87334,87336,87338,87342,87343,87346,87348,87349,87352,87355,87359,87361,87362,87364,87366,87369,87370,87374,87376,87377,87378,87382,87383,87384,87385,87389,87390,87391,87395,87397,87399,87401,87404,87405,87407,87408,87409,87411,87412,87415,87418,87419,87420,87424,87426,87428,87429,87430,87432,87435,87436,87438,87440,87441,87444,87447,87448,87450,87451,87455,87457,87460,87464,87466,87467,87472,87473,87475,87476,87477,87478,87480,87481,87483,87487,87489,87491,87493,87495,87497,87499,87501,87503,87504,87506,87507,87510,87512,87514,87515,87518,87520,87521,87522,87526,87529,87530,87532,87533,87536,87538,87539,87542,87544,87545,87546,87547,87551,87552,87555,87557,87558,87559,87561,87564,87565,87568,87572,87576,87578,87579,87580,87582,87583,87587,87589,87591,87592,87594,87596,87598,87601,87603,87606,87607,87610,87611,87614,87615,87616,87619,87621,87622,87624,87626,87627,87629,87631,87632,87635,87637,87638,87639,87640,87643,87646,87647,87648,87650,87653,87655,87657,87659,87660,87661,87665,87667,87668,87671,87673,87674,87676,87679,87680,87682,87683,87685,87689,87690,87692,87695,87696,87698,87701,87704,87706,87709,87710,87711,87713,87716,87718,87719,87720,87721,87725,87728,87729,87731,87732,87734,87735,87737,87740,87741,87745,87747,87749,87750,87752,87753,87754,87758,87759,87761,87763,87765,87767,87769,87771,87772,87776,87778,87779,87780,87781,87783,87786,87788,87791,87792,87794,87795,87797,87800,87801,87803,87804,87808,87809,\r\n87810,87813,87814,87817,87820,87826,87827,87829,87830,87831,87834,87836,87837,87838,87840,87843,87844,87847,87850,87851,87852,87855,87856,87858,87860,87866,87867,87868,87870,87877,87878,87879,87880,87884,87887,87889,87890,87892,87894,87895,87899,87900,87902,87905,87908,87909,87910,87913,87916,87917,87919,87923,87926,87927,87928,87930,87933,87934,87937,87939,87941,87943,87944,87947,87948,87950,87953,87956,87958,87959,87961,87962,87964,87966,87968,87970,87972,87974,87975,87979,87981,87986,87987,87988,87991,87992,87993,87996,87997,87999,88000,88006,88007,88009,88010,88013,88015,88016,88017,88020,88022,88025,88026,88027,88029,88030,88033,88035,88036,88038,88040,88041,88044,88045,88048,88049,88050,88051,88053,88056,88057,88059,88062,88064,88066,88069,88071,88073,88074,88077,88078,88080,88082,88085,88086,88087,88089,88090,88093,88096,88097,88099,88100,88101,88104,88106,88108,88109,88111,88113,88115,88116,88119,88121,88122,88123,88125,88129,88132,88134,88137,88139,88140,88143,88144,88146,88150,88151,88154,88155,88156,88158,88159,88162,88163,88165,88169,88170,88172,88173,88174,88177,88179,88181,88182,88184,88185,88188,88189,88192,88196,88197,88198,88200,88203,88204,88208,88210,88212,88213,88215,88217,88219,88222,88223,88225,88227,88230,88231,88233,88234,88238,88240,88241,88242,88244,88245,88249,88251,88253,88255,88256,88258,88260,88264,88265,88267,88268,88269,88274,88277,88278,88286,88287,88288,88290,88291,88293,88296,88297,88299,88302,88304,88305,88306,88308,88309,88312,88314,88315,88319,88321,88322,88325,88326,88329,88330,88334,88336,88338,88340,88341,88342,88345,88349,88353,88356,88358,88363,88364,88365,88369,88372,88373,88374,88377,88378,88387,88388,88390,88394,88396,88397,88399,88400,88402,88406,88407,88408,88410,88412,88413,88415,88417,88418,88419,88421,88424,88427,88428,88429,88431,88433,88436,88438,88442,88445,88453,88454,88455,88457,88459,88461,88462,88463,88465,88466,88467,88469,88470,88472,88474,88475,88477,88478,88481,88482,88484,88486,88487,88489,88490,88491,88493,88494,88497,88499,88501,88502,88503,88504,88507,\r\n88509,88511,88513,88514,88515,88517,88519,88523,88524,88525,88527,88529,88530,88532,88533,88536,88538,88539,88541,88543,88544,88545,88546,88549,88553,88555,88556,88557,88559,88560,88561,88563,88564,88566,88568,88571,88573,88574,88575,88576,88578,88580,88581,88582,88585,88588,88589,88592,88595,88596,88597,88599,88601,88602,88604,88605,88608,88609,88611,88612,88615,88616,88618,88622,88623,88626,88628,88629,88631,88632,88634,88635,88637,88640,88643,88644,88645,88647,88648,88651,88652,88654,88656,88658,88659,88662,88663,88665,88666,88668,88669,88671,88672,88674,88675,88679,88680,88685,88686,88688,88689,88691,88693,88694,88695,88696,88698,88702,88703,88704,88707,88711,88712,88713,88714,88716,88719,88720,88723,88724,88726,88727,88728,88732,88733,88734,88736,88737,88739,88740,88743,88745,88746,88750,88751,88752,88753,88756,88760,88761,88763,88766,88767,88768,88771,88772,88778,88779,88780,88782,88783,88786,88788,88790,88792,88796,88798,88799,88800,88803,88806,88808,88810,88812,88814,88815,88817,88818,88819,88821,88822,88824,88827,88829,88830,88834,88835,88838,88839,88842,88845,88852,88853,88854,88858,88860,88863,88864,88871,88872,88874,88876,88878,88880,88883,88884,88886,88887,88891,88893,88896,88897,88899,88900,88903,88904,88905,88908,88909,88911,88912,88918,88921,88922,88924,88925,88926,88931,88936,88937,88940,88943,88944,88946,88947,88948,88950,88952,88954,88955,88958,88959,88960,88963,88966,88968,88971,88976,88986,88988,88990,88993,88994,88996,88999,89003,89005,89006,89008,89009,89011,89012,89014,89017,89019,89020,89023,89025,89026,89028,89029,89032,89034,89036,89037,89039,89040,89041,89044,89047,89048,89049,89050,89053,89055,89057,89058,89060,89062,89065,89067,89068,89070,89072,89073,89076,89078,89079,89084,89085,89089,89092,89093,89095,89096,89097,89099,89100,89104,89108,89109,89110,89114,89115,89117,89118,89119,89123,89125,89126,89127,89129,89130,89132,89135,89136,89137,89139,89143,89144,89146,89149,89150,89152,89153,89154,89155,89157,89161,89163,89164,89166,89168,89170,89173,89174,89176,89180,89184,89185,89188,89189,\r\n89190,89191,89193,89194,89197,89199,89201,89202,89203,89207,89210,89212,89213,89214,89217,89218,89220,89221,89223,89224,89226,89227,89229,89231,89232,89233,89235,89237,89240,89243,89245,89247,89248,89250,89254,89256,89258,89260,89261,89262,89266,89267,89268,89273,89278,89279,89282,89283,89287,89288,89289,89292,89296,89297,89298,89299,89301,89303,89305,89306,89307,89308,89312,89313,89318,89319,89320,89324,89327,89328,89331,89332,89336,89337,89339,89340,89342,89343,89344,89346,89347,89353,89355,89358,89362,89363,89364,89368,89372,89374,89375,89379,89380,89383,89386,89388,89389,89393,89394,89395,89397,89402,89404,89405,89406,89407,89409,89410,89413,89414,89415,89416,89418,89419,89422,89426,89428,89429,89432,89435,89436,89438,89439,89440,89444,89450,89451,89456,89457,89458,89462,89463,89466,89468,89473,89474,89476,89481,89485,89489,89490,89491,89493,89495,89496,89497,89499,89501,89503,89509,89512,89513,89514,89515,89518,89522,89523,89526,89527,89530,89537,89538,89543,89546,89548,89554,89555,89558,89560,89565,89570,89574,89578,89582,89584,89585,89587,89588,89591,89592,89596,89597,89598,89602,89605,89606,89607,89608,89613,89616,89618,89621,89623,89624,89626,89629,89632,89634,89635,89637,89640,89641,89643,89644,89646,89649,89650,89654,89655,89656,89658,89659,89663,89664,89667,89668,89671,89672,89673,89674,89676,89678,89679,89682,89683,89687,89688,89690,89692,89693,89695,89699,89701,89703,89704,89706,89708,89709,89711,89713,89717,89718,89720,89721,89722,89725,89726,89728,89731,89733,89735,89738,89739,89741,89742,89743,89745,89746,89748,89753,89754,89755,89759,89760,89761,89765,89766,89767,89771,89772,89775,89776,89779,89780,89783,89785,89786,89787,89789,89790,89793,89795,89797,89798,89800,89802,89805,89809,89810,89811,89814,89817,89818,89820,89822,89825,89826,89827,89829,89830,89832,89833,89835,89837,89840,89841,89844,89847,89849,89851,89852,89853,89855,89858,89859,89860,89863,89864,89865,89866,89868,89871,89872,89876,89877,89879,89880,89883,89885,89887,89889,89893,89896,89897,89898,89900,89901,89902,89904,89907,89908,89912,\r\n89913,89914,89920,89921,89923,89924,89925,89927,89928,89930,89933,89934,89936,89937,89940,89942,89944,89947,89948,89949,89951,89952,89953,89957,89959,89961,89962,89964,89965,89967,89968,89970,89974,89975,89977,89978,89980,89981,89982,89984,89986,89987,89988,89989,89991,89992,89994,89995,89999,90001,90002,90003,90005,90006,90009,90012,90014,90015,90017,90018,90023,90024,90026,90028,90032,90033,90034,90036,90037,90040,90041,90043,90044,90047,90049,90050,90051,90052,90059,90060,90062,90064,90065,90066,90068,90069,90071,90072,90073,90075,90076,90078,90081,90085,90088,90089,90090,90092,90094,90095,90098,90101,90103,90104,90105,90110,90112,90113,90114,90115,90118,90119,90121,90123,90124,90128,90131,90132,90133,90136,90137,90140,90142,90143,90145,90146,90149,90151,90152,90154,90156,90157,90159,90160,90162,90164,90166,90167,90169,90170,90171,90175,90178,90179,90180,90181,90184,90185,90187,90189,90194,90197,90200,90201,90204,90209,90210,90211,90215,90216,90217,90220,90221,90223,90224,90226,90227,90228,90230,90231,90232,90234,90239,90242,90245,90246,90250,90255,90257,90259,90260,90265,90266,90269,90270,90271,90275,90278,90281,90283,90284,90285,90287,90290,90291,90292,90298,90301,90302,90303,90304,90306,90307,90310,90311,90313,90314,90315,90316,90320,90323,90324,90326,90329,90331,90335,90336,90338,90341,90343,90346,90347,90348,90352,90354,90355,90359,90362,90363,90365,90367,90371,90373,90374,90376,90377,90379,90380,90381,90383,90384,90385,90387,90389,90391,90392,90397,90399,90402,90404,90405,90407,90410,90412,90413,90415,90417,90418,90422,90425,90427,90428,90431,90433,90435,90440,90442,90445,90446,90447,90449,90450,90451,90454,90455,90456,90458,90460,90461,90466,90467,90468,90469,90471,90472,90474,90475,90477,90481,90482,90484,90487,90489,90494,90496,90497,90499,90500,90502,90504,90505,90507,90509,90510,90513,90515,90516,90518,90520,90522,90526,90529,90531,90533,90535,90538,90539,90540,90543,90545,90547,90548,90550,90551,90552,90554,90556,90557,90559,90561,90563,90565,90568,90569,90570,90571,90574,90575,90577,90580,90584,90587,\r\n90589,90592,90593,90596,90597,90599,90600,90602,90604,90605,90607,90608,90609,90611,90613,90615,90616,90618,90620,90622,90624,90625,90630,90632,90633,90635,90637,90638,90639,90642,90644,90646,90648,90649,90651,90655,90656,90659,90660,90663,90665,90667,90668,90673,90677,90680,90681,90683,90684,90686,90688,90689,90691,90692,90694,90696,90700,90701,90702,90704,90706,90709,90711,90712,90716,90717,90722,90725,90728,90734,90736,90737,90740,90741,90742,90745,90747,90749,90750,90752,90753,90755,90757,90758,90760,90761,90766,90769,90770,90773,90776,90777,90779,90782,90783,90785,90786,90790,90792,90795,90800,90802,90803,90806,90807,90808,90811,90812,90814,90815,90817,90818,90822,90823,90825,90827,90828,90832,90833,90834,90835,90838,90839,90841,90842,90843,90847,90848,90850,90853,90857,90858,90859,90861,90863,90865,90868,90869,90872,90873,90874,90876,90879,90881,90882,90883,90887,90889,90891,90896,90897,90898,90900,90905,90907,90908,90911,90914,90915,90916,90918,90919,90921,90922,90926,90930,90933,90934,90937,90938,90941,90943,90944,90945,90946,90949,90952,90954,90956,90960,90961,90965,90966,90971,90972,90975,90976,90978,90980,90981,90982,90992,90995,90998,91006,91007\r\n\t\t} \r\n\t\tGeometryVersion: 124\r\n\t\tLayerElementNormal: 0 {\r\n\t\t\tVersion: 102\r\n\t\t\tName: \"\"\r\n\t\t\tMappingInformationType: \"ByPolygonVertex\"\r\n\t\t\tReferenceInformationType: \"Direct\"\r\n\t\t\tNormals: *273042 {\r\n\t\t\t\ta: -0.615803182125092,-0.769678115844727,0.168469190597534,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.746909618377686,-0.638622760772705,0.185167282819748,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.908264517784119,-0.402994424104691,0.112476132810116,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.720512449741364,-0.609711468219757,0.330323368310928,\r\n-0.608868300914764,-0.755570590496063,0.241645351052284,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.957254707813263,-0.286717057228088,0.0381655804812908,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.790795743465424,-0.522526502609253,0.318760246038437,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.588932693004608,-0.763725101947784,0.264352411031723,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.910558879375458,-0.337222635746002,0.239088535308838,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.790795743465424,-0.522526502609253,0.318760246038437,-0.720512449741364,-0.609711468219757,0.330323368310928,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.921541094779968,0.299404978752136,0.247221648693085,-0.917774856090546,0.367717653512955,0.149909824132919,\r\n-0.990371406078339,0.0319164656102657,0.134706124663353,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.790795743465424,-0.522526502609253,0.318760246038437,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.634203672409058,-0.72170627117157,0.277354627847672,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.790795743465424,-0.522526502609253,0.318760246038437,-0.882527351379395,-0.313222646713257,0.350766241550446,-0.921541094779968,0.299404978752136,0.247221648693085,-0.990371406078339,0.0319164656102657,0.134706124663353,-0.917774856090546,0.367717653512955,0.149909824132919,-0.904452562332153,0.292012631893158,0.310956597328186,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.921541094779968,0.299404978752136,0.247221648693085,-0.917774856090546,0.367717653512955,0.149909824132919,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.637302100658417,-0.712090075016022,0.294573605060577,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.790795743465424,-0.522526502609253,0.318760246038437,\r\n-0.914715647697449,-0.269655495882034,0.300966918468475,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.634203672409058,-0.72170627117157,0.277354627847672,-0.570636391639709,-0.774850487709045,0.271993905305862,-0.578005850315094,-0.775402009487152,0.254284769296646,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.634203672409058,-0.72170627117157,0.277354627847672,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.921541094779968,0.299404978752136,0.247221648693085,-0.917774856090546,0.367717653512955,0.149909824132919,-0.869410872459412,0.425109535455704,0.251806437969208,-0.956584274768829,0.0246339440345764,0.290412724018097,-0.904452562332153,0.292012631893158,0.310956597328186,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.904452562332153,0.292012631893158,0.310956597328186,-0.921541094779968,0.299404978752136,0.247221648693085,-0.869410872459412,0.425109535455704,0.251806437969208,-0.917774856090546,0.367717653512955,0.149909824132919,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.90642511844635,0.400000125169754,0.135621771216393,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.779449880123138,-0.56513386964798,0.27033594250679,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.634203672409058,-0.72170627117157,0.277354627847672,\r\n-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.634203672409058,-0.72170627117157,0.277354627847672,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.917774856090546,0.367717653512955,0.149909824132919,-0.90642511844635,0.400000125169754,0.135621771216393,-0.869410872459412,0.425109535455704,0.251806437969208,-0.904452562332153,0.292012631893158,0.310956597328186,-0.886648952960968,0.273373007774353,0.372988879680634,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.855134606361389,0.403474271297455,0.325504511594772,-0.904452562332153,0.292012631893158,0.310956597328186,-0.869410872459412,0.425109535455704,0.251806437969208,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.90642511844635,0.400000125169754,0.135621771216393,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.684927582740784,-0.68296867609024,0.253826469182968,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.62739360332489,-0.754909574985504,0.191019967198372,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.914715647697449,-0.269655495882034,0.300966918468475,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.600943863391876,-0.798098385334015,0.0436496920883656,\r\n-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.90642511844635,0.400000125169754,0.135621771216393,-0.875261545181274,0.423102617263794,0.234310135245323,-0.869410872459412,0.425109535455704,0.251806437969208,-0.904452562332153,0.292012631893158,0.310956597328186,-0.855134606361389,0.403474271297455,0.325504511594772,-0.886648952960968,0.273373007774353,0.372988879680634,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.886648952960968,0.273373007774353,0.372988879680634,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.855134606361389,0.403474271297455,0.325504511594772,-0.869410872459412,0.425109535455704,0.251806437969208,-0.852789342403412,0.418839335441589,0.311967700719833,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.90642511844635,0.400000125169754,0.135621771216393,-0.820072710514069,-0.497058212757111,0.283573120832443,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.687779605388641,-0.685572624206543,0.238640457391739,-0.709794163703918,-0.60507208108902,0.360665887594223,\r\n-0.62739360332489,-0.754909574985504,0.191019967198372,-0.613195896148682,-0.769968032836914,0.176464825868607,-0.62739360332489,-0.754909574985504,0.191019967198372,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.625824689865112,-0.757623851299286,0.185335516929626,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.723955988883972,-0.639540493488312,0.258602738380432,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.907230734825134,-0.276688277721405,0.316821396350861,-0.932053744792938,0.0394968278706074,0.360160678625107,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.90642511844635,0.400000125169754,0.135621771216393,-0.922751426696777,0.347352683544159,0.166960775852203,-0.875261545181274,0.423102617263794,0.234310135245323,-0.852789342403412,0.418839335441589,0.311967700719833,-0.869410872459412,0.425109535455704,0.251806437969208,-0.875261545181274,0.423102617263794,0.234310135245323,-0.840224981307983,0.327272742986679,0.432336002588272,-0.886648952960968,0.273373007774353,0.372988879680634,-0.855134606361389,0.403474271297455,0.325504511594772,-0.840224981307983,0.327272742986679,0.432336002588272,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.886648952960968,0.273373007774353,0.372988879680634,\r\n-0.841464996337891,0.377782493829727,0.386285752058029,-0.855134606361389,0.403474271297455,0.325504511594772,-0.852789342403412,0.418839335441589,0.311967700719833,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.922751426696777,0.347352683544159,0.166960775852203,-0.90642511844635,0.400000125169754,0.135621771216393,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.796992063522339,-0.526758313179016,0.295515090227127,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.62739360332489,-0.754909574985504,0.191019967198372,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.62739360332489,-0.754909574985504,0.191019967198372,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.770847201347351,-0.632754147052765,-0.0735977366566658,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.600943863391876,-0.798098385334015,0.0436496920883656,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.499478697776794,-0.843991279602051,-0.195447281002998,-0.844338834285736,-0.49977120757103,0.193185269832611,\r\n-0.882231712341309,-0.384362518787384,0.271905452013016,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.922751426696777,0.347352683544159,0.166960775852203,-0.896605789661407,0.355314016342163,0.26429083943367,-0.875261545181274,0.423102617263794,0.234310135245323,-0.852789342403412,0.418839335441589,0.311967700719833,-0.875261545181274,0.423102617263794,0.234310135245323,-0.896605789661407,0.355314016342163,0.26429083943367,-0.840224981307983,0.327272742986679,0.432336002588272,-0.855134606361389,0.403474271297455,0.325504511594772,-0.841464996337891,0.377782493829727,0.386285752058029,-0.833818197250366,0.115977317094803,0.539718747138977,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.840224981307983,0.327272742986679,0.432336002588272,-0.881759107112885,0.293494254350662,0.369272112846375,-0.841464996337891,0.377782493829727,0.386285752058029,-0.852789342403412,0.418839335441589,0.311967700719833,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.940997183322906,0.338384091854095,-0.00451730145141482,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.948133766651154,0.258678287267685,0.184737265110016,-0.922751426696777,0.347352683544159,0.166960775852203,-0.874836683273315,-0.269082009792328,0.402809500694275,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.685062766075134,-0.593301713466644,0.422707974910736,\r\n-0.545961499214172,-0.801949083805084,0.242494434118271,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.770847201347351,-0.632754147052765,-0.0735977366566658,-0.666441023349762,-0.745517194271088,0.0077572432346642,-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.757185697555542,-0.643689274787903,0.111057490110397,-0.770847201347351,-0.632754147052765,-0.0735977366566658,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.617546558380127,-0.778938412666321,-0.109045796096325,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.499478697776794,-0.843991279602051,-0.195447281002998,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.499478697776794,-0.843991279602051,-0.195447281002998,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.844338834285736,-0.49977120757103,0.193185269832611,-0.833818197250366,0.115977317094803,0.539718747138977,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.88322639465332,0.0795839130878448,0.462144374847412,-0.922751426696777,0.347352683544159,0.166960775852203,-0.948133766651154,0.258678287267685,0.184737265110016,-0.896605789661407,0.355314016342163,0.26429083943367,-0.896605789661407,0.355314016342163,0.26429083943367,-0.881759107112885,0.293494254350662,0.369272112846375,-0.852789342403412,0.418839335441589,0.311967700719833,\r\n-0.840224981307983,0.327272742986679,0.432336002588272,-0.841464996337891,0.377782493829727,0.386285752058029,-0.79726904630661,0.313998281955719,0.515525937080383,-0.833818197250366,0.115977317094803,0.539718747138977,-0.840224981307983,0.327272742986679,0.432336002588272,-0.777702629566193,0.307011604309082,0.548563838005066,-0.881759107112885,0.293494254350662,0.369272112846375,-0.834325850009918,0.277977496385574,0.476055443286896,-0.841464996337891,0.377782493829727,0.386285752058029,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.975016593933105,0.159267649054527,0.154842913150787,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.948133766651154,0.258678287267685,0.184737265110016,-0.959052085876465,0.275978326797485,0.0636781305074692,-0.975016593933105,0.159267649054527,0.154842913150787,-0.709794163703918,-0.60507208108902,0.360665887594223,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.560498535633087,-0.804159879684448,0.197909355163574,-0.545961499214172,-0.801949083805084,0.242494434118271,-0.560498535633087,-0.804159879684448,0.197909355163574,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.540468513965607,-0.841207683086395,0.016225840896368,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.770847201347351,-0.632754147052765,-0.0735977366566658,\r\n-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.770847201347351,-0.632754147052765,-0.0735977366566658,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.547231316566467,-0.822490394115448,-0.155072331428528,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.70594722032547,-0.681429266929626,-0.193113103508949,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.499478697776794,-0.843991279602051,-0.195447281002998,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.833818197250366,0.115977317094803,0.539718747138977,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.948133766651154,0.258678287267685,0.184737265110016,-0.923419177532196,0.267668962478638,0.275045812129974,-0.896605789661407,0.355314016342163,0.26429083943367,-0.881759107112885,0.293494254350662,0.369272112846375,-0.896605789661407,0.355314016342163,0.26429083943367,-0.923419177532196,0.267668962478638,0.275045812129974,-0.79726904630661,0.313998281955719,0.515525937080383,-0.841464996337891,0.377782493829727,0.386285752058029,-0.834325850009918,0.277977496385574,0.476055443286896,-0.79726904630661,0.313998281955719,0.515525937080383,-0.777702629566193,0.307011604309082,0.548563838005066,-0.840224981307983,0.327272742986679,0.432336002588272,-0.833818197250366,0.115977317094803,0.539718747138977,-0.777702629566193,0.307011604309082,0.548563838005066,\r\n-0.789740383625031,0.105304673314095,0.604335069656372,-0.881759107112885,0.293494254350662,0.369272112846375,-0.853832304477692,0.211642503738403,0.475581437349319,-0.834325850009918,0.277977496385574,0.476055443286896,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.962894380092621,0.262982875108719,-0.0606162026524544,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.975016593933105,0.159267649054527,0.154842913150787,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.969552755355835,0.23749415576458,-0.0596988946199417,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.975016593933105,0.159267649054527,0.154842913150787,-0.96047031879425,0.153700947761536,0.232104733586311,-0.948133766651154,0.258678287267685,0.184737265110016,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.811360120773315,-0.266502887010574,0.520260334014893,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.560498535633087,-0.804159879684448,0.197909355163574,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.560498535633087,-0.804159879684448,0.197909355163574,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.70594722032547,-0.681429266929626,-0.193113103508949,\r\n-0.862349629402161,-0.504867851734161,-0.0382305383682251,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.622253596782684,-0.742165148258209,-0.248980402946472,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.926027774810791,-0.375538945198059,0.037987481802702,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.833818197250366,0.115977317094803,0.539718747138977,-0.789740383625031,0.105304673314095,0.604335069656372,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.948133766651154,0.258678287267685,0.184737265110016,-0.96047031879425,0.153700947761536,0.232104733586311,-0.923419177532196,0.267668962478638,0.275045812129974,-0.881759107112885,0.293494254350662,0.369272112846375,-0.923419177532196,0.267668962478638,0.275045812129974,-0.927371561527252,0.196153610944748,0.318599551916122,-0.813236594200134,0.219590738415718,0.538911879062653,-0.79726904630661,0.313998281955719,0.515525937080383,-0.834325850009918,0.277977496385574,0.476055443286896,-0.79726904630661,0.313998281955719,0.515525937080383,-0.741351664066315,0.296001344919205,0.602312803268433,-0.777702629566193,0.307011604309082,0.548563838005066,-0.718769073486328,0.268358290195465,0.6413694024086,-0.789740383625031,0.105304673314095,0.604335069656372,-0.777702629566193,0.307011604309082,0.548563838005066,-0.881759107112885,0.293494254350662,0.369272112846375,\r\n-0.895663797855377,0.169362112879753,0.411221086978912,-0.853832304477692,0.211642503738403,0.475581437349319,-0.853832304477692,0.211642503738403,0.475581437349319,-0.813236594200134,0.219590738415718,0.538911879062653,-0.834325850009918,0.277977496385574,0.476055443286896,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.973857522010803,0.216808184981346,-0.0677893608808517,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.98507559299469,0.17055906355381,0.0231380853801966,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.975016593933105,0.159267649054527,0.154842913150787,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.975016593933105,0.159267649054527,0.154842913150787,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.96047031879425,0.153700947761536,0.232104733586311,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.685062766075134,-0.593301713466644,0.422707974910736,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.442557156085968,-0.879206001758575,-0.176465094089508,-0.477749019861221,-0.878447413444519,0.00926608964800835,-0.52852338552475,-0.848739206790924,0.0174528956413269,\r\n-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.522124707698822,-0.815898239612579,-0.248386114835739,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.817781627178192,-0.284997910261154,0.500009179115295,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.789740383625031,0.105304673314095,0.604335069656372,-0.923419177532196,0.267668962478638,0.275045812129974,-0.96047031879425,0.153700947761536,0.232104733586311,-0.927371561527252,0.196153610944748,0.318599551916122,-0.881759107112885,0.293494254350662,0.369272112846375,-0.927371561527252,0.196153610944748,0.318599551916122,-0.895663797855377,0.169362112879753,0.411221086978912,-0.785261571407318,0.214567378163338,0.580796837806702,-0.79726904630661,0.313998281955719,0.515525937080383,-0.813236594200134,0.219590738415718,0.538911879062653,-0.785261571407318,0.214567378163338,0.580796837806702,-0.741351664066315,0.296001344919205,0.602312803268433,-0.79726904630661,0.313998281955719,0.515525937080383,\r\n-0.718769073486328,0.268358290195465,0.6413694024086,-0.777702629566193,0.307011604309082,0.548563838005066,-0.741351664066315,0.296001344919205,0.602312803268433,-0.757410824298859,0.161274611949921,0.632707834243774,-0.789740383625031,0.105304673314095,0.604335069656372,-0.718769073486328,0.268358290195465,0.6413694024086,-0.895663797855377,0.169362112879753,0.411221086978912,-0.836454510688782,0.158474132418633,0.524623334407806,-0.853832304477692,0.211642503738403,0.475581437349319,-0.813236594200134,0.219590738415718,0.538911879062653,-0.853832304477692,0.211642503738403,0.475581437349319,-0.836454510688782,0.158474132418633,0.524623334407806,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.977048516273499,0.180224150419235,-0.113557353615761,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.975951254367828,0.19923423230648,-0.0884575173258781,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.99040675163269,0.0439176075160503,0.131017699837685,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.998535871505737,0.0393497087061405,0.0371158309280872,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.977508127689362,0.097618356347084,0.186944961547852,-0.96047031879425,0.153700947761536,0.232104733586311,-0.817781627178192,-0.284997910261154,0.500009179115295,\r\n-0.708381772041321,-0.658330261707306,0.254551142454147,-0.81481409072876,-0.244563221931458,0.5256108045578,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.823346138000488,-0.526907384395599,-0.210878357291222,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.909549593925476,-0.38334533572197,-0.160517290234566,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.653252065181732,-0.730915188789368,-0.197546049952507,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.754384100437164,-0.626113712787628,-0.197195425629616,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.964657366275787,-0.253858596086502,-0.0706533342599869,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.817781627178192,-0.284997910261154,0.500009179115295,\r\n-0.789740383625031,0.105304673314095,0.604335069656372,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.927371561527252,0.196153610944748,0.318599551916122,-0.96047031879425,0.153700947761536,0.232104733586311,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.895663797855377,0.169362112879753,0.411221086978912,-0.927371561527252,0.196153610944748,0.318599551916122,-0.813236594200134,0.219590738415718,0.538911879062653,-0.836454510688782,0.158474132418633,0.524623334407806,-0.785261571407318,0.214567378163338,0.580796837806702,-0.785261571407318,0.214567378163338,0.580796837806702,-0.738290250301361,0.219255849719048,0.637851297855377,-0.741351664066315,0.296001344919205,0.602312803268433,-0.741351664066315,0.296001344919205,0.602312803268433,-0.696187019348145,0.271159946918488,0.664677262306213,-0.718769073486328,0.268358290195465,0.6413694024086,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.789740383625031,0.105304673314095,0.604335069656372,-0.757410824298859,0.161274611949921,0.632707834243774,-0.757410824298859,0.161274611949921,0.632707834243774,-0.718769073486328,0.268358290195465,0.6413694024086,-0.696441292762756,0.233764976263046,0.678471326828003,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.836454510688782,0.158474132418633,0.524623334407806,-0.895663797855377,0.169362112879753,0.411221086978912,-0.977048516273499,0.180224150419235,-0.113557353615761,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.977048516273499,0.180224150419235,-0.113557353615761,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.979184091091156,0.183780834078789,-0.0861566662788391,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.975511789321899,0.110154382884502,-0.19037489593029,-0.988027811050415,-0.0203132946044207,-0.152932360768318,\r\n-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.990868985652924,0.112827844917774,-0.0738138630986214,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.999344170093536,-0.0337034054100513,0.0132349347695708,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.977508127689362,0.097618356347084,0.186944961547852,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.96047031879425,0.153700947761536,0.232104733586311,-0.977508127689362,0.097618356347084,0.186944961547852,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.708381772041321,-0.658330261707306,0.254551142454147,-0.817781627178192,-0.284997910261154,0.500009179115295,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.428512156009674,-0.881238877773285,-0.199487686157227,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.382421642541885,-0.911413550376892,-0.15191775560379,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.97272402048111,-0.175906389951706,-0.151211246848106,\r\n-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.577032148838043,-0.803214251995087,-0.147921323776245,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.817781627178192,-0.284997910261154,0.500009179115295,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.906078219413757,0.100095003843308,0.411099880933762,-0.895663797855377,0.169362112879753,0.411221086978912,-0.785261571407318,0.214567378163338,0.580796837806702,-0.836454510688782,0.158474132418633,0.524623334407806,-0.803370416164398,0.12723471224308,0.581727743148804,-0.738290250301361,0.219255849719048,0.637851297855377,-0.785261571407318,0.214567378163338,0.580796837806702,-0.803370416164398,0.12723471224308,0.581727743148804,-0.738290250301361,0.219255849719048,0.637851297855377,-0.696187019348145,0.271159946918488,0.664677262306213,-0.741351664066315,0.296001344919205,0.602312803268433,-0.718769073486328,0.268358290195465,0.6413694024086,-0.696187019348145,0.271159946918488,0.664677262306213,-0.696441292762756,0.233764976263046,0.678471326828003,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.757410824298859,0.161274611949921,0.632707834243774,\r\n-0.757410824298859,0.161274611949921,0.632707834243774,-0.696441292762756,0.233764976263046,0.678471326828003,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.803370416164398,0.12723471224308,0.581727743148804,-0.836454510688782,0.158474132418633,0.524623334407806,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.895663797855377,0.169362112879753,0.411221086978912,-0.906078219413757,0.100095003843308,0.411099880933762,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.977048516273499,0.180224150419235,-0.113557353615761,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.984711945056915,0.0286628324538469,0.171816185116768,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.991451501846313,-0.0608009919524193,0.115442894399166,-0.975511789321899,0.110154382884502,-0.19037489593029,-0.980329811573029,0.144548386335373,-0.134384348988533,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.975511789321899,0.110154382884502,-0.19037489593029,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.996471583843231,-0.0520442612469196,-0.065846249461174,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.977508127689362,0.097618356347084,0.186944961547852,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.977508127689362,0.097618356347084,0.186944961547852,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.597461640834808,-0.791750133037567,0.127165749669075,\r\n-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.52852338552475,-0.848739206790924,0.0174528956413269,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.864021301269531,-0.476043999195099,-0.163857519626617,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.910527765750885,-0.350183397531509,-0.219796925783157,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.95451021194458,-0.228277161717415,-0.191832318902016,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.705085396766663,-0.703118443489075,-0.0920807421207428,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.607315540313721,-0.792984426021576,-0.0484083294868469,\r\n-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.987173616886139,-0.125706791877747,-0.0984170511364937,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.767416656017303,-0.564530193805695,0.303936094045639,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.906078219413757,0.100095003843308,0.411099880933762,-0.763344585895538,0.128106087446213,0.633161664009094,-0.738290250301361,0.219255849719048,0.637851297855377,-0.803370416164398,0.12723471224308,0.581727743148804,-0.738290250301361,0.219255849719048,0.637851297855377,-0.69633013010025,0.208589717745781,0.686741948127747,-0.696187019348145,0.271159946918488,0.664677262306213,-0.696441292762756,0.233764976263046,0.678471326828003,-0.696187019348145,0.271159946918488,0.664677262306213,-0.69633013010025,0.208589717745781,0.686741948127747,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.830917000770569,-0.12318617105484,0.542588233947754,-0.757410824298859,0.161274611949921,0.632707834243774,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.722338020801544,0.113330706954002,0.682190418243408,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.696441292762756,0.233764976263046,0.678471326828003,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.803370416164398,0.12723471224308,0.581727743148804,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.906078219413757,0.100095003843308,0.411099880933762,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.997187077999115,0.019730543717742,0.0723086893558502,\r\n-0.995112895965576,0.084517240524292,0.0510594174265862,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.975511789321899,0.110154382884502,-0.19037489593029,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.998096764087677,-0.0565630495548248,0.0245636124163866,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.991956532001495,0.0826260298490524,0.0958909243345261,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.339074969291687,-0.928006947040558,-0.154373481869698,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.468124747276306,-0.877007782459259,-0.108242549002171,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.351332247257233,-0.928938329219818,-0.11678659170866,-0.328401952981949,-0.941168248653412,-0.0797141045331955,\r\n-0.432973355054855,-0.899953186511993,-0.0511660128831863,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.817202687263489,-0.575498580932617,-0.0313207395374775,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.893084466457367,-0.449026346206665,-0.0278455950319767,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.71125054359436,-0.702919602394104,0.00515411421656609,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.607315540313721,-0.792984426021576,-0.0484083294868469,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.916596353054047,-0.0207065623253584,0.399277180433273,\r\n-0.738290250301361,0.219255849719048,0.637851297855377,-0.763344585895538,0.128106087446213,0.633161664009094,-0.69633013010025,0.208589717745781,0.686741948127747,-0.763344585895538,0.128106087446213,0.633161664009094,-0.803370416164398,0.12723471224308,0.581727743148804,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.696441292762756,0.233764976263046,0.678471326828003,-0.69633013010025,0.208589717745781,0.686741948127747,-0.648269355297089,0.210383951663971,0.731768608093262,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.813128232955933,-0.0503583289682865,0.579901993274689,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.722338020801544,0.113330706954002,0.682190418243408,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.696441292762756,0.233764976263046,0.678471326828003,-0.670250177383423,0.210615932941437,0.711621701717377,-0.722338020801544,0.113330706954002,0.682190418243408,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.860747992992401,0.0975154489278793,0.49960333108902,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.993804275989532,0.107062853872776,0.0298423767089844,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.997187077999115,0.019730543717742,0.0723086893558502,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.993804275989532,0.107062853872776,0.0298423767089844,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.988027811050415,-0.0203132946044207,-0.152932360768318,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.990652084350586,-0.089354895055294,-0.103073336184025,\r\n-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.990652084350586,-0.089354895055294,-0.103073336184025,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.916596353054047,-0.0207065623253584,0.399277180433273,-0.943177402019501,0.0872023925185204,0.320643275976181,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.597461640834808,-0.791750133037567,0.127165749669075,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.788274347782135,-0.463149398565292,0.405112385749817,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.93381804227829,-0.329889744520187,0.138406842947006,-0.95104056596756,-0.30823341012001,0.0226709600538015,\r\n-0.868086636066437,-0.470832884311676,0.15729546546936,-0.941727101802826,-0.321950763463974,-0.0974546372890472,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.97272402048111,-0.175906389951706,-0.151211246848106,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.984046041965485,-0.0758880376815796,-0.16091725230217,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.494779646396637,-0.868907928466797,-0.0138549581170082,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.998211026191711,0.0101094404235482,-0.0589273199439049,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.916596353054047,-0.0207065623253584,0.399277180433273,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.69633013010025,0.208589717745781,0.686741948127747,-0.763344585895538,0.128106087446213,0.633161664009094,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.763344585895538,0.128106087446213,0.633161664009094,-0.648269355297089,0.210383951663971,0.731768608093262,-0.69633013010025,0.208589717745781,0.686741948127747,-0.643142223358154,0.150258779525757,0.750859677791595,-0.670250177383423,0.210615932941437,0.711621701717377,-0.696441292762756,0.233764976263046,0.678471326828003,-0.648269355297089,0.210383951663971,0.731768608093262,\r\n-0.819859087467194,-0.293190062046051,0.491803467273712,-0.774583876132965,0.0797665566205978,0.627420842647552,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.722338020801544,0.113330706954002,0.682190418243408,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.670250177383423,0.210615932941437,0.711621701717377,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.722338020801544,0.113330706954002,0.682190418243408,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.993804275989532,0.107062853872776,0.0298423767089844,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.993804275989532,0.107062853872776,0.0298423767089844,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.990921258926392,-0.0556617267429829,-0.122379176318645,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.982793569564819,0.0506217889487743,0.177634984254837,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.916596353054047,-0.0207065623253584,0.399277180433273,\r\n-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.683740556240082,-0.693256258964539,0.227803573012352,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.266616523265839,-0.959038317203522,-0.0957130119204521,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.370564758777618,-0.926112294197083,-0.0706940069794655,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.328401952981949,-0.941168248653412,-0.0797141045331955,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.760629296302795,-0.644086539745331,0.0812121033668518,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.93381804227829,-0.329889744520187,0.138406842947006,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.93381804227829,-0.329889744520187,0.138406842947006,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.987916946411133,-0.147896096110344,-0.0463334247469902,\r\n-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.992582976818085,0.0537131540477276,-0.109058655798435,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.596688687801361,-0.799742341041565,0.066141277551651,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.698357999324799,0.13744792342186,0.702427268028259,-0.69633013010025,0.208589717745781,0.686741948127747,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.763344585895538,0.128106087446213,0.633161664009094,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.786325752735138,-0.0480460748076439,0.615940868854523,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.69633013010025,0.208589717745781,0.686741948127747,-0.698357999324799,0.13744792342186,0.702427268028259,-0.643142223358154,0.150258779525757,0.750859677791595,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.648269355297089,0.210383951663971,0.731768608093262,-0.643142223358154,0.150258779525757,0.750859677791595,\r\n-0.648269355297089,0.210383951663971,0.731768608093262,-0.614160358905792,0.230744227766991,0.754694640636444,-0.670250177383423,0.210615932941437,0.711621701717377,-0.819859087467194,-0.293190062046051,0.491803467273712,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.722338020801544,0.113330706954002,0.682190418243408,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.59280788898468,0.190979212522507,0.782371759414673,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.670250177383423,0.210615932941437,0.711621701717377,-0.786325752735138,-0.0480460748076439,0.615940868854523,-0.815522372722626,0.0459687896072865,0.576896846294403,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.878306984901428,0.0183787159621716,0.477743566036224,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.995112895965576,0.084517240524292,0.0510594174265862,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.998548805713654,0.0486693046987057,-0.0230560097843409,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.981646180152893,-0.0616967380046844,-0.180455401539803,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.98721981048584,0.0214142613112926,-0.157918885350227,-0.991737008094788,-0.0574095584452152,0.114724777638912,\r\n-0.967832446098328,-0.202984303236008,0.148652717471123,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.944766461849213,-0.0461756102740765,0.324475049972534,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.492701381444931,-0.870091676712036,0.0136280683800578,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.277679353952408,-0.960626125335693,0.00956455059349537,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.386652708053589,-0.921718597412109,-0.030569177120924,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.769105732440948,-0.607690870761871,0.197959586977959,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.96682596206665,-0.218625783920288,0.132099226117134,\r\n-0.93381804227829,-0.329889744520187,0.138406842947006,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.95104056596756,-0.30823341012001,0.0226709600538015,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.868086636066437,-0.470832884311676,0.15729546546936,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.987916946411133,-0.147896096110344,-0.0463334247469902,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.995341420173645,-0.0233628414571285,-0.0935390964150429,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.410030603408813,-0.910823702812195,0.0476967394351959,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.991198003292084,0.12568536400795,-0.0415885448455811,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.901004135608673,-0.0752089247107506,0.427241295576096,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.698357999324799,0.13744792342186,0.702427268028259,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.734722971916199,0.0812597051262856,0.673482656478882,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.786325752735138,-0.0480460748076439,0.615940868854523,\r\n-0.670052587985992,0.0352894142270088,0.741474151611328,-0.643142223358154,0.150258779525757,0.750859677791595,-0.698357999324799,0.13744792342186,0.702427268028259,-0.648269355297089,0.210383951663971,0.731768608093262,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.638443470001221,0.186822026968002,0.746650755405426,-0.643142223358154,0.150258779525757,0.750859677791595,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.614160358905792,0.230744227766991,0.754694640636444,-0.648269355297089,0.210383951663971,0.731768608093262,-0.638443470001221,0.186822026968002,0.746650755405426,-0.670250177383423,0.210615932941437,0.711621701717377,-0.614160358905792,0.230744227766991,0.754694640636444,-0.59280788898468,0.190979212522507,0.782371759414673,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.798144817352295,-0.180704697966576,0.574726462364197,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.59280788898468,0.190979212522507,0.782371759414673,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.786325752735138,-0.0480460748076439,0.615940868854523,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.824152171611786,-0.02346146479249,0.56588214635849,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.996344745159149,0.0852642431855202,0.00520692579448223,-0.996344745159149,0.0852642431855202,0.00520692579448223,\r\n-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.991737008094788,-0.0574095584452152,0.114724777638912,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.963054120540619,-0.103879280388355,0.248466834425926,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.999488711357117,-0.0159418061375618,0.0277152322232723,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.720129907131195,-0.634536921977997,0.280670017004013,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.253877282142639,-0.96718442440033,0.0100284861400723,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.763543546199799,-0.547811806201935,0.341911226511002,\r\n-0.66901969909668,-0.686459243297577,0.284931898117065,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.645231306552887,-0.746477782726288,0.162625968456268,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.814661979675293,-0.355138659477234,0.458478152751923,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.986592173576355,-0.163204491138458,0.000218002503970638,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.447025656700134,-0.882981896400452,0.143216237425804,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.830845594406128,-0.216008484363556,0.512870132923126,\r\n-0.734722971916199,0.0812597051262856,0.673482656478882,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.768809676170349,0.0252159759402275,0.638980090618134,-0.786325752735138,-0.0480460748076439,0.615940868854523,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.709019482135773,0.149786978960037,0.689097285270691,-0.638443470001221,0.186822026968002,0.746650755405426,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.638443470001221,0.186822026968002,0.746650755405426,-0.592390179634094,0.250416159629822,0.765745043754578,-0.614160358905792,0.230744227766991,0.754694640636444,-0.614160358905792,0.230744227766991,0.754694640636444,-0.592390179634094,0.250416159629822,0.765745043754578,-0.59280788898468,0.190979212522507,0.782371759414673,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.743632555007935,-0.1464584171772,0.652349889278412,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.6998330950737,-0.570917665958405,0.429286032915115,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.59280788898468,0.190979212522507,0.782371759414673,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.707336962223053,0.0449778996407986,0.705444097518921,-0.786325752735138,-0.0480460748076439,0.615940868854523,\r\n-0.805120825767517,-0.116953201591969,0.581465601921082,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.857553124427795,-0.0946232602000237,0.505617380142212,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.928783655166626,0.184098944067955,-0.321665018796921,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.970951795578003,0.0532846339046955,-0.233266472816467,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.983838677406311,0.0838269516825676,-0.158222496509552,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.99163806438446,0.0660066232085228,-0.110891982913017,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.940180063247681,-0.217322558164597,0.262358903884888,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.506147980690002,-0.854633808135986,0.115823596715927,-0.6998330950737,-0.570917665958405,0.429286032915115,\r\n-0.408448398113251,-0.867878019809723,0.282767564058304,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.34376472234726,-0.936299562454224,0.0718943327665329,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.763543546199799,-0.547811806201935,0.341911226511002,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.66901969909668,-0.686459243297577,0.284931898117065,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.96682596206665,-0.218625783920288,0.132099226117134,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.80349600315094,-0.436433672904968,0.404870092868805,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.814661979675293,-0.355138659477234,0.458478152751923,-0.895187377929688,-0.321751713752747,0.308407813310623,-0.814661979675293,-0.355138659477234,0.458478152751923,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.998430728912354,-0.017044547945261,-0.0533436350524426,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.99646008014679,0.0839931592345238,0.00351081416010857,\r\n-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.991659700870514,0.107720330357552,-0.070762112736702,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.265182822942734,-0.95633065700531,0.122921280562878,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.905236661434174,-0.177825674414635,0.385907381772995,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.670052587985992,0.0352894142270088,0.741474151611328,-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.709019482135773,0.149786978960037,0.689097285270691,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.709019482135773,0.149786978960037,0.689097285270691,-0.649602949619293,0.191111624240875,0.735861599445343,-0.638443470001221,0.186822026968002,0.746650755405426,-0.677474975585938,0.000373881717678159,0.735545635223389,\r\n-0.736524641513824,0.0907081663608551,0.670301020145416,-0.646149635314941,0.0934269279241562,0.757470786571503,-0.638443470001221,0.186822026968002,0.746650755405426,-0.649602949619293,0.191111624240875,0.735861599445343,-0.592390179634094,0.250416159629822,0.765745043754578,-0.535122692584991,0.297950178384781,0.790486693382263,-0.59280788898468,0.190979212522507,0.782371759414673,-0.592390179634094,0.250416159629822,0.765745043754578,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.712881565093994,-0.310397803783417,0.62885046005249,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.644208610057831,-0.530712246894836,0.550762712955475,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.506590962409973,0.21234293282032,0.835629045963287,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.59280788898468,0.190979212522507,0.782371759414673,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.620472013950348,0.0354281067848206,0.783427834510803,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.805120825767517,-0.116953201591969,0.581465601921082,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.998380422592163,-0.0555867925286293,-0.0121032111346722,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.970951795578003,0.0532846339046955,-0.233266472816467,\r\n-0.928783655166626,0.184098944067955,-0.321665018796921,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.975376605987549,0.119999662041664,-0.185041829943657,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.983016967773438,0.0910675376653671,-0.159324392676353,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.967832446098328,-0.202984303236008,0.148652717471123,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.986283242702484,-0.162457957863808,0.029199980199337,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.877155721187592,-0.432444155216217,0.20878167450428,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.253704577684402,-0.958419978618622,0.130633071064949,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.651238143444061,-0.631153762340546,0.421347558498383,\r\n-0.621662497520447,-0.45054167509079,0.640740036964417,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.492289841175079,-0.840448498725891,0.226488277316093,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.884215950965881,-0.120330207049847,0.451312154531479,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.814661979675293,-0.355138659477234,0.458478152751923,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.997474491596222,-0.0535811148583889,0.0466217249631882,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.972219407558441,0.201181814074516,0.119646079838276,-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.978914320468903,0.198390051722527,-0.0486628860235214,-0.972219407558441,0.201181814074516,0.119646079838276,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.983323216438293,0.178004220128059,-0.0372805669903755,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.311777979135513,-0.929612100124359,0.196508824825287,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.958029329776764,0.286237329244614,-0.0157435238361359,\r\n-0.943133056163788,0.32946440577507,0.0441916286945343,-0.973890900611877,0.226792708039284,0.0100759863853455,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.717174291610718,-0.0206298679113388,0.696588337421417,-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.75810581445694,-0.0587753504514694,0.649477362632751,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.709019482135773,0.149786978960037,0.689097285270691,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.692429900169373,0.155857086181641,0.704449594020844,-0.649602949619293,0.191111624240875,0.735861599445343,-0.709019482135773,0.149786978960037,0.689097285270691,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.592390179634094,0.250416159629822,0.765745043754578,-0.649602949619293,0.191111624240875,0.735861599445343,-0.594218671321869,0.275418907403946,0.755677461624146,-0.506590962409973,0.21234293282032,0.835629045963287,-0.59280788898468,0.190979212522507,0.782371759414673,-0.535122692584991,0.297950178384781,0.790486693382263,-0.592390179634094,0.250416159629822,0.765745043754578,-0.594218671321869,0.275418907403946,0.755677461624146,-0.535122692584991,0.297950178384781,0.790486693382263,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.712881565093994,-0.310397803783417,0.62885046005249,\r\n-0.533774435520172,-0.599851310253143,0.596039474010468,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.408448398113251,-0.867878019809723,0.282767564058304,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.506590962409973,0.21234293282032,0.835629045963287,-0.417913734912872,0.17672435939312,0.891132116317749,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.637498140335083,-0.211123317480087,0.740960896015167,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.785086154937744,-0.0942376181483269,0.612175583839417,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.989299416542053,0.0105464737862349,-0.145517721772194,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.920881509780884,-0.339583158493042,0.191469326615334,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.91700953245163,-0.398804277181625,-0.00696755526587367,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.877155721187592,-0.432444155216217,0.20878167450428,-0.920881509780884,-0.339583158493042,0.191469326615334,\r\n-0.877155721187592,-0.432444155216217,0.20878167450428,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.898384988307953,-0.322263598442078,0.298413395881653,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.10614025592804,-0.974018394947052,0.200055703520775,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.718677699565887,-0.494189828634262,0.489161163568497,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.651238143444061,-0.631153762340546,0.421347558498383,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.67288476228714,-0.307846575975418,0.672648787498474,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.52939373254776,-0.775372266769409,0.344296336174011,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.955036282539368,-0.1273153424263,0.267761796712875,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.884215950965881,-0.120330207049847,0.451312154531479,-0.912093222141266,0.0257614105939865,0.409172594547272,\r\n-0.955036282539368,-0.1273153424263,0.267761796712875,-0.884215950965881,-0.120330207049847,0.451312154531479,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.972219407558441,0.201181814074516,0.119646079838276,-0.99646008014679,0.0839931592345238,0.00351081416010857,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.935433924198151,0.336147397756577,0.109399616718292,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.935433924198151,0.336147397756577,0.109399616718292,-0.967860400676727,0.251207172870636,-0.0118780564516783,-0.972219407558441,0.201181814074516,0.119646079838276,-0.394015848636627,-0.882691621780396,0.256138354539871,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.928602576255798,0.352295219898224,0.116555690765381,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.830845594406128,-0.216008484363556,0.512870132923126,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.677474975585938,0.000373881717678159,0.735545635223389,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.766904890537262,0.0184888206422329,0.641494274139404,\r\n-0.736675977706909,-0.0426608696579933,0.6748988032341,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.784627258777618,-0.0478446371853352,0.618118703365326,-0.709019482135773,0.149786978960037,0.689097285270691,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.692429900169373,0.155857086181641,0.704449594020844,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.649602949619293,0.191111624240875,0.735861599445343,-0.692429900169373,0.155857086181641,0.704449594020844,-0.641817212104797,0.111245356500149,0.758745670318604,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.594218671321869,0.275418907403946,0.755677461624146,-0.649602949619293,0.191111624240875,0.735861599445343,-0.552300095558167,0.241704493761063,0.797836780548096,-0.535122692584991,0.297950178384781,0.790486693382263,-0.481017529964447,0.300130903720856,0.823737502098084,-0.506590962409973,0.21234293282032,0.835629045963287,-0.496110886335373,0.349229335784912,0.794929385185242,-0.535122692584991,0.297950178384781,0.790486693382263,-0.594218671321869,0.275418907403946,0.755677461624146,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.506099164485931,-0.73201459646225,0.456090033054352,-0.481017529964447,0.300130903720856,0.823737502098084,-0.417913734912872,0.17672435939312,0.891132116317749,-0.506590962409973,0.21234293282032,0.835629045963287,\r\n-0.417913734912872,0.17672435939312,0.891132116317749,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.509539902210236,0.0865226984024048,0.856085777282715,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.492939531803131,-0.143014743924141,0.858229160308838,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.994035243988037,-0.0977968871593475,-0.0482660718262196,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.884101986885071,-0.466975629329681,0.0172439813613892,-0.91700953245163,-0.398804277181625,-0.00696755526587367,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.91700953245163,-0.398804277181625,-0.00696755526587367,-0.968948245048523,-0.247171193361282,0.00674665858969092,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.877155721187592,-0.432444155216217,0.20878167450428,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.877155721187592,-0.432444155216217,0.20878167450428,\r\n-0.897467851638794,-0.412993907928467,0.154878452420235,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.855848908424377,-0.320610255002975,0.405871391296387,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.237545058131218,-0.945163726806641,0.224137887358665,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.214732989668846,-0.961456656455994,0.171728521585464,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.10614025592804,-0.974018394947052,0.200055703520775,-0.213044866919518,-0.956108033657074,0.201169833540916,-0.10614025592804,-0.974018394947052,0.200055703520775,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.253711938858032,-0.928763866424561,0.27023658156395,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.562232792377472,-0.55803370475769,0.610321640968323,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.67288476228714,-0.307846575975418,0.672648787498474,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.754516661167145,-0.364125370979309,0.546001076698303,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.559540629386902,-0.30947470664978,0.76885598897934,\r\n-0.67288476228714,-0.307846575975418,0.672648787498474,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.931698560714722,0.195349991321564,0.306228697299957,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.84396904706955,-0.244811117649078,0.477266848087311,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.884215950965881,-0.120330207049847,0.451312154531479,-0.982108354568481,0.0575344786047935,0.179312124848366,-0.931698560714722,0.195349991321564,0.306228697299957,-0.972219407558441,0.201181814074516,0.119646079838276,-0.935433924198151,0.336147397756577,0.109399616718292,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.958029329776764,0.286237329244614,-0.0157435238361359,-0.904667496681213,0.315384298563004,0.286547273397446,-0.935433924198151,0.336147397756577,0.109399616718292,-0.972219407558441,0.201181814074516,0.119646079838276,-0.420710027217865,-0.837879955768585,0.347793191671371,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.928602576255798,0.352295219898224,0.116555690765381,-0.943133056163788,0.32946440577507,0.0441916286945343,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.938436806201935,0.343973100185394,0.0319183133542538,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.901951670646667,-0.183267995715141,0.39101904630661,\r\n-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.641817212104797,0.111245356500149,0.758745670318604,-0.692429900169373,0.155857086181641,0.704449594020844,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.736524641513824,0.0907081663608551,0.670301020145416,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.641817212104797,0.111245356500149,0.758745670318604,-0.564114451408386,0.138426467776299,0.814010322093964,-0.649602949619293,0.191111624240875,0.735861599445343,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.766904890537262,0.0184888206422329,0.641494274139404,-0.649602949619293,0.191111624240875,0.735861599445343,-0.564114451408386,0.138426467776299,0.814010322093964,-0.552300095558167,0.241704493761063,0.797836780548096,-0.496110886335373,0.349229335784912,0.794929385185242,-0.594218671321869,0.275418907403946,0.755677461624146,-0.552300095558167,0.241704493761063,0.797836780548096,-0.496110886335373,0.349229335784912,0.794929385185242,-0.481017529964447,0.300130903720856,0.823737502098084,-0.535122692584991,0.297950178384781,0.790486693382263,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.161895647644997,-0.741974830627441,0.650586724281311,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.533774435520172,-0.599851310253143,0.596039474010468,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.481017529964447,0.300130903720856,0.823737502098084,-0.407306104898453,0.326726704835892,0.852848887443542,-0.417913734912872,0.17672435939312,0.891132116317749,-0.417913734912872,0.17672435939312,0.891132116317749,\r\n-0.255362570285797,0.147216036915779,0.955571711063385,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.161895647644997,-0.741974830627441,0.650586724281311,-0.405372053384781,-0.512635171413422,0.756887376308441,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.829346776008606,-0.134889930486679,0.542207002639771,-0.836646854877472,-0.201972380280495,0.509145438671112,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.981603741645813,-0.161551132798195,-0.101759493350983,-0.97564959526062,0.00685996934771538,-0.219227507710457,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.884101986885071,-0.466975629329681,0.0172439813613892,-0.932827770709991,-0.358040899038315,0.040483970195055,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.884101986885071,-0.466975629329681,0.0172439813613892,-0.91700953245163,-0.398804277181625,-0.00696755526587367,-0.900074124336243,-0.429503887891769,0.0734344497323036,\r\n-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.881215214729309,-0.457031279802322,0.120755143463612,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.86280232667923,-0.42682883143425,0.270904302597046,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.223504051566124,-0.931307435035706,0.287597596645355,-0.11535918712616,-0.964765965938568,0.236471563577652,0.0280215330421925,-0.971082389354706,0.237094193696976,-0.10614025592804,-0.974018394947052,0.200055703520775,0.0280215330421925,-0.971082389354706,0.237094193696976,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.10614025592804,-0.974018394947052,0.200055703520775,-0.314614027738571,-0.874551177024841,0.369023203849792,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.562232792377472,-0.55803370475769,0.610321640968323,-0.615224301815033,-0.585253119468689,0.528183341026306,-0.562232792377472,-0.55803370475769,0.610321640968323,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.496228337287903,-0.726787090301514,0.474908262491226,\r\n-0.31830295920372,-0.846238672733307,0.427274167537689,-0.33849972486496,-0.784184694290161,0.520069360733032,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.67288476228714,-0.307846575975418,0.672648787498474,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.67288476228714,-0.307846575975418,0.672648787498474,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.864504337310791,0.16521942615509,0.474694401025772,-0.931698560714722,0.195349991321564,0.306228697299957,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.904667496681213,0.315384298563004,0.286547273397446,-0.972219407558441,0.201181814074516,0.119646079838276,-0.931698560714722,0.195349991321564,0.306228697299957,-0.935433924198151,0.336147397756577,0.109399616718292,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.898111879825592,0.357958078384399,0.255462139844894,-0.935433924198151,0.336147397756577,0.109399616718292,-0.904667496681213,0.315384298563004,0.286547273397446,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.286868512630463,-0.907491028308868,0.30686554312706,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.943133056163788,0.32946440577507,0.0441916286945343,\r\n-0.938436806201935,0.343973100185394,0.0319183133542538,-0.938436806201935,0.343973100185394,0.0319183133542538,-0.934933841228485,0.353427588939667,0.0314261689782143,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.838005840778351,-0.36155092716217,0.408689111471176,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.845392286777496,-0.285469472408295,0.451463103294373,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.81215626001358,-0.0342019572854042,0.582436501979828,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.61540699005127,0.011033559218049,0.788132190704346,-0.641817212104797,0.111245356500149,0.758745670318604,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.708793759346008,0.0962651669979095,0.698816359043121,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.61540699005127,0.011033559218049,0.788132190704346,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.747022211551666,0.0434442907571793,0.663378000259399,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.564114451408386,0.138426467776299,0.814010322093964,-0.641817212104797,0.111245356500149,0.758745670318604,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.762575089931488,0.0490225218236446,0.645039439201355,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.552300095558167,0.241704493761063,0.797836780548096,-0.564114451408386,0.138426467776299,0.814010322093964,-0.424647182226181,0.208214685320854,0.881090939044952,-0.552300095558167,0.241704493761063,0.797836780548096,-0.437147319316864,0.307760179042816,0.845095098018646,-0.496110886335373,0.349229335784912,0.794929385185242,\r\n-0.496110886335373,0.349229335784912,0.794929385185242,-0.407306104898453,0.326726704835892,0.852848887443542,-0.481017529964447,0.300130903720856,0.823737502098084,-0.230309322476387,-0.834010779857636,0.501381576061249,-0.161895647644997,-0.741974830627441,0.650586724281311,0.0133547401055694,-0.934127688407898,0.356688976287842,-0.255362570285797,0.147216036915779,0.955571711063385,-0.417913734912872,0.17672435939312,0.891132116317749,-0.407306104898453,0.326726704835892,0.852848887443542,-0.255362570285797,0.147216036915779,0.955571711063385,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.344552218914032,-0.022103188559413,0.938506901264191,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.000222532078623772,-0.181408226490021,0.98340779542923,0.0249655302613974,-0.705653250217438,0.708117246627808,0.0249655302613974,-0.705653250217438,0.708117246627808,-0.161895647644997,-0.741974830627441,0.650586724281311,-0.251503795385361,-0.402564972639084,0.880163192749023,-0.809113085269928,-0.166176706552505,0.563667595386505,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.881718695163727,-0.136763527989388,0.451517134904861,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.957349896430969,-0.286737233400345,0.0355358757078648,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.97564959526062,0.00685996934771538,-0.219227507710457,\r\n-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.884101986885071,-0.466975629329681,0.0172439813613892,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.900074124336243,-0.429503887891769,0.0734344497323036,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.847784221172333,-0.458609938621521,0.266343206167221,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.830054461956024,-0.425752431154251,0.36020040512085,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.0831226706504822,-0.947884202003479,0.307580977678299,-0.0248570181429386,-0.882409632205963,0.4698246717453,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.245125323534012,-0.8840691447258,0.397913604974747,0.0133547401055694,-0.934127688407898,0.356688976287842,0.0280215330421925,-0.971082389354706,0.237094193696976,-0.11535918712616,-0.964765965938568,0.236471563577652,0.0794781520962715,-0.935034155845642,0.345534652471542,-0.0831226706504822,-0.947884202003479,0.307580977678299,0.0280215330421925,-0.971082389354706,0.237094193696976,-0.230309322476387,-0.834010779857636,0.501381576061249,0.0133547401055694,-0.934127688407898,0.356688976287842,-0.11535918712616,-0.964765965938568,0.236471563577652,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.461818367242813,-0.569500207901001,0.679994940757751,\r\n-0.562232792377472,-0.55803370475769,0.610321640968323,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.621662497520447,-0.45054167509079,0.640740036964417,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.508878111839294,-0.642900228500366,0.572470366954803,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.496228337287903,-0.726787090301514,0.474908262491226,-0.33849972486496,-0.784184694290161,0.520069360733032,-0.33849972486496,-0.784184694290161,0.520069360733032,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.74137020111084,-0.211065664887428,0.637041091918945,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.912093222141266,0.0257614105939865,0.409172594547272,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.864504337310791,0.16521942615509,0.474694401025772,-0.864504337310791,0.16521942615509,0.474694401025772,-0.856477737426758,0.293374717235565,0.424708157777786,-0.931698560714722,0.195349991321564,0.306228697299957,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.796981990337372,-0.0808374062180519,0.598568975925446,-0.904667496681213,0.315384298563004,0.286547273397446,-0.931698560714722,0.195349991321564,0.306228697299957,-0.856477737426758,0.293374717235565,0.424708157777786,\r\n-0.935433924198151,0.336147397756577,0.109399616718292,-0.931539058685303,0.325978964567184,0.161160409450531,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.935433924198151,0.336147397756577,0.109399616718292,-0.898111879825592,0.357958078384399,0.255462139844894,-0.931539058685303,0.325978964567184,0.161160409450531,-0.904667496681213,0.315384298563004,0.286547273397446,-0.856556355953217,0.333289265632629,0.393991500139236,-0.898111879825592,0.357958078384399,0.255462139844894,-0.31830295920372,-0.846238672733307,0.427274167537689,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.245125323534012,-0.8840691447258,0.397913604974747,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.22806017100811,-0.868450582027435,0.44020676612854,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.938436806201935,0.343973100185394,0.0319183133542538,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.938436806201935,0.343973100185394,0.0319183133542538,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.945751249790192,-0.268298715353012,0.183221772313118,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.788596153259277,-0.0109866885468364,0.614813148975372,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.641817212104797,0.111245356500149,0.758745670318604,-0.61540699005127,0.011033559218049,0.788132190704346,-0.747290134429932,-0.055997796356678,0.662134051322937,\r\n-0.659739136695862,-0.156674206256866,0.734981179237366,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.61540699005127,0.011033559218049,0.788132190704346,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.564114451408386,0.138426467776299,0.814010322093964,-0.424647182226181,0.208214685320854,0.881090939044952,-0.564114451408386,0.138426467776299,0.814010322093964,-0.419893085956573,0.107097044587135,0.901232421398163,-0.424647182226181,0.208214685320854,0.881090939044952,-0.437147319316864,0.307760179042816,0.845095098018646,-0.552300095558167,0.241704493761063,0.797836780548096,-0.437147319316864,0.307760179042816,0.845095098018646,-0.391205668449402,0.390579551458359,0.833310008049011,-0.496110886335373,0.349229335784912,0.794929385185242,-0.496110886335373,0.349229335784912,0.794929385185242,-0.391205668449402,0.390579551458359,0.833310008049011,-0.407306104898453,0.326726704835892,0.852848887443542,-0.161895647644997,-0.741974830627441,0.650586724281311,0.0249655302613974,-0.705653250217438,0.708117246627808,0.0133547401055694,-0.934127688407898,0.356688976287842,-0.255362570285797,0.147216036915779,0.955571711063385,-0.407306104898453,0.326726704835892,0.852848887443542,-0.268640220165253,0.293113261461258,0.917560279369354,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.255362570285797,0.147216036915779,0.955571711063385,-0.100234031677246,0.17830066382885,0.978857457637787,0.0249655302613974,-0.705653250217438,0.708117246627808,-0.000222532078623772,-0.181408226490021,0.98340779542923,0.258479475975037,-0.644706308841705,0.719403982162476,-0.809113085269928,-0.166176706552505,0.563667595386505,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.821337878704071,-0.223755598068237,0.52472597360611,\r\n-0.809113085269928,-0.166176706552505,0.563667595386505,-0.845319807529449,-0.104571245610714,0.523926675319672,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.901951670646667,-0.183267995715141,0.39101904630661,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.855482399463654,-0.516571879386902,-0.0361000224947929,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.980799674987793,-0.142287746071815,-0.133364528417587,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.876194536685944,-0.481192648410797,-0.0271411500871181,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.967908799648285,-0.250819057226181,-0.0155643885955215,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.95309042930603,-0.244332432746887,0.178662210702896,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.897467851638794,-0.412993907928467,0.154878452420235,-0.95309042930603,-0.244332432746887,0.178662210702896,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.860646784305573,-0.400201410055161,0.31484255194664,-0.845972001552582,-0.416474580764771,0.332986891269684,\r\n-0.0248570181429386,-0.882409632205963,0.4698246717453,-0.0831226706504822,-0.947884202003479,0.307580977678299,0.0794781520962715,-0.935034155845642,0.345534652471542,-0.0248570181429386,-0.882409632205963,0.4698246717453,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.187359720468521,-0.867031514644623,0.46168452501297,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.187359720468521,-0.867031514644623,0.46168452501297,0.0133547401055694,-0.934127688407898,0.356688976287842,0.132750734686852,-0.955186009407043,0.264569163322449,0.0280215330421925,-0.971082389354706,0.237094193696976,0.0280215330421925,-0.971082389354706,0.237094193696976,0.132750734686852,-0.955186009407043,0.264569163322449,0.0794781520962715,-0.935034155845642,0.345534652471542,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.461818367242813,-0.569500207901001,0.679994940757751,-0.33849972486496,-0.784184694290161,0.520069360733032,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.533387899398804,-0.0554981790482998,0.844048142433167,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.559540629386902,-0.30947470664978,0.76885598897934,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.533387899398804,-0.0554981790482998,0.844048142433167,-0.638000190258026,-0.165173903107643,0.752112448215485,-0.785117924213409,0.137828260660172,0.603815495967865,\r\n-0.864504337310791,0.16521942615509,0.474694401025772,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.856477737426758,0.293374717235565,0.424708157777786,-0.864504337310791,0.16521942615509,0.474694401025772,-0.797862589359283,0.265399694442749,0.541274547576904,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.639463245868683,0.0425189211964607,0.767644941806793,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.785117924213409,0.137828260660172,0.603815495967865,-0.81617796421051,0.0340377055108547,0.576797008514404,-0.856477737426758,0.293374717235565,0.424708157777786,-0.856556355953217,0.333289265632629,0.393991500139236,-0.904667496681213,0.315384298563004,0.286547273397446,-0.931539058685303,0.325978964567184,0.161160409450531,-0.956552267074585,0.273353815078735,0.101416699588299,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.898111879825592,0.357958078384399,0.255462139844894,-0.90650737285614,0.289069801568985,0.307706028223038,-0.931539058685303,0.325978964567184,0.161160409450531,-0.90650737285614,0.289069801568985,0.307706028223038,-0.898111879825592,0.357958078384399,0.255462139844894,-0.856556355953217,0.333289265632629,0.393991500139236,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.945751249790192,-0.268298715353012,0.183221772313118,\r\n-0.860646784305573,-0.400201410055161,0.31484255194664,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.909922122955322,-0.278977364301682,0.306941896677017,-0.945751249790192,-0.268298715353012,0.183221772313118,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.61540699005127,0.011033559218049,0.788132190704346,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.747290134429932,-0.055997796356678,0.662134051322937,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.679345011711121,-0.031563077121973,0.73313981294632,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.61540699005127,0.011033559218049,0.788132190704346,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.586202621459961,0.0473357290029526,0.808780372142792,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.419893085956573,0.107097044587135,0.901232421398163,-0.564114451408386,0.138426467776299,0.814010322093964,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.419893085956573,0.107097044587135,0.901232421398163,-0.268716245889664,0.065463088452816,0.960992217063904,-0.424647182226181,0.208214685320854,0.881090939044952,-0.424647182226181,0.208214685320854,0.881090939044952,-0.349242955446243,0.316517025232315,0.881955862045288,-0.437147319316864,0.307760179042816,0.845095098018646,-0.437147319316864,0.307760179042816,0.845095098018646,-0.349242955446243,0.316517025232315,0.881955862045288,-0.391205668449402,0.390579551458359,0.833310008049011,-0.391205668449402,0.390579551458359,0.833310008049011,-0.37548840045929,0.390668332576752,0.840468049049377,-0.407306104898453,0.326726704835892,0.852848887443542,\r\n0.21228401362896,-0.904967486858368,0.368740141391754,0.0133547401055694,-0.934127688407898,0.356688976287842,0.0249655302613974,-0.705653250217438,0.708117246627808,-0.407306104898453,0.326726704835892,0.852848887443542,-0.37548840045929,0.390668332576752,0.840468049049377,-0.268640220165253,0.293113261461258,0.917560279369354,-0.255362570285797,0.147216036915779,0.955571711063385,-0.268640220165253,0.293113261461258,0.917560279369354,-0.100234031677246,0.17830066382885,0.978857457637787,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.100234031677246,0.17830066382885,0.978857457637787,-0.0575255528092384,0.0805123373866081,0.995092213153839,0.258479475975037,-0.644706308841705,0.719403982162476,-0.000222532078623772,-0.181408226490021,0.98340779542923,0.134433314204216,-0.369357347488403,0.919512212276459,0.21228401362896,-0.904967486858368,0.368740141391754,0.0249655302613974,-0.705653250217438,0.708117246627808,0.258479475975037,-0.644706308841705,0.719403982162476,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.809113085269928,-0.166176706552505,0.563667595386505,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.786965131759644,-0.107311755418777,0.607593536376953,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.89298951625824,-0.142765656113625,0.426834285259247,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.855482399463654,-0.516571879386902,-0.0361000224947929,-0.921282112598419,-0.379481106996536,-0.0850483253598213,-0.879407942295074,-0.464226096868515,0.105525769293308,-0.855482399463654,-0.516571879386902,-0.0361000224947929,-0.886423587799072,-0.462832659482956,0.00624919217079878,-0.879407942295074,-0.464226096868515,0.105525769293308,\r\n-0.886423587799072,-0.462832659482956,0.00624919217079878,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.87491774559021,-0.477767139673233,0.0791043341159821,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.967908799648285,-0.250819057226181,-0.0155643885955215,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.967908799648285,-0.250819057226181,-0.0155643885955215,-0.908652901649475,-0.417551398277283,0.000796466309111565,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.95309042930603,-0.244332432746887,0.178662210702896,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.95309042930603,-0.244332432746887,0.178662210702896,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.845972001552582,-0.416474580764771,0.332986891269684,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.0248570181429386,-0.882409632205963,0.4698246717453,0.0794781520962715,-0.935034155845642,0.345534652471542,\r\n0.0339960530400276,-0.905721426010132,0.422507911920547,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.0248570181429386,-0.882409632205963,0.4698246717453,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.240062043070793,-0.729385316371918,0.640599012374878,0.0133547401055694,-0.934127688407898,0.356688976287842,0.21228401362896,-0.904967486858368,0.368740141391754,0.132750734686852,-0.955186009407043,0.264569163322449,0.132750734686852,-0.955186009407043,0.264569163322449,0.103886775672436,-0.937629818916321,0.331749528646469,0.0794781520962715,-0.935034155845642,0.345534652471542,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.160368695855141,-0.681132018566132,0.714381456375122,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.160368695855141,-0.681132018566132,0.714381456375122,-0.355412781238556,-0.700944662094116,0.61835116147995,-0.204492017626762,-0.789357602596283,0.57887601852417,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.533387899398804,-0.0554981790482998,0.844048142433167,-0.421766430139542,-0.448150038719177,0.788209676742554,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.429255992174149,-0.304186016321182,0.85041755437851,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.533387899398804,-0.0554981790482998,0.844048142433167,\r\n-0.785117924213409,0.137828260660172,0.603815495967865,-0.797862589359283,0.265399694442749,0.541274547576904,-0.864504337310791,0.16521942615509,0.474694401025772,-0.856477737426758,0.293374717235565,0.424708157777786,-0.797862589359283,0.265399694442749,0.541274547576904,-0.817449927330017,0.312048941850662,0.484149694442749,-0.639463245868683,0.0425189211964607,0.767644941806793,-0.670338213443756,-0.0496103353798389,0.740395307540894,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.639463245868683,0.0425189211964607,0.767644941806793,-0.609024703502655,0.124334946274757,0.783345103263855,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.7224041223526,0.21569912135601,0.656967222690582,-0.785117924213409,0.137828260660172,0.603815495967865,-0.856477737426758,0.293374717235565,0.424708157777786,-0.817449927330017,0.312048941850662,0.484149694442749,-0.856556355953217,0.333289265632629,0.393991500139236,-0.931539058685303,0.325978964567184,0.161160409450531,-0.952524244785309,0.248371452093124,0.176093950867653,-0.956552267074585,0.273353815078735,0.101416699588299,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.946791529655457,0.317356437444687,0.0535776130855083,-0.956552267074585,0.273353815078735,0.101416699588299,-0.952524244785309,0.248371452093124,0.176093950867653,-0.931539058685303,0.325978964567184,0.161160409450531,-0.90650737285614,0.289069801568985,0.307706028223038,-0.851010918617249,0.286840945482254,0.439889192581177,-0.90650737285614,0.289069801568985,0.307706028223038,-0.856556355953217,0.333289265632629,0.393991500139236,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.193102195858955,-0.788150250911713,0.584406197071075,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.160368695855141,-0.681132018566132,0.714381456375122,\r\n-0.204492017626762,-0.789357602596283,0.57887601852417,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.973407804965973,0.228985190391541,-0.00655555864796042,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.945751249790192,-0.268298715353012,0.183221772313118,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.945751249790192,-0.268298715353012,0.183221772313118,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.419893085956573,0.107097044587135,0.901232421398163,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.419893085956573,0.107097044587135,0.901232421398163,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.268716245889664,0.065463088452816,0.960992217063904,-0.262401670217514,0.239789396524429,0.934690475463867,-0.424647182226181,0.208214685320854,0.881090939044952,-0.268716245889664,0.065463088452816,0.960992217063904,-0.262401670217514,0.239789396524429,0.934690475463867,-0.349242955446243,0.316517025232315,0.881955862045288,-0.424647182226181,0.208214685320854,0.881090939044952,\r\n-0.316746473312378,0.344269782304764,0.883826792240143,-0.391205668449402,0.390579551458359,0.833310008049011,-0.349242955446243,0.316517025232315,0.881955862045288,-0.37548840045929,0.390668332576752,0.840468049049377,-0.391205668449402,0.390579551458359,0.833310008049011,-0.371394574642181,0.404316991567612,0.835819244384766,-0.268640220165253,0.293113261461258,0.917560279369354,-0.37548840045929,0.390668332576752,0.840468049049377,-0.258713394403458,0.307821571826935,0.915594398975372,-0.268640220165253,0.293113261461258,0.917560279369354,-0.258713394403458,0.307821571826935,0.915594398975372,-0.100234031677246,0.17830066382885,0.978857457637787,-0.0575255528092384,0.0805123373866081,0.995092213153839,-0.100234031677246,0.17830066382885,0.978857457637787,-0.258713394403458,0.307821571826935,0.915594398975372,-0.000222532078623772,-0.181408226490021,0.98340779542923,-0.0575255528092384,0.0805123373866081,0.995092213153839,0.134433314204216,-0.369357347488403,0.919512212276459,0.187145814299583,-0.747763097286224,0.637045323848724,0.258479475975037,-0.644706308841705,0.719403982162476,0.134433314204216,-0.369357347488403,0.919512212276459,0.187145814299583,-0.747763097286224,0.637045323848724,0.21228401362896,-0.904967486858368,0.368740141391754,0.258479475975037,-0.644706308841705,0.719403982162476,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.886423587799072,-0.462832659482956,0.00624919217079878,\r\n-0.855482399463654,-0.516571879386902,-0.0361000224947929,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.886423587799072,-0.462832659482956,0.00624919217079878,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.877952337265015,-0.471072256565094,0.0853830352425575,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.877952337265015,-0.471072256565094,0.0853830352425575,-0.922467708587646,-0.385115921497345,-0.0271854046732187,-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.955056726932526,-0.292380452156067,0.0487876683473587,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.902978479862213,-0.32312074303627,0.283236116170883,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.869588136672974,-0.320752561092377,0.375411957502365,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.919317424297333,-0.353955268859863,0.171962484717369,0.0794781520962715,-0.935034155845642,0.345534652471542,0.103886775672436,-0.937629818916321,0.331749528646469,\r\n0.0339960530400276,-0.905721426010132,0.422507911920547,-0.0248570181429386,-0.882409632205963,0.4698246717453,0.0339960530400276,-0.905721426010132,0.422507911920547,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.159057646989822,-0.77085816860199,0.61682915687561,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.240062043070793,-0.729385316371918,0.640599012374878,-0.311220496892929,-0.650453209877014,0.692858040332794,0.132750734686852,-0.955186009407043,0.264569163322449,0.21228401362896,-0.904967486858368,0.368740141391754,0.235866621136665,-0.937104284763336,0.257298201322556,0.132750734686852,-0.955186009407043,0.264569163322449,0.235866621136665,-0.937104284763336,0.257298201322556,0.103886775672436,-0.937629818916321,0.331749528646469,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.160368695855141,-0.681132018566132,0.714381456375122,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.265833467245102,-0.58505117893219,0.76619029045105,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.533387899398804,-0.0554981790482998,0.844048142433167,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.159406751394272,-0.372307956218719,0.914317309856415,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.170054286718369,-0.184920772910118,0.96792858839035,-0.485773950815201,-0.175980359315872,0.856185972690582,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.332847476005554,-0.00625935615971684,0.942959845066071,\r\n-0.785117924213409,0.137828260660172,0.603815495967865,-0.7224041223526,0.21569912135601,0.656967222690582,-0.797862589359283,0.265399694442749,0.541274547576904,-0.797862589359283,0.265399694442749,0.541274547576904,-0.77959531545639,0.274822622537613,0.562764167785645,-0.817449927330017,0.312048941850662,0.484149694442749,-0.639463245868683,0.0425189211964607,0.767644941806793,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.609024703502655,0.124334946274757,0.783345103263855,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.609024703502655,0.124334946274757,0.783345103263855,-0.660376369953156,0.181795820593834,0.728596687316895,-0.71229475736618,0.0687990859150887,0.698500335216522,-0.660376369953156,0.181795820593834,0.728596687316895,-0.7224041223526,0.21569912135601,0.656967222690582,-0.856556355953217,0.333289265632629,0.393991500139236,-0.817449927330017,0.312048941850662,0.484149694442749,-0.851010918617249,0.286840945482254,0.439889192581177,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.956552267074585,0.273353815078735,0.101416699588299,-0.952524244785309,0.248371452093124,0.176093950867653,-0.90650737285614,0.289069801568985,0.307706028223038,-0.939968168735504,0.226348981261253,0.255393445491791,-0.952524244785309,0.248371452093124,0.176093950867653,-0.90650737285614,0.289069801568985,0.307706028223038,-0.851010918617249,0.286840945482254,0.439889192581177,-0.873543322086334,0.251532018184662,0.416717648506165,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.0917210280895233,-0.691962897777557,0.716082751750946,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.160368695855141,-0.681132018566132,0.714381456375122,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.996621310710907,0.0806679129600525,0.015437563881278,\r\n-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.977718949317932,0.165586292743683,0.129021376371384,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.919317424297333,-0.353955268859863,0.171962484717369,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.939859449863434,-0.201391190290451,0.275872588157654,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.707186818122864,-0.199117928743362,0.678408920764923,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.659739136695862,-0.156674206256866,0.734981179237366,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.583084046840668,-0.117145501077175,0.803921461105347,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.528379261493683,-0.0590198896825314,0.846954524517059,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.491149574518204,0.0290989298373461,0.870589017868042,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.268716245889664,0.065463088452816,0.960992217063904,-0.134237572550774,0.144600585103035,0.980342209339142,-0.262401670217514,0.239789396524429,0.934690475463867,-0.268716245889664,0.065463088452816,0.960992217063904,-0.349242955446243,0.316517025232315,0.881955862045288,-0.262401670217514,0.239789396524429,0.934690475463867,-0.316746473312378,0.344269782304764,0.883826792240143,-0.391205668449402,0.390579551458359,0.833310008049011,-0.316746473312378,0.344269782304764,0.883826792240143,-0.371394574642181,0.404316991567612,0.835819244384766,\r\n-0.37548840045929,0.390668332576752,0.840468049049377,-0.371394574642181,0.404316991567612,0.835819244384766,-0.352701604366302,0.398748874664307,0.846522748470306,-0.37548840045929,0.390668332576752,0.840468049049377,-0.352701604366302,0.398748874664307,0.846522748470306,-0.258713394403458,0.307821571826935,0.915594398975372,-0.0575255528092384,0.0805123373866081,0.995092213153839,-0.258713394403458,0.307821571826935,0.915594398975372,-0.219009876251221,0.156062394380569,0.963160991668701,0.134433314204216,-0.369357347488403,0.919512212276459,-0.0575255528092384,0.0805123373866081,0.995092213153839,-0.0668829083442688,-0.266791701316834,0.961430609226227,0.134433314204216,-0.369357347488403,0.919512212276459,-0.0668829083442688,-0.266791701316834,0.961430609226227,0.187145814299583,-0.747763097286224,0.637045323848724,0.309207260608673,-0.892958760261536,0.327132225036621,0.21228401362896,-0.904967486858368,0.368740141391754,0.187145814299583,-0.747763097286224,0.637045323848724,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.821337878704071,-0.223755598068237,0.52472597360611,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.752646744251251,-0.250057578086853,0.609092652797699,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.874639987945557,-0.228994607925415,0.427277714014053,-0.886423587799072,-0.462832659482956,0.00624919217079878,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.925198137760162,-0.367181688547134,0.0958434864878654,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.877952337265015,-0.471072256565094,0.0853830352425575,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.929570436477661,-0.360879004001617,-0.0752665624022484,\r\n-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.890122354030609,-0.443630337715149,-0.104279391467571,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.877952337265015,-0.471072256565094,0.0853830352425575,-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.985582292079926,-0.158176735043526,0.0600632205605507,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.966801345348358,-0.173617571592331,0.187488555908203,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.842254877090454,-0.463426917791367,0.275394469499588,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.870681405067444,-0.358289659023285,0.336960524320602,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.919317424297333,-0.353955268859863,0.171962484717369,0.0339960530400276,-0.905721426010132,0.422507911920547,0.103886775672436,-0.937629818916321,0.331749528646469,-0.0516670271754265,-0.885850787162781,0.461084455251694,0.0339960530400276,-0.905721426010132,0.422507911920547,-0.0516670271754265,-0.885850787162781,0.461084455251694,\r\n-0.120726093649864,-0.841359615325928,0.526819884777069,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.381684064865112,-0.685339033603668,0.62018346786499,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.476949721574783,-0.588280618190765,0.653027296066284,0.21228401362896,-0.904967486858368,0.368740141391754,0.309207260608673,-0.892958760261536,0.327132225036621,0.235866621136665,-0.937104284763336,0.257298201322556,0.185308039188385,-0.937187433242798,0.295534431934357,0.103886775672436,-0.937629818916321,0.331749528646469,0.235866621136665,-0.937104284763336,0.257298201322556,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.170054286718369,-0.184920772910118,0.96792858839035,-0.315355479717255,-0.337088316679001,0.887086272239685,-0.159406751394272,-0.372307956218719,0.914317309856415,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.159406751394272,-0.372307956218719,0.914317309856415,-0.221324145793915,-0.478553652763367,0.849706947803497,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.170054286718369,-0.184920772910118,0.96792858839035,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.333547294139862,-0.160275027155876,0.929009139537811,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.797862589359283,0.265399694442749,0.541274547576904,-0.7224041223526,0.21569912135601,0.656967222690582,-0.77959531545639,0.274822622537613,0.562764167785645,\r\n-0.77959531545639,0.274822622537613,0.562764167785645,-0.842009246349335,0.245880663394928,0.480169773101807,-0.817449927330017,0.312048941850662,0.484149694442749,-0.609024703502655,0.124334946274757,0.783345103263855,-0.541262090206146,0.0466440618038177,0.839559137821198,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.631421983242035,0.155574113130569,0.759672820568085,-0.660376369953156,0.181795820593834,0.728596687316895,-0.609024703502655,0.124334946274757,0.783345103263855,-0.713835060596466,0.211449533700943,0.667628943920136,-0.7224041223526,0.21569912135601,0.656967222690582,-0.660376369953156,0.181795820593834,0.728596687316895,-0.851010918617249,0.286840945482254,0.439889192581177,-0.817449927330017,0.312048941850662,0.484149694442749,-0.842009246349335,0.245880663394928,0.480169773101807,-0.977718949317932,0.165586292743683,0.129021376371384,-0.976025640964508,0.211822226643562,0.0500526316463947,-0.952524244785309,0.248371452093124,0.176093950867653,-0.90650737285614,0.289069801568985,0.307706028223038,-0.912084579467773,0.244884178042412,0.328835994005203,-0.939968168735504,0.226348981261253,0.255393445491791,-0.977718949317932,0.165586292743683,0.129021376371384,-0.952524244785309,0.248371452093124,0.176093950867653,-0.939968168735504,0.226348981261253,0.255393445491791,-0.842009246349335,0.245880663394928,0.480169773101807,-0.873543322086334,0.251532018184662,0.416717648506165,-0.851010918617249,0.286840945482254,0.439889192581177,-0.912084579467773,0.244884178042412,0.328835994005203,-0.90650737285614,0.289069801568985,0.307706028223038,-0.873543322086334,0.251532018184662,0.416717648506165,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.311442196369171,-0.5627521276474,0.765711188316345,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.117450304329395,-0.608814537525177,0.784570097923279,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.0545575730502605,-0.568345487117767,0.820979118347168,\r\n-0.117450304329395,-0.608814537525177,0.784570097923279,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.99073052406311,0.135765254497528,0.00454626651480794,-0.977718949317932,0.165586292743683,0.129021376371384,-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.887850999832153,-0.445970982313156,0.113271556794643,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.541048347949982,-0.288172662258148,0.790077865123749,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.330683946609497,0.00279602431692183,0.943737387657166,-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.268716245889664,0.065463088452816,0.960992217063904,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.134237572550774,0.144600585103035,0.980342209339142,-0.162408545613289,0.203409120440483,0.965529978275299,-0.262401670217514,0.239789396524429,0.934690475463867,\r\n-0.138717114925385,0.0922271385788918,0.98602819442749,-0.134237572550774,0.144600585103035,0.980342209339142,-0.268716245889664,0.065463088452816,0.960992217063904,-0.253228157758713,0.255748152732849,0.932988882064819,-0.316746473312378,0.344269782304764,0.883826792240143,-0.262401670217514,0.239789396524429,0.934690475463867,-0.371394574642181,0.404316991567612,0.835819244384766,-0.316746473312378,0.344269782304764,0.883826792240143,-0.321447730064392,0.406912297010422,0.85504013299942,-0.352701604366302,0.398748874664307,0.846522748470306,-0.371394574642181,0.404316991567612,0.835819244384766,-0.321447730064392,0.406912297010422,0.85504013299942,-0.258713394403458,0.307821571826935,0.915594398975372,-0.352701604366302,0.398748874664307,0.846522748470306,-0.296552807092667,0.294133901596069,0.90859317779541,-0.296552807092667,0.294133901596069,0.90859317779541,-0.219009876251221,0.156062394380569,0.963160991668701,-0.258713394403458,0.307821571826935,0.915594398975372,-0.0575255528092384,0.0805123373866081,0.995092213153839,-0.219009876251221,0.156062394380569,0.963160991668701,-0.0668829083442688,-0.266791701316834,0.961430609226227,0.197513982653618,-0.640914976596832,0.74176549911499,0.187145814299583,-0.747763097286224,0.637045323848724,-0.0668829083442688,-0.266791701316834,0.961430609226227,0.187145814299583,-0.747763097286224,0.637045323848724,0.197513982653618,-0.640914976596832,0.74176549911499,0.309207260608673,-0.892958760261536,0.327132225036621,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.792150020599365,-0.327905476093292,0.514758348464966,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.994364559650421,-0.106013096868992,-0.000468091922812164,\r\n-0.987748503684998,-0.151689380407333,0.0366489291191101,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.904262363910675,-0.425751477479935,0.0323279947042465,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.986225187778473,-0.142211183905602,0.0844738632440567,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.842254877090454,-0.463426917791367,0.275394469499588,-0.902612924575806,-0.321676522493362,0.286031484603882,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.842254877090454,-0.463426917791367,0.275394469499588,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.840569138526917,-0.487216085195541,0.236777603626251,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.902516543865204,-0.389200478792191,0.18435500562191,-0.840569138526917,-0.487216085195541,0.236777603626251,-0.894809484481812,-0.442018151283264,0.062735989689827,\r\n0.100459367036819,-0.923263072967529,0.370800614356995,-0.0516670271754265,-0.885850787162781,0.461084455251694,0.103886775672436,-0.937629818916321,0.331749528646469,-0.0516670271754265,-0.885850787162781,0.461084455251694,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.120726093649864,-0.841359615325928,0.526819884777069,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.381684064865112,-0.685339033603668,0.62018346786499,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.311220496892929,-0.650453209877014,0.692858040332794,-0.381684064865112,-0.685339033603668,0.62018346786499,-0.264339983463287,-0.75688761472702,0.59770005941391,-0.390058010816574,-0.701454162597656,0.596503674983978,0.235866621136665,-0.937104284763336,0.257298201322556,0.309207260608673,-0.892958760261536,0.327132225036621,0.365962624549866,-0.896620392799377,0.249284759163857,0.100459367036819,-0.923263072967529,0.370800614356995,0.103886775672436,-0.937629818916321,0.331749528646469,0.185308039188385,-0.937187433242798,0.295534431934357,0.235866621136665,-0.937104284763336,0.257298201322556,0.258620977401733,-0.912637948989868,0.316554993391037,0.185308039188385,-0.937187433242798,0.295534431934357,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.0545575730502605,-0.568345487117767,0.820979118347168,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.170054286718369,-0.184920772910118,0.96792858839035,-0.159406751394272,-0.372307956218719,0.914317309856415,0.0199526101350784,-0.266975700855255,0.963496625423431,0.0199526101350784,-0.266975700855255,0.963496625423431,-0.159406751394272,-0.372307956218719,0.914317309856415,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.14349602162838,-0.0420509576797485,0.988757073879242,\r\n-0.170054286718369,-0.184920772910118,0.96792858839035,-0.0201004929840565,-0.108956411480904,0.993843257427216,-0.332847476005554,-0.00625935615971684,0.942959845066071,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.713835060596466,0.211449533700943,0.667628943920136,-0.77959531545639,0.274822622537613,0.562764167785645,-0.7224041223526,0.21569912135601,0.656967222690582,-0.77959531545639,0.274822622537613,0.562764167785645,-0.82231217622757,0.177565827965736,0.54062283039093,-0.842009246349335,0.245880663394928,0.480169773101807,-0.609024703502655,0.124334946274757,0.783345103263855,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.631421983242035,0.155574113130569,0.759672820568085,-0.631421983242035,0.155574113130569,0.759672820568085,-0.713835060596466,0.211449533700943,0.667628943920136,-0.660376369953156,0.181795820593834,0.728596687316895,-0.912084579467773,0.244884178042412,0.328835994005203,-0.906066536903381,0.269435584545136,0.326263338327408,-0.939968168735504,0.226348981261253,0.255393445491791,-0.956210970878601,0.216835767030716,0.196577414870262,-0.977718949317932,0.165586292743683,0.129021376371384,-0.939968168735504,0.226348981261253,0.255393445491791,-0.842009246349335,0.245880663394928,0.480169773101807,-0.84002411365509,0.271271735429764,0.469862759113312,-0.873543322086334,0.251532018184662,0.416717648506165,-0.873124241828918,0.279048204421997,0.399732440710068,-0.912084579467773,0.244884178042412,0.328835994005203,-0.873543322086334,0.251532018184662,0.416717648506165,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.316868543624878,-0.54790735244751,0.774203896522522,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.977718949317932,0.165586292743683,0.129021376371384,-0.982454717159271,0.15888038277626,0.0976708829402924,\r\n-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.887850999832153,-0.445970982313156,0.113271556794643,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.936547458171844,-0.317928344011307,0.147649303078651,-0.887850999832153,-0.445970982313156,0.113271556794643,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.648642063140869,-0.305748224258423,0.696980118751526,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.541048347949982,-0.288172662258148,0.790077865123749,-0.606944262981415,-0.257777363061905,0.751777470111847,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.541048347949982,-0.288172662258148,0.790077865123749,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.543933987617493,-0.226032257080078,0.808112025260925,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.485561192035675,-0.164276078343391,0.858628869056702,-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.410580158233643,-0.0835713595151901,0.907986581325531,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.307492941617966,-0.000989729189313948,0.951549768447876,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.268716245889664,0.065463088452816,0.960992217063904,\r\n-0.339309215545654,0.0911452621221542,0.93624871969223,-0.138717114925385,0.0922271385788918,0.98602819442749,-0.153921470046043,0.155653700232506,0.975745856761932,-0.162408545613289,0.203409120440483,0.965529978275299,-0.134237572550774,0.144600585103035,0.980342209339142,-0.253228157758713,0.255748152732849,0.932988882064819,-0.262401670217514,0.239789396524429,0.934690475463867,-0.162408545613289,0.203409120440483,0.965529978275299,-0.138717114925385,0.0922271385788918,0.98602819442749,-0.153921470046043,0.155653700232506,0.975745856761932,-0.134237572550774,0.144600585103035,0.980342209339142,-0.316746473312378,0.344269782304764,0.883826792240143,-0.253228157758713,0.255748152732849,0.932988882064819,-0.289223611354828,0.285745799541473,0.913618624210358,-0.316746473312378,0.344269782304764,0.883826792240143,-0.289223611354828,0.285745799541473,0.913618624210358,-0.321447730064392,0.406912297010422,0.85504013299942,-0.352701604366302,0.398748874664307,0.846522748470306,-0.321447730064392,0.406912297010422,0.85504013299942,-0.258470416069031,0.407200694084167,0.876002550125122,-0.258470416069031,0.407200694084167,0.876002550125122,-0.296552807092667,0.294133901596069,0.90859317779541,-0.352701604366302,0.398748874664307,0.846522748470306,-0.128876179456711,-0.0509283281862736,0.990351915359497,-0.219009876251221,0.156062394380569,0.963160991668701,-0.296552807092667,0.294133901596069,0.90859317779541,-0.128876179456711,-0.0509283281862736,0.990351915359497,-0.0668829083442688,-0.266791701316834,0.961430609226227,-0.219009876251221,0.156062394380569,0.963160991668701,0.197513982653618,-0.640914976596832,0.74176549911499,-0.0668829083442688,-0.266791701316834,0.961430609226227,-0.128876179456711,-0.0509283281862736,0.990351915359497,0.460846751928329,-0.830316841602325,0.313359260559082,0.309207260608673,-0.892958760261536,0.327132225036621,0.197513982653618,-0.640914976596832,0.74176549911499,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.792150020599365,-0.327905476093292,0.514758348464966,\r\n-0.620180785655975,-0.4512879550457,0.641650080680847,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.714942812919617,-0.344419896602631,0.608466506004334,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.865722477436066,-0.340495824813843,0.36686110496521,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.976969838142395,-0.210535049438477,-0.0347117707133293,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.876016616821289,-0.481814712285995,0.0212000235915184,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.972106218338013,-0.224105924367905,-0.069180004298687,-0.956882536411285,-0.29025998711586,-0.0111756958067417,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.939115345478058,-0.313076287508011,0.141582489013672,-0.838177680969238,-0.398348182439804,0.372527658939362,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.840569138526917,-0.487216085195541,0.236777603626251,-0.850687563419342,-0.410945057868958,0.327802896499634,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.842254877090454,-0.463426917791367,0.275394469499588,\r\n-0.862689316272736,-0.4765664935112,0.169267490506172,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.842254877090454,-0.463426917791367,0.275394469499588,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.840569138526917,-0.487216085195541,0.236777603626251,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.894809484481812,-0.442018151283264,0.062735989689827,0.117369003593922,-0.880337238311768,0.459598481655121,-0.0516670271754265,-0.885850787162781,0.461084455251694,0.100459367036819,-0.923263072967529,0.370800614356995,-0.0500566922128201,-0.816359102725983,0.575371265411377,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.0516670271754265,-0.885850787162781,0.461084455251694,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.381684064865112,-0.685339033603668,0.62018346786499,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.476949721574783,-0.588280618190765,0.653027296066284,0.460846751928329,-0.830316841602325,0.313359260559082,0.365962624549866,-0.896620392799377,0.249284759163857,0.309207260608673,-0.892958760261536,0.327132225036621,0.258620977401733,-0.912637948989868,0.316554993391037,0.235866621136665,-0.937104284763336,0.257298201322556,0.365962624549866,-0.896620392799377,0.249284759163857,0.185308039188385,-0.937187433242798,0.295534431934357,0.258620977401733,-0.912637948989868,0.316554993391037,0.100459367036819,-0.923263072967529,0.370800614356995,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.332847476005554,-0.00625935615971684,0.942959845066071,\r\n-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.0201004929840565,-0.108956411480904,0.993843257427216,-0.170054286718369,-0.184920772910118,0.96792858839035,0.0199526101350784,-0.266975700855255,0.963496625423431,0.0199526101350784,-0.266975700855255,0.963496625423431,-0.000438769377069548,-0.435010224580765,0.900425314903259,0.0980935767292976,-0.288070291280746,0.95257180929184,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.0201004929840565,-0.108956411480904,0.993843257427216,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.82231217622757,0.177565827965736,0.54062283039093,-0.77959531545639,0.274822622537613,0.562764167785645,-0.713835060596466,0.211449533700943,0.667628943920136,-0.820666253566742,0.235349714756012,0.520689308643341,-0.842009246349335,0.245880663394928,0.480169773101807,-0.82231217622757,0.177565827965736,0.54062283039093,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.644224762916565,0.0739861279726028,0.761249184608459,-0.631421983242035,0.155574113130569,0.759672820568085,-0.631421983242035,0.155574113130569,0.759672820568085,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.713835060596466,0.211449533700943,0.667628943920136,-0.873124241828918,0.279048204421997,0.399732440710068,-0.906066536903381,0.269435584545136,0.326263338327408,-0.912084579467773,0.244884178042412,0.328835994005203,-0.906066536903381,0.269435584545136,0.326263338327408,-0.956210970878601,0.216835767030716,0.196577414870262,-0.939968168735504,0.226348981261253,0.255393445491791,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.977718949317932,0.165586292743683,0.129021376371384,-0.956210970878601,0.216835767030716,0.196577414870262,-0.84002411365509,0.271271735429764,0.469862759113312,-0.842009246349335,0.245880663394928,0.480169773101807,-0.835753083229065,0.270133882761002,0.478063076734543,-0.873543322086334,0.251532018184662,0.416717648506165,\r\n-0.84002411365509,0.271271735429764,0.469862759113312,-0.830890119075775,0.29871991276741,0.469454973936081,-0.873124241828918,0.279048204421997,0.399732440710068,-0.873543322086334,0.251532018184662,0.416717648506165,-0.830890119075775,0.29871991276741,0.469454973936081,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.102676451206207,-0.529469907283783,0.842092037200928,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.996621310710907,0.0806679129600525,0.015437563881278,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.894809484481812,-0.442018151283264,0.062735989689827,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.887850999832153,-0.445970982313156,0.113271556794643,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.865857660770416,-0.434330075979233,0.248289838433266,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.541048347949982,-0.288172662258148,0.790077865123749,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.502939522266388,-0.24634762108326,0.828471183776855,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.504676580429077,0.0121451439335942,0.86322295665741,\r\n-0.374421834945679,-0.0617099590599537,0.92520272731781,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.523348212242126,0.164399549365044,0.836109578609467,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.138717114925385,0.0922271385788918,0.98602819442749,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.286839008331299,0.216267511248589,0.933247864246368,-0.153921470046043,0.155653700232506,0.975745856761932,-0.236724346876144,0.159873783588409,0.95833283662796,-0.162408545613289,0.203409120440483,0.965529978275299,-0.236724346876144,0.159873783588409,0.95833283662796,-0.253228157758713,0.255748152732849,0.932988882064819,-0.162408545613289,0.203409120440483,0.965529978275299,-0.286839008331299,0.216267511248589,0.933247864246368,-0.153921470046043,0.155653700232506,0.975745856761932,-0.138717114925385,0.0922271385788918,0.98602819442749,-0.236724346876144,0.159873783588409,0.95833283662796,-0.289223611354828,0.285745799541473,0.913618624210358,-0.253228157758713,0.255748152732849,0.932988882064819,-0.258470416069031,0.407200694084167,0.876002550125122,-0.170063838362694,0.292211562395096,0.941111385822296,-0.296552807092667,0.294133901596069,0.90859317779541,-0.128876179456711,-0.0509283281862736,0.990351915359497,-0.296552807092667,0.294133901596069,0.90859317779541,-0.170063838362694,0.292211562395096,0.941111385822296,-0.128876179456711,-0.0509283281862736,0.990351915359497,0.0460314340889454,-0.217143252491951,0.975053727626801,0.197513982653618,-0.640914976596832,0.74176549911499,0.364674866199493,-0.620351493358612,0.694389045238495,0.460846751928329,-0.830316841602325,0.313359260559082,0.197513982653618,-0.640914976596832,0.74176549911499,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.597936034202576,-0.451835334300995,0.662055253982544,\r\n-0.604587435722351,-0.38396367430687,0.697886645793915,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.929570436477661,-0.360879004001617,-0.0752665624022484,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.987002551555634,-0.135665148496628,-0.0861441567540169,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.956882536411285,-0.29025998711586,-0.0111756958067417,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.956882536411285,-0.29025998711586,-0.0111756958067417,-0.994364559650421,-0.106013096868992,-0.000468091922812164,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.806213736534119,-0.590608239173889,-0.0346573181450367,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.798915684223175,-0.546875,0.250322461128235,-0.840569138526917,-0.487216085195541,0.236777603626251,\r\n-0.798438727855682,-0.515453994274139,0.311131179332733,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.862689316272736,-0.4765664935112,0.169267490506172,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.798915684223175,-0.546875,0.250322461128235,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.840569138526917,-0.487216085195541,0.236777603626251,0.117369003593922,-0.880337238311768,0.459598481655121,-0.0500566922128201,-0.816359102725983,0.575371265411377,-0.0516670271754265,-0.885850787162781,0.461084455251694,0.117369003593922,-0.880337238311768,0.459598481655121,0.100459367036819,-0.923263072967529,0.370800614356995,0.258620977401733,-0.912637948989868,0.316554993391037,-0.233427867293358,-0.805611252784729,0.544519782066345,-0.0500566922128201,-0.816359102725983,0.575371265411377,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.476949721574783,-0.588280618190765,0.653027296066284,-0.390058010816574,-0.701454162597656,0.596503674983978,0.365962624549866,-0.896620392799377,0.249284759163857,0.460846751928329,-0.830316841602325,0.313359260559082,0.50460159778595,-0.830822467803955,0.234757825732231,0.258620977401733,-0.912637948989868,0.316554993391037,0.365962624549866,-0.896620392799377,0.249284759163857,0.366934537887573,-0.879171073436737,0.304001778364182,-0.186652407050133,-0.354673027992249,0.916170179843903,0.0980935767292976,-0.288070291280746,0.95257180929184,-0.000438769377069548,-0.435010224580765,0.900425314903259,-0.505686044692993,0.0685915276408196,0.859986424446106,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.644224762916565,0.0739861279726028,0.761249184608459,\r\n-0.492930382490158,-0.207670852541924,0.844921469688416,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.0201004929840565,-0.108956411480904,0.993843257427216,0.0199526101350784,-0.266975700855255,0.963496625423431,0.0199526101350784,-0.266975700855255,0.963496625423431,0.0980935767292976,-0.288070291280746,0.95257180929184,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.14349602162838,-0.0420509576797485,0.988757073879242,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.0201004929840565,-0.108956411480904,0.993843257427216,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.235546410083771,-0.0311324931681156,0.971364259719849,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.82231217622757,0.177565827965736,0.54062283039093,-0.713835060596466,0.211449533700943,0.667628943920136,-0.842009246349335,0.245880663394928,0.480169773101807,-0.820666253566742,0.235349714756012,0.520689308643341,-0.835753083229065,0.270133882761002,0.478063076734543,-0.820666253566742,0.235349714756012,0.520689308643341,-0.82231217622757,0.177565827965736,0.54062283039093,-0.819181740283966,0.132764458656311,0.557955861091614,-0.644224762916565,0.0739861279726028,0.761249184608459,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.631421983242035,0.155574113130569,0.759672820568085,-0.906066536903381,0.269435584545136,0.326263338327408,-0.873124241828918,0.279048204421997,0.399732440710068,-0.83003705739975,0.34397953748703,0.438994795084,-0.84002411365509,0.271271735429764,0.469862759113312,\r\n-0.835753083229065,0.270133882761002,0.478063076734543,-0.80880069732666,0.301043659448624,0.505187034606934,-0.830890119075775,0.29871991276741,0.469454973936081,-0.84002411365509,0.271271735429764,0.469862759113312,-0.785675287246704,0.34459188580513,0.51378071308136,-0.778954327106476,0.382796823978424,0.496685475111008,-0.873124241828918,0.279048204421997,0.399732440710068,-0.830890119075775,0.29871991276741,0.469454973936081,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.539523959159851,-0.32560595870018,0.77646279335022,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.821174442768097,-0.548822999000549,0.156415045261383,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.604587435722351,-0.38396367430687,0.697886645793915,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.557210743427277,-0.323591679334641,0.764725089073181,-0.526192843914032,-0.263838142156601,0.808399856090546,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.502939522266388,-0.24634762108326,0.828471183776855,-0.502939522266388,-0.24634762108326,0.828471183776855,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.492140918970108,-0.215332821011543,0.843462467193604,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.49248680472374,-0.234131425619125,0.838235676288605,\r\n-0.487584918737412,-0.152450397610664,0.859662532806396,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.492703646421433,0.0864859521389008,0.865888655185699,-0.523348212242126,0.164399549365044,0.836109578609467,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.523348212242126,0.164399549365044,0.836109578609467,-0.434461623430252,0.266305267810822,0.860421121120453,-0.286839008331299,0.216267511248589,0.933247864246368,-0.339309215545654,0.0911452621221542,0.93624871969223,-0.434461623430252,0.266305267810822,0.860421121120453,-0.236724346876144,0.159873783588409,0.95833283662796,-0.153921470046043,0.155653700232506,0.975745856761932,-0.183176711201668,0.120957732200623,0.975610256195068,-0.286839008331299,0.216267511248589,0.933247864246368,-0.258424520492554,0.256875544786453,0.931252717971802,-0.153921470046043,0.155653700232506,0.975745856761932,-0.289223611354828,0.285745799541473,0.913618624210358,-0.236724346876144,0.159873783588409,0.95833283662796,-0.186008542776108,0.15044005215168,0.970962703227997,-0.128876179456711,-0.0509283281862736,0.990351915359497,-0.170063838362694,0.292211562395096,0.941111385822296,0.0460314340889454,-0.217143252491951,0.975053727626801,0.364674866199493,-0.620351493358612,0.694389045238495,0.197513982653618,-0.640914976596832,0.74176549911499,0.0460314340889454,-0.217143252491951,0.975053727626801,0.364674866199493,-0.620351493358612,0.694389045238495,0.555728256702423,-0.759969532489777,0.337064146995544,0.460846751928329,-0.830316841602325,0.313359260559082,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.762725234031677,-0.436951041221619,0.476785033941269,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.632843732833862,-0.56480073928833,0.529630780220032,-0.692276179790497,-0.445843786001205,0.567430138587952,-0.692276179790497,-0.445843786001205,0.567430138587952,\r\n-0.632843732833862,-0.56480073928833,0.529630780220032,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.620180785655975,-0.4512879550457,0.641650080680847,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.801552951335907,-0.504193782806396,0.321405202150345,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.945879399776459,-0.251555293798447,-0.205017283558846,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.976133704185486,-0.187275826931,-0.109956547617912,-0.956882536411285,-0.29025998711586,-0.0111756958067417,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.806213736534119,-0.590608239173889,-0.0346573181450367,-0.936378955841064,-0.349104523658752,0.0363366790115833,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.806213736534119,-0.590608239173889,-0.0346573181450367,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.853805661201477,-0.519917666912079,0.0264856163412333,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.798915684223175,-0.546875,0.250322461128235,-0.798438727855682,-0.515453994274139,0.311131179332733,-0.770755529403687,-0.569274723529816,0.286115437746048,-0.740133225917816,-0.643048644065857,0.196700766682625,\r\n-0.779333770275116,-0.596093118190765,0.193162485957146,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.758931159973145,-0.612459242343903,0.22117193043232,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.798915684223175,-0.546875,0.250322461128235,-0.766883194446564,-0.574254274368286,0.286569654941559,-0.0500566922128201,-0.816359102725983,0.575371265411377,0.117369003593922,-0.880337238311768,0.459598481655121,0.162769645452499,-0.819616317749023,0.549304068088531,0.309752106666565,-0.869183897972107,0.385451525449753,0.117369003593922,-0.880337238311768,0.459598481655121,0.258620977401733,-0.912637948989868,0.316554993391037,-0.0500566922128201,-0.816359102725983,0.575371265411377,0.0390799157321453,-0.715532720088959,0.697485148906708,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.17642767727375,-0.736543595790863,0.65297532081604,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.454324901103973,-0.572576463222504,0.682455062866211,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.390058010816574,-0.701454162597656,0.596503674983978,-0.454324901103973,-0.572576463222504,0.682455062866211,0.50460159778595,-0.830822467803955,0.234757825732231,0.460846751928329,-0.830316841602325,0.313359260559082,0.614892244338989,-0.745778739452362,0.256362229585648,0.50460159778595,-0.830822467803955,0.234757825732231,0.45979779958725,-0.836804926395416,0.297226071357727,0.365962624549866,-0.896620392799377,0.249284759163857,0.365962624549866,-0.896620392799377,0.249284759163857,0.45979779958725,-0.836804926395416,0.297226071357727,0.366934537887573,-0.879171073436737,0.304001778364182,0.309752106666565,-0.869183897972107,0.385451525449753,\r\n0.258620977401733,-0.912637948989868,0.316554993391037,0.366934537887573,-0.879171073436737,0.304001778364182,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.0637978911399841,-0.207985296845436,0.97604912519455,0.0980935767292976,-0.288070291280746,0.95257180929184,-0.644224762916565,0.0739861279726028,0.761249184608459,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.492930382490158,-0.207670852541924,0.844921469688416,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.492930382490158,-0.207670852541924,0.844921469688416,-0.374320298433304,-0.0548553429543972,0.925675451755524,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.230516955256462,-0.362032771110535,0.903213262557983,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.82231217622757,0.177565827965736,0.54062283039093,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.819181740283966,0.132764458656311,0.557955861091614,-0.820666253566742,0.235349714756012,0.520689308643341,-0.780823171138763,0.30525541305542,0.545100092887878,-0.835753083229065,0.270133882761002,0.478063076734543,-0.820666253566742,0.235349714756012,0.520689308643341,-0.819181740283966,0.132764458656311,0.557955861091614,-0.707465887069702,0.261404991149902,0.656627237796783,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.644224762916565,0.0739861279726028,0.761249184608459,-0.778954327106476,0.382796823978424,0.496685475111008,-0.83003705739975,0.34397953748703,0.438994795084,\r\n-0.873124241828918,0.279048204421997,0.399732440710068,-0.811087369918823,0.390369892120361,0.435601234436035,-0.906066536903381,0.269435584545136,0.326263338327408,-0.83003705739975,0.34397953748703,0.438994795084,-0.80880069732666,0.301043659448624,0.505187034606934,-0.835753083229065,0.270133882761002,0.478063076734543,-0.760539352893829,0.356308430433273,0.542792797088623,-0.84002411365509,0.271271735429764,0.469862759113312,-0.80880069732666,0.301043659448624,0.505187034606934,-0.785675287246704,0.34459188580513,0.51378071308136,-0.785675287246704,0.34459188580513,0.51378071308136,-0.762714803218842,0.378899872303009,0.524119138717651,-0.830890119075775,0.29871991276741,0.469454973936081,-0.778954327106476,0.382796823978424,0.496685475111008,-0.830890119075775,0.29871991276741,0.469454973936081,-0.762714803218842,0.378899872303009,0.524119138717651,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.539523959159851,-0.32560595870018,0.77646279335022,-0.493057936429977,-0.495661467313766,0.714991927146912,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.45221135020256,-0.447591036558151,0.771470665931702,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.539523959159851,-0.32560595870018,0.77646279335022,-0.806042492389679,-0.562117099761963,0.185256123542786,-0.766883194446564,-0.574254274368286,0.286569654941559,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.502939522266388,-0.24634762108326,0.828471183776855,-0.499073058366776,-0.229532331228256,0.835608065128326,\r\n-0.4769307076931,-0.305882006883621,0.823998272418976,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.487584918737412,-0.152450397610664,0.859662532806396,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.492703646421433,0.0864859521389008,0.865888655185699,-0.504676580429077,0.0121451439335942,0.86322295665741,-0.492703646421433,0.0864859521389008,0.865888655185699,-0.43558207154274,0.228591978549957,0.87063992023468,-0.523348212242126,0.164399549365044,0.836109578609467,-0.523348212242126,0.164399549365044,0.836109578609467,-0.43558207154274,0.228591978549957,0.87063992023468,-0.434461623430252,0.266305267810822,0.860421121120453,-0.286839008331299,0.216267511248589,0.933247864246368,-0.434461623430252,0.266305267810822,0.860421121120453,-0.387099713087082,0.325969308614731,0.862495064735413,-0.258424520492554,0.256875544786453,0.931252717971802,-0.183176711201668,0.120957732200623,0.975610256195068,-0.153921470046043,0.155653700232506,0.975745856761932,-0.183176711201668,0.120957732200623,0.975610256195068,-0.186008542776108,0.15044005215168,0.970962703227997,-0.236724346876144,0.159873783588409,0.95833283662796,-0.286839008331299,0.216267511248589,0.933247864246368,-0.387099713087082,0.325969308614731,0.862495064735413,-0.258424520492554,0.256875544786453,0.931252717971802,0.0460314340889454,-0.217143252491951,0.975053727626801,-0.170063838362694,0.292211562395096,0.941111385822296,0.085183173418045,-0.0245090182870626,0.996063768863678,0.0460314340889454,-0.217143252491951,0.975053727626801,0.085183173418045,-0.0245090182870626,0.996063768863678,0.364674866199493,-0.620351493358612,0.694389045238495,0.555728256702423,-0.759969532489777,0.337064146995544,0.364674866199493,-0.620351493358612,0.694389045238495,0.496982485055923,-0.668016731739044,0.553860902786255,\r\n0.460846751928329,-0.830316841602325,0.313359260559082,0.555728256702423,-0.759969532489777,0.337064146995544,0.614892244338989,-0.745778739452362,0.256362229585648,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.694900810718536,-0.529169976711273,0.486920893192291,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.632843732833862,-0.56480073928833,0.529630780220032,-0.632843732833862,-0.56480073928833,0.529630780220032,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.604909718036652,-0.531020402908325,0.593381285667419,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.945879399776459,-0.251555293798447,-0.205017283558846,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.945879399776459,-0.251555293798447,-0.205017283558846,-0.944114685058594,-0.249110206961632,-0.215850710868835,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.951450705528259,-0.297138184309006,-0.0803139880299568,-0.806213736534119,-0.590608239173889,-0.0346573181450367,\r\n-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.806213736534119,-0.590608239173889,-0.0346573181450367,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.798915684223175,-0.546875,0.250322461128235,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.752069592475891,-0.652712762355804,0.0914178192615509,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.798915684223175,-0.546875,0.250322461128235,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.766883194446564,-0.574254274368286,0.286569654941559,0.309752106666565,-0.869183897972107,0.385451525449753,0.162769645452499,-0.819616317749023,0.549304068088531,0.117369003593922,-0.880337238311768,0.459598481655121,-0.0500566922128201,-0.816359102725983,0.575371265411377,0.162769645452499,-0.819616317749023,0.549304068088531,0.0390799157321453,-0.715532720088959,0.697485148906708,-0.17642767727375,-0.736543595790863,0.65297532081604,0.0390799157321453,-0.715532720088959,0.697485148906708,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.454324901103973,-0.572576463222504,0.682455062866211,-0.301441580057144,-0.619108259677887,0.72514671087265,\r\n-0.45221135020256,-0.447591036558151,0.771470665931702,-0.540677189826965,-0.545491874217987,0.640395641326904,-0.454324901103973,-0.572576463222504,0.682455062866211,-0.45221135020256,-0.447591036558151,0.771470665931702,0.614892244338989,-0.745778739452362,0.256362229585648,0.45979779958725,-0.836804926395416,0.297226071357727,0.50460159778595,-0.830822467803955,0.234757825732231,0.457902014255524,-0.811820685863495,0.362315893173218,0.366934537887573,-0.879171073436737,0.304001778364182,0.45979779958725,-0.836804926395416,0.297226071357727,0.309752106666565,-0.869183897972107,0.385451525449753,0.366934537887573,-0.879171073436737,0.304001778364182,0.457902014255524,-0.811820685863495,0.362315893173218,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.186652407050133,-0.354673027992249,0.916170179843903,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.558000445365906,-0.0655887499451637,0.827244520187378,-0.492930382490158,-0.207670852541924,0.844921469688416,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.492930382490158,-0.207670852541924,0.844921469688416,-0.230516955256462,-0.362032771110535,0.903213262557983,-0.142824336886406,-0.159055307507515,0.976884067058563,-0.358674943447113,-0.362131834030151,0.860356152057648,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.188328966498375,-0.180192723870277,0.965433895587921,-0.230516955256462,-0.362032771110535,0.903213262557983,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.0637978911399841,-0.207985296845436,0.97604912519455,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.358674943447113,-0.362131834030151,0.860356152057648,-0.142824336886406,-0.159055307507515,0.976884067058563,\r\n-0.38810607790947,-0.245972901582718,0.888184070587158,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.494538545608521,-0.389540731906891,0.776974558830261,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.819181740283966,0.132764458656311,0.557955861091614,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.780823171138763,0.30525541305542,0.545100092887878,-0.820666253566742,0.235349714756012,0.520689308643341,-0.68054187297821,0.359041213989258,0.638711214065552,-0.780823171138763,0.30525541305542,0.545100092887878,-0.760539352893829,0.356308430433273,0.542792797088623,-0.835753083229065,0.270133882761002,0.478063076734543,-0.819181740283966,0.132764458656311,0.557955861091614,-0.733391463756561,0.137780800461769,0.665697574615479,-0.707465887069702,0.261404991149902,0.656627237796783,-0.707465887069702,0.261404991149902,0.656627237796783,-0.68054187297821,0.359041213989258,0.638711214065552,-0.820666253566742,0.235349714756012,0.520689308643341,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.75888192653656,0.0905929356813431,0.64489609003067,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.778954327106476,0.382796823978424,0.496685475111008,-0.731009006500244,0.444979727268219,0.517318785190582,-0.83003705739975,0.34397953748703,0.438994795084,-0.811087369918823,0.390369892120361,0.435601234436035,-0.83003705739975,0.34397953748703,0.438994795084,-0.731009006500244,0.444979727268219,0.517318785190582,-0.760539352893829,0.356308430433273,0.542792797088623,-0.785675287246704,0.34459188580513,0.51378071308136,-0.80880069732666,0.301043659448624,0.505187034606934,-0.685696303844452,0.439216434955597,0.580438911914825,-0.762714803218842,0.378899872303009,0.524119138717651,-0.785675287246704,0.34459188580513,0.51378071308136,-0.698471128940582,0.450913369655609,0.555711328983307,-0.778954327106476,0.382796823978424,0.496685475111008,-0.762714803218842,0.378899872303009,0.524119138717651,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.539523959159851,-0.32560595870018,0.77646279335022,\r\n-0.613130033016205,-0.377107530832291,0.694162309169769,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.45221135020256,-0.447591036558151,0.771470665931702,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.748091280460358,-0.617509305477142,0.242984667420387,-0.766883194446564,-0.574254274368286,0.286569654941559,-0.597936034202576,-0.451835334300995,0.662055253982544,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.574172496795654,-0.387785732746124,0.721074223518372,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.520337224006653,-0.298947989940643,0.799924433231354,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.499073058366776,-0.229532331228256,0.835608065128326,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.509527385234833,-0.11929539591074,0.852144598960876,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.492703646421433,0.0864859521389008,0.865888655185699,-0.378438204526901,0.0950650721788406,0.920731782913208,-0.43558207154274,0.228591978549957,0.87063992023468,-0.492703646421433,0.0864859521389008,0.865888655185699,\r\n-0.434461623430252,0.266305267810822,0.860421121120453,-0.43558207154274,0.228591978549957,0.87063992023468,-0.40191313624382,0.323040187358856,0.856802642345428,-0.434461623430252,0.266305267810822,0.860421121120453,-0.40191313624382,0.323040187358856,0.856802642345428,-0.387099713087082,0.325969308614731,0.862495064735413,-0.183176711201668,0.120957732200623,0.975610256195068,-0.258424520492554,0.256875544786453,0.931252717971802,-0.15008307993412,0.175075009465218,0.973048627376556,-0.183176711201668,0.120957732200623,0.975610256195068,-0.15008307993412,0.175075009465218,0.973048627376556,-0.186008542776108,0.15044005215168,0.970962703227997,-0.344723641872406,0.350178092718124,0.870942533016205,-0.258424520492554,0.256875544786453,0.931252717971802,-0.387099713087082,0.325969308614731,0.862495064735413,0.364674866199493,-0.620351493358612,0.694389045238495,0.085183173418045,-0.0245090182870626,0.996063768863678,0.306534439325333,-0.433536976575851,0.847397327423096,0.364674866199493,-0.620351493358612,0.694389045238495,0.306534439325333,-0.433536976575851,0.847397327423096,0.496982485055923,-0.668016731739044,0.553860902786255,0.555728256702423,-0.759969532489777,0.337064146995544,0.496982485055923,-0.668016731739044,0.553860902786255,0.683156430721283,-0.660563468933105,0.311372846364975,0.614892244338989,-0.745778739452362,0.256362229585648,0.555728256702423,-0.759969532489777,0.337064146995544,0.683156430721283,-0.660563468933105,0.311372846364975,-0.714508354663849,-0.591030836105347,0.374379724264145,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.632843732833862,-0.56480073928833,0.529630780220032,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.60381406545639,-0.506373643875122,0.615624964237213,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.714508354663849,-0.591030836105347,0.374379724264145,\r\n-0.720902025699615,-0.597240686416626,0.351572901010513,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.945879399776459,-0.251555293798447,-0.205017283558846,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.953193485736847,-0.291497200727463,-0.0803206488490105,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.831585884094238,-0.554932832717896,-0.0226776208728552,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.744383990764618,-0.667521357536316,-0.0175328627228737,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.779333770275116,-0.596093118190765,0.193162485957146,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.740133225917816,-0.643048644065857,0.196700766682625,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.721447288990021,-0.680855333805084,0.126292541623116,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.740133225917816,-0.643048644065857,0.196700766682625,\r\n-0.786814332008362,-0.564614236354828,0.249266520142555,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.766883194446564,-0.574254274368286,0.286569654941559,0.416810870170593,-0.784584224224091,0.459016472101212,0.162769645452499,-0.819616317749023,0.549304068088531,0.309752106666565,-0.869183897972107,0.385451525449753,0.162769645452499,-0.819616317749023,0.549304068088531,0.275488018989563,-0.693823039531708,0.665368854999542,0.0390799157321453,-0.715532720088959,0.697485148906708,0.0390799157321453,-0.715532720088959,0.697485148906708,-0.00110557104926556,-0.585586607456207,0.810608983039856,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.108738772571087,-0.64336621761322,0.757796585559845,-0.00110557104926556,-0.585586607456207,0.810608983039856,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.301441580057144,-0.619108259677887,0.72514671087265,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.45221135020256,-0.447591036558151,0.771470665931702,0.614892244338989,-0.745778739452362,0.256362229585648,0.555734694004059,-0.755917310714722,0.346045941114426,0.45979779958725,-0.836804926395416,0.297226071357727,0.457902014255524,-0.811820685863495,0.362315893173218,0.45979779958725,-0.836804926395416,0.297226071357727,0.555734694004059,-0.755917310714722,0.346045941114426,0.416810870170593,-0.784584224224091,0.459016472101212,0.309752106666565,-0.869183897972107,0.385451525449753,0.457902014255524,-0.811820685863495,0.362315893173218,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.631844401359558,-0.152502074837685,0.759944558143616,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.38810607790947,-0.245972901582718,0.888184070587158,-0.494538545608521,-0.389540731906891,0.776974558830261,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.230516955256462,-0.362032771110535,0.903213262557983,\r\n-0.358674943447113,-0.362131834030151,0.860356152057648,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.230516955256462,-0.362032771110535,0.903213262557983,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.358674943447113,-0.362131834030151,0.860356152057648,-0.494538545608521,-0.389540731906891,0.776974558830261,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.819181740283966,0.132764458656311,0.557955861091614,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.733391463756561,0.137780800461769,0.665697574615479,-0.780823171138763,0.30525541305542,0.545100092887878,-0.68054187297821,0.359041213989258,0.638711214065552,-0.714385569095612,0.38433450460434,0.584756433963776,-0.714385569095612,0.38433450460434,0.584756433963776,-0.760539352893829,0.356308430433273,0.542792797088623,-0.780823171138763,0.30525541305542,0.545100092887878,-0.631379008293152,0.176397547125816,0.755145192146301,-0.707465887069702,0.261404991149902,0.656627237796783,-0.733391463756561,0.137780800461769,0.665697574615479,-0.68054187297821,0.359041213989258,0.638711214065552,-0.707465887069702,0.261404991149902,0.656627237796783,-0.579309463500977,0.377046525478363,0.722659170627594,-0.726919233798981,-0.0355543382465839,0.685801923274994,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.677463173866272,0.482017248868942,0.555610358715057,-0.731009006500244,0.444979727268219,0.517318785190582,-0.778954327106476,0.382796823978424,0.496685475111008,-0.760539352893829,0.356308430433273,0.542792797088623,-0.685696303844452,0.439216434955597,0.580438911914825,-0.785675287246704,0.34459188580513,0.51378071308136,\r\n-0.762714803218842,0.378899872303009,0.524119138717651,-0.685696303844452,0.439216434955597,0.580438911914825,-0.698471128940582,0.450913369655609,0.555711328983307,-0.778954327106476,0.382796823978424,0.496685475111008,-0.698471128940582,0.450913369655609,0.555711328983307,-0.677463173866272,0.482017248868942,0.555610358715057,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.501235663890839,-0.265147298574448,0.823686540126801,-0.613130033016205,-0.377107530832291,0.694162309169769,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.45221135020256,-0.447591036558151,0.771470665931702,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.766883194446564,-0.574254274368286,0.286569654941559,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.618659675121307,-0.420008629560471,0.663967490196228,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.49248680472374,-0.234131425619125,0.838235676288605,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.470408588647842,-0.0322393104434013,0.881859540939331,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.378438204526901,0.0950650721788406,0.920731782913208,\r\n-0.492703646421433,0.0864859521389008,0.865888655185699,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.283735722303391,0.144951328635216,0.947883486747742,-0.43558207154274,0.228591978549957,0.87063992023468,-0.378438204526901,0.0950650721788406,0.920731782913208,-0.40191313624382,0.323040187358856,0.856802642345428,-0.43558207154274,0.228591978549957,0.87063992023468,-0.316372871398926,0.293816864490509,0.901986598968506,-0.344723641872406,0.350178092718124,0.870942533016205,-0.387099713087082,0.325969308614731,0.862495064735413,-0.40191313624382,0.323040187358856,0.856802642345428,-0.258424520492554,0.256875544786453,0.931252717971802,-0.222731307148933,0.354214578866959,0.908252537250519,-0.15008307993412,0.175075009465218,0.973048627376556,-0.344723641872406,0.350178092718124,0.870942533016205,-0.222731307148933,0.354214578866959,0.908252537250519,-0.258424520492554,0.256875544786453,0.931252717971802,0.683156430721283,-0.660563468933105,0.311372846364975,0.714718401432037,-0.635812103748322,0.291411072015762,0.614892244338989,-0.745778739452362,0.256362229585648,-0.63856428861618,-0.623410284519196,0.451215118169785,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.920588433742523,-0.242459505796433,-0.306153893470764,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.910928666591644,-0.393385827541351,-0.124324165284634,\r\n-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.844181656837463,-0.535824835300446,-0.0157768819481134,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.725398659706116,-0.687146365642548,-0.040328424423933,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.795940279960632,-0.576265573501587,0.185463890433311,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.742680251598358,-0.574352502822876,0.344303667545319,-0.771788477897644,-0.530658900737762,0.350347727537155,0.416810870170593,-0.784584224224091,0.459016472101212,0.275488018989563,-0.693823039531708,0.665368854999542,0.162769645452499,-0.819616317749023,0.549304068088531,0.152228683233261,-0.59786731004715,0.787007570266724,0.0390799157321453,-0.715532720088959,0.697485148906708,0.275488018989563,-0.693823039531708,0.665368854999542,\r\n0.0390799157321453,-0.715532720088959,0.697485148906708,0.152228683233261,-0.59786731004715,0.787007570266724,-0.00110557104926556,-0.585586607456207,0.810608983039856,-0.00110557104926556,-0.585586607456207,0.810608983039856,0.037371639162302,-0.487762749195099,0.872175872325897,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.45221135020256,-0.447591036558151,0.771470665931702,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.271944135427475,-0.372416436672211,0.887328684329987,0.614892244338989,-0.745778739452362,0.256362229585648,0.6632399559021,-0.670752823352814,0.331968694925308,0.555734694004059,-0.755917310714722,0.346045941114426,0.555734694004059,-0.755917310714722,0.346045941114426,0.594188988208771,-0.699383914470673,0.397242456674576,0.457902014255524,-0.811820685863495,0.362315893173218,0.594188988208771,-0.699383914470673,0.397242456674576,0.416810870170593,-0.784584224224091,0.459016472101212,0.457902014255524,-0.811820685863495,0.362315893173218,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.494538545608521,-0.389540731906891,0.776974558830261,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.358674943447113,-0.362131834030151,0.860356152057648,-0.353304833173752,-0.410704016685486,0.840534269809723,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.553639352321625,-0.215287074446678,0.804446935653687,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.494538545608521,-0.389540731906891,0.776974558830261,\r\n-0.399892508983612,-0.456387519836426,0.794856131076813,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.733391463756561,0.137780800461769,0.665697574615479,-0.68054187297821,0.359041213989258,0.638711214065552,-0.631051957607269,0.442671030759811,0.637036621570587,-0.714385569095612,0.38433450460434,0.584756433963776,-0.631051957607269,0.442671030759811,0.637036621570587,-0.760539352893829,0.356308430433273,0.542792797088623,-0.714385569095612,0.38433450460434,0.584756433963776,-0.707465887069702,0.261404991149902,0.656627237796783,-0.631379008293152,0.176397547125816,0.755145192146301,-0.601071715354919,0.282114267349243,0.747746050357819,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.631379008293152,0.176397547125816,0.755145192146301,-0.733391463756561,0.137780800461769,0.665697574615479,-0.579309463500977,0.377046525478363,0.722659170627594,-0.707465887069702,0.261404991149902,0.656627237796783,-0.601071715354919,0.282114267349243,0.747746050357819,-0.579309463500977,0.377046525478363,0.722659170627594,-0.577174782752991,0.436297655105591,0.6902996301651,-0.68054187297821,0.359041213989258,0.638711214065552,-0.784753620624542,0.0130721488967538,0.619669854640961,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.631051957607269,0.442671030759811,0.637036621570587,-0.685696303844452,0.439216434955597,0.580438911914825,-0.760539352893829,0.356308430433273,0.542792797088623,-0.57852429151535,0.547211647033691,0.604870915412903,-0.698471128940582,0.450913369655609,0.555711328983307,-0.685696303844452,0.439216434955597,0.580438911914825,-0.677463173866272,0.482017248868942,0.555610358715057,-0.698471128940582,0.450913369655609,0.555711328983307,-0.57852429151535,0.547211647033691,0.604870915412903,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.45221135020256,-0.447591036558151,0.771470665931702,\r\n-0.271944135427475,-0.372416436672211,0.887328684329987,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.679946899414063,-0.45920118689537,0.57166975736618,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.526377439498901,-0.350357472896576,0.774710476398468,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.4769307076931,-0.305882006883621,0.823998272418976,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.265586793422699,0.0171879176050425,0.963933706283569,-0.378438204526901,0.0950650721788406,0.920731782913208,-0.43558207154274,0.228591978549957,0.87063992023468,-0.283735722303391,0.144951328635216,0.947883486747742,-0.316372871398926,0.293816864490509,0.901986598968506,-0.283735722303391,0.144951328635216,0.947883486747742,-0.378438204526901,0.0950650721788406,0.920731782913208,\r\n-0.265586793422699,0.0171879176050425,0.963933706283569,-0.344723641872406,0.350178092718124,0.870942533016205,-0.40191313624382,0.323040187358856,0.856802642345428,-0.316372871398926,0.293816864490509,0.901986598968506,-0.287048310041428,0.375617951154709,0.88120049238205,-0.222731307148933,0.354214578866959,0.908252537250519,-0.344723641872406,0.350178092718124,0.870942533016205,0.683156430721283,-0.660563468933105,0.311372846364975,0.780604600906372,-0.532097578048706,0.327915459871292,0.714718401432037,-0.635812103748322,0.291411072015762,0.614892244338989,-0.745778739452362,0.256362229585648,0.714718401432037,-0.635812103748322,0.291411072015762,0.6632399559021,-0.670752823352814,0.331968694925308,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.658422529697418,-0.627770602703094,0.415191113948822,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.628038883209229,-0.571669697761536,0.52797794342041,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.679946899414063,-0.45920118689537,0.57166975736618,-0.653389155864716,-0.457302182912827,0.603288650512695,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.720902025699615,-0.597240686416626,0.351572901010513,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.910928666591644,-0.393385827541351,-0.124324165284634,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.873591482639313,-0.486051619052887,0.0243236813694239,-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.788037598133087,-0.611174285411835,0.0739092975854874,\r\n-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.75166380405426,-0.659386277198792,0.0145309614017606,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.829347968101501,-0.558140397071838,0.0257109999656677,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.800595343112946,-0.563884913921356,0.202683463692665,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.752238690853119,-0.658779084682465,0.0121212583035231,-0.829347968101501,-0.558140397071838,0.0257109999656677,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.821597754955292,-0.549091517925262,0.153217375278473,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.823086202144623,-0.510116100311279,0.249620676040649,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.786814332008362,-0.564614236354828,0.249266520142555,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.742680251598358,-0.574352502822876,0.344303667545319,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.742680251598358,-0.574352502822876,0.344303667545319,0.275488018989563,-0.693823039531708,0.665368854999542,\r\n0.416810870170593,-0.784584224224091,0.459016472101212,0.462355136871338,-0.662181675434113,0.589697360992432,0.348755180835724,-0.554955899715424,0.755244076251984,0.152228683233261,-0.59786731004715,0.787007570266724,0.275488018989563,-0.693823039531708,0.665368854999542,0.037371639162302,-0.487762749195099,0.872175872325897,-0.00110557104926556,-0.585586607456207,0.810608983039856,0.152228683233261,-0.59786731004715,0.787007570266724,-0.0967972502112389,-0.388627648353577,0.916296184062958,-0.173122435808182,-0.510749638080597,0.842118322849274,0.037371639162302,-0.487762749195099,0.872175872325897,-0.271944135427475,-0.372416436672211,0.887328684329987,-0.173122435808182,-0.510749638080597,0.842118322849274,-0.0967972502112389,-0.388627648353577,0.916296184062958,0.555734694004059,-0.755917310714722,0.346045941114426,0.6632399559021,-0.670752823352814,0.331968694925308,0.594188988208771,-0.699383914470673,0.397242456674576,0.572678685188293,-0.683138489723206,0.45316743850708,0.416810870170593,-0.784584224224091,0.459016472101212,0.594188988208771,-0.699383914470673,0.397242456674576,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.682399451732636,-0.10272128880024,0.723725855350494,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.577232122421265,-0.247111320495605,0.7782923579216,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.553639352321625,-0.215287074446678,0.804446935653687,-0.494659036397934,-0.204967439174652,0.84457129240036,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.593381226062775,-0.27140411734581,0.757785260677338,-0.493840128183365,-0.203843966126442,0.845322072505951,\r\n-0.553639352321625,-0.215287074446678,0.804446935653687,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.522564768791199,-0.35318323969841,0.776007413864136,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.631051957607269,0.442671030759811,0.637036621570587,-0.68054187297821,0.359041213989258,0.638711214065552,-0.577174782752991,0.436297655105591,0.6902996301651,-0.631379008293152,0.176397547125816,0.755145192146301,-0.529776573181152,0.195684358477592,0.825254082679749,-0.601071715354919,0.282114267349243,0.747746050357819,-0.631379008293152,0.176397547125816,0.755145192146301,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.504277408123016,0.315880626440048,0.80369371175766,-0.579309463500977,0.377046525478363,0.722659170627594,-0.601071715354919,0.282114267349243,0.747746050357819,-0.579309463500977,0.377046525478363,0.722659170627594,-0.50067675113678,0.451377749443054,0.738634407520294,-0.577174782752991,0.436297655105591,0.6902996301651,-0.631051957607269,0.442671030759811,0.637036621570587,-0.5713991522789,0.513698935508728,0.640012562274933,-0.685696303844452,0.439216434955597,0.580438911914825,-0.5713991522789,0.513698935508728,0.640012562274933,-0.57852429151535,0.547211647033691,0.604870915412903,-0.685696303844452,0.439216434955597,0.580438911914825,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.271944135427475,-0.372416436672211,0.887328684329987,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.464986681938171,-0.329886078834534,0.821560978889465,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.771788477897644,-0.530658900737762,0.350347727537155,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.679946899414063,-0.45920118689537,0.57166975736618,\r\n-0.620460569858551,-0.529958963394165,0.578076064586639,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.566566526889801,-0.412621229887009,0.713264286518097,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.627573132514954,-0.447977781295776,0.636763453483582,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.496645599603653,-0.389833480119705,0.775482356548309,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.459717273712158,-0.355375468730927,0.813860058784485,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.390744924545288,-0.180885970592499,0.902551174163818,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.40010079741478,-0.312474608421326,0.861556053161621,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.265586793422699,0.0171879176050425,0.963933706283569,-0.195349723100662,0.237663000822067,0.951501309871674,-0.316372871398926,0.293816864490509,0.901986598968506,-0.283735722303391,0.144951328635216,0.947883486747742,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.283735722303391,0.144951328635216,0.947883486747742,-0.265586793422699,0.0171879176050425,0.963933706283569,\r\n-0.287048310041428,0.375617951154709,0.88120049238205,-0.344723641872406,0.350178092718124,0.870942533016205,-0.316372871398926,0.293816864490509,0.901986598968506,-0.287048310041428,0.375617951154709,0.88120049238205,-0.170585066080093,0.371656179428101,0.912563562393188,-0.222731307148933,0.354214578866959,0.908252537250519,0.731087446212769,-0.579987943172455,0.359339624643326,0.714718401432037,-0.635812103748322,0.291411072015762,0.780604600906372,-0.532097578048706,0.327915459871292,0.6632399559021,-0.670752823352814,0.331968694925308,0.714718401432037,-0.635812103748322,0.291411072015762,0.731087446212769,-0.579987943172455,0.359339624643326,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.679946899414063,-0.45920118689537,0.57166975736618,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.720056056976318,-0.531495630741119,0.446129471063614,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.918716192245483,-0.299735337495804,-0.257136017084122,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.831705987453461,-0.554505884647369,0.0280758943408728,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.788037598133087,-0.611174285411835,0.0739092975854874,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.888942778110504,-0.455443978309631,0.0484920255839825,\r\n-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.829347968101501,-0.558140397071838,0.0257109999656677,-0.762341260910034,-0.646538019180298,0.0287115089595318,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.702935457229614,-0.658907115459442,0.267811506986618,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.826578617095947,-0.498530864715576,0.261217534542084,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.829347968101501,-0.558140397071838,0.0257109999656677,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.864194989204407,-0.468484848737717,0.183545306324959,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.742680251598358,-0.574352502822876,0.344303667545319,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.742680251598358,-0.574352502822876,0.344303667545319,0.572678685188293,-0.683138489723206,0.45316743850708,0.462355136871338,-0.662181675434113,0.589697360992432,0.416810870170593,-0.784584224224091,0.459016472101212,0.275488018989563,-0.693823039531708,0.665368854999542,0.462355136871338,-0.662181675434113,0.589697360992432,0.348755180835724,-0.554955899715424,0.755244076251984,0.348755180835724,-0.554955899715424,0.755244076251984,0.204801753163338,-0.514702320098877,0.832548856735229,\r\n0.152228683233261,-0.59786731004715,0.787007570266724,0.204801753163338,-0.514702320098877,0.832548856735229,0.037371639162302,-0.487762749195099,0.872175872325897,0.152228683233261,-0.59786731004715,0.787007570266724,0.0507775880396366,-0.361944079399109,0.930815756320953,-0.0967972502112389,-0.388627648353577,0.916296184062958,0.037371639162302,-0.487762749195099,0.872175872325897,-0.271944135427475,-0.372416436672211,0.887328684329987,-0.0967972502112389,-0.388627648353577,0.916296184062958,-0.173127815127373,-0.255814403295517,0.951097071170807,0.594188988208771,-0.699383914470673,0.397242456674576,0.6632399559021,-0.670752823352814,0.331968694925308,0.731087446212769,-0.579987943172455,0.359339624643326,0.572678685188293,-0.683138489723206,0.45316743850708,0.594188988208771,-0.699383914470673,0.397242456674576,0.678353726863861,-0.575127482414246,0.457235783338547,-0.676679909229279,0.0300192292779684,0.735664963722229,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.50686776638031,-0.302413374185562,0.807236671447754,-0.364372372627258,-0.491858065128326,0.790764391422272,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.399892508983612,-0.456387519836426,0.794856131076813,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.553639352321625,-0.215287074446678,0.804446935653687,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.555498480796814,-0.100304156541824,0.825445532798767,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.553639352321625,-0.215287074446678,0.804446935653687,\r\n-0.523857414722443,0.49890860915184,0.690408051013947,-0.631051957607269,0.442671030759811,0.637036621570587,-0.577174782752991,0.436297655105591,0.6902996301651,-0.529776573181152,0.195684358477592,0.825254082679749,-0.631379008293152,0.176397547125816,0.755145192146301,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.504277408123016,0.315880626440048,0.80369371175766,-0.601071715354919,0.282114267349243,0.747746050357819,-0.529776573181152,0.195684358477592,0.825254082679749,-0.504277408123016,0.315880626440048,0.80369371175766,-0.477193474769592,0.399734497070313,0.782622873783112,-0.579309463500977,0.377046525478363,0.722659170627594,-0.477193474769592,0.399734497070313,0.782622873783112,-0.50067675113678,0.451377749443054,0.738634407520294,-0.579309463500977,0.377046525478363,0.722659170627594,-0.50067675113678,0.451377749443054,0.738634407520294,-0.523857414722443,0.49890860915184,0.690408051013947,-0.577174782752991,0.436297655105591,0.6902996301651,-0.523857414722443,0.49890860915184,0.690408051013947,-0.5713991522789,0.513698935508728,0.640012562274933,-0.631051957607269,0.442671030759811,0.637036621570587,-0.487113237380981,0.570039868354797,0.661645829677582,-0.57852429151535,0.547211647033691,0.604870915412903,-0.5713991522789,0.513698935508728,0.640012562274933,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.271944135427475,-0.372416436672211,0.887328684329987,-0.173127815127373,-0.255814403295517,0.951097071170807,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.765358567237854,-0.500748991966248,0.404322355985641,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.679946899414063,-0.45920118689537,0.57166975736618,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.456257194280624,-0.444031208753586,0.771145582199097,\r\n-0.54664158821106,-0.490731418132782,0.678502380847931,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.420413136482239,-0.41815596818924,0.805231809616089,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.299535185098648,-0.255392611026764,0.91926771402359,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.383299976587296,-0.391946256160736,0.836336731910706,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.238861963152885,-0.169863983988762,0.956081092357636,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.317623972892761,-0.0618817359209061,0.946195304393768,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.265586793422699,0.0171879176050425,0.963933706283569,-0.316372871398926,0.293816864490509,0.901986598968506,-0.195349723100662,0.237663000822067,0.951501309871674,-0.170585066080093,0.371656179428101,0.912563562393188,-0.115707516670227,0.102764457464218,0.987953007221222,-0.195349723100662,0.237663000822067,0.951501309871674,-0.283735722303391,0.144951328635216,0.947883486747742,\r\n-0.115707516670227,0.102764457464218,0.987953007221222,-0.283735722303391,0.144951328635216,0.947883486747742,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.287048310041428,0.375617951154709,0.88120049238205,-0.316372871398926,0.293816864490509,0.901986598968506,-0.170585066080093,0.371656179428101,0.912563562393188,0.731087446212769,-0.579987943172455,0.359339624643326,0.780604600906372,-0.532097578048706,0.327915459871292,0.819913685321808,-0.419792413711548,0.389250367879868,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.701887249946594,-0.481283873319626,0.525090456008911,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.85627806186676,-0.506259620189667,-0.102415263652802,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.743267834186554,-0.617993950843811,0.256195396184921,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.702935457229614,-0.658907115459442,0.267811506986618,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.702935457229614,-0.658907115459442,0.267811506986618,\r\n-0.636615991592407,-0.734087586402893,0.236294999718666,-0.734091937541962,-0.633768022060394,0.243817463517189,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.923260092735291,-0.381357848644257,0.046442374587059,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.897485792636871,-0.436534851789474,0.0629006251692772,-0.923260092735291,-0.381357848644257,0.046442374587059,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.864194989204407,-0.468484848737717,0.183545306324959,-0.889172434806824,-0.414977192878723,0.192785561084747,-0.864194989204407,-0.468484848737717,0.183545306324959,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.742680251598358,-0.574352502822876,0.344303667545319,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.749107718467712,-0.512702882289886,0.419491618871689,0.572678685188293,-0.683138489723206,0.45316743850708,0.576134204864502,-0.562164962291718,0.59332937002182,0.462355136871338,-0.662181675434113,0.589697360992432,0.348755180835724,-0.554955899715424,0.755244076251984,0.462355136871338,-0.662181675434113,0.589697360992432,0.576134204864502,-0.562164962291718,0.59332937002182,0.348755180835724,-0.554955899715424,0.755244076251984,0.263305246829987,-0.390896707773209,0.881969392299652,0.204801753163338,-0.514702320098877,0.832548856735229,0.263305246829987,-0.390896707773209,0.881969392299652,0.037371639162302,-0.487762749195099,0.872175872325897,0.204801753163338,-0.514702320098877,0.832548856735229,-0.0967972502112389,-0.388627648353577,0.916296184062958,0.0507775880396366,-0.361944079399109,0.930815756320953,\r\n-0.0601605251431465,-0.266809284687042,0.961869716644287,0.263305246829987,-0.390896707773209,0.881969392299652,0.0507775880396366,-0.361944079399109,0.930815756320953,0.037371639162302,-0.487762749195099,0.872175872325897,-0.0601605251431465,-0.266809284687042,0.961869716644287,-0.173127815127373,-0.255814403295517,0.951097071170807,-0.0967972502112389,-0.388627648353577,0.916296184062958,0.594188988208771,-0.699383914470673,0.397242456674576,0.731087446212769,-0.579987943172455,0.359339624643326,0.678353726863861,-0.575127482414246,0.457235783338547,0.572678685188293,-0.683138489723206,0.45316743850708,0.678353726863861,-0.575127482414246,0.457235783338547,0.576134204864502,-0.562164962291718,0.59332937002182,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.548067808151245,-0.113690249621868,0.828671216964722,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.416490495204926,-0.402503281831741,0.815185010433197,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.60769385099411,-0.145718067884445,0.780688345432281,-0.555498480796814,-0.100304156541824,0.825445532798767,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.553639352321625,-0.215287074446678,0.804446935653687,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.555498480796814,-0.100304156541824,0.825445532798767,-0.493840128183365,-0.203843966126442,0.845322072505951,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.529776573181152,0.195684358477592,0.825254082679749,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.413688629865646,0.0994167700409889,0.904973983764648,\r\n-0.350718349218369,0.244014278054237,0.904131352901459,-0.504277408123016,0.315880626440048,0.80369371175766,-0.529776573181152,0.195684358477592,0.825254082679749,-0.361558437347412,0.355336248874664,0.861981213092804,-0.477193474769592,0.399734497070313,0.782622873783112,-0.504277408123016,0.315880626440048,0.80369371175766,-0.377598702907562,0.451328486204147,0.808530628681183,-0.50067675113678,0.451377749443054,0.738634407520294,-0.477193474769592,0.399734497070313,0.782622873783112,-0.420618027448654,0.507576584815979,0.751961648464203,-0.523857414722443,0.49890860915184,0.690408051013947,-0.50067675113678,0.451377749443054,0.738634407520294,-0.523857414722443,0.49890860915184,0.690408051013947,-0.487113237380981,0.570039868354797,0.661645829677582,-0.5713991522789,0.513698935508728,0.640012562274933,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.3325574696064,-0.234743729233742,0.913400650024414,-0.173127815127373,-0.255814403295517,0.951097071170807,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.74715381860733,-0.475012958049774,0.464891076087952,-0.749107718467712,-0.512702882289886,0.419491618871689,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.456257194280624,-0.444031208753586,0.771145582199097,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.54664158821106,-0.490731418132782,0.678502380847931,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.620460569858551,-0.529958963394165,0.578076064586639,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.357235282659531,-0.46213760972023,0.811672151088715,\r\n-0.420413136482239,-0.41815596818924,0.805231809616089,-0.030667407438159,-0.269868910312653,0.962408542633057,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.030667407438159,-0.269868910312653,0.962408542633057,-0.22968415915966,-0.348241597414017,0.908830523490906,-0.146450400352478,-0.228753283619881,0.962405383586884,-0.030667407438159,-0.269868910312653,0.962408542633057,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.0818108841776848,-0.193274155259132,0.977728009223938,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.105664402246475,-0.179700061678886,0.97803008556366,-0.181261658668518,-0.120888881385326,0.975976407527924,-0.0818108841776848,-0.193274155259132,0.977728009223938,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.0762558132410049,0.213511079549789,0.973959982395172,-0.170585066080093,0.371656179428101,0.912563562393188,-0.195349723100662,0.237663000822067,0.951501309871674,-0.195349723100662,0.237663000822067,0.951501309871674,-0.115707516670227,0.102764457464218,0.987953007221222,-0.0762558132410049,0.213511079549789,0.973959982395172,0.0513606369495392,-0.059703666716814,0.996893882751465,-0.115707516670227,0.102764457464218,0.987953007221222,-0.148525774478912,-0.0547506734728813,0.987391710281372,0.834701478481293,-0.411269217729568,0.366239041090012,0.819913685321808,-0.419792413711548,0.389250367879868,0.780604600906372,-0.532097578048706,0.327915459871292,0.819913685321808,-0.419792413711548,0.389250367879868,0.678353726863861,-0.575127482414246,0.457235783338547,0.731087446212769,-0.579987943172455,0.359339624643326,\r\n-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.884692966938019,-0.418374985456467,-0.205622464418411,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.810932278633118,-0.58038717508316,0.0744280964136124,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.625397384166718,-0.723828136920929,0.291463226079941,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.767191648483276,-0.574089705944061,0.286072880029678,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.702935457229614,-0.658907115459442,0.267811506986618,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.888942778110504,-0.455443978309631,0.0484920255839825,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.923260092735291,-0.381357848644257,0.046442374587059,-0.923260092735291,-0.381357848644257,0.046442374587059,\r\n-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.864194989204407,-0.468484848737717,0.183545306324959,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.817855715751648,-0.50813364982605,0.270022362470627,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.676341891288757,-0.663127481937408,0.32066085934639,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.694767117500305,-0.511697113513947,0.505434989929199,-0.654336869716644,-0.619376957416534,0.433837860822678,0.348755180835724,-0.554955899715424,0.755244076251984,0.576134204864502,-0.562164962291718,0.59332937002182,0.501147270202637,-0.425717055797577,0.753403186798096,0.263305246829987,-0.390896707773209,0.881969392299652,0.348755180835724,-0.554955899715424,0.755244076251984,0.501147270202637,-0.425717055797577,0.753403186798096,0.0507775880396366,-0.361944079399109,0.930815756320953,0.145208850502968,-0.194618001580238,0.970071196556091,-0.0601605251431465,-0.266809284687042,0.961869716644287,0.263305246829987,-0.390896707773209,0.881969392299652,0.145208850502968,-0.194618001580238,0.970071196556091,0.0507775880396366,-0.361944079399109,0.930815756320953,-0.0601605251431465,-0.266809284687042,0.961869716644287,-0.0638425648212433,-0.109709732234478,0.991911172866821,-0.173127815127373,-0.255814403295517,0.951097071170807,0.726185083389282,-0.442039966583252,0.526550829410553,0.576134204864502,-0.562164962291718,0.59332937002182,0.678353726863861,-0.575127482414246,0.457235783338547,-0.547991991043091,0.0514636859297752,0.834898889064789,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.413688629865646,0.0994167700409889,0.904973983764648,-0.331889152526855,-0.293083101511002,0.896633565425873,-0.152512535452843,-0.2858065366745,0.946073055267334,\r\n-0.334692895412445,-0.10985854268074,0.935901522636414,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.276288002729416,-0.429793536663055,0.859617531299591,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.555498480796814,-0.100304156541824,0.825445532798767,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.350718349218369,0.244014278054237,0.904131352901459,-0.529776573181152,0.195684358477592,0.825254082679749,-0.413688629865646,0.0994167700409889,0.904973983764648,-0.504277408123016,0.315880626440048,0.80369371175766,-0.350718349218369,0.244014278054237,0.904131352901459,-0.361558437347412,0.355336248874664,0.861981213092804,-0.377598702907562,0.451328486204147,0.808530628681183,-0.477193474769592,0.399734497070313,0.782622873783112,-0.361558437347412,0.355336248874664,0.861981213092804,-0.420618027448654,0.507576584815979,0.751961648464203,-0.50067675113678,0.451377749443054,0.738634407520294,-0.377598702907562,0.451328486204147,0.808530628681183,-0.43511974811554,0.550462901592255,0.712503492832184,-0.523857414722443,0.49890860915184,0.690408051013947,-0.420618027448654,0.507576584815979,0.751961648464203,-0.487113237380981,0.570039868354797,0.661645829677582,-0.523857414722443,0.49890860915184,0.690408051013947,-0.43511974811554,0.550462901592255,0.712503492832184,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.173127815127373,-0.255814403295517,0.951097071170807,-0.0638425648212433,-0.109709732234478,0.991911172866821,-0.553600907325745,-0.6282759308815,0.546621561050415,\r\n-0.620460569858551,-0.529958963394165,0.578076064586639,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.47673287987709,-0.649887204170227,0.591922461986542,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.25197097659111,-0.444901674985886,0.859402716159821,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.0308045893907547,-0.356787860393524,0.933677315711975,0.104095764458179,-0.304701924324036,0.946742117404938,-0.030667407438159,-0.269868910312653,0.962408542633057,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.030667407438159,-0.269868910312653,0.962408542633057,0.0648316517472267,-0.258780956268311,0.963757812976837,-0.105664402246475,-0.179700061678886,0.97803008556366,0.0648316517472267,-0.258780956268311,0.963757812976837,-0.0818108841776848,-0.193274155259132,0.977728009223938,-0.105664402246475,-0.179700061678886,0.97803008556366,0.00979139003902674,-0.196332931518555,0.980488359928131,-0.148525774478912,-0.0547506734728813,0.987391710281372,-0.0818108841776848,-0.193274155259132,0.977728009223938,0.00173809041734785,0.0180379059165716,0.999835789203644,-0.0762558132410049,0.213511079549789,0.973959982395172,\r\n-0.115707516670227,0.102764457464218,0.987953007221222,0.0513606369495392,-0.059703666716814,0.996893882751465,0.00173809041734785,0.0180379059165716,0.999835789203644,-0.115707516670227,0.102764457464218,0.987953007221222,-0.148525774478912,-0.0547506734728813,0.987391710281372,0.00979139003902674,-0.196332931518555,0.980488359928131,0.0513606369495392,-0.059703666716814,0.996893882751465,0.834701478481293,-0.411269217729568,0.366239041090012,0.871392548084259,-0.301381886005402,0.387096762657166,0.819913685321808,-0.419792413711548,0.389250367879868,0.819913685321808,-0.419792413711548,0.389250367879868,0.726185083389282,-0.442039966583252,0.526550829410553,0.678353726863861,-0.575127482414246,0.457235783338547,-0.833587288856506,-0.487493574619293,-0.259773224592209,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.838372349739075,-0.539483308792114,-0.0780353993177414,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.822572529315948,-0.566470801830292,0.0498522222042084,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.865390479564667,-0.488686710596085,0.110835678875446,-0.893984436988831,-0.442797690629959,0.0687157586216927,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.678632736206055,-0.693777203559875,0.241102948784828,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.625397384166718,-0.723828136920929,0.291463226079941,\r\n-0.676341891288757,-0.663127481937408,0.32066085934639,-0.625397384166718,-0.723828136920929,0.291463226079941,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.72236967086792,-0.642044067382813,0.256829559803009,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.923260092735291,-0.381357848644257,0.046442374587059,-0.893689036369324,-0.438991904258728,0.0927686914801598,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.64911550283432,-0.750481128692627,0.124205328524113,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.654336869716644,-0.619376957416534,0.433837860822678,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.654336869716644,-0.619376957416534,0.433837860822678,0.645314753055573,-0.433315575122833,0.629131376743317,0.501147270202637,-0.425717055797577,0.753403186798096,0.576134204864502,-0.562164962291718,0.59332937002182,0.263305246829987,-0.390896707773209,0.881969392299652,0.501147270202637,-0.425717055797577,0.753403186798096,0.491076439619064,-0.256862103939056,0.832385540008545,-0.0638425648212433,-0.109709732234478,0.991911172866821,-0.0601605251431465,-0.266809284687042,0.961869716644287,0.145208850502968,-0.194618001580238,0.970071196556091,0.145208850502968,-0.194618001580238,0.970071196556091,\r\n0.263305246829987,-0.390896707773209,0.881969392299652,0.313274800777435,-0.215121150016785,0.924976587295532,0.645314753055573,-0.433315575122833,0.629131376743317,0.576134204864502,-0.562164962291718,0.59332937002182,0.726185083389282,-0.442039966583252,0.526550829410553,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.413688629865646,0.0994167700409889,0.904973983764648,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.12494632601738,-0.235340684652328,0.963848054409027,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.370857894420624,-0.29189395904541,0.881624758243561,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.535787582397461,-0.109192371368408,0.837262511253357,-0.413688629865646,0.0994167700409889,0.904973983764648,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.350718349218369,0.244014278054237,0.904131352901459,-0.171518445014954,0.349855840206146,0.920968055725098,-0.361558437347412,0.355336248874664,0.861981213092804,-0.350718349218369,0.244014278054237,0.904131352901459,-0.377598702907562,0.451328486204147,0.808530628681183,-0.361558437347412,0.355336248874664,0.861981213092804,-0.255761116743088,0.431224644184113,0.865234911441803,-0.292185097932816,0.512604355812073,0.807381331920624,-0.420618027448654,0.507576584815979,0.751961648464203,-0.377598702907562,0.451328486204147,0.808530628681183,-0.339658260345459,0.564693689346313,0.752165615558624,-0.43511974811554,0.550462901592255,0.712503492832184,-0.420618027448654,0.507576584815979,0.751961648464203,-0.487113237380981,0.570039868354797,0.661645829677582,-0.43511974811554,0.550462901592255,0.712503492832184,-0.392163425683975,0.604910552501678,0.69303023815155,\r\n-0.245484337210655,-0.112975053489208,0.962794899940491,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.43306827545166,-0.0791271924972534,0.897881209850311,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.245484337210655,-0.112975053489208,0.962794899940491,-0.0638425648212433,-0.109709732234478,0.991911172866821,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.622179627418518,-0.596222519874573,0.507357060909271,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.423127114772797,-0.509684443473816,0.74912291765213,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.371430814266205,-0.46820080280304,0.801764965057373,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.50452446937561,-0.581920504570007,0.637827098369598,-0.47673287987709,-0.649887204170227,0.591922461986542,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.47673287987709,-0.649887204170227,0.591922461986542,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.357235282659531,-0.46213760972023,0.811672151088715,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.157282888889313,-0.302425414323807,0.940106809139252,\r\n-0.0308045893907547,-0.356787860393524,0.933677315711975,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.0308045893907547,-0.356787860393524,0.933677315711975,-0.0197731908410788,-0.314846187829971,0.948936700820923,-0.030667407438159,-0.269868910312653,0.962408542633057,0.104095764458179,-0.304701924324036,0.946742117404938,0.0648316517472267,-0.258780956268311,0.963757812976837,0.104095764458179,-0.304701924324036,0.946742117404938,-0.0357704497873783,-0.389571070671082,0.920301496982574,-0.0197731908410788,-0.314846187829971,0.948936700820923,0.00979139003902674,-0.196332931518555,0.980488359928131,-0.0818108841776848,-0.193274155259132,0.977728009223938,0.0648316517472267,-0.258780956268311,0.963757812976837,0.0513606369495392,-0.059703666716814,0.996893882751465,0.12407760322094,-0.0370609685778618,0.991580128669739,0.00173809041734785,0.0180379059165716,0.999835789203644,0.00979139003902674,-0.196332931518555,0.980488359928131,0.166765734553337,-0.216107621788979,0.962022125720978,0.0513606369495392,-0.059703666716814,0.996893882751465,0.871392548084259,-0.301381886005402,0.387096762657166,0.883562982082367,-0.268495827913284,0.383700847625732,0.819913685321808,-0.419792413711548,0.389250367879868,0.819913685321808,-0.419792413711548,0.389250367879868,0.820976614952087,-0.279739141464233,0.497738271951675,0.726185083389282,-0.442039966583252,0.526550829410553,-0.833587288856506,-0.487493574619293,-0.259773224592209,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.833587288856506,-0.487493574619293,-0.259773224592209,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.789113402366638,-0.492156267166138,-0.367535203695297,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.847674012184143,-0.505112290382385,-0.162204325199127,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.805641293525696,-0.584452927112579,-0.0967301726341248,\r\n-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.92130309343338,-0.387558907270432,0.0316003002226353,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.555925905704498,-0.773561179637909,0.304219186306,-0.625397384166718,-0.723828136920929,0.291463226079941,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.625397384166718,-0.723828136920929,0.291463226079941,-0.555925905704498,-0.773561179637909,0.304219186306,-0.66113406419754,-0.704635739326477,0.257662653923035,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.636615991592407,-0.734087586402893,0.236294999718666,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.64911550283432,-0.750481128692627,0.124205328524113,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.6983762383461,-0.690476059913635,0.188449621200562,-0.64911550283432,-0.750481128692627,0.124205328524113,-0.5965616106987,-0.792557239532471,0.12636137008667,\r\n-0.587914109230042,-0.714964330196381,0.378395140171051,-0.519168138504028,-0.742781817913055,0.422775864601135,-0.554613769054413,-0.683089196681976,0.475176304578781,0.645314753055573,-0.433315575122833,0.629131376743317,0.706918597221375,-0.271609157323837,0.653065383434296,0.501147270202637,-0.425717055797577,0.753403186798096,0.491076439619064,-0.256862103939056,0.832385540008545,0.501147270202637,-0.425717055797577,0.753403186798096,0.706918597221375,-0.271609157323837,0.653065383434296,0.491076439619064,-0.256862103939056,0.832385540008545,0.313274800777435,-0.215121150016785,0.924976587295532,0.263305246829987,-0.390896707773209,0.881969392299652,0.144972771406174,-0.0634880214929581,0.987396597862244,-0.0638425648212433,-0.109709732234478,0.991911172866821,0.145208850502968,-0.194618001580238,0.970071196556091,0.145208850502968,-0.194618001580238,0.970071196556091,0.313274800777435,-0.215121150016785,0.924976587295532,0.309022545814514,-0.0746906474232674,0.948117196559906,0.645314753055573,-0.433315575122833,0.629131376743317,0.726185083389282,-0.442039966583252,0.526550829410553,0.706918597221375,-0.271609157323837,0.653065383434296,-0.124251581728458,-0.10856719315052,0.986293375492096,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.12494632601738,-0.235340684652328,0.963848054409027,-0.152512535452843,-0.2858065366745,0.946073055267334,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.12494632601738,-0.235340684652328,0.963848054409027,-0.124251581728458,-0.10856719315052,0.986293375492096,-0.334692895412445,-0.10985854268074,0.935901522636414,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.234522596001625,-0.312319934368134,0.920573353767395,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.152512535452843,-0.2858065366745,0.946073055267334,-0.171224728226662,-0.187295243144035,0.967265427112579,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.43306827545166,-0.0791271924972534,0.897881209850311,\r\n-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.135216802358627,0.221956327557564,0.965635359287262,-0.350718349218369,0.244014278054237,0.904131352901459,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.171518445014954,0.349855840206146,0.920968055725098,-0.255761116743088,0.431224644184113,0.865234911441803,-0.361558437347412,0.355336248874664,0.861981213092804,-0.135216802358627,0.221956327557564,0.965635359287262,-0.171518445014954,0.349855840206146,0.920968055725098,-0.350718349218369,0.244014278054237,0.904131352901459,-0.292185097932816,0.512604355812073,0.807381331920624,-0.377598702907562,0.451328486204147,0.808530628681183,-0.255761116743088,0.431224644184113,0.865234911441803,-0.339658260345459,0.564693689346313,0.752165615558624,-0.420618027448654,0.507576584815979,0.751961648464203,-0.292185097932816,0.512604355812073,0.807381331920624,-0.392163425683975,0.604910552501678,0.69303023815155,-0.43511974811554,0.550462901592255,0.712503492832184,-0.339658260345459,0.564693689346313,0.752165615558624,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.302276909351349,0.00480207521468401,0.953207969665527,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.0638425648212433,-0.109709732234478,0.991911172866821,0.0443733222782612,0.0214340854436159,0.998784899711609,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.553600907325745,-0.6282759308815,0.546621561050415,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.357116848230362,-0.52024894952774,0.775763094425201,\r\n-0.363907873630524,-0.506198525428772,0.781878471374512,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.47673287987709,-0.649887204170227,0.591922461986542,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.374119222164154,-0.47988697886467,0.793563604354858,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.363417774438858,-0.45724418759346,0.811698913574219,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.286394089460373,-0.426803737878799,0.857797682285309,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.157282888889313,-0.302425414323807,0.940106809139252,-0.156197801232338,-0.387182533740997,0.908675849437714,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.157282888889313,-0.302425414323807,0.940106809139252,-0.0197731908410788,-0.314846187829971,0.948936700820923,-0.0308045893907547,-0.356787860393524,0.933677315711975,0.0648316517472267,-0.258780956268311,0.963757812976837,0.104095764458179,-0.304701924324036,0.946742117404938,0.0301940031349659,-0.228997141122818,0.97295868396759,0.104095764458179,-0.304701924324036,0.946742117404938,-0.0197731908410788,-0.314846187829971,0.948936700820923,0.0717936754226685,-0.279247671365738,0.957531332969666,0.00979139003902674,-0.196332931518555,0.980488359928131,0.0648316517472267,-0.258780956268311,0.963757812976837,0.166765734553337,-0.216107621788979,0.962022125720978,0.0513606369495392,-0.059703666716814,0.996893882751465,0.0790323987603188,-0.132623955607414,0.988010466098785,0.12407760322094,-0.0370609685778618,0.991580128669739,0.12407760322094,-0.0370609685778618,0.991580128669739,0.0790323987603188,-0.132623955607414,0.988010466098785,0.00173809041734785,0.0180379059165716,0.999835789203644,\r\n0.0513606369495392,-0.059703666716814,0.996893882751465,0.166765734553337,-0.216107621788979,0.962022125720978,0.0790323987603188,-0.132623955607414,0.988010466098785,0.883562982082367,-0.268495827913284,0.383700847625732,0.871392548084259,-0.301381886005402,0.387096762657166,0.910344481468201,-0.191994816064835,0.366620868444443,0.819913685321808,-0.419792413711548,0.389250367879868,0.883562982082367,-0.268495827913284,0.383700847625732,0.820976614952087,-0.279739141464233,0.497738271951675,0.820976614952087,-0.279739141464233,0.497738271951675,0.706918597221375,-0.271609157323837,0.653065383434296,0.726185083389282,-0.442039966583252,0.526550829410553,-0.833587288856506,-0.487493574619293,-0.259773224592209,-0.789113402366638,-0.492156267166138,-0.367535203695297,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.757251501083374,-0.631178140640259,-0.167881339788437,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.851115643978119,-0.524435818195343,0.0238552615046501,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.894357442855835,-0.445552170276642,0.0400991961359978,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.603525221347809,-0.755610704421997,0.254577189683914,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.555925905704498,-0.773561179637909,0.304219186306,-0.598373770713806,-0.764189183712006,0.240756243467331,-0.587914109230042,-0.714964330196381,0.378395140171051,\r\n-0.555925905704498,-0.773561179637909,0.304219186306,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.618807375431061,-0.759130299091339,0.201986134052277,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.872598111629486,-0.4880111515522,0.0204280279576778,-0.775129497051239,-0.620938897132874,0.11665802448988,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.64911550283432,-0.750481128692627,0.124205328524113,-0.519168138504028,-0.742781817913055,0.422775864601135,-0.587914109230042,-0.714964330196381,0.378395140171051,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.519168138504028,-0.742781817913055,0.422775864601135,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.554613769054413,-0.683089196681976,0.475176304578781,0.491076439619064,-0.256862103939056,0.832385540008545,0.706918597221375,-0.271609157323837,0.653065383434296,0.627708733081818,-0.052860215306282,0.776651382446289,0.491076439619064,-0.256862103939056,0.832385540008545,0.443843275308609,-0.0941784903407097,0.891141653060913,0.313274800777435,-0.215121150016785,0.924976587295532,0.0443733222782612,0.0214340854436159,0.998784899711609,-0.0638425648212433,-0.109709732234478,0.991911172866821,0.144972771406174,-0.0634880214929581,0.987396597862244,0.144972771406174,-0.0634880214929581,0.987396597862244,0.145208850502968,-0.194618001580238,0.970071196556091,\r\n0.309022545814514,-0.0746906474232674,0.948117196559906,0.443843275308609,-0.0941784903407097,0.891141653060913,0.309022545814514,-0.0746906474232674,0.948117196559906,0.313274800777435,-0.215121150016785,0.924976587295532,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.124251581728458,-0.10856719315052,0.986293375492096,0.0239312332123518,0.0429672077298164,0.998789668083191,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.124251581728458,-0.10856719315052,0.986293375492096,-0.12494632601738,-0.235340684652328,0.963848054409027,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.38462820649147,-0.150681063532829,0.910689949989319,-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.0433867573738098,-0.125287503004074,0.991171300411224,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.171224728226662,-0.187295243144035,0.967265427112579,0.0239312332123518,0.0429672077298164,0.998789668083191,-0.135216802358627,0.221956327557564,0.965635359287262,-0.234313935041428,0.0887792780995369,0.968098700046539,-0.147817105054855,0.472872048616409,0.868643760681152,-0.255761116743088,0.431224644184113,0.865234911441803,-0.171518445014954,0.349855840206146,0.920968055725098,-0.135216802358627,0.221956327557564,0.965635359287262,-0.00230965577065945,0.303996235132217,0.952670395374298,-0.171518445014954,0.349855840206146,0.920968055725098,-0.147817105054855,0.472872048616409,0.868643760681152,-0.292185097932816,0.512604355812073,0.807381331920624,-0.255761116743088,0.431224644184113,0.865234911441803,-0.339658260345459,0.564693689346313,0.752165615558624,-0.292185097932816,0.512604355812073,0.807381331920624,-0.190843164920807,0.561412990093231,0.805229246616364,-0.392163425683975,0.604910552501678,0.69303023815155,-0.339658260345459,0.564693689346313,0.752165615558624,-0.26858925819397,0.619090855121613,0.737960815429688,-0.0445527620613575,0.0934887677431107,0.994622945785522,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.145898938179016,0.0358028300106525,0.988651275634766,\r\n-0.172514498233795,0.00574505235999823,0.984990179538727,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.340462893247604,-0.0286807380616665,0.939820408821106,-0.145898938179016,0.0358028300106525,0.988651275634766,0.0443733222782612,0.0214340854436159,0.998784899711609,-0.00716648111119866,0.131815925240517,0.991248250007629,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.554613769054413,-0.683089196681976,0.475176304578781,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.378649085760117,-0.583744943141937,0.718238472938538,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.337954699993134,-0.565578401088715,0.752268254756927,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.357116848230362,-0.52024894952774,0.775763094425201,-0.337954699993134,-0.565578401088715,0.752268254756927,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.157282888889313,-0.302425414323807,0.940106809139252,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.157282888889313,-0.302425414323807,0.940106809139252,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.0197731908410788,-0.314846187829971,0.948936700820923,0.104095764458179,-0.304701924324036,0.946742117404938,\r\n0.0717936754226685,-0.279247671365738,0.957531332969666,0.0301940031349659,-0.228997141122818,0.97295868396759,0.0648316517472267,-0.258780956268311,0.963757812976837,0.0301940031349659,-0.228997141122818,0.97295868396759,0.118066646158695,-0.260304689407349,0.958280563354492,0.0717936754226685,-0.279247671365738,0.957531332969666,-0.0197731908410788,-0.314846187829971,0.948936700820923,-0.0978652164340019,-0.212386697530746,0.97227269411087,0.166765734553337,-0.216107621788979,0.962022125720978,0.0648316517472267,-0.258780956268311,0.963757812976837,0.118066646158695,-0.260304689407349,0.958280563354492,0.166765734553337,-0.216107621788979,0.962022125720978,0.0931530594825745,-0.173983111977577,0.980332732200623,0.0790323987603188,-0.132623955607414,0.988010466098785,0.910344481468201,-0.191994816064835,0.366620868444443,0.895018339157104,-0.143093004822731,0.422452837228775,0.883562982082367,-0.268495827913284,0.383700847625732,0.895018339157104,-0.143093004822731,0.422452837228775,0.820976614952087,-0.279739141464233,0.497738271951675,0.883562982082367,-0.268495827913284,0.383700847625732,0.820976614952087,-0.279739141464233,0.497738271951675,0.836142361164093,-0.113235332071781,0.53669685125351,0.706918597221375,-0.271609157323837,0.653065383434296,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.789113402366638,-0.492156267166138,-0.367535203695297,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.757251501083374,-0.631178140640259,-0.167881339788437,-0.757251501083374,-0.631178140640259,-0.167881339788437,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.805641293525696,-0.584452927112579,-0.0967301726341248,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.690264284610748,-0.717340111732483,-0.0946478024125099,\r\n-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.555925905704498,-0.773561179637909,0.304219186306,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.555925905704498,-0.773561179637909,0.304219186306,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.615061044692993,-0.760603070259094,0.207804620265961,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.640411853790283,-0.718559920787811,0.271190226078033,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.584328830242157,-0.808474659919739,0.070202149450779,-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.823562383651733,-0.566445827484131,-0.0297311898320913,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.623326182365417,-0.778140723705292,-0.077209509909153,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.584328830242157,-0.808474659919739,0.070202149450779,-0.5965616106987,-0.792557239532471,0.12636137008667,-0.519168138504028,-0.742781817913055,0.422775864601135,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.460781067609787,-0.776402473449707,0.429976642131805,\r\n-0.519168138504028,-0.742781817913055,0.422775864601135,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.456402659416199,-0.738775253295898,0.495890736579895,0.762473106384277,-0.0615700595080853,0.644083619117737,0.627708733081818,-0.052860215306282,0.776651382446289,0.706918597221375,-0.271609157323837,0.653065383434296,0.491076439619064,-0.256862103939056,0.832385540008545,0.627708733081818,-0.052860215306282,0.776651382446289,0.443843275308609,-0.0941784903407097,0.891141653060913,0.0443733222782612,0.0214340854436159,0.998784899711609,0.144972771406174,-0.0634880214929581,0.987396597862244,0.276803344488144,0.0339333675801754,0.960327208042145,0.309022545814514,-0.0746906474232674,0.948117196559906,0.276803344488144,0.0339333675801754,0.960327208042145,0.144972771406174,-0.0634880214929581,0.987396597862244,0.443843275308609,-0.0941784903407097,0.891141653060913,0.487014919519424,0.045863289386034,0.872188627719879,0.309022545814514,-0.0746906474232674,0.948117196559906,0.00719971535727382,-0.168947339057922,0.985598623752594,0.0239312332123518,0.0429672077298164,0.998789668083191,-0.124251581728458,-0.10856719315052,0.986293375492096,0.0557468794286251,-0.030850263312459,0.997968196868896,0.00719971535727382,-0.168947339057922,0.985598623752594,-0.0433867573738098,-0.125287503004074,0.991171300411224,-0.171224728226662,-0.187295243144035,0.967265427112579,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.0433867573738098,-0.125287503004074,0.991171300411224,0.107950896024704,0.193297192454338,0.975183427333832,-0.135216802358627,0.221956327557564,0.965635359287262,0.0239312332123518,0.0429672077298164,0.998789668083191,-0.147817105054855,0.472872048616409,0.868643760681152,-0.171518445014954,0.349855840206146,0.920968055725098,-0.0045491075143218,0.404240518808365,0.914641380310059,0.107950896024704,0.193297192454338,0.975183427333832,-0.00230965577065945,0.303996235132217,0.952670395374298,-0.135216802358627,0.221956327557564,0.965635359287262,-0.00230965577065945,0.303996235132217,0.952670395374298,\r\n-0.0045491075143218,0.404240518808365,0.914641380310059,-0.171518445014954,0.349855840206146,0.920968055725098,-0.190843164920807,0.561412990093231,0.805229246616364,-0.292185097932816,0.512604355812073,0.807381331920624,-0.147817105054855,0.472872048616409,0.868643760681152,-0.26858925819397,0.619090855121613,0.737960815429688,-0.339658260345459,0.564693689346313,0.752165615558624,-0.190843164920807,0.561412990093231,0.805229246616364,-0.172514498233795,0.00574505235999823,0.984990179538727,-0.0445527620613575,0.0934887677431107,0.994622945785522,0.0557468794286251,-0.030850263312459,0.997968196868896,-0.0445527620613575,0.0934887677431107,0.994622945785522,-0.145898938179016,0.0358028300106525,0.988651275634766,-0.00716648111119866,0.131815925240517,0.991248250007629,0.0443733222782612,0.0214340854436159,0.998784899711609,0.149658665060997,0.137174725532532,0.979175806045532,-0.00716648111119866,0.131815925240517,0.991248250007629,-0.462288647890091,-0.698408126831055,0.54636538028717,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.3182452917099,-0.652659773826599,0.687571883201599,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.337954699993134,-0.565578401088715,0.752268254756927,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.363907873630524,-0.506198525428772,0.781878471374512,-0.337954699993134,-0.565578401088715,0.752268254756927,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.3182452917099,-0.652659773826599,0.687571883201599,-0.341806381940842,-0.633483827114105,0.69416606426239,-0.402089446783066,-0.658522307872772,0.636138558387756,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.313369750976563,-0.440095514059067,0.84149581193924,\r\n-0.29954332113266,-0.580465614795685,0.757187783718109,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.313369750976563,-0.440095514059067,0.84149581193924,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.246471405029297,-0.317728489637375,0.915587425231934,-0.0978652164340019,-0.212386697530746,0.97227269411087,-0.0197731908410788,-0.314846187829971,0.948936700820923,-0.239264696836472,-0.254193931818008,0.937090039253235,0.0301940031349659,-0.228997141122818,0.97295868396759,0.0717936754226685,-0.279247671365738,0.957531332969666,-0.0978652164340019,-0.212386697530746,0.97227269411087,0.0301940031349659,-0.228997141122818,0.97295868396759,-0.0967063754796982,-0.168901309370995,0.980877220630646,0.118066646158695,-0.260304689407349,0.958280563354492,0.166765734553337,-0.216107621788979,0.962022125720978,0.118066646158695,-0.260304689407349,0.958280563354492,0.0931530594825745,-0.173983111977577,0.980332732200623,0.895018339157104,-0.143093004822731,0.422452837228775,0.910344481468201,-0.191994816064835,0.366620868444443,0.912645161151886,-0.0448464751243591,0.406284928321838,0.895018339157104,-0.143093004822731,0.422452837228775,0.836142361164093,-0.113235332071781,0.53669685125351,0.820976614952087,-0.279739141464233,0.497738271951675,0.762473106384277,-0.0615700595080853,0.644083619117737,0.706918597221375,-0.271609157323837,0.653065383434296,0.836142361164093,-0.113235332071781,0.53669685125351,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.783732295036316,-0.58032488822937,-0.221329033374786,-0.757251501083374,-0.631178140640259,-0.167881339788437,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.700837433338165,-0.688517034053802,-0.186470165848732,\r\n-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.761422753334045,-0.64042055606842,-0.100482270121574,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.614861667156219,-0.690432488918304,0.381114065647125,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.528850317001343,-0.752353727817535,0.392786473035812,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.570673942565918,-0.761224389076233,0.308007508516312,-0.528850317001343,-0.752353727817535,0.392786473035812,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.462805956602097,-0.798093974590302,0.385819256305695,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.584328830242157,-0.808474659919739,0.070202149450779,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.623326182365417,-0.778140723705292,-0.077209509909153,-0.750545561313629,-0.660529136657715,-0.0195608753710985,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.623326182365417,-0.778140723705292,-0.077209509909153,-0.62214195728302,-0.782899856567383,-0.00264663528650999,\r\n-0.584328830242157,-0.808474659919739,0.070202149450779,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.506407201290131,-0.784738063812256,0.357404172420502,-0.462805956602097,-0.798093974590302,0.385819256305695,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.416835516691208,-0.784084916114807,0.459846496582031,-0.456402659416199,-0.738775253295898,0.495890736579895,0.762473106384277,-0.0615700595080853,0.644083619117737,0.735774099826813,0.135043144226074,0.663626134395599,0.627708733081818,-0.052860215306282,0.776651382446289,0.627708733081818,-0.052860215306282,0.776651382446289,0.487014919519424,0.045863289386034,0.872188627719879,0.443843275308609,-0.0941784903407097,0.891141653060913,0.0443733222782612,0.0214340854436159,0.998784899711609,0.276803344488144,0.0339333675801754,0.960327208042145,0.149658665060997,0.137174725532532,0.979175806045532,0.309022545814514,-0.0746906474232674,0.948117196559906,0.487014919519424,0.045863289386034,0.872188627719879,0.276803344488144,0.0339333675801754,0.960327208042145,0.0239312332123518,0.0429672077298164,0.998789668083191,0.00719971535727382,-0.168947339057922,0.985598623752594,0.0557468794286251,-0.030850263312459,0.997968196868896,-0.172514498233795,0.00574505235999823,0.984990179538727,0.0557468794286251,-0.030850263312459,0.997968196868896,-0.0433867573738098,-0.125287503004074,0.991171300411224,0.0239312332123518,0.0429672077298164,0.998789668083191,0.191861987113953,0.117176651954651,0.974401593208313,0.107950896024704,0.193297192454338,0.975183427333832,-0.147817105054855,0.472872048616409,0.868643760681152,-0.0045491075143218,0.404240518808365,0.914641380310059,-0.0245961304754019,0.509287178516388,0.860245048999786,0.107950896024704,0.193297192454338,0.975183427333832,0.171100243926048,0.306926637887955,0.936226844787598,-0.00230965577065945,0.303996235132217,0.952670395374298,-0.0045491075143218,0.404240518808365,0.914641380310059,-0.00230965577065945,0.303996235132217,0.952670395374298,\r\n0.171100243926048,0.306926637887955,0.936226844787598,-0.190843164920807,0.561412990093231,0.805229246616364,-0.147817105054855,0.472872048616409,0.868643760681152,-0.0245961304754019,0.509287178516388,0.860245048999786,-0.26858925819397,0.619090855121613,0.737960815429688,-0.190843164920807,0.561412990093231,0.805229246616364,-0.128338530659676,0.619668841362,0.774299383163452,0.0557468794286251,-0.030850263312459,0.997968196868896,-0.0445527620613575,0.0934887677431107,0.994622945785522,0.191861987113953,0.117176651954651,0.974401593208313,-0.00716648111119866,0.131815925240517,0.991248250007629,0.0633585825562477,0.187948286533356,0.980133175849915,-0.0445527620613575,0.0934887677431107,0.994622945785522,0.149658665060997,0.137174725532532,0.979175806045532,0.120810188353062,0.236802756786346,0.964017271995544,-0.00716648111119866,0.131815925240517,0.991248250007629,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.3182452917099,-0.652659773826599,0.687571883201599,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.3182452917099,-0.652659773826599,0.687571883201599,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.399369597434998,-0.714460670948029,0.574499547481537,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.199668914079666,-0.431614428758621,0.87968248128891,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.259437322616577,-0.355473101139069,0.897959351539612,\r\n-0.24959222972393,-0.264903753995895,0.931412696838379,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.0978652164340019,-0.212386697530746,0.97227269411087,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.259002268314362,-0.169405236840248,0.950904607772827,0.0301940031349659,-0.228997141122818,0.97295868396759,-0.0978652164340019,-0.212386697530746,0.97227269411087,-0.158832520246506,-0.138287380337715,0.977572858333588,0.0301940031349659,-0.228997141122818,0.97295868396759,-0.226490527391434,-0.117226220667362,0.966933310031891,-0.0967063754796982,-0.168901309370995,0.980877220630646,0.0931530594825745,-0.173983111977577,0.980332732200623,0.118066646158695,-0.260304689407349,0.958280563354492,-0.0967063754796982,-0.168901309370995,0.980877220630646,0.895018339157104,-0.143093004822731,0.422452837228775,0.912645161151886,-0.0448464751243591,0.406284928321838,0.881872534751892,0.0332776866853237,0.470311880111694,0.895018339157104,-0.143093004822731,0.422452837228775,0.881872534751892,0.0332776866853237,0.470311880111694,0.836142361164093,-0.113235332071781,0.53669685125351,0.762473106384277,-0.0615700595080853,0.644083619117737,0.836142361164093,-0.113235332071781,0.53669685125351,0.821882724761963,0.0516080446541309,0.567314028739929,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.618142366409302,-0.684585928916931,-0.386318504810333,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.700837433338165,-0.688517034053802,-0.186470165848732,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.644364476203918,-0.747079908847809,-0.163296759128571,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.676129162311554,-0.648112118244171,0.35042816400528,-0.665633976459503,-0.686978280544281,0.291534036397934,\r\n-0.614861667156219,-0.690432488918304,0.381114065647125,-0.614861667156219,-0.690432488918304,0.381114065647125,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.617806971073151,-0.699390053749084,0.359399408102036,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.528850317001343,-0.752353727817535,0.392786473035812,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.528850317001343,-0.752353727817535,0.392786473035812,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.50964766740799,-0.793367683887482,0.332906633615494,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.462805956602097,-0.798093974590302,0.385819256305695,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.612907111644745,-0.777989864349365,0.13811756670475,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.669961273670197,-0.718009531497955,0.188716888427734,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.697035312652588,-0.673354089260101,0.246446564793587,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.584328830242157,-0.808474659919739,0.070202149450779,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.623326182365417,-0.778140723705292,-0.077209509909153,-0.690264284610748,-0.717340111732483,-0.0946478024125099,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.621428072452545,-0.783156096935272,0.0222149733453989,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.623326182365417,-0.778140723705292,-0.077209509909153,\r\n-0.462805956602097,-0.798093974590302,0.385819256305695,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.460781067609787,-0.776402473449707,0.429976642131805,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.416835516691208,-0.784084916114807,0.459846496582031,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.456402659416199,-0.738775253295898,0.495890736579895,-0.416835516691208,-0.784084916114807,0.459846496582031,0.735774099826813,0.135043144226074,0.663626134395599,0.762473106384277,-0.0615700595080853,0.644083619117737,0.821882724761963,0.0516080446541309,0.567314028739929,0.735774099826813,0.135043144226074,0.663626134395599,0.624700963497162,0.0827643126249313,0.77646541595459,0.627708733081818,-0.052860215306282,0.776651382446289,0.627708733081818,-0.052860215306282,0.776651382446289,0.624700963497162,0.0827643126249313,0.77646541595459,0.487014919519424,0.045863289386034,0.872188627719879,0.149658665060997,0.137174725532532,0.979175806045532,0.276803344488144,0.0339333675801754,0.960327208042145,0.329406678676605,0.182467773556709,0.926389038562775,0.276803344488144,0.0339333675801754,0.960327208042145,0.487014919519424,0.045863289386034,0.872188627719879,0.480667680501938,0.140590757131577,0.865559160709381,0.0239312332123518,0.0429672077298164,0.998789668083191,0.0557468794286251,-0.030850263312459,0.997968196868896,0.191861987113953,0.117176651954651,0.974401593208313,0.107950896024704,0.193297192454338,0.975183427333832,0.191861987113953,0.117176651954651,0.974401593208313,0.291593253612518,0.189390793442726,0.937605679035187,-0.0245961304754019,0.509287178516388,0.860245048999786,-0.0045491075143218,0.404240518808365,0.914641380310059,0.0911461934447289,0.419932097196579,0.902966916561127,0.291593253612518,0.189390793442726,0.937605679035187,0.171100243926048,0.306926637887955,0.936226844787598,0.107950896024704,0.193297192454338,0.975183427333832,0.0911461934447289,0.419932097196579,0.902966916561127,-0.0045491075143218,0.404240518808365,0.914641380310059,\r\n0.171100243926048,0.306926637887955,0.936226844787598,-0.0245961304754019,0.509287178516388,0.860245048999786,-0.0528794340789318,0.570555865764618,0.819554507732391,-0.190843164920807,0.561412990093231,0.805229246616364,-0.190843164920807,0.561412990093231,0.805229246616364,-0.0528794340789318,0.570555865764618,0.819554507732391,-0.128338530659676,0.619668841362,0.774299383163452,0.191861987113953,0.117176651954651,0.974401593208313,-0.0445527620613575,0.0934887677431107,0.994622945785522,0.0633585825562477,0.187948286533356,0.980133175849915,-0.00716648111119866,0.131815925240517,0.991248250007629,0.120810188353062,0.236802756786346,0.964017271995544,0.0633585825562477,0.187948286533356,0.980133175849915,0.263229429721832,0.288531124591827,0.920575857162476,0.120810188353062,0.236802756786346,0.964017271995544,0.149658665060997,0.137174725532532,0.979175806045532,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.29876172542572,-0.607123672962189,0.736302971839905,-0.29954332113266,-0.580465614795685,0.757187783718109,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.357428908348084,-0.694320678710938,0.624630451202393,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.199668914079666,-0.431614428758621,0.87968248128891,-0.144187495112419,-0.461759924888611,0.875207185745239,-0.199668914079666,-0.431614428758621,0.87968248128891,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.207964897155762,-0.361314535140991,0.908956706523895,\r\n-0.24959222972393,-0.264903753995895,0.931412696838379,-0.259437322616577,-0.355473101139069,0.897959351539612,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.239264696836472,-0.254193931818008,0.937090039253235,-0.158832520246506,-0.138287380337715,0.977572858333588,-0.0978652164340019,-0.212386697530746,0.97227269411087,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.158832520246506,-0.138287380337715,0.977572858333588,-0.226490527391434,-0.117226220667362,0.966933310031891,0.0301940031349659,-0.228997141122818,0.97295868396759,0.873599290847778,0.122305244207382,0.471026182174683,0.881872534751892,0.0332776866853237,0.470311880111694,0.912645161151886,-0.0448464751243591,0.406284928321838,0.836142361164093,-0.113235332071781,0.53669685125351,0.881872534751892,0.0332776866853237,0.470311880111694,0.821882724761963,0.0516080446541309,0.567314028739929,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.618142366409302,-0.684585928916931,-0.386318504810333,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.618142366409302,-0.684585928916931,-0.386318504810333,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.679064214229584,-0.682795524597168,-0.269558757543564,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.614861667156219,-0.690432488918304,0.381114065647125,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.614861667156219,-0.690432488918304,0.381114065647125,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.46315398812294,-0.789117336273193,0.403462588787079,\r\n-0.528850317001343,-0.752353727817535,0.392786473035812,-0.541696727275848,-0.735371708869934,0.40717676281929,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.550321936607361,-0.728766620159149,0.407485812902451,-0.462805956602097,-0.798093974590302,0.385819256305695,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.740373849868774,-0.63999342918396,0.205559849739075,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.416835516691208,-0.784084916114807,0.459846496582031,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.416835516691208,-0.784084916114807,0.459846496582031,-0.343161702156067,-0.815247416496277,0.466488659381866,0.735774099826813,0.135043144226074,0.663626134395599,0.821882724761963,0.0516080446541309,0.567314028739929,0.81346994638443,0.172580942511559,0.5554119348526,\r\n0.613718092441559,0.183481112122536,0.767909228801727,0.624700963497162,0.0827643126249313,0.77646541595459,0.735774099826813,0.135043144226074,0.663626134395599,0.613718092441559,0.183481112122536,0.767909228801727,0.487014919519424,0.045863289386034,0.872188627719879,0.624700963497162,0.0827643126249313,0.77646541595459,0.480667680501938,0.140590757131577,0.865559160709381,0.329406678676605,0.182467773556709,0.926389038562775,0.276803344488144,0.0339333675801754,0.960327208042145,0.149658665060997,0.137174725532532,0.979175806045532,0.329406678676605,0.182467773556709,0.926389038562775,0.263229429721832,0.288531124591827,0.920575857162476,0.613718092441559,0.183481112122536,0.767909228801727,0.480667680501938,0.140590757131577,0.865559160709381,0.487014919519424,0.045863289386034,0.872188627719879,0.291593253612518,0.189390793442726,0.937605679035187,0.191861987113953,0.117176651954651,0.974401593208313,0.354935973882675,0.193676203489304,0.914609134197235,0.146824821829796,0.478576898574829,0.865682661533356,-0.0245961304754019,0.509287178516388,0.860245048999786,0.0911461934447289,0.419932097196579,0.902966916561127,0.382415354251862,0.261632144451141,0.886175453662872,0.171100243926048,0.306926637887955,0.936226844787598,0.291593253612518,0.189390793442726,0.937605679035187,0.235382437705994,0.382276743650436,0.893565595149994,0.0911461934447289,0.419932097196579,0.902966916561127,0.171100243926048,0.306926637887955,0.936226844787598,-0.0245961304754019,0.509287178516388,0.860245048999786,0.0738944858312607,0.534472048282623,0.841949641704559,-0.0528794340789318,0.570555865764618,0.819554507732391,-0.0528794340789318,0.570555865764618,0.819554507732391,0.0254380498081446,0.606053113937378,0.795017242431641,-0.128338530659676,0.619668841362,0.774299383163452,0.191861987113953,0.117176651954651,0.974401593208313,0.0633585825562477,0.187948286533356,0.980133175849915,0.241844266653061,0.251681357622147,0.937106013298035,0.241844266653061,0.251681357622147,0.937106013298035,0.0633585825562477,0.187948286533356,0.980133175849915,\r\n0.120810188353062,0.236802756786346,0.964017271995544,0.120810188353062,0.236802756786346,0.964017271995544,0.263229429721832,0.288531124591827,0.920575857162476,0.269461810588837,0.332709193229675,0.903711676597595,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.273383229970932,-0.682248830795288,0.678084135055542,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.279245764017105,-0.791422009468079,0.543758094310761,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.226855337619781,-0.515998005867004,0.826003968715668,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.144187495112419,-0.461759924888611,0.875207185745239,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.199668914079666,-0.431614428758621,0.87968248128891,-0.144187495112419,-0.461759924888611,0.875207185745239,-0.213565900921822,-0.301465690135956,0.929251253604889,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.250261634588242,-0.227919191122055,0.940968573093414,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.158832520246506,-0.138287380337715,0.977572858333588,-0.158832520246506,-0.138287380337715,0.977572858333588,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.226490527391434,-0.117226220667362,0.966933310031891,\r\n0.881872534751892,0.0332776866853237,0.470311880111694,0.873599290847778,0.122305244207382,0.471026182174683,0.81346994638443,0.172580942511559,0.5554119348526,0.821882724761963,0.0516080446541309,0.567314028739929,0.881872534751892,0.0332776866853237,0.470311880111694,0.81346994638443,0.172580942511559,0.5554119348526,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.618142366409302,-0.684585928916931,-0.386318504810333,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.658402442932129,-0.71470445394516,-0.236016154289246,-0.637981593608856,-0.759463548660278,-0.127257540822029,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.531970024108887,-0.777824521064758,0.334659099578857,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.727404236793518,-0.67886883020401,0.100099451839924,\r\n-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.727404236793518,-0.67886883020401,0.100099451839924,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.62214195728302,-0.782899856567383,-0.00264663528650999,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.667806506156921,-0.74246871471405,0.0526736378669739,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.612284719944,-0.787028312683105,-0.0754567161202431,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.419865489006042,-0.802262485027313,0.424367427825928,-0.371543288230896,-0.761818110942841,0.530649304389954,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.279245764017105,-0.791422009468079,0.543758094310761,0.81346994638443,0.172580942511559,0.5554119348526,0.708850145339966,0.307346731424332,0.634877383708954,0.735774099826813,0.135043144226074,0.663626134395599,0.613718092441559,0.183481112122536,0.767909228801727,0.735774099826813,0.135043144226074,0.663626134395599,0.630283653736115,0.302289426326752,0.715096771717072,0.480667680501938,0.140590757131577,0.865559160709381,0.481343299150467,0.286341041326523,0.828442752361298,0.329406678676605,0.182467773556709,0.926389038562775,0.481343299150467,0.286341041326523,0.828442752361298,0.263229429721832,0.288531124591827,0.920575857162476,0.329406678676605,0.182467773556709,0.926389038562775,0.481343299150467,0.286341041326523,0.828442752361298,0.480667680501938,0.140590757131577,0.865559160709381,\r\n0.613718092441559,0.183481112122536,0.767909228801727,0.191861987113953,0.117176651954651,0.974401593208313,0.241844266653061,0.251681357622147,0.937106013298035,0.354935973882675,0.193676203489304,0.914609134197235,0.382415354251862,0.261632144451141,0.886175453662872,0.291593253612518,0.189390793442726,0.937605679035187,0.354935973882675,0.193676203489304,0.914609134197235,0.0738944858312607,0.534472048282623,0.841949641704559,-0.0245961304754019,0.509287178516388,0.860245048999786,0.146824821829796,0.478576898574829,0.865682661533356,0.146824821829796,0.478576898574829,0.865682661533356,0.0911461934447289,0.419932097196579,0.902966916561127,0.235382437705994,0.382276743650436,0.893565595149994,0.382415354251862,0.261632144451141,0.886175453662872,0.235382437705994,0.382276743650436,0.893565595149994,0.171100243926048,0.306926637887955,0.936226844787598,0.0738944858312607,0.534472048282623,0.841949641704559,0.0254380498081446,0.606053113937378,0.795017242431641,-0.0528794340789318,0.570555865764618,0.819554507732391,0.120810188353062,0.236802756786346,0.964017271995544,0.269461810588837,0.332709193229675,0.903711676597595,0.241844266653061,0.251681357622147,0.937106013298035,0.263229429721832,0.288531124591827,0.920575857162476,0.38157719373703,0.37938979268074,0.842889130115509,0.269461810588837,0.332709193229675,0.903711676597595,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.217045798897743,-0.625806629657745,0.74917083978653,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.262520760297775,-0.659738898277283,0.704150021076202,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.302791893482208,-0.745956897735596,0.593182384967804,-0.279245764017105,-0.791422009468079,0.543758094310761,-0.244594275951386,-0.733045279979706,0.6346794962883,0.0131780868396163,-0.48501655459404,0.8744056224823,\r\n-0.144187495112419,-0.461759924888611,0.875207185745239,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.144187495112419,-0.461759924888611,0.875207185745239,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.213565900921822,-0.301465690135956,0.929251253604889,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.213565900921822,-0.301465690135956,0.929251253604889,-0.207964897155762,-0.361314535140991,0.908956706523895,-0.24959222972393,-0.264903753995895,0.931412696838379,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.250261634588242,-0.227919191122055,0.940968573093414,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.259002268314362,-0.169405236840248,0.950904607772827,-0.250261634588242,-0.227919191122055,0.940968573093414,0.81346994638443,0.172580942511559,0.5554119348526,0.873599290847778,0.122305244207382,0.471026182174683,0.80103200674057,0.237050727009773,0.549685835838318,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.652366578578949,-0.698292911052704,-0.294626325368881,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.780374646186829,-0.599094212055206,-0.179168581962585,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.402223289012909,-0.865963935852051,0.297191500663757,\r\n-0.531970024108887,-0.777824521064758,0.334659099578857,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.665633976459503,-0.686978280544281,0.291534036397934,-0.46315398812294,-0.789117336273193,0.403462588787079,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.468572914600372,-0.775320172309875,0.423459559679031,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.460174113512039,-0.799338400363922,0.386390656232834,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.718570828437805,-0.69534432888031,0.0123321861028671,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.739990890026093,-0.648386597633362,0.178908213973045,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.686639547348022,-0.726171791553497,-0.0346500314772129,-0.287740290164948,-0.848941743373871,0.443286925554276,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.279245764017105,-0.791422009468079,0.543758094310761,\r\n0.708850145339966,0.307346731424332,0.634877383708954,0.81346994638443,0.172580942511559,0.5554119348526,0.80103200674057,0.237050727009773,0.549685835838318,0.630283653736115,0.302289426326752,0.715096771717072,0.735774099826813,0.135043144226074,0.663626134395599,0.708850145339966,0.307346731424332,0.634877383708954,0.481343299150467,0.286341041326523,0.828442752361298,0.613718092441559,0.183481112122536,0.767909228801727,0.630283653736115,0.302289426326752,0.715096771717072,0.38157719373703,0.37938979268074,0.842889130115509,0.263229429721832,0.288531124591827,0.920575857162476,0.481343299150467,0.286341041326523,0.828442752361298,0.241844266653061,0.251681357622147,0.937106013298035,0.389967381954193,0.267540454864502,0.881105780601501,0.354935973882675,0.193676203489304,0.914609134197235,0.389967381954193,0.267540454864502,0.881105780601501,0.382415354251862,0.261632144451141,0.886175453662872,0.354935973882675,0.193676203489304,0.914609134197235,0.205821335315704,0.471173793077469,0.857690334320068,0.0738944858312607,0.534472048282623,0.841949641704559,0.146824821829796,0.478576898574829,0.865682661533356,0.235382437705994,0.382276743650436,0.893565595149994,0.306338518857956,0.387407451868057,0.869524002075195,0.146824821829796,0.478576898574829,0.865682661533356,0.235382437705994,0.382276743650436,0.893565595149994,0.382415354251862,0.261632144451141,0.886175453662872,0.306338518857956,0.387407451868057,0.869524002075195,0.0738944858312607,0.534472048282623,0.841949641704559,0.137259855866432,0.526593565940857,0.838962912559509,0.0254380498081446,0.606053113937378,0.795017242431641,0.241844266653061,0.251681357622147,0.937106013298035,0.269461810588837,0.332709193229675,0.903711676597595,0.389967381954193,0.267540454864502,0.881105780601501,0.38157719373703,0.37938979268074,0.842889130115509,0.403528481721878,0.345081001520157,0.847398221492767,0.269461810588837,0.332709193229675,0.903711676597595,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.218016415834427,-0.777295410633087,0.59015291929245,-0.220395430922508,-0.720907747745514,0.657052278518677,\r\n-0.186128064990044,-0.664838671684265,0.723426401615143,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.186128064990044,-0.664838671684265,0.723426401615143,-0.226893663406372,-0.650931358337402,0.724436044692993,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.244594275951386,-0.733045279979706,0.6346794962883,-0.279245764017105,-0.791422009468079,0.543758094310761,-0.218016415834427,-0.777295410633087,0.59015291929245,0.0131780868396163,-0.48501655459404,0.8744056224823,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.144187495112419,-0.461759924888611,0.875207185745239,0.0383730679750443,-0.512682557106018,0.857720196247101,0.0131780868396163,-0.48501655459404,0.8744056224823,-0.0473808720707893,-0.58104681968689,0.812489688396454,0.0383730679750443,-0.512682557106018,0.857720196247101,-0.0473808720707893,-0.58104681968689,0.812489688396454,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.0384616144001484,-0.551816880702972,0.833077847957611,-0.213565900921822,-0.301465690135956,0.929251253604889,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.191874027252197,-0.279459357261658,0.940790474414825,-0.250261634588242,-0.227919191122055,0.940968573093414,0.837062060832977,0.218554124236107,0.501558601856232,0.80103200674057,0.237050727009773,0.549685835838318,0.873599290847778,0.122305244207382,0.471026182174683,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.780374646186829,-0.599094212055206,-0.179168581962585,-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.780374646186829,-0.599094212055206,-0.179168581962585,\r\n-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.743667900562286,-0.648899137973785,-0.160897195339203,-0.710938036441803,-0.700134634971619,-0.0661690309643745,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.410474717617035,-0.806878209114075,0.424803406000137,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.633112967014313,-0.753964722156525,0.175228431820869,-0.716657280921936,-0.697135388851166,0.0201109126210213,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.704720139503479,-0.708828091621399,0.0305309630930424,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.695652544498444,-0.71466451883316,0.0729531347751617,-0.343161702156067,-0.815247416496277,0.466488659381866,-0.287740290164948,-0.848941743373871,0.443286925554276,\r\n-0.266709297895432,-0.817863285541534,0.509868264198303,-0.287740290164948,-0.848941743373871,0.443286925554276,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.279245764017105,-0.791422009468079,0.543758094310761,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.218016415834427,-0.777295410633087,0.59015291929245,0.708850145339966,0.307346731424332,0.634877383708954,0.80103200674057,0.237050727009773,0.549685835838318,0.762754619121552,0.323453634977341,0.559984803199768,0.630283653736115,0.302289426326752,0.715096771717072,0.708850145339966,0.307346731424332,0.634877383708954,0.611169397830963,0.398607611656189,0.683800935745239,0.630283653736115,0.302289426326752,0.715096771717072,0.518843591213226,0.386082649230957,0.762719690799713,0.481343299150467,0.286341041326523,0.828442752361298,0.481343299150467,0.286341041326523,0.828442752361298,0.518843591213226,0.386082649230957,0.762719690799713,0.38157719373703,0.37938979268074,0.842889130115509,0.382415354251862,0.261632144451141,0.886175453662872,0.389967381954193,0.267540454864502,0.881105780601501,0.495169043540955,0.27427214384079,0.824367821216583,0.172454953193665,0.488063037395477,0.855601370334625,0.0738944858312607,0.534472048282623,0.841949641704559,0.205821335315704,0.471173793077469,0.857690334320068,0.306338518857956,0.387407451868057,0.869524002075195,0.205821335315704,0.471173793077469,0.857690334320068,0.146824821829796,0.478576898574829,0.865682661533356,0.306338518857956,0.387407451868057,0.869524002075195,0.382415354251862,0.261632144451141,0.886175453662872,0.434280395507813,0.325515031814575,0.839904963970184,0.0738944858312607,0.534472048282623,0.841949641704559,0.172454953193665,0.488063037395477,0.855601370334625,0.137259855866432,0.526593565940857,0.838962912559509,0.159146755933762,0.566214203834534,0.808748245239258,0.0254380498081446,0.606053113937378,0.795017242431641,0.137259855866432,0.526593565940857,0.838962912559509,0.269461810588837,0.332709193229675,0.903711676597595,\r\n0.403528481721878,0.345081001520157,0.847398221492767,0.389967381954193,0.267540454864502,0.881105780601501,0.38157719373703,0.37938979268074,0.842889130115509,0.460310786962509,0.393787264823914,0.795641541481018,0.403528481721878,0.345081001520157,0.847398221492767,-0.218016415834427,-0.777295410633087,0.59015291929245,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.186128064990044,-0.664838671684265,0.723426401615143,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.186128064990044,-0.664838671684265,0.723426401615143,-0.0106217451393604,-0.426216453313828,0.904558777809143,-0.143320977687836,-0.357584625482559,0.922817528247833,0.0131780868396163,-0.48501655459404,0.8744056224823,0.0383730679750443,-0.512682557106018,0.857720196247101,0.0973838344216347,-0.466481178998947,0.879153907299042,0.0131780868396163,-0.48501655459404,0.8744056224823,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.0384616144001484,-0.551816880702972,0.833077847957611,-0.100703559815884,-0.607116281986237,0.788205862045288,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.0384616144001484,-0.551816880702972,0.833077847957611,0.033658504486084,-0.549572587013245,0.834767580032349,-0.191874027252197,-0.279459357261658,0.940790474414825,-0.191603660583496,-0.281927764415741,0.940108835697174,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.191874027252197,-0.279459357261658,0.940790474414825,-0.144637927412987,-0.326926231384277,0.933915913105011,-0.250261634588242,-0.227919191122055,0.940968573093414,0.837062060832977,0.218554124236107,0.501558601856232,0.762754619121552,0.323453634977341,0.559984803199768,0.80103200674057,0.237050727009773,0.549685835838318,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.761238873004913,-0.592365801334381,-0.263852179050446,\r\n-0.757913947105408,-0.600733697414398,-0.254333138465881,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.780374646186829,-0.599094212055206,-0.179168581962585,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.780374646186829,-0.599094212055206,-0.179168581962585,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.431696504354477,-0.888313829898834,0.156641528010368,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.402223289012909,-0.865963935852051,0.297191500663757,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.297171354293823,-0.886084496974945,0.355729341506958,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.374387174844742,-0.85153067111969,0.367055058479309,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.297171354293823,-0.886084496974945,0.355729341506958,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.709570288658142,-0.70459258556366,0.0076970886439085,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.716657280921936,-0.697135388851166,0.0201109126210213,\r\n-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.755197167396545,-0.655364990234375,0.013188986107707,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.287740290164948,-0.848941743373871,0.443286925554276,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.348112255334854,-0.838050305843353,0.420106381177902,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.287740290164948,-0.848941743373871,0.443286925554276,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.218016415834427,-0.777295410633087,0.59015291929245,0.762754619121552,0.323453634977341,0.559984803199768,0.667389810085297,0.41735777258873,0.616768300533295,0.708850145339966,0.307346731424332,0.634877383708954,0.667389810085297,0.41735777258873,0.616768300533295,0.611169397830963,0.398607611656189,0.683800935745239,0.708850145339966,0.307346731424332,0.634877383708954,0.630283653736115,0.302289426326752,0.715096771717072,0.611169397830963,0.398607611656189,0.683800935745239,0.518843591213226,0.386082649230957,0.762719690799713,0.38157719373703,0.37938979268074,0.842889130115509,0.518843591213226,0.386082649230957,0.762719690799713,0.460310786962509,0.393787264823914,0.795641541481018,0.495169043540955,0.27427214384079,0.824367821216583,0.389967381954193,0.267540454864502,0.881105780601501,0.403528481721878,0.345081001520157,0.847398221492767,0.495169043540955,0.27427214384079,0.824367821216583,0.434280395507813,0.325515031814575,0.839904963970184,0.382415354251862,0.261632144451141,0.886175453662872,0.172454953193665,0.488063037395477,0.855601370334625,0.205821335315704,0.471173793077469,0.857690334320068,\r\n0.28825119137764,0.432080209255219,0.854527831077576,0.28825119137764,0.432080209255219,0.854527831077576,0.205821335315704,0.471173793077469,0.857690334320068,0.306338518857956,0.387407451868057,0.869524002075195,0.434280395507813,0.325515031814575,0.839904963970184,0.28825119137764,0.432080209255219,0.854527831077576,0.306338518857956,0.387407451868057,0.869524002075195,0.172454953193665,0.488063037395477,0.855601370334625,0.235718816518784,0.467425286769867,0.852027118206024,0.137259855866432,0.526593565940857,0.838962912559509,0.137259855866432,0.526593565940857,0.838962912559509,0.26116144657135,0.488227128982544,0.832723736763,0.159146755933762,0.566214203834534,0.808748245239258,0.403528481721878,0.345081001520157,0.847398221492767,0.460310786962509,0.393787264823914,0.795641541481018,0.542962431907654,0.324835330247879,0.774386048316956,-0.218016415834427,-0.777295410633087,0.59015291929245,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.220395430922508,-0.720907747745514,0.657052278518677,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.186128064990044,-0.664838671684265,0.723426401615143,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.144637927412987,-0.326926231384277,0.933915913105011,-0.143320977687836,-0.357584625482559,0.922817528247833,-0.0106217451393604,-0.426216453313828,0.904558777809143,0.0131780868396163,-0.48501655459404,0.8744056224823,0.0973838344216347,-0.466481178998947,0.879153907299042,-0.0106217451393604,-0.426216453313828,0.904558777809143,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.0384616144001484,-0.551816880702972,0.833077847957611,-0.0384616144001484,-0.551816880702972,0.833077847957611,-0.0159449353814125,-0.580554127693176,0.814065396785736,0.033658504486084,-0.549572587013245,0.834767580032349,-0.144637927412987,-0.326926231384277,0.933915913105011,\r\n-0.191874027252197,-0.279459357261658,0.940790474414825,-0.143320977687836,-0.357584625482559,0.922817528247833,0.814959943294525,0.278068631887436,0.508446574211121,0.762754619121552,0.323453634977341,0.559984803199768,0.837062060832977,0.218554124236107,0.501558601856232,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.762470602989197,-0.641696214675903,-0.0828515514731407,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.431696504354477,-0.888313829898834,0.156641528010368,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.503360033035278,-0.837568640708923,0.212384775280952,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.431696504354477,-0.888313829898834,0.156641528010368,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.297171354293823,-0.886084496974945,0.355729341506958,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.314057379961014,-0.864005565643311,0.393525391817093,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.297171354293823,-0.886084496974945,0.355729341506958,\r\n-0.295019954442978,-0.906160414218903,0.303045153617859,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.687340140342712,-0.716734826564789,0.117705285549164,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.595211625099182,-0.800188541412354,0.0736288204789162,-0.67938107252121,-0.7337446808815,-0.00774375209584832,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.711193680763245,-0.697194516658783,0.0901288837194443,-0.266709297895432,-0.817863285541534,0.509868264198303,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.261199861764908,-0.879119217395782,0.398652613162994,0.735222160816193,0.412756234407425,0.537662088871002,0.667389810085297,0.41735777258873,0.616768300533295,0.762754619121552,0.323453634977341,0.559984803199768,0.667389810085297,0.41735777258873,0.616768300533295,0.582319796085358,0.403102248907089,0.70598304271698,0.611169397830963,0.398607611656189,0.683800935745239,0.611169397830963,0.398607611656189,0.683800935745239,0.582319796085358,0.403102248907089,0.70598304271698,0.518843591213226,0.386082649230957,0.762719690799713,0.582319796085358,0.403102248907089,0.70598304271698,0.460310786962509,0.393787264823914,0.795641541481018,0.518843591213226,0.386082649230957,0.762719690799713,\r\n0.542962431907654,0.324835330247879,0.774386048316956,0.495169043540955,0.27427214384079,0.824367821216583,0.403528481721878,0.345081001520157,0.847398221492767,0.434280395507813,0.325515031814575,0.839904963970184,0.495169043540955,0.27427214384079,0.824367821216583,0.560658752918243,0.26445797085762,0.784680545330048,0.172454953193665,0.488063037395477,0.855601370334625,0.28825119137764,0.432080209255219,0.854527831077576,0.235718816518784,0.467425286769867,0.852027118206024,0.434280395507813,0.325515031814575,0.839904963970184,0.378113329410553,0.406171917915344,0.831898212432861,0.28825119137764,0.432080209255219,0.854527831077576,0.137259855866432,0.526593565940857,0.838962912559509,0.235718816518784,0.467425286769867,0.852027118206024,0.26116144657135,0.488227128982544,0.832723736763,0.582319796085358,0.403102248907089,0.70598304271698,0.542962431907654,0.324835330247879,0.774386048316956,0.460310786962509,0.393787264823914,0.795641541481018,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.0960159078240395,-0.607208430767059,0.788719654083252,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.0555759146809578,-0.541666805744171,0.838753998279572,0.033658504486084,-0.549572587013245,0.834767580032349,0.814959943294525,0.278068631887436,0.508446574211121,0.735222160816193,0.412756234407425,0.537662088871002,0.762754619121552,0.323453634977341,0.559984803199768,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.637812256813049,-0.744993805885315,-0.195396065711975,\r\n-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.761238873004913,-0.592365801334381,-0.263852179050446,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.714235723018646,-0.681455552577972,-0.159641265869141,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.431696504354477,-0.888313829898834,0.156641528010368,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.362180888652802,-0.903698325157166,0.228373005986214,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.254201203584671,-0.885313749313354,0.389360070228577,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.297171354293823,-0.886084496974945,0.355729341506958,-0.235510185360909,-0.917530715465546,0.320425033569336,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.505403161048889,-0.861684679985046,-0.0454640835523605,\r\n-0.660932838916779,-0.749923050403595,0.0279850289225578,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.732101619243622,-0.679736375808716,-0.0445579439401627,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.217328950762749,-0.862859785556793,0.456334322690964,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.197711139917374,-0.822352647781372,0.533522486686707,-0.261199861764908,-0.879119217395782,0.398652613162994,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.217328950762749,-0.862859785556793,0.456334322690964,0.735222160816193,0.412756234407425,0.537662088871002,0.681593537330627,0.425904810428619,0.595008671283722,0.667389810085297,0.41735777258873,0.616768300533295,0.667389810085297,0.41735777258873,0.616768300533295,0.681593537330627,0.425904810428619,0.595008671283722,0.582319796085358,0.403102248907089,0.70598304271698,0.542962431907654,0.324835330247879,0.774386048316956,0.626458764076233,0.259833782911301,0.734871208667755,0.495169043540955,0.27427214384079,0.824367821216583,0.626458764076233,0.259833782911301,0.734871208667755,0.560658752918243,0.26445797085762,0.784680545330048,0.495169043540955,0.27427214384079,0.824367821216583,0.532677888870239,0.303108781576157,0.790176749229431,0.434280395507813,0.325515031814575,0.839904963970184,0.560658752918243,0.26445797085762,0.784680545330048,0.28825119137764,0.432080209255219,0.854527831077576,0.378113329410553,0.406171917915344,0.831898212432861,0.235718816518784,0.467425286769867,0.852027118206024,0.378113329410553,0.406171917915344,0.831898212432861,0.434280395507813,0.325515031814575,0.839904963970184,\r\n0.532677888870239,0.303108781576157,0.790176749229431,0.235718816518784,0.467425286769867,0.852027118206024,0.378113329410553,0.406171917915344,0.831898212432861,0.26116144657135,0.488227128982544,0.832723736763,0.542962431907654,0.324835330247879,0.774386048316956,0.582319796085358,0.403102248907089,0.70598304271698,0.659278273582459,0.330886244773865,0.675178706645966,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.098093755543232,-0.65090024471283,0.752798974514008,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.117339417338371,-0.713104963302612,0.691167593002319,-0.098093755543232,-0.65090024471283,0.752798974514008,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.0159449353814125,-0.580554127693176,0.814065396785736,-0.098093755543232,-0.65090024471283,0.752798974514008,-0.0555759146809578,-0.541666805744171,0.838753998279572,0.735222160816193,0.412756234407425,0.537662088871002,0.814959943294525,0.278068631887436,0.508446574211121,0.780938863754272,0.389303296804428,0.488443702459335,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.665179848670959,-0.716683924198151,-0.209522798657417,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.684589385986328,-0.712614297866821,-0.153356552124023,\r\n-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.684589385986328,-0.712614297866821,-0.153356552124023,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.235510185360909,-0.917530715465546,0.320425033569336,-0.295019954442978,-0.906160414218903,0.303045153617859,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.276779681444168,-0.926708042621613,0.254175335168839,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.558099210262299,-0.829705595970154,0.0106630139052868,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.452709138393402,-0.888577878475189,0.0740524679422379,-0.252047657966614,-0.887182056903839,0.386496931314468,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.235510185360909,-0.917530715465546,0.320425033569336,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.646878838539124,-0.759715855121613,0.0661768615245819,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.676376521587372,-0.736538171768188,0.00511151412501931,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.217328950762749,-0.862859785556793,0.456334322690964,\r\n-0.161845564842224,-0.881264984607697,0.444047212600708,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.217386826872826,-0.893159151077271,0.393712669610977,0.681593537330627,0.425904810428619,0.595008671283722,0.735222160816193,0.412756234407425,0.537662088871002,0.742519438266754,0.440693229436874,0.504434525966644,0.659278273582459,0.330886244773865,0.675178706645966,0.582319796085358,0.403102248907089,0.70598304271698,0.681593537330627,0.425904810428619,0.595008671283722,0.542962431907654,0.324835330247879,0.774386048316956,0.659278273582459,0.330886244773865,0.675178706645966,0.626458764076233,0.259833782911301,0.734871208667755,0.560658752918243,0.26445797085762,0.784680545330048,0.626458764076233,0.259833782911301,0.734871208667755,0.630542516708374,0.246360972523689,0.736017823219299,0.630542516708374,0.246360972523689,0.736017823219299,0.532677888870239,0.303108781576157,0.790176749229431,0.560658752918243,0.26445797085762,0.784680545330048,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.150573328137398,-0.800907254219055,0.57954728603363,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.098093755543232,-0.65090024471283,0.752798974514008,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.0555759146809578,-0.541666805744171,0.838753998279572,-0.098093755543232,-0.65090024471283,0.752798974514008,\r\n0.735222160816193,0.412756234407425,0.537662088871002,0.780938863754272,0.389303296804428,0.488443702459335,0.742519438266754,0.440693229436874,0.504434525966644,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.616953611373901,-0.725585401058197,-0.304785072803497,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.637812256813049,-0.744993805885315,-0.195396065711975,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.34329017996788,-0.92890453338623,0.138880804181099,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.285450726747513,-0.93614000082016,0.205328151583672,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.235510185360909,-0.917530715465546,0.320425033569336,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.237568706274033,-0.932630300521851,0.271591126918793,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.396437019109726,-0.916579484939575,-0.0521509572863579,\r\n-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.240771278738976,-0.891764223575592,0.383126139640808,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.256951987743378,-0.887827575206757,0.381756097078323,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.653418838977814,-0.748097717761993,-0.115730091929436,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.148084342479706,-0.858177542686462,0.491530478000641,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.217386826872826,-0.893159151077271,0.393712669610977,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.30706325173378,-0.82574063539505,0.473143100738525,0.681593537330627,0.425904810428619,0.595008671283722,0.742519438266754,0.440693229436874,0.504434525966644,0.732710480690002,0.348797142505646,0.584359228610992,0.659278273582459,0.330886244773865,0.675178706645966,0.681593537330627,0.425904810428619,0.595008671283722,0.732710480690002,0.348797142505646,0.584359228610992,0.698213756084442,0.242079824209213,0.673717141151428,0.626458764076233,0.259833782911301,0.734871208667755,0.659278273582459,0.330886244773865,0.675178706645966,0.630542516708374,0.246360972523689,0.736017823219299,0.626458764076233,0.259833782911301,0.734871208667755,0.698213756084442,0.242079824209213,0.673717141151428,0.630542516708374,0.246360972523689,0.736017823219299,0.621749222278595,0.247022345662117,0.743241369724274,\r\n0.532677888870239,0.303108781576157,0.790176749229431,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.2246363312006,-0.785763621330261,0.576293230056763,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.214556634426117,-0.717136204242706,0.663084447383881,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.598108530044556,-0.766183733940125,-0.235007464885712,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.622220873832703,-0.757563471794128,-0.197328731417656,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.257853120565414,-0.963826417922974,0.0674557089805603,\r\n-0.237568706274033,-0.932630300521851,0.271591126918793,-0.259862959384918,-0.933925449848175,0.245467558503151,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.239879339933395,-0.925121486186981,0.294292509555817,-0.237568706274033,-0.932630300521851,0.271591126918793,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.505403161048889,-0.861684679985046,-0.0454640835523605,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.396437019109726,-0.916579484939575,-0.0521509572863579,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.329897522926331,-0.943935871124268,0.0123509578406811,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.579706966876984,-0.81388396024704,-0.0391478911042213,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.161845564842224,-0.881264984607697,0.444047212600708,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.196931809186935,-0.896381735801697,0.397136747837067,-0.364509463310242,-0.832899391651154,0.416426837444305,0.781158328056335,0.359085083007813,0.51073431968689,0.732710480690002,0.348797142505646,0.584359228610992,0.742519438266754,0.440693229436874,0.504434525966644,0.659278273582459,0.330886244773865,0.675178706645966,\r\n0.732710480690002,0.348797142505646,0.584359228610992,0.698213756084442,0.242079824209213,0.673717141151428,0.630542516708374,0.246360972523689,0.736017823219299,0.698213756084442,0.242079824209213,0.673717141151428,0.621749222278595,0.247022345662117,0.743241369724274,-0.471485018730164,-0.719122588634491,0.510455131530762,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.21966028213501,-0.823373019695282,0.523264944553375,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.567789196968079,-0.765899658203125,-0.301683515310287,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.580788373947144,-0.776205360889435,-0.245336398482323,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.256580948829651,-0.966167271137238,0.0262084156274796,-0.27416929602623,-0.955992221832275,0.104451037943363,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.27416929602623,-0.955992221832275,0.104451037943363,\r\n-0.256580948829651,-0.966167271137238,0.0262084156274796,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.227101817727089,-0.967415690422058,0.111944161355495,-0.237568706274033,-0.932630300521851,0.271591126918793,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.237568706274033,-0.932630300521851,0.271591126918793,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.311340153217316,-0.94235622882843,-0.122604697942734,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.234757617115974,-0.889137446880341,0.392840057611465,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.252988368272781,-0.901774168014526,0.350428491830826,-0.533025860786438,-0.835380017757416,-0.134251803159714,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.471485018730164,-0.719122588634491,0.510455131530762,-0.254383265972137,-0.848644196987152,0.463780134916306,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.196931809186935,-0.896381735801697,0.397136747837067,\r\n-0.541026592254639,-0.694334447383881,0.474541634321213,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.364509463310242,-0.832899391651154,0.416426837444305,0.781158328056335,0.359085083007813,0.51073431968689,0.772097170352936,0.241830825805664,0.587693452835083,0.732710480690002,0.348797142505646,0.584359228610992,0.698213756084442,0.242079824209213,0.673717141151428,0.732710480690002,0.348797142505646,0.584359228610992,0.772097170352936,0.241830825805664,0.587693452835083,0.698213756084442,0.242079824209213,0.673717141151428,0.722396850585938,0.194176867604256,0.663654983043671,0.621749222278595,0.247022345662117,0.743241369724274,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.471485018730164,-0.719122588634491,0.510455131530762,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.383850961923599,-0.722847819328308,0.57458621263504,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.431893169879913,-0.641911208629608,0.633575677871704,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.546643137931824,-0.772394001483917,-0.323401868343353,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.533327639102936,-0.796707928180695,-0.284285008907318,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.50120210647583,-0.836072504520416,-0.223112478852272,-0.256580948829651,-0.966167271137238,0.0262084156274796,\r\n-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.256580948829651,-0.966167271137238,0.0262084156274796,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.227101817727089,-0.967415690422058,0.111944161355495,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.252230674028397,-0.95018082857132,0.183128461241722,-0.227101817727089,-0.967415690422058,0.111944161355495,-0.244937807321548,-0.924416542053223,0.292334467172623,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.311340153217316,-0.94235622882843,-0.122604697942734,-0.41979718208313,-0.903632640838623,-0.0849602967500687,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.311340153217316,-0.94235622882843,-0.122604697942734,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.326904118061066,-0.939688503742218,-0.100593492388725,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.293484270572662,-0.955559551715851,-0.0277999900281429,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.260004281997681,-0.854942560195923,0.448855102062225,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.260004281997681,-0.854942560195923,0.448855102062225,-0.241766586899757,-0.877228260040283,0.414752185344696,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.471485018730164,-0.719122588634491,0.510455131530762,\r\n-0.30706325173378,-0.82574063539505,0.473143100738525,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.393156290054321,-0.842051982879639,0.369291961193085,-0.541026592254639,-0.694334447383881,0.474541634321213,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.30706325173378,-0.82574063539505,0.473143100738525,-0.541026592254639,-0.694334447383881,0.474541634321213,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.734204649925232,-0.581247448921204,0.350848466157913,0.772097170352936,0.241830825805664,0.587693452835083,0.781158328056335,0.359085083007813,0.51073431968689,0.816799759864807,0.253669530153275,0.518159985542297,0.722396850585938,0.194176867604256,0.663654983043671,0.698213756084442,0.242079824209213,0.673717141151428,0.772097170352936,0.241830825805664,0.587693452835083,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.471485018730164,-0.719122588634491,0.510455131530762,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.517929255962372,-0.67705637216568,0.522822856903076,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.546643137931824,-0.772394001483917,-0.323401868343353,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.546643137931824,-0.772394001483917,-0.323401868343353,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.476642668247223,-0.834624588489532,-0.27606737613678,-0.426425963640213,-0.86464524269104,-0.265611290931702,\r\n-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.256580948829651,-0.966167271137238,0.0262084156274796,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.257853120565414,-0.963826417922974,0.0674557089805603,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.227101817727089,-0.967415690422058,0.111944161355495,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.448168069124222,-0.869995653629303,0.205554351210594,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.311340153217316,-0.94235622882843,-0.122604697942734,-0.338007718324661,-0.933366417884827,-0.120738551020622,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.302659898996353,-0.942037522792816,-0.14478325843811,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.290129452943802,-0.948603451251984,-0.126397117972374,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.260004281997681,-0.854942560195923,0.448855102062225,-0.489385366439819,-0.79105007648468,0.367071777582169,\r\n-0.260004281997681,-0.854942560195923,0.448855102062225,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.234680518507957,-0.882494807243347,0.407587826251984,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.393156290054321,-0.842051982879639,0.369291961193085,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.393156290054321,-0.842051982879639,0.369291961193085,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.541026592254639,-0.694334447383881,0.474541634321213,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.364509463310242,-0.832899391651154,0.416426837444305,-0.541026592254639,-0.694334447383881,0.474541634321213,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.838595509529114,-0.413104802370071,0.355108171701431,0.772097170352936,0.241830825805664,0.587693452835083,0.816799759864807,0.253669530153275,0.518159985542297,0.802916944026947,0.174946323037148,0.569840312004089,0.722396850585938,0.194176867604256,0.663654983043671,0.772097170352936,0.241830825805664,0.587693452835083,0.802916944026947,0.174946323037148,0.569840312004089,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.71253901720047,-0.495047152042389,0.497208565473557,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.627907693386078,-0.510827362537384,0.587185740470886,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.546643137931824,-0.772394001483917,-0.323401868343353,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.521465957164764,-0.806788504123688,-0.277786552906036,-0.481907308101654,-0.829830050468445,-0.281331330537796,\r\n-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.403509855270386,-0.876212596893311,-0.263497948646545,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.365044951438904,-0.91734105348587,-0.158831551671028,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.448168069124222,-0.869995653629303,0.205554351210594,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.448168069124222,-0.869995653629303,0.205554351210594,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.290129452943802,-0.948603451251984,-0.126397117972374,\r\n-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.243744596838951,-0.967562437057495,-0.066417783498764,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.260004281997681,-0.854942560195923,0.448855102062225,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.307917594909668,-0.893704891204834,0.326309859752655,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.393156290054321,-0.842051982879639,0.369291961193085,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.657951772212982,-0.586952745914459,0.471789985895157,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.786409258842468,-0.358934789896011,0.50271874666214,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.426425963640213,-0.86464524269104,-0.265611290931702,-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.329436868429184,-0.905864834785461,-0.266233146190643,\r\n-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.420619547367096,-0.886059522628784,-0.194878369569778,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.306841999292374,-0.937256515026093,-0.165523812174797,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.24944868683815,-0.967811107635498,-0.0334193296730518,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.201942950487137,-0.979227662086487,0.0182250682264566,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.448168069124222,-0.869995653629303,0.205554351210594,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.210616782307625,-0.965521097183228,-0.153001353144646,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.273841232061386,-0.94949072599411,-0.153225928544998,-0.210616782307625,-0.965521097183228,-0.153001353144646,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.526185095310211,-0.806602954864502,0.269296795129776,-0.41581466794014,-0.903566777706146,0.103272467851639,\r\n-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.734204649925232,-0.581247448921204,0.350848466157913,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.838595509529114,-0.413104802370071,0.355108171701431,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.911705017089844,-0.0600197091698647,0.406437486410141,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.481907308101654,-0.829830050468445,-0.281331330537796,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.396338909864426,-0.883841574192047,-0.248474210500717,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.369131058454514,-0.91382622718811,-0.16930365562439,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.350115388631821,-0.909442782402039,-0.224349930882454,\r\n-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.350115388631821,-0.909442782402039,-0.224349930882454,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.269016861915588,-0.961636066436768,-0.0537209399044514,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.221153423190117,-0.97458803653717,0.0356268510222435,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.45294001698494,-0.851018667221069,0.265729904174805,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.210616782307625,-0.965521097183228,-0.153001353144646,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.210616782307625,-0.965521097183228,-0.153001353144646,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.305586844682693,-0.936235249042511,-0.173436239361763,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.305586844682693,-0.936235249042511,-0.173436239361763,\r\n-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.526185095310211,-0.806602954864502,0.269296795129776,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.526185095310211,-0.806602954864502,0.269296795129776,-0.381386369466782,-0.924284517765045,0.0155690954998136,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.457542717456818,-0.801081895828247,0.385904520750046,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.489385366439819,-0.79105007648468,0.367071777582169,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.675690829753876,-0.683897495269775,0.275183260440826,-0.911705017089844,-0.0600197091698647,0.406437486410141,-0.865708470344543,-0.252748042345047,0.432049930095673,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.898162066936493,-0.401253759860992,0.179722592234612,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.911705017089844,-0.0600197091698647,0.406437486410141,-0.879416227340698,0.011167086660862,0.475922554731369,\r\n-0.867402493953705,-0.104538455605507,0.486502319574356,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.332454144954681,-0.921439409255981,-0.201056063175201,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.302740722894669,-0.932464599609375,-0.197123765945435,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.646678149700165,-0.666333556175232,0.371223390102386,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.646678149700165,-0.666333556175232,0.371223390102386,-0.446166515350342,-0.881011605262756,0.157332837581635,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.879244983196259,-0.447865813970566,-0.162309482693672,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.924081921577454,-0.363398879766464,-0.118379786610603,\r\n-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.236372604966164,-0.95268839597702,-0.191082984209061,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.381260424852371,-0.913516759872437,-0.141871511936188,-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.526185095310211,-0.806602954864502,0.269296795129776,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.41581466794014,-0.903566777706146,0.103272467851639,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.74510133266449,-0.622704327106476,0.23887899518013,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.720759809017181,-0.683916866779327,0.112973034381866,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.789424061775208,-0.578787803649902,0.204485058784485,-0.911705017089844,-0.0600197091698647,0.406437486410141,\r\n-0.941262543201447,-0.149858400225639,0.3026003241539,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.893838226795197,-0.430153906345367,0.126572996377945,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.954511165618896,-0.233776167035103,0.185085967183113,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.941262543201447,-0.149858400225639,0.3026003241539,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.911705017089844,-0.0600197091698647,0.406437486410141,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.879416227340698,0.011167086660862,0.475922554731369,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.281144976615906,-0.928028523921967,-0.244377717375755,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.646678149700165,-0.666333556175232,0.371223390102386,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.334026873111725,-0.930685937404633,0.149163261055946,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.742333948612213,-0.403676599264145,0.534775972366333,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.646678149700165,-0.666333556175232,0.371223390102386,\r\n-0.474250853061676,-0.87492972612381,0.0978978350758553,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.665935039520264,-0.74410879611969,-0.0532204620540142,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.590021014213562,-0.792514383792877,0.154259547591209,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.854125738143921,-0.490967035293579,-0.171523973345757,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.879244983196259,-0.447865813970566,-0.162309482693672,-0.879244983196259,-0.447865813970566,-0.162309482693672,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.666393578052521,-0.744541347026825,0.0397189147770405,-0.224494010210037,-0.946878790855408,-0.230266511440277,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.536337435245514,-0.78458559513092,-0.311074823141098,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.446523159742355,-0.864768028259277,-0.229767963290215,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.505068123340607,-0.840313911437988,-0.196922674775124,-0.756761133670807,-0.646875381469727,-0.0941524878144264,\r\n-0.690796732902527,-0.722980976104736,0.00990983285009861,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.690796732902527,-0.722980976104736,0.00990983285009861,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.457156330347061,-0.887830078601837,-0.0525900386273861,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.968394935131073,-0.0828399285674095,0.235263049602509,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.879416227340698,0.011167086660862,0.475922554731369,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.627340614795685,-0.755789458751678,0.187685638666153,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.742333948612213,-0.403676599264145,0.534775972366333,-0.5944664478302,-0.741310894489288,0.311557024717331,-0.744615077972412,-0.534196794033051,0.400227606296539,\r\n-0.76542341709137,-0.284352213144302,0.577295958995819,-0.646678149700165,-0.666333556175232,0.371223390102386,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.742333948612213,-0.403676599264145,0.534775972366333,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.841477692127228,-0.53117048740387,0.0988593846559525,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.567115426063538,-0.757932543754578,0.322363466024399,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.879244983196259,-0.447865813970566,-0.162309482693672,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.477480411529541,-0.822925448417664,-0.307905793190002,-0.536337435245514,-0.78458559513092,-0.311074823141098,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.643061459064484,-0.738559782505035,-0.202487498521805,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.690796732902527,-0.722980976104736,0.00990983285009861,\r\n-0.565801501274109,-0.818346261978149,-0.100885406136513,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.690796732902527,-0.722980976104736,0.00990983285009861,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.587207794189453,-0.795363903045654,0.15027691423893,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.881601214408875,-0.471263378858566,0.0262675862759352,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.946942090988159,-0.320709496736526,0.0211178492754698,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.965742409229279,-0.140724986791611,-0.218032106757164,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.986365437507629,-0.158507809042931,0.0442544706165791,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.980184853076935,0.119219712913036,0.158190444111824,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.933711588382721,-0.0335097685456276,0.356454282999039,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.879416227340698,0.011167086660862,0.475922554731369,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.742333948612213,-0.403676599264145,0.534775972366333,\r\n-0.856876373291016,-0.149220556020737,0.493453085422516,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.744615077972412,-0.534196794033051,0.400227606296539,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.62812328338623,-0.689685523509979,0.36027055978775,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.742333948612213,-0.403676599264145,0.534775972366333,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.92425811290741,-0.370016098022461,-0.0939942300319672,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.811598181724548,-0.426110416650772,0.399672538042068,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.707745730876923,-0.662271022796631,-0.245953306555748,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.690796732902527,-0.722980976104736,0.00990983285009861,-0.810676872730255,-0.475563675165176,0.341528922319412,\r\n-0.877813875675201,-0.458913207054138,0.13726282119751,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.965742409229279,-0.140724986791611,-0.218032106757164,-0.924081921577454,-0.363398879766464,-0.118379786610603,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.954736769199371,-0.206554159522057,-0.214039817452431,-0.965742409229279,-0.140724986791611,-0.218032106757164,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.993833065032959,-0.0781638771295547,-0.0786523520946503,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.999920964241028,-0.000489404890686274,-0.0125618716701865,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.980184853076935,0.119219712913036,0.158190444111824,-0.994191765785217,-0.0185283571481705,0.106015548110008,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.980184853076935,0.119219712913036,0.158190444111824,-0.95205545425415,0.122731566429138,0.28022712469101,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.971037864685059,0.0297016035765409,0.237072050571442,-0.95205545425415,0.122731566429138,0.28022712469101,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.914390087127686,0.149247333407402,0.3763188123703,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.810676872730255,-0.475563675165176,0.341528922319412,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.76542341709137,-0.284352213144302,0.577295958995819,\r\n-0.797222077846527,0.0843545943498611,0.597763419151306,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.76542341709137,-0.284352213144302,0.577295958995819,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.934860646724701,0.156113460659981,0.318847984075546,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.965941548347473,-0.126830339431763,0.225545793771744,-0.934860646724701,0.156113460659981,0.318847984075546,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.746097385883331,-0.323440611362457,0.582000613212585,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.954235076904297,-0.0250846520066261,-0.298003345727921,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.991992771625519,0.1145164296031,0.0532543249428272,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.853631854057312,-0.506421148777008,-0.121860787272453,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.853631854057312,-0.506421148777008,-0.121860787272453,\r\n-0.877813875675201,-0.458913207054138,0.13726282119751,-0.756761133670807,-0.646875381469727,-0.0941524878144264,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.982637822628021,-0.128757625818253,-0.133582338690758,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.965742409229279,-0.140724986791611,-0.218032106757164,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.980184853076935,0.119219712913036,0.158190444111824,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.976466298103333,0.210258275270462,0.048009529709816,-0.980184853076935,0.119219712913036,0.158190444111824,-0.919524848461151,0.299338340759277,0.25469708442688,-0.95205545425415,0.122731566429138,0.28022712469101,-0.929628908634186,0.0584968887269497,0.363824188709259,-0.95205545425415,0.122731566429138,0.28022712469101,-0.914390087127686,0.149247333407402,0.3763188123703,-0.860896348953247,0.182480692863464,0.474929600954056,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.914390087127686,0.149247333407402,0.3763188123703,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.900924146175385,0.110740505158901,0.419609427452087,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.765871167182922,-0.0287587195634842,0.642350435256958,-0.856876373291016,-0.149220556020737,0.493453085422516,-0.900924146175385,0.110740505158901,0.419609427452087,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.73779171705246,0.0669326931238174,0.671701729297638,\r\n-0.7486732006073,0.0495447143912315,0.661085069179535,-0.76359897851944,-0.174408867955208,0.62168961763382,-0.783663213253021,0.220242440700531,0.580831408500671,-0.934860646724701,0.156113460659981,0.318847984075546,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.998408138751984,-0.0561364516615868,0.00545705668628216,-0.934860646724701,0.156113460659981,0.318847984075546,-0.991992771625519,0.1145164296031,0.0532543249428272,-0.783663213253021,0.220242440700531,0.580831408500671,-0.852617025375366,0.0103230234235525,0.522434294223785,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.954235076904297,-0.0250846520066261,-0.298003345727921,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.954235076904297,-0.0250846520066261,-0.298003345727921,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.957691669464111,-0.157811969518662,-0.240669950842857,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.991992771625519,0.1145164296031,0.0532543249428272,-0.947458982467651,0.278553396463394,0.157255992293358,-0.965715646743774,-0.0706975013017654,-0.249789983034134,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.911598145961761,-0.368657529354095,-0.181879952549934,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.877813875675201,-0.458913207054138,0.13726282119751,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.958231508731842,0.113330416381359,0.262580364942551,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.992233693599701,0.0444871559739113,-0.116159737110138,\r\n-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.992233693599701,0.0444871559739113,-0.116159737110138,-0.995711266994476,0.0878519043326378,0.0290000233799219,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.976466298103333,0.210258275270462,0.048009529709816,-0.946133375167847,0.304288685321808,0.110633820295334,-0.980184853076935,0.119219712913036,0.158190444111824,-0.976466298103333,0.210258275270462,0.048009529709816,-0.946133375167847,0.304288685321808,0.110633820295334,-0.919524848461151,0.299338340759277,0.25469708442688,-0.980184853076935,0.119219712913036,0.158190444111824,-0.919524848461151,0.299338340759277,0.25469708442688,-0.914390087127686,0.149247333407402,0.3763188123703,-0.95205545425415,0.122731566429138,0.28022712469101,-0.851206243038177,0.370677620172501,0.371545344591141,-0.860896348953247,0.182480692863464,0.474929600954056,-0.914390087127686,0.149247333407402,0.3763188123703,-0.938837587833405,-0.146886497735977,0.311461448669434,-0.958231508731842,0.113330416381359,0.262580364942551,-0.900924146175385,0.110740505158901,0.419609427452087,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.723052084445953,0.174380093812943,0.66842132806778,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.900924146175385,0.110740505158901,0.419609427452087,-0.846858143806458,0.225539535284042,0.481625407934189,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.714004874229431,0.164396211504936,0.680566489696503,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.805758416652679,0.376645177602768,0.457046687602997,-0.934860646724701,0.156113460659981,0.318847984075546,-0.783663213253021,0.220242440700531,0.580831408500671,-0.947458982467651,0.278553396463394,0.157255992293358,-0.991992771625519,0.1145164296031,0.0532543249428272,-0.934860646724701,0.156113460659981,0.318847984075546,-0.714004874229431,0.164396211504936,0.680566489696503,\r\n-0.783663213253021,0.220242440700531,0.580831408500671,-0.7486732006073,0.0495447143912315,0.661085069179535,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.954235076904297,-0.0250846520066261,-0.298003345727921,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.947458982467651,0.278553396463394,0.157255992293358,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.988615870475769,0.0553314574062824,-0.139917880296707,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.967163801193237,-0.0144888637587428,-0.253740280866623,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.972075998783112,-0.231835246086121,-0.036339595913887,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.950708985328674,-0.309564679861069,0.0179443620145321,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.958231508731842,0.113330416381359,0.262580364942551,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.976466298103333,0.210258275270462,0.048009529709816,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.946133375167847,0.304288685321808,0.110633820295334,-0.976466298103333,0.210258275270462,0.048009529709816,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.946133375167847,0.304288685321808,0.110633820295334,-0.787798464298248,0.607570767402649,0.101149149239063,-0.919524848461151,0.299338340759277,0.25469708442688,-0.919524848461151,0.299338340759277,0.25469708442688,-0.851206243038177,0.370677620172501,0.371545344591141,\r\n-0.914390087127686,0.149247333407402,0.3763188123703,-0.851206243038177,0.370677620172501,0.371545344591141,-0.799638450145721,0.407566636800766,0.440984815359116,-0.860896348953247,0.182480692863464,0.474929600954056,-0.914718985557556,0.23660346865654,0.327578693628311,-0.900924146175385,0.110740505158901,0.419609427452087,-0.958231508731842,0.113330416381359,0.262580364942551,-0.759675920009613,0.216420128941536,0.613232970237732,-0.723052084445953,0.174380093812943,0.66842132806778,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.723052084445953,0.174380093812943,0.66842132806778,-0.714004874229431,0.164396211504936,0.680566489696503,-0.73779171705246,0.0669326931238174,0.671701729297638,-0.914718985557556,0.23660346865654,0.327578693628311,-0.846858143806458,0.225539535284042,0.481625407934189,-0.900924146175385,0.110740505158901,0.419609427452087,-0.759675920009613,0.216420128941536,0.613232970237732,-0.797222077846527,0.0843545943498611,0.597763419151306,-0.846858143806458,0.225539535284042,0.481625407934189,-0.947458982467651,0.278553396463394,0.157255992293358,-0.934860646724701,0.156113460659981,0.318847984075546,-0.805758416652679,0.376645177602768,0.457046687602997,-0.805758416652679,0.376645177602768,0.457046687602997,-0.783663213253021,0.220242440700531,0.580831408500671,-0.677552700042725,0.412069857120514,0.609196722507477,-0.707985043525696,0.262383311986923,0.65567672252655,-0.783663213253021,0.220242440700531,0.580831408500671,-0.714004874229431,0.164396211504936,0.680566489696503,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.947458982467651,0.278553396463394,0.157255992293358,-0.906528115272522,0.417439550161362,0.062856025993824,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.96972393989563,0.078465573489666,-0.231254130601883,\r\n-0.946377336978912,0.00969440583139658,-0.322917640209198,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.981078803539276,-0.106449268758297,0.161718413233757,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.941603720188141,0.253685981035233,0.221417605876923,-0.958231508731842,0.113330416381359,0.262580364942551,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.96972393989563,0.078465573489666,-0.231254130601883,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.976466298103333,0.210258275270462,0.048009529709816,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.946133375167847,0.304288685321808,0.110633820295334,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.787798464298248,0.607570767402649,0.101149149239063,-0.946133375167847,0.304288685321808,0.110633820295334,-0.787798464298248,0.607570767402649,0.101149149239063,-0.713986158370972,0.677233934402466,0.177701622247696,-0.919524848461151,0.299338340759277,0.25469708442688,-0.851206243038177,0.370677620172501,0.371545344591141,-0.919524848461151,0.299338340759277,0.25469708442688,-0.713986158370972,0.677233934402466,0.177701622247696,-0.851206243038177,0.370677620172501,0.371545344591141,-0.610756099224091,0.751059770584106,0.250770926475525,\r\n-0.799638450145721,0.407566636800766,0.440984815359116,-0.958231508731842,0.113330416381359,0.262580364942551,-0.941603720188141,0.253685981035233,0.221417605876923,-0.914718985557556,0.23660346865654,0.327578693628311,-0.759675920009613,0.216420128941536,0.613232970237732,-0.69251275062561,0.303025364875793,0.654676675796509,-0.723052084445953,0.174380093812943,0.66842132806778,-0.69251275062561,0.303025364875793,0.654676675796509,-0.714004874229431,0.164396211504936,0.680566489696503,-0.723052084445953,0.174380093812943,0.66842132806778,-0.857322812080383,0.3732570707798,0.354509025812149,-0.846858143806458,0.225539535284042,0.481625407934189,-0.914718985557556,0.23660346865654,0.327578693628311,-0.754018425941467,0.352115660905838,0.55450040102005,-0.759675920009613,0.216420128941536,0.613232970237732,-0.846858143806458,0.225539535284042,0.481625407934189,-0.805758416652679,0.376645177602768,0.457046687602997,-0.787349104881287,0.502715170383453,0.356873512268066,-0.947458982467651,0.278553396463394,0.157255992293358,-0.707985043525696,0.262383311986923,0.65567672252655,-0.677552700042725,0.412069857120514,0.609196722507477,-0.783663213253021,0.220242440700531,0.580831408500671,-0.805758416652679,0.376645177602768,0.457046687602997,-0.677552700042725,0.412069857120514,0.609196722507477,-0.66203361749649,0.533566415309906,0.526325166225433,-0.707985043525696,0.262383311986923,0.65567672252655,-0.714004874229431,0.164396211504936,0.680566489696503,-0.69251275062561,0.303025364875793,0.654676675796509,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.943975150585175,0.0733836218714714,-0.321753978729248,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.787349104881287,0.502715170383453,0.356873512268066,\r\n-0.906528115272522,0.417439550161362,0.062856025993824,-0.947458982467651,0.278553396463394,0.157255992293358,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.968706429004669,0.213432654738426,-0.126705378293991,-0.906528115272522,0.417439550161362,0.062856025993824,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.998384952545166,-0.0410215109586716,0.0393010899424553,-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.941603720188141,0.253685981035233,0.221417605876923,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.952255070209503,0.283539950847626,0.113204583525658,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.977883517742157,0.179097816348076,-0.108017221093178,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.95909970998764,0.163940116763115,-0.230762332677841,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.91326105594635,0.406164050102234,0.0313821993768215,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.787798464298248,0.607570767402649,0.101149149239063,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.713986158370972,0.677233934402466,0.177701622247696,-0.787798464298248,0.607570767402649,0.101149149239063,-0.713986158370972,0.677233934402466,0.177701622247696,-0.610756099224091,0.751059770584106,0.250770926475525,\r\n-0.851206243038177,0.370677620172501,0.371545344591141,-0.568931758403778,0.725353717803955,0.38752880692482,-0.799638450145721,0.407566636800766,0.440984815359116,-0.610756099224091,0.751059770584106,0.250770926475525,-0.941603720188141,0.253685981035233,0.221417605876923,-0.857322812080383,0.3732570707798,0.354509025812149,-0.914718985557556,0.23660346865654,0.327578693628311,-0.754018425941467,0.352115660905838,0.55450040102005,-0.69251275062561,0.303025364875793,0.654676675796509,-0.759675920009613,0.216420128941536,0.613232970237732,-0.754018425941467,0.352115660905838,0.55450040102005,-0.846858143806458,0.225539535284042,0.481625407934189,-0.857322812080383,0.3732570707798,0.354509025812149,-0.66203361749649,0.533566415309906,0.526325166225433,-0.787349104881287,0.502715170383453,0.356873512268066,-0.805758416652679,0.376645177602768,0.457046687602997,-0.707985043525696,0.262383311986923,0.65567672252655,-0.69251275062561,0.303025364875793,0.654676675796509,-0.677552700042725,0.412069857120514,0.609196722507477,-0.66203361749649,0.533566415309906,0.526325166225433,-0.677552700042725,0.412069857120514,0.609196722507477,-0.55937123298645,0.591677129268646,0.580535769462585,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.915789484977722,0.215053156018257,-0.339236497879028,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.936290085315704,0.114670880138874,-0.33198094367981,-0.783458650112152,0.602398753166199,0.152669861912727,-0.906528115272522,0.417439550161362,0.062856025993824,-0.787349104881287,0.502715170383453,0.356873512268066,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.906528115272522,0.417439550161362,0.062856025993824,-0.783458650112152,0.602398753166199,0.152669861912727,-0.986731767654419,0.145620867609978,0.0717972069978714,\r\n-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.967175245285034,0.253346562385559,-0.0196840818971395,-0.952255070209503,0.283539950847626,0.113204583525658,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.914097964763641,0.342038452625275,0.217794448137283,-0.941603720188141,0.253685981035233,0.221417605876923,-0.952255070209503,0.283539950847626,0.113204583525658,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.926314771175385,0.368141919374466,-0.0800770297646523,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.83545708656311,0.54952609539032,0.0056879366748035,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.787798464298248,0.607570767402649,0.101149149239063,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.713986158370972,0.677233934402466,0.177701622247696,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.713986158370972,0.677233934402466,0.177701622247696,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.610756099224091,0.751059770584106,0.250770926475525,-0.568931758403778,0.725353717803955,0.38752880692482,-0.610756099224091,0.751059770584106,0.250770926475525,-0.339081078767776,0.92830491065979,0.152557700872421,-0.941603720188141,0.253685981035233,0.221417605876923,-0.914097964763641,0.342038452625275,0.217794448137283,\r\n-0.857322812080383,0.3732570707798,0.354509025812149,-0.665567815303802,0.446549445390701,0.598007559776306,-0.69251275062561,0.303025364875793,0.654676675796509,-0.754018425941467,0.352115660905838,0.55450040102005,-0.857322812080383,0.3732570707798,0.354509025812149,-0.707337260246277,0.557728886604309,0.434295207262039,-0.754018425941467,0.352115660905838,0.55450040102005,-0.583710372447968,0.659578680992126,0.473537743091583,-0.787349104881287,0.502715170383453,0.356873512268066,-0.66203361749649,0.533566415309906,0.526325166225433,-0.610395669937134,0.492058098316193,0.620721995830536,-0.677552700042725,0.412069857120514,0.609196722507477,-0.69251275062561,0.303025364875793,0.654676675796509,-0.610395669937134,0.492058098316193,0.620721995830536,-0.55937123298645,0.591677129268646,0.580535769462585,-0.677552700042725,0.412069857120514,0.609196722507477,-0.66203361749649,0.533566415309906,0.526325166225433,-0.55937123298645,0.591677129268646,0.580535769462585,-0.583710372447968,0.659578680992126,0.473537743091583,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.912129640579224,0.167275711894035,-0.374216854572296,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.783458650112152,0.602398753166199,0.152669861912727,-0.787349104881287,0.502715170383453,0.356873512268066,-0.583710372447968,0.659578680992126,0.473537743091583,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.897819221019745,0.392978429794312,-0.198717147111893,-0.783458650112152,0.602398753166199,0.152669861912727,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.986731767654419,0.145620867609978,0.0717972069978714,-0.967175245285034,0.253346562385559,-0.0196840818971395,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.952255070209503,0.283539950847626,0.113204583525658,-0.967175245285034,0.253346562385559,-0.0196840818971395,\r\n-0.986731767654419,0.145620867609978,0.0717972069978714,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.803223550319672,0.573752403259277,0.160124704241753,-0.914097964763641,0.342038452625275,0.217794448137283,-0.952255070209503,0.283539950847626,0.113204583525658,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.911105155944824,0.309367835521698,-0.272357881069183,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.883057773113251,0.414925366640091,-0.219193577766418,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.920766294002533,0.221691712737083,-0.321001678705215,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.823708236217499,0.527558088302612,-0.207814902067184,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.372672230005264,0.925043165683746,0.073555625975132,-0.610756099224091,0.751059770584106,0.250770926475525,-0.339081078767776,0.92830491065979,0.152557700872421,-0.610756099224091,0.751059770584106,0.250770926475525,-0.372672230005264,0.925043165683746,0.073555625975132,-0.238525524735451,0.929032802581787,0.282848954200745,-0.568931758403778,0.725353717803955,0.38752880692482,\r\n-0.339081078767776,0.92830491065979,0.152557700872421,-0.914097964763641,0.342038452625275,0.217794448137283,-0.804354727268219,0.525720298290253,0.276824146509171,-0.857322812080383,0.3732570707798,0.354509025812149,-0.665567815303802,0.446549445390701,0.598007559776306,-0.610395669937134,0.492058098316193,0.620721995830536,-0.69251275062561,0.303025364875793,0.654676675796509,-0.665567815303802,0.446549445390701,0.598007559776306,-0.754018425941467,0.352115660905838,0.55450040102005,-0.637187361717224,0.558236300945282,0.531379640102386,-0.668184697628021,0.647414088249207,0.366584211587906,-0.707337260246277,0.557728886604309,0.434295207262039,-0.857322812080383,0.3732570707798,0.354509025812149,-0.637187361717224,0.558236300945282,0.531379640102386,-0.754018425941467,0.352115660905838,0.55450040102005,-0.707337260246277,0.557728886604309,0.434295207262039,-0.493596076965332,0.657329261302948,0.569456696510315,-0.55937123298645,0.591677129268646,0.580535769462585,-0.610395669937134,0.492058098316193,0.620721995830536,-0.583710372447968,0.659578680992126,0.473537743091583,-0.55937123298645,0.591677129268646,0.580535769462585,-0.469987511634827,0.703194916248322,0.533505856990814,-0.798044621944427,0.522304356098175,-0.300537467002869,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.583710372447968,0.659578680992126,0.473537743091583,-0.574722349643707,0.741485476493835,0.346256107091904,-0.783458650112152,0.602398753166199,0.152669861912727,-0.783458650112152,0.602398753166199,0.152669861912727,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.967175245285034,0.253346562385559,-0.0196840818971395,-0.803223550319672,0.573752403259277,0.160124704241753,-0.952255070209503,0.283539950847626,0.113204583525658,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.891240298748016,0.429434150457382,-0.145865246653557,\r\n-0.967175245285034,0.253346562385559,-0.0196840818971395,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.804354727268219,0.525720298290253,0.276824146509171,-0.914097964763641,0.342038452625275,0.217794448137283,-0.803223550319672,0.573752403259277,0.160124704241753,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.556500613689423,0.754737496376038,-0.347387701272964,-0.745603621006012,0.645491778850555,-0.165576487779617,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.443254113197327,0.859657406806946,-0.253997832536697,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.590250074863434,0.797932803630829,-0.122098051011562,-0.443254113197327,0.859657406806946,-0.253997832536697,-0.528554499149323,0.84724086523056,-0.0530363954603672,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.323215454816818,0.944808065891266,-0.0535643324255943,\r\n-0.372672230005264,0.925043165683746,0.073555625975132,-0.372672230005264,0.925043165683746,0.073555625975132,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.339081078767776,0.92830491065979,0.152557700872421,-0.238525524735451,0.929032802581787,0.282848954200745,-0.339081078767776,0.92830491065979,0.152557700872421,-0.202017724514008,0.961330771446228,0.187167957425117,-0.857322812080383,0.3732570707798,0.354509025812149,-0.804354727268219,0.525720298290253,0.276824146509171,-0.668184697628021,0.647414088249207,0.366584211587906,-0.665567815303802,0.446549445390701,0.598007559776306,-0.563892841339111,0.614660978317261,0.551558315753937,-0.610395669937134,0.492058098316193,0.620721995830536,-0.563892841339111,0.614660978317261,0.551558315753937,-0.665567815303802,0.446549445390701,0.598007559776306,-0.637187361717224,0.558236300945282,0.531379640102386,-0.668184697628021,0.647414088249207,0.366584211587906,-0.506966054439545,0.750160157680511,0.424552738666534,-0.707337260246277,0.557728886604309,0.434295207262039,-0.506966054439545,0.750160157680511,0.424552738666534,-0.637187361717224,0.558236300945282,0.531379640102386,-0.707337260246277,0.557728886604309,0.434295207262039,-0.493596076965332,0.657329261302948,0.569456696510315,-0.469987511634827,0.703194916248322,0.533505856990814,-0.55937123298645,0.591677129268646,0.580535769462585,-0.610395669937134,0.492058098316193,0.620721995830536,-0.563892841339111,0.614660978317261,0.551558315753937,-0.493596076965332,0.657329261302948,0.569456696510315,-0.583710372447968,0.659578680992126,0.473537743091583,-0.469987511634827,0.703194916248322,0.533505856990814,-0.432329446077347,0.759739995002747,0.48568120598793,-0.798044621944427,0.522304356098175,-0.300537467002869,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.868217527866364,0.346394151449203,-0.355259448289871,-0.798044621944427,0.522304356098175,-0.300537467002869,-0.835681259632111,0.516069650650024,-0.187906593084335,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.583710372447968,0.659578680992126,0.473537743091583,\r\n-0.432329446077347,0.759739995002747,0.48568120598793,-0.574722349643707,0.741485476493835,0.346256107091904,-0.783458650112152,0.602398753166199,0.152669861912727,-0.574722349643707,0.741485476493835,0.346256107091904,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.803223550319672,0.573752403259277,0.160124704241753,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.804354727268219,0.525720298290253,0.276824146509171,-0.803223550319672,0.573752403259277,0.160124704241753,-0.56622987985611,0.770044982433319,0.293963104486465,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.742506086826324,0.557292282581329,-0.371631354093552,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.556500613689423,0.754737496376038,-0.347387701272964,-0.706040441989899,0.635149955749512,-0.313195139169693,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.799107074737549,0.450137734413147,-0.398501932621002,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.667384266853333,0.688718438148499,-0.283310532569885,-0.556500613689423,0.754737496376038,-0.347387701272964,-0.431520968675613,0.796570897102356,-0.42339614033699,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.443254113197327,0.859657406806946,-0.253997832536697,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.443254113197327,0.859657406806946,-0.253997832536697,\r\n-0.410048365592957,0.877298295497894,-0.249415069818497,-0.410048365592957,0.877298295497894,-0.249415069818497,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.440791189670563,0.880657970905304,-0.17362217605114,-0.410048365592957,0.877298295497894,-0.249415069818497,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.396602034568787,0.901278853416443,-0.174364924430847,-0.433887392282486,0.900958240032196,-0.00398132624104619,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.372672230005264,0.925043165683746,0.073555625975132,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.339081078767776,0.92830491065979,0.152557700872421,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.202017724514008,0.961330771446228,0.187167957425117,-0.804354727268219,0.525720298290253,0.276824146509171,-0.56622987985611,0.770044982433319,0.293963104486465,-0.668184697628021,0.647414088249207,0.366584211587906,-0.563892841339111,0.614660978317261,0.551558315753937,-0.637187361717224,0.558236300945282,0.531379640102386,-0.501810073852539,0.71179723739624,0.491458207368851,-0.506966054439545,0.750160157680511,0.424552738666534,-0.668184697628021,0.647414088249207,0.366584211587906,-0.410007059574127,0.827928900718689,0.382658898830414,-0.506966054439545,0.750160157680511,0.424552738666534,-0.501810073852539,0.71179723739624,0.491458207368851,-0.637187361717224,0.558236300945282,0.531379640102386,-0.469987511634827,0.703194916248322,0.533505856990814,-0.493596076965332,0.657329261302948,0.569456696510315,-0.409319877624512,0.743660390377045,0.528607845306396,-0.406525760889053,0.758037626743317,0.510015428066254,-0.493596076965332,0.657329261302948,0.569456696510315,-0.563892841339111,0.614660978317261,0.551558315753937,-0.432329446077347,0.759739995002747,0.48568120598793,-0.469987511634827,0.703194916248322,0.533505856990814,-0.409319877624512,0.743660390377045,0.528607845306396,-0.747909903526306,0.529259502887726,-0.400643199682236,\r\n-0.798044621944427,0.522304356098175,-0.300537467002869,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.798044621944427,0.522304356098175,-0.300537467002869,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.574722349643707,0.741485476493835,0.346256107091904,-0.432329446077347,0.759739995002747,0.48568120598793,-0.573148548603058,0.806720852851868,0.143882155418396,-0.574722349643707,0.741485476493835,0.346256107091904,-0.573148548603058,0.806720852851868,0.143882155418396,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.835668683052063,0.547427117824554,-0.0445113927125931,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.803223550319672,0.573752403259277,0.160124704241753,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.505834758281708,0.844665825366974,0.175130441784859,-0.56622987985611,0.770044982433319,0.293963104486465,-0.803223550319672,0.573752403259277,0.160124704241753,-0.505834758281708,0.844665825366974,0.175130441784859,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.455919474363327,0.783955514431,-0.421368092298508,-0.556500613689423,0.754737496376038,-0.347387701272964,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.590304374694824,0.660568356513977,-0.463885813951492,-0.455919474363327,0.783955514431,-0.421368092298508,-0.528114676475525,0.767176508903503,-0.364053547382355,\r\n-0.556500613689423,0.754737496376038,-0.347387701272964,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.49818029999733,0.81538850069046,-0.294886082410812,-0.431520968675613,0.796570897102356,-0.42339614033699,-0.431520968675613,0.796570897102356,-0.42339614033699,-0.528114676475525,0.767176508903503,-0.364053547382355,-0.455919474363327,0.783955514431,-0.421368092298508,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.410048365592957,0.877298295497894,-0.249415069818497,-0.443254113197327,0.859657406806946,-0.253997832536697,-0.410048365592957,0.877298295497894,-0.249415069818497,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.202017724514008,0.961330771446228,0.187167957425117,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.182840242981911,0.954139173030853,0.237039655447006,-0.56622987985611,0.770044982433319,0.293963104486465,-0.410007059574127,0.827928900718689,0.382658898830414,-0.668184697628021,0.647414088249207,0.366584211587906,-0.406525760889053,0.758037626743317,0.510015428066254,-0.563892841339111,0.614660978317261,0.551558315753937,-0.501810073852539,0.71179723739624,0.491458207368851,-0.506966054439545,0.750160157680511,0.424552738666534,-0.410007059574127,0.827928900718689,0.382658898830414,-0.354759812355042,0.835328042507172,0.419967114925385,-0.501810073852539,0.71179723739624,0.491458207368851,-0.506966054439545,0.750160157680511,0.424552738666534,-0.393802404403687,0.803320348262787,0.446761637926102,-0.406525760889053,0.758037626743317,0.510015428066254,-0.409319877624512,0.743660390377045,0.528607845306396,-0.493596076965332,0.657329261302948,0.569456696510315,-0.432329446077347,0.759739995002747,0.48568120598793,\r\n-0.409319877624512,0.743660390377045,0.528607845306396,-0.370791077613831,0.761286318302155,0.531937003135681,-0.747909903526306,0.529259502887726,-0.400643199682236,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.590304374694824,0.660568356513977,-0.463885813951492,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.723816633224487,0.689553022384644,-0.0246169827878475,-0.573148548603058,0.806720852851868,0.143882155418396,-0.45561358332634,0.813289165496826,0.361907422542572,-0.573148548603058,0.806720852851868,0.143882155418396,-0.432329446077347,0.759739995002747,0.48568120598793,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.356597602367401,0.925941228866577,0.124382093548775,-0.505834758281708,0.844665825366974,0.175130441784859,-0.56622987985611,0.770044982433319,0.293963104486465,-0.505834758281708,0.844665825366974,0.175130441784859,-0.336761295795441,0.895962774753571,0.289555728435516,-0.596021413803101,0.652240931987762,-0.468337565660477,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.634672224521637,0.604299426078796,-0.481677502393723,-0.590304374694824,0.660568356513977,-0.463885813951492,-0.455919474363327,0.783955514431,-0.421368092298508,-0.546685576438904,0.73097026348114,-0.408432573080063,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.431520968675613,0.796570897102356,-0.42339614033699,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.454751670360565,0.824473083019257,-0.33681583404541,\r\n-0.431520968675613,0.796570897102356,-0.42339614033699,-0.455919474363327,0.783955514431,-0.421368092298508,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.323215454816818,0.944808065891266,-0.0535643324255943,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.394140660762787,0.897870659828186,-0.196166500449181,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.182840242981911,0.954139173030853,0.237039655447006,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.255771905183792,0.953871428966522,0.157193198800087,-0.56622987985611,0.770044982433319,0.293963104486465,-0.336761295795441,0.895962774753571,0.289555728435516,-0.410007059574127,0.827928900718689,0.382658898830414,-0.406525760889053,0.758037626743317,0.510015428066254,-0.501810073852539,0.71179723739624,0.491458207368851,-0.393802404403687,0.803320348262787,0.446761637926102,-0.354759812355042,0.835328042507172,0.419967114925385,-0.410007059574127,0.827928900718689,0.382658898830414,-0.295344829559326,0.864168405532837,0.407411724328995,-0.354759812355042,0.835328042507172,0.419967114925385,-0.393802404403687,0.803320348262787,0.446761637926102,-0.506966054439545,0.750160157680511,0.424552738666534,-0.406525760889053,0.758037626743317,0.510015428066254,-0.370791077613831,0.761286318302155,0.531937003135681,-0.409319877624512,0.743660390377045,0.528607845306396,-0.432329446077347,0.759739995002747,0.48568120598793,-0.370791077613831,0.761286318302155,0.531937003135681,-0.412567645311356,0.740730762481689,0.530194044113159,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.590304374694824,0.660568356513977,-0.463885813951492,\r\n-0.678550660610199,0.679825007915497,-0.278220742940903,-0.678550660610199,0.679825007915497,-0.278220742940903,-0.573148548603058,0.806720852851868,0.143882155418396,-0.594463467597961,0.779829382896423,-0.196160972118378,-0.573148548603058,0.806720852851868,0.143882155418396,-0.45561358332634,0.813289165496826,0.361907422542572,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.412567645311356,0.740730762481689,0.530194044113159,-0.45561358332634,0.813289165496826,0.361907422542572,-0.432329446077347,0.759739995002747,0.48568120598793,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.561211585998535,0.813298285007477,-0.15358167886734,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.523095190525055,0.852266907691956,-0.00351565447635949,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.356597602367401,0.925941228866577,0.124382093548775,-0.505834758281708,0.844665825366974,0.175130441784859,-0.356597602367401,0.925941228866577,0.124382093548775,-0.336761295795441,0.895962774753571,0.289555728435516,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.590304374694824,0.660568356513977,-0.463885813951492,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.455919474363327,0.783955514431,-0.421368092298508,-0.562945008277893,0.747036218643188,-0.353595316410065,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.4743612408638,0.756360709667206,-0.450443983078003,\r\n-0.521186470985413,0.828027129173279,-0.20672582089901,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.316390931606293,0.947491466999054,-0.0464388728141785,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.255771905183792,0.953871428966522,0.157193198800087,-0.240381315350533,0.96915203332901,0.0544161610305309,-0.182840242981911,0.954139173030853,0.237039655447006,-0.255771905183792,0.953871428966522,0.157193198800087,-0.365489274263382,0.890561699867249,0.270771861076355,-0.410007059574127,0.827928900718689,0.382658898830414,-0.336761295795441,0.895962774753571,0.289555728435516,-0.295344829559326,0.864168405532837,0.407411724328995,-0.406525760889053,0.758037626743317,0.510015428066254,-0.393802404403687,0.803320348262787,0.446761637926102,-0.338245034217834,0.810577750205994,0.478073120117188,-0.354759812355042,0.835328042507172,0.419967114925385,-0.295344829559326,0.864168405532837,0.407411724328995,-0.338245034217834,0.810577750205994,0.478073120117188,-0.354759812355042,0.835328042507172,0.419967114925385,-0.338245034217834,0.810577750205994,0.478073120117188,-0.393802404403687,0.803320348262787,0.446761637926102,-0.360495686531067,0.754141330718994,0.548920333385468,-0.370791077613831,0.761286318302155,0.531937003135681,-0.406525760889053,0.758037626743317,0.510015428066254,-0.412567645311356,0.740730762481689,0.530194044113159,-0.370791077613831,0.761286318302155,0.531937003135681,-0.412143766880035,0.709448337554932,0.571682095527649,-0.594463467597961,0.779829382896423,-0.196160972118378,-0.537275016307831,0.740615844726563,-0.403513997793198,\r\n-0.678550660610199,0.679825007915497,-0.278220742940903,-0.573148548603058,0.806720852851868,0.143882155418396,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.594463467597961,0.779829382896423,-0.196160972118378,-0.486234426498413,0.771977484226227,0.409422516822815,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.45561358332634,0.813289165496826,0.361907422542572,-0.486234426498413,0.771977484226227,0.409422516822815,-0.45561358332634,0.813289165496826,0.361907422542572,-0.412567645311356,0.740730762481689,0.530194044113159,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.402376711368561,0.904547929763794,0.14101730287075,-0.356597602367401,0.925941228866577,0.124382093548775,-0.352472394704819,0.906201362609863,0.233585461974144,-0.336761295795441,0.895962774753571,0.289555728435516,-0.356597602367401,0.925941228866577,0.124382093548775,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.483005523681641,0.718876361846924,-0.499922305345535,-0.467967212200165,0.7536381483078,-0.461558431386948,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.505338966846466,0.695432305335999,-0.510887742042542,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.454751670360565,0.824473083019257,-0.33681583404541,-0.562945008277893,0.747036218643188,-0.353595316410065,-0.562945008277893,0.747036218643188,-0.353595316410065,\r\n-0.4743612408638,0.756360709667206,-0.450443983078003,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.521186470985413,0.828027129173279,-0.20672582089901,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.399393081665039,0.908739805221558,-0.121148839592934,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.483467608690262,0.866759955883026,0.122418120503426,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.365489274263382,0.890561699867249,0.270771861076355,-0.255771905183792,0.953871428966522,0.157193198800087,-0.214483082294464,0.920911192893982,0.325452715158463,-0.182840242981911,0.954139173030853,0.237039655447006,-0.365489274263382,0.890561699867249,0.270771861076355,-0.295344829559326,0.864168405532837,0.407411724328995,-0.336761295795441,0.895962774753571,0.289555728435516,-0.338832646608353,0.869447946548462,0.359517246484756,-0.360495686531067,0.754141330718994,0.548920333385468,-0.406525760889053,0.758037626743317,0.510015428066254,-0.338245034217834,0.810577750205994,0.478073120117188,-0.354705095291138,0.804099023342133,0.477083891630173,-0.338245034217834,0.810577750205994,0.478073120117188,-0.295344829559326,0.864168405532837,0.407411724328995,-0.360495686531067,0.754141330718994,0.548920333385468,-0.412143766880035,0.709448337554932,0.571682095527649,-0.370791077613831,0.761286318302155,0.531937003135681,-0.412567645311356,0.740730762481689,0.530194044113159,-0.412143766880035,0.709448337554932,0.571682095527649,-0.496380627155304,0.688954472541809,0.528155148029327,\r\n-0.594463467597961,0.779829382896423,-0.196160972118378,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.486234426498413,0.771977484226227,0.409422516822815,-0.691119074821472,0.687875092029572,0.221770718693733,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.486234426498413,0.771977484226227,0.409422516822815,-0.412567645311356,0.740730762481689,0.530194044113159,-0.496380627155304,0.688954472541809,0.528155148029327,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.38441926240921,0.905731022357941,-0.178530395030975,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.402376711368561,0.904547929763794,0.14101730287075,-0.357662975788116,0.933301329612732,-0.0320269912481308,-0.402376711368561,0.904547929763794,0.14101730287075,-0.352472394704819,0.906201362609863,0.233585461974144,-0.356597602367401,0.925941228866577,0.124382093548775,-0.352472394704819,0.906201362609863,0.233585461974144,-0.338832646608353,0.869447946548462,0.359517246484756,-0.336761295795441,0.895962774753571,0.289555728435516,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.554052531719208,0.662670612335205,-0.503878235816956,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.537275016307831,0.740615844726563,-0.403513997793198,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.650101482868195,0.713894188404083,-0.260236144065857,\r\n-0.562945008277893,0.747036218643188,-0.353595316410065,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.554052531719208,0.662670612335205,-0.503878235816956,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.4743612408638,0.756360709667206,-0.450443983078003,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.562945008277893,0.747036218643188,-0.353595316410065,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.638006210327148,0.76905369758606,0.0387859642505646,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.483467608690262,0.866759955883026,0.122418120503426,-0.42474228143692,0.905289173126221,0.00673671066761017,-0.483467608690262,0.866759955883026,0.122418120503426,-0.365489274263382,0.890561699867249,0.270771861076355,-0.334582597017288,0.940671503543854,0.0564928986132145,-0.214483082294464,0.920911192893982,0.325452715158463,-0.365489274263382,0.890561699867249,0.270771861076355,-0.244275391101837,0.870165824890137,0.427949577569962,-0.295344829559326,0.864168405532837,0.407411724328995,-0.338832646608353,0.869447946548462,0.359517246484756,-0.354705095291138,0.804099023342133,0.477083891630173,-0.360495686531067,0.754141330718994,0.548920333385468,-0.338245034217834,0.810577750205994,0.478073120117188,-0.412866532802582,0.728958606719971,0.546040534973145,-0.354705095291138,0.804099023342133,0.477083891630173,-0.412866532802582,0.728958606719971,0.546040534973145,\r\n-0.338245034217834,0.810577750205994,0.478073120117188,-0.41024461388588,0.689444839954376,0.596963167190552,-0.412143766880035,0.709448337554932,0.571682095527649,-0.360495686531067,0.754141330718994,0.548920333385468,-0.496380627155304,0.688954472541809,0.528155148029327,-0.412143766880035,0.709448337554932,0.571682095527649,-0.478623420000076,0.617849171161652,0.62384444475174,-0.486234426498413,0.771977484226227,0.409422516822815,-0.496380627155304,0.688954472541809,0.528155148029327,-0.691119074821472,0.687875092029572,0.221770718693733,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.691119074821472,0.687875092029572,0.221770718693733,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.402376711368561,0.904547929763794,0.14101730287075,-0.402376711368561,0.904547929763794,0.14101730287075,-0.447266519069672,0.811517298221588,0.376021564006805,-0.352472394704819,0.906201362609863,0.233585461974144,-0.338832646608353,0.869447946548462,0.359517246484756,-0.352472394704819,0.906201362609863,0.233585461974144,-0.447266519069672,0.811517298221588,0.376021564006805,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.527087152004242,0.74372810125351,-0.41115403175354,-0.557791769504547,0.827832996845245,-0.0596718564629555,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.510962605476379,0.683434903621674,-0.52137678861618,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.505949437618256,0.676641345024109,-0.534949898719788,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.554052531719208,0.662670612335205,-0.503878235816956,\r\n-0.505949437618256,0.676641345024109,-0.534949898719788,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.650101482868195,0.713894188404083,-0.260236144065857,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.554052531719208,0.662670612335205,-0.503878235816956,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.50196760892868,0.864664614200592,-0.019581401720643,-0.638006210327148,0.76905369758606,0.0387859642505646,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.638006210327148,0.76905369758606,0.0387859642505646,-0.590341567993164,0.80204451084137,-0.0906712561845779,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.645187854766846,0.742967367172241,0.178134694695473,-0.483467608690262,0.866759955883026,0.122418120503426,-0.59125554561615,0.74979442358017,0.297026872634888,-0.365489274263382,0.890561699867249,0.270771861076355,-0.483467608690262,0.866759955883026,0.122418120503426,-0.393343806266785,0.781876862049103,0.483682930469513,-0.244275391101837,0.870165824890137,0.427949577569962,-0.365489274263382,0.890561699867249,0.270771861076355,-0.354705095291138,0.804099023342133,0.477083891630173,-0.338832646608353,0.869447946548462,0.359517246484756,-0.430502235889435,0.774951934814453,0.46272811293602,-0.360495686531067,0.754141330718994,0.548920333385468,-0.412866532802582,0.728958606719971,0.546040534973145,\r\n-0.41024461388588,0.689444839954376,0.596963167190552,-0.412866532802582,0.728958606719971,0.546040534973145,-0.354705095291138,0.804099023342133,0.477083891630173,-0.484707087278366,0.6889808177948,0.538854658603668,-0.41024461388588,0.689444839954376,0.596963167190552,-0.478623420000076,0.617849171161652,0.62384444475174,-0.412143766880035,0.709448337554932,0.571682095527649,-0.496380627155304,0.688954472541809,0.528155148029327,-0.478623420000076,0.617849171161652,0.62384444475174,-0.601378679275513,0.5855553150177,0.543570101261139,-0.496380627155304,0.688954472541809,0.528155148029327,-0.601378679275513,0.5855553150177,0.543570101261139,-0.691119074821472,0.687875092029572,0.221770718693733,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.691119074821472,0.687875092029572,0.221770718693733,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.38920196890831,0.904595494270325,-0.173864081501961,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.440184652805328,0.897694766521454,-0.0195330902934074,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.510677397251129,0.824604988098145,0.2433822453022,-0.402376711368561,0.904547929763794,0.14101730287075,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.447266519069672,0.811517298221588,0.376021564006805,-0.402376711368561,0.904547929763794,0.14101730287075,-0.510677397251129,0.824604988098145,0.2433822453022,-0.447266519069672,0.811517298221588,0.376021564006805,-0.430502235889435,0.774951934814453,0.46272811293602,-0.338832646608353,0.869447946548462,0.359517246484756,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.638030290603638,0.697694361209869,-0.32579094171524,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.627736568450928,0.493151485919952,-0.602285802364349,\r\n-0.678873360157013,0.519958853721619,-0.518433749675751,-0.554052531719208,0.662670612335205,-0.503878235816956,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.622770428657532,0.673104882240295,-0.398856699466705,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.744093775749207,0.615235924720764,-0.260401874780655,-0.743743181228638,0.658698499202728,-0.113851748406887,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.638006210327148,0.76905369758606,0.0387859642505646,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.831534564495087,0.519193172454834,0.197454869747162,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.756713509559631,0.625496089458466,0.19010303914547,-0.645187854766846,0.742967367172241,0.178134694695473,-0.59125554561615,0.74979442358017,0.297026872634888,-0.483467608690262,0.866759955883026,0.122418120503426,-0.645187854766846,0.742967367172241,0.178134694695473,-0.59125554561615,0.74979442358017,0.297026872634888,-0.527914762496948,0.751102924346924,0.396421790122986,-0.365489274263382,0.890561699867249,0.270771861076355,-0.393343806266785,0.781876862049103,0.483682930469513,-0.365489274263382,0.890561699867249,0.270771861076355,-0.527914762496948,0.751102924346924,0.396421790122986,-0.354705095291138,0.804099023342133,0.477083891630173,-0.430502235889435,0.774951934814453,0.46272811293602,-0.484707087278366,0.6889808177948,0.538854658603668,\r\n-0.457095474004745,0.660814166069031,0.595305144786835,-0.41024461388588,0.689444839954376,0.596963167190552,-0.412866532802582,0.728958606719971,0.546040534973145,-0.412866532802582,0.728958606719971,0.546040534973145,-0.484707087278366,0.6889808177948,0.538854658603668,-0.591773986816406,0.604174196720123,0.533644914627075,-0.457095474004745,0.660814166069031,0.595305144786835,-0.478623420000076,0.617849171161652,0.62384444475174,-0.41024461388588,0.689444839954376,0.596963167190552,-0.478623420000076,0.617849171161652,0.62384444475174,-0.554703950881958,0.55096834897995,0.623487949371338,-0.601378679275513,0.5855553150177,0.543570101261139,-0.691119074821472,0.687875092029572,0.221770718693733,-0.601378679275513,0.5855553150177,0.543570101261139,-0.755474090576172,0.61356508731842,0.229775130748749,-0.691119074821472,0.687875092029572,0.221770718693733,-0.755474090576172,0.61356508731842,0.229775130748749,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.542308926582336,0.833532869815826,-0.105469949543476,-0.642782986164093,0.730031371116638,0.232129484415054,-0.510677397251129,0.824604988098145,0.2433822453022,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.447266519069672,0.811517298221588,0.376021564006805,-0.510677397251129,0.824604988098145,0.2433822453022,-0.54690021276474,0.690903007984161,0.472813934087753,-0.447266519069672,0.811517298221588,0.376021564006805,-0.514214158058167,0.68013995885849,0.522487580776215,-0.430502235889435,0.774951934814453,0.46272811293602,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.630202114582062,0.564126014709473,-0.533485651016235,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.696980059146881,0.475876659154892,-0.536432683467865,\r\n-0.699134290218353,0.362130582332611,-0.616500198841095,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.863153576850891,0.484913676977158,-0.14079961180687,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.878041326999664,0.383594304323196,-0.286179512739182,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.909762442111969,0.381525039672852,-0.163618206977844,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.756713509559631,0.625496089458466,0.19010303914547,-0.607993245124817,0.789517343044281,0.0837044268846512,-0.831534564495087,0.519193172454834,0.197454869747162,-0.756713509559631,0.625496089458466,0.19010303914547,-0.727232575416565,0.68174946308136,0.0796884596347809,-0.831534564495087,0.519193172454834,0.197454869747162,-0.825754821300507,0.561627566814423,0.0519934110343456,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.756713509559631,0.625496089458466,0.19010303914547,-0.747261881828308,0.574509859085083,0.333972990512848,-0.645187854766846,0.742967367172241,0.178134694695473,-0.645187854766846,0.742967367172241,0.178134694695473,-0.747261881828308,0.574509859085083,0.333972990512848,-0.59125554561615,0.74979442358017,0.297026872634888,-0.59125554561615,0.74979442358017,0.297026872634888,-0.692561268806458,0.592852056026459,0.410956561565399,-0.527914762496948,0.751102924346924,0.396421790122986,\r\n-0.569938480854034,0.582862854003906,0.579172551631927,-0.393343806266785,0.781876862049103,0.483682930469513,-0.527914762496948,0.751102924346924,0.396421790122986,-0.484707087278366,0.6889808177948,0.538854658603668,-0.430502235889435,0.774951934814453,0.46272811293602,-0.514214158058167,0.68013995885849,0.522487580776215,-0.412866532802582,0.728958606719971,0.546040534973145,-0.591773986816406,0.604174196720123,0.533644914627075,-0.457095474004745,0.660814166069031,0.595305144786835,-0.594362735748291,0.535297274589539,0.600157916545868,-0.591773986816406,0.604174196720123,0.533644914627075,-0.484707087278366,0.6889808177948,0.538854658603668,-0.457095474004745,0.660814166069031,0.595305144786835,-0.514197111129761,0.581339240074158,0.630591750144959,-0.478623420000076,0.617849171161652,0.62384444475174,-0.531522333621979,0.523859798908234,0.665623545646667,-0.554703950881958,0.55096834897995,0.623487949371338,-0.478623420000076,0.617849171161652,0.62384444475174,-0.638404786586761,0.609480500221252,0.470077335834503,-0.601378679275513,0.5855553150177,0.543570101261139,-0.554703950881958,0.55096834897995,0.623487949371338,-0.755474090576172,0.61356508731842,0.229775130748749,-0.601378679275513,0.5855553150177,0.543570101261139,-0.638404786586761,0.609480500221252,0.470077335834503,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.755474090576172,0.61356508731842,0.229775130748749,-0.783788502216339,0.576693952083588,-0.23043292760849,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.642782986164093,0.730031371116638,0.232129484415054,-0.54690021276474,0.690903007984161,0.472813934087753,-0.510677397251129,0.824604988098145,0.2433822453022,-0.642782986164093,0.730031371116638,0.232129484415054,-0.603893220424652,0.796293795108795,0.0350566320121288,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.537679851055145,0.64575320482254,0.542128205299377,-0.447266519069672,0.811517298221588,0.376021564006805,\r\n-0.54690021276474,0.690903007984161,0.472813934087753,-0.537679851055145,0.64575320482254,0.542128205299377,-0.514214158058167,0.68013995885849,0.522487580776215,-0.447266519069672,0.811517298221588,0.376021564006805,-0.814192414283752,0.533007502555847,-0.23020350933075,-0.783788502216339,0.576693952083588,-0.23043292760849,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.699134290218353,0.362130582332611,-0.616500198841095,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.699134290218353,0.362130582332611,-0.616500198841095,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.627736568450928,0.493151485919952,-0.602285802364349,-0.678873360157013,0.519958853721619,-0.518433749675751,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.878041326999664,0.383594304323196,-0.286179512739182,-0.785852015018463,0.512047588825226,-0.346761971712112,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.878041326999664,0.383594304323196,-0.286179512739182,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.886763095855713,0.441516071557999,-0.136801794171333,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.909762442111969,0.381525039672852,-0.163618206977844,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.903573036193848,0.409107267856598,-0.127227619290352,-0.909762442111969,0.381525039672852,-0.163618206977844,-0.831534564495087,0.519193172454834,0.197454869747162,-0.82671070098877,0.454509317874908,0.331618100404739,-0.756713509559631,0.625496089458466,0.19010303914547,\r\n-0.908555328845978,0.413253426551819,0.0612266510725021,-0.879960179328918,0.391819655895233,0.268602520227432,-0.831534564495087,0.519193172454834,0.197454869747162,-0.756713509559631,0.625496089458466,0.19010303914547,-0.82671070098877,0.454509317874908,0.331618100404739,-0.747261881828308,0.574509859085083,0.333972990512848,-0.692561268806458,0.592852056026459,0.410956561565399,-0.59125554561615,0.74979442358017,0.297026872634888,-0.747261881828308,0.574509859085083,0.333972990512848,-0.569938480854034,0.582862854003906,0.579172551631927,-0.527914762496948,0.751102924346924,0.396421790122986,-0.692561268806458,0.592852056026459,0.410956561565399,-0.514214158058167,0.68013995885849,0.522487580776215,-0.594362735748291,0.535297274589539,0.600157916545868,-0.484707087278366,0.6889808177948,0.538854658603668,-0.457095474004745,0.660814166069031,0.595305144786835,-0.591773986816406,0.604174196720123,0.533644914627075,-0.514197111129761,0.581339240074158,0.630591750144959,-0.594362735748291,0.535297274589539,0.600157916545868,-0.684275329113007,0.467060655355453,0.560019254684448,-0.591773986816406,0.604174196720123,0.533644914627075,-0.531522333621979,0.523859798908234,0.665623545646667,-0.478623420000076,0.617849171161652,0.62384444475174,-0.514197111129761,0.581339240074158,0.630591750144959,-0.626756727695465,0.449592858552933,0.636429190635681,-0.554703950881958,0.55096834897995,0.623487949371338,-0.531522333621979,0.523859798908234,0.665623545646667,-0.626756727695465,0.449592858552933,0.636429190635681,-0.638404786586761,0.609480500221252,0.470077335834503,-0.554703950881958,0.55096834897995,0.623487949371338,-0.755474090576172,0.61356508731842,0.229775130748749,-0.638404786586761,0.609480500221252,0.470077335834503,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.783788502216339,0.576693952083588,-0.23043292760849,-0.755474090576172,0.61356508731842,0.229775130748749,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.603893220424652,0.796293795108795,0.0350566320121288,\r\n-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.642782986164093,0.730031371116638,0.232129484415054,-0.636188566684723,0.596156179904938,0.489756792783737,-0.54690021276474,0.690903007984161,0.472813934087753,-0.642782986164093,0.730031371116638,0.232129484415054,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.731339931488037,0.616295576095581,0.292098462581635,-0.537679851055145,0.64575320482254,0.542128205299377,-0.54690021276474,0.690903007984161,0.472813934087753,-0.613558113574982,0.495958298444748,0.614468574523926,-0.537679851055145,0.64575320482254,0.542128205299377,-0.594362735748291,0.535297274589539,0.600157916545868,-0.514214158058167,0.68013995885849,0.522487580776215,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.783788502216339,0.576693952083588,-0.23043292760849,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.711876213550568,0.354425936937332,-0.606312036514282,-0.699134290218353,0.362130582332611,-0.616500198841095,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.696980059146881,0.475876659154892,-0.536432683467865,-0.711876213550568,0.354425936937332,-0.606312036514282,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.699134290218353,0.362130582332611,-0.616500198841095,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.878041326999664,0.383594304323196,-0.286179512739182,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.865217506885529,0.356070399284363,-0.35300475358963,\r\n-0.878041326999664,0.383594304323196,-0.286179512739182,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.909762442111969,0.381525039672852,-0.163618206977844,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.912617921829224,0.401735037565231,-0.075745977461338,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.831534564495087,0.519193172454834,0.197454869747162,-0.879960179328918,0.391819655895233,0.268602520227432,-0.82671070098877,0.454509317874908,0.331618100404739,-0.908555328845978,0.413253426551819,0.0612266510725021,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.879960179328918,0.391819655895233,0.268602520227432,-0.82671070098877,0.454509317874908,0.331618100404739,-0.773263096809387,0.466952174901962,0.428975164890289,-0.747261881828308,0.574509859085083,0.333972990512848,-0.692561268806458,0.592852056026459,0.410956561565399,-0.747261881828308,0.574509859085083,0.333972990512848,-0.773263096809387,0.466952174901962,0.428975164890289,-0.692561268806458,0.592852056026459,0.410956561565399,-0.773263096809387,0.466952174901962,0.428975164890289,-0.569938480854034,0.582862854003906,0.579172551631927,-0.635455965995789,0.519675195217133,0.57108074426651,-0.514197111129761,0.581339240074158,0.630591750144959,-0.591773986816406,0.604174196720123,0.533644914627075,-0.594362735748291,0.535297274589539,0.600157916545868,-0.629818677902222,0.424934715032578,0.650199115276337,-0.684275329113007,0.467060655355453,0.560019254684448,-0.684275329113007,0.467060655355453,0.560019254684448,-0.721636056900024,0.524755477905273,0.451523095369339,-0.591773986816406,0.604174196720123,0.533644914627075,-0.538081586360931,0.501005470752716,0.677835881710052,-0.531522333621979,0.523859798908234,0.665623545646667,\r\n-0.514197111129761,0.581339240074158,0.630591750144959,-0.626756727695465,0.449592858552933,0.636429190635681,-0.531522333621979,0.523859798908234,0.665623545646667,-0.623916983604431,0.369701713323593,0.688511490821838,-0.638404786586761,0.609480500221252,0.470077335834503,-0.626756727695465,0.449592858552933,0.636429190635681,-0.765925407409668,0.502938449382782,0.40051344037056,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.638404786586761,0.609480500221252,0.470077335834503,-0.765925407409668,0.502938449382782,0.40051344037056,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.731339931488037,0.616295576095581,0.292098462581635,-0.636188566684723,0.596156179904938,0.489756792783737,-0.642782986164093,0.730031371116638,0.232129484415054,-0.636188566684723,0.596156179904938,0.489756792783737,-0.613558113574982,0.495958298444748,0.614468574523926,-0.54690021276474,0.690903007984161,0.472813934087753,-0.731339931488037,0.616295576095581,0.292098462581635,-0.716281175613403,0.697720587253571,0.0112787801772356,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.594362735748291,0.535297274589539,0.600157916545868,-0.537679851055145,0.64575320482254,0.542128205299377,-0.613558113574982,0.495958298444748,0.614468574523926,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.711876213550568,0.354425936937332,-0.606312036514282,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.841287136077881,0.168122723698616,-0.513780772686005,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.712019205093384,0.335706382989883,-0.616708755493164,-0.711876213550568,0.354425936937332,-0.606312036514282,\r\n-0.76868736743927,0.342073708772659,-0.540467500686646,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.804954588413239,0.368667602539063,-0.464900195598602,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.907455146312714,0.394051611423492,-0.145768478512764,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.930223882198334,0.355122625827789,-0.0925821289420128,-0.9719517827034,0.205238476395607,-0.114833451807499,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.82671070098877,0.454509317874908,0.331618100404739,-0.879960179328918,0.391819655895233,0.268602520227432,-0.837619662284851,0.370210558176041,0.401668101549149,-0.879960179328918,0.391819655895233,0.268602520227432,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.903753578662872,0.328458726406097,0.274488925933838,-0.82671070098877,0.454509317874908,0.331618100404739,-0.837619662284851,0.370210558176041,0.401668101549149,-0.773263096809387,0.466952174901962,0.428975164890289,-0.569938480854034,0.582862854003906,0.579172551631927,-0.773263096809387,0.466952174901962,0.428975164890289,-0.687473833560944,0.431083887815475,0.58441960811615,-0.538081586360931,0.501005470752716,0.677835881710052,-0.514197111129761,0.581339240074158,0.630591750144959,-0.635455965995789,0.519675195217133,0.57108074426651,-0.591773986816406,0.604174196720123,0.533644914627075,-0.721636056900024,0.524755477905273,0.451523095369339,-0.635455965995789,0.519675195217133,0.57108074426651,-0.594362735748291,0.535297274589539,0.600157916545868,-0.613558113574982,0.495958298444748,0.614468574523926,-0.629818677902222,0.424934715032578,0.650199115276337,-0.629818677902222,0.424934715032578,0.650199115276337,-0.670331180095673,0.388257473707199,0.632386028766632,\r\n-0.684275329113007,0.467060655355453,0.560019254684448,-0.748320162296295,0.452922195196152,0.484642416238785,-0.721636056900024,0.524755477905273,0.451523095369339,-0.684275329113007,0.467060655355453,0.560019254684448,-0.623916983604431,0.369701713323593,0.688511490821838,-0.531522333621979,0.523859798908234,0.665623545646667,-0.538081586360931,0.501005470752716,0.677835881710052,-0.623916983604431,0.369701713323593,0.688511490821838,-0.734534561634064,0.260412245988846,0.626613438129425,-0.626756727695465,0.449592858552933,0.636429190635681,-0.626756727695465,0.449592858552933,0.636429190635681,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.765925407409668,0.502938449382782,0.40051344037056,-0.765925407409668,0.502938449382782,0.40051344037056,-0.916919946670532,0.297927707433701,0.26551228761673,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.759460151195526,0.648945569992065,-0.0457150898873806,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.731339931488037,0.616295576095581,0.292098462581635,-0.613558113574982,0.495958298444748,0.614468574523926,-0.636188566684723,0.596156179904938,0.489756792783737,-0.731339931488037,0.616295576095581,0.292098462581635,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.711876213550568,0.354425936937332,-0.606312036514282,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.841287136077881,0.168122723698616,-0.513780772686005,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.727375626564026,0.413124620914459,-0.547953069210052,-0.841287136077881,0.168122723698616,-0.513780772686005,\r\n-0.852658867835999,0.309703350067139,-0.420780599117279,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.865217506885529,0.356070399284363,-0.35300475358963,-0.984268188476563,0.176666036248207,-0.00226434180513024,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.984268188476563,0.176666036248207,-0.00226434180513024,-0.913955330848694,0.401041299104691,-0.0620598830282688,-0.9719517827034,0.205238476395607,-0.114833451807499,-0.9719517827034,0.205238476395607,-0.114833451807499,-0.921993851661682,0.364946484565735,-0.129388064146042,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.860878348350525,0.315251529216766,0.399380505084991,-0.837619662284851,0.370210558176041,0.401668101549149,-0.879960179328918,0.391819655895233,0.268602520227432,-0.943506300449371,0.199307754635811,0.264711439609528,-0.903753578662872,0.328458726406097,0.274488925933838,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.903753578662872,0.328458726406097,0.274488925933838,-0.860878348350525,0.315251529216766,0.399380505084991,-0.879960179328918,0.391819655895233,0.268602520227432,-0.837619662284851,0.370210558176041,0.401668101549149,-0.810965895652771,0.361705422401428,0.459894955158234,-0.773263096809387,0.466952174901962,0.428975164890289,-0.773263096809387,0.466952174901962,0.428975164890289,-0.810965895652771,0.361705422401428,0.459894955158234,-0.687473833560944,0.431083887815475,0.58441960811615,-0.599224627017975,0.397645026445389,0.694843947887421,-0.538081586360931,0.501005470752716,0.677835881710052,-0.635455965995789,0.519675195217133,0.57108074426651,-0.757172107696533,0.429725855588913,0.491961300373077,\r\n-0.635455965995789,0.519675195217133,0.57108074426651,-0.721636056900024,0.524755477905273,0.451523095369339,-0.670331180095673,0.388257473707199,0.632386028766632,-0.629818677902222,0.424934715032578,0.650199115276337,-0.613558113574982,0.495958298444748,0.614468574523926,-0.748320162296295,0.452922195196152,0.484642416238785,-0.684275329113007,0.467060655355453,0.560019254684448,-0.670331180095673,0.388257473707199,0.632386028766632,-0.748320162296295,0.452922195196152,0.484642416238785,-0.757172107696533,0.429725855588913,0.491961300373077,-0.721636056900024,0.524755477905273,0.451523095369339,-0.599224627017975,0.397645026445389,0.694843947887421,-0.623916983604431,0.369701713323593,0.688511490821838,-0.538081586360931,0.501005470752716,0.677835881710052,-0.623916983604431,0.369701713323593,0.688511490821838,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.734534561634064,0.260412245988846,0.626613438129425,-0.734534561634064,0.260412245988846,0.626613438129425,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.626756727695465,0.449592858552933,0.636429190635681,-0.765925407409668,0.502938449382782,0.40051344037056,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.916919946670532,0.297927707433701,0.26551228761673,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.807212650775909,0.579784035682678,-0.110716037452221,-0.916919946670532,0.297927707433701,0.26551228761673,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.777280211448669,0.625272929668427,-0.0697779282927513,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.686486005783081,0.450773566961288,0.570561110973358,-0.613558113574982,0.495958298444748,0.614468574523926,-0.731339931488037,0.616295576095581,0.292098462581635,-0.731339931488037,0.616295576095581,0.292098462581635,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.686486005783081,0.450773566961288,0.570561110973358,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.76868736743927,0.342073708772659,-0.540467500686646,-0.713283002376556,0.375688850879669,-0.591679871082306,\r\n-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.920221149921417,0.268066257238388,-0.285190224647522,-0.984268188476563,0.176666036248207,-0.00226434180513024,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.84281188249588,0.310953408479691,0.439290285110474,-0.837619662284851,0.370210558176041,0.401668101549149,-0.860878348350525,0.315251529216766,0.399380505084991,-0.943506300449371,0.199307754635811,0.264711439609528,-0.860878348350525,0.315251529216766,0.399380505084991,-0.903753578662872,0.328458726406097,0.274488925933838,-0.943506300449371,0.199307754635811,0.264711439609528,-0.940869092941284,0.32989889383316,0.0770190358161926,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.810965895652771,0.361705422401428,0.459894955158234,-0.837619662284851,0.370210558176041,0.401668101549149,-0.84281188249588,0.310953408479691,0.439290285110474,-0.669587969779968,0.393629103899002,0.629847526550293,-0.599224627017975,0.397645026445389,0.694843947887421,-0.635455965995789,0.519675195217133,0.57108074426651,-0.669587969779968,0.393629103899002,0.629847526550293,-0.635455965995789,0.519675195217133,0.57108074426651,-0.757172107696533,0.429725855588913,0.491961300373077,-0.670331180095673,0.388257473707199,0.632386028766632,-0.613558113574982,0.495958298444748,0.614468574523926,-0.686486005783081,0.450773566961288,0.570561110973358,-0.748320162296295,0.452922195196152,0.484642416238785,-0.670331180095673,0.388257473707199,0.632386028766632,-0.789606869220734,0.237437888979912,0.565812766551971,-0.789606869220734,0.237437888979912,0.565812766551971,\r\n-0.757172107696533,0.429725855588913,0.491961300373077,-0.748320162296295,0.452922195196152,0.484642416238785,-0.599224627017975,0.397645026445389,0.694843947887421,-0.628655791282654,0.219621390104294,0.746028363704681,-0.623916983604431,0.369701713323593,0.688511490821838,-0.623916983604431,0.369701713323593,0.688511490821838,-0.628655791282654,0.219621390104294,0.746028363704681,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.765731811523438,-0.174125760793686,0.619140386581421,-0.734534561634064,0.260412245988846,0.626613438129425,-0.765731811523438,-0.174125760793686,0.619140386581421,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.734534561634064,0.260412245988846,0.626613438129425,-0.916919946670532,0.297927707433701,0.26551228761673,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.916919946670532,0.297927707433701,0.26551228761673,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.848453640937805,0.441597938537598,0.291749149560928,-0.686486005783081,0.450773566961288,0.570561110973358,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.713283002376556,0.375688850879669,-0.591679871082306,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.852658867835999,0.309703350067139,-0.420780599117279,-0.84281188249588,0.310953408479691,0.439290285110474,-0.860878348350525,0.315251529216766,0.399380505084991,-0.864578425884247,0.22791063785553,0.447840124368668,-0.885355532169342,0.161656454205513,0.43590435385704,-0.860878348350525,0.315251529216766,0.399380505084991,\r\n-0.943506300449371,0.199307754635811,0.264711439609528,-0.835808515548706,0.270195215940475,0.477931559085846,-0.810965895652771,0.361705422401428,0.459894955158234,-0.84281188249588,0.310953408479691,0.439290285110474,-0.669587969779968,0.393629103899002,0.629847526550293,-0.722520768642426,0.178012147545815,0.668038308620453,-0.599224627017975,0.397645026445389,0.694843947887421,-0.669587969779968,0.393629103899002,0.629847526550293,-0.757172107696533,0.429725855588913,0.491961300373077,-0.722520768642426,0.178012147545815,0.668038308620453,-0.670331180095673,0.388257473707199,0.632386028766632,-0.686486005783081,0.450773566961288,0.570561110973358,-0.713029801845551,0.200144454836845,0.671960175037384,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.789606869220734,0.237437888979912,0.565812766551971,-0.670331180095673,0.388257473707199,0.632386028766632,-0.722520768642426,0.178012147545815,0.668038308620453,-0.757172107696533,0.429725855588913,0.491961300373077,-0.789606869220734,0.237437888979912,0.565812766551971,-0.722520768642426,0.178012147545815,0.668038308620453,-0.628655791282654,0.219621390104294,0.746028363704681,-0.599224627017975,0.397645026445389,0.694843947887421,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.628655791282654,0.219621390104294,0.746028363704681,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.848453640937805,0.441597938537598,0.291749149560928,-0.814803779125214,0.573367893695831,0.0856967568397522,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.82858282327652,0.278506189584732,0.485679596662521,-0.686486005783081,0.450773566961288,0.570561110973358,-0.848453640937805,0.441597938537598,0.291749149560928,-0.885355532169342,0.161656454205513,0.43590435385704,-0.864578425884247,0.22791063785553,0.447840124368668,-0.860878348350525,0.315251529216766,0.399380505084991,-0.835808515548706,0.270195215940475,0.477931559085846,\r\n-0.84281188249588,0.310953408479691,0.439290285110474,-0.864578425884247,0.22791063785553,0.447840124368668,-0.713029801845551,0.200144454836845,0.671960175037384,-0.686486005783081,0.450773566961288,0.570561110973358,-0.713410079479218,0.308832466602325,0.629021763801575,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.670331180095673,0.388257473707199,0.632386028766632,-0.713029801845551,0.200144454836845,0.671960175037384,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.789606869220734,0.237437888979912,0.565812766551971,-0.789606869220734,0.237437888979912,0.565812766551971,-0.745780527591705,-0.176506251096725,0.642383635044098,-0.722520768642426,0.178012147545815,0.668038308620453,-0.722520768642426,0.178012147545815,0.668038308620453,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.628655791282654,0.219621390104294,0.746028363704681,-0.949942231178284,0.293792009353638,0.106282070279121,-0.848453640937805,0.441597938537598,0.291749149560928,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.713410079479218,0.308832466602325,0.629021763801575,-0.686486005783081,0.450773566961288,0.570561110973358,-0.82858282327652,0.278506189584732,0.485679596662521,-0.82858282327652,0.278506189584732,0.485679596662521,-0.848453640937805,0.441597938537598,0.291749149560928,-0.949942231178284,0.293792009353638,0.106282070279121,-0.713029801845551,0.200144454836845,0.671960175037384,-0.713410079479218,0.308832466602325,0.629021763801575,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.713029801845551,0.200144454836845,0.671960175037384,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.789606869220734,0.237437888979912,0.565812766551971,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.745780527591705,-0.176506251096725,0.642383635044098,\r\n-0.667200982570648,-0.338361233472824,0.663591980934143,-0.722520768642426,0.178012147545815,0.668038308620453,-0.745780527591705,-0.176506251096725,0.642383635044098,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.722520768642426,0.178012147545815,0.668038308620453,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.949942231178284,0.293792009353638,0.106282070279121,-0.88364577293396,0.459642916917801,-0.0888729020953178,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.713410079479218,0.308832466602325,0.629021763801575,-0.82858282327652,0.278506189584732,0.485679596662521,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.82858282327652,0.278506189584732,0.485679596662521,-0.949942231178284,0.293792009353638,0.106282070279121,-0.749906182289124,-0.230599239468575,0.62005215883255,-0.713029801845551,0.200144454836845,0.671960175037384,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.713029801845551,0.200144454836845,0.671960175037384,-0.749906182289124,-0.230599239468575,0.62005215883255,-0.949942231178284,0.293792009353638,0.106282070279121,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.82858282327652,0.278506189584732,0.485679596662521,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.949942231178284,0.293792009353638,0.106282070279121,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.817351520061493,-0.382236450910568,0.431081920862198,\r\n-0.749906182289124,-0.230599239468575,0.62005215883255,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.933716356754303,0.321175456047058,-0.158177345991135,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.813506364822388,0.0852747336030006,0.575269877910614,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.996174931526184,0.0787942782044411,-0.0377738326787949,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.958584785461426,-0.0112978862598538,0.284583061933517,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.762988388538361,0.592454969882965,-0.258545219898224,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.762988388538361,0.592454969882965,-0.258545219898224,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.762988388538361,0.592454969882965,-0.258545219898224,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.762988388538361,0.592454969882965,-0.258545219898224,\r\n-0.441150099039078,0.873744785785675,-0.20483286678791,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.762988388538361,0.592454969882965,-0.258545219898224,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.727229475975037,0.615613043308258,-0.3035748898983,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.900277554988861,0.108949683606625,-0.421461969614029,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.918505549430847,-0.083750881254673,-0.386436581611633,\r\n-0.917006254196167,0.183092817664146,-0.354367733001709,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.578603863716125,0.75402307510376,-0.31091246008873,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.728179275989532,0.354772955179214,-0.586422145366669,-0.185217201709747,-0.0621964111924171,-0.980727314949036,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.796666145324707,0.555633783340454,-0.237894952297211,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.917006254196167,0.183092817664146,-0.354367733001709,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.869265019893646,-0.0546680651605129,-0.491314232349396,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.918505549430847,-0.083750881254673,-0.386436581611633,\r\n-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.473748475313187,0.844521284103394,-0.249691903591156,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.441150099039078,0.873744785785675,-0.20483286678791,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.735695421695709,0.60833078622818,-0.29780176281929,-0.796666145324707,0.555633783340454,-0.237894952297211,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.269837915897369,0.867399930953979,-0.418096661567688,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.364044457674026,0.649729013442993,-0.667325735092163,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.185217201709747,-0.0621964111924171,-0.980727314949036,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.656364560127258,-0.0588199160993099,-0.752147376537323,-0.185217201709747,-0.0621964111924171,-0.980727314949036,-0.302628666162491,0.263132125139236,-0.91606616973877,0.0265411362051964,0.242837220430374,-0.969703853130341,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.796666145324707,0.555633783340454,-0.237894952297211,\r\n-0.95863664150238,0.15307129919529,-0.239968463778496,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.869265019893646,-0.0546680651605129,-0.491314232349396,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.869265019893646,-0.0546680651605129,-0.491314232349396,-0.804544985294342,-0.109206512570381,-0.583764672279358,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.918505549430847,-0.083750881254673,-0.386436581611633,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.9665207862854,-0.184753239154816,-0.178055167198181,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.392055362462997,0.897831201553345,-0.200478687882423,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.339173465967178,0.918960392475128,-0.201179340481758,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.523724734783173,0.819525301456451,-0.232573688030243,-0.796666145324707,0.555633783340454,-0.237894952297211,\r\n-0.0260311365127563,0.581226706504822,-0.813325166702271,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.188104838132858,0.85315328836441,-0.48656553030014,0.0265411362051964,0.242837220430374,-0.969703853130341,-0.302628666162491,0.263132125139236,-0.91606616973877,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.185217201709747,-0.0621964111924171,-0.980727314949036,0.0381488539278507,-0.18679478764534,-0.981657922267914,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.185217201709747,-0.0621964111924171,-0.980727314949036,0.0265411362051964,0.242837220430374,-0.969703853130341,0.0973868444561958,-0.0351294167339802,-0.994626402854919,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.790275990962982,0.545872330665588,-0.278365015983582,-0.796666145324707,0.555633783340454,-0.237894952297211,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.95863664150238,0.15307129919529,-0.239968463778496,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.869265019893646,-0.0546680651605129,-0.491314232349396,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.9665207862854,-0.184753239154816,-0.178055167198181,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.96400374174118,-0.113720640540123,-0.24034196138382,-0.9665207862854,-0.184753239154816,-0.178055167198181,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.352585256099701,0.905519664287567,-0.236045822501183,\r\n-0.301889687776566,0.920383453369141,-0.248509168624878,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.0260311365127563,0.581226706504822,-0.813325166702271,-0.188104838132858,0.85315328836441,-0.48656553030014,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.276721894741058,0.903372943401337,-0.327631294727325,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.790275990962982,0.545872330665588,-0.278365015983582,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.796666145324707,0.555633783340454,-0.237894952297211,-0.0260311365127563,0.581226706504822,-0.813325166702271,0.0265411362051964,0.242837220430374,-0.969703853130341,-0.0453643575310707,0.628917753696442,-0.776147127151489,-0.185217201709747,-0.0621964111924171,-0.980727314949036,0.0973868444561958,-0.0351294167339802,-0.994626402854919,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.0381488539278507,-0.18679478764534,-0.981657922267914,-0.106994241476059,-0.337112158536911,-0.935364902019501,-0.40799942612648,-0.220836162567139,-0.885871171951294,0.0265411362051964,0.242837220430374,-0.969703853130341,0.0923024415969849,0.195654094219208,-0.976319432258606,0.0973868444561958,-0.0351294167339802,-0.994626402854919,-0.40799942612648,-0.220836162567139,-0.885871171951294,-0.106994241476059,-0.337112158536911,-0.935364902019501,\r\n-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.723795831203461,-0.294899553060532,-0.62382185459137,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.790275990962982,0.545872330665588,-0.278365015983582,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.723795831203461,-0.294899553060532,-0.62382185459137,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.69983047246933,-0.173471421003342,-0.692924797534943,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.94764655828476,-0.182803601026535,-0.261818081140518,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.9665207862854,-0.184753239154816,-0.178055167198181,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.301889687776566,0.920383453369141,-0.248509168624878,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.301889687776566,0.920383453369141,-0.248509168624878,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.352585256099701,0.905519664287567,-0.236045822501183,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.522837519645691,0.826265096664429,-0.209587067365646,-0.790275990962982,0.545872330665588,-0.278365015983582,\r\n-0.211024418473244,0.730502843856812,-0.649487674236298,-0.0415350683033466,0.489696055650711,-0.870903313159943,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.0260311365127563,0.581226706504822,-0.813325166702271,-0.176612392067909,0.778865158557892,-0.601811408996582,-0.0415350683033466,0.489696055650711,-0.870903313159943,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.368516743183136,0.902912735939026,-0.221232548356056,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.298611104488373,0.931466937065125,-0.207847490906715,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.368516743183136,0.902912735939026,-0.221232548356056,0.0265411362051964,0.242837220430374,-0.969703853130341,-0.0260311365127563,0.581226706504822,-0.813325166702271,0.0923024415969849,0.195654094219208,-0.976319432258606,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.0973868444561958,-0.0351294167339802,-0.994626402854919,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.0442315526306629,-0.220388308167458,-0.974408745765686,-0.106994241476059,-0.337112158536911,-0.935364902019501,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.0973868444561958,-0.0351294167339802,-0.994626402854919,0.0923024415969849,0.195654094219208,-0.976319432258606,-0.106994241476059,-0.337112158536911,-0.935364902019501,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.723795831203461,-0.294899553060532,-0.62382185459137,\r\n-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.790275990962982,0.545872330665588,-0.278365015983582,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.970442831516266,0.0718526318669319,-0.230386316776276,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.971687853336334,-0.160109266638756,-0.173745930194855,-0.974326074123383,-0.121942616999149,-0.189257934689522,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.723795831203461,-0.294899553060532,-0.62382185459137,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.895065128803253,-0.160690397024155,-0.415977120399475,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.360265552997589,0.8890780210495,-0.282398402690887,-0.301889687776566,0.920383453369141,-0.248509168624878,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.308616638183594,0.912248134613037,-0.269367814064026,\r\n-0.301889687776566,0.920383453369141,-0.248509168624878,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.0415350683033466,0.489696055650711,-0.870903313159943,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.0122371762990952,0.356119722127914,-0.934360146522522,-0.0260311365127563,0.581226706504822,-0.813325166702271,-0.0415350683033466,0.489696055650711,-0.870903313159943,0.0923024415969849,0.195654094219208,-0.976319432258606,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.266368687152863,0.891575157642365,-0.366253137588501,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.115307189524174,0.558972775936127,-0.821129500865936,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.318404197692871,0.90509033203125,-0.281833559274673,-0.368516743183136,0.902912735939026,-0.221232548356056,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.421072989702225,0.885109007358551,-0.19819039106369,-0.439404398202896,0.876352369785309,-0.197307243943214,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.368516743183136,0.902912735939026,-0.221232548356056,-0.351115047931671,0.916348516941071,-0.192414954304695,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.137138873338699,-0.158431947231293,-0.977799654006958,0.0381488539278507,-0.18679478764534,-0.981657922267914,0.137138873338699,-0.158431947231293,-0.977799654006958,0.0442315526306629,-0.220388308167458,-0.974408745765686,\r\n-0.106994241476059,-0.337112158536911,-0.935364902019501,0.0442315526306629,-0.220388308167458,-0.974408745765686,-0.0361489094793797,-0.393801271915436,-0.918484449386597,0.105267755687237,0.155848547816277,-0.982155740261078,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.0923024415969849,0.195654094219208,-0.976319432258606,-0.106994241476059,-0.337112158536911,-0.935364902019501,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.450974225997925,-0.372351229190826,-0.811157584190369,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.723795831203461,-0.294899553060532,-0.62382185459137,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.534130156040192,0.785982012748718,-0.311347216367722,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.964191734790802,-0.119980581104755,-0.23651410639286,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.903593122959137,-0.248860701918602,-0.348694324493408,\r\n-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.934815645217896,-0.246881604194641,-0.255282491445541,-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.360265552997589,0.8890780210495,-0.282398402690887,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.301889687776566,0.920383453369141,-0.248509168624878,-0.360265552997589,0.8890780210495,-0.282398402690887,-0.383803814649582,0.877656280994415,-0.287078350782394,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.439404398202896,0.876352369785309,-0.197307243943214,-0.30954647064209,0.926657795906067,-0.213275134563446,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.115307189524174,0.558972775936127,-0.821129500865936,-0.0122371762990952,0.356119722127914,-0.934360146522522,-0.211024418473244,0.730502843856812,-0.649487674236298,-0.0122371762990952,0.356119722127914,-0.934360146522522,0.105267755687237,0.155848547816277,-0.982155740261078,-0.0415350683033466,0.489696055650711,-0.870903313159943,0.105267755687237,0.155848547816277,-0.982155740261078,0.0923024415969849,0.195654094219208,-0.976319432258606,-0.0415350683033466,0.489696055650711,-0.870903313159943,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.115307189524174,0.558972775936127,-0.821129500865936,\r\n-0.173810318112373,0.720240771770477,-0.671597421169281,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.368516743183136,0.902912735939026,-0.221232548356056,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.58705347776413,0.777002811431885,-0.227232933044434,-0.421072989702225,0.885109007358551,-0.19819039106369,-0.351115047931671,0.916348516941071,-0.192414954304695,-0.421072989702225,0.885109007358551,-0.19819039106369,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.439404398202896,0.876352369785309,-0.197307243943214,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.101252317428589,-0.121194891631603,-0.987451076507568,0.137138873338699,-0.158431947231293,-0.977799654006958,0.137138873338699,-0.158431947231293,-0.977799654006958,0.101252317428589,-0.121194891631603,-0.987451076507568,0.0442315526306629,-0.220388308167458,-0.974408745765686,-0.0361489094793797,-0.393801271915436,-0.918484449386597,0.0442315526306629,-0.220388308167458,-0.974408745765686,-0.0325545594096184,-0.327232211828232,-0.944382965564728,0.105267755687237,0.155848547816277,-0.982155740261078,0.117520771920681,0.0527806840837002,-0.991666793823242,0.148372292518616,-0.0698744505643845,-0.986459791660309,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.613220632076263,-0.393814295530319,-0.684741258621216,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.823608815670013,-0.350922107696533,-0.445558249950409,\r\n-0.87534499168396,-0.304551243782043,-0.375525832176209,-0.714279651641846,-0.402138501405716,-0.572790563106537,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.850480139255524,0.420519709587097,-0.315985143184662,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.956592500209808,-0.0798420980572701,-0.280278265476227,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.946422755718231,-0.0203635469079018,-0.322287380695343,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.943045556545258,-0.214603692293167,-0.25418496131897,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.944844782352448,-0.13604348897934,-0.29792645573616,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.89637964963913,-0.312963306903839,-0.313938409090042,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.40640789270401,0.854654788970947,-0.323105961084366,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.360265552997589,0.8890780210495,-0.282398402690887,-0.40640789270401,0.854654788970947,-0.323105961084366,\r\n-0.360265552997589,0.8890780210495,-0.282398402690887,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.308616638183594,0.912248134613037,-0.269367814064026,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.439404398202896,0.876352369785309,-0.197307243943214,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.272978097200394,0.891688883304596,-0.361073017120361,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.0122371762990952,0.356119722127914,-0.934360146522522,-0.115307189524174,0.558972775936127,-0.821129500865936,0.105267755687237,0.155848547816277,-0.982155740261078,-0.0122371762990952,0.356119722127914,-0.934360146522522,0.117520771920681,0.0527806840837002,-0.991666793823242,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.173810318112373,0.720240771770477,-0.671597421169281,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.321108132600784,0.800213575363159,-0.50650542974472,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.647831082344055,0.709459662437439,-0.277455806732178,-0.476258754730225,0.826980173587799,-0.298799872398376,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.68428635597229,0.692443311214447,-0.2286356985569,\r\n-0.58705347776413,0.777002811431885,-0.227232933044434,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.421072989702225,0.885109007358551,-0.19819039106369,-0.58705347776413,0.777002811431885,-0.227232933044434,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.431344211101532,0.85815966129303,-0.278395473957062,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.439404398202896,0.876352369785309,-0.197307243943214,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.120210736989975,-0.066102959215641,-0.990545153617859,0.101252317428589,-0.121194891631603,-0.987451076507568,0.0442315526306629,-0.220388308167458,-0.974408745765686,0.101252317428589,-0.121194891631603,-0.987451076507568,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.0442315526306629,-0.220388308167458,-0.974408745765686,0.0814965218305588,-0.250438928604126,-0.964696109294891,-0.0325545594096184,-0.327232211828232,-0.944382965564728,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.0325545594096184,-0.327232211828232,-0.944382965564728,-0.0771493464708328,-0.434578657150269,-0.897323429584503,0.148372292518616,-0.0698744505643845,-0.986459791660309,0.117520771920681,0.0527806840837002,-0.991666793823242,0.120210736989975,-0.066102959215641,-0.990545153617859,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.613220632076263,-0.393814295530319,-0.684741258621216,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.587894320487976,-0.439601600170136,-0.679065942764282,-0.272214591503143,-0.442319363355637,-0.854548275470734,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.613220632076263,-0.393814295530319,-0.684741258621216,\r\n-0.829263627529144,0.31349840760231,-0.462645143270493,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.567496657371521,0.749085605144501,-0.341786831617355,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.912245094776154,-0.0584693104028702,-0.405450463294983,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.923972487449646,-0.189295262098312,-0.332328170537949,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.908722102642059,-0.284203112125397,-0.305700331926346,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.40640789270401,0.854654788970947,-0.323105961084366,-0.40640789270401,0.854654788970947,-0.323105961084366,\r\n-0.567496657371521,0.749085605144501,-0.341786831617355,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.353105634450912,0.886752843856812,-0.298304617404938,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.272978097200394,0.891688883304596,-0.361073017120361,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.272978097200394,0.891688883304596,-0.361073017120361,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.0122371762990952,0.356119722127914,-0.934360146522522,0.117520771920681,0.0527806840837002,-0.991666793823242,-0.0122371762990952,0.356119722127914,-0.934360146522522,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.0427386127412319,0.435839980840683,-0.899008810520172,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.21016263961792,0.466132044792175,-0.859390735626221,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.541250288486481,0.70224541425705,-0.46249258518219,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.476258754730225,0.826980173587799,-0.298799872398376,\r\n-0.647831082344055,0.709459662437439,-0.277455806732178,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.647831082344055,0.709459662437439,-0.277455806732178,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.58705347776413,0.777002811431885,-0.227232933044434,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.58705347776413,0.777002811431885,-0.227232933044434,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.62337189912796,0.699528574943542,-0.349381029605865,0.101252317428589,-0.121194891631603,-0.987451076507568,0.120210736989975,-0.066102959215641,-0.990545153617859,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.0442315526306629,-0.220388308167458,-0.974408745765686,0.0908749550580978,-0.121524170041084,-0.988419711589813,-0.0191392283886671,-0.374295592308044,-0.927111864089966,-0.0325545594096184,-0.327232211828232,-0.944382965564728,0.0814965218305588,-0.250438928604126,-0.964696109294891,-0.0191392283886671,-0.374295592308044,-0.927111864089966,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.0325545594096184,-0.327232211828232,-0.944382965564728,-0.0361489094793797,-0.393801271915436,-0.918484449386597,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.0691801905632019,-0.421378672122955,-0.904242217540741,0.117520771920681,0.0527806840837002,-0.991666793823242,0.0160935837775469,-0.0435999818146229,-0.998919367790222,0.120210736989975,-0.066102959215641,-0.990545153617859,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.175149470567703,-0.443146109580994,-0.879172384738922,\r\n-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.823608815670013,-0.350922107696533,-0.445558249950409,-0.613220632076263,-0.393814295530319,-0.684741258621216,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.613220632076263,-0.393814295530319,-0.684741258621216,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.829263627529144,0.31349840760231,-0.462645143270493,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.912245094776154,-0.0584693104028702,-0.405450463294983,-0.932337045669556,-0.0715851858258247,-0.354433357715607,-0.925936758518219,-0.0668980479240417,-0.371706366539001,-0.912245094776154,-0.0584693104028702,-0.405450463294983,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.903593122959137,-0.248860701918602,-0.348694324493408,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.926119208335876,-0.175545170903206,-0.33389675617218,-0.9004807472229,-0.247728645801544,-0.357442021369934,\r\n-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.878435909748077,-0.325867921113968,-0.349514335393906,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.300924122333527,0.911423623561859,-0.28062716126442,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.40640789270401,0.854654788970947,-0.323105961084366,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.361775696277618,0.864647686481476,-0.348572254180908,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.431679725646973,0.805270612239838,-0.40643784403801,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.556533396244049,0.570259988307953,-0.60421347618103,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.476967722177505,0.789977610111237,-0.385275274515152,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.272978097200394,0.891688883304596,-0.361073017120361,0.117520771920681,0.0527806840837002,-0.991666793823242,-0.0357716791331768,0.147108227014542,-0.988473296165466,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.0357716791331768,0.147108227014542,-0.988473296165466,\r\n-0.21016263961792,0.466132044792175,-0.859390735626221,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.653796255588531,0.693831264972687,-0.301908016204834,-0.647831082344055,0.709459662437439,-0.277455806732178,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.548002541065216,0.810268104076386,-0.207746878266335,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.647831082344055,0.709459662437439,-0.277455806732178,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.68428635597229,0.692443311214447,-0.2286356985569,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.601587772369385,0.510481894016266,-0.614410579204559,-0.62337189912796,0.699528574943542,-0.349381029605865,0.120210736989975,-0.066102959215641,-0.990545153617859,0.08088069409132,-0.0906920954585075,-0.992589116096497,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.120011225342751,-0.167125761508942,-0.978604197502136,\r\n-0.0191392283886671,-0.374295592308044,-0.927111864089966,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.117415480315685,-0.34429994225502,-0.931488633155823,-0.0191392283886671,-0.374295592308044,-0.927111864089966,-0.0204259287565947,-0.434171169996262,-0.900598764419556,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.103691838681698,-0.448131859302521,-0.887933373451233,0.08088069409132,-0.0906920954585075,-0.992589116096497,0.120210736989975,-0.066102959215641,-0.990545153617859,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.428776532411575,-0.473996579647064,-0.769075930118561,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.0198753848671913,-0.422312498092651,-0.906232297420502,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.175149470567703,-0.443146109580994,-0.879172384738922,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.584432303905487,0.691794991493225,-0.424097299575806,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.88332188129425,-0.0517509989440441,-0.465901553630829,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.555691003799438,0.544975876808167,-0.627860307693481,\r\n-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.912245094776154,-0.0584693104028702,-0.405450463294983,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.907223999500275,-0.26954111456871,-0.322942793369293,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.9004807472229,-0.247728645801544,-0.357442021369934,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.881194472312927,-0.279593974351883,-0.38121297955513,-0.739505589008331,-0.401579171419144,-0.540245771408081,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.497073411941528,0.710340023040771,-0.498332172632217,\r\n-0.29808634519577,0.819161653518677,-0.490019083023071,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.556533396244049,0.570259988307953,-0.60421347618103,-0.556533396244049,0.570259988307953,-0.60421347618103,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.463763147592545,0.72066742181778,-0.515327095985413,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.184233993291855,0.814928352832794,-0.549499273300171,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.0357716791331768,0.147108227014542,-0.988473296165466,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.455377697944641,0.49023300409317,-0.74317067861557,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.685827016830444,0.597008109092712,-0.416199952363968,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.771262109279633,0.563304126262665,-0.296383321285248,\r\n-0.734530746936798,0.615843296051025,-0.284958600997925,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.735773146152496,0.650034129619598,-0.189982488751411,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.769899725914001,0.600138127803802,-0.21699883043766,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.62337189912796,0.699528574943542,-0.349381029605865,-0.601587772369385,0.510481894016266,-0.614410579204559,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.601587772369385,0.510481894016266,-0.614410579204559,0.08088069409132,-0.0906920954585075,-0.992589116096497,0.120011225342751,-0.167125761508942,-0.978604197502136,0.0908749550580978,-0.121524170041084,-0.988419711589813,0.132063671946526,-0.243081837892532,-0.960973620414734,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.120011225342751,-0.167125761508942,-0.978604197502136,0.117415480315685,-0.34429994225502,-0.931488633155823,0.0814965218305588,-0.250438928604126,-0.964696109294891,0.132063671946526,-0.243081837892532,-0.960973620414734,-0.0191392283886671,-0.374295592308044,-0.927111864089966,0.117415480315685,-0.34429994225502,-0.931488633155823,-0.0204259287565947,-0.434171169996262,-0.900598764419556,-0.0204259287565947,-0.434171169996262,-0.900598764419556,-0.103691838681698,-0.448131859302521,-0.887933373451233,-0.0771493464708328,-0.434578657150269,-0.897323429584503,-0.0691801905632019,-0.421378672122955,-0.904242217540741,-0.103691838681698,-0.448131859302521,-0.887933373451233,-0.0198753848671913,-0.422312498092651,-0.906232297420502,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.0457413606345654,-0.124709159135818,-0.991138398647308,0.08088069409132,-0.0906920954585075,-0.992589116096497,\r\n-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.0198753848671913,-0.422312498092651,-0.906232297420502,0.118969440460205,-0.429752558469772,-0.895074844360352,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.37522754073143,0.828287780284882,-0.416105210781097,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.839659631252289,-0.118208669126034,-0.530092775821686,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.802346050739288,0.0724842250347137,-0.592441260814667,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.402054518461227,0.638614177703857,-0.656143248081207,-0.922027111053467,-0.150661796331406,-0.356604754924774,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.898573696613312,-0.1072768419981,-0.425507485866547,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.91685825586319,-0.246387884020805,-0.314107626676559,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.907223999500275,-0.26954111456871,-0.322942793369293,\r\n-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.901649653911591,-0.21311354637146,-0.376311600208282,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.919393479824066,-0.262272208929062,-0.293136119842529,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.552089393138886,-0.461103886365891,-0.694680035114288,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.250310122966766,0.871160209178925,-0.422403365373611,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.19462613761425,0.758795380592346,-0.621570646762848,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.497073411941528,0.710340023040771,-0.498332172632217,\r\n-0.589502811431885,0.582712888717651,-0.55940318107605,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.556533396244049,0.570259988307953,-0.60421347618103,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.53262585401535,0.587222039699554,-0.609491407871246,-0.29808634519577,0.819161653518677,-0.490019083023071,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.19462613761425,0.758795380592346,-0.621570646762848,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.229759976267815,0.160164654254913,-0.959977865219116,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.734530746936798,0.615843296051025,-0.284958600997925,-0.771262109279633,0.563304126262665,-0.296383321285248,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.771262109279633,0.563304126262665,-0.296383321285248,-0.717522859573364,0.62845116853714,-0.30034938454628,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.857784152030945,0.497700393199921,-0.128454327583313,\r\n-0.857784152030945,0.497700393199921,-0.128454327583313,-0.803810834884644,0.57330721616745,-0.158766582608223,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.601587772369385,0.510481894016266,-0.614410579204559,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.601587772369385,0.510481894016266,-0.614410579204559,0.08088069409132,-0.0906920954585075,-0.992589116096497,-0.0457413606345654,-0.124709159135818,-0.991138398647308,0.120011225342751,-0.167125761508942,-0.978604197502136,0.132063671946526,-0.243081837892532,-0.960973620414734,0.120011225342751,-0.167125761508942,-0.978604197502136,-0.00371605227701366,-0.205950155854225,-0.978555381298065,0.119021728634834,-0.309260100126266,-0.943499863147736,0.117415480315685,-0.34429994225502,-0.931488633155823,0.132063671946526,-0.243081837892532,-0.960973620414734,0.117415480315685,-0.34429994225502,-0.931488633155823,0.107406906783581,-0.407997310161591,-0.906643152236938,-0.0204259287565947,-0.434171169996262,-0.900598764419556,-0.0198753848671913,-0.422312498092651,-0.906232297420502,-0.103691838681698,-0.448131859302521,-0.887933373451233,-0.0204259287565947,-0.434171169996262,-0.900598764419556,0.0160935837775469,-0.0435999818146229,-0.998919367790222,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.0198753848671913,-0.422312498092651,-0.906232297420502,0.107406906783581,-0.407997310161591,-0.906643152236938,0.118969440460205,-0.429752558469772,-0.895074844360352,-0.0603448152542114,-0.405180960893631,-0.912242710590363,\r\n0.118969440460205,-0.429752558469772,-0.895074844360352,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.115243703126907,-0.416214913129807,-0.901933431625366,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.0603448152542114,-0.405180960893631,-0.912242710590363,-0.332746028900146,-0.429208636283875,-0.839678406715393,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.555691003799438,0.544975876808167,-0.627860307693481,-0.402054518461227,0.638614177703857,-0.656143248081207,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.518446564674377,0.258040636777878,-0.815247237682343,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.402054518461227,0.638614177703857,-0.656143248081207,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.871962010860443,-0.171745046973228,-0.458460181951523,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.921562671661377,-0.313015997409821,-0.229658797383308,\r\n-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.920257866382599,-0.252414882183075,-0.299018114805222,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.881256937980652,-0.284857094287872,-0.377150535583496,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.910325288772583,-0.272279232740402,-0.311723798513412,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.831610143184662,-0.314193308353424,-0.457937806844711,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.79746276140213,-0.35950243473053,-0.484573036432266,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.19462613761425,0.758795380592346,-0.621570646762848,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.323574125766754,0.64555561542511,-0.691778540611267,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.589502811431885,0.582712888717651,-0.55940318107605,-0.497073411941528,0.710340023040771,-0.498332172632217,-0.462572365999222,0.598784148693085,-0.653822779655457,\r\n-0.589502811431885,0.582712888717651,-0.55940318107605,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.638662815093994,0.600870549678802,-0.480691403150558,-0.601991653442383,0.619755327701569,-0.503496944904327,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.19462613761425,0.758795380592346,-0.621570646762848,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.281787812709808,0.0211014375090599,-0.959244608879089,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.587179243564606,0.447957247495651,-0.674206674098969,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.367021948099136,0.186683297157288,-0.911287069320679,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.587179243564606,0.447957247495651,-0.674206674098969,\r\n-0.534051954746246,0.461471974849701,-0.708400964736938,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.771262109279633,0.563304126262665,-0.296383321285248,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.771262109279633,0.563304126262665,-0.296383321285248,-0.857784152030945,0.497700393199921,-0.128454327583313,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.857784152030945,0.497700393199921,-0.128454327583313,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.836332559585571,0.514738917350769,-0.188657477498055,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.731699883937836,0.543190062046051,-0.411776214838028,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.591039001941681,0.488680094480515,-0.641766726970673,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.00371605227701366,-0.205950155854225,-0.978555381298065,0.120011225342751,-0.167125761508942,-0.978604197502136,-0.00371605227701366,-0.205950155854225,-0.978555381298065,0.0247213244438171,-0.262019962072372,-0.964745700359344,0.132063671946526,-0.243081837892532,-0.960973620414734,0.107406906783581,-0.407997310161591,-0.906643152236938,0.117415480315685,-0.34429994225502,-0.931488633155823,0.119021728634834,-0.309260100126266,-0.943499863147736,0.119021728634834,-0.309260100126266,-0.943499863147736,0.132063671946526,-0.243081837892532,-0.960973620414734,0.0247213244438171,-0.262019962072372,-0.964745700359344,-0.0198753848671913,-0.422312498092651,-0.906232297420502,-0.0204259287565947,-0.434171169996262,-0.900598764419556,\r\n0.107406906783581,-0.407997310161591,-0.906643152236938,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.638264060020447,-0.41109699010849,-0.650859475135803,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.118969440460205,-0.429752558469772,-0.895074844360352,0.107406906783581,-0.407997310161591,-0.906643152236938,0.118969440460205,-0.429752558469772,-0.895074844360352,0.166920006275177,-0.360196053981781,-0.91782158613205,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.0603448152542114,-0.405180960893631,-0.912242710590363,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.115243703126907,-0.416214913129807,-0.901933431625366,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.115243703126907,-0.416214913129807,-0.901933431625366,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.237265780568123,-0.422650098800659,-0.874683797359467,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.259120166301727,0.77203631401062,-0.580358922481537,-0.402054518461227,0.638614177703857,-0.656143248081207,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.799695193767548,-0.201871022582054,-0.565451622009277,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.625221312046051,-0.192640766501427,-0.756298661231995,-0.754949927330017,-0.177209496498108,-0.631385207176209,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.518446564674377,0.258040636777878,-0.815247237682343,\r\n-0.576978027820587,0.386297702789307,-0.719632029533386,-0.518446564674377,0.258040636777878,-0.815247237682343,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.576978027820587,0.386297702789307,-0.719632029533386,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.917134463787079,-0.307646125555038,-0.253412932157516,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.921562671661377,-0.313015997409821,-0.229658797383308,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.925158441066742,-0.284383118152618,-0.251411885023117,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.914576292037964,-0.319050490856171,-0.248509287834167,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.871136486530304,-0.287363171577454,-0.398175239562988,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.942643225193024,-0.269812494516373,-0.196532100439072,\r\n-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.638264060020447,-0.41109699010849,-0.650859475135803,-0.622480630874634,-0.404241025447845,-0.670154452323914,-0.638264060020447,-0.41109699010849,-0.650859475135803,-0.734917819499969,-0.356831640005112,-0.576686084270477,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.184233993291855,0.814928352832794,-0.549499273300171,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.19462613761425,0.758795380592346,-0.621570646762848,-0.323574125766754,0.64555561542511,-0.691778540611267,-0.327786386013031,0.720034003257751,-0.611642837524414,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.323574125766754,0.64555561542511,-0.691778540611267,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.589502811431885,0.582712888717651,-0.55940318107605,-0.589502811431885,0.582712888717651,-0.55940318107605,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.666379511356354,0.58831775188446,-0.458061546087265,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.16675241291523,-0.0232095215469599,-0.985725522041321,-0.352554589509964,-0.0426361374557018,-0.934819400310516,\r\n-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.149738848209381,-0.089905634522438,-0.984629452228546,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.356533288955688,-0.0258095394819975,-0.933926045894623,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.754153907299042,0.537223339080811,-0.377680867910385,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.805281579494476,0.535852611064911,-0.253738760948181,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.857784152030945,0.497700393199921,-0.128454327583313,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.765058159828186,0.335626214742661,-0.549582481384277,\r\n-0.708585977554321,0.433911085128784,-0.556441307067871,-0.765058159828186,0.335626214742661,-0.549582481384277,-0.666458904743195,0.440133988857269,-0.601759552955627,-0.00371605227701366,-0.205950155854225,-0.978555381298065,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.00371605227701366,-0.205950155854225,-0.978555381298065,-0.119859270751476,-0.260959327220917,-0.957879900932312,0.0247213244438171,-0.262019962072372,-0.964745700359344,0.107406906783581,-0.407997310161591,-0.906643152236938,0.119021728634834,-0.309260100126266,-0.943499863147736,0.081245057284832,-0.379483073949814,-0.921624481678009,0.0247213244438171,-0.262019962072372,-0.964745700359344,0.0413393639028072,-0.326312303543091,-0.944357573986053,0.119021728634834,-0.309260100126266,-0.943499863147736,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.0457413606345654,-0.124709159135818,-0.991138398647308,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.638264060020447,-0.41109699010849,-0.650859475135803,-0.49848747253418,-0.417386680841446,-0.7598015666008,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.153616309165955,-0.398828774690628,-0.90406721830368,0.118969440460205,-0.429752558469772,-0.895074844360352,0.107406906783581,-0.407997310161591,-0.906643152236938,0.081245057284832,-0.379483073949814,-0.921624481678009,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.153616309165955,-0.398828774690628,-0.90406721830368,0.166920006275177,-0.360196053981781,-0.91782158613205,0.118969440460205,-0.429752558469772,-0.895074844360352,0.166920006275177,-0.360196053981781,-0.91782158613205,0.00122136948630214,-0.294912487268448,-0.955523431301117,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.11836002022028,-0.335502326488495,-0.934574246406555,-0.115243703126907,-0.416214913129807,-0.901933431625366,0.039346519857645,-0.396467000246048,-0.917205393314362,-0.11836002022028,-0.335502326488495,-0.934574246406555,\r\n-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.115243703126907,-0.416214913129807,-0.901933431625366,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.625221312046051,-0.192640766501427,-0.756298661231995,-0.68766987323761,-0.0698718056082726,-0.722653388977051,-0.625221312046051,-0.192640766501427,-0.756298661231995,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.518446564674377,0.258040636777878,-0.815247237682343,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.518446564674377,0.258040636777878,-0.815247237682343,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.788079857826233,-0.302864104509354,-0.535913527011871,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.925141632556915,-0.319294303655624,-0.205338791012764,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.927226543426514,-0.216824367642403,-0.30534902215004,\r\n-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.918595850467682,-0.315971493721008,-0.237367987632751,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.883304297924042,-0.313327342271805,-0.348710983991623,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.731837749481201,-0.374587088823318,-0.569295942783356,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.894239664077759,-0.322667419910431,-0.310195177793503,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.853242158889771,-0.327356934547424,-0.405974447727203,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.908293604850769,-0.320447742938995,-0.268915623426437,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.245718538761139,0.730199635028839,-0.637519180774689,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.0391145683825016,0.598443567752838,-0.80020946264267,\r\n-0.323574125766754,0.64555561542511,-0.691778540611267,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.462572365999222,0.598784148693085,-0.653822779655457,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.672526180744171,0.563249588012695,-0.480060815811157,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.372647404670715,-0.179480403661728,-0.910450756549835,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.299923956394196,0.17846854031086,-0.937120318412781,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.356533288955688,-0.0258095394819975,-0.933926045894623,-0.338722854852676,0.0743032470345497,-0.937947630882263,-0.372647404670715,-0.179480403661728,-0.910450756549835,\r\n-0.352554589509964,-0.0426361374557018,-0.934819400310516,-0.356533288955688,-0.0258095394819975,-0.933926045894623,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.36027866601944,0.358511179685593,-0.861202001571655,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.355637580156326,0.277702063322067,-0.892414331436157,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.534051954746246,0.461471974849701,-0.708400964736938,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.737044930458069,0.503186821937561,-0.451184689998627,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.837306439876556,0.463930636644363,-0.289285629987717,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.93317449092865,0.282540291547775,-0.222162708640099,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.820412039756775,0.417721509933472,-0.390426278114319,-0.765058159828186,0.335626214742661,-0.549582481384277,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.765058159828186,0.335626214742661,-0.549582481384277,-0.00371605227701366,-0.205950155854225,-0.978555381298065,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.066212885081768,-0.320741981267929,-0.944849371910095,\r\n0.0247213244438171,-0.262019962072372,-0.964745700359344,0.081245057284832,-0.379483073949814,-0.921624481678009,0.119021728634834,-0.309260100126266,-0.943499863147736,0.0413393639028072,-0.326312303543091,-0.944357573986053,0.0413393639028072,-0.326312303543091,-0.944357573986053,0.0247213244438171,-0.262019962072372,-0.964745700359344,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.207381024956703,-0.135784566402435,-0.968790769577026,-0.49848747253418,-0.417386680841446,-0.7598015666008,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.731837749481201,-0.374587088823318,-0.569295942783356,0.0153336795046926,-0.460174649953842,-0.887695789337158,0.153616309165955,-0.398828774690628,-0.90406721830368,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.0939826816320419,-0.446191757917404,-0.889988780021667,0.081245057284832,-0.379483073949814,-0.921624481678009,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.153616309165955,-0.398828774690628,-0.90406721830368,0.150765225291252,-0.252522945404053,-0.955772817134857,0.166920006275177,-0.360196053981781,-0.91782158613205,0.166920006275177,-0.360196053981781,-0.91782158613205,0.142031759023666,-0.281582325696945,-0.948966979980469,0.00122136948630214,-0.294912487268448,-0.955523431301117,0.039346519857645,-0.396467000246048,-0.917205393314362,0.00122136948630214,-0.294912487268448,-0.955523431301117,-0.11836002022028,-0.335502326488495,-0.934574246406555,-0.11836002022028,-0.335502326488495,-0.934574246406555,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.788079857826233,-0.302864104509354,-0.535913527011871,\r\n-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.691847085952759,-0.287439048290253,-0.66236412525177,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.625221312046051,-0.192640766501427,-0.756298661231995,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.63086861371994,-0.24763511121273,-0.735310554504395,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.287284791469574,0.594404578208923,-0.751099526882172,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.825256288051605,-0.316268563270569,-0.46789538860321,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.936747372150421,-0.266808331012726,-0.226533964276314,-0.927226543426514,-0.216824367642403,-0.30534902215004,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.927226543426514,-0.216824367642403,-0.30534902215004,-0.920707881450653,-0.272950559854507,-0.278917521238327,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.885138690471649,-0.26771467924118,-0.380602419376373,-0.825256288051605,-0.316268563270569,-0.46789538860321,\r\n-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.786971151828766,-0.323583900928497,-0.52532821893692,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.0111999306827784,0.634685873985291,-0.772689044475555,-0.0111999306827784,0.634685873985291,-0.772689044475555,-0.0391145683825016,0.598443567752838,-0.80020946264267,-0.0865553542971611,0.725452482700348,-0.682807922363281,-0.0391145683825016,0.598443567752838,-0.80020946264267,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.170995727181435,0.650521695613861,-0.739987730979919,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.316981166601181,0.367413580417633,-0.874374091625214,\r\n-0.449630111455917,0.451734840869904,-0.77056360244751,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.552266120910645,0.497051656246185,-0.669284403324127,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.627085149288177,0.534085094928741,-0.567024946212769,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.708585977554321,0.433911085128784,-0.556441307067871,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.771284639835358,0.501649677753448,-0.391749382019043,-0.29905503988266,-0.121795162558556,-0.946431159973145,-0.372647404670715,-0.179480403661728,-0.910450756549835,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.356533288955688,-0.0258095394819975,-0.933926045894623,\r\n-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.372647404670715,-0.179480403661728,-0.910450756549835,-0.356533288955688,-0.0258095394819975,-0.933926045894623,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.837306439876556,0.463930636644363,-0.289285629987717,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.817205905914307,0.495219588279724,-0.294842302799225,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.837306439876556,0.463930636644363,-0.289285629987717,-0.854615569114685,0.456080496311188,-0.248239129781723,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.898675978183746,0.39695006608963,-0.186579212546349,-0.93317449092865,0.282540291547775,-0.222162708640099,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.93317449092865,0.282540291547775,-0.222162708640099,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.765058159828186,0.335626214742661,-0.549582481384277,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.211627751588821,-0.276292592287064,-0.937483847141266,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.119859270751476,-0.260959327220917,-0.957879900932312,\r\n-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.081245057284832,-0.379483073949814,-0.921624481678009,0.0413393639028072,-0.326312303543091,-0.944357573986053,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.0413393639028072,-0.326312303543091,-0.944357573986053,-0.163576707243919,-0.202172264456749,-0.965592563152313,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.211627751588821,-0.276292592287064,-0.937483847141266,0.00507656438276172,-0.418460726737976,-0.908220648765564,0.153616309165955,-0.398828774690628,-0.90406721830368,0.0153336795046926,-0.460174649953842,-0.887695789337158,0.0153336795046926,-0.460174649953842,-0.887695789337158,0.0939826816320419,-0.446191757917404,-0.889988780021667,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.150765225291252,-0.252522945404053,-0.955772817134857,0.153616309165955,-0.398828774690628,-0.90406721830368,-0.0220023430883884,-0.268658131361008,-0.962984204292297,0.166920006275177,-0.360196053981781,-0.91782158613205,0.150765225291252,-0.252522945404053,-0.955772817134857,0.142031759023666,-0.281582325696945,-0.948966979980469,0.00122136948630214,-0.294912487268448,-0.955523431301117,0.142031759023666,-0.281582325696945,-0.948966979980469,0.0513524003326893,-0.265273094177246,-0.962804794311523,-0.11836002022028,-0.335502326488495,-0.934574246406555,0.00122136948630214,-0.294912487268448,-0.955523431301117,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.330398231744766,-0.355373799800873,-0.874383449554443,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.604844570159912,-0.339946448802948,-0.720138370990753,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.657176077365875,-0.375792860984802,-0.653375148773193,\r\n-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.52955824136734,0.0485978834331036,-0.846880257129669,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.109968408942223,0.565733850002289,-0.81722217798233,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.307637572288513,0.456017583608627,-0.835108935832977,-0.109968408942223,0.565733850002289,-0.81722217798233,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.0111999306827784,0.634685873985291,-0.772689044475555,-0.0936264917254448,0.715043485164642,-0.692781865596771,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.935909390449524,-0.219194501638412,-0.275730550289154,-0.927226543426514,-0.216824367642403,-0.30534902215004,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.927226543426514,-0.216824367642403,-0.30534902215004,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.885138690471649,-0.26771467924118,-0.380602419376373,\r\n-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.820645213127136,-0.27064049243927,-0.503284215927124,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.91009134054184,-0.26798877120018,-0.316094279289246,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.919060051441193,-0.314328789710999,-0.237751916050911,-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.942643225193024,-0.269812494516373,-0.196532100439072,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.893909633159637,-0.322609305381775,-0.311205238103867,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.0111999306827784,0.634685873985291,-0.772689044475555,0.0528155565261841,0.450483798980713,-0.891220927238464,-0.0391145683825016,0.598443567752838,-0.80020946264267,0.0528155565261841,0.450483798980713,-0.891220927238464,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.0391145683825016,0.598443567752838,-0.80020946264267,-0.170995727181435,0.650521695613861,-0.739987730979919,\r\n-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.298863232135773,0.526999235153198,-0.795583128929138,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.408923387527466,0.312061250209808,-0.857554256916046,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.449630111455917,0.451734840869904,-0.77056360244751,-0.408923387527466,0.312061250209808,-0.857554256916046,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.55151379108429,0.429112106561661,-0.715328693389893,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.705592632293701,0.550780296325684,-0.445847392082214,-0.603837430477142,0.479582935571671,-0.63669490814209,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.372647404670715,-0.179480403661728,-0.910450756549835,\r\n-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.321187198162079,0.162314876914024,-0.93300187587738,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.372647404670715,-0.179480403661728,-0.910450756549835,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.276637583971024,0.370983213186264,-0.886477828025818,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.270260781049728,0.327082604169846,-0.905525207519531,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.325182735919952,0.26327246427536,-0.908264100551605,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.773576498031616,0.326829165220261,-0.542919814586639,-0.624813914299011,0.36167848110199,-0.691950917243958,\r\n-0.879276216030121,0.387515097856522,-0.276957094669342,-0.824592769145966,0.450975984334946,-0.341566115617752,-0.837306439876556,0.463930636644363,-0.289285629987717,-0.915606617927551,0.298152804374695,-0.26975804567337,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.93317449092865,0.282540291547775,-0.222162708640099,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.808762609958649,0.288814425468445,-0.512336850166321,-0.211627751588821,-0.276292592287064,-0.937483847141266,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.119859270751476,-0.260959327220917,-0.957879900932312,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.162300661206245,-0.367526561021805,-0.915741562843323,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.0245537273585796,-0.419715851545334,-0.90732330083847,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.211627751588821,-0.276292592287064,-0.937483847141266,0.00507656438276172,-0.418460726737976,-0.908220648765564,-0.0220023430883884,-0.268658131361008,-0.962984204292297,0.153616309165955,-0.398828774690628,-0.90406721830368,-0.181554704904556,-0.376886129379272,-0.90829211473465,0.00507656438276172,-0.418460726737976,-0.908220648765564,0.0153336795046926,-0.460174649953842,-0.887695789337158,-0.0245537273585796,-0.419715851545334,-0.90732330083847,\r\n-0.107224196195602,-0.432995140552521,-0.894996166229248,0.0153336795046926,-0.460174649953842,-0.887695789337158,-0.00410875398665667,-0.219404086470604,-0.975625336170197,0.150765225291252,-0.252522945404053,-0.955772817134857,-0.0220023430883884,-0.268658131361008,-0.962984204292297,0.142031759023666,-0.281582325696945,-0.948966979980469,0.150765225291252,-0.252522945404053,-0.955772817134857,0.0513524003326893,-0.265273094177246,-0.962804794311523,0.00122136948630214,-0.294912487268448,-0.955523431301117,0.0513524003326893,-0.265273094177246,-0.962804794311523,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.214989140629768,-0.306070059537888,-0.927416145801544,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.708158612251282,-0.258495688438416,-0.657032191753387,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.657176077365875,-0.375792860984802,-0.653375148773193,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.726775884628296,-0.347711354494095,-0.592362642288208,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.59831029176712,-0.359159499406815,-0.716260492801666,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.537398278713226,-0.159633949398994,-0.828082084655762,-0.540938377380371,-0.306918770074844,-0.783062160015106,\r\n-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.109968408942223,0.565733850002289,-0.81722217798233,-0.308033972978592,0.3783118724823,-0.872923254966736,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.109968408942223,0.565733850002289,-0.81722217798233,0.00153441622387618,0.583904922008514,-0.811820507049561,0.00153441622387618,0.583904922008514,-0.811820507049561,-0.0111999306827784,0.634685873985291,-0.772689044475555,-0.0935413539409637,0.646535038948059,-0.757127642631531,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.772392570972443,-0.259115666151047,-0.579886674880981,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.869036734104156,-0.214371383190155,-0.445892244577408,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.950120210647583,-0.231974214315414,-0.208469271659851,\r\n-0.946984827518463,-0.231841638684273,-0.222416669130325,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.883548498153687,-0.292759418487549,-0.365559577941895,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.947317242622375,-0.229885801672935,-0.223030120134354,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.91323447227478,-0.135544985532761,-0.384226888418198,0.00153441622387618,0.583904922008514,-0.811820507049561,0.0528155565261841,0.450483798980713,-0.891220927238464,-0.0111999306827784,0.634685873985291,-0.772689044475555,0.0528155565261841,0.450483798980713,-0.891220927238464,0.0899290964007378,0.29490339756012,-0.951285779476166,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.0225108247250319,0.382572919130325,-0.923650979995728,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.127872914075851,0.516778528690338,-0.846515417098999,-0.0225108247250319,0.382572919130325,-0.923650979995728,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.234388694167137,0.258083373308182,-0.937259197235107,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.408923387527466,0.312061250209808,-0.857554256916046,\r\n-0.408923387527466,0.312061250209808,-0.857554256916046,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.502891540527344,0.387832880020142,-0.772454261779785,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.543114185333252,0.421452075242996,-0.726226508617401,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.70468544960022,0.403835147619247,-0.583382725715637,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.855507731437683,0.349959224462509,-0.381621450185776,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.827836632728577,0.395495116710663,-0.397831648588181,-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.37423112988472,-0.305149972438812,-0.875690877437592,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.378685563802719,0.0496931932866573,-0.9241903424263,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.410067945718765,0.190987855195999,-0.891833961009979,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.373873323202133,-0.285002589225769,-0.882605314254761,\r\n-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.457796484231949,-0.253508269786835,-0.852147817611694,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.624813914299011,0.36167848110199,-0.691950917243958,-0.773576498031616,0.326829165220261,-0.542919814586639,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.773576498031616,0.326829165220261,-0.542919814586639,-0.879276216030121,0.387515097856522,-0.276957094669342,-0.915606617927551,0.298152804374695,-0.26975804567337,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.915606617927551,0.298152804374695,-0.26975804567337,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.948862433433533,0.193628698587418,-0.24933448433876,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.959616541862488,0.0164229515939951,-0.28083136677742,\r\n-0.95622980594635,0.171099498867989,-0.237380310893059,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.887513101100922,0.228008985519409,-0.400415122509003,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.211627751588821,-0.276292592287064,-0.937483847141266,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.162300661206245,-0.367526561021805,-0.915741562843323,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.162300661206245,-0.367526561021805,-0.915741562843323,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.066212885081768,-0.320741981267929,-0.944849371910095,-0.0245537273585796,-0.419715851545334,-0.90732330083847,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.0220023430883884,-0.268658131361008,-0.962984204292297,0.00507656438276172,-0.418460726737976,-0.908220648765564,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.181554704904556,-0.376886129379272,-0.90829211473465,0.0153336795046926,-0.460174649953842,-0.887695789337158,-0.107224196195602,-0.432995140552521,-0.894996166229248,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.107224196195602,-0.432995140552521,-0.894996166229248,-0.0245537273585796,-0.419715851545334,-0.90732330083847,0.0918355733156204,-0.230178147554398,-0.968805491924286,0.150765225291252,-0.252522945404053,-0.955772817134857,-0.00410875398665667,-0.219404086470604,-0.975625336170197,\r\n-0.00410875398665667,-0.219404086470604,-0.975625336170197,-0.0220023430883884,-0.268658131361008,-0.962984204292297,-0.169338315725327,-0.239793062210083,-0.955941259860992,0.0918355733156204,-0.230178147554398,-0.968805491924286,0.0513524003326893,-0.265273094177246,-0.962804794311523,0.150765225291252,-0.252522945404053,-0.955772817134857,-0.0933457314968109,-0.336520612239838,-0.937038064002991,-0.194888725876808,-0.289258897304535,-0.937202036380768,0.0513524003326893,-0.265273094177246,-0.962804794311523,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.214989140629768,-0.306070059537888,-0.927416145801544,-0.214989140629768,-0.306070059537888,-0.927416145801544,-0.194888725876808,-0.289258897304535,-0.937202036380768,-0.0933457314968109,-0.336520612239838,-0.937038064002991,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.441172420978546,-0.27358466386795,-0.854703545570374,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.585437655448914,-0.409654825925827,-0.699603796005249,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.540938377380371,-0.306918770074844,-0.783062160015106,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.480337142944336,-0.233257189393044,-0.845498204231262,\r\n-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.398372083902359,0.213821679353714,-0.891952812671661,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.0415656194090843,0.515590369701386,-0.855826318264008,-0.109968408942223,0.565733850002289,-0.81722217798233,0.00153441622387618,0.583904922008514,-0.811820507049561,-0.109968408942223,0.565733850002289,-0.81722217798233,-0.0415656194090843,0.515590369701386,-0.855826318264008,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.869345009326935,-0.227877080440521,-0.438532948493958,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.791765868663788,-0.228105559945107,-0.566634356975555,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.761748373508453,-0.217664420604706,-0.610214233398438,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.950120210647583,-0.231974214315414,-0.208469271659851,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.872847735881805,-0.142802432179451,-0.466630697250366,\r\n-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.918430328369141,-0.0780628025531769,-0.387803792953491,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.951723277568817,-0.151373192667961,-0.267037332057953,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.921006619930267,-0.240540325641632,-0.306409925222397,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.915042281150818,0.0237774178385735,-0.40265628695488,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.0415656194090843,0.515590369701386,-0.855826318264008,0.0528155565261841,0.450483798980713,-0.891220927238464,0.00153441622387618,0.583904922008514,-0.811820507049561,0.120711542665958,0.193958535790443,-0.973554670810699,0.0899290964007378,0.29490339756012,-0.951285779476166,0.0528155565261841,0.450483798980713,-0.891220927238464,0.0899290964007378,0.29490339756012,-0.951285779476166,-0.0225108247250319,0.382572919130325,-0.923650979995728,-0.0260032657533884,0.496308326721191,-0.867756724357605,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.0225108247250319,0.382572919130325,-0.923650979995728,0.0287211183458567,0.197573333978653,-0.979867219924927,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.141543656587601,0.219176098704338,-0.965363740921021,\r\n-0.234388694167137,0.258083373308182,-0.937259197235107,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.316981166601181,0.367413580417633,-0.874374091625214,-0.234388694167137,0.258083373308182,-0.937259197235107,-0.408923387527466,0.312061250209808,-0.857554256916046,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.408923387527466,0.312061250209808,-0.857554256916046,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.51471734046936,0.149308383464813,-0.844258785247803,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.892825067043304,0.251589298248291,-0.37358546257019,-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.37423112988472,-0.305149972438812,-0.875690877437592,-0.37423112988472,-0.305149972438812,-0.875690877437592,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.291634052991867,-0.247162386775017,-0.924045562744141,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.466011255979538,0.125832453370094,-0.875785171985626,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.612705647945404,-0.0234951861202717,-0.789961755275726,\r\n-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.511252045631409,0.0462703518569469,-0.858184337615967,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.457796484231949,-0.253508269786835,-0.852147817611694,-0.403432548046112,-0.147508949041367,-0.903041064739227,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.373873323202133,-0.285002589225769,-0.882605314254761,-0.457796484231949,-0.253508269786835,-0.852147817611694,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.286887228488922,0.265083938837051,-0.920557498931885,-0.206938251852989,0.293891906738281,-0.933168768882751,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.254304528236389,0.376440495252609,-0.89085441827774,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.362066149711609,0.396450936794281,-0.843643665313721,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.425833851099014,0.305626541376114,-0.851620674133301,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.701673865318298,0.19036240875721,-0.686597228050232,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.938324928283691,0.231022760272026,-0.257244318723679,\r\n-0.701673865318298,0.19036240875721,-0.686597228050232,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.512191236019135,0.28931799530983,-0.808674871921539,-0.861400067806244,0.313744962215424,-0.399441957473755,-0.701673865318298,0.19036240875721,-0.686597228050232,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.915606617927551,0.298152804374695,-0.26975804567337,-0.948862433433533,0.193628698587418,-0.24933448433876,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.919801354408264,0.307293623685837,-0.243999987840652,-0.95622980594635,0.171099498867989,-0.237380310893059,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.948862433433533,0.193628698587418,-0.24933448433876,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.815312206745148,-0.520652890205383,-0.253350436687469,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.22276671230793,-0.281813234090805,-0.933250308036804,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.170781970024109,-0.296841263771057,-0.939531087875366,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.162300661206245,-0.367526561021805,-0.915741562843323,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.162300661206245,-0.367526561021805,-0.915741562843323,\r\n-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.148747339844704,-0.406046837568283,-0.901665151119232,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.282263547182083,-0.300830990076065,-0.910948932170868,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.0220023430883884,-0.268658131361008,-0.962984204292297,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.107224196195602,-0.432995140552521,-0.894996166229248,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.107224196195602,-0.432995140552521,-0.894996166229248,-0.21900562942028,-0.399651408195496,-0.89012086391449,0.0918355733156204,-0.230178147554398,-0.968805491924286,-0.00410875398665667,-0.219404086470604,-0.975625336170197,0.0463563427329063,-0.208436787128448,-0.97693657875061,-0.0220023430883884,-0.268658131361008,-0.962984204292297,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.169338315725327,-0.239793062210083,-0.955941259860992,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.00410875398665667,-0.219404086470604,-0.975625336170197,-0.169338315725327,-0.239793062210083,-0.955941259860992,0.0513524003326893,-0.265273094177246,-0.962804794311523,0.0918355733156204,-0.230178147554398,-0.968805491924286,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.0933457314968109,-0.336520612239838,-0.937038064002991,0.0513524003326893,-0.265273094177246,-0.962804794311523,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.214989140629768,-0.306070059537888,-0.927416145801544,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.0933457314968109,-0.336520612239838,-0.937038064002991,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.214989140629768,-0.306070059537888,-0.927416145801544,\r\n-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.703449904918671,-0.256338357925415,-0.662909269332886,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.620311677455902,-0.351682931184769,-0.701093792915344,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.536610782146454,-0.398898363113403,-0.743591845035553,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.480337142944336,-0.233257189393044,-0.845498204231262,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.357608050107956,0.0390422008931637,-0.933055222034454,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.219289317727089,0.479563027620316,-0.849665462970734,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.0415656194090843,0.515590369701386,-0.855826318264008,-0.72879296541214,-0.234539583325386,-0.64331316947937,\r\n-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.819686412811279,-0.348336696624756,-0.454725801944733,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.733417093753815,-0.334760934114456,-0.591636955738068,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.695348143577576,-0.112719848752022,-0.709778130054474,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.970241963863373,-0.157043695449829,-0.184303238987923,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.91323447227478,-0.135544985532761,-0.384226888418198,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.915042281150818,0.0237774178385735,-0.40265628695488,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.969045400619507,-0.0876475945115089,-0.230800330638886,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.877556204795837,-0.307225197553635,-0.368113607168198,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.819686412811279,-0.348336696624756,-0.454725801944733,\r\n-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.864408254623413,-0.326377093791962,-0.382460713386536,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.915042281150818,0.0237774178385735,-0.40265628695488,0.0255121402442455,0.360666155815125,-0.932345986366272,0.0528155565261841,0.450483798980713,-0.891220927238464,-0.0415656194090843,0.515590369701386,-0.855826318264008,0.120711542665958,0.193958535790443,-0.973554670810699,0.166296094655991,0.0984353125095367,-0.981150329113007,0.0899290964007378,0.29490339756012,-0.951285779476166,0.0255121402442455,0.360666155815125,-0.932345986366272,0.120711542665958,0.193958535790443,-0.973554670810699,0.0528155565261841,0.450483798980713,-0.891220927238464,0.0287211183458567,0.197573333978653,-0.979867219924927,-0.0225108247250319,0.382572919130325,-0.923650979995728,0.0899290964007378,0.29490339756012,-0.951285779476166,0.0287211183458567,0.197573333978653,-0.979867219924927,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.138142704963684,0.378583580255508,-0.915199935436249,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.234388694167137,0.258083373308182,-0.937259197235107,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.234388694167137,0.258083373308182,-0.937259197235107,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.323908805847168,0.233416542410851,-0.916842222213745,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.459452629089355,0.305283814668655,-0.834089279174805,\r\n-0.51471734046936,0.149308383464813,-0.844258785247803,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.587468981742859,0.313221454620361,-0.746171772480011,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.51471734046936,0.149308383464813,-0.844258785247803,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.785137355327606,0.259488791227341,-0.562338590621948,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.37423112988472,-0.305149972438812,-0.875690877437592,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.567556262016296,0.0908717587590218,-0.818304359912872,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.513704061508179,-0.0825687423348427,-0.853985011577606,-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.484062790870667,0.228775411844254,-0.844597458839417,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.457796484231949,-0.253508269786835,-0.852147817611694,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.302016198635101,0.192121744155884,-0.933742702007294,\r\n-0.181886538863182,0.396313339471817,-0.899918258190155,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.131957665085793,0.262721687555313,-0.955805599689484,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.386983603239059,0.425527423620224,-0.818028092384338,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.701673865318298,0.19036240875721,-0.686597228050232,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.701673865318298,0.19036240875721,-0.686597228050232,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.948862433433533,0.193628698587418,-0.24933448433876,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.815312206745148,-0.520652890205383,-0.253350436687469,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.949812173843384,-0.0815585032105446,-0.302001446485519,-0.872026205062866,-0.385271638631821,-0.301887333393097,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.815312206745148,-0.520652890205383,-0.253350436687469,\r\n-0.911614656448364,-0.11439111083746,-0.394807904958725,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.901128768920898,0.0775044932961464,-0.426567554473877,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.333235144615173,-0.331664741039276,-0.882583022117615,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.181554704904556,-0.376886129379272,-0.90829211473465,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.405952602624893,-0.299545586109161,-0.863408803939819,0.0463563427329063,-0.208436787128448,-0.97693657875061,-0.00410875398665667,-0.219404086470604,-0.975625336170197,-0.0364181399345398,-0.279557079076767,-0.95943808555603,0.0527092404663563,-0.286954522132874,-0.956492960453033,0.0918355733156204,-0.230178147554398,-0.968805491924286,0.0463563427329063,-0.208436787128448,-0.97693657875061,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.169338315725327,-0.239793062210083,-0.955941259860992,-0.26678678393364,-0.228634163737297,-0.936243116855621,\r\n-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.169338315725327,-0.239793062210083,-0.955941259860992,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.0933457314968109,-0.336520612239838,-0.937038064002991,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.323456257581711,-0.219111889600754,-0.920524775981903,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.0933457314968109,-0.336520612239838,-0.937038064002991,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.624857425689697,-0.253599256277084,-0.738403975963593,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.482302874326706,-0.364739239215851,-0.796460330486298,-0.401436358690262,-0.413082420825958,-0.817442119121552,\r\n-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.455771833658218,-0.314112991094589,-0.832829535007477,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.195151299238205,-0.0405297726392746,-0.979935348033905,0.0255121402442455,0.360666155815125,-0.932345986366272,-0.169748738408089,0.384181439876556,-0.907518565654755,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.479420155286789,-0.417449176311493,-0.771940648555756,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.169748738408089,0.384181439876556,-0.907518565654755,0.0255121402442455,0.360666155815125,-0.932345986366272,-0.0415656194090843,0.515590369701386,-0.855826318264008,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.671473562717438,-0.208146393299103,-0.71119487285614,-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.786183178424835,-0.321406424045563,-0.527838706970215,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.755571603775024,-0.275546580553055,-0.594294130802155,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.733417093753815,-0.334760934114456,-0.591636955738068,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.72879296541214,-0.234539583325386,-0.64331316947937,-0.733417093753815,-0.334760934114456,-0.591636955738068,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.872847735881805,-0.142802432179451,-0.466630697250366,-0.959607183933258,-0.133039996027946,-0.2478998452425,\r\n-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.959607183933258,-0.133039996027946,-0.2478998452425,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.978363335132599,-0.0683197528123856,-0.195288300514221,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.926927208900452,0.0708386078476906,-0.368493795394897,-0.915042281150818,0.0237774178385735,-0.40265628695488,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.909499704837799,-0.239239662885666,-0.339962601661682,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.81941294670105,-0.359069228172302,-0.446801453828812,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.920426726341248,-0.120375908911228,-0.371919512748718,-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.915042281150818,0.0237774178385735,-0.40265628695488,-0.926927208900452,0.0708386078476906,-0.368493795394897,-0.953864932060242,0.00901734456419945,-0.300100594758987,0.15589627623558,0.042690422385931,-0.986850440502167,0.166296094655991,0.0984353125095367,-0.981150329113007,0.120711542665958,0.193958535790443,-0.973554670810699,0.0287211183458567,0.197573333978653,-0.979867219924927,0.0899290964007378,0.29490339756012,-0.951285779476166,0.166296094655991,0.0984353125095367,-0.981150329113007,0.0931055322289467,0.162509068846703,-0.982304453849792,0.120711542665958,0.193958535790443,-0.973554670810699,\r\n0.0255121402442455,0.360666155815125,-0.932345986366272,0.0287211183458567,0.197573333978653,-0.979867219924927,-0.0231192894279957,0.166160255670547,-0.985827684402466,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.153882533311844,0.222355082631111,-0.962745189666748,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.344174087047577,0.258138239383698,-0.902722954750061,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.459452629089355,0.305283814668655,-0.834089279174805,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.51471734046936,0.149308383464813,-0.844258785247803,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.51471734046936,0.149308383464813,-0.844258785247803,-0.633381247520447,0.0502744130790234,-0.772204995155334,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.855538666248322,-8.30153803690337e-005,-0.51773875951767,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.375721991062164,-0.284176170825958,-0.882086634635925,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.568050265312195,0.187350988388062,-0.801385283470154,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.568050265312195,0.187350988388062,-0.801385283470154,\r\n-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.467706888914108,-0.281977295875549,-0.837698578834534,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.542384743690491,-0.219101473689079,-0.811056852340698,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.181886538863182,0.396313339471817,-0.899918258190155,-0.302016198635101,0.192121744155884,-0.933742702007294,-0.181886538863182,0.396313339471817,-0.899918258190155,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.125817522406578,0.229355692863464,-0.965176582336426,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.314837038516998,0.478343576192856,-0.819795668125153,\r\n-0.364594429731369,0.488851338624954,-0.792524516582489,-0.314200818538666,0.457831770181656,-0.831665635108948,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.431786060333252,0.363605946302414,-0.825440108776093,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.93914932012558,0.303015470504761,-0.16180257499218,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.938324928283691,0.231022760272026,-0.257244318723679,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.93914932012558,0.303015470504761,-0.16180257499218,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.93982458114624,0.202914670109749,-0.274873226881027,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.872026205062866,-0.385271638631821,-0.301887333393097,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.298591941595078,-0.268830686807632,-0.915736079216003,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.288108736276627,-0.35255840420723,-0.890334665775299,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.333235144615173,-0.331664741039276,-0.882583022117615,-0.292497545480728,-0.386238187551498,-0.87479430437088,-0.333235144615173,-0.331664741039276,-0.882583022117615,-0.405952602624893,-0.299545586109161,-0.863408803939819,\r\n-0.21900562942028,-0.399651408195496,-0.89012086391449,-0.522940456867218,-0.240865737199783,-0.817628800868988,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.315705806016922,-0.372178971767426,-0.8728187084198,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.0364181399345398,-0.279557079076767,-0.95943808555603,0.0527092404663563,-0.286954522132874,-0.956492960453033,0.0463563427329063,-0.208436787128448,-0.97693657875061,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.169338315725327,-0.239793062210083,-0.955941259860992,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.26678678393364,-0.228634163737297,-0.936243116855621,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.0801679342985153,-0.356312602758408,-0.930921196937561,0.0326130464673042,-0.34137436747551,-0.939361393451691,-0.0713118836283684,-0.384293675422668,-0.920452535152435,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.55579137802124,-0.218890324234962,-0.801986753940582,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.529803276062012,-0.39433890581131,-0.750869572162628,-0.484600633382797,-0.35612890124321,-0.798958241939545,\r\n-0.558707892894745,-0.311118632555008,-0.768798172473907,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.433773368597031,-0.325704216957092,-0.840093612670898,-0.341922372579575,-0.152353152632713,-0.927295804023743,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.195151299238205,-0.0405297726392746,-0.979935348033905,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.379805773496628,-0.382855653762817,-0.842121720314026,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.404653638601303,-0.357931286096573,-0.841510832309723,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.195151299238205,-0.0405297726392746,-0.979935348033905,0.0252595748752356,0.18456906080246,-0.982494831085205,0.0255121402442455,0.360666155815125,-0.932345986366272,-0.0941809341311455,0.21168877184391,-0.972788631916046,0.0653253495693207,0.271906346082687,-0.960103869438171,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.661698579788208,-0.297342211008072,-0.68828958272934,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.781034469604492,-0.376808911561966,-0.497996002435684,\r\n-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.733417093753815,-0.334760934114456,-0.591636955738068,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.892801880836487,-0.282649397850037,-0.350733518600464,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.926927208900452,0.0708386078476906,-0.368493795394897,-0.939945042133331,0.032684963196516,-0.339757114648819,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.841214120388031,-0.313652157783508,-0.440432816743851,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.893088161945343,-0.249644339084625,-0.374260693788528,-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.951150417327881,0.0848149061203003,-0.296848833560944,\r\n-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.926927208900452,0.0708386078476906,-0.368493795394897,0.15589627623558,0.042690422385931,-0.986850440502167,0.194640666246414,0.0822518989443779,-0.977419853210449,0.166296094655991,0.0984353125095367,-0.981150329113007,0.108368642628193,0.0333712324500084,-0.993550479412079,0.15589627623558,0.042690422385931,-0.986850440502167,0.120711542665958,0.193958535790443,-0.973554670810699,0.0287211183458567,0.197573333978653,-0.979867219924927,0.166296094655991,0.0984353125095367,-0.981150329113007,0.131345391273499,0.0953184068202972,-0.98674350976944,0.0931055322289467,0.162509068846703,-0.982304453849792,0.108368642628193,0.0333712324500084,-0.993550479412079,0.120711542665958,0.193958535790443,-0.973554670810699,0.0931055322289467,0.162509068846703,-0.982304453849792,0.0255121402442455,0.360666155815125,-0.932345986366272,0.0653253495693207,0.271906346082687,-0.960103869438171,0.0287211183458567,0.197573333978653,-0.979867219924927,0.131345391273499,0.0953184068202972,-0.98674350976944,-0.0231192894279957,0.166160255670547,-0.985827684402466,-0.141543656587601,0.219176098704338,-0.965363740921021,-0.0231192894279957,0.166160255670547,-0.985827684402466,-0.153882533311844,0.222355082631111,-0.962745189666748,-0.153882533311844,0.222355082631111,-0.962745189666748,-0.101454392075539,0.183892011642456,-0.977696597576141,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.247409641742706,0.232769653201103,-0.940535306930542,-0.101454392075539,0.183892011642456,-0.977696597576141,-0.179966792464256,-0.16630756855011,-0.969512045383453,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.633381247520447,0.0502744130790234,-0.772204995155334,\r\n-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.688138365745544,0.117142379283905,-0.716060817241669,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.612705647945404,-0.0234951861202717,-0.789961755275726,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.619634807109833,-0.162312850356102,-0.767923951148987,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.54130756855011,0.297010213136673,-0.786619901657104,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.181886538863182,0.396313339471817,-0.899918258190155,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.181886538863182,0.396313339471817,-0.899918258190155,\r\n-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.228384792804718,0.328399479389191,-0.9165118932724,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.411800593137741,0.531272113323212,-0.740385055541992,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.689438819885254,0.313934087753296,-0.652778148651123,-0.93914932012558,0.303015470504761,-0.16180257499218,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.93914932012558,0.303015470504761,-0.16180257499218,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.959616541862488,0.0164229515939951,-0.28083136677742,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.522940456867218,-0.240865737199783,-0.817628800868988,\r\n-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.383544743061066,-0.24897226691246,-0.889329016208649,-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.376372933387756,-0.336426138877869,-0.86322695016861,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.333235144615173,-0.331664741039276,-0.882583022117615,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.522940456867218,-0.240865737199783,-0.817628800868988,-0.522602498531342,-0.266758650541306,-0.80976927280426,-0.378736466169357,-0.28886091709137,-0.879271268844604,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.0364181399345398,-0.279557079076767,-0.95943808555603,0.0326130464673042,-0.34137436747551,-0.939361393451691,0.0527092404663563,-0.286954522132874,-0.956492960453033,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.0164644978940487,-0.415471345186234,-0.909457147121429,-0.0801679342985153,-0.356312602758408,-0.930921196937561,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.0801679342985153,-0.356312602758408,-0.930921196937561,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.0713118836283684,-0.384293675422668,-0.920452535152435,\r\n0.0326130464673042,-0.34137436747551,-0.939361393451691,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.281603962182999,-0.392421096563339,-0.875616788864136,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.468044459819794,-0.361269891262054,-0.806485176086426,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.465031772851944,-0.411953121423721,-0.783607006072998,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.612074136734009,-0.280522614717484,-0.739372789859772,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.159890562295914,-0.166754469275475,-0.972948014736176,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.159890562295914,-0.166754469275475,-0.972948014736176,-0.195151299238205,-0.0405297726392746,-0.979935348033905,-0.355441510677338,-0.279048383235931,-0.892072439193726,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.159890562295914,-0.166754469275475,-0.972948014736176,-0.320718675851822,-0.361272245645523,-0.875569403171539,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.244801342487335,-0.467659682035446,-0.849333047866821,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.320888936519623,-0.406474649906158,-0.855458080768585,\r\n-0.159890562295914,-0.166754469275475,-0.972948014736176,0.0252595748752356,0.18456906080246,-0.982494831085205,-0.195151299238205,-0.0405297726392746,-0.979935348033905,0.0252595748752356,0.18456906080246,-0.982494831085205,0.0653253495693207,0.271906346082687,-0.960103869438171,-0.0941809341311455,0.21168877184391,-0.972788631916046,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.781034469604492,-0.376808911561966,-0.497996002435684,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.677470326423645,-0.377763688564301,-0.63113260269165,-0.736175715923309,-0.400543570518494,-0.545536398887634,-0.686579167842865,-0.397617310285568,-0.608694791793823,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.885612308979034,-0.240249693393707,-0.397455334663391,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.944738626480103,-0.0790024101734161,-0.318162560462952,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.926927208900452,0.0708386078476906,-0.368493795394897,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.951150417327881,0.0848149061203003,-0.296848833560944,-0.861968278884888,-0.0664295554161072,-0.502590954303741,\r\n-0.942461371421814,-0.0794298052787781,-0.324741989374161,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.7835733294487,-0.293935090303421,-0.547370970249176,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.759994506835938,-0.048678070306778,-0.648103773593903,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.953864932060242,0.00901734456419945,-0.300100594758987,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.951150417327881,0.0848149061203003,-0.296848833560944,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.953864932060242,0.00901734456419945,-0.300100594758987,0.138947993516922,0.0195860378444195,-0.990105926990509,0.194640666246414,0.0822518989443779,-0.977419853210449,0.15589627623558,0.042690422385931,-0.986850440502167,0.131345391273499,0.0953184068202972,-0.98674350976944,0.166296094655991,0.0984353125095367,-0.981150329113007,0.194640666246414,0.0822518989443779,-0.977419853210449,0.108368642628193,0.0333712324500084,-0.993550479412079,0.138947993516922,0.0195860378444195,-0.990105926990509,0.15589627623558,0.042690422385931,-0.986850440502167,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.108368642628193,0.0333712324500084,-0.993550479412079,0.0931055322289467,0.162509068846703,-0.982304453849792,0.0653253495693207,0.271906346082687,-0.960103869438171,0.12447976320982,0.229076698422432,-0.965416252613068,0.0931055322289467,0.162509068846703,-0.982304453849792,-0.0231192894279957,0.166160255670547,-0.985827684402466,0.131345391273499,0.0953184068202972,-0.98674350976944,0.129056483507156,0.0935076251626015,-0.987218618392944,-0.0231192894279957,0.166160255670547,-0.985827684402466,-0.0109696900472045,0.138890355825424,-0.990246951580048,\r\n-0.153882533311844,0.222355082631111,-0.962745189666748,-0.101454392075539,0.183892011642456,-0.977696597576141,-0.153882533311844,0.222355082631111,-0.962745189666748,-0.0109696900472045,0.138890355825424,-0.990246951580048,-0.224310472607613,0.249642997980118,-0.941999554634094,-0.101454392075539,0.183892011642456,-0.977696597576141,0.0122800199314952,-0.219115883111954,-0.975621402263641,-0.179966792464256,-0.16630756855011,-0.969512045383453,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.179966792464256,-0.16630756855011,-0.969512045383453,-0.224310472607613,0.249642997980118,-0.941999554634094,0.0122800199314952,-0.219115883111954,-0.975621402263641,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.364479631185532,0.214819878339767,-0.906094312667847,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.481747806072235,0.114774145185947,-0.86876106262207,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.659293711185455,-0.434320062398911,-0.613757014274597,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.695344924926758,0.231574133038521,-0.680344521999359,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.68336009979248,-0.108444057404995,-0.721982479095459,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.712136447429657,-0.203407406806946,-0.671927750110626,\r\n-0.52253133058548,0.498782128095627,-0.691503703594208,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.611398339271545,-0.249871894717216,-0.750836849212646,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.181886538863182,0.396313339471817,-0.899918258190155,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.0855274796485901,0.323590308427811,-0.942323863506317,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.115232050418854,0.254101604223251,-0.960288405418396,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.330387651920319,0.398757487535477,-0.855474293231964,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.338877618312836,0.31237131357193,-0.88746041059494,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.342201977968216,0.57621955871582,-0.742205262184143,\r\n-0.411800593137741,0.531272113323212,-0.740385055541992,-0.364594429731369,0.488851338624954,-0.792524516582489,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.484771013259888,0.424848824739456,-0.76452624797821,-0.411800593137741,0.531272113323212,-0.740385055541992,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.644588768482208,0.541783213615417,-0.53942197561264,-0.940951883792877,0.260915130376816,-0.21571446955204,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.937365531921387,0.13921982049942,-0.319317370653152,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.437761574983597,-0.225656762719154,-0.870312392711639,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.522940456867218,-0.240865737199783,-0.817628800868988,-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.440258145332336,-0.329571008682251,-0.835197925567627,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.522940456867218,-0.240865737199783,-0.817628800868988,-0.412333905696869,-0.259233385324478,-0.87337201833725,-0.405952602624893,-0.299545586109161,-0.863408803939819,\r\n-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.0413120128214359,-0.310537606477737,-0.949662923812866,0.0326130464673042,-0.34137436747551,-0.939361393451691,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.270963132381439,-0.316726595163345,-0.908990144729614,-0.0164644978940487,-0.415471345186234,-0.909457147121429,-0.150404050946236,-0.375380605459213,-0.914586186408997,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.0164644978940487,-0.415471345186234,-0.909457147121429,0.0349652245640755,-0.351396948099136,-0.93557333946228,-0.0801679342985153,-0.356312602758408,-0.930921196937561,-0.0801679342985153,-0.356312602758408,-0.930921196937561,0.0349652245640755,-0.351396948099136,-0.93557333946228,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0413120128214359,-0.310537606477737,-0.949662923812866,-0.0364181399345398,-0.279557079076767,-0.95943808555603,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.0713118836283684,-0.384293675422668,-0.920452535152435,-0.0413120128214359,-0.310537606477737,-0.949662923812866,-0.0377987250685692,-0.319107562303543,-0.946964383125305,0.0326130464673042,-0.34137436747551,-0.939361393451691,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.273004144430161,-0.468324780464172,-0.840321719646454,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.468044459819794,-0.361269891262054,-0.806485176086426,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.468044459819794,-0.361269891262054,-0.806485176086426,\r\n-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.484600633382797,-0.35612890124321,-0.798958241939545,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.178575158119202,-0.452206969261169,-0.873853385448456,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.244801342487335,-0.467659682035446,-0.849333047866821,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.321511268615723,-0.408934265375137,-0.854050993919373,-0.159890562295914,-0.166754469275475,-0.972948014736176,-0.204029604792595,-0.377666294574738,-0.903183221817017,0.0716335400938988,0.0460454262793064,-0.996367573738098,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.401436358690262,-0.413082420825958,-0.817442119121552,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.24965050816536,-0.435869127511978,-0.864692211151123,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.320888936519623,-0.406474649906158,-0.855458080768585,-0.24965050816536,-0.435869127511978,-0.864692211151123,-0.244801342487335,-0.467659682035446,-0.849333047866821,0.0716335400938988,0.0460454262793064,-0.996367573738098,0.0252595748752356,0.18456906080246,-0.982494831085205,-0.159890562295914,-0.166754469275475,-0.972948014736176,0.0252595748752356,0.18456906080246,-0.982494831085205,0.12447976320982,0.229076698422432,-0.965416252613068,0.0653253495693207,0.271906346082687,-0.960103869438171,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.677470326423645,-0.377763688564301,-0.63113260269165,\r\n-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.611979722976685,-0.37159675359726,-0.698137998580933,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.72732001543045,-0.375844180583954,-0.574235618114471,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.725380480289459,-0.427630811929703,-0.539402365684509,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.951150417327881,0.0848149061203003,-0.296848833560944,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.785047471523285,-0.191522836685181,-0.589083433151245,-0.759994506835938,-0.048678070306778,-0.648103773593903,-0.759994506835938,-0.048678070306778,-0.648103773593903,\r\n-0.861968278884888,-0.0664295554161072,-0.502590954303741,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.951150417327881,0.0848149061203003,-0.296848833560944,0.138947993516922,0.0195860378444195,-0.990105926990509,0.193073749542236,0.0709658712148666,-0.978614449501038,0.194640666246414,0.0822518989443779,-0.977419853210449,0.131345391273499,0.0953184068202972,-0.98674350976944,0.194640666246414,0.0822518989443779,-0.977419853210449,0.129056483507156,0.0935076251626015,-0.987218618392944,0.138947993516922,0.0195860378444195,-0.990105926990509,0.108368642628193,0.0333712324500084,-0.993550479412079,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.177434310317039,0.128450736403465,-0.975713789463043,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.0931055322289467,0.162509068846703,-0.982304453849792,0.0931055322289467,0.162509068846703,-0.982304453849792,0.12447976320982,0.229076698422432,-0.965416252613068,0.177434310317039,0.128450736403465,-0.975713789463043,-0.0109696900472045,0.138890355825424,-0.990246951580048,-0.0231192894279957,0.166160255670547,-0.985827684402466,0.129056483507156,0.0935076251626015,-0.987218618392944,-0.101454392075539,0.183892011642456,-0.977696597576141,-0.0109696900472045,0.138890355825424,-0.990246951580048,0.086953230202198,-0.249041989445686,-0.964581310749054,0.0122800199314952,-0.219115883111954,-0.975621402263641,-0.101454392075539,0.183892011642456,-0.977696597576141,0.086953230202198,-0.249041989445686,-0.964581310749054,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.179966792464256,-0.16630756855011,-0.969512045383453,-0.135134726762772,-0.766969919204712,-0.627292394638062,-0.179966792464256,-0.16630756855011,-0.969512045383453,0.0122800199314952,-0.219115883111954,-0.975621402263641,\r\n0.0224629174917936,-0.761556148529053,-0.647709429264069,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.131664723157883,-0.940042853355408,-0.314616680145264,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.812371432781219,0.152749836444855,-0.562778830528259,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.767533600330353,0.0266404096037149,-0.640454769134521,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.632832050323486,0.36867767572403,-0.680881917476654,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.712136447429657,-0.203407406806946,-0.671927750110626,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.612530052661896,-0.245720714330673,-0.751284301280975,\r\n-0.644588768482208,0.541783213615417,-0.53942197561264,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.238658770918846,0.249162405729294,-0.938594698905945,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.314837038516998,0.478343576192856,-0.819795668125153,-0.31983807682991,0.377885848283768,-0.868853092193604,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.411800593137741,0.531272113323212,-0.740385055541992,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.411800593137741,0.531272113323212,-0.740385055541992,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.500646829605103,-0.158343181014061,-0.851046442985535,-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.462596118450165,-0.373524248600006,-0.804042458534241,\r\n-0.514056086540222,-0.197783499956131,-0.834642350673676,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.419867157936096,-0.335006356239319,-0.84349399805069,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.392122954130173,-0.294570952653885,-0.871474266052246,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.405952602624893,-0.299545586109161,-0.863408803939819,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.140359401702881,-0.429708749055862,-0.891991913318634,-0.0164644978940487,-0.415471345186234,-0.909457147121429,-0.0810816064476967,-0.432158917188644,-0.898144960403442,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.102121971547604,-0.432875245809555,-0.895650565624237,0.0349652245640755,-0.351396948099136,-0.93557333946228,-0.0164644978940487,-0.415471345186234,-0.909457147121429,0.0349652245640755,-0.351396948099136,-0.93557333946228,-0.0285044610500336,-0.299947917461395,-0.953529596328735,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0413120128214359,-0.310537606477737,-0.949662923812866,-0.0481764264404774,-0.291733354330063,-0.955285608768463,-0.0285044610500336,-0.299947917461395,-0.953529596328735,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.0413120128214359,-0.310537606477737,-0.949662923812866,\r\n0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.466873705387115,-0.517709374427795,-0.716941952705383,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.546520531177521,-0.34550803899765,-0.762849450111389,-0.468044459819794,-0.361269891262054,-0.806485176086426,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.468044459819794,-0.361269891262054,-0.806485176086426,-0.417733281850815,-0.385603249073029,-0.822683930397034,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.0440878681838512,-0.364459037780762,-0.930175125598907,-0.178575158119202,-0.452206969261169,-0.873853385448456,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.178575158119202,-0.452206969261169,-0.873853385448456,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.244801342487335,-0.467659682035446,-0.849333047866821,-0.0485636405646801,-0.22188925743103,-0.973861753940582,0.0716335400938988,0.0460454262793064,-0.996367573738098,-0.204029604792595,-0.377666294574738,-0.903183221817017,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.22501577436924,-0.398930311203003,-0.888944506645203,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.24965050816536,-0.435869127511978,-0.864692211151123,\r\n-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.244801342487335,-0.467659682035446,-0.849333047866821,-0.24965050816536,-0.435869127511978,-0.864692211151123,0.12447976320982,0.229076698422432,-0.965416252613068,0.0252595748752356,0.18456906080246,-0.982494831085205,0.0716335400938988,0.0460454262793064,-0.996367573738098,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.675247371196747,-0.397136390209198,-0.621549367904663,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.617714941501617,-0.394058883190155,-0.680548071861267,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.716176211833954,-0.2941033244133,-0.632925510406494,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.857552707195282,-0.0828394144773483,-0.507681846618652,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.918603420257568,0.0567133538424969,-0.391089886426926,-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.951150417327881,0.0848149061203003,-0.296848833560944,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.899882256984711,0.0611213594675064,-0.431828647851944,-0.823623180389404,0.155752882361412,-0.545330822467804,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.65686446428299,-0.0788591355085373,-0.749873399734497,\r\n-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.759994506835938,-0.048678070306778,-0.648103773593903,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.930936694145203,0.0944055989384651,-0.35276660323143,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.823623180389404,0.155752882361412,-0.545330822467804,-0.899882256984711,0.0611213594675064,-0.431828647851944,0.193073749542236,0.0709658712148666,-0.978614449501038,0.138947993516922,0.0195860378444195,-0.990105926990509,0.166628435254097,0.00462835328653455,-0.986008882522583,0.193073749542236,0.0709658712148666,-0.978614449501038,0.200829371809959,0.0272610150277615,-0.97924679517746,0.194640666246414,0.0822518989443779,-0.977419853210449,0.129056483507156,0.0935076251626015,-0.987218618392944,0.194640666246414,0.0822518989443779,-0.977419853210449,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.138947993516922,0.0195860378444195,-0.990105926990509,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.166628435254097,0.00462835328653455,-0.986008882522583,0.177434310317039,0.128450736403465,-0.975713789463043,0.217150941491127,-0.019330907613039,-0.975946545600891,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.12447976320982,0.229076698422432,-0.965416252613068,0.0716335400938988,0.0460454262793064,-0.996367573738098,0.177434310317039,0.128450736403465,-0.975713789463043,-0.0109696900472045,0.138890355825424,-0.990246951580048,0.129056483507156,0.0935076251626015,-0.987218618392944,0.086953230202198,-0.249041989445686,-0.964581310749054,0.0122800199314952,-0.219115883111954,-0.975621402263641,0.086953230202198,-0.249041989445686,-0.964581310749054,\r\n0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.135134726762772,-0.766969919204712,-0.627292394638062,-0.179966792464256,-0.16630756855011,-0.969512045383453,0.0224629174917936,-0.761556148529053,-0.647709429264069,-0.298933833837509,-0.34359472990036,-0.890270233154297,-0.135134726762772,-0.766969919204712,-0.627292394638062,-0.0975367203354836,-0.909852921962738,-0.403303980827332,0.0224629174917936,-0.761556148529053,-0.647709429264069,0.0122800199314952,-0.219115883111954,-0.975621402263641,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.131664723157883,-0.940042853355408,-0.314616680145264,-0.300439089536667,-0.398137241601944,-0.8667311668396,-0.704134881496429,0.519202530384064,-0.484378755092621,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.864938855171204,0.091694675385952,-0.49342954158783,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.781826138496399,-0.0754482075572014,-0.618914604187012,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.773737370967865,-0.221209809184074,-0.593630015850067,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.786470770835876,-0.190541192889214,-0.587501168251038,\r\n-0.683844387531281,-0.237955421209335,-0.689734697341919,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.612530052661896,-0.245720714330673,-0.751284301280975,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.342988699674606,0.312997877597809,-0.885658502578735,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.342201977968216,0.57621955871582,-0.742205262184143,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.52253133058548,0.498782128095627,-0.691503703594208,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.508554756641388,-0.322577029466629,-0.798320710659027,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.54980456829071,-0.20352777838707,-0.810118019580841,\r\n-0.595977425575256,-0.179554313421249,-0.782669246196747,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.449890613555908,-0.399316608905792,-0.798839509487152,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.345568418502808,-0.305597066879272,-0.88723886013031,-0.218141451478004,-0.411404103040695,-0.884963750839233,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.218141451478004,-0.411404103040695,-0.884963750839233,-0.140359401702881,-0.429708749055862,-0.891991913318634,-0.320262908935547,-0.34529635310173,-0.882157623767853,-0.0810816064476967,-0.432158917188644,-0.898144960403442,-0.140359401702881,-0.429708749055862,-0.891991913318634,-0.0314796641469002,-0.48737296462059,-0.872626185417175,-0.0314796641469002,-0.48737296462059,-0.872626185417175,0.0526674501597881,-0.469965755939484,-0.881111919879913,-0.0810816064476967,-0.432158917188644,-0.898144960403442,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.102121971547604,-0.432875245809555,-0.895650565624237,-0.0164644978940487,-0.415471345186234,-0.909457147121429,0.102121971547604,-0.432875245809555,-0.895650565624237,0.143722042441368,-0.385757982730865,-0.911336719989777,0.0349652245640755,-0.351396948099136,-0.93557333946228,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.0285044610500336,-0.299947917461395,-0.953529596328735,0.0349652245640755,-0.351396948099136,-0.93557333946228,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.0413120128214359,-0.310537606477737,-0.949662923812866,\r\n-0.0285044610500336,-0.299947917461395,-0.953529596328735,-0.0377987250685692,-0.319107562303543,-0.946964383125305,-0.0154617121443152,-0.192800477147102,-0.981116116046906,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.265234917402267,-0.220446556806564,-0.938644587993622,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.0377987250685692,-0.319107562303543,-0.946964383125305,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.0154617121443152,-0.192800477147102,-0.981116116046906,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.388722628355026,-0.497172772884369,-0.775702118873596,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.0222223624587059,-0.477812319993973,-0.878180801868439,-0.0440878681838512,-0.364459037780762,-0.930175125598907,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.178575158119202,-0.452206969261169,-0.873853385448456,-0.0440878681838512,-0.364459037780762,-0.930175125598907,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.114777162671089,-0.583899617195129,-0.80367112159729,-0.19080676138401,-0.506123781204224,-0.841089367866516,\r\n-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.244801342487335,-0.467659682035446,-0.849333047866821,0.0942559093236923,0.0348977632820606,-0.994936108589172,0.0716335400938988,0.0460454262793064,-0.996367573738098,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.22501577436924,-0.398930311203003,-0.888944506645203,-0.322284519672394,-0.404185056686401,-0.856018126010895,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.22501577436924,-0.398930311203003,-0.888944506645203,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.264031618833542,-0.428376942873001,-0.864164590835571,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.341091722249985,-0.342934340238571,-0.875244140625,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.571921050548553,-0.293924391269684,-0.765842378139496,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.571921050548553,-0.293924391269684,-0.765842378139496,-0.641013562679291,-0.336829513311386,-0.689671993255615,-0.692781388759613,-0.2418113052845,-0.679397583007813,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.502432942390442,-0.446883291006088,-0.740173161029816,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.697298526763916,-0.17324760556221,-0.695528507232666,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.910437524318695,0.187431320548058,-0.368745028972626,\r\n-0.86978679895401,0.0514388866722584,-0.490739077329636,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.823623180389404,0.155752882361412,-0.545330822467804,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.662489831447601,-0.148764252662659,-0.734150111675262,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.800420999526978,0.0686246901750565,-0.595497071743011,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.828288674354553,0.274377077817917,-0.488523334264755,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.813234448432922,0.213219940662384,-0.541467308998108,-0.823623180389404,0.155752882361412,-0.545330822467804,0.193073749542236,0.0709658712148666,-0.978614449501038,0.166628435254097,0.00462835328653455,-0.986008882522583,0.268094033002853,-0.280555307865143,-0.921636700630188,0.200829371809959,0.0272610150277615,-0.97924679517746,0.193073749542236,0.0709658712148666,-0.978614449501038,0.268094033002853,-0.280555307865143,-0.921636700630188,0.210640445351601,0.0624849386513233,-0.975564479827881,0.194640666246414,0.0822518989443779,-0.977419853210449,\r\n0.200829371809959,0.0272610150277615,-0.97924679517746,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.194640666246414,0.0822518989443779,-0.977419853210449,0.210640445351601,0.0624849386513233,-0.975564479827881,0.122116506099701,-0.257380098104477,-0.958562970161438,0.129056483507156,0.0935076251626015,-0.987218618392944,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.228898495435715,-0.277976989746094,-0.93291699886322,0.166628435254097,0.00462835328653455,-0.986008882522583,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.223087131977081,0.105007097125053,-0.969126164913177,0.217150941491127,-0.019330907613039,-0.975946545600891,0.177434310317039,0.128450736403465,-0.975713789463043,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.217150941491127,-0.019330907613039,-0.975946545600891,0.223087131977081,0.105007097125053,-0.969126164913177,0.177434310317039,0.128450736403465,-0.975713789463043,0.0716335400938988,0.0460454262793064,-0.996367573738098,0.086953230202198,-0.249041989445686,-0.964581310749054,0.129056483507156,0.0935076251626015,-0.987218618392944,0.122116506099701,-0.257380098104477,-0.958562970161438,0.00572602171450853,-0.780423045158386,-0.625225484371185,0.0621635727584362,-0.858838558197021,-0.508460283279419,0.086953230202198,-0.249041989445686,-0.964581310749054,-0.135134726762772,-0.766969919204712,-0.627292394638062,0.0224629174917936,-0.761556148529053,-0.647709429264069,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.135134726762772,-0.766969919204712,-0.627292394638062,0.0224629174917936,-0.761556148529053,-0.647709429264069,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.770202279090881,0.313256144523621,-0.555570721626282,-0.704134881496429,0.519202530384064,-0.484378755092621,\r\n-0.704134881496429,0.519202530384064,-0.484378755092621,-0.647423267364502,0.462016522884369,-0.606121838092804,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.905496656894684,-0.0314723514020443,-0.423184514045715,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.905496656894684,-0.0314723514020443,-0.423184514045715,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.865983545780182,-0.00982970278710127,-0.499975770711899,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.720656991004944,-0.193176999688149,-0.665834784507751,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.318371951580048,0.309995859861374,-0.895846903324127,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.339164316654205,0.24343267083168,-0.908684730529785,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.278348684310913,0.543727219104767,-0.791759133338928,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.274271726608276,0.409582704305649,-0.870067179203033,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.318371951580048,0.309995859861374,-0.895846903324127,\r\n-0.339164316654205,0.24343267083168,-0.908684730529785,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.416753530502319,0.586041808128357,-0.694889426231384,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.445047408342361,-0.45111358165741,-0.77358204126358,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.54980456829071,-0.20352777838707,-0.810118019580841,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.0958615466952324,-0.491611450910568,-0.865522146224976,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.2832270860672,-0.333959609270096,-0.899029076099396,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.275473415851593,-0.406819939613342,-0.870983242988586,-0.0958615466952324,-0.491611450910568,-0.865522146224976,-0.218141451478004,-0.411404103040695,-0.884963750839233,-0.345568418502808,-0.305597066879272,-0.88723886013031,\r\n-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.218141451478004,-0.411404103040695,-0.884963750839233,-0.0314796641469002,-0.48737296462059,-0.872626185417175,-0.140359401702881,-0.429708749055862,-0.891991913318634,-0.0314796641469002,-0.48737296462059,-0.872626185417175,0.104125693440437,-0.526333689689636,-0.843878269195557,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.114675775170326,-0.457287669181824,-0.881894171237946,0.102121971547604,-0.432875245809555,-0.895650565624237,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.163971468806267,-0.391687959432602,-0.905369400978088,0.143722042441368,-0.385757982730865,-0.911336719989777,0.102121971547604,-0.432875245809555,-0.895650565624237,0.0349652245640755,-0.351396948099136,-0.93557333946228,0.143722042441368,-0.385757982730865,-0.911336719989777,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.0254711881279945,-0.191700100898743,-0.98112291097641,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.0154617121443152,-0.192800477147102,-0.981116116046906,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.265234917402267,-0.220446556806564,-0.938644587993622,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.254744678735733,-0.366667717695236,-0.894795954227448,-0.265234917402267,-0.220446556806564,-0.938644587993622,0.0752171501517296,-0.190575927495956,-0.978786528110504,-0.0154617121443152,-0.192800477147102,-0.981116116046906,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.373894512653351,-0.354451060295105,-0.857068955898285,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.5619957447052,-0.356004148721695,-0.746606767177582,-0.571921050548553,-0.293924391269684,-0.765842378139496,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.470683395862579,-0.338735222816467,-0.814687311649323,\r\n-0.470683395862579,-0.338735222816467,-0.814687311649323,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.386344701051712,-0.360655069351196,-0.848920226097107,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.389995962381363,-0.354316920042038,-0.849919140338898,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.0222223624587059,-0.477812319993973,-0.878180801868439,0.164749816060066,-0.180806919932365,-0.969621598720551,-0.0440878681838512,-0.364459037780762,-0.930175125598907,-0.114777162671089,-0.583899617195129,-0.80367112159729,-0.0222223624587059,-0.477812319993973,-0.878180801868439,-0.19080676138401,-0.506123781204224,-0.841089367866516,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.0440878681838512,-0.364459037780762,-0.930175125598907,0.142449393868446,-0.0454128347337246,-0.988759696483612,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.114777162671089,-0.583899617195129,-0.80367112159729,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.028219148516655,-0.467500180006027,-0.883542358875275,0.223087131977081,0.105007097125053,-0.969126164913177,0.0716335400938988,0.0460454262793064,-0.996367573738098,0.0942559093236923,0.0348977632820606,-0.994936108589172,0.142449393868446,-0.0454128347337246,-0.988759696483612,0.0942559093236923,0.0348977632820606,-0.994936108589172,-0.0485636405646801,-0.22188925743103,-0.973861753940582,-0.22501577436924,-0.398930311203003,-0.888944506645203,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.177796214818954,-0.277152329683304,-0.944232523441315,\r\n-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.571921050548553,-0.293924391269684,-0.765842378139496,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.697298526763916,-0.17324760556221,-0.695528507232666,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.697298526763916,-0.17324760556221,-0.695528507232666,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.772338330745697,-0.058863390237093,-0.632478058338165,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.910437524318695,0.187431320548058,-0.368745028972626,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.813234448432922,0.213219940662384,-0.541467308998108,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.823623180389404,0.155752882361412,-0.545330822467804,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.724294066429138,-0.0223079156130552,-0.689130127429962,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.769016623497009,0.0258189346641302,-0.638706982135773,\r\n-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.557266473770142,-0.105129763484001,-0.823651432991028,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.596965670585632,-0.219040662050247,-0.771785616874695,-0.828288674354553,0.274377077817917,-0.488523334264755,-0.880540788173676,0.267255216836929,-0.39143642783165,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.829302966594696,0.20382285118103,-0.520300567150116,-0.828288674354553,0.274377077817917,-0.488523334264755,-0.813234448432922,0.213219940662384,-0.541467308998108,0.305595815181732,-0.377114504575729,-0.874297142028809,0.268094033002853,-0.280555307865143,-0.921636700630188,0.166628435254097,0.00462835328653455,-0.986008882522583,0.268094033002853,-0.280555307865143,-0.921636700630188,0.209985747933388,-0.464636713266373,-0.860243320465088,0.200829371809959,0.0272610150277615,-0.97924679517746,0.210640445351601,0.0624849386513233,-0.975564479827881,0.200829371809959,0.0272610150277615,-0.97924679517746,0.184106051921844,-0.283181399106979,-0.941229581832886,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.210640445351601,0.0624849386513233,-0.975564479827881,0.184106051921844,-0.283181399106979,-0.941229581832886,0.122116506099701,-0.257380098104477,-0.958562970161438,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.145729184150696,-0.562732815742493,-0.813691973686218,0.228898495435715,-0.277976989746094,-0.93291699886322,0.305595815181732,-0.377114504575729,-0.874297142028809,0.166628435254097,0.00462835328653455,-0.986008882522583,0.177179425954819,-0.20524138212204,-0.962540030479431,0.228898495435715,-0.277976989746094,-0.93291699886322,0.122733540832996,-0.00124290073290467,-0.992438852787018,\r\n0.217150941491127,-0.019330907613039,-0.975946545600891,0.223087131977081,0.105007097125053,-0.969126164913177,0.262039810419083,0.00340650184080005,-0.965050995349884,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.177179425954819,-0.20524138212204,-0.962540030479431,0.122733540832996,-0.00124290073290467,-0.992438852787018,0.231036499142647,-0.253220528364182,-0.939415454864502,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.217150941491127,-0.019330907613039,-0.975946545600891,0.086953230202198,-0.249041989445686,-0.964581310749054,0.122116506099701,-0.257380098104477,-0.958562970161438,0.00572602171450853,-0.780423045158386,-0.625225484371185,0.00572602171450853,-0.780423045158386,-0.625225484371185,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.0171088427305222,-0.982673048973084,-0.184555768966675,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,-0.704134881496429,0.519202530384064,-0.484378755092621,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.704134881496429,0.519202530384064,-0.484378755092621,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.888289213180542,0.174162968993187,-0.424981594085693,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.905496656894684,-0.0314723514020443,-0.423184514045715,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.90817791223526,0.0787967666983604,-0.411100506782532,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.905496656894684,-0.0314723514020443,-0.423184514045715,\r\n-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.839598834514618,-0.150059267878532,-0.522068917751312,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.786470770835876,-0.190541192889214,-0.587501168251038,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.339164316654205,0.24343267083168,-0.908684730529785,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.342951983213425,0.505471587181091,-0.791758954524994,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.339164316654205,0.24343267083168,-0.908684730529785,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.326850950717926,0.654034674167633,-0.682207405567169,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.380788147449493,0.733650207519531,-0.562812268733978,\r\n-0.444404244422913,0.720345079898834,-0.532548248767853,-0.382738053798676,0.661181569099426,-0.645252168178558,-0.444404244422913,0.720345079898834,-0.532548248767853,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.462596118450165,-0.373524248600006,-0.804042458534241,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.420771986246109,-0.44057422876358,-0.792997598648071,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.0958615466952324,-0.491611450910568,-0.865522146224976,-0.288917899131775,-0.514691650867462,-0.807229042053223,-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.0636266842484474,-0.41273632645607,-0.908625483512878,0.050019983202219,-0.467829436063766,-0.882402122020721,-0.0958615466952324,-0.491611450910568,-0.865522146224976,0.0310928989201784,-0.509135842323303,-0.860124289989471,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.140494927763939,-0.423880100250244,-0.894755125045776,-0.0314796641469002,-0.48737296462059,-0.872626185417175,-0.218141451478004,-0.411404103040695,-0.884963750839233,0.104125693440437,-0.526333689689636,-0.843878269195557,-0.0314796641469002,-0.48737296462059,-0.872626185417175,0.0292371269315481,-0.529263138771057,-0.847953736782074,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.104125693440437,-0.526333689689636,-0.843878269195557,0.119341820478439,-0.471734315156937,-0.873627007007599,\r\n0.116906128823757,-0.417220324277878,-0.901254713535309,0.102121971547604,-0.432875245809555,-0.895650565624237,0.114675775170326,-0.457287669181824,-0.881894171237946,0.114675775170326,-0.457287669181824,-0.881894171237946,0.0526674501597881,-0.469965755939484,-0.881111919879913,0.119341820478439,-0.471734315156937,-0.873627007007599,0.143722042441368,-0.385757982730865,-0.911336719989777,0.163971468806267,-0.391687959432602,-0.905369400978088,0.127108246088028,-0.30937796831131,-0.942405760288239,0.116906128823757,-0.417220324277878,-0.901254713535309,0.163971468806267,-0.391687959432602,-0.905369400978088,0.102121971547604,-0.432875245809555,-0.895650565624237,0.127108246088028,-0.30937796831131,-0.942405760288239,0.0324667915701866,-0.308944672346115,-0.950525522232056,0.143722042441368,-0.385757982730865,-0.911336719989777,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.0254711881279945,-0.191700100898743,-0.98112291097641,-0.0254711881279945,-0.191700100898743,-0.98112291097641,-0.0154617121443152,-0.192800477147102,-0.981116116046906,0.0752171501517296,-0.190575927495956,-0.978786528110504,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.144043818116188,-0.199689090251923,-0.969213902950287,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.265234917402267,-0.220446556806564,-0.938644587993622,0.0752171501517296,-0.190575927495956,-0.978786528110504,0.0324667915701866,-0.308944672346115,-0.950525522232056,0.075593613088131,-0.202224150300026,-0.976417422294617,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.400371819734573,-0.190955832600594,-0.896235585212708,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.518859505653381,-0.264353483915329,-0.812958717346191,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.264258623123169,-0.203980058431625,-0.942634284496307,\r\n-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.225107133388519,-0.379763424396515,-0.897277176380157,0.164749816060066,-0.180806919932365,-0.969621598720551,-0.0222223624587059,-0.477812319993973,-0.878180801868439,0.138996049761772,-0.364224582910538,-0.920880258083344,0.142449393868446,-0.0454128347337246,-0.988759696483612,-0.0440878681838512,-0.364459037780762,-0.930175125598907,0.164749816060066,-0.180806919932365,-0.969621598720551,-0.114777162671089,-0.583899617195129,-0.80367112159729,0.0410522893071175,-0.602549910545349,-0.797024548053741,-0.0222223624587059,-0.477812319993973,-0.878180801868439,-0.146691545844078,-0.515169203281403,-0.844441890716553,-0.028219148516655,-0.467500180006027,-0.883542358875275,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.114777162671089,-0.583899617195129,-0.80367112159729,-0.0339294895529747,-0.575830817222595,-0.816864490509033,0.0410522893071175,-0.602549910545349,-0.797024548053741,-0.028219148516655,-0.467500180006027,-0.883542358875275,-0.146342292428017,-0.450124770402908,-0.88089245557785,-0.0316658467054367,-0.43362021446228,-0.900539100170136,0.142449393868446,-0.0454128347337246,-0.988759696483612,0.223087131977081,0.105007097125053,-0.969126164913177,0.0942559093236923,0.0348977632820606,-0.994936108589172,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.129671335220337,-0.304223269224167,-0.943733751773834,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.125269755721092,-0.387642979621887,-0.913258075714111,0.00213934388011694,-0.376257479190826,-0.926512598991394,-0.193125218153,-0.307903707027435,-0.931610345840454,-0.204784870147705,-0.296622067689896,-0.932779967784882,\r\n-0.177796214818954,-0.277152329683304,-0.944232523441315,-0.263016551733017,-0.32181903719902,-0.90953540802002,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.177796214818954,-0.277152329683304,-0.944232523441315,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.603766977787018,-0.170708507299423,-0.77866804599762,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.697298526763916,-0.17324760556221,-0.695528507232666,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.799167394638062,0.129582270979881,-0.58697509765625,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.813234448432922,0.213219940662384,-0.541467308998108,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.65686446428299,-0.0788591355085373,-0.749873399734497,-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.572504580020905,-0.109878256917,-0.812505483627319,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.811066389083862,0.104645632207394,-0.575517654418945,\r\n-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.828288674354553,0.274377077817917,-0.488523334264755,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.813234448432922,0.213219940662384,-0.541467308998108,-0.828288674354553,0.274377077817917,-0.488523334264755,0.305595815181732,-0.377114504575729,-0.874297142028809,0.222991123795509,-0.701775014400482,-0.676599383354187,0.268094033002853,-0.280555307865143,-0.921636700630188,0.268094033002853,-0.280555307865143,-0.921636700630188,0.333616733551025,-0.758487343788147,-0.5598184466362,0.209985747933388,-0.464636713266373,-0.860243320465088,0.184106051921844,-0.283181399106979,-0.941229581832886,0.200829371809959,0.0272610150277615,-0.97924679517746,0.209985747933388,-0.464636713266373,-0.860243320465088,0.218870893120766,-0.0266100205481052,-0.975390911102295,0.184106051921844,-0.283181399106979,-0.941229581832886,0.145729184150696,-0.562732815742493,-0.813691973686218,0.00572602171450853,-0.780423045158386,-0.625225484371185,0.122116506099701,-0.257380098104477,-0.958562970161438,0.145729184150696,-0.562732815742493,-0.813691973686218,0.228898495435715,-0.277976989746094,-0.93291699886322,0.227752178907394,-0.768937289714813,-0.597381174564362,0.305595815181732,-0.377114504575729,-0.874297142028809,0.177179425954819,-0.20524138212204,-0.962540030479431,0.165429159998894,-0.606055200099945,-0.77802962064743,0.228898495435715,-0.277976989746094,-0.93291699886322,0.142449393868446,-0.0454128347337246,-0.988759696483612,0.262039810419083,0.00340650184080005,-0.965050995349884,0.223087131977081,0.105007097125053,-0.969126164913177,0.217150941491127,-0.019330907613039,-0.975946545600891,\r\n0.262039810419083,0.00340650184080005,-0.965050995349884,0.231036499142647,-0.253220528364182,-0.939415454864502,0.202091038227081,-0.322533398866653,-0.924733102321625,0.177179425954819,-0.20524138212204,-0.962540030479431,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.202091038227081,-0.322533398866653,-0.924733102321625,0.196610108017921,-0.0717840865254402,-0.977850377559662,0.231036499142647,-0.253220528364182,-0.939415454864502,0.0235619340091944,-0.945497214794159,-0.324776351451874,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,0.00572602171450853,-0.780423045158386,-0.625225484371185,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,0.0621635727584362,-0.858838558197021,-0.508460283279419,-0.704134881496429,0.519202530384064,-0.484378755092621,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.843243300914764,0.348182439804077,-0.409523606300354,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.520459890365601,0.61777251958847,-0.589473128318787,-0.444404244422913,0.720345079898834,-0.532548248767853,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.905496656894684,-0.0314723514020443,-0.423184514045715,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.940976023674011,0.117897182703018,-0.317276418209076,-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.905496656894684,-0.0314723514020443,-0.423184514045715,\r\n-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.861806094646454,-0.209738418459892,-0.461843997240067,-0.900045454502106,-0.165011122822762,-0.403347820043564,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.827447950839996,-0.276551961898804,-0.488721579313278,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.667959094047546,-0.258080363273621,-0.698015034198761,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.733160793781281,-0.228178858757019,-0.640632152557373,-0.339164316654205,0.24343267083168,-0.908684730529785,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.276531517505646,0.460387170314789,-0.843548357486725,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.342951983213425,0.505471587181091,-0.791758954524994,-0.299390196800232,0.603561401367188,-0.738971650600433,-0.342951983213425,0.505471587181091,-0.791758954524994,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.306641757488251,0.318955034017563,-0.896793365478516,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.339164316654205,0.24343267083168,-0.908684730529785,\r\n-0.392333775758743,0.678701102733612,-0.620837330818176,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.444404244422913,0.720345079898834,-0.532548248767853,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.320356875658035,-0.542375266551971,-0.776659786701202,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.476451873779297,-0.475863575935364,-0.73928838968277,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.0985093414783478,-0.608029425144196,-0.787779152393341,0.0310928989201784,-0.509135842323303,-0.860124289989471,-0.0958615466952324,-0.491611450910568,-0.865522146224976,0.0310928989201784,-0.509135842323303,-0.860124289989471,0.050019983202219,-0.467829436063766,-0.882402122020721,-0.0636266842484474,-0.41273632645607,-0.908625483512878,-0.140494927763939,-0.423880100250244,-0.894755125045776,0.050019983202219,-0.467829436063766,-0.882402122020721,0.0292371269315481,-0.529263138771057,-0.847953736782074,0.0292371269315481,-0.529263138771057,-0.847953736782074,-0.0314796641469002,-0.48737296462059,-0.872626185417175,-0.140494927763939,-0.423880100250244,-0.894755125045776,0.104125693440437,-0.526333689689636,-0.843878269195557,0.0292371269315481,-0.529263138771057,-0.847953736782074,0.136575683951378,-0.539555132389069,-0.830799102783203,0.119341820478439,-0.471734315156937,-0.873627007007599,\r\n0.104125693440437,-0.526333689689636,-0.843878269195557,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.116906128823757,-0.417220324277878,-0.901254713535309,0.114675775170326,-0.457287669181824,-0.881894171237946,0.0949413627386093,-0.446588814258575,-0.889687836170197,0.119341820478439,-0.471734315156937,-0.873627007007599,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.114675775170326,-0.457287669181824,-0.881894171237946,0.127108246088028,-0.30937796831131,-0.942405760288239,0.163971468806267,-0.391687959432602,-0.905369400978088,0.111229635775089,-0.317976832389832,-0.941551208496094,0.116906128823757,-0.417220324277878,-0.901254713535309,0.111229635775089,-0.317976832389832,-0.941551208496094,0.163971468806267,-0.391687959432602,-0.905369400978088,0.127108246088028,-0.30937796831131,-0.942405760288239,0.075593613088131,-0.202224150300026,-0.976417422294617,0.0324667915701866,-0.308944672346115,-0.950525522232056,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.0254711881279945,-0.191700100898743,-0.98112291097641,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.0254711881279945,-0.191700100898743,-0.98112291097641,0.0752171501517296,-0.190575927495956,-0.978786528110504,0.0145459175109863,-0.205700099468231,-0.978506922721863,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.25286078453064,-0.165869474411011,-0.95317816734314,0.0752171501517296,-0.190575927495956,-0.978786528110504,0.075593613088131,-0.202224150300026,-0.976417422294617,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.28833481669426,-0.15749354660511,-0.94448858499527,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.401483088731766,-0.235938102006912,-0.884954512119293,\r\n-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.264258623123169,-0.203980058431625,-0.942634284496307,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.325855165719986,-0.298347681760788,-0.897110342979431,-0.401483088731766,-0.235938102006912,-0.884954512119293,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.264258623123169,-0.203980058431625,-0.942634284496307,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.141315266489983,-0.255377560853958,-0.956458151340485,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.228193864226341,-0.386210143566132,-0.893738746643066,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.265516757965088,-0.35413321852684,-0.896710872650146,0.138996049761772,-0.364224582910538,-0.920880258083344,-0.0222223624587059,-0.477812319993973,-0.878180801868439,0.0410522893071175,-0.602549910545349,-0.797024548053741,0.248754546046257,-0.048444639891386,-0.967354238033295,0.164749816060066,-0.180806919932365,-0.969621598720551,0.138996049761772,-0.364224582910538,-0.920880258083344,0.142449393868446,-0.0454128347337246,-0.988759696483612,0.164749816060066,-0.180806919932365,-0.969621598720551,0.262039810419083,0.00340650184080005,-0.965050995349884,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.028219148516655,-0.467500180006027,-0.883542358875275,0.00247414619661868,-0.626404464244843,-0.779494166374207,0.0410522893071175,-0.602549910545349,-0.797024548053741,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.028219148516655,-0.467500180006027,-0.883542358875275,-0.129671335220337,-0.304223269224167,-0.943733751773834,-0.204784870147705,-0.296622067689896,-0.932779967784882,-0.193125218153,-0.307903707027435,-0.931610345840454,0.00213934388011694,-0.376257479190826,-0.926512598991394,-0.125269755721092,-0.387642979621887,-0.913258075714111,-0.129671335220337,-0.304223269224167,-0.943733751773834,\r\n-0.0316658467054367,-0.43362021446228,-0.900539100170136,0.00213934388011694,-0.376257479190826,-0.926512598991394,0.125851094722748,-0.39662104845047,-0.909314632415771,-0.193125218153,-0.307903707027435,-0.931610345840454,-0.177796214818954,-0.277152329683304,-0.944232523441315,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.37008997797966,-0.129758477210999,-0.919889152050018,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.86150336265564,0.372870594263077,-0.344643831253052,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.812943398952484,0.369720995426178,-0.449921458959579,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.491758435964584,-0.0798335745930672,-0.86706405878067,\r\n-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.811066389083862,0.104645632207394,-0.575517654418945,-0.81542980670929,0.128665640950203,-0.564375162124634,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.769016623497009,0.0258189346641302,-0.638706982135773,-0.811066389083862,0.104645632207394,-0.575517654418945,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.688580811023712,-0.0323025733232498,-0.724439680576324,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.500515401363373,-0.144361302256584,-0.853606462478638,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.537034928798676,-0.101543515920639,-0.837425947189331,-0.491758435964584,-0.0798335745930672,-0.86706405878067,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.828288674354553,0.274377077817917,-0.488523334264755,0.222991123795509,-0.701775014400482,-0.676599383354187,0.305595815181732,-0.377114504575729,-0.874297142028809,0.227752178907394,-0.768937289714813,-0.597381174564362,0.222991123795509,-0.701775014400482,-0.676599383354187,0.311217993497849,-0.76454621553421,-0.564457535743713,0.268094033002853,-0.280555307865143,-0.921636700630188,0.311217993497849,-0.76454621553421,-0.564457535743713,0.333616733551025,-0.758487343788147,-0.5598184466362,0.268094033002853,-0.280555307865143,-0.921636700630188,0.128731489181519,-0.89167720079422,-0.433981388807297,0.209985747933388,-0.464636713266373,-0.860243320465088,0.333616733551025,-0.758487343788147,-0.5598184466362,0.184106051921844,-0.283181399106979,-0.941229581832886,0.209985747933388,-0.464636713266373,-0.860243320465088,0.128731489181519,-0.89167720079422,-0.433981388807297,0.128731489181519,-0.89167720079422,-0.433981388807297,0.145729184150696,-0.562732815742493,-0.813691973686218,\r\n0.184106051921844,-0.283181399106979,-0.941229581832886,0.00572602171450853,-0.780423045158386,-0.625225484371185,0.145729184150696,-0.562732815742493,-0.813691973686218,0.0235619340091944,-0.945497214794159,-0.324776351451874,0.165429159998894,-0.606055200099945,-0.77802962064743,0.227752178907394,-0.768937289714813,-0.597381174564362,0.228898495435715,-0.277976989746094,-0.93291699886322,0.202091038227081,-0.322533398866653,-0.924733102321625,0.165429159998894,-0.606055200099945,-0.77802962064743,0.177179425954819,-0.20524138212204,-0.962540030479431,0.262039810419083,0.00340650184080005,-0.965050995349884,0.274691104888916,-0.121319152414799,-0.95384818315506,0.231036499142647,-0.253220528364182,-0.939415454864502,0.202091038227081,-0.322533398866653,-0.924733102321625,0.231036499142647,-0.253220528364182,-0.939415454864502,0.131250098347664,-0.727537393569946,-0.673396408557892,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,0.0235619340091944,-0.945497214794159,-0.324776351451874,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.444404244422913,0.720345079898834,-0.532548248767853,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.935714721679688,0.200165763497353,-0.290467381477356,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.967147886753082,0.215928986668587,-0.134162321686745,-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.949361085891724,0.0508943870663643,-0.310037285089493,\r\n-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.949361085891724,0.0508943870663643,-0.310037285089493,-0.97693806886673,0.127876102924347,-0.170996144413948,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.703814625740051,-0.352215647697449,-0.616918921470642,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.614548861980438,-0.399672776460648,-0.680140554904938,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.342951983213425,0.505471587181091,-0.791758954524994,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.392333775758743,0.678701102733612,-0.620837330818176,-0.428337424993515,0.558383405208588,-0.710446953773499,\r\n-0.392333775758743,0.678701102733612,-0.620837330818176,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.337864845991135,0.704746961593628,-0.623842000961304,-0.380788147449493,0.733650207519531,-0.562812268733978,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.26153638958931,-0.598311245441437,-0.75737851858139,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.123556740581989,-0.753576874732971,-0.645643353462219,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.254825979471207,-0.66647332906723,-0.700626134872437,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.123556740581989,-0.753576874732971,-0.645643353462219,0.0252189952880144,-0.623008072376251,-0.78180867433548,0.0310928989201784,-0.509135842323303,-0.860124289989471,-0.0985093414783478,-0.608029425144196,-0.787779152393341,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.050019983202219,-0.467829436063766,-0.882402122020721,0.0310928989201784,-0.509135842323303,-0.860124289989471,0.0292371269315481,-0.529263138771057,-0.847953736782074,0.050019983202219,-0.467829436063766,-0.882402122020721,0.136575683951378,-0.539555132389069,-0.830799102783203,0.124196819961071,-0.535040676593781,-0.835647344589233,0.104125693440437,-0.526333689689636,-0.843878269195557,0.136575683951378,-0.539555132389069,-0.830799102783203,0.124196819961071,-0.535040676593781,-0.835647344589233,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.104125693440437,-0.526333689689636,-0.843878269195557,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.0949413627386093,-0.446588814258575,-0.889687836170197,\r\n0.114675775170326,-0.457287669181824,-0.881894171237946,0.0949413627386093,-0.446588814258575,-0.889687836170197,0.0958903953433037,-0.353924781084061,-0.930345237255096,0.116906128823757,-0.417220324277878,-0.901254713535309,0.127108246088028,-0.30937796831131,-0.942405760288239,0.111229635775089,-0.317976832389832,-0.941551208496094,0.0446647368371487,-0.194432035088539,-0.979898571968079,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.111229635775089,-0.317976832389832,-0.941551208496094,0.116906128823757,-0.417220324277878,-0.901254713535309,0.075593613088131,-0.202224150300026,-0.976417422294617,0.127108246088028,-0.30937796831131,-0.942405760288239,0.0446647368371487,-0.194432035088539,-0.979898571968079,-0.0254711881279945,-0.191700100898743,-0.98112291097641,0.0145459175109863,-0.205700099468231,-0.978506922721863,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.281129986047745,-0.395428270101547,-0.874415397644043,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.146759957075119,-0.332683950662613,-0.931548595428467,0.0145459175109863,-0.205700099468231,-0.978506922721863,0.0752171501517296,-0.190575927495956,-0.978786528110504,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.211466237902641,-0.275720089673996,-0.937688887119293,-0.281129986047745,-0.395428270101547,-0.874415397644043,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.25286078453064,-0.165869474411011,-0.95317816734314,-0.359327375888824,-0.356497138738632,-0.86243462562561,0.0461997836828232,-0.10961377620697,-0.992899954319,0.075593613088131,-0.202224150300026,-0.976417422294617,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.264258623123169,-0.203980058431625,-0.942634284496307,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.264258623123169,-0.203980058431625,-0.942634284496307,\r\n-0.141315266489983,-0.255377560853958,-0.956458151340485,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.141315266489983,-0.255377560853958,-0.956458151340485,-0.228193864226341,-0.386210143566132,-0.893738746643066,-0.265516757965088,-0.35413321852684,-0.896710872650146,-0.217474862933159,-0.374802857637405,-0.901236593723297,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.228193864226341,-0.386210143566132,-0.893738746643066,0.138996049761772,-0.364224582910538,-0.920880258083344,0.0410522893071175,-0.602549910545349,-0.797024548053741,0.162005737423897,-0.351618885993958,-0.922018527984619,0.248754546046257,-0.048444639891386,-0.967354238033295,0.262039810419083,0.00340650184080005,-0.965050995349884,0.164749816060066,-0.180806919932365,-0.969621598720551,0.138996049761772,-0.364224582910538,-0.920880258083344,0.162005737423897,-0.351618885993958,-0.922018527984619,0.248754546046257,-0.048444639891386,-0.967354238033295,0.00247414619661868,-0.626404464244843,-0.779494166374207,-0.0339294895529747,-0.575830817222595,-0.816864490509033,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.028219148516655,-0.467500180006027,-0.883542358875275,-0.0312504433095455,-0.45983624458313,-0.887453615665436,0.0410522893071175,-0.602549910545349,-0.797024548053741,0.00247414619661868,-0.626404464244843,-0.779494166374207,0.0436556898057461,-0.636094391345978,-0.770375192165375,-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.129671335220337,-0.304223269224167,-0.943733751773834,-0.193125218153,-0.307903707027435,-0.931610345840454,-0.217474862933159,-0.374802857637405,-0.901236593723297,-0.129671335220337,-0.304223269224167,-0.943733751773834,0.0710292756557465,-0.318096905946732,-0.945393621921539,0.00213934388011694,-0.376257479190826,-0.926512598991394,\r\n0.125851094722748,-0.39662104845047,-0.909314632415771,0.00213934388011694,-0.376257479190826,-0.926512598991394,0.0710292756557465,-0.318096905946732,-0.945393621921539,-0.0403476618230343,-0.388832867145538,-0.920424342155457,-0.0316658467054367,-0.43362021446228,-0.900539100170136,0.125851094722748,-0.39662104845047,-0.909314632415771,-0.193125218153,-0.307903707027435,-0.931610345840454,-0.225107133388519,-0.379763424396515,-0.897277176380157,-0.217474862933159,-0.374802857637405,-0.901236593723297,-0.30338516831398,-0.201418668031693,-0.931336581707001,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.505805611610413,-0.31720906496048,-0.802208781242371,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.60977703332901,-0.300599038600922,-0.733356654644012,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.636663794517517,-0.0796984061598778,-0.767011880874634,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.672991573810577,0.199409082531929,-0.712262749671936,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.816636979579926,0.319690138101578,-0.480522722005844,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.839927494525909,0.281056016683578,-0.464251190423965,\r\n-0.815672636032104,0.196902856230736,-0.543973565101624,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.560523331165314,-0.108100160956383,-0.821052849292755,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.491758435964584,-0.0798335745930672,-0.86706405878067,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.811066389083862,0.104645632207394,-0.575517654418945,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.357620388269424,-0.0874688252806664,-0.929761648178101,-0.483783841133118,-0.0556909218430519,-0.873413801193237,-0.491758435964584,-0.0798335745930672,-0.86706405878067,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.839927494525909,0.281056016683578,-0.464251190423965,-0.86156153678894,0.209455698728561,-0.462428271770477,-0.860347092151642,0.300953418016434,-0.411375433206558,0.227752178907394,-0.768937289714813,-0.597381174564362,0.160131052136421,-0.925731837749481,-0.342605412006378,0.222991123795509,-0.701775014400482,-0.676599383354187,0.222991123795509,-0.701775014400482,-0.676599383354187,0.160131052136421,-0.925731837749481,-0.342605412006378,0.311217993497849,-0.76454621553421,-0.564457535743713,0.311217993497849,-0.76454621553421,-0.564457535743713,0.18714414536953,-0.961242854595184,-0.202458009123802,0.333616733551025,-0.758487343788147,-0.5598184466362,0.128731489181519,-0.89167720079422,-0.433981388807297,0.333616733551025,-0.758487343788147,-0.5598184466362,0.18714414536953,-0.961242854595184,-0.202458009123802,0.128731489181519,-0.89167720079422,-0.433981388807297,0.0235619340091944,-0.945497214794159,-0.324776351451874,\r\n0.145729184150696,-0.562732815742493,-0.813691973686218,0.165429159998894,-0.606055200099945,-0.77802962064743,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.227752178907394,-0.768937289714813,-0.597381174564362,0.131250098347664,-0.727537393569946,-0.673396408557892,0.165429159998894,-0.606055200099945,-0.77802962064743,0.202091038227081,-0.322533398866653,-0.924733102321625,0.253287672996521,0.0104240877553821,-0.967334747314453,0.274691104888916,-0.121319152414799,-0.95384818315506,0.262039810419083,0.00340650184080005,-0.965050995349884,0.354120463132858,-0.438968628644943,-0.825775444507599,0.231036499142647,-0.253220528364182,-0.939415454864502,0.274691104888916,-0.121319152414799,-0.95384818315506,0.131250098347664,-0.727537393569946,-0.673396408557892,0.231036499142647,-0.253220528364182,-0.939415454864502,0.227951779961586,-0.695764601230621,-0.681138336658478,0.128731489181519,-0.89167720079422,-0.433981388807297,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,0.0235619340091944,-0.945497214794159,-0.324776351451874,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.54902458190918,0.701668798923492,-0.454128563404083,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.692715883255005,0.60691112279892,-0.389619529247284,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.878351867198944,0.379420846700668,-0.290753781795502,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.990936279296875,0.0366122238337994,-0.129246979951859,-0.91520357131958,-0.205419704318047,-0.346705943346024,-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.851740956306458,-0.361335724592209,-0.379438698291779,\r\n-0.862965404987335,-0.324420243501663,-0.387352675199509,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.466401338577271,-0.567849338054657,-0.678245365619659,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.508400201797485,-0.494659185409546,-0.704869747161865,-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.428337424993515,0.558383405208588,-0.710446953773499,-0.358223855495453,0.58810156583786,-0.725129067897797,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.358998328447342,0.414975374937058,-0.836011648178101,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.428337424993515,0.558383405208588,-0.710446953773499,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.415062338113785,0.24864037334919,-0.87515777349472,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.392333775758743,0.678701102733612,-0.620837330818176,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.428337424993515,0.558383405208588,-0.710446953773499,\r\n-0.53892582654953,0.683855295181274,-0.491834044456482,-0.392333775758743,0.678701102733612,-0.620837330818176,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.357723504304886,0.769096255302429,-0.529645919799805,-0.0652386173605919,-0.704942882061005,-0.706257224082947,0.0252189952880144,-0.623008072376251,-0.78180867433548,-0.0985093414783478,-0.608029425144196,-0.787779152393341,-0.265296518802643,-0.721285820007324,-0.639815926551819,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.123556740581989,-0.753576874732971,-0.645643353462219,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.123556740581989,-0.753576874732971,-0.645643353462219,-0.265296518802643,-0.721285820007324,-0.639815926551819,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.0310928989201784,-0.509135842323303,-0.860124289989471,0.0252189952880144,-0.623008072376251,-0.78180867433548,0.136575683951378,-0.539555132389069,-0.830799102783203,0.050019983202219,-0.467829436063766,-0.882402122020721,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.136575683951378,-0.539555132389069,-0.830799102783203,0.103286951780319,-0.599865078926086,-0.793406248092651,0.124196819961071,-0.535040676593781,-0.835647344589233,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.124196819961071,-0.535040676593781,-0.835647344589233,0.0353857055306435,-0.485466241836548,-0.873538911342621,0.0903154015541077,-0.455438703298569,-0.885674059391022,-0.0205107424408197,-0.430645138025284,-0.902288198471069,0.0949413627386093,-0.446588814258575,-0.889687836170197,0.0958903953433037,-0.353924781084061,-0.930345237255096,0.0949413627386093,-0.446588814258575,-0.889687836170197,\r\n-0.00913565885275602,-0.261105537414551,-0.965266942977905,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.116906128823757,-0.417220324277878,-0.901254713535309,0.0958903953433037,-0.353924781084061,-0.930345237255096,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.0446647368371487,-0.194432035088539,-0.979898571968079,0.111229635775089,-0.317976832389832,-0.941551208496094,0.075593613088131,-0.202224150300026,-0.976417422294617,0.0446647368371487,-0.194432035088539,-0.979898571968079,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,0.0145459175109863,-0.205700099468231,-0.978506922721863,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.281129986047745,-0.395428270101547,-0.874415397644043,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.0918252021074295,-0.124073207378387,-0.988015115261078,0.0145459175109863,-0.205700099468231,-0.978506922721863,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.281129986047745,-0.395428270101547,-0.874415397644043,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.264258623123169,-0.203980058431625,-0.942634284496307,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.179085209965706,-0.241630986332893,-0.95369952917099,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.357620388269424,-0.0874688252806664,-0.929761648178101,0.0349362604320049,-0.16810816526413,-0.985149264335632,-0.141315266489983,-0.255377560853958,-0.956458151340485,\r\n-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.102551937103271,-0.31008592247963,-0.94516122341156,-0.228193864226341,-0.386210143566132,-0.893738746643066,-0.141315266489983,-0.255377560853958,-0.956458151340485,-0.102551937103271,-0.31008592247963,-0.94516122341156,-0.217474862933159,-0.374802857637405,-0.901236593723297,-0.228193864226341,-0.386210143566132,-0.893738746643066,0.0410522893071175,-0.602549910545349,-0.797024548053741,0.0436556898057461,-0.636094391345978,-0.770375192165375,0.162005737423897,-0.351618885993958,-0.922018527984619,0.253287672996521,0.0104240877553821,-0.967334747314453,0.262039810419083,0.00340650184080005,-0.965050995349884,0.248754546046257,-0.048444639891386,-0.967354238033295,0.248754546046257,-0.048444639891386,-0.967354238033295,0.162005737423897,-0.351618885993958,-0.922018527984619,0.245493248105049,-0.0379306599497795,-0.9686558842659,-0.00368131720460951,-0.615144848823547,-0.788405418395996,0.00247414619661868,-0.626404464244843,-0.779494166374207,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.00368131720460951,-0.615144848823547,-0.788405418395996,0.0436556898057461,-0.636094391345978,-0.770375192165375,0.00247414619661868,-0.626404464244843,-0.779494166374207,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.107303790748119,-0.523965537548065,-0.844953179359436,-0.0403476618230343,-0.388832867145538,-0.920424342155457,-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.0316658467054367,-0.43362021446228,-0.900539100170136,-0.129671335220337,-0.304223269224167,-0.943733751773834,-0.217474862933159,-0.374802857637405,-0.901236593723297,0.00314530031755567,-0.284404307603836,-0.958699107170105,-0.129671335220337,-0.304223269224167,-0.943733751773834,0.00314530031755567,-0.284404307603836,-0.958699107170105,\r\n0.0710292756557465,-0.318096905946732,-0.945393621921539,0.0710292756557465,-0.318096905946732,-0.945393621921539,0.259190291166306,-0.334127008914948,-0.906189501285553,0.125851094722748,-0.39662104845047,-0.909314632415771,0.125851094722748,-0.39662104845047,-0.909314632415771,0.180786103010178,-0.328919172286987,-0.926891803741455,-0.0403476618230343,-0.388832867145538,-0.920424342155457,-0.359327375888824,-0.356497138738632,-0.86243462562561,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.752498388290405,0.426195621490479,-0.502098917961121,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.841853857040405,0.429552733898163,-0.326751321554184,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.84525740146637,0.389383792877197,-0.365950882434845,-0.860347092151642,0.300953418016434,-0.411375433206558,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.839927494525909,0.281056016683578,-0.464251190423965,\r\n-0.839927494525909,0.281056016683578,-0.464251190423965,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.491758435964584,-0.0798335745930672,-0.86706405878067,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.736994028091431,0.0916115269064903,-0.669661819934845,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.585933148860931,0.0192318242043257,-0.810131072998047,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.357620388269424,-0.0874688252806664,-0.929761648178101,0.227752178907394,-0.768937289714813,-0.597381174564362,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.160131052136421,-0.925731837749481,-0.342605412006378,0.18714414536953,-0.961242854595184,-0.202458009123802,0.311217993497849,-0.76454621553421,-0.564457535743713,0.160131052136421,-0.925731837749481,-0.342605412006378,0.128731489181519,-0.89167720079422,-0.433981388807297,0.18714414536953,-0.961242854595184,-0.202458009123802,0.0460121817886829,-0.995894312858582,-0.0779569521546364,0.131250098347664,-0.727537393569946,-0.673396408557892,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.165429159998894,-0.606055200099945,-0.77802962064743,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.227752178907394,-0.768937289714813,-0.597381174564362,0.207055926322937,-0.114383794367313,-0.971619307994843,\r\n0.274691104888916,-0.121319152414799,-0.95384818315506,0.253287672996521,0.0104240877553821,-0.967334747314453,0.231036499142647,-0.253220528364182,-0.939415454864502,0.354120463132858,-0.438968628644943,-0.825775444507599,0.227951779961586,-0.695764601230621,-0.681138336658478,0.274691104888916,-0.121319152414799,-0.95384818315506,0.360367298126221,-0.346794337034225,-0.865949749946594,0.354120463132858,-0.438968628644943,-0.825775444507599,0.131250098347664,-0.727537393569946,-0.673396408557892,0.227951779961586,-0.695764601230621,-0.681138336658478,0.0724783018231392,-0.933188915252686,-0.352001756429672,0.0460121817886829,-0.995894312858582,-0.0779569521546364,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,0.128731489181519,-0.89167720079422,-0.433981388807297,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.423252791166306,0.777546107769012,-0.465058088302612,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.515515387058258,0.75642716884613,-0.402568787336349,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.891240298748016,0.429434150457382,-0.145865246653557,-0.944760799407959,-0.0957520082592964,-0.313462048768997,-0.979825496673584,-0.136031597852707,-0.146414890885353,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.807643473148346,-0.458443731069565,-0.370865702629089,\r\n-0.917388021945953,-0.219320863485336,-0.332110643386841,-0.700347900390625,-0.540658831596375,-0.466047942638397,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.63053959608078,-0.553556203842163,-0.544054388999939,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.364754229784012,-0.635624408721924,-0.680393755435944,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.37019008398056,-0.632234632968903,-0.68061625957489,-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.415062338113785,0.24864037334919,-0.87515777349472,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.345351785421371,0.279068619012833,-0.896020472049713,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.428337424993515,0.558383405208588,-0.710446953773499,-0.415062338113785,0.24864037334919,-0.87515777349472,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.428337424993515,0.558383405208588,-0.710446953773499,-0.384153306484222,0.763704001903534,-0.518827795982361,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.37638732790947,0.815989971160889,-0.43874004483223,\r\n-0.37638732790947,0.815989971160889,-0.43874004483223,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.423252791166306,0.777546107769012,-0.465058088302612,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,0.0252189952880144,-0.623008072376251,-0.78180867433548,-0.0652386173605919,-0.704942882061005,-0.706257224082947,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.0742841139435768,-0.802858531475067,-0.591523408889771,-0.119069054722786,-0.78232616186142,-0.611382186412811,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,-0.123556740581989,-0.753576874732971,-0.645643353462219,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.0252189952880144,-0.623008072376251,-0.78180867433548,0.103286951780319,-0.599865078926086,-0.793406248092651,0.136575683951378,-0.539555132389069,-0.830799102783203,0.0890004187822342,-0.54825896024704,-0.831559360027313,0.0346068479120731,-0.594395697116852,-0.803427696228027,0.124196819961071,-0.535040676593781,-0.835647344589233,0.103286951780319,-0.599865078926086,-0.793406248092651,0.0346068479120731,-0.594395697116852,-0.803427696228027,0.0353857055306435,-0.485466241836548,-0.873538911342621,0.124196819961071,-0.535040676593781,-0.835647344589233,0.0353857055306435,-0.485466241836548,-0.873538911342621,-0.0762206539511681,-0.385050594806671,-0.919742584228516,0.0903154015541077,-0.455438703298569,-0.885674059391022,0.0903154015541077,-0.455438703298569,-0.885674059391022,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.0205107424408197,-0.430645138025284,-0.902288198471069,-0.0205107424408197,-0.430645138025284,-0.902288198471069,-0.0445641949772835,-0.424226880073547,-0.90445864200592,0.0949413627386093,-0.446588814258575,-0.889687836170197,-0.0445641949772835,-0.424226880073547,-0.90445864200592,-0.00913565885275602,-0.261105537414551,-0.965266942977905,0.0949413627386093,-0.446588814258575,-0.889687836170197,0.0958903953433037,-0.353924781084061,-0.930345237255096,\r\n-0.00913565885275602,-0.261105537414551,-0.965266942977905,0.0440123155713081,-0.18331503868103,-0.982068419456482,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.0958903953433037,-0.353924781084061,-0.930345237255096,0.0440123155713081,-0.18331503868103,-0.982068419456482,0.0446647368371487,-0.194432035088539,-0.979898571968079,0.0726591572165489,-0.233515232801437,-0.969634532928467,-0.0235273726284504,-0.071629673242569,-0.997153699398041,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,0.0446647368371487,-0.194432035088539,-0.979898571968079,-0.0235273726284504,-0.071629673242569,-0.997153699398041,0.0145459175109863,-0.205700099468231,-0.978506922721863,-0.0918252021074295,-0.124073207378387,-0.988015115261078,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.146759957075119,-0.332683950662613,-0.931548595428467,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.281129986047745,-0.395428270101547,-0.874415397644043,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.0918252021074295,-0.124073207378387,-0.988015115261078,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,0.0461997836828232,-0.10961377620697,-0.992899954319,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.136633306741714,-0.186983734369278,-0.972814619541168,-0.222266003489494,-0.0728878304362297,-0.972257733345032,\r\n-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.102551937103271,-0.31008592247963,-0.94516122341156,-0.141315266489983,-0.255377560853958,-0.956458151340485,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.0349362604320049,-0.16810816526413,-0.985149264335632,-0.0518389903008938,-0.170377090573311,-0.984014391899109,0.00432160310447216,-0.152928665280342,-0.988227725028992,-0.102551937103271,-0.31008592247963,-0.94516122341156,0.00314530031755567,-0.284404307603836,-0.958699107170105,-0.217474862933159,-0.374802857637405,-0.901236593723297,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.162005737423897,-0.351618885993958,-0.922018527984619,0.0436556898057461,-0.636094391345978,-0.770375192165375,0.248754546046257,-0.048444639891386,-0.967354238033295,0.245493248105049,-0.0379306599497795,-0.9686558842659,0.253287672996521,0.0104240877553821,-0.967334747314453,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.245493248105049,-0.0379306599497795,-0.9686558842659,0.162005737423897,-0.351618885993958,-0.922018527984619,-0.00714215915650129,-0.502908766269684,-0.864309966564178,-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.00368131720460951,-0.615144848823547,-0.788405418395996,-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.0312504433095455,-0.45983624458313,-0.887453615665436,0.00798038486391306,-0.489377975463867,-0.872035205364227,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.0436556898057461,-0.636094391345978,-0.770375192165375,-0.00368131720460951,-0.615144848823547,-0.788405418395996,-0.154155656695366,-0.460174471139908,-0.874342858791351,-0.107303790748119,-0.523965537548065,-0.844953179359436,-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.107303790748119,-0.523965537548065,-0.844953179359436,0.00798038486391306,-0.489377975463867,-0.872035205364227,-0.0312504433095455,-0.45983624458313,-0.887453615665436,-0.154155656695366,-0.460174471139908,-0.874342858791351,\r\n-0.127369657158852,-0.466418564319611,-0.875345945358276,-0.0403476618230343,-0.388832867145538,-0.920424342155457,0.21125303208828,-0.18296192586422,-0.96015465259552,0.0710292756557465,-0.318096905946732,-0.945393621921539,0.00314530031755567,-0.284404307603836,-0.958699107170105,0.0710292756557465,-0.318096905946732,-0.945393621921539,0.21125303208828,-0.18296192586422,-0.96015465259552,0.259190291166306,-0.334127008914948,-0.906189501285553,0.125851094722748,-0.39662104845047,-0.909314632415771,0.259190291166306,-0.334127008914948,-0.906189501285553,0.180786103010178,-0.328919172286987,-0.926891803741455,-0.0403476618230343,-0.388832867145538,-0.920424342155457,0.180786103010178,-0.328919172286987,-0.926891803741455,-0.00484907813370228,-0.279107809066772,-0.96024751663208,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.500619292259216,-0.350020706653595,-0.791748404502869,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.452487021684647,-0.168919622898102,-0.875626385211945,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.406203329563141,0.104205772280693,-0.907821476459503,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.596774756908417,0.339052796363831,-0.727257192134857,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.620287358760834,0.454585462808609,-0.639214754104614,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.843512058258057,0.4429851770401,-0.303729325532913,\r\n-0.805289745330811,0.512339293956757,-0.298356682062149,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.839927494525909,0.281056016683578,-0.464251190423965,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.839927494525909,0.281056016683578,-0.464251190423965,-0.815672636032104,0.196902856230736,-0.543973565101624,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.420646727085114,-0.0272613242268562,-0.906814754009247,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.593649387359619,0.134959742426872,-0.793325960636139,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.448448926210403,0.127977058291435,-0.884598970413208,0.0356921218335629,-0.967829644680023,-0.249061778187752,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.131250098347664,-0.727537393569946,-0.673396408557892,0.274691104888916,-0.121319152414799,-0.95384818315506,0.207055926322937,-0.114383794367313,-0.971619307994843,0.225348249077797,-0.298948049545288,-0.927279949188232,0.156255632638931,0.0143201807513833,-0.987612783908844,0.207055926322937,-0.114383794367313,-0.971619307994843,0.253287672996521,0.0104240877553821,-0.967334747314453,0.354120463132858,-0.438968628644943,-0.825775444507599,0.264453381299973,-0.548283815383911,-0.793378353118896,0.227951779961586,-0.695764601230621,-0.681138336658478,\r\n0.225348249077797,-0.298948049545288,-0.927279949188232,0.360367298126221,-0.346794337034225,-0.865949749946594,0.274691104888916,-0.121319152414799,-0.95384818315506,0.354120463132858,-0.438968628644943,-0.825775444507599,0.360367298126221,-0.346794337034225,-0.865949749946594,0.264453381299973,-0.548283815383911,-0.793378353118896,0.0922555103898048,-0.958398580551147,-0.270112901926041,0.0724783018231392,-0.933188915252686,-0.352001756429672,0.227951779961586,-0.695764601230621,-0.681138336658478,0.0724783018231392,-0.933188915252686,-0.352001756429672,0.0356921218335629,-0.967829644680023,-0.249061778187752,0.131250098347664,-0.727537393569946,-0.673396408557892,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.636055409908295,0.744522571563721,-0.202779799699783,-0.677653789520264,0.673244059085846,-0.295850694179535,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.501685559749603,0.79159814119339,-0.348832070827484,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.851740956306458,-0.361335724592209,-0.379438698291779,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.916669130325317,-0.268224954605103,-0.296265035867691,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.172873601317406,-0.772076070308685,-0.611566126346588,\r\n-0.220756128430367,-0.698548376560211,-0.680659055709839,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.415062338113785,0.24864037334919,-0.87515777349472,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.472766548395157,0.302701979875565,-0.827564597129822,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.532766938209534,0.421120762825012,-0.734041213989258,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.650209128856659,0.668861865997314,-0.360349625349045,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.416987061500549,0.82144170999527,-0.389043867588043,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.0742841139435768,-0.802858531475067,-0.591523408889771,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.0742841139435768,-0.802858531475067,-0.591523408889771,-0.0190428737550974,-0.725783348083496,-0.687659680843353,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,-0.119069054722786,-0.78232616186142,-0.611382186412811,-0.0190428737550974,-0.725783348083496,-0.687659680843353,0.103286951780319,-0.599865078926086,-0.793406248092651,0.0890004187822342,-0.54825896024704,-0.831559360027313,\r\n1.95874818018638e-005,-0.692333459854126,-0.7215775847435,0.0346068479120731,-0.594395697116852,-0.803427696228027,0.103286951780319,-0.599865078926086,-0.793406248092651,-0.0190428737550974,-0.725783348083496,-0.687659680843353,-0.0697716623544693,-0.517069816589355,-0.853094696998596,0.0353857055306435,-0.485466241836548,-0.873538911342621,0.0346068479120731,-0.594395697116852,-0.803427696228027,-0.0844644755125046,-0.43591833114624,-0.896013855934143,-0.0762206539511681,-0.385050594806671,-0.919742584228516,0.0353857055306435,-0.485466241836548,-0.873538911342621,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.0205107424408197,-0.430645138025284,-0.902288198471069,-0.0205107424408197,-0.430645138025284,-0.902288198471069,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.0445641949772835,-0.424226880073547,-0.90445864200592,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.00913565885275602,-0.261105537414551,-0.965266942977905,-0.0445641949772835,-0.424226880073547,-0.90445864200592,-0.00913565885275602,-0.261105537414551,-0.965266942977905,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,0.0440123155713081,-0.18331503868103,-0.982068419456482,0.00483225425705314,-0.052587766200304,-0.998604536056519,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.0440123155713081,-0.18331503868103,-0.982068419456482,-0.0235273726284504,-0.071629673242569,-0.997153699398041,0.0726591572165489,-0.233515232801437,-0.969634532928467,0.00483225425705314,-0.052587766200304,-0.998604536056519,-0.0161028299480677,-0.0856969133019447,-0.996191084384918,-0.0235273726284504,-0.071629673242569,-0.997153699398041,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.0918252021074295,-0.124073207378387,-0.988015115261078,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.209853872656822,-0.235933378338814,-0.948839664459229,\r\n-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.0918252021074295,-0.124073207378387,-0.988015115261078,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.0590034462511539,0.0316192954778671,-0.997756838798523,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.0162550061941147,-0.162318706512451,-0.986604452133179,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.343909412622452,-0.0038625702727586,-0.938994824886322,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.222266003489494,-0.0728878304362297,-0.972257733345032,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,0.157662287354469,-0.209822177886963,-0.964944005012512,-0.102551937103271,-0.31008592247963,-0.94516122341156,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.00432160310447216,-0.152928665280342,-0.988227725028992,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.0410114526748657,-0.165336534380913,-0.985384106636047,0.00432160310447216,-0.152928665280342,-0.988227725028992,0.145618036389351,-0.149821028113365,-0.977930963039398,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.00314530031755567,-0.284404307603836,-0.958699107170105,-0.102551937103271,-0.31008592247963,-0.94516122341156,\r\n0.157662287354469,-0.209822177886963,-0.964944005012512,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.162005737423897,-0.351618885993958,-0.922018527984619,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.245493248105049,-0.0379306599497795,-0.9686558842659,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.253287672996521,0.0104240877553821,-0.967334747314453,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.00368131720460951,-0.615144848823547,-0.788405418395996,-0.0168171636760235,-0.477083504199982,-0.878696978092194,0.00798038486391306,-0.489377975463867,-0.872035205364227,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.00368131720460951,-0.615144848823547,-0.788405418395996,0.0178347583860159,-0.663947761058807,-0.747566103935242,0.0850290358066559,-0.508052468299866,-0.857118785381317,-0.0364278592169285,-0.450729846954346,-0.891916751861572,-0.107303790748119,-0.523965537548065,-0.844953179359436,-0.154155656695366,-0.460174471139908,-0.874342858791351,-0.107303790748119,-0.523965537548065,-0.844953179359436,-0.0364278592169285,-0.450729846954346,-0.891916751861572,0.00798038486391306,-0.489377975463867,-0.872035205364227,-0.154155656695366,-0.460174471139908,-0.874342858791351,-0.0403476618230343,-0.388832867145538,-0.920424342155457,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.255548238754272,-0.137595534324646,-0.956954777240753,0.21125303208828,-0.18296192586422,-0.96015465259552,0.00314530031755567,-0.284404307603836,-0.958699107170105,0.21125303208828,-0.18296192586422,-0.96015465259552,0.232817798852921,-0.195092514157295,-0.952751100063324,0.259190291166306,-0.334127008914948,-0.906189501285553,0.180786103010178,-0.328919172286987,-0.926891803741455,0.259190291166306,-0.334127008914948,-0.906189501285553,0.266075164079666,-0.340619385242462,-0.901766240596771,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.180786103010178,-0.328919172286987,-0.926891803741455,0.178832039237022,-0.218865305185318,-0.95922726392746,\r\n-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.357756108045578,-0.165802121162415,-0.918977737426758,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.77251261472702,0.486399739980698,-0.408214956521988,-0.620287358760834,0.454585462808609,-0.639214754104614,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.620287358760834,0.454585462808609,-0.639214754104614,-0.56493878364563,0.442820519208908,-0.69624274969101,-0.843512058258057,0.4429851770401,-0.303729325532913,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.805289745330811,0.512339293956757,-0.298356682062149,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.861380398273468,0.352451980113983,-0.365788519382477,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.765846371650696,0.404948532581329,-0.499495655298233,\r\n-0.647131741046906,0.495435118675232,-0.5794517993927,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.436853408813477,-0.0104751959443092,-0.899471521377563,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.667500674724579,0.243331789970398,-0.70372748374939,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.476109117269516,0.260746896266937,-0.83983987569809,0.225348249077797,-0.298948049545288,-0.927279949188232,0.207055926322937,-0.114383794367313,-0.971619307994843,0.191930636763573,-0.313331037759781,-0.930046319961548,0.207055926322937,-0.114383794367313,-0.971619307994843,0.156255632638931,0.0143201807513833,-0.987612783908844,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.156255632638931,0.0143201807513833,-0.987612783908844,0.253287672996521,0.0104240877553821,-0.967334747314453,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.186527162790298,-0.904004335403442,-0.384686559438705,0.227951779961586,-0.695764601230621,-0.681138336658478,0.264453381299973,-0.548283815383911,-0.793378353118896,0.225348249077797,-0.298948049545288,-0.927279949188232,0.264453381299973,-0.548283815383911,-0.793378353118896,0.360367298126221,-0.346794337034225,-0.865949749946594,0.0922555103898048,-0.958398580551147,-0.270112901926041,0.227951779961586,-0.695764601230621,-0.681138336658478,0.186527162790298,-0.904004335403442,-0.384686559438705,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.421336263418198,0.868117272853851,-0.262389004230499,\r\n-0.636055409908295,0.744522571563721,-0.202779799699783,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.807643473148346,-0.458443731069565,-0.370865702629089,-0.613446891307831,-0.646662890911102,-0.45333194732666,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.376746267080307,-0.760267198085785,-0.529202997684479,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.261591553688049,-0.734129548072815,-0.626596748828888,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.158912613987923,-0.737124562263489,-0.656805872917175,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.638454139232636,0.527773439884186,-0.560206472873688,-0.650209128856659,0.668861865997314,-0.360349625349045,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.491849213838577,0.771722555160522,-0.403148233890533,\r\n-0.650209128856659,0.668861865997314,-0.360349625349045,-0.53892582654953,0.683855295181274,-0.491834044456482,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.491849213838577,0.771722555160522,-0.403148233890533,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.37638732790947,0.815989971160889,-0.43874004483223,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.0742841139435768,-0.802858531475067,-0.591523408889771,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.0190428737550974,-0.725783348083496,-0.687659680843353,-0.0742841139435768,-0.802858531475067,-0.591523408889771,1.95874818018638e-005,-0.692333459854126,-0.7215775847435,-0.0190428737550974,-0.725783348083496,-0.687659680843353,0.103286951780319,-0.599865078926086,-0.793406248092651,-0.0852414071559906,-0.606246769428253,-0.790695011615753,0.0346068479120731,-0.594395697116852,-0.803427696228027,-0.0190428737550974,-0.725783348083496,-0.687659680843353,-0.0844644755125046,-0.43591833114624,-0.896013855934143,0.0353857055306435,-0.485466241836548,-0.873538911342621,-0.0697716623544693,-0.517069816589355,-0.853094696998596,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.0697716623544693,-0.517069816589355,-0.853094696998596,0.0346068479120731,-0.594395697116852,-0.803427696228027,-0.0844644755125046,-0.43591833114624,-0.896013855934143,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.196496665477753,-0.292964220046997,-0.93571400642395,\r\n-0.0445641949772835,-0.424226880073547,-0.90445864200592,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.00913565885275602,-0.261105537414551,-0.965266942977905,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,-0.00913565885275602,-0.261105537414551,-0.965266942977905,0.00483225425705314,-0.052587766200304,-0.998604536056519,0.0440123155713081,-0.18331503868103,-0.982068419456482,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,0.00483225425705314,-0.052587766200304,-0.998604536056519,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,-0.0235273726284504,-0.071629673242569,-0.997153699398041,-0.0235273726284504,-0.071629673242569,-0.997153699398041,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.209853872656822,-0.235933378338814,-0.948839664459229,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.336104512214661,-0.296909630298615,-0.893799901008606,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.260690838098526,-0.260020434856415,-0.929747045040131,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.0807472914457321,-0.0311971306800842,-0.996246218681335,-0.0590034462511539,0.0316192954778671,-0.997756838798523,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,0.0573054999113083,-0.00874202977865934,-0.998318374156952,-0.0590034462511539,0.0316192954778671,-0.997756838798523,\r\n-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.0501484125852585,0.00828037690371275,-0.998707413673401,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,0.0184726789593697,-0.0227924231439829,-0.999569475650787,-0.0479654297232628,-0.114630021154881,-0.992249548435211,-0.0162550061941147,-0.162318706512451,-0.986604452133179,-0.0410114526748657,-0.165336534380913,-0.985384106636047,-0.0518389903008938,-0.170377090573311,-0.984014391899109,-0.0479654297232628,-0.114630021154881,-0.992249548435211,0.0167144797742367,-0.0701036006212235,-0.997399628162384,-0.0162550061941147,-0.162318706512451,-0.986604452133179,-0.0813260823488235,0.0236025582998991,-0.996407985687256,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,-0.268105000257492,0.0368161015212536,-0.962685883045197,0.157662287354469,-0.209822177886963,-0.964944005012512,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.203319996595383,-0.190209403634071,-0.960458874702454,0.00432160310447216,-0.152928665280342,-0.988227725028992,-0.0410114526748657,-0.165336534380913,-0.985384106636047,-0.0162550061941147,-0.162318706512451,-0.986604452133179,0.145618036389351,-0.149821028113365,-0.977930963039398,0.00432160310447216,-0.152928665280342,-0.988227725028992,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.0349362604320049,-0.16810816526413,-0.985149264335632,0.145618036389351,-0.149821028113365,-0.977930963039398,0.203319996595383,-0.190209403634071,-0.960458874702454,0.255548238754272,-0.137595534324646,-0.956954777240753,0.00314530031755567,-0.284404307603836,-0.958699107170105,0.157662287354469,-0.209822177886963,-0.964944005012512,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.146075040102005,-0.16620035469532,-0.975212514400482,-0.0706677138805389,-0.649297475814819,-0.757244169712067,0.0178347583860159,-0.663947761058807,-0.747566103935242,-0.00368131720460951,-0.615144848823547,-0.788405418395996,-0.0706677138805389,-0.649297475814819,-0.757244169712067,\r\n-0.0168171636760235,-0.477083504199982,-0.878696978092194,-0.0834152027964592,-0.564619362354279,-0.821125268936157,0.00798038486391306,-0.489377975463867,-0.872035205364227,0.122175946831703,-0.457560032606125,-0.880744993686676,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0834152027964592,-0.564619362354279,-0.821125268936157,-0.0168171636760235,-0.477083504199982,-0.878696978092194,0.0311318524181843,-0.384950011968613,-0.922412037849426,0.0850290358066559,-0.508052468299866,-0.857118785381317,0.0178347583860159,-0.663947761058807,-0.747566103935242,0.0391580164432526,-0.42451611161232,-0.904573142528534,-0.154155656695366,-0.460174471139908,-0.874342858791351,-0.00484907813370228,-0.279107809066772,-0.96024751663208,-0.0364278592169285,-0.450729846954346,-0.891916751861572,0.112181447446346,-0.433447062969208,-0.894169330596924,0.00798038486391306,-0.489377975463867,-0.872035205364227,-0.0364278592169285,-0.450729846954346,-0.891916751861572,0.21125303208828,-0.18296192586422,-0.96015465259552,0.255548238754272,-0.137595534324646,-0.956954777240753,0.265062838792801,-0.0669997856020927,-0.961900532245636,0.21125303208828,-0.18296192586422,-0.96015465259552,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.232817798852921,-0.195092514157295,-0.952751100063324,0.201704472303391,-0.345803797245026,-0.916370511054993,0.259190291166306,-0.334127008914948,-0.906189501285553,0.232817798852921,-0.195092514157295,-0.952751100063324,0.266075164079666,-0.340619385242462,-0.901766240596771,0.259190291166306,-0.334127008914948,-0.906189501285553,0.201704472303391,-0.345803797245026,-0.916370511054993,0.180786103010178,-0.328919172286987,-0.926891803741455,0.266075164079666,-0.340619385242462,-0.901766240596771,0.178832039237022,-0.218865305185318,-0.95922726392746,0.0953719988465309,-0.138965174555779,-0.985694050788879,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.178832039237022,-0.218865305185318,-0.95922726392746,-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.160243883728981,0.0723292678594589,-0.984423875808716,\r\n-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.222426131367683,0.0358351692557335,-0.974290728569031,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.336818188428879,0.264939486980438,-0.903526723384857,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.198394417762756,0.160096436738968,-0.966958463191986,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.740895748138428,0.543273985385895,-0.394875586032867,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.620287358760834,0.454585462808609,-0.639214754104614,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.745936155319214,0.568122208118439,-0.34758648276329,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.714402079582214,0.493717908859253,-0.495855093002319,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.714402079582214,0.493717908859253,-0.495855093002319,-0.647131741046906,0.495435118675232,-0.5794517993927,-0.765846371650696,0.404948532581329,-0.499495655298233,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.647131741046906,0.495435118675232,-0.5794517993927,\r\n-0.553396463394165,0.483470737934113,-0.678239047527313,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.696861386299133,0.366097658872604,-0.616730511188507,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.448448926210403,0.127977058291435,-0.884598970413208,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.364416807889938,0.0821376815438271,-0.927606463432312,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.343940824270248,0.322828650474548,-0.881751775741577,0.191930636763573,-0.313331037759781,-0.930046319961548,0.207055926322937,-0.114383794367313,-0.971619307994843,0.142517536878586,-0.206394657492638,-0.968034029006958,0.191930636763573,-0.313331037759781,-0.930046319961548,0.141881495714188,-0.673281848430634,-0.725645244121552,0.225348249077797,-0.298948049545288,-0.927279949188232,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.156255632638931,0.0143201807513833,-0.987612783908844,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.142517536878586,-0.206394657492638,-0.968034029006958,0.207055926322937,-0.114383794367313,-0.971619307994843,0.192894548177719,-0.0978220999240875,-0.976331114768982,0.146075040102005,-0.16620035469532,-0.975212514400482,0.156255632638931,0.0143201807513833,-0.987612783908844,0.0728467330336571,-0.881653606891632,-0.466240465641022,0.186527162790298,-0.904004335403442,-0.384686559438705,0.264453381299973,-0.548283815383911,-0.793378353118896,0.264453381299973,-0.548283815383911,-0.793378353118896,\r\n0.225348249077797,-0.298948049545288,-0.927279949188232,0.122711107134819,-0.699450731277466,-0.70406711101532,-0.458349913358688,0.83390212059021,-0.307445019483566,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.536337435245514,-0.78458559513092,-0.311074823141098,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.76592892408371,-0.554009735584259,-0.326229900121689,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.157773688435555,-0.858623385429382,-0.487722456455231,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.172873601317406,-0.772076070308685,-0.611566126346588,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.6918004155159,0.364239245653152,-0.623491585254669,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.534122109413147,0.737633466720581,-0.413049966096878,\r\n-0.650209128856659,0.668861865997314,-0.360349625349045,-0.730272591114044,0.565440654754639,-0.383377939462662,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.650209128856659,0.668861865997314,-0.360349625349045,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.43793585896492,0.81645804643631,-0.376308798789978,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.395497590303421,0.847208499908447,-0.354710102081299,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.0190428737550974,-0.725783348083496,-0.687659680843353,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.0844644755125046,-0.43591833114624,-0.896013855934143,-0.0697716623544693,-0.517069816589355,-0.853094696998596,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.160797119140625,-0.497621297836304,-0.852359771728516,-0.0697716623544693,-0.517069816589355,-0.853094696998596,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.0844644755125046,-0.43591833114624,-0.896013855934143,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.0762206539511681,-0.385050594806671,-0.919742584228516,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.298151820898056,-0.308402717113495,-0.903323352336884,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.172403454780579,-0.390802562236786,-0.904184758663177,-0.298151820898056,-0.308402717113495,-0.903323352336884,\r\n-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,-0.00913565885275602,-0.261105537414551,-0.965266942977905,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,0.00483225425705314,-0.052587766200304,-0.998604536056519,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,0.00483225425705314,-0.052587766200304,-0.998604536056519,0.0467745400965214,-0.075939767062664,-0.996014654636383,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.245287284255028,-0.0627002194523811,-0.967420637607574,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.22448356449604,-0.103824622929096,-0.968931078910828,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.228459894657135,-0.0705416426062584,-0.970994293689728,0.0573054999113083,-0.00874202977865934,-0.998318374156952,-0.0774524360895157,-0.00953382160514593,-0.996950447559357,0.0467745400965214,-0.075939767062664,-0.996014654636383,\r\n0.0573054999113083,-0.00874202977865934,-0.998318374156952,0.0493968948721886,-0.0242191702127457,-0.998485505580902,-0.0590034462511539,0.0316192954778671,-0.997756838798523,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.0590034462511539,0.0316192954778671,-0.997756838798523,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,0.0184726789593697,-0.0227924231439829,-0.999569475650787,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,0.082203134894371,0.00789925642311573,-0.996584236621857,-0.0479654297232628,-0.114630021154881,-0.992249548435211,0.0184726789593697,-0.0227924231439829,-0.999569475650787,0.0167144797742367,-0.0701036006212235,-0.997399628162384,0.0658976137638092,-0.113201797008514,-0.991384267807007,-0.0162550061941147,-0.162318706512451,-0.986604452133179,0.0167144797742367,-0.0701036006212235,-0.997399628162384,-0.0813260823488235,0.0236025582998991,-0.996407985687256,0.0203995238989592,-0.0629357621073723,-0.997808992862701,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.0813260823488235,0.0236025582998991,-0.996407985687256,0.321150422096252,-0.202797129750252,-0.925059795379639,0.157662287354469,-0.209822177886963,-0.964944005012512,0.203319996595383,-0.190209403634071,-0.960458874702454,0.00432160310447216,-0.152928665280342,-0.988227725028992,-0.0162550061941147,-0.162318706512451,-0.986604452133179,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.145618036389351,-0.149821028113365,-0.977930963039398,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.174687162041664,-0.10637478530407,-0.978860914707184,0.236573576927185,-0.171604290604591,-0.956339240074158,0.203319996595383,-0.190209403634071,-0.960458874702454,0.145618036389351,-0.149821028113365,-0.977930963039398,0.255548238754272,-0.137595534324646,-0.956954777240753,0.157662287354469,-0.209822177886963,-0.964944005012512,0.321150422096252,-0.202797129750252,-0.925059795379639,\r\n0.0850290358066559,-0.508052468299866,-0.857118785381317,0.0391580164432526,-0.42451611161232,-0.904573142528534,0.146075040102005,-0.16620035469532,-0.975212514400482,-0.00722312880679965,-0.500436365604401,-0.865743100643158,0.0178347583860159,-0.663947761058807,-0.747566103935242,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.0834152027964592,-0.564619362354279,-0.821125268936157,-0.0926814898848534,-0.711661398410797,-0.696382105350494,0.00798038486391306,-0.489377975463867,-0.872035205364227,0.112181447446346,-0.433447062969208,-0.894169330596924,0.122175946831703,-0.457560032606125,-0.880744993686676,0.122175946831703,-0.457560032606125,-0.880744993686676,0.100057810544968,-0.396382659673691,-0.912616610527039,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0834152027964592,-0.564619362354279,-0.821125268936157,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0018912460654974,-0.491617769002914,-0.870809018611908,-0.00722312880679965,-0.500436365604401,-0.865743100643158,0.0391580164432526,-0.42451611161232,-0.904573142528534,0.0178347583860159,-0.663947761058807,-0.747566103935242,0.0919434279203415,-0.218961834907532,-0.971391797065735,-0.0364278592169285,-0.450729846954346,-0.891916751861572,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.112181447446346,-0.433447062969208,-0.894169330596924,-0.0364278592169285,-0.450729846954346,-0.891916751861572,0.0919434279203415,-0.218961834907532,-0.971391797065735,0.265062838792801,-0.0669997856020927,-0.961900532245636,0.255548238754272,-0.137595534324646,-0.956954777240753,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.21125303208828,-0.18296192586422,-0.96015465259552,0.265062838792801,-0.0669997856020927,-0.961900532245636,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.232817798852921,-0.195092514157295,-0.952751100063324,\r\n0.201704472303391,-0.345803797245026,-0.916370511054993,0.232817798852921,-0.195092514157295,-0.952751100063324,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.201704472303391,-0.345803797245026,-0.916370511054993,0.131823047995567,-0.363414436578751,-0.922254025936127,0.266075164079666,-0.340619385242462,-0.901766240596771,0.189078643918037,-0.27040496468544,-0.943996965885162,0.178832039237022,-0.218865305185318,-0.95922726392746,0.266075164079666,-0.340619385242462,-0.901766240596771,0.0919434279203415,-0.218961834907532,-0.971391797065735,-0.00484907813370228,-0.279107809066772,-0.96024751663208,0.0953719988465309,-0.138965174555779,-0.985694050788879,0.150959089398384,-0.174802199006081,-0.972962200641632,0.0953719988465309,-0.138965174555779,-0.985694050788879,0.178832039237022,-0.218865305185318,-0.95922726392746,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.131395816802979,0.119277805089951,-0.984127938747406,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.656635820865631,0.442559510469437,-0.610712945461273,-0.411449491977692,0.310043662786484,-0.857077658176422,-0.745936155319214,0.568122208118439,-0.34758648276329,\r\n-0.633764266967773,0.662909746170044,-0.398614317178726,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.78896164894104,0.473239958286285,-0.391897082328796,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.714402079582214,0.493717908859253,-0.495855093002319,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.714402079582214,0.493717908859253,-0.495855093002319,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.647131741046906,0.495435118675232,-0.5794517993927,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.647131741046906,0.495435118675232,-0.5794517993927,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.578205645084381,0.364303976297379,-0.730041563510895,-0.268105000257492,0.0368161015212536,-0.962685883045197,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.326035231351852,0.158533245325089,-0.931970059871674,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.343940824270248,0.322828650474548,-0.881751775741577,-0.476109117269516,0.260746896266937,-0.83983987569809,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.343940824270248,0.322828650474548,-0.881751775741577,-0.238716408610344,0.3423812687397,-0.908729553222656,0.141851052641869,-0.444758206605911,-0.88434624671936,0.191930636763573,-0.313331037759781,-0.930046319961548,0.142517536878586,-0.206394657492638,-0.968034029006958,0.141881495714188,-0.673281848430634,-0.725645244121552,0.191930636763573,-0.313331037759781,-0.930046319961548,\r\n0.200125440955162,-0.677185416221619,-0.708074569702148,0.122711107134819,-0.699450731277466,-0.70406711101532,0.225348249077797,-0.298948049545288,-0.927279949188232,0.141881495714188,-0.673281848430634,-0.725645244121552,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.156255632638931,0.0143201807513833,-0.987612783908844,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.142517536878586,-0.206394657492638,-0.968034029006958,0.131335824728012,-0.0654750689864159,-0.989173293113709,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.156255632638931,0.0143201807513833,-0.987612783908844,0.146075040102005,-0.16620035469532,-0.975212514400482,0.264453381299973,-0.548283815383911,-0.793378353118896,0.122711107134819,-0.699450731277466,-0.70406711101532,0.0728467330336571,-0.881653606891632,-0.466240465641022,-0.421336263418198,0.868117272853851,-0.262389004230499,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.577492356300354,-0.741622805595398,-0.341318279504776,-0.536337435245514,-0.78458559513092,-0.311074823141098,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.294881999492645,-0.915363430976868,-0.274142742156982,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.336979657411575,-0.843842208385468,-0.417582184076309,-0.20031726360321,-0.855889916419983,-0.476786464452744,-0.199730783700943,-0.920633256435394,-0.335472702980042,-0.157773688435555,-0.858623385429382,-0.487722456455231,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.157773688435555,-0.858623385429382,-0.487722456455231,\r\n-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.180528402328491,-0.789637327194214,-0.586414694786072,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.165895760059357,-0.760679185390472,-0.627571105957031,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.81091433763504,0.393605291843414,-0.433004379272461,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.781006991863251,0.445297122001648,-0.437879472970963,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.650209128856659,0.668861865997314,-0.360349625349045,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.427302569150925,0.814997375011444,-0.391397058963776,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.11772446334362,-0.781207859516144,-0.61307018995285,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.0623642988502979,-0.740146517753601,-0.669547379016876,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.0697716623544693,-0.517069816589355,-0.853094696998596,-0.160797119140625,-0.497621297836304,-0.852359771728516,-0.160797119140625,-0.497621297836304,-0.852359771728516,\r\n-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.298151820898056,-0.308402717113495,-0.903323352336884,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.196496665477753,-0.292964220046997,-0.93571400642395,-0.298151820898056,-0.308402717113495,-0.903323352336884,-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,-0.164280071854591,-0.126669004559517,-0.978246867656708,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.0207536909729242,-0.0509313195943832,-0.998486459255219,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.0751438811421394,-0.0452516637742519,-0.996145367622375,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,0.0467745400965214,-0.075939767062664,-0.996014654636383,-0.0444696955382824,-0.00987185910344124,-0.998961925506592,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.24300554394722,-0.0982362851500511,-0.965037703514099,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.228459894657135,-0.0705416426062584,-0.970994293689728,-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.136039167642593,0.187416315078735,-0.972814679145813,\r\n-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.182025730609894,-0.00693915178999305,-0.983269214630127,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.13115182518959,0.0322523191571236,-0.990837454795837,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,-0.248890444636345,0.0163014866411686,-0.96839439868927,0.0467745400965214,-0.075939767062664,-0.996014654636383,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.0573054999113083,-0.00874202977865934,-0.998318374156952,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.0573054999113083,-0.00874202977865934,-0.998318374156952,0.138881623744965,0.0239541567862034,-0.990019202232361,-0.0590034462511539,0.0316192954778671,-0.997756838798523,0.0493968948721886,-0.0242191702127457,-0.998485505580902,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,-0.0617220811545849,-0.0147126754745841,-0.997984886169434,0.0203995238989592,-0.0629357621073723,-0.997808992862701,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0184726789593697,-0.0227924231439829,-0.999569475650787,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.0167144797742367,-0.0701036006212235,-0.997399628162384,0.0184726789593697,-0.0227924231439829,-0.999569475650787,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.0167144797742367,-0.0701036006212235,-0.997399628162384,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0203995238989592,-0.0629357621073723,-0.997808992862701,-0.0813260823488235,0.0236025582998991,-0.996407985687256,-0.0882399082183838,0.0313623063266277,-0.99560534954071,-0.0813260823488235,0.0236025582998991,-0.996407985687256,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.0882399082183838,0.0313623063266277,-0.99560534954071,0.321150422096252,-0.202797129750252,-0.925059795379639,\r\n0.203319996595383,-0.190209403634071,-0.960458874702454,0.342177033424377,-0.26922419667244,-0.900240540504456,0.156251639127731,-0.011892119422555,-0.987645626068115,0.174687162041664,-0.10637478530407,-0.978860914707184,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.145618036389351,-0.149821028113365,-0.977930963039398,0.174687162041664,-0.10637478530407,-0.978860914707184,0.236573576927185,-0.171604290604591,-0.956339240074158,0.342177033424377,-0.26922419667244,-0.900240540504456,0.203319996595383,-0.190209403634071,-0.960458874702454,0.236573576927185,-0.171604290604591,-0.956339240074158,0.145618036389351,-0.149821028113365,-0.977930963039398,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.255548238754272,-0.137595534324646,-0.956954777240753,0.321150422096252,-0.202797129750252,-0.925059795379639,0.359996169805527,-0.199858352541924,-0.911295354366302,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.146075040102005,-0.16620035469532,-0.975212514400482,0.0391580164432526,-0.42451611161232,-0.904573142528534,0.000445014040451497,-0.585236072540283,-0.810862720012665,-0.00722312880679965,-0.500436365604401,-0.865743100643158,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.00349421938881278,-0.693794131278992,-0.720164775848389,-0.0926814898848534,-0.711661398410797,-0.696382105350494,-0.0834152027964592,-0.564619362354279,-0.821125268936157,0.000445014040451497,-0.585236072540283,-0.810862720012665,-0.0706677138805389,-0.649297475814819,-0.757244169712067,-0.0926814898848534,-0.711661398410797,-0.696382105350494,0.112181447446346,-0.433447062969208,-0.894169330596924,0.189054071903229,-0.390826463699341,-0.900840222835541,0.122175946831703,-0.457560032606125,-0.880744993686676,0.100057810544968,-0.396382659673691,-0.912616610527039,0.122175946831703,-0.457560032606125,-0.880744993686676,0.12663097679615,-0.415861338376999,-0.900568664073944,0.100057810544968,-0.396382659673691,-0.912616610527039,0.0602031350135803,-0.330446273088455,-0.941902756690979,\r\n0.0311318524181843,-0.384950011968613,-0.922412037849426,0.0683420524001122,-0.541300117969513,-0.838047385215759,-0.0018912460654974,-0.491617769002914,-0.870809018611908,0.0311318524181843,-0.384950011968613,-0.922412037849426,-0.0834152027964592,-0.564619362354279,-0.821125268936157,-0.0018912460654974,-0.491617769002914,-0.870809018611908,-0.00349421938881278,-0.693794131278992,-0.720164775848389,-0.00722312880679965,-0.500436365604401,-0.865743100643158,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.0391580164432526,-0.42451611161232,-0.904573142528534,0.0919434279203415,-0.218961834907532,-0.971391797065735,0.194426283240318,-0.224393129348755,-0.954906344413757,0.112181447446346,-0.433447062969208,-0.894169330596924,0.255548238754272,-0.137595534324646,-0.956954777240753,0.359996169805527,-0.199858352541924,-0.911295354366302,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.265062838792801,-0.0669997856020927,-0.961900532245636,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.232817798852921,-0.195092514157295,-0.952751100063324,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.201704472303391,-0.345803797245026,-0.916370511054993,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.201704472303391,-0.345803797245026,-0.916370511054993,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.131823047995567,-0.363414436578751,-0.922254025936127,0.131823047995567,-0.363414436578751,-0.922254025936127,0.189078643918037,-0.27040496468544,-0.943996965885162,0.266075164079666,-0.340619385242462,-0.901766240596771,0.150959089398384,-0.174802199006081,-0.972962200641632,0.178832039237022,-0.218865305185318,-0.95922726392746,0.189078643918037,-0.27040496468544,-0.943996965885162,\r\n0.0953719988465309,-0.138965174555779,-0.985694050788879,0.150959089398384,-0.174802199006081,-0.972962200641632,0.0919434279203415,-0.218961834907532,-0.971391797065735,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.114033095538616,0.164611279964447,-0.979744613170624,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.160243883728981,0.0723292678594589,-0.984423875808716,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.218779012560844,0.208562731742859,-0.953224658966064,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.691554725170136,0.633775353431702,-0.346526652574539,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.606659531593323,0.593234717845917,-0.529184997081757,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.647131741046906,0.495435118675232,-0.5794517993927,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.459699004888535,0.394094407558441,-0.795843183994293,\r\n-0.553396463394165,0.483470737934113,-0.678239047527313,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.324995100498199,0.235001936554909,-0.916052460670471,-0.238716408610344,0.3423812687397,-0.908729553222656,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.283211201429367,0.1460250467062,-0.947875499725342,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.333043068647385,0.417030781507492,-0.845675826072693,-0.343940824270248,0.322828650474548,-0.881751775741577,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.343940824270248,0.322828650474548,-0.881751775741577,-0.333043068647385,0.417030781507492,-0.845675826072693,-0.238716408610344,0.3423812687397,-0.908729553222656,0.141851052641869,-0.444758206605911,-0.88434624671936,0.200125440955162,-0.677185416221619,-0.708074569702148,0.191930636763573,-0.313331037759781,-0.930046319961548,0.142517536878586,-0.206394657492638,-0.968034029006958,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.141851052641869,-0.444758206605911,-0.88434624671936,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.0628653913736343,-0.102683618664742,-0.992725491523743,0.116414532065392,-0.193508639931679,-0.974167287349701,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.142517536878586,-0.206394657492638,-0.968034029006958,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.0959679335355759,-0.234750226140022,-0.967306792736053,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.374173998832703,0.861294269561768,-0.34375262260437,-0.157773688435555,-0.858623385429382,-0.487722456455231,-0.199730783700943,-0.920633256435394,-0.335472702980042,\r\n-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.157773688435555,-0.858623385429382,-0.487722456455231,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.169687449932098,-0.798129558563232,-0.578096091747284,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.534122109413147,0.737633466720581,-0.413049966096878,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.761210083961487,0.522965848445892,-0.383491516113281,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.246167242527008,-0.743577599525452,-0.621686398983002,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.0852414071559906,-0.606246769428253,-0.790695011615753,-0.191542193293571,-0.445947498083115,-0.874323904514313,-0.160797119140625,-0.497621297836304,-0.852359771728516,-0.189662843942642,-0.407565414905548,-0.89326274394989,\r\n-0.160797119140625,-0.497621297836304,-0.852359771728516,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.239040344953537,-0.324421375989914,-0.915210545063019,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.298151820898056,-0.308402717113495,-0.903323352336884,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,0.0302328895777464,-0.170521482825279,-0.984889984130859,0.0467745400965214,-0.075939767062664,-0.996014654636383,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.0916893929243088,0.22381928563118,-0.970308125019073,-0.112296335399151,0.090812936425209,-0.989516258239746,\r\n-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,0.0467745400965214,-0.075939767062664,-0.996014654636383,0.125146970152855,-0.147026941180229,-0.981183588504791,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.138881623744965,0.0239541567862034,-0.990019202232361,0.0573054999113083,-0.00874202977865934,-0.998318374156952,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.138881623744965,0.0239541567862034,-0.990019202232361,0.0593034103512764,0.0568324029445648,-0.996620833873749,0.0493968948721886,-0.0242191702127457,-0.998485505580902,-0.00602553272619843,-0.112938426434994,-0.993583559989929,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0203995238989592,-0.0629357621073723,-0.997808992862701,0.0475360043346882,-0.065895214676857,-0.996693551540375,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0167144797742367,-0.0701036006212235,-0.997399628162384,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.156251639127731,-0.011892119422555,-0.987645626068115,0.0658976137638092,-0.113201797008514,-0.991384267807007,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0203995238989592,-0.0629357621073723,-0.997808992862701,-0.0882399082183838,0.0313623063266277,-0.99560534954071,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.0882399082183838,0.0313623063266277,-0.99560534954071,0.321150422096252,-0.202797129750252,-0.925059795379639,0.342177033424377,-0.26922419667244,-0.900240540504456,0.359996169805527,-0.199858352541924,-0.911295354366302,0.174687162041664,-0.10637478530407,-0.978860914707184,0.156251639127731,-0.011892119422555,-0.987645626068115,\r\n0.194986119866371,-0.0757842734456062,-0.977873742580414,0.336532026529312,-0.261102020740509,-0.904749572277069,0.342177033424377,-0.26922419667244,-0.900240540504456,0.236573576927185,-0.171604290604591,-0.956339240074158,0.223113626241684,-0.11917807161808,-0.967479646205902,0.236573576927185,-0.171604290604591,-0.956339240074158,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.000445014040451497,-0.585236072540283,-0.810862720012665,0.116414532065392,-0.193508639931679,-0.974167287349701,-0.00722312880679965,-0.500436365604401,-0.865743100643158,-0.0126893641427159,-0.68892377614975,-0.724722623825073,-0.0926814898848534,-0.711661398410797,-0.696382105350494,-0.00349421938881278,-0.693794131278992,-0.720164775848389,0.000445014040451497,-0.585236072540283,-0.810862720012665,-0.0926814898848534,-0.711661398410797,-0.696382105350494,-0.0126893641427159,-0.68892377614975,-0.724722623825073,0.189054071903229,-0.390826463699341,-0.900840222835541,0.112181447446346,-0.433447062969208,-0.894169330596924,0.194426283240318,-0.224393129348755,-0.954906344413757,0.191376388072968,-0.384473264217377,-0.903080999851227,0.122175946831703,-0.457560032606125,-0.880744993686676,0.189054071903229,-0.390826463699341,-0.900840222835541,0.191376388072968,-0.384473264217377,-0.903080999851227,0.12663097679615,-0.415861338376999,-0.900568664073944,0.122175946831703,-0.457560032606125,-0.880744993686676,0.100057810544968,-0.396382659673691,-0.912616610527039,0.12663097679615,-0.415861338376999,-0.900568664073944,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.0311318524181843,-0.384950011968613,-0.922412037849426,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.0683420524001122,-0.541300117969513,-0.838047385215759,-0.00349421938881278,-0.693794131278992,-0.720164775848389,-0.0018912460654974,-0.491617769002914,-0.870809018611908,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.0683420524001122,-0.541300117969513,-0.838047385215759,0.0311318524181843,-0.384950011968613,-0.922412037849426,\r\n0.0628653913736343,-0.102683618664742,-0.992725491523743,-0.00722312880679965,-0.500436365604401,-0.865743100643158,0.116414532065392,-0.193508639931679,-0.974167287349701,0.0919434279203415,-0.218961834907532,-0.971391797065735,0.150959089398384,-0.174802199006081,-0.972962200641632,0.194426283240318,-0.224393129348755,-0.954906344413757,0.30599445104599,-0.262167602777481,-0.915224254131317,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.359996169805527,-0.199858352541924,-0.911295354366302,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.263653069734573,-0.0711859986186028,-0.961987257003784,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.180231630802155,0.0018807944143191,-0.983622372150421,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.0151032572612166,-0.293993681669235,-0.955687999725342,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.131823047995567,-0.363414436578751,-0.922254025936127,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.189078643918037,-0.27040496468544,-0.943996965885162,0.131823047995567,-0.363414436578751,-0.922254025936127,0.189078643918037,-0.27040496468544,-0.943996965885162,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.150959089398384,-0.174802199006081,-0.972962200641632,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.10939610004425,0.165668532252312,-0.980095088481903,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.243293061852455,0.290073841810226,-0.925562262535095,\r\n-0.292733699083328,0.469024986028671,-0.833260118961334,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.426770925521851,0.4008749127388,-0.810657620429993,-0.292733699083328,0.469024986028671,-0.833260118961334,-0.66919994354248,0.575269222259521,-0.470358073711395,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.633764266967773,0.662909746170044,-0.398614317178726,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.589568078517914,0.729704320430756,-0.346324682235718,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.580258965492249,0.566474258899689,-0.585155010223389,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.553396463394165,0.483470737934113,-0.678239047527313,-0.459699004888535,0.394094407558441,-0.795843183994293,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.333043068647385,0.417030781507492,-0.845675826072693,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.170834884047508,0.130070745944977,-0.976676464080811,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.238716408610344,0.3423812687397,-0.908729553222656,-0.190691411495209,0.345014065504074,-0.919022262096405,\r\n-0.216944545507431,0.245095402002335,-0.944914400577545,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.216944545507431,0.245095402002335,-0.944914400577545,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.238716408610344,0.3423812687397,-0.908729553222656,-0.333043068647385,0.417030781507492,-0.845675826072693,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.141851052641869,-0.444758206605911,-0.88434624671936,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.0870144739747047,-0.0954918339848518,-0.991619765758514,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.116414532065392,-0.193508639931679,-0.974167287349701,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.0870144739747047,-0.0954918339848518,-0.991619765758514,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.370559513568878,0.887181878089905,-0.274943470954895,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.225884765386581,-0.783402144908905,-0.579013764858246,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.222239792346954,-0.767781734466553,-0.600933015346527,-0.334797412157059,-0.744083523750305,-0.578143894672394,\r\n-0.849173545837402,0.241268157958984,-0.469780653715134,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.799996376037598,0.417932242155075,-0.430509328842163,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.435238867998123,0.814061880111694,-0.384538978338242,-0.530039548873901,0.704517364501953,-0.471924990415573,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.629960119724274,0.597659707069397,-0.49593648314476,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.200573816895485,-0.636238574981689,-0.744963407516479,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.189662843942642,-0.407565414905548,-0.89326274394989,-0.203402057290077,-0.340582638978958,-0.917949318885803,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.242983594536781,-0.180361583828926,-0.953115224838257,\r\n-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.254730850458145,-0.260599046945572,-0.93123584985733,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.228182479739189,-0.0286078918725252,-0.973197937011719,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.0254548210650682,-0.0492482110857964,-0.998462080955505,-0.134542554616928,-0.160345897078514,-0.97784835100174,0.0302328895777464,-0.170521482825279,-0.984889984130859,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.143133521080017,-0.042386882007122,-0.988795280456543,0.125146970152855,-0.147026941180229,-0.981183588504791,0.0467745400965214,-0.075939767062664,-0.996014654636383,0.0302328895777464,-0.170521482825279,-0.984889984130859,-0.2515889108181,0.0456525459885597,-0.966756820678711,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.147148311138153,0.106895342469215,-0.983321249485016,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.0916893929243088,0.22381928563118,-0.970308125019073,-0.248890444636345,0.0163014866411686,-0.96839439868927,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.0916893929243088,0.22381928563118,-0.970308125019073,\r\n-0.143028378486633,0.214149504899979,-0.966272592544556,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,-0.0101125156506896,-0.041262187063694,-0.999097108840942,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.125146970152855,-0.147026941180229,-0.981183588504791,0.123632527887821,-0.0629393234848976,-0.990330040454865,0.123632527887821,-0.0629393234848976,-0.990330040454865,0.138881623744965,0.0239541567862034,-0.990019202232361,0.157605201005936,-0.0702711418271065,-0.98499870300293,0.0467387810349464,0.0630889758467674,-0.996912717819214,0.0593034103512764,0.0568324029445648,-0.996620833873749,0.138881623744965,0.0239541567862034,-0.990019202232361,0.0206686109304428,-0.081759050488472,-0.996437728404999,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.0593034103512764,0.0568324029445648,-0.996620833873749,-0.0101125156506896,-0.041262187063694,-0.999097108840942,-0.0902249440550804,-0.0188603047281504,-0.995742797851563,-0.00602553272619843,-0.112938426434994,-0.993583559989929,-0.00602553272619843,-0.112938426434994,-0.993583559989929,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.0190103780478239,-0.143487051129341,-0.989469587802887,-0.0395806021988392,-0.189762115478516,-0.981031954288483,0.0475360043346882,-0.065895214676857,-0.996693551540375,0.0203995238989592,-0.0629357621073723,-0.997808992862701,0.082203134894371,0.00789925642311573,-0.996584236621857,0.0475360043346882,-0.065895214676857,-0.996693551540375,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0628633126616478,0.0335288681089878,-0.997458755970001,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.127894386649132,0.0270813573151827,-0.991417944431305,0.156251639127731,-0.011892119422555,-0.987645626068115,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.0882399082183838,0.0313623063266277,-0.99560534954071,\r\n-0.0877998098731041,0.0248996168375015,-0.995826840400696,0.0203995238989592,-0.0629357621073723,-0.997808992862701,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.0395806021988392,-0.189762115478516,-0.981031954288483,-0.0877998098731041,0.0248996168375015,-0.995826840400696,-0.0882399082183838,0.0313623063266277,-0.99560534954071,-0.160241693258286,0.18693707883358,-0.969214677810669,0.30599445104599,-0.262167602777481,-0.915224254131317,0.359996169805527,-0.199858352541924,-0.911295354366302,0.342177033424377,-0.26922419667244,-0.900240540504456,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.156251639127731,-0.011892119422555,-0.987645626068115,0.164056897163391,0.0175847243517637,-0.986293971538544,0.30599445104599,-0.262167602777481,-0.915224254131317,0.342177033424377,-0.26922419667244,-0.900240540504456,0.336532026529312,-0.261102020740509,-0.904749572277069,0.223113626241684,-0.11917807161808,-0.967479646205902,0.336532026529312,-0.261102020740509,-0.904749572277069,0.236573576927185,-0.171604290604591,-0.956339240074158,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.223113626241684,-0.11917807161808,-0.967479646205902,0.000445014040451497,-0.585236072540283,-0.810862720012665,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.116414532065392,-0.193508639931679,-0.974167287349701,0.0311826728284359,-0.625264823436737,-0.779789328575134,-0.0126893641427159,-0.68892377614975,-0.724722623825073,-0.00349421938881278,-0.693794131278992,-0.720164775848389,0.000445014040451497,-0.585236072540283,-0.810862720012665,-0.0126893641427159,-0.68892377614975,-0.724722623825073,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.219788774847984,-0.240773782134056,-0.945368051528931,0.189054071903229,-0.390826463699341,-0.900840222835541,0.194426283240318,-0.224393129348755,-0.954906344413757,0.191376388072968,-0.384473264217377,-0.903080999851227,0.189054071903229,-0.390826463699341,-0.900840222835541,0.219788774847984,-0.240773782134056,-0.945368051528931,\r\n0.191376388072968,-0.384473264217377,-0.903080999851227,0.189302518963814,-0.337667763233185,-0.922033071517944,0.12663097679615,-0.415861338376999,-0.900568664073944,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.12663097679615,-0.415861338376999,-0.900568664073944,0.189302518963814,-0.337667763233185,-0.922033071517944,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.11298880726099,-0.708490550518036,-0.696616470813751,-0.00349421938881278,-0.693794131278992,-0.720164775848389,0.0683420524001122,-0.541300117969513,-0.838047385215759,0.126996800303459,-0.603143632411957,-0.787457644939423,0.0683420524001122,-0.541300117969513,-0.838047385215759,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.150959089398384,-0.174802199006081,-0.972962200641632,0.181501194834709,-0.175054237246513,-0.96768444776535,0.194426283240318,-0.224393129348755,-0.954906344413757,0.30599445104599,-0.262167602777481,-0.915224254131317,0.165363967418671,-0.174880489706993,-0.97060364484787,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.273538738489151,-0.0910723283886909,-0.957539737224579,0.165363967418671,-0.174880489706993,-0.97060364484787,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.199768230319023,-0.0270943455398083,-0.979468464851379,0.165363967418671,-0.174880489706993,-0.97060364484787,0.180231630802155,0.0018807944143191,-0.983622372150421,0.166398614645004,0.0658273175358772,-0.983858823776245,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.180231630802155,0.0018807944143191,-0.983622372150421,0.166398614645004,0.0658273175358772,-0.983858823776245,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.137686893343925,-0.0114949056878686,-0.990409076213837,0.0651300996541977,-0.215705081820488,-0.974283993244171,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.0151032572612166,-0.293993681669235,-0.955687999725342,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,\r\n0.00122933427337557,-0.38062909245491,-0.924726963043213,0.0151032572612166,-0.293993681669235,-0.955687999725342,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.00122933427337557,-0.38062909245491,-0.924726963043213,0.0605537928640842,-0.300075352191925,-0.951991558074951,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.150959089398384,-0.174802199006081,-0.972962200641632,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.161024048924446,0.208880096673965,-0.964593350887299,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.292733699083328,0.469024986028671,-0.833260118961334,-0.243293061852455,0.290073841810226,-0.925562262535095,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.558854937553406,0.74226576089859,-0.369760096073151,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.427101492881775,0.660764932632446,-0.617230892181396,-0.292733699083328,0.469024986028671,-0.833260118961334,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.4887655377388,0.814206898212433,-0.313329190015793,\r\n-0.406635671854019,0.855895519256592,-0.319515496492386,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.333043068647385,0.417030781507492,-0.845675826072693,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.194980442523956,0.216197326779366,-0.95668238401413,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.190691411495209,0.345014065504074,-0.919022262096405,-0.238716408610344,0.3423812687397,-0.908729553222656,-0.190691411495209,0.345014065504074,-0.919022262096405,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.216944545507431,0.245095402002335,-0.944914400577545,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.0831990912556648,0.0253259371966124,-0.996211051940918,0.138233199715614,-0.154509603977203,-0.978273093700409,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.0796829611063004,0.0123391980305314,-0.996743857860565,0.138233199715614,-0.154509603977203,-0.978273093700409,0.0959679335355759,-0.234750226140022,-0.967306792736053,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.0837242007255554,-0.20459870994091,-0.975258588790894,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.435238867998123,0.814061880111694,-0.384538978338242,\r\n-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.235333934426308,-0.895576775074005,-0.377571195363998,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.369729578495026,-0.672889709472656,-0.640717804431915,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.711746335029602,0.456856489181519,-0.53357207775116,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.303867101669312,-0.746460556983948,-0.591997683048248,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.333204537630081,-0.64449280500412,-0.68818861246109,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.169943541288376,-0.498243600130081,-0.850219011306763,-0.189662843942642,-0.407565414905548,-0.89326274394989,\r\n-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.189118325710297,-0.264220237731934,-0.945738732814789,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.189118325710297,-0.264220237731934,-0.945738732814789,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.199785277247429,-0.324241876602173,-0.924636662006378,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.339684456586838,-0.249061316251755,-0.906963527202606,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.350218594074249,-0.156738519668579,-0.923460841178894,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.143133521080017,-0.042386882007122,-0.988795280456543,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.215931609272957,-0.0866412073373795,-0.972556829452515,0.0302328895777464,-0.170521482825279,-0.984889984130859,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.0156853441148996,-0.159185528755188,-0.987124025821686,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.301725566387177,-0.0198103506118059,-0.953188955783844,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.0156853441148996,-0.159185528755188,-0.987124025821686,\r\n0.125146970152855,-0.147026941180229,-0.981183588504791,0.0302328895777464,-0.170521482825279,-0.984889984130859,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.0916893929243088,0.22381928563118,-0.970308125019073,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.224940776824951,0.116155341267586,-0.967424154281616,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.0916893929243088,0.22381928563118,-0.970308125019073,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.161024048924446,0.208880096673965,-0.964593350887299,-0.136039167642593,0.187416315078735,-0.972814679145813,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.0101125156506896,-0.041262187063694,-0.999097108840942,0.0520155765116215,0.0441797599196434,-0.997668504714966,-0.0156853441148996,-0.159185528755188,-0.987124025821686,0.123632527887821,-0.0629393234848976,-0.990330040454865,0.125146970152855,-0.147026941180229,-0.981183588504791,0.0467387810349464,0.0630889758467674,-0.996912717819214,0.138881623744965,0.0239541567862034,-0.990019202232361,0.123632527887821,-0.0629393234848976,-0.990330040454865,-0.0479524545371532,0.0857889652252197,-0.995158672332764,0.0593034103512764,0.0568324029445648,-0.996620833873749,0.0467387810349464,0.0630889758467674,-0.996912717819214,0.0206686109304428,-0.081759050488472,-0.996437728404999,0.0190103780478239,-0.143487051129341,-0.989469587802887,0.0493968948721886,-0.0242191702127457,-0.998485505580902,0.0206686109304428,-0.081759050488472,-0.996437728404999,0.0593034103512764,0.0568324029445648,-0.996620833873749,-0.099189504981041,-0.0185407921671867,-0.994895756244659,-0.0101125156506896,-0.041262187063694,-0.999097108840942,-0.00602553272619843,-0.112938426434994,-0.993583559989929,\r\n0.02940115891397,-0.0989354625344276,-0.99465936422348,-0.00602553272619843,-0.112938426434994,-0.993583559989929,0.0190103780478239,-0.143487051129341,-0.989469587802887,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.0475360043346882,-0.065895214676857,-0.996693551540375,-0.0395806021988392,-0.189762115478516,-0.981031954288483,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0475360043346882,-0.065895214676857,-0.996693551540375,0.0619631744921207,0.0327636711299419,-0.997540473937988,0.0852484926581383,0.04768380895257,-0.995217978954315,0.127894386649132,0.0270813573151827,-0.991417944431305,0.164056897163391,0.0175847243517637,-0.986293971538544,0.156251639127731,-0.011892119422555,-0.987645626068115,0.127894386649132,0.0270813573151827,-0.991417944431305,-0.0877998098731041,0.0248996168375015,-0.995826840400696,-0.0237608775496483,-0.127393871545792,-0.991567492485046,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.0395806021988392,-0.189762115478516,-0.981031954288483,-0.0901547148823738,-0.11613742262125,-0.98913300037384,-0.0237608775496483,-0.127393871545792,-0.991567492485046,-0.0877998098731041,0.0248996168375015,-0.995826840400696,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.067043274641037,0.192003682255745,-0.979101479053497,0.194986119866371,-0.0757842734456062,-0.977873742580414,0.164056897163391,0.0175847243517637,-0.986293971538544,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.297214239835739,-0.315257459878922,-0.901263773441315,0.30599445104599,-0.262167602777481,-0.915224254131317,0.336532026529312,-0.261102020740509,-0.904749572277069,0.255576372146606,-0.23143082857132,-0.938680112361908,0.336532026529312,-0.261102020740509,-0.904749572277069,0.223113626241684,-0.11917807161808,-0.967479646205902,0.201302587985992,-0.117223046720028,-0.972489595413208,0.223113626241684,-0.11917807161808,-0.967479646205902,0.121602244675159,-0.0288799051195383,-0.992158591747284,\r\n-0.0126893641427159,-0.68892377614975,-0.724722623825073,0.0311826728284359,-0.625264823436737,-0.779789328575134,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.11298880726099,-0.708490550518036,-0.696616470813751,0.0311826728284359,-0.625264823436737,-0.779789328575134,-0.00349421938881278,-0.693794131278992,-0.720164775848389,0.219788774847984,-0.240773782134056,-0.945368051528931,0.194426283240318,-0.224393129348755,-0.954906344413757,0.181501194834709,-0.175054237246513,-0.96768444776535,0.219788774847984,-0.240773782134056,-0.945368051528931,0.218527972698212,-0.268132418394089,-0.938269913196564,0.191376388072968,-0.384473264217377,-0.903080999851227,0.191376388072968,-0.384473264217377,-0.903080999851227,0.218527972698212,-0.268132418394089,-0.938269913196564,0.189302518963814,-0.337667763233185,-0.922033071517944,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.189302518963814,-0.337667763233185,-0.922033071517944,0.12470918148756,-0.254560112953186,-0.958982110023499,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0602031350135803,-0.330446273088455,-0.941902756690979,0.12470918148756,-0.254560112953186,-0.958982110023499,0.126996800303459,-0.603143632411957,-0.787457644939423,0.11298880726099,-0.708490550518036,-0.696616470813751,0.0683420524001122,-0.541300117969513,-0.838047385215759,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.126996800303459,-0.603143632411957,-0.787457644939423,0.0491982698440552,-0.386663824319839,-0.920907437801361,0.124767802655697,-0.256885468959808,-0.95835417509079,0.181501194834709,-0.175054237246513,-0.96768444776535,0.150959089398384,-0.174802199006081,-0.972962200641632,0.30599445104599,-0.262167602777481,-0.915224254131317,0.258647322654724,-0.256218314170837,-0.931371867656708,0.165363967418671,-0.174880489706993,-0.97060364484787,0.19019815325737,-0.16799284517765,-0.967265725135803,\r\n0.180231630802155,0.0018807944143191,-0.983622372150421,0.165363967418671,-0.174880489706993,-0.97060364484787,0.180231630802155,0.0018807944143191,-0.983622372150421,0.18333488702774,0.0715155899524689,-0.980445683002472,0.166398614645004,0.0658273175358772,-0.983858823776245,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.166398614645004,0.0658273175358772,-0.983858823776245,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.13140606880188,-0.265536695718765,-0.95510345697403,0.0151032572612166,-0.293993681669235,-0.955687999725342,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.00122933427337557,-0.38062909245491,-0.924726963043213,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,0.13140606880188,-0.265536695718765,-0.95510345697403,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,0.0151032572612166,-0.293993681669235,-0.955687999725342,0.150959089398384,-0.174802199006081,-0.972962200641632,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.124767802655697,-0.256885468959808,-0.95835417509079,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.142204597592354,0.225137546658516,-0.963893592357636,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.161024048924446,0.208880096673965,-0.964593350887299,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.292733699083328,0.469024986028671,-0.833260118961334,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.224791973829269,0.133383005857468,-0.965234398841858,\r\n-0.203810825943947,0.216321840882301,-0.954811990261078,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.531361937522888,0.661099910736084,-0.529718160629272,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.4887655377388,0.814206898212433,-0.313329190015793,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.498420923948288,0.762529969215393,-0.412461638450623,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.478213369846344,0.578553795814514,-0.660747528076172,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.393543601036072,0.489563018083572,-0.778107523918152,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.146766126155853,0.423330903053284,-0.894008100032806,-0.190691411495209,0.345014065504074,-0.919022262096405,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.187278464436531,0.277397722005844,-0.942325413227081,-0.190691411495209,0.345014065504074,-0.919022262096405,\r\n0.0959679335355759,-0.234750226140022,-0.967306792736053,0.0837242007255554,-0.20459870994091,-0.975258588790894,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0364673621952534,-0.342085719108582,-0.938960790634155,0.0311826728284359,-0.625264823436737,-0.779789328575134,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.138233199715614,-0.154509603977203,-0.978273093700409,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.127959370613098,-0.57174950838089,-0.810388028621674,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.138233199715614,-0.154509603977203,-0.978273093700409,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.105448715388775,-0.0967698320746422,-0.98970502614975,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.0837242007255554,-0.20459870994091,-0.975258588790894,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.494522094726563,0.838943779468536,-0.227202832698822,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.329436868429184,-0.905864834785461,-0.266233146190643,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.369729578495026,-0.672889709472656,-0.640717804431915,-0.302855789661407,-0.719336092472076,-0.625167012214661,-0.369729578495026,-0.672889709472656,-0.640717804431915,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.334797412157059,-0.744083523750305,-0.578143894672394,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.700127422809601,0.433573722839355,-0.567305207252502,\r\n-0.74772721529007,0.352107733488083,-0.562960028648376,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.655719816684723,0.598467826843262,-0.460290759801865,-0.594754338264465,0.744075238704681,-0.304333925247192,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.700127422809601,0.433573722839355,-0.567305207252502,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.387987226247787,-0.665322661399841,-0.637817800045013,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.25814101099968,-0.540419280529022,-0.800818383693695,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.189118325710297,-0.264220237731934,-0.945738732814789,-0.189118325710297,-0.264220237731934,-0.945738732814789,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.21876335144043,-0.257966697216034,-0.941060960292816,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.242983594536781,-0.180361583828926,-0.953115224838257,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.344839632511139,-0.114120595157146,-0.931698441505432,\r\n-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.404624253511429,-0.0540775768458843,-0.912882626056671,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.401432752609253,-0.0305752791464329,-0.915377914905548,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.0156853441148996,-0.159185528755188,-0.987124025821686,-0.134542554616928,-0.160345897078514,-0.97784835100174,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.365319103002548,-0.0458358079195023,-0.929753184318542,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.134717956185341,0.189552634954453,-0.97258460521698,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.112296335399151,0.090812936425209,-0.989516258239746,-0.071506068110466,0.183812990784645,-0.980356872081757,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.161024048924446,0.208880096673965,-0.964593350887299,-0.0101125156506896,-0.041262187063694,-0.999097108840942,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.0462311170995235,0.104563765227795,-0.993443012237549,-0.112296335399151,0.090812936425209,-0.989516258239746,\r\n-0.0395497009158134,-0.0228999368846416,-0.998955130577087,0.123632527887821,-0.0629393234848976,-0.990330040454865,-0.0156853441148996,-0.159185528755188,-0.987124025821686,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,0.0467387810349464,0.0630889758467674,-0.996912717819214,0.123632527887821,-0.0629393234848976,-0.990330040454865,-0.099189504981041,-0.0185407921671867,-0.994895756244659,0.0593034103512764,0.0568324029445648,-0.996620833873749,-0.0479524545371532,0.0857889652252197,-0.995158672332764,-0.0479524545371532,0.0857889652252197,-0.995158672332764,0.0467387810349464,0.0630889758467674,-0.996912717819214,-0.0695839077234268,0.0894111469388008,-0.993561089038849,0.0206686109304428,-0.081759050488472,-0.996437728404999,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0190103780478239,-0.143487051129341,-0.989469587802887,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.0206686109304428,-0.081759050488472,-0.996437728404999,-0.099189504981041,-0.0185407921671867,-0.994895756244659,0.0433649569749832,-0.221180886030197,-0.974268019199371,0.0678945705294609,-0.137903437018394,-0.988115847110748,-0.0395806021988392,-0.189762115478516,-0.981031954288483,0.0852484926581383,0.04768380895257,-0.995217978954315,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.127894386649132,0.0270813573151827,-0.991417944431305,0.164056897163391,0.0175847243517637,-0.986293971538544,0.127894386649132,0.0270813573151827,-0.991417944431305,0.163514569401741,-0.0149432085454464,-0.98642772436142,-0.0877998098731041,0.0248996168375015,-0.995826840400696,0.0645886734127998,0.0815169438719749,-0.994576930999756,-0.0237608775496483,-0.127393871545792,-0.991567492485046,-0.0395806021988392,-0.189762115478516,-0.981031954288483,-0.0237608775496483,-0.127393871545792,-0.991567492485046,0.0433649569749832,-0.221180886030197,-0.974268019199371,-0.067043274641037,0.192003682255745,-0.979101479053497,-0.160241693258286,0.18693707883358,-0.969214677810669,-0.17532005906105,0.313220888376236,-0.933357119560242,\r\n-0.0877998098731041,0.0248996168375015,-0.995826840400696,-0.067043274641037,0.192003682255745,-0.979101479053497,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.164056897163391,0.0175847243517637,-0.986293971538544,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.30599445104599,-0.262167602777481,-0.915224254131317,0.297214239835739,-0.315257459878922,-0.901263773441315,0.258647322654724,-0.256218314170837,-0.931371867656708,0.255576372146606,-0.23143082857132,-0.938680112361908,0.297214239835739,-0.315257459878922,-0.901263773441315,0.336532026529312,-0.261102020740509,-0.904749572277069,0.255576372146606,-0.23143082857132,-0.938680112361908,0.223113626241684,-0.11917807161808,-0.967479646205902,0.201302587985992,-0.117223046720028,-0.972489595413208,0.201302587985992,-0.117223046720028,-0.972489595413208,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.163699015974998,-0.116666130721569,-0.979587435722351,0.127959370613098,-0.57174950838089,-0.810388028621674,0.0311826728284359,-0.625264823436737,-0.779789328575134,0.11298880726099,-0.708490550518036,-0.696616470813751,0.219788774847984,-0.240773782134056,-0.945368051528931,0.181501194834709,-0.175054237246513,-0.96768444776535,0.218527972698212,-0.268132418394089,-0.938269913196564,0.218527972698212,-0.268132418394089,-0.938269913196564,0.280963540077209,-0.263755589723587,-0.922763466835022,0.189302518963814,-0.337667763233185,-0.922033071517944,0.280963540077209,-0.263755589723587,-0.922763466835022,0.12470918148756,-0.254560112953186,-0.958982110023499,0.189302518963814,-0.337667763233185,-0.922033071517944,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.12470918148756,-0.254560112953186,-0.958982110023499,0.173526376485825,-0.147217467427254,-0.973763585090637,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.178986579179764,-0.610258638858795,-0.771717667579651,\r\n0.11298880726099,-0.708490550518036,-0.696616470813751,0.126996800303459,-0.603143632411957,-0.787457644939423,0.15455861389637,-0.665079534053802,-0.730602979660034,0.126996800303459,-0.603143632411957,-0.787457644939423,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.124767802655697,-0.256885468959808,-0.95835417509079,0.113374941051006,-0.336371541023254,-0.934879779815674,0.181501194834709,-0.175054237246513,-0.96768444776535,0.165363967418671,-0.174880489706993,-0.97060364484787,0.258647322654724,-0.256218314170837,-0.931371867656708,0.174083575606346,-0.161216720938683,-0.971444249153137,0.19019815325737,-0.16799284517765,-0.967265725135803,0.282154619693756,-0.189542219042778,-0.940458655357361,0.180231630802155,0.0018807944143191,-0.983622372150421,0.19019815325737,-0.16799284517765,-0.967265725135803,0.165363967418671,-0.174880489706993,-0.97060364484787,0.167007371783257,-0.235988944768906,-0.957297086715698,0.180231630802155,0.0018807944143191,-0.983622372150421,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.18333488702774,0.0715155899524689,-0.980445683002472,0.183729469776154,0.0450949296355248,-0.981941878795624,0.166398614645004,0.0658273175358772,-0.983858823776245,0.18333488702774,0.0715155899524689,-0.980445683002472,0.183729469776154,0.0450949296355248,-0.981941878795624,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.166398614645004,0.0658273175358772,-0.983858823776245,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.13140606880188,-0.265536695718765,-0.95510345697403,0.0967889279127121,-0.102636590600014,-0.989998757839203,0.135395973920822,-0.383274108171463,-0.913656771183014,0.0352594070136547,-0.370639443397522,-0.928107261657715,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,0.13140606880188,-0.265536695718765,-0.95510345697403,0.135395973920822,-0.383274108171463,-0.913656771183014,-2.74218177764851e-006,-0.383664518594742,-0.923472464084625,0.124767802655697,-0.256885468959808,-0.95835417509079,0.0352594070136547,-0.370639443397522,-0.928107261657715,\r\n0.113374941051006,-0.336371541023254,-0.934879779815674,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.123818516731262,0.129360795021057,-0.983836710453033,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.105508998036385,0.208710476756096,-0.972269356250763,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.315758436918259,0.579250454902649,-0.751508712768555,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.203810825943947,0.216321840882301,-0.954811990261078,-0.224791973829269,0.133383005857468,-0.965234398841858,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.224791973829269,0.133383005857468,-0.965234398841858,-0.192791745066643,0.192377790808678,-0.962196469306946,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.424770772457123,0.779301404953003,-0.460715740919113,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.418160825967789,0.764148414134979,-0.491140067577362,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.317880719900131,0.879152297973633,-0.355025231838226,\r\n-0.254042267799377,0.584669888019562,-0.770469725131989,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.254042267799377,0.584669888019562,-0.770469725131989,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.37139618396759,0.561201751232147,-0.739673793315887,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.234531119465828,0.42688524723053,-0.873363614082336,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.146766126155853,0.423330903053284,-0.894008100032806,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.190691411495209,0.345014065504074,-0.919022262096405,-0.146766126155853,0.423330903053284,-0.894008100032806,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0837242007255554,-0.20459870994091,-0.975258588790894,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.127959370613098,-0.57174950838089,-0.810388028621674,0.0524433739483356,-0.210433959960938,-0.976200342178345,0.0311826728284359,-0.625264823436737,-0.779789328575134,0.178986579179764,-0.610258638858795,-0.771717667579651,0.138233199715614,-0.154509603977203,-0.978273093700409,0.127959370613098,-0.57174950838089,-0.810388028621674,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.138233199715614,-0.154509603977203,-0.978273093700409,0.161467954516411,0.065901018679142,-0.984675109386444,0.0837242007255554,-0.20459870994091,-0.975258588790894,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.0919713452458382,-0.196463525295258,-0.976188123226166,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.288713335990906,-0.779119074344635,-0.556433320045471,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.369729578495026,-0.672889709472656,-0.640717804431915,-0.369729578495026,-0.672889709472656,-0.640717804431915,\r\n-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.74772721529007,0.352107733488083,-0.562960028648376,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.697091162204742,0.714060544967651,-0.0646629333496094,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.798590183258057,0.469512134790421,-0.376579225063324,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.395239055156708,-0.716373920440674,-0.574973285198212,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.220593020319939,-0.443751603364944,-0.86857533454895,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.207848146557808,-0.289344847202301,-0.934386789798737,\r\n-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.207848146557808,-0.289344847202301,-0.934386789798737,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.344839632511139,-0.114120595157146,-0.931698441505432,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.30757001042366,-0.0710304751992226,-0.948870539665222,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,-0.0156853441148996,-0.159185528755188,-0.987124025821686,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.45162957906723,-0.0015536256833002,-0.892204165458679,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.132265210151672,0.230017706751823,-0.964156448841095,-0.081613227725029,0.193947643041611,-0.977611005306244,-0.071506068110466,0.183812990784645,-0.980356872081757,-0.112296335399151,0.090812936425209,-0.989516258239746,0.0462311170995235,0.104563765227795,-0.993443012237549,-0.071506068110466,0.183812990784645,-0.980356872081757,-0.081613227725029,0.193947643041611,-0.977611005306244,\r\n-0.132265210151672,0.230017706751823,-0.964156448841095,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.103670813143253,0.238385453820229,-0.96562135219574,-0.081613227725029,0.193947643041611,-0.977611005306244,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.143028378486633,0.214149504899979,-0.966272592544556,-0.127928629517555,0.216184452176094,-0.967935144901276,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.0462311170995235,0.104563765227795,-0.993443012237549,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.0784993097186089,0.093907967209816,-0.992481291294098,-0.0695839077234268,0.0894111469388008,-0.993561089038849,0.0467387810349464,0.0630889758467674,-0.996912717819214,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,-0.0479524545371532,0.0857889652252197,-0.995158672332764,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.099189504981041,-0.0185407921671867,-0.994895756244659,-0.0479524545371532,0.0857889652252197,-0.995158672332764,-0.0695839077234268,0.0894111469388008,-0.993561089038849,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0206686109304428,-0.081759050488472,-0.996437728404999,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,-0.099189504981041,-0.0185407921671867,-0.994895756244659,-0.198037981987,0.025371577590704,-0.979865908622742,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.0433649569749832,-0.221180886030197,-0.974268019199371,0.146844774484634,-0.120697386562824,-0.981768131256104,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.18929535150528,-0.127887591719627,-0.973556220531464,0.127894386649132,0.0270813573151827,-0.991417944431305,0.127894386649132,0.0270813573151827,-0.991417944431305,0.18929535150528,-0.127887591719627,-0.973556220531464,0.163514569401741,-0.0149432085454464,-0.98642772436142,\r\n0.146844774484634,-0.120697386562824,-0.981768131256104,-0.0237608775496483,-0.127393871545792,-0.991567492485046,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.146844774484634,-0.120697386562824,-0.981768131256104,0.0433649569749832,-0.221180886030197,-0.974268019199371,-0.0237608775496483,-0.127393871545792,-0.991567492485046,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.024742403998971,0.296238124370575,-0.954793512821198,-0.067043274641037,0.192003682255745,-0.979101479053497,-0.067043274641037,0.192003682255745,-0.979101479053497,0.038669478148222,0.200694337487221,-0.978890359401703,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.255576372146606,-0.23143082857132,-0.938680112361908,0.258647322654724,-0.256218314170837,-0.931371867656708,0.297214239835739,-0.315257459878922,-0.901263773441315,0.255576372146606,-0.23143082857132,-0.938680112361908,0.201302587985992,-0.117223046720028,-0.972489595413208,0.294915109872818,-0.20293690264225,-0.933724462985992,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.163699015974998,-0.116666130721569,-0.979587435722351,0.266565561294556,-0.14500480890274,-0.95284640789032,0.201302587985992,-0.117223046720028,-0.972489595413208,0.163699015974998,-0.116666130721569,-0.979587435722351,0.178986579179764,-0.610258638858795,-0.771717667579651,0.127959370613098,-0.57174950838089,-0.810388028621674,0.11298880726099,-0.708490550518036,-0.696616470813751,0.218527972698212,-0.268132418394089,-0.938269913196564,0.181501194834709,-0.175054237246513,-0.96768444776535,0.210872441530228,-0.308566808700562,-0.92753392457962,0.210872441530228,-0.308566808700562,-0.92753392457962,0.280963540077209,-0.263755589723587,-0.922763466835022,0.218527972698212,-0.268132418394089,-0.938269913196564,0.12470918148756,-0.254560112953186,-0.958982110023499,\r\n0.280963540077209,-0.263755589723587,-0.922763466835022,0.173526376485825,-0.147217467427254,-0.973763585090637,0.133050665259361,-0.258500725030899,-0.95680445432663,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.0889653041958809,-0.469005644321442,-0.878702759742737,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.15455861389637,-0.665079534053802,-0.730602979660034,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.173526376485825,-0.147217467427254,-0.973763585090637,0.15455861389637,-0.665079534053802,-0.730602979660034,0.178986579179764,-0.610258638858795,-0.771717667579651,0.126996800303459,-0.603143632411957,-0.787457644939423,0.181501194834709,-0.175054237246513,-0.96768444776535,0.113374941051006,-0.336371541023254,-0.934879779815674,0.210872441530228,-0.308566808700562,-0.92753392457962,0.174083575606346,-0.161216720938683,-0.971444249153137,0.258647322654724,-0.256218314170837,-0.931371867656708,0.288809478282928,-0.208569824695587,-0.934391558170319,0.165363967418671,-0.174880489706993,-0.97060364484787,0.174083575606346,-0.161216720938683,-0.971444249153137,0.167007371783257,-0.235988944768906,-0.957297086715698,0.19019815325737,-0.16799284517765,-0.967265725135803,0.167007371783257,-0.235988944768906,-0.957297086715698,0.282154619693756,-0.189542219042778,-0.940458655357361,0.282154619693756,-0.189542219042778,-0.940458655357361,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.180231630802155,0.0018807944143191,-0.983622372150421,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.118776977062225,0.0539676286280155,-0.991453170776367,0.18333488702774,0.0715155899524689,-0.980445683002472,0.183729469776154,0.0450949296355248,-0.981941878795624,0.18333488702774,0.0715155899524689,-0.980445683002472,0.118776977062225,0.0539676286280155,-0.991453170776367,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.183729469776154,0.0450949296355248,-0.981941878795624,\r\n0.242228031158447,-0.126434564590454,-0.961945831775665,0.251980423927307,-0.282243013381958,-0.925659000873566,0.13140606880188,-0.265536695718765,-0.95510345697403,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.113374941051006,-0.336371541023254,-0.934879779815674,0.0352594070136547,-0.370639443397522,-0.928107261657715,0.135395973920822,-0.383274108171463,-0.913656771183014,0.251980423927307,-0.282243013381958,-0.925659000873566,0.135395973920822,-0.383274108171463,-0.913656771183014,0.13140606880188,-0.265536695718765,-0.95510345697403,-0.123818516731262,0.129360795021057,-0.983836710453033,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.105194076895714,0.18419124186039,-0.977244973182678,-0.123818516731262,0.129360795021057,-0.983836710453033,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.224791973829269,0.133383005857468,-0.965234398841858,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.218119904398918,0.316949903964996,-0.923020243644714,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.224791973829269,0.133383005857468,-0.965234398841858,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.301576495170593,0.634988725185394,-0.711224913597107,\r\n-0.245727062225342,0.876851618289948,-0.413218289613724,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.401730746030808,0.84296578168869,-0.357800096273422,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.317880719900131,0.879152297973633,-0.355025231838226,-0.406635671854019,0.855895519256592,-0.319515496492386,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.378557771444321,0.833404898643494,-0.402653902769089,-0.317880719900131,0.879152297973633,-0.355025231838226,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.254042267799377,0.584669888019562,-0.770469725131989,-0.369819402694702,0.681725084781647,-0.63125616312027,-0.269945323467255,0.492198556661606,-0.827568709850311,-0.254042267799377,0.584669888019562,-0.770469725131989,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.0411270670592785,0.464413553476334,-0.884662926197052,-0.146766126155853,0.423330903053284,-0.894008100032806,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.0561862401664257,0.397222965955734,-0.916000485420227,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.146766126155853,0.423330903053284,-0.894008100032806,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.166455715894699,-0.206497728824615,-0.964184165000916,0.138233199715614,-0.154509603977203,-0.978273093700409,0.178986579179764,-0.610258638858795,-0.771717667579651,0.166455715894699,-0.206497728824615,-0.964184165000916,\r\n0.161467954516411,0.065901018679142,-0.984675109386444,0.138233199715614,-0.154509603977203,-0.978273093700409,0.139867320656776,0.0103175556287169,-0.990116477012634,0.115136742591858,-0.0487506836652756,-0.992152631282806,0.161467954516411,0.065901018679142,-0.984675109386444,0.139867320656776,0.0103175556287169,-0.990116477012634,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.115136742591858,-0.0487506836652756,-0.992152631282806,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.399493336677551,-0.825402736663818,-0.39889258146286,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.396530598402023,-0.688705742359161,-0.606998920440674,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.409255385398865,-0.724496483802795,-0.55463033914566,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.870820581912994,0.453672081232071,-0.189348936080933,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.813594281673431,0.385205745697021,-0.435523688793182,-0.870820581912994,0.453672081232071,-0.189348936080933,-0.782090604305267,0.597028851509094,-0.178580030798912,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.803357422351837,0.427955508232117,-0.414090305566788,-0.870820581912994,0.453672081232071,-0.189348936080933,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.442909896373749,-0.715986728668213,-0.539623618125916,\r\n-0.426988989114761,-0.709749758243561,-0.560299456119537,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.333944708108902,-0.59163910150528,-0.733787477016449,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.211405783891678,-0.193077832460403,-0.958137989044189,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.185722827911377,-0.0727532729506493,-0.979905068874359,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.436503171920776,0.0294902771711349,-0.899219214916229,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.182093650102615,0.122520454227924,-0.975618004798889,\r\n-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.215931609272957,-0.0866412073373795,-0.972556829452515,-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,-0.470697611570358,0.0247064139693975,-0.881948411464691,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.564496397972107,0.0603567771613598,-0.823225796222687,0.0462311170995235,0.104563765227795,-0.993443012237549,0.0167599190026522,0.124225698411465,-0.992112278938293,-0.071506068110466,0.183812990784645,-0.980356872081757,0.0167599190026522,0.124225698411465,-0.992112278938293,-0.081613227725029,0.193947643041611,-0.977611005306244,-0.071506068110466,0.183812990784645,-0.980356872081757,-0.0302844028919935,0.185534790158272,-0.982170879840851,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.081613227725029,0.193947643041611,-0.977611005306244,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.02940115891397,-0.0989354625344276,-0.99465936422348,0.0520155765116215,0.0441797599196434,-0.997668504714966,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.0784993097186089,0.093907967209816,-0.992481291294098,0.0784993097186089,0.093907967209816,-0.992481291294098,0.0614481344819069,0.124429121613503,-0.990323901176453,0.0462311170995235,0.104563765227795,-0.993443012237549,-0.0695839077234268,0.0894111469388008,-0.993561089038849,-0.0395497009158134,-0.0228999368846416,-0.998955130577087,-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.0479524545371532,0.0857889652252197,-0.995158672332764,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.198037981987,0.025371577590704,-0.979865908622742,-0.099189504981041,-0.0185407921671867,-0.994895756244659,\r\n-0.182093650102615,0.122520454227924,-0.975618004798889,-0.0695839077234268,0.0894111469388008,-0.993561089038849,-0.179897546768188,0.0478736124932766,-0.982519686222076,-0.198037981987,0.025371577590704,-0.979865908622742,-0.127594411373138,0.122388735413551,-0.98424619436264,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.18929535150528,-0.127887591719627,-0.973556220531464,0.0678945705294609,-0.137903437018394,-0.988115847110748,0.146844774484634,-0.120697386562824,-0.981768131256104,0.18929535150528,-0.127887591719627,-0.973556220531464,0.265537351369858,-0.125651463866234,-0.955877363681793,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.178070828318596,0.0481442846357822,-0.982839047908783,0.146844774484634,-0.120697386562824,-0.981768131256104,-0.17532005906105,0.313220888376236,-0.933357119560242,-0.0561862401664257,0.397222965955734,-0.916000485420227,-0.024742403998971,0.296238124370575,-0.954793512821198,-0.024742403998971,0.296238124370575,-0.954793512821198,0.038669478148222,0.200694337487221,-0.978890359401703,-0.067043274641037,0.192003682255745,-0.979101479053497,0.101026028394699,0.153552621603012,-0.982962489128113,0.0645886734127998,0.0815169438719749,-0.994576930999756,0.038669478148222,0.200694337487221,-0.978890359401703,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.121602244675159,-0.0288799051195383,-0.992158591747284,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.258647322654724,-0.256218314170837,-0.931371867656708,0.255576372146606,-0.23143082857132,-0.938680112361908,0.294915109872818,-0.20293690264225,-0.933724462985992,0.266565561294556,-0.14500480890274,-0.95284640789032,0.294915109872818,-0.20293690264225,-0.933724462985992,0.201302587985992,-0.117223046720028,-0.972489595413208,0.182302892208099,-0.0465999990701675,-0.982137441635132,\r\n0.163699015974998,-0.116666130721569,-0.979587435722351,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.266565561294556,-0.14500480890274,-0.95284640789032,0.163699015974998,-0.116666130721569,-0.979587435722351,0.258545160293579,-0.220851272344589,-0.940414249897003,0.210872441530228,-0.308566808700562,-0.92753392457962,0.239617824554443,-0.362864226102829,-0.900506973266602,0.280963540077209,-0.263755589723587,-0.922763466835022,0.280963540077209,-0.263755589723587,-0.922763466835022,0.241542533040047,-0.10760198533535,-0.964405953884125,0.173526376485825,-0.147217467427254,-0.973763585090637,0.165814936161041,-0.508576273918152,-0.844899713993073,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.133050665259361,-0.258500725030899,-0.95680445432663,0.133050665259361,-0.258500725030899,-0.95680445432663,0.0759743377566338,-0.260848462581635,-0.962385535240173,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.15455861389637,-0.665079534053802,-0.730602979660034,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.121013857424259,-0.710319340229034,-0.693398773670197,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.173526376485825,-0.147217467427254,-0.973763585090637,0.241542533040047,-0.10760198533535,-0.964405953884125,0.178986579179764,-0.610258638858795,-0.771717667579651,0.15455861389637,-0.665079534053802,-0.730602979660034,0.191241279244423,-0.715605199337006,-0.67181533575058,0.113374941051006,-0.336371541023254,-0.934879779815674,0.200142547488213,-0.380230665206909,-0.902976989746094,0.210872441530228,-0.308566808700562,-0.92753392457962,0.258647322654724,-0.256218314170837,-0.931371867656708,0.294915109872818,-0.20293690264225,-0.933724462985992,0.288809478282928,-0.208569824695587,-0.934391558170319,0.195552080869675,-0.143145054578781,-0.970190048217773,0.174083575606346,-0.161216720938683,-0.971444249153137,0.288809478282928,-0.208569824695587,-0.934391558170319,0.222239121794701,-0.167364597320557,-0.960520029067993,0.167007371783257,-0.235988944768906,-0.957297086715698,\r\n0.174083575606346,-0.161216720938683,-0.971444249153137,0.167007371783257,-0.235988944768906,-0.957297086715698,0.222239121794701,-0.167364597320557,-0.960520029067993,0.282154619693756,-0.189542219042778,-0.940458655357361,0.282154619693756,-0.189542219042778,-0.940458655357361,0.285258054733276,-0.223806604743004,-0.931954026222229,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.118776977062225,0.0539676286280155,-0.991453170776367,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.183729469776154,0.0450949296355248,-0.981941878795624,0.118776977062225,0.0539676286280155,-0.991453170776367,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.242228031158447,-0.126434564590454,-0.961945831775665,0.183729469776154,0.0450949296355248,-0.981941878795624,0.224675416946411,-0.0986150950193405,-0.96943074464798,0.242228031158447,-0.126434564590454,-0.961945831775665,0.251980423927307,-0.282243013381958,-0.925659000873566,0.113374941051006,-0.336371541023254,-0.934879779815674,0.135395973920822,-0.383274108171463,-0.913656771183014,0.200142547488213,-0.380230665206909,-0.902976989746094,0.135395973920822,-0.383274108171463,-0.913656771183014,0.251980423927307,-0.282243013381958,-0.925659000873566,0.233667075634003,-0.366636544466019,-0.900542736053467,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.105759255588055,0.169364005327225,-0.979862630367279,-0.123818516731262,0.129360795021057,-0.983836710453033,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.199393436312675,0.309881150722504,-0.929632067680359,-0.301576495170593,0.634988725185394,-0.711224913597107,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.250747919082642,0.76234245300293,-0.596623241901398,\r\n-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.158472031354904,0.142510294914246,-0.977024734020233,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.101109839975834,0.206593975424767,-0.973188400268555,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.197802856564522,0.121516495943069,-0.972680628299713,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.300212740898132,0.799461960792542,-0.520319819450378,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.346794605255127,0.886809706687927,-0.305453658103943,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.317880719900131,0.879152297973633,-0.355025231838226,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.317880719900131,0.879152297973633,-0.355025231838226,-0.254042267799377,0.584669888019562,-0.770469725131989,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.122001305222511,0.609246253967285,-0.783539712429047,-0.254042267799377,0.584669888019562,-0.770469725131989,\r\n-0.122001305222511,0.609246253967285,-0.783539712429047,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.0561862401664257,0.397222965955734,-0.916000485420227,-0.146766126155853,0.423330903053284,-0.894008100032806,-0.0411270670592785,0.464413553476334,-0.884662926197052,-0.0411270670592785,0.464413553476334,-0.884662926197052,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.0512070097029209,0.541606783866882,-0.839070796966553,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.166455715894699,-0.206497728824615,-0.964184165000916,0.178986579179764,-0.610258638858795,-0.771717667579651,0.220004484057426,-0.491466462612152,-0.842649757862091,0.166455715894699,-0.206497728824615,-0.964184165000916,0.200776875019073,-0.145579308271408,-0.968759596347809,0.161467954516411,0.065901018679142,-0.984675109386444,0.16813850402832,0.0930387675762177,-0.98136293888092,0.139867320656776,0.0103175556287169,-0.990116477012634,0.161467954516411,0.065901018679142,-0.984675109386444,0.141456112265587,-0.133855685591698,-0.980853080749512,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.139867320656776,0.0103175556287169,-0.990116477012634,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.456147879362106,-0.695713400840759,-0.554898023605347,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.470216661691666,-0.627006590366364,-0.621094882488251,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.889898777008057,0.440375208854675,-0.118952594697475,\r\n-0.870820581912994,0.453672081232071,-0.189348936080933,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.826712250709534,0.562068462371826,0.0250152181833982,-0.870820581912994,0.453672081232071,-0.189348936080933,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.878110945224762,0.460698336362839,-0.129143670201302,-0.426988989114761,-0.709749758243561,-0.560299456119537,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.405410468578339,-0.68100917339325,-0.609810352325439,-0.426988989114761,-0.709749758243561,-0.560299456119537,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.352198898792267,-0.489720672369003,-0.797577321529388,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.335564792156219,-0.310365200042725,-0.889420926570892,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.269545018672943,-0.0442703738808632,-0.961969614028931,\r\n-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.258718281984329,0.00179080211091787,-0.965951085090637,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.203949555754662,-0.101085275411606,-0.973748445510864,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.258542835712433,0.051242507994175,-0.964639663696289,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.523484289646149,0.0645486786961555,-0.849586665630341,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.545814394950867,0.0651776269078255,-0.835367202758789,-0.523484289646149,0.0645486786961555,-0.849586665630341,0.0379013866186142,0.0925152450799942,-0.994989633560181,0.0167599190026522,0.124225698411465,-0.992112278938293,0.0462311170995235,0.104563765227795,-0.993443012237549,-0.0302844028919935,0.185534790158272,-0.982170879840851,-0.081613227725029,0.193947643041611,-0.977611005306244,0.0167599190026522,0.124225698411465,-0.992112278938293,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.0302844028919935,0.185534790158272,-0.982170879840851,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.127928629517555,0.216184452176094,-0.967935144901276,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.178530335426331,0.324895173311234,-0.928746402263641,\r\n-0.199393436312675,0.309881150722504,-0.929632067680359,-0.147346392273903,0.216344371438026,-0.96513420343399,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.00285456888377666,0.14740914106369,-0.989071428775787,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.0784993097186089,0.093907967209816,-0.992481291294098,0.0444735288619995,0.0130248935893178,-0.998925626277924,0.00285456888377666,0.14740914106369,-0.989071428775787,0.0784993097186089,0.093907967209816,-0.992481291294098,0.00285456888377666,0.14740914106369,-0.989071428775787,0.0614481344819069,0.124429121613503,-0.990323901176453,0.0379013866186142,0.0925152450799942,-0.994989633560181,0.0462311170995235,0.104563765227795,-0.993443012237549,0.0614481344819069,0.124429121613503,-0.990323901176453,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.198037981987,0.025371577590704,-0.979865908622742,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.127594411373138,0.122388735413551,-0.98424619436264,-0.198037981987,0.025371577590704,-0.979865908622742,-0.127594411373138,0.122388735413551,-0.98424619436264,0.00285456888377666,0.14740914106369,-0.989071428775787,-0.0490301102399826,-0.0214664470404387,-0.998566567897797,0.18929535150528,-0.127887591719627,-0.973556220531464,0.146844774484634,-0.120697386562824,-0.981768131256104,0.26262241601944,-0.103201523423195,-0.959363758563995,0.18929535150528,-0.127887591719627,-0.973556220531464,0.26262241601944,-0.103201523423195,-0.959363758563995,0.265537351369858,-0.125651463866234,-0.955877363681793,0.163514569401741,-0.0149432085454464,-0.98642772436142,0.265537351369858,-0.125651463866234,-0.955877363681793,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.101026028394699,0.153552621603012,-0.982962489128113,0.178070828318596,0.0481442846357822,-0.982839047908783,\r\n0.0645886734127998,0.0815169438719749,-0.994576930999756,0.146844774484634,-0.120697386562824,-0.981768131256104,0.178070828318596,0.0481442846357822,-0.982839047908783,0.26262241601944,-0.103201523423195,-0.959363758563995,-0.0561862401664257,0.397222965955734,-0.916000485420227,0.0235846135765314,0.388312369585037,-0.921225905418396,-0.024742403998971,0.296238124370575,-0.954793512821198,0.038669478148222,0.200694337487221,-0.978890359401703,-0.024742403998971,0.296238124370575,-0.954793512821198,0.113912150263786,0.286160886287689,-0.951386332511902,0.101026028394699,0.153552621603012,-0.982962489128113,0.038669478148222,0.200694337487221,-0.978890359401703,0.113912150263786,0.286160886287689,-0.951386332511902,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.0198185760527849,-0.0215288996696472,-0.999571740627289,0.0198185760527849,-0.0215288996696472,-0.999571740627289,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.0444004088640213,-0.02158791013062,-0.998780488967896,0.266565561294556,-0.14500480890274,-0.95284640789032,0.258545160293579,-0.220851272344589,-0.940414249897003,0.294915109872818,-0.20293690264225,-0.933724462985992,0.192796885967255,-0.160707667469978,-0.967988789081573,0.163699015974998,-0.116666130721569,-0.979587435722351,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.1409682482481,-0.029871741309762,-0.989563345909119,0.163699015974998,-0.116666130721569,-0.979587435722351,0.192796885967255,-0.160707667469978,-0.967988789081573,0.258545160293579,-0.220851272344589,-0.940414249897003,0.157663688063622,-0.355442583560944,-0.921304881572723,0.239617824554443,-0.362864226102829,-0.900506973266602,0.210872441530228,-0.308566808700562,-0.92753392457962,0.239617824554443,-0.362864226102829,-0.900506973266602,0.311656415462494,-0.281438410282135,-0.907558560371399,0.280963540077209,-0.263755589723587,-0.922763466835022,\r\n0.280963540077209,-0.263755589723587,-0.922763466835022,0.311656415462494,-0.281438410282135,-0.907558560371399,0.241542533040047,-0.10760198533535,-0.964405953884125,0.165814936161041,-0.508576273918152,-0.844899713993073,0.121013857424259,-0.710319340229034,-0.693398773670197,0.0875017121434212,-0.513224601745605,-0.853782057762146,0.133050665259361,-0.258500725030899,-0.95680445432663,0.240824460983276,-0.146756038069725,-0.959409296512604,0.165814936161041,-0.508576273918152,-0.844899713993073,0.133050665259361,-0.258500725030899,-0.95680445432663,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.240824460983276,-0.146756038069725,-0.959409296512604,0.15455861389637,-0.665079534053802,-0.730602979660034,0.121013857424259,-0.710319340229034,-0.693398773670197,0.191241279244423,-0.715605199337006,-0.67181533575058,0.241542533040047,-0.10760198533535,-0.964405953884125,0.162594005465508,-0.103433564305305,-0.981256663799286,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.191241279244423,-0.715605199337006,-0.67181533575058,0.220004484057426,-0.491466462612152,-0.842649757862091,0.178986579179764,-0.610258638858795,-0.771717667579651,0.18590871989727,-0.343163996934891,-0.920693397521973,0.210872441530228,-0.308566808700562,-0.92753392457962,0.200142547488213,-0.380230665206909,-0.902976989746094,0.258545160293579,-0.220851272344589,-0.940414249897003,0.288809478282928,-0.208569824695587,-0.934391558170319,0.294915109872818,-0.20293690264225,-0.933724462985992,0.195552080869675,-0.143145054578781,-0.970190048217773,0.222239121794701,-0.167364597320557,-0.960520029067993,0.174083575606346,-0.161216720938683,-0.971444249153137,0.195552080869675,-0.143145054578781,-0.970190048217773,0.288809478282928,-0.208569824695587,-0.934391558170319,0.249771565198898,-0.261931657791138,-0.932204842567444,0.222239121794701,-0.167364597320557,-0.960520029067993,0.290238499641418,-0.190686911344528,-0.937763333320618,0.282154619693756,-0.189542219042778,-0.940458655357361,0.285258054733276,-0.223806604743004,-0.931954026222229,\r\n0.282154619693756,-0.189542219042778,-0.940458655357361,0.290238499641418,-0.190686911344528,-0.937763333320618,0.218406438827515,-0.0481206811964512,-0.974670648574829,0.285258054733276,-0.223806604743004,-0.931954026222229,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.118776977062225,0.0539676286280155,-0.991453170776367,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.234608188271523,0.158929109573364,-0.959010183811188,0.14093579351902,0.0887687429785728,-0.986030995845795,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.118776977062225,0.0539676286280155,-0.991453170776367,0.242228031158447,-0.126434564590454,-0.961945831775665,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.158744737505913,-0.182402223348618,-0.970324397087097,0.202514111995697,-0.28090026974678,-0.938127338886261,0.251980423927307,-0.282243013381958,-0.925659000873566,0.242228031158447,-0.126434564590454,-0.961945831775665,0.135395973920822,-0.383274108171463,-0.913656771183014,0.233667075634003,-0.366636544466019,-0.900542736053467,0.200142547488213,-0.380230665206909,-0.902976989746094,0.202514111995697,-0.28090026974678,-0.938127338886261,0.233667075634003,-0.366636544466019,-0.900542736053467,0.251980423927307,-0.282243013381958,-0.925659000873566,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.199393436312675,0.309881150722504,-0.929632067680359,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.171391665935516,0.2453703135252,-0.954158365726471,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.115657836198807,0.404553443193436,-0.907171249389648,-0.130935952067375,0.57843029499054,-0.805154621601105,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.130935952067375,0.57843029499054,-0.805154621601105,\r\n-0.115657836198807,0.404553443193436,-0.907171249389648,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.0842681974172592,0.127077102661133,-0.988306701183319,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0630249530076981,0.135019347071648,-0.988836348056793,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.19674351811409,0.0997316017746925,-0.975369393825531,-0.167120099067688,0.865740716457367,-0.471766650676727,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.250747919082642,0.76234245300293,-0.596623241901398,-0.130935952067375,0.57843029499054,-0.805154621601105,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.322711199522018,0.899563670158386,-0.294351071119308,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.122001305222511,0.609246253967285,-0.783539712429047,-0.21731261909008,0.701985120773315,-0.678227066993713,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.144059970974922,0.501402258872986,-0.853136837482452,-0.122001305222511,0.609246253967285,-0.783539712429047,-0.0512070097029209,0.541606783866882,-0.839070796966553,-0.0561862401664257,0.397222965955734,-0.916000485420227,-0.0411270670592785,0.464413553476334,-0.884662926197052,0.0235846135765314,0.388312369585037,-0.921225905418396,-0.0512070097029209,0.541606783866882,-0.839070796966553,0.0188634041696787,0.497215628623962,-0.867421865463257,-0.0411270670592785,0.464413553476334,-0.884662926197052,\r\n0.0811764746904373,-0.484127789735794,-0.871223568916321,0.0919713452458382,-0.196463525295258,-0.976188123226166,0.141456112265587,-0.133855685591698,-0.980853080749512,0.166455715894699,-0.206497728824615,-0.964184165000916,0.220004484057426,-0.491466462612152,-0.842649757862091,0.200776875019073,-0.145579308271408,-0.968759596347809,0.162827610969543,-0.0908621773123741,-0.982461810112,0.161467954516411,0.065901018679142,-0.984675109386444,0.200776875019073,-0.145579308271408,-0.968759596347809,0.139867320656776,0.0103175556287169,-0.990116477012634,0.16813850402832,0.0930387675762177,-0.98136293888092,0.170298680663109,0.0733908265829086,-0.982655584812164,0.16813850402832,0.0930387675762177,-0.98136293888092,0.161467954516411,0.065901018679142,-0.984675109386444,0.162827610969543,-0.0908621773123741,-0.982461810112,0.139867320656776,0.0103175556287169,-0.990116477012634,0.170298680663109,0.0733908265829086,-0.982655584812164,0.141456112265587,-0.133855685591698,-0.980853080749512,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.46735543012619,-0.687389254570007,-0.555944919586182,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.442909896373749,-0.715986728668213,-0.539623618125916,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.90730082988739,0.3603236079216,-0.21673022210598,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.889898777008057,0.440375208854675,-0.118952594697475,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.929311275482178,0.354592204093933,-0.103173717856407,-0.878110945224762,0.460698336362839,-0.129143670201302,\r\n-0.889898777008057,0.440375208854675,-0.118952594697475,-0.837123095989227,0.539149165153503,-0.0924279913306236,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.426988989114761,-0.709749758243561,-0.560299456119537,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.417997807264328,-0.627880156040192,-0.656539559364319,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.44008332490921,-0.682134211063385,-0.583968639373779,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.418989360332489,-0.390768766403198,-0.819602072238922,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.321030408143997,-0.177257984876633,-0.930332720279694,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.124741531908512,-0.00255780038423836,-0.992185950279236,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.128720209002495,0.0476660765707493,-0.990534663200378,\r\n-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.523484289646149,0.0645486786961555,-0.849586665630341,-0.387504160404205,0.0708313062787056,-0.919142723083496,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.348955899477005,0.0464586392045021,-0.935986757278442,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.182093650102615,0.122520454227924,-0.975618004798889,-0.523484289646149,0.0645486786961555,-0.849586665630341,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.564496397972107,0.0603567771613598,-0.823225796222687,0.0379013866186142,0.0925152450799942,-0.994989633560181,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0167599190026522,0.124225698411465,-0.992112278938293,0.0757496133446693,0.216496795415878,-0.973340153694153,-0.0302844028919935,0.185534790158272,-0.982170879840851,0.0167599190026522,0.124225698411465,-0.992112278938293,-0.0302844028919935,0.185534790158272,-0.982170879840851,0.0757496133446693,0.216496795415878,-0.973340153694153,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.199393436312675,0.309881150722504,-0.929632067680359,0.00285456888377666,0.14740914106369,-0.989071428775787,0.00796609837561846,0.195799648761749,-0.980611503124237,0.0614481344819069,0.124429121613503,-0.990323901176453,0.00796609837561846,0.195799648761749,-0.980611503124237,0.0379013866186142,0.0925152450799942,-0.994989633560181,\r\n0.0614481344819069,0.124429121613503,-0.990323901176453,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.21675717830658,0.080500602722168,-0.972900748252869,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.132206097245216,0.239773318171501,-0.961784899234772,-0.127594411373138,0.122388735413551,-0.98424619436264,-0.132206097245216,0.239773318171501,-0.961784899234772,0.00285456888377666,0.14740914106369,-0.989071428775787,-0.127594411373138,0.122388735413551,-0.98424619436264,0.265537351369858,-0.125651463866234,-0.955877363681793,0.26262241601944,-0.103201523423195,-0.959363758563995,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.265537351369858,-0.125651463866234,-0.955877363681793,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.101026028394699,0.153552621603012,-0.982962489128113,0.205496713519096,0.19682951271534,-0.958660066127777,0.178070828318596,0.0481442846357822,-0.982839047908783,0.26262241601944,-0.103201523423195,-0.959363758563995,0.178070828318596,0.0481442846357822,-0.982839047908783,0.25105482339859,0.0280708204954863,-0.967565715312958,0.0235846135765314,0.388312369585037,-0.921225905418396,0.113912150263786,0.286160886287689,-0.951386332511902,-0.024742403998971,0.296238124370575,-0.954793512821198,0.205496713519096,0.19682951271534,-0.958660066127777,0.101026028394699,0.153552621603012,-0.982962489128113,0.113912150263786,0.286160886287689,-0.951386332511902,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.0198185760527849,-0.0215288996696472,-0.999571740627289,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.0198185760527849,-0.0215288996696472,-0.999571740627289,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.192796885967255,-0.160707667469978,-0.967988789081573,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.303346335887909,-0.0609222799539566,-0.950930774211884,\r\n0.1409682482481,-0.029871741309762,-0.989563345909119,0.0654614567756653,-0.0246040243655443,-0.997551560401917,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.1409682482481,-0.029871741309762,-0.989563345909119,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.258545160293579,-0.220851272344589,-0.940414249897003,0.192796885967255,-0.160707667469978,-0.967988789081573,0.255816012620926,-0.266281813383102,-0.929328799247742,0.157663688063622,-0.355442583560944,-0.921304881572723,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.239617824554443,-0.362864226102829,-0.900506973266602,0.157663688063622,-0.355442583560944,-0.921304881572723,0.210872441530228,-0.308566808700562,-0.92753392457962,0.18590871989727,-0.343163996934891,-0.920693397521973,0.239617824554443,-0.362864226102829,-0.900506973266602,0.128855884075165,-0.309597134590149,-0.942096412181854,0.311656415462494,-0.281438410282135,-0.907558560371399,0.311656415462494,-0.281438410282135,-0.907558560371399,0.128855884075165,-0.309597134590149,-0.942096412181854,0.241542533040047,-0.10760198533535,-0.964405953884125,0.1517733335495,-0.690122842788696,-0.707598149776459,0.121013857424259,-0.710319340229034,-0.693398773670197,0.165814936161041,-0.508576273918152,-0.844899713993073,0.240824460983276,-0.146756038069725,-0.959409296512604,0.291290432214737,-0.280019044876099,-0.914734423160553,0.165814936161041,-0.508576273918152,-0.844899713993073,0.162594005465508,-0.103433564305305,-0.981256663799286,0.240824460983276,-0.146756038069725,-0.959409296512604,0.173538848757744,-0.0438672862946987,-0.98384952545166,0.108007617294788,-0.71850061416626,-0.687088847160339,0.191241279244423,-0.715605199337006,-0.67181533575058,0.121013857424259,-0.710319340229034,-0.693398773670197,0.241542533040047,-0.10760198533535,-0.964405953884125,0.128855884075165,-0.309597134590149,-0.942096412181854,0.162594005465508,-0.103433564305305,-0.981256663799286,0.220004484057426,-0.491466462612152,-0.842649757862091,\r\n0.191241279244423,-0.715605199337006,-0.67181533575058,0.184473931789398,-0.491105169057846,-0.851343035697937,0.18590871989727,-0.343163996934891,-0.920693397521973,0.200142547488213,-0.380230665206909,-0.902976989746094,0.233667075634003,-0.366636544466019,-0.900542736053467,0.249771565198898,-0.261931657791138,-0.932204842567444,0.288809478282928,-0.208569824695587,-0.934391558170319,0.258545160293579,-0.220851272344589,-0.940414249897003,0.195552080869675,-0.143145054578781,-0.970190048217773,0.290238499641418,-0.190686911344528,-0.937763333320618,0.222239121794701,-0.167364597320557,-0.960520029067993,0.283008813858032,-0.195317268371582,-0.939019203186035,0.195552080869675,-0.143145054578781,-0.970190048217773,0.249771565198898,-0.261931657791138,-0.932204842567444,0.285258054733276,-0.223806604743004,-0.931954026222229,0.290238499641418,-0.190686911344528,-0.937763333320618,0.196958392858505,-0.197753414511681,-0.960260808467865,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.285258054733276,-0.223806604743004,-0.931954026222229,0.239583387970924,-0.279888153076172,-0.929657101631165,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.234608188271523,0.158929109573364,-0.959010183811188,0.118776977062225,0.0539676286280155,-0.991453170776367,0.234608188271523,0.158929109573364,-0.959010183811188,0.14093579351902,0.0887687429785728,-0.986030995845795,0.14093579351902,0.0887687429785728,-0.986030995845795,0.185141518712044,-0.082526683807373,-0.979240477085114,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.185141518712044,-0.082526683807373,-0.979240477085114,0.158744737505913,-0.182402223348618,-0.970324397087097,0.101622238755226,-0.0291670989245176,-0.99439537525177,0.202514111995697,-0.28090026974678,-0.938127338886261,0.242228031158447,-0.126434564590454,-0.961945831775665,0.158744737505913,-0.182402223348618,-0.970324397087097,0.202514111995697,-0.28090026974678,-0.938127338886261,0.18590871989727,-0.343163996934891,-0.920693397521973,\r\n0.233667075634003,-0.366636544466019,-0.900542736053467,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.264690071344376,0.303596019744873,-0.915296912193298,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.199393436312675,0.309881150722504,-0.929632067680359,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.0102444905787706,0.240444630384445,-0.970608770847321,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.130935952067375,0.57843029499054,-0.805154621601105,-0.0842681974172592,0.127077102661133,-0.988306701183319,-0.0102444905787706,0.240444630384445,-0.970608770847321,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0630249530076981,0.135019347071648,-0.988836348056793,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.0353532619774342,0.275779277086258,-0.960570573806763,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.167120099067688,0.865740716457367,-0.471766650676727,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.167120099067688,0.865740716457367,-0.471766650676727,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.130935952067375,0.57843029499054,-0.805154621601105,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.263100177049637,0.870439410209656,-0.416069120168686,\r\n-0.250952631235123,0.916077375411987,-0.312769711017609,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.245727062225342,0.876851618289948,-0.413218289613724,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.0461646467447281,0.627815902233124,-0.776991546154022,-0.122001305222511,0.609246253967285,-0.783539712429047,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.0461646467447281,0.627815902233124,-0.776991546154022,-0.0512070097029209,0.541606783866882,-0.839070796966553,-0.122001305222511,0.609246253967285,-0.783539712429047,0.0188634041696787,0.497215628623962,-0.867421865463257,0.0235846135765314,0.388312369585037,-0.921225905418396,-0.0411270670592785,0.464413553476334,-0.884662926197052,-0.0461646467447281,0.627815902233124,-0.776991546154022,0.0188634041696787,0.497215628623962,-0.867421865463257,-0.0512070097029209,0.541606783866882,-0.839070796966553,0.117043107748032,-0.406934291124344,-0.905927896499634,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.141456112265587,-0.133855685591698,-0.980853080749512,0.220004484057426,-0.491466462612152,-0.842649757862091,0.184473931789398,-0.491105169057846,-0.851343035697937,0.200776875019073,-0.145579308271408,-0.968759596347809,0.162827610969543,-0.0908621773123741,-0.982461810112,0.200776875019073,-0.145579308271408,-0.968759596347809,0.184473931789398,-0.491105169057846,-0.851343035697937,0.170298680663109,0.0733908265829086,-0.982655584812164,0.16813850402832,0.0930387675762177,-0.98136293888092,0.162767052650452,0.0616535618901253,-0.984736323356628,0.119929768145084,-0.184649989008904,-0.975459456443787,0.16813850402832,0.0930387675762177,-0.98136293888092,0.162827610969543,-0.0908621773123741,-0.982461810112,0.141456112265587,-0.133855685591698,-0.980853080749512,\r\n0.170298680663109,0.0733908265829086,-0.982655584812164,0.178094565868378,0.0613820552825928,-0.982096970081329,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.60069328546524,-0.581222236156464,-0.548951983451843,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.564465641975403,-0.59893798828125,-0.568024158477783,-0.60069328546524,-0.581222236156464,-0.548951983451843,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.4670050740242,-0.702592968940735,-0.536907076835632,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.444957852363586,-0.310373038053513,-0.84004819393158,-0.459941327571869,-0.541432619094849,-0.703778743743896,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.443491458892822,-0.250171989202499,-0.860656261444092,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.403247982263565,-0.216481655836105,-0.889115691184998,-0.443491458892822,-0.250171989202499,-0.860656261444092,\r\n-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.128720209002495,0.0476660765707493,-0.990534663200378,-0.104600243270397,0.0391309186816216,-0.993744134902954,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.128720209002495,0.0476660765707493,-0.990534663200378,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.523484289646149,0.0645486786961555,-0.849586665630341,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.564496397972107,0.0603567771613598,-0.823225796222687,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.451224476099014,0.117001079022884,-0.884707391262054,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.292013615369797,0.154694765806198,-0.943820655345917,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.523484289646149,0.0645486786961555,-0.849586665630341,\r\n0.00796609837561846,0.195799648761749,-0.980611503124237,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0379013866186142,0.0925152450799942,-0.994989633560181,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.103234194219112,0.183164149522781,-0.977646946907043,0.0167599190026522,0.124225698411465,-0.992112278938293,0.0757496133446693,0.216496795415878,-0.973340153694153,0.0167599190026522,0.124225698411465,-0.992112278938293,0.103234194219112,0.183164149522781,-0.977646946907043,0.0353268198668957,0.251206159591675,-0.967288672924042,-0.0640701875090599,0.292058050632477,-0.954252064228058,0.0757496133446693,0.216496795415878,-0.973340153694153,-0.0743647664785385,0.220299571752548,-0.972593367099762,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.0640701875090599,0.292058050632477,-0.954252064228058,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.178530335426331,0.324895173311234,-0.928746402263641,-0.0445683747529984,0.290933728218079,-0.955704510211945,0.00796609837561846,0.195799648761749,-0.980611503124237,0.00285456888377666,0.14740914106369,-0.989071428775787,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.430423080921173,0.30589097738266,-0.849215269088745,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.132206097245216,0.239773318171501,-0.961784899234772,-0.132206097245216,0.239773318171501,-0.961784899234772,-0.0445683747529984,0.290933728218079,-0.955704510211945,0.00285456888377666,0.14740914106369,-0.989071428775787,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.26262241601944,-0.103201523423195,-0.959363758563995,0.25105482339859,0.0280708204954863,-0.967565715312958,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.143717899918556,-0.0578650161623955,-0.987925469875336,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.178070828318596,0.0481442846357822,-0.982839047908783,\r\n0.205496713519096,0.19682951271534,-0.958660066127777,0.25105482339859,0.0280708204954863,-0.967565715312958,0.154081135988235,0.395024120807648,-0.905657112598419,0.113912150263786,0.286160886287689,-0.951386332511902,0.0235846135765314,0.388312369585037,-0.921225905418396,0.205496713519096,0.19682951271534,-0.958660066127777,0.113912150263786,0.286160886287689,-0.951386332511902,0.244292229413986,0.357290357351303,-0.901479244232178,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.291310727596283,-0.020640604197979,-0.956405758857727,0.303346335887909,-0.0609222799539566,-0.950930774211884,0.192796885967255,-0.160707667469978,-0.967988789081573,0.303346335887909,-0.0609222799539566,-0.950930774211884,0.312344968318939,-0.169178798794746,-0.934782922267914,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.132335677742958,0.0798664540052414,-0.987982034683228,0.1409682482481,-0.029871741309762,-0.989563345909119,0.1409682482481,-0.029871741309762,-0.989563345909119,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.182302892208099,-0.0465999990701675,-0.982137441635132,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.291310727596283,-0.020640604197979,-0.956405758857727,0.192796885967255,-0.160707667469978,-0.967988789081573,0.312344968318939,-0.169178798794746,-0.934782922267914,0.255816012620926,-0.266281813383102,-0.929328799247742,0.249771565198898,-0.261931657791138,-0.932204842567444,0.258545160293579,-0.220851272344589,-0.940414249897003,0.255816012620926,-0.266281813383102,-0.929328799247742,0.157663688063622,-0.355442583560944,-0.921304881572723,0.14417576789856,-0.306128829717636,-0.941009223461151,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.239617824554443,-0.362864226102829,-0.900506973266602,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.128855884075165,-0.309597134590149,-0.942096412181854,0.18590871989727,-0.343163996934891,-0.920693397521973,0.14417576789856,-0.306128829717636,-0.941009223461151,\r\n0.157663688063622,-0.355442583560944,-0.921304881572723,0.1517733335495,-0.690122842788696,-0.707598149776459,0.108007617294788,-0.71850061416626,-0.687088847160339,0.121013857424259,-0.710319340229034,-0.693398773670197,0.165814936161041,-0.508576273918152,-0.844899713993073,0.235721468925476,-0.503295361995697,-0.831341683864594,0.1517733335495,-0.690122842788696,-0.707598149776459,0.291290432214737,-0.280019044876099,-0.914734423160553,0.240824460983276,-0.146756038069725,-0.959409296512604,0.230433955788612,-0.165697336196899,-0.958876669406891,0.165814936161041,-0.508576273918152,-0.844899713993073,0.291290432214737,-0.280019044876099,-0.914734423160553,0.235721468925476,-0.503295361995697,-0.831341683864594,0.210006952285767,-0.165226668119431,-0.963637471199036,0.240824460983276,-0.146756038069725,-0.959409296512604,0.162594005465508,-0.103433564305305,-0.981256663799286,0.108007617294788,-0.71850061416626,-0.687088847160339,0.184473931789398,-0.491105169057846,-0.851343035697937,0.191241279244423,-0.715605199337006,-0.67181533575058,0.128855884075165,-0.309597134590149,-0.942096412181854,0.0567963421344757,-0.311954617500305,-0.948397815227509,0.162594005465508,-0.103433564305305,-0.981256663799286,0.195552080869675,-0.143145054578781,-0.970190048217773,0.196958392858505,-0.197753414511681,-0.960260808467865,0.290238499641418,-0.190686911344528,-0.937763333320618,0.195552080869675,-0.143145054578781,-0.970190048217773,0.283008813858032,-0.195317268371582,-0.939019203186035,0.140836209058762,-0.107257127761841,-0.984205782413483,0.249771565198898,-0.261931657791138,-0.932204842567444,0.255816012620926,-0.266281813383102,-0.929328799247742,0.283008813858032,-0.195317268371582,-0.939019203186035,0.210984006524086,-0.289029359817505,-0.933781385421753,0.285258054733276,-0.223806604743004,-0.931954026222229,0.196958392858505,-0.197753414511681,-0.960260808467865,0.285258054733276,-0.223806604743004,-0.931954026222229,0.210984006524086,-0.289029359817505,-0.933781385421753,0.239583387970924,-0.279888153076172,-0.929657101631165,\r\n0.239583387970924,-0.279888153076172,-0.929657101631165,0.17161950469017,-0.304840117692947,-0.936813294887543,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.217453703284264,-0.0799211338162422,-0.972792983055115,0.17161950469017,-0.304840117692947,-0.936813294887543,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.309636771678925,0.17242993414402,-0.935089766979218,0.234608188271523,0.158929109573364,-0.959010183811188,0.14093579351902,0.0887687429785728,-0.986030995845795,0.234608188271523,0.158929109573364,-0.959010183811188,0.313572883605957,0.12318380177021,-0.941540062427521,0.185141518712044,-0.082526683807373,-0.979240477085114,0.14093579351902,0.0887687429785728,-0.986030995845795,0.313572883605957,0.12318380177021,-0.941540062427521,0.185141518712044,-0.082526683807373,-0.979240477085114,0.260173827409744,-0.239460632205009,-0.935397267341614,0.158744737505913,-0.182402223348618,-0.970324397087097,0.260173827409744,-0.239460632205009,-0.935397267341614,0.202514111995697,-0.28090026974678,-0.938127338886261,0.158744737505913,-0.182402223348618,-0.970324397087097,0.18590871989727,-0.343163996934891,-0.920693397521973,0.202514111995697,-0.28090026974678,-0.938127338886261,0.14417576789856,-0.306128829717636,-0.941009223461151,-0.264690071344376,0.303596019744873,-0.915296912193298,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.220294862985611,0.175422713160515,-0.959529519081116,-0.264690071344376,0.303596019744873,-0.915296912193298,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.0102444905787706,0.240444630384445,-0.970608770847321,-0.0102444905787706,0.240444630384445,-0.970608770847321,\r\n0.078516848385334,0.309287309646606,-0.947721660137177,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0387486629188061,0.233272522687912,-0.971638977527618,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0131569914519787,0.182900503277779,-0.983043313026428,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.110248237848282,0.381530463695526,-0.917757987976074,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.14343324303627,0.191897854208946,-0.970876932144165,-0.167120099067688,0.865740716457367,-0.471766650676727,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.162860408425331,0.80255538225174,-0.573917388916016,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.0677753686904907,0.694757759571075,-0.716043293476105,-0.263100177049637,0.870439410209656,-0.416069120168686,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.250952631235123,0.916077375411987,-0.312769711017609,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.0856938734650612,0.714721024036407,-0.694139957427979,-0.0677753686904907,0.694757759571075,-0.716043293476105,-0.0461646467447281,0.627815902233124,-0.776991546154022,0.154081135988235,0.395024120807648,-0.905657112598419,0.0235846135765314,0.388312369585037,-0.921225905418396,\r\n0.0188634041696787,0.497215628623962,-0.867421865463257,-0.0156828816980124,0.591728270053864,-0.805984795093536,0.0188634041696787,0.497215628623962,-0.867421865463257,-0.0461646467447281,0.627815902233124,-0.776991546154022,0.167896181344986,-0.491339564323425,-0.854632198810577,0.117043107748032,-0.406934291124344,-0.905927896499634,0.141456112265587,-0.133855685591698,-0.980853080749512,0.184473931789398,-0.491105169057846,-0.851343035697937,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.162827610969543,-0.0908621773123741,-0.982461810112,0.16813850402832,0.0930387675762177,-0.98136293888092,0.119929768145084,-0.184649989008904,-0.975459456443787,0.162767052650452,0.0616535618901253,-0.984736323356628,0.178094565868378,0.0613820552825928,-0.982096970081329,0.170298680663109,0.0733908265829086,-0.982655584812164,0.162767052650452,0.0616535618901253,-0.984736323356628,0.119929768145084,-0.184649989008904,-0.975459456443787,0.162827610969543,-0.0908621773123741,-0.982461810112,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.141456112265587,-0.133855685591698,-0.980853080749512,0.178094565868378,0.0613820552825928,-0.982096970081329,0.216990604996681,-0.211177453398705,-0.953057765960693,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.60069328546524,-0.581222236156464,-0.548951983451843,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.595865964889526,-0.604948341846466,-0.528186559677124,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.55857127904892,-0.711980938911438,-0.425536215305328,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.60069328546524,-0.581222236156464,-0.548951983451843,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.520097553730011,-0.639993131160736,-0.565603375434875,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.472578227519989,-0.710325717926025,-0.521638751029968,\r\n-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.566350996494293,-0.599438011646271,-0.565615057945251,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.496748417615891,-0.704900443553925,-0.506316304206848,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.477685540914536,-0.654130399227142,-0.586455345153809,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.568155169487,-0.463473439216614,-0.67999404668808,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.443491458892822,-0.250171989202499,-0.860656261444092,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.443491458892822,-0.250171989202499,-0.860656261444092,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.364683598279953,-0.0654229298233986,-0.928830206394196,-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.269545018672943,-0.0442703738808632,-0.961969614028931,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.160651355981827,0.0384636558592319,-0.986261427402496,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.128720209002495,0.0476660765707493,-0.990534663200378,-0.160651355981827,0.0384636558592319,-0.986261427402496,\r\n-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.304524898529053,0.0748658403754234,-0.949557542800903,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.150679782032967,0.0575953610241413,-0.986903369426727,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.128720209002495,0.0476660765707493,-0.990534663200378,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.405536472797394,0.258375823497772,-0.876802146434784,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.569336116313934,0.06810162961483,-0.819279193878174,-0.418135285377502,0.107333399355412,-0.90202122926712,0.00796609837561846,0.195799648761749,-0.980611503124237,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0476257130503654,0.255216211080551,-0.965710282325745,0.103234194219112,0.183164149522781,-0.977646946907043,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0757496133446693,0.216496795415878,-0.973340153694153,0.103234194219112,0.183164149522781,-0.977646946907043,0.126176208257675,0.197150468826294,-0.972219705581665,0.0353268198668957,0.251206159591675,-0.967288672924042,-0.0743647664785385,0.220299571752548,-0.972593367099762,-0.0640701875090599,0.292058050632477,-0.954252064228058,0.0353268198668957,0.251206159591675,-0.967288672924042,0.0757496133446693,0.216496795415878,-0.973340153694153,\r\n0.126176208257675,0.197150468826294,-0.972219705581665,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.0743647664785385,0.220299571752548,-0.972593367099762,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.158266440033913,0.314194649457932,-0.936073362827301,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.0445683747529984,0.290933728218079,-0.955704510211945,-0.0789343193173409,0.346102476119995,-0.93487024307251,0.00796609837561846,0.195799648761749,-0.980611503124237,-0.430423080921173,0.30589097738266,-0.849215269088745,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.464508533477783,0.316672146320343,-0.827012956142426,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.430423080921173,0.30589097738266,-0.849215269088745,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.28907322883606,0.207608565688133,-0.934524059295654,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.132206097245216,0.239773318171501,-0.961784899234772,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.0445683747529984,0.290933728218079,-0.955704510211945,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.25105482339859,0.0280708204954863,-0.967565715312958,0.21365749835968,0.211509227752686,-0.953736960887909,0.230132073163986,-0.0406345911324024,-0.972310662269592,0.21365749835968,0.211509227752686,-0.953736960887909,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.21365749835968,0.211509227752686,-0.953736960887909,0.25105482339859,0.0280708204954863,-0.967565715312958,0.205496713519096,0.19682951271534,-0.958660066127777,0.113912150263786,0.286160886287689,-0.951386332511902,0.154081135988235,0.395024120807648,-0.905657112598419,0.244292229413986,0.357290357351303,-0.901479244232178,0.249543130397797,0.343333125114441,-0.905455946922302,0.205496713519096,0.19682951271534,-0.958660066127777,0.244292229413986,0.357290357351303,-0.901479244232178,\r\n0.303346335887909,-0.0609222799539566,-0.950930774211884,0.291310727596283,-0.020640604197979,-0.956405758857727,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.379781633615494,-0.121652387082577,-0.917042255401611,0.312344968318939,-0.169178798794746,-0.934782922267914,0.303346335887909,-0.0609222799539566,-0.950930774211884,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.12570196390152,0.255946844816208,-0.958483219146729,0.132335677742958,0.0798664540052414,-0.987982034683228,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.1409682482481,-0.029871741309762,-0.989563345909119,0.132335677742958,0.0798664540052414,-0.987982034683228,0.292626708745956,-0.108480118215084,-0.950053453445435,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.291310727596283,-0.020640604197979,-0.956405758857727,0.25115579366684,-0.0866629406809807,-0.964059233665466,0.312344968318939,-0.169178798794746,-0.934782922267914,0.283008813858032,-0.195317268371582,-0.939019203186035,0.255816012620926,-0.266281813383102,-0.929328799247742,0.14417576789856,-0.306128829717636,-0.941009223461151,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.128855884075165,-0.309597134590149,-0.942096412181854,0.0753905475139618,-0.379170775413513,-0.922250330448151,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.113790825009346,-0.702507376670837,-0.702520370483398,0.108007617294788,-0.71850061416626,-0.687088847160339,0.1517733335495,-0.690122842788696,-0.707598149776459,0.1517733335495,-0.690122842788696,-0.707598149776459,0.235721468925476,-0.503295361995697,-0.831341683864594,0.305929660797119,-0.489715456962585,-0.816446959972382,0.210006952285767,-0.165226668119431,-0.963637471199036,0.230433955788612,-0.165697336196899,-0.958876669406891,0.240824460983276,-0.146756038069725,-0.959409296512604,0.258488923311234,-0.317893654108047,-0.912209928035736,\r\n0.291290432214737,-0.280019044876099,-0.914734423160553,0.230433955788612,-0.165697336196899,-0.958876669406891,0.235721468925476,-0.503295361995697,-0.831341683864594,0.291290432214737,-0.280019044876099,-0.914734423160553,0.305929660797119,-0.489715456962585,-0.816446959972382,0.162594005465508,-0.103433564305305,-0.981256663799286,0.209030464291573,-0.341909229755402,-0.916190028190613,0.210006952285767,-0.165226668119431,-0.963637471199036,0.184473931789398,-0.491105169057846,-0.851343035697937,0.108007617294788,-0.71850061416626,-0.687088847160339,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.0567963421344757,-0.311954617500305,-0.948397815227509,0.128855884075165,-0.309597134590149,-0.942096412181854,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.162594005465508,-0.103433564305305,-0.981256663799286,0.0567963421344757,-0.311954617500305,-0.948397815227509,0.209030464291573,-0.341909229755402,-0.916190028190613,0.195552080869675,-0.143145054578781,-0.970190048217773,0.140836209058762,-0.107257127761841,-0.984205782413483,0.196958392858505,-0.197753414511681,-0.960260808467865,0.283008813858032,-0.195317268371582,-0.939019203186035,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.140836209058762,-0.107257127761841,-0.984205782413483,0.210984006524086,-0.289029359817505,-0.933781385421753,0.196958392858505,-0.197753414511681,-0.960260808467865,0.136690735816956,-0.218618050217628,-0.96618926525116,0.190712779760361,-0.288211405277252,-0.938383042812347,0.239583387970924,-0.279888153076172,-0.929657101631165,0.210984006524086,-0.289029359817505,-0.933781385421753,0.239583387970924,-0.279888153076172,-0.929657101631165,0.190712779760361,-0.288211405277252,-0.938383042812347,0.17161950469017,-0.304840117692947,-0.936813294887543,0.146642759442329,-0.183286741375923,-0.97206062078476,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.17161950469017,-0.304840117692947,-0.936813294887543,0.309636771678925,0.17242993414402,-0.935089766979218,0.247343927621841,-0.0139910727739334,-0.968826651573181,\r\n0.239714294672012,0.0482093840837479,-0.969645738601685,0.309636771678925,0.17242993414402,-0.935089766979218,0.313572883605957,0.12318380177021,-0.941540062427521,0.234608188271523,0.158929109573364,-0.959010183811188,0.185141518712044,-0.082526683807373,-0.979240477085114,0.313572883605957,0.12318380177021,-0.941540062427521,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.185141518712044,-0.082526683807373,-0.979240477085114,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.260173827409744,-0.239460632205009,-0.935397267341614,0.260173827409744,-0.239460632205009,-0.935397267341614,0.14417576789856,-0.306128829717636,-0.941009223461151,0.202514111995697,-0.28090026974678,-0.938127338886261,-0.265224009752274,0.348677784204483,-0.898932635784149,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.264690071344376,0.303596019744873,-0.915296912193298,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.0731359645724297,0.335758447647095,-0.939104557037354,0.0357264578342438,0.351837515830994,-0.935379028320313,-0.0102444905787706,0.240444630384445,-0.970608770847321,-0.0102444905787706,0.240444630384445,-0.970608770847321,0.0357264578342438,0.351837515830994,-0.935379028320313,0.078516848385334,0.309287309646606,-0.947721660137177,0.0409058220684528,0.253252863883972,-0.966534852981567,0.00948064774274826,0.169032394886017,-0.985564827919006,0.078516848385334,0.309287309646606,-0.947721660137177,0.0409058220684528,0.253252863883972,-0.966534852981567,-0.0131569914519787,0.182900503277779,-0.983043313026428,0.00948064774274826,0.169032394886017,-0.985564827919006,-0.0387486629188061,0.233272522687912,-0.971638977527618,-0.0131569914519787,0.182900503277779,-0.983043313026428,-0.110248237848282,0.381530463695526,-0.917757987976074,\r\n-0.162926182150841,0.723179757595062,-0.671167612075806,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.110248237848282,0.381530463695526,-0.917757987976074,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.180956140160561,0.882824301719666,-0.433446705341339,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.0677753686904907,0.694757759571075,-0.716043293476105,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.161818757653236,0.620502114295959,-0.767327606678009,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.221861138939857,0.923572957515717,-0.312714874744415,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.201134786009789,0.906689882278442,-0.370753556489944,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.0156828816980124,0.591728270053864,-0.805984795093536,-0.0461646467447281,0.627815902233124,-0.776991546154022,-0.0677753686904907,0.694757759571075,-0.716043293476105,0.117639452219009,0.444786876440048,-0.887876927852631,0.154081135988235,0.395024120807648,-0.905657112598419,0.0188634041696787,0.497215628623962,-0.867421865463257,0.0188634041696787,0.497215628623962,-0.867421865463257,\r\n-0.0156828816980124,0.591728270053864,-0.805984795093536,0.117639452219009,0.444786876440048,-0.887876927852631,0.216990604996681,-0.211177453398705,-0.953057765960693,0.167896181344986,-0.491339564323425,-0.854632198810577,0.141456112265587,-0.133855685591698,-0.980853080749512,0.119929768145084,-0.184649989008904,-0.975459456443787,0.100035578012466,-0.192615076899529,-0.976161956787109,0.162767052650452,0.0616535618901253,-0.984736323356628,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.178094565868378,0.0613820552825928,-0.982096970081329,0.162767052650452,0.0616535618901253,-0.984736323356628,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.119929768145084,-0.184649989008904,-0.975459456443787,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.216990604996681,-0.211177453398705,-0.953057765960693,0.178094565868378,0.0613820552825928,-0.982096970081329,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.480734914541245,-0.7093306183815,-0.515503525733948,-0.427335977554321,-0.717525541782379,-0.550037205219269,\r\n-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.568155169487,-0.463473439216614,-0.67999404668808,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.508320689201355,-0.418764710426331,-0.75249320268631,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.479222148656845,-0.336443960666656,-0.810648798942566,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.568155169487,-0.463473439216614,-0.67999404668808,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.325884222984314,0.0435770563781261,-0.944404780864716,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.347180724143982,0.139625310897827,-0.927345752716064,\r\n-0.536470651626587,0.189121037721634,-0.822455048561096,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.536470651626587,0.189121037721634,-0.822455048561096,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.35209247469902,0.22889232635498,-0.907545626163483,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.464508533477783,0.316672146320343,-0.827012956142426,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.418135285377502,0.107333399355412,-0.90202122926712,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.121284916996956,0.355485886335373,-0.926779210567474,-0.0114165330305696,0.203702300786972,-0.978966236114502,-0.0789343193173409,0.346102476119995,-0.93487024307251,0.0476257130503654,0.255216211080551,-0.965710282325745,0.126176208257675,0.197150468826294,-0.972219705581665,0.103234194219112,0.183164149522781,-0.977646946907043,-0.0697667300701141,0.31633073091507,-0.946080029010773,0.0476257130503654,0.255216211080551,-0.965710282325745,-0.0114165330305696,0.203702300786972,-0.978966236114502,0.0353268198668957,0.251206159591675,-0.967288672924042,0.0573345869779587,0.157160013914108,-0.985907375812531,-0.0743647664785385,0.220299571752548,-0.972593367099762,0.0353268198668957,0.251206159591675,-0.967288672924042,0.126176208257675,0.197150468826294,-0.972219705581665,0.0573345869779587,0.157160013914108,-0.985907375812531,-0.0743647664785385,0.220299571752548,-0.972593367099762,-0.0141257233917713,0.178844287991524,-0.983775913715363,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.205120444297791,0.358060300350189,-0.910888731479645,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.0445683747529984,0.290933728218079,-0.955704510211945,-0.105681605637074,0.416204959154129,-0.903108358383179,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.430423080921173,0.30589097738266,-0.849215269088745,\r\n-0.464508533477783,0.316672146320343,-0.827012956142426,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.430423080921173,0.30589097738266,-0.849215269088745,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.193781271576881,0.439527779817581,-0.877076983451843,-0.0445683747529984,0.290933728218079,-0.955704510211945,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.105681605637074,0.416204959154129,-0.903108358383179,0.12570196390152,0.255946844816208,-0.958483219146729,0.0898675993084908,0.0356727354228497,-0.995314598083496,0.21365749835968,0.211509227752686,-0.953736960887909,0.21365749835968,0.211509227752686,-0.953736960887909,0.205496713519096,0.19682951271534,-0.958660066127777,0.249543130397797,0.343333125114441,-0.905455946922302,0.244292229413986,0.357290357351303,-0.901479244232178,0.154081135988235,0.395024120807648,-0.905657112598419,0.21073853969574,0.364380389451981,-0.907092094421387,0.249543130397797,0.343333125114441,-0.905455946922302,0.244292229413986,0.357290357351303,-0.901479244232178,0.236797660589218,0.356060951948166,-0.903962016105652,0.379781633615494,-0.121652387082577,-0.917042255401611,0.303346335887909,-0.0609222799539566,-0.950930774211884,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.312344968318939,-0.169178798794746,-0.934782922267914,0.379781633615494,-0.121652387082577,-0.917042255401611,0.283008813858032,-0.195317268371582,-0.939019203186035,0.20355686545372,0.294853687286377,-0.933609008789063,0.132335677742958,0.0798664540052414,-0.987982034683228,0.12570196390152,0.255946844816208,-0.958483219146729,0.276734888553619,0.0848634392023087,-0.957191646099091,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.132335677742958,0.0798664540052414,-0.987982034683228,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.25115579366684,-0.0866629406809807,-0.964059233665466,\r\n0.292626708745956,-0.108480118215084,-0.950053453445435,0.276734888553619,0.0848634392023087,-0.957191646099091,0.292626708745956,-0.108480118215084,-0.950053453445435,0.209673032164574,-0.0838211178779602,-0.974172055721283,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.14417576789856,-0.306128829717636,-0.941009223461151,0.28316941857338,-0.291367322206497,-0.913739562034607,0.113790825009346,-0.702507376670837,-0.702520370483398,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.108007617294788,-0.71850061416626,-0.687088847160339,0.1517733335495,-0.690122842788696,-0.707598149776459,0.245824873447418,-0.654888689517975,-0.714626312255859,0.113790825009346,-0.702507376670837,-0.702520370483398,0.1517733335495,-0.690122842788696,-0.707598149776459,0.305929660797119,-0.489715456962585,-0.816446959972382,0.245824873447418,-0.654888689517975,-0.714626312255859,0.141222402453423,-0.281442850828171,-0.949129104614258,0.230433955788612,-0.165697336196899,-0.958876669406891,0.210006952285767,-0.165226668119431,-0.963637471199036,0.305929660797119,-0.489715456962585,-0.816446959972382,0.291290432214737,-0.280019044876099,-0.914734423160553,0.258488923311234,-0.317893654108047,-0.912209928035736,0.258488923311234,-0.317893654108047,-0.912209928035736,0.230433955788612,-0.165697336196899,-0.958876669406891,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.209030464291573,-0.341909229755402,-0.916190028190613,0.141222402453423,-0.281442850828171,-0.949129104614258,0.210006952285767,-0.165226668119431,-0.963637471199036,0.0567963421344757,-0.311954617500305,-0.948397815227509,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.209030464291573,-0.341909229755402,-0.916190028190613,0.196958392858505,-0.197753414511681,-0.960260808467865,0.140836209058762,-0.107257127761841,-0.984205782413483,0.136690735816956,-0.218618050217628,-0.96618926525116,0.379781633615494,-0.121652387082577,-0.917042255401611,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.283008813858032,-0.195317268371582,-0.939019203186035,\r\n0.201977998018265,0.0147587107494473,-0.979278802871704,0.140836209058762,-0.107257127761841,-0.984205782413483,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.190712779760361,-0.288211405277252,-0.938383042812347,0.210984006524086,-0.289029359817505,-0.933781385421753,0.136690735816956,-0.218618050217628,-0.96618926525116,0.17161950469017,-0.304840117692947,-0.936813294887543,0.190712779760361,-0.288211405277252,-0.938383042812347,0.152910679578781,-0.329393893480301,-0.931728422641754,0.146642759442329,-0.183286741375923,-0.97206062078476,0.239714294672012,0.0482093840837479,-0.969645738601685,0.247343927621841,-0.0139910727739334,-0.968826651573181,0.159360319375992,-0.342944145202637,-0.925739407539368,0.146642759442329,-0.183286741375923,-0.97206062078476,0.17161950469017,-0.304840117692947,-0.936813294887543,0.337253570556641,0.0779368281364441,-0.938182175159454,0.309636771678925,0.17242993414402,-0.935089766979218,0.239714294672012,0.0482093840837479,-0.969645738601685,0.337253570556641,0.0779368281364441,-0.938182175159454,0.313572883605957,0.12318380177021,-0.941540062427521,0.309636771678925,0.17242993414402,-0.935089766979218,0.337253570556641,0.0779368281364441,-0.938182175159454,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.313572883605957,0.12318380177021,-0.941540062427521,0.260173827409744,-0.239460632205009,-0.935397267341614,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.398825585842133,-0.205615982413292,-0.893677830696106,0.14417576789856,-0.306128829717636,-0.941009223461151,0.260173827409744,-0.239460632205009,-0.935397267341614,0.347421288490295,-0.252218931913376,-0.903152227401733,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.186458796262741,0.310052663087845,-0.932255506515503,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.24129618704319,0.466776669025421,-0.850820541381836,\r\n-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.124915987253189,0.520010054111481,-0.844976544380188,0.0357264578342438,0.351837515830994,-0.935379028320313,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.0425931662321091,0.442556411027908,-0.895728528499603,0.0357264578342438,0.351837515830994,-0.935379028320313,0.00298696779645979,0.341891288757324,-0.939734697341919,0.078516848385334,0.309287309646606,-0.947721660137177,0.0177049394696951,0.290162295103073,-0.95681357383728,0.0409058220684528,0.253252863883972,-0.966534852981567,0.078516848385334,0.309287309646606,-0.947721660137177,0.0277534034103155,0.212163135409355,-0.976840019226074,-0.0131569914519787,0.182900503277779,-0.983043313026428,0.0409058220684528,0.253252863883972,-0.966534852981567,-0.0131569914519787,0.182900503277779,-0.983043313026428,-0.0566795095801353,0.408536553382874,-0.910980343818665,-0.110248237848282,0.381530463695526,-0.917757987976074,-0.110248237848282,0.381530463695526,-0.917757987976074,-0.0566795095801353,0.408536553382874,-0.910980343818665,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.0731359645724297,0.335758447647095,-0.939104557037354,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.0425931662321091,0.442556411027908,-0.895728528499603,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.136306703090668,0.829452753067017,-0.541690349578857,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.0892985761165619,0.756637454032898,-0.647707879543304,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.0156828816980124,0.591728270053864,-0.805984795093536,-0.0677753686904907,0.694757759571075,-0.716043293476105,-0.181518375873566,0.829385280609131,-0.528366327285767,-0.232733979821205,0.902731537818909,-0.361815601587296,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.232733979821205,0.902731537818909,-0.361815601587296,\r\n-0.181518375873566,0.829385280609131,-0.528366327285767,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.13749735057354,0.899484395980835,-0.414755612611771,0.154081135988235,0.395024120807648,-0.905657112598419,0.117639452219009,0.444786876440048,-0.887876927852631,0.21073853969574,0.364380389451981,-0.907092094421387,0.0719211921095848,0.511388897895813,-0.856334388256073,0.117639452219009,0.444786876440048,-0.887876927852631,-0.0156828816980124,0.591728270053864,-0.805984795093536,0.167896181344986,-0.491339564323425,-0.854632198810577,0.216990604996681,-0.211177453398705,-0.953057765960693,0.219833821058273,-0.499458253383636,-0.837982356548309,0.119929768145084,-0.184649989008904,-0.975459456443787,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.100035578012466,-0.192615076899529,-0.976161956787109,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.162767052650452,0.0616535618901253,-0.984736323356628,0.100035578012466,-0.192615076899529,-0.976161956787109,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.178094565868378,0.0613820552825928,-0.982096970081329,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.119929768145084,-0.184649989008904,-0.975459456443787,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.0896670818328857,-0.50087434053421,-0.860862672328949,0.113790825009346,-0.702507376670837,-0.702520370483398,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.216990604996681,-0.211177453398705,-0.953057765960693,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.176001712679863,-0.21756748855114,-0.960045695304871,\r\n-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.607711732387543,-0.628022134304047,-0.48608073592186,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.599853873252869,-0.608361661434174,-0.51968377828598,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.580812454223633,-0.728979885578156,-0.362277746200562,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.472578227519989,-0.710325717926025,-0.521638751029968,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.508258581161499,-0.688708305358887,-0.517062723636627,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.55243843793869,-0.556738257408142,-0.620366096496582,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.515371382236481,-0.654721438884735,-0.552930474281311,-0.568155169487,-0.463473439216614,-0.67999404668808,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.608957707881927,-0.392789870500565,-0.689120054244995,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.430403918027878,-0.101413153111935,-0.896921217441559,-0.664524137973785,-0.361330419778824,-0.654100775718689,\r\n-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.402865350246429,0.0212525073438883,-0.915012419223785,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.371778696775436,0.0268321577459574,-0.92793345451355,-0.373894453048706,0.0381467454135418,-0.926686346530914,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.464676141738892,0.0867270529270172,-0.881223201751709,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.179790511727333,0.116608709096909,-0.976769030094147,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.209818542003632,0.160573855042458,-0.964464664459229,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.307648956775665,0.0791756063699722,-0.948199987411499,-0.464676141738892,0.0867270529270172,-0.881223201751709,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.433412045240402,0.327434569597244,-0.839607357978821,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.464508533477783,0.316672146320343,-0.827012956142426,\r\n-0.433412045240402,0.327434569597244,-0.839607357978821,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.532815098762512,0.170692518353462,-0.828837692737579,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.0697667300701141,0.31633073091507,-0.946080029010773,-0.0114165330305696,0.203702300786972,-0.978966236114502,-0.121284916996956,0.355485886335373,-0.926779210567474,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.121284916996956,0.355485886335373,-0.926779210567474,0.0476257130503654,0.255216211080551,-0.965710282325745,0.0820537209510803,0.175892859697342,-0.980983555316925,0.126176208257675,0.197150468826294,-0.972219705581665,-0.0990727096796036,0.406161665916443,-0.908414661884308,0.0476257130503654,0.255216211080551,-0.965710282325745,-0.0697667300701141,0.31633073091507,-0.946080029010773,0.0573345869779587,0.157160013914108,-0.985907375812531,-0.0141257233917713,0.178844287991524,-0.983775913715363,-0.0743647664785385,0.220299571752548,-0.972593367099762,0.0573345869779587,0.157160013914108,-0.985907375812531,0.126176208257675,0.197150468826294,-0.972219705581665,0.0820537209510803,0.175892859697342,-0.980983555316925,-0.100152716040611,0.218561753630638,-0.970669806003571,-0.0141257233917713,0.178844287991524,-0.983775913715363,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.100152716040611,0.218561753630638,-0.970669806003571,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.105681605637074,0.416204959154129,-0.903108358383179,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.464508533477783,0.316672146320343,-0.827012956142426,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.307180672883987,0.377396523952484,-0.873619973659515,\r\n-0.243367597460747,0.415459662675858,-0.876450419425964,-0.193781271576881,0.439527779817581,-0.877076983451843,-0.307180672883987,0.377396523952484,-0.873619973659515,-0.105681605637074,0.416204959154129,-0.903108358383179,-0.182844817638397,0.351407587528229,-0.918194055557251,-0.193781271576881,0.439527779817581,-0.877076983451843,0.21365749835968,0.211509227752686,-0.953736960887909,0.145933017134666,0.30651667714119,-0.940612018108368,0.12570196390152,0.255946844816208,-0.958483219146729,0.21365749835968,0.211509227752686,-0.953736960887909,0.249543130397797,0.343333125114441,-0.905455946922302,0.236797660589218,0.356060951948166,-0.903962016105652,0.236797660589218,0.356060951948166,-0.903962016105652,0.244292229413986,0.357290357351303,-0.901479244232178,0.21073853969574,0.364380389451981,-0.907092094421387,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.314336985349655,-0.145356297492981,-0.93811708688736,0.379781633615494,-0.121652387082577,-0.917042255401611,0.276734888553619,0.0848634392023087,-0.957191646099091,0.132335677742958,0.0798664540052414,-0.987982034683228,0.20355686545372,0.294853687286377,-0.933609008789063,0.20355686545372,0.294853687286377,-0.933609008789063,0.12570196390152,0.255946844816208,-0.958483219146729,0.140983119606972,0.301708579063416,-0.942918658256531,0.324541479349136,-0.0907768905162811,-0.941505312919617,0.292626708745956,-0.108480118215084,-0.950053453445435,0.314336985349655,-0.145356297492981,-0.93811708688736,0.433716982603073,0.128476217389107,-0.891842663288116,0.292626708745956,-0.108480118215084,-0.950053453445435,0.276734888553619,0.0848634392023087,-0.957191646099091,0.28316941857338,-0.291367322206497,-0.913739562034607,0.14417576789856,-0.306128829717636,-0.941009223461151,0.347421288490295,-0.252218931913376,-0.903152227401733,0.28316941857338,-0.291367322206497,-0.913739562034607,0.209030464291573,-0.341909229755402,-0.916190028190613,0.0614541359245777,-0.388991385698318,-0.91918933391571,0.161399260163307,-0.650695264339447,-0.741987645626068,0.113790825009346,-0.702507376670837,-0.702520370483398,\r\n0.245824873447418,-0.654888689517975,-0.714626312255859,0.305929660797119,-0.489715456962585,-0.816446959972382,0.302126944065094,-0.524687528610229,-0.795878231525421,0.245824873447418,-0.654888689517975,-0.714626312255859,0.141222402453423,-0.281442850828171,-0.949129104614258,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.230433955788612,-0.165697336196899,-0.958876669406891,0.305929660797119,-0.489715456962585,-0.816446959972382,0.258488923311234,-0.317893654108047,-0.912209928035736,0.302126944065094,-0.524687528610229,-0.795878231525421,0.258488923311234,-0.317893654108047,-0.912209928035736,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.209030464291573,-0.341909229755402,-0.916190028190613,0.296961337327957,-0.346627652645111,-0.8897545337677,0.141222402453423,-0.281442850828171,-0.949129104614258,0.16492223739624,-0.140444800257683,-0.976256012916565,0.136690735816956,-0.218618050217628,-0.96618926525116,0.140836209058762,-0.107257127761841,-0.984205782413483,0.379781633615494,-0.121652387082577,-0.917042255401611,0.314336985349655,-0.145356297492981,-0.93811708688736,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.140836209058762,-0.107257127761841,-0.984205782413483,0.201977998018265,0.0147587107494473,-0.979278802871704,0.201977998018265,0.0147587107494473,-0.979278802871704,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.190712779760361,-0.288211405277252,-0.938383042812347,0.136690735816956,-0.218618050217628,-0.96618926525116,0.16492223739624,-0.140444800257683,-0.976256012916565,0.152910679578781,-0.329393893480301,-0.931728422641754,0.190712779760361,-0.288211405277252,-0.938383042812347,0.183495938777924,-0.24727138876915,-0.951412618160248,0.152910679578781,-0.329393893480301,-0.931728422641754,0.197154998779297,-0.325084179639816,-0.92490541934967,0.17161950469017,-0.304840117692947,-0.936813294887543,\r\n0.219916179776192,-0.193346664309502,-0.956166207790375,0.239714294672012,0.0482093840837479,-0.969645738601685,0.146642759442329,-0.183286741375923,-0.97206062078476,0.219916179776192,-0.193346664309502,-0.956166207790375,0.146642759442329,-0.183286741375923,-0.97206062078476,0.159360319375992,-0.342944145202637,-0.925739407539368,0.197154998779297,-0.325084179639816,-0.92490541934967,0.159360319375992,-0.342944145202637,-0.925739407539368,0.17161950469017,-0.304840117692947,-0.936813294887543,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.337253570556641,0.0779368281364441,-0.938182175159454,0.239714294672012,0.0482093840837479,-0.969645738601685,0.349281460046768,-0.0874019786715508,-0.932932615280151,0.337253570556641,0.0779368281364441,-0.938182175159454,0.398825585842133,-0.205615982413292,-0.893677830696106,0.347421288490295,-0.252218931913376,-0.903152227401733,0.260173827409744,-0.239460632205009,-0.935397267341614,0.398825585842133,-0.205615982413292,-0.893677830696106,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.24129618704319,0.466776669025421,-0.850820541381836,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.215158700942993,0.586328983306885,-0.780976891517639,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.249696716666222,0.470051527023315,-0.846583127975464,-0.215158700942993,0.586328983306885,-0.780976891517639,0.0528507232666016,0.440501600503922,-0.896194756031036,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.0549623258411884,0.35416054725647,-0.933568060398102,-0.0425931662321091,0.442556411027908,-0.895728528499603,0.00298696779645979,0.341891288757324,-0.939734697341919,0.0357264578342438,0.351837515830994,-0.935379028320313,0.078516848385334,0.309287309646606,-0.947721660137177,0.00298696779645979,0.341891288757324,-0.939734697341919,0.0177049394696951,0.290162295103073,-0.95681357383728,0.0177049394696951,0.290162295103073,-0.95681357383728,\r\n0.027322543784976,0.262719929218292,-0.964485168457031,0.0409058220684528,0.253252863883972,-0.966534852981567,0.0277534034103155,0.212163135409355,-0.976840019226074,0.0335786305367947,0.288045853376389,-0.957027673721313,-0.0131569914519787,0.182900503277779,-0.983043313026428,0.0277534034103155,0.212163135409355,-0.976840019226074,0.0409058220684528,0.253252863883972,-0.966534852981567,0.0817417576909065,0.239845469594002,-0.967363595962524,-0.0566795095801353,0.408536553382874,-0.910980343818665,-0.0131569914519787,0.182900503277779,-0.983043313026428,0.0335786305367947,0.288045853376389,-0.957027673721313,-0.0848575159907341,0.569467484951019,-0.817622065544128,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.0566795095801353,0.408536553382874,-0.910980343818665,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.0425931662321091,0.442556411027908,-0.895728528499603,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.169128283858299,0.861721754074097,-0.478362947702408,-0.00504830339923501,0.767121016979218,-0.641482412815094,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.108799606561661,0.785006642341614,-0.609858274459839,0.0719211921095848,0.511388897895813,-0.856334388256073,-0.0156828816980124,0.591728270053864,-0.805984795093536,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.181518375873566,0.829385280609131,-0.528366327285767,-0.162926182150841,0.723179757595062,-0.671167612075806,-0.0848575159907341,0.569467484951019,-0.817622065544128,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.181518375873566,0.829385280609131,-0.528366327285767,-0.0498189516365528,0.650014579296112,-0.758286774158478,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.121650196611881,0.739583134651184,-0.661980271339417,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.107819393277168,0.924157083034515,-0.366481244564056,\r\n-0.165754482150078,0.933537185192108,-0.317858040332794,-0.165754482150078,0.933537185192108,-0.317858040332794,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.0316842421889305,0.886411309242249,-0.461812436580658,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.13749735057354,0.899484395980835,-0.414755612611771,-0.0316842421889305,0.886411309242249,-0.461812436580658,0.139899477362633,0.343817323446274,-0.928556740283966,0.21073853969574,0.364380389451981,-0.907092094421387,0.117639452219009,0.444786876440048,-0.887876927852631,0.139899477362633,0.343817323446274,-0.928556740283966,0.117639452219009,0.444786876440048,-0.887876927852631,0.0719211921095848,0.511388897895813,-0.856334388256073,0.216990604996681,-0.211177453398705,-0.953057765960693,0.188089981675148,-0.608807981014252,-0.770697712898254,0.219833821058273,-0.499458253383636,-0.837982356548309,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.120566882193089,-0.466432332992554,-0.876301527023315,0.100035578012466,-0.192615076899529,-0.976161956787109,0.100035578012466,-0.192615076899529,-0.976161956787109,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.0938257724046707,-0.139961630105972,-0.985701441764832,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.161399260163307,-0.650695264339447,-0.741987645626068,0.161399260163307,-0.650695264339447,-0.741987645626068,0.0882231146097183,-0.552458703517914,-0.828858196735382,0.113790825009346,-0.702507376670837,-0.702520370483398,0.176001712679863,-0.21756748855114,-0.960045695304871,0.117946736514568,-0.372373521327972,-0.920557677745819,0.216990604996681,-0.211177453398705,-0.953057765960693,\r\n-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.612328946590424,-0.650970935821533,-0.448653608560562,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.568624377250671,-0.7177814245224,-0.401816040277481,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.427335977554321,-0.717525541782379,-0.550037205219269,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.608957707881927,-0.392789870500565,-0.689120054244995,-0.557384729385376,-0.390330791473389,-0.732778251171112,-0.664524137973785,-0.361330419778824,-0.654100775718689,-0.522809684276581,-0.308404862880707,-0.794705092906952,-0.608957707881927,-0.392789870500565,-0.689120054244995,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.664524137973785,-0.361330419778824,-0.654100775718689,\r\n-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.287255883216858,0.119601152837276,-0.950357556343079,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.464676141738892,0.0867270529270172,-0.881223201751709,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.413708835840225,0.147726595401764,-0.898343861103058,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.464676141738892,0.0867270529270172,-0.881223201751709,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.440823763608933,0.264568120241165,-0.857716739177704,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.413708835840225,0.147726595401764,-0.898343861103058,\r\n-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.0697667300701141,0.31633073091507,-0.946080029010773,-0.121284916996956,0.355485886335373,-0.926779210567474,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.0789343193173409,0.346102476119995,-0.93487024307251,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.121284916996956,0.355485886335373,-0.926779210567474,0.0476257130503654,0.255216211080551,-0.965710282325745,0.0145114464685321,0.29774209856987,-0.954536020755768,0.0820537209510803,0.175892859697342,-0.980983555316925,0.0476257130503654,0.255216211080551,-0.965710282325745,-0.0990727096796036,0.406161665916443,-0.908414661884308,0.0145114464685321,0.29774209856987,-0.954536020755768,0.0573345869779587,0.157160013914108,-0.985907375812531,0.0820537209510803,0.175892859697342,-0.980983555316925,-0.0141257233917713,0.178844287991524,-0.983775913715363,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.0141257233917713,0.178844287991524,-0.983775913715363,-0.0570322759449482,0.321554005146027,-0.94517195224762,0.194215431809425,0.403068363666534,-0.894324421882629,-0.0549623258411884,0.35416054725647,-0.933568060398102,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.105681605637074,0.416204959154129,-0.903108358383179,-0.140770807862282,0.439647167921066,-0.88707035779953,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.140770807862282,0.439647167921066,-0.88707035779953,-0.193781271576881,0.439527779817581,-0.877076983451843,\r\n-0.105681605637074,0.416204959154129,-0.903108358383179,-0.193781271576881,0.439527779817581,-0.877076983451843,-0.140770807862282,0.439647167921066,-0.88707035779953,0.21365749835968,0.211509227752686,-0.953736960887909,0.236797660589218,0.356060951948166,-0.903962016105652,0.145933017134666,0.30651667714119,-0.940612018108368,0.12570196390152,0.255946844816208,-0.958483219146729,0.145933017134666,0.30651667714119,-0.940612018108368,0.140983119606972,0.301708579063416,-0.942918658256531,0.236797660589218,0.356060951948166,-0.903962016105652,0.21073853969574,0.364380389451981,-0.907092094421387,0.139899477362633,0.343817323446274,-0.928556740283966,0.20355686545372,0.294853687286377,-0.933609008789063,0.363920360803604,0.296147286891937,-0.883096098899841,0.276734888553619,0.0848634392023087,-0.957191646099091,0.20355686545372,0.294853687286377,-0.933609008789063,0.140983119606972,0.301708579063416,-0.942918658256531,0.167476877570152,0.29023677110672,-0.942185640335083,0.292626708745956,-0.108480118215084,-0.950053453445435,0.334597855806351,-0.174845203757286,-0.925998508930206,0.314336985349655,-0.145356297492981,-0.93811708688736,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.292626708745956,-0.108480118215084,-0.950053453445435,0.433716982603073,0.128476217389107,-0.891842663288116,0.433716982603073,0.128476217389107,-0.891842663288116,0.276734888553619,0.0848634392023087,-0.957191646099091,0.363920360803604,0.296147286891937,-0.883096098899841,0.347421288490295,-0.252218931913376,-0.903152227401733,0.449225246906281,-0.229957297444344,-0.86331695318222,0.28316941857338,-0.291367322206497,-0.913739562034607,0.28316941857338,-0.291367322206497,-0.913739562034607,0.401124596595764,-0.316324502229691,-0.859673023223877,0.209030464291573,-0.341909229755402,-0.916190028190613,0.304047852754593,-0.62558114528656,-0.71847265958786,0.161399260163307,-0.650695264339447,-0.741987645626068,0.245824873447418,-0.654888689517975,-0.714626312255859,0.245824873447418,-0.654888689517975,-0.714626312255859,0.302126944065094,-0.524687528610229,-0.795878231525421,\r\n0.304047852754593,-0.62558114528656,-0.71847265958786,0.141222402453423,-0.281442850828171,-0.949129104614258,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.187914669513702,-0.438550055027008,-0.878841161727905,0.302126944065094,-0.524687528610229,-0.795878231525421,0.258488923311234,-0.317893654108047,-0.912209928035736,0.0209509804844856,-0.282879412174225,-0.958926558494568,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.187914669513702,-0.438550055027008,-0.878841161727905,0.258488923311234,-0.317893654108047,-0.912209928035736,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.209030464291573,-0.341909229755402,-0.916190028190613,0.401124596595764,-0.316324502229691,-0.859673023223877,0.296961337327957,-0.346627652645111,-0.8897545337677,0.137848630547524,-0.277114301919937,-0.950897097587585,0.141222402453423,-0.281442850828171,-0.949129104614258,0.296961337327957,-0.346627652645111,-0.8897545337677,0.16492223739624,-0.140444800257683,-0.976256012916565,0.140836209058762,-0.107257127761841,-0.984205782413483,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.276727467775345,-0.0811169371008873,-0.957518577575684,0.314336985349655,-0.145356297492981,-0.93811708688736,0.249140277504921,0.0712746381759644,-0.965841054916382,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.201977998018265,0.0147587107494473,-0.979278802871704,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.317920714616776,0.038457453250885,-0.947336971759796,0.201977998018265,0.0147587107494473,-0.979278802871704,0.16492223739624,-0.140444800257683,-0.976256012916565,0.204232007265091,-0.124635003507137,-0.970955848693848,0.190712779760361,-0.288211405277252,-0.938383042812347,0.183495938777924,-0.24727138876915,-0.951412618160248,0.190712779760361,-0.288211405277252,-0.938383042812347,0.204232007265091,-0.124635003507137,-0.970955848693848,\r\n0.183495938777924,-0.24727138876915,-0.951412618160248,0.17227666079998,-0.203979104757309,-0.963697671890259,0.152910679578781,-0.329393893480301,-0.931728422641754,0.152910679578781,-0.329393893480301,-0.931728422641754,0.17227666079998,-0.203979104757309,-0.963697671890259,0.197154998779297,-0.325084179639816,-0.92490541934967,0.239714294672012,0.0482093840837479,-0.969645738601685,0.219916179776192,-0.193346664309502,-0.956166207790375,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.298101633787155,-0.358290374279022,-0.884739100933075,0.219916179776192,-0.193346664309502,-0.956166207790375,0.159360319375992,-0.342944145202637,-0.925739407539368,0.197154998779297,-0.325084179639816,-0.92490541934967,0.298101633787155,-0.358290374279022,-0.884739100933075,0.159360319375992,-0.342944145202637,-0.925739407539368,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.398825585842133,-0.205615982413292,-0.893677830696106,0.337253570556641,0.0779368281364441,-0.938182175159454,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.239714294672012,0.0482093840837479,-0.969645738601685,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.347421288490295,-0.252218931913376,-0.903152227401733,0.398825585842133,-0.205615982413292,-0.893677830696106,0.449225246906281,-0.229957297444344,-0.86331695318222,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.215158700942993,0.586328983306885,-0.780976891517639,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.136923179030418,0.468431830406189,-0.872824907302856,-0.215158700942993,0.586328983306885,-0.780976891517639,0.0528507232666016,0.440501600503922,-0.896194756031036,0.123962238430977,0.467680960893631,-0.875161528587341,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.0549623258411884,0.35416054725647,-0.933568060398102,\r\n0.194215431809425,0.403068363666534,-0.894324421882629,0.0528507232666016,0.440501600503922,-0.896194756031036,-0.070062980055809,0.438966780900955,-0.895767390727997,0.00298696779645979,0.341891288757324,-0.939734697341919,-0.0425931662321091,0.442556411027908,-0.895728528499603,0.0177049394696951,0.290162295103073,-0.95681357383728,0.00298696779645979,0.341891288757324,-0.939734697341919,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.0177049394696951,0.290162295103073,-0.95681357383728,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.027322543784976,0.262719929218292,-0.964485168457031,0.0409058220684528,0.253252863883972,-0.966534852981567,0.027322543784976,0.262719929218292,-0.964485168457031,0.0646988451480865,0.262118428945541,-0.962864398956299,0.0335786305367947,0.288045853376389,-0.957027673721313,0.0277534034103155,0.212163135409355,-0.976840019226074,0.0817417576909065,0.239845469594002,-0.967363595962524,0.0817417576909065,0.239845469594002,-0.967363595962524,0.0409058220684528,0.253252863883972,-0.966534852981567,0.0646988451480865,0.262118428945541,-0.962864398956299,-0.0848575159907341,0.569467484951019,-0.817622065544128,-0.0566795095801353,0.408536553382874,-0.910980343818665,0.0335786305367947,0.288045853376389,-0.957027673721313,-0.0968413650989532,0.522681057453156,-0.84701007604599,-0.0425931662321091,0.442556411027908,-0.895728528499603,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.00504830339923501,0.767121016979218,-0.641482412815094,-0.108799606561661,0.785006642341614,-0.609858274459839,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.0106599824503064,0.70032924413681,-0.713740229606628,-0.0434112437069416,0.68660044670105,-0.725737631320953,-0.0434112437069416,0.68660044670105,-0.725737631320953,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0719211921095848,0.511388897895813,-0.856334388256073,-0.0848575159907341,0.569467484951019,-0.817622065544128,-0.0498189516365528,0.650014579296112,-0.758286774158478,\r\n-0.181518375873566,0.829385280609131,-0.528366327285767,-0.0498189516365528,0.650014579296112,-0.758286774158478,-0.121650196611881,0.739583134651184,-0.661980271339417,-0.182685762643814,0.90216988325119,-0.390788078308105,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.121650196611881,0.739583134651184,-0.661980271339417,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.179586604237556,0.918919205665588,-0.351192235946655,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.0147653203457594,0.909152805805206,-0.416200697422028,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0100112436339259,0.889629423618317,-0.456573367118835,-0.0316842421889305,0.886411309242249,-0.461812436580658,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.0945821031928062,0.840175628662109,-0.534002780914307,-0.0316842421889305,0.886411309242249,-0.461812436580658,0.010392876341939,0.833797872066498,-0.551971912384033,0.0719211921095848,0.511388897895813,-0.856334388256073,0.130036816000938,0.334672957658768,-0.93331903219223,0.139899477362633,0.343817323446274,-0.928556740283966,0.117946736514568,-0.372373521327972,-0.920557677745819,0.188089981675148,-0.608807981014252,-0.770697712898254,0.216990604996681,-0.211177453398705,-0.953057765960693,0.0907649546861649,-0.466830432415009,-0.879676580429077,0.161399260163307,-0.650695264339447,-0.741987645626068,0.120566882193089,-0.466432332992554,-0.876301527023315,0.100035578012466,-0.192615076899529,-0.976161956787109,0.120566882193089,-0.466432332992554,-0.876301527023315,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.0938257724046707,-0.139961630105972,-0.985701441764832,0.144894301891327,-0.0228342954069376,-0.98918354511261,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.0938257724046707,-0.139961630105972,-0.985701441764832,0.0668484568595886,-0.200863599777222,-0.977335691452026,0.164365291595459,-0.0135819036513567,-0.986306011676788,\r\n0.117946736514568,-0.372373521327972,-0.920557677745819,0.176001712679863,-0.21756748855114,-0.960045695304871,0.126468554139137,-0.451952517032623,-0.88303142786026,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.582149684429169,-0.705786645412445,-0.40369126200676,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.392205953598022,-0.746313333511353,-0.537764549255371,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.47293758392334,-0.790754914283752,-0.388634353876114,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.464652925729752,-0.633020222187042,-0.61917918920517,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.72555273771286,-0.378881841897964,-0.574475109577179,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.608957707881927,-0.392789870500565,-0.689120054244995,-0.608957707881927,-0.392789870500565,-0.689120054244995,\r\n-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.664524137973785,-0.361330419778824,-0.654100775718689,-0.565968930721283,-0.181814298033714,-0.804128468036652,-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.664524137973785,-0.361330419778824,-0.654100775718689,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.500027298927307,-0.020368529483676,-0.865769863128662,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.419830054044724,0.0689003765583038,-0.904983580112457,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.287255883216858,0.119601152837276,-0.950357556343079,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.287255883216858,0.119601152837276,-0.950357556343079,-0.349121659994125,0.0823694244027138,-0.933450162410736,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.347929745912552,0.122919909656048,-0.92942750453949,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.425377279520035,0.11681279540062,-0.897445738315582,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.464676141738892,0.0867270529270172,-0.881223201751709,\r\n-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.205834597349167,0.253509312868118,-0.945179879665375,-0.347180724143982,0.139625310897827,-0.927345752716064,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.269870609045029,0.193161681294441,-0.943323016166687,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.383487701416016,0.30272963643074,-0.872520387172699,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.0951241627335548,0.462966054677963,-0.881256878376007,0.0145114464685321,0.29774209856987,-0.954536020755768,0.0145196048542857,0.262432843446732,-0.964840948581696,0.0820537209510803,0.175892859697342,-0.980983555316925,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.0451208129525185,0.377859175205231,-0.924762904644012,0.0145114464685321,0.29774209856987,-0.954536020755768,0.0145196048542857,0.262432843446732,-0.964840948581696,-0.0141257233917713,0.178844287991524,-0.983775913715363,0.0820537209510803,0.175892859697342,-0.980983555316925,\r\n0.0145196048542857,0.262432843446732,-0.964840948581696,-0.0570322759449482,0.321554005146027,-0.94517195224762,-0.0141257233917713,0.178844287991524,-0.983775913715363,0.00392824551090598,0.285216242074966,-0.958455085754395,-0.0570322759449482,0.321554005146027,-0.94517195224762,0.0406738184392452,0.440189927816391,-0.896982967853546,0.194215431809425,0.403068363666534,-0.894324421882629,0.00392824551090598,0.285216242074966,-0.958455085754395,0.0406738184392452,0.440189927816391,-0.896982967853546,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.140770807862282,0.439647167921066,-0.88707035779953,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.37657368183136,0.344022035598755,-0.860140144824982,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.243367597460747,0.415459662675858,-0.876450419425964,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.140770807862282,0.439647167921066,-0.88707035779953,0.145933017134666,0.30651667714119,-0.940612018108368,0.236797660589218,0.356060951948166,-0.903962016105652,0.139899477362633,0.343817323446274,-0.928556740283966,0.140983119606972,0.301708579063416,-0.942918658256531,0.145933017134666,0.30651667714119,-0.940612018108368,0.130036816000938,0.334672957658768,-0.93331903219223,0.20355686545372,0.294853687286377,-0.933609008789063,0.269432067871094,0.303406089544296,-0.913975358009338,0.363920360803604,0.296147286891937,-0.883096098899841,0.167476877570152,0.29023677110672,-0.942185640335083,0.140983119606972,0.301708579063416,-0.942918658256531,0.141822919249535,0.305421411991119,-0.941596448421478,0.20355686545372,0.294853687286377,-0.933609008789063,\r\n0.167476877570152,0.29023677110672,-0.942185640335083,0.269432067871094,0.303406089544296,-0.913975358009338,0.292626708745956,-0.108480118215084,-0.950053453445435,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.334597855806351,-0.174845203757286,-0.925998508930206,0.314336985349655,-0.145356297492981,-0.93811708688736,0.334597855806351,-0.174845203757286,-0.925998508930206,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.433716982603073,0.128476217389107,-0.891842663288116,0.459824174642563,0.137587830424309,-0.877286314964294,0.433716982603073,0.128476217389107,-0.891842663288116,0.363920360803604,0.296147286891937,-0.883096098899841,0.440338939428329,0.248387739062309,-0.86278909444809,0.449225246906281,-0.229957297444344,-0.86331695318222,0.455318361520767,-0.210963740944862,-0.864973664283752,0.28316941857338,-0.291367322206497,-0.913739562034607,0.28316941857338,-0.291367322206497,-0.913739562034607,0.455318361520767,-0.210963740944862,-0.864973664283752,0.401124596595764,-0.316324502229691,-0.859673023223877,0.253593415021896,-0.593144118785858,-0.764113962650299,0.161399260163307,-0.650695264339447,-0.741987645626068,0.304047852754593,-0.62558114528656,-0.71847265958786,0.302126944065094,-0.524687528610229,-0.795878231525421,0.253593415021896,-0.593144118785858,-0.764113962650299,0.304047852754593,-0.62558114528656,-0.71847265958786,0.141222402453423,-0.281442850828171,-0.949129104614258,0.137848630547524,-0.277114301919937,-0.950897097587585,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.0209509804844856,-0.282879412174225,-0.958926558494568,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.187914669513702,-0.438550055027008,-0.878841161727905,0.155984699726105,-0.495822191238403,-0.854300320148468,0.302126944065094,-0.524687528610229,-0.795878231525421,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.00703422352671623,-0.264834880828857,-0.964268088340759,\r\n0.0920508056879044,-0.381034255027771,-0.919967114925385,0.187914669513702,-0.438550055027008,-0.878841161727905,0.0624802559614182,-0.370503753423691,-0.926727116107941,0.106472484767437,-0.445661067962646,-0.888847410678864,0.401124596595764,-0.316324502229691,-0.859673023223877,0.324017822742462,-0.243246182799339,-0.914244830608368,0.296961337327957,-0.346627652645111,-0.8897545337677,0.137848630547524,-0.277114301919937,-0.950897097587585,0.296961337327957,-0.346627652645111,-0.8897545337677,0.324017822742462,-0.243246182799339,-0.914244830608368,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.16492223739624,-0.140444800257683,-0.976256012916565,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.314336985349655,-0.145356297492981,-0.93811708688736,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.249140277504921,0.0712746381759644,-0.965841054916382,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.16891773045063,-0.0266935732215643,-0.985268592834473,0.249140277504921,0.0712746381759644,-0.965841054916382,0.201977998018265,0.0147587107494473,-0.979278802871704,0.317920714616776,0.038457453250885,-0.947336971759796,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.317920714616776,0.038457453250885,-0.947336971759796,0.16492223739624,-0.140444800257683,-0.976256012916565,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.204232007265091,-0.124635003507137,-0.970955848693848,0.183495938777924,-0.24727138876915,-0.951412618160248,0.204232007265091,-0.124635003507137,-0.970955848693848,0.17227666079998,-0.203979104757309,-0.963697671890259,0.197154998779297,-0.325084179639816,-0.92490541934967,0.17227666079998,-0.203979104757309,-0.963697671890259,0.304702877998352,-0.189924612641335,-0.93331915140152,0.32835391163826,-0.179560393095016,-0.927330374717712,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.219916179776192,-0.193346664309502,-0.956166207790375,\r\n0.32835391163826,-0.179560393095016,-0.927330374717712,0.219916179776192,-0.193346664309502,-0.956166207790375,0.298101633787155,-0.358290374279022,-0.884739100933075,0.353241562843323,-0.326659113168716,-0.876649379730225,0.298101633787155,-0.358290374279022,-0.884739100933075,0.197154998779297,-0.325084179639816,-0.92490541934967,0.398825585842133,-0.205615982413292,-0.893677830696106,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.353662431240082,-0.266442120075226,-0.896622240543365,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.339726805686951,0.0291937235742807,-0.940070927143097,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.398825585842133,-0.205615982413292,-0.893677830696106,0.416732311248779,-0.289520770311356,-0.861691236495972,0.449225246906281,-0.229957297444344,-0.86331695318222,0.123962238430977,0.467680960893631,-0.875161528587341,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.124915987253189,0.520010054111481,-0.844976544380188,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.215158700942993,0.586328983306885,-0.780976891517639,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.236592754721642,0.596383631229401,-0.767039954662323,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.24716117978096,0.637320280075073,-0.7298863530159,0.0528507232666016,0.440501600503922,-0.896194756031036,0.194215431809425,0.403068363666534,-0.894324421882629,0.123962238430977,0.467680960893631,-0.875161528587341,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.0435863435268402,0.401030480861664,-0.915027141571045,0.00298696779645979,0.341891288757324,-0.939734697341919,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.0425931662321091,0.442556411027908,-0.895728528499603,-0.0968413650989532,0.522681057453156,-0.84701007604599,0.00298696779645979,0.341891288757324,-0.939734697341919,\r\n-0.0435863435268402,0.401030480861664,-0.915027141571045,-0.00897338055074215,0.322204172611237,-0.946627616882324,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.0662237629294395,0.287186592817307,-0.955582618713379,0.027322543784976,0.262719929218292,-0.964485168457031,0.104380451142788,0.33340510725975,-0.936987519264221,0.0646988451480865,0.262118428945541,-0.962864398956299,0.027322543784976,0.262719929218292,-0.964485168457031,0.0335786305367947,0.288045853376389,-0.957027673721313,0.0817417576909065,0.239845469594002,-0.967363595962524,0.10244295746088,0.23100084066391,-0.967545330524445,0.0817417576909065,0.239845469594002,-0.967363595962524,0.0646988451480865,0.262118428945541,-0.962864398956299,0.100989632308483,0.229675710201263,-0.968013465404511,-0.0848575159907341,0.569467484951019,-0.817622065544128,0.0335786305367947,0.288045853376389,-0.957027673721313,-0.0498189516365528,0.650014579296112,-0.758286774158478,-0.0968413650989532,0.522681057453156,-0.84701007604599,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.0945821031928062,0.840175628662109,-0.534002780914307,0.010392876341939,0.833797872066498,-0.551971912384033,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.0444591343402863,0.68870621919632,-0.723676025867462,0.0106599824503064,0.70032924413681,-0.713740229606628,-0.00504830339923501,0.767121016979218,-0.641482412815094,-0.0434112437069416,0.68660044670105,-0.725737631320953,0.0106599824503064,0.70032924413681,-0.713740229606628,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0719211921095848,0.511388897895813,-0.856334388256073,0.0534641183912754,0.612035751342773,-0.789020776748657,0.110530100762844,0.457979947328568,-0.88206422328949,-0.0498189516365528,0.650014579296112,-0.758286774158478,0.0204038340598345,0.366715759038925,-0.930109202861786,-0.121650196611881,0.739583134651184,-0.661980271339417,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.121650196611881,0.739583134651184,-0.661980271339417,\r\n-0.141058996319771,0.356983631849289,-0.923398554325104,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.0654170215129852,0.722762107849121,-0.687993824481964,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0147653203457594,0.909152805805206,-0.416200697422028,-0.0100112436339259,0.889629423618317,-0.456573367118835,-0.0724611133337021,0.9237020611763,-0.376196175813675,-0.0147653203457594,0.909152805805206,-0.416200697422028,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0160555951297283,0.873244524002075,-0.487017571926117,-0.0316842421889305,0.886411309242249,-0.461812436580658,-0.0100112436339259,0.889629423618317,-0.456573367118835,0.0271701570600271,0.859563887119293,-0.510305464267731,-0.0316842421889305,0.886411309242249,-0.461812436580658,0.0271701570600271,0.859563887119293,-0.510305464267731,0.010392876341939,0.833797872066498,-0.551971912384033,0.0719211921095848,0.511388897895813,-0.856334388256073,0.110530100762844,0.457979947328568,-0.88206422328949,0.130036816000938,0.334672957658768,-0.93331903219223,0.145933017134666,0.30651667714119,-0.940612018108368,0.139899477362633,0.343817323446274,-0.928556740283966,0.130036816000938,0.334672957658768,-0.93331903219223,0.188089981675148,-0.608807981014252,-0.770697712898254,0.117946736514568,-0.372373521327972,-0.920557677745819,0.126468554139137,-0.451952517032623,-0.88303142786026,0.161399260163307,-0.650695264339447,-0.741987645626068,0.253593415021896,-0.593144118785858,-0.764113962650299,0.120566882193089,-0.466432332992554,-0.876301527023315,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.120566882193089,-0.466432332992554,-0.876301527023315,0.050261415541172,-0.394939035177231,-0.917331397533417,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0938257724046707,-0.139961630105972,-0.985701441764832,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.0938257724046707,-0.139961630105972,-0.985701441764832,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0668484568595886,-0.200863599777222,-0.977335691452026,\r\n-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.586689412593842,-0.657892405986786,-0.472200125455856,-0.588227868080139,-0.64176070690155,-0.492068082094193,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.427772760391235,-0.757200419902802,-0.493617117404938,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.527731001377106,-0.784909963607788,-0.324678719043732,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.576275169849396,-0.529509305953979,-0.622516512870789,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.45529368519783,-0.56896311044693,-0.684827327728271,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.641312956809998,-0.436628967523575,-0.630930006504059,-0.72555273771286,-0.378881841897964,-0.574475109577179,-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.72555273771286,-0.378881841897964,-0.574475109577179,-0.664524137973785,-0.361330419778824,-0.654100775718689,\r\n-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.664524137973785,-0.361330419778824,-0.654100775718689,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.693203032016754,-0.276615470647812,-0.665547370910645,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.519901692867279,0.0361686982214451,-0.85345995426178,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.287255883216858,0.119601152837276,-0.950357556343079,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.392987102270126,0.114464700222015,-0.912391841411591,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.504636406898499,0.0799822136759758,-0.859618961811066,-0.402165412902832,0.100747056305408,-0.910007059574127,\r\n-0.452805399894714,0.113697819411755,-0.884330093860626,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.388790845870972,-0.0868829935789108,-0.917220175266266,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.225054726004601,0.267115205526352,-0.937016427516937,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.383603483438492,0.106398463249207,-0.917348146438599,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.264297991991043,0.185808911919594,-0.946372807025909,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.0951241627335548,0.462966054677963,-0.881256878376007,-0.154478460550308,0.419829308986664,-0.894359886646271,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.0305710602551699,0.300641804933548,-0.953247010707855,-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.0951241627335548,0.462966054677963,-0.881256878376007,-0.11736436933279,0.497905105352402,-0.859253168106079,0.0145114464685321,0.29774209856987,-0.954536020755768,-0.0451208129525185,0.377859175205231,-0.924762904644012,0.0145196048542857,0.262432843446732,-0.964840948581696,\r\n-0.0990727096796036,0.406161665916443,-0.908414661884308,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0451208129525185,0.377859175205231,-0.924762904644012,-0.0570322759449482,0.321554005146027,-0.94517195224762,0.0145196048542857,0.262432843446732,-0.964840948581696,-0.0451208129525185,0.377859175205231,-0.924762904644012,0.0406738184392452,0.440189927816391,-0.896982967853546,-0.0570322759449482,0.321554005146027,-0.94517195224762,-0.0807149261236191,0.436692237854004,-0.895982623100281,0.0406738184392452,0.440189927816391,-0.896982967853546,0.173882141709328,0.445852994918823,-0.878054678440094,0.194215431809425,0.403068363666534,-0.894324421882629,-0.109095923602581,0.409264117479324,-0.905870258808136,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.0305710602551699,0.300641804933548,-0.953247010707855,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.140770807862282,0.439647167921066,-0.88707035779953,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.260393768548965,0.232583001255989,-0.937069952487946,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.132777109742165,0.316558986902237,-0.939234018325806,0.140983119606972,0.301708579063416,-0.942918658256531,0.130036816000938,0.334672957658768,-0.93331903219223,0.141822919249535,0.305421411991119,-0.941596448421478,0.363920360803604,0.296147286891937,-0.883096098899841,0.269432067871094,0.303406089544296,-0.913975358009338,0.365761399269104,0.317207455635071,-0.874984502792358,0.141822919249535,0.305421411991119,-0.941596448421478,0.209674939513206,0.267203450202942,-0.940552294254303,0.167476877570152,0.29023677110672,-0.942185640335083,0.269432067871094,0.303406089544296,-0.913975358009338,\r\n0.167476877570152,0.29023677110672,-0.942185640335083,0.209674939513206,0.267203450202942,-0.940552294254303,0.433716982603073,0.128476217389107,-0.891842663288116,0.440338939428329,0.248387739062309,-0.86278909444809,0.459824174642563,0.137587830424309,-0.877286314964294,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.459824174642563,0.137587830424309,-0.877286314964294,0.365761399269104,0.317207455635071,-0.874984502792358,0.440338939428329,0.248387739062309,-0.86278909444809,0.363920360803604,0.296147286891937,-0.883096098899841,0.449225246906281,-0.229957297444344,-0.86331695318222,0.429924875497818,-0.163720920681953,-0.887896358966827,0.455318361520767,-0.210963740944862,-0.864973664283752,0.401124596595764,-0.316324502229691,-0.859673023223877,0.455318361520767,-0.210963740944862,-0.864973664283752,0.450361490249634,-0.181678354740143,-0.874166548252106,0.302126944065094,-0.524687528610229,-0.795878231525421,0.171756580471992,-0.579462647438049,-0.796694755554199,0.253593415021896,-0.593144118785858,-0.764113962650299,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.137848630547524,-0.277114301919937,-0.950897097587585,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.00703422352671623,-0.264834880828857,-0.964268088340759,-0.0480092763900757,-0.253747254610062,-0.966078341007233,0.187914669513702,-0.438550055027008,-0.878841161727905,0.106472484767437,-0.445661067962646,-0.888847410678864,0.155984699726105,-0.495822191238403,-0.854300320148468,0.171756580471992,-0.579462647438049,-0.796694755554199,0.302126944065094,-0.524687528610229,-0.795878231525421,0.155984699726105,-0.495822191238403,-0.854300320148468,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.21996508538723,-0.267088234424591,-0.938231945037842,0.0920508056879044,-0.381034255027771,-0.919967114925385,0.106472484767437,-0.445661067962646,-0.888847410678864,0.0624802559614182,-0.370503753423691,-0.926727116107941,\r\n0.0920508056879044,-0.381034255027771,-0.919967114925385,0.450361490249634,-0.181678354740143,-0.874166548252106,0.324017822742462,-0.243246182799339,-0.914244830608368,0.401124596595764,-0.316324502229691,-0.859673023223877,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.137848630547524,-0.277114301919937,-0.950897097587585,0.324017822742462,-0.243246182799339,-0.914244830608368,0.325111150741577,-0.0594854652881622,-0.943803012371063,0.452615916728973,-0.0783129706978798,-0.888260006904602,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.219945192337036,0.00857431069016457,-0.975474536418915,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.249140277504921,0.0712746381759644,-0.965841054916382,0.249140277504921,0.0712746381759644,-0.965841054916382,0.317920714616776,0.038457453250885,-0.947336971759796,0.272455602884293,0.0959574356675148,-0.957371413707733,0.339203029870987,0.0532316155731678,-0.939205825328827,0.317920714616776,0.038457453250885,-0.947336971759796,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.221163719892502,-0.0454236194491386,-0.97417825460434,0.219945192337036,0.00857431069016457,-0.975474536418915,0.204232007265091,-0.124635003507137,-0.970955848693848,0.17227666079998,-0.203979104757309,-0.963697671890259,0.204232007265091,-0.124635003507137,-0.970955848693848,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.304702877998352,-0.189924612641335,-0.93331915140152,0.17227666079998,-0.203979104757309,-0.963697671890259,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.197154998779297,-0.325084179639816,-0.92490541934967,0.304702877998352,-0.189924612641335,-0.93331915140152,0.353241562843323,-0.326659113168716,-0.876649379730225,0.279588162899017,-0.0248070824891329,-0.959799468517303,0.32835391163826,-0.179560393095016,-0.927330374717712,0.339726805686951,0.0291937235742807,-0.940070927143097,0.324336737394333,-0.351022839546204,-0.878401100635529,0.32835391163826,-0.179560393095016,-0.927330374717712,0.298101633787155,-0.358290374279022,-0.884739100933075,\r\n0.324336737394333,-0.351022839546204,-0.878401100635529,0.298101633787155,-0.358290374279022,-0.884739100933075,0.353241562843323,-0.326659113168716,-0.876649379730225,0.273343145847321,-0.233351171016693,-0.933183073997498,0.353662431240082,-0.266442120075226,-0.896622240543365,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.353662431240082,-0.266442120075226,-0.896622240543365,0.416732311248779,-0.289520770311356,-0.861691236495972,0.398825585842133,-0.205615982413292,-0.893677830696106,0.315313518047333,0.0011128302430734,-0.948986887931824,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.339726805686951,0.0291937235742807,-0.940070927143097,0.416732311248779,-0.289520770311356,-0.861691236495972,0.429924875497818,-0.163720920681953,-0.887896358966827,0.449225246906281,-0.229957297444344,-0.86331695318222,0.123962238430977,0.467680960893631,-0.875161528587341,0.0558261796832085,0.38692182302475,-0.920421004295349,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.0931684449315071,0.52529639005661,-0.845803260803223,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.165270790457726,0.555269658565521,-0.815083503723145,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.150852486491203,0.554701089859009,-0.818260371685028,0.173882141709328,0.445852994918823,-0.878054678440094,0.123962238430977,0.467680960893631,-0.875161528587341,0.194215431809425,0.403068363666534,-0.894324421882629,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.0435863435268402,0.401030480861664,-0.915027141571045,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.0968413650989532,0.522681057453156,-0.84701007604599,-0.124870277941227,0.539734542369843,-0.832522571086884,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.00897338055074215,0.322204172611237,-0.946627616882324,\r\n-0.0435863435268402,0.401030480861664,-0.915027141571045,0.0784225314855576,0.526538610458374,-0.846526324748993,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.123878173530102,0.424399942159653,-0.896960854530334,0.0662237629294395,0.287186592817307,-0.955582618713379,0.104380451142788,0.33340510725975,-0.936987519264221,0.027322543784976,0.262719929218292,-0.964485168457031,0.0662237629294395,0.287186592817307,-0.955582618713379,0.0646988451480865,0.262118428945541,-0.962864398956299,0.104380451142788,0.33340510725975,-0.936987519264221,0.00969237647950649,0.23728634417057,-0.971391379833221,0.100989632308483,0.229675710201263,-0.968013465404511,0.10244295746088,0.23100084066391,-0.967545330524445,0.0817417576909065,0.239845469594002,-0.967363595962524,0.10244295746088,0.23100084066391,-0.967545330524445,0.0204038340598345,0.366715759038925,-0.930109202861786,0.0335786305367947,0.288045853376389,-0.957027673721313,0.100989632308483,0.229675710201263,-0.968013465404511,0.0646988451480865,0.262118428945541,-0.962864398956299,0.00969237647950649,0.23728634417057,-0.971391379833221,0.0335786305367947,0.288045853376389,-0.957027673721313,0.0204038340598345,0.366715759038925,-0.930109202861786,-0.0498189516365528,0.650014579296112,-0.758286774158478,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.124870277941227,0.539734542369843,-0.832522571086884,-0.0968413650989532,0.522681057453156,-0.84701007604599,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.010392876341939,0.833797872066498,-0.551971912384033,0.0254786722362041,0.822645008563995,-0.567984044551849,0.0444591343402863,0.68870621919632,-0.723676025867462,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0106599824503064,0.70032924413681,-0.713740229606628,0.0288990698754787,0.773347735404968,-0.633322954177856,0.0444591343402863,0.68870621919632,-0.723676025867462,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0871452614665031,0.556772470474243,-0.826081097126007,\r\n0.110530100762844,0.457979947328568,-0.88206422328949,-0.141058996319771,0.356983631849289,-0.923398554325104,-0.121650196611881,0.739583134651184,-0.661980271339417,0.0204038340598345,0.366715759038925,-0.930109202861786,-0.141058996319771,0.356983631849289,-0.923398554325104,-0.134664952754974,0.357339203357697,-0.924215316772461,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.174440875649452,0.756146907806396,-0.630723536014557,-0.134664952754974,0.357339203357697,-0.924215316772461,-0.0654170215129852,0.722762107849121,-0.687993824481964,-0.0654170215129852,0.722762107849121,-0.687993824481964,-0.0417020283639431,0.796465516090393,-0.603244125843048,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0100112436339259,0.889629423618317,-0.456573367118835,-0.0147653203457594,0.909152805805206,-0.416200697422028,0.00565204070881009,0.865212380886078,-0.50137335062027,-0.0417020283639431,0.796465516090393,-0.603244125843048,-0.0160555951297283,0.873244524002075,-0.487017571926117,-0.107819393277168,0.924157083034515,-0.366481244564056,-0.0160555951297283,0.873244524002075,-0.487017571926117,0.0344090089201927,0.925024390220642,-0.378346085548401,-0.0147653203457594,0.909152805805206,-0.416200697422028,-0.0100112436339259,0.889629423618317,-0.456573367118835,0.00565204070881009,0.865212380886078,-0.50137335062027,0.0271701570600271,0.859563887119293,-0.510305464267731,0.0254786722362041,0.822645008563995,-0.567984044551849,0.010392876341939,0.833797872066498,-0.551971912384033,0.0271701570600271,0.859563887119293,-0.510305464267731,0.130036816000938,0.334672957658768,-0.93331903219223,0.110530100762844,0.457979947328568,-0.88206422328949,0.141822919249535,0.305421411991119,-0.941596448421478,0.1451755464077,-0.518858075141907,-0.842442989349365,0.120566882193089,-0.466432332992554,-0.876301527023315,0.253593415021896,-0.593144118785858,-0.764113962650299,0.1451755464077,-0.518858075141907,-0.842442989349365,0.050261415541172,-0.394939035177231,-0.917331397533417,0.120566882193089,-0.466432332992554,-0.876301527023315,\r\n-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0701852962374687,-0.249252736568451,-0.96589183807373,0.050261415541172,-0.394939035177231,-0.917331397533417,0.0668484568595886,-0.200863599777222,-0.977335691452026,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0323366522789001,-0.370839953422546,-0.928133547306061,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.692531585693359,-0.610645532608032,-0.384072959423065,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.414899080991745,-0.677139461040497,-0.607734084129334,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.700233936309814,-0.405507653951645,-0.587567746639252,-0.72555273771286,-0.378881841897964,-0.574475109577179,\r\n-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.697608470916748,-0.38596174120903,-0.603635549545288,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.675307929515839,-0.139233782887459,-0.724274098873138,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.635342061519623,-0.0242390260100365,-0.771850287914276,-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.269335895776749,0.090817391872406,-0.958754539489746,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.491725116968155,0.0920320227742195,-0.865873217582703,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.378666311502457,0.103722639381886,-0.91970282793045,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.269335895776749,0.090817391872406,-0.958754539489746,\r\n-0.243057683110237,0.112700842320919,-0.963442444801331,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.261917978525162,0.101482272148132,-0.959739685058594,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.452805399894714,0.113697819411755,-0.884330093860626,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.388790845870972,-0.0868829935789108,-0.917220175266266,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.353757053613663,-0.0133998282253742,-0.935241341590881,-0.388790845870972,-0.0868829935789108,-0.917220175266266,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.301571577787399,0.241530492901802,-0.922343492507935,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.307123780250549,0.0907030776143074,-0.94733726978302,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.255299121141434,-0.00552257942035794,-0.966846287250519,-0.0245419591665268,0.357384532690048,-0.933634757995605,0.0465085469186306,0.406972110271454,-0.912255764007568,-0.0951241627335548,0.462966054677963,-0.881256878376007,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.0305710602551699,0.300641804933548,-0.953247010707855,-0.0264466032385826,0.4625603556633,-0.886193215847015,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0951241627335548,0.462966054677963,-0.881256878376007,\r\n-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0807149261236191,0.436692237854004,-0.895982623100281,-0.0451208129525185,0.377859175205231,-0.924762904644012,-0.0807149261236191,0.436692237854004,-0.895982623100281,-0.0570322759449482,0.321554005146027,-0.94517195224762,-0.0451208129525185,0.377859175205231,-0.924762904644012,-0.0413205511868,0.510039329528809,-0.859157919883728,0.0406738184392452,0.440189927816391,-0.896982967853546,-0.0807149261236191,0.436692237854004,-0.895982623100281,0.0300922878086567,0.509351432323456,-0.860032200813293,0.173882141709328,0.445852994918823,-0.878054678440094,0.0406738184392452,0.440189927816391,-0.896982967853546,-0.0305710602551699,0.300641804933548,-0.953247010707855,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.0841872021555901,0.343136876821518,-0.935504913330078,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.244526267051697,0.245386093854904,-0.938079118728638,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.236349701881409,0.278305292129517,-0.930959105491638,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.132777109742165,0.316558986902237,-0.939234018325806,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.00265071261674166,0.242577582597733,-0.970128297805786,0.365761399269104,0.317207455635071,-0.874984502792358,0.269432067871094,0.303406089544296,-0.913975358009338,0.316013216972351,0.23134645819664,-0.920116364955902,0.209674939513206,0.267203450202942,-0.940552294254303,0.141822919249535,0.305421411991119,-0.941596448421478,0.146759331226349,0.419404089450836,-0.895858108997345,0.269432067871094,0.303406089544296,-0.913975358009338,0.209674939513206,0.267203450202942,-0.940552294254303,0.316013216972351,0.23134645819664,-0.920116364955902,0.395082414150238,0.178695127367973,-0.901098132133484,\r\n0.459824174642563,0.137587830424309,-0.877286314964294,0.440338939428329,0.248387739062309,-0.86278909444809,0.339203029870987,0.0532316155731678,-0.939205825328827,0.425077110528946,-0.00797369703650475,-0.905121922492981,0.459824174642563,0.137587830424309,-0.877286314964294,0.440338939428329,0.248387739062309,-0.86278909444809,0.365761399269104,0.317207455635071,-0.874984502792358,0.316013216972351,0.23134645819664,-0.920116364955902,0.455318361520767,-0.210963740944862,-0.864973664283752,0.429924875497818,-0.163720920681953,-0.887896358966827,0.450361490249634,-0.181678354740143,-0.874166548252106,0.136067122220993,-0.570418000221252,-0.810005486011505,0.253593415021896,-0.593144118785858,-0.764113962650299,0.171756580471992,-0.579462647438049,-0.796694755554199,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.106472484767437,-0.445661067962646,-0.888847410678864,0.162654638290405,-0.40591037273407,-0.899322032928467,0.155984699726105,-0.495822191238403,-0.854300320148468,0.179484590888023,-0.475493907928467,-0.861214637756348,0.171756580471992,-0.579462647438049,-0.796694755554199,0.155984699726105,-0.495822191238403,-0.854300320148468,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.185037270188332,-0.104624509811401,-0.97714626789093,0.21996508538723,-0.267088234424591,-0.938231945037842,0.162654638290405,-0.40591037273407,-0.899322032928467,0.0920508056879044,-0.381034255027771,-0.919967114925385,0.21996508538723,-0.267088234424591,-0.938231945037842,0.162654638290405,-0.40591037273407,-0.899322032928467,0.106472484767437,-0.445661067962646,-0.888847410678864,0.0920508056879044,-0.381034255027771,-0.919967114925385,0.450361490249634,-0.181678354740143,-0.874166548252106,0.251138806343079,-0.06365005671978,-0.96585601568222,0.324017822742462,-0.243246182799339,-0.914244830608368,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.324017822742462,-0.243246182799339,-0.914244830608368,\r\n0.251138806343079,-0.06365005671978,-0.96585601568222,0.219945192337036,0.00857431069016457,-0.975474536418915,0.249140277504921,0.0712746381759644,-0.965841054916382,0.218125775456429,0.120024919509888,-0.968511760234833,0.339203029870987,0.0532316155731678,-0.939205825328827,0.272455602884293,0.0959574356675148,-0.957371413707733,0.317920714616776,0.038457453250885,-0.947336971759796,0.272455602884293,0.0959574356675148,-0.957371413707733,0.218125775456429,0.120024919509888,-0.968511760234833,0.249140277504921,0.0712746381759644,-0.965841054916382,0.204232007265091,-0.124635003507137,-0.970955848693848,0.219945192337036,0.00857431069016457,-0.975474536418915,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.304702877998352,-0.189924612641335,-0.93331915140152,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.353241562843323,-0.326659113168716,-0.876649379730225,0.304702877998352,-0.189924612641335,-0.93331915140152,0.43651008605957,-0.176880329847336,-0.882140696048737,0.306644201278687,-0.172547340393066,-0.93605375289917,0.339726805686951,0.0291937235742807,-0.940070927143097,0.32835391163826,-0.179560393095016,-0.927330374717712,0.306644201278687,-0.172547340393066,-0.93605375289917,0.32835391163826,-0.179560393095016,-0.927330374717712,0.324336737394333,-0.351022839546204,-0.878401100635529,0.324336737394333,-0.351022839546204,-0.878401100635529,0.353241562843323,-0.326659113168716,-0.876649379730225,0.354892551898956,-0.269676476716995,-0.895168006420136,0.273343145847321,-0.233351171016693,-0.933183073997498,0.24901095032692,-0.287741720676422,-0.924769282341003,0.353662431240082,-0.266442120075226,-0.896622240543365,0.315313518047333,0.0011128302430734,-0.948986887931824,0.273343145847321,-0.233351171016693,-0.933183073997498,0.30807363986969,-0.0241822469979525,-0.95105504989624,0.353662431240082,-0.266442120075226,-0.896622240543365,0.24901095032692,-0.287741720676422,-0.924769282341003,0.416732311248779,-0.289520770311356,-0.861691236495972,\r\n0.339726805686951,0.0291937235742807,-0.940070927143097,0.295066863298416,0.0225954838097095,-0.955209374427795,0.315313518047333,0.0011128302430734,-0.948986887931824,0.429924875497818,-0.163720920681953,-0.887896358966827,0.416732311248779,-0.289520770311356,-0.861691236495972,0.24901095032692,-0.287741720676422,-0.924769282341003,0.123962238430977,0.467680960893631,-0.875161528587341,0.140776127576828,0.382344275712967,-0.913233160972595,0.0558261796832085,0.38692182302475,-0.920421004295349,-0.0931684449315071,0.52529639005661,-0.845803260803223,0.0558261796832085,0.38692182302475,-0.920421004295349,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.122576169669628,0.487183928489685,-0.864654183387756,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.24716117978096,0.637320280075073,-0.7298863530159,-0.122576169669628,0.487183928489685,-0.864654183387756,-0.150852486491203,0.554701089859009,-0.818260371685028,-0.179237887263298,0.585007190704346,-0.790974199771881,-0.150852486491203,0.554701089859009,-0.818260371685028,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.24716117978096,0.637320280075073,-0.7298863530159,0.123962238430977,0.467680960893631,-0.875161528587341,0.173882141709328,0.445852994918823,-0.878054678440094,0.140776127576828,0.382344275712967,-0.913233160972595,-0.0435863435268402,0.401030480861664,-0.915027141571045,-0.0753840878605843,0.542583227157593,-0.836612582206726,0.0784225314855576,0.526538610458374,-0.846526324748993,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.070062980055809,0.438966780900955,-0.895767390727997,-0.124870277941227,0.539734542369843,-0.832522571086884,0.123878173530102,0.424399942159653,-0.896960854530334,-0.00897338055074215,0.322204172611237,-0.946627616882324,0.0784225314855576,0.526538610458374,-0.846526324748993,0.0662237629294395,0.287186592817307,-0.955582618713379,\r\n0.123878173530102,0.424399942159653,-0.896960854530334,0.104380451142788,0.33340510725975,-0.936987519264221,0.00969237647950649,0.23728634417057,-0.971391379833221,0.104380451142788,0.33340510725975,-0.936987519264221,-0.0490369684994221,0.366032779216766,-0.929309070110321,0.10244295746088,0.23100084066391,-0.967545330524445,0.100989632308483,0.229675710201263,-0.968013465404511,0.00969237647950649,0.23728634417057,-0.971391379833221,0.0204038340598345,0.366715759038925,-0.930109202861786,0.10244295746088,0.23100084066391,-0.967545330524445,0.00969237647950649,0.23728634417057,-0.971391379833221,-0.198775202035904,0.582856774330139,-0.787887215614319,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.124870277941227,0.539734542369843,-0.832522571086884,0.0288990698754787,0.773347735404968,-0.633322954177856,-0.00504830339923501,0.767121016979218,-0.641482412815094,0.0254786722362041,0.822645008563995,-0.567984044551849,0.0534641183912754,0.612035751342773,-0.789020776748657,0.0444591343402863,0.68870621919632,-0.723676025867462,0.0871452614665031,0.556772470474243,-0.826081097126007,0.0288990698754787,0.773347735404968,-0.633322954177856,0.028319900855422,0.747097074985504,-0.664111256599426,0.0444591343402863,0.68870621919632,-0.723676025867462,0.146759331226349,0.419404089450836,-0.895858108997345,0.110530100762844,0.457979947328568,-0.88206422328949,0.0871452614665031,0.556772470474243,-0.826081097126007,0.0204038340598345,0.366715759038925,-0.930109202861786,0.00969237647950649,0.23728634417057,-0.971391379833221,-0.141058996319771,0.356983631849289,-0.923398554325104,-0.141058996319771,0.356983631849289,-0.923398554325104,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.134664952754974,0.357339203357697,-0.924215316772461,-0.134664952754974,0.357339203357697,-0.924215316772461,0.0117416139692068,0.353190153837204,-0.93547785282135,-0.0654170215129852,0.722762107849121,-0.687993824481964,0.0248224977403879,0.52640974521637,-0.849868535995483,-0.0417020283639431,0.796465516090393,-0.603244125843048,\r\n-0.0654170215129852,0.722762107849121,-0.687993824481964,0.00565204070881009,0.865212380886078,-0.50137335062027,-0.0147653203457594,0.909152805805206,-0.416200697422028,0.051359448581934,0.86378675699234,-0.501232981681824,-0.0160555951297283,0.873244524002075,-0.487017571926117,-0.0417020283639431,0.796465516090393,-0.603244125843048,0.0938742309808731,0.577090561389923,-0.811266899108887,-0.0160555951297283,0.873244524002075,-0.487017571926117,0.0397892072796822,0.896503269672394,-0.441246628761292,0.0344090089201927,0.925024390220642,-0.378346085548401,0.0587253086268902,0.893588483333588,-0.445029050111771,-0.0147653203457594,0.909152805805206,-0.416200697422028,0.0344090089201927,0.925024390220642,-0.378346085548401,0.0271701570600271,0.859563887119293,-0.510305464267731,0.00565204070881009,0.865212380886078,-0.50137335062027,0.0254786722362041,0.822645008563995,-0.567984044551849,0.146759331226349,0.419404089450836,-0.895858108997345,0.141822919249535,0.305421411991119,-0.941596448421478,0.110530100762844,0.457979947328568,-0.88206422328949,0.136067122220993,-0.570418000221252,-0.810005486011505,0.1451755464077,-0.518858075141907,-0.842442989349365,0.253593415021896,-0.593144118785858,-0.764113962650299,0.050261415541172,-0.394939035177231,-0.917331397533417,0.1451755464077,-0.518858075141907,-0.842442989349365,0.0384762585163116,-0.425168365240097,-0.904296040534973,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.050261415541172,-0.394939035177231,-0.917331397533417,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.0323366522789001,-0.370839953422546,-0.928133547306061,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0351591259241104,-0.332751035690308,-0.942359030246735,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.563545167446136,-0.742355346679688,-0.362388253211975,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.602417349815369,-0.644375681877136,-0.471034228801727,-0.692531585693359,-0.610645532608032,-0.384072959423065,\r\n-0.692531585693359,-0.610645532608032,-0.384072959423065,-0.657520592212677,-0.624908328056335,-0.420899271965027,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.508223235607147,-0.555270671844482,-0.658318638801575,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.518419921398163,-0.77582836151123,-0.359626233577728,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.536486208438873,-0.652712106704712,-0.534929215908051,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.560084164142609,-0.785816431045532,-0.26229390501976,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.55091404914856,-0.457742214202881,-0.697829186916351,-0.628354966640472,-0.381684601306915,-0.677854597568512,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.731258690357208,-0.388316214084625,-0.560777187347412,-0.671601831912994,-0.382815182209015,-0.634352684020996,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.768902182579041,-0.0854398906230927,-0.633631825447083,\r\n-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.725734353065491,-0.0865817591547966,-0.682505011558533,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.688072383403778,-0.387955248355865,-0.613226771354675,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.703787565231323,-0.273494839668274,-0.655654966831207,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.296909362077713,0.113608904182911,-0.948123276233673,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.459610283374786,0.143222585320473,-0.876496195793152,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.402165412902832,0.100747056305408,-0.910007059574127,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.388790845870972,-0.0868829935789108,-0.917220175266266,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.388790845870972,-0.0868829935789108,-0.917220175266266,\r\n-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.405413806438446,0.222496375441551,-0.886642456054688,-0.381569027900696,0.205083891749382,-0.90130215883255,-0.310242801904678,0.219418734312058,-0.92498904466629,-0.381569027900696,0.205083891749382,-0.90130215883255,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.157876878976822,0.0799566805362701,-0.984216272830963,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.343194842338562,0.147305995225906,-0.927641153335571,0.0465085469186306,0.406972110271454,-0.912255764007568,-0.0245419591665268,0.357384532690048,-0.933634757995605,0.0841120108962059,0.350667804479599,-0.932714939117432,0.0465085469186306,0.406972110271454,-0.912255764007568,0.0667138248682022,0.481915801763535,-0.873674035072327,-0.0951241627335548,0.462966054677963,-0.881256878376007,-0.00265071261674166,0.242577582597733,-0.970128297805786,0.0841120108962059,0.350667804479599,-0.932714939117432,-0.0245419591665268,0.357384532690048,-0.933634757995605,-0.0944075062870979,0.477216958999634,-0.87369966506958,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0264466032385826,0.4625603556633,-0.886193215847015,-0.0264466032385826,0.4625603556633,-0.886193215847015,-0.0951241627335548,0.462966054677963,-0.881256878376007,0.0667138248682022,0.481915801763535,-0.873674035072327,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.111527033150196,0.521691560745239,-0.845812976360321,-0.0807149261236191,0.436692237854004,-0.895982623100281,-0.0413205511868,0.510039329528809,-0.859157919883728,0.0300922878086567,0.509351432323456,-0.860032200813293,0.0406738184392452,0.440189927816391,-0.896982967853546,\r\n-0.111527033150196,0.521691560745239,-0.845812976360321,-0.0413205511868,0.510039329528809,-0.859157919883728,-0.0807149261236191,0.436692237854004,-0.895982623100281,0.0560904256999493,0.478363424539566,-0.876368761062622,0.173882141709328,0.445852994918823,-0.878054678440094,0.0300922878086567,0.509351432323456,-0.860032200813293,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.130666002631187,0.164203286170959,-0.977733790874481,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.042314276099205,0.172892019152641,-0.98403137922287,0.259589105844498,0.379739314317703,-0.887925326824188,0.209674939513206,0.267203450202942,-0.940552294254303,0.146759331226349,0.419404089450836,-0.895858108997345,0.316013216972351,0.23134645819664,-0.920116364955902,0.209674939513206,0.267203450202942,-0.940552294254303,0.311076670885086,0.245819509029388,-0.918043553829193,0.395082414150238,0.178695127367973,-0.901098132133484,0.340565204620361,0.155842304229736,-0.927215397357941,0.459824174642563,0.137587830424309,-0.877286314964294,0.440338939428329,0.248387739062309,-0.86278909444809,0.363515496253967,0.190605387091637,-0.911880433559418,0.395082414150238,0.178695127367973,-0.901098132133484,0.340565204620361,0.155842304229736,-0.927215397357941,0.339203029870987,0.0532316155731678,-0.939205825328827,0.459824174642563,0.137587830424309,-0.877286314964294,0.440338939428329,0.248387739062309,-0.86278909444809,0.316013216972351,0.23134645819664,-0.920116364955902,0.363515496253967,0.190605387091637,-0.911880433559418,0.251138806343079,-0.06365005671978,-0.96585601568222,0.450361490249634,-0.181678354740143,-0.874166548252106,0.429924875497818,-0.163720920681953,-0.887896358966827,0.136067122220993,-0.570418000221252,-0.810005486011505,0.171756580471992,-0.579462647438049,-0.796694755554199,\r\n0.135532602667809,-0.583601057529449,-0.800650060176849,0.148978143930435,0.0524243228137493,-0.987449765205383,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.185037270188332,-0.104624509811401,-0.97714626789093,0.00703422352671623,-0.264834880828857,-0.964268088340759,0.179484590888023,-0.475493907928467,-0.861214637756348,0.155984699726105,-0.495822191238403,-0.854300320148468,0.162654638290405,-0.40591037273407,-0.899322032928467,0.179484590888023,-0.475493907928467,-0.861214637756348,0.135532602667809,-0.583601057529449,-0.800650060176849,0.171756580471992,-0.579462647438049,-0.796694755554199,0.185037270188332,-0.104624509811401,-0.97714626789093,0.270680695772171,-0.149580150842667,-0.950977206230164,0.21996508538723,-0.267088234424591,-0.938231945037842,0.162654638290405,-0.40591037273407,-0.899322032928467,0.21996508538723,-0.267088234424591,-0.938231945037842,0.300399273633957,-0.346344381570816,-0.888710141181946,0.0650540366768837,-0.146417230367661,-0.987081468105316,0.251138806343079,-0.06365005671978,-0.96585601568222,0.148978143930435,0.0524243228137493,-0.987449765205383,0.189921692013741,0.0748946219682693,-0.978938460350037,0.219945192337036,0.00857431069016457,-0.975474536418915,0.218125775456429,0.120024919509888,-0.968511760234833,0.272455602884293,0.0959574356675148,-0.957371413707733,0.339203029870987,0.0532316155731678,-0.939205825328827,0.250142753124237,0.118455670773983,-0.960935354232788,0.164265379309654,0.102102123200893,-0.98111766576767,0.218125775456429,0.120024919509888,-0.968511760234833,0.272455602884293,0.0959574356675148,-0.957371413707733,0.219945192337036,0.00857431069016457,-0.975474536418915,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.216509759426117,-0.0910604149103165,-0.972024381160736,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.304702877998352,-0.189924612641335,-0.93331915140152,0.280791252851486,-0.0434698425233364,-0.958783864974976,\r\n0.442906260490417,-0.0844922959804535,-0.892577767372131,0.43651008605957,-0.176880329847336,-0.882140696048737,0.304702877998352,-0.189924612641335,-0.93331915140152,0.43651008605957,-0.176880329847336,-0.882140696048737,0.354892551898956,-0.269676476716995,-0.895168006420136,0.353241562843323,-0.326659113168716,-0.876649379730225,0.339726805686951,0.0291937235742807,-0.940070927143097,0.306644201278687,-0.172547340393066,-0.93605375289917,0.295066863298416,0.0225954838097095,-0.955209374427795,0.306644201278687,-0.172547340393066,-0.93605375289917,0.324336737394333,-0.351022839546204,-0.878401100635529,0.2367954403162,-0.212295830249786,-0.948081374168396,0.354892551898956,-0.269676476716995,-0.895168006420136,0.2367954403162,-0.212295830249786,-0.948081374168396,0.324336737394333,-0.351022839546204,-0.878401100635529,0.273343145847321,-0.233351171016693,-0.933183073997498,0.277680784463882,-0.203016042709351,-0.938977003097534,0.24901095032692,-0.287741720676422,-0.924769282341003,0.277680784463882,-0.203016042709351,-0.938977003097534,0.273343145847321,-0.233351171016693,-0.933183073997498,0.315313518047333,0.0011128302430734,-0.948986887931824,0.273255467414856,0.0116297481581569,-0.961871027946472,0.315313518047333,0.0011128302430734,-0.948986887931824,0.295066863298416,0.0225954838097095,-0.955209374427795,0.429924875497818,-0.163720920681953,-0.887896358966827,0.24901095032692,-0.287741720676422,-0.924769282341003,0.251751840114594,-0.119446843862534,-0.96039229631424,0.0558261796832085,0.38692182302475,-0.920421004295349,0.140776127576828,0.382344275712967,-0.913233160972595,0.0769273936748505,0.361984401941299,-0.929004490375519,0.0558261796832085,0.38692182302475,-0.920421004295349,0.0769273936748505,0.361984401941299,-0.929004490375519,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.122576169669628,0.487183928489685,-0.864654183387756,-0.055801760405302,0.438394874334335,-0.897048473358154,-0.0617020204663277,0.421302378177643,-0.904818832874298,-0.190784946084023,0.628465235233307,-0.754077255725861,\r\n-0.24716117978096,0.637320280075073,-0.7298863530159,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.122576169669628,0.487183928489685,-0.864654183387756,-0.0617020204663277,0.421302378177643,-0.904818832874298,-0.150852486491203,0.554701089859009,-0.818260371685028,-0.150852486491203,0.554701089859009,-0.818260371685028,0.0165555197745562,0.519998371601105,-0.854006707668304,-0.158188968896866,0.655032992362976,-0.73885577917099,0.0560904256999493,0.478363424539566,-0.876368761062622,0.140776127576828,0.382344275712967,-0.913233160972595,0.173882141709328,0.445852994918823,-0.878054678440094,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.0330772809684277,0.586258292198181,-0.809448540210724,0.0784225314855576,0.526538610458374,-0.846526324748993,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.124870277941227,0.539734542369843,-0.832522571086884,-0.190784946084023,0.628465235233307,-0.754077255725861,0.184381723403931,0.493020862340927,-0.850255072116852,0.123878173530102,0.424399942159653,-0.896960854530334,0.0784225314855576,0.526538610458374,-0.846526324748993,0.184381723403931,0.493020862340927,-0.850255072116852,0.104380451142788,0.33340510725975,-0.936987519264221,0.123878173530102,0.424399942159653,-0.896960854530334,0.104380451142788,0.33340510725975,-0.936987519264221,0.107410214841366,0.460148304700851,-0.881320834159851,-0.0490369684994221,0.366032779216766,-0.929309070110321,-0.0490369684994221,0.366032779216766,-0.929309070110321,-0.135996371507645,0.224747985601425,-0.964879930019379,0.00969237647950649,0.23728634417057,-0.971391379833221,0.0288990698754787,0.773347735404968,-0.633322954177856,0.0254786722362041,0.822645008563995,-0.567984044551849,0.028319900855422,0.747097074985504,-0.664111256599426,0.0444591343402863,0.68870621919632,-0.723676025867462,0.077311635017395,0.623962104320526,-0.777620792388916,0.0871452614665031,0.556772470474243,-0.826081097126007,0.0444591343402863,0.68870621919632,-0.723676025867462,0.028319900855422,0.747097074985504,-0.664111256599426,\r\n0.077311635017395,0.623962104320526,-0.777620792388916,0.0871452614665031,0.556772470474243,-0.826081097126007,0.149256482720375,0.507818639278412,-0.848435401916504,0.146759331226349,0.419404089450836,-0.895858108997345,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.141058996319771,0.356983631849289,-0.923398554325104,0.00969237647950649,0.23728634417057,-0.971391379833221,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.0520661100745201,0.270327210426331,-0.961359560489655,-0.134664952754974,0.357339203357697,-0.924215316772461,0.0117416139692068,0.353190153837204,-0.93547785282135,-0.134664952754974,0.357339203357697,-0.924215316772461,-0.0520661100745201,0.270327210426331,-0.961359560489655,0.0248224977403879,0.52640974521637,-0.849868535995483,-0.0654170215129852,0.722762107849121,-0.687993824481964,0.0117416139692068,0.353190153837204,-0.93547785282135,-0.0417020283639431,0.796465516090393,-0.603244125843048,0.0248224977403879,0.52640974521637,-0.849868535995483,0.0938742309808731,0.577090561389923,-0.811266899108887,-0.0147653203457594,0.909152805805206,-0.416200697422028,0.0587253086268902,0.893588483333588,-0.445029050111771,0.051359448581934,0.86378675699234,-0.501232981681824,0.051359448581934,0.86378675699234,-0.501232981681824,0.0254786722362041,0.822645008563995,-0.567984044551849,0.00565204070881009,0.865212380886078,-0.50137335062027,0.14376375079155,0.631109893321991,-0.762254595756531,-0.0160555951297283,0.873244524002075,-0.487017571926117,0.0938742309808731,0.577090561389923,-0.811266899108887,0.0397892072796822,0.896503269672394,-0.441246628761292,-0.0160555951297283,0.873244524002075,-0.487017571926117,0.14376375079155,0.631109893321991,-0.762254595756531,0.041690893471241,0.912496328353882,-0.406954914331436,0.0344090089201927,0.925024390220642,-0.378346085548401,0.0397892072796822,0.896503269672394,-0.441246628761292,0.0344090089201927,0.925024390220642,-0.378346085548401,0.130615413188934,0.905993640422821,-0.402635097503662,0.0587253086268902,0.893588483333588,-0.445029050111771,\r\n0.136067122220993,-0.570418000221252,-0.810005486011505,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.1451755464077,-0.518858075141907,-0.842442989349365,-0.00160907942336053,-0.325759261846542,-0.945451319217682,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.0351591259241104,-0.332751035690308,-0.942359030246735,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.692531585693359,-0.610645532608032,-0.384072959423065,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.692531585693359,-0.610645532608032,-0.384072959423065,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.608028650283813,-0.641145706176758,-0.468223392963409,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.628464937210083,-0.37168088555336,-0.68328982591629,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.671601831912994,-0.382815182209015,-0.634352684020996,\r\n-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.728745341300964,-0.172560915350914,-0.662686049938202,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.741044282913208,-0.0148943923413754,-0.671290814876556,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.650965988636017,-0.434290140867233,-0.622603535652161,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.655881285667419,0.0282430443912745,-0.754335403442383,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.661129117012024,0.173904687166214,-0.729839205741882,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.377723217010498,0.181055203080177,-0.908044099807739,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.243057683110237,0.112700842320919,-0.963442444801331,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.381569027900696,0.205083891749382,-0.90130215883255,\r\n-0.405413806438446,0.222496375441551,-0.886642456054688,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.381569027900696,0.205083891749382,-0.90130215883255,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.343194842338562,0.147305995225906,-0.927641153335571,-0.353214919567108,-0.0264602527022362,-0.935167908668518,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.343194842338562,0.147305995225906,-0.927641153335571,0.0998399928212166,0.442542552947998,-0.891172230243683,0.0465085469186306,0.406972110271454,-0.912255764007568,0.0841120108962059,0.350667804479599,-0.932714939117432,0.0998399928212166,0.442542552947998,-0.891172230243683,0.0667138248682022,0.481915801763535,-0.873674035072327,0.0465085469186306,0.406972110271454,-0.912255764007568,0.0841120108962059,0.350667804479599,-0.932714939117432,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.0256708655506372,0.32865646481514,-0.944100499153137,-0.0944075062870979,0.477216958999634,-0.87369966506958,-0.125513896346092,0.510312020778656,-0.850780665874481,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.0944075062870979,0.477216958999634,-0.87369966506958,-0.0264466032385826,0.4625603556633,-0.886193215847015,0.00931580178439617,0.345167279243469,-0.938494920730591,\r\n-0.0264466032385826,0.4625603556633,-0.886193215847015,0.0667138248682022,0.481915801763535,-0.873674035072327,0.0429381728172302,0.408539175987244,-0.911730170249939,-0.11736436933279,0.497905105352402,-0.859253168106079,-0.125513896346092,0.510312020778656,-0.850780665874481,-0.111527033150196,0.521691560745239,-0.845812976360321,-0.0443988405168056,0.57828813791275,-0.814623415470123,0.0300922878086567,0.509351432323456,-0.860032200813293,-0.0413205511868,0.510039329528809,-0.859157919883728,-0.111527033150196,0.521691560745239,-0.845812976360321,-0.0443988405168056,0.57828813791275,-0.814623415470123,-0.0413205511868,0.510039329528809,-0.859157919883728,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0300922878086567,0.509351432323456,-0.860032200813293,0.0464046820998192,0.593250930309296,-0.8036789894104,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.133321329951286,0.177687868475914,-0.97501403093338,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.042314276099205,0.172892019152641,-0.98403137922287,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.190238773822784,0.174626007676125,-0.966082215309143,-0.00265071261674166,0.242577582597733,-0.970128297805786,-0.042314276099205,0.172892019152641,-0.98403137922287,-0.0256708655506372,0.32865646481514,-0.944100499153137,0.311076670885086,0.245819509029388,-0.918043553829193,0.209674939513206,0.267203450202942,-0.940552294254303,0.259589105844498,0.379739314317703,-0.887925326824188,0.146759331226349,0.419404089450836,-0.895858108997345,0.149256482720375,0.507818639278412,-0.848435401916504,0.259589105844498,0.379739314317703,-0.887925326824188,0.316013216972351,0.23134645819664,-0.920116364955902,0.311076670885086,0.245819509029388,-0.918043553829193,0.363515496253967,0.190605387091637,-0.911880433559418,0.395082414150238,0.178695127367973,-0.901098132133484,\r\n0.276177227497101,0.139958202838898,-0.950861573219299,0.340565204620361,0.155842304229736,-0.927215397357941,0.395082414150238,0.178695127367973,-0.901098132133484,0.363515496253967,0.190605387091637,-0.911880433559418,0.329387843608856,0.164050623774529,-0.929833829402924,0.250142753124237,0.118455670773983,-0.960935354232788,0.339203029870987,0.0532316155731678,-0.939205825328827,0.340565204620361,0.155842304229736,-0.927215397357941,0.429924875497818,-0.163720920681953,-0.887896358966827,0.251751840114594,-0.119446843862534,-0.96039229631424,0.251138806343079,-0.06365005671978,-0.96585601568222,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.136067122220993,-0.570418000221252,-0.810005486011505,0.135532602667809,-0.583601057529449,-0.800650060176849,0.148978143930435,0.0524243228137493,-0.987449765205383,0.174376010894775,0.0569445937871933,-0.983031034469604,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.0798433050513268,-0.0858551263809204,-0.99310314655304,0.174376010894775,0.0569445937871933,-0.983031034469604,0.185037270188332,-0.104624509811401,-0.97714626789093,0.300399273633957,-0.346344381570816,-0.888710141181946,0.179484590888023,-0.475493907928467,-0.861214637756348,0.162654638290405,-0.40591037273407,-0.899322032928467,0.179484590888023,-0.475493907928467,-0.861214637756348,0.247142925858498,-0.480599373579025,-0.841394364833832,0.135532602667809,-0.583601057529449,-0.800650060176849,0.185037270188332,-0.104624509811401,-0.97714626789093,0.243842989206314,0.0343636274337769,-0.969205558300018,0.270680695772171,-0.149580150842667,-0.950977206230164,0.270680695772171,-0.149580150842667,-0.950977206230164,0.301906436681747,-0.300343364477158,-0.904790699481964,0.21996508538723,-0.267088234424591,-0.938231945037842,0.301906436681747,-0.300343364477158,-0.904790699481964,0.300399273633957,-0.346344381570816,-0.888710141181946,0.21996508538723,-0.267088234424591,-0.938231945037842,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.148978143930435,0.0524243228137493,-0.987449765205383,\r\n0.251138806343079,-0.06365005671978,-0.96585601568222,0.189921692013741,0.0748946219682693,-0.978938460350037,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.219945192337036,0.00857431069016457,-0.975474536418915,0.189921692013741,0.0748946219682693,-0.978938460350037,0.218125775456429,0.120024919509888,-0.968511760234833,0.164265379309654,0.102102123200893,-0.98111766576767,0.250142753124237,0.118455670773983,-0.960935354232788,0.164265379309654,0.102102123200893,-0.98111766576767,0.272455602884293,0.0959574356675148,-0.957371413707733,0.416562587022781,0.0665255561470985,-0.906669616699219,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.43651008605957,-0.176880329847336,-0.882140696048737,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.43651008605957,-0.176880329847336,-0.882140696048737,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.354892551898956,-0.269676476716995,-0.895168006420136,0.306644201278687,-0.172547340393066,-0.93605375289917,0.118938446044922,-0.224728524684906,-0.96713525056839,0.295066863298416,0.0225954838097095,-0.955209374427795,0.306644201278687,-0.172547340393066,-0.93605375289917,0.2367954403162,-0.212295830249786,-0.948081374168396,0.118938446044922,-0.224728524684906,-0.96713525056839,0.2367954403162,-0.212295830249786,-0.948081374168396,0.354892551898956,-0.269676476716995,-0.895168006420136,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.277680784463882,-0.203016042709351,-0.938977003097534,0.257441401481628,-0.331933945417404,-0.907493054866791,0.24901095032692,-0.287741720676422,-0.924769282341003,0.315313518047333,0.0011128302430734,-0.948986887931824,0.273255467414856,0.0116297481581569,-0.961871027946472,0.277680784463882,-0.203016042709351,-0.938977003097534,0.273255467414856,0.0116297481581569,-0.961871027946472,0.295066863298416,0.0225954838097095,-0.955209374427795,0.109108649194241,-0.0782552808523178,-0.990944683551788,\r\n0.1971605271101,-0.0840769410133362,-0.976759254932404,0.251751840114594,-0.119446843862534,-0.96039229631424,0.24901095032692,-0.287741720676422,-0.924769282341003,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0769273936748505,0.361984401941299,-0.929004490375519,0.140776127576828,0.382344275712967,-0.913233160972595,-0.055801760405302,0.438394874334335,-0.897048473358154,0.0769273936748505,0.361984401941299,-0.929004490375519,0.0560904256999493,0.478363424539566,-0.876368761062622,-0.055801760405302,0.438394874334335,-0.897048473358154,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.0617020204663277,0.421302378177643,-0.904818832874298,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.203289449214935,0.687106251716614,-0.697537302970886,-0.0617020204663277,0.421302378177643,-0.904818832874298,0.0165555197745562,0.519998371601105,-0.854006707668304,-0.150852486491203,0.554701089859009,-0.818260371685028,0.0644592642784119,0.579304277896881,-0.812558531761169,-0.158188968896866,0.655032992362976,-0.73885577917099,0.0165555197745562,0.519998371601105,-0.854006707668304,-0.0753840878605843,0.542583227157593,-0.836612582206726,-0.0976949036121368,0.619888067245483,-0.778584837913513,-0.0330772809684277,0.586258292198181,-0.809448540210724,-0.0330772809684277,0.586258292198181,-0.809448540210724,0.0326701775193214,0.51486337184906,-0.856649398803711,0.0784225314855576,0.526538610458374,-0.846526324748993,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.0976949036121368,0.619888067245483,-0.778584837913513,-0.0753840878605843,0.542583227157593,-0.836612582206726,0.184381723403931,0.493020862340927,-0.850255072116852,0.0784225314855576,0.526538610458374,-0.846526324748993,0.0326701775193214,0.51486337184906,-0.856649398803711,0.104380451142788,0.33340510725975,-0.936987519264221,0.184381723403931,0.493020862340927,-0.850255072116852,0.107410214841366,0.460148304700851,-0.881320834159851,-0.0490369684994221,0.366032779216766,-0.929309070110321,\r\n0.107410214841366,0.460148304700851,-0.881320834159851,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.0490369684994221,0.366032779216766,-0.929309070110321,-0.134978428483009,0.393247842788696,-0.909470617771149,0.0254786722362041,0.822645008563995,-0.567984044551849,0.0783103406429291,0.798951148986816,-0.596275448799133,0.028319900855422,0.747097074985504,-0.664111256599426,0.0871452614665031,0.556772470474243,-0.826081097126007,0.077311635017395,0.623962104320526,-0.777620792388916,0.149256482720375,0.507818639278412,-0.848435401916504,0.0809670984745026,0.690223693847656,-0.719051778316498,0.077311635017395,0.623962104320526,-0.777620792388916,0.028319900855422,0.747097074985504,-0.664111256599426,-0.135996371507645,0.224747985601425,-0.964879930019379,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.0520661100745201,0.270327210426331,-0.961359560489655,-0.0520661100745201,0.270327210426331,-0.961359560489655,0.081113189458847,0.261198848485947,-0.961870968341827,0.0117416139692068,0.353190153837204,-0.93547785282135,0.0248224977403879,0.52640974521637,-0.849868535995483,0.0117416139692068,0.353190153837204,-0.93547785282135,0.132264003157616,0.2801713347435,-0.950794458389282,0.132264003157616,0.2801713347435,-0.950794458389282,0.0938742309808731,0.577090561389923,-0.811266899108887,0.0248224977403879,0.52640974521637,-0.849868535995483,0.0587253086268902,0.893588483333588,-0.445029050111771,0.150669768452644,0.868620932102203,-0.472012996673584,0.051359448581934,0.86378675699234,-0.501232981681824,0.0783103406429291,0.798951148986816,-0.596275448799133,0.0254786722362041,0.822645008563995,-0.567984044551849,0.051359448581934,0.86378675699234,-0.501232981681824,0.14376375079155,0.631109893321991,-0.762254595756531,0.0938742309808731,0.577090561389923,-0.811266899108887,0.141405865550041,0.303388297557831,-0.942316174507141,0.0449777655303478,0.775016069412231,-0.630338728427887,0.0397892072796822,0.896503269672394,-0.441246628761292,\r\n0.14376375079155,0.631109893321991,-0.762254595756531,0.041690893471241,0.912496328353882,-0.406954914331436,0.145574554800987,0.894787490367889,-0.422093868255615,0.0344090089201927,0.925024390220642,-0.378346085548401,0.041690893471241,0.912496328353882,-0.406954914331436,0.0397892072796822,0.896503269672394,-0.441246628761292,0.0449777655303478,0.775016069412231,-0.630338728427887,0.0344090089201927,0.925024390220642,-0.378346085548401,0.145574554800987,0.894787490367889,-0.422093868255615,0.130615413188934,0.905993640422821,-0.402635097503662,0.0587253086268902,0.893588483333588,-0.445029050111771,0.130615413188934,0.905993640422821,-0.402635097503662,0.150669768452644,0.868620932102203,-0.472012996673584,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.136067122220993,-0.570418000221252,-0.810005486011505,0.0526083260774612,-0.359533786773682,-0.931647837162018,0.0351591259241104,-0.332751035690308,-0.942359030246735,0.0384762585163116,-0.425168365240097,-0.904296040534973,-0.652514576911926,-0.695918917655945,-0.299869209527969,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.642361581325531,-0.74725204706192,-0.170252189040184,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.761716306209564,-0.5737264752388,-0.301041573286057,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.633125364780426,-0.69863373041153,-0.333261102437973,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.623194634914398,-0.48720121383667,-0.611770570278168,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.680112481117249,-0.365087151527405,-0.635734379291534,\r\n-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.691266298294067,-0.703360736370087,-0.16563369333744,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.650914907455444,-0.349278479814529,-0.674028277397156,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.64395010471344,-0.426861703395844,-0.634915113449097,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.651236534118652,-0.374021679162979,-0.660301983356476,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.718609213829041,-0.221456795930862,-0.659209787845612,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.790190577507019,-0.0503391101956367,-0.610790193080902,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.661129117012024,0.173904687166214,-0.729839205741882,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.661129117012024,0.173904687166214,-0.729839205741882,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.591789722442627,0.139567837119102,-0.793917894363403,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.567294359207153,0.28742989897728,-0.771725952625275,\r\n-0.49924436211586,0.223975032567978,-0.837012588977814,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.476696103811264,0.279724627733231,-0.833375573158264,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.341366797685623,0.199767112731934,-0.918456137180328,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.381569027900696,0.205083891749382,-0.90130215883255,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.403455168008804,0.0487758703529835,-0.913698375225067,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.48523360490799,-0.00376474647782743,-0.87437641620636,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.210870236158371,0.115756496787071,-0.970635890960693,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.118243224918842,0.166249886155128,-0.978968560695648,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.128864362835884,0.181378453969955,-0.974933743476868,-0.343194842338562,0.147305995225906,-0.927641153335571,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.32205519080162,0.307143956422806,-0.895512640476227,0.0841120108962059,0.350667804479599,-0.932714939117432,-0.0256708655506372,0.32865646481514,-0.944100499153137,0.0998399928212166,0.442542552947998,-0.891172230243683,0.0998399928212166,0.442542552947998,-0.891172230243683,0.104696698486805,0.46525052189827,-0.878965556621552,\r\n0.0667138248682022,0.481915801763535,-0.873674035072327,-0.0944075062870979,0.477216958999634,-0.87369966506958,-0.0203989129513502,0.434973776340485,-0.900211930274963,-0.125513896346092,0.510312020778656,-0.850780665874481,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.0264466032385826,0.4625603556633,-0.886193215847015,-0.00485835550352931,0.318666756153107,-0.947854340076447,-0.0944075062870979,0.477216958999634,-0.87369966506958,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.104696698486805,0.46525052189827,-0.878965556621552,0.0429381728172302,0.408539175987244,-0.911730170249939,0.0667138248682022,0.481915801763535,-0.873674035072327,-0.0264466032385826,0.4625603556633,-0.886193215847015,0.0429381728172302,0.408539175987244,-0.911730170249939,-0.00485835550352931,0.318666756153107,-0.947854340076447,-0.125513896346092,0.510312020778656,-0.850780665874481,-0.0899261832237244,0.545823335647583,-0.833060622215271,-0.111527033150196,0.521691560745239,-0.845812976360321,0.0464046820998192,0.593250930309296,-0.8036789894104,0.0300922878086567,0.509351432323456,-0.860032200813293,-0.0443988405168056,0.57828813791275,-0.814623415470123,-0.0899261832237244,0.545823335647583,-0.833060622215271,-0.0443988405168056,0.57828813791275,-0.814623415470123,-0.111527033150196,0.521691560745239,-0.845812976360321,0.0464046820998192,0.593250930309296,-0.8036789894104,0.0172331593930721,0.613473832607269,-0.789526879787445,0.0560904256999493,0.478363424539566,-0.876368761062622,-0.0256708655506372,0.32865646481514,-0.944100499153137,-0.042314276099205,0.172892019152641,-0.98403137922287,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.153391793370247,0.185495108366013,-0.970598995685577,0.245772704482079,0.327036470174789,-0.912492632865906,0.311076670885086,0.245819509029388,-0.918043553829193,0.259589105844498,0.379739314317703,-0.887925326824188,\r\n0.217794239521027,0.459868609905243,-0.860863745212555,0.259589105844498,0.379739314317703,-0.887925326824188,0.149256482720375,0.507818639278412,-0.848435401916504,0.311076670885086,0.245819509029388,-0.918043553829193,0.329387843608856,0.164050623774529,-0.929833829402924,0.363515496253967,0.190605387091637,-0.911880433559418,0.329387843608856,0.164050623774529,-0.929833829402924,0.276177227497101,0.139958202838898,-0.950861573219299,0.395082414150238,0.178695127367973,-0.901098132133484,0.340565204620361,0.155842304229736,-0.927215397357941,0.276177227497101,0.139958202838898,-0.950861573219299,0.250142753124237,0.118455670773983,-0.960935354232788,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.251138806343079,-0.06365005671978,-0.96585601568222,0.251751840114594,-0.119446843862534,-0.96039229631424,0.152692213654518,-0.4775250852108,-0.865248382091522,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.135532602667809,-0.583601057529449,-0.800650060176849,0.243842989206314,0.0343636274337769,-0.969205558300018,0.174376010894775,0.0569445937871933,-0.983031034469604,0.148978143930435,0.0524243228137493,-0.987449765205383,0.243842989206314,0.0343636274337769,-0.969205558300018,0.185037270188332,-0.104624509811401,-0.97714626789093,0.174376010894775,0.0569445937871933,-0.983031034469604,0.300399273633957,-0.346344381570816,-0.888710141181946,0.317352145910263,-0.338530242443085,-0.8858243227005,0.179484590888023,-0.475493907928467,-0.861214637756348,0.247142925858498,-0.480599373579025,-0.841394364833832,0.179484590888023,-0.475493907928467,-0.861214637756348,0.317352145910263,-0.338530242443085,-0.8858243227005,0.152692213654518,-0.4775250852108,-0.865248382091522,0.135532602667809,-0.583601057529449,-0.800650060176849,0.247142925858498,-0.480599373579025,-0.841394364833832,0.27032345533371,-0.165014952421188,-0.948522627353668,0.270680695772171,-0.149580150842667,-0.950977206230164,0.243842989206314,0.0343636274337769,-0.969205558300018,0.27032345533371,-0.165014952421188,-0.948522627353668,0.301906436681747,-0.300343364477158,-0.904790699481964,\r\n0.270680695772171,-0.149580150842667,-0.950977206230164,0.30616706609726,-0.345672696828842,-0.887001693248749,0.300399273633957,-0.346344381570816,-0.888710141181946,0.301906436681747,-0.300343364477158,-0.904790699481964,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.148978143930435,0.0524243228137493,-0.987449765205383,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.189921692013741,0.0748946219682693,-0.978938460350037,0.416562587022781,0.0665255561470985,-0.906669616699219,0.280791252851486,-0.0434698425233364,-0.958783864974976,0.189921692013741,0.0748946219682693,-0.978938460350037,0.164265379309654,0.102102123200893,-0.98111766576767,0.126733064651489,0.0901472717523575,-0.987832009792328,0.250142753124237,0.118455670773983,-0.960935354232788,0.126733064651489,0.0901472717523575,-0.987832009792328,0.164265379309654,0.102102123200893,-0.98111766576767,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.416562587022781,0.0665255561470985,-0.906669616699219,0.43651008605957,-0.176880329847336,-0.882140696048737,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.442906260490417,-0.0844922959804535,-0.892577767372131,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.109108649194241,-0.0782552808523178,-0.990944683551788,0.295066863298416,0.0225954838097095,-0.955209374427795,0.118938446044922,-0.224728524684906,-0.96713525056839,0.277680784463882,-0.203016042709351,-0.938977003097534,0.303817391395569,-0.190586134791374,-0.933472990989685,0.257441401481628,-0.331933945417404,-0.907493054866791,0.24901095032692,-0.287741720676422,-0.924769282341003,0.257441401481628,-0.331933945417404,-0.907493054866791,0.219698071479797,-0.282016217708588,-0.933916211128235,0.303817391395569,-0.190586134791374,-0.933472990989685,0.277680784463882,-0.203016042709351,-0.938977003097534,0.273255467414856,0.0116297481581569,-0.961871027946472,\r\n0.1971605271101,-0.0840769410133362,-0.976759254932404,0.24901095032692,-0.287741720676422,-0.924769282341003,0.219698071479797,-0.282016217708588,-0.933916211128235,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.055801760405302,0.438394874334335,-0.897048473358154,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0165555197745562,0.519998371601105,-0.854006707668304,-0.0617020204663277,0.421302378177643,-0.904818832874298,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.203289449214935,0.687106251716614,-0.697537302970886,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.203289449214935,0.687106251716614,-0.697537302970886,-0.154093876481056,0.615286469459534,-0.773096024990082,0.0644592642784119,0.579304277896881,-0.812558531761169,-0.0585561767220497,0.592913091182709,-0.803134620189667,-0.158188968896866,0.655032992362976,-0.73885577917099,0.0644592642784119,0.579304277896881,-0.812558531761169,0.0165555197745562,0.519998371601105,-0.854006707668304,0.162710919976234,0.545769035816193,-0.821986138820648,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.0330772809684277,0.586258292198181,-0.809448540210724,-0.0976949036121368,0.619888067245483,-0.778584837913513,-0.0330772809684277,0.586258292198181,-0.809448540210724,-0.141215786337852,0.507035434246063,-0.850278198719025,0.0326701775193214,0.51486337184906,-0.856649398803711,-0.190784946084023,0.628465235233307,-0.754077255725861,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.0976949036121368,0.619888067245483,-0.778584837913513,0.113827288150787,0.46597158908844,-0.877447247505188,0.184381723403931,0.493020862340927,-0.850255072116852,0.0326701775193214,0.51486337184906,-0.856649398803711,0.107410214841366,0.460148304700851,-0.881320834159851,0.184381723403931,0.493020862340927,-0.850255072116852,0.113827288150787,0.46597158908844,-0.877447247505188,0.107410214841366,0.460148304700851,-0.881320834159851,\r\n-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.0490369684994221,0.366032779216766,-0.929309070110321,-0.103525370359421,0.469133138656616,-0.877038478851318,0.0809670984745026,0.690223693847656,-0.719051778316498,0.028319900855422,0.747097074985504,-0.664111256599426,0.0783103406429291,0.798951148986816,-0.596275448799133,0.125209182500839,0.576091349124908,-0.807738363742828,0.149256482720375,0.507818639278412,-0.848435401916504,0.077311635017395,0.623962104320526,-0.777620792388916,0.125209182500839,0.576091349124908,-0.807738363742828,0.077311635017395,0.623962104320526,-0.777620792388916,0.0809670984745026,0.690223693847656,-0.719051778316498,-0.0520661100745201,0.270327210426331,-0.961359560489655,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.0499275103211403,0.325404942035675,-0.944255650043488,-0.0520661100745201,0.270327210426331,-0.961359560489655,0.00891067180782557,0.246738001704216,-0.969041228294373,0.081113189458847,0.261198848485947,-0.961870968341827,0.0117416139692068,0.353190153837204,-0.93547785282135,0.081113189458847,0.261198848485947,-0.961870968341827,0.132264003157616,0.2801713347435,-0.950794458389282,0.132264003157616,0.2801713347435,-0.950794458389282,0.141405865550041,0.303388297557831,-0.942316174507141,0.0938742309808731,0.577090561389923,-0.811266899108887,0.150669768452644,0.868620932102203,-0.472012996673584,0.14184333384037,0.841224908828735,-0.521748006343842,0.051359448581934,0.86378675699234,-0.501232981681824,0.051359448581934,0.86378675699234,-0.501232981681824,0.14184333384037,0.841224908828735,-0.521748006343842,0.0783103406429291,0.798951148986816,-0.596275448799133,0.141405865550041,0.303388297557831,-0.942316174507141,0.146435469388962,0.166684910655022,-0.975075721740723,0.14376375079155,0.631109893321991,-0.762254595756531,0.0449777655303478,0.775016069412231,-0.630338728427887,0.14376375079155,0.631109893321991,-0.762254595756531,0.127315700054169,0.455343872308731,-0.881165444850922,\r\n0.041690893471241,0.912496328353882,-0.406954914331436,0.068872444331646,0.739230394363403,-0.669921517372131,0.145574554800987,0.894787490367889,-0.422093868255615,0.0449777655303478,0.775016069412231,-0.630338728427887,0.068872444331646,0.739230394363403,-0.669921517372131,0.041690893471241,0.912496328353882,-0.406954914331436,0.130615413188934,0.905993640422821,-0.402635097503662,0.145574554800987,0.894787490367889,-0.422093868255615,0.206630825996399,0.885350465774536,-0.416483044624329,0.130615413188934,0.905993640422821,-0.402635097503662,0.206630825996399,0.885350465774536,-0.416483044624329,0.150669768452644,0.868620932102203,-0.472012996673584,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.0526083260774612,-0.359533786773682,-0.931647837162018,0.0384762585163116,-0.425168365240097,-0.904296040534973,0.0526083260774612,-0.359533786773682,-0.931647837162018,0.145978778600693,-0.310242980718613,-0.939382433891296,0.0351591259241104,-0.332751035690308,-0.942359030246735,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.707461059093475,-0.697520315647125,-0.113860070705414,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.732737362384796,-0.67966103553772,-0.0340100862085819,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.807731986045837,-0.572676241397858,-0.140038445591927,\r\n-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.680112481117249,-0.365087151527405,-0.635734379291534,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.768902182579041,-0.0854398906230927,-0.633631825447083,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.81019252538681,-0.284150660037994,-0.512685418128967,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.785987198352814,-0.00913459062576294,-0.618175148963928,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.790190577507019,-0.0503391101956367,-0.610790193080902,-0.790190577507019,-0.0503391101956367,-0.610790193080902,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.661129117012024,0.173904687166214,-0.729839205741882,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.258421897888184,0.215101644396782,-0.941779851913452,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.24082750082016,0.20011867582798,-0.949712872505188,-0.311618268489838,0.227317720651627,-0.922616183757782,\r\n-0.359495788812637,0.172736093401909,-0.917019546031952,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.476696103811264,0.279724627733231,-0.833375573158264,-0.49924436211586,0.223975032567978,-0.837012588977814,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.476696103811264,0.279724627733231,-0.833375573158264,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.479574471712112,0.079840324819088,-0.873861372470856,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.181752011179924,0.254600763320923,-0.949812889099121,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.182185262441635,0.238073125481606,-0.954007148742676,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.465259581804276,0.167678162455559,-0.869147539138794,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.000542218796908855,0.447522521018982,-0.894272446632385,0.0998399928212166,0.442542552947998,-0.891172230243683,-0.0256708655506372,0.32865646481514,-0.944100499153137,0.104696698486805,0.46525052189827,-0.878965556621552,0.0998399928212166,0.442542552947998,-0.891172230243683,0.000166903089848347,0.474847018718719,-0.880068242549896,\r\n0.013543919660151,0.511228442192078,-0.859338045120239,-0.125513896346092,0.510312020778656,-0.850780665874481,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.00485835550352931,0.318666756153107,-0.947854340076447,-0.0160595346242189,0.282653510570526,-0.959087610244751,0.105422720313072,0.385569334030151,-0.916636347770691,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.00986569561064243,0.402109563350677,-0.915538311004639,0.0429381728172302,0.408539175987244,-0.911730170249939,0.104696698486805,0.46525052189827,-0.878965556621552,-0.00485835550352931,0.318666756153107,-0.947854340076447,0.0429381728172302,0.408539175987244,-0.911730170249939,-0.0699270665645599,0.332696467638016,-0.940437734127045,0.013543919660151,0.511228442192078,-0.859338045120239,-0.0899261832237244,0.545823335647583,-0.833060622215271,-0.125513896346092,0.510312020778656,-0.850780665874481,0.0899718105792999,0.689556300640106,-0.718621611595154,0.0464046820998192,0.593250930309296,-0.8036789894104,-0.0443988405168056,0.57828813791275,-0.814623415470123,0.000189732090802863,0.579126834869385,-0.815237402915955,-0.0443988405168056,0.57828813791275,-0.814623415470123,-0.0899261832237244,0.545823335647583,-0.833060622215271,0.0464046820998192,0.593250930309296,-0.8036789894104,0.0144402859732509,0.706797480583191,-0.707268416881561,0.0172331593930721,0.613473832607269,-0.789526879787445,0.0115436622872949,0.594660758972168,-0.803893804550171,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0172331593930721,0.613473832607269,-0.789526879787445,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.0256708655506372,0.32865646481514,-0.944100499153137,-0.153391793370247,0.185495108366013,-0.970598995685577,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.273185729980469,0.292153924703598,-0.916523575782776,0.311076670885086,0.245819509029388,-0.918043553829193,\r\n0.245772704482079,0.327036470174789,-0.912492632865906,0.21723809838295,0.234925359487534,-0.947426855564117,0.245772704482079,0.327036470174789,-0.912492632865906,0.259589105844498,0.379739314317703,-0.887925326824188,0.282828271389008,0.458768546581268,-0.842341661453247,0.259589105844498,0.379739314317703,-0.887925326824188,0.217794239521027,0.459868609905243,-0.860863745212555,0.282828271389008,0.458768546581268,-0.842341661453247,0.217794239521027,0.459868609905243,-0.860863745212555,0.149256482720375,0.507818639278412,-0.848435401916504,0.125209182500839,0.576091349124908,-0.807738363742828,0.21723809838295,0.234925359487534,-0.947426855564117,0.329387843608856,0.164050623774529,-0.929833829402924,0.311076670885086,0.245819509029388,-0.918043553829193,0.200206086039543,0.1592066437006,-0.96673196554184,0.276177227497101,0.139958202838898,-0.950861573219299,0.329387843608856,0.164050623774529,-0.929833829402924,0.253347367048264,0.0762910544872284,-0.964362323284149,0.250142753124237,0.118455670773983,-0.960935354232788,0.276177227497101,0.139958202838898,-0.950861573219299,0.152692213654518,-0.4775250852108,-0.865248382091522,0.0526083260774612,-0.359533786773682,-0.931647837162018,0.0842905640602112,-0.524884521961212,-0.846989512443542,0.243842989206314,0.0343636274337769,-0.969205558300018,0.148978143930435,0.0524243228137493,-0.987449765205383,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.30616706609726,-0.345672696828842,-0.887001693248749,0.317352145910263,-0.338530242443085,-0.8858243227005,0.300399273633957,-0.346344381570816,-0.888710141181946,0.243842989206314,0.0343636274337769,-0.969205558300018,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.27032345533371,-0.165014952421188,-0.948522627353668,0.27032345533371,-0.165014952421188,-0.948522627353668,0.238248690962791,-0.261111497879028,-0.935445487499237,0.301906436681747,-0.300343364477158,-0.904790699481964,0.238248690962791,-0.261111497879028,-0.935445487499237,0.30616706609726,-0.345672696828842,-0.887001693248749,0.301906436681747,-0.300343364477158,-0.904790699481964,\r\n0.256005078554153,-0.00341094797477126,-0.966669380664825,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.27166748046875,-0.23736771941185,-0.932659208774567,0.189921692013741,0.0748946219682693,-0.978938460350037,0.285416543483734,0.128252550959587,-0.949783444404602,0.416562587022781,0.0665255561470985,-0.906669616699219,0.285416543483734,0.128252550959587,-0.949783444404602,0.189921692013741,0.0748946219682693,-0.978938460350037,0.126733064651489,0.0901472717523575,-0.987832009792328,0.285416543483734,0.128252550959587,-0.949783444404602,0.126733064651489,0.0901472717523575,-0.987832009792328,0.250142753124237,0.118455670773983,-0.960935354232788,0.257441401481628,-0.331933945417404,-0.907493054866791,0.303817391395569,-0.190586134791374,-0.933472990989685,0.26255190372467,-0.235285311937332,-0.935792326927185,0.257441401481628,-0.331933945417404,-0.907493054866791,0.27166748046875,-0.23736771941185,-0.932659208774567,0.219698071479797,-0.282016217708588,-0.933916211128235,0.219698071479797,-0.282016217708588,-0.933916211128235,0.27166748046875,-0.23736771941185,-0.932659208774567,0.1971605271101,-0.0840769410133362,-0.976759254932404,0.0421671755611897,0.441522121429443,-0.896258890628815,0.0560904256999493,0.478363424539566,-0.876368761062622,0.0115436622872949,0.594660758972168,-0.803893804550171,0.162710919976234,0.545769035816193,-0.821986138820648,0.0165555197745562,0.519998371601105,-0.854006707668304,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.158188968896866,0.655032992362976,-0.73885577917099,-0.197384193539619,0.626472651958466,-0.754036664962769,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.203289449214935,0.687106251716614,-0.697537302970886,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.0585561767220497,0.592913091182709,-0.803134620189667,0.0644592642784119,0.579304277896881,-0.812558531761169,-0.158188968896866,0.655032992362976,-0.73885577917099,\r\n-0.0585561767220497,0.592913091182709,-0.803134620189667,-0.197384193539619,0.626472651958466,-0.754036664962769,0.162710919976234,0.545769035816193,-0.821986138820648,0.0947261080145836,0.629671037197113,-0.77106499671936,0.0644592642784119,0.579304277896881,-0.812558531761169,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.141215786337852,0.507035434246063,-0.850278198719025,-0.0330772809684277,0.586258292198181,-0.809448540210724,0.0326701775193214,0.51486337184906,-0.856649398803711,-0.141215786337852,0.507035434246063,-0.850278198719025,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.113827288150787,0.46597158908844,-0.877447247505188,0.0326701775193214,0.51486337184906,-0.856649398803711,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.107410214841366,0.460148304700851,-0.881320834159851,0.113827288150787,0.46597158908844,-0.877447247505188,0.0941384360194206,0.449193030595779,-0.888461291790009,0.107410214841366,0.460148304700851,-0.881320834159851,0.0941384360194206,0.449193030595779,-0.888461291790009,-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.191522747278214,0.501959383487701,-0.843419015407562,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.207767322659492,0.468985825777054,-0.858420014381409,0.0809670984745026,0.690223693847656,-0.719051778316498,0.0783103406429291,0.798951148986816,-0.596275448799133,0.193561151623726,0.654367566108704,-0.730983674526215,0.193561151623726,0.654367566108704,-0.730983674526215,0.125209182500839,0.576091349124908,-0.807738363742828,0.0809670984745026,0.690223693847656,-0.719051778316498,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.0499275103211403,0.325404942035675,-0.944255650043488,-0.0520661100745201,0.270327210426331,-0.961359560489655,-0.0499275103211403,0.325404942035675,-0.944255650043488,\r\n0.00891067180782557,0.246738001704216,-0.969041228294373,0.0836164504289627,0.212129175662994,-0.973657727241516,0.081113189458847,0.261198848485947,-0.961870968341827,0.00891067180782557,0.246738001704216,-0.969041228294373,0.132264003157616,0.2801713347435,-0.950794458389282,0.081113189458847,0.261198848485947,-0.961870968341827,0.0836164504289627,0.212129175662994,-0.973657727241516,0.0836164504289627,0.212129175662994,-0.973657727241516,0.141405865550041,0.303388297557831,-0.942316174507141,0.132264003157616,0.2801713347435,-0.950794458389282,0.14184333384037,0.841224908828735,-0.521748006343842,0.150669768452644,0.868620932102203,-0.472012996673584,0.17836457490921,0.830098927021027,-0.528319656848907,0.14184333384037,0.841224908828735,-0.521748006343842,0.177611023187637,0.79032039642334,-0.586385369300842,0.0783103406429291,0.798951148986816,-0.596275448799133,0.141405865550041,0.303388297557831,-0.942316174507141,0.047809362411499,0.140526458621025,-0.988921880722046,0.146435469388962,0.166684910655022,-0.975075721740723,0.127315700054169,0.455343872308731,-0.881165444850922,0.14376375079155,0.631109893321991,-0.762254595756531,0.146435469388962,0.166684910655022,-0.975075721740723,0.0822190269827843,0.34711366891861,-0.93421196937561,0.0449777655303478,0.775016069412231,-0.630338728427887,0.127315700054169,0.455343872308731,-0.881165444850922,0.068872444331646,0.739230394363403,-0.669921517372131,0.182423129677773,0.732101857662201,-0.656314313411713,0.145574554800987,0.894787490367889,-0.422093868255615,0.0449777655303478,0.775016069412231,-0.630338728427887,0.0822190269827843,0.34711366891861,-0.93421196937561,0.068872444331646,0.739230394363403,-0.669921517372131,0.145574554800987,0.894787490367889,-0.422093868255615,0.18874517083168,0.856211006641388,-0.480913549661636,0.206630825996399,0.885350465774536,-0.416483044624329,0.206630825996399,0.885350465774536,-0.416483044624329,0.17630472779274,0.862239241600037,-0.474826335906982,0.150669768452644,0.868620932102203,-0.472012996673584,0.0526083260774612,-0.359533786773682,-0.931647837162018,\r\n0.152692213654518,-0.4775250852108,-0.865248382091522,0.145978778600693,-0.310242980718613,-0.939382433891296,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.721313536167145,-0.648110806941986,-0.244251906871796,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.709980010986328,-0.648937225341797,-0.273512065410614,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.696937918663025,-0.500852227210999,-0.513249039649963,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.764569163322449,-0.547679662704468,-0.339824676513672,-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.714335501194,-0.350056111812592,-0.605958223342896,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.728525221347809,-0.341461420059204,-0.593847572803497,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.81019252538681,-0.284150660037994,-0.512685418128967,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.81019252538681,-0.284150660037994,-0.512685418128967,-0.805203318595886,-0.242186084389687,-0.541288733482361,\r\n-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.790190577507019,-0.0503391101956367,-0.610790193080902,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.729910314083099,0.0196501463651657,-0.683260321617126,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.374589622020721,0.281421601772308,-0.883450269699097,-0.316776245832443,0.27074271440506,-0.909038543701172,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.359495788812637,0.172736093401909,-0.917019546031952,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.476696103811264,0.279724627733231,-0.833375573158264,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.620463609695435,0.249555051326752,-0.743469595909119,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.626412272453308,0.258413285017014,-0.735411584377289,\r\n-0.442097932100296,0.211761683225632,-0.871611297130585,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.517184615135193,0.199350565671921,-0.832333624362946,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.273185729980469,0.292153924703598,-0.916523575782776,-0.202258467674255,0.196689873933792,-0.95937716960907,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.408066272735596,0.372742533683777,-0.833393514156342,-0.32205519080162,0.307143956422806,-0.895512640476227,0.000166903089848347,0.474847018718719,-0.880068242549896,0.0998399928212166,0.442542552947998,-0.891172230243683,-0.000542218796908855,0.447522521018982,-0.894272446632385,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.000542218796908855,0.447522521018982,-0.894272446632385,-0.0256708655506372,0.32865646481514,-0.944100499153137,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.00986569561064243,0.402109563350677,-0.915538311004639,0.104696698486805,0.46525052189827,-0.878965556621552,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.143232017755508,0.448651492595673,-0.88215434551239,0.013543919660151,0.511228442192078,-0.859338045120239,-0.00485835550352931,0.318666756153107,-0.947854340076447,-0.0699270665645599,0.332696467638016,-0.940437734127045,-0.0160595346242189,0.282653510570526,-0.959087610244751,0.0831344351172447,0.375404179096222,-0.923125267028809,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.0160595346242189,0.282653510570526,-0.959087610244751,-0.0203989129513502,0.434973776340485,-0.900211930274963,0.105422720313072,0.385569334030151,-0.916636347770691,0.143232017755508,0.448651492595673,-0.88215434551239,0.0831344351172447,0.375404179096222,-0.923125267028809,\r\n0.105422720313072,0.385569334030151,-0.916636347770691,0.00931580178439617,0.345167279243469,-0.938494920730591,-0.00986569561064243,0.402109563350677,-0.915538311004639,-0.0699270665645599,0.332696467638016,-0.940437734127045,0.0429381728172302,0.408539175987244,-0.911730170249939,0.013543919660151,0.511228442192078,-0.859338045120239,0.000189732090802863,0.579126834869385,-0.815237402915955,-0.0899261832237244,0.545823335647583,-0.833060622215271,0.0464046820998192,0.593250930309296,-0.8036789894104,0.0899718105792999,0.689556300640106,-0.718621611595154,0.0144402859732509,0.706797480583191,-0.707268416881561,0.0899718105792999,0.689556300640106,-0.718621611595154,-0.0443988405168056,0.57828813791275,-0.814623415470123,0.0609245635569096,0.627946496009827,-0.775868058204651,0.0609245635569096,0.627946496009827,-0.775868058204651,-0.0443988405168056,0.57828813791275,-0.814623415470123,0.000189732090802863,0.579126834869385,-0.815237402915955,0.0172331593930721,0.613473832607269,-0.789526879787445,0.0144402859732509,0.706797480583191,-0.707268416881561,0.0115436622872949,0.594660758972168,-0.803893804550171,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.0256708655506372,0.32865646481514,-0.944100499153137,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.273185729980469,0.292153924703598,-0.916523575782776,-0.275782346725464,0.37946355342865,-0.883148550987244,0.245772704482079,0.327036470174789,-0.912492632865906,0.172625318169594,0.2958764731884,-0.939498543739319,0.21723809838295,0.234925359487534,-0.947426855564117,0.199226588010788,0.412119477987289,-0.889081656932831,0.245772704482079,0.327036470174789,-0.912492632865906,0.282828271389008,0.458768546581268,-0.842341661453247,0.282828271389008,0.458768546581268,-0.842341661453247,0.217794239521027,0.459868609905243,-0.860863745212555,0.213938504457474,0.528550863265991,-0.821501135826111,0.217794239521027,0.459868609905243,-0.860863745212555,0.125209182500839,0.576091349124908,-0.807738363742828,\r\n0.213938504457474,0.528550863265991,-0.821501135826111,0.329387843608856,0.164050623774529,-0.929833829402924,0.21723809838295,0.234925359487534,-0.947426855564117,0.200206086039543,0.1592066437006,-0.96673196554184,0.200206086039543,0.1592066437006,-0.96673196554184,0.164219051599503,0.0938690081238747,-0.981947243213654,0.276177227497101,0.139958202838898,-0.950861573219299,0.164219051599503,0.0938690081238747,-0.981947243213654,0.253347367048264,0.0762910544872284,-0.964362323284149,0.276177227497101,0.139958202838898,-0.950861573219299,0.243842989206314,0.0343636274337769,-0.969205558300018,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.27032345533371,-0.165014952421188,-0.948522627353668,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.238248690962791,-0.261111497879028,-0.935445487499237,0.26255190372467,-0.235285311937332,-0.935792326927185,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.27166748046875,-0.23736771941185,-0.932659208774567,0.27166748046875,-0.23736771941185,-0.932659208774567,0.257441401481628,-0.331933945417404,-0.907493054866791,0.26255190372467,-0.235285311937332,-0.935792326927185,0.0115436622872949,0.594660758972168,-0.803893804550171,0.118106588721275,0.552553534507751,-0.825066804885864,0.0421671755611897,0.441522121429443,-0.896258890628815,0.118106588721275,0.552553534507751,-0.825066804885864,0.162710919976234,0.545769035816193,-0.821986138820648,0.0421671755611897,0.441522121429443,-0.896258890628815,-0.197384193539619,0.626472651958466,-0.754036664962769,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.0585561767220497,0.592913091182709,-0.803134620189667,\r\n-0.0061349319294095,0.594694137573242,-0.803928554058075,0.0644592642784119,0.579304277896881,-0.812558531761169,0.0947261080145836,0.629671037197113,-0.77106499671936,-0.0585561767220497,0.592913091182709,-0.803134620189667,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.197384193539619,0.626472651958466,-0.754036664962769,0.118106588721275,0.552553534507751,-0.825066804885864,0.0947261080145836,0.629671037197113,-0.77106499671936,0.162710919976234,0.545769035816193,-0.821986138820648,-0.154093876481056,0.615286469459534,-0.773096024990082,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.141215786337852,0.507035434246063,-0.850278198719025,-0.141215786337852,0.507035434246063,-0.850278198719025,-0.163795679807663,0.577560067176819,-0.799746930599213,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.100423559546471,0.472816050052643,-0.875419855117798,0.113827288150787,0.46597158908844,-0.877447247505188,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.0941384360194206,0.449193030595779,-0.888461291790009,0.113827288150787,0.46597158908844,-0.877447247505188,0.100423559546471,0.472816050052643,-0.875419855117798,0.168424054980278,0.489645481109619,-0.855500161647797,-0.0219970885664225,0.485970467329025,-0.87369829416275,0.0941384360194206,0.449193030595779,-0.888461291790009,-0.191522747278214,0.501959383487701,-0.843419015407562,-0.207767322659492,0.468985825777054,-0.858420014381409,-0.103525370359421,0.469133138656616,-0.877038478851318,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.191522747278214,0.501959383487701,-0.843419015407562,-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.134978428483009,0.393247842788696,-0.909470617771149,-0.207767322659492,0.468985825777054,-0.858420014381409,-0.177309766411781,0.391728729009628,-0.902834236621857,0.177611023187637,0.79032039642334,-0.586385369300842,0.193561151623726,0.654367566108704,-0.730983674526215,0.0783103406429291,0.798951148986816,-0.596275448799133,0.193561151623726,0.654367566108704,-0.730983674526215,\r\n0.213938504457474,0.528550863265991,-0.821501135826111,0.125209182500839,0.576091349124908,-0.807738363742828,-0.0499275103211403,0.325404942035675,-0.944255650043488,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.147074237465858,0.288875013589859,-0.946002244949341,0.00891067180782557,0.246738001704216,-0.969041228294373,-0.0499275103211403,0.325404942035675,-0.944255650043488,-0.147074237465858,0.288875013589859,-0.946002244949341,0.0836164504289627,0.212129175662994,-0.973657727241516,0.00891067180782557,0.246738001704216,-0.969041228294373,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0836164504289627,0.212129175662994,-0.973657727241516,0.047809362411499,0.140526458621025,-0.988921880722046,0.141405865550041,0.303388297557831,-0.942316174507141,0.17630472779274,0.862239241600037,-0.474826335906982,0.17836457490921,0.830098927021027,-0.528319656848907,0.150669768452644,0.868620932102203,-0.472012996673584,0.177611023187637,0.79032039642334,-0.586385369300842,0.14184333384037,0.841224908828735,-0.521748006343842,0.17836457490921,0.830098927021027,-0.528319656848907,0.047809362411499,0.140526458621025,-0.988921880722046,0.0944378674030304,0.10203941911459,-0.990287482738495,0.146435469388962,0.166684910655022,-0.975075721740723,0.0822190269827843,0.34711366891861,-0.93421196937561,0.127315700054169,0.455343872308731,-0.881165444850922,0.146435469388962,0.166684910655022,-0.975075721740723,0.068872444331646,0.739230394363403,-0.669921517372131,0.100923277437687,0.395509660243988,-0.912900030612946,0.182423129677773,0.732101857662201,-0.656314313411713,0.145574554800987,0.894787490367889,-0.422093868255615,0.182423129677773,0.732101857662201,-0.656314313411713,0.18874517083168,0.856211006641388,-0.480913549661636,0.0822190269827843,0.34711366891861,-0.93421196937561,0.0686880797147751,0.522159814834595,-0.850076973438263,0.068872444331646,0.739230394363403,-0.669921517372131,0.206630825996399,0.885350465774536,-0.416483044624329,0.18874517083168,0.856211006641388,-0.480913549661636,0.177875220775604,0.89197963476181,-0.415611118078232,\r\n0.206630825996399,0.885350465774536,-0.416483044624329,0.177875220775604,0.89197963476181,-0.415611118078232,0.17630472779274,0.862239241600037,-0.474826335906982,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.686670422554016,-0.670660972595215,-0.280530393123627,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.807731986045837,-0.572676241397858,-0.140038445591927,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.738112688064575,-0.345472067594528,-0.579515755176544,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.841010451316834,-0.418781876564026,-0.342524528503418,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.805203318595886,-0.242186084389687,-0.541288733482361,-0.81019252538681,-0.284150660037994,-0.512685418128967,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.818038702011108,-0.183057993650436,-0.545254349708557,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.820508658885956,-0.0288491025567055,-0.57090550661087,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.79373174905777,-0.0558961443603039,-0.605694115161896,\r\n-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.814932405948639,-0.177214056253433,-0.551797211170197,-0.805203318595886,-0.242186084389687,-0.541288733482361,-0.818038702011108,-0.183057993650436,-0.545254349708557,-0.79567152261734,-0.0332467146217823,-0.604815125465393,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.765288531780243,-0.0774822980165482,-0.639006972312927,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.38342347741127,0.296858817338943,-0.87456339597702,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.311618268489838,0.227317720651627,-0.922616183757782,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.567294359207153,0.28742989897728,-0.771725952625275,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.626412272453308,0.258413285017014,-0.735411584377289,\r\n-0.556669414043427,0.319189578294754,-0.766966104507446,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.249936982989311,0.290754944086075,-0.923576176166534,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.273185729980469,0.292153924703598,-0.916523575782776,-0.32205519080162,0.307143956422806,-0.895512640476227,-0.408066272735596,0.372742533683777,-0.833393514156342,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.408066272735596,0.372742533683777,-0.833393514156342,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.000542218796908855,0.447522521018982,-0.894272446632385,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.00986569561064243,0.402109563350677,-0.915538311004639,0.000166903089848347,0.474847018718719,-0.880068242549896,0.013543919660151,0.511228442192078,-0.859338045120239,0.143232017755508,0.448651492595673,-0.88215434551239,0.173985287547112,0.513520836830139,-0.840253114700317,-0.0522592402994633,0.363512814044952,-0.930122196674347,-0.0160595346242189,0.282653510570526,-0.959087610244751,-0.0699270665645599,0.332696467638016,-0.940437734127045,-0.0522592402994633,0.363512814044952,-0.930122196674347,0.0831344351172447,0.375404179096222,-0.923125267028809,-0.0160595346242189,0.282653510570526,-0.959087610244751,0.119144432246685,0.45666840672493,-0.881622612476349,0.143232017755508,0.448651492595673,-0.88215434551239,0.105422720313072,0.385569334030151,-0.916636347770691,\r\n0.119144432246685,0.45666840672493,-0.881622612476349,0.105422720313072,0.385569334030151,-0.916636347770691,0.0831344351172447,0.375404179096222,-0.923125267028809,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.0699270665645599,0.332696467638016,-0.940437734127045,-0.00986569561064243,0.402109563350677,-0.915538311004639,0.013543919660151,0.511228442192078,-0.859338045120239,0.173985287547112,0.513520836830139,-0.840253114700317,0.000189732090802863,0.579126834869385,-0.815237402915955,0.0144402859732509,0.706797480583191,-0.707268416881561,0.0899718105792999,0.689556300640106,-0.718621611595154,0.132480964064598,0.729244709014893,-0.671305298805237,0.126794546842575,0.669864535331726,-0.73157674074173,0.0899718105792999,0.689556300640106,-0.718621611595154,0.0609245635569096,0.627946496009827,-0.775868058204651,0.000189732090802863,0.579126834869385,-0.815237402915955,0.173985287547112,0.513520836830139,-0.840253114700317,0.0609245635569096,0.627946496009827,-0.775868058204651,0.00892639439553022,0.689608931541443,-0.724126875400543,0.0115436622872949,0.594660758972168,-0.803893804550171,0.0144402859732509,0.706797480583191,-0.707268416881561,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.179479107260704,0.308446735143662,-0.934156179428101,-0.1608776897192,0.404969990253448,-0.900065302848816,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.273185729980469,0.292153924703598,-0.916523575782776,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.1608776897192,0.404969990253448,-0.900065302848816,-0.179479107260704,0.308446735143662,-0.934156179428101,0.172625318169594,0.2958764731884,-0.939498543739319,0.245772704482079,0.327036470174789,-0.912492632865906,0.199226588010788,0.412119477987289,-0.889081656932831,0.204466566443443,0.191781029105186,-0.959902822971344,0.21723809838295,0.234925359487534,-0.947426855564117,0.172625318169594,0.2958764731884,-0.939498543739319,0.199226588010788,0.412119477987289,-0.889081656932831,\r\n0.282828271389008,0.458768546581268,-0.842341661453247,0.221735417842865,0.569914638996124,-0.791220843791962,0.193561151623726,0.654367566108704,-0.730983674526215,0.282828271389008,0.458768546581268,-0.842341661453247,0.213938504457474,0.528550863265991,-0.821501135826111,0.204466566443443,0.191781029105186,-0.959902822971344,0.200206086039543,0.1592066437006,-0.96673196554184,0.21723809838295,0.234925359487534,-0.947426855564117,0.204466566443443,0.191781029105186,-0.959902822971344,0.164219051599503,0.0938690081238747,-0.981947243213654,0.200206086039543,0.1592066437006,-0.96673196554184,0.164219051599503,0.0938690081238747,-0.981947243213654,0.239401906728745,0.0726002082228661,-0.968202352523804,0.253347367048264,0.0762910544872284,-0.964362323284149,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.256005078554153,-0.00341094797477126,-0.966669380664825,0.26255190372467,-0.235285311937332,-0.935792326927185,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.0947261080145836,0.629671037197113,-0.77106499671936,0.118106588721275,0.552553534507751,-0.825066804885864,0.0115436622872949,0.594660758972168,-0.803893804550171,-0.197384193539619,0.626472651958466,-0.754036664962769,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.231650456786156,0.651767194271088,-0.722175478935242,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.0185254402458668,0.662168383598328,-0.749125957489014,0.0947261080145836,0.629671037197113,-0.77106499671936,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.163795679807663,0.577560067176819,-0.799746930599213,-0.141215786337852,0.507035434246063,-0.850278198719025,\r\n-0.232771098613739,0.586548566818237,-0.775743663311005,-0.0545643195509911,0.47191846370697,-0.879952013492584,-0.163795679807663,0.577560067176819,-0.799746930599213,0.0191322211176157,0.621550977230072,-0.783139944076538,-0.0545643195509911,0.47191846370697,-0.879952013492584,0.0191322211176157,0.621550977230072,-0.783139944076538,0.100423559546471,0.472816050052643,-0.875419855117798,0.168424054980278,0.489645481109619,-0.855500161647797,0.0941384360194206,0.449193030595779,-0.888461291790009,0.100423559546471,0.472816050052643,-0.875419855117798,0.0765428468585014,0.52233225107193,-0.849299728870392,-0.0219970885664225,0.485970467329025,-0.87369829416275,0.168424054980278,0.489645481109619,-0.855500161647797,-0.207767322659492,0.468985825777054,-0.858420014381409,-0.191522747278214,0.501959383487701,-0.843419015407562,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.191522747278214,0.501959383487701,-0.843419015407562,0.0765428468585014,0.52233225107193,-0.849299728870392,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.0219970885664225,0.485970467329025,-0.87369829416275,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.207767322659492,0.468985825777054,-0.858420014381409,0.192640990018845,0.736088693141937,-0.648893475532532,0.193561151623726,0.654367566108704,-0.730983674526215,0.177611023187637,0.79032039642334,-0.586385369300842,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.242587357759476,0.410811275243759,-0.87885457277298,-0.147074237465858,0.288875013589859,-0.946002244949341,0.00891067180782557,0.246738001704216,-0.969041228294373,-0.147074237465858,0.288875013589859,-0.946002244949341,-0.11418167501688,0.255842745304108,-0.959951519966125,0.00891067180782557,0.246738001704216,-0.969041228294373,-0.11418167501688,0.255842745304108,-0.959951519966125,-0.00885651540011168,0.136994689702988,-0.990532159805298,\r\n0.0836164504289627,0.212129175662994,-0.973657727241516,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0352520309388638,0.116362802684307,-0.992580950260162,0.0836164504289627,0.212129175662994,-0.973657727241516,0.0352520309388638,0.116362802684307,-0.992580950260162,0.047809362411499,0.140526458621025,-0.988921880722046,0.202644973993301,0.81710410118103,-0.539699673652649,0.17836457490921,0.830098927021027,-0.528319656848907,0.17630472779274,0.862239241600037,-0.474826335906982,0.192640990018845,0.736088693141937,-0.648893475532532,0.177611023187637,0.79032039642334,-0.586385369300842,0.17836457490921,0.830098927021027,-0.528319656848907,0.091634601354599,0.121697753667831,-0.988328099250793,0.0944378674030304,0.10203941911459,-0.990287482738495,0.047809362411499,0.140526458621025,-0.988921880722046,0.146435469388962,0.166684910655022,-0.975075721740723,0.0944378674030304,0.10203941911459,-0.990287482738495,0.152076542377472,0.125689521431923,-0.980344176292419,0.0822190269827843,0.34711366891861,-0.93421196937561,0.146435469388962,0.166684910655022,-0.975075721740723,0.152076542377472,0.125689521431923,-0.980344176292419,0.100923277437687,0.395509660243988,-0.912900030612946,0.068872444331646,0.739230394363403,-0.669921517372131,0.0686880797147751,0.522159814834595,-0.850076973438263,0.100923277437687,0.395509660243988,-0.912900030612946,0.173349484801292,0.477961778640747,-0.86110532283783,0.182423129677773,0.732101857662201,-0.656314313411713,0.175961375236511,0.674975156784058,-0.716551423072815,0.18874517083168,0.856211006641388,-0.480913549661636,0.182423129677773,0.732101857662201,-0.656314313411713,0.100923277437687,0.395509660243988,-0.912900030612946,0.0686880797147751,0.522159814834595,-0.850076973438263,0.0822190269827843,0.34711366891861,-0.93421196937561,0.17630472779274,0.862239241600037,-0.474826335906982,0.177875220775604,0.89197963476181,-0.415611118078232,0.250257730484009,0.838468015193939,-0.484089136123657,-0.753858625888824,-0.645930826663971,-0.120292723178864,-0.693663775920868,-0.635250210762024,-0.339540213346481,\r\n-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.630820453166962,-0.675974369049072,-0.3809514939785,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.847623586654663,-0.5107461810112,-0.143779441714287,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.796301066875458,-0.355096608400345,-0.48970502614975,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.867249131202698,-0.427464753389359,-0.255250215530396,-0.777840971946716,-0.308122664690018,-0.547744274139404,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.769528567790985,-0.325080960988998,-0.549679934978485,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.805203318595886,-0.242186084389687,-0.541288733482361,-0.818038702011108,-0.183057993650436,-0.545254349708557,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.829710245132446,-0.105257369577885,-0.548180282115936,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.818038702011108,-0.183057993650436,-0.545254349708557,-0.805203318595886,-0.242186084389687,-0.541288733482361,\r\n-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.727667272090912,-0.0976634845137596,-0.678941786289215,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.725067019462585,0.0398560464382172,-0.687523901462555,-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.775044560432434,0.181498140096664,-0.605280339717865,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.703299880027771,0.218025088310242,-0.676634550094604,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.689162313938141,0.254996597766876,-0.678256452083588,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.442097932100296,0.211761683225632,-0.871611297130585,-0.399067163467407,0.263866394758224,-0.878134250640869,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.547768294811249,0.35235008597374,-0.758814334869385,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.547768294811249,0.35235008597374,-0.758814334869385,-0.570963501930237,0.311317831277847,-0.759658932685852,-0.702823102474213,0.188360124826431,-0.685973763465881,\r\n-0.683735251426697,0.210387542843819,-0.698743879795074,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.475117683410645,0.360979676246643,-0.80246913433075,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.488095015287399,0.365400373935699,-0.792619526386261,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.408066272735596,0.372742533683777,-0.833393514156342,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.408066272735596,0.372742533683777,-0.833393514156342,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.108760438859463,0.505052745342255,-0.856208324432373,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.10098260641098,0.464570611715317,-0.87975937128067,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.113893084228039,0.537850737571716,-0.8353111743927,0.173985287547112,0.513520836830139,-0.840253114700317,0.143232017755508,0.448651492595673,-0.88215434551239,0.144328445196152,0.511066496372223,-0.847337126731873,-0.0699270665645599,0.332696467638016,-0.940437734127045,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.0522592402994633,0.363512814044952,-0.930122196674347,-0.0522592402994633,0.363512814044952,-0.930122196674347,-0.0118128536269069,0.475162535905838,-0.879818677902222,0.0831344351172447,0.375404179096222,-0.923125267028809,0.119144432246685,0.45666840672493,-0.881622612476349,0.144328445196152,0.511066496372223,-0.847337126731873,0.143232017755508,0.448651492595673,-0.88215434551239,-0.0118128536269069,0.475162535905838,-0.879818677902222,0.119144432246685,0.45666840672493,-0.881622612476349,\r\n0.0831344351172447,0.375404179096222,-0.923125267028809,0.196437999606133,0.68328070640564,-0.703234970569611,0.132480964064598,0.729244709014893,-0.671305298805237,0.0899718105792999,0.689556300640106,-0.718621611595154,0.0963072404265404,0.753993153572083,-0.649783909320831,0.0144402859732509,0.706797480583191,-0.707268416881561,0.132480964064598,0.729244709014893,-0.671305298805237,0.126794546842575,0.669864535331726,-0.73157674074173,0.196437999606133,0.68328070640564,-0.703234970569611,0.0899718105792999,0.689556300640106,-0.718621611595154,0.126794546842575,0.669864535331726,-0.73157674074173,0.0609245635569096,0.627946496009827,-0.775868058204651,0.213268578052521,0.573152780532837,-0.79120934009552,0.0609245635569096,0.627946496009827,-0.775868058204651,0.173985287547112,0.513520836830139,-0.840253114700317,0.213268578052521,0.573152780532837,-0.79120934009552,0.0115436622872949,0.594660758972168,-0.803893804550171,0.00892639439553022,0.689608931541443,-0.724126875400543,0.0947261080145836,0.629671037197113,-0.77106499671936,0.00892639439553022,0.689608931541443,-0.724126875400543,0.0144402859732509,0.706797480583191,-0.707268416881561,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.140308171510696,0.475975513458252,-0.868193984031677,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.1608776897192,0.404969990253448,-0.900065302848816,-0.328802525997162,0.341832786798477,-0.8803631067276,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.1608776897192,0.404969990253448,-0.900065302848816,0.254775822162628,0.423622101545334,-0.869271814823151,0.172625318169594,0.2958764731884,-0.939498543739319,0.199226588010788,0.412119477987289,-0.889081656932831,0.36321285367012,0.328751146793365,-0.871779203414917,0.204466566443443,0.191781029105186,-0.959902822971344,0.172625318169594,0.2958764731884,-0.939498543739319,0.193561151623726,0.654367566108704,-0.730983674526215,\r\n0.221735417842865,0.569914638996124,-0.791220843791962,0.282828271389008,0.458768546581268,-0.842341661453247,0.221735417842865,0.569914638996124,-0.791220843791962,0.20548190176487,0.578993797302246,-0.789014160633087,0.199226588010788,0.412119477987289,-0.889081656932831,0.164219051599503,0.0938690081238747,-0.981947243213654,0.204466566443443,0.191781029105186,-0.959902822971344,0.239401906728745,0.0726002082228661,-0.968202352523804,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.0061349319294095,0.594694137573242,-0.803928554058075,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.0237952452152967,0.676969587802887,-0.73562616109848,0.0947261080145836,0.629671037197113,-0.77106499671936,0.00892639439553022,0.689608931541443,-0.724126875400543,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.163795679807663,0.577560067176819,-0.799746930599213,-0.232771098613739,0.586548566818237,-0.775743663311005,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.10848131030798,0.704144060611725,-0.70172131061554,0.0191322211176157,0.621550977230072,-0.783139944076538,-0.163795679807663,0.577560067176819,-0.799746930599213,0.100423559546471,0.472816050052643,-0.875419855117798,0.0191322211176157,0.621550977230072,-0.783139944076538,0.187496498227119,0.582322239875793,-0.791040897369385,0.187496498227119,0.582322239875793,-0.791040897369385,0.168424054980278,0.489645481109619,-0.855500161647797,0.100423559546471,0.472816050052643,-0.875419855117798,0.0765428468585014,0.52233225107193,-0.849299728870392,0.168424054980278,0.489645481109619,-0.855500161647797,\r\n0.123859591782093,0.561368584632874,-0.818244516849518,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.207767322659492,0.468985825777054,-0.858420014381409,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.153365835547447,0.59484875202179,-0.789071500301361,0.0765428468585014,0.52233225107193,-0.849299728870392,0.123859591782093,0.561368584632874,-0.818244516849518,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.177309766411781,0.391728729009628,-0.902834236621857,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.242587357759476,0.410811275243759,-0.87885457277298,0.193561151623726,0.654367566108704,-0.730983674526215,0.192640990018845,0.736088693141937,-0.648893475532532,0.221735417842865,0.569914638996124,-0.791220843791962,-0.11418167501688,0.255842745304108,-0.959951519966125,-0.147074237465858,0.288875013589859,-0.946002244949341,-0.242587357759476,0.410811275243759,-0.87885457277298,-0.11418167501688,0.255842745304108,-0.959951519966125,0.0113578243181109,0.244866386055946,-0.969490230083466,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0352520309388638,0.116362802684307,-0.992580950260162,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.091634601354599,0.121697753667831,-0.988328099250793,0.047809362411499,0.140526458621025,-0.988921880722046,0.0352520309388638,0.116362802684307,-0.992580950260162,0.202644973993301,0.81710410118103,-0.539699673652649,0.192640990018845,0.736088693141937,-0.648893475532532,0.17836457490921,0.830098927021027,-0.528319656848907,0.17630472779274,0.862239241600037,-0.474826335906982,0.250257730484009,0.838468015193939,-0.484089136123657,0.202644973993301,0.81710410118103,-0.539699673652649,0.0944378674030304,0.10203941911459,-0.990287482738495,0.091634601354599,0.121697753667831,-0.988328099250793,0.152076542377472,0.125689521431923,-0.980344176292419,0.152076542377472,0.125689521431923,-0.980344176292419,\r\n0.156739458441734,0.188722044229507,-0.969441413879395,0.0822190269827843,0.34711366891861,-0.93421196937561,0.100923277437687,0.395509660243988,-0.912900030612946,0.146451845765114,0.234289839863777,-0.961072325706482,0.173349484801292,0.477961778640747,-0.86110532283783,0.175961375236511,0.674975156784058,-0.716551423072815,0.182423129677773,0.732101857662201,-0.656314313411713,0.173349484801292,0.477961778640747,-0.86110532283783,0.156739458441734,0.188722044229507,-0.969441413879395,0.100923277437687,0.395509660243988,-0.912900030612946,0.0822190269827843,0.34711366891861,-0.93421196937561,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.693663775920868,-0.635250210762024,-0.339540213346481,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.870096385478973,-0.304673939943314,-0.387435078620911,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.805203318595886,-0.242186084389687,-0.541288733482361,-0.79373174905777,-0.0558961443603039,-0.605694115161896,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.712943255901337,-0.142153367400169,-0.686661601066589,\r\n-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.695921719074249,-0.0971602499485016,-0.711514353752136,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.775044560432434,0.181498140096664,-0.605280339717865,-0.775044560432434,0.181498140096664,-0.605280339717865,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.746069014072418,0.192800581455231,-0.637345135211945,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.718827784061432,0.25707334280014,-0.645910024642944,-0.704219877719879,0.169435188174248,-0.68946784734726,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.421706914901733,0.319080859422684,-0.848734676837921,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.477742105722427,0.331003367900848,-0.813756227493286,-0.547768294811249,0.35235008597374,-0.758814334869385,-0.626412272453308,0.258413285017014,-0.735411584377289,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.629925072193146,0.284901201725006,-0.722513318061829,\r\n-0.556669414043427,0.319189578294754,-0.766966104507446,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.547768294811249,0.35235008597374,-0.758814334869385,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.194652527570724,0.328888565301895,-0.924090147018433,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.499605894088745,0.390831291675568,-0.773074865341187,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.108760438859463,0.505052745342255,-0.856208324432373,-0.090704120695591,0.432263106107712,-0.897174060344696,-0.140308171510696,0.475975513458252,-0.868193984031677,0.000166903089848347,0.474847018718719,-0.880068242549896,-0.108760438859463,0.505052745342255,-0.856208324432373,-0.113893084228039,0.537850737571716,-0.8353111743927,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.113893084228039,0.537850737571716,-0.8353111743927,-0.181970506906509,0.574167251586914,-0.798259675502777,0.144328445196152,0.511066496372223,-0.847337126731873,0.192460641264915,0.518997192382813,-0.832826912403107,0.173985287547112,0.513520836830139,-0.840253114700317,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.0118128536269069,0.475162535905838,-0.879818677902222,-0.0522592402994633,0.363512814044952,-0.930122196674347,0.030130036175251,0.555299043655396,-0.831104695796967,\r\n0.144328445196152,0.511066496372223,-0.847337126731873,0.119144432246685,0.45666840672493,-0.881622612476349,-0.0118128536269069,0.475162535905838,-0.879818677902222,0.030130036175251,0.555299043655396,-0.831104695796967,0.119144432246685,0.45666840672493,-0.881622612476349,0.196437999606133,0.68328070640564,-0.703234970569611,0.0963072404265404,0.753993153572083,-0.649783909320831,0.132480964064598,0.729244709014893,-0.671305298805237,0.0963072404265404,0.753993153572083,-0.649783909320831,-0.0472328327596188,0.752724230289459,-0.656639277935028,0.0144402859732509,0.706797480583191,-0.707268416881561,0.126794546842575,0.669864535331726,-0.73157674074173,0.213268578052521,0.573152780532837,-0.79120934009552,0.196437999606133,0.68328070640564,-0.703234970569611,0.234946221113205,0.526634216308594,-0.816980123519897,0.213268578052521,0.573152780532837,-0.79120934009552,0.173985287547112,0.513520836830139,-0.840253114700317,0.0144402859732509,0.706797480583191,-0.707268416881561,-0.0472328327596188,0.752724230289459,-0.656639277935028,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.00577066466212273,0.697141826152802,-0.716909885406494,0.00892639439553022,0.689608931541443,-0.724126875400543,-0.140308171510696,0.475975513458252,-0.868193984031677,-0.1608776897192,0.404969990253448,-0.900065302848816,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.284984797239304,0.451306611299515,-0.84563934803009,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.275782346725464,0.37946355342865,-0.883148550987244,0.36321285367012,0.328751146793365,-0.871779203414917,0.172625318169594,0.2958764731884,-0.939498543739319,0.254775822162628,0.423622101545334,-0.869271814823151,0.20548190176487,0.578993797302246,-0.789014160633087,0.254775822162628,0.423622101545334,-0.869271814823151,0.199226588010788,0.412119477987289,-0.889081656932831,\r\n0.221735417842865,0.569914638996124,-0.791220843791962,0.192640990018845,0.736088693141937,-0.648893475532532,0.20548190176487,0.578993797302246,-0.789014160633087,-0.0237952452152967,0.676969587802887,-0.73562616109848,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.102209933102131,0.619033217430115,-0.778685331344604,-0.227369546890259,0.642778098583221,-0.731532096862793,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.0185254402458668,0.662168383598328,-0.749125957489014,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.0237952452152967,0.676969587802887,-0.73562616109848,-0.10848131030798,0.704144060611725,-0.70172131061554,-0.163795679807663,0.577560067176819,-0.799746930599213,-0.222060516476631,0.692457497119904,-0.686433970928192,0.0191322211176157,0.621550977230072,-0.783139944076538,-0.10848131030798,0.704144060611725,-0.70172131061554,-0.0526753850281239,0.69577556848526,-0.716324985027313,0.0191322211176157,0.621550977230072,-0.783139944076538,0.0878538638353348,0.624370157718658,-0.776172339916229,0.187496498227119,0.582322239875793,-0.791040897369385,0.187496498227119,0.582322239875793,-0.791040897369385,0.123859591782093,0.561368584632874,-0.818244516849518,0.168424054980278,0.489645481109619,-0.855500161647797,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.0551715046167374,0.535344898700714,-0.842829644680023,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.104390777647495,0.543756425380707,-0.832725286483765,-0.261485397815704,0.5299391746521,-0.806715369224548,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.0551715046167374,0.535344898700714,-0.842829644680023,\r\n-0.104390777647495,0.543756425380707,-0.832725286483765,0.123859591782093,0.561368584632874,-0.818244516849518,-0.242587357759476,0.410811275243759,-0.87885457277298,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.175064921379089,0.538675963878632,-0.824123978614807,-0.242587357759476,0.410811275243759,-0.87885457277298,-0.135333344340324,0.410462290048599,-0.901779055595398,-0.11418167501688,0.255842745304108,-0.959951519966125,-0.11418167501688,0.255842745304108,-0.959951519966125,-0.135333344340324,0.410462290048599,-0.901779055595398,0.0113578243181109,0.244866386055946,-0.969490230083466,-0.00885651540011168,0.136994689702988,-0.990532159805298,0.0113578243181109,0.244866386055946,-0.969490230083466,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.0352520309388638,0.116362802684307,-0.992580950260162,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.091634601354599,0.121697753667831,-0.988328099250793,0.192640990018845,0.736088693141937,-0.648893475532532,0.202644973993301,0.81710410118103,-0.539699673652649,0.240720227360725,0.718276262283325,-0.652788519859314,0.202644973993301,0.81710410118103,-0.539699673652649,0.250257730484009,0.838468015193939,-0.484089136123657,0.340025782585144,0.744259536266327,-0.574856638908386,0.152076542377472,0.125689521431923,-0.980344176292419,0.091634601354599,0.121697753667831,-0.988328099250793,0.197514608502388,0.178280025720596,-0.963952362537384,0.197514608502388,0.178280025720596,-0.963952362537384,0.156739458441734,0.188722044229507,-0.969441413879395,0.152076542377472,0.125689521431923,-0.980344176292419,0.100923277437687,0.395509660243988,-0.912900030612946,0.156739458441734,0.188722044229507,-0.969441413879395,0.146451845765114,0.234289839863777,-0.961072325706482,-0.798101961612701,-0.544626832008362,-0.257710516452789,-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.690311074256897,-0.606592953205109,-0.394354432821274,-0.789113402366638,-0.492156267166138,-0.367535203695297,\r\n-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.883689761161804,-0.36662220954895,-0.290999174118042,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.82432222366333,-0.31792277097702,-0.468420684337616,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.75252091884613,-0.294357568025589,-0.589122891426086,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.763284504413605,-0.169174134731293,-0.623519718647003,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.712943255901337,-0.142153367400169,-0.686661601066589,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.738291025161743,0.0475987456738949,-0.672800540924072,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.775044560432434,0.181498140096664,-0.605280339717865,\r\n-0.775044560432434,0.181498140096664,-0.605280339717865,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.735735058784485,0.0877425745129585,-0.671561598777771,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.704219877719879,0.169435188174248,-0.68946784734726,-0.703520119190216,0.243869692087173,-0.66752302646637,-0.704219877719879,0.169435188174248,-0.68946784734726,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.702823102474213,0.188360124826431,-0.685973763465881,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.435689777135849,0.359636515378952,-0.825127780437469,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.556669414043427,0.319189578294754,-0.766966104507446,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.433912724256516,0.322796761989594,-0.841143190860748,\r\n-0.409879148006439,0.366364985704422,-0.835329711437225,-0.194652527570724,0.328888565301895,-0.924090147018433,-0.411911010742188,0.332760065793991,-0.848292350769043,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.194652527570724,0.328888565301895,-0.924090147018433,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.409879148006439,0.366364985704422,-0.835329711437225,-0.512341499328613,0.352308183908463,-0.783188939094543,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.108760438859463,0.505052745342255,-0.856208324432373,-0.140308171510696,0.475975513458252,-0.868193984031677,-0.189015328884125,0.52315354347229,-0.831013560295105,-0.108760438859463,0.505052745342255,-0.856208324432373,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.113893084228039,0.537850737571716,-0.8353111743927,-0.113893084228039,0.537850737571716,-0.8353111743927,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.181970506906509,0.574167251586914,-0.798259675502777,0.144328445196152,0.511066496372223,-0.847337126731873,0.111001014709473,0.553773403167725,-0.825235486030579,0.192460641264915,0.518997192382813,-0.832826912403107,0.234946221113205,0.526634216308594,-0.816980123519897,0.173985287547112,0.513520836830139,-0.840253114700317,0.192460641264915,0.518997192382813,-0.832826912403107,-0.065565437078476,0.536236345767975,-0.841517508029938,-0.0118128536269069,0.475162535905838,-0.879818677902222,-0.10098260641098,0.464570611715317,-0.87975937128067,0.030130036175251,0.555299043655396,-0.831104695796967,0.0357764810323715,0.597838580608368,-0.800817728042603,\r\n0.144328445196152,0.511066496372223,-0.847337126731873,-0.065565437078476,0.536236345767975,-0.841517508029938,0.030130036175251,0.555299043655396,-0.831104695796967,-0.0118128536269069,0.475162535905838,-0.879818677902222,0.0963072404265404,0.753993153572083,-0.649783909320831,0.196437999606133,0.68328070640564,-0.703234970569611,0.257662415504456,0.683752119541168,-0.682709991931915,-0.0472328327596188,0.752724230289459,-0.656639277935028,0.0963072404265404,0.753993153572083,-0.649783909320831,0.0175048280507326,0.783534646034241,-0.621101319789886,0.213268578052521,0.573152780532837,-0.79120934009552,0.318044990301132,0.587348818778992,-0.744223475456238,0.196437999606133,0.68328070640564,-0.703234970569611,0.302150517702103,0.528000295162201,-0.793675363063812,0.213268578052521,0.573152780532837,-0.79120934009552,0.234946221113205,0.526634216308594,-0.816980123519897,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.0472328327596188,0.752724230289459,-0.656639277935028,-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.189015328884125,0.52315354347229,-0.831013560295105,-0.140308171510696,0.475975513458252,-0.868193984031677,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.400920838117599,0.353004425764084,-0.845369875431061,-0.284984797239304,0.451306611299515,-0.84563934803009,-0.275782346725464,0.37946355342865,-0.883148550987244,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.284984797239304,0.451306611299515,-0.84563934803009,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.199861660599709,0.482755899429321,-0.852644085884094,0.36321285367012,0.328751146793365,-0.871779203414917,0.254775822162628,0.423622101545334,-0.869271814823151,0.419792085886002,0.448674082756042,-0.788965165615082,\r\n0.254775822162628,0.423622101545334,-0.869271814823151,0.20548190176487,0.578993797302246,-0.789014160633087,0.367902219295502,0.592130362987518,-0.716958463191986,0.192640990018845,0.736088693141937,-0.648893475532532,0.240720227360725,0.718276262283325,-0.652788519859314,0.20548190176487,0.578993797302246,-0.789014160633087,-0.000924502848647535,0.733806788921356,-0.679357469081879,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.0237952452152967,0.676969587802887,-0.73562616109848,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.0496615245938301,0.735869526863098,-0.675299644470215,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.00577066466212273,0.697141826152802,-0.716909885406494,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.0496615245938301,0.735869526863098,-0.675299644470215,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.0185254402458668,0.662168383598328,-0.749125957489014,-0.000924502848647535,0.733806788921356,-0.679357469081879,-0.0237952452152967,0.676969587802887,-0.73562616109848,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.10848131030798,0.704144060611725,-0.70172131061554,-0.222060516476631,0.692457497119904,-0.686433970928192,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.10848131030798,0.704144060611725,-0.70172131061554,0.0191322211176157,0.621550977230072,-0.783139944076538,-0.0526753850281239,0.69577556848526,-0.716324985027313,0.0878538638353348,0.624370157718658,-0.776172339916229,0.123859591782093,0.561368584632874,-0.818244516849518,0.187496498227119,0.582322239875793,-0.791040897369385,0.0878538638353348,0.624370157718658,-0.776172339916229,-0.252743899822235,0.617192327976227,-0.745113432407379,\r\n-0.283706665039063,0.496326565742493,-0.820469558238983,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.0551715046167374,0.535344898700714,-0.842829644680023,-0.054433673620224,0.509739279747009,-0.858604967594147,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.153365835547447,0.59484875202179,-0.789071500301361,0.123859591782093,0.561368584632874,-0.818244516849518,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.0551715046167374,0.535344898700714,-0.842829644680023,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.175064921379089,0.538675963878632,-0.824123978614807,-0.283706665039063,0.496326565742493,-0.820469558238983,-0.175064921379089,0.538675963878632,-0.824123978614807,-0.135333344340324,0.410462290048599,-0.901779055595398,-0.242587357759476,0.410811275243759,-0.87885457277298,0.0162067245692015,0.455644339323044,-0.890014290809631,0.0113578243181109,0.244866386055946,-0.969490230083466,-0.135333344340324,0.410462290048599,-0.901779055595398,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.0113578243181109,0.244866386055946,-0.969490230083466,0.169387087225914,0.176924243569374,-0.969538927078247,0.0342131070792675,0.0798976495862007,-0.99621570110321,0.169387087225914,0.176924243569374,-0.969538927078247,0.091634601354599,0.121697753667831,-0.988328099250793,0.202644973993301,0.81710410118103,-0.539699673652649,0.340025782585144,0.744259536266327,-0.574856638908386,0.240720227360725,0.718276262283325,-0.652788519859314,0.169387087225914,0.176924243569374,-0.969538927078247,0.197514608502388,0.178280025720596,-0.963952362537384,0.091634601354599,0.121697753667831,-0.988328099250793,0.197514608502388,0.178280025720596,-0.963952362537384,0.238100737333298,0.299225687980652,-0.923997819423676,0.156739458441734,0.188722044229507,-0.969441413879395,-0.7420454621315,-0.538324415683746,-0.399468600749969,-0.789113402366638,-0.492156267166138,-0.367535203695297,\r\n-0.846559703350067,-0.388193577528,-0.364200919866562,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.880413830280304,-0.283951222896576,-0.379793494939804,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.756942629814148,-0.370904088020325,-0.538022041320801,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.725561141967773,-0.137823164463043,-0.674214839935303,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.68532931804657,-0.15769462287426,-0.710954248905182,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.779447257518768,0.108426921069622,-0.617013335227966,-0.757837653160095,0.184449255466461,-0.625827670097351,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.735735058784485,0.0877425745129585,-0.671561598777771,-0.757837653160095,0.184449255466461,-0.625827670097351,\r\n-0.735735058784485,0.0877425745129585,-0.671561598777771,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.704219877719879,0.169435188174248,-0.68946784734726,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.425890266895294,0.357384622097015,-0.831200063228607,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.683735251426697,0.210387542843819,-0.698743879795074,-0.629925072193146,0.284901201725006,-0.722513318061829,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.492968916893005,0.356569766998291,-0.793624341487885,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.503917336463928,0.303893655538559,-0.808526933193207,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.500807702541351,0.31035840511322,-0.808003187179565,-0.108760438859463,0.505052745342255,-0.856208324432373,\r\n-0.189015328884125,0.52315354347229,-0.831013560295105,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.065565437078476,0.536236345767975,-0.841517508029938,-0.10098260641098,0.464570611715317,-0.87975937128067,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.184655800461769,0.601204574108124,-0.77746719121933,0.111001014709473,0.553773403167725,-0.825235486030579,0.144328445196152,0.511066496372223,-0.847337126731873,0.0357764810323715,0.597838580608368,-0.800817728042603,0.111001014709473,0.553773403167725,-0.825235486030579,0.12888665497303,0.583809554576874,-0.801595032215118,0.192460641264915,0.518997192382813,-0.832826912403107,0.192460641264915,0.518997192382813,-0.832826912403107,0.12888665497303,0.583809554576874,-0.801595032215118,0.234946221113205,0.526634216308594,-0.816980123519897,-0.0795047655701637,0.609339356422424,-0.788913488388062,0.0357764810323715,0.597838580608368,-0.800817728042603,0.030130036175251,0.555299043655396,-0.831104695796967,-0.0795047655701637,0.609339356422424,-0.788913488388062,0.030130036175251,0.555299043655396,-0.831104695796967,-0.065565437078476,0.536236345767975,-0.841517508029938,0.196437999606133,0.68328070640564,-0.703234970569611,0.318044990301132,0.587348818778992,-0.744223475456238,0.257662415504456,0.683752119541168,-0.682709991931915,0.0963072404265404,0.753993153572083,-0.649783909320831,0.0123489005491138,0.809582471847534,-0.586876213550568,0.0175048280507326,0.783534646034241,-0.621101319789886,-0.0472328327596188,0.752724230289459,-0.656639277935028,0.0175048280507326,0.783534646034241,-0.621101319789886,-0.0236832834780216,0.788905739784241,-0.614057540893555,0.302150517702103,0.528000295162201,-0.793675363063812,0.318044990301132,0.587348818778992,-0.744223475456238,\r\n0.213268578052521,0.573152780532837,-0.79120934009552,-0.028890173882246,0.73968517780304,-0.672332525253296,-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.255412578582764,0.549964010715485,-0.795175433158875,-0.189015328884125,0.52315354347229,-0.831013560295105,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.284984797239304,0.451306611299515,-0.84563934803009,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.199861660599709,0.482755899429321,-0.852644085884094,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.255412578582764,0.549964010715485,-0.795175433158875,0.367902219295502,0.592130362987518,-0.716958463191986,0.419792085886002,0.448674082756042,-0.788965165615082,0.254775822162628,0.423622101545334,-0.869271814823151,0.20548190176487,0.578993797302246,-0.789014160633087,0.240720227360725,0.718276262283325,-0.652788519859314,0.367902219295502,0.592130362987518,-0.716958463191986,-0.000924502848647535,0.733806788921356,-0.679357469081879,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.153938114643097,0.730575084686279,-0.665254056453705,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0496615245938301,0.735869526863098,-0.675299644470215,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.0496615245938301,0.735869526863098,-0.675299644470215,-0.0136970579624176,0.766302108764648,-0.642334222793579,0.0319755971431732,0.700545907020569,-0.71289050579071,\r\n-0.182037860155106,0.763865947723389,-0.619169473648071,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.185352727770805,0.759799838066101,-0.623176038265228,0.0878538638353348,0.624370157718658,-0.776172339916229,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.0410168468952179,0.590993106365204,-0.805633068084717,0.123859591782093,0.561368584632874,-0.818244516849518,0.0878538638353348,0.624370157718658,-0.776172339916229,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.299798876047134,0.576254665851593,-0.760296761989594,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.054433673620224,0.509739279747009,-0.858604967594147,-0.0551715046167374,0.535344898700714,-0.842829644680023,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.054433673620224,0.509739279747009,-0.858604967594147,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.053034245967865,0.658267021179199,-0.750913918018341,-0.175064921379089,0.538675963878632,-0.824123978614807,0.0162067245692015,0.455644339323044,-0.890014290809631,-0.135333344340324,0.410462290048599,-0.901779055595398,-0.175064921379089,0.538675963878632,-0.824123978614807,0.205736085772514,0.398208141326904,-0.893925487995148,0.0113578243181109,0.244866386055946,-0.969490230083466,0.0162067245692015,0.455644339323044,-0.890014290809631,0.0113578243181109,0.244866386055946,-0.969490230083466,0.205736085772514,0.398208141326904,-0.893925487995148,0.169387087225914,0.176924243569374,-0.969538927078247,0.240720227360725,0.718276262283325,-0.652788519859314,0.340025782585144,0.744259536266327,-0.574856638908386,0.367902219295502,0.592130362987518,-0.716958463191986,0.310127109289169,0.297833174467087,-0.902837991714478,\r\n0.197514608502388,0.178280025720596,-0.963952362537384,0.169387087225914,0.176924243569374,-0.969538927078247,0.310127109289169,0.297833174467087,-0.902837991714478,0.238100737333298,0.299225687980652,-0.923997819423676,0.197514608502388,0.178280025720596,-0.963952362537384,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.789113402366638,-0.492156267166138,-0.367535203695297,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.846559703350067,-0.388193577528,-0.364200919866562,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.912551164627075,-0.288118869066238,-0.290237456560135,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.820509374141693,-0.414645910263062,-0.393488258123398,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.70928293466568,-0.19743686914444,-0.676709830760956,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.745153844356537,-0.145193263888359,-0.650895178318024,-0.734108746051788,-0.0661826431751251,-0.675798773765564,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.779447257518768,0.108426921069622,-0.617013335227966,\r\n-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.79049414396286,0.181858256459236,-0.584847331047058,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.735735058784485,0.0877425745129585,-0.671561598777771,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.698779404163361,0.163927614688873,-0.696300864219666,-0.70058798789978,0.169666528701782,-0.693101406097412,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.434005737304688,0.353943169116974,-0.828470408916473,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.681041538715363,0.285800606012344,-0.674166321754456,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.595624446868896,0.338547229766846,-0.728434681892395,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.528681755065918,0.363993018865585,-0.766814529895782,\r\n-0.483724594116211,0.32953354716301,-0.810813188552856,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.433912724256516,0.322796761989594,-0.841143190860748,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.189015328884125,0.52315354347229,-0.831013560295105,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.193297654390335,0.557567894458771,-0.807312726974487,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.222252160310745,0.616325318813324,-0.755478024482727,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.065565437078476,0.536236345767975,-0.841517508029938,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.184655800461769,0.601204574108124,-0.77746719121933,-0.181970506906509,0.574167251586914,-0.798259675502777,-0.222252160310745,0.616325318813324,-0.755478024482727,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.13763453066349,0.537259221076965,-0.832111299037933,-0.184655800461769,0.601204574108124,-0.77746719121933,0.111001014709473,0.553773403167725,-0.825235486030579,0.0357764810323715,0.597838580608368,-0.800817728042603,0.12888665497303,0.583809554576874,-0.801595032215118,0.0175048280507326,0.783534646034241,-0.621101319789886,0.0123489005491138,0.809582471847534,-0.586876213550568,-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.0267524030059576,0.773729920387268,-0.632950484752655,-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.189015328884125,0.52315354347229,-0.831013560295105,\r\n-0.255412578582764,0.549964010715485,-0.795175433158875,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.347426950931549,0.43937161564827,-0.828400254249573,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.255412578582764,0.549964010715485,-0.795175433158875,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.182037860155106,0.763865947723389,-0.619169473648071,-0.185352727770805,0.759799838066101,-0.623176038265228,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.127886220812798,0.813219428062439,-0.567731559276581,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0136970579624176,0.766302108764648,-0.642334222793579,-0.0496615245938301,0.735869526863098,-0.675299644470215,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0789862051606178,0.765419185161591,-0.638666152954102,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.127886220812798,0.813219428062439,-0.567731559276581,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.182037860155106,0.763865947723389,-0.619169473648071,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0526753850281239,0.69577556848526,-0.716324985027313,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0410168468952179,0.590993106365204,-0.805633068084717,0.0878538638353348,0.624370157718658,-0.776172339916229,-0.0410168468952179,0.590993106365204,-0.805633068084717,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.138675853610039,0.753877758979797,-0.642212688922882,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.0253894720226526,0.52639764547348,-0.849859297275543,\r\n-0.054433673620224,0.509739279747009,-0.858604967594147,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.153365835547447,0.59484875202179,-0.789071500301361,-0.0253894720226526,0.52639764547348,-0.849859297275543,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.054433673620224,0.509739279747009,-0.858604967594147,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.252743899822235,0.617192327976227,-0.745113432407379,-0.138675853610039,0.753877758979797,-0.642212688922882,-0.053034245967865,0.658267021179199,-0.750913918018341,-0.175064921379089,0.538675963878632,-0.824123978614807,-0.053034245967865,0.658267021179199,-0.750913918018341,0.0554115697741508,0.556580662727356,-0.8289435505867,-0.175064921379089,0.538675963878632,-0.824123978614807,0.0554115697741508,0.556580662727356,-0.8289435505867,0.0162067245692015,0.455644339323044,-0.890014290809631,0.0554115697741508,0.556580662727356,-0.8289435505867,0.205736085772514,0.398208141326904,-0.893925487995148,0.0162067245692015,0.455644339323044,-0.890014290809631,0.310127109289169,0.297833174467087,-0.902837991714478,0.169387087225914,0.176924243569374,-0.969538927078247,0.205736085772514,0.398208141326904,-0.893925487995148,0.313081413507462,0.308113813400269,-0.898357272148132,0.238100737333298,0.299225687980652,-0.923997819423676,0.310127109289169,0.297833174467087,-0.902837991714478,-0.8734170794487,-0.357740044593811,-0.330400496721268,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.912551164627075,-0.288118869066238,-0.290237456560135,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.912551164627075,-0.288118869066238,-0.290237456560135,\r\n-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.891567528247833,-0.340815246105194,-0.298248529434204,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.765066206455231,-0.422592401504517,-0.485890120267868,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.737694561481476,-0.225827306509018,-0.636245787143707,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.755851864814758,-0.17317470908165,-0.631425619125366,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.794372260570526,-0.0208813846111298,-0.607072174549103,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.792487502098084,0.0941091850399971,-0.602583587169647,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.460711747407913,0.360573261976242,-0.811006426811218,\r\n-0.437039107084274,0.420083850622177,-0.795315206050873,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.702824115753174,0.254463851451874,-0.664293766021729,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.647421658039093,0.329180151224136,-0.687375843524933,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.637044727802277,0.376206994056702,-0.672786831855774,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.528681755065918,0.363993018865585,-0.766814529895782,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.460711747407913,0.360573261976242,-0.811006426811218,-0.704845011234283,0.224617093801498,-0.672859966754913,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.222252160310745,0.616325318813324,-0.755478024482727,0.0123489005491138,0.809582471847534,-0.586876213550568,-0.0457579381763935,0.81168007850647,-0.582307040691376,\r\n-0.0236832834780216,0.788905739784241,-0.614057540893555,-0.25134003162384,0.567117094993591,-0.78435081243515,-0.255412578582764,0.549964010715485,-0.795175433158875,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.444730937480927,0.403617650270462,-0.799566805362701,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.293038487434387,0.505175352096558,-0.811742663383484,-0.359753042459488,0.494587600231171,-0.791176795959473,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.255412578582764,0.549964010715485,-0.795175433158875,-0.182037860155106,0.763865947723389,-0.619169473648071,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.182037860155106,0.763865947723389,-0.619169473648071,-0.0314392186701298,0.603459775447845,-0.796773314476013,-0.0410168468952179,0.590993106365204,-0.805633068084717,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0253894720226526,0.52639764547348,-0.849859297275543,-0.00441746646538377,0.529853463172913,-0.848077595233917,-0.0410168468952179,0.590993106365204,-0.805633068084717,-0.138675853610039,0.753877758979797,-0.642212688922882,-0.226147800683975,0.692058622837067,-0.685501158237457,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.0253894720226526,0.52639764547348,-0.849859297275543,\r\n-0.113665774464607,0.678315401077271,-0.725925743579865,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.138675853610039,0.753877758979797,-0.642212688922882,0.0201575104147196,0.743012845516205,-0.668973386287689,-0.053034245967865,0.658267021179199,-0.750913918018341,-0.053034245967865,0.658267021179199,-0.750913918018341,0.106472216546535,0.649674892425537,-0.752719104290009,0.0554115697741508,0.556580662727356,-0.8289435505867,0.0554115697741508,0.556580662727356,-0.8289435505867,0.196163162589073,0.556411445140839,-0.807419419288635,0.205736085772514,0.398208141326904,-0.893925487995148,0.205736085772514,0.398208141326904,-0.893925487995148,0.271462172269821,0.4182488322258,-0.866819500923157,0.310127109289169,0.297833174467087,-0.902837991714478,0.257648348808289,0.278692722320557,-0.925174355506897,0.313081413507462,0.308113813400269,-0.898357272148132,0.310127109289169,0.297833174467087,-0.902837991714478,-0.906086802482605,-0.223912730813026,-0.358984172344208,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.912551164627075,-0.288118869066238,-0.290237456560135,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.81332939863205,-0.510489761829376,-0.279097586870193,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.791286289691925,-0.299149036407471,-0.533268809318542,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.899018049240112,-0.0988885909318924,-0.426599621772766,\r\n-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.815799176692963,-0.139035061001778,-0.561374127864838,-0.813054323196411,-0.144118160009384,-0.564067780971527,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.847610533237457,0.133390322327614,-0.513578832149506,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.762371063232422,0.103349521756172,-0.638834118843079,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.694827735424042,0.312641859054565,-0.647664487361908,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.61349231004715,0.382108777761459,-0.691100537776947,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.65223228931427,0.152535423636436,-0.742513179779053,\r\n-0.574111223220825,0.363190203905106,-0.733818113803864,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.419901162385941,0.383508920669556,-0.822559297084808,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.837796866893768,0.28616937994957,-0.464976698160172,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.44541996717453,0.377889543771744,-0.811665177345276,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.246386915445328,0.622882544994354,-0.742503046989441,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.396927893161774,0.518134415149689,-0.757617831230164,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.346021384000778,0.555974841117859,-0.755751967430115,-0.148892104625702,0.778871357440948,-0.609253942966461,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.0314392186701298,0.603459775447845,-0.796773314476013,-0.0253894720226526,0.52639764547348,-0.849859297275543,-0.0410168468952179,0.590993106365204,-0.805633068084717,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.0314392186701298,0.603459775447845,-0.796773314476013,\r\n-0.138675853610039,0.753877758979797,-0.642212688922882,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.0480109117925167,0.786734402179718,-0.615421652793884,-0.113665774464607,0.678315401077271,-0.725925743579865,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.0234360788017511,0.566917240619659,-0.82344126701355,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0253894720226526,0.52639764547348,-0.849859297275543,-0.0314392186701298,0.603459775447845,-0.796773314476013,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0480109117925167,0.786734402179718,-0.615421652793884,-0.144774824380875,0.773405373096466,-0.61715829372406,-0.138675853610039,0.753877758979797,-0.642212688922882,-0.0480109117925167,0.786734402179718,-0.615421652793884,0.0201575104147196,0.743012845516205,-0.668973386287689,-0.053034245967865,0.658267021179199,-0.750913918018341,0.0201575104147196,0.743012845516205,-0.668973386287689,0.106472216546535,0.649674892425537,-0.752719104290009,0.0554115697741508,0.556580662727356,-0.8289435505867,0.106472216546535,0.649674892425537,-0.752719104290009,0.196163162589073,0.556411445140839,-0.807419419288635,0.205736085772514,0.398208141326904,-0.893925487995148,0.196163162589073,0.556411445140839,-0.807419419288635,0.271462172269821,0.4182488322258,-0.866819500923157,0.310127109289169,0.297833174467087,-0.902837991714478,0.271462172269821,0.4182488322258,-0.866819500923157,0.257648348808289,0.278692722320557,-0.925174355506897,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.913932144641876,-0.214485228061676,-0.344563186168671,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.858407437801361,-0.458044797182083,-0.230936199426651,\r\n-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.808460533618927,-0.457832098007202,-0.369839429855347,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.847608625888824,-0.0910590887069702,-0.522749900817871,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.845979332923889,0.110041297972202,-0.521737217903137,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.868871450424194,0.0874944776296616,-0.487244367599487,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.660042643547058,0.386395692825317,-0.644237458705902,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.655564188957214,0.423979640007019,-0.624881207942963,\r\n-0.667014062404633,0.439234584569931,-0.601801514625549,-0.655564188957214,0.423979640007019,-0.624881207942963,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.483485728502274,0.027915358543396,-0.874906957149506,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.574111223220825,0.363190203905106,-0.733818113803864,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.419901162385941,0.383508920669556,-0.822559297084808,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.437039107084274,0.420083850622177,-0.795315206050873,-0.419901162385941,0.383508920669556,-0.822559297084808,-0.80781614780426,0.222444370388985,-0.545849204063416,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.837796866893768,0.28616937994957,-0.464976698160172,-0.837796866893768,0.28616937994957,-0.464976698160172,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.73599773645401,0.304514795541763,-0.604630410671234,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.303250461816788,0.599584341049194,-0.740633249282837,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.421821713447571,0.490732192993164,-0.762396335601807,-0.341947317123413,0.486260503530502,-0.804128468036652,\r\n-0.346021384000778,0.555974841117859,-0.755751967430115,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.148892104625702,0.778871357440948,-0.609253942966461,-0.0988701209425926,0.706082224845886,-0.701193571090698,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0314392186701298,0.603459775447845,-0.796773314476013,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.0369736813008785,0.612265825271606,-0.789786875247955,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0363954193890095,0.558412313461304,-0.828764677047729,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0120418844744563,0.732812345027924,-0.680324077606201,-0.0480109117925167,0.786734402179718,-0.615421652793884,-0.0480109117925167,0.786734402179718,-0.615421652793884,-0.0120418844744563,0.732812345027924,-0.680324077606201,0.0201575104147196,0.743012845516205,-0.668973386287689,0.106472216546535,0.649674892425537,-0.752719104290009,0.0201575104147196,0.743012845516205,-0.668973386287689,0.104745335876942,0.681301593780518,-0.724469721317291,0.106472216546535,0.649674892425537,-0.752719104290009,0.104745335876942,0.681301593780518,-0.724469721317291,0.196163162589073,0.556411445140839,-0.807419419288635,0.196163162589073,0.556411445140839,-0.807419419288635,0.139465749263763,0.564831137657166,-0.813335657119751,0.271462172269821,0.4182488322258,-0.866819500923157,0.0315150693058968,0.272475212812424,-0.961646497249603,0.257648348808289,0.278692722320557,-0.925174355506897,0.271462172269821,0.4182488322258,-0.866819500923157,-0.860810339450836,-0.409131795167923,-0.302682250738144,\r\n-0.900428891181946,-0.250772714614868,-0.355444461107254,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.858407437801361,-0.458044797182083,-0.230936199426651,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.867043197154999,-0.309623450040817,-0.390345185995102,-0.842874228954315,-0.495026141405106,-0.210978761315346,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.89376300573349,-0.145941317081451,-0.424132883548737,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.911019384860992,0.127175897359848,-0.39226222038269,-0.94759213924408,0.12071330845356,-0.295799404382706,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.696538507938385,0.368663132190704,-0.615565955638886,\r\n-0.713854253292084,0.375834584236145,-0.590897977352142,-0.713854253292084,0.375834584236145,-0.590897977352142,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.688945174217224,0.352700918912888,-0.633211255073547,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.483485728502274,0.027915358543396,-0.874906957149506,-0.483485728502274,0.027915358543396,-0.874906957149506,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.524270951747894,0.192931845784187,-0.829407691955566,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.483724594116211,0.32953354716301,-0.810813188552856,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.419901162385941,0.383508920669556,-0.822559297084808,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.837796866893768,0.28616937994957,-0.464976698160172,\r\n-0.837796866893768,0.28616937994957,-0.464976698160172,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.0896875858306885,0.667133033275604,-0.739519774913788,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.0363954193890095,0.558412313461304,-0.828764677047729,-0.00692914519459009,0.559181928634644,-0.829015910625458,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.0369736813008785,0.612265825271606,-0.789786875247955,-0.038858275860548,0.578387200832367,-0.814836263656616,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0369736813008785,0.612265825271606,-0.789786875247955,-0.0363954193890095,0.558412313461304,-0.828764677047729,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.038858275860548,0.578387200832367,-0.814836263656616,-0.0609583966434002,0.707962691783905,-0.703614056110382,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0120418844744563,0.732812345027924,-0.680324077606201,0.0201575104147196,0.743012845516205,-0.668973386287689,-0.0120418844744563,0.732812345027924,-0.680324077606201,0.104745335876942,0.681301593780518,-0.724469721317291,0.104745335876942,0.681301593780518,-0.724469721317291,0.139465749263763,0.564831137657166,-0.813335657119751,0.196163162589073,0.556411445140839,-0.807419419288635,0.0315150693058968,0.272475212812424,-0.961646497249603,\r\n0.271462172269821,0.4182488322258,-0.866819500923157,0.139465749263763,0.564831137657166,-0.813335657119751,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.91212797164917,-0.20737598836422,-0.353578329086304,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.911968231201172,-0.0478923879563808,-0.407455712556839,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.899018049240112,-0.0988885909318924,-0.426599621772766,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.883600115776062,-0.375029176473618,-0.280363917350769,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.917859017848969,0.0773092731833458,-0.389304429292679,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.94759213924408,0.12071330845356,-0.295799404382706,\r\n-0.911019384860992,0.127175897359848,-0.39226222038269,-0.917885839939117,0.153783693909645,-0.365836083889008,-0.94759213924408,0.12071330845356,-0.295799404382706,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.413443833589554,0.459569722414017,-0.786040544509888,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.64971798658371,0.468453615903854,-0.598679900169373,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.667014062404633,0.439234584569931,-0.601801514625549,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.65223228931427,0.152535423636436,-0.742513179779053,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.544348120689392,0.1297817081213,-0.828759133815765,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.483485728502274,0.027915358543396,-0.874906957149506,\r\n-0.483485728502274,0.027915358543396,-0.874906957149506,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.837796866893768,0.28616937994957,-0.464976698160172,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.770831823348999,0.359171003103256,-0.526131510734558,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.341947317123413,0.486260503530502,-0.804128468036652,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.343929499387741,0.539937496185303,-0.768231689929962,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.0896875858306885,0.667133033275604,-0.739519774913788,-0.0363954193890095,0.558412313461304,-0.828764677047729,-0.0599652007222176,0.625780820846558,-0.777690410614014,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0369736813008785,0.612265825271606,-0.789786875247955,0.00432480406016111,0.57669985294342,-0.816944539546967,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.0363954193890095,0.558412313461304,-0.828764677047729,0.0607711300253868,0.629403114318848,-0.774698972702026,-0.0769268795847893,0.613376796245575,-0.786035001277924,\r\n-0.0120418844744563,0.732812345027924,-0.680324077606201,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0769268795847893,0.613376796245575,-0.786035001277924,0.104745335876942,0.681301593780518,-0.724469721317291,-0.0120418844744563,0.732812345027924,-0.680324077606201,0.104745335876942,0.681301593780518,-0.724469721317291,-0.0769268795847893,0.613376796245575,-0.786035001277924,0.139465749263763,0.564831137657166,-0.813335657119751,0.0315150693058968,0.272475212812424,-0.961646497249603,0.139465749263763,0.564831137657166,-0.813335657119751,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.860810339450836,-0.409131795167923,-0.302682250738144,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.817789971828461,-0.53257155418396,-0.218144342303276,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.902292191982269,-0.205826565623283,-0.378819346427917,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.951934039592743,-0.0334640592336655,-0.304469406604767,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.990545988082886,-0.0318255871534348,-0.133437752723694,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.90349417924881,0.142289087176323,-0.404291868209839,\r\n-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.92721164226532,-0.100016199052334,-0.36093658208847,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.90349417924881,0.142289087176323,-0.404291868209839,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.910080194473267,0.149950832128525,-0.386352986097336,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.94759213924408,0.12071330845356,-0.295799404382706,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.375834852457047,0.351081639528275,-0.857606947422028,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.372130990028381,0.403654366731644,-0.835811972618103,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.710224986076355,0.283907234668732,-0.644187092781067,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.654076099395752,0.430163443088531,-0.622208714485168,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.572319269180298,-0.312183052301407,-0.758282423019409,\r\n-0.705054044723511,0.0624270401895046,-0.706400394439697,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.438927561044693,-0.345933943986893,-0.829259991645813,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.455881804227829,-0.117612548172474,-0.882235169410706,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.405616492033005,0.0533341132104397,-0.912485837936401,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.358846664428711,0.190031319856644,-0.913847386837006,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.902193665504456,0.212860852479935,-0.375149071216583,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.254652887582779,0.421563982963562,-0.870307743549347,-0.0363954193890095,0.558412313461304,-0.828764677047729,-0.0896875858306885,0.667133033275604,-0.739519774913788,0.0607711300253868,0.629403114318848,-0.774698972702026,\r\n-0.0769268795847893,0.613376796245575,-0.786035001277924,-0.159213542938232,0.440611034631729,-0.883466362953186,0.139465749263763,0.564831137657166,-0.813335657119751,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.889040887355804,-0.337670803070068,-0.309167742729187,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.941373288631439,-0.0472518093883991,-0.334041237831116,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.831749737262726,-0.474136501550674,-0.288767635822296,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.907903552055359,-0.0381278283894062,-0.417441099882126,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.990545988082886,-0.0318255871534348,-0.133437752723694,-0.974850058555603,-0.0037487824447453,-0.222829520702362,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.990545988082886,-0.0318255871534348,-0.133437752723694,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.894983470439911,0.231383591890335,-0.381400167942047,\r\n-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.92721164226532,-0.100016199052334,-0.36093658208847,-0.92721164226532,-0.100016199052334,-0.36093658208847,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.202110096812248,0.106068722903728,-0.973601996898651,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.354063183069229,0.398241758346558,-0.846193015575409,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.696538507938385,0.368663132190704,-0.615565955638886,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.680899083614349,0.269147306680679,-0.68112850189209,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.691551744937897,-0.00112881348468363,-0.722325921058655,-0.477010816335678,-0.379943609237671,-0.792529761791229,\r\n-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.438927561044693,-0.345933943986893,-0.829259991645813,-0.575585305690765,-0.189037844538689,-0.795591652393341,-0.505552411079407,-0.165300637483597,-0.846813082695007,-0.438927561044693,-0.345933943986893,-0.829259991645813,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.379041582345963,-0.205357626080513,-0.902305722236633,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.180353656411171,-0.11139740049839,-0.977273285388947,-0.874298095703125,0.30182272195816,-0.380139112472534,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.793820559978485,0.358805328607559,-0.491027027368546,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.206821739673615,0.323643118143082,-0.923298299312592,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.808610618114471,-0.535207331180573,-0.244339540600777,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.970711410045624,-0.0148824779316783,-0.239786937832832,-0.943991899490356,0.0707800462841988,-0.322287738323212,\r\n-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.881802797317505,-0.294987231492996,-0.367975890636444,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.990545988082886,-0.0318255871534348,-0.133437752723694,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.958980798721313,-0.025816697627306,-0.282292723655701,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.92721164226532,-0.100016199052334,-0.36093658208847,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.913110256195068,0.0655995607376099,-0.402400612831116,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.923758566379547,0.184713184833527,-0.335486382246017,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.941220700740814,0.195432156324387,-0.275517255067825,\r\n-0.202110096812248,0.106068722903728,-0.973601996898651,-0.28678160905838,0.194575324654579,-0.93802809715271,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.258762925863266,0.0591350421309471,-0.964128971099854,-0.180353656411171,-0.11139740049839,-0.977273285388947,-0.202110096812248,0.106068722903728,-0.973601996898651,-0.206594437360764,0.123608827590942,-0.970587193965912,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.206594437360764,0.123608827590942,-0.970587193965912,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.300589680671692,0.280695348978043,-0.911512911319733,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.656483232975006,0.132868766784668,-0.742546617984772,-0.638988018035889,-0.0996287316083908,-0.762737393379211,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.572319269180298,-0.312183052301407,-0.758282423019409,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.438927561044693,-0.345933943986893,-0.829259991645813,-0.438927561044693,-0.345933943986893,-0.829259991645813,\r\n-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.180353656411171,-0.11139740049839,-0.977273285388947,-0.847385883331299,0.322486340999603,-0.421828895807266,-0.874298095703125,0.30182272195816,-0.380139112472534,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.904012382030487,0.22012734413147,-0.366476982831955,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.874298095703125,0.30182272195816,-0.380139112472534,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.844969749450684,0.310602188110352,-0.435376018285751,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.846534252166748,-0.485259592533112,-0.218866914510727,-0.943991899490356,0.0707800462841988,-0.322287738323212,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.898461222648621,-0.35691037774086,-0.255699664354324,\r\n-0.813815414905548,-0.527757287025452,-0.243262425065041,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.904104948043823,-0.0829316154122353,-0.419185429811478,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.87582391500473,0.143990889191628,-0.460650682449341,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.98353523015976,0.0268317051231861,-0.178713113069534,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.976670145988464,-0.0332744270563126,-0.212151288986206,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.882625043392181,0.276546746492386,-0.380124717950821,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.202110096812248,0.106068722903728,-0.973601996898651,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.0545725673437119,0.00571138085797429,-0.998493432998657,\r\n-0.180353656411171,-0.11139740049839,-0.977273285388947,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.206594437360764,0.123608827590942,-0.970587193965912,-0.202110096812248,0.106068722903728,-0.973601996898651,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.198397010564804,0.202959597110748,-0.958877444267273,-0.206594437360764,0.123608827590942,-0.970587193965912,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.757979393005371,0.243807956576347,-0.604999780654907,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.828456044197083,0.278541266918182,-0.48587566614151,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.539468467235565,-0.466611444950104,-0.700890421867371,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.477010816335678,-0.379943609237671,-0.792529761791229,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.313256859779358,-0.280223816633224,-0.907383382320404,-0.492640435695648,-0.285323739051819,-0.822128713130951,\r\n-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.392400830984116,-0.338783711194992,-0.855129837989807,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.261964023113251,-0.115215755999088,-0.958175420761108,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.874298095703125,0.30182272195816,-0.380139112472534,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.898461222648621,-0.35691037774086,-0.255699664354324,-0.843604445457459,-0.519128143787384,-0.137249156832695,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.946024298667908,-0.142518937587738,-0.291077703237534,-0.914900958538055,-0.397404700517654,-0.0708918124437332,-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.899539887905121,0.0846157819032669,-0.428565084934235,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.923019707202911,-0.100292220711708,-0.371451139450073,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.894983470439911,0.231383591890335,-0.381400167942047,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.882625043392181,0.276546746492386,-0.380124717950821,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.882625043392181,0.276546746492386,-0.380124717950821,\r\n-0.891354024410248,0.278587698936462,-0.357598721981049,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.929136872291565,-0.11247531324625,-0.352212846279144,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.948483884334564,0.0338040739297867,-0.315016686916351,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.941220700740814,0.195432156324387,-0.275517255067825,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.0781166553497314,-0.0826037153601646,-0.993516147136688,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.539468467235565,-0.466611444950104,-0.700890421867371,-0.668437480926514,-0.117287322878838,-0.734462320804596,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.736861944198608,-0.0856052190065384,-0.67060124874115,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.524634420871735,-0.346149295568466,-0.777778387069702,-0.539468467235565,-0.466611444950104,-0.700890421867371,\r\n-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.480113178491592,-0.392829775810242,-0.784331560134888,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.468147188425064,-0.348619073629379,-0.81197464466095,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.369965434074402,-0.289717644453049,-0.88271689414978,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.177460074424744,-0.136321231722832,-0.974640667438507,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.900937855243683,0.272800743579865,-0.337476998567581,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.86325991153717,0.305421441793442,-0.401870489120483,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.915834009647369,0.143309891223907,-0.375113636255264,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.946024298667908,-0.142518937587738,-0.291077703237534,\r\n-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.875528037548065,0.229273289442062,-0.425304919481277,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.882625043392181,0.276546746492386,-0.380124717950821,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.882625043392181,0.276546746492386,-0.380124717950821,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.907695651054382,0.244793117046356,-0.340829521417618,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.945158541202545,0.0876575261354446,-0.314629077911377,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.939214050769806,0.206540316343308,-0.274258881807327,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.0781166553497314,-0.0826037153601646,-0.993516147136688,-0.145131692290306,-0.0475148558616638,-0.98827075958252,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.0781166553497314,-0.0826037153601646,-0.993516147136688,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,\r\n-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.814673483371735,0.110870771110058,-0.569222807884216,-0.539468467235565,-0.466611444950104,-0.700890421867371,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.865774989128113,0.171927228569984,-0.469972997903824,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.539468467235565,-0.466611444950104,-0.700890421867371,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.490408420562744,-0.424411982297897,-0.761166155338287,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.50025600194931,-0.3215691447258,-0.803950905799866,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.173845887184143,-0.0601277649402618,-0.98293548822403,\r\n-0.90145617723465,0.103526793420315,-0.420308023691177,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.945158541202545,0.0876575261354446,-0.314629077911377,-0.925453782081604,0.00727254478260875,-0.378790646791458,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.928783655166626,0.184098944067955,-0.321665018796921,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.972794651985168,-0.176005840301514,-0.150640055537224,-0.97564959526062,0.00685996934771538,-0.219227507710457,-0.946074843406677,0.0518309473991394,-0.319774746894836,-0.97564959526062,0.00685996934771538,-0.219227507710457,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.936345636844635,-0.0770668834447861,-0.342516452074051,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.943149328231812,-0.0632070079445839,-0.326303660869598,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.954406797885895,-0.0321029238402843,-0.296777546405792,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.928602933883667,0.149490982294083,-0.339630603790283,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.945158541202545,0.0876575261354446,-0.314629077911377,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.936345636844635,-0.0770668834447861,-0.342516452074051,\r\n-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.926438689231873,0.253528654575348,-0.278270334005356,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,-0.0781166553497314,-0.0826037153601646,-0.993516147136688,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.0545725673437119,0.00571138085797429,-0.998493432998657,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,0.0156728252768517,0.000189313519513235,-0.999877095222473,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.761183977127075,-0.211970195174217,-0.612917125225067,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.651539862155914,-0.439385950565338,-0.618413805961609,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.83041125535965,-0.089213915169239,-0.549961686134338,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.515124320983887,-0.325760632753372,-0.792796790599823,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.515124320983887,-0.325760632753372,-0.792796790599823,\r\n-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.505829274654388,-0.270112872123718,-0.819253087043762,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.492640435695648,-0.285323739051819,-0.822128713130951,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.288088142871857,-0.154532089829445,-0.945052921772003,-0.430242091417313,-0.183879971504211,-0.883787155151367,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.915552973747253,0.240327462553978,-0.322498649358749,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.90145617723465,0.103526793420315,-0.420308023691177,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.945158541202545,0.0876575261354446,-0.314629077911377,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.928783655166626,0.184098944067955,-0.321665018796921,\r\n-0.93140834569931,0.181078225374222,-0.315735667943954,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.906524777412415,0.194949969649315,-0.374442577362061,-0.928783655166626,0.184098944067955,-0.321665018796921,-0.97564959526062,0.00685996934771538,-0.219227507710457,-0.973963141441345,0.0716409087181091,-0.215088814496994,-0.93140834569931,0.181078225374222,-0.315735667943954,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.958469569683075,0.11726663261652,-0.259970188140869,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.91489964723587,0.232955232262611,-0.329682350158691,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.891354024410248,0.278587698936462,-0.357598721981049,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.912846386432648,0.274099767208099,-0.302622944116592,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.951904475688934,-0.051935039460659,-0.301961064338684,-0.935769200325012,0.269946306943893,-0.226858749985695,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,0.0156728252768517,0.000189313519513235,-0.999877095222473,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,0.0129480706527829,-0.0121295489370823,-0.999842584133148,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.667440891265869,-0.485422015190125,-0.564701676368713,\r\n-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.716608643531799,-0.370482534170151,-0.590943932533264,-0.834166169166565,-0.163955450057983,-0.526578783988953,-0.596347332000732,-0.436161160469055,-0.673893988132477,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.461210131645203,-0.29778003692627,-0.835830271244049,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.489817231893539,-0.344928950071335,-0.800689041614532,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.527946770191193,-0.185734629631042,-0.828718721866608,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.272528171539307,-0.0557329766452312,-0.960532188415527,-0.287274837493896,-0.071620486676693,-0.955166816711426,\r\n-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.173845887184143,-0.0601277649402618,-0.98293548822403,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.930592954158783,-0.00247162161394954,-0.366047263145447,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.935402035713196,0.0512750223278999,-0.34984827041626,-0.933069705963135,0.111693397164345,-0.341914236545563,-0.928783655166626,0.184098944067955,-0.321665018796921,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.916016221046448,0.361430257558823,-0.174018278717995,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.956617951393127,0.218567237257957,-0.192640483379364,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,\r\n0.0129480706527829,-0.0121295489370823,-0.999842584133148,-0.0641650334000587,-0.0242605712264776,-0.997644305229187,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.720797181129456,-0.435431003570557,-0.539306104183197,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.423091441392899,-0.29644501209259,-0.856220662593842,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.418773263692856,-0.235235705971718,-0.877093493938446,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.497741252183914,-0.191141813993454,-0.846001386642456,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.399282872676849,-0.0814958363771439,-0.913198471069336,-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.47982069849968,-0.0646617412567139,-0.874980449676514,\r\n-0.379343450069427,-0.0774554759263992,-0.922008216381073,-0.399282872676849,-0.0814958363771439,-0.913198471069336,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.483433306217194,-0.0884010940790176,-0.870906054973602,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.211143046617508,-0.0302731581032276,-0.976986229419708,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.959703743457794,-0.034484013915062,-0.278889656066895,-0.852191805839539,-0.266166746616364,-0.450471132993698,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.93945974111557,0.306444674730301,-0.153319731354713,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.961704611778259,0.195084795355797,-0.192525506019592,-0.93499231338501,0.277161538600922,-0.221293330192566,-0.93945974111557,0.306444674730301,-0.153319731354713,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.912942409515381,0.330910891294479,-0.238818004727364,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.916016221046448,0.361430257558823,-0.174018278717995,-0.916016221046448,0.361430257558823,-0.174018278717995,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.899240255355835,0.401741325855255,-0.173119962215424,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.830860555171967,-0.464425921440125,-0.306560188531876,\r\n-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.803587377071381,-0.535553872585297,-0.259671598672867,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,0.0129480706527829,-0.0121295489370823,-0.999842584133148,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,0.0474197342991829,-0.0293086655437946,-0.99844491481781,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.667440891265869,-0.485422015190125,-0.564701676368713,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.655301570892334,-0.400747001171112,-0.640298008918762,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.565490663051605,-0.375778377056122,-0.734173536300659,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.440370321273804,-0.0671809613704681,-0.895299136638641,\r\n-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.396707832813263,-0.126184731721878,-0.909230530261993,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.502751588821411,-0.106878019869328,-0.857798218727112,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.399282872676849,-0.0814958363771439,-0.913198471069336,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.399282872676849,-0.0814958363771439,-0.913198471069336,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.859296500682831,-0.361571758985519,-0.361766546964645,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.93945974111557,0.306444674730301,-0.153319731354713,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.95306134223938,0.264068216085434,-0.148127973079681,-0.968857109546661,0.224325031042099,-0.10485265403986,-0.93945974111557,0.306444674730301,-0.153319731354713,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.930444478988647,0.328266233205795,-0.162832155823708,-0.943793594837189,0.308408051729202,-0.118903286755085,\r\n-0.916016221046448,0.361430257558823,-0.174018278717995,-0.916016221046448,0.361430257558823,-0.174018278717995,-0.943793594837189,0.308408051729202,-0.118903286755085,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.916629135608673,0.351815164089203,-0.189781606197357,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.899240255355835,0.401741325855255,-0.173119962215424,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.899240255355835,0.401741325855255,-0.173119962215424,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.803587377071381,-0.535553872585297,-0.259671598672867,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.803587377071381,-0.535553872585297,-0.259671598672867,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.95603334903717,-0.20709316432476,-0.207635849714279,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.132847771048546,-0.0543941855430603,-0.989642679691315,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,0.0474197342991829,-0.0293086655437946,-0.99844491481781,-0.0202357582747936,-0.0470818541944027,-0.998686015605927,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.735081553459167,-0.505674600601196,-0.451606124639511,-0.700033009052277,-0.593832731246948,-0.396631211042404,\r\n-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.617992222309113,-0.418422490358353,-0.66558849811554,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.537806868553162,-0.285934507846832,-0.793098390102386,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.592383861541748,-0.393450886011124,-0.703048765659332,-0.446731120347977,-0.136687502264977,-0.884164988994598,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.466706424951553,-0.0583355389535427,-0.8824862241745,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.47982069849968,-0.0646617412567139,-0.874980449676514,-0.287274837493896,-0.071620486676693,-0.955166816711426,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.191463097929955,-0.0815607234835625,-0.978105127811432,-0.267932027578354,-0.0495925098657608,-0.962160527706146,\r\n-0.830860555171967,-0.464425921440125,-0.306560188531876,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.899240255355835,0.401741325855255,-0.173119962215424,-0.975065052509308,0.163202583789825,-0.150375872850418,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.803587377071381,-0.535553872585297,-0.259671598672867,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.928093910217285,-0.330938309431076,-0.170650079846382,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,-0.0489822737872601,0.090268611907959,-0.994712114334106,0.0474197342991829,-0.0293086655437946,-0.99844491481781,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.676117658615112,-0.443172216415405,-0.588611304759979,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.668703079223633,-0.423613905906677,-0.611054241657257,-0.637454092502594,-0.604701161384583,-0.477481663227081,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.700033009052277,-0.593832731246948,-0.396631211042404,\r\n-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.699539184570313,-0.200838223099709,-0.685790598392487,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.418180793523788,-0.0967193692922592,-0.903199911117554,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.912759602069855,0.390766352415085,-0.119044318795204,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.964875400066376,0.246169313788414,-0.0917389541864395,\r\n-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.777340769767761,-0.595834195613861,-0.201799213886261,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.175986438989639,-0.0689345896244049,-0.981975913047791,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.0554291680455208,-0.0619947761297226,-0.996536076068878,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.664238512516022,-0.534101903438568,-0.522993624210358,-0.637454092502594,-0.604701161384583,-0.477481663227081,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.637454092502594,-0.604701161384583,-0.477481663227081,-0.700033009052277,-0.593832731246948,-0.396631211042404,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.625765800476074,-0.0512856468558311,-0.77832305431366,-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.699539184570313,-0.200838223099709,-0.685790598392487,\r\n-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.525749206542969,-0.0138699049130082,-0.850526511669159,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.692880034446716,-0.37613981962204,-0.615171551704407,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.440370321273804,-0.0671809613704681,-0.895299136638641,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.437687188386917,-0.00901878718286753,-0.899082064628601,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.513599336147308,0.0164402145892382,-0.857872545719147,-0.420687556266785,-0.0388934202492237,-0.906371474266052,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.267932027578354,-0.0495925098657608,-0.962160527706146,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.686582982540131,-0.666155755519867,-0.291273355484009,-0.910906970500946,0.410561859607697,0.0410783030092716,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.964875400066376,0.246169313788414,-0.0917389541864395,-0.995173454284668,0.0915359258651733,0.0353678464889526,\r\n-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.951499462127686,-0.271264344453812,-0.14513535797596,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.743415176868439,-0.641542613506317,-0.189094290137291,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.146573007106781,0.033428966999054,-0.988634824752808,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.660839676856995,-0.564261972904205,-0.494872748851776,-0.637454092502594,-0.604701161384583,-0.477481663227081,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.715420007705688,-0.437380582094193,-0.544859886169434,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.771136343479156,0.00291554909199476,-0.636663258075714,\r\n-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.805217266082764,-0.158234566450119,-0.571477830410004,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.562655866146088,0.0238757766783237,-0.826346278190613,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.535962343215942,0.019419314339757,-0.844018399715424,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.41014039516449,-0.0158174000680447,-0.911885201931,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.486666768789291,0.109243951737881,-0.866730153560638,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.658357381820679,-0.640338242053986,-0.395641684532166,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.899925231933594,-0.435737490653992,-0.0163418315351009,-0.716764032840729,-0.695402920246124,-0.0516131147742271,\r\n-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.233264341950417,0.0704409033060074,-0.969858646392822,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.788944363594055,-0.273462474346161,-0.550258934497833,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.731525361537933,-0.367746561765671,-0.574136674404144,-0.788944363594055,-0.273462474346161,-0.550258934497833,-0.815173268318176,-0.255874842405319,-0.519634902477264,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.757472932338715,0.273748248815537,-0.592702686786652,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.771136343479156,0.00291554909199476,-0.636663258075714,\r\n-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.771136343479156,0.00291554909199476,-0.636663258075714,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.502587080001831,0.137257292866707,-0.853561103343964,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.401563763618469,0.146028608083725,-0.904113948345184,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.372621417045593,0.17216420173645,-0.911873161792755,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.718928813934326,-0.553545951843262,-0.420390397310257,-0.678314745426178,-0.677683472633362,-0.283961296081543,-0.899925231933594,-0.435737490653992,-0.0163418315351009,-0.995173454284668,0.0915359258651733,0.0353678464889526,-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.949697852134705,-0.310903966426849,-0.0375859886407852,-0.899925231933594,-0.435737490653992,-0.0163418315351009,-0.716764032840729,-0.695402920246124,-0.0516131147742271,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.742208003997803,-0.659801721572876,-0.117425762116909,-0.716764032840729,-0.695402920246124,-0.0516131147742271,\r\n-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.69582462310791,-0.687487661838531,-0.207818776369095,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.174511209130287,0.157514810562134,-0.971974730491638,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.83162122964859,-0.238723441958427,-0.501415133476257,-0.788944363594055,-0.273462474346161,-0.550258934497833,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.821667611598969,-0.372095495462418,-0.431748926639557,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.788944363594055,-0.273462474346161,-0.550258934497833,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.757472932338715,0.273748248815537,-0.592702686786652,-0.757472932338715,0.273748248815537,-0.592702686786652,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.667049527168274,0.110784746706486,-0.7367302775383,-0.79922354221344,0.150905609130859,-0.581780970096588,\r\n-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.595268130302429,0.188736036419868,-0.781046986579895,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.407247483730316,0.289228856563568,-0.86631178855896,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.407247483730316,0.289228856563568,-0.86631178855896,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.4401775598526,0.17878982424736,-0.879930555820465,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.372621417045593,0.17216420173645,-0.911873161792755,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.346534341573715,0.130071923136711,-0.928975284099579,-0.372621417045593,0.17216420173645,-0.911873161792755,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.899925231933594,-0.435737490653992,-0.0163418315351009,-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.716764032840729,-0.695402920246124,-0.0516131147742271,-0.899925231933594,-0.435737490653992,-0.0163418315351009,\r\n-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.716764032840729,-0.695402920246124,-0.0516131147742271,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.774828851222992,-0.539997756481171,-0.328698188066483,-0.244621127843857,0.179009318351746,-0.95295125246048,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.841001570224762,-0.177722543478012,-0.511009693145752,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.845006108283997,-0.187635406851768,-0.500756919384003,-0.878177165985107,-0.0461959950625896,-0.476099461317062,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.79922354221344,0.150905609130859,-0.581780970096588,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.757472932338715,0.273748248815537,-0.592702686786652,\r\n-0.757472932338715,0.273748248815537,-0.592702686786652,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.858910381793976,0.0510268323123455,-0.509577333927155,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.407247483730316,0.289228856563568,-0.86631178855896,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.407247483730316,0.289228856563568,-0.86631178855896,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.489525496959686,0.17905704677105,-0.853406846523285,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.502023994922638,0.175762549042702,-0.846805334091187,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.416060656309128,0.229061543941498,-0.880013763904572,-0.372621417045593,0.17216420173645,-0.911873161792755,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.698325097560883,-0.715731799602509,0.00836592074483633,\r\n-0.913361012935638,-0.406753957271576,0.0179593674838543,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.716764032840729,-0.695402920246124,-0.0516131147742271,-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.701009750366211,-0.70132577419281,-0.129334270954132,-0.863240301609039,-0.374654144048691,-0.338305056095123,-0.81787371635437,-0.528833329677582,-0.226754665374756,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.189368456602097,0.135976031422615,-0.972445368766785,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.902798652648926,0.0213811658322811,-0.429531574249268,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.89211905002594,-0.0504215359687805,-0.448977887630463,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.91663670539856,-0.327930837869644,-0.228557154536247,\r\n-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.84331339597702,0.246394410729408,-0.477611035108566,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.757472932338715,0.273748248815537,-0.592702686786652,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.919443249702454,0.0427346415817738,-0.390893548727036,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.614823281764984,0.318796813488007,-0.721360325813293,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.697226703166962,0.282845050096512,-0.658690690994263,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.501987159252167,0.300836324691772,-0.810867547988892,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.457937061786652,0.0339878164231777,-0.888334631919861,\r\n-0.483417302370071,0.145877957344055,-0.863149583339691,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.438206434249878,0.267121225595474,-0.858266413211823,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.298156261444092,0.169600158929825,-0.939328730106354,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.189368456602097,0.135976031422615,-0.972445368766785,-0.217693939805031,0.142718434333801,-0.965526103973389,-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.698325097560883,-0.715731799602509,0.00836592074483633,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.885536849498749,0.0287763234227896,-0.463676869869232,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.882714807987213,0.0405290126800537,-0.468158036470413,\r\n-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.8845055103302,-0.032131090760231,-0.465421825647354,-0.909833967685699,-0.18671789765358,-0.37059211730957,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.910132765769959,-0.0682017430663109,-0.408664524555206,-0.91663670539856,-0.327930837869644,-0.228557154536247,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.918268918991089,0.0102590406313539,-0.395824193954468,-0.899256110191345,0.126894548535347,-0.418612062931061,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.586869120597839,0.319565564393997,-0.743950486183167,\r\n-0.580302953720093,0.230412721633911,-0.781126320362091,-0.457937061786652,0.0339878164231777,-0.888334631919861,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.457937061786652,0.0339878164231777,-0.888334631919861,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.483417302370071,0.145877957344055,-0.863149583339691,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.404892683029175,0.177033931016922,-0.897062301635742,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.512140035629272,0.18994303047657,-0.83763599395752,-0.510038912296295,0.274511098861694,-0.81517106294632,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.255562961101532,0.145187392830849,-0.955828487873077,-0.189368456602097,0.135976031422615,-0.972445368766785,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.751060783863068,-0.653262317180634,0.0956870019435883,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.623108386993408,-0.782135128974915,0.00055970047833398,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.730080604553223,-0.682558417320251,-0.0331099331378937,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.856267094612122,-0.502070426940918,-0.121374599635601,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.730080604553223,-0.682558417320251,-0.0331099331378937,\r\n-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.840222775936127,-0.0303929224610329,-0.54138857126236,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.873904764652252,-0.0285371486097574,-0.485258668661118,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.913952529430389,0.0611736662685871,-0.401183903217316,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.936267375946045,0.0756526216864586,-0.343045145273209,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.824582040309906,0.234596684575081,-0.514809370040894,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.753660321235657,0.270008504390717,-0.599242329597473,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.726539850234985,0.250395864248276,-0.639876246452332,\r\n-0.706555426120758,0.245748177170753,-0.663616597652435,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.586869120597839,0.319565564393997,-0.743950486183167,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.65611869096756,0.313667774200439,-0.686382293701172,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.703393757343292,0.277155101299286,-0.654539585113525,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.457937061786652,0.0339878164231777,-0.888334631919861,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.457937061786652,0.0339878164231777,-0.888334631919861,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.39017590880394,0.195742979645729,-0.899692893028259,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.580302953720093,0.230412721633911,-0.781126320362091,-0.553211271762848,0.113332115113735,-0.825295686721802,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.255562961101532,0.145187392830849,-0.955828487873077,-0.28885218501091,0.169307589530945,-0.942284047603607,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.189368456602097,0.135976031422615,-0.972445368766785,\r\n-0.255562961101532,0.145187392830849,-0.955828487873077,-0.60611093044281,-0.78818690776825,0.10672752559185,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.882714807987213,0.0405290126800537,-0.468158036470413,-0.840222775936127,-0.0303929224610329,-0.54138857126236,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.840222775936127,-0.0303929224610329,-0.54138857126236,-0.847618043422699,-0.036600723862648,-0.529342889785767,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.954322636127472,-0.195281744003296,-0.226126596331596,-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.944121539592743,-0.117563910782337,-0.307917535305023,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.912753105163574,-0.0733456909656525,-0.401873201131821,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.952553629875183,-0.275797784328461,-0.128752142190933,\r\n-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.897919416427612,0.132237523794174,-0.419826000928879,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.782495677471161,0.183667376637459,-0.594950973987579,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.647590398788452,0.196725323796272,-0.736156046390533,\r\n-0.71174681186676,0.195062279701233,-0.674808859825134,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.255562961101532,0.145187392830849,-0.955828487873077,-0.304223835468292,0.163419604301453,-0.938478410243988,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.255562961101532,0.145187392830849,-0.955828487873077,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.615803182125092,-0.769678115844727,0.168469190597534,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.688621938228607,-0.708518147468567,0.154278099536896,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.767215669155121,-0.639140427112579,0.0536594800651073,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.865862429141998,-0.498093485832214,-0.0467438101768494,-0.942709147930145,-0.310536295175552,-0.121928580105305,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.952553629875183,-0.275797784328461,-0.128752142190933,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.840222775936127,-0.0303929224610329,-0.54138857126236,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.976470589637756,0.0400920882821083,-0.211890816688538,\r\n-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.959163248538971,-0.218610912561417,-0.179485753178597,-0.952553629875183,-0.275797784328461,-0.128752142190933,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.841582179069519,0.059849314391613,-0.536802887916565,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.658674836158752,0.269181936979294,-0.702629625797272,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.636031031608582,0.28202748298645,-0.718279123306274,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.706555426120758,0.245748177170753,-0.663616597652435,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.775032162666321,0.122800596058369,-0.619875013828278,\r\n-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.561447203159332,0.0332085601985455,-0.82684588432312,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.368223428726196,0.0838856250047684,-0.925945222377777,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.422847837209702,0.0786271914839745,-0.902783155441284,-0.647590398788452,0.196725323796272,-0.736156046390533,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.71174681186676,0.195062279701233,-0.674808859825134,-0.71174681186676,0.195062279701233,-0.674808859825134,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.666650831699371,0.0913587883114815,-0.73974996805191,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.688621938228607,-0.708518147468567,0.154278099536896,-0.638798594474792,-0.760182499885559,0.118569791316986,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.688621938228607,-0.708518147468567,0.154278099536896,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.876282215118408,-0.48155277967453,0.0153739657253027,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.952553629875183,-0.275797784328461,-0.128752142190933,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.959951102733612,-0.266691774129868,-0.0858449563384056,\r\n-0.874602377414703,-0.0213809087872505,-0.484369099140167,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.872421443462372,0.0617952346801758,-0.48483207821846,-0.837940514087677,0.00894537195563316,-0.545688152313232,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.955065906047821,-0.0658253505825996,-0.288991510868073,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.961473047733307,-0.145574524998665,-0.233189418911934,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.942868947982788,0.000426789774792269,-0.333163380622864,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.952553629875183,-0.275797784328461,-0.128752142190933,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.847318768501282,0.0586599558591843,-0.527835011482239,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.84727942943573,0.07542335242033,-0.525764882564545,\r\n-0.779445171356201,0.302528470754623,-0.548581421375275,-0.766734421253204,0.133254423737526,-0.627982079982758,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.726539850234985,0.250395864248276,-0.639876246452332,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.760378837585449,0.270485460758209,-0.590475618839264,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.624453246593475,0.299994498491287,-0.721152722835541,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.588023006916046,0.118493303656578,-0.800117552280426,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.422847837209702,0.0786271914839745,-0.902783155441284,\r\n-0.448940217494965,0.0722252801060677,-0.890637993812561,-0.422847837209702,0.0786271914839745,-0.902783155441284,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.71174681186676,0.195062279701233,-0.674808859825134,-0.666239500045776,0.277733534574509,-0.692090213298798,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.71174681186676,0.195062279701233,-0.674808859825134,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.276597023010254,0.0217190608382225,-0.960740447044373,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.688621938228607,-0.708518147468567,0.154278099536896,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.807590782642365,-0.582777559757233,0.0903738215565681,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.933639526367188,-0.352304935455322,-0.0647953674197197,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.925961554050446,0.142966225743294,-0.34950789809227,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.835845828056335,0.111159645020962,-0.537592053413391,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.959231853485107,-0.227846100926399,-0.167213261127472,-0.959951102733612,-0.266691774129868,-0.0858449563384056,\r\n-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.874545037746429,0.278226375579834,-0.397191345691681,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.874537765979767,0.0494651719927788,-0.482427984476089,-0.874545037746429,0.278226375579834,-0.397191345691681,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.84727942943573,0.07542335242033,-0.525764882564545,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.650392413139343,0.296321749687195,-0.699416160583496,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.746439337730408,0.251123130321503,-0.616250991821289,\r\n-0.666239500045776,0.277733534574509,-0.692090213298798,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.779349863529205,0.259846329689026,-0.570169687271118,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.696393370628357,0.0794676318764687,-0.713246762752533,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.54071456193924,0.230437949299812,-0.809027791023254,-0.335748136043549,-0.00119506998453289,-0.941950976848602,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.422847837209702,0.0786271914839745,-0.902783155441284,-0.422847837209702,0.0786271914839745,-0.902783155441284,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.775032162666321,0.122800596058369,-0.619875013828278,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.744803071022034,-0.635968267917633,0.202021285891533,\r\n-0.608868300914764,-0.755570590496063,0.241645351052284,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.925961554050446,0.142966225743294,-0.34950789809227,-0.924719989299774,0.0969454869627953,-0.368095755577087,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.925961554050446,0.142966225743294,-0.34950789809227,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.846982479095459,0.108669370412827,-0.520395517349243,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.974448204040527,-0.154443427920341,-0.163088217377663,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.976470589637756,0.0400920882821083,-0.211890816688538,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.9816734790802,-0.0327998176217079,-0.187726706266403,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.961506247520447,0.0933611243963242,-0.258436262607574,-0.966968834400177,0.147799476981163,-0.207669302821159,\r\n-0.874545037746429,0.278226375579834,-0.397191345691681,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.874545037746429,0.278226375579834,-0.397191345691681,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.779445171356201,0.302528470754623,-0.548581421375275,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.756629407405853,0.352677911520004,-0.550572514533997,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.828271687030792,0.297514706850052,-0.474816620349884,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.741117298603058,0.272567182779312,-0.613556921482086,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.743590116500854,0.478591173887253,-0.466930598020554,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.671020925045013,0.212713330984116,-0.71027022600174,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.556539714336395,0.231997117400169,-0.797772347927094,\r\n-0.54071456193924,0.230437949299812,-0.809027791023254,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.47452101111412,0.179707512259483,-0.861704647541046,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.313534259796143,-0.0874018594622612,-0.94554591178894,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.690409064292908,-0.274831056594849,-0.669180870056152,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.26747527718544,-0.206456437706947,-0.941186845302582,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.744803071022034,-0.635968267917633,0.202021285891533,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.608868300914764,-0.755570590496063,0.241645351052284,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.865427553653717,-0.485506027936935,0.123769447207451,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.924053847789764,-0.381935209035873,0.0158095471560955,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.959951102733612,-0.266691774129868,-0.0858449563384056,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.925961554050446,0.142966225743294,-0.34950789809227,\r\n-0.950430929660797,0.168757498264313,-0.261154800653458,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.925961554050446,0.142966225743294,-0.34950789809227,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.878725290298462,0.0981084406375885,-0.467136412858963,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.916255235671997,0.14671503007412,-0.372761189937592,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.874545037746429,0.278226375579834,-0.397191345691681,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.901627838611603,0.125260517001152,-0.413977026939392,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.780808687210083,0.423260450363159,-0.459552049636841,-0.846980810165405,0.426129698753357,-0.317862987518311,\r\n-0.847705125808716,0.365103960037231,-0.384831249713898,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.741117298603058,0.272567182779312,-0.613556921482086,-0.626015901565552,0.363566100597382,-0.689872145652771,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.746439337730408,0.251123130321503,-0.616250991821289,-0.741117298603058,0.272567182779312,-0.613556921482086,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.836179137229919,0.349280446767807,-0.422856450080872,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.743590116500854,0.478591173887253,-0.466930598020554,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.68465781211853,0.414424508810043,-0.599579691886902,-0.743590116500854,0.478591173887253,-0.466930598020554,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.839148759841919,0.172052949666977,-0.515971899032593,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.795484840869904,0.171404406428337,-0.581226587295532,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.601824223995209,-0.436562806367874,-0.668745338916779,\r\n-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.492739230394363,-0.100018449127674,-0.864409744739532,-0.690409064292908,-0.274831056594849,-0.669180870056152,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.690409064292908,-0.274831056594849,-0.669180870056152,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.388349682092667,-0.268967986106873,-0.881385624408722,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.694850444793701,-0.668721854686737,0.264563649892807,-0.633143723011017,-0.720825433731079,0.282027572393417,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.986415266990662,-0.142391860485077,-0.081910528242588,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.992866218090057,-0.0472893640398979,-0.109453439712524,\r\n-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.983574569225311,0.0565484724938869,-0.171415522694588,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.976270020008087,0.0974341854453087,-0.193399608135223,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.992866218090057,-0.0472893640398979,-0.109453439712524,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.950430929660797,0.168757498264313,-0.261154800653458,-0.966968834400177,0.147799476981163,-0.207669302821159,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.92243480682373,0.185279533267021,-0.338799923658371,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.847705125808716,0.365103960037231,-0.384831249713898,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.741117298603058,0.272567182779312,-0.613556921482086,\r\n-0.712329745292664,0.356151461601257,-0.604766309261322,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.741117298603058,0.272567182779312,-0.613556921482086,-0.743590116500854,0.478591173887253,-0.466930598020554,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.726635813713074,0.219126954674721,-0.651140213012695,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.83528208732605,0.17869833111763,-0.519971668720245,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.617100477218628,0.255994409322739,-0.744079113006592,-0.556539714336395,0.231997117400169,-0.797772347927094,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.773383557796478,-0.168004468083382,-0.611271023750305,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.690409064292908,-0.274831056594849,-0.669180870056152,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.614948034286499,0.0135632585734129,-0.78845089673996,-0.773383557796478,-0.168004468083382,-0.611271023750305,-0.690409064292908,-0.274831056594849,-0.669180870056152,\r\n-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.38706761598587,-0.43967404961586,-0.810472249984741,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.792716920375824,-0.562423884868622,0.235115095973015,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.913574814796448,-0.391461968421936,0.110174730420113,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.961938917636871,-0.273157387971878,-0.00764920935034752,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.933638870716095,0.254806280136108,-0.25177788734436,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.988328754901886,-0.150460451841354,0.023828562349081,\r\n-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.967178523540497,0.199948713183403,-0.156799733638763,-0.925883412361145,0.246250137686729,-0.28653210401535,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.907988846302032,0.327265858650208,-0.261635631322861,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.838950455188751,0.510701596736908,-0.188005298376083,-0.828309535980225,0.453530669212341,-0.328957766294479,-0.838950455188751,0.510701596736908,-0.188005298376083,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.846980810165405,0.426129698753357,-0.317862987518311,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.712329745292664,0.356151461601257,-0.604766309261322,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.744589686393738,0.460185348987579,-0.483544707298279,\r\n-0.813536822795868,0.14073134958744,-0.564227223396301,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.797243118286133,0.158883705735207,-0.582373857498169,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.84991192817688,0.127630770206451,-0.511233747005463,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.627749383449554,0.196688055992126,-0.753156244754791,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.773383557796478,-0.168004468083382,-0.611271023750305,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.773383557796478,-0.168004468083382,-0.611271023750305,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.601824223995209,-0.436562806367874,-0.668745338916779,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.718601405620575,-0.635046601295471,0.283421337604523,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.922705471515656,-0.343195647001266,0.175587683916092,\r\n-0.836249589920044,-0.488314986228943,0.249469384551048,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.985367596149445,-0.170012503862381,-0.0120959617197514,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.988328754901886,-0.150460451841354,0.023828562349081,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.989532709121704,0.0464880913496017,-0.136615633964539,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.97896820306778,0.122087933123112,-0.163449421525002,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.972472250461578,0.166999414563179,-0.162507742643356,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.996132791042328,-0.0711166337132454,-0.0515925064682961,-0.988328754901886,-0.150460451841354,0.023828562349081,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.953340351581573,0.280049055814743,-0.112758934497833,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.941488265991211,0.29791384935379,-0.157629504799843,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.967642247676849,0.212549328804016,-0.135982230305672,-0.953340351581573,0.280049055814743,-0.112758934497833,\r\n-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.914500772953033,0.334215313196182,-0.22800949215889,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.838950455188751,0.510701596736908,-0.188005298376083,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.838950455188751,0.510701596736908,-0.188005298376083,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.846835136413574,0.428349316120148,-0.315256953239441,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.744589686393738,0.460185348987579,-0.483544707298279,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.878761768341064,0.122257813811302,-0.461335718631744,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.728878438472748,0.200672194361687,-0.654573678970337,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.85830819606781,0.0789754018187523,-0.507020473480225,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.750862598419189,0.21888667345047,-0.623132288455963,\r\n-0.794517815113068,0.124854557216167,-0.594266474246979,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.696617782115936,0.00753487646579742,-0.717402756214142,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.756174743175507,-0.485858529806137,-0.438339024782181,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.787171959877014,-0.348653137683868,-0.508724987506866,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.836249589920044,-0.488314986228943,0.249469384551048,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.922705471515656,-0.343195647001266,0.175587683916092,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.967096269130707,-0.247286185622215,0.0597857907414436,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.988328754901886,-0.150460451841354,0.023828562349081,-0.896097838878632,0.422040373086929,-0.137442469596863,\r\n-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.986236453056335,0.137000486254692,-0.0925655961036682,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.988328754901886,-0.150460451841354,0.023828562349081,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.953340351581573,0.280049055814743,-0.112758934497833,-0.960077464580536,0.243679061532021,-0.137374013662338,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.961562991142273,0.265617042779922,-0.0695999339222908,-0.953340351581573,0.280049055814743,-0.112758934497833,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.900423049926758,0.392755508422852,-0.187033012509346,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.863938868045807,0.471084982156754,-0.178012728691101,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.838950455188751,0.510701596736908,-0.188005298376083,\r\n-0.863873898983002,0.473593682050705,-0.171553984284401,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.859616100788116,0.455028057098389,-0.232399433851242,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.878761768341064,0.122257813811302,-0.461335718631744,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.830092191696167,0.214996710419655,-0.514512598514557,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.85830819606781,0.0789754018187523,-0.507020473480225,-0.829612135887146,0.119464851915836,-0.545409679412842,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.878761768341064,0.122257813811302,-0.461335718631744,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.85830819606781,0.0789754018187523,-0.507020473480225,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.750862598419189,0.21888667345047,-0.623132288455963,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.674601256847382,0.229614943265915,-0.701562523841858,-0.750862598419189,0.21888667345047,-0.623132288455963,-0.794517815113068,0.124854557216167,-0.594266474246979,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.794517815113068,0.124854557216167,-0.594266474246979,-0.904558837413788,-0.0479606278240681,-0.423642456531525,\r\n-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.814261198043823,-0.287834465503693,-0.504112958908081,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.719840347766876,-0.597749292850494,-0.352881878614426,-0.487674444913864,-0.71401447057724,-0.5023512840271,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.798175275325775,-0.509768307209015,0.32101759314537,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.955403625965118,-0.245162770152092,0.16461780667305,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.877891063690186,0.468573480844498,-0.0987221747636795,\r\n-0.896097838878632,0.422040373086929,-0.137442469596863,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.896097838878632,0.422040373086929,-0.137442469596863,-0.877891063690186,0.468573480844498,-0.0987221747636795,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.881420969963074,0.445895045995712,-0.15580290555954,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.998775124549866,0.046981792896986,-0.0155220041051507,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.997554540634155,-0.0620499067008495,0.0321671850979328,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.976630926132202,0.193388015031815,-0.0937712788581848,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.953340351581573,0.280049055814743,-0.112758934497833,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.912677884101868,0.403479188680649,-0.0649881660938263,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.884917378425598,0.373373210430145,-0.278412520885468,\r\n-0.897382438182831,0.256597250699997,-0.358974158763886,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.901072919368744,0.355851233005524,-0.247865572571754,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.844147980213165,0.413117915391922,-0.341683566570282,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.884917378425598,0.373373210430145,-0.278412520885468,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.878761768341064,0.122257813811302,-0.461335718631744,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.85830819606781,0.0789754018187523,-0.507020473480225,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.857795596122742,0.264787971973419,-0.440538167953491,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.813536822795868,0.14073134958744,-0.564227223396301,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.750862598419189,0.21888667345047,-0.623132288455963,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.730697810649872,0.26838943362236,-0.627732276916504,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.794517815113068,0.124854557216167,-0.594266474246979,-0.750862598419189,0.21888667345047,-0.623132288455963,-0.912554025650024,0.0783561840653419,-0.401379227638245,\r\n-0.794517815113068,0.124854557216167,-0.594266474246979,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.904558837413788,-0.0479606278240681,-0.423642456531525,-0.791677594184875,-0.000419228366808966,-0.610938727855682,-0.904558837413788,-0.0479606278240681,-0.423642456531525,-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.79578423500061,-0.523807466030121,-0.303896635770798,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.523414552211761,-0.809582769870758,-0.265730679035187,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.86626410484314,-0.383763164281845,0.319862842559814,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.912330627441406,-0.291861593723297,0.287175178527832,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.902660489082336,0.426464527845383,-0.0577229484915733,\r\n-0.933872103691101,0.340713739395142,-0.108613528311253,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.877891063690186,0.468573480844498,-0.0987221747636795,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.877891063690186,0.468573480844498,-0.0987221747636795,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.867519795894623,0.473859637975693,-0.1512161642313,-0.970989644527435,0.155899941921234,0.181311845779419,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.983271956443787,-0.132416158914566,0.125068575143814,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.964459776878357,0.236554071307182,0.117726020514965,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.947799563407898,0.314916610717773,0.050034124404192,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.932500720024109,0.351211309432983,-0.0842195674777031,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.863873898983002,0.473593682050705,-0.171553984284401,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.884193956851959,0.417010605335236,-0.210482984781265,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.872878432273865,0.0609751231968403,-0.484112709760666,\r\n-0.872866451740265,0.196496918797493,-0.446646422147751,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.876578330993652,0.293457984924316,-0.381435185670853,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.804808259010315,-0.0537147372961044,-0.591099202632904,-0.896158516407013,0.0985836386680603,-0.432644307613373,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.904558837413788,-0.0479606278240681,-0.423642456531525,\r\n-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.897130131721497,-0.197432607412338,-0.395193368196487,-0.904558837413788,-0.0479606278240681,-0.423642456531525,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.90641850233078,-0.298255175352097,-0.299080640077591,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.914619207382202,-0.353149563074112,-0.196867942810059,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.710139811038971,-0.660676181316376,-0.243327140808105,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.882231712341309,-0.384362518787384,0.271905452013016,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.95492947101593,0.294602632522583,-0.0363161750137806,\r\n-0.933872103691101,0.340713739395142,-0.108613528311253,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.933872103691101,0.340713739395142,-0.108613528311253,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.881798446178436,0.460618585348129,-0.101300850510597,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.887209355831146,0.443666189908981,-0.126569494605064,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.988221883773804,0.146731570363045,0.0434430800378323,-0.970989644527435,0.155899941921234,0.181311845779419,-0.964459776878357,0.236554071307182,0.117726020514965,-0.970989644527435,0.155899941921234,0.181311845779419,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.967539012432098,0.0885045453906059,0.236717447638512,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.967539012432098,0.0885045453906059,0.236717447638512,-0.990861833095551,0.0301354136317968,0.131471067667007,-0.947799563407898,0.314916610717773,0.050034124404192,-0.974449932575226,0.22448992729187,-0.00718205980956554,-0.964459776878357,0.236554071307182,0.117726020514965,-0.951499104499817,0.292440563440323,-0.095539428293705,-0.947799563407898,0.314916610717773,0.050034124404192,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.901295483112335,0.324658006429672,-0.286816120147705,\r\n-0.90241003036499,0.170854985713959,-0.395556032657623,-0.897382438182831,0.256597250699997,-0.358974158763886,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.907938241958618,0.272937595844269,-0.318045765161514,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.804808259010315,-0.0537147372961044,-0.591099202632904,-0.862611055374146,0.217375203967094,-0.456782251596451,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.872866451740265,0.196496918797493,-0.446646422147751,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.8738734126091,0.078564316034317,-0.479763269424438,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.831779778003693,0.131406530737877,-0.53932785987854,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.869276702404022,0.0701465830206871,-0.489323377609253,-0.804808259010315,-0.0537147372961044,-0.591099202632904,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.759290337562561,0.233869895339012,-0.607275068759918,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.877088308334351,0.359795600175858,-0.318218618631363,\r\n-0.692806422710419,0.522170424461365,-0.497350096702576,-0.703711986541748,0.382640808820724,-0.598644554615021,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.912554025650024,0.0783561840653419,-0.401379227638245,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.793010592460632,-0.559091627597809,-0.241972595453262,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.857821643352509,-0.453846961259842,-0.241173848509789,-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.779409050941467,-0.585645854473114,-0.222576394677162,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.653445422649384,-0.715004563331604,-0.248550653457642,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.459643959999084,-0.860540568828583,-0.219538941979408,\r\n-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.898401260375977,-0.284646242856979,0.334442168474197,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.937962174415588,-0.174183398485184,0.299811601638794,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.974609375,0.161337003111839,-0.155263930559158,-0.933872103691101,0.340713739395142,-0.108613528311253,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.974609375,0.161337003111839,-0.155263930559158,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.933872103691101,0.340713739395142,-0.108613528311253,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.917776525020599,0.373868614435196,-0.133821979165077,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.893257141113281,0.392857402563095,-0.218528479337692,-0.964459776878357,0.236554071307182,0.117726020514965,-0.970989644527435,0.155899941921234,0.181311845779419,-0.945877254009247,0.236896634101868,0.221801429986954,-0.957439541816711,0.14934179186821,0.246994778513908,-0.970989644527435,0.155899941921234,0.181311845779419,-0.967539012432098,0.0885045453906059,0.236717447638512,-0.967060565948486,-0.0217852275818586,0.25361242890358,-0.973507821559906,0.0638604611158371,0.219554767012596,\r\n-0.967539012432098,0.0885045453906059,0.236717447638512,-0.964459776878357,0.236554071307182,0.117726020514965,-0.92822265625,0.324750036001205,0.18149371445179,-0.947799563407898,0.314916610717773,0.050034124404192,-0.923226177692413,0.377206474542618,-0.073270782828331,-0.947799563407898,0.314916610717773,0.050034124404192,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.902660489082336,0.426464527845383,-0.0577229484915733,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.901295483112335,0.324658006429672,-0.286816120147705,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.804808259010315,-0.0537147372961044,-0.591099202632904,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.831010222434998,0.051106546074152,-0.553904294967651,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.865568876266479,-0.0307136308401823,-0.499847024679184,-0.804808259010315,-0.0537147372961044,-0.591099202632904,\r\n-0.741185665130615,0.293581783771515,-0.603699743747711,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.976545631885529,0.161081969738007,-0.14286781847477,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.877088308334351,0.359795600175858,-0.318218618631363,-0.804858565330505,0.292421996593475,-0.516422212123871,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.877088308334351,0.359795600175858,-0.318218618631363,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.935165107250214,-0.323900759220123,-0.143368408083916,-0.933131217956543,-0.0716436356306076,-0.352325528860092,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.959817349910736,0.0232877675443888,-0.279657453298569,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.992205142974854,-0.0652028247714043,-0.106195613741875,\r\n-0.977699100971222,-0.126745045185089,-0.167451575398445,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.991125285625458,0.0155693599954247,-0.132016032934189,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.459643959999084,-0.860540568828583,-0.219538941979408,-0.610628485679626,-0.750958800315857,-0.251383304595947,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.954124748706818,-0.265357881784439,0.138676434755325,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.997471392154694,0.0207450296729803,0.0679735094308853,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.974609375,0.161337003111839,-0.155263930559158,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.974609375,0.161337003111839,-0.155263930559158,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.935131311416626,0.318033456802368,-0.156153947114944,-0.958287000656128,0.206324473023415,-0.197777986526489,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.95975250005722,0.0696183145046234,-0.27208137512207,\r\n-0.928163468837738,0.193595975637436,-0.317856967449188,-0.957439541816711,0.14934179186821,0.246994778513908,-0.945877254009247,0.236896634101868,0.221801429986954,-0.970989644527435,0.155899941921234,0.181311845779419,-0.964459776878357,0.236554071307182,0.117726020514965,-0.945877254009247,0.236896634101868,0.221801429986954,-0.92822265625,0.324750036001205,0.18149371445179,-0.957439541816711,0.14934179186821,0.246994778513908,-0.967539012432098,0.0885045453906059,0.236717447638512,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.92822265625,0.324750036001205,0.18149371445179,-0.904910326004028,0.40986156463623,0.114676743745804,-0.947799563407898,0.314916610717773,0.050034124404192,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.947799563407898,0.314916610717773,0.050034124404192,-0.904910326004028,0.40986156463623,0.114676743745804,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.894730985164642,0.145719915628433,-0.422163635492325,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.872878432273865,0.0609751231968403,-0.484112709760666,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.90241003036499,0.170854985713959,-0.395556032657623,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.804808259010315,-0.0537147372961044,-0.591099202632904,\r\n-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.797380805015564,-0.0960555523633957,-0.595782697200775,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.830479681491852,0.0140059618279338,-0.5568727850914,-0.770369470119476,0.121943831443787,-0.625827789306641,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.685735881328583,0.353696793317795,-0.636132597923279,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.976545631885529,0.161081969738007,-0.14286781847477,-0.950042068958282,0.171459585428238,-0.260809600353241,-0.976545631885529,0.161081969738007,-0.14286781847477,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.877088308334351,0.359795600175858,-0.318218618631363,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.877088308334351,0.359795600175858,-0.318218618631363,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.606659471988678,0.583886563777924,-0.53948175907135,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.692806422710419,0.522170424461365,-0.497350096702576,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.777323842048645,0.452586442232132,-0.436958819627762,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.967224180698395,0.0492593571543694,-0.249099507927895,\r\n-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.919622659683228,0.00509665627032518,-0.39276984333992,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.992205142974854,-0.0652028247714043,-0.106195613741875,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.901303112506866,-0.409041196107864,-0.142610847949982,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.754329264163971,-0.622455537319183,-0.208653494715691,-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.459643959999084,-0.860540568828583,-0.219538941979408,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.94942182302475,-0.185368105769157,0.253449678421021,-0.985034346580505,-0.166498497128487,0.0445587895810604,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.962740659713745,-0.0927864462137222,0.254009664058685,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.997471392154694,0.0207450296729803,0.0679735094308853,-0.973507821559906,0.0638604611158371,0.219554767012596,\r\n-0.997471392154694,0.0207450296729803,0.0679735094308853,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.95492947101593,0.294602632522583,-0.0363161750137806,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.974609375,0.161337003111839,-0.155263930559158,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.876280546188354,0.473167240619659,0.0908024162054062,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.974609375,0.161337003111839,-0.155263930559158,-0.958287000656128,0.206324473023415,-0.197777986526489,-0.948646247386932,0.259989738464355,-0.180209904909134,-0.941094219684601,0.271845877170563,-0.201100215315819,-0.958287000656128,0.206324473023415,-0.197777986526489,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.928163468837738,0.193595975637436,-0.317856967449188,-0.957439541816711,0.14934179186821,0.246994778513908,-0.96141105890274,0.150407552719116,0.230361118912697,-0.945877254009247,0.236896634101868,0.221801429986954,-0.939638555049896,0.263473749160767,0.218313574790955,-0.92822265625,0.324750036001205,0.18149371445179,-0.945877254009247,0.236896634101868,0.221801429986954,-0.957439541816711,0.14934179186821,0.246994778513908,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.96141105890274,0.150407552719116,0.230361118912697,-0.904910326004028,0.40986156463623,0.114676743745804,-0.92822265625,0.324750036001205,0.18149371445179,-0.901921927928925,0.393500864505768,0.178027436137199,-0.899248540401459,0.437365710735321,0.00795301608741283,-0.904910326004028,0.40986156463623,0.114676743745804,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.892410933971405,0.451178520917892,0.00637240894138813,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.876280546188354,0.473167240619659,0.0908024162054062,\r\n-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.782282650470734,-0.210195362567902,-0.58638858795166,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.884140312671661,0.0770504251122475,-0.460824370384216,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.724653661251068,-0.154871180653572,-0.6714848279953,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.976545631885529,0.161081969738007,-0.14286781847477,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.967224180698395,0.0492593571543694,-0.249099507927895,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.877088308334351,0.359795600175858,-0.318218618631363,\r\n-0.800956130027771,0.542327404022217,-0.25367346405983,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.925762236118317,-0.0846411734819412,-0.368510574102402,-0.975093126296997,0.0729958042502403,-0.209439441561699,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.986358106136322,0.129132777452469,-0.102089934051037,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.703334271907806,-0.693166673183441,-0.157609328627586,\r\n-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.703334271907806,-0.693166673183441,-0.157609328627586,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.990543961524963,-0.0600122734904289,0.123373597860336,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.974609375,0.161337003111839,-0.155263930559158,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.876280546188354,0.473167240619659,0.0908024162054062,-0.861917018890381,0.489119470119476,0.133645325899124,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.974609375,0.161337003111839,-0.155263930559158,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.958287000656128,0.206324473023415,-0.197777986526489,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.939638555049896,0.263473749160767,0.218313574790955,-0.945877254009247,0.236896634101868,0.221801429986954,-0.96141105890274,0.150407552719116,0.230361118912697,-0.901921927928925,0.393500864505768,0.178027436137199,-0.92822265625,0.324750036001205,0.18149371445179,-0.939638555049896,0.263473749160767,0.218313574790955,-0.973507821559906,0.0638604611158371,0.219554767012596,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.96141105890274,0.150407552719116,0.230361118912697,-0.904910326004028,0.40986156463623,0.114676743745804,-0.901921927928925,0.393500864505768,0.178027436137199,-0.857805788516998,0.504825413227081,0.0965420678257942,\r\n-0.876280546188354,0.473167240619659,0.0908024162054062,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.861917018890381,0.489119470119476,0.133645325899124,-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.853789508342743,-0.0435085594654083,-0.518797039985657,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.813420474529266,-0.224174067378044,-0.536742925643921,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.782282650470734,-0.210195362567902,-0.58638858795166,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.782282650470734,-0.210195362567902,-0.58638858795166,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.914644956588745,0.0601297095417976,-0.39976105093956,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.790927588939667,-0.0816693753004074,-0.606435060501099,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.719043850898743,-0.182250156998634,-0.670641958713531,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.801796913146973,0.0477935783565044,-0.595682203769684,-0.741185665130615,0.293581783771515,-0.603699743747711,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.502568066120148,0.776355803012848,-0.380390584468842,-0.570643484592438,0.629339873790741,-0.527538895606995,-0.570643484592438,0.629339873790741,-0.527538895606995,\r\n-0.502568066120148,0.776355803012848,-0.380390584468842,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.955744445323944,0.272337943315506,-0.111285589635372,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.901247382164001,0.417177647352219,-0.117114387452602,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.496241748332977,0.774502992630005,-0.392286986112595,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.581708669662476,0.725799441337585,-0.367192059755325,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.682915925979614,0.647728025913239,-0.337748348712921,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.800956130027771,0.542327404022217,-0.25367346405983,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.996757745742798,0.0748130232095718,-0.0296124871820211,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.991035461425781,0.117562510073185,-0.0634639859199524,\r\n-0.967973172664642,0.251038879156113,0.00270372536033392,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.935697257518768,-0.172204747796059,-0.307921797037125,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.999588549137115,-0.0162633527070284,-0.0236199516803026,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.933921933174133,0.310261070728302,0.177560597658157,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.999162673950195,0.0407183691859245,0.00398517632856965,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.942939698696136,-0.259844422340393,-0.208195805549622,\r\n-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.95975250005722,0.0696183145046234,-0.27208137512207,-0.946025609970093,0.308807224035263,0.0983544737100601,-0.861917018890381,0.489119470119476,0.133645325899124,-0.933921933174133,0.310261070728302,0.177560597658157,-0.939638555049896,0.263473749160767,0.218313574790955,-0.96141105890274,0.150407552719116,0.230361118912697,-0.972901344299316,0.183302223682404,0.140936523675919,-0.939638555049896,0.263473749160767,0.218313574790955,-0.941250681877136,0.294713407754898,0.164897277951241,-0.901921927928925,0.393500864505768,0.178027436137199,-0.972901344299316,0.183302223682404,0.140936523675919,-0.96141105890274,0.150407552719116,0.230361118912697,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.854961931705475,0.501576662063599,0.13213948905468,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.901921927928925,0.393500864505768,0.178027436137199,-0.854961931705475,0.501576662063599,0.13213948905468,-0.861917018890381,0.489119470119476,0.133645325899124,-0.857805788516998,0.504825413227081,0.0965420678257942,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.855265498161316,-0.0433707386255264,-0.516371726989746,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.873041033744812,-0.226590901613235,-0.431805223226547,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.782282650470734,-0.210195362567902,-0.58638858795166,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.77246755361557,0.186360120773315,-0.607094526290894,\r\n-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.79402482509613,0.0624225959181786,-0.604671657085419,-0.77246755361557,0.186360120773315,-0.607094526290894,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.502568066120148,0.776355803012848,-0.380390584468842,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.502568066120148,0.776355803012848,-0.380390584468842,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.979153037071228,0.187484666705132,-0.0781582593917847,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.987382888793945,0.0439161621034145,-0.152139097452164,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.866234362125397,0.482962995767593,0.128002524375916,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.567551076412201,0.79988569021225,-0.195111483335495,-0.689817190170288,0.712683498859406,0.127413898706436,\r\n-0.845274150371552,0.534313201904297,0.00456941500306129,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.979612708091736,-0.119650930166245,-0.161376923322678,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.99623304605484,-0.0582655817270279,-0.064224049448967,-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.998905718326569,-0.0268261320888996,-0.0383068434894085,-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.972114205360413,-0.159959807991982,-0.171483904123306,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.854519128799438,-0.507620275020599,-0.110084965825081,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.998797535896301,-0.046417560428381,-0.0157732721418142,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.744940161705017,-0.650514781475067,-0.147967919707298,-0.956160962581635,0.139312699437141,0.257581204175949,\r\n-0.983042120933533,0.0596410930156708,0.173409909009933,-0.933921933174133,0.310261070728302,0.177560597658157,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.969441473484039,-0.22924043238163,0.0873608514666557,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.953938961029053,-0.259643346071243,-0.150285169482231,-0.942939698696136,-0.259844422340393,-0.208195805549622,-0.942939698696136,-0.259844422340393,-0.208195805549622,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.972050428390503,-0.107381701469421,-0.208774998784065,-0.896392226219177,0.410800218582153,0.166505411267281,-0.933921933174133,0.310261070728302,0.177560597658157,-0.861917018890381,0.489119470119476,0.133645325899124,-0.941250681877136,0.294713407754898,0.164897277951241,-0.939638555049896,0.263473749160767,0.218313574790955,-0.972901344299316,0.183302223682404,0.140936523675919,-0.904023408889771,0.392147332429886,0.17018236219883,-0.901921927928925,0.393500864505768,0.178027436137199,-0.941250681877136,0.294713407754898,0.164897277951241,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.972901344299316,0.183302223682404,0.140936523675919,-0.991766750812531,0.0765160620212555,0.102683752775192,-0.861823558807373,0.477365404367447,0.171412706375122,-0.854961931705475,0.501576662063599,0.13213948905468,-0.901921927928925,0.393500864505768,0.178027436137199,-0.854961931705475,0.501576662063599,0.13213948905468,-0.896392226219177,0.410800218582153,0.166505411267281,-0.861917018890381,0.489119470119476,0.133645325899124,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.809071958065033,-0.172275766730309,-0.561892747879028,\r\n-0.911522150039673,-0.113073691725731,-0.395400524139404,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.873041033744812,-0.226590901613235,-0.431805223226547,-0.826730787754059,-0.217851743102074,-0.518706738948822,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.873041033744812,-0.226590901613235,-0.431805223226547,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.8203005194664,-0.0976782292127609,-0.563529789447784,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.77246755361557,0.186360120773315,-0.607094526290894,-0.73780345916748,0.00810437742620707,-0.674966812133789,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.77246755361557,0.186360120773315,-0.607094526290894,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.67628812789917,0.581147611141205,-0.452660620212555,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.799716413021088,0.288225650787354,-0.526668250560761,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.502568066120148,0.776355803012848,-0.380390584468842,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.434468120336533,0.824321508407593,-0.362948179244995,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.354277938604355,0.901199281215668,-0.249653086066246,\r\n-0.970246076583862,0.240251779556274,0.0300267897546291,-0.938269376754761,0.344918131828308,0.0261144936084747,-0.866234362125397,0.482962995767593,0.128002524375916,-0.932800352573395,0.322533518075943,0.160796731710434,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.866234362125397,0.482962995767593,0.128002524375916,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.769551515579224,0.623329758644104,0.138745352625847,-0.406860113143921,0.874798834323883,-0.263043373823166,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.473385870456696,0.851354718208313,-0.226055026054382,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.513432919979095,0.847125887870789,0.13698174059391,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.689817190170288,0.712683498859406,0.127413898706436,-0.769551515579224,0.623329758644104,0.138745352625847,-0.845274150371552,0.534313201904297,0.00456941500306129,-0.689817190170288,0.712683498859406,0.127413898706436,-0.671454131603241,0.737534701824188,-0.0720540210604668,-0.513432919979095,0.847125887870789,0.13698174059391,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.920154750347137,-0.31935840845108,-0.226550906896591,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.991035461425781,0.117562510073185,-0.0634639859199524,-0.920154750347137,-0.31935840845108,-0.226550906896591,-0.91506415605545,-0.393371492624283,-0.0889736711978912,\r\n-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.888700425624847,-0.450864404439926,-0.0832629129290581,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.916178703308105,-0.38638499379158,-0.10641011595726,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.959977030754089,-0.257250756025314,-0.110752061009407,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.967973172664642,0.251038879156113,0.00270372536033392,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.956160962581635,0.139312699437141,0.257581204175949,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.983042120933533,0.0596410930156708,0.173409909009933,-0.896392226219177,0.410800218582153,0.166505411267281,-0.956160962581635,0.139312699437141,0.257581204175949,-0.933921933174133,0.310261070728302,0.177560597658157,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.969441473484039,-0.22924043238163,0.0873608514666557,-0.98669695854187,-0.118887573480606,0.110882140696049,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.969441473484039,-0.22924043238163,0.0873608514666557,-0.968871057033539,-0.242077976465225,0.0518363751471043,\r\n-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.953938961029053,-0.259643346071243,-0.150285169482231,-0.977149248123169,-0.209488213062286,-0.0359725318849087,-0.942939698696136,-0.259844422340393,-0.208195805549622,-0.953938961029053,-0.259643346071243,-0.150285169482231,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.942939698696136,-0.259844422340393,-0.208195805549622,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.941250681877136,0.294713407754898,0.164897277951241,-0.972901344299316,0.183302223682404,0.140936523675919,-0.904023408889771,0.392147332429886,0.17018236219883,-0.861823558807373,0.477365404367447,0.171412706375122,-0.901921927928925,0.393500864505768,0.178027436137199,-0.928602576255798,0.352295219898224,0.116555690765381,-0.904023408889771,0.392147332429886,0.17018236219883,-0.941250681877136,0.294713407754898,0.164897277951241,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.972901344299316,0.183302223682404,0.140936523675919,-0.98514324426651,0.166968986392021,0.0401755645871162,-0.861823558807373,0.477365404367447,0.171412706375122,-0.872059106826782,0.464915722608566,0.152860149741173,-0.854961931705475,0.501576662063599,0.13213948905468,-0.854961931705475,0.501576662063599,0.13213948905468,-0.872059106826782,0.464915722608566,0.152860149741173,-0.896392226219177,0.410800218582153,0.166505411267281,-0.906847238540649,-0.227412149310112,-0.354840397834778,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.873041033744812,-0.226590901613235,-0.431805223226547,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.932247817516327,-0.134427458047867,-0.335921287536621,\r\n-0.8203005194664,-0.0976782292127609,-0.563529789447784,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.8203005194664,-0.0976782292127609,-0.563529789447784,-0.809071958065033,-0.172275766730309,-0.561892747879028,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.868651926517487,-0.233319967985153,-0.437041699886322,-0.779849708080292,0.0270171500742435,-0.625383377075195,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.77246755361557,0.186360120773315,-0.607094526290894,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.932800352573395,0.322533518075943,0.160796731710434,-0.970246076583862,0.240251779556274,0.0300267897546291,-0.866234362125397,0.482962995767593,0.128002524375916,-0.954977512359619,0.237777575850487,0.177425056695938,\r\n-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.932800352573395,0.322533518075943,0.160796731710434,-0.866234362125397,0.482962995767593,0.128002524375916,-0.769551515579224,0.623329758644104,0.138745352625847,-0.69599324464798,0.686305463314056,0.211134761571884,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.388167560100555,0.907513916492462,-0.160450413823128,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.513432919979095,0.847125887870789,0.13698174059391,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.326176375150681,0.94166088104248,0.08296749740839,-0.689817190170288,0.712683498859406,0.127413898706436,-0.606728374958038,0.761924266815186,0.226609691977501,-0.769551515579224,0.623329758644104,0.138745352625847,-0.689817190170288,0.712683498859406,0.127413898706436,-0.513432919979095,0.847125887870789,0.13698174059391,-0.482303589582443,0.840980708599091,0.245223551988602,-0.995783150196075,0.0844391062855721,0.0358585603535175,-0.954977512359619,0.237777575850487,0.177425056695938,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.969523847103119,-0.236654981970787,-0.0633857473731041,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.920154750347137,-0.31935840845108,-0.226550906896591,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.920154750347137,-0.31935840845108,-0.226550906896591,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.888700425624847,-0.450864404439926,-0.0832629129290581,\r\n-0.91506415605545,-0.393371492624283,-0.0889736711978912,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.888700425624847,-0.450864404439926,-0.0832629129290581,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.988053202629089,0.137807726860046,-0.0689908117055893,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.807421088218689,-0.565440833568573,-0.168367326259613,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.956160962581635,0.139312699437141,0.257581204175949,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.942357063293457,0.228585913777351,0.244359463453293,-0.956160962581635,0.139312699437141,0.257581204175949,-0.896392226219177,0.410800218582153,0.166505411267281,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.969441473484039,-0.22924043238163,0.0873608514666557,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.953938961029053,-0.259643346071243,-0.150285169482231,\r\n-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.953938961029053,-0.259643346071243,-0.150285169482231,-0.928602576255798,0.352295219898224,0.116555690765381,-0.941250681877136,0.294713407754898,0.164897277951241,-0.964949667453766,0.249902233481407,0.0801306068897247,-0.861823558807373,0.477365404367447,0.171412706375122,-0.904023408889771,0.392147332429886,0.17018236219883,-0.891936242580414,0.428394734859467,0.144663691520691,-0.904023408889771,0.392147332429886,0.17018236219883,-0.928602576255798,0.352295219898224,0.116555690765381,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.872059106826782,0.464915722608566,0.152860149741173,-0.861823558807373,0.477365404367447,0.171412706375122,-0.912663996219635,0.401342064142227,0.07725690305233,-0.896392226219177,0.410800218582153,0.166505411267281,-0.872059106826782,0.464915722608566,0.152860149741173,-0.942357063293457,0.228585913777351,0.244359463453293,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.8203005194664,-0.0976782292127609,-0.563529789447784,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.835320472717285,-0.0826358273625374,-0.543517112731934,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.887060582637787,0.241135373711586,-0.39367139339447,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.887060582637787,0.241135373711586,-0.39367139339447,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.875620543956757,0.024555929005146,-0.482374936342239,-0.684507548809052,0.486986637115479,-0.542488038539886,\r\n-0.725150048732758,0.437291860580444,-0.531914532184601,-0.718522369861603,0.268651038408279,-0.641523241996765,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.515419185161591,0.802407562732697,-0.3008072078228,-0.665496587753296,0.633827269077301,-0.3941790163517,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.725150048732758,0.437291860580444,-0.531914532184601,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.386958092451096,0.879264414310455,-0.277772098779678,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.354277938604355,0.901199281215668,-0.249653086066246,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.351722598075867,0.914217114448547,-0.201241597533226,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.776118874549866,0.567174136638641,0.275595366954803,-0.932800352573395,0.322533518075943,0.160796731710434,-0.866234362125397,0.482962995767593,0.128002524375916,-0.932800352573395,0.322533518075943,0.160796731710434,-0.876234471797943,0.4140345454216,0.246553003787994,-0.954977512359619,0.237777575850487,0.177425056695938,-0.606728374958038,0.761924266815186,0.226609691977501,-0.69599324464798,0.686305463314056,0.211134761571884,-0.769551515579224,0.623329758644104,0.138745352625847,-0.69599324464798,0.686305463314056,0.211134761571884,-0.776118874549866,0.567174136638641,0.275595366954803,-0.866234362125397,0.482962995767593,0.128002524375916,-0.457974523305893,0.887162327766418,-0.0565883629024029,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.326176375150681,0.94166088104248,0.08296749740839,\r\n-0.513432919979095,0.847125887870789,0.13698174059391,-0.326176375150681,0.94166088104248,0.08296749740839,-0.368671715259552,0.905612289905548,0.209636375308037,-0.482303589582443,0.840980708599091,0.245223551988602,-0.606728374958038,0.761924266815186,0.226609691977501,-0.689817190170288,0.712683498859406,0.127413898706436,-0.482303589582443,0.840980708599091,0.245223551988602,-0.513432919979095,0.847125887870789,0.13698174059391,-0.368671715259552,0.905612289905548,0.209636375308037,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.954977512359619,0.237777575850487,0.177425056695938,-0.981300890445709,0.101564839482307,0.163502335548401,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.969942390918732,-0.183238491415977,-0.160110205411911,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.888700425624847,-0.450864404439926,-0.0832629129290581,-0.936282873153687,-0.349277257919312,-0.0371448062360287,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.90351390838623,-0.392624080181122,-0.171781346201897,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.888700425624847,-0.450864404439926,-0.0832629129290581,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.978814780712128,-0.190321952104568,-0.075492262840271,-0.988053202629089,0.137807726860046,-0.0689908117055893,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.988053202629089,0.137807726860046,-0.0689908117055893,\r\n-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.992607951164246,0.00180038088001311,-0.12135124206543,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.96582168340683,0.259201288223267,-0.00176714570261538,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.776767671108246,-0.609807848930359,-0.157372787594795,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.720350027084351,-0.659702122211456,-0.214216977357864,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.942357063293457,0.228585913777351,0.244359463453293,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.956160962581635,0.139312699437141,0.257581204175949,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.960816442966461,-0.170901149511337,0.218229755759239,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.958350777626038,-0.213663339614868,0.189503639936447,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.968871057033539,-0.242077976465225,0.0518363751471043,-0.977555811405182,-0.132812187075615,0.163540229201317,\r\n-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.904023408889771,0.392147332429886,0.17018236219883,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.891936242580414,0.428394734859467,0.144663691520691,-0.861823558807373,0.477365404367447,0.171412706375122,-0.891936242580414,0.428394734859467,0.144663691520691,-0.912663996219635,0.401342064142227,0.07725690305233,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.904023408889771,0.392147332429886,0.17018236219883,-0.912663996219635,0.401342064142227,0.07725690305233,-0.966404438018799,0.229635208845139,0.115455456078053,-0.872059106826782,0.464915722608566,0.152860149741173,-0.942357063293457,0.228585913777351,0.244359463453293,-0.872059106826782,0.464915722608566,0.152860149741173,-0.966404438018799,0.229635208845139,0.115455456078053,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.95650589466095,-0.044923223555088,-0.288233041763306,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.932247817516327,-0.134427458047867,-0.335921287536621,-0.95650589466095,-0.044923223555088,-0.288233041763306,-0.920137584209442,-0.16180844604969,-0.356601685285568,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.942031562328339,-0.076435312628746,-0.326701700687408,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.887060582637787,0.241135373711586,-0.39367139339447,\r\n-0.887060582637787,0.241135373711586,-0.39367139339447,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.773928642272949,0.303375363349915,-0.555875718593597,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.511559724807739,0.786329925060272,-0.346398144960403,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.684507548809052,0.486986637115479,-0.542488038539886,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.379235625267029,0.898140609264374,-0.222539409995079,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.776118874549866,0.567174136638641,0.275595366954803,-0.876234471797943,0.4140345454216,0.246553003787994,-0.932800352573395,0.322533518075943,0.160796731710434,-0.876234471797943,0.4140345454216,0.246553003787994,-0.832619369029999,0.460590898990631,0.307572722434998,-0.954977512359619,0.237777575850487,0.177425056695938,-0.486638784408569,0.819304049015045,0.30318883061409,-0.69599324464798,0.686305463314056,0.211134761571884,-0.606728374958038,0.761924266815186,0.226609691977501,-0.69599324464798,0.686305463314056,0.211134761571884,-0.588843584060669,0.741635322570801,0.321309804916382,-0.776118874549866,0.567174136638641,0.275595366954803,-0.482303589582443,0.840980708599091,0.245223551988602,-0.390067994594574,0.867132723331451,0.309721827507019,\r\n-0.606728374958038,0.761924266815186,0.226609691977501,-0.954977512359619,0.237777575850487,0.177425056695938,-0.908743560314178,0.31849592924118,0.269713670015335,-0.981300890445709,0.101564839482307,0.163502335548401,-0.996205985546112,-0.0294287223368883,0.0818991959095001,-0.981300890445709,0.101564839482307,0.163502335548401,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.778771936893463,-0.579979062080383,-0.239036336541176,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.793246150016785,-0.546284794807434,-0.268948525190353,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.934301316738129,-0.354798495769501,-0.0346270054578781,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.988053202629089,0.137807726860046,-0.0689908117055893,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.988053202629089,0.137807726860046,-0.0689908117055893,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.99030214548111,0.119150884449482,-0.0714468359947205,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.931347131729126,-0.331511974334717,-0.150639325380325,-0.979309976100922,0.184114187955856,-0.0839870572090149,\r\n-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.748318791389465,-0.645745992660522,-0.151759400963783,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.942357063293457,0.228585913777351,0.244359463453293,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.960816442966461,-0.170901149511337,0.218229755759239,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.957782328128815,-0.117794170975685,0.262254565954208,-0.960816442966461,-0.170901149511337,0.218229755759239,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.891936242580414,0.428394734859467,0.144663691520691,-0.912663996219635,0.401342064142227,0.07725690305233,-0.891936242580414,0.428394734859467,0.144663691520691,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.947691798210144,0.313144117593765,0.0618131756782532,\r\n-0.974467277526855,0.224493384361267,0.00402954174205661,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.912663996219635,0.401342064142227,0.07725690305233,-0.958693146705627,0.284431636333466,-0.00245903921313584,-0.966404438018799,0.229635208845139,0.115455456078053,-0.942357063293457,0.228585913777351,0.244359463453293,-0.966404438018799,0.229635208845139,0.115455456078053,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.919516444206238,0.0135948592796922,-0.3928162753582,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.95650589466095,-0.044923223555088,-0.288233041763306,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.95650589466095,-0.044923223555088,-0.288233041763306,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.890532433986664,0.0590007752180099,-0.451077342033386,-0.887060582637787,0.241135373711586,-0.39367139339447,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.887060582637787,0.241135373711586,-0.39367139339447,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.622354745864868,0.7222940325737,-0.301605254411697,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.511559724807739,0.786329925060272,-0.346398144960403,-0.582403898239136,0.674869537353516,-0.453163057565689,-0.465635806322098,0.838270902633667,-0.283698916435242,-0.511559724807739,0.786329925060272,-0.346398144960403,\r\n-0.496892601251602,0.841214299201965,-0.213204398751259,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.31704580783844,0.928606331348419,-0.192800760269165,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.303961277008057,0.93551105260849,-0.180073603987694,-0.776118874549866,0.567174136638641,0.275595366954803,-0.749916791915894,0.566605985164642,0.341441720724106,-0.876234471797943,0.4140345454216,0.246553003787994,-0.749916791915894,0.566605985164642,0.341441720724106,-0.832619369029999,0.460590898990631,0.307572722434998,-0.876234471797943,0.4140345454216,0.246553003787994,-0.954977512359619,0.237777575850487,0.177425056695938,-0.832619369029999,0.460590898990631,0.307572722434998,-0.908743560314178,0.31849592924118,0.269713670015335,-0.486638784408569,0.819304049015045,0.30318883061409,-0.588843584060669,0.741635322570801,0.321309804916382,-0.69599324464798,0.686305463314056,0.211134761571884,-0.486638784408569,0.819304049015045,0.30318883061409,-0.606728374958038,0.761924266815186,0.226609691977501,-0.390067994594574,0.867132723331451,0.309721827507019,-0.631712675094604,0.674052774906158,0.382873028516769,-0.776118874549866,0.567174136638641,0.275595366954803,-0.588843584060669,0.741635322570801,0.321309804916382,-0.956071615219116,0.205102950334549,0.209427326917648,-0.981300890445709,0.101564839482307,0.163502335548401,-0.908743560314178,0.31849592924118,0.269713670015335,-0.981300890445709,0.101564839482307,0.163502335548401,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.980760097503662,-0.189732939004898,0.0459448881447315,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.793246150016785,-0.546284794807434,-0.268948525190353,\r\n-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.896683394908905,-0.431651651859283,-0.0981615632772446,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.848882913589478,-0.462819129228592,-0.255335301160812,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.945396542549133,0.321736216545105,-0.0520677044987679,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.990953087806702,-0.0587549693882465,-0.12066400796175,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.652551889419556,-0.731646478176117,-0.197153031826019,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.955940723419189,-0.0631623640656471,0.286684036254883,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.960816442966461,-0.170901149511337,0.218229755759239,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.960816442966461,-0.170901149511337,0.218229755759239,\r\n-0.950047016143799,-0.292958706617355,0.107636846601963,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.947533071041107,-0.179970875382423,0.264180719852448,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.977555811405182,-0.132812187075615,0.163540229201317,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.94210296869278,-0.213476121425629,0.258592009544373,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.993755161762238,-0.0822419822216034,-0.0754109025001526,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.958474218845367,0.06336709856987,-0.278049916028976,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.958693146705627,0.284431636333466,-0.00245903921313584,-0.912663996219635,0.401342064142227,0.07725690305233,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.974467277526855,0.224493384361267,0.00402954174205661,-0.947691798210144,0.313144117593765,0.0618131756782532,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.974467277526855,0.224493384361267,0.00402954174205661,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.942601799964905,0.327495872974396,0.0651786327362061,-0.958693146705627,0.284431636333466,-0.00245903921313584,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.966404438018799,0.229635208845139,0.115455456078053,-0.966404438018799,0.229635208845139,0.115455456078053,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.95650589466095,-0.044923223555088,-0.288233041763306,\r\n-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.95135623216629,0.147671192884445,-0.270396769046783,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.622354745864868,0.7222940325737,-0.301605254411697,-0.74502170085907,0.529623568058014,-0.40551370382309,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.622354745864868,0.7222940325737,-0.301605254411697,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.511559724807739,0.786329925060272,-0.346398144960403,-0.612054944038391,0.67638623714447,-0.409744262695313,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.631712675094604,0.674052774906158,0.382873028516769,-0.749916791915894,0.566605985164642,0.341441720724106,-0.776118874549866,0.567174136638641,0.275595366954803,-0.749916791915894,0.566605985164642,0.341441720724106,-0.64701122045517,0.640067398548126,0.41435495018959,-0.832619369029999,0.460590898990631,0.307572722434998,-0.772884249687195,0.522357702255249,0.360266804695129,-0.908743560314178,0.31849592924118,0.269713670015335,-0.832619369029999,0.460590898990631,0.307572722434998,-0.486638784408569,0.819304049015045,0.30318883061409,\r\n-0.389376103878021,0.837724328041077,0.382889032363892,-0.588843584060669,0.741635322570801,0.321309804916382,-0.456937879323959,0.77647340297699,0.433931648731232,-0.631712675094604,0.674052774906158,0.382873028516769,-0.588843584060669,0.741635322570801,0.321309804916382,-0.981300890445709,0.101564839482307,0.163502335548401,-0.956071615219116,0.205102950334549,0.209427326917648,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.956071615219116,0.205102950334549,0.209427326917648,-0.908743560314178,0.31849592924118,0.269713670015335,-0.837617039680481,0.438248604536057,0.326091736555099,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.803045988082886,-0.561867356300354,-0.198549792170525,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.985692799091339,0.106036469340324,0.131017804145813,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.967267870903015,-0.162063643336296,-0.195264309644699,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.979309976100922,0.184114187955856,-0.0839870572090149,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.990953087806702,-0.0587549693882465,-0.12066400796175,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.900575578212738,-0.412050127983093,-0.138484537601471,\r\n-0.990953087806702,-0.0587549693882465,-0.12066400796175,-0.900575578212738,-0.412050127983093,-0.138484537601471,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.569083690643311,-0.798038482666016,-0.198187246918678,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.957259058952332,-0.284246832132339,0.0534676909446716,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.992490112781525,0.0816010013222694,-0.0911293253302574,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.988447546958923,0.0579709261655808,-0.140038296580315,\r\n-0.992639303207397,0.110842667520046,-0.048793513327837,-0.958693146705627,0.284431636333466,-0.00245903921313584,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.974467277526855,0.224493384361267,0.00402954174205661,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.966404438018799,0.229635208845139,0.115455456078053,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.970814406871796,-0.106576628983021,0.214850321412086,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.958985507488251,0.0958414524793625,-0.266760319471359,-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.976238608360291,-0.043123085051775,-0.212364226579666,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.951296627521515,0.246235713362694,-0.185479208827019,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.996884822845459,-0.0243804212659597,-0.075007937848568,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.854314565658569,0.458988815546036,-0.243876561522484,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.622354745864868,0.7222940325737,-0.301605254411697,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.37371426820755,0.912411391735077,-0.166862055659294,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.496892601251602,0.841214299201965,-0.213204398751259,\r\n-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.334258258342743,0.941270470619202,-0.0477618277072906,-0.64701122045517,0.640067398548126,0.41435495018959,-0.749916791915894,0.566605985164642,0.341441720724106,-0.631712675094604,0.674052774906158,0.382873028516769,-0.772884249687195,0.522357702255249,0.360266804695129,-0.832619369029999,0.460590898990631,0.307572722434998,-0.64701122045517,0.640067398548126,0.41435495018959,-0.772884249687195,0.522357702255249,0.360266804695129,-0.837617039680481,0.438248604536057,0.326091736555099,-0.908743560314178,0.31849592924118,0.269713670015335,-0.456937879323959,0.77647340297699,0.433931648731232,-0.588843584060669,0.741635322570801,0.321309804916382,-0.389376103878021,0.837724328041077,0.382889032363892,-0.64701122045517,0.640067398548126,0.41435495018959,-0.631712675094604,0.674052774906158,0.382873028516769,-0.456937879323959,0.77647340297699,0.433931648731232,-0.994361281394959,-0.061958834528923,0.0860617458820343,-0.956071615219116,0.205102950334549,0.209427326917648,-0.985692799091339,0.106036469340324,0.131017804145813,-0.837617039680481,0.438248604536057,0.326091736555099,-0.922126710414886,0.30422168970108,0.239021241664886,-0.956071615219116,0.205102950334549,0.209427326917648,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.734223306179047,-0.625573933124542,-0.263767629861832,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.77388858795166,-0.579720020294189,-0.254992097616196,-0.985692799091339,0.106036469340324,0.131017804145813,-0.996742010116577,-0.0741326510906219,0.0317739620804787,\r\n-0.97580760717392,-0.218472957611084,-0.00830839201807976,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.952745676040649,0.272706508636475,-0.133815184235573,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.934177219867706,-0.347018748521805,-0.0830110162496567,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.708527803421021,-0.695728242397308,-0.118112452328205,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.394419997930527,-0.905290722846985,-0.157738924026489,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.951265811920166,-0.275228083133698,0.139078438282013,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.957259058952332,-0.284246832132339,0.0534676909446716,-0.950047016143799,-0.292958706617355,0.107636846601963,-0.9556804895401,-0.227118745446205,0.187328115105629,-0.957259058952332,-0.284246832132339,0.0534676909446716,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.998705923557281,-0.00174687209073454,0.0508270114660263,\r\n-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.988603115081787,-0.0781260877847672,0.128686025738716,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.996930301189423,0.0281646940857172,0.0730520337820053,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.958421111106873,0.285003393888474,-0.0142101710662246,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.989172875881195,0.145022228360176,-0.0224830806255341,-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.992733538150787,0.098325751721859,-0.0693689733743668,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.980838477611542,0.169337689876556,-0.0963354930281639,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.996024429798126,0.0161139313131571,-0.0876108333468437,-0.996884822845459,-0.0243804212659597,-0.075007937848568,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.996884822845459,-0.0243804212659597,-0.075007937848568,\r\n-0.989794492721558,0.000751848274376243,-0.142500057816505,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.496892601251602,0.841214299201965,-0.213204398751259,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.3609619140625,0.927794456481934,-0.0943606421351433,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.334258258342743,0.941270470619202,-0.0477618277072906,-0.636481642723084,0.655692875385284,0.406150013208389,-0.772884249687195,0.522357702255249,0.360266804695129,-0.64701122045517,0.640067398548126,0.41435495018959,-0.772884249687195,0.522357702255249,0.360266804695129,-0.636481642723084,0.655692875385284,0.406150013208389,-0.837617039680481,0.438248604536057,0.326091736555099,-0.636481642723084,0.655692875385284,0.406150013208389,-0.64701122045517,0.640067398548126,0.41435495018959,-0.456937879323959,0.77647340297699,0.433931648731232,-0.922126710414886,0.30422168970108,0.239021241664886,-0.985692799091339,0.106036469340324,0.131017804145813,-0.956071615219116,0.205102950334549,0.209427326917648,-0.837617039680481,0.438248604536057,0.326091736555099,-0.773149728775024,0.532946527004242,0.34381291270256,-0.922126710414886,0.30422168970108,0.239021241664886,-0.905362844467163,-0.401221215724945,-0.139066860079765,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.77388858795166,-0.579720020294189,-0.254992097616196,\r\n-0.77388858795166,-0.579720020294189,-0.254992097616196,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.985692799091339,0.106036469340324,0.131017804145813,-0.977470517158508,0.158393546938896,0.139508783817291,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.925759971141815,-0.230548918247223,-0.299692422151566,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.715379893779755,-0.629965424537659,-0.302282959222794,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.917203426361084,-0.393740117549896,-0.0608809813857079,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.934177219867706,-0.347018748521805,-0.0830110162496567,-0.934177219867706,-0.347018748521805,-0.0830110162496567,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.394419997930527,-0.905290722846985,-0.157738924026489,-0.548344194889069,-0.826669573783875,-0.126237332820892,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.957259058952332,-0.284246832132339,0.0534676909446716,\r\n-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.957259058952332,-0.284246832132339,0.0534676909446716,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.978471517562866,0.0992974638938904,0.180923178792,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.98552018404007,0.159361496567726,-0.0579111985862255,-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.992639303207397,0.110842667520046,-0.048793513327837,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.980212032794952,-0.184419468045235,0.0719289407134056,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.924951493740082,-0.375318437814713,0.0600053742527962,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.996024429798126,0.0161139313131571,-0.0876108333468437,\r\n-0.996884822845459,-0.0243804212659597,-0.075007937848568,-0.999241948127747,0.0284952707588673,-0.0265224277973175,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.863733470439911,0.500856697559357,-0.0557407550513744,-0.675678372383118,0.717088997364044,-0.17100328207016,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.420735329389572,0.901651918888092,-0.100027710199356,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.513355910778046,0.853066086769104,-0.0935083627700806,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.334258258342743,0.941270470619202,-0.0477618277072906,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.324928402900696,0.945726871490479,0.00470078736543655,-0.672970652580261,0.618732988834381,0.405314415693283,-0.837617039680481,0.438248604536057,0.326091736555099,-0.636481642723084,0.655692875385284,0.406150013208389,-0.636481642723084,0.655692875385284,0.406150013208389,-0.456937879323959,0.77647340297699,0.433931648731232,-0.477980643510818,0.758467376232147,0.443014323711395,-0.922126710414886,0.30422168970108,0.239021241664886,-0.95859956741333,0.22160704433918,0.178821429610252,-0.985692799091339,0.106036469340324,0.131017804145813,-0.773149728775024,0.532946527004242,0.34381291270256,-0.837617039680481,0.438248604536057,0.326091736555099,-0.672970652580261,0.618732988834381,0.405314415693283,-0.922126710414886,0.30422168970108,0.239021241664886,-0.773149728775024,0.532946527004242,0.34381291270256,-0.842546045780182,0.466142684221268,0.269864857196808,-0.859799861907959,-0.480646729469299,-0.172402963042259,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.889985084533691,-0.414381593465805,-0.1903006285429,\r\n-0.77388858795166,-0.579720020294189,-0.254992097616196,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.77388858795166,-0.579720020294189,-0.254992097616196,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.977470517158508,0.158393546938896,0.139508783817291,-0.985692799091339,0.106036469340324,0.131017804145813,-0.95859956741333,0.22160704433918,0.178821429610252,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.977470517158508,0.158393546938896,0.139508783817291,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.981590270996094,-0.0107182590290904,-0.190697595477104,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.976824104785919,0.177795603871346,-0.11917757242918,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.934177219867706,-0.347018748521805,-0.0830110162496567,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.731570363044739,-0.679027020931244,-0.0610487796366215,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.548344194889069,-0.826669573783875,-0.126237332820892,\r\n-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.394419997930527,-0.905290722846985,-0.157738924026489,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.237449541687965,-0.966357946395874,-0.0988430306315422,-0.930926501750946,-0.364020228385925,-0.0294114220887423,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.978471517562866,0.0992974638938904,0.180923178792,-0.989413976669312,-0.129337266087532,0.0658158287405968,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.945827543735504,0.263305336236954,0.189947992563248,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.978471517562866,0.0992974638938904,0.180923178792,-0.998705923557281,-0.00174687209073454,0.0508270114660263,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.997740924358368,0.00800285860896111,0.0666984617710114,-0.945827543735504,0.263305336236954,0.189947992563248,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.988447546958923,0.0579709261655808,-0.140038296580315,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.992830097675323,0.0260249227285385,-0.116666354238987,-0.997194766998291,0.0435187071561813,-0.0608982443809509,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.971932888031006,-0.231942936778069,0.0393550433218479,\r\n-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.964618325233459,0.263461500406265,-0.00996738579124212,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.759141504764557,0.627650260925293,0.172508403658867,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.51132607460022,0.857576608657837,0.0557481832802296,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.324928402900696,0.945726871490479,0.00470078736543655,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.477980643510818,0.758467376232147,0.443014323711395,-0.672970652580261,0.618732988834381,0.405314415693283,-0.636481642723084,0.655692875385284,0.406150013208389,-0.922126710414886,0.30422168970108,0.239021241664886,-0.880272626876831,0.402636259794235,0.251006156206131,-0.95859956741333,0.22160704433918,0.178821429610252,-0.773149728775024,0.532946527004242,0.34381291270256,-0.672970652580261,0.618732988834381,0.405314415693283,-0.550221264362335,0.726444661617279,0.411745697259903,-0.773149728775024,0.532946527004242,0.34381291270256,-0.730798602104187,0.601623117923737,0.322463721036911,-0.842546045780182,0.466142684221268,0.269864857196808,-0.880272626876831,0.402636259794235,0.251006156206131,-0.922126710414886,0.30422168970108,0.239021241664886,-0.842546045780182,0.466142684221268,0.269864857196808,\r\n-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.996742010116577,-0.0741326510906219,0.0317739620804787,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.955814361572266,-0.283950507640839,-0.0760986283421516,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.95859956741333,0.22160704433918,0.178821429610252,-0.934520125389099,0.29726168513298,0.195722997188568,-0.977470517158508,0.158393546938896,0.139508783817291,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.977470517158508,0.158393546938896,0.139508783817291,-0.955268561840057,0.247189775109291,0.162354826927185,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.983094930648804,0.0788999050855637,-0.165224134922028,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.751251101493835,-0.546010851860046,-0.370801448822021,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.659969627857208,-0.659123241901398,-0.360550224781036,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.93014132976532,0.353055477142334,-0.100939534604549,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.993027627468109,0.053819727152586,-0.104878149926662,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.993027627468109,0.053819727152586,-0.104878149926662,\r\n-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.709717690944672,-0.704195499420166,-0.0202296227216721,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.306743562221527,-0.950648605823517,-0.046643290668726,-0.237449541687965,-0.966357946395874,-0.0988430306315422,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.974958002567291,-0.221470281481743,-0.0201918315142393,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.978471517562866,0.0992974638938904,0.180923178792,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.917998433113098,0.214131087064743,0.333806306123734,-0.945827543735504,0.263305336236954,0.189947992563248,-0.978471517562866,0.0992974638938904,0.180923178792,-0.87634140253067,0.353957235813141,0.326710760593414,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.889090180397034,0.422980636358261,0.174945682287216,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.98748117685318,0.137051314115524,0.0780878365039825,-0.945827543735504,0.263305336236954,0.189947992563248,-0.889090180397034,0.422980636358261,0.174945682287216,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.988271474838257,-0.125050574541092,-0.0876458436250687,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.972301185131073,-0.193930402398109,0.130465820431709,\r\n-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.972301185131073,-0.193930402398109,0.130465820431709,-0.971932888031006,-0.231942936778069,0.0393550433218479,-0.957161664962769,-0.284196645021439,0.0554416663944721,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.971932888031006,-0.231942936778069,0.0393550433218479,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.94375616312027,-0.323349446058273,0.0690604895353317,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.933796525001526,-0.357607245445251,0.0118753118440509,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.834726333618164,0.547899484634399,0.0551172606647015,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.759141504764557,0.627650260925293,0.172508403658867,-0.995606541633606,0.0921531841158867,0.016590828076005,-0.889090180397034,0.422980636358261,0.174945682287216,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.759141504764557,0.627650260925293,0.172508403658867,-0.584748864173889,0.791778206825256,0.176510661840439,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.381538152694702,0.924163937568665,-0.0186962112784386,-0.51132607460022,0.857576608657837,0.0557481832802296,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.462179392576218,0.886340141296387,-0.0281292870640755,-0.636706829071045,0.77055561542511,0.0291256196796894,-0.584748864173889,0.791778206825256,0.176510661840439,-0.51132607460022,0.857576608657837,0.0557481832802296,-0.550221264362335,0.726444661617279,0.411745697259903,-0.672970652580261,0.618732988834381,0.405314415693283,-0.477980643510818,0.758467376232147,0.443014323711395,-0.95859956741333,0.22160704433918,0.178821429610252,-0.880272626876831,0.402636259794235,0.251006156206131,-0.934520125389099,0.29726168513298,0.195722997188568,\r\n-0.773149728775024,0.532946527004242,0.34381291270256,-0.550221264362335,0.726444661617279,0.411745697259903,-0.730798602104187,0.601623117923737,0.322463721036911,-0.880272626876831,0.402636259794235,0.251006156206131,-0.842546045780182,0.466142684221268,0.269864857196808,-0.730798602104187,0.601623117923737,0.322463721036911,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.889985084533691,-0.414381593465805,-0.1903006285429,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.955268561840057,0.247189775109291,0.162354826927185,-0.977470517158508,0.158393546938896,0.139508783817291,-0.934520125389099,0.29726168513298,0.195722997188568,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.955268561840057,0.247189775109291,0.162354826927185,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.948260962963104,-0.226312413811684,-0.222674205899239,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.86672031879425,-0.388336360454559,-0.313034504652023,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.92826896905899,-0.353367686271667,-0.115964934229851,\r\n-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.709717690944672,-0.704195499420166,-0.0202296227216721,-0.894788205623627,-0.442718952894211,-0.0579122640192509,-0.620929598808289,-0.783234179019928,-0.0314721092581749,-0.709717690944672,-0.704195499420166,-0.0202296227216721,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.306743562221527,-0.950648605823517,-0.046643290668726,-0.42658057808876,-0.903285443782806,-0.0458722077310085,-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.237449541687965,-0.966357946395874,-0.0988430306315422,-0.306743562221527,-0.950648605823517,-0.046643290668726,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.939142048358917,0.098202221095562,0.329193621873856,-0.917998433113098,0.214131087064743,0.333806306123734,-0.987387955188751,-0.00989708676934242,0.158009275794029,-0.939142048358917,0.098202221095562,0.329193621873856,-0.978471517562866,0.0992974638938904,0.180923178792,-0.917998433113098,0.214131087064743,0.333806306123734,-0.87634140253067,0.353957235813141,0.326710760593414,-0.80203115940094,0.519696176052094,0.294383555650711,-0.945827543735504,0.263305336236954,0.189947992563248,-0.87634140253067,0.353957235813141,0.326710760593414,-0.889090180397034,0.422980636358261,0.174945682287216,-0.945827543735504,0.263305336236954,0.189947992563248,-0.80203115940094,0.519696176052094,0.294383555650711,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.992411553859711,-0.0490886531770229,-0.11273642629385,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.988571405410767,-0.145214572548866,-0.0404873602092266,-0.998796761035919,-0.0189213939011097,0.045242927968502,\r\n-0.972301185131073,-0.193930402398109,0.130465820431709,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.971932888031006,-0.231942936778069,0.0393550433218479,-0.972301185131073,-0.193930402398109,0.130465820431709,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.947812438011169,-0.254223883152008,0.192410156130791,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.759141504764557,0.627650260925293,0.172508403658867,-0.919498860836029,0.38470584154129,0.0807661190629005,-0.889090180397034,0.422980636358261,0.174945682287216,-0.705113053321838,0.663998365402222,0.248840466141701,-0.584748864173889,0.791778206825256,0.176510661840439,-0.759141504764557,0.627650260925293,0.172508403658867,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.386761456727982,0.909971535205841,0.149557262659073,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.51132607460022,0.857576608657837,0.0557481832802296,-0.584748864173889,0.791778206825256,0.176510661840439,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.827872931957245,0.4921495616436,0.269100576639175,-0.934520125389099,0.29726168513298,0.195722997188568,-0.880272626876831,0.402636259794235,0.251006156206131,-0.550221264362335,0.726444661617279,0.411745697259903,-0.581633627414703,0.718528926372528,0.381337732076645,-0.730798602104187,0.601623117923737,0.322463721036911,-0.747610211372375,0.571478128433228,0.338366031646729,-0.880272626876831,0.402636259794235,0.251006156206131,-0.730798602104187,0.601623117923737,0.322463721036911,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.997816324234009,0.00936291925609112,0.0653817430138588,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.914622247219086,-0.365450501441956,-0.172950729727745,\r\n-0.885233998298645,0.409659922122955,0.220316603779793,-0.955268561840057,0.247189775109291,0.162354826927185,-0.934520125389099,0.29726168513298,0.195722997188568,-0.955268561840057,0.247189775109291,0.162354826927185,-0.926010429859161,0.311549723148346,0.213169708848,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.948260962963104,-0.226312413811684,-0.222674205899239,-0.973376929759979,0.187691479921341,-0.131564512848854,-0.948260962963104,-0.226312413811684,-0.222674205899239,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.91463029384613,-0.30091518163681,-0.270002067089081,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.758193075656891,-0.569835364818573,-0.316908061504364,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.962449967861176,0.254017561674118,-0.0957346186041832,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.995675504207611,0.0408691056072712,-0.0834260955452919,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.709717690944672,-0.704195499420166,-0.0202296227216721,\r\n-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.709717690944672,-0.704195499420166,-0.0202296227216721,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.306743562221527,-0.950648605823517,-0.046643290668726,-0.986168086528778,-0.116369850933552,0.118027590215206,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.939142048358917,0.098202221095562,0.329193621873856,-0.917998433113098,0.214131087064743,0.333806306123734,-0.939142048358917,0.098202221095562,0.329193621873856,-0.859263300895691,0.281661212444305,0.42700520157814,-0.814971446990967,0.399507611989975,0.419779777526855,-0.87634140253067,0.353957235813141,0.326710760593414,-0.917998433113098,0.214131087064743,0.333806306123734,-0.770660579204559,0.506808221340179,0.38629999756813,-0.80203115940094,0.519696176052094,0.294383555650711,-0.87634140253067,0.353957235813141,0.326710760593414,-0.889090180397034,0.422980636358261,0.174945682287216,-0.80203115940094,0.519696176052094,0.294383555650711,-0.705113053321838,0.663998365402222,0.248840466141701,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.998908162117004,0.0373903438448906,-0.0280066728591919,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.972301185131073,-0.193930402398109,0.130465820431709,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.972301185131073,-0.193930402398109,0.130465820431709,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.948876202106476,-0.0175554361194372,0.315159648656845,\r\n-0.968825101852417,-0.140108078718185,0.204322189092636,-0.705113053321838,0.663998365402222,0.248840466141701,-0.759141504764557,0.627650260925293,0.172508403658867,-0.889090180397034,0.422980636358261,0.174945682287216,-0.584748864173889,0.791778206825256,0.176510661840439,-0.705113053321838,0.663998365402222,0.248840466141701,-0.591933906078339,0.76690948009491,0.247919410467148,-0.386761456727982,0.909971535205841,0.149557262659073,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.47488859295845,0.854191780090332,0.211747720837593,-0.47488859295845,0.854191780090332,0.211747720837593,-0.445110857486725,0.891272187232971,0.0866608992218971,-0.584748864173889,0.791778206825256,0.176510661840439,-0.885233998298645,0.409659922122955,0.220316603779793,-0.934520125389099,0.29726168513298,0.195722997188568,-0.827872931957245,0.4921495616436,0.269100576639175,-0.827872931957245,0.4921495616436,0.269100576639175,-0.880272626876831,0.402636259794235,0.251006156206131,-0.747610211372375,0.571478128433228,0.338366031646729,-0.747610211372375,0.571478128433228,0.338366031646729,-0.730798602104187,0.601623117923737,0.322463721036911,-0.581633627414703,0.718528926372528,0.381337732076645,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.972478032112122,-0.214643865823746,-0.090632937848568,-0.885233998298645,0.409659922122955,0.220316603779793,-0.884114801883698,0.403196334838867,0.236164391040802,-0.955268561840057,0.247189775109291,0.162354826927185,-0.955268561840057,0.247189775109291,0.162354826927185,-0.884114801883698,0.403196334838867,0.236164391040802,-0.926010429859161,0.311549723148346,0.213169708848,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.926010429859161,0.311549723148346,0.213169708848,-0.961620688438416,0.200665414333344,0.187133476138115,-0.948260962963104,-0.226312413811684,-0.222674205899239,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.948260962963104,-0.226312413811684,-0.222674205899239,\r\n-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.660653710365295,-0.65070116519928,-0.374332249164581,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.67462682723999,-0.645908832550049,-0.357323795557022,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.938433289527893,0.3152716755867,-0.141232520341873,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.971753597259521,0.0607918091118336,-0.228032857179642,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.92826896905899,-0.353367686271667,-0.115964934229851,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.415329396724701,-0.900293827056885,-0.130278185009956,\r\n-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.939142048358917,0.098202221095562,0.329193621873856,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.897306740283966,0.186730951070786,0.399965167045593,-0.939142048358917,0.098202221095562,0.329193621873856,-0.897306740283966,0.186730951070786,0.399965167045593,-0.859263300895691,0.281661212444305,0.42700520157814,-0.814971446990967,0.399507611989975,0.419779777526855,-0.917998433113098,0.214131087064743,0.333806306123734,-0.859263300895691,0.281661212444305,0.42700520157814,-0.770660579204559,0.506808221340179,0.38629999756813,-0.87634140253067,0.353957235813141,0.326710760593414,-0.814971446990967,0.399507611989975,0.419779777526855,-0.80203115940094,0.519696176052094,0.294383555650711,-0.770660579204559,0.506808221340179,0.38629999756813,-0.681140422821045,0.649436354637146,0.338053226470947,-0.705113053321838,0.663998365402222,0.248840466141701,-0.80203115940094,0.519696176052094,0.294383555650711,-0.681140422821045,0.649436354637146,0.338053226470947,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.954942047595978,0.241953834891319,0.171883672475815,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.921271860599518,0.249908372759819,0.297999709844589,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.998796761035919,-0.0189213939011097,0.045242927968502,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.968825101852417,-0.140108078718185,0.204322189092636,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.897306740283966,0.186730951070786,0.399965167045593,-0.948876202106476,-0.0175554361194372,0.315159648656845,-0.705113053321838,0.663998365402222,0.248840466141701,-0.681140422821045,0.649436354637146,0.338053226470947,-0.591933906078339,0.76690948009491,0.247919410467148,-0.584748864173889,0.791778206825256,0.176510661840439,\r\n-0.591933906078339,0.76690948009491,0.247919410467148,-0.47488859295845,0.854191780090332,0.211747720837593,-0.827872931957245,0.4921495616436,0.269100576639175,-0.757809221744537,0.578064024448395,0.302600115537643,-0.885233998298645,0.409659922122955,0.220316603779793,-0.827872931957245,0.4921495616436,0.269100576639175,-0.747610211372375,0.571478128433228,0.338366031646729,-0.685893952846527,0.642498731613159,0.341679006814957,-0.581633627414703,0.718528926372528,0.381337732076645,-0.685893952846527,0.642498731613159,0.341679006814957,-0.747610211372375,0.571478128433228,0.338366031646729,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.885233998298645,0.409659922122955,0.220316603779793,-0.807954430580139,0.506399512290955,0.30127888917923,-0.884114801883698,0.403196334838867,0.236164391040802,-0.884114801883698,0.403196334838867,0.236164391040802,-0.847193658351898,0.465256214141846,0.256514221429825,-0.926010429859161,0.311549723148346,0.213169708848,-0.926010429859161,0.311549723148346,0.213169708848,-0.95774894952774,0.213277071714401,0.192950114607811,-0.961620688438416,0.200665414333344,0.187133476138115,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.991128206253052,0.0938089638948441,0.0941523760557175,-0.961620688438416,0.200665414333344,0.187133476138115,-0.758817553520203,-0.564128518104553,-0.325507193803787,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.914622247219086,-0.365450501441956,-0.172950729727745,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.792210936546326,-0.55174046754837,-0.260737627744675,\r\n-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.985588788986206,-0.0873101055622101,-0.144884809851646,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.955593466758728,0.267576694488525,-0.123465456068516,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.991465926170349,0.0204033404588699,-0.128759324550629,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.891895830631256,-0.324964553117752,-0.314515233039856,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.724919736385345,-0.66888552904129,-0.164570286870003,-0.483870506286621,-0.871444523334503,-0.080334410071373,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.183526530861855,-0.969485282897949,-0.162530571222305,-0.846266508102417,0.34090718626976,0.409408301115036,-0.859263300895691,0.281661212444305,0.42700520157814,-0.897306740283966,0.186730951070786,0.399965167045593,-0.814971446990967,0.399507611989975,0.419779777526855,-0.859263300895691,0.281661212444305,0.42700520157814,-0.795668184757233,0.428657412528992,0.427977561950684,\r\n-0.770660579204559,0.506808221340179,0.38629999756813,-0.814971446990967,0.399507611989975,0.419779777526855,-0.735000729560852,0.539745450019836,0.41042497754097,-0.735000729560852,0.539745450019836,0.41042497754097,-0.681140422821045,0.649436354637146,0.338053226470947,-0.770660579204559,0.506808221340179,0.38629999756813,-0.982454717159271,0.15888038277626,0.0976708829402924,-0.96218478679657,0.225722670555115,0.152478516101837,-0.954942047595978,0.241953834891319,0.171883672475815,-0.954942047595978,0.241953834891319,0.171883672475815,-0.921271860599518,0.249908372759819,0.297999709844589,-0.985839664936066,0.135398462414742,0.0989313051104546,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.921271860599518,0.249908372759819,0.297999709844589,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.973645567893982,-0.0403004810214043,0.224477231502533,-0.97578090429306,0.0812543630599976,0.203098565340042,-0.897306740283966,0.186730951070786,0.399965167045593,-0.940269887447357,0.0744827389717102,0.332181721925735,-0.921271860599518,0.249908372759819,0.297999709844589,-0.562416851520538,0.768422424793243,0.3053098320961,-0.591933906078339,0.76690948009491,0.247919410467148,-0.681140422821045,0.649436354637146,0.338053226470947,-0.591933906078339,0.76690948009491,0.247919410467148,-0.562416851520538,0.768422424793243,0.3053098320961,-0.47488859295845,0.854191780090332,0.211747720837593,-0.827872931957245,0.4921495616436,0.269100576639175,-0.685893952846527,0.642498731613159,0.341679006814957,-0.757809221744537,0.578064024448395,0.302600115537643,-0.757809221744537,0.578064024448395,0.302600115537643,-0.807954430580139,0.506399512290955,0.30127888917923,-0.885233998298645,0.409659922122955,0.220316603779793,-0.574745953083038,0.725480258464813,0.378609746694565,-0.685893952846527,0.642498731613159,0.341679006814957,-0.581633627414703,0.718528926372528,0.381337732076645,-0.807954430580139,0.506399512290955,0.30127888917923,-0.781127035617828,0.544230163097382,0.306029200553894,\r\n-0.884114801883698,0.403196334838867,0.236164391040802,-0.884114801883698,0.403196334838867,0.236164391040802,-0.781127035617828,0.544230163097382,0.306029200553894,-0.847193658351898,0.465256214141846,0.256514221429825,-0.926010429859161,0.311549723148346,0.213169708848,-0.847193658351898,0.465256214141846,0.256514221429825,-0.878216505050659,0.403930932283401,0.25607705116272,-0.926010429859161,0.311549723148346,0.213169708848,-0.878216505050659,0.403930932283401,0.25607705116272,-0.95774894952774,0.213277071714401,0.192950114607811,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.961620688438416,0.200665414333344,0.187133476138115,-0.95774894952774,0.213277071714401,0.192950114607811,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.961620688438416,0.200665414333344,0.187133476138115,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.828432321548462,-0.484822243452072,-0.280441164970398,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.792210936546326,-0.55174046754837,-0.260737627744675,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.95958286523819,-0.208976775407791,-0.188492208719254,\r\n-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.988691985607147,0.0678702220320702,-0.133722752332687,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.95100337266922,0.280604869127274,-0.12982065975666,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.909715890884399,-0.415004283189774,-0.013723093084991,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.982191026210785,-0.0558246038854122,-0.179399862885475,-0.909715890884399,-0.415004283189774,-0.013723093084991,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.39892366528511,-0.902916371822357,-0.160004869103432,-0.183526530861855,-0.969485282897949,-0.162530571222305,-0.846266508102417,0.34090718626976,0.409408301115036,-0.795668184757233,0.428657412528992,0.427977561950684,-0.859263300895691,0.281661212444305,0.42700520157814,-0.846266508102417,0.34090718626976,0.409408301115036,-0.897306740283966,0.186730951070786,0.399965167045593,-0.921271860599518,0.249908372759819,0.297999709844589,-0.814971446990967,0.399507611989975,0.419779777526855,-0.795668184757233,0.428657412528992,0.427977561950684,-0.735000729560852,0.539745450019836,0.41042497754097,-0.735000729560852,0.539745450019836,0.41042497754097,-0.631599545478821,0.675979554653168,0.379649370908737,-0.681140422821045,0.649436354637146,0.338053226470947,-0.96218478679657,0.225722670555115,0.152478516101837,\r\n-0.982454717159271,0.15888038277626,0.0976708829402924,-0.956210970878601,0.216835767030716,0.196577414870262,-0.96218478679657,0.225722670555115,0.152478516101837,-0.962315499782562,0.226641297340393,0.150274783372879,-0.954942047595978,0.241953834891319,0.171883672475815,-0.954942047595978,0.241953834891319,0.171883672475815,-0.928116619586945,0.298024982213974,0.223115608096123,-0.921271860599518,0.249908372759819,0.297999709844589,-0.681140422821045,0.649436354637146,0.338053226470947,-0.631599545478821,0.675979554653168,0.379649370908737,-0.562416851520538,0.768422424793243,0.3053098320961,-0.574745953083038,0.725480258464813,0.378609746694565,-0.757809221744537,0.578064024448395,0.302600115537643,-0.685893952846527,0.642498731613159,0.341679006814957,-0.757809221744537,0.578064024448395,0.302600115537643,-0.651818513870239,0.670251548290253,0.354817271232605,-0.807954430580139,0.506399512290955,0.30127888917923,-0.807954430580139,0.506399512290955,0.30127888917923,-0.651818513870239,0.670251548290253,0.354817271232605,-0.781127035617828,0.544230163097382,0.306029200553894,-0.71041601896286,0.627984404563904,0.317717641592026,-0.847193658351898,0.465256214141846,0.256514221429825,-0.781127035617828,0.544230163097382,0.306029200553894,-0.878216505050659,0.403930932283401,0.25607705116272,-0.847193658351898,0.465256214141846,0.256514221429825,-0.785034418106079,0.545716524124146,0.293111324310303,-0.878216505050659,0.403930932283401,0.25607705116272,-0.935142993927002,0.281457453966141,0.215149149298668,-0.95774894952774,0.213277071714401,0.192950114607811,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.95774894952774,0.213277071714401,0.192950114607811,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.995177924633026,-0.0962687805294991,0.0187912136316299,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.634153962135315,-0.682620763778687,-0.363149553537369,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.695743203163147,-0.632903695106506,-0.339667707681656,\r\n-0.882812678813934,-0.408777266740799,-0.23139314353466,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.696458637714386,-0.641494154930115,-0.321606010198593,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.941773653030396,-0.286942452192307,-0.175289452075958,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.988513886928558,0.0554691106081009,-0.140582144260406,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.988691985607147,0.0678702220320702,-0.133722752332687,-0.988691985607147,0.0678702220320702,-0.133722752332687,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.960579216480255,0.240925922989845,-0.138715296983719,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.909715890884399,-0.415004283189774,-0.013723093084991,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.95958286523819,-0.208976775407791,-0.188492208719254,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.909715890884399,-0.415004283189774,-0.013723093084991,\r\n-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.742914140224457,-0.647606313228607,-0.169364899396896,-0.415329396724701,-0.900293827056885,-0.130278185009956,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.39892366528511,-0.902916371822357,-0.160004869103432,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.183526530861855,-0.969485282897949,-0.162530571222305,-0.39892366528511,-0.902916371822357,-0.160004869103432,-0.779942750930786,0.47905033826828,0.40274053812027,-0.795668184757233,0.428657412528992,0.427977561950684,-0.846266508102417,0.34090718626976,0.409408301115036,-0.921271860599518,0.249908372759819,0.297999709844589,-0.839265704154968,0.412689298391342,0.354006350040436,-0.846266508102417,0.34090718626976,0.409408301115036,-0.735000729560852,0.539745450019836,0.41042497754097,-0.795668184757233,0.428657412528992,0.427977561950684,-0.710453391075134,0.573210060596466,0.40827202796936,-0.735000729560852,0.539745450019836,0.41042497754097,-0.710453391075134,0.573210060596466,0.40827202796936,-0.631599545478821,0.675979554653168,0.379649370908737,-0.962315499782562,0.226641297340393,0.150274783372879,-0.96218478679657,0.225722670555115,0.152478516101837,-0.956210970878601,0.216835767030716,0.196577414870262,-0.948650658130646,0.269193172454834,0.166123285889626,-0.954942047595978,0.241953834891319,0.171883672475815,-0.962315499782562,0.226641297340393,0.150274783372879,-0.954942047595978,0.241953834891319,0.171883672475815,-0.948650658130646,0.269193172454834,0.166123285889626,-0.928116619586945,0.298024982213974,0.223115608096123,-0.928116619586945,0.298024982213974,0.223115608096123,-0.891540706157684,0.366050094366074,0.266762763261795,-0.921271860599518,0.249908372759819,0.297999709844589,-0.651818513870239,0.670251548290253,0.354817271232605,-0.757809221744537,0.578064024448395,0.302600115537643,-0.574745953083038,0.725480258464813,0.378609746694565,-0.71041601896286,0.627984404563904,0.317717641592026,-0.781127035617828,0.544230163097382,0.306029200553894,-0.651818513870239,0.670251548290253,0.354817271232605,\r\n-0.71041601896286,0.627984404563904,0.317717641592026,-0.785034418106079,0.545716524124146,0.293111324310303,-0.847193658351898,0.465256214141846,0.256514221429825,-0.839675068855286,0.461954772472382,0.285558044910431,-0.878216505050659,0.403930932283401,0.25607705116272,-0.785034418106079,0.545716524124146,0.293111324310303,-0.839675068855286,0.461954772472382,0.285558044910431,-0.935142993927002,0.281457453966141,0.215149149298668,-0.878216505050659,0.403930932283401,0.25607705116272,-0.95774894952774,0.213277071714401,0.192950114607811,-0.935142993927002,0.281457453966141,0.215149149298668,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.95774894952774,0.213277071714401,0.192950114607811,-0.987149894237518,0.0871935784816742,0.133911445736885,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.695743203163147,-0.632903695106506,-0.339667707681656,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.943595051765442,-0.313424050807953,-0.106741212308407,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.793907225131989,-0.546932637691498,-0.265661507844925,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.988691985607147,0.0678702220320702,-0.133722752332687,\r\n-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.992159366607666,0.0641838610172272,-0.107238903641701,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.946234822273254,0.284678071737289,-0.153616204857826,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.961304903030396,0.24835616350174,-0.119213812053204,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.909715890884399,-0.415004283189774,-0.013723093084991,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.39892366528511,-0.902916371822357,-0.160004869103432,-0.136709079146385,-0.972881972789764,-0.186577007174492,-0.183526530861855,-0.969485282897949,-0.162530571222305,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.779942750930786,0.47905033826828,0.40274053812027,-0.710453391075134,0.573210060596466,0.40827202796936,-0.795668184757233,0.428657412528992,0.427977561950684,-0.846266508102417,0.34090718626976,0.409408301115036,-0.839265704154968,0.412689298391342,0.354006350040436,-0.779942750930786,0.47905033826828,0.40274053812027,-0.839265704154968,0.412689298391342,0.354006350040436,-0.921271860599518,0.249908372759819,0.297999709844589,\r\n-0.891540706157684,0.366050094366074,0.266762763261795,-0.919818937778473,0.314502596855164,0.234565928578377,-0.962315499782562,0.226641297340393,0.150274783372879,-0.956210970878601,0.216835767030716,0.196577414870262,-0.962315499782562,0.226641297340393,0.150274783372879,-0.919818937778473,0.314502596855164,0.234565928578377,-0.948650658130646,0.269193172454834,0.166123285889626,-0.948650658130646,0.269193172454834,0.166123285889626,-0.919818937778473,0.314502596855164,0.234565928578377,-0.928116619586945,0.298024982213974,0.223115608096123,-0.891540706157684,0.366050094366074,0.266762763261795,-0.928116619586945,0.298024982213974,0.223115608096123,-0.919818937778473,0.314502596855164,0.234565928578377,-0.751123011112213,0.577505350112915,0.319846242666245,-0.839675068855286,0.461954772472382,0.285558044910431,-0.785034418106079,0.545716524124146,0.293111324310303,-0.860961079597473,0.428524613380432,0.274066895246506,-0.935142993927002,0.281457453966141,0.215149149298668,-0.839675068855286,0.461954772472382,0.285558044910431,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.935142993927002,0.281457453966141,0.215149149298668,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.95774894952774,0.213277071714401,0.192950114607811,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.997327983379364,-0.0623135939240456,0.0381283424794674,-0.622375786304474,-0.69128429889679,-0.367116093635559,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.833297431468964,-0.50253826379776,-0.230370447039604,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.830883800983429,-0.489534944295883,-0.264551490545273,-0.648328483104706,-0.686489403247833,-0.32924485206604,\r\n-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.978610515594482,0.0466339327394962,-0.200366199016571,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.986665964126587,0.0945670530200005,-0.132466182112694,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.937377870082855,-0.310424238443375,-0.157985359430313,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.898440957069397,-0.374189347028732,-0.229751691222191,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.671567022800446,-0.728919506072998,-0.132943138480186,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.517889261245728,-0.839157402515411,-0.1661486774683,-0.136709079146385,-0.972881972789764,-0.186577007174492,-0.860961079597473,0.428524613380432,0.274066895246506,\r\n-0.839675068855286,0.461954772472382,0.285558044910431,-0.751123011112213,0.577505350112915,0.319846242666245,-0.935142993927002,0.281457453966141,0.215149149298668,-0.860961079597473,0.428524613380432,0.274066895246506,-0.975520312786102,0.161919206380844,0.148802742362022,-0.935142993927002,0.281457453966141,0.215149149298668,-0.975520312786102,0.161919206380844,0.148802742362022,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.993742823600769,0.0271123796701431,0.108351267874241,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.975129067897797,-0.219095930457115,-0.0334690511226654,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.648328483104706,-0.686489403247833,-0.32924485206604,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.9797722697258,-0.119631990790367,-0.160419434309006,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.964062929153442,0.229269370436668,-0.134231522679329,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.985513389110565,0.0284803062677383,-0.16718915104866,-0.980830252170563,-0.0431137010455132,-0.190034776926041,\r\n-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.879028975963593,-0.432562530040741,-0.200493454933167,-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.517889261245728,-0.839157402515411,-0.1661486774683,-0.517889261245728,-0.839157402515411,-0.1661486774683,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.136709079146385,-0.972881972789764,-0.186577007174492,-0.72846394777298,0.604507386684418,0.322352170944214,-0.860961079597473,0.428524613380432,0.274066895246506,-0.751123011112213,0.577505350112915,0.319846242666245,-0.975520312786102,0.161919206380844,0.148802742362022,-0.860961079597473,0.428524613380432,0.274066895246506,-0.948395490646362,0.240089744329453,0.207129806280136,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.975520312786102,0.161919206380844,0.148802742362022,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.648328483104706,-0.686489403247833,-0.32924485206604,\r\n-0.718215525150299,-0.630533039569855,-0.294269233942032,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.723999261856079,-0.612415850162506,-0.317445814609528,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.973550736904144,0.164387568831444,-0.158668130636215,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.988450586795807,-0.0306554101407528,-0.148410186171532,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.978408396244049,0.163357362151146,-0.126614674925804,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.811556458473206,-0.510505676269531,-0.284182876348495,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.930068671703339,-0.301959961652756,-0.209266066551209,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.930812537670136,-0.282004088163376,-0.232511520385742,\r\n-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.897737741470337,-0.402487188577652,-0.179083496332169,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.554388225078583,-0.816717743873596,-0.160080522298813,-0.517889261245728,-0.839157402515411,-0.1661486774683,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.136709079146385,-0.972881972789764,-0.186577007174492,-0.418930798768997,-0.890186607837677,-0.179066047072411,0.0648350194096565,-0.969828546047211,-0.23500819504261,-0.72846394777298,0.604507386684418,0.322352170944214,-0.902132272720337,0.362485647201538,0.234011739492416,-0.860961079597473,0.428524613380432,0.274066895246506,-0.948395490646362,0.240089744329453,0.207129806280136,-0.860961079597473,0.428524613380432,0.274066895246506,-0.902132272720337,0.362485647201538,0.234011739492416,-0.975520312786102,0.161919206380844,0.148802742362022,-0.948395490646362,0.240089744329453,0.207129806280136,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.993153214454651,-0.116110019385815,0.012847887352109,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.975520312786102,0.161919206380844,0.148802742362022,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.887856245040894,-0.4343521296978,-0.151820123195648,-0.651397466659546,-0.690043568611145,-0.315469563007355,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.636446595191956,-0.676584661006927,-0.370362997055054,\r\n-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.980830252170563,-0.0431137010455132,-0.190034776926041,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.986060202121735,0.0164891313761473,-0.16556940972805,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.853668570518494,-0.442951261997223,-0.273941606283188,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.959398090839386,-0.206047549843788,-0.192612767219543,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.814949154853821,-0.550543665885925,-0.180995211005211,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.418930798768997,-0.890186607837677,-0.179066047072411,\r\n-0.0972829237580299,-0.963500559329987,-0.24940450489521,0.0648350194096565,-0.969828546047211,-0.23500819504261,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.902132272720337,0.362485647201538,0.234011739492416,-0.72846394777298,0.604507386684418,0.322352170944214,-0.802118122577667,0.535420298576355,0.264445573091507,-0.948395490646362,0.240089744329453,0.207129806280136,-0.902132272720337,0.362485647201538,0.234011739492416,-0.986918747425079,0.077557273209095,0.141337037086487,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.948395490646362,0.240089744329453,0.207129806280136,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.774015665054321,-0.584555089473724,-0.243300095200539,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.608904302120209,-0.715896546840668,-0.341654062271118,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.636446595191956,-0.676584661006927,-0.370362997055054,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.715293228626251,-0.607694745063782,-0.345054417848587,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.975502908229828,0.077031321823597,-0.206058740615845,\r\n-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.966324210166931,-0.104788757860661,-0.235025197267532,-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.975502908229828,0.077031321823597,-0.206058740615845,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.974011898040771,0.173350647091866,-0.145774632692337,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.973858177661896,-0.120804265141487,-0.192370891571045,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.905886232852936,-0.345642685890198,-0.244747117161751,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.519130051136017,-0.819642424583435,-0.242260500788689,-0.0972829237580299,-0.963500559329987,-0.24940450489521,0.275043308734894,-0.938038349151611,-0.210796281695366,0.0648350194096565,-0.969828546047211,-0.23500819504261,-0.418930798768997,-0.890186607837677,-0.179066047072411,-0.519130051136017,-0.819642424583435,-0.242260500788689,\r\n-0.0972829237580299,-0.963500559329987,-0.24940450489521,-0.72846394777298,0.604507386684418,0.322352170944214,-0.612618863582611,0.730165004730225,0.302583873271942,-0.802118122577667,0.535420298576355,0.264445573091507,-0.802118122577667,0.535420298576355,0.264445573091507,-0.990639209747314,0.117681838572025,0.069172203540802,-0.902132272720337,0.362485647201538,0.234011739492416,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.986918747425079,0.077557273209095,0.141337037086487,-0.902132272720337,0.362485647201538,0.234011739492416,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.948395490646362,0.240089744329453,0.207129806280136,-0.986918747425079,0.077557273209095,0.141337037086487,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.998416185379028,-0.0366691127419472,0.0426669493317604,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.942338883876801,-0.317808777093887,-0.104856871068478,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.693607747554779,-0.655340075492859,-0.29906103014946,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.947674751281738,-0.196022599935532,-0.251967489719391,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.519130051136017,-0.819642424583435,-0.242260500788689,-0.864995658397675,-0.458457678556442,-0.203958064317703,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.975502908229828,0.077031321823597,-0.206058740615845,\r\n-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.916445434093475,-0.272303223609924,-0.293221056461334,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.974011898040771,0.173350647091866,-0.145774632692337,-0.981095016002655,0.128040552139282,-0.14511427283287,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.970591425895691,0.168906584382057,-0.171530604362488,-0.974011898040771,0.173350647091866,-0.145774632692337,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.766039311885834,-0.54709404706955,-0.337448745965958,-0.930812537670136,-0.282004088163376,-0.232511520385742,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.774671316146851,-0.523716032505035,-0.354408949613571,-0.0972829237580299,-0.963500559329987,-0.24940450489521,\r\n0.18247227370739,-0.956511259078979,-0.227574348449707,0.275043308734894,-0.938038349151611,-0.210796281695366,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.0972829237580299,-0.963500559329987,-0.24940450489521,-0.519130051136017,-0.819642424583435,-0.242260500788689,-0.612618863582611,0.730165004730225,0.302583873271942,-0.681716024875641,0.65416294336319,0.327618569135666,-0.802118122577667,0.535420298576355,0.264445573091507,-0.802118122577667,0.535420298576355,0.264445573091507,-0.88343471288681,0.396616667509079,0.249475806951523,-0.990639209747314,0.117681838572025,0.069172203540802,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.902132272720337,0.362485647201538,0.234011739492416,-0.990639209747314,0.117681838572025,0.069172203540802,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.986918747425079,0.077557273209095,0.141337037086487,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.986918747425079,0.077557273209095,0.141337037086487,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.84205561876297,-0.496578127145767,-0.210600107908249,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.603876292705536,-0.708384156227112,-0.36541086435318,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.963943064212799,-0.147220477461815,-0.221675127744675,-0.947674751281738,-0.196022599935532,-0.251967489719391,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.947674751281738,-0.196022599935532,-0.251967489719391,\r\n-0.947367966175079,-0.218671768903732,-0.233830019831657,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.974011898040771,0.173350647091866,-0.145774632692337,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.957994341850281,-0.0977673977613449,-0.26960763335228,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.814528524875641,-0.48236820101738,-0.3222796022892,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.774671316146851,-0.523716032505035,-0.354408949613571,-0.876724779605865,-0.390847533941269,-0.280342221260071,-0.717091858386993,-0.589447140693665,-0.371929138898849,\r\n-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.774671316146851,-0.523716032505035,-0.354408949613571,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.171872168779373,-0.934715270996094,-0.311074197292328,0.18247227370739,-0.956511259078979,-0.227574348449707,-0.0972829237580299,-0.963500559329987,-0.24940450489521,-0.675358057022095,-0.659773290157318,-0.329530596733093,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.0972829237580299,-0.963500559329987,-0.24940450489521,-0.681716024875641,0.65416294336319,0.327618569135666,-0.88343471288681,0.396616667509079,0.249475806951523,-0.802118122577667,0.535420298576355,0.264445573091507,-0.990639209747314,0.117681838572025,0.069172203540802,-0.88343471288681,0.396616667509079,0.249475806951523,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.990639209747314,0.117681838572025,0.069172203540802,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.982424259185791,-0.186129525303841,-0.0140795903280377,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.7088583111763,-0.634646892547607,-0.307803750038147,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.591161668300629,-0.705421626567841,-0.391034603118896,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.658706247806549,-0.647347271442413,-0.383467525243759,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.947674751281738,-0.196022599935532,-0.251967489719391,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.921250700950623,-0.245803385972977,-0.30145925283432,\r\n-0.947674751281738,-0.196022599935532,-0.251967489719391,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.848432600498199,-0.375533819198608,-0.373009532690048,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.960032284259796,-0.0584897398948669,-0.27370947599411,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.626013696193695,-0.682396292686462,-0.377414882183075,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.979373395442963,0.118879579007626,-0.163386985659599,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.976994216442108,-0.0313660502433777,-0.210946246981621,-0.957994341850281,-0.0977673977613449,-0.26960763335228,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.957994341850281,-0.0977673977613449,-0.26960763335228,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.895231366157532,-0.334132969379425,-0.294814944267273,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.856956422328949,-0.417123764753342,-0.302710115909576,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.910444378852844,-0.287715405225754,-0.297171175479889,\r\n-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.774671316146851,-0.523716032505035,-0.354408949613571,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.774671316146851,-0.523716032505035,-0.354408949613571,0.12588806450367,-0.92530483007431,-0.357719331979752,0.18247227370739,-0.956511259078979,-0.227574348449707,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.88343471288681,0.396616667509079,0.249475806951523,-0.681716024875641,0.65416294336319,0.327618569135666,-0.738685429096222,0.584546089172363,0.335633248090744,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.88343471288681,0.396616667509079,0.249475806951523,-0.990639209747314,0.117681838572025,0.069172203540802,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.990639209747314,0.117681838572025,0.069172203540802,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.994434952735901,-0.10461013764143,0.01247913017869,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.890690624713898,-0.424125015735626,-0.163670465350151,-0.611979424953461,-0.698199391365051,-0.371481865644455,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.717091858386993,-0.589447140693665,-0.371929138898849,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.952051997184753,-0.144261941313744,-0.269787609577179,\r\n-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.768470466136932,-0.474676698446274,-0.429109692573547,-0.352802634239197,-0.820475876331329,-0.449832767248154,0.12588806450367,-0.92530483007431,-0.357719331979752,-0.171872168779373,-0.934715270996094,-0.311074197292328,-0.975044012069702,0.0961500555276871,-0.200110539793968,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.905052423477173,-0.243255168199539,-0.348865360021591,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.957994341850281,-0.0977673977613449,-0.26960763335228,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.952051997184753,-0.144261941313744,-0.269787609577179,-0.972628593444824,-0.0375081412494183,-0.229318007826805,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.973823487758636,0.0802582800388336,-0.212664723396301,-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.973823487758636,0.0802582800388336,-0.212664723396301,-0.961590170860291,0.0572612173855305,-0.268449872732162,\r\n-0.974565446376801,0.0802805125713348,-0.209229737520218,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.910444378852844,-0.287715405225754,-0.297171175479889,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.697499394416809,-0.603950142860413,-0.385666519403458,-0.593291282653809,0.71287876367569,0.373910814523697,-0.738685429096222,0.584546089172363,0.335633248090744,-0.681716024875641,0.65416294336319,0.327618569135666,-0.851153254508972,0.454253047704697,0.263044118881226,-0.88343471288681,0.396616667509079,0.249475806951523,-0.738685429096222,0.584546089172363,0.335633248090744,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.851153254508972,0.454253047704697,0.263044118881226,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.88343471288681,0.396616667509079,0.249475806951523,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.627768158912659,-0.677285671234131,-0.383654892444611,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.897458612918854,-0.384015381336212,-0.217025816440582,-0.627768158912659,-0.677285671234131,-0.383654892444611,\r\n-0.738481760025024,-0.60682612657547,-0.293949961662292,-0.627768158912659,-0.677285671234131,-0.383654892444611,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.0317179150879383,-0.89952427148819,-0.435717821121216,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.905052423477173,-0.243255168199539,-0.348865360021591,0.12588806450367,-0.92530483007431,-0.357719331979752,-0.352802634239197,-0.820475876331329,-0.449832767248154,-0.0317179150879383,-0.89952427148819,-0.435717821121216,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.965062618255615,0.124439842998981,-0.230583384633064,-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.963104009628296,-0.0338217504322529,-0.266995489597321,-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.973823487758636,0.0802582800388336,-0.212664723396301,-0.789599478244781,-0.380529910326004,-0.481382876634598,\r\n-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.973823487758636,0.0802582800388336,-0.212664723396301,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.752331256866455,-0.538258135318756,-0.37983638048172,-0.814577162265778,-0.440955609083176,-0.376858115196228,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.596979320049286,-0.68012410402298,-0.425495862960815,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.851153254508972,0.454253047704697,0.263044118881226,-0.738685429096222,0.584546089172363,0.335633248090744,-0.593291282653809,0.71287876367569,0.373910814523697,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.978644847869873,-0.193071216344833,-0.070552870631218,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.99311363697052,0.0956375524401665,0.0676656365394592,-0.851153254508972,0.454253047704697,0.263044118881226,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.627768158912659,-0.677285671234131,-0.383654892444611,\r\n-0.82077431678772,-0.499750405550003,-0.276728957891464,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.557596743106842,-0.725598514080048,-0.403227597475052,-0.627768158912659,-0.677285671234131,-0.383654892444611,-0.921250700950623,-0.245803385972977,-0.30145925283432,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.924858331680298,-0.190911397337914,-0.328922092914581,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.887486219406128,-0.332112401723862,-0.319483131170273,-0.0317179150879383,-0.89952427148819,-0.435717821121216,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.513607144355774,-0.716664433479309,-0.471804648637772,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.93265300989151,-0.037953332066536,-0.358772546052933,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.970565378665924,-0.00571311078965664,-0.240769699215889,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.973823487758636,0.0802582800388336,-0.212664723396301,\r\n-0.958620548248291,-0.0502915680408478,-0.280209243297577,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.958620548248291,-0.0502915680408478,-0.280209243297577,-0.961590170860291,0.0572612173855305,-0.268449872732162,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.677205860614777,-0.573472619056702,-0.461000204086304,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.806413531303406,-0.446275264024735,-0.387989014387131,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.553534150123596,-0.724605977535248,-0.410543501377106,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.593291282653809,0.71287876367569,0.373910814523697,-0.699440598487854,0.626336455345154,0.344216972589493,-0.851153254508972,0.454253047704697,0.263044118881226,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.851153254508972,0.454253047704697,0.263044118881226,-0.985135138034821,0.16293041408062,0.054427906870842,-0.854738414287567,-0.372325867414474,-0.36165663599968,\r\n-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.274226635694504,-0.817692697048187,-0.50614058971405,-0.0317179150879383,-0.89952427148819,-0.435717821121216,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.789831042289734,-0.432301104068756,-0.435066103935242,-0.948006868362427,-0.104412771761417,-0.300633996725082,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.904024064540863,-0.194126039743423,-0.38086149096489,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.95684140920639,-0.0333918742835522,-0.28868556022644,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.958620548248291,-0.0502915680408478,-0.280209243297577,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.958620548248291,-0.0502915680408478,-0.280209243297577,\r\n-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.62313574552536,-0.631746351718903,-0.461083710193634,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.612153649330139,-0.624160706996918,-0.485480308532715,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.654616475105286,-0.663974583148956,-0.361406743526459,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.546208202838898,-0.711986660957336,-0.441283851861954,-0.593291282653809,0.71287876367569,0.373910814523697,-0.580230176448822,0.705451190471649,0.40702748298645,-0.699440598487854,0.626336455345154,0.344216972589493,-0.813977897167206,0.519337356090546,0.260247051715851,-0.851153254508972,0.454253047704697,0.263044118881226,-0.699440598487854,0.626336455345154,0.344216972589493,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.828434944152832,-0.483616411685944,-0.282507836818695,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.813977897167206,0.519337356090546,0.260247051715851,-0.985135138034821,0.16293041408062,0.054427906870842,-0.851153254508972,0.454253047704697,0.263044118881226,-0.984342694282532,-0.149695679545403,-0.0930624827742577,-0.985135138034821,0.16293041408062,0.054427906870842,\r\n-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.879857063293457,-0.277870237827301,-0.385538041591644,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.78590601682663,-0.477161407470703,-0.393279254436493,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.854738414287567,-0.372325867414474,-0.36165663599968,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.274226635694504,-0.817692697048187,-0.50614058971405,-0.383298188447952,-0.760449469089508,-0.524212718009949,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.973832428455353,0.0536128804087639,-0.220853000879288,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.967923820018768,0.0292398743331432,-0.249536290764809,\r\n-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.965086162090302,0.0769751891493797,-0.250366598367691,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.531074047088623,-0.712133586406708,-0.459157854318619,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.662897408008575,-0.590822875499725,-0.45988604426384,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.813977897167206,0.519337356090546,0.260247051715851,-0.699440598487854,0.626336455345154,0.344216972589493,-0.580230176448822,0.705451190471649,0.40702748298645,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.985135138034821,0.16293041408062,0.054427906870842,-0.813977897167206,0.519337356090546,0.260247051715851,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.985135138034821,0.16293041408062,0.054427906870842,-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.842359900474548,-0.359280973672867,-0.401679992675781,-0.764861881732941,-0.45793405175209,-0.45308119058609,\r\n-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.274226635694504,-0.817692697048187,-0.50614058971405,-0.789599478244781,-0.380529910326004,-0.481382876634598,-0.935395658016205,-0.0693237781524658,-0.346740633249283,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.901207804679871,-0.166434124112129,-0.400155067443848,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.855889916419983,-0.262750297784805,-0.445437550544739,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.967923820018768,0.0292398743331432,-0.249536290764809,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.901288270950317,-0.137745097279549,-0.410737872123718,\r\n-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.894677996635437,-0.186267912387848,-0.406023859977722,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.493245244026184,-0.718615829944611,-0.490204423666,-0.636836588382721,-0.642230868339539,-0.426589548587799,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.502261579036713,-0.695690751075745,-0.513563513755798,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.503329575061798,-0.702230155467987,-0.503519713878632,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.736233234405518,0.587580978870392,0.335721462965012,-0.813977897167206,0.519337356090546,0.260247051715851,-0.580230176448822,0.705451190471649,0.40702748298645,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.524414837360382,-0.700480878353119,-0.484061419963837,-0.813977897167206,0.519337356090546,0.260247051715851,-0.943776547908783,0.302997529506683,0.132204324007034,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.828752756118774,-0.453795850276947,-0.32747220993042,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.804197072982788,-0.367452323436737,-0.467167764902115,\r\n-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.576999187469482,-0.65401417016983,-0.489221036434174,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.688261449337006,-0.560593962669373,-0.460467636585236,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.767938137054443,-0.468459784984589,-0.436825275421143,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.946598589420319,0.0243376400321722,-0.321494579315186,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.946598589420319,0.0243376400321722,-0.321494579315186,\r\n-0.915307283401489,0.019437039270997,-0.402286797761917,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.958982586860657,0.00983571726828814,-0.283294141292572,-0.901288270950317,-0.137745097279549,-0.410737872123718,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.937715470790863,-0.0446944385766983,-0.344517022371292,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.901288270950317,-0.137745097279549,-0.410737872123718,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.943776547908783,0.302997529506683,0.132204324007034,-0.813977897167206,0.519337356090546,0.260247051715851,-0.736233234405518,0.587580978870392,0.335721462965012,-0.736233234405518,0.587580978870392,0.335721462965012,-0.580230176448822,0.705451190471649,0.40702748298645,-0.673294723033905,0.636821389198303,0.37567612528801,-0.943776547908783,0.302997529506683,0.132204324007034,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.641669809818268,-0.620025396347046,-0.451473385095596,-0.990566194057465,-0.0501841679215431,-0.127515122294426,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.764861881732941,-0.45793405175209,-0.45308119058609,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.804197072982788,-0.367452323436737,-0.467167764902115,\r\n-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.809000134468079,-0.316657066345215,-0.495224177837372,-0.804197072982788,-0.367452323436737,-0.467167764902115,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.923223912715912,-0.0106579670682549,-0.384114444255829,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.898679792881012,-0.113897621631622,-0.423558533191681,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.940567255020142,0.0468701608479023,-0.336357563734055,-0.79259866476059,-0.210470974445343,-0.572266697883606,\r\n-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.950838387012482,0.0400842241942883,-0.30708235502243,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.901288270950317,-0.137745097279549,-0.410737872123718,-0.901288270950317,-0.137745097279549,-0.410737872123718,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.512486815452576,-0.699364840984344,-0.498242944478989,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.463832825422287,-0.717106401920319,-0.520208954811096,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.909760653972626,0.387361317873001,0.14928711950779,-0.943776547908783,0.302997529506683,0.132204324007034,-0.736233234405518,0.587580978870392,0.335721462965012,-0.736233234405518,0.587580978870392,0.335721462965012,-0.673294723033905,0.636821389198303,0.37567612528801,-0.909760653972626,0.387361317873001,0.14928711950779,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.943776547908783,0.302997529506683,0.132204324007034,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.660351395606995,-0.562723338603973,-0.497270882129669,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.681259512901306,-0.517734587192535,-0.51752907037735,\r\n-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.485777795314789,-0.688021779060364,-0.539115846157074,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.57608836889267,-0.623975336551666,-0.527993142604828,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.843542635440826,-0.238581642508507,-0.481159538030624,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.825230598449707,-0.178194344043732,-0.535948753356934,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.896231293678284,-0.00298339431174099,-0.443576961755753,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.869513034820557,-0.0525751486420631,-0.491103649139404,-0.68486762046814,-0.233444064855576,-0.690260827541351,\r\n-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.899500608444214,-0.0488320402801037,-0.434181958436966,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.915307283401489,0.019437039270997,-0.402286797761917,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.874443054199219,-0.179272323846817,-0.450789004564285,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.868910610675812,-0.394788652658463,-0.29855677485466,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.909760653972626,0.387361317873001,0.14928711950779,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.943776547908783,0.302997529506683,0.132204324007034,-0.834490358829498,0.483056426048279,0.265107929706573,-0.909760653972626,0.387361317873001,0.14928711950779,-0.673294723033905,0.636821389198303,0.37567612528801,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.589380621910095,-0.607625246047974,-0.532373785972595,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.497187882661819,-0.653230845928192,-0.571045994758606,\r\n-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.681259512901306,-0.517734587192535,-0.51752907037735,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.752000033855438,-0.391299933195114,-0.530452728271484,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.897492110729218,0.0179321076720953,-0.440665602684021,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.906997203826904,-0.0465658716857433,-0.418554157018662,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.872063994407654,-0.152706488966942,-0.464956909418106,-0.825230598449707,-0.178194344043732,-0.535948753356934,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.825230598449707,-0.178194344043732,-0.535948753356934,-0.819087207317352,-0.224791094660759,-0.527792632579803,-0.753413379192352,-0.34511587023735,-0.559699177742004,-0.659606337547302,-0.412547051906586,-0.62827080488205,\r\n-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.177448913455009,-0.687497437000275,-0.704172551631927,-0.79259866476059,-0.210470974445343,-0.572266697883606,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.229001119732857,-0.722850382328033,-0.651955246925354,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.634104192256927,-0.616696119308472,-0.466473549604416,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.498355805873871,-0.679231822490692,-0.538781583309174,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.980947136878967,-0.0892265737056732,-0.172572523355484,-0.909760653972626,0.387361317873001,0.14928711950779,-0.909760653972626,0.387361317873001,0.14928711950779,-0.834490358829498,0.483056426048279,0.265107929706573,-0.992255389690399,0.0593556202948093,-0.109114974737167,\r\n-0.900354981422424,0.397759199142456,0.176488935947418,-0.834490358829498,0.483056426048279,0.265107929706573,-0.673294723033905,0.636821389198303,0.37567612528801,-0.489158004522324,-0.667475283145905,-0.561427652835846,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.682336628437042,-0.501140594482422,-0.532235503196716,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.561378180980682,-0.606369912624359,-0.563178241252899,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.617940962314606,-0.466092944145203,-0.633171498775482,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.445110499858856,-0.689192831516266,-0.571742653846741,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.825230598449707,-0.178194344043732,-0.535948753356934,\r\n-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.761778593063354,-0.296408921480179,-0.57605117559433,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.825230598449707,-0.178194344043732,-0.535948753356934,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.703153908252716,-0.352414429187775,-0.617558479309082,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.68486762046814,-0.233444064855576,-0.690260827541351,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.792489647865295,-0.138098329305649,-0.594044506549835,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.177448913455009,-0.687497437000275,-0.704172551631927,-0.579224705696106,-0.422741442918777,-0.696985125541687,-0.229001119732857,-0.722850382328033,-0.651955246925354,-0.644889533519745,-0.387231051921844,-0.658915460109711,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.81371933221817,-0.0613472536206245,-0.578011453151703,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.992255389690399,0.0593556202948093,-0.109114974737167,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.909760653972626,0.387361317873001,0.14928711950779,-0.992255389690399,0.0593556202948093,-0.109114974737167,\r\n-0.871354103088379,-0.309900909662247,-0.380398899316788,-0.900354981422424,0.397759199142456,0.176488935947418,-0.992255389690399,0.0593556202948093,-0.109114974737167,-0.834490358829498,0.483056426048279,0.265107929706573,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.442958682775497,-0.689424812793732,-0.573132455348969,-0.497187882661819,-0.653230845928192,-0.571045994758606,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.661057710647583,-0.501283049583435,-0.558316946029663,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.687638759613037,-0.433512449264526,-0.582425713539124,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.617940962314606,-0.466092944145203,-0.633171498775482,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.617940962314606,-0.466092944145203,-0.633171498775482,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.567854046821594,-0.582300007343292,-0.581780254840851,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.647789359092712,-0.554912984371185,-0.521957993507385,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.876499712467194,-0.0334952212870121,-0.48023533821106,-0.801597416400909,-0.0643454268574715,-0.594391345977783,\r\n-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.867252886295319,-0.0960182324051857,-0.488521039485931,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.768071055412292,-0.232045561075211,-0.59684294462204,-0.659606337547302,-0.412547051906586,-0.62827080488205,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.402128100395203,-0.422483414411545,-0.812281131744385,0.164703354239464,-0.624059855937958,-0.763820588588715,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.0905409827828407,-0.704576671123505,-0.703828036785126,-0.177448913455009,-0.687497437000275,-0.704172551631927,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.753211200237274,-0.0641106590628624,-0.654646813869476,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.587472081184387,-0.183863833546638,-0.788080275058746,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.647789359092712,-0.554912984371185,-0.521957993507385,\r\n-0.992255389690399,0.0593556202948093,-0.109114974737167,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.900354981422424,0.397759199142456,0.176488935947418,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.992255389690399,0.0593556202948093,-0.109114974737167,-0.490165084600449,-0.668226420879364,-0.559652984142303,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.504216611385345,-0.63392961025238,-0.586428701877594,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.440144181251526,-0.677052736282349,-0.589807331562042,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.617940962314606,-0.466092944145203,-0.633171498775482,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.772933840751648,-0.0491517782211304,-0.632579803466797,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.774053573608398,-0.146306604146957,-0.615983188152313,\r\n-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.708202183246613,-0.28832933306694,-0.644449949264526,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.402128100395203,-0.422483414411545,-0.812281131744385,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.164703354239464,-0.624059855937958,-0.763820588588715,0.164703354239464,-0.624059855937958,-0.763820588588715,0.0905409827828407,-0.704576671123505,-0.703828036785126,-0.263389706611633,-0.535624444484711,-0.802329242229462,-0.558907866477966,-0.321701049804688,-0.764284074306488,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.0880248695611954,-0.598908722400665,-0.79596471786499,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.0788229927420616,-0.479235231876373,-0.874139785766602,-0.943374633789063,0.302140653133392,0.136949732899666,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.900354981422424,0.397759199142456,0.176488935947418,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.598138153553009,-0.616566956043243,-0.511933386325836,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.800574660301209,-0.392559945583344,-0.452743619680405,\r\n-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.460062652826309,-0.674557864665985,-0.577333450317383,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.52829897403717,-0.552954792976379,-0.644314348697662,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.592511594295502,-0.497356802225113,-0.633692383766174,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.454367727041245,-0.629077851772308,-0.630722522735596,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.801597416400909,-0.0643454268574715,-0.594391345977783,-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.774053573608398,-0.146306604146957,-0.615983188152313,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.558971881866455,0.0223034080117941,-0.82888650894165,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.650367975234985,-0.306011229753494,-0.695254325866699,-0.662011861801147,-0.063225045800209,-0.746821761131287,\r\n-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.0788229927420616,-0.479235231876373,-0.874139785766602,-0.0880248695611954,-0.598908722400665,-0.79596471786499,-0.346487998962402,-0.391142219305038,-0.852615773677826,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.580372869968414,-0.152264475822449,-0.79998916387558,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.0788229927420616,-0.479235231876373,-0.874139785766602,-0.423923820257187,-0.25984600186348,-0.867622315883636,-0.91229522228241,-0.298271834850311,-0.280626654624939,-0.943374633789063,0.302140653133392,0.136949732899666,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.454881340265274,-0.637338578701019,-0.62199866771698,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.557897090911865,-0.588605582714081,-0.585059106349945,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.610832750797272,-0.376990556716919,-0.69624799489975,-0.503944098949432,-0.498393148183823,-0.705439209938049,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.642542719841003,-0.0771373137831688,-0.762357234954834,\r\n-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.642542719841003,-0.0771373137831688,-0.762357234954834,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.706559002399445,-0.0900379717350006,-0.701902687549591,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.558971881866455,0.0223034080117941,-0.82888650894165,-0.640469193458557,-0.155933812260628,-0.751986503601074,-0.558971881866455,0.0223034080117941,-0.82888650894165,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.689106822013855,-0.18119540810585,-0.701640903949738,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.620979905128479,0.451020091772079,-0.641065239906311,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.199089258909225,-0.27740803360939,-0.939897954463959,-0.264787495136261,-0.287361711263657,-0.920494794845581,0.00190833199303597,-0.377771496772766,-0.925896883010864,-0.0788229927420616,-0.479235231876373,-0.874139785766602,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.954597473144531,-0.00291809788905084,-0.297884315252304,\r\n-0.905507743358612,0.406940698623657,-0.120228409767151,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.744374394416809,0.118045903742313,-0.657245635986328,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.534866154193878,-0.479977160692215,-0.695370376110077,-0.228636085987091,-0.203442096710205,-0.952017188072205,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.658524692058563,-0.124265365302563,-0.74222856760025,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.334265798330307,0.0702492967247963,-0.939857065677643,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.662011861801147,-0.063225045800209,-0.746821761131287,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.620979905128479,0.451020091772079,-0.641065239906311,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.625300824642181,-0.00905311666429043,-0.780331194400787,-0.620979905128479,0.451020091772079,-0.641065239906311,-0.481663167476654,0.78721672296524,-0.385084807872772,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.199089258909225,-0.27740803360939,-0.939897954463959,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.115175165235996,-0.334916055202484,-0.935182213783264,-0.199089258909225,-0.27740803360939,-0.939897954463959,0.00190833199303597,-0.377771496772766,-0.925896883010864,-0.264787495136261,-0.287361711263657,-0.920494794845581,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.865359544754028,0.460894554853439,-0.196796774864197,\r\n-0.905507743358612,0.406940698623657,-0.120228409767151,-0.865359544754028,0.460894554853439,-0.196796774864197,-0.792366147041321,-0.260418057441711,-0.551668524742126,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.707939207553864,-0.0108166234567761,-0.706190407276154,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.744374394416809,0.118045903742313,-0.657245635986328,-0.654706120491028,-0.23290778696537,-0.719106256961823,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.744374394416809,0.118045903742313,-0.657245635986328,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.707939207553864,-0.0108166234567761,-0.706190407276154,0.0523047484457493,-0.271629929542542,-0.960979342460632,-0.347224026918411,-0.201228395104408,-0.915938019752502,-0.228636085987091,-0.203442096710205,-0.952017188072205,-0.348505616188049,-0.0962213128805161,-0.932354629039764,-0.228636085987091,-0.203442096710205,-0.952017188072205,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.348505616188049,-0.0962213128805161,-0.932354629039764,-0.532119870185852,-0.116868726909161,-0.838564217090607,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.334265798330307,0.0702492967247963,-0.939857065677643,-0.517861127853394,-0.0313512794673443,-0.854889929294586,-0.2538241147995,0.196635499596596,-0.947052121162415,-0.481663167476654,0.78721672296524,-0.385084807872772,-0.65838360786438,0.0497098490595818,-0.751039147377014,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.347224026918411,-0.201228395104408,-0.915938019752502,0.0523047484457493,-0.271629929542542,-0.960979342460632,-0.115175165235996,-0.334916055202484,-0.935182213783264,0.00190833199303597,-0.377771496772766,-0.925896883010864,\r\n-0.199089258909225,-0.27740803360939,-0.939897954463959,-0.115175165235996,-0.334916055202484,-0.935182213783264,-0.799753904342651,0.11296408623457,-0.589603900909424,-0.865359544754028,0.460894554853439,-0.196796774864197,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.744374394416809,0.118045903742313,-0.657245635986328,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.252261608839035,0.9574214220047,-0.140385121107101,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.252261608839035,0.9574214220047,-0.140385121107101,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.252261608839035,0.9574214220047,-0.140385121107101,\r\n-0.17766971886158,0.965238511562347,-0.191697463393211,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.227992698550224,0.958415806293488,-0.171634271740913,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.236711099743843,0.941729068756104,-0.238985106348991,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.24687272310257,0.94755756855011,-0.202949270606041,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.252261608839035,0.9574214220047,-0.140385121107101,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.252261608839035,0.9574214220047,-0.140385121107101,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.125066384673119,0.943235278129578,-0.307677716016769,\r\n-0.186063751578331,0.946540772914886,-0.263516217470169,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.17766971886158,0.965238511562347,-0.191697463393211,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.268643349409103,0.913428366184235,-0.305743813514709,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.254224419593811,0.92618989944458,-0.278463989496231,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.237096697092056,0.969841420650482,-0.0565034151077271,\r\n-0.22547709941864,0.96868360042572,-0.103981398046017,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.125066384673119,0.943235278129578,-0.307677716016769,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.186063751578331,0.946540772914886,-0.263516217470169,-0.125066384673119,0.943235278129578,-0.307677716016769,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.239998191595078,0.907877802848816,-0.34374213218689,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.22547709941864,0.96868360042572,-0.103981398046017,-0.237096697092056,0.969841420650482,-0.0565034151077271,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.185650244355202,0.976517915725708,-0.109300792217255,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.229717552661896,0.925013899803162,-0.302620381116867,-0.239998191595078,0.907877802848816,-0.34374213218689,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.206320405006409,0.9338698387146,-0.292093962430954,\r\n-0.2341588139534,0.951114654541016,-0.201371297240257,-0.232422605156899,0.938839912414551,-0.254085212945938,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.245021939277649,0.954568445682526,-0.169597074389458,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.24825444817543,0.96304976940155,-0.104425996541977,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.247355982661247,0.964758157730103,-0.0897588804364204,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.237096697092056,0.969841420650482,-0.0565034151077271,-0.0333127714693546,0.98501980304718,-0.169192716479301,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.132444187998772,0.957191348075867,-0.257377356290817,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.125066384673119,0.943235278129578,-0.307677716016769,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.125066384673119,0.943235278129578,-0.307677716016769,-0.239998191595078,0.907877802848816,-0.34374213218689,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.237096697092056,0.969841420650482,-0.0565034151077271,\r\n-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.148993149399757,0.988348484039307,-0.0311156380921602,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.147834405303001,0.982192695140839,-0.115941576659679,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.148993149399757,0.988348484039307,-0.0311156380921602,-0.160996481776237,0.984654664993286,-0.0673437267541885,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.239998191595078,0.907877802848816,-0.34374213218689,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.250934541225433,0.908414602279663,-0.334387093782425,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.206320405006409,0.9338698387146,-0.292093962430954,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.197463408112526,0.960334479808807,-0.196890413761139,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.19377812743187,0.948401153087616,-0.250968515872955,\r\n-0.184973448514938,0.931315839290619,-0.313744395971298,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.237096697092056,0.969841420650482,-0.0565034151077271,-0.256552249193192,0.964798092842102,-0.0578395761549473,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.0333127714693546,0.98501980304718,-0.169192716479301,-0.0117362914606929,0.961595475673676,-0.274219304323196,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.0333127714693546,0.98501980304718,-0.169192716479301,-0.1171944886446,0.977306067943573,-0.176460087299347,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.173085168004036,0.925736427307129,-0.33623418211937,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.229590937495232,0.972432255744934,0.0407851710915565,\r\n-0.197144106030464,0.979762375354767,-0.0346386581659317,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.148993149399757,0.988348484039307,-0.0311156380921602,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.148993149399757,0.988348484039307,-0.0311156380921602,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.118805758655071,0.987469732761383,-0.103868432343006,-0.286545842885971,0.888419210910797,-0.358612060546875,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.259814441204071,0.876717448234558,-0.40479975938797,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.133733049035072,0.903489828109741,-0.407211780548096,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.173033162951469,0.912062168121338,-0.371755301952362,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.2341588139534,0.951114654541016,-0.201371297240257,-0.197463408112526,0.960334479808807,-0.196890413761139,-0.197463408112526,0.960334479808807,-0.196890413761139,\r\n-0.19377812743187,0.948401153087616,-0.250968515872955,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.252737551927567,0.959071338176727,-0.127694338560104,-0.255820870399475,0.962325274944305,-0.09211765229702,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.253188341856003,0.96610814332962,-0.0503046475350857,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.0333127714693546,0.98501980304718,-0.169192716479301,0.0403161495923996,0.979578256607056,-0.196979522705078,-0.0117362914606929,0.961595475673676,-0.274219304323196,-0.0117362914606929,0.961595475673676,-0.274219304323196,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.0799867585301399,0.962604224681854,-0.258834064006805,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.0359442718327045,0.994559943675995,-0.0977672711014748,-0.0333127714693546,0.98501980304718,-0.169192716479301,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.0161277540028095,0.909235835075378,-0.415968716144562,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.0920970737934113,0.929087519645691,-0.358210027217865,-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.0775673687458038,0.938620209693909,-0.336118072271347,-0.0161277540028095,0.909235835075378,-0.415968716144562,\r\n-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.246523424983025,0.968971729278564,-0.0178863052278757,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.160439163446426,0.986722052097321,-0.0252732839435339,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.163285180926323,0.986353695392609,0.0210761986672878,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.0846092700958252,0.989570677280426,-0.116579741239548,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.0359442718327045,0.994559943675995,-0.0977672711014748,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.2971431016922,0.847845494747162,-0.439162790775299,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.166317164897919,0.900696754455566,-0.401352524757385,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.133733049035072,0.903489828109741,-0.407211780548096,\r\n-0.173033162951469,0.912062168121338,-0.371755301952362,-0.168047696352005,0.925595998764038,-0.339163482189178,-0.133733049035072,0.903489828109741,-0.407211780548096,-0.184973448514938,0.931315839290619,-0.313744395971298,-0.173033162951469,0.912062168121338,-0.371755301952362,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.197463408112526,0.960334479808807,-0.196890413761139,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.19377812743187,0.948401153087616,-0.250968515872955,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.182935327291489,0.932489514350891,-0.311444729566574,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.0333127714693546,0.98501980304718,-0.169192716479301,0.0321122482419014,0.993133068084717,-0.112496070563793,0.0403161495923996,0.979578256607056,-0.196979522705078,0.0403161495923996,0.979578256607056,-0.196979522705078,0.0543609149754047,0.957504212856293,-0.28324943780899,-0.0117362914606929,0.961595475673676,-0.274219304323196,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.0117362914606929,0.961595475673676,-0.274219304323196,0.00117692782077938,0.935575246810913,-0.353125184774399,-0.0333127714693546,0.98501980304718,-0.169192716479301,\r\n-0.0359442718327045,0.994559943675995,-0.0977672711014748,0.0321122482419014,0.993133068084717,-0.112496070563793,-0.0159701276570559,0.90277773141861,-0.429810732603073,-0.0161277540028095,0.909235835075378,-0.415968716144562,-0.0505356192588806,0.932421326637268,-0.357822060585022,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.0161277540028095,0.909235835075378,-0.415968716144562,0.00356977712363005,0.882367253303528,-0.470547765493393,-0.0609589368104935,0.917012095451355,-0.394173473119736,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.165149167180061,0.907682597637177,-0.385795146226883,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.321643263101578,0.814014971256256,-0.483658075332642,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.266898691654205,0.96091490983963,0.0735352709889412,-0.243057608604431,0.963566780090332,0.111632809042931,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.130830451846123,0.991325080394745,0.0125630190595984,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.116408176720142,0.992312431335449,-0.0420126877725124,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.0231979843229055,0.997136235237122,-0.0719782486557961,-0.082898311316967,0.994181334972382,-0.0687838792800903,-0.0231979843229055,0.997136235237122,-0.0719782486557961,\r\n-0.0359442718327045,0.994559943675995,-0.0977672711014748,-0.273755848407745,0.873734295368195,-0.402052342891693,-0.321643263101578,0.814014971256256,-0.483658075332642,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.133733049035072,0.903489828109741,-0.407211780548096,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.173033162951469,0.912062168121338,-0.371755301952362,-0.133733049035072,0.903489828109741,-0.407211780548096,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.173033162951469,0.912062168121338,-0.371755301952362,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.0810983628034592,0.990403294563293,-0.1119120195508,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.00911856256425381,0.982267677783966,-0.18726173043251,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.064167320728302,0.949906945228577,-0.305874556303024,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.181975543498993,0.911958515644073,-0.367717921733856,-0.0810983628034592,0.990403294563293,-0.1119120195508,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.188664749264717,0.972584545612335,-0.135958716273308,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.153395161032677,0.988116800785065,-0.00975125376135111,\r\n-0.251150369644165,0.967635095119476,0.0246127340942621,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.260352194309235,0.965060710906982,-0.0295709446072578,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.234964832663536,0.970049977302551,-0.0615989305078983,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.266898691654205,0.96091490983963,0.0735352709889412,-0.256614804267883,0.966471433639526,0.00903847720474005,-0.271867752075195,0.960681676864624,0.0563782677054405,0.0877075418829918,0.983774781227112,-0.15650637447834,0.0403161495923996,0.979578256607056,-0.196979522705078,0.0321122482419014,0.993133068084717,-0.112496070563793,0.0403161495923996,0.979578256607056,-0.196979522705078,0.107335187494755,0.968000292778015,-0.226835891604424,0.0543609149754047,0.957504212856293,-0.28324943780899,-0.0117362914606929,0.961595475673676,-0.274219304323196,0.0543609149754047,0.957504212856293,-0.28324943780899,0.00117692782077938,0.935575246810913,-0.353125184774399,-0.0505356192588806,0.932421326637268,-0.357822060585022,0.00117692782077938,0.935575246810913,-0.353125184774399,-0.0159701276570559,0.90277773141861,-0.429810732603073,-0.0231979843229055,0.997136235237122,-0.0719782486557961,0.0321122482419014,0.993133068084717,-0.112496070563793,-0.0359442718327045,0.994559943675995,-0.0977672711014748,-0.0159701276570559,0.90277773141861,-0.429810732603073,0.00369756785221398,0.882622420787811,-0.470068037509918,-0.0161277540028095,0.909235835075378,-0.415968716144562,-0.0609589368104935,0.917012095451355,-0.394173473119736,0.00356977712363005,0.882367253303528,-0.470547765493393,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.0161277540028095,0.909235835075378,-0.415968716144562,0.0920378193259239,0.869917273521423,-0.484533667564392,0.00356977712363005,0.882367253303528,-0.470547765493393,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.321643263101578,0.814014971256256,-0.483658075332642,\r\n-0.253290742635727,0.853956818580627,-0.454534292221069,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.243057608604431,0.963566780090332,0.111632809042931,-0.229590937495232,0.972432255744934,0.0407851710915565,-0.266898691654205,0.96091490983963,0.0735352709889412,-0.195842862129211,0.973039090633392,0.121821120381355,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.243057608604431,0.963566780090332,0.111632809042931,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.144618332386017,0.988669991493225,0.0402123741805553,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.137320980429649,0.983982026576996,0.113675780594349,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.0547516904771328,0.998402118682861,-0.0139696663245559,0.046315424144268,0.997989594936371,-0.0432620868086815,-0.0231979843229055,0.997136235237122,-0.0719782486557961,-0.321643263101578,0.814014971256256,-0.483658075332642,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.303432285785675,0.82000869512558,-0.485298335552216,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.119516022503376,0.781036674976349,-0.612941682338715,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.185759544372559,0.842250764369965,-0.506070017814636,-0.119516022503376,0.781036674976349,-0.612941682338715,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.097133070230484,0.867309033870697,-0.48820087313652,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.181975543498993,0.911958515644073,-0.367717921733856,\r\n-0.149265184998512,0.880595862865448,-0.449745178222656,0.0210005305707455,0.992427408695221,-0.121023811399937,-0.0810983628034592,0.990403294563293,-0.1119120195508,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.117358103394508,0.955365478992462,-0.271115899085999,0.0712671205401421,0.975455462932587,-0.208344593644142,-0.00911856256425381,0.982267677783966,-0.18726173043251,-0.00911856256425381,0.982267677783966,-0.18726173043251,0.0210005305707455,0.992427408695221,-0.121023811399937,-0.131413444876671,0.971898853778839,-0.195302471518517,-0.064167320728302,0.949906945228577,-0.305874556303024,-0.00539142126217484,0.961372315883636,-0.275198251008987,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.017497630789876,0.923818290233612,-0.38243094086647,-0.064167320728302,0.949906945228577,-0.305874556303024,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.017497630789876,0.923818290233612,-0.38243094086647,-0.122891284525394,0.931841611862183,-0.341421693563461,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.0810983628034592,0.990403294563293,-0.1119120195508,-0.156434953212738,0.985135316848755,-0.0709681138396263,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.280118405818939,0.952597856521606,0.118705026805401,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.170955553650856,0.982899785041809,0.0684256628155708,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.290088295936584,0.949791491031647,0.117238312959671,-0.266898691654205,0.96091490983963,0.0735352709889412,0.0877075418829918,0.983774781227112,-0.15650637447834,0.107335187494755,0.968000292778015,-0.226835891604424,0.0403161495923996,0.979578256607056,-0.196979522705078,\r\n0.119613483548164,0.98733776807785,-0.104195214807987,0.0877075418829918,0.983774781227112,-0.15650637447834,0.0321122482419014,0.993133068084717,-0.112496070563793,0.13199020922184,0.933481276035309,-0.333453357219696,0.0543609149754047,0.957504212856293,-0.28324943780899,0.107335187494755,0.968000292778015,-0.226835891604424,0.00117692782077938,0.935575246810913,-0.353125184774399,0.0543609149754047,0.957504212856293,-0.28324943780899,0.0496197566390038,0.9219611287117,-0.38409036397934,0.00117692782077938,0.935575246810913,-0.353125184774399,0.0496197566390038,0.9219611287117,-0.38409036397934,-0.0159701276570559,0.90277773141861,-0.429810732603073,-0.0231979843229055,0.997136235237122,-0.0719782486557961,0.046315424144268,0.997989594936371,-0.0432620868086815,0.0321122482419014,0.993133068084717,-0.112496070563793,-0.0159701276570559,0.90277773141861,-0.429810732603073,-0.0482116974890232,0.869764447212219,-0.491106241941452,0.00369756785221398,0.882622420787811,-0.470068037509918,0.00369756785221398,0.882622420787811,-0.470068037509918,0.0920378193259239,0.869917273521423,-0.484533667564392,-0.0161277540028095,0.909235835075378,-0.415968716144562,-0.12941911816597,0.835754752159119,-0.53363311290741,-0.155066177248955,0.879597783088684,-0.449735522270203,0.00356977712363005,0.882367253303528,-0.470547765493393,0.00356977712363005,0.882367253303528,-0.470547765493393,0.0920378193259239,0.869917273521423,-0.484533667564392,0.127012461423874,0.830683410167694,-0.542063355445862,-0.155066177248955,0.879597783088684,-0.449735522270203,-0.12941911816597,0.835754752159119,-0.53363311290741,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.253290742635727,0.853956818580627,-0.454534292221069,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.321643263101578,0.814014971256256,-0.483658075332642,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.266374379396439,0.953671336174011,0.13984152674675,\r\n-0.243057608604431,0.963566780090332,0.111632809042931,-0.266898691654205,0.96091490983963,0.0735352709889412,-0.175988793373108,0.981835424900055,0.0709016993641853,-0.195842862129211,0.973039090633392,0.121821120381355,-0.137320980429649,0.983982026576996,0.113675780594349,-0.195842862129211,0.973039090633392,0.121821120381355,-0.243057608604431,0.963566780090332,0.111632809042931,-0.249370887875557,0.953204035758972,0.170926600694656,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.137320980429649,0.983982026576996,0.113675780594349,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.106650575995445,0.993727922439575,0.0336207896471024,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.0547516904771328,0.998402118682861,-0.0139696663245559,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.0341686755418777,0.997644901275635,0.0594731457531452,-0.0547516904771328,0.998402118682861,-0.0139696663245559,0.0133589617908001,0.99979704618454,0.015074647963047,0.046315424144268,0.997989594936371,-0.0432620868086815,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.119516022503376,0.781036674976349,-0.612941682338715,-0.280319601297379,0.755224645137787,-0.59250020980835,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.119516022503376,0.781036674976349,-0.612941682338715,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.132436722517014,0.867144882678986,-0.48012512922287,\r\n-0.111125089228153,0.902559041976929,-0.415978699922562,0.0210005305707455,0.992427408695221,-0.121023811399937,0.0834118649363518,0.993931472301483,-0.0717121139168739,-0.0810983628034592,0.990403294563293,-0.1119120195508,0.0712671205401421,0.975455462932587,-0.208344593644142,-0.117358103394508,0.955365478992462,-0.271115899085999,-0.00539142126217484,0.961372315883636,-0.275198251008987,0.0712671205401421,0.975455462932587,-0.208344593644142,0.184952810406685,0.977757632732391,-0.0989058762788773,-0.00911856256425381,0.982267677783966,-0.18726173043251,-0.00911856256425381,0.982267677783966,-0.18726173043251,0.184952810406685,0.977757632732391,-0.0989058762788773,0.0210005305707455,0.992427408695221,-0.121023811399937,-0.064167320728302,0.949906945228577,-0.305874556303024,0.0347393676638603,0.951779782772064,-0.304808676242828,-0.00539142126217484,0.961372315883636,-0.275198251008987,-0.064167320728302,0.949906945228577,-0.305874556303024,-0.017497630789876,0.923818290233612,-0.38243094086647,0.0347393676638603,0.951779782772064,-0.304808676242828,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.017497630789876,0.923818290233612,-0.38243094086647,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.0810983628034592,0.990403294563293,-0.1119120195508,0.0834118649363518,0.993931472301483,-0.0717121139168739,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.00659076496958733,0.999717473983765,0.0228350386023521,-0.170955553650856,0.982899785041809,0.0684256628155708,-0.280118405818939,0.952597856521606,0.118705026805401,-0.251150369644165,0.967635095119476,0.0246127340942621,-0.290088295936584,0.949791491031647,0.117238312959671,-0.271867752075195,0.960681676864624,0.0563782677054405,-0.280118405818939,0.952597856521606,0.118705026805401,-0.153395161032677,0.988116800785065,-0.00975125376135111,-0.00659076496958733,0.999717473983765,0.0228350386023521,-0.170955553650856,0.982899785041809,0.0684256628155708,\r\n-0.290088295936584,0.949791491031647,0.117238312959671,-0.266374379396439,0.953671336174011,0.13984152674675,-0.266898691654205,0.96091490983963,0.0735352709889412,0.144079640507698,0.971826672554016,-0.18653130531311,0.107335187494755,0.968000292778015,-0.226835891604424,0.0877075418829918,0.983774781227112,-0.15650637447834,0.119613483548164,0.98733776807785,-0.104195214807987,0.144079640507698,0.971826672554016,-0.18653130531311,0.0877075418829918,0.983774781227112,-0.15650637447834,0.119613483548164,0.98733776807785,-0.104195214807987,0.0321122482419014,0.993133068084717,-0.112496070563793,0.046315424144268,0.997989594936371,-0.0432620868086815,0.13199020922184,0.933481276035309,-0.333453357219696,0.0496197566390038,0.9219611287117,-0.38409036397934,0.0543609149754047,0.957504212856293,-0.28324943780899,0.13199020922184,0.933481276035309,-0.333453357219696,0.107335187494755,0.968000292778015,-0.226835891604424,0.177779257297516,0.948339581489563,-0.262766867876053,-0.0159701276570559,0.90277773141861,-0.429810732603073,0.0496197566390038,0.9219611287117,-0.38409036397934,-0.00043316840310581,0.884249269962311,-0.467014878988266,-0.00043316840310581,0.884249269962311,-0.467014878988266,-0.0482116974890232,0.869764447212219,-0.491106241941452,-0.0159701276570559,0.90277773141861,-0.429810732603073,0.0382559970021248,0.853423535823822,-0.519812047481537,0.00369756785221398,0.882622420787811,-0.470068037509918,-0.0482116974890232,0.869764447212219,-0.491106241941452,0.0920378193259239,0.869917273521423,-0.484533667564392,0.00369756785221398,0.882622420787811,-0.470068037509918,0.0382559970021248,0.853423535823822,-0.519812047481537,0.00356977712363005,0.882367253303528,-0.470547765493393,0.0307803936302662,0.823695182800293,-0.566196739673615,-0.12941911816597,0.835754752159119,-0.53363311290741,0.127012461423874,0.830683410167694,-0.542063355445862,0.0920378193259239,0.869917273521423,-0.484533667564392,0.115372121334076,0.818596601486206,-0.562662184238434,0.127012461423874,0.830683410167694,-0.542063355445862,0.0307803936302662,0.823695182800293,-0.566196739673615,\r\n0.00356977712363005,0.882367253303528,-0.470547765493393,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.12941911816597,0.835754752159119,-0.53363311290741,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.249370887875557,0.953204035758972,0.170926600694656,-0.243057608604431,0.963566780090332,0.111632809042931,-0.266374379396439,0.953671336174011,0.13984152674675,-0.195343255996704,0.964077830314636,0.179985553026199,-0.137320980429649,0.983982026576996,0.113675780594349,-0.195842862129211,0.973039090633392,0.121821120381355,-0.195842862129211,0.973039090633392,0.121821120381355,-0.249370887875557,0.953204035758972,0.170926600694656,-0.195343255996704,0.964077830314636,0.179985553026199,-0.125587821006775,0.988813459873199,0.0804708003997803,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.11255782097578,0.971880197525024,0.206832140684128,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.137320980429649,0.983982026576996,0.113675780594349,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.0341686755418777,0.997644901275635,0.0594731457531452,-0.0850448831915855,0.995368182659149,0.0448277816176414,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0341686755418777,0.997644901275635,0.0594731457531452,0.0133589617908001,0.99979704618454,0.015074647963047,-0.0547516904771328,0.998402118682861,-0.0139696663245559,0.123043052852154,0.992372334003448,0.00758234784007072,0.046315424144268,0.997989594936371,-0.0432620868086815,0.0133589617908001,0.99979704618454,0.015074647963047,\r\n-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.274781048297882,0.761689484119415,-0.586791574954987,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.0207006055861712,0.803703725337982,-0.594669342041016,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.00653277756646276,0.794293105602264,-0.607499480247498,0.0254220962524414,0.766737520694733,-0.641457080841064,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.0946763977408409,0.778739035129547,-0.620162665843964,0.0254220962524414,0.766737520694733,-0.641457080841064,-0.00653277756646276,0.794293105602264,-0.607499480247498,-0.0434898845851421,0.83267867565155,-0.552046000957489,-0.0207006055861712,0.803703725337982,-0.594669342041016,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.132436722517014,0.867144882678986,-0.48012512922287,-0.149265184998512,0.880595862865448,-0.449745178222656,-0.111125089228153,0.902559041976929,-0.415978699922562,-0.132436722517014,0.867144882678986,-0.48012512922287,-0.0269547328352928,0.876558125019073,-0.480540454387665,0.0210005305707455,0.992427408695221,-0.121023811399937,0.184952810406685,0.977757632732391,-0.0989058762788773,0.0834118649363518,0.993931472301483,-0.0717121139168739,0.167208448052406,0.960226893424988,-0.223619163036346,0.0712671205401421,0.975455462932587,-0.208344593644142,-0.00539142126217484,0.961372315883636,-0.275198251008987,0.184952810406685,0.977757632732391,-0.0989058762788773,0.0712671205401421,0.975455462932587,-0.208344593644142,0.296699494123459,0.947180986404419,-0.121727153658867,0.0347393676638603,0.951779782772064,-0.304808676242828,0.137053892016411,0.956227958202362,-0.258542448282242,-0.00539142126217484,0.961372315883636,-0.275198251008987,-0.017497630789876,0.923818290233612,-0.38243094086647,0.0644978582859039,0.906608581542969,-0.417014122009277,0.0347393676638603,0.951779782772064,-0.304808676242828,-0.00306800194084644,0.881278514862061,-0.472587168216705,\r\n-0.017497630789876,0.923818290233612,-0.38243094086647,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.0424337424337864,0.997864782810211,-0.0496509373188019,0.0834118649363518,0.993931472301483,-0.0717121139168739,0.0986942499876022,0.994581282138824,-0.0326720662415028,0.0986942499876022,0.994581282138824,-0.0326720662415028,-0.00659076496958733,0.999717473983765,0.0228350386023521,-0.0424337424337864,0.997864782810211,-0.0496509373188019,-0.170955553650856,0.982899785041809,0.0684256628155708,-0.242908373475075,0.956395626068115,0.162181511521339,-0.280118405818939,0.952597856521606,0.118705026805401,-0.290088295936584,0.949791491031647,0.117238312959671,-0.280118405818939,0.952597856521606,0.118705026805401,-0.330288171768188,0.922520399093628,0.199664250016212,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.170955553650856,0.982899785041809,0.0684256628155708,-0.00659076496958733,0.999717473983765,0.0228350386023521,-0.29710841178894,0.943103730678558,0.149270161986351,-0.266374379396439,0.953671336174011,0.13984152674675,-0.290088295936584,0.949791491031647,0.117238312959671,0.144079640507698,0.971826672554016,-0.18653130531311,0.177779257297516,0.948339581489563,-0.262766867876053,0.107335187494755,0.968000292778015,-0.226835891604424,0.119613483548164,0.98733776807785,-0.104195214807987,0.215119779109955,0.963146150112152,-0.161470860242844,0.144079640507698,0.971826672554016,-0.18653130531311,0.12611024081707,0.990796089172363,-0.049185648560524,0.119613483548164,0.98733776807785,-0.104195214807987,0.046315424144268,0.997989594936371,-0.0432620868086815,0.149291604757309,0.894127786159515,-0.422193557024002,0.0496197566390038,0.9219611287117,-0.38409036397934,0.13199020922184,0.933481276035309,-0.333453357219696,0.177779257297516,0.948339581489563,-0.262766867876053,0.220898434519768,0.915446698665619,-0.336394369602203,0.13199020922184,0.933481276035309,-0.333453357219696,0.0496197566390038,0.9219611287117,-0.38409036397934,0.0699455440044403,0.896623492240906,-0.437234193086624,-0.00043316840310581,0.884249269962311,-0.467014878988266,\r\n-0.0482116974890232,0.869764447212219,-0.491106241941452,-0.00043316840310581,0.884249269962311,-0.467014878988266,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0482116974890232,0.869764447212219,-0.491106241941452,-0.0350079499185085,0.835137605667114,-0.548925757408142,0.0382559970021248,0.853423535823822,-0.519812047481537,0.0382559970021248,0.853423535823822,-0.519812047481537,0.115372121334076,0.818596601486206,-0.562662184238434,0.0920378193259239,0.869917273521423,-0.484533667564392,0.0307803936302662,0.823695182800293,-0.566196739673615,-0.0292553957551718,0.756955146789551,-0.652811527252197,-0.12941911816597,0.835754752159119,-0.53363311290741,0.160110101103783,0.740427732467651,-0.652787387371063,0.127012461423874,0.830683410167694,-0.542063355445862,0.115372121334076,0.818596601486206,-0.562662184238434,0.127012461423874,0.830683410167694,-0.542063355445862,0.160110101103783,0.740427732467651,-0.652787387371063,0.0307803936302662,0.823695182800293,-0.566196739673615,-0.0292553957551718,0.756955146789551,-0.652811527252197,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.12941911816597,0.835754752159119,-0.53363311290741,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.263906270265579,0.807790577411652,-0.527093589305878,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.33264833688736,0.761509716510773,-0.556280374526978,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.280319601297379,0.755224645137787,-0.59250020980835,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.249370887875557,0.953204035758972,0.170926600694656,-0.266374379396439,0.953671336174011,0.13984152674675,-0.290453493595123,0.929777860641479,0.226162686944008,-0.137320980429649,0.983982026576996,0.113675780594349,-0.195343255996704,0.964077830314636,0.179985553026199,-0.11255782097578,0.971880197525024,0.206832140684128,-0.249370887875557,0.953204035758972,0.170926600694656,\r\n-0.252875506877899,0.934659540653229,0.249930933117867,-0.195343255996704,0.964077830314636,0.179985553026199,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.11255782097578,0.971880197525024,0.206832140684128,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0341686755418777,0.997644901275635,0.0594731457531452,-0.0660331323742867,0.990108191967011,0.123795293271542,0.0285863671451807,0.992024302482605,0.122761845588684,-0.0341686755418777,0.997644901275635,0.0594731457531452,0.0437313355505466,0.997584283351898,0.0539732798933983,0.0133589617908001,0.99979704618454,0.015074647963047,0.12611024081707,0.990796089172363,-0.049185648560524,0.046315424144268,0.997989594936371,-0.0432620868086815,0.123043052852154,0.992372334003448,0.00758234784007072,0.123043052852154,0.992372334003448,0.00758234784007072,0.0133589617908001,0.99979704618454,0.015074647963047,0.0437313355505466,0.997584283351898,0.0539732798933983,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.213837474584579,0.837118804454803,-0.503493309020996,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.0136970579624176,0.766302108764648,-0.642334222793579,-0.0207006055861712,0.803703725337982,-0.594669342041016,0.0254220962524414,0.766737520694733,-0.641457080841064,-0.000924502848647535,0.733806788921356,-0.679357469081879,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.112156376242638,0.819070816040039,-0.562622368335724,0.0254220962524414,0.766737520694733,-0.641457080841064,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.0136970579624176,0.766302108764648,-0.642334222793579,-0.117022641003132,0.820951044559479,-0.558878302574158,\r\n-0.0207006055861712,0.803703725337982,-0.594669342041016,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.132436722517014,0.867144882678986,-0.48012512922287,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.132436722517014,0.867144882678986,-0.48012512922287,0.184952810406685,0.977757632732391,-0.0989058762788773,0.26318347454071,0.964514076709747,-0.0211402084678411,0.0834118649363518,0.993931472301483,-0.0717121139168739,0.0712671205401421,0.975455462932587,-0.208344593644142,0.167208448052406,0.960226893424988,-0.223619163036346,0.296699494123459,0.947180986404419,-0.121727153658867,0.167208448052406,0.960226893424988,-0.223619163036346,-0.00539142126217484,0.961372315883636,-0.275198251008987,0.137053892016411,0.956227958202362,-0.258542448282242,0.323386758565903,0.944227337837219,-0.0620942525565624,0.184952810406685,0.977757632732391,-0.0989058762788773,0.296699494123459,0.947180986404419,-0.121727153658867,0.0347393676638603,0.951779782772064,-0.304808676242828,0.137805849313736,0.950161159038544,-0.279648303985596,0.137053892016411,0.956227958202362,-0.258542448282242,0.0644978582859039,0.906608581542969,-0.417014122009277,-0.017497630789876,0.923818290233612,-0.38243094086647,-0.00306800194084644,0.881278514862061,-0.472587168216705,0.0347393676638603,0.951779782772064,-0.304808676242828,0.0644978582859039,0.906608581542969,-0.417014122009277,0.151636332273483,0.919690728187561,-0.36218136548996,-0.00306800194084644,0.881278514862061,-0.472587168216705,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.0153844077140093,0.832263290882111,-0.554166913032532,0.0834118649363518,0.993931472301483,-0.0717121139168739,0.26318347454071,0.964514076709747,-0.0211402084678411,0.0986942499876022,0.994581282138824,-0.0326720662415028,0.168862327933311,0.98376077413559,0.0608289316296577,-0.00659076496958733,0.999717473983765,0.0228350386023521,0.0986942499876022,0.994581282138824,-0.0326720662415028,\r\n-0.170955553650856,0.982899785041809,0.0684256628155708,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.242908373475075,0.956395626068115,0.162181511521339,-0.330288171768188,0.922520399093628,0.199664250016212,-0.280118405818939,0.952597856521606,0.118705026805401,-0.242908373475075,0.956395626068115,0.162181511521339,-0.330288171768188,0.922520399093628,0.199664250016212,-0.29710841178894,0.943103730678558,0.149270161986351,-0.290088295936584,0.949791491031647,0.117238312959671,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.00659076496958733,0.999717473983765,0.0228350386023521,0.0370265580713749,0.994041860103607,0.1025170981884,-0.300660192966461,0.932209968566895,0.201464310288429,-0.266374379396439,0.953671336174011,0.13984152674675,-0.29710841178894,0.943103730678558,0.149270161986351,0.177779257297516,0.948339581489563,-0.262766867876053,0.144079640507698,0.971826672554016,-0.18653130531311,0.215119779109955,0.963146150112152,-0.161470860242844,0.215119779109955,0.963146150112152,-0.161470860242844,0.119613483548164,0.98733776807785,-0.104195214807987,0.199099540710449,0.976701080799103,-0.0800878256559372,0.199099540710449,0.976701080799103,-0.0800878256559372,0.119613483548164,0.98733776807785,-0.104195214807987,0.12611024081707,0.990796089172363,-0.049185648560524,0.0496197566390038,0.9219611287117,-0.38409036397934,0.149291604757309,0.894127786159515,-0.422193557024002,0.0699455440044403,0.896623492240906,-0.437234193086624,0.149291604757309,0.894127786159515,-0.422193557024002,0.13199020922184,0.933481276035309,-0.333453357219696,0.226074725389481,0.885645866394043,-0.405612617731094,0.177779257297516,0.948339581489563,-0.262766867876053,0.278142988681793,0.927056491374969,-0.251401215791702,0.220898434519768,0.915446698665619,-0.336394369602203,0.13199020922184,0.933481276035309,-0.333453357219696,0.220898434519768,0.915446698665619,-0.336394369602203,0.226074725389481,0.885645866394043,-0.405612617731094,0.0699455440044403,0.896623492240906,-0.437234193086624,0.134042114019394,0.864117562770844,-0.485111743211746,\r\n-0.00043316840310581,0.884249269962311,-0.467014878988266,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.00043316840310581,0.884249269962311,-0.467014878988266,0.0502150505781174,0.827468812465668,-0.559261679649353,-0.0482116974890232,0.869764447212219,-0.491106241941452,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0350079499185085,0.835137605667114,-0.548925757408142,-0.0350079499185085,0.835137605667114,-0.548925757408142,0.115372121334076,0.818596601486206,-0.562662184238434,0.0382559970021248,0.853423535823822,-0.519812047481537,0.160110101103783,0.740427732467651,-0.652787387371063,-0.0292553957551718,0.756955146789551,-0.652811527252197,0.0307803936302662,0.823695182800293,-0.566196739673615,0.160110101103783,0.740427732467651,-0.652787387371063,0.115372121334076,0.818596601486206,-0.562662184238434,0.0782271102070808,0.778025925159454,-0.623342573642731,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.0292553957551718,0.756955146789551,-0.652811527252197,-0.221569359302521,0.756009757518768,-0.615918874740601,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.410089015960693,0.668162047863007,-0.620794892311096,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.353400498628616,0.696423470973969,-0.624581634998322,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.290453493595123,0.929777860641479,0.226162686944008,-0.266374379396439,0.953671336174011,0.13984152674675,-0.300660192966461,0.932209968566895,0.201464310288429,-0.290453493595123,0.929777860641479,0.226162686944008,-0.252875506877899,0.934659540653229,0.249930933117867,-0.249370887875557,0.953204035758972,0.170926600694656,-0.11255782097578,0.971880197525024,0.206832140684128,-0.195343255996704,0.964077830314636,0.179985553026199,-0.176601931452751,0.94284725189209,0.282578557729721,\r\n-0.252875506877899,0.934659540653229,0.249930933117867,-0.176601931452751,0.94284725189209,0.282578557729721,-0.195343255996704,0.964077830314636,0.179985553026199,-0.0896465703845024,0.984691679477692,0.149484813213348,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.0970932021737099,0.989281237125397,0.109066292643547,-0.11255782097578,0.971880197525024,0.206832140684128,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0481228344142437,0.98056435585022,0.190204173326492,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.0660331323742867,0.990108191967011,0.123795293271542,-0.0481228344142437,0.98056435585022,0.190204173326492,0.0285863671451807,0.992024302482605,0.122761845588684,0.0437313355505466,0.997584283351898,0.0539732798933983,-0.0341686755418777,0.997644901275635,0.0594731457531452,0.0285863671451807,0.992024302482605,0.122761845588684,0.123043052852154,0.992372334003448,0.00758234784007072,0.176407396793365,0.983722865581512,-0.0342005789279938,0.12611024081707,0.990796089172363,-0.049185648560524,0.123043052852154,0.992372334003448,0.00758234784007072,0.0437313355505466,0.997584283351898,0.0539732798933983,0.138962477445602,0.988158524036407,0.0650545135140419,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.213837474584579,0.837118804454803,-0.503493309020996,-0.112156376242638,0.819070816040039,-0.562622368335724,-0.0946763977408409,0.778739035129547,-0.620162665843964,-0.213837474584579,0.837118804454803,-0.503493309020996,0.0600184239447117,0.756607711315155,-0.651108622550964,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.0136970579624176,0.766302108764648,-0.642334222793579,0.0254220962524414,0.766737520694733,-0.641457080841064,\r\n-0.112156376242638,0.819070816040039,-0.562622368335724,-0.000924502848647535,0.733806788921356,-0.679357469081879,0.0600184239447117,0.756607711315155,-0.651108622550964,-0.000924502848647535,0.733806788921356,-0.679357469081879,0.0319755971431732,0.700545907020569,-0.71289050579071,-0.127886220812798,0.813219428062439,-0.567731559276581,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.117022641003132,0.820951044559479,-0.558878302574158,-0.0153844077140093,0.832263290882111,-0.554166913032532,-0.0269547328352928,0.876558125019073,-0.480540454387665,-0.0837608724832535,0.837391674518585,-0.540147304534912,0.184952810406685,0.977757632732391,-0.0989058762788773,0.323386758565903,0.944227337837219,-0.0620942525565624,0.26318347454071,0.964514076709747,-0.0211402084678411,0.318958908319473,0.926672279834747,-0.198855563998222,0.296699494123459,0.947180986404419,-0.121727153658867,0.167208448052406,0.960226893424988,-0.223619163036346,0.167208448052406,0.960226893424988,-0.223619163036346,0.137053892016411,0.956227958202362,-0.258542448282242,0.318958908319473,0.926672279834747,-0.198855563998222,0.323386758565903,0.944227337837219,-0.0620942525565624,0.296699494123459,0.947180986404419,-0.121727153658867,0.347268253564835,0.936814665794373,-0.0422249808907509,0.0347393676638603,0.951779782772064,-0.304808676242828,0.151636332273483,0.919690728187561,-0.36218136548996,0.137805849313736,0.950161159038544,-0.279648303985596,0.137805849313736,0.950161159038544,-0.279648303985596,0.235537827014923,0.93599534034729,-0.261600017547607,0.137053892016411,0.956227958202362,-0.258542448282242,0.131228625774384,0.845416486263275,-0.517735362052917,0.0644978582859039,0.906608581542969,-0.417014122009277,-0.00306800194084644,0.881278514862061,-0.472587168216705,0.239945352077484,0.859695494174957,-0.450943142175674,0.151636332273483,0.919690728187561,-0.36218136548996,0.0644978582859039,0.906608581542969,-0.417014122009277,0.0466283559799194,0.824417173862457,-0.564058482646942,-0.00306800194084644,0.881278514862061,-0.472587168216705,\r\n-0.0153844077140093,0.832263290882111,-0.554166913032532,0.26318347454071,0.964514076709747,-0.0211402084678411,0.168862327933311,0.98376077413559,0.0608289316296577,0.0986942499876022,0.994581282138824,-0.0326720662415028,0.0370265580713749,0.994041860103607,0.1025170981884,-0.00659076496958733,0.999717473983765,0.0228350386023521,0.168862327933311,0.98376077413559,0.0608289316296577,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.167522132396698,0.965898990631104,0.197421684861183,-0.242908373475075,0.956395626068115,0.162181511521339,-0.330288171768188,0.922520399093628,0.199664250016212,-0.242908373475075,0.956395626068115,0.162181511521339,-0.291244626045227,0.927468776702881,0.234474182128906,-0.300660192966461,0.932209968566895,0.201464310288429,-0.29710841178894,0.943103730678558,0.149270161986351,-0.330288171768188,0.922520399093628,0.199664250016212,-0.0151908276602626,0.98775315284729,0.155283078551292,-0.0840083807706833,0.990949809551239,0.104694418609142,0.0370265580713749,0.994041860103607,0.1025170981884,0.177779257297516,0.948339581489563,-0.262766867876053,0.215119779109955,0.963146150112152,-0.161470860242844,0.278142988681793,0.927056491374969,-0.251401215791702,0.199099540710449,0.976701080799103,-0.0800878256559372,0.288119047880173,0.953702867031097,-0.0862444490194321,0.215119779109955,0.963146150112152,-0.161470860242844,0.199099540710449,0.976701080799103,-0.0800878256559372,0.12611024081707,0.990796089172363,-0.049185648560524,0.176407396793365,0.983722865581512,-0.0342005789279938,0.134042114019394,0.864117562770844,-0.485111743211746,0.0699455440044403,0.896623492240906,-0.437234193086624,0.149291604757309,0.894127786159515,-0.422193557024002,0.226074725389481,0.885645866394043,-0.405612617731094,0.257392406463623,0.839769780635834,-0.478054136037827,0.149291604757309,0.894127786159515,-0.422193557024002,0.278142988681793,0.927056491374969,-0.251401215791702,0.308392852544785,0.882821619510651,-0.354287713766098,0.220898434519768,0.915446698665619,-0.336394369602203,0.220898434519768,0.915446698665619,-0.336394369602203,\r\n0.308392852544785,0.882821619510651,-0.354287713766098,0.226074725389481,0.885645866394043,-0.405612617731094,0.0502150505781174,0.827468812465668,-0.559261679649353,-0.00043316840310581,0.884249269962311,-0.467014878988266,0.134042114019394,0.864117562770844,-0.485111743211746,0.0502150505781174,0.827468812465668,-0.559261679649353,-0.0782510638237,0.80816912651062,-0.583728849887848,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0350079499185085,0.835137605667114,-0.548925757408142,-0.0350079499185085,0.835137605667114,-0.548925757408142,0.0782271102070808,0.778025925159454,-0.623342573642731,0.115372121334076,0.818596601486206,-0.562662184238434,0.160110101103783,0.740427732467651,-0.652787387371063,0.128073543310165,0.663010954856873,-0.737572610378265,-0.0292553957551718,0.756955146789551,-0.652811527252197,0.0782271102070808,0.778025925159454,-0.623342573642731,0.134032428264618,0.722014784812927,-0.678770780563354,0.160110101103783,0.740427732467651,-0.652787387371063,-0.0266411677002907,0.658742010593414,-0.751896977424622,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.0292553957551718,0.756955146789551,-0.652811527252197,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.410089015960693,0.668162047863007,-0.620794892311096,-0.355745106935501,0.679097652435303,-0.642083883285522,-0.410089015960693,0.668162047863007,-0.620794892311096,-0.353400498628616,0.696423470973969,-0.624581634998322,-0.274781048297882,0.761689484119415,-0.586791574954987,-0.353400498628616,0.696423470973969,-0.624581634998322,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.290453493595123,0.929777860641479,0.226162686944008,-0.300660192966461,0.932209968566895,0.201464310288429,\r\n-0.342994213104248,0.902994632720947,0.258757263422012,-0.290453493595123,0.929777860641479,0.226162686944008,-0.315728932619095,0.900184094905853,0.299972832202911,-0.252875506877899,0.934659540653229,0.249930933117867,-0.09038395434618,0.943940997123718,0.317499667406082,-0.11255782097578,0.971880197525024,0.206832140684128,-0.176601931452751,0.94284725189209,0.282578557729721,-0.252875506877899,0.934659540653229,0.249930933117867,-0.210502654314041,0.911407768726349,0.353587567806244,-0.176601931452751,0.94284725189209,0.282578557729721,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0721326321363449,0.981948554515839,0.174853831529617,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.09038395434618,0.943940997123718,0.317499667406082,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.11255782097578,0.971880197525024,0.206832140684128,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.0481228344142437,0.98056435585022,0.190204173326492,-0.0749202817678452,0.983128786087036,0.16686737537384,-0.0525817424058914,0.963663935661316,0.261890947818756,0.0285863671451807,0.992024302482605,0.122761845588684,-0.0481228344142437,0.98056435585022,0.190204173326492,0.0252698883414268,0.975776672363281,0.217304512858391,0.0285863671451807,0.992024302482605,0.122761845588684,0.138962477445602,0.988158524036407,0.0650545135140419,0.0437313355505466,0.997584283351898,0.0539732798933983,0.237751230597496,0.971146762371063,-0.0186604037880898,0.176407396793365,0.983722865581512,-0.0342005789279938,0.123043052852154,0.992372334003448,0.00758234784007072,0.138962477445602,0.988158524036407,0.0650545135140419,0.204768016934395,0.978527724742889,0.0235263854265213,0.123043052852154,0.992372334003448,0.00758234784007072,-0.274781048297882,0.761689484119415,-0.586791574954987,\r\n-0.356198102235794,0.736124813556671,-0.575537264347076,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.213837474584579,0.837118804454803,-0.503493309020996,-0.112156376242638,0.819070816040039,-0.562622368335724,-0.213837474584579,0.837118804454803,-0.503493309020996,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.112156376242638,0.819070816040039,-0.562622368335724,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.000924502848647535,0.733806788921356,-0.679357469081879,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.127886220812798,0.813219428062439,-0.567731559276581,-0.0837608724832535,0.837391674518585,-0.540147304534912,-0.0457579381763935,0.81168007850647,-0.582307040691376,-0.0153844077140093,0.832263290882111,-0.554166913032532,0.314638316631317,0.949209272861481,0.00209437729790807,0.26318347454071,0.964514076709747,-0.0211402084678411,0.323386758565903,0.944227337837219,-0.0620942525565624,0.296699494123459,0.947180986404419,-0.121727153658867,0.318958908319473,0.926672279834747,-0.198855563998222,0.348425060510635,0.929143011569977,-0.123665452003479,0.235537827014923,0.93599534034729,-0.261600017547607,0.318958908319473,0.926672279834747,-0.198855563998222,0.137053892016411,0.956227958202362,-0.258542448282242,0.348425060510635,0.929143011569977,-0.123665452003479,0.347268253564835,0.936814665794373,-0.0422249808907509,0.296699494123459,0.947180986404419,-0.121727153658867,0.323386758565903,0.944227337837219,-0.0620942525565624,0.347268253564835,0.936814665794373,-0.0422249808907509,0.314638316631317,0.949209272861481,0.00209437729790807,0.137805849313736,0.950161159038544,-0.279648303985596,0.151636332273483,0.919690728187561,-0.36218136548996,0.226556777954102,0.922300577163696,-0.313103020191193,0.226556777954102,0.922300577163696,-0.313103020191193,0.235537827014923,0.93599534034729,-0.261600017547607,\r\n0.137805849313736,0.950161159038544,-0.279648303985596,0.239945352077484,0.859695494174957,-0.450943142175674,0.0644978582859039,0.906608581542969,-0.417014122009277,0.131228625774384,0.845416486263275,-0.517735362052917,0.131228625774384,0.845416486263275,-0.517735362052917,-0.00306800194084644,0.881278514862061,-0.472587168216705,0.0466283559799194,0.824417173862457,-0.564058482646942,0.309975862503052,0.879335463047028,-0.361502408981323,0.151636332273483,0.919690728187561,-0.36218136548996,0.239945352077484,0.859695494174957,-0.450943142175674,-0.0153844077140093,0.832263290882111,-0.554166913032532,0.0123489005491138,0.809582471847534,-0.586876213550568,0.0466283559799194,0.824417173862457,-0.564058482646942,-0.0151908276602626,0.98775315284729,0.155283078551292,-0.167522132396698,0.965898990631104,0.197421684861183,-0.0840083807706833,0.990949809551239,0.104694418609142,-0.167522132396698,0.965898990631104,0.197421684861183,-0.291244626045227,0.927468776702881,0.234474182128906,-0.242908373475075,0.956395626068115,0.162181511521339,-0.291244626045227,0.927468776702881,0.234474182128906,-0.331793904304504,0.902563631534576,0.274393022060394,-0.330288171768188,0.922520399093628,0.199664250016212,-0.300660192966461,0.932209968566895,0.201464310288429,-0.330288171768188,0.922520399093628,0.199664250016212,-0.342994213104248,0.902994632720947,0.258757263422012,0.215119779109955,0.963146150112152,-0.161470860242844,0.300427138805389,0.940833210945129,-0.156768247485161,0.278142988681793,0.927056491374969,-0.251401215791702,0.199099540710449,0.976701080799103,-0.0800878256559372,0.237751230597496,0.971146762371063,-0.0186604037880898,0.288119047880173,0.953702867031097,-0.0862444490194321,0.300427138805389,0.940833210945129,-0.156768247485161,0.215119779109955,0.963146150112152,-0.161470860242844,0.288119047880173,0.953702867031097,-0.0862444490194321,0.237751230597496,0.971146762371063,-0.0186604037880898,0.199099540710449,0.976701080799103,-0.0800878256559372,0.176407396793365,0.983722865581512,-0.0342005789279938,\r\n0.134042114019394,0.864117562770844,-0.485111743211746,0.149291604757309,0.894127786159515,-0.422193557024002,0.257392406463623,0.839769780635834,-0.478054136037827,0.257392406463623,0.839769780635834,-0.478054136037827,0.226074725389481,0.885645866394043,-0.405612617731094,0.339637726545334,0.837596476078033,-0.427876532077789,0.278142988681793,0.927056491374969,-0.251401215791702,0.367713183164597,0.885865688323975,-0.282893627882004,0.308392852544785,0.882821619510651,-0.354287713766098,0.226074725389481,0.885645866394043,-0.405612617731094,0.308392852544785,0.882821619510651,-0.354287713766098,0.339637726545334,0.837596476078033,-0.427876532077789,0.0502150505781174,0.827468812465668,-0.559261679649353,0.134042114019394,0.864117562770844,-0.485111743211746,0.217152416706085,0.796583235263824,-0.564180612564087,-0.0782510638237,0.80816912651062,-0.583728849887848,0.0502150505781174,0.827468812465668,-0.559261679649353,0.00555835897102952,0.767600297927856,-0.640904605388641,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0845524072647095,0.844635248184204,-0.528622806072235,-0.0782510638237,0.80816912651062,-0.583728849887848,-0.0350079499185085,0.835137605667114,-0.548925757408142,-0.0795171782374382,0.790266036987305,-0.60758250951767,0.0782271102070808,0.778025925159454,-0.623342573642731,0.160110101103783,0.740427732467651,-0.652787387371063,0.128688305616379,0.682460367679596,-0.719504714012146,0.128073543310165,0.663010954856873,-0.737572610378265,0.128073543310165,0.663010954856873,-0.737572610378265,-0.0266411677002907,0.658742010593414,-0.751896977424622,-0.0292553957551718,0.756955146789551,-0.652811527252197,0.0782271102070808,0.778025925159454,-0.623342573642731,0.0186901073902845,0.739478766918182,-0.672920167446136,0.134032428264618,0.722014784812927,-0.678770780563354,0.134032428264618,0.722014784812927,-0.678770780563354,0.128688305616379,0.682460367679596,-0.719504714012146,0.160110101103783,0.740427732467651,-0.652787387371063,-0.203495234251022,0.688344657421112,-0.696255087852478,\r\n-0.0266411677002907,0.658742010593414,-0.751896977424622,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.203495234251022,0.688344657421112,-0.696255087852478,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.343323975801468,0.702893137931824,-0.622952401638031,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.410089015960693,0.668162047863007,-0.620794892311096,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.353400498628616,0.696423470973969,-0.624581634998322,-0.290453493595123,0.929777860641479,0.226162686944008,-0.342994213104248,0.902994632720947,0.258757263422012,-0.345615208148956,0.891659140586853,0.292393565177917,-0.315728932619095,0.900184094905853,0.299972832202911,-0.290453493595123,0.929777860641479,0.226162686944008,-0.345615208148956,0.891659140586853,0.292393565177917,-0.270073801279068,0.903204679489136,0.333588510751724,-0.252875506877899,0.934659540653229,0.249930933117867,-0.315728932619095,0.900184094905853,0.299972832202911,-0.09038395434618,0.943940997123718,0.317499667406082,-0.176601931452751,0.94284725189209,0.282578557729721,-0.128113955259323,0.911530911922455,0.390766054391861,-0.270073801279068,0.903204679489136,0.333588510751724,-0.210502654314041,0.911407768726349,0.353587567806244,-0.252875506877899,0.934659540653229,0.249930933117867,-0.210502654314041,0.911407768726349,0.353587567806244,-0.128113955259323,0.911530911922455,0.390766054391861,-0.176601931452751,0.94284725189209,0.282578557729721,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0713427439332008,0.971047699451447,0.227983489632607,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.0439773872494698,0.92873626947403,0.368123382329941,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.09038395434618,0.943940997123718,0.317499667406082,-0.0671809613704681,0.958911418914795,0.275636732578278,-0.0439773872494698,0.92873626947403,0.368123382329941,-0.0500400178134441,0.938453078269959,0.341762721538544,\r\n-0.0481228344142437,0.98056435585022,0.190204173326492,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0159998461604118,0.961547493934631,0.27417203783989,0.0252698883414268,0.975776672363281,0.217304512858391,-0.0481228344142437,0.98056435585022,0.190204173326492,-0.0159998461604118,0.961547493934631,0.27417203783989,0.0252698883414268,0.975776672363281,0.217304512858391,0.0920413658022881,0.980684220790863,0.172588378190994,0.0285863671451807,0.992024302482605,0.122761845588684,0.154181197285652,0.981348097324371,0.114821761846542,0.138962477445602,0.988158524036407,0.0650545135140419,0.0285863671451807,0.992024302482605,0.122761845588684,0.204768016934395,0.978527724742889,0.0235263854265213,0.237751230597496,0.971146762371063,-0.0186604037880898,0.123043052852154,0.992372334003448,0.00758234784007072,0.245352044701576,0.968065559864044,0.0514908619225025,0.204768016934395,0.978527724742889,0.0235263854265213,0.138962477445602,0.988158524036407,0.0650545135140419,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.217035681009293,0.821433126926422,-0.527392625808716,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.17828768491745,0.78554105758667,-0.592569470405579,-0.112156376242638,0.819070816040039,-0.562622368335724,-0.0153844077140093,0.832263290882111,-0.554166913032532,-0.0457579381763935,0.81168007850647,-0.582307040691376,0.0123489005491138,0.809582471847534,-0.586876213550568,0.318958908319473,0.926672279834747,-0.198855563998222,0.366619467735291,0.909020125865936,-0.198172256350517,0.348425060510635,0.929143011569977,-0.123665452003479,0.235537827014923,0.93599534034729,-0.261600017547607,0.353210777044296,0.899190127849579,-0.25826171040535,0.318958908319473,0.926672279834747,-0.198855563998222,0.348425060510635,0.929143011569977,-0.123665452003479,0.294876456260681,0.95463365316391,-0.0415012873709202,\r\n0.347268253564835,0.936814665794373,-0.0422249808907509,0.314638316631317,0.949209272861481,0.00209437729790807,0.347268253564835,0.936814665794373,-0.0422249808907509,0.286826461553574,0.95796126127243,0.00637879502028227,0.226556777954102,0.922300577163696,-0.313103020191193,0.151636332273483,0.919690728187561,-0.36218136548996,0.309975862503052,0.879335463047028,-0.361502408981323,0.353210777044296,0.899190127849579,-0.25826171040535,0.235537827014923,0.93599534034729,-0.261600017547607,0.226556777954102,0.922300577163696,-0.313103020191193,0.239945352077484,0.859695494174957,-0.450943142175674,0.131228625774384,0.845416486263275,-0.517735362052917,0.377589792013168,0.783690750598907,-0.49320849776268,0.234894186258316,0.763468205928802,-0.601615190505981,0.131228625774384,0.845416486263275,-0.517735362052917,0.0466283559799194,0.824417173862457,-0.564058482646942,0.239945352077484,0.859695494174957,-0.450943142175674,0.402506202459335,0.830331742763519,-0.385406047105789,0.309975862503052,0.879335463047028,-0.361502408981323,0.0123489005491138,0.809582471847534,-0.586876213550568,0.0963072404265404,0.753993153572083,-0.649783909320831,0.0466283559799194,0.824417173862457,-0.564058482646942,-0.0151908276602626,0.98775315284729,0.155283078551292,-0.110555455088615,0.961312830448151,0.252299427986145,-0.167522132396698,0.965898990631104,0.197421684861183,-0.291244626045227,0.927468776702881,0.234474182128906,-0.167522132396698,0.965898990631104,0.197421684861183,-0.234829664230347,0.921063184738159,0.310640633106232,-0.291244626045227,0.927468776702881,0.234474182128906,-0.234829664230347,0.921063184738159,0.310640633106232,-0.331793904304504,0.902563631534576,0.274393022060394,-0.331793904304504,0.902563631534576,0.274393022060394,-0.342994213104248,0.902994632720947,0.258757263422012,-0.330288171768188,0.922520399093628,0.199664250016212,0.278142988681793,0.927056491374969,-0.251401215791702,0.300427138805389,0.940833210945129,-0.156768247485161,0.376812636852264,0.905944108963013,-0.193073466420174,0.31055673956871,0.950554311275482,0.000932047667447478,\r\n0.288119047880173,0.953702867031097,-0.0862444490194321,0.237751230597496,0.971146762371063,-0.0186604037880898,0.371054768562317,0.921240627765656,-0.116764530539513,0.300427138805389,0.940833210945129,-0.156768247485161,0.288119047880173,0.953702867031097,-0.0862444490194321,0.134042114019394,0.864117562770844,-0.485111743211746,0.257392406463623,0.839769780635834,-0.478054136037827,0.217152416706085,0.796583235263824,-0.564180612564087,0.336321979761124,0.803999900817871,-0.490378975868225,0.257392406463623,0.839769780635834,-0.478054136037827,0.339637726545334,0.837596476078033,-0.427876532077789,0.278142988681793,0.927056491374969,-0.251401215791702,0.376812636852264,0.905944108963013,-0.193073466420174,0.367713183164597,0.885865688323975,-0.282893627882004,0.308392852544785,0.882821619510651,-0.354287713766098,0.367713183164597,0.885865688323975,-0.282893627882004,0.392832845449448,0.84932142496109,-0.352612316608429,0.392832845449448,0.84932142496109,-0.352612316608429,0.339637726545334,0.837596476078033,-0.427876532077789,0.308392852544785,0.882821619510651,-0.354287713766098,0.0502150505781174,0.827468812465668,-0.559261679649353,0.217152416706085,0.796583235263824,-0.564180612564087,0.108369410037994,0.769973337650299,-0.628805994987488,0.0502150505781174,0.827468812465668,-0.559261679649353,0.108369410037994,0.769973337650299,-0.628805994987488,0.00555835897102952,0.767600297927856,-0.640904605388641,-0.0912747830152512,0.757391929626465,-0.646549463272095,-0.0782510638237,0.80816912651062,-0.583728849887848,0.00555835897102952,0.767600297927856,-0.640904605388641,-0.0912747830152512,0.757391929626465,-0.646549463272095,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0782510638237,0.80816912651062,-0.583728849887848,-0.0795171782374382,0.790266036987305,-0.60758250951767,0.0186901073902845,0.739478766918182,-0.672920167446136,0.0782271102070808,0.778025925159454,-0.623342573642731,0.128688305616379,0.682460367679596,-0.719504714012146,0.0894104465842247,0.650416553020477,-0.754296958446503,0.128073543310165,0.663010954856873,-0.737572610378265,\r\n0.128073543310165,0.663010954856873,-0.737572610378265,0.0877489671111107,0.609548151493073,-0.787877559661865,-0.0266411677002907,0.658742010593414,-0.751896977424622,0.134032428264618,0.722014784812927,-0.678770780563354,0.0186901073902845,0.739478766918182,-0.672920167446136,0.128688305616379,0.682460367679596,-0.719504714012146,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.0266411677002907,0.658742010593414,-0.751896977424622,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.356198102235794,0.736124813556671,-0.575537264347076,-0.382426023483276,0.862344324588776,0.331831902265549,-0.345615208148956,0.891659140586853,0.292393565177917,-0.342994213104248,0.902994632720947,0.258757263422012,-0.370282590389252,0.856281757354736,0.360100328922272,-0.315728932619095,0.900184094905853,0.299972832202911,-0.345615208148956,0.891659140586853,0.292393565177917,-0.270073801279068,0.903204679489136,0.333588510751724,-0.315728932619095,0.900184094905853,0.299972832202911,-0.32106676697731,0.869420945644379,0.37553071975708,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.09038395434618,0.943940997123718,0.317499667406082,-0.128113955259323,0.911530911922455,0.390766054391861,-0.247785419225693,0.865954995155334,0.434424102306366,-0.210502654314041,0.911407768726349,0.353587567806244,-0.270073801279068,0.903204679489136,0.333588510751724,-0.210502654314041,0.911407768726349,0.353587567806244,-0.168372601270676,0.871266067028046,0.461027055978775,-0.128113955259323,0.911530911922455,0.390766054391861,-0.0149040417745709,0.909420549869537,0.415610373020172,-0.0525817424058914,0.963663935661316,0.261890947818756,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.0439773872494698,0.92873626947403,0.368123382329941,-0.09038395434618,0.943940997123718,0.317499667406082,\r\n-0.0447821356356144,0.904345452785492,0.424445182085037,-0.011149974539876,0.887950301170349,0.459804058074951,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.0439773872494698,0.92873626947403,0.368123382329941,-0.00225063809193671,0.930114448070526,0.367262721061707,-0.0159998461604118,0.961547493934631,0.27417203783989,-0.0525817424058914,0.963663935661316,0.261890947818756,0.0596012659370899,0.949785828590393,0.307171672582626,0.0252698883414268,0.975776672363281,0.217304512858391,-0.0159998461604118,0.961547493934631,0.27417203783989,0.0920413658022881,0.980684220790863,0.172588378190994,0.0252698883414268,0.975776672363281,0.217304512858391,0.121224462985992,0.965486466884613,0.230522111058235,0.0285863671451807,0.992024302482605,0.122761845588684,0.0920413658022881,0.980684220790863,0.172588378190994,0.154181197285652,0.981348097324371,0.114821761846542,0.154181197285652,0.981348097324371,0.114821761846542,0.245352044701576,0.968065559864044,0.0514908619225025,0.138962477445602,0.988158524036407,0.0650545135140419,0.237751230597496,0.971146762371063,-0.0186604037880898,0.204768016934395,0.978527724742889,0.0235263854265213,0.245352044701576,0.968065559864044,0.0514908619225025,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.217035681009293,0.821433126926422,-0.527392625808716,-0.279940068721771,0.821062564849854,-0.497483372688293,-0.148892104625702,0.778871357440948,-0.609253942966461,-0.205419987440109,0.820598483085632,-0.533311069011688,-0.217035681009293,0.821433126926422,-0.527392625808716,0.366619467735291,0.909020125865936,-0.198172256350517,0.318958908319473,0.926672279834747,-0.198855563998222,0.353210777044296,0.899190127849579,-0.25826171040535,0.348425060510635,0.929143011569977,-0.123665452003479,0.366619467735291,0.909020125865936,-0.198172256350517,0.365157693624496,0.912859082221985,-0.182614371180534,0.294876456260681,0.95463365316391,-0.0415012873709202,0.348425060510635,0.929143011569977,-0.123665452003479,0.293738037347794,0.950893759727478,-0.0975649282336235,0.294876456260681,0.95463365316391,-0.0415012873709202,\r\n0.286826461553574,0.95796126127243,0.00637879502028227,0.347268253564835,0.936814665794373,-0.0422249808907509,0.353210777044296,0.899190127849579,-0.25826171040535,0.226556777954102,0.922300577163696,-0.313103020191193,0.309975862503052,0.879335463047028,-0.361502408981323,0.377589792013168,0.783690750598907,-0.49320849776268,0.131228625774384,0.845416486263275,-0.517735362052917,0.234894186258316,0.763468205928802,-0.601615190505981,0.402506202459335,0.830331742763519,-0.385406047105789,0.239945352077484,0.859695494174957,-0.450943142175674,0.377589792013168,0.783690750598907,-0.49320849776268,0.0466283559799194,0.824417173862457,-0.564058482646942,0.0963072404265404,0.753993153572083,-0.649783909320831,0.234894186258316,0.763468205928802,-0.601615190505981,0.392946749925613,0.868771374225616,-0.301378518342972,0.309975862503052,0.879335463047028,-0.361502408981323,0.402506202459335,0.830331742763519,-0.385406047105789,-0.110555455088615,0.961312830448151,0.252299427986145,-0.234829664230347,0.921063184738159,0.310640633106232,-0.167522132396698,0.965898990631104,0.197421684861183,-0.331793904304504,0.902563631534576,0.274393022060394,-0.234829664230347,0.921063184738159,0.310640633106232,-0.329680740833282,0.880092322826386,0.341684013605118,-0.331793904304504,0.902563631534576,0.274393022060394,-0.382426023483276,0.862344324588776,0.331831902265549,-0.342994213104248,0.902994632720947,0.258757263422012,0.371054768562317,0.921240627765656,-0.116764530539513,0.376812636852264,0.905944108963013,-0.193073466420174,0.300427138805389,0.940833210945129,-0.156768247485161,0.35695692896843,0.933767199516296,-0.0256951581686735,0.288119047880173,0.953702867031097,-0.0862444490194321,0.31055673956871,0.950554311275482,0.000932047667447478,0.245352044701576,0.968065559864044,0.0514908619225025,0.31055673956871,0.950554311275482,0.000932047667447478,0.237751230597496,0.971146762371063,-0.0186604037880898,0.371054768562317,0.921240627765656,-0.116764530539513,0.288119047880173,0.953702867031097,-0.0862444490194321,0.342358767986298,0.935910940170288,-0.0828319266438484,\r\n0.217152416706085,0.796583235263824,-0.564180612564087,0.257392406463623,0.839769780635834,-0.478054136037827,0.284146219491959,0.796344459056854,-0.533944070339203,0.257392406463623,0.839769780635834,-0.478054136037827,0.336321979761124,0.803999900817871,-0.490378975868225,0.284146219491959,0.796344459056854,-0.533944070339203,0.374018549919128,0.812304079532623,-0.447517663240433,0.336321979761124,0.803999900817871,-0.490378975868225,0.339637726545334,0.837596476078033,-0.427876532077789,0.367713183164597,0.885865688323975,-0.282893627882004,0.376812636852264,0.905944108963013,-0.193073466420174,0.443180829286575,0.855769276618958,-0.266926348209381,0.367713183164597,0.885865688323975,-0.282893627882004,0.443180829286575,0.855769276618958,-0.266926348209381,0.392832845449448,0.84932142496109,-0.352612316608429,0.339637726545334,0.837596476078033,-0.427876532077789,0.392832845449448,0.84932142496109,-0.352612316608429,0.420226365327835,0.815327763557434,-0.398309320211411,0.217152416706085,0.796583235263824,-0.564180612564087,0.180959135293961,0.763489961624146,-0.619948983192444,0.108369410037994,0.769973337650299,-0.628805994987488,0.00555835897102952,0.767600297927856,-0.640904605388641,0.108369410037994,0.769973337650299,-0.628805994987488,0.0373485945165157,0.772970080375671,-0.633342087268829,-0.0438199006021023,0.76792985200882,-0.639033257961273,-0.0912747830152512,0.757391929626465,-0.646549463272095,0.00555835897102952,0.767600297927856,-0.640904605388641,-0.0866081118583679,0.734670400619507,-0.672873139381409,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0912747830152512,0.757391929626465,-0.646549463272095,0.0186901073902845,0.739478766918182,-0.672920167446136,-0.0795171782374382,0.790266036987305,-0.60758250951767,-0.0866081118583679,0.734670400619507,-0.672873139381409,0.0894104465842247,0.650416553020477,-0.754296958446503,0.128688305616379,0.682460367679596,-0.719504714012146,0.00392701104283333,0.700256824493408,-0.713880121707916,0.128073543310165,0.663010954856873,-0.737572610378265,\r\n0.0894104465842247,0.650416553020477,-0.754296958446503,0.0877489671111107,0.609548151493073,-0.787877559661865,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.0266411677002907,0.658742010593414,-0.751896977424622,0.0877489671111107,0.609548151493073,-0.787877559661865,0.128688305616379,0.682460367679596,-0.719504714012146,0.0186901073902845,0.739478766918182,-0.672920167446136,0.00392701104283333,0.700256824493408,-0.713880121707916,-0.0394082702696323,0.688997805118561,-0.72369110584259,-0.14023357629776,0.681312322616577,-0.71843433380127,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.14023357629776,0.681312322616577,-0.71843433380127,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.270558536052704,0.698044538497925,-0.6629718542099,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.382426023483276,0.862344324588776,0.331831902265549,-0.370282590389252,0.856281757354736,0.360100328922272,-0.345615208148956,0.891659140586853,0.292393565177917,-0.315728932619095,0.900184094905853,0.299972832202911,-0.370282590389252,0.856281757354736,0.360100328922272,-0.32106676697731,0.869420945644379,0.37553071975708,-0.247785419225693,0.865954995155334,0.434424102306366,-0.270073801279068,0.903204679489136,0.333588510751724,-0.32106676697731,0.869420945644379,0.37553071975708,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.128113955259323,0.911530911922455,0.390766054391861,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.168372601270676,0.871266067028046,0.461027055978775,-0.210502654314041,0.911407768726349,0.353587567806244,-0.247785419225693,0.865954995155334,0.434424102306366,-0.168372601270676,0.871266067028046,0.461027055978775,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.128113955259323,0.911530911922455,0.390766054391861,-0.00225063809193671,0.930114448070526,0.367262721061707,-0.0525817424058914,0.963663935661316,0.261890947818756,\r\n-0.0149040417745709,0.909420549869537,0.415610373020172,-0.0149040417745709,0.909420549869537,0.415610373020172,-0.0500400178134441,0.938453078269959,0.341762721538544,-0.011149974539876,0.887950301170349,0.459804058074951,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.011149974539876,0.887950301170349,0.459804058074951,-0.0439773872494698,0.92873626947403,0.368123382329941,0.0596012659370899,0.949785828590393,0.307171672582626,-0.0159998461604118,0.961547493934631,0.27417203783989,-0.00225063809193671,0.930114448070526,0.367262721061707,0.121224462985992,0.965486466884613,0.230522111058235,0.0252698883414268,0.975776672363281,0.217304512858391,0.0596012659370899,0.949785828590393,0.307171672582626,0.178568333387375,0.968681395053864,0.17253865301609,0.0920413658022881,0.980684220790863,0.172588378190994,0.121224462985992,0.965486466884613,0.230522111058235,0.0920413658022881,0.980684220790863,0.172588378190994,0.178568333387375,0.968681395053864,0.17253865301609,0.154181197285652,0.981348097324371,0.114821761846542,0.245352044701576,0.968065559864044,0.0514908619225025,0.154181197285652,0.981348097324371,0.114821761846542,0.261162847280502,0.95874434709549,0.11226361989975,-0.217035681009293,0.821433126926422,-0.527392625808716,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.217035681009293,0.821433126926422,-0.527392625808716,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.148892104625702,0.778871357440948,-0.609253942966461,0.366619467735291,0.909020125865936,-0.198172256350517,0.353210777044296,0.899190127849579,-0.25826171040535,0.365157693624496,0.912859082221985,-0.182614371180534,0.348425060510635,0.929143011569977,-0.123665452003479,0.365157693624496,0.912859082221985,-0.182614371180534,0.292851567268372,0.944447100162506,-0.149189487099648,0.292851567268372,0.944447100162506,-0.149189487099648,0.293738037347794,0.950893759727478,-0.0975649282336235,0.348425060510635,0.929143011569977,-0.123665452003479,0.224174469709396,0.970797061920166,-0.0854331776499748,\r\n0.294876456260681,0.95463365316391,-0.0415012873709202,0.293738037347794,0.950893759727478,-0.0975649282336235,0.353210777044296,0.899190127849579,-0.25826171040535,0.309975862503052,0.879335463047028,-0.361502408981323,0.392946749925613,0.868771374225616,-0.301378518342972,0.234894186258316,0.763468205928802,-0.601615190505981,0.352430194616318,0.700194120407104,-0.620903372764587,0.377589792013168,0.783690750598907,-0.49320849776268,0.402506202459335,0.830331742763519,-0.385406047105789,0.377589792013168,0.783690750598907,-0.49320849776268,0.425620645284653,0.793345093727112,-0.435259073972702,0.0963072404265404,0.753993153572083,-0.649783909320831,0.257662415504456,0.683752119541168,-0.682709991931915,0.234894186258316,0.763468205928802,-0.601615190505981,0.392946749925613,0.868771374225616,-0.301378518342972,0.402506202459335,0.830331742763519,-0.385406047105789,0.359016716480255,0.861893653869629,-0.358114808797836,-0.382426023483276,0.862344324588776,0.331831902265549,-0.331793904304504,0.902563631534576,0.274393022060394,-0.329680740833282,0.880092322826386,0.341684013605118,0.371054768562317,0.921240627765656,-0.116764530539513,0.442721426486969,0.883561193943024,-0.152699694037437,0.376812636852264,0.905944108963013,-0.193073466420174,0.35695692896843,0.933767199516296,-0.0256951581686735,0.342358767986298,0.935910940170288,-0.0828319266438484,0.288119047880173,0.953702867031097,-0.0862444490194321,0.35695692896843,0.933767199516296,-0.0256951581686735,0.31055673956871,0.950554311275482,0.000932047667447478,0.383613497018814,0.922747731208801,0.0371106266975403,0.327391773462296,0.94306343793869,0.0586994849145412,0.31055673956871,0.950554311275482,0.000932047667447478,0.245352044701576,0.968065559864044,0.0514908619225025,0.371054768562317,0.921240627765656,-0.116764530539513,0.342358767986298,0.935910940170288,-0.0828319266438484,0.402147263288498,0.913548231124878,-0.0608840994536877,0.217152416706085,0.796583235263824,-0.564180612564087,0.284146219491959,0.796344459056854,-0.533944070339203,0.222872227430344,0.789943516254425,-0.571241676807404,\r\n0.30255851149559,0.811969518661499,-0.499163061380386,0.284146219491959,0.796344459056854,-0.533944070339203,0.336321979761124,0.803999900817871,-0.490378975868225,0.323893129825592,0.822344899177551,-0.467805624008179,0.336321979761124,0.803999900817871,-0.490378975868225,0.374018549919128,0.812304079532623,-0.447517663240433,0.374018549919128,0.812304079532623,-0.447517663240433,0.339637726545334,0.837596476078033,-0.427876532077789,0.420226365327835,0.815327763557434,-0.398309320211411,0.376812636852264,0.905944108963013,-0.193073466420174,0.442721426486969,0.883561193943024,-0.152699694037437,0.443180829286575,0.855769276618958,-0.266926348209381,0.443180829286575,0.855769276618958,-0.266926348209381,0.420226365327835,0.815327763557434,-0.398309320211411,0.392832845449448,0.84932142496109,-0.352612316608429,0.180959135293961,0.763489961624146,-0.619948983192444,0.217152416706085,0.796583235263824,-0.564180612564087,0.222872227430344,0.789943516254425,-0.571241676807404,0.180959135293961,0.763489961624146,-0.619948983192444,0.0730372220277786,0.795372247695923,-0.601704597473145,0.108369410037994,0.769973337650299,-0.628805994987488,0.0730372220277786,0.795372247695923,-0.601704597473145,0.0373485945165157,0.772970080375671,-0.633342087268829,0.108369410037994,0.769973337650299,-0.628805994987488,0.00555835897102952,0.767600297927856,-0.640904605388641,0.0373485945165157,0.772970080375671,-0.633342087268829,-0.0438199006021023,0.76792985200882,-0.639033257961273,-0.0912747830152512,0.757391929626465,-0.646549463272095,-0.0438199006021023,0.76792985200882,-0.639033257961273,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.0866081118583679,0.734670400619507,-0.672873139381409,-0.0912747830152512,0.757391929626465,-0.646549463272095,0.00392701104283333,0.700256824493408,-0.713880121707916,0.0186901073902845,0.739478766918182,-0.672920167446136,-0.0866081118583679,0.734670400619507,-0.672873139381409,0.00392701104283333,0.700256824493408,-0.713880121707916,\r\n-0.0160122364759445,0.692427158355713,-0.721309959888458,0.0894104465842247,0.650416553020477,-0.754296958446503,0.0427439026534557,0.649518966674805,-0.759142875671387,0.0877489671111107,0.609548151493073,-0.787877559661865,0.0894104465842247,0.650416553020477,-0.754296958446503,-0.0394082702696323,0.688997805118561,-0.72369110584259,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.14023357629776,0.681312322616577,-0.71843433380127,0.0607711300253868,0.629403114318848,-0.774698972702026,-0.0394082702696323,0.688997805118561,-0.72369110584259,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.272112250328064,0.780878722667694,-0.562301695346832,-0.205332785844803,0.740249454975128,-0.640210092067719,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.00360897416248918,0.86118072271347,0.508285880088806,-0.168372601270676,0.871266067028046,0.461027055978775,-0.247785419225693,0.865954995155334,0.434424102306366,-0.203125864267349,0.835331201553345,0.510843932628632,-0.168372601270676,0.871266067028046,0.461027055978775,-0.130151435732841,0.824181258678436,0.551167547702789,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.0149040417745709,0.909420549869537,0.415610373020172,0.0145234409719706,0.872833549976349,0.487801760435104,-0.00225063809193671,0.930114448070526,0.367262721061707,-0.011149974539876,0.887950301170349,0.459804058074951,0.0239837113767862,0.85733962059021,0.514192044734955,-0.0149040417745709,0.909420549869537,0.415610373020172,-0.0447821356356144,0.904345452785492,0.424445182085037,-0.00360897416248918,0.86118072271347,0.508285880088806,-0.011149974539876,0.887950301170349,0.459804058074951,0.0514699891209602,0.904461681842804,0.423438131809235,0.0596012659370899,0.949785828590393,0.307171672582626,\r\n-0.00225063809193671,0.930114448070526,0.367262721061707,0.134380415081978,0.933386564254761,0.332763224840164,0.121224462985992,0.965486466884613,0.230522111058235,0.0596012659370899,0.949785828590393,0.307171672582626,0.178568333387375,0.968681395053864,0.17253865301609,0.121224462985992,0.965486466884613,0.230522111058235,0.22402349114418,0.942607343196869,0.247597888112068,0.261162847280502,0.95874434709549,0.11226361989975,0.154181197285652,0.981348097324371,0.114821761846542,0.178568333387375,0.968681395053864,0.17253865301609,0.261162847280502,0.95874434709549,0.11226361989975,0.327391773462296,0.94306343793869,0.0586994849145412,0.245352044701576,0.968065559864044,0.0514908619225025,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.148892104625702,0.778871357440948,-0.609253942966461,-0.16684265434742,0.769972085952759,-0.615878522396088,0.36101308465004,0.909004747867584,-0.208278104662895,0.365157693624496,0.912859082221985,-0.182614371180534,0.353210777044296,0.899190127849579,-0.25826171040535,0.36101308465004,0.909004747867584,-0.208278104662895,0.292851567268372,0.944447100162506,-0.149189487099648,0.365157693624496,0.912859082221985,-0.182614371180534,0.293738037347794,0.950893759727478,-0.0975649282336235,0.292851567268372,0.944447100162506,-0.149189487099648,0.224174469709396,0.970797061920166,-0.0854331776499748,0.392946749925613,0.868771374225616,-0.301378518342972,0.36101308465004,0.909004747867584,-0.208278104662895,0.353210777044296,0.899190127849579,-0.25826171040535,0.352430194616318,0.700194120407104,-0.620903372764587,0.234894186258316,0.763468205928802,-0.601615190505981,0.257662415504456,0.683752119541168,-0.682709991931915,0.377589792013168,0.783690750598907,-0.49320849776268,0.352430194616318,0.700194120407104,-0.620903372764587,0.413890719413757,0.748255610466003,-0.518466770648956,0.377589792013168,0.783690750598907,-0.49320849776268,0.413890719413757,0.748255610466003,-0.518466770648956,0.425620645284653,0.793345093727112,-0.435259073972702,0.359016716480255,0.861893653869629,-0.358114808797836,\r\n0.402506202459335,0.830331742763519,-0.385406047105789,0.425620645284653,0.793345093727112,-0.435259073972702,0.307543069124222,0.90556937456131,-0.292166501283646,0.392946749925613,0.868771374225616,-0.301378518342972,0.359016716480255,0.861893653869629,-0.358114808797836,0.371054768562317,0.921240627765656,-0.116764530539513,0.434954345226288,0.895492315292358,-0.0943834483623505,0.442721426486969,0.883561193943024,-0.152699694037437,0.402147263288498,0.913548231124878,-0.0608840994536877,0.342358767986298,0.935910940170288,-0.0828319266438484,0.35695692896843,0.933767199516296,-0.0256951581686735,0.31055673956871,0.950554311275482,0.000932047667447478,0.327391773462296,0.94306343793869,0.0586994849145412,0.383613497018814,0.922747731208801,0.0371106266975403,0.408609479665756,0.91266942024231,0.00852930825203657,0.35695692896843,0.933767199516296,-0.0256951581686735,0.383613497018814,0.922747731208801,0.0371106266975403,0.434954345226288,0.895492315292358,-0.0943834483623505,0.371054768562317,0.921240627765656,-0.116764530539513,0.402147263288498,0.913548231124878,-0.0608840994536877,0.218807771801949,0.831978857517242,-0.50983738899231,0.222872227430344,0.789943516254425,-0.571241676807404,0.284146219491959,0.796344459056854,-0.533944070339203,0.30255851149559,0.811969518661499,-0.499163061380386,0.218807771801949,0.831978857517242,-0.50983738899231,0.284146219491959,0.796344459056854,-0.533944070339203,0.323893129825592,0.822344899177551,-0.467805624008179,0.30255851149559,0.811969518661499,-0.499163061380386,0.336321979761124,0.803999900817871,-0.490378975868225,0.374018549919128,0.812304079532623,-0.447517663240433,0.359015226364136,0.803923487663269,-0.474146544933319,0.323893129825592,0.822344899177551,-0.467805624008179,0.374018549919128,0.812304079532623,-0.447517663240433,0.420226365327835,0.815327763557434,-0.398309320211411,0.432650089263916,0.790696382522583,-0.433142960071564,0.491233974695206,0.852532625198364,-0.178541868925095,0.443180829286575,0.855769276618958,-0.266926348209381,0.442721426486969,0.883561193943024,-0.152699694037437,\r\n0.487005978822708,0.79820990562439,-0.354522228240967,0.420226365327835,0.815327763557434,-0.398309320211411,0.443180829286575,0.855769276618958,-0.266926348209381,0.180959135293961,0.763489961624146,-0.619948983192444,0.222872227430344,0.789943516254425,-0.571241676807404,0.152647420763969,0.78847724199295,-0.595820665359497,0.180959135293961,0.763489961624146,-0.619948983192444,0.152647420763969,0.78847724199295,-0.595820665359497,0.0730372220277786,0.795372247695923,-0.601704597473145,-0.0663544610142708,0.798031628131866,-0.598951101303101,0.0373485945165157,0.772970080375671,-0.633342087268829,0.0730372220277786,0.795372247695923,-0.601704597473145,-0.0438199006021023,0.76792985200882,-0.639033257961273,0.0373485945165157,0.772970080375671,-0.633342087268829,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.0438199006021023,0.76792985200882,-0.639033257961273,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.0866081118583679,0.734670400619507,-0.672873139381409,0.00392701104283333,0.700256824493408,-0.713880121707916,-0.0866081118583679,0.734670400619507,-0.672873139381409,-0.0920452103018761,0.723412156105042,-0.684253215789795,0.00392701104283333,0.700256824493408,-0.713880121707916,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.0160122364759445,0.692427158355713,-0.721309959888458,0.0662626177072525,0.653153717517853,-0.754320442676544,0.0894104465842247,0.650416553020477,-0.754296958446503,-0.0160122364759445,0.692427158355713,-0.721309959888458,0.0894104465842247,0.650416553020477,-0.754296958446503,0.113779202103615,0.657155334949493,-0.745118081569672,0.0427439026534557,0.649518966674805,-0.759142875671387,-0.0394082702696323,0.688997805118561,-0.72369110584259,-0.0896875858306885,0.667133033275604,-0.739519774913788,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.0896875858306885,0.667133033275604,-0.739519774913788,\r\n-0.0394082702696323,0.688997805118561,-0.72369110584259,0.0607711300253868,0.629403114318848,-0.774698972702026,0.0427439026534557,0.649518966674805,-0.759142875671387,0.113779202103615,0.657155334949493,-0.745118081569672,0.0607711300253868,0.629403114318848,-0.774698972702026,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.138508021831512,0.726077318191528,-0.673518419265747,-0.0896875858306885,0.667133033275604,-0.739519774913788,-0.0281199868768454,0.805395483970642,0.592070341110229,-0.00360897416248918,0.86118072271347,0.508285880088806,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.203125864267349,0.835331201553345,0.510843932628632,-0.130151435732841,0.824181258678436,0.551167547702789,-0.168372601270676,0.871266067028046,0.461027055978775,-0.0281199868768454,0.805395483970642,0.592070341110229,-0.0770532190799713,0.867004692554474,0.492306411266327,-0.130151435732841,0.824181258678436,0.551167547702789,-0.0149040417745709,0.909420549869537,0.415610373020172,0.0239837113767862,0.85733962059021,0.514192044734955,0.0145234409719706,0.872833549976349,0.487801760435104,0.0514699891209602,0.904461681842804,0.423438131809235,-0.00225063809193671,0.930114448070526,0.367262721061707,0.0145234409719706,0.872833549976349,0.487801760435104,-0.011149974539876,0.887950301170349,0.459804058074951,0.0281550474464893,0.837976455688477,0.544979572296143,0.0239837113767862,0.85733962059021,0.514192044734955,0.0281550474464893,0.837976455688477,0.544979572296143,-0.011149974539876,0.887950301170349,0.459804058074951,-0.00360897416248918,0.86118072271347,0.508285880088806,0.0596012659370899,0.949785828590393,0.307171672582626,0.0514699891209602,0.904461681842804,0.423438131809235,0.134380415081978,0.933386564254761,0.332763224840164,0.22402349114418,0.942607343196869,0.247597888112068,0.121224462985992,0.965486466884613,0.230522111058235,0.134380415081978,0.933386564254761,0.332763224840164,0.284488618373871,0.937442898750305,0.20066636800766,0.178568333387375,0.968681395053864,0.17253865301609,0.22402349114418,0.942607343196869,0.247597888112068,\r\n0.284488618373871,0.937442898750305,0.20066636800766,0.261162847280502,0.95874434709549,0.11226361989975,0.178568333387375,0.968681395053864,0.17253865301609,0.261162847280502,0.95874434709549,0.11226361989975,0.348656266927719,0.928065419197083,0.13089445233345,0.327391773462296,0.94306343793869,0.0586994849145412,-0.0998120605945587,0.713394284248352,-0.69361799955368,-0.16684265434742,0.769972085952759,-0.615878522396088,-0.0896875858306885,0.667133033275604,-0.739519774913788,0.292851567268372,0.944447100162506,-0.149189487099648,0.36101308465004,0.909004747867584,-0.208278104662895,0.264844954013824,0.949947357177734,-0.165701657533646,0.224174469709396,0.970797061920166,-0.0854331776499748,0.292851567268372,0.944447100162506,-0.149189487099648,0.20693464577198,0.972486019134521,-0.106999740004539,0.320539176464081,0.914756774902344,-0.24591563642025,0.36101308465004,0.909004747867584,-0.208278104662895,0.392946749925613,0.868771374225616,-0.301378518342972,0.352430194616318,0.700194120407104,-0.620903372764587,0.257662415504456,0.683752119541168,-0.682709991931915,0.389607965946198,0.644710540771484,-0.657688200473785,0.373165547847748,0.722598195075989,-0.581892728805542,0.413890719413757,0.748255610466003,-0.518466770648956,0.352430194616318,0.700194120407104,-0.620903372764587,0.425620645284653,0.793345093727112,-0.435259073972702,0.413890719413757,0.748255610466003,-0.518466770648956,0.373165547847748,0.722598195075989,-0.581892728805542,0.425620645284653,0.793345093727112,-0.435259073972702,0.339851975440979,0.805907309055328,-0.484782367944717,0.359016716480255,0.861893653869629,-0.358114808797836,0.307543069124222,0.90556937456131,-0.292166501283646,0.320539176464081,0.914756774902344,-0.24591563642025,0.392946749925613,0.868771374225616,-0.301378518342972,0.234425261616707,0.908260822296143,-0.346564501523972,0.307543069124222,0.90556937456131,-0.292166501283646,0.359016716480255,0.861893653869629,-0.358114808797836,0.476693004369736,0.872381091117859,-0.108235366642475,0.442721426486969,0.883561193943024,-0.152699694037437,\r\n0.434954345226288,0.895492315292358,-0.0943834483623505,0.408609479665756,0.91266942024231,0.00852930825203657,0.402147263288498,0.913548231124878,-0.0608840994536877,0.35695692896843,0.933767199516296,-0.0256951581686735,0.327391773462296,0.94306343793869,0.0586994849145412,0.382722288370132,0.921943783760071,0.0595252402126789,0.383613497018814,0.922747731208801,0.0371106266975403,0.390862971544266,0.919931590557098,0.0308525115251541,0.408609479665756,0.91266942024231,0.00852930825203657,0.383613497018814,0.922747731208801,0.0371106266975403,0.453633397817612,0.89000791311264,-0.0458533726632595,0.434954345226288,0.895492315292358,-0.0943834483623505,0.402147263288498,0.913548231124878,-0.0608840994536877,0.222872227430344,0.789943516254425,-0.571241676807404,0.218807771801949,0.831978857517242,-0.50983738899231,0.114644072949886,0.838460803031921,-0.532766461372375,0.218807771801949,0.831978857517242,-0.50983738899231,0.30255851149559,0.811969518661499,-0.499163061380386,0.309797763824463,0.811230778694153,-0.495913088321686,0.309797763824463,0.811230778694153,-0.495913088321686,0.30255851149559,0.811969518661499,-0.499163061380386,0.323893129825592,0.822344899177551,-0.467805624008179,0.359015226364136,0.803923487663269,-0.474146544933319,0.374018549919128,0.812304079532623,-0.447517663240433,0.432650089263916,0.790696382522583,-0.433142960071564,0.309797763824463,0.811230778694153,-0.495913088321686,0.323893129825592,0.822344899177551,-0.467805624008179,0.359015226364136,0.803923487663269,-0.474146544933319,0.432650089263916,0.790696382522583,-0.433142960071564,0.420226365327835,0.815327763557434,-0.398309320211411,0.445625871419907,0.779344320297241,-0.440499603748322,0.511251866817474,0.821829676628113,-0.251430511474609,0.443180829286575,0.855769276618958,-0.266926348209381,0.491233974695206,0.852532625198364,-0.178541868925095,0.476693004369736,0.872381091117859,-0.108235366642475,0.491233974695206,0.852532625198364,-0.178541868925095,0.442721426486969,0.883561193943024,-0.152699694037437,0.487005978822708,0.79820990562439,-0.354522228240967,\r\n0.445625871419907,0.779344320297241,-0.440499603748322,0.420226365327835,0.815327763557434,-0.398309320211411,0.487005978822708,0.79820990562439,-0.354522228240967,0.443180829286575,0.855769276618958,-0.266926348209381,0.511251866817474,0.821829676628113,-0.251430511474609,0.222872227430344,0.789943516254425,-0.571241676807404,0.114644072949886,0.838460803031921,-0.532766461372375,0.152647420763969,0.78847724199295,-0.595820665359497,0.0730372220277786,0.795372247695923,-0.601704597473145,0.152647420763969,0.78847724199295,-0.595820665359497,0.114644072949886,0.838460803031921,-0.532766461372375,0.021154185757041,0.784523785114288,-0.61973762512207,-0.0663544610142708,0.798031628131866,-0.598951101303101,0.0730372220277786,0.795372247695923,-0.601704597473145,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.0160122364759445,0.692427158355713,-0.721309959888458,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.124049536883831,0.716469883918762,-0.686500072479248,0.0894104465842247,0.650416553020477,-0.754296958446503,0.0662626177072525,0.653153717517853,-0.754320442676544,0.113779202103615,0.657155334949493,-0.745118081569672,0.0662626177072525,0.653153717517853,-0.754320442676544,-0.0160122364759445,0.692427158355713,-0.721309959888458,-0.0588106364011765,0.634355902671814,-0.770800769329071,0.113779202103615,0.657155334949493,-0.745118081569672,0.0662626177072525,0.653153717517853,-0.754320442676544,0.0607711300253868,0.629403114318848,-0.774698972702026,0.0281550474464893,0.837976455688477,0.544979572296143,-0.00360897416248918,0.86118072271347,0.508285880088806,-0.0281199868768454,0.805395483970642,0.592070341110229,0.026267534121871,0.826435208320618,0.562418639659882,0.0145234409719706,0.872833549976349,0.487801760435104,\r\n0.0239837113767862,0.85733962059021,0.514192044734955,0.0145234409719706,0.872833549976349,0.487801760435104,0.0372019484639168,0.848371863365173,0.528091907501221,0.0514699891209602,0.904461681842804,0.423438131809235,0.026267534121871,0.826435208320618,0.562418639659882,0.0239837113767862,0.85733962059021,0.514192044734955,0.0281550474464893,0.837976455688477,0.544979572296143,0.0514699891209602,0.904461681842804,0.423438131809235,0.142487347126007,0.866297125816345,0.478776067495346,0.134380415081978,0.933386564254761,0.332763224840164,0.254799067974091,0.913672626018524,0.316669553518295,0.22402349114418,0.942607343196869,0.247597888112068,0.134380415081978,0.933386564254761,0.332763224840164,0.298770874738693,0.9144486784935,0.272982627153397,0.284488618373871,0.937442898750305,0.20066636800766,0.22402349114418,0.942607343196869,0.247597888112068,0.348656266927719,0.928065419197083,0.13089445233345,0.261162847280502,0.95874434709549,0.11226361989975,0.284488618373871,0.937442898750305,0.20066636800766,0.327391773462296,0.94306343793869,0.0586994849145412,0.348656266927719,0.928065419197083,0.13089445233345,0.382722288370132,0.921943783760071,0.0595252402126789,0.36101308465004,0.909004747867584,-0.208278104662895,0.320539176464081,0.914756774902344,-0.24591563642025,0.264844954013824,0.949947357177734,-0.165701657533646,0.264844954013824,0.949947357177734,-0.165701657533646,0.20693464577198,0.972486019134521,-0.106999740004539,0.292851567268372,0.944447100162506,-0.149189487099648,0.224174469709396,0.970797061920166,-0.0854331776499748,0.20693464577198,0.972486019134521,-0.106999740004539,0.184770941734314,0.980836451053619,-0.0618018954992294,0.257662415504456,0.683752119541168,-0.682709991931915,0.318044990301132,0.587348818778992,-0.744223475456238,0.389607965946198,0.644710540771484,-0.657688200473785,0.352430194616318,0.700194120407104,-0.620903372764587,0.389607965946198,0.644710540771484,-0.657688200473785,0.36219134926796,0.668158829212189,-0.649908483028412,0.373165547847748,0.722598195075989,-0.581892728805542,\r\n0.352430194616318,0.700194120407104,-0.620903372764587,0.36219134926796,0.668158829212189,-0.649908483028412,0.425620645284653,0.793345093727112,-0.435259073972702,0.373165547847748,0.722598195075989,-0.581892728805542,0.339851975440979,0.805907309055328,-0.484782367944717,0.359016716480255,0.861893653869629,-0.358114808797836,0.339851975440979,0.805907309055328,-0.484782367944717,0.253659605979919,0.859693586826324,-0.443377465009689,0.205807149410248,0.943327367305756,-0.260339319705963,0.320539176464081,0.914756774902344,-0.24591563642025,0.307543069124222,0.90556937456131,-0.292166501283646,0.205807149410248,0.943327367305756,-0.260339319705963,0.307543069124222,0.90556937456131,-0.292166501283646,0.234425261616707,0.908260822296143,-0.346564501523972,0.234425261616707,0.908260822296143,-0.346564501523972,0.359016716480255,0.861893653869629,-0.358114808797836,0.253659605979919,0.859693586826324,-0.443377465009689,0.434954345226288,0.895492315292358,-0.0943834483623505,0.453633397817612,0.89000791311264,-0.0458533726632595,0.476693004369736,0.872381091117859,-0.108235366642475,0.453633397817612,0.89000791311264,-0.0458533726632595,0.402147263288498,0.913548231124878,-0.0608840994536877,0.408609479665756,0.91266942024231,0.00852930825203657,0.382722288370132,0.921943783760071,0.0595252402126789,0.390862971544266,0.919931590557098,0.0308525115251541,0.383613497018814,0.922747731208801,0.0371106266975403,0.408609479665756,0.91266942024231,0.00852930825203657,0.390862971544266,0.919931590557098,0.0308525115251541,0.406765043735504,0.912230789661407,0.0487553849816322,0.170330449938774,0.843351483345032,-0.509652495384216,0.114644072949886,0.838460803031921,-0.532766461372375,0.218807771801949,0.831978857517242,-0.50983738899231,0.218807771801949,0.831978857517242,-0.50983738899231,0.309797763824463,0.811230778694153,-0.495913088321686,0.233830511569977,0.795603334903717,-0.558872580528259,0.359015226364136,0.803923487663269,-0.474146544933319,0.432650089263916,0.790696382522583,-0.433142960071564,0.414828330278397,0.758806884288788,-0.502124905586243,\r\n0.359015226364136,0.803923487663269,-0.474146544933319,0.371785789728165,0.741241753101349,-0.558870136737823,0.309797763824463,0.811230778694153,-0.495913088321686,0.432650089263916,0.790696382522583,-0.433142960071564,0.445625871419907,0.779344320297241,-0.440499603748322,0.414828330278397,0.758806884288788,-0.502124905586243,0.54765772819519,0.812749028205872,-0.198770895600319,0.511251866817474,0.821829676628113,-0.251430511474609,0.491233974695206,0.852532625198364,-0.178541868925095,0.491233974695206,0.852532625198364,-0.178541868925095,0.476693004369736,0.872381091117859,-0.108235366642475,0.526549518108368,0.840138673782349,-0.130047932267189,0.490085422992706,0.771808505058289,-0.405126869678497,0.445625871419907,0.779344320297241,-0.440499603748322,0.487005978822708,0.79820990562439,-0.354522228240967,0.487005978822708,0.79820990562439,-0.354522228240967,0.511251866817474,0.821829676628113,-0.251430511474609,0.572409212589264,0.772989511489868,-0.27355968952179,0.021154185757041,0.784523785114288,-0.61973762512207,0.0730372220277786,0.795372247695923,-0.601704597473145,0.114644072949886,0.838460803031921,-0.532766461372375,0.021154185757041,0.784523785114288,-0.61973762512207,-0.0887010544538498,0.720294594764709,-0.68797355890274,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.0663544610142708,0.798031628131866,-0.598951101303101,-0.0887010544538498,0.720294594764709,-0.68797355890274,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.129535242915154,0.746650099754334,-0.652483105659485,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.0920452103018761,0.723412156105042,-0.684253215789795,-0.0160122364759445,0.692427158355713,-0.721309959888458,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.0588106364011765,0.634355902671814,-0.770800769329071,\r\n0.0466557182371616,0.634668111801147,-0.771375119686127,0.0662626177072525,0.653153717517853,-0.754320442676544,0.0662626177072525,0.653153717517853,-0.754320442676544,0.0466557182371616,0.634668111801147,-0.771375119686127,0.0607711300253868,0.629403114318848,-0.774698972702026,0.0248698219656944,0.784355819225311,0.619812309741974,0.0281550474464893,0.837976455688477,0.544979572296143,-0.0281199868768454,0.805395483970642,0.592070341110229,0.0145234409719706,0.872833549976349,0.487801760435104,0.026267534121871,0.826435208320618,0.562418639659882,0.0372019484639168,0.848371863365173,0.528091907501221,0.0514699891209602,0.904461681842804,0.423438131809235,0.0372019484639168,0.848371863365173,0.528091907501221,0.142487347126007,0.866297125816345,0.478776067495346,0.026267534121871,0.826435208320618,0.562418639659882,0.0281550474464893,0.837976455688477,0.544979572296143,0.0248698219656944,0.784355819225311,0.619812309741974,0.134380415081978,0.933386564254761,0.332763224840164,0.142487347126007,0.866297125816345,0.478776067495346,0.205381125211716,0.890813946723938,0.405301123857498,0.254799067974091,0.913672626018524,0.316669553518295,0.298770874738693,0.9144486784935,0.272982627153397,0.22402349114418,0.942607343196869,0.247597888112068,0.254799067974091,0.913672626018524,0.316669553518295,0.134380415081978,0.933386564254761,0.332763224840164,0.205381125211716,0.890813946723938,0.405301123857498,0.32000344991684,0.915695250034332,0.243104681372643,0.284488618373871,0.937442898750305,0.20066636800766,0.298770874738693,0.9144486784935,0.272982627153397,0.284488618373871,0.937442898750305,0.20066636800766,0.388461589813232,0.900217473506927,0.196738630533218,0.348656266927719,0.928065419197083,0.13089445233345,0.413496732711792,0.899041593074799,0.144028902053833,0.382722288370132,0.921943783760071,0.0595252402126789,0.348656266927719,0.928065419197083,0.13089445233345,0.264844954013824,0.949947357177734,-0.165701657533646,0.320539176464081,0.914756774902344,-0.24591563642025,0.205807149410248,0.943327367305756,-0.260339319705963,\r\n0.264844954013824,0.949947357177734,-0.165701657533646,0.197186753153801,0.974767327308655,-0.104623079299927,0.20693464577198,0.972486019134521,-0.106999740004539,0.219225183129311,0.972016096115112,-0.0844090357422829,0.184770941734314,0.980836451053619,-0.0618018954992294,0.20693464577198,0.972486019134521,-0.106999740004539,0.389607965946198,0.644710540771484,-0.657688200473785,0.318044990301132,0.587348818778992,-0.744223475456238,0.355790972709656,0.585541069507599,-0.728391587734222,0.389607965946198,0.644710540771484,-0.657688200473785,0.419959634542465,0.688457012176514,-0.591321229934692,0.36219134926796,0.668158829212189,-0.649908483028412,0.373165547847748,0.722598195075989,-0.581892728805542,0.36219134926796,0.668158829212189,-0.649908483028412,0.419959634542465,0.688457012176514,-0.591321229934692,0.320102483034134,0.774057388305664,-0.546231985092163,0.339851975440979,0.805907309055328,-0.484782367944717,0.373165547847748,0.722598195075989,-0.581892728805542,0.253659605979919,0.859693586826324,-0.443377465009689,0.339851975440979,0.805907309055328,-0.484782367944717,0.320102483034134,0.774057388305664,-0.546231985092163,0.205807149410248,0.943327367305756,-0.260339319705963,0.234425261616707,0.908260822296143,-0.346564501523972,0.179319515824318,0.919459819793701,-0.349911451339722,0.179319515824318,0.919459819793701,-0.349911451339722,0.234425261616707,0.908260822296143,-0.346564501523972,0.253659605979919,0.859693586826324,-0.443377465009689,0.476693004369736,0.872381091117859,-0.108235366642475,0.453633397817612,0.89000791311264,-0.0458533726632595,0.492456704378128,0.866559684276581,-0.0809975862503052,0.454296976327896,0.89072448015213,0.0149661796167493,0.453633397817612,0.89000791311264,-0.0458533726632595,0.408609479665756,0.91266942024231,0.00852930825203657,0.406765043735504,0.912230789661407,0.0487553849816322,0.390862971544266,0.919931590557098,0.0308525115251541,0.382722288370132,0.921943783760071,0.0595252402126789,0.408609479665756,0.91266942024231,0.00852930825203657,0.406765043735504,0.912230789661407,0.0487553849816322,\r\n0.454296976327896,0.89072448015213,0.0149661796167493,0.118899367749691,0.817389488220215,-0.563681840896606,0.114644072949886,0.838460803031921,-0.532766461372375,0.170330449938774,0.843351483345032,-0.509652495384216,0.170330449938774,0.843351483345032,-0.509652495384216,0.218807771801949,0.831978857517242,-0.50983738899231,0.233830511569977,0.795603334903717,-0.558872580528259,0.354062259197235,0.770267009735107,-0.530404210090637,0.233830511569977,0.795603334903717,-0.558872580528259,0.309797763824463,0.811230778694153,-0.495913088321686,0.359015226364136,0.803923487663269,-0.474146544933319,0.414828330278397,0.758806884288788,-0.502124905586243,0.371785789728165,0.741241753101349,-0.558870136737823,0.430246710777283,0.732872366905212,-0.527053773403168,0.309797763824463,0.811230778694153,-0.495913088321686,0.371785789728165,0.741241753101349,-0.558870136737823,0.447105318307877,0.742194473743439,-0.499243468046188,0.414828330278397,0.758806884288788,-0.502124905586243,0.445625871419907,0.779344320297241,-0.440499603748322,0.54765772819519,0.812749028205872,-0.198770895600319,0.572409212589264,0.772989511489868,-0.27355968952179,0.511251866817474,0.821829676628113,-0.251430511474609,0.526549518108368,0.840138673782349,-0.130047932267189,0.54765772819519,0.812749028205872,-0.198770895600319,0.491233974695206,0.852532625198364,-0.178541868925095,0.476693004369736,0.872381091117859,-0.108235366642475,0.492456704378128,0.866559684276581,-0.0809975862503052,0.526549518108368,0.840138673782349,-0.130047932267189,0.490085422992706,0.771808505058289,-0.405126869678497,0.468974411487579,0.756544172763824,-0.455745279788971,0.445625871419907,0.779344320297241,-0.440499603748322,0.490085422992706,0.771808505058289,-0.405126869678497,0.487005978822708,0.79820990562439,-0.354522228240967,0.545640707015991,0.752583563327789,-0.368638068437576,0.545640707015991,0.752583563327789,-0.368638068437576,0.487005978822708,0.79820990562439,-0.354522228240967,0.572409212589264,0.772989511489868,-0.27355968952179,0.118899367749691,0.817389488220215,-0.563681840896606,\r\n0.021154185757041,0.784523785114288,-0.61973762512207,0.114644072949886,0.838460803031921,-0.532766461372375,-0.0191428549587727,0.657285034656525,-0.753398835659027,-0.0887010544538498,0.720294594764709,-0.68797355890274,0.021154185757041,0.784523785114288,-0.61973762512207,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.0887010544538498,0.720294594764709,-0.68797355890274,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.144780248403549,0.725558936595917,-0.672757565975189,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.187949955463409,0.644588828086853,-0.741066753864288,0.0466557182371616,0.634668111801147,-0.771375119686127,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.00404770625755191,0.606877982616425,-0.794784605503082,0.0466557182371616,0.634668111801147,-0.771375119686127,0.00432480406016111,0.57669985294342,-0.816944539546967,0.0607711300253868,0.629403114318848,-0.774698972702026,0.0372019484639168,0.848371863365173,0.528091907501221,0.026267534121871,0.826435208320618,0.562418639659882,0.021785294637084,0.799495697021484,0.600276589393616,0.142487347126007,0.866297125816345,0.478776067495346,0.0372019484639168,0.848371863365173,0.528091907501221,0.12978108227253,0.830853641033173,0.541145980358124,0.01594203338027,0.756135642528534,0.654220581054688,0.026267534121871,0.826435208320618,0.562418639659882,0.0248698219656944,0.784355819225311,0.619812309741974,0.308866918087006,0.803936541080475,0.508219540119171,0.205381125211716,0.890813946723938,0.405301123857498,0.142487347126007,0.866297125816345,0.478776067495346,0.310895413160324,0.888770639896393,0.336794644594193,0.298770874738693,0.9144486784935,0.272982627153397,0.254799067974091,0.913672626018524,0.316669553518295,\r\n0.293134748935699,0.865984261035919,0.405145853757858,0.254799067974091,0.913672626018524,0.316669553518295,0.205381125211716,0.890813946723938,0.405301123857498,0.284488618373871,0.937442898750305,0.20066636800766,0.32000344991684,0.915695250034332,0.243104681372643,0.388461589813232,0.900217473506927,0.196738630533218,0.393349409103394,0.877269744873047,0.275088876485825,0.32000344991684,0.915695250034332,0.243104681372643,0.298770874738693,0.9144486784935,0.272982627153397,0.413496732711792,0.899041593074799,0.144028902053833,0.348656266927719,0.928065419197083,0.13089445233345,0.388461589813232,0.900217473506927,0.196738630533218,0.413496732711792,0.899041593074799,0.144028902053833,0.406765043735504,0.912230789661407,0.0487553849816322,0.382722288370132,0.921943783760071,0.0595252402126789,0.205807149410248,0.943327367305756,-0.260339319705963,0.162010014057159,0.970295548439026,-0.179664298892021,0.264844954013824,0.949947357177734,-0.165701657533646,0.162010014057159,0.970295548439026,-0.179664298892021,0.197186753153801,0.974767327308655,-0.104623079299927,0.264844954013824,0.949947357177734,-0.165701657533646,0.197186753153801,0.974767327308655,-0.104623079299927,0.219225183129311,0.972016096115112,-0.0844090357422829,0.20693464577198,0.972486019134521,-0.106999740004539,0.302150517702103,0.528000295162201,-0.793675363063812,0.355790972709656,0.585541069507599,-0.728391587734222,0.318044990301132,0.587348818778992,-0.744223475456238,0.381892055273056,0.672660827636719,-0.633786797523499,0.389607965946198,0.644710540771484,-0.657688200473785,0.355790972709656,0.585541069507599,-0.728391587734222,0.389607965946198,0.644710540771484,-0.657688200473785,0.381892055273056,0.672660827636719,-0.633786797523499,0.419959634542465,0.688457012176514,-0.591321229934692,0.320102483034134,0.774057388305664,-0.546231985092163,0.373165547847748,0.722598195075989,-0.581892728805542,0.419959634542465,0.688457012176514,-0.591321229934692,0.253659605979919,0.859693586826324,-0.443377465009689,0.320102483034134,0.774057388305664,-0.546231985092163,\r\n0.191010385751724,0.819460272789001,-0.540369987487793,0.205807149410248,0.943327367305756,-0.260339319705963,0.179319515824318,0.919459819793701,-0.349911451339722,0.143755674362183,0.957009315490723,-0.251927196979523,0.173202663660049,0.872265160083771,-0.457333922386169,0.179319515824318,0.919459819793701,-0.349911451339722,0.253659605979919,0.859693586826324,-0.443377465009689,0.496904879808426,0.867409408092499,-0.0261996183544397,0.492456704378128,0.866559684276581,-0.0809975862503052,0.453633397817612,0.89000791311264,-0.0458533726632595,0.453633397817612,0.89000791311264,-0.0458533726632595,0.454296976327896,0.89072448015213,0.0149661796167493,0.496904879808426,0.867409408092499,-0.0261996183544397,0.469757735729218,0.880091071128845,0.0690457299351692,0.454296976327896,0.89072448015213,0.0149661796167493,0.406765043735504,0.912230789661407,0.0487553849816322,0.118899367749691,0.817389488220215,-0.563681840896606,0.170330449938774,0.843351483345032,-0.509652495384216,0.233830511569977,0.795603334903717,-0.558872580528259,0.305609524250031,0.714789092540741,-0.629030406475067,0.233830511569977,0.795603334903717,-0.558872580528259,0.354062259197235,0.770267009735107,-0.530404210090637,0.354062259197235,0.770267009735107,-0.530404210090637,0.309797763824463,0.811230778694153,-0.495913088321686,0.430246710777283,0.732872366905212,-0.527053773403168,0.414828330278397,0.758806884288788,-0.502124905586243,0.375621914863586,0.722414612770081,-0.580538749694824,0.371785789728165,0.741241753101349,-0.558870136737823,0.399067968130112,0.713420510292053,-0.575999677181244,0.430246710777283,0.732872366905212,-0.527053773403168,0.371785789728165,0.741241753101349,-0.558870136737823,0.447105318307877,0.742194473743439,-0.499243468046188,0.375621914863586,0.722414612770081,-0.580538749694824,0.414828330278397,0.758806884288788,-0.502124905586243,0.447105318307877,0.742194473743439,-0.499243468046188,0.445625871419907,0.779344320297241,-0.440499603748322,0.468974411487579,0.756544172763824,-0.455745279788971,0.599774241447449,0.77023309469223,-0.21682196855545,\r\n0.572409212589264,0.772989511489868,-0.27355968952179,0.54765772819519,0.812749028205872,-0.198770895600319,0.579628109931946,0.799601972103119,-0.157059669494629,0.54765772819519,0.812749028205872,-0.198770895600319,0.526549518108368,0.840138673782349,-0.130047932267189,0.526549518108368,0.840138673782349,-0.130047932267189,0.492456704378128,0.866559684276581,-0.0809975862503052,0.546792805194855,0.83323860168457,-0.0820419639348984,0.468974411487579,0.756544172763824,-0.455745279788971,0.490085422992706,0.771808505058289,-0.405126869678497,0.525380194187164,0.730344951152802,-0.436545252799988,0.490085422992706,0.771808505058289,-0.405126869678497,0.545640707015991,0.752583563327789,-0.368638068437576,0.525380194187164,0.730344951152802,-0.436545252799988,0.545640707015991,0.752583563327789,-0.368638068437576,0.572409212589264,0.772989511489868,-0.27355968952179,0.574997842311859,0.766358137130737,-0.286482989788055,0.021154185757041,0.784523785114288,-0.61973762512207,0.118899367749691,0.817389488220215,-0.563681840896606,0.142257302999496,0.743106961250305,-0.653876662254334,-0.0191428549587727,0.657285034656525,-0.753398835659027,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.0887010544538498,0.720294594764709,-0.68797355890274,0.021154185757041,0.784523785114288,-0.61973762512207,0.0676006972789764,0.661778390407562,-0.746645390987396,-0.0191428549587727,0.657285034656525,-0.753398835659027,-0.0633920058608055,0.751759767532349,-0.656382918357849,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.187949955463409,0.644588828086853,-0.741066753864288,-0.124049536883831,0.716469883918762,-0.686500072479248,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.187949955463409,0.644588828086853,-0.741066753864288,-0.210074469447136,0.578193247318268,-0.788391470909119,\r\n-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.00404770625755191,0.606877982616425,-0.794784605503082,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.0641427487134933,0.575211465358734,-0.815485954284668,0.00432480406016111,0.57669985294342,-0.816944539546967,0.0466557182371616,0.634668111801147,-0.771375119686127,-0.00404770625755191,0.606877982616425,-0.794784605503082,0.026267534121871,0.826435208320618,0.562418639659882,0.01594203338027,0.756135642528534,0.654220581054688,0.021785294637084,0.799495697021484,0.600276589393616,0.021785294637084,0.799495697021484,0.600276589393616,0.117968305945396,0.809223473072052,0.575535118579865,0.0372019484639168,0.848371863365173,0.528091907501221,0.12978108227253,0.830853641033173,0.541145980358124,0.0372019484639168,0.848371863365173,0.528091907501221,0.117968305945396,0.809223473072052,0.575535118579865,0.12978108227253,0.830853641033173,0.541145980358124,0.23736660182476,0.78503543138504,0.572168171405792,0.142487347126007,0.866297125816345,0.478776067495346,0.293134748935699,0.865984261035919,0.405145853757858,0.205381125211716,0.890813946723938,0.405301123857498,0.308866918087006,0.803936541080475,0.508219540119171,0.308866918087006,0.803936541080475,0.508219540119171,0.142487347126007,0.866297125816345,0.478776067495346,0.23736660182476,0.78503543138504,0.572168171405792,0.393349409103394,0.877269744873047,0.275088876485825,0.298770874738693,0.9144486784935,0.272982627153397,0.310895413160324,0.888770639896393,0.336794644594193,0.254799067974091,0.913672626018524,0.316669553518295,0.293134748935699,0.865984261035919,0.405145853757858,0.310895413160324,0.888770639896393,0.336794644594193,0.393349409103394,0.877269744873047,0.275088876485825,0.388461589813232,0.900217473506927,0.196738630533218,0.32000344991684,0.915695250034332,0.243104681372643,0.413496732711792,0.899041593074799,0.144028902053833,0.388461589813232,0.900217473506927,0.196738630533218,0.443084269762039,0.868708968162537,0.221406683325768,0.413496732711792,0.899041593074799,0.144028902053833,\r\n0.41399934887886,0.901828646659851,0.123731650412083,0.406765043735504,0.912230789661407,0.0487553849816322,0.143755674362183,0.957009315490723,-0.251927196979523,0.162010014057159,0.970295548439026,-0.179664298892021,0.205807149410248,0.943327367305756,-0.260339319705963,0.193352088332176,0.971081852912903,-0.140053197741508,0.197186753153801,0.974767327308655,-0.104623079299927,0.162010014057159,0.970295548439026,-0.179664298892021,0.219225183129311,0.972016096115112,-0.0844090357422829,0.197186753153801,0.974767327308655,-0.104623079299927,0.193352088332176,0.971081852912903,-0.140053197741508,0.217062219977379,0.618967473506927,-0.754826545715332,0.355790972709656,0.585541069507599,-0.728391587734222,0.302150517702103,0.528000295162201,-0.793675363063812,0.217062219977379,0.618967473506927,-0.754826545715332,0.381892055273056,0.672660827636719,-0.633786797523499,0.355790972709656,0.585541069507599,-0.728391587734222,0.311028599739075,0.759947299957275,-0.570737361907959,0.419959634542465,0.688457012176514,-0.591321229934692,0.381892055273056,0.672660827636719,-0.633786797523499,0.320102483034134,0.774057388305664,-0.546231985092163,0.419959634542465,0.688457012176514,-0.591321229934692,0.311028599739075,0.759947299957275,-0.570737361907959,0.311028599739075,0.759947299957275,-0.570737361907959,0.191010385751724,0.819460272789001,-0.540369987487793,0.320102483034134,0.774057388305664,-0.546231985092163,0.173202663660049,0.872265160083771,-0.457333922386169,0.253659605979919,0.859693586826324,-0.443377465009689,0.191010385751724,0.819460272789001,-0.540369987487793,0.143755674362183,0.957009315490723,-0.251927196979523,0.179319515824318,0.919459819793701,-0.349911451339722,0.148621767759323,0.945332229137421,-0.290273010730743,0.117552898824215,0.884101092815399,-0.452268123626709,0.179319515824318,0.919459819793701,-0.349911451339722,0.173202663660049,0.872265160083771,-0.457333922386169,0.546792805194855,0.83323860168457,-0.0820419639348984,0.492456704378128,0.866559684276581,-0.0809975862503052,0.496904879808426,0.867409408092499,-0.0261996183544397,\r\n0.454296976327896,0.89072448015213,0.0149661796167493,0.509147584438324,0.860108911991119,0.03132488951087,0.496904879808426,0.867409408092499,-0.0261996183544397,0.509147584438324,0.860108911991119,0.03132488951087,0.454296976327896,0.89072448015213,0.0149661796167493,0.469757735729218,0.880091071128845,0.0690457299351692,0.469757735729218,0.880091071128845,0.0690457299351692,0.406765043735504,0.912230789661407,0.0487553849816322,0.41399934887886,0.901828646659851,0.123731650412083,0.142257302999496,0.743106961250305,-0.653876662254334,0.118899367749691,0.817389488220215,-0.563681840896606,0.233830511569977,0.795603334903717,-0.558872580528259,0.229081884026527,0.722513198852539,-0.652300536632538,0.233830511569977,0.795603334903717,-0.558872580528259,0.305609524250031,0.714789092540741,-0.629030406475067,0.305609524250031,0.714789092540741,-0.629030406475067,0.354062259197235,0.770267009735107,-0.530404210090637,0.404070764780045,0.708622395992279,-0.578429698944092,0.430246710777283,0.732872366905212,-0.527053773403168,0.404070764780045,0.708622395992279,-0.578429698944092,0.354062259197235,0.770267009735107,-0.530404210090637,0.399067968130112,0.713420510292053,-0.575999677181244,0.371785789728165,0.741241753101349,-0.558870136737823,0.375621914863586,0.722414612770081,-0.580538749694824,0.399067968130112,0.713420510292053,-0.575999677181244,0.421268969774246,0.683116972446442,-0.596559703350067,0.430246710777283,0.732872366905212,-0.527053773403168,0.375621914863586,0.722414612770081,-0.580538749694824,0.447105318307877,0.742194473743439,-0.499243468046188,0.437261492013931,0.695259034633636,-0.570453524589539,0.531440496444702,0.678525447845459,-0.507123231887817,0.447105318307877,0.742194473743439,-0.499243468046188,0.468974411487579,0.756544172763824,-0.455745279788971,0.599774241447449,0.77023309469223,-0.21682196855545,0.59544438123703,0.764640688896179,-0.246516600251198,0.572409212589264,0.772989511489868,-0.27355968952179,0.579628109931946,0.799601972103119,-0.157059669494629,0.599774241447449,0.77023309469223,-0.21682196855545,\r\n0.54765772819519,0.812749028205872,-0.198770895600319,0.579628109931946,0.799601972103119,-0.157059669494629,0.526549518108368,0.840138673782349,-0.130047932267189,0.546792805194855,0.83323860168457,-0.0820419639348984,0.468974411487579,0.756544172763824,-0.455745279788971,0.525380194187164,0.730344951152802,-0.436545252799988,0.531440496444702,0.678525447845459,-0.507123231887817,0.545640707015991,0.752583563327789,-0.368638068437576,0.542956411838531,0.67732572555542,-0.496415346860886,0.525380194187164,0.730344951152802,-0.436545252799988,0.572409212589264,0.772989511489868,-0.27355968952179,0.59544438123703,0.764640688896179,-0.246516600251198,0.574997842311859,0.766358137130737,-0.286482989788055,0.582184314727783,0.75523179769516,-0.3011414706707,0.545640707015991,0.752583563327789,-0.368638068437576,0.574997842311859,0.766358137130737,-0.286482989788055,0.021154185757041,0.784523785114288,-0.61973762512207,0.142257302999496,0.743106961250305,-0.653876662254334,0.0676006972789764,0.661778390407562,-0.746645390987396,0.02796570956707,0.693384885787964,-0.720024347305298,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.0191428549587727,0.657285034656525,-0.753398835659027,0.0676006972789764,0.661778390407562,-0.746645390987396,0.0739368423819542,0.602798640727997,-0.79446017742157,-0.0191428549587727,0.657285034656525,-0.753398835659027,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.136902183294296,0.746074318885803,-0.651637017726898,-0.0633920058608055,0.751759767532349,-0.656382918357849,0.02796570956707,0.693384885787964,-0.720024347305298,-0.0633920058608055,0.751759767532349,-0.656382918357849,-0.0886926203966141,0.683487296104431,-0.724554061889648,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.190848618745804,0.709043025970459,-0.678848028182983,-0.243878722190857,0.619836747646332,-0.745872259140015,-0.187949955463409,0.644588828086853,-0.741066753864288,-0.187949955463409,0.644588828086853,-0.741066753864288,\r\n-0.243878722190857,0.619836747646332,-0.745872259140015,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.0641427487134933,0.575211465358734,-0.815485954284668,-0.0588106364011765,0.634355902671814,-0.770800769329071,-0.210074469447136,0.578193247318268,-0.788391470909119,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.00404770625755191,0.606877982616425,-0.794784605503082,-0.0641427487134933,0.575211465358734,-0.815485954284668,0.021785294637084,0.799495697021484,0.600276589393616,0.01594203338027,0.756135642528534,0.654220581054688,-0.0146539704874158,0.715926289558411,0.698021948337555,0.117968305945396,0.809223473072052,0.575535118579865,0.021785294637084,0.799495697021484,0.600276589393616,0.114296369254589,0.773562490940094,0.623327553272247,0.12978108227253,0.830853641033173,0.541145980358124,0.117968305945396,0.809223473072052,0.575535118579865,0.23736660182476,0.78503543138504,0.572168171405792,0.391527682542801,0.825433075428009,0.406652361154556,0.293134748935699,0.865984261035919,0.405145853757858,0.308866918087006,0.803936541080475,0.508219540119171,0.308866918087006,0.803936541080475,0.508219540119171,0.23736660182476,0.78503543138504,0.572168171405792,0.41337862610817,0.708797156810761,0.57159823179245,0.393349409103394,0.877269744873047,0.275088876485825,0.310895413160324,0.888770639896393,0.336794644594193,0.391527682542801,0.825433075428009,0.406652361154556,0.391527682542801,0.825433075428009,0.406652361154556,0.310895413160324,0.888770639896393,0.336794644594193,0.293134748935699,0.865984261035919,0.405145853757858,0.388461589813232,0.900217473506927,0.196738630533218,0.393349409103394,0.877269744873047,0.275088876485825,0.443084269762039,0.868708968162537,0.221406683325768,0.443084269762039,0.868708968162537,0.221406683325768,0.382174581289291,0.902337610721588,0.199321508407593,0.413496732711792,0.899041593074799,0.144028902053833,0.41399934887886,0.901828646659851,0.123731650412083,0.413496732711792,0.899041593074799,0.144028902053833,0.382174581289291,0.902337610721588,0.199321508407593,\r\n0.143755674362183,0.957009315490723,-0.251927196979523,0.169740065932274,0.961753070354462,-0.214986652135849,0.162010014057159,0.970295548439026,-0.179664298892021,0.169740065932274,0.961753070354462,-0.214986652135849,0.193352088332176,0.971081852912903,-0.140053197741508,0.162010014057159,0.970295548439026,-0.179664298892021,0.309910953044891,0.941755056381226,-0.130585119128227,0.219225183129311,0.972016096115112,-0.0844090357422829,0.193352088332176,0.971081852912903,-0.140053197741508,0.217062219977379,0.618967473506927,-0.754826545715332,0.302150517702103,0.528000295162201,-0.793675363063812,0.234946221113205,0.526634216308594,-0.816980123519897,0.381892055273056,0.672660827636719,-0.633786797523499,0.217062219977379,0.618967473506927,-0.754826545715332,0.222300052642822,0.719380021095276,-0.658084273338318,0.381892055273056,0.672660827636719,-0.633786797523499,0.222300052642822,0.719380021095276,-0.658084273338318,0.311028599739075,0.759947299957275,-0.570737361907959,0.311028599739075,0.759947299957275,-0.570737361907959,0.152117788791656,0.781608164310455,-0.604936897754669,0.191010385751724,0.819460272789001,-0.540369987487793,0.191010385751724,0.819460272789001,-0.540369987487793,0.0757560655474663,0.818669259548187,-0.569246411323547,0.173202663660049,0.872265160083771,-0.457333922386169,0.179319515824318,0.919459819793701,-0.349911451339722,0.113188482820988,0.915011763572693,-0.387223064899445,0.148621767759323,0.945332229137421,-0.290273010730743,0.130088329315186,0.959737241268158,-0.248960673809052,0.143755674362183,0.957009315490723,-0.251927196979523,0.148621767759323,0.945332229137421,-0.290273010730743,0.179319515824318,0.919459819793701,-0.349911451339722,0.117552898824215,0.884101092815399,-0.452268123626709,0.113188482820988,0.915011763572693,-0.387223064899445,0.117552898824215,0.884101092815399,-0.452268123626709,0.173202663660049,0.872265160083771,-0.457333922386169,0.0757560655474663,0.818669259548187,-0.569246411323547,0.496904879808426,0.867409408092499,-0.0261996183544397,0.557869732379913,0.829904198646545,-0.00635257363319397,\r\n0.546792805194855,0.83323860168457,-0.0820419639348984,0.496904879808426,0.867409408092499,-0.0261996183544397,0.509147584438324,0.860108911991119,0.03132488951087,0.557869732379913,0.829904198646545,-0.00635257363319397,0.509147584438324,0.860108911991119,0.03132488951087,0.469757735729218,0.880091071128845,0.0690457299351692,0.539727210998535,0.83778840303421,0.0824924036860466,0.467704206705093,0.868886172771454,0.162140235304832,0.469757735729218,0.880091071128845,0.0690457299351692,0.41399934887886,0.901828646659851,0.123731650412083,0.229081884026527,0.722513198852539,-0.652300536632538,0.142257302999496,0.743106961250305,-0.653876662254334,0.233830511569977,0.795603334903717,-0.558872580528259,0.229081884026527,0.722513198852539,-0.652300536632538,0.305609524250031,0.714789092540741,-0.629030406475067,0.217460244894028,0.664725065231323,-0.714738726615906,0.404070764780045,0.708622395992279,-0.578429698944092,0.345322072505951,0.65240466594696,-0.674626290798187,0.305609524250031,0.714789092540741,-0.629030406475067,0.430246710777283,0.732872366905212,-0.527053773403168,0.421268969774246,0.683116972446442,-0.596559703350067,0.404070764780045,0.708622395992279,-0.578429698944092,0.399067968130112,0.713420510292053,-0.575999677181244,0.375621914863586,0.722414612770081,-0.580538749694824,0.384179383516312,0.692308306694031,-0.610831618309021,0.384179383516312,0.692308306694031,-0.610831618309021,0.421268969774246,0.683116972446442,-0.596559703350067,0.399067968130112,0.713420510292053,-0.575999677181244,0.447105318307877,0.742194473743439,-0.499243468046188,0.531440496444702,0.678525447845459,-0.507123231887817,0.437261492013931,0.695259034633636,-0.570453524589539,0.384179383516312,0.692308306694031,-0.610831618309021,0.375621914863586,0.722414612770081,-0.580538749694824,0.437261492013931,0.695259034633636,-0.570453524589539,0.595508277416229,0.778462052345276,-0.198410391807556,0.59544438123703,0.764640688896179,-0.246516600251198,0.599774241447449,0.77023309469223,-0.21682196855545,0.595508277416229,0.778462052345276,-0.198410391807556,\r\n0.599774241447449,0.77023309469223,-0.21682196855545,0.579628109931946,0.799601972103119,-0.157059669494629,0.579628109931946,0.799601972103119,-0.157059669494629,0.546792805194855,0.83323860168457,-0.0820419639348984,0.58712100982666,0.804862856864929,-0.0865134447813034,0.525380194187164,0.730344951152802,-0.436545252799988,0.542956411838531,0.67732572555542,-0.496415346860886,0.531440496444702,0.678525447845459,-0.507123231887817,0.542531728744507,0.693063914775848,-0.474680483341217,0.542956411838531,0.67732572555542,-0.496415346860886,0.545640707015991,0.752583563327789,-0.368638068437576,0.59544438123703,0.764640688896179,-0.246516600251198,0.590087473392487,0.767451882362366,-0.25062769651413,0.574997842311859,0.766358137130737,-0.286482989788055,0.602725684642792,0.705246865749359,-0.373294085264206,0.545640707015991,0.752583563327789,-0.368638068437576,0.582184314727783,0.75523179769516,-0.3011414706707,0.582184314727783,0.75523179769516,-0.3011414706707,0.574997842311859,0.766358137130737,-0.286482989788055,0.590087473392487,0.767451882362366,-0.25062769651413,0.217460244894028,0.664725065231323,-0.714738726615906,0.0676006972789764,0.661778390407562,-0.746645390987396,0.142257302999496,0.743106961250305,-0.653876662254334,0.0739368423819542,0.602798640727997,-0.79446017742157,0.02796570956707,0.693384885787964,-0.720024347305298,-0.0191428549587727,0.657285034656525,-0.753398835659027,0.0739368423819542,0.602798640727997,-0.79446017742157,0.0676006972789764,0.661778390407562,-0.746645390987396,0.124131344258785,0.573140799999237,-0.810000538825989,-0.0139267425984144,0.731887876987457,-0.681282579898834,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.0633920058608055,0.751759767532349,-0.656382918357849,-0.0633920058608055,0.751759767532349,-0.656382918357849,0.02796570956707,0.693384885787964,-0.720024347305298,-0.0139267425984144,0.731887876987457,-0.681282579898834,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.0171319171786308,0.648746371269226,-0.760811805725098,-0.165732532739639,0.643827378749847,-0.747006595134735,\r\n-0.190848618745804,0.709043025970459,-0.678848028182983,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.243878722190857,0.619836747646332,-0.745872259140015,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.243878722190857,0.619836747646332,-0.745872259140015,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.0641427487134933,0.575211465358734,-0.815485954284668,-0.210074469447136,0.578193247318268,-0.788391470909119,0.00432480406016111,0.57669985294342,-0.816944539546967,-0.0641427487134933,0.575211465358734,-0.815485954284668,-0.0663641169667244,0.619469821453094,-0.782210230827332,0.0170269832015038,0.698514223098755,0.715393483638763,0.021785294637084,0.799495697021484,0.600276589393616,-0.0146539704874158,0.715926289558411,0.698021948337555,0.0170269832015038,0.698514223098755,0.715393483638763,0.114296369254589,0.773562490940094,0.623327553272247,0.021785294637084,0.799495697021484,0.600276589393616,0.19957023859024,0.761249423027039,0.616985321044922,0.117968305945396,0.809223473072052,0.575535118579865,0.114296369254589,0.773562490940094,0.623327553272247,0.19957023859024,0.761249423027039,0.616985321044922,0.23736660182476,0.78503543138504,0.572168171405792,0.117968305945396,0.809223473072052,0.575535118579865,0.391527682542801,0.825433075428009,0.406652361154556,0.308866918087006,0.803936541080475,0.508219540119171,0.467697411775589,0.740078389644623,0.483262836933136,0.297709405422211,0.713980793952942,0.633719563484192,0.41337862610817,0.708797156810761,0.57159823179245,0.23736660182476,0.78503543138504,0.572168171405792,0.41337862610817,0.708797156810761,0.57159823179245,0.467697411775589,0.740078389644623,0.483262836933136,0.308866918087006,0.803936541080475,0.508219540119171,0.393349409103394,0.877269744873047,0.275088876485825,0.391527682542801,0.825433075428009,0.406652361154556,0.472318738698959,0.808556795120239,0.350928276777267,0.443084269762039,0.868708968162537,0.221406683325768,0.393349409103394,0.877269744873047,0.275088876485825,\r\n0.461672753095627,0.841235399246216,0.28139141201973,0.443084269762039,0.868708968162537,0.221406683325768,0.368303179740906,0.894634366035461,0.252946645021439,0.382174581289291,0.902337610721588,0.199321508407593,0.467704206705093,0.868886172771454,0.162140235304832,0.41399934887886,0.901828646659851,0.123731650412083,0.382174581289291,0.902337610721588,0.199321508407593,0.130088329315186,0.959737241268158,-0.248960673809052,0.169740065932274,0.961753070354462,-0.214986652135849,0.143755674362183,0.957009315490723,-0.251927196979523,0.169740065932274,0.961753070354462,-0.214986652135849,0.237725421786308,0.951165378093719,-0.196903303265572,0.193352088332176,0.971081852912903,-0.140053197741508,0.193352088332176,0.971081852912903,-0.140053197741508,0.327274292707443,0.925832211971283,-0.18901301920414,0.309910953044891,0.941755056381226,-0.130585119128227,0.217062219977379,0.618967473506927,-0.754826545715332,0.234946221113205,0.526634216308594,-0.816980123519897,0.12888665497303,0.583809554576874,-0.801595032215118,0.101420320570469,0.71797239780426,-0.688643157482147,0.222300052642822,0.719380021095276,-0.658084273338318,0.217062219977379,0.618967473506927,-0.754826545715332,0.311028599739075,0.759947299957275,-0.570737361907959,0.222300052642822,0.719380021095276,-0.658084273338318,0.152117788791656,0.781608164310455,-0.604936897754669,0.191010385751724,0.819460272789001,-0.540369987487793,0.152117788791656,0.781608164310455,-0.604936897754669,0.0832928642630577,0.765946269035339,-0.637486040592194,0.191010385751724,0.819460272789001,-0.540369987487793,0.0832928642630577,0.765946269035339,-0.637486040592194,0.0757560655474663,0.818669259548187,-0.569246411323547,0.0660068467259407,0.935367286205292,-0.347463607788086,0.148621767759323,0.945332229137421,-0.290273010730743,0.113188482820988,0.915011763572693,-0.387223064899445,0.130088329315186,0.959737241268158,-0.248960673809052,0.148621767759323,0.945332229137421,-0.290273010730743,0.0660068467259407,0.935367286205292,-0.347463607788086,0.117552898824215,0.884101092815399,-0.452268123626709,\r\n0.0221755113452673,0.87104719877243,-0.490698456764221,0.113188482820988,0.915011763572693,-0.387223064899445,0.117552898824215,0.884101092815399,-0.452268123626709,0.0757560655474663,0.818669259548187,-0.569246411323547,0.0221755113452673,0.87104719877243,-0.490698456764221,0.546792805194855,0.83323860168457,-0.0820419639348984,0.557869732379913,0.829904198646545,-0.00635257363319397,0.596542179584503,0.802179872989655,-0.0253943391144276,0.509147584438324,0.860108911991119,0.03132488951087,0.560051023960114,0.827217221260071,0.045326940715313,0.557869732379913,0.829904198646545,-0.00635257363319397,0.467704206705093,0.868886172771454,0.162140235304832,0.539727210998535,0.83778840303421,0.0824924036860466,0.469757735729218,0.880091071128845,0.0690457299351692,0.509147584438324,0.860108911991119,0.03132488951087,0.539727210998535,0.83778840303421,0.0824924036860466,0.560051023960114,0.827217221260071,0.045326940715313,0.142257302999496,0.743106961250305,-0.653876662254334,0.229081884026527,0.722513198852539,-0.652300536632538,0.217460244894028,0.664725065231323,-0.714738726615906,0.217460244894028,0.664725065231323,-0.714738726615906,0.305609524250031,0.714789092540741,-0.629030406475067,0.345322072505951,0.65240466594696,-0.674626290798187,0.38496920466423,0.669518291950226,-0.635250985622406,0.345322072505951,0.65240466594696,-0.674626290798187,0.404070764780045,0.708622395992279,-0.578429698944092,0.38496920466423,0.669518291950226,-0.635250985622406,0.404070764780045,0.708622395992279,-0.578429698944092,0.421268969774246,0.683116972446442,-0.596559703350067,0.384179383516312,0.692308306694031,-0.610831618309021,0.376591086387634,0.623721301555634,-0.68494576215744,0.421268969774246,0.683116972446442,-0.596559703350067,0.531440496444702,0.678525447845459,-0.507123231887817,0.547009944915771,0.634893953800201,-0.545609354972839,0.437261492013931,0.695259034633636,-0.570453524589539,0.437261492013931,0.695259034633636,-0.570453524589539,0.42381227016449,0.612748205661774,-0.667025208473206,0.384179383516312,0.692308306694031,-0.610831618309021,\r\n0.598540306091309,0.772003591060638,-0.213915705680847,0.59544438123703,0.764640688896179,-0.246516600251198,0.595508277416229,0.778462052345276,-0.198410391807556,0.595508277416229,0.778462052345276,-0.198410391807556,0.579628109931946,0.799601972103119,-0.157059669494629,0.625258803367615,0.770383179187775,-0.1247438788414,0.596542179584503,0.802179872989655,-0.0253943391144276,0.58712100982666,0.804862856864929,-0.0865134447813034,0.546792805194855,0.83323860168457,-0.0820419639348984,0.625258803367615,0.770383179187775,-0.1247438788414,0.579628109931946,0.799601972103119,-0.157059669494629,0.58712100982666,0.804862856864929,-0.0865134447813034,0.531440496444702,0.678525447845459,-0.507123231887817,0.542956411838531,0.67732572555542,-0.496415346860886,0.56039959192276,0.614671647548676,-0.555095374584198,0.542956411838531,0.67732572555542,-0.496415346860886,0.542531728744507,0.693063914775848,-0.474680483341217,0.502909004688263,0.659445405006409,-0.558761179447174,0.602725684642792,0.705246865749359,-0.373294085264206,0.542531728744507,0.693063914775848,-0.474680483341217,0.545640707015991,0.752583563327789,-0.368638068437576,0.598540306091309,0.772003591060638,-0.213915705680847,0.590087473392487,0.767451882362366,-0.25062769651413,0.59544438123703,0.764640688896179,-0.246516600251198,0.582184314727783,0.75523179769516,-0.3011414706707,0.63558954000473,0.721290409564972,-0.275256127119064,0.602725684642792,0.705246865749359,-0.373294085264206,0.582184314727783,0.75523179769516,-0.3011414706707,0.590087473392487,0.767451882362366,-0.25062769651413,0.63558954000473,0.721290409564972,-0.275256127119064,0.217460244894028,0.664725065231323,-0.714738726615906,0.124131344258785,0.573140799999237,-0.810000538825989,0.0676006972789764,0.661778390407562,-0.746645390987396,0.140238776803017,0.664030134677887,-0.734436452388763,0.02796570956707,0.693384885787964,-0.720024347305298,0.0739368423819542,0.602798640727997,-0.79446017742157,0.148026049137115,0.509942829608917,-0.847376227378845,0.0739368423819542,0.602798640727997,-0.79446017742157,\r\n0.124131344258785,0.573140799999237,-0.810000538825989,-0.11223516613245,0.734442830085754,-0.669325649738312,-0.0139267425984144,0.731887876987457,-0.681282579898834,-0.0171319171786308,0.648746371269226,-0.760811805725098,0.113754495978355,0.658092856407166,-0.744294047355652,-0.0139267425984144,0.731887876987457,-0.681282579898834,0.02796570956707,0.693384885787964,-0.720024347305298,-0.025267718359828,0.580024719238281,-0.814206838607788,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.0171319171786308,0.648746371269226,-0.760811805725098,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.243878722190857,0.619836747646332,-0.745872259140015,-0.254110455513,0.491997241973877,-0.832686305046082,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.0663641169667244,0.619469821453094,-0.782210230827332,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.0769268795847893,0.613376796245575,-0.786035001277924,0.0170269832015038,0.698514223098755,0.715393483638763,0.181601673364639,0.712734460830688,0.677517712116241,0.114296369254589,0.773562490940094,0.623327553272247,0.19957023859024,0.761249423027039,0.616985321044922,0.114296369254589,0.773562490940094,0.623327553272247,0.181601673364639,0.712734460830688,0.677517712116241,0.297709405422211,0.713980793952942,0.633719563484192,0.23736660182476,0.78503543138504,0.572168171405792,0.19957023859024,0.761249423027039,0.616985321044922,0.391527682542801,0.825433075428009,0.406652361154556,0.467697411775589,0.740078389644623,0.483262836933136,0.472318738698959,0.808556795120239,0.350928276777267,0.297709405422211,0.713980793952942,0.633719563484192,0.427166730165482,0.660813987255096,0.617133140563965,0.41337862610817,0.708797156810761,0.57159823179245,0.41337862610817,0.708797156810761,0.57159823179245,0.43846470117569,0.708521902561188,0.552942395210266,0.467697411775589,0.740078389644623,0.483262836933136,0.461672753095627,0.841235399246216,0.28139141201973,\r\n0.393349409103394,0.877269744873047,0.275088876485825,0.472318738698959,0.808556795120239,0.350928276777267,0.443084269762039,0.868708968162537,0.221406683325768,0.461672753095627,0.841235399246216,0.28139141201973,0.368303179740906,0.894634366035461,0.252946645021439,0.368303179740906,0.894634366035461,0.252946645021439,0.350773453712463,0.897852718830109,0.266117215156555,0.382174581289291,0.902337610721588,0.199321508407593,0.467704206705093,0.868886172771454,0.162140235304832,0.382174581289291,0.902337610721588,0.199321508407593,0.350773453712463,0.897852718830109,0.266117215156555,0.1285540163517,0.949606239795685,-0.285869777202606,0.169740065932274,0.961753070354462,-0.214986652135849,0.130088329315186,0.959737241268158,-0.248960673809052,0.237725421786308,0.951165378093719,-0.196903303265572,0.169740065932274,0.961753070354462,-0.214986652135849,0.376353442668915,0.88643616437912,-0.269423395395279,0.327274292707443,0.925832211971283,-0.18901301920414,0.193352088332176,0.971081852912903,-0.140053197741508,0.237725421786308,0.951165378093719,-0.196903303265572,0.327274292707443,0.925832211971283,-0.18901301920414,0.527967870235443,0.832068860530853,-0.170032829046249,0.309910953044891,0.941755056381226,-0.130585119128227,0.217062219977379,0.618967473506927,-0.754826545715332,0.12888665497303,0.583809554576874,-0.801595032215118,0.0531513653695583,0.662648737430573,-0.747041702270508,0.101420320570469,0.71797239780426,-0.688643157482147,0.152117788791656,0.781608164310455,-0.604936897754669,0.222300052642822,0.719380021095276,-0.658084273338318,0.0531513653695583,0.662648737430573,-0.747041702270508,0.101420320570469,0.71797239780426,-0.688643157482147,0.217062219977379,0.618967473506927,-0.754826545715332,0.101420320570469,0.71797239780426,-0.688643157482147,0.0832928642630577,0.765946269035339,-0.637486040592194,0.152117788791656,0.781608164310455,-0.604936897754669,0.0832928642630577,0.765946269035339,-0.637486040592194,-0.00821030512452126,0.745677471160889,-0.666256368160248,0.0757560655474663,0.818669259548187,-0.569246411323547,\r\n0.0278516951948404,0.90336674451828,-0.427963435649872,0.0660068467259407,0.935367286205292,-0.347463607788086,0.113188482820988,0.915011763572693,-0.387223064899445,0.1285540163517,0.949606239795685,-0.285869777202606,0.130088329315186,0.959737241268158,-0.248960673809052,0.0660068467259407,0.935367286205292,-0.347463607788086,0.0278516951948404,0.90336674451828,-0.427963435649872,0.113188482820988,0.915011763572693,-0.387223064899445,0.0221755113452673,0.87104719877243,-0.490698456764221,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.0221755113452673,0.87104719877243,-0.490698456764221,0.0757560655474663,0.818669259548187,-0.569246411323547,0.596542179584503,0.802179872989655,-0.0253943391144276,0.557869732379913,0.829904198646545,-0.00635257363319397,0.607103824615479,0.794148027896881,0.0274527966976166,0.607103824615479,0.794148027896881,0.0274527966976166,0.557869732379913,0.829904198646545,-0.00635257363319397,0.560051023960114,0.827217221260071,0.045326940715313,0.587581694126129,0.796381592750549,0.143261775374413,0.539727210998535,0.83778840303421,0.0824924036860466,0.467704206705093,0.868886172771454,0.162140235304832,0.539727210998535,0.83778840303421,0.0824924036860466,0.604619264602661,0.792817056179047,0.0766584575176239,0.560051023960114,0.827217221260071,0.045326940715313,0.217460244894028,0.664725065231323,-0.714738726615906,0.345322072505951,0.65240466594696,-0.674626290798187,0.255588740110397,0.596286833286285,-0.760996878147125,0.38496920466423,0.669518291950226,-0.635250985622406,0.37721836566925,0.622297763824463,-0.685894787311554,0.345322072505951,0.65240466594696,-0.674626290798187,0.38496920466423,0.669518291950226,-0.635250985622406,0.421268969774246,0.683116972446442,-0.596559703350067,0.37721836566925,0.622297763824463,-0.685894787311554,0.42381227016449,0.612748205661774,-0.667025208473206,0.376591086387634,0.623721301555634,-0.68494576215744,0.384179383516312,0.692308306694031,-0.610831618309021,0.376591086387634,0.623721301555634,-0.68494576215744,0.37721836566925,0.622297763824463,-0.685894787311554,\r\n0.421268969774246,0.683116972446442,-0.596559703350067,0.531440496444702,0.678525447845459,-0.507123231887817,0.609678328037262,0.584020495414734,-0.535921812057495,0.547009944915771,0.634893953800201,-0.545609354972839,0.475273311138153,0.638861000537872,-0.604955971240997,0.437261492013931,0.695259034633636,-0.570453524589539,0.547009944915771,0.634893953800201,-0.545609354972839,0.42381227016449,0.612748205661774,-0.667025208473206,0.437261492013931,0.695259034633636,-0.570453524589539,0.475273311138153,0.638861000537872,-0.604955971240997,0.598540306091309,0.772003591060638,-0.213915705680847,0.595508277416229,0.778462052345276,-0.198410391807556,0.606863141059875,0.775366544723511,-0.174710169434547,0.606863141059875,0.775366544723511,-0.174710169434547,0.595508277416229,0.778462052345276,-0.198410391807556,0.625258803367615,0.770383179187775,-0.1247438788414,0.596542179584503,0.802179872989655,-0.0253943391144276,0.640422284603119,0.767756879329681,-0.0202082116156816,0.58712100982666,0.804862856864929,-0.0865134447813034,0.625258803367615,0.770383179187775,-0.1247438788414,0.58712100982666,0.804862856864929,-0.0865134447813034,0.635759890079498,0.769273936748505,-0.0634583458304405,0.542956411838531,0.67732572555542,-0.496415346860886,0.502909004688263,0.659445405006409,-0.558761179447174,0.56039959192276,0.614671647548676,-0.555095374584198,0.56039959192276,0.614671647548676,-0.555095374584198,0.609678328037262,0.584020495414734,-0.535921812057495,0.531440496444702,0.678525447845459,-0.507123231887817,0.597854733467102,0.651188552379608,-0.467464596033096,0.502909004688263,0.659445405006409,-0.558761179447174,0.542531728744507,0.693063914775848,-0.474680483341217,0.597854733467102,0.651188552379608,-0.467464596033096,0.542531728744507,0.693063914775848,-0.474680483341217,0.602725684642792,0.705246865749359,-0.373294085264206,0.590087473392487,0.767451882362366,-0.25062769651413,0.598540306091309,0.772003591060638,-0.213915705680847,0.632681787014008,0.749516904354095,-0.194776922464371,0.602725684642792,0.705246865749359,-0.373294085264206,\r\n0.63558954000473,0.721290409564972,-0.275256127119064,0.663272857666016,0.664029121398926,-0.345158308744431,0.63558954000473,0.721290409564972,-0.275256127119064,0.590087473392487,0.767451882362366,-0.25062769651413,0.632681787014008,0.749516904354095,-0.194776922464371,0.217460244894028,0.664725065231323,-0.714738726615906,0.255588740110397,0.596286833286285,-0.760996878147125,0.124131344258785,0.573140799999237,-0.810000538825989,0.02796570956707,0.693384885787964,-0.720024347305298,0.140238776803017,0.664030134677887,-0.734436452388763,0.113754495978355,0.658092856407166,-0.744294047355652,0.204206466674805,0.578807234764099,-0.789481937885284,0.140238776803017,0.664030134677887,-0.734436452388763,0.0739368423819542,0.602798640727997,-0.79446017742157,0.148026049137115,0.509942829608917,-0.847376227378845,0.204206466674805,0.578807234764099,-0.789481937885284,0.0739368423819542,0.602798640727997,-0.79446017742157,0.203891515731812,0.477429628372192,-0.854686558246613,0.148026049137115,0.509942829608917,-0.847376227378845,0.124131344258785,0.573140799999237,-0.810000538825989,0.113754495978355,0.658092856407166,-0.744294047355652,-0.0171319171786308,0.648746371269226,-0.760811805725098,-0.0139267425984144,0.731887876987457,-0.681282579898834,-0.154075801372528,0.581195652484894,-0.799044489860535,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.025267718359828,0.580024719238281,-0.814206838607788,-0.0171319171786308,0.648746371269226,-0.760811805725098,0.109004020690918,0.560304164886475,-0.821082949638367,-0.025267718359828,0.580024719238281,-0.814206838607788,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.165732532739639,0.643827378749847,-0.747006595134735,-0.154075801372528,0.581195652484894,-0.799044489860535,-0.0769268795847893,0.613376796245575,-0.786035001277924,-0.210074469447136,0.578193247318268,-0.788391470909119,-0.254110455513,0.491997241973877,-0.832686305046082,-0.254110455513,0.491997241973877,-0.832686305046082,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.159213542938232,0.440611034631729,-0.883466362953186,\r\n0.0170269832015038,0.698514223098755,0.715393483638763,0.155846759676933,0.611560523509979,0.775696754455566,0.181601673364639,0.712734460830688,0.677517712116241,0.181601673364639,0.712734460830688,0.677517712116241,0.297709405422211,0.713980793952942,0.633719563484192,0.19957023859024,0.761249423027039,0.616985321044922,0.467697411775589,0.740078389644623,0.483262836933136,0.464107424020767,0.799785852432251,0.38071870803833,0.472318738698959,0.808556795120239,0.350928276777267,0.299844741821289,0.661935329437256,0.686975002288818,0.427166730165482,0.660813987255096,0.617133140563965,0.297709405422211,0.713980793952942,0.633719563484192,0.427166730165482,0.660813987255096,0.617133140563965,0.43846470117569,0.708521902561188,0.552942395210266,0.41337862610817,0.708797156810761,0.57159823179245,0.467697411775589,0.740078389644623,0.483262836933136,0.43846470117569,0.708521902561188,0.552942395210266,0.43406555056572,0.766148030757904,0.473924189805985,0.472318738698959,0.808556795120239,0.350928276777267,0.464107424020767,0.799785852432251,0.38071870803833,0.461672753095627,0.841235399246216,0.28139141201973,0.34799912571907,0.884010076522827,0.312125980854034,0.368303179740906,0.894634366035461,0.252946645021439,0.461672753095627,0.841235399246216,0.28139141201973,0.350773453712463,0.897852718830109,0.266117215156555,0.368303179740906,0.894634366035461,0.252946645021439,0.34799912571907,0.884010076522827,0.312125980854034,0.467704206705093,0.868886172771454,0.162140235304832,0.350773453712463,0.897852718830109,0.266117215156555,0.494069904088974,0.820174992084503,0.288457751274109,0.169740065932274,0.961753070354462,-0.214986652135849,0.1285540163517,0.949606239795685,-0.285869777202606,0.339611709117889,0.887080013751984,-0.312654495239258,0.339611709117889,0.887080013751984,-0.312654495239258,0.376353442668915,0.88643616437912,-0.269423395395279,0.169740065932274,0.961753070354462,-0.214986652135849,0.327274292707443,0.925832211971283,-0.18901301920414,0.237725421786308,0.951165378093719,-0.196903303265572,0.376353442668915,0.88643616437912,-0.269423395395279,\r\n0.327274292707443,0.925832211971283,-0.18901301920414,0.599665999412537,0.764751136302948,-0.235703930258751,0.527967870235443,0.832068860530853,-0.170032829046249,0.0531513653695583,0.662648737430573,-0.747041702270508,0.12888665497303,0.583809554576874,-0.801595032215118,0.0357764810323715,0.597838580608368,-0.800817728042603,0.0531513653695583,0.662648737430573,-0.747041702270508,0.0329776145517826,0.7135169506073,-0.699861288070679,0.101420320570469,0.71797239780426,-0.688643157482147,0.101420320570469,0.71797239780426,-0.688643157482147,0.0329776145517826,0.7135169506073,-0.699861288070679,0.0832928642630577,0.765946269035339,-0.637486040592194,0.0832928642630577,0.765946269035339,-0.637486040592194,0.0329776145517826,0.7135169506073,-0.699861288070679,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.0757560655474663,0.818669259548187,-0.569246411323547,-0.0607272498309612,0.867501080036163,-0.493714451789856,0.0660068467259407,0.935367286205292,-0.347463607788086,0.0278516951948404,0.90336674451828,-0.427963435649872,0.0135788647457957,0.90843665599823,-0.417801797389984,0.1285540163517,0.949606239795685,-0.285869777202606,0.0660068467259407,0.935367286205292,-0.347463607788086,-0.0607272498309612,0.867501080036163,-0.493714451789856,0.0278516951948404,0.90336674451828,-0.427963435649872,0.0221755113452673,0.87104719877243,-0.490698456764221,-0.0607272498309612,0.867501080036163,-0.493714451789856,0.0221755113452673,0.87104719877243,-0.490698456764221,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.607103824615479,0.794148027896881,0.0274527966976166,0.649188637733459,0.760164022445679,0.0265439506620169,0.596542179584503,0.802179872989655,-0.0253943391144276,0.604619264602661,0.792817056179047,0.0766584575176239,0.607103824615479,0.794148027896881,0.0274527966976166,0.560051023960114,0.827217221260071,0.045326940715313,0.587581694126129,0.796381592750549,0.143261775374413,0.604619264602661,0.792817056179047,0.0766584575176239,\r\n0.539727210998535,0.83778840303421,0.0824924036860466,0.587581694126129,0.796381592750549,0.143261775374413,0.467704206705093,0.868886172771454,0.162140235304832,0.569632351398468,0.789882481098175,0.227165892720222,0.255588740110397,0.596286833286285,-0.760996878147125,0.345322072505951,0.65240466594696,-0.674626290798187,0.363234966993332,0.583292365074158,-0.726519167423248,0.37721836566925,0.622297763824463,-0.685894787311554,0.363234966993332,0.583292365074158,-0.726519167423248,0.345322072505951,0.65240466594696,-0.674626290798187,0.42381227016449,0.612748205661774,-0.667025208473206,0.363482922315598,0.548919916152954,-0.752706468105316,0.376591086387634,0.623721301555634,-0.68494576215744,0.376591086387634,0.623721301555634,-0.68494576215744,0.357775717973709,0.563949704170227,-0.744282960891724,0.37721836566925,0.622297763824463,-0.685894787311554,0.579318463802338,0.5454421043396,-0.605708539485931,0.547009944915771,0.634893953800201,-0.545609354972839,0.609678328037262,0.584020495414734,-0.535921812057495,0.579318463802338,0.5454421043396,-0.605708539485931,0.475273311138153,0.638861000537872,-0.604955971240997,0.547009944915771,0.634893953800201,-0.545609354972839,0.42381227016449,0.612748205661774,-0.667025208473206,0.475273311138153,0.638861000537872,-0.604955971240997,0.579318463802338,0.5454421043396,-0.605708539485931,0.639513432979584,0.754194557666779,-0.149040132761002,0.598540306091309,0.772003591060638,-0.213915705680847,0.606863141059875,0.775366544723511,-0.174710169434547,0.606863141059875,0.775366544723511,-0.174710169434547,0.625258803367615,0.770383179187775,-0.1247438788414,0.639513432979584,0.754194557666779,-0.149040132761002,0.640422284603119,0.767756879329681,-0.0202082116156816,0.596542179584503,0.802179872989655,-0.0253943391144276,0.649188637733459,0.760164022445679,0.0265439506620169,0.635759890079498,0.769273936748505,-0.0634583458304405,0.58712100982666,0.804862856864929,-0.0865134447813034,0.640422284603119,0.767756879329681,-0.0202082116156816,0.625258803367615,0.770383179187775,-0.1247438788414,\r\n0.635759890079498,0.769273936748505,-0.0634583458304405,0.671649038791656,0.739656984806061,-0.0423688143491745,0.483150452375412,0.628134787082672,-0.609928011894226,0.56039959192276,0.614671647548676,-0.555095374584198,0.502909004688263,0.659445405006409,-0.558761179447174,0.56039959192276,0.614671647548676,-0.555095374584198,0.578345835208893,0.571208536624908,-0.582440316677094,0.609678328037262,0.584020495414734,-0.535921812057495,0.545722961425781,0.638712048530579,-0.542432606220245,0.502909004688263,0.659445405006409,-0.558761179447174,0.597854733467102,0.651188552379608,-0.467464596033096,0.653922617435455,0.65284252166748,-0.382337093353271,0.597854733467102,0.651188552379608,-0.467464596033096,0.602725684642792,0.705246865749359,-0.373294085264206,0.598540306091309,0.772003591060638,-0.213915705680847,0.639513432979584,0.754194557666779,-0.149040132761002,0.632681787014008,0.749516904354095,-0.194776922464371,0.663272857666016,0.664029121398926,-0.345158308744431,0.63558954000473,0.721290409564972,-0.275256127119064,0.710686266422272,0.636809229850769,-0.298996388912201,0.602725684642792,0.705246865749359,-0.373294085264206,0.663272857666016,0.664029121398926,-0.345158308744431,0.653922617435455,0.65284252166748,-0.382337093353271,0.632681787014008,0.749516904354095,-0.194776922464371,0.691882073879242,0.697319746017456,-0.187200918793678,0.63558954000473,0.721290409564972,-0.275256127119064,0.203891515731812,0.477429628372192,-0.854686558246613,0.124131344258785,0.573140799999237,-0.810000538825989,0.255588740110397,0.596286833286285,-0.760996878147125,0.113754495978355,0.658092856407166,-0.744294047355652,0.140238776803017,0.664030134677887,-0.734436452388763,0.204206466674805,0.578807234764099,-0.789481937885284,0.286823898553848,0.500086545944214,-0.817095696926117,0.204206466674805,0.578807234764099,-0.789481937885284,0.148026049137115,0.509942829608917,-0.847376227378845,0.203891515731812,0.477429628372192,-0.854686558246613,0.20811066031456,0.4271419942379,-0.879908800125122,0.148026049137115,0.509942829608917,-0.847376227378845,\r\n-0.0171319171786308,0.648746371269226,-0.760811805725098,0.113754495978355,0.658092856407166,-0.744294047355652,0.109004020690918,0.560304164886475,-0.821082949638367,-0.025267718359828,0.580024719238281,-0.814206838607788,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.154075801372528,0.581195652484894,-0.799044489860535,0.0790472775697708,0.472518384456635,-0.877768635749817,-0.025267718359828,0.580024719238281,-0.814206838607788,0.109004020690918,0.560304164886475,-0.821082949638367,-0.154075801372528,0.581195652484894,-0.799044489860535,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.258984386920929,0.525762438774109,-0.810247361660004,-0.254110455513,0.491997241973877,-0.832686305046082,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.0769268795847893,0.613376796245575,-0.786035001277924,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.258984386920929,0.525762438774109,-0.810247361660004,0.255183100700378,0.634043991565704,0.72997921705246,0.181601673364639,0.712734460830688,0.677517712116241,0.155846759676933,0.611560523509979,0.775696754455566,0.297709405422211,0.713980793952942,0.633719563484192,0.181601673364639,0.712734460830688,0.677517712116241,0.299844741821289,0.661935329437256,0.686975002288818,0.467697411775589,0.740078389644623,0.483262836933136,0.43406555056572,0.766148030757904,0.473924189805985,0.464107424020767,0.799785852432251,0.38071870803833,0.391663253307343,0.62276953458786,0.677316606044769,0.427166730165482,0.660813987255096,0.617133140563965,0.299844741821289,0.661935329437256,0.686975002288818,0.402971416711807,0.693648934364319,0.597046911716461,0.43846470117569,0.708521902561188,0.552942395210266,0.427166730165482,0.660813987255096,0.617133140563965,0.43406555056572,0.766148030757904,0.473924189805985,0.43846470117569,0.708521902561188,0.552942395210266,0.3150694668293,0.820490777492523,0.476996839046478,0.34799912571907,0.884010076522827,0.312125980854034,0.461672753095627,0.841235399246216,0.28139141201973,\r\n0.464107424020767,0.799785852432251,0.38071870803833,0.350773453712463,0.897852718830109,0.266117215156555,0.34799912571907,0.884010076522827,0.312125980854034,0.295371919870377,0.894240081310272,0.336288541555405,0.350773453712463,0.897852718830109,0.266117215156555,0.375115215778351,0.855243325233459,0.357557356357574,0.494069904088974,0.820174992084503,0.288457751274109,0.569632351398468,0.789882481098175,0.227165892720222,0.467704206705093,0.868886172771454,0.162140235304832,0.494069904088974,0.820174992084503,0.288457751274109,0.297379553318024,0.898393452167511,-0.323194295167923,0.339611709117889,0.887080013751984,-0.312654495239258,0.1285540163517,0.949606239795685,-0.285869777202606,0.376353442668915,0.88643616437912,-0.269423395395279,0.339611709117889,0.887080013751984,-0.312654495239258,0.559940874576569,0.745092153549194,-0.362358748912811,0.327274292707443,0.925832211971283,-0.18901301920414,0.376353442668915,0.88643616437912,-0.269423395395279,0.599665999412537,0.764751136302948,-0.235703930258751,0.527967870235443,0.832068860530853,-0.170032829046249,0.599665999412537,0.764751136302948,-0.235703930258751,0.724258780479431,0.663338959217072,-0.188229858875275,-0.0272068604826927,0.6524778008461,-0.757319271564484,0.0531513653695583,0.662648737430573,-0.747041702270508,0.0357764810323715,0.597838580608368,-0.800817728042603,-0.0318699106574059,0.692280411720276,-0.720924317836761,0.0329776145517826,0.7135169506073,-0.699861288070679,0.0531513653695583,0.662648737430573,-0.747041702270508,0.0329776145517826,0.7135169506073,-0.699861288070679,-0.0318699106574059,0.692280411720276,-0.720924317836761,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.0135788647457957,0.90843665599823,-0.417801797389984,0.0660068467259407,0.935367286205292,-0.347463607788086,-0.0607272498309612,0.867501080036163,-0.493714451789856,0.0135788647457957,0.90843665599823,-0.417801797389984,\r\n0.130781665444374,0.925255477428436,-0.356087237596512,0.1285540163517,0.949606239795685,-0.285869777202606,-0.0607272498309612,0.867501080036163,-0.493714451789856,-0.0682398155331612,0.807595252990723,-0.58577561378479,-0.167207464575768,0.782458961009979,-0.599832952022552,0.650395512580872,0.756842434406281,0.0646141991019249,0.649188637733459,0.760164022445679,0.0265439506620169,0.607103824615479,0.794148027896881,0.0274527966976166,0.607103824615479,0.794148027896881,0.0274527966976166,0.604619264602661,0.792817056179047,0.0766584575176239,0.650395512580872,0.756842434406281,0.0646141991019249,0.604619264602661,0.792817056179047,0.0766584575176239,0.587581694126129,0.796381592750549,0.143261775374413,0.624127984046936,0.772294640541077,0.118427582085133,0.587581694126129,0.796381592750549,0.143261775374413,0.569632351398468,0.789882481098175,0.227165892720222,0.597701013088226,0.775282502174377,0.204182177782059,0.255588740110397,0.596286833286285,-0.760996878147125,0.363234966993332,0.583292365074158,-0.726519167423248,0.337154507637024,0.5224369764328,-0.78318989276886,0.357775717973709,0.563949704170227,-0.744282960891724,0.363234966993332,0.583292365074158,-0.726519167423248,0.37721836566925,0.622297763824463,-0.685894787311554,0.423729211091995,0.525304019451141,-0.737908601760864,0.363482922315598,0.548919916152954,-0.752706468105316,0.42381227016449,0.612748205661774,-0.667025208473206,0.357775717973709,0.563949704170227,-0.744282960891724,0.376591086387634,0.623721301555634,-0.68494576215744,0.363482922315598,0.548919916152954,-0.752706468105316,0.609678328037262,0.584020495414734,-0.535921812057495,0.629553020000458,0.524916231632233,-0.572822749614716,0.579318463802338,0.5454421043396,-0.605708539485931,0.42381227016449,0.612748205661774,-0.667025208473206,0.579318463802338,0.5454421043396,-0.605708539485931,0.510814130306244,0.487864404916763,-0.707853853702545,0.663345992565155,0.744001448154449,-0.0802106037735939,0.639513432979584,0.754194557666779,-0.149040132761002,0.625258803367615,0.770383179187775,-0.1247438788414,\r\n0.640422284603119,0.767756879329681,-0.0202082116156816,0.649188637733459,0.760164022445679,0.0265439506620169,0.71178263425827,0.702293395996094,0.0122186504304409,0.640422284603119,0.767756879329681,-0.0202082116156816,0.671649038791656,0.739656984806061,-0.0423688143491745,0.635759890079498,0.769273936748505,-0.0634583458304405,0.663345992565155,0.744001448154449,-0.0802106037735939,0.625258803367615,0.770383179187775,-0.1247438788414,0.671649038791656,0.739656984806061,-0.0423688143491745,0.56039959192276,0.614671647548676,-0.555095374584198,0.483150452375412,0.628134787082672,-0.609928011894226,0.578345835208893,0.571208536624908,-0.582440316677094,0.483150452375412,0.628134787082672,-0.609928011894226,0.502909004688263,0.659445405006409,-0.558761179447174,0.456079691648483,0.641200721263886,-0.617132663726807,0.609678328037262,0.584020495414734,-0.535921812057495,0.578345835208893,0.571208536624908,-0.582440316677094,0.629553020000458,0.524916231632233,-0.572822749614716,0.545722961425781,0.638712048530579,-0.542432606220245,0.456079691648483,0.641200721263886,-0.617132663726807,0.502909004688263,0.659445405006409,-0.558761179447174,0.649199545383453,0.579890906810761,-0.492205560207367,0.545722961425781,0.638712048530579,-0.542432606220245,0.597854733467102,0.651188552379608,-0.467464596033096,0.653922617435455,0.65284252166748,-0.382337093353271,0.694806933403015,0.607892036437988,-0.384330958127975,0.597854733467102,0.651188552379608,-0.467464596033096,0.639513432979584,0.754194557666779,-0.149040132761002,0.686560094356537,0.717596113681793,-0.117008052766323,0.632681787014008,0.749516904354095,-0.194776922464371,0.691882073879242,0.697319746017456,-0.187200918793678,0.710686266422272,0.636809229850769,-0.298996388912201,0.63558954000473,0.721290409564972,-0.275256127119064,0.694806933403015,0.607892036437988,-0.384330958127975,0.663272857666016,0.664029121398926,-0.345158308744431,0.710686266422272,0.636809229850769,-0.298996388912201,0.694806933403015,0.607892036437988,-0.384330958127975,0.653922617435455,0.65284252166748,-0.382337093353271,\r\n0.663272857666016,0.664029121398926,-0.345158308744431,0.632681787014008,0.749516904354095,-0.194776922464371,0.686560094356537,0.717596113681793,-0.117008052766323,0.691882073879242,0.697319746017456,-0.187200918793678,0.203891515731812,0.477429628372192,-0.854686558246613,0.255588740110397,0.596286833286285,-0.760996878147125,0.337154507637024,0.5224369764328,-0.78318989276886,0.113754495978355,0.658092856407166,-0.744294047355652,0.204206466674805,0.578807234764099,-0.789481937885284,0.220038697123528,0.56413334608078,-0.795824408531189,0.286823898553848,0.500086545944214,-0.817095696926117,0.286916434764862,0.515883922576904,-0.807181894779205,0.204206466674805,0.578807234764099,-0.789481937885284,0.286823898553848,0.500086545944214,-0.817095696926117,0.148026049137115,0.509942829608917,-0.847376227378845,0.20811066031456,0.4271419942379,-0.879908800125122,0.203891515731812,0.477429628372192,-0.854686558246613,0.194940403103828,0.424503535032272,-0.884191632270813,0.20811066031456,0.4271419942379,-0.879908800125122,0.220038697123528,0.56413334608078,-0.795824408531189,0.109004020690918,0.560304164886475,-0.821082949638367,0.113754495978355,0.658092856407166,-0.744294047355652,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.025267718359828,0.580024719238281,-0.814206838607788,0.0790472775697708,0.472518384456635,-0.877768635749817,0.0790472775697708,0.472518384456635,-0.877768635749817,0.109004020690918,0.560304164886475,-0.821082949638367,0.207146286964417,0.47381591796875,-0.855913996696472,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.123439349234104,0.459971070289612,-0.879311800003052,-0.15667399764061,0.283032715320587,-0.946227014064789,0.255183100700378,0.634043991565704,0.72997921705246,0.299844741821289,0.661935329437256,0.686975002288818,0.181601673364639,0.712734460830688,0.677517712116241,0.255183100700378,0.634043991565704,0.72997921705246,0.155846759676933,0.611560523509979,0.775696754455566,0.255386292934418,0.526150107383728,0.81113737821579,0.338292568922043,0.856536388397217,0.38974791765213,\r\n0.464107424020767,0.799785852432251,0.38071870803833,0.43406555056572,0.766148030757904,0.473924189805985,0.391663253307343,0.62276953458786,0.677316606044769,0.402971416711807,0.693648934364319,0.597046911716461,0.427166730165482,0.660813987255096,0.617133140563965,0.391663253307343,0.62276953458786,0.677316606044769,0.299844741821289,0.661935329437256,0.686975002288818,0.297494769096375,0.58757472038269,0.752497613430023,0.43846470117569,0.708521902561188,0.552942395210266,0.402971416711807,0.693648934364319,0.597046911716461,0.258032709360123,0.789814054965973,0.556428492069244,0.3150694668293,0.820490777492523,0.476996839046478,0.43846470117569,0.708521902561188,0.552942395210266,0.258032709360123,0.789814054965973,0.556428492069244,0.338292568922043,0.856536388397217,0.38974791765213,0.43406555056572,0.766148030757904,0.473924189805985,0.3150694668293,0.820490777492523,0.476996839046478,0.338292568922043,0.856536388397217,0.38974791765213,0.34799912571907,0.884010076522827,0.312125980854034,0.464107424020767,0.799785852432251,0.38071870803833,0.34799912571907,0.884010076522827,0.312125980854034,0.338292568922043,0.856536388397217,0.38974791765213,0.295371919870377,0.894240081310272,0.336288541555405,0.375115215778351,0.855243325233459,0.357557356357574,0.350773453712463,0.897852718830109,0.266117215156555,0.295371919870377,0.894240081310272,0.336288541555405,0.475907802581787,0.79836517572403,0.36895078420639,0.494069904088974,0.820174992084503,0.288457751274109,0.375115215778351,0.855243325233459,0.357557356357574,0.560298681259155,0.763075768947601,0.322149932384491,0.569632351398468,0.789882481098175,0.227165892720222,0.494069904088974,0.820174992084503,0.288457751274109,0.297379553318024,0.898393452167511,-0.323194295167923,0.449291825294495,0.809742510318756,-0.377430438995361,0.339611709117889,0.887080013751984,-0.312654495239258,0.297379553318024,0.898393452167511,-0.323194295167923,0.1285540163517,0.949606239795685,-0.285869777202606,0.130781665444374,0.925255477428436,-0.356087237596512,0.559940874576569,0.745092153549194,-0.362358748912811,\r\n0.339611709117889,0.887080013751984,-0.312654495239258,0.594550430774689,0.67107230424881,-0.442912608385086,0.657812416553497,0.680266499519348,-0.323295712471008,0.376353442668915,0.88643616437912,-0.269423395395279,0.559940874576569,0.745092153549194,-0.362358748912811,0.657812416553497,0.680266499519348,-0.323295712471008,0.599665999412537,0.764751136302948,-0.235703930258751,0.376353442668915,0.88643616437912,-0.269423395395279,0.599665999412537,0.764751136302948,-0.235703930258751,0.758718430995941,0.600362062454224,-0.252807438373566,0.724258780479431,0.663338959217072,-0.188229858875275,-0.0318699106574059,0.692280411720276,-0.720924317836761,0.0531513653695583,0.662648737430573,-0.747041702270508,-0.0272068604826927,0.6524778008461,-0.757319271564484,-0.0272068604826927,0.6524778008461,-0.757319271564484,0.0357764810323715,0.597838580608368,-0.800817728042603,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.00821030512452126,0.745677471160889,-0.666256368160248,-0.0318699106574059,0.692280411720276,-0.720924317836761,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.0682398155331612,0.807595252990723,-0.58577561378479,0.0135788647457957,0.90843665599823,-0.417801797389984,-0.0607272498309612,0.867501080036163,-0.493714451789856,-0.0916152447462082,0.842850506305695,-0.53029191493988,0.130781665444374,0.925255477428436,-0.356087237596512,0.0135788647457957,0.90843665599823,-0.417801797389984,0.138778105378151,0.875040650367737,-0.463728755712509,-0.0607272498309612,0.867501080036163,-0.493714451789856,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.0916152447462082,0.842850506305695,-0.53029191493988,0.650395512580872,0.756842434406281,0.0646141991019249,0.689302265644073,0.72164660692215,0.0639408454298973,0.649188637733459,0.760164022445679,0.0265439506620169,0.604619264602661,0.792817056179047,0.0766584575176239,0.624127984046936,0.772294640541077,0.118427582085133,\r\n0.650395512580872,0.756842434406281,0.0646141991019249,0.624127984046936,0.772294640541077,0.118427582085133,0.587581694126129,0.796381592750549,0.143261775374413,0.597701013088226,0.775282502174377,0.204182177782059,0.569632351398468,0.789882481098175,0.227165892720222,0.560298681259155,0.763075768947601,0.322149932384491,0.597701013088226,0.775282502174377,0.204182177782059,0.357775717973709,0.563949704170227,-0.744282960891724,0.337154507637024,0.5224369764328,-0.78318989276886,0.363234966993332,0.583292365074158,-0.726519167423248,0.423729211091995,0.525304019451141,-0.737908601760864,0.35298165678978,0.476503819227219,-0.805200517177582,0.363482922315598,0.548919916152954,-0.752706468105316,0.510814130306244,0.487864404916763,-0.707853853702545,0.423729211091995,0.525304019451141,-0.737908601760864,0.42381227016449,0.612748205661774,-0.667025208473206,0.357775717973709,0.563949704170227,-0.744282960891724,0.363482922315598,0.548919916152954,-0.752706468105316,0.345801651477814,0.484053909778595,-0.803811490535736,0.579318463802338,0.5454421043396,-0.605708539485931,0.629553020000458,0.524916231632233,-0.572822749614716,0.61321485042572,0.445007264614105,-0.652637660503387,0.579318463802338,0.5454421043396,-0.605708539485931,0.61321485042572,0.445007264614105,-0.652637660503387,0.510814130306244,0.487864404916763,-0.707853853702545,0.639513432979584,0.754194557666779,-0.149040132761002,0.663345992565155,0.744001448154449,-0.0802106037735939,0.686560094356537,0.717596113681793,-0.117008052766323,0.649188637733459,0.760164022445679,0.0265439506620169,0.689302265644073,0.72164660692215,0.0639408454298973,0.71178263425827,0.702293395996094,0.0122186504304409,0.640422284603119,0.767756879329681,-0.0202082116156816,0.71178263425827,0.702293395996094,0.0122186504304409,0.671649038791656,0.739656984806061,-0.0423688143491745,0.68106484413147,0.731656849384308,-0.0287885908037424,0.663345992565155,0.744001448154449,-0.0802106037735939,0.671649038791656,0.739656984806061,-0.0423688143491745,0.55446195602417,0.543975174427032,-0.629811763763428,\r\n0.578345835208893,0.571208536624908,-0.582440316677094,0.483150452375412,0.628134787082672,-0.609928011894226,0.483150452375412,0.628134787082672,-0.609928011894226,0.456079691648483,0.641200721263886,-0.617132663726807,0.423033237457275,0.600468814373016,-0.678586661815643,0.55446195602417,0.543975174427032,-0.629811763763428,0.629553020000458,0.524916231632233,-0.572822749614716,0.578345835208893,0.571208536624908,-0.582440316677094,0.600941359996796,0.541672229766846,-0.587758898735046,0.456079691648483,0.641200721263886,-0.617132663726807,0.545722961425781,0.638712048530579,-0.542432606220245,0.600941359996796,0.541672229766846,-0.587758898735046,0.545722961425781,0.638712048530579,-0.542432606220245,0.649199545383453,0.579890906810761,-0.492205560207367,0.649199545383453,0.579890906810761,-0.492205560207367,0.597854733467102,0.651188552379608,-0.467464596033096,0.694806933403015,0.607892036437988,-0.384330958127975,0.691882073879242,0.697319746017456,-0.187200918793678,0.753360986709595,0.626929342746735,-0.19851116836071,0.710686266422272,0.636809229850769,-0.298996388912201,0.756188571453094,0.561716854572296,-0.335637956857681,0.694806933403015,0.607892036437988,-0.384330958127975,0.710686266422272,0.636809229850769,-0.298996388912201,0.691882073879242,0.697319746017456,-0.187200918793678,0.686560094356537,0.717596113681793,-0.117008052766323,0.768732249736786,0.628658652305603,-0.11763907968998,0.313498616218567,0.449634850025177,-0.836389303207397,0.203891515731812,0.477429628372192,-0.854686558246613,0.337154507637024,0.5224369764328,-0.78318989276886,0.286916434764862,0.515883922576904,-0.807181894779205,0.220038697123528,0.56413334608078,-0.795824408531189,0.204206466674805,0.578807234764099,-0.789481937885284,0.286823898553848,0.500086545944214,-0.817095696926117,0.311133205890656,0.545260846614838,-0.778387129306793,0.286916434764862,0.515883922576904,-0.807181894779205,0.286823898553848,0.500086545944214,-0.817095696926117,0.20811066031456,0.4271419942379,-0.879908800125122,0.258642762899399,0.453481078147888,-0.85291188955307,\r\n0.194940403103828,0.424503535032272,-0.884191632270813,0.203891515731812,0.477429628372192,-0.854686558246613,0.313498616218567,0.449634850025177,-0.836389303207397,0.194940403103828,0.424503535032272,-0.884191632270813,0.258642762899399,0.453481078147888,-0.85291188955307,0.20811066031456,0.4271419942379,-0.879908800125122,0.109004020690918,0.560304164886475,-0.821082949638367,0.220038697123528,0.56413334608078,-0.795824408531189,0.207146286964417,0.47381591796875,-0.855913996696472,0.0790472775697708,0.472518384456635,-0.877768635749817,0.00415561301633716,0.271014332771301,-0.962566256523132,-0.123439349234104,0.459971070289612,-0.879311800003052,0.0790472775697708,0.472518384456635,-0.877768635749817,0.207146286964417,0.47381591796875,-0.855913996696472,0.168466582894325,0.348755806684494,-0.921948134899139,-0.15667399764061,0.283032715320587,-0.946227014064789,-0.123439349234104,0.459971070289612,-0.879311800003052,0.00415561301633716,0.271014332771301,-0.962566256523132,0.0315150693058968,0.272475212812424,-0.961646497249603,-0.159213542938232,0.440611034631729,-0.883466362953186,-0.15667399764061,0.283032715320587,-0.946227014064789,0.299844741821289,0.661935329437256,0.686975002288818,0.255183100700378,0.634043991565704,0.72997921705246,0.297494769096375,0.58757472038269,0.752497613430023,0.297494769096375,0.58757472038269,0.752497613430023,0.255183100700378,0.634043991565704,0.72997921705246,0.255386292934418,0.526150107383728,0.81113737821579,0.393603086471558,0.6678307056427,0.631726682186127,0.402971416711807,0.693648934364319,0.597046911716461,0.391663253307343,0.62276953458786,0.677316606044769,0.27244821190834,0.548548817634583,0.790484666824341,0.391663253307343,0.62276953458786,0.677316606044769,0.297494769096375,0.58757472038269,0.752497613430023,0.240986600518227,0.752709925174713,0.612660646438599,0.258032709360123,0.789814054965973,0.556428492069244,0.402971416711807,0.693648934364319,0.597046911716461,0.258032709360123,0.789814054965973,0.556428492069244,0.256793200969696,0.828548669815063,0.497558236122131,\r\n0.3150694668293,0.820490777492523,0.476996839046478,0.338292568922043,0.856536388397217,0.38974791765213,0.3150694668293,0.820490777492523,0.476996839046478,0.296632617712021,0.859286725521088,0.416695684194565,0.375115215778351,0.855243325233459,0.357557356357574,0.295371919870377,0.894240081310272,0.336288541555405,0.338292568922043,0.856536388397217,0.38974791765213,0.560298681259155,0.763075768947601,0.322149932384491,0.494069904088974,0.820174992084503,0.288457751274109,0.475907802581787,0.79836517572403,0.36895078420639,0.475907802581787,0.79836517572403,0.36895078420639,0.375115215778351,0.855243325233459,0.357557356357574,0.395481020212173,0.813681840896606,0.426047533750534,0.500612676143646,0.72946959733963,-0.466112673282623,0.449291825294495,0.809742510318756,-0.377430438995361,0.297379553318024,0.898393452167511,-0.323194295167923,0.449291825294495,0.809742510318756,-0.377430438995361,0.594550430774689,0.67107230424881,-0.442912608385086,0.339611709117889,0.887080013751984,-0.312654495239258,0.270675420761108,0.85901552438736,-0.434542268514633,0.297379553318024,0.898393452167511,-0.323194295167923,0.130781665444374,0.925255477428436,-0.356087237596512,0.559940874576569,0.745092153549194,-0.362358748912811,0.594550430774689,0.67107230424881,-0.442912608385086,0.709781348705292,0.576951444149017,-0.404150038957596,0.657812416553497,0.680266499519348,-0.323295712471008,0.559940874576569,0.745092153549194,-0.362358748912811,0.709781348705292,0.576951444149017,-0.404150038957596,0.657812416553497,0.680266499519348,-0.323295712471008,0.758718430995941,0.600362062454224,-0.252807438373566,0.599665999412537,0.764751136302948,-0.235703930258751,0.815166354179382,0.545003831386566,-0.196149066090584,0.724258780479431,0.663338959217072,-0.188229858875275,0.758718430995941,0.600362062454224,-0.252807438373566,-0.0318699106574059,0.692280411720276,-0.720924317836761,-0.0272068604826927,0.6524778008461,-0.757319271564484,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.0272068604826927,0.6524778008461,-0.757319271564484,\r\n-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.0318699106574059,0.692280411720276,-0.720924317836761,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.180282786488533,0.71439790725708,-0.676116526126862,0.0128559805452824,0.847280323505402,-0.530990242958069,0.0135788647457957,0.90843665599823,-0.417801797389984,-0.0916152447462082,0.842850506305695,-0.53029191493988,0.0128559805452824,0.847280323505402,-0.530990242958069,0.138778105378151,0.875040650367737,-0.463728755712509,0.0135788647457957,0.90843665599823,-0.417801797389984,0.270675420761108,0.85901552438736,-0.434542268514633,0.130781665444374,0.925255477428436,-0.356087237596512,0.138778105378151,0.875040650367737,-0.463728755712509,-0.0913489535450935,0.801190137863159,-0.591396331787109,-0.0916152447462082,0.842850506305695,-0.53029191493988,-0.167207464575768,0.782458961009979,-0.599832952022552,0.684021770954132,0.719761371612549,0.118564911186695,0.689302265644073,0.72164660692215,0.0639408454298973,0.650395512580872,0.756842434406281,0.0646141991019249,0.650395512580872,0.756842434406281,0.0646141991019249,0.624127984046936,0.772294640541077,0.118427582085133,0.629220426082611,0.762280702590942,0.151689037680626,0.624127984046936,0.772294640541077,0.118427582085133,0.597701013088226,0.775282502174377,0.204182177782059,0.629220426082611,0.762280702590942,0.151689037680626,0.597701013088226,0.775282502174377,0.204182177782059,0.560298681259155,0.763075768947601,0.322149932384491,0.599861204624176,0.746338486671448,0.288349121809006,0.345801651477814,0.484053909778595,-0.803811490535736,0.337154507637024,0.5224369764328,-0.78318989276886,0.357775717973709,0.563949704170227,-0.744282960891724,0.35298165678978,0.476503819227219,-0.805200517177582,0.423729211091995,0.525304019451141,-0.737908601760864,0.447376132011414,0.418042063713074,-0.790629744529724,\r\n0.35298165678978,0.476503819227219,-0.805200517177582,0.345801651477814,0.484053909778595,-0.803811490535736,0.363482922315598,0.548919916152954,-0.752706468105316,0.447376132011414,0.418042063713074,-0.790629744529724,0.423729211091995,0.525304019451141,-0.737908601760864,0.510814130306244,0.487864404916763,-0.707853853702545,0.55446195602417,0.543975174427032,-0.629811763763428,0.61321485042572,0.445007264614105,-0.652637660503387,0.629553020000458,0.524916231632233,-0.572822749614716,0.54310154914856,0.390909343957901,-0.743122100830078,0.510814130306244,0.487864404916763,-0.707853853702545,0.61321485042572,0.445007264614105,-0.652637660503387,0.663345992565155,0.744001448154449,-0.0802106037735939,0.704330444335938,0.707859635353088,-0.053416658192873,0.686560094356537,0.717596113681793,-0.117008052766323,0.71178263425827,0.702293395996094,0.0122186504304409,0.689302265644073,0.72164660692215,0.0639408454298973,0.729462146759033,0.681165516376495,0.0624356232583523,0.68106484413147,0.731656849384308,-0.0287885908037424,0.671649038791656,0.739656984806061,-0.0423688143491745,0.71178263425827,0.702293395996094,0.0122186504304409,0.704330444335938,0.707859635353088,-0.053416658192873,0.663345992565155,0.744001448154449,-0.0802106037735939,0.68106484413147,0.731656849384308,-0.0287885908037424,0.483150452375412,0.628134787082672,-0.609928011894226,0.423033237457275,0.600468814373016,-0.678586661815643,0.55446195602417,0.543975174427032,-0.629811763763428,0.486703276634216,0.56200385093689,-0.66878354549408,0.423033237457275,0.600468814373016,-0.678586661815643,0.456079691648483,0.641200721263886,-0.617132663726807,0.456079691648483,0.641200721263886,-0.617132663726807,0.600941359996796,0.541672229766846,-0.587758898735046,0.486703276634216,0.56200385093689,-0.66878354549408,0.73989725112915,0.469319760799408,-0.481965750455856,0.600941359996796,0.541672229766846,-0.587758898735046,0.649199545383453,0.579890906810761,-0.492205560207367,0.649199545383453,0.579890906810761,-0.492205560207367,0.694806933403015,0.607892036437988,-0.384330958127975,\r\n0.738809645175934,0.536852061748505,-0.407369554042816,0.691882073879242,0.697319746017456,-0.187200918793678,0.768732249736786,0.628658652305603,-0.11763907968998,0.753360986709595,0.626929342746735,-0.19851116836071,0.766619503498077,0.577912271022797,-0.279842168092728,0.710686266422272,0.636809229850769,-0.298996388912201,0.753360986709595,0.626929342746735,-0.19851116836071,0.738809645175934,0.536852061748505,-0.407369554042816,0.694806933403015,0.607892036437988,-0.384330958127975,0.756188571453094,0.561716854572296,-0.335637956857681,0.766619503498077,0.577912271022797,-0.279842168092728,0.756188571453094,0.561716854572296,-0.335637956857681,0.710686266422272,0.636809229850769,-0.298996388912201,0.768732249736786,0.628658652305603,-0.11763907968998,0.686560094356537,0.717596113681793,-0.117008052766323,0.750503897666931,0.659044444561005,-0.0490313246846199,0.345801651477814,0.484053909778595,-0.803811490535736,0.313498616218567,0.449634850025177,-0.836389303207397,0.337154507637024,0.5224369764328,-0.78318989276886,0.286916434764862,0.515883922576904,-0.807181894779205,0.207146286964417,0.47381591796875,-0.855913996696472,0.220038697123528,0.56413334608078,-0.795824408531189,0.286823898553848,0.500086545944214,-0.817095696926117,0.258642762899399,0.453481078147888,-0.85291188955307,0.311133205890656,0.545260846614838,-0.778387129306793,0.311133205890656,0.545260846614838,-0.778387129306793,0.276527762413025,0.525004327297211,-0.804924011230469,0.286916434764862,0.515883922576904,-0.807181894779205,0.194940403103828,0.424503535032272,-0.884191632270813,0.313498616218567,0.449634850025177,-0.836389303207397,0.270986467599869,0.490679323673248,-0.828130424022675,0.194940403103828,0.424503535032272,-0.884191632270813,0.224669769406319,0.511862754821777,-0.829168140888214,0.258642762899399,0.453481078147888,-0.85291188955307,0.0790472775697708,0.472518384456635,-0.877768635749817,0.168466582894325,0.348755806684494,-0.921948134899139,0.00415561301633716,0.271014332771301,-0.962566256523132,0.168466582894325,0.348755806684494,-0.921948134899139,\r\n0.207146286964417,0.47381591796875,-0.855913996696472,0.243319973349571,0.365020602941513,-0.898640751838684,-0.15667399764061,0.283032715320587,-0.946227014064789,0.00415561301633716,0.271014332771301,-0.962566256523132,0.0315150693058968,0.272475212812424,-0.961646497249603,0.27244821190834,0.548548817634583,0.790484666824341,0.297494769096375,0.58757472038269,0.752497613430023,0.255386292934418,0.526150107383728,0.81113737821579,0.393603086471558,0.6678307056427,0.631726682186127,0.240986600518227,0.752709925174713,0.612660646438599,0.402971416711807,0.693648934364319,0.597046911716461,0.311327368021011,0.649991393089294,0.693243324756622,0.393603086471558,0.6678307056427,0.631726682186127,0.391663253307343,0.62276953458786,0.677316606044769,0.27244821190834,0.548548817634583,0.790484666824341,0.311327368021011,0.649991393089294,0.693243324756622,0.391663253307343,0.62276953458786,0.677316606044769,0.240986600518227,0.752709925174713,0.612660646438599,0.17569674551487,0.772976458072662,0.609621107578278,0.258032709360123,0.789814054965973,0.556428492069244,0.256793200969696,0.828548669815063,0.497558236122131,0.258032709360123,0.789814054965973,0.556428492069244,0.17569674551487,0.772976458072662,0.609621107578278,0.256793200969696,0.828548669815063,0.497558236122131,0.296632617712021,0.859286725521088,0.416695684194565,0.3150694668293,0.820490777492523,0.476996839046478,0.375115215778351,0.855243325233459,0.357557356357574,0.338292568922043,0.856536388397217,0.38974791765213,0.296632617712021,0.859286725521088,0.416695684194565,0.542814970016479,0.723201930522919,0.427002042531967,0.560298681259155,0.763075768947601,0.322149932384491,0.475907802581787,0.79836517572403,0.36895078420639,0.375115215778351,0.855243325233459,0.357557356357574,0.296632617712021,0.859286725521088,0.416695684194565,0.395481020212173,0.813681840896606,0.426047533750534,0.542814970016479,0.723201930522919,0.427002042531967,0.475907802581787,0.79836517572403,0.36895078420639,0.395481020212173,0.813681840896606,0.426047533750534,0.500612676143646,0.72946959733963,-0.466112673282623,\r\n0.594550430774689,0.67107230424881,-0.442912608385086,0.449291825294495,0.809742510318756,-0.377430438995361,0.500612676143646,0.72946959733963,-0.466112673282623,0.297379553318024,0.898393452167511,-0.323194295167923,0.270675420761108,0.85901552438736,-0.434542268514633,0.74509733915329,0.48737233877182,-0.455299943685532,0.709781348705292,0.576951444149017,-0.404150038957596,0.594550430774689,0.67107230424881,-0.442912608385086,0.657812416553497,0.680266499519348,-0.323295712471008,0.709781348705292,0.576951444149017,-0.404150038957596,0.77362471818924,0.555643081665039,-0.304574072360992,0.758718430995941,0.600362062454224,-0.252807438373566,0.657812416553497,0.680266499519348,-0.323295712471008,0.77362471818924,0.555643081665039,-0.304574072360992,0.77362471818924,0.555643081665039,-0.304574072360992,0.815166354179382,0.545003831386566,-0.196149066090584,0.758718430995941,0.600362062454224,-0.252807438373566,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.180282786488533,0.71439790725708,-0.676116526126862,-0.112090669572353,0.738208115100861,-0.665194928646088,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.180282786488533,0.71439790725708,-0.676116526126862,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.0913489535450935,0.801190137863159,-0.591396331787109,0.0128559805452824,0.847280323505402,-0.530990242958069,-0.0916152447462082,0.842850506305695,-0.53029191493988,0.233237847685814,0.760591208934784,-0.605888545513153,0.138778105378151,0.875040650367737,-0.463728755712509,0.0128559805452824,0.847280323505402,-0.530990242958069,0.270675420761108,0.85901552438736,-0.434542268514633,0.138778105378151,0.875040650367737,-0.463728755712509,0.389891147613525,0.736155033111572,-0.553227365016937,-0.0913489535450935,0.801190137863159,-0.591396331787109,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.193437978625298,0.746382415294647,-0.636784791946411,\r\n0.684021770954132,0.719761371612549,0.118564911186695,0.73365193605423,0.671657681465149,0.103104881942272,0.689302265644073,0.72164660692215,0.0639408454298973,0.629220426082611,0.762280702590942,0.151689037680626,0.684021770954132,0.719761371612549,0.118564911186695,0.650395512580872,0.756842434406281,0.0646141991019249,0.629220426082611,0.762280702590942,0.151689037680626,0.597701013088226,0.775282502174377,0.204182177782059,0.599861204624176,0.746338486671448,0.288349121809006,0.599861204624176,0.746338486671448,0.288349121809006,0.560298681259155,0.763075768947601,0.322149932384491,0.58693128824234,0.715703070163727,0.378524243831635,0.35298165678978,0.476503819227219,-0.805200517177582,0.447376132011414,0.418042063713074,-0.790629744529724,0.353602170944214,0.425300985574722,-0.833117365837097,0.331222862005234,0.392124503850937,-0.858213067054749,0.345801651477814,0.484053909778595,-0.803811490535736,0.35298165678978,0.476503819227219,-0.805200517177582,0.447376132011414,0.418042063713074,-0.790629744529724,0.510814130306244,0.487864404916763,-0.707853853702545,0.54310154914856,0.390909343957901,-0.743122100830078,0.55446195602417,0.543975174427032,-0.629811763763428,0.534720122814178,0.4570132791996,-0.710783421993256,0.61321485042572,0.445007264614105,-0.652637660503387,0.534720122814178,0.4570132791996,-0.710783421993256,0.54310154914856,0.390909343957901,-0.743122100830078,0.61321485042572,0.445007264614105,-0.652637660503387,0.704330444335938,0.707859635353088,-0.053416658192873,0.750503897666931,0.659044444561005,-0.0490313246846199,0.686560094356537,0.717596113681793,-0.117008052766323,0.689302265644073,0.72164660692215,0.0639408454298973,0.73365193605423,0.671657681465149,0.103104881942272,0.729462146759033,0.681165516376495,0.0624356232583523,0.78348708152771,0.61957573890686,0.047682486474514,0.71178263425827,0.702293395996094,0.0122186504304409,0.729462146759033,0.681165516376495,0.0624356232583523,0.68106484413147,0.731656849384308,-0.0287885908037424,0.71178263425827,0.702293395996094,0.0122186504304409,\r\n0.704330444335938,0.707859635353088,-0.053416658192873,0.423033237457275,0.600468814373016,-0.678586661815643,0.534720122814178,0.4570132791996,-0.710783421993256,0.55446195602417,0.543975174427032,-0.629811763763428,0.388140201568604,0.578433811664581,-0.717468798160553,0.423033237457275,0.600468814373016,-0.678586661815643,0.486703276634216,0.56200385093689,-0.66878354549408,0.600941359996796,0.541672229766846,-0.587758898735046,0.602603733539581,0.467100441455841,-0.647059321403503,0.486703276634216,0.56200385093689,-0.66878354549408,0.73989725112915,0.469319760799408,-0.481965750455856,0.646458208560944,0.493377923965454,-0.581953465938568,0.600941359996796,0.541672229766846,-0.587758898735046,0.649199545383453,0.579890906810761,-0.492205560207367,0.738809645175934,0.536852061748505,-0.407369554042816,0.73989725112915,0.469319760799408,-0.481965750455856,0.807837605476379,0.549381732940674,-0.213489636778831,0.753360986709595,0.626929342746735,-0.19851116836071,0.768732249736786,0.628658652305603,-0.11763907968998,0.807837605476379,0.549381732940674,-0.213489636778831,0.766619503498077,0.577912271022797,-0.279842168092728,0.753360986709595,0.626929342746735,-0.19851116836071,0.801779806613922,0.490114122629166,-0.341960698366165,0.738809645175934,0.536852061748505,-0.407369554042816,0.756188571453094,0.561716854572296,-0.335637956857681,0.766619503498077,0.577912271022797,-0.279842168092728,0.79945033788681,0.528693974018097,-0.285239636898041,0.756188571453094,0.561716854572296,-0.335637956857681,0.750503897666931,0.659044444561005,-0.0490313246846199,0.805961012840271,0.590121507644653,-0.0467254184186459,0.768732249736786,0.628658652305603,-0.11763907968998,0.39032581448555,0.400725990533829,-0.828893423080444,0.313498616218567,0.449634850025177,-0.836389303207397,0.345801651477814,0.484053909778595,-0.803811490535736,0.286916434764862,0.515883922576904,-0.807181894779205,0.243319973349571,0.365020602941513,-0.898640751838684,0.207146286964417,0.47381591796875,-0.855913996696472,0.258642762899399,0.453481078147888,-0.85291188955307,\r\n0.224669769406319,0.511862754821777,-0.829168140888214,0.311133205890656,0.545260846614838,-0.778387129306793,0.311133205890656,0.545260846614838,-0.778387129306793,0.224669769406319,0.511862754821777,-0.829168140888214,0.276527762413025,0.525004327297211,-0.804924011230469,0.286222815513611,0.404096513986588,-0.868782103061676,0.286916434764862,0.515883922576904,-0.807181894779205,0.276527762413025,0.525004327297211,-0.804924011230469,0.313498616218567,0.449634850025177,-0.836389303207397,0.39032581448555,0.400725990533829,-0.828893423080444,0.270986467599869,0.490679323673248,-0.828130424022675,0.270986467599869,0.490679323673248,-0.828130424022675,0.224669769406319,0.511862754821777,-0.829168140888214,0.194940403103828,0.424503535032272,-0.884191632270813,0.168466582894325,0.348755806684494,-0.921948134899139,0.134667068719864,0.172623217105865,-0.975738644599915,0.00415561301633716,0.271014332771301,-0.962566256523132,0.168466582894325,0.348755806684494,-0.921948134899139,0.243319973349571,0.365020602941513,-0.898640751838684,0.203637346625328,0.194294095039368,-0.95957362651825,0.0315150693058968,0.272475212812424,-0.961646497249603,0.00415561301633716,0.271014332771301,-0.962566256523132,-0.0567617937922478,0.0963079556822777,-0.993731737136841,0.393603086471558,0.6678307056427,0.631726682186127,0.311327368021011,0.649991393089294,0.693243324756622,0.240986600518227,0.752709925174713,0.612660646438599,0.27244821190834,0.548548817634583,0.790484666824341,0.232763260602951,0.588428020477295,0.774321377277374,0.311327368021011,0.649991393089294,0.693243324756622,0.159789532423019,0.707501828670502,0.688409984111786,0.17569674551487,0.772976458072662,0.609621107578278,0.240986600518227,0.752709925174713,0.612660646438599,0.340112119913101,0.740305244922638,0.579889416694641,0.256793200969696,0.828548669815063,0.497558236122131,0.17569674551487,0.772976458072662,0.609621107578278,0.296632617712021,0.859286725521088,0.416695684194565,0.256793200969696,0.828548669815063,0.497558236122131,0.395481020212173,0.813681840896606,0.426047533750534,\r\n0.58693128824234,0.715703070163727,0.378524243831635,0.560298681259155,0.763075768947601,0.322149932384491,0.542814970016479,0.723201930522919,0.427002042531967,0.495824068784714,0.718831419944763,0.487277895212173,0.542814970016479,0.723201930522919,0.427002042531967,0.395481020212173,0.813681840896606,0.426047533750534,0.702887535095215,0.486875504255295,-0.518556833267212,0.594550430774689,0.67107230424881,-0.442912608385086,0.500612676143646,0.72946959733963,-0.466112673282623,0.389891147613525,0.736155033111572,-0.553227365016937,0.500612676143646,0.72946959733963,-0.466112673282623,0.270675420761108,0.85901552438736,-0.434542268514633,0.74509733915329,0.48737233877182,-0.455299943685532,0.811598718166351,0.463516265153885,-0.355612248182297,0.709781348705292,0.576951444149017,-0.404150038957596,0.74509733915329,0.48737233877182,-0.455299943685532,0.594550430774689,0.67107230424881,-0.442912608385086,0.702887535095215,0.486875504255295,-0.518556833267212,0.77362471818924,0.555643081665039,-0.304574072360992,0.709781348705292,0.576951444149017,-0.404150038957596,0.811598718166351,0.463516265153885,-0.355612248182297,0.815166354179382,0.545003831386566,-0.196149066090584,0.77362471818924,0.555643081665039,-0.304574072360992,0.845264434814453,0.463748693466187,-0.26545262336731,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.180282786488533,0.71439790725708,-0.676116526126862,-0.102929301559925,0.673003196716309,-0.732442557811737,-0.0795047655701637,0.609339356422424,-0.788913488388062,-0.184655800461769,0.601204574108124,-0.77746719121933,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.180282786488533,0.71439790725708,-0.676116526126862,-0.193437978625298,0.746382415294647,-0.636784791946411,-0.167207464575768,0.782458961009979,-0.599832952022552,-0.257885813713074,0.717711985111237,-0.646826267242432,0.0782485380768776,0.772835493087769,-0.629763722419739,0.0128559805452824,0.847280323505402,-0.530990242958069,\r\n-0.0913489535450935,0.801190137863159,-0.591396331787109,0.233237847685814,0.760591208934784,-0.605888545513153,0.389891147613525,0.736155033111572,-0.553227365016937,0.138778105378151,0.875040650367737,-0.463728755712509,0.233237847685814,0.760591208934784,-0.605888545513153,0.0128559805452824,0.847280323505402,-0.530990242958069,0.0782485380768776,0.772835493087769,-0.629763722419739,-0.0913489535450935,0.801190137863159,-0.591396331787109,-0.193437978625298,0.746382415294647,-0.636784791946411,-0.00608859723433852,0.718112826347351,-0.695899963378906,0.684021770954132,0.719761371612549,0.118564911186695,0.72943377494812,0.660111844539642,0.179384112358093,0.73365193605423,0.671657681465149,0.103104881942272,0.629220426082611,0.762280702590942,0.151689037680626,0.670827567577362,0.707914471626282,0.221014231443405,0.684021770954132,0.719761371612549,0.118564911186695,0.629220426082611,0.762280702590942,0.151689037680626,0.599861204624176,0.746338486671448,0.288349121809006,0.670827567577362,0.707914471626282,0.221014231443405,0.599861204624176,0.746338486671448,0.288349121809006,0.58693128824234,0.715703070163727,0.378524243831635,0.664811134338379,0.666838407516479,0.336678624153137,0.447376132011414,0.418042063713074,-0.790629744529724,0.388659685850143,0.366109490394592,-0.845521926879883,0.353602170944214,0.425300985574722,-0.833117365837097,0.353602170944214,0.425300985574722,-0.833117365837097,0.331222862005234,0.392124503850937,-0.858213067054749,0.35298165678978,0.476503819227219,-0.805200517177582,0.39032581448555,0.400725990533829,-0.828893423080444,0.345801651477814,0.484053909778595,-0.803811490535736,0.331222862005234,0.392124503850937,-0.858213067054749,0.447376132011414,0.418042063713074,-0.790629744529724,0.54310154914856,0.390909343957901,-0.743122100830078,0.492371439933777,0.374513477087021,-0.785690784454346,0.534720122814178,0.4570132791996,-0.710783421993256,0.492371439933777,0.374513477087021,-0.785690784454346,0.54310154914856,0.390909343957901,-0.743122100830078,0.750503897666931,0.659044444561005,-0.0490313246846199,\r\n0.704330444335938,0.707859635353088,-0.053416658192873,0.71178263425827,0.702293395996094,0.0122186504304409,0.78348708152771,0.61957573890686,0.047682486474514,0.729462146759033,0.681165516376495,0.0624356232583523,0.73365193605423,0.671657681465149,0.103104881942272,0.71178263425827,0.702293395996094,0.0122186504304409,0.78348708152771,0.61957573890686,0.047682486474514,0.779276609420776,0.626677095890045,-0.00189052091445774,0.423033237457275,0.600468814373016,-0.678586661815643,0.404817759990692,0.517256438732147,-0.754034638404846,0.534720122814178,0.4570132791996,-0.710783421993256,0.388140201568604,0.578433811664581,-0.717468798160553,0.404817759990692,0.517256438732147,-0.754034638404846,0.423033237457275,0.600468814373016,-0.678586661815643,0.486703276634216,0.56200385093689,-0.66878354549408,0.489823460578918,0.489726096391678,-0.721277475357056,0.388140201568604,0.578433811664581,-0.717468798160553,0.602603733539581,0.467100441455841,-0.647059321403503,0.600941359996796,0.541672229766846,-0.587758898735046,0.646458208560944,0.493377923965454,-0.581953465938568,0.602603733539581,0.467100441455841,-0.647059321403503,0.55857253074646,0.451337605714798,-0.695910155773163,0.486703276634216,0.56200385093689,-0.66878354549408,0.73989725112915,0.469319760799408,-0.481965750455856,0.714938700199127,0.490311145782471,-0.498454928398132,0.646458208560944,0.493377923965454,-0.581953465938568,0.73989725112915,0.469319760799408,-0.481965750455856,0.738809645175934,0.536852061748505,-0.407369554042816,0.801779806613922,0.490114122629166,-0.341960698366165,0.811056077480316,0.571756541728973,-0.123622238636017,0.807837605476379,0.549381732940674,-0.213489636778831,0.768732249736786,0.628658652305603,-0.11763907968998,0.807837605476379,0.549381732940674,-0.213489636778831,0.79945033788681,0.528693974018097,-0.285239636898041,0.766619503498077,0.577912271022797,-0.279842168092728,0.79945033788681,0.528693974018097,-0.285239636898041,0.801779806613922,0.490114122629166,-0.341960698366165,0.756188571453094,0.561716854572296,-0.335637956857681,\r\n0.750503897666931,0.659044444561005,-0.0490313246846199,0.779276609420776,0.626677095890045,-0.00189052091445774,0.805961012840271,0.590121507644653,-0.0467254184186459,0.811056077480316,0.571756541728973,-0.123622238636017,0.768732249736786,0.628658652305603,-0.11763907968998,0.805961012840271,0.590121507644653,-0.0467254184186459,0.243319973349571,0.365020602941513,-0.898640751838684,0.286916434764862,0.515883922576904,-0.807181894779205,0.286222815513611,0.404096513986588,-0.868782103061676,0.270986467599869,0.490679323673248,-0.828130424022675,0.276527762413025,0.525004327297211,-0.804924011230469,0.224669769406319,0.511862754821777,-0.829168140888214,0.308182448148727,0.335347533226013,-0.890261471271515,0.286222815513611,0.404096513986588,-0.868782103061676,0.276527762413025,0.525004327297211,-0.804924011230469,0.39032581448555,0.400725990533829,-0.828893423080444,0.335493326187134,0.431690901517868,-0.837309420108795,0.270986467599869,0.490679323673248,-0.828130424022675,0.134667068719864,0.172623217105865,-0.975738644599915,0.168466582894325,0.348755806684494,-0.921948134899139,0.203637346625328,0.194294095039368,-0.95957362651825,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.00415561301633716,0.271014332771301,-0.962566256523132,0.134667068719864,0.172623217105865,-0.975738644599915,0.26212278008461,0.216610431671143,-0.940410256385803,0.203637346625328,0.194294095039368,-0.95957362651825,0.243319973349571,0.365020602941513,-0.898640751838684,-0.0567617937922478,0.0963079556822777,-0.993731737136841,0.00415561301633716,0.271014332771301,-0.962566256523132,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.0315150693058968,0.272475212812424,-0.961646497249603,-0.0567617937922478,0.0963079556822777,-0.993731737136841,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.311327368021011,0.649991393089294,0.693243324756622,0.159789532423019,0.707501828670502,0.688409984111786,0.240986600518227,0.752709925174713,0.612660646438599,0.311327368021011,0.649991393089294,0.693243324756622,0.232763260602951,0.588428020477295,0.774321377277374,\r\n0.159789532423019,0.707501828670502,0.688409984111786,0.17569674551487,0.772976458072662,0.609621107578278,0.159789532423019,0.707501828670502,0.688409984111786,0.186134561896324,0.683296263217926,0.706017017364502,0.256793200969696,0.828548669815063,0.497558236122131,0.340112119913101,0.740305244922638,0.579889416694641,0.395713061094284,0.761255502700806,0.513713121414185,0.340112119913101,0.740305244922638,0.579889416694641,0.17569674551487,0.772976458072662,0.609621107578278,0.328689843416214,0.656378030776978,0.679066002368927,0.395481020212173,0.813681840896606,0.426047533750534,0.256793200969696,0.828548669815063,0.497558236122131,0.395713061094284,0.761255502700806,0.513713121414185,0.542814970016479,0.723201930522919,0.427002042531967,0.56906533241272,0.6991286277771,0.432878345251083,0.58693128824234,0.715703070163727,0.378524243831635,0.542814970016479,0.723201930522919,0.427002042531967,0.495824068784714,0.718831419944763,0.487277895212173,0.570616543292999,0.614080607891083,0.545253694057465,0.395481020212173,0.813681840896606,0.426047533750534,0.395713061094284,0.761255502700806,0.513713121414185,0.495824068784714,0.718831419944763,0.487277895212173,0.702887535095215,0.486875504255295,-0.518556833267212,0.500612676143646,0.72946959733963,-0.466112673282623,0.626571655273438,0.491322219371796,-0.604987919330597,0.389891147613525,0.736155033111572,-0.553227365016937,0.626571655273438,0.491322219371796,-0.604987919330597,0.500612676143646,0.72946959733963,-0.466112673282623,0.808642148971558,0.382527112960815,-0.44695720076561,0.811598718166351,0.463516265153885,-0.355612248182297,0.74509733915329,0.48737233877182,-0.455299943685532,0.702887535095215,0.486875504255295,-0.518556833267212,0.808642148971558,0.382527112960815,-0.44695720076561,0.74509733915329,0.48737233877182,-0.455299943685532,0.77362471818924,0.555643081665039,-0.304574072360992,0.811598718166351,0.463516265153885,-0.355612248182297,0.845264434814453,0.463748693466187,-0.26545262336731,0.876865863800049,0.446303635835648,-0.178659722208977,\r\n0.815166354179382,0.545003831386566,-0.196149066090584,0.845264434814453,0.463748693466187,-0.26545262336731,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.184655800461769,0.601204574108124,-0.77746719121933,-0.222252160310745,0.616325318813324,-0.755478024482727,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.193437978625298,0.746382415294647,-0.636784791946411,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.242940723896027,0.713185548782349,-0.657530248165131,0.0782485380768776,0.772835493087769,-0.629763722419739,-0.0913489535450935,0.801190137863159,-0.591396331787109,-0.00608859723433852,0.718112826347351,-0.695899963378906,0.498166143894196,0.503412127494812,-0.70597916841507,0.389891147613525,0.736155033111572,-0.553227365016937,0.233237847685814,0.760591208934784,-0.605888545513153,0.233237847685814,0.760591208934784,-0.605888545513153,0.0782485380768776,0.772835493087769,-0.629763722419739,0.25574991106987,0.623068332672119,-0.739173650741577,-0.0886881574988365,0.666096031665802,-0.740574359893799,-0.00608859723433852,0.718112826347351,-0.695899963378906,-0.193437978625298,0.746382415294647,-0.636784791946411,0.670827567577362,0.707914471626282,0.221014231443405,0.72943377494812,0.660111844539642,0.179384112358093,0.684021770954132,0.719761371612549,0.118564911186695,0.779272854328156,0.611011326313019,0.139279708266258,0.73365193605423,0.671657681465149,0.103104881942272,0.72943377494812,0.660111844539642,0.179384112358093,0.670827567577362,0.707914471626282,0.221014231443405,0.599861204624176,0.746338486671448,0.288349121809006,0.664811134338379,0.666838407516479,0.336678624153137,0.606435120105743,0.696073889732361,0.384340196847916,0.664811134338379,0.666838407516479,0.336678624153137,0.58693128824234,0.715703070163727,0.378524243831635,0.447376132011414,0.418042063713074,-0.790629744529724,0.475149631500244,0.306749433279037,-0.824704468250275,0.388659685850143,0.366109490394592,-0.845521926879883,\r\n0.388659685850143,0.366109490394592,-0.845521926879883,0.331222862005234,0.392124503850937,-0.858213067054749,0.353602170944214,0.425300985574722,-0.833117365837097,0.331222862005234,0.392124503850937,-0.858213067054749,0.374907582998276,0.285279929637909,-0.882076799869537,0.39032581448555,0.400725990533829,-0.828893423080444,0.447376132011414,0.418042063713074,-0.790629744529724,0.492371439933777,0.374513477087021,-0.785690784454346,0.475149631500244,0.306749433279037,-0.824704468250275,0.492371439933777,0.374513477087021,-0.785690784454346,0.534720122814178,0.4570132791996,-0.710783421993256,0.404817759990692,0.517256438732147,-0.754034638404846,0.750503897666931,0.659044444561005,-0.0490313246846199,0.71178263425827,0.702293395996094,0.0122186504304409,0.779276609420776,0.626677095890045,-0.00189052091445774,0.793744921684265,0.600415587425232,0.0973142310976982,0.78348708152771,0.61957573890686,0.047682486474514,0.73365193605423,0.671657681465149,0.103104881942272,0.78348708152771,0.61957573890686,0.047682486474514,0.806339204311371,0.59145325422287,6.59887155052274e-005,0.779276609420776,0.626677095890045,-0.00189052091445774,0.388140201568604,0.578433811664581,-0.717468798160553,0.395674377679825,0.506178140640259,-0.766306281089783,0.404817759990692,0.517256438732147,-0.754034638404846,0.489823460578918,0.489726096391678,-0.721277475357056,0.486703276634216,0.56200385093689,-0.66878354549408,0.55857253074646,0.451337605714798,-0.695910155773163,0.489823460578918,0.489726096391678,-0.721277475357056,0.395674377679825,0.506178140640259,-0.766306281089783,0.388140201568604,0.578433811664581,-0.717468798160553,0.602603733539581,0.467100441455841,-0.647059321403503,0.646458208560944,0.493377923965454,-0.581953465938568,0.596197605133057,0.461604654788971,-0.656863272190094,0.602603733539581,0.467100441455841,-0.647059321403503,0.596197605133057,0.461604654788971,-0.656863272190094,0.55857253074646,0.451337605714798,-0.695910155773163,0.73989725112915,0.469319760799408,-0.481965750455856,0.774351716041565,0.485300660133362,-0.406032651662827,\r\n0.714938700199127,0.490311145782471,-0.498454928398132,0.665557622909546,0.509753048419952,-0.545146346092224,0.646458208560944,0.493377923965454,-0.581953465938568,0.714938700199127,0.490311145782471,-0.498454928398132,0.73989725112915,0.469319760799408,-0.481965750455856,0.801779806613922,0.490114122629166,-0.341960698366165,0.825471341609955,0.445768058300018,-0.346248060464859,0.807837605476379,0.549381732940674,-0.213489636778831,0.811056077480316,0.571756541728973,-0.123622238636017,0.808269321918488,0.55500715970993,-0.196640729904175,0.803607642650604,0.533601462841034,-0.26359835267067,0.79945033788681,0.528693974018097,-0.285239636898041,0.807837605476379,0.549381732940674,-0.213489636778831,0.81258487701416,0.505675435066223,-0.289824098348618,0.801779806613922,0.490114122629166,-0.341960698366165,0.79945033788681,0.528693974018097,-0.285239636898041,0.805961012840271,0.590121507644653,-0.0467254184186459,0.779276609420776,0.626677095890045,-0.00189052091445774,0.806339204311371,0.59145325422287,6.59887155052274e-005,0.807689964771271,0.587722778320313,-0.0471042692661285,0.811056077480316,0.571756541728973,-0.123622238636017,0.805961012840271,0.590121507644653,-0.0467254184186459,0.243319973349571,0.365020602941513,-0.898640751838684,0.286222815513611,0.404096513986588,-0.868782103061676,0.26212278008461,0.216610431671143,-0.940410256385803,0.335493326187134,0.431690901517868,-0.837309420108795,0.276527762413025,0.525004327297211,-0.804924011230469,0.270986467599869,0.490679323673248,-0.828130424022675,0.308182448148727,0.335347533226013,-0.890261471271515,0.26212278008461,0.216610431671143,-0.940410256385803,0.286222815513611,0.404096513986588,-0.868782103061676,0.335493326187134,0.431690901517868,-0.837309420108795,0.308182448148727,0.335347533226013,-0.890261471271515,0.276527762413025,0.525004327297211,-0.804924011230469,0.39032581448555,0.400725990533829,-0.828893423080444,0.390979677438736,0.282968491315842,-0.875821650028229,0.335493326187134,0.431690901517868,-0.837309420108795,0.134667068719864,0.172623217105865,-0.975738644599915,\r\n0.203637346625328,0.194294095039368,-0.95957362651825,0.157145738601685,0.125790625810623,-0.979531466960907,0.134667068719864,0.172623217105865,-0.975738644599915,0.0918761640787125,0.031198151409626,-0.995281517505646,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.222980946302414,0.145332485437393,-0.96392834186554,0.203637346625328,0.194294095039368,-0.95957362651825,0.26212278008461,0.216610431671143,-0.940410256385803,-0.0567617937922478,0.0963079556822777,-0.993731737136841,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.0315150693058968,0.272475212812424,-0.961646497249603,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.257648348808289,0.278692722320557,-0.925174355506897,0.244099229574203,0.591526865959167,0.768447399139404,0.159789532423019,0.707501828670502,0.688409984111786,0.232763260602951,0.588428020477295,0.774321377277374,0.159789532423019,0.707501828670502,0.688409984111786,0.244099229574203,0.591526865959167,0.768447399139404,0.186134561896324,0.683296263217926,0.706017017364502,0.17569674551487,0.772976458072662,0.609621107578278,0.186134561896324,0.683296263217926,0.706017017364502,0.328689843416214,0.656378030776978,0.679066002368927,0.340112119913101,0.740305244922638,0.579889416694641,0.473279416561127,0.643283128738403,0.601824939250946,0.395713061094284,0.761255502700806,0.513713121414185,0.473279416561127,0.643283128738403,0.601824939250946,0.340112119913101,0.740305244922638,0.579889416694641,0.328689843416214,0.656378030776978,0.679066002368927,0.542814970016479,0.723201930522919,0.427002042531967,0.562325894832611,0.663634359836578,0.493334382772446,0.56906533241272,0.6991286277771,0.432878345251083,0.56906533241272,0.6991286277771,0.432878345251083,0.606435120105743,0.696073889732361,0.384340196847916,0.58693128824234,0.715703070163727,0.378524243831635,0.495824068784714,0.718831419944763,0.487277895212173,0.473279416561127,0.643283128738403,0.601824939250946,0.570616543292999,0.614080607891083,0.545253694057465,\r\n0.570616543292999,0.614080607891083,0.545253694057465,0.562325894832611,0.663634359836578,0.493334382772446,0.542814970016479,0.723201930522919,0.427002042531967,0.473279416561127,0.643283128738403,0.601824939250946,0.495824068784714,0.718831419944763,0.487277895212173,0.395713061094284,0.761255502700806,0.513713121414185,0.702887535095215,0.486875504255295,-0.518556833267212,0.626571655273438,0.491322219371796,-0.604987919330597,0.761746466159821,0.326132714748383,-0.559803307056427,0.498166143894196,0.503412127494812,-0.70597916841507,0.626571655273438,0.491322219371796,-0.604987919330597,0.389891147613525,0.736155033111572,-0.553227365016937,0.853671669960022,0.367664664983749,-0.368872910737991,0.811598718166351,0.463516265153885,-0.355612248182297,0.808642148971558,0.382527112960815,-0.44695720076561,0.702887535095215,0.486875504255295,-0.518556833267212,0.761746466159821,0.326132714748383,-0.559803307056427,0.808642148971558,0.382527112960815,-0.44695720076561,0.879591763019562,0.383313924074173,-0.281760036945343,0.845264434814453,0.463748693466187,-0.26545262336731,0.811598718166351,0.463516265153885,-0.355612248182297,0.876865863800049,0.446303635835648,-0.178659722208977,0.845264434814453,0.463748693466187,-0.26545262336731,0.909617006778717,0.357014417648315,-0.212455853819847,-0.196807280182838,0.647752046585083,-0.735991775989532,-0.222252160310745,0.616325318813324,-0.755478024482727,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.288437575101852,0.713736534118652,-0.638266205787659,-0.288437575101852,0.713736534118652,-0.638266205787659,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.257885813713074,0.717711985111237,-0.646826267242432,-0.0886881574988365,0.666096031665802,-0.740574359893799,-0.193437978625298,0.746382415294647,-0.636784791946411,-0.242940723896027,0.713185548782349,-0.657530248165131,0.0782485380768776,0.772835493087769,-0.629763722419739,-0.00608859723433852,0.718112826347351,-0.695899963378906,\r\n0.25574991106987,0.623068332672119,-0.739173650741577,0.233237847685814,0.760591208934784,-0.605888545513153,0.25574991106987,0.623068332672119,-0.739173650741577,0.498166143894196,0.503412127494812,-0.70597916841507,0.159326434135437,0.562961935997009,-0.810980141162872,-0.00608859723433852,0.718112826347351,-0.695899963378906,-0.0886881574988365,0.666096031665802,-0.740574359893799,0.670827567577362,0.707914471626282,0.221014231443405,0.724004685878754,0.629357933998108,0.28235724568367,0.72943377494812,0.660111844539642,0.179384112358093,0.779272854328156,0.611011326313019,0.139279708266258,0.793744921684265,0.600415587425232,0.0973142310976982,0.73365193605423,0.671657681465149,0.103104881942272,0.72943377494812,0.660111844539642,0.179384112358093,0.782359540462494,0.58152174949646,0.223037794232368,0.779272854328156,0.611011326313019,0.139279708266258,0.670827567577362,0.707914471626282,0.221014231443405,0.664811134338379,0.666838407516479,0.336678624153137,0.724004685878754,0.629357933998108,0.28235724568367,0.664811134338379,0.666838407516479,0.336678624153137,0.606435120105743,0.696073889732361,0.384340196847916,0.669441759586334,0.62239396572113,0.405552953481674,0.388659685850143,0.366109490394592,-0.845521926879883,0.475149631500244,0.306749433279037,-0.824704468250275,0.368381857872009,0.302052140235901,-0.879237830638886,0.388659685850143,0.366109490394592,-0.845521926879883,0.368381857872009,0.302052140235901,-0.879237830638886,0.331222862005234,0.392124503850937,-0.858213067054749,0.374907582998276,0.285279929637909,-0.882076799869537,0.331222862005234,0.392124503850937,-0.858213067054749,0.368381857872009,0.302052140235901,-0.879237830638886,0.390979677438736,0.282968491315842,-0.875821650028229,0.39032581448555,0.400725990533829,-0.828893423080444,0.374907582998276,0.285279929637909,-0.882076799869537,0.475149631500244,0.306749433279037,-0.824704468250275,0.492371439933777,0.374513477087021,-0.785690784454346,0.448088407516479,0.346236944198608,-0.824218809604645,0.492371439933777,0.374513477087021,-0.785690784454346,\r\n0.404817759990692,0.517256438732147,-0.754034638404846,0.366292655467987,0.473710179328918,-0.800892114639282,0.814116775989532,0.575292646884918,0.0790698602795601,0.78348708152771,0.61957573890686,0.047682486474514,0.793744921684265,0.600415587425232,0.0973142310976982,0.78348708152771,0.61957573890686,0.047682486474514,0.808261096477509,0.588743567466736,0.00974030513316393,0.806339204311371,0.59145325422287,6.59887155052274e-005,0.404817759990692,0.517256438732147,-0.754034638404846,0.395674377679825,0.506178140640259,-0.766306281089783,0.366292655467987,0.473710179328918,-0.800892114639282,0.55857253074646,0.451337605714798,-0.695910155773163,0.477631419897079,0.46976912021637,-0.74241840839386,0.489823460578918,0.489726096391678,-0.721277475357056,0.489823460578918,0.489726096391678,-0.721277475357056,0.477631419897079,0.46976912021637,-0.74241840839386,0.395674377679825,0.506178140640259,-0.766306281089783,0.575161457061768,0.530484020709991,-0.6227166056633,0.596197605133057,0.461604654788971,-0.656863272190094,0.646458208560944,0.493377923965454,-0.581953465938568,0.506223142147064,0.504185676574707,-0.699667572975159,0.55857253074646,0.451337605714798,-0.695910155773163,0.596197605133057,0.461604654788971,-0.656863272190094,0.825471341609955,0.445768058300018,-0.346248060464859,0.774351716041565,0.485300660133362,-0.406032651662827,0.73989725112915,0.469319760799408,-0.481965750455856,0.72927463054657,0.510252773761749,-0.455851346254349,0.714938700199127,0.490311145782471,-0.498454928398132,0.774351716041565,0.485300660133362,-0.406032651662827,0.646458208560944,0.493377923965454,-0.581953465938568,0.665557622909546,0.509753048419952,-0.545146346092224,0.596099734306335,0.526411175727844,-0.606264114379883,0.665557622909546,0.509753048419952,-0.545146346092224,0.714938700199127,0.490311145782471,-0.498454928398132,0.72927463054657,0.510252773761749,-0.455851346254349,0.825471341609955,0.445768058300018,-0.346248060464859,0.801779806613922,0.490114122629166,-0.341960698366165,0.833279967308044,0.451687663793564,-0.318783044815063,\r\n0.811056077480316,0.571756541728973,-0.123622238636017,0.819117963314056,0.56301087141037,-0.109838016331196,0.808269321918488,0.55500715970993,-0.196640729904175,0.807837605476379,0.549381732940674,-0.213489636778831,0.808269321918488,0.55500715970993,-0.196640729904175,0.803607642650604,0.533601462841034,-0.26359835267067,0.81258487701416,0.505675435066223,-0.289824098348618,0.79945033788681,0.528693974018097,-0.285239636898041,0.803607642650604,0.533601462841034,-0.26359835267067,0.833279967308044,0.451687663793564,-0.318783044815063,0.801779806613922,0.490114122629166,-0.341960698366165,0.81258487701416,0.505675435066223,-0.289824098348618,0.808261096477509,0.588743567466736,0.00974030513316393,0.805961012840271,0.590121507644653,-0.0467254184186459,0.806339204311371,0.59145325422287,6.59887155052274e-005,0.811056077480316,0.571756541728973,-0.123622238636017,0.807689964771271,0.587722778320313,-0.0471042692661285,0.819117963314056,0.56301087141037,-0.109838016331196,0.808261096477509,0.588743567466736,0.00974030513316393,0.807689964771271,0.587722778320313,-0.0471042692661285,0.805961012840271,0.590121507644653,-0.0467254184186459,0.358484983444214,0.196387752890587,-0.912644684314728,0.26212278008461,0.216610431671143,-0.940410256385803,0.308182448148727,0.335347533226013,-0.890261471271515,0.308182448148727,0.335347533226013,-0.890261471271515,0.335493326187134,0.431690901517868,-0.837309420108795,0.390979677438736,0.282968491315842,-0.875821650028229,0.157145738601685,0.125790625810623,-0.979531466960907,0.203637346625328,0.194294095039368,-0.95957362651825,0.222980946302414,0.145332485437393,-0.96392834186554,0.134667068719864,0.172623217105865,-0.975738644599915,0.157145738601685,0.125790625810623,-0.979531466960907,0.0918761640787125,0.031198151409626,-0.995281517505646,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.0918761640787125,0.031198151409626,-0.995281517505646,0.283232748508453,0.172111988067627,-0.943481087684631,0.222980946302414,0.145332485437393,-0.96392834186554,\r\n0.26212278008461,0.216610431671143,-0.940410256385803,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.0238457024097443,0.0708833485841751,-0.997199475765228,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.257648348808289,0.278692722320557,-0.925174355506897,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.18834500014782,0.265499353408813,-0.945534825325012,0.188188418745995,0.497414946556091,0.846855044364929,0.244099229574203,0.591526865959167,0.768447399139404,0.232763260602951,0.588428020477295,0.774321377277374,0.186134561896324,0.683296263217926,0.706017017364502,0.244099229574203,0.591526865959167,0.768447399139404,0.328689843416214,0.656378030776978,0.679066002368927,0.328689843416214,0.656378030776978,0.679066002368927,0.423069179058075,0.556574702262878,0.715008318424225,0.473279416561127,0.643283128738403,0.601824939250946,0.56906533241272,0.6991286277771,0.432878345251083,0.562325894832611,0.663634359836578,0.493334382772446,0.585879683494568,0.667600870132446,0.459406137466431,0.56906533241272,0.6991286277771,0.432878345251083,0.585879683494568,0.667600870132446,0.459406137466431,0.606435120105743,0.696073889732361,0.384340196847916,0.519025444984436,0.543490350246429,0.659720242023468,0.570616543292999,0.614080607891083,0.545253694057465,0.473279416561127,0.643283128738403,0.601824939250946,0.570616543292999,0.614080607891083,0.545253694057465,0.585654854774475,0.591925382614136,0.55374413728714,0.562325894832611,0.663634359836578,0.493334382772446,0.761746466159821,0.326132714748383,-0.559803307056427,0.626571655273438,0.491322219371796,-0.604987919330597,0.685054242610931,0.278504699468613,-0.673153519630432,0.498166143894196,0.503412127494812,-0.70597916841507,0.685054242610931,0.278504699468613,-0.673153519630432,0.626571655273438,0.491322219371796,-0.604987919330597,0.879591763019562,0.383313924074173,-0.281760036945343,0.811598718166351,0.463516265153885,-0.355612248182297,0.853671669960022,0.367664664983749,-0.368872910737991,0.853671669960022,0.367664664983749,-0.368872910737991,\r\n0.808642148971558,0.382527112960815,-0.44695720076561,0.794034779071808,0.376707971096039,-0.477074146270752,0.808642148971558,0.382527112960815,-0.44695720076561,0.761746466159821,0.326132714748383,-0.559803307056427,0.78587681055069,0.34170326590538,-0.515399217605591,0.909617006778717,0.357014417648315,-0.212455853819847,0.845264434814453,0.463748693466187,-0.26545262336731,0.879591763019562,0.383313924074173,-0.281760036945343,-0.259002536535263,0.703525185585022,-0.661792874336243,-0.288437575101852,0.713736534118652,-0.638266205787659,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.288437575101852,0.713736534118652,-0.638266205787659,-0.259002536535263,0.703525185585022,-0.661792874336243,-0.123137764632702,0.645719170570374,-0.753580570220947,-0.0886881574988365,0.666096031665802,-0.740574359893799,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.00608859723433852,0.718112826347351,-0.695899963378906,0.159326434135437,0.562961935997009,-0.810980141162872,0.25574991106987,0.623068332672119,-0.739173650741577,0.498166143894196,0.503412127494812,-0.70597916841507,0.25574991106987,0.623068332672119,-0.739173650741577,0.454428941011429,0.345394611358643,-0.821094870567322,-0.0886881574988365,0.666096031665802,-0.740574359893799,0.154500231146812,0.479269832372665,-0.863961815834045,0.159326434135437,0.562961935997009,-0.810980141162872,0.72943377494812,0.660111844539642,0.179384112358093,0.724004685878754,0.629357933998108,0.28235724568367,0.782359540462494,0.58152174949646,0.223037794232368,0.779272854328156,0.611011326313019,0.139279708266258,0.820189654827118,0.553511321544647,0.144616484642029,0.793744921684265,0.600415587425232,0.0973142310976982,0.779272854328156,0.611011326313019,0.139279708266258,0.782359540462494,0.58152174949646,0.223037794232368,0.820189654827118,0.553511321544647,0.144616484642029,0.664811134338379,0.666838407516479,0.336678624153137,0.723035275936127,0.56877213716507,0.392068892717361,0.724004685878754,0.629357933998108,0.28235724568367,\r\n0.585879683494568,0.667600870132446,0.459406137466431,0.669441759586334,0.62239396572113,0.405552953481674,0.606435120105743,0.696073889732361,0.384340196847916,0.664811134338379,0.666838407516479,0.336678624153137,0.669441759586334,0.62239396572113,0.405552953481674,0.723035275936127,0.56877213716507,0.392068892717361,0.368381857872009,0.302052140235901,-0.879237830638886,0.475149631500244,0.306749433279037,-0.824704468250275,0.380226135253906,0.289634317159653,-0.878373444080353,0.374907582998276,0.285279929637909,-0.882076799869537,0.368381857872009,0.302052140235901,-0.879237830638886,0.340989738702774,0.242705017328262,-0.908196151256561,0.390979677438736,0.282968491315842,-0.875821650028229,0.374907582998276,0.285279929637909,-0.882076799869537,0.358484983444214,0.196387752890587,-0.912644684314728,0.448088407516479,0.346236944198608,-0.824218809604645,0.492371439933777,0.374513477087021,-0.785690784454346,0.366292655467987,0.473710179328918,-0.800892114639282,0.380226135253906,0.289634317159653,-0.878373444080353,0.475149631500244,0.306749433279037,-0.824704468250275,0.448088407516479,0.346236944198608,-0.824218809604645,0.814116775989532,0.575292646884918,0.0790698602795601,0.808261096477509,0.588743567466736,0.00974030513316393,0.78348708152771,0.61957573890686,0.047682486474514,0.814116775989532,0.575292646884918,0.0790698602795601,0.793744921684265,0.600415587425232,0.0973142310976982,0.820189654827118,0.553511321544647,0.144616484642029,0.334080159664154,0.511682510375977,-0.791562557220459,0.366292655467987,0.473710179328918,-0.800892114639282,0.395674377679825,0.506178140640259,-0.766306281089783,0.506223142147064,0.504185676574707,-0.699667572975159,0.477631419897079,0.46976912021637,-0.74241840839386,0.55857253074646,0.451337605714798,-0.695910155773163,0.417371451854706,0.481106907129288,-0.770932674407959,0.395674377679825,0.506178140640259,-0.766306281089783,0.477631419897079,0.46976912021637,-0.74241840839386,0.543053269386292,0.515273332595825,-0.663013100624084,0.596197605133057,0.461604654788971,-0.656863272190094,\r\n0.575161457061768,0.530484020709991,-0.6227166056633,0.646458208560944,0.493377923965454,-0.581953465938568,0.596099734306335,0.526411175727844,-0.606264114379883,0.575161457061768,0.530484020709991,-0.6227166056633,0.543053269386292,0.515273332595825,-0.663013100624084,0.506223142147064,0.504185676574707,-0.699667572975159,0.596197605133057,0.461604654788971,-0.656863272190094,0.774351716041565,0.485300660133362,-0.406032651662827,0.825471341609955,0.445768058300018,-0.346248060464859,0.795255362987518,0.473598808050156,-0.378514230251312,0.72927463054657,0.510252773761749,-0.455851346254349,0.774351716041565,0.485300660133362,-0.406032651662827,0.795255362987518,0.473598808050156,-0.378514230251312,0.596099734306335,0.526411175727844,-0.606264114379883,0.665557622909546,0.509753048419952,-0.545146346092224,0.654360890388489,0.453683465719223,-0.604965269565582,0.72927463054657,0.510252773761749,-0.455851346254349,0.750046908855438,0.445043206214905,-0.489250510931015,0.665557622909546,0.509753048419952,-0.545146346092224,0.839806020259857,0.436201900243759,-0.323192477226257,0.825471341609955,0.445768058300018,-0.346248060464859,0.833279967308044,0.451687663793564,-0.318783044815063,0.808269321918488,0.55500715970993,-0.196640729904175,0.819117963314056,0.56301087141037,-0.109838016331196,0.811422348022461,0.537321388721466,-0.229954838752747,0.811422348022461,0.537321388721466,-0.229954838752747,0.803607642650604,0.533601462841034,-0.26359835267067,0.808269321918488,0.55500715970993,-0.196640729904175,0.81258487701416,0.505675435066223,-0.289824098348618,0.803607642650604,0.533601462841034,-0.26359835267067,0.805741310119629,0.512373268604279,-0.297076433897018,0.839806020259857,0.436201900243759,-0.323192477226257,0.833279967308044,0.451687663793564,-0.318783044815063,0.81258487701416,0.505675435066223,-0.289824098348618,0.807689964771271,0.587722778320313,-0.0471042692661285,0.819501638412476,0.573075413703918,0.00120717473328114,0.819117963314056,0.56301087141037,-0.109838016331196,0.819501638412476,0.573075413703918,0.00120717473328114,\r\n0.807689964771271,0.587722778320313,-0.0471042692661285,0.808261096477509,0.588743567466736,0.00974030513316393,0.358484983444214,0.196387752890587,-0.912644684314728,0.283232748508453,0.172111988067627,-0.943481087684631,0.26212278008461,0.216610431671143,-0.940410256385803,0.308182448148727,0.335347533226013,-0.890261471271515,0.390979677438736,0.282968491315842,-0.875821650028229,0.358484983444214,0.196387752890587,-0.912644684314728,0.157145738601685,0.125790625810623,-0.979531466960907,0.222980946302414,0.145332485437393,-0.96392834186554,0.217290863394737,0.200837031006813,-0.955222010612488,0.0612875930964947,0.111878998577595,-0.991829931735992,0.0918761640787125,0.031198151409626,-0.995281517505646,0.157145738601685,0.125790625810623,-0.979531466960907,0.0612875930964947,0.111878998577595,-0.991829931735992,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.0918761640787125,0.031198151409626,-0.995281517505646,0.217290863394737,0.200837031006813,-0.955222010612488,0.222980946302414,0.145332485437393,-0.96392834186554,0.283232748508453,0.172111988067627,-0.943481087684631,0.024617675691843,0.11939699202776,-0.992541313171387,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.101030454039574,0.30678129196167,-0.946402668952942,0.18834500014782,0.265499353408813,-0.945534825325012,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.257648348808289,0.278692722320557,-0.925174355506897,0.18834500014782,0.265499353408813,-0.945534825325012,0.313081413507462,0.308113813400269,-0.898357272148132,0.244099229574203,0.591526865959167,0.768447399139404,0.188188418745995,0.497414946556091,0.846855044364929,0.261919766664505,0.503132164478302,0.823562920093536,0.423069179058075,0.556574702262878,0.715008318424225,0.328689843416214,0.656378030776978,0.679066002368927,0.244099229574203,0.591526865959167,0.768447399139404,0.519025444984436,0.543490350246429,0.659720242023468,0.473279416561127,0.643283128738403,0.601824939250946,0.423069179058075,0.556574702262878,0.715008318424225,\r\n0.562325894832611,0.663634359836578,0.493334382772446,0.507623672485352,0.672132849693298,0.539032101631165,0.585879683494568,0.667600870132446,0.459406137466431,0.570616543292999,0.614080607891083,0.545253694057465,0.519025444984436,0.543490350246429,0.659720242023468,0.507043361663818,0.580153286457062,0.637439429759979,0.570616543292999,0.614080607891083,0.545253694057465,0.507043361663818,0.580153286457062,0.637439429759979,0.585654854774475,0.591925382614136,0.55374413728714,0.585654854774475,0.591925382614136,0.55374413728714,0.512143969535828,0.642949223518372,0.569495141506195,0.562325894832611,0.663634359836578,0.493334382772446,0.730244934558868,0.303646087646484,-0.611997723579407,0.761746466159821,0.326132714748383,-0.559803307056427,0.685054242610931,0.278504699468613,-0.673153519630432,0.498166143894196,0.503412127494812,-0.70597916841507,0.606450617313385,0.271964401006699,-0.747163116931915,0.685054242610931,0.278504699468613,-0.673153519630432,0.879591763019562,0.383313924074173,-0.281760036945343,0.853671669960022,0.367664664983749,-0.368872910737991,0.913214147090912,0.291172981262207,-0.285058081150055,0.794034779071808,0.376707971096039,-0.477074146270752,0.808642148971558,0.382527112960815,-0.44695720076561,0.78587681055069,0.34170326590538,-0.515399217605591,0.794034779071808,0.376707971096039,-0.477074146270752,0.847080171108246,0.29487818479538,-0.442155957221985,0.853671669960022,0.367664664983749,-0.368872910737991,0.730244934558868,0.303646087646484,-0.611997723579407,0.78587681055069,0.34170326590538,-0.515399217605591,0.761746466159821,0.326132714748383,-0.559803307056427,0.909617006778717,0.357014417648315,-0.212455853819847,0.879591763019562,0.383313924074173,-0.281760036945343,0.913214147090912,0.291172981262207,-0.285058081150055,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.259002536535263,0.703525185585022,-0.661792874336243,-0.260678023099899,0.674859881401062,-0.690370142459869,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.259002536535263,0.703525185585022,-0.661792874336243,\r\n-0.167307153344154,0.65804123878479,-0.734159290790558,-0.123137764632702,0.645719170570374,-0.753580570220947,0.0129243349656463,0.549385488033295,-0.835468947887421,-0.0886881574988365,0.666096031665802,-0.740574359893799,-0.123137764632702,0.645719170570374,-0.753580570220947,-0.242940723896027,0.713185548782349,-0.657530248165131,-0.167307153344154,0.65804123878479,-0.734159290790558,0.25574991106987,0.623068332672119,-0.739173650741577,0.159326434135437,0.562961935997009,-0.810980141162872,0.454428941011429,0.345394611358643,-0.821094870567322,0.498166143894196,0.503412127494812,-0.70597916841507,0.454428941011429,0.345394611358643,-0.821094870567322,0.606450617313385,0.271964401006699,-0.747163116931915,-0.0886881574988365,0.666096031665802,-0.740574359893799,0.0129243349656463,0.549385488033295,-0.835468947887421,0.154500231146812,0.479269832372665,-0.863961815834045,0.154500231146812,0.479269832372665,-0.863961815834045,0.336701273918152,0.361824214458466,-0.869318902492523,0.159326434135437,0.562961935997009,-0.810980141162872,0.767076253890991,0.552773356437683,0.32563105225563,0.782359540462494,0.58152174949646,0.223037794232368,0.724004685878754,0.629357933998108,0.28235724568367,0.782359540462494,0.58152174949646,0.223037794232368,0.824448883533478,0.517453193664551,0.229185685515404,0.820189654827118,0.553511321544647,0.144616484642029,0.767076253890991,0.552773356437683,0.32563105225563,0.724004685878754,0.629357933998108,0.28235724568367,0.723035275936127,0.56877213716507,0.392068892717361,0.585879683494568,0.667600870132446,0.459406137466431,0.655029237270355,0.595686137676239,0.4648597240448,0.669441759586334,0.62239396572113,0.405552953481674,0.669441759586334,0.62239396572113,0.405552953481674,0.655029237270355,0.595686137676239,0.4648597240448,0.723035275936127,0.56877213716507,0.392068892717361,0.368381857872009,0.302052140235901,-0.879237830638886,0.380226135253906,0.289634317159653,-0.878373444080353,0.340989738702774,0.242705017328262,-0.908196151256561,0.374907582998276,0.285279929637909,-0.882076799869537,\r\n0.340989738702774,0.242705017328262,-0.908196151256561,0.356340438127518,0.242876693606377,-0.902237355709076,0.374907582998276,0.285279929637909,-0.882076799869537,0.356340438127518,0.242876693606377,-0.902237355709076,0.358484983444214,0.196387752890587,-0.912644684314728,0.33889427781105,0.429702073335648,-0.836962759494781,0.448088407516479,0.346236944198608,-0.824218809604645,0.366292655467987,0.473710179328918,-0.800892114639282,0.380226135253906,0.289634317159653,-0.878373444080353,0.448088407516479,0.346236944198608,-0.824218809604645,0.33889427781105,0.429702073335648,-0.836962759494781,0.808261096477509,0.588743567466736,0.00974030513316393,0.814116775989532,0.575292646884918,0.0790698602795601,0.810776829719543,0.583477556705475,0.0468473508954048,0.828207552433014,0.541588127613068,0.144064277410507,0.814116775989532,0.575292646884918,0.0790698602795601,0.820189654827118,0.553511321544647,0.144616484642029,0.334080159664154,0.511682510375977,-0.791562557220459,0.286531090736389,0.507524311542511,-0.812600076198578,0.366292655467987,0.473710179328918,-0.800892114639282,0.395674377679825,0.506178140640259,-0.766306281089783,0.417371451854706,0.481106907129288,-0.770932674407959,0.334080159664154,0.511682510375977,-0.791562557220459,0.477631419897079,0.46976912021637,-0.74241840839386,0.506223142147064,0.504185676574707,-0.699667572975159,0.434902638196945,0.494572550058365,-0.752500891685486,0.477631419897079,0.46976912021637,-0.74241840839386,0.434902638196945,0.494572550058365,-0.752500891685486,0.417371451854706,0.481106907129288,-0.770932674407959,0.543053269386292,0.515273332595825,-0.663013100624084,0.575161457061768,0.530484020709991,-0.6227166056633,0.548227667808533,0.516215443611145,-0.658002912998199,0.575161457061768,0.530484020709991,-0.6227166056633,0.596099734306335,0.526411175727844,-0.606264114379883,0.548227667808533,0.516215443611145,-0.658002912998199,0.543053269386292,0.515273332595825,-0.663013100624084,0.548227667808533,0.516215443611145,-0.658002912998199,0.506223142147064,0.504185676574707,-0.699667572975159,\r\n0.816831350326538,0.442240685224533,-0.370418071746826,0.795255362987518,0.473598808050156,-0.378514230251312,0.825471341609955,0.445768058300018,-0.346248060464859,0.72927463054657,0.510252773761749,-0.455851346254349,0.795255362987518,0.473598808050156,-0.378514230251312,0.750046908855438,0.445043206214905,-0.489250510931015,0.750046908855438,0.445043206214905,-0.489250510931015,0.654360890388489,0.453683465719223,-0.604965269565582,0.665557622909546,0.509753048419952,-0.545146346092224,0.596099734306335,0.526411175727844,-0.606264114379883,0.654360890388489,0.453683465719223,-0.604965269565582,0.548227667808533,0.516215443611145,-0.658002912998199,0.839806020259857,0.436201900243759,-0.323192477226257,0.837412476539612,0.451863825321198,-0.307504951953888,0.825471341609955,0.445768058300018,-0.346248060464859,0.817903876304626,0.524917185306549,-0.235573783516884,0.811422348022461,0.537321388721466,-0.229954838752747,0.819117963314056,0.56301087141037,-0.109838016331196,0.811422348022461,0.537321388721466,-0.229954838752747,0.805741310119629,0.512373268604279,-0.297076433897018,0.803607642650604,0.533601462841034,-0.26359835267067,0.81258487701416,0.505675435066223,-0.289824098348618,0.805741310119629,0.512373268604279,-0.297076433897018,0.839806020259857,0.436201900243759,-0.323192477226257,0.819117963314056,0.56301087141037,-0.109838016331196,0.819501638412476,0.573075413703918,0.00120717473328114,0.82841157913208,0.558310508728027,-0.0449833162128925,0.808261096477509,0.588743567466736,0.00974030513316393,0.824832618236542,0.564216434955597,0.0362031012773514,0.819501638412476,0.573075413703918,0.00120717473328114,0.283232748508453,0.172111988067627,-0.943481087684631,0.358484983444214,0.196387752890587,-0.912644684314728,0.334356009960175,0.233077198266983,-0.913170874118805,0.217290863394737,0.200837031006813,-0.955222010612488,0.140197172760963,0.224610880017281,-0.96431040763855,0.157145738601685,0.125790625810623,-0.979531466960907,0.157145738601685,0.125790625810623,-0.979531466960907,0.140197172760963,0.224610880017281,-0.96431040763855,\r\n0.0612875930964947,0.111878998577595,-0.991829931735992,0.0612875930964947,0.111878998577595,-0.991829931735992,0.00583231262862682,0.202023208141327,-0.979363322257996,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.217290863394737,0.200837031006813,-0.955222010612488,0.283232748508453,0.172111988067627,-0.943481087684631,0.246283024549484,0.302793025970459,-0.920685052871704,0.0405526459217072,0.0978944301605225,-0.99437016248703,0.024617675691843,0.11939699202776,-0.992541313171387,0.101030454039574,0.30678129196167,-0.946402668952942,0.024617675691843,0.11939699202776,-0.992541313171387,0.00866861362010241,0.0185559261590242,-0.999790191650391,0.00583231262862682,0.202023208141327,-0.979363322257996,0.18834500014782,0.265499353408813,-0.945534825325012,0.101030454039574,0.30678129196167,-0.946402668952942,0.238100737333298,0.299225687980652,-0.923997819423676,0.313081413507462,0.308113813400269,-0.898357272148132,0.18834500014782,0.265499353408813,-0.945534825325012,0.238100737333298,0.299225687980652,-0.923997819423676,0.188188418745995,0.497414946556091,0.846855044364929,0.250383317470551,0.412055850028992,0.876081109046936,0.261919766664505,0.503132164478302,0.823562920093536,0.261919766664505,0.503132164478302,0.823562920093536,0.403641879558563,0.467081874608994,0.786706805229187,0.244099229574203,0.591526865959167,0.768447399139404,0.423069179058075,0.556574702262878,0.715008318424225,0.244099229574203,0.591526865959167,0.768447399139404,0.403641879558563,0.467081874608994,0.786706805229187,0.519025444984436,0.543490350246429,0.659720242023468,0.423069179058075,0.556574702262878,0.715008318424225,0.481950372457504,0.480343014001846,0.732798933982849,0.507623672485352,0.672132849693298,0.539032101631165,0.562325894832611,0.663634359836578,0.493334382772446,0.512143969535828,0.642949223518372,0.569495141506195,0.585879683494568,0.667600870132446,0.459406137466431,0.507623672485352,0.672132849693298,0.539032101631165,0.574954032897949,0.633457779884338,0.517840564250946,0.507043361663818,0.580153286457062,0.637439429759979,\r\n0.519025444984436,0.543490350246429,0.659720242023468,0.480609893798828,0.50423800945282,0.717466354370117,0.512143969535828,0.642949223518372,0.569495141506195,0.585654854774475,0.591925382614136,0.55374413728714,0.507043361663818,0.580153286457062,0.637439429759979,0.612536668777466,0.229054495692253,-0.756526708602905,0.730244934558868,0.303646087646484,-0.611997723579407,0.685054242610931,0.278504699468613,-0.673153519630432,0.62286114692688,0.154855266213417,-0.766853034496307,0.685054242610931,0.278504699468613,-0.673153519630432,0.606450617313385,0.271964401006699,-0.747163116931915,0.853671669960022,0.367664664983749,-0.368872910737991,0.847080171108246,0.29487818479538,-0.442155957221985,0.913214147090912,0.291172981262207,-0.285058081150055,0.794034779071808,0.376707971096039,-0.477074146270752,0.78587681055069,0.34170326590538,-0.515399217605591,0.719132244586945,0.396801918745041,-0.57043582201004,0.734265327453613,0.352282822132111,-0.580302596092224,0.847080171108246,0.29487818479538,-0.442155957221985,0.794034779071808,0.376707971096039,-0.477074146270752,0.719132244586945,0.396801918745041,-0.57043582201004,0.78587681055069,0.34170326590538,-0.515399217605591,0.730244934558868,0.303646087646484,-0.611997723579407,0.945940136909485,0.265357404947281,-0.186500906944275,0.909617006778717,0.357014417648315,-0.212455853819847,0.913214147090912,0.291172981262207,-0.285058081150055,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.259002536535263,0.703525185585022,-0.661792874336243,0.0129243349656463,0.549385488033295,-0.835468947887421,-0.123137764632702,0.645719170570374,-0.753580570220947,0.0537038668990135,0.50846004486084,-0.859409034252167,-0.123137764632702,0.645719170570374,-0.753580570220947,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.0143053559586406,0.557919442653656,-0.82977169752121,0.454428941011429,0.345394611358643,-0.821094870567322,0.159326434135437,0.562961935997009,-0.810980141162872,0.336701273918152,0.361824214458466,-0.869318902492523,\r\n0.62286114692688,0.154855266213417,-0.766853034496307,0.606450617313385,0.271964401006699,-0.747163116931915,0.454428941011429,0.345394611358643,-0.821094870567322,0.0129243349656463,0.549385488033295,-0.835468947887421,0.201701864600182,0.365278452634811,-0.908783733844757,0.154500231146812,0.479269832372665,-0.863961815834045,0.35015657544136,0.206687808036804,-0.913602948188782,0.336701273918152,0.361824214458466,-0.869318902492523,0.154500231146812,0.479269832372665,-0.863961815834045,0.782359540462494,0.58152174949646,0.223037794232368,0.767076253890991,0.552773356437683,0.32563105225563,0.824448883533478,0.517453193664551,0.229185685515404,0.820189654827118,0.553511321544647,0.144616484642029,0.824448883533478,0.517453193664551,0.229185685515404,0.828207552433014,0.541588127613068,0.144064277410507,0.74688732624054,0.508870363235474,0.428030461072922,0.767076253890991,0.552773356437683,0.32563105225563,0.723035275936127,0.56877213716507,0.392068892717361,0.585879683494568,0.667600870132446,0.459406137466431,0.574954032897949,0.633457779884338,0.517840564250946,0.655029237270355,0.595686137676239,0.4648597240448,0.655029237270355,0.595686137676239,0.4648597240448,0.703154683113098,0.527318716049194,0.476978272199631,0.723035275936127,0.56877213716507,0.392068892717361,0.380226135253906,0.289634317159653,-0.878373444080353,0.348900139331818,0.232899457216263,-0.907759010791779,0.340989738702774,0.242705017328262,-0.908196151256561,0.356340438127518,0.242876693606377,-0.902237355709076,0.340989738702774,0.242705017328262,-0.908196151256561,0.348900139331818,0.232899457216263,-0.907759010791779,0.334356009960175,0.233077198266983,-0.913170874118805,0.358484983444214,0.196387752890587,-0.912644684314728,0.356340438127518,0.242876693606377,-0.902237355709076,0.286531090736389,0.507524311542511,-0.812600076198578,0.33889427781105,0.429702073335648,-0.836962759494781,0.366292655467987,0.473710179328918,-0.800892114639282,0.33889427781105,0.429702073335648,-0.836962759494781,0.249627038836479,0.4094178378582,-0.877532482147217,\r\n0.380226135253906,0.289634317159653,-0.878373444080353,0.810776829719543,0.583477556705475,0.0468473508954048,0.814116775989532,0.575292646884918,0.0790698602795601,0.834874629974365,0.54270613193512,0.0919470340013504,0.824832618236542,0.564216434955597,0.0362031012773514,0.808261096477509,0.588743567466736,0.00974030513316393,0.810776829719543,0.583477556705475,0.0468473508954048,0.834874629974365,0.54270613193512,0.0919470340013504,0.814116775989532,0.575292646884918,0.0790698602795601,0.828207552433014,0.541588127613068,0.144064277410507,0.334080159664154,0.511682510375977,-0.791562557220459,0.265999853610992,0.511253297328949,-0.817229449748993,0.286531090736389,0.507524311542511,-0.812600076198578,0.334080159664154,0.511682510375977,-0.791562557220459,0.417371451854706,0.481106907129288,-0.770932674407959,0.372822552919388,0.479438543319702,-0.794444382190704,0.434902638196945,0.494572550058365,-0.752500891685486,0.506223142147064,0.504185676574707,-0.699667572975159,0.511653780937195,0.476995199918747,-0.714622855186462,0.434902638196945,0.494572550058365,-0.752500891685486,0.372822552919388,0.479438543319702,-0.794444382190704,0.417371451854706,0.481106907129288,-0.770932674407959,0.506223142147064,0.504185676574707,-0.699667572975159,0.548227667808533,0.516215443611145,-0.658002912998199,0.511653780937195,0.476995199918747,-0.714622855186462,0.795255362987518,0.473598808050156,-0.378514230251312,0.816831350326538,0.442240685224533,-0.370418071746826,0.750046908855438,0.445043206214905,-0.489250510931015,0.816831350326538,0.442240685224533,-0.370418071746826,0.825471341609955,0.445768058300018,-0.346248060464859,0.837412476539612,0.451863825321198,-0.307504951953888,0.750046908855438,0.445043206214905,-0.489250510931015,0.759898722171783,0.380318582057953,-0.527173161506653,0.654360890388489,0.453683465719223,-0.604965269565582,0.654360890388489,0.453683465719223,-0.604965269565582,0.599812924861908,0.409123659133911,-0.687635183334351,0.548227667808533,0.516215443611145,-0.658002912998199,0.816169083118439,0.457777738571167,-0.352572739124298,\r\n0.837412476539612,0.451863825321198,-0.307504951953888,0.839806020259857,0.436201900243759,-0.323192477226257,0.819110810756683,0.464869916439056,-0.336085289716721,0.811422348022461,0.537321388721466,-0.229954838752747,0.817903876304626,0.524917185306549,-0.235573783516884,0.817903876304626,0.524917185306549,-0.235573783516884,0.819117963314056,0.56301087141037,-0.109838016331196,0.826809048652649,0.547323763370514,-0.129705190658569,0.811422348022461,0.537321388721466,-0.229954838752747,0.819110810756683,0.464869916439056,-0.336085289716721,0.805741310119629,0.512373268604279,-0.297076433897018,0.805741310119629,0.512373268604279,-0.297076433897018,0.819110810756683,0.464869916439056,-0.336085289716721,0.839806020259857,0.436201900243759,-0.323192477226257,0.85466855764389,0.518877267837524,0.0175468232482672,0.82841157913208,0.558310508728027,-0.0449833162128925,0.819501638412476,0.573075413703918,0.00120717473328114,0.819117963314056,0.56301087141037,-0.109838016331196,0.82841157913208,0.558310508728027,-0.0449833162128925,0.826809048652649,0.547323763370514,-0.129705190658569,0.819501638412476,0.573075413703918,0.00120717473328114,0.824832618236542,0.564216434955597,0.0362031012773514,0.847087025642395,0.529474377632141,0.0458304546773434,0.283232748508453,0.172111988067627,-0.943481087684631,0.334356009960175,0.233077198266983,-0.913170874118805,0.246283024549484,0.302793025970459,-0.920685052871704,0.217290863394737,0.200837031006813,-0.955222010612488,0.204799517989159,0.197753340005875,-0.958619177341461,0.140197172760963,0.224610880017281,-0.96431040763855,0.140197172760963,0.224610880017281,-0.96431040763855,0.046054519712925,0.254997193813324,-0.965844333171844,0.0612875930964947,0.111878998577595,-0.991829931735992,0.046054519712925,0.254997193813324,-0.965844333171844,0.00583231262862682,0.202023208141327,-0.979363322257996,0.0612875930964947,0.111878998577595,-0.991829931735992,0.144601911306381,0.350799053907394,-0.925218999385834,0.217290863394737,0.200837031006813,-0.955222010612488,0.246283024549484,0.302793025970459,-0.920685052871704,\r\n0.101030454039574,0.30678129196167,-0.946402668952942,0.024617675691843,0.11939699202776,-0.992541313171387,0.00583231262862682,0.202023208141327,-0.979363322257996,0.101030454039574,0.30678129196167,-0.946402668952942,0.152982294559479,0.346919894218445,-0.925333917140961,0.238100737333298,0.299225687980652,-0.923997819423676,0.345145970582962,0.420059055089951,0.839299976825714,0.261919766664505,0.503132164478302,0.823562920093536,0.250383317470551,0.412055850028992,0.876081109046936,0.261919766664505,0.503132164478302,0.823562920093536,0.345145970582962,0.420059055089951,0.839299976825714,0.403641879558563,0.467081874608994,0.786706805229187,0.481950372457504,0.480343014001846,0.732798933982849,0.423069179058075,0.556574702262878,0.715008318424225,0.403641879558563,0.467081874608994,0.786706805229187,0.481950372457504,0.480343014001846,0.732798933982849,0.480609893798828,0.50423800945282,0.717466354370117,0.519025444984436,0.543490350246429,0.659720242023468,0.507623672485352,0.672132849693298,0.539032101631165,0.512143969535828,0.642949223518372,0.569495141506195,0.425808280706406,0.640395879745483,0.639202773571014,0.494468063116074,0.62507301568985,0.603974342346191,0.574954032897949,0.633457779884338,0.517840564250946,0.507623672485352,0.672132849693298,0.539032101631165,0.410007953643799,0.573296368122101,0.709383249282837,0.507043361663818,0.580153286457062,0.637439429759979,0.480609893798828,0.50423800945282,0.717466354370117,0.507043361663818,0.580153286457062,0.637439429759979,0.425808280706406,0.640395879745483,0.639202773571014,0.512143969535828,0.642949223518372,0.569495141506195,0.600315392017365,0.402393192052841,-0.691159129142761,0.730244934558868,0.303646087646484,-0.611997723579407,0.612536668777466,0.229054495692253,-0.756526708602905,0.612536668777466,0.229054495692253,-0.756526708602905,0.685054242610931,0.278504699468613,-0.673153519630432,0.62286114692688,0.154855266213417,-0.766853034496307,0.913214147090912,0.291172981262207,-0.285058081150055,0.847080171108246,0.29487818479538,-0.442155957221985,\r\n0.931300163269043,0.16876982152462,-0.322794944047928,0.734265327453613,0.352282822132111,-0.580302596092224,0.794034779071808,0.376707971096039,-0.477074146270752,0.719132244586945,0.396801918745041,-0.57043582201004,0.777235329151154,0.188205435872078,-0.600403010845184,0.847080171108246,0.29487818479538,-0.442155957221985,0.734265327453613,0.352282822132111,-0.580302596092224,0.600315392017365,0.402393192052841,-0.691159129142761,0.719132244586945,0.396801918745041,-0.57043582201004,0.730244934558868,0.303646087646484,-0.611997723579407,0.958990097045898,0.18850465118885,-0.211669251322746,0.945940136909485,0.265357404947281,-0.186500906944275,0.913214147090912,0.291172981262207,-0.285058081150055,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.179577097296715,0.57805335521698,-0.79599392414093,0.0537038668990135,0.50846004486084,-0.859409034252167,-0.123137764632702,0.645719170570374,-0.753580570220947,-0.0143053559586406,0.557919442653656,-0.82977169752121,0.0537038668990135,0.50846004486084,-0.859409034252167,0.187297150492668,0.409298807382584,-0.892969250679016,0.0129243349656463,0.549385488033295,-0.835468947887421,-0.0143053559586406,0.557919442653656,-0.82977169752121,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.0557124838232994,0.559533596038818,-0.826933026313782,0.454428941011429,0.345394611358643,-0.821094870567322,0.336701273918152,0.361824214458466,-0.869318902492523,0.480545401573181,0.150947436690331,-0.863881289958954,0.454428941011429,0.345394611358643,-0.821094870567322,0.480545401573181,0.150947436690331,-0.863881289958954,0.62286114692688,0.154855266213417,-0.766853034496307,0.201701864600182,0.365278452634811,-0.908783733844757,0.0129243349656463,0.549385488033295,-0.835468947887421,0.187297150492668,0.409298807382584,-0.892969250679016,0.35015657544136,0.206687808036804,-0.913602948188782,0.154500231146812,0.479269832372665,-0.863961815834045,0.201701864600182,0.365278452634811,-0.908783733844757,0.480545401573181,0.150947436690331,-0.863881289958954,\r\n0.336701273918152,0.361824214458466,-0.869318902492523,0.35015657544136,0.206687808036804,-0.913602948188782,0.767076253890991,0.552773356437683,0.32563105225563,0.794162154197693,0.482192367315292,0.369860589504242,0.824448883533478,0.517453193664551,0.229185685515404,0.847849249839783,0.503987729549408,0.164766073226929,0.828207552433014,0.541588127613068,0.144064277410507,0.824448883533478,0.517453193664551,0.229185685515404,0.767076253890991,0.552773356437683,0.32563105225563,0.74688732624054,0.508870363235474,0.428030461072922,0.794162154197693,0.482192367315292,0.369860589504242,0.703154683113098,0.527318716049194,0.476978272199631,0.74688732624054,0.508870363235474,0.428030461072922,0.723035275936127,0.56877213716507,0.392068892717361,0.574954032897949,0.633457779884338,0.517840564250946,0.613347053527832,0.557211101055145,0.559750974178314,0.655029237270355,0.595686137676239,0.4648597240448,0.703154683113098,0.527318716049194,0.476978272199631,0.655029237270355,0.595686137676239,0.4648597240448,0.613347053527832,0.557211101055145,0.559750974178314,0.304266154766083,0.384534657001495,-0.871524572372437,0.348900139331818,0.232899457216263,-0.907759010791779,0.380226135253906,0.289634317159653,-0.878373444080353,0.348900139331818,0.232899457216263,-0.907759010791779,0.324295669794083,0.352063655853271,-0.877999663352966,0.356340438127518,0.242876693606377,-0.902237355709076,0.356340438127518,0.242876693606377,-0.902237355709076,0.324295669794083,0.352063655853271,-0.877999663352966,0.334356009960175,0.233077198266983,-0.913170874118805,0.33889427781105,0.429702073335648,-0.836962759494781,0.286531090736389,0.507524311542511,-0.812600076198578,0.221253409981728,0.505331635475159,-0.834078371524811,0.249627038836479,0.4094178378582,-0.877532482147217,0.33889427781105,0.429702073335648,-0.836962759494781,0.221253409981728,0.505331635475159,-0.834078371524811,0.380226135253906,0.289634317159653,-0.878373444080353,0.249627038836479,0.4094178378582,-0.877532482147217,0.304266154766083,0.384534657001495,-0.871524572372437,\r\n0.810776829719543,0.583477556705475,0.0468473508954048,0.834874629974365,0.54270613193512,0.0919470340013504,0.824832618236542,0.564216434955597,0.0362031012773514,0.834874629974365,0.54270613193512,0.0919470340013504,0.828207552433014,0.541588127613068,0.144064277410507,0.847849249839783,0.503987729549408,0.164766073226929,0.334080159664154,0.511682510375977,-0.791562557220459,0.372822552919388,0.479438543319702,-0.794444382190704,0.265999853610992,0.511253297328949,-0.817229449748993,0.265999853610992,0.511253297328949,-0.817229449748993,0.221253409981728,0.505331635475159,-0.834078371524811,0.286531090736389,0.507524311542511,-0.812600076198578,0.511653780937195,0.476995199918747,-0.714622855186462,0.527357339859009,0.3971087038517,-0.751131653785706,0.434902638196945,0.494572550058365,-0.752500891685486,0.46084189414978,0.402742564678192,-0.790836989879608,0.372822552919388,0.479438543319702,-0.794444382190704,0.434902638196945,0.494572550058365,-0.752500891685486,0.511653780937195,0.476995199918747,-0.714622855186462,0.548227667808533,0.516215443611145,-0.658002912998199,0.599812924861908,0.409123659133911,-0.687635183334351,0.816831350326538,0.442240685224533,-0.370418071746826,0.759898722171783,0.380318582057953,-0.527173161506653,0.750046908855438,0.445043206214905,-0.489250510931015,0.816831350326538,0.442240685224533,-0.370418071746826,0.837412476539612,0.451863825321198,-0.307504951953888,0.798828661441803,0.511390447616577,-0.3167844414711,0.693500459194183,0.348946750164032,-0.630311965942383,0.654360890388489,0.453683465719223,-0.604965269565582,0.759898722171783,0.380318582057953,-0.527173161506653,0.693500459194183,0.348946750164032,-0.630311965942383,0.599812924861908,0.409123659133911,-0.687635183334351,0.654360890388489,0.453683465719223,-0.604965269565582,0.816169083118439,0.457777738571167,-0.352572739124298,0.785362482070923,0.527154803276062,-0.324520289897919,0.837412476539612,0.451863825321198,-0.307504951953888,0.816169083118439,0.457777738571167,-0.352572739124298,0.839806020259857,0.436201900243759,-0.323192477226257,\r\n0.819110810756683,0.464869916439056,-0.336085289716721,0.817903876304626,0.524917185306549,-0.235573783516884,0.768262088298798,0.513642191886902,-0.382027506828308,0.819110810756683,0.464869916439056,-0.336085289716721,0.834484219551086,0.525541126728058,-0.165657684206963,0.817903876304626,0.524917185306549,-0.235573783516884,0.826809048652649,0.547323763370514,-0.129705190658569,0.85466855764389,0.518877267837524,0.0175468232482672,0.846353471279144,0.528426766395569,-0.066714271903038,0.82841157913208,0.558310508728027,-0.0449833162128925,0.847087025642395,0.529474377632141,0.0458304546773434,0.85466855764389,0.518877267837524,0.0175468232482672,0.819501638412476,0.573075413703918,0.00120717473328114,0.846353471279144,0.528426766395569,-0.066714271903038,0.826809048652649,0.547323763370514,-0.129705190658569,0.82841157913208,0.558310508728027,-0.0449833162128925,0.834874629974365,0.54270613193512,0.0919470340013504,0.847087025642395,0.529474377632141,0.0458304546773434,0.824832618236542,0.564216434955597,0.0362031012773514,0.246283024549484,0.302793025970459,-0.920685052871704,0.334356009960175,0.233077198266983,-0.913170874118805,0.270312577486038,0.420356661081314,-0.866158902645111,0.195351049304008,0.131715506315231,-0.97184818983078,0.204799517989159,0.197753340005875,-0.958619177341461,0.217290863394737,0.200837031006813,-0.955222010612488,0.140197172760963,0.224610880017281,-0.96431040763855,0.204799517989159,0.197753340005875,-0.958619177341461,0.111799716949463,0.240348473191261,-0.96422678232193,0.140197172760963,0.224610880017281,-0.96431040763855,0.111799716949463,0.240348473191261,-0.96422678232193,0.046054519712925,0.254997193813324,-0.965844333171844,0.00583231262862682,0.202023208141327,-0.979363322257996,0.046054519712925,0.254997193813324,-0.965844333171844,0.0663795322179794,0.314030379056931,-0.947089552879334,0.144601911306381,0.350799053907394,-0.925218999385834,0.0361881889402866,0.305526077747345,-0.951495707035065,0.217290863394737,0.200837031006813,-0.955222010612488,0.13078573346138,0.457001507282257,-0.879798054695129,\r\n0.144601911306381,0.350799053907394,-0.925218999385834,0.246283024549484,0.302793025970459,-0.920685052871704,0.101030454039574,0.30678129196167,-0.946402668952942,0.00583231262862682,0.202023208141327,-0.979363322257996,0.0663795322179794,0.314030379056931,-0.947089552879334,0.101030454039574,0.30678129196167,-0.946402668952942,0.135795697569847,0.340326398611069,-0.930450081825256,0.152982294559479,0.346919894218445,-0.925333917140961,0.161599054932594,0.251975297927856,-0.954145729541779,0.238100737333298,0.299225687980652,-0.923997819423676,0.152982294559479,0.346919894218445,-0.925333917140961,0.345145970582962,0.420059055089951,0.839299976825714,0.250383317470551,0.412055850028992,0.876081109046936,0.367827922105789,0.405481457710266,0.83683168888092,0.345145970582962,0.420059055089951,0.839299976825714,0.367827922105789,0.405481457710266,0.83683168888092,0.403641879558563,0.467081874608994,0.786706805229187,0.481950372457504,0.480343014001846,0.732798933982849,0.403641879558563,0.467081874608994,0.786706805229187,0.412040889263153,0.456621170043945,0.78849184513092,0.481950372457504,0.480343014001846,0.732798933982849,0.412040889263153,0.456621170043945,0.78849184513092,0.480609893798828,0.50423800945282,0.717466354370117,0.494468063116074,0.62507301568985,0.603974342346191,0.507623672485352,0.672132849693298,0.539032101631165,0.425808280706406,0.640395879745483,0.639202773571014,0.574954032897949,0.633457779884338,0.517840564250946,0.494468063116074,0.62507301568985,0.603974342346191,0.613347053527832,0.557211101055145,0.559750974178314,0.507043361663818,0.580153286457062,0.637439429759979,0.410007953643799,0.573296368122101,0.709383249282837,0.425808280706406,0.640395879745483,0.639202773571014,0.410007953643799,0.573296368122101,0.709383249282837,0.480609893798828,0.50423800945282,0.717466354370117,0.35074907541275,0.538353741168976,0.766257226467133,0.600315392017365,0.402393192052841,-0.691159129142761,0.612536668777466,0.229054495692253,-0.756526708602905,0.442525804042816,0.332502067089081,-0.832834422588348,\r\n0.62286114692688,0.154855266213417,-0.766853034496307,0.554553389549255,0.12544196844101,-0.822638869285584,0.612536668777466,0.229054495692253,-0.756526708602905,0.881146907806396,0.143092185258865,-0.450671255588531,0.931300163269043,0.16876982152462,-0.322794944047928,0.847080171108246,0.29487818479538,-0.442155957221985,0.958990097045898,0.18850465118885,-0.211669251322746,0.913214147090912,0.291172981262207,-0.285058081150055,0.931300163269043,0.16876982152462,-0.322794944047928,0.719132244586945,0.396801918745041,-0.57043582201004,0.630015850067139,0.42597097158432,-0.649329304695129,0.734265327453613,0.352282822132111,-0.580302596092224,0.777235329151154,0.188205435872078,-0.600403010845184,0.881146907806396,0.143092185258865,-0.450671255588531,0.847080171108246,0.29487818479538,-0.442155957221985,0.690667033195496,0.24432073533535,-0.680651366710663,0.777235329151154,0.188205435872078,-0.600403010845184,0.734265327453613,0.352282822132111,-0.580302596092224,0.630015850067139,0.42597097158432,-0.649329304695129,0.719132244586945,0.396801918745041,-0.57043582201004,0.600315392017365,0.402393192052841,-0.691159129142761,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.260459840297699,0.65387099981308,-0.710361301898956,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.167307153344154,0.65804123878479,-0.734159290790558,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.0557124838232994,0.559533596038818,-0.826933026313782,0.0537038668990135,0.50846004486084,-0.859409034252167,-0.0143053559586406,0.557919442653656,-0.82977169752121,0.155080914497375,0.373302549123764,-0.914655685424805,0.213937431573868,0.322935730218887,-0.921923637390137,0.187297150492668,0.409298807382584,-0.892969250679016,0.0537038668990135,0.50846004486084,-0.859409034252167,0.12323185056448,0.384091466665268,-0.915034174919128,-0.0143053559586406,0.557919442653656,-0.82977169752121,-0.0557124838232994,0.559533596038818,-0.826933026313782,0.480545401573181,0.150947436690331,-0.863881289958954,0.554553389549255,0.12544196844101,-0.822638869285584,\r\n0.62286114692688,0.154855266213417,-0.766853034496307,0.308716088533401,0.237582340836525,-0.921004295349121,0.201701864600182,0.365278452634811,-0.908783733844757,0.187297150492668,0.409298807382584,-0.892969250679016,0.308716088533401,0.237582340836525,-0.921004295349121,0.35015657544136,0.206687808036804,-0.913602948188782,0.201701864600182,0.365278452634811,-0.908783733844757,0.35015657544136,0.206687808036804,-0.913602948188782,0.434815376996994,0.168025434017181,-0.884705007076263,0.480545401573181,0.150947436690331,-0.863881289958954,0.835299611091614,0.467924386262894,0.288654059171677,0.824448883533478,0.517453193664551,0.229185685515404,0.794162154197693,0.482192367315292,0.369860589504242,0.858576714992523,0.463511198759079,0.219096451997757,0.847849249839783,0.503987729549408,0.164766073226929,0.824448883533478,0.517453193664551,0.229185685515404,0.74688732624054,0.508870363235474,0.428030461072922,0.745216429233551,0.45610037446022,0.486440926790237,0.794162154197693,0.482192367315292,0.369860589504242,0.703154683113098,0.527318716049194,0.476978272199631,0.724154055118561,0.47552564740181,0.499475866556168,0.74688732624054,0.508870363235474,0.428030461072922,0.703154683113098,0.527318716049194,0.476978272199631,0.613347053527832,0.557211101055145,0.559750974178314,0.695143640041351,0.44206577539444,0.56688004732132,0.348900139331818,0.232899457216263,-0.907759010791779,0.304266154766083,0.384534657001495,-0.871524572372437,0.324295669794083,0.352063655853271,-0.877999663352966,0.324295669794083,0.352063655853271,-0.877999663352966,0.270312577486038,0.420356661081314,-0.866158902645111,0.334356009960175,0.233077198266983,-0.913170874118805,0.221253409981728,0.505331635475159,-0.834078371524811,0.217232570052147,0.508866369724274,-0.832985520362854,0.249627038836479,0.4094178378582,-0.877532482147217,0.249627038836479,0.4094178378582,-0.877532482147217,0.217232570052147,0.508866369724274,-0.832985520362854,0.304266154766083,0.384534657001495,-0.871524572372437,0.872229874134064,0.475240051746368,0.115593314170837,\r\n0.834874629974365,0.54270613193512,0.0919470340013504,0.847849249839783,0.503987729549408,0.164766073226929,0.262356758117676,0.529748618602753,-0.806557595729828,0.265999853610992,0.511253297328949,-0.817229449748993,0.372822552919388,0.479438543319702,-0.794444382190704,0.265999853610992,0.511253297328949,-0.817229449748993,0.262356758117676,0.529748618602753,-0.806557595729828,0.221253409981728,0.505331635475159,-0.834078371524811,0.511653780937195,0.476995199918747,-0.714622855186462,0.599812924861908,0.409123659133911,-0.687635183334351,0.527357339859009,0.3971087038517,-0.751131653785706,0.527357339859009,0.3971087038517,-0.751131653785706,0.46084189414978,0.402742564678192,-0.790836989879608,0.434902638196945,0.494572550058365,-0.752500891685486,0.46084189414978,0.402742564678192,-0.790836989879608,0.442387670278549,0.372477382421494,-0.815814673900604,0.372822552919388,0.479438543319702,-0.794444382190704,0.759898722171783,0.380318582057953,-0.527173161506653,0.816831350326538,0.442240685224533,-0.370418071746826,0.811578631401062,0.350847393274307,-0.467168182134628,0.785362482070923,0.527154803276062,-0.324520289897919,0.798828661441803,0.511390447616577,-0.3167844414711,0.837412476539612,0.451863825321198,-0.307504951953888,0.816831350326538,0.442240685224533,-0.370418071746826,0.798828661441803,0.511390447616577,-0.3167844414711,0.805752396583557,0.459602147340775,-0.373535484075546,0.759898722171783,0.380318582057953,-0.527173161506653,0.758771955966949,0.304197996854782,-0.575958788394928,0.693500459194183,0.348946750164032,-0.630311965942383,0.693500459194183,0.348946750164032,-0.630311965942383,0.608176171779633,0.329893112182617,-0.722005605697632,0.599812924861908,0.409123659133911,-0.687635183334351,0.816169083118439,0.457777738571167,-0.352572739124298,0.732671141624451,0.546495378017426,-0.405629932880402,0.785362482070923,0.527154803276062,-0.324520289897919,0.816169083118439,0.457777738571167,-0.352572739124298,0.819110810756683,0.464869916439056,-0.336085289716721,0.778719305992126,0.470940321683884,-0.414501249790192,\r\n0.817903876304626,0.524917185306549,-0.235573783516884,0.820470631122589,0.501712501049042,-0.27406632900238,0.768262088298798,0.513642191886902,-0.382027506828308,0.768262088298798,0.513642191886902,-0.382027506828308,0.778719305992126,0.470940321683884,-0.414501249790192,0.819110810756683,0.464869916439056,-0.336085289716721,0.817903876304626,0.524917185306549,-0.235573783516884,0.834484219551086,0.525541126728058,-0.165657684206963,0.820470631122589,0.501712501049042,-0.27406632900238,0.834484219551086,0.525541126728058,-0.165657684206963,0.826809048652649,0.547323763370514,-0.129705190658569,0.846353471279144,0.528426766395569,-0.066714271903038,0.85466855764389,0.518877267837524,0.0175468232482672,0.887277007102966,0.460975229740143,0.0155329573899508,0.846353471279144,0.528426766395569,-0.066714271903038,0.847087025642395,0.529474377632141,0.0458304546773434,0.879744529724121,0.470689594745636,0.0670878440141678,0.85466855764389,0.518877267837524,0.0175468232482672,0.834874629974365,0.54270613193512,0.0919470340013504,0.858352720737457,0.508522152900696,0.0680865123867989,0.847087025642395,0.529474377632141,0.0458304546773434,0.246283024549484,0.302793025970459,-0.920685052871704,0.270312577486038,0.420356661081314,-0.866158902645111,0.175689101219177,0.500607550144196,-0.847658753395081,0.195263877511024,0.114438682794571,-0.974051177501678,0.204799517989159,0.197753340005875,-0.958619177341461,0.195351049304008,0.131715506315231,-0.97184818983078,0.0361881889402866,0.305526077747345,-0.951495707035065,0.195351049304008,0.131715506315231,-0.97184818983078,0.217290863394737,0.200837031006813,-0.955222010612488,0.195263877511024,0.114438682794571,-0.974051177501678,0.111799716949463,0.240348473191261,-0.96422678232193,0.204799517989159,0.197753340005875,-0.958619177341461,0.111799716949463,0.240348473191261,-0.96422678232193,0.0663795322179794,0.314030379056931,-0.947089552879334,0.046054519712925,0.254997193813324,-0.965844333171844,0.144601911306381,0.350799053907394,-0.925218999385834,-0.0313211157917976,0.544300675392151,-0.838305175304413,\r\n0.0361881889402866,0.305526077747345,-0.951495707035065,-0.0313211157917976,0.544300675392151,-0.838305175304413,0.144601911306381,0.350799053907394,-0.925218999385834,0.13078573346138,0.457001507282257,-0.879798054695129,0.175689101219177,0.500607550144196,-0.847658753395081,0.13078573346138,0.457001507282257,-0.879798054695129,0.246283024549484,0.302793025970459,-0.920685052871704,0.0663795322179794,0.314030379056931,-0.947089552879334,0.135795697569847,0.340326398611069,-0.930450081825256,0.101030454039574,0.30678129196167,-0.946402668952942,0.169884890317917,0.212377265095711,-0.962307095527649,0.152982294559479,0.346919894218445,-0.925333917140961,0.135795697569847,0.340326398611069,-0.930450081825256,0.238100737333298,0.299225687980652,-0.923997819423676,0.161599054932594,0.251975297927856,-0.954145729541779,0.156739458441734,0.188722044229507,-0.969441413879395,0.169884890317917,0.212377265095711,-0.962307095527649,0.161599054932594,0.251975297927856,-0.954145729541779,0.152982294559479,0.346919894218445,-0.925333917140961,0.250383317470551,0.412055850028992,0.876081109046936,0.273504644632339,0.420893728733063,0.864895105361938,0.367827922105789,0.405481457710266,0.83683168888092,0.367827922105789,0.405481457710266,0.83683168888092,0.412040889263153,0.456621170043945,0.78849184513092,0.403641879558563,0.467081874608994,0.786706805229187,0.480609893798828,0.50423800945282,0.717466354370117,0.412040889263153,0.456621170043945,0.78849184513092,0.35074907541275,0.538353741168976,0.766257226467133,0.494468063116074,0.62507301568985,0.603974342346191,0.425808280706406,0.640395879745483,0.639202773571014,0.395514756441116,0.582493603229523,0.710119068622589,0.494468063116074,0.62507301568985,0.603974342346191,0.500081360340118,0.538909554481506,0.67786055803299,0.613347053527832,0.557211101055145,0.559750974178314,0.395514756441116,0.582493603229523,0.710119068622589,0.425808280706406,0.640395879745483,0.639202773571014,0.410007953643799,0.573296368122101,0.709383249282837,0.395514756441116,0.582493603229523,0.710119068622589,\r\n0.410007953643799,0.573296368122101,0.709383249282837,0.35074907541275,0.538353741168976,0.766257226467133,0.612536668777466,0.229054495692253,-0.756526708602905,0.434815376996994,0.168025434017181,-0.884705007076263,0.442525804042816,0.332502067089081,-0.832834422588348,0.600315392017365,0.402393192052841,-0.691159129142761,0.442525804042816,0.332502067089081,-0.832834422588348,0.45109549164772,0.437453269958496,-0.777912199497223,0.554553389549255,0.12544196844101,-0.822638869285584,0.434815376996994,0.168025434017181,-0.884705007076263,0.612536668777466,0.229054495692253,-0.756526708602905,0.931300163269043,0.16876982152462,-0.322794944047928,0.881146907806396,0.143092185258865,-0.450671255588531,0.91311901807785,0.00280759995803237,-0.407683312892914,0.971896708011627,0.0192900653928518,-0.234615802764893,0.958990097045898,0.18850465118885,-0.211669251322746,0.931300163269043,0.16876982152462,-0.322794944047928,0.690667033195496,0.24432073533535,-0.680651366710663,0.734265327453613,0.352282822132111,-0.580302596092224,0.630015850067139,0.42597097158432,-0.649329304695129,0.803243398666382,0.00709157763049006,-0.595608532428741,0.881146907806396,0.143092185258865,-0.450671255588531,0.777235329151154,0.188205435872078,-0.600403010845184,0.690667033195496,0.24432073533535,-0.680651366710663,0.705202519893646,0.0511930249631405,-0.707155227661133,0.777235329151154,0.188205435872078,-0.600403010845184,0.481772571802139,0.495907574892044,-0.722475409507751,0.630015850067139,0.42597097158432,-0.649329304695129,0.600315392017365,0.402393192052841,-0.691159129142761,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.314276725053787,0.589070081710815,-0.744463801383972,-0.0427731350064278,0.414450615644455,-0.909066021442413,-0.0557124838232994,0.559533596038818,-0.826933026313782,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.0143053559586406,0.557919442653656,-0.82977169752121,0.12323185056448,0.384091466665268,-0.915034174919128,0.155080914497375,0.373302549123764,-0.914655685424805,\r\n0.155080914497375,0.373302549123764,-0.914655685424805,0.213937431573868,0.322935730218887,-0.921923637390137,0.0537038668990135,0.50846004486084,-0.859409034252167,0.213937431573868,0.322935730218887,-0.921923637390137,0.308716088533401,0.237582340836525,-0.921004295349121,0.187297150492668,0.409298807382584,-0.892969250679016,0.12323185056448,0.384091466665268,-0.915034174919128,-0.0557124838232994,0.559533596038818,-0.826933026313782,-0.0427731350064278,0.414450615644455,-0.909066021442413,0.480545401573181,0.150947436690331,-0.863881289958954,0.434815376996994,0.168025434017181,-0.884705007076263,0.554553389549255,0.12544196844101,-0.822638869285584,0.35015657544136,0.206687808036804,-0.913602948188782,0.308716088533401,0.237582340836525,-0.921004295349121,0.342613965272903,0.145389690995216,-0.928158044815063,0.434815376996994,0.168025434017181,-0.884705007076263,0.35015657544136,0.206687808036804,-0.913602948188782,0.364324778318405,0.118566937744617,-0.923693239688873,0.835299611091614,0.467924386262894,0.288654059171677,0.858576714992523,0.463511198759079,0.219096451997757,0.824448883533478,0.517453193664551,0.229185685515404,0.835299611091614,0.467924386262894,0.288654059171677,0.794162154197693,0.482192367315292,0.369860589504242,0.849116206169128,0.412579894065857,0.329817235469818,0.858576714992523,0.463511198759079,0.219096451997757,0.875253200531006,0.454329878091812,0.165879905223846,0.847849249839783,0.503987729549408,0.164766073226929,0.724154055118561,0.47552564740181,0.499475866556168,0.745216429233551,0.45610037446022,0.486440926790237,0.74688732624054,0.508870363235474,0.428030461072922,0.745216429233551,0.45610037446022,0.486440926790237,0.783442139625549,0.418322414159775,0.459591835737228,0.794162154197693,0.482192367315292,0.369860589504242,0.724154055118561,0.47552564740181,0.499475866556168,0.703154683113098,0.527318716049194,0.476978272199631,0.695143640041351,0.44206577539444,0.56688004732132,0.613347053527832,0.557211101055145,0.559750974178314,0.604729235172272,0.470343947410584,0.6427121758461,\r\n0.695143640041351,0.44206577539444,0.56688004732132,0.304266154766083,0.384534657001495,-0.871524572372437,0.256555765867233,0.609098672866821,-0.750451683998108,0.324295669794083,0.352063655853271,-0.877999663352966,0.324295669794083,0.352063655853271,-0.877999663352966,0.245046243071556,0.560645580291748,-0.790966928005219,0.270312577486038,0.420356661081314,-0.866158902645111,0.221253409981728,0.505331635475159,-0.834078371524811,0.233889743685722,0.600634276866913,-0.764548242092133,0.217232570052147,0.508866369724274,-0.832985520362854,0.217232570052147,0.508866369724274,-0.832985520362854,0.256555765867233,0.609098672866821,-0.750451683998108,0.304266154766083,0.384534657001495,-0.871524572372437,0.872229874134064,0.475240051746368,0.115593314170837,0.858352720737457,0.508522152900696,0.0680865123867989,0.834874629974365,0.54270613193512,0.0919470340013504,0.872229874134064,0.475240051746368,0.115593314170837,0.847849249839783,0.503987729549408,0.164766073226929,0.875253200531006,0.454329878091812,0.165879905223846,0.321743279695511,0.548119485378265,-0.772040247917175,0.262356758117676,0.529748618602753,-0.806557595729828,0.372822552919388,0.479438543319702,-0.794444382190704,0.262356758117676,0.529748618602753,-0.806557595729828,0.233889743685722,0.600634276866913,-0.764548242092133,0.221253409981728,0.505331635475159,-0.834078371524811,0.527357339859009,0.3971087038517,-0.751131653785706,0.599812924861908,0.409123659133911,-0.687635183334351,0.608176171779633,0.329893112182617,-0.722005605697632,0.527357339859009,0.3971087038517,-0.751131653785706,0.549680769443512,0.298577725887299,-0.780193686485291,0.46084189414978,0.402742564678192,-0.790836989879608,0.46084189414978,0.402742564678192,-0.790836989879608,0.502253890037537,0.282193005084991,-0.817378759384155,0.442387670278549,0.372477382421494,-0.815814673900604,0.372822552919388,0.479438543319702,-0.794444382190704,0.442387670278549,0.372477382421494,-0.815814673900604,0.434757351875305,0.437480181455612,-0.787144839763641,0.805752396583557,0.459602147340775,-0.373535484075546,\r\n0.811578631401062,0.350847393274307,-0.467168182134628,0.816831350326538,0.442240685224533,-0.370418071746826,0.759898722171783,0.380318582057953,-0.527173161506653,0.811578631401062,0.350847393274307,-0.467168182134628,0.758771955966949,0.304197996854782,-0.575958788394928,0.776907563209534,0.510428786277771,-0.368614882230759,0.798828661441803,0.511390447616577,-0.3167844414711,0.785362482070923,0.527154803276062,-0.324520289897919,0.776907563209534,0.510428786277771,-0.368614882230759,0.805752396583557,0.459602147340775,-0.373535484075546,0.798828661441803,0.511390447616577,-0.3167844414711,0.693500459194183,0.348946750164032,-0.630311965942383,0.758771955966949,0.304197996854782,-0.575958788394928,0.698696434497833,0.278754323720932,-0.658877193927765,0.693500459194183,0.348946750164032,-0.630311965942383,0.698696434497833,0.278754323720932,-0.658877193927765,0.608176171779633,0.329893112182617,-0.722005605697632,0.816169083118439,0.457777738571167,-0.352572739124298,0.778719305992126,0.470940321683884,-0.414501249790192,0.732671141624451,0.546495378017426,-0.405629932880402,0.732671141624451,0.546495378017426,-0.405629932880402,0.776907563209534,0.510428786277771,-0.368614882230759,0.785362482070923,0.527154803276062,-0.324520289897919,0.768262088298798,0.513642191886902,-0.382027506828308,0.820470631122589,0.501712501049042,-0.27406632900238,0.752939224243164,0.533206880092621,-0.385710537433624,0.778719305992126,0.470940321683884,-0.414501249790192,0.768262088298798,0.513642191886902,-0.382027506828308,0.732671141624451,0.546495378017426,-0.405629932880402,0.820470631122589,0.501712501049042,-0.27406632900238,0.834484219551086,0.525541126728058,-0.165657684206963,0.885434210300446,0.449486702680588,-0.118186049163342,0.876957654953003,0.476360112428665,-0.0634532570838928,0.834484219551086,0.525541126728058,-0.165657684206963,0.846353471279144,0.528426766395569,-0.066714271903038,0.85466855764389,0.518877267837524,0.0175468232482672,0.879744529724121,0.470689594745636,0.0670878440141678,0.887277007102966,0.460975229740143,0.0155329573899508,\r\n0.846353471279144,0.528426766395569,-0.066714271903038,0.887277007102966,0.460975229740143,0.0155329573899508,0.876957654953003,0.476360112428665,-0.0634532570838928,0.858352720737457,0.508522152900696,0.0680865123867989,0.879744529724121,0.470689594745636,0.0670878440141678,0.847087025642395,0.529474377632141,0.0458304546773434,0.141526088118553,0.649164438247681,-0.747365832328796,0.175689101219177,0.500607550144196,-0.847658753395081,0.270312577486038,0.420356661081314,-0.866158902645111,0.195263877511024,0.114438682794571,-0.974051177501678,0.195351049304008,0.131715506315231,-0.97184818983078,0.173053875565529,0.140289276838303,-0.974869847297668,0.0361881889402866,0.305526077747345,-0.951495707035065,0.173053875565529,0.140289276838303,-0.974869847297668,0.195351049304008,0.131715506315231,-0.97184818983078,0.178520753979683,0.18667183816433,-0.966066181659698,0.111799716949463,0.240348473191261,-0.96422678232193,0.195263877511024,0.114438682794571,-0.974051177501678,0.0663795322179794,0.314030379056931,-0.947089552879334,0.111799716949463,0.240348473191261,-0.96422678232193,0.178520753979683,0.18667183816433,-0.966066181659698,0.0361881889402866,0.305526077747345,-0.951495707035065,-0.0313211157917976,0.544300675392151,-0.838305175304413,-0.196156218647957,0.446357309818268,-0.873090922832489,0.0519889444112778,0.635535001754761,-0.770319581031799,-0.0313211157917976,0.544300675392151,-0.838305175304413,0.13078573346138,0.457001507282257,-0.879798054695129,0.175689101219177,0.500607550144196,-0.847658753395081,0.0519889444112778,0.635535001754761,-0.770319581031799,0.13078573346138,0.457001507282257,-0.879798054695129,0.135795697569847,0.340326398611069,-0.930450081825256,0.0663795322179794,0.314030379056931,-0.947089552879334,0.178520753979683,0.18667183816433,-0.966066181659698,0.169884890317917,0.212377265095711,-0.962307095527649,0.135795697569847,0.340326398611069,-0.930450081825256,0.178520753979683,0.18667183816433,-0.966066181659698,0.156739458441734,0.188722044229507,-0.969441413879395,0.161599054932594,0.251975297927856,-0.954145729541779,\r\n0.178834617137909,0.212323635816574,-0.96069598197937,0.161599054932594,0.251975297927856,-0.954145729541779,0.169884890317917,0.212377265095711,-0.962307095527649,0.178834617137909,0.212323635816574,-0.96069598197937,0.273504644632339,0.420893728733063,0.864895105361938,0.330556243658066,0.485536366701126,0.809312582015991,0.367827922105789,0.405481457710266,0.83683168888092,0.367827922105789,0.405481457710266,0.83683168888092,0.330556243658066,0.485536366701126,0.809312582015991,0.412040889263153,0.456621170043945,0.78849184513092,0.330556243658066,0.485536366701126,0.809312582015991,0.35074907541275,0.538353741168976,0.766257226467133,0.412040889263153,0.456621170043945,0.78849184513092,0.395514756441116,0.582493603229523,0.710119068622589,0.500081360340118,0.538909554481506,0.67786055803299,0.494468063116074,0.62507301568985,0.603974342346191,0.613347053527832,0.557211101055145,0.559750974178314,0.500081360340118,0.538909554481506,0.67786055803299,0.604729235172272,0.470343947410584,0.6427121758461,0.395514756441116,0.582493603229523,0.710119068622589,0.35074907541275,0.538353741168976,0.766257226467133,0.394262254238129,0.558745086193085,0.729630768299103,0.434815376996994,0.168025434017181,-0.884705007076263,0.403109282255173,0.234701246023178,-0.884544014930725,0.442525804042816,0.332502067089081,-0.832834422588348,0.446496963500977,0.391298592090607,-0.804689824581146,0.45109549164772,0.437453269958496,-0.777912199497223,0.442525804042816,0.332502067089081,-0.832834422588348,0.481772571802139,0.495907574892044,-0.722475409507751,0.600315392017365,0.402393192052841,-0.691159129142761,0.45109549164772,0.437453269958496,-0.777912199497223,0.803243398666382,0.00709157763049006,-0.595608532428741,0.91311901807785,0.00280759995803237,-0.407683312892914,0.881146907806396,0.143092185258865,-0.450671255588531,0.931300163269043,0.16876982152462,-0.322794944047928,0.91311901807785,0.00280759995803237,-0.407683312892914,0.971896708011627,0.0192900653928518,-0.234615802764893,0.985434234142303,0.101908624172211,-0.136139273643494,\r\n0.958990097045898,0.18850465118885,-0.211669251322746,0.971896708011627,0.0192900653928518,-0.234615802764893,0.690667033195496,0.24432073533535,-0.680651366710663,0.630015850067139,0.42597097158432,-0.649329304695129,0.610536158084869,0.348486393690109,-0.711198031902313,0.803243398666382,0.00709157763049006,-0.595608532428741,0.777235329151154,0.188205435872078,-0.600403010845184,0.705202519893646,0.0511930249631405,-0.707155227661133,0.67677628993988,0.130064904689789,-0.724608063697815,0.705202519893646,0.0511930249631405,-0.707155227661133,0.690667033195496,0.24432073533535,-0.680651366710663,0.481772571802139,0.495907574892044,-0.722475409507751,0.610536158084869,0.348486393690109,-0.711198031902313,0.630015850067139,0.42597097158432,-0.649329304695129,-0.179577097296715,0.57805335521698,-0.79599392414093,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.0427731350064278,0.414450615644455,-0.909066021442413,0.155080914497375,0.373302549123764,-0.914655685424805,0.12323185056448,0.384091466665268,-0.915034174919128,0.273944050073624,0.235598474740982,-0.932441890239716,0.213937431573868,0.322935730218887,-0.921923637390137,0.155080914497375,0.373302549123764,-0.914655685424805,0.257507383823395,0.254507064819336,-0.932156622409821,0.213937431573868,0.322935730218887,-0.921923637390137,0.257507383823395,0.254507064819336,-0.932156622409821,0.308716088533401,0.237582340836525,-0.921004295349121,-0.0427731350064278,0.414450615644455,-0.909066021442413,0.10272891074419,0.197410449385643,-0.974923491477966,0.12323185056448,0.384091466665268,-0.915034174919128,0.342613965272903,0.145389690995216,-0.928158044815063,0.308716088533401,0.237582340836525,-0.921004295349121,0.273944050073624,0.235598474740982,-0.932441890239716,0.364324778318405,0.118566937744617,-0.923693239688873,0.35015657544136,0.206687808036804,-0.913602948188782,0.342613965272903,0.145389690995216,-0.928158044815063,0.434815376996994,0.168025434017181,-0.884705007076263,0.364324778318405,0.118566937744617,-0.923693239688873,0.403109282255173,0.234701246023178,-0.884544014930725,\r\n0.835299611091614,0.467924386262894,0.288654059171677,0.849116206169128,0.412579894065857,0.329817235469818,0.858576714992523,0.463511198759079,0.219096451997757,0.849116206169128,0.412579894065857,0.329817235469818,0.794162154197693,0.482192367315292,0.369860589504242,0.783442139625549,0.418322414159775,0.459591835737228,0.889516592025757,0.406859368085861,0.20790758728981,0.875253200531006,0.454329878091812,0.165879905223846,0.858576714992523,0.463511198759079,0.219096451997757,0.724154055118561,0.47552564740181,0.499475866556168,0.71265059709549,0.415267050266266,0.56540447473526,0.745216429233551,0.45610037446022,0.486440926790237,0.745216429233551,0.45610037446022,0.486440926790237,0.730366289615631,0.42203027009964,0.537080407142639,0.783442139625549,0.418322414159775,0.459591835737228,0.724154055118561,0.47552564740181,0.499475866556168,0.695143640041351,0.44206577539444,0.56688004732132,0.71265059709549,0.415267050266266,0.56540447473526,0.695143640041351,0.44206577539444,0.56688004732132,0.604729235172272,0.470343947410584,0.6427121758461,0.694169104099274,0.414297372102737,0.588631212711334,0.245046243071556,0.560645580291748,-0.790966928005219,0.324295669794083,0.352063655853271,-0.877999663352966,0.256555765867233,0.609098672866821,-0.750451683998108,0.141526088118553,0.649164438247681,-0.747365832328796,0.270312577486038,0.420356661081314,-0.866158902645111,0.245046243071556,0.560645580291748,-0.790966928005219,0.233889743685722,0.600634276866913,-0.764548242092133,0.256555765867233,0.609098672866821,-0.750451683998108,0.217232570052147,0.508866369724274,-0.832985520362854,0.879744529724121,0.470689594745636,0.0670878440141678,0.858352720737457,0.508522152900696,0.0680865123867989,0.872229874134064,0.475240051746368,0.115593314170837,0.903509795665741,0.411103963851929,0.121092729270458,0.872229874134064,0.475240051746368,0.115593314170837,0.875253200531006,0.454329878091812,0.165879905223846,0.321743279695511,0.548119485378265,-0.772040247917175,0.233889743685722,0.600634276866913,-0.764548242092133,\r\n0.262356758117676,0.529748618602753,-0.806557595729828,0.321743279695511,0.548119485378265,-0.772040247917175,0.372822552919388,0.479438543319702,-0.794444382190704,0.434757351875305,0.437480181455612,-0.787144839763641,0.527357339859009,0.3971087038517,-0.751131653785706,0.608176171779633,0.329893112182617,-0.722005605697632,0.549680769443512,0.298577725887299,-0.780193686485291,0.502253890037537,0.282193005084991,-0.817378759384155,0.46084189414978,0.402742564678192,-0.790836989879608,0.549680769443512,0.298577725887299,-0.780193686485291,0.442387670278549,0.372477382421494,-0.815814673900604,0.502253890037537,0.282193005084991,-0.817378759384155,0.52090311050415,0.322474807500839,-0.790360629558563,0.434757351875305,0.437480181455612,-0.787144839763641,0.442387670278549,0.372477382421494,-0.815814673900604,0.511400461196899,0.360305905342102,-0.780159652233124,0.845881998538971,0.339043021202087,-0.411744385957718,0.811578631401062,0.350847393274307,-0.467168182134628,0.805752396583557,0.459602147340775,-0.373535484075546,0.826161980628967,0.239905819296837,-0.50980532169342,0.758771955966949,0.304197996854782,-0.575958788394928,0.811578631401062,0.350847393274307,-0.467168182134628,0.776907563209534,0.510428786277771,-0.368614882230759,0.845881998538971,0.339043021202087,-0.411744385957718,0.805752396583557,0.459602147340775,-0.373535484075546,0.758771955966949,0.304197996854782,-0.575958788394928,0.77130401134491,0.214389577507973,-0.599272131919861,0.698696434497833,0.278754323720932,-0.658877193927765,0.617011308670044,0.235857143998146,-0.750778436660767,0.608176171779633,0.329893112182617,-0.722005605697632,0.698696434497833,0.278754323720932,-0.658877193927765,0.776907563209534,0.510428786277771,-0.368614882230759,0.732671141624451,0.546495378017426,-0.405629932880402,0.752939224243164,0.533206880092621,-0.385710537433624,0.84037458896637,0.437928140163422,-0.319357633590698,0.752939224243164,0.533206880092621,-0.385710537433624,0.820470631122589,0.501712501049042,-0.27406632900238,0.768262088298798,0.513642191886902,-0.382027506828308,\r\n0.752939224243164,0.533206880092621,-0.385710537433624,0.732671141624451,0.546495378017426,-0.405629932880402,0.876957654953003,0.476360112428665,-0.0634532570838928,0.885434210300446,0.449486702680588,-0.118186049163342,0.834484219551086,0.525541126728058,-0.165657684206963,0.820470631122589,0.501712501049042,-0.27406632900238,0.885434210300446,0.449486702680588,-0.118186049163342,0.902722895145416,0.391223102807999,-0.178985118865967,0.887277007102966,0.460975229740143,0.0155329573899508,0.879744529724121,0.470689594745636,0.0670878440141678,0.901721775531769,0.423015564680099,0.0891938209533691,0.876957654953003,0.476360112428665,-0.0634532570838928,0.887277007102966,0.460975229740143,0.0155329573899508,0.910026252269745,0.412365883588791,-0.0425001084804535,0.0519889444112778,0.635535001754761,-0.770319581031799,0.175689101219177,0.500607550144196,-0.847658753395081,0.141526088118553,0.649164438247681,-0.747365832328796,0.198048189282417,0.118084378540516,-0.973053395748138,0.195263877511024,0.114438682794571,-0.974051177501678,0.173053875565529,0.140289276838303,-0.974869847297668,0.0361881889402866,0.305526077747345,-0.951495707035065,0.00556098157539964,0.320727527141571,-0.947154998779297,0.173053875565529,0.140289276838303,-0.974869847297668,0.178520753979683,0.18667183816433,-0.966066181659698,0.195263877511024,0.114438682794571,-0.974051177501678,0.198048189282417,0.118084378540516,-0.973053395748138,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.196156218647957,0.446357309818268,-0.873090922832489,-0.0313211157917976,0.544300675392151,-0.838305175304413,0.0361881889402866,0.305526077747345,-0.951495707035065,-0.196156218647957,0.446357309818268,-0.873090922832489,0.00556098157539964,0.320727527141571,-0.947154998779297,-0.0313211157917976,0.544300675392151,-0.838305175304413,0.0519889444112778,0.635535001754761,-0.770319581031799,-0.0366410166025162,0.64059442281723,-0.767004609107971,0.169884890317917,0.212377265095711,-0.962307095527649,0.178520753979683,0.18667183816433,-0.966066181659698,\r\n0.241229176521301,0.213732078671455,-0.946639835834503,0.178834617137909,0.212323635816574,-0.96069598197937,0.146451845765114,0.234289839863777,-0.961072325706482,0.156739458441734,0.188722044229507,-0.969441413879395,0.241229176521301,0.213732078671455,-0.946639835834503,0.178834617137909,0.212323635816574,-0.96069598197937,0.169884890317917,0.212377265095711,-0.962307095527649,0.330556243658066,0.485536366701126,0.809312582015991,0.273504644632339,0.420893728733063,0.864895105361938,0.250494122505188,0.514607131481171,0.820019543170929,0.250494122505188,0.514607131481171,0.820019543170929,0.35074907541275,0.538353741168976,0.766257226467133,0.330556243658066,0.485536366701126,0.809312582015991,0.395514756441116,0.582493603229523,0.710119068622589,0.394262254238129,0.558745086193085,0.729630768299103,0.500081360340118,0.538909554481506,0.67786055803299,0.532754182815552,0.506091058254242,0.678265869617462,0.604729235172272,0.470343947410584,0.6427121758461,0.500081360340118,0.538909554481506,0.67786055803299,0.35074907541275,0.538353741168976,0.766257226467133,0.291402041912079,0.551611483097076,0.781542956829071,0.394262254238129,0.558745086193085,0.729630768299103,0.403109282255173,0.234701246023178,-0.884544014930725,0.45952832698822,0.30293732881546,-0.834902703762054,0.442525804042816,0.332502067089081,-0.832834422588348,0.446496963500977,0.391298592090607,-0.804689824581146,0.481772571802139,0.495907574892044,-0.722475409507751,0.45109549164772,0.437453269958496,-0.777912199497223,0.446496963500977,0.391298592090607,-0.804689824581146,0.442525804042816,0.332502067089081,-0.832834422588348,0.45952832698822,0.30293732881546,-0.834902703762054,0.803243398666382,0.00709157763049006,-0.595608532428741,0.833553075790405,-0.145659819245338,-0.532890498638153,0.91311901807785,0.00280759995803237,-0.407683312892914,0.897543847560883,-0.216074854135513,-0.384352147579193,0.971896708011627,0.0192900653928518,-0.234615802764893,0.91311901807785,0.00280759995803237,-0.407683312892914,0.989723145961761,-0.125159382820129,-0.0691599249839783,\r\n0.985434234142303,0.101908624172211,-0.136139273643494,0.971896708011627,0.0192900653928518,-0.234615802764893,0.67677628993988,0.130064904689789,-0.724608063697815,0.690667033195496,0.24432073533535,-0.680651366710663,0.610536158084869,0.348486393690109,-0.711198031902313,0.803243398666382,0.00709157763049006,-0.595608532428741,0.705202519893646,0.0511930249631405,-0.707155227661133,0.663937985897064,-0.061487652361393,-0.745255291461945,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.705202519893646,0.0511930249631405,-0.707155227661133,0.67677628993988,0.130064904689789,-0.724608063697815,0.531464874744415,0.371757835149765,-0.761144578456879,0.610536158084869,0.348486393690109,-0.711198031902313,0.481772571802139,0.495907574892044,-0.722475409507751,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.082565002143383,0.244911164045334,-0.966023504734039,-0.0427731350064278,0.414450615644455,-0.909066021442413,0.12323185056448,0.384091466665268,-0.915034174919128,0.211626380681992,0.184972852468491,-0.959687054157257,0.273944050073624,0.235598474740982,-0.932441890239716,0.273944050073624,0.235598474740982,-0.932441890239716,0.257507383823395,0.254507064819336,-0.932156622409821,0.155080914497375,0.373302549123764,-0.914655685424805,0.308716088533401,0.237582340836525,-0.921004295349121,0.257507383823395,0.254507064819336,-0.932156622409821,0.273944050073624,0.235598474740982,-0.932441890239716,0.10272891074419,0.197410449385643,-0.974923491477966,-0.0427731350064278,0.414450615644455,-0.909066021442413,-0.082565002143383,0.244911164045334,-0.966023504734039,0.10272891074419,0.197410449385643,-0.974923491477966,0.211626380681992,0.184972852468491,-0.959687054157257,0.12323185056448,0.384091466665268,-0.915034174919128,0.342613965272903,0.145389690995216,-0.928158044815063,0.273944050073624,0.235598474740982,-0.932441890239716,0.28451469540596,0.125801831483841,-0.950381577014923,0.364324778318405,0.118566937744617,-0.923693239688873,0.342613965272903,0.145389690995216,-0.928158044815063,0.321149706840515,0.0923793837428093,-0.942511975765228,\r\n0.364324778318405,0.118566937744617,-0.923693239688873,0.358134627342224,0.167805209755898,-0.918466567993164,0.403109282255173,0.234701246023178,-0.884544014930725,0.849116206169128,0.412579894065857,0.329817235469818,0.889516592025757,0.406859368085861,0.20790758728981,0.858576714992523,0.463511198759079,0.219096451997757,0.842435359954834,0.325831443071365,0.429111301898956,0.849116206169128,0.412579894065857,0.329817235469818,0.783442139625549,0.418322414159775,0.459591835737228,0.889516592025757,0.406859368085861,0.20790758728981,0.903509795665741,0.411103963851929,0.121092729270458,0.875253200531006,0.454329878091812,0.165879905223846,0.71265059709549,0.415267050266266,0.56540447473526,0.730366289615631,0.42203027009964,0.537080407142639,0.745216429233551,0.45610037446022,0.486440926790237,0.730366289615631,0.42203027009964,0.537080407142639,0.753512561321259,0.371617019176483,0.54232782125473,0.783442139625549,0.418322414159775,0.459591835737228,0.695143640041351,0.44206577539444,0.56688004732132,0.716003477573395,0.392703950405121,0.577167630195618,0.71265059709549,0.415267050266266,0.56540447473526,0.604729235172272,0.470343947410584,0.6427121758461,0.659142911434174,0.419004082679749,0.624472618103027,0.694169104099274,0.414297372102737,0.588631212711334,0.694169104099274,0.414297372102737,0.588631212711334,0.716003477573395,0.392703950405121,0.577167630195618,0.695143640041351,0.44206577539444,0.56688004732132,0.245046243071556,0.560645580291748,-0.790966928005219,0.256555765867233,0.609098672866821,-0.750451683998108,0.198198407888412,0.714078962802887,-0.671422719955444,0.198198407888412,0.714078962802887,-0.671422719955444,0.141526088118553,0.649164438247681,-0.747365832328796,0.245046243071556,0.560645580291748,-0.790966928005219,0.233889743685722,0.600634276866913,-0.764548242092133,0.281874746084213,0.663952350616455,-0.69261372089386,0.256555765867233,0.609098672866821,-0.750451683998108,0.879744529724121,0.470689594745636,0.0670878440141678,0.872229874134064,0.475240051746368,0.115593314170837,0.903509795665741,0.411103963851929,0.121092729270458,\r\n0.321743279695511,0.548119485378265,-0.772040247917175,0.316713631153107,0.600776612758636,-0.734002649784088,0.233889743685722,0.600634276866913,-0.764548242092133,0.434757351875305,0.437480181455612,-0.787144839763641,0.394421964883804,0.505796074867249,-0.767203688621521,0.321743279695511,0.548119485378265,-0.772040247917175,0.617011308670044,0.235857143998146,-0.750778436660767,0.549680769443512,0.298577725887299,-0.780193686485291,0.608176171779633,0.329893112182617,-0.722005605697632,0.502253890037537,0.282193005084991,-0.817378759384155,0.549680769443512,0.298577725887299,-0.780193686485291,0.561230003833771,0.203118726611137,-0.802348732948303,0.502253890037537,0.282193005084991,-0.817378759384155,0.570390164852142,0.253712058067322,-0.78120744228363,0.52090311050415,0.322474807500839,-0.790360629558563,0.511400461196899,0.360305905342102,-0.780159652233124,0.442387670278549,0.372477382421494,-0.815814673900604,0.52090311050415,0.322474807500839,-0.790360629558563,0.511400461196899,0.360305905342102,-0.780159652233124,0.469334661960602,0.369468361139297,-0.80200868844986,0.434757351875305,0.437480181455612,-0.787144839763641,0.845881998538971,0.339043021202087,-0.411744385957718,0.826161980628967,0.239905819296837,-0.50980532169342,0.811578631401062,0.350847393274307,-0.467168182134628,0.826161980628967,0.239905819296837,-0.50980532169342,0.77130401134491,0.214389577507973,-0.599272131919861,0.758771955966949,0.304197996854782,-0.575958788394928,0.776907563209534,0.510428786277771,-0.368614882230759,0.846563458442688,0.385069847106934,-0.367493510246277,0.845881998538971,0.339043021202087,-0.411744385957718,0.705513417720795,0.181106716394424,-0.685164928436279,0.698696434497833,0.278754323720932,-0.658877193927765,0.77130401134491,0.214389577507973,-0.599272131919861,0.698696434497833,0.278754323720932,-0.658877193927765,0.705513417720795,0.181106716394424,-0.685164928436279,0.617011308670044,0.235857143998146,-0.750778436660767,0.806683599948883,0.459311902523041,-0.371879160404205,0.776907563209534,0.510428786277771,-0.368614882230759,\r\n0.752939224243164,0.533206880092621,-0.385710537433624,0.806683599948883,0.459311902523041,-0.371879160404205,0.752939224243164,0.533206880092621,-0.385710537433624,0.84037458896637,0.437928140163422,-0.319357633590698,0.84037458896637,0.437928140163422,-0.319357633590698,0.820470631122589,0.501712501049042,-0.27406632900238,0.902722895145416,0.391223102807999,-0.178985118865967,0.885434210300446,0.449486702680588,-0.118186049163342,0.876957654953003,0.476360112428665,-0.0634532570838928,0.910026252269745,0.412365883588791,-0.0425001084804535,0.92816025018692,0.36604443192482,-0.067305400967598,0.902722895145416,0.391223102807999,-0.178985118865967,0.885434210300446,0.449486702680588,-0.118186049163342,0.903509795665741,0.411103963851929,0.121092729270458,0.901721775531769,0.423015564680099,0.0891938209533691,0.879744529724121,0.470689594745636,0.0670878440141678,0.909001171588898,0.414270967245102,0.0457859039306641,0.887277007102966,0.460975229740143,0.0155329573899508,0.901721775531769,0.423015564680099,0.0891938209533691,0.910026252269745,0.412365883588791,-0.0425001084804535,0.887277007102966,0.460975229740143,0.0155329573899508,0.907662272453308,0.419332206249237,-0.0175935234874487,0.0519889444112778,0.635535001754761,-0.770319581031799,0.141526088118553,0.649164438247681,-0.747365832328796,0.0537331700325012,0.648623645305634,-0.759210109710693,0.198048189282417,0.118084378540516,-0.973053395748138,0.173053875565529,0.140289276838303,-0.974869847297668,0.00556098157539964,0.320727527141571,-0.947154998779297,0.178520753979683,0.18667183816433,-0.966066181659698,0.198048189282417,0.118084378540516,-0.973053395748138,0.241229176521301,0.213732078671455,-0.946639835834503,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.23427514731884,0.417002767324448,-0.878193438053131,-0.196156218647957,0.446357309818268,-0.873090922832489,-0.0366410166025162,0.64059442281723,-0.767004609107971,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.0313211157917976,0.544300675392151,-0.838305175304413,-0.196156218647957,0.446357309818268,-0.873090922832489,\r\n-0.153653502464294,0.444057613611221,-0.882724940776825,0.00556098157539964,0.320727527141571,-0.947154998779297,-0.0366410166025162,0.64059442281723,-0.767004609107971,0.0519889444112778,0.635535001754761,-0.770319581031799,0.0537331700325012,0.648623645305634,-0.759210109710693,0.186929509043694,0.417252361774445,-0.889358043670654,0.146451845765114,0.234289839863777,-0.961072325706482,0.178834617137909,0.212323635816574,-0.96069598197937,0.186929509043694,0.417252361774445,-0.889358043670654,0.178834617137909,0.212323635816574,-0.96069598197937,0.241229176521301,0.213732078671455,-0.946639835834503,0.250494122505188,0.514607131481171,0.820019543170929,0.291402041912079,0.551611483097076,0.781542956829071,0.35074907541275,0.538353741168976,0.766257226467133,0.394262254238129,0.558745086193085,0.729630768299103,0.532754182815552,0.506091058254242,0.678265869617462,0.500081360340118,0.538909554481506,0.67786055803299,0.604729235172272,0.470343947410584,0.6427121758461,0.532754182815552,0.506091058254242,0.678265869617462,0.659142911434174,0.419004082679749,0.624472618103027,0.291402041912079,0.551611483097076,0.781542956829071,0.423227101564407,0.534019291400909,0.731916785240173,0.394262254238129,0.558745086193085,0.729630768299103,0.403109282255173,0.234701246023178,-0.884544014930725,0.480362743139267,0.20265007019043,-0.853337228298187,0.45952832698822,0.30293732881546,-0.834902703762054,0.446496963500977,0.391298592090607,-0.804689824581146,0.531464874744415,0.371757835149765,-0.761144578456879,0.481772571802139,0.495907574892044,-0.722475409507751,0.45952832698822,0.30293732881546,-0.834902703762054,0.592881858348846,0.1853436678648,-0.783670008182526,0.446496963500977,0.391298592090607,-0.804689824581146,0.803243398666382,0.00709157763049006,-0.595608532428741,0.73752224445343,-0.119141466915607,-0.664730072021484,0.833553075790405,-0.145659819245338,-0.532890498638153,0.897543847560883,-0.216074854135513,-0.384352147579193,0.91311901807785,0.00280759995803237,-0.407683312892914,0.833553075790405,-0.145659819245338,-0.532890498638153,\r\n0.897543847560883,-0.216074854135513,-0.384352147579193,0.945385158061981,-0.277243167161942,-0.171414643526077,0.971896708011627,0.0192900653928518,-0.234615802764893,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.985434234142303,0.101908624172211,-0.136139273643494,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.971896708011627,0.0192900653928518,-0.234615802764893,0.945385158061981,-0.277243167161942,-0.171414643526077,0.67677628993988,0.130064904689789,-0.724608063697815,0.610536158084869,0.348486393690109,-0.711198031902313,0.673197627067566,0.187958627939224,-0.715175747871399,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.663937985897064,-0.061487652361393,-0.745255291461945,0.705202519893646,0.0511930249631405,-0.707155227661133,0.803243398666382,0.00709157763049006,-0.595608532428741,0.663937985897064,-0.061487652361393,-0.745255291461945,0.73752224445343,-0.119141466915607,-0.664730072021484,0.508652687072754,0.11210460960865,-0.853642106056213,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.67677628993988,0.130064904689789,-0.724608063697815,0.673197627067566,0.187958627939224,-0.715175747871399,0.610536158084869,0.348486393690109,-0.711198031902313,0.531464874744415,0.371757835149765,-0.761144578456879,-0.082565002143383,0.244911164045334,-0.966023504734039,-0.229525774717331,0.473694860935211,-0.850253462791443,-0.219464972615242,0.346631556749344,-0.911965787410736,0.28451469540596,0.125801831483841,-0.950381577014923,0.273944050073624,0.235598474740982,-0.932441890239716,0.211626380681992,0.184972852468491,-0.959687054157257,-0.082565002143383,0.244911164045334,-0.966023504734039,0.016304848715663,0.0655113607645035,-0.997718572616577,0.10272891074419,0.197410449385643,-0.974923491477966,0.211626380681992,0.184972852468491,-0.959687054157257,0.10272891074419,0.197410449385643,-0.974923491477966,0.123340912163258,0.0989778786897659,-0.987415969371796,0.342613965272903,0.145389690995216,-0.928158044815063,\r\n0.28451469540596,0.125801831483841,-0.950381577014923,0.321149706840515,0.0923793837428093,-0.942511975765228,0.364324778318405,0.118566937744617,-0.923693239688873,0.321149706840515,0.0923793837428093,-0.942511975765228,0.316787302494049,0.10399479418993,-0.94277822971344,0.316787302494049,0.10399479418993,-0.94277822971344,0.358134627342224,0.167805209755898,-0.918466567993164,0.364324778318405,0.118566937744617,-0.923693239688873,0.403109282255173,0.234701246023178,-0.884544014930725,0.358134627342224,0.167805209755898,-0.918466567993164,0.480362743139267,0.20265007019043,-0.853337228298187,0.849116206169128,0.412579894065857,0.329817235469818,0.901151597499847,0.326435387134552,0.285246759653091,0.889516592025757,0.406859368085861,0.20790758728981,0.849116206169128,0.412579894065857,0.329817235469818,0.842435359954834,0.325831443071365,0.429111301898956,0.901151597499847,0.326435387134552,0.285246759653091,0.753512561321259,0.371617019176483,0.54232782125473,0.842435359954834,0.325831443071365,0.429111301898956,0.783442139625549,0.418322414159775,0.459591835737228,0.889516592025757,0.406859368085861,0.20790758728981,0.920099258422852,0.347235411405563,0.181231364607811,0.903509795665741,0.411103963851929,0.121092729270458,0.730366289615631,0.42203027009964,0.537080407142639,0.71265059709549,0.415267050266266,0.56540447473526,0.710168123245239,0.396692305803299,0.581632375717163,0.730366289615631,0.42203027009964,0.537080407142639,0.710168123245239,0.396692305803299,0.581632375717163,0.753512561321259,0.371617019176483,0.54232782125473,0.716003477573395,0.392703950405121,0.577167630195618,0.716790020465851,0.391973942518234,0.576687335968018,0.71265059709549,0.415267050266266,0.56540447473526,0.659142911434174,0.419004082679749,0.624472618103027,0.714044392108917,0.402328968048096,0.572950124740601,0.694169104099274,0.414297372102737,0.588631212711334,0.714044392108917,0.402328968048096,0.572950124740601,0.716003477573395,0.392703950405121,0.577167630195618,0.694169104099274,0.414297372102737,0.588631212711334,\r\n0.248174801468849,0.715867340564728,-0.652643144130707,0.198198407888412,0.714078962802887,-0.671422719955444,0.256555765867233,0.609098672866821,-0.750451683998108,0.141526088118553,0.649164438247681,-0.747365832328796,0.198198407888412,0.714078962802887,-0.671422719955444,0.197553336620331,0.714155554771423,-0.671531319618225,0.281874746084213,0.663952350616455,-0.69261372089386,0.233889743685722,0.600634276866913,-0.764548242092133,0.316713631153107,0.600776612758636,-0.734002649784088,0.248174801468849,0.715867340564728,-0.652643144130707,0.256555765867233,0.609098672866821,-0.750451683998108,0.281874746084213,0.663952350616455,-0.69261372089386,0.321743279695511,0.548119485378265,-0.772040247917175,0.394421964883804,0.505796074867249,-0.767203688621521,0.316713631153107,0.600776612758636,-0.734002649784088,0.394421964883804,0.505796074867249,-0.767203688621521,0.434757351875305,0.437480181455612,-0.787144839763641,0.469334661960602,0.369468361139297,-0.80200868844986,0.549680769443512,0.298577725887299,-0.780193686485291,0.617011308670044,0.235857143998146,-0.750778436660767,0.561230003833771,0.203118726611137,-0.802348732948303,0.502253890037537,0.282193005084991,-0.817378759384155,0.561230003833771,0.203118726611137,-0.802348732948303,0.570390164852142,0.253712058067322,-0.78120744228363,0.52090311050415,0.322474807500839,-0.790360629558563,0.570390164852142,0.253712058067322,-0.78120744228363,0.596925020217896,0.366829812526703,-0.713523805141449,0.511400461196899,0.360305905342102,-0.780159652233124,0.52090311050415,0.322474807500839,-0.790360629558563,0.496476888656616,0.368567615747452,-0.785918951034546,0.496476888656616,0.368567615747452,-0.785918951034546,0.469334661960602,0.369468361139297,-0.80200868844986,0.511400461196899,0.360305905342102,-0.780159652233124,0.856627702713013,0.223413184285164,-0.465054124593735,0.826161980628967,0.239905819296837,-0.50980532169342,0.845881998538971,0.339043021202087,-0.411744385957718,0.77130401134491,0.214389577507973,-0.599272131919861,0.826161980628967,0.239905819296837,-0.50980532169342,\r\n0.830000221729279,0.146850481629372,-0.538084030151367,0.806683599948883,0.459311902523041,-0.371879160404205,0.846563458442688,0.385069847106934,-0.367493510246277,0.776907563209534,0.510428786277771,-0.368614882230759,0.86554890871048,0.311527997255325,-0.392141848802567,0.845881998538971,0.339043021202087,-0.411744385957718,0.846563458442688,0.385069847106934,-0.367493510246277,0.768446207046509,0.117041356861591,-0.629119694232941,0.705513417720795,0.181106716394424,-0.685164928436279,0.77130401134491,0.214389577507973,-0.599272131919861,0.617011308670044,0.235857143998146,-0.750778436660767,0.705513417720795,0.181106716394424,-0.685164928436279,0.621003866195679,0.141898199915886,-0.770855963230133,0.806683599948883,0.459311902523041,-0.371879160404205,0.84037458896637,0.437928140163422,-0.319357633590698,0.846563458442688,0.385069847106934,-0.367493510246277,0.84037458896637,0.437928140163422,-0.319357633590698,0.902722895145416,0.391223102807999,-0.178985118865967,0.889557182788849,0.357324749231339,-0.284617036581039,0.885434210300446,0.449486702680588,-0.118186049163342,0.910026252269745,0.412365883588791,-0.0425001084804535,0.92816025018692,0.36604443192482,-0.067305400967598,0.942655563354492,0.308371961116791,-0.127699092030525,0.902722895145416,0.391223102807999,-0.178985118865967,0.92816025018692,0.36604443192482,-0.067305400967598,0.903509795665741,0.411103963851929,0.121092729270458,0.919933319091797,0.371021956205368,0.126748040318489,0.901721775531769,0.423015564680099,0.0891938209533691,0.909001171588898,0.414270967245102,0.0457859039306641,0.907662272453308,0.419332206249237,-0.0175935234874487,0.887277007102966,0.460975229740143,0.0155329573899508,0.909001171588898,0.414270967245102,0.0457859039306641,0.901721775531769,0.423015564680099,0.0891938209533691,0.911414504051209,0.396864861249924,0.108728498220444,0.910026252269745,0.412365883588791,-0.0425001084804535,0.907662272453308,0.419332206249237,-0.0175935234874487,0.922509610652924,0.377550661563873,-0.0801947116851807,0.197553336620331,0.714155554771423,-0.671531319618225,\r\n0.0537331700325012,0.648623645305634,-0.759210109710693,0.141526088118553,0.649164438247681,-0.747365832328796,0.160603731870651,0.286760300397873,-0.944444179534912,0.198048189282417,0.118084378540516,-0.973053395748138,0.00556098157539964,0.320727527141571,-0.947154998779297,0.241229176521301,0.213732078671455,-0.946639835834503,0.198048189282417,0.118084378540516,-0.973053395748138,0.160603731870651,0.286760300397873,-0.944444179534912,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.140499979257584,0.31123411655426,-0.939889848232269,-0.23427514731884,0.417002767324448,-0.878193438053131,-0.196156218647957,0.446357309818268,-0.873090922832489,-0.23427514731884,0.417002767324448,-0.878193438053131,-0.224580675363541,0.362952291965485,-0.904339015483856,0.0315799117088318,0.518950819969177,-0.854220330715179,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.0366410166025162,0.64059442281723,-0.767004609107971,-0.196156218647957,0.446357309818268,-0.873090922832489,-0.224580675363541,0.362952291965485,-0.904339015483856,-0.153653502464294,0.444057613611221,-0.882724940776825,0.00308101763948798,0.470932960510254,-0.882163524627686,0.00556098157539964,0.320727527141571,-0.947154998779297,-0.153653502464294,0.444057613611221,-0.882724940776825,-0.0366410166025162,0.64059442281723,-0.767004609107971,0.0537331700325012,0.648623645305634,-0.759210109710693,0.0315799117088318,0.518950819969177,-0.854220330715179,0.186929509043694,0.417252361774445,-0.889358043670654,0.173349484801292,0.477961778640747,-0.86110532283783,0.146451845765114,0.234289839863777,-0.961072325706482,0.186929509043694,0.417252361774445,-0.889358043670654,0.241229176521301,0.213732078671455,-0.946639835834503,0.182100608944893,0.500186562538147,-0.846553385257721,0.2407615929842,0.507385313510895,0.827401876449585,0.291402041912079,0.551611483097076,0.781542956829071,0.250494122505188,0.514607131481171,0.820019543170929,0.423227101564407,0.534019291400909,0.731916785240173,0.532754182815552,0.506091058254242,0.678265869617462,\r\n0.394262254238129,0.558745086193085,0.729630768299103,0.532754182815552,0.506091058254242,0.678265869617462,0.580977261066437,0.444744557142258,0.681665241718292,0.659142911434174,0.419004082679749,0.624472618103027,0.291402041912079,0.551611483097076,0.781542956829071,0.305773258209229,0.448322147130966,0.839946329593658,0.423227101564407,0.534019291400909,0.731916785240173,0.480362743139267,0.20265007019043,-0.853337228298187,0.592881858348846,0.1853436678648,-0.783670008182526,0.45952832698822,0.30293732881546,-0.834902703762054,0.592881858348846,0.1853436678648,-0.783670008182526,0.531464874744415,0.371757835149765,-0.761144578456879,0.446496963500977,0.391298592090607,-0.804689824581146,0.631033062934875,-0.357822239398956,-0.688302516937256,0.833553075790405,-0.145659819245338,-0.532890498638153,0.73752224445343,-0.119141466915607,-0.664730072021484,0.833553075790405,-0.145659819245338,-0.532890498638153,0.719509780406952,-0.460230112075806,-0.520090281963348,0.897543847560883,-0.216074854135513,-0.384352147579193,0.897543847560883,-0.216074854135513,-0.384352147579193,0.760031938552856,-0.568767488002777,-0.314411848783493,0.945385158061981,-0.277243167161942,-0.171414643526077,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.945594012737274,-0.305946677923203,0.110672660171986,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.945385158061981,-0.277243167161942,-0.171414643526077,0.872993230819702,-0.479885309934616,0.0871371030807495,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.684388756752014,0.162796556949615,-0.710710287094116,0.67677628993988,0.130064904689789,-0.724608063697815,0.673197627067566,0.187958627939224,-0.715175747871399,0.663937985897064,-0.061487652361393,-0.745255291461945,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.588018119335175,-0.179213225841522,-0.788744032382965,0.588018119335175,-0.179213225841522,-0.788744032382965,0.73752224445343,-0.119141466915607,-0.664730072021484,0.663937985897064,-0.061487652361393,-0.745255291461945,0.550429046154022,-0.0242177192121744,-0.834530591964722,\r\n0.508652687072754,0.11210460960865,-0.853642106056213,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.508652687072754,0.11210460960865,-0.853642106056213,0.67677628993988,0.130064904689789,-0.724608063697815,0.684388756752014,0.162796556949615,-0.710710287094116,0.592881858348846,0.1853436678648,-0.783670008182526,0.673197627067566,0.187958627939224,-0.715175747871399,0.531464874744415,0.371757835149765,-0.761144578456879,-0.082565002143383,0.244911164045334,-0.966023504734039,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.0681188926100731,0.123727880418301,-0.989975333213806,0.211626380681992,0.184972852468491,-0.959687054157257,0.178856953978539,0.0866935253143311,-0.98004812002182,0.28451469540596,0.125801831483841,-0.950381577014923,-0.0681188926100731,0.123727880418301,-0.989975333213806,0.016304848715663,0.0655113607645035,-0.997718572616577,-0.082565002143383,0.244911164045334,-0.966023504734039,0.123340912163258,0.0989778786897659,-0.987415969371796,0.10272891074419,0.197410449385643,-0.974923491477966,0.016304848715663,0.0655113607645035,-0.997718572616577,0.178856953978539,0.0866935253143311,-0.98004812002182,0.211626380681992,0.184972852468491,-0.959687054157257,0.123340912163258,0.0989778786897659,-0.987415969371796,0.241087585687637,0.11788521707058,-0.963317036628723,0.321149706840515,0.0923793837428093,-0.942511975765228,0.28451469540596,0.125801831483841,-0.950381577014923,0.241087585687637,0.11788521707058,-0.963317036628723,0.316787302494049,0.10399479418993,-0.94277822971344,0.321149706840515,0.0923793837428093,-0.942511975765228,0.316787302494049,0.10399479418993,-0.94277822971344,0.271776676177979,0.156839698553085,-0.949493885040283,0.358134627342224,0.167805209755898,-0.918466567993164,0.358134627342224,0.167805209755898,-0.918466567993164,0.365358293056488,0.141255423426628,-0.920086979866028,0.480362743139267,0.20265007019043,-0.853337228298187,0.920099258422852,0.347235411405563,0.181231364607811,0.889516592025757,0.406859368085861,0.20790758728981,0.901151597499847,0.326435387134552,0.285246759653091,\r\n0.901151597499847,0.326435387134552,0.285246759653091,0.842435359954834,0.325831443071365,0.429111301898956,0.873084664344788,0.304998338222504,0.380393296480179,0.753512561321259,0.371617019176483,0.54232782125473,0.790619611740112,0.317228525876999,0.523723661899567,0.842435359954834,0.325831443071365,0.429111301898956,0.919933319091797,0.371021956205368,0.126748040318489,0.903509795665741,0.411103963851929,0.121092729270458,0.920099258422852,0.347235411405563,0.181231364607811,0.71265059709549,0.415267050266266,0.56540447473526,0.716790020465851,0.391973942518234,0.576687335968018,0.710168123245239,0.396692305803299,0.581632375717163,0.716790020465851,0.391973942518234,0.576687335968018,0.753512561321259,0.371617019176483,0.54232782125473,0.710168123245239,0.396692305803299,0.581632375717163,0.716790020465851,0.391973942518234,0.576687335968018,0.716003477573395,0.392703950405121,0.577167630195618,0.714044392108917,0.402328968048096,0.572950124740601,0.714044392108917,0.402328968048096,0.572950124740601,0.659142911434174,0.419004082679749,0.624472618103027,0.680136501789093,0.373225420713425,0.630965054035187,0.197553336620331,0.714155554771423,-0.671531319618225,0.198198407888412,0.714078962802887,-0.671422719955444,0.248174801468849,0.715867340564728,-0.652643144130707,0.281874746084213,0.663952350616455,-0.69261372089386,0.316713631153107,0.600776612758636,-0.734002649784088,0.355901956558228,0.56786972284317,-0.742197811603546,0.197553336620331,0.714155554771423,-0.671531319618225,0.248174801468849,0.715867340564728,-0.652643144130707,0.281874746084213,0.663952350616455,-0.69261372089386,0.355901956558228,0.56786972284317,-0.742197811603546,0.316713631153107,0.600776612758636,-0.734002649784088,0.394421964883804,0.505796074867249,-0.767203688621521,0.469334661960602,0.369468361139297,-0.80200868844986,0.404865711927414,0.429512172937393,-0.807219266891479,0.394421964883804,0.505796074867249,-0.767203688621521,0.617011308670044,0.235857143998146,-0.750778436660767,0.621003866195679,0.141898199915886,-0.770855963230133,\r\n0.561230003833771,0.203118726611137,-0.802348732948303,0.570390164852142,0.253712058067322,-0.78120744228363,0.561230003833771,0.203118726611137,-0.802348732948303,0.60846334695816,0.210661128163338,-0.765110492706299,0.60846334695816,0.210661128163338,-0.765110492706299,0.596925020217896,0.366829812526703,-0.713523805141449,0.570390164852142,0.253712058067322,-0.78120744228363,0.52090311050415,0.322474807500839,-0.790360629558563,0.596925020217896,0.366829812526703,-0.713523805141449,0.496476888656616,0.368567615747452,-0.785918951034546,0.496476888656616,0.368567615747452,-0.785918951034546,0.458139419555664,0.308553218841553,-0.833608508110046,0.469334661960602,0.369468361139297,-0.80200868844986,0.856627702713013,0.223413184285164,-0.465054124593735,0.830000221729279,0.146850481629372,-0.538084030151367,0.826161980628967,0.239905819296837,-0.50980532169342,0.845881998538971,0.339043021202087,-0.411744385957718,0.854837715625763,0.263227880001068,-0.447172671556473,0.856627702713013,0.223413184285164,-0.465054124593735,0.77130401134491,0.214389577507973,-0.599272131919861,0.830000221729279,0.146850481629372,-0.538084030151367,0.768446207046509,0.117041356861591,-0.629119694232941,0.86554890871048,0.311527997255325,-0.392141848802567,0.854837715625763,0.263227880001068,-0.447172671556473,0.845881998538971,0.339043021202087,-0.411744385957718,0.908293604850769,0.285897254943848,-0.305393993854523,0.86554890871048,0.311527997255325,-0.392141848802567,0.846563458442688,0.385069847106934,-0.367493510246277,0.768446207046509,0.117041356861591,-0.629119694232941,0.693685173988342,0.101882793009281,-0.713036179542542,0.705513417720795,0.181106716394424,-0.685164928436279,0.693685173988342,0.101882793009281,-0.713036179542542,0.621003866195679,0.141898199915886,-0.770855963230133,0.705513417720795,0.181106716394424,-0.685164928436279,0.846563458442688,0.385069847106934,-0.367493510246277,0.84037458896637,0.437928140163422,-0.319357633590698,0.889557182788849,0.357324749231339,-0.284617036581039,0.934905409812927,0.298695534467697,-0.191658049821854,\r\n0.889557182788849,0.357324749231339,-0.284617036581039,0.902722895145416,0.391223102807999,-0.178985118865967,0.910026252269745,0.412365883588791,-0.0425001084804535,0.931055903434753,0.351556360721588,-0.0976867750287056,0.92816025018692,0.36604443192482,-0.067305400967598,0.942655563354492,0.308371961116791,-0.127699092030525,0.934905409812927,0.298695534467697,-0.191658049821854,0.902722895145416,0.391223102807999,-0.178985118865967,0.931055903434753,0.351556360721588,-0.0976867750287056,0.942655563354492,0.308371961116791,-0.127699092030525,0.92816025018692,0.36604443192482,-0.067305400967598,0.919933319091797,0.371021956205368,0.126748040318489,0.908096075057983,0.397743463516235,0.131001874804497,0.901721775531769,0.423015564680099,0.0891938209533691,0.909001171588898,0.414270967245102,0.0457859039306641,0.926873028278351,0.375299483537674,-0.00752666546031833,0.907662272453308,0.419332206249237,-0.0175935234874487,0.901721775531769,0.423015564680099,0.0891938209533691,0.908096075057983,0.397743463516235,0.131001874804497,0.911414504051209,0.396864861249924,0.108728498220444,0.911414504051209,0.396864861249924,0.108728498220444,0.929526209831238,0.366573989391327,0.0400553308427334,0.909001171588898,0.414270967245102,0.0457859039306641,0.907662272453308,0.419332206249237,-0.0175935234874487,0.926873028278351,0.375299483537674,-0.00752666546031833,0.922509610652924,0.377550661563873,-0.0801947116851807,0.910026252269745,0.412365883588791,-0.0425001084804535,0.922509610652924,0.377550661563873,-0.0801947116851807,0.931055903434753,0.351556360721588,-0.0976867750287056,0.0537331700325012,0.648623645305634,-0.759210109710693,0.197553336620331,0.714155554771423,-0.671531319618225,0.183051899075508,0.622786104679108,-0.760676860809326,0.160603731870651,0.286760300397873,-0.944444179534912,0.00556098157539964,0.320727527141571,-0.947154998779297,0.00308101763948798,0.470932960510254,-0.882163524627686,0.241229176521301,0.213732078671455,-0.946639835834503,0.160603731870651,0.286760300397873,-0.944444179534912,0.182100608944893,0.500186562538147,-0.846553385257721,\r\n-0.140499979257584,0.31123411655426,-0.939889848232269,-0.0973194763064384,0.516613662242889,-0.850669860839844,0.0291239731013775,0.319867789745331,-0.947014391422272,-0.224580675363541,0.362952291965485,-0.904339015483856,-0.23427514731884,0.417002767324448,-0.878193438053131,-0.140499979257584,0.31123411655426,-0.939889848232269,0.0315799117088318,0.518950819969177,-0.854220330715179,0.0291239731013775,0.319867789745331,-0.947014391422272,-0.0973194763064384,0.516613662242889,-0.850669860839844,-0.0417569801211357,0.546735405921936,-0.836263477802277,-0.153653502464294,0.444057613611221,-0.882724940776825,-0.224580675363541,0.362952291965485,-0.904339015483856,0.00308101763948798,0.470932960510254,-0.882163524627686,-0.153653502464294,0.444057613611221,-0.882724940776825,0.0578846596181393,0.668856620788574,-0.741134285926819,0.136296480894089,0.463934689760208,-0.875321507453918,0.0315799117088318,0.518950819969177,-0.854220330715179,0.0537331700325012,0.648623645305634,-0.759210109710693,0.175961375236511,0.674975156784058,-0.716551423072815,0.173349484801292,0.477961778640747,-0.86110532283783,0.186929509043694,0.417252361774445,-0.889358043670654,0.186929509043694,0.417252361774445,-0.889358043670654,0.182100608944893,0.500186562538147,-0.846553385257721,0.16944046318531,0.719626069068909,-0.673370718955994,0.305773258209229,0.448322147130966,0.839946329593658,0.291402041912079,0.551611483097076,0.781542956829071,0.2407615929842,0.507385313510895,0.827401876449585,0.423227101564407,0.534019291400909,0.731916785240173,0.580977261066437,0.444744557142258,0.681665241718292,0.532754182815552,0.506091058254242,0.678265869617462,0.580977261066437,0.444744557142258,0.681665241718292,0.645422160625458,0.344025880098343,0.681964993476868,0.659142911434174,0.419004082679749,0.624472618103027,0.460626095533371,0.411832928657532,0.786267817020416,0.423227101564407,0.534019291400909,0.731916785240173,0.305773258209229,0.448322147130966,0.839946329593658,0.480362743139267,0.20265007019043,-0.853337228298187,0.520925581455231,0.0909301340579987,-0.848744988441467,\r\n0.592881858348846,0.1853436678648,-0.783670008182526,0.631033062934875,-0.357822239398956,-0.688302516937256,0.719509780406952,-0.460230112075806,-0.520090281963348,0.833553075790405,-0.145659819245338,-0.532890498638153,0.588018119335175,-0.179213225841522,-0.788744032382965,0.631033062934875,-0.357822239398956,-0.688302516937256,0.73752224445343,-0.119141466915607,-0.664730072021484,0.760031938552856,-0.568767488002777,-0.314411848783493,0.897543847560883,-0.216074854135513,-0.384352147579193,0.719509780406952,-0.460230112075806,-0.520090281963348,0.945385158061981,-0.277243167161942,-0.171414643526077,0.760031938552856,-0.568767488002777,-0.314411848783493,0.822205483913422,-0.562321960926056,-0.0881588831543922,0.989723145961761,-0.125159382820129,-0.0691599249839783,0.872993230819702,-0.479885309934616,0.0871371030807495,0.945594012737274,-0.305946677923203,0.110672660171986,0.945385158061981,-0.277243167161942,-0.171414643526077,0.822205483913422,-0.562321960926056,-0.0881588831543922,0.872993230819702,-0.479885309934616,0.0871371030807495,0.684388756752014,0.162796556949615,-0.710710287094116,0.673197627067566,0.187958627939224,-0.715175747871399,0.712400257587433,0.108250357210636,-0.693374037742615,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.322742700576782,-0.258557975292206,-0.910486042499542,0.588018119335175,-0.179213225841522,-0.788744032382965,0.254812151193619,0.00465114647522569,-0.966979324817657,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.508652687072754,0.11210460960865,-0.853642106056213,0.322742700576782,-0.258557975292206,-0.910486042499542,0.550429046154022,-0.0242177192121744,-0.834530591964722,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.508652687072754,0.11210460960865,-0.853642106056213,0.684388756752014,0.162796556949615,-0.710710287094116,0.532496273517609,0.302751809358597,-0.790435910224915,0.673197627067566,0.187958627939224,-0.715175747871399,0.592881858348846,0.1853436678648,-0.783670008182526,0.712400257587433,0.108250357210636,-0.693374037742615,\r\n-0.0681188926100731,0.123727880418301,-0.989975333213806,-0.219464972615242,0.346631556749344,-0.911965787410736,-0.107182562351227,0.1931242197752,-0.975302398204803,0.241087585687637,0.11788521707058,-0.963317036628723,0.28451469540596,0.125801831483841,-0.950381577014923,0.178856953978539,0.0866935253143311,-0.98004812002182,-0.0681188926100731,0.123727880418301,-0.989975333213806,0.0013789051445201,0.031025568023324,-0.999517619609833,0.016304848715663,0.0655113607645035,-0.997718572616577,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.123340912163258,0.0989778786897659,-0.987415969371796,0.016304848715663,0.0655113607645035,-0.997718572616577,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.178856953978539,0.0866935253143311,-0.98004812002182,0.123340912163258,0.0989778786897659,-0.987415969371796,0.316787302494049,0.10399479418993,-0.94277822971344,0.241087585687637,0.11788521707058,-0.963317036628723,0.271776676177979,0.156839698553085,-0.949493885040283,0.250851452350616,0.157929465174675,-0.955055832862854,0.358134627342224,0.167805209755898,-0.918466567993164,0.271776676177979,0.156839698553085,-0.949493885040283,0.365358293056488,0.141255423426628,-0.920086979866028,0.358134627342224,0.167805209755898,-0.918466567993164,0.250851452350616,0.157929465174675,-0.955055832862854,0.365358293056488,0.141255423426628,-0.920086979866028,0.520925581455231,0.0909301340579987,-0.848744988441467,0.480362743139267,0.20265007019043,-0.853337228298187,0.901151597499847,0.326435387134552,0.285246759653091,0.916411459445953,0.341288596391678,0.209074392914772,0.920099258422852,0.347235411405563,0.181231364607811,0.842435359954834,0.325831443071365,0.429111301898956,0.834315717220306,0.304841190576553,0.459335386753082,0.873084664344788,0.304998338222504,0.380393296480179,0.873084664344788,0.304998338222504,0.380393296480179,0.886449873447418,0.340615719556808,0.313348740339279,0.901151597499847,0.326435387134552,0.285246759653091,0.751416623592377,0.351517915725708,0.558397710323334,0.790619611740112,0.317228525876999,0.523723661899567,\r\n0.753512561321259,0.371617019176483,0.54232782125473,0.842435359954834,0.325831443071365,0.429111301898956,0.790619611740112,0.317228525876999,0.523723661899567,0.834315717220306,0.304841190576553,0.459335386753082,0.920099258422852,0.347235411405563,0.181231364607811,0.935367703437805,0.312001526355743,0.166559800505638,0.919933319091797,0.371021956205368,0.126748040318489,0.716790020465851,0.391973942518234,0.576687335968018,0.751416623592377,0.351517915725708,0.558397710323334,0.753512561321259,0.371617019176483,0.54232782125473,0.704528570175171,0.403411656618118,0.583864986896515,0.716790020465851,0.391973942518234,0.576687335968018,0.714044392108917,0.402328968048096,0.572950124740601,0.645422160625458,0.344025880098343,0.681964993476868,0.680136501789093,0.373225420713425,0.630965054035187,0.659142911434174,0.419004082679749,0.624472618103027,0.714044392108917,0.402328968048096,0.572950124740601,0.680136501789093,0.373225420713425,0.630965054035187,0.704528570175171,0.403411656618118,0.583864986896515,0.289193123579025,0.612536251544952,-0.735640287399292,0.281874746084213,0.663952350616455,-0.69261372089386,0.355901956558228,0.56786972284317,-0.742197811603546,0.197553336620331,0.714155554771423,-0.671531319618225,0.281874746084213,0.663952350616455,-0.69261372089386,0.289193123579025,0.612536251544952,-0.735640287399292,0.404865711927414,0.429512172937393,-0.807219266891479,0.355901956558228,0.56786972284317,-0.742197811603546,0.394421964883804,0.505796074867249,-0.767203688621521,0.469334661960602,0.369468361139297,-0.80200868844986,0.419609278440475,0.30901250243187,-0.85348653793335,0.404865711927414,0.429512172937393,-0.807219266891479,0.621003866195679,0.141898199915886,-0.770855963230133,0.60846334695816,0.210661128163338,-0.765110492706299,0.561230003833771,0.203118726611137,-0.802348732948303,0.596925020217896,0.366829812526703,-0.713523805141449,0.60846334695816,0.210661128163338,-0.765110492706299,0.63053560256958,0.367073595523834,-0.683872520923615,0.542816519737244,0.382619827985764,-0.747631013393402,\r\n0.496476888656616,0.368567615747452,-0.785918951034546,0.596925020217896,0.366829812526703,-0.713523805141449,0.496476888656616,0.368567615747452,-0.785918951034546,0.389946669340134,0.279132127761841,-0.87751168012619,0.458139419555664,0.308553218841553,-0.833608508110046,0.458139419555664,0.308553218841553,-0.833608508110046,0.413673579692841,0.236906662583351,-0.879061579704285,0.469334661960602,0.369468361139297,-0.80200868844986,0.856627702713013,0.223413184285164,-0.465054124593735,0.833141267299652,0.201725602149963,-0.514958500862122,0.830000221729279,0.146850481629372,-0.538084030151367,0.854837715625763,0.263227880001068,-0.447172671556473,0.833141267299652,0.201725602149963,-0.514958500862122,0.856627702713013,0.223413184285164,-0.465054124593735,0.799212872982025,0.140004858374596,-0.584514558315277,0.768446207046509,0.117041356861591,-0.629119694232941,0.830000221729279,0.146850481629372,-0.538084030151367,0.86554890871048,0.311527997255325,-0.392141848802567,0.877360463142395,0.271573692560196,-0.39558333158493,0.854837715625763,0.263227880001068,-0.447172671556473,0.877360463142395,0.271573692560196,-0.39558333158493,0.86554890871048,0.311527997255325,-0.392141848802567,0.908293604850769,0.285897254943848,-0.305393993854523,0.908293604850769,0.285897254943848,-0.305393993854523,0.846563458442688,0.385069847106934,-0.367493510246277,0.889557182788849,0.357324749231339,-0.284617036581039,0.693685173988342,0.101882793009281,-0.713036179542542,0.768446207046509,0.117041356861591,-0.629119694232941,0.753763437271118,0.103302471339703,-0.648975431919098,0.693685173988342,0.101882793009281,-0.713036179542542,0.63821816444397,0.203965753316879,-0.742344439029694,0.621003866195679,0.141898199915886,-0.770855963230133,0.934905409812927,0.298695534467697,-0.191658049821854,0.908293604850769,0.285897254943848,-0.305393993854523,0.889557182788849,0.357324749231339,-0.284617036581039,0.934905409812927,0.298695534467697,-0.191658049821854,0.942655563354492,0.308371961116791,-0.127699092030525,0.936560332775116,0.273577868938446,-0.219111517071724,\r\n0.942655563354492,0.308371961116791,-0.127699092030525,0.931055903434753,0.351556360721588,-0.0976867750287056,0.929305493831635,0.317792654037476,-0.188146248459816,0.908096075057983,0.397743463516235,0.131001874804497,0.919933319091797,0.371021956205368,0.126748040318489,0.924970865249634,0.348221927881241,0.1522176861763,0.926873028278351,0.375299483537674,-0.00752666546031833,0.909001171588898,0.414270967245102,0.0457859039306641,0.929526209831238,0.366573989391327,0.0400553308427334,0.911414504051209,0.396864861249924,0.108728498220444,0.908096075057983,0.397743463516235,0.131001874804497,0.912087261676788,0.380207121372223,0.153424337506294,0.911414504051209,0.396864861249924,0.108728498220444,0.935384094715118,0.338894844055176,0.101029090583324,0.929526209831238,0.366573989391327,0.0400553308427334,0.922509610652924,0.377550661563873,-0.0801947116851807,0.926873028278351,0.375299483537674,-0.00752666546031833,0.938495218753815,0.336714953184128,-0.0764834135770798,0.922509610652924,0.377550661563873,-0.0801947116851807,0.928223192691803,0.333352506160736,-0.165159448981285,0.931055903434753,0.351556360721588,-0.0976867750287056,0.289193123579025,0.612536251544952,-0.735640287399292,0.183051899075508,0.622786104679108,-0.760676860809326,0.197553336620331,0.714155554771423,-0.671531319618225,0.0537331700325012,0.648623645305634,-0.759210109710693,0.183051899075508,0.622786104679108,-0.760676860809326,0.136296480894089,0.463934689760208,-0.875321507453918,0.00308101763948798,0.470932960510254,-0.882163524627686,0.182100608944893,0.500186562538147,-0.846553385257721,0.160603731870651,0.286760300397873,-0.944444179534912,-0.140499979257584,0.31123411655426,-0.939889848232269,0.0291239731013775,0.319867789745331,-0.947014391422272,-0.0136015322059393,0.188918441534042,-0.981898546218872,-0.0741782113909721,0.397321134805679,-0.914676666259766,-0.224580675363541,0.362952291965485,-0.904339015483856,-0.140499979257584,0.31123411655426,-0.939889848232269,0.0291239731013775,0.319867789745331,-0.947014391422272,0.0315799117088318,0.518950819969177,-0.854220330715179,\r\n0.136296480894089,0.463934689760208,-0.875321507453918,-0.0417569801211357,0.546735405921936,-0.836263477802277,0.0578846596181393,0.668856620788574,-0.741134285926819,-0.153653502464294,0.444057613611221,-0.882724940776825,-0.0417569801211357,0.546735405921936,-0.836263477802277,-0.224580675363541,0.362952291965485,-0.904339015483856,-0.0741782113909721,0.397321134805679,-0.914676666259766,0.00308101763948798,0.470932960510254,-0.882163524627686,0.0578846596181393,0.668856620788574,-0.741134285926819,0.182100608944893,0.500186562538147,-0.846553385257721,0.16944046318531,0.719626069068909,-0.673370718955994,0.175961375236511,0.674975156784058,-0.716551423072815,0.186929509043694,0.417252361774445,-0.889358043670654,0.182100608944893,0.500186562538147,-0.846553385257721,0.0578846596181393,0.668856620788574,-0.741134285926819,0.16944046318531,0.719626069068909,-0.673370718955994,0.460626095533371,0.411832928657532,0.786267817020416,0.580977261066437,0.444744557142258,0.681665241718292,0.423227101564407,0.534019291400909,0.731916785240173,0.645422160625458,0.344025880098343,0.681964993476868,0.580977261066437,0.444744557142258,0.681665241718292,0.553564071655273,0.276019543409348,0.785735189914703,0.460626095533371,0.411832928657532,0.786267817020416,0.305773258209229,0.448322147130966,0.839946329593658,0.401104062795639,0.263095736503601,0.877437174320221,0.637349903583527,0.0518895089626312,-0.768825352191925,0.592881858348846,0.1853436678648,-0.783670008182526,0.520925581455231,0.0909301340579987,-0.848744988441467,0.631033062934875,-0.357822239398956,-0.688302516937256,0.426807701587677,-0.678182721138,-0.598250150680542,0.719509780406952,-0.460230112075806,-0.520090281963348,0.380969882011414,-0.443092674016953,-0.811499059200287,0.631033062934875,-0.357822239398956,-0.688302516937256,0.588018119335175,-0.179213225841522,-0.788744032382965,0.760031938552856,-0.568767488002777,-0.314411848783493,0.719509780406952,-0.460230112075806,-0.520090281963348,0.494931280612946,-0.767264723777771,-0.407857537269592,0.822205483913422,-0.562321960926056,-0.0881588831543922,\r\n0.760031938552856,-0.568767488002777,-0.314411848783493,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.945594012737274,-0.305946677923203,0.110672660171986,0.872993230819702,-0.479885309934616,0.0871371030807495,0.784700036048889,-0.538433492183685,0.307140082120895,0.666962385177612,-0.71293306350708,0.216535434126854,0.872993230819702,-0.479885309934616,0.0871371030807495,0.822205483913422,-0.562321960926056,-0.0881588831543922,0.684388756752014,0.162796556949615,-0.710710287094116,0.712400257587433,0.108250357210636,-0.693374037742615,0.664736211299896,0.239340931177139,-0.707701563835144,0.322742700576782,-0.258557975292206,-0.910486042499542,0.380969882011414,-0.443092674016953,-0.811499059200287,0.588018119335175,-0.179213225841522,-0.788744032382965,0.0897961109876633,-0.146291196346283,-0.985157549381256,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.254812151193619,0.00465114647522569,-0.966979324817657,0.508652687072754,0.11210460960865,-0.853642106056213,0.380696386098862,0.200524151325226,-0.902696073055267,0.254812151193619,0.00465114647522569,-0.966979324817657,0.322742700576782,-0.258557975292206,-0.910486042499542,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.0821164399385452,-0.31206414103508,-0.946505546569824,0.664736211299896,0.239340931177139,-0.707701563835144,0.532496273517609,0.302751809358597,-0.790435910224915,0.684388756752014,0.162796556949615,-0.710710287094116,0.508652687072754,0.11210460960865,-0.853642106056213,0.532496273517609,0.302751809358597,-0.790435910224915,0.380696386098862,0.200524151325226,-0.902696073055267,0.592881858348846,0.1853436678648,-0.783670008182526,0.637349903583527,0.0518895089626312,-0.768825352191925,0.712400257587433,0.108250357210636,-0.693374037742615,-0.0681188926100731,0.123727880418301,-0.989975333213806,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.0280172266066074,0.0954695120453835,-0.995037972927094,0.160503014922142,0.0656745731830597,-0.984847962856293,0.241087585687637,0.11788521707058,-0.963317036628723,\r\n0.178856953978539,0.0866935253143311,-0.98004812002182,-0.0280172266066074,0.0954695120453835,-0.995037972927094,0.0013789051445201,0.031025568023324,-0.999517619609833,-0.0681188926100731,0.123727880418301,-0.989975333213806,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.016304848715663,0.0655113607645035,-0.997718572616577,0.0013789051445201,0.031025568023324,-0.999517619609833,0.178856953978539,0.0866935253143311,-0.98004812002182,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.271776676177979,0.156839698553085,-0.949493885040283,0.241087585687637,0.11788521707058,-0.963317036628723,0.250851452350616,0.157929465174675,-0.955055832862854,0.365358293056488,0.141255423426628,-0.920086979866028,0.250851452350616,0.157929465174675,-0.955055832862854,0.255897760391235,0.112360894680023,-0.960151672363281,0.358216822147369,0.124542906880379,-0.925294399261475,0.520925581455231,0.0909301340579987,-0.848744988441467,0.365358293056488,0.141255423426628,-0.920086979866028,0.886449873447418,0.340615719556808,0.313348740339279,0.916411459445953,0.341288596391678,0.209074392914772,0.901151597499847,0.326435387134552,0.285246759653091,0.935367703437805,0.312001526355743,0.166559800505638,0.920099258422852,0.347235411405563,0.181231364607811,0.916411459445953,0.341288596391678,0.209074392914772,0.834315717220306,0.304841190576553,0.459335386753082,0.850906789302826,0.298642873764038,0.432168900966644,0.873084664344788,0.304998338222504,0.380393296480179,0.859822869300842,0.345338374376297,0.376092940568924,0.886449873447418,0.340615719556808,0.313348740339279,0.873084664344788,0.304998338222504,0.380393296480179,0.785985589027405,0.334565937519073,0.519896149635315,0.790619611740112,0.317228525876999,0.523723661899567,0.751416623592377,0.351517915725708,0.558397710323334,0.785985589027405,0.334565937519073,0.519896149635315,0.834315717220306,0.304841190576553,0.459335386753082,0.790619611740112,0.317228525876999,0.523723661899567,0.935367703437805,0.312001526355743,0.166559800505638,\r\n0.924970865249634,0.348221927881241,0.1522176861763,0.919933319091797,0.371021956205368,0.126748040318489,0.716790020465851,0.391973942518234,0.576687335968018,0.749587714672089,0.367915332317352,0.550233006477356,0.751416623592377,0.351517915725708,0.558397710323334,0.704528570175171,0.403411656618118,0.583864986896515,0.749587714672089,0.367915332317352,0.550233006477356,0.716790020465851,0.391973942518234,0.576687335968018,0.645422160625458,0.344025880098343,0.681964993476868,0.607167780399323,0.317308634519577,0.728465855121613,0.680136501789093,0.373225420713425,0.630965054035187,0.641480684280396,0.401402533054352,0.653741776943207,0.704528570175171,0.403411656618118,0.583864986896515,0.680136501789093,0.373225420713425,0.630965054035187,0.289193123579025,0.612536251544952,-0.735640287399292,0.355901956558228,0.56786972284317,-0.742197811603546,0.296081811189651,0.474136829376221,-0.829174101352692,0.296081811189651,0.474136829376221,-0.829174101352692,0.355901956558228,0.56786972284317,-0.742197811603546,0.404865711927414,0.429512172937393,-0.807219266891479,0.419609278440475,0.30901250243187,-0.85348653793335,0.469334661960602,0.369468361139297,-0.80200868844986,0.413673579692841,0.236906662583351,-0.879061579704285,0.327561497688293,0.320663243532181,-0.888751029968262,0.404865711927414,0.429512172937393,-0.807219266891479,0.419609278440475,0.30901250243187,-0.85348653793335,0.621003866195679,0.141898199915886,-0.770855963230133,0.63821816444397,0.203965753316879,-0.742344439029694,0.60846334695816,0.210661128163338,-0.765110492706299,0.60846334695816,0.210661128163338,-0.765110492706299,0.63821816444397,0.203965753316879,-0.742344439029694,0.63053560256958,0.367073595523834,-0.683872520923615,0.63053560256958,0.367073595523834,-0.683872520923615,0.587847232818604,0.368692338466644,-0.720070421695709,0.596925020217896,0.366829812526703,-0.713523805141449,0.496476888656616,0.368567615747452,-0.785918951034546,0.542816519737244,0.382619827985764,-0.747631013393402,0.446434706449509,0.313547611236572,-0.838083386421204,\r\n0.590401470661163,0.36643573641777,-0.719132006168365,0.542816519737244,0.382619827985764,-0.747631013393402,0.596925020217896,0.366829812526703,-0.713523805141449,0.496476888656616,0.368567615747452,-0.785918951034546,0.446434706449509,0.313547611236572,-0.838083386421204,0.389946669340134,0.279132127761841,-0.87751168012619,0.389946669340134,0.279132127761841,-0.87751168012619,0.413673579692841,0.236906662583351,-0.879061579704285,0.458139419555664,0.308553218841553,-0.833608508110046,0.833141267299652,0.201725602149963,-0.514958500862122,0.799212872982025,0.140004858374596,-0.584514558315277,0.830000221729279,0.146850481629372,-0.538084030151367,0.833141267299652,0.201725602149963,-0.514958500862122,0.854837715625763,0.263227880001068,-0.447172671556473,0.837985455989838,0.289520442485809,-0.462556123733521,0.799212872982025,0.140004858374596,-0.584514558315277,0.753763437271118,0.103302471339703,-0.648975431919098,0.768446207046509,0.117041356861591,-0.629119694232941,0.837985455989838,0.289520442485809,-0.462556123733521,0.854837715625763,0.263227880001068,-0.447172671556473,0.877360463142395,0.271573692560196,-0.39558333158493,0.877360463142395,0.271573692560196,-0.39558333158493,0.908293604850769,0.285897254943848,-0.305393993854523,0.909673810005188,0.228168189525604,-0.347034156322479,0.753763437271118,0.103302471339703,-0.648975431919098,0.708160758018494,0.15965561568737,-0.687763214111328,0.693685173988342,0.101882793009281,-0.713036179542542,0.693685173988342,0.101882793009281,-0.713036179542542,0.667080223560333,0.222292840480804,-0.711048305034637,0.63821816444397,0.203965753316879,-0.742344439029694,0.934905409812927,0.298695534467697,-0.191658049821854,0.936560332775116,0.273577868938446,-0.219111517071724,0.908293604850769,0.285897254943848,-0.305393993854523,0.936560332775116,0.273577868938446,-0.219111517071724,0.942655563354492,0.308371961116791,-0.127699092030525,0.929305493831635,0.317792654037476,-0.188146248459816,0.928223192691803,0.333352506160736,-0.165159448981285,0.929305493831635,0.317792654037476,-0.188146248459816,\r\n0.931055903434753,0.351556360721588,-0.0976867750287056,0.912087261676788,0.380207121372223,0.153424337506294,0.908096075057983,0.397743463516235,0.131001874804497,0.924970865249634,0.348221927881241,0.1522176861763,0.926873028278351,0.375299483537674,-0.00752666546031833,0.929526209831238,0.366573989391327,0.0400553308427334,0.948429107666016,0.3167984187603,-0.0109937144443393,0.911414504051209,0.396864861249924,0.108728498220444,0.912087261676788,0.380207121372223,0.153424337506294,0.935384094715118,0.338894844055176,0.101029090583324,0.947661101818085,0.315704673528671,0.0476325340569019,0.929526209831238,0.366573989391327,0.0400553308427334,0.935384094715118,0.338894844055176,0.101029090583324,0.926873028278351,0.375299483537674,-0.00752666546031833,0.948429107666016,0.3167984187603,-0.0109937144443393,0.938495218753815,0.336714953184128,-0.0764834135770798,0.938495218753815,0.336714953184128,-0.0764834135770798,0.928223192691803,0.333352506160736,-0.165159448981285,0.922509610652924,0.377550661563873,-0.0801947116851807,0.289193123579025,0.612536251544952,-0.735640287399292,0.136296480894089,0.463934689760208,-0.875321507453918,0.183051899075508,0.622786104679108,-0.760676860809326,0.0848776325583458,0.17894259095192,-0.98019140958786,-0.0136015322059393,0.188918441534042,-0.981898546218872,0.0291239731013775,0.319867789745331,-0.947014391422272,-0.0495673604309559,0.272293299436569,-0.960936665534973,-0.140499979257584,0.31123411655426,-0.939889848232269,-0.0136015322059393,0.188918441534042,-0.981898546218872,-0.0495673604309559,0.272293299436569,-0.960936665534973,-0.0741782113909721,0.397321134805679,-0.914676666259766,-0.140499979257584,0.31123411655426,-0.939889848232269,0.0291239731013775,0.319867789745331,-0.947014391422272,0.136296480894089,0.463934689760208,-0.875321507453918,0.0649104043841362,0.229387789964676,-0.971168279647827,-0.0417569801211357,0.546735405921936,-0.836263477802277,0.136618047952652,0.774695038795471,-0.617400228977203,0.0578846596181393,0.668856620788574,-0.741134285926819,-0.0417569801211357,0.546735405921936,-0.836263477802277,\r\n-0.0741782113909721,0.397321134805679,-0.914676666259766,0.0826859623193741,0.662885308265686,-0.744141101837158,0.175961375236511,0.674975156784058,-0.716551423072815,0.16944046318531,0.719626069068909,-0.673370718955994,0.18874517083168,0.856211006641388,-0.480913549661636,0.0578846596181393,0.668856620788574,-0.741134285926819,0.162770837545395,0.821651101112366,-0.54625540971756,0.16944046318531,0.719626069068909,-0.673370718955994,0.553564071655273,0.276019543409348,0.785735189914703,0.580977261066437,0.444744557142258,0.681665241718292,0.460626095533371,0.411832928657532,0.786267817020416,0.645422160625458,0.344025880098343,0.681964993476868,0.553564071655273,0.276019543409348,0.785735189914703,0.607167780399323,0.317308634519577,0.728465855121613,0.401104062795639,0.263095736503601,0.877437174320221,0.553564071655273,0.276019543409348,0.785735189914703,0.460626095533371,0.411832928657532,0.786267817020416,0.637349903583527,0.0518895089626312,-0.768825352191925,0.520925581455231,0.0909301340579987,-0.848744988441467,0.511120140552521,0.119057431817055,-0.851223468780518,0.426807701587677,-0.678182721138,-0.598250150680542,0.631033062934875,-0.357822239398956,-0.688302516937256,0.355733543634415,-0.596070826053619,-0.719828486442566,0.494931280612946,-0.767264723777771,-0.407857537269592,0.719509780406952,-0.460230112075806,-0.520090281963348,0.426807701587677,-0.678182721138,-0.598250150680542,0.380969882011414,-0.443092674016953,-0.811499059200287,0.355733543634415,-0.596070826053619,-0.719828486442566,0.631033062934875,-0.357822239398956,-0.688302516937256,0.494931280612946,-0.767264723777771,-0.407857537269592,0.487301677465439,-0.848087251186371,-0.20805037021637,0.760031938552856,-0.568767488002777,-0.314411848783493,0.487301677465439,-0.848087251186371,-0.20805037021637,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.760031938552856,-0.568767488002777,-0.314411848783493,0.666962385177612,-0.71293306350708,0.216535434126854,0.822205483913422,-0.562321960926056,-0.0881588831543922,0.601786494255066,-0.79809558391571,-0.0299383606761694,\r\n0.784700036048889,-0.538433492183685,0.307140082120895,0.872993230819702,-0.479885309934616,0.0871371030807495,0.731749832630157,-0.632035911083221,0.255093365907669,0.666962385177612,-0.71293306350708,0.216535434126854,0.731749832630157,-0.632035911083221,0.255093365907669,0.872993230819702,-0.479885309934616,0.0871371030807495,0.664736211299896,0.239340931177139,-0.707701563835144,0.712400257587433,0.108250357210636,-0.693374037742615,0.617282211780548,0.173633053898811,-0.767342209815979,0.380969882011414,-0.443092674016953,-0.811499059200287,0.322742700576782,-0.258557975292206,-0.910486042499542,0.0301485899835825,-0.493368983268738,-0.869297385215759,0.313872367143631,-0.0928884670138359,-0.94491046667099,0.0897961109876633,-0.146291196346283,-0.985157549381256,0.0821164399385452,-0.31206414103508,-0.946505546569824,0.0897961109876633,-0.146291196346283,-0.985157549381256,0.254812151193619,0.00465114647522569,-0.966979324817657,0.100269921123981,-0.0844811499118805,-0.991367161273956,0.254812151193619,0.00465114647522569,-0.966979324817657,0.380696386098862,0.200524151325226,-0.902696073055267,0.262878566980362,0.120890721678734,-0.957225263118744,0.322742700576782,-0.258557975292206,-0.910486042499542,0.0821164399385452,-0.31206414103508,-0.946505546569824,0.0301485899835825,-0.493368983268738,-0.869297385215759,0.532496273517609,0.302751809358597,-0.790435910224915,0.664736211299896,0.239340931177139,-0.707701563835144,0.505793154239655,0.384800732135773,-0.772076189517975,0.340776652097702,0.30246701836586,-0.890160024166107,0.380696386098862,0.200524151325226,-0.902696073055267,0.532496273517609,0.302751809358597,-0.790435910224915,0.617282211780548,0.173633053898811,-0.767342209815979,0.712400257587433,0.108250357210636,-0.693374037742615,0.637349903583527,0.0518895089626312,-0.768825352191925,-0.0280172266066074,0.0954695120453835,-0.995037972927094,-0.107182562351227,0.1931242197752,-0.975302398204803,-0.0406639948487282,0.0752765312790871,-0.996333062648773,0.241087585687637,0.11788521707058,-0.963317036628723,\r\n0.160503014922142,0.0656745731830597,-0.984847962856293,0.139265075325966,0.123749129474163,-0.982492387294769,0.160503014922142,0.0656745731830597,-0.984847962856293,0.178856953978539,0.0866935253143311,-0.98004812002182,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0013789051445201,0.031025568023324,-0.999517619609833,-0.0280172266066074,0.0954695120453835,-0.995037972927094,-0.0406639948487282,0.0752765312790871,-0.996333062648773,0.0013789051445201,0.031025568023324,-0.999517619609833,0.044995691627264,-0.0241701323539019,-0.998694658279419,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.0156728252768517,0.000189313519513235,-0.999877095222473,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.160386800765991,0.119376562535763,-0.979808747768402,0.250851452350616,0.157929465174675,-0.955055832862854,0.241087585687637,0.11788521707058,-0.963317036628723,0.250851452350616,0.157929465174675,-0.955055832862854,0.160386800765991,0.119376562535763,-0.979808747768402,0.255897760391235,0.112360894680023,-0.960151672363281,0.358216822147369,0.124542906880379,-0.925294399261475,0.365358293056488,0.141255423426628,-0.920086979866028,0.255897760391235,0.112360894680023,-0.960151672363281,0.358216822147369,0.124542906880379,-0.925294399261475,0.511120140552521,0.119057431817055,-0.851223468780518,0.520925581455231,0.0909301340579987,-0.848744988441467,0.883780181407928,0.361842602491379,0.296652019023895,0.916411459445953,0.341288596391678,0.209074392914772,0.886449873447418,0.340615719556808,0.313348740339279,0.916411459445953,0.341288596391678,0.209074392914772,0.924970865249634,0.348221927881241,0.1522176861763,0.935367703437805,0.312001526355743,0.166559800505638,0.850906789302826,0.298642873764038,0.432168900966644,0.834315717220306,0.304841190576553,0.459335386753082,0.806485414505005,0.321909755468369,0.495938867330551,0.859822869300842,0.345338374376297,0.376092940568924,0.873084664344788,0.304998338222504,0.380393296480179,0.850906789302826,0.298642873764038,0.432168900966644,\r\n0.859822869300842,0.345338374376297,0.376092940568924,0.883780181407928,0.361842602491379,0.296652019023895,0.886449873447418,0.340615719556808,0.313348740339279,0.785985589027405,0.334565937519073,0.519896149635315,0.751416623592377,0.351517915725708,0.558397710323334,0.749587714672089,0.367915332317352,0.550233006477356,0.785985589027405,0.334565937519073,0.519896149635315,0.806485414505005,0.321909755468369,0.495938867330551,0.834315717220306,0.304841190576553,0.459335386753082,0.749587714672089,0.367915332317352,0.550233006477356,0.704528570175171,0.403411656618118,0.583864986896515,0.703035593032837,0.393059313297272,0.592659294605255,0.607167780399323,0.317308634519577,0.728465855121613,0.641480684280396,0.401402533054352,0.653741776943207,0.680136501789093,0.373225420713425,0.630965054035187,0.641480684280396,0.401402533054352,0.653741776943207,0.703035593032837,0.393059313297272,0.592659294605255,0.704528570175171,0.403411656618118,0.583864986896515,0.136296480894089,0.463934689760208,-0.875321507453918,0.289193123579025,0.612536251544952,-0.735640287399292,0.296081811189651,0.474136829376221,-0.829174101352692,0.296081811189651,0.474136829376221,-0.829174101352692,0.404865711927414,0.429512172937393,-0.807219266891479,0.327561497688293,0.320663243532181,-0.888751029968262,0.413673579692841,0.236906662583351,-0.879061579704285,0.369782328605652,0.206738889217377,-0.905825555324554,0.419609278440475,0.30901250243187,-0.85348653793335,0.327561497688293,0.320663243532181,-0.888751029968262,0.419609278440475,0.30901250243187,-0.85348653793335,0.369782328605652,0.206738889217377,-0.905825555324554,0.63821816444397,0.203965753316879,-0.742344439029694,0.633481800556183,0.436277270317078,-0.63903272151947,0.63053560256958,0.367073595523834,-0.683872520923615,0.58404266834259,0.456133633852005,-0.671443283557892,0.587847232818604,0.368692338466644,-0.720070421695709,0.63053560256958,0.367073595523834,-0.683872520923615,0.596925020217896,0.366829812526703,-0.713523805141449,0.587847232818604,0.368692338466644,-0.720070421695709,\r\n0.590401470661163,0.36643573641777,-0.719132006168365,0.446434706449509,0.313547611236572,-0.838083386421204,0.542816519737244,0.382619827985764,-0.747631013393402,0.53249055147171,0.306555867195129,-0.788972198963165,0.590401470661163,0.36643573641777,-0.719132006168365,0.53249055147171,0.306555867195129,-0.788972198963165,0.542816519737244,0.382619827985764,-0.747631013393402,0.389946669340134,0.279132127761841,-0.87751168012619,0.446434706449509,0.313547611236572,-0.838083386421204,0.436026513576508,0.302754998207092,-0.847478687763214,0.389946669340134,0.279132127761841,-0.87751168012619,0.358864098787308,0.253308922052383,-0.898360192775726,0.413673579692841,0.236906662583351,-0.879061579704285,0.762891829013824,0.280586719512939,-0.58246636390686,0.799212872982025,0.140004858374596,-0.584514558315277,0.833141267299652,0.201725602149963,-0.514958500862122,0.837985455989838,0.289520442485809,-0.462556123733521,0.762891829013824,0.280586719512939,-0.58246636390686,0.833141267299652,0.201725602149963,-0.514958500862122,0.739273846149445,0.215692207217216,-0.637926936149597,0.753763437271118,0.103302471339703,-0.648975431919098,0.799212872982025,0.140004858374596,-0.584514558315277,0.837985455989838,0.289520442485809,-0.462556123733521,0.877360463142395,0.271573692560196,-0.39558333158493,0.909673810005188,0.228168189525604,-0.347034156322479,0.917923450469971,0.267448574304581,-0.293066024780273,0.909673810005188,0.228168189525604,-0.347034156322479,0.908293604850769,0.285897254943848,-0.305393993854523,0.739273846149445,0.215692207217216,-0.637926936149597,0.708160758018494,0.15965561568737,-0.687763214111328,0.753763437271118,0.103302471339703,-0.648975431919098,0.693685173988342,0.101882793009281,-0.713036179542542,0.708160758018494,0.15965561568737,-0.687763214111328,0.667080223560333,0.222292840480804,-0.711048305034637,0.667080223560333,0.222292840480804,-0.711048305034637,0.633481800556183,0.436277270317078,-0.63903272151947,0.63821816444397,0.203965753316879,-0.742344439029694,0.917923450469971,0.267448574304581,-0.293066024780273,\r\n0.908293604850769,0.285897254943848,-0.305393993854523,0.936560332775116,0.273577868938446,-0.219111517071724,0.936277270317078,0.275207757949829,-0.218278303742409,0.936560332775116,0.273577868938446,-0.219111517071724,0.929305493831635,0.317792654037476,-0.188146248459816,0.928223192691803,0.333352506160736,-0.165159448981285,0.936277270317078,0.275207757949829,-0.218278303742409,0.929305493831635,0.317792654037476,-0.188146248459816,0.912087261676788,0.380207121372223,0.153424337506294,0.924970865249634,0.348221927881241,0.1522176861763,0.916411459445953,0.341288596391678,0.209074392914772,0.948429107666016,0.3167984187603,-0.0109937144443393,0.929526209831238,0.366573989391327,0.0400553308427334,0.947661101818085,0.315704673528671,0.0476325340569019,0.950139701366425,0.286648601293564,0.122747629880905,0.935384094715118,0.338894844055176,0.101029090583324,0.912087261676788,0.380207121372223,0.153424337506294,0.958120167255402,0.275686025619507,0.0774766206741333,0.947661101818085,0.315704673528671,0.0476325340569019,0.935384094715118,0.338894844055176,0.101029090583324,0.938495218753815,0.336714953184128,-0.0764834135770798,0.948429107666016,0.3167984187603,-0.0109937144443393,0.955602049827576,0.273886829614639,-0.108675494790077,0.938495218753815,0.336714953184128,-0.0764834135770798,0.955602049827576,0.273886829614639,-0.108675494790077,0.928223192691803,0.333352506160736,-0.165159448981285,0.04253239184618,0.202057793736458,-0.978449583053589,-0.0136015322059393,0.188918441534042,-0.981898546218872,0.0848776325583458,0.17894259095192,-0.98019140958786,0.0291239731013775,0.319867789745331,-0.947014391422272,0.0649104043841362,0.229387789964676,-0.971168279647827,0.0848776325583458,0.17894259095192,-0.98019140958786,-0.0495673604309559,0.272293299436569,-0.960936665534973,-0.0136015322059393,0.188918441534042,-0.981898546218872,0.04253239184618,0.202057793736458,-0.978449583053589,-0.0741782113909721,0.397321134805679,-0.914676666259766,-0.0495673604309559,0.272293299436569,-0.960936665534973,0.0778785347938538,0.588299930095673,-0.80488383769989,\r\n0.0649104043841362,0.229387789964676,-0.971168279647827,0.136296480894089,0.463934689760208,-0.875321507453918,0.143575578927994,0.289589941501617,-0.946321070194244,0.136618047952652,0.774695038795471,-0.617400228977203,-0.0417569801211357,0.546735405921936,-0.836263477802277,0.0826859623193741,0.662885308265686,-0.744141101837158,0.136618047952652,0.774695038795471,-0.617400228977203,0.162770837545395,0.821651101112366,-0.54625540971756,0.0578846596181393,0.668856620788574,-0.741134285926819,-0.0741782113909721,0.397321134805679,-0.914676666259766,0.0778785347938538,0.588299930095673,-0.80488383769989,0.0826859623193741,0.662885308265686,-0.744141101837158,0.16944046318531,0.719626069068909,-0.673370718955994,0.164135918021202,0.863458931446075,-0.476967543363571,0.18874517083168,0.856211006641388,-0.480913549661636,0.162770837545395,0.821651101112366,-0.54625540971756,0.164135918021202,0.863458931446075,-0.476967543363571,0.16944046318531,0.719626069068909,-0.673370718955994,0.542654573917389,0.272398322820663,0.794559717178345,0.607167780399323,0.317308634519577,0.728465855121613,0.553564071655273,0.276019543409348,0.785735189914703,0.493134558200836,0.24052806198597,0.836040914058685,0.553564071655273,0.276019543409348,0.785735189914703,0.401104062795639,0.263095736503601,0.877437174320221,0.637349903583527,0.0518895089626312,-0.768825352191925,0.511120140552521,0.119057431817055,-0.851223468780518,0.617282211780548,0.173633053898811,-0.767342209815979,0.149515479803085,-0.740156173706055,-0.655601859092712,0.426807701587677,-0.678182721138,-0.598250150680542,0.355733543634415,-0.596070826053619,-0.719828486442566,0.494931280612946,-0.767264723777771,-0.407857537269592,0.426807701587677,-0.678182721138,-0.598250150680542,0.244423002004623,-0.841068923473358,-0.482556045055389,0.380969882011414,-0.443092674016953,-0.811499059200287,0.164650022983551,-0.634159922599792,-0.755467653274536,0.355733543634415,-0.596070826053619,-0.719828486442566,0.494931280612946,-0.767264723777771,-0.407857537269592,0.337986916303635,-0.882941246032715,-0.325851857662201,\r\n0.487301677465439,-0.848087251186371,-0.20805037021637,0.516699492931366,-0.855448722839355,0.035056184977293,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.487301677465439,-0.848087251186371,-0.20805037021637,0.666962385177612,-0.71293306350708,0.216535434126854,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.530758082866669,-0.818294703960419,0.220656856894493,0.682703614234924,-0.576641798019409,0.448775947093964,0.784700036048889,-0.538433492183685,0.307140082120895,0.731749832630157,-0.632035911083221,0.255093365907669,0.64431756734848,-0.689297795295715,0.331245213747025,0.731749832630157,-0.632035911083221,0.255093365907669,0.666962385177612,-0.71293306350708,0.216535434126854,0.617282211780548,0.173633053898811,-0.767342209815979,0.505793154239655,0.384800732135773,-0.772076189517975,0.664736211299896,0.239340931177139,-0.707701563835144,0.164650022983551,-0.634159922599792,-0.755467653274536,0.380969882011414,-0.443092674016953,-0.811499059200287,0.0301485899835825,-0.493368983268738,-0.869297385215759,0.0821164399385452,-0.31206414103508,-0.946505546569824,0.0897961109876633,-0.146291196346283,-0.985157549381256,-0.0628684610128403,-0.272429794073105,-0.960119545459747,0.172302812337875,-0.043754730373621,-0.984071612358093,0.100269921123981,-0.0844811499118805,-0.991367161273956,0.254812151193619,0.00465114647522569,-0.966979324817657,0.0897961109876633,-0.146291196346283,-0.985157549381256,0.100269921123981,-0.0844811499118805,-0.991367161273956,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.340776652097702,0.30246701836586,-0.890160024166107,0.262878566980362,0.120890721678734,-0.957225263118744,0.380696386098862,0.200524151325226,-0.902696073055267,0.254812151193619,0.00465114647522569,-0.966979324817657,0.262878566980362,0.120890721678734,-0.957225263118744,0.172302812337875,-0.043754730373621,-0.984071612358093,-0.139718279242516,-0.39313742518425,-0.908802330493927,0.0301485899835825,-0.493368983268738,-0.869297385215759,0.0821164399385452,-0.31206414103508,-0.946505546569824,\r\n0.532496273517609,0.302751809358597,-0.790435910224915,0.505793154239655,0.384800732135773,-0.772076189517975,0.412690252065659,0.472777843475342,-0.778567731380463,0.532496273517609,0.302751809358597,-0.790435910224915,0.412690252065659,0.472777843475342,-0.778567731380463,0.340776652097702,0.30246701836586,-0.890160024166107,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.0406639948487282,0.0752765312790871,-0.996333062648773,-0.107182562351227,0.1931242197752,-0.975302398204803,0.160503014922142,0.0656745731830597,-0.984847962856293,0.0736406296491623,0.08783920109272,-0.993408918380737,0.139265075325966,0.123749129474163,-0.982492387294769,0.160386800765991,0.119376562535763,-0.979808747768402,0.241087585687637,0.11788521707058,-0.963317036628723,0.139265075325966,0.123749129474163,-0.982492387294769,0.160503014922142,0.0656745731830597,-0.984847962856293,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0736406296491623,0.08783920109272,-0.993408918380737,0.0013789051445201,0.031025568023324,-0.999517619609833,-0.0406639948487282,0.0752765312790871,-0.996333062648773,-0.0545725673437119,0.00571138085797429,-0.998493432998657,0.044995691627264,-0.0241701323539019,-0.998694658279419,0.0013789051445201,0.031025568023324,-0.999517619609833,-0.0545725673437119,0.00571138085797429,-0.998493432998657,0.044995691627264,-0.0241701323539019,-0.998694658279419,0.0156728252768517,0.000189313519513235,-0.999877095222473,0.0702731385827065,0.0330674350261688,-0.996979534626007,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0156728252768517,0.000189313519513235,-0.999877095222473,0.0129480706527829,-0.0121295489370823,-0.999842584133148,0.190568685531616,0.0763716027140617,-0.978698551654816,0.255897760391235,0.112360894680023,-0.960151672363281,0.160386800765991,0.119376562535763,-0.979808747768402,0.358216822147369,0.124542906880379,-0.925294399261475,0.255897760391235,0.112360894680023,-0.960151672363281,0.318997502326965,0.107737250626087,-0.941612005233765,0.361366480588913,0.235945641994476,-0.902077496051788,\r\n0.511120140552521,0.119057431817055,-0.851223468780518,0.358216822147369,0.124542906880379,-0.925294399261475,0.883780181407928,0.361842602491379,0.296652019023895,0.922585725784302,0.336864858865738,0.188035979866982,0.916411459445953,0.341288596391678,0.209074392914772,0.850906789302826,0.298642873764038,0.432168900966644,0.806485414505005,0.321909755468369,0.495938867330551,0.843336403369904,0.252286821603775,0.474483907222748,0.870512008666992,0.299750715494156,0.390330940485001,0.859822869300842,0.345338374376297,0.376092940568924,0.850906789302826,0.298642873764038,0.432168900966644,0.883780181407928,0.361842602491379,0.296652019023895,0.859822869300842,0.345338374376297,0.376092940568924,0.870512008666992,0.299750715494156,0.390330940485001,0.763501346111298,0.329893290996552,0.555190026760101,0.785985589027405,0.334565937519073,0.519896149635315,0.749587714672089,0.367915332317352,0.550233006477356,0.763501346111298,0.329893290996552,0.555190026760101,0.806485414505005,0.321909755468369,0.495938867330551,0.785985589027405,0.334565937519073,0.519896149635315,0.749587714672089,0.367915332317352,0.550233006477356,0.703035593032837,0.393059313297272,0.592659294605255,0.761577963829041,0.34649270772934,0.547669291496277,0.607167780399323,0.317308634519577,0.728465855121613,0.559991896152496,0.36646431684494,0.743043005466461,0.641480684280396,0.401402533054352,0.653741776943207,0.703035593032837,0.393059313297272,0.592659294605255,0.641480684280396,0.401402533054352,0.653741776943207,0.708569884300232,0.368432134389877,0.601819276809692,0.136296480894089,0.463934689760208,-0.875321507453918,0.296081811189651,0.474136829376221,-0.829174101352692,0.143575578927994,0.289589941501617,-0.946321070194244,0.327561497688293,0.320663243532181,-0.888751029968262,0.143575578927994,0.289589941501617,-0.946321070194244,0.296081811189651,0.474136829376221,-0.829174101352692,0.33671846985817,0.171145498752594,-0.925921082496643,0.369782328605652,0.206738889217377,-0.905825555324554,0.413673579692841,0.236906662583351,-0.879061579704285,\r\n0.327561497688293,0.320663243532181,-0.888751029968262,0.369782328605652,0.206738889217377,-0.905825555324554,0.22489957511425,0.187983348965645,-0.956076502799988,0.633481800556183,0.436277270317078,-0.63903272151947,0.58404266834259,0.456133633852005,-0.671443283557892,0.63053560256958,0.367073595523834,-0.683872520923615,0.587847232818604,0.368692338466644,-0.720070421695709,0.58404266834259,0.456133633852005,-0.671443283557892,0.523703455924988,0.342241853475571,-0.7801313996315,0.590401470661163,0.36643573641777,-0.719132006168365,0.587847232818604,0.368692338466644,-0.720070421695709,0.53249055147171,0.306555867195129,-0.788972198963165,0.446434706449509,0.313547611236572,-0.838083386421204,0.53249055147171,0.306555867195129,-0.788972198963165,0.436026513576508,0.302754998207092,-0.847478687763214,0.389946669340134,0.279132127761841,-0.87751168012619,0.436026513576508,0.302754998207092,-0.847478687763214,0.347736716270447,0.335616379976273,-0.875465989112854,0.389946669340134,0.279132127761841,-0.87751168012619,0.347736716270447,0.335616379976273,-0.875465989112854,0.358864098787308,0.253308922052383,-0.898360192775726,0.33671846985817,0.171145498752594,-0.925921082496643,0.413673579692841,0.236906662583351,-0.879061579704285,0.358864098787308,0.253308922052383,-0.898360192775726,0.739273846149445,0.215692207217216,-0.637926936149597,0.799212872982025,0.140004858374596,-0.584514558315277,0.762891829013824,0.280586719512939,-0.58246636390686,0.837985455989838,0.289520442485809,-0.462556123733521,0.710333645343781,0.420643866062164,-0.564344465732574,0.762891829013824,0.280586719512939,-0.58246636390686,0.837985455989838,0.289520442485809,-0.462556123733521,0.909673810005188,0.228168189525604,-0.347034156322479,0.894734799861908,0.262004435062408,-0.361667335033417,0.891657114028931,0.268598169088364,-0.364420682191849,0.909673810005188,0.228168189525604,-0.347034156322479,0.917923450469971,0.267448574304581,-0.293066024780273,0.739273846149445,0.215692207217216,-0.637926936149597,0.685882747173309,0.332406520843506,-0.647356629371643,\r\n0.708160758018494,0.15965561568737,-0.687763214111328,0.685882747173309,0.332406520843506,-0.647356629371643,0.667080223560333,0.222292840480804,-0.711048305034637,0.708160758018494,0.15965561568737,-0.687763214111328,0.685882747173309,0.332406520843506,-0.647356629371643,0.633481800556183,0.436277270317078,-0.63903272151947,0.667080223560333,0.222292840480804,-0.711048305034637,0.917923450469971,0.267448574304581,-0.293066024780273,0.936560332775116,0.273577868938446,-0.219111517071724,0.936277270317078,0.275207757949829,-0.218278303742409,0.928223192691803,0.333352506160736,-0.165159448981285,0.955602049827576,0.273886829614639,-0.108675494790077,0.936277270317078,0.275207757949829,-0.218278303742409,0.922585725784302,0.336864858865738,0.188035979866982,0.912087261676788,0.380207121372223,0.153424337506294,0.916411459445953,0.341288596391678,0.209074392914772,0.965351939201355,0.257244408130646,0.0438268966972828,0.948429107666016,0.3167984187603,-0.0109937144443393,0.947661101818085,0.315704673528671,0.0476325340569019,0.950139701366425,0.286648601293564,0.122747629880905,0.958120167255402,0.275686025619507,0.0774766206741333,0.935384094715118,0.338894844055176,0.101029090583324,0.922585725784302,0.336864858865738,0.188035979866982,0.950139701366425,0.286648601293564,0.122747629880905,0.912087261676788,0.380207121372223,0.153424337506294,0.958120167255402,0.275686025619507,0.0774766206741333,0.965351939201355,0.257244408130646,0.0438268966972828,0.947661101818085,0.315704673528671,0.0476325340569019,0.955602049827576,0.273886829614639,-0.108675494790077,0.948429107666016,0.3167984187603,-0.0109937144443393,0.964375019073486,0.264381885528564,-0.00910388771444559,0.121761463582516,0.331944763660431,-0.935407280921936,0.04253239184618,0.202057793736458,-0.978449583053589,0.0848776325583458,0.17894259095192,-0.98019140958786,0.0649104043841362,0.229387789964676,-0.971168279647827,0.0838188976049423,0.257847100496292,-0.962543070316315,0.0848776325583458,0.17894259095192,-0.98019140958786,-0.0495673604309559,0.272293299436569,-0.960936665534973,\r\n0.04253239184618,0.202057793736458,-0.978449583053589,0.152145087718964,0.474608540534973,-0.866947770118713,0.152145087718964,0.474608540534973,-0.866947770118713,0.0778785347938538,0.588299930095673,-0.80488383769989,-0.0495673604309559,0.272293299436569,-0.960936665534973,0.143575578927994,0.289589941501617,-0.946321070194244,0.106907777488232,0.216274216771126,-0.970461785793304,0.0649104043841362,0.229387789964676,-0.971168279647827,0.136618047952652,0.774695038795471,-0.617400228977203,0.0826859623193741,0.662885308265686,-0.744141101837158,0.181748658418655,0.79487407207489,-0.578914880752563,0.136618047952652,0.774695038795471,-0.617400228977203,0.203570827841759,0.861729145050049,-0.46473827958107,0.162770837545395,0.821651101112366,-0.54625540971756,0.181748658418655,0.79487407207489,-0.578914880752563,0.0826859623193741,0.662885308265686,-0.744141101837158,0.0778785347938538,0.588299930095673,-0.80488383769989,0.164135918021202,0.863458931446075,-0.476967543363571,0.177875220775604,0.89197963476181,-0.415611118078232,0.18874517083168,0.856211006641388,-0.480913549661636,0.162770837545395,0.821651101112366,-0.54625540971756,0.203570827841759,0.861729145050049,-0.46473827958107,0.164135918021202,0.863458931446075,-0.476967543363571,0.542654573917389,0.272398322820663,0.794559717178345,0.559991896152496,0.36646431684494,0.743043005466461,0.607167780399323,0.317308634519577,0.728465855121613,0.542654573917389,0.272398322820663,0.794559717178345,0.553564071655273,0.276019543409348,0.785735189914703,0.493134558200836,0.24052806198597,0.836040914058685,0.617282211780548,0.173633053898811,-0.767342209815979,0.511120140552521,0.119057431817055,-0.851223468780518,0.40890896320343,0.342148125171661,-0.84600704908371,0.149515479803085,-0.740156173706055,-0.655601859092712,0.244423002004623,-0.841068923473358,-0.482556045055389,0.426807701587677,-0.678182721138,-0.598250150680542,0.149515479803085,-0.740156173706055,-0.655601859092712,0.355733543634415,-0.596070826053619,-0.719828486442566,0.164650022983551,-0.634159922599792,-0.755467653274536,\r\n0.494931280612946,-0.767264723777771,-0.407857537269592,0.244423002004623,-0.841068923473358,-0.482556045055389,0.337986916303635,-0.882941246032715,-0.325851857662201,0.36668136715889,-0.892468750476837,-0.262762635946274,0.487301677465439,-0.848087251186371,-0.20805037021637,0.337986916303635,-0.882941246032715,-0.325851857662201,0.516699492931366,-0.855448722839355,0.035056184977293,0.530758082866669,-0.818294703960419,0.220656856894493,0.601786494255066,-0.79809558391571,-0.0299383606761694,0.516699492931366,-0.855448722839355,0.035056184977293,0.487301677465439,-0.848087251186371,-0.20805037021637,0.522289872169495,-0.85145366191864,0.0473265424370766,0.556175708770752,-0.70457398891449,0.440731257200241,0.666962385177612,-0.71293306350708,0.216535434126854,0.530758082866669,-0.818294703960419,0.220656856894493,0.784700036048889,-0.538433492183685,0.307140082120895,0.682703614234924,-0.576641798019409,0.448775947093964,0.708737969398499,-0.482795566320419,0.514391601085663,0.731749832630157,-0.632035911083221,0.255093365907669,0.687695980072021,-0.656984508037567,0.308942437171936,0.682703614234924,-0.576641798019409,0.448775947093964,0.687695980072021,-0.656984508037567,0.308942437171936,0.731749832630157,-0.632035911083221,0.255093365907669,0.64431756734848,-0.689297795295715,0.331245213747025,0.64431756734848,-0.689297795295715,0.331245213747025,0.666962385177612,-0.71293306350708,0.216535434126854,0.556175708770752,-0.70457398891449,0.440731257200241,0.617282211780548,0.173633053898811,-0.767342209815979,0.40890896320343,0.342148125171661,-0.84600704908371,0.505793154239655,0.384800732135773,-0.772076189517975,0.0301485899835825,-0.493368983268738,-0.869297385215759,-0.0248777829110622,-0.621613740921021,-0.782928705215454,0.164650022983551,-0.634159922599792,-0.755467653274536,0.0897961109876633,-0.146291196346283,-0.985157549381256,-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.0628684610128403,-0.272429794073105,-0.960119545459747,-0.0628684610128403,-0.272429794073105,-0.960119545459747,-0.139718279242516,-0.39313742518425,-0.908802330493927,\r\n0.0821164399385452,-0.31206414103508,-0.946505546569824,0.100269921123981,-0.0844811499118805,-0.991367161273956,0.172302812337875,-0.043754730373621,-0.984071612358093,0.0971559286117554,-0.0780447944998741,-0.992204427719116,0.100269921123981,-0.0844811499118805,-0.991367161273956,0.0971559286117554,-0.0780447944998741,-0.992204427719116,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,-0.162020012736321,-0.159517049789429,-0.973808765411377,0.0897961109876633,-0.146291196346283,-0.985157549381256,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.340776652097702,0.30246701836586,-0.890160024166107,0.261965990066528,0.152279168367386,-0.952987313270569,0.262878566980362,0.120890721678734,-0.957225263118744,0.147569701075554,-0.000976193405222148,-0.989051163196564,0.172302812337875,-0.043754730373621,-0.984071612358093,0.262878566980362,0.120890721678734,-0.957225263118744,-0.169506415724754,-0.429722487926483,-0.886908113956451,0.0301485899835825,-0.493368983268738,-0.869297385215759,-0.139718279242516,-0.39313742518425,-0.908802330493927,0.505793154239655,0.384800732135773,-0.772076189517975,0.345514863729477,0.525563299655914,-0.777433395385742,0.412690252065659,0.472777843475342,-0.778567731380463,0.340776652097702,0.30246701836586,-0.890160024166107,0.412690252065659,0.472777843475342,-0.778567731380463,0.353032261133194,0.342647433280945,-0.8706094622612,-0.0406639948487282,0.0752765312790871,-0.996333062648773,-0.065084807574749,0.13703216612339,-0.988426089286804,-0.0545725673437119,0.00571138085797429,-0.998493432998657,0.0731660723686218,0.118299081921577,-0.990278720855713,0.139265075325966,0.123749129474163,-0.982492387294769,0.0736406296491623,0.08783920109272,-0.993408918380737,0.160386800765991,0.119376562535763,-0.979808747768402,0.139265075325966,0.123749129474163,-0.982492387294769,0.0731660723686218,0.118299081921577,-0.990278720855713,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0474197342991829,-0.0293086655437946,-0.99844491481781,0.0736406296491623,0.08783920109272,-0.993408918380737,\r\n0.0156728252768517,0.000189313519513235,-0.999877095222473,0.044995691627264,-0.0241701323539019,-0.998694658279419,-0.0545725673437119,0.00571138085797429,-0.998493432998657,0.0838117673993111,0.0208169054239988,-0.996264100074768,0.0129480706527829,-0.0121295489370823,-0.999842584133148,0.0474197342991829,-0.0293086655437946,-0.99844491481781,0.297147065401077,0.015678521245718,-0.954702913761139,0.255897760391235,0.112360894680023,-0.960151672363281,0.190568685531616,0.0763716027140617,-0.978698551654816,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.190568685531616,0.0763716027140617,-0.978698551654816,0.160386800765991,0.119376562535763,-0.979808747768402,0.297147065401077,0.015678521245718,-0.954702913761139,0.318997502326965,0.107737250626087,-0.941612005233765,0.255897760391235,0.112360894680023,-0.960151672363281,0.33561897277832,0.224414631724358,-0.914875864982605,0.358216822147369,0.124542906880379,-0.925294399261475,0.318997502326965,0.107737250626087,-0.941612005233765,0.40890896320343,0.342148125171661,-0.84600704908371,0.511120140552521,0.119057431817055,-0.851223468780518,0.361366480588913,0.235945641994476,-0.902077496051788,0.361366480588913,0.235945641994476,-0.902077496051788,0.358216822147369,0.124542906880379,-0.925294399261475,0.33561897277832,0.224414631724358,-0.914875864982605,0.883780181407928,0.361842602491379,0.296652019023895,0.910597443580627,0.292797386646271,0.291687518358231,0.922585725784302,0.336864858865738,0.188035979866982,0.843336403369904,0.252286821603775,0.474483907222748,0.806485414505005,0.321909755468369,0.495938867330551,0.784720003604889,0.301513493061066,0.54157543182373,0.843336403369904,0.252286821603775,0.474483907222748,0.870677351951599,0.217383936047554,0.44120866060257,0.850906789302826,0.298642873764038,0.432168900966644,0.870512008666992,0.299750715494156,0.390330940485001,0.850906789302826,0.298642873764038,0.432168900966644,0.870677351951599,0.217383936047554,0.44120866060257,0.883780181407928,0.361842602491379,0.296652019023895,0.870512008666992,0.299750715494156,0.390330940485001,\r\n0.910597443580627,0.292797386646271,0.291687518358231,0.763501346111298,0.329893290996552,0.555190026760101,0.749587714672089,0.367915332317352,0.550233006477356,0.761577963829041,0.34649270772934,0.547669291496277,0.784720003604889,0.301513493061066,0.54157543182373,0.806485414505005,0.321909755468369,0.495938867330551,0.763501346111298,0.329893290996552,0.555190026760101,0.703035593032837,0.393059313297272,0.592659294605255,0.708569884300232,0.368432134389877,0.601819276809692,0.761577963829041,0.34649270772934,0.547669291496277,0.559991896152496,0.36646431684494,0.743043005466461,0.571103870868683,0.416428744792938,0.707408845424652,0.641480684280396,0.401402533054352,0.653741776943207,0.63392037153244,0.414525747299194,0.652926623821259,0.708569884300232,0.368432134389877,0.601819276809692,0.641480684280396,0.401402533054352,0.653741776943207,0.327561497688293,0.320663243532181,-0.888751029968262,0.22489957511425,0.187983348965645,-0.956076502799988,0.143575578927994,0.289589941501617,-0.946321070194244,0.22489957511425,0.187983348965645,-0.956076502799988,0.369782328605652,0.206738889217377,-0.905825555324554,0.33671846985817,0.171145498752594,-0.925921082496643,0.607593297958374,0.47446271777153,-0.636957883834839,0.58404266834259,0.456133633852005,-0.671443283557892,0.633481800556183,0.436277270317078,-0.63903272151947,0.523703455924988,0.342241853475571,-0.7801313996315,0.58404266834259,0.456133633852005,-0.671443283557892,0.555873215198517,0.368926882743835,-0.744914591312408,0.523703455924988,0.342241853475571,-0.7801313996315,0.497952431440353,0.315715730190277,-0.807692289352417,0.587847232818604,0.368692338466644,-0.720070421695709,0.497952431440353,0.315715730190277,-0.807692289352417,0.53249055147171,0.306555867195129,-0.788972198963165,0.587847232818604,0.368692338466644,-0.720070421695709,0.436026513576508,0.302754998207092,-0.847478687763214,0.53249055147171,0.306555867195129,-0.788972198963165,0.497952431440353,0.315715730190277,-0.807692289352417,0.347736716270447,0.335616379976273,-0.875465989112854,\r\n0.436026513576508,0.302754998207092,-0.847478687763214,0.388575345277786,0.333850532770157,-0.858808994293213,0.358864098787308,0.253308922052383,-0.898360192775726,0.347736716270447,0.335616379976273,-0.875465989112854,0.366000831127167,0.344901502132416,-0.864341497421265,0.33659291267395,0.281719535589218,-0.898520529270172,0.33671846985817,0.171145498752594,-0.925921082496643,0.358864098787308,0.253308922052383,-0.898360192775726,0.762891829013824,0.280586719512939,-0.58246636390686,0.699920833110809,0.380121678113937,-0.604663789272308,0.739273846149445,0.215692207217216,-0.637926936149597,0.710333645343781,0.420643866062164,-0.564344465732574,0.837985455989838,0.289520442485809,-0.462556123733521,0.771402835845947,0.410352289676666,-0.486362516880035,0.762891829013824,0.280586719512939,-0.58246636390686,0.710333645343781,0.420643866062164,-0.564344465732574,0.699920833110809,0.380121678113937,-0.604663789272308,0.891657114028931,0.268598169088364,-0.364420682191849,0.894734799861908,0.262004435062408,-0.361667335033417,0.909673810005188,0.228168189525604,-0.347034156322479,0.837985455989838,0.289520442485809,-0.462556123733521,0.894734799861908,0.262004435062408,-0.361667335033417,0.86800092458725,0.325423747301102,-0.375064879655838,0.887998282909393,0.287774592638016,-0.358670860528946,0.891657114028931,0.268598169088364,-0.364420682191849,0.917923450469971,0.267448574304581,-0.293066024780273,0.685882747173309,0.332406520843506,-0.647356629371643,0.739273846149445,0.215692207217216,-0.637926936149597,0.699920833110809,0.380121678113937,-0.604663789272308,0.685882747173309,0.332406520843506,-0.647356629371643,0.671866059303284,0.464301317930222,-0.577078938484192,0.633481800556183,0.436277270317078,-0.63903272151947,0.931140184402466,0.245408087968826,-0.26972708106041,0.917923450469971,0.267448574304581,-0.293066024780273,0.936277270317078,0.275207757949829,-0.218278303742409,0.936277270317078,0.275207757949829,-0.218278303742409,0.955602049827576,0.273886829614639,-0.108675494790077,0.970907866954803,0.193164378404617,-0.14151106774807,\r\n0.965351939201355,0.257244408130646,0.0438268966972828,0.964375019073486,0.264381885528564,-0.00910388771444559,0.948429107666016,0.3167984187603,-0.0109937144443393,0.969276309013367,0.228459730744362,0.0911562889814377,0.958120167255402,0.275686025619507,0.0774766206741333,0.950139701366425,0.286648601293564,0.122747629880905,0.922585725784302,0.336864858865738,0.188035979866982,0.948426246643066,0.221471413969994,0.22679939866066,0.950139701366425,0.286648601293564,0.122747629880905,0.97255802154541,0.224527284502983,0.0609781667590141,0.965351939201355,0.257244408130646,0.0438268966972828,0.958120167255402,0.275686025619507,0.0774766206741333,0.955602049827576,0.273886829614639,-0.108675494790077,0.964375019073486,0.264381885528564,-0.00910388771444559,0.976376712322235,0.215474814176559,-0.0160874053835869,0.152145087718964,0.474608540534973,-0.866947770118713,0.04253239184618,0.202057793736458,-0.978449583053589,0.121761463582516,0.331944763660431,-0.935407280921936,0.0838188976049423,0.257847100496292,-0.962543070316315,0.121761463582516,0.331944763660431,-0.935407280921936,0.0848776325583458,0.17894259095192,-0.98019140958786,0.0649104043841362,0.229387789964676,-0.971168279647827,0.106907777488232,0.216274216771126,-0.970461785793304,0.0838188976049423,0.257847100496292,-0.962543070316315,0.152145087718964,0.474608540534973,-0.866947770118713,0.22637777030468,0.735772490501404,-0.638272523880005,0.0778785347938538,0.588299930095673,-0.80488383769989,0.143575578927994,0.289589941501617,-0.946321070194244,0.22489957511425,0.187983348965645,-0.956076502799988,0.106907777488232,0.216274216771126,-0.970461785793304,0.203570827841759,0.861729145050049,-0.46473827958107,0.136618047952652,0.774695038795471,-0.617400228977203,0.181748658418655,0.79487407207489,-0.578914880752563,0.22637777030468,0.735772490501404,-0.638272523880005,0.181748658418655,0.79487407207489,-0.578914880752563,0.0778785347938538,0.588299930095673,-0.80488383769989,0.177875220775604,0.89197963476181,-0.415611118078232,0.164135918021202,0.863458931446075,-0.476967543363571,\r\n0.203570827841759,0.861729145050049,-0.46473827958107,0.542654573917389,0.272398322820663,0.794559717178345,0.555406212806702,0.41238921880722,0.722121119499207,0.559991896152496,0.36646431684494,0.743043005466461,0.149515479803085,-0.740156173706055,-0.655601859092712,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.244423002004623,-0.841068923473358,-0.482556045055389,0.164650022983551,-0.634159922599792,-0.755467653274536,-0.0248777829110622,-0.621613740921021,-0.782928705215454,0.149515479803085,-0.740156173706055,-0.655601859092712,0.240089043974876,-0.863093554973602,-0.444327175617218,0.337986916303635,-0.882941246032715,-0.325851857662201,0.244423002004623,-0.841068923473358,-0.482556045055389,0.36668136715889,-0.892468750476837,-0.262762635946274,0.470776528120041,-0.875699818134308,-0.107327409088612,0.487301677465439,-0.848087251186371,-0.20805037021637,0.240089043974876,-0.863093554973602,-0.444327175617218,0.36668136715889,-0.892468750476837,-0.262762635946274,0.337986916303635,-0.882941246032715,-0.325851857662201,0.530758082866669,-0.818294703960419,0.220656856894493,0.516699492931366,-0.855448722839355,0.035056184977293,0.565938830375671,-0.77903938293457,0.269834518432617,0.470776528120041,-0.875699818134308,-0.107327409088612,0.522289872169495,-0.85145366191864,0.0473265424370766,0.487301677465439,-0.848087251186371,-0.20805037021637,0.516699492931366,-0.855448722839355,0.035056184977293,0.522289872169495,-0.85145366191864,0.0473265424370766,0.565938830375671,-0.77903938293457,0.269834518432617,0.530758082866669,-0.818294703960419,0.220656856894493,0.565938830375671,-0.77903938293457,0.269834518432617,0.556175708770752,-0.70457398891449,0.440731257200241,0.682703614234924,-0.576641798019409,0.448775947093964,0.65393477678299,-0.505401253700256,0.562973082065582,0.708737969398499,-0.482795566320419,0.514391601085663,0.668352842330933,-0.599119424819946,0.440863072872162,0.682703614234924,-0.576641798019409,0.448775947093964,0.687695980072021,-0.656984508037567,0.308942437171936,0.644152045249939,-0.60375052690506,0.46963095664978,\r\n0.687695980072021,-0.656984508037567,0.308942437171936,0.64431756734848,-0.689297795295715,0.331245213747025,0.644152045249939,-0.60375052690506,0.46963095664978,0.64431756734848,-0.689297795295715,0.331245213747025,0.556175708770752,-0.70457398891449,0.440731257200241,0.505793154239655,0.384800732135773,-0.772076189517975,0.40890896320343,0.342148125171661,-0.84600704908371,0.345514863729477,0.525563299655914,-0.777433395385742,0.0301485899835825,-0.493368983268738,-0.869297385215759,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.0248777829110622,-0.621613740921021,-0.782928705215454,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.0628684610128403,-0.272429794073105,-0.960119545459747,-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.0628684610128403,-0.272429794073105,-0.960119545459747,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.139718279242516,-0.39313742518425,-0.908802330493927,0.172302812337875,-0.043754730373621,-0.984071612358093,0.147569701075554,-0.000976193405222148,-0.989051163196564,0.0971559286117554,-0.0780447944998741,-0.992204427719116,0.0971559286117554,-0.0780447944998741,-0.992204427719116,0.147569701075554,-0.000976193405222148,-0.989051163196564,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.340776652097702,0.30246701836586,-0.890160024166107,0.353032261133194,0.342647433280945,-0.8706094622612,0.261965990066528,0.152279168367386,-0.952987313270569,0.262878566980362,0.120890721678734,-0.957225263118744,0.261965990066528,0.152279168367386,-0.952987313270569,0.147569701075554,-0.000976193405222148,-0.989051163196564,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.139718279242516,-0.39313742518425,-0.908802330493927,-0.249498888850212,-0.332389116287231,-0.909542560577393,0.412690252065659,0.472777843475342,-0.778567731380463,0.345514863729477,0.525563299655914,-0.777433395385742,0.440146207809448,0.465788722038269,-0.767666697502136,0.353032261133194,0.342647433280945,-0.8706094622612,0.412690252065659,0.472777843475342,-0.778567731380463,\r\n0.440146207809448,0.465788722038269,-0.767666697502136,-0.0210398137569427,0.121082112193108,-0.992419421672821,0.0731660723686218,0.118299081921577,-0.990278720855713,0.0736406296491623,0.08783920109272,-0.993408918380737,0.0439264737069607,0.112109005451202,-0.992724478244781,0.160386800765991,0.119376562535763,-0.979808747768402,0.0731660723686218,0.118299081921577,-0.990278720855713,0.0736406296491623,0.08783920109272,-0.993408918380737,0.0474197342991829,-0.0293086655437946,-0.99844491481781,-0.0489822737872601,0.090268611907959,-0.994712114334106,0.218245834112167,-0.124917037785053,-0.967865884304047,0.297147065401077,0.015678521245718,-0.954702913761139,0.190568685531616,0.0763716027140617,-0.978698551654816,0.218245834112167,-0.124917037785053,-0.967865884304047,0.190568685531616,0.0763716027140617,-0.978698551654816,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.0439264737069607,0.112109005451202,-0.992724478244781,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.160386800765991,0.119376562535763,-0.979808747768402,0.297147065401077,0.015678521245718,-0.954702913761139,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.318997502326965,0.107737250626087,-0.941612005233765,0.477429211139679,0.204197347164154,-0.854613721370697,0.33561897277832,0.224414631724358,-0.914875864982605,0.318997502326965,0.107737250626087,-0.941612005233765,0.361366480588913,0.235945641994476,-0.902077496051788,0.371345967054367,0.343994438648224,-0.862420916557312,0.40890896320343,0.342148125171661,-0.84600704908371,0.361366480588913,0.235945641994476,-0.902077496051788,0.33561897277832,0.224414631724358,-0.914875864982605,0.371345967054367,0.343994438648224,-0.862420916557312,0.948426246643066,0.221471413969994,0.22679939866066,0.922585725784302,0.336864858865738,0.188035979866982,0.910597443580627,0.292797386646271,0.291687518358231,0.784720003604889,0.301513493061066,0.54157543182373,0.854361593723297,0.204650968313217,0.47768622636795,0.843336403369904,0.252286821603775,0.474483907222748,0.870677351951599,0.217383936047554,0.44120866060257,\r\n0.843336403369904,0.252286821603775,0.474483907222748,0.872225701808929,0.165709510445595,0.460176676511765,0.870677351951599,0.217383936047554,0.44120866060257,0.90795624256134,0.202085420489311,0.367119669914246,0.870512008666992,0.299750715494156,0.390330940485001,0.910597443580627,0.292797386646271,0.291687518358231,0.870512008666992,0.299750715494156,0.390330940485001,0.90795624256134,0.202085420489311,0.367119669914246,0.773546040058136,0.340162873268127,0.534710705280304,0.763501346111298,0.329893290996552,0.555190026760101,0.761577963829041,0.34649270772934,0.547669291496277,0.784720003604889,0.301513493061066,0.54157543182373,0.763501346111298,0.329893290996552,0.555190026760101,0.773546040058136,0.340162873268127,0.534710705280304,0.761577963829041,0.34649270772934,0.547669291496277,0.708569884300232,0.368432134389877,0.601819276809692,0.778798580169678,0.324810206890106,0.536629199981689,0.571103870868683,0.416428744792938,0.707408845424652,0.559991896152496,0.36646431684494,0.743043005466461,0.555406212806702,0.41238921880722,0.722121119499207,0.63392037153244,0.414525747299194,0.652926623821259,0.641480684280396,0.401402533054352,0.653741776943207,0.571103870868683,0.416428744792938,0.707408845424652,0.669234693050385,0.366235554218292,0.646526277065277,0.708569884300232,0.368432134389877,0.601819276809692,0.63392037153244,0.414525747299194,0.652926623821259,0.22489957511425,0.187983348965645,-0.956076502799988,0.33671846985817,0.171145498752594,-0.925921082496643,0.242288306355476,0.223842218518257,-0.944029092788696,0.607593297958374,0.47446271777153,-0.636957883834839,0.555873215198517,0.368926882743835,-0.744914591312408,0.58404266834259,0.456133633852005,-0.671443283557892,0.607593297958374,0.47446271777153,-0.636957883834839,0.633481800556183,0.436277270317078,-0.63903272151947,0.637710392475128,0.50051075220108,-0.585503458976746,0.523703455924988,0.342241853475571,-0.7801313996315,0.555873215198517,0.368926882743835,-0.744914591312408,0.510599792003632,0.27657562494278,-0.81412136554718,0.523703455924988,0.342241853475571,-0.7801313996315,\r\n0.510599792003632,0.27657562494278,-0.81412136554718,0.497952431440353,0.315715730190277,-0.807692289352417,0.497952431440353,0.315715730190277,-0.807692289352417,0.388575345277786,0.333850532770157,-0.858808994293213,0.436026513576508,0.302754998207092,-0.847478687763214,0.347736716270447,0.335616379976273,-0.875465989112854,0.388575345277786,0.333850532770157,-0.858808994293213,0.359573394060135,0.348287522792816,-0.865680456161499,0.347736716270447,0.335616379976273,-0.875465989112854,0.359573394060135,0.348287522792816,-0.865680456161499,0.366000831127167,0.344901502132416,-0.864341497421265,0.33659291267395,0.281719535589218,-0.898520529270172,0.358864098787308,0.253308922052383,-0.898360192775726,0.366000831127167,0.344901502132416,-0.864341497421265,0.242288306355476,0.223842218518257,-0.944029092788696,0.33671846985817,0.171145498752594,-0.925921082496643,0.33659291267395,0.281719535589218,-0.898520529270172,0.771402835845947,0.410352289676666,-0.486362516880035,0.837985455989838,0.289520442485809,-0.462556123733521,0.86800092458725,0.325423747301102,-0.375064879655838,0.771402835845947,0.410352289676666,-0.486362516880035,0.697812139987946,0.433199554681778,-0.570435047149658,0.710333645343781,0.420643866062164,-0.564344465732574,0.699920833110809,0.380121678113937,-0.604663789272308,0.710333645343781,0.420643866062164,-0.564344465732574,0.691265463829041,0.427413940429688,-0.582639873027802,0.891657114028931,0.268598169088364,-0.364420682191849,0.897370278835297,0.26993316411972,-0.349088162183762,0.894734799861908,0.262004435062408,-0.361667335033417,0.897370278835297,0.26993316411972,-0.349088162183762,0.86800092458725,0.325423747301102,-0.375064879655838,0.894734799861908,0.262004435062408,-0.361667335033417,0.887998282909393,0.287774592638016,-0.358670860528946,0.897370278835297,0.26993316411972,-0.349088162183762,0.891657114028931,0.268598169088364,-0.364420682191849,0.887998282909393,0.287774592638016,-0.358670860528946,0.917923450469971,0.267448574304581,-0.293066024780273,0.931140184402466,0.245408087968826,-0.26972708106041,\r\n0.685882747173309,0.332406520843506,-0.647356629371643,0.699920833110809,0.380121678113937,-0.604663789272308,0.671866059303284,0.464301317930222,-0.577078938484192,0.637710392475128,0.50051075220108,-0.585503458976746,0.633481800556183,0.436277270317078,-0.63903272151947,0.671866059303284,0.464301317930222,-0.577078938484192,0.931140184402466,0.245408087968826,-0.26972708106041,0.936277270317078,0.275207757949829,-0.218278303742409,0.961071252822876,0.207367151975632,-0.182594686746597,0.970907866954803,0.193164378404617,-0.14151106774807,0.955602049827576,0.273886829614639,-0.108675494790077,0.976376712322235,0.215474814176559,-0.0160874053835869,0.936277270317078,0.275207757949829,-0.218278303742409,0.970907866954803,0.193164378404617,-0.14151106774807,0.961071252822876,0.207367151975632,-0.182594686746597,0.964375019073486,0.264381885528564,-0.00910388771444559,0.965351939201355,0.257244408130646,0.0438268966972828,0.976376712322235,0.215474814176559,-0.0160874053835869,0.97255802154541,0.224527284502983,0.0609781667590141,0.958120167255402,0.275686025619507,0.0774766206741333,0.969276309013367,0.228459730744362,0.0911562889814377,0.969276309013367,0.228459730744362,0.0911562889814377,0.950139701366425,0.286648601293564,0.122747629880905,0.973626673221588,0.179880559444427,0.14033542573452,0.948426246643066,0.221471413969994,0.22679939866066,0.973626673221588,0.179880559444427,0.14033542573452,0.950139701366425,0.286648601293564,0.122747629880905,0.981844305992126,0.181633621454239,0.0546889714896679,0.965351939201355,0.257244408130646,0.0438268966972828,0.97255802154541,0.224527284502983,0.0609781667590141,0.152145087718964,0.474608540534973,-0.866947770118713,0.121761463582516,0.331944763660431,-0.935407280921936,0.269202947616577,0.557295978069305,-0.785462141036987,0.0838188976049423,0.257847100496292,-0.962543070316315,0.183836162090302,0.439933776855469,-0.879012167453766,0.121761463582516,0.331944763660431,-0.935407280921936,0.106907777488232,0.216274216771126,-0.970461785793304,0.219726875424385,0.344057351350784,-0.912877023220062,\r\n0.0838188976049423,0.257847100496292,-0.962543070316315,0.339066058397293,0.668750703334808,-0.661669492721558,0.22637777030468,0.735772490501404,-0.638272523880005,0.152145087718964,0.474608540534973,-0.866947770118713,0.22489957511425,0.187983348965645,-0.956076502799988,0.242288306355476,0.223842218518257,-0.944029092788696,0.106907777488232,0.216274216771126,-0.970461785793304,0.181748658418655,0.79487407207489,-0.578914880752563,0.270023584365845,0.811131238937378,-0.518799781799316,0.203570827841759,0.861729145050049,-0.46473827958107,0.181748658418655,0.79487407207489,-0.578914880752563,0.22637777030468,0.735772490501404,-0.638272523880005,0.270023584365845,0.811131238937378,-0.518799781799316,0.203570827841759,0.861729145050049,-0.46473827958107,0.250257730484009,0.838468015193939,-0.484089136123657,0.177875220775604,0.89197963476181,-0.415611118078232,0.555406212806702,0.41238921880722,0.722121119499207,0.542654573917389,0.272398322820663,0.794559717178345,0.535521686077118,0.372111052274704,0.758122503757477,0.149515479803085,-0.740156173706055,-0.655601859092712,0.0128011349588633,-0.717793464660645,-0.696138381958008,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.112541332840919,-0.788459002971649,-0.604703783988953,0.244423002004623,-0.841068923473358,-0.482556045055389,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.149515479803085,-0.740156173706055,-0.655601859092712,-0.0248777829110622,-0.621613740921021,-0.782928705215454,0.0128011349588633,-0.717793464660645,-0.696138381958008,0.112541332840919,-0.788459002971649,-0.604703783988953,0.240089043974876,-0.863093554973602,-0.444327175617218,0.244423002004623,-0.841068923473358,-0.482556045055389,0.36668136715889,-0.892468750476837,-0.262762635946274,0.409013837575912,-0.890897452831268,-0.197507962584496,0.470776528120041,-0.875699818134308,-0.107327409088612,0.36668136715889,-0.892468750476837,-0.262762635946274,0.240089043974876,-0.863093554973602,-0.444327175617218,0.299952745437622,-0.86386775970459,-0.40467357635498,0.522289872169495,-0.85145366191864,0.0473265424370766,\r\n0.470776528120041,-0.875699818134308,-0.107327409088612,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.522289872169495,-0.85145366191864,0.0473265424370766,0.557894647121429,-0.799803376197815,0.22151292860508,0.565938830375671,-0.77903938293457,0.269834518432617,0.599846720695496,-0.609075307846069,0.518855452537537,0.556175708770752,-0.70457398891449,0.440731257200241,0.565938830375671,-0.77903938293457,0.269834518432617,0.682703614234924,-0.576641798019409,0.448775947093964,0.648677468299866,-0.539435088634491,0.53686785697937,0.65393477678299,-0.505401253700256,0.562973082065582,0.65393477678299,-0.505401253700256,0.562973082065582,0.66311103105545,-0.504856824874878,0.552632927894592,0.708737969398499,-0.482795566320419,0.514391601085663,0.648677468299866,-0.539435088634491,0.53686785697937,0.682703614234924,-0.576641798019409,0.448775947093964,0.668352842330933,-0.599119424819946,0.440863072872162,0.644152045249939,-0.60375052690506,0.46963095664978,0.668352842330933,-0.599119424819946,0.440863072872162,0.687695980072021,-0.656984508037567,0.308942437171936,0.556175708770752,-0.70457398891449,0.440731257200241,0.599846720695496,-0.609075307846069,0.518855452537537,0.644152045249939,-0.60375052690506,0.46963095664978,0.345514863729477,0.525563299655914,-0.777433395385742,0.40890896320343,0.342148125171661,-0.84600704908371,0.431339740753174,0.421047925949097,-0.79791259765625,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.0248777829110622,-0.621613740921021,-0.782928705215454,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.249498888850212,-0.332389116287231,-0.909542560577393,-0.139718279242516,-0.39313742518425,-0.908802330493927,0.147569701075554,-0.000976193405222148,-0.989051163196564,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.261965990066528,0.152279168367386,-0.952987313270569,0.353032261133194,0.342647433280945,-0.8706094622612,0.504961431026459,0.220563352108002,-0.834485232830048,\r\n0.0507610365748405,0.111418075859547,-0.992476284503937,0.147569701075554,-0.000976193405222148,-0.989051163196564,0.261965990066528,0.152279168367386,-0.952987313270569,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.249498888850212,-0.332389116287231,-0.909542560577393,-0.281331807374954,-0.294681221246719,-0.913244366645813,0.440146207809448,0.465788722038269,-0.767666697502136,0.345514863729477,0.525563299655914,-0.777433395385742,0.374261498451233,0.535053253173828,-0.757394433021545,0.440146207809448,0.465788722038269,-0.767666697502136,0.504961431026459,0.220563352108002,-0.834485232830048,0.353032261133194,0.342647433280945,-0.8706094622612,-0.0210398137569427,0.121082112193108,-0.992419421672821,0.0439264737069607,0.112109005451202,-0.992724478244781,0.0731660723686218,0.118299081921577,-0.990278720855713,0.0736406296491623,0.08783920109272,-0.993408918380737,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.0210398137569427,0.121082112193108,-0.992419421672821,0.218245834112167,-0.124917037785053,-0.967865884304047,0.408947139978409,-0.257768362760544,-0.875395715236664,0.297147065401077,0.015678521245718,-0.954702913761139,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.0340926609933376,-0.221313118934631,-0.97460663318634,0.218245834112167,-0.124917037785053,-0.967865884304047,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.0739101842045784,0.0797760784626007,-0.994068920612335,0.0439264737069607,0.112109005451202,-0.992724478244781,0.408947139978409,-0.257768362760544,-0.875395715236664,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.297147065401077,0.015678521245718,-0.954702913761139,0.477429211139679,0.204197347164154,-0.854613721370697,0.318997502326965,0.107737250626087,-0.941612005233765,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.371345967054367,0.343994438648224,-0.862420916557312,0.33561897277832,0.224414631724358,-0.914875864982605,0.477429211139679,0.204197347164154,-0.854613721370697,0.431339740753174,0.421047925949097,-0.79791259765625,\r\n0.40890896320343,0.342148125171661,-0.84600704908371,0.371345967054367,0.343994438648224,-0.862420916557312,0.90795624256134,0.202085420489311,0.367119669914246,0.948426246643066,0.221471413969994,0.22679939866066,0.910597443580627,0.292797386646271,0.291687518358231,0.784720003604889,0.301513493061066,0.54157543182373,0.800685405731201,0.30741810798645,0.514195382595062,0.854361593723297,0.204650968313217,0.47768622636795,0.854361593723297,0.204650968313217,0.47768622636795,0.872225701808929,0.165709510445595,0.460176676511765,0.843336403369904,0.252286821603775,0.474483907222748,0.872225701808929,0.165709510445595,0.460176676511765,0.886870861053467,0.135917350649834,0.441572785377502,0.870677351951599,0.217383936047554,0.44120866060257,0.870677351951599,0.217383936047554,0.44120866060257,0.886870861053467,0.135917350649834,0.441572785377502,0.90795624256134,0.202085420489311,0.367119669914246,0.761577963829041,0.34649270772934,0.547669291496277,0.778798580169678,0.324810206890106,0.536629199981689,0.773546040058136,0.340162873268127,0.534710705280304,0.784720003604889,0.301513493061066,0.54157543182373,0.773546040058136,0.340162873268127,0.534710705280304,0.800685405731201,0.30741810798645,0.514195382595062,0.778798580169678,0.324810206890106,0.536629199981689,0.708569884300232,0.368432134389877,0.601819276809692,0.739053726196289,0.264920741319656,0.619367778301239,0.571103870868683,0.416428744792938,0.707408845424652,0.555406212806702,0.41238921880722,0.722121119499207,0.605153143405914,0.463575780391693,0.647214770317078,0.63392037153244,0.414525747299194,0.652926623821259,0.571103870868683,0.416428744792938,0.707408845424652,0.605153143405914,0.463575780391693,0.647214770317078,0.669234693050385,0.366235554218292,0.646526277065277,0.739053726196289,0.264920741319656,0.619367778301239,0.708569884300232,0.368432134389877,0.601819276809692,0.63392037153244,0.414525747299194,0.652926623821259,0.639084815979004,0.423402488231659,0.642106473445892,0.669234693050385,0.366235554218292,0.646526277065277,0.555873215198517,0.368926882743835,-0.744914591312408,\r\n0.607593297958374,0.47446271777153,-0.636957883834839,0.650932610034943,0.378550916910172,-0.658016562461853,0.607593297958374,0.47446271777153,-0.636957883834839,0.637710392475128,0.50051075220108,-0.585503458976746,0.671906113624573,0.446679800748825,-0.590778410434723,0.510599792003632,0.27657562494278,-0.81412136554718,0.555873215198517,0.368926882743835,-0.744914591312408,0.512019097805023,0.272309094667435,-0.81466805934906,0.510599792003632,0.27657562494278,-0.81412136554718,0.511798620223999,0.263270050287247,-0.817771911621094,0.497952431440353,0.315715730190277,-0.807692289352417,0.511798620223999,0.263270050287247,-0.817771911621094,0.388575345277786,0.333850532770157,-0.858808994293213,0.497952431440353,0.315715730190277,-0.807692289352417,0.388575345277786,0.333850532770157,-0.858808994293213,0.366155326366425,0.267721563577652,-0.89121001958847,0.359573394060135,0.348287522792816,-0.865680456161499,0.366000831127167,0.344901502132416,-0.864341497421265,0.359573394060135,0.348287522792816,-0.865680456161499,0.412072211503983,0.379639238119125,-0.828293740749359,0.349381923675537,0.385539501905441,-0.853985667228699,0.33659291267395,0.281719535589218,-0.898520529270172,0.366000831127167,0.344901502132416,-0.864341497421265,0.242288306355476,0.223842218518257,-0.944029092788696,0.33659291267395,0.281719535589218,-0.898520529270172,0.219726875424385,0.344057351350784,-0.912877023220062,0.861816823482513,0.318042099475861,-0.395121425390244,0.771402835845947,0.410352289676666,-0.486362516880035,0.86800092458725,0.325423747301102,-0.375064879655838,0.761413335800171,0.36808642745018,-0.533630907535553,0.697812139987946,0.433199554681778,-0.570435047149658,0.771402835845947,0.410352289676666,-0.486362516880035,0.710333645343781,0.420643866062164,-0.564344465732574,0.697812139987946,0.433199554681778,-0.570435047149658,0.691265463829041,0.427413940429688,-0.582639873027802,0.691265463829041,0.427413940429688,-0.582639873027802,0.671866059303284,0.464301317930222,-0.577078938484192,0.699920833110809,0.380121678113937,-0.604663789272308,\r\n0.86800092458725,0.325423747301102,-0.375064879655838,0.897370278835297,0.26993316411972,-0.349088162183762,0.861816823482513,0.318042099475861,-0.395121425390244,0.887998282909393,0.287774592638016,-0.358670860528946,0.906477034091949,0.20134761929512,-0.371158182621002,0.897370278835297,0.26993316411972,-0.349088162183762,0.887998282909393,0.287774592638016,-0.358670860528946,0.931140184402466,0.245408087968826,-0.26972708106041,0.906477034091949,0.20134761929512,-0.371158182621002,0.671906113624573,0.446679800748825,-0.590778410434723,0.637710392475128,0.50051075220108,-0.585503458976746,0.671866059303284,0.464301317930222,-0.577078938484192,0.963448166847229,0.1454226821661,-0.224987849593163,0.931140184402466,0.245408087968826,-0.26972708106041,0.961071252822876,0.207367151975632,-0.182594686746597,0.976376712322235,0.215474814176559,-0.0160874053835869,0.993613302707672,0.11069293320179,-0.0219001471996307,0.970907866954803,0.193164378404617,-0.14151106774807,0.970907866954803,0.193164378404617,-0.14151106774807,0.963448166847229,0.1454226821661,-0.224987849593163,0.961071252822876,0.207367151975632,-0.182594686746597,0.981844305992126,0.181633621454239,0.0546889714896679,0.976376712322235,0.215474814176559,-0.0160874053835869,0.965351939201355,0.257244408130646,0.0438268966972828,0.969276309013367,0.228459730744362,0.0911562889814377,0.980328619480133,0.175444707274437,0.0904147401452065,0.97255802154541,0.224527284502983,0.0609781667590141,0.969276309013367,0.228459730744362,0.0911562889814377,0.973626673221588,0.179880559444427,0.14033542573452,0.980328619480133,0.175444707274437,0.0904147401452065,0.973626673221588,0.179880559444427,0.14033542573452,0.948426246643066,0.221471413969994,0.22679939866066,0.956243455410004,0.131035283207893,0.261587679386139,0.97255802154541,0.224527284502983,0.0609781667590141,0.980328619480133,0.175444707274437,0.0904147401452065,0.981844305992126,0.181633621454239,0.0546889714896679,0.121761463582516,0.331944763660431,-0.935407280921936,0.183836162090302,0.439933776855469,-0.879012167453766,\r\n0.269202947616577,0.557295978069305,-0.785462141036987,0.339066058397293,0.668750703334808,-0.661669492721558,0.152145087718964,0.474608540534973,-0.866947770118713,0.269202947616577,0.557295978069305,-0.785462141036987,0.0838188976049423,0.257847100496292,-0.962543070316315,0.219726875424385,0.344057351350784,-0.912877023220062,0.183836162090302,0.439933776855469,-0.879012167453766,0.242288306355476,0.223842218518257,-0.944029092788696,0.219726875424385,0.344057351350784,-0.912877023220062,0.106907777488232,0.216274216771126,-0.970461785793304,0.311027824878693,0.751146912574768,-0.582271277904511,0.22637777030468,0.735772490501404,-0.638272523880005,0.339066058397293,0.668750703334808,-0.661669492721558,0.250257730484009,0.838468015193939,-0.484089136123657,0.203570827841759,0.861729145050049,-0.46473827958107,0.270023584365845,0.811131238937378,-0.518799781799316,0.22637777030468,0.735772490501404,-0.638272523880005,0.311027824878693,0.751146912574768,-0.582271277904511,0.270023584365845,0.811131238937378,-0.518799781799316,0.555406212806702,0.41238921880722,0.722121119499207,0.535521686077118,0.372111052274704,0.758122503757477,0.587677597999573,0.503557205200195,0.63329690694809,0.0128011349588633,-0.717793464660645,-0.696138381958008,-0.019886564463377,-0.647708475589752,-0.761628568172455,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.0250987280160189,-0.704292833805084,-0.709465622901917,0.112541332840919,-0.788459002971649,-0.604703783988953,0.0850949957966805,-0.777607321739197,-0.622965097427368,-0.019886564463377,-0.647708475589752,-0.761628568172455,0.0128011349588633,-0.717793464660645,-0.696138381958008,-0.0248777829110622,-0.621613740921021,-0.782928705215454,0.112541332840919,-0.788459002971649,-0.604703783988953,0.0663080662488937,-0.756725311279297,-0.650361359119415,0.240089043974876,-0.863093554973602,-0.444327175617218,0.36668136715889,-0.892468750476837,-0.262762635946274,0.299952745437622,-0.86386775970459,-0.40467357635498,0.409013837575912,-0.890897452831268,-0.197507962584496,\r\n0.470414221286774,-0.881115078926086,-0.0484413765370846,0.470776528120041,-0.875699818134308,-0.107327409088612,0.409013837575912,-0.890897452831268,-0.197507962584496,0.240089043974876,-0.863093554973602,-0.444327175617218,0.151521489024162,-0.7944375872612,-0.588141143321991,0.299952745437622,-0.86386775970459,-0.40467357635498,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.470776528120041,-0.875699818134308,-0.107327409088612,0.575522184371948,-0.799225807189941,0.173240214586258,0.522289872169495,-0.85145366191864,0.0473265424370766,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.522289872169495,-0.85145366191864,0.0473265424370766,0.60975843667984,-0.741111874580383,0.280976563692093,0.557894647121429,-0.799803376197815,0.22151292860508,0.622661352157593,-0.669879138469696,0.404418975114822,0.565938830375671,-0.77903938293457,0.269834518432617,0.557894647121429,-0.799803376197815,0.22151292860508,0.565938830375671,-0.77903938293457,0.269834518432617,0.622661352157593,-0.669879138469696,0.404418975114822,0.599846720695496,-0.609075307846069,0.518855452537537,0.650096714496613,-0.504508197307587,0.568194985389709,0.65393477678299,-0.505401253700256,0.562973082065582,0.648677468299866,-0.539435088634491,0.53686785697937,0.65393477678299,-0.505401253700256,0.562973082065582,0.650096714496613,-0.504508197307587,0.568194985389709,0.66311103105545,-0.504856824874878,0.552632927894592,0.644152045249939,-0.60375052690506,0.46963095664978,0.648677468299866,-0.539435088634491,0.53686785697937,0.668352842330933,-0.599119424819946,0.440863072872162,0.345514863729477,0.525563299655914,-0.777433395385742,0.431339740753174,0.421047925949097,-0.79791259765625,0.374261498451233,0.535053253173828,-0.757394433021545,-0.019886564463377,-0.647708475589752,-0.761628568172455,-0.0248777829110622,-0.621613740921021,-0.782928705215454,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.234626248478889,-0.359503835439682,-0.903165221214294,\r\n-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.249498888850212,-0.332389116287231,-0.909542560577393,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.0997067168354988,0.122613430023193,-0.987433254718781,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.339832067489624,0.245699539780617,-0.907824754714966,0.261965990066528,0.152279168367386,-0.952987313270569,0.504961431026459,0.220563352108002,-0.834485232830048,0.261965990066528,0.152279168367386,-0.952987313270569,0.339832067489624,0.245699539780617,-0.907824754714966,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.281331807374954,-0.294681221246719,-0.913244366645813,-0.249498888850212,-0.332389116287231,-0.909542560577393,-0.169506415724754,-0.429722487926483,-0.886908113956451,-0.281331807374954,-0.294681221246719,-0.913244366645813,-0.234626248478889,-0.359503835439682,-0.903165221214294,0.440146207809448,0.465788722038269,-0.767666697502136,0.374261498451233,0.535053253173828,-0.757394433021545,0.602640509605408,0.370403647422791,-0.706841826438904,0.681735038757324,0.241245195269585,-0.690679311752319,0.504961431026459,0.220563352108002,-0.834485232830048,0.440146207809448,0.465788722038269,-0.767666697502136,-0.0210398137569427,0.121082112193108,-0.992419421672821,-0.0796438455581665,0.114269703626633,-0.990252077579498,0.0439264737069607,0.112109005451202,-0.992724478244781,-0.0489822737872601,0.090268611907959,-0.994712114334106,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.0210398137569427,0.121082112193108,-0.992419421672821,0.430375903844833,-0.529236197471619,-0.731221914291382,0.408947139978409,-0.257768362760544,-0.875395715236664,0.218245834112167,-0.124917037785053,-0.967865884304047,0.0739101842045784,0.0797760784626007,-0.994068920612335,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.0340926609933376,-0.221313118934631,-0.97460663318634,\r\n0.201500952243805,-0.450871467590332,-0.869547069072723,0.218245834112167,-0.124917037785053,-0.967865884304047,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.0796438455581665,0.114269703626633,-0.990252077579498,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.0439264737069607,0.112109005451202,-0.992724478244781,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.408947139978409,-0.257768362760544,-0.875395715236664,0.575592994689941,-0.413253277540207,-0.705630421638489,0.477429211139679,0.204197347164154,-0.854613721370697,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.629160046577454,0.0542684942483902,-0.775378882884979,0.371345967054367,0.343994438648224,-0.862420916557312,0.477429211139679,0.204197347164154,-0.854613721370697,0.431339740753174,0.421047925949097,-0.79791259765625,0.948426246643066,0.221471413969994,0.22679939866066,0.90795624256134,0.202085420489311,0.367119669914246,0.925432860851288,0.131911009550095,0.355208873748779,0.811066865921021,0.227537468075752,0.538885056972504,0.854361593723297,0.204650968313217,0.47768622636795,0.800685405731201,0.30741810798645,0.514195382595062,0.854361593723297,0.204650968313217,0.47768622636795,0.884259343147278,0.133598208427429,0.447478234767914,0.872225701808929,0.165709510445595,0.460176676511765,0.884259343147278,0.133598208427429,0.447478234767914,0.886870861053467,0.135917350649834,0.441572785377502,0.872225701808929,0.165709510445595,0.460176676511765,0.886870861053467,0.135917350649834,0.441572785377502,0.925432860851288,0.131911009550095,0.355208873748779,0.90795624256134,0.202085420489311,0.367119669914246,0.778798580169678,0.324810206890106,0.536629199981689,0.800685405731201,0.30741810798645,0.514195382595062,0.773546040058136,0.340162873268127,0.534710705280304,0.778798580169678,0.324810206890106,0.536629199981689,0.739053726196289,0.264920741319656,0.619367778301239,0.811066865921021,0.227537468075752,0.538885056972504,0.587677597999573,0.503557205200195,0.63329690694809,0.605153143405914,0.463575780391693,0.647214770317078,\r\n0.555406212806702,0.41238921880722,0.722121119499207,0.63392037153244,0.414525747299194,0.652926623821259,0.605153143405914,0.463575780391693,0.647214770317078,0.639084815979004,0.423402488231659,0.642106473445892,0.739053726196289,0.264920741319656,0.619367778301239,0.669234693050385,0.366235554218292,0.646526277065277,0.648529171943665,0.334934443235397,0.683541238307953,0.648529171943665,0.334934443235397,0.683541238307953,0.669234693050385,0.366235554218292,0.646526277065277,0.639084815979004,0.423402488231659,0.642106473445892,0.607593297958374,0.47446271777153,-0.636957883834839,0.671906113624573,0.446679800748825,-0.590778410434723,0.650932610034943,0.378550916910172,-0.658016562461853,0.555873215198517,0.368926882743835,-0.744914591312408,0.650932610034943,0.378550916910172,-0.658016562461853,0.583739519119263,0.281676143407822,-0.761516034603119,0.512019097805023,0.272309094667435,-0.81466805934906,0.555873215198517,0.368926882743835,-0.744914591312408,0.583739519119263,0.281676143407822,-0.761516034603119,0.512019097805023,0.272309094667435,-0.81466805934906,0.480960696935654,0.181779980659485,-0.857690334320068,0.510599792003632,0.27657562494278,-0.81412136554718,0.511798620223999,0.263270050287247,-0.817771911621094,0.510599792003632,0.27657562494278,-0.81412136554718,0.555076718330383,0.189021751284599,-0.810037314891815,0.511798620223999,0.263270050287247,-0.817771911621094,0.427958220243454,0.202602401375771,-0.880797326564789,0.388575345277786,0.333850532770157,-0.858808994293213,0.427958220243454,0.202602401375771,-0.880797326564789,0.366155326366425,0.267721563577652,-0.89121001958847,0.388575345277786,0.333850532770157,-0.858808994293213,0.446485757827759,0.280549138784409,-0.849672019481659,0.359573394060135,0.348287522792816,-0.865680456161499,0.366155326366425,0.267721563577652,-0.89121001958847,0.359573394060135,0.348287522792816,-0.865680456161499,0.470441967248917,0.305184453725815,-0.827977478504181,0.412072211503983,0.379639238119125,-0.828293740749359,0.366000831127167,0.344901502132416,-0.864341497421265,\r\n0.412072211503983,0.379639238119125,-0.828293740749359,0.349381923675537,0.385539501905441,-0.853985667228699,0.349381923675537,0.385539501905441,-0.853985667228699,0.219726875424385,0.344057351350784,-0.912877023220062,0.33659291267395,0.281719535589218,-0.898520529270172,0.761413335800171,0.36808642745018,-0.533630907535553,0.771402835845947,0.410352289676666,-0.486362516880035,0.861816823482513,0.318042099475861,-0.395121425390244,0.761413335800171,0.36808642745018,-0.533630907535553,0.730032742023468,0.332442373037338,-0.597104728221893,0.697812139987946,0.433199554681778,-0.570435047149658,0.697812139987946,0.433199554681778,-0.570435047149658,0.730032742023468,0.332442373037338,-0.597104728221893,0.691265463829041,0.427413940429688,-0.582639873027802,0.691265463829041,0.427413940429688,-0.582639873027802,0.671906113624573,0.446679800748825,-0.590778410434723,0.671866059303284,0.464301317930222,-0.577078938484192,0.897370278835297,0.26993316411972,-0.349088162183762,0.91690868139267,0.174721941351891,-0.35881832242012,0.861816823482513,0.318042099475861,-0.395121425390244,0.906477034091949,0.20134761929512,-0.371158182621002,0.923469424247742,0.176787450909615,-0.340514451265335,0.897370278835297,0.26993316411972,-0.349088162183762,0.931140184402466,0.245408087968826,-0.26972708106041,0.963448166847229,0.1454226821661,-0.224987849593163,0.906477034091949,0.20134761929512,-0.371158182621002,0.976376712322235,0.215474814176559,-0.0160874053835869,0.981844305992126,0.181633621454239,0.0546889714896679,0.993613302707672,0.11069293320179,-0.0219001471996307,0.970907866954803,0.193164378404617,-0.14151106774807,0.993613302707672,0.11069293320179,-0.0219001471996307,0.991481781005859,0.0744072273373604,-0.106898806989193,0.991481781005859,0.0744072273373604,-0.106898806989193,0.963448166847229,0.1454226821661,-0.224987849593163,0.970907866954803,0.193164378404617,-0.14151106774807,0.980328619480133,0.175444707274437,0.0904147401452065,0.973626673221588,0.179880559444427,0.14033542573452,0.985706150531769,0.13493449985981,0.100876234471798,\r\n0.948426246643066,0.221471413969994,0.22679939866066,0.925432860851288,0.131911009550095,0.355208873748779,0.956243455410004,0.131035283207893,0.261587679386139,0.965072453022003,0.14069975912571,0.220994785428047,0.973626673221588,0.179880559444427,0.14033542573452,0.956243455410004,0.131035283207893,0.261587679386139,0.981844305992126,0.181633621454239,0.0546889714896679,0.980328619480133,0.175444707274437,0.0904147401452065,0.991664469242096,0.103529676795006,0.0766998901963234,0.358126550912857,0.552800953388214,-0.752433598041534,0.269202947616577,0.557295978069305,-0.785462141036987,0.183836162090302,0.439933776855469,-0.879012167453766,0.339066058397293,0.668750703334808,-0.661669492721558,0.269202947616577,0.557295978069305,-0.785462141036987,0.431917130947113,0.629780888557434,-0.645618677139282,0.183836162090302,0.439933776855469,-0.879012167453766,0.219726875424385,0.344057351350784,-0.912877023220062,0.272250056266785,0.461064428091049,-0.844570517539978,0.390216082334518,0.668762981891632,-0.632840692996979,0.311027824878693,0.751146912574768,-0.582271277904511,0.339066058397293,0.668750703334808,-0.661669492721558,0.270023584365845,0.811131238937378,-0.518799781799316,0.318093597888947,0.785089612007141,-0.531460821628571,0.250257730484009,0.838468015193939,-0.484089136123657,0.330519497394562,0.75350946187973,-0.568313419818878,0.270023584365845,0.811131238937378,-0.518799781799316,0.311027824878693,0.751146912574768,-0.582271277904511,0.587677597999573,0.503557205200195,0.63329690694809,0.535521686077118,0.372111052274704,0.758122503757477,0.48640039563179,0.511705636978149,0.70821738243103,-0.019886564463377,-0.647708475589752,-0.761628568172455,0.0250987280160189,-0.704292833805084,-0.709465622901917,0.0850949957966805,-0.777607321739197,-0.622965097427368,0.0250987280160189,-0.704292833805084,-0.709465622901917,-0.056326150894165,-0.624213576316834,-0.779220521450043,0.112541332840919,-0.788459002971649,-0.604703783988953,0.112541332840919,-0.788459002971649,-0.604703783988953,-0.056326150894165,-0.624213576316834,-0.779220521450043,\r\n0.0663080662488937,-0.756725311279297,-0.650361359119415,0.151521489024162,-0.7944375872612,-0.588141143321991,0.240089043974876,-0.863093554973602,-0.444327175617218,0.0663080662488937,-0.756725311279297,-0.650361359119415,0.299952745437622,-0.86386775970459,-0.40467357635498,0.358888804912567,-0.87672632932663,-0.320233732461929,0.409013837575912,-0.890897452831268,-0.197507962584496,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.409013837575912,-0.890897452831268,-0.197507962584496,0.421492338180542,-0.890414535999298,-0.171773135662079,0.151521489024162,-0.7944375872612,-0.588141143321991,0.158299401402473,-0.770670831203461,-0.617258131504059,0.299952745437622,-0.86386775970459,-0.40467357635498,0.516676723957062,-0.848812818527222,0.1120800152421,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.575522184371948,-0.799225807189941,0.173240214586258,0.60975843667984,-0.741111874580383,0.280976563692093,0.522289872169495,-0.85145366191864,0.0473265424370766,0.516676723957062,-0.848812818527222,0.1120800152421,0.575522184371948,-0.799225807189941,0.173240214586258,0.526243984699249,-0.850333571434021,-0.000297173828585073,0.622661352157593,-0.669879138469696,0.404418975114822,0.557894647121429,-0.799803376197815,0.22151292860508,0.60975843667984,-0.741111874580383,0.280976563692093,0.648677468299866,-0.539435088634491,0.53686785697937,0.644152045249939,-0.60375052690506,0.46963095664978,0.650096714496613,-0.504508197307587,0.568194985389709,0.374261498451233,0.535053253173828,-0.757394433021545,0.431339740753174,0.421047925949097,-0.79791259765625,0.602640509605408,0.370403647422791,-0.706841826438904,-0.019886564463377,-0.647708475589752,-0.761628568172455,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.0889745131134987,-0.575870215892792,-0.812684893608093,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.234626248478889,-0.359503835439682,-0.903165221214294,-0.244907066226006,-0.41137021780014,-0.877949297428131,\r\n-0.0997067168354988,0.122613430023193,-0.987433254718781,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.0671365335583687,0.25837117433548,-0.963710010051727,-0.0997067168354988,0.122613430023193,-0.987433254718781,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,0.339832067489624,0.245699539780617,-0.907824754714966,0.504961431026459,0.220563352108002,-0.834485232830048,0.641266644001007,0.192435711622238,-0.742795765399933,0.339832067489624,0.245699539780617,-0.907824754714966,-0.0671365335583687,0.25837117433548,-0.963710010051727,0.0507610365748405,0.111418075859547,-0.992476284503937,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.234626248478889,-0.359503835439682,-0.903165221214294,-0.281331807374954,-0.294681221246719,-0.913244366645813,0.681735038757324,0.241245195269585,-0.690679311752319,0.440146207809448,0.465788722038269,-0.767666697502136,0.602640509605408,0.370403647422791,-0.706841826438904,0.681735038757324,0.241245195269585,-0.690679311752319,0.641266644001007,0.192435711622238,-0.742795765399933,0.504961431026459,0.220563352108002,-0.834485232830048,-0.0210398137569427,0.121082112193108,-0.992419421672821,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.0796438455581665,0.114269703626633,-0.990252077579498,0.408947139978409,-0.257768362760544,-0.875395715236664,0.430375903844833,-0.529236197471619,-0.731221914291382,0.575592994689941,-0.413253277540207,-0.705630421638489,0.218245834112167,-0.124917037785053,-0.967865884304047,0.201500952243805,-0.450871467590332,-0.869547069072723,0.430375903844833,-0.529236197471619,-0.731221914291382,-0.134363085031509,-0.216802775859833,-0.966924548149109,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.130717068910599,-0.577823996543884,-0.805625438690186,0.201500952243805,-0.450871467590332,-0.869547069072723,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.0665111914277077,0.0824390277266502,-0.99437415599823,\r\n-0.0796438455581665,0.114269703626633,-0.990252077579498,-0.189368456602097,0.135976031422615,-0.972445368766785,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.575592994689941,-0.413253277540207,-0.705630421638489,0.716789066791534,-0.171117842197418,-0.675967395305634,0.457636266946793,-0.0893364697694778,-0.884639978408813,0.716789066791534,-0.171117842197418,-0.675967395305634,0.629160046577454,0.0542684942483902,-0.775378882884979,0.662886917591095,0.205916300415993,-0.719846665859222,0.477429211139679,0.204197347164154,-0.854613721370697,0.629160046577454,0.0542684942483902,-0.775378882884979,0.662886917591095,0.205916300415993,-0.719846665859222,0.431339740753174,0.421047925949097,-0.79791259765625,0.477429211139679,0.204197347164154,-0.854613721370697,0.811066865921021,0.227537468075752,0.538885056972504,0.865944743156433,0.138402700424194,0.480608224868774,0.854361593723297,0.204650968313217,0.47768622636795,0.800685405731201,0.30741810798645,0.514195382595062,0.778798580169678,0.324810206890106,0.536629199981689,0.811066865921021,0.227537468075752,0.538885056972504,0.865944743156433,0.138402700424194,0.480608224868774,0.884259343147278,0.133598208427429,0.447478234767914,0.854361593723297,0.204650968313217,0.47768622636795,0.884259343147278,0.133598208427429,0.447478234767914,0.891995787620544,0.134424671530724,0.431594043970108,0.886870861053467,0.135917350649834,0.441572785377502,0.886870861053467,0.135917350649834,0.441572785377502,0.891995787620544,0.134424671530724,0.431594043970108,0.925432860851288,0.131911009550095,0.355208873748779,0.739053726196289,0.264920741319656,0.619367778301239,0.815599501132965,0.143775328993797,0.560469388961792,0.811066865921021,0.227537468075752,0.538885056972504,0.587677597999573,0.503557205200195,0.63329690694809,0.634985685348511,0.489749848842621,0.597442984580994,0.605153143405914,0.463575780391693,0.647214770317078,0.639084815979004,0.423402488231659,0.642106473445892,0.605153143405914,0.463575780391693,0.647214770317078,0.634985685348511,0.489749848842621,0.597442984580994,\r\n0.739053726196289,0.264920741319656,0.619367778301239,0.648529171943665,0.334934443235397,0.683541238307953,0.689618289470673,0.250702053308487,0.67939305305481,0.639084815979004,0.423402488231659,0.642106473445892,0.633636176586151,0.412671953439713,0.654375195503235,0.648529171943665,0.334934443235397,0.683541238307953,0.650932610034943,0.378550916910172,-0.658016562461853,0.671906113624573,0.446679800748825,-0.590778410434723,0.691265463829041,0.427413940429688,-0.582639873027802,0.650490522384644,0.268959641456604,-0.710297524929047,0.583739519119263,0.281676143407822,-0.761516034603119,0.650932610034943,0.378550916910172,-0.658016562461853,0.512019097805023,0.272309094667435,-0.81466805934906,0.583739519119263,0.281676143407822,-0.761516034603119,0.519868791103363,0.215344682335854,-0.826657712459564,0.512019097805023,0.272309094667435,-0.81466805934906,0.519868791103363,0.215344682335854,-0.826657712459564,0.480960696935654,0.181779980659485,-0.857690334320068,0.510599792003632,0.27657562494278,-0.81412136554718,0.480960696935654,0.181779980659485,-0.857690334320068,0.555076718330383,0.189021751284599,-0.810037314891815,0.537626504898071,0.145928099751472,-0.830459237098694,0.511798620223999,0.263270050287247,-0.817771911621094,0.555076718330383,0.189021751284599,-0.810037314891815,0.427958220243454,0.202602401375771,-0.880797326564789,0.511798620223999,0.263270050287247,-0.817771911621094,0.537626504898071,0.145928099751472,-0.830459237098694,0.366155326366425,0.267721563577652,-0.89121001958847,0.427958220243454,0.202602401375771,-0.880797326564789,0.42166593670845,0.214249700307846,-0.881075918674469,0.359573394060135,0.348287522792816,-0.865680456161499,0.446485757827759,0.280549138784409,-0.849672019481659,0.470441967248917,0.305184453725815,-0.827977478504181,0.454425156116486,0.266675531864166,-0.849930465221405,0.446485757827759,0.280549138784409,-0.849672019481659,0.366155326366425,0.267721563577652,-0.89121001958847,0.50848126411438,0.333315879106522,-0.79394406080246,0.412072211503983,0.379639238119125,-0.828293740749359,\r\n0.470441967248917,0.305184453725815,-0.827977478504181,0.412072211503983,0.379639238119125,-0.828293740749359,0.350853890180588,0.453524857759476,-0.819278120994568,0.349381923675537,0.385539501905441,-0.853985667228699,0.263168454170227,0.419853359460831,-0.868599653244019,0.219726875424385,0.344057351350784,-0.912877023220062,0.349381923675537,0.385539501905441,-0.853985667228699,0.761413335800171,0.36808642745018,-0.533630907535553,0.861816823482513,0.318042099475861,-0.395121425390244,0.822655081748962,0.201511427760124,-0.531631052494049,0.761413335800171,0.36808642745018,-0.533630907535553,0.822655081748962,0.201511427760124,-0.531631052494049,0.730032742023468,0.332442373037338,-0.597104728221893,0.714156687259674,0.350119084119797,-0.606132566928864,0.691265463829041,0.427413940429688,-0.582639873027802,0.730032742023468,0.332442373037338,-0.597104728221893,0.897370278835297,0.26993316411972,-0.349088162183762,0.923469424247742,0.176787450909615,-0.340514451265335,0.91690868139267,0.174721941351891,-0.35881832242012,0.91690868139267,0.174721941351891,-0.35881832242012,0.822655081748962,0.201511427760124,-0.531631052494049,0.861816823482513,0.318042099475861,-0.395121425390244,0.906477034091949,0.20134761929512,-0.371158182621002,0.923126935958862,0.131743595004082,-0.361220389604568,0.923469424247742,0.176787450909615,-0.340514451265335,0.940793573856354,0.0505802817642689,-0.335184991359711,0.906477034091949,0.20134761929512,-0.371158182621002,0.963448166847229,0.1454226821661,-0.224987849593163,0.993613302707672,0.11069293320179,-0.0219001471996307,0.981844305992126,0.181633621454239,0.0546889714896679,0.991664469242096,0.103529676795006,0.0766998901963234,0.991481781005859,0.0744072273373604,-0.106898806989193,0.993613302707672,0.11069293320179,-0.0219001471996307,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.991481781005859,0.0744072273373604,-0.106898806989193,0.989362061023712,0.0426139757037163,-0.139092117547989,0.963448166847229,0.1454226821661,-0.224987849593163,0.973626673221588,0.179880559444427,0.14033542573452,\r\n0.983834743499756,0.1214679479599,0.13158506155014,0.985706150531769,0.13493449985981,0.100876234471798,0.991664469242096,0.103529676795006,0.0766998901963234,0.980328619480133,0.175444707274437,0.0904147401452065,0.985706150531769,0.13493449985981,0.100876234471798,0.921910107135773,0.143668547272682,0.35977903008461,0.956243455410004,0.131035283207893,0.261587679386139,0.925432860851288,0.131911009550095,0.355208873748779,0.973626673221588,0.179880559444427,0.14033542573452,0.965072453022003,0.14069975912571,0.220994785428047,0.983834743499756,0.1214679479599,0.13158506155014,0.965072453022003,0.14069975912571,0.220994785428047,0.956243455410004,0.131035283207893,0.261587679386139,0.94500732421875,0.13183881342411,0.299298495054245,0.431917130947113,0.629780888557434,-0.645618677139282,0.269202947616577,0.557295978069305,-0.785462141036987,0.358126550912857,0.552800953388214,-0.752433598041534,0.272250056266785,0.461064428091049,-0.844570517539978,0.358126550912857,0.552800953388214,-0.752433598041534,0.183836162090302,0.439933776855469,-0.879012167453766,0.390216082334518,0.668762981891632,-0.632840692996979,0.339066058397293,0.668750703334808,-0.661669492721558,0.431917130947113,0.629780888557434,-0.645618677139282,0.263168454170227,0.419853359460831,-0.868599653244019,0.272250056266785,0.461064428091049,-0.844570517539978,0.219726875424385,0.344057351350784,-0.912877023220062,0.333078414201736,0.694071173667908,-0.638219237327576,0.311027824878693,0.751146912574768,-0.582271277904511,0.390216082334518,0.668762981891632,-0.632840692996979,0.330519497394562,0.75350946187973,-0.568313419818878,0.318093597888947,0.785089612007141,-0.531460821628571,0.270023584365845,0.811131238937378,-0.518799781799316,0.250257730484009,0.838468015193939,-0.484089136123657,0.318093597888947,0.785089612007141,-0.531460821628571,0.340025782585144,0.744259536266327,-0.574856638908386,0.333078414201736,0.694071173667908,-0.638219237327576,0.330519497394562,0.75350946187973,-0.568313419818878,0.311027824878693,0.751146912574768,-0.582271277904511,\r\n0.48640039563179,0.511705636978149,0.70821738243103,0.53188681602478,0.497823685407639,0.685031235218048,0.587677597999573,0.503557205200195,0.63329690694809,-0.019886564463377,-0.647708475589752,-0.761628568172455,-0.0889745131134987,-0.575870215892792,-0.812684893608093,0.0250987280160189,-0.704292833805084,-0.709465622901917,-0.0889745131134987,-0.575870215892792,-0.812684893608093,-0.056326150894165,-0.624213576316834,-0.779220521450043,0.0250987280160189,-0.704292833805084,-0.709465622901917,-0.00674148509278893,-0.675062656402588,-0.737729489803314,0.0663080662488937,-0.756725311279297,-0.650361359119415,-0.056326150894165,-0.624213576316834,-0.779220521450043,0.151521489024162,-0.7944375872612,-0.588141143321991,0.0663080662488937,-0.756725311279297,-0.650361359119415,-0.00674148509278893,-0.675062656402588,-0.737729489803314,0.299952745437622,-0.86386775970459,-0.40467357635498,0.26640260219574,-0.83338850736618,-0.484244853258133,0.358888804912567,-0.87672632932663,-0.320233732461929,0.409013837575912,-0.890897452831268,-0.197507962584496,0.358888804912567,-0.87672632932663,-0.320233732461929,0.421492338180542,-0.890414535999298,-0.171773135662079,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.421492338180542,-0.890414535999298,-0.171773135662079,0.151521489024162,-0.7944375872612,-0.588141143321991,0.0551909953355789,-0.709768116474152,-0.702269911766052,0.158299401402473,-0.770670831203461,-0.617258131504059,0.299952745437622,-0.86386775970459,-0.40467357635498,0.158299401402473,-0.770670831203461,-0.617258131504059,0.26640260219574,-0.83338850736618,-0.484244853258133,0.516676723957062,-0.848812818527222,0.1120800152421,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.504408538341522,-0.851483464241028,0.143344968557358,0.613923132419586,-0.668326079845428,0.420045733451843,0.60975843667984,-0.741111874580383,0.280976563692093,0.575522184371948,-0.799225807189941,0.173240214586258,0.575522184371948,-0.799225807189941,0.173240214586258,\r\n0.516676723957062,-0.848812818527222,0.1120800152421,0.580039620399475,-0.726921319961548,0.367613077163696,0.622661352157593,-0.669879138469696,0.404418975114822,0.60975843667984,-0.741111874580383,0.280976563692093,0.628624081611633,-0.575476765632629,0.523123204708099,0.431339740753174,0.421047925949097,-0.79791259765625,0.662886917591095,0.205916300415993,-0.719846665859222,0.602640509605408,0.370403647422791,-0.706841826438904,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.0889745131134987,-0.575870215892792,-0.812684893608093,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.234626248478889,-0.359503835439682,-0.903165221214294,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.138186410069466,-0.47278356552124,-0.870275735855103,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.0997067168354988,0.122613430023193,-0.987433254718781,-0.0671365335583687,0.25837117433548,-0.963710010051727,0.604620814323425,0.3550925552845,-0.712981641292572,0.339832067489624,0.245699539780617,-0.907824754714966,0.641266644001007,0.192435711622238,-0.742795765399933,0.339832067489624,0.245699539780617,-0.907824754714966,0.296846002340317,0.462029159069061,-0.835710108280182,-0.0671365335583687,0.25837117433548,-0.963710010051727,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.234626248478889,-0.359503835439682,-0.903165221214294,0.681735038757324,0.241245195269585,-0.690679311752319,0.602640509605408,0.370403647422791,-0.706841826438904,0.789060354232788,0.157426699995995,-0.59380167722702,0.762523412704468,0.209198385477066,-0.612204253673553,0.641266644001007,0.192435711622238,-0.742795765399933,0.681735038757324,0.241245195269585,-0.690679311752319,-0.139783024787903,0.140303432941437,-0.980191588401794,-0.189368456602097,0.135976031422615,-0.972445368766785,\r\n-0.0796438455581665,0.114269703626633,-0.990252077579498,0.430375903844833,-0.529236197471619,-0.731221914291382,0.625092506408691,-0.604773819446564,-0.493465125560761,0.575592994689941,-0.413253277540207,-0.705630421638489,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.139115259051323,-0.403364926576614,-0.904402375221252,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.0665111914277077,0.0824390277266502,-0.99437415599823,0.130717068910599,-0.577823996543884,-0.805625438690186,0.0340926609933376,-0.221313118934631,-0.97460663318634,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.198316976428032,0.0343213975429535,-0.979536771774292,-0.0665111914277077,0.0824390277266502,-0.99437415599823,-0.189368456602097,0.135976031422615,-0.972445368766785,0.716789066791534,-0.171117842197418,-0.675967395305634,0.575592994689941,-0.413253277540207,-0.705630421638489,0.794824421405792,-0.418989628553391,-0.438978016376495,0.779977798461914,0.0397407822310925,-0.624544024467468,0.629160046577454,0.0542684942483902,-0.775378882884979,0.716789066791534,-0.171117842197418,-0.675967395305634,0.779977798461914,0.0397407822310925,-0.624544024467468,0.662886917591095,0.205916300415993,-0.719846665859222,0.629160046577454,0.0542684942483902,-0.775378882884979,0.815599501132965,0.143775328993797,0.560469388961792,0.865944743156433,0.138402700424194,0.480608224868774,0.811066865921021,0.227537468075752,0.538885056972504,0.876551508903503,0.130535870790482,0.463268488645554,0.884259343147278,0.133598208427429,0.447478234767914,0.865944743156433,0.138402700424194,0.480608224868774,0.876748085021973,0.153989613056183,0.455631375312805,0.891995787620544,0.134424671530724,0.431594043970108,0.884259343147278,0.133598208427429,0.447478234767914,0.921910107135773,0.143668547272682,0.35977903008461,0.925432860851288,0.131911009550095,0.355208873748779,0.891995787620544,0.134424671530724,0.431594043970108,\r\n0.815599501132965,0.143775328993797,0.560469388961792,0.739053726196289,0.264920741319656,0.619367778301239,0.763813734054565,0.16469806432724,0.624069690704346,0.587677597999573,0.503557205200195,0.63329690694809,0.53188681602478,0.497823685407639,0.685031235218048,0.634985685348511,0.489749848842621,0.597442984580994,0.633636176586151,0.412671953439713,0.654375195503235,0.639084815979004,0.423402488231659,0.642106473445892,0.634985685348511,0.489749848842621,0.597442984580994,0.598678052425385,0.278391063213348,0.751054465770721,0.689618289470673,0.250702053308487,0.67939305305481,0.648529171943665,0.334934443235397,0.683541238307953,0.689618289470673,0.250702053308487,0.67939305305481,0.763813734054565,0.16469806432724,0.624069690704346,0.739053726196289,0.264920741319656,0.619367778301239,0.648529171943665,0.334934443235397,0.683541238307953,0.633636176586151,0.412671953439713,0.654375195503235,0.574704945087433,0.335110485553741,0.746602296829224,0.714156687259674,0.350119084119797,-0.606132566928864,0.650932610034943,0.378550916910172,-0.658016562461853,0.691265463829041,0.427413940429688,-0.582639873027802,0.577990293502808,0.186815902590752,-0.794371962547302,0.583739519119263,0.281676143407822,-0.761516034603119,0.650490522384644,0.268959641456604,-0.710297524929047,0.714156687259674,0.350119084119797,-0.606132566928864,0.650490522384644,0.268959641456604,-0.710297524929047,0.650932610034943,0.378550916910172,-0.658016562461853,0.577990293502808,0.186815902590752,-0.794371962547302,0.519868791103363,0.215344682335854,-0.826657712459564,0.583739519119263,0.281676143407822,-0.761516034603119,0.480960696935654,0.181779980659485,-0.857690334320068,0.519868791103363,0.215344682335854,-0.826657712459564,0.494153320789337,0.125007286667824,-0.860340416431427,0.480960696935654,0.181779980659485,-0.857690334320068,0.557179033756256,0.058114442974329,-0.828356266021729,0.555076718330383,0.189021751284599,-0.810037314891815,0.557179033756256,0.058114442974329,-0.828356266021729,0.537626504898071,0.145928099751472,-0.830459237098694,\r\n0.555076718330383,0.189021751284599,-0.810037314891815,0.537626504898071,0.145928099751472,-0.830459237098694,0.534732222557068,0.119408138096333,-0.836542248725891,0.427958220243454,0.202602401375771,-0.880797326564789,0.427958220243454,0.202602401375771,-0.880797326564789,0.534732222557068,0.119408138096333,-0.836542248725891,0.42166593670845,0.214249700307846,-0.881075918674469,0.454425156116486,0.266675531864166,-0.849930465221405,0.366155326366425,0.267721563577652,-0.89121001958847,0.42166593670845,0.214249700307846,-0.881075918674469,0.446485757827759,0.280549138784409,-0.849672019481659,0.504562020301819,0.257759422063828,-0.824000656604767,0.470441967248917,0.305184453725815,-0.827977478504181,0.504562020301819,0.257759422063828,-0.824000656604767,0.446485757827759,0.280549138784409,-0.849672019481659,0.454425156116486,0.266675531864166,-0.849930465221405,0.412072211503983,0.379639238119125,-0.828293740749359,0.50848126411438,0.333315879106522,-0.79394406080246,0.350853890180588,0.453524857759476,-0.819278120994568,0.504562020301819,0.257759422063828,-0.824000656604767,0.50848126411438,0.333315879106522,-0.79394406080246,0.470441967248917,0.305184453725815,-0.827977478504181,0.350853890180588,0.453524857759476,-0.819278120994568,0.263168454170227,0.419853359460831,-0.868599653244019,0.349381923675537,0.385539501905441,-0.853985667228699,0.822655081748962,0.201511427760124,-0.531631052494049,0.775867819786072,0.237990275025368,-0.584285497665405,0.730032742023468,0.332442373037338,-0.597104728221893,0.730032742023468,0.332442373037338,-0.597104728221893,0.745271384716034,0.245044037699699,-0.62009984254837,0.714156687259674,0.350119084119797,-0.606132566928864,0.91690868139267,0.174721941351891,-0.35881832242012,0.923469424247742,0.176787450909615,-0.340514451265335,0.94001030921936,0.0920321121811867,-0.328497648239136,0.91690868139267,0.174721941351891,-0.35881832242012,0.907014191150665,0.0387079268693924,-0.419317126274109,0.822655081748962,0.201511427760124,-0.531631052494049,0.940793573856354,0.0505802817642689,-0.335184991359711,\r\n0.923126935958862,0.131743595004082,-0.361220389604568,0.906477034091949,0.20134761929512,-0.371158182621002,0.923469424247742,0.176787450909615,-0.340514451265335,0.923126935958862,0.131743595004082,-0.361220389604568,0.94001030921936,0.0920321121811867,-0.328497648239136,0.940793573856354,0.0505802817642689,-0.335184991359711,0.963448166847229,0.1454226821661,-0.224987849593163,0.977004110813141,0.0433221757411957,-0.208772659301758,0.997222781181335,0.0733383446931839,0.0129663683474064,0.993613302707672,0.11069293320179,-0.0219001471996307,0.991664469242096,0.103529676795006,0.0766998901963234,0.993613302707672,0.11069293320179,-0.0219001471996307,0.997222781181335,0.0733383446931839,0.0129663683474064,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.991481781005859,0.0744072273373604,-0.106898806989193,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.991080701351166,0.00263776117935777,-0.133235797286034,0.991481781005859,0.0744072273373604,-0.106898806989193,0.991080701351166,0.00263776117935777,-0.133235797286034,0.989362061023712,0.0426139757037163,-0.139092117547989,0.989362061023712,0.0426139757037163,-0.139092117547989,0.977004110813141,0.0433221757411957,-0.208772659301758,0.963448166847229,0.1454226821661,-0.224987849593163,0.985706150531769,0.13493449985981,0.100876234471798,0.983834743499756,0.1214679479599,0.13158506155014,0.990966320037842,0.103372938930988,0.0854383409023285,0.985706150531769,0.13493449985981,0.100876234471798,0.990966320037842,0.103372938930988,0.0854383409023285,0.991664469242096,0.103529676795006,0.0766998901963234,0.956243455410004,0.131035283207893,0.261587679386139,0.921910107135773,0.143668547272682,0.35977903008461,0.94500732421875,0.13183881342411,0.299298495054245,0.983834743499756,0.1214679479599,0.13158506155014,0.965072453022003,0.14069975912571,0.220994785428047,0.959013164043427,0.122901737689972,0.255321085453033,0.959013164043427,0.122901737689972,0.255321085453033,0.965072453022003,0.14069975912571,0.220994785428047,0.94500732421875,0.13183881342411,0.299298495054245,\r\n0.431917130947113,0.629780888557434,-0.645618677139282,0.358126550912857,0.552800953388214,-0.752433598041534,0.498168557882309,0.581444084644318,-0.643234550952911,0.272250056266785,0.461064428091049,-0.844570517539978,0.422265231609344,0.531295299530029,-0.734450280666351,0.358126550912857,0.552800953388214,-0.752433598041534,0.506984293460846,0.586879789829254,-0.631299316883087,0.390216082334518,0.668762981891632,-0.632840692996979,0.431917130947113,0.629780888557434,-0.645618677139282,0.272250056266785,0.461064428091049,-0.844570517539978,0.263168454170227,0.419853359460831,-0.868599653244019,0.350853890180588,0.453524857759476,-0.819278120994568,0.333078414201736,0.694071173667908,-0.638219237327576,0.390216082334518,0.668762981891632,-0.632840692996979,0.361677795648575,0.620828151702881,-0.695529580116272,0.340025782585144,0.744259536266327,-0.574856638908386,0.318093597888947,0.785089612007141,-0.531460821628571,0.330519497394562,0.75350946187973,-0.568313419818878,0.330519497394562,0.75350946187973,-0.568313419818878,0.333078414201736,0.694071173667908,-0.638219237327576,0.400894403457642,0.659161508083344,-0.636230766773224,0.48640039563179,0.511705636978149,0.70821738243103,0.441919833421707,0.549427926540375,0.709109008312225,0.53188681602478,0.497823685407639,0.685031235218048,-0.0889745131134987,-0.575870215892792,-0.812684893608093,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.056326150894165,-0.624213576316834,-0.779220521450043,-0.00674148509278893,-0.675062656402588,-0.737729489803314,-0.056326150894165,-0.624213576316834,-0.779220521450043,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.00674148509278893,-0.675062656402588,-0.737729489803314,0.0551909953355789,-0.709768116474152,-0.702269911766052,0.151521489024162,-0.7944375872612,-0.588141143321991,0.375278472900391,-0.878644526004791,-0.295211315155029,0.358888804912567,-0.87672632932663,-0.320233732461929,0.26640260219574,-0.83338850736618,-0.484244853258133,0.375278472900391,-0.878644526004791,-0.295211315155029,0.421492338180542,-0.890414535999298,-0.171773135662079,\r\n0.358888804912567,-0.87672632932663,-0.320233732461929,0.470414221286774,-0.881115078926086,-0.0484413765370846,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.504408538341522,-0.851483464241028,0.143344968557358,0.421492338180542,-0.890414535999298,-0.171773135662079,0.430734753608704,-0.890502274036407,-0.146537154912949,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.0551909953355789,-0.709768116474152,-0.702269911766052,0.0108334235846996,-0.672669410705566,-0.739863753318787,0.158299401402473,-0.770670831203461,-0.617258131504059,0.168632209300995,-0.773483216762543,-0.610972046852112,0.26640260219574,-0.83338850736618,-0.484244853258133,0.158299401402473,-0.770670831203461,-0.617258131504059,0.516676723957062,-0.848812818527222,0.1120800152421,0.504408538341522,-0.851483464241028,0.143344968557358,0.541086792945862,-0.784997701644897,0.3016676902771,0.613923132419586,-0.668326079845428,0.420045733451843,0.628624081611633,-0.575476765632629,0.523123204708099,0.60975843667984,-0.741111874580383,0.280976563692093,0.580039620399475,-0.726921319961548,0.367613077163696,0.613923132419586,-0.668326079845428,0.420045733451843,0.575522184371948,-0.799225807189941,0.173240214586258,0.541086792945862,-0.784997701644897,0.3016676902771,0.580039620399475,-0.726921319961548,0.367613077163696,0.516676723957062,-0.848812818527222,0.1120800152421,0.789060354232788,0.157426699995995,-0.59380167722702,0.602640509605408,0.370403647422791,-0.706841826438904,0.662886917591095,0.205916300415993,-0.719846665859222,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.0671365335583687,0.25837117433548,-0.963710010051727,-0.243397936224937,0.275868088006973,-0.929867804050446,0.604620814323425,0.3550925552845,-0.712981641292572,\r\n0.296846002340317,0.462029159069061,-0.835710108280182,0.339832067489624,0.245699539780617,-0.907824754714966,0.762523412704468,0.209198385477066,-0.612204253673553,0.604620814323425,0.3550925552845,-0.712981641292572,0.641266644001007,0.192435711622238,-0.742795765399933,-0.0104875238612294,0.437247008085251,-0.899280250072479,-0.0671365335583687,0.25837117433548,-0.963710010051727,0.296846002340317,0.462029159069061,-0.835710108280182,0.762523412704468,0.209198385477066,-0.612204253673553,0.681735038757324,0.241245195269585,-0.690679311752319,0.789060354232788,0.157426699995995,-0.59380167722702,0.625092506408691,-0.604773819446564,-0.493465125560761,0.794824421405792,-0.418989628553391,-0.438978016376495,0.575592994689941,-0.413253277540207,-0.705630421638489,-0.139115259051323,-0.403364926576614,-0.904402375221252,-0.134363085031509,-0.216802775859833,-0.966924548149109,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.139115259051323,-0.403364926576614,-0.904402375221252,-0.0873085409402847,-0.603740870952606,-0.792385101318359,0.0340926609933376,-0.221313118934631,-0.97460663318634,0.716789066791534,-0.171117842197418,-0.675967395305634,0.794824421405792,-0.418989628553391,-0.438978016376495,0.915197730064392,-0.146925732493401,-0.375267624855042,0.716789066791534,-0.171117842197418,-0.675967395305634,0.915197730064392,-0.146925732493401,-0.375267624855042,0.779977798461914,0.0397407822310925,-0.624544024467468,0.789060354232788,0.157426699995995,-0.59380167722702,0.662886917591095,0.205916300415993,-0.719846665859222,0.779977798461914,0.0397407822310925,-0.624544024467468,0.815599501132965,0.143775328993797,0.560469388961792,0.829673945903778,0.0656913742423058,0.554369568824768,0.865944743156433,0.138402700424194,0.480608224868774,0.876748085021973,0.153989613056183,0.455631375312805,0.884259343147278,0.133598208427429,0.447478234767914,0.876551508903503,0.130535870790482,0.463268488645554,0.876551508903503,0.130535870790482,0.463268488645554,0.865944743156433,0.138402700424194,0.480608224868774,\r\n0.829673945903778,0.0656913742423058,0.554369568824768,0.883853137493134,0.176929026842117,0.433012276887894,0.891995787620544,0.134424671530724,0.431594043970108,0.876748085021973,0.153989613056183,0.455631375312805,0.891995787620544,0.134424671530724,0.431594043970108,0.883853137493134,0.176929026842117,0.433012276887894,0.921910107135773,0.143668547272682,0.35977903008461,0.815599501132965,0.143775328993797,0.560469388961792,0.763813734054565,0.16469806432724,0.624069690704346,0.818763613700867,0.0587400160729885,0.571117877960205,0.53188681602478,0.497823685407639,0.685031235218048,0.633636176586151,0.412671953439713,0.654375195503235,0.634985685348511,0.489749848842621,0.597442984580994,0.690089762210846,0.190121114253998,0.698305010795593,0.689618289470673,0.250702053308487,0.67939305305481,0.598678052425385,0.278391063213348,0.751054465770721,0.648529171943665,0.334934443235397,0.683541238307953,0.574704945087433,0.335110485553741,0.746602296829224,0.598678052425385,0.278391063213348,0.751054465770721,0.690089762210846,0.190121114253998,0.698305010795593,0.763813734054565,0.16469806432724,0.624069690704346,0.689618289470673,0.250702053308487,0.67939305305481,0.633636176586151,0.412671953439713,0.654375195503235,0.532427906990051,0.387019068002701,0.752819180488586,0.574704945087433,0.335110485553741,0.746602296829224,0.650490522384644,0.268959641456604,-0.710297524929047,0.688427805900574,0.138049885630608,-0.712045788764954,0.577990293502808,0.186815902590752,-0.794371962547302,0.650490522384644,0.268959641456604,-0.710297524929047,0.714156687259674,0.350119084119797,-0.606132566928864,0.745271384716034,0.245044037699699,-0.62009984254837,0.577990293502808,0.186815902590752,-0.794371962547302,0.494153320789337,0.125007286667824,-0.860340416431427,0.519868791103363,0.215344682335854,-0.826657712459564,0.480960696935654,0.181779980659485,-0.857690334320068,0.494153320789337,0.125007286667824,-0.860340416431427,0.490594416856766,0.0646678283810616,-0.868985056877136,0.557179033756256,0.058114442974329,-0.828356266021729,\r\n0.480960696935654,0.181779980659485,-0.857690334320068,0.490594416856766,0.0646678283810616,-0.868985056877136,0.557179033756256,0.058114442974329,-0.828356266021729,0.534732222557068,0.119408138096333,-0.836542248725891,0.537626504898071,0.145928099751472,-0.830459237098694,0.534732222557068,0.119408138096333,-0.836542248725891,0.480789005756378,0.252536445856094,-0.839682757854462,0.42166593670845,0.214249700307846,-0.881075918674469,0.480789005756378,0.252536445856094,-0.839682757854462,0.454425156116486,0.266675531864166,-0.849930465221405,0.42166593670845,0.214249700307846,-0.881075918674469,0.504562020301819,0.257759422063828,-0.824000656604767,0.454425156116486,0.266675531864166,-0.849930465221405,0.475799560546875,0.236193165183067,-0.847247004508972,0.350853890180588,0.453524857759476,-0.819278120994568,0.50848126411438,0.333315879106522,-0.79394406080246,0.470065891742706,0.459650874137878,-0.753497838973999,0.504562020301819,0.257759422063828,-0.824000656604767,0.552212476730347,0.213840544223785,-0.805812299251556,0.50848126411438,0.333315879106522,-0.79394406080246,0.813303589820862,0.153394922614098,-0.561254978179932,0.775867819786072,0.237990275025368,-0.584285497665405,0.822655081748962,0.201511427760124,-0.531631052494049,0.730032742023468,0.332442373037338,-0.597104728221893,0.775867819786072,0.237990275025368,-0.584285497665405,0.745271384716034,0.245044037699699,-0.62009984254837,0.907014191150665,0.0387079268693924,-0.419317126274109,0.91690868139267,0.174721941351891,-0.35881832242012,0.94001030921936,0.0920321121811867,-0.328497648239136,0.907014191150665,0.0387079268693924,-0.419317126274109,0.853865325450897,0.0804380625486374,-0.514240860939026,0.822655081748962,0.201511427760124,-0.531631052494049,0.940793573856354,0.0505802817642689,-0.335184991359711,0.934192717075348,0.0429336838424206,-0.354175865650177,0.923126935958862,0.131743595004082,-0.361220389604568,0.94001030921936,0.0920321121811867,-0.328497648239136,0.923126935958862,0.131743595004082,-0.361220389604568,0.934192717075348,0.0429336838424206,-0.354175865650177,\r\n0.940793573856354,0.0505802817642689,-0.335184991359711,0.977004110813141,0.0433221757411957,-0.208772659301758,0.967718005180359,-0.0434991233050823,-0.248253256082535,0.994125664234161,0.0802571251988411,0.0726129114627838,0.997222781181335,0.0733383446931839,0.0129663683474064,0.991664469242096,0.103529676795006,0.0766998901963234,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.997222781181335,0.0733383446931839,0.0129663683474064,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.991080701351166,0.00263776117935777,-0.133235797286034,0.995624542236328,0.0464732348918915,-0.0810676291584969,0.989362061023712,0.0426139757037163,-0.139092117547989,0.991080701351166,0.00263776117935777,-0.133235797286034,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.989362061023712,0.0426139757037163,-0.139092117547989,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.977004110813141,0.0433221757411957,-0.208772659301758,0.992608487606049,0.0984156802296638,0.0710115134716034,0.990966320037842,0.103372938930988,0.0854383409023285,0.983834743499756,0.1214679479599,0.13158506155014,0.991664469242096,0.103529676795006,0.0766998901963234,0.990966320037842,0.103372938930988,0.0854383409023285,0.993747174739838,0.0890400856733322,0.0673668086528778,0.921910107135773,0.143668547272682,0.35977903008461,0.959013164043427,0.122901737689972,0.255321085453033,0.94500732421875,0.13183881342411,0.299298495054245,0.986563086509705,0.0994118005037308,0.129655301570892,0.983834743499756,0.1214679479599,0.13158506155014,0.959013164043427,0.122901737689972,0.255321085453033,0.422265231609344,0.531295299530029,-0.734450280666351,0.498168557882309,0.581444084644318,-0.643234550952911,0.358126550912857,0.552800953388214,-0.752433598041534,0.431917130947113,0.629780888557434,-0.645618677139282,0.498168557882309,0.581444084644318,-0.643234550952911,0.506984293460846,0.586879789829254,-0.631299316883087,0.422265231609344,0.531295299530029,-0.734450280666351,0.272250056266785,0.461064428091049,-0.844570517539978,\r\n0.382911056280136,0.531540989875793,-0.755541622638702,0.381255835294724,0.598781168460846,-0.704347193241119,0.390216082334518,0.668762981891632,-0.632840692996979,0.506984293460846,0.586879789829254,-0.631299316883087,0.382911056280136,0.531540989875793,-0.755541622638702,0.272250056266785,0.461064428091049,-0.844570517539978,0.350853890180588,0.453524857759476,-0.819278120994568,0.361677795648575,0.620828151702881,-0.695529580116272,0.390216082334518,0.668762981891632,-0.632840692996979,0.381255835294724,0.598781168460846,-0.704347193241119,0.361677795648575,0.620828151702881,-0.695529580116272,0.400894403457642,0.659161508083344,-0.636230766773224,0.333078414201736,0.694071173667908,-0.638219237327576,0.340025782585144,0.744259536266327,-0.574856638908386,0.330519497394562,0.75350946187973,-0.568313419818878,0.400894403457642,0.659161508083344,-0.636230766773224,0.53188681602478,0.497823685407639,0.685031235218048,0.441919833421707,0.549427926540375,0.709109008312225,0.429103314876556,0.498154431581497,0.753466904163361,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.056326150894165,-0.624213576316834,-0.779220521450043,-0.14695331454277,-0.487882852554321,-0.860450387001038,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.056326150894165,-0.624213576316834,-0.779220521450043,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.0813948139548302,-0.606748223304749,-0.79071569442749,-0.00674148509278893,-0.675062656402588,-0.737729489803314,-0.00674148509278893,-0.675062656402588,-0.737729489803314,-0.0813948139548302,-0.606748223304749,-0.79071569442749,0.0551909953355789,-0.709768116474152,-0.702269911766052,0.305507659912109,-0.860273361206055,-0.408160150051117,0.375278472900391,-0.878644526004791,-0.295211315155029,0.26640260219574,-0.83338850736618,-0.484244853258133,0.430734753608704,-0.890502274036407,-0.146537154912949,0.421492338180542,-0.890414535999298,-0.171773135662079,0.375278472900391,-0.878644526004791,-0.295211315155029,\r\n0.0551909953355789,-0.709768116474152,-0.702269911766052,-0.0813948139548302,-0.606748223304749,-0.79071569442749,0.0108334235846996,-0.672669410705566,-0.739863753318787,0.158299401402473,-0.770670831203461,-0.617258131504059,0.0108334235846996,-0.672669410705566,-0.739863753318787,0.0481794439256191,-0.703149437904358,-0.709407806396484,0.168632209300995,-0.773483216762543,-0.610972046852112,0.20514203608036,-0.799168169498444,-0.565019309520721,0.26640260219574,-0.83338850736618,-0.484244853258133,0.158299401402473,-0.770670831203461,-0.617258131504059,0.0481794439256191,-0.703149437904358,-0.709407806396484,0.168632209300995,-0.773483216762543,-0.610972046852112,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.244907066226006,-0.41137021780014,-0.877949297428131,-0.0104875238612294,0.437247008085251,-0.899280250072479,-0.243397936224937,0.275868088006973,-0.929867804050446,-0.0671365335583687,0.25837117433548,-0.963710010051727,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.243397936224937,0.275868088006973,-0.929867804050446,-0.370775729417801,0.254168808460236,-0.893265604972839,0.55875027179718,0.517857015132904,-0.647782385349274,0.296846002340317,0.462029159069061,-0.835710108280182,0.604620814323425,0.3550925552845,-0.712981641292572,0.762523412704468,0.209198385477066,-0.612204253673553,0.819125831127167,0.362674564123154,-0.444409608840942,0.604620814323425,0.3550925552845,-0.712981641292572,0.358153164386749,0.538454413414001,-0.762753546237946,-0.0104875238612294,0.437247008085251,-0.899280250072479,0.296846002340317,0.462029159069061,-0.835710108280182,0.762523412704468,0.209198385477066,-0.612204253673553,0.789060354232788,0.157426699995995,-0.59380167722702,0.864535331726074,0.164899989962578,-0.474748998880386,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.139115259051323,-0.403364926576614,-0.904402375221252,-0.229749068617821,-0.540937960147858,-0.809074461460114,0.779977798461914,0.0397407822310925,-0.624544024467468,\r\n0.915197730064392,-0.146925732493401,-0.375267624855042,0.890632331371307,0.0630152896046638,-0.450336635112762,0.779977798461914,0.0397407822310925,-0.624544024467468,0.890632331371307,0.0630152896046638,-0.450336635112762,0.789060354232788,0.157426699995995,-0.59380167722702,0.818763613700867,0.0587400160729885,0.571117877960205,0.829673945903778,0.0656913742423058,0.554369568824768,0.815599501132965,0.143775328993797,0.560469388961792,0.876551508903503,0.130535870790482,0.463268488645554,0.860252141952515,0.0997577309608459,0.50001460313797,0.876748085021973,0.153989613056183,0.455631375312805,0.829673945903778,0.0656913742423058,0.554369568824768,0.860252141952515,0.0997577309608459,0.50001460313797,0.876551508903503,0.130535870790482,0.463268488645554,0.892123937606812,0.132717460393906,0.431857407093048,0.883853137493134,0.176929026842117,0.433012276887894,0.876748085021973,0.153989613056183,0.455631375312805,0.883853137493134,0.176929026842117,0.433012276887894,0.892123937606812,0.132717460393906,0.431857407093048,0.921910107135773,0.143668547272682,0.35977903008461,0.818763613700867,0.0587400160729885,0.571117877960205,0.763813734054565,0.16469806432724,0.624069690704346,0.779873669147491,0.062750481069088,0.622783482074738,0.633636176586151,0.412671953439713,0.654375195503235,0.53188681602478,0.497823685407639,0.685031235218048,0.532427906990051,0.387019068002701,0.752819180488586,0.690089762210846,0.190121114253998,0.698305010795593,0.598678052425385,0.278391063213348,0.751054465770721,0.547422468662262,0.252215713262558,0.797944664955139,0.574704945087433,0.335110485553741,0.746602296829224,0.534066021442413,0.283346205949783,0.796547710895538,0.598678052425385,0.278391063213348,0.751054465770721,0.779873669147491,0.062750481069088,0.622783482074738,0.763813734054565,0.16469806432724,0.624069690704346,0.690089762210846,0.190121114253998,0.698305010795593,0.532427906990051,0.387019068002701,0.752819180488586,0.455138683319092,0.373388975858688,0.80834972858429,0.574704945087433,0.335110485553741,0.746602296829224,\r\n0.650490522384644,0.268959641456604,-0.710297524929047,0.745271384716034,0.245044037699699,-0.62009984254837,0.688427805900574,0.138049885630608,-0.712045788764954,0.581111192703247,0.115502871572971,-0.805585920810699,0.577990293502808,0.186815902590752,-0.794371962547302,0.688427805900574,0.138049885630608,-0.712045788764954,0.494153320789337,0.125007286667824,-0.860340416431427,0.577990293502808,0.186815902590752,-0.794371962547302,0.515605926513672,0.124178439378738,-0.847779512405396,0.494153320789337,0.125007286667824,-0.860340416431427,0.473369628190994,0.0215946063399315,-0.880599141120911,0.490594416856766,0.0646678283810616,-0.868985056877136,0.490594416856766,0.0646678283810616,-0.868985056877136,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.557179033756256,0.058114442974329,-0.828356266021729,0.557179033756256,0.058114442974329,-0.828356266021729,0.591919362545013,0.0479413717985153,-0.804570019245148,0.534732222557068,0.119408138096333,-0.836542248725891,0.573262453079224,0.177994653582573,-0.799804925918579,0.480789005756378,0.252536445856094,-0.839682757854462,0.534732222557068,0.119408138096333,-0.836542248725891,0.480789005756378,0.252536445856094,-0.839682757854462,0.475799560546875,0.236193165183067,-0.847247004508972,0.454425156116486,0.266675531864166,-0.849930465221405,0.485797971487045,0.126404881477356,-0.86488264799118,0.504562020301819,0.257759422063828,-0.824000656604767,0.475799560546875,0.236193165183067,-0.847247004508972,0.50848126411438,0.333315879106522,-0.79394406080246,0.561587572097778,0.355489760637283,-0.747158885002136,0.470065891742706,0.459650874137878,-0.753497838973999,0.382911056280136,0.531540989875793,-0.755541622638702,0.350853890180588,0.453524857759476,-0.819278120994568,0.470065891742706,0.459650874137878,-0.753497838973999,0.504562020301819,0.257759422063828,-0.824000656604767,0.485797971487045,0.126404881477356,-0.86488264799118,0.552212476730347,0.213840544223785,-0.805812299251556,0.50848126411438,0.333315879106522,-0.79394406080246,0.552212476730347,0.213840544223785,-0.805812299251556,\r\n0.561587572097778,0.355489760637283,-0.747158885002136,0.813303589820862,0.153394922614098,-0.561254978179932,0.787406146526337,0.154990419745445,-0.596631646156311,0.775867819786072,0.237990275025368,-0.584285497665405,0.813303589820862,0.153394922614098,-0.561254978179932,0.822655081748962,0.201511427760124,-0.531631052494049,0.853865325450897,0.0804380625486374,-0.514240860939026,0.787406146526337,0.154990419745445,-0.596631646156311,0.745271384716034,0.245044037699699,-0.62009984254837,0.775867819786072,0.237990275025368,-0.584285497665405,0.907014191150665,0.0387079268693924,-0.419317126274109,0.94001030921936,0.0920321121811867,-0.328497648239136,0.934192717075348,0.0429336838424206,-0.354175865650177,0.907014191150665,0.0387079268693924,-0.419317126274109,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.853865325450897,0.0804380625486374,-0.514240860939026,0.940793573856354,0.0505802817642689,-0.335184991359711,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.934192717075348,0.0429336838424206,-0.354175865650177,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.967718005180359,-0.0434991233050823,-0.248253256082535,0.977004110813141,0.0433221757411957,-0.208772659301758,0.971104085445404,-0.102035410702229,-0.215744152665138,0.940793573856354,0.0505802817642689,-0.335184991359711,0.967718005180359,-0.0434991233050823,-0.248253256082535,0.997222781181335,0.0733383446931839,0.0129663683474064,0.994125664234161,0.0802571251988411,0.0726129114627838,0.99464213848114,0.0858009904623032,0.0576634742319584,0.991664469242096,0.103529676795006,0.0766998901963234,0.993747174739838,0.0890400856733322,0.0673668086528778,0.994125664234161,0.0802571251988411,0.0726129114627838,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.997222781181335,0.0733383446931839,0.0129663683474064,0.991080701351166,0.00263776117935777,-0.133235797286034,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.98100221157074,0.0559866800904274,-0.185741990804672,\r\n0.979127049446106,-0.0673134922981262,-0.191778719425201,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.991080701351166,0.00263776117935777,-0.133235797286034,0.992608487606049,0.0984156802296638,0.0710115134716034,0.993747174739838,0.0890400856733322,0.0673668086528778,0.990966320037842,0.103372938930988,0.0854383409023285,0.983834743499756,0.1214679479599,0.13158506155014,0.986563086509705,0.0994118005037308,0.129655301570892,0.992608487606049,0.0984156802296638,0.0710115134716034,0.926792621612549,0.130023613572121,0.352348238229752,0.959013164043427,0.122901737689972,0.255321085453033,0.921910107135773,0.143668547272682,0.35977903008461,0.986563086509705,0.0994118005037308,0.129655301570892,0.959013164043427,0.122901737689972,0.255321085453033,0.960697293281555,0.0575704798102379,0.271562159061432,0.422265231609344,0.531295299530029,-0.734450280666351,0.504660964012146,0.56217497587204,-0.655191898345947,0.498168557882309,0.581444084644318,-0.643234550952911,0.504660964012146,0.56217497587204,-0.655191898345947,0.506984293460846,0.586879789829254,-0.631299316883087,0.498168557882309,0.581444084644318,-0.643234550952911,0.422265231609344,0.531295299530029,-0.734450280666351,0.382911056280136,0.531540989875793,-0.755541622638702,0.504660964012146,0.56217497587204,-0.655191898345947,0.417249441146851,0.522487699985504,-0.743578732013702,0.381255835294724,0.598781168460846,-0.704347193241119,0.506984293460846,0.586879789829254,-0.631299316883087,0.361677795648575,0.620828151702881,-0.695529580116272,0.381255835294724,0.598781168460846,-0.704347193241119,0.356160253286362,0.510192036628723,-0.782849848270416,0.361677795648575,0.620828151702881,-0.695529580116272,0.428675949573517,0.550652027130127,-0.716253519058228,0.400894403457642,0.659161508083344,-0.636230766773224,0.400894403457642,0.659161508083344,-0.636230766773224,0.367902219295502,0.592130362987518,-0.716958463191986,0.340025782585144,0.744259536266327,-0.574856638908386,0.53188681602478,0.497823685407639,0.685031235218048,0.429103314876556,0.498154431581497,0.753466904163361,\r\n0.427891552448273,0.414320558309555,0.803272783756256,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.0813948139548302,-0.606748223304749,-0.79071569442749,0.358274102210999,-0.902628362178802,-0.238540574908257,0.375278472900391,-0.878644526004791,-0.295211315155029,0.305507659912109,-0.860273361206055,-0.408160150051117,0.305507659912109,-0.860273361206055,-0.408160150051117,0.26640260219574,-0.83338850736618,-0.484244853258133,0.20514203608036,-0.799168169498444,-0.565019309520721,0.375278472900391,-0.878644526004791,-0.295211315155029,0.358274102210999,-0.902628362178802,-0.238540574908257,0.430734753608704,-0.890502274036407,-0.146537154912949,-0.0971041843295097,-0.592953503131866,-0.79936021566391,0.0108334235846996,-0.672669410705566,-0.739863753318787,-0.0813948139548302,-0.606748223304749,-0.79071569442749,0.0481794439256191,-0.703149437904358,-0.709407806396484,0.0108334235846996,-0.672669410705566,-0.739863753318787,-0.0971041843295097,-0.592953503131866,-0.79936021566391,0.168632209300995,-0.773483216762543,-0.610972046852112,0.109589278697968,-0.739635765552521,-0.664024889469147,0.20514203608036,-0.799168169498444,-0.565019309520721,0.0481794439256191,-0.703149437904358,-0.709407806396484,0.109589278697968,-0.739635765552521,-0.664024889469147,0.168632209300995,-0.773483216762543,-0.610972046852112,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.222494021058083,-0.48225525021553,-0.847305238246918,-0.0104875238612294,0.437247008085251,-0.899280250072479,-0.248878836631775,0.361877858638763,-0.898389458656311,-0.243397936224937,0.275868088006973,-0.929867804050446,-0.248878836631775,0.361877858638763,-0.898389458656311,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.243397936224937,0.275868088006973,-0.929867804050446,\r\n0.55875027179718,0.517857015132904,-0.647782385349274,0.487281411886215,0.536333978176117,-0.689131796360016,0.296846002340317,0.462029159069061,-0.835710108280182,0.55875027179718,0.517857015132904,-0.647782385349274,0.604620814323425,0.3550925552845,-0.712981641292572,0.819125831127167,0.362674564123154,-0.444409608840942,0.864535331726074,0.164899989962578,-0.474748998880386,0.819125831127167,0.362674564123154,-0.444409608840942,0.762523412704468,0.209198385477066,-0.612204253673553,-0.0104875238612294,0.437247008085251,-0.899280250072479,0.358153164386749,0.538454413414001,-0.762753546237946,0.0803697183728218,0.608264863491058,-0.789654612541199,0.358153164386749,0.538454413414001,-0.762753546237946,0.296846002340317,0.462029159069061,-0.835710108280182,0.487281411886215,0.536333978176117,-0.689131796360016,0.890632331371307,0.0630152896046638,-0.450336635112762,0.864535331726074,0.164899989962578,-0.474748998880386,0.789060354232788,0.157426699995995,-0.59380167722702,0.890632331371307,0.0630152896046638,-0.450336635112762,0.915197730064392,-0.146925732493401,-0.375267624855042,0.977198898792267,-0.0325850620865822,-0.209810361266136,0.818763613700867,0.0587400160729885,0.571117877960205,0.824878990650177,-0.0212418213486671,0.564909994602203,0.829673945903778,0.0656913742423058,0.554369568824768,0.880931437015533,0.0741616263985634,0.467396765947342,0.876748085021973,0.153989613056183,0.455631375312805,0.860252141952515,0.0997577309608459,0.50001460313797,0.829673945903778,0.0656913742423058,0.554369568824768,0.793546915054321,0.0732712894678116,0.604081571102142,0.860252141952515,0.0997577309608459,0.50001460313797,0.876748085021973,0.153989613056183,0.455631375312805,0.880931437015533,0.0741616263985634,0.467396765947342,0.892123937606812,0.132717460393906,0.431857407093048,0.921910107135773,0.143668547272682,0.35977903008461,0.892123937606812,0.132717460393906,0.431857407093048,0.926792621612549,0.130023613572121,0.352348238229752,0.779873669147491,0.062750481069088,0.622783482074738,0.819366753101349,-0.0297588370740414,0.572496652603149,\r\n0.818763613700867,0.0587400160729885,0.571117877960205,0.53188681602478,0.497823685407639,0.685031235218048,0.427891552448273,0.414320558309555,0.803272783756256,0.532427906990051,0.387019068002701,0.752819180488586,0.547422468662262,0.252215713262558,0.797944664955139,0.598678052425385,0.278391063213348,0.751054465770721,0.539537906646729,0.253582417964935,0.802866518497467,0.582623243331909,0.140161111950874,0.800565302371979,0.690089762210846,0.190121114253998,0.698305010795593,0.547422468662262,0.252215713262558,0.797944664955139,0.455138683319092,0.373388975858688,0.80834972858429,0.534066021442413,0.283346205949783,0.796547710895538,0.574704945087433,0.335110485553741,0.746602296829224,0.598678052425385,0.278391063213348,0.751054465770721,0.534066021442413,0.283346205949783,0.796547710895538,0.539537906646729,0.253582417964935,0.802866518497467,0.711164474487305,0.0377239063382149,0.702012658119202,0.779873669147491,0.062750481069088,0.622783482074738,0.690089762210846,0.190121114253998,0.698305010795593,0.455138683319092,0.373388975858688,0.80834972858429,0.532427906990051,0.387019068002701,0.752819180488586,0.427891552448273,0.414320558309555,0.803272783756256,0.745271384716034,0.245044037699699,-0.62009984254837,0.787406146526337,0.154990419745445,-0.596631646156311,0.688427805900574,0.138049885630608,-0.712045788764954,0.581111192703247,0.115502871572971,-0.805585920810699,0.515605926513672,0.124178439378738,-0.847779512405396,0.577990293502808,0.186815902590752,-0.794371962547302,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.581111192703247,0.115502871572971,-0.805585920810699,0.688427805900574,0.138049885630608,-0.712045788764954,0.494153320789337,0.125007286667824,-0.860340416431427,0.515605926513672,0.124178439378738,-0.847779512405396,0.473369628190994,0.0215946063399315,-0.880599141120911,0.490594416856766,0.0646678283810616,-0.868985056877136,0.473369628190994,0.0215946063399315,-0.880599141120911,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.597113132476807,0.00542105128988624,-0.80213862657547,\r\n0.557179033756256,0.058114442974329,-0.828356266021729,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.597113132476807,0.00542105128988624,-0.80213862657547,0.591919362545013,0.0479413717985153,-0.804570019245148,0.557179033756256,0.058114442974329,-0.828356266021729,0.591919362545013,0.0479413717985153,-0.804570019245148,0.632226586341858,0.11749354749918,-0.765822887420654,0.534732222557068,0.119408138096333,-0.836542248725891,0.512739717960358,0.19626721739769,-0.835809230804443,0.480789005756378,0.252536445856094,-0.839682757854462,0.573262453079224,0.177994653582573,-0.799804925918579,0.573262453079224,0.177994653582573,-0.799804925918579,0.534732222557068,0.119408138096333,-0.836542248725891,0.632226586341858,0.11749354749918,-0.765822887420654,0.475799560546875,0.236193165183067,-0.847247004508972,0.480789005756378,0.252536445856094,-0.839682757854462,0.512739717960358,0.19626721739769,-0.835809230804443,0.475799560546875,0.236193165183067,-0.847247004508972,0.473250657320023,0.0730120167136192,-0.877896904945374,0.485797971487045,0.126404881477356,-0.86488264799118,0.470065891742706,0.459650874137878,-0.753497838973999,0.561587572097778,0.355489760637283,-0.747158885002136,0.523207783699036,0.485992342233658,-0.700046360492706,0.382911056280136,0.531540989875793,-0.755541622638702,0.470065891742706,0.459650874137878,-0.753497838973999,0.523207783699036,0.485992342233658,-0.700046360492706,0.485797971487045,0.126404881477356,-0.86488264799118,0.492007702589035,0.0884381383657455,-0.866087138652802,0.552212476730347,0.213840544223785,-0.805812299251556,0.54923403263092,0.199836477637291,-0.811422944068909,0.561587572097778,0.355489760637283,-0.747158885002136,0.552212476730347,0.213840544223785,-0.805812299251556,0.813303589820862,0.153394922614098,-0.561254978179932,0.843974828720093,0.0490944646298885,-0.534130930900574,0.787406146526337,0.154990419745445,-0.596631646156311,0.853865325450897,0.0804380625486374,-0.514240860939026,0.843974828720093,0.0490944646298885,-0.534130930900574,0.813303589820862,0.153394922614098,-0.561254978179932,\r\n0.907014191150665,0.0387079268693924,-0.419317126274109,0.934192717075348,0.0429336838424206,-0.354175865650177,0.931298315525055,-0.0300312526524067,-0.363017141819,0.907014191150665,0.0387079268693924,-0.419317126274109,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.843974828720093,0.0490944646298885,-0.534130930900574,0.853865325450897,0.0804380625486374,-0.514240860939026,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.971104085445404,-0.102035410702229,-0.215744152665138,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.940793573856354,0.0505802817642689,-0.335184991359711,0.931298315525055,-0.0300312526524067,-0.363017141819,0.934192717075348,0.0429336838424206,-0.354175865650177,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.971104085445404,-0.102035410702229,-0.215744152665138,0.967718005180359,-0.0434991233050823,-0.248253256082535,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.99464213848114,0.0858009904623032,0.0576634742319584,0.994125664234161,0.0802571251988411,0.0726129114627838,0.993747174739838,0.0890400856733322,0.0673668086528778,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.997222781181335,0.0733383446931839,0.0129663683474064,0.99464213848114,0.0858009904623032,0.0576634742319584,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.987943887710571,0.0594909600913525,-0.142925009131432,0.98100221157074,0.0559866800904274,-0.185741990804672,0.98100221157074,0.0559866800904274,-0.185741990804672,0.979127049446106,-0.0673134922981262,-0.191778719425201,0.991080701351166,0.00263776117935777,-0.133235797286034,0.971104085445404,-0.102035410702229,-0.215744152665138,0.984001815319061,-0.0558550469577312,-0.169176310300827,0.979127049446106,-0.0673134922981262,-0.191778719425201,0.99464213848114,0.0858009904623032,0.0576634742319584,\r\n0.993747174739838,0.0890400856733322,0.0673668086528778,0.992608487606049,0.0984156802296638,0.0710115134716034,0.992608487606049,0.0984156802296638,0.0710115134716034,0.986563086509705,0.0994118005037308,0.129655301570892,0.994979023933411,0.0820356979966164,0.0573306493461132,0.959013164043427,0.122901737689972,0.255321085453033,0.926792621612549,0.130023613572121,0.352348238229752,0.949562668800354,0.0781925395131111,0.303671717643738,0.960697293281555,0.0575704798102379,0.271562159061432,0.959013164043427,0.122901737689972,0.255321085453033,0.949562668800354,0.0781925395131111,0.303671717643738,0.960697293281555,0.0575704798102379,0.271562159061432,0.978698790073395,0.0698570162057877,0.193050786852837,0.986563086509705,0.0994118005037308,0.129655301570892,0.506984293460846,0.586879789829254,-0.631299316883087,0.504660964012146,0.56217497587204,-0.655191898345947,0.526448786258698,0.483851701021194,-0.699098765850067,0.382911056280136,0.531540989875793,-0.755541622638702,0.523207783699036,0.485992342233658,-0.700046360492706,0.504660964012146,0.56217497587204,-0.655191898345947,0.417249441146851,0.522487699985504,-0.743578732013702,0.356160253286362,0.510192036628723,-0.782849848270416,0.381255835294724,0.598781168460846,-0.704347193241119,0.526448786258698,0.483851701021194,-0.699098765850067,0.417249441146851,0.522487699985504,-0.743578732013702,0.506984293460846,0.586879789829254,-0.631299316883087,0.361677795648575,0.620828151702881,-0.695529580116272,0.356160253286362,0.510192036628723,-0.782849848270416,0.428675949573517,0.550652027130127,-0.716253519058228,0.428675949573517,0.550652027130127,-0.716253519058228,0.367902219295502,0.592130362987518,-0.716958463191986,0.400894403457642,0.659161508083344,-0.636230766773224,0.429103314876556,0.498154431581497,0.753466904163361,0.461232125759125,0.418584406375885,0.782337427139282,0.427891552448273,0.414320558309555,0.803272783756256,-0.16542686522007,-0.543631672859192,-0.822859942913055,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.207031965255737,-0.494574069976807,-0.844117343425751,\r\n-0.0971041843295097,-0.592953503131866,-0.79936021566391,-0.0813948139548302,-0.606748223304749,-0.79071569442749,-0.207031965255737,-0.494574069976807,-0.844117343425751,0.358274102210999,-0.902628362178802,-0.238540574908257,0.305507659912109,-0.860273361206055,-0.408160150051117,0.310987025499344,-0.878971934318542,-0.361518085002899,0.234301656484604,-0.826753735542297,-0.511449694633484,0.305507659912109,-0.860273361206055,-0.408160150051117,0.20514203608036,-0.799168169498444,-0.565019309520721,0.00230991607531905,-0.663799524307251,-0.747906804084778,0.0481794439256191,-0.703149437904358,-0.709407806396484,-0.0971041843295097,-0.592953503131866,-0.79936021566391,0.109589278697968,-0.739635765552521,-0.664024889469147,0.141081020236015,-0.762275993824005,-0.631689250469208,0.20514203608036,-0.799168169498444,-0.565019309520721,0.00230991607531905,-0.663799524307251,-0.747906804084778,0.109589278697968,-0.739635765552521,-0.664024889469147,0.0481794439256191,-0.703149437904358,-0.709407806396484,-0.0104875238612294,0.437247008085251,-0.899280250072479,-0.161872610449791,0.455040544271469,-0.87563419342041,-0.248878836631775,0.361877858638763,-0.898389458656311,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.248878836631775,0.361877858638763,-0.898389458656311,0.55875027179718,0.517857015132904,-0.647782385349274,0.710056066513062,0.515734851360321,-0.479413986206055,0.487281411886215,0.536333978176117,-0.689131796360016,0.819125831127167,0.362674564123154,-0.444409608840942,0.710056066513062,0.515734851360321,-0.479413986206055,0.55875027179718,0.517857015132904,-0.647782385349274,0.958265602588654,0.13981930911541,-0.249354094266891,0.819125831127167,0.362674564123154,-0.444409608840942,0.864535331726074,0.164899989962578,-0.474748998880386,0.388638734817505,0.687623679637909,-0.613297164440155,0.0803697183728218,0.608264863491058,-0.789654612541199,0.358153164386749,0.538454413414001,-0.762753546237946,-0.0104875238612294,0.437247008085251,-0.899280250072479,\r\n0.0803697183728218,0.608264863491058,-0.789654612541199,-0.161872610449791,0.455040544271469,-0.87563419342041,0.358153164386749,0.538454413414001,-0.762753546237946,0.487281411886215,0.536333978176117,-0.689131796360016,0.638254046440125,0.559140503406525,-0.529144108295441,0.890632331371307,0.0630152896046638,-0.450336635112762,0.958265602588654,0.13981930911541,-0.249354094266891,0.864535331726074,0.164899989962578,-0.474748998880386,0.958265602588654,0.13981930911541,-0.249354094266891,0.890632331371307,0.0630152896046638,-0.450336635112762,0.977198898792267,-0.0325850620865822,-0.209810361266136,0.819366753101349,-0.0297588370740414,0.572496652603149,0.824878990650177,-0.0212418213486671,0.564909994602203,0.818763613700867,0.0587400160729885,0.571117877960205,0.824878990650177,-0.0212418213486671,0.564909994602203,0.776550829410553,0.0178721006959677,0.629800856113434,0.829673945903778,0.0656913742423058,0.554369568824768,0.860252141952515,0.0997577309608459,0.50001460313797,0.889370262622833,0.0338788852095604,0.455930471420288,0.880931437015533,0.0741616263985634,0.467396765947342,0.793546915054321,0.0732712894678116,0.604081571102142,0.829673945903778,0.0656913742423058,0.554369568824768,0.776550829410553,0.0178721006959677,0.629800856113434,0.840847790241241,0.0312302578240633,0.540369808673859,0.860252141952515,0.0997577309608459,0.50001460313797,0.793546915054321,0.0732712894678116,0.604081571102142,0.884613394737244,0.034201443195343,0.465069115161896,0.892123937606812,0.132717460393906,0.431857407093048,0.880931437015533,0.0741616263985634,0.467396765947342,0.92533540725708,0.0322638303041458,0.377774178981781,0.926792621612549,0.130023613572121,0.352348238229752,0.892123937606812,0.132717460393906,0.431857407093048,0.781428933143616,-0.0456612184643745,0.62232118844986,0.819366753101349,-0.0297588370740414,0.572496652603149,0.779873669147491,0.062750481069088,0.622783482074738,0.547422468662262,0.252215713262558,0.797944664955139,0.539537906646729,0.253582417964935,0.802866518497467,0.484941780567169,0.175580218434334,0.85673975944519,\r\n0.582623243331909,0.140161111950874,0.800565302371979,0.711164474487305,0.0377239063382149,0.702012658119202,0.690089762210846,0.190121114253998,0.698305010795593,0.582623243331909,0.140161111950874,0.800565302371979,0.547422468662262,0.252215713262558,0.797944664955139,0.416627138853073,0.152797341346741,0.896144330501556,0.535246551036835,0.327803701162338,0.778495788574219,0.534066021442413,0.283346205949783,0.796547710895538,0.455138683319092,0.373388975858688,0.80834972858429,0.539537906646729,0.253582417964935,0.802866518497467,0.534066021442413,0.283346205949783,0.796547710895538,0.528396844863892,0.199498981237412,0.825225293636322,0.711164474487305,0.0377239063382149,0.702012658119202,0.781428933143616,-0.0456612184643745,0.62232118844986,0.779873669147491,0.062750481069088,0.622783482074738,0.427891552448273,0.414320558309555,0.803272783756256,0.461232125759125,0.418584406375885,0.782337427139282,0.455138683319092,0.373388975858688,0.80834972858429,0.770876824855804,0.0467582494020462,-0.635265648365021,0.688427805900574,0.138049885630608,-0.712045788764954,0.787406146526337,0.154990419745445,-0.596631646156311,0.515605926513672,0.124178439378738,-0.847779512405396,0.581111192703247,0.115502871572971,-0.805585920810699,0.486023157835007,0.0746106877923012,-0.870755195617676,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.486023157835007,0.0746106877923012,-0.870755195617676,0.581111192703247,0.115502871572971,-0.805585920810699,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.688427805900574,0.138049885630608,-0.712045788764954,0.770876824855804,0.0467582494020462,-0.635265648365021,0.409531861543655,0.0557789765298367,-0.910588920116425,0.473369628190994,0.0215946063399315,-0.880599141120911,0.515605926513672,0.124178439378738,-0.847779512405396,0.473369628190994,0.0215946063399315,-0.880599141120911,0.475906997919083,0.0214995536953211,-0.87923276424408,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.597113132476807,0.00542105128988624,-0.80213862657547,0.536770164966583,-0.0166747085750103,-0.843563616275787,\r\n0.636208057403564,0.0471470169723034,-0.770075500011444,0.591919362545013,0.0479413717985153,-0.804570019245148,0.597113132476807,0.00542105128988624,-0.80213862657547,0.651559829711914,0.054255586117506,-0.756654441356659,0.651559829711914,0.054255586117506,-0.756654441356659,0.632226586341858,0.11749354749918,-0.765822887420654,0.591919362545013,0.0479413717985153,-0.804570019245148,0.512739717960358,0.19626721739769,-0.835809230804443,0.573262453079224,0.177994653582573,-0.799804925918579,0.549071431159973,0.11498611420393,-0.827827632427216,0.632226586341858,0.11749354749918,-0.765822887420654,0.621554553508759,0.143720075488091,-0.770074248313904,0.573262453079224,0.177994653582573,-0.799804925918579,0.475799560546875,0.236193165183067,-0.847247004508972,0.512739717960358,0.19626721739769,-0.835809230804443,0.473250657320023,0.0730120167136192,-0.877896904945374,0.458113223314285,0.0385177098214626,-0.88805890083313,0.485797971487045,0.126404881477356,-0.86488264799118,0.473250657320023,0.0730120167136192,-0.877896904945374,0.53342193365097,0.3896404504776,-0.750760436058044,0.523207783699036,0.485992342233658,-0.700046360492706,0.561587572097778,0.355489760637283,-0.747158885002136,0.437327206134796,0.0349518209695816,-0.898622930049896,0.492007702589035,0.0884381383657455,-0.866087138652802,0.485797971487045,0.126404881477356,-0.86488264799118,0.492007702589035,0.0884381383657455,-0.866087138652802,0.503515183925629,0.106144569814205,-0.857441306114197,0.552212476730347,0.213840544223785,-0.805812299251556,0.561587572097778,0.355489760637283,-0.747158885002136,0.54923403263092,0.199836477637291,-0.811422944068909,0.53342193365097,0.3896404504776,-0.750760436058044,0.54923403263092,0.199836477637291,-0.811422944068909,0.552212476730347,0.213840544223785,-0.805812299251556,0.503515183925629,0.106144569814205,-0.857441306114197,0.770876824855804,0.0467582494020462,-0.635265648365021,0.787406146526337,0.154990419745445,-0.596631646156311,0.843974828720093,0.0490944646298885,-0.534130930900574,0.912398934364319,-0.0819554850459099,-0.401012659072876,\r\n0.907014191150665,0.0387079268693924,-0.419317126274109,0.931298315525055,-0.0300312526524067,-0.363017141819,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.843974828720093,0.0490944646298885,-0.534130930900574,0.889235496520996,-0.00250716507434845,-0.457442790269852,0.976642251014709,-0.047733835875988,-0.209502711892128,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.971104085445404,-0.102035410702229,-0.215744152665138,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.931298315525055,-0.0300312526524067,-0.363017141819,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.99464213848114,0.0858009904623032,0.0576634742319584,0.999041378498077,0.0435862205922604,0.00405724579468369,0.998121857643127,0.0612327866256237,-0.00180621643085033,0.999041378498077,0.0435862205922604,0.00405724579468369,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.987943887710571,0.0594909600913525,-0.142925009131432,0.993707478046417,0.0627475306391716,-0.0927802845835686,0.966534972190857,0.105368159711361,-0.233896598219872,0.98100221157074,0.0559866800904274,-0.185741990804672,0.987943887710571,0.0594909600913525,-0.142925009131432,0.98100221157074,0.0559866800904274,-0.185741990804672,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.979127049446106,-0.0673134922981262,-0.191778719425201,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.971104085445404,-0.102035410702229,-0.215744152665138,0.979127049446106,-0.0673134922981262,-0.191778719425201,0.99464213848114,0.0858009904623032,0.0576634742319584,0.992608487606049,0.0984156802296638,0.0710115134716034,0.995716571807861,0.0743874683976173,0.0549079179763794,0.99306046962738,0.0626096054911613,0.0995535477995873,0.994979023933411,0.0820356979966164,0.0573306493461132,\r\n0.986563086509705,0.0994118005037308,0.129655301570892,0.992608487606049,0.0984156802296638,0.0710115134716034,0.994979023933411,0.0820356979966164,0.0573306493461132,0.995716571807861,0.0743874683976173,0.0549079179763794,0.92533540725708,0.0322638303041458,0.377774178981781,0.949562668800354,0.0781925395131111,0.303671717643738,0.926792621612549,0.130023613572121,0.352348238229752,0.949562668800354,0.0781925395131111,0.303671717643738,0.92533540725708,0.0322638303041458,0.377774178981781,0.960697293281555,0.0575704798102379,0.271562159061432,0.978698790073395,0.0698570162057877,0.193050786852837,0.960697293281555,0.0575704798102379,0.271562159061432,0.960800766944885,0.0272945128381252,0.275892704725266,0.986563086509705,0.0994118005037308,0.129655301570892,0.978698790073395,0.0698570162057877,0.193050786852837,0.99306046962738,0.0626096054911613,0.0995535477995873,0.504660964012146,0.56217497587204,-0.655191898345947,0.523207783699036,0.485992342233658,-0.700046360492706,0.526448786258698,0.483851701021194,-0.699098765850067,0.417249441146851,0.522487699985504,-0.743578732013702,0.386861443519592,0.412118256092072,-0.824922204017639,0.356160253286362,0.510192036628723,-0.782849848270416,0.526448786258698,0.483851701021194,-0.699098765850067,0.386861443519592,0.412118256092072,-0.824922204017639,0.417249441146851,0.522487699985504,-0.743578732013702,0.356160253286362,0.510192036628723,-0.782849848270416,0.427693843841553,0.411923080682755,-0.804609954357147,0.428675949573517,0.550652027130127,-0.716253519058228,0.367902219295502,0.592130362987518,-0.716958463191986,0.428675949573517,0.550652027130127,-0.716253519058228,0.419792085886002,0.448674082756042,-0.788965165615082,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.0971041843295097,-0.592953503131866,-0.79936021566391,-0.207031965255737,-0.494574069976807,-0.844117343425751,0.310987025499344,-0.878971934318542,-0.361518085002899,0.305507659912109,-0.860273361206055,-0.408160150051117,0.234301656484604,-0.826753735542297,-0.511449694633484,0.310987025499344,-0.878971934318542,-0.361518085002899,\r\n0.264668256044388,-0.877374768257141,-0.400205194950104,0.358274102210999,-0.902628362178802,-0.238540574908257,0.234301656484604,-0.826753735542297,-0.511449694633484,0.20514203608036,-0.799168169498444,-0.565019309520721,0.141081020236015,-0.762275993824005,-0.631689250469208,-0.0686419755220413,-0.590625703334808,-0.804020762443542,0.00230991607531905,-0.663799524307251,-0.747906804084778,-0.0971041843295097,-0.592953503131866,-0.79936021566391,0.0434797964990139,-0.686720907688141,-0.725619554519653,0.141081020236015,-0.762275993824005,-0.631689250469208,0.109589278697968,-0.739635765552521,-0.664024889469147,0.0434797964990139,-0.686720907688141,-0.725619554519653,0.109589278697968,-0.739635765552521,-0.664024889469147,0.00230991607531905,-0.663799524307251,-0.747906804084778,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.248878836631775,0.361877858638763,-0.898389458656311,-0.161872610449791,0.455040544271469,-0.87563419342041,0.710056066513062,0.515734851360321,-0.479413986206055,0.638254046440125,0.559140503406525,-0.529144108295441,0.487281411886215,0.536333978176117,-0.689131796360016,0.819125831127167,0.362674564123154,-0.444409608840942,0.898094594478607,0.396439015865326,-0.190425992012024,0.710056066513062,0.515734851360321,-0.479413986206055,0.819125831127167,0.362674564123154,-0.444409608840942,0.958265602588654,0.13981930911541,-0.249354094266891,0.946444749832153,0.287937253713608,-0.146063104271889,0.0803697183728218,0.608264863491058,-0.789654612541199,0.388638734817505,0.687623679637909,-0.613297164440155,0.107203759253025,0.785555064678192,-0.609434425830841,0.638254046440125,0.559140503406525,-0.529144108295441,0.388638734817505,0.687623679637909,-0.613297164440155,0.358153164386749,0.538454413414001,-0.762753546237946,0.0803697183728218,0.608264863491058,-0.789654612541199,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.161872610449791,0.455040544271469,-0.87563419342041,0.819366753101349,-0.0297588370740414,0.572496652603149,0.798272967338562,-0.0687192976474762,0.598362565040588,\r\n0.824878990650177,-0.0212418213486671,0.564909994602203,0.776550829410553,0.0178721006959677,0.629800856113434,0.824878990650177,-0.0212418213486671,0.564909994602203,0.798272967338562,-0.0687192976474762,0.598362565040588,0.860252141952515,0.0997577309608459,0.50001460313797,0.840847790241241,0.0312302578240633,0.540369808673859,0.889370262622833,0.0338788852095604,0.455930471420288,0.882728397846222,-0.0190966241061687,0.469495177268982,0.880931437015533,0.0741616263985634,0.467396765947342,0.889370262622833,0.0338788852095604,0.455930471420288,0.776550829410553,0.0178721006959677,0.629800856113434,0.759707450866699,0.0468159392476082,0.648577451705933,0.793546915054321,0.0732712894678116,0.604081571102142,0.840847790241241,0.0312302578240633,0.540369808673859,0.793546915054321,0.0732712894678116,0.604081571102142,0.759707450866699,0.0468159392476082,0.648577451705933,0.884613394737244,0.034201443195343,0.465069115161896,0.92533540725708,0.0322638303041458,0.377774178981781,0.892123937606812,0.132717460393906,0.431857407093048,0.884613394737244,0.034201443195343,0.465069115161896,0.880931437015533,0.0741616263985634,0.467396765947342,0.884250938892365,-0.0213509444147348,0.466523677110672,0.781428933143616,-0.0456612184643745,0.62232118844986,0.798272967338562,-0.0687192976474762,0.598362565040588,0.819366753101349,-0.0297588370740414,0.572496652603149,0.539537906646729,0.253582417964935,0.802866518497467,0.528396844863892,0.199498981237412,0.825225293636322,0.484941780567169,0.175580218434334,0.85673975944519,0.484941780567169,0.175580218434334,0.85673975944519,0.416627138853073,0.152797341346741,0.896144330501556,0.547422468662262,0.252215713262558,0.797944664955139,0.527404367923737,-0.0436218231916428,0.848493695259094,0.711164474487305,0.0377239063382149,0.702012658119202,0.582623243331909,0.140161111950874,0.800565302371979,0.582623243331909,0.140161111950874,0.800565302371979,0.416627138853073,0.152797341346741,0.896144330501556,0.418047726154327,0.0741972252726555,0.905389845371246,0.534066021442413,0.283346205949783,0.796547710895538,\r\n0.535246551036835,0.327803701162338,0.778495788574219,0.528396844863892,0.199498981237412,0.825225293636322,0.519001066684723,0.418854564428329,0.745116472244263,0.535246551036835,0.327803701162338,0.778495788574219,0.455138683319092,0.373388975858688,0.80834972858429,0.711164474487305,0.0377239063382149,0.702012658119202,0.714871883392334,-0.10343100130558,0.691563546657562,0.781428933143616,-0.0456612184643745,0.62232118844986,0.517458736896515,0.401494145393372,0.75567102432251,0.455138683319092,0.373388975858688,0.80834972858429,0.461232125759125,0.418584406375885,0.782337427139282,0.515605926513672,0.124178439378738,-0.847779512405396,0.486023157835007,0.0746106877923012,-0.870755195617676,0.409531861543655,0.0557789765298367,-0.910588920116425,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.486023157835007,0.0746106877923012,-0.870755195617676,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.770876824855804,0.0467582494020462,-0.635265648365021,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.409531861543655,0.0557789765298367,-0.910588920116425,0.475906997919083,0.0214995536953211,-0.87923276424408,0.473369628190994,0.0215946063399315,-0.880599141120911,0.475906997919083,0.0214995536953211,-0.87923276424408,0.636208057403564,0.0471470169723034,-0.770075500011444,0.536770164966583,-0.0166747085750103,-0.843563616275787,0.597113132476807,0.00542105128988624,-0.80213862657547,0.636208057403564,0.0471470169723034,-0.770075500011444,0.651559829711914,0.054255586117506,-0.756654441356659,0.651559829711914,0.054255586117506,-0.756654441356659,0.640909969806671,0.0867284089326859,-0.762700736522675,0.632226586341858,0.11749354749918,-0.765822887420654,0.549071431159973,0.11498611420393,-0.827827632427216,0.573262453079224,0.177994653582573,-0.799804925918579,0.621554553508759,0.143720075488091,-0.770074248313904,0.512739717960358,0.19626721739769,-0.835809230804443,0.549071431159973,0.11498611420393,-0.827827632427216,0.473250657320023,0.0730120167136192,-0.877896904945374,\r\n0.640909969806671,0.0867284089326859,-0.762700736522675,0.621554553508759,0.143720075488091,-0.770074248313904,0.632226586341858,0.11749354749918,-0.765822887420654,0.458113223314285,0.0385177098214626,-0.88805890083313,0.437327206134796,0.0349518209695816,-0.898622930049896,0.485797971487045,0.126404881477356,-0.86488264799118,0.458113223314285,0.0385177098214626,-0.88805890083313,0.473250657320023,0.0730120167136192,-0.877896904945374,0.447609335184097,0.00594133697450161,-0.894209384918213,0.526448786258698,0.483851701021194,-0.699098765850067,0.523207783699036,0.485992342233658,-0.700046360492706,0.53342193365097,0.3896404504776,-0.750760436058044,0.492007702589035,0.0884381383657455,-0.866087138652802,0.437327206134796,0.0349518209695816,-0.898622930049896,0.462107211351395,0.0128040798008442,-0.886731564998627,0.503515183925629,0.106144569814205,-0.857441306114197,0.492007702589035,0.0884381383657455,-0.866087138652802,0.462107211351395,0.0128040798008442,-0.886731564998627,0.411585301160812,0.281157642602921,-0.866918563842773,0.53342193365097,0.3896404504776,-0.750760436058044,0.54923403263092,0.199836477637291,-0.811422944068909,0.54923403263092,0.199836477637291,-0.811422944068909,0.503515183925629,0.106144569814205,-0.857441306114197,0.462107211351395,0.0128040798008442,-0.886731564998627,0.770876824855804,0.0467582494020462,-0.635265648365021,0.843974828720093,0.0490944646298885,-0.534130930900574,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.931298315525055,-0.0300312526524067,-0.363017141819,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.900888562202454,-0.154188558459282,-0.405740737915039,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.843974828720093,0.0490944646298885,-0.534130930900574,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.956723988056183,0.00727630406618118,-0.290905654430389,\r\n0.955942988395691,-0.0601149387657642,-0.287330865859985,0.976642251014709,-0.047733835875988,-0.209502711892128,0.971104085445404,-0.102035410702229,-0.215744152665138,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.976642251014709,-0.047733835875988,-0.209502711892128,0.956723988056183,0.00727630406618118,-0.290905654430389,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.955942988395691,-0.0601149387657642,-0.287330865859985,0.995716571807861,0.0743874683976173,0.0549079179763794,0.999041378498077,0.0435862205922604,0.00405724579468369,0.99464213848114,0.0858009904623032,0.0576634742319584,0.999041378498077,0.0435862205922604,0.00405724579468369,0.996821641921997,0.055038683116436,-0.0575959458947182,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.989664673805237,0.0306372288614511,-0.140089616179466,0.987943887710571,0.0594909600913525,-0.142925009131432,0.98100221157074,0.0559866800904274,-0.185741990804672,0.966534972190857,0.105368159711361,-0.233896598219872,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.987943887710571,0.0594909600913525,-0.142925009131432,0.978594779968262,0.0267804972827435,-0.204046338796616,0.966534972190857,0.105368159711361,-0.233896598219872,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.971104085445404,-0.102035410702229,-0.215744152665138,0.99306046962738,0.0626096054911613,0.0995535477995873,0.994971573352814,0.0784601345658302,0.0622537061572075,0.994979023933411,0.0820356979966164,0.0573306493461132,0.994979023933411,0.0820356979966164,0.0573306493461132,0.993717193603516,0.105911798775196,0.0361775308847427,0.995716571807861,0.0743874683976173,0.0549079179763794,0.960697293281555,0.0575704798102379,0.271562159061432,0.92533540725708,0.0322638303041458,0.377774178981781,0.923303425312042,-0.00764118833467364,0.383995085954666,0.93627142906189,0.00324618141166866,0.351262152194977,0.960800766944885,0.0272945128381252,0.275892704725266,\r\n0.960697293281555,0.0575704798102379,0.271562159061432,0.960800766944885,0.0272945128381252,0.275892704725266,0.977372407913208,0.00142864347435534,0.211520954966545,0.978698790073395,0.0698570162057877,0.193050786852837,0.977372407913208,0.00142864347435534,0.211520954966545,0.99306046962738,0.0626096054911613,0.0995535477995873,0.978698790073395,0.0698570162057877,0.193050786852837,0.386861443519592,0.412118256092072,-0.824922204017639,0.353334128856659,0.363242775201797,-0.862096011638641,0.356160253286362,0.510192036628723,-0.782849848270416,0.526448786258698,0.483851701021194,-0.699098765850067,0.53342193365097,0.3896404504776,-0.750760436058044,0.386861443519592,0.412118256092072,-0.824922204017639,0.353334128856659,0.363242775201797,-0.862096011638641,0.427693843841553,0.411923080682755,-0.804609954357147,0.356160253286362,0.510192036628723,-0.782849848270416,0.427693843841553,0.411923080682755,-0.804609954357147,0.419792085886002,0.448674082756042,-0.788965165615082,0.428675949573517,0.550652027130127,-0.716253519058228,-0.156739294528961,-0.530167639255524,-0.833279609680176,-0.0971041843295097,-0.592953503131866,-0.79936021566391,-0.207523912191391,-0.489217460155487,-0.847112715244293,0.250099152326584,-0.84684145450592,-0.469371736049652,0.310987025499344,-0.878971934318542,-0.361518085002899,0.234301656484604,-0.826753735542297,-0.511449694633484,0.310987025499344,-0.878971934318542,-0.361518085002899,0.250099152326584,-0.84684145450592,-0.469371736049652,0.264668256044388,-0.877374768257141,-0.400205194950104,0.141081020236015,-0.762275993824005,-0.631689250469208,0.167533129453659,-0.794724643230438,-0.583391129970551,0.234301656484604,-0.826753735542297,-0.511449694633484,0.00230991607531905,-0.663799524307251,-0.747906804084778,-0.0686419755220413,-0.590625703334808,-0.804020762443542,0.0434797964990139,-0.686720907688141,-0.725619554519653,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.0971041843295097,-0.592953503131866,-0.79936021566391,-0.156739294528961,-0.530167639255524,-0.833279609680176,\r\n0.141081020236015,-0.762275993824005,-0.631689250469208,0.0434797964990139,-0.686720907688141,-0.725619554519653,0.0719681605696678,-0.722024321556091,-0.688114404678345,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.161872610449791,0.455040544271469,-0.87563419342041,0.710056066513062,0.515734851360321,-0.479413986206055,0.831369340419769,0.474342048168182,-0.289524763822556,0.638254046440125,0.559140503406525,-0.529144108295441,0.898094594478607,0.396439015865326,-0.190425992012024,0.819125831127167,0.362674564123154,-0.444409608840942,0.946444749832153,0.287937253713608,-0.146063104271889,0.710056066513062,0.515734851360321,-0.479413986206055,0.898094594478607,0.396439015865326,-0.190425992012024,0.831369340419769,0.474342048168182,-0.289524763822556,0.283147424459457,0.826739847660065,-0.48613640666008,0.107203759253025,0.785555064678192,-0.609434425830841,0.388638734817505,0.687623679637909,-0.613297164440155,0.0803697183728218,0.608264863491058,-0.789654612541199,0.107203759253025,0.785555064678192,-0.609434425830841,-0.160410523414612,0.728954017162323,-0.665503025054932,0.60730654001236,0.694242060184479,-0.386272698640823,0.388638734817505,0.687623679637909,-0.613297164440155,0.638254046440125,0.559140503406525,-0.529144108295441,-0.160410523414612,0.728954017162323,-0.665503025054932,-0.323579967021942,0.549561381340027,-0.770245492458344,0.0803697183728218,0.608264863491058,-0.789654612541199,0.797596335411072,0.0376388989388943,0.602016091346741,0.776550829410553,0.0178721006959677,0.629800856113434,0.798272967338562,-0.0687192976474762,0.598362565040588,0.889370262622833,0.0338788852095604,0.455930471420288,0.840847790241241,0.0312302578240633,0.540369808673859,0.882728397846222,-0.0190966241061687,0.469495177268982,0.880931437015533,0.0741616263985634,0.467396765947342,0.882728397846222,-0.0190966241061687,0.469495177268982,0.884250938892365,-0.0213509444147348,0.466523677110672,0.733118534088135,0.0435418635606766,0.678705513477325,\r\n0.759707450866699,0.0468159392476082,0.648577451705933,0.776550829410553,0.0178721006959677,0.629800856113434,0.801024615764618,-0.0145774781703949,0.598453760147095,0.840847790241241,0.0312302578240633,0.540369808673859,0.759707450866699,0.0468159392476082,0.648577451705933,0.92533540725708,0.0322638303041458,0.377774178981781,0.884613394737244,0.034201443195343,0.465069115161896,0.89117169380188,-0.0418482162058353,0.451731532812119,0.89117169380188,-0.0418482162058353,0.451731532812119,0.884613394737244,0.034201443195343,0.465069115161896,0.884250938892365,-0.0213509444147348,0.466523677110672,0.781428933143616,-0.0456612184643745,0.62232118844986,0.714871883392334,-0.10343100130558,0.691563546657562,0.798272967338562,-0.0687192976474762,0.598362565040588,0.528396844863892,0.199498981237412,0.825225293636322,0.536041676998138,0.0606099404394627,0.842012822628021,0.484941780567169,0.175580218434334,0.85673975944519,0.484941780567169,0.175580218434334,0.85673975944519,0.404672175645828,0.0285102631896734,0.914017260074615,0.416627138853073,0.152797341346741,0.896144330501556,0.711164474487305,0.0377239063382149,0.702012658119202,0.527404367923737,-0.0436218231916428,0.848493695259094,0.714871883392334,-0.10343100130558,0.691563546657562,0.527404367923737,-0.0436218231916428,0.848493695259094,0.582623243331909,0.140161111950874,0.800565302371979,0.418047726154327,0.0741972252726555,0.905389845371246,0.418047726154327,0.0741972252726555,0.905389845371246,0.416627138853073,0.152797341346741,0.896144330501556,0.32241502404213,-0.013182639144361,0.946506440639496,0.535246551036835,0.327803701162338,0.778495788574219,0.57056051492691,0.178223669528961,0.801683843135834,0.528396844863892,0.199498981237412,0.825225293636322,0.535246551036835,0.327803701162338,0.778495788574219,0.519001066684723,0.418854564428329,0.745116472244263,0.599883317947388,0.396584540605545,0.694881677627563,0.517458736896515,0.401494145393372,0.75567102432251,0.519001066684723,0.418854564428329,0.745116472244263,0.455138683319092,0.373388975858688,0.80834972858429,\r\n0.385661125183105,0.0138692781329155,-0.922536194324493,0.409531861543655,0.0557789765298367,-0.910588920116425,0.486023157835007,0.0746106877923012,-0.870755195617676,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.385661125183105,0.0138692781329155,-0.922536194324493,0.486023157835007,0.0746106877923012,-0.870755195617676,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.661749958992004,-0.172372028231621,-0.729640126228333,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.770876824855804,0.0467582494020462,-0.635265648365021,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.750203549861908,-0.155082881450653,-0.64276260137558,0.347005605697632,0.0594865903258324,-0.935974538326263,0.475906997919083,0.0214995536953211,-0.87923276424408,0.409531861543655,0.0557789765298367,-0.910588920116425,0.475906997919083,0.0214995536953211,-0.87923276424408,0.539214253425598,0.142685815691948,-0.829993188381195,0.636208057403564,0.0471470169723034,-0.770075500011444,0.651559829711914,0.054255586117506,-0.756654441356659,0.636208057403564,0.0471470169723034,-0.770075500011444,0.640909969806671,0.0867284089326859,-0.762700736522675,0.621554553508759,0.143720075488091,-0.770074248313904,0.640909969806671,0.0867284089326859,-0.762700736522675,0.549071431159973,0.11498611420393,-0.827827632427216,0.472561955451965,0.0447320565581322,-0.880161464214325,0.473250657320023,0.0730120167136192,-0.877896904945374,0.549071431159973,0.11498611420393,-0.827827632427216,0.458113223314285,0.0385177098214626,-0.88805890083313,0.468684822320938,0.0495776012539864,-0.881973028182983,0.437327206134796,0.0349518209695816,-0.898622930049896,0.447609335184097,0.00594133697450161,-0.894209384918213,0.473250657320023,0.0730120167136192,-0.877896904945374,0.443331182003021,0.0381892360746861,-0.895543932914734,0.447609335184097,0.00594133697450161,-0.894209384918213,\r\n0.492258459329605,-0.0248453002423048,-0.870094358921051,0.458113223314285,0.0385177098214626,-0.88805890083313,0.437327206134796,0.0349518209695816,-0.898622930049896,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.462107211351395,0.0128040798008442,-0.886731564998627,0.411585301160812,0.281157642602921,-0.866918563842773,0.386861443519592,0.412118256092072,-0.824922204017639,0.53342193365097,0.3896404504776,-0.750760436058044,0.411585301160812,0.281157642602921,-0.866918563842773,0.54923403263092,0.199836477637291,-0.811422944068909,0.471269905567169,0.114976346492767,-0.874462723731995,0.471269905567169,0.114976346492767,-0.874462723731995,0.54923403263092,0.199836477637291,-0.811422944068909,0.462107211351395,0.0128040798008442,-0.886731564998627,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.904425024986267,-0.107085831463337,-0.412974387407303,0.900888562202454,-0.154188558459282,-0.405740737915039,0.912398934364319,-0.0819554850459099,-0.401012659072876,0.904425024986267,-0.107085831463337,-0.412974387407303,0.900888562202454,-0.154188558459282,-0.405740737915039,0.87516975402832,-0.163130477070808,-0.455484628677368,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.87516975402832,-0.163130477070808,-0.455484628677368,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.886006236076355,-0.0719109103083611,-0.458062916994095,0.956723988056183,0.00727630406618118,-0.290905654430389,0.976642251014709,-0.047733835875988,-0.209502711892128,0.946821868419647,0.120725274085999,-0.298250943422318,0.976642251014709,-0.047733835875988,-0.209502711892128,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.967256307601929,0.0116027798503637,-0.253535956144333,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.956723988056183,0.00727630406618118,-0.290905654430389,0.993717193603516,0.105911798775196,0.0361775308847427,0.999041378498077,0.0435862205922604,0.00405724579468369,\r\n0.995716571807861,0.0743874683976173,0.0549079179763794,0.999041378498077,0.0435862205922604,0.00405724579468369,0.997466206550598,0.0687126070261002,-0.0184304881840944,0.996821641921997,0.055038683116436,-0.0575959458947182,0.997513055801392,0.0358073487877846,-0.0607079043984413,0.996821641921997,0.055038683116436,-0.0575959458947182,0.989664673805237,0.0306372288614511,-0.140089616179466,0.978594779968262,0.0267804972827435,-0.204046338796616,0.987943887710571,0.0594909600913525,-0.142925009131432,0.989664673805237,0.0306372288614511,-0.140089616179466,0.966534972190857,0.105368159711361,-0.233896598219872,0.955889403820038,0.0774123594164848,-0.283342003822327,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.946498930454254,0.134794771671295,-0.293206512928009,0.966534972190857,0.105368159711361,-0.233896598219872,0.978594779968262,0.0267804972827435,-0.204046338796616,0.955889403820038,0.0774123594164848,-0.283342003822327,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.972177386283875,-0.0225763712078333,-0.233155220746994,0.99306046962738,0.0626096054911613,0.0995535477995873,0.993356704711914,0.00756889395415783,0.114826634526253,0.994971573352814,0.0784601345658302,0.0622537061572075,0.994971573352814,0.0784601345658302,0.0622537061572075,0.993717193603516,0.105911798775196,0.0361775308847427,0.994979023933411,0.0820356979966164,0.0573306493461132,0.92533540725708,0.0322638303041458,0.377774178981781,0.899048686027527,-0.0390122011303902,0.436107069253922,0.923303425312042,-0.00764118833467364,0.383995085954666,0.93627142906189,0.00324618141166866,0.351262152194977,0.960697293281555,0.0575704798102379,0.271562159061432,0.923303425312042,-0.00764118833467364,0.383995085954666,0.960800766944885,0.0272945128381252,0.275892704725266,0.93627142906189,0.00324618141166866,0.351262152194977,0.949423253536224,-0.048502005636692,0.310230582952499,0.977372407913208,0.00142864347435534,0.211520954966545,0.960800766944885,0.0272945128381252,0.275892704725266,0.949423253536224,-0.048502005636692,0.310230582952499,\r\n0.99306046962738,0.0626096054911613,0.0995535477995873,0.977372407913208,0.00142864347435534,0.211520954966545,0.993356704711914,0.00756889395415783,0.114826634526253,0.386861443519592,0.412118256092072,-0.824922204017639,0.303524792194366,0.240762189030647,-0.921903550624847,0.353334128856659,0.363242775201797,-0.862096011638641,0.353334128856659,0.363242775201797,-0.862096011638641,0.426078647375107,0.323490530252457,-0.844873189926147,0.427693843841553,0.411923080682755,-0.804609954357147,0.427693843841553,0.411923080682755,-0.804609954357147,0.36321285367012,0.328751146793365,-0.871779203414917,0.419792085886002,0.448674082756042,-0.788965165615082,0.234301656484604,-0.826753735542297,-0.511449694633484,0.167533129453659,-0.794724643230438,-0.583391129970551,0.250099152326584,-0.84684145450592,-0.469371736049652,0.250099152326584,-0.84684145450592,-0.469371736049652,0.205244049429893,-0.830870032310486,-0.517232716083527,0.264668256044388,-0.877374768257141,-0.400205194950104,0.141081020236015,-0.762275993824005,-0.631689250469208,0.0719681605696678,-0.722024321556091,-0.688114404678345,0.167533129453659,-0.794724643230438,-0.583391129970551,-0.0261401850730181,-0.634120881557465,-0.772791862487793,0.0434797964990139,-0.686720907688141,-0.725619554519653,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.156739294528961,-0.530167639255524,-0.833279609680176,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.0261401850730181,-0.634120881557465,-0.772791862487793,0.0719681605696678,-0.722024321556091,-0.688114404678345,0.0434797964990139,-0.686720907688141,-0.725619554519653,0.80204164981842,0.560621559619904,-0.205991521477699,0.638254046440125,0.559140503406525,-0.529144108295441,0.831369340419769,0.474342048168182,-0.289524763822556,0.441108047962189,0.762173116207123,-0.473830908536911,0.283147424459457,0.826739847660065,-0.48613640666008,0.388638734817505,0.687623679637909,-0.613297164440155,0.60730654001236,0.694242060184479,-0.386272698640823,\r\n0.441108047962189,0.762173116207123,-0.473830908536911,0.388638734817505,0.687623679637909,-0.613297164440155,0.80204164981842,0.560621559619904,-0.205991521477699,0.60730654001236,0.694242060184479,-0.386272698640823,0.638254046440125,0.559140503406525,-0.529144108295441,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.160410523414612,0.728954017162323,-0.665503025054932,-0.449537098407745,0.684517741203308,-0.573891639709473,0.733118534088135,0.0435418635606766,0.678705513477325,0.776550829410553,0.0178721006959677,0.629800856113434,0.797596335411072,0.0376388989388943,0.602016091346741,0.797596335411072,0.0376388989388943,0.602016091346741,0.798272967338562,-0.0687192976474762,0.598362565040588,0.773369789123535,0.0202044751495123,0.633633017539978,0.849495768547058,-0.0426663644611835,0.52586704492569,0.882728397846222,-0.0190966241061687,0.469495177268982,0.840847790241241,0.0312302578240633,0.540369808673859,0.882728397846222,-0.0190966241061687,0.469495177268982,0.880654036998749,-0.0351579263806343,0.472453474998474,0.884250938892365,-0.0213509444147348,0.466523677110672,0.75914865732193,0.0559284053742886,0.648509979248047,0.759707450866699,0.0468159392476082,0.648577451705933,0.733118534088135,0.0435418635606766,0.678705513477325,0.840847790241241,0.0312302578240633,0.540369808673859,0.801024615764618,-0.0145774781703949,0.598453760147095,0.849495768547058,-0.0426663644611835,0.52586704492569,0.75914865732193,0.0559284053742886,0.648509979248047,0.801024615764618,-0.0145774781703949,0.598453760147095,0.759707450866699,0.0468159392476082,0.648577451705933,0.89117169380188,-0.0418482162058353,0.451731532812119,0.899048686027527,-0.0390122011303902,0.436107069253922,0.92533540725708,0.0322638303041458,0.377774178981781,0.884250938892365,-0.0213509444147348,0.466523677110672,0.883401811122894,-0.0271580908447504,0.467828571796417,0.89117169380188,-0.0418482162058353,0.451731532812119,0.719244480133057,-0.0797001197934151,0.690170347690582,0.798272967338562,-0.0687192976474762,0.598362565040588,0.714871883392334,-0.10343100130558,0.691563546657562,\r\n0.57056051492691,0.178223669528961,0.801683843135834,0.536041676998138,0.0606099404394627,0.842012822628021,0.528396844863892,0.199498981237412,0.825225293636322,0.484941780567169,0.175580218434334,0.85673975944519,0.536041676998138,0.0606099404394627,0.842012822628021,0.404672175645828,0.0285102631896734,0.914017260074615,0.416627138853073,0.152797341346741,0.896144330501556,0.404672175645828,0.0285102631896734,0.914017260074615,0.32241502404213,-0.013182639144361,0.946506440639496,0.527404367923737,-0.0436218231916428,0.848493695259094,0.57039487361908,-0.0450904555618763,0.820131957530975,0.714871883392334,-0.10343100130558,0.691563546657562,0.418047726154327,0.0741972252726555,0.905389845371246,0.32241502404213,-0.013182639144361,0.946506440639496,0.527404367923737,-0.0436218231916428,0.848493695259094,0.519001066684723,0.418854564428329,0.745116472244263,0.517458736896515,0.401494145393372,0.75567102432251,0.599883317947388,0.396584540605545,0.694881677627563,0.385661125183105,0.0138692781329155,-0.922536194324493,0.347005605697632,0.0594865903258324,-0.935974538326263,0.409531861543655,0.0557789765298367,-0.910588920116425,0.385661125183105,0.0138692781329155,-0.922536194324493,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.553061604499817,-0.113756746053696,-0.825337588787079,0.661749958992004,-0.172372028231621,-0.729640126228333,0.653156340122223,-0.0093846321105957,-0.757164835929871,0.750203549861908,-0.155082881450653,-0.64276260137558,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.661749958992004,-0.172372028231621,-0.729640126228333,0.648905634880066,-0.26082444190979,-0.714767038822174,0.832188546657562,-0.147838801145554,-0.534420907497406,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.750203549861908,-0.155082881450653,-0.64276260137558,0.779741048812866,-0.0521416626870632,-0.623927056789398,0.832188546657562,-0.147838801145554,-0.534420907497406,0.475906997919083,0.0214995536953211,-0.87923276424408,0.347005605697632,0.0594865903258324,-0.935974538326263,\r\n0.487029254436493,0.0593226850032806,-0.871368587017059,0.475906997919083,0.0214995536953211,-0.87923276424408,0.487029254436493,0.0593226850032806,-0.871368587017059,0.539214253425598,0.142685815691948,-0.829993188381195,0.539214253425598,0.142685815691948,-0.829993188381195,0.607932567596436,0.137263894081116,-0.782033622264862,0.636208057403564,0.0471470169723034,-0.770075500011444,0.651619851589203,0.0956147387623787,-0.752495408058167,0.640909969806671,0.0867284089326859,-0.762700736522675,0.636208057403564,0.0471470169723034,-0.770075500011444,0.514910161495209,0.0609202459454536,-0.855076670646667,0.549071431159973,0.11498611420393,-0.827827632427216,0.640909969806671,0.0867284089326859,-0.762700736522675,0.472561955451965,0.0447320565581322,-0.880161464214325,0.443331182003021,0.0381892360746861,-0.895543932914734,0.473250657320023,0.0730120167136192,-0.877896904945374,0.514910161495209,0.0609202459454536,-0.855076670646667,0.472561955451965,0.0447320565581322,-0.880161464214325,0.549071431159973,0.11498611420393,-0.827827632427216,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.468684822320938,0.0495776012539864,-0.881973028182983,0.458113223314285,0.0385177098214626,-0.88805890083313,0.437327206134796,0.0349518209695816,-0.898622930049896,0.468684822320938,0.0495776012539864,-0.881973028182983,0.429677754640579,0.111602887511253,-0.896058976650238,0.447609335184097,0.00594133697450161,-0.894209384918213,0.443331182003021,0.0381892360746861,-0.895543932914734,0.40312871336937,0.0687723085284233,-0.912555456161499,0.455458253622055,0.0445448942482471,-0.889141917228699,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.447609335184097,0.00594133697450161,-0.894209384918213,0.437327206134796,0.0349518209695816,-0.898622930049896,0.381544053554535,0.107043989002705,-0.918131589889526,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.331260770559311,0.0494838058948517,-0.942240715026855,0.462107211351395,0.0128040798008442,-0.886731564998627,\r\n0.411585301160812,0.281157642602921,-0.866918563842773,0.303524792194366,0.240762189030647,-0.921903550624847,0.386861443519592,0.412118256092072,-0.824922204017639,0.331260770559311,0.0494838058948517,-0.942240715026855,0.411585301160812,0.281157642602921,-0.866918563842773,0.471269905567169,0.114976346492767,-0.874462723731995,0.471269905567169,0.114976346492767,-0.874462723731995,0.462107211351395,0.0128040798008442,-0.886731564998627,0.331260770559311,0.0494838058948517,-0.942240715026855,0.904425024986267,-0.107085831463337,-0.412974387407303,0.931051731109619,-0.0982529073953629,-0.351409941911697,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.900888562202454,-0.154188558459282,-0.405740737915039,0.904425024986267,-0.107085831463337,-0.412974387407303,0.870923519134521,-0.156485259532928,-0.465837448835373,0.900888562202454,-0.154188558459282,-0.405740737915039,0.880100011825562,-0.222042560577393,-0.419667690992355,0.87516975402832,-0.163130477070808,-0.455484628677368,0.87516975402832,-0.163130477070808,-0.455484628677368,0.832188546657562,-0.147838801145554,-0.534420907497406,0.833244383335114,-0.0579651482403278,-0.549857914447784,0.946821868419647,0.120725274085999,-0.298250943422318,0.976642251014709,-0.047733835875988,-0.209502711892128,0.967256307601929,0.0116027798503637,-0.253535956144333,0.925885617733002,0.128793314099312,-0.355173200368881,0.956723988056183,0.00727630406618118,-0.290905654430389,0.946821868419647,0.120725274085999,-0.298250943422318,0.955889403820038,0.0774123594164848,-0.283342003822327,0.967256307601929,0.0116027798503637,-0.253535956144333,0.973864257335663,-0.0844620615243912,-0.210842177271843,0.919884324073792,0.070766769349575,-0.385752230882645,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.956723988056183,0.00727630406618118,-0.290905654430389,0.997466206550598,0.0687126070261002,-0.0184304881840944,0.999041378498077,0.0435862205922604,0.00405724579468369,0.993717193603516,0.105911798775196,0.0361775308847427,0.996821641921997,0.055038683116436,-0.0575959458947182,\r\n0.997466206550598,0.0687126070261002,-0.0184304881840944,0.984118759632111,0.173660591244698,-0.036773219704628,0.996821641921997,0.055038683116436,-0.0575959458947182,0.977355301380157,0.180263072252274,-0.110823124647141,0.989664673805237,0.0306372288614511,-0.140089616179466,0.978594779968262,0.0267804972827435,-0.204046338796616,0.989664673805237,0.0306372288614511,-0.140089616179466,0.974702954292297,-0.026360435411334,-0.221944153308868,0.966534972190857,0.105368159711361,-0.233896598219872,0.946498930454254,0.134794771671295,-0.293206512928009,0.955889403820038,0.0774123594164848,-0.283342003822327,0.956842303276062,0.0384350381791592,-0.288054704666138,0.946498930454254,0.134794771671295,-0.293206512928009,0.978594779968262,0.0267804972827435,-0.204046338796616,0.994971573352814,0.0784601345658302,0.0622537061572075,0.993356704711914,0.00756889395415783,0.114826634526253,0.991891801357269,0.0539337135851383,0.115072779357433,0.993717193603516,0.105911798775196,0.0361775308847427,0.994971573352814,0.0784601345658302,0.0622537061572075,0.967349231243134,0.240217357873917,0.0808143243193626,0.895033597946167,-0.0132862692698836,0.44580066204071,0.923303425312042,-0.00764118833467364,0.383995085954666,0.899048686027527,-0.0390122011303902,0.436107069253922,0.922175765037537,-0.0419240817427635,0.384492009878159,0.93627142906189,0.00324618141166866,0.351262152194977,0.923303425312042,-0.00764118833467364,0.383995085954666,0.949423253536224,-0.048502005636692,0.310230582952499,0.93627142906189,0.00324618141166866,0.351262152194977,0.922175765037537,-0.0419240817427635,0.384492009878159,0.977372407913208,0.00142864347435534,0.211520954966545,0.949423253536224,-0.048502005636692,0.310230582952499,0.968995153903961,0.0352431274950504,0.244553104043007,0.977372407913208,0.00142864347435534,0.211520954966545,0.968995153903961,0.0352431274950504,0.244553104043007,0.993356704711914,0.00756889395415783,0.114826634526253,0.353334128856659,0.363242775201797,-0.862096011638641,0.303524792194366,0.240762189030647,-0.921903550624847,\r\n0.396828681230545,0.220917567610741,-0.890910923480988,0.396828681230545,0.220917567610741,-0.890910923480988,0.426078647375107,0.323490530252457,-0.844873189926147,0.353334128856659,0.363242775201797,-0.862096011638641,0.426078647375107,0.323490530252457,-0.844873189926147,0.36321285367012,0.328751146793365,-0.871779203414917,0.427693843841553,0.411923080682755,-0.804609954357147,0.167533129453659,-0.794724643230438,-0.583391129970551,0.205244049429893,-0.830870032310486,-0.517232716083527,0.250099152326584,-0.84684145450592,-0.469371736049652,0.202576071023941,-0.816575467586517,-0.540524959564209,0.264668256044388,-0.877374768257141,-0.400205194950104,0.205244049429893,-0.830870032310486,-0.517232716083527,0.0768061652779579,-0.74406898021698,-0.663673102855682,0.167533129453659,-0.794724643230438,-0.583391129970551,0.0719681605696678,-0.722024321556091,-0.688114404678345,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.0261401850730181,-0.634120881557465,-0.772791862487793,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.0686419755220413,-0.590625703334808,-0.804020762443542,-0.160073459148407,-0.505856573581696,-0.847635209560394,0.0135807618498802,-0.678455889225006,-0.734515488147736,0.0719681605696678,-0.722024321556091,-0.688114404678345,-0.0261401850730181,-0.634120881557465,-0.772791862487793,0.283147424459457,0.826739847660065,-0.48613640666008,0.441108047962189,0.762173116207123,-0.473830908536911,0.501465618610382,0.800948917865753,-0.327128350734711,0.441108047962189,0.762173116207123,-0.473830908536911,0.60730654001236,0.694242060184479,-0.386272698640823,0.501465618610382,0.800948917865753,-0.327128350734711,0.75914865732193,0.0559284053742886,0.648509979248047,0.733118534088135,0.0435418635606766,0.678705513477325,0.797596335411072,0.0376388989388943,0.602016091346741,0.773369789123535,0.0202044751495123,0.633633017539978,0.798272967338562,-0.0687192976474762,0.598362565040588,0.719244480133057,-0.0797001197934151,0.690170347690582,\r\n0.773369789123535,0.0202044751495123,0.633633017539978,0.800836443901062,0.0591237917542458,0.595957398414612,0.797596335411072,0.0376388989388943,0.602016091346741,0.837507128715515,-0.0396653413772583,0.544984698295593,0.882728397846222,-0.0190966241061687,0.469495177268982,0.849495768547058,-0.0426663644611835,0.52586704492569,0.882728397846222,-0.0190966241061687,0.469495177268982,0.837507128715515,-0.0396653413772583,0.544984698295593,0.880654036998749,-0.0351579263806343,0.472453474998474,0.883401811122894,-0.0271580908447504,0.467828571796417,0.884250938892365,-0.0213509444147348,0.466523677110672,0.880654036998749,-0.0351579263806343,0.472453474998474,0.849495768547058,-0.0426663644611835,0.52586704492569,0.801024615764618,-0.0145774781703949,0.598453760147095,0.82141786813736,-0.0876332223415375,0.563553810119629,0.790194988250732,-0.000703058787621558,0.612855017185211,0.801024615764618,-0.0145774781703949,0.598453760147095,0.75914865732193,0.0559284053742886,0.648509979248047,0.883401811122894,-0.0271580908447504,0.467828571796417,0.899048686027527,-0.0390122011303902,0.436107069253922,0.89117169380188,-0.0418482162058353,0.451731532812119,0.57039487361908,-0.0450904555618763,0.820131957530975,0.719244480133057,-0.0797001197934151,0.690170347690582,0.714871883392334,-0.10343100130558,0.691563546657562,0.536041676998138,0.0606099404394627,0.842012822628021,0.518881916999817,-0.0132392961531878,0.854743301868439,0.404672175645828,0.0285102631896734,0.914017260074615,0.404672175645828,0.0285102631896734,0.914017260074615,0.395883500576019,-0.0524692535400391,0.916800439357758,0.32241502404213,-0.013182639144361,0.946506440639496,0.527404367923737,-0.0436218231916428,0.848493695259094,0.370012253522873,-0.0608801431953907,0.9270299077034,0.57039487361908,-0.0450904555618763,0.820131957530975,0.370012253522873,-0.0608801431953907,0.9270299077034,0.527404367923737,-0.0436218231916428,0.848493695259094,0.32241502404213,-0.013182639144361,0.946506440639496,0.374528288841248,0.031224450096488,-0.926689505577087,\r\n0.347005605697632,0.0594865903258324,-0.935974538326263,0.385661125183105,0.0138692781329155,-0.922536194324493,0.550106883049011,-0.0847030952572823,-0.830787420272827,0.648905634880066,-0.26082444190979,-0.714767038822174,0.553061604499817,-0.113756746053696,-0.825337588787079,0.374528288841248,0.031224450096488,-0.926689505577087,0.385661125183105,0.0138692781329155,-0.922536194324493,0.553061604499817,-0.113756746053696,-0.825337588787079,0.661749958992004,-0.172372028231621,-0.729640126228333,0.750203549861908,-0.155082881450653,-0.64276260137558,0.694056272506714,-0.29068523645401,-0.658625662326813,0.661749958992004,-0.172372028231621,-0.729640126228333,0.694056272506714,-0.29068523645401,-0.658625662326813,0.648905634880066,-0.26082444190979,-0.714767038822174,0.750203549861908,-0.155082881450653,-0.64276260137558,0.832188546657562,-0.147838801145554,-0.534420907497406,0.775671541690826,-0.293566137552261,-0.558706104755402,0.374528288841248,0.031224450096488,-0.926689505577087,0.487029254436493,0.0593226850032806,-0.871368587017059,0.347005605697632,0.0594865903258324,-0.935974538326263,0.539214253425598,0.142685815691948,-0.829993188381195,0.487029254436493,0.0593226850032806,-0.871368587017059,0.556336760520935,0.108132779598236,-0.823891043663025,0.558459639549255,0.184134438633919,-0.808836936950684,0.607932567596436,0.137263894081116,-0.782033622264862,0.539214253425598,0.142685815691948,-0.829993188381195,0.651619851589203,0.0956147387623787,-0.752495408058167,0.636208057403564,0.0471470169723034,-0.770075500011444,0.607932567596436,0.137263894081116,-0.782033622264862,0.596474826335907,0.0740276277065277,-0.799210548400879,0.640909969806671,0.0867284089326859,-0.762700736522675,0.651619851589203,0.0956147387623787,-0.752495408058167,0.640909969806671,0.0867284089326859,-0.762700736522675,0.596474826335907,0.0740276277065277,-0.799210548400879,0.514910161495209,0.0609202459454536,-0.855076670646667,0.514910161495209,0.0609202459454536,-0.855076670646667,0.443331182003021,0.0381892360746861,-0.895543932914734,\r\n0.472561955451965,0.0447320565581322,-0.880161464214325,0.443951815366745,0.0234003104269505,-0.895744979381561,0.468684822320938,0.0495776012539864,-0.881973028182983,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.468684822320938,0.0495776012539864,-0.881973028182983,0.443951815366745,0.0234003104269505,-0.895744979381561,0.429677754640579,0.111602887511253,-0.896058976650238,0.429677754640579,0.111602887511253,-0.896058976650238,0.381544053554535,0.107043989002705,-0.918131589889526,0.437327206134796,0.0349518209695816,-0.898622930049896,0.40312871336937,0.0687723085284233,-0.912555456161499,0.443331182003021,0.0381892360746861,-0.895543932914734,0.482960253953934,0.0788470953702927,-0.872085094451904,0.407921999692917,0.0505274198949337,-0.911617517471313,0.447609335184097,0.00594133697450161,-0.894209384918213,0.40312871336937,0.0687723085284233,-0.912555456161499,0.455458253622055,0.0445448942482471,-0.889141917228699,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.455458253622055,0.0445448942482471,-0.889141917228699,0.447609335184097,0.00594133697450161,-0.894209384918213,0.407921999692917,0.0505274198949337,-0.911617517471313,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.381544053554535,0.107043989002705,-0.918131589889526,0.33534437417984,0.0226882938295603,-0.941822290420532,0.372824907302856,-0.00944842398166656,-0.927853584289551,0.33534437417984,0.0226882938295603,-0.941822290420532,0.331260770559311,0.0494838058948517,-0.942240715026855,0.411585301160812,0.281157642602921,-0.866918563842773,0.331260770559311,0.0494838058948517,-0.942240715026855,0.303524792194366,0.240762189030647,-0.921903550624847,0.904425024986267,-0.107085831463337,-0.412974387407303,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.902836084365845,0.000991918728686869,-0.429983556270599,0.904425024986267,-0.107085831463337,-0.412974387407303,0.877997100353241,-0.078041784465313,-0.472261071205139,0.870923519134521,-0.156485259532928,-0.465837448835373,\r\n0.870923519134521,-0.156485259532928,-0.465837448835373,0.880100011825562,-0.222042560577393,-0.419667690992355,0.900888562202454,-0.154188558459282,-0.405740737915039,0.880100011825562,-0.222042560577393,-0.419667690992355,0.855148255825043,-0.252629280090332,-0.452658593654633,0.87516975402832,-0.163130477070808,-0.455484628677368,0.832188546657562,-0.147838801145554,-0.534420907497406,0.87516975402832,-0.163130477070808,-0.455484628677368,0.855148255825043,-0.252629280090332,-0.452658593654633,0.955889403820038,0.0774123594164848,-0.283342003822327,0.946821868419647,0.120725274085999,-0.298250943422318,0.967256307601929,0.0116027798503637,-0.253535956144333,0.919884324073792,0.070766769349575,-0.385752230882645,0.956723988056183,0.00727630406618118,-0.290905654430389,0.925885617733002,0.128793314099312,-0.355173200368881,0.946498930454254,0.134794771671295,-0.293206512928009,0.925885617733002,0.128793314099312,-0.355173200368881,0.946821868419647,0.120725274085999,-0.298250943422318,0.919884324073792,0.070766769349575,-0.385752230882645,0.902836084365845,0.000991918728686869,-0.429983556270599,0.93542492389679,-0.0343872681260109,-0.351848542690277,0.979185283184052,0.202455967664719,-0.014408003538847,0.997466206550598,0.0687126070261002,-0.0184304881840944,0.993717193603516,0.105911798775196,0.0361775308847427,0.984118759632111,0.173660591244698,-0.036773219704628,0.997466206550598,0.0687126070261002,-0.0184304881840944,0.979185283184052,0.202455967664719,-0.014408003538847,0.984118759632111,0.173660591244698,-0.036773219704628,0.977355301380157,0.180263072252274,-0.110823124647141,0.996821641921997,0.055038683116436,-0.0575959458947182,0.977355301380157,0.180263072252274,-0.110823124647141,0.976661503314972,0.103492401540279,-0.188206344842911,0.989664673805237,0.0306372288614511,-0.140089616179466,0.989664673805237,0.0306372288614511,-0.140089616179466,0.971181333065033,0.034480307251215,-0.235834389925003,0.974702954292297,-0.026360435411334,-0.221944153308868,0.978594779968262,0.0267804972827435,-0.204046338796616,\r\n0.974702954292297,-0.026360435411334,-0.221944153308868,0.956842303276062,0.0384350381791592,-0.288054704666138,0.946498930454254,0.134794771671295,-0.293206512928009,0.946821868419647,0.120725274085999,-0.298250943422318,0.955889403820038,0.0774123594164848,-0.283342003822327,0.956842303276062,0.0384350381791592,-0.288054704666138,0.925885617733002,0.128793314099312,-0.355173200368881,0.946498930454254,0.134794771671295,-0.293206512928009,0.991891801357269,0.0539337135851383,0.115072779357433,0.993356704711914,0.00756889395415783,0.114826634526253,0.968995153903961,0.0352431274950504,0.244553104043007,0.994971573352814,0.0784601345658302,0.0622537061572075,0.991891801357269,0.0539337135851383,0.115072779357433,0.983624339103699,0.144002988934517,0.108379736542702,0.994971573352814,0.0784601345658302,0.0622537061572075,0.983624339103699,0.144002988934517,0.108379736542702,0.967349231243134,0.240217357873917,0.0808143243193626,0.993717193603516,0.105911798775196,0.0361775308847427,0.967349231243134,0.240217357873917,0.0808143243193626,0.919083535671234,0.392557621002197,0.0344041660428047,0.922175765037537,-0.0419240817427635,0.384492009878159,0.923303425312042,-0.00764118833467364,0.383995085954666,0.895033597946167,-0.0132862692698836,0.44580066204071,0.883401811122894,-0.0271580908447504,0.467828571796417,0.895033597946167,-0.0132862692698836,0.44580066204071,0.899048686027527,-0.0390122011303902,0.436107069253922,0.922175765037537,-0.0419240817427635,0.384492009878159,0.933345198631287,-0.0478051044046879,0.35578265786171,0.949423253536224,-0.048502005636692,0.310230582952499,0.944113373756409,-0.0137155894190073,0.329335302114487,0.968995153903961,0.0352431274950504,0.244553104043007,0.949423253536224,-0.048502005636692,0.310230582952499,0.396828681230545,0.220917567610741,-0.890910923480988,0.303524792194366,0.240762189030647,-0.921903550624847,0.35966032743454,0.0706306397914886,-0.930406212806702,0.38526377081871,0.186294481158257,-0.903806447982788,0.426078647375107,0.323490530252457,-0.844873189926147,0.396828681230545,0.220917567610741,-0.890910923480988,\r\n0.426078647375107,0.323490530252457,-0.844873189926147,0.38526377081871,0.186294481158257,-0.903806447982788,0.36321285367012,0.328751146793365,-0.871779203414917,0.167533129453659,-0.794724643230438,-0.583391129970551,0.1152503490448,-0.758709311485291,-0.641153156757355,0.205244049429893,-0.830870032310486,-0.517232716083527,0.202576071023941,-0.816575467586517,-0.540524959564209,0.208794564008713,-0.846530675888062,-0.489684075117111,0.264668256044388,-0.877374768257141,-0.400205194950104,0.16231943666935,-0.78761225938797,-0.59440666437149,0.202576071023941,-0.816575467586517,-0.540524959564209,0.205244049429893,-0.830870032310486,-0.517232716083527,0.0768061652779579,-0.74406898021698,-0.663673102855682,0.1152503490448,-0.758709311485291,-0.641153156757355,0.167533129453659,-0.794724643230438,-0.583391129970551,0.0135807618498802,-0.678455889225006,-0.734515488147736,0.0768061652779579,-0.74406898021698,-0.663673102855682,0.0719681605696678,-0.722024321556091,-0.688114404678345,-0.0407449342310429,-0.606377840042114,-0.794131994247437,-0.0261401850730181,-0.634120881557465,-0.772791862487793,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.0407449342310429,-0.606377840042114,-0.794131994247437,0.0135807618498802,-0.678455889225006,-0.734515488147736,-0.0261401850730181,-0.634120881557465,-0.772791862487793,0.75914865732193,0.0559284053742886,0.648509979248047,0.797596335411072,0.0376388989388943,0.602016091346741,0.798623919487,0.0492589026689529,0.59981095790863,0.661541402339935,0.0253581721335649,0.749479651451111,0.773369789123535,0.0202044751495123,0.633633017539978,0.719244480133057,-0.0797001197934151,0.690170347690582,0.709666073322296,0.0502890646457672,0.702741086483002,0.800836443901062,0.0591237917542458,0.595957398414612,0.773369789123535,0.0202044751495123,0.633633017539978,0.798623919487,0.0492589026689529,0.59981095790863,0.797596335411072,0.0376388989388943,0.602016091346741,0.800836443901062,0.0591237917542458,0.595957398414612,0.837507128715515,-0.0396653413772583,0.544984698295593,\r\n0.849495768547058,-0.0426663644611835,0.52586704492569,0.82141786813736,-0.0876332223415375,0.563553810119629,0.837507128715515,-0.0396653413772583,0.544984698295593,0.860083043575287,-0.0551226325333118,0.507167160511017,0.880654036998749,-0.0351579263806343,0.472453474998474,0.871483087539673,-0.00977774057537317,0.490327954292297,0.883401811122894,-0.0271580908447504,0.467828571796417,0.880654036998749,-0.0351579263806343,0.472453474998474,0.801024615764618,-0.0145774781703949,0.598453760147095,0.814009845256805,-0.11880711466074,0.568570673465729,0.82141786813736,-0.0876332223415375,0.563553810119629,0.790194988250732,-0.000703058787621558,0.612855017185211,0.814009845256805,-0.11880711466074,0.568570673465729,0.801024615764618,-0.0145774781703949,0.598453760147095,0.75914865732193,0.0559284053742886,0.648509979248047,0.798623919487,0.0492589026689529,0.59981095790863,0.790194988250732,-0.000703058787621558,0.612855017185211,0.661541402339935,0.0253581721335649,0.749479651451111,0.719244480133057,-0.0797001197934151,0.690170347690582,0.57039487361908,-0.0450904555618763,0.820131957530975,0.404672175645828,0.0285102631896734,0.914017260074615,0.518881916999817,-0.0132392961531878,0.854743301868439,0.395883500576019,-0.0524692535400391,0.916800439357758,0.370012253522873,-0.0608801431953907,0.9270299077034,0.32241502404213,-0.013182639144361,0.946506440639496,0.395883500576019,-0.0524692535400391,0.916800439357758,0.57039487361908,-0.0450904555618763,0.820131957530975,0.370012253522873,-0.0608801431953907,0.9270299077034,0.438692659139633,0.0839320048689842,0.894708931446075,0.714255928993225,-0.232092887163162,-0.660281240940094,0.553061604499817,-0.113756746053696,-0.825337588787079,0.648905634880066,-0.26082444190979,-0.714767038822174,0.487029254436493,0.0593226850032806,-0.871368587017059,0.374528288841248,0.031224450096488,-0.926689505577087,0.553061604499817,-0.113756746053696,-0.825337588787079,0.694056272506714,-0.29068523645401,-0.658625662326813,0.750203549861908,-0.155082881450653,-0.64276260137558,0.775671541690826,-0.293566137552261,-0.558706104755402,\r\n0.694056272506714,-0.29068523645401,-0.658625662326813,0.730792641639709,-0.325209617614746,-0.600150525569916,0.648905634880066,-0.26082444190979,-0.714767038822174,0.775671541690826,-0.293566137552261,-0.558706104755402,0.832188546657562,-0.147838801145554,-0.534420907497406,0.855148255825043,-0.252629280090332,-0.452658593654633,0.638389766216278,0.000318330596201122,-0.76971310377121,0.556336760520935,0.108132779598236,-0.823891043663025,0.487029254436493,0.0593226850032806,-0.871368587017059,0.556336760520935,0.108132779598236,-0.823891043663025,0.558459639549255,0.184134438633919,-0.808836936950684,0.539214253425598,0.142685815691948,-0.829993188381195,0.607932567596436,0.137263894081116,-0.782033622264862,0.558459639549255,0.184134438633919,-0.808836936950684,0.615494132041931,0.0997821092605591,-0.78179943561554,0.607932567596436,0.137263894081116,-0.782033622264862,0.620826959609985,0.0655280649662018,-0.781204044818878,0.651619851589203,0.0956147387623787,-0.752495408058167,0.620826959609985,0.0655280649662018,-0.781204044818878,0.596474826335907,0.0740276277065277,-0.799210548400879,0.651619851589203,0.0956147387623787,-0.752495408058167,0.596474826335907,0.0740276277065277,-0.799210548400879,0.482960253953934,0.0788470953702927,-0.872085094451904,0.514910161495209,0.0609202459454536,-0.855076670646667,0.514910161495209,0.0609202459454536,-0.855076670646667,0.482960253953934,0.0788470953702927,-0.872085094451904,0.443331182003021,0.0381892360746861,-0.895543932914734,0.443951815366745,0.0234003104269505,-0.895744979381561,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.439359992742538,-0.11028877645731,-0.891515076160431,0.429677754640579,0.111602887511253,-0.896058976650238,0.443951815366745,0.0234003104269505,-0.895744979381561,0.40501856803894,0.153985619544983,-0.901248157024384,0.429677754640579,0.111602887511253,-0.896058976650238,0.40501856803894,0.153985619544983,-0.901248157024384,0.381544053554535,0.107043989002705,-0.918131589889526,0.40312871336937,0.0687723085284233,-0.912555456161499,\r\n0.482960253953934,0.0788470953702927,-0.872085094451904,0.403981447219849,0.107731692492962,-0.908401191234589,0.407921999692917,0.0505274198949337,-0.911617517471313,0.40312871336937,0.0687723085284233,-0.912555456161499,0.404053449630737,0.125531569123268,-0.906080901622772,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.455458253622055,0.0445448942482471,-0.889141917228699,0.427571088075638,0.14288541674614,-0.89261782169342,0.439359992742538,-0.11028877645731,-0.891515076160431,0.492258459329605,-0.0248453002423048,-0.870094358921051,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.407921999692917,0.0505274198949337,-0.911617517471313,0.404053449630737,0.125531569123268,-0.906080901622772,0.455458253622055,0.0445448942482471,-0.889141917228699,0.395378768444061,0.154353216290474,-0.905456006526947,0.33534437417984,0.0226882938295603,-0.941822290420532,0.381544053554535,0.107043989002705,-0.918131589889526,0.324253410100937,0.00582627253606915,-0.945952236652374,0.331260770559311,0.0494838058948517,-0.942240715026855,0.33534437417984,0.0226882938295603,-0.941822290420532,0.331260770559311,0.0494838058948517,-0.942240715026855,0.35966032743454,0.0706306397914886,-0.930406212806702,0.303524792194366,0.240762189030647,-0.921903550624847,0.902836084365845,0.000991918728686869,-0.429983556270599,0.877997100353241,-0.078041784465313,-0.472261071205139,0.904425024986267,-0.107085831463337,-0.412974387407303,0.877997100353241,-0.078041784465313,-0.472261071205139,0.839300394058228,-0.109582863748074,-0.532509386539459,0.870923519134521,-0.156485259532928,-0.465837448835373,0.870923519134521,-0.156485259532928,-0.465837448835373,0.860467433929443,-0.214123159646988,-0.462327778339386,0.880100011825562,-0.222042560577393,-0.419667690992355,0.855148255825043,-0.252629280090332,-0.452658593654633,0.880100011825562,-0.222042560577393,-0.419667690992355,0.860467433929443,-0.214123159646988,-0.462327778339386,0.925885617733002,0.128793314099312,-0.355173200368881,0.917984068393707,0.0550644360482693,-0.392776101827621,\r\n0.919884324073792,0.070766769349575,-0.385752230882645,0.919884324073792,0.070766769349575,-0.385752230882645,0.917984068393707,0.0550644360482693,-0.392776101827621,0.902836084365845,0.000991918728686869,-0.429983556270599,0.919083535671234,0.392557621002197,0.0344041660428047,0.979185283184052,0.202455967664719,-0.014408003538847,0.993717193603516,0.105911798775196,0.0361775308847427,0.984118759632111,0.173660591244698,-0.036773219704628,0.979185283184052,0.202455967664719,-0.014408003538847,0.930854141712189,0.363486468791962,-0.0372580327093601,0.984118759632111,0.173660591244698,-0.036773219704628,0.888390362262726,0.451201111078262,-0.0847350805997849,0.977355301380157,0.180263072252274,-0.110823124647141,0.977355301380157,0.180263072252274,-0.110823124647141,0.917564868927002,0.309057474136353,-0.250115990638733,0.976661503314972,0.103492401540279,-0.188206344842911,0.989664673805237,0.0306372288614511,-0.140089616179466,0.976661503314972,0.103492401540279,-0.188206344842911,0.971181333065033,0.034480307251215,-0.235834389925003,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.974702954292297,-0.026360435411334,-0.221944153308868,0.971181333065033,0.034480307251215,-0.235834389925003,0.974702954292297,-0.026360435411334,-0.221944153308868,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.956842303276062,0.0384350381791592,-0.288054704666138,0.956842303276062,0.0384350381791592,-0.288054704666138,0.917984068393707,0.0550644360482693,-0.392776101827621,0.925885617733002,0.128793314099312,-0.355173200368881,0.991891801357269,0.0539337135851383,0.115072779357433,0.968995153903961,0.0352431274950504,0.244553104043007,0.953371822834015,0.21002484858036,0.216729551553726,0.953371822834015,0.21002484858036,0.216729551553726,0.983624339103699,0.144002988934517,0.108379736542702,0.991891801357269,0.0539337135851383,0.115072779357433,0.909934878349304,0.373202383518219,0.180936858057976,0.967349231243134,0.240217357873917,0.0808143243193626,0.983624339103699,0.144002988934517,0.108379736542702,0.919083535671234,0.392557621002197,0.0344041660428047,\r\n0.967349231243134,0.240217357873917,0.0808143243193626,0.7996426820755,0.580423593521118,0.153882682323456,0.922175765037537,-0.0419240817427635,0.384492009878159,0.895033597946167,-0.0132862692698836,0.44580066204071,0.916222453117371,-0.0517266392707825,0.397316813468933,0.895033597946167,-0.0132862692698836,0.44580066204071,0.883401811122894,-0.0271580908447504,0.467828571796417,0.878114581108093,-0.0161365121603012,0.478178054094315,0.922175765037537,-0.0419240817427635,0.384492009878159,0.916222453117371,-0.0517266392707825,0.397316813468933,0.933345198631287,-0.0478051044046879,0.35578265786171,0.944113373756409,-0.0137155894190073,0.329335302114487,0.949423253536224,-0.048502005636692,0.310230582952499,0.933345198631287,-0.0478051044046879,0.35578265786171,0.968995153903961,0.0352431274950504,0.244553104043007,0.944113373756409,-0.0137155894190073,0.329335302114487,0.900400161743164,0.204258814454079,0.384132534265518,0.396828681230545,0.220917567610741,-0.890910923480988,0.35966032743454,0.0706306397914886,-0.930406212806702,0.425404846668243,0.0773922652006149,-0.901687860488892,0.396828681230545,0.220917567610741,-0.890910923480988,0.425404846668243,0.0773922652006149,-0.901687860488892,0.38526377081871,0.186294481158257,-0.903806447982788,0.204466566443443,0.191781029105186,-0.959902822971344,0.36321285367012,0.328751146793365,-0.871779203414917,0.38526377081871,0.186294481158257,-0.903806447982788,0.16231943666935,-0.78761225938797,-0.59440666437149,0.205244049429893,-0.830870032310486,-0.517232716083527,0.1152503490448,-0.758709311485291,-0.641153156757355,0.161017268896103,-0.80111837387085,-0.576439499855042,0.208794564008713,-0.846530675888062,-0.489684075117111,0.202576071023941,-0.816575467586517,-0.540524959564209,0.264668256044388,-0.877374768257141,-0.400205194950104,0.208794564008713,-0.846530675888062,-0.489684075117111,0.262456446886063,-0.879748046398163,-0.396434098482132,0.16231943666935,-0.78761225938797,-0.59440666437149,0.16669750213623,-0.767170488834381,-0.619403958320618,0.202576071023941,-0.816575467586517,-0.540524959564209,\r\n0.0768061652779579,-0.74406898021698,-0.663673102855682,0.0432113111019135,-0.693281948566437,-0.71936970949173,0.1152503490448,-0.758709311485291,-0.641153156757355,0.0432113111019135,-0.693281948566437,-0.71936970949173,0.0768061652779579,-0.74406898021698,-0.663673102855682,0.0135807618498802,-0.678455889225006,-0.734515488147736,-0.0407449342310429,-0.606377840042114,-0.794131994247437,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.104181073606014,-0.521702945232391,-0.84674209356308,0.0432113111019135,-0.693281948566437,-0.71936970949173,0.0135807618498802,-0.678455889225006,-0.734515488147736,-0.0407449342310429,-0.606377840042114,-0.794131994247437,0.709666073322296,0.0502890646457672,0.702741086483002,0.773369789123535,0.0202044751495123,0.633633017539978,0.661541402339935,0.0253581721335649,0.749479651451111,0.761099398136139,-0.0321028530597687,0.647840321063995,0.800836443901062,0.0591237917542458,0.595957398414612,0.709666073322296,0.0502890646457672,0.702741086483002,0.761099398136139,-0.0321028530597687,0.647840321063995,0.798623919487,0.0492589026689529,0.59981095790863,0.800836443901062,0.0591237917542458,0.595957398414612,0.837507128715515,-0.0396653413772583,0.544984698295593,0.82141786813736,-0.0876332223415375,0.563553810119629,0.777699649333954,-0.00232962076552212,0.628631591796875,0.837507128715515,-0.0396653413772583,0.544984698295593,0.828526020050049,-0.0143947917968035,0.559765338897705,0.860083043575287,-0.0551226325333118,0.507167160511017,0.880654036998749,-0.0351579263806343,0.472453474998474,0.860083043575287,-0.0551226325333118,0.507167160511017,0.871483087539673,-0.00977774057537317,0.490327954292297,0.878114581108093,-0.0161365121603012,0.478178054094315,0.883401811122894,-0.0271580908447504,0.467828571796417,0.871483087539673,-0.00977774057537317,0.490327954292297,0.831562876701355,-0.155313342809677,0.533273637294769,0.82141786813736,-0.0876332223415375,0.563553810119629,0.814009845256805,-0.11880711466074,0.568570673465729,0.778684318065643,-0.0444756895303726,0.625837445259094,\r\n0.814009845256805,-0.11880711466074,0.568570673465729,0.790194988250732,-0.000703058787621558,0.612855017185211,0.790194988250732,-0.000703058787621558,0.612855017185211,0.798623919487,0.0492589026689529,0.59981095790863,0.751334667205811,-0.0417165234684944,0.658601403236389,0.57039487361908,-0.0450904555618763,0.820131957530975,0.550437569618225,0.0859284475445747,0.830442428588867,0.661541402339935,0.0253581721335649,0.749479651451111,0.649057626724243,0.019175423309207,0.760497450828552,0.395883500576019,-0.0524692535400391,0.916800439357758,0.518881916999817,-0.0132392961531878,0.854743301868439,0.370012253522873,-0.0608801431953907,0.9270299077034,0.395883500576019,-0.0524692535400391,0.916800439357758,0.468657284975052,0.0150072183459997,0.883252561092377,0.370012253522873,-0.0608801431953907,0.9270299077034,0.468657284975052,0.0150072183459997,0.883252561092377,0.438692659139633,0.0839320048689842,0.894708931446075,0.550437569618225,0.0859284475445747,0.830442428588867,0.57039487361908,-0.0450904555618763,0.820131957530975,0.438692659139633,0.0839320048689842,0.894708931446075,0.682579755783081,-0.11399107426405,-0.721866190433502,0.553061604499817,-0.113756746053696,-0.825337588787079,0.714255928993225,-0.232092887163162,-0.660281240940094,0.730792641639709,-0.325209617614746,-0.600150525569916,0.714255928993225,-0.232092887163162,-0.660281240940094,0.648905634880066,-0.26082444190979,-0.714767038822174,0.682579755783081,-0.11399107426405,-0.721866190433502,0.487029254436493,0.0593226850032806,-0.871368587017059,0.553061604499817,-0.113756746053696,-0.825337588787079,0.694056272506714,-0.29068523645401,-0.658625662326813,0.775671541690826,-0.293566137552261,-0.558706104755402,0.730792641639709,-0.325209617614746,-0.600150525569916,0.775671541690826,-0.293566137552261,-0.558706104755402,0.855148255825043,-0.252629280090332,-0.452658593654633,0.793580234050751,-0.305114090442657,-0.526436746120453,0.638389766216278,0.000318330596201122,-0.76971310377121,0.715163707733154,-0.0116750160232186,-0.698859333992004,\r\n0.556336760520935,0.108132779598236,-0.823891043663025,0.638389766216278,0.000318330596201122,-0.76971310377121,0.487029254436493,0.0593226850032806,-0.871368587017059,0.682579755783081,-0.11399107426405,-0.721866190433502,0.615494132041931,0.0997821092605591,-0.78179943561554,0.558459639549255,0.184134438633919,-0.808836936950684,0.556336760520935,0.108132779598236,-0.823891043663025,0.613371074199677,0.0575734004378319,-0.787693500518799,0.607932567596436,0.137263894081116,-0.782033622264862,0.615494132041931,0.0997821092605591,-0.78179943561554,0.620826959609985,0.0655280649662018,-0.781204044818878,0.607932567596436,0.137263894081116,-0.782033622264862,0.613371074199677,0.0575734004378319,-0.787693500518799,0.596474826335907,0.0740276277065277,-0.799210548400879,0.620826959609985,0.0655280649662018,-0.781204044818878,0.570473253726959,0.0475805029273033,-0.819936692714691,0.570473253726959,0.0475805029273033,-0.819936692714691,0.482960253953934,0.0788470953702927,-0.872085094451904,0.596474826335907,0.0740276277065277,-0.799210548400879,0.439359992742538,-0.11028877645731,-0.891515076160431,0.426397532224655,-0.112247951328754,-0.897544085979462,0.443951815366745,0.0234003104269505,-0.895744979381561,0.443951815366745,0.0234003104269505,-0.895744979381561,0.431807905435562,0.0343774408102036,-0.90131014585495,0.40501856803894,0.153985619544983,-0.901248157024384,0.395378768444061,0.154353216290474,-0.905456006526947,0.381544053554535,0.107043989002705,-0.918131589889526,0.40501856803894,0.153985619544983,-0.901248157024384,0.494154036045074,0.0386465527117252,-0.868514895439148,0.403981447219849,0.107731692492962,-0.908401191234589,0.482960253953934,0.0788470953702927,-0.872085094451904,0.403981447219849,0.107731692492962,-0.908401191234589,0.404053449630737,0.125531569123268,-0.906080901622772,0.40312871336937,0.0687723085284233,-0.912555456161499,0.442774802446365,0.166138172149658,-0.881106376647949,0.427571088075638,0.14288541674614,-0.89261782169342,0.455458253622055,0.0445448942482471,-0.889141917228699,\r\n0.427571088075638,0.14288541674614,-0.89261782169342,0.396124839782715,0.069731593132019,-0.915544927120209,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.42056205868721,-0.0716967880725861,-0.904426395893097,0.439359992742538,-0.11028877645731,-0.891515076160431,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.404053449630737,0.125531569123268,-0.906080901622772,0.442774802446365,0.166138172149658,-0.881106376647949,0.455458253622055,0.0445448942482471,-0.889141917228699,0.395378768444061,0.154353216290474,-0.905456006526947,0.412497788667679,0.0884994193911552,-0.906649470329285,0.33534437417984,0.0226882938295603,-0.941822290420532,0.331260770559311,0.0494838058948517,-0.942240715026855,0.324253410100937,0.00582627253606915,-0.945952236652374,0.35966032743454,0.0706306397914886,-0.930406212806702,0.412497788667679,0.0884994193911552,-0.906649470329285,0.324253410100937,0.00582627253606915,-0.945952236652374,0.33534437417984,0.0226882938295603,-0.941822290420532,0.902836084365845,0.000991918728686869,-0.429983556270599,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.877997100353241,-0.078041784465313,-0.472261071205139,0.839300394058228,-0.109582863748074,-0.532509386539459,0.877997100353241,-0.078041784465313,-0.472261071205139,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.870923519134521,-0.156485259532928,-0.465837448835373,0.839300394058228,-0.109582863748074,-0.532509386539459,0.860467433929443,-0.214123159646988,-0.462327778339386,0.855148255825043,-0.252629280090332,-0.452658593654633,0.860467433929443,-0.214123159646988,-0.462327778339386,0.840046465396881,-0.202502846717834,-0.503303527832031,0.917984068393707,0.0550644360482693,-0.392776101827621,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.902836084365845,0.000991918728686869,-0.429983556270599,0.919083535671234,0.392557621002197,0.0344041660428047,0.821189641952515,0.569184124469757,-0.0409487150609493,0.979185283184052,0.202455967664719,-0.014408003538847,0.821189641952515,0.569184124469757,-0.0409487150609493,\r\n0.930854141712189,0.363486468791962,-0.0372580327093601,0.979185283184052,0.202455967664719,-0.014408003538847,0.930854141712189,0.363486468791962,-0.0372580327093601,0.888390362262726,0.451201111078262,-0.0847350805997849,0.984118759632111,0.173660591244698,-0.036773219704628,0.85101193189621,0.485192596912384,-0.200914934277534,0.977355301380157,0.180263072252274,-0.110823124647141,0.888390362262726,0.451201111078262,-0.0847350805997849,0.977355301380157,0.180263072252274,-0.110823124647141,0.85101193189621,0.485192596912384,-0.200914934277534,0.917564868927002,0.309057474136353,-0.250115990638733,0.95126074552536,0.0947098955512047,-0.293484061956406,0.976661503314972,0.103492401540279,-0.188206344842911,0.917564868927002,0.309057474136353,-0.250115990638733,0.971181333065033,0.034480307251215,-0.235834389925003,0.976661503314972,0.103492401540279,-0.188206344842911,0.95126074552536,0.0947098955512047,-0.293484061956406,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.974702954292297,-0.026360435411334,-0.221944153308868,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.971181333065033,0.034480307251215,-0.235834389925003,0.95126074552536,0.0947098955512047,-0.293484061956406,0.974702954292297,-0.026360435411334,-0.221944153308868,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.956842303276062,0.0384350381791592,-0.288054704666138,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.917984068393707,0.0550644360482693,-0.392776101827621,0.849711060523987,0.368712246417999,0.376884937286377,0.953371822834015,0.21002484858036,0.216729551553726,0.968995153903961,0.0352431274950504,0.244553104043007,0.953371822834015,0.21002484858036,0.216729551553726,0.909934878349304,0.373202383518219,0.180936858057976,0.983624339103699,0.144002988934517,0.108379736542702,0.909934878349304,0.373202383518219,0.180936858057976,0.7996426820755,0.580423593521118,0.153882682323456,0.967349231243134,0.240217357873917,0.0808143243193626,\r\n0.508169293403625,0.859669208526611,0.052274577319622,0.919083535671234,0.392557621002197,0.0344041660428047,0.7996426820755,0.580423593521118,0.153882682323456,0.916222453117371,-0.0517266392707825,0.397316813468933,0.895033597946167,-0.0132862692698836,0.44580066204071,0.878114581108093,-0.0161365121603012,0.478178054094315,0.916222453117371,-0.0517266392707825,0.397316813468933,0.910090208053589,-0.0187982060015202,0.413983404636383,0.933345198631287,-0.0478051044046879,0.35578265786171,0.944113373756409,-0.0137155894190073,0.329335302114487,0.933345198631287,-0.0478051044046879,0.35578265786171,0.896791279315948,0.109696745872498,0.428639322519302,0.944113373756409,-0.0137155894190073,0.329335302114487,0.896791279315948,0.109696745872498,0.428639322519302,0.900400161743164,0.204258814454079,0.384132534265518,0.849711060523987,0.368712246417999,0.376884937286377,0.968995153903961,0.0352431274950504,0.244553104043007,0.900400161743164,0.204258814454079,0.384132534265518,0.404817074537277,0.0324165411293507,-0.913822829723358,0.425404846668243,0.0773922652006149,-0.901687860488892,0.35966032743454,0.0706306397914886,-0.930406212806702,0.331424683332443,0.0328037515282631,-0.942911207675934,0.38526377081871,0.186294481158257,-0.903806447982788,0.425404846668243,0.0773922652006149,-0.901687860488892,0.204466566443443,0.191781029105186,-0.959902822971344,0.38526377081871,0.186294481158257,-0.903806447982788,0.239401906728745,0.0726002082228661,-0.968202352523804,0.0825831890106201,-0.70145446062088,-0.707913458347321,0.16231943666935,-0.78761225938797,-0.59440666437149,0.1152503490448,-0.758709311485291,-0.641153156757355,0.205546766519547,-0.839059352874756,-0.503715932369232,0.208794564008713,-0.846530675888062,-0.489684075117111,0.161017268896103,-0.80111837387085,-0.576439499855042,0.134201645851135,-0.7474005818367,-0.650678217411041,0.161017268896103,-0.80111837387085,-0.576439499855042,0.202576071023941,-0.816575467586517,-0.540524959564209,0.205546766519547,-0.839059352874756,-0.503715932369232,0.262456446886063,-0.879748046398163,-0.396434098482132,\r\n0.208794564008713,-0.846530675888062,-0.489684075117111,0.16231943666935,-0.78761225938797,-0.59440666437149,0.0825831890106201,-0.70145446062088,-0.707913458347321,0.16669750213623,-0.767170488834381,-0.619403958320618,0.202576071023941,-0.816575467586517,-0.540524959564209,0.16669750213623,-0.767170488834381,-0.619403958320618,0.134201645851135,-0.7474005818367,-0.650678217411041,0.0432113111019135,-0.693281948566437,-0.71936970949173,0.00795500539243221,-0.64164274930954,-0.766962349414825,0.1152503490448,-0.758709311485291,-0.641153156757355,0.00795500539243221,-0.64164274930954,-0.766962349414825,-0.0407449342310429,-0.606377840042114,-0.794131994247437,-0.104181073606014,-0.521702945232391,-0.84674209356308,0.00795500539243221,-0.64164274930954,-0.766962349414825,0.0432113111019135,-0.693281948566437,-0.71936970949173,-0.0407449342310429,-0.606377840042114,-0.794131994247437,0.583012282848358,0.0535014979541302,0.810699760913849,0.709666073322296,0.0502890646457672,0.702741086483002,0.661541402339935,0.0253581721335649,0.749479651451111,0.761099398136139,-0.0321028530597687,0.647840321063995,0.709666073322296,0.0502890646457672,0.702741086483002,0.669700503349304,-0.025288887321949,0.742200493812561,0.761099398136139,-0.0321028530597687,0.647840321063995,0.751334667205811,-0.0417165234684944,0.658601403236389,0.798623919487,0.0492589026689529,0.59981095790863,0.777699649333954,-0.00232962076552212,0.628631591796875,0.82141786813736,-0.0876332223415375,0.563553810119629,0.788228750228882,-0.0774906203150749,0.610483825206757,0.837507128715515,-0.0396653413772583,0.544984698295593,0.777699649333954,-0.00232962076552212,0.628631591796875,0.828526020050049,-0.0143947917968035,0.559765338897705,0.828526020050049,-0.0143947917968035,0.559765338897705,0.882633864879608,-0.0556233339011669,0.466758400201797,0.860083043575287,-0.0551226325333118,0.507167160511017,0.871483087539673,-0.00977774057537317,0.490327954292297,0.860083043575287,-0.0551226325333118,0.507167160511017,0.878114581108093,-0.0161365121603012,0.478178054094315,\r\n0.82141786813736,-0.0876332223415375,0.563553810119629,0.831562876701355,-0.155313342809677,0.533273637294769,0.788228750228882,-0.0774906203150749,0.610483825206757,0.814009845256805,-0.11880711466074,0.568570673465729,0.788228750228882,-0.0774906203150749,0.610483825206757,0.831562876701355,-0.155313342809677,0.533273637294769,0.814009845256805,-0.11880711466074,0.568570673465729,0.778684318065643,-0.0444756895303726,0.625837445259094,0.744991838932037,-0.113316841423512,0.657378435134888,0.751334667205811,-0.0417165234684944,0.658601403236389,0.778684318065643,-0.0444756895303726,0.625837445259094,0.790194988250732,-0.000703058787621558,0.612855017185211,0.583012282848358,0.0535014979541302,0.810699760913849,0.661541402339935,0.0253581721335649,0.749479651451111,0.550437569618225,0.0859284475445747,0.830442428588867,0.395883500576019,-0.0524692535400391,0.916800439357758,0.649057626724243,0.019175423309207,0.760497450828552,0.468657284975052,0.0150072183459997,0.883252561092377,0.682579755783081,-0.11399107426405,-0.721866190433502,0.714255928993225,-0.232092887163162,-0.660281240940094,0.76905882358551,-0.188914597034454,-0.61062228679657,0.730792641639709,-0.325209617614746,-0.600150525569916,0.779802620410919,-0.198811009526253,-0.593617737293243,0.714255928993225,-0.232092887163162,-0.660281240940094,0.775671541690826,-0.293566137552261,-0.558706104755402,0.746297597885132,-0.384596854448318,-0.54325407743454,0.730792641639709,-0.325209617614746,-0.600150525569916,0.840046465396881,-0.202502846717834,-0.503303527832031,0.793580234050751,-0.305114090442657,-0.526436746120453,0.855148255825043,-0.252629280090332,-0.452658593654633,0.793580234050751,-0.305114090442657,-0.526436746120453,0.746297597885132,-0.384596854448318,-0.54325407743454,0.775671541690826,-0.293566137552261,-0.558706104755402,0.782498419284821,-0.107972010970116,-0.613219439983368,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.638389766216278,0.000318330596201122,-0.76971310377121,0.615494132041931,0.0997821092605591,-0.78179943561554,\r\n0.556336760520935,0.108132779598236,-0.823891043663025,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.638389766216278,0.000318330596201122,-0.76971310377121,0.682579755783081,-0.11399107426405,-0.721866190433502,0.782498419284821,-0.107972010970116,-0.613219439983368,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.613371074199677,0.0575734004378319,-0.787693500518799,0.615494132041931,0.0997821092605591,-0.78179943561554,0.613371074199677,0.0575734004378319,-0.787693500518799,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.620826959609985,0.0655280649662018,-0.781204044818878,0.570473253726959,0.0475805029273033,-0.819936692714691,0.620826959609985,0.0655280649662018,-0.781204044818878,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.494154036045074,0.0386465527117252,-0.868514895439148,0.482960253953934,0.0788470953702927,-0.872085094451904,0.570473253726959,0.0475805029273033,-0.819936692714691,0.439359992742538,-0.11028877645731,-0.891515076160431,0.418200671672821,-0.101268939673901,-0.902691900730133,0.426397532224655,-0.112247951328754,-0.897544085979462,0.443951815366745,0.0234003104269505,-0.895744979381561,0.426397532224655,-0.112247951328754,-0.897544085979462,0.431807905435562,0.0343774408102036,-0.90131014585495,0.434476673603058,0.154153734445572,-0.887393116950989,0.40501856803894,0.153985619544983,-0.901248157024384,0.431807905435562,0.0343774408102036,-0.90131014585495,0.434476673603058,0.154153734445572,-0.887393116950989,0.395378768444061,0.154353216290474,-0.905456006526947,0.40501856803894,0.153985619544983,-0.901248157024384,0.439290821552277,0.0719726011157036,-0.895457088947296,0.403981447219849,0.107731692492962,-0.908401191234589,0.494154036045074,0.0386465527117252,-0.868514895439148,0.403981447219849,0.107731692492962,-0.908401191234589,0.436281949281693,0.158940926194191,-0.88566118478775,0.404053449630737,0.125531569123268,-0.906080901622772,0.427571088075638,0.14288541674614,-0.89261782169342,0.442774802446365,0.166138172149658,-0.881106376647949,\r\n0.442825734615326,0.169559717178345,-0.880428791046143,0.427571088075638,0.14288541674614,-0.89261782169342,0.40013924241066,0.193153232336044,-0.895868480205536,0.396124839782715,0.069731593132019,-0.915544927120209,0.42056205868721,-0.0716967880725861,-0.904426395893097,0.474889785051346,-0.0227201245725155,-0.879751861095428,0.396124839782715,0.069731593132019,-0.915544927120209,0.42056205868721,-0.0716967880725861,-0.904426395893097,0.418200671672821,-0.101268939673901,-0.902691900730133,0.439359992742538,-0.11028877645731,-0.891515076160431,0.404053449630737,0.125531569123268,-0.906080901622772,0.436281949281693,0.158940926194191,-0.88566118478775,0.442774802446365,0.166138172149658,-0.881106376647949,0.395378768444061,0.154353216290474,-0.905456006526947,0.434476673603058,0.154153734445572,-0.887393116950989,0.412497788667679,0.0884994193911552,-0.906649470329285,0.324253410100937,0.00582627253606915,-0.945952236652374,0.412632018327713,0.0507275611162186,-0.909484148025513,0.35966032743454,0.0706306397914886,-0.930406212806702,0.324253410100937,0.00582627253606915,-0.945952236652374,0.412497788667679,0.0884994193911552,-0.906649470329285,0.412632018327713,0.0507275611162186,-0.909484148025513,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.902836084365845,0.000991918728686869,-0.429983556270599,0.839300394058228,-0.109582863748074,-0.532509386539459,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.847461700439453,0.004508210811764,-0.530837297439575,0.840046465396881,-0.202502846717834,-0.503303527832031,0.860467433929443,-0.214123159646988,-0.462327778339386,0.839300394058228,-0.109582863748074,-0.532509386539459,0.917984068393707,0.0550644360482693,-0.392776101827621,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.919083535671234,0.392557621002197,0.0344041660428047,0.508169293403625,0.859669208526611,0.052274577319622,0.821189641952515,0.569184124469757,-0.0409487150609493,\r\n0.930854141712189,0.363486468791962,-0.0372580327093601,0.821189641952515,0.569184124469757,-0.0409487150609493,0.63890153169632,0.7608363032341,-0.11372235417366,0.930854141712189,0.363486468791962,-0.0372580327093601,0.63890153169632,0.7608363032341,-0.11372235417366,0.888390362262726,0.451201111078262,-0.0847350805997849,0.85101193189621,0.485192596912384,-0.200914934277534,0.888390362262726,0.451201111078262,-0.0847350805997849,0.480638444423676,0.841849863529205,-0.245510503649712,0.85101193189621,0.485192596912384,-0.200914934277534,0.692891955375671,0.652373015880585,-0.307099401950836,0.917564868927002,0.309057474136353,-0.250115990638733,0.867564082145691,0.260370314121246,-0.423721313476563,0.95126074552536,0.0947098955512047,-0.293484061956406,0.917564868927002,0.309057474136353,-0.250115990638733,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.919285714626312,-0.136944457888603,-0.368998497724533,0.892258107662201,0.05744693800807,-0.447856217622757,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.95126074552536,0.0947098955512047,-0.293484061956406,0.934434711933136,-0.142130300402641,-0.32654345035553,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.849711060523987,0.368712246417999,0.376884937286377,0.733044981956482,0.591075718402863,0.336562812328339,0.953371822834015,0.21002484858036,0.216729551553726,0.953371822834015,0.21002484858036,0.216729551553726,0.733044981956482,0.591075718402863,0.336562812328339,0.909934878349304,0.373202383518219,0.180936858057976,0.7996426820755,0.580423593521118,0.153882682323456,0.909934878349304,0.373202383518219,0.180936858057976,0.647193133831024,0.71926474571228,0.252584934234619,0.508169293403625,0.859669208526611,0.052274577319622,0.7996426820755,0.580423593521118,0.153882682323456,0.346310555934906,0.909985363483429,0.228025332093239,0.916222453117371,-0.0517266392707825,0.397316813468933,0.878114581108093,-0.0161365121603012,0.478178054094315,\r\n0.882627546787262,-0.0935246720910072,0.460675179958344,0.916222453117371,-0.0517266392707825,0.397316813468933,0.910268068313599,-0.0997210219502449,0.401830404996872,0.910090208053589,-0.0187982060015202,0.413983404636383,0.933345198631287,-0.0478051044046879,0.35578265786171,0.910090208053589,-0.0187982060015202,0.413983404636383,0.896791279315948,0.109696745872498,0.428639322519302,0.900400161743164,0.204258814454079,0.384132534265518,0.896791279315948,0.109696745872498,0.428639322519302,0.665616035461426,0.544860184192657,0.509983003139496,0.849711060523987,0.368712246417999,0.376884937286377,0.900400161743164,0.204258814454079,0.384132534265518,0.642104983329773,0.616546869277954,0.455599725246429,0.425404846668243,0.0773922652006149,-0.901687860488892,0.404817074537277,0.0324165411293507,-0.913822829723358,0.331424683332443,0.0328037515282631,-0.942911207675934,0.35966032743454,0.0706306397914886,-0.930406212806702,0.412632018327713,0.0507275611162186,-0.909484148025513,0.404817074537277,0.0324165411293507,-0.913822829723358,0.331424683332443,0.0328037515282631,-0.942911207675934,0.239401906728745,0.0726002082228661,-0.968202352523804,0.38526377081871,0.186294481158257,-0.903806447982788,0.0825831890106201,-0.70145446062088,-0.707913458347321,0.1152503490448,-0.758709311485291,-0.641153156757355,0.00795500539243221,-0.64164274930954,-0.766962349414825,0.161017268896103,-0.80111837387085,-0.576439499855042,0.158299073576927,-0.782573819160461,-0.602095782756805,0.205546766519547,-0.839059352874756,-0.503715932369232,0.134201645851135,-0.7474005818367,-0.650678217411041,0.111658006906509,-0.728790760040283,-0.675571143627167,0.161017268896103,-0.80111837387085,-0.576439499855042,0.247956663370132,-0.881808757781982,-0.401161700487137,0.262456446886063,-0.879748046398163,-0.396434098482132,0.205546766519547,-0.839059352874756,-0.503715932369232,0.134201645851135,-0.7474005818367,-0.650678217411041,0.16669750213623,-0.767170488834381,-0.619403958320618,0.0825831890106201,-0.70145446062088,-0.707913458347321,-0.013318095356226,-0.584911465644836,-0.810987710952759,\r\n0.00795500539243221,-0.64164274930954,-0.766962349414825,-0.104181073606014,-0.521702945232391,-0.84674209356308,0.583012282848358,0.0535014979541302,0.810699760913849,0.669700503349304,-0.025288887321949,0.742200493812561,0.709666073322296,0.0502890646457672,0.702741086483002,0.687962591648102,-0.107035167515278,0.717809736728668,0.761099398136139,-0.0321028530597687,0.647840321063995,0.669700503349304,-0.025288887321949,0.742200493812561,0.761099398136139,-0.0321028530597687,0.647840321063995,0.739551186561584,-0.137504622340202,0.658905327320099,0.751334667205811,-0.0417165234684944,0.658601403236389,0.788228750228882,-0.0774906203150749,0.610483825206757,0.733122289180756,0.0150710213929415,0.679929614067078,0.777699649333954,-0.00232962076552212,0.628631591796875,0.785127997398376,0.0218252278864384,0.618948757648468,0.828526020050049,-0.0143947917968035,0.559765338897705,0.777699649333954,-0.00232962076552212,0.628631591796875,0.828526020050049,-0.0143947917968035,0.559765338897705,0.84008264541626,-0.0480614714324474,0.540324926376343,0.882633864879608,-0.0556233339011669,0.466758400201797,0.877866506576538,-0.117551498115063,0.464254111051559,0.860083043575287,-0.0551226325333118,0.507167160511017,0.882633864879608,-0.0556233339011669,0.466758400201797,0.860083043575287,-0.0551226325333118,0.507167160511017,0.882627546787262,-0.0935246720910072,0.460675179958344,0.878114581108093,-0.0161365121603012,0.478178054094315,0.788228750228882,-0.0774906203150749,0.610483825206757,0.814009845256805,-0.11880711466074,0.568570673465729,0.730005145072937,-0.131257876753807,0.670718908309937,0.744991838932037,-0.113316841423512,0.657378435134888,0.778684318065643,-0.0444756895303726,0.625837445259094,0.68681788444519,-0.0555173791944981,0.72470611333847,0.730005145072937,-0.131257876753807,0.670718908309937,0.814009845256805,-0.11880711466074,0.568570673465729,0.744991838932037,-0.113316841423512,0.657378435134888,0.68681788444519,-0.0555173791944981,0.72470611333847,0.778684318065643,-0.0444756895303726,0.625837445259094,\r\n0.751334667205811,-0.0417165234684944,0.658601403236389,0.76905882358551,-0.188914597034454,-0.61062228679657,0.714255928993225,-0.232092887163162,-0.660281240940094,0.779802620410919,-0.198811009526253,-0.593617737293243,0.682579755783081,-0.11399107426405,-0.721866190433502,0.76905882358551,-0.188914597034454,-0.61062228679657,0.782498419284821,-0.107972010970116,-0.613219439983368,0.779802620410919,-0.198811009526253,-0.593617737293243,0.730792641639709,-0.325209617614746,-0.600150525569916,0.781730234622955,-0.22161303460598,-0.582911193370819,0.749169170856476,-0.359485030174255,-0.556341528892517,0.730792641639709,-0.325209617614746,-0.600150525569916,0.746297597885132,-0.384596854448318,-0.54325407743454,0.840046465396881,-0.202502846717834,-0.503303527832031,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.793580234050751,-0.305114090442657,-0.526436746120453,0.749169170856476,-0.359485030174255,-0.556341528892517,0.746297597885132,-0.384596854448318,-0.54325407743454,0.793580234050751,-0.305114090442657,-0.526436746120453,0.782498419284821,-0.107972010970116,-0.613219439983368,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.615494132041931,0.0997821092605591,-0.78179943561554,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.613371074199677,0.0575734004378319,-0.787693500518799,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.620826959609985,0.0655280649662018,-0.781204044818878,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.560377955436707,-0.047677468508482,-0.826863527297974,0.570473253726959,0.0475805029273033,-0.819936692714691,0.570473253726959,0.0475805029273033,-0.819936692714691,0.560377955436707,-0.047677468508482,-0.826863527297974,0.494154036045074,0.0386465527117252,-0.868514895439148,\r\n0.530326843261719,-0.0663386061787605,-0.84519374370575,0.426397532224655,-0.112247951328754,-0.897544085979462,0.418200671672821,-0.101268939673901,-0.902691900730133,0.426397532224655,-0.112247951328754,-0.897544085979462,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.431807905435562,0.0343774408102036,-0.90131014585495,0.434476673603058,0.154153734445572,-0.887393116950989,0.431807905435562,0.0343774408102036,-0.90131014585495,0.449112385511398,0.130921795964241,-0.883831083774567,0.439290821552277,0.0719726011157036,-0.895457088947296,0.436281949281693,0.158940926194191,-0.88566118478775,0.403981447219849,0.107731692492962,-0.908401191234589,0.439290821552277,0.0719726011157036,-0.895457088947296,0.494154036045074,0.0386465527117252,-0.868514895439148,0.515911281108856,0.0407111160457134,-0.855674028396606,0.436281949281693,0.158940926194191,-0.88566118478775,0.442825734615326,0.169559717178345,-0.880428791046143,0.442774802446365,0.166138172149658,-0.881106376647949,0.442825734615326,0.169559717178345,-0.880428791046143,0.418523907661438,0.161345154047012,-0.89375913143158,0.427571088075638,0.14288541674614,-0.89261782169342,0.40013924241066,0.193153232336044,-0.895868480205536,0.427571088075638,0.14288541674614,-0.89261782169342,0.418523907661438,0.161345154047012,-0.89375913143158,0.391468197107315,0.188982293009758,-0.900576591491699,0.396124839782715,0.069731593132019,-0.915544927120209,0.40013924241066,0.193153232336044,-0.895868480205536,0.42056205868721,-0.0716967880725861,-0.904426395893097,0.396124839782715,0.069731593132019,-0.915544927120209,0.418200671672821,-0.101268939673901,-0.902691900730133,0.421782821416855,0.12996418774128,-0.897334039211273,0.412497788667679,0.0884994193911552,-0.906649470329285,0.434476673603058,0.154153734445572,-0.887393116950989,0.412497788667679,0.0884994193911552,-0.906649470329285,0.421782821416855,0.12996418774128,-0.897334039211273,0.412632018327713,0.0507275611162186,-0.909484148025513,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.906115531921387,-0.0891732573509216,-0.413524776697159,\r\n0.877316296100616,-0.0274051334708929,-0.47912934422493,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.847461700439453,0.004508210811764,-0.530837297439575,0.877316296100616,-0.0274051334708929,-0.47912934422493,0.839300394058228,-0.109582863748074,-0.532509386539459,0.847461700439453,0.004508210811764,-0.530837297439575,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.840046465396881,-0.202502846717834,-0.503303527832031,0.839300394058228,-0.109582863748074,-0.532509386539459,0.934434711933136,-0.142130300402641,-0.32654345035553,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.953431189060211,-0.0484362319111824,-0.297695428133011,0.326190948486328,0.937670886516571,-0.119885943830013,0.821189641952515,0.569184124469757,-0.0409487150609493,0.508169293403625,0.859669208526611,0.052274577319622,0.326190948486328,0.937670886516571,-0.119885943830013,0.63890153169632,0.7608363032341,-0.11372235417366,0.821189641952515,0.569184124469757,-0.0409487150609493,0.63890153169632,0.7608363032341,-0.11372235417366,0.480638444423676,0.841849863529205,-0.245510503649712,0.888390362262726,0.451201111078262,-0.0847350805997849,0.85101193189621,0.485192596912384,-0.200914934277534,0.480638444423676,0.841849863529205,-0.245510503649712,0.692891955375671,0.652373015880585,-0.307099401950836,0.605300903320313,0.613496005535126,-0.507181525230408,0.917564868927002,0.309057474136353,-0.250115990638733,0.692891955375671,0.652373015880585,-0.307099401950836,0.892258107662201,0.05744693800807,-0.447856217622757,0.95126074552536,0.0947098955512047,-0.293484061956406,0.867564082145691,0.260370314121246,-0.423721313476563,0.917564868927002,0.309057474136353,-0.250115990638733,0.605300903320313,0.613496005535126,-0.507181525230408,0.867564082145691,0.260370314121246,-0.423721313476563,0.919285714626312,-0.136944457888603,-0.368998497724533,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.877898097038269,-0.0775488093495369,-0.472526282072067,0.919285714626312,-0.136944457888603,-0.368998497724533,\r\n0.934434711933136,-0.142130300402641,-0.32654345035553,0.952265322208405,-0.0945814773440361,-0.290249884128571,0.937874674797058,-0.0427793972194195,-0.344326674938202,0.892258107662201,0.05744693800807,-0.447856217622757,0.877898097038269,-0.0775488093495369,-0.472526282072067,0.849711060523987,0.368712246417999,0.376884937286377,0.378518521785736,0.804485499858856,0.457740694284439,0.733044981956482,0.591075718402863,0.336562812328339,0.733044981956482,0.591075718402863,0.336562812328339,0.647193133831024,0.71926474571228,0.252584934234619,0.909934878349304,0.373202383518219,0.180936858057976,0.7996426820755,0.580423593521118,0.153882682323456,0.647193133831024,0.71926474571228,0.252584934234619,0.346310555934906,0.909985363483429,0.228025332093239,0.508169293403625,0.859669208526611,0.052274577319622,0.346310555934906,0.909985363483429,0.228025332093239,-0.00556773785501719,0.994250416755676,0.106933623552322,0.916222453117371,-0.0517266392707825,0.397316813468933,0.882627546787262,-0.0935246720910072,0.460675179958344,0.910268068313599,-0.0997210219502449,0.401830404996872,0.866121351718903,-0.0751470625400543,0.49415248632431,0.910090208053589,-0.0187982060015202,0.413983404636383,0.910268068313599,-0.0997210219502449,0.401830404996872,0.896791279315948,0.109696745872498,0.428639322519302,0.910090208053589,-0.0187982060015202,0.413983404636383,0.820687651634216,0.226093679666519,0.524741113185883,0.896791279315948,0.109696745872498,0.428639322519302,0.717525243759155,0.447146147489548,0.53405773639679,0.665616035461426,0.544860184192657,0.509983003139496,0.665616035461426,0.544860184192657,0.509983003139496,0.642104983329773,0.616546869277954,0.455599725246429,0.900400161743164,0.204258814454079,0.384132534265518,0.849711060523987,0.368712246417999,0.376884937286377,0.642104983329773,0.616546869277954,0.455599725246429,0.378518521785736,0.804485499858856,0.457740694284439,0.340507060289383,0.102761089801788,-0.934609532356262,0.331424683332443,0.0328037515282631,-0.942911207675934,0.404817074537277,0.0324165411293507,-0.913822829723358,\r\n0.404817074537277,0.0324165411293507,-0.913822829723358,0.412632018327713,0.0507275611162186,-0.909484148025513,0.421782821416855,0.12996418774128,-0.897334039211273,0.253347367048264,0.0762910544872284,-0.964362323284149,0.239401906728745,0.0726002082228661,-0.968202352523804,0.331424683332443,0.0328037515282631,-0.942911207675934,-0.013318095356226,-0.584911465644836,-0.810987710952759,0.0825831890106201,-0.70145446062088,-0.707913458347321,0.00795500539243221,-0.64164274930954,-0.766962349414825,0.111658006906509,-0.728790760040283,-0.675571143627167,0.158299073576927,-0.782573819160461,-0.602095782756805,0.161017268896103,-0.80111837387085,-0.576439499855042,0.205546766519547,-0.839059352874756,-0.503715932369232,0.158299073576927,-0.782573819160461,-0.602095782756805,0.140114828944206,-0.788483798503876,-0.598883092403412,0.111658006906509,-0.728790760040283,-0.675571143627167,0.134201645851135,-0.7474005818367,-0.650678217411041,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.205546766519547,-0.839059352874756,-0.503715932369232,0.179862946271896,-0.852266728878021,-0.491213440895081,0.247956663370132,-0.881808757781982,-0.401161700487137,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.134201645851135,-0.7474005818367,-0.650678217411041,0.0825831890106201,-0.70145446062088,-0.707913458347321,-0.013318095356226,-0.584911465644836,-0.810987710952759,-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.0762273445725441,-0.47655987739563,-0.875831007957459,0.583714008331299,-0.0530277937650681,0.810225784778595,0.669700503349304,-0.025288887321949,0.742200493812561,0.583012282848358,0.0535014979541302,0.810699760913849,0.761099398136139,-0.0321028530597687,0.647840321063995,0.687962591648102,-0.107035167515278,0.717809736728668,0.739551186561584,-0.137504622340202,0.658905327320099,0.583714008331299,-0.0530277937650681,0.810225784778595,0.687962591648102,-0.107035167515278,0.717809736728668,0.669700503349304,-0.025288887321949,0.742200493812561,0.739551186561584,-0.137504622340202,0.658905327320099,\r\n0.686615943908691,-0.149596393108368,0.711462795734406,0.751334667205811,-0.0417165234684944,0.658601403236389,0.788228750228882,-0.0774906203150749,0.610483825206757,0.730005145072937,-0.131257876753807,0.670718908309937,0.733122289180756,0.0150710213929415,0.679929614067078,0.733122289180756,0.0150710213929415,0.679929614067078,0.785127997398376,0.0218252278864384,0.618948757648468,0.777699649333954,-0.00232962076552212,0.628631591796875,0.828526020050049,-0.0143947917968035,0.559765338897705,0.785127997398376,0.0218252278864384,0.618948757648468,0.84008264541626,-0.0480614714324474,0.540324926376343,0.882633864879608,-0.0556233339011669,0.466758400201797,0.84008264541626,-0.0480614714324474,0.540324926376343,0.89834588766098,-0.0524194724857807,0.436149895191193,0.860083043575287,-0.0551226325333118,0.507167160511017,0.877866506576538,-0.117551498115063,0.464254111051559,0.882627546787262,-0.0935246720910072,0.460675179958344,0.877866506576538,-0.117551498115063,0.464254111051559,0.882633864879608,-0.0556233339011669,0.466758400201797,0.911953866481781,-0.0814872831106186,0.402119129896164,0.744991838932037,-0.113316841423512,0.657378435134888,0.68681788444519,-0.0555173791944981,0.72470611333847,0.651858985424042,-0.11746571958065,0.749187231063843,0.744991838932037,-0.113316841423512,0.657378435134888,0.651858985424042,-0.11746571958065,0.749187231063843,0.730005145072937,-0.131257876753807,0.670718908309937,0.68681788444519,-0.0555173791944981,0.72470611333847,0.751334667205811,-0.0417165234684944,0.658601403236389,0.686615943908691,-0.149596393108368,0.711462795734406,0.782498419284821,-0.107972010970116,-0.613219439983368,0.76905882358551,-0.188914597034454,-0.61062228679657,0.779802620410919,-0.198811009526253,-0.593617737293243,0.758010149002075,-0.200488954782486,-0.620664656162262,0.781730234622955,-0.22161303460598,-0.582911193370819,0.730792641639709,-0.325209617614746,-0.600150525569916,0.799534976482391,-0.118103802204132,-0.588893234729767,0.779802620410919,-0.198811009526253,-0.593617737293243,0.781730234622955,-0.22161303460598,-0.582911193370819,\r\n0.730792641639709,-0.325209617614746,-0.600150525569916,0.749169170856476,-0.359485030174255,-0.556341528892517,0.758010149002075,-0.200488954782486,-0.620664656162262,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.840046465396881,-0.202502846717834,-0.503303527832031,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.758010149002075,-0.200488954782486,-0.620664656162262,0.793580234050751,-0.305114090442657,-0.526436746120453,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.758010149002075,-0.200488954782486,-0.620664656162262,0.749169170856476,-0.359485030174255,-0.556341528892517,0.793580234050751,-0.305114090442657,-0.526436746120453,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.782498419284821,-0.107972010970116,-0.613219439983368,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.750596582889557,-0.10404921323061,-0.652516961097717,0.715163707733154,-0.0116750160232186,-0.698859333992004,0.750596582889557,-0.10404921323061,-0.652516961097717,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.71671336889267,-0.106325015425682,-0.689214587211609,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.71671336889267,-0.106325015425682,-0.689214587211609,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.657205581665039,-0.0169059820473194,-0.753521621227264,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.577029764652252,-0.143343761563301,-0.804045498371124,0.560377955436707,-0.047677468508482,-0.826863527297974,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.494154036045074,0.0386465527117252,-0.868514895439148,0.560377955436707,-0.047677468508482,-0.826863527297974,0.532982885837555,0.0258844122290611,-0.845729887485504,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.418200671672821,-0.101268939673901,-0.902691900730133,0.530326843261719,-0.0663386061787605,-0.84519374370575,\r\n0.516734421253204,0.0632454976439476,-0.853806376457214,0.431807905435562,0.0343774408102036,-0.90131014585495,0.449112385511398,0.130921795964241,-0.883831083774567,0.431807905435562,0.0343774408102036,-0.90131014585495,0.516734421253204,0.0632454976439476,-0.853806376457214,0.421782821416855,0.12996418774128,-0.897334039211273,0.434476673603058,0.154153734445572,-0.887393116950989,0.449112385511398,0.130921795964241,-0.883831083774567,0.439290821552277,0.0719726011157036,-0.895457088947296,0.503997385501862,0.116093166172504,-0.855867326259613,0.436281949281693,0.158940926194191,-0.88566118478775,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.515911281108856,0.0407111160457134,-0.855674028396606,0.494154036045074,0.0386465527117252,-0.868514895439148,0.439290821552277,0.0719726011157036,-0.895457088947296,0.515911281108856,0.0407111160457134,-0.855674028396606,0.503997385501862,0.116093166172504,-0.855867326259613,0.436281949281693,0.158940926194191,-0.88566118478775,0.503997385501862,0.116093166172504,-0.855867326259613,0.442825734615326,0.169559717178345,-0.880428791046143,0.442825734615326,0.169559717178345,-0.880428791046143,0.411621570587158,0.0613379664719105,-0.909288287162781,0.418523907661438,0.161345154047012,-0.89375913143158,0.378516048192978,0.203789457678795,-0.902881681919098,0.40013924241066,0.193153232336044,-0.895868480205536,0.418523907661438,0.161345154047012,-0.89375913143158,0.396124839782715,0.069731593132019,-0.915544927120209,0.391468197107315,0.188982293009758,-0.900576591491699,0.400077432394028,0.0609154887497425,-0.914454579353333,0.391468197107315,0.188982293009758,-0.900576591491699,0.40013924241066,0.193153232336044,-0.895868480205536,0.378516048192978,0.203789457678795,-0.902881681919098,0.396124839782715,0.069731593132019,-0.915544927120209,0.400077432394028,0.0609154887497425,-0.914454579353333,0.418200671672821,-0.101268939673901,-0.902691900730133,0.906115531921387,-0.0891732573509216,-0.413524776697159,0.912568330764771,-0.0326752588152885,-0.407616525888443,0.934434711933136,-0.142130300402641,-0.32654345035553,\r\n0.877316296100616,-0.0274051334708929,-0.47912934422493,0.906115531921387,-0.0891732573509216,-0.413524776697159,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.887807905673981,0.0187924914062023,-0.45983025431633,0.847461700439453,0.004508210811764,-0.530837297439575,0.82072639465332,0.0575746484100819,-0.568412959575653,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.847461700439453,0.004508210811764,-0.530837297439575,0.0151238115504384,0.997338533401489,-0.0713231563568115,0.326190948486328,0.937670886516571,-0.119885943830013,0.508169293403625,0.859669208526611,0.052274577319622,0.63890153169632,0.7608363032341,-0.11372235417366,0.326190948486328,0.937670886516571,-0.119885943830013,0.24037367105484,0.957858920097351,-0.157246500253677,0.63890153169632,0.7608363032341,-0.11372235417366,0.17089356482029,0.962077379226685,-0.212608054280281,0.480638444423676,0.841849863529205,-0.245510503649712,0.277690649032593,0.878417909145355,-0.388933837413788,0.692891955375671,0.652373015880585,-0.307099401950836,0.480638444423676,0.841849863529205,-0.245510503649712,0.692891955375671,0.652373015880585,-0.307099401950836,0.277690649032593,0.878417909145355,-0.388933837413788,0.605300903320313,0.613496005535126,-0.507181525230408,0.892258107662201,0.05744693800807,-0.447856217622757,0.867564082145691,0.260370314121246,-0.423721313476563,0.723280549049377,0.352552324533463,-0.593777716159821,0.605300903320313,0.613496005535126,-0.507181525230408,0.723280549049377,0.352552324533463,-0.593777716159821,0.867564082145691,0.260370314121246,-0.423721313476563,0.901640653610229,-0.135849609971046,-0.410595804452896,0.919285714626312,-0.136944457888603,-0.368998497724533,0.877898097038269,-0.0775488093495369,-0.472526282072067,0.919285714626312,-0.136944457888603,-0.368998497724533,0.901640653610229,-0.135849609971046,-0.410595804452896,0.934434711933136,-0.142130300402641,-0.32654345035553,0.892258107662201,0.05744693800807,-0.447856217622757,0.771137416362762,0.145721063017845,-0.619768023490906,\r\n0.877898097038269,-0.0775488093495369,-0.472526282072067,0.166172489523888,0.929085731506348,0.33043360710144,0.733044981956482,0.591075718402863,0.336562812328339,0.378518521785736,0.804485499858856,0.457740694284439,0.166172489523888,0.929085731506348,0.33043360710144,0.647193133831024,0.71926474571228,0.252584934234619,0.733044981956482,0.591075718402863,0.336562812328339,0.166172489523888,0.929085731506348,0.33043360710144,0.346310555934906,0.909985363483429,0.228025332093239,0.647193133831024,0.71926474571228,0.252584934234619,-0.00556773785501719,0.994250416755676,0.106933623552322,0.346310555934906,0.909985363483429,0.228025332093239,-0.0916019454598427,0.970983266830444,0.220908433198929,0.0151238115504384,0.997338533401489,-0.0713231563568115,0.508169293403625,0.859669208526611,0.052274577319622,-0.00556773785501719,0.994250416755676,0.106933623552322,0.882627546787262,-0.0935246720910072,0.460675179958344,0.866121351718903,-0.0751470625400543,0.49415248632431,0.910268068313599,-0.0997210219502449,0.401830404996872,0.866121351718903,-0.0751470625400543,0.49415248632431,0.772047400474548,0.158646315336227,0.615446269512177,0.910090208053589,-0.0187982060015202,0.413983404636383,0.820687651634216,0.226093679666519,0.524741113185883,0.910090208053589,-0.0187982060015202,0.413983404636383,0.772047400474548,0.158646315336227,0.615446269512177,0.896791279315948,0.109696745872498,0.428639322519302,0.820687651634216,0.226093679666519,0.524741113185883,0.717525243759155,0.447146147489548,0.53405773639679,0.23295059800148,0.817159473896027,0.527242124080658,0.665616035461426,0.544860184192657,0.509983003139496,0.717525243759155,0.447146147489548,0.53405773639679,0.107936978340149,0.890272974967957,0.442451655864716,0.642104983329773,0.616546869277954,0.455599725246429,0.665616035461426,0.544860184192657,0.509983003139496,0.642104983329773,0.616546869277954,0.455599725246429,0.107936978340149,0.890272974967957,0.442451655864716,0.378518521785736,0.804485499858856,0.457740694284439,0.340507060289383,0.102761089801788,-0.934609532356262,\r\n0.253347367048264,0.0762910544872284,-0.964362323284149,0.331424683332443,0.0328037515282631,-0.942911207675934,0.404817074537277,0.0324165411293507,-0.913822829723358,0.421782821416855,0.12996418774128,-0.897334039211273,0.340507060289383,0.102761089801788,-0.934609532356262,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.0825831890106201,-0.70145446062088,-0.707913458347321,-0.013318095356226,-0.584911465644836,-0.810987710952759,0.111658006906509,-0.728790760040283,-0.675571143627167,0.113429233431816,-0.718660473823547,-0.686047255992889,0.158299073576927,-0.782573819160461,-0.602095782756805,0.113429233431816,-0.718660473823547,-0.686047255992889,0.140114828944206,-0.788483798503876,-0.598883092403412,0.158299073576927,-0.782573819160461,-0.602095782756805,0.205546766519547,-0.839059352874756,-0.503715932369232,0.140114828944206,-0.788483798503876,-0.598883092403412,0.179862946271896,-0.852266728878021,-0.491213440895081,0.111658006906509,-0.728790760040283,-0.675571143627167,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.183840230107307,-0.879487276077271,-0.438981503248215,0.247956663370132,-0.881808757781982,-0.401161700487137,0.179862946271896,-0.852266728878021,-0.491213440895081,-0.013318095356226,-0.584911465644836,-0.810987710952759,-0.0762273445725441,-0.47655987739563,-0.875831007957459,0.0449758768081665,-0.636133015155792,-0.770267426967621,0.700553119182587,-0.210871770977974,0.681731820106506,0.739551186561584,-0.137504622340202,0.658905327320099,0.687962591648102,-0.107035167515278,0.717809736728668,0.583714008331299,-0.0530277937650681,0.810225784778595,0.587347745895386,-0.165840432047844,0.792161226272583,0.687962591648102,-0.107035167515278,0.717809736728668,0.739551186561584,-0.137504622340202,0.658905327320099,0.700553119182587,-0.210871770977974,0.681731820106506,0.686615943908691,-0.149596393108368,0.711462795734406,0.665403604507446,-0.0100066941231489,0.746416687965393,0.733122289180756,0.0150710213929415,0.679929614067078,\r\n0.730005145072937,-0.131257876753807,0.670718908309937,0.741955637931824,0.00544297741726041,0.670426785945892,0.785127997398376,0.0218252278864384,0.618948757648468,0.733122289180756,0.0150710213929415,0.679929614067078,0.741955637931824,0.00544297741726041,0.670426785945892,0.84008264541626,-0.0480614714324474,0.540324926376343,0.785127997398376,0.0218252278864384,0.618948757648468,0.849447190761566,-0.131743595004082,0.510962724685669,0.89834588766098,-0.0524194724857807,0.436149895191193,0.84008264541626,-0.0480614714324474,0.540324926376343,0.882633864879608,-0.0556233339011669,0.466758400201797,0.89834588766098,-0.0524194724857807,0.436149895191193,0.911953866481781,-0.0814872831106186,0.402119129896164,0.882627546787262,-0.0935246720910072,0.460675179958344,0.877866506576538,-0.117551498115063,0.464254111051559,0.866121351718903,-0.0751470625400543,0.49415248632431,0.877866506576538,-0.117551498115063,0.464254111051559,0.911953866481781,-0.0814872831106186,0.402119129896164,0.857474625110626,-0.0745028555393219,0.509103357791901,0.651858985424042,-0.11746571958065,0.749187231063843,0.68681788444519,-0.0555173791944981,0.72470611333847,0.599048495292664,-0.0913404375314713,0.79548579454422,0.598528623580933,-0.108197882771492,0.793761014938354,0.730005145072937,-0.131257876753807,0.670718908309937,0.651858985424042,-0.11746571958065,0.749187231063843,0.68681788444519,-0.0555173791944981,0.72470611333847,0.686615943908691,-0.149596393108368,0.711462795734406,0.599048495292664,-0.0913404375314713,0.79548579454422,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.782498419284821,-0.107972010970116,-0.613219439983368,0.779802620410919,-0.198811009526253,-0.593617737293243,0.758010149002075,-0.200488954782486,-0.620664656162262,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.781730234622955,-0.22161303460598,-0.582911193370819,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.779802620410919,-0.198811009526253,-0.593617737293243,0.799534976482391,-0.118103802204132,-0.588893234729767,\r\n0.799534976482391,-0.118103802204132,-0.588893234729767,0.781730234622955,-0.22161303460598,-0.582911193370819,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.804228782653809,0.076808899641037,-0.589335501194,0.758010149002075,-0.200488954782486,-0.620664656162262,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.747223496437073,0.0543663650751114,-0.662345230579376,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.810498237609863,0.00581533601507545,-0.585712075233459,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.705606520175934,-0.105049684643745,-0.7007737159729,0.750596582889557,-0.10404921323061,-0.652516961097717,0.682415962219238,-0.0241411831229925,-0.730565190315247,0.750596582889557,-0.10404921323061,-0.652516961097717,0.71671336889267,-0.106325015425682,-0.689214587211609,0.73505973815918,-0.174831733107567,-0.655073225498199,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.71671336889267,-0.106325015425682,-0.689214587211609,0.622293531894684,-0.176686689257622,-0.762582719326019,0.577029764652252,-0.143343761563301,-0.804045498371124,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.560377955436707,-0.047677468508482,-0.826863527297974,0.577029764652252,-0.143343761563301,-0.804045498371124,0.532982885837555,0.0258844122290611,-0.845729887485504,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.532982885837555,0.0258844122290611,-0.845729887485504,0.418200671672821,-0.101268939673901,-0.902691900730133,0.400077432394028,0.0609154887497425,-0.914454579353333,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.58912605047226,-0.000994426081888378,-0.80804044008255,0.516734421253204,0.0632454976439476,-0.853806376457214,0.516734421253204,0.0632454976439476,-0.853806376457214,\r\n0.466232895851135,0.150833085179329,-0.871708750724792,0.449112385511398,0.130921795964241,-0.883831083774567,0.449112385511398,0.130921795964241,-0.883831083774567,0.396575659513474,0.175626769661903,-0.901045441627502,0.421782821416855,0.12996418774128,-0.897334039211273,0.515911281108856,0.0407111160457134,-0.855674028396606,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.561628639698029,0.0251127853989601,-0.827008128166199,0.515911281108856,0.0407111160457134,-0.855674028396606,0.561628639698029,0.0251127853989601,-0.827008128166199,0.503997385501862,0.116093166172504,-0.855867326259613,0.503997385501862,0.116093166172504,-0.855867326259613,0.457025170326233,0.0810139253735542,-0.885756492614746,0.442825734615326,0.169559717178345,-0.880428791046143,0.457025170326233,0.0810139253735542,-0.885756492614746,0.411621570587158,0.0613379664719105,-0.909288287162781,0.442825734615326,0.169559717178345,-0.880428791046143,0.375530391931534,0.0489653833210468,-0.925515651702881,0.418523907661438,0.161345154047012,-0.89375913143158,0.411621570587158,0.0613379664719105,-0.909288287162781,0.378516048192978,0.203789457678795,-0.902881681919098,0.418523907661438,0.161345154047012,-0.89375913143158,0.375530391931534,0.0489653833210468,-0.925515651702881,0.400077432394028,0.0609154887497425,-0.914454579353333,0.391468197107315,0.188982293009758,-0.900576591491699,0.532982885837555,0.0258844122290611,-0.845729887485504,0.378516048192978,0.203789457678795,-0.902881681919098,0.340008825063705,0.126264542341232,-0.93190723657608,0.391468197107315,0.188982293009758,-0.900576591491699,0.930119335651398,-0.122098967432976,-0.34636664390564,0.906115531921387,-0.0891732573509216,-0.413524776697159,0.934434711933136,-0.142130300402641,-0.32654345035553,0.930119335651398,-0.122098967432976,-0.34636664390564,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.906115531921387,-0.0891732573509216,-0.413524776697159,0.929926156997681,-0.0419335551559925,-0.365347474813461,0.887807905673981,0.0187924914062023,-0.45983025431633,\r\n0.905804574489594,-0.0291232783347368,-0.422693461179733,0.847461700439453,0.004508210811764,-0.530837297439575,0.887807905673981,0.0187924914062023,-0.45983025431633,0.82072639465332,0.0575746484100819,-0.568412959575653,0.804228782653809,0.076808899641037,-0.589335501194,0.812345862388611,-0.0315922945737839,-0.582319498062134,0.82072639465332,0.0575746484100819,-0.568412959575653,0.326190948486328,0.937670886516571,-0.119885943830013,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.029251616448164,0.982301592826843,-0.185007527470589,0.24037367105484,0.957858920097351,-0.157246500253677,0.326190948486328,0.937670886516571,-0.119885943830013,-0.029251616448164,0.982301592826843,-0.185007527470589,0.24037367105484,0.957858920097351,-0.157246500253677,0.17089356482029,0.962077379226685,-0.212608054280281,0.63890153169632,0.7608363032341,-0.11372235417366,0.17089356482029,0.962077379226685,-0.212608054280281,0.109734565019608,0.959151685237885,-0.260741740465164,0.480638444423676,0.841849863529205,-0.245510503649712,0.277690649032593,0.878417909145355,-0.388933837413788,0.480638444423676,0.841849863529205,-0.245510503649712,0.214110806584358,0.930998265743256,-0.295632779598236,0.277690649032593,0.878417909145355,-0.388933837413788,0.11439723521471,0.821230530738831,-0.559011161327362,0.605300903320313,0.613496005535126,-0.507181525230408,0.892258107662201,0.05744693800807,-0.447856217622757,0.723280549049377,0.352552324533463,-0.593777716159821,0.771137416362762,0.145721063017845,-0.619768023490906,0.605300903320313,0.613496005535126,-0.507181525230408,0.325681537389755,0.671046555042267,-0.66605406999588,0.723280549049377,0.352552324533463,-0.593777716159821,0.901640653610229,-0.135849609971046,-0.410595804452896,0.877898097038269,-0.0775488093495369,-0.472526282072067,0.825193285942078,0.00470272777602077,-0.564830720424652,0.933074057102203,-0.151941388845444,-0.326016128063202,0.934434711933136,-0.142130300402641,-0.32654345035553,0.901640653610229,-0.135849609971046,-0.410595804452896,0.825193285942078,0.00470272777602077,-0.564830720424652,\r\n0.877898097038269,-0.0775488093495369,-0.472526282072067,0.771137416362762,0.145721063017845,-0.619768023490906,0.378518521785736,0.804485499858856,0.457740694284439,-0.182877361774445,0.916396498680115,0.356052339076996,0.166172489523888,0.929085731506348,0.33043360710144,0.346310555934906,0.909985363483429,0.228025332093239,0.166172489523888,0.929085731506348,0.33043360710144,-0.0916019454598427,0.970983266830444,0.220908433198929,-0.0916019454598427,0.970983266830444,0.220908433198929,-0.161227583885193,0.970903038978577,0.17706735432148,-0.00556773785501719,0.994250416755676,0.106933623552322,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.00556773785501719,0.994250416755676,0.106933623552322,-0.0395304672420025,0.999216496944427,0.00191631028428674,0.772047400474548,0.158646315336227,0.615446269512177,0.866121351718903,-0.0751470625400543,0.49415248632431,0.748441934585571,0.0530710220336914,0.661073327064514,0.772047400474548,0.158646315336227,0.615446269512177,0.531978487968445,0.483618944883347,0.695062160491943,0.820687651634216,0.226093679666519,0.524741113185883,0.820687651634216,0.226093679666519,0.524741113185883,0.493482708930969,0.618703722953796,0.611293971538544,0.717525243759155,0.447146147489548,0.53405773639679,0.665616035461426,0.544860184192657,0.509983003139496,0.23295059800148,0.817159473896027,0.527242124080658,0.107936978340149,0.890272974967957,0.442451655864716,0.493482708930969,0.618703722953796,0.611293971538544,0.23295059800148,0.817159473896027,0.527242124080658,0.717525243759155,0.447146147489548,0.53405773639679,0.378518521785736,0.804485499858856,0.457740694284439,0.107936978340149,0.890272974967957,0.442451655864716,-0.182877361774445,0.916396498680115,0.356052339076996,0.340507060289383,0.102761089801788,-0.934609532356262,0.250142753124237,0.118455670773983,-0.960935354232788,0.253347367048264,0.0762910544872284,-0.964362323284149,0.396575659513474,0.175626769661903,-0.901045441627502,0.340507060289383,0.102761089801788,-0.934609532356262,0.421782821416855,0.12996418774128,-0.897334039211273,\r\n0.113429233431816,-0.718660473823547,-0.686047255992889,0.111658006906509,-0.728790760040283,-0.675571143627167,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.113429233431816,-0.718660473823547,-0.686047255992889,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.140114828944206,-0.788483798503876,-0.598883092403412,0.140114828944206,-0.788483798503876,-0.598883092403412,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.179862946271896,-0.852266728878021,-0.491213440895081,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.0449758768081665,-0.636133015155792,-0.770267426967621,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.183840230107307,-0.879487276077271,-0.438981503248215,0.179862946271896,-0.852266728878021,-0.491213440895081,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0449758768081665,-0.636133015155792,-0.770267426967621,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.587347745895386,-0.165840432047844,0.792161226272583,0.700553119182587,-0.210871770977974,0.681731820106506,0.687962591648102,-0.107035167515278,0.717809736728668,0.700553119182587,-0.210871770977974,0.681731820106506,0.687761783599854,-0.276548326015472,0.671196401119232,0.686615943908691,-0.149596393108368,0.711462795734406,0.665403604507446,-0.0100066941231489,0.746416687965393,0.741955637931824,0.00544297741726041,0.670426785945892,0.733122289180756,0.0150710213929415,0.679929614067078,0.665403604507446,-0.0100066941231489,0.746416687965393,0.730005145072937,-0.131257876753807,0.670718908309937,0.598528623580933,-0.108197882771492,0.793761014938354,0.788277149200439,-0.128093674778938,0.601839780807495,0.84008264541626,-0.0480614714324474,0.540324926376343,0.741955637931824,0.00544297741726041,0.670426785945892,0.909076452255249,-0.128871932625771,0.396196752786636,0.89834588766098,-0.0524194724857807,0.436149895191193,0.849447190761566,-0.131743595004082,0.510962724685669,0.788277149200439,-0.128093674778938,0.601839780807495,\r\n0.849447190761566,-0.131743595004082,0.510962724685669,0.84008264541626,-0.0480614714324474,0.540324926376343,0.909076452255249,-0.128871932625771,0.396196752786636,0.911953866481781,-0.0814872831106186,0.402119129896164,0.89834588766098,-0.0524194724857807,0.436149895191193,0.877866506576538,-0.117551498115063,0.464254111051559,0.857474625110626,-0.0745028555393219,0.509103357791901,0.866121351718903,-0.0751470625400543,0.49415248632431,0.857474625110626,-0.0745028555393219,0.509103357791901,0.911953866481781,-0.0814872831106186,0.402119129896164,0.904326260089874,-0.112856507301331,0.411651909351349,0.599048495292664,-0.0913404375314713,0.79548579454422,0.598528623580933,-0.108197882771492,0.793761014938354,0.651858985424042,-0.11746571958065,0.749187231063843,0.686615943908691,-0.149596393108368,0.711462795734406,0.591980755329132,-0.164571866393089,0.788970649242401,0.599048495292664,-0.0913404375314713,0.79548579454422,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.758010149002075,-0.200488954782486,-0.620664656162262,0.701314330101013,0.00759075116366148,-0.712811648845673,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.799534976482391,-0.118103802204132,-0.588893234729767,0.785323977470398,0.00897960364818573,-0.619019746780396,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.785323977470398,0.00897960364818573,-0.619019746780396,0.799534976482391,-0.118103802204132,-0.588893234729767,0.747223496437073,0.0543663650751114,-0.662345230579376,0.81098747253418,-0.0847880840301514,-0.578886985778809,0.804228782653809,0.076808899641037,-0.589335501194,0.747223496437073,0.0543663650751114,-0.662345230579376,0.701314330101013,0.00759075116366148,-0.712811648845673,0.758010149002075,-0.200488954782486,-0.620664656162262,0.785323977470398,0.00897960364818573,-0.619019746780396,0.810498237609863,0.00581533601507545,-0.585712075233459,0.816492259502411,-0.0912668853998184,-0.570097088813782,0.750875294208527,0.024048937484622,-0.660005867481232,0.803958356380463,-0.0606511309742928,-0.591584503650665,\r\n0.810498237609863,0.00581533601507545,-0.585712075233459,0.750875294208527,0.024048937484622,-0.660005867481232,0.705606520175934,-0.105049684643745,-0.7007737159729,0.803958356380463,-0.0606511309742928,-0.591584503650665,0.705606520175934,-0.105049684643745,-0.7007737159729,0.731465041637421,-0.158801645040512,-0.663129508495331,0.750596582889557,-0.10404921323061,-0.652516961097717,0.731465041637421,-0.158801645040512,-0.663129508495331,0.71671336889267,-0.106325015425682,-0.689214587211609,0.750596582889557,-0.10404921323061,-0.652516961097717,0.73505973815918,-0.174831733107567,-0.655073225498199,0.622293531894684,-0.176686689257622,-0.762582719326019,0.641763389110565,-0.0569330751895905,-0.76478636264801,0.71671336889267,-0.106325015425682,-0.689214587211609,0.731465041637421,-0.158801645040512,-0.663129508495331,0.73505973815918,-0.174831733107567,-0.655073225498199,0.622293531894684,-0.176686689257622,-0.762582719326019,0.536210477352142,-0.210622563958168,-0.817383885383606,0.577029764652252,-0.143343761563301,-0.804045498371124,0.569018542766571,-0.0485210977494717,-0.820891857147217,0.577029764652252,-0.143343761563301,-0.804045498371124,0.641761243343353,-0.104205667972565,-0.759791731834412,0.532982885837555,0.0258844122290611,-0.845729887485504,0.500616431236267,0.104583606123924,-0.859328389167786,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.58912605047226,-0.000994426081888378,-0.80804044008255,0.530326843261719,-0.0663386061787605,-0.84519374370575,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.516734421253204,0.0632454976439476,-0.853806376457214,0.58912605047226,-0.000994426081888378,-0.80804044008255,0.416562587022781,0.0665255561470985,-0.906669616699219,0.466232895851135,0.150833085179329,-0.871708750724792,0.516734421253204,0.0632454976439476,-0.853806376457214,0.449112385511398,0.130921795964241,-0.883831083774567,0.466232895851135,0.150833085179329,-0.871708750724792,0.396575659513474,0.175626769661903,-0.901045441627502,\r\n0.569018542766571,-0.0485210977494717,-0.820891857147217,0.641761243343353,-0.104205667972565,-0.759791731834412,0.561628639698029,0.0251127853989601,-0.827008128166199,0.457025170326233,0.0810139253735542,-0.885756492614746,0.503997385501862,0.116093166172504,-0.855867326259613,0.561628639698029,0.0251127853989601,-0.827008128166199,0.457025170326233,0.0810139253735542,-0.885756492614746,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.411621570587158,0.0613379664719105,-0.909288287162781,0.375530391931534,0.0489653833210468,-0.925515651702881,0.411621570587158,0.0613379664719105,-0.909288287162781,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.378516048192978,0.203789457678795,-0.902881681919098,0.375530391931534,0.0489653833210468,-0.925515651702881,0.340008825063705,0.126264542341232,-0.93190723657608,0.532982885837555,0.0258844122290611,-0.845729887485504,0.391468197107315,0.188982293009758,-0.900576591491699,0.500616431236267,0.104583606123924,-0.859328389167786,0.391468197107315,0.188982293009758,-0.900576591491699,0.340008825063705,0.126264542341232,-0.93190723657608,0.500616431236267,0.104583606123924,-0.859328389167786,0.930119335651398,-0.122098967432976,-0.34636664390564,0.934434711933136,-0.142130300402641,-0.32654345035553,0.933074057102203,-0.151941388845444,-0.326016128063202,0.930119335651398,-0.122098967432976,-0.34636664390564,0.93237829208374,-0.0581103414297104,-0.356782644987106,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.929926156997681,-0.0419335551559925,-0.365347474813461,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.887807905673981,0.0187924914062023,-0.45983025431633,0.929926156997681,-0.0419335551559925,-0.365347474813461,0.905804574489594,-0.0291232783347368,-0.422693461179733,0.93237829208374,-0.0581103414297104,-0.356782644987106,0.84541255235672,0.0621898360550404,-0.530480742454529,0.82072639465332,0.0575746484100819,-0.568412959575653,0.887807905673981,0.0187924914062023,-0.45983025431633,0.82072639465332,0.0575746484100819,-0.568412959575653,\r\n0.84541255235672,0.0621898360550404,-0.530480742454529,0.804228782653809,0.076808899641037,-0.589335501194,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.0895969495177269,0.986723303794861,-0.135460019111633,-0.029251616448164,0.982301592826843,-0.185007527470589,0.17089356482029,0.962077379226685,-0.212608054280281,0.24037367105484,0.957858920097351,-0.157246500253677,-0.029251616448164,0.982301592826843,-0.185007527470589,0.109734565019608,0.959151685237885,-0.260741740465164,0.17089356482029,0.962077379226685,-0.212608054280281,-0.0107405362650752,0.967220783233643,-0.253709435462952,0.214110806584358,0.930998265743256,-0.295632779598236,0.480638444423676,0.841849863529205,-0.245510503649712,0.109734565019608,0.959151685237885,-0.260741740465164,0.0267541762441397,0.950311362743378,-0.310149073600769,0.277690649032593,0.878417909145355,-0.388933837413788,0.214110806584358,0.930998265743256,-0.295632779598236,-0.00354774366132915,0.912640452384949,-0.408747762441635,0.11439723521471,0.821230530738831,-0.559011161327362,0.277690649032593,0.878417909145355,-0.388933837413788,0.605300903320313,0.613496005535126,-0.507181525230408,0.11439723521471,0.821230530738831,-0.559011161327362,0.325681537389755,0.671046555042267,-0.66605406999588,0.723280549049377,0.352552324533463,-0.593777716159821,0.390294700860977,0.551550924777985,-0.73719847202301,0.771137416362762,0.145721063017845,-0.619768023490906,0.325681537389755,0.671046555042267,-0.66605406999588,0.390294700860977,0.551550924777985,-0.73719847202301,0.723280549049377,0.352552324533463,-0.593777716159821,0.825193285942078,0.00470272777602077,-0.564830720424652,0.865739822387695,0.00583152705803514,-0.500460207462311,0.901640653610229,-0.135849609971046,-0.410595804452896,0.933074057102203,-0.151941388845444,-0.326016128063202,0.901640653610229,-0.135849609971046,-0.410595804452896,0.865739822387695,0.00583152705803514,-0.500460207462311,0.825193285942078,0.00470272777602077,-0.564830720424652,0.771137416362762,0.145721063017845,-0.619768023490906,0.520371437072754,0.363390386104584,-0.772761821746826,\r\n0.166172489523888,0.929085731506348,0.33043360710144,-0.182877361774445,0.916396498680115,0.356052339076996,-0.231166705489159,0.93628340959549,0.264452666044235,0.166172489523888,0.929085731506348,0.33043360710144,-0.231166705489159,0.93628340959549,0.264452666044235,-0.0916019454598427,0.970983266830444,0.220908433198929,-0.0916019454598427,0.970983266830444,0.220908433198929,-0.231166705489159,0.93628340959549,0.264452666044235,-0.161227583885193,0.970903038978577,0.17706735432148,-0.00556773785501719,0.994250416755676,0.106933623552322,-0.161227583885193,0.970903038978577,0.17706735432148,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.00556773785501719,0.994250416755676,0.106933623552322,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.0395304672420025,0.999216496944427,0.00191631028428674,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.0395304672420025,0.999216496944427,0.00191631028428674,-0.00161067896988243,0.996311128139496,-0.0857985988259315,0.857474625110626,-0.0745028555393219,0.509103357791901,0.748441934585571,0.0530710220336914,0.661073327064514,0.866121351718903,-0.0751470625400543,0.49415248632431,0.772047400474548,0.158646315336227,0.615446269512177,0.748441934585571,0.0530710220336914,0.661073327064514,0.540025055408478,0.279591917991638,0.793852150440216,0.531978487968445,0.483618944883347,0.695062160491943,0.772047400474548,0.158646315336227,0.615446269512177,0.451655179262161,0.423156559467316,0.785459101200104,0.493482708930969,0.618703722953796,0.611293971538544,0.820687651634216,0.226093679666519,0.524741113185883,0.531978487968445,0.483618944883347,0.695062160491943,0.107936978340149,0.890272974967957,0.442451655864716,0.23295059800148,0.817159473896027,0.527242124080658,-0.252997875213623,0.889519333839417,0.380456656217575,0.23295059800148,0.817159473896027,0.527242124080658,0.493482708930969,0.618703722953796,0.611293971538544,-0.0448035150766373,0.847279727458954,0.529253780841827,0.107936978340149,0.890272974967957,0.442451655864716,-0.252997875213623,0.889519333839417,0.380456656217575,\r\n-0.182877361774445,0.916396498680115,0.356052339076996,0.396575659513474,0.175626769661903,-0.901045441627502,0.250142753124237,0.118455670773983,-0.960935354232788,0.340507060289383,0.102761089801788,-0.934609532356262,0.113429233431816,-0.718660473823547,-0.686047255992889,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.065064512193203,-0.64322030544281,-0.76291161775589,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.113429233431816,-0.718660473823547,-0.686047255992889,0.065064512193203,-0.64322030544281,-0.76291161775589,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.140114828944206,-0.788483798503876,-0.598883092403412,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.140114828944206,-0.788483798503876,-0.598883092403412,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.106444992125034,-0.835839807987213,-0.538554608821869,0.179862946271896,-0.852266728878021,-0.491213440895081,0.0013695009984076,-0.558705568313599,-0.829364836215973,0.0538525581359863,-0.643992066383362,-0.763134300708771,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.183840230107307,-0.879487276077271,-0.438981503248215,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.587347745895386,-0.165840432047844,0.792161226272583,0.639882683753967,-0.303985416889191,0.705792427062988,0.700553119182587,-0.210871770977974,0.681731820106506,0.700553119182587,-0.210871770977974,0.681731820106506,0.639882683753967,-0.303985416889191,0.705792427062988,0.687761783599854,-0.276548326015472,0.671196401119232,0.686615943908691,-0.149596393108368,0.711462795734406,0.687761783599854,-0.276548326015472,0.671196401119232,0.591980755329132,-0.164571866393089,0.788970649242401,\r\n0.665403604507446,-0.0100066941231489,0.746416687965393,0.641718447208405,0.055818323045969,0.764906346797943,0.741955637931824,0.00544297741726041,0.670426785945892,0.607860743999481,-0.0321429222822189,0.793392777442932,0.665403604507446,-0.0100066941231489,0.746416687965393,0.598528623580933,-0.108197882771492,0.793761014938354,0.788277149200439,-0.128093674778938,0.601839780807495,0.741955637931824,0.00544297741726041,0.670426785945892,0.699201703071594,-0.0670666396617889,0.711771726608276,0.861106097698212,-0.240163490176201,0.44812685251236,0.909076452255249,-0.128871932625771,0.396196752786636,0.849447190761566,-0.131743595004082,0.510962724685669,0.849447190761566,-0.131743595004082,0.510962724685669,0.788277149200439,-0.128093674778938,0.601839780807495,0.807032465934753,-0.201482281088829,0.555070579051971,0.909076452255249,-0.128871932625771,0.396196752786636,0.904326260089874,-0.112856507301331,0.411651909351349,0.911953866481781,-0.0814872831106186,0.402119129896164,0.904326260089874,-0.112856507301331,0.411651909351349,0.750395953655243,0.0515172854065895,0.658977746963501,0.857474625110626,-0.0745028555393219,0.509103357791901,0.591980755329132,-0.164571866393089,0.788970649242401,0.598528623580933,-0.108197882771492,0.793761014938354,0.599048495292664,-0.0913404375314713,0.79548579454422,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.701314330101013,0.00759075116366148,-0.712811648845673,0.702745735645294,0.127479195594788,-0.699926614761353,0.768973350524902,-0.0777589306235313,-0.634534001350403,0.702745735645294,0.127479195594788,-0.699926614761353,0.785323977470398,0.00897960364818573,-0.619019746780396,0.747223496437073,0.0543663650751114,-0.662345230579376,0.804228782653809,0.076808899641037,-0.589335501194,0.767875909805298,0.13075402379036,-0.62711226940155,0.67008250951767,0.153944477438927,-0.726147651672363,0.701314330101013,0.00759075116366148,-0.712811648845673,0.747223496437073,0.0543663650751114,-0.662345230579376,0.785323977470398,0.00897960364818573,-0.619019746780396,\r\n0.766979277133942,0.108892433345318,-0.632364630699158,0.810498237609863,0.00581533601507545,-0.585712075233459,0.750875294208527,0.024048937484622,-0.660005867481232,0.810498237609863,0.00581533601507545,-0.585712075233459,0.766979277133942,0.108892433345318,-0.632364630699158,0.750875294208527,0.024048937484622,-0.660005867481232,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.705606520175934,-0.105049684643745,-0.7007737159729,0.705606520175934,-0.105049684643745,-0.7007737159729,0.701326549053192,-0.176600188016891,-0.69061803817749,0.731465041637421,-0.158801645040512,-0.663129508495331,0.622293531894684,-0.176686689257622,-0.762582719326019,0.73505973815918,-0.174831733107567,-0.655073225498199,0.708241701126099,-0.262440085411072,-0.655376791954041,0.701326549053192,-0.176600188016891,-0.69061803817749,0.73505973815918,-0.174831733107567,-0.655073225498199,0.731465041637421,-0.158801645040512,-0.663129508495331,0.598644256591797,-0.261029213666916,-0.757290303707123,0.536210477352142,-0.210622563958168,-0.817383885383606,0.622293531894684,-0.176686689257622,-0.762582719326019,0.536210477352142,-0.210622563958168,-0.817383885383606,0.629020214080811,-0.200109750032425,-0.751192033290863,0.577029764652252,-0.143343761563301,-0.804045498371124,0.629020214080811,-0.200109750032425,-0.751192033290863,0.641761243343353,-0.104205667972565,-0.759791731834412,0.577029764652252,-0.143343761563301,-0.804045498371124,0.500616431236267,0.104583606123924,-0.859328389167786,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.58912605047226,-0.000994426081888378,-0.80804044008255,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.416562587022781,0.0665255561470985,-0.906669616699219,0.516734421253204,0.0632454976439476,-0.853806376457214,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.416562587022781,0.0665255561470985,-0.906669616699219,0.285416543483734,0.128252550959587,-0.949783444404602,\r\n0.466232895851135,0.150833085179329,-0.871708750724792,0.285416543483734,0.128252550959587,-0.949783444404602,0.396575659513474,0.175626769661903,-0.901045441627502,0.466232895851135,0.150833085179329,-0.871708750724792,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.561628639698029,0.0251127853989601,-0.827008128166199,0.641761243343353,-0.104205667972565,-0.759791731834412,0.457025170326233,0.0810139253735542,-0.885756492614746,0.561628639698029,0.0251127853989601,-0.827008128166199,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.457025170326233,0.0810139253735542,-0.885756492614746,0.355169981718063,-0.148221299052238,-0.922975957393646,0.375530391931534,0.0489653833210468,-0.925515651702881,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.375530391931534,0.0489653833210468,-0.925515651702881,0.203887522220612,-0.061923123896122,-0.977033913135529,0.340008825063705,0.126264542341232,-0.93190723657608,0.340008825063705,0.126264542341232,-0.93190723657608,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.500616431236267,0.104583606123924,-0.859328389167786,0.945210516452789,-0.137160807847977,-0.296249806880951,0.930119335651398,-0.122098967432976,-0.34636664390564,0.933074057102203,-0.151941388845444,-0.326016128063202,0.945210516452789,-0.137160807847977,-0.296249806880951,0.93237829208374,-0.0581103414297104,-0.356782644987106,0.930119335651398,-0.122098967432976,-0.34636664390564,0.929926156997681,-0.0419335551559925,-0.365347474813461,0.945210516452789,-0.137160807847977,-0.296249806880951,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.84541255235672,0.0621898360550404,-0.530480742454529,0.887807905673981,0.0187924914062023,-0.45983025431633,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.93237829208374,-0.0581103414297104,-0.356782644987106,0.945210516452789,-0.137160807847977,-0.296249806880951,0.929926156997681,-0.0419335551559925,-0.365347474813461,\r\n0.804228782653809,0.076808899641037,-0.589335501194,0.84541255235672,0.0621898360550404,-0.530480742454529,0.767875909805298,0.13075402379036,-0.62711226940155,-0.0895969495177269,0.986723303794861,-0.135460019111633,0.0151238115504384,0.997338533401489,-0.0713231563568115,-0.00161067896988243,0.996311128139496,-0.0857985988259315,-0.0895969495177269,0.986723303794861,-0.135460019111633,-0.0697448030114174,0.98224139213562,-0.174176558852196,-0.029251616448164,0.982301592826843,-0.185007527470589,-0.0107405362650752,0.967220783233643,-0.253709435462952,0.17089356482029,0.962077379226685,-0.212608054280281,-0.029251616448164,0.982301592826843,-0.185007527470589,-0.06068155169487,0.963316857814789,-0.261416018009186,0.109734565019608,0.959151685237885,-0.260741740465164,-0.0107405362650752,0.967220783233643,-0.253709435462952,0.0267541762441397,0.950311362743378,-0.310149073600769,0.214110806584358,0.930998265743256,-0.295632779598236,0.109734565019608,0.959151685237885,-0.260741740465164,-0.00354774366132915,0.912640452384949,-0.408747762441635,0.277690649032593,0.878417909145355,-0.388933837413788,0.0267541762441397,0.950311362743378,-0.310149073600769,-0.00354774366132915,0.912640452384949,-0.408747762441635,-0.0393461100757122,0.854552686214447,-0.517872035503387,0.11439723521471,0.821230530738831,-0.559011161327362,0.0545061118900776,0.726862549781799,-0.684616506099701,0.325681537389755,0.671046555042267,-0.66605406999588,0.11439723521471,0.821230530738831,-0.559011161327362,0.390294700860977,0.551550924777985,-0.73719847202301,0.520371437072754,0.363390386104584,-0.772761821746826,0.771137416362762,0.145721063017845,-0.619768023490906,0.0545061118900776,0.726862549781799,-0.684616506099701,0.390294700860977,0.551550924777985,-0.73719847202301,0.325681537389755,0.671046555042267,-0.66605406999588,0.825193285942078,0.00470272777602077,-0.564830720424652,0.697298407554626,0.206994011998177,-0.686242043972015,0.865739822387695,0.00583152705803514,-0.500460207462311,0.914189994335175,-0.0892424955964088,-0.395338267087936,\r\n0.933074057102203,-0.151941388845444,-0.326016128063202,0.865739822387695,0.00583152705803514,-0.500460207462311,0.697298407554626,0.206994011998177,-0.686242043972015,0.825193285942078,0.00470272777602077,-0.564830720424652,0.520371437072754,0.363390386104584,-0.772761821746826,-0.182877361774445,0.916396498680115,0.356052339076996,-0.223185911774635,0.916286647319794,0.332576006650925,-0.231166705489159,0.93628340959549,0.264452666044235,-0.161227583885193,0.970903038978577,0.17706735432148,-0.231166705489159,0.93628340959549,0.264452666044235,-0.124962911009789,0.954930543899536,0.269243091344833,0.0108761182054877,0.980786263942719,0.194781616330147,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.161227583885193,0.970903038978577,0.17706735432148,0.107134632766247,0.994188487529755,-0.0105508537963033,-0.0395304672420025,0.999216496944427,0.00191631028428674,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.00161067896988243,0.996311128139496,-0.0857985988259315,-0.0395304672420025,0.999216496944427,0.00191631028428674,0.107134632766247,0.994188487529755,-0.0105508537963033,0.715362370014191,0.0733562409877777,0.694892346858978,0.748441934585571,0.0530710220336914,0.661073327064514,0.857474625110626,-0.0745028555393219,0.509103357791901,0.540025055408478,0.279591917991638,0.793852150440216,0.748441934585571,0.0530710220336914,0.661073327064514,0.557885825634003,0.201864138245583,0.804993271827698,0.451655179262161,0.423156559467316,0.785459101200104,0.772047400474548,0.158646315336227,0.615446269512177,0.540025055408478,0.279591917991638,0.793852150440216,0.0176348686218262,0.678178906440735,0.734685182571411,0.531978487968445,0.483618944883347,0.695062160491943,0.451655179262161,0.423156559467316,0.785459101200104,0.493482708930969,0.618703722953796,0.611293971538544,0.531978487968445,0.483618944883347,0.695062160491943,0.161427929997444,0.751365900039673,0.639836072921753,-0.0448035150766373,0.847279727458954,0.529253780841827,-0.252997875213623,0.889519333839417,0.380456656217575,0.23295059800148,0.817159473896027,0.527242124080658,\r\n-0.0448035150766373,0.847279727458954,0.529253780841827,0.493482708930969,0.618703722953796,0.611293971538544,0.161427929997444,0.751365900039673,0.639836072921753,-0.182877361774445,0.916396498680115,0.356052339076996,-0.252997875213623,0.889519333839417,0.380456656217575,-0.223185911774635,0.916286647319794,0.332576006650925,0.285416543483734,0.128252550959587,-0.949783444404602,0.250142753124237,0.118455670773983,-0.960935354232788,0.396575659513474,0.175626769661903,-0.901045441627502,0.0013695009984076,-0.558705568313599,-0.829364836215973,0.065064512193203,-0.64322030544281,-0.76291161775589,0.0538525581359863,-0.643992066383362,-0.763134300708771,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.065064512193203,-0.64322030544281,-0.76291161775589,0.024644011631608,-0.584357678890228,-0.811121821403503,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.00716631626710296,-0.657595098018646,-0.753337442874908,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.0222680419683456,-0.764527440071106,-0.644206345081329,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0013695009984076,-0.558705568313599,-0.829364836215973,-0.0215314980596304,-0.540139257907867,-0.841300129890442,-0.0750942677259445,-0.468099057674408,-0.880479454994202,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0319120325148106,-0.784207701683044,-0.619677126407623,0.0995777770876884,-0.851943671703339,-0.5140780210495,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.0215314980596304,-0.540139257907867,-0.841300129890442,0.639882683753967,-0.303985416889191,0.705792427062988,0.603014171123505,-0.31396359205246,0.733348906040192,0.687761783599854,-0.276548326015472,0.671196401119232,0.591980755329132,-0.164571866393089,0.788970649242401,\r\n0.687761783599854,-0.276548326015472,0.671196401119232,0.603014171123505,-0.31396359205246,0.733348906040192,0.641718447208405,0.055818323045969,0.764906346797943,0.665403604507446,-0.0100066941231489,0.746416687965393,0.608105182647705,0.0578473657369614,0.791745901107788,0.641718447208405,0.055818323045969,0.764906346797943,0.699201703071594,-0.0670666396617889,0.711771726608276,0.741955637931824,0.00544297741726041,0.670426785945892,0.608105182647705,0.0578473657369614,0.791745901107788,0.665403604507446,-0.0100066941231489,0.746416687965393,0.607860743999481,-0.0321429222822189,0.793392777442932,0.598528623580933,-0.108197882771492,0.793761014938354,0.513507604598999,-0.118529632687569,0.849859178066254,0.607860743999481,-0.0321429222822189,0.793392777442932,0.788277149200439,-0.128093674778938,0.601839780807495,0.699201703071594,-0.0670666396617889,0.711771726608276,0.733083188533783,-0.177234575152397,0.656640529632568,0.909076452255249,-0.128871932625771,0.396196752786636,0.861106097698212,-0.240163490176201,0.44812685251236,0.899991571903229,-0.208869844675064,0.382607400417328,0.861106097698212,-0.240163490176201,0.44812685251236,0.849447190761566,-0.131743595004082,0.510962724685669,0.807032465934753,-0.201482281088829,0.555070579051971,0.733083188533783,-0.177234575152397,0.656640529632568,0.807032465934753,-0.201482281088829,0.555070579051971,0.788277149200439,-0.128093674778938,0.601839780807495,0.909076452255249,-0.128871932625771,0.396196752786636,0.899991571903229,-0.208869844675064,0.382607400417328,0.904326260089874,-0.112856507301331,0.411651909351349,0.793731451034546,-0.0998657867312431,0.600014209747314,0.750395953655243,0.0515172854065895,0.658977746963501,0.904326260089874,-0.112856507301331,0.411651909351349,0.750395953655243,0.0515172854065895,0.658977746963501,0.715362370014191,0.0733562409877777,0.694892346858978,0.857474625110626,-0.0745028555393219,0.509103357791901,0.591980755329132,-0.164571866393089,0.788970649242401,0.513507604598999,-0.118529632687569,0.849859178066254,0.598528623580933,-0.108197882771492,0.793761014938354,\r\n0.67008250951767,0.153944477438927,-0.726147651672363,0.702745735645294,0.127479195594788,-0.699926614761353,0.701314330101013,0.00759075116366148,-0.712811648845673,0.785323977470398,0.00897960364818573,-0.619019746780396,0.702745735645294,0.127479195594788,-0.699926614761353,0.766979277133942,0.108892433345318,-0.632364630699158,0.67008250951767,0.153944477438927,-0.726147651672363,0.747223496437073,0.0543663650751114,-0.662345230579376,0.767875909805298,0.13075402379036,-0.62711226940155,0.738398373126984,0.143426820635796,-0.658935725688934,0.750875294208527,0.024048937484622,-0.660005867481232,0.766979277133942,0.108892433345318,-0.632364630699158,0.750875294208527,0.024048937484622,-0.660005867481232,0.710789263248444,0.0492164678871632,-0.701680958271027,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.705606520175934,-0.105049684643745,-0.7007737159729,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.701326549053192,-0.176600188016891,-0.69061803817749,0.705606520175934,-0.105049684643745,-0.7007737159729,0.702114045619965,-0.243563801050186,-0.669113159179688,0.708241701126099,-0.262440085411072,-0.655376791954041,0.73505973815918,-0.174831733107567,-0.655073225498199,0.598644256591797,-0.261029213666916,-0.757290303707123,0.622293531894684,-0.176686689257622,-0.762582719326019,0.708241701126099,-0.262440085411072,-0.655376791954041,0.701326549053192,-0.176600188016891,-0.69061803817749,0.702114045619965,-0.243563801050186,-0.669113159179688,0.73505973815918,-0.174831733107567,-0.655073225498199,0.585406243801117,-0.205697730183601,-0.784211575984955,0.536210477352142,-0.210622563958168,-0.817383885383606,0.598644256591797,-0.261029213666916,-0.757290303707123,0.585406243801117,-0.205697730183601,-0.784211575984955,0.629020214080811,-0.200109750032425,-0.751192033290863,0.536210477352142,-0.210622563958168,-0.817383885383606,0.629020214080811,-0.200109750032425,-0.751192033290863,\r\n0.716619670391083,-0.176469847559929,-0.674769937992096,0.641761243343353,-0.104205667972565,-0.759791731834412,0.500616431236267,0.104583606123924,-0.859328389167786,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.547742009162903,-0.0451459661126137,-0.835428237915039,0.582524716854095,-0.00388929131440818,-0.812803566455841,0.613355278968811,-0.0210410486906767,-0.789526700973511,0.464394986629486,-0.124528758227825,-0.876829385757446,0.561628639698029,0.0251127853989601,-0.827008128166199,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.641761243343353,-0.104205667972565,-0.759791731834412,0.673140466213226,-0.148614823818207,-0.724427700042725,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.561628639698029,0.0251127853989601,-0.827008128166199,0.464394986629486,-0.124528758227825,-0.876829385757446,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.332592338323593,-0.107585869729519,-0.936913847923279,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.355169981718063,-0.148221299052238,-0.922975957393646,0.214547961950302,-0.173254311084747,-0.96122419834137,0.375530391931534,0.0489653833210468,-0.925515651702881,0.347072958946228,-0.148272842168808,-0.926042854785919,0.355169981718063,-0.148221299052238,-0.922975957393646,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.375530391931534,0.0489653833210468,-0.925515651702881,0.214547961950302,-0.173254311084747,-0.96122419834137,0.203887522220612,-0.061923123896122,-0.977033913135529,0.203887522220612,-0.061923123896122,-0.977033913135529,0.2367954403162,-0.212295830249786,-0.948081374168396,0.340008825063705,0.126264542341232,-0.93190723657608,0.340008825063705,0.126264542341232,-0.93190723657608,0.2367954403162,-0.212295830249786,-0.948081374168396,0.420082032680511,-0.0486825406551361,-0.906179368495941,0.933074057102203,-0.151941388845444,-0.326016128063202,0.937425792217255,-0.168335452675819,-0.304788261651993,\r\n0.945210516452789,-0.137160807847977,-0.296249806880951,0.937252819538116,-0.156950652599335,-0.311325460672379,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.945210516452789,-0.137160807847977,-0.296249806880951,0.84541255235672,0.0621898360550404,-0.530480742454529,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.818160653114319,0.0462741479277611,-0.573124527931213,0.767875909805298,0.13075402379036,-0.62711226940155,0.84541255235672,0.0621898360550404,-0.530480742454529,-0.0697448030114174,0.98224139213562,-0.174176558852196,-0.0895969495177269,0.986723303794861,-0.135460019111633,-0.00161067896988243,0.996311128139496,-0.0857985988259315,-0.029251616448164,0.982301592826843,-0.185007527470589,-0.0697448030114174,0.98224139213562,-0.174176558852196,-0.0931028351187706,0.961432278156281,-0.258804440498352,-0.06068155169487,0.963316857814789,-0.261416018009186,-0.0107405362650752,0.967220783233643,-0.253709435462952,-0.029251616448164,0.982301592826843,-0.185007527470589,0.109734565019608,0.959151685237885,-0.260741740465164,-0.06068155169487,0.963316857814789,-0.261416018009186,0.0267541762441397,0.950311362743378,-0.310149073600769,0.0267541762441397,0.950311362743378,-0.310149073600769,-0.0269983150064945,0.921147048473358,-0.388277024030685,-0.00354774366132915,0.912640452384949,-0.408747762441635,-0.0269983150064945,0.921147048473358,-0.388277024030685,-0.0393461100757122,0.854552686214447,-0.517872035503387,-0.00354774366132915,0.912640452384949,-0.408747762441635,-0.0419122129678726,0.760098576545715,-0.648454606533051,0.11439723521471,0.821230530738831,-0.559011161327362,-0.0393461100757122,0.854552686214447,-0.517872035503387,0.0545061118900776,0.726862549781799,-0.684616506099701,0.11439723521471,0.821230530738831,-0.559011161327362,-0.0419122129678726,0.760098576545715,-0.648454606533051,0.0639618560671806,0.636100947856903,-0.768950164318085,0.520371437072754,0.363390386104584,-0.772761821746826,0.390294700860977,0.551550924777985,-0.73719847202301,\r\n0.0639618560671806,0.636100947856903,-0.768950164318085,0.390294700860977,0.551550924777985,-0.73719847202301,0.0545061118900776,0.726862549781799,-0.684616506099701,0.525004982948303,0.359816014766693,-0.771299004554749,0.865739822387695,0.00583152705803514,-0.500460207462311,0.697298407554626,0.206994011998177,-0.686242043972015,0.933074057102203,-0.151941388845444,-0.326016128063202,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.937425792217255,-0.168335452675819,-0.304788261651993,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.865739822387695,0.00583152705803514,-0.500460207462311,0.781324148178101,0.120321229100227,-0.61241751909256,0.697298407554626,0.206994011998177,-0.686242043972015,0.520371437072754,0.363390386104584,-0.772761821746826,0.239646598696709,0.528266847133636,-0.814557194709778,-0.231166705489159,0.93628340959549,0.264452666044235,-0.223185911774635,0.916286647319794,0.332576006650925,-0.124962911009789,0.954930543899536,0.269243091344833,0.0108761182054877,0.980786263942719,0.194781616330147,-0.161227583885193,0.970903038978577,0.17706735432148,-0.124962911009789,0.954930543899536,0.269243091344833,0.134201228618622,0.987638592720032,0.0809934586286545,-0.0407475605607033,0.996487736701965,0.0731558352708817,0.0108761182054877,0.980786263942719,0.194781616330147,0.134201228618622,0.987638592720032,0.0809934586286545,0.107134632766247,0.994188487529755,-0.0105508537963033,-0.0407475605607033,0.996487736701965,0.0731558352708817,-0.00161067896988243,0.996311128139496,-0.0857985988259315,0.107134632766247,0.994188487529755,-0.0105508537963033,0.189634174108505,0.975761830806732,-0.10921361297369,0.715362370014191,0.0733562409877777,0.694892346858978,0.557885825634003,0.201864138245583,0.804993271827698,0.748441934585571,0.0530710220336914,0.661073327064514,0.540025055408478,0.279591917991638,0.793852150440216,0.557885825634003,0.201864138245583,0.804993271827698,0.233871787786484,0.406893819570541,0.883029580116272,0.451655179262161,0.423156559467316,0.785459101200104,0.540025055408478,0.279591917991638,0.793852150440216,\r\n0.141065627336502,0.530562460422516,0.835825204849243,0.0176348686218262,0.678178906440735,0.734685182571411,0.161427929997444,0.751365900039673,0.639836072921753,0.531978487968445,0.483618944883347,0.695062160491943,0.141065627336502,0.530562460422516,0.835825204849243,0.0176348686218262,0.678178906440735,0.734685182571411,0.451655179262161,0.423156559467316,0.785459101200104,-0.288060009479523,0.836284935474396,0.466528415679932,-0.252997875213623,0.889519333839417,0.380456656217575,-0.0448035150766373,0.847279727458954,0.529253780841827,-0.0448035150766373,0.847279727458954,0.529253780841827,0.161427929997444,0.751365900039673,0.639836072921753,-0.198184311389923,0.811603128910065,0.549566388130188,-0.260126352310181,0.876763999462128,0.404498606920242,-0.223185911774635,0.916286647319794,0.332576006650925,-0.252997875213623,0.889519333839417,0.380456656217575,0.065064512193203,-0.64322030544281,-0.76291161775589,0.0013695009984076,-0.558705568313599,-0.829364836215973,0.024644011631608,-0.584357678890228,-0.811121821403503,0.024644011631608,-0.584357678890228,-0.811121821403503,0.00716631626710296,-0.657595098018646,-0.753337442874908,0.0766072347760201,-0.698470771312714,-0.711526334285736,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.0795811787247658,-0.752723693847656,-0.65350878238678,0.00716631626710296,-0.657595098018646,-0.753337442874908,0.0962703973054886,-0.807723462581635,-0.581648230552673,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.0222680419683456,-0.764527440071106,-0.644206345081329,0.106444992125034,-0.835839807987213,-0.538554608821869,0.0222680419683456,-0.764527440071106,-0.644206345081329,0.0319120325148106,-0.784207701683044,-0.619677126407623,-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.0742243826389313,-0.494230300188065,-0.866156458854675,0.0013695009984076,-0.558705568313599,-0.829364836215973,0.0364860668778419,-0.806113839149475,-0.59063446521759,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.0319120325148106,-0.784207701683044,-0.619677126407623,\r\n-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.141162976622581,-0.383272290229797,-0.912784337997437,0.591980755329132,-0.164571866393089,0.788970649242401,0.603014171123505,-0.31396359205246,0.733348906040192,0.513507604598999,-0.118529632687569,0.849859178066254,0.641718447208405,0.055818323045969,0.764906346797943,0.608105182647705,0.0578473657369614,0.791745901107788,0.573913753032684,0.0282095428556204,0.81842964887619,0.573913753032684,0.0282095428556204,0.81842964887619,0.699201703071594,-0.0670666396617889,0.711771726608276,0.641718447208405,0.055818323045969,0.764906346797943,0.608105182647705,0.0578473657369614,0.791745901107788,0.607860743999481,-0.0321429222822189,0.793392777442932,0.57337212562561,0.0269702337682247,0.818850874900818,0.478120476007462,-0.0128174684941769,0.878200709819794,0.607860743999481,-0.0321429222822189,0.793392777442932,0.513507604598999,-0.118529632687569,0.849859178066254,0.699201703071594,-0.0670666396617889,0.711771726608276,0.612445414066315,-0.107604123651981,0.783154964447021,0.733083188533783,-0.177234575152397,0.656640529632568,0.899991571903229,-0.208869844675064,0.382607400417328,0.861106097698212,-0.240163490176201,0.44812685251236,0.844359755516052,-0.284212589263916,0.454180330038071,0.807032465934753,-0.201482281088829,0.555070579051971,0.820506036281586,-0.291763544082642,0.491572737693787,0.861106097698212,-0.240163490176201,0.44812685251236,0.773592233657837,-0.245969623327255,0.583998143672943,0.807032465934753,-0.201482281088829,0.555070579051971,0.733083188533783,-0.177234575152397,0.656640529632568,0.793731451034546,-0.0998657867312431,0.600014209747314,0.904326260089874,-0.112856507301331,0.411651909351349,0.899991571903229,-0.208869844675064,0.382607400417328,0.750395953655243,0.0515172854065895,0.658977746963501,0.793731451034546,-0.0998657867312431,0.600014209747314,0.608969032764435,0.101270779967308,0.786702454090118,0.750395953655243,0.0515172854065895,0.658977746963501,0.563565671443939,0.25370666384697,0.786146700382233,\r\n0.715362370014191,0.0733562409877777,0.694892346858978,0.702745735645294,0.127479195594788,-0.699926614761353,0.67008250951767,0.153944477438927,-0.726147651672363,0.682855606079102,0.123437337577343,-0.720049500465393,0.766979277133942,0.108892433345318,-0.632364630699158,0.702745735645294,0.127479195594788,-0.699926614761353,0.738398373126984,0.143426820635796,-0.658935725688934,0.67008250951767,0.153944477438927,-0.726147651672363,0.767875909805298,0.13075402379036,-0.62711226940155,0.729322254657745,0.121265828609467,-0.673337578773499,0.738398373126984,0.143426820635796,-0.658935725688934,0.710789263248444,0.0492164678871632,-0.701680958271027,0.750875294208527,0.024048937484622,-0.660005867481232,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.710789263248444,0.0492164678871632,-0.701680958271027,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.701326549053192,-0.176600188016891,-0.69061803817749,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.627240300178528,-0.140650749206543,-0.766020119190216,0.708241701126099,-0.262440085411072,-0.655376791954041,0.702114045619965,-0.243563801050186,-0.669113159179688,0.691112101078033,-0.251735985279083,-0.67749011516571,0.708241701126099,-0.262440085411072,-0.655376791954041,0.691112101078033,-0.251735985279083,-0.67749011516571,0.598644256591797,-0.261029213666916,-0.757290303707123,0.701326549053192,-0.176600188016891,-0.69061803817749,0.627240300178528,-0.140650749206543,-0.766020119190216,0.702114045619965,-0.243563801050186,-0.669113159179688,0.598644256591797,-0.261029213666916,-0.757290303707123,0.601694107055664,-0.248264342546463,-0.7591632604599,0.585406243801117,-0.205697730183601,-0.784211575984955,0.585406243801117,-0.205697730183601,-0.784211575984955,0.703906297683716,-0.11156041175127,-0.70147705078125,0.629020214080811,-0.200109750032425,-0.751192033290863,\r\n0.629020214080811,-0.200109750032425,-0.751192033290863,0.703906297683716,-0.11156041175127,-0.70147705078125,0.716619670391083,-0.176469847559929,-0.674769937992096,0.716619670391083,-0.176469847559929,-0.674769937992096,0.673140466213226,-0.148614823818207,-0.724427700042725,0.641761243343353,-0.104205667972565,-0.759791731834412,0.464394986629486,-0.124528758227825,-0.876829385757446,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.557684719562531,-0.19097127020359,-0.80778557062149,0.595260202884674,-0.0751327648758888,-0.800012648105621,0.673140466213226,-0.148614823818207,-0.724427700042725,0.557684719562531,-0.19097127020359,-0.80778557062149,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.464394986629486,-0.124528758227825,-0.876829385757446,0.343389719724655,-0.129144325852394,-0.930271506309509,0.413164705038071,-0.0282914657145739,-0.910216689109802,0.343389719724655,-0.129144325852394,-0.930271506309509,0.332592338323593,-0.107585869729519,-0.936913847923279,0.332592338323593,-0.107585869729519,-0.936913847923279,0.347072958946228,-0.148272842168808,-0.926042854785919,0.39672464132309,-0.0555495023727417,-0.916255235671997,0.252594262361526,-0.188267111778259,-0.949079275131226,0.214547961950302,-0.173254311084747,-0.96122419834137,0.355169981718063,-0.148221299052238,-0.922975957393646,0.347072958946228,-0.148272842168808,-0.926042854785919,0.252594262361526,-0.188267111778259,-0.949079275131226,0.355169981718063,-0.148221299052238,-0.922975957393646,0.214547961950302,-0.173254311084747,-0.96122419834137,0.100770495831966,-0.206958934664726,-0.973146021366119,0.203887522220612,-0.061923123896122,-0.977033913135529,0.203887522220612,-0.061923123896122,-0.977033913135529,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.2367954403162,-0.212295830249786,-0.948081374168396,0.945210516452789,-0.137160807847977,-0.296249806880951,0.937425792217255,-0.168335452675819,-0.304788261651993,0.930375039577484,-0.178468406200409,-0.32023611664772,0.894900560379028,-0.115888506174088,-0.430955588817596,\r\n0.913219332695007,-0.0469638295471668,-0.404752641916275,0.937252819538116,-0.156950652599335,-0.311325460672379,0.945210516452789,-0.137160807847977,-0.296249806880951,0.930375039577484,-0.178468406200409,-0.32023611664772,0.937252819538116,-0.156950652599335,-0.311325460672379,0.894900560379028,-0.115888506174088,-0.430955588817596,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.913219332695007,-0.0469638295471668,-0.404752641916275,0.818160653114319,0.0462741479277611,-0.573124527931213,0.84541255235672,0.0621898360550404,-0.530480742454529,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.729322254657745,0.121265828609467,-0.673337578773499,0.767875909805298,0.13075402379036,-0.62711226940155,0.818160653114319,0.0462741479277611,-0.573124527931213,-0.00161067896988243,0.996311128139496,-0.0857985988259315,0.0535736903548241,0.98377788066864,-0.171204090118408,-0.0697448030114174,0.98224139213562,-0.174176558852196,-0.0697448030114174,0.98224139213562,-0.174176558852196,7.84549629315734e-005,0.963148176670074,-0.268971174955368,-0.0931028351187706,0.961432278156281,-0.258804440498352,-0.029251616448164,0.982301592826843,-0.185007527470589,-0.0931028351187706,0.961432278156281,-0.258804440498352,-0.06068155169487,0.963316857814789,-0.261416018009186,-0.0931028351187706,0.961432278156281,-0.258804440498352,0.0267541762441397,0.950311362743378,-0.310149073600769,-0.06068155169487,0.963316857814789,-0.261416018009186,-0.0931028351187706,0.961432278156281,-0.258804440498352,-0.0269983150064945,0.921147048473358,-0.388277024030685,0.0267541762441397,0.950311362743378,-0.310149073600769,0.0377794243395329,0.849570572376251,-0.526120126247406,-0.0393461100757122,0.854552686214447,-0.517872035503387,-0.0269983150064945,0.921147048473358,-0.388277024030685,-0.0419122129678726,0.760098576545715,-0.648454606533051,-0.0393461100757122,0.854552686214447,-0.517872035503387,0.0386960655450821,0.790447294712067,-0.611306428909302,-0.0638070479035378,0.683623671531677,-0.727039992809296,0.0545061118900776,0.726862549781799,-0.684616506099701,\r\n-0.0419122129678726,0.760098576545715,-0.648454606533051,0.0639618560671806,0.636100947856903,-0.768950164318085,0.239646598696709,0.528266847133636,-0.814557194709778,0.520371437072754,0.363390386104584,-0.772761821746826,-0.0638070479035378,0.683623671531677,-0.727039992809296,0.0639618560671806,0.636100947856903,-0.768950164318085,0.0545061118900776,0.726862549781799,-0.684616506099701,0.781324148178101,0.120321229100227,-0.61241751909256,0.865739822387695,0.00583152705803514,-0.500460207462311,0.525004982948303,0.359816014766693,-0.771299004554749,0.525004982948303,0.359816014766693,-0.771299004554749,0.697298407554626,0.206994011998177,-0.686242043972015,0.239646598696709,0.528266847133636,-0.814557194709778,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.930375039577484,-0.178468406200409,-0.32023611664772,0.937425792217255,-0.168335452675819,-0.304788261651993,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.781324148178101,0.120321229100227,-0.61241751909256,-0.223185911774635,0.916286647319794,0.332576006650925,-0.0104876449331641,0.924668967723846,0.380627453327179,-0.124962911009789,0.954930543899536,0.269243091344833,0.0838195979595184,0.942923724651337,0.322287172079086,0.0108761182054877,0.980786263942719,0.194781616330147,-0.124962911009789,0.954930543899536,0.269243091344833,0.258094906806946,0.947119951248169,0.190658867359161,0.134201228618622,0.987638592720032,0.0809934586286545,0.0108761182054877,0.980786263942719,0.194781616330147,0.213246420025826,0.976953089237213,0.00940692331641912,0.107134632766247,0.994188487529755,-0.0105508537963033,0.134201228618622,0.987638592720032,0.0809934586286545,0.274790912866592,0.959982991218567,-0.0540607385337353,0.189634174108505,0.975761830806732,-0.10921361297369,0.107134632766247,0.994188487529755,-0.0105508537963033,0.0535736903548241,0.98377788066864,-0.171204090118408,-0.00161067896988243,0.996311128139496,-0.0857985988259315,0.189634174108505,0.975761830806732,-0.10921361297369,\r\n0.409322887659073,0.271448850631714,0.871074140071869,0.557885825634003,0.201864138245583,0.804993271827698,0.715362370014191,0.0733562409877777,0.694892346858978,0.409322887659073,0.271448850631714,0.871074140071869,0.233871787786484,0.406893819570541,0.883029580116272,0.557885825634003,0.201864138245583,0.804993271827698,0.233871787786484,0.406893819570541,0.883029580116272,0.141065627336502,0.530562460422516,0.835825204849243,0.540025055408478,0.279591917991638,0.793852150440216,0.0176348686218262,0.678178906440735,0.734685182571411,-0.198184311389923,0.811603128910065,0.549566388130188,0.161427929997444,0.751365900039673,0.639836072921753,0.0176348686218262,0.678178906440735,0.734685182571411,0.141065627336502,0.530562460422516,0.835825204849243,-0.242892205715179,0.637509524822235,0.731153070926666,-0.288060009479523,0.836284935474396,0.466528415679932,-0.260126352310181,0.876763999462128,0.404498606920242,-0.252997875213623,0.889519333839417,0.380456656217575,-0.288060009479523,0.836284935474396,0.466528415679932,-0.0448035150766373,0.847279727458954,0.529253780841827,-0.198184311389923,0.811603128910065,0.549566388130188,-0.260126352310181,0.876763999462128,0.404498606920242,-0.0644276216626167,0.891282856464386,0.44884717464447,-0.223185911774635,0.916286647319794,0.332576006650925,0.024644011631608,-0.584357678890228,-0.811121821403503,0.0013695009984076,-0.558705568313599,-0.829364836215973,-0.0742243826389313,-0.494230300188065,-0.866156458854675,0.024644011631608,-0.584357678890228,-0.811121821403503,-0.0358109585940838,-0.5691938996315,-0.82142299413681,0.00716631626710296,-0.657595098018646,-0.753337442874908,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.00716631626710296,-0.657595098018646,-0.753337442874908,-0.0748671069741249,-0.635808110237122,-0.768207550048828,0.0170497670769691,-0.732104301452637,-0.680978953838348,-0.0493215583264828,-0.694184005260468,-0.718105673789978,0.0222680419683456,-0.764527440071106,-0.644206345081329,0.0222680419683456,-0.764527440071106,-0.644206345081329,\r\n-0.0647237300872803,-0.706927716732025,-0.704317986965179,0.0319120325148106,-0.784207701683044,-0.619677126407623,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.134643882513046,-0.421502709388733,-0.896775543689728,0.0364860668778419,-0.806113839149475,-0.59063446521759,0.0319120325148106,-0.784207701683044,-0.619677126407623,-0.0641238838434219,-0.743033528327942,-0.666175007820129,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.0750942677259445,-0.468099057674408,-0.880479454994202,-0.141162976622581,-0.383272290229797,-0.912784337997437,0.57337212562561,0.0269702337682247,0.818850874900818,0.573913753032684,0.0282095428556204,0.81842964887619,0.608105182647705,0.0578473657369614,0.791745901107788,0.699201703071594,-0.0670666396617889,0.711771726608276,0.573913753032684,0.0282095428556204,0.81842964887619,0.612445414066315,-0.107604123651981,0.783154964447021,0.478120476007462,-0.0128174684941769,0.878200709819794,0.57337212562561,0.0269702337682247,0.818850874900818,0.607860743999481,-0.0321429222822189,0.793392777442932,0.612445414066315,-0.107604123651981,0.783154964447021,0.615833163261414,-0.199936613440514,0.762085735797882,0.733083188533783,-0.177234575152397,0.656640529632568,0.861106097698212,-0.240163490176201,0.44812685251236,0.820506036281586,-0.291763544082642,0.491572737693787,0.844359755516052,-0.284212589263916,0.454180330038071,0.793731451034546,-0.0998657867312431,0.600014209747314,0.899991571903229,-0.208869844675064,0.382607400417328,0.844359755516052,-0.284212589263916,0.454180330038071,0.820506036281586,-0.291763544082642,0.491572737693787,0.807032465934753,-0.201482281088829,0.555070579051971,0.773592233657837,-0.245969623327255,0.583998143672943,0.773592233657837,-0.245969623327255,0.583998143672943,0.733083188533783,-0.177234575152397,0.656640529632568,0.699797034263611,-0.239807859063149,0.672886371612549,0.608969032764435,0.101270779967308,0.786702454090118,0.793731451034546,-0.0998657867312431,0.600014209747314,\r\n0.440667688846588,0.12911656498909,0.888335943222046,0.750395953655243,0.0515172854065895,0.658977746963501,0.608969032764435,0.101270779967308,0.786702454090118,0.375696331262589,0.298830419778824,0.877241432666779,0.375696331262589,0.298830419778824,0.877241432666779,0.563565671443939,0.25370666384697,0.786146700382233,0.750395953655243,0.0515172854065895,0.658977746963501,0.409322887659073,0.271448850631714,0.871074140071869,0.715362370014191,0.0733562409877777,0.694892346858978,0.563565671443939,0.25370666384697,0.786146700382233,0.67008250951767,0.153944477438927,-0.726147651672363,0.729322254657745,0.121265828609467,-0.673337578773499,0.682855606079102,0.123437337577343,-0.720049500465393,0.702745735645294,0.127479195594788,-0.699926614761353,0.682855606079102,0.123437337577343,-0.720049500465393,0.706068277359009,0.111185610294342,-0.699360549449921,0.706068277359009,0.111185610294342,-0.699360549449921,0.738398373126984,0.143426820635796,-0.658935725688934,0.702745735645294,0.127479195594788,-0.699926614761353,0.706068277359009,0.111185610294342,-0.699360549449921,0.710789263248444,0.0492164678871632,-0.701680958271027,0.738398373126984,0.143426820635796,-0.658935725688934,0.706068277359009,0.111185610294342,-0.699360549449921,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.710789263248444,0.0492164678871632,-0.701680958271027,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.617750465869904,-0.0790116637945175,-0.782394647598267,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.627240300178528,-0.140650749206543,-0.766020119190216,0.644428610801697,-0.179499343037605,-0.743297755718231,0.691112101078033,-0.251735985279083,-0.67749011516571,0.702114045619965,-0.243563801050186,-0.669113159179688,0.598644256591797,-0.261029213666916,-0.757290303707123,\r\n0.691112101078033,-0.251735985279083,-0.67749011516571,0.601694107055664,-0.248264342546463,-0.7591632604599,0.627240300178528,-0.140650749206543,-0.766020119190216,0.567772209644318,-0.119816012680531,-0.814419209957123,0.702114045619965,-0.243563801050186,-0.669113159179688,0.585406243801117,-0.205697730183601,-0.784211575984955,0.601694107055664,-0.248264342546463,-0.7591632604599,0.643607616424561,-0.072415366768837,-0.761921942234039,0.585406243801117,-0.205697730183601,-0.784211575984955,0.62576425075531,0.00114740163553506,-0.780011296272278,0.703906297683716,-0.11156041175127,-0.70147705078125,0.703906297683716,-0.11156041175127,-0.70147705078125,0.74260425567627,-0.137038677930832,-0.655560195446014,0.716619670391083,-0.176469847559929,-0.674769937992096,0.662457704544067,-0.150453567504883,-0.733834683895111,0.673140466213226,-0.148614823818207,-0.724427700042725,0.716619670391083,-0.176469847559929,-0.674769937992096,0.464394986629486,-0.124528758227825,-0.876829385757446,0.557684719562531,-0.19097127020359,-0.80778557062149,0.445736318826675,-0.229804202914238,-0.865164160728455,0.662457704544067,-0.150453567504883,-0.733834683895111,0.557684719562531,-0.19097127020359,-0.80778557062149,0.673140466213226,-0.148614823818207,-0.724427700042725,0.464394986629486,-0.124528758227825,-0.876829385757446,0.384184896945953,-0.21492001414299,-0.897892534732819,0.343389719724655,-0.129144325852394,-0.930271506309509,0.332592338323593,-0.107585869729519,-0.936913847923279,0.343389719724655,-0.129144325852394,-0.930271506309509,0.354249596595764,-0.144418135285378,-0.923932075500488,0.332592338323593,-0.107585869729519,-0.936913847923279,0.354249596595764,-0.144418135285378,-0.923932075500488,0.347072958946228,-0.148272842168808,-0.926042854785919,0.252594262361526,-0.188267111778259,-0.949079275131226,0.164774879813194,-0.139229267835617,-0.976454973220825,0.214547961950302,-0.173254311084747,-0.96122419834137,0.262739896774292,-0.141196444630623,-0.954479575157166,0.252594262361526,-0.188267111778259,-0.949079275131226,\r\n0.347072958946228,-0.148272842168808,-0.926042854785919,0.214547961950302,-0.173254311084747,-0.96122419834137,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.100770495831966,-0.206958934664726,-0.973146021366119,0.203887522220612,-0.061923123896122,-0.977033913135529,0.100770495831966,-0.206958934664726,-0.973146021366119,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.118938446044922,-0.224728524684906,-0.96713525056839,0.2367954403162,-0.212295830249786,-0.948081374168396,0.894900560379028,-0.115888506174088,-0.430955588817596,0.937252819538116,-0.156950652599335,-0.311325460672379,0.920982122421265,-0.204448983073235,-0.331650704145432,0.930375039577484,-0.178468406200409,-0.32023611664772,0.920982122421265,-0.204448983073235,-0.331650704145432,0.937252819538116,-0.156950652599335,-0.311325460672379,0.894900560379028,-0.115888506174088,-0.430955588817596,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.818160653114319,0.0462741479277611,-0.573124527931213,0.866653561592102,-0.0187991987913847,-0.498555958271027,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.818160653114319,0.0462741479277611,-0.573124527931213,0.7866370677948,0.0277846250683069,-0.616790056228638,0.729322254657745,0.121265828609467,-0.673337578773499,7.84549629315734e-005,0.963148176670074,-0.268971174955368,-0.0697448030114174,0.98224139213562,-0.174176558852196,0.0535736903548241,0.98377788066864,-0.171204090118408,7.84549629315734e-005,0.963148176670074,-0.268971174955368,-0.0269983150064945,0.921147048473358,-0.388277024030685,-0.0931028351187706,0.961432278156281,-0.258804440498352,0.0377794243395329,0.849570572376251,-0.526120126247406,0.0386960655450821,0.790447294712067,-0.611306428909302,-0.0393461100757122,0.854552686214447,-0.517872035503387,0.0377794243395329,0.849570572376251,-0.526120126247406,-0.0269983150064945,0.921147048473358,-0.388277024030685,0.109067425131798,0.881199955940247,-0.45999002456665,\r\n-0.0419122129678726,0.760098576545715,-0.648454606533051,0.0386960655450821,0.790447294712067,-0.611306428909302,0.0239249169826508,0.730493366718292,-0.682500541210175,-0.00545272091403604,0.680239975452423,-0.732969164848328,-0.0638070479035378,0.683623671531677,-0.727039992809296,-0.0419122129678726,0.760098576545715,-0.648454606533051,0.239646598696709,0.528266847133636,-0.814557194709778,0.0639618560671806,0.636100947856903,-0.768950164318085,-0.0670232325792313,0.642685890197754,-0.763192415237427,-0.0670232325792313,0.642685890197754,-0.763192415237427,0.0639618560671806,0.636100947856903,-0.768950164318085,-0.0638070479035378,0.683623671531677,-0.727039992809296,0.525004982948303,0.359816014766693,-0.771299004554749,0.368343144655228,0.428625643253326,-0.824986815452576,0.781324148178101,0.120321229100227,-0.61241751909256,-0.00845913402736187,0.584095656871796,-0.811640679836273,0.525004982948303,0.359816014766693,-0.771299004554749,0.239646598696709,0.528266847133636,-0.814557194709778,0.914189994335175,-0.0892424955964088,-0.395338267087936,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.930375039577484,-0.178468406200409,-0.32023611664772,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.781324148178101,0.120321229100227,-0.61241751909256,0.645620703697205,0.235571980476379,-0.726415574550629,-0.0104876449331641,0.924668967723846,0.380627453327179,-0.223185911774635,0.916286647319794,0.332576006650925,-0.0644276216626167,0.891282856464386,0.44884717464447,-0.0104876449331641,0.924668967723846,0.380627453327179,0.0838195979595184,0.942923724651337,0.322287172079086,-0.124962911009789,0.954930543899536,0.269243091344833,0.258094906806946,0.947119951248169,0.190658867359161,0.0108761182054877,0.980786263942719,0.194781616330147,0.0838195979595184,0.942923724651337,0.322287172079086,0.324909389019012,0.94515985250473,0.033266942948103,0.134201228618622,0.987638592720032,0.0809934586286545,0.258094906806946,0.947119951248169,0.190658867359161,0.274790912866592,0.959982991218567,-0.0540607385337353,\r\n0.107134632766247,0.994188487529755,-0.0105508537963033,0.213246420025826,0.976953089237213,0.00940692331641912,0.134201228618622,0.987638592720032,0.0809934586286545,0.324909389019012,0.94515985250473,0.033266942948103,0.213246420025826,0.976953089237213,0.00940692331641912,0.274790912866592,0.959982991218567,-0.0540607385337353,0.355677217245102,0.91974014043808,-0.166047215461731,0.189634174108505,0.975761830806732,-0.10921361297369,0.175267457962036,0.952198684215546,-0.250197649002075,0.0535736903548241,0.98377788066864,-0.171204090118408,0.189634174108505,0.975761830806732,-0.10921361297369,0.409322887659073,0.271448850631714,0.871074140071869,-0.055747989565134,0.497017711400986,0.865947723388672,0.233871787786484,0.406893819570541,0.883029580116272,0.233871787786484,0.406893819570541,0.883029580116272,-0.187658607959747,0.579621911048889,0.792983293533325,0.141065627336502,0.530562460422516,0.835825204849243,0.0176348686218262,0.678178906440735,0.734685182571411,-0.238735169172287,0.716652870178223,0.655296802520752,-0.198184311389923,0.811603128910065,0.549566388130188,-0.242892205715179,0.637509524822235,0.731153070926666,0.141065627336502,0.530562460422516,0.835825204849243,-0.187658607959747,0.579621911048889,0.792983293533325,-0.238735169172287,0.716652870178223,0.655296802520752,0.0176348686218262,0.678178906440735,0.734685182571411,-0.242892205715179,0.637509524822235,0.731153070926666,-0.260126352310181,0.876763999462128,0.404498606920242,-0.288060009479523,0.836284935474396,0.466528415679932,-0.181554481387138,0.842876732349396,0.506553649902344,-0.288060009479523,0.836284935474396,0.466528415679932,-0.198184311389923,0.811603128910065,0.549566388130188,-0.211880043148994,0.772024273872375,0.599237203598022,-0.181554481387138,0.842876732349396,0.506553649902344,-0.0644276216626167,0.891282856464386,0.44884717464447,-0.260126352310181,0.876763999462128,0.404498606920242,0.024644011631608,-0.584357678890228,-0.811121821403503,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.0358109585940838,-0.5691938996315,-0.82142299413681,\r\n-0.072030633687973,-0.588516533374786,-0.805269956588745,0.00716631626710296,-0.657595098018646,-0.753337442874908,-0.0358109585940838,-0.5691938996315,-0.82142299413681,-0.072030633687973,-0.588516533374786,-0.805269956588745,-0.0748671069741249,-0.635808110237122,-0.768207550048828,0.00716631626710296,-0.657595098018646,-0.753337442874908,-0.0748671069741249,-0.635808110237122,-0.768207550048828,-0.0493215583264828,-0.694184005260468,-0.718105673789978,0.0170497670769691,-0.732104301452637,-0.680978953838348,0.0222680419683456,-0.764527440071106,-0.644206345081329,-0.0493215583264828,-0.694184005260468,-0.718105673789978,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.0641238838434219,-0.743033528327942,-0.666175007820129,0.0319120325148106,-0.784207701683044,-0.619677126407623,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.0494565181434155,-0.781772434711456,-0.62159937620163,0.0364860668778419,-0.806113839149475,-0.59063446521759,-0.0641238838434219,-0.743033528327942,-0.666175007820129,0.573913753032684,0.0282095428556204,0.81842964887619,0.57337212562561,0.0269702337682247,0.818850874900818,0.496804565191269,0.00290034804493189,0.867857575416565,0.573913753032684,0.0282095428556204,0.81842964887619,0.488074272871017,-0.0365314334630966,0.872037172317505,0.612445414066315,-0.107604123651981,0.783154964447021,0.57337212562561,0.0269702337682247,0.818850874900818,0.478120476007462,-0.0128174684941769,0.878200709819794,0.496804565191269,0.00290034804493189,0.867857575416565,0.491185873746872,-0.135027900338173,0.86052531003952,0.615833163261414,-0.199936613440514,0.762085735797882,0.612445414066315,-0.107604123651981,0.783154964447021,0.733083188533783,-0.177234575152397,0.656640529632568,0.615833163261414,-0.199936613440514,0.762085735797882,0.699797034263611,-0.239807859063149,0.672886371612549,0.812104284763336,-0.337433129549026,0.476051837205887,\r\n0.844359755516052,-0.284212589263916,0.454180330038071,0.820506036281586,-0.291763544082642,0.491572737693787,0.793731451034546,-0.0998657867312431,0.600014209747314,0.844359755516052,-0.284212589263916,0.454180330038071,0.777374446392059,-0.199197247624397,0.59666520357132,0.820506036281586,-0.291763544082642,0.491572737693787,0.773592233657837,-0.245969623327255,0.583998143672943,0.777458012104034,-0.356344819068909,0.518244385719299,0.773592233657837,-0.245969623327255,0.583998143672943,0.699797034263611,-0.239807859063149,0.672886371612549,0.717692136764526,-0.314563304185867,0.621263027191162,0.793731451034546,-0.0998657867312431,0.600014209747314,0.577973484992981,-0.0125208534300327,0.815959393978119,0.440667688846588,0.12911656498909,0.888335943222046,0.608969032764435,0.101270779967308,0.786702454090118,0.440667688846588,0.12911656498909,0.888335943222046,0.375696331262589,0.298830419778824,0.877241432666779,0.157028466463089,0.491419196128845,0.856649935245514,0.563565671443939,0.25370666384697,0.786146700382233,0.375696331262589,0.298830419778824,0.877241432666779,0.409322887659073,0.271448850631714,0.871074140071869,0.563565671443939,0.25370666384697,0.786146700382233,0.30143079161644,0.382033973932266,0.873607099056244,0.729322254657745,0.121265828609467,-0.673337578773499,0.7866370677948,0.0277846250683069,-0.616790056228638,0.682855606079102,0.123437337577343,-0.720049500465393,0.682855606079102,0.123437337577343,-0.720049500465393,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.706068277359009,0.111185610294342,-0.699360549449921,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.706068277359009,0.111185610294342,-0.699360549449921,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.654219090938568,-0.0172455124557018,-0.756108403205872,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.736209511756897,-0.143965676426888,-0.661263406276703,\r\n0.558926224708557,-0.0405175685882568,-0.828226804733276,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.567772209644318,-0.119816012680531,-0.814419209957123,0.627240300178528,-0.140650749206543,-0.766020119190216,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.691112101078033,-0.251735985279083,-0.67749011516571,0.644428610801697,-0.179499343037605,-0.743297755718231,0.702114045619965,-0.243563801050186,-0.669113159179688,0.567772209644318,-0.119816012680531,-0.814419209957123,0.644428610801697,-0.179499343037605,-0.743297755718231,0.691112101078033,-0.251735985279083,-0.67749011516571,0.643607616424561,-0.072415366768837,-0.761921942234039,0.601694107055664,-0.248264342546463,-0.7591632604599,0.585406243801117,-0.205697730183601,-0.784211575984955,0.643607616424561,-0.072415366768837,-0.761921942234039,0.62576425075531,0.00114740163553506,-0.780011296272278,0.634822368621826,0.136758595705032,-0.760458707809448,0.703906297683716,-0.11156041175127,-0.70147705078125,0.62576425075531,0.00114740163553506,-0.780011296272278,0.74260425567627,-0.137038677930832,-0.655560195446014,0.703906297683716,-0.11156041175127,-0.70147705078125,0.677533864974976,0.0137109309434891,-0.735363662242889,0.662457704544067,-0.150453567504883,-0.733834683895111,0.716619670391083,-0.176469847559929,-0.674769937992096,0.74260425567627,-0.137038677930832,-0.655560195446014,0.557684719562531,-0.19097127020359,-0.80778557062149,0.525519371032715,-0.144933387637138,-0.83834570646286,0.445736318826675,-0.229804202914238,-0.865164160728455,0.464394986629486,-0.124528758227825,-0.876829385757446,0.445736318826675,-0.229804202914238,-0.865164160728455,0.384184896945953,-0.21492001414299,-0.897892534732819,0.557684719562531,-0.19097127020359,-0.80778557062149,0.662457704544067,-0.150453567504883,-0.733834683895111,0.525519371032715,-0.144933387637138,-0.83834570646286,0.384184896945953,-0.21492001414299,-0.897892534732819,\r\n0.354249596595764,-0.144418135285378,-0.923932075500488,0.343389719724655,-0.129144325852394,-0.930271506309509,0.347072958946228,-0.148272842168808,-0.926042854785919,0.354249596595764,-0.144418135285378,-0.923932075500488,0.30435636639595,-0.201861873269081,-0.930923640727997,0.246915727853775,-0.21217006444931,-0.945524394512177,0.164774879813194,-0.139229267835617,-0.976454973220825,0.252594262361526,-0.188267111778259,-0.949079275131226,0.164774879813194,-0.139229267835617,-0.976454973220825,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.214547961950302,-0.173254311084747,-0.96122419834137,0.252594262361526,-0.188267111778259,-0.949079275131226,0.262739896774292,-0.141196444630623,-0.954479575157166,0.249878779053688,-0.197424203157425,-0.947936773300171,0.30435636639595,-0.201861873269081,-0.930923640727997,0.262739896774292,-0.141196444630623,-0.954479575157166,0.347072958946228,-0.148272842168808,-0.926042854785919,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.100770495831966,-0.206958934664726,-0.973146021366119,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.118938446044922,-0.224728524684906,-0.96713525056839,0.0544243417680264,-0.263004958629608,-0.963258147239685,0.894900560379028,-0.115888506174088,-0.430955588817596,0.920982122421265,-0.204448983073235,-0.331650704145432,0.886550426483154,-0.157772228121758,-0.434897929430008,0.924920201301575,-0.219309195876122,-0.310525268316269,0.920982122421265,-0.204448983073235,-0.331650704145432,0.930375039577484,-0.178468406200409,-0.32023611664772,0.894900560379028,-0.115888506174088,-0.430955588817596,0.886550426483154,-0.157772228121758,-0.434897929430008,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.818160653114319,0.0462741479277611,-0.573124527931213,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.7866370677948,0.0277846250683069,-0.616790056228638,7.84549629315734e-005,0.963148176670074,-0.268971174955368,0.0535736903548241,0.98377788066864,-0.171204090118408,\r\n0.175267457962036,0.952198684215546,-0.250197649002075,0.126085072755814,0.920925378799438,-0.368780314922333,-0.0269983150064945,0.921147048473358,-0.388277024030685,7.84549629315734e-005,0.963148176670074,-0.268971174955368,0.18304243683815,0.82282817363739,-0.538004755973816,0.0386960655450821,0.790447294712067,-0.611306428909302,0.0377794243395329,0.849570572376251,-0.526120126247406,0.126085072755814,0.920925378799438,-0.368780314922333,0.109067425131798,0.881199955940247,-0.45999002456665,-0.0269983150064945,0.921147048473358,-0.388277024030685,0.0377794243395329,0.849570572376251,-0.526120126247406,0.109067425131798,0.881199955940247,-0.45999002456665,0.18304243683815,0.82282817363739,-0.538004755973816,0.164941847324371,0.704309523105621,-0.690465152263641,0.0239249169826508,0.730493366718292,-0.682500541210175,0.0386960655450821,0.790447294712067,-0.611306428909302,-0.00545272091403604,0.680239975452423,-0.732969164848328,-0.0419122129678726,0.760098576545715,-0.648454606533051,0.0239249169826508,0.730493366718292,-0.682500541210175,-0.00545272091403604,0.680239975452423,-0.732969164848328,-0.0604968145489693,0.658131301403046,-0.750468611717224,-0.0638070479035378,0.683623671531677,-0.727039992809296,-0.00845913402736187,0.584095656871796,-0.811640679836273,0.239646598696709,0.528266847133636,-0.814557194709778,-0.0670232325792313,0.642685890197754,-0.763192415237427,-0.0670232325792313,0.642685890197754,-0.763192415237427,-0.0638070479035378,0.683623671531677,-0.727039992809296,-0.0604968145489693,0.658131301403046,-0.750468611717224,0.525004982948303,0.359816014766693,-0.771299004554749,-0.00845913402736187,0.584095656871796,-0.811640679836273,0.368343144655228,0.428625643253326,-0.824986815452576,0.368343144655228,0.428625643253326,-0.824986815452576,0.645620703697205,0.235571980476379,-0.726415574550629,0.781324148178101,0.120321229100227,-0.61241751909256,0.930375039577484,-0.178468406200409,-0.32023611664772,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.890640199184418,-0.153392016887665,-0.428054690361023,\r\n0.877468168735504,-0.0520549267530441,-0.476801574230194,0.645620703697205,0.235571980476379,-0.726415574550629,0.790345251560211,0.024079367518425,-0.612188160419464,-0.0104876449331641,0.924668967723846,0.380627453327179,-0.0644276216626167,0.891282856464386,0.44884717464447,0.157099515199661,0.865088403224945,0.476383984088898,0.157099515199661,0.865088403224945,0.476383984088898,0.0838195979595184,0.942923724651337,0.322287172079086,-0.0104876449331641,0.924668967723846,0.380627453327179,0.29902184009552,0.892219126224518,0.338424175977707,0.258094906806946,0.947119951248169,0.190658867359161,0.0838195979595184,0.942923724651337,0.322287172079086,0.324909389019012,0.94515985250473,0.033266942948103,0.258094906806946,0.947119951248169,0.190658867359161,0.475403636693954,0.86976557970047,0.132284015417099,0.324909389019012,0.94515985250473,0.033266942948103,0.274790912866592,0.959982991218567,-0.0540607385337353,0.213246420025826,0.976953089237213,0.00940692331641912,0.355677217245102,0.91974014043808,-0.166047215461731,0.274790912866592,0.959982991218567,-0.0540607385337353,0.385861128568649,0.919537246227264,-0.074580691754818,0.175267457962036,0.952198684215546,-0.250197649002075,0.189634174108505,0.975761830806732,-0.10921361297369,0.355677217245102,0.91974014043808,-0.166047215461731,0.409322887659073,0.271448850631714,0.871074140071869,0.30143079161644,0.382033973932266,0.873607099056244,-0.055747989565134,0.497017711400986,0.865947723388672,-0.187658607959747,0.579621911048889,0.792983293533325,0.233871787786484,0.406893819570541,0.883029580116272,-0.055747989565134,0.497017711400986,0.865947723388672,-0.211880043148994,0.772024273872375,0.599237203598022,-0.198184311389923,0.811603128910065,0.549566388130188,-0.238735169172287,0.716652870178223,0.655296802520752,-0.242892205715179,0.637509524822235,0.731153070926666,-0.187658607959747,0.579621911048889,0.792983293533325,-0.275571346282959,0.599471390247345,0.751461446285248,-0.245692119002342,0.651006996631622,0.718209624290466,-0.238735169172287,0.716652870178223,0.655296802520752,\r\n-0.242892205715179,0.637509524822235,0.731153070926666,-0.288060009479523,0.836284935474396,0.466528415679932,-0.211880043148994,0.772024273872375,0.599237203598022,-0.181554481387138,0.842876732349396,0.506553649902344,-0.181554481387138,0.842876732349396,0.506553649902344,0.0192318335175514,0.830216705799103,0.557108759880066,-0.0644276216626167,0.891282856464386,0.44884717464447,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.0358109585940838,-0.5691938996315,-0.82142299413681,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.072030633687973,-0.588516533374786,-0.805269956588745,-0.0358109585940838,-0.5691938996315,-0.82142299413681,-0.072030633687973,-0.588516533374786,-0.805269956588745,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.0748671069741249,-0.635808110237122,-0.768207550048828,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.0493215583264828,-0.694184005260468,-0.718105673789978,-0.0748671069741249,-0.635808110237122,-0.768207550048828,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.0493215583264828,-0.694184005260468,-0.718105673789978,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.0641238838434219,-0.743033528327942,-0.666175007820129,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.167849004268646,-0.480202555656433,-0.860948383808136,0.0364860668778419,-0.806113839149475,-0.59063446521759,-0.0494565181434155,-0.781772434711456,-0.62159937620163,0.0539583414793015,-0.829480171203613,-0.555923521518707,-0.0641238838434219,-0.743033528327942,-0.666175007820129,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.0494565181434155,-0.781772434711456,-0.62159937620163,0.488074272871017,-0.0365314334630966,0.872037172317505,0.573913753032684,0.0282095428556204,0.81842964887619,0.496804565191269,0.00290034804493189,0.867857575416565,\r\n0.488074272871017,-0.0365314334630966,0.872037172317505,0.491185873746872,-0.135027900338173,0.86052531003952,0.612445414066315,-0.107604123651981,0.783154964447021,0.491185873746872,-0.135027900338173,0.86052531003952,0.493314564228058,-0.25230085849762,0.832457184791565,0.615833163261414,-0.199936613440514,0.762085735797882,0.699797034263611,-0.239807859063149,0.672886371612549,0.615833163261414,-0.199936613440514,0.762085735797882,0.619157671928406,-0.290588557720184,0.729521691799164,0.779412448406219,-0.271349668502808,0.564699351787567,0.844359755516052,-0.284212589263916,0.454180330038071,0.812104284763336,-0.337433129549026,0.476051837205887,0.777458012104034,-0.356344819068909,0.518244385719299,0.812104284763336,-0.337433129549026,0.476051837205887,0.820506036281586,-0.291763544082642,0.491572737693787,0.777374446392059,-0.199197247624397,0.59666520357132,0.844359755516052,-0.284212589263916,0.454180330038071,0.779412448406219,-0.271349668502808,0.564699351787567,0.777374446392059,-0.199197247624397,0.59666520357132,0.577973484992981,-0.0125208534300327,0.815959393978119,0.793731451034546,-0.0998657867312431,0.600014209747314,0.773592233657837,-0.245969623327255,0.583998143672943,0.717692136764526,-0.314563304185867,0.621263027191162,0.777458012104034,-0.356344819068909,0.518244385719299,0.717692136764526,-0.314563304185867,0.621263027191162,0.699797034263611,-0.239807859063149,0.672886371612549,0.619157671928406,-0.290588557720184,0.729521691799164,0.440667688846588,0.12911656498909,0.888335943222046,0.577973484992981,-0.0125208534300327,0.815959393978119,0.195896774530411,0.215574979782104,0.956635653972626,-0.0142970019951463,0.371899276971817,0.928162932395935,0.375696331262589,0.298830419778824,0.877241432666779,0.440667688846588,0.12911656498909,0.888335943222046,0.30143079161644,0.382033973932266,0.873607099056244,0.563565671443939,0.25370666384697,0.786146700382233,0.157028466463089,0.491419196128845,0.856649935245514,-0.108485989272594,0.517616271972656,0.848707258701324,0.157028466463089,0.491419196128845,0.856649935245514,\r\n0.375696331262589,0.298830419778824,0.877241432666779,0.682855606079102,0.123437337577343,-0.720049500465393,0.7866370677948,0.0277846250683069,-0.616790056228638,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.736209511756897,-0.143965676426888,-0.661263406276703,0.704225599765778,-0.0068646571598947,-0.709942936897278,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.784257411956787,-0.140808194875717,-0.604246020317078,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.736209511756897,-0.143965676426888,-0.661263406276703,0.783553779125214,-0.191613107919693,-0.591039538383484,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.558926224708557,-0.0405175685882568,-0.828226804733276,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.567772209644318,-0.119816012680531,-0.814419209957123,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.643607616424561,-0.072415366768837,-0.761921942234039,0.691112101078033,-0.251735985279083,-0.67749011516571,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.644428610801697,-0.179499343037605,-0.743297755718231,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.644428610801697,-0.179499343037605,-0.743297755718231,0.567772209644318,-0.119816012680531,-0.814419209957123,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.643607616424561,-0.072415366768837,-0.761921942234039,0.617503225803375,0.151027977466583,-0.771932721138,0.62576425075531,0.00114740163553506,-0.780011296272278,0.677533864974976,0.0137109309434891,-0.735363662242889,0.703906297683716,-0.11156041175127,-0.70147705078125,0.634822368621826,0.136758595705032,-0.760458707809448,0.62576425075531,0.00114740163553506,-0.780011296272278,0.617503225803375,0.151027977466583,-0.771932721138,0.634822368621826,0.136758595705032,-0.760458707809448,\r\n0.677533864974976,0.0137109309434891,-0.735363662242889,0.662457704544067,-0.150453567504883,-0.733834683895111,0.74260425567627,-0.137038677930832,-0.655560195446014,0.441991478204727,-0.152943953871727,-0.883884370326996,0.445736318826675,-0.229804202914238,-0.865164160728455,0.525519371032715,-0.144933387637138,-0.83834570646286,0.386035859584808,-0.212119966745377,-0.897764682769775,0.384184896945953,-0.21492001414299,-0.897892534732819,0.445736318826675,-0.229804202914238,-0.865164160728455,0.54416823387146,0.0286969691514969,-0.83848512172699,0.525519371032715,-0.144933387637138,-0.83834570646286,0.662457704544067,-0.150453567504883,-0.733834683895111,0.354249596595764,-0.144418135285378,-0.923932075500488,0.384184896945953,-0.21492001414299,-0.897892534732819,0.30435636639595,-0.201861873269081,-0.930923640727997,0.246915727853775,-0.21217006444931,-0.945524394512177,0.303817391395569,-0.190586134791374,-0.933472990989685,0.164774879813194,-0.139229267835617,-0.976454973220825,0.252594262361526,-0.188267111778259,-0.949079275131226,0.249878779053688,-0.197424203157425,-0.947936773300171,0.246915727853775,-0.21217006444931,-0.945524394512177,0.164774879813194,-0.139229267835617,-0.976454973220825,0.109108649194241,-0.0782552808523178,-0.990944683551788,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.262739896774292,-0.141196444630623,-0.954479575157166,0.30435636639595,-0.201861873269081,-0.930923640727997,0.249878779053688,-0.197424203157425,-0.947936773300171,0.109108649194241,-0.0782552808523178,-0.990944683551788,0.118938446044922,-0.224728524684906,-0.96713525056839,0.0435648411512375,-0.251730144023895,-0.966816425323486,0.913582861423492,-0.22806254029274,-0.336680382490158,0.886550426483154,-0.157772228121758,-0.434897929430008,0.920982122421265,-0.204448983073235,-0.331650704145432,0.924920201301575,-0.219309195876122,-0.310525268316269,0.913582861423492,-0.22806254029274,-0.336680382490158,0.920982122421265,-0.204448983073235,-0.331650704145432,0.930375039577484,-0.178468406200409,-0.32023611664772,\r\n0.890640199184418,-0.153392016887665,-0.428054690361023,0.924920201301575,-0.219309195876122,-0.310525268316269,0.842954397201538,-0.107503414154053,-0.527134478092194,0.856631398200989,-0.0515925325453281,-0.513342797756195,0.886550426483154,-0.157772228121758,-0.434897929430008,0.842954397201538,-0.107503414154053,-0.527134478092194,0.7866370677948,0.0277846250683069,-0.616790056228638,0.856631398200989,-0.0515925325453281,-0.513342797756195,7.84549629315734e-005,0.963148176670074,-0.268971174955368,0.175267457962036,0.952198684215546,-0.250197649002075,0.126085072755814,0.920925378799438,-0.368780314922333,0.214160621166229,0.76902574300766,-0.602274417877197,0.0386960655450821,0.790447294712067,-0.611306428909302,0.18304243683815,0.82282817363739,-0.538004755973816,0.126085072755814,0.920925378799438,-0.368780314922333,0.246637672185898,0.857856214046478,-0.450835406780243,0.109067425131798,0.881199955940247,-0.45999002456665,0.18304243683815,0.82282817363739,-0.538004755973816,0.109067425131798,0.881199955940247,-0.45999002456665,0.246637672185898,0.857856214046478,-0.450835406780243,0.164941847324371,0.704309523105621,-0.690465152263641,0.15407457947731,0.645401954650879,-0.74814248085022,0.0239249169826508,0.730493366718292,-0.682500541210175,0.214160621166229,0.76902574300766,-0.602274417877197,0.164941847324371,0.704309523105621,-0.690465152263641,0.0386960655450821,0.790447294712067,-0.611306428909302,0.15407457947731,0.645401954650879,-0.74814248085022,-0.00545272091403604,0.680239975452423,-0.732969164848328,0.0239249169826508,0.730493366718292,-0.682500541210175,-0.00545272091403604,0.680239975452423,-0.732969164848328,0.0656522288918495,0.608591496944427,-0.790762901306152,-0.0604968145489693,0.658131301403046,-0.750468611717224,-0.0459988638758659,0.609588146209717,-0.791382491588593,-0.00845913402736187,0.584095656871796,-0.811640679836273,-0.0670232325792313,0.642685890197754,-0.763192415237427,-0.0459988638758659,0.609588146209717,-0.791382491588593,-0.0670232325792313,0.642685890197754,-0.763192415237427,\r\n-0.0604968145489693,0.658131301403046,-0.750468611717224,0.194678753614426,0.515737414360046,-0.834335029125214,0.368343144655228,0.428625643253326,-0.824986815452576,-0.00845913402736187,0.584095656871796,-0.811640679836273,0.368343144655228,0.428625643253326,-0.824986815452576,0.194678753614426,0.515737414360046,-0.834335029125214,0.645620703697205,0.235571980476379,-0.726415574550629,0.890640199184418,-0.153392016887665,-0.428054690361023,0.877468168735504,-0.0520549267530441,-0.476801574230194,0.790345251560211,0.024079367518425,-0.612188160419464,0.374783247709274,0.388546824455261,-0.841765224933624,0.790345251560211,0.024079367518425,-0.612188160419464,0.645620703697205,0.235571980476379,-0.726415574550629,-0.0644276216626167,0.891282856464386,0.44884717464447,0.0192318335175514,0.830216705799103,0.557108759880066,0.157099515199661,0.865088403224945,0.476383984088898,0.157099515199661,0.865088403224945,0.476383984088898,0.29902184009552,0.892219126224518,0.338424175977707,0.0838195979595184,0.942923724651337,0.322287172079086,0.434840589761734,0.870893120765686,0.229038625955582,0.258094906806946,0.947119951248169,0.190658867359161,0.29902184009552,0.892219126224518,0.338424175977707,0.434840589761734,0.870893120765686,0.229038625955582,0.475403636693954,0.86976557970047,0.132284015417099,0.258094906806946,0.947119951248169,0.190658867359161,0.467873871326447,0.88369607925415,-0.0132346441969275,0.324909389019012,0.94515985250473,0.033266942948103,0.475403636693954,0.86976557970047,0.132284015417099,0.324909389019012,0.94515985250473,0.033266942948103,0.385861128568649,0.919537246227264,-0.074580691754818,0.274790912866592,0.959982991218567,-0.0540607385337353,0.355677217245102,0.91974014043808,-0.166047215461731,0.385861128568649,0.919537246227264,-0.074580691754818,0.48650062084198,0.865674555301666,-0.11800279468298,0.175267457962036,0.952198684215546,-0.250197649002075,0.355677217245102,0.91974014043808,-0.166047215461731,0.345444321632385,0.877490222454071,-0.332684606313705,0.157028466463089,0.491419196128845,0.856649935245514,\r\n-0.055747989565134,0.497017711400986,0.865947723388672,0.30143079161644,0.382033973932266,0.873607099056244,-0.304618269205093,0.57025933265686,0.76289701461792,-0.187658607959747,0.579621911048889,0.792983293533325,-0.055747989565134,0.497017711400986,0.865947723388672,-0.238735169172287,0.716652870178223,0.655296802520752,-0.140128269791603,0.676008880138397,0.723447203636169,-0.211880043148994,0.772024273872375,0.599237203598022,-0.275571346282959,0.599471390247345,0.751461446285248,-0.187658607959747,0.579621911048889,0.792983293533325,-0.304618269205093,0.57025933265686,0.76289701461792,-0.275571346282959,0.599471390247345,0.751461446285248,-0.245692119002342,0.651006996631622,0.718209624290466,-0.242892205715179,0.637509524822235,0.731153070926666,-0.245692119002342,0.651006996631622,0.718209624290466,-0.140128269791603,0.676008880138397,0.723447203636169,-0.238735169172287,0.716652870178223,0.655296802520752,-0.181554481387138,0.842876732349396,0.506553649902344,-0.211880043148994,0.772024273872375,0.599237203598022,-0.0829204395413399,0.793756902217865,0.602556228637695,0.0192318335175514,0.830216705799103,0.557108759880066,-0.181554481387138,0.842876732349396,0.506553649902344,-0.0829204395413399,0.793756902217865,0.602556228637695,-0.0742243826389313,-0.494230300188065,-0.866156458854675,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.0748671069741249,-0.635808110237122,-0.768207550048828,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.0647237300872803,-0.706927716732025,-0.704317986965179,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.0641238838434219,-0.743033528327942,-0.666175007820129,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.182984232902527,-0.417932957410812,-0.889858782291412,\r\n-0.235160961747169,-0.373922854661942,-0.897151529788971,0.00863191951066256,-0.814293920993805,-0.580388426780701,0.0539583414793015,-0.829480171203613,-0.555923521518707,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.202158883213997,-0.722759604454041,-0.660870790481567,0.496804565191269,0.00290034804493189,0.867857575416565,0.518883585929871,-0.0204521045088768,0.854600131511688,0.488074272871017,-0.0365314334630966,0.872037172317505,0.492692589759827,-0.0889653638005257,0.865643739700317,0.491185873746872,-0.135027900338173,0.86052531003952,0.488074272871017,-0.0365314334630966,0.872037172317505,0.493314564228058,-0.25230085849762,0.832457184791565,0.491185873746872,-0.135027900338173,0.86052531003952,0.469198793172836,-0.169504687190056,0.866672098636627,0.615833163261414,-0.199936613440514,0.762085735797882,0.493314564228058,-0.25230085849762,0.832457184791565,0.619157671928406,-0.290588557720184,0.729521691799164,0.812104284763336,-0.337433129549026,0.476051837205887,0.762322545051575,-0.366637021303177,0.53333055973053,0.779412448406219,-0.271349668502808,0.564699351787567,0.777458012104034,-0.356344819068909,0.518244385719299,0.762322545051575,-0.366637021303177,0.53333055973053,0.812104284763336,-0.337433129549026,0.476051837205887,0.635944187641144,-0.10819286108017,0.764113306999207,0.777374446392059,-0.199197247624397,0.59666520357132,0.779412448406219,-0.271349668502808,0.564699351787567,0.635944187641144,-0.10819286108017,0.764113306999207,0.577973484992981,-0.0125208534300327,0.815959393978119,0.777374446392059,-0.199197247624397,0.59666520357132,0.699936091899872,-0.405220955610275,0.588120102882385,0.777458012104034,-0.356344819068909,0.518244385719299,0.717692136764526,-0.314563304185867,0.621263027191162,0.717692136764526,-0.314563304185867,0.621263027191162,0.619157671928406,-0.290588557720184,0.729521691799164,0.602538645267487,-0.354560166597366,0.715006351470947,0.288942903280258,0.14644268155098,0.94607949256897,\r\n0.195896774530411,0.215574979782104,0.956635653972626,0.577973484992981,-0.0125208534300327,0.815959393978119,0.440667688846588,0.12911656498909,0.888335943222046,0.195896774530411,0.215574979782104,0.956635653972626,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.108485989272594,0.517616271972656,0.848707258701324,0.375696331262589,0.298830419778824,0.877241432666779,-0.108485989272594,0.517616271972656,0.848707258701324,-0.240302607417107,0.561594724655151,0.791748702526093,0.157028466463089,0.491419196128845,0.856649935245514,0.7866370677948,0.0277846250683069,-0.616790056228638,0.842954397201538,-0.107503414154053,-0.527134478092194,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.736209511756897,-0.143965676426888,-0.661263406276703,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.726759493350983,-0.216033279895782,-0.652035355567932,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.80856317281723,-0.187360391020775,-0.557782709598541,0.784257411956787,-0.140808194875717,-0.604246020317078,0.66013902425766,-0.0443399846553802,-0.749833583831787,0.784257411956787,-0.140808194875717,-0.604246020317078,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.736209511756897,-0.143965676426888,-0.661263406276703,0.731193542480469,-0.255106180906296,-0.632674276828766,0.783553779125214,-0.191613107919693,-0.591039538383484,0.749654114246368,-0.0898880809545517,-0.655697047710419,0.783553779125214,-0.191613107919693,-0.591039538383484,0.80856317281723,-0.187360391020775,-0.557782709598541,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.59257572889328,-0.0561866760253906,-0.803552746772766,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.567772209644318,-0.119816012680531,-0.814419209957123,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.631433546543121,0.105408303439617,-0.76823216676712,\r\n0.643607616424561,-0.072415366768837,-0.761921942234039,0.661557674407959,-0.0743049681186676,-0.746203720569611,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.631433546543121,0.105408303439617,-0.76823216676712,0.617503225803375,0.151027977466583,-0.771932721138,0.643607616424561,-0.072415366768837,-0.761921942234039,0.631433546543121,0.105408303439617,-0.76823216676712,0.677533864974976,0.0137109309434891,-0.735363662242889,0.634822368621826,0.136758595705032,-0.760458707809448,0.581983029842377,0.164157152175903,-0.796459674835205,0.617503225803375,0.151027977466583,-0.771932721138,0.596173465251923,0.149996086955071,-0.788719415664673,0.634822368621826,0.136758595705032,-0.760458707809448,0.677533864974976,0.0137109309434891,-0.735363662242889,0.54416823387146,0.0286969691514969,-0.83848512172699,0.662457704544067,-0.150453567504883,-0.733834683895111,0.441991478204727,-0.152943953871727,-0.883884370326996,0.386035859584808,-0.212119966745377,-0.897764682769775,0.445736318826675,-0.229804202914238,-0.865164160728455,0.441991478204727,-0.152943953871727,-0.883884370326996,0.525519371032715,-0.144933387637138,-0.83834570646286,0.434740126132965,0.0134115880355239,-0.900456011295319,0.298943638801575,-0.175239503383636,-0.938042521476746,0.384184896945953,-0.21492001414299,-0.897892534732819,0.386035859584808,-0.212119966745377,-0.897764682769775,0.54416823387146,0.0286969691514969,-0.83848512172699,0.434740126132965,0.0134115880355239,-0.900456011295319,0.525519371032715,-0.144933387637138,-0.83834570646286,0.298943638801575,-0.175239503383636,-0.938042521476746,0.30435636639595,-0.201861873269081,-0.930923640727997,0.384184896945953,-0.21492001414299,-0.897892534732819,0.303817391395569,-0.190586134791374,-0.933472990989685,0.246915727853775,-0.21217006444931,-0.945524394512177,0.26255190372467,-0.235285311937332,-0.935792326927185,0.164774879813194,-0.139229267835617,-0.976454973220825,0.303817391395569,-0.190586134791374,-0.933472990989685,0.273255467414856,0.0116297481581569,-0.961871027946472,0.246915727853775,-0.21217006444931,-0.945524394512177,\r\n0.249878779053688,-0.197424203157425,-0.947936773300171,0.241163119673729,-0.271219372749329,-0.931815624237061,0.164774879813194,-0.139229267835617,-0.976454973220825,0.273255467414856,0.0116297481581569,-0.961871027946472,0.109108649194241,-0.0782552808523178,-0.990944683551788,0.249878779053688,-0.197424203157425,-0.947936773300171,0.30435636639595,-0.201861873269081,-0.930923640727997,0.241163119673729,-0.271219372749329,-0.931815624237061,0.8862184882164,-0.184859782457352,-0.424786478281021,0.886550426483154,-0.157772228121758,-0.434897929430008,0.913582861423492,-0.22806254029274,-0.336680382490158,0.883534550666809,-0.217431962490082,-0.414837211370468,0.913582861423492,-0.22806254029274,-0.336680382490158,0.924920201301575,-0.219309195876122,-0.310525268316269,0.883534550666809,-0.217431962490082,-0.414837211370468,0.924920201301575,-0.219309195876122,-0.310525268316269,0.890640199184418,-0.153392016887665,-0.428054690361023,0.842954397201538,-0.107503414154053,-0.527134478092194,0.886550426483154,-0.157772228121758,-0.434897929430008,0.8862184882164,-0.184859782457352,-0.424786478281021,0.345444321632385,0.877490222454071,-0.332684606313705,0.126085072755814,0.920925378799438,-0.368780314922333,0.175267457962036,0.952198684215546,-0.250197649002075,0.18304243683815,0.82282817363739,-0.538004755973816,0.358100563287735,0.774857580661774,-0.520921766757965,0.214160621166229,0.76902574300766,-0.602274417877197,0.345444321632385,0.877490222454071,-0.332684606313705,0.246637672185898,0.857856214046478,-0.450835406780243,0.126085072755814,0.920925378799438,-0.368780314922333,0.18304243683815,0.82282817363739,-0.538004755973816,0.246637672185898,0.857856214046478,-0.450835406780243,0.358100563287735,0.774857580661774,-0.520921766757965,0.347746908664703,0.547158241271973,-0.76137363910675,0.15407457947731,0.645401954650879,-0.74814248085022,0.164941847324371,0.704309523105621,-0.690465152263641,0.354791283607483,0.684493243694305,-0.636861026287079,0.164941847324371,0.704309523105621,-0.690465152263641,0.214160621166229,0.76902574300766,-0.602274417877197,\r\n0.169512510299683,0.590579271316528,-0.788974940776825,-0.00545272091403604,0.680239975452423,-0.732969164848328,0.15407457947731,0.645401954650879,-0.74814248085022,-0.00545272091403604,0.680239975452423,-0.732969164848328,0.169512510299683,0.590579271316528,-0.788974940776825,0.0656522288918495,0.608591496944427,-0.790762901306152,0.0656522288918495,0.608591496944427,-0.790762901306152,-0.0459988638758659,0.609588146209717,-0.791382491588593,-0.0604968145489693,0.658131301403046,-0.750468611717224,-0.077507495880127,0.562262177467346,-0.823318719863892,-0.00845913402736187,0.584095656871796,-0.811640679836273,-0.0459988638758659,0.609588146209717,-0.791382491588593,0.194678753614426,0.515737414360046,-0.834335029125214,-0.00845913402736187,0.584095656871796,-0.811640679836273,-0.0448160320520401,0.560647070407867,-0.826841115951538,0.194678753614426,0.515737414360046,-0.834335029125214,0.374783247709274,0.388546824455261,-0.841765224933624,0.645620703697205,0.235571980476379,-0.726415574550629,0.828688204288483,-0.104165971279144,-0.54993200302124,0.890640199184418,-0.153392016887665,-0.428054690361023,0.790345251560211,0.024079367518425,-0.612188160419464,0.374783247709274,0.388546824455261,-0.841765224933624,0.5385582447052,0.190662771463394,-0.820732951164246,0.790345251560211,0.024079367518425,-0.612188160419464,0.0192318335175514,0.830216705799103,0.557108759880066,0.168556556105614,0.76850438117981,0.617243468761444,0.157099515199661,0.865088403224945,0.476383984088898,0.401387244462967,0.787375509738922,0.467897415161133,0.29902184009552,0.892219126224518,0.338424175977707,0.157099515199661,0.865088403224945,0.476383984088898,0.456258475780487,0.821370720863342,0.342313021421433,0.434840589761734,0.870893120765686,0.229038625955582,0.29902184009552,0.892219126224518,0.338424175977707,0.567328214645386,0.774431943893433,0.279988497495651,0.475403636693954,0.86976557970047,0.132284015417099,0.434840589761734,0.870893120765686,0.229038625955582,0.385861128568649,0.919537246227264,-0.074580691754818,0.324909389019012,0.94515985250473,0.033266942948103,\r\n0.467873871326447,0.88369607925415,-0.0132346441969275,0.570314228534698,0.819469571113586,0.0566667951643467,0.467873871326447,0.88369607925415,-0.0132346441969275,0.475403636693954,0.86976557970047,0.132284015417099,0.385861128568649,0.919537246227264,-0.074580691754818,0.467873871326447,0.88369607925415,-0.0132346441969275,0.48650062084198,0.865674555301666,-0.11800279468298,0.355677217245102,0.91974014043808,-0.166047215461731,0.48650062084198,0.865674555301666,-0.11800279468298,0.533418655395508,0.81656140089035,-0.220662280917168,0.345444321632385,0.877490222454071,-0.332684606313705,0.355677217245102,0.91974014043808,-0.166047215461731,0.533418655395508,0.81656140089035,-0.220662280917168,0.157028466463089,0.491419196128845,0.856649935245514,-0.240302607417107,0.561594724655151,0.791748702526093,-0.055747989565134,0.497017711400986,0.865947723388672,-0.240302607417107,0.561594724655151,0.791748702526093,-0.304618269205093,0.57025933265686,0.76289701461792,-0.055747989565134,0.497017711400986,0.865947723388672,-0.211880043148994,0.772024273872375,0.599237203598022,-0.140128269791603,0.676008880138397,0.723447203636169,-0.0715654492378235,0.731287956237793,0.678303897380829,-0.304618269205093,0.57025933265686,0.76289701461792,-0.192044004797935,0.528870105743408,0.826689422130585,-0.275571346282959,0.599471390247345,0.751461446285248,-0.245692119002342,0.651006996631622,0.718209624290466,-0.275571346282959,0.599471390247345,0.751461446285248,-0.117344155907631,0.596601545810699,0.793912291526794,-0.245692119002342,0.651006996631622,0.718209624290466,-0.117344155907631,0.596601545810699,0.793912291526794,-0.140128269791603,0.676008880138397,0.723447203636169,-0.211880043148994,0.772024273872375,0.599237203598022,-0.0715654492378235,0.731287956237793,0.678303897380829,-0.0829204395413399,0.793756902217865,0.602556228637695,0.0192318335175514,0.830216705799103,0.557108759880066,-0.0829204395413399,0.793756902217865,0.602556228637695,0.0458142310380936,0.753952622413635,0.65532922744751,-0.207450598478317,-0.533555388450623,-0.819928526878357,\r\n-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.115969814360142,-0.556965410709381,-0.822399139404297,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.235160961747169,-0.373922854661942,-0.897151529788971,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.235160961747169,-0.373922854661942,-0.897151529788971,0.0539583414793015,-0.829480171203613,-0.555923521518707,0.00863191951066256,-0.814293920993805,-0.580388426780701,0.152846723794937,-0.861648917198181,-0.483941107988358,-0.00106569530908018,-0.810628890991211,-0.585559129714966,0.00863191951066256,-0.814293920993805,-0.580388426780701,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.0400127544999123,-0.794187247753143,-0.606354296207428,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.0434652380645275,-0.816667079925537,-0.575469851493835,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.202158883213997,-0.722759604454041,-0.660870790481567,0.492692589759827,-0.0889653638005257,0.865643739700317,0.488074272871017,-0.0365314334630966,0.872037172317505,0.518883585929871,-0.0204521045088768,0.854600131511688,0.491185873746872,-0.135027900338173,0.86052531003952,0.492692589759827,-0.0889653638005257,0.865643739700317,0.469198793172836,-0.169504687190056,0.866672098636627,0.493314564228058,-0.25230085849762,0.832457184791565,0.469198793172836,-0.169504687190056,0.866672098636627,\r\n0.468323171138763,-0.226812466979027,0.853949308395386,0.602538645267487,-0.354560166597366,0.715006351470947,0.619157671928406,-0.290588557720184,0.729521691799164,0.493314564228058,-0.25230085849762,0.832457184791565,0.658665180206299,-0.24921028316021,0.709967792034149,0.779412448406219,-0.271349668502808,0.564699351787567,0.762322545051575,-0.366637021303177,0.53333055973053,0.725668132305145,-0.421099096536636,0.544133424758911,0.762322545051575,-0.366637021303177,0.53333055973053,0.777458012104034,-0.356344819068909,0.518244385719299,0.658665180206299,-0.24921028316021,0.709967792034149,0.635944187641144,-0.10819286108017,0.764113306999207,0.779412448406219,-0.271349668502808,0.564699351787567,0.635944187641144,-0.10819286108017,0.764113306999207,0.288942903280258,0.14644268155098,0.94607949256897,0.577973484992981,-0.0125208534300327,0.815959393978119,0.725668132305145,-0.421099096536636,0.544133424758911,0.777458012104034,-0.356344819068909,0.518244385719299,0.699936091899872,-0.405220955610275,0.588120102882385,0.699936091899872,-0.405220955610275,0.588120102882385,0.717692136764526,-0.314563304185867,0.621263027191162,0.602538645267487,-0.354560166597366,0.715006351470947,0.288942903280258,0.14644268155098,0.94607949256897,-0.135724782943726,0.378334671258926,0.915664553642273,0.195896774530411,0.215574979782104,0.956635653972626,0.195896774530411,0.215574979782104,0.956635653972626,-0.135724782943726,0.378334671258926,0.915664553642273,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.108485989272594,0.517616271972656,0.848707258701324,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.273560404777527,0.492881447076797,0.825973629951477,-0.293781906366348,0.549456536769867,0.782169759273529,-0.240302607417107,0.561594724655151,0.791748702526093,-0.108485989272594,0.517616271972656,0.848707258701324,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.842954397201538,-0.107503414154053,-0.527134478092194,0.7975714802742,-0.215157389640808,-0.563548445701599,0.7975714802742,-0.215157389640808,-0.563548445701599,\r\n0.726759493350983,-0.216033279895782,-0.652035355567932,0.738609969615936,-0.0391630455851555,-0.672994375228882,0.726759493350983,-0.216033279895782,-0.652035355567932,0.731193542480469,-0.255106180906296,-0.632674276828766,0.736209511756897,-0.143965676426888,-0.661263406276703,0.743033945560455,-0.276756584644318,-0.609349012374878,0.784257411956787,-0.140808194875717,-0.604246020317078,0.80856317281723,-0.187360391020775,-0.557782709598541,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.784257411956787,-0.140808194875717,-0.604246020317078,0.693989038467407,-0.173174902796745,-0.698848783969879,0.731193542480469,-0.255106180906296,-0.632674276828766,0.743385851383209,-0.217065036296844,-0.632661163806915,0.783553779125214,-0.191613107919693,-0.591039538383484,0.80856317281723,-0.187360391020775,-0.557782709598541,0.783553779125214,-0.191613107919693,-0.591039538383484,0.79752242565155,-0.170116066932678,-0.578807711601257,0.59257572889328,-0.0561866760253906,-0.803552746772766,0.685253322124481,-0.0622773543000221,-0.725637137889862,0.693989038467407,-0.173174902796745,-0.698848783969879,0.546902418136597,0.00807333830744028,-0.837157309055328,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.59257572889328,-0.0561866760253906,-0.803552746772766,0.546902418136597,0.00807333830744028,-0.837157309055328,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.539591550827026,-0.00304569373838604,-0.841921329498291,0.631433546543121,0.105408303439617,-0.76823216676712,0.546761453151703,-0.0116944722831249,-0.837206661701202,0.546902418136597,0.00807333830744028,-0.837157309055328,0.68188601732254,0.11128756403923,-0.722942888736725,0.617503225803375,0.151027977466583,-0.771932721138,0.631433546543121,0.105408303439617,-0.76823216676712,0.634822368621826,0.136758595705032,-0.760458707809448,0.596173465251923,0.149996086955071,-0.788719415664673,0.581983029842377,0.164157152175903,-0.796459674835205,0.677533864974976,0.0137109309434891,-0.735363662242889,0.581983029842377,0.164157152175903,-0.796459674835205,\r\n0.54416823387146,0.0286969691514969,-0.83848512172699,0.68188601732254,0.11128756403923,-0.722942888736725,0.596173465251923,0.149996086955071,-0.788719415664673,0.617503225803375,0.151027977466583,-0.771932721138,0.441991478204727,-0.152943953871727,-0.883884370326996,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.386035859584808,-0.212119966745377,-0.897764682769775,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.441991478204727,-0.152943953871727,-0.883884370326996,0.434740126132965,0.0134115880355239,-0.900456011295319,0.298943638801575,-0.175239503383636,-0.938042521476746,0.386035859584808,-0.212119966745377,-0.897764682769775,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.490540772676468,0.108081601560116,-0.864689528942108,0.434740126132965,0.0134115880355239,-0.900456011295319,0.54416823387146,0.0286969691514969,-0.83848512172699,0.298943638801575,-0.175239503383636,-0.938042521476746,0.237377792596817,-0.273141771554947,-0.932226002216339,0.30435636639595,-0.201861873269081,-0.930923640727997,0.246915727853775,-0.21217006444931,-0.945524394512177,0.241163119673729,-0.271219372749329,-0.931815624237061,0.26255190372467,-0.235285311937332,-0.935792326927185,0.237377792596817,-0.273141771554947,-0.932226002216339,0.241163119673729,-0.271219372749329,-0.931815624237061,0.30435636639595,-0.201861873269081,-0.930923640727997,0.885589122772217,-0.241126582026482,-0.396975487470627,0.8862184882164,-0.184859782457352,-0.424786478281021,0.913582861423492,-0.22806254029274,-0.336680382490158,0.883534550666809,-0.217431962490082,-0.414837211370468,0.901855111122131,-0.276616454124451,-0.331874281167984,0.913582861423492,-0.22806254029274,-0.336680382490158,0.883534550666809,-0.217431962490082,-0.414837211370468,0.890640199184418,-0.153392016887665,-0.428054690361023,0.828688204288483,-0.104165971279144,-0.54993200302124,0.858522057533264,-0.198622211813927,-0.472746193408966,0.842954397201538,-0.107503414154053,-0.527134478092194,0.8862184882164,-0.184859782457352,-0.424786478281021,\r\n0.358100563287735,0.774857580661774,-0.520921766757965,0.354791283607483,0.684493243694305,-0.636861026287079,0.214160621166229,0.76902574300766,-0.602274417877197,0.246637672185898,0.857856214046478,-0.450835406780243,0.345444321632385,0.877490222454071,-0.332684606313705,0.389457195997238,0.814104676246643,-0.430762857198715,0.358100563287735,0.774857580661774,-0.520921766757965,0.246637672185898,0.857856214046478,-0.450835406780243,0.389457195997238,0.814104676246643,-0.430762857198715,0.15407457947731,0.645401954650879,-0.74814248085022,0.347746908664703,0.547158241271973,-0.76137363910675,0.265107661485672,0.538546741008759,-0.799803197383881,0.354791283607483,0.684493243694305,-0.636861026287079,0.347746908664703,0.547158241271973,-0.76137363910675,0.164941847324371,0.704309523105621,-0.690465152263641,0.15407457947731,0.645401954650879,-0.74814248085022,0.265107661485672,0.538546741008759,-0.799803197383881,0.169512510299683,0.590579271316528,-0.788974940776825,0.228963524103165,0.543875634670258,-0.807325720787048,0.0656522288918495,0.608591496944427,-0.790762901306152,0.169512510299683,0.590579271316528,-0.788974940776825,0.0656522288918495,0.608591496944427,-0.790762901306152,0.130271390080452,0.529609262943268,-0.838178515434265,-0.0459988638758659,0.609588146209717,-0.791382491588593,-0.0448160320520401,0.560647070407867,-0.826841115951538,-0.00845913402736187,0.584095656871796,-0.811640679836273,-0.077507495880127,0.562262177467346,-0.823318719863892,0.00643936032429338,0.545796871185303,-0.837892711162567,-0.077507495880127,0.562262177467346,-0.823318719863892,-0.0459988638758659,0.609588146209717,-0.791382491588593,0.194678753614426,0.515737414360046,-0.834335029125214,-0.0448160320520401,0.560647070407867,-0.826841115951538,0.374783247709274,0.388546824455261,-0.841765224933624,0.828688204288483,-0.104165971279144,-0.54993200302124,0.790345251560211,0.024079367518425,-0.612188160419464,0.5385582447052,0.190662771463394,-0.820732951164246,0.374783247709274,0.388546824455261,-0.841765224933624,0.0567246824502945,0.470190137624741,-0.880740284919739,\r\n0.5385582447052,0.190662771463394,-0.820732951164246,0.0192318335175514,0.830216705799103,0.557108759880066,0.0458142310380936,0.753952622413635,0.65532922744751,0.168556556105614,0.76850438117981,0.617243468761444,0.168556556105614,0.76850438117981,0.617243468761444,0.340362101793289,0.747718334197998,0.570149779319763,0.157099515199661,0.865088403224945,0.476383984088898,0.456258475780487,0.821370720863342,0.342313021421433,0.29902184009552,0.892219126224518,0.338424175977707,0.401387244462967,0.787375509738922,0.467897415161133,0.401387244462967,0.787375509738922,0.467897415161133,0.157099515199661,0.865088403224945,0.476383984088898,0.340362101793289,0.747718334197998,0.570149779319763,0.567328214645386,0.774431943893433,0.279988497495651,0.434840589761734,0.870893120765686,0.229038625955582,0.456258475780487,0.821370720863342,0.342313021421433,0.567328214645386,0.774431943893433,0.279988497495651,0.612865030765533,0.770737707614899,0.174240306019783,0.475403636693954,0.86976557970047,0.132284015417099,0.604538679122925,0.793765127658844,-0.0668570473790169,0.467873871326447,0.88369607925415,-0.0132346441969275,0.570314228534698,0.819469571113586,0.0566667951643467,0.570314228534698,0.819469571113586,0.0566667951643467,0.475403636693954,0.86976557970047,0.132284015417099,0.612865030765533,0.770737707614899,0.174240306019783,0.467873871326447,0.88369607925415,-0.0132346441969275,0.604538679122925,0.793765127658844,-0.0668570473790169,0.48650062084198,0.865674555301666,-0.11800279468298,0.533418655395508,0.81656140089035,-0.220662280917168,0.48650062084198,0.865674555301666,-0.11800279468298,0.604538679122925,0.793765127658844,-0.0668570473790169,0.345444321632385,0.877490222454071,-0.332684606313705,0.533418655395508,0.81656140089035,-0.220662280917168,0.540011823177338,0.766529381275177,-0.347591429948807,-0.293781906366348,0.549456536769867,0.782169759273529,-0.304618269205093,0.57025933265686,0.76289701461792,-0.240302607417107,0.561594724655151,0.791748702526093,-0.0715654492378235,0.731287956237793,0.678303897380829,\r\n-0.140128269791603,0.676008880138397,0.723447203636169,0.0269212517887354,0.670204043388367,0.741688370704651,-0.304618269205093,0.57025933265686,0.76289701461792,-0.293781906366348,0.549456536769867,0.782169759273529,-0.192044004797935,0.528870105743408,0.826689422130585,-0.117344155907631,0.596601545810699,0.793912291526794,-0.275571346282959,0.599471390247345,0.751461446285248,-0.192044004797935,0.528870105743408,0.826689422130585,-0.117344155907631,0.596601545810699,0.793912291526794,-0.0177355073392391,0.609025239944458,0.792952418327332,-0.140128269791603,0.676008880138397,0.723447203636169,0.0458142310380936,0.753952622413635,0.65532922744751,-0.0829204395413399,0.793756902217865,0.602556228637695,-0.0715654492378235,0.731287956237793,0.678303897380829,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.167849004268646,-0.480202555656433,-0.860948383808136,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.153710052371025,-0.629996716976166,-0.761233985424042,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.179083555936813,-0.670630216598511,-0.71985000371933,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.235160961747169,-0.373922854661942,-0.897151529788971,-0.235160961747169,-0.373922854661942,-0.897151529788971,-0.247936218976974,-0.346056491136551,-0.904860496520996,-0.208814963698387,-0.425010591745377,-0.880773663520813,0.00863191951066256,-0.814293920993805,-0.580388426780701,-0.00106569530908018,-0.810628890991211,-0.585559129714966,0.152846723794937,-0.861648917198181,-0.483941107988358,-0.0494565181434155,-0.781772434711456,-0.62159937620163,-0.0400127544999123,-0.794187247753143,-0.606354296207428,\r\n-0.00106569530908018,-0.810628890991211,-0.585559129714966,-0.0046850317157805,-0.819392323493958,-0.573213875293732,-0.0400127544999123,-0.794187247753143,-0.606354296207428,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.00936393160372972,-0.858172357082367,-0.513276219367981,-0.119990333914757,-0.781780183315277,-0.611900210380554,-0.199936538934708,-0.716123342514038,-0.668724596500397,-0.0434652380645275,-0.816667079925537,-0.575469851493835,-0.202158883213997,-0.722759604454041,-0.660870790481567,0.468323171138763,-0.226812466979027,0.853949308395386,0.469198793172836,-0.169504687190056,0.866672098636627,0.521001756191254,-0.254301369190216,0.814793109893799,0.493314564228058,-0.25230085849762,0.832457184791565,0.468323171138763,-0.226812466979027,0.853949308395386,0.504412174224854,-0.299053251743317,0.810021877288818,0.493314564228058,-0.25230085849762,0.832457184791565,0.504412174224854,-0.299053251743317,0.810021877288818,0.602538645267487,-0.354560166597366,0.715006351470947,0.658665180206299,-0.24921028316021,0.709967792034149,0.762322545051575,-0.366637021303177,0.53333055973053,0.699625551700592,-0.375887930393219,0.607644736766815,0.725668132305145,-0.421099096536636,0.544133424758911,0.699625551700592,-0.375887930393219,0.607644736766815,0.762322545051575,-0.366637021303177,0.53333055973053,0.658665180206299,-0.24921028316021,0.709967792034149,0.361869335174561,0.000957367417868227,0.932228267192841,0.635944187641144,-0.10819286108017,0.764113306999207,0.288942903280258,0.14644268155098,0.94607949256897,0.635944187641144,-0.10819286108017,0.764113306999207,0.361869335174561,0.000957367417868227,0.932228267192841,0.677412569522858,-0.441060692071915,0.588708341121674,0.725668132305145,-0.421099096536636,0.544133424758911,0.699936091899872,-0.405220955610275,0.588120102882385,0.621006548404694,-0.424215793609619,0.659083962440491,0.699936091899872,-0.405220955610275,0.588120102882385,0.602538645267487,-0.354560166597366,0.715006351470947,\r\n0.288942903280258,0.14644268155098,0.94607949256897,-0.0420543327927589,0.251833200454712,0.966856420040131,-0.135724782943726,0.378334671258926,0.915664553642273,-0.0142970019951463,0.371899276971817,0.928162932395935,-0.135724782943726,0.378334671258926,0.915664553642273,-0.273560404777527,0.492881447076797,0.825973629951477,-0.293781906366348,0.549456536769867,0.782169759273529,-0.108485989272594,0.517616271972656,0.848707258701324,-0.273560404777527,0.492881447076797,0.825973629951477,0.7975714802742,-0.215157389640808,-0.563548445701599,0.842954397201538,-0.107503414154053,-0.527134478092194,0.858522057533264,-0.198622211813927,-0.472746193408966,0.734182298183441,-0.261879771947861,-0.62641453742981,0.726759493350983,-0.216033279895782,-0.652035355567932,0.7975714802742,-0.215157389640808,-0.563548445701599,0.726759493350983,-0.216033279895782,-0.652035355567932,0.734182298183441,-0.261879771947861,-0.62641453742981,0.731193542480469,-0.255106180906296,-0.632674276828766,0.743033945560455,-0.276756584644318,-0.609349012374878,0.693989038467407,-0.173174902796745,-0.698848783969879,0.784257411956787,-0.140808194875717,-0.604246020317078,0.743033945560455,-0.276756584644318,-0.609349012374878,0.80856317281723,-0.187360391020775,-0.557782709598541,0.74238795042038,-0.32029977440834,-0.588445425033569,0.731193542480469,-0.255106180906296,-0.632674276828766,0.734182298183441,-0.261879771947861,-0.62641453742981,0.743385851383209,-0.217065036296844,-0.632661163806915,0.79752242565155,-0.170116066932678,-0.578807711601257,0.783553779125214,-0.191613107919693,-0.591039538383484,0.743385851383209,-0.217065036296844,-0.632661163806915,0.773418307304382,-0.194676160812378,-0.603262186050415,0.80856317281723,-0.187360391020775,-0.557782709598541,0.79752242565155,-0.170116066932678,-0.578807711601257,0.59257572889328,-0.0561866760253906,-0.803552746772766,0.693989038467407,-0.173174902796745,-0.698848783969879,0.583158552646637,-0.165005877614021,-0.795423805713654,0.59257572889328,-0.0561866760253906,-0.803552746772766,\r\n0.583158552646637,-0.165005877614021,-0.795423805713654,0.546902418136597,0.00807333830744028,-0.837157309055328,0.682426631450653,0.0080387070775032,-0.730909764766693,0.631433546543121,0.105408303439617,-0.76823216676712,0.546902418136597,0.00807333830744028,-0.837157309055328,0.682426631450653,0.0080387070775032,-0.730909764766693,0.68188601732254,0.11128756403923,-0.722942888736725,0.631433546543121,0.105408303439617,-0.76823216676712,0.490540772676468,0.108081601560116,-0.864689528942108,0.581983029842377,0.164157152175903,-0.796459674835205,0.596173465251923,0.149996086955071,-0.788719415664673,0.54416823387146,0.0286969691514969,-0.83848512172699,0.581983029842377,0.164157152175903,-0.796459674835205,0.490540772676468,0.108081601560116,-0.864689528942108,0.68188601732254,0.11128756403923,-0.722942888736725,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.596173465251923,0.149996086955071,-0.788719415664673,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.386035859584808,-0.212119966745377,-0.897764682769775,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.434740126132965,0.0134115880355239,-0.900456011295319,0.364936202764511,0.0760985538363457,-0.927917242050171,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.298943638801575,-0.175239503383636,-0.938042521476746,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.32505077123642,0.0510692894458771,-0.944316625595093,0.490540772676468,0.108081601560116,-0.864689528942108,0.364936202764511,0.0760985538363457,-0.927917242050171,0.434740126132965,0.0134115880355239,-0.900456011295319,0.237377792596817,-0.273141771554947,-0.932226002216339,0.298943638801575,-0.175239503383636,-0.938042521476746,0.26255190372467,-0.235285311937332,-0.935792326927185,0.241163119673729,-0.271219372749329,-0.931815624237061,0.237377792596817,-0.273141771554947,-0.932226002216339,0.26255190372467,-0.235285311937332,-0.935792326927185,0.885589122772217,-0.241126582026482,-0.396975487470627,0.858522057533264,-0.198622211813927,-0.472746193408966,\r\n0.8862184882164,-0.184859782457352,-0.424786478281021,0.913582861423492,-0.22806254029274,-0.336680382490158,0.901855111122131,-0.276616454124451,-0.331874281167984,0.885589122772217,-0.241126582026482,-0.396975487470627,0.883534550666809,-0.217431962490082,-0.414837211370468,0.835364878177643,-0.237064465880394,-0.495949178934097,0.901855111122131,-0.276616454124451,-0.331874281167984,0.828688204288483,-0.104165971279144,-0.54993200302124,0.642739713191986,0.0123391347005963,-0.765985131263733,0.883534550666809,-0.217431962490082,-0.414837211370468,0.563275814056396,0.64558881521225,-0.515689074993134,0.354791283607483,0.684493243694305,-0.636861026287079,0.358100563287735,0.774857580661774,-0.520921766757965,0.345444321632385,0.877490222454071,-0.332684606313705,0.540011823177338,0.766529381275177,-0.347591429948807,0.389457195997238,0.814104676246643,-0.430762857198715,0.358100563287735,0.774857580661774,-0.520921766757965,0.389457195997238,0.814104676246643,-0.430762857198715,0.505065202713013,0.736550331115723,-0.449891775846481,0.402135372161865,0.437063694000244,-0.804526150226593,0.265107661485672,0.538546741008759,-0.799803197383881,0.347746908664703,0.547158241271973,-0.76137363910675,0.347746908664703,0.547158241271973,-0.76137363910675,0.354791283607483,0.684493243694305,-0.636861026287079,0.495108544826508,0.57940399646759,-0.647424459457397,0.265107661485672,0.538546741008759,-0.799803197383881,0.331667453050613,0.496820956468582,-0.801976025104523,0.169512510299683,0.590579271316528,-0.788974940776825,0.130271390080452,0.529609262943268,-0.838178515434265,0.0656522288918495,0.608591496944427,-0.790762901306152,0.228963524103165,0.543875634670258,-0.807325720787048,0.331667453050613,0.496820956468582,-0.801976025104523,0.228963524103165,0.543875634670258,-0.807325720787048,0.169512510299683,0.590579271316528,-0.788974940776825,0.00643936032429338,0.545796871185303,-0.837892711162567,-0.0459988638758659,0.609588146209717,-0.791382491588593,0.130271390080452,0.529609262943268,-0.838178515434265,-0.0448160320520401,0.560647070407867,-0.826841115951538,\r\n-0.077507495880127,0.562262177467346,-0.823318719863892,-0.0967199355363846,0.523911595344543,-0.846263468265533,0.0817736312747002,0.464844197034836,-0.881608128547668,-0.077507495880127,0.562262177467346,-0.823318719863892,0.00643936032429338,0.545796871185303,-0.837892711162567,0.0567246824502945,0.470190137624741,-0.880740284919739,0.374783247709274,0.388546824455261,-0.841765224933624,-0.0448160320520401,0.560647070407867,-0.826841115951538,0.828688204288483,-0.104165971279144,-0.54993200302124,0.5385582447052,0.190662771463394,-0.820732951164246,0.642739713191986,0.0123391347005963,-0.765985131263733,0.5385582447052,0.190662771463394,-0.820732951164246,0.0567246824502945,0.470190137624741,-0.880740284919739,0.229182809591293,0.368696063756943,-0.900854229927063,0.146823868155479,0.697561681270599,0.70132040977478,0.168556556105614,0.76850438117981,0.617243468761444,0.0458142310380936,0.753952622413635,0.65532922744751,0.277195632457733,0.668980240821838,0.689657747745514,0.340362101793289,0.747718334197998,0.570149779319763,0.168556556105614,0.76850438117981,0.617243468761444,0.456258475780487,0.821370720863342,0.342313021421433,0.401387244462967,0.787375509738922,0.467897415161133,0.584510564804077,0.693989396095276,0.420387864112854,0.401387244462967,0.787375509738922,0.467897415161133,0.340362101793289,0.747718334197998,0.570149779319763,0.547390222549438,0.649882376194,0.527272820472717,0.584510564804077,0.693989396095276,0.420387864112854,0.567328214645386,0.774431943893433,0.279988497495651,0.456258475780487,0.821370720863342,0.342313021421433,0.567328214645386,0.774431943893433,0.279988497495651,0.706126630306244,0.660281479358673,0.255760431289673,0.612865030765533,0.770737707614899,0.174240306019783,0.604538679122925,0.793765127658844,-0.0668570473790169,0.570314228534698,0.819469571113586,0.0566667951643467,0.679006993770599,0.728589355945587,0.0900382399559021,0.679006993770599,0.728589355945587,0.0900382399559021,0.570314228534698,0.819469571113586,0.0566667951643467,0.612865030765533,0.770737707614899,0.174240306019783,\r\n0.675364434719086,0.702239453792572,-0.22526091337204,0.533418655395508,0.81656140089035,-0.220662280917168,0.604538679122925,0.793765127658844,-0.0668570473790169,0.675364434719086,0.702239453792572,-0.22526091337204,0.540011823177338,0.766529381275177,-0.347591429948807,0.533418655395508,0.81656140089035,-0.220662280917168,0.0269212517887354,0.670204043388367,0.741688370704651,-0.140128269791603,0.676008880138397,0.723447203636169,-0.0177355073392391,0.609025239944458,0.792952418327332,0.0269212517887354,0.670204043388367,0.741688370704651,0.0458142310380936,0.753952622413635,0.65532922744751,-0.0715654492378235,0.731287956237793,0.678303897380829,-0.293781906366348,0.549456536769867,0.782169759273529,-0.231641948223114,0.456865638494492,0.85884553194046,-0.192044004797935,0.528870105743408,0.826689422130585,-0.117344155907631,0.596601545810699,0.793912291526794,-0.192044004797935,0.528870105743408,0.826689422130585,-0.0483921952545643,0.527408540248871,0.848232448101044,-0.117344155907631,0.596601545810699,0.793912291526794,0.0700234696269035,0.534823775291443,0.842057049274445,-0.0177355073392391,0.609025239944458,0.792952418327332,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.207450598478317,-0.533555388450623,-0.819928526878357,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.263016730546951,-0.651200950145721,-0.711870312690735,-0.199936538934708,-0.716123342514038,-0.668724596500397,-0.202158883213997,-0.722759604454041,-0.660870790481567,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.247936218976974,-0.346056491136551,-0.904860496520996,\r\n-0.235160961747169,-0.373922854661942,-0.897151529788971,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.233657509088516,-0.383972764015198,-0.893291056156158,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.247936218976974,-0.346056491136551,-0.904860496520996,-0.00106569530908018,-0.810628890991211,-0.585559129714966,-0.0046850317157805,-0.819392323493958,-0.573213875293732,0.152846723794937,-0.861648917198181,-0.483941107988358,-0.0400127544999123,-0.794187247753143,-0.606354296207428,-0.0046850317157805,-0.819392323493958,-0.573213875293732,-0.00106569530908018,-0.810628890991211,-0.585559129714966,-0.119990333914757,-0.781780183315277,-0.611900210380554,0.00936393160372972,-0.858172357082367,-0.513276219367981,-0.0046850317157805,-0.819392323493958,-0.573213875293732,0.504412174224854,-0.299053251743317,0.810021877288818,0.468323171138763,-0.226812466979027,0.853949308395386,0.521001756191254,-0.254301369190216,0.814793109893799,0.602538645267487,-0.354560166597366,0.715006351470947,0.504412174224854,-0.299053251743317,0.810021877288818,0.528874576091766,-0.375000149011612,0.761358261108398,0.658665180206299,-0.24921028316021,0.709967792034149,0.699625551700592,-0.375887930393219,0.607644736766815,0.504068732261658,-0.236929103732109,0.830529451370239,0.681504368782043,-0.425537049770355,0.595373690128326,0.699625551700592,-0.375887930393219,0.607644736766815,0.725668132305145,-0.421099096536636,0.544133424758911,0.361869335174561,0.000957367417868227,0.932228267192841,0.658665180206299,-0.24921028316021,0.709967792034149,0.392616957426071,-0.108691789209843,0.913256764411926,0.288942903280258,0.14644268155098,0.94607949256897,0.361869335174561,0.000957367417868227,0.932228267192841,-0.0420543327927589,0.251833200454712,0.966856420040131,0.725668132305145,-0.421099096536636,0.544133424758911,0.677412569522858,-0.441060692071915,0.588708341121674,0.681504368782043,-0.425537049770355,0.595373690128326,0.677412569522858,-0.441060692071915,0.588708341121674,0.699936091899872,-0.405220955610275,0.588120102882385,\r\n0.621006548404694,-0.424215793609619,0.659083962440491,0.621006548404694,-0.424215793609619,0.659083962440491,0.602538645267487,-0.354560166597366,0.715006351470947,0.528874576091766,-0.375000149011612,0.761358261108398,-0.0420543327927589,0.251833200454712,0.966856420040131,-0.232595428824425,0.32157826423645,0.917870700359344,-0.135724782943726,0.378334671258926,0.915664553642273,-0.273560404777527,0.492881447076797,0.825973629951477,-0.135724782943726,0.378334671258926,0.915664553642273,-0.235659465193748,0.381755381822586,0.893715441226959,-0.293781906366348,0.549456536769867,0.782169759273529,-0.273560404777527,0.492881447076797,0.825973629951477,-0.231641948223114,0.456865638494492,0.85884553194046,0.858522057533264,-0.198622211813927,-0.472746193408966,0.844325184822083,-0.22888757288456,-0.484484612941742,0.7975714802742,-0.215157389640808,-0.563548445701599,0.7975714802742,-0.215157389640808,-0.563548445701599,0.792142868041992,-0.232738718390465,-0.56421822309494,0.734182298183441,-0.261879771947861,-0.62641453742981,0.63727331161499,-0.30382451415062,-0.708218336105347,0.693989038467407,-0.173174902796745,-0.698848783969879,0.743033945560455,-0.276756584644318,-0.609349012374878,0.80856317281723,-0.187360391020775,-0.557782709598541,0.773418307304382,-0.194676160812378,-0.603262186050415,0.74238795042038,-0.32029977440834,-0.588445425033569,0.743033945560455,-0.276756584644318,-0.609349012374878,0.74238795042038,-0.32029977440834,-0.588445425033569,0.639581561088562,-0.404159933328629,-0.653903663158417,0.734182298183441,-0.261879771947861,-0.62641453742981,0.747274398803711,-0.221239015460014,-0.626605212688446,0.743385851383209,-0.217065036296844,-0.632661163806915,0.743385851383209,-0.217065036296844,-0.632661163806915,0.773418307304382,-0.194676160812378,-0.603262186050415,0.79752242565155,-0.170116066932678,-0.578807711601257,0.693989038467407,-0.173174902796745,-0.698848783969879,0.63727331161499,-0.30382451415062,-0.708218336105347,0.583158552646637,-0.165005877614021,-0.795423805713654,0.609587550163269,-0.129729300737381,-0.782031416893005,\r\n0.546902418136597,0.00807333830744028,-0.837157309055328,0.583158552646637,-0.165005877614021,-0.795423805713654,0.546902418136597,0.00807333830744028,-0.837157309055328,0.609587550163269,-0.129729300737381,-0.782031416893005,0.682426631450653,0.0080387070775032,-0.730909764766693,0.682426631450653,0.0080387070775032,-0.730909764766693,0.747978329658508,-0.103609681129456,-0.655586183071136,0.68188601732254,0.11128756403923,-0.722942888736725,0.490540772676468,0.108081601560116,-0.864689528942108,0.596173465251923,0.149996086955071,-0.788719415664673,0.603280365467072,0.00524225179105997,-0.797511875629425,0.747978329658508,-0.103609681129456,-0.655586183071136,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.68188601732254,0.11128756403923,-0.722942888736725,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.603280365467072,0.00524225179105997,-0.797511875629425,0.596173465251923,0.149996086955071,-0.788719415664673,0.364936202764511,0.0760985538363457,-0.927917242050171,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.368107855319977,-0.0603155270218849,-0.92782461643219,0.343985676765442,0.090705394744873,-0.934583485126495,0.32505077123642,0.0510692894458771,-0.944316625595093,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.32505077123642,0.0510692894458771,-0.944316625595093,0.229104042053223,0.0219219531863928,-0.97315502166748,0.298943638801575,-0.175239503383636,-0.938042521476746,0.490540772676468,0.108081601560116,-0.864689528942108,0.445805966854095,0.0342569686472416,-0.894473791122437,0.364936202764511,0.0760985538363457,-0.927917242050171,0.298943638801575,-0.175239503383636,-0.938042521476746,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.26255190372467,-0.235285311937332,-0.935792326927185,0.885589122772217,-0.241126582026482,-0.396975487470627,0.844325184822083,-0.22888757288456,-0.484484612941742,0.858522057533264,-0.198622211813927,-0.472746193408966,0.885589122772217,-0.241126582026482,-0.396975487470627,0.901855111122131,-0.276616454124451,-0.331874281167984,\r\n0.899260580539703,-0.298267632722855,-0.319947868585587,0.883534550666809,-0.217431962490082,-0.414837211370468,0.642739713191986,0.0123391347005963,-0.765985131263733,0.835364878177643,-0.237064465880394,-0.495949178934097,0.861400663852692,-0.251806765794754,-0.441114366054535,0.901855111122131,-0.276616454124451,-0.331874281167984,0.835364878177643,-0.237064465880394,-0.495949178934097,0.495108544826508,0.57940399646759,-0.647424459457397,0.354791283607483,0.684493243694305,-0.636861026287079,0.563275814056396,0.64558881521225,-0.515689074993134,0.358100563287735,0.774857580661774,-0.520921766757965,0.505065202713013,0.736550331115723,-0.449891775846481,0.563275814056396,0.64558881521225,-0.515689074993134,0.505065202713013,0.736550331115723,-0.449891775846481,0.389457195997238,0.814104676246643,-0.430762857198715,0.540011823177338,0.766529381275177,-0.347591429948807,0.265107661485672,0.538546741008759,-0.799803197383881,0.402135372161865,0.437063694000244,-0.804526150226593,0.331667453050613,0.496820956468582,-0.801976025104523,0.402135372161865,0.437063694000244,-0.804526150226593,0.347746908664703,0.547158241271973,-0.76137363910675,0.531672596931458,0.333859145641327,-0.778371512889862,0.347746908664703,0.547158241271973,-0.76137363910675,0.495108544826508,0.57940399646759,-0.647424459457397,0.547248125076294,0.456453889608383,-0.701547801494598,0.351293653249741,0.456787437200546,-0.817274630069733,0.130271390080452,0.529609262943268,-0.838178515434265,0.228963524103165,0.543875634670258,-0.807325720787048,0.351293653249741,0.456787437200546,-0.817274630069733,0.228963524103165,0.543875634670258,-0.807325720787048,0.331667453050613,0.496820956468582,-0.801976025104523,0.0817736312747002,0.464844197034836,-0.881608128547668,0.00643936032429338,0.545796871185303,-0.837892711162567,0.130271390080452,0.529609262943268,-0.838178515434265,-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.077507495880127,0.562262177467346,-0.823318719863892,-0.0299245696514845,0.498580783605576,-0.866326510906219,-0.119141854345798,0.49394965171814,-0.861289024353027,\r\n-0.0448160320520401,0.560647070407867,-0.826841115951538,-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.0299245696514845,0.498580783605576,-0.866326510906219,-0.077507495880127,0.562262177467346,-0.823318719863892,0.0817736312747002,0.464844197034836,-0.881608128547668,-0.119141854345798,0.49394965171814,-0.861289024353027,0.0567246824502945,0.470190137624741,-0.880740284919739,-0.0448160320520401,0.560647070407867,-0.826841115951538,0.5385582447052,0.190662771463394,-0.820732951164246,0.229182809591293,0.368696063756943,-0.900854229927063,0.642739713191986,0.0123391347005963,-0.765985131263733,-0.0706731155514717,0.475934118032455,-0.876636743545532,0.229182809591293,0.368696063756943,-0.900854229927063,0.0567246824502945,0.470190137624741,-0.880740284919739,0.277195632457733,0.668980240821838,0.689657747745514,0.168556556105614,0.76850438117981,0.617243468761444,0.146823868155479,0.697561681270599,0.70132040977478,0.0269212517887354,0.670204043388367,0.741688370704651,0.146823868155479,0.697561681270599,0.70132040977478,0.0458142310380936,0.753952622413635,0.65532922744751,0.340362101793289,0.747718334197998,0.570149779319763,0.277195632457733,0.668980240821838,0.689657747745514,0.455665439367294,0.635548293590546,0.623255431652069,0.401387244462967,0.787375509738922,0.467897415161133,0.547390222549438,0.649882376194,0.527272820472717,0.584510564804077,0.693989396095276,0.420387864112854,0.340362101793289,0.747718334197998,0.570149779319763,0.455665439367294,0.635548293590546,0.623255431652069,0.547390222549438,0.649882376194,0.527272820472717,0.654362857341766,0.664195775985718,0.361459612846375,0.567328214645386,0.774431943893433,0.279988497495651,0.584510564804077,0.693989396095276,0.420387864112854,0.654362857341766,0.664195775985718,0.361459612846375,0.706126630306244,0.660281479358673,0.255760431289673,0.567328214645386,0.774431943893433,0.279988497495651,0.679006993770599,0.728589355945587,0.0900382399559021,0.612865030765533,0.770737707614899,0.174240306019783,0.706126630306244,0.660281479358673,0.255760431289673,\r\n0.679006993770599,0.728589355945587,0.0900382399559021,0.694892287254334,0.718926608562469,-0.0164001099765301,0.604538679122925,0.793765127658844,-0.0668570473790169,0.675364434719086,0.702239453792572,-0.22526091337204,0.604538679122925,0.793765127658844,-0.0668570473790169,0.742231130599976,0.660661518573761,-0.112334974110127,0.706054627895355,0.613750040531158,-0.353267192840576,0.540011823177338,0.766529381275177,-0.347591429948807,0.675364434719086,0.702239453792572,-0.22526091337204,0.0269212517887354,0.670204043388367,0.741688370704651,-0.0177355073392391,0.609025239944458,0.792952418327332,0.11396698653698,0.571650326251984,0.81254369020462,-0.0485643669962883,0.35008242726326,0.935459077358246,-0.192044004797935,0.528870105743408,0.826689422130585,-0.231641948223114,0.456865638494492,0.85884553194046,0.0147232776507735,0.431112229824066,0.902178108692169,-0.0483921952545643,0.527408540248871,0.848232448101044,-0.192044004797935,0.528870105743408,0.826689422130585,0.0700234696269035,0.534823775291443,0.842057049274445,-0.117344155907631,0.596601545810699,0.793912291526794,-0.0483921952545643,0.527408540248871,0.848232448101044,0.0700234696269035,0.534823775291443,0.842057049274445,0.11396698653698,0.571650326251984,0.81254369020462,-0.0177355073392391,0.609025239944458,0.792952418327332,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.273136258125305,-0.587464272975922,-0.761762619018555,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.32580640912056,-0.631749749183655,-0.703379273414612,\r\n-0.199936538934708,-0.716123342514038,-0.668724596500397,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.247936218976974,-0.346056491136551,-0.904860496520996,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.208814963698387,-0.425010591745377,-0.880773663520813,-0.233657509088516,-0.383972764015198,-0.893291056156158,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.247936218976974,-0.346056491136551,-0.904860496520996,-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.233657509088516,-0.383972764015198,-0.893291056156158,0.521001756191254,-0.254301369190216,0.814793109893799,0.528874576091766,-0.375000149011612,0.761358261108398,0.504412174224854,-0.299053251743317,0.810021877288818,0.570346713066101,-0.34020259976387,0.7476407289505,0.504068732261658,-0.236929103732109,0.830529451370239,0.699625551700592,-0.375887930393219,0.607644736766815,0.658665180206299,-0.24921028316021,0.709967792034149,0.504068732261658,-0.236929103732109,0.830529451370239,0.392616957426071,-0.108691789209843,0.913256764411926,0.681504368782043,-0.425537049770355,0.595373690128326,0.570346713066101,-0.34020259976387,0.7476407289505,0.699625551700592,-0.375887930393219,0.607644736766815,0.361869335174561,0.000957367417868227,0.932228267192841,0.392616957426071,-0.108691789209843,0.913256764411926,-0.0417030937969685,0.153852730989456,0.987213313579559,-0.0420543327927589,0.251833200454712,0.966856420040131,0.361869335174561,0.000957367417868227,0.932228267192841,-0.0417030937969685,0.153852730989456,0.987213313579559,0.69095641374588,-0.450513631105423,0.565346360206604,0.681504368782043,-0.425537049770355,0.595373690128326,0.677412569522858,-0.441060692071915,0.588708341121674,0.621006548404694,-0.424215793609619,0.659083962440491,0.618714928627014,-0.434950411319733,0.654224574565887,0.677412569522858,-0.441060692071915,0.588708341121674,0.528874576091766,-0.375000149011612,0.761358261108398,0.561202943325043,-0.428363025188446,0.708206355571747,\r\n0.621006548404694,-0.424215793609619,0.659083962440491,-0.0420543327927589,0.251833200454712,0.966856420040131,-0.0417030937969685,0.153852730989456,0.987213313579559,-0.232595428824425,0.32157826423645,0.917870700359344,-0.235659465193748,0.381755381822586,0.893715441226959,-0.135724782943726,0.378334671258926,0.915664553642273,-0.232595428824425,0.32157826423645,0.917870700359344,-0.273560404777527,0.492881447076797,0.825973629951477,-0.235659465193748,0.381755381822586,0.893715441226959,-0.231641948223114,0.456865638494492,0.85884553194046,0.844325184822083,-0.22888757288456,-0.484484612941742,0.792142868041992,-0.232738718390465,-0.56421822309494,0.7975714802742,-0.215157389640808,-0.563548445701599,0.792142868041992,-0.232738718390465,-0.56421822309494,0.747274398803711,-0.221239015460014,-0.626605212688446,0.734182298183441,-0.261879771947861,-0.62641453742981,0.63727331161499,-0.30382451415062,-0.708218336105347,0.743033945560455,-0.276756584644318,-0.609349012374878,0.639581561088562,-0.404159933328629,-0.653903663158417,0.77100270986557,-0.255682438611984,-0.58325058221817,0.74238795042038,-0.32029977440834,-0.588445425033569,0.773418307304382,-0.194676160812378,-0.603262186050415,0.658070087432861,-0.427307546138763,-0.619961261749268,0.639581561088562,-0.404159933328629,-0.653903663158417,0.74238795042038,-0.32029977440834,-0.588445425033569,0.743385851383209,-0.217065036296844,-0.632661163806915,0.747274398803711,-0.221239015460014,-0.626605212688446,0.773418307304382,-0.194676160812378,-0.603262186050415,0.608242332935333,-0.280962347984314,-0.742362022399902,0.583158552646637,-0.165005877614021,-0.795423805713654,0.63727331161499,-0.30382451415062,-0.708218336105347,0.609587550163269,-0.129729300737381,-0.782031416893005,0.583158552646637,-0.165005877614021,-0.795423805713654,0.608242332935333,-0.280962347984314,-0.742362022399902,0.687893152236938,-0.179216042160988,-0.703338146209717,0.682426631450653,0.0080387070775032,-0.730909764766693,0.609587550163269,-0.129729300737381,-0.782031416893005,0.747978329658508,-0.103609681129456,-0.655586183071136,\r\n0.682426631450653,0.0080387070775032,-0.730909764766693,0.687893152236938,-0.179216042160988,-0.703338146209717,0.490540772676468,0.108081601560116,-0.864689528942108,0.603280365467072,0.00524225179105997,-0.797511875629425,0.445805966854095,0.0342569686472416,-0.894473791122437,0.747978329658508,-0.103609681129456,-0.655586183071136,0.74326229095459,-0.244019582867622,-0.6229088306427,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.735465049743652,-0.160701125860214,-0.658229649066925,0.603280365467072,0.00524225179105997,-0.797511875629425,0.343985676765442,0.090705394744873,-0.934583485126495,0.346243143081665,-0.0640062615275383,-0.935958743095398,0.364936202764511,0.0760985538363457,-0.927917242050171,0.343985676765442,0.090705394744873,-0.934583485126495,0.331602454185486,0.0612216182053089,-0.941430628299713,0.32505077123642,0.0510692894458771,-0.944316625595093,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.229104042053223,0.0219219531863928,-0.97315502166748,0.32505077123642,0.0510692894458771,-0.944316625595093,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.298943638801575,-0.175239503383636,-0.938042521476746,0.229104042053223,0.0219219531863928,-0.97315502166748,0.364936202764511,0.0760985538363457,-0.927917242050171,0.445805966854095,0.0342569686472416,-0.894473791122437,0.363241195678711,0.0705938935279846,-0.929016768932343,0.885589122772217,-0.241126582026482,-0.396975487470627,0.874448478221893,-0.259078204631805,-0.410144180059433,0.844325184822083,-0.22888757288456,-0.484484612941742,0.901855111122131,-0.276616454124451,-0.331874281167984,0.861400663852692,-0.251806765794754,-0.441114366054535,0.899260580539703,-0.298267632722855,-0.319947868585587,0.885589122772217,-0.241126582026482,-0.396975487470627,0.899260580539703,-0.298267632722855,-0.319947868585587,0.874448478221893,-0.259078204631805,-0.410144180059433,0.835364878177643,-0.237064465880394,-0.495949178934097,0.642739713191986,0.0123391347005963,-0.765985131263733,\r\n0.715904831886292,-0.0417037233710289,-0.696951150894165,0.861400663852692,-0.251806765794754,-0.441114366054535,0.835364878177643,-0.237064465880394,-0.495949178934097,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.671058654785156,0.486768901348114,-0.559228181838989,0.495108544826508,0.57940399646759,-0.647424459457397,0.563275814056396,0.64558881521225,-0.515689074993134,0.706054627895355,0.613750040531158,-0.353267192840576,0.563275814056396,0.64558881521225,-0.515689074993134,0.505065202713013,0.736550331115723,-0.449891775846481,0.706054627895355,0.613750040531158,-0.353267192840576,0.505065202713013,0.736550331115723,-0.449891775846481,0.540011823177338,0.766529381275177,-0.347591429948807,0.331667453050613,0.496820956468582,-0.801976025104523,0.402135372161865,0.437063694000244,-0.804526150226593,0.48889634013176,0.404664129018784,-0.772804737091064,0.531672596931458,0.333859145641327,-0.778371512889862,0.347746908664703,0.547158241271973,-0.76137363910675,0.547248125076294,0.456453889608383,-0.701547801494598,0.402135372161865,0.437063694000244,-0.804526150226593,0.531672596931458,0.333859145641327,-0.778371512889862,0.522848665714264,0.334039181470871,-0.784249305725098,0.671058654785156,0.486768901348114,-0.559228181838989,0.547248125076294,0.456453889608383,-0.701547801494598,0.495108544826508,0.57940399646759,-0.647424459457397,0.351293653249741,0.456787437200546,-0.817274630069733,0.257542818784714,0.401762902736664,-0.878782212734222,0.130271390080452,0.529609262943268,-0.838178515434265,0.351293653249741,0.456787437200546,-0.817274630069733,0.331667453050613,0.496820956468582,-0.801976025104523,0.48889634013176,0.404664129018784,-0.772804737091064,0.0817736312747002,0.464844197034836,-0.881608128547668,0.130271390080452,0.529609262943268,-0.838178515434265,0.257542818784714,0.401762902736664,-0.878782212734222,-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.0299245696514845,0.498580783605576,-0.866326510906219,0.0594802089035511,0.416960269212723,-0.906976342201233,-0.119141854345798,0.49394965171814,-0.861289024353027,\r\n-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.0620564185082912,0.482051014900208,-0.873942613601685,0.0817736312747002,0.464844197034836,-0.881608128547668,0.0594802089035511,0.416960269212723,-0.906976342201233,-0.0299245696514845,0.498580783605576,-0.866326510906219,-0.0706731155514717,0.475934118032455,-0.876636743545532,0.0567246824502945,0.470190137624741,-0.880740284919739,-0.119141854345798,0.49394965171814,-0.861289024353027,0.136027872562408,0.357224255800247,-0.924060106277466,0.642739713191986,0.0123391347005963,-0.765985131263733,0.229182809591293,0.368696063756943,-0.900854229927063,0.136027872562408,0.357224255800247,-0.924060106277466,0.229182809591293,0.368696063756943,-0.900854229927063,-0.0706731155514717,0.475934118032455,-0.876636743545532,0.146823868155479,0.697561681270599,0.70132040977478,0.182964861392975,0.611999094486237,0.769402921199799,0.277195632457733,0.668980240821838,0.689657747745514,0.0269212517887354,0.670204043388367,0.741688370704651,0.182964861392975,0.611999094486237,0.769402921199799,0.146823868155479,0.697561681270599,0.70132040977478,0.277195632457733,0.668980240821838,0.689657747745514,0.412558406591415,0.560495257377625,0.718081057071686,0.455665439367294,0.635548293590546,0.623255431652069,0.584510564804077,0.693989396095276,0.420387864112854,0.547390222549438,0.649882376194,0.527272820472717,0.677730739116669,0.581594526767731,0.449920773506165,0.57188493013382,0.538527369499207,0.618817985057831,0.547390222549438,0.649882376194,0.527272820472717,0.455665439367294,0.635548293590546,0.623255431652069,0.654362857341766,0.664195775985718,0.361459612846375,0.584510564804077,0.693989396095276,0.420387864112854,0.730025470256805,0.585918664932251,0.351798206567764,0.654362857341766,0.664195775985718,0.361459612846375,0.730025470256805,0.585918664932251,0.351798206567764,0.706126630306244,0.660281479358673,0.255760431289673,0.679006993770599,0.728589355945587,0.0900382399559021,0.706126630306244,0.660281479358673,0.255760431289673,0.804491758346558,0.57312947511673,0.155934646725655,\r\n0.797519624233246,0.603292644023895,-0.000639036414213479,0.694892287254334,0.718926608562469,-0.0164001099765301,0.679006993770599,0.728589355945587,0.0900382399559021,0.742231130599976,0.660661518573761,-0.112334974110127,0.604538679122925,0.793765127658844,-0.0668570473790169,0.694892287254334,0.718926608562469,-0.0164001099765301,0.805379569530487,0.545870780944824,-0.231059581041336,0.675364434719086,0.702239453792572,-0.22526091337204,0.742231130599976,0.660661518573761,-0.112334974110127,0.805379569530487,0.545870780944824,-0.231059581041336,0.706054627895355,0.613750040531158,-0.353267192840576,0.675364434719086,0.702239453792572,-0.22526091337204,0.182964861392975,0.611999094486237,0.769402921199799,0.0269212517887354,0.670204043388367,0.741688370704651,0.11396698653698,0.571650326251984,0.81254369020462,-0.0485643669962883,0.35008242726326,0.935459077358246,0.0147232776507735,0.431112229824066,0.902178108692169,-0.192044004797935,0.528870105743408,0.826689422130585,-0.0485643669962883,0.35008242726326,0.935459077358246,-0.231641948223114,0.456865638494492,0.85884553194046,-0.148003488779068,0.313724547624588,0.937908172607422,0.0434391386806965,0.457074731588364,0.88836681842804,-0.0483921952545643,0.527408540248871,0.848232448101044,0.0147232776507735,0.431112229824066,0.902178108692169,0.0700234696269035,0.534823775291443,0.842057049274445,-0.0483921952545643,0.527408540248871,0.848232448101044,0.105999827384949,0.455395728349686,0.883956253528595,0.0700234696269035,0.534823775291443,0.842057049274445,0.207153081893921,0.460493385791779,0.863153100013733,0.11396698653698,0.571650326251984,0.81254369020462,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.252482026815414,-0.427404344081879,-0.868088841438293,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.349269717931747,-0.58536422252655,-0.731682538986206,-0.380886077880859,-0.520796775817871,-0.764000236988068,\r\n-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.32580640912056,-0.631749749183655,-0.703379273414612,-0.354183167219162,-0.629502654075623,-0.691578388214111,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.233657509088516,-0.383972764015198,-0.893291056156158,-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.249230146408081,-0.374243825674057,-0.89321094751358,0.528874576091766,-0.375000149011612,0.761358261108398,0.521001756191254,-0.254301369190216,0.814793109893799,0.525252997875214,-0.375090479850769,0.763816893100739,0.504068732261658,-0.236929103732109,0.830529451370239,0.570346713066101,-0.34020259976387,0.7476407289505,0.19944766163826,-0.163284629583359,0.966208398342133,0.0852470919489861,-0.00189848779700696,0.996357977390289,0.392616957426071,-0.108691789209843,0.913256764411926,0.504068732261658,-0.236929103732109,0.830529451370239,0.592243731021881,-0.422943502664566,0.685832321643829,0.570346713066101,-0.34020259976387,0.7476407289505,0.681504368782043,-0.425537049770355,0.595373690128326,0.0852470919489861,-0.00189848779700696,0.996357977390289,-0.0417030937969685,0.153852730989456,0.987213313579559,0.392616957426071,-0.108691789209843,0.913256764411926,0.681504368782043,-0.425537049770355,0.595373690128326,0.69095641374588,-0.450513631105423,0.565346360206604,0.592243731021881,-0.422943502664566,0.685832321643829,0.677412569522858,-0.441060692071915,0.588708341121674,0.705562353134155,-0.413469731807709,0.575520932674408,0.69095641374588,-0.450513631105423,0.565346360206604,0.621006548404694,-0.424215793609619,0.659083962440491,0.561202943325043,-0.428363025188446,0.708206355571747,0.618714928627014,-0.434950411319733,0.654224574565887,0.618714928627014,-0.434950411319733,0.654224574565887,0.586943864822388,-0.411882728338242,0.697028934955597,0.677412569522858,-0.441060692071915,0.588708341121674,\r\n0.528874576091766,-0.375000149011612,0.761358261108398,0.510483622550964,-0.408713668584824,0.756544411182404,0.561202943325043,-0.428363025188446,0.708206355571747,-0.20713409781456,0.194094747304916,0.958865284919739,-0.232595428824425,0.32157826423645,0.917870700359344,-0.0417030937969685,0.153852730989456,0.987213313579559,-0.235659465193748,0.381755381822586,0.893715441226959,-0.232595428824425,0.32157826423645,0.917870700359344,-0.155188173055649,0.228971272706985,0.960983216762543,-0.148003488779068,0.313724547624588,0.937908172607422,-0.231641948223114,0.456865638494492,0.85884553194046,-0.235659465193748,0.381755381822586,0.893715441226959,0.792142868041992,-0.232738718390465,-0.56421822309494,0.844325184822083,-0.22888757288456,-0.484484612941742,0.817101240158081,-0.256638169288635,-0.516219079494476,0.817101240158081,-0.256638169288635,-0.516219079494476,0.747274398803711,-0.221239015460014,-0.626605212688446,0.792142868041992,-0.232738718390465,-0.56421822309494,0.63727331161499,-0.30382451415062,-0.708218336105347,0.639581561088562,-0.404159933328629,-0.653903663158417,0.608242332935333,-0.280962347984314,-0.742362022399902,0.74238795042038,-0.32029977440834,-0.588445425033569,0.77100270986557,-0.255682438611984,-0.58325058221817,0.722769439220428,-0.415681421756744,-0.55209881067276,0.761502802371979,-0.305149793624878,-0.571836411952972,0.77100270986557,-0.255682438611984,-0.58325058221817,0.773418307304382,-0.194676160812378,-0.603262186050415,0.67516553401947,-0.382844179868698,-0.630540788173676,0.639581561088562,-0.404159933328629,-0.653903663158417,0.658070087432861,-0.427307546138763,-0.619961261749268,0.74238795042038,-0.32029977440834,-0.588445425033569,0.722769439220428,-0.415681421756744,-0.55209881067276,0.658070087432861,-0.427307546138763,-0.619961261749268,0.761502802371979,-0.305149793624878,-0.571836411952972,0.773418307304382,-0.194676160812378,-0.603262186050415,0.747274398803711,-0.221239015460014,-0.626605212688446,0.687893152236938,-0.179216042160988,-0.703338146209717,0.609587550163269,-0.129729300737381,-0.782031416893005,\r\n0.608242332935333,-0.280962347984314,-0.742362022399902,0.747978329658508,-0.103609681129456,-0.655586183071136,0.687893152236938,-0.179216042160988,-0.703338146209717,0.709797024726868,-0.316624492406845,-0.629235088825226,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.445805966854095,0.0342569686472416,-0.894473791122437,0.603280365467072,0.00524225179105997,-0.797511875629425,0.74326229095459,-0.244019582867622,-0.6229088306427,0.747978329658508,-0.103609681129456,-0.655586183071136,0.709797024726868,-0.316624492406845,-0.629235088825226,0.736740469932556,-0.230909988284111,-0.635526359081268,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.74326229095459,-0.244019582867622,-0.6229088306427,0.736740469932556,-0.230909988284111,-0.635526359081268,0.735465049743652,-0.160701125860214,-0.658229649066925,0.691984891891479,-0.0517713651061058,-0.72005307674408,0.693438112735748,-0.161363810300827,-0.702214479446411,0.603280365467072,0.00524225179105997,-0.797511875629425,0.735465049743652,-0.160701125860214,-0.658229649066925,0.364936202764511,0.0760985538363457,-0.927917242050171,0.363241195678711,0.0705938935279846,-0.929016768932343,0.343985676765442,0.090705394744873,-0.934583485126495,0.363241195678711,0.0705938935279846,-0.929016768932343,0.331602454185486,0.0612216182053089,-0.941430628299713,0.343985676765442,0.090705394744873,-0.934583485126495,0.331602454185486,0.0612216182053089,-0.941430628299713,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.32505077123642,0.0510692894458771,-0.944316625595093,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.229104042053223,0.0219219531863928,-0.97315502166748,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.241034537553787,-0.0202513504773378,-0.970305144786835,0.229104042053223,0.0219219531863928,-0.97315502166748,0.375921547412872,-0.146878644824028,-0.914936900138855,0.363241195678711,0.0705938935279846,-0.929016768932343,0.445805966854095,0.0342569686472416,-0.894473791122437,\r\n0.874448478221893,-0.259078204631805,-0.410144180059433,0.817101240158081,-0.256638169288635,-0.516219079494476,0.844325184822083,-0.22888757288456,-0.484484612941742,0.861400663852692,-0.251806765794754,-0.441114366054535,0.865093111991882,-0.32211235165596,-0.384522378444672,0.899260580539703,-0.298267632722855,-0.319947868585587,0.874448478221893,-0.259078204631805,-0.410144180059433,0.899260580539703,-0.298267632722855,-0.319947868585587,0.862999260425568,-0.347417265176773,-0.366787880659103,0.642739713191986,0.0123391347005963,-0.765985131263733,0.414938628673553,0.181286498904228,-0.891605913639069,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.586400866508484,0.034211628139019,-0.809298098087311,0.861400663852692,-0.251806765794754,-0.441114366054535,0.671058654785156,0.486768901348114,-0.559228181838989,0.563275814056396,0.64558881521225,-0.515689074993134,0.790569961071014,0.467947661876678,-0.394998878240585,0.563275814056396,0.64558881521225,-0.515689074993134,0.706054627895355,0.613750040531158,-0.353267192840576,0.790569961071014,0.467947661876678,-0.394998878240585,0.402135372161865,0.437063694000244,-0.804526150226593,0.522848665714264,0.334039181470871,-0.784249305725098,0.48889634013176,0.404664129018784,-0.772804737091064,0.531672596931458,0.333859145641327,-0.778371512889862,0.547248125076294,0.456453889608383,-0.701547801494598,0.733146071434021,0.309465795755386,-0.605580389499664,0.630146324634552,0.206091836094856,-0.748626470565796,0.522848665714264,0.334039181470871,-0.784249305725098,0.531672596931458,0.333859145641327,-0.778371512889862,0.733146071434021,0.309465795755386,-0.605580389499664,0.547248125076294,0.456453889608383,-0.701547801494598,0.671058654785156,0.486768901348114,-0.559228181838989,0.477504879236221,0.297704637050629,-0.826656460762024,0.257542818784714,0.401762902736664,-0.878782212734222,0.351293653249741,0.456787437200546,-0.817274630069733,0.48889634013176,0.404664129018784,-0.772804737091064,0.543813347816467,0.370018690824509,-0.753228425979614,\r\n0.351293653249741,0.456787437200546,-0.817274630069733,0.0817736312747002,0.464844197034836,-0.881608128547668,0.257542818784714,0.401762902736664,-0.878782212734222,0.277672529220581,0.277265608310699,-0.919794321060181,0.0594802089035511,0.416960269212723,-0.906976342201233,-0.0620564185082912,0.482051014900208,-0.873942613601685,-0.0967199355363846,0.523911595344543,-0.846263468265533,-0.119141854345798,0.49394965171814,-0.861289024353027,-0.0620564185082912,0.482051014900208,-0.873942613601685,-0.0687387436628342,0.409131705760956,-0.909882485866547,0.0817736312747002,0.464844197034836,-0.881608128547668,0.277672529220581,0.277265608310699,-0.919794321060181,0.0594802089035511,0.416960269212723,-0.906976342201233,-0.0706731155514717,0.475934118032455,-0.876636743545532,-0.119141854345798,0.49394965171814,-0.861289024353027,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.642739713191986,0.0123391347005963,-0.765985131263733,0.136027872562408,0.357224255800247,-0.924060106277466,0.414938628673553,0.181286498904228,-0.891605913639069,-0.0706731155514717,0.475934118032455,-0.876636743545532,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.136027872562408,0.357224255800247,-0.924060106277466,0.277195632457733,0.668980240821838,0.689657747745514,0.182964861392975,0.611999094486237,0.769402921199799,0.271722018718719,0.545725107192993,0.792685985565186,0.277195632457733,0.668980240821838,0.689657747745514,0.271722018718719,0.545725107192993,0.792685985565186,0.412558406591415,0.560495257377625,0.718081057071686,0.412558406591415,0.560495257377625,0.718081057071686,0.549995362758636,0.483990430831909,0.680630743503571,0.455665439367294,0.635548293590546,0.623255431652069,0.547390222549438,0.649882376194,0.527272820472717,0.672871887683868,0.491692274808884,0.552704334259033,0.677730739116669,0.581594526767731,0.449920773506165,0.677730739116669,0.581594526767731,0.449920773506165,0.730025470256805,0.585918664932251,0.351798206567764,0.584510564804077,0.693989396095276,0.420387864112854,0.57188493013382,0.538527369499207,0.618817985057831,\r\n0.672871887683868,0.491692274808884,0.552704334259033,0.547390222549438,0.649882376194,0.527272820472717,0.57188493013382,0.538527369499207,0.618817985057831,0.455665439367294,0.635548293590546,0.623255431652069,0.549995362758636,0.483990430831909,0.680630743503571,0.706126630306244,0.660281479358673,0.255760431289673,0.730025470256805,0.585918664932251,0.351798206567764,0.838264465332031,0.481007963418961,0.256794929504395,0.706126630306244,0.660281479358673,0.255760431289673,0.838264465332031,0.481007963418961,0.256794929504395,0.804491758346558,0.57312947511673,0.155934646725655,0.679006993770599,0.728589355945587,0.0900382399559021,0.804491758346558,0.57312947511673,0.155934646725655,0.797519624233246,0.603292644023895,-0.000639036414213479,0.742231130599976,0.660661518573761,-0.112334974110127,0.694892287254334,0.718926608562469,-0.0164001099765301,0.797519624233246,0.603292644023895,-0.000639036414213479,0.840975224971771,0.531280934810638,-0.102475330233574,0.805379569530487,0.545870780944824,-0.231059581041336,0.742231130599976,0.660661518573761,-0.112334974110127,0.868656575679779,0.402484238147736,-0.288863450288773,0.706054627895355,0.613750040531158,-0.353267192840576,0.805379569530487,0.545870780944824,-0.231059581041336,0.182964861392975,0.611999094486237,0.769402921199799,0.11396698653698,0.571650326251984,0.81254369020462,0.199975892901421,0.524589776992798,0.827535510063171,-0.0485643669962883,0.35008242726326,0.935459077358246,0.0978655517101288,0.28583836555481,0.953267395496368,0.0147232776507735,0.431112229824066,0.902178108692169,-0.0485643669962883,0.35008242726326,0.935459077358246,-0.148003488779068,0.313724547624588,0.937908172607422,0.00456144195050001,0.190013438463211,0.981770873069763,-0.0483921952545643,0.527408540248871,0.848232448101044,0.0434391386806965,0.457074731588364,0.88836681842804,0.105999827384949,0.455395728349686,0.883956253528595,0.0147232776507735,0.431112229824066,0.902178108692169,0.170387730002403,0.323810696601868,0.930652737617493,0.0434391386806965,0.457074731588364,0.88836681842804,\r\n0.207153081893921,0.460493385791779,0.863153100013733,0.0700234696269035,0.534823775291443,0.842057049274445,0.105999827384949,0.455395728349686,0.883956253528595,0.11396698653698,0.571650326251984,0.81254369020462,0.207153081893921,0.460493385791779,0.863153100013733,0.199975892901421,0.524589776992798,0.827535510063171,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.252482026815414,-0.427404344081879,-0.868088841438293,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.252482026815414,-0.427404344081879,-0.868088841438293,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.270200699567795,-0.479275494813919,-0.835036814212799,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.380886077880859,-0.520796775817871,-0.764000236988068,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.421815574169159,-0.550034165382385,-0.720786988735199,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.32580640912056,-0.631749749183655,-0.703379273414612,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.407715231180191,-0.555059313774109,-0.725036144256592,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.283517301082611,-0.296481937170029,-0.911984860897064,0.510483622550964,-0.408713668584824,0.756544411182404,0.528874576091766,-0.375000149011612,0.761358261108398,0.525252997875214,-0.375090479850769,0.763816893100739,0.290182530879974,-0.309220999479294,0.905635893344879,0.19944766163826,-0.163284629583359,0.966208398342133,0.570346713066101,-0.34020259976387,0.7476407289505,0.504068732261658,-0.236929103732109,0.830529451370239,\r\n0.19944766163826,-0.163284629583359,0.966208398342133,0.0852470919489861,-0.00189848779700696,0.996357977390289,0.592243731021881,-0.422943502664566,0.685832321643829,0.290182530879974,-0.309220999479294,0.905635893344879,0.570346713066101,-0.34020259976387,0.7476407289505,-0.0417030937969685,0.153852730989456,0.987213313579559,0.0852470919489861,-0.00189848779700696,0.996357977390289,-0.170357525348663,0.141536414623261,0.975164413452148,0.592243731021881,-0.422943502664566,0.685832321643829,0.69095641374588,-0.450513631105423,0.565346360206604,0.587862551212311,-0.45308518409729,0.670172572135925,0.677412569522858,-0.441060692071915,0.588708341121674,0.586943864822388,-0.411882728338242,0.697028934955597,0.705562353134155,-0.413469731807709,0.575520932674408,0.69095641374588,-0.450513631105423,0.565346360206604,0.705562353134155,-0.413469731807709,0.575520932674408,0.735829293727875,-0.45830973982811,0.498505085706711,0.561202943325043,-0.428363025188446,0.708206355571747,0.586943864822388,-0.411882728338242,0.697028934955597,0.618714928627014,-0.434950411319733,0.654224574565887,0.510483622550964,-0.408713668584824,0.756544411182404,0.471672207117081,-0.437212020158768,0.765748560428619,0.561202943325043,-0.428363025188446,0.708206355571747,-0.155188173055649,0.228971272706985,0.960983216762543,-0.232595428824425,0.32157826423645,0.917870700359344,-0.20713409781456,0.194094747304916,0.958865284919739,-0.0417030937969685,0.153852730989456,0.987213313579559,-0.170357525348663,0.141536414623261,0.975164413452148,-0.20713409781456,0.194094747304916,0.958865284919739,-0.148003488779068,0.313724547624588,0.937908172607422,-0.235659465193748,0.381755381822586,0.893715441226959,-0.155188173055649,0.228971272706985,0.960983216762543,0.747274398803711,-0.221239015460014,-0.626605212688446,0.817101240158081,-0.256638169288635,-0.516219079494476,0.761502802371979,-0.305149793624878,-0.571836411952972,0.709797024726868,-0.316624492406845,-0.629235088825226,0.608242332935333,-0.280962347984314,-0.742362022399902,0.639581561088562,-0.404159933328629,-0.653903663158417,\r\n0.761502802371979,-0.305149793624878,-0.571836411952972,0.722769439220428,-0.415681421756744,-0.55209881067276,0.77100270986557,-0.255682438611984,-0.58325058221817,0.67516553401947,-0.382844179868698,-0.630540788173676,0.709797024726868,-0.316624492406845,-0.629235088825226,0.639581561088562,-0.404159933328629,-0.653903663158417,0.67516553401947,-0.382844179868698,-0.630540788173676,0.658070087432861,-0.427307546138763,-0.619961261749268,0.733867704868317,-0.351484656333923,-0.581288695335388,0.722769439220428,-0.415681421756744,-0.55209881067276,0.733867704868317,-0.351484656333923,-0.581288695335388,0.658070087432861,-0.427307546138763,-0.619961261749268,0.687893152236938,-0.179216042160988,-0.703338146209717,0.608242332935333,-0.280962347984314,-0.742362022399902,0.709797024726868,-0.316624492406845,-0.629235088825226,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.485128700733185,-0.184181824326515,-0.854825735092163,0.445805966854095,0.0342569686472416,-0.894473791122437,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.603280365467072,0.00524225179105997,-0.797511875629425,0.693438112735748,-0.161363810300827,-0.702214479446411,0.74326229095459,-0.244019582867622,-0.6229088306427,0.709797024726868,-0.316624492406845,-0.629235088825226,0.753891468048096,-0.297086745500565,-0.585992276668549,0.736740469932556,-0.230909988284111,-0.635526359081268,0.74326229095459,-0.244019582867622,-0.6229088306427,0.726812362670898,-0.243797898292542,-0.642110764980316,0.736740469932556,-0.230909988284111,-0.635526359081268,0.766371369361877,-0.285885065793991,-0.575277745723724,0.735465049743652,-0.160701125860214,-0.658229649066925,0.735465049743652,-0.160701125860214,-0.658229649066925,0.788616001605988,-0.242426812648773,-0.565078616142273,0.693438112735748,-0.161363810300827,-0.702214479446411,0.331602454185486,0.0612216182053089,-0.941430628299713,0.363241195678711,0.0705938935279846,-0.929016768932343,0.298269182443619,-0.122608654201031,-0.946574091911316,0.331602454185486,0.0612216182053089,-0.941430628299713,\r\n0.215261176228523,-0.209467113018036,-0.953827083110809,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.245440110564232,-0.0114840241149068,-0.969343721866608,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.238248690962791,-0.261111497879028,-0.935445487499237,0.298269182443619,-0.122608654201031,-0.946574091911316,0.363241195678711,0.0705938935279846,-0.929016768932343,0.375921547412872,-0.146878644824028,-0.914936900138855,0.485128700733185,-0.184181824326515,-0.854825735092163,0.375921547412872,-0.146878644824028,-0.914936900138855,0.445805966854095,0.0342569686472416,-0.894473791122437,0.862999260425568,-0.347417265176773,-0.366787880659103,0.817101240158081,-0.256638169288635,-0.516219079494476,0.874448478221893,-0.259078204631805,-0.410144180059433,0.861400663852692,-0.251806765794754,-0.441114366054535,0.752776741981506,-0.169943153858185,-0.635961055755615,0.865093111991882,-0.32211235165596,-0.384522378444672,0.865093111991882,-0.32211235165596,-0.384522378444672,0.862999260425568,-0.347417265176773,-0.366787880659103,0.899260580539703,-0.298267632722855,-0.319947868585587,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.414938628673553,0.181286498904228,-0.891605913639069,0.290720373392105,0.28117299079895,-0.914561808109283,0.715904831886292,-0.0417037233710289,-0.696951150894165,0.290720373392105,0.28117299079895,-0.914561808109283,0.586400866508484,0.034211628139019,-0.809298098087311,0.752776741981506,-0.169943153858185,-0.635961055755615,0.861400663852692,-0.251806765794754,-0.441114366054535,0.586400866508484,0.034211628139019,-0.809298098087311,0.671058654785156,0.486768901348114,-0.559228181838989,0.790569961071014,0.467947661876678,-0.394998878240585,0.830859899520874,0.330845355987549,-0.447451651096344,0.868656575679779,0.402484238147736,-0.288863450288773,0.790569961071014,0.467947661876678,-0.394998878240585,0.706054627895355,0.613750040531158,-0.353267192840576,0.522848665714264,0.334039181470871,-0.784249305725098,0.62006139755249,0.324813455343246,-0.714156746864319,\r\n0.48889634013176,0.404664129018784,-0.772804737091064,0.707395315170288,0.136797800660133,-0.693453729152679,0.531672596931458,0.333859145641327,-0.778371512889862,0.733146071434021,0.309465795755386,-0.605580389499664,0.62006139755249,0.324813455343246,-0.714156746864319,0.522848665714264,0.334039181470871,-0.784249305725098,0.630146324634552,0.206091836094856,-0.748626470565796,0.707395315170288,0.136797800660133,-0.693453729152679,0.630146324634552,0.206091836094856,-0.748626470565796,0.531672596931458,0.333859145641327,-0.778371512889862,0.671058654785156,0.486768901348114,-0.559228181838989,0.830859899520874,0.330845355987549,-0.447451651096344,0.733146071434021,0.309465795755386,-0.605580389499664,0.477504879236221,0.297704637050629,-0.826656460762024,0.277672529220581,0.277265608310699,-0.919794321060181,0.257542818784714,0.401762902736664,-0.878782212734222,0.477504879236221,0.297704637050629,-0.826656460762024,0.351293653249741,0.456787437200546,-0.817274630069733,0.543813347816467,0.370018690824509,-0.753228425979614,0.48889634013176,0.404664129018784,-0.772804737091064,0.62006139755249,0.324813455343246,-0.714156746864319,0.543813347816467,0.370018690824509,-0.753228425979614,0.0594802089035511,0.416960269212723,-0.906976342201233,0.0723564997315407,0.349555164575577,-0.934117555618286,-0.0620564185082912,0.482051014900208,-0.873942613601685,0.0723564997315407,0.349555164575577,-0.934117555618286,-0.0687387436628342,0.409131705760956,-0.909882485866547,-0.0620564185082912,0.482051014900208,-0.873942613601685,-0.119141854345798,0.49394965171814,-0.861289024353027,-0.0687387436628342,0.409131705760956,-0.909882485866547,-0.047272652387619,0.377027839422226,-0.924994707107544,0.247508361935616,0.233378529548645,-0.940358459949493,0.0594802089035511,0.416960269212723,-0.906976342201233,0.277672529220581,0.277265608310699,-0.919794321060181,-0.119141854345798,0.49394965171814,-0.861289024353027,-0.0597365759313107,0.389673143625259,-0.919013738632202,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.290720373392105,0.28117299079895,-0.914561808109283,\r\n0.414938628673553,0.181286498904228,-0.891605913639069,0.136027872562408,0.357224255800247,-0.924060106277466,0.136027872562408,0.357224255800247,-0.924060106277466,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.290720373392105,0.28117299079895,-0.914561808109283,0.271722018718719,0.545725107192993,0.792685985565186,0.182964861392975,0.611999094486237,0.769402921199799,0.199975892901421,0.524589776992798,0.827535510063171,0.437545627355576,0.457090139389038,0.774352848529816,0.412558406591415,0.560495257377625,0.718081057071686,0.271722018718719,0.545725107192993,0.792685985565186,0.437545627355576,0.457090139389038,0.774352848529816,0.549995362758636,0.483990430831909,0.680630743503571,0.412558406591415,0.560495257377625,0.718081057071686,0.783752262592316,0.466084629297256,0.410484313964844,0.677730739116669,0.581594526767731,0.449920773506165,0.672871887683868,0.491692274808884,0.552704334259033,0.783752262592316,0.466084629297256,0.410484313964844,0.730025470256805,0.585918664932251,0.351798206567764,0.677730739116669,0.581594526767731,0.449920773506165,0.672871887683868,0.491692274808884,0.552704334259033,0.57188493013382,0.538527369499207,0.618817985057831,0.692333340644836,0.368210732936859,0.62056040763855,0.549995362758636,0.483990430831909,0.680630743503571,0.692333340644836,0.368210732936859,0.62056040763855,0.57188493013382,0.538527369499207,0.618817985057831,0.783752262592316,0.466084629297256,0.410484313964844,0.838264465332031,0.481007963418961,0.256794929504395,0.730025470256805,0.585918664932251,0.351798206567764,0.907073974609375,0.417925655841827,0.0505430363118649,0.804491758346558,0.57312947511673,0.155934646725655,0.838264465332031,0.481007963418961,0.256794929504395,0.804491758346558,0.57312947511673,0.155934646725655,0.907073974609375,0.417925655841827,0.0505430363118649,0.797519624233246,0.603292644023895,-0.000639036414213479,0.840975224971771,0.531280934810638,-0.102475330233574,0.742231130599976,0.660661518573761,-0.112334974110127,0.797519624233246,0.603292644023895,-0.000639036414213479,\r\n0.840975224971771,0.531280934810638,-0.102475330233574,0.913841485977173,0.371090948581696,-0.164879158139229,0.805379569530487,0.545870780944824,-0.231059581041336,0.913841485977173,0.371090948581696,-0.164879158139229,0.868656575679779,0.402484238147736,-0.288863450288773,0.805379569530487,0.545870780944824,-0.231059581041336,-0.0485643669962883,0.35008242726326,0.935459077358246,0.212643563747406,0.163458988070488,0.963360667228699,0.0978655517101288,0.28583836555481,0.953267395496368,0.0147232776507735,0.431112229824066,0.902178108692169,0.0978655517101288,0.28583836555481,0.953267395496368,0.231104791164398,0.242471560835838,0.942230343818665,0.00456144195050001,0.190013438463211,0.981770873069763,-0.148003488779068,0.313724547624588,0.937908172607422,-0.155188173055649,0.228971272706985,0.960983216762543,-0.0485643669962883,0.35008242726326,0.935459077358246,0.00456144195050001,0.190013438463211,0.981770873069763,0.212643563747406,0.163458988070488,0.963360667228699,0.105999827384949,0.455395728349686,0.883956253528595,0.0434391386806965,0.457074731588364,0.88836681842804,0.164964616298676,0.362045973539352,0.917447149753571,0.0147232776507735,0.431112229824066,0.902178108692169,0.231104791164398,0.242471560835838,0.942230343818665,0.170387730002403,0.323810696601868,0.930652737617493,0.170387730002403,0.323810696601868,0.930652737617493,0.164964616298676,0.362045973539352,0.917447149753571,0.0434391386806965,0.457074731588364,0.88836681842804,0.207153081893921,0.460493385791779,0.863153100013733,0.105999827384949,0.455395728349686,0.883956253528595,0.252279549837112,0.338923007249832,0.90635871887207,0.207153081893921,0.460493385791779,0.863153100013733,0.324389040470123,0.431812137365341,0.841611504554749,0.199975892901421,0.524589776992798,0.827535510063171,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.252482026815414,-0.427404344081879,-0.868088841438293,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.303189098834991,-0.281874120235443,-0.910287439823151,-0.286488890647888,-0.328903406858444,-0.899859189987183,\r\n-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.456368207931519,-0.489969521760941,-0.74273669719696,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.407715231180191,-0.555059313774109,-0.725036144256592,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.249230146408081,-0.374243825674057,-0.89321094751358,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.303189098834991,-0.281874120235443,-0.910287439823151,0.471672207117081,-0.437212020158768,0.765748560428619,0.510483622550964,-0.408713668584824,0.756544411182404,0.525252997875214,-0.375090479850769,0.763816893100739,0.19944766163826,-0.163284629583359,0.966208398342133,0.290182530879974,-0.309220999479294,0.905635893344879,-0.120879545807838,-0.198008447885513,0.972718179225922,0.0852470919489861,-0.00189848779700696,0.996357977390289,0.19944766163826,-0.163284629583359,0.966208398342133,-0.154958248138428,-0.0292554032057524,0.98748767375946,0.382546991109848,-0.407892912626266,0.829024136066437,0.290182530879974,-0.309220999479294,0.905635893344879,0.592243731021881,-0.422943502664566,0.685832321643829,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.170357525348663,0.141536414623261,0.975164413452148,0.0852470919489861,-0.00189848779700696,0.996357977390289,0.69095641374588,-0.450513631105423,0.565346360206604,0.674222409725189,-0.476864725351334,0.563936173915863,0.587862551212311,-0.45308518409729,0.670172572135925,0.592243731021881,-0.422943502664566,0.685832321643829,0.587862551212311,-0.45308518409729,0.670172572135925,0.382546991109848,-0.407892912626266,0.829024136066437,\r\n0.705562353134155,-0.413469731807709,0.575520932674408,0.586943864822388,-0.411882728338242,0.697028934955597,0.64734810590744,-0.35194593667984,0.676072716712952,0.735829293727875,-0.45830973982811,0.498505085706711,0.705562353134155,-0.413469731807709,0.575520932674408,0.740400612354279,-0.470625042915344,0.479915469884872,0.69095641374588,-0.450513631105423,0.565346360206604,0.735829293727875,-0.45830973982811,0.498505085706711,0.674222409725189,-0.476864725351334,0.563936173915863,0.561202943325043,-0.428363025188446,0.708206355571747,0.471672207117081,-0.437212020158768,0.765748560428619,0.586943864822388,-0.411882728338242,0.697028934955597,-0.155188173055649,0.228971272706985,0.960983216762543,-0.20713409781456,0.194094747304916,0.958865284919739,-0.102751277387142,0.121579721570015,0.98724889755249,-0.20713409781456,0.194094747304916,0.958865284919739,-0.170357525348663,0.141536414623261,0.975164413452148,-0.164129212498665,0.0633310750126839,0.984403729438782,0.761502802371979,-0.305149793624878,-0.571836411952972,0.817101240158081,-0.256638169288635,-0.516219079494476,0.799435973167419,-0.366724073886871,-0.475831300020218,0.761502802371979,-0.305149793624878,-0.571836411952972,0.761427998542786,-0.420668005943298,-0.493219703435898,0.722769439220428,-0.415681421756744,-0.55209881067276,0.759834706783295,-0.2846839427948,-0.584470748901367,0.709797024726868,-0.316624492406845,-0.629235088825226,0.67516553401947,-0.382844179868698,-0.630540788173676,0.67516553401947,-0.382844179868698,-0.630540788173676,0.733867704868317,-0.351484656333923,-0.581288695335388,0.791033387184143,-0.184419021010399,-0.58331435918808,0.722769439220428,-0.415681421756744,-0.55209881067276,0.786023497581482,-0.370533853769302,-0.494845032691956,0.733867704868317,-0.351484656333923,-0.581288695335388,0.485128700733185,-0.184181824326515,-0.854825735092163,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.621482908725739,-0.250752955675125,-0.742214143276215,0.554268300533295,-0.0689009204506874,-0.829481244087219,0.693438112735748,-0.161363810300827,-0.702214479446411,\r\n0.621482908725739,-0.250752955675125,-0.742214143276215,0.709797024726868,-0.316624492406845,-0.629235088825226,0.759834706783295,-0.2846839427948,-0.584470748901367,0.753891468048096,-0.297086745500565,-0.585992276668549,0.74326229095459,-0.244019582867622,-0.6229088306427,0.753891468048096,-0.297086745500565,-0.585992276668549,0.726812362670898,-0.243797898292542,-0.642110764980316,0.736740469932556,-0.230909988284111,-0.635526359081268,0.726812362670898,-0.243797898292542,-0.642110764980316,0.766371369361877,-0.285885065793991,-0.575277745723724,0.788616001605988,-0.242426812648773,-0.565078616142273,0.735465049743652,-0.160701125860214,-0.658229649066925,0.766371369361877,-0.285885065793991,-0.575277745723724,0.725438714027405,-0.31188291311264,-0.613569498062134,0.693438112735748,-0.161363810300827,-0.702214479446411,0.788616001605988,-0.242426812648773,-0.565078616142273,0.298269182443619,-0.122608654201031,-0.946574091911316,0.215261176228523,-0.209467113018036,-0.953827083110809,0.331602454185486,0.0612216182053089,-0.941430628299713,0.238248690962791,-0.261111497879028,-0.935445487499237,0.258217841386795,-0.00854728184640408,-0.966048836708069,0.215261176228523,-0.209467113018036,-0.953827083110809,0.298269182443619,-0.122608654201031,-0.946574091911316,0.375921547412872,-0.146878644824028,-0.914936900138855,0.224133402109146,-0.400278687477112,-0.888561248779297,0.485128700733185,-0.184181824326515,-0.854825735092163,0.363134652376175,-0.407352924346924,-0.837971746921539,0.375921547412872,-0.146878644824028,-0.914936900138855,0.799435973167419,-0.366724073886871,-0.475831300020218,0.817101240158081,-0.256638169288635,-0.516219079494476,0.862999260425568,-0.347417265176773,-0.366787880659103,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.865093111991882,-0.32211235165596,-0.384522378444672,0.752776741981506,-0.169943153858185,-0.635961055755615,0.822263121604919,-0.36025682091713,-0.440565794706345,0.862999260425568,-0.347417265176773,-0.366787880659103,0.865093111991882,-0.32211235165596,-0.384522378444672,\r\n0.290720373392105,0.28117299079895,-0.914561808109283,0.151664033532143,0.325889676809311,-0.933163344860077,0.586400866508484,0.034211628139019,-0.809298098087311,0.752776741981506,-0.169943153858185,-0.635961055755615,0.586400866508484,0.034211628139019,-0.809298098087311,0.34280863404274,0.16869430243969,-0.924134373664856,0.909004628658295,0.255169242620468,-0.329543769359589,0.830859899520874,0.330845355987549,-0.447451651096344,0.790569961071014,0.467947661876678,-0.394998878240585,0.868656575679779,0.402484238147736,-0.288863450288773,0.909004628658295,0.255169242620468,-0.329543769359589,0.790569961071014,0.467947661876678,-0.394998878240585,0.707395315170288,0.136797800660133,-0.693453729152679,0.733146071434021,0.309465795755386,-0.605580389499664,0.832989156246185,0.179173484444618,-0.523474752902985,0.62006139755249,0.324813455343246,-0.714156746864319,0.630146324634552,0.206091836094856,-0.748626470565796,0.72615784406662,0.220498502254486,-0.65121054649353,0.630146324634552,0.206091836094856,-0.748626470565796,0.707395315170288,0.136797800660133,-0.693453729152679,0.691632211208344,0.114676184952259,-0.713087737560272,0.886272609233856,0.205142855644226,-0.415255516767502,0.733146071434021,0.309465795755386,-0.605580389499664,0.830859899520874,0.330845355987549,-0.447451651096344,0.477504879236221,0.297704637050629,-0.826656460762024,0.504754424095154,0.101458467543125,-0.857280015945435,0.277672529220581,0.277265608310699,-0.919794321060181,0.477504879236221,0.297704637050629,-0.826656460762024,0.543813347816467,0.370018690824509,-0.753228425979614,0.686363697052002,0.245068222284317,-0.684723496437073,0.543813347816467,0.370018690824509,-0.753228425979614,0.62006139755249,0.324813455343246,-0.714156746864319,0.686363697052002,0.245068222284317,-0.684723496437073,0.0723564997315407,0.349555164575577,-0.934117555618286,0.0594802089035511,0.416960269212723,-0.906976342201233,0.247508361935616,0.233378529548645,-0.940358459949493,0.0723564997315407,0.349555164575577,-0.934117555618286,0.0549485795199871,0.272500932216644,-0.960585117340088,\r\n-0.0687387436628342,0.409131705760956,-0.909882485866547,-0.0687387436628342,0.409131705760956,-0.909882485866547,0.0549485795199871,0.272500932216644,-0.960585117340088,-0.047272652387619,0.377027839422226,-0.924994707107544,-0.047272652387619,0.377027839422226,-0.924994707107544,-0.0597365759313107,0.389673143625259,-0.919013738632202,-0.119141854345798,0.49394965171814,-0.861289024353027,0.247508361935616,0.233378529548645,-0.940358459949493,0.277672529220581,0.277265608310699,-0.919794321060181,0.370670050382614,0.106623210012913,-0.922623991966248,-0.0484938211739063,0.387898206710815,-0.920425534248352,-0.0619298592209816,0.440282791852951,-0.895720779895782,-0.0597365759313107,0.389673143625259,-0.919013738632202,0.290720373392105,0.28117299079895,-0.914561808109283,-0.0619298592209816,0.440282791852951,-0.895720779895782,0.151664033532143,0.325889676809311,-0.933163344860077,0.271722018718719,0.545725107192993,0.792685985565186,0.199975892901421,0.524589776992798,0.827535510063171,0.324389040470123,0.431812137365341,0.841611504554749,0.271722018718719,0.545725107192993,0.792685985565186,0.324389040470123,0.431812137365341,0.841611504554749,0.437545627355576,0.457090139389038,0.774352848529816,0.437545627355576,0.457090139389038,0.774352848529816,0.60094940662384,0.374452620744705,0.706147909164429,0.549995362758636,0.483990430831909,0.680630743503571,0.765001535415649,0.369775801897049,0.52729344367981,0.783752262592316,0.466084629297256,0.410484313964844,0.672871887683868,0.491692274808884,0.552704334259033,0.672871887683868,0.491692274808884,0.552704334259033,0.692333340644836,0.368210732936859,0.62056040763855,0.765001535415649,0.369775801897049,0.52729344367981,0.60094940662384,0.374452620744705,0.706147909164429,0.692333340644836,0.368210732936859,0.62056040763855,0.549995362758636,0.483990430831909,0.680630743503571,0.783752262592316,0.466084629297256,0.410484313964844,0.884588718414307,0.360684305429459,0.295650899410248,0.838264465332031,0.481007963418961,0.256794929504395,0.907073974609375,0.417925655841827,0.0505430363118649,\r\n0.838264465332031,0.481007963418961,0.256794929504395,0.925517857074738,0.327207654714584,0.190660685300827,0.907073974609375,0.417925655841827,0.0505430363118649,0.840975224971771,0.531280934810638,-0.102475330233574,0.797519624233246,0.603292644023895,-0.000639036414213479,0.840975224971771,0.531280934810638,-0.102475330233574,0.907073974609375,0.417925655841827,0.0505430363118649,0.913841485977173,0.371090948581696,-0.164879158139229,0.913841485977173,0.371090948581696,-0.164879158139229,0.926008880138397,0.271594494581223,-0.262190371751785,0.868656575679779,0.402484238147736,-0.288863450288773,0.0978655517101288,0.28583836555481,0.953267395496368,0.212643563747406,0.163458988070488,0.963360667228699,0.231104791164398,0.242471560835838,0.942230343818665,-0.155188173055649,0.228971272706985,0.960983216762543,-0.102751277387142,0.121579721570015,0.98724889755249,0.00456144195050001,0.190013438463211,0.981770873069763,0.276909410953522,0.0828925296664238,0.957313895225525,0.212643563747406,0.163458988070488,0.963360667228699,0.00456144195050001,0.190013438463211,0.981770873069763,0.164964616298676,0.362045973539352,0.917447149753571,0.252279549837112,0.338923007249832,0.90635871887207,0.105999827384949,0.455395728349686,0.883956253528595,0.231104791164398,0.242471560835838,0.942230343818665,0.327234715223312,0.116555623710155,0.937727153301239,0.170387730002403,0.323810696601868,0.930652737617493,0.236572593450546,0.247935011982918,0.939447462558746,0.164964616298676,0.362045973539352,0.917447149753571,0.170387730002403,0.323810696601868,0.930652737617493,0.207153081893921,0.460493385791779,0.863153100013733,0.252279549837112,0.338923007249832,0.90635871887207,0.358366131782532,0.335594952106476,0.871177196502686,0.358366131782532,0.335594952106476,0.871177196502686,0.324389040470123,0.431812137365341,0.841611504554749,0.207153081893921,0.460493385791779,0.863153100013733,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.373161196708679,-0.274960309267044,-0.886085331439972,\r\n-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.303189098834991,-0.281874120235443,-0.910287439823151,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.398754954338074,-0.459334224462509,-0.793729484081268,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.330030798912048,-0.41173067688942,-0.849445343017578,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.458824247121811,-0.535126447677612,-0.70930939912796,-0.407715231180191,-0.555059313774109,-0.725036144256592,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.258272796869278,-0.529074907302856,-0.808316051959991,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.303189098834991,-0.281874120235443,-0.910287439823151,0.4850133061409,-0.43706950545311,0.757451117038727,0.471672207117081,-0.437212020158768,0.765748560428619,0.525252997875214,-0.375090479850769,0.763816893100739,0.290182530879974,-0.309220999479294,0.905635893344879,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.120879545807838,-0.198008447885513,0.972718179225922,0.19944766163826,-0.163284629583359,0.966208398342133,-0.120879545807838,-0.198008447885513,0.972718179225922,-0.154958248138428,-0.0292554032057524,0.98748767375946,0.0852470919489861,-0.00189848779700696,0.996357977390289,-0.154958248138428,-0.0292554032057524,0.98748767375946,-0.177350133657455,0.0594303794205189,0.982351720333099,0.290182530879974,-0.309220999479294,0.905635893344879,0.382546991109848,-0.407892912626266,0.829024136066437,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.164129212498665,0.0633310750126839,0.984403729438782,-0.170357525348663,0.141536414623261,0.975164413452148,0.587862551212311,-0.45308518409729,0.670172572135925,\r\n0.674222409725189,-0.476864725351334,0.563936173915863,0.534347414970398,-0.47610729932785,0.698422849178314,0.382546991109848,-0.407892912626266,0.829024136066437,0.587862551212311,-0.45308518409729,0.670172572135925,0.375947237014771,-0.446658998727798,0.811886310577393,0.586943864822388,-0.411882728338242,0.697028934955597,0.525444507598877,-0.31004798412323,0.792324542999268,0.64734810590744,-0.35194593667984,0.676072716712952,0.705562353134155,-0.413469731807709,0.575520932674408,0.64734810590744,-0.35194593667984,0.676072716712952,0.726132571697235,-0.430960714817047,0.535727739334106,0.705562353134155,-0.413469731807709,0.575520932674408,0.726132571697235,-0.430960714817047,0.535727739334106,0.740400612354279,-0.470625042915344,0.479915469884872,0.735829293727875,-0.45830973982811,0.498505085706711,0.740400612354279,-0.470625042915344,0.479915469884872,0.700024664402008,-0.514129817485809,0.495616644620895,0.674222409725189,-0.476864725351334,0.563936173915863,0.735829293727875,-0.45830973982811,0.498505085706711,0.700024664402008,-0.514129817485809,0.495616644620895,0.471672207117081,-0.437212020158768,0.765748560428619,0.452295541763306,-0.39427575469017,0.799984514713287,0.586943864822388,-0.411882728338242,0.697028934955597,-0.20713409781456,0.194094747304916,0.958865284919739,-0.164129212498665,0.0633310750126839,0.984403729438782,-0.102751277387142,0.121579721570015,0.98724889755249,0.799435973167419,-0.366724073886871,-0.475831300020218,0.761427998542786,-0.420668005943298,-0.493219703435898,0.761502802371979,-0.305149793624878,-0.571836411952972,0.736937642097473,-0.479064673185349,-0.47688552737236,0.722769439220428,-0.415681421756744,-0.55209881067276,0.761427998542786,-0.420668005943298,-0.493219703435898,0.67516553401947,-0.382844179868698,-0.630540788173676,0.791033387184143,-0.184419021010399,-0.58331435918808,0.759834706783295,-0.2846839427948,-0.584470748901367,0.838184297084808,-0.249244809150696,-0.485101968050003,0.791033387184143,-0.184419021010399,-0.58331435918808,0.733867704868317,-0.351484656333923,-0.581288695335388,\r\n0.786023497581482,-0.370533853769302,-0.494845032691956,0.722769439220428,-0.415681421756744,-0.55209881067276,0.746150732040405,-0.47042378783226,-0.471126735210419,0.733867704868317,-0.351484656333923,-0.581288695335388,0.786023497581482,-0.370533853769302,-0.494845032691956,0.836842358112335,-0.281211793422699,-0.469696342945099,0.485128700733185,-0.184181824326515,-0.854825735092163,0.621482908725739,-0.250752955675125,-0.742214143276215,0.501127779483795,-0.406384229660034,-0.764017462730408,0.621482908725739,-0.250752955675125,-0.742214143276215,0.693438112735748,-0.161363810300827,-0.702214479446411,0.725438714027405,-0.31188291311264,-0.613569498062134,0.753891468048096,-0.297086745500565,-0.585992276668549,0.759834706783295,-0.2846839427948,-0.584470748901367,0.776944160461426,-0.134263247251511,-0.615086138248444,0.726812362670898,-0.243797898292542,-0.642110764980316,0.753891468048096,-0.297086745500565,-0.585992276668549,0.776944160461426,-0.134263247251511,-0.615086138248444,0.735940992832184,-0.256752252578735,-0.626473426818848,0.766371369361877,-0.285885065793991,-0.575277745723724,0.726812362670898,-0.243797898292542,-0.642110764980316,0.788616001605988,-0.242426812648773,-0.565078616142273,0.766371369361877,-0.285885065793991,-0.575277745723724,0.761154055595398,-0.191411659121513,-0.61968207359314,0.725438714027405,-0.31188291311264,-0.613569498062134,0.788616001605988,-0.242426812648773,-0.565078616142273,0.740736424922943,-0.210192322731018,-0.638066291809082,0.298269182443619,-0.122608654201031,-0.946574091911316,0.224133402109146,-0.400278687477112,-0.888561248779297,0.215261176228523,-0.209467113018036,-0.953827083110809,0.238248690962791,-0.261111497879028,-0.935445487499237,0.215261176228523,-0.209467113018036,-0.953827083110809,0.191307440400124,-0.409143954515457,-0.892189800739288,0.363134652376175,-0.407352924346924,-0.837971746921539,0.224133402109146,-0.400278687477112,-0.888561248779297,0.375921547412872,-0.146878644824028,-0.914936900138855,0.485128700733185,-0.184181824326515,-0.854825735092163,\r\n0.501127779483795,-0.406384229660034,-0.764017462730408,0.363134652376175,-0.407352924346924,-0.837971746921539,0.799435973167419,-0.366724073886871,-0.475831300020218,0.862999260425568,-0.347417265176773,-0.366787880659103,0.800699949264526,-0.439170479774475,-0.407441705465317,0.865093111991882,-0.32211235165596,-0.384522378444672,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.822263121604919,-0.36025682091713,-0.440565794706345,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.752776741981506,-0.169943153858185,-0.635961055755615,0.34280863404274,0.16869430243969,-0.924134373664856,0.800699949264526,-0.439170479774475,-0.407441705465317,0.862999260425568,-0.347417265176773,-0.366787880659103,0.822263121604919,-0.36025682091713,-0.440565794706345,0.34280863404274,0.16869430243969,-0.924134373664856,0.586400866508484,0.034211628139019,-0.809298098087311,0.151664033532143,0.325889676809311,-0.933163344860077,0.830859899520874,0.330845355987549,-0.447451651096344,0.909004628658295,0.255169242620468,-0.329543769359589,0.886272609233856,0.205142855644226,-0.415255516767502,0.868656575679779,0.402484238147736,-0.288863450288773,0.926008880138397,0.271594494581223,-0.262190371751785,0.909004628658295,0.255169242620468,-0.329543769359589,0.886272609233856,0.205142855644226,-0.415255516767502,0.832989156246185,0.179173484444618,-0.523474752902985,0.733146071434021,0.309465795755386,-0.605580389499664,0.821907103061676,0.0805575922131538,-0.563896417617798,0.707395315170288,0.136797800660133,-0.693453729152679,0.832989156246185,0.179173484444618,-0.523474752902985,0.72615784406662,0.220498502254486,-0.65121054649353,0.630146324634552,0.206091836094856,-0.748626470565796,0.691632211208344,0.114676184952259,-0.713087737560272,0.62006139755249,0.324813455343246,-0.714156746864319,0.72615784406662,0.220498502254486,-0.65121054649353,0.686363697052002,0.245068222284317,-0.684723496437073,0.691632211208344,0.114676184952259,-0.713087737560272,0.707395315170288,0.136797800660133,-0.693453729152679,0.747844696044922,0.0563194639980793,-0.661480367183685,\r\n0.477504879236221,0.297704637050629,-0.826656460762024,0.656004369258881,0.126904040575027,-0.74401181936264,0.504754424095154,0.101458467543125,-0.857280015945435,0.504754424095154,0.101458467543125,-0.857280015945435,0.370670050382614,0.106623210012913,-0.922623991966248,0.277672529220581,0.277265608310699,-0.919794321060181,0.686363697052002,0.245068222284317,-0.684723496437073,0.656004369258881,0.126904040575027,-0.74401181936264,0.477504879236221,0.297704637050629,-0.826656460762024,0.280577003955841,0.127385124564171,-0.951340854167938,0.0723564997315407,0.349555164575577,-0.934117555618286,0.247508361935616,0.233378529548645,-0.940358459949493,0.0723564997315407,0.349555164575577,-0.934117555618286,0.280577003955841,0.127385124564171,-0.951340854167938,0.0549485795199871,0.272500932216644,-0.960585117340088,0.0549485795199871,0.272500932216644,-0.960585117340088,0.0470903553068638,0.257261753082275,-0.965193629264832,-0.047272652387619,0.377027839422226,-0.924994707107544,-0.047272652387619,0.377027839422226,-0.924994707107544,0.0470903553068638,0.257261753082275,-0.965193629264832,-0.0597365759313107,0.389673143625259,-0.919013738632202,0.389761298894882,0.0559918731451035,-0.919212162494659,0.247508361935616,0.233378529548645,-0.940358459949493,0.370670050382614,0.106623210012913,-0.922623991966248,0.151664033532143,0.325889676809311,-0.933163344860077,-0.0619298592209816,0.440282791852951,-0.895720779895782,-0.0484938211739063,0.387898206710815,-0.920425534248352,-0.0484938211739063,0.387898206710815,-0.920425534248352,-0.0597365759313107,0.389673143625259,-0.919013738632202,-0.0904846638441086,0.323889225721359,-0.941758036613464,0.487024307250977,0.353716820478439,0.798555970191956,0.437545627355576,0.457090139389038,0.774352848529816,0.324389040470123,0.431812137365341,0.841611504554749,0.60094940662384,0.374452620744705,0.706147909164429,0.437545627355576,0.457090139389038,0.774352848529816,0.487024307250977,0.353716820478439,0.798555970191956,0.783752262592316,0.466084629297256,0.410484313964844,0.765001535415649,0.369775801897049,0.52729344367981,\r\n0.839446902275085,0.34242245554924,0.421990007162094,0.765001535415649,0.369775801897049,0.52729344367981,0.692333340644836,0.368210732936859,0.62056040763855,0.795952677726746,0.267092674970627,0.54325008392334,0.60094940662384,0.374452620744705,0.706147909164429,0.728619635105133,0.231799140572548,0.644501686096191,0.692333340644836,0.368210732936859,0.62056040763855,0.783752262592316,0.466084629297256,0.410484313964844,0.839446902275085,0.34242245554924,0.421990007162094,0.884588718414307,0.360684305429459,0.295650899410248,0.925517857074738,0.327207654714584,0.190660685300827,0.838264465332031,0.481007963418961,0.256794929504395,0.884588718414307,0.360684305429459,0.295650899410248,0.907073974609375,0.417925655841827,0.0505430363118649,0.925517857074738,0.327207654714584,0.190660685300827,0.959479868412018,0.275568723678589,0.0588238909840584,0.963992536067963,0.254729390144348,-0.0763630792498589,0.913841485977173,0.371090948581696,-0.164879158139229,0.907073974609375,0.417925655841827,0.0505430363118649,0.926008880138397,0.271594494581223,-0.262190371751785,0.913841485977173,0.371090948581696,-0.164879158139229,0.9474778175354,0.252963960170746,-0.195690929889679,0.212643563747406,0.163458988070488,0.963360667228699,0.370514124631882,0.0435104183852673,0.927807092666626,0.231104791164398,0.242471560835838,0.942230343818665,-0.102751277387142,0.121579721570015,0.98724889755249,0.00528338039293885,0.0881317928433418,0.996094763278961,0.00456144195050001,0.190013438463211,0.981770873069763,0.276909410953522,0.0828925296664238,0.957313895225525,0.394062221050262,0.0334990620613098,0.9184730052948,0.212643563747406,0.163458988070488,0.963360667228699,0.149890929460526,0.0707199275493622,0.986169993877411,0.276909410953522,0.0828925296664238,0.957313895225525,0.00456144195050001,0.190013438463211,0.981770873069763,0.164964616298676,0.362045973539352,0.917447149753571,0.310979634523392,0.208040401339531,0.927367627620697,0.252279549837112,0.338923007249832,0.90635871887207,0.370514124631882,0.0435104183852673,0.927807092666626,\r\n0.327234715223312,0.116555623710155,0.937727153301239,0.231104791164398,0.242471560835838,0.942230343818665,0.236572593450546,0.247935011982918,0.939447462558746,0.170387730002403,0.323810696601868,0.930652737617493,0.327234715223312,0.116555623710155,0.937727153301239,0.310979634523392,0.208040401339531,0.927367627620697,0.164964616298676,0.362045973539352,0.917447149753571,0.236572593450546,0.247935011982918,0.939447462558746,0.410663068294525,0.227108865976334,0.883049964904785,0.358366131782532,0.335594952106476,0.871177196502686,0.252279549837112,0.338923007249832,0.90635871887207,0.444072544574738,0.299122393131256,0.84458589553833,0.324389040470123,0.431812137365341,0.841611504554749,0.358366131782532,0.335594952106476,0.871177196502686,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.286488890647888,-0.328903406858444,-0.899859189987183,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.258272796869278,-0.529074907302856,-0.808316051959991,0.463857620954514,-0.437761783599854,0.770195186138153,0.471672207117081,-0.437212020158768,0.765748560428619,0.4850133061409,-0.43706950545311,0.757451117038727,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.170641377568245,-0.298191577196121,0.939128935337067,-0.120879545807838,-0.198008447885513,0.972718179225922,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.154958248138428,-0.0292554032057524,0.98748767375946,\r\n-0.120879545807838,-0.198008447885513,0.972718179225922,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.154958248138428,-0.0292554032057524,0.98748767375946,-0.187766492366791,-0.0402575321495533,0.98138827085495,0.382546991109848,-0.407892912626266,0.829024136066437,0.159415081143379,-0.385306805372238,0.90891444683075,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.154621198773384,-0.0444663502275944,0.986972630023956,-0.164129212498665,0.0633310750126839,0.984403729438782,0.674222409725189,-0.476864725351334,0.563936173915863,0.603965103626251,-0.508081316947937,0.614067852497101,0.534347414970398,-0.47610729932785,0.698422849178314,0.587862551212311,-0.45308518409729,0.670172572135925,0.534347414970398,-0.47610729932785,0.698422849178314,0.375947237014771,-0.446658998727798,0.811886310577393,0.382546991109848,-0.407892912626266,0.829024136066437,0.375947237014771,-0.446658998727798,0.811886310577393,0.159415081143379,-0.385306805372238,0.90891444683075,0.452295541763306,-0.39427575469017,0.799984514713287,0.525444507598877,-0.31004798412323,0.792324542999268,0.586943864822388,-0.411882728338242,0.697028934955597,0.629538416862488,-0.256962686777115,0.73324716091156,0.64734810590744,-0.35194593667984,0.676072716712952,0.525444507598877,-0.31004798412323,0.792324542999268,0.64734810590744,-0.35194593667984,0.676072716712952,0.731010556221008,-0.370411902666092,0.573078036308289,0.726132571697235,-0.430960714817047,0.535727739334106,0.726132571697235,-0.430960714817047,0.535727739334106,0.753945708274841,-0.515135586261749,0.407677799463272,0.740400612354279,-0.470625042915344,0.479915469884872,0.725835025310516,-0.542573988437653,0.422820121049881,0.700024664402008,-0.514129817485809,0.495616644620895,0.740400612354279,-0.470625042915344,0.479915469884872,0.674222409725189,-0.476864725351334,0.563936173915863,0.700024664402008,-0.514129817485809,0.495616644620895,0.603965103626251,-0.508081316947937,0.614067852497101,0.471672207117081,-0.437212020158768,0.765748560428619,\r\n0.463857620954514,-0.437761783599854,0.770195186138153,0.452295541763306,-0.39427575469017,0.799984514713287,-0.102751277387142,0.121579721570015,0.98724889755249,-0.164129212498665,0.0633310750126839,0.984403729438782,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.799435973167419,-0.366724073886871,-0.475831300020218,0.800699949264526,-0.439170479774475,-0.407441705465317,0.761427998542786,-0.420668005943298,-0.493219703435898,0.724660038948059,-0.497122287750244,-0.477218121290207,0.722769439220428,-0.415681421756744,-0.55209881067276,0.736937642097473,-0.479064673185349,-0.47688552737236,0.761427998542786,-0.420668005943298,-0.493219703435898,0.800699949264526,-0.439170479774475,-0.407441705465317,0.736937642097473,-0.479064673185349,-0.47688552737236,0.776944160461426,-0.134263247251511,-0.615086138248444,0.759834706783295,-0.2846839427948,-0.584470748901367,0.791033387184143,-0.184419021010399,-0.58331435918808,0.838184297084808,-0.249244809150696,-0.485101968050003,0.864597380161285,-0.129347890615463,-0.485531032085419,0.791033387184143,-0.184419021010399,-0.58331435918808,0.836842358112335,-0.281211793422699,-0.469696342945099,0.838184297084808,-0.249244809150696,-0.485101968050003,0.733867704868317,-0.351484656333923,-0.581288695335388,0.722769439220428,-0.415681421756744,-0.55209881067276,0.724660038948059,-0.497122287750244,-0.477218121290207,0.746150732040405,-0.47042378783226,-0.471126735210419,0.824313044548035,-0.431433171033859,-0.366569608449936,0.786023497581482,-0.370533853769302,-0.494845032691956,0.746150732040405,-0.47042378783226,-0.471126735210419,0.838184297084808,-0.249244809150696,-0.485101968050003,0.836842358112335,-0.281211793422699,-0.469696342945099,0.786023497581482,-0.370533853769302,-0.494845032691956,0.628696441650391,-0.396186739206314,-0.669161200523376,0.501127779483795,-0.406384229660034,-0.764017462730408,0.621482908725739,-0.250752955675125,-0.742214143276215,0.621482908725739,-0.250752955675125,-0.742214143276215,0.725438714027405,-0.31188291311264,-0.613569498062134,\r\n0.628696441650391,-0.396186739206314,-0.669161200523376,0.726812362670898,-0.243797898292542,-0.642110764980316,0.776944160461426,-0.134263247251511,-0.615086138248444,0.724030733108521,0.00233395560644567,-0.68976366519928,0.735940992832184,-0.256752252578735,-0.626473426818848,0.761154055595398,-0.191411659121513,-0.61968207359314,0.766371369361877,-0.285885065793991,-0.575277745723724,0.726812362670898,-0.243797898292542,-0.642110764980316,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.735940992832184,-0.256752252578735,-0.626473426818848,0.740736424922943,-0.210192322731018,-0.638066291809082,0.788616001605988,-0.242426812648773,-0.565078616142273,0.761154055595398,-0.191411659121513,-0.61968207359314,0.740736424922943,-0.210192322731018,-0.638066291809082,0.637105584144592,-0.35523921251297,-0.684033215045929,0.725438714027405,-0.31188291311264,-0.613569498062134,0.224133402109146,-0.400278687477112,-0.888561248779297,0.191307440400124,-0.409143954515457,-0.892189800739288,0.215261176228523,-0.209467113018036,-0.953827083110809,0.191307440400124,-0.409143954515457,-0.892189800739288,0.30616706609726,-0.345672696828842,-0.887001693248749,0.238248690962791,-0.261111497879028,-0.935445487499237,0.363134652376175,-0.407352924346924,-0.837971746921539,0.253511428833008,-0.575701832771301,-0.777366816997528,0.224133402109146,-0.400278687477112,-0.888561248779297,0.363134652376175,-0.407352924346924,-0.837971746921539,0.501127779483795,-0.406384229660034,-0.764017462730408,0.345489770174026,-0.592032432556152,-0.72810310125351,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.65590500831604,-0.188016131520271,-0.731052935123444,0.822263121604919,-0.36025682091713,-0.440565794706345,0.34280863404274,0.16869430243969,-0.924134373664856,0.13558591902256,0.247427701950073,-0.959372639656067,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.800699949264526,-0.439170479774475,-0.407441705465317,0.822263121604919,-0.36025682091713,-0.440565794706345,0.812140285968781,-0.398448586463928,-0.426223963499069,\r\n0.34280863404274,0.16869430243969,-0.924134373664856,0.151664033532143,0.325889676809311,-0.933163344860077,-0.0484938211739063,0.387898206710815,-0.920425534248352,0.886272609233856,0.205142855644226,-0.415255516767502,0.909004628658295,0.255169242620468,-0.329543769359589,0.918938398361206,0.144240841269493,-0.36707866191864,0.909004628658295,0.255169242620468,-0.329543769359589,0.926008880138397,0.271594494581223,-0.262190371751785,0.941993772983551,0.206683814525604,-0.264441579580307,0.886272609233856,0.205142855644226,-0.415255516767502,0.887468636035919,0.127407848834991,-0.442906856536865,0.832989156246185,0.179173484444618,-0.523474752902985,0.821907103061676,0.0805575922131538,-0.563896417617798,0.747844696044922,0.0563194639980793,-0.661480367183685,0.707395315170288,0.136797800660133,-0.693453729152679,0.832989156246185,0.179173484444618,-0.523474752902985,0.887468636035919,0.127407848834991,-0.442906856536865,0.821907103061676,0.0805575922131538,-0.563896417617798,0.766763687133789,0.0709763988852501,-0.637993454933167,0.72615784406662,0.220498502254486,-0.65121054649353,0.691632211208344,0.114676184952259,-0.713087737560272,0.72615784406662,0.220498502254486,-0.65121054649353,0.771441280841827,0.122246660292149,-0.62444680929184,0.686363697052002,0.245068222284317,-0.684723496437073,0.766763687133789,0.0709763988852501,-0.637993454933167,0.691632211208344,0.114676184952259,-0.713087737560272,0.747844696044922,0.0563194639980793,-0.661480367183685,0.656004369258881,0.126904040575027,-0.74401181936264,0.663875222206116,-0.10013435781002,-0.741109073162079,0.504754424095154,0.101458467543125,-0.857280015945435,0.504754424095154,0.101458467543125,-0.857280015945435,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.370670050382614,0.106623210012913,-0.922623991966248,0.745506882667542,0.00631246343255043,-0.666467905044556,0.656004369258881,0.126904040575027,-0.74401181936264,0.686363697052002,0.245068222284317,-0.684723496437073,0.389761298894882,0.0559918731451035,-0.919212162494659,0.280577003955841,0.127385124564171,-0.951340854167938,\r\n0.247508361935616,0.233378529548645,-0.940358459949493,0.280577003955841,0.127385124564171,-0.951340854167938,0.162471756339073,0.102393098175526,-0.981386005878448,0.0549485795199871,0.272500932216644,-0.960585117340088,0.0470903553068638,0.257261753082275,-0.965193629264832,0.0549485795199871,0.272500932216644,-0.960585117340088,0.162471756339073,0.102393098175526,-0.981386005878448,0.0713405907154083,0.229746177792549,-0.970632314682007,-0.0597365759313107,0.389673143625259,-0.919013738632202,0.0470903553068638,0.257261753082275,-0.965193629264832,0.389761298894882,0.0559918731451035,-0.919212162494659,0.370670050382614,0.106623210012913,-0.922623991966248,0.49152347445488,-0.0310156866908073,-0.870311796665192,-0.0904846638441086,0.323889225721359,-0.941758036613464,-0.0597365759313107,0.389673143625259,-0.919013738632202,0.0713405907154083,0.229746177792549,-0.970632314682007,-0.0904846638441086,0.323889225721359,-0.941758036613464,-0.070423536002636,0.330290913581848,-0.941248297691345,-0.0484938211739063,0.387898206710815,-0.920425534248352,0.487024307250977,0.353716820478439,0.798555970191956,0.324389040470123,0.431812137365341,0.841611504554749,0.444072544574738,0.299122393131256,0.84458589553833,0.628827452659607,0.26434126496315,0.731231570243835,0.60094940662384,0.374452620744705,0.706147909164429,0.487024307250977,0.353716820478439,0.798555970191956,0.765001535415649,0.369775801897049,0.52729344367981,0.857460677623749,0.23653344810009,0.456960588693619,0.839446902275085,0.34242245554924,0.421990007162094,0.812867999076843,0.180216535925865,0.553866028785706,0.795952677726746,0.267092674970627,0.54325008392334,0.692333340644836,0.368210732936859,0.62056040763855,0.795952677726746,0.267092674970627,0.54325008392334,0.857460677623749,0.23653344810009,0.456960588693619,0.765001535415649,0.369775801897049,0.52729344367981,0.628827452659607,0.26434126496315,0.731231570243835,0.728619635105133,0.231799140572548,0.644501686096191,0.60094940662384,0.374452620744705,0.706147909164429,0.728619635105133,0.231799140572548,0.644501686096191,\r\n0.812867999076843,0.180216535925865,0.553866028785706,0.692333340644836,0.368210732936859,0.62056040763855,0.839446902275085,0.34242245554924,0.421990007162094,0.9161337018013,0.221801534295082,0.333920657634735,0.884588718414307,0.360684305429459,0.295650899410248,0.925517857074738,0.327207654714584,0.190660685300827,0.884588718414307,0.360684305429459,0.295650899410248,0.950812935829163,0.212867304682732,0.225037649273872,0.925517857074738,0.327207654714584,0.190660685300827,0.982653260231018,0.163663983345032,0.0872155949473381,0.959479868412018,0.275568723678589,0.0588238909840584,0.963992536067963,0.254729390144348,-0.0763630792498589,0.907073974609375,0.417925655841827,0.0505430363118649,0.959479868412018,0.275568723678589,0.0588238909840584,0.9474778175354,0.252963960170746,-0.195690929889679,0.913841485977173,0.371090948581696,-0.164879158139229,0.963992536067963,0.254729390144348,-0.0763630792498589,0.926008880138397,0.271594494581223,-0.262190371751785,0.9474778175354,0.252963960170746,-0.195690929889679,0.941993772983551,0.206683814525604,-0.264441579580307,0.394062221050262,0.0334990620613098,0.9184730052948,0.370514124631882,0.0435104183852673,0.927807092666626,0.212643563747406,0.163458988070488,0.963360667228699,0.0571358054876328,0.0166806560009718,0.998227000236511,0.00528338039293885,0.0881317928433418,0.996094763278961,-0.102751277387142,0.121579721570015,0.98724889755249,0.00528338039293885,0.0881317928433418,0.996094763278961,0.0557451322674751,0.053692601621151,0.997000277042389,0.00456144195050001,0.190013438463211,0.981770873069763,0.394062221050262,0.0334990620613098,0.9184730052948,0.276909410953522,0.0828925296664238,0.957313895225525,0.46495795249939,-0.0765464380383492,0.882017374038696,0.276909410953522,0.0828925296664238,0.957313895225525,0.149890929460526,0.0707199275493622,0.986169993877411,0.313881605863571,-0.0269749350845814,0.949078798294067,0.0557451322674751,0.053692601621151,0.997000277042389,0.149890929460526,0.0707199275493622,0.986169993877411,0.00456144195050001,0.190013438463211,0.981770873069763,\r\n0.310979634523392,0.208040401339531,0.927367627620697,0.410663068294525,0.227108865976334,0.883049964904785,0.252279549837112,0.338923007249832,0.90635871887207,0.370514124631882,0.0435104183852673,0.927807092666626,0.424841791391373,-0.0593523569405079,0.903319656848907,0.327234715223312,0.116555623710155,0.937727153301239,0.310979634523392,0.208040401339531,0.927367627620697,0.236572593450546,0.247935011982918,0.939447462558746,0.327234715223312,0.116555623710155,0.937727153301239,0.410663068294525,0.227108865976334,0.883049964904785,0.504252254962921,0.173843219876289,0.845877051353455,0.358366131782532,0.335594952106476,0.871177196502686,0.358366131782532,0.335594952106476,0.871177196502686,0.504252254962921,0.173843219876289,0.845877051353455,0.444072544574738,0.299122393131256,0.84458589553833,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.426811575889587,-0.366682529449463,-0.82666540145874,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.486329436302185,-0.430422872304916,-0.760407567024231,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.373161196708679,-0.274960309267044,-0.886085331439972,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.492542564868927,-0.466423660516739,-0.734745264053345,-0.170641377568245,-0.298191577196121,0.939128935337067,0.0180783569812775,-0.315205633640289,0.948851108551025,-0.088472455739975,-0.397358447313309,0.913388609886169,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.120879545807838,-0.198008447885513,0.972718179225922,-0.170641377568245,-0.298191577196121,0.939128935337067,-0.187766492366791,-0.0402575321495533,0.98138827085495,\r\n-0.154958248138428,-0.0292554032057524,0.98748767375946,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.120879545807838,-0.198008447885513,0.972718179225922,-0.154621198773384,-0.0444663502275944,0.986972630023956,-0.177350133657455,0.0594303794205189,0.982351720333099,-0.187766492366791,-0.0402575321495533,0.98138827085495,0.0180783569812775,-0.315205633640289,0.948851108551025,0.159415081143379,-0.385306805372238,0.90891444683075,-0.088472455739975,-0.397358447313309,0.913388609886169,-0.154621198773384,-0.0444663502275944,0.986972630023956,0.00351991388015449,-0.148171290755272,0.98895537853241,-0.164129212498665,0.0633310750126839,0.984403729438782,0.480375647544861,-0.513790965080261,0.710814952850342,0.534347414970398,-0.47610729932785,0.698422849178314,0.603965103626251,-0.508081316947937,0.614067852497101,0.375947237014771,-0.446658998727798,0.811886310577393,0.534347414970398,-0.47610729932785,0.698422849178314,0.329131513834,-0.483216881752014,0.811279058456421,0.375947237014771,-0.446658998727798,0.811886310577393,0.0806417092680931,-0.468025386333466,0.880027830600739,0.159415081143379,-0.385306805372238,0.90891444683075,0.525444507598877,-0.31004798412323,0.792324542999268,0.452295541763306,-0.39427575469017,0.799984514713287,0.473199307918549,-0.319873005151749,0.820831000804901,0.64734810590744,-0.35194593667984,0.676072716712952,0.629538416862488,-0.256962686777115,0.73324716091156,0.731010556221008,-0.370411902666092,0.573078036308289,0.629538416862488,-0.256962686777115,0.73324716091156,0.525444507598877,-0.31004798412323,0.792324542999268,0.502345502376556,-0.200718984007835,0.841047406196594,0.773634493350983,-0.443773359060287,0.452277302742004,0.726132571697235,-0.430960714817047,0.535727739334106,0.731010556221008,-0.370411902666092,0.573078036308289,0.773634493350983,-0.443773359060287,0.452277302742004,0.753945708274841,-0.515135586261749,0.407677799463272,0.726132571697235,-0.430960714817047,0.535727739334106,\r\n0.753945708274841,-0.515135586261749,0.407677799463272,0.725835025310516,-0.542573988437653,0.422820121049881,0.740400612354279,-0.470625042915344,0.479915469884872,0.675490915775299,-0.575444936752319,0.461058527231216,0.700024664402008,-0.514129817485809,0.495616644620895,0.725835025310516,-0.542573988437653,0.422820121049881,0.608703970909119,-0.572503626346588,0.549289405345917,0.603965103626251,-0.508081316947937,0.614067852497101,0.700024664402008,-0.514129817485809,0.495616644620895,0.463857620954514,-0.437761783599854,0.770195186138153,0.473199307918549,-0.319873005151749,0.820831000804901,0.452295541763306,-0.39427575469017,0.799984514713287,-0.0121894469484687,-0.0428844951093197,0.999005615711212,-0.164129212498665,0.0633310750126839,0.984403729438782,0.00351991388015449,-0.148171290755272,0.98895537853241,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.0571358054876328,0.0166806560009718,0.998227000236511,-0.102751277387142,0.121579721570015,0.98724889755249,0.736937642097473,-0.479064673185349,-0.47688552737236,0.704381108283997,-0.528172612190247,-0.47421595454216,0.724660038948059,-0.497122287750244,-0.477218121290207,0.736937642097473,-0.479064673185349,-0.47688552737236,0.800699949264526,-0.439170479774475,-0.407441705465317,0.715359747409821,-0.448115944862366,-0.536145865917206,0.776944160461426,-0.134263247251511,-0.615086138248444,0.791033387184143,-0.184419021010399,-0.58331435918808,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.838184297084808,-0.249244809150696,-0.485101968050003,0.881447494029999,-0.262430757284164,-0.392657995223999,0.864597380161285,-0.129347890615463,-0.485531032085419,0.864597380161285,-0.129347890615463,-0.485531032085419,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.791033387184143,-0.184419021010399,-0.58331435918808,0.724660038948059,-0.497122287750244,-0.477218121290207,0.775001525878906,-0.491844028234482,-0.39681476354599,0.746150732040405,-0.47042378783226,-0.471126735210419,0.824313044548035,-0.431433171033859,-0.366569608449936,\r\n0.855578243732452,-0.359561324119568,-0.372426390647888,0.786023497581482,-0.370533853769302,-0.494845032691956,0.824313044548035,-0.431433171033859,-0.366569608449936,0.746150732040405,-0.47042378783226,-0.471126735210419,0.775001525878906,-0.491844028234482,-0.39681476354599,0.838184297084808,-0.249244809150696,-0.485101968050003,0.786023497581482,-0.370533853769302,-0.494845032691956,0.855578243732452,-0.359561324119568,-0.372426390647888,0.628696441650391,-0.396186739206314,-0.669161200523376,0.487609356641769,-0.529550015926361,-0.694128036499023,0.501127779483795,-0.406384229660034,-0.764017462730408,0.628696441650391,-0.396186739206314,-0.669161200523376,0.725438714027405,-0.31188291311264,-0.613569498062134,0.585298299789429,-0.475986659526825,-0.656401097774506,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.724030733108521,0.00233395560644567,-0.68976366519928,0.776944160461426,-0.134263247251511,-0.615086138248444,0.724030733108521,0.00233395560644567,-0.68976366519928,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.726812362670898,-0.243797898292542,-0.642110764980316,0.735940992832184,-0.256752252578735,-0.626473426818848,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.761154055595398,-0.191411659121513,-0.61968207359314,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.740736424922943,-0.210192322731018,-0.638066291809082,0.761154055595398,-0.191411659121513,-0.61968207359314,0.637105584144592,-0.35523921251297,-0.684033215045929,0.740736424922943,-0.210192322731018,-0.638066291809082,0.614814877510071,-0.215035825967789,-0.758789896965027,0.637105584144592,-0.35523921251297,-0.684033215045929,0.585298299789429,-0.475986659526825,-0.656401097774506,0.725438714027405,-0.31188291311264,-0.613569498062134,0.224133402109146,-0.400278687477112,-0.888561248779297,0.258817255496979,-0.514311671257019,-0.817616641521454,0.191307440400124,-0.409143954515457,-0.892189800739288,0.295208424329758,-0.394090056419373,-0.870370507240295,0.30616706609726,-0.345672696828842,-0.887001693248749,\r\n0.191307440400124,-0.409143954515457,-0.892189800739288,0.363134652376175,-0.407352924346924,-0.837971746921539,0.345489770174026,-0.592032432556152,-0.72810310125351,0.253511428833008,-0.575701832771301,-0.777366816997528,0.224133402109146,-0.400278687477112,-0.888561248779297,0.253511428833008,-0.575701832771301,-0.777366816997528,0.258817255496979,-0.514311671257019,-0.817616641521454,0.345489770174026,-0.592032432556152,-0.72810310125351,0.501127779483795,-0.406384229660034,-0.764017462730408,0.487609356641769,-0.529550015926361,-0.694128036499023,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.217093214392662,0.163153573870659,-0.962419509887695,0.65590500831604,-0.188016131520271,-0.731052935123444,0.822263121604919,-0.36025682091713,-0.440565794706345,0.65590500831604,-0.188016131520271,-0.731052935123444,0.812140285968781,-0.398448586463928,-0.426223963499069,0.34280863404274,0.16869430243969,-0.924134373664856,-0.0484938211739063,0.387898206710815,-0.920425534248352,0.13558591902256,0.247427701950073,-0.959372639656067,0.608812570571899,-0.0986281260848045,-0.787159204483032,0.13558591902256,0.247427701950073,-0.959372639656067,0.217093214392662,0.163153573870659,-0.962419509887695,0.800699949264526,-0.439170479774475,-0.407441705465317,0.812140285968781,-0.398448586463928,-0.426223963499069,0.715359747409821,-0.448115944862366,-0.536145865917206,0.952552258968353,0.141694918274879,-0.269381940364838,0.918938398361206,0.144240841269493,-0.36707866191864,0.909004628658295,0.255169242620468,-0.329543769359589,0.918938398361206,0.144240841269493,-0.36707866191864,0.887468636035919,0.127407848834991,-0.442906856536865,0.886272609233856,0.205142855644226,-0.415255516767502,0.952552258968353,0.141694918274879,-0.269381940364838,0.909004628658295,0.255169242620468,-0.329543769359589,0.941993772983551,0.206683814525604,-0.264441579580307,0.821907103061676,0.0805575922131538,-0.563896417617798,0.871302008628845,0.051984217017889,-0.487985998392105,0.747844696044922,0.0563194639980793,-0.661480367183685,\r\n0.821907103061676,0.0805575922131538,-0.563896417617798,0.887468636035919,0.127407848834991,-0.442906856536865,0.871302008628845,0.051984217017889,-0.487985998392105,0.766763687133789,0.0709763988852501,-0.637993454933167,0.771441280841827,0.122246660292149,-0.62444680929184,0.72615784406662,0.220498502254486,-0.65121054649353,0.745506882667542,0.00631246343255043,-0.666467905044556,0.686363697052002,0.245068222284317,-0.684723496437073,0.771441280841827,0.122246660292149,-0.62444680929184,0.766763687133789,0.0709763988852501,-0.637993454933167,0.747844696044922,0.0563194639980793,-0.661480367183685,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.745506882667542,0.00631246343255043,-0.666467905044556,0.663875222206116,-0.10013435781002,-0.741109073162079,0.656004369258881,0.126904040575027,-0.74401181936264,0.663875222206116,-0.10013435781002,-0.741109073162079,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.504754424095154,0.101458467543125,-0.857280015945435,0.389761298894882,0.0559918731451035,-0.919212162494659,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.280577003955841,0.127385124564171,-0.951340854167938,0.280577003955841,0.127385124564171,-0.951340854167938,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.162471756339073,0.102393098175526,-0.981386005878448,0.146349027752876,0.143113002181053,-0.978825986385345,0.0470903553068638,0.257261753082275,-0.965193629264832,0.162471756339073,0.102393098175526,-0.981386005878448,0.0713405907154083,0.229746177792549,-0.970632314682007,0.0470903553068638,0.257261753082275,-0.965193629264832,0.146349027752876,0.143113002181053,-0.978825986385345,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.389761298894882,0.0559918731451035,-0.919212162494659,-0.0418163314461708,0.158656731247902,-0.986447870731354,-0.0904846638441086,0.323889225721359,-0.941758036613464,0.0713405907154083,0.229746177792549,-0.970632314682007,-0.070423536002636,0.330290913581848,-0.941248297691345,\r\n-0.0904846638441086,0.323889225721359,-0.941758036613464,-0.0524872317910194,0.205522656440735,-0.977243781089783,0.13558591902256,0.247427701950073,-0.959372639656067,-0.0484938211739063,0.387898206710815,-0.920425534248352,-0.070423536002636,0.330290913581848,-0.941248297691345,0.487024307250977,0.353716820478439,0.798555970191956,0.444072544574738,0.299122393131256,0.84458589553833,0.585302233695984,0.208884343504906,0.783446550369263,0.487024307250977,0.353716820478439,0.798555970191956,0.585302233695984,0.208884343504906,0.783446550369263,0.628827452659607,0.26434126496315,0.731231570243835,0.9161337018013,0.221801534295082,0.333920657634735,0.839446902275085,0.34242245554924,0.421990007162094,0.857460677623749,0.23653344810009,0.456960588693619,0.812867999076843,0.180216535925865,0.553866028785706,0.874746382236481,0.124634958803654,0.468278586864471,0.795952677726746,0.267092674970627,0.54325008392334,0.795952677726746,0.267092674970627,0.54325008392334,0.874746382236481,0.124634958803654,0.468278586864471,0.857460677623749,0.23653344810009,0.456960588693619,0.628827452659607,0.26434126496315,0.731231570243835,0.721905589103699,0.0816565454006195,0.687156736850739,0.728619635105133,0.231799140572548,0.644501686096191,0.812867999076843,0.180216535925865,0.553866028785706,0.728619635105133,0.231799140572548,0.644501686096191,0.816955268383026,0.070244088768959,0.572406888008118,0.9161337018013,0.221801534295082,0.333920657634735,0.950812935829163,0.212867304682732,0.225037649273872,0.884588718414307,0.360684305429459,0.295650899410248,0.925517857074738,0.327207654714584,0.190660685300827,0.950812935829163,0.212867304682732,0.225037649273872,0.982653260231018,0.163663983345032,0.0872155949473381,0.963992536067963,0.254729390144348,-0.0763630792498589,0.959479868412018,0.275568723678589,0.0588238909840584,0.982653260231018,0.163663983345032,0.0872155949473381,0.966576933860779,0.186932191252708,-0.175457194447517,0.9474778175354,0.252963960170746,-0.195690929889679,0.963992536067963,0.254729390144348,-0.0763630792498589,\r\n0.941993772983551,0.206683814525604,-0.264441579580307,0.9474778175354,0.252963960170746,-0.195690929889679,0.966576933860779,0.186932191252708,-0.175457194447517,0.394062221050262,0.0334990620613098,0.9184730052948,0.471483290195465,-0.104091204702854,0.875710248947144,0.370514124631882,0.0435104183852673,0.927807092666626,0.0571358054876328,0.0166806560009718,0.998227000236511,0.228439480066299,-0.0878774225711823,0.969583868980408,0.00528338039293885,0.0881317928433418,0.996094763278961,0.00528338039293885,0.0881317928433418,0.996094763278961,0.228439480066299,-0.0878774225711823,0.969583868980408,0.0557451322674751,0.053692601621151,0.997000277042389,0.276909410953522,0.0828925296664238,0.957313895225525,0.313881605863571,-0.0269749350845814,0.949078798294067,0.46495795249939,-0.0765464380383492,0.882017374038696,0.471483290195465,-0.104091204702854,0.875710248947144,0.394062221050262,0.0334990620613098,0.9184730052948,0.46495795249939,-0.0765464380383492,0.882017374038696,0.249122470617294,-0.0611523725092411,0.966539323329926,0.313881605863571,-0.0269749350845814,0.949078798294067,0.149890929460526,0.0707199275493622,0.986169993877411,0.0557451322674751,0.053692601621151,0.997000277042389,0.249122470617294,-0.0611523725092411,0.966539323329926,0.149890929460526,0.0707199275493622,0.986169993877411,0.310979634523392,0.208040401339531,0.927367627620697,0.45429590344429,0.0566424243152142,0.889048278331757,0.410663068294525,0.227108865976334,0.883049964904785,0.370514124631882,0.0435104183852673,0.927807092666626,0.471483290195465,-0.104091204702854,0.875710248947144,0.424841791391373,-0.0593523569405079,0.903319656848907,0.45429590344429,0.0566424243152142,0.889048278331757,0.327234715223312,0.116555623710155,0.937727153301239,0.424841791391373,-0.0593523569405079,0.903319656848907,0.45429590344429,0.0566424243152142,0.889048278331757,0.310979634523392,0.208040401339531,0.927367627620697,0.327234715223312,0.116555623710155,0.937727153301239,0.410663068294525,0.227108865976334,0.883049964904785,0.45429590344429,0.0566424243152142,0.889048278331757,\r\n0.504252254962921,0.173843219876289,0.845877051353455,0.585302233695984,0.208884343504906,0.783446550369263,0.444072544574738,0.299122393131256,0.84458589553833,0.504252254962921,0.173843219876289,0.845877051353455,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.454544186592102,-0.228420287370682,-0.860937654972076,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.170641377568245,-0.298191577196121,0.939128935337067,-0.088472455739975,-0.397358447313309,0.913388609886169,-0.0943166241049767,-0.480934858322144,0.871668457984924,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.170641377568245,-0.298191577196121,0.939128935337067,-0.0943166241049767,-0.480934858322144,0.871668457984924,-0.0659535601735115,-0.236084416508675,0.969491720199585,-0.187766492366791,-0.0402575321495533,0.98138827085495,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.0659535601735115,-0.236084416508675,0.969491720199585,-0.191165506839752,-0.155296489596367,0.969194829463959,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.154621198773384,-0.0444663502275944,0.986972630023956,-0.187766492366791,-0.0402575321495533,0.98138827085495,-0.0659535601735115,-0.236084416508675,0.969491720199585,0.159415081143379,-0.385306805372238,0.90891444683075,0.0806417092680931,-0.468025386333466,0.880027830600739,-0.088472455739975,-0.397358447313309,0.913388609886169,-0.154621198773384,-0.0444663502275944,0.986972630023956,-0.0659535601735115,-0.236084416508675,0.969491720199585,0.00351991388015449,-0.148171290755272,0.98895537853241,\r\n0.480375647544861,-0.513790965080261,0.710814952850342,0.329131513834,-0.483216881752014,0.811279058456421,0.534347414970398,-0.47610729932785,0.698422849178314,0.603965103626251,-0.508081316947937,0.614067852497101,0.526469588279724,-0.59919285774231,0.603156268596649,0.480375647544861,-0.513790965080261,0.710814952850342,0.375947237014771,-0.446658998727798,0.811886310577393,0.329131513834,-0.483216881752014,0.811279058456421,0.0806417092680931,-0.468025386333466,0.880027830600739,0.502345502376556,-0.200718984007835,0.841047406196594,0.525444507598877,-0.31004798412323,0.792324542999268,0.473199307918549,-0.319873005151749,0.820831000804901,0.629538416862488,-0.256962686777115,0.73324716091156,0.759950459003448,-0.292904704809189,0.580242991447449,0.731010556221008,-0.370411902666092,0.573078036308289,0.502345502376556,-0.200718984007835,0.841047406196594,0.623132705688477,-0.116109080612659,0.773449540138245,0.629538416862488,-0.256962686777115,0.73324716091156,0.753945708274841,-0.515135586261749,0.407677799463272,0.721532166004181,-0.574814915657043,0.385977953672409,0.725835025310516,-0.542573988437653,0.422820121049881,0.675490915775299,-0.575444936752319,0.461058527231216,0.608703970909119,-0.572503626346588,0.549289405345917,0.700024664402008,-0.514129817485809,0.495616644620895,0.725835025310516,-0.542573988437653,0.422820121049881,0.721532166004181,-0.574814915657043,0.385977953672409,0.675490915775299,-0.575444936752319,0.461058527231216,0.608703970909119,-0.572503626346588,0.549289405345917,0.526469588279724,-0.59919285774231,0.603156268596649,0.603965103626251,-0.508081316947937,0.614067852497101,0.196335032582283,-0.270916432142258,0.942367613315582,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.00351991388015449,-0.148171290755272,0.98895537853241,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.192503228783607,-0.180916011333466,0.96447491645813,0.0571358054876328,0.0166806560009718,0.998227000236511,0.715359747409821,-0.448115944862366,-0.536145865917206,0.704381108283997,-0.528172612190247,-0.47421595454216,\r\n0.736937642097473,-0.479064673185349,-0.47688552737236,0.704381108283997,-0.528172612190247,-0.47421595454216,0.74986457824707,-0.515440404415131,-0.41475784778595,0.724660038948059,-0.497122287750244,-0.477218121290207,0.881447494029999,-0.262430757284164,-0.392657995223999,0.838184297084808,-0.249244809150696,-0.485101968050003,0.855578243732452,-0.359561324119568,-0.372426390647888,0.881447494029999,-0.262430757284164,-0.392657995223999,0.88873153924942,-0.097435288131237,-0.447953760623932,0.864597380161285,-0.129347890615463,-0.485531032085419,0.864597380161285,-0.129347890615463,-0.485531032085419,0.88873153924942,-0.097435288131237,-0.447953760623932,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.74986457824707,-0.515440404415131,-0.41475784778595,0.775001525878906,-0.491844028234482,-0.39681476354599,0.724660038948059,-0.497122287750244,-0.477218121290207,0.855578243732452,-0.359561324119568,-0.372426390647888,0.824313044548035,-0.431433171033859,-0.366569608449936,0.842212855815887,-0.459305852651596,-0.28233939409256,0.824313044548035,-0.431433171033859,-0.366569608449936,0.775001525878906,-0.491844028234482,-0.39681476354599,0.796044170856476,-0.514640212059021,-0.318526238203049,0.628696441650391,-0.396186739206314,-0.669161200523376,0.585298299789429,-0.475986659526825,-0.656401097774506,0.487609356641769,-0.529550015926361,-0.694128036499023,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.724030733108521,0.00233395560644567,-0.68976366519928,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.724030733108521,0.00233395560644567,-0.68976366519928,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.761154055595398,-0.191411659121513,-0.61968207359314,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.614814877510071,-0.215035825967789,-0.758789896965027,0.740736424922943,-0.210192322731018,-0.638066291809082,\r\n0.498800933361053,-0.460049092769623,-0.73454225063324,0.637105584144592,-0.35523921251297,-0.684033215045929,0.614814877510071,-0.215035825967789,-0.758789896965027,0.637105584144592,-0.35523921251297,-0.684033215045929,0.452427715063095,-0.551249623298645,-0.701022684574127,0.585298299789429,-0.475986659526825,-0.656401097774506,0.295208424329758,-0.394090056419373,-0.870370507240295,0.191307440400124,-0.409143954515457,-0.892189800739288,0.258817255496979,-0.514311671257019,-0.817616641521454,0.295208424329758,-0.394090056419373,-0.870370507240295,0.349255561828613,-0.406838774681091,-0.844098687171936,0.30616706609726,-0.345672696828842,-0.887001693248749,0.308135598897934,-0.606259822845459,-0.733144879341125,0.253511428833008,-0.575701832771301,-0.777366816997528,0.345489770174026,-0.592032432556152,-0.72810310125351,0.308135598897934,-0.606259822845459,-0.733144879341125,0.258817255496979,-0.514311671257019,-0.817616641521454,0.253511428833008,-0.575701832771301,-0.777366816997528,0.345489770174026,-0.592032432556152,-0.72810310125351,0.487609356641769,-0.529550015926361,-0.694128036499023,0.387371033430099,-0.61861515045166,-0.68356329202652,0.217093214392662,0.163153573870659,-0.962419509887695,0.232146680355072,0.048180777579546,-0.971486687660217,0.65590500831604,-0.188016131520271,-0.731052935123444,0.65590500831604,-0.188016131520271,-0.731052935123444,0.715359747409821,-0.448115944862366,-0.536145865917206,0.812140285968781,-0.398448586463928,-0.426223963499069,0.13558591902256,0.247427701950073,-0.959372639656067,-0.070423536002636,0.330290913581848,-0.941248297691345,0.217093214392662,0.163153573870659,-0.962419509887695,0.952552258968353,0.141694918274879,-0.269381940364838,0.945410013198853,0.0189214702695608,-0.325333297252655,0.918938398361206,0.144240841269493,-0.36707866191864,0.918938398361206,0.144240841269493,-0.36707866191864,0.871302008628845,0.051984217017889,-0.487985998392105,0.887468636035919,0.127407848834991,-0.442906856536865,0.966576933860779,0.186932191252708,-0.175457194447517,\r\n0.952552258968353,0.141694918274879,-0.269381940364838,0.941993772983551,0.206683814525604,-0.264441579580307,0.747844696044922,0.0563194639980793,-0.661480367183685,0.871302008628845,0.051984217017889,-0.487985998392105,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.766763687133789,0.0709763988852501,-0.637993454933167,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.771441280841827,0.122246660292149,-0.62444680929184,0.745506882667542,0.00631246343255043,-0.666467905044556,0.771441280841827,0.122246660292149,-0.62444680929184,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.807383060455322,-0.116387262940407,-0.578434586524963,0.766763687133789,0.0709763988852501,-0.637993454933167,0.764601349830627,-0.181833192706108,-0.618321359157562,0.663875222206116,-0.10013435781002,-0.741109073162079,0.745506882667542,0.00631246343255043,-0.666467905044556,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.663875222206116,-0.10013435781002,-0.741109073162079,0.565549612045288,-0.15399058163166,-0.810210049152374,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.280577003955841,0.127385124564171,-0.951340854167938,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.162471756339073,0.102393098175526,-0.981386005878448,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.146349027752876,0.143113002181053,-0.978825986385345,0.162471756339073,0.102393098175526,-0.981386005878448,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.0713405907154083,0.229746177792549,-0.970632314682007,0.146349027752876,0.143113002181053,-0.978825986385345,0.201057642698288,0.0748896449804306,-0.9767125248909,0.49152347445488,-0.0310156866908073,-0.870311796665192,0.565549612045288,-0.15399058163166,-0.810210049152374,0.449091136455536,-0.0880545452237129,-0.889136373996735,-0.0904846638441086,0.323889225721359,-0.941758036613464,-0.0418163314461708,0.158656731247902,-0.986447870731354,\r\n-0.0524872317910194,0.205522656440735,-0.977243781089783,-0.0418163314461708,0.158656731247902,-0.986447870731354,0.0713405907154083,0.229746177792549,-0.970632314682007,0.105127446353436,0.0741541236639023,-0.991690099239349,0.217093214392662,0.163153573870659,-0.962419509887695,-0.070423536002636,0.330290913581848,-0.941248297691345,-0.0524872317910194,0.205522656440735,-0.977243781089783,0.721905589103699,0.0816565454006195,0.687156736850739,0.628827452659607,0.26434126496315,0.731231570243835,0.585302233695984,0.208884343504906,0.783446550369263,0.9161337018013,0.221801534295082,0.333920657634735,0.857460677623749,0.23653344810009,0.456960588693619,0.928299009799957,0.0815792456269264,0.362775087356567,0.812867999076843,0.180216535925865,0.553866028785706,0.885141730308533,0.0265566892921925,0.46456304192543,0.874746382236481,0.124634958803654,0.468278586864471,0.874746382236481,0.124634958803654,0.468278586864471,0.928299009799957,0.0815792456269264,0.362775087356567,0.857460677623749,0.23653344810009,0.456960588693619,0.721905589103699,0.0816565454006195,0.687156736850739,0.816955268383026,0.070244088768959,0.572406888008118,0.728619635105133,0.231799140572548,0.644501686096191,0.812867999076843,0.180216535925865,0.553866028785706,0.816955268383026,0.070244088768959,0.572406888008118,0.885141730308533,0.0265566892921925,0.46456304192543,0.9161337018013,0.221801534295082,0.333920657634735,0.971246361732483,0.0719986781477928,0.226928129792213,0.950812935829163,0.212867304682732,0.225037649273872,0.950812935829163,0.212867304682732,0.225037649273872,0.971246361732483,0.0719986781477928,0.226928129792213,0.982653260231018,0.163663983345032,0.0872155949473381,0.982653260231018,0.163663983345032,0.0872155949473381,0.985050559043884,0.159180924296379,-0.0658538267016411,0.963992536067963,0.254729390144348,-0.0763630792498589,0.985050559043884,0.159180924296379,-0.0658538267016411,0.966576933860779,0.186932191252708,-0.175457194447517,0.963992536067963,0.254729390144348,-0.0763630792498589,0.192503228783607,-0.180916011333466,0.96447491645813,\r\n0.228439480066299,-0.0878774225711823,0.969583868980408,0.0571358054876328,0.0166806560009718,0.998227000236511,0.0557451322674751,0.053692601621151,0.997000277042389,0.228439480066299,-0.0878774225711823,0.969583868980408,0.249122470617294,-0.0611523725092411,0.966539323329926,0.46495795249939,-0.0765464380383492,0.882017374038696,0.313881605863571,-0.0269749350845814,0.949078798294067,0.410979896783829,-0.146752506494522,0.899755001068115,0.471483290195465,-0.104091204702854,0.875710248947144,0.46495795249939,-0.0765464380383492,0.882017374038696,0.543084681034088,-0.238042965531349,0.805229425430298,0.249122470617294,-0.0611523725092411,0.966539323329926,0.410979896783829,-0.146752506494522,0.899755001068115,0.313881605863571,-0.0269749350845814,0.949078798294067,0.471483290195465,-0.104091204702854,0.875710248947144,0.525615215301514,-0.155961781740189,0.836304008960724,0.424841791391373,-0.0593523569405079,0.903319656848907,0.45429590344429,0.0566424243152142,0.889048278331757,0.424841791391373,-0.0593523569405079,0.903319656848907,0.514600872993469,-0.0630413144826889,0.855109095573425,0.504252254962921,0.173843219876289,0.845877051353455,0.45429590344429,0.0566424243152142,0.889048278331757,0.582208216190338,0.0179835129529238,0.812840700149536,0.585302233695984,0.208884343504906,0.783446550369263,0.504252254962921,0.173843219876289,0.845877051353455,0.635242342948914,0.0744057297706604,0.768720209598541,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.497588694095612,-0.296573966741562,-0.815137624740601,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.536098062992096,-0.354009181261063,-0.766339480876923,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.519632995128632,-0.251721739768982,-0.816466510295868,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.0251289065927267,-0.575611531734467,0.817336916923523,-0.0943166241049767,-0.480934858322144,0.871668457984924,\r\n-0.088472455739975,-0.397358447313309,0.913388609886169,0.00181443197652698,-0.536412239074707,0.843954145908356,-0.107557088136673,-0.367379128932953,0.923831105232239,-0.0943166241049767,-0.480934858322144,0.871668457984924,-0.0659535601735115,-0.236084416508675,0.969491720199585,-0.107557088136673,-0.367379128932953,0.923831105232239,0.0537251606583595,-0.462187528610229,0.88515317440033,0.0806417092680931,-0.468025386333466,0.880027830600739,-0.05472656711936,-0.513353526592255,0.856430470943451,-0.088472455739975,-0.397358447313309,0.913388609886169,0.00351991388015449,-0.148171290755272,0.98895537853241,-0.0659535601735115,-0.236084416508675,0.969491720199585,0.216062158346176,-0.412168949842453,0.885117948055267,0.313479363918304,-0.507105886936188,0.802853763103485,0.329131513834,-0.483216881752014,0.811279058456421,0.480375647544861,-0.513790965080261,0.710814952850342,0.526469588279724,-0.59919285774231,0.603156268596649,0.450107723474503,-0.652853727340698,0.609249413013458,0.480375647544861,-0.513790965080261,0.710814952850342,0.122733242809772,-0.528954744338989,0.839728057384491,0.0806417092680931,-0.468025386333466,0.880027830600739,0.329131513834,-0.483216881752014,0.811279058456421,0.629538416862488,-0.256962686777115,0.73324716091156,0.623132705688477,-0.116109080612659,0.773449540138245,0.759950459003448,-0.292904704809189,0.580242991447449,0.608703970909119,-0.572503626346588,0.549289405345917,0.675490915775299,-0.575444936752319,0.461058527231216,0.613550961017609,-0.63726419210434,0.466314524412155,0.683378100395203,-0.628400087356567,0.371628284454346,0.675490915775299,-0.575444936752319,0.461058527231216,0.721532166004181,-0.574814915657043,0.385977953672409,0.608703970909119,-0.572503626346588,0.549289405345917,0.53700315952301,-0.683752179145813,0.494075298309326,0.526469588279724,-0.59919285774231,0.603156268596649,0.192503228783607,-0.180916011333466,0.96447491645813,-0.0121894469484687,-0.0428844951093197,0.999005615711212,0.196335032582283,-0.270916432142258,0.942367613315582,0.196335032582283,-0.270916432142258,0.942367613315582,\r\n0.00351991388015449,-0.148171290755272,0.98895537853241,0.216062158346176,-0.412168949842453,0.885117948055267,0.715359747409821,-0.448115944862366,-0.536145865917206,0.608795046806335,-0.472375422716141,-0.637361645698547,0.704381108283997,-0.528172612190247,-0.47421595454216,0.704381108283997,-0.528172612190247,-0.47421595454216,0.714557826519012,-0.542901217937469,-0.441208809614182,0.74986457824707,-0.515440404415131,-0.41475784778595,0.881447494029999,-0.262430757284164,-0.392657995223999,0.855578243732452,-0.359561324119568,-0.372426390647888,0.863585472106934,-0.405413925647736,-0.299765855073929,0.881447494029999,-0.262430757284164,-0.392657995223999,0.877370119094849,-0.206136137247086,-0.433277606964111,0.88873153924942,-0.097435288131237,-0.447953760623932,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.840565145015717,-0.0148213813081384,-0.541507542133331,0.88873153924942,-0.097435288131237,-0.447953760623932,0.775001525878906,-0.491844028234482,-0.39681476354599,0.74986457824707,-0.515440404415131,-0.41475784778595,0.796044170856476,-0.514640212059021,-0.318526238203049,0.824313044548035,-0.431433171033859,-0.366569608449936,0.796044170856476,-0.514640212059021,-0.318526238203049,0.842212855815887,-0.459305852651596,-0.28233939409256,0.842212855815887,-0.459305852651596,-0.28233939409256,0.863585472106934,-0.405413925647736,-0.299765855073929,0.855578243732452,-0.359561324119568,-0.372426390647888,0.487609356641769,-0.529550015926361,-0.694128036499023,0.585298299789429,-0.475986659526825,-0.656401097774506,0.387371033430099,-0.61861515045166,-0.68356329202652,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.724030733108521,0.00233395560644567,-0.68976366519928,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.724030733108521,0.00233395560644567,-0.68976366519928,0.682728409767151,-0.0885255485773087,-0.725289583206177,0.63328629732132,-0.0659580454230309,-0.771101713180542,\r\n0.642770230770111,-0.0647293031215668,-0.763319313526154,0.570565223693848,-0.23422047495842,-0.787144184112549,0.614814877510071,-0.215035825967789,-0.758789896965027,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.498800933361053,-0.460049092769623,-0.73454225063324,0.452427715063095,-0.551249623298645,-0.701022684574127,0.637105584144592,-0.35523921251297,-0.684033215045929,0.570565223693848,-0.23422047495842,-0.787144184112549,0.498800933361053,-0.460049092769623,-0.73454225063324,0.614814877510071,-0.215035825967789,-0.758789896965027,0.387371033430099,-0.61861515045166,-0.68356329202652,0.585298299789429,-0.475986659526825,-0.656401097774506,0.452427715063095,-0.551249623298645,-0.701022684574127,0.295208424329758,-0.394090056419373,-0.870370507240295,0.258817255496979,-0.514311671257019,-0.817616641521454,0.412191420793533,-0.434599816799164,-0.800762832164764,0.295208424329758,-0.394090056419373,-0.870370507240295,0.412191420793533,-0.434599816799164,-0.800762832164764,0.349255561828613,-0.406838774681091,-0.844098687171936,0.30616706609726,-0.345672696828842,-0.887001693248749,0.349255561828613,-0.406838774681091,-0.844098687171936,0.317352145910263,-0.338530242443085,-0.8858243227005,0.368264138698578,-0.567109405994415,-0.736728072166443,0.308135598897934,-0.606259822845459,-0.733144879341125,0.345489770174026,-0.592032432556152,-0.72810310125351,0.405248880386353,-0.51561051607132,-0.754929780960083,0.258817255496979,-0.514311671257019,-0.817616641521454,0.308135598897934,-0.606259822845459,-0.733144879341125,0.345489770174026,-0.592032432556152,-0.72810310125351,0.387371033430099,-0.61861515045166,-0.68356329202652,0.368264138698578,-0.567109405994415,-0.736728072166443,0.217093214392662,0.163153573870659,-0.962419509887695,-0.0524872317910194,0.205522656440735,-0.977243781089783,0.232146680355072,0.048180777579546,-0.971486687660217,0.65590500831604,-0.188016131520271,-0.731052935123444,0.232146680355072,0.048180777579546,-0.971486687660217,0.501246392726898,-0.204680383205414,-0.840748369693756,\r\n0.65590500831604,-0.188016131520271,-0.731052935123444,0.501246392726898,-0.204680383205414,-0.840748369693756,0.715359747409821,-0.448115944862366,-0.536145865917206,0.945410013198853,0.0189214702695608,-0.325333297252655,0.952552258968353,0.141694918274879,-0.269381940364838,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.918938398361206,0.144240841269493,-0.36707866191864,0.945410013198853,0.0189214702695608,-0.325333297252655,0.871302008628845,0.051984217017889,-0.487985998392105,0.966576933860779,0.186932191252708,-0.175457194447517,0.990147352218628,0.0777248293161392,-0.116477012634277,0.952552258968353,0.141694918274879,-0.269381940364838,0.886533319950104,-0.0742380917072296,-0.456669747829437,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.871302008628845,0.051984217017889,-0.487985998392105,0.807383060455322,-0.116387262940407,-0.578434586524963,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.766763687133789,0.0709763988852501,-0.637993454933167,0.764601349830627,-0.181833192706108,-0.618321359157562,0.745506882667542,0.00631246343255043,-0.666467905044556,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.843016505241394,-0.230770587921143,-0.48586830496788,0.807383060455322,-0.116387262940407,-0.578434586524963,0.764601349830627,-0.181833192706108,-0.618321359157562,0.717784821987152,-0.249816358089447,-0.649905145168304,0.663875222206116,-0.10013435781002,-0.741109073162079,0.565549612045288,-0.15399058163166,-0.810210049152374,0.663875222206116,-0.10013435781002,-0.741109073162079,0.647245824337006,-0.257303327322006,-0.717542767524719,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.427278518676758,-0.187987834215164,-0.884360551834106,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.375511199235916,-0.214194223284721,-0.901727259159088,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.146349027752876,0.143113002181053,-0.978825986385345,\r\n0.270029693841934,-0.0304348692297935,-0.962370812892914,0.201057642698288,0.0748896449804306,-0.9767125248909,0.201057642698288,0.0748896449804306,-0.9767125248909,0.105127446353436,0.0741541236639023,-0.991690099239349,0.0713405907154083,0.229746177792549,-0.970632314682007,0.536885440349579,-0.243665963411331,-0.807700872421265,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.565549612045288,-0.15399058163166,-0.810210049152374,-0.0903855040669441,0.0600784122943878,-0.994093060493469,-0.0524872317910194,0.205522656440735,-0.977243781089783,-0.0418163314461708,0.158656731247902,-0.986447870731354,-0.0418163314461708,0.158656731247902,-0.986447870731354,0.105127446353436,0.0741541236639023,-0.991690099239349,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.721905589103699,0.0816565454006195,0.687156736850739,0.585302233695984,0.208884343504906,0.783446550369263,0.635242342948914,0.0744057297706604,0.768720209598541,0.928299009799957,0.0815792456269264,0.362775087356567,0.971246361732483,0.0719986781477928,0.226928129792213,0.9161337018013,0.221801534295082,0.333920657634735,0.885141730308533,0.0265566892921925,0.46456304192543,0.934035003185272,-0.00426604505628347,0.357155978679657,0.874746382236481,0.124634958803654,0.468278586864471,0.928299009799957,0.0815792456269264,0.362775087356567,0.874746382236481,0.124634958803654,0.468278586864471,0.934035003185272,-0.00426604505628347,0.357155978679657,0.721905589103699,0.0816565454006195,0.687156736850739,0.795427083969116,-0.032590601593256,0.605172216892242,0.816955268383026,0.070244088768959,0.572406888008118,0.844694972038269,-0.0803760141134262,0.529178559780121,0.885141730308533,0.0265566892921925,0.46456304192543,0.816955268383026,0.070244088768959,0.572406888008118,0.982653260231018,0.163663983345032,0.0872155949473381,0.971246361732483,0.0719986781477928,0.226928129792213,0.991617679595947,0.0602521300315857,0.114297576248646,0.982653260231018,0.163663983345032,0.0872155949473381,0.998400866985321,0.053094319999218,0.0194070227444172,\r\n0.985050559043884,0.159180924296379,-0.0658538267016411,0.990147352218628,0.0777248293161392,-0.116477012634277,0.966576933860779,0.186932191252708,-0.175457194447517,0.985050559043884,0.159180924296379,-0.0658538267016411,0.192503228783607,-0.180916011333466,0.96447491645813,0.342073321342468,-0.248570680618286,0.906199991703033,0.228439480066299,-0.0878774225711823,0.969583868980408,0.228439480066299,-0.0878774225711823,0.969583868980408,0.406863778829575,-0.228568822145462,0.884430885314941,0.249122470617294,-0.0611523725092411,0.966539323329926,0.46495795249939,-0.0765464380383492,0.882017374038696,0.410979896783829,-0.146752506494522,0.899755001068115,0.528576493263245,-0.246018037199974,0.812454223632813,0.46495795249939,-0.0765464380383492,0.882017374038696,0.528576493263245,-0.246018037199974,0.812454223632813,0.543084681034088,-0.238042965531349,0.805229425430298,0.471483290195465,-0.104091204702854,0.875710248947144,0.543084681034088,-0.238042965531349,0.805229425430298,0.536099195480347,-0.263189733028412,0.80207771062851,0.406863778829575,-0.228568822145462,0.884430885314941,0.410979896783829,-0.146752506494522,0.899755001068115,0.249122470617294,-0.0611523725092411,0.966539323329926,0.471483290195465,-0.104091204702854,0.875710248947144,0.536099195480347,-0.263189733028412,0.80207771062851,0.525615215301514,-0.155961781740189,0.836304008960724,0.525615215301514,-0.155961781740189,0.836304008960724,0.514600872993469,-0.0630413144826889,0.855109095573425,0.424841791391373,-0.0593523569405079,0.903319656848907,0.582208216190338,0.0179835129529238,0.812840700149536,0.45429590344429,0.0566424243152142,0.889048278331757,0.514600872993469,-0.0630413144826889,0.855109095573425,0.582208216190338,0.0179835129529238,0.812840700149536,0.635242342948914,0.0744057297706604,0.768720209598541,0.504252254962921,0.173843219876289,0.845877051353455,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.572757661342621,-0.27531835436821,-0.772106409072876,\r\n-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.519632995128632,-0.251721739768982,-0.816466510295868,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.0943166241049767,-0.480934858322144,0.871668457984924,-0.0251289065927267,-0.575611531734467,0.817336916923523,0.10031683743,-0.635051667690277,0.765928030014038,-0.05472656711936,-0.513353526592255,0.856430470943451,-0.0251289065927267,-0.575611531734467,0.817336916923523,-0.088472455739975,-0.397358447313309,0.913388609886169,0.106906495988369,-0.579883098602295,0.807654917240143,-0.107557088136673,-0.367379128932953,0.923831105232239,0.00181443197652698,-0.536412239074707,0.843954145908356,0.00181443197652698,-0.536412239074707,0.843954145908356,-0.0943166241049767,-0.480934858322144,0.871668457984924,0.10031683743,-0.635051667690277,0.765928030014038,0.0537251606583595,-0.462187528610229,0.88515317440033,-0.107557088136673,-0.367379128932953,0.923831105232239,0.106906495988369,-0.579883098602295,0.807654917240143,0.0537251606583595,-0.462187528610229,0.88515317440033,0.216062158346176,-0.412168949842453,0.885117948055267,-0.0659535601735115,-0.236084416508675,0.969491720199585,-0.05472656711936,-0.513353526592255,0.856430470943451,0.0806417092680931,-0.468025386333466,0.880027830600739,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.313479363918304,-0.507105886936188,0.802853763103485,0.122733242809772,-0.528954744338989,0.839728057384491,0.329131513834,-0.483216881752014,0.811279058456421,0.313479363918304,-0.507105886936188,0.802853763103485,0.480375647544861,-0.513790965080261,0.710814952850342,0.323890835046768,-0.642942667007446,0.694060087203979,0.444243013858795,-0.749525666236877,0.490774154663086,0.450107723474503,-0.652853727340698,0.609249413013458,0.526469588279724,-0.59919285774231,0.603156268596649,0.450107723474503,-0.652853727340698,0.609249413013458,0.323890835046768,-0.642942667007446,0.694060087203979,\r\n0.480375647544861,-0.513790965080261,0.710814952850342,0.122733242809772,-0.528954744338989,0.839728057384491,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.0806417092680931,-0.468025386333466,0.880027830600739,0.675490915775299,-0.575444936752319,0.461058527231216,0.683378100395203,-0.628400087356567,0.371628284454346,0.613550961017609,-0.63726419210434,0.466314524412155,0.608703970909119,-0.572503626346588,0.549289405345917,0.613550961017609,-0.63726419210434,0.466314524412155,0.53700315952301,-0.683752179145813,0.494075298309326,0.444243013858795,-0.749525666236877,0.490774154663086,0.526469588279724,-0.59919285774231,0.603156268596649,0.53700315952301,-0.683752179145813,0.494075298309326,0.192503228783607,-0.180916011333466,0.96447491645813,0.196335032582283,-0.270916432142258,0.942367613315582,0.373691588640213,-0.398325502872467,0.837670147418976,0.196335032582283,-0.270916432142258,0.942367613315582,0.216062158346176,-0.412168949842453,0.885117948055267,0.352824985980988,-0.475119560956955,0.806086719036102,0.715359747409821,-0.448115944862366,-0.536145865917206,0.50108790397644,-0.320856213569641,-0.803717613220215,0.608795046806335,-0.472375422716141,-0.637361645698547,0.608795046806335,-0.472375422716141,-0.637361645698547,0.714557826519012,-0.542901217937469,-0.441208809614182,0.704381108283997,-0.528172612190247,-0.47421595454216,0.714557826519012,-0.542901217937469,-0.441208809614182,0.796044170856476,-0.514640212059021,-0.318526238203049,0.74986457824707,-0.515440404415131,-0.41475784778595,0.861006677150726,-0.362537324428558,-0.356698513031006,0.881447494029999,-0.262430757284164,-0.392657995223999,0.863585472106934,-0.405413925647736,-0.299765855073929,0.881447494029999,-0.262430757284164,-0.392657995223999,0.861006677150726,-0.362537324428558,-0.356698513031006,0.877370119094849,-0.206136137247086,-0.433277606964111,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.88873153924942,-0.097435288131237,-0.447953760623932,0.877370119094849,-0.206136137247086,-0.433277606964111,0.806807577610016,-0.550165295600891,-0.215359032154083,\r\n0.842212855815887,-0.459305852651596,-0.28233939409256,0.796044170856476,-0.514640212059021,-0.318526238203049,0.842212855815887,-0.459305852651596,-0.28233939409256,0.822499096393585,-0.517516911029816,-0.235947743058205,0.863585472106934,-0.405413925647736,-0.299765855073929,0.806996881961823,-0.174229457974434,-0.564269363880157,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.721363842487335,-0.202624693512917,-0.662251651287079,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.570565223693848,-0.23422047495842,-0.787144184112549,0.642770230770111,-0.0647293031215668,-0.763319313526154,0.452427715063095,-0.551249623298645,-0.701022684574127,0.498800933361053,-0.460049092769623,-0.73454225063324,0.400372922420502,-0.633146703243256,-0.66243988275528,0.528621315956116,-0.475803375244141,-0.702972590923309,0.498800933361053,-0.460049092769623,-0.73454225063324,0.570565223693848,-0.23422047495842,-0.787144184112549,0.387371033430099,-0.61861515045166,-0.68356329202652,0.452427715063095,-0.551249623298645,-0.701022684574127,0.372606337070465,-0.601373136043549,-0.706763505935669,0.405248880386353,-0.51561051607132,-0.754929780960083,0.412191420793533,-0.434599816799164,-0.800762832164764,0.258817255496979,-0.514311671257019,-0.817616641521454,0.438823968172073,-0.459088683128357,-0.772444784641266,0.349255561828613,-0.406838774681091,-0.844098687171936,0.412191420793533,-0.434599816799164,-0.800762832164764,0.349255561828613,-0.406838774681091,-0.844098687171936,0.247142925858498,-0.480599373579025,-0.841394364833832,0.317352145910263,-0.338530242443085,-0.8858243227005,0.368264138698578,-0.567109405994415,-0.736728072166443,0.442511141300201,-0.484659314155579,-0.754512488842011,0.308135598897934,-0.606259822845459,-0.733144879341125,0.405248880386353,-0.51561051607132,-0.754929780960083,0.308135598897934,-0.606259822845459,-0.733144879341125,\r\n0.442511141300201,-0.484659314155579,-0.754512488842011,0.372606337070465,-0.601373136043549,-0.706763505935669,0.368264138698578,-0.567109405994415,-0.736728072166443,0.387371033430099,-0.61861515045166,-0.68356329202652,0.00512781366705894,0.0543525703251362,-0.998508632183075,0.232146680355072,0.048180777579546,-0.971486687660217,-0.0524872317910194,0.205522656440735,-0.977243781089783,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.501246392726898,-0.204680383205414,-0.840748369693756,0.232146680355072,0.048180777579546,-0.971486687660217,0.501246392726898,-0.204680383205414,-0.840748369693756,0.50108790397644,-0.320856213569641,-0.803717613220215,0.715359747409821,-0.448115944862366,-0.536145865917206,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.952552258968353,0.141694918274879,-0.269381940364838,0.990147352218628,0.0777248293161392,-0.116477012634277,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.97320431470871,-0.121642075479031,-0.195131823420525,0.945410013198853,0.0189214702695608,-0.325333297252655,0.945410013198853,0.0189214702695608,-0.325333297252655,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.871302008628845,0.051984217017889,-0.487985998392105,0.886533319950104,-0.0742380917072296,-0.456669747829437,0.896539270877838,-0.195087492465973,-0.397691041231155,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.886533319950104,-0.0742380917072296,-0.456669747829437,0.871302008628845,0.051984217017889,-0.487985998392105,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.807383060455322,-0.116387262940407,-0.578434586524963,0.809250950813293,-0.234953805804253,-0.538432419300079,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.809250950813293,-0.234953805804253,-0.538432419300079,0.764601349830627,-0.181833192706108,-0.618321359157562,0.795843362808228,-0.0662463754415512,-0.60186755657196,0.843016505241394,-0.230770587921143,-0.48586830496788,0.820408523082733,-0.0599344372749329,-0.568627893924713,0.896539270877838,-0.195087492465973,-0.397691041231155,\r\n0.809250950813293,-0.234953805804253,-0.538432419300079,0.807383060455322,-0.116387262940407,-0.578434586524963,0.843016505241394,-0.230770587921143,-0.48586830496788,0.717784821987152,-0.249816358089447,-0.649905145168304,0.764601349830627,-0.181833192706108,-0.618321359157562,0.751893639564514,-0.312756925821304,-0.580378353595734,0.663875222206116,-0.10013435781002,-0.741109073162079,0.717784821987152,-0.249816358089447,-0.649905145168304,0.647245824337006,-0.257303327322006,-0.717542767524719,0.647245824337006,-0.257303327322006,-0.717542767524719,0.536885440349579,-0.243665963411331,-0.807700872421265,0.565549612045288,-0.15399058163166,-0.810210049152374,0.427278518676758,-0.187987834215164,-0.884360551834106,0.449091136455536,-0.0880545452237129,-0.889136373996735,0.536885440349579,-0.243665963411331,-0.807700872421265,0.427278518676758,-0.187987834215164,-0.884360551834106,0.375511199235916,-0.214194223284721,-0.901727259159088,0.336494088172913,-0.0728471651673317,-0.938863635063171,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.375511199235916,-0.214194223284721,-0.901727259159088,0.270713806152344,-0.132730573415756,-0.953465521335602,0.270029693841934,-0.0304348692297935,-0.962370812892914,0.270713806152344,-0.132730573415756,-0.953465521335602,0.201057642698288,0.0748896449804306,-0.9767125248909,0.201057642698288,0.0748896449804306,-0.9767125248909,0.270713806152344,-0.132730573415756,-0.953465521335602,0.105127446353436,0.0741541236639023,-0.991690099239349,-0.0903855040669441,0.0600784122943878,-0.994093060493469,0.00512781366705894,0.0543525703251362,-0.998508632183075,-0.0524872317910194,0.205522656440735,-0.977243781089783,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,-0.0903855040669441,0.0600784122943878,-0.994093060493469,-0.0418163314461708,0.158656731247902,-0.986447870731354,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.105127446353436,0.0741541236639023,-0.991690099239349,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.721905589103699,0.0816565454006195,0.687156736850739,\r\n0.635242342948914,0.0744057297706604,0.768720209598541,0.697375535964966,-0.0511133521795273,0.71488082408905,0.928299009799957,0.0815792456269264,0.362775087356567,0.964976489543915,-0.0343190468847752,0.260081768035889,0.971246361732483,0.0719986781477928,0.226928129792213,0.920877695083618,-0.0929848030209541,0.378599733114243,0.934035003185272,-0.00426604505628347,0.357155978679657,0.885141730308533,0.0265566892921925,0.46456304192543,0.934035003185272,-0.00426604505628347,0.357155978679657,0.964976489543915,-0.0343190468847752,0.260081768035889,0.928299009799957,0.0815792456269264,0.362775087356567,0.782945394515991,-0.121346026659012,0.610140562057495,0.795427083969116,-0.032590601593256,0.605172216892242,0.721905589103699,0.0816565454006195,0.687156736850739,0.844694972038269,-0.0803760141134262,0.529178559780121,0.816955268383026,0.070244088768959,0.572406888008118,0.795427083969116,-0.032590601593256,0.605172216892242,0.844694972038269,-0.0803760141134262,0.529178559780121,0.920877695083618,-0.0929848030209541,0.378599733114243,0.885141730308533,0.0265566892921925,0.46456304192543,0.991617679595947,0.0602521300315857,0.114297576248646,0.971246361732483,0.0719986781477928,0.226928129792213,0.990252137184143,-0.024143286049366,0.137177810072899,0.991617679595947,0.0602521300315857,0.114297576248646,0.998400866985321,0.053094319999218,0.0194070227444172,0.982653260231018,0.163663983345032,0.0872155949473381,0.985050559043884,0.159180924296379,-0.0658538267016411,0.998400866985321,0.053094319999218,0.0194070227444172,0.990147352218628,0.0777248293161392,-0.116477012634277,0.373691588640213,-0.398325502872467,0.837670147418976,0.342073321342468,-0.248570680618286,0.906199991703033,0.192503228783607,-0.180916011333466,0.96447491645813,0.435989797115326,-0.313039064407349,0.843753099441528,0.228439480066299,-0.0878774225711823,0.969583868980408,0.342073321342468,-0.248570680618286,0.906199991703033,0.228439480066299,-0.0878774225711823,0.969583868980408,0.435989797115326,-0.313039064407349,0.843753099441528,0.406863778829575,-0.228568822145462,0.884430885314941,\r\n0.406863778829575,-0.228568822145462,0.884430885314941,0.528576493263245,-0.246018037199974,0.812454223632813,0.410979896783829,-0.146752506494522,0.899755001068115,0.528576493263245,-0.246018037199974,0.812454223632813,0.589783608913422,-0.319070547819138,0.741855204105377,0.543084681034088,-0.238042965531349,0.805229425430298,0.543084681034088,-0.238042965531349,0.805229425430298,0.518578290939331,-0.348561465740204,0.780756950378418,0.536099195480347,-0.263189733028412,0.80207771062851,0.525615215301514,-0.155961781740189,0.836304008960724,0.536099195480347,-0.263189733028412,0.80207771062851,0.689706861972809,-0.18368424475193,0.700403034687042,0.525615215301514,-0.155961781740189,0.836304008960724,0.615598261356354,-0.0957904458045959,0.782216608524323,0.514600872993469,-0.0630413144826889,0.855109095573425,0.514600872993469,-0.0630413144826889,0.855109095573425,0.615598261356354,-0.0957904458045959,0.782216608524323,0.582208216190338,0.0179835129529238,0.812840700149536,0.697375535964966,-0.0511133521795273,0.71488082408905,0.635242342948914,0.0744057297706604,0.768720209598541,0.582208216190338,0.0179835129529238,0.812840700149536,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.551079213619232,-0.21517376601696,-0.806233048439026,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.572757661342621,-0.27531835436821,-0.772106409072876,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.519632995128632,-0.251721739768982,-0.816466510295868,0.158349707722664,-0.704156816005707,0.692162096500397,0.10031683743,-0.635051667690277,0.765928030014038,-0.0251289065927267,-0.575611531734467,0.817336916923523,-0.05472656711936,-0.513353526592255,0.856430470943451,0.0186328887939453,-0.626453936100006,0.779235601425171,-0.0251289065927267,-0.575611531734467,0.817336916923523,0.10031683743,-0.635051667690277,0.765928030014038,0.106906495988369,-0.579883098602295,0.807654917240143,\r\n0.00181443197652698,-0.536412239074707,0.843954145908356,0.0537251606583595,-0.462187528610229,0.88515317440033,0.106906495988369,-0.579883098602295,0.807654917240143,0.271342068910599,-0.605994284152985,0.747759461402893,0.216062158346176,-0.412168949842453,0.885117948055267,0.0537251606583595,-0.462187528610229,0.88515317440033,0.271342068910599,-0.605994284152985,0.747759461402893,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.0186328887939453,-0.626453936100006,0.779235601425171,-0.05472656711936,-0.513353526592255,0.856430470943451,0.313479363918304,-0.507105886936188,0.802853763103485,0.172895133495331,-0.598947823047638,0.781900644302368,0.122733242809772,-0.528954744338989,0.839728057384491,0.313479363918304,-0.507105886936188,0.802853763103485,0.323890835046768,-0.642942667007446,0.694060087203979,0.172895133495331,-0.598947823047638,0.781900644302368,0.444243013858795,-0.749525666236877,0.490774154663086,0.378359794616699,-0.750392556190491,0.541991412639618,0.450107723474503,-0.652853727340698,0.609249413013458,0.450107723474503,-0.652853727340698,0.609249413013458,0.378359794616699,-0.750392556190491,0.541991412639618,0.323890835046768,-0.642942667007446,0.694060087203979,0.122733242809772,-0.528954744338989,0.839728057384491,0.0646216496825218,-0.643776595592499,0.762479901313782,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.683378100395203,-0.628400087356567,0.371628284454346,0.583117246627808,-0.721384167671204,0.373602896928787,0.613550961017609,-0.63726419210434,0.466314524412155,0.583117246627808,-0.721384167671204,0.373602896928787,0.53700315952301,-0.683752179145813,0.494075298309326,0.613550961017609,-0.63726419210434,0.466314524412155,0.444243013858795,-0.749525666236877,0.490774154663086,0.53700315952301,-0.683752179145813,0.494075298309326,0.468713045120239,-0.793812811374664,0.387516677379608,0.352824985980988,-0.475119560956955,0.806086719036102,0.373691588640213,-0.398325502872467,0.837670147418976,0.196335032582283,-0.270916432142258,0.942367613315582,0.352824985980988,-0.475119560956955,0.806086719036102,\r\n0.216062158346176,-0.412168949842453,0.885117948055267,0.400345802307129,-0.605041801929474,0.688220500946045,0.318166732788086,-0.250744611024857,-0.914273977279663,0.608795046806335,-0.472375422716141,-0.637361645698547,0.50108790397644,-0.320856213569641,-0.803717613220215,0.608795046806335,-0.472375422716141,-0.637361645698547,0.610598683357239,-0.477953881025314,-0.631450057029724,0.714557826519012,-0.542901217937469,-0.441208809614182,0.729066550731659,-0.554203450679779,-0.401647001504898,0.796044170856476,-0.514640212059021,-0.318526238203049,0.714557826519012,-0.542901217937469,-0.441208809614182,0.861006677150726,-0.362537324428558,-0.356698513031006,0.863585472106934,-0.405413925647736,-0.299765855073929,0.822045743465424,-0.498806864023209,-0.274649769067764,0.877370119094849,-0.206136137247086,-0.433277606964111,0.861006677150726,-0.362537324428558,-0.356698513031006,0.779024839401245,-0.370465040206909,-0.505841672420502,0.83558189868927,-0.0303394868969917,-0.548527419567108,0.877370119094849,-0.206136137247086,-0.433277606964111,0.806996881961823,-0.174229457974434,-0.564269363880157,0.822499096393585,-0.517516911029816,-0.235947743058205,0.842212855815887,-0.459305852651596,-0.28233939409256,0.806807577610016,-0.550165295600891,-0.215359032154083,0.806807577610016,-0.550165295600891,-0.215359032154083,0.796044170856476,-0.514640212059021,-0.318526238203049,0.780349016189575,-0.57276839017868,-0.250981360673904,0.822045743465424,-0.498806864023209,-0.274649769067764,0.863585472106934,-0.405413925647736,-0.299765855073929,0.822499096393585,-0.517516911029816,-0.235947743058205,0.721363842487335,-0.202624693512917,-0.662251651287079,0.727574527263641,-0.0179539863020182,-0.685793578624725,0.806996881961823,-0.174229457974434,-0.564269363880157,0.721363842487335,-0.202624693512917,-0.662251651287079,0.64586079120636,-0.373824864625931,-0.665671527385712,0.63328629732132,-0.0659580454230309,-0.771101713180542,0.64586079120636,-0.373824864625931,-0.665671527385712,0.570565223693848,-0.23422047495842,-0.787144184112549,\r\n0.63328629732132,-0.0659580454230309,-0.771101713180542,0.400372922420502,-0.633146703243256,-0.66243988275528,0.498800933361053,-0.460049092769623,-0.73454225063324,0.463600665330887,-0.63689136505127,-0.615989983081818,0.400372922420502,-0.633146703243256,-0.66243988275528,0.372606337070465,-0.601373136043549,-0.706763505935669,0.452427715063095,-0.551249623298645,-0.701022684574127,0.498800933361053,-0.460049092769623,-0.73454225063324,0.528621315956116,-0.475803375244141,-0.702972590923309,0.463600665330887,-0.63689136505127,-0.615989983081818,0.64586079120636,-0.373824864625931,-0.665671527385712,0.528621315956116,-0.475803375244141,-0.702972590923309,0.570565223693848,-0.23422047495842,-0.787144184112549,0.405248880386353,-0.51561051607132,-0.754929780960083,0.455215454101563,-0.445732057094574,-0.7707799077034,0.412191420793533,-0.434599816799164,-0.800762832164764,0.349255561828613,-0.406838774681091,-0.844098687171936,0.438823968172073,-0.459088683128357,-0.772444784641266,0.346874326467514,-0.49073600769043,-0.799284815788269,0.455215454101563,-0.445732057094574,-0.7707799077034,0.438823968172073,-0.459088683128357,-0.772444784641266,0.412191420793533,-0.434599816799164,-0.800762832164764,0.247142925858498,-0.480599373579025,-0.841394364833832,0.349255561828613,-0.406838774681091,-0.844098687171936,0.245955139398575,-0.456696957349777,-0.854946732521057,0.368264138698578,-0.567109405994415,-0.736728072166443,0.489543944597244,-0.304223746061325,-0.817186951637268,0.442511141300201,-0.484659314155579,-0.754512488842011,0.442511141300201,-0.484659314155579,-0.754512488842011,0.455215454101563,-0.445732057094574,-0.7707799077034,0.405248880386353,-0.51561051607132,-0.754929780960083,0.372606337070465,-0.601373136043549,-0.706763505935669,0.487128257751465,-0.336421728134155,-0.805931985378265,0.368264138698578,-0.567109405994415,-0.736728072166443,0.00512781366705894,0.0543525703251362,-0.998508632183075,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.232146680355072,0.048180777579546,-0.971486687660217,\r\n0.501246392726898,-0.204680383205414,-0.840748369693756,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.50108790397644,-0.320856213569641,-0.803717613220215,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.990147352218628,0.0777248293161392,-0.116477012634277,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.981934309005737,-0.00382100674323738,-0.189183220267296,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.97320431470871,-0.121642075479031,-0.195131823420525,0.97320431470871,-0.121642075479031,-0.195131823420525,0.950856387615204,-0.131683111190796,-0.280234962701797,0.945410013198853,0.0189214702695608,-0.325333297252655,0.945410013198853,0.0189214702695608,-0.325333297252655,0.950856387615204,-0.131683111190796,-0.280234962701797,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.886533319950104,-0.0742380917072296,-0.456669747829437,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.896539270877838,-0.195087492465973,-0.397691041231155,0.764601349830627,-0.181833192706108,-0.618321359157562,0.809250950813293,-0.234953805804253,-0.538432419300079,0.751893639564514,-0.312756925821304,-0.580378353595734,0.843016505241394,-0.230770587921143,-0.48586830496788,0.896539270877838,-0.195087492465973,-0.397691041231155,0.876858949661255,-0.303517580032349,-0.372820883989334,0.809250950813293,-0.234953805804253,-0.538432419300079,0.843016505241394,-0.230770587921143,-0.48586830496788,0.834208846092224,-0.287951797246933,-0.470296949148178,0.717784821987152,-0.249816358089447,-0.649905145168304,0.751893639564514,-0.312756925821304,-0.580378353595734,0.674086630344391,-0.344464153051376,-0.653415262699127,0.717784821987152,-0.249816358089447,-0.649905145168304,0.674086630344391,-0.344464153051376,-0.653415262699127,0.647245824337006,-0.257303327322006,-0.717542767524719,0.647245824337006,-0.257303327322006,-0.717542767524719,0.606369853019714,-0.363714814186096,-0.707125842571259,0.536885440349579,-0.243665963411331,-0.807700872421265,0.427278518676758,-0.187987834215164,-0.884360551834106,\r\n0.536885440349579,-0.243665963411331,-0.807700872421265,0.460981547832489,-0.280907988548279,-0.841775834560394,0.375511199235916,-0.214194223284721,-0.901727259159088,0.427278518676758,-0.187987834215164,-0.884360551834106,0.460981547832489,-0.280907988548279,-0.841775834560394,0.270713806152344,-0.132730573415756,-0.953465521335602,0.375511199235916,-0.214194223284721,-0.901727259159088,0.33034211397171,-0.316352397203445,-0.889266610145569,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.105127446353436,0.0741541236639023,-0.991690099239349,0.270713806152344,-0.132730573415756,-0.953465521335602,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.00512781366705894,0.0543525703251362,-0.998508632183075,-0.0903855040669441,0.0600784122943878,-0.994093060493469,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,-0.0903855040669441,0.0600784122943878,-0.994093060493469,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.721905589103699,0.0816565454006195,0.687156736850739,0.697375535964966,-0.0511133521795273,0.71488082408905,0.782945394515991,-0.121346026659012,0.610140562057495,0.964976489543915,-0.0343190468847752,0.260081768035889,0.990252137184143,-0.024143286049366,0.137177810072899,0.971246361732483,0.0719986781477928,0.226928129792213,0.920877695083618,-0.0929848030209541,0.378599733114243,0.963828563690186,-0.0792771875858307,0.25445881485939,0.934035003185272,-0.00426604505628347,0.357155978679657,0.934035003185272,-0.00426604505628347,0.357155978679657,0.963828563690186,-0.0792771875858307,0.25445881485939,0.964976489543915,-0.0343190468847752,0.260081768035889,0.844694972038269,-0.0803760141134262,0.529178559780121,0.795427083969116,-0.032590601593256,0.605172216892242,0.782945394515991,-0.121346026659012,0.610140562057495,0.920877695083618,-0.0929848030209541,0.378599733114243,0.844694972038269,-0.0803760141134262,0.529178559780121,\r\n0.848965704441071,-0.167813152074814,0.50109475851059,0.991617679595947,0.0602521300315857,0.114297576248646,0.990252137184143,-0.024143286049366,0.137177810072899,0.998400866985321,0.053094319999218,0.0194070227444172,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.990147352218628,0.0777248293161392,-0.116477012634277,0.998400866985321,0.053094319999218,0.0194070227444172,0.435989797115326,-0.313039064407349,0.843753099441528,0.342073321342468,-0.248570680618286,0.906199991703033,0.373691588640213,-0.398325502872467,0.837670147418976,0.554500341415405,-0.363558441400528,0.748568296432495,0.406863778829575,-0.228568822145462,0.884430885314941,0.435989797115326,-0.313039064407349,0.843753099441528,0.406863778829575,-0.228568822145462,0.884430885314941,0.554500341415405,-0.363558441400528,0.748568296432495,0.528576493263245,-0.246018037199974,0.812454223632813,0.589783608913422,-0.319070547819138,0.741855204105377,0.528576493263245,-0.246018037199974,0.812454223632813,0.554500341415405,-0.363558441400528,0.748568296432495,0.589783608913422,-0.319070547819138,0.741855204105377,0.583804428577423,-0.346740365028381,0.734127521514893,0.543084681034088,-0.238042965531349,0.805229425430298,0.518578290939331,-0.348561465740204,0.780756950378418,0.543084681034088,-0.238042965531349,0.805229425430298,0.583804428577423,-0.346740365028381,0.734127521514893,0.536099195480347,-0.263189733028412,0.80207771062851,0.518578290939331,-0.348561465740204,0.780756950378418,0.559010684490204,-0.389998853206635,0.731715619564056,0.536099195480347,-0.263189733028412,0.80207771062851,0.682869911193848,-0.299759149551392,0.666207909584045,0.689706861972809,-0.18368424475193,0.700403034687042,0.525615215301514,-0.155961781740189,0.836304008960724,0.689706861972809,-0.18368424475193,0.700403034687042,0.615598261356354,-0.0957904458045959,0.782216608524323,0.697375535964966,-0.0511133521795273,0.71488082408905,0.582208216190338,0.0179835129529238,0.812840700149536,0.615598261356354,-0.0957904458045959,0.782216608524323,-0.579700529575348,-0.0822879374027252,-0.810663819313049,\r\n-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.593778491020203,-0.157552883028984,-0.789052546024323,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.606544196605682,-0.19389297068119,-0.771044492721558,-0.519632995128632,-0.251721739768982,-0.816466510295868,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.431080013513565,-0.115305848419666,-0.894915878772736,0.158349707722664,-0.704156816005707,0.692162096500397,0.286384165287018,-0.702962398529053,0.651020705699921,0.10031683743,-0.635051667690277,0.765928030014038,0.0186328887939453,-0.626453936100006,0.779235601425171,0.158349707722664,-0.704156816005707,0.692162096500397,-0.0251289065927267,-0.575611531734467,0.817336916923523,0.10031683743,-0.635051667690277,0.765928030014038,0.286384165287018,-0.702962398529053,0.651020705699921,0.106906495988369,-0.579883098602295,0.807654917240143,0.286384165287018,-0.702962398529053,0.651020705699921,0.271342068910599,-0.605994284152985,0.747759461402893,0.106906495988369,-0.579883098602295,0.807654917240143,0.216062158346176,-0.412168949842453,0.885117948055267,0.271342068910599,-0.605994284152985,0.747759461402893,0.400345802307129,-0.605041801929474,0.688220500946045,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.0706081315875053,-0.679350614547729,0.730408847332001,0.0186328887939453,-0.626453936100006,0.779235601425171,0.172895133495331,-0.598947823047638,0.781900644302368,0.0646216496825218,-0.643776595592499,0.762479901313782,0.122733242809772,-0.528954744338989,0.839728057384491,0.323890835046768,-0.642942667007446,0.694060087203979,0.164374172687531,-0.714577436447144,0.679970622062683,0.172895133495331,-0.598947823047638,0.781900644302368,0.378359794616699,-0.750392556190491,0.541991412639618,0.444243013858795,-0.749525666236877,0.490774154663086,\r\n0.367212951183319,-0.812583208084106,0.452618092298508,0.378359794616699,-0.750392556190491,0.541991412639618,0.254773855209351,-0.761090636253357,0.596515834331512,0.323890835046768,-0.642942667007446,0.694060087203979,0.0646216496825218,-0.643776595592499,0.762479901313782,0.0706081315875053,-0.679350614547729,0.730408847332001,-0.000636946177110076,-0.572741806507111,0.819735467433929,0.583117246627808,-0.721384167671204,0.373602896928787,0.683378100395203,-0.628400087356567,0.371628284454346,0.660230159759521,-0.685432732105255,0.307047158479691,0.53700315952301,-0.683752179145813,0.494075298309326,0.583117246627808,-0.721384167671204,0.373602896928787,0.468713045120239,-0.793812811374664,0.387516677379608,0.444243013858795,-0.749525666236877,0.490774154663086,0.468713045120239,-0.793812811374664,0.387516677379608,0.35479462146759,-0.851547241210938,0.385989516973495,0.352824985980988,-0.475119560956955,0.806086719036102,0.454722344875336,-0.558659732341766,0.693633079528809,0.373691588640213,-0.398325502872467,0.837670147418976,0.400345802307129,-0.605041801929474,0.688220500946045,0.454722344875336,-0.558659732341766,0.693633079528809,0.352824985980988,-0.475119560956955,0.806086719036102,0.330021530389786,-0.315435022115707,-0.889711380004883,0.608795046806335,-0.472375422716141,-0.637361645698547,0.318166732788086,-0.250744611024857,-0.914273977279663,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.318166732788086,-0.250744611024857,-0.914273977279663,0.50108790397644,-0.320856213569641,-0.803717613220215,0.608795046806335,-0.472375422716141,-0.637361645698547,0.330021530389786,-0.315435022115707,-0.889711380004883,0.610598683357239,-0.477953881025314,-0.631450057029724,0.729066550731659,-0.554203450679779,-0.401647001504898,0.714557826519012,-0.542901217937469,-0.441208809614182,0.610598683357239,-0.477953881025314,-0.631450057029724,0.729066550731659,-0.554203450679779,-0.401647001504898,0.780349016189575,-0.57276839017868,-0.250981360673904,0.796044170856476,-0.514640212059021,-0.318526238203049,\r\n0.822045743465424,-0.498806864023209,-0.274649769067764,0.761631667613983,-0.51776248216629,-0.389665305614471,0.861006677150726,-0.362537324428558,-0.356698513031006,0.761631667613983,-0.51776248216629,-0.389665305614471,0.779024839401245,-0.370465040206909,-0.505841672420502,0.861006677150726,-0.362537324428558,-0.356698513031006,0.877370119094849,-0.206136137247086,-0.433277606964111,0.779024839401245,-0.370465040206909,-0.505841672420502,0.806996881961823,-0.174229457974434,-0.564269363880157,0.822499096393585,-0.517516911029816,-0.235947743058205,0.806807577610016,-0.550165295600891,-0.215359032154083,0.764689028263092,-0.615058124065399,-0.192234426736832,0.731515288352966,-0.610370516777039,-0.303863555192947,0.806807577610016,-0.550165295600891,-0.215359032154083,0.780349016189575,-0.57276839017868,-0.250981360673904,0.822045743465424,-0.498806864023209,-0.274649769067764,0.822499096393585,-0.517516911029816,-0.235947743058205,0.746797800064087,-0.628939628601074,-0.216166436672211,0.721363842487335,-0.202624693512917,-0.662251651287079,0.806996881961823,-0.174229457974434,-0.564269363880157,0.779024839401245,-0.370465040206909,-0.505841672420502,0.64586079120636,-0.373824864625931,-0.665671527385712,0.721363842487335,-0.202624693512917,-0.662251651287079,0.779024839401245,-0.370465040206909,-0.505841672420502,0.400372922420502,-0.633146703243256,-0.66243988275528,0.463600665330887,-0.63689136505127,-0.615989983081818,0.44012239575386,-0.669864416122437,-0.597974598407745,0.509669423103333,-0.525903105735779,-0.680927872657776,0.372606337070465,-0.601373136043549,-0.706763505935669,0.400372922420502,-0.633146703243256,-0.66243988275528,0.584705889225006,-0.55376809835434,-0.592840492725372,0.463600665330887,-0.63689136505127,-0.615989983081818,0.528621315956116,-0.475803375244141,-0.702972590923309,0.64586079120636,-0.373824864625931,-0.665671527385712,0.584705889225006,-0.55376809835434,-0.592840492725372,0.528621315956116,-0.475803375244141,-0.702972590923309,0.346874326467514,-0.49073600769043,-0.799284815788269,\r\n0.438823968172073,-0.459088683128357,-0.772444784641266,0.455215454101563,-0.445732057094574,-0.7707799077034,0.349255561828613,-0.406838774681091,-0.844098687171936,0.346874326467514,-0.49073600769043,-0.799284815788269,0.245955139398575,-0.456696957349777,-0.854946732521057,0.245955139398575,-0.456696957349777,-0.854946732521057,0.152692213654518,-0.4775250852108,-0.865248382091522,0.247142925858498,-0.480599373579025,-0.841394364833832,0.487128257751465,-0.336421728134155,-0.805931985378265,0.489543944597244,-0.304223746061325,-0.817186951637268,0.368264138698578,-0.567109405994415,-0.736728072166443,0.481275618076324,-0.350980997085571,-0.803234696388245,0.442511141300201,-0.484659314155579,-0.754512488842011,0.489543944597244,-0.304223746061325,-0.817186951637268,0.442511141300201,-0.484659314155579,-0.754512488842011,0.481275618076324,-0.350980997085571,-0.803234696388245,0.455215454101563,-0.445732057094574,-0.7707799077034,0.487128257751465,-0.336421728134155,-0.805931985378265,0.372606337070465,-0.601373136043549,-0.706763505935669,0.520391523838043,-0.388269245624542,-0.760552167892456,0.00512781366705894,0.0543525703251362,-0.998508632183075,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.96679961681366,-0.227485403418541,-0.116399176418781,0.97320431470871,-0.121642075479031,-0.195131823420525,0.97320431470871,-0.121642075479031,-0.195131823420525,0.943682968616486,-0.238744854927063,-0.229048579931259,0.950856387615204,-0.131683111190796,-0.280234962701797,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.950856387615204,-0.131683111190796,-0.280234962701797,0.931890249252319,-0.229816362261772,-0.28065100312233,0.896539270877838,-0.195087492465973,-0.397691041231155,0.93011999130249,-0.0817679390311241,-0.358037263154984,0.931890249252319,-0.229816362261772,-0.28065100312233,0.751893639564514,-0.312756925821304,-0.580378353595734,0.809250950813293,-0.234953805804253,-0.538432419300079,\r\n0.798666656017303,-0.301918119192123,-0.52055436372757,0.876858949661255,-0.303517580032349,-0.372820883989334,0.896539270877838,-0.195087492465973,-0.397691041231155,0.913739204406738,-0.291178584098816,-0.283364653587341,0.874051034450531,-0.303217560052872,-0.379596769809723,0.843016505241394,-0.230770587921143,-0.48586830496788,0.876858949661255,-0.303517580032349,-0.372820883989334,0.843016505241394,-0.230770587921143,-0.48586830496788,0.874051034450531,-0.303217560052872,-0.379596769809723,0.834208846092224,-0.287951797246933,-0.470296949148178,0.798666656017303,-0.301918119192123,-0.52055436372757,0.809250950813293,-0.234953805804253,-0.538432419300079,0.834208846092224,-0.287951797246933,-0.470296949148178,0.751893639564514,-0.312756925821304,-0.580378353595734,0.667893409729004,-0.419035285711288,-0.615083456039429,0.674086630344391,-0.344464153051376,-0.653415262699127,0.674086630344391,-0.344464153051376,-0.653415262699127,0.606369853019714,-0.363714814186096,-0.707125842571259,0.647245824337006,-0.257303327322006,-0.717542767524719,0.544928431510925,-0.34971621632576,-0.76207047700882,0.536885440349579,-0.243665963411331,-0.807700872421265,0.606369853019714,-0.363714814186096,-0.707125842571259,0.544928431510925,-0.34971621632576,-0.76207047700882,0.460981547832489,-0.280907988548279,-0.841775834560394,0.536885440349579,-0.243665963411331,-0.807700872421265,0.460981547832489,-0.280907988548279,-0.841775834560394,0.42691895365715,-0.329320669174194,-0.842192351818085,0.375511199235916,-0.214194223284721,-0.901727259159088,0.42691895365715,-0.329320669174194,-0.842192351818085,0.33034211397171,-0.316352397203445,-0.889266610145569,0.375511199235916,-0.214194223284721,-0.901727259159088,0.33034211397171,-0.316352397203445,-0.889266610145569,0.188210263848305,-0.284498989582062,-0.940019726753235,0.270713806152344,-0.132730573415756,-0.953465521335602,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.270713806152344,-0.132730573415756,-0.953465521335602,0.188210263848305,-0.284498989582062,-0.940019726753235,\r\n-0.00104737328365445,-0.0815749391913414,-0.996666610240936,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.103847965598106,-0.255653470754623,-0.961174666881561,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.108445569872856,-0.0887814238667488,-0.990129947662354,0.188210263848305,-0.284498989582062,-0.940019726753235,0.0860974714159966,-0.302944272756577,-0.949110984802246,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.689706861972809,-0.18368424475193,0.700403034687042,0.782945394515991,-0.121346026659012,0.610140562057495,0.697375535964966,-0.0511133521795273,0.71488082408905,0.964976489543915,-0.0343190468847752,0.260081768035889,0.981819272041321,-0.106462195515633,0.157151728868485,0.990252137184143,-0.024143286049366,0.137177810072899,0.920877695083618,-0.0929848030209541,0.378599733114243,0.964768528938293,-0.138978868722916,0.223397672176361,0.963828563690186,-0.0792771875858307,0.25445881485939,0.964976489543915,-0.0343190468847752,0.260081768035889,0.963828563690186,-0.0792771875858307,0.25445881485939,0.981819272041321,-0.106462195515633,0.157151728868485,0.782945394515991,-0.121346026659012,0.610140562057495,0.800880789756775,-0.153710409998894,0.578759789466858,0.844694972038269,-0.0803760141134262,0.529178559780121,0.848965704441071,-0.167813152074814,0.50109475851059,0.844694972038269,-0.0803760141134262,0.529178559780121,0.800880789756775,-0.153710409998894,0.578759789466858,0.848965704441071,-0.167813152074814,0.50109475851059,0.922201931476593,-0.212290525436401,0.323227822780609,0.920877695083618,-0.0929848030209541,0.378599733114243,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.998400866985321,0.053094319999218,0.0194070227444172,0.990252137184143,-0.024143286049366,0.137177810072899,0.532795488834381,-0.488821715116501,0.690783739089966,0.435989797115326,-0.313039064407349,0.843753099441528,0.373691588640213,-0.398325502872467,0.837670147418976,0.532795488834381,-0.488821715116501,0.690783739089966,\r\n0.554500341415405,-0.363558441400528,0.748568296432495,0.435989797115326,-0.313039064407349,0.843753099441528,0.589783608913422,-0.319070547819138,0.741855204105377,0.554500341415405,-0.363558441400528,0.748568296432495,0.583804428577423,-0.346740365028381,0.734127521514893,0.518578290939331,-0.348561465740204,0.780756950378418,0.583804428577423,-0.346740365028381,0.734127521514893,0.570891082286835,-0.430035650730133,0.699394404888153,0.570891082286835,-0.430035650730133,0.699394404888153,0.559010684490204,-0.389998853206635,0.731715619564056,0.518578290939331,-0.348561465740204,0.780756950378418,0.536099195480347,-0.263189733028412,0.80207771062851,0.559010684490204,-0.389998853206635,0.731715619564056,0.682869911193848,-0.299759149551392,0.666207909584045,0.682869911193848,-0.299759149551392,0.666207909584045,0.782735407352448,-0.206706881523132,0.5870241522789,0.689706861972809,-0.18368424475193,0.700403034687042,0.697375535964966,-0.0511133521795273,0.71488082408905,0.615598261356354,-0.0957904458045959,0.782216608524323,0.689706861972809,-0.18368424475193,0.700403034687042,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.431080013513565,-0.115305848419666,-0.894915878772736,-0.602423131465912,-0.143957927823067,-0.785087466239929,0.158349707722664,-0.704156816005707,0.692162096500397,0.295014828443527,-0.776420593261719,0.556899547576904,0.286384165287018,-0.702962398529053,0.651020705699921,0.158349707722664,-0.704156816005707,0.692162096500397,0.0186328887939453,-0.626453936100006,0.779235601425171,0.0706081315875053,-0.679350614547729,0.730408847332001,0.286384165287018,-0.702962398529053,0.651020705699921,0.392176628112793,-0.702164947986603,0.59427410364151,0.271342068910599,-0.605994284152985,0.747759461402893,0.271342068910599,-0.605994284152985,0.747759461402893,0.392176628112793,-0.702164947986603,0.59427410364151,0.400345802307129,-0.605041801929474,0.688220500946045,\r\n0.164374172687531,-0.714577436447144,0.679970622062683,0.0646216496825218,-0.643776595592499,0.762479901313782,0.172895133495331,-0.598947823047638,0.781900644302368,0.323890835046768,-0.642942667007446,0.694060087203979,0.254773855209351,-0.761090636253357,0.596515834331512,0.164374172687531,-0.714577436447144,0.679970622062683,0.35479462146759,-0.851547241210938,0.385989516973495,0.367212951183319,-0.812583208084106,0.452618092298508,0.444243013858795,-0.749525666236877,0.490774154663086,0.367212951183319,-0.812583208084106,0.452618092298508,0.315166562795639,-0.808818161487579,0.496470600366592,0.378359794616699,-0.750392556190491,0.541991412639618,0.254773855209351,-0.761090636253357,0.596515834331512,0.378359794616699,-0.750392556190491,0.541991412639618,0.315166562795639,-0.808818161487579,0.496470600366592,0.167589083313942,-0.758219361305237,0.630092918872833,0.0706081315875053,-0.679350614547729,0.730408847332001,0.0646216496825218,-0.643776595592499,0.762479901313782,0.532795488834381,-0.488821715116501,0.690783739089966,0.373691588640213,-0.398325502872467,0.837670147418976,0.454722344875336,-0.558659732341766,0.693633079528809,0.400345802307129,-0.605041801929474,0.688220500946045,0.456931859254837,-0.67681360244751,0.577179729938507,0.454722344875336,-0.558659732341766,0.693633079528809,0.330021530389786,-0.315435022115707,-0.889711380004883,0.318166732788086,-0.250744611024857,-0.914273977279663,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.0838550254702568,-0.102339565753937,-0.991208672523499,0.318166732788086,-0.250744611024857,-0.914273977279663,0.196924954652786,-0.0667613074183464,-0.978142857551575,0.330021530389786,-0.315435022115707,-0.889711380004883,0.444557249546051,-0.362431317567825,-0.819153368473053,0.610598683357239,-0.477953881025314,-0.631450057029724,0.729066550731659,-0.554203450679779,-0.401647001504898,0.610598683357239,-0.477953881025314,-0.631450057029724,0.603381931781769,-0.503465950489044,-0.618427097797394,0.731515288352966,-0.610370516777039,-0.303863555192947,\r\n0.780349016189575,-0.57276839017868,-0.250981360673904,0.729066550731659,-0.554203450679779,-0.401647001504898,0.822045743465424,-0.498806864023209,-0.274649769067764,0.68778795003891,-0.6616450548172,-0.29861918091774,0.761631667613983,-0.51776248216629,-0.389665305614471,0.761631667613983,-0.51776248216629,-0.389665305614471,0.67774099111557,-0.537852644920349,-0.501379549503326,0.779024839401245,-0.370465040206909,-0.505841672420502,0.731515288352966,-0.610370516777039,-0.303863555192947,0.764689028263092,-0.615058124065399,-0.192234426736832,0.806807577610016,-0.550165295600891,-0.215359032154083,0.764689028263092,-0.615058124065399,-0.192234426736832,0.746797800064087,-0.628939628601074,-0.216166436672211,0.822499096393585,-0.517516911029816,-0.235947743058205,0.68778795003891,-0.6616450548172,-0.29861918091774,0.822045743465424,-0.498806864023209,-0.274649769067764,0.746797800064087,-0.628939628601074,-0.216166436672211,0.64586079120636,-0.373824864625931,-0.665671527385712,0.779024839401245,-0.370465040206909,-0.505841672420502,0.67774099111557,-0.537852644920349,-0.501379549503326,0.526396095752716,-0.665083587169647,-0.529689311981201,0.44012239575386,-0.669864416122437,-0.597974598407745,0.463600665330887,-0.63689136505127,-0.615989983081818,0.44012239575386,-0.669864416122437,-0.597974598407745,0.492049843072891,-0.613139867782593,-0.6180180311203,0.400372922420502,-0.633146703243256,-0.66243988275528,0.509669423103333,-0.525903105735779,-0.680927872657776,0.520391523838043,-0.388269245624542,-0.760552167892456,0.372606337070465,-0.601373136043549,-0.706763505935669,0.509669423103333,-0.525903105735779,-0.680927872657776,0.400372922420502,-0.633146703243256,-0.66243988275528,0.492049843072891,-0.613139867782593,-0.6180180311203,0.552311420440674,-0.672141671180725,-0.493130147457123,0.463600665330887,-0.63689136505127,-0.615989983081818,0.584705889225006,-0.55376809835434,-0.592840492725372,0.584705889225006,-0.55376809835434,-0.592840492725372,0.64586079120636,-0.373824864625931,-0.665671527385712,0.67774099111557,-0.537852644920349,-0.501379549503326,\r\n0.271816283464432,-0.327851980924606,-0.904781103134155,0.346874326467514,-0.49073600769043,-0.799284815788269,0.455215454101563,-0.445732057094574,-0.7707799077034,0.271816283464432,-0.327851980924606,-0.904781103134155,0.245955139398575,-0.456696957349777,-0.854946732521057,0.346874326467514,-0.49073600769043,-0.799284815788269,0.245955139398575,-0.456696957349777,-0.854946732521057,0.145978778600693,-0.310242980718613,-0.939382433891296,0.152692213654518,-0.4775250852108,-0.865248382091522,0.487128257751465,-0.336421728134155,-0.805931985378265,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.489543944597244,-0.304223746061325,-0.817186951637268,0.481275618076324,-0.350980997085571,-0.803234696388245,0.489543944597244,-0.304223746061325,-0.817186951637268,0.430418729782104,-0.19074285030365,-0.882245302200317,0.387279093265533,-0.291512668132782,-0.87466287612915,0.455215454101563,-0.445732057094574,-0.7707799077034,0.481275618076324,-0.350980997085571,-0.803234696388245,0.487128257751465,-0.336421728134155,-0.805931985378265,0.520391523838043,-0.388269245624542,-0.760552167892456,0.607297956943512,-0.11163467913866,-0.786591827869415,0.0838550254702568,-0.102339565753937,-0.991208672523499,0.196924954652786,-0.0667613074183464,-0.978142857551575,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.978429555892944,-0.203124448657036,0.0376294516026974,0.96679961681366,-0.227485403418541,-0.116399176418781,0.943682968616486,-0.238744854927063,-0.229048579931259,0.97320431470871,-0.121642075479031,-0.195131823420525,0.96679961681366,-0.227485403418541,-0.116399176418781,0.931890249252319,-0.229816362261772,-0.28065100312233,0.950856387615204,-0.131683111190796,-0.280234962701797,0.943682968616486,-0.238744854927063,-0.229048579931259,0.896539270877838,-0.195087492465973,-0.397691041231155,0.931890249252319,-0.229816362261772,-0.28065100312233,0.913739204406738,-0.291178584098816,-0.283364653587341,0.745114147663116,-0.392676264047623,-0.539082646369934,\r\n0.751893639564514,-0.312756925821304,-0.580378353595734,0.798666656017303,-0.301918119192123,-0.52055436372757,0.876858949661255,-0.303517580032349,-0.372820883989334,0.913739204406738,-0.291178584098816,-0.283364653587341,0.909788370132446,-0.329163044691086,-0.252856612205505,0.874051034450531,-0.303217560052872,-0.379596769809723,0.876858949661255,-0.303517580032349,-0.372820883989334,0.909788370132446,-0.329163044691086,-0.252856612205505,0.874051034450531,-0.303217560052872,-0.379596769809723,0.853956937789917,-0.372074782848358,-0.363755106925964,0.834208846092224,-0.287951797246933,-0.470296949148178,0.804768800735474,-0.367822736501694,-0.465889990329742,0.798666656017303,-0.301918119192123,-0.52055436372757,0.834208846092224,-0.287951797246933,-0.470296949148178,0.745114147663116,-0.392676264047623,-0.539082646369934,0.667893409729004,-0.419035285711288,-0.615083456039429,0.751893639564514,-0.312756925821304,-0.580378353595734,0.667893409729004,-0.419035285711288,-0.615083456039429,0.606369853019714,-0.363714814186096,-0.707125842571259,0.674086630344391,-0.344464153051376,-0.653415262699127,0.596915066242218,-0.478820025920868,-0.643757402896881,0.544928431510925,-0.34971621632576,-0.76207047700882,0.606369853019714,-0.363714814186096,-0.707125842571259,0.522193491458893,-0.414826840162277,-0.745139241218567,0.460981547832489,-0.280907988548279,-0.841775834560394,0.544928431510925,-0.34971621632576,-0.76207047700882,0.42691895365715,-0.329320669174194,-0.842192351818085,0.460981547832489,-0.280907988548279,-0.841775834560394,0.522193491458893,-0.414826840162277,-0.745139241218567,0.359783113002777,-0.453989893198013,-0.815137505531311,0.33034211397171,-0.316352397203445,-0.889266610145569,0.42691895365715,-0.329320669174194,-0.842192351818085,0.188210263848305,-0.284498989582062,-0.940019726753235,0.33034211397171,-0.316352397203445,-0.889266610145569,0.208737909793854,-0.427034497261047,-0.87981241941452,0.103847965598106,-0.255653470754623,-0.961174666881561,-0.0137244081124663,-0.0753426849842072,-0.997063219547272,\r\n0.0860974714159966,-0.302944272756577,-0.949110984802246,0.103847965598106,-0.255653470754623,-0.961174666881561,0.0308478400111198,-0.160730704665184,-0.986516058444977,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.188210263848305,-0.284498989582062,-0.940019726753235,0.208737909793854,-0.427034497261047,-0.87981241941452,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.162542730569839,-0.414484977722168,-0.89542281627655,0.0860974714159966,-0.302944272756577,-0.949110984802246,0.782735407352448,-0.206706881523132,0.5870241522789,0.782945394515991,-0.121346026659012,0.610140562057495,0.689706861972809,-0.18368424475193,0.700403034687042,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.990252137184143,-0.024143286049366,0.137177810072899,0.981819272041321,-0.106462195515633,0.157151728868485,0.920877695083618,-0.0929848030209541,0.378599733114243,0.922201931476593,-0.212290525436401,0.323227822780609,0.964768528938293,-0.138978868722916,0.223397672176361,0.964768528938293,-0.138978868722916,0.223397672176361,0.975674629211426,-0.17233407497406,0.135498821735382,0.963828563690186,-0.0792771875858307,0.25445881485939,0.975674629211426,-0.17233407497406,0.135498821735382,0.981819272041321,-0.106462195515633,0.157151728868485,0.963828563690186,-0.0792771875858307,0.25445881485939,0.791614234447479,-0.185980200767517,0.582029283046722,0.800880789756775,-0.153710409998894,0.578759789466858,0.782945394515991,-0.121346026659012,0.610140562057495,0.800880789756775,-0.153710409998894,0.578759789466858,0.796840906143188,-0.196424946188927,0.571368217468262,0.848965704441071,-0.167813152074814,0.50109475851059,0.835454940795898,-0.270389169454575,0.478439778089523,0.922201931476593,-0.212290525436401,0.323227822780609,0.848965704441071,-0.167813152074814,0.50109475851059,0.570891082286835,-0.430035650730133,0.699394404888153,0.554500341415405,-0.363558441400528,0.748568296432495,0.532795488834381,-0.488821715116501,0.690783739089966,\r\n0.570891082286835,-0.430035650730133,0.699394404888153,0.583804428577423,-0.346740365028381,0.734127521514893,0.554500341415405,-0.363558441400528,0.748568296432495,0.570891082286835,-0.430035650730133,0.699394404888153,0.580141603946686,-0.482462227344513,0.656251311302185,0.559010684490204,-0.389998853206635,0.731715619564056,0.659471035003662,-0.415870577096939,0.626218378543854,0.682869911193848,-0.299759149551392,0.666207909584045,0.559010684490204,-0.389998853206635,0.731715619564056,0.782735407352448,-0.206706881523132,0.5870241522789,0.682869911193848,-0.299759149551392,0.666207909584045,0.771929562091827,-0.270482540130615,0.575294494628906,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.602423131465912,-0.143957927823067,-0.785087466239929,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.431080013513565,-0.115305848419666,-0.894915878772736,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.103350751101971,0.169804632663727,-0.980043292045593,0.167589083313942,-0.758219361305237,0.630092918872833,0.295014828443527,-0.776420593261719,0.556899547576904,0.158349707722664,-0.704156816005707,0.692162096500397,0.404292851686478,-0.745663642883301,0.529653489589691,0.286384165287018,-0.702962398529053,0.651020705699921,0.295014828443527,-0.776420593261719,0.556899547576904,0.158349707722664,-0.704156816005707,0.692162096500397,0.0706081315875053,-0.679350614547729,0.730408847332001,0.167589083313942,-0.758219361305237,0.630092918872833,0.392176628112793,-0.702164947986603,0.59427410364151,0.286384165287018,-0.702962398529053,0.651020705699921,0.404292851686478,-0.745663642883301,0.529653489589691,0.392176628112793,-0.702164947986603,0.59427410364151,0.456931859254837,-0.67681360244751,0.577179729938507,0.400345802307129,-0.605041801929474,0.688220500946045,0.164374172687531,-0.714577436447144,0.679970622062683,0.167589083313942,-0.758219361305237,0.630092918872833,0.0646216496825218,-0.643776595592499,0.762479901313782,0.193208277225494,-0.783515870571136,0.590570330619812,0.164374172687531,-0.714577436447144,0.679970622062683,\r\n0.254773855209351,-0.761090636253357,0.596515834331512,0.367212951183319,-0.812583208084106,0.452618092298508,0.35479462146759,-0.851547241210938,0.385989516973495,0.303707242012024,-0.8537757396698,0.422881543636322,0.367212951183319,-0.812583208084106,0.452618092298508,0.303707242012024,-0.8537757396698,0.422881543636322,0.315166562795639,-0.808818161487579,0.496470600366592,0.241858214139938,-0.837083041667938,0.490710139274597,0.254773855209351,-0.761090636253357,0.596515834331512,0.315166562795639,-0.808818161487579,0.496470600366592,0.454722344875336,-0.558659732341766,0.693633079528809,0.505722045898438,-0.599276721477509,0.620574295520782,0.532795488834381,-0.488821715116501,0.690783739089966,0.454722344875336,-0.558659732341766,0.693633079528809,0.456931859254837,-0.67681360244751,0.577179729938507,0.505722045898438,-0.599276721477509,0.620574295520782,0.0838550254702568,-0.102339565753937,-0.991208672523499,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.318166732788086,-0.250744611024857,-0.914273977279663,0.330021530389786,-0.315435022115707,-0.889711380004883,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.444557249546051,-0.362431317567825,-0.819153368473053,0.330021530389786,-0.315435022115707,-0.889711380004883,0.220681175589561,-0.279628455638886,-0.934402287006378,0.603381931781769,-0.503465950489044,-0.618427097797394,0.610598683357239,-0.477953881025314,-0.631450057029724,0.444557249546051,-0.362431317567825,-0.819153368473053,0.729066550731659,-0.554203450679779,-0.401647001504898,0.603381931781769,-0.503465950489044,-0.618427097797394,0.731515288352966,-0.610370516777039,-0.303863555192947,0.623779773712158,-0.675291478633881,-0.393548011779785,0.761631667613983,-0.51776248216629,-0.389665305614471,0.68778795003891,-0.6616450548172,-0.29861918091774,0.761631667613983,-0.51776248216629,-0.389665305614471,0.623779773712158,-0.675291478633881,-0.393548011779785,0.67774099111557,-0.537852644920349,-0.501379549503326,0.691637456417084,-0.698186278343201,-0.184860527515411,\r\n0.764689028263092,-0.615058124065399,-0.192234426736832,0.731515288352966,-0.610370516777039,-0.303863555192947,0.764689028263092,-0.615058124065399,-0.192234426736832,0.653153777122498,-0.72777533531189,-0.209124520421028,0.746797800064087,-0.628939628601074,-0.216166436672211,0.604139387607574,-0.7543985247612,-0.256706595420837,0.68778795003891,-0.6616450548172,-0.29861918091774,0.746797800064087,-0.628939628601074,-0.216166436672211,0.639328300952911,-0.540497124195099,-0.546920597553253,0.44012239575386,-0.669864416122437,-0.597974598407745,0.526396095752716,-0.665083587169647,-0.529689311981201,0.552311420440674,-0.672141671180725,-0.493130147457123,0.526396095752716,-0.665083587169647,-0.529689311981201,0.463600665330887,-0.63689136505127,-0.615989983081818,0.44012239575386,-0.669864416122437,-0.597974598407745,0.639328300952911,-0.540497124195099,-0.546920597553253,0.492049843072891,-0.613139867782593,-0.6180180311203,0.509669423103333,-0.525903105735779,-0.680927872657776,0.730636835098267,-0.202308744192123,-0.652104914188385,0.520391523838043,-0.388269245624542,-0.760552167892456,0.736971020698547,-0.387532562017441,-0.553797960281372,0.509669423103333,-0.525903105735779,-0.680927872657776,0.492049843072891,-0.613139867782593,-0.6180180311203,0.584705889225006,-0.55376809835434,-0.592840492725372,0.67774099111557,-0.537852644920349,-0.501379549503326,0.552311420440674,-0.672141671180725,-0.493130147457123,0.271816283464432,-0.327851980924606,-0.904781103134155,0.455215454101563,-0.445732057094574,-0.7707799077034,0.387279093265533,-0.291512668132782,-0.87466287612915,0.271816283464432,-0.327851980924606,-0.904781103134155,0.145978778600693,-0.310242980718613,-0.939382433891296,0.245955139398575,-0.456696957349777,-0.854946732521057,0.487128257751465,-0.336421728134155,-0.805931985378265,0.607297956943512,-0.11163467913866,-0.786591827869415,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.430418729782104,-0.19074285030365,-0.882245302200317,\r\n0.489543944597244,-0.304223746061325,-0.817186951637268,0.430418729782104,-0.19074285030365,-0.882245302200317,0.387279093265533,-0.291512668132782,-0.87466287612915,0.481275618076324,-0.350980997085571,-0.803234696388245,0.607297956943512,-0.11163467913866,-0.786591827869415,0.520391523838043,-0.388269245624542,-0.760552167892456,0.730636835098267,-0.202308744192123,-0.652104914188385,0.0838550254702568,-0.102339565753937,-0.991208672523499,-0.00104737328365445,-0.0815749391913414,-0.996666610240936,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.981819272041321,-0.106462195515633,0.157151728868485,0.978429555892944,-0.203124448657036,0.0376294516026974,0.996931552886963,-0.0776026472449303,-0.0102608259767294,0.978429555892944,-0.203124448657036,0.0376294516026974,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.96679961681366,-0.227485403418541,-0.116399176418781,0.943682968616486,-0.238744854927063,-0.229048579931259,0.96679961681366,-0.227485403418541,-0.116399176418781,0.930170238018036,-0.311860710382462,-0.193716377019882,0.930170238018036,-0.311860710382462,-0.193716377019882,0.931890249252319,-0.229816362261772,-0.28065100312233,0.943682968616486,-0.238744854927063,-0.229048579931259,0.931890249252319,-0.229816362261772,-0.28065100312233,0.930170238018036,-0.311860710382462,-0.193716377019882,0.913739204406738,-0.291178584098816,-0.283364653587341,0.804768800735474,-0.367822736501694,-0.465889990329742,0.745114147663116,-0.392676264047623,-0.539082646369934,0.798666656017303,-0.301918119192123,-0.52055436372757,0.909788370132446,-0.329163044691086,-0.252856612205505,0.913739204406738,-0.291178584098816,-0.283364653587341,0.930170238018036,-0.311860710382462,-0.193716377019882,0.909788370132446,-0.329163044691086,-0.252856612205505,0.892597615718842,-0.363973349332809,-0.266069054603577,0.874051034450531,-0.303217560052872,-0.379596769809723,0.874051034450531,-0.303217560052872,-0.379596769809723,0.892597615718842,-0.363973349332809,-0.266069054603577,0.853956937789917,-0.372074782848358,-0.363755106925964,\r\n0.834208846092224,-0.287951797246933,-0.470296949148178,0.853956937789917,-0.372074782848358,-0.363755106925964,0.804768800735474,-0.367822736501694,-0.465889990329742,0.745114147663116,-0.392676264047623,-0.539082646369934,0.674787998199463,-0.508593559265137,-0.534783661365509,0.667893409729004,-0.419035285711288,-0.615083456039429,0.606369853019714,-0.363714814186096,-0.707125842571259,0.667893409729004,-0.419035285711288,-0.615083456039429,0.596915066242218,-0.478820025920868,-0.643757402896881,0.522193491458893,-0.414826840162277,-0.745139241218567,0.544928431510925,-0.34971621632576,-0.76207047700882,0.596915066242218,-0.478820025920868,-0.643757402896881,0.479820877313614,-0.502831399440765,-0.718980073928833,0.42691895365715,-0.329320669174194,-0.842192351818085,0.522193491458893,-0.414826840162277,-0.745139241218567,0.359783113002777,-0.453989893198013,-0.815137505531311,0.208737909793854,-0.427034497261047,-0.87981241941452,0.33034211397171,-0.316352397203445,-0.889266610145569,0.479820877313614,-0.502831399440765,-0.718980073928833,0.359783113002777,-0.453989893198013,-0.815137505531311,0.42691895365715,-0.329320669174194,-0.842192351818085,0.199501812458038,-0.407474100589752,-0.891158699989319,0.103847965598106,-0.255653470754623,-0.961174666881561,0.0860974714159966,-0.302944272756577,-0.949110984802246,0.103847965598106,-0.255653470754623,-0.961174666881561,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.162542730569839,-0.414484977722168,-0.89542281627655,0.0686205923557281,-0.276107758283615,-0.958673894405365,0.208737909793854,-0.427034497261047,-0.87981241941452,0.0860974714159966,-0.302944272756577,-0.949110984802246,0.162542730569839,-0.414484977722168,-0.89542281627655,0.199501812458038,-0.407474100589752,-0.891158699989319,0.791614234447479,-0.185980200767517,0.582029283046722,0.782945394515991,-0.121346026659012,0.610140562057495,0.782735407352448,-0.206706881523132,0.5870241522789,0.922201931476593,-0.212290525436401,0.323227822780609,\r\n0.953539431095123,-0.235065281391144,0.188432320952415,0.964768528938293,-0.138978868722916,0.223397672176361,0.964768528938293,-0.138978868722916,0.223397672176361,0.965255260467529,-0.232284337282181,0.119691982865334,0.975674629211426,-0.17233407497406,0.135498821735382,0.981819272041321,-0.106462195515633,0.157151728868485,0.975674629211426,-0.17233407497406,0.135498821735382,0.978429555892944,-0.203124448657036,0.0376294516026974,0.800880789756775,-0.153710409998894,0.578759789466858,0.791614234447479,-0.185980200767517,0.582029283046722,0.796840906143188,-0.196424946188927,0.571368217468262,0.835454940795898,-0.270389169454575,0.478439778089523,0.848965704441071,-0.167813152074814,0.50109475851059,0.796840906143188,-0.196424946188927,0.571368217468262,0.835454940795898,-0.270389169454575,0.478439778089523,0.906941473484039,-0.292563915252686,0.303089797496796,0.922201931476593,-0.212290525436401,0.323227822780609,0.573668122291565,-0.508787095546722,0.641903698444366,0.570891082286835,-0.430035650730133,0.699394404888153,0.532795488834381,-0.488821715116501,0.690783739089966,0.573668122291565,-0.508787095546722,0.641903698444366,0.580141603946686,-0.482462227344513,0.656251311302185,0.570891082286835,-0.430035650730133,0.699394404888153,0.659471035003662,-0.415870577096939,0.626218378543854,0.559010684490204,-0.389998853206635,0.731715619564056,0.580141603946686,-0.482462227344513,0.656251311302185,0.771929562091827,-0.270482540130615,0.575294494628906,0.682869911193848,-0.299759149551392,0.666207909584045,0.659471035003662,-0.415870577096939,0.626218378543854,0.782735407352448,-0.206706881523132,0.5870241522789,0.771929562091827,-0.270482540130615,0.575294494628906,0.791614234447479,-0.185980200767517,0.582029283046722,-0.103350751101971,0.169804632663727,-0.980043292045593,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.246586918830872,0.201044395565987,-0.948037981987,0.167589083313942,-0.758219361305237,0.630092918872833,0.28773757815361,-0.825198948383331,0.486059278249741,0.295014828443527,-0.776420593261719,0.556899547576904,\r\n0.295014828443527,-0.776420593261719,0.556899547576904,0.38670215010643,-0.811047077178955,0.43893501162529,0.404292851686478,-0.745663642883301,0.529653489589691,0.456931859254837,-0.67681360244751,0.577179729938507,0.392176628112793,-0.702164947986603,0.59427410364151,0.404292851686478,-0.745663642883301,0.529653489589691,0.164374172687531,-0.714577436447144,0.679970622062683,0.202862411737442,-0.799380600452423,0.565541744232178,0.167589083313942,-0.758219361305237,0.630092918872833,0.202862411737442,-0.799380600452423,0.565541744232178,0.164374172687531,-0.714577436447144,0.679970622062683,0.193208277225494,-0.783515870571136,0.590570330619812,0.254773855209351,-0.761090636253357,0.596515834331512,0.241858214139938,-0.837083041667938,0.490710139274597,0.193208277225494,-0.783515870571136,0.590570330619812,0.35479462146759,-0.851547241210938,0.385989516973495,0.263385146856308,-0.887956738471985,0.377042412757874,0.303707242012024,-0.8537757396698,0.422881543636322,0.241858214139938,-0.837083041667938,0.490710139274597,0.315166562795639,-0.808818161487579,0.496470600366592,0.303707242012024,-0.8537757396698,0.422881543636322,0.541393756866455,-0.575668692588806,0.612779021263123,0.532795488834381,-0.488821715116501,0.690783739089966,0.505722045898438,-0.599276721477509,0.620574295520782,0.505722045898438,-0.599276721477509,0.620574295520782,0.456931859254837,-0.67681360244751,0.577179729938507,0.486788839101791,-0.65315967798233,0.580016314983368,0.0838550254702568,-0.102339565753937,-0.991208672523499,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.0789340436458588,-0.172605633735657,-0.981823086738586,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.220681175589561,-0.279628455638886,-0.934402287006378,0.330021530389786,-0.315435022115707,-0.889711380004883,0.444557249546051,-0.362431317567825,-0.819153368473053,0.220681175589561,-0.279628455638886,-0.934402287006378,\r\n0.327760189771652,-0.449723869562149,-0.830855906009674,0.327760189771652,-0.449723869562149,-0.830855906009674,0.603381931781769,-0.503465950489044,-0.618427097797394,0.444557249546051,-0.362431317567825,-0.819153368473053,0.569060683250427,-0.632414758205414,-0.525567591190338,0.731515288352966,-0.610370516777039,-0.303863555192947,0.603381931781769,-0.503465950489044,-0.618427097797394,0.623779773712158,-0.675291478633881,-0.393548011779785,0.68778795003891,-0.6616450548172,-0.29861918091774,0.564758598804474,-0.761623561382294,-0.317768931388855,0.623779773712158,-0.675291478633881,-0.393548011779785,0.552311420440674,-0.672141671180725,-0.493130147457123,0.67774099111557,-0.537852644920349,-0.501379549503326,0.691637456417084,-0.698186278343201,-0.184860527515411,0.653153777122498,-0.72777533531189,-0.209124520421028,0.764689028263092,-0.615058124065399,-0.192234426736832,0.679137527942657,-0.678981602191925,-0.27884766459465,0.691637456417084,-0.698186278343201,-0.184860527515411,0.731515288352966,-0.610370516777039,-0.303863555192947,0.604139387607574,-0.7543985247612,-0.256706595420837,0.746797800064087,-0.628939628601074,-0.216166436672211,0.653153777122498,-0.72777533531189,-0.209124520421028,0.604139387607574,-0.7543985247612,-0.256706595420837,0.564758598804474,-0.761623561382294,-0.317768931388855,0.68778795003891,-0.6616450548172,-0.29861918091774,0.639328300952911,-0.540497124195099,-0.546920597553253,0.526396095752716,-0.665083587169647,-0.529689311981201,0.789687871932983,-0.457640141248703,-0.408605486154556,0.538591325283051,-0.732020914554596,-0.417210638523102,0.526396095752716,-0.665083587169647,-0.529689311981201,0.552311420440674,-0.672141671180725,-0.493130147457123,0.639328300952911,-0.540497124195099,-0.546920597553253,0.736971020698547,-0.387532562017441,-0.553797960281372,0.492049843072891,-0.613139867782593,-0.6180180311203,0.730636835098267,-0.202308744192123,-0.652104914188385,0.509669423103333,-0.525903105735779,-0.680927872657776,0.736971020698547,-0.387532562017441,-0.553797960281372,\r\n0.271816283464432,-0.327851980924606,-0.904781103134155,0.387279093265533,-0.291512668132782,-0.87466287612915,0.324741184711456,-0.204104751348495,-0.923517346382141,0.271816283464432,-0.327851980924606,-0.904781103134155,0.137511804699898,-0.344733208417892,-0.928573846817017,0.145978778600693,-0.310242980718613,-0.939382433891296,0.607297956943512,-0.11163467913866,-0.786591827869415,0.538435637950897,-0.109293751418591,-0.83554881811142,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.430418729782104,-0.19074285030365,-0.882245302200317,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.385784804821014,-0.173191785812378,-0.906186819076538,0.324741184711456,-0.204104751348495,-0.923517346382141,0.387279093265533,-0.291512668132782,-0.87466287612915,0.430418729782104,-0.19074285030365,-0.882245302200317,0.730636835098267,-0.202308744192123,-0.652104914188385,0.676005244255066,-0.171507328748703,-0.71666032075882,0.607297956943512,-0.11163467913866,-0.786591827869415,0.955990076065063,-0.288337558507919,0.0542616359889507,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.978429555892944,-0.203124448657036,0.0376294516026974,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.930170238018036,-0.311860710382462,-0.193716377019882,0.96679961681366,-0.227485403418541,-0.116399176418781,0.804768800735474,-0.367822736501694,-0.465889990329742,0.741886615753174,-0.509963095188141,-0.43536388874054,0.745114147663116,-0.392676264047623,-0.539082646369934,0.928279101848602,-0.352952182292938,-0.117143124341965,0.909788370132446,-0.329163044691086,-0.252856612205505,0.930170238018036,-0.311860710382462,-0.193716377019882,0.909788370132446,-0.329163044691086,-0.252856612205505,0.899893939495087,-0.401437640190125,-0.170407116413116,0.892597615718842,-0.363973349332809,-0.266069054603577,0.853956937789917,-0.372074782848358,-0.363755106925964,0.892597615718842,-0.363973349332809,-0.266069054603577,0.823440253734589,-0.527704954147339,-0.208503022789955,0.853956937789917,-0.372074782848358,-0.363755106925964,\r\n0.77934867143631,-0.531836926937103,-0.331308156251907,0.804768800735474,-0.367822736501694,-0.465889990329742,0.674787998199463,-0.508593559265137,-0.534783661365509,0.745114147663116,-0.392676264047623,-0.539082646369934,0.741886615753174,-0.509963095188141,-0.43536388874054,0.674787998199463,-0.508593559265137,-0.534783661365509,0.596915066242218,-0.478820025920868,-0.643757402896881,0.667893409729004,-0.419035285711288,-0.615083456039429,0.596915066242218,-0.478820025920868,-0.643757402896881,0.555940628051758,-0.564490854740143,-0.610147416591644,0.522193491458893,-0.414826840162277,-0.745139241218567,0.479820877313614,-0.502831399440765,-0.718980073928833,0.522193491458893,-0.414826840162277,-0.745139241218567,0.555940628051758,-0.564490854740143,-0.610147416591644,0.359783113002777,-0.453989893198013,-0.815137505531311,0.28803014755249,-0.569406509399414,-0.769944667816162,0.208737909793854,-0.427034497261047,-0.87981241941452,0.479820877313614,-0.502831399440765,-0.718980073928833,0.402071952819824,-0.635098934173584,-0.659535646438599,0.359783113002777,-0.453989893198013,-0.815137505531311,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.103847965598106,-0.255653470754623,-0.961174666881561,0.199501812458038,-0.407474100589752,-0.891158699989319,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.0308478400111198,-0.160730704665184,-0.986516058444977,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.162542730569839,-0.414484977722168,-0.89542281627655,0.208737909793854,-0.427034497261047,-0.87981241941452,0.228927999734879,-0.530000746250153,-0.816511511802673,0.260213911533356,-0.498987674713135,-0.826619565486908,0.199501812458038,-0.407474100589752,-0.891158699989319,0.162542730569839,-0.414484977722168,-0.89542281627655,0.940094292163849,-0.28944393992424,0.18012447655201,0.953539431095123,-0.235065281391144,0.188432320952415,0.922201931476593,-0.212290525436401,0.323227822780609,0.953539431095123,-0.235065281391144,0.188432320952415,0.965255260467529,-0.232284337282181,0.119691982865334,\r\n0.964768528938293,-0.138978868722916,0.223397672176361,0.955990076065063,-0.288337558507919,0.0542616359889507,0.975674629211426,-0.17233407497406,0.135498821735382,0.965255260467529,-0.232284337282181,0.119691982865334,0.955990076065063,-0.288337558507919,0.0542616359889507,0.978429555892944,-0.203124448657036,0.0376294516026974,0.975674629211426,-0.17233407497406,0.135498821735382,0.791614234447479,-0.185980200767517,0.582029283046722,0.771929562091827,-0.270482540130615,0.575294494628906,0.796840906143188,-0.196424946188927,0.571368217468262,0.835454940795898,-0.270389169454575,0.478439778089523,0.796840906143188,-0.196424946188927,0.571368217468262,0.771929562091827,-0.270482540130615,0.575294494628906,0.906941473484039,-0.292563915252686,0.303089797496796,0.835454940795898,-0.270389169454575,0.478439778089523,0.831655621528625,-0.387141674757004,0.398083060979843,0.906941473484039,-0.292563915252686,0.303089797496796,0.940094292163849,-0.28944393992424,0.18012447655201,0.922201931476593,-0.212290525436401,0.323227822780609,0.573668122291565,-0.508787095546722,0.641903698444366,0.532795488834381,-0.488821715116501,0.690783739089966,0.541393756866455,-0.575668692588806,0.612779021263123,0.573668122291565,-0.508787095546722,0.641903698444366,0.587513506412506,-0.551960587501526,0.591749250888824,0.580141603946686,-0.482462227344513,0.656251311302185,0.580141603946686,-0.482462227344513,0.656251311302185,0.638442516326904,-0.509985387325287,0.576459765434265,0.659471035003662,-0.415870577096939,0.626218378543854,0.738793075084686,-0.397019654512405,0.544573247432709,0.771929562091827,-0.270482540130615,0.575294494628906,0.659471035003662,-0.415870577096939,0.626218378543854,0.202862411737442,-0.799380600452423,0.565541744232178,0.28773757815361,-0.825198948383331,0.486059278249741,0.167589083313942,-0.758219361305237,0.630092918872833,0.28773757815361,-0.825198948383331,0.486059278249741,0.38670215010643,-0.811047077178955,0.43893501162529,0.295014828443527,-0.776420593261719,0.556899547576904,0.38670215010643,-0.811047077178955,0.43893501162529,\r\n0.424862533807755,-0.779196381568909,0.46080869436264,0.404292851686478,-0.745663642883301,0.529653489589691,0.456931859254837,-0.67681360244751,0.577179729938507,0.404292851686478,-0.745663642883301,0.529653489589691,0.437753558158875,-0.720838665962219,0.537367105484009,0.202862411737442,-0.799380600452423,0.565541744232178,0.193208277225494,-0.783515870571136,0.590570330619812,0.247458085417748,-0.848811864852905,0.467207431793213,0.241858214139938,-0.837083041667938,0.490710139274597,0.247458085417748,-0.848811864852905,0.467207431793213,0.193208277225494,-0.783515870571136,0.590570330619812,0.241858214139938,-0.837083041667938,0.490710139274597,0.303707242012024,-0.8537757396698,0.422881543636322,0.263385146856308,-0.887956738471985,0.377042412757874,0.541393756866455,-0.575668692588806,0.612779021263123,0.505722045898438,-0.599276721477509,0.620574295520782,0.486788839101791,-0.65315967798233,0.580016314983368,0.486788839101791,-0.65315967798233,0.580016314983368,0.456931859254837,-0.67681360244751,0.577179729938507,0.437753558158875,-0.720838665962219,0.537367105484009,0.0694498717784882,-0.243639498949051,-0.967376053333282,0.220681175589561,-0.279628455638886,-0.934402287006378,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.327760189771652,-0.449723869562149,-0.830855906009674,0.220681175589561,-0.279628455638886,-0.934402287006378,0.178027421236038,-0.376230776309967,-0.909261524677277,0.603381931781769,-0.503465950489044,-0.618427097797394,0.327760189771652,-0.449723869562149,-0.830855906009674,0.569060683250427,-0.632414758205414,-0.525567591190338,0.679137527942657,-0.678981602191925,-0.27884766459465,0.731515288352966,-0.610370516777039,-0.303863555192947,0.569060683250427,-0.632414758205414,-0.525567591190338,0.538591325283051,-0.732020914554596,-0.417210638523102,0.623779773712158,-0.675291478633881,-0.393548011779785,0.564758598804474,-0.761623561382294,-0.317768931388855,0.538591325283051,-0.732020914554596,-0.417210638523102,0.552311420440674,-0.672141671180725,-0.493130147457123,0.623779773712158,-0.675291478633881,-0.393548011779785,\r\n0.691637456417084,-0.698186278343201,-0.184860527515411,0.603683292865753,-0.766315698623657,-0.219832956790924,0.653153777122498,-0.72777533531189,-0.209124520421028,0.679137527942657,-0.678981602191925,-0.27884766459465,0.629380762577057,-0.7384192943573,-0.24210898578167,0.691637456417084,-0.698186278343201,-0.184860527515411,0.604139387607574,-0.7543985247612,-0.256706595420837,0.653153777122498,-0.72777533531189,-0.209124520421028,0.581222474575043,-0.772816240787506,-0.254824042320251,0.574822664260864,-0.766007542610168,-0.287769317626953,0.564758598804474,-0.761623561382294,-0.317768931388855,0.604139387607574,-0.7543985247612,-0.256706595420837,0.789687871932983,-0.457640141248703,-0.408605486154556,0.526396095752716,-0.665083587169647,-0.529689311981201,0.686307370662689,-0.614455699920654,-0.389135360717773,0.639328300952911,-0.540497124195099,-0.546920597553253,0.789687871932983,-0.457640141248703,-0.408605486154556,0.872139453887939,-0.300076693296433,-0.38642817735672,0.538591325283051,-0.732020914554596,-0.417210638523102,0.686307370662689,-0.614455699920654,-0.389135360717773,0.526396095752716,-0.665083587169647,-0.529689311981201,0.639328300952911,-0.540497124195099,-0.546920597553253,0.872139453887939,-0.300076693296433,-0.38642817735672,0.736971020698547,-0.387532562017441,-0.553797960281372,0.730636835098267,-0.202308744192123,-0.652104914188385,0.736971020698547,-0.387532562017441,-0.553797960281372,0.876197099685669,-0.190329879522324,-0.442778885364532,0.271816283464432,-0.327851980924606,-0.904781103134155,0.324741184711456,-0.204104751348495,-0.923517346382141,0.264180034399033,-0.324005872011185,-0.908421158790588,0.137511804699898,-0.344733208417892,-0.928573846817017,0.271816283464432,-0.327851980924606,-0.904781103134155,0.264180034399033,-0.324005872011185,-0.908421158790588,0.137511804699898,-0.344733208417892,-0.928573846817017,0.0351591259241104,-0.332751035690308,-0.942359030246735,0.145978778600693,-0.310242980718613,-0.939382433891296,0.538435637950897,-0.109293751418591,-0.83554881811142,\r\n0.607297956943512,-0.11163467913866,-0.786591827869415,0.676005244255066,-0.171507328748703,-0.71666032075882,0.538435637950897,-0.109293751418591,-0.83554881811142,0.447589695453644,-0.12448013573885,-0.885532677173615,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.505612194538116,-0.0862507000565529,-0.858438551425934,0.447589695453644,-0.12448013573885,-0.885532677173615,0.385784804821014,-0.173191785812378,-0.906186819076538,0.324741184711456,-0.204104751348495,-0.923517346382141,0.430418729782104,-0.19074285030365,-0.882245302200317,0.385784804821014,-0.173191785812378,-0.906186819076538,0.730636835098267,-0.202308744192123,-0.652104914188385,0.806763172149658,-0.201846897602081,-0.555329501628876,0.676005244255066,-0.171507328748703,-0.71666032075882,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.955990076065063,-0.288337558507919,0.0542616359889507,0.932419061660767,-0.360883712768555,0.0189088843762875,0.930170238018036,-0.311860710382462,-0.193716377019882,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.928279101848602,-0.352952182292938,-0.117143124341965,0.77934867143631,-0.531836926937103,-0.331308156251907,0.741886615753174,-0.509963095188141,-0.43536388874054,0.804768800735474,-0.367822736501694,-0.465889990329742,0.909788370132446,-0.329163044691086,-0.252856612205505,0.928279101848602,-0.352952182292938,-0.117143124341965,0.899893939495087,-0.401437640190125,-0.170407116413116,0.899893939495087,-0.401437640190125,-0.170407116413116,0.823440253734589,-0.527704954147339,-0.208503022789955,0.892597615718842,-0.363973349332809,-0.266069054603577,0.823440253734589,-0.527704954147339,-0.208503022789955,0.77934867143631,-0.531836926937103,-0.331308156251907,0.853956937789917,-0.372074782848358,-0.363755106925964,0.674787998199463,-0.508593559265137,-0.534783661365509,0.741886615753174,-0.509963095188141,-0.43536388874054,0.683374106884003,-0.61285787820816,-0.39674299955368,0.674787998199463,-0.508593559265137,-0.534783661365509,0.62163782119751,-0.591553866863251,-0.513449311256409,\r\n0.596915066242218,-0.478820025920868,-0.643757402896881,0.596915066242218,-0.478820025920868,-0.643757402896881,0.62163782119751,-0.591553866863251,-0.513449311256409,0.555940628051758,-0.564490854740143,-0.610147416591644,0.479820877313614,-0.502831399440765,-0.718980073928833,0.555940628051758,-0.564490854740143,-0.610147416591644,0.482480525970459,-0.637502074241638,-0.600669205188751,0.334909796714783,-0.628960132598877,-0.701601386070251,0.28803014755249,-0.569406509399414,-0.769944667816162,0.359783113002777,-0.453989893198013,-0.815137505531311,0.28803014755249,-0.569406509399414,-0.769944667816162,0.228927999734879,-0.530000746250153,-0.816511511802673,0.208737909793854,-0.427034497261047,-0.87981241941452,0.482480525970459,-0.637502074241638,-0.600669205188751,0.402071952819824,-0.635098934173584,-0.659535646438599,0.479820877313614,-0.502831399440765,-0.718980073928833,0.334909796714783,-0.628960132598877,-0.701601386070251,0.359783113002777,-0.453989893198013,-0.815137505531311,0.402071952819824,-0.635098934173584,-0.659535646438599,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.199501812458038,-0.407474100589752,-0.891158699989319,0.160610005259514,-0.474987328052521,-0.865211725234985,0.0694498717784882,-0.243639498949051,-0.967376053333282,0.0685686022043228,-0.195197850465775,-0.978363931179047,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.162542730569839,-0.414484977722168,-0.89542281627655,0.228927999734879,-0.530000746250153,-0.816511511802673,0.260213911533356,-0.498987674713135,-0.826619565486908,0.260213911533356,-0.498987674713135,-0.826619565486908,0.277806550264359,-0.508620321750641,-0.814940929412842,0.199501812458038,-0.407474100589752,-0.891158699989319,0.943977952003479,-0.312062084674835,0.107344038784504,0.953539431095123,-0.235065281391144,0.188432320952415,0.940094292163849,-0.28944393992424,0.18012447655201,0.953539431095123,-0.235065281391144,0.188432320952415,0.943977952003479,-0.312062084674835,0.107344038784504,0.965255260467529,-0.232284337282181,0.119691982865334,\r\n0.955990076065063,-0.288337558507919,0.0542616359889507,0.965255260467529,-0.232284337282181,0.119691982865334,0.943977952003479,-0.312062084674835,0.107344038784504,0.835454940795898,-0.270389169454575,0.478439778089523,0.771929562091827,-0.270482540130615,0.575294494628906,0.738793075084686,-0.397019654512405,0.544573247432709,0.835454940795898,-0.270389169454575,0.478439778089523,0.738793075084686,-0.397019654512405,0.544573247432709,0.831655621528625,-0.387141674757004,0.398083060979843,0.904810965061188,-0.36812362074852,0.214013934135437,0.906941473484039,-0.292563915252686,0.303089797496796,0.831655621528625,-0.387141674757004,0.398083060979843,0.906941473484039,-0.292563915252686,0.303089797496796,0.904810965061188,-0.36812362074852,0.214013934135437,0.940094292163849,-0.28944393992424,0.18012447655201,0.541393756866455,-0.575668692588806,0.612779021263123,0.587513506412506,-0.551960587501526,0.591749250888824,0.573668122291565,-0.508787095546722,0.641903698444366,0.580141603946686,-0.482462227344513,0.656251311302185,0.587513506412506,-0.551960587501526,0.591749250888824,0.638442516326904,-0.509985387325287,0.576459765434265,0.738793075084686,-0.397019654512405,0.544573247432709,0.659471035003662,-0.415870577096939,0.626218378543854,0.638442516326904,-0.509985387325287,0.576459765434265,0.202862411737442,-0.799380600452423,0.565541744232178,0.247458085417748,-0.848811864852905,0.467207431793213,0.28773757815361,-0.825198948383331,0.486059278249741,0.28773757815361,-0.825198948383331,0.486059278249741,0.324611246585846,-0.854252457618713,0.40605440735817,0.38670215010643,-0.811047077178955,0.43893501162529,0.38670215010643,-0.811047077178955,0.43893501162529,0.424845576286316,-0.820532977581024,0.382402628660202,0.424862533807755,-0.779196381568909,0.46080869436264,0.437753558158875,-0.720838665962219,0.537367105484009,0.404292851686478,-0.745663642883301,0.529653489589691,0.424862533807755,-0.779196381568909,0.46080869436264,0.243718072772026,-0.886866569519043,0.392516255378723,0.247458085417748,-0.848811864852905,0.467207431793213,\r\n0.241858214139938,-0.837083041667938,0.490710139274597,0.243718072772026,-0.886866569519043,0.392516255378723,0.241858214139938,-0.837083041667938,0.490710139274597,0.263385146856308,-0.887956738471985,0.377042412757874,0.486788839101791,-0.65315967798233,0.580016314983368,0.545256972312927,-0.632359206676483,0.55028760433197,0.541393756866455,-0.575668692588806,0.612779021263123,0.437753558158875,-0.720838665962219,0.537367105484009,0.487753838300705,-0.701559543609619,0.519528865814209,0.486788839101791,-0.65315967798233,0.580016314983368,0.112325459718704,-0.399146139621735,-0.909980893135071,0.220681175589561,-0.279628455638886,-0.934402287006378,0.0694498717784882,-0.243639498949051,-0.967376053333282,0.178027421236038,-0.376230776309967,-0.909261524677277,0.220681175589561,-0.279628455638886,-0.934402287006378,0.112325459718704,-0.399146139621735,-0.909980893135071,0.327760189771652,-0.449723869562149,-0.830855906009674,0.178027421236038,-0.376230776309967,-0.909261524677277,0.176205426454544,-0.468516409397125,-0.865704298019409,0.461405098438263,-0.614696443080902,-0.639729201793671,0.569060683250427,-0.632414758205414,-0.525567591190338,0.327760189771652,-0.449723869562149,-0.830855906009674,0.61866557598114,-0.683611392974854,-0.38720566034317,0.679137527942657,-0.678981602191925,-0.27884766459465,0.569060683250427,-0.632414758205414,-0.525567591190338,0.627333045005798,-0.73214191198349,-0.265370100736618,0.538591325283051,-0.732020914554596,-0.417210638523102,0.564758598804474,-0.761623561382294,-0.317768931388855,0.603683292865753,-0.766315698623657,-0.219832956790924,0.691637456417084,-0.698186278343201,-0.184860527515411,0.629380762577057,-0.7384192943573,-0.24210898578167,0.581222474575043,-0.772816240787506,-0.254824042320251,0.653153777122498,-0.72777533531189,-0.209124520421028,0.603683292865753,-0.766315698623657,-0.219832956790924,0.61866557598114,-0.683611392974854,-0.38720566034317,0.629380762577057,-0.7384192943573,-0.24210898578167,0.679137527942657,-0.678981602191925,-0.27884766459465,0.574822664260864,-0.766007542610168,-0.287769317626953,\r\n0.604139387607574,-0.7543985247612,-0.256706595420837,0.581222474575043,-0.772816240787506,-0.254824042320251,0.627333045005798,-0.73214191198349,-0.265370100736618,0.564758598804474,-0.761623561382294,-0.317768931388855,0.574822664260864,-0.766007542610168,-0.287769317626953,0.789687871932983,-0.457640141248703,-0.408605486154556,0.686307370662689,-0.614455699920654,-0.389135360717773,0.863511562347412,-0.439077287912369,-0.248110666871071,0.899975657463074,-0.347292721271515,-0.263498365879059,0.872139453887939,-0.300076693296433,-0.38642817735672,0.789687871932983,-0.457640141248703,-0.408605486154556,0.538591325283051,-0.732020914554596,-0.417210638523102,0.627333045005798,-0.73214191198349,-0.265370100736618,0.686307370662689,-0.614455699920654,-0.389135360717773,0.876197099685669,-0.190329879522324,-0.442778885364532,0.736971020698547,-0.387532562017441,-0.553797960281372,0.872139453887939,-0.300076693296433,-0.38642817735672,0.876197099685669,-0.190329879522324,-0.442778885364532,0.806763172149658,-0.201846897602081,-0.555329501628876,0.730636835098267,-0.202308744192123,-0.652104914188385,0.324741184711456,-0.204104751348495,-0.923517346382141,0.385784804821014,-0.173191785812378,-0.906186819076538,0.264180034399033,-0.324005872011185,-0.908421158790588,0.229662716388702,-0.363244950771332,-0.902944087982178,0.137511804699898,-0.344733208417892,-0.928573846817017,0.264180034399033,-0.324005872011185,-0.908421158790588,0.137511804699898,-0.344733208417892,-0.928573846817017,0.0323366522789001,-0.370839953422546,-0.928133547306061,0.0351591259241104,-0.332751035690308,-0.942359030246735,0.538435637950897,-0.109293751418591,-0.83554881811142,0.676005244255066,-0.171507328748703,-0.71666032075882,0.53332656621933,-0.311947226524353,-0.786289751529694,0.538435637950897,-0.109293751418591,-0.83554881811142,0.40187931060791,-0.311384826898575,-0.861122786998749,0.447589695453644,-0.12448013573885,-0.885532677173615,0.447589695453644,-0.12448013573885,-0.885532677173615,0.40187931060791,-0.311384826898575,-0.861122786998749,\r\n0.385784804821014,-0.173191785812378,-0.906186819076538,0.720714390277863,-0.380926162004471,-0.579194128513336,0.676005244255066,-0.171507328748703,-0.71666032075882,0.806763172149658,-0.201846897602081,-0.555329501628876,0.932419061660767,-0.360883712768555,0.0189088843762875,0.955990076065063,-0.288337558507919,0.0542616359889507,0.943977952003479,-0.312062084674835,0.107344038784504,0.949435293674469,-0.310529887676239,-0.0462975911796093,0.932419061660767,-0.360883712768555,0.0189088843762875,0.928279101848602,-0.352952182292938,-0.117143124341965,0.77934867143631,-0.531836926937103,-0.331308156251907,0.702548742294312,-0.652252435684204,-0.284590721130371,0.741886615753174,-0.509963095188141,-0.43536388874054,0.899893939495087,-0.401437640190125,-0.170407116413116,0.928279101848602,-0.352952182292938,-0.117143124341965,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.823440253734589,-0.527704954147339,-0.208503022789955,0.899893939495087,-0.401437640190125,-0.170407116413116,0.823440253734589,-0.527704954147339,-0.208503022789955,0.716276288032532,-0.665262043476105,-0.210652679204941,0.77934867143631,-0.531836926937103,-0.331308156251907,0.741886615753174,-0.509963095188141,-0.43536388874054,0.702548742294312,-0.652252435684204,-0.284590721130371,0.683374106884003,-0.61285787820816,-0.39674299955368,0.683374106884003,-0.61285787820816,-0.39674299955368,0.62163782119751,-0.591553866863251,-0.513449311256409,0.674787998199463,-0.508593559265137,-0.534783661365509,0.62163782119751,-0.591553866863251,-0.513449311256409,0.538263082504272,-0.650817513465881,-0.535452365875244,0.555940628051758,-0.564490854740143,-0.610147416591644,0.538263082504272,-0.650817513465881,-0.535452365875244,0.482480525970459,-0.637502074241638,-0.600669205188751,0.555940628051758,-0.564490854740143,-0.610147416591644,0.334909796714783,-0.628960132598877,-0.701601386070251,0.37244975566864,-0.693966269493103,-0.616191387176514,0.28803014755249,-0.569406509399414,-0.769944667816162,\r\n0.28803014755249,-0.569406509399414,-0.769944667816162,0.360432863235474,-0.641102433204651,-0.677551209926605,0.228927999734879,-0.530000746250153,-0.816511511802673,0.482480525970459,-0.637502074241638,-0.600669205188751,0.43299400806427,-0.726230382919312,-0.533952713012695,0.402071952819824,-0.635098934173584,-0.659535646438599,0.334909796714783,-0.628960132598877,-0.701601386070251,0.402071952819824,-0.635098934173584,-0.659535646438599,0.36204394698143,-0.72858852148056,-0.581448972225189,0.160610005259514,-0.474987328052521,-0.865211725234985,0.199501812458038,-0.407474100589752,-0.891158699989319,0.277806550264359,-0.508620321750641,-0.814940929412842,0.160610005259514,-0.474987328052521,-0.865211725234985,0.112325459718704,-0.399146139621735,-0.909980893135071,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.0694498717784882,-0.243639498949051,-0.967376053333282,0.0817298367619514,-0.306247889995575,-0.948436796665192,0.112325459718704,-0.399146139621735,-0.909980893135071,0.324411034584045,-0.585119903087616,-0.743230879306793,0.260213911533356,-0.498987674713135,-0.826619565486908,0.228927999734879,-0.530000746250153,-0.816511511802673,0.277806550264359,-0.508620321750641,-0.814940929412842,0.260213911533356,-0.498987674713135,-0.826619565486908,0.384783744812012,-0.593780219554901,-0.706658601760864,0.927272737026215,-0.359832584857941,0.103371903300285,0.943977952003479,-0.312062084674835,0.107344038784504,0.940094292163849,-0.28944393992424,0.18012447655201,0.753288626670837,-0.495452642440796,0.432530701160431,0.831655621528625,-0.387141674757004,0.398083060979843,0.738793075084686,-0.397019654512405,0.544573247432709,0.904810965061188,-0.36812362074852,0.214013934135437,0.831655621528625,-0.387141674757004,0.398083060979843,0.846029579639435,-0.472371816635132,0.247181579470634,0.927272737026215,-0.359832584857941,0.103371903300285,0.940094292163849,-0.28944393992424,0.18012447655201,0.904810965061188,-0.36812362074852,0.214013934135437,0.545256972312927,-0.632359206676483,0.55028760433197,\r\n0.587513506412506,-0.551960587501526,0.591749250888824,0.541393756866455,-0.575668692588806,0.612779021263123,0.638442516326904,-0.509985387325287,0.576459765434265,0.587513506412506,-0.551960587501526,0.591749250888824,0.614880979061127,-0.583878040313721,0.530101537704468,0.683216273784637,-0.503210723400116,0.529144942760468,0.738793075084686,-0.397019654512405,0.544573247432709,0.638442516326904,-0.509985387325287,0.576459765434265,0.247458085417748,-0.848811864852905,0.467207431793213,0.324611246585846,-0.854252457618713,0.40605440735817,0.28773757815361,-0.825198948383331,0.486059278249741,0.324611246585846,-0.854252457618713,0.40605440735817,0.385232716798782,-0.857079148292542,0.342068582773209,0.38670215010643,-0.811047077178955,0.43893501162529,0.38670215010643,-0.811047077178955,0.43893501162529,0.385232716798782,-0.857079148292542,0.342068582773209,0.424845576286316,-0.820532977581024,0.382402628660202,0.433050990104675,-0.817644596099854,0.379373222589493,0.424862533807755,-0.779196381568909,0.46080869436264,0.424845576286316,-0.820532977581024,0.382402628660202,0.447517931461334,-0.766533076763153,0.460602402687073,0.437753558158875,-0.720838665962219,0.537367105484009,0.424862533807755,-0.779196381568909,0.46080869436264,0.30123370885849,-0.885816931724548,0.352968126535416,0.247458085417748,-0.848811864852905,0.467207431793213,0.243718072772026,-0.886866569519043,0.392516255378723,0.243718072772026,-0.886866569519043,0.392516255378723,0.263385146856308,-0.887956738471985,0.377042412757874,0.243824228644371,-0.914848804473877,0.3218714594841,0.486788839101791,-0.65315967798233,0.580016314983368,0.487753838300705,-0.701559543609619,0.519528865814209,0.545256972312927,-0.632359206676483,0.55028760433197,0.437753558158875,-0.720838665962219,0.537367105484009,0.447517931461334,-0.766533076763153,0.460602402687073,0.487753838300705,-0.701559543609619,0.519528865814209,0.178027421236038,-0.376230776309967,-0.909261524677277,0.112325459718704,-0.399146139621735,-0.909980893135071,0.176205426454544,-0.468516409397125,-0.865704298019409,\r\n0.327760189771652,-0.449723869562149,-0.830855906009674,0.176205426454544,-0.468516409397125,-0.865704298019409,0.249037459492683,-0.489138215780258,-0.835897147655487,0.461405098438263,-0.614696443080902,-0.639729201793671,0.61866557598114,-0.683611392974854,-0.38720566034317,0.569060683250427,-0.632414758205414,-0.525567591190338,0.461405098438263,-0.614696443080902,-0.639729201793671,0.327760189771652,-0.449723869562149,-0.830855906009674,0.249037459492683,-0.489138215780258,-0.835897147655487,0.629380762577057,-0.7384192943573,-0.24210898578167,0.637076318264008,-0.72201943397522,-0.269854962825775,0.603683292865753,-0.766315698623657,-0.219832956790924,0.581222474575043,-0.772816240787506,-0.254824042320251,0.603683292865753,-0.766315698623657,-0.219832956790924,0.681593775749207,-0.693611621856689,-0.233093708753586,0.628200471401215,-0.704455494880676,-0.33031290769577,0.629380762577057,-0.7384192943573,-0.24210898578167,0.61866557598114,-0.683611392974854,-0.38720566034317,0.574822664260864,-0.766007542610168,-0.287769317626953,0.581222474575043,-0.772816240787506,-0.254824042320251,0.681593775749207,-0.693611621856689,-0.233093708753586,0.627333045005798,-0.73214191198349,-0.265370100736618,0.574822664260864,-0.766007542610168,-0.287769317626953,0.686333000659943,-0.686554372310638,-0.239979341626167,0.863511562347412,-0.439077287912369,-0.248110666871071,0.686307370662689,-0.614455699920654,-0.389135360717773,0.816489040851593,-0.542169451713562,-0.198488667607307,0.899975657463074,-0.347292721271515,-0.263498365879059,0.789687871932983,-0.457640141248703,-0.408605486154556,0.863511562347412,-0.439077287912369,-0.248110666871071,0.842103660106659,-0.369900792837143,-0.392472505569458,0.872139453887939,-0.300076693296433,-0.38642817735672,0.899975657463074,-0.347292721271515,-0.263498365879059,0.627333045005798,-0.73214191198349,-0.265370100736618,0.816489040851593,-0.542169451713562,-0.198488667607307,0.686307370662689,-0.614455699920654,-0.389135360717773,0.876197099685669,-0.190329879522324,-0.442778885364532,\r\n0.872139453887939,-0.300076693296433,-0.38642817735672,0.842103660106659,-0.369900792837143,-0.392472505569458,0.876197099685669,-0.190329879522324,-0.442778885364532,0.842103660106659,-0.369900792837143,-0.392472505569458,0.806763172149658,-0.201846897602081,-0.555329501628876,0.40187931060791,-0.311384826898575,-0.861122786998749,0.264180034399033,-0.324005872011185,-0.908421158790588,0.385784804821014,-0.173191785812378,-0.906186819076538,0.229662716388702,-0.363244950771332,-0.902944087982178,0.122939303517342,-0.290094465017319,-0.949068546295166,0.137511804699898,-0.344733208417892,-0.928573846817017,0.345387160778046,-0.446389526128769,-0.825496256351471,0.229662716388702,-0.363244950771332,-0.902944087982178,0.264180034399033,-0.324005872011185,-0.908421158790588,0.122939303517342,-0.290094465017319,-0.949068546295166,0.0323366522789001,-0.370839953422546,-0.928133547306061,0.137511804699898,-0.344733208417892,-0.928573846817017,0.609108924865723,-0.457159668207169,-0.6480672955513,0.53332656621933,-0.311947226524353,-0.786289751529694,0.676005244255066,-0.171507328748703,-0.71666032075882,0.538435637950897,-0.109293751418591,-0.83554881811142,0.53332656621933,-0.311947226524353,-0.786289751529694,0.40187931060791,-0.311384826898575,-0.861122786998749,0.720714390277863,-0.380926162004471,-0.579194128513336,0.609108924865723,-0.457159668207169,-0.6480672955513,0.676005244255066,-0.171507328748703,-0.71666032075882,0.720714390277863,-0.380926162004471,-0.579194128513336,0.806763172149658,-0.201846897602081,-0.555329501628876,0.842103660106659,-0.369900792837143,-0.392472505569458,0.932419061660767,-0.360883712768555,0.0189088843762875,0.943977952003479,-0.312062084674835,0.107344038784504,0.927272737026215,-0.359832584857941,0.103371903300285,0.932419061660767,-0.360883712768555,0.0189088843762875,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.928279101848602,-0.352952182292938,-0.117143124341965,0.716276288032532,-0.665262043476105,-0.210652679204941,0.702548742294312,-0.652252435684204,-0.284590721130371,\r\n0.77934867143631,-0.531836926937103,-0.331308156251907,0.899893939495087,-0.401437640190125,-0.170407116413116,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.730987548828125,-0.669993996620178,-0.129480138421059,0.823440253734589,-0.527704954147339,-0.208503022789955,0.716276288032532,-0.665262043476105,-0.210652679204941,0.823440253734589,-0.527704954147339,-0.208503022789955,0.730987548828125,-0.669993996620178,-0.129480138421059,0.676041305065155,-0.689907848834991,-0.258834421634674,0.683374106884003,-0.61285787820816,-0.39674299955368,0.702548742294312,-0.652252435684204,-0.284590721130371,0.642943143844604,-0.667517006397247,-0.375559538602829,0.62163782119751,-0.591553866863251,-0.513449311256409,0.683374106884003,-0.61285787820816,-0.39674299955368,0.538263082504272,-0.650817513465881,-0.535452365875244,0.62163782119751,-0.591553866863251,-0.513449311256409,0.588127493858337,-0.649973452091217,-0.481290459632874,0.538263082504272,-0.650817513465881,-0.535452365875244,0.43299400806427,-0.726230382919312,-0.533952713012695,0.482480525970459,-0.637502074241638,-0.600669205188751,0.37244975566864,-0.693966269493103,-0.616191387176514,0.334909796714783,-0.628960132598877,-0.701601386070251,0.36204394698143,-0.72858852148056,-0.581448972225189,0.37244975566864,-0.693966269493103,-0.616191387176514,0.360432863235474,-0.641102433204651,-0.677551209926605,0.28803014755249,-0.569406509399414,-0.769944667816162,0.324411034584045,-0.585119903087616,-0.743230879306793,0.228927999734879,-0.530000746250153,-0.816511511802673,0.360432863235474,-0.641102433204651,-0.677551209926605,0.43299400806427,-0.726230382919312,-0.533952713012695,0.36204394698143,-0.72858852148056,-0.581448972225189,0.402071952819824,-0.635098934173584,-0.659535646438599,0.160610005259514,-0.474987328052521,-0.865211725234985,0.277806550264359,-0.508620321750641,-0.814940929412842,0.252474337816238,-0.574197947978973,-0.778815269470215,\r\n0.160610005259514,-0.474987328052521,-0.865211725234985,0.136885747313499,-0.531291663646698,-0.836057007312775,0.112325459718704,-0.399146139621735,-0.909980893135071,0.324411034584045,-0.585119903087616,-0.743230879306793,0.384783744812012,-0.593780219554901,-0.706658601760864,0.260213911533356,-0.498987674713135,-0.826619565486908,0.384783744812012,-0.593780219554901,-0.706658601760864,0.252474337816238,-0.574197947978973,-0.778815269470215,0.277806550264359,-0.508620321750641,-0.814940929412842,0.831655621528625,-0.387141674757004,0.398083060979843,0.753288626670837,-0.495452642440796,0.432530701160431,0.846029579639435,-0.472371816635132,0.247181579470634,0.683216273784637,-0.503210723400116,0.529144942760468,0.753288626670837,-0.495452642440796,0.432530701160431,0.738793075084686,-0.397019654512405,0.544573247432709,0.886249542236328,-0.450310558080673,0.108543790876865,0.904810965061188,-0.36812362074852,0.214013934135437,0.846029579639435,-0.472371816635132,0.247181579470634,0.927272737026215,-0.359832584857941,0.103371903300285,0.904810965061188,-0.36812362074852,0.214013934135437,0.886249542236328,-0.450310558080673,0.108543790876865,0.587513506412506,-0.551960587501526,0.591749250888824,0.545256972312927,-0.632359206676483,0.55028760433197,0.614880979061127,-0.583878040313721,0.530101537704468,0.638442516326904,-0.509985387325287,0.576459765434265,0.614880979061127,-0.583878040313721,0.530101537704468,0.64184844493866,-0.551427960395813,0.53287672996521,0.64184844493866,-0.551427960395813,0.53287672996521,0.683216273784637,-0.503210723400116,0.529144942760468,0.638442516326904,-0.509985387325287,0.576459765434265,0.247458085417748,-0.848811864852905,0.467207431793213,0.30123370885849,-0.885816931724548,0.352968126535416,0.324611246585846,-0.854252457618713,0.40605440735817,0.30123370885849,-0.885816931724548,0.352968126535416,0.385232716798782,-0.857079148292542,0.342068582773209,0.324611246585846,-0.854252457618713,0.40605440735817,0.435038894414902,-0.843002140522003,0.316367536783218,0.424845576286316,-0.820532977581024,0.382402628660202,\r\n0.385232716798782,-0.857079148292542,0.342068582773209,0.424862533807755,-0.779196381568909,0.46080869436264,0.433050990104675,-0.817644596099854,0.379373222589493,0.447517931461334,-0.766533076763153,0.460602402687073,0.435038894414902,-0.843002140522003,0.316367536783218,0.433050990104675,-0.817644596099854,0.379373222589493,0.424845576286316,-0.820532977581024,0.382402628660202,0.30123370885849,-0.885816931724548,0.352968126535416,0.243718072772026,-0.886866569519043,0.392516255378723,0.266067236661911,-0.901758670806885,0.340645521879196,0.266067236661911,-0.901758670806885,0.340645521879196,0.243718072772026,-0.886866569519043,0.392516255378723,0.243824228644371,-0.914848804473877,0.3218714594841,0.545256972312927,-0.632359206676483,0.55028760433197,0.487753838300705,-0.701559543609619,0.519528865814209,0.56738144159317,-0.656154334545136,0.49753350019455,0.447517931461334,-0.766533076763153,0.460602402687073,0.524366796016693,-0.722476303577423,0.450629830360413,0.487753838300705,-0.701559543609619,0.519528865814209,0.139880657196045,-0.508958041667938,-0.849349737167358,0.176205426454544,-0.468516409397125,-0.865704298019409,0.112325459718704,-0.399146139621735,-0.909980893135071,0.266495436429977,-0.512512028217316,-0.816278994083405,0.249037459492683,-0.489138215780258,-0.835897147655487,0.176205426454544,-0.468516409397125,-0.865704298019409,0.461405098438263,-0.614696443080902,-0.639729201793671,0.55337256193161,-0.587979435920715,-0.589965105056763,0.61866557598114,-0.683611392974854,-0.38720566034317,0.249037459492683,-0.489138215780258,-0.835897147655487,0.395704209804535,-0.535148203372955,-0.746347367763519,0.461405098438263,-0.614696443080902,-0.639729201793671,0.628200471401215,-0.704455494880676,-0.33031290769577,0.637076318264008,-0.72201943397522,-0.269854962825775,0.629380762577057,-0.7384192943573,-0.24210898578167,0.681593775749207,-0.693611621856689,-0.233093708753586,0.603683292865753,-0.766315698623657,-0.219832956790924,0.637076318264008,-0.72201943397522,-0.269854962825775,0.61866557598114,-0.683611392974854,-0.38720566034317,\r\n0.636350333690643,-0.635093867778778,-0.437851399183273,0.628200471401215,-0.704455494880676,-0.33031290769577,0.731234729290009,-0.623825192451477,-0.275930613279343,0.574822664260864,-0.766007542610168,-0.287769317626953,0.681593775749207,-0.693611621856689,-0.233093708753586,0.731234729290009,-0.623825192451477,-0.275930613279343,0.686333000659943,-0.686554372310638,-0.239979341626167,0.574822664260864,-0.766007542610168,-0.287769317626953,0.686333000659943,-0.686554372310638,-0.239979341626167,0.816489040851593,-0.542169451713562,-0.198488667607307,0.627333045005798,-0.73214191198349,-0.265370100736618,0.863511562347412,-0.439077287912369,-0.248110666871071,0.816489040851593,-0.542169451713562,-0.198488667607307,0.868540942668915,-0.465822398662567,-0.169251188635826,0.899975657463074,-0.347292721271515,-0.263498365879059,0.863511562347412,-0.439077287912369,-0.248110666871071,0.844900012016296,-0.476962566375732,-0.242178663611412,0.842103660106659,-0.369900792837143,-0.392472505569458,0.899975657463074,-0.347292721271515,-0.263498365879059,0.844900012016296,-0.476962566375732,-0.242178663611412,0.40187931060791,-0.311384826898575,-0.861122786998749,0.345387160778046,-0.446389526128769,-0.825496256351471,0.264180034399033,-0.324005872011185,-0.908421158790588,0.229662716388702,-0.363244950771332,-0.902944087982178,0.244076743721962,-0.198354139924049,-0.949253439903259,0.122939303517342,-0.290094465017319,-0.949068546295166,0.355026990175247,-0.413212448358536,-0.838576853275299,0.229662716388702,-0.363244950771332,-0.902944087982178,0.345387160778046,-0.446389526128769,-0.825496256351471,0.0668484568595886,-0.200863599777222,-0.977335691452026,0.0323366522789001,-0.370839953422546,-0.928133547306061,0.122939303517342,-0.290094465017319,-0.949068546295166,0.609108924865723,-0.457159668207169,-0.6480672955513,0.462845683097839,-0.481603145599365,-0.744198977947235,0.53332656621933,-0.311947226524353,-0.786289751529694,0.40187931060791,-0.311384826898575,-0.861122786998749,0.53332656621933,-0.311947226524353,-0.786289751529694,\r\n0.462845683097839,-0.481603145599365,-0.744198977947235,0.692213118076324,-0.530620515346527,-0.489165276288986,0.609108924865723,-0.457159668207169,-0.6480672955513,0.720714390277863,-0.380926162004471,-0.579194128513336,0.842103660106659,-0.369900792837143,-0.392472505569458,0.692213118076324,-0.530620515346527,-0.489165276288986,0.720714390277863,-0.380926162004471,-0.579194128513336,0.932419061660767,-0.360883712768555,0.0189088843762875,0.927272737026215,-0.359832584857941,0.103371903300285,0.900867700576782,-0.432963192462921,0.0313084051012993,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.932419061660767,-0.360883712768555,0.0189088843762875,0.900867700576782,-0.432963192462921,0.0313084051012993,0.716276288032532,-0.665262043476105,-0.210652679204941,0.670491278171539,-0.720428645610809,-0.177267625927925,0.702548742294312,-0.652252435684204,-0.284590721130371,0.838153898715973,-0.545166492462158,0.0170739125460386,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.730987548828125,-0.669993996620178,-0.129480138421059,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.730987548828125,-0.669993996620178,-0.129480138421059,0.670491278171539,-0.720428645610809,-0.177267625927925,0.716276288032532,-0.665262043476105,-0.210652679204941,0.676041305065155,-0.689907848834991,-0.258834421634674,0.642943143844604,-0.667517006397247,-0.375559538602829,0.683374106884003,-0.61285787820816,-0.39674299955368,0.702548742294312,-0.652252435684204,-0.284590721130371,0.670491278171539,-0.720428645610809,-0.177267625927925,0.676041305065155,-0.689907848834991,-0.258834421634674,0.642943143844604,-0.667517006397247,-0.375559538602829,0.588127493858337,-0.649973452091217,-0.481290459632874,0.62163782119751,-0.591553866863251,-0.513449311256409,0.538263082504272,-0.650817513465881,-0.535452365875244,0.588127493858337,-0.649973452091217,-0.481290459632874,0.520097196102142,-0.707392394542694,-0.478638410568237,\r\n0.538263082504272,-0.650817513465881,-0.535452365875244,0.520097196102142,-0.707392394542694,-0.478638410568237,0.43299400806427,-0.726230382919312,-0.533952713012695,0.435529619455338,-0.723916411399841,-0.535031616687775,0.37244975566864,-0.693966269493103,-0.616191387176514,0.36204394698143,-0.72858852148056,-0.581448972225189,0.360432863235474,-0.641102433204651,-0.677551209926605,0.37244975566864,-0.693966269493103,-0.616191387176514,0.488681137561798,-0.689758539199829,-0.534250617027283,0.451299548149109,-0.642460227012634,-0.619332909584045,0.324411034584045,-0.585119903087616,-0.743230879306793,0.360432863235474,-0.641102433204651,-0.677551209926605,0.43299400806427,-0.726230382919312,-0.533952713012695,0.399704217910767,-0.751795470714569,-0.524442553520203,0.36204394698143,-0.72858852148056,-0.581448972225189,0.136885747313499,-0.531291663646698,-0.836057007312775,0.160610005259514,-0.474987328052521,-0.865211725234985,0.252474337816238,-0.574197947978973,-0.778815269470215,0.139880657196045,-0.508958041667938,-0.849349737167358,0.112325459718704,-0.399146139621735,-0.909980893135071,0.136885747313499,-0.531291663646698,-0.836057007312775,0.384783744812012,-0.593780219554901,-0.706658601760864,0.324411034584045,-0.585119903087616,-0.743230879306793,0.451299548149109,-0.642460227012634,-0.619332909584045,0.384783744812012,-0.593780219554901,-0.706658601760864,0.336410313844681,-0.681464970111847,-0.64994877576828,0.252474337816238,-0.574197947978973,-0.778815269470215,0.768582284450531,-0.572151124477386,0.28622379899025,0.846029579639435,-0.472371816635132,0.247181579470634,0.753288626670837,-0.495452642440796,0.432530701160431,0.753288626670837,-0.495452642440796,0.432530701160431,0.683216273784637,-0.503210723400116,0.529144942760468,0.667404115200043,-0.580221951007843,0.466812670230865,0.846029579639435,-0.472371816635132,0.247181579470634,0.818790853023529,-0.559719562530518,0.127653434872627,0.886249542236328,-0.450310558080673,0.108543790876865,0.886249542236328,-0.450310558080673,0.108543790876865,\r\n0.900867700576782,-0.432963192462921,0.0313084051012993,0.927272737026215,-0.359832584857941,0.103371903300285,0.545256972312927,-0.632359206676483,0.55028760433197,0.56738144159317,-0.656154334545136,0.49753350019455,0.614880979061127,-0.583878040313721,0.530101537704468,0.64184844493866,-0.551427960395813,0.53287672996521,0.614880979061127,-0.583878040313721,0.530101537704468,0.627027690410614,-0.611715376377106,0.48232826590538,0.64184844493866,-0.551427960395813,0.53287672996521,0.667404115200043,-0.580221951007843,0.466812670230865,0.683216273784637,-0.503210723400116,0.529144942760468,0.30123370885849,-0.885816931724548,0.352968126535416,0.350975513458252,-0.894027888774872,0.2784423828125,0.385232716798782,-0.857079148292542,0.342068582773209,0.435038894414902,-0.843002140522003,0.316367536783218,0.385232716798782,-0.857079148292542,0.342068582773209,0.393164664506912,-0.882657408714294,0.257560521364212,0.433050990104675,-0.817644596099854,0.379373222589493,0.515483140945435,-0.776065051555634,0.363318026065826,0.447517931461334,-0.766533076763153,0.460602402687073,0.433050990104675,-0.817644596099854,0.379373222589493,0.435038894414902,-0.843002140522003,0.316367536783218,0.515483140945435,-0.776065051555634,0.363318026065826,0.30123370885849,-0.885816931724548,0.352968126535416,0.266067236661911,-0.901758670806885,0.340645521879196,0.29641729593277,-0.909375309944153,0.291844546794891,0.243824228644371,-0.914848804473877,0.3218714594841,0.29641729593277,-0.909375309944153,0.291844546794891,0.266067236661911,-0.901758670806885,0.340645521879196,0.524366796016693,-0.722476303577423,0.450629830360413,0.56738144159317,-0.656154334545136,0.49753350019455,0.487753838300705,-0.701559543609619,0.519528865814209,0.447517931461334,-0.766533076763153,0.460602402687073,0.515483140945435,-0.776065051555634,0.363318026065826,0.524366796016693,-0.722476303577423,0.450629830360413,0.139880657196045,-0.508958041667938,-0.849349737167358,0.160525009036064,-0.568779289722443,-0.806673228740692,0.176205426454544,-0.468516409397125,-0.865704298019409,\r\n0.249037459492683,-0.489138215780258,-0.835897147655487,0.266495436429977,-0.512512028217316,-0.816278994083405,0.395704209804535,-0.535148203372955,-0.746347367763519,0.210522830486298,-0.55304890871048,-0.806112170219421,0.266495436429977,-0.512512028217316,-0.816278994083405,0.176205426454544,-0.468516409397125,-0.865704298019409,0.461405098438263,-0.614696443080902,-0.639729201793671,0.395704209804535,-0.535148203372955,-0.746347367763519,0.55337256193161,-0.587979435920715,-0.589965105056763,0.636350333690643,-0.635093867778778,-0.437851399183273,0.61866557598114,-0.683611392974854,-0.38720566034317,0.55337256193161,-0.587979435920715,-0.589965105056763,0.628200471401215,-0.704455494880676,-0.33031290769577,0.698465406894684,-0.623523533344269,-0.351232528686523,0.637076318264008,-0.72201943397522,-0.269854962825775,0.681593775749207,-0.693611621856689,-0.233093708753586,0.637076318264008,-0.72201943397522,-0.269854962825775,0.760299623012543,-0.590544641017914,-0.270557761192322,0.636350333690643,-0.635093867778778,-0.437851399183273,0.698465406894684,-0.623523533344269,-0.351232528686523,0.628200471401215,-0.704455494880676,-0.33031290769577,0.731234729290009,-0.623825192451477,-0.275930613279343,0.681593775749207,-0.693611621856689,-0.233093708753586,0.833641350269318,-0.525093495845795,-0.171226531267166,0.731234729290009,-0.623825192451477,-0.275930613279343,0.816489040851593,-0.542169451713562,-0.198488667607307,0.686333000659943,-0.686554372310638,-0.239979341626167,0.868540942668915,-0.465822398662567,-0.169251188635826,0.816489040851593,-0.542169451713562,-0.198488667607307,0.833641350269318,-0.525093495845795,-0.171226531267166,0.844900012016296,-0.476962566375732,-0.242178663611412,0.863511562347412,-0.439077287912369,-0.248110666871071,0.868540942668915,-0.465822398662567,-0.169251188635826,0.844900012016296,-0.476962566375732,-0.242178663611412,0.740516245365143,-0.540427803993225,-0.399466246366501,0.842103660106659,-0.369900792837143,-0.392472505569458,0.40187931060791,-0.311384826898575,-0.861122786998749,\r\n0.462845683097839,-0.481603145599365,-0.744198977947235,0.345387160778046,-0.446389526128769,-0.825496256351471,0.322173118591309,-0.289665639400482,-0.901275873184204,0.244076743721962,-0.198354139924049,-0.949253439903259,0.229662716388702,-0.363244950771332,-0.902944087982178,0.244076743721962,-0.198354139924049,-0.949253439903259,0.152033463120461,-0.110295854508877,-0.982201874256134,0.122939303517342,-0.290094465017319,-0.949068546295166,0.355026990175247,-0.413212448358536,-0.838576853275299,0.322173118591309,-0.289665639400482,-0.901275873184204,0.229662716388702,-0.363244950771332,-0.902944087982178,0.355026990175247,-0.413212448358536,-0.838576853275299,0.345387160778046,-0.446389526128769,-0.825496256351471,0.454459249973297,-0.464697241783142,-0.759949445724487,0.0668484568595886,-0.200863599777222,-0.977335691452026,0.122939303517342,-0.290094465017319,-0.949068546295166,0.152033463120461,-0.110295854508877,-0.982201874256134,0.5339475274086,-0.50883013010025,-0.67527174949646,0.462845683097839,-0.481603145599365,-0.744198977947235,0.609108924865723,-0.457159668207169,-0.6480672955513,0.625402212142944,-0.541607260704041,-0.561723649501801,0.609108924865723,-0.457159668207169,-0.6480672955513,0.692213118076324,-0.530620515346527,-0.489165276288986,0.740516245365143,-0.540427803993225,-0.399466246366501,0.692213118076324,-0.530620515346527,-0.489165276288986,0.842103660106659,-0.369900792837143,-0.392472505569458,0.897641539573669,-0.436258971691132,-0.0625893548130989,0.900867700576782,-0.432963192462921,0.0313084051012993,0.838153898715973,-0.545166492462158,0.0170739125460386,0.838153898715973,-0.545166492462158,0.0170739125460386,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.834791243076324,-0.542406439781189,-0.0944395735859871,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.730987548828125,-0.669993996620178,-0.129480138421059,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.672300696372986,-0.728870332241058,-0.129459545016289,0.670491278171539,-0.720428645610809,-0.177267625927925,\r\n0.730987548828125,-0.669993996620178,-0.129480138421059,0.676041305065155,-0.689907848834991,-0.258834421634674,0.64277309179306,-0.732212126255035,-0.225184664130211,0.642943143844604,-0.667517006397247,-0.375559538602829,0.670491278171539,-0.720428645610809,-0.177267625927925,0.64277309179306,-0.732212126255035,-0.225184664130211,0.676041305065155,-0.689907848834991,-0.258834421634674,0.642943143844604,-0.667517006397247,-0.375559538602829,0.584830045700073,-0.714724719524384,-0.383591204881668,0.588127493858337,-0.649973452091217,-0.481290459632874,0.520097196102142,-0.707392394542694,-0.478638410568237,0.588127493858337,-0.649973452091217,-0.481290459632874,0.584830045700073,-0.714724719524384,-0.383591204881668,0.43299400806427,-0.726230382919312,-0.533952713012695,0.520097196102142,-0.707392394542694,-0.478638410568237,0.450616866350174,-0.745077192783356,-0.491735965013504,0.435529619455338,-0.723916411399841,-0.535031616687775,0.488681137561798,-0.689758539199829,-0.534250617027283,0.37244975566864,-0.693966269493103,-0.616191387176514,0.435529619455338,-0.723916411399841,-0.535031616687775,0.36204394698143,-0.72858852148056,-0.581448972225189,0.399704217910767,-0.751795470714569,-0.524442553520203,0.451299548149109,-0.642460227012634,-0.619332909584045,0.360432863235474,-0.641102433204651,-0.677551209926605,0.488681137561798,-0.689758539199829,-0.534250617027283,0.43299400806427,-0.726230382919312,-0.533952713012695,0.450616866350174,-0.745077192783356,-0.491735965013504,0.399704217910767,-0.751795470714569,-0.524442553520203,0.180091679096222,-0.641555309295654,-0.745636463165283,0.136885747313499,-0.531291663646698,-0.836057007312775,0.252474337816238,-0.574197947978973,-0.778815269470215,0.139880657196045,-0.508958041667938,-0.849349737167358,0.136885747313499,-0.531291663646698,-0.836057007312775,0.160525009036064,-0.568779289722443,-0.806673228740692,0.468646138906479,-0.680307328701019,-0.563517987728119,0.384783744812012,-0.593780219554901,-0.706658601760864,0.451299548149109,-0.642460227012634,-0.619332909584045,\r\n0.384783744812012,-0.593780219554901,-0.706658601760864,0.468646138906479,-0.680307328701019,-0.563517987728119,0.336410313844681,-0.681464970111847,-0.64994877576828,0.336410313844681,-0.681464970111847,-0.64994877576828,0.251641809940338,-0.678631186485291,-0.690026044845581,0.252474337816238,-0.574197947978973,-0.778815269470215,0.768582284450531,-0.572151124477386,0.28622379899025,0.818790853023529,-0.559719562530518,0.127653434872627,0.846029579639435,-0.472371816635132,0.247181579470634,0.768582284450531,-0.572151124477386,0.28622379899025,0.753288626670837,-0.495452642440796,0.432530701160431,0.707140326499939,-0.573814988136292,0.41314497590065,0.707140326499939,-0.573814988136292,0.41314497590065,0.753288626670837,-0.495452642440796,0.432530701160431,0.667404115200043,-0.580221951007843,0.466812670230865,0.818790853023529,-0.559719562530518,0.127653434872627,0.838153898715973,-0.545166492462158,0.0170739125460386,0.886249542236328,-0.450310558080673,0.108543790876865,0.886249542236328,-0.450310558080673,0.108543790876865,0.838153898715973,-0.545166492462158,0.0170739125460386,0.900867700576782,-0.432963192462921,0.0313084051012993,0.627027690410614,-0.611715376377106,0.48232826590538,0.614880979061127,-0.583878040313721,0.530101537704468,0.56738144159317,-0.656154334545136,0.49753350019455,0.627027690410614,-0.611715376377106,0.48232826590538,0.667404115200043,-0.580221951007843,0.466812670230865,0.64184844493866,-0.551427960395813,0.53287672996521,0.350975513458252,-0.894027888774872,0.2784423828125,0.30123370885849,-0.885816931724548,0.352968126535416,0.29641729593277,-0.909375309944153,0.291844546794891,0.385232716798782,-0.857079148292542,0.342068582773209,0.350975513458252,-0.894027888774872,0.2784423828125,0.393164664506912,-0.882657408714294,0.257560521364212,0.393164664506912,-0.882657408714294,0.257560521364212,0.424195379018784,-0.872898995876312,0.241050705313683,0.435038894414902,-0.843002140522003,0.316367536783218,0.48275163769722,-0.822339177131653,0.301179498434067,0.515483140945435,-0.776065051555634,0.363318026065826,\r\n0.435038894414902,-0.843002140522003,0.316367536783218,0.29641729593277,-0.909375309944153,0.291844546794891,0.243824228644371,-0.914848804473877,0.3218714594841,0.265630483627319,-0.930368602275848,0.252694606781006,0.583477735519409,-0.682602345943451,0.440008461475372,0.56738144159317,-0.656154334545136,0.49753350019455,0.524366796016693,-0.722476303577423,0.450629830360413,0.515483140945435,-0.776065051555634,0.363318026065826,0.583477735519409,-0.682602345943451,0.440008461475372,0.524366796016693,-0.722476303577423,0.450629830360413,0.160525009036064,-0.568779289722443,-0.806673228740692,0.210522830486298,-0.55304890871048,-0.806112170219421,0.176205426454544,-0.468516409397125,-0.865704298019409,0.436568349599838,-0.543877005577087,-0.716663002967834,0.395704209804535,-0.535148203372955,-0.746347367763519,0.266495436429977,-0.512512028217316,-0.816278994083405,0.240207985043526,-0.626799941062927,-0.741229891777039,0.266495436429977,-0.512512028217316,-0.816278994083405,0.210522830486298,-0.55304890871048,-0.806112170219421,0.436568349599838,-0.543877005577087,-0.716663002967834,0.55337256193161,-0.587979435920715,-0.589965105056763,0.395704209804535,-0.535148203372955,-0.746347367763519,0.636350333690643,-0.635093867778778,-0.437851399183273,0.55337256193161,-0.587979435920715,-0.589965105056763,0.610610723495483,-0.621021032333374,-0.491413503885269,0.760299623012543,-0.590544641017914,-0.270557761192322,0.637076318264008,-0.72201943397522,-0.269854962825775,0.698465406894684,-0.623523533344269,-0.351232528686523,0.821296393871307,-0.541034460067749,-0.180980116128922,0.681593775749207,-0.693611621856689,-0.233093708753586,0.760299623012543,-0.590544641017914,-0.270557761192322,0.636350333690643,-0.635093867778778,-0.437851399183273,0.610610723495483,-0.621021032333374,-0.491413503885269,0.698465406894684,-0.623523533344269,-0.351232528686523,0.821296393871307,-0.541034460067749,-0.180980116128922,0.833641350269318,-0.525093495845795,-0.171226531267166,0.681593775749207,-0.693611621856689,-0.233093708753586,\r\n0.731234729290009,-0.623825192451477,-0.275930613279343,0.833641350269318,-0.525093495845795,-0.171226531267166,0.816489040851593,-0.542169451713562,-0.198488667607307,0.868540942668915,-0.465822398662567,-0.169251188635826,0.833641350269318,-0.525093495845795,-0.171226531267166,0.857326984405518,-0.49099725484848,-0.154635354876518,0.843123972415924,-0.502171218395233,-0.192265182733536,0.844900012016296,-0.476962566375732,-0.242178663611412,0.868540942668915,-0.465822398662567,-0.169251188635826,0.844900012016296,-0.476962566375732,-0.242178663611412,0.787794351577759,-0.542647063732147,-0.291400134563446,0.740516245365143,-0.540427803993225,-0.399466246366501,0.462845683097839,-0.481603145599365,-0.744198977947235,0.454459249973297,-0.464697241783142,-0.759949445724487,0.345387160778046,-0.446389526128769,-0.825496256351471,0.322173118591309,-0.289665639400482,-0.901275873184204,0.32833331823349,-0.32012090086937,-0.888661742210388,0.244076743721962,-0.198354139924049,-0.949253439903259,0.202221229672432,-0.227769672870636,-0.952484905719757,0.152033463120461,-0.110295854508877,-0.982201874256134,0.244076743721962,-0.198354139924049,-0.949253439903259,0.446808993816376,-0.372137695550919,-0.813557088375092,0.322173118591309,-0.289665639400482,-0.901275873184204,0.355026990175247,-0.413212448358536,-0.838576853275299,0.446808993816376,-0.372137695550919,-0.813557088375092,0.355026990175247,-0.413212448358536,-0.838576853275299,0.454459249973297,-0.464697241783142,-0.759949445724487,0.0668484568595886,-0.200863599777222,-0.977335691452026,0.152033463120461,-0.110295854508877,-0.982201874256134,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.462845683097839,-0.481603145599365,-0.744198977947235,0.5339475274086,-0.50883013010025,-0.67527174949646,0.454459249973297,-0.464697241783142,-0.759949445724487,0.5339475274086,-0.50883013010025,-0.67527174949646,0.609108924865723,-0.457159668207169,-0.6480672955513,0.625402212142944,-0.541607260704041,-0.561723649501801,0.692213118076324,-0.530620515346527,-0.489165276288986,\r\n0.740516245365143,-0.540427803993225,-0.399466246366501,0.625402212142944,-0.541607260704041,-0.561723649501801,0.754258990287781,-0.654953360557556,0.0461443923413754,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.838153898715973,-0.545166492462158,0.0170739125460386,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.672300696372986,-0.728870332241058,-0.129459545016289,0.730987548828125,-0.669993996620178,-0.129480138421059,0.767698884010315,-0.638492465019226,-0.0544574372470379,0.754258990287781,-0.654953360557556,0.0461443923413754,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.672300696372986,-0.728870332241058,-0.129459545016289,0.650623798370361,-0.745788633823395,-0.143135666847229,0.670491278171539,-0.720428645610809,-0.177267625927925,0.584830045700073,-0.714724719524384,-0.383591204881668,0.642943143844604,-0.667517006397247,-0.375559538602829,0.64277309179306,-0.732212126255035,-0.225184664130211,0.650623798370361,-0.745788633823395,-0.143135666847229,0.64277309179306,-0.732212126255035,-0.225184664130211,0.670491278171539,-0.720428645610809,-0.177267625927925,0.520097196102142,-0.707392394542694,-0.478638410568237,0.584830045700073,-0.714724719524384,-0.383591204881668,0.505868852138519,-0.75824236869812,-0.411296755075455,0.505868852138519,-0.75824236869812,-0.411296755075455,0.450616866350174,-0.745077192783356,-0.491735965013504,0.520097196102142,-0.707392394542694,-0.478638410568237,0.488681137561798,-0.689758539199829,-0.534250617027283,0.435529619455338,-0.723916411399841,-0.535031616687775,0.488046586513519,-0.74779349565506,-0.450128018856049,0.458293408155441,-0.766017436981201,-0.450759679079056,0.435529619455338,-0.723916411399841,-0.535031616687775,0.399704217910767,-0.751795470714569,-0.524442553520203,0.468646138906479,-0.680307328701019,-0.563517987728119,0.451299548149109,-0.642460227012634,-0.619332909584045,0.488681137561798,-0.689758539199829,-0.534250617027283,0.450616866350174,-0.745077192783356,-0.491735965013504,0.458293408155441,-0.766017436981201,-0.450759679079056,\r\n0.399704217910767,-0.751795470714569,-0.524442553520203,0.180091679096222,-0.641555309295654,-0.745636463165283,0.156465515494347,-0.625400364398956,-0.764455854892731,0.136885747313499,-0.531291663646698,-0.836057007312775,0.251641809940338,-0.678631186485291,-0.690026044845581,0.180091679096222,-0.641555309295654,-0.745636463165283,0.252474337816238,-0.574197947978973,-0.778815269470215,0.156465515494347,-0.625400364398956,-0.764455854892731,0.160525009036064,-0.568779289722443,-0.806673228740692,0.136885747313499,-0.531291663646698,-0.836057007312775,0.371241062879562,-0.748905003070831,-0.548927307128906,0.336410313844681,-0.681464970111847,-0.64994877576828,0.468646138906479,-0.680307328701019,-0.563517987728119,0.336410313844681,-0.681464970111847,-0.64994877576828,0.28491136431694,-0.794103562831879,-0.536865890026093,0.251641809940338,-0.678631186485291,-0.690026044845581,0.768582284450531,-0.572151124477386,0.28622379899025,0.731265127658844,-0.654688775539398,0.191399440169334,0.818790853023529,-0.559719562530518,0.127653434872627,0.768582284450531,-0.572151124477386,0.28622379899025,0.707140326499939,-0.573814988136292,0.41314497590065,0.681099355220795,-0.635966658592224,0.362835854291916,0.681099355220795,-0.635966658592224,0.362835854291916,0.707140326499939,-0.573814988136292,0.41314497590065,0.667404115200043,-0.580221951007843,0.466812670230865,0.754258990287781,-0.654953360557556,0.0461443923413754,0.838153898715973,-0.545166492462158,0.0170739125460386,0.818790853023529,-0.559719562530518,0.127653434872627,0.583477735519409,-0.682602345943451,0.440008461475372,0.627027690410614,-0.611715376377106,0.48232826590538,0.56738144159317,-0.656154334545136,0.49753350019455,0.627027690410614,-0.611715376377106,0.48232826590538,0.62207818031311,-0.69235497713089,0.365599781274796,0.667404115200043,-0.580221951007843,0.466812670230865,0.29641729593277,-0.909375309944153,0.291844546794891,0.332043319940567,-0.919685900211334,0.209582284092903,0.350975513458252,-0.894027888774872,0.2784423828125,0.350975513458252,-0.894027888774872,0.2784423828125,\r\n0.332043319940567,-0.919685900211334,0.209582284092903,0.393164664506912,-0.882657408714294,0.257560521364212,0.393164664506912,-0.882657408714294,0.257560521364212,0.399795562028885,-0.895191431045532,0.196966111660004,0.424195379018784,-0.872898995876312,0.241050705313683,0.424195379018784,-0.872898995876312,0.241050705313683,0.464682877063751,-0.856969356536865,0.222874879837036,0.435038894414902,-0.843002140522003,0.316367536783218,0.48275163769722,-0.822339177131653,0.301179498434067,0.548576772212982,-0.790987432003021,0.270928710699081,0.515483140945435,-0.776065051555634,0.363318026065826,0.48275163769722,-0.822339177131653,0.301179498434067,0.435038894414902,-0.843002140522003,0.316367536783218,0.464682877063751,-0.856969356536865,0.222874879837036,0.29641729593277,-0.909375309944153,0.291844546794891,0.265630483627319,-0.930368602275848,0.252694606781006,0.332043319940567,-0.919685900211334,0.209582284092903,0.583477735519409,-0.682602345943451,0.440008461475372,0.515483140945435,-0.776065051555634,0.363318026065826,0.62207818031311,-0.69235497713089,0.365599781274796,0.160525009036064,-0.568779289722443,-0.806673228740692,0.1958277374506,-0.644141137599945,-0.739414393901825,0.210522830486298,-0.55304890871048,-0.806112170219421,0.436568349599838,-0.543877005577087,-0.716663002967834,0.266495436429977,-0.512512028217316,-0.816278994083405,0.338613659143448,-0.627122759819031,-0.701468229293823,0.240207985043526,-0.626799941062927,-0.741229891777039,0.338613659143448,-0.627122759819031,-0.701468229293823,0.266495436429977,-0.512512028217316,-0.816278994083405,0.240207985043526,-0.626799941062927,-0.741229891777039,0.210522830486298,-0.55304890871048,-0.806112170219421,0.1958277374506,-0.644141137599945,-0.739414393901825,0.484327763319016,-0.60351550579071,-0.633399903774261,0.55337256193161,-0.587979435920715,-0.589965105056763,0.436568349599838,-0.543877005577087,-0.716663002967834,0.484327763319016,-0.60351550579071,-0.633399903774261,0.610610723495483,-0.621021032333374,-0.491413503885269,0.55337256193161,-0.587979435920715,-0.589965105056763,\r\n0.760299623012543,-0.590544641017914,-0.270557761192322,0.698465406894684,-0.623523533344269,-0.351232528686523,0.785150229930878,-0.55833500623703,-0.267957031726837,0.821296393871307,-0.541034460067749,-0.180980116128922,0.760299623012543,-0.590544641017914,-0.270557761192322,0.828979551792145,-0.518274247646332,-0.210201129317284,0.736960232257843,-0.58683443069458,-0.335432231426239,0.698465406894684,-0.623523533344269,-0.351232528686523,0.610610723495483,-0.621021032333374,-0.491413503885269,0.821296393871307,-0.541034460067749,-0.180980116128922,0.857326984405518,-0.49099725484848,-0.154635354876518,0.833641350269318,-0.525093495845795,-0.171226531267166,0.857326984405518,-0.49099725484848,-0.154635354876518,0.843123972415924,-0.502171218395233,-0.192265182733536,0.868540942668915,-0.465822398662567,-0.169251188635826,0.844900012016296,-0.476962566375732,-0.242178663611412,0.843123972415924,-0.502171218395233,-0.192265182733536,0.787794351577759,-0.542647063732147,-0.291400134563446,0.715816736221313,-0.595136523246765,-0.365265309810638,0.740516245365143,-0.540427803993225,-0.399466246366501,0.787794351577759,-0.542647063732147,-0.291400134563446,0.358130186796188,-0.436141282320023,-0.82554429769516,0.32833331823349,-0.32012090086937,-0.888661742210388,0.322173118591309,-0.289665639400482,-0.901275873184204,0.244076743721962,-0.198354139924049,-0.949253439903259,0.32833331823349,-0.32012090086937,-0.888661742210388,0.202221229672432,-0.227769672870636,-0.952484905719757,0.202221229672432,-0.227769672870636,-0.952484905719757,0.198604092001915,-0.220106452703476,-0.955044209957123,0.152033463120461,-0.110295854508877,-0.982201874256134,0.358130186796188,-0.436141282320023,-0.82554429769516,0.322173118591309,-0.289665639400482,-0.901275873184204,0.446808993816376,-0.372137695550919,-0.813557088375092,0.446808993816376,-0.372137695550919,-0.813557088375092,0.454459249973297,-0.464697241783142,-0.759949445724487,0.571815609931946,-0.449990481138229,-0.685955762863159,0.198604092001915,-0.220106452703476,-0.955044209957123,\r\n0.164365291595459,-0.0135819036513567,-0.986306011676788,0.152033463120461,-0.110295854508877,-0.982201874256134,0.5339475274086,-0.50883013010025,-0.67527174949646,0.571815609931946,-0.449990481138229,-0.685955762863159,0.454459249973297,-0.464697241783142,-0.759949445724487,0.5339475274086,-0.50883013010025,-0.67527174949646,0.625402212142944,-0.541607260704041,-0.561723649501801,0.571815609931946,-0.449990481138229,-0.685955762863159,0.646908581256866,-0.592556118965149,-0.479985743761063,0.625402212142944,-0.541607260704041,-0.561723649501801,0.740516245365143,-0.540427803993225,-0.399466246366501,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.649480879306793,-0.754826366901398,-0.091715469956398,0.672300696372986,-0.728870332241058,-0.129459545016289,0.754258990287781,-0.654953360557556,0.0461443923413754,0.688948214054108,-0.722849011421204,0.0532872155308723,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.672300696372986,-0.728870332241058,-0.129459545016289,0.649480879306793,-0.754826366901398,-0.091715469956398,0.650623798370361,-0.745788633823395,-0.143135666847229,0.584830045700073,-0.714724719524384,-0.383591204881668,0.64277309179306,-0.732212126255035,-0.225184664130211,0.556405186653137,-0.778175830841064,-0.291299909353256,0.62274956703186,-0.772313833236694,-0.125355437397957,0.64277309179306,-0.732212126255035,-0.225184664130211,0.650623798370361,-0.745788633823395,-0.143135666847229,0.584830045700073,-0.714724719524384,-0.383591204881668,0.556405186653137,-0.778175830841064,-0.291299909353256,0.505868852138519,-0.75824236869812,-0.411296755075455,0.458293408155441,-0.766017436981201,-0.450759679079056,0.450616866350174,-0.745077192783356,-0.491735965013504,0.505868852138519,-0.75824236869812,-0.411296755075455,0.458293408155441,-0.766017436981201,-0.450759679079056,0.488046586513519,-0.74779349565506,-0.450128018856049,0.435529619455338,-0.723916411399841,-0.535031616687775,0.488681137561798,-0.689758539199829,-0.534250617027283,0.488046586513519,-0.74779349565506,-0.450128018856049,\r\n0.464058756828308,-0.745718419551849,-0.478072553873062,0.468646138906479,-0.680307328701019,-0.563517987728119,0.488681137561798,-0.689758539199829,-0.534250617027283,0.464058756828308,-0.745718419551849,-0.478072553873062,0.180091679096222,-0.641555309295654,-0.745636463165283,0.220006495714188,-0.740315794944763,-0.635239720344543,0.156465515494347,-0.625400364398956,-0.764455854892731,0.251641809940338,-0.678631186485291,-0.690026044845581,0.241534113883972,-0.764366388320923,-0.597833693027496,0.180091679096222,-0.641555309295654,-0.745636463165283,0.156465515494347,-0.625400364398956,-0.764455854892731,0.191041350364685,-0.669448435306549,-0.717873215675354,0.160525009036064,-0.568779289722443,-0.806673228740692,0.371241062879562,-0.748905003070831,-0.548927307128906,0.28491136431694,-0.794103562831879,-0.536865890026093,0.336410313844681,-0.681464970111847,-0.64994877576828,0.371241062879562,-0.748905003070831,-0.548927307128906,0.468646138906479,-0.680307328701019,-0.563517987728119,0.464058756828308,-0.745718419551849,-0.478072553873062,0.241534113883972,-0.764366388320923,-0.597833693027496,0.251641809940338,-0.678631186485291,-0.690026044845581,0.28491136431694,-0.794103562831879,-0.536865890026093,0.768582284450531,-0.572151124477386,0.28622379899025,0.681099355220795,-0.635966658592224,0.362835854291916,0.731265127658844,-0.654688775539398,0.191399440169334,0.818790853023529,-0.559719562530518,0.127653434872627,0.731265127658844,-0.654688775539398,0.191399440169334,0.754258990287781,-0.654953360557556,0.0461443923413754,0.667404115200043,-0.580221951007843,0.466812670230865,0.62207818031311,-0.69235497713089,0.365599781274796,0.681099355220795,-0.635966658592224,0.362835854291916,0.583477735519409,-0.682602345943451,0.440008461475372,0.62207818031311,-0.69235497713089,0.365599781274796,0.627027690410614,-0.611715376377106,0.48232826590538,0.399795562028885,-0.895191431045532,0.196966111660004,0.393164664506912,-0.882657408714294,0.257560521364212,0.332043319940567,-0.919685900211334,0.209582284092903,\r\n0.399795562028885,-0.895191431045532,0.196966111660004,0.42962259054184,-0.88315612077713,0.18830694258213,0.424195379018784,-0.872898995876312,0.241050705313683,0.464682877063751,-0.856969356536865,0.222874879837036,0.424195379018784,-0.872898995876312,0.241050705313683,0.42962259054184,-0.88315612077713,0.18830694258213,0.464682877063751,-0.856969356536865,0.222874879837036,0.548576772212982,-0.790987432003021,0.270928710699081,0.48275163769722,-0.822339177131653,0.301179498434067,0.548576772212982,-0.790987432003021,0.270928710699081,0.62207818031311,-0.69235497713089,0.365599781274796,0.515483140945435,-0.776065051555634,0.363318026065826,0.332043319940567,-0.919685900211334,0.209582284092903,0.265630483627319,-0.930368602275848,0.252694606781006,0.267794132232666,-0.944221198558807,0.191657438874245,0.191041350364685,-0.669448435306549,-0.717873215675354,0.1958277374506,-0.644141137599945,-0.739414393901825,0.160525009036064,-0.568779289722443,-0.806673228740692,0.484327763319016,-0.60351550579071,-0.633399903774261,0.436568349599838,-0.543877005577087,-0.716663002967834,0.338613659143448,-0.627122759819031,-0.701468229293823,0.238263323903084,-0.710022151470184,-0.662645518779755,0.338613659143448,-0.627122759819031,-0.701468229293823,0.240207985043526,-0.626799941062927,-0.741229891777039,0.217165425419807,-0.755588829517365,-0.618000328540802,0.240207985043526,-0.626799941062927,-0.741229891777039,0.1958277374506,-0.644141137599945,-0.739414393901825,0.484327763319016,-0.60351550579071,-0.633399903774261,0.461897224187851,-0.713753640651703,-0.526504039764404,0.610610723495483,-0.621021032333374,-0.491413503885269,0.736960232257843,-0.58683443069458,-0.335432231426239,0.785150229930878,-0.55833500623703,-0.267957031726837,0.698465406894684,-0.623523533344269,-0.351232528686523,0.828979551792145,-0.518274247646332,-0.210201129317284,0.760299623012543,-0.590544641017914,-0.270557761192322,0.785150229930878,-0.55833500623703,-0.267957031726837,0.821296393871307,-0.541034460067749,-0.180980116128922,0.828979551792145,-0.518274247646332,-0.210201129317284,\r\n0.857326984405518,-0.49099725484848,-0.154635354876518,0.610610723495483,-0.621021032333374,-0.491413503885269,0.666936457157135,-0.647988200187683,-0.367840796709061,0.736960232257843,-0.58683443069458,-0.335432231426239,0.843123972415924,-0.502171218395233,-0.192265182733536,0.857326984405518,-0.49099725484848,-0.154635354876518,0.787183046340942,-0.589440822601318,-0.181389316916466,0.843123972415924,-0.502171218395233,-0.192265182733536,0.786391735076904,-0.55153489112854,-0.278203427791595,0.787794351577759,-0.542647063732147,-0.291400134563446,0.715816736221313,-0.595136523246765,-0.365265309810638,0.646908581256866,-0.592556118965149,-0.479985743761063,0.740516245365143,-0.540427803993225,-0.399466246366501,0.715816736221313,-0.595136523246765,-0.365265309810638,0.787794351577759,-0.542647063732147,-0.291400134563446,0.707827150821686,-0.636716306209564,-0.305896669626236,0.358130186796188,-0.436141282320023,-0.82554429769516,0.248133972287178,-0.733278512954712,-0.633033990859985,0.32833331823349,-0.32012090086937,-0.888661742210388,0.32833331823349,-0.32012090086937,-0.888661742210388,0.271798759698868,-0.455852448940277,-0.847539901733398,0.202221229672432,-0.227769672870636,-0.952484905719757,0.202221229672432,-0.227769672870636,-0.952484905719757,0.17342820763588,-0.612953305244446,-0.770850658416748,0.198604092001915,-0.220106452703476,-0.955044209957123,0.446808993816376,-0.372137695550919,-0.813557088375092,0.551910519599915,-0.482124388217926,-0.680404841899872,0.358130186796188,-0.436141282320023,-0.82554429769516,0.571815609931946,-0.449990481138229,-0.685955762863159,0.551910519599915,-0.482124388217926,-0.680404841899872,0.446808993816376,-0.372137695550919,-0.813557088375092,0.198604092001915,-0.220106452703476,-0.955044209957123,0.176001712679863,-0.21756748855114,-0.960045695304871,0.164365291595459,-0.0135819036513567,-0.986306011676788,0.625402212142944,-0.541607260704041,-0.561723649501801,0.603388786315918,-0.612666845321655,-0.510451853275299,0.571815609931946,-0.449990481138229,-0.685955762863159,\r\n0.603388786315918,-0.612666845321655,-0.510451853275299,0.625402212142944,-0.541607260704041,-0.561723649501801,0.646908581256866,-0.592556118965149,-0.479985743761063,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.649480879306793,-0.754826366901398,-0.091715469956398,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.688948214054108,-0.722849011421204,0.0532872155308723,0.754258990287781,-0.654953360557556,0.0461443923413754,0.680770039558411,-0.72195965051651,0.123799256980419,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.701232850551605,-0.711355209350586,-0.0473938658833504,0.688948214054108,-0.722849011421204,0.0532872155308723,0.649480879306793,-0.754826366901398,-0.091715469956398,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.650623798370361,-0.745788633823395,-0.143135666847229,0.556405186653137,-0.778175830841064,-0.291299909353256,0.64277309179306,-0.732212126255035,-0.225184664130211,0.589184522628784,-0.784888625144959,-0.191862627863884,0.62274956703186,-0.772313833236694,-0.125355437397957,0.589184522628784,-0.784888625144959,-0.191862627863884,0.64277309179306,-0.732212126255035,-0.225184664130211,0.62274956703186,-0.772313833236694,-0.125355437397957,0.650623798370361,-0.745788633823395,-0.143135666847229,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.505868852138519,-0.75824236869812,-0.411296755075455,0.556405186653137,-0.778175830841064,-0.291299909353256,0.501381635665894,-0.81242173910141,-0.297636061906815,0.458293408155441,-0.766017436981201,-0.450759679079056,0.505868852138519,-0.75824236869812,-0.411296755075455,0.501381635665894,-0.81242173910141,-0.297636061906815,0.439893841743469,-0.841007113456726,-0.314960807561874,0.488046586513519,-0.74779349565506,-0.450128018856049,0.458293408155441,-0.766017436981201,-0.450759679079056,0.410102128982544,-0.830467700958252,-0.377013951539993,0.464058756828308,-0.745718419551849,-0.478072553873062,0.488046586513519,-0.74779349565506,-0.450128018856049,0.220006495714188,-0.740315794944763,-0.635239720344543,\r\n0.180091679096222,-0.641555309295654,-0.745636463165283,0.183669075369835,-0.746026635169983,-0.640085756778717,0.191041350364685,-0.669448435306549,-0.717873215675354,0.156465515494347,-0.625400364398956,-0.764455854892731,0.220006495714188,-0.740315794944763,-0.635239720344543,0.241534113883972,-0.764366388320923,-0.597833693027496,0.183669075369835,-0.746026635169983,-0.640085756778717,0.180091679096222,-0.641555309295654,-0.745636463165283,0.371241062879562,-0.748905003070831,-0.548927307128906,0.334189713001251,-0.826843500137329,-0.452379167079926,0.28491136431694,-0.794103562831879,-0.536865890026093,0.371241062879562,-0.748905003070831,-0.548927307128906,0.464058756828308,-0.745718419551849,-0.478072553873062,0.334189713001251,-0.826843500137329,-0.452379167079926,0.241534113883972,-0.764366388320923,-0.597833693027496,0.28491136431694,-0.794103562831879,-0.536865890026093,0.274392902851105,-0.859211027622223,-0.431815832853317,0.653657913208008,-0.712258100509644,0.255772441625595,0.731265127658844,-0.654688775539398,0.191399440169334,0.681099355220795,-0.635966658592224,0.362835854291916,0.680770039558411,-0.72195965051651,0.123799256980419,0.754258990287781,-0.654953360557556,0.0461443923413754,0.731265127658844,-0.654688775539398,0.191399440169334,0.681099355220795,-0.635966658592224,0.362835854291916,0.62207818031311,-0.69235497713089,0.365599781274796,0.653657913208008,-0.712258100509644,0.255772441625595,0.399795562028885,-0.895191431045532,0.196966111660004,0.332043319940567,-0.919685900211334,0.209582284092903,0.361380815505981,-0.916058123111725,0.173900216817856,0.399795562028885,-0.895191431045532,0.196966111660004,0.416236251592636,-0.897680997848511,0.144624069333076,0.42962259054184,-0.88315612077713,0.18830694258213,0.464682877063751,-0.856969356536865,0.222874879837036,0.42962259054184,-0.88315612077713,0.18830694258213,0.445550888776779,-0.88513058423996,0.134268999099731,0.54208517074585,-0.82343578338623,0.167621225118637,0.548576772212982,-0.790987432003021,0.270928710699081,0.464682877063751,-0.856969356536865,0.222874879837036,\r\n0.598068118095398,-0.76970362663269,0.223317578434944,0.62207818031311,-0.69235497713089,0.365599781274796,0.548576772212982,-0.790987432003021,0.270928710699081,0.332043319940567,-0.919685900211334,0.209582284092903,0.267794132232666,-0.944221198558807,0.191657438874245,0.299707859754562,-0.935646414756775,0.186388939619064,0.188441410660744,-0.769905269145966,-0.609701156616211,0.1958277374506,-0.644141137599945,-0.739414393901825,0.191041350364685,-0.669448435306549,-0.717873215675354,0.461897224187851,-0.713753640651703,-0.526504039764404,0.484327763319016,-0.60351550579071,-0.633399903774261,0.338613659143448,-0.627122759819031,-0.701468229293823,0.285710036754608,-0.730037331581116,-0.620818078517914,0.338613659143448,-0.627122759819031,-0.701468229293823,0.238263323903084,-0.710022151470184,-0.662645518779755,0.217165425419807,-0.755588829517365,-0.618000328540802,0.238263323903084,-0.710022151470184,-0.662645518779755,0.240207985043526,-0.626799941062927,-0.741229891777039,0.188441410660744,-0.769905269145966,-0.609701156616211,0.217165425419807,-0.755588829517365,-0.618000328540802,0.1958277374506,-0.644141137599945,-0.739414393901825,0.610610723495483,-0.621021032333374,-0.491413503885269,0.461897224187851,-0.713753640651703,-0.526504039764404,0.666936457157135,-0.647988200187683,-0.367840796709061,0.736960232257843,-0.58683443069458,-0.335432231426239,0.798614323139191,-0.559031248092651,-0.222932904958725,0.785150229930878,-0.55833500623703,-0.267957031726837,0.798614323139191,-0.559031248092651,-0.222932904958725,0.828979551792145,-0.518274247646332,-0.210201129317284,0.785150229930878,-0.55833500623703,-0.267957031726837,0.839303970336914,-0.518018901348114,-0.164999634027481,0.857326984405518,-0.49099725484848,-0.154635354876518,0.828979551792145,-0.518274247646332,-0.210201129317284,0.857326984405518,-0.49099725484848,-0.154635354876518,0.858033835887909,-0.491454541683197,-0.149164363741875,0.787183046340942,-0.589440822601318,-0.181389316916466,0.786391735076904,-0.55153489112854,-0.278203427791595,\r\n0.843123972415924,-0.502171218395233,-0.192265182733536,0.787183046340942,-0.589440822601318,-0.181389316916466,0.787794351577759,-0.542647063732147,-0.291400134563446,0.786391735076904,-0.55153489112854,-0.278203427791595,0.707827150821686,-0.636716306209564,-0.305896669626236,0.715816736221313,-0.595136523246765,-0.365265309810638,0.566555082798004,-0.755024790763855,-0.330079883337021,0.646908581256866,-0.592556118965149,-0.479985743761063,0.715816736221313,-0.595136523246765,-0.365265309810638,0.707827150821686,-0.636716306209564,-0.305896669626236,0.566555082798004,-0.755024790763855,-0.330079883337021,0.248133972287178,-0.733278512954712,-0.633033990859985,0.358130186796188,-0.436141282320023,-0.82554429769516,0.385798990726471,-0.698710918426514,-0.60246330499649,0.32833331823349,-0.32012090086937,-0.888661742210388,0.248133972287178,-0.733278512954712,-0.633033990859985,0.271798759698868,-0.455852448940277,-0.847539901733398,0.17342820763588,-0.612953305244446,-0.770850658416748,0.202221229672432,-0.227769672870636,-0.952484905719757,0.271798759698868,-0.455852448940277,-0.847539901733398,0.199778869748116,-0.533118605613709,-0.822114825248718,0.198604092001915,-0.220106452703476,-0.955044209957123,0.17342820763588,-0.612953305244446,-0.770850658416748,0.385798990726471,-0.698710918426514,-0.60246330499649,0.358130186796188,-0.436141282320023,-0.82554429769516,0.551910519599915,-0.482124388217926,-0.680404841899872,0.603388786315918,-0.612666845321655,-0.510451853275299,0.551910519599915,-0.482124388217926,-0.680404841899872,0.571815609931946,-0.449990481138229,-0.685955762863159,0.198604092001915,-0.220106452703476,-0.955044209957123,0.126468554139137,-0.451952517032623,-0.88303142786026,0.176001712679863,-0.21756748855114,-0.960045695304871,0.603388786315918,-0.612666845321655,-0.510451853275299,0.646908581256866,-0.592556118965149,-0.479985743761063,0.566555082798004,-0.755024790763855,-0.330079883337021,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.610448777675629,-0.792052865028381,-0.00210157781839371,\r\n0.649480879306793,-0.754826366901398,-0.091715469956398,0.634536504745483,-0.769953608512878,0.067340612411499,0.688948214054108,-0.722849011421204,0.0532872155308723,0.680770039558411,-0.72195965051651,0.123799256980419,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.688948214054108,-0.722849011421204,0.0532872155308723,0.634536504745483,-0.769953608512878,0.067340612411499,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.649480879306793,-0.754826366901398,-0.091715469956398,0.524328351020813,-0.826568782329559,-0.204606115818024,0.556405186653137,-0.778175830841064,-0.291299909353256,0.589184522628784,-0.784888625144959,-0.191862627863884,0.62274956703186,-0.772313833236694,-0.125355437397957,0.559909641742706,-0.818618893623352,-0.127922236919403,0.589184522628784,-0.784888625144959,-0.191862627863884,0.62274956703186,-0.772313833236694,-0.125355437397957,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.524328351020813,-0.826568782329559,-0.204606115818024,0.501381635665894,-0.81242173910141,-0.297636061906815,0.556405186653137,-0.778175830841064,-0.291299909353256,0.474240094423294,-0.809118270874023,-0.347021341323853,0.458293408155441,-0.766017436981201,-0.450759679079056,0.501381635665894,-0.81242173910141,-0.297636061906815,0.439893841743469,-0.841007113456726,-0.314960807561874,0.410102128982544,-0.830467700958252,-0.377013951539993,0.488046586513519,-0.74779349565506,-0.450128018856049,0.458293408155441,-0.766017436981201,-0.450759679079056,0.474240094423294,-0.809118270874023,-0.347021341323853,0.439893841743469,-0.841007113456726,-0.314960807561874,0.410102128982544,-0.830467700958252,-0.377013951539993,0.334189713001251,-0.826843500137329,-0.452379167079926,0.464058756828308,-0.745718419551849,-0.478072553873062,0.220006495714188,-0.740315794944763,-0.635239720344543,0.183669075369835,-0.746026635169983,-0.640085756778717,0.233927592635155,-0.842274844646454,-0.48564475774765,\r\n0.254022479057312,-0.786029696464539,-0.563586473464966,0.191041350364685,-0.669448435306549,-0.717873215675354,0.220006495714188,-0.740315794944763,-0.635239720344543,0.241534113883972,-0.764366388320923,-0.597833693027496,0.233927592635155,-0.842274844646454,-0.48564475774765,0.183669075369835,-0.746026635169983,-0.640085756778717,0.334189713001251,-0.826843500137329,-0.452379167079926,0.294162899255753,-0.89172351360321,-0.34394371509552,0.28491136431694,-0.794103562831879,-0.536865890026093,0.294162899255753,-0.89172351360321,-0.34394371509552,0.274392902851105,-0.859211027622223,-0.431815832853317,0.28491136431694,-0.794103562831879,-0.536865890026093,0.241534113883972,-0.764366388320923,-0.597833693027496,0.274392902851105,-0.859211027622223,-0.431815832853317,0.233927592635155,-0.842274844646454,-0.48564475774765,0.680770039558411,-0.72195965051651,0.123799256980419,0.731265127658844,-0.654688775539398,0.191399440169334,0.653657913208008,-0.712258100509644,0.255772441625595,0.598068118095398,-0.76970362663269,0.223317578434944,0.653657913208008,-0.712258100509644,0.255772441625595,0.62207818031311,-0.69235497713089,0.365599781274796,0.332043319940567,-0.919685900211334,0.209582284092903,0.299707859754562,-0.935646414756775,0.186388939619064,0.361380815505981,-0.916058123111725,0.173900216817856,0.416236251592636,-0.897680997848511,0.144624069333076,0.399795562028885,-0.895191431045532,0.196966111660004,0.361380815505981,-0.916058123111725,0.173900216817856,0.416236251592636,-0.897680997848511,0.144624069333076,0.445550888776779,-0.88513058423996,0.134268999099731,0.42962259054184,-0.88315612077713,0.18830694258213,0.464682877063751,-0.856969356536865,0.222874879837036,0.445550888776779,-0.88513058423996,0.134268999099731,0.489234805107117,-0.864750325679779,0.113384440541267,0.54208517074585,-0.82343578338623,0.167621225118637,0.598068118095398,-0.76970362663269,0.223317578434944,0.548576772212982,-0.790987432003021,0.270928710699081,0.54208517074585,-0.82343578338623,0.167621225118637,0.464682877063751,-0.856969356536865,0.222874879837036,\r\n0.489234805107117,-0.864750325679779,0.113384440541267,0.188441410660744,-0.769905269145966,-0.609701156616211,0.191041350364685,-0.669448435306549,-0.717873215675354,0.254022479057312,-0.786029696464539,-0.563586473464966,0.461897224187851,-0.713753640651703,-0.526504039764404,0.338613659143448,-0.627122759819031,-0.701468229293823,0.285710036754608,-0.730037331581116,-0.620818078517914,0.285710036754608,-0.730037331581116,-0.620818078517914,0.238263323903084,-0.710022151470184,-0.662645518779755,0.237382546067238,-0.800963044166565,-0.549643158912659,0.217165425419807,-0.755588829517365,-0.618000328540802,0.237382546067238,-0.800963044166565,-0.549643158912659,0.238263323903084,-0.710022151470184,-0.662645518779755,0.211453884840012,-0.867722153663635,-0.449828267097473,0.217165425419807,-0.755588829517365,-0.618000328540802,0.188441410660744,-0.769905269145966,-0.609701156616211,0.461897224187851,-0.713753640651703,-0.526504039764404,0.593249201774597,-0.720966875553131,-0.358136862516403,0.666936457157135,-0.647988200187683,-0.367840796709061,0.736960232257843,-0.58683443069458,-0.335432231426239,0.778610348701477,-0.587314128875732,-0.220970332622528,0.798614323139191,-0.559031248092651,-0.222932904958725,0.839303970336914,-0.518018901348114,-0.164999634027481,0.828979551792145,-0.518274247646332,-0.210201129317284,0.798614323139191,-0.559031248092651,-0.222932904958725,0.858033835887909,-0.491454541683197,-0.149164363741875,0.857326984405518,-0.49099725484848,-0.154635354876518,0.839303970336914,-0.518018901348114,-0.164999634027481,0.858033835887909,-0.491454541683197,-0.149164363741875,0.798410177230835,-0.586962759494781,-0.134223222732544,0.787183046340942,-0.589440822601318,-0.181389316916466,0.596324443817139,-0.744018852710724,-0.301385104656219,0.786391735076904,-0.55153489112854,-0.278203427791595,0.787183046340942,-0.589440822601318,-0.181389316916466,0.707827150821686,-0.636716306209564,-0.305896669626236,0.786391735076904,-0.55153489112854,-0.278203427791595,0.596324443817139,-0.744018852710724,-0.301385104656219,\r\n0.566555082798004,-0.755024790763855,-0.330079883337021,0.707827150821686,-0.636716306209564,-0.305896669626236,0.452243894338608,-0.865673661231995,-0.214672848582268,0.248133972287178,-0.733278512954712,-0.633033990859985,0.385798990726471,-0.698710918426514,-0.60246330499649,0.242208883166313,-0.897458732128143,-0.36864960193634,0.248133972287178,-0.733278512954712,-0.633033990859985,0.17342820763588,-0.612953305244446,-0.770850658416748,0.271798759698868,-0.455852448940277,-0.847539901733398,0.199778869748116,-0.533118605613709,-0.822114825248718,0.126468554139137,-0.451952517032623,-0.88303142786026,0.198604092001915,-0.220106452703476,-0.955044209957123,0.199778869748116,-0.533118605613709,-0.822114825248718,0.17342820763588,-0.612953305244446,-0.770850658416748,0.13045234978199,-0.822402536869049,-0.553747355937958,0.516441166400909,-0.698851525783539,-0.494868576526642,0.385798990726471,-0.698710918426514,-0.60246330499649,0.551910519599915,-0.482124388217926,-0.680404841899872,0.603388786315918,-0.612666845321655,-0.510451853275299,0.516441166400909,-0.698851525783539,-0.494868576526642,0.551910519599915,-0.482124388217926,-0.680404841899872,0.414952874183655,-0.863338530063629,-0.287159621715546,0.603388786315918,-0.612666845321655,-0.510451853275299,0.566555082798004,-0.755024790763855,-0.330079883337021,0.654519855976105,-0.756013512611389,-0.00687018828466535,0.634536504745483,-0.769953608512878,0.067340612411499,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.629978179931641,-0.763570070266724,0.141732469201088,0.634536504745483,-0.769953608512878,0.067340612411499,0.680770039558411,-0.72195965051651,0.123799256980419,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.625253319740295,-0.775462448596954,-0.0878421366214752,0.589184522628784,-0.784888625144959,-0.191862627863884,0.559909641742706,-0.818618893623352,-0.127922236919403,0.524328351020813,-0.826568782329559,-0.204606115818024,0.559909641742706,-0.818618893623352,-0.127922236919403,\r\n0.62274956703186,-0.772313833236694,-0.125355437397957,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.524328351020813,-0.826568782329559,-0.204606115818024,0.489237666130066,-0.854553043842316,-0.174314200878143,0.501381635665894,-0.81242173910141,-0.297636061906815,0.474240094423294,-0.809118270874023,-0.347021341323853,0.501381635665894,-0.81242173910141,-0.297636061906815,0.476224422454834,-0.841858744621277,-0.253937035799026,0.439893841743469,-0.841007113456726,-0.314960807561874,0.353582978248596,-0.892283499240875,-0.280729651451111,0.410102128982544,-0.830467700958252,-0.377013951539993,0.439893841743469,-0.841007113456726,-0.314960807561874,0.474240094423294,-0.809118270874023,-0.347021341323853,0.476224422454834,-0.841858744621277,-0.253937035799026,0.410102128982544,-0.830467700958252,-0.377013951539993,0.294162899255753,-0.89172351360321,-0.34394371509552,0.334189713001251,-0.826843500137329,-0.452379167079926,0.289625972509384,-0.854568600654602,-0.431079030036926,0.220006495714188,-0.740315794944763,-0.635239720344543,0.233927592635155,-0.842274844646454,-0.48564475774765,0.220006495714188,-0.740315794944763,-0.635239720344543,0.289625972509384,-0.854568600654602,-0.431079030036926,0.254022479057312,-0.786029696464539,-0.563586473464966,0.285124480724335,-0.901707291603088,-0.325004458427429,0.274392902851105,-0.859211027622223,-0.431815832853317,0.294162899255753,-0.89172351360321,-0.34394371509552,0.233927592635155,-0.842274844646454,-0.48564475774765,0.274392902851105,-0.859211027622223,-0.431815832853317,0.285124480724335,-0.901707291603088,-0.325004458427429,0.680770039558411,-0.72195965051651,0.123799256980419,0.653657913208008,-0.712258100509644,0.255772441625595,0.629978179931641,-0.763570070266724,0.141732469201088,0.598068118095398,-0.76970362663269,0.223317578434944,0.629978179931641,-0.763570070266724,0.141732469201088,0.653657913208008,-0.712258100509644,0.255772441625595,0.309051543474197,-0.939855754375458,0.145458459854126,0.361380815505981,-0.916058123111725,0.173900216817856,\r\n0.299707859754562,-0.935646414756775,0.186388939619064,0.412685573101044,-0.903518080711365,0.115523390471935,0.416236251592636,-0.897680997848511,0.144624069333076,0.361380815505981,-0.916058123111725,0.173900216817856,0.416236251592636,-0.897680997848511,0.144624069333076,0.434042096138,-0.897269129753113,0.0807184725999832,0.445550888776779,-0.88513058423996,0.134268999099731,0.458184748888016,-0.88761693239212,0.0469341315329075,0.489234805107117,-0.864750325679779,0.113384440541267,0.445550888776779,-0.88513058423996,0.134268999099731,0.591474115848541,-0.798871159553528,0.109375931322575,0.598068118095398,-0.76970362663269,0.223317578434944,0.54208517074585,-0.82343578338623,0.167621225118637,0.54208517074585,-0.82343578338623,0.167621225118637,0.489234805107117,-0.864750325679779,0.113384440541267,0.553909659385681,-0.827583372592926,0.0910476893186569,0.188441410660744,-0.769905269145966,-0.609701156616211,0.254022479057312,-0.786029696464539,-0.563586473464966,0.222455561161041,-0.872956335544586,-0.434120267629623,0.37223282456398,-0.738109529018402,-0.562704980373383,0.461897224187851,-0.713753640651703,-0.526504039764404,0.285710036754608,-0.730037331581116,-0.620818078517914,0.311445504426956,-0.780799031257629,-0.541622042655945,0.285710036754608,-0.730037331581116,-0.620818078517914,0.237382546067238,-0.800963044166565,-0.549643158912659,0.217165425419807,-0.755588829517365,-0.618000328540802,0.224150136113167,-0.85746818780899,-0.4631467461586,0.237382546067238,-0.800963044166565,-0.549643158912659,0.211453884840012,-0.867722153663635,-0.449828267097473,0.224150136113167,-0.85746818780899,-0.4631467461586,0.217165425419807,-0.755588829517365,-0.618000328540802,0.222455561161041,-0.872956335544586,-0.434120267629623,0.211453884840012,-0.867722153663635,-0.449828267097473,0.188441410660744,-0.769905269145966,-0.609701156616211,0.461897224187851,-0.713753640651703,-0.526504039764404,0.37223282456398,-0.738109529018402,-0.562704980373383,0.593249201774597,-0.720966875553131,-0.358136862516403,0.778610348701477,-0.587314128875732,-0.220970332622528,\r\n0.839303970336914,-0.518018901348114,-0.164999634027481,0.798614323139191,-0.559031248092651,-0.222932904958725,0.798410177230835,-0.586962759494781,-0.134223222732544,0.858033835887909,-0.491454541683197,-0.149164363741875,0.839303970336914,-0.518018901348114,-0.164999634027481,0.596324443817139,-0.744018852710724,-0.301385104656219,0.787183046340942,-0.589440822601318,-0.181389316916466,0.44307205080986,-0.882459819316864,-0.157961055636406,0.707827150821686,-0.636716306209564,-0.305896669626236,0.596324443817139,-0.744018852710724,-0.301385104656219,0.452243894338608,-0.865673661231995,-0.214672848582268,0.566555082798004,-0.755024790763855,-0.330079883337021,0.452243894338608,-0.865673661231995,-0.214672848582268,0.310342520475388,-0.937049448490143,-0.160080641508102,0.313239485025406,-0.883481502532959,-0.348340779542923,0.242208883166313,-0.897458732128143,-0.36864960193634,0.385798990726471,-0.698710918426514,-0.60246330499649,0.139191508293152,-0.949877917766571,-0.279923766851425,0.248133972287178,-0.733278512954712,-0.633033990859985,0.242208883166313,-0.897458732128143,-0.36864960193634,0.248133972287178,-0.733278512954712,-0.633033990859985,0.147956669330597,-0.913846909999847,-0.378143578767776,0.17342820763588,-0.612953305244446,-0.770850658416748,0.199778869748116,-0.533118605613709,-0.822114825248718,0.13045234978199,-0.822402536869049,-0.553747355937958,0.126468554139137,-0.451952517032623,-0.88303142786026,0.13045234978199,-0.822402536869049,-0.553747355937958,0.17342820763588,-0.612953305244446,-0.770850658416748,0.147956669330597,-0.913846909999847,-0.378143578767776,0.516441166400909,-0.698851525783539,-0.494868576526642,0.313239485025406,-0.883481502532959,-0.348340779542923,0.385798990726471,-0.698710918426514,-0.60246330499649,0.603388786315918,-0.612666845321655,-0.510451853275299,0.414952874183655,-0.863338530063629,-0.287159621715546,0.516441166400909,-0.698851525783539,-0.494868576526642,0.414952874183655,-0.863338530063629,-0.287159621715546,0.566555082798004,-0.755024790763855,-0.330079883337021,\r\n0.310342520475388,-0.937049448490143,-0.160080641508102,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.634536504745483,-0.769953608512878,0.067340612411499,0.590633690357208,-0.804468929767609,0.0630985647439957,0.629978179931641,-0.763570070266724,0.141732469201088,0.591474115848541,-0.798871159553528,0.109375931322575,0.634536504745483,-0.769953608512878,0.067340612411499,0.538187623023987,-0.842007577419281,0.0371108613908291,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.559909641742706,-0.818618893623352,-0.127922236919403,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.524328351020813,-0.826568782329559,-0.204606115818024,0.559909641742706,-0.818618893623352,-0.127922236919403,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.489237666130066,-0.854553043842316,-0.174314200878143,0.524328351020813,-0.826568782329559,-0.204606115818024,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.476224422454834,-0.841858744621277,-0.253937035799026,0.501381635665894,-0.81242173910141,-0.297636061906815,0.489237666130066,-0.854553043842316,-0.174314200878143,0.439893841743469,-0.841007113456726,-0.314960807561874,0.343513876199722,-0.913314461708069,-0.218757331371307,0.353582978248596,-0.892283499240875,-0.280729651451111,0.294162899255753,-0.89172351360321,-0.34394371509552,0.410102128982544,-0.830467700958252,-0.377013951539993,0.353582978248596,-0.892283499240875,-0.280729651451111,0.439893841743469,-0.841007113456726,-0.314960807561874,0.476224422454834,-0.841858744621277,-0.253937035799026,0.435058087110519,-0.879856407642365,-0.191251441836357,0.289625972509384,-0.854568600654602,-0.431079030036926,0.233927592635155,-0.842274844646454,-0.48564475774765,0.285124480724335,-0.901707291603088,-0.325004458427429,0.222455561161041,-0.872956335544586,-0.434120267629623,0.254022479057312,-0.786029696464539,-0.563586473464966,0.289625972509384,-0.854568600654602,-0.431079030036926,\r\n0.285124480724335,-0.901707291603088,-0.325004458427429,0.294162899255753,-0.89172351360321,-0.34394371509552,0.312246412038803,-0.921148121356964,-0.23235359787941,0.591474115848541,-0.798871159553528,0.109375931322575,0.629978179931641,-0.763570070266724,0.141732469201088,0.598068118095398,-0.76970362663269,0.223317578434944,0.309051543474197,-0.939855754375458,0.145458459854126,0.38189709186554,-0.916236162185669,0.121102415025234,0.361380815505981,-0.916058123111725,0.173900216817856,0.434042096138,-0.897269129753113,0.0807184725999832,0.416236251592636,-0.897680997848511,0.144624069333076,0.412685573101044,-0.903518080711365,0.115523390471935,0.412685573101044,-0.903518080711365,0.115523390471935,0.361380815505981,-0.916058123111725,0.173900216817856,0.402630776166916,-0.903153717517853,0.149002686142921,0.458184748888016,-0.88761693239212,0.0469341315329075,0.445550888776779,-0.88513058423996,0.134268999099731,0.434042096138,-0.897269129753113,0.0807184725999832,0.458184748888016,-0.88761693239212,0.0469341315329075,0.538187623023987,-0.842007577419281,0.0371108613908291,0.489234805107117,-0.864750325679779,0.113384440541267,0.553909659385681,-0.827583372592926,0.0910476893186569,0.591474115848541,-0.798871159553528,0.109375931322575,0.54208517074585,-0.82343578338623,0.167621225118637,0.489234805107117,-0.864750325679779,0.113384440541267,0.538187623023987,-0.842007577419281,0.0371108613908291,0.553909659385681,-0.827583372592926,0.0910476893186569,0.37223282456398,-0.738109529018402,-0.562704980373383,0.285710036754608,-0.730037331581116,-0.620818078517914,0.311445504426956,-0.780799031257629,-0.541622042655945,0.311445504426956,-0.780799031257629,-0.541622042655945,0.237382546067238,-0.800963044166565,-0.549643158912659,0.273695230484009,-0.885812759399414,-0.37473526597023,0.224150136113167,-0.85746818780899,-0.4631467461586,0.22250971198082,-0.895494341850281,-0.385459423065186,0.237382546067238,-0.800963044166565,-0.549643158912659,0.211453884840012,-0.867722153663635,-0.449828267097473,0.21283908188343,-0.932673692703247,-0.29123729467392,\r\n0.224150136113167,-0.85746818780899,-0.4631467461586,0.222455561161041,-0.872956335544586,-0.434120267629623,0.206492960453033,-0.929435670375824,-0.305793881416321,0.211453884840012,-0.867722153663635,-0.449828267097473,0.798410177230835,-0.586962759494781,-0.134223222732544,0.839303970336914,-0.518018901348114,-0.164999634027481,0.778610348701477,-0.587314128875732,-0.220970332622528,0.256227433681488,-0.958962798118591,-0.12139917165041,0.596324443817139,-0.744018852710724,-0.301385104656219,0.44307205080986,-0.882459819316864,-0.157961055636406,0.452243894338608,-0.865673661231995,-0.214672848582268,0.596324443817139,-0.744018852710724,-0.301385104656219,0.256227433681488,-0.958962798118591,-0.12139917165041,0.310342520475388,-0.937049448490143,-0.160080641508102,0.452243894338608,-0.865673661231995,-0.214672848582268,0.214405000209808,-0.975381731987,-0.0515841580927372,0.313239485025406,-0.883481502532959,-0.348340779542923,0.118634842336178,-0.985062658786774,-0.124808788299561,0.242208883166313,-0.897458732128143,-0.36864960193634,0.147956669330597,-0.913846909999847,-0.378143578767776,0.248133972287178,-0.733278512954712,-0.633033990859985,0.139191508293152,-0.949877917766571,-0.279923766851425,0.118634842336178,-0.985062658786774,-0.124808788299561,0.139191508293152,-0.949877917766571,-0.279923766851425,0.242208883166313,-0.897458732128143,-0.36864960193634,0.414952874183655,-0.863338530063629,-0.287159621715546,0.313239485025406,-0.883481502532959,-0.348340779542923,0.516441166400909,-0.698851525783539,-0.494868576526642,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.414952874183655,-0.863338530063629,-0.287159621715546,0.310342520475388,-0.937049448490143,-0.160080641508102,0.590633690357208,-0.804468929767609,0.0630985647439957,0.634536504745483,-0.769953608512878,0.067340612411499,0.591474115848541,-0.798871159553528,0.109375931322575,0.610448777675629,-0.792052865028381,-0.00210157781839371,0.590633690357208,-0.804468929767609,0.0630985647439957,0.538187623023987,-0.842007577419281,0.0371108613908291,\r\n0.498722285032272,-0.866669058799744,-0.0126786390319467,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.538187623023987,-0.842007577419281,0.0371108613908291,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.564051926136017,-0.823917269706726,-0.0548220239579678,0.498722285032272,-0.866669058799744,-0.0126786390319467,0.489237666130066,-0.854553043842316,-0.174314200878143,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.435058087110519,-0.879856407642365,-0.191251441836357,0.476224422454834,-0.841858744621277,-0.253937035799026,0.489237666130066,-0.854553043842316,-0.174314200878143,0.435058087110519,-0.879856407642365,-0.191251441836357,0.343513876199722,-0.913314461708069,-0.218757331371307,0.439893841743469,-0.841007113456726,-0.314960807561874,0.294162899255753,-0.89172351360321,-0.34394371509552,0.353582978248596,-0.892283499240875,-0.280729651451111,0.343513876199722,-0.913314461708069,-0.218757331371307,0.245850116014481,-0.916014790534973,-0.316977232694626,0.289625972509384,-0.854568600654602,-0.431079030036926,0.285124480724335,-0.901707291603088,-0.325004458427429,0.222455561161041,-0.872956335544586,-0.434120267629623,0.289625972509384,-0.854568600654602,-0.431079030036926,0.245850116014481,-0.916014790534973,-0.316977232694626,0.312246412038803,-0.921148121356964,-0.23235359787941,0.294162899255753,-0.89172351360321,-0.34394371509552,0.343513876199722,-0.913314461708069,-0.218757331371307,0.265495628118515,-0.938710510730743,-0.219851046800613,0.285124480724335,-0.901707291603088,-0.325004458427429,0.312246412038803,-0.921148121356964,-0.23235359787941,0.38189709186554,-0.916236162185669,0.121102415025234,0.309051543474197,-0.939855754375458,0.145458459854126,0.382312715053558,-0.923962235450745,0.0114310858771205,0.38189709186554,-0.916236162185669,0.121102415025234,0.402630776166916,-0.903153717517853,0.149002686142921,0.361380815505981,-0.916058123111725,0.173900216817856,0.434042096138,-0.897269129753113,0.0807184725999832,\r\n0.412685573101044,-0.903518080711365,0.115523390471935,0.439016044139862,-0.897693395614624,0.0375689752399921,0.429024577140808,-0.899597883224487,0.081617645919323,0.412685573101044,-0.903518080711365,0.115523390471935,0.402630776166916,-0.903153717517853,0.149002686142921,0.439016044139862,-0.897693395614624,0.0375689752399921,0.458184748888016,-0.88761693239212,0.0469341315329075,0.434042096138,-0.897269129753113,0.0807184725999832,0.498722285032272,-0.866669058799744,-0.0126786390319467,0.538187623023987,-0.842007577419281,0.0371108613908291,0.458184748888016,-0.88761693239212,0.0469341315329075,0.590633690357208,-0.804468929767609,0.0630985647439957,0.591474115848541,-0.798871159553528,0.109375931322575,0.553909659385681,-0.827583372592926,0.0910476893186569,0.538187623023987,-0.842007577419281,0.0371108613908291,0.590633690357208,-0.804468929767609,0.0630985647439957,0.553909659385681,-0.827583372592926,0.0910476893186569,0.22250971198082,-0.895494341850281,-0.385459423065186,0.273695230484009,-0.885812759399414,-0.37473526597023,0.237382546067238,-0.800963044166565,-0.549643158912659,0.224150136113167,-0.85746818780899,-0.4631467461586,0.21283908188343,-0.932673692703247,-0.29123729467392,0.22250971198082,-0.895494341850281,-0.385459423065186,0.206492960453033,-0.929435670375824,-0.305793881416321,0.21283908188343,-0.932673692703247,-0.29123729467392,0.211453884840012,-0.867722153663635,-0.449828267097473,0.245850116014481,-0.916014790534973,-0.316977232694626,0.206492960453033,-0.929435670375824,-0.305793881416321,0.222455561161041,-0.872956335544586,-0.434120267629623,0.256227433681488,-0.958962798118591,-0.12139917165041,0.214405000209808,-0.975381731987,-0.0515841580927372,0.452243894338608,-0.865673661231995,-0.214672848582268,0.310342520475388,-0.937049448490143,-0.160080641508102,0.214405000209808,-0.975381731987,-0.0515841580927372,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.118634842336178,-0.985062658786774,-0.124808788299561,0.313239485025406,-0.883481502532959,-0.348340779542923,\r\n0.223627433180809,-0.959580838680267,-0.170866101980209,0.414952874183655,-0.863338530063629,-0.287159621715546,0.223627433180809,-0.959580838680267,-0.170866101980209,0.313239485025406,-0.883481502532959,-0.348340779542923,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.223627433180809,-0.959580838680267,-0.170866101980209,0.414952874183655,-0.863338530063629,-0.287159621715546,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.498722285032272,-0.866669058799744,-0.0126786390319467,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.498237550258636,-0.861423790454865,-0.0985307767987251,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.465568631887436,-0.877507328987122,-0.115006722509861,0.489237666130066,-0.854553043842316,-0.174314200878143,0.435058087110519,-0.879856407642365,-0.191251441836357,0.489237666130066,-0.854553043842316,-0.174314200878143,0.465568631887436,-0.877507328987122,-0.115006722509861,0.435058087110519,-0.879856407642365,-0.191251441836357,0.402044057846069,-0.906310617923737,-0.13023641705513,0.343513876199722,-0.913314461708069,-0.218757331371307,0.245850116014481,-0.916014790534973,-0.316977232694626,0.285124480724335,-0.901707291603088,-0.325004458427429,0.265495628118515,-0.938710510730743,-0.219851046800613,0.312246412038803,-0.921148121356964,-0.23235359787941,0.343513876199722,-0.913314461708069,-0.218757331371307,0.352408051490784,-0.923263549804688,-0.152947261929512,0.265495628118515,-0.938710510730743,-0.219851046800613,0.312246412038803,-0.921148121356964,-0.23235359787941,0.31026354432106,-0.93649286031723,-0.163455083966255,0.429024577140808,-0.899597883224487,0.081617645919323,0.38189709186554,-0.916236162185669,0.121102415025234,0.382312715053558,-0.923962235450745,0.0114310858771205,0.38189709186554,-0.916236162185669,0.121102415025234,0.429024577140808,-0.899597883224487,0.081617645919323,0.402630776166916,-0.903153717517853,0.149002686142921,\r\n0.429024577140808,-0.899597883224487,0.081617645919323,0.439016044139862,-0.897693395614624,0.0375689752399921,0.412685573101044,-0.903518080711365,0.115523390471935,0.439016044139862,-0.897693395614624,0.0375689752399921,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.458184748888016,-0.88761693239212,0.0469341315329075,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.498722285032272,-0.866669058799744,-0.0126786390319467,0.458184748888016,-0.88761693239212,0.0469341315329075,0.245850116014481,-0.916014790534973,-0.316977232694626,0.184030428528786,-0.961094319820404,-0.205986544489861,0.206492960453033,-0.929435670375824,-0.305793881416321,0.118634842336178,-0.985062658786774,-0.124808788299561,0.223627433180809,-0.959580838680267,-0.170866101980209,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.421361297369003,-0.904233515262604,-0.069399930536747,0.465568631887436,-0.877507328987122,-0.115006722509861,0.435058087110519,-0.879856407642365,-0.191251441836357,0.465568631887436,-0.877507328987122,-0.115006722509861,0.402044057846069,-0.906310617923737,-0.13023641705513,0.343513876199722,-0.913314461708069,-0.218757331371307,0.402044057846069,-0.906310617923737,-0.13023641705513,0.352408051490784,-0.923263549804688,-0.152947261929512,0.245850116014481,-0.916014790534973,-0.316977232694626,0.265495628118515,-0.938710510730743,-0.219851046800613,0.184030428528786,-0.961094319820404,-0.205986544489861,0.31026354432106,-0.93649286031723,-0.163455083966255,0.312246412038803,-0.921148121356964,-0.23235359787941,0.352408051490784,-0.923263549804688,-0.152947261929512,0.429024577140808,-0.899597883224487,0.081617645919323,0.382312715053558,-0.923962235450745,0.0114310858771205,0.447529822587967,-0.89425653219223,0.00472063478082418,0.429024577140808,-0.899597883224487,0.081617645919323,\r\n0.447529822587967,-0.89425653219223,0.00472063478082418,0.439016044139862,-0.897693395614624,0.0375689752399921,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.447539687156677,-0.893960118293762,-0.0233130287379026,0.439016044139862,-0.897693395614624,0.0375689752399921,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.421361297369003,-0.904233515262604,-0.069399930536747,0.458232790231705,-0.885345757007599,-0.0786478221416473,0.421361297369003,-0.904233515262604,-0.069399930536747,0.402044057846069,-0.906310617923737,-0.13023641705513,0.465568631887436,-0.877507328987122,-0.115006722509861,0.402044057846069,-0.906310617923737,-0.13023641705513,0.421361297369003,-0.904233515262604,-0.069399930536747,0.352408051490784,-0.923263549804688,-0.152947261929512,0.31026354432106,-0.93649286031723,-0.163455083966255,0.352408051490784,-0.923263549804688,-0.152947261929512,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.447529822587967,-0.89425653219223,0.00472063478082418,0.382312715053558,-0.923962235450745,0.0114310858771205,0.421361297369003,-0.904233515262604,-0.069399930536747,0.439016044139862,-0.897693395614624,0.0375689752399921,0.447529822587967,-0.89425653219223,0.00472063478082418,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.447529822587967,-0.89425653219223,0.00472063478082418,0.421361297369003,-0.904233515262604,-0.069399930536747,0.447816014289856,-0.894059002399445,-0.0109221199527383,0.421361297369003,-0.904233515262604,-0.069399930536747,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.352408051490784,-0.923263549804688,-0.152947261929512,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.421361297369003,-0.904233515262604,-0.069399930536747,0.382312715053558,-0.923962235450745,0.0114310858771205,0.0142970327287912,0.999828279018402,0.0117898434400558,0.058421827852726,0.995316565036774,-0.0770178139209747,0.15328124165535,0.987413644790649,-0.0389753393828869,0.0142970327287912,0.999828279018402,0.0117898434400558,-0.0293134655803442,0.997489154338837,-0.0644667744636536,\r\n0.058421827852726,0.995316565036774,-0.0770178139209747,0.058421827852726,0.995316565036774,-0.0770178139209747,0.090916246175766,0.986892998218536,-0.133328288793564,0.15328124165535,0.987413644790649,-0.0389753393828869,0.133612409234047,0.981656074523926,0.136010870337486,0.0142970327287912,0.999828279018402,0.0117898434400558,0.15328124165535,0.987413644790649,-0.0389753393828869,-0.0293134655803442,0.997489154338837,-0.0644667744636536,0.0142970327287912,0.999828279018402,0.0117898434400558,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.0293134655803442,0.997489154338837,-0.0644667744636536,-0.0467619113624096,0.995759248733521,-0.0792259499430656,0.058421827852726,0.995316565036774,-0.0770178139209747,0.0630213469266891,0.992009878158569,-0.109291680157185,0.090916246175766,0.986892998218536,-0.133328288793564,0.058421827852726,0.995316565036774,-0.0770178139209747,0.148183107376099,0.979433834552765,-0.136934459209442,0.15328124165535,0.987413644790649,-0.0389753393828869,0.090916246175766,0.986892998218536,-0.133328288793564,0.0142970327287912,0.999828279018402,0.0117898434400558,0.133612409234047,0.981656074523926,0.136010870337486,-0.0281403791159391,0.99388200044632,0.106801480054855,0.133612409234047,0.981656074523926,0.136010870337486,0.15328124165535,0.987413644790649,-0.0389753393828869,0.256092578172684,0.966634154319763,-0.00590858841314912,0.0142970327287912,0.999828279018402,0.0117898434400558,-0.19455523788929,0.97447657585144,0.111998401582241,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.0293134655803442,0.997489154338837,-0.0644667744636536,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.0467619113624096,0.995759248733521,-0.0792259499430656,-0.0293134655803442,0.997489154338837,-0.0644667744636536,0.058421827852726,0.995316565036774,-0.0770178139209747,-0.0467619113624096,0.995759248733521,-0.0792259499430656,0.0108544398099184,0.998093843460083,-0.0607514530420303,\r\n0.0630213469266891,0.992009878158569,-0.109291680157185,0.0107758939266205,0.990470230579376,-0.137304380536079,0.090916246175766,0.986892998218536,-0.133328288793564,0.058421827852726,0.995316565036774,-0.0770178139209747,0.0108544398099184,0.998093843460083,-0.0607514530420303,0.0630213469266891,0.992009878158569,-0.109291680157185,0.15328124165535,0.987413644790649,-0.0389753393828869,0.148183107376099,0.979433834552765,-0.136934459209442,0.256092578172684,0.966634154319763,-0.00590858841314912,0.090916246175766,0.986892998218536,-0.133328288793564,0.0785765647888184,0.968389689922333,-0.236742496490479,0.148183107376099,0.979433834552765,-0.136934459209442,0.133612409234047,0.981656074523926,0.136010870337486,-0.0892600938677788,0.969965398311615,0.226273462176323,-0.0281403791159391,0.99388200044632,0.106801480054855,-0.19455523788929,0.97447657585144,0.111998401582241,0.0142970327287912,0.999828279018402,0.0117898434400558,-0.0281403791159391,0.99388200044632,0.106801480054855,0.293724179267883,0.94146054983139,0.165463283658028,0.133612409234047,0.981656074523926,0.136010870337486,0.256092578172684,0.966634154319763,-0.00590858841314912,-0.19455523788929,0.97447657585144,0.111998401582241,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.0467619113624096,0.995759248733521,-0.0792259499430656,0.0108544398099184,0.998093843460083,-0.0607514530420303,-0.0467619113624096,0.995759248733521,-0.0792259499430656,-0.065079040825367,0.997696399688721,-0.0191451981663704,0.0107758939266205,0.990470230579376,-0.137304380536079,0.0630213469266891,0.992009878158569,-0.109291680157185,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.090916246175766,0.986892998218536,-0.133328288793564,\r\n0.0107758939266205,0.990470230579376,-0.137304380536079,-0.0331210233271122,0.982174813747406,-0.185028403997421,0.0630213469266891,0.992009878158569,-0.109291680157185,0.0108544398099184,0.998093843460083,-0.0607514530420303,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.148183107376099,0.979433834552765,-0.136934459209442,0.203528389334679,0.96239697933197,-0.179911509156227,0.256092578172684,0.966634154319763,-0.00590858841314912,0.0785765647888184,0.968389689922333,-0.236742496490479,0.090916246175766,0.986892998218536,-0.133328288793564,-0.0331210233271122,0.982174813747406,-0.185028403997421,0.0785765647888184,0.968389689922333,-0.236742496490479,0.203528389334679,0.96239697933197,-0.179911509156227,0.148183107376099,0.979433834552765,-0.136934459209442,0.0236522741615772,0.948586940765381,0.315631479024887,-0.0892600938677788,0.969965398311615,0.226273462176323,0.133612409234047,0.981656074523926,0.136010870337486,-0.0892600938677788,0.969965398311615,0.226273462176323,-0.19455523788929,0.97447657585144,0.111998401582241,-0.0281403791159391,0.99388200044632,0.106801480054855,0.133612409234047,0.981656074523926,0.136010870337486,0.293724179267883,0.94146054983139,0.165463283658028,0.236255660653114,0.932922005653381,0.2717345058918,0.293724179267883,0.94146054983139,0.165463283658028,0.256092578172684,0.966634154319763,-0.00590858841314912,0.412426888942719,0.903505921363831,0.116537787020206,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.19455523788929,0.97447657585144,0.111998401582241,-0.326176375150681,0.94166088104248,0.08296749740839,-0.112784087657928,0.993136882781982,-0.0309652928262949,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.107527330517769,0.990080952644348,-0.090429350733757,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.065079040825367,0.997696399688721,-0.0191451981663704,\r\n-0.0467619113624096,0.995759248733521,-0.0792259499430656,0.0108544398099184,0.998093843460083,-0.0607514530420303,-0.065079040825367,0.997696399688721,-0.0191451981663704,-0.0219664685428143,0.999294817447662,-0.0304507147520781,0.0228174161165953,0.995811522006989,-0.0885365009307861,-0.050262127071619,0.991793274879456,-0.117557547986507,0.0107758939266205,0.990470230579376,-0.137304380536079,-0.0331210233271122,0.982174813747406,-0.185028403997421,0.0107758939266205,0.990470230579376,-0.137304380536079,-0.129696547985077,0.98085606098175,-0.145258694887161,0.00682557001709938,0.998278617858887,-0.0582500323653221,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.0108544398099184,0.998093843460083,-0.0607514530420303,0.368829339742661,0.92647111415863,-0.0749388486146927,0.256092578172684,0.966634154319763,-0.00590858841314912,0.203528389334679,0.96239697933197,-0.179911509156227,-0.0331210233271122,0.982174813747406,-0.185028403997421,-0.0691766366362572,0.952756702899933,-0.295751869678497,0.0785765647888184,0.968389689922333,-0.236742496490479,0.0785765647888184,0.968389689922333,-0.236742496490479,0.228925094008446,0.93485426902771,-0.2713682949543,0.203528389334679,0.96239697933197,-0.179911509156227,-0.164000809192657,0.925649583339691,0.340993046760559,-0.0892600938677788,0.969965398311615,0.226273462176323,0.0236522741615772,0.948586940765381,0.315631479024887,0.133612409234047,0.981656074523926,0.136010870337486,0.236255660653114,0.932922005653381,0.2717345058918,0.0236522741615772,0.948586940765381,0.315631479024887,-0.260050505399704,0.944589018821716,0.200313091278076,-0.19455523788929,0.97447657585144,0.111998401582241,-0.0892600938677788,0.969965398311615,0.226273462176323,0.293724179267883,0.94146054983139,0.165463283658028,0.372278302907944,0.897622883319855,0.235970348119736,0.236255660653114,0.932922005653381,0.2717345058918,0.368829339742661,0.92647111415863,-0.0749388486146927,0.412426888942719,0.903505921363831,0.116537787020206,0.256092578172684,0.966634154319763,-0.00590858841314912,\r\n0.372278302907944,0.897622883319855,0.235970348119736,0.293724179267883,0.94146054983139,0.165463283658028,0.412426888942719,0.903505921363831,0.116537787020206,-0.19455523788929,0.97447657585144,0.111998401582241,-0.320623904466629,0.924439013004303,0.206428393721581,-0.326176375150681,0.94166088104248,0.08296749740839,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.326176375150681,0.94166088104248,0.08296749740839,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.219712123274803,0.969643950462341,-0.107317470014095,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.115341827273369,0.989807367324829,-0.0835313126444817,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.065079040825367,0.997696399688721,-0.0191451981663704,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.0219664685428143,0.999294817447662,-0.0304507147520781,-0.065079040825367,0.997696399688721,-0.0191451981663704,0.0108544398099184,0.998093843460083,-0.0607514530420303,-0.0219664685428143,0.999294817447662,-0.0304507147520781,0.00682557001709938,0.998278617858887,-0.0582500323653221,0.00157871784176677,0.998530268669128,-0.0541731268167496,-0.050262127071619,0.991793274879456,-0.117557547986507,0.0228174161165953,0.995811522006989,-0.0885365009307861,-0.050262127071619,0.991793274879456,-0.117557547986507,-0.129696547985077,0.98085606098175,-0.145258694887161,0.0107758939266205,0.990470230579376,-0.137304380536079,-0.129696547985077,0.98085606098175,-0.145258694887161,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.0331210233271122,0.982174813747406,-0.185028403997421,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.00682557001709938,0.998278617858887,-0.0582500323653221,0.00323489075526595,0.999240398406982,-0.0388334318995476,0.368829339742661,0.92647111415863,-0.0749388486146927,\r\n0.203528389334679,0.96239697933197,-0.179911509156227,0.228925094008446,0.93485426902771,-0.2713682949543,-0.0331210233271122,0.982174813747406,-0.185028403997421,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.0691766366362572,0.952756702899933,-0.295751869678497,-0.0691766366362572,0.952756702899933,-0.295751869678497,0.113043025135994,0.918766438961029,-0.378271698951721,0.0785765647888184,0.968389689922333,-0.236742496490479,0.0785765647888184,0.968389689922333,-0.236742496490479,0.113043025135994,0.918766438961029,-0.378271698951721,0.228925094008446,0.93485426902771,-0.2713682949543,-0.0892600938677788,0.969965398311615,0.226273462176323,-0.164000809192657,0.925649583339691,0.340993046760559,-0.287136614322662,0.923939347267151,0.252761691808701,0.0236522741615772,0.948586940765381,0.315631479024887,-0.0592985674738884,0.9101522564888,0.410007864236832,-0.164000809192657,0.925649583339691,0.340993046760559,0.175770208239555,0.901526689529419,0.395416647195816,0.0236522741615772,0.948586940765381,0.315631479024887,0.236255660653114,0.932922005653381,0.2717345058918,-0.320623904466629,0.924439013004303,0.206428393721581,-0.19455523788929,0.97447657585144,0.111998401582241,-0.260050505399704,0.944589018821716,0.200313091278076,-0.287136614322662,0.923939347267151,0.252761691808701,-0.260050505399704,0.944589018821716,0.200313091278076,-0.0892600938677788,0.969965398311615,0.226273462176323,0.419721007347107,0.841974973678589,0.338987112045288,0.236255660653114,0.932922005653381,0.2717345058918,0.372278302907944,0.897622883319855,0.235970348119736,0.368829339742661,0.92647111415863,-0.0749388486146927,0.510259330272675,0.858007073402405,0.0588152408599854,0.412426888942719,0.903505921363831,0.116537787020206,0.372278302907944,0.897622883319855,0.235970348119736,0.412426888942719,0.903505921363831,0.116537787020206,0.489562630653381,0.839463531970978,0.235858678817749,-0.320623904466629,0.924439013004303,0.206428393721581,-0.321613937616348,0.923950612545013,0.207073420286179,-0.326176375150681,0.94166088104248,0.08296749740839,\r\n-0.219712123274803,0.969643950462341,-0.107317470014095,-0.213530316948891,0.975617825984955,-0.0507396571338177,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.326176375150681,0.94166088104248,0.08296749740839,-0.219712123274803,0.969643950462341,-0.107317470014095,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.065079040825367,0.997696399688721,-0.0191451981663704,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.135770604014397,0.990666389465332,0.0120955780148506,0.00323489075526595,0.999240398406982,-0.0388334318995476,-0.0219664685428143,0.999294817447662,-0.0304507147520781,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.065079040825367,0.997696399688721,-0.0191451981663704,-0.135770604014397,0.990666389465332,0.0120955780148506,0.00682557001709938,0.998278617858887,-0.0582500323653221,-0.0219664685428143,0.999294817447662,-0.0304507147520781,0.00323489075526595,0.999240398406982,-0.0388334318995476,0.00157871784176677,0.998530268669128,-0.0541731268167496,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.050262127071619,0.991793274879456,-0.117557547986507,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.00157871784176677,0.998530268669128,-0.0541731268167496,0.0228174161165953,0.995811522006989,-0.0885365009307861,-0.050262127071619,0.991793274879456,-0.117557547986507,-0.181151375174522,0.978978931903839,-0.0937244296073914,-0.129696547985077,0.98085606098175,-0.145258694887161,-0.129696547985077,0.98085606098175,-0.145258694887161,-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.238876968622208,0.950758397579193,-0.197474434971809,0.0228174161165953,0.995811522006989,-0.0885365009307861,\r\n0.00323489075526595,0.999240398406982,-0.0388334318995476,0.0281323399394751,0.99873560667038,-0.04166055098176,0.452070146799088,0.869819939136505,-0.197599783539772,0.368829339742661,0.92647111415863,-0.0749388486146927,0.228925094008446,0.93485426902771,-0.2713682949543,-0.0691766366362572,0.952756702899933,-0.295751869678497,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.314004749059677,0.879623830318451,-0.357299447059631,0.113043025135994,0.918766438961029,-0.378271698951721,-0.0691766366362572,0.952756702899933,-0.295751869678497,-0.0120747610926628,0.891639769077301,-0.452584445476532,0.295998364686966,0.884146749973297,-0.361482322216034,0.228925094008446,0.93485426902771,-0.2713682949543,0.113043025135994,0.918766438961029,-0.378271698951721,0.175770208239555,0.901526689529419,0.395416647195816,-0.0592985674738884,0.9101522564888,0.410007864236832,0.0236522741615772,0.948586940765381,0.315631479024887,-0.164000809192657,0.925649583339691,0.340993046760559,-0.0592985674738884,0.9101522564888,0.410007864236832,-0.272386968135834,0.88256049156189,0.383265137672424,0.419721007347107,0.841974973678589,0.338987112045288,0.175770208239555,0.901526689529419,0.395416647195816,0.236255660653114,0.932922005653381,0.2717345058918,-0.321613937616348,0.923950612545013,0.207073420286179,-0.320623904466629,0.924439013004303,0.206428393721581,-0.260050505399704,0.944589018821716,0.200313091278076,-0.260050505399704,0.944589018821716,0.200313091278076,-0.287136614322662,0.923939347267151,0.252761691808701,-0.321613937616348,0.923950612545013,0.207073420286179,0.372278302907944,0.897622883319855,0.235970348119736,0.489562630653381,0.839463531970978,0.235858678817749,0.419721007347107,0.841974973678589,0.338987112045288,0.510259330272675,0.858007073402405,0.0588152408599854,0.368829339742661,0.92647111415863,-0.0749388486146927,0.600354909896851,0.799195945262909,0.0293193608522415,0.510259330272675,0.858007073402405,0.0588152408599854,0.558926343917847,0.803890109062195,0.203375861048698,0.412426888942719,0.903505921363831,0.116537787020206,\r\n0.412426888942719,0.903505921363831,0.116537787020206,0.558926343917847,0.803890109062195,0.203375861048698,0.489562630653381,0.839463531970978,0.235858678817749,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.219712123274803,0.969643950462341,-0.107317470014095,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.241790056228638,0.967304825782776,-0.0765435248613358,-0.31016594171524,0.944184958934784,-0.110958613455296,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.167811691761017,0.980767607688904,-0.0996698513627052,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.135770604014397,0.990666389465332,0.0120955780148506,-0.169512927532196,0.983515977859497,-0.0629412829875946,0.00323489075526595,0.999240398406982,-0.0388334318995476,-0.0494554489850998,0.998550891876221,0.0212191045284271,0.0177941489964724,0.999837577342987,0.00284654600545764,-0.107768632471561,0.992487013339996,0.057925883680582,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.135770604014397,0.990666389465332,0.0120955780148506,0.00157871784176677,0.998530268669128,-0.0541731268167496,-0.0523837842047215,0.998184204101563,0.0297352969646454,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.181151375174522,0.978978931903839,-0.0937244296073914,-0.050262127071619,0.991793274879456,-0.117557547986507,0.0520113706588745,0.998310327529907,0.025908125564456,0.00157871784176677,0.998530268669128,-0.0541731268167496,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0228174161165953,0.995811522006989,-0.0885365009307861,0.0281323399394751,0.99873560667038,-0.04166055098176,-0.181151375174522,0.978978931903839,-0.0937244296073914,\r\n-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.129696547985077,0.98085606098175,-0.145258694887161,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.331768661737442,0.94053703546524,-0.0729348063468933,0.00323489075526595,0.999240398406982,-0.0388334318995476,0.0177941489964724,0.999837577342987,0.00284654600545764,0.0281323399394751,0.99873560667038,-0.04166055098176,0.368829339742661,0.92647111415863,-0.0749388486146927,0.452070146799088,0.869819939136505,-0.197599783539772,0.600354909896851,0.799195945262909,0.0293193608522415,0.452070146799088,0.869819939136505,-0.197599783539772,0.228925094008446,0.93485426902771,-0.2713682949543,0.295998364686966,0.884146749973297,-0.361482322216034,-0.238876968622208,0.950758397579193,-0.197474434971809,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.0120747610926628,0.891639769077301,-0.452584445476532,-0.0691766366362572,0.952756702899933,-0.295751869678497,-0.0120747610926628,0.891639769077301,-0.452584445476532,0.283147424459457,0.826739847660065,-0.48613640666008,0.113043025135994,0.918766438961029,-0.378271698951721,0.295998364686966,0.884146749973297,-0.361482322216034,0.113043025135994,0.918766438961029,-0.378271698951721,0.283147424459457,0.826739847660065,-0.48613640666008,0.0908106416463852,0.886210262775421,0.454295754432678,-0.0592985674738884,0.9101522564888,0.410007864236832,0.175770208239555,0.901526689529419,0.395416647195816,-0.192159965634346,0.87401294708252,0.44629117846489,-0.272386968135834,0.88256049156189,0.383265137672424,-0.0592985674738884,0.9101522564888,0.410007864236832,0.371407568454742,0.823914527893066,0.428043335676193,0.175770208239555,0.901526689529419,0.395416647195816,0.419721007347107,0.841974973678589,0.338987112045288,0.489562630653381,0.839463531970978,0.235858678817749,0.569215655326843,0.757168114185333,0.320452690124512,0.419721007347107,0.841974973678589,0.338987112045288,\r\n0.600354909896851,0.799195945262909,0.0293193608522415,0.604560732841492,0.78177684545517,0.152744919061661,0.510259330272675,0.858007073402405,0.0588152408599854,0.604560732841492,0.78177684545517,0.152744919061661,0.558926343917847,0.803890109062195,0.203375861048698,0.510259330272675,0.858007073402405,0.0588152408599854,0.558926343917847,0.803890109062195,0.203375861048698,0.569215655326843,0.757168114185333,0.320452690124512,0.489562630653381,0.839463531970978,0.235858678817749,-0.232420578598976,0.963991582393646,-0.129231512546539,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.206346571445465,0.971328914165497,-0.118072398006916,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.169512927532196,0.983515977859497,-0.0629412829875946,-0.135770604014397,0.990666389465332,0.0120955780148506,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.16644187271595,0.983967900276184,0.0640638545155525,0.0118720727041364,0.996349096298218,0.0845423638820648,0.0177941489964724,0.999837577342987,0.00284654600545764,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.107768632471561,0.992487013339996,0.057925883680582,-0.0602736473083496,0.993838131427765,0.0930201932787895,-0.107768632471561,0.992487013339996,0.057925883680582,-0.135770604014397,0.990666389465332,0.0120955780148506,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.0523837842047215,0.998184204101563,0.0297352969646454,0.00157871784176677,0.998530268669128,-0.0541731268167496,0.0520113706588745,0.998310327529907,0.025908125564456,-0.221847623586655,0.96906453371048,0.108153782784939,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.0523837842047215,0.998184204101563,0.0297352969646454,-0.117607653141022,0.992458879947662,-0.034550916403532,\r\n-0.331873089075089,0.942857384681702,0.0296677798032761,-0.181151375174522,0.978978931903839,-0.0937244296073914,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.0520113706588745,0.998310327529907,0.025908125564456,0.0177941489964724,0.999837577342987,0.00284654600545764,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0281323399394751,0.99873560667038,-0.04166055098176,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.181151375174522,0.978978931903839,-0.0937244296073914,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.533792614936829,0.841562926769257,0.0826870873570442,0.600354909896851,0.799195945262909,0.0293193608522415,0.452070146799088,0.869819939136505,-0.197599783539772,0.685121655464172,0.719395101070404,-0.114363513886929,0.295998364686966,0.884146749973297,-0.361482322216034,0.501465618610382,0.800948917865753,-0.327128350734711,0.452070146799088,0.869819939136505,-0.197599783539772,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.0120747610926628,0.891639769077301,-0.452584445476532,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.248039156198502,0.82061105966568,-0.514853239059448,-0.0120747610926628,0.891639769077301,-0.452584445476532,0.107203759253025,0.785555064678192,-0.609434425830841,0.283147424459457,0.826739847660065,-0.48613640666008,0.295998364686966,0.884146749973297,-0.361482322216034,0.283147424459457,0.826739847660065,-0.48613640666008,0.501465618610382,0.800948917865753,-0.327128350734711,0.0908106416463852,0.886210262775421,0.454295754432678,-0.192159965634346,0.87401294708252,0.44629117846489,-0.0592985674738884,0.9101522564888,0.410007864236832,0.175770208239555,0.901526689529419,0.395416647195816,0.371407568454742,0.823914527893066,0.428043335676193,\r\n0.0908106416463852,0.886210262775421,0.454295754432678,0.419721007347107,0.841974973678589,0.338987112045288,0.53059446811676,0.751374304294586,0.392308562994003,0.371407568454742,0.823914527893066,0.428043335676193,0.419721007347107,0.841974973678589,0.338987112045288,0.569215655326843,0.757168114185333,0.320452690124512,0.53059446811676,0.751374304294586,0.392308562994003,0.604560732841492,0.78177684545517,0.152744919061661,0.600354909896851,0.799195945262909,0.0293193608522415,0.694797694683075,0.69339507818222,0.190943077206612,0.558926343917847,0.803890109062195,0.203375861048698,0.604560732841492,0.78177684545517,0.152744919061661,0.624843657016754,0.738489627838135,0.253383755683899,0.558926343917847,0.803890109062195,0.203375861048698,0.624843657016754,0.738489627838135,0.253383755683899,0.569215655326843,0.757168114185333,0.320452690124512,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.258948415517807,0.954689562320709,-0.146674886345863,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.246141254901886,0.965832233428955,0.0811330080032349,0.0555991940200329,0.997293829917908,0.0481004528701305,0.0177941489964724,0.999837577342987,0.00284654600545764,0.0118720727041364,0.996349096298218,0.0845423638820648,-0.0494554489850998,0.998550891876221,0.0212191045284271,-0.0602736473083496,0.993838131427765,0.0930201932787895,0.0118720727041364,0.996349096298218,0.0845423638820648,-0.0602736473083496,0.993838131427765,0.0930201932787895,-0.107768632471561,0.992487013339996,0.057925883680582,-0.125159278512001,0.985474109649658,0.114785946905613,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.125159278512001,0.985474109649658,0.114785946905613,-0.107768632471561,0.992487013339996,0.057925883680582,0.0520113706588745,0.998310327529907,0.025908125564456,\r\n-0.0832415148615837,0.983401536941528,0.161220848560333,-0.0523837842047215,0.998184204101563,0.0297352969646454,-0.221847623586655,0.96906453371048,0.108153782784939,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.117607653141022,0.992458879947662,-0.034550916403532,-0.221847623586655,0.96906453371048,0.108153782784939,-0.0523837842047215,0.998184204101563,0.0297352969646454,-0.0832415148615837,0.983401536941528,0.161220848560333,0.0622443780303001,0.997971832752228,0.0133332721889019,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.0364157892763615,0.998748064041138,-0.0342948921024799,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.163312301039696,0.98602432012558,0.0329391956329346,0.0520113706588745,0.998310327529907,0.025908125564456,0.0177941489964724,0.999837577342987,0.00284654600545764,0.0622443780303001,0.997971832752228,0.0133332721889019,0.0364157892763615,0.998748064041138,-0.0342948921024799,-0.331768661737442,0.94053703546524,-0.0729348063468933,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.679566502571106,0.732906043529511,0.0322175547480583,0.501465618610382,0.800948917865753,-0.327128350734711,0.685121655464172,0.719395101070404,-0.114363513886929,0.452070146799088,0.869819939136505,-0.197599783539772,0.600354909896851,0.799195945262909,0.0293193608522415,0.685121655464172,0.719395101070404,-0.114363513886929,0.740318357944489,0.668422698974609,0.0716921985149384,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.418959945440292,0.784328639507294,-0.457494288682938,-0.314004749059677,0.879623830318451,-0.357299447059631,-0.516415774822235,0.841756999492645,-0.157352268695831,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.418959945440292,0.784328639507294,-0.457494288682938,-0.248039156198502,0.82061105966568,-0.514853239059448,\r\n-0.314004749059677,0.879623830318451,-0.357299447059631,-0.248039156198502,0.82061105966568,-0.514853239059448,0.107203759253025,0.785555064678192,-0.609434425830841,-0.0120747610926628,0.891639769077301,-0.452584445476532,0.0908106416463852,0.886210262775421,0.454295754432678,-0.00351573736406863,0.876084446907043,0.482144773006439,-0.192159965634346,0.87401294708252,0.44629117846489,0.371407568454742,0.823914527893066,0.428043335676193,0.26896134018898,0.84368896484375,0.464595019817352,0.0908106416463852,0.886210262775421,0.454295754432678,0.53059446811676,0.751374304294586,0.392308562994003,0.561604201793671,0.714595556259155,0.417077600955963,0.371407568454742,0.823914527893066,0.428043335676193,0.53059446811676,0.751374304294586,0.392308562994003,0.569215655326843,0.757168114185333,0.320452690124512,0.631501257419586,0.676442503929138,0.378987669944763,0.694797694683075,0.69339507818222,0.190943077206612,0.600354909896851,0.799195945262909,0.0293193608522415,0.740318357944489,0.668422698974609,0.0716921985149384,0.604560732841492,0.78177684545517,0.152744919061661,0.694797694683075,0.69339507818222,0.190943077206612,0.624843657016754,0.738489627838135,0.253383755683899,0.67240047454834,0.673280417919159,0.307523727416992,0.569215655326843,0.757168114185333,0.320452690124512,0.624843657016754,0.738489627838135,0.253383755683899,-0.232413709163666,0.96880841255188,-0.0859884694218636,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.281123667955399,0.95934385061264,0.0250750575214624,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.246141254901886,0.965832233428955,0.0811330080032349,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.21959362924099,0.967770338058472,0.123284861445427,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.246141254901886,0.965832233428955,0.0811330080032349,0.0177941489964724,0.999837577342987,0.00284654600545764,\r\n0.0555991940200329,0.997293829917908,0.0481004528701305,0.0622443780303001,0.997971832752228,0.0133332721889019,0.0118720727041364,0.996349096298218,0.0845423638820648,0.0699790418148041,0.990323603153229,0.119841456413269,0.0555991940200329,0.997293829917908,0.0481004528701305,-0.0602736473083496,0.993838131427765,0.0930201932787895,0.00753531837835908,0.98579329252243,0.167793437838554,0.0118720727041364,0.996349096298218,0.0845423638820648,-0.0635147988796234,0.987681686878204,0.143005877733231,-0.0602736473083496,0.993838131427765,0.0930201932787895,-0.125159278512001,0.985474109649658,0.114785946905613,-0.125159278512001,0.985474109649658,0.114785946905613,-0.16644187271595,0.983967900276184,0.0640638545155525,-0.21959362924099,0.967770338058472,0.123284861445427,0.146395012736321,0.983099281787872,0.10992818325758,-0.0832415148615837,0.983401536941528,0.161220848560333,0.0520113706588745,0.998310327529907,0.025908125564456,-0.221847623586655,0.96906453371048,0.108153782784939,-0.433952957391739,0.877756118774414,0.203049063682556,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.286712288856506,0.925540924072266,0.247325137257576,-0.221847623586655,0.96906453371048,0.108153782784939,-0.0832415148615837,0.983401536941528,0.161220848560333,0.11984471231699,0.992126524448395,0.0363617539405823,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.0622443780303001,0.997971832752228,0.0133332721889019,0.11984471231699,0.992126524448395,0.0363617539405823,0.163312301039696,0.98602432012558,0.0329391956329346,0.0853656902909279,0.996336698532104,-0.0050760698504746,0.146395012736321,0.983099281787872,0.10992818325758,0.0520113706588745,0.998310327529907,0.025908125564456,0.163312301039696,0.98602432012558,0.0329391956329346,-0.433952957391739,0.877756118774414,0.203049063682556,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.331873089075089,0.942857384681702,0.0296677798032761,-0.679566502571106,0.732906043529511,0.0322175547480583,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.589625835418701,0.761332094669342,0.269656658172607,\r\n-0.516415774822235,0.841756999492645,-0.157352268695831,-0.679566502571106,0.732906043529511,0.0322175547480583,-0.723345994949341,0.651722729206085,-0.22809624671936,0.6829714179039,0.685764849185944,-0.251548379659653,0.685121655464172,0.719395101070404,-0.114363513886929,0.501465618610382,0.800948917865753,-0.327128350734711,0.831233382225037,0.554014801979065,0.0460272952914238,0.740318357944489,0.668422698974609,0.0716921985149384,0.685121655464172,0.719395101070404,-0.114363513886929,-0.418959945440292,0.784328639507294,-0.457494288682938,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.449537098407745,0.684517741203308,-0.573891639709473,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.248039156198502,0.82061105966568,-0.514853239059448,-0.418959945440292,0.784328639507294,-0.457494288682938,-0.449537098407745,0.684517741203308,-0.573891639709473,0.107203759253025,0.785555064678192,-0.609434425830841,-0.248039156198502,0.82061105966568,-0.514853239059448,-0.160410523414612,0.728954017162323,-0.665503025054932,-0.00351573736406863,0.876084446907043,0.482144773006439,0.0908106416463852,0.886210262775421,0.454295754432678,0.26896134018898,0.84368896484375,0.464595019817352,-0.271856188774109,0.839541018009186,0.47038808465004,-0.192159965634346,0.87401294708252,0.44629117846489,-0.00351573736406863,0.876084446907043,0.482144773006439,0.476441770792007,0.764257490634918,0.434641927480698,0.26896134018898,0.84368896484375,0.464595019817352,0.371407568454742,0.823914527893066,0.428043335676193,0.53059446811676,0.751374304294586,0.392308562994003,0.631501257419586,0.676442503929138,0.378987669944763,0.561604201793671,0.714595556259155,0.417077600955963,0.476441770792007,0.764257490634918,0.434641927480698,0.371407568454742,0.823914527893066,0.428043335676193,0.561604201793671,0.714595556259155,0.417077600955963,0.569215655326843,0.757168114185333,0.320452690124512,0.67240047454834,0.673280417919159,0.307523727416992,\r\n0.631501257419586,0.676442503929138,0.378987669944763,0.740318357944489,0.668422698974609,0.0716921985149384,0.774113655090332,0.611384272575378,0.164186373353004,0.694797694683075,0.69339507818222,0.190943077206612,0.694797694683075,0.69339507818222,0.190943077206612,0.67240047454834,0.673280417919159,0.307523727416992,0.624843657016754,0.738489627838135,0.253383755683899,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.297655403614044,0.947603464126587,-0.115969084203243,-0.334258258342743,0.941270470619202,-0.0477618277072906,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.227079346776009,0.973808407783508,0.0114938067272305,-0.281123667955399,0.95934385061264,0.0250750575214624,-0.324928402900696,0.945726871490479,0.00470078736543655,-0.281123667955399,0.95934385061264,0.0250750575214624,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.315815269947052,0.940986812114716,0.121673434972763,-0.246141254901886,0.965832233428955,0.0811330080032349,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.315815269947052,0.940986812114716,0.121673434972763,-0.21959362924099,0.967770338058472,0.123284861445427,-0.246141254901886,0.965832233428955,0.0811330080032349,0.106560327112675,0.990182816982269,0.0904589518904686,0.0622443780303001,0.997971832752228,0.0133332721889019,0.0555991940200329,0.997293829917908,0.0481004528701305,0.0699790418148041,0.990323603153229,0.119841456413269,0.0118720727041364,0.996349096298218,0.0845423638820648,0.0648589208722115,0.983692228794098,0.167758271098137,0.106560327112675,0.990182816982269,0.0904589518904686,0.0555991940200329,0.997293829917908,0.0481004528701305,0.0699790418148041,0.990323603153229,0.119841456413269,0.00753531837835908,0.98579329252243,0.167793437838554,-0.0602736473083496,0.993838131427765,0.0930201932787895,-0.0635147988796234,0.987681686878204,0.143005877733231,0.0648589208722115,0.983692228794098,0.167758271098137,0.0118720727041364,0.996349096298218,0.0845423638820648,0.00753531837835908,0.98579329252243,0.167793437838554,-0.0918019041419029,0.981686890125275,0.166922748088837,\r\n-0.0635147988796234,0.987681686878204,0.143005877733231,-0.125159278512001,0.985474109649658,0.114785946905613,-0.21959362924099,0.967770338058472,0.123284861445427,-0.131832525134087,0.971439361572266,0.197295993566513,-0.125159278512001,0.985474109649658,0.114785946905613,0.0254585165530443,0.950948894023895,0.308298528194427,-0.0832415148615837,0.983401536941528,0.161220848560333,0.146395012736321,0.983099281787872,0.10992818325758,-0.286712288856506,0.925540924072266,0.247325137257576,-0.433952957391739,0.877756118774414,0.203049063682556,-0.221847623586655,0.96906453371048,0.108153782784939,-0.206228822469711,0.908302068710327,0.363946288824081,-0.286712288856506,0.925540924072266,0.247325137257576,-0.0832415148615837,0.983401536941528,0.161220848560333,0.0622443780303001,0.997971832752228,0.0133332721889019,0.106560327112675,0.990182816982269,0.0904589518904686,0.11984471231699,0.992126524448395,0.0363617539405823,0.186201572418213,0.97596275806427,0.113250315189362,0.163312301039696,0.98602432012558,0.0329391956329346,0.11984471231699,0.992126524448395,0.0363617539405823,0.248089879751205,0.967271864414215,0.0532577782869339,0.146395012736321,0.983099281787872,0.10992818325758,0.163312301039696,0.98602432012558,0.0329391956329346,-0.589625835418701,0.761332094669342,0.269656658172607,-0.533792614936829,0.841562926769257,0.0826870873570442,-0.433952957391739,0.877756118774414,0.203049063682556,-0.679566502571106,0.732906043529511,0.0322175547480583,-0.589625835418701,0.761332094669342,0.269656658172607,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.679566502571106,0.732906043529511,0.0322175547480583,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.723345994949341,0.651722729206085,-0.22809624671936,0.685121655464172,0.719395101070404,-0.114363513886929,0.6829714179039,0.685764849185944,-0.251548379659653,0.748039484024048,0.637404680252075,-0.184802740812302,0.831233382225037,0.554014801979065,0.0460272952914238,0.774113655090332,0.611384272575378,0.164186373353004,0.740318357944489,0.668422698974609,0.0716921985149384,\r\n0.685121655464172,0.719395101070404,-0.114363513886929,0.748039484024048,0.637404680252075,-0.184802740812302,0.831233382225037,0.554014801979065,0.0460272952914238,-0.526836156845093,0.763889849185944,-0.372714012861252,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.449537098407745,0.684517741203308,-0.573891639709473,-0.747530043125153,0.519581973552704,-0.413803517818451,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.160410523414612,0.728954017162323,-0.665503025054932,-0.248039156198502,0.82061105966568,-0.514853239059448,-0.449537098407745,0.684517741203308,-0.573891639709473,0.126971155405045,0.872871398925781,0.47114086151123,-0.00351573736406863,0.876084446907043,0.482144773006439,0.26896134018898,0.84368896484375,0.464595019817352,-0.271856188774109,0.839541018009186,0.47038808465004,-0.00351573736406863,0.876084446907043,0.482144773006439,-0.11601384729147,0.872711658477783,0.474252015352249,0.390396118164063,0.80004757642746,0.45553782582283,0.26896134018898,0.84368896484375,0.464595019817352,0.476441770792007,0.764257490634918,0.434641927480698,0.663681983947754,0.643982172012329,0.380543053150177,0.561604201793671,0.714595556259155,0.417077600955963,0.631501257419586,0.676442503929138,0.378987669944763,0.561604201793671,0.714595556259155,0.417077600955963,0.604498505592346,0.685723006725311,0.405419945716858,0.476441770792007,0.764257490634918,0.434641927480698,0.723754644393921,0.600360512733459,0.340215057134628,0.631501257419586,0.676442503929138,0.378987669944763,0.67240047454834,0.673280417919159,0.307523727416992,0.694797694683075,0.69339507818222,0.190943077206612,0.774113655090332,0.611384272575378,0.164186373353004,0.765905499458313,0.58992475271225,0.255689978599548,0.694797694683075,0.69339507818222,0.190943077206612,0.765905499458313,0.58992475271225,0.255689978599548,0.67240047454834,0.673280417919159,0.307523727416992,-0.277956783771515,0.960026264190674,-0.0330077223479748,-0.334258258342743,0.941270470619202,-0.0477618277072906,\r\n-0.324928402900696,0.945726871490479,0.00470078736543655,-0.324928402900696,0.945726871490479,0.00470078736543655,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.281123667955399,0.95934385061264,0.0250750575214624,-0.327125757932663,0.942834138870239,0.0636584088206291,-0.386761456727982,0.909971535205841,0.149557262659073,-0.315815269947052,0.940986812114716,0.121673434972763,-0.21959362924099,0.967770338058472,0.123284861445427,-0.315815269947052,0.940986812114716,0.121673434972763,-0.328301697969437,0.928815007209778,0.171815678477287,0.127725839614868,0.97404271364212,0.186886996030808,0.0699790418148041,0.990323603153229,0.119841456413269,0.0648589208722115,0.983692228794098,0.167758271098137,0.106560327112675,0.990182816982269,0.0904589518904686,0.0699790418148041,0.990323603153229,0.119841456413269,0.127725839614868,0.97404271364212,0.186886996030808,0.00753531837835908,0.98579329252243,0.167793437838554,-0.0635147988796234,0.987681686878204,0.143005877733231,-0.0609910152852535,0.974968373775482,0.213814601302147,0.0648589208722115,0.983692228794098,0.167758271098137,0.00753531837835908,0.98579329252243,0.167793437838554,0.0805414617061615,0.969505965709686,0.231453955173492,-0.0918019041419029,0.981686890125275,0.166922748088837,-0.0609910152852535,0.974968373775482,0.213814601302147,-0.0635147988796234,0.987681686878204,0.143005877733231,-0.0918019041419029,0.981686890125275,0.166922748088837,-0.125159278512001,0.985474109649658,0.114785946905613,-0.131832525134087,0.971439361572266,0.197295993566513,-0.131832525134087,0.971439361572266,0.197295993566513,-0.21959362924099,0.967770338058472,0.123284861445427,-0.241778925061226,0.953291118144989,0.181049332022667,0.0254585165530443,0.950948894023895,0.308298528194427,-0.206228822469711,0.908302068710327,0.363946288824081,-0.0832415148615837,0.983401536941528,0.161220848560333,0.146395012736321,0.983099281787872,0.10992818325758,0.246797323226929,0.93962550163269,0.237054631114006,0.0254585165530443,0.950948894023895,0.308298528194427,-0.286712288856506,0.925540924072266,0.247325137257576,\r\n-0.406894862651825,0.835706174373627,0.368824601173401,-0.433952957391739,0.877756118774414,0.203049063682556,-0.206228822469711,0.908302068710327,0.363946288824081,-0.406894862651825,0.835706174373627,0.368824601173401,-0.286712288856506,0.925540924072266,0.247325137257576,0.11984471231699,0.992126524448395,0.0363617539405823,0.106560327112675,0.990182816982269,0.0904589518904686,0.186201572418213,0.97596275806427,0.113250315189362,0.186201572418213,0.97596275806427,0.113250315189362,0.256928443908691,0.963822066783905,0.0709554255008698,0.163312301039696,0.98602432012558,0.0329391956329346,0.283867597579956,0.953420042991638,0.102026090025902,0.146395012736321,0.983099281787872,0.10992818325758,0.248089879751205,0.967271864414215,0.0532577782869339,0.163312301039696,0.98602432012558,0.0329391956329346,0.256928443908691,0.963822066783905,0.0709554255008698,0.248089879751205,0.967271864414215,0.0532577782869339,-0.433952957391739,0.877756118774414,0.203049063682556,-0.406894862651825,0.835706174373627,0.368824601173401,-0.589625835418701,0.761332094669342,0.269656658172607,-0.589625835418701,0.761332094669342,0.269656658172607,-0.633681535720825,0.74906462430954,0.193260654807091,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.753865242004395,0.622160315513611,-0.211195543408394,0.774113655090332,0.611384272575378,0.164186373353004,0.831233382225037,0.554014801979065,0.0460272952914238,0.827482342720032,0.539750039577484,0.154734283685684,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.449537098407745,0.684517741203308,-0.573891639709473,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.747530043125153,0.519581973552704,-0.413803517818451,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.723345994949341,0.651722729206085,-0.22809624671936,-0.753865242004395,0.622160315513611,-0.211195543408394,-0.747530043125153,0.519581973552704,-0.413803517818451,\r\n-0.00351573736406863,0.876084446907043,0.482144773006439,0.126971155405045,0.872871398925781,0.47114086151123,-0.11601384729147,0.872711658477783,0.474252015352249,0.126971155405045,0.872871398925781,0.47114086151123,0.26896134018898,0.84368896484375,0.464595019817352,0.390396118164063,0.80004757642746,0.45553782582283,-0.330566346645355,0.827818274497986,0.453257769346237,-0.271856188774109,0.839541018009186,0.47038808465004,-0.11601384729147,0.872711658477783,0.474252015352249,0.390396118164063,0.80004757642746,0.45553782582283,0.476441770792007,0.764257490634918,0.434641927480698,0.56444650888443,0.717238545417786,0.408618211746216,0.561604201793671,0.714595556259155,0.417077600955963,0.663681983947754,0.643982172012329,0.380543053150177,0.604498505592346,0.685723006725311,0.405419945716858,0.663681983947754,0.643982172012329,0.380543053150177,0.631501257419586,0.676442503929138,0.378987669944763,0.712674856185913,0.587182581424713,0.383811116218567,0.604498505592346,0.685723006725311,0.405419945716858,0.56444650888443,0.717238545417786,0.408618211746216,0.476441770792007,0.764257490634918,0.434641927480698,0.712674856185913,0.587182581424713,0.383811116218567,0.631501257419586,0.676442503929138,0.378987669944763,0.723754644393921,0.600360512733459,0.340215057134628,0.723754644393921,0.600360512733459,0.340215057134628,0.67240047454834,0.673280417919159,0.307523727416992,0.765905499458313,0.58992475271225,0.255689978599548,0.765905499458313,0.58992475271225,0.255689978599548,0.774113655090332,0.611384272575378,0.164186373353004,0.827482342720032,0.539750039577484,0.154734283685684,-0.328301697969437,0.928815007209778,0.171815678477287,-0.315815269947052,0.940986812114716,0.121673434972763,-0.386761456727982,0.909971535205841,0.149557262659073,-0.21959362924099,0.967770338058472,0.123284861445427,-0.328301697969437,0.928815007209778,0.171815678477287,-0.241778925061226,0.953291118144989,0.181049332022667,0.127725839614868,0.97404271364212,0.186886996030808,0.0648589208722115,0.983692228794098,0.167758271098137,0.0805414617061615,0.969505965709686,0.231453955173492,\r\n0.186201572418213,0.97596275806427,0.113250315189362,0.106560327112675,0.990182816982269,0.0904589518904686,0.127725839614868,0.97404271364212,0.186886996030808,-0.0609910152852535,0.974968373775482,0.213814601302147,0.00915193278342485,0.965999364852905,0.25838229060173,0.00753531837835908,0.98579329252243,0.167793437838554,0.00915193278342485,0.965999364852905,0.25838229060173,0.0805414617061615,0.969505965709686,0.231453955173492,0.00753531837835908,0.98579329252243,0.167793437838554,-0.131832525134087,0.971439361572266,0.197295993566513,-0.0609910152852535,0.974968373775482,0.213814601302147,-0.0918019041419029,0.981686890125275,0.166922748088837,-0.131832525134087,0.971439361572266,0.197295993566513,-0.241778925061226,0.953291118144989,0.181049332022667,-0.238091439008713,0.938219904899597,0.251109063625336,-0.206228822469711,0.908302068710327,0.363946288824081,0.0254585165530443,0.950948894023895,0.308298528194427,-0.102763593196869,0.86041533946991,0.499124199151993,0.283867597579956,0.953420042991638,0.102026090025902,0.246797323226929,0.93962550163269,0.237054631114006,0.146395012736321,0.983099281787872,0.10992818325758,0.246797323226929,0.93962550163269,0.237054631114006,0.175822988152504,0.880849659442902,0.439533978700638,0.0254585165530443,0.950948894023895,0.308298528194427,-0.206228822469711,0.908302068710327,0.363946288824081,-0.316236197948456,0.80233496427536,0.506214499473572,-0.406894862651825,0.835706174373627,0.368824601173401,0.186201572418213,0.97596275806427,0.113250315189362,0.236045375466347,0.964314699172974,0.119915395975113,0.256928443908691,0.963822066783905,0.0709554255008698,0.283867597579956,0.953420042991638,0.102026090025902,0.248089879751205,0.967271864414215,0.0532577782869339,0.315141260623932,0.947694599628448,0.0506051108241081,0.256928443908691,0.963822066783905,0.0709554255008698,0.315141260623932,0.947694599628448,0.0506051108241081,0.248089879751205,0.967271864414215,0.0532577782869339,-0.468492656946182,0.765876412391663,0.440395087003708,-0.589625835418701,0.761332094669342,0.269656658172607,\r\n-0.406894862651825,0.835706174373627,0.368824601173401,-0.589625835418701,0.761332094669342,0.269656658172607,-0.51675009727478,0.765368163585663,0.383641451597214,-0.633681535720825,0.74906462430954,0.193260654807091,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.731932520866394,0.679377675056458,0.0521593615412712,-0.633681535720825,0.74906462430954,0.193260654807091,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.753865242004395,0.622160315513611,-0.211195543408394,-0.731932520866394,0.679377675056458,0.0521593615412712,0.831233382225037,0.554014801979065,0.0460272952914238,0.899106860160828,0.421982973814011,0.116349421441555,0.827482342720032,0.539750039577484,0.154734283685684,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.747530043125153,0.519581973552704,-0.413803517818451,-0.666253566741943,0.555219352245331,-0.497832804918289,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.747530043125153,0.519581973552704,-0.413803517818451,-0.753865242004395,0.622160315513611,-0.211195543408394,-0.11601384729147,0.872711658477783,0.474252015352249,0.126971155405045,0.872871398925781,0.47114086151123,-0.160849809646606,0.87466424703598,0.457263261079788,0.336141854524612,0.823432207107544,0.457130044698715,0.126971155405045,0.872871398925781,0.47114086151123,0.390396118164063,0.80004757642746,0.45553782582283,-0.11601384729147,0.872711658477783,0.474252015352249,-0.160849809646606,0.87466424703598,0.457263261079788,-0.330566346645355,0.827818274497986,0.453257769346237,0.56444650888443,0.717238545417786,0.408618211746216,0.505096316337585,0.742151081562042,0.440555691719055,0.390396118164063,0.80004757642746,0.45553782582283,0.604498505592346,0.685723006725311,0.405419945716858,\r\n0.663681983947754,0.643982172012329,0.380543053150177,0.56444650888443,0.717238545417786,0.408618211746216,0.663681983947754,0.643982172012329,0.380543053150177,0.712674856185913,0.587182581424713,0.383811116218567,0.749521613121033,0.556763768196106,0.358093976974487,0.712674856185913,0.587182581424713,0.383811116218567,0.723754644393921,0.600360512733459,0.340215057134628,0.78470641374588,0.509037613868713,0.353717923164368,0.805216431617737,0.507887840270996,0.306065768003464,0.723754644393921,0.600360512733459,0.340215057134628,0.765905499458313,0.58992475271225,0.255689978599548,0.765905499458313,0.58992475271225,0.255689978599548,0.827482342720032,0.539750039577484,0.154734283685684,0.831363618373871,0.507734894752502,0.225919306278229,-0.386761456727982,0.909971535205841,0.149557262659073,-0.384335696697235,0.895751357078552,0.223417714238167,-0.328301697969437,0.928815007209778,0.171815678477287,-0.328301697969437,0.928815007209778,0.171815678477287,-0.312427312135696,0.924107730388641,0.220031648874283,-0.241778925061226,0.953291118144989,0.181049332022667,0.0805414617061615,0.969505965709686,0.231453955173492,0.132118299603462,0.948549449443817,0.287747502326965,0.127725839614868,0.97404271364212,0.186886996030808,0.186201572418213,0.97596275806427,0.113250315189362,0.127725839614868,0.97404271364212,0.186886996030808,0.240029871463776,0.946222484111786,0.216906979680061,-0.0685873851180077,0.953611969947815,0.293120831251144,0.00915193278342485,0.965999364852905,0.25838229060173,-0.0609910152852535,0.974968373775482,0.213814601302147,0.00915193278342485,0.965999364852905,0.25838229060173,0.0455286465585232,0.955208241939545,0.292410999536514,0.0805414617061615,0.969505965709686,0.231453955173492,-0.131832525134087,0.971439361572266,0.197295993566513,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.0609910152852535,0.974968373775482,0.213814601302147,-0.238091439008713,0.938219904899597,0.251109063625336,-0.241778925061226,0.953291118144989,0.181049332022667,-0.312427312135696,0.924107730388641,0.220031648874283,\r\n-0.238091439008713,0.938219904899597,0.251109063625336,-0.142181798815727,0.95288223028183,0.267954587936401,-0.131832525134087,0.971439361572266,0.197295993566513,-0.102763593196869,0.86041533946991,0.499124199151993,0.0254585165530443,0.950948894023895,0.308298528194427,0.175822988152504,0.880849659442902,0.439533978700638,-0.206228822469711,0.908302068710327,0.363946288824081,-0.102763593196869,0.86041533946991,0.499124199151993,-0.316236197948456,0.80233496427536,0.506214499473572,0.423523873090744,0.89539647102356,0.137450277805328,0.246797323226929,0.93962550163269,0.237054631114006,0.283867597579956,0.953420042991638,0.102026090025902,0.414090543985367,0.840113878250122,0.350339233875275,0.175822988152504,0.880849659442902,0.439533978700638,0.246797323226929,0.93962550163269,0.237054631114006,-0.316236197948456,0.80233496427536,0.506214499473572,-0.468492656946182,0.765876412391663,0.440395087003708,-0.406894862651825,0.835706174373627,0.368824601173401,0.186201572418213,0.97596275806427,0.113250315189362,0.296633422374725,0.942808270454407,0.152056530117989,0.236045375466347,0.964314699172974,0.119915395975113,0.236045375466347,0.964314699172974,0.119915395975113,0.296633422374725,0.942808270454407,0.152056530117989,0.256928443908691,0.963822066783905,0.0709554255008698,0.283867597579956,0.953420042991638,0.102026090025902,0.315141260623932,0.947694599628448,0.0506051108241081,0.423523873090744,0.89539647102356,0.137450277805328,0.400802761316299,0.91427880525589,0.058747798204422,0.315141260623932,0.947694599628448,0.0506051108241081,0.256928443908691,0.963822066783905,0.0709554255008698,-0.51675009727478,0.765368163585663,0.383641451597214,-0.589625835418701,0.761332094669342,0.269656658172607,-0.468492656946182,0.765876412391663,0.440395087003708,-0.51675009727478,0.765368163585663,0.383641451597214,-0.585017263889313,0.780795037746429,0.219348475337029,-0.633681535720825,0.74906462430954,0.193260654807091,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.633681535720825,0.74906462430954,0.193260654807091,\r\n-0.585017263889313,0.780795037746429,0.219348475337029,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.753865242004395,0.622160315513611,-0.211195543408394,0.827482342720032,0.539750039577484,0.154734283685684,0.899106860160828,0.421982973814011,0.116349421441555,0.831363618373871,0.507734894752502,0.225919306278229,-0.776183247566223,0.533254384994507,-0.336420863866806,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.649209976196289,0.372879147529602,-0.662938416004181,0.126971155405045,0.872871398925781,0.47114086151123,-0.00927667506039143,0.893964827060699,0.448040992021561,-0.160849809646606,0.87466424703598,0.457263261079788,0.126971155405045,0.872871398925781,0.47114086151123,0.336141854524612,0.823432207107544,0.457130044698715,0.200547784566879,0.871106803417206,0.448278248310089,0.390396118164063,0.80004757642746,0.45553782582283,0.505096316337585,0.742151081562042,0.440555691719055,0.336141854524612,0.823432207107544,0.457130044698715,-0.390920788049698,0.817485928535461,0.422962993383408,-0.330566346645355,0.827818274497986,0.453257769346237,-0.160849809646606,0.87466424703598,0.457263261079788,0.56444650888443,0.717238545417786,0.408618211746216,0.611018359661102,0.677554368972778,0.409361094236374,0.505096316337585,0.742151081562042,0.440555691719055,0.652943909168243,0.656075656414032,0.378455847501755,0.56444650888443,0.717238545417786,0.408618211746216,0.663681983947754,0.643982172012329,0.380543053150177,0.749521613121033,0.556763768196106,0.358093976974487,0.712674856185913,0.587182581424713,0.383811116218567,0.78470641374588,0.509037613868713,0.353717923164368,0.728707492351532,0.596628785133362,0.336183488368988,0.663681983947754,0.643982172012329,0.380543053150177,0.749521613121033,0.556763768196106,0.358093976974487,0.805216431617737,0.507887840270996,0.306065768003464,\r\n0.78470641374588,0.509037613868713,0.353717923164368,0.723754644393921,0.600360512733459,0.340215057134628,0.765905499458313,0.58992475271225,0.255689978599548,0.831363618373871,0.507734894752502,0.225919306278229,0.805216431617737,0.507887840270996,0.306065768003464,-0.384335696697235,0.895751357078552,0.223417714238167,-0.386761456727982,0.909971535205841,0.149557262659073,-0.47488859295845,0.854191780090332,0.211747720837593,-0.384335696697235,0.895751357078552,0.223417714238167,-0.312427312135696,0.924107730388641,0.220031648874283,-0.328301697969437,0.928815007209778,0.171815678477287,0.0455286465585232,0.955208241939545,0.292410999536514,0.132118299603462,0.948549449443817,0.287747502326965,0.0805414617061615,0.969505965709686,0.231453955173492,0.127725839614868,0.97404271364212,0.186886996030808,0.132118299603462,0.948549449443817,0.287747502326965,0.17295815050602,0.954431116580963,0.243200927972794,0.240029871463776,0.946222484111786,0.216906979680061,0.127725839614868,0.97404271364212,0.186886996030808,0.17295815050602,0.954431116580963,0.243200927972794,0.186201572418213,0.97596275806427,0.113250315189362,0.240029871463776,0.946222484111786,0.216906979680061,0.296633422374725,0.942808270454407,0.152056530117989,0.0124405659735203,0.942123353481293,0.335035353899002,0.00915193278342485,0.965999364852905,0.25838229060173,-0.0685873851180077,0.953611969947815,0.293120831251144,0.0452889055013657,0.947264969348907,0.317234843969345,0.0455286465585232,0.955208241939545,0.292410999536514,0.00915193278342485,0.965999364852905,0.25838229060173,-0.131832525134087,0.971439361572266,0.197295993566513,-0.142181798815727,0.95288223028183,0.267954587936401,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.332358658313751,0.905089437961578,0.265237092971802,-0.238091439008713,0.938219904899597,0.251109063625336,-0.312427312135696,0.924107730388641,0.220031648874283,-0.238091439008713,0.938219904899597,0.251109063625336,-0.196796864271164,0.928145945072174,0.315936774015427,-0.142181798815727,0.95288223028183,0.267954587936401,\r\n0.0615507550537586,0.786284863948822,0.614790678024292,-0.102763593196869,0.86041533946991,0.499124199151993,0.175822988152504,0.880849659442902,0.439533978700638,-0.178909987211227,0.755734980106354,0.6299649477005,-0.316236197948456,0.80233496427536,0.506214499473572,-0.102763593196869,0.86041533946991,0.499124199151993,0.423523873090744,0.89539647102356,0.137450277805328,0.414090543985367,0.840113878250122,0.350339233875275,0.246797323226929,0.93962550163269,0.237054631114006,0.414090543985367,0.840113878250122,0.350339233875275,0.352027088403702,0.751341104507446,0.558178603649139,0.175822988152504,0.880849659442902,0.439533978700638,-0.316236197948456,0.80233496427536,0.506214499473572,-0.371115833520889,0.753432333469391,0.542782247066498,-0.468492656946182,0.765876412391663,0.440395087003708,0.256928443908691,0.963822066783905,0.0709554255008698,0.296633422374725,0.942808270454407,0.152056530117989,0.412384271621704,0.904653489589691,0.107429757714272,0.400802761316299,0.91427880525589,0.058747798204422,0.423523873090744,0.89539647102356,0.137450277805328,0.315141260623932,0.947694599628448,0.0506051108241081,0.400802761316299,0.91427880525589,0.058747798204422,0.256928443908691,0.963822066783905,0.0709554255008698,0.412384271621704,0.904653489589691,0.107429757714272,-0.51675009727478,0.765368163585663,0.383641451597214,-0.468492656946182,0.765876412391663,0.440395087003708,-0.371115833520889,0.753432333469391,0.542782247066498,-0.452004313468933,0.771512627601624,0.447727888822556,-0.585017263889313,0.780795037746429,0.219348475337029,-0.51675009727478,0.765368163585663,0.383641451597214,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.585017263889313,0.780795037746429,0.219348475337029,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.68340790271759,0.72945648431778,-0.0290983617305756,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.746529042720795,0.607063472270966,-0.272338539361954,0.872471988201141,0.428458124399185,0.234981194138527,0.831363618373871,0.507734894752502,0.225919306278229,\r\n0.899106860160828,0.421982973814011,0.116349421441555,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.776183247566223,0.533254384994507,-0.336420863866806,-0.776183247566223,0.533254384994507,-0.336420863866806,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.720622062683105,0.682523369789124,-0.121924221515656,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.693003118038177,0.275843530893326,-0.666075706481934,0.126971155405045,0.872871398925781,0.47114086151123,0.200547784566879,0.871106803417206,0.448278248310089,-0.00927667506039143,0.893964827060699,0.448040992021561,-0.225755333900452,0.870906412601471,0.436527609825134,-0.160849809646606,0.87466424703598,0.457263261079788,-0.00927667506039143,0.893964827060699,0.448040992021561,0.40284988284111,0.813345849514008,0.419738441705704,0.200547784566879,0.871106803417206,0.448278248310089,0.336141854524612,0.823432207107544,0.457130044698715,0.516729414463043,0.740926206111908,0.428974270820618,0.336141854524612,0.823432207107544,0.457130044698715,0.505096316337585,0.742151081562042,0.440555691719055,-0.225755333900452,0.870906412601471,0.436527609825134,-0.390920788049698,0.817485928535461,0.422962993383408,-0.160849809646606,0.87466424703598,0.457263261079788,0.611018359661102,0.677554368972778,0.409361094236374,0.56444650888443,0.717238545417786,0.408618211746216,0.652943909168243,0.656075656414032,0.378455847501755,0.505096316337585,0.742151081562042,0.440555691719055,0.611018359661102,0.677554368972778,0.409361094236374,0.609616696834564,0.668630480766296,0.425794094800949,0.663681983947754,0.643982172012329,0.380543053150177,0.728707492351532,0.596628785133362,0.336183488368988,0.652943909168243,0.656075656414032,0.378455847501755,0.816699147224426,0.478557586669922,0.322467058897018,0.749521613121033,0.556763768196106,0.358093976974487,0.78470641374588,0.509037613868713,0.353717923164368,0.816699147224426,0.478557586669922,0.322467058897018,\r\n0.728707492351532,0.596628785133362,0.336183488368988,0.749521613121033,0.556763768196106,0.358093976974487,0.805216431617737,0.507887840270996,0.306065768003464,0.8530433177948,0.423667848110199,0.304668068885803,0.78470641374588,0.509037613868713,0.353717923164368,0.872471988201141,0.428458124399185,0.234981194138527,0.805216431617737,0.507887840270996,0.306065768003464,0.831363618373871,0.507734894752502,0.225919306278229,-0.47488859295845,0.854191780090332,0.211747720837593,-0.456569045782089,0.841997385025024,0.287376046180725,-0.384335696697235,0.895751357078552,0.223417714238167,-0.384335696697235,0.895751357078552,0.223417714238167,-0.332358658313751,0.905089437961578,0.265237092971802,-0.312427312135696,0.924107730388641,0.220031648874283,0.0455286465585232,0.955208241939545,0.292410999536514,0.0815758481621742,0.944970607757568,0.316821426153183,0.132118299603462,0.948549449443817,0.287747502326965,0.0124405659735203,0.942123353481293,0.335035353899002,0.0452889055013657,0.947264969348907,0.317234843969345,0.00915193278342485,0.965999364852905,0.25838229060173,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.0399769321084023,0.918779075145721,0.39274263381958,0.0124405659735203,0.942123353481293,0.335035353899002,0.0455286465585232,0.955208241939545,0.292410999536514,0.0452889055013657,0.947264969348907,0.317234843969345,0.0370180159807205,0.944538235664368,0.326308369636536,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.142181798815727,0.95288223028183,0.267954587936401,-0.119040869176388,0.931482434272766,0.343758255243301,-0.332358658313751,0.905089437961578,0.265237092971802,-0.280761659145355,0.907453596591949,0.312570810317993,-0.238091439008713,0.938219904899597,0.251109063625336,-0.196796864271164,0.928145945072174,0.315936774015427,-0.238091439008713,0.938219904899597,0.251109063625336,-0.280761659145355,0.907453596591949,0.312570810317993,-0.142181798815727,0.95288223028183,0.267954587936401,-0.196796864271164,0.928145945072174,0.315936774015427,-0.119040869176388,0.931482434272766,0.343758255243301,\r\n0.0615507550537586,0.786284863948822,0.614790678024292,-0.178909987211227,0.755734980106354,0.6299649477005,-0.102763593196869,0.86041533946991,0.499124199151993,0.0615507550537586,0.786284863948822,0.614790678024292,0.175822988152504,0.880849659442902,0.439533978700638,0.352027088403702,0.751341104507446,0.558178603649139,-0.178909987211227,0.755734980106354,0.6299649477005,-0.371115833520889,0.753432333469391,0.542782247066498,-0.316236197948456,0.80233496427536,0.506214499473572,0.589521050453186,0.756693363189697,0.282630413770676,0.414090543985367,0.840113878250122,0.350339233875275,0.423523873090744,0.89539647102356,0.137450277805328,0.352027088403702,0.751341104507446,0.558178603649139,0.414090543985367,0.840113878250122,0.350339233875275,0.485381722450256,0.775485813617706,0.403765141963959,0.423523873090744,0.89539647102356,0.137450277805328,0.400802761316299,0.91427880525589,0.058747798204422,0.564694344997406,0.819302439689636,0.0993159338831902,0.412384271621704,0.904653489589691,0.107429757714272,0.502258479595184,0.862272143363953,0.0649860948324203,0.400802761316299,0.91427880525589,0.058747798204422,-0.452004313468933,0.771512627601624,0.447727888822556,-0.51675009727478,0.765368163585663,0.383641451597214,-0.371115833520889,0.753432333469391,0.542782247066498,-0.531592845916748,0.794857501983643,0.292592853307724,-0.585017263889313,0.780795037746429,0.219348475337029,-0.452004313468933,0.771512627601624,0.447727888822556,-0.625558972358704,0.77270781993866,0.107696421444416,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.585017263889313,0.780795037746429,0.219348475337029,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.720622062683105,0.682523369789124,-0.121924221515656,-0.746529042720795,0.607063472270966,-0.272338539361954,-0.750631332397461,0.404550731182098,-0.522389829158783,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.776183247566223,0.533254384994507,-0.336420863866806,\r\n-0.744646847248077,0.635796189308167,-0.203135594725609,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.776183247566223,0.533254384994507,-0.336420863866806,-0.720622062683105,0.682523369789124,-0.121924221515656,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.747297346591949,0.340000540018082,-0.570916891098022,0.200547784566879,0.871106803417206,0.448278248310089,0.140000775456429,0.8920978307724,0.42960587143898,-0.00927667506039143,0.893964827060699,0.448040992021561,-0.00927667506039143,0.893964827060699,0.448040992021561,-0.131261244416237,0.898248374462128,0.419428408145905,-0.225755333900452,0.870906412601471,0.436527609825134,0.282035499811172,0.860876023769379,0.423495352268219,0.200547784566879,0.871106803417206,0.448278248310089,0.40284988284111,0.813345849514008,0.419738441705704,0.40284988284111,0.813345849514008,0.419738441705704,0.336141854524612,0.823432207107544,0.457130044698715,0.516729414463043,0.740926206111908,0.428974270820618,0.516729414463043,0.740926206111908,0.428974270820618,0.505096316337585,0.742151081562042,0.440555691719055,0.609616696834564,0.668630480766296,0.425794094800949,-0.225755333900452,0.870906412601471,0.436527609825134,-0.34477636218071,0.844029068946838,0.410784691572189,-0.390920788049698,0.817485928535461,0.422962993383408,0.680645763874054,0.622765839099884,0.385854780673981,0.611018359661102,0.677554368972778,0.409361094236374,0.652943909168243,0.656075656414032,0.378455847501755,0.609616696834564,0.668630480766296,0.425794094800949,0.611018359661102,0.677554368972778,0.409361094236374,0.680645763874054,0.622765839099884,0.385854780673981,0.652943909168243,0.656075656414032,0.378455847501755,0.728707492351532,0.596628785133362,0.336183488368988,0.680645763874054,0.622765839099884,0.385854780673981,0.816699147224426,0.478557586669922,0.322467058897018,0.78470641374588,0.509037613868713,0.353717923164368,0.8530433177948,0.423667848110199,0.304668068885803,0.728707492351532,0.596628785133362,0.336183488368988,\r\n0.816699147224426,0.478557586669922,0.322467058897018,0.813469469547272,0.492053896188736,0.310081034898758,0.805216431617737,0.507887840270996,0.306065768003464,0.872471988201141,0.428458124399185,0.234981194138527,0.8530433177948,0.423667848110199,0.304668068885803,-0.47488859295845,0.854191780090332,0.211747720837593,-0.562416851520538,0.768422424793243,0.3053098320961,-0.456569045782089,0.841997385025024,0.287376046180725,-0.456569045782089,0.841997385025024,0.287376046180725,-0.402364999055862,0.867863774299622,0.291401356458664,-0.384335696697235,0.895751357078552,0.223417714238167,-0.384335696697235,0.895751357078552,0.223417714238167,-0.402364999055862,0.867863774299622,0.291401356458664,-0.332358658313751,0.905089437961578,0.265237092971802,0.0455286465585232,0.955208241939545,0.292410999536514,0.0210793167352676,0.934243619441986,0.356011837720871,0.0815758481621742,0.944970607757568,0.316821426153183,0.0124405659735203,0.942123353481293,0.335035353899002,0.0370180159807205,0.944538235664368,0.326308369636536,0.0452889055013657,0.947264969348907,0.317234843969345,-0.0737321674823761,0.927636742591858,0.366133213043213,-0.0399769321084023,0.918779075145721,0.39274263381958,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.0399769321084023,0.918779075145721,0.39274263381958,0.00504047749564052,0.912324905395508,0.409435838460922,0.0124405659735203,0.942123353481293,0.335035353899002,0.00099968898575753,0.944439470767975,0.328683614730835,0.0455286465585232,0.955208241939545,0.292410999536514,0.0370180159807205,0.944538235664368,0.326308369636536,-0.0737321674823761,0.927636742591858,0.366133213043213,-0.0685873851180077,0.953611969947815,0.293120831251144,-0.119040869176388,0.931482434272766,0.343758255243301,-0.332358658313751,0.905089437961578,0.265237092971802,-0.356675505638123,0.881681382656097,0.308902084827423,-0.280761659145355,0.907453596591949,0.312570810317993,-0.196796864271164,0.928145945072174,0.315936774015427,-0.280761659145355,0.907453596591949,0.312570810317993,-0.243454650044441,0.89489209651947,0.374029159545898,\r\n-0.196796864271164,0.928145945072174,0.315936774015427,-0.163400262594223,0.903527617454529,0.396154075860977,-0.119040869176388,0.931482434272766,0.343758255243301,0.0615507550537586,0.786284863948822,0.614790678024292,-0.00710782175883651,0.699150860309601,0.714938759803772,-0.178909987211227,0.755734980106354,0.6299649477005,0.200045228004456,0.685127973556519,0.700415134429932,0.0615507550537586,0.786284863948822,0.614790678024292,0.352027088403702,0.751341104507446,0.558178603649139,-0.230970978736877,0.712756633758545,0.662291646003723,-0.371115833520889,0.753432333469391,0.542782247066498,-0.178909987211227,0.755734980106354,0.6299649477005,0.589521050453186,0.756693363189697,0.282630413770676,0.485381722450256,0.775485813617706,0.403765141963959,0.414090543985367,0.840113878250122,0.350339233875275,0.423523873090744,0.89539647102356,0.137450277805328,0.564694344997406,0.819302439689636,0.0993159338831902,0.589521050453186,0.756693363189697,0.282630413770676,0.565264761447906,0.667678415775299,0.484439015388489,0.352027088403702,0.751341104507446,0.558178603649139,0.485381722450256,0.775485813617706,0.403765141963959,0.564694344997406,0.819302439689636,0.0993159338831902,0.400802761316299,0.91427880525589,0.058747798204422,0.502258479595184,0.862272143363953,0.0649860948324203,0.412384271621704,0.904653489589691,0.107429757714272,0.562582015991211,0.822545289993286,0.0831891745328903,0.502258479595184,0.862272143363953,0.0649860948324203,-0.371115833520889,0.753432333469391,0.542782247066498,-0.303604960441589,0.718661367893219,0.625579476356506,-0.452004313468933,0.771512627601624,0.447727888822556,-0.625558972358704,0.77270781993866,0.107696421444416,-0.585017263889313,0.780795037746429,0.219348475337029,-0.531592845916748,0.794857501983643,0.292592853307724,-0.506270945072174,0.78833395242691,0.349598348140717,-0.531592845916748,0.794857501983643,0.292592853307724,-0.452004313468933,0.771512627601624,0.447727888822556,-0.680832028388977,0.732434332370758,0.00274606212042272,-0.625558972358704,0.77270781993866,0.107696421444416,\r\n-0.720622062683105,0.682523369789124,-0.121924221515656,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.766865074634552,0.464047014713287,-0.443371415138245,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.720622062683105,0.682523369789124,-0.121924221515656,-0.625558972358704,0.77270781993866,0.107696421444416,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.717185020446777,0.308430403470993,-0.624912917613983,-0.684755086898804,0.232766196131706,-0.690601348876953,0.282035499811172,0.860876023769379,0.423495352268219,0.140000775456429,0.8920978307724,0.42960587143898,0.200547784566879,0.871106803417206,0.448278248310089,-0.00927667506039143,0.893964827060699,0.448040992021561,0.140000775456429,0.8920978307724,0.42960587143898,-0.131261244416237,0.898248374462128,0.419428408145905,-0.225755333900452,0.870906412601471,0.436527609825134,-0.131261244416237,0.898248374462128,0.419428408145905,-0.34477636218071,0.844029068946838,0.410784691572189,0.40284988284111,0.813345849514008,0.419738441705704,0.425497531890869,0.825517654418945,0.370772540569305,0.282035499811172,0.860876023769379,0.423495352268219,0.516729414463043,0.740926206111908,0.428974270820618,0.585967361927032,0.712411463260651,0.386150181293488,0.40284988284111,0.813345849514008,0.419738441705704,0.516729414463043,0.740926206111908,0.428974270820618,0.609616696834564,0.668630480766296,0.425794094800949,0.656721949577332,0.643489122390747,0.39324015378952,0.656721949577332,0.643489122390747,0.39324015378952,0.609616696834564,0.668630480766296,0.425794094800949,0.680645763874054,0.622765839099884,0.385854780673981,0.740961253643036,0.571200609207153,0.353137522935867,0.680645763874054,0.622765839099884,0.385854780673981,0.728707492351532,0.596628785133362,0.336183488368988,0.813469469547272,0.492053896188736,0.310081034898758,\r\n0.740961253643036,0.571200609207153,0.353137522935867,0.728707492351532,0.596628785133362,0.336183488368988,-0.508468925952911,0.789303302764893,0.344179391860962,-0.456569045782089,0.841997385025024,0.287376046180725,-0.562416851520538,0.768422424793243,0.3053098320961,-0.508468925952911,0.789303302764893,0.344179391860962,-0.402364999055862,0.867863774299622,0.291401356458664,-0.456569045782089,0.841997385025024,0.287376046180725,-0.332358658313751,0.905089437961578,0.265237092971802,-0.402364999055862,0.867863774299622,0.291401356458664,-0.356675505638123,0.881681382656097,0.308902084827423,-0.00165920460131019,0.942564904689789,0.334018737077713,0.0210793167352676,0.934243619441986,0.356011837720871,0.0455286465585232,0.955208241939545,0.292410999536514,0.0370180159807205,0.944538235664368,0.326308369636536,0.0124405659735203,0.942123353481293,0.335035353899002,0.0149575555697083,0.937722444534302,0.347063153982162,-0.0399769321084023,0.918779075145721,0.39274263381958,-0.0737321674823761,0.927636742591858,0.366133213043213,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.0399769321084023,0.918779075145721,0.39274263381958,-0.0220568105578423,0.875001907348633,0.4836166203022,0.00504047749564052,0.912324905395508,0.409435838460922,0.00504047749564052,0.912324905395508,0.409435838460922,0.0149575555697083,0.937722444534302,0.347063153982162,0.0124405659735203,0.942123353481293,0.335035353899002,0.0455286465585232,0.955208241939545,0.292410999536514,0.00099968898575753,0.944439470767975,0.328683614730835,-0.00165920460131019,0.942564904689789,0.334018737077713,0.0149575555697083,0.937722444534302,0.347063153982162,0.00099968898575753,0.944439470767975,0.328683614730835,0.0370180159807205,0.944538235664368,0.326308369636536,-0.119040869176388,0.931482434272766,0.343758255243301,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.0737321674823761,0.927636742591858,0.366133213043213,-0.280761659145355,0.907453596591949,0.312570810317993,-0.356675505638123,0.881681382656097,0.308902084827423,-0.326088964939117,0.869036853313446,0.372076332569122,\r\n-0.326088964939117,0.869036853313446,0.372076332569122,-0.243454650044441,0.89489209651947,0.374029159545898,-0.280761659145355,0.907453596591949,0.312570810317993,-0.196796864271164,0.928145945072174,0.315936774015427,-0.243454650044441,0.89489209651947,0.374029159545898,-0.163400262594223,0.903527617454529,0.396154075860977,-0.163400262594223,0.903527617454529,0.396154075860977,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.119040869176388,0.931482434272766,0.343758255243301,-0.00710782175883651,0.699150860309601,0.714938759803772,0.0615507550537586,0.786284863948822,0.614790678024292,0.200045228004456,0.685127973556519,0.700415134429932,-0.00710782175883651,0.699150860309601,0.714938759803772,-0.144438967108727,0.702415764331818,0.696957170963287,-0.178909987211227,0.755734980106354,0.6299649477005,0.352027088403702,0.751341104507446,0.558178603649139,0.403216242790222,0.575127720832825,0.711789727210999,0.200045228004456,0.685127973556519,0.700415134429932,-0.303604960441589,0.718661367893219,0.625579476356506,-0.371115833520889,0.753432333469391,0.542782247066498,-0.230970978736877,0.712756633758545,0.662291646003723,-0.230970978736877,0.712756633758545,0.662291646003723,-0.178909987211227,0.755734980106354,0.6299649477005,-0.144438967108727,0.702415764331818,0.696957170963287,0.485381722450256,0.775485813617706,0.403765141963959,0.589521050453186,0.756693363189697,0.282630413770676,0.568126499652863,0.732693731784821,0.374689400196075,0.728622317314148,0.667804062366486,0.152141824364662,0.589521050453186,0.756693363189697,0.282630413770676,0.564694344997406,0.819302439689636,0.0993159338831902,0.403216242790222,0.575127720832825,0.711789727210999,0.352027088403702,0.751341104507446,0.558178603649139,0.565264761447906,0.667678415775299,0.484439015388489,0.565264761447906,0.667678415775299,0.484439015388489,0.485381722450256,0.775485813617706,0.403765141963959,0.568126499652863,0.732693731784821,0.374689400196075,0.564694344997406,0.819302439689636,0.0993159338831902,0.502258479595184,0.862272143363953,0.0649860948324203,\r\n0.655722379684448,0.750401079654694,0.0832246690988541,0.562582015991211,0.822545289993286,0.0831891745328903,0.655722379684448,0.750401079654694,0.0832246690988541,0.502258479595184,0.862272143363953,0.0649860948324203,-0.415074288845062,0.756134450435638,0.505938589572906,-0.452004313468933,0.771512627601624,0.447727888822556,-0.303604960441589,0.718661367893219,0.625579476356506,-0.506270945072174,0.78833395242691,0.349598348140717,-0.625558972358704,0.77270781993866,0.107696421444416,-0.531592845916748,0.794857501983643,0.292592853307724,-0.415074288845062,0.756134450435638,0.505938589572906,-0.506270945072174,0.78833395242691,0.349598348140717,-0.452004313468933,0.771512627601624,0.447727888822556,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.625558972358704,0.77270781993866,0.107696421444416,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.744646847248077,0.635796189308167,-0.203135594725609,-0.747297346591949,0.340000540018082,-0.570916891098022,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.717185020446777,0.308430403470993,-0.624912917613983,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.717185020446777,0.308430403470993,-0.624912917613983,0.28486368060112,0.870667159557343,0.400987833738327,0.140000775456429,0.8920978307724,0.42960587143898,0.282035499811172,0.860876023769379,0.423495352268219,0.140000775456429,0.8920978307724,0.42960587143898,0.0628877878189087,0.912785232067108,0.403569251298904,-0.131261244416237,0.898248374462128,0.419428408145905,-0.348508179187775,0.848460733890533,0.398316979408264,-0.34477636218071,0.844029068946838,0.410784691572189,-0.131261244416237,0.898248374462128,0.419428408145905,0.40284988284111,0.813345849514008,0.419738441705704,\r\n0.534934163093567,0.760536730289459,0.368007034063339,0.425497531890869,0.825517654418945,0.370772540569305,0.282035499811172,0.860876023769379,0.423495352268219,0.425497531890869,0.825517654418945,0.370772540569305,0.28486368060112,0.870667159557343,0.400987833738327,0.516729414463043,0.740926206111908,0.428974270820618,0.656721949577332,0.643489122390747,0.39324015378952,0.585967361927032,0.712411463260651,0.386150181293488,0.40284988284111,0.813345849514008,0.419738441705704,0.585967361927032,0.712411463260651,0.386150181293488,0.534934163093567,0.760536730289459,0.368007034063339,0.656721949577332,0.643489122390747,0.39324015378952,0.680645763874054,0.622765839099884,0.385854780673981,0.740961253643036,0.571200609207153,0.353137522935867,0.740961253643036,0.571200609207153,0.353137522935867,0.813469469547272,0.492053896188736,0.310081034898758,0.773432850837708,0.546832025051117,0.320587426424026,-0.508468925952911,0.789303302764893,0.344179391860962,-0.562416851520538,0.768422424793243,0.3053098320961,-0.631599545478821,0.675979554653168,0.379649370908737,-0.41354101896286,0.840723216533661,0.349525600671768,-0.402364999055862,0.867863774299622,0.291401356458664,-0.508468925952911,0.789303302764893,0.344179391860962,-0.41354101896286,0.840723216533661,0.349525600671768,-0.356675505638123,0.881681382656097,0.308902084827423,-0.402364999055862,0.867863774299622,0.291401356458664,0.0210793167352676,0.934243619441986,0.356011837720871,-0.00165920460131019,0.942564904689789,0.334018737077713,0.0184278078377247,0.914194524288177,0.404856353998184,-0.0220568105578423,0.875001907348633,0.4836166203022,-0.0399769321084023,0.918779075145721,0.39274263381958,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.0220568105578423,0.875001907348633,0.4836166203022,0.0462571904063225,0.858748018741608,0.51030570268631,0.00504047749564052,0.912324905395508,0.409435838460922,0.0184278078377247,0.914194524288177,0.404856353998184,0.0149575555697083,0.937722444534302,0.347063153982162,0.00504047749564052,0.912324905395508,0.409435838460922,\r\n-0.00165920460131019,0.942564904689789,0.334018737077713,0.00099968898575753,0.944439470767975,0.328683614730835,0.0184278078377247,0.914194524288177,0.404856353998184,0.00099968898575753,0.944439470767975,0.328683614730835,0.0149575555697083,0.937722444534302,0.347063153982162,0.0184278078377247,0.914194524288177,0.404856353998184,-0.41354101896286,0.840723216533661,0.349525600671768,-0.326088964939117,0.869036853313446,0.372076332569122,-0.356675505638123,0.881681382656097,0.308902084827423,-0.326088964939117,0.869036853313446,0.372076332569122,-0.296371966600418,0.851617157459259,0.432332843542099,-0.243454650044441,0.89489209651947,0.374029159545898,-0.21868622303009,0.869014382362366,0.443835824728012,-0.163400262594223,0.903527617454529,0.396154075860977,-0.243454650044441,0.89489209651947,0.374029159545898,-0.163400262594223,0.903527617454529,0.396154075860977,-0.136990383267403,0.861192524433136,0.489470094442368,-0.0827180966734886,0.896940350532532,0.434345126152039,0.177898719906807,0.569624483585358,0.80242121219635,-0.00710782175883651,0.699150860309601,0.714938759803772,0.200045228004456,0.685127973556519,0.700415134429932,-0.00710782175883651,0.699150860309601,0.714938759803772,-0.103250041604042,0.65054452419281,0.752416849136353,-0.144438967108727,0.702415764331818,0.696957170963287,0.177898719906807,0.569624483585358,0.80242121219635,0.200045228004456,0.685127973556519,0.700415134429932,0.403216242790222,0.575127720832825,0.711789727210999,-0.230970978736877,0.712756633758545,0.662291646003723,-0.204632475972176,0.683543920516968,0.700637638568878,-0.303604960441589,0.718661367893219,0.625579476356506,-0.103250041604042,0.65054452419281,0.752416849136353,-0.230970978736877,0.712756633758545,0.662291646003723,-0.144438967108727,0.702415764331818,0.696957170963287,0.568126499652863,0.732693731784821,0.374689400196075,0.589521050453186,0.756693363189697,0.282630413770676,0.648679733276367,0.668572425842285,0.363628059625626,0.728622317314148,0.667804062366486,0.152141824364662,0.702343225479126,0.663754045963287,0.257185816764832,\r\n0.589521050453186,0.756693363189697,0.282630413770676,0.655722379684448,0.750401079654694,0.0832246690988541,0.728622317314148,0.667804062366486,0.152141824364662,0.564694344997406,0.819302439689636,0.0993159338831902,0.565264761447906,0.667678415775299,0.484439015388489,0.568126499652863,0.732693731784821,0.374689400196075,0.648679733276367,0.668572425842285,0.363628059625626,-0.415074288845062,0.756134450435638,0.505938589572906,-0.303604960441589,0.718661367893219,0.625579476356506,-0.407414078712463,0.733083844184875,0.544611513614655,-0.625558972358704,0.77270781993866,0.107696421444416,-0.506270945072174,0.78833395242691,0.349598348140717,-0.572573006153107,0.777385354042053,0.260445773601532,-0.506270945072174,0.78833395242691,0.349598348140717,-0.415074288845062,0.756134450435638,0.505938589572906,-0.503086626529694,0.769778847694397,0.392866611480713,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.771622538566589,0.535571694374084,-0.343164056539536,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.649244844913483,0.756180107593536,0.081685945391655,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.625558972358704,0.77270781993866,0.107696421444416,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.717185020446777,0.308430403470993,-0.624912917613983,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.71440201997757,0.384066343307495,-0.584912478923798,0.140000775456429,0.8920978307724,0.42960587143898,0.28486368060112,0.870667159557343,0.400987833738327,0.0628877878189087,0.912785232067108,0.403569251298904,-0.131261244416237,0.898248374462128,0.419428408145905,0.0628877878189087,0.912785232067108,0.403569251298904,-0.200770318508148,0.900176703929901,0.386488109827042,-0.131261244416237,0.898248374462128,0.419428408145905,\r\n-0.200770318508148,0.900176703929901,0.386488109827042,-0.348508179187775,0.848460733890533,0.398316979408264,0.584873735904694,0.746033310890198,0.318365901708603,0.425497531890869,0.825517654418945,0.370772540569305,0.534934163093567,0.760536730289459,0.368007034063339,0.425497531890869,0.825517654418945,0.370772540569305,0.409736573696136,0.835191786289215,0.36683851480484,0.28486368060112,0.870667159557343,0.400987833738327,0.656721949577332,0.643489122390747,0.39324015378952,0.706528067588806,0.606877267360687,0.364030212163925,0.585967361927032,0.712411463260651,0.386150181293488,0.585967361927032,0.712411463260651,0.386150181293488,0.65792590379715,0.668955445289612,0.345878452062607,0.534934163093567,0.760536730289459,0.368007034063339,0.740961253643036,0.571200609207153,0.353137522935867,0.706528067588806,0.606877267360687,0.364030212163925,0.656721949577332,0.643489122390747,0.39324015378952,0.773432850837708,0.546832025051117,0.320587426424026,0.813469469547272,0.492053896188736,0.310081034898758,0.834587514400482,0.479792833328247,0.270670175552368,0.706528067588806,0.606877267360687,0.364030212163925,0.740961253643036,0.571200609207153,0.353137522935867,0.773432850837708,0.546832025051117,0.320587426424026,-0.631599545478821,0.675979554653168,0.379649370908737,-0.518918097019196,0.76610666513443,0.379215508699417,-0.508468925952911,0.789303302764893,0.344179391860962,-0.508468925952911,0.789303302764893,0.344179391860962,-0.518918097019196,0.76610666513443,0.379215508699417,-0.41354101896286,0.840723216533661,0.349525600671768,-0.0220568105578423,0.875001907348633,0.4836166203022,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.0572907291352749,0.846901178359985,0.528654992580414,0.0462571904063225,0.858748018741608,0.51030570268631,-0.0220568105578423,0.875001907348633,0.4836166203022,0.0357358604669571,0.808654189109802,0.587197721004486,0.00504047749564052,0.912324905395508,0.409435838460922,0.0462571904063225,0.858748018741608,0.51030570268631,0.0184278078377247,0.914194524288177,0.404856353998184,\r\n-0.41354101896286,0.840723216533661,0.349525600671768,-0.380710005760193,0.818871200084686,0.429545909166336,-0.326088964939117,0.869036853313446,0.372076332569122,-0.380710005760193,0.818871200084686,0.429545909166336,-0.296371966600418,0.851617157459259,0.432332843542099,-0.326088964939117,0.869036853313446,0.372076332569122,-0.21868622303009,0.869014382362366,0.443835824728012,-0.243454650044441,0.89489209651947,0.374029159545898,-0.296371966600418,0.851617157459259,0.432332843542099,-0.21868622303009,0.869014382362366,0.443835824728012,-0.136990383267403,0.861192524433136,0.489470094442368,-0.163400262594223,0.903527617454529,0.396154075860977,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.0827180966734886,0.896940350532532,0.434345126152039,-0.136990383267403,0.861192524433136,0.489470094442368,-0.00710782175883651,0.699150860309601,0.714938759803772,0.177898719906807,0.569624483585358,0.80242121219635,-0.103250041604042,0.65054452419281,0.752416849136353,-0.230970978736877,0.712756633758545,0.662291646003723,-0.103250041604042,0.65054452419281,0.752416849136353,-0.204632475972176,0.683543920516968,0.700637638568878,-0.204632475972176,0.683543920516968,0.700637638568878,-0.122283548116684,0.634320259094238,0.763337671756744,-0.303604960441589,0.718661367893219,0.625579476356506,0.648679733276367,0.668572425842285,0.363628059625626,0.589521050453186,0.756693363189697,0.282630413770676,0.631123781204224,0.707494676113129,0.31801575422287,0.702343225479126,0.663754045963287,0.257185816764832,0.728622317314148,0.667804062366486,0.152141824364662,0.792878091335297,0.55015617609024,0.26205387711525,0.663009285926819,0.671489715576172,0.330938100814819,0.589521050453186,0.756693363189697,0.282630413770676,0.702343225479126,0.663754045963287,0.257185816764832,0.648679733276367,0.668572425842285,0.363628059625626,0.643102586269379,0.681853175163269,0.348561525344849,0.565264761447906,0.667678415775299,0.484439015388489,-0.303604960441589,0.718661367893219,0.625579476356506,-0.27138477563858,0.665755093097687,0.695068597793579,\r\n-0.407414078712463,0.733083844184875,0.544611513614655,-0.415074288845062,0.756134450435638,0.505938589572906,-0.407414078712463,0.733083844184875,0.544611513614655,-0.503086626529694,0.769778847694397,0.392866611480713,-0.506270945072174,0.78833395242691,0.349598348140717,-0.503086626529694,0.769778847694397,0.392866611480713,-0.572573006153107,0.777385354042053,0.260445773601532,-0.625558972358704,0.77270781993866,0.107696421444416,-0.572573006153107,0.777385354042053,0.260445773601532,-0.649244844913483,0.756180107593536,0.081685945391655,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.711636543273926,0.698741257190704,-0.0730339512228966,-0.649244844913483,0.756180107593536,0.081685945391655,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.749557852745056,0.457023978233337,-0.478844404220581,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.710354268550873,0.295562565326691,-0.638779640197754,0.28486368060112,0.870667159557343,0.400987833738327,0.206814229488373,0.900929152965546,0.381515920162201,0.0628877878189087,0.912785232067108,0.403569251298904,-0.200770318508148,0.900176703929901,0.386488109827042,0.0628877878189087,0.912785232067108,0.403569251298904,-0.0257141757756472,0.928844511508942,0.369576275348663,-0.410857200622559,0.837581336498261,0.360074609518051,-0.348508179187775,0.848460733890533,0.398316979408264,-0.200770318508148,0.900176703929901,0.386488109827042,0.425497531890869,0.825517654418945,0.370772540569305,\r\n0.584873735904694,0.746033310890198,0.318365901708603,0.525031328201294,0.784231781959534,0.330639481544495,0.584873735904694,0.746033310890198,0.318365901708603,0.534934163093567,0.760536730289459,0.368007034063339,0.65792590379715,0.668955445289612,0.345878452062607,0.425497531890869,0.825517654418945,0.370772540569305,0.525031328201294,0.784231781959534,0.330639481544495,0.409736573696136,0.835191786289215,0.36683851480484,0.370445489883423,0.851837635040283,0.370327740907669,0.28486368060112,0.870667159557343,0.400987833738327,0.409736573696136,0.835191786289215,0.36683851480484,0.585967361927032,0.712411463260651,0.386150181293488,0.706528067588806,0.606877267360687,0.364030212163925,0.65792590379715,0.668955445289612,0.345878452062607,0.834587514400482,0.479792833328247,0.270670175552368,0.757834613323212,0.601945221424103,0.251691490411758,0.773432850837708,0.546832025051117,0.320587426424026,0.739832520484924,0.594964683055878,0.314109563827515,0.706528067588806,0.606877267360687,0.364030212163925,0.773432850837708,0.546832025051117,0.320587426424026,-0.607724189758301,0.685403048992157,0.40111568570137,-0.518918097019196,0.76610666513443,0.379215508699417,-0.631599545478821,0.675979554653168,0.379649370908737,-0.434059888124466,0.801290690898895,0.411734193563461,-0.41354101896286,0.840723216533661,0.349525600671768,-0.518918097019196,0.76610666513443,0.379215508699417,0.0357358604669571,0.808654189109802,0.587197721004486,-0.0220568105578423,0.875001907348633,0.4836166203022,-0.0572907291352749,0.846901178359985,0.528654992580414,0.0462571904063225,0.858748018741608,0.51030570268631,0.0357358604669571,0.808654189109802,0.587197721004486,0.11349905282259,0.769034266471863,0.629050135612488,-0.434059888124466,0.801290690898895,0.411734193563461,-0.380710005760193,0.818871200084686,0.429545909166336,-0.41354101896286,0.840723216533661,0.349525600671768,-0.380710005760193,0.818871200084686,0.429545909166336,-0.34439817070961,0.814282596111298,0.46726182103157,-0.296371966600418,0.851617157459259,0.432332843542099,\r\n-0.21868622303009,0.869014382362366,0.443835824728012,-0.296371966600418,0.851617157459259,0.432332843542099,-0.255912095308304,0.83516263961792,0.486839056015015,-0.136990383267403,0.861192524433136,0.489470094442368,-0.21868622303009,0.869014382362366,0.443835824728012,-0.255912095308304,0.83516263961792,0.486839056015015,-0.125539153814316,0.816528499126434,0.563490033149719,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.136990383267403,0.861192524433136,0.489470094442368,0.070015549659729,0.537744641304016,0.840195417404175,-0.103250041604042,0.65054452419281,0.752416849136353,0.177898719906807,0.569624483585358,0.80242121219635,-0.103250041604042,0.65054452419281,0.752416849136353,-0.122283548116684,0.634320259094238,0.763337671756744,-0.204632475972176,0.683543920516968,0.700637638568878,-0.303604960441589,0.718661367893219,0.625579476356506,-0.122283548116684,0.634320259094238,0.763337671756744,-0.27138477563858,0.665755093097687,0.695068597793579,0.631123781204224,0.707494676113129,0.31801575422287,0.589521050453186,0.756693363189697,0.282630413770676,0.663009285926819,0.671489715576172,0.330938100814819,0.643102586269379,0.681853175163269,0.348561525344849,0.648679733276367,0.668572425842285,0.363628059625626,0.631123781204224,0.707494676113129,0.31801575422287,0.663009285926819,0.671489715576172,0.330938100814819,0.702343225479126,0.663754045963287,0.257185816764832,0.792878091335297,0.55015617609024,0.26205387711525,-0.407414078712463,0.733083844184875,0.544611513614655,-0.27138477563858,0.665755093097687,0.695068597793579,-0.364991903305054,0.712450742721558,0.599328637123108,-0.407414078712463,0.733083844184875,0.544611513614655,-0.45462641119957,0.772541880607605,0.443276107311249,-0.503086626529694,0.769778847694397,0.392866611480713,-0.503086626529694,0.769778847694397,0.392866611480713,-0.572954773902893,0.785195529460907,0.234926968812943,-0.572573006153107,0.777385354042053,0.260445773601532,-0.572954773902893,0.785195529460907,0.234926968812943,-0.649244844913483,0.756180107593536,0.081685945391655,\r\n-0.572573006153107,0.777385354042053,0.260445773601532,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.734208405017853,0.623535692691803,-0.268590867519379,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.649244844913483,0.756180107593536,0.081685945391655,-0.71440201997757,0.384066343307495,-0.584912478923798,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.736679971218109,0.481523275375366,-0.474803030490875,0.28486368060112,0.870667159557343,0.400987833738327,0.370445489883423,0.851837635040283,0.370327740907669,0.206814229488373,0.900929152965546,0.381515920162201,0.206814229488373,0.900929152965546,0.381515920162201,-0.0257141757756472,0.928844511508942,0.369576275348663,0.0628877878189087,0.912785232067108,0.403569251298904,-0.26441678404808,0.898087739944458,0.351456969976425,-0.200770318508148,0.900176703929901,0.386488109827042,-0.0257141757756472,0.928844511508942,0.369576275348663,-0.26441678404808,0.898087739944458,0.351456969976425,-0.410857200622559,0.837581336498261,0.360074609518051,-0.200770318508148,0.900176703929901,0.386488109827042,0.584873735904694,0.746033310890198,0.318365901708603,0.651388585567474,0.708035290241241,0.272724986076355,0.525031328201294,0.784231781959534,0.330639481544495,0.584873735904694,0.746033310890198,0.318365901708603,0.65792590379715,0.668955445289612,0.345878452062607,0.701638877391815,0.6561039686203,0.277903109788895,0.477895528078079,0.811493635177612,0.336293995380402,0.409736573696136,0.835191786289215,0.36683851480484,0.525031328201294,0.784231781959534,0.330639481544495,0.370445489883423,0.851837635040283,0.370327740907669,\r\n0.409736573696136,0.835191786289215,0.36683851480484,0.477895528078079,0.811493635177612,0.336293995380402,0.739832520484924,0.594964683055878,0.314109563827515,0.65792590379715,0.668955445289612,0.345878452062607,0.706528067588806,0.606877267360687,0.364030212163925,0.757834613323212,0.601945221424103,0.251691490411758,0.834587514400482,0.479792833328247,0.270670175552368,0.856891870498657,0.481830984354019,0.18323515355587,0.739832520484924,0.594964683055878,0.314109563827515,0.773432850837708,0.546832025051117,0.320587426424026,0.757834613323212,0.601945221424103,0.251691490411758,-0.607724189758301,0.685403048992157,0.40111568570137,-0.502315402030945,0.74101585149765,0.445617079734802,-0.518918097019196,0.76610666513443,0.379215508699417,-0.607724189758301,0.685403048992157,0.40111568570137,-0.631599545478821,0.675979554653168,0.379649370908737,-0.710453391075134,0.573210060596466,0.40827202796936,-0.434059888124466,0.801290690898895,0.411734193563461,-0.518918097019196,0.76610666513443,0.379215508699417,-0.502315402030945,0.74101585149765,0.445617079734802,0.0357358604669571,0.808654189109802,0.587197721004486,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.00917328894138336,0.803559899330139,0.595153033733368,0.11349905282259,0.769034266471863,0.629050135612488,0.0357358604669571,0.808654189109802,0.587197721004486,0.171767801046371,0.695141613483429,0.698049902915955,-0.434059888124466,0.801290690898895,0.411734193563461,-0.502315402030945,0.74101585149765,0.445617079734802,-0.380710005760193,0.818871200084686,0.429545909166336,-0.34439817070961,0.814282596111298,0.46726182103157,-0.380710005760193,0.818871200084686,0.429545909166336,-0.420775949954987,0.771332919597626,0.477486222982407,-0.34439817070961,0.814282596111298,0.46726182103157,-0.255912095308304,0.83516263961792,0.486839056015015,-0.296371966600418,0.851617157459259,0.432332843542099,-0.180099248886108,0.834104299545288,0.521377265453339,-0.136990383267403,0.861192524433136,0.489470094442368,-0.255912095308304,0.83516263961792,0.486839056015015,\r\n-0.125539153814316,0.816528499126434,0.563490033149719,-0.0566790737211704,0.805033981800079,0.590514719486237,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.136990383267403,0.861192524433136,0.489470094442368,-0.180099248886108,0.834104299545288,0.521377265453339,-0.125539153814316,0.816528499126434,0.563490033149719,-0.103250041604042,0.65054452419281,0.752416849136353,0.070015549659729,0.537744641304016,0.840195417404175,0.0103870760649443,0.565562665462494,0.824639797210693,-0.103250041604042,0.65054452419281,0.752416849136353,0.0103870760649443,0.565562665462494,0.824639797210693,-0.122283548116684,0.634320259094238,0.763337671756744,-0.0878424122929573,0.566415309906006,0.81942492723465,-0.27138477563858,0.665755093097687,0.695068597793579,-0.122283548116684,0.634320259094238,0.763337671756744,0.66301017999649,0.671490252017975,0.33093535900116,0.631123781204224,0.707494676113129,0.31801575422287,0.663009285926819,0.671489715576172,0.330938100814819,0.643102586269379,0.681853175163269,0.348561525344849,0.631123781204224,0.707494676113129,0.31801575422287,0.66301017999649,0.671490252017975,0.33093535900116,0.66301017999649,0.671490252017975,0.33093535900116,0.663009285926819,0.671489715576172,0.330938100814819,0.792878091335297,0.55015617609024,0.26205387711525,-0.27138477563858,0.665755093097687,0.695068597793579,-0.211153164505959,0.63484263420105,0.743228793144226,-0.364991903305054,0.712450742721558,0.599328637123108,-0.407414078712463,0.733083844184875,0.544611513614655,-0.364991903305054,0.712450742721558,0.599328637123108,-0.45462641119957,0.772541880607605,0.443276107311249,-0.503086626529694,0.769778847694397,0.392866611480713,-0.45462641119957,0.772541880607605,0.443276107311249,-0.572954773902893,0.785195529460907,0.234926968812943,-0.572954773902893,0.785195529460907,0.234926968812943,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.649244844913483,0.756180107593536,0.081685945391655,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.69564026594162,0.706728458404541,-0.128916040062904,\r\n-0.723692715167999,0.636235415935516,-0.267344951629639,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.723692715167999,0.636235415935516,-0.267344951629639,-0.69564026594162,0.706728458404541,-0.128916040062904,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.649244844913483,0.756180107593536,0.081685945391655,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.733263373374939,0.574238359928131,-0.36410841345787,-0.723692715167999,0.636235415935516,-0.267344951629639,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.710354268550873,0.295562565326691,-0.638779640197754,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.735906541347504,0.583010017871857,-0.344297617673874,0.339800775051117,0.877041697502136,0.339607506990433,0.206814229488373,0.900929152965546,0.381515920162201,0.370445489883423,0.851837635040283,0.370327740907669,0.120664469897747,0.930035948753357,0.34709233045578,-0.0257141757756472,0.928844511508942,0.369576275348663,0.206814229488373,0.900929152965546,0.381515920162201,-0.0933549478650093,0.941437005996704,0.324007898569107,-0.26441678404808,0.898087739944458,0.351456969976425,-0.0257141757756472,0.928844511508942,0.369576275348663,-0.456542074680328,0.822449326515198,0.339332163333893,-0.410857200622559,0.837581336498261,0.360074609518051,-0.26441678404808,0.898087739944458,0.351456969976425,0.584873735904694,0.746033310890198,0.318365901708603,0.701638877391815,0.6561039686203,0.277903109788895,0.651388585567474,0.708035290241241,0.272724986076355,0.651388585567474,0.708035290241241,0.272724986076355,\r\n0.589702844619751,0.750986874103546,0.297101110219955,0.525031328201294,0.784231781959534,0.330639481544495,0.701638877391815,0.6561039686203,0.277903109788895,0.65792590379715,0.668955445289612,0.345878452062607,0.739832520484924,0.594964683055878,0.314109563827515,0.477895528078079,0.811493635177612,0.336293995380402,0.525031328201294,0.784231781959534,0.330639481544495,0.589702844619751,0.750986874103546,0.297101110219955,0.477895528078079,0.811493635177612,0.336293995380402,0.465856403112412,0.814514815807343,0.34575030207634,0.370445489883423,0.851837635040283,0.370327740907669,0.856891870498657,0.481830984354019,0.18323515355587,0.814760744571686,0.548341810703278,0.188377380371094,0.757834613323212,0.601945221424103,0.251691490411758,0.757834613323212,0.601945221424103,0.251691490411758,0.701638877391815,0.6561039686203,0.277903109788895,0.739832520484924,0.594964683055878,0.314109563827515,-0.607724189758301,0.685403048992157,0.40111568570137,-0.661540448665619,0.62185800075531,0.419114142656326,-0.502315402030945,0.74101585149765,0.445617079734802,-0.710453391075134,0.573210060596466,0.40827202796936,-0.661540448665619,0.62185800075531,0.419114142656326,-0.607724189758301,0.685403048992157,0.40111568570137,-0.00917328894138336,0.803559899330139,0.595153033733368,-0.0572907291352749,0.846901178359985,0.528654992580414,-0.0566790737211704,0.805033981800079,0.590514719486237,0.0357358604669571,0.808654189109802,0.587197721004486,-0.00917328894138336,0.803559899330139,0.595153033733368,0.0688415914773941,0.750557005405426,0.657209813594818,0.171767801046371,0.695141613483429,0.698049902915955,0.0357358604669571,0.808654189109802,0.587197721004486,0.0688415914773941,0.750557005405426,0.657209813594818,-0.380710005760193,0.818871200084686,0.429545909166336,-0.502315402030945,0.74101585149765,0.445617079734802,-0.420775949954987,0.771332919597626,0.477486222982407,-0.350852310657501,0.792908728122711,0.498194992542267,-0.34439817070961,0.814282596111298,0.46726182103157,-0.420775949954987,0.771332919597626,0.477486222982407,\r\n-0.350852310657501,0.792908728122711,0.498194992542267,-0.255912095308304,0.83516263961792,0.486839056015015,-0.34439817070961,0.814282596111298,0.46726182103157,-0.244451001286507,0.809322655200958,0.534078896045685,-0.180099248886108,0.834104299545288,0.521377265453339,-0.255912095308304,0.83516263961792,0.486839056015015,-0.0566790737211704,0.805033981800079,0.590514719486237,-0.125539153814316,0.816528499126434,0.563490033149719,-0.10995526611805,0.763472318649292,0.636411547660828,-0.125539153814316,0.816528499126434,0.563490033149719,-0.180099248886108,0.834104299545288,0.521377265453339,-0.244451001286507,0.809322655200958,0.534078896045685,-0.211153164505959,0.63484263420105,0.743228793144226,-0.27138477563858,0.665755093097687,0.695068597793579,-0.0878424122929573,0.566415309906006,0.81942492723465,-0.345043480396271,0.744973540306091,0.570928394794464,-0.364991903305054,0.712450742721558,0.599328637123108,-0.211153164505959,0.63484263420105,0.743228793144226,-0.345043480396271,0.744973540306091,0.570928394794464,-0.45462641119957,0.772541880607605,0.443276107311249,-0.364991903305054,0.712450742721558,0.599328637123108,-0.45462641119957,0.772541880607605,0.443276107311249,-0.454120934009552,0.818123996257782,0.352770686149597,-0.572954773902893,0.785195529460907,0.234926968812943,-0.648440957069397,0.760834038257599,0.025604797527194,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.572954773902893,0.785195529460907,0.234926968812943,-0.735906541347504,0.583010017871857,-0.344297617673874,-0.723692715167999,0.636235415935516,-0.267344951629639,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.747195243835449,0.636458158493042,-0.191363915801048,-0.735906541347504,0.583010017871857,-0.344297617673874,-0.736679971218109,0.481523275375366,-0.474803030490875,-0.723692715167999,0.636235415935516,-0.267344951629639,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.699513852596283,0.335512816905975,-0.630960643291473,\r\n-0.672021389007568,0.235303074121475,-0.702153503894806,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.744723618030548,0.425731688737869,-0.513944506645203,-0.735906541347504,0.583010017871857,-0.344297617673874,0.120664469897747,0.930035948753357,0.34709233045578,0.206814229488373,0.900929152965546,0.381515920162201,0.339800775051117,0.877041697502136,0.339607506990433,0.370445489883423,0.851837635040283,0.370327740907669,0.454468876123428,0.827707409858704,0.329178035259247,0.339800775051117,0.877041697502136,0.339607506990433,0.120664469897747,0.930035948753357,0.34709233045578,-0.0933549478650093,0.941437005996704,0.324007898569107,-0.0257141757756472,0.928844511508942,0.369576275348663,-0.331681579351425,0.888959407806396,0.31581375002861,-0.26441678404808,0.898087739944458,0.351456969976425,-0.0933549478650093,0.941437005996704,0.324007898569107,-0.331681579351425,0.888959407806396,0.31581375002861,-0.456542074680328,0.822449326515198,0.339332163333893,-0.26441678404808,0.898087739944458,0.351456969976425,0.701638877391815,0.6561039686203,0.277903109788895,0.757834613323212,0.601945221424103,0.251691490411758,0.651388585567474,0.708035290241241,0.272724986076355,0.687060594558716,0.679798424243927,0.256557255983353,0.589702844619751,0.750986874103546,0.297101110219955,0.651388585567474,0.708035290241241,0.272724986076355,0.531353354454041,0.785781741142273,0.316560417413712,0.477895528078079,0.811493635177612,0.336293995380402,0.589702844619751,0.750986874103546,0.297101110219955,0.477895528078079,0.811493635177612,0.336293995380402,\r\n0.531353354454041,0.785781741142273,0.316560417413712,0.465856403112412,0.814514815807343,0.34575030207634,0.370445489883423,0.851837635040283,0.370327740907669,0.465856403112412,0.814514815807343,0.34575030207634,0.454468876123428,0.827707409858704,0.329178035259247,0.814760744571686,0.548341810703278,0.188377380371094,0.856891870498657,0.481830984354019,0.18323515355587,0.882639110088348,0.444853037595749,0.151835307478905,0.753814578056335,0.625589370727539,0.201000884175301,0.757834613323212,0.601945221424103,0.251691490411758,0.814760744571686,0.548341810703278,0.188377380371094,-0.661540448665619,0.62185800075531,0.419114142656326,-0.592370271682739,0.661886096000671,0.459351807832718,-0.502315402030945,0.74101585149765,0.445617079734802,-0.661540448665619,0.62185800075531,0.419114142656326,-0.710453391075134,0.573210060596466,0.40827202796936,-0.779942750930786,0.47905033826828,0.40274053812027,-0.0566790737211704,0.805033981800079,0.590514719486237,-0.00222995993681252,0.758724629878998,0.651407539844513,-0.00917328894138336,0.803559899330139,0.595153033733368,-0.00917328894138336,0.803559899330139,0.595153033733368,-0.00222995993681252,0.758724629878998,0.651407539844513,0.0688415914773941,0.750557005405426,0.657209813594818,0.170656859874725,0.672255575656891,0.720380902290344,0.171767801046371,0.695141613483429,0.698049902915955,0.0688415914773941,0.750557005405426,0.657209813594818,-0.508196234703064,0.703434944152832,0.496906071901321,-0.420775949954987,0.771332919597626,0.477486222982407,-0.502315402030945,0.74101585149765,0.445617079734802,-0.45082688331604,0.732257544994354,0.510444760322571,-0.350852310657501,0.792908728122711,0.498194992542267,-0.420775949954987,0.771332919597626,0.477486222982407,-0.350852310657501,0.792908728122711,0.498194992542267,-0.244451001286507,0.809322655200958,0.534078896045685,-0.255912095308304,0.83516263961792,0.486839056015015,-0.125539153814316,0.816528499126434,0.563490033149719,-0.244941562414169,0.766732037067413,0.593401610851288,-0.10995526611805,0.763472318649292,0.636411547660828,\r\n-0.10995526611805,0.763472318649292,0.636411547660828,-0.00222995993681252,0.758724629878998,0.651407539844513,-0.0566790737211704,0.805033981800079,0.590514719486237,-0.125539153814316,0.816528499126434,0.563490033149719,-0.244451001286507,0.809322655200958,0.534078896045685,-0.244941562414169,0.766732037067413,0.593401610851288,-0.211153164505959,0.63484263420105,0.743228793144226,-0.0878424122929573,0.566415309906006,0.81942492723465,-0.0166128817945719,0.487799763679504,0.87279736995697,-0.273892372846603,0.741438210010529,0.612578272819519,-0.345043480396271,0.744973540306091,0.570928394794464,-0.211153164505959,0.63484263420105,0.743228793144226,-0.45462641119957,0.772541880607605,0.443276107311249,-0.345043480396271,0.744973540306091,0.570928394794464,-0.372545152902603,0.80467277765274,0.462289720773697,-0.454120934009552,0.818123996257782,0.352770686149597,-0.45462641119957,0.772541880607605,0.443276107311249,-0.372545152902603,0.80467277765274,0.462289720773697,-0.572954773902893,0.785195529460907,0.234926968812943,-0.454120934009552,0.818123996257782,0.352770686149597,-0.535518169403076,0.820754408836365,0.198952734470367,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.648440957069397,0.760834038257599,0.025604797527194,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.648440957069397,0.760834038257599,0.025604797527194,-0.572954773902893,0.785195529460907,0.234926968812943,-0.535518169403076,0.820754408836365,0.198952734470367,-0.704932451248169,0.70012354850769,-0.113565295934677,-0.747195243835449,0.636458158493042,-0.191363915801048,-0.735906541347504,0.583010017871857,-0.344297617673874,-0.747195243835449,0.636458158493042,-0.191363915801048,-0.685977935791016,0.726748824119568,0.0356402434408665,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.699513852596283,0.335512816905975,-0.630960643291473,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.699513852596283,0.335512816905975,-0.630960643291473,-0.671750426292419,0.293438702821732,-0.680180072784424,\r\n-0.672021389007568,0.235303074121475,-0.702153503894806,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.63151079416275,0.161138862371445,-0.758437991142273,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.672021389007568,0.235303074121475,-0.702153503894806,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.735906541347504,0.583010017871857,-0.344297617673874,-0.747195243835449,0.636458158493042,-0.191363915801048,0.259863883256912,0.916297256946564,0.304745703935623,0.120664469897747,0.930035948753357,0.34709233045578,0.339800775051117,0.877041697502136,0.339607506990433,0.454468876123428,0.827707409858704,0.329178035259247,0.499427616596222,0.821781814098358,0.274311006069183,0.339800775051117,0.877041697502136,0.339607506990433,-0.0933549478650093,0.941437005996704,0.324007898569107,0.120664469897747,0.930035948753357,0.34709233045578,0.0816365703940392,0.953413069248199,0.290411591529846,-0.331681579351425,0.888959407806396,0.31581375002861,-0.0933549478650093,0.941437005996704,0.324007898569107,-0.144808739423752,0.93427848815918,0.325812876224518,0.687060594558716,0.679798424243927,0.256557255983353,0.651388585567474,0.708035290241241,0.272724986076355,0.757834613323212,0.601945221424103,0.251691490411758,0.603921234607697,0.745817482471466,0.281132161617279,0.589702844619751,0.750986874103546,0.297101110219955,0.687060594558716,0.679798424243927,0.256557255983353,0.603921234607697,0.745817482471466,0.281132161617279,0.531353354454041,0.785781741142273,0.316560417413712,0.589702844619751,0.750986874103546,0.297101110219955,0.530259847640991,0.784792244434357,0.320819973945618,\r\n0.465856403112412,0.814514815807343,0.34575030207634,0.531353354454041,0.785781741142273,0.316560417413712,0.530259847640991,0.784792244434357,0.320819973945618,0.454468876123428,0.827707409858704,0.329178035259247,0.465856403112412,0.814514815807343,0.34575030207634,0.814760744571686,0.548341810703278,0.188377380371094,0.882639110088348,0.444853037595749,0.151835307478905,0.875136613845825,0.461039930582047,0.146894499659538,0.757834613323212,0.601945221424103,0.251691490411758,0.753814578056335,0.625589370727539,0.201000884175301,0.687060594558716,0.679798424243927,0.256557255983353,0.814760744571686,0.548341810703278,0.188377380371094,0.835196971893311,0.530384182929993,0.145391151309013,0.753814578056335,0.625589370727539,0.201000884175301,-0.661540448665619,0.62185800075531,0.419114142656326,-0.728385210037231,0.55082643032074,0.407486438751221,-0.592370271682739,0.661886096000671,0.459351807832718,-0.592370271682739,0.661886096000671,0.459351807832718,-0.508196234703064,0.703434944152832,0.496906071901321,-0.502315402030945,0.74101585149765,0.445617079734802,-0.779942750930786,0.47905033826828,0.40274053812027,-0.728385210037231,0.55082643032074,0.407486438751221,-0.661540448665619,0.62185800075531,0.419114142656326,0.0842999070882797,0.694846153259277,0.714200377464294,0.0688415914773941,0.750557005405426,0.657209813594818,-0.00222995993681252,0.758724629878998,0.651407539844513,0.170656859874725,0.672255575656891,0.720380902290344,0.326419830322266,0.588403582572937,0.739750742912292,0.171767801046371,0.695141613483429,0.698049902915955,0.170656859874725,0.672255575656891,0.720380902290344,0.0688415914773941,0.750557005405426,0.657209813594818,0.0842999070882797,0.694846153259277,0.714200377464294,-0.508196234703064,0.703434944152832,0.496906071901321,-0.45082688331604,0.732257544994354,0.510444760322571,-0.420775949954987,0.771332919597626,0.477486222982407,-0.45082688331604,0.732257544994354,0.510444760322571,-0.361551642417908,0.763765871524811,0.534735381603241,-0.350852310657501,0.792908728122711,0.498194992542267,\r\n-0.350852310657501,0.792908728122711,0.498194992542267,-0.361551642417908,0.763765871524811,0.534735381603241,-0.244451001286507,0.809322655200958,0.534078896045685,-0.244941562414169,0.766732037067413,0.593401610851288,-0.190008848905563,0.738026797771454,0.647466540336609,-0.10995526611805,0.763472318649292,0.636411547660828,-0.10995526611805,0.763472318649292,0.636411547660828,0.0011579969432205,0.704622626304626,0.709581196308136,-0.00222995993681252,0.758724629878998,0.651407539844513,-0.361551642417908,0.763765871524811,0.534735381603241,-0.244941562414169,0.766732037067413,0.593401610851288,-0.244451001286507,0.809322655200958,0.534078896045685,0.0184622779488564,0.476772278547287,0.878832876682281,-0.211153164505959,0.63484263420105,0.743228793144226,-0.0166128817945719,0.487799763679504,0.87279736995697,-0.273892372846603,0.741438210010529,0.612578272819519,-0.372545152902603,0.80467277765274,0.462289720773697,-0.345043480396271,0.744973540306091,0.570928394794464,-0.211153164505959,0.63484263420105,0.743228793144226,-0.154047563672066,0.628877758979797,0.762090504169464,-0.273892372846603,0.741438210010529,0.612578272819519,-0.454120934009552,0.818123996257782,0.352770686149597,-0.372545152902603,0.80467277765274,0.462289720773697,-0.443687349557877,0.841512560844421,0.308217406272888,-0.454120934009552,0.818123996257782,0.352770686149597,-0.443687349557877,0.841512560844421,0.308217406272888,-0.535518169403076,0.820754408836365,0.198952734470367,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.648440957069397,0.760834038257599,0.025604797527194,-0.648440957069397,0.760834038257599,0.025604797527194,-0.535518169403076,0.820754408836365,0.198952734470367,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.747195243835449,0.636458158493042,-0.191363915801048,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.699513852596283,0.335512816905975,-0.630960643291473,-0.74332731962204,0.482900619506836,-0.462894558906555,\r\n-0.714353203773499,0.398155003786087,-0.5754753947258,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.719912886619568,0.385700732469559,-0.577027022838593,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.699513852596283,0.335512816905975,-0.630960643291473,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.676755666732788,0.323770403862,-0.661191582679749,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.743501663208008,0.515210628509521,-0.426337003707886,-0.747195243835449,0.636458158493042,-0.191363915801048,0.259863883256912,0.916297256946564,0.304745703935623,0.0816365703940392,0.953413069248199,0.290411591529846,0.120664469897747,0.930035948753357,0.34709233045578,0.339800775051117,0.877041697502136,0.339607506990433,0.405967473983765,0.871344029903412,0.275590032339096,0.259863883256912,0.916297256946564,0.304745703935623,0.454468876123428,0.827707409858704,0.329178035259247,0.545378625392914,0.787507832050323,0.287042766809464,0.499427616596222,0.821781814098358,0.274311006069183,0.405967473983765,0.871344029903412,0.275590032339096,0.339800775051117,0.877041697502136,0.339607506990433,0.499427616596222,0.821781814098358,0.274311006069183,-0.0933549478650093,0.941437005996704,0.324007898569107,0.0816365703940392,0.953413069248199,0.290411591529846,-0.144808739423752,0.93427848815918,0.325812876224518,-0.400785028934479,0.842192709445953,0.360669791698456,-0.331681579351425,0.888959407806396,0.31581375002861,-0.144808739423752,0.93427848815918,0.325812876224518,0.687060594558716,0.679798424243927,0.256557255983353,\r\n0.66792494058609,0.704096972942352,0.241088509559631,0.603921234607697,0.745817482471466,0.281132161617279,0.530259847640991,0.784792244434357,0.320819973945618,0.531353354454041,0.785781741142273,0.316560417413712,0.603921234607697,0.745817482471466,0.281132161617279,0.454468876123428,0.827707409858704,0.329178035259247,0.530259847640991,0.784792244434357,0.320819973945618,0.545378625392914,0.787507832050323,0.287042766809464,0.814760744571686,0.548341810703278,0.188377380371094,0.875136613845825,0.461039930582047,0.146894499659538,0.835196971893311,0.530384182929993,0.145391151309013,0.687060594558716,0.679798424243927,0.256557255983353,0.753814578056335,0.625589370727539,0.201000884175301,0.66792494058609,0.704096972942352,0.241088509559631,0.835196971893311,0.530384182929993,0.145391151309013,0.8096644282341,0.570172369480133,0.139092966914177,0.753814578056335,0.625589370727539,0.201000884175301,-0.728385210037231,0.55082643032074,0.407486438751221,-0.648044109344482,0.60447496175766,0.463301956653595,-0.592370271682739,0.661886096000671,0.459351807832718,-0.592370271682739,0.661886096000671,0.459351807832718,-0.648044109344482,0.60447496175766,0.463301956653595,-0.508196234703064,0.703434944152832,0.496906071901321,-0.779942750930786,0.47905033826828,0.40274053812027,-0.839265704154968,0.412689298391342,0.354006350040436,-0.728385210037231,0.55082643032074,0.407486438751221,-0.00222995993681252,0.758724629878998,0.651407539844513,0.0011579969432205,0.704622626304626,0.709581196308136,0.0842999070882797,0.694846153259277,0.714200377464294,0.326419830322266,0.588403582572937,0.739750742912292,0.170656859874725,0.672255575656891,0.720380902290344,0.300563395023346,0.580818891525269,0.75651228427887,0.170656859874725,0.672255575656891,0.720380902290344,0.0842999070882797,0.694846153259277,0.714200377464294,0.171050116419792,0.63865339756012,0.750242352485657,-0.508196234703064,0.703434944152832,0.496906071901321,-0.509385049343109,0.682417333126068,0.524245262145996,-0.45082688331604,0.732257544994354,0.510444760322571,\r\n-0.45082688331604,0.732257544994354,0.510444760322571,-0.412628054618835,0.699079036712646,0.583974659442902,-0.361551642417908,0.763765871524811,0.534735381603241,-0.260677695274353,0.707086980342865,0.657324194908142,-0.190008848905563,0.738026797771454,0.647466540336609,-0.244941562414169,0.766732037067413,0.593401610851288,-0.190008848905563,0.738026797771454,0.647466540336609,-0.102347299456596,0.688555359840393,0.717925071716309,-0.10995526611805,0.763472318649292,0.636411547660828,-0.102347299456596,0.688555359840393,0.717925071716309,0.0011579969432205,0.704622626304626,0.709581196308136,-0.10995526611805,0.763472318649292,0.636411547660828,-0.361551642417908,0.763765871524811,0.534735381603241,-0.412628054618835,0.699079036712646,0.583974659442902,-0.244941562414169,0.766732037067413,0.593401610851288,-0.211153164505959,0.63484263420105,0.743228793144226,0.0184622779488564,0.476772278547287,0.878832876682281,-0.154047563672066,0.628877758979797,0.762090504169464,-0.273892372846603,0.741438210010529,0.612578272819519,-0.310253471136093,0.794792354106903,0.521581828594208,-0.372545152902603,0.80467277765274,0.462289720773697,-0.154047563672066,0.628877758979797,0.762090504169464,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.273892372846603,0.741438210010529,0.612578272819519,-0.362296760082245,0.822969853878021,0.437563180923462,-0.443687349557877,0.841512560844421,0.308217406272888,-0.372545152902603,0.80467277765274,0.462289720773697,-0.538714408874512,0.833391427993774,0.123472064733505,-0.535518169403076,0.820754408836365,0.198952734470367,-0.443687349557877,0.841512560844421,0.308217406272888,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.725331544876099,0.679474115371704,-0.110493935644627,-0.648440957069397,0.760834038257599,0.025604797527194,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.535518169403076,0.820754408836365,0.198952734470367,\r\n-0.538714408874512,0.833391427993774,0.123472064733505,-0.648440957069397,0.760834038257599,0.025604797527194,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.752916395664215,0.558657944202423,-0.347876518964767,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.688008725643158,0.356131613254547,-0.632308542728424,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.605085909366608,0.128365859389305,-0.785743653774261,-0.676755666732788,0.323770403862,-0.661191582679749,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.641756534576416,0.219540387392044,-0.734813213348389,-0.676755666732788,0.323770403862,-0.661191582679749,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.699749410152435,0.412620484828949,-0.583176553249359,0.288249582052231,0.922927916049957,0.255178570747375,0.0816365703940392,0.953413069248199,0.290411591529846,0.259863883256912,0.916297256946564,0.304745703935623,0.288249582052231,0.922927916049957,0.255178570747375,0.259863883256912,0.916297256946564,0.304745703935623,0.405967473983765,0.871344029903412,0.275590032339096,0.499427616596222,0.821781814098358,0.274311006069183,0.545378625392914,0.787507832050323,0.287042766809464,0.594240605831146,0.76239538192749,0.256185978651047,0.463186770677567,0.857273399829865,0.224811419844627,0.405967473983765,0.871344029903412,0.275590032339096,0.499427616596222,0.821781814098358,0.274311006069183,0.0364857390522957,0.949636042118073,0.311223536729813,\r\n-0.144808739423752,0.93427848815918,0.325812876224518,0.0816365703940392,0.953413069248199,0.290411591529846,-0.144808739423752,0.93427848815918,0.325812876224518,-0.242881640791893,0.880402266979218,0.407308518886566,-0.400785028934479,0.842192709445953,0.360669791698456,0.603921234607697,0.745817482471466,0.281132161617279,0.66792494058609,0.704096972942352,0.241088509559631,0.594240605831146,0.76239538192749,0.256185978651047,0.603921234607697,0.745817482471466,0.281132161617279,0.545378625392914,0.787507832050323,0.287042766809464,0.530259847640991,0.784792244434357,0.320819973945618,0.892905056476593,0.43718808889389,0.107643201947212,0.835196971893311,0.530384182929993,0.145391151309013,0.875136613845825,0.461039930582047,0.146894499659538,0.707447111606598,0.681337416172028,0.187876492738724,0.66792494058609,0.704096972942352,0.241088509559631,0.753814578056335,0.625589370727539,0.201000884175301,0.835196971893311,0.530384182929993,0.145391151309013,0.846612989902496,0.517091929912567,0.125945329666138,0.8096644282341,0.570172369480133,0.139092966914177,0.753814578056335,0.625589370727539,0.201000884175301,0.8096644282341,0.570172369480133,0.139092966914177,0.747774243354797,0.644554853439331,0.159319013357162,-0.728385210037231,0.55082643032074,0.407486438751221,-0.792511641979218,0.490354537963867,0.362598329782486,-0.648044109344482,0.60447496175766,0.463301956653595,-0.508196234703064,0.703434944152832,0.496906071901321,-0.648044109344482,0.60447496175766,0.463301956653595,-0.592954397201538,0.638482749462128,0.490657389163971,-0.792511641979218,0.490354537963867,0.362598329782486,-0.728385210037231,0.55082643032074,0.407486438751221,-0.839265704154968,0.412689298391342,0.354006350040436,0.0842999070882797,0.694846153259277,0.714200377464294,0.0011579969432205,0.704622626304626,0.709581196308136,0.120986878871918,0.631951987743378,0.76550555229187,0.170656859874725,0.672255575656891,0.720380902290344,0.171050116419792,0.63865339756012,0.750242352485657,0.300563395023346,0.580818891525269,0.75651228427887,\r\n0.326419830322266,0.588403582572937,0.739750742912292,0.300563395023346,0.580818891525269,0.75651228427887,0.418978989124298,0.51156222820282,0.750173568725586,0.0842999070882797,0.694846153259277,0.714200377464294,0.120986878871918,0.631951987743378,0.76550555229187,0.171050116419792,0.63865339756012,0.750242352485657,-0.508196234703064,0.703434944152832,0.496906071901321,-0.592954397201538,0.638482749462128,0.490657389163971,-0.509385049343109,0.682417333126068,0.524245262145996,-0.412628054618835,0.699079036712646,0.583974659442902,-0.45082688331604,0.732257544994354,0.510444760322571,-0.509385049343109,0.682417333126068,0.524245262145996,-0.102347299456596,0.688555359840393,0.717925071716309,-0.190008848905563,0.738026797771454,0.647466540336609,-0.260677695274353,0.707086980342865,0.657324194908142,-0.244941562414169,0.766732037067413,0.593401610851288,-0.412628054618835,0.699079036712646,0.583974659442902,-0.260677695274353,0.707086980342865,0.657324194908142,0.0011579969432205,0.704622626304626,0.709581196308136,-0.102347299456596,0.688555359840393,0.717925071716309,0.0241209678351879,0.669620335102081,0.742311656475067,-0.154047563672066,0.628877758979797,0.762090504169464,0.0184622779488564,0.476772278547287,0.878832876682281,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.185941785573959,0.728787183761597,0.659010529518127,-0.310253471136093,0.794792354106903,0.521581828594208,-0.273892372846603,0.741438210010529,0.612578272819519,-0.362296760082245,0.822969853878021,0.437563180923462,-0.372545152902603,0.80467277765274,0.462289720773697,-0.310253471136093,0.794792354106903,0.521581828594208,-0.273892372846603,0.741438210010529,0.612578272819519,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.185941785573959,0.728787183761597,0.659010529518127,-0.362296760082245,0.822969853878021,0.437563180923462,-0.400089293718338,0.839020669460297,0.368744790554047,-0.443687349557877,0.841512560844421,0.308217406272888,-0.538714408874512,0.833391427993774,0.123472064733505,-0.443687349557877,0.841512560844421,0.308217406272888,\r\n-0.527909100055695,0.836934685707092,0.144402861595154,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.538714408874512,0.833391427993774,0.123472064733505,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.74332731962204,0.482900619506836,-0.462894558906555,-0.730887770652771,0.644415378570557,-0.22479259967804,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.671750426292419,0.293438702821732,-0.680180072784424,-0.688008725643158,0.356131613254547,-0.632308542728424,-0.688008725643158,0.356131613254547,-0.632308542728424,-0.714353203773499,0.398155003786087,-0.5754753947258,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.676755666732788,0.323770403862,-0.661191582679749,-0.676755666732788,0.323770403862,-0.661191582679749,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.70680445432663,0.5099818110466,-0.490250915288925,0.0816365703940392,0.953413069248199,0.290411591529846,0.288249582052231,0.922927916049957,0.255178570747375,0.145258456468582,0.949949622154236,0.276578217744827,\r\n0.405967473983765,0.871344029903412,0.275590032339096,0.463186770677567,0.857273399829865,0.224811419844627,0.288249582052231,0.922927916049957,0.255178570747375,0.603921234607697,0.745817482471466,0.281132161617279,0.594240605831146,0.76239538192749,0.256185978651047,0.545378625392914,0.787507832050323,0.287042766809464,0.594240605831146,0.76239538192749,0.256185978651047,0.568870484828949,0.793772757053375,0.215200021862984,0.499427616596222,0.821781814098358,0.274311006069183,0.499427616596222,0.821781814098358,0.274311006069183,0.568870484828949,0.793772757053375,0.215200021862984,0.463186770677567,0.857273399829865,0.224811419844627,0.0364857390522957,0.949636042118073,0.311223536729813,0.0200152564793825,0.924578607082367,0.380465060472488,-0.144808739423752,0.93427848815918,0.325812876224518,0.0364857390522957,0.949636042118073,0.311223536729813,0.0816365703940392,0.953413069248199,0.290411591529846,0.145258456468582,0.949949622154236,0.276578217744827,-0.144808739423752,0.93427848815918,0.325812876224518,0.0200152564793825,0.924578607082367,0.380465060472488,-0.242881640791893,0.880402266979218,0.407308518886566,-0.242881640791893,0.880402266979218,0.407308518886566,-0.403034508228302,0.800877153873444,0.442898362874985,-0.400785028934479,0.842192709445953,0.360669791698456,0.63687264919281,0.742748022079468,0.206684440374374,0.594240605831146,0.76239538192749,0.256185978651047,0.66792494058609,0.704096972942352,0.241088509559631,0.892905056476593,0.43718808889389,0.107643201947212,0.876342535018921,0.469281286001205,0.108622267842293,0.835196971893311,0.530384182929993,0.145391151309013,0.66792494058609,0.704096972942352,0.241088509559631,0.707447111606598,0.681337416172028,0.187876492738724,0.63687264919281,0.742748022079468,0.206684440374374,0.753814578056335,0.625589370727539,0.201000884175301,0.747774243354797,0.644554853439331,0.159319013357162,0.707447111606598,0.681337416172028,0.187876492738724,0.846612989902496,0.517091929912567,0.125945329666138,0.835196971893311,0.530384182929993,0.145391151309013,\r\n0.876342535018921,0.469281286001205,0.108622267842293,0.846612989902496,0.517091929912567,0.125945329666138,0.860349118709564,0.497326880693436,0.111648008227348,0.8096644282341,0.570172369480133,0.139092966914177,0.8096644282341,0.570172369480133,0.139092966914177,0.783766031265259,0.600842177867889,0.157159611582756,0.747774243354797,0.644554853439331,0.159319013357162,-0.648044109344482,0.60447496175766,0.463301956653595,-0.792511641979218,0.490354537963867,0.362598329782486,-0.736732006072998,0.531391441822052,0.418149441480637,-0.648044109344482,0.60447496175766,0.463301956653595,-0.68760085105896,0.569115519523621,0.450901955366135,-0.592954397201538,0.638482749462128,0.490657389163971,-0.839265704154968,0.412689298391342,0.354006350040436,-0.891540706157684,0.366050094366074,0.266762763261795,-0.792511641979218,0.490354537963867,0.362598329782486,0.120986878871918,0.631951987743378,0.76550555229187,0.0011579969432205,0.704622626304626,0.709581196308136,0.0241209678351879,0.669620335102081,0.742311656475067,0.300563395023346,0.580818891525269,0.75651228427887,0.171050116419792,0.63865339756012,0.750242352485657,0.261984586715698,0.567845344543457,0.780330419540405,0.418978989124298,0.51156222820282,0.750173568725586,0.300563395023346,0.580818891525269,0.75651228427887,0.49820551276207,0.420292675495148,0.758383274078369,0.261984586715698,0.567845344543457,0.780330419540405,0.171050116419792,0.63865339756012,0.750242352485657,0.120986878871918,0.631951987743378,0.76550555229187,-0.509385049343109,0.682417333126068,0.524245262145996,-0.592954397201538,0.638482749462128,0.490657389163971,-0.549903213977814,0.636286973953247,0.54105931520462,-0.412628054618835,0.699079036712646,0.583974659442902,-0.509385049343109,0.682417333126068,0.524245262145996,-0.549903213977814,0.636286973953247,0.54105931520462,-0.102347299456596,0.688555359840393,0.717925071716309,-0.260677695274353,0.707086980342865,0.657324194908142,-0.208596363663673,0.660843849182129,0.720952689647675,-0.351289689540863,0.659364759922028,0.664705574512482,\r\n-0.260677695274353,0.707086980342865,0.657324194908142,-0.412628054618835,0.699079036712646,0.583974659442902,-0.102347299456596,0.688555359840393,0.717925071716309,0.0254380498081446,0.606053113937378,0.795017242431641,0.0241209678351879,0.669620335102081,0.742311656475067,0.0184622779488564,0.476772278547287,0.878832876682281,0.116317607462406,0.443737328052521,0.888576030731201,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.27314618229866,0.774528563022614,0.570522964000702,-0.310253471136093,0.794792354106903,0.521581828594208,-0.185941785573959,0.728787183761597,0.659010529518127,-0.27314618229866,0.774528563022614,0.570522964000702,-0.362296760082245,0.822969853878021,0.437563180923462,-0.310253471136093,0.794792354106903,0.521581828594208,0.011230206117034,0.564097344875336,0.82563179731369,-0.185941785573959,0.728787183761597,0.659010529518127,-0.0803898870944977,0.634847104549408,0.768444180488586,-0.327199876308441,0.813726305961609,0.480405628681183,-0.400089293718338,0.839020669460297,0.368744790554047,-0.362296760082245,0.822969853878021,0.437563180923462,-0.400089293718338,0.839020669460297,0.368744790554047,-0.501677632331848,0.847726047039032,0.172278687357903,-0.443687349557877,0.841512560844421,0.308217406272888,-0.527909100055695,0.836934685707092,0.144402861595154,-0.443687349557877,0.841512560844421,0.308217406272888,-0.501677632331848,0.847726047039032,0.172278687357903,-0.538714408874512,0.833391427993774,0.123472064733505,-0.527909100055695,0.836934685707092,0.144402861595154,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.727391958236694,0.576219022274017,-0.372655838727951,-0.690782606601715,0.706211686134338,-0.155191019177437,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.622681200504303,0.782305538654327,-0.0163095109164715,-0.675960004329681,0.69608747959137,-0.24195072054863,\r\n-0.727391958236694,0.576219022274017,-0.372655838727951,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.688008725643158,0.356131613254547,-0.632308542728424,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.592650353908539,0.0857202559709549,-0.800885379314423,-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.676755666732788,0.323770403862,-0.661191582679749,-0.690977692604065,0.434093236923218,-0.578024864196777,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.676755666732788,0.323770403862,-0.661191582679749,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.690977692604065,0.434093236923218,-0.578024864196777,0.288249582052231,0.922927916049957,0.255178570747375,0.265717655420303,0.916456818580627,0.299167156219482,0.145258456468582,0.949949622154236,0.276578217744827,0.463186770677567,0.857273399829865,0.224811419844627,0.390396535396576,0.880937099456787,0.267470002174377,0.288249582052231,0.922927916049957,0.255178570747375,0.594240605831146,0.76239538192749,0.256185978651047,0.63687264919281,0.742748022079468,0.206684440374374,0.568870484828949,0.793772757053375,0.215200021862984,0.568870484828949,0.793772757053375,0.215200021862984,0.552407145500183,0.807692587375641,0.206104338169098,0.463186770677567,0.857273399829865,0.224811419844627,0.0364857390522957,0.949636042118073,0.311223536729813,0.184882327914238,0.92285680770874,0.337866574525833,\r\n0.0200152564793825,0.924578607082367,0.380465060472488,0.0364857390522957,0.949636042118073,0.311223536729813,0.145258456468582,0.949949622154236,0.276578217744827,0.184882327914238,0.92285680770874,0.337866574525833,-0.242881640791893,0.880402266979218,0.407308518886566,0.0200152564793825,0.924578607082367,0.380465060472488,-0.009155398234725,0.893359899520874,0.449248462915421,-0.237477317452431,0.858974397182465,0.45361590385437,-0.403034508228302,0.800877153873444,0.442898362874985,-0.242881640791893,0.880402266979218,0.407308518886566,0.646117091178894,0.738522887229919,0.192656427621841,0.63687264919281,0.742748022079468,0.206684440374374,0.707447111606598,0.681337416172028,0.187876492738724,0.707447111606598,0.681337416172028,0.187876492738724,0.747774243354797,0.644554853439331,0.159319013357162,0.646117091178894,0.738522887229919,0.192656427621841,0.846612989902496,0.517091929912567,0.125945329666138,0.876342535018921,0.469281286001205,0.108622267842293,0.860349118709564,0.497326880693436,0.111648008227348,0.860349118709564,0.497326880693436,0.111648008227348,0.842124700546265,0.525092899799347,0.122894547879696,0.8096644282341,0.570172369480133,0.139092966914177,0.8096644282341,0.570172369480133,0.139092966914177,0.842124700546265,0.525092899799347,0.122894547879696,0.783766031265259,0.600842177867889,0.157159611582756,0.747774243354797,0.644554853439331,0.159319013357162,0.783766031265259,0.600842177867889,0.157159611582756,0.706259191036224,0.677004337310791,0.207033976912498,-0.825855731964111,0.446470558643341,0.344421595335007,-0.736732006072998,0.531391441822052,0.418149441480637,-0.792511641979218,0.490354537963867,0.362598329782486,-0.648044109344482,0.60447496175766,0.463301956653595,-0.736732006072998,0.531391441822052,0.418149441480637,-0.68760085105896,0.569115519523621,0.450901955366135,-0.680203020572662,0.56591272354126,0.465903997421265,-0.592954397201538,0.638482749462128,0.490657389163971,-0.68760085105896,0.569115519523621,0.450901955366135,-0.860946714878082,0.414618968963623,0.294723182916641,\r\n-0.792511641979218,0.490354537963867,0.362598329782486,-0.891540706157684,0.366050094366074,0.266762763261795,0.0254380498081446,0.606053113937378,0.795017242431641,0.120986878871918,0.631951987743378,0.76550555229187,0.0241209678351879,0.669620335102081,0.742311656475067,0.300563395023346,0.580818891525269,0.75651228427887,0.261984586715698,0.567845344543457,0.780330419540405,0.37799209356308,0.517256021499634,0.767833352088928,0.37799209356308,0.517256021499634,0.767833352088928,0.49820551276207,0.420292675495148,0.758383274078369,0.300563395023346,0.580818891525269,0.75651228427887,0.120986878871918,0.631951987743378,0.76550555229187,0.263522386550903,0.544507622718811,0.796283364295959,0.261984586715698,0.567845344543457,0.780330419540405,-0.680203020572662,0.56591272354126,0.465903997421265,-0.549903213977814,0.636286973953247,0.54105931520462,-0.592954397201538,0.638482749462128,0.490657389163971,-0.549903213977814,0.636286973953247,0.54105931520462,-0.466901630163193,0.646242797374725,0.603633105754852,-0.412628054618835,0.699079036712646,0.583974659442902,-0.351289689540863,0.659364759922028,0.664705574512482,-0.208596363663673,0.660843849182129,0.720952689647675,-0.260677695274353,0.707086980342865,0.657324194908142,-0.128338530659676,0.619668841362,0.774299383163452,-0.102347299456596,0.688555359840393,0.717925071716309,-0.208596363663673,0.660843849182129,0.720952689647675,-0.351289689540863,0.659364759922028,0.664705574512482,-0.412628054618835,0.699079036712646,0.583974659442902,-0.466901630163193,0.646242797374725,0.603633105754852,-0.128338530659676,0.619668841362,0.774299383163452,0.0254380498081446,0.606053113937378,0.795017242431641,-0.102347299456596,0.688555359840393,0.717925071716309,0.011230206117034,0.564097344875336,0.82563179731369,-0.0803898870944977,0.634847104549408,0.768444180488586,0.116317607462406,0.443737328052521,0.888576030731201,-0.185941785573959,0.728787183761597,0.659010529518127,-0.0635645464062691,0.621780097484589,0.780608057975769,-0.27314618229866,0.774528563022614,0.570522964000702,\r\n-0.27314618229866,0.774528563022614,0.570522964000702,-0.327199876308441,0.813726305961609,0.480405628681183,-0.362296760082245,0.822969853878021,0.437563180923462,0.011230206117034,0.564097344875336,0.82563179731369,-0.0635645464062691,0.621780097484589,0.780608057975769,-0.185941785573959,0.728787183761597,0.659010529518127,-0.400089293718338,0.839020669460297,0.368744790554047,-0.327199876308441,0.813726305961609,0.480405628681183,-0.383863806724548,0.84446108341217,0.373542338609695,-0.501677632331848,0.847726047039032,0.172278687357903,-0.400089293718338,0.839020669460297,0.368744790554047,-0.46557343006134,0.855300843715668,0.227380305528641,-0.527909100055695,0.836934685707092,0.144402861595154,-0.501677632331848,0.847726047039032,0.172278687357903,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.527909100055695,0.836934685707092,0.144402861595154,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.706036865711212,0.662036240100861,-0.251435399055481,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.71488094329834,0.499371916055679,-0.489461570978165,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.699749410152435,0.412620484828949,-0.583176553249359,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.564139485359192,0.197782903909683,-0.801641047000885,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.521974503993988,0.0146251274272799,-0.852835595607758,\r\n-0.58278226852417,0.0832837745547295,-0.808349251747131,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.617087304592133,0.196266785264015,-0.762025237083435,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.564139485359192,0.197782903909683,-0.801641047000885,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.690977692604065,0.434093236923218,-0.578024864196777,-0.718159914016724,0.569795608520508,-0.399473577737808,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.690977692604065,0.434093236923218,-0.578024864196777,0.288249582052231,0.922927916049957,0.255178570747375,0.390396535396576,0.880937099456787,0.267470002174377,0.265717655420303,0.916456818580627,0.299167156219482,0.145258456468582,0.949949622154236,0.276578217744827,0.265717655420303,0.916456818580627,0.299167156219482,0.184882327914238,0.92285680770874,0.337866574525833,0.484383851289749,0.839725613594055,0.245424181222916,0.390396535396576,0.880937099456787,0.267470002174377,0.463186770677567,0.857273399829865,0.224811419844627,0.568870484828949,0.793772757053375,0.215200021862984,0.63687264919281,0.742748022079468,0.206684440374374,0.597040891647339,0.781618237495422,0.180595591664314,0.552407145500183,0.807692587375641,0.206104338169098,0.568870484828949,0.793772757053375,0.215200021862984,0.597040891647339,0.781618237495422,0.180595591664314,0.463186770677567,0.857273399829865,0.224811419844627,0.552407145500183,0.807692587375641,0.206104338169098,0.484383851289749,0.839725613594055,0.245424181222916,0.184882327914238,0.92285680770874,0.337866574525833,0.171892672777176,0.898648977279663,0.403587400913239,0.0200152564793825,0.924578607082367,0.380465060472488,0.0200152564793825,0.924578607082367,0.380465060472488,\r\n0.171892672777176,0.898648977279663,0.403587400913239,-0.009155398234725,0.893359899520874,0.449248462915421,-0.237477317452431,0.858974397182465,0.45361590385437,-0.242881640791893,0.880402266979218,0.407308518886566,-0.009155398234725,0.893359899520874,0.449248462915421,-0.267654329538345,0.845619261264801,0.461832344532013,-0.403034508228302,0.800877153873444,0.442898362874985,-0.237477317452431,0.858974397182465,0.45361590385437,0.63687264919281,0.742748022079468,0.206684440374374,0.646117091178894,0.738522887229919,0.192656427621841,0.597040891647339,0.781618237495422,0.180595591664314,0.747774243354797,0.644554853439331,0.159319013357162,0.706259191036224,0.677004337310791,0.207033976912498,0.646117091178894,0.738522887229919,0.192656427621841,0.868348121643066,0.487024039030075,0.0936967432498932,0.842124700546265,0.525092899799347,0.122894547879696,0.860349118709564,0.497326880693436,0.111648008227348,0.851085543632507,0.498769700527191,0.163957580924034,0.783766031265259,0.600842177867889,0.157159611582756,0.842124700546265,0.525092899799347,0.122894547879696,0.783766031265259,0.600842177867889,0.157159611582756,0.758150935173035,0.604945361614227,0.243409395217896,0.706259191036224,0.677004337310791,0.207033976912498,-0.825855731964111,0.446470558643341,0.344421595335007,-0.770488619804382,0.503888428211212,0.390440046787262,-0.736732006072998,0.531391441822052,0.418149441480637,-0.860946714878082,0.414618968963623,0.294723182916641,-0.825855731964111,0.446470558643341,0.344421595335007,-0.792511641979218,0.490354537963867,0.362598329782486,-0.736732006072998,0.531391441822052,0.418149441480637,-0.770488619804382,0.503888428211212,0.390440046787262,-0.68760085105896,0.569115519523621,0.450901955366135,-0.770488619804382,0.503888428211212,0.390440046787262,-0.680203020572662,0.56591272354126,0.465903997421265,-0.68760085105896,0.569115519523621,0.450901955366135,-0.919818937778473,0.314502596855164,0.234565928578377,-0.860946714878082,0.414618968963623,0.294723182916641,-0.891540706157684,0.366050094366074,0.266762763261795,\r\n0.120986878871918,0.631951987743378,0.76550555229187,0.0254380498081446,0.606053113937378,0.795017242431641,0.159146755933762,0.566214203834534,0.808748245239258,0.40602308511734,0.45788300037384,0.790878176689148,0.37799209356308,0.517256021499634,0.767833352088928,0.261984586715698,0.567845344543457,0.780330419540405,0.40602308511734,0.45788300037384,0.790878176689148,0.49820551276207,0.420292675495148,0.758383274078369,0.37799209356308,0.517256021499634,0.767833352088928,0.263522386550903,0.544507622718811,0.796283364295959,0.120986878871918,0.631951987743378,0.76550555229187,0.159146755933762,0.566214203834534,0.808748245239258,0.261984586715698,0.567845344543457,0.780330419540405,0.263522386550903,0.544507622718811,0.796283364295959,0.40602308511734,0.45788300037384,0.790878176689148,-0.680203020572662,0.56591272354126,0.465903997421265,-0.628184080123901,0.549940764904022,0.550408661365509,-0.549903213977814,0.636286973953247,0.54105931520462,-0.466901630163193,0.646242797374725,0.603633105754852,-0.549903213977814,0.636286973953247,0.54105931520462,-0.544105887413025,0.607621312141418,0.578571438789368,-0.26858925819397,0.619090855121613,0.737960815429688,-0.208596363663673,0.660843849182129,0.720952689647675,-0.351289689540863,0.659364759922028,0.664705574512482,-0.208596363663673,0.660843849182129,0.720952689647675,-0.26858925819397,0.619090855121613,0.737960815429688,-0.128338530659676,0.619668841362,0.774299383163452,-0.466302990913391,0.613103449344635,0.6377032995224,-0.351289689540863,0.659364759922028,0.664705574512482,-0.466901630163193,0.646242797374725,0.603633105754852,-0.0635645464062691,0.621780097484589,0.780608057975769,-0.149653360247612,0.694210112094879,0.704042613506317,-0.27314618229866,0.774528563022614,0.570522964000702,-0.183405965566635,0.749204218387604,0.636439383029938,-0.327199876308441,0.813726305961609,0.480405628681183,-0.27314618229866,0.774528563022614,0.570522964000702,-0.276927828788757,0.798900663852692,0.533918082714081,-0.383863806724548,0.84446108341217,0.373542338609695,\r\n-0.327199876308441,0.813726305961609,0.480405628681183,-0.400089293718338,0.839020669460297,0.368744790554047,-0.383863806724548,0.84446108341217,0.373542338609695,-0.46557343006134,0.855300843715668,0.227380305528641,-0.501677632331848,0.847726047039032,0.172278687357903,-0.46557343006134,0.855300843715668,0.227380305528641,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.501677632331848,0.847726047039032,0.172278687357903,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.613965153694153,0.786671102046967,-0.0647704377770424,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.70680445432663,0.5099818110466,-0.490250915288925,-0.675960004329681,0.69608747959137,-0.24195072054863,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.564139485359192,0.197782903909683,-0.801641047000885,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.639146089553833,0.326437622308731,-0.696369588375092,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.564139485359192,0.197782903909683,-0.801641047000885,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.690977692604065,0.434093236923218,-0.578024864196777,-0.690818130970001,0.561285078525543,-0.455773174762726,\r\n-0.691980600357056,0.627856075763702,-0.356313735246658,-0.690818130970001,0.561285078525543,-0.455773174762726,-0.690977692604065,0.434093236923218,-0.578024864196777,0.377804607152939,0.859749853610992,0.343647629022598,0.265717655420303,0.916456818580627,0.299167156219482,0.390396535396576,0.880937099456787,0.267470002174377,0.184882327914238,0.92285680770874,0.337866574525833,0.265717655420303,0.916456818580627,0.299167156219482,0.29305562376976,0.880894601345062,0.371675908565521,0.482952743768692,0.817994296550751,0.312476873397827,0.390396535396576,0.880937099456787,0.267470002174377,0.484383851289749,0.839725613594055,0.245424181222916,0.646117091178894,0.738522887229919,0.192656427621841,0.552407145500183,0.807692587375641,0.206104338169098,0.597040891647339,0.781618237495422,0.180595591664314,0.552407145500183,0.807692587375641,0.206104338169098,0.555991113185883,0.788590967655182,0.262674957513809,0.484383851289749,0.839725613594055,0.245424181222916,0.184882327914238,0.92285680770874,0.337866574525833,0.29305562376976,0.880894601345062,0.371675908565521,0.171892672777176,0.898648977279663,0.403587400913239,-0.009155398234725,0.893359899520874,0.449248462915421,0.171892672777176,0.898648977279663,0.403587400913239,0.159315586090088,0.885041356086731,0.437401741743088,-0.237477317452431,0.858974397182465,0.45361590385437,-0.009155398234725,0.893359899520874,0.449248462915421,-0.267654329538345,0.845619261264801,0.461832344532013,-0.267654329538345,0.845619261264801,0.461832344532013,-0.47083368897438,0.766032695770264,0.437617868185043,-0.403034508228302,0.800877153873444,0.442898362874985,0.646117091178894,0.738522887229919,0.192656427621841,0.706259191036224,0.677004337310791,0.207033976912498,0.637507259845734,0.725578665733337,0.259075105190277,0.842124700546265,0.525092899799347,0.122894547879696,0.868348121643066,0.487024039030075,0.0936967432498932,0.901633322238922,0.419955462217331,0.103415042161942,0.783766031265259,0.600842177867889,0.157159611582756,0.851085543632507,0.498769700527191,0.163957580924034,\r\n0.758150935173035,0.604945361614227,0.243409395217896,0.842124700546265,0.525092899799347,0.122894547879696,0.901633322238922,0.419955462217331,0.103415042161942,0.851085543632507,0.498769700527191,0.163957580924034,0.672112882137299,0.687358558177948,0.275322258472443,0.706259191036224,0.677004337310791,0.207033976912498,0.758150935173035,0.604945361614227,0.243409395217896,-0.770488619804382,0.503888428211212,0.390440046787262,-0.825855731964111,0.446470558643341,0.344421595335007,-0.848228871822357,0.41873174905777,0.324301511049271,-0.825855731964111,0.446470558643341,0.344421595335007,-0.860946714878082,0.414618968963623,0.294723182916641,-0.919818937778473,0.314502596855164,0.234565928578377,-0.770488619804382,0.503888428211212,0.390440046787262,-0.787233114242554,0.466529607772827,0.403254270553589,-0.680203020572662,0.56591272354126,0.465903997421265,0.600937366485596,0.319480210542679,0.732670783996582,0.49820551276207,0.420292675495148,0.758383274078369,0.40602308511734,0.45788300037384,0.790878176689148,0.263522386550903,0.544507622718811,0.796283364295959,0.159146755933762,0.566214203834534,0.808748245239258,0.26116144657135,0.488227128982544,0.832723736763,0.263522386550903,0.544507622718811,0.796283364295959,0.26116144657135,0.488227128982544,0.832723736763,0.40602308511734,0.45788300037384,0.790878176689148,-0.680203020572662,0.56591272354126,0.465903997421265,-0.709786474704742,0.492521196603775,0.50361293554306,-0.628184080123901,0.549940764904022,0.550408661365509,-0.544105887413025,0.607621312141418,0.578571438789368,-0.549903213977814,0.636286973953247,0.54105931520462,-0.628184080123901,0.549940764904022,0.550408661365509,-0.466901630163193,0.646242797374725,0.603633105754852,-0.544105887413025,0.607621312141418,0.578571438789368,-0.51011598110199,0.605409026145935,0.610951244831085,-0.26858925819397,0.619090855121613,0.737960815429688,-0.351289689540863,0.659364759922028,0.664705574512482,-0.392163425683975,0.604910552501678,0.69303023815155,-0.351289689540863,0.659364759922028,0.664705574512482,\r\n-0.466302990913391,0.613103449344635,0.6377032995224,-0.392163425683975,0.604910552501678,0.69303023815155,-0.51011598110199,0.605409026145935,0.610951244831085,-0.466302990913391,0.613103449344635,0.6377032995224,-0.466901630163193,0.646242797374725,0.603633105754852,-0.183405965566635,0.749204218387604,0.636439383029938,-0.27314618229866,0.774528563022614,0.570522964000702,-0.149653360247612,0.694210112094879,0.704042613506317,-0.276927828788757,0.798900663852692,0.533918082714081,-0.327199876308441,0.813726305961609,0.480405628681183,-0.183405965566635,0.749204218387604,0.636439383029938,-0.276927828788757,0.798900663852692,0.533918082714081,-0.360918819904327,0.837525367736816,0.41023001074791,-0.383863806724548,0.84446108341217,0.373542338609695,-0.383863806724548,0.84446108341217,0.373542338609695,-0.442334949970245,0.871755123138428,0.210671961307526,-0.46557343006134,0.855300843715668,0.227380305528641,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.46557343006134,0.855300843715668,0.227380305528641,-0.501677632331848,0.847726047039032,0.172278687357903,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.573498666286469,0.81918728351593,0.0056042424403131,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.691980600357056,0.627856075763702,-0.356313735246658,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.690818130970001,0.561285078525543,-0.455773174762726,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.546463429927826,0.11729883402586,-0.829227685928345,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.575878202915192,0.269976764917374,-0.77167135477066,\r\n-0.635617733001709,0.397580206394196,-0.661755084991455,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.585403859615326,0.271871358156204,-0.763798475265503,-0.575878202915192,0.269976764917374,-0.77167135477066,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.690818130970001,0.561285078525543,-0.455773174762726,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.660521626472473,0.469179302453995,-0.586158514022827,0.377804607152939,0.859749853610992,0.343647629022598,0.29305562376976,0.880894601345062,0.371675908565521,0.265717655420303,0.916456818580627,0.299167156219482,0.390396535396576,0.880937099456787,0.267470002174377,0.482952743768692,0.817994296550751,0.312476873397827,0.377804607152939,0.859749853610992,0.343647629022598,0.482952743768692,0.817994296550751,0.312476873397827,0.484383851289749,0.839725613594055,0.245424181222916,0.555991113185883,0.788590967655182,0.262674957513809,0.555991113185883,0.788590967655182,0.262674957513809,0.552407145500183,0.807692587375641,0.206104338169098,0.646117091178894,0.738522887229919,0.192656427621841,0.261658042669296,0.860169470310211,0.437770932912827,0.171892672777176,0.898648977279663,0.403587400913239,0.29305562376976,0.880894601345062,0.371675908565521,0.171892672777176,0.898648977279663,0.403587400913239,0.261658042669296,0.860169470310211,0.437770932912827,0.159315586090088,0.885041356086731,0.437401741743088,0.150712102651596,0.860377073287964,0.486864477396011,-0.009155398234725,0.893359899520874,0.449248462915421,0.159315586090088,0.885041356086731,0.437401741743088,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.267654329538345,0.845619261264801,0.461832344532013,-0.009155398234725,0.893359899520874,0.449248462915421,-0.267654329538345,0.845619261264801,0.461832344532013,-0.511714220046997,0.761099457740784,0.398592561483383,-0.47083368897438,0.766032695770264,0.437617868185043,0.706259191036224,0.677004337310791,0.207033976912498,0.672112882137299,0.687358558177948,0.275322258472443,\r\n0.637507259845734,0.725578665733337,0.259075105190277,0.555991113185883,0.788590967655182,0.262674957513809,0.646117091178894,0.738522887229919,0.192656427621841,0.637507259845734,0.725578665733337,0.259075105190277,0.758150935173035,0.604945361614227,0.243409395217896,0.851085543632507,0.498769700527191,0.163957580924034,0.825121164321899,0.517062544822693,0.227642744779587,0.938232481479645,0.328345358371735,0.109127521514893,0.851085543632507,0.498769700527191,0.163957580924034,0.901633322238922,0.419955462217331,0.103415042161942,0.758150935173035,0.604945361614227,0.243409395217896,0.712359070777893,0.631084322929382,0.307045519351959,0.672112882137299,0.687358558177948,0.275322258472443,-0.825855731964111,0.446470558643341,0.344421595335007,-0.919818937778473,0.314502596855164,0.234565928578377,-0.848228871822357,0.41873174905777,0.324301511049271,-0.787233114242554,0.466529607772827,0.403254270553589,-0.770488619804382,0.503888428211212,0.390440046787262,-0.848228871822357,0.41873174905777,0.324301511049271,-0.709786474704742,0.492521196603775,0.50361293554306,-0.680203020572662,0.56591272354126,0.465903997421265,-0.787233114242554,0.466529607772827,0.403254270553589,0.530267596244812,0.342416167259216,0.775607645511627,0.600937366485596,0.319480210542679,0.732670783996582,0.40602308511734,0.45788300037384,0.790878176689148,0.40602308511734,0.45788300037384,0.790878176689148,0.26116144657135,0.488227128982544,0.832723736763,0.378113329410553,0.406171917915344,0.831898212432861,-0.731009006500244,0.444979727268219,0.517318785190582,-0.628184080123901,0.549940764904022,0.550408661365509,-0.709786474704742,0.492521196603775,0.50361293554306,-0.57852429151535,0.547211647033691,0.604870915412903,-0.544105887413025,0.607621312141418,0.578571438789368,-0.628184080123901,0.549940764904022,0.550408661365509,-0.544105887413025,0.607621312141418,0.578571438789368,-0.57852429151535,0.547211647033691,0.604870915412903,-0.51011598110199,0.605409026145935,0.610951244831085,-0.392163425683975,0.604910552501678,0.69303023815155,\r\n-0.466302990913391,0.613103449344635,0.6377032995224,-0.487113237380981,0.570039868354797,0.661645829677582,-0.466302990913391,0.613103449344635,0.6377032995224,-0.51011598110199,0.605409026145935,0.610951244831085,-0.57852429151535,0.547211647033691,0.604870915412903,-0.276927828788757,0.798900663852692,0.533918082714081,-0.151554778218269,0.752554297447205,0.640853345394135,-0.360918819904327,0.837525367736816,0.41023001074791,-0.429028570652008,0.862834811210632,0.267302304506302,-0.383863806724548,0.84446108341217,0.373542338609695,-0.360918819904327,0.837525367736816,0.41023001074791,-0.429028570652008,0.862834811210632,0.267302304506302,-0.442334949970245,0.871755123138428,0.210671961307526,-0.383863806724548,0.84446108341217,0.373542338609695,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.46557343006134,0.855300843715668,0.227380305528641,-0.442334949970245,0.871755123138428,0.210671961307526,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.690818130970001,0.561285078525543,-0.455773174762726,-0.657613575458527,0.721205353736877,-0.21773162484169,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.660521626472473,0.469179302453995,-0.586158514022827,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.65474408864975,0.501548230648041,-0.565472662448883,\r\n-0.601247727870941,0.362778425216675,-0.711964070796967,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.575878202915192,0.269976764917374,-0.77167135477066,-0.635617733001709,0.397580206394196,-0.661755084991455,-0.65474408864975,0.501548230648041,-0.565472662448883,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.575878202915192,0.269976764917374,-0.77167135477066,0.402418792247772,0.826232969760895,0.394205629825592,0.29305562376976,0.880894601345062,0.371675908565521,0.377804607152939,0.859749853610992,0.343647629022598,0.482952743768692,0.817994296550751,0.312476873397827,0.4463130235672,0.826139807701111,0.343944072723389,0.377804607152939,0.859749853610992,0.343647629022598,0.609281122684479,0.731109380722046,0.307010412216187,0.482952743768692,0.817994296550751,0.312476873397827,0.555991113185883,0.788590967655182,0.262674957513809,0.29305562376976,0.880894601345062,0.371675908565521,0.402418792247772,0.826232969760895,0.394205629825592,0.261658042669296,0.860169470310211,0.437770932912827,0.159315586090088,0.885041356086731,0.437401741743088,0.261658042669296,0.860169470310211,0.437770932912827,0.150712102651596,0.860377073287964,0.486864477396011,-0.009155398234725,0.893359899520874,0.449248462915421,0.150712102651596,0.860377073287964,0.486864477396011,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.298480838537216,0.844037592411041,0.445544183254242,-0.267654329538345,0.845619261264801,0.461832344532013,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.267654329538345,0.845619261264801,0.461832344532013,-0.298480838537216,0.844037592411041,0.445544183254242,-0.511714220046997,0.761099457740784,0.398592561483383,0.609281122684479,0.731109380722046,0.307010412216187,0.637507259845734,0.725578665733337,0.259075105190277,\r\n0.672112882137299,0.687358558177948,0.275322258472443,0.637507259845734,0.725578665733337,0.259075105190277,0.609281122684479,0.731109380722046,0.307010412216187,0.555991113185883,0.788590967655182,0.262674957513809,0.851085543632507,0.498769700527191,0.163957580924034,0.901952028274536,0.393876612186432,0.177040711045265,0.825121164321899,0.517062544822693,0.227642744779587,0.796214938163757,0.536249816417694,0.28013876080513,0.758150935173035,0.604945361614227,0.243409395217896,0.825121164321899,0.517062544822693,0.227642744779587,0.851085543632507,0.498769700527191,0.163957580924034,0.938232481479645,0.328345358371735,0.109127521514893,0.901952028274536,0.393876612186432,0.177040711045265,0.796214938163757,0.536249816417694,0.28013876080513,0.712359070777893,0.631084322929382,0.307045519351959,0.758150935173035,0.604945361614227,0.243409395217896,0.672112882137299,0.687358558177948,0.275322258472443,0.712359070777893,0.631084322929382,0.307045519351959,0.609281122684479,0.731109380722046,0.307010412216187,-0.919818937778473,0.314502596855164,0.234565928578377,-0.87627637386322,0.354456752538681,0.326343297958374,-0.848228871822357,0.41873174905777,0.324301511049271,-0.87627637386322,0.354456752538681,0.326343297958374,-0.787233114242554,0.466529607772827,0.403254270553589,-0.848228871822357,0.41873174905777,0.324301511049271,-0.811087369918823,0.390369892120361,0.435601234436035,-0.709786474704742,0.492521196603775,0.50361293554306,-0.787233114242554,0.466529607772827,0.403254270553589,0.378113329410553,0.406171917915344,0.831898212432861,0.530267596244812,0.342416167259216,0.775607645511627,0.40602308511734,0.45788300037384,0.790878176689148,-0.677463173866272,0.482017248868942,0.555610358715057,-0.628184080123901,0.549940764904022,0.550408661365509,-0.731009006500244,0.444979727268219,0.517318785190582,-0.811087369918823,0.390369892120361,0.435601234436035,-0.731009006500244,0.444979727268219,0.517318785190582,-0.709786474704742,0.492521196603775,0.50361293554306,-0.677463173866272,0.482017248868942,0.555610358715057,\r\n-0.57852429151535,0.547211647033691,0.604870915412903,-0.628184080123901,0.549940764904022,0.550408661365509,-0.487113237380981,0.570039868354797,0.661645829677582,-0.466302990913391,0.613103449344635,0.6377032995224,-0.57852429151535,0.547211647033691,0.604870915412903,-0.360918819904327,0.837525367736816,0.41023001074791,-0.151554778218269,0.752554297447205,0.640853345394135,-0.23018179833889,0.768166780471802,0.59744119644165,-0.429028570652008,0.862834811210632,0.267302304506302,-0.360918819904327,0.837525367736816,0.41023001074791,-0.458230584859848,0.863097190856934,0.212338849902153,-0.487231105566025,0.86642462015152,0.109151877462864,-0.442334949970245,0.871755123138428,0.210671961307526,-0.429028570652008,0.862834811210632,0.267302304506302,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.442334949970245,0.871755123138428,0.210671961307526,-0.487231105566025,0.86642462015152,0.109151877462864,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.573977649211884,0.818601965904236,0.0209864564239979,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.606313824653625,0.790479302406311,-0.0867516398429871,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.551661312580109,0.172047913074493,-0.816130578517914,-0.666723132133484,0.650707483291626,-0.363400429487228,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.65474408864975,0.501548230648041,-0.565472662448883,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.587620556354523,0.389685779809952,-0.709116995334625,\r\n-0.575878202915192,0.269976764917374,-0.77167135477066,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.65474408864975,0.501548230648041,-0.565472662448883,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.637403726577759,0.445638477802277,-0.628587961196899,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.601247727870941,0.362778425216675,-0.711964070796967,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.575878202915192,0.269976764917374,-0.77167135477066,-0.54646635055542,0.258401244878769,-0.796619832515717,0.4463130235672,0.826139807701111,0.343944072723389,0.402418792247772,0.826232969760895,0.394205629825592,0.377804607152939,0.859749853610992,0.343647629022598,0.482952743768692,0.817994296550751,0.312476873397827,0.512023568153381,0.767262101173401,0.386187255382538,0.4463130235672,0.826139807701111,0.343944072723389,0.609281122684479,0.731109380722046,0.307010412216187,0.584149599075317,0.723407447338104,0.368036389350891,0.482952743768692,0.817994296550751,0.312476873397827,0.402418792247772,0.826232969760895,0.394205629825592,0.348606705665588,0.831585645675659,0.432363927364349,0.261658042669296,0.860169470310211,0.437770932912827,0.261658042669296,0.860169470310211,0.437770932912827,0.245644748210907,0.825435876846313,0.508246123790741,0.150712102651596,0.860377073287964,0.486864477396011,0.150712102651596,0.860377073287964,0.486864477396011,0.0905180051922798,0.866768658161163,0.49042683839798,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.350924611091614,0.828971028327942,0.435498356819153,-0.298480838537216,0.844037592411041,0.445544183254242,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.298480838537216,0.844037592411041,0.445544183254242,-0.350924611091614,0.828971028327942,0.435498356819153,\r\n-0.511714220046997,0.761099457740784,0.398592561483383,0.87881463766098,0.423620402812958,0.21961435675621,0.825121164321899,0.517062544822693,0.227642744779587,0.901952028274536,0.393876612186432,0.177040711045265,0.796214938163757,0.536249816417694,0.28013876080513,0.825121164321899,0.517062544822693,0.227642744779587,0.87881463766098,0.423620402812958,0.21961435675621,0.796214938163757,0.536249816417694,0.28013876080513,0.773859202861786,0.540296494960785,0.330486744642258,0.712359070777893,0.631084322929382,0.307045519351959,0.712359070777893,0.631084322929382,0.307045519351959,0.691468238830566,0.626133263111115,0.360317438840866,0.609281122684479,0.731109380722046,0.307010412216187,-0.919818937778473,0.314502596855164,0.234565928578377,-0.924719512462616,0.282402098178864,0.255230814218521,-0.87627637386322,0.354456752538681,0.326343297958374,-0.787233114242554,0.466529607772827,0.403254270553589,-0.87627637386322,0.354456752538681,0.326343297958374,-0.811087369918823,0.390369892120361,0.435601234436035,0.530267596244812,0.342416167259216,0.775607645511627,0.378113329410553,0.406171917915344,0.831898212432861,0.532677888870239,0.303108781576157,0.790176749229431,-0.360918819904327,0.837525367736816,0.41023001074791,-0.23018179833889,0.768166780471802,0.59744119644165,-0.427334904670715,0.850153744220734,0.307609260082245,-0.427334904670715,0.850153744220734,0.307609260082245,-0.458230584859848,0.863097190856934,0.212338849902153,-0.360918819904327,0.837525367736816,0.41023001074791,-0.429028570652008,0.862834811210632,0.267302304506302,-0.458230584859848,0.863097190856934,0.212338849902153,-0.487231105566025,0.86642462015152,0.109151877462864,-0.487231105566025,0.86642462015152,0.109151877462864,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.511341869831085,0.857872605323792,0.0508325845003128,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.601589322090149,0.782873272895813,-0.158743664622307,\r\n-0.65696918964386,0.645508408546448,-0.389500111341476,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.658711910247803,0.561524212360382,-0.500788390636444,-0.644067049026489,0.726614117622375,-0.239184871315956,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.65474408864975,0.501548230648041,-0.565472662448883,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.575878202915192,0.269976764917374,-0.77167135477066,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.54646635055542,0.258401244878769,-0.796619832515717,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.634137451648712,0.505336046218872,-0.585239410400391,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.54646635055542,0.258401244878769,-0.796619832515717,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.508451044559479,0.161097154021263,-0.845887243747711,0.4463130235672,0.826139807701111,0.343944072723389,0.512023568153381,0.767262101173401,0.386187255382538,0.402418792247772,0.826232969760895,0.394205629825592,0.482952743768692,0.817994296550751,0.312476873397827,0.584149599075317,0.723407447338104,0.368036389350891,0.512023568153381,0.767262101173401,0.386187255382538,0.584149599075317,0.723407447338104,0.368036389350891,0.609281122684479,0.731109380722046,0.307010412216187,0.691468238830566,0.626133263111115,0.360317438840866,\r\n0.402418792247772,0.826232969760895,0.394205629825592,0.426951110363007,0.776730895042419,0.46303528547287,0.348606705665588,0.831585645675659,0.432363927364349,0.261658042669296,0.860169470310211,0.437770932912827,0.348606705665588,0.831585645675659,0.432363927364349,0.349624037742615,0.797326624393463,0.491968661546707,0.261658042669296,0.860169470310211,0.437770932912827,0.349624037742615,0.797326624393463,0.491968661546707,0.245644748210907,0.825435876846313,0.508246123790741,0.0905180051922798,0.866768658161163,0.49042683839798,0.150712102651596,0.860377073287964,0.486864477396011,0.245644748210907,0.825435876846313,0.508246123790741,-0.210136875510216,0.90447986125946,0.371158480644226,-0.0998131930828094,0.876826643943787,0.470332086086273,0.0905180051922798,0.866768658161163,0.49042683839798,-0.350924611091614,0.828971028327942,0.435498356819153,-0.0998131930828094,0.876826643943787,0.470332086086273,-0.210136875510216,0.90447986125946,0.371158480644226,0.836996853351593,0.447030484676361,0.315594613552094,0.796214938163757,0.536249816417694,0.28013876080513,0.87881463766098,0.423620402812958,0.21961435675621,0.796214938163757,0.536249816417694,0.28013876080513,0.836996853351593,0.447030484676361,0.315594613552094,0.773859202861786,0.540296494960785,0.330486744642258,0.712359070777893,0.631084322929382,0.307045519351959,0.773859202861786,0.540296494960785,0.330486744642258,0.691468238830566,0.626133263111115,0.360317438840866,-0.924719512462616,0.282402098178864,0.255230814218521,-0.919818937778473,0.314502596855164,0.234565928578377,-0.956210970878601,0.216835767030716,0.196577414870262,-0.906066536903381,0.269435584545136,0.326263338327408,-0.87627637386322,0.354456752538681,0.326343297958374,-0.924719512462616,0.282402098178864,0.255230814218521,-0.811087369918823,0.390369892120361,0.435601234436035,-0.87627637386322,0.354456752538681,0.326343297958374,-0.906066536903381,0.269435584545136,0.326263338327408,-0.427334904670715,0.850153744220734,0.307609260082245,-0.23018179833889,0.768166780471802,0.59744119644165,\r\n-0.321639955043793,0.809638142585754,0.490951865911484,-0.427334904670715,0.850153744220734,0.307609260082245,-0.484741598367691,0.867333590984344,0.11295074224472,-0.458230584859848,0.863097190856934,0.212338849902153,-0.487231105566025,0.86642462015152,0.109151877462864,-0.458230584859848,0.863097190856934,0.212338849902153,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.487231105566025,0.86642462015152,0.109151877462864,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.601589322090149,0.782873272895813,-0.158743664622307,-0.459750056266785,0.0972322821617126,-0.882709264755249,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.653972387313843,0.552564799785614,-0.516712725162506,-0.65696918964386,0.645508408546448,-0.389500111341476,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.587620556354523,0.389685779809952,-0.709116995334625,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.592806696891785,0.465836554765701,-0.656944692134857,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.583683252334595,0.341956794261932,-0.736464023590088,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.54646635055542,0.258401244878769,-0.796619832515717,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.634137451648712,0.505336046218872,-0.585239410400391,\r\n-0.54646635055542,0.258401244878769,-0.796619832515717,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.508451044559479,0.161097154021263,-0.845887243747711,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.459750056266785,0.0972322821617126,-0.882709264755249,0.402418792247772,0.826232969760895,0.394205629825592,0.512023568153381,0.767262101173401,0.386187255382538,0.497952878475189,0.739930629730225,0.452266991138458,0.596405208110809,0.683103919029236,0.421508848667145,0.512023568153381,0.767262101173401,0.386187255382538,0.584149599075317,0.723407447338104,0.368036389350891,0.584149599075317,0.723407447338104,0.368036389350891,0.691468238830566,0.626133263111115,0.360317438840866,0.660298705101013,0.637327075004578,0.397265255451202,0.497952878475189,0.739930629730225,0.452266991138458,0.426951110363007,0.776730895042419,0.46303528547287,0.402418792247772,0.826232969760895,0.394205629825592,0.426951110363007,0.776730895042419,0.46303528547287,0.349624037742615,0.797326624393463,0.491968661546707,0.348606705665588,0.831585645675659,0.432363927364349,0.349624037742615,0.797326624393463,0.491968661546707,0.300776153802872,0.795089304447174,0.526655972003937,0.245644748210907,0.825435876846313,0.508246123790741,0.300776153802872,0.795089304447174,0.526655972003937,0.0905180051922798,0.866768658161163,0.49042683839798,0.245644748210907,0.825435876846313,0.508246123790741,0.836996853351593,0.447030484676361,0.315594613552094,0.750735998153687,0.535763442516327,0.386461913585663,0.773859202861786,0.540296494960785,0.330486744642258,0.691468238830566,0.626133263111115,0.360317438840866,0.773859202861786,0.540296494960785,0.330486744642258,0.750735998153687,0.535763442516327,0.386461913585663,-0.906066536903381,0.269435584545136,0.326263338327408,-0.924719512462616,0.282402098178864,0.255230814218521,-0.956210970878601,0.216835767030716,0.196577414870262,-0.427334904670715,0.850153744220734,0.307609260082245,-0.321639955043793,0.809638142585754,0.490951865911484,\r\n-0.462112188339233,0.862537980079651,0.206107869744301,-0.484741598367691,0.867333590984344,0.11295074224472,-0.427334904670715,0.850153744220734,0.307609260082245,-0.462112188339233,0.862537980079651,0.206107869744301,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.458230584859848,0.863097190856934,0.212338849902153,-0.484741598367691,0.867333590984344,0.11295074224472,-0.558522820472717,0.822829306125641,-0.104900680482388,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.627122104167938,0.686923921108246,-0.367223739624023,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.459750056266785,0.0972322821617126,-0.882709264755249,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.532723307609558,0.177413240075111,-0.827484309673309,-0.459750056266785,0.0972322821617126,-0.882709264755249,0.497952878475189,0.739930629730225,0.452266991138458,0.512023568153381,0.767262101173401,0.386187255382538,0.591892719268799,0.669566452503204,0.448713272809982,0.591892719268799,0.669566452503204,0.448713272809982,0.512023568153381,0.767262101173401,0.386187255382538,0.596405208110809,0.683103919029236,0.421508848667145,\r\n0.584149599075317,0.723407447338104,0.368036389350891,0.660298705101013,0.637327075004578,0.397265255451202,0.596405208110809,0.683103919029236,0.421508848667145,0.691468238830566,0.626133263111115,0.360317438840866,0.750735998153687,0.535763442516327,0.386461913585663,0.660298705101013,0.637327075004578,0.397265255451202,0.426951110363007,0.776730895042419,0.46303528547287,0.497952878475189,0.739930629730225,0.452266991138458,0.540722846984863,0.683929264545441,0.489754438400269,0.349624037742615,0.797326624393463,0.491968661546707,0.426951110363007,0.776730895042419,0.46303528547287,0.452442407608032,0.731148600578308,0.510605096817017,0.300776153802872,0.795089304447174,0.526655972003937,0.349624037742615,0.797326624393463,0.491968661546707,0.409930467605591,0.745723426342011,0.525217592716217,0.0905180051922798,0.866768658161163,0.49042683839798,0.300776153802872,0.795089304447174,0.526655972003937,0.142591893672943,0.888154745101929,0.436862170696259,0.828401207923889,0.41530305147171,0.37586522102356,0.750735998153687,0.535763442516327,0.386461913585663,0.836996853351593,0.447030484676361,0.315594613552094,-0.342672348022461,0.86136132478714,0.375009626150131,-0.462112188339233,0.862537980079651,0.206107869744301,-0.321639955043793,0.809638142585754,0.490951865911484,-0.484741598367691,0.867333590984344,0.11295074224472,-0.462112188339233,0.862537980079651,0.206107869744301,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.484741598367691,0.867333590984344,0.11295074224472,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.524860560894012,0.851132750511169,0.00971077475696802,-0.604511678218842,0.609216451644897,-0.513245165348053,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.459750056266785,0.0972322821617126,-0.882709264755249,\r\n-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.598351895809174,0.634355545043945,-0.489456743001938,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.598351895809174,0.634355545043945,-0.489456743001938,-0.594453692436218,0.528504967689514,-0.606058657169342,-0.603970468044281,0.384756147861481,-0.697984397411346,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.597305059432983,0.441627860069275,-0.669471025466919,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.514981985092163,0.20886655151844,-0.83136522769928,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.532723307609558,0.177413240075111,-0.827484309673309,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.572552919387817,0.337881207466125,-0.747006893157959,-0.603970468044281,0.384756147861481,-0.697984397411346,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.459750056266785,0.0972322821617126,-0.882709264755249,-0.532723307609558,0.177413240075111,-0.827484309673309,0.497952878475189,0.739930629730225,0.452266991138458,0.591892719268799,0.669566452503204,0.448713272809982,0.540722846984863,0.683929264545441,0.489754438400269,0.596405208110809,0.683103919029236,0.421508848667145,0.65297132730484,0.630314409732819,0.419919222593308,0.591892719268799,0.669566452503204,0.448713272809982,0.596405208110809,0.683103919029236,0.421508848667145,0.660298705101013,0.637327075004578,0.397265255451202,0.65297132730484,0.630314409732819,0.419919222593308,0.660298705101013,0.637327075004578,0.397265255451202,0.750735998153687,0.535763442516327,0.386461913585663,0.65297132730484,0.630314409732819,0.419919222593308,0.540722846984863,0.683929264545441,0.489754438400269,\r\n0.452442407608032,0.731148600578308,0.510605096817017,0.426951110363007,0.776730895042419,0.46303528547287,0.349624037742615,0.797326624393463,0.491968661546707,0.452442407608032,0.731148600578308,0.510605096817017,0.409930467605591,0.745723426342011,0.525217592716217,0.316875010728836,0.818814098834991,0.478678941726685,0.300776153802872,0.795089304447174,0.526655972003937,0.409930467605591,0.745723426342011,0.525217592716217,0.316875010728836,0.818814098834991,0.478678941726685,0.142591893672943,0.888154745101929,0.436862170696259,0.300776153802872,0.795089304447174,0.526655972003937,0.828401207923889,0.41530305147171,0.37586522102356,0.775676548480988,0.477862000465393,0.412278771400452,0.750735998153687,0.535763442516327,0.386461913585663,-0.462112188339233,0.862537980079651,0.206107869744301,-0.342672348022461,0.86136132478714,0.375009626150131,-0.503922522068024,0.855032205581665,0.122400559484959,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.462112188339233,0.862537980079651,0.206107869744301,-0.503922522068024,0.855032205581665,0.122400559484959,-0.484741598367691,0.867333590984344,0.11295074224472,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.582898199558258,0.769349873065948,-0.261400640010834,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.459750056266785,0.0972322821617126,-0.882709264755249,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.598351895809174,0.634355545043945,-0.489456743001938,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.598351895809174,0.634355545043945,-0.489456743001938,\r\n-0.603970468044281,0.384756147861481,-0.697984397411346,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.603194713592529,0.430930435657501,-0.671159386634827,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.532723307609558,0.177413240075111,-0.827484309673309,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.603970468044281,0.384756147861481,-0.697984397411346,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.532723307609558,0.177413240075111,-0.827484309673309,0.540722846984863,0.683929264545441,0.489754438400269,0.591892719268799,0.669566452503204,0.448713272809982,0.670316934585571,0.576715052127838,0.466984778642654,0.698527634143829,0.562221467494965,0.442680418491364,0.591892719268799,0.669566452503204,0.448713272809982,0.65297132730484,0.630314409732819,0.419919222593308,0.698527634143829,0.562221467494965,0.442680418491364,0.65297132730484,0.630314409732819,0.419919222593308,0.750735998153687,0.535763442516327,0.386461913585663,0.540722846984863,0.683929264545441,0.489754438400269,0.549006879329681,0.66605281829834,0.504940450191498,0.452442407608032,0.731148600578308,0.510605096817017,0.452442407608032,0.731148600578308,0.510605096817017,0.488112449645996,0.702195167541504,0.518331944942474,0.409930467605591,0.745723426342011,0.525217592716217,0.458853900432587,0.733976662158966,0.500730693340302,0.316875010728836,0.818814098834991,0.478678941726685,0.409930467605591,0.745723426342011,0.525217592716217,0.775676548480988,0.477862000465393,0.412278771400452,0.828401207923889,0.41530305147171,0.37586522102356,0.759390354156494,0.483645588159561,0.435216188430786,0.775676548480988,0.477862000465393,0.412278771400452,0.698527634143829,0.562221467494965,0.442680418491364,\r\n0.750735998153687,0.535763442516327,0.386461913585663,-0.454541802406311,0.845846235752106,0.279169917106628,-0.503922522068024,0.855032205581665,0.122400559484959,-0.342672348022461,0.86136132478714,0.375009626150131,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.503922522068024,0.855032205581665,0.122400559484959,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.545130968093872,0.828467667102814,-0.128348886966705,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.58868396282196,0.693271458148956,-0.415723115205765,-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.598351895809174,0.634355545043945,-0.489456743001938,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.601918816566467,0.563291907310486,-0.566035151481628,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.603970468044281,0.384756147861481,-0.697984397411346,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.570390641689301,0.277815312147141,-0.772963762283325,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.52548348903656,0.128259256482124,-0.841080546379089,-0.498001843690872,0.102496072649956,-0.86109733581543,\r\n0.698527634143829,0.562221467494965,0.442680418491364,0.670316934585571,0.576715052127838,0.466984778642654,0.591892719268799,0.669566452503204,0.448713272809982,0.64325624704361,0.586629211902618,0.492023944854736,0.540722846984863,0.683929264545441,0.489754438400269,0.670316934585571,0.576715052127838,0.466984778642654,0.64325624704361,0.586629211902618,0.492023944854736,0.549006879329681,0.66605281829834,0.504940450191498,0.540722846984863,0.683929264545441,0.489754438400269,0.488112449645996,0.702195167541504,0.518331944942474,0.452442407608032,0.731148600578308,0.510605096817017,0.549006879329681,0.66605281829834,0.504940450191498,0.458853900432587,0.733976662158966,0.500730693340302,0.409930467605591,0.745723426342011,0.525217592716217,0.488112449645996,0.702195167541504,0.518331944942474,0.759390354156494,0.483645588159561,0.435216188430786,0.828401207923889,0.41530305147171,0.37586522102356,0.810283303260803,0.43376213312149,0.394070088863373,0.759390354156494,0.483645588159561,0.435216188430786,0.698527634143829,0.562221467494965,0.442680418491364,0.775676548480988,0.477862000465393,0.412278771400452,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.503922522068024,0.855032205581665,0.122400559484959,-0.454541802406311,0.845846235752106,0.279169917106628,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.503922522068024,0.855032205581665,0.122400559484959,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.515995681285858,0.856571733951569,0.00577075034379959,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.498001843690872,0.102496072649956,-0.86109733581543,-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.571420788764954,0.776230871677399,-0.266352951526642,-0.552923500537872,0.825827360153198,-0.110836073756218,\r\n-0.593866527080536,0.705117166042328,-0.387468874454498,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.613148272037506,0.53017270565033,-0.585632920265198,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.636881828308105,0.28457710146904,-0.716517448425293,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.52548348903656,0.128259256482124,-0.841080546379089,-0.52548348903656,0.128259256482124,-0.841080546379089,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.498001843690872,0.102496072649956,-0.86109733581543,0.759390354156494,0.483645588159561,0.435216188430786,0.670316934585571,0.576715052127838,0.466984778642654,0.698527634143829,0.562221467494965,0.442680418491364,0.64325624704361,0.586629211902618,0.492023944854736,0.670316934585571,0.576715052127838,0.466984778642654,0.731936037540436,0.512130737304688,0.449434727430344,0.549006879329681,0.66605281829834,0.504940450191498,0.64325624704361,0.586629211902618,0.492023944854736,0.612678110599518,0.609837651252747,0.50271600484848,0.552429914474487,0.681873083114624,0.479447722434998,0.488112449645996,0.702195167541504,0.518331944942474,0.549006879329681,0.66605281829834,0.504940450191498,0.458853900432587,0.733976662158966,0.500730693340302,\r\n0.488112449645996,0.702195167541504,0.518331944942474,0.552429914474487,0.681873083114624,0.479447722434998,0.810283303260803,0.43376213312149,0.394070088863373,0.828401207923889,0.41530305147171,0.37586522102356,0.890762150287628,0.310849130153656,0.331535071134567,0.759390354156494,0.483645588159561,0.435216188430786,0.810283303260803,0.43376213312149,0.394070088863373,0.731936037540436,0.512130737304688,0.449434727430344,-0.454541802406311,0.845846235752106,0.279169917106628,-0.495883941650391,0.856540560722351,0.14295893907547,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.389855921268463,-0.117274388670921,-0.913377821445465,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.593866527080536,0.705117166042328,-0.387468874454498,-0.552923500537872,0.825827360153198,-0.110836073756218,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.6094109416008,0.638543128967285,-0.469979584217072,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.624941110610962,0.498441398143768,-0.600836575031281,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.633405029773712,0.383961349725723,-0.67184191942215,\r\n-0.671700716018677,0.542140007019043,-0.504878342151642,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.627355456352234,0.668622970581055,-0.399209588766098,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.636881828308105,0.28457710146904,-0.716517448425293,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.636881828308105,0.28457710146904,-0.716517448425293,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.5747309923172,0.206217020750046,-0.791933536529541,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.52548348903656,0.128259256482124,-0.841080546379089,0.670316934585571,0.576715052127838,0.466984778642654,0.759390354156494,0.483645588159561,0.435216188430786,0.731936037540436,0.512130737304688,0.449434727430344,0.678956270217896,0.588558197021484,0.438882082700729,0.64325624704361,0.586629211902618,0.492023944854736,0.731936037540436,0.512130737304688,0.449434727430344,0.612678110599518,0.609837651252747,0.50271600484848,0.64325624704361,0.586629211902618,0.492023944854736,0.678956270217896,0.588558197021484,0.438882082700729,0.549006879329681,0.66605281829834,0.504940450191498,0.612678110599518,0.609837651252747,0.50271600484848,0.552429914474487,0.681873083114624,0.479447722434998,0.890762150287628,0.310849130153656,0.331535071134567,0.906070530414581,0.321478396654129,0.275113970041275,0.810283303260803,0.43376213312149,0.394070088863373,0.678956270217896,0.588558197021484,0.438882082700729,0.731936037540436,0.512130737304688,0.449434727430344,0.810283303260803,0.43376213312149,0.394070088863373,-0.538090527057648,0.84279590845108,0.0123941134661436,-0.495883941650391,0.856540560722351,0.14295893907547,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.538090527057648,0.84279590845108,0.0123941134661436,\r\n-0.561582624912262,0.820180118083954,-0.109221681952477,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.389855921268463,-0.117274388670921,-0.913377821445465,-0.439672410488129,-0.0124896224588156,-0.898071348667145,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.389855921268463,-0.117274388670921,-0.913377821445465,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.578608989715576,0.777478396892548,-0.246452838182449,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.627355456352234,0.668622970581055,-0.399209588766098,-0.631432056427002,0.601221203804016,-0.489720791578293,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.614745318889618,0.655145943164825,-0.439171701669693,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.595498621463776,0.733287632465363,-0.328132003545761,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.666199326515198,0.684379577636719,-0.296315550804138,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.633405029773712,0.383961349725723,-0.67184191942215,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.627355456352234,0.668622970581055,-0.399209588766098,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.636881828308105,0.28457710146904,-0.716517448425293,\r\n-0.672644913196564,0.307976245880127,-0.672829329967499,-0.636881828308105,0.28457710146904,-0.716517448425293,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.672644913196564,0.307976245880127,-0.672829329967499,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.481568545103073,0.0376892127096653,-0.875597596168518,-0.527621626853943,0.0734969079494476,-0.846293985843658,0.552429914474487,0.681873083114624,0.479447722434998,0.612678110599518,0.609837651252747,0.50271600484848,0.678956270217896,0.588558197021484,0.438882082700729,0.906070530414581,0.321478396654129,0.275113970041275,0.86332380771637,0.446198761463165,0.235751062631607,0.810283303260803,0.43376213312149,0.394070088863373,0.810283303260803,0.43376213312149,0.394070088863373,0.78973776102066,0.517282128334045,0.329747319221497,0.678956270217896,0.588558197021484,0.438882082700729,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.495883941650391,0.856540560722351,0.14295893907547,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.389855921268463,-0.117274388670921,-0.913377821445465,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.627355456352234,0.668622970581055,-0.399209588766098,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.561582624912262,0.820180118083954,-0.109221681952477,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.604365050792694,0.768926620483398,-0.208553537726402,\r\n-0.621035695075989,0.746946573257446,-0.237455934286118,-0.666199326515198,0.684379577636719,-0.296315550804138,-0.645511031150818,0.620466947555542,-0.445349454879761,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.666199326515198,0.684379577636719,-0.296315550804138,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.671700716018677,0.542140007019043,-0.504878342151642,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.680809378623962,0.463560372591019,-0.56710684299469,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.672644913196564,0.307976245880127,-0.672829329967499,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.672644913196564,0.307976245880127,-0.672829329967499,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.527621626853943,0.0734969079494476,-0.846293985843658,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.527621626853943,0.0734969079494476,-0.846293985843658,0.86332380771637,0.446198761463165,0.235751062631607,0.906070530414581,0.321478396654129,0.275113970041275,0.950215816497803,0.274013519287109,0.148345306515694,0.810283303260803,0.43376213312149,0.394070088863373,0.86332380771637,0.446198761463165,0.235751062631607,0.78973776102066,0.517282128334045,0.329747319221497,-0.390964508056641,-0.116596542298794,-0.912990629673004,\r\n-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.390964508056641,-0.116596542298794,-0.912990629673004,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.283517301082611,-0.296481937170029,-0.911984860897064,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.348726838827133,-0.230862691998482,-0.908345699310303,-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.632303059101105,0.706325948238373,-0.318270772695541,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.604365050792694,0.768926620483398,-0.208553537726402,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.678488850593567,0.382864892482758,-0.626950681209564,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.694572925567627,0.527949869632721,-0.488709807395935,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.606212615966797,0.165624067187309,-0.777865529060364,-0.672644913196564,0.307976245880127,-0.672829329967499,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.370571672916412,-0.175268784165382,-0.912116944789886,\r\n-0.447687596082687,-0.0633089691400528,-0.891946017742157,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.718138933181763,0.471635401248932,-0.511699497699738,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.443098306655884,-0.120227672159672,-0.888374269008636,-0.370571672916412,-0.175268784165382,-0.912116944789886,-0.467223107814789,-0.0359724648296833,-0.883407294750214,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.526162803173065,0.0131309060379863,-0.850282371044159,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.722514390945435,0.387846529483795,-0.572318017482758,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.605700314044952,0.0966121926903725,-0.789805769920349,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.691051065921783,0.207061693072319,-0.692512631416321,\r\n-0.722514390945435,0.387846529483795,-0.572318017482758,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.689566969871521,0.239300772547722,-0.683544039726257,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.691051065921783,0.207061693072319,-0.692512631416321,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.512227177619934,-0.121180310845375,-0.850257873535156,-0.556937873363495,-0.00989363994449377,-0.830495119094849,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.728639245033264,0.53993821144104,-0.421368449926376,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.661200404167175,0.115732997655869,-0.741228520870209,-0.691051065921783,0.207061693072319,-0.692512631416321,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.691051065921783,0.207061693072319,-0.692512631416321,-0.579700529575348,-0.0822879374027252,-0.810663819313049,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.661200404167175,0.115732997655869,-0.741228520870209,\r\n-0.688764095306396,0.144073083996773,-0.710525691509247,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.6090087890625,0.0108974613249302,-0.793088495731354,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.730559408664703,0.467718034982681,-0.497516453266144,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.625492095947266,-0.0806195214390755,-0.776054084300995,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.726642906665802,0.303746700286865,-0.616220593452454,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.730884075164795,0.428036332130432,-0.531594932079315,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.688764095306396,0.144073083996773,-0.710525691509247,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.655326008796692,0.0171364936977625,-0.755151629447937,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.701952636241913,0.233277916908264,-0.672936677932739,\r\n-0.707949042320251,0.39030647277832,-0.588616013526917,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.486489176750183,0.799892067909241,-0.351426810026169,-0.678711473941803,0.183860048651695,-0.711017608642578,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.707949042320251,0.39030647277832,-0.588616013526917,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.674749493598938,0.540060937404633,-0.503037869930267,-0.486489176750183,0.799892067909241,-0.351426810026169,-0.678711473941803,0.183860048651695,-0.711017608642578,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.681756556034088,0.0554599091410637,-0.729473829269409,-0.678711473941803,0.183860048651695,-0.711017608642578,-0.701952636241913,0.233277916908264,-0.672936677932739,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.640103876590729,-0.0466098114848137,-0.766873121261597,-0.678711473941803,0.183860048651695,-0.711017608642578,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.678711473941803,0.183860048651695,-0.711017608642578,\r\n-0.340127378702164,0.348741143941879,-0.873322904109955,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.405961364507675,0.404996901750565,-0.819251298904419,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.52064836025238,0.0178776364773512,-0.853583931922913,-0.340127378702164,0.348741143941879,-0.873322904109955,-0.246586918830872,0.201044395565987,-0.948037981987,-0.405961364507675,0.404996901750565,-0.819251298904419,-0.340127378702164,0.348741143941879,-0.873322904109955,-0.60426938533783,0.108210250735283,-0.789397835731506,-0.441103577613831,0.476117581129074,0.760749399662018,-0.569938480854034,0.582862854003906,0.579172551631927,-0.547999382019043,0.399513840675354,0.734904885292053,-0.569938480854034,0.582862854003906,0.579172551631927,-0.441103577613831,0.476117581129074,0.760749399662018,-0.38905069231987,0.636371195316315,0.666086435317993,-0.569938480854034,0.582862854003906,0.579172551631927,-0.687473833560944,0.431083887815475,0.58441960811615,-0.547999382019043,0.399513840675354,0.734904885292053,-0.547999382019043,0.399513840675354,0.734904885292053,-0.539709568023682,0.342293620109558,0.769121885299683,-0.441103577613831,0.476117581129074,0.760749399662018,-0.28565502166748,0.625778138637543,0.725811779499054,-0.38905069231987,0.636371195316315,0.666086435317993,-0.441103577613831,0.476117581129074,0.760749399662018,-0.569938480854034,0.582862854003906,0.579172551631927,-0.38905069231987,0.636371195316315,0.666086435317993,-0.393343806266785,0.781876862049103,0.483682930469513,-0.687473833560944,0.431083887815475,0.58441960811615,-0.60818749666214,0.317489773035049,0.727535605430603,-0.547999382019043,0.399513840675354,0.734904885292053,-0.547999382019043,0.399513840675354,0.734904885292053,-0.579853951931,0.298899859189987,0.757910430431366,-0.539709568023682,0.342293620109558,0.769121885299683,-0.441103577613831,0.476117581129074,0.760749399662018,-0.539709568023682,0.342293620109558,0.769121885299683,\r\n-0.407255440950394,0.383061498403549,0.829099953174591,-0.38905069231987,0.636371195316315,0.666086435317993,-0.28565502166748,0.625778138637543,0.725811779499054,-0.244812369346619,0.777147233486176,0.579749047756195,-0.441103577613831,0.476117581129074,0.760749399662018,-0.316013425588608,0.489627540111542,0.812650144100189,-0.28565502166748,0.625778138637543,0.725811779499054,-0.393343806266785,0.781876862049103,0.483682930469513,-0.38905069231987,0.636371195316315,0.666086435317993,-0.244812369346619,0.777147233486176,0.579749047756195,-0.729375958442688,0.30582869052887,0.611947178840637,-0.60818749666214,0.317489773035049,0.727535605430603,-0.687473833560944,0.431083887815475,0.58441960811615,-0.547999382019043,0.399513840675354,0.734904885292053,-0.60818749666214,0.317489773035049,0.727535605430603,-0.579853951931,0.298899859189987,0.757910430431366,-0.579853951931,0.298899859189987,0.757910430431366,-0.558627724647522,0.235206410288811,0.795369684696198,-0.539709568023682,0.342293620109558,0.769121885299683,-0.407255440950394,0.383061498403549,0.829099953174591,-0.539709568023682,0.342293620109558,0.769121885299683,-0.443694591522217,0.222318708896637,0.868164420127869,-0.441103577613831,0.476117581129074,0.760749399662018,-0.407255440950394,0.383061498403549,0.829099953174591,-0.316013425588608,0.489627540111542,0.812650144100189,-0.244812369346619,0.777147233486176,0.579749047756195,-0.28565502166748,0.625778138637543,0.725811779499054,-0.116189055144787,0.747070252895355,0.654511988162994,-0.28565502166748,0.625778138637543,0.725811779499054,-0.316013425588608,0.489627540111542,0.812650144100189,-0.182830989360809,0.622873604297638,0.760658442974091,-0.393343806266785,0.781876862049103,0.483682930469513,-0.244812369346619,0.777147233486176,0.579749047756195,-0.244275391101837,0.870165824890137,0.427949577569962,-0.729375958442688,0.30582869052887,0.611947178840637,-0.640461206436157,0.240721583366394,0.729288935661316,-0.60818749666214,0.317489773035049,0.727535605430603,-0.729375958442688,0.30582869052887,0.611947178840637,\r\n-0.687473833560944,0.431083887815475,0.58441960811615,-0.810965895652771,0.361705422401428,0.459894955158234,-0.60818749666214,0.317489773035049,0.727535605430603,-0.640461206436157,0.240721583366394,0.729288935661316,-0.579853951931,0.298899859189987,0.757910430431366,-0.558627724647522,0.235206410288811,0.795369684696198,-0.579853951931,0.298899859189987,0.757910430431366,-0.640461206436157,0.240721583366394,0.729288935661316,-0.558627724647522,0.235206410288811,0.795369684696198,-0.443694591522217,0.222318708896637,0.868164420127869,-0.539709568023682,0.342293620109558,0.769121885299683,-0.407255440950394,0.383061498403549,0.829099953174591,-0.443694591522217,0.222318708896637,0.868164420127869,-0.194982424378395,0.24812239408493,0.948903024196625,-0.407255440950394,0.383061498403549,0.829099953174591,-0.203174635767937,0.394196540117264,0.896286249160767,-0.316013425588608,0.489627540111542,0.812650144100189,-0.28565502166748,0.625778138637543,0.725811779499054,-0.182830989360809,0.622873604297638,0.760658442974091,-0.116189055144787,0.747070252895355,0.654511988162994,-0.244812369346619,0.777147233486176,0.579749047756195,-0.116189055144787,0.747070252895355,0.654511988162994,-0.110622301697731,0.837216973304749,0.535565376281738,-0.182830989360809,0.622873604297638,0.760658442974091,-0.316013425588608,0.489627540111542,0.812650144100189,-0.122788064181805,0.495302021503448,0.859999358654022,-0.244812369346619,0.777147233486176,0.579749047756195,-0.110622301697731,0.837216973304749,0.535565376281738,-0.244275391101837,0.870165824890137,0.427949577569962,-0.750923693180084,0.179025143384933,0.635659873485565,-0.640461206436157,0.240721583366394,0.729288935661316,-0.729375958442688,0.30582869052887,0.611947178840637,-0.835808515548706,0.270195215940475,0.477931559085846,-0.729375958442688,0.30582869052887,0.611947178840637,-0.810965895652771,0.361705422401428,0.459894955158234,-0.558627724647522,0.235206410288811,0.795369684696198,-0.640461206436157,0.240721583366394,0.729288935661316,-0.633638739585876,0.0945182740688324,0.767833352088928,\r\n-0.443694591522217,0.222318708896637,0.868164420127869,-0.558627724647522,0.235206410288811,0.795369684696198,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.194982424378395,0.24812239408493,0.948903024196625,-0.443694591522217,0.222318708896637,0.868164420127869,-0.194982424378395,0.24812239408493,0.948903024196625,-0.203174635767937,0.394196540117264,0.896286249160767,-0.407255440950394,0.383061498403549,0.829099953174591,-0.122788064181805,0.495302021503448,0.859999358654022,-0.316013425588608,0.489627540111542,0.812650144100189,-0.203174635767937,0.394196540117264,0.896286249160767,-0.0511995255947113,0.729468941688538,0.682094931602478,-0.116189055144787,0.747070252895355,0.654511988162994,-0.182830989360809,0.622873604297638,0.760658442974091,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.110622301697731,0.837216973304749,0.535565376281738,-0.116189055144787,0.747070252895355,0.654511988162994,-0.122788064181805,0.495302021503448,0.859999358654022,-0.00814407970756292,0.629247963428497,0.777161836624146,-0.182830989360809,0.622873604297638,0.760658442974091,-0.244275391101837,0.870165824890137,0.427949577569962,-0.110622301697731,0.837216973304749,0.535565376281738,-0.125852674245834,0.908014118671417,0.399588882923126,-0.665712237358093,0.126838967204094,0.735349535942078,-0.640461206436157,0.240721583366394,0.729288935661316,-0.750923693180084,0.179025143384933,0.635659873485565,-0.835808515548706,0.270195215940475,0.477931559085846,-0.750923693180084,0.179025143384933,0.635659873485565,-0.729375958442688,0.30582869052887,0.611947178840637,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.640461206436157,0.240721583366394,0.729288935661316,-0.665712237358093,0.126838967204094,0.735349535942078,-0.506726324558258,0.0641938075423241,0.859713554382324,-0.558627724647522,0.235206410288811,0.795369684696198,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.558627724647522,0.235206410288811,0.795369684696198,-0.506726324558258,0.0641938075423241,0.859713554382324,\r\n-0.37664121389389,0.0365834347903728,0.925636470317841,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.443694591522217,0.222318708896637,0.868164420127869,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.0568626783788204,0.040442630648613,0.99756246805191,-0.194982424378395,0.24812239408493,0.948903024196625,-0.194982424378395,0.24812239408493,0.948903024196625,0.0089757377281785,0.352875739336014,0.935627043247223,-0.203174635767937,0.394196540117264,0.896286249160767,0.0089757377281785,0.352875739336014,0.935627043247223,-0.122788064181805,0.495302021503448,0.859999358654022,-0.203174635767937,0.394196540117264,0.896286249160767,-0.0511995255947113,0.729468941688538,0.682094931602478,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.116189055144787,0.747070252895355,0.654511988162994,-0.00814407970756292,0.629247963428497,0.777161836624146,-0.0511995255947113,0.729468941688538,0.682094931602478,-0.182830989360809,0.622873604297638,0.760658442974091,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.125852674245834,0.908014118671417,0.399588882923126,-0.110622301697731,0.837216973304749,0.535565376281738,-0.122788064181805,0.495302021503448,0.859999358654022,0.084514781832695,0.481422513723373,0.872404396533966,-0.00814407970756292,0.629247963428497,0.777161836624146,-0.125852674245834,0.908014118671417,0.399588882923126,-0.214483082294464,0.920911192893982,0.325452715158463,-0.244275391101837,0.870165824890137,0.427949577569962,-0.665712237358093,0.126838967204094,0.735349535942078,-0.750923693180084,0.179025143384933,0.635659873485565,-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.750923693180084,0.179025143384933,0.635659873485565,-0.835808515548706,0.270195215940475,0.477931559085846,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.665712237358093,0.126838967204094,0.735349535942078,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.633638739585876,0.0945182740688324,0.767833352088928,\r\n-0.541308283805847,-0.127333670854568,0.831126511096954,-0.506726324558258,0.0641938075423241,0.859713554382324,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.506726324558258,0.0641938075423241,0.859713554382324,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.144134894013405,-0.101524598896503,0.984336256980896,-0.0568626783788204,0.040442630648613,0.99756246805191,-0.227692067623138,0.0662259608507156,0.971478462219238,-0.144134894013405,-0.101524598896503,0.984336256980896,0.0212333593517542,0.200104355812073,0.979544460773468,-0.194982424378395,0.24812239408493,0.948903024196625,-0.0568626783788204,0.040442630648613,0.99756246805191,0.0089757377281785,0.352875739336014,0.935627043247223,-0.194982424378395,0.24812239408493,0.948903024196625,0.0212333593517542,0.200104355812073,0.979544460773468,-0.122788064181805,0.495302021503448,0.859999358654022,0.0089757377281785,0.352875739336014,0.935627043247223,0.084514781832695,0.481422513723373,0.872404396533966,-0.0511995255947113,0.729468941688538,0.682094931602478,0.0528640747070313,0.737977206707001,0.672751724720001,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.0511995255947113,0.729468941688538,0.682094931602478,-0.00814407970756292,0.629247963428497,0.777161836624146,0.0528640747070313,0.737977206707001,0.672751724720001,-0.0365821495652199,0.815835535526276,0.577125668525696,0.00789041258394718,0.878008723258972,0.478579491376877,-0.125852674245834,0.908014118671417,0.399588882923126,0.172357693314552,0.616545259952545,0.76822167634964,-0.00814407970756292,0.629247963428497,0.777161836624146,0.084514781832695,0.481422513723373,0.872404396533966,-0.125852674245834,0.908014118671417,0.399588882923126,-0.182840242981911,0.954139173030853,0.237039655447006,-0.214483082294464,0.920911192893982,0.325452715158463,-0.750923693180084,0.179025143384933,0.635659873485565,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.67411994934082,-0.0543180927634239,0.736621797084808,\r\n-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.665712237358093,0.126838967204094,0.735349535942078,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.750923693180084,0.179025143384933,0.635659873485565,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.541308283805847,-0.127333670854568,0.831126511096954,-0.633638739585876,0.0945182740688324,0.767833352088928,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.541308283805847,-0.127333670854568,0.831126511096954,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.506726324558258,0.0641938075423241,0.859713554382324,-0.37664121389389,0.0365834347903728,0.925636470317841,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.144134894013405,-0.101524598896503,0.984336256980896,0.0283637493848801,-0.209406122565269,0.977417230606079,-0.0568626783788204,0.040442630648613,0.99756246805191,-0.144134894013405,-0.101524598896503,0.984336256980896,0.0212333593517542,0.200104355812073,0.979544460773468,-0.0568626783788204,0.040442630648613,0.99756246805191,0.0790220350027084,0.048538863658905,0.995690405368805,0.0089757377281785,0.352875739336014,0.935627043247223,0.0212333593517542,0.200104355812073,0.979544460773468,0.198055386543274,0.241575136780739,0.949955463409424,0.0089757377281785,0.352875739336014,0.935627043247223,0.171070665121078,0.364367514848709,0.915407538414001,0.084514781832695,0.481422513723373,0.872404396533966,0.097278319299221,0.814509987831116,0.571935534477234,-0.0365821495652199,0.815835535526276,0.577125668525696,0.0528640747070313,0.737977206707001,0.672751724720001,0.172357693314552,0.616545259952545,0.76822167634964,0.0528640747070313,0.737977206707001,0.672751724720001,-0.00814407970756292,0.629247963428497,0.777161836624146,0.097278319299221,0.814509987831116,0.571935534477234,\r\n0.00789041258394718,0.878008723258972,0.478579491376877,-0.0365821495652199,0.815835535526276,0.577125668525696,-0.125852674245834,0.908014118671417,0.399588882923126,0.00789041258394718,0.878008723258972,0.478579491376877,-0.112687975168228,0.941569685935974,0.317407965660095,0.249043464660645,0.458871930837631,0.852885544300079,0.172357693314552,0.616545259952545,0.76822167634964,0.084514781832695,0.481422513723373,0.872404396533966,-0.202017724514008,0.961330771446228,0.187167957425117,-0.182840242981911,0.954139173030853,0.237039655447006,-0.125852674245834,0.908014118671417,0.399588882923126,-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.659643352031708,-0.360523074865341,0.659464538097382,-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.655468225479126,-0.104056507349014,0.748019695281982,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.541308283805847,-0.127333670854568,0.831126511096954,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.541308283805847,-0.127333670854568,0.831126511096954,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.0793507546186447,-0.374822586774826,0.923694431781769,-0.144134894013405,-0.101524598896503,0.984336256980896,-0.321058213710785,-0.238226220011711,0.916607737541199,0.0790220350027084,0.048538863658905,0.995690405368805,-0.0568626783788204,0.040442630648613,0.99756246805191,0.0283637493848801,-0.209406122565269,0.977417230606079,0.0283637493848801,-0.209406122565269,0.977417230606079,-0.144134894013405,-0.101524598896503,0.984336256980896,-0.0793507546186447,-0.374822586774826,0.923694431781769,0.0790220350027084,0.048538863658905,0.995690405368805,0.198055386543274,0.241575136780739,0.949955463409424,\r\n0.0212333593517542,0.200104355812073,0.979544460773468,0.0089757377281785,0.352875739336014,0.935627043247223,0.198055386543274,0.241575136780739,0.949955463409424,0.171070665121078,0.364367514848709,0.915407538414001,0.249043464660645,0.458871930837631,0.852885544300079,0.084514781832695,0.481422513723373,0.872404396533966,0.171070665121078,0.364367514848709,0.915407538414001,0.0528640747070313,0.737977206707001,0.672751724720001,0.165392771363258,0.736308872699738,0.656120657920837,0.097278319299221,0.814509987831116,0.571935534477234,0.172357693314552,0.616545259952545,0.76822167634964,0.165392771363258,0.736308872699738,0.656120657920837,0.0528640747070313,0.737977206707001,0.672751724720001,0.00789041258394718,0.878008723258972,0.478579491376877,0.097278319299221,0.814509987831116,0.571935534477234,0.0867692977190018,0.859437823295593,0.503823041915894,-0.112687975168228,0.941569685935974,0.317407965660095,0.00789041258394718,0.878008723258972,0.478579491376877,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.125852674245834,0.908014118671417,0.399588882923126,-0.112687975168228,0.941569685935974,0.317407965660095,-0.202017724514008,0.961330771446228,0.187167957425117,0.172357693314552,0.616545259952545,0.76822167634964,0.249043464660645,0.458871930837631,0.852885544300079,0.248038366436958,0.561010599136353,0.789774596691132,-0.659643352031708,-0.360523074865341,0.659464538097382,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.67411994934082,-0.0543180927634239,0.736621797084808,-0.659643352031708,-0.360523074865341,0.659464538097382,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.603235423564911,-0.290574342012405,0.742747187614441,-0.391969114542007,-0.533656060695648,0.749380588531494,\r\n-0.161670550704002,-0.645384430885315,0.746553003787994,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.0793507546186447,-0.374822586774826,0.923694431781769,-0.321058213710785,-0.238226220011711,0.916607737541199,-0.161670550704002,-0.645384430885315,0.746553003787994,0.0283637493848801,-0.209406122565269,0.977417230606079,0.15245521068573,-0.124816119670868,0.98039698600769,0.0790220350027084,0.048538863658905,0.995690405368805,-0.0793507546186447,-0.374822586774826,0.923694431781769,0.00303992116823792,-0.6611088514328,0.750283718109131,0.0283637493848801,-0.209406122565269,0.977417230606079,0.222430720925331,0.0796700417995453,0.971687793731689,0.198055386543274,0.241575136780739,0.949955463409424,0.0790220350027084,0.048538863658905,0.995690405368805,0.325413942337036,0.324632465839386,0.888098776340485,0.171070665121078,0.364367514848709,0.915407538414001,0.198055386543274,0.241575136780739,0.949955463409424,0.325413942337036,0.324632465839386,0.888098776340485,0.249043464660645,0.458871930837631,0.852885544300079,0.171070665121078,0.364367514848709,0.915407538414001,0.097278319299221,0.814509987831116,0.571935534477234,0.165392771363258,0.736308872699738,0.656120657920837,0.140123188495636,0.785226106643677,0.603146076202393,0.230189740657806,0.695835471153259,0.680312871932983,0.165392771363258,0.736308872699738,0.656120657920837,0.172357693314552,0.616545259952545,0.76822167634964,0.097278319299221,0.814509987831116,0.571935534477234,0.140123188495636,0.785226106643677,0.603146076202393,0.0867692977190018,0.859437823295593,0.503823041915894,0.00789041258394718,0.878008723258972,0.478579491376877,0.0867692977190018,0.859437823295593,0.503823041915894,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.112687975168228,0.941569685935974,0.317407965660095,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.238525524735451,0.929032802581787,0.282848954200745,-0.238525524735451,0.929032802581787,0.282848954200745,-0.202017724514008,0.961330771446228,0.187167957425117,-0.112687975168228,0.941569685935974,0.317407965660095,\r\n0.298032939434052,0.39349302649498,0.869677782058716,0.248038366436958,0.561010599136353,0.789774596691132,0.249043464660645,0.458871930837631,0.852885544300079,0.172357693314552,0.616545259952545,0.76822167634964,0.248038366436958,0.561010599136353,0.789774596691132,0.230189740657806,0.695835471153259,0.680312871932983,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.659643352031708,-0.360523074865341,0.659464538097382,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.391969114542007,-0.533656060695648,0.749380588531494,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.161670550704002,-0.645384430885315,0.746553003787994,0.00303992116823792,-0.6611088514328,0.750283718109131,-0.0793507546186447,-0.374822586774826,0.923694431781769,-0.161670550704002,-0.645384430885315,0.746553003787994,0.0283637493848801,-0.209406122565269,0.977417230606079,0.0705010667443275,-0.502725124359131,0.861566603183746,0.15245521068573,-0.124816119670868,0.98039698600769,0.222430720925331,0.0796700417995453,0.971687793731689,0.0790220350027084,0.048538863658905,0.995690405368805,0.15245521068573,-0.124816119670868,0.98039698600769,0.00303992116823792,-0.6611088514328,0.750283718109131,0.0705010667443275,-0.502725124359131,0.861566603183746,0.0283637493848801,-0.209406122565269,0.977417230606079,0.222430720925331,0.0796700417995453,0.971687793731689,0.326537221670151,0.151559293270111,0.932954013347626,0.198055386543274,0.241575136780739,0.949955463409424,0.325413942337036,0.324632465839386,0.888098776340485,0.198055386543274,0.241575136780739,0.949955463409424,0.342823445796967,0.241968169808388,0.907702267169952,0.298032939434052,0.39349302649498,0.869677782058716,0.249043464660645,0.458871930837631,0.852885544300079,\r\n0.325413942337036,0.324632465839386,0.888098776340485,0.230189740657806,0.695835471153259,0.680312871932983,0.140123188495636,0.785226106643677,0.603146076202393,0.165392771363258,0.736308872699738,0.656120657920837,0.018778970465064,0.815672159194946,0.578209519386292,0.0867692977190018,0.859437823295593,0.503823041915894,0.140123188495636,0.785226106643677,0.603146076202393,-0.0794412866234779,0.902164161205292,0.424015045166016,0.0867692977190018,0.859437823295593,0.503823041915894,-0.0297581311315298,0.868080377578735,0.495530843734741,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.394805371761322,0.81106024980545,0.431636363267899,-0.238525524735451,0.929032802581787,0.282848954200745,0.298032939434052,0.39349302649498,0.869677782058716,0.183928370475769,0.392045915126801,0.90137130022049,0.248038366436958,0.561010599136353,0.789774596691132,0.230189740657806,0.695835471153259,0.680312871932983,0.248038366436958,0.561010599136353,0.789774596691132,0.1427201628685,0.691427648067474,0.708208084106445,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.555008709430695,-0.513909637928009,0.654111742973328,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.404557645320892,-0.753462672233582,0.518292307853699,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.0489890575408936,-0.884610593318939,0.463749945163727,-0.161670550704002,-0.645384430885315,0.746553003787994,-0.182423084974289,-0.867673337459564,0.462455004453659,0.00303992116823792,-0.6611088514328,0.750283718109131,-0.161670550704002,-0.645384430885315,0.746553003787994,-0.0489890575408936,-0.884610593318939,0.463749945163727,0.15245521068573,-0.124816119670868,0.98039698600769,0.0705010667443275,-0.502725124359131,0.861566603183746,0.206651493906975,-0.356509149074554,0.911151051521301,0.298939406871796,-0.0469877235591412,0.95311450958252,\r\n0.222430720925331,0.0796700417995453,0.971687793731689,0.15245521068573,-0.124816119670868,0.98039698600769,0.0705010667443275,-0.502725124359131,0.861566603183746,0.00303992116823792,-0.6611088514328,0.750283718109131,0.0373286306858063,-0.84039431810379,0.540688276290894,0.222430720925331,0.0796700417995453,0.971687793731689,0.298939406871796,-0.0469877235591412,0.95311450958252,0.326537221670151,0.151559293270111,0.932954013347626,0.326537221670151,0.151559293270111,0.932954013347626,0.342823445796967,0.241968169808388,0.907702267169952,0.198055386543274,0.241575136780739,0.949955463409424,0.325413942337036,0.324632465839386,0.888098776340485,0.342823445796967,0.241968169808388,0.907702267169952,0.3611880838871,0.214528247714043,0.907480418682098,0.325413942337036,0.324632465839386,0.888098776340485,0.327484369277954,0.291634321212769,0.898723125457764,0.298032939434052,0.39349302649498,0.869677782058716,0.230189740657806,0.695835471153259,0.680312871932983,0.1427201628685,0.691427648067474,0.708208084106445,0.140123188495636,0.785226106643677,0.603146076202393,0.018778970465064,0.815672159194946,0.578209519386292,-0.0297581311315298,0.868080377578735,0.495530843734741,0.0867692977190018,0.859437823295593,0.503823041915894,0.140123188495636,0.785226106643677,0.603146076202393,-0.0259360056370497,0.754523813724518,0.655759811401367,0.018778970465064,0.815672159194946,0.578209519386292,-0.197436690330505,0.81797856092453,0.540305137634277,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.0297581311315298,0.868080377578735,0.495530843734741,-0.197436690330505,0.81797856092453,0.540305137634277,-0.394805371761322,0.81106024980545,0.431636363267899,-0.0794412866234779,0.902164161205292,0.424015045166016,-0.238525524735451,0.929032802581787,0.282848954200745,-0.394805371761322,0.81106024980545,0.431636363267899,-0.568931758403778,0.725353717803955,0.38752880692482,0.298032939434052,0.39349302649498,0.869677782058716,0.218003019690514,0.297935754060745,0.929359376430511,0.183928370475769,0.392045915126801,0.90137130022049,\r\n0.248038366436958,0.561010599136353,0.789774596691132,0.183928370475769,0.392045915126801,0.90137130022049,0.11199539154768,0.564670324325562,0.817682266235352,0.248038366436958,0.561010599136353,0.789774596691132,0.11199539154768,0.564670324325562,0.817682266235352,0.1427201628685,0.691427648067474,0.708208084106445,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.0489890575408936,-0.884610593318939,0.463749945163727,-0.182423084974289,-0.867673337459564,0.462455004453659,-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.0489890575408936,-0.884610593318939,0.463749945163727,0.0237970929592848,-0.884401857852936,0.466119021177292,0.00303992116823792,-0.6611088514328,0.750283718109131,0.103848218917847,-0.727927625179291,0.677743971347809,0.206651493906975,-0.356509149074554,0.911151051521301,0.0705010667443275,-0.502725124359131,0.861566603183746,0.298939406871796,-0.0469877235591412,0.95311450958252,0.15245521068573,-0.124816119670868,0.98039698600769,0.206651493906975,-0.356509149074554,0.911151051521301,0.0237970929592848,-0.884401857852936,0.466119021177292,0.0373286306858063,-0.84039431810379,0.540688276290894,0.00303992116823792,-0.6611088514328,0.750283718109131,0.103848218917847,-0.727927625179291,0.677743971347809,0.0705010667443275,-0.502725124359131,0.861566603183746,0.0373286306858063,-0.84039431810379,0.540688276290894,0.326537221670151,0.151559293270111,0.932954013347626,0.298939406871796,-0.0469877235591412,0.95311450958252,0.3611880838871,0.214528247714043,0.907480418682098,0.326537221670151,0.151559293270111,0.932954013347626,0.3611880838871,0.214528247714043,0.907480418682098,0.342823445796967,0.241968169808388,0.907702267169952,0.3611880838871,0.214528247714043,0.907480418682098,0.327484369277954,0.291634321212769,0.898723125457764,0.325413942337036,0.324632465839386,0.888098776340485,0.327484369277954,0.291634321212769,0.898723125457764,0.218003019690514,0.297935754060745,0.929359376430511,\r\n0.298032939434052,0.39349302649498,0.869677782058716,0.140123188495636,0.785226106643677,0.603146076202393,0.1427201628685,0.691427648067474,0.708208084106445,0.0677250400185585,0.728395581245422,0.681801319122314,0.018778970465064,0.815672159194946,0.578209519386292,-0.197436690330505,0.81797856092453,0.540305137634277,-0.0297581311315298,0.868080377578735,0.495530843734741,0.0677250400185585,0.728395581245422,0.681801319122314,-0.0259360056370497,0.754523813724518,0.655759811401367,0.140123188495636,0.785226106643677,0.603146076202393,-0.205756530165672,0.716248989105225,0.666821897029877,0.018778970465064,0.815672159194946,0.578209519386292,-0.0259360056370497,0.754523813724518,0.655759811401367,-0.197436690330505,0.81797856092453,0.540305137634277,-0.516723215579987,0.614378571510315,0.59626829624176,-0.394805371761322,0.81106024980545,0.431636363267899,-0.647234082221985,0.576736330986023,0.498460859060287,-0.568931758403778,0.725353717803955,0.38752880692482,-0.394805371761322,0.81106024980545,0.431636363267899,0.218003019690514,0.297935754060745,0.929359376430511,0.205332607030869,0.284477889537811,0.936435163021088,0.183928370475769,0.392045915126801,0.90137130022049,0.183928370475769,0.392045915126801,0.90137130022049,0.165170133113861,0.387283205986023,0.907044887542725,0.11199539154768,0.564670324325562,0.817682266235352,0.1427201628685,0.691427648067474,0.708208084106445,0.11199539154768,0.564670324325562,0.817682266235352,0.0198673661798239,0.674179673194885,0.738300025463104,0.0269863288849592,-0.968023240566254,0.249404564499855,-0.0489890575408936,-0.884610593318939,0.463749945163727,-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.0489890575408936,-0.884610593318939,0.463749945163727,0.0269863288849592,-0.968023240566254,0.249404564499855,0.0237970929592848,-0.884401857852936,0.466119021177292,0.215122237801552,-0.598580002784729,0.771637380123138,0.206651493906975,-0.356509149074554,0.911151051521301,0.103848218917847,-0.727927625179291,0.677743971347809,0.215122237801552,-0.598580002784729,0.771637380123138,\r\n0.298939406871796,-0.0469877235591412,0.95311450958252,0.206651493906975,-0.356509149074554,0.911151051521301,0.0269863288849592,-0.968023240566254,0.249404564499855,0.0373286306858063,-0.84039431810379,0.540688276290894,0.0237970929592848,-0.884401857852936,0.466119021177292,0.103848218917847,-0.727927625179291,0.677743971347809,0.0373286306858063,-0.84039431810379,0.540688276290894,0.056921798735857,-0.922482848167419,0.381818234920502,0.298939406871796,-0.0469877235591412,0.95311450958252,0.275118917226791,0.0805407613515854,0.958030581474304,0.3611880838871,0.214528247714043,0.907480418682098,0.3611880838871,0.214528247714043,0.907480418682098,0.25140854716301,0.256675094366074,0.933226406574249,0.327484369277954,0.291634321212769,0.898723125457764,0.218003019690514,0.297935754060745,0.929359376430511,0.327484369277954,0.291634321212769,0.898723125457764,0.25140854716301,0.256675094366074,0.933226406574249,0.0677250400185585,0.728395581245422,0.681801319122314,0.1427201628685,0.691427648067474,0.708208084106445,0.0061349393799901,0.682318270206451,0.731029391288757,-0.197436690330505,0.81797856092453,0.540305137634277,0.018778970465064,0.815672159194946,0.578209519386292,-0.205756530165672,0.716248989105225,0.666821897029877,0.0677250400185585,0.728395581245422,0.681801319122314,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.0259360056370497,0.754523813724518,0.655759811401367,-0.236310616135597,0.614356637001038,0.752810120582581,-0.205756530165672,0.716248989105225,0.666821897029877,-0.0259360056370497,0.754523813724518,0.655759811401367,-0.197436690330505,0.81797856092453,0.540305137634277,-0.205756530165672,0.716248989105225,0.666821897029877,-0.516723215579987,0.614378571510315,0.59626829624176,-0.516723215579987,0.614378571510315,0.59626829624176,-0.647234082221985,0.576736330986023,0.498460859060287,-0.394805371761322,0.81106024980545,0.431636363267899,-0.731558442115784,0.411041975021362,0.543936133384705,-0.568931758403778,0.725353717803955,0.38752880692482,-0.647234082221985,0.576736330986023,0.498460859060287,\r\n0.218003019690514,0.297935754060745,0.929359376430511,0.258895933628082,0.242918446660042,0.934860110282898,0.205332607030869,0.284477889537811,0.936435163021088,0.183928370475769,0.392045915126801,0.90137130022049,0.205332607030869,0.284477889537811,0.936435163021088,0.165170133113861,0.387283205986023,0.907044887542725,0.11199539154768,0.564670324325562,0.817682266235352,0.165170133113861,0.387283205986023,0.907044887542725,0.187148913741112,0.48580613732338,0.853795945644379,0.11199539154768,0.564670324325562,0.817682266235352,0.107288524508476,0.618943750858307,0.778073012828827,0.0198673661798239,0.674179673194885,0.738300025463104,0.0061349393799901,0.682318270206451,0.731029391288757,0.1427201628685,0.691427648067474,0.708208084106445,0.0198673661798239,0.674179673194885,0.738300025463104,0.056921798735857,-0.922482848167419,0.381818234920502,0.215122237801552,-0.598580002784729,0.771637380123138,0.103848218917847,-0.727927625179291,0.677743971347809,0.218375355005264,-0.355886429548264,0.908656656742096,0.298939406871796,-0.0469877235591412,0.95311450958252,0.215122237801552,-0.598580002784729,0.771637380123138,0.056921798735857,-0.922482848167419,0.381818234920502,0.0373286306858063,-0.84039431810379,0.540688276290894,0.0269863288849592,-0.968023240566254,0.249404564499855,0.298939406871796,-0.0469877235591412,0.95311450958252,0.218375355005264,-0.355886429548264,0.908656656742096,0.275118917226791,0.0805407613515854,0.958030581474304,0.3611880838871,0.214528247714043,0.907480418682098,0.275118917226791,0.0805407613515854,0.958030581474304,0.25140854716301,0.256675094366074,0.933226406574249,0.25140854716301,0.256675094366074,0.933226406574249,0.258895933628082,0.242918446660042,0.934860110282898,0.218003019690514,0.297935754060745,0.929359376430511,0.0677250400185585,0.728395581245422,0.681801319122314,0.0061349393799901,0.682318270206451,0.731029391288757,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.236310616135597,0.614356637001038,0.752810120582581,-0.0259360056370497,0.754523813724518,0.655759811401367,\r\n-0.0807997584342957,0.647597074508667,0.757686853408813,-0.236310616135597,0.614356637001038,0.752810120582581,-0.426622420549393,0.490711539983749,0.759733736515045,-0.205756530165672,0.716248989105225,0.666821897029877,-0.516723215579987,0.614378571510315,0.59626829624176,-0.205756530165672,0.716248989105225,0.666821897029877,-0.426622420549393,0.490711539983749,0.759733736515045,-0.516723215579987,0.614378571510315,0.59626829624176,-0.731558442115784,0.411041975021362,0.543936133384705,-0.647234082221985,0.576736330986023,0.498460859060287,-0.799638450145721,0.407566636800766,0.440984815359116,-0.568931758403778,0.725353717803955,0.38752880692482,-0.731558442115784,0.411041975021362,0.543936133384705,0.205332607030869,0.284477889537811,0.936435163021088,0.258895933628082,0.242918446660042,0.934860110282898,0.283771425485611,0.333592563867569,0.898993670940399,0.205332607030869,0.284477889537811,0.936435163021088,0.283771425485611,0.333592563867569,0.898993670940399,0.165170133113861,0.387283205986023,0.907044887542725,0.165170133113861,0.387283205986023,0.907044887542725,0.283771425485611,0.333592563867569,0.898993670940399,0.187148913741112,0.48580613732338,0.853795945644379,0.11199539154768,0.564670324325562,0.817682266235352,0.187148913741112,0.48580613732338,0.853795945644379,0.107288524508476,0.618943750858307,0.778073012828827,-0.0611965395510197,0.645125687122345,0.761621654033661,0.0198673661798239,0.674179673194885,0.738300025463104,0.107288524508476,0.618943750858307,0.778073012828827,0.0061349393799901,0.682318270206451,0.731029391288757,0.0198673661798239,0.674179673194885,0.738300025463104,-0.0611965395510197,0.645125687122345,0.761621654033661,0.134191811084747,-0.844798266887665,0.517984867095947,0.215122237801552,-0.598580002784729,0.771637380123138,0.056921798735857,-0.922482848167419,0.381818234920502,0.218375355005264,-0.355886429548264,0.908656656742096,0.215122237801552,-0.598580002784729,0.771637380123138,0.134191811084747,-0.844798266887665,0.517984867095947,0.238180324435234,0.0818521678447723,0.967765629291534,\r\n0.275118917226791,0.0805407613515854,0.958030581474304,0.218375355005264,-0.355886429548264,0.908656656742096,0.238180324435234,0.0818521678447723,0.967765629291534,0.25140854716301,0.256675094366074,0.933226406574249,0.275118917226791,0.0805407613515854,0.958030581474304,0.238180324435234,0.0818521678447723,0.967765629291534,0.258895933628082,0.242918446660042,0.934860110282898,0.25140854716301,0.256675094366074,0.933226406574249,-0.0807997584342957,0.647597074508667,0.757686853408813,0.0061349393799901,0.682318270206451,0.731029391288757,-0.0941085815429688,0.581249892711639,0.808264791965485,-0.236310616135597,0.614356637001038,0.752810120582581,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.237145707011223,0.5391446352005,0.808136641979218,-0.426622420549393,0.490711539983749,0.759733736515045,-0.236310616135597,0.614356637001038,0.752810120582581,-0.350394487380981,0.377439469099045,0.857183158397675,-0.426622420549393,0.490711539983749,0.759733736515045,-0.612712323665619,0.348511546850204,0.709311723709106,-0.516723215579987,0.614378571510315,0.59626829624176,-0.516723215579987,0.614378571510315,0.59626829624176,-0.612712323665619,0.348511546850204,0.709311723709106,-0.731558442115784,0.411041975021362,0.543936133384705,-0.811605870723724,0.217904180288315,0.542045712471008,-0.799638450145721,0.407566636800766,0.440984815359116,-0.731558442115784,0.411041975021362,0.543936133384705,0.258895933628082,0.242918446660042,0.934860110282898,0.320160180330276,0.278063416481018,0.905636847019196,0.283771425485611,0.333592563867569,0.898993670940399,0.187148913741112,0.48580613732338,0.853795945644379,0.283771425485611,0.333592563867569,0.898993670940399,0.221720889210701,0.455565512180328,0.862148404121399,0.187148913741112,0.48580613732338,0.853795945644379,0.221720889210701,0.455565512180328,0.862148404121399,0.107288524508476,0.618943750858307,0.778073012828827,0.107288524508476,0.618943750858307,0.778073012828827,0.10983694344759,0.579224407672882,0.807734370231628,-0.0611965395510197,0.645125687122345,0.761621654033661,\r\n0.0061349393799901,0.682318270206451,0.731029391288757,-0.0611965395510197,0.645125687122345,0.761621654033661,-0.0941085815429688,0.581249892711639,0.808264791965485,0.218316376209259,-0.721683084964752,0.656895220279694,0.218375355005264,-0.355886429548264,0.908656656742096,0.134191811084747,-0.844798266887665,0.517984867095947,0.218375355005264,-0.355886429548264,0.908656656742096,0.246797189116478,-0.275167912244797,0.929179012775421,0.238180324435234,0.0818521678447723,0.967765629291534,0.238180324435234,0.0818521678447723,0.967765629291534,0.287190824747086,0.0519231520593166,0.956465005874634,0.258895933628082,0.242918446660042,0.934860110282898,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.0941085815429688,0.581249892711639,0.808264791965485,-0.215099915862083,0.460791409015656,0.861047744750977,-0.237145707011223,0.5391446352005,0.808136641979218,-0.0807997584342957,0.647597074508667,0.757686853408813,-0.215099915862083,0.460791409015656,0.861047744750977,-0.236310616135597,0.614356637001038,0.752810120582581,-0.237145707011223,0.5391446352005,0.808136641979218,-0.350394487380981,0.377439469099045,0.857183158397675,-0.498147815465927,0.236402615904808,0.834243595600128,-0.426622420549393,0.490711539983749,0.759733736515045,-0.350394487380981,0.377439469099045,0.857183158397675,-0.426622420549393,0.490711539983749,0.759733736515045,-0.498147815465927,0.236402615904808,0.834243595600128,-0.612712323665619,0.348511546850204,0.709311723709106,-0.731558442115784,0.411041975021362,0.543936133384705,-0.612712323665619,0.348511546850204,0.709311723709106,-0.740013778209686,0.248467698693275,0.62501448392868,-0.860896348953247,0.182480692863464,0.474929600954056,-0.799638450145721,0.407566636800766,0.440984815359116,-0.811605870723724,0.217904180288315,0.542045712471008,-0.811605870723724,0.217904180288315,0.542045712471008,-0.731558442115784,0.411041975021362,0.543936133384705,-0.740013778209686,0.248467698693275,0.62501448392868,0.353599220514297,0.222115471959114,0.908643066883087,0.320160180330276,0.278063416481018,0.905636847019196,\r\n0.258895933628082,0.242918446660042,0.934860110282898,0.320160180330276,0.278063416481018,0.905636847019196,0.221720889210701,0.455565512180328,0.862148404121399,0.283771425485611,0.333592563867569,0.898993670940399,0.107288524508476,0.618943750858307,0.778073012828827,0.221720889210701,0.455565512180328,0.862148404121399,0.10983694344759,0.579224407672882,0.807734370231628,0.10983694344759,0.579224407672882,0.807734370231628,-0.0815657302737236,0.498664200305939,0.862948954105377,-0.0611965395510197,0.645125687122345,0.761621654033661,-0.0941085815429688,0.581249892711639,0.808264791965485,-0.0611965395510197,0.645125687122345,0.761621654033661,-0.0815657302737236,0.498664200305939,0.862948954105377,0.218375355005264,-0.355886429548264,0.908656656742096,0.218316376209259,-0.721683084964752,0.656895220279694,0.246797189116478,-0.275167912244797,0.929179012775421,0.289119124412537,-0.385168790817261,0.876387357711792,0.238180324435234,0.0818521678447723,0.967765629291534,0.246797189116478,-0.275167912244797,0.929179012775421,0.287190824747086,0.0519231520593166,0.956465005874634,0.238180324435234,0.0818521678447723,0.967765629291534,0.289119124412537,-0.385168790817261,0.876387357711792,0.350079596042633,0.124095611274242,0.928463518619537,0.258895933628082,0.242918446660042,0.934860110282898,0.287190824747086,0.0519231520593166,0.956465005874634,-0.215099915862083,0.460791409015656,0.861047744750977,-0.0941085815429688,0.581249892711639,0.808264791965485,-0.0815657302737236,0.498664200305939,0.862948954105377,-0.215099915862083,0.460791409015656,0.861047744750977,-0.350394487380981,0.377439469099045,0.857183158397675,-0.237145707011223,0.5391446352005,0.808136641979218,-0.389128267765045,0.126762434840202,0.912420094013214,-0.498147815465927,0.236402615904808,0.834243595600128,-0.350394487380981,0.377439469099045,0.857183158397675,-0.648662567138672,0.158552512526512,0.744377493858337,-0.612712323665619,0.348511546850204,0.709311723709106,-0.498147815465927,0.236402615904808,0.834243595600128,-0.648662567138672,0.158552512526512,0.744377493858337,\r\n-0.740013778209686,0.248467698693275,0.62501448392868,-0.612712323665619,0.348511546850204,0.709311723709106,-0.860896348953247,0.182480692863464,0.474929600954056,-0.811605870723724,0.217904180288315,0.542045712471008,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.773741066455841,0.106499463319778,0.624485790729523,-0.811605870723724,0.217904180288315,0.542045712471008,-0.740013778209686,0.248467698693275,0.62501448392868,0.320160180330276,0.278063416481018,0.905636847019196,0.353599220514297,0.222115471959114,0.908643066883087,0.336163431406021,0.20139591395855,0.920018315315247,0.258895933628082,0.242918446660042,0.934860110282898,0.350079596042633,0.124095611274242,0.928463518619537,0.353599220514297,0.222115471959114,0.908643066883087,0.320160180330276,0.278063416481018,0.905636847019196,0.278646051883698,0.292701721191406,0.914703190326691,0.221720889210701,0.455565512180328,0.862148404121399,0.221720889210701,0.455565512180328,0.862148404121399,0.0575704649090767,0.494084626436234,0.867505609989166,0.10983694344759,0.579224407672882,0.807734370231628,0.0575704649090767,0.494084626436234,0.867505609989166,-0.0815657302737236,0.498664200305939,0.862948954105377,0.10983694344759,0.579224407672882,0.807734370231628,0.289119124412537,-0.385168790817261,0.876387357711792,0.246797189116478,-0.275167912244797,0.929179012775421,0.218316376209259,-0.721683084964752,0.656895220279694,0.289119124412537,-0.385168790817261,0.876387357711792,0.296407639980316,-0.277374416589737,0.913895964622498,0.287190824747086,0.0519231520593166,0.956465005874634,0.350079596042633,0.124095611274242,0.928463518619537,0.287190824747086,0.0519231520593166,0.956465005874634,0.296407639980316,-0.277374416589737,0.913895964622498,-0.215099915862083,0.460791409015656,0.861047744750977,-0.0815657302737236,0.498664200305939,0.862948954105377,-0.174573332071304,0.298412680625916,0.938335716724396,-0.215099915862083,0.460791409015656,0.861047744750977,-0.324248850345612,0.262217611074448,0.908902883529663,-0.350394487380981,0.377439469099045,0.857183158397675,\r\n-0.389128267765045,0.126762434840202,0.912420094013214,-0.524828314781189,0.044887974858284,0.850023627281189,-0.498147815465927,0.236402615904808,0.834243595600128,-0.350394487380981,0.377439469099045,0.857183158397675,-0.324248850345612,0.262217611074448,0.908902883529663,-0.389128267765045,0.126762434840202,0.912420094013214,-0.648662567138672,0.158552512526512,0.744377493858337,-0.498147815465927,0.236402615904808,0.834243595600128,-0.524828314781189,0.044887974858284,0.850023627281189,-0.648662567138672,0.158552512526512,0.744377493858337,-0.773741066455841,0.106499463319778,0.624485790729523,-0.740013778209686,0.248467698693275,0.62501448392868,-0.811605870723724,0.217904180288315,0.542045712471008,-0.773741066455841,0.106499463319778,0.624485790729523,-0.857041656970978,0.0945139825344086,0.506504237651825,0.397479861974716,0.147707730531693,0.905644536018372,0.336163431406021,0.20139591395855,0.920018315315247,0.353599220514297,0.222115471959114,0.908643066883087,0.320160180330276,0.278063416481018,0.905636847019196,0.336163431406021,0.20139591395855,0.920018315315247,0.278646051883698,0.292701721191406,0.914703190326691,0.350079596042633,0.124095611274242,0.928463518619537,0.397479861974716,0.147707730531693,0.905644536018372,0.353599220514297,0.222115471959114,0.908643066883087,0.278646051883698,0.292701721191406,0.914703190326691,0.101489208638668,0.397484332323074,0.911979198455811,0.221720889210701,0.455565512180328,0.862148404121399,0.101489208638668,0.397484332323074,0.911979198455811,0.0575704649090767,0.494084626436234,0.867505609989166,0.221720889210701,0.455565512180328,0.862148404121399,-0.0815657302737236,0.498664200305939,0.862948954105377,0.0575704649090767,0.494084626436234,0.867505609989166,-0.0487884469330311,0.388375580310822,0.920208632946014,0.18120077252388,-0.85315728187561,0.489171624183655,0.289119124412537,-0.385168790817261,0.876387357711792,0.218316376209259,-0.721683084964752,0.656895220279694,0.289119124412537,-0.385168790817261,0.876387357711792,0.190357357263565,-0.734283208847046,0.6516073346138,\r\n0.296407639980316,-0.277374416589737,0.913895964622498,0.296407639980316,-0.277374416589737,0.913895964622498,0.380091905593872,-0.136675447225571,0.914794862270355,0.350079596042633,0.124095611274242,0.928463518619537,-0.0487884469330311,0.388375580310822,0.920208632946014,-0.174573332071304,0.298412680625916,0.938335716724396,-0.0815657302737236,0.498664200305939,0.862948954105377,-0.215099915862083,0.460791409015656,0.861047744750977,-0.174573332071304,0.298412680625916,0.938335716724396,-0.324248850345612,0.262217611074448,0.908902883529663,-0.524828314781189,0.044887974858284,0.850023627281189,-0.389128267765045,0.126762434840202,0.912420094013214,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.279482245445251,0.173636257648468,0.944319903850555,-0.389128267765045,0.126762434840202,0.912420094013214,-0.324248850345612,0.262217611074448,0.908902883529663,-0.524828314781189,0.044887974858284,0.850023627281189,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.648662567138672,0.158552512526512,0.744377493858337,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.773741066455841,0.106499463319778,0.624485790729523,-0.648662567138672,0.158552512526512,0.744377493858337,-0.773741066455841,0.106499463319778,0.624485790729523,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.857041656970978,0.0945139825344086,0.506504237651825,0.336163431406021,0.20139591395855,0.920018315315247,0.397479861974716,0.147707730531693,0.905644536018372,0.210018455982208,0.138713732361794,0.967807114124298,0.255923420190811,0.25581818819046,0.932233989238739,0.278646051883698,0.292701721191406,0.914703190326691,0.336163431406021,0.20139591395855,0.920018315315247,0.350079596042633,0.124095611274242,0.928463518619537,0.380091905593872,-0.136675447225571,0.914794862270355,0.397479861974716,0.147707730531693,0.905644536018372,0.278646051883698,0.292701721191406,0.914703190326691,0.255923420190811,0.25581818819046,0.932233989238739,0.101489208638668,0.397484332323074,0.911979198455811,0.0575704649090767,0.494084626436234,0.867505609989166,\r\n0.101489208638668,0.397484332323074,0.911979198455811,-0.0487884469330311,0.388375580310822,0.920208632946014,0.289119124412537,-0.385168790817261,0.876387357711792,0.18120077252388,-0.85315728187561,0.489171624183655,0.190357357263565,-0.734283208847046,0.6516073346138,0.252474784851074,-0.664206862449646,0.703623116016388,0.296407639980316,-0.277374416589737,0.913895964622498,0.190357357263565,-0.734283208847046,0.6516073346138,0.252474784851074,-0.664206862449646,0.703623116016388,0.380091905593872,-0.136675447225571,0.914794862270355,0.296407639980316,-0.277374416589737,0.913895964622498,-0.0487884469330311,0.388375580310822,0.920208632946014,-0.00613200152292848,0.263835549354553,0.964548110961914,-0.174573332071304,0.298412680625916,0.938335716724396,-0.279482245445251,0.173636257648468,0.944319903850555,-0.324248850345612,0.262217611074448,0.908902883529663,-0.174573332071304,0.298412680625916,0.938335716724396,-0.389128267765045,0.126762434840202,0.912420094013214,-0.288489192724228,0.001648323610425,0.957481682300568,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.524828314781189,0.044887974858284,0.850023627281189,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.279482245445251,0.173636257648468,0.944319903850555,-0.288489192724228,0.001648323610425,0.957481682300568,-0.389128267765045,0.126762434840202,0.912420094013214,-0.524828314781189,0.044887974858284,0.850023627281189,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.773741066455841,0.106499463319778,0.624485790729523,-0.773741066455841,0.106499463319778,0.624485790729523,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.857041656970978,0.0945139825344086,0.506504237651825,-0.824711382389069,0.00748538551852107,0.565504133701324,\r\n-0.879416227340698,0.011167086660862,0.475922554731369,0.33131530880928,-0.172719866037369,0.9275763630867,0.210018455982208,0.138713732361794,0.967807114124298,0.397479861974716,0.147707730531693,0.905644536018372,-0.0141718368977308,0.237838119268417,0.971201360225677,0.336163431406021,0.20139591395855,0.920018315315247,0.210018455982208,0.138713732361794,0.967807114124298,0.255923420190811,0.25581818819046,0.932233989238739,0.336163431406021,0.20139591395855,0.920018315315247,-0.0141718368977308,0.237838119268417,0.971201360225677,0.380091905593872,-0.136675447225571,0.914794862270355,0.33131530880928,-0.172719866037369,0.9275763630867,0.397479861974716,0.147707730531693,0.905644536018372,0.101489208638668,0.397484332323074,0.911979198455811,0.255923420190811,0.25581818819046,0.932233989238739,0.198185980319977,0.357987344264984,0.912451207637787,0.0273442789912224,0.388423651456833,0.921075046062469,-0.0487884469330311,0.388375580310822,0.920208632946014,0.101489208638668,0.397484332323074,0.911979198455811,0.319517523050308,-0.53386390209198,0.782877862453461,0.380091905593872,-0.136675447225571,0.914794862270355,0.252474784851074,-0.664206862449646,0.703623116016388,-0.0487884469330311,0.388375580310822,0.920208632946014,0.0273442789912224,0.388423651456833,0.921075046062469,-0.00613200152292848,0.263835549354553,0.964548110961914,-0.174573332071304,0.298412680625916,0.938335716724396,-0.00613200152292848,0.263835549354553,0.964548110961914,-0.121384583413601,0.137785449624062,0.982995867729187,-0.279482245445251,0.173636257648468,0.944319903850555,-0.174573332071304,0.298412680625916,0.938335716724396,-0.121384583413601,0.137785449624062,0.982995867729187,-0.288489192724228,0.001648323610425,0.957481682300568,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.121384583413601,0.137785449624062,0.982995867729187,\r\n-0.288489192724228,0.001648323610425,0.957481682300568,-0.279482245445251,0.173636257648468,0.944319903850555,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.674713850021362,0.0405274368822575,0.736965835094452,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.879416227340698,0.011167086660862,0.475922554731369,0.210018455982208,0.138713732361794,0.967807114124298,0.33131530880928,-0.172719866037369,0.9275763630867,0.0204367060214281,-0.199286758899689,0.979728043079376,-0.419056236743927,0.115671657025814,0.900561928749084,-0.0141718368977308,0.237838119268417,0.971201360225677,0.210018455982208,0.138713732361794,0.967807114124298,-0.0249519273638725,0.270054936408997,0.962521493434906,0.255923420190811,0.25581818819046,0.932233989238739,-0.0141718368977308,0.237838119268417,0.971201360225677,0.380091905593872,-0.136675447225571,0.914794862270355,0.319517523050308,-0.53386390209198,0.782877862453461,0.33131530880928,-0.172719866037369,0.9275763630867,0.255923420190811,0.25581818819046,0.932233989238739,0.152209937572479,0.348825424909592,0.924744784832001,0.198185980319977,0.357987344264984,0.912451207637787,0.0273442789912224,0.388423651456833,0.921075046062469,0.101489208638668,0.397484332323074,0.911979198455811,0.198185980319977,0.357987344264984,0.912451207637787,-0.00613200152292848,0.263835549354553,0.964548110961914,0.0273442789912224,0.388423651456833,0.921075046062469,0.142272219061852,0.359188586473465,0.922356784343719,-0.121384583413601,0.137785449624062,0.982995867729187,-0.00613200152292848,0.263835549354553,0.964548110961914,0.0117640560492873,0.0907051786780357,0.995808243751526,\r\n-0.288489192724228,0.001648323610425,0.957481682300568,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.435273826122284,-0.0532935746014118,0.898719310760498,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.574878931045532,-0.0613475032150745,0.815935373306274,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.121384583413601,0.137785449624062,0.982995867729187,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.288489192724228,0.001648323610425,0.957481682300568,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.770534634590149,0.0104323038831353,0.637312650680542,-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.824711382389069,0.00748538551852107,0.565504133701324,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.419056236743927,0.115671657025814,0.900561928749084,0.210018455982208,0.138713732361794,0.967807114124298,0.0204367060214281,-0.199286758899689,0.979728043079376,-0.0141718368977308,0.237838119268417,0.971201360225677,-0.419056236743927,0.115671657025814,0.900561928749084,-0.705471813678741,0.249749213457108,0.663275718688965,-0.0249519273638725,0.270054936408997,0.962521493434906,0.152209937572479,0.348825424909592,0.924744784832001,0.255923420190811,0.25581818819046,0.932233989238739,-0.0249519273638725,0.270054936408997,0.962521493434906,-0.0141718368977308,0.237838119268417,0.971201360225677,-0.529488325119019,0.332409024238586,0.780478179454803,0.152209937572479,0.348825424909592,0.924744784832001,\r\n0.222225874662399,0.35578066110611,0.907764136791229,0.198185980319977,0.357987344264984,0.912451207637787,0.198185980319977,0.357987344264984,0.912451207637787,0.142272219061852,0.359188586473465,0.922356784343719,0.0273442789912224,0.388423651456833,0.921075046062469,-0.00613200152292848,0.263835549354553,0.964548110961914,0.142272219061852,0.359188586473465,0.922356784343719,0.0818490907549858,0.206332668662071,0.975052535533905,-0.00613200152292848,0.263835549354553,0.964548110961914,0.0818490907549858,0.206332668662071,0.975052535533905,0.0117640560492873,0.0907051786780357,0.995808243751526,0.0117640560492873,0.0907051786780357,0.995808243751526,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.121384583413601,0.137785449624062,0.982995867729187,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.288489192724228,0.001648323610425,0.957481682300568,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.20721822977066,-0.149217173457146,0.966847836971283,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.574878931045532,-0.0613475032150745,0.815935373306274,-0.487274169921875,-0.086381770670414,0.868966042995453,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.573379278182983,-0.0416153520345688,0.818232357501984,-0.574878931045532,-0.0613475032150745,0.815935373306274,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.712190270423889,-0.017360981553793,0.701771676540375,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.8191077709198,-0.0735566467046738,0.568903982639313,\r\n-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.867402493953705,-0.104538455605507,0.486502319574356,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.511537253856659,-0.228545039892197,0.828309535980225,-0.419056236743927,0.115671657025814,0.900561928749084,0.0204367060214281,-0.199286758899689,0.979728043079376,-0.419056236743927,0.115671657025814,0.900561928749084,-0.796772658824921,0.1327755600214,0.589511394500732,-0.705471813678741,0.249749213457108,0.663275718688965,-0.705471813678741,0.249749213457108,0.663275718688965,-0.529488325119019,0.332409024238586,0.780478179454803,-0.0141718368977308,0.237838119268417,0.971201360225677,-0.0249519273638725,0.270054936408997,0.962521493434906,-0.327570140361786,0.465397536754608,0.822254717350006,0.152209937572479,0.348825424909592,0.924744784832001,-0.327570140361786,0.465397536754608,0.822254717350006,-0.0249519273638725,0.270054936408997,0.962521493434906,-0.529488325119019,0.332409024238586,0.780478179454803,0.152209937572479,0.348825424909592,0.924744784832001,0.00105744879692793,0.451491415500641,0.892274737358093,0.222225874662399,0.35578066110611,0.907764136791229,0.198185980319977,0.357987344264984,0.912451207637787,0.222225874662399,0.35578066110611,0.907764136791229,0.142272219061852,0.359188586473465,0.922356784343719,0.142272219061852,0.359188586473465,0.922356784343719,0.144554018974304,0.319296479225159,0.936564862728119,0.0818490907549858,0.206332668662071,0.975052535533905,0.124696351587772,0.0287098288536072,0.991779446601868,0.0117640560492873,0.0907051786780357,0.995808243751526,0.0818490907549858,0.206332668662071,0.975052535533905,0.0117640560492873,0.0907051786780357,0.995808243751526,0.0375596582889557,-0.0231424029916525,0.999026358127594,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.20721822977066,-0.149217173457146,0.966847836971283,\r\n-0.267993211746216,-0.147157415747643,0.952115535736084,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.20721822977066,-0.149217173457146,0.966847836971283,-0.196299910545349,-0.102691859006882,0.975151598453522,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.574878931045532,-0.0613475032150745,0.815935373306274,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.777776956558228,-0.0449403673410416,0.626931548118591,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.8191077709198,-0.0735566467046738,0.568903982639313,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.419056236743927,0.115671657025814,0.900561928749084,-0.511537253856659,-0.228545039892197,0.828309535980225,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.796772658824921,0.1327755600214,0.589511394500732,-0.419056236743927,0.115671657025814,0.900561928749084,-0.793591320514679,0.19418129324913,0.57663357257843,-0.705471813678741,0.249749213457108,0.663275718688965,-0.796772658824921,0.1327755600214,0.589511394500732,-0.529488325119019,0.332409024238586,0.780478179454803,-0.705471813678741,0.249749213457108,0.663275718688965,-0.810319662094116,0.346996903419495,0.472202301025391,0.00105744879692793,0.451491415500641,0.892274737358093,0.152209937572479,0.348825424909592,0.924744784832001,-0.327570140361786,0.465397536754608,0.822254717350006,-0.327570140361786,0.465397536754608,0.822254717350006,-0.529488325119019,0.332409024238586,0.780478179454803,\r\n-0.737279295921326,0.499063402414322,0.455362290143967,-0.00619745999574661,0.37236088514328,0.928067147731781,0.222225874662399,0.35578066110611,0.907764136791229,0.00105744879692793,0.451491415500641,0.892274737358093,0.222225874662399,0.35578066110611,0.907764136791229,0.144554018974304,0.319296479225159,0.936564862728119,0.142272219061852,0.359188586473465,0.922356784343719,0.0398642681539059,0.300693362951279,0.952887296676636,0.0818490907549858,0.206332668662071,0.975052535533905,0.144554018974304,0.319296479225159,0.936564862728119,0.0117640560492873,0.0907051786780357,0.995808243751526,0.124696351587772,0.0287098288536072,0.991779446601868,0.0375596582889557,-0.0231424029916525,0.999026358127594,0.169040203094482,0.155326336622238,0.973292887210846,0.124696351587772,0.0287098288536072,0.991779446601868,0.0818490907549858,0.206332668662071,0.975052535533905,0.0375596582889557,-0.0231424029916525,0.999026358127594,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.106130473315716,-0.00179772975388914,0.994350552558899,-0.20721822977066,-0.149217173457146,0.966847836971283,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.369893908500671,-0.112040020525455,0.922293543815613,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.20721822977066,-0.149217173457146,0.966847836971283,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.737063944339752,-0.0735678821802139,0.671806871891022,\r\n-0.652038395404816,-0.0638953074812889,0.755488693714142,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.737063944339752,-0.0735678821802139,0.671806871891022,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.791254043579102,-0.240793749690056,0.562081217765808,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.511537253856659,-0.228545039892197,0.828309535980225,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.796772658824921,0.1327755600214,0.589511394500732,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.775766253471375,0.329986482858658,0.537861943244934,-0.705471813678741,0.249749213457108,0.663275718688965,-0.793591320514679,0.19418129324913,0.57663357257843,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.793591320514679,0.19418129324913,0.57663357257843,-0.796772658824921,0.1327755600214,0.589511394500732,-0.810319662094116,0.346996903419495,0.472202301025391,-0.705471813678741,0.249749213457108,0.663275718688965,-0.775766253471375,0.329986482858658,0.537861943244934,-0.737279295921326,0.499063402414322,0.455362290143967,-0.529488325119019,0.332409024238586,0.780478179454803,-0.810319662094116,0.346996903419495,0.472202301025391,-0.421322762966156,0.516362547874451,0.745557963848114,0.00105744879692793,0.451491415500641,0.892274737358093,-0.327570140361786,0.465397536754608,0.822254717350006,-0.421322762966156,0.516362547874451,0.745557963848114,-0.327570140361786,0.465397536754608,0.822254717350006,-0.737279295921326,0.499063402414322,0.455362290143967,-0.00619745999574661,0.37236088514328,0.928067147731781,0.144554018974304,0.319296479225159,0.936564862728119,0.222225874662399,0.35578066110611,0.907764136791229,-0.00619745999574661,0.37236088514328,0.928067147731781,0.00105744879692793,0.451491415500641,0.892274737358093,\r\n-0.421322762966156,0.516362547874451,0.745557963848114,0.169040203094482,0.155326336622238,0.973292887210846,0.0818490907549858,0.206332668662071,0.975052535533905,0.0398642681539059,0.300693362951279,0.952887296676636,-0.00619745999574661,0.37236088514328,0.928067147731781,0.0398642681539059,0.300693362951279,0.952887296676636,0.144554018974304,0.319296479225159,0.936564862728119,0.119083918631077,-0.0739057511091232,0.990129709243774,0.0375596582889557,-0.0231424029916525,0.999026358127594,0.124696351587772,0.0287098288536072,0.991779446601868,0.169040203094482,0.155326336622238,0.973292887210846,0.269744843244553,0.0379557199776173,0.96218341588974,0.124696351587772,0.0287098288536072,0.991779446601868,0.119083918631077,-0.0739057511091232,0.990129709243774,-0.019493293017149,-0.126048877835274,0.991832435131073,0.0375596582889557,-0.0231424029916525,0.999026358127594,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.189223185181618,-0.186048477888107,0.964147508144379,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.019493293017149,-0.126048877835274,0.991832435131073,0.0219513513147831,-0.187619835138321,0.981996357440948,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.429535955190659,-0.139939904212952,0.892140984535217,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.539721667766571,-0.097270093858242,0.836205065250397,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.6630899310112,-0.125742182135582,0.737902760505676,\r\n-0.657468378543854,-0.380891978740692,0.650120437145233,-0.776937425136566,-0.139912456274033,0.613834321498871,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.673218607902527,-0.304341197013855,0.673908710479736,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.775766253471375,0.329986482858658,0.537861943244934,-0.793591320514679,0.19418129324913,0.57663357257843,-0.781157910823822,0.258900880813599,0.56812185049057,-0.793591320514679,0.19418129324913,0.57663357257843,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.810243606567383,0.111291743814945,0.575429737567902,-0.810319662094116,0.346996903419495,0.472202301025391,-0.775766253471375,0.329986482858658,0.537861943244934,-0.786263823509216,0.434414744377136,0.439400613307953,-0.786263823509216,0.434414744377136,0.439400613307953,-0.737279295921326,0.499063402414322,0.455362290143967,-0.810319662094116,0.346996903419495,0.472202301025391,-0.629855632781982,0.581296145915985,0.515147030353546,-0.421322762966156,0.516362547874451,0.745557963848114,-0.737279295921326,0.499063402414322,0.455362290143967,-0.284408807754517,0.460590809583664,0.84081369638443,-0.00619745999574661,0.37236088514328,0.928067147731781,-0.421322762966156,0.516362547874451,0.745557963848114,0.101366989314556,0.307748824357986,0.946052491664886,0.169040203094482,0.155326336622238,0.973292887210846,0.0398642681539059,0.300693362951279,0.952887296676636,-0.00619745999574661,0.37236088514328,0.928067147731781,-0.284408807754517,0.460590809583664,0.84081369638443,0.0398642681539059,0.300693362951279,0.952887296676636,0.124696351587772,0.0287098288536072,0.991779446601868,0.241990029811859,-0.102335780858994,0.964866876602173,0.119083918631077,-0.0739057511091232,0.990129709243774,0.169040203094482,0.155326336622238,0.973292887210846,0.215157672762871,0.20783819258213,0.954206705093384,\r\n0.269744843244553,0.0379557199776173,0.96218341588974,0.124696351587772,0.0287098288536072,0.991779446601868,0.269744843244553,0.0379557199776173,0.96218341588974,0.241990029811859,-0.102335780858994,0.964866876602173,0.13447168469429,-0.181898981332779,0.974079072475433,-0.019493293017149,-0.126048877835274,0.991832435131073,0.119083918631077,-0.0739057511091232,0.990129709243774,-0.105382353067398,-0.158963710069656,0.981644034385681,-0.0754650682210922,-0.216229453682899,0.973421633243561,-0.189223185181618,-0.186048477888107,0.964147508144379,-0.267993211746216,-0.147157415747643,0.952115535736084,-0.189223185181618,-0.186048477888107,0.964147508144379,-0.312478959560394,-0.13835683465004,0.939794719219208,0.13447168469429,-0.181898981332779,0.974079072475433,0.0219513513147831,-0.187619835138321,0.981996357440948,-0.019493293017149,-0.126048877835274,0.991832435131073,-0.105382353067398,-0.158963710069656,0.981644034385681,0.0219513513147831,-0.187619835138321,0.981996357440948,-0.0754650682210922,-0.216229453682899,0.973421633243561,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.47234570980072,-0.101257182657719,0.875577747821808,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.6630899310112,-0.125742182135582,0.737902760505676,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.641543745994568,-0.283227950334549,0.712883830070496,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.657468378543854,-0.380891978740692,0.650120437145233,\r\n-0.673218607902527,-0.304341197013855,0.673908710479736,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.73626446723938,-0.0511607863008976,0.67475700378418,-0.673218607902527,-0.304341197013855,0.673908710479736,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.793591320514679,0.19418129324913,0.57663357257843,-0.810243606567383,0.111291743814945,0.575429737567902,-0.781157910823822,0.258900880813599,0.56812185049057,-0.752257943153381,0.393467456102371,0.528480112552643,-0.775766253471375,0.329986482858658,0.537861943244934,-0.781157910823822,0.258900880813599,0.56812185049057,-0.810243606567383,0.111291743814945,0.575429737567902,-0.790399849414825,0.0745906084775925,0.608033061027527,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.694475829601288,0.440881431102753,0.56861823797226,-0.786263823509216,0.434414744377136,0.439400613307953,-0.775766253471375,0.329986482858658,0.537861943244934,-0.786263823509216,0.434414744377136,0.439400613307953,-0.710740208625793,0.538954377174377,0.452080011367798,-0.737279295921326,0.499063402414322,0.455362290143967,-0.284408807754517,0.460590809583664,0.84081369638443,-0.421322762966156,0.516362547874451,0.745557963848114,-0.629855632781982,0.581296145915985,0.515147030353546,-0.629855632781982,0.581296145915985,0.515147030353546,-0.737279295921326,0.499063402414322,0.455362290143967,-0.695606708526611,0.613502383232117,0.373826146125793,0.169040203094482,0.155326336622238,0.973292887210846,0.101366989314556,0.307748824357986,0.946052491664886,0.215157672762871,0.20783819258213,0.954206705093384,-0.102126315236092,0.454168409109116,0.885043084621429,0.101366989314556,0.307748824357986,0.946052491664886,0.0398642681539059,0.300693362951279,0.952887296676636,-0.102126315236092,0.454168409109116,0.885043084621429,0.0398642681539059,0.300693362951279,0.952887296676636,\r\n-0.284408807754517,0.460590809583664,0.84081369638443,0.119083918631077,-0.0739057511091232,0.990129709243774,0.241990029811859,-0.102335780858994,0.964866876602173,0.13447168469429,-0.181898981332779,0.974079072475433,0.215157672762871,0.20783819258213,0.954206705093384,0.25754576921463,0.177567407488823,0.949810326099396,0.269744843244553,0.0379557199776173,0.96218341588974,0.324032008647919,-0.0440292023122311,0.945020973682404,0.241990029811859,-0.102335780858994,0.964866876602173,0.269744843244553,0.0379557199776173,0.96218341588974,-0.189223185181618,-0.186048477888107,0.964147508144379,-0.0754650682210922,-0.216229453682899,0.973421633243561,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.189223185181618,-0.186048477888107,0.964147508144379,0.0219513513147831,-0.187619835138321,0.981996357440948,0.13447168469429,-0.181898981332779,0.974079072475433,0.097467765212059,-0.245669409632683,0.964441001415253,-0.0754650682210922,-0.216229453682899,0.973421633243561,0.0219513513147831,-0.187619835138321,0.981996357440948,0.097467765212059,-0.245669409632683,0.964441001415253,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.213286489248276,-0.0933218449354172,0.972522377967834,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.552315831184387,-0.116374276578426,0.825472056865692,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.641543745994568,-0.283227950334549,0.712883830070496,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.697158455848694,-0.209907874464989,0.685498833656311,-0.641543745994568,-0.283227950334549,0.712883830070496,\r\n-0.394611328840256,-0.358055353164673,0.846214056015015,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.657468378543854,-0.380891978740692,0.650120437145233,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.673218607902527,-0.304341197013855,0.673908710479736,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.673218607902527,-0.304341197013855,0.673908710479736,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.810243606567383,0.111291743814945,0.575429737567902,-0.806196808815002,0.249289333820343,0.536564409732819,-0.781157910823822,0.258900880813599,0.56812185049057,-0.694475829601288,0.440881431102753,0.56861823797226,-0.775766253471375,0.329986482858658,0.537861943244934,-0.752257943153381,0.393467456102371,0.528480112552643,-0.752257943153381,0.393467456102371,0.528480112552643,-0.781157910823822,0.258900880813599,0.56812185049057,-0.806196808815002,0.249289333820343,0.536564409732819,-0.810243606567383,0.111291743814945,0.575429737567902,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.694475829601288,0.440881431102753,0.56861823797226,-0.710740208625793,0.538954377174377,0.452080011367798,-0.786263823509216,0.434414744377136,0.439400613307953,-0.710740208625793,0.538954377174377,0.452080011367798,-0.695606708526611,0.613502383232117,0.373826146125793,-0.737279295921326,0.499063402414322,0.455362290143967,-0.450719952583313,0.633539736270905,0.628871023654938,-0.284408807754517,0.460590809583664,0.84081369638443,-0.629855632781982,0.581296145915985,0.515147030353546,-0.695606708526611,0.613502383232117,0.373826146125793,\r\n-0.652040481567383,0.659188985824585,0.374583691358566,-0.629855632781982,0.581296145915985,0.515147030353546,-0.00611633760854602,0.431445360183716,0.902118265628815,0.215157672762871,0.20783819258213,0.954206705093384,0.101366989314556,0.307748824357986,0.946052491664886,-0.102126315236092,0.454168409109116,0.885043084621429,-0.131994813680649,0.528706967830658,0.838478446006775,0.101366989314556,0.307748824357986,0.946052491664886,-0.450719952583313,0.633539736270905,0.628871023654938,-0.102126315236092,0.454168409109116,0.885043084621429,-0.284408807754517,0.460590809583664,0.84081369638443,0.276560455560684,-0.224262520670891,0.93446272611618,0.13447168469429,-0.181898981332779,0.974079072475433,0.241990029811859,-0.102335780858994,0.964866876602173,0.0890409275889397,0.350285410881042,0.932401061058044,0.25754576921463,0.177567407488823,0.949810326099396,0.215157672762871,0.20783819258213,0.954206705093384,0.324032008647919,-0.0440292023122311,0.945020973682404,0.269744843244553,0.0379557199776173,0.96218341588974,0.25754576921463,0.177567407488823,0.949810326099396,0.345960080623627,-0.153627172112465,0.925586402416229,0.241990029811859,-0.102335780858994,0.964866876602173,0.324032008647919,-0.0440292023122311,0.945020973682404,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.0754650682210922,-0.216229453682899,0.973421633243561,-0.00671576242893934,-0.215617939829826,0.976454675197601,-0.312478959560394,-0.13835683465004,0.939794719219208,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.213286489248276,-0.0933218449354172,0.972522377967834,0.097467765212059,-0.245669409632683,0.964441001415253,0.13447168469429,-0.181898981332779,0.974079072475433,0.276560455560684,-0.224262520670891,0.93446272611618,-0.0224604625254869,-0.26274386048317,0.964604079723358,-0.0754650682210922,-0.216229453682899,0.973421633243561,0.097467765212059,-0.245669409632683,0.964441001415253,-0.213286489248276,-0.0933218449354172,0.972522377967834,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.361204236745834,-0.101794086396694,0.926913857460022,\r\n-0.361204236745834,-0.101794086396694,0.926913857460022,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.53921914100647,-0.224370002746582,0.811726987361908,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.606621086597443,-0.252755433320999,0.753740906715393,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.641543745994568,-0.283227950334549,0.712883830070496,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.452228933572769,-0.559684455394745,0.694436550140381,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.765105664730072,-0.0868626981973648,0.638018906116486,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.795577168464661,-0.00257485546171665,0.605846643447876,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.810243606567383,0.111291743814945,0.575429737567902,-0.809087634086609,0.0589048154652119,0.584728479385376,-0.806196808815002,0.249289333820343,0.536564409732819,-0.656515955924988,0.513158440589905,0.552860915660858,-0.694475829601288,0.440881431102753,0.56861823797226,-0.752257943153381,0.393467456102371,0.528480112552643,-0.722746670246124,0.42024153470993,0.548665642738342,-0.752257943153381,0.393467456102371,0.528480112552643,-0.806196808815002,0.249289333820343,0.536564409732819,-0.813344120979309,-0.105015233159065,0.572226464748383,\r\n-0.809087634086609,0.0589048154652119,0.584728479385376,-0.810243606567383,0.111291743814945,0.575429737567902,-0.710740208625793,0.538954377174377,0.452080011367798,-0.694475829601288,0.440881431102753,0.56861823797226,-0.599746942520142,0.533644497394562,0.596260845661163,-0.710740208625793,0.538954377174377,0.452080011367798,-0.60805469751358,0.605964362621307,0.512909829616547,-0.695606708526611,0.613502383232117,0.373826146125793,-0.450719952583313,0.633539736270905,0.628871023654938,-0.629855632781982,0.581296145915985,0.515147030353546,-0.652040481567383,0.659188985824585,0.374583691358566,-0.652040481567383,0.659188985824585,0.374583691358566,-0.695606708526611,0.613502383232117,0.373826146125793,-0.594041466712952,0.67406153678894,0.439039409160614,-0.00611633760854602,0.431445360183716,0.902118265628815,0.0890409275889397,0.350285410881042,0.932401061058044,0.215157672762871,0.20783819258213,0.954206705093384,-0.00611633760854602,0.431445360183716,0.902118265628815,0.101366989314556,0.307748824357986,0.946052491664886,-0.131994813680649,0.528706967830658,0.838478446006775,-0.102126315236092,0.454168409109116,0.885043084621429,-0.450719952583313,0.633539736270905,0.628871023654938,-0.131994813680649,0.528706967830658,0.838478446006775,0.241990029811859,-0.102335780858994,0.964866876602173,0.345960080623627,-0.153627172112465,0.925586402416229,0.276560455560684,-0.224262520670891,0.93446272611618,-0.0373099334537983,0.529941618442535,0.847212851047516,0.25754576921463,0.177567407488823,0.949810326099396,0.0890409275889397,0.350285410881042,0.932401061058044,0.324032008647919,-0.0440292023122311,0.945020973682404,0.25754576921463,0.177567407488823,0.949810326099396,0.325155913829803,0.0189409237354994,0.945470631122589,0.324032008647919,-0.0440292023122311,0.945020973682404,0.325155913829803,0.0189409237354994,0.945470631122589,0.345960080623627,-0.153627172112465,0.925586402416229,-0.0224604625254869,-0.26274386048317,0.964604079723358,-0.00671576242893934,-0.215617939829826,0.976454675197601,-0.0754650682210922,-0.216229453682899,0.973421633243561,\r\n-0.179938271641731,-0.195095598697662,0.964136838912964,-0.00671576242893934,-0.215617939829826,0.976454675197601,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.179938271641731,-0.195095598697662,0.964136838912964,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.213286489248276,-0.0933218449354172,0.972522377967834,0.263909906148911,-0.301178723573685,0.916320264339447,0.097467765212059,-0.245669409632683,0.964441001415253,0.276560455560684,-0.224262520670891,0.93446272611618,0.097467765212059,-0.245669409632683,0.964441001415253,0.114189513027668,-0.282916963100433,0.952322721481323,-0.0224604625254869,-0.26274386048317,0.964604079723358,-0.213286489248276,-0.0933218449354172,0.972522377967834,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.361204236745834,-0.101794086396694,0.926913857460022,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.408538341522217,-0.245138049125671,0.879206299781799,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.477441400289536,-0.3483527302742,0.806659817695618,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.473286420106888,-0.462700933218002,0.749605000019073,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.669870674610138,-0.456257253885269,0.585749447345734,\r\n-0.587612748146057,-0.680154800415039,0.438292741775513,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.669870674610138,-0.456257253885269,0.585749447345734,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.809087634086609,0.0589048154652119,0.584728479385376,-0.685100853443146,0.231854453682899,0.69056510925293,-0.806196808815002,0.249289333820343,0.536564409732819,-0.599746942520142,0.533644497394562,0.596260845661163,-0.694475829601288,0.440881431102753,0.56861823797226,-0.656515955924988,0.513158440589905,0.552860915660858,-0.656515955924988,0.513158440589905,0.552860915660858,-0.752257943153381,0.393467456102371,0.528480112552643,-0.708158433437347,0.544266581535339,0.449761569499969,-0.722746670246124,0.42024153470993,0.548665642738342,-0.708158433437347,0.544266581535339,0.449761569499969,-0.752257943153381,0.393467456102371,0.528480112552643,-0.722746670246124,0.42024153470993,0.548665642738342,-0.806196808815002,0.249289333820343,0.536564409732819,-0.685100853443146,0.231854453682899,0.69056510925293,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.809087634086609,0.0589048154652119,0.584728479385376,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.710740208625793,0.538954377174377,0.452080011367798,-0.599746942520142,0.533644497394562,0.596260845661163,-0.60805469751358,0.605964362621307,0.512909829616547,-0.594041466712952,0.67406153678894,0.439039409160614,-0.695606708526611,0.613502383232117,0.373826146125793,-0.60805469751358,0.605964362621307,0.512909829616547,-0.450719952583313,0.633539736270905,0.628871023654938,-0.652040481567383,0.659188985824585,0.374583691358566,-0.586949408054352,0.715733051300049,0.378439426422119,-0.652040481567383,0.659188985824585,0.374583691358566,-0.594041466712952,0.67406153678894,0.439039409160614,-0.563925087451935,0.730785250663757,0.384631305932999,\r\n-0.00611633760854602,0.431445360183716,0.902118265628815,-0.189750388264656,0.570288181304932,0.799228310585022,0.0890409275889397,0.350285410881042,0.932401061058044,-0.00611633760854602,0.431445360183716,0.902118265628815,-0.131994813680649,0.528706967830658,0.838478446006775,-0.375306457281113,0.650558054447174,0.660241663455963,-0.375306457281113,0.650558054447174,0.660241663455963,-0.131994813680649,0.528706967830658,0.838478446006775,-0.450719952583313,0.633539736270905,0.628871023654938,0.276560455560684,-0.224262520670891,0.93446272611618,0.345960080623627,-0.153627172112465,0.925586402416229,0.390716791152954,-0.223422572016716,0.892985224723816,0.135088846087456,0.393550544977188,0.909323275089264,0.25754576921463,0.177567407488823,0.949810326099396,-0.0373099334537983,0.529941618442535,0.847212851047516,-0.0373099334537983,0.529941618442535,0.847212851047516,0.0890409275889397,0.350285410881042,0.932401061058044,-0.189750388264656,0.570288181304932,0.799228310585022,0.135088846087456,0.393550544977188,0.909323275089264,0.325155913829803,0.0189409237354994,0.945470631122589,0.25754576921463,0.177567407488823,0.949810326099396,0.345960080623627,-0.153627172112465,0.925586402416229,0.325155913829803,0.0189409237354994,0.945470631122589,0.352488189935684,-0.0914708077907562,0.931335091590881,-0.0224604625254869,-0.26274386048317,0.964604079723358,0.114189513027668,-0.282916963100433,0.952322721481323,-0.00671576242893934,-0.215617939829826,0.976454675197601,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.00671576242893934,-0.215617939829826,0.976454675197601,0.0314075648784637,-0.0777726843953133,0.996476233005524,0.263909906148911,-0.301178723573685,0.916320264339447,0.114189513027668,-0.282916963100433,0.952322721481323,0.097467765212059,-0.245669409632683,0.964441001415253,0.276560455560684,-0.224262520670891,0.93446272611618,0.397892862558365,-0.268749415874481,0.877185761928558,0.263909906148911,-0.301178723573685,0.916320264339447,-0.0976392030715942,-0.127415031194687,0.987031877040863,-0.0660252124071121,-0.0564356781542301,0.996220648288727,\r\n-0.198228061199188,-0.10276210308075,0.974754095077515,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.300045013427734,-0.224285453557968,0.927183330059052,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.473286420106888,-0.462700933218002,0.749605000019073,-0.529405832290649,-0.386903166770935,0.755006730556488,-0.56592321395874,-0.430073410272598,0.703397274017334,-0.473286420106888,-0.462700933218002,0.749605000019073,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.394611328840256,-0.358055353164673,0.846214056015015,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.778539299964905,-0.255279809236526,0.573331236839294,-0.245746552944183,-0.941833317279816,0.22925665974617,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.685100853443146,0.231854453682899,0.69056510925293,-0.809087634086609,0.0589048154652119,0.584728479385376,\r\n-0.545836865901947,0.590200006961823,0.594748556613922,-0.599746942520142,0.533644497394562,0.596260845661163,-0.656515955924988,0.513158440589905,0.552860915660858,-0.708158433437347,0.544266581535339,0.449761569499969,-0.624029755592346,0.640156924724579,0.448091298341751,-0.656515955924988,0.513158440589905,0.552860915660858,-0.722746670246124,0.42024153470993,0.548665642738342,-0.63034451007843,0.541417717933655,0.556356430053711,-0.708158433437347,0.544266581535339,0.449761569499969,-0.722746670246124,0.42024153470993,0.548665642738342,-0.685100853443146,0.231854453682899,0.69056510925293,-0.579710364341736,0.412778288125992,0.702531099319458,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.809087634086609,0.0589048154652119,0.584728479385376,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.813344120979309,-0.105015233159065,0.572226464748383,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.508990883827209,0.627527236938477,0.589183866977692,-0.60805469751358,0.605964362621307,0.512909829616547,-0.599746942520142,0.533644497394562,0.596260845661163,-0.508990883827209,0.627527236938477,0.589183866977692,-0.594041466712952,0.67406153678894,0.439039409160614,-0.60805469751358,0.605964362621307,0.512909829616547,-0.586949408054352,0.715733051300049,0.378439426422119,-0.652040481567383,0.659188985824585,0.374583691358566,-0.563925087451935,0.730785250663757,0.384631305932999,-0.450719952583313,0.633539736270905,0.628871023654938,-0.586949408054352,0.715733051300049,0.378439426422119,-0.375306457281113,0.650558054447174,0.660241663455963,-0.563925087451935,0.730785250663757,0.384631305932999,-0.594041466712952,0.67406153678894,0.439039409160614,-0.43961900472641,0.71623420715332,0.541981220245361,-0.189750388264656,0.570288181304932,0.799228310585022,-0.00611633760854602,0.431445360183716,0.902118265628815,-0.375306457281113,0.650558054447174,0.660241663455963,0.345960080623627,-0.153627172112465,0.925586402416229,0.380151271820068,-0.184472814202309,0.906341254711151,\r\n0.390716791152954,-0.223422572016716,0.892985224723816,0.390716791152954,-0.223422572016716,0.892985224723816,0.397892862558365,-0.268749415874481,0.877185761928558,0.276560455560684,-0.224262520670891,0.93446272611618,-0.0373099334537983,0.529941618442535,0.847212851047516,-0.194314926862717,0.703900992870331,0.683201968669891,0.135088846087456,0.393550544977188,0.909323275089264,-0.0373099334537983,0.529941618442535,0.847212851047516,-0.189750388264656,0.570288181304932,0.799228310585022,-0.418818205595016,0.73913836479187,0.527509033679962,0.231636002659798,0.184967756271362,0.955055773258209,0.325155913829803,0.0189409237354994,0.945470631122589,0.135088846087456,0.393550544977188,0.909323275089264,0.231636002659798,0.184967756271362,0.955055773258209,0.352488189935684,-0.0914708077907562,0.931335091590881,0.325155913829803,0.0189409237354994,0.945470631122589,0.345960080623627,-0.153627172112465,0.925586402416229,0.352488189935684,-0.0914708077907562,0.931335091590881,0.380151271820068,-0.184472814202309,0.906341254711151,0.114189513027668,-0.282916963100433,0.952322721481323,0.178814366459847,-0.240504547953606,0.954035043716431,-0.00671576242893934,-0.215617939829826,0.976454675197601,0.0314075648784637,-0.0777726843953133,0.996476233005524,-0.00671576242893934,-0.215617939829826,0.976454675197601,0.141379252076149,-0.111214518547058,0.983688533306122,-0.0976392030715942,-0.127415031194687,0.987031877040863,0.0314075648784637,-0.0777726843953133,0.996476233005524,-0.0660252124071121,-0.0564356781542301,0.996220648288727,0.114189513027668,-0.282916963100433,0.952322721481323,0.263909906148911,-0.301178723573685,0.916320264339447,0.178814366459847,-0.240504547953606,0.954035043716431,0.263909906148911,-0.301178723573685,0.916320264339447,0.397892862558365,-0.268749415874481,0.877185761928558,0.314726442098618,-0.258485496044159,0.913308501243591,-0.0470021888613701,-0.0898429080843925,0.994846165180206,-0.198228061199188,-0.10276210308075,0.974754095077515,-0.0660252124071121,-0.0564356781542301,0.996220648288727,\r\n-0.198228061199188,-0.10276210308075,0.974754095077515,-0.0470021888613701,-0.0898429080843925,0.994846165180206,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.268775105476379,-0.327284336090088,0.90589451789856,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.473286420106888,-0.462700933218002,0.749605000019073,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.318495690822601,-0.588527739048004,0.743098616600037,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.0555759146809578,-0.541666805744171,0.838753998279572,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.587612748146057,-0.680154800415039,0.438292741775513,-0.245746552944183,-0.941833317279816,0.22925665974617,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.685100853443146,0.231854453682899,0.69056510925293,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.545836865901947,0.590200006961823,0.594748556613922,\r\n-0.508990883827209,0.627527236938477,0.589183866977692,-0.599746942520142,0.533644497394562,0.596260845661163,-0.545836865901947,0.590200006961823,0.594748556613922,-0.656515955924988,0.513158440589905,0.552860915660858,-0.624029755592346,0.640156924724579,0.448091298341751,-0.708158433437347,0.544266581535339,0.449761569499969,-0.612928032875061,0.654981434345245,0.441948533058167,-0.624029755592346,0.640156924724579,0.448091298341751,-0.722746670246124,0.42024153470993,0.548665642738342,-0.579710364341736,0.412778288125992,0.702531099319458,-0.63034451007843,0.541417717933655,0.556356430053711,-0.708158433437347,0.544266581535339,0.449761569499969,-0.63034451007843,0.541417717933655,0.556356430053711,-0.612928032875061,0.654981434345245,0.441948533058167,-0.518901586532593,0.255862206220627,0.815644204616547,-0.579710364341736,0.412778288125992,0.702531099319458,-0.685100853443146,0.231854453682899,0.69056510925293,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.508990883827209,0.627527236938477,0.589183866977692,-0.43961900472641,0.71623420715332,0.541981220245361,-0.594041466712952,0.67406153678894,0.439039409160614,-0.586949408054352,0.715733051300049,0.378439426422119,-0.563925087451935,0.730785250663757,0.384631305932999,-0.499369263648987,0.799538552761078,0.333718836307526,-0.375306457281113,0.650558054447174,0.660241663455963,-0.586949408054352,0.715733051300049,0.378439426422119,-0.418818205595016,0.73913836479187,0.527509033679962,-0.40128892660141,0.817748129367828,0.412619769573212,-0.563925087451935,0.730785250663757,0.384631305932999,-0.43961900472641,0.71623420715332,0.541981220245361,-0.189750388264656,0.570288181304932,0.799228310585022,-0.375306457281113,0.650558054447174,0.660241663455963,-0.418818205595016,0.73913836479187,0.527509033679962,\r\n0.390716791152954,-0.223422572016716,0.892985224723816,0.380151271820068,-0.184472814202309,0.906341254711151,0.409927040338516,-0.185765042901039,0.893001139163971,0.390716791152954,-0.223422572016716,0.892985224723816,0.464754343032837,-0.227592840790749,0.855689644813538,0.397892862558365,-0.268749415874481,0.877185761928558,-0.0373099334537983,0.529941618442535,0.847212851047516,-0.418818205595016,0.73913836479187,0.527509033679962,-0.194314926862717,0.703900992870331,0.683201968669891,-0.102668851613998,0.632838129997253,0.767447054386139,0.135088846087456,0.393550544977188,0.909323275089264,-0.194314926862717,0.703900992870331,0.683201968669891,0.231636002659798,0.184967756271362,0.955055773258209,0.135088846087456,0.393550544977188,0.909323275089264,-0.102668851613998,0.632838129997253,0.767447054386139,0.295208811759949,-0.0315925404429436,0.954910278320313,0.352488189935684,-0.0914708077907562,0.931335091590881,0.231636002659798,0.184967756271362,0.955055773258209,0.352488189935684,-0.0914708077907562,0.931335091590881,0.350361555814743,-0.173207238316536,0.920459628105164,0.380151271820068,-0.184472814202309,0.906341254711151,0.178814366459847,-0.240504547953606,0.954035043716431,0.141379252076149,-0.111214518547058,0.983688533306122,-0.00671576242893934,-0.215617939829826,0.976454675197601,0.141379252076149,-0.111214518547058,0.983688533306122,0.110032014548779,-0.0681025236845016,0.991592109203339,0.0314075648784637,-0.0777726843953133,0.996476233005524,0.0314075648784637,-0.0777726843953133,0.996476233005524,0.0031071852426976,-0.0528655238449574,0.998596787452698,-0.0660252124071121,-0.0564356781542301,0.996220648288727,0.263909906148911,-0.301178723573685,0.916320264339447,0.314726442098618,-0.258485496044159,0.913308501243591,0.178814366459847,-0.240504547953606,0.954035043716431,0.397892862558365,-0.268749415874481,0.877185761928558,0.431777000427246,-0.190016314387321,0.881738245487213,0.314726442098618,-0.258485496044159,0.913308501243591,-0.0470021888613701,-0.0898429080843925,0.994846165180206,\r\n-0.0660252124071121,-0.0564356781542301,0.996220648288727,0.0031071852426976,-0.0528655238449574,0.998596787452698,-0.148019000887871,-0.202228307723999,0.968087792396545,-0.0470021888613701,-0.0898429080843925,0.994846165180206,0.0666878148913383,-0.180006667971611,0.981402158737183,-0.148019000887871,-0.202228307723999,0.968087792396545,0.0666878148913383,-0.180006667971611,0.981402158737183,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.460606157779694,-0.383755743503571,0.800358295440674,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.46800422668457,-0.449166148900986,0.761066138744354,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.400810897350311,-0.358039557933807,0.843301951885223,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.284940034151077,-0.332196474075317,0.899141013622284,-0.102661363780499,-0.223194599151611,0.969352722167969,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.0555759146809578,-0.541666805744171,0.838753998279572,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.0387369655072689,-0.5057612657547,0.861803293228149,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.695576131343842,-0.481532782316208,0.53319776058197,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.380785286426544,-0.865480899810791,0.325492233037949,\r\n-0.245746552944183,-0.941833317279816,0.22925665974617,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.739045262336731,-0.329217821359634,0.587730884552002,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.518901586532593,0.255862206220627,0.815644204616547,-0.685100853443146,0.231854453682899,0.69056510925293,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.571340978145599,-0.0719692930579185,0.817551076412201,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.545836865901947,0.590200006961823,0.594748556613922,-0.48935878276825,0.674024939537048,0.553369879722595,-0.508990883827209,0.627527236938477,0.589183866977692,-0.624029755592346,0.640156924724579,0.448091298341751,-0.48935878276825,0.674024939537048,0.553369879722595,-0.545836865901947,0.590200006961823,0.594748556613922,-0.624029755592346,0.640156924724579,0.448091298341751,-0.612928032875061,0.654981434345245,0.441948533058167,-0.578180074691772,0.709997951984406,0.402008295059204,-0.579710364341736,0.412778288125992,0.702531099319458,-0.533217370510101,0.548888266086578,0.643739640712738,-0.63034451007843,0.541417717933655,0.556356430053711,-0.63034451007843,0.541417717933655,0.556356430053711,-0.533217370510101,0.548888266086578,0.643739640712738,-0.612928032875061,0.654981434345245,0.441948533058167,-0.579710364341736,0.412778288125992,0.702531099319458,-0.518901586532593,0.255862206220627,0.815644204616547,-0.44504451751709,0.406295776367188,0.798034429550171,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.773645162582397,-0.153492450714111,0.614746332168579,-0.706309199333191,0.00598905375227332,0.707877993583679,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.571340978145599,-0.0719692930579185,0.817551076412201,-0.508990883827209,0.627527236938477,0.589183866977692,-0.48935878276825,0.674024939537048,0.553369879722595,-0.43961900472641,0.71623420715332,0.541981220245361,-0.40128892660141,0.817748129367828,0.412619769573212,\r\n-0.499369263648987,0.799538552761078,0.333718836307526,-0.563925087451935,0.730785250663757,0.384631305932999,-0.418818205595016,0.73913836479187,0.527509033679962,-0.586949408054352,0.715733051300049,0.378439426422119,-0.499369263648987,0.799538552761078,0.333718836307526,-0.40128892660141,0.817748129367828,0.412619769573212,-0.43961900472641,0.71623420715332,0.541981220245361,-0.335538506507874,0.818264484405518,0.466751664876938,0.340772986412048,-0.174140959978104,0.923876941204071,0.409927040338516,-0.185765042901039,0.893001139163971,0.380151271820068,-0.184472814202309,0.906341254711151,0.409927040338516,-0.185765042901039,0.893001139163971,0.464754343032837,-0.227592840790749,0.855689644813538,0.390716791152954,-0.223422572016716,0.892985224723816,0.397892862558365,-0.268749415874481,0.877185761928558,0.464754343032837,-0.227592840790749,0.855689644813538,0.505820453166962,-0.214274987578392,0.835602641105652,-0.194314926862717,0.703900992870331,0.683201968669891,-0.418818205595016,0.73913836479187,0.527509033679962,-0.383407801389694,0.815798938274384,0.432978540658951,-0.102668851613998,0.632838129997253,0.767447054386139,-0.194314926862717,0.703900992870331,0.683201968669891,-0.383407801389694,0.815798938274384,0.432978540658951,0.0641973614692688,0.390269637107849,0.91845965385437,0.231636002659798,0.184967756271362,0.955055773258209,-0.102668851613998,0.632838129997253,0.767447054386139,0.295208811759949,-0.0315925404429436,0.954910278320313,0.350361555814743,-0.173207238316536,0.920459628105164,0.352488189935684,-0.0914708077907562,0.931335091590881,0.0641973614692688,0.390269637107849,0.91845965385437,0.295208811759949,-0.0315925404429436,0.954910278320313,0.231636002659798,0.184967756271362,0.955055773258209,0.380151271820068,-0.184472814202309,0.906341254711151,0.350361555814743,-0.173207238316536,0.920459628105164,0.340772986412048,-0.174140959978104,0.923876941204071,0.276325702667236,-0.135071247816086,0.951524972915649,0.141379252076149,-0.111214518547058,0.983688533306122,0.178814366459847,-0.240504547953606,0.954035043716431,\r\n0.141379252076149,-0.111214518547058,0.983688533306122,0.229912921786308,-0.099325992166996,0.968129277229309,0.110032014548779,-0.0681025236845016,0.991592109203339,0.0314075648784637,-0.0777726843953133,0.996476233005524,0.110032014548779,-0.0681025236845016,0.991592109203339,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.314726442098618,-0.258485496044159,0.913308501243591,0.276325702667236,-0.135071247816086,0.951524972915649,0.178814366459847,-0.240504547953606,0.954035043716431,0.397892862558365,-0.268749415874481,0.877185761928558,0.505820453166962,-0.214274987578392,0.835602641105652,0.431777000427246,-0.190016314387321,0.881738245487213,0.314726442098618,-0.258485496044159,0.913308501243591,0.431777000427246,-0.190016314387321,0.881738245487213,0.276325702667236,-0.135071247816086,0.951524972915649,-0.0470021888613701,-0.0898429080843925,0.994846165180206,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.0443808920681477,-0.112643696367741,0.992643773555756,0.0666878148913383,-0.180006667971611,0.981402158737183,-0.0470021888613701,-0.0898429080843925,0.994846165180206,0.0443808920681477,-0.112643696367741,0.992643773555756,-0.102661363780499,-0.223194599151611,0.969352722167969,0.0666878148913383,-0.180006667971611,0.981402158737183,-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.217655703425407,-0.560177028179169,0.799266874790192,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.144463822245598,-0.181960836052895,0.972635746002197,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.102661363780499,-0.223194599151611,0.969352722167969,\r\n-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.141512960195541,-0.0688803046941757,0.987537086009979,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.431128740310669,-0.390964508056641,0.813187956809998,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.0387369655072689,-0.5057612657547,0.861803293228149,-0.273612946271896,-0.483155876398087,0.831682741641998,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.0555759146809578,-0.541666805744171,0.838753998279572,-0.0387369655072689,-0.5057612657547,0.861803293228149,0.033658504486084,-0.549572587013245,0.834767580032349,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.380785286426544,-0.865480899810791,0.325492233037949,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.559828639030457,0.140318632125854,0.816640913486481,-0.518901586532593,0.255862206220627,0.815644204616547,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.571340978145599,-0.0719692930579185,0.817551076412201,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.624029755592346,0.640156924724579,0.448091298341751,-0.578180074691772,0.709997951984406,0.402008295059204,-0.48935878276825,0.674024939537048,0.553369879722595,-0.578180074691772,0.709997951984406,0.402008295059204,-0.612928032875061,0.654981434345245,0.441948533058167,-0.558717787265778,0.71848601102829,0.414261072874069,-0.579710364341736,0.412778288125992,0.702531099319458,-0.44504451751709,0.406295776367188,0.798034429550171,\r\n-0.533217370510101,0.548888266086578,0.643739640712738,-0.545115649700165,0.661677002906799,0.514812827110291,-0.612928032875061,0.654981434345245,0.441948533058167,-0.533217370510101,0.548888266086578,0.643739640712738,-0.513365089893341,0.312465906143188,0.799262881278992,-0.44504451751709,0.406295776367188,0.798034429550171,-0.518901586532593,0.255862206220627,0.815644204616547,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.571340978145599,-0.0719692930579185,0.817551076412201,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.48935878276825,0.674024939537048,0.553369879722595,-0.427721947431564,0.711725294589996,0.557226061820984,-0.43961900472641,0.71623420715332,0.541981220245361,-0.351843118667603,0.863495826721191,0.361360311508179,-0.499369263648987,0.799538552761078,0.333718836307526,-0.40128892660141,0.817748129367828,0.412619769573212,-0.418818205595016,0.73913836479187,0.527509033679962,-0.499369263648987,0.799538552761078,0.333718836307526,-0.383407801389694,0.815798938274384,0.432978540658951,-0.335538506507874,0.818264484405518,0.466751664876938,-0.43961900472641,0.71623420715332,0.541981220245361,-0.427721947431564,0.711725294589996,0.557226061820984,-0.40128892660141,0.817748129367828,0.412619769573212,-0.335538506507874,0.818264484405518,0.466751664876938,-0.270370244979858,0.883161127567291,0.38330951333046,0.409927040338516,-0.185765042901039,0.893001139163971,0.340772986412048,-0.174140959978104,0.923876941204071,0.390996128320694,-0.173892140388489,0.903816044330597,0.464754343032837,-0.227592840790749,0.855689644813538,0.409927040338516,-0.185765042901039,0.893001139163971,0.483458489179611,-0.18731527030468,0.855091094970703,0.464754343032837,-0.227592840790749,0.855689644813538,0.483458489179611,-0.18731527030468,0.855091094970703,0.505820453166962,-0.214274987578392,0.835602641105652,-0.235315352678299,0.770782828330994,0.592047572135925,\r\n-0.102668851613998,0.632838129997253,0.767447054386139,-0.383407801389694,0.815798938274384,0.432978540658951,-0.102668851613998,0.632838129997253,0.767447054386139,-0.235315352678299,0.770782828330994,0.592047572135925,0.0641973614692688,0.390269637107849,0.91845965385437,0.295208811759949,-0.0315925404429436,0.954910278320313,0.200956359505653,-0.16824871301651,0.965043425559998,0.350361555814743,-0.173207238316536,0.920459628105164,0.0522254630923271,0.0406727008521557,0.997806668281555,0.295208811759949,-0.0315925404429436,0.954910278320313,0.0641973614692688,0.390269637107849,0.91845965385437,0.350361555814743,-0.173207238316536,0.920459628105164,0.218460947275162,-0.19774517416954,0.955600082874298,0.340772986412048,-0.174140959978104,0.923876941204071,0.141379252076149,-0.111214518547058,0.983688533306122,0.276325702667236,-0.135071247816086,0.951524972915649,0.229912921786308,-0.099325992166996,0.968129277229309,0.186357215046883,-0.102378934621811,0.977133274078369,0.110032014548779,-0.0681025236845016,0.991592109203339,0.229912921786308,-0.099325992166996,0.968129277229309,0.083479143679142,-0.086411751806736,0.992755830287933,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.110032014548779,-0.0681025236845016,0.991592109203339,0.431777000427246,-0.190016314387321,0.881738245487213,0.505820453166962,-0.214274987578392,0.835602641105652,0.490390062332153,-0.174937590956688,0.853764772415161,0.431777000427246,-0.190016314387321,0.881738245487213,0.378619164228439,-0.141308233141899,0.914701819419861,0.276325702667236,-0.135071247816086,0.951524972915649,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.0443808920681477,-0.112643696367741,0.992643773555756,0.0666878148913383,-0.180006667971611,0.981402158737183,0.0443808920681477,-0.112643696367741,0.992643773555756,0.137466281652451,-0.163354650139809,0.976943254470825,-0.0198070537298918,-0.149236992001534,0.988602995872498,0.0666878148913383,-0.180006667971611,0.981402158737183,0.15920826792717,-0.16646870970726,0.97310882806778,\r\n-0.213452324271202,-0.655660390853882,0.724256455898285,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.327667474746704,-0.437128633260727,0.837587296962738,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.217655703425407,-0.560177028179169,0.799266874790192,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.415416538715363,-0.434425234794617,0.799189388751984,-0.217655703425407,-0.560177028179169,0.799266874790192,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.144463822245598,-0.181960836052895,0.972635746002197,-0.224711120128632,-0.183930441737175,0.956908762454987,-0.141512960195541,-0.0688803046941757,0.987537086009979,-0.144463822245598,-0.181960836052895,0.972635746002197,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.263697236776352,-0.318229734897614,0.910600602626801,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.141512960195541,-0.0688803046941757,0.987537086009979,-0.143712624907494,-0.0992607027292252,0.984628796577454,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.0387369655072689,-0.5057612657547,0.861803293228149,-0.164810180664063,-0.530693829059601,0.831385314464569,0.00295156240463257,-0.594367861747742,0.804187834262848,0.033658504486084,-0.549572587013245,0.834767580032349,-0.0387369655072689,-0.5057612657547,0.861803293228149,0.00295156240463257,-0.594367861747742,0.804187834262848,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.55600780248642,-0.686326742172241,0.468839764595032,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.219953805208206,-0.952970266342163,0.208489686250687,\r\n-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.662944197654724,-0.480157971382141,0.574415564537048,-0.513365089893341,0.312465906143188,0.799262881278992,-0.518901586532593,0.255862206220627,0.815644204616547,-0.559828639030457,0.140318632125854,0.816640913486481,-0.559828639030457,0.140318632125854,0.816640913486481,-0.561913311481476,0.0931704938411713,0.821932196617126,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.578180074691772,0.709997951984406,0.402008295059204,-0.474376946687698,0.751678109169006,0.458199024200439,-0.48935878276825,0.674024939537048,0.553369879722595,-0.545115649700165,0.661677002906799,0.514812827110291,-0.558717787265778,0.71848601102829,0.414261072874069,-0.612928032875061,0.654981434345245,0.441948533058167,-0.506280958652496,0.774712979793549,0.378812909126282,-0.578180074691772,0.709997951984406,0.402008295059204,-0.558717787265778,0.71848601102829,0.414261072874069,-0.44504451751709,0.406295776367188,0.798034429550171,-0.443563848733902,0.471589386463165,0.762138068675995,-0.533217370510101,0.548888266086578,0.643739640712738,-0.46871218085289,0.565223753452301,0.678845226764679,-0.545115649700165,0.661677002906799,0.514812827110291,-0.533217370510101,0.548888266086578,0.643739640712738,-0.44504451751709,0.406295776367188,0.798034429550171,-0.513365089893341,0.312465906143188,0.799262881278992,-0.40729296207428,0.464868426322937,0.786135911941528,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.48935878276825,0.674024939537048,0.553369879722595,-0.474376946687698,0.751678109169006,0.458199024200439,-0.427721947431564,0.711725294589996,0.557226061820984,\r\n-0.351843118667603,0.863495826721191,0.361360311508179,-0.383407801389694,0.815798938274384,0.432978540658951,-0.499369263648987,0.799538552761078,0.333718836307526,-0.351843118667603,0.863495826721191,0.361360311508179,-0.40128892660141,0.817748129367828,0.412619769573212,-0.270370244979858,0.883161127567291,0.38330951333046,-0.427721947431564,0.711725294589996,0.557226061820984,-0.474376946687698,0.751678109169006,0.458199024200439,-0.335538506507874,0.818264484405518,0.466751664876938,-0.335538506507874,0.818264484405518,0.466751664876938,-0.273800253868103,0.881358861923218,0.385019212961197,-0.270370244979858,0.883161127567291,0.38330951333046,0.390996128320694,-0.173892140388489,0.903816044330597,0.340772986412048,-0.174140959978104,0.923876941204071,0.287455141544342,-0.193425983190537,0.938059568405151,0.409927040338516,-0.185765042901039,0.893001139163971,0.390996128320694,-0.173892140388489,0.903816044330597,0.483458489179611,-0.18731527030468,0.855091094970703,0.490390062332153,-0.174937590956688,0.853764772415161,0.505820453166962,-0.214274987578392,0.835602641105652,0.483458489179611,-0.18731527030468,0.855091094970703,-0.235315352678299,0.770782828330994,0.592047572135925,-0.383407801389694,0.815798938274384,0.432978540658951,-0.351843118667603,0.863495826721191,0.361360311508179,-0.208436146378517,0.50494509935379,0.837606489658356,0.0641973614692688,0.390269637107849,0.91845965385437,-0.235315352678299,0.770782828330994,0.592047572135925,0.0522254630923271,0.0406727008521557,0.997806668281555,0.200956359505653,-0.16824871301651,0.965043425559998,0.295208811759949,-0.0315925404429436,0.954910278320313,0.200956359505653,-0.16824871301651,0.965043425559998,0.218460947275162,-0.19774517416954,0.955600082874298,0.350361555814743,-0.173207238316536,0.920459628105164,0.0522254630923271,0.0406727008521557,0.997806668281555,0.0641973614692688,0.390269637107849,0.91845965385437,-0.208436146378517,0.50494509935379,0.837606489658356,0.153352037072182,-0.207983046770096,0.966036260128021,0.340772986412048,-0.174140959978104,0.923876941204071,\r\n0.218460947275162,-0.19774517416954,0.955600082874298,0.276325702667236,-0.135071247816086,0.951524972915649,0.378619164228439,-0.141308233141899,0.914701819419861,0.229912921786308,-0.099325992166996,0.968129277229309,0.110032014548779,-0.0681025236845016,0.991592109203339,0.186357215046883,-0.102378934621811,0.977133274078369,0.083479143679142,-0.086411751806736,0.992755830287933,0.186357215046883,-0.102378934621811,0.977133274078369,0.229912921786308,-0.099325992166996,0.968129277229309,0.31865319609642,-0.10807716101408,0.941689670085907,0.083479143679142,-0.086411751806736,0.992755830287933,0.033440139144659,-0.0440122708678246,0.998471140861511,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.431777000427246,-0.190016314387321,0.881738245487213,0.490390062332153,-0.174937590956688,0.853764772415161,0.378619164228439,-0.141308233141899,0.914701819419861,0.033440139144659,-0.0440122708678246,0.998471140861511,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.0031071852426976,-0.0528655238449574,0.998596787452698,0.0443808920681477,-0.112643696367741,0.992643773555756,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.137466281652451,-0.163354650139809,0.976943254470825,0.15920826792717,-0.16646870970726,0.97310882806778,0.0666878148913383,-0.180006667971611,0.981402158737183,0.137466281652451,-0.163354650139809,0.976943254470825,-0.0170143414288759,-0.0530225411057472,0.998448312282562,-0.0198070537298918,-0.149236992001534,0.988602995872498,0.15920826792717,-0.16646870970726,0.97310882806778,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.294914931058884,-0.555328905582428,0.777582764625549,-0.217655703425407,-0.560177028179169,0.799266874790192,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.0716290175914764,-0.665059328079224,0.74334728717804,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.217655703425407,-0.560177028179169,0.799266874790192,-0.0716290175914764,-0.665059328079224,0.74334728717804,\r\n0.221067145466805,-0.462594121694565,0.858566224575043,-0.0267621986567974,-0.520098209381104,0.853686988353729,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.141512960195541,-0.0688803046941757,0.987537086009979,0.161775797605515,-0.184477403759956,0.969431042671204,-0.144463822245598,-0.181960836052895,0.972635746002197,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.144463822245598,-0.181960836052895,0.972635746002197,0.161775797605515,-0.184477403759956,0.969431042671204,-0.150807499885559,-0.100726760923862,0.983418107032776,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.163495436310768,-0.0025797919370234,0.986540675163269,-0.141512960195541,-0.0688803046941757,0.987537086009979,0.00295156240463257,-0.594367861747742,0.804187834262848,-0.164810180664063,-0.530693829059601,0.831385314464569,-0.0954393371939659,-0.673530220985413,0.732972204685211,0.033658504486084,-0.549572587013245,0.834767580032349,0.00295156240463257,-0.594367861747742,0.804187834262848,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.219953805208206,-0.952970266342163,0.208489686250687,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.513365089893341,0.312465906143188,0.799262881278992,-0.559828639030457,0.140318632125854,0.816640913486481,-0.606581568717957,0.229565739631653,0.761155843734741,-0.559828639030457,0.140318632125854,0.816640913486481,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.506280958652496,0.774712979793549,0.378812909126282,\r\n-0.474376946687698,0.751678109169006,0.458199024200439,-0.578180074691772,0.709997951984406,0.402008295059204,-0.558717787265778,0.71848601102829,0.414261072874069,-0.545115649700165,0.661677002906799,0.514812827110291,-0.495732396841049,0.6594078540802,0.565181970596313,-0.506280958652496,0.774712979793549,0.378812909126282,-0.558717787265778,0.71848601102829,0.414261072874069,-0.451784640550613,0.765387713909149,0.458336293697357,-0.381396740674973,0.461058348417282,0.801225066184998,-0.443563848733902,0.471589386463165,0.762138068675995,-0.44504451751709,0.406295776367188,0.798034429550171,-0.46871218085289,0.565223753452301,0.678845226764679,-0.533217370510101,0.548888266086578,0.643739640712738,-0.443563848733902,0.471589386463165,0.762138068675995,-0.545115649700165,0.661677002906799,0.514812827110291,-0.46871218085289,0.565223753452301,0.678845226764679,-0.495732396841049,0.6594078540802,0.565181970596313,-0.40729296207428,0.464868426322937,0.786135911941528,-0.513365089893341,0.312465906143188,0.799262881278992,-0.478237330913544,0.368777126073837,0.797052264213562,-0.40729296207428,0.464868426322937,0.786135911941528,-0.381396740674973,0.461058348417282,0.801225066184998,-0.44504451751709,0.406295776367188,0.798034429550171,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.648585617542267,-0.248195856809616,0.719538331031799,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.574942409992218,-0.0352784804999828,0.817432880401611,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.351843118667603,0.863495826721191,0.361360311508179,-0.270370244979858,0.883161127567291,0.38330951333046,-0.290658831596375,0.818032443523407,0.496326833963394,-0.335538506507874,0.818264484405518,0.466751664876938,-0.474376946687698,0.751678109169006,0.458199024200439,-0.331545919179916,0.855856418609619,0.396971970796585,\r\n-0.335538506507874,0.818264484405518,0.466751664876938,-0.331545919179916,0.855856418609619,0.396971970796585,-0.273800253868103,0.881358861923218,0.385019212961197,-0.372336059808731,0.800163269042969,0.47021758556366,-0.270370244979858,0.883161127567291,0.38330951333046,-0.273800253868103,0.881358861923218,0.385019212961197,0.153352037072182,-0.207983046770096,0.966036260128021,0.287455141544342,-0.193425983190537,0.938059568405151,0.340772986412048,-0.174140959978104,0.923876941204071,0.388414025306702,-0.186600655317307,0.902393817901611,0.390996128320694,-0.173892140388489,0.903816044330597,0.287455141544342,-0.193425983190537,0.938059568405151,0.469379007816315,-0.176011607050896,0.865276336669922,0.483458489179611,-0.18731527030468,0.855091094970703,0.390996128320694,-0.173892140388489,0.903816044330597,0.490390062332153,-0.174937590956688,0.853764772415161,0.483458489179611,-0.18731527030468,0.855091094970703,0.469379007816315,-0.176011607050896,0.865276336669922,-0.290658831596375,0.818032443523407,0.496326833963394,-0.235315352678299,0.770782828330994,0.592047572135925,-0.351843118667603,0.863495826721191,0.361360311508179,-0.290658831596375,0.818032443523407,0.496326833963394,-0.208436146378517,0.50494509935379,0.837606489658356,-0.235315352678299,0.770782828330994,0.592047572135925,0.0522254630923271,0.0406727008521557,0.997806668281555,-0.164674699306488,-0.155776143074036,0.973969161510468,0.200956359505653,-0.16824871301651,0.965043425559998,0.200956359505653,-0.16824871301651,0.965043425559998,-0.164674699306488,-0.155776143074036,0.973969161510468,0.218460947275162,-0.19774517416954,0.955600082874298,-0.32646107673645,0.0894949585199356,0.940964221954346,0.0522254630923271,0.0406727008521557,0.997806668281555,-0.208436146378517,0.50494509935379,0.837606489658356,0.153352037072182,-0.207983046770096,0.966036260128021,0.218460947275162,-0.19774517416954,0.955600082874298,-0.161412000656128,-0.211774408817291,0.963897109031677,0.31865319609642,-0.10807716101408,0.941689670085907,0.229912921786308,-0.099325992166996,0.968129277229309,\r\n0.378619164228439,-0.141308233141899,0.914701819419861,0.186357215046883,-0.102378934621811,0.977133274078369,0.164344787597656,-0.0411333218216896,0.985544860363007,0.083479143679142,-0.086411751806736,0.992755830287933,0.186357215046883,-0.102378934621811,0.977133274078369,0.31865319609642,-0.10807716101408,0.941689670085907,0.164344787597656,-0.0411333218216896,0.985544860363007,0.033440139144659,-0.0440122708678246,0.998471140861511,0.083479143679142,-0.086411751806736,0.992755830287933,0.164344787597656,-0.0411333218216896,0.985544860363007,0.378619164228439,-0.141308233141899,0.914701819419861,0.490390062332153,-0.174937590956688,0.853764772415161,0.450342625379562,-0.143555790185928,0.881239593029022,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.033440139144659,-0.0440122708678246,0.998471140861511,0.102542050182819,-0.0433928184211254,0.993781685829163,0.137466281652451,-0.163354650139809,0.976943254470825,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.178901568055153,-0.14026851952076,0.973816633224487,0.15920826792717,-0.16646870970726,0.97310882806778,0.137466281652451,-0.163354650139809,0.976943254470825,0.178901568055153,-0.14026851952076,0.973816633224487,-0.0170143414288759,-0.0530225411057472,0.998448312282562,-0.150807499885559,-0.100726760923862,0.983418107032776,-0.0198070537298918,-0.149236992001534,0.988602995872498,-0.0170143414288759,-0.0530225411057472,0.998448312282562,0.15920826792717,-0.16646870970726,0.97310882806778,0.0224788151681423,-0.0569044277071953,0.99812638759613,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.0716290175914764,-0.665059328079224,0.74334728717804,-0.0267621986567974,-0.520098209381104,0.853686988353729,-0.213452324271202,-0.655660390853882,0.724256455898285,-0.0716290175914764,-0.665059328079224,0.74334728717804,-0.100042462348938,-0.700702726840973,0.706404268741608,\r\n0.221067145466805,-0.462594121694565,0.858566224575043,0.0882282704114914,-0.491815179586411,0.866217970848084,-0.0267621986567974,-0.520098209381104,0.853686988353729,0.352357059717178,-0.326991498470306,0.87688136100769,0.221067145466805,-0.462594121694565,0.858566224575043,0.0626502186059952,-0.337417423725128,0.939267933368683,-0.141512960195541,-0.0688803046941757,0.987537086009979,0.0763081014156342,-0.0731613337993622,0.994396507740021,0.161775797605515,-0.184477403759956,0.969431042671204,0.352357059717178,-0.326991498470306,0.87688136100769,0.0626502186059952,-0.337417423725128,0.939267933368683,0.161775797605515,-0.184477403759956,0.969431042671204,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.150807499885559,-0.100726760923862,0.983418107032776,-0.163495436310768,-0.0025797919370234,0.986540675163269,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.16071680188179,0.0744341984391212,0.984189689159393,-0.141512960195541,-0.0688803046941757,0.987537086009979,-0.163495436310768,-0.0025797919370234,0.986540675163269,0.0763081014156342,-0.0731613337993622,0.994396507740021,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.0514361150562763,-0.624460935592651,0.779360473155975,0.00295156240463257,-0.594367861747742,0.804187834262848,0.033658504486084,-0.549572587013245,0.834767580032349,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.380884230136871,-0.851779639720917,0.359720021486282,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.507065713405609,-0.691029071807861,0.515133917331696,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.559828639030457,0.140318632125854,0.816640913486481,\r\n-0.595393419265747,0.0176242273300886,0.803240835666656,-0.606581568717957,0.229565739631653,0.761155843734741,-0.606581568717957,0.229565739631653,0.761155843734741,-0.478237330913544,0.368777126073837,0.797052264213562,-0.513365089893341,0.312465906143188,0.799262881278992,-0.506280958652496,0.774712979793549,0.378812909126282,-0.394278436899185,0.844654679298401,0.362081259489059,-0.474376946687698,0.751678109169006,0.458199024200439,-0.451784640550613,0.765387713909149,0.458336293697357,-0.558717787265778,0.71848601102829,0.414261072874069,-0.495732396841049,0.6594078540802,0.565181970596313,-0.506280958652496,0.774712979793549,0.378812909126282,-0.451784640550613,0.765387713909149,0.458336293697357,-0.310225039720535,0.872610092163086,0.377242475748062,-0.381396740674973,0.461058348417282,0.801225066184998,-0.46871218085289,0.565223753452301,0.678845226764679,-0.443563848733902,0.471589386463165,0.762138068675995,-0.46871218085289,0.565223753452301,0.678845226764679,-0.415276646614075,0.529877603054047,0.739442229270935,-0.495732396841049,0.6594078540802,0.565181970596313,-0.440154790878296,0.557658910751343,0.703761398792267,-0.40729296207428,0.464868426322937,0.786135911941528,-0.478237330913544,0.368777126073837,0.797052264213562,-0.40729296207428,0.464868426322937,0.786135911941528,-0.304201424121857,0.468979120254517,0.829168200492859,-0.381396740674973,0.461058348417282,0.801225066184998,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.501479029655457,-0.546675562858582,0.670570194721222,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.372336059808731,0.800163269042969,0.47021758556366,-0.290658831596375,0.818032443523407,0.496326833963394,-0.270370244979858,0.883161127567291,0.38330951333046,\r\n-0.394278436899185,0.844654679298401,0.362081259489059,-0.331545919179916,0.855856418609619,0.396971970796585,-0.474376946687698,0.751678109169006,0.458199024200439,-0.293789386749268,0.887247562408447,0.355639457702637,-0.273800253868103,0.881358861923218,0.385019212961197,-0.331545919179916,0.855856418609619,0.396971970796585,-0.372336059808731,0.800163269042969,0.47021758556366,-0.273800253868103,0.881358861923218,0.385019212961197,-0.487061202526093,0.728934824466705,0.481066793203354,0.153352037072182,-0.207983046770096,0.966036260128021,-0.00354176363907754,-0.256456702947617,0.966549158096313,0.287455141544342,-0.193425983190537,0.938059568405151,0.388414025306702,-0.186600655317307,0.902393817901611,0.469379007816315,-0.176011607050896,0.865276336669922,0.390996128320694,-0.173892140388489,0.903816044330597,0.213638499379158,-0.200652599334717,0.956084251403809,0.388414025306702,-0.186600655317307,0.902393817901611,0.287455141544342,-0.193425983190537,0.938059568405151,0.490390062332153,-0.174937590956688,0.853764772415161,0.469379007816315,-0.176011607050896,0.865276336669922,0.450342625379562,-0.143555790185928,0.881239593029022,-0.523542463779449,0.432531446218491,0.73404335975647,-0.208436146378517,0.50494509935379,0.837606489658356,-0.290658831596375,0.818032443523407,0.496326833963394,-0.32646107673645,0.0894949585199356,0.940964221954346,-0.164674699306488,-0.155776143074036,0.973969161510468,0.0522254630923271,0.0406727008521557,0.997806668281555,-0.164674699306488,-0.155776143074036,0.973969161510468,-0.161412000656128,-0.211774408817291,0.963897109031677,0.218460947275162,-0.19774517416954,0.955600082874298,-0.523542463779449,0.432531446218491,0.73404335975647,-0.32646107673645,0.0894949585199356,0.940964221954346,-0.208436146378517,0.50494509935379,0.837606489658356,-0.161412000656128,-0.211774408817291,0.963897109031677,-0.248817533254623,-0.262585490942001,0.93227607011795,0.153352037072182,-0.207983046770096,0.966036260128021,0.450342625379562,-0.143555790185928,0.881239593029022,0.31865319609642,-0.10807716101408,0.941689670085907,\r\n0.378619164228439,-0.141308233141899,0.914701819419861,0.31865319609642,-0.10807716101408,0.941689670085907,0.299040645360947,-0.0463435091078281,0.95311427116394,0.164344787597656,-0.0411333218216896,0.985544860363007,0.164344787597656,-0.0411333218216896,0.985544860363007,0.102542050182819,-0.0433928184211254,0.993781685829163,0.033440139144659,-0.0440122708678246,0.998471140861511,0.0396978594362736,-0.0738398432731628,0.996479630470276,0.102542050182819,-0.0433928184211254,0.993781685829163,0.178901568055153,-0.14026851952076,0.973816633224487,0.140460401773453,-0.197421088814735,0.970203936100006,0.15920826792717,-0.16646870970726,0.97310882806778,0.178901568055153,-0.14026851952076,0.973816633224487,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.150807499885559,-0.100726760923862,0.983418107032776,-0.0170143414288759,-0.0530225411057472,0.998448312282562,0.0224788151681423,-0.0569044277071953,0.99812638759613,0.15920826792717,-0.16646870970726,0.97310882806778,0.140460401773453,-0.197421088814735,0.970203936100006,-0.0170143414288759,-0.0530225411057472,0.998448312282562,0.0224788151681423,-0.0569044277071953,0.99812638759613,-0.111433021724224,0.104804582893848,0.988230049610138,-0.0954393371939659,-0.673530220985413,0.732972204685211,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.0716290175914764,-0.665059328079224,0.74334728717804,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.0267621986567974,-0.520098209381104,0.853686988353729,0.0882282704114914,-0.491815179586411,0.866217970848084,0.221067145466805,-0.462594121694565,0.858566224575043,0.261463314294815,-0.39000004529953,0.882913768291473,0.0882282704114914,-0.491815179586411,0.866217970848084,0.221067145466805,-0.462594121694565,0.858566224575043,0.352357059717178,-0.326991498470306,0.87688136100769,0.261463314294815,-0.39000004529953,0.882913768291473,\r\n0.161775797605515,-0.184477403759956,0.969431042671204,0.0763081014156342,-0.0731613337993622,0.994396507740021,0.40736049413681,-0.193679645657539,0.892493963241577,0.161775797605515,-0.184477403759956,0.969431042671204,0.40736049413681,-0.193679645657539,0.892493963241577,0.352357059717178,-0.326991498470306,0.87688136100769,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.16071680188179,0.0744341984391212,0.984189689159393,-0.196828693151474,-0.0433219335973263,0.979480266571045,-0.163495436310768,-0.0025797919370234,0.986540675163269,-0.16071680188179,0.0744341984391212,0.984189689159393,0.0763081014156342,-0.0731613337993622,0.994396507740021,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.113663963973522,-0.518281936645508,0.847622692584991,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.115342497825623,-0.983064472675323,0.142408803105354,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.478376567363739,0.16590741276741,0.862340092658997,-0.606581568717957,0.229565739631653,0.761155843734741,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.478376567363739,0.16590741276741,0.862340092658997,-0.478237330913544,0.368777126073837,0.797052264213562,-0.606581568717957,0.229565739631653,0.761155843734741,-0.310225039720535,0.872610092163086,0.377242475748062,-0.394278436899185,0.844654679298401,0.362081259489059,-0.506280958652496,0.774712979793549,0.378812909126282,-0.375573992729187,0.63676643371582,0.673403680324554,-0.451784640550613,0.765387713909149,0.458336293697357,-0.495732396841049,0.6594078540802,0.565181970596313,-0.288873732089996,0.798907995223999,0.527539432048798,\r\n-0.310225039720535,0.872610092163086,0.377242475748062,-0.451784640550613,0.765387713909149,0.458336293697357,-0.381396740674973,0.461058348417282,0.801225066184998,-0.415276646614075,0.529877603054047,0.739442229270935,-0.46871218085289,0.565223753452301,0.678845226764679,-0.375573992729187,0.63676643371582,0.673403680324554,-0.495732396841049,0.6594078540802,0.565181970596313,-0.415276646614075,0.529877603054047,0.739442229270935,-0.40729296207428,0.464868426322937,0.786135911941528,-0.440154790878296,0.557658910751343,0.703761398792267,-0.343054413795471,0.482546359300613,0.805892407894135,-0.478237330913544,0.368777126073837,0.797052264213562,-0.435522824525833,0.499097019433975,0.749147415161133,-0.440154790878296,0.557658910751343,0.703761398792267,-0.40729296207428,0.464868426322937,0.786135911941528,-0.343054413795471,0.482546359300613,0.805892407894135,-0.304201424121857,0.468979120254517,0.829168200492859,-0.381396740674973,0.461058348417282,0.801225066184998,-0.304201424121857,0.468979120254517,0.829168200492859,-0.415276646614075,0.529877603054047,0.739442229270935,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.582018911838531,-0.248193919658661,0.774373054504395,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.372336059808731,0.800163269042969,0.47021758556366,-0.523542463779449,0.432531446218491,0.73404335975647,-0.290658831596375,0.818032443523407,0.496326833963394,-0.394278436899185,0.844654679298401,0.362081259489059,-0.293789386749268,0.887247562408447,0.355639457702637,-0.331545919179916,0.855856418609619,0.396971970796585,\r\n-0.293789386749268,0.887247562408447,0.355639457702637,-0.487061202526093,0.728934824466705,0.481066793203354,-0.273800253868103,0.881358861923218,0.385019212961197,-0.372336059808731,0.800163269042969,0.47021758556366,-0.487061202526093,0.728934824466705,0.481066793203354,-0.676074087619781,0.421560108661652,0.604326665401459,0.153352037072182,-0.207983046770096,0.966036260128021,-0.248817533254623,-0.262585490942001,0.93227607011795,-0.00354176363907754,-0.256456702947617,0.966549158096313,0.213638499379158,-0.200652599334717,0.956084251403809,0.287455141544342,-0.193425983190537,0.938059568405151,-0.00354176363907754,-0.256456702947617,0.966549158096313,0.388414025306702,-0.186600655317307,0.902393817901611,0.307048887014389,-0.157957285642624,0.938493549823761,0.469379007816315,-0.176011607050896,0.865276336669922,0.388414025306702,-0.186600655317307,0.902393817901611,0.213638499379158,-0.200652599334717,0.956084251403809,0.307048887014389,-0.157957285642624,0.938493549823761,0.438626289367676,-0.119536347687244,0.890683948993683,0.450342625379562,-0.143555790185928,0.881239593029022,0.469379007816315,-0.176011607050896,0.865276336669922,-0.32646107673645,0.0894949585199356,0.940964221954346,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.164674699306488,-0.155776143074036,0.973969161510468,-0.164674699306488,-0.155776143074036,0.973969161510468,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.161412000656128,-0.211774408817291,0.963897109031677,-0.32646107673645,0.0894949585199356,0.940964221954346,-0.523542463779449,0.432531446218491,0.73404335975647,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.161412000656128,-0.211774408817291,0.963897109031677,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.248817533254623,-0.262585490942001,0.93227607011795,0.450342625379562,-0.143555790185928,0.881239593029022,0.361560612916946,-0.0988655164837837,0.927091896533966,0.31865319609642,-0.10807716101408,0.941689670085907,0.31865319609642,-0.10807716101408,0.941689670085907,0.361560612916946,-0.0988655164837837,0.927091896533966,\r\n0.299040645360947,-0.0463435091078281,0.95311427116394,0.164344787597656,-0.0411333218216896,0.985544860363007,0.299040645360947,-0.0463435091078281,0.95311427116394,0.206172972917557,-0.0262801703065634,0.978162527084351,0.164344787597656,-0.0411333218216896,0.985544860363007,0.206172972917557,-0.0262801703065634,0.978162527084351,0.102542050182819,-0.0433928184211254,0.993781685829163,0.204705893993378,-0.179055541753769,0.96230685710907,0.178901568055153,-0.14026851952076,0.973816633224487,0.102542050182819,-0.0433928184211254,0.993781685829163,0.140460401773453,-0.197421088814735,0.970203936100006,0.178901568055153,-0.14026851952076,0.973816633224487,0.204705893993378,-0.179055541753769,0.96230685710907,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.0170143414288759,-0.0530225411057472,0.998448312282562,-0.111433021724224,0.104804582893848,0.988230049610138,-0.126916840672493,-0.147845029830933,0.980833292007446,0.0224788151681423,-0.0569044277071953,0.99812638759613,0.140460401773453,-0.197421088814735,0.970203936100006,-0.111433021724224,0.104804582893848,0.988230049610138,0.0224788151681423,-0.0569044277071953,0.99812638759613,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.100042462348938,-0.700702726840973,0.706404268741608,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.0565965995192528,-0.612739264965057,0.78825581073761,0.0882282704114914,-0.491815179586411,0.866217970848084,0.0157685093581676,-0.355926632881165,0.934380769729614,0.0882282704114914,-0.491815179586411,0.866217970848084,0.261463314294815,-0.39000004529953,0.882913768291473,0.261463314294815,-0.39000004529953,0.882913768291473,0.352357059717178,-0.326991498470306,0.87688136100769,0.39519727230072,-0.215044096112251,0.893070578575134,\r\n0.273959994316101,-0.0724981427192688,0.959004640579224,0.40736049413681,-0.193679645657539,0.892493963241577,0.0763081014156342,-0.0731613337993622,0.994396507740021,0.352357059717178,-0.326991498470306,0.87688136100769,0.40736049413681,-0.193679645657539,0.892493963241577,0.39519727230072,-0.215044096112251,0.893070578575134,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.228308826684952,0.192634359002113,0.954341113567352,-0.16071680188179,0.0744341984391212,0.984189689159393,0.273959994316101,-0.0724981427192688,0.959004640579224,0.0763081014156342,-0.0731613337993622,0.994396507740021,-0.16071680188179,0.0744341984391212,0.984189689159393,-0.0514361150562763,-0.624460935592651,0.779360473155975,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.113663963973522,-0.518281936645508,0.847622692584991,0.0383730679750443,-0.512682557106018,0.857720196247101,-0.00439899042248726,-0.581065595149994,0.813844740390778,-0.113663963973522,-0.518281936645508,0.847622692584991,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.222466319799423,-0.941189348697662,0.254305392503738,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.315700471401215,-0.857515156269073,0.406202912330627,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.478376567363739,0.16590741276741,0.862340092658997,-0.595393419265747,0.0176242273300886,0.803240835666656,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.478376567363739,0.16590741276741,0.862340092658997,-0.278668284416199,0.141343146562576,0.949929475784302,-0.478237330913544,0.368777126073837,0.797052264213562,-0.310225039720535,0.872610092163086,0.377242475748062,-0.244895085692406,0.91308867931366,0.326029628515244,-0.394278436899185,0.844654679298401,0.362081259489059,-0.451784640550613,0.765387713909149,0.458336293697357,\r\n-0.375573992729187,0.63676643371582,0.673403680324554,-0.288873732089996,0.798907995223999,0.527539432048798,-0.310225039720535,0.872610092163086,0.377242475748062,-0.288873732089996,0.798907995223999,0.527539432048798,-0.11702997982502,0.907395303249359,0.403655350208282,-0.415276646614075,0.529877603054047,0.739442229270935,-0.304201424121857,0.468979120254517,0.829168200492859,-0.375573992729187,0.63676643371582,0.673403680324554,-0.440154790878296,0.557658910751343,0.703761398792267,-0.431750446557999,0.540298283100128,0.722266674041748,-0.343054413795471,0.482546359300613,0.805892407894135,-0.478237330913544,0.368777126073837,0.797052264213562,-0.319305539131165,0.286774158477783,0.903218924999237,-0.435522824525833,0.499097019433975,0.749147415161133,-0.440154790878296,0.557658910751343,0.703761398792267,-0.435522824525833,0.499097019433975,0.749147415161133,-0.414161741733551,0.580064117908478,0.7014240026474,-0.343054413795471,0.482546359300613,0.805892407894135,-0.289380580186844,0.61431747674942,0.734079539775848,-0.304201424121857,0.468979120254517,0.829168200492859,-0.397147595882416,-0.681302070617676,0.614899277687073,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.532091915607452,-0.250997632741928,0.808627367019653,-0.523542463779449,0.432531446218491,0.73404335975647,-0.372336059808731,0.800163269042969,0.47021758556366,-0.676074087619781,0.421560108661652,0.604326665401459,-0.293789386749268,0.887247562408447,0.355639457702637,-0.394278436899185,0.844654679298401,0.362081259489059,-0.244895085692406,0.91308867931366,0.326029628515244,-0.477936893701553,0.688281357288361,0.545751810073853,-0.487061202526093,0.728934824466705,0.481066793203354,-0.293789386749268,0.887247562408447,0.355639457702637,\r\n-0.487061202526093,0.728934824466705,0.481066793203354,-0.772599220275879,0.247870966792107,0.584508657455444,-0.676074087619781,0.421560108661652,0.604326665401459,-0.384720206260681,-0.29187136888504,0.875671982765198,-0.00354176363907754,-0.256456702947617,0.966549158096313,-0.248817533254623,-0.262585490942001,0.93227607011795,-0.0695150643587112,-0.238347440958023,0.96868884563446,0.213638499379158,-0.200652599334717,0.956084251403809,-0.00354176363907754,-0.256456702947617,0.966549158096313,0.307048887014389,-0.157957285642624,0.938493549823761,0.438626289367676,-0.119536347687244,0.890683948993683,0.469379007816315,-0.176011607050896,0.865276336669922,0.102541148662567,-0.208203002810478,0.972695589065552,0.307048887014389,-0.157957285642624,0.938493549823761,0.213638499379158,-0.200652599334717,0.956084251403809,0.450342625379562,-0.143555790185928,0.881239593029022,0.438626289367676,-0.119536347687244,0.890683948993683,0.361560612916946,-0.0988655164837837,0.927091896533966,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.164674699306488,-0.155776143074036,0.973969161510468,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.161412000656128,-0.211774408817291,0.963897109031677,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.523542463779449,0.432531446218491,0.73404335975647,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.619708657264709,-0.268308311700821,0.737544357776642,-0.248817533254623,-0.262585490942001,0.93227607011795,0.226194575428963,-0.0537937991321087,0.972595453262329,0.299040645360947,-0.0463435091078281,0.95311427116394,0.361560612916946,-0.0988655164837837,0.927091896533966,0.206172972917557,-0.0262801703065634,0.978162527084351,0.299040645360947,-0.0463435091078281,0.95311427116394,0.226194575428963,-0.0537937991321087,0.972595453262329,0.102542050182819,-0.0433928184211254,0.993781685829163,\r\n0.206172972917557,-0.0262801703065634,0.978162527084351,0.265547335147858,-0.157824918627739,0.951091885566711,0.265547335147858,-0.157824918627739,0.951091885566711,0.204705893993378,-0.179055541753769,0.96230685710907,0.102542050182819,-0.0433928184211254,0.993781685829163,0.140460401773453,-0.197421088814735,0.970203936100006,0.204705893993378,-0.179055541753769,0.96230685710907,0.237868815660477,-0.265816956758499,0.9342160820961,-0.111433021724224,0.104804582893848,0.988230049610138,-0.228308826684952,0.192634359002113,0.954341113567352,-0.194237917661667,0.0417128875851631,0.980067133903503,-0.126916840672493,-0.147845029830933,0.980833292007446,-0.217976301908493,-0.0267680250108242,0.975586891174316,0.0224788151681423,-0.0569044277071953,0.99812638759613,0.140460401773453,-0.197421088814735,0.970203936100006,0.0580896772444248,-0.194635882973671,0.979153871536255,-0.126916840672493,-0.147845029830933,0.980833292007446,-0.240260392427444,0.135954365134239,0.961140632629395,-0.111433021724224,0.104804582893848,0.988230049610138,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.0565965995192528,-0.612739264965057,0.78825581073761,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.127352818846703,-0.433258771896362,0.89222639799118,0.0882282704114914,-0.491815179586411,0.866217970848084,0.0157685093581676,-0.355926632881165,0.934380769729614,0.193221494555473,-0.248928979039192,0.949051976203918,0.0157685093581676,-0.355926632881165,0.934380769729614,0.261463314294815,-0.39000004529953,0.882913768291473,0.193221494555473,-0.248928979039192,0.949051976203918,0.261463314294815,-0.39000004529953,0.882913768291473,0.39519727230072,-0.215044096112251,0.893070578575134,0.273959994316101,-0.0724981427192688,0.959004640579224,0.466334879398346,-0.190621063113213,0.863825917243958,0.40736049413681,-0.193679645657539,0.892493963241577,0.40736049413681,-0.193679645657539,0.892493963241577,0.466334879398346,-0.190621063113213,0.863825917243958,0.39519727230072,-0.215044096112251,0.893070578575134,\r\n-0.16071680188179,0.0744341984391212,0.984189689159393,-0.228308826684952,0.192634359002113,0.954341113567352,-0.177391916513443,0.154893234372139,0.971874535083771,-0.16071680188179,0.0744341984391212,0.984189689159393,0.0118759525939822,0.0527588278055191,0.998536586761475,0.273959994316101,-0.0724981427192688,0.959004640579224,-0.113663963973522,-0.518281936645508,0.847622692584991,-0.162805154919624,-0.59548431634903,0.786697387695313,-0.127352818846703,-0.433258771896362,0.89222639799118,0.0383730679750443,-0.512682557106018,0.857720196247101,-0.113663963973522,-0.518281936645508,0.847622692584991,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.0509613677859306,-0.995998799800873,0.0734114050865173,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.0100736701861024,-0.998942077159882,0.0448658689856529,0.0173398144543171,-0.999464869499207,0.0277342367917299,-0.139794141054153,-0.972367405891418,0.186973810195923,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.478376567363739,0.16590741276741,0.862340092658997,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.278668284416199,0.141343146562576,0.949929475784302,-0.319305539131165,0.286774158477783,0.903218924999237,-0.478237330913544,0.368777126073837,0.797052264213562,-0.278668284416199,0.141343146562576,0.949929475784302,-0.146152347326279,0.911755084991455,0.383851498365402,-0.244895085692406,0.91308867931366,0.326029628515244,-0.310225039720535,0.872610092163086,0.377242475748062,-0.375573992729187,0.63676643371582,0.673403680324554,-0.289380580186844,0.61431747674942,0.734079539775848,-0.288873732089996,0.798907995223999,0.527539432048798,-0.120868302881718,0.836556077003479,0.534382462501526,-0.11702997982502,0.907395303249359,0.403655350208282,-0.288873732089996,0.798907995223999,0.527539432048798,-0.310225039720535,0.872610092163086,0.377242475748062,\r\n-0.11702997982502,0.907395303249359,0.403655350208282,-0.146152347326279,0.911755084991455,0.383851498365402,-0.304201424121857,0.468979120254517,0.829168200492859,-0.289380580186844,0.61431747674942,0.734079539775848,-0.375573992729187,0.63676643371582,0.673403680324554,-0.440154790878296,0.557658910751343,0.703761398792267,-0.414161741733551,0.580064117908478,0.7014240026474,-0.431750446557999,0.540298283100128,0.722266674041748,-0.436210960149765,0.525105237960815,0.730742275714874,-0.343054413795471,0.482546359300613,0.805892407894135,-0.431750446557999,0.540298283100128,0.722266674041748,-0.330352991819382,0.442888677120209,0.833496451377869,-0.435522824525833,0.499097019433975,0.749147415161133,-0.319305539131165,0.286774158477783,0.903218924999237,-0.414161741733551,0.580064117908478,0.7014240026474,-0.435522824525833,0.499097019433975,0.749147415161133,-0.330352991819382,0.442888677120209,0.833496451377869,-0.289380580186844,0.61431747674942,0.734079539775848,-0.343054413795471,0.482546359300613,0.805892407894135,-0.436210960149765,0.525105237960815,0.730742275714874,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.445789664983749,-0.610234200954437,0.654893577098846,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.523542463779449,0.432531446218491,0.73404335975647,-0.676074087619781,0.421560108661652,0.604326665401459,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.293789386749268,0.887247562408447,0.355639457702637,-0.244895085692406,0.91308867931366,0.326029628515244,-0.146152347326279,0.911755084991455,0.383851498365402,-0.477936893701553,0.688281357288361,0.545751810073853,-0.772599220275879,0.247870966792107,0.584508657455444,-0.487061202526093,0.728934824466705,0.481066793203354,\r\n-0.477936893701553,0.688281357288361,0.545751810073853,-0.293789386749268,0.887247562408447,0.355639457702637,-0.146152347326279,0.911755084991455,0.383851498365402,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.676074087619781,0.421560108661652,0.604326665401459,-0.772599220275879,0.247870966792107,0.584508657455444,-0.445694237947464,-0.296582847833633,0.84462708234787,-0.00354176363907754,-0.256456702947617,0.966549158096313,-0.384720206260681,-0.29187136888504,0.875671982765198,-0.384720206260681,-0.29187136888504,0.875671982765198,-0.248817533254623,-0.262585490942001,0.93227607011795,-0.619708657264709,-0.268308311700821,0.737544357776642,0.102541148662567,-0.208203002810478,0.972695589065552,0.213638499379158,-0.200652599334717,0.956084251403809,-0.0695150643587112,-0.238347440958023,0.96868884563446,-0.0695150643587112,-0.238347440958023,0.96868884563446,-0.00354176363907754,-0.256456702947617,0.966549158096313,-0.445694237947464,-0.296582847833633,0.84462708234787,0.438626289367676,-0.119536347687244,0.890683948993683,0.307048887014389,-0.157957285642624,0.938493549823761,0.361560612916946,-0.0988655164837837,0.927091896533966,0.307048887014389,-0.157957285642624,0.938493549823761,0.102541148662567,-0.208203002810478,0.972695589065552,-0.0241483151912689,-0.229352712631226,0.973043739795685,-0.558538794517517,0.00860494282096624,0.829433679580688,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.619708657264709,-0.268308311700821,0.737544357776642,0.361560612916946,-0.0988655164837837,0.927091896533966,0.11600086838007,-0.136004462838173,0.983893573284149,0.226194575428963,-0.0537937991321087,0.972595453262329,0.206172972917557,-0.0262801703065634,0.978162527084351,\r\n0.226194575428963,-0.0537937991321087,0.972595453262329,0.169184565544128,-0.0835080444812775,0.982040166854858,0.317139148712158,-0.133206874132156,0.938977420330048,0.265547335147858,-0.157824918627739,0.951091885566711,0.206172972917557,-0.0262801703065634,0.978162527084351,0.204705893993378,-0.179055541753769,0.96230685710907,0.265547335147858,-0.157824918627739,0.951091885566711,0.237868815660477,-0.265816956758499,0.9342160820961,0.0580896772444248,-0.194635882973671,0.979153871536255,0.140460401773453,-0.197421088814735,0.970203936100006,0.237868815660477,-0.265816956758499,0.9342160820961,-0.111433021724224,0.104804582893848,0.988230049610138,-0.240260392427444,0.135954365134239,0.961140632629395,-0.228308826684952,0.192634359002113,0.954341113567352,-0.126916840672493,-0.147845029830933,0.980833292007446,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.126916840672493,-0.147845029830933,0.980833292007446,0.0580896772444248,-0.194635882973671,0.979153871536255,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.240260392427444,0.135954365134239,0.961140632629395,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.352481216192245,-0.0564413890242577,0.93411523103714,-0.127352818846703,-0.433258771896362,0.89222639799118,0.0157685093581676,-0.355926632881165,0.934380769729614,-0.141345337033272,-0.273588925600052,0.951404452323914,0.193221494555473,-0.248928979039192,0.949051976203918,-0.0047671115025878,-0.201478838920593,0.979481101036072,0.0157685093581676,-0.355926632881165,0.934380769729614,0.193221494555473,-0.248928979039192,0.949051976203918,0.39519727230072,-0.215044096112251,0.893070578575134,0.144673675298691,-0.0946375802159309,0.984943270683289,0.273959994316101,-0.0724981427192688,0.959004640579224,0.398428201675415,-0.211757823824883,0.892419993877411,0.466334879398346,-0.190621063113213,0.863825917243958,0.39519727230072,-0.215044096112251,0.893070578575134,0.466334879398346,-0.190621063113213,0.863825917243958,\r\n0.293607711791992,-0.14343486726284,0.945103585720062,-0.177391916513443,0.154893234372139,0.971874535083771,-0.228308826684952,0.192634359002113,0.954341113567352,-0.240260392427444,0.135954365134239,0.961140632629395,-0.16071680188179,0.0744341984391212,0.984189689159393,-0.177391916513443,0.154893234372139,0.971874535083771,0.0118759525939822,0.0527588278055191,0.998536586761475,0.273959994316101,-0.0724981427192688,0.959004640579224,0.0118759525939822,0.0527588278055191,0.998536586761475,0.219923168420792,-0.0924736708402634,0.971124231815338,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.113663963973522,-0.518281936645508,0.847622692584991,0.0383730679750443,-0.512682557106018,0.857720196247101,-0.0450594238936901,-0.394887834787369,0.91762363910675,0.0973838344216347,-0.466481178998947,0.879153907299042,0.0173398144543171,-0.999464869499207,0.0277342367917299,-0.0175798106938601,-0.996267914772034,0.0845049247145653,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.278668284416199,0.141343146562576,0.949929475784302,-0.278668284416199,0.141343146562576,0.949929475784302,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.319305539131165,0.286774158477783,0.903218924999237,-0.120868302881718,0.836556077003479,0.534382462501526,-0.288873732089996,0.798907995223999,0.527539432048798,-0.289380580186844,0.61431747674942,0.734079539775848,-0.120868302881718,0.836556077003479,0.534382462501526,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.11702997982502,0.907395303249359,0.403655350208282,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.146152347326279,0.911755084991455,0.383851498365402,-0.11702997982502,0.907395303249359,0.403655350208282,\r\n-0.436210960149765,0.525105237960815,0.730742275714874,-0.431750446557999,0.540298283100128,0.722266674041748,-0.414161741733551,0.580064117908478,0.7014240026474,-0.330352991819382,0.442888677120209,0.833496451377869,-0.319305539131165,0.286774158477783,0.903218924999237,-0.176161035895348,0.223729267716408,0.958599150180817,-0.252534747123718,0.402767956256866,0.879774987697601,-0.414161741733551,0.580064117908478,0.7014240026474,-0.330352991819382,0.442888677120209,0.833496451377869,-0.289380580186844,0.61431747674942,0.734079539775848,-0.436210960149765,0.525105237960815,0.730742275714874,-0.255754560232162,0.682918906211853,0.684259593486786,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.21694353222847,-0.913355946540833,0.344552308320999,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.157330855727196,-0.590206384658813,0.791772246360779,-0.364603221416473,-0.0935108289122581,0.926455676555634,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.377853274345398,-0.433413714170456,0.818156123161316,-0.157330855727196,-0.590206384658813,0.791772246360779,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.772599220275879,0.247870966792107,0.584508657455444,-0.477936893701553,0.688281357288361,0.545751810073853,-0.76361483335495,0.170142322778702,0.622851371765137,-0.477936893701553,0.688281357288361,0.545751810073853,-0.146152347326279,0.911755084991455,0.383851498365402,-0.433416396379471,0.677848279476166,0.593861699104309,-0.772599220275879,0.247870966792107,0.584508657455444,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.445694237947464,-0.296582847833633,0.84462708234787,-0.384720206260681,-0.29187136888504,0.875671982765198,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.384720206260681,-0.29187136888504,0.875671982765198,\r\n-0.619708657264709,-0.268308311700821,0.737544357776642,-0.285956233739853,-0.283978879451752,0.915196657180786,0.102541148662567,-0.208203002810478,0.972695589065552,-0.0695150643587112,-0.238347440958023,0.96868884563446,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.0695150643587112,-0.238347440958023,0.96868884563446,-0.445694237947464,-0.296582847833633,0.84462708234787,0.307048887014389,-0.157957285642624,0.938493549823761,0.11600086838007,-0.136004462838173,0.983893573284149,0.361560612916946,-0.0988655164837837,0.927091896533966,0.102541148662567,-0.208203002810478,0.972695589065552,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.0241483151912689,-0.229352712631226,0.973043739795685,0.307048887014389,-0.157957285642624,0.938493549823761,-0.0241483151912689,-0.229352712631226,0.973043739795685,0.11600086838007,-0.136004462838173,0.983893573284149,-0.746733009815216,0.0201941058039665,0.664817154407501,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.55163186788559,-0.207157373428345,0.80795294046402,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.564785242080688,-0.122736498713493,0.816059648990631,-0.619708657264709,-0.268308311700821,0.737544357776642,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.797156691551209,-0.251889377832413,0.548719346523285,0.226194575428963,-0.0537937991321087,0.972595453262329,0.11600086838007,-0.136004462838173,0.983893573284149,-0.0871662572026253,-0.119820781052113,0.988961577415466,0.169184565544128,-0.0835080444812775,0.982040166854858,0.226194575428963,-0.0537937991321087,0.972595453262329,-0.0871662572026253,-0.119820781052113,0.988961577415466,0.206172972917557,-0.0262801703065634,0.978162527084351,0.169184565544128,-0.0835080444812775,0.982040166854858,0.317139148712158,-0.133206874132156,0.938977420330048,\r\n0.265547335147858,-0.157824918627739,0.951091885566711,0.317139148712158,-0.133206874132156,0.938977420330048,0.386125892400742,-0.226190239191055,0.894284427165985,0.386125892400742,-0.226190239191055,0.894284427165985,0.237868815660477,-0.265816956758499,0.9342160820961,0.265547335147858,-0.157824918627739,0.951091885566711,0.0580896772444248,-0.194635882973671,0.979153871536255,0.237868815660477,-0.265816956758499,0.9342160820961,0.29196360707283,-0.228741630911827,0.928673446178436,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.126916840672493,-0.147845029830933,0.980833292007446,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.352481216192245,-0.0564413890242577,0.93411523103714,-0.217976301908493,-0.0267680250108242,0.975586891174316,-0.325964152812958,-0.105690851807594,0.939455509185791,0.0580896772444248,-0.194635882973671,0.979153871536255,0.0575676783919334,-0.0663142502307892,0.996136665344238,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.291539967060089,0.03199552744627,0.956023335456848,-0.240260392427444,0.135954365134239,0.961140632629395,-0.352481216192245,-0.0564413890242577,0.93411523103714,0.0157685093581676,-0.355926632881165,0.934380769729614,-0.0047671115025878,-0.201478838920593,0.979481101036072,-0.141345337033272,-0.273588925600052,0.951404452323914,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.141345337033272,-0.273588925600052,0.951404452323914,0.193221494555473,-0.248928979039192,0.949051976203918,0.144673675298691,-0.0946375802159309,0.984943270683289,-0.0047671115025878,-0.201478838920593,0.979481101036072,0.293607711791992,-0.14343486726284,0.945103585720062,0.144673675298691,-0.0946375802159309,0.984943270683289,0.39519727230072,-0.215044096112251,0.893070578575134,0.273959994316101,-0.0724981427192688,0.959004640579224,0.219923168420792,-0.0924736708402634,0.971124231815338,0.398428201675415,-0.211757823824883,0.892419993877411,0.398428201675415,-0.211757823824883,0.892419993877411,\r\n0.414411991834641,-0.248218670487404,0.875585556030273,0.466334879398346,-0.190621063113213,0.863825917243958,0.414411991834641,-0.248218670487404,0.875585556030273,0.293607711791992,-0.14343486726284,0.945103585720062,0.466334879398346,-0.190621063113213,0.863825917243958,-0.177391916513443,0.154893234372139,0.971874535083771,-0.240260392427444,0.135954365134239,0.961140632629395,-0.291539967060089,0.03199552744627,0.956023335456848,-0.177391916513443,0.154893234372139,0.971874535083771,0.115563131868839,-0.0767128020524979,0.990333378314972,0.0118759525939822,0.0527588278055191,0.998536586761475,0.219923168420792,-0.0924736708402634,0.971124231815338,0.0118759525939822,0.0527588278055191,0.998536586761475,0.115563131868839,-0.0767128020524979,0.990333378314972,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.127352818846703,-0.433258771896362,0.89222639799118,-0.0450594238936901,-0.394887834787369,0.91762363910675,0.126714363694191,-0.397639006376266,0.908749997615814,0.0973838344216347,-0.466481178998947,0.879153907299042,-0.0175798106938601,-0.996267914772034,0.0845049247145653,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.0475020594894886,-0.994978845119476,0.0880940034985542,-0.278668284416199,0.141343146562576,0.949929475784302,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.319305539131165,0.286774158477783,0.903218924999237,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.176161035895348,0.223729267716408,0.958599150180817,-0.13632433116436,0.844241857528687,0.518335163593292,-0.120868302881718,0.836556077003479,0.534382462501526,-0.289380580186844,0.61431747674942,0.734079539775848,-0.13632433116436,0.844241857528687,0.518335163593292,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.120868302881718,0.836556077003479,0.534382462501526,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.2931989133358,0.83392721414566,0.467546463012695,\r\n-0.146152347326279,0.911755084991455,0.383851498365402,-0.373917877674103,0.504134178161621,0.778481841087341,-0.436210960149765,0.525105237960815,0.730742275714874,-0.414161741733551,0.580064117908478,0.7014240026474,-0.252534747123718,0.402767956256866,0.879774987697601,-0.330352991819382,0.442888677120209,0.833496451377869,-0.176161035895348,0.223729267716408,0.958599150180817,-0.373917877674103,0.504134178161621,0.778481841087341,-0.414161741733551,0.580064117908478,0.7014240026474,-0.252534747123718,0.402767956256866,0.879774987697601,-0.390548378229141,0.554526627063751,0.734827876091003,-0.255754560232162,0.682918906211853,0.684259593486786,-0.436210960149765,0.525105237960815,0.730742275714874,-0.289380580186844,0.61431747674942,0.734079539775848,-0.255754560232162,0.682918906211853,0.684259593486786,-0.13632433116436,0.844241857528687,0.518335163593292,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.229966551065445,-0.810457944869995,0.538770020008087,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.157330855727196,-0.590206384658813,0.791772246360779,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.157330855727196,-0.590206384658813,0.791772246360779,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.477936893701553,0.688281357288361,0.545751810073853,-0.433416396379471,0.677848279476166,0.593861699104309,-0.76361483335495,0.170142322778702,0.622851371765137,-0.772599220275879,0.247870966792107,0.584508657455444,-0.76361483335495,0.170142322778702,0.622851371765137,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.433416396379471,0.677848279476166,0.593861699104309,-0.146152347326279,0.911755084991455,0.383851498365402,-0.2931989133358,0.83392721414566,0.467546463012695,-0.772845387458801,-0.0688670352101326,0.630846381187439,\r\n-0.746733009815216,0.0201941058039665,0.664817154407501,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.723026216030121,-0.301338523626328,0.621633350849152,-0.445694237947464,-0.296582847833633,0.84462708234787,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.619708657264709,-0.268308311700821,0.737544357776642,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.445694237947464,-0.296582847833633,0.84462708234787,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.0241483151912689,-0.229352712631226,0.973043739795685,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.393083304166794,-0.254169464111328,0.883675992488861,0.11600086838007,-0.136004462838173,0.983893573284149,-0.0241483151912689,-0.229352712631226,0.973043739795685,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.739116430282593,-0.140131831169128,0.658839762210846,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.846360385417938,-0.264100879430771,0.462519913911819,0.11600086838007,-0.136004462838173,0.983893573284149,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.0871662572026253,-0.119820781052113,0.988961577415466,-0.227313667535782,-0.151371970772743,0.961984872817993,0.169184565544128,-0.0835080444812775,0.982040166854858,-0.0871662572026253,-0.119820781052113,0.988961577415466,0.169184565544128,-0.0835080444812775,0.982040166854858,0.147477179765701,-0.125765100121498,0.981036961078644,0.317139148712158,-0.133206874132156,0.938977420330048,0.386125892400742,-0.226190239191055,0.894284427165985,0.317139148712158,-0.133206874132156,0.938977420330048,\r\n0.393700629472733,-0.13298237323761,0.909568667411804,0.29196360707283,-0.228741630911827,0.928673446178436,0.237868815660477,-0.265816956758499,0.9342160820961,0.386125892400742,-0.226190239191055,0.894284427165985,0.261158466339111,-0.114368878304958,0.958496689796448,0.0580896772444248,-0.194635882973671,0.979153871536255,0.29196360707283,-0.228741630911827,0.928673446178436,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.352481216192245,-0.0564413890242577,0.93411523103714,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.311173170804977,-0.0647886469960213,0.948142170906067,0.0580896772444248,-0.194635882973671,0.979153871536255,0.261158466339111,-0.114368878304958,0.958496689796448,0.0575676783919334,-0.0663142502307892,0.996136665344238,0.0575676783919334,-0.0663142502307892,0.996136665344238,0.07610734552145,0.0711347386240959,0.994558930397034,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.291539967060089,0.03199552744627,0.956023335456848,-0.352481216192245,-0.0564413890242577,0.93411523103714,-0.311173170804977,-0.0647886469960213,0.948142170906067,-0.0047671115025878,-0.201478838920593,0.979481101036072,0.00341219757683575,-0.167559832334518,0.985855996608734,-0.141345337033272,-0.273588925600052,0.951404452323914,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.141345337033272,-0.273588925600052,0.951404452323914,-0.150248140096664,-0.236867278814316,0.959853768348694,-0.0047671115025878,-0.201478838920593,0.979481101036072,0.144673675298691,-0.0946375802159309,0.984943270683289,0.00341219757683575,-0.167559832334518,0.985855996608734,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.144673675298691,-0.0946375802159309,0.984943270683289,0.293607711791992,-0.14343486726284,0.945103585720062,0.398428201675415,-0.211757823824883,0.892419993877411,0.219923168420792,-0.0924736708402634,0.971124231815338,0.115563131868839,-0.0767128020524979,0.990333378314972,\r\n0.414411991834641,-0.248218670487404,0.875585556030273,0.398428201675415,-0.211757823824883,0.892419993877411,0.408219397068024,-0.20943857729435,0.888533771038055,0.414411991834641,-0.248218670487404,0.875585556030273,0.21330814063549,-0.217368245124817,0.952497005462646,0.293607711791992,-0.14343486726284,0.945103585720062,-0.177391916513443,0.154893234372139,0.971874535083771,-0.291539967060089,0.03199552744627,0.956023335456848,-0.0524028800427914,-0.0567919909954071,0.997009813785553,0.115563131868839,-0.0767128020524979,0.990333378314972,-0.177391916513443,0.154893234372139,0.971874535083771,-0.0524028800427914,-0.0567919909954071,0.997009813785553,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.0407275594770908,-0.300698399543762,0.952849209308624,-0.0450594238936901,-0.394887834787369,0.91762363910675,-0.0407275594770908,-0.300698399543762,0.952849209308624,0.126714363694191,-0.397639006376266,0.908749997615814,0.126714363694191,-0.397639006376266,0.908749997615814,0.0168348383158445,-0.399657636880875,0.916509807109833,0.0973838344216347,-0.466481178998947,0.879153907299042,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.0134741431102157,-0.943760275840759,0.330355703830719,-0.00889919977635145,-0.0740088149905205,0.997217833995819,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.176161035895348,0.223729267716408,0.958599150180817,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.00607497710734606,0.0896936282515526,0.995950818061829,-0.13632433116436,0.844241857528687,0.518335163593292,-0.0546527616679668,0.897554218769073,0.437503606081009,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.353324681520462,0.784324526786804,0.509898543357849,-0.2931989133358,0.83392721414566,0.467546463012695,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.373917877674103,0.504134178161621,0.778481841087341,\r\n-0.390548378229141,0.554526627063751,0.734827876091003,-0.436210960149765,0.525105237960815,0.730742275714874,-0.058765284717083,0.183881565928459,0.981190145015717,-0.252534747123718,0.402767956256866,0.879774987697601,-0.176161035895348,0.223729267716408,0.958599150180817,-0.373917877674103,0.504134178161621,0.778481841087341,-0.252534747123718,0.402767956256866,0.879774987697601,-0.155815795063972,0.347256392240524,0.924734771251678,-0.197902977466583,0.610064446926117,0.767238974571228,-0.255754560232162,0.682918906211853,0.684259593486786,-0.390548378229141,0.554526627063751,0.734827876091003,-0.13632433116436,0.844241857528687,0.518335163593292,-0.255754560232162,0.682918906211853,0.684259593486786,-0.0317212641239166,0.855202794075012,0.517321705818176,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.0711373761296272,-0.952527225017548,0.296025782823563,-0.0318503193557262,-0.821918725967407,0.568713426589966,-0.163129508495331,-0.340247809886932,0.926077783107758,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.00889919977635145,-0.0740088149905205,0.997217833995819,-0.160343259572983,-0.0881806835532188,0.98311448097229,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.76361483335495,0.170142322778702,0.622851371765137,-0.433416396379471,0.677848279476166,0.593861699104309,-0.67246425151825,0.42130634188652,0.608516752719879,-0.76361483335495,0.170142322778702,0.622851371765137,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.433416396379471,0.677848279476166,0.593861699104309,-0.2931989133358,0.83392721414566,0.467546463012695,-0.67246425151825,0.42130634188652,0.608516752719879,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.445694237947464,-0.296582847833633,0.84462708234787,\r\n-0.723026216030121,-0.301338523626328,0.621633350849152,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.723026216030121,-0.301338523626328,0.621633350849152,-0.663960099220276,-0.266481339931488,0.698673367500305,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.285956233739853,-0.283978879451752,0.915196657180786,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.0241483151912689,-0.229352712631226,0.973043739795685,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.772845387458801,-0.0688670352101326,0.630846381187439,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.576873660087585,-0.220574006438255,0.78648829460144,-0.0871662572026253,-0.119820781052113,0.988961577415466,0.147477179765701,-0.125765100121498,0.981036961078644,0.169184565544128,-0.0835080444812775,0.982040166854858,-0.227313667535782,-0.151371970772743,0.961984872817993,-0.227313667535782,-0.151371970772743,0.961984872817993,-0.0871662572026253,-0.119820781052113,0.988961577415466,-0.576873660087585,-0.220574006438255,0.78648829460144,0.317139148712158,-0.133206874132156,0.938977420330048,0.147477179765701,-0.125765100121498,0.981036961078644,0.393700629472733,-0.13298237323761,0.909568667411804,0.44231653213501,-0.130667001008987,0.8872891664505,0.386125892400742,-0.226190239191055,0.894284427165985,0.393700629472733,-0.13298237323761,0.909568667411804,\r\n0.44231653213501,-0.130667001008987,0.8872891664505,0.29196360707283,-0.228741630911827,0.928673446178436,0.386125892400742,-0.226190239191055,0.894284427165985,0.261158466339111,-0.114368878304958,0.958496689796448,0.29196360707283,-0.228741630911827,0.928673446178436,0.44231653213501,-0.130667001008987,0.8872891664505,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.152664631605148,0.0801939368247986,0.985018968582153,-0.325964152812958,-0.105690851807594,0.939455509185791,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.311173170804977,-0.0647886469960213,0.948142170906067,0.261158466339111,-0.114368878304958,0.958496689796448,0.333060890436172,0.0180662851780653,0.942732155323029,0.0575676783919334,-0.0663142502307892,0.996136665344238,0.333060890436172,0.0180662851780653,0.942732155323029,0.07610734552145,0.0711347386240959,0.994558930397034,0.0575676783919334,-0.0663142502307892,0.996136665344238,0.07610734552145,0.0711347386240959,0.994558930397034,-0.152664631605148,0.0801939368247986,0.985018968582153,-0.153898611664772,-0.0720584392547607,0.985455572605133,-0.291539967060089,0.03199552744627,0.956023335456848,-0.311173170804977,-0.0647886469960213,0.948142170906067,-0.0524028800427914,-0.0567919909954071,0.997009813785553,0.00341219757683575,-0.167559832334518,0.985855996608734,-0.150248140096664,-0.236867278814316,0.959853768348694,-0.141345337033272,-0.273588925600052,0.951404452323914,-0.0407275594770908,-0.300698399543762,0.952849209308624,-0.156948953866959,-0.304449766874313,0.939509034156799,-0.150248140096664,-0.236867278814316,0.959853768348694,0.00341219757683575,-0.167559832334518,0.985855996608734,0.144673675298691,-0.0946375802159309,0.984943270683289,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.21330814063549,-0.217368245124817,0.952497005462646,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.293607711791992,-0.14343486726284,0.945103585720062,0.398428201675415,-0.211757823824883,0.892419993877411,\r\n0.115563131868839,-0.0767128020524979,0.990333378314972,0.257168292999268,-0.217758536338806,0.941512405872345,0.398428201675415,-0.211757823824883,0.892419993877411,0.257168292999268,-0.217758536338806,0.941512405872345,0.408219397068024,-0.20943857729435,0.888533771038055,0.408219397068024,-0.20943857729435,0.888533771038055,0.455505281686783,-0.17781800031662,0.872293293476105,0.414411991834641,-0.248218670487404,0.875585556030273,0.356207579374313,-0.198406040668488,0.913099706172943,0.21330814063549,-0.217368245124817,0.952497005462646,0.414411991834641,-0.248218670487404,0.875585556030273,-0.0524028800427914,-0.0567919909954071,0.997009813785553,0.257168292999268,-0.217758536338806,0.941512405872345,0.115563131868839,-0.0767128020524979,0.990333378314972,0.126714363694191,-0.397639006376266,0.908749997615814,-0.0407275594770908,-0.300698399543762,0.952849209308624,0.173064768314362,-0.296894252300262,0.939096510410309,0.126714363694191,-0.397639006376266,0.908749997615814,0.0831922739744186,-0.274438142776489,0.957999289035797,0.0168348383158445,-0.399657636880875,0.916509807109833,-0.0106217451393604,-0.426216453313828,0.904558777809143,0.0973838344216347,-0.466481178998947,0.879153907299042,0.0168348383158445,-0.399657636880875,0.916509807109833,0.0134741431102157,-0.943760275840759,0.330355703830719,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.0172833688557148,-0.984961867332459,0.171905055642128,-0.0711373761296272,-0.952527225017548,0.296025782823563,0.0134741431102157,-0.943760275840759,0.330355703830719,-0.0318503193557262,-0.821918725967407,0.568713426589966,-0.137755572795868,0.0957367643713951,0.985828459262848,-0.00889919977635145,-0.0740088149905205,0.997217833995819,-0.00607497710734606,0.0896936282515526,0.995950818061829,-0.058765284717083,0.183881565928459,0.981190145015717,-0.176161035895348,0.223729267716408,0.958599150180817,-0.00607497710734606,0.0896936282515526,0.995950818061829,-0.13632433116436,0.844241857528687,0.518335163593292,-0.0317212641239166,0.855202794075012,0.517321705818176,\r\n-0.0546527616679668,0.897554218769073,0.437503606081009,-0.0705331042408943,0.916513979434967,0.393734812736511,-0.0546527616679668,0.897554218769073,0.437503606081009,-0.353324681520462,0.784324526786804,0.509898543357849,-0.353324681520462,0.784324526786804,0.509898543357849,-0.67246425151825,0.42130634188652,0.608516752719879,-0.2931989133358,0.83392721414566,0.467546463012695,-0.373917877674103,0.504134178161621,0.778481841087341,-0.172664120793343,0.467684328556061,0.866866946220398,-0.390548378229141,0.554526627063751,0.734827876091003,-0.058765284717083,0.183881565928459,0.981190145015717,-0.155815795063972,0.347256392240524,0.924734771251678,-0.252534747123718,0.402767956256866,0.879774987697601,-0.172664120793343,0.467684328556061,0.866866946220398,-0.373917877674103,0.504134178161621,0.778481841087341,-0.155815795063972,0.347256392240524,0.924734771251678,-0.197902977466583,0.610064446926117,0.767238974571228,0.0233260430395603,0.762180030345917,0.646944582462311,-0.255754560232162,0.682918906211853,0.684259593486786,-0.390548378229141,0.554526627063751,0.734827876091003,-0.172664120793343,0.467684328556061,0.866866946220398,-0.197902977466583,0.610064446926117,0.767238974571228,-0.255754560232162,0.682918906211853,0.684259593486786,0.0233260430395603,0.762180030345917,0.646944582462311,-0.0317212641239166,0.855202794075012,0.517321705818176,-0.0558799803256989,-0.741046607494354,0.669124186038971,-0.0318503193557262,-0.821918725967407,0.568713426589966,-0.0714400112628937,-0.47624483704567,0.876405775547028,0.102423794567585,-0.329578906297684,0.938555836677551,-0.00889919977635145,-0.0740088149905205,0.997217833995819,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.76361483335495,0.170142322778702,0.622851371765137,-0.67246425151825,0.42130634188652,0.608516752719879,-0.805970370769501,-0.0258600171655416,0.591390550136566,-0.76361483335495,0.170142322778702,0.622851371765137,-0.805970370769501,-0.0258600171655416,0.591390550136566,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.826086044311523,-0.0564828552305698,0.56070613861084,\r\n-0.824592530727386,-0.057133860886097,0.562834501266479,-0.821983277797699,-0.0318028517067432,0.568622767925262,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.723026216030121,-0.301338523626328,0.621633350849152,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.723026216030121,-0.301338523626328,0.621633350849152,-0.797156691551209,-0.251889377832413,0.548719346523285,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.47792860865593,-0.313395321369171,0.82058972120285,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.784388720989227,-0.219320580363274,0.580200493335724,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.816469550132751,-0.117876440286636,0.565227806568146,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.576873660087585,-0.220574006438255,0.78648829460144,0.147477179765701,-0.125765100121498,0.981036961078644,-0.227313667535782,-0.151371970772743,0.961984872817993,-0.350826323032379,-0.155140668153763,0.923499941825867,-0.576873660087585,-0.220574006438255,0.78648829460144,-0.681823194026947,-0.196932435035706,0.704510092735291,\r\n-0.227313667535782,-0.151371970772743,0.961984872817993,0.147477179765701,-0.125765100121498,0.981036961078644,0.0846942514181137,-0.190347999334335,0.97805643081665,0.393700629472733,-0.13298237323761,0.909568667411804,0.44231653213501,-0.130667001008987,0.8872891664505,0.393700629472733,-0.13298237323761,0.909568667411804,0.430589586496353,-0.0537573732435703,0.900945425033569,0.261158466339111,-0.114368878304958,0.958496689796448,0.44231653213501,-0.130667001008987,0.8872891664505,0.333060890436172,0.0180662851780653,0.942732155323029,-0.152664631605148,0.0801939368247986,0.985018968582153,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.311173170804977,-0.0647886469960213,0.948142170906067,-0.338354170322418,0.0282481256872416,0.940594673156738,0.333060890436172,0.0180662851780653,0.942732155323029,0.313508599996567,0.145011425018311,0.938447594642639,0.07610734552145,0.0711347386240959,0.994558930397034,0.07610734552145,0.0711347386240959,0.994558930397034,0.153654903173447,0.127233162522316,0.979898869991302,-0.152664631605148,0.0801939368247986,0.985018968582153,0.0982541441917419,-0.118523202836514,0.988078057765961,-0.0524028800427914,-0.0567919909954071,0.997009813785553,-0.311173170804977,-0.0647886469960213,0.948142170906067,0.00341219757683575,-0.167559832334518,0.985855996608734,-0.0407275594770908,-0.300698399543762,0.952849209308624,-0.150248140096664,-0.236867278814316,0.959853768348694,0.00341219757683575,-0.167559832334518,0.985855996608734,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.0708308219909668,-0.203226417303085,0.97656637430191,0.21330814063549,-0.217368245124817,0.952497005462646,0.0708308219909668,-0.203226417303085,0.97656637430191,0.0994726344943047,-0.0982692241668701,0.990175902843475,0.0982541441917419,-0.118523202836514,0.988078057765961,0.408219397068024,-0.20943857729435,0.888533771038055,0.257168292999268,-0.217758536338806,0.941512405872345,\r\n0.362617462873459,0.00429626507684588,0.931928098201752,0.455505281686783,-0.17781800031662,0.872293293476105,0.408219397068024,-0.20943857729435,0.888533771038055,0.356207579374313,-0.198406040668488,0.913099706172943,0.414411991834641,-0.248218670487404,0.875585556030273,0.455505281686783,-0.17781800031662,0.872293293476105,0.179731979966164,-0.249402418732643,0.951574921607971,0.21330814063549,-0.217368245124817,0.952497005462646,0.356207579374313,-0.198406040668488,0.913099706172943,0.0982541441917419,-0.118523202836514,0.988078057765961,0.257168292999268,-0.217758536338806,0.941512405872345,-0.0524028800427914,-0.0567919909954071,0.997009813785553,0.00341219757683575,-0.167559832334518,0.985855996608734,0.173064768314362,-0.296894252300262,0.939096510410309,-0.0407275594770908,-0.300698399543762,0.952849209308624,0.0831922739744186,-0.274438142776489,0.957999289035797,0.126714363694191,-0.397639006376266,0.908749997615814,0.173064768314362,-0.296894252300262,0.939096510410309,0.0831922739744186,-0.274438142776489,0.957999289035797,-0.200614348053932,-0.228392943739891,0.952675461769104,0.0168348383158445,-0.399657636880875,0.916509807109833,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.0106217451393604,-0.426216453313828,0.904558777809143,0.0168348383158445,-0.399657636880875,0.916509807109833,0.0134741431102157,-0.943760275840759,0.330355703830719,0.0172833688557148,-0.984961867332459,0.171905055642128,0.0643405988812447,-0.898112237453461,0.435033947229385,-0.0318503193557262,-0.821918725967407,0.568713426589966,0.0134741431102157,-0.943760275840759,0.330355703830719,0.0967430025339127,-0.715134680271149,0.69225937128067,-0.00889919977635145,-0.0740088149905205,0.997217833995819,0.140494927763939,-0.0047673131339252,0.99006986618042,-0.00607497710734606,0.0896936282515526,0.995950818061829,-0.00607497710734606,0.0896936282515526,0.995950818061829,0.104603014886379,0.0956704244017601,0.989901661872864,-0.058765284717083,0.183881565928459,0.981190145015717,0.0458277054131031,0.874239981174469,0.483326256275177,\r\n-0.0546527616679668,0.897554218769073,0.437503606081009,-0.0317212641239166,0.855202794075012,0.517321705818176,-0.356016933917999,0.688874661922455,0.6314297914505,-0.353324681520462,0.784324526786804,0.509898543357849,-0.0546527616679668,0.897554218769073,0.437503606081009,-0.67246425151825,0.42130634188652,0.608516752719879,-0.353324681520462,0.784324526786804,0.509898543357849,-0.701355397701263,0.267240345478058,0.660819947719574,-0.058765284717083,0.183881565928459,0.981190145015717,0.0555927604436874,0.26450103521347,0.962781667709351,-0.155815795063972,0.347256392240524,0.924734771251678,-0.172664120793343,0.467684328556061,0.866866946220398,-0.155815795063972,0.347256392240524,0.924734771251678,0.0555927604436874,0.26450103521347,0.962781667709351,-0.197902977466583,0.610064446926117,0.767238974571228,0.0300147235393524,0.552456498146057,0.83300107717514,0.0233260430395603,0.762180030345917,0.646944582462311,-0.197902977466583,0.610064446926117,0.767238974571228,-0.172664120793343,0.467684328556061,0.866866946220398,0.0300147235393524,0.552456498146057,0.83300107717514,-0.0317212641239166,0.855202794075012,0.517321705818176,0.0233260430395603,0.762180030345917,0.646944582462311,0.0458277054131031,0.874239981174469,0.483326256275177,-0.0318503193557262,-0.821918725967407,0.568713426589966,0.0967430025339127,-0.715134680271149,0.69225937128067,-0.0714400112628937,-0.47624483704567,0.876405775547028,-0.00889919977635145,-0.0740088149905205,0.997217833995819,0.102423794567585,-0.329578906297684,0.938555836677551,0.140494927763939,-0.0047673131339252,0.99006986618042,0.102423794567585,-0.329578906297684,0.938555836677551,-0.0714400112628937,-0.47624483704567,0.876405775547028,0.0967430025339127,-0.715134680271149,0.69225937128067,-0.67246425151825,0.42130634188652,0.608516752719879,-0.701355397701263,0.267240345478058,0.660819947719574,-0.805970370769501,-0.0258600171655416,0.591390550136566,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.805970370769501,-0.0258600171655416,0.591390550136566,\r\n-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.68075954914093,-0.354263812303543,0.641142249107361,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.393083304166794,-0.254169464111328,0.883675992488861,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.802007973194122,-0.211934104561806,0.558450520038605,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.824592530727386,-0.057133860886097,0.562834501266479,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.846360385417938,-0.264100879430771,0.462519913911819,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.823355138301849,-0.314300507307053,0.472547739744186,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.576873660087585,-0.220574006438255,0.78648829460144,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.681823194026947,-0.196932435035706,0.704510092735291,-0.350826323032379,-0.155140668153763,0.923499941825867,-0.227313667535782,-0.151371970772743,0.961984872817993,0.147477179765701,-0.125765100121498,0.981036961078644,\r\n-0.350826323032379,-0.155140668153763,0.923499941825867,0.0846942514181137,-0.190347999334335,0.97805643081665,-0.576873660087585,-0.220574006438255,0.78648829460144,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.681823194026947,-0.196932435035706,0.704510092735291,0.393700629472733,-0.13298237323761,0.909568667411804,0.0846942514181137,-0.190347999334335,0.97805643081665,0.311309576034546,-0.164290025830269,0.93599945306778,0.430589586496353,-0.0537573732435703,0.900945425033569,0.393700629472733,-0.13298237323761,0.909568667411804,0.311309576034546,-0.164290025830269,0.93599945306778,0.333060890436172,0.0180662851780653,0.942732155323029,0.44231653213501,-0.130667001008987,0.8872891664505,0.430589586496353,-0.0537573732435703,0.900945425033569,-0.104161158204079,0.0582981146872044,0.992850303649902,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.152664631605148,0.0801939368247986,0.985018968582153,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.339970886707306,0.0639315024018288,0.938260316848755,-0.154522150754929,0.0463163778185844,0.986903011798859,0.0982541441917419,-0.118523202836514,0.988078057765961,-0.311173170804977,-0.0647886469960213,0.948142170906067,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.338354170322418,0.0282481256872416,0.940594673156738,-0.339970886707306,0.0639315024018288,0.938260316848755,0.333060890436172,0.0180662851780653,0.942732155323029,0.295775443315506,0.0390343852341175,0.954459547996521,0.313508599996567,0.145011425018311,0.938447594642639,0.313508599996567,0.145011425018311,0.938447594642639,0.153654903173447,0.127233162522316,0.979898869991302,0.07610734552145,0.0711347386240959,0.994558930397034,-0.104161158204079,0.0582981146872044,0.992850303649902,-0.152664631605148,0.0801939368247986,0.985018968582153,0.153654903173447,0.127233162522316,0.979898869991302,0.0708308219909668,-0.203226417303085,0.97656637430191,0.06996189057827,-0.273859441280365,0.959221720695496,0.00341219757683575,-0.167559832334518,0.985855996608734,\r\n0.179731979966164,-0.249402418732643,0.951574921607971,0.0708308219909668,-0.203226417303085,0.97656637430191,0.21330814063549,-0.217368245124817,0.952497005462646,0.0982541441917419,-0.118523202836514,0.988078057765961,0.362617462873459,0.00429626507684588,0.931928098201752,0.408219397068024,-0.20943857729435,0.888533771038055,0.362617462873459,0.00429626507684588,0.931928098201752,0.447360903024673,-0.045225877314806,0.893209099769592,0.455505281686783,-0.17781800031662,0.872293293476105,0.356207579374313,-0.198406040668488,0.913099706172943,0.455505281686783,-0.17781800031662,0.872293293476105,0.447360903024673,-0.045225877314806,0.893209099769592,0.356207579374313,-0.198406040668488,0.913099706172943,0.355810612440109,-0.0515304356813431,0.933136284351349,0.179731979966164,-0.249402418732643,0.951574921607971,0.172075927257538,-0.248609483242035,0.953196227550507,0.173064768314362,-0.296894252300262,0.939096510410309,0.00341219757683575,-0.167559832334518,0.985855996608734,0.189177721738815,-0.215131804347038,0.958086609840393,0.0831922739744186,-0.274438142776489,0.957999289035797,0.173064768314362,-0.296894252300262,0.939096510410309,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.200614348053932,-0.228392943739891,0.952675461769104,0.0831922739744186,-0.274438142776489,0.957999289035797,0.0168348383158445,-0.399657636880875,0.916509807109833,-0.200614348053932,-0.228392943739891,0.952675461769104,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.0106217451393604,-0.426216453313828,0.904558777809143,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.144637927412987,-0.326926231384277,0.933915913105011,0.0643405988812447,-0.898112237453461,0.435033947229385,0.0967430025339127,-0.715134680271149,0.69225937128067,0.0134741431102157,-0.943760275840759,0.330355703830719,0.140494927763939,-0.0047673131339252,0.99006986618042,0.104603014886379,0.0956704244017601,0.989901661872864,-0.00607497710734606,0.0896936282515526,0.995950818061829,0.104603014886379,0.0956704244017601,0.989901661872864,\r\n0.0555927604436874,0.26450103521347,0.962781667709351,-0.058765284717083,0.183881565928459,0.981190145015717,-0.0546527616679668,0.897554218769073,0.437503606081009,0.0458277054131031,0.874239981174469,0.483326256275177,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.356016933917999,0.688874661922455,0.6314297914505,-0.701355397701263,0.267240345478058,0.660819947719574,-0.353324681520462,0.784324526786804,0.509898543357849,-0.0546527616679668,0.897554218769073,0.437503606081009,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.356016933917999,0.688874661922455,0.6314297914505,-0.172664120793343,0.467684328556061,0.866866946220398,0.0555927604436874,0.26450103521347,0.962781667709351,0.0538966991007328,0.421619653701782,0.905169546604156,0.0300147235393524,0.552456498146057,0.83300107717514,0.164258480072021,0.633351862430573,0.756230354309082,0.0233260430395603,0.762180030345917,0.646944582462311,-0.172664120793343,0.467684328556061,0.866866946220398,0.0538966991007328,0.421619653701782,0.905169546604156,0.0300147235393524,0.552456498146057,0.83300107717514,0.0233260430395603,0.762180030345917,0.646944582462311,0.173280224204063,0.784994602203369,0.594775021076202,0.0458277054131031,0.874239981174469,0.483326256275177,0.102423794567585,-0.329578906297684,0.938555836677551,0.232231959700584,-0.235388413071632,0.943748116493225,0.140494927763939,-0.0047673131339252,0.99006986618042,0.102423794567585,-0.329578906297684,0.938555836677551,0.0967430025339127,-0.715134680271149,0.69225937128067,0.232231959700584,-0.235388413071632,0.943748116493225,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.805970370769501,-0.0258600171655416,0.591390550136566,-0.701355397701263,0.267240345478058,0.660819947719574,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.826086044311523,-0.0564828552305698,0.56070613861084,\r\n-0.823355138301849,-0.314300507307053,0.472547739744186,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.802007973194122,-0.211934104561806,0.558450520038605,-0.808285117149353,-0.170589983463287,0.563537120819092,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.816214144229889,-0.263301938772202,0.514262914657593,-0.802007973194122,-0.211934104561806,0.558450520038605,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.812196254730225,-0.0905849188566208,0.576308488845825,-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.756577014923096,-0.277303367853165,0.592194139957428,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.681823194026947,-0.196932435035706,0.704510092735291,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.350826323032379,-0.155140668153763,0.923499941825867,-0.350826323032379,-0.155140668153763,0.923499941825867,\r\n-0.440117299556732,-0.259275048971176,0.859693646430969,0.0846942514181137,-0.190347999334335,0.97805643081665,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.681823194026947,-0.196932435035706,0.704510092735291,-0.826117038726807,-0.242748260498047,0.508530974388123,0.311309576034546,-0.164290025830269,0.93599945306778,0.0846942514181137,-0.190347999334335,0.97805643081665,-0.0469791293144226,-0.360823780298233,0.931449949741364,0.311309576034546,-0.164290025830269,0.93599945306778,0.199232205748558,-0.176230192184448,0.963975787162781,0.430589586496353,-0.0537573732435703,0.900945425033569,0.333060890436172,0.0180662851780653,0.942732155323029,0.430589586496353,-0.0537573732435703,0.900945425033569,0.295775443315506,0.0390343852341175,0.954459547996521,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.104161158204079,0.0582981146872044,0.992850303649902,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.339970886707306,0.0639315024018288,0.938260316848755,-0.336743742227554,0.0802155211567879,0.938173234462738,0.0982541441917419,-0.118523202836514,0.988078057765961,-0.154522150754929,0.0463163778185844,0.986903011798859,0.362617462873459,0.00429626507684588,0.931928098201752,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.339970886707306,0.0639315024018288,0.938260316848755,-0.174690589308739,0.0292537081986666,0.984188675880432,0.295775443315506,0.0390343852341175,0.954459547996521,0.241225987672806,0.0323146507143974,0.969930768013,0.313508599996567,0.145011425018311,0.938447594642639,0.241225987672806,0.0323146507143974,0.969930768013,0.153654903173447,0.127233162522316,0.979898869991302,0.313508599996567,0.145011425018311,0.938447594642639,0.142305195331573,-0.0422404743731022,0.988921105861664,-0.104161158204079,0.0582981146872044,0.992850303649902,0.153654903173447,0.127233162522316,0.979898869991302,0.0708308219909668,-0.203226417303085,0.97656637430191,0.179731979966164,-0.249402418732643,0.951574921607971,0.06996189057827,-0.273859441280365,0.959221720695496,\r\n0.06996189057827,-0.273859441280365,0.959221720695496,0.172075927257538,-0.248609483242035,0.953196227550507,0.00341219757683575,-0.167559832334518,0.985855996608734,0.362617462873459,0.00429626507684588,0.931928098201752,0.458694487810135,0.166139096021652,0.872924387454987,0.447360903024673,-0.045225877314806,0.893209099769592,0.356207579374313,-0.198406040668488,0.913099706172943,0.447360903024673,-0.045225877314806,0.893209099769592,0.355810612440109,-0.0515304356813431,0.933136284351349,0.179731979966164,-0.249402418732643,0.951574921607971,0.355810612440109,-0.0515304356813431,0.933136284351349,0.155769914388657,-0.0566526800394058,0.986167371273041,0.189177721738815,-0.215131804347038,0.958086609840393,0.173064768314362,-0.296894252300262,0.939096510410309,0.172075927257538,-0.248609483242035,0.953196227550507,0.0831922739744186,-0.274438142776489,0.957999289035797,0.189177721738815,-0.215131804347038,0.958086609840393,-0.0480612441897392,-0.101396970450878,0.993684411048889,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.200614348053932,-0.228392943739891,0.952675461769104,-0.258978396654129,-0.0869297310709953,0.96196323633194,0.0831922739744186,-0.274438142776489,0.957999289035797,-0.0480612441897392,-0.101396970450878,0.993684411048889,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.200614348053932,-0.228392943739891,0.952675461769104,-0.201746940612793,-0.310738831758499,0.928837716579437,-0.250261634588242,-0.227919191122055,0.940968573093414,-0.144637927412987,-0.326926231384277,0.933915913105011,0.0967430025339127,-0.715134680271149,0.69225937128067,0.0643405988812447,-0.898112237453461,0.435033947229385,0.186159580945969,-0.558516979217529,0.8083336353302,0.140494927763939,-0.0047673131339252,0.99006986618042,0.235850736498833,0.029978821054101,0.971326768398285,0.104603014886379,0.0956704244017601,0.989901661872864,0.104603014886379,0.0956704244017601,0.989901661872864,\r\n0.213349238038063,0.140481293201447,0.966823160648346,0.0555927604436874,0.26450103521347,0.962781667709351,0.0458277054131031,0.874239981174469,0.483326256275177,-0.126151546835899,0.814640820026398,0.566079437732697,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.701355397701263,0.267240345478058,0.660819947719574,-0.356016933917999,0.688874661922455,0.6314297914505,-0.356016933917999,0.688874661922455,0.6314297914505,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.406927347183228,0.621432244777679,0.66950124502182,0.0555927604436874,0.26450103521347,0.962781667709351,0.177126869559288,0.326664417982101,0.928394496440887,0.0538966991007328,0.421619653701782,0.905169546604156,0.0300147235393524,0.552456498146057,0.83300107717514,0.23486165702343,0.395221382379532,0.888054013252258,0.164258480072021,0.633351862430573,0.756230354309082,0.0233260430395603,0.762180030345917,0.646944582462311,0.164258480072021,0.633351862430573,0.756230354309082,0.173280224204063,0.784994602203369,0.594775021076202,0.177126869559288,0.326664417982101,0.928394496440887,0.0300147235393524,0.552456498146057,0.83300107717514,0.0538966991007328,0.421619653701782,0.905169546604156,0.114651814103127,0.834331095218658,0.539209067821503,0.0458277054131031,0.874239981174469,0.483326256275177,0.173280224204063,0.784994602203369,0.594775021076202,0.232231959700584,-0.235388413071632,0.943748116493225,0.235850736498833,0.029978821054101,0.971326768398285,0.140494927763939,-0.0047673131339252,0.99006986618042,0.186159580945969,-0.558516979217529,0.8083336353302,0.232231959700584,-0.235388413071632,0.943748116493225,0.0967430025339127,-0.715134680271149,0.69225937128067,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.701355397701263,0.267240345478058,0.660819947719574,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.797183096408844,-0.126290559768677,0.590380907058716,\r\n-0.826086044311523,-0.0564828552305698,0.56070613861084,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.818835556507111,-0.0458643920719624,0.57219272851944,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.80653190612793,-0.369375109672546,0.461593091487885,-0.755599737167358,-0.345978140830994,0.556208610534668,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.802007973194122,-0.211934104561806,0.558450520038605,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.823027729988098,-0.299589991569519,0.482567012310028,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.841383934020996,-0.273562401533127,0.4660864174366,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.815653860569,-0.354654490947723,0.457087337970734,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.681823194026947,-0.196932435035706,0.704510092735291,\r\n-0.853699505329132,-0.200731500983238,0.480524599552155,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.350826323032379,-0.155140668153763,0.923499941825867,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.0469791293144226,-0.360823780298233,0.931449949741364,0.0846942514181137,-0.190347999334335,0.97805643081665,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.826117038726807,-0.242748260498047,0.508530974388123,0.311309576034546,-0.164290025830269,0.93599945306778,-0.0469791293144226,-0.360823780298233,0.931449949741364,0.199232205748558,-0.176230192184448,0.963975787162781,0.430589586496353,-0.0537573732435703,0.900945425033569,0.199232205748558,-0.176230192184448,0.963975787162781,0.295775443315506,0.0390343852341175,0.954459547996521,-0.0951415151357651,-0.0616662576794624,0.993551731109619,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.104161158204079,0.0582981146872044,0.992850303649902,-0.336743742227554,0.0802155211567879,0.938173234462738,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.140993565320969,0.0102173909544945,0.989957749843597,-0.339970886707306,0.0639315024018288,0.938260316848755,0.135034561157227,0.0457062907516956,0.989786088466644,0.362617462873459,0.00429626507684588,0.931928098201752,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.174690589308739,0.0292537081986666,0.984188675880432,-0.339970886707306,0.0639315024018288,0.938260316848755,-0.140993565320969,0.0102173909544945,0.989957749843597,-0.154522150754929,0.0463163778185844,0.986903011798859,-0.174690589308739,0.0292537081986666,0.984188675880432,0.135034561157227,0.0457062907516956,0.989786088466644,0.295775443315506,0.0390343852341175,0.954459547996521,0.129954546689987,-0.064116433262825,0.989444673061371,\r\n0.241225987672806,0.0323146507143974,0.969930768013,0.241225987672806,0.0323146507143974,0.969930768013,0.142305195331573,-0.0422404743731022,0.988921105861664,0.153654903173447,0.127233162522316,0.979898869991302,0.142305195331573,-0.0422404743731022,0.988921105861664,-0.0951415151357651,-0.0616662576794624,0.993551731109619,-0.104161158204079,0.0582981146872044,0.992850303649902,0.179731979966164,-0.249402418732643,0.951574921607971,0.0647046864032745,-0.264986783266068,0.96207857131958,0.06996189057827,-0.273859441280365,0.959221720695496,0.172075927257538,-0.248609483242035,0.953196227550507,0.06996189057827,-0.273859441280365,0.959221720695496,0.0383862853050232,-0.2437863945961,0.969068944454193,0.425332844257355,0.140095874667168,0.894128084182739,0.458694487810135,0.166139096021652,0.872924387454987,0.362617462873459,0.00429626507684588,0.931928098201752,0.355810612440109,-0.0515304356813431,0.933136284351349,0.447360903024673,-0.045225877314806,0.893209099769592,0.458694487810135,0.166139096021652,0.872924387454987,0.155769914388657,-0.0566526800394058,0.986167371273041,0.355810612440109,-0.0515304356813431,0.933136284351349,0.321335434913635,0.140460699796677,0.93649035692215,0.179731979966164,-0.249402418732643,0.951574921607971,0.155769914388657,-0.0566526800394058,0.986167371273041,0.0647046864032745,-0.264986783266068,0.96207857131958,0.166944310069084,-0.220820441842079,0.96092027425766,0.189177721738815,-0.215131804347038,0.958086609840393,0.172075927257538,-0.248609483242035,0.953196227550507,-0.0480612441897392,-0.101396970450878,0.993684411048889,0.189177721738815,-0.215131804347038,0.958086609840393,0.0404357127845287,-0.136061996221542,0.989874720573425,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.0480612441897392,-0.101396970450878,0.993684411048889,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.201746940612793,-0.310738831758499,0.928837716579437,\r\n-0.339850097894669,-0.130288347601891,0.931411147117615,-0.250261634588242,-0.227919191122055,0.940968573093414,0.104603014886379,0.0956704244017601,0.989901661872864,0.235850736498833,0.029978821054101,0.971326768398285,0.213349238038063,0.140481293201447,0.966823160648346,0.0555927604436874,0.26450103521347,0.962781667709351,0.213349238038063,0.140481293201447,0.966823160648346,0.177126869559288,0.326664417982101,0.928394496440887,0.114651814103127,0.834331095218658,0.539209067821503,-0.126151546835899,0.814640820026398,0.566079437732697,0.0458277054131031,0.874239981174469,0.483326256275177,-0.126151546835899,0.814640820026398,0.566079437732697,-0.406927347183228,0.621432244777679,0.66950124502182,-0.0956436395645142,0.856047511100769,0.507971286773682,-0.356016933917999,0.688874661922455,0.6314297914505,-0.406927347183228,0.621432244777679,0.66950124502182,-0.695945620536804,0.0891267582774162,0.712541878223419,0.23486165702343,0.395221382379532,0.888054013252258,0.0300147235393524,0.552456498146057,0.83300107717514,0.177126869559288,0.326664417982101,0.928394496440887,0.164258480072021,0.633351862430573,0.756230354309082,0.23486165702343,0.395221382379532,0.888054013252258,0.300942361354828,0.582365870475769,0.755171179771423,0.164258480072021,0.633351862430573,0.756230354309082,0.300942361354828,0.582365870475769,0.755171179771423,0.173280224204063,0.784994602203369,0.594775021076202,0.173280224204063,0.784994602203369,0.594775021076202,0.270060509443283,0.758142352104187,0.593537986278534,0.114651814103127,0.834331095218658,0.539209067821503,0.282409846782684,-0.111748047173023,0.9527627825737,0.235850736498833,0.029978821054101,0.971326768398285,0.232231959700584,-0.235388413071632,0.943748116493225,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.797183096408844,-0.126290559768677,0.590380907058716,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.799006879329681,-0.108401574194431,0.591470122337341,\r\n-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.833774089813232,-0.0327894687652588,0.551131069660187,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.848888278007507,-0.279975354671478,0.448332816362381,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.820937275886536,-0.0508270114660263,0.568751633167267,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.832329928874969,-0.272888034582138,0.482450842857361,-0.830778658390045,-0.291433691978455,0.474207848310471,\r\n-0.825440883636475,-0.319022089242935,0.465695351362228,-0.815653860569,-0.354654490947723,0.457087337970734,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.814732611179352,-0.343433737754822,0.4671870470047,-0.815653860569,-0.354654490947723,0.457087337970734,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.826117038726807,-0.242748260498047,0.508530974388123,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.878174960613251,-0.141201600432396,0.457023859024048,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.0469791293144226,-0.360823780298233,0.931449949741364,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.893654882907867,-0.195783078670502,0.403794229030609,0.199232205748558,-0.176230192184448,0.963975787162781,-0.0469791293144226,-0.360823780298233,0.931449949741364,-0.097446009516716,-0.375238299369812,0.921791970729828,0.199232205748558,-0.176230192184448,0.963975787162781,-0.00251052970997989,-0.195446833968163,0.980711042881012,0.295775443315506,0.0390343852341175,0.954459547996521,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.0951415151357651,-0.0616662576794624,0.993551731109619,-0.396495968103409,0.107867866754532,0.911677181720734,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.0234697591513395,0.0607546269893646,0.997876703739166,-0.140993565320969,0.0102173909544945,0.989957749843597,0.135034561157227,0.0457062907516956,0.989786088466644,0.425332844257355,0.140095874667168,0.894128084182739,\r\n0.362617462873459,0.00429626507684588,0.931928098201752,0.135034561157227,0.0457062907516956,0.989786088466644,-0.174690589308739,0.0292537081986666,0.984188675880432,-0.140993565320969,0.0102173909544945,0.989957749843597,-0.00251052970997989,-0.195446833968163,0.980711042881012,0.129954546689987,-0.064116433262825,0.989444673061371,0.295775443315506,0.0390343852341175,0.954459547996521,0.129954546689987,-0.064116433262825,0.989444673061371,-0.0316389910876751,-0.2207340747118,0.974820673465729,0.241225987672806,0.0323146507143974,0.969930768013,0.241225987672806,0.0323146507143974,0.969930768013,0.113690003752708,-0.126888811588287,0.985379993915558,0.142305195331573,-0.0422404743731022,0.988921105861664,-0.0951415151357651,-0.0616662576794624,0.993551731109619,0.142305195331573,-0.0422404743731022,0.988921105861664,-0.0333993695676327,-0.208129301667213,0.977530837059021,0.0647046864032745,-0.264986783266068,0.96207857131958,0.0383862853050232,-0.2437863945961,0.969068944454193,0.06996189057827,-0.273859441280365,0.959221720695496,0.0383862853050232,-0.2437863945961,0.969068944454193,0.166944310069084,-0.220820441842079,0.96092027425766,0.172075927257538,-0.248609483242035,0.953196227550507,0.425332844257355,0.140095874667168,0.894128084182739,0.361270755529404,0.132260873913765,0.92303329706192,0.458694487810135,0.166139096021652,0.872924387454987,0.321335434913635,0.140460699796677,0.93649035692215,0.355810612440109,-0.0515304356813431,0.933136284351349,0.458694487810135,0.166139096021652,0.872924387454987,0.140187084674835,0.166530504822731,0.976019978523254,0.155769914388657,-0.0566526800394058,0.986167371273041,0.321335434913635,0.140460699796677,0.93649035692215,0.155769914388657,-0.0566526800394058,0.986167371273041,0.00619217846542597,-0.118456855416298,0.992939829826355,0.0647046864032745,-0.264986783266068,0.96207857131958,0.189177721738815,-0.215131804347038,0.958086609840393,0.166944310069084,-0.220820441842079,0.96092027425766,0.0404357127845287,-0.136061996221542,0.989874720573425,-0.141630694270134,0.0101165184751153,0.989867806434631,\r\n-0.0480612441897392,-0.101396970450878,0.993684411048889,0.0404357127845287,-0.136061996221542,0.989874720573425,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.226490527391434,-0.117226220667362,0.966933310031891,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.141630694270134,0.0101165184751153,0.989867806434631,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.0480612441897392,-0.101396970450878,0.993684411048889,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.258978396654129,-0.0869297310709953,0.96196323633194,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.250261634588242,-0.227919191122055,0.940968573093414,0.235850736498833,0.029978821054101,0.971326768398285,0.290418893098831,0.0508739911019802,0.955546259880066,0.213349238038063,0.140481293201447,0.966823160648346,0.29212361574173,0.188057228922844,0.937709033489227,0.177126869559288,0.326664417982101,0.928394496440887,0.213349238038063,0.140481293201447,0.966823160648346,0.114651814103127,0.834331095218658,0.539209067821503,-0.0948617458343506,0.677053928375244,0.729793846607208,-0.126151546835899,0.814640820026398,0.566079437732697,-0.406927347183228,0.621432244777679,0.66950124502182,-0.126151546835899,0.814640820026398,0.566079437732697,-0.4941665828228,0.400876611471176,0.771425426006317,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.406927347183228,0.621432244777679,0.66950124502182,-0.4941665828228,0.400876611471176,0.771425426006317,0.23486165702343,0.395221382379532,0.888054013252258,0.177126869559288,0.326664417982101,0.928394496440887,0.29212361574173,0.188057228922844,0.937709033489227,0.342121034860611,0.37125638127327,0.86320436000824,0.300942361354828,0.582365870475769,0.755171179771423,0.23486165702343,0.395221382379532,0.888054013252258,\r\n0.173280224204063,0.784994602203369,0.594775021076202,0.300942361354828,0.582365870475769,0.755171179771423,0.270060509443283,0.758142352104187,0.593537986278534,0.125289261341095,0.767785370349884,0.628337502479553,0.114651814103127,0.834331095218658,0.539209067821503,0.270060509443283,0.758142352104187,0.593537986278534,0.235850736498833,0.029978821054101,0.971326768398285,0.282409846782684,-0.111748047173023,0.9527627825737,0.290418893098831,0.0508739911019802,0.955546259880066,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.702136337757111,-0.15756867825985,0.694389343261719,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.781458020210266,-0.081707164645195,0.618584811687469,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.820860683917999,-0.345227986574173,0.454978257417679,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.815834522247314,-0.125088587403297,0.564594268798828,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.834292232990265,-0.0518974363803864,0.548874318599701,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.819623053073883,-0.23813858628273,0.521064221858978,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.823475480079651,-0.280983358621597,0.492885738611221,\r\n-0.795192241668701,-0.293361604213715,0.5306676030159,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.823170483112335,-0.310922414064407,0.475097417831421,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.828672349452972,-0.20328988134861,0.521512389183044,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.830778658390045,-0.291433691978455,0.474207848310471,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.815653860569,-0.354654490947723,0.457087337970734,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.815653860569,-0.354654490947723,0.457087337970734,-0.847625195980072,-0.338436543941498,0.408646672964096,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.853699505329132,-0.200731500983238,0.480524599552155,-0.893654882907867,-0.195783078670502,0.403794229030609,-0.878174960613251,-0.141201600432396,0.457023859024048,-0.764453053474426,-0.148790150880814,0.627274036407471,-0.878174960613251,-0.141201600432396,0.457023859024048,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.440117299556732,-0.259275048971176,0.859693646430969,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.764453053474426,-0.148790150880814,0.627274036407471,\r\n-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.0469791293144226,-0.360823780298233,0.931449949741364,-0.893654882907867,-0.195783078670502,0.403794229030609,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.0469791293144226,-0.360823780298233,0.931449949741364,-0.00251052970997989,-0.195446833968163,0.980711042881012,0.199232205748558,-0.176230192184448,0.963975787162781,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.0951415151357651,-0.0616662576794624,0.993551731109619,-0.0333993695676327,-0.208129301667213,0.977530837059021,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.396495968103409,0.107867866754532,0.911677181720734,-0.213205829262733,0.108822345733643,0.970927834510803,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.396495968103409,0.107867866754532,0.911677181720734,-0.325323820114136,0.0271954145282507,0.945211470127106,-0.293114989995956,0.0762312710285187,0.953033208847046,-0.213205829262733,0.108822345733643,0.970927834510803,-0.0234697591513395,0.0607546269893646,0.997876703739166,0.0794710293412209,-0.00966635067015886,0.9967902302742,-0.140993565320969,0.0102173909544945,0.989957749843597,-0.0234697591513395,0.0607546269893646,0.997876703739166,0.256466329097748,0.024246271699667,0.966248989105225,0.425332844257355,0.140095874667168,0.894128084182739,0.135034561157227,0.0457062907516956,0.989786088466644,0.135034561157227,0.0457062907516956,0.989786088466644,-0.140993565320969,0.0102173909544945,0.989957749843597,0.0794710293412209,-0.00966635067015886,0.9967902302742,\r\n-0.00251052970997989,-0.195446833968163,0.980711042881012,-0.0316389910876751,-0.2207340747118,0.974820673465729,0.129954546689987,-0.064116433262825,0.989444673061371,-0.0316389910876751,-0.2207340747118,0.974820673465729,0.113690003752708,-0.126888811588287,0.985379993915558,0.241225987672806,0.0323146507143974,0.969930768013,0.142305195331573,-0.0422404743731022,0.988921105861664,0.113690003752708,-0.126888811588287,0.985379993915558,-0.0333993695676327,-0.208129301667213,0.977530837059021,0.0647046864032745,-0.264986783266068,0.96207857131958,0.00619217846542597,-0.118456855416298,0.992939829826355,0.0383862853050232,-0.2437863945961,0.969068944454193,0.166944310069084,-0.220820441842079,0.96092027425766,0.0383862853050232,-0.2437863945961,0.969068944454193,0.0404357127845287,-0.136061996221542,0.989874720573425,0.425332844257355,0.140095874667168,0.894128084182739,0.256466329097748,0.024246271699667,0.966248989105225,0.361270755529404,0.132260873913765,0.92303329706192,0.458694487810135,0.166139096021652,0.872924387454987,0.361270755529404,0.132260873913765,0.92303329706192,0.357262551784515,0.237679675221443,0.903256177902222,0.321335434913635,0.140460699796677,0.93649035692215,0.458694487810135,0.166139096021652,0.872924387454987,0.353386253118515,0.295734733343124,0.887501537799835,-0.017038881778717,0.103870369493961,0.994444727897644,0.155769914388657,-0.0566526800394058,0.986167371273041,0.140187084674835,0.166530504822731,0.976019978523254,0.140187084674835,0.166530504822731,0.976019978523254,0.321335434913635,0.140460699796677,0.93649035692215,0.217835068702698,0.278962373733521,0.935268819332123,0.155769914388657,-0.0566526800394058,0.986167371273041,-0.017038881778717,0.103870369493961,0.994444727897644,0.00619217846542597,-0.118456855416298,0.992939829826355,-0.0611234828829765,-0.0539376735687256,0.996671736240387,-0.141630694270134,0.0101165184751153,0.989867806434631,0.0404357127845287,-0.136061996221542,0.989874720573425,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.3063845038414,-0.075774297118187,0.948887050151825,\r\n-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.339850097894669,-0.130288347601891,0.931411147117615,-0.226490527391434,-0.117226220667362,0.966933310031891,-0.295964300632477,-0.115398913621902,0.948202550411224,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.0967063754796982,-0.168901309370995,0.980877220630646,-0.226490527391434,-0.117226220667362,0.966933310031891,-0.141630694270134,0.0101165184751153,0.989867806434631,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.251651376485825,0.00124196929391474,0.967817068099976,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.295357078313828,-0.00676836771890521,0.955362915992737,0.29212361574173,0.188057228922844,0.937709033489227,0.213349238038063,0.140481293201447,0.966823160648346,0.290418893098831,0.0508739911019802,0.955546259880066,-0.0948617458343506,0.677053928375244,0.729793846607208,0.114651814103127,0.834331095218658,0.539209067821503,-0.011271620169282,0.642446875572205,0.76624721288681,-0.0948617458343506,0.677053928375244,0.729793846607208,-0.4941665828228,0.400876611471176,0.771425426006317,-0.126151546835899,0.814640820026398,0.566079437732697,-0.695945620536804,0.0891267582774162,0.712541878223419,-0.4941665828228,0.400876611471176,0.771425426006317,-0.702136337757111,-0.15756867825985,0.694389343261719,0.342121034860611,0.37125638127327,0.86320436000824,0.23486165702343,0.395221382379532,0.888054013252258,0.29212361574173,0.188057228922844,0.937709033489227,0.300942361354828,0.582365870475769,0.755171179771423,0.342121034860611,0.37125638127327,0.86320436000824,0.325209617614746,0.608420252799988,0.723922193050385,0.270060509443283,0.758142352104187,0.593537986278534,0.300942361354828,0.582365870475769,0.755171179771423,0.325209617614746,0.608420252799988,0.723922193050385,0.125289261341095,0.767785370349884,0.628337502479553,-0.011271620169282,0.642446875572205,0.76624721288681,0.114651814103127,0.834331095218658,0.539209067821503,0.258796125650406,0.740000486373901,0.620824992656708,\r\n0.125289261341095,0.767785370349884,0.628337502479553,0.270060509443283,0.758142352104187,0.593537986278534,0.282409846782684,-0.111748047173023,0.9527627825737,0.361224353313446,-0.105485685169697,0.926493227481842,0.290418893098831,0.0508739911019802,0.955546259880066,-0.702136337757111,-0.15756867825985,0.694389343261719,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.746086776256561,-0.223437413573265,0.627240002155304,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.746117770671844,-0.182780385017395,0.640233874320984,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.799006879329681,-0.108401574194431,0.591470122337341,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.781458020210266,-0.081707164645195,0.618584811687469,-0.781458020210266,-0.081707164645195,0.618584811687469,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.847625195980072,-0.338436543941498,0.408646672964096,-0.836845815181732,-0.300623714923859,0.457508832216263,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.832832932472229,-0.0866648927330971,0.546697795391083,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.834296822547913,-0.105185851454735,0.54118824005127,\r\n-0.830185055732727,-0.140271842479706,0.53955203294754,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.828673303127289,-0.203286394476891,0.521512269973755,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.823475480079651,-0.280983358621597,0.492885738611221,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.787312924861908,-0.278825521469116,0.549904108047485,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.847625195980072,-0.338436543941498,0.408646672964096,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.878174960613251,-0.141201600432396,0.457023859024048,-0.893654882907867,-0.195783078670502,0.403794229030609,-0.908415138721466,-0.0962201878428459,0.406845778226852,\r\n-0.878174960613251,-0.141201600432396,0.457023859024048,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.893654882907867,-0.195783078670502,0.403794229030609,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.00251052970997989,-0.195446833968163,0.980711042881012,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.0333993695676327,-0.208129301667213,0.977530837059021,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.213205829262733,0.108822345733643,0.970927834510803,-0.396495968103409,0.107867866754532,0.911677181720734,-0.326790809631348,0.190435588359833,0.925711631774902,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.350418090820313,0.194547459483147,0.916165053844452,-0.396495968103409,0.107867866754532,0.911677181720734,0.0806540101766586,0.0704495832324028,0.994249284267426,\r\n-0.0234697591513395,0.0607546269893646,0.997876703739166,-0.213205829262733,0.108822345733643,0.970927834510803,0.0794710293412209,-0.00966635067015886,0.9967902302742,-0.0234697591513395,0.0607546269893646,0.997876703739166,0.175966873764992,0.0217771455645561,0.984155118465424,0.256466329097748,0.024246271699667,0.966248989105225,0.135034561157227,0.0457062907516956,0.989786088466644,0.0794710293412209,-0.00966635067015886,0.9967902302742,-0.00251052970997989,-0.195446833968163,0.980711042881012,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.0316389910876751,-0.2207340747118,0.974820673465729,-0.0316389910876751,-0.2207340747118,0.974820673465729,-0.0333993695676327,-0.208129301667213,0.977530837059021,0.113690003752708,-0.126888811588287,0.985379993915558,0.00619217846542597,-0.118456855416298,0.992939829826355,-0.0611234828829765,-0.0539376735687256,0.996671736240387,0.0383862853050232,-0.2437863945961,0.969068944454193,-0.0611234828829765,-0.0539376735687256,0.996671736240387,0.0404357127845287,-0.136061996221542,0.989874720573425,0.0383862853050232,-0.2437863945961,0.969068944454193,0.361270755529404,0.132260873913765,0.92303329706192,0.256466329097748,0.024246271699667,0.966248989105225,0.261734902858734,-0.0114431036636233,0.9650719165802,0.295863956212997,0.0439518950879574,0.954218327999115,0.357262551784515,0.237679675221443,0.903256177902222,0.361270755529404,0.132260873913765,0.92303329706192,0.458694487810135,0.166139096021652,0.872924387454987,0.357262551784515,0.237679675221443,0.903256177902222,0.353386253118515,0.295734733343124,0.887501537799835,0.217835068702698,0.278962373733521,0.935268819332123,0.321335434913635,0.140460699796677,0.93649035692215,0.353386253118515,0.295734733343124,0.887501537799835,-0.017038881778717,0.103870369493961,0.994444727897644,0.140187084674835,0.166530504822731,0.976019978523254,0.0551361329853535,0.293952792882919,0.954228281974792,0.217835068702698,0.278962373733521,0.935268819332123,0.0551361329853535,0.293952792882919,0.954228281974792,0.140187084674835,0.166530504822731,0.976019978523254,\r\n-0.017038881778717,0.103870369493961,0.994444727897644,-0.0611234828829765,-0.0539376735687256,0.996671736240387,0.00619217846542597,-0.118456855416298,0.992939829826355,-0.0611234828829765,-0.0539376735687256,0.996671736240387,-0.155405029654503,0.144466429948807,0.977230072021484,-0.141630694270134,0.0101165184751153,0.989867806434631,-0.3063845038414,-0.075774297118187,0.948887050151825,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.0967063754796982,-0.168901309370995,0.980877220630646,-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.155405029654503,0.144466429948807,0.977230072021484,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.141630694270134,0.0101165184751153,0.989867806434631,-0.295357078313828,-0.00676836771890521,0.955362915992737,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.171142712235451,-0.0369378924369812,0.984553515911102,0.290418893098831,0.0508739911019802,0.955546259880066,0.345624148845673,0.0336072444915771,0.937770962715149,0.29212361574173,0.188057228922844,0.937709033489227,-0.0948617458343506,0.677053928375244,0.729793846607208,-0.011271620169282,0.642446875572205,0.76624721288681,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.4941665828228,0.400876611471176,0.771425426006317,-0.0948617458343506,0.677053928375244,0.729793846607208,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.4941665828228,0.400876611471176,0.771425426006317,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.702136337757111,-0.15756867825985,0.694389343261719,0.29212361574173,0.188057228922844,0.937709033489227,0.345349073410034,0.209656730294228,0.914755702018738,0.342121034860611,0.37125638127327,0.86320436000824,0.342121034860611,0.37125638127327,0.86320436000824,0.339701473712921,0.428171932697296,0.83741956949234,0.325209617614746,0.608420252799988,0.723922193050385,0.325209617614746,0.608420252799988,0.723922193050385,0.258796125650406,0.740000486373901,0.620824992656708,\r\n0.270060509443283,0.758142352104187,0.593537986278534,0.125289261341095,0.767785370349884,0.628337502479553,-0.23334738612175,0.341908246278763,0.910300850868225,-0.011271620169282,0.642446875572205,0.76624721288681,0.258796125650406,0.740000486373901,0.620824992656708,0.0194037482142448,0.58470219373703,0.811015903949738,0.125289261341095,0.767785370349884,0.628337502479553,0.345624148845673,0.0336072444915771,0.937770962715149,0.290418893098831,0.0508739911019802,0.955546259880066,0.361224353313446,-0.105485685169697,0.926493227481842,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.702136337757111,-0.15756867825985,0.694389343261719,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.728563725948334,-0.233660325407982,0.643892526626587,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.756844580173492,-0.14027439057827,0.638364493846893,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.781458020210266,-0.081707164645195,0.618584811687469,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.847625195980072,-0.338436543941498,0.408646672964096,-0.814619660377502,-0.375479966402054,0.442051440477371,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.83429217338562,-0.0518967621028423,0.54887443780899,-0.831189155578613,-0.132482931017876,0.539974689483643,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.834296822547913,-0.105185851454735,0.54118824005127,\r\n-0.834876894950867,-0.0462953113019466,0.548486053943634,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.834296822547913,-0.105185851454735,0.54118824005127,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.805922329425812,-0.335584789514542,0.487721085548401,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.832326352596283,-0.290708839893341,0.471933335065842,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.787312924861908,-0.278825521469116,0.549904108047485,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.830185055732727,-0.140271842479706,0.53955203294754,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.828673303127289,-0.203286394476891,0.521512269973755,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.832154035568237,-0.214240416884422,0.511488556861877,-0.828673303127289,-0.203286394476891,0.521512269973755,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.828033983707428,-0.234967976808548,0.509067416191101,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.787312924861908,-0.278825521469116,0.549904108047485,\r\n-0.760657608509064,-0.350558996200562,0.546359181404114,-0.825440883636475,-0.319022089242935,0.465695351362228,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.871073305606842,-0.279849648475647,0.403627753257751,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.422390550374985,-0.384741872549057,0.820706844329834,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.740607798099518,-0.173787221312523,0.649074792861938,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.874464392662048,-0.0631158575415611,0.480966031551361,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.0235366337001324,-0.273163884878159,0.961679458618164,-0.178742215037346,-0.433247178792953,0.883373081684113,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.840591728687286,-0.284989029169083,0.460637241601944,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.097446009516716,-0.375238299369812,0.921791970729828,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.178742215037346,-0.433247178792953,0.883373081684113,\r\n-0.0235366337001324,-0.273163884878159,0.961679458618164,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.350418090820313,0.194547459483147,0.916165053844452,-0.385106265544891,0.0403490327298641,0.921989738941193,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.0333993695676327,-0.208129301667213,0.977530837059021,-0.0316389910876751,-0.2207340747118,0.974820673465729,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.246261030435562,-0.122272215783596,0.961459755897522,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.326790809631348,0.190435588359833,0.925711631774902,-0.396495968103409,0.107867866754532,0.911677181720734,-0.350418090820313,0.194547459483147,0.916165053844452,-0.213205829262733,0.108822345733643,0.970927834510803,-0.326790809631348,0.190435588359833,0.925711631774902,-0.10142569988966,0.130874589085579,0.986197054386139,-0.0234697591513395,0.0607546269893646,0.997876703739166,0.0806540101766586,0.0704495832324028,0.994249284267426,0.175966873764992,0.0217771455645561,0.984155118465424,-0.213205829262733,0.108822345733643,0.970927834510803,-0.10142569988966,0.130874589085579,0.986197054386139,0.0806540101766586,0.0704495832324028,0.994249284267426,0.256466329097748,0.024246271699667,0.966248989105225,0.0794710293412209,-0.00966635067015886,0.9967902302742,0.175966873764992,0.0217771455645561,0.984155118465424,0.261734902858734,-0.0114431036636233,0.9650719165802,0.256466329097748,0.024246271699667,0.966248989105225,0.255437970161438,0.0111616710200906,0.9667609333992,0.295863956212997,0.0439518950879574,0.954218327999115,0.361270755529404,0.132260873913765,0.92303329706192,0.261734902858734,-0.0114431036636233,0.9650719165802,0.295863956212997,0.0439518950879574,0.954218327999115,0.264777094125748,0.0371403619647026,0.963594138622284,0.357262551784515,0.237679675221443,0.903256177902222,0.357262551784515,0.237679675221443,0.903256177902222,\r\n0.141892090439796,0.269623994827271,0.952454447746277,0.353386253118515,0.295734733343124,0.887501537799835,0.217835068702698,0.278962373733521,0.935268819332123,0.353386253118515,0.295734733343124,0.887501537799835,0.141892090439796,0.269623994827271,0.952454447746277,-0.0641909390687943,0.254517495632172,0.96493536233902,-0.017038881778717,0.103870369493961,0.994444727897644,0.0551361329853535,0.293952792882919,0.954228281974792,0.217835068702698,0.278962373733521,0.935268819332123,0.141892090439796,0.269623994827271,0.952454447746277,0.0551361329853535,0.293952792882919,0.954228281974792,-0.155405029654503,0.144466429948807,0.977230072021484,-0.0611234828829765,-0.0539376735687256,0.996671736240387,-0.017038881778717,0.103870369493961,0.994444727897644,0.0931530594825745,-0.173983111977577,0.980332732200623,-0.0967063754796982,-0.168901309370995,0.980877220630646,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.0323194898664951,-0.149572864174843,0.988222301006317,-0.155405029654503,0.144466429948807,0.977230072021484,-0.0845852345228195,0.182911604642868,0.979483842849731,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.0429119318723679,0.0139887146651745,0.99898087978363,0.345349073410034,0.209656730294228,0.914755702018738,0.29212361574173,0.188057228922844,0.937709033489227,0.345624148845673,0.0336072444915771,0.937770962715149,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.011271620169282,0.642446875572205,0.76624721288681,-0.23334738612175,0.341908246278763,0.910300850868225,0.342121034860611,0.37125638127327,0.86320436000824,0.345349073410034,0.209656730294228,0.914755702018738,0.339701473712921,0.428171932697296,0.83741956949234,0.314835429191589,0.617192447185516,0.721076965332031,0.325209617614746,0.608420252799988,0.723922193050385,0.339701473712921,0.428171932697296,0.83741956949234,\r\n0.258796125650406,0.740000486373901,0.620824992656708,0.325209617614746,0.608420252799988,0.723922193050385,0.218698620796204,0.675657451152802,0.704029738903046,0.0194037482142448,0.58470219373703,0.811015903949738,-0.23334738612175,0.341908246278763,0.910300850868225,0.125289261341095,0.767785370349884,0.628337502479553,0.258796125650406,0.740000486373901,0.620824992656708,0.218698620796204,0.675657451152802,0.704029738903046,0.0194037482142448,0.58470219373703,0.811015903949738,0.345624148845673,0.0336072444915771,0.937770962715149,0.361224353313446,-0.105485685169697,0.926493227481842,0.390386551618576,-0.045778825879097,0.919512093067169,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.514543354511261,-0.292595475912094,0.805998086929321,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.775872230529785,-0.0934301242232323,0.623933553695679,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.834296822547913,-0.105185851454735,0.54118824005127,-0.83309805393219,-0.0897516384720802,0.54579496383667,-0.834876894950867,-0.0462953113019466,0.548486053943634,\r\n-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.834876894950867,-0.0462953113019466,0.548486053943634,-0.829958140850067,-0.0325051620602608,0.556877553462982,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.834296822547913,-0.105185851454735,0.54118824005127,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.828378736972809,-0.247428610920906,0.502561092376709,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.795192241668701,-0.293361604213715,0.5306676030159,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.766654014587402,-0.359145015478134,0.532218277454376,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.787312924861908,-0.278825521469116,0.549904108047485,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.828584015369415,-0.151938110589981,0.538853585720062,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.834294855594635,-0.105181477963924,0.54119199514389,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.828673303127289,-0.203286394476891,0.521512269973755,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.832157552242279,-0.231414467096329,0.503945589065552,\r\n-0.828673303127289,-0.203286394476891,0.521512269973755,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.83078795671463,-0.232601538300514,0.505655765533447,-0.828033983707428,-0.234967976808548,0.509067416191101,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.828033983707428,-0.234967976808548,0.509067416191101,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.787312924861908,-0.278825521469116,0.549904108047485,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.80511087179184,-0.402527302503586,0.435623943805695,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.848116815090179,-0.374147832393646,0.375114947557449,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.908415138721466,-0.0962201878428459,0.406845778226852,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.0235366337001324,-0.273163884878159,0.961679458618164,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.0701776146888733,-0.148271054029465,0.986453592777252,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.840591728687286,-0.284989029169083,0.460637241601944,\r\n-0.840591728687286,-0.284989029169083,0.460637241601944,-0.871530413627625,-0.309887439012527,0.380005806684494,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.19716614484787,-0.292160093784332,0.935824751853943,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.0235366337001324,-0.273163884878159,0.961679458618164,0.00230746250599623,-0.194611310958862,0.980877697467804,-0.257097452878952,0.199196204543114,0.945632934570313,-0.350418090820313,0.194547459483147,0.916165053844452,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.225815400481224,-0.340446650981903,0.912744998931885,-0.19716614484787,-0.292160093784332,0.935824751853943,-0.326790809631348,0.190435588359833,0.925711631774902,-0.350418090820313,0.194547459483147,0.916165053844452,-0.314410865306854,0.256148368120193,0.914075314998627,-0.10142569988966,0.130874589085579,0.986197054386139,-0.326790809631348,0.190435588359833,0.925711631774902,-0.240075647830963,0.227970108389854,0.943606495857239,0.0806540101766586,0.0704495832324028,0.994249284267426,0.255437970161438,0.0111616710200906,0.9667609333992,0.175966873764992,0.0217771455645561,0.984155118465424,0.0806540101766586,0.0704495832324028,0.994249284267426,-0.10142569988966,0.130874589085579,0.986197054386139,0.166547030210495,0.0851986184716225,0.982345759868622,0.256466329097748,0.024246271699667,0.966248989105225,0.175966873764992,0.0217771455645561,0.984155118465424,0.255437970161438,0.0111616710200906,0.9667609333992,0.295863956212997,0.0439518950879574,0.954218327999115,0.261734902858734,-0.0114431036636233,0.9650719165802,\r\n0.255437970161438,0.0111616710200906,0.9667609333992,0.295863956212997,0.0439518950879574,0.954218327999115,0.325282394886017,0.0094844913110137,0.945569276809692,0.264777094125748,0.0371403619647026,0.963594138622284,0.357262551784515,0.237679675221443,0.903256177902222,0.264777094125748,0.0371403619647026,0.963594138622284,0.141892090439796,0.269623994827271,0.952454447746277,-0.155405029654503,0.144466429948807,0.977230072021484,-0.017038881778717,0.103870369493961,0.994444727897644,-0.0641909390687943,0.254517495632172,0.96493536233902,-0.0641909390687943,0.254517495632172,0.96493536233902,0.0551361329853535,0.293952792882919,0.954228281974792,0.0373438037931919,0.281801640987396,0.958745658397675,0.141892090439796,0.269623994827271,0.952454447746277,0.00841090176254511,0.275603145360947,0.961234629154205,0.0551361329853535,0.293952792882919,0.954228281974792,-0.140961021184921,-0.0786711946129799,0.986884355545044,-0.0323194898664951,-0.149572864174843,0.988222301006317,0.0931530594825745,-0.173983111977577,0.980332732200623,-0.0349026434123516,-0.124397993087769,0.991618275642395,-0.0323194898664951,-0.149572864174843,0.988222301006317,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.0641909390687943,0.254517495632172,0.96493536233902,-0.0845852345228195,0.182911604642868,0.979483842849731,-0.155405029654503,0.144466429948807,0.977230072021484,-0.0429119318723679,0.0139887146651745,0.99898087978363,-0.220432609319687,0.0859226733446121,0.971610367298126,-0.0845852345228195,0.182911604642868,0.979483842849731,-0.171142712235451,-0.0369378924369812,0.984553515911102,-0.0429119318723679,0.0139887146651745,0.99898087978363,-0.0349026434123516,-0.124397993087769,0.991618275642395,0.348101675510406,0.0731238201260567,0.934600472450256,0.345349073410034,0.209656730294228,0.914755702018738,0.345624148845673,0.0336072444915771,0.937770962715149,-0.514543354511261,-0.292595475912094,0.805998086929321,-0.464308798313141,0.0998914390802383,0.88002210855484,-0.23334738612175,0.341908246278763,0.910300850868225,\r\n0.345349073410034,0.209656730294228,0.914755702018738,0.339432567358017,0.204613417387009,0.918106079101563,0.339701473712921,0.428171932697296,0.83741956949234,0.314835429191589,0.617192447185516,0.721076965332031,0.218698620796204,0.675657451152802,0.704029738903046,0.325209617614746,0.608420252799988,0.723922193050385,0.256976157426834,0.538812279701233,0.802274525165558,0.314835429191589,0.617192447185516,0.721076965332031,0.339701473712921,0.428171932697296,0.83741956949234,0.0194037482142448,0.58470219373703,0.811015903949738,-0.367138534784317,-0.0246010180562735,0.929840803146362,-0.23334738612175,0.341908246278763,0.910300850868225,0.0194037482142448,0.58470219373703,0.811015903949738,0.218698620796204,0.675657451152802,0.704029738903046,0.0741535797715187,0.490441173315048,0.868313610553741,0.361224353313446,-0.105485685169697,0.926493227481842,0.353288650512695,-0.363729119300842,0.861909568309784,0.390386551618576,-0.045778825879097,0.919512093067169,0.390386551618576,-0.045778825879097,0.919512093067169,0.368037462234497,-0.108105413615704,0.923505008220673,0.345624148845673,0.0336072444915771,0.937770962715149,-0.679487705230713,-0.296241998672485,0.671220600605011,-0.514543354511261,-0.292595475912094,0.805998086929321,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.739192306995392,-0.165791347622871,0.652769446372986,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.814217865467072,-0.0867237821221352,0.574045360088348,\r\n-0.828989684581757,-0.112420491874218,0.547848165035248,-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.833885610103607,-0.055635217577219,0.549125969409943,-0.834876894950867,-0.0462953113019466,0.548486053943634,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.81096738576889,-0.230772510170937,0.537657678127289,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.786629498004913,-0.301113039255142,0.539022207260132,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.834294676780701,-0.105184271931648,0.541191756725311,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.834298133850098,-0.105186805129051,0.541185915470123,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.830492794513702,-0.137932226061821,0.539681613445282,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.832157552242279,-0.231414467096329,0.503945589065552,-0.837155342102051,-0.16553570330143,0.521314442157745,\r\n-0.788246214389801,-0.189307823777199,0.585517108440399,-0.82828164100647,-0.243282660841942,0.504740417003632,-0.828033983707428,-0.234967976808548,0.509067416191101,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.760657608509064,-0.350558996200562,0.546359181404114,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.807399451732636,-0.397370219230652,0.436122536659241,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.741219937801361,-0.421827018260956,0.52216362953186,-0.904523313045502,-0.00128865905571729,0.42642205953598,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.0701776146888733,-0.148271054029465,0.986453592777252,-0.257595211267471,-0.3176489174366,0.912547945976257,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.608489453792572,-0.191731154918671,0.770051658153534,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.872055232524872,0.10458717495203,0.478101551532745,-0.872055232524872,0.10458717495203,0.478101551532745,-0.839544594287872,0.00168733368627727,0.543287992477417,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.0701776146888733,-0.148271054029465,0.986453592777252,0.040844764560461,-0.105703577399254,0.993558466434479,-0.0235366337001324,-0.273163884878159,0.961679458618164,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.897639334201813,-0.170227363705635,0.40652933716774,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.840591728687286,-0.284989029169083,0.460637241601944,-0.840591728687286,-0.284989029169083,0.460637241601944,\r\n-0.807399451732636,-0.397370219230652,0.436122536659241,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.872726559638977,0.130334660410881,0.470490217208862,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.882111668586731,0.0287177506834269,0.470164030790329,0.00230746250599623,-0.194611310958862,0.980877697467804,-0.19716614484787,-0.292160093784332,0.935824751853943,-0.155963897705078,-0.380558907985687,0.911509811878204,-0.0235366337001324,-0.273163884878159,0.961679458618164,0.040844764560461,-0.105703577399254,0.993558466434479,0.00230746250599623,-0.194611310958862,0.980877697467804,-0.257097452878952,0.199196204543114,0.945632934570313,-0.271898984909058,0.288408160209656,0.918091297149658,-0.350418090820313,0.194547459483147,0.916165053844452,-0.295140117406845,0.0392885655164719,0.954645812511444,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.257097452878952,0.199196204543114,0.945632934570313,-0.082728810608387,-0.107395127415657,0.990768432617188,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.247164532542229,-0.170539319515228,0.953847944736481,-0.19716614484787,-0.292160093784332,0.935824751853943,-0.082728810608387,-0.107395127415657,0.990768432617188,-0.350418090820313,0.194547459483147,0.916165053844452,-0.271898984909058,0.288408160209656,0.918091297149658,-0.314410865306854,0.256148368120193,0.914075314998627,-0.240075647830963,0.227970108389854,0.943606495857239,-0.326790809631348,0.190435588359833,0.925711631774902,-0.314410865306854,0.256148368120193,0.914075314998627,-0.10142569988966,0.130874589085579,0.986197054386139,-0.240075647830963,0.227970108389854,0.943606495857239,0.0231080409139395,0.191585093736649,0.98120391368866,0.0806540101766586,0.0704495832324028,0.994249284267426,0.166547030210495,0.0851986184716225,0.982345759868622,0.255437970161438,0.0111616710200906,0.9667609333992,0.166547030210495,0.0851986184716225,0.982345759868622,-0.10142569988966,0.130874589085579,0.986197054386139,\r\n0.0231080409139395,0.191585093736649,0.98120391368866,0.295863956212997,0.0439518950879574,0.954218327999115,0.255437970161438,0.0111616710200906,0.9667609333992,0.325282394886017,0.0094844913110137,0.945569276809692,0.264777094125748,0.0371403619647026,0.963594138622284,0.325282394886017,0.0094844913110137,0.945569276809692,0.245804384350777,0.00950873550027609,0.969272792339325,0.264777094125748,0.0371403619647026,0.963594138622284,0.0116201778873801,0.0318341441452503,0.999425530433655,0.141892090439796,0.269623994827271,0.952454447746277,0.0373438037931919,0.281801640987396,0.958745658397675,0.0551361329853535,0.293952792882919,0.954228281974792,0.00841090176254511,0.275603145360947,0.961234629154205,-0.0845852345228195,0.182911604642868,0.979483842849731,-0.0641909390687943,0.254517495632172,0.96493536233902,0.0373438037931919,0.281801640987396,0.958745658397675,0.141892090439796,0.269623994827271,0.952454447746277,-0.0864608138799667,0.102909207344055,0.990925908088684,0.00841090176254511,0.275603145360947,0.961234629154205,0.0931530594825745,-0.173983111977577,0.980332732200623,-0.0323194898664951,-0.149572864174843,0.988222301006317,0.0790323987603188,-0.132623955607414,0.988010466098785,-0.0349026434123516,-0.124397993087769,0.991618275642395,0.0289385095238686,-0.142718940973282,0.98934006690979,-0.0323194898664951,-0.149572864174843,0.988222301006317,-0.0429119318723679,0.0139887146651745,0.99898087978363,-0.0845852345228195,0.182911604642868,0.979483842849731,0.155403897166252,0.140237912535667,0.977846026420593,-0.0349026434123516,-0.124397993087769,0.991618275642395,-0.0429119318723679,0.0139887146651745,0.99898087978363,0.153409376740456,-0.0428806021809578,0.987231850624084,0.345349073410034,0.209656730294228,0.914755702018738,0.348101675510406,0.0731238201260567,0.934600472450256,0.339432567358017,0.204613417387009,0.918106079101563,0.348101675510406,0.0731238201260567,0.934600472450256,0.345624148845673,0.0336072444915771,0.937770962715149,0.330818802118301,0.00386521266773343,0.943686366081238,-0.514543354511261,-0.292595475912094,0.805998086929321,\r\n-0.23334738612175,0.341908246278763,0.910300850868225,-0.367138534784317,-0.0246010180562735,0.929840803146362,0.311844974756241,0.253272861242294,0.915754020214081,0.339701473712921,0.428171932697296,0.83741956949234,0.339432567358017,0.204613417387009,0.918106079101563,0.218698620796204,0.675657451152802,0.704029738903046,0.314835429191589,0.617192447185516,0.721076965332031,0.197001159191132,0.542958617210388,0.816324889659882,0.256976157426834,0.538812279701233,0.802274525165558,0.197001159191132,0.542958617210388,0.816324889659882,0.314835429191589,0.617192447185516,0.721076965332031,0.299879461526871,0.482208728790283,0.823132395744324,0.256976157426834,0.538812279701233,0.802274525165558,0.339701473712921,0.428171932697296,0.83741956949234,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.367138534784317,-0.0246010180562735,0.929840803146362,0.0194037482142448,0.58470219373703,0.811015903949738,0.218698620796204,0.675657451152802,0.704029738903046,-0.029831575229764,0.298790127038956,0.953852415084839,0.0741535797715187,0.490441173315048,0.868313610553741,0.0194037482142448,0.58470219373703,0.811015903949738,0.0741535797715187,0.490441173315048,0.868313610553741,-0.23119843006134,-0.0584687255322933,0.971148073673248,0.390386551618576,-0.045778825879097,0.919512093067169,0.353288650512695,-0.363729119300842,0.861909568309784,0.368037462234497,-0.108105413615704,0.923505008220673,0.345624148845673,0.0336072444915771,0.937770962715149,0.368037462234497,-0.108105413615704,0.923505008220673,0.316503047943115,-0.0431359708309174,0.947610139846802,-0.474770665168762,-0.433703005313873,0.765829205513,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.514543354511261,-0.292595475912094,0.805998086929321,-0.595521450042725,-0.397923320531845,0.697861790657043,-0.474770665168762,-0.433703005313873,0.765829205513,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.675507247447968,-0.269232273101807,0.686442852020264,-0.516842305660248,-0.442344337701797,0.732942938804626,\r\n-0.739016175270081,-0.168271437287331,0.652333974838257,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.758701026439667,-0.138536155223846,0.636537790298462,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.828989684581757,-0.112420491874218,0.547848165035248,-0.814217865467072,-0.0867237821221352,0.574045360088348,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.828989684581757,-0.112420491874218,0.547848165035248,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.833522081375122,-0.0948996320366859,0.544274568557739,-0.832832098007202,-0.0866648703813553,0.546698927879334,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.728903472423553,-0.296345502138138,0.617153882980347,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.715626120567322,-0.337344199419022,0.611619234085083,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.83429479598999,-0.105180487036705,0.541192293167114,-0.835568308830261,-0.0819094106554985,0.54324609041214,-0.834296345710754,-0.105185247957706,0.541189014911652,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.837155342102051,-0.16553570330143,0.521314442157745,-0.828989684581757,-0.112420491874218,0.547848165035248,-0.687593400478363,-0.287507146596909,0.66674941778183,\r\n-0.544327735900879,-0.351293385028839,0.761774301528931,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.872726559638977,0.130334660410881,0.470490217208862,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.90630966424942,-0.0203148312866688,0.422125637531281,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.163771867752075,-0.046034000813961,0.985423505306244,-0.0701776146888733,-0.148271054029465,0.986453592777252,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.810148179531097,0.110347591340542,0.57574588060379,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.872055232524872,0.10458717495203,0.478101551532745,-0.872726559638977,0.130334660410881,0.470490217208862,-0.872055232524872,0.10458717495203,0.478101551532745,-0.899621307849884,0.0676669925451279,0.431396037340164,-0.0701776146888733,-0.148271054029465,0.986453592777252,-0.163771867752075,-0.046034000813961,0.985423505306244,0.040844764560461,-0.105703577399254,0.993558466434479,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.850709855556488,0.00375630683265626,0.525622010231018,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.840591728687286,-0.284989029169083,0.460637241601944,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.844881951808929,0.178671419620514,0.504232943058014,-0.872726559638977,0.130334660410881,0.470490217208862,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.082728810608387,-0.107395127415657,0.990768432617188,-0.19716614484787,-0.292160093784332,0.935824751853943,\r\n0.00230746250599623,-0.194611310958862,0.980877697467804,0.00230746250599623,-0.194611310958862,0.980877697467804,0.040844764560461,-0.105703577399254,0.993558466434479,0.0577900931239128,-0.0536722801625729,0.996884882450104,-0.271898984909058,0.288408160209656,0.918091297149658,-0.257097452878952,0.199196204543114,0.945632934570313,-0.293582201004028,0.275208920240402,0.915461361408234,-0.171587005257607,0.117550827562809,0.978130638599396,-0.257097452878952,0.199196204543114,0.945632934570313,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.082728810608387,-0.107395127415657,0.990768432617188,0.0577900931239128,-0.0536722801625729,0.996884882450104,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.249598264694214,0.322196930646896,0.913175642490387,-0.314410865306854,0.256148368120193,0.914075314998627,-0.271898984909058,0.288408160209656,0.918091297149658,-0.240075647830963,0.227970108389854,0.943606495857239,-0.314410865306854,0.256148368120193,0.914075314998627,-0.249598264694214,0.322196930646896,0.913175642490387,-0.175418630242348,0.272577196359634,0.946007311344147,0.0231080409139395,0.191585093736649,0.98120391368866,-0.240075647830963,0.227970108389854,0.943606495857239,0.166547030210495,0.0851986184716225,0.982345759868622,0.22576005756855,0.109542436897755,0.968004524707794,0.255437970161438,0.0111616710200906,0.9667609333992,0.166547030210495,0.0851986184716225,0.982345759868622,0.0231080409139395,0.191585093736649,0.98120391368866,0.26573920249939,0.183240294456482,0.946470081806183,0.282691359519959,0.0592185705900192,0.957381129264832,0.325282394886017,0.0094844913110137,0.945569276809692,0.255437970161438,0.0111616710200906,0.9667609333992,0.245804384350777,0.00950873550027609,0.969272792339325,0.325282394886017,0.0094844913110137,0.945569276809692,0.274680644273758,0.171310946345329,0.946151673793793,-0.0402381718158722,-0.0378856770694256,0.998471558094025,0.264777094125748,0.0371403619647026,0.963594138622284,0.245804384350777,0.00950873550027609,0.969272792339325,0.264777094125748,0.0371403619647026,0.963594138622284,\r\n-0.0402381718158722,-0.0378856770694256,0.998471558094025,0.0116201778873801,0.0318341441452503,0.999425530433655,0.0116201778873801,0.0318341441452503,0.999425530433655,-0.0864608138799667,0.102909207344055,0.990925908088684,0.141892090439796,0.269623994827271,0.952454447746277,0.0640028044581413,0.191854327917099,0.9793341755867,0.0373438037931919,0.281801640987396,0.958745658397675,0.00841090176254511,0.275603145360947,0.961234629154205,0.0373438037931919,0.281801640987396,0.958745658397675,0.155403897166252,0.140237912535667,0.977846026420593,-0.0845852345228195,0.182911604642868,0.979483842849731,0.0640028044581413,0.191854327917099,0.9793341755867,0.00841090176254511,0.275603145360947,0.961234629154205,-0.0864608138799667,0.102909207344055,0.990925908088684,0.0790323987603188,-0.132623955607414,0.988010466098785,-0.0323194898664951,-0.149572864174843,0.988222301006317,0.0289385095238686,-0.142718940973282,0.98934006690979,0.0289385095238686,-0.142718940973282,0.98934006690979,-0.0349026434123516,-0.124397993087769,0.991618275642395,0.153409376740456,-0.0428806021809578,0.987231850624084,0.155403897166252,0.140237912535667,0.977846026420593,0.153409376740456,-0.0428806021809578,0.987231850624084,-0.0429119318723679,0.0139887146651745,0.99898087978363,0.348101675510406,0.0731238201260567,0.934600472450256,0.315026342868805,0.0811562836170197,0.945606648921967,0.339432567358017,0.204613417387009,0.918106079101563,0.330818802118301,0.00386521266773343,0.943686366081238,0.345624148845673,0.0336072444915771,0.937770962715149,0.316503047943115,-0.0431359708309174,0.947610139846802,0.330818802118301,0.00386521266773343,0.943686366081238,0.306882530450821,0.0207295641303062,0.951521575450897,0.348101675510406,0.0731238201260567,0.934600472450256,-0.367138534784317,-0.0246010180562735,0.929840803146362,-0.474770665168762,-0.433703005313873,0.765829205513,-0.514543354511261,-0.292595475912094,0.805998086929321,0.299879461526871,0.482208728790283,0.823132395744324,0.339701473712921,0.428171932697296,0.83741956949234,0.311844974756241,0.253272861242294,0.915754020214081,\r\n0.311844974756241,0.253272861242294,0.915754020214081,0.339432567358017,0.204613417387009,0.918106079101563,0.315026342868805,0.0811562836170197,0.945606648921967,-0.029831575229764,0.298790127038956,0.953852415084839,0.218698620796204,0.675657451152802,0.704029738903046,0.197001159191132,0.542958617210388,0.816324889659882,0.256976157426834,0.538812279701233,0.802274525165558,0.0452983155846596,0.280518293380737,0.958779156208038,0.197001159191132,0.542958617210388,0.816324889659882,0.256976157426834,0.538812279701233,0.802274525165558,0.299879461526871,0.482208728790283,0.823132395744324,0.217617809772491,0.410790383815765,0.885377645492554,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.474770665168762,-0.433703005313873,0.765829205513,-0.367138534784317,-0.0246010180562735,0.929840803146362,-0.029831575229764,0.298790127038956,0.953852415084839,-0.23119843006134,-0.0584687255322933,0.971148073673248,0.0741535797715187,0.490441173315048,0.868313610553741,0.302004158496857,-0.574054956436157,0.761087536811829,0.368037462234497,-0.108105413615704,0.923505008220673,0.353288650512695,-0.363729119300842,0.861909568309784,0.277099609375,-0.362266838550568,0.889931678771973,0.316503047943115,-0.0431359708309174,0.947610139846802,0.368037462234497,-0.108105413615704,0.923505008220673,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.474770665168762,-0.433703005313873,0.765829205513,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.702161908149719,-0.18866591155529,0.686566591262817,-0.739016175270081,-0.168271437287331,0.652333974838257,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.739016175270081,-0.168271437287331,0.652333974838257,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.785303592681885,-0.154125824570656,0.599619328975677,-0.739016175270081,-0.168271437287331,0.652333974838257,\r\n-0.828989684581757,-0.112420491874218,0.547848165035248,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.739016175270081,-0.168271437287331,0.652333974838257,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.828989684581757,-0.112420491874218,0.547848165035248,-0.687593400478363,-0.287507146596909,0.66674941778183,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.642198145389557,-0.400802403688431,0.653405666351318,-0.731210231781006,-0.405097454786301,0.548842072486877,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.382798045873642,-0.111290358006954,0.917104125022888,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.163771867752075,-0.046034000813961,0.985423505306244,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.726461708545685,0.0142742376774549,0.687058627605438,-0.810148179531097,0.110347591340542,0.57574588060379,-0.866900444030762,0.15913550555706,0.47239750623703,-0.810148179531097,0.110347591340542,0.57574588060379,-0.872055232524872,0.10458717495203,0.478101551532745,\r\n-0.872726559638977,0.130334660410881,0.470490217208862,-0.847534477710724,0.220260724425316,0.482877224683762,-0.872055232524872,0.10458717495203,0.478101551532745,-0.27339118719101,0.060657937079668,0.959988415241241,0.040844764560461,-0.105703577399254,0.993558466434479,-0.163771867752075,-0.046034000813961,0.985423505306244,-0.86310201883316,-0.132731795310974,0.487275123596191,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.850709855556488,0.00375630683265626,0.525622010231018,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.850709855556488,0.00375630683265626,0.525622010231018,-0.835689961910248,0.141228675842285,0.530732095241547,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.872726559638977,0.130334660410881,0.470490217208862,-0.844881951808929,0.178671419620514,0.504232943058014,-0.812917709350586,0.275775462388992,0.512944936752319,-0.844881951808929,0.178671419620514,0.504232943058014,-0.882111668586731,0.0287177506834269,0.470164030790329,-0.835689961910248,0.141228675842285,0.530732095241547,-0.082728810608387,-0.107395127415657,0.990768432617188,0.00230746250599623,-0.194611310958862,0.980877697467804,0.0577900931239128,-0.0536722801625729,0.996884882450104,0.040844764560461,-0.105703577399254,0.993558466434479,0.0604284964501858,-0.0833671912550926,0.994684994220734,0.0577900931239128,-0.0536722801625729,0.996884882450104,-0.171587005257607,0.117550827562809,0.978130638599396,-0.293582201004028,0.275208920240402,0.915461361408234,-0.257097452878952,0.199196204543114,0.945632934570313,-0.285839140415192,0.35606461763382,0.889670610427856,-0.271898984909058,0.288408160209656,0.918091297149658,-0.293582201004028,0.275208920240402,0.915461361408234,-0.0178426448255777,0.00390160526148975,0.999833166599274,-0.171587005257607,0.117550827562809,0.978130638599396,-0.119287498295307,0.0371639393270016,0.992163896560669,-0.0178426448255777,0.00390160526148975,0.999833166599274,\r\n-0.119287498295307,0.0371639393270016,0.992163896560669,0.0577900931239128,-0.0536722801625729,0.996884882450104,-0.249598264694214,0.322196930646896,0.913175642490387,-0.271898984909058,0.288408160209656,0.918091297149658,-0.285839140415192,0.35606461763382,0.889670610427856,-0.240075647830963,0.227970108389854,0.943606495857239,-0.249598264694214,0.322196930646896,0.913175642490387,-0.175418630242348,0.272577196359634,0.946007311344147,-0.175418630242348,0.272577196359634,0.946007311344147,0.0819288417696953,0.279268205165863,0.95671147108078,0.0231080409139395,0.191585093736649,0.98120391368866,0.22576005756855,0.109542436897755,0.968004524707794,0.166547030210495,0.0851986184716225,0.982345759868622,0.26573920249939,0.183240294456482,0.946470081806183,0.22576005756855,0.109542436897755,0.968004524707794,0.282691359519959,0.0592185705900192,0.957381129264832,0.255437970161438,0.0111616710200906,0.9667609333992,0.0819288417696953,0.279268205165863,0.95671147108078,0.26573920249939,0.183240294456482,0.946470081806183,0.0231080409139395,0.191585093736649,0.98120391368866,0.282691359519959,0.0592185705900192,0.957381129264832,0.281884551048279,0.128238409757614,0.950839579105377,0.325282394886017,0.0094844913110137,0.945569276809692,0.325282394886017,0.0094844913110137,0.945569276809692,0.281884551048279,0.128238409757614,0.950839579105377,0.274680644273758,0.171310946345329,0.946151673793793,-0.0844032615423203,0.148407429456711,0.985317826271057,0.245804384350777,0.00950873550027609,0.969272792339325,0.274680644273758,0.171310946345329,0.946151673793793,-0.0844032615423203,0.148407429456711,0.985317826271057,-0.0402381718158722,-0.0378856770694256,0.998471558094025,0.245804384350777,0.00950873550027609,0.969272792339325,-0.190558359026909,-0.0541414171457291,0.980181694030762,0.0116201778873801,0.0318341441452503,0.999425530433655,-0.0402381718158722,-0.0378856770694256,0.998471558094025,0.0116201778873801,0.0318341441452503,0.999425530433655,-0.190558359026909,-0.0541414171457291,0.980181694030762,-0.0864608138799667,0.102909207344055,0.990925908088684,\r\n0.0640028044581413,0.191854327917099,0.9793341755867,0.155403897166252,0.140237912535667,0.977846026420593,0.0373438037931919,0.281801640987396,0.958745658397675,0.0640028044581413,0.191854327917099,0.9793341755867,-0.0864608138799667,0.102909207344055,0.990925908088684,-0.177837505936623,0.0507919862866402,0.9827481508255,0.0790323987603188,-0.132623955607414,0.988010466098785,0.0289385095238686,-0.142718940973282,0.98934006690979,0.000299491046462208,-0.0144837042316794,0.999895036220551,0.0289385095238686,-0.142718940973282,0.98934006690979,0.153409376740456,-0.0428806021809578,0.987231850624084,0.156244426965714,0.045113530009985,0.98668760061264,0.155403897166252,0.140237912535667,0.977846026420593,0.274679213762283,0.10904535651207,0.955332577228546,0.153409376740456,-0.0428806021809578,0.987231850624084,0.348101675510406,0.0731238201260567,0.934600472450256,0.306882530450821,0.0207295641303062,0.951521575450897,0.315026342868805,0.0811562836170197,0.945606648921967,0.305764406919479,-0.0739916115999222,0.949227690696716,0.330818802118301,0.00386521266773343,0.943686366081238,0.316503047943115,-0.0431359708309174,0.947610139846802,0.276518255472183,-0.16714258491993,0.946361899375916,0.306882530450821,0.0207295641303062,0.951521575450897,0.330818802118301,0.00386521266773343,0.943686366081238,0.311844974756241,0.253272861242294,0.915754020214081,0.310118585824966,0.345167636871338,0.885824859142303,0.299879461526871,0.482208728790283,0.823132395744324,0.315026342868805,0.0811562836170197,0.945606648921967,0.29873588681221,0.0950129926204681,0.949594259262085,0.311844974756241,0.253272861242294,0.915754020214081,-0.029831575229764,0.298790127038956,0.953852415084839,0.197001159191132,0.542958617210388,0.816324889659882,-0.208346024155617,-0.0328470319509506,0.977503418922424,0.00852910056710243,0.0883650034666061,0.996051490306854,0.0452983155846596,0.280518293380737,0.958779156208038,0.256976157426834,0.538812279701233,0.802274525165558,0.197001159191132,0.542958617210388,0.816324889659882,0.0452983155846596,0.280518293380737,0.958779156208038,\r\n-0.208346024155617,-0.0328470319509506,0.977503418922424,0.299879461526871,0.482208728790283,0.823132395744324,0.236056387424469,0.317885637283325,0.918273389339447,0.217617809772491,0.410790383815765,0.885377645492554,0.256976157426834,0.538812279701233,0.802274525165558,0.217617809772491,0.410790383815765,0.885377645492554,0.00852910056710243,0.0883650034666061,0.996051490306854,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.474770665168762,-0.433703005313873,0.765829205513,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.029831575229764,0.298790127038956,0.953852415084839,-0.342580884695053,-0.356272399425507,0.869314789772034,0.277099609375,-0.362266838550568,0.889931678771973,0.368037462234497,-0.108105413615704,0.923505008220673,0.302004158496857,-0.574054956436157,0.761087536811829,0.277099609375,-0.362266838550568,0.889931678771973,0.29061895608902,-0.229689627885818,0.928861260414124,0.316503047943115,-0.0431359708309174,0.947610139846802,-0.516842305660248,-0.442344337701797,0.732942938804626,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.739016175270081,-0.168271437287331,0.652333974838257,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.788246214389801,-0.189307823777199,0.585517108440399,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.670564353466034,-0.257506430149078,0.69572526216507,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.584030032157898,-0.242542564868927,0.774649500846863,\r\n-0.515070021152496,-0.332558065652847,0.790004968643188,-0.614774405956268,-0.354444175958633,0.704571902751923,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.614542543888092,-0.303032487630844,0.728360235691071,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.611404597759247,-0.412387728691101,0.675366997718811,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.27339118719101,0.060657937079668,0.959988415241241,-0.163771867752075,-0.046034000813961,0.985423505306244,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.794561862945557,0.253921836614609,0.551538705825806,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.810148179531097,0.110347591340542,0.57574588060379,-0.810148179531097,0.110347591340542,0.57574588060379,-0.866900444030762,0.15913550555706,0.47239750623703,-0.794561862945557,0.253921836614609,0.551538705825806,-0.866900444030762,0.15913550555706,0.47239750623703,-0.872055232524872,0.10458717495203,0.478101551532745,-0.847534477710724,0.220260724425316,0.482877224683762,-0.812917709350586,0.275775462388992,0.512944936752319,-0.847534477710724,0.220260724425316,0.482877224683762,-0.872726559638977,0.130334660410881,0.470490217208862,0.040844764560461,-0.105703577399254,0.993558466434479,-0.27339118719101,0.060657937079668,0.959988415241241,-0.0716846510767937,-0.125787794589996,0.989463806152344,\r\n-0.850709855556488,0.00375630683265626,0.525622010231018,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.835689961910248,0.141228675842285,0.530732095241547,-0.850709855556488,0.00375630683265626,0.525622010231018,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.731093943119049,-0.299623876810074,0.612965762615204,-0.812917709350586,0.275775462388992,0.512944936752319,-0.844881951808929,0.178671419620514,0.504232943058014,-0.771921515464783,0.300421535968781,0.560253441333771,-0.835689961910248,0.141228675842285,0.530732095241547,-0.815106928348541,0.217329561710358,0.536999464035034,-0.844881951808929,0.178671419620514,0.504232943058014,0.040844764560461,-0.105703577399254,0.993558466434479,-0.0716846510767937,-0.125787794589996,0.989463806152344,0.0604284964501858,-0.0833671912550926,0.994684994220734,-0.0178426448255777,0.00390160526148975,0.999833166599274,0.0577900931239128,-0.0536722801625729,0.996884882450104,0.0604284964501858,-0.0833671912550926,0.994684994220734,-0.293582201004028,0.275208920240402,0.915461361408234,-0.171587005257607,0.117550827562809,0.978130638599396,-0.191774770617485,0.246372789144516,0.950011968612671,-0.285839140415192,0.35606461763382,0.889670610427856,-0.293582201004028,0.275208920240402,0.915461361408234,-0.280762284994125,0.367747992277145,0.886529088020325,-0.171587005257607,0.117550827562809,0.978130638599396,-0.0178426448255777,0.00390160526148975,0.999833166599274,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.249598264694214,0.322196930646896,0.913175642490387,-0.285839140415192,0.35606461763382,0.889670610427856,-0.287240982055664,0.426977604627609,0.857427895069122,-0.225824803113937,0.378002643585205,0.897840261459351,\r\n-0.175418630242348,0.272577196359634,0.946007311344147,-0.249598264694214,0.322196930646896,0.913175642490387,-0.175418630242348,0.272577196359634,0.946007311344147,-0.140961483120918,0.337814599275589,0.930597126483917,0.0819288417696953,0.279268205165863,0.95671147108078,0.22576005756855,0.109542436897755,0.968004524707794,0.26573920249939,0.183240294456482,0.946470081806183,0.212998434901237,0.199246034026146,0.956521093845367,0.282691359519959,0.0592185705900192,0.957381129264832,0.22576005756855,0.109542436897755,0.968004524707794,0.281884551048279,0.128238409757614,0.950839579105377,0.26573920249939,0.183240294456482,0.946470081806183,0.0819288417696953,0.279268205165863,0.95671147108078,0.323086380958557,0.261728465557098,0.909457683563232,0.274680644273758,0.171310946345329,0.946151673793793,0.281884551048279,0.128238409757614,0.950839579105377,0.316532820463181,0.249423786997795,0.915201961994171,-0.0844032615423203,0.148407429456711,0.985317826271057,0.274680644273758,0.171310946345329,0.946151673793793,-0.0147538594901562,0.291810601949692,0.956362247467041,-0.177837505936623,0.0507919862866402,0.9827481508255,-0.0402381718158722,-0.0378856770694256,0.998471558094025,-0.0844032615423203,0.148407429456711,0.985317826271057,-0.0402381718158722,-0.0378856770694256,0.998471558094025,-0.177837505936623,0.0507919862866402,0.9827481508255,-0.190558359026909,-0.0541414171457291,0.980181694030762,-0.0864608138799667,0.102909207344055,0.990925908088684,-0.190558359026909,-0.0541414171457291,0.980181694030762,-0.177837505936623,0.0507919862866402,0.9827481508255,0.0640028044581413,0.191854327917099,0.9793341755867,0.265059143304825,0.228096127510071,0.936864793300629,0.155403897166252,0.140237912535667,0.977846026420593,0.0534307770431042,0.210744023323059,0.976079940795898,0.0640028044581413,0.191854327917099,0.9793341755867,-0.177837505936623,0.0507919862866402,0.9827481508255,0.000299491046462208,-0.0144837042316794,0.999895036220551,0.0289385095238686,-0.142718940973282,0.98934006690979,0.156244426965714,0.045113530009985,0.98668760061264,\r\n0.00173809041734785,0.0180379059165716,0.999835789203644,0.0790323987603188,-0.132623955607414,0.988010466098785,0.000299491046462208,-0.0144837042316794,0.999895036220551,0.153409376740456,-0.0428806021809578,0.987231850624084,0.274679213762283,0.10904535651207,0.955332577228546,0.156244426965714,0.045113530009985,0.98668760061264,0.155403897166252,0.140237912535667,0.977846026420593,0.265059143304825,0.228096127510071,0.936864793300629,0.274679213762283,0.10904535651207,0.955332577228546,0.306882530450821,0.0207295641303062,0.951521575450897,0.29873588681221,0.0950129926204681,0.949594259262085,0.315026342868805,0.0811562836170197,0.945606648921967,0.305764406919479,-0.0739916115999222,0.949227690696716,0.276518255472183,-0.16714258491993,0.946361899375916,0.330818802118301,0.00386521266773343,0.943686366081238,0.305764406919479,-0.0739916115999222,0.949227690696716,0.316503047943115,-0.0431359708309174,0.947610139846802,0.29061895608902,-0.229689627885818,0.928861260414124,0.276518255472183,-0.16714258491993,0.946361899375916,0.27564799785614,0.0145710995420814,0.961148142814636,0.306882530450821,0.0207295641303062,0.951521575450897,0.311844974756241,0.253272861242294,0.915754020214081,0.29873588681221,0.0950129926204681,0.949594259262085,0.310118585824966,0.345167636871338,0.885824859142303,0.310118585824966,0.345167636871338,0.885824859142303,0.278208315372467,0.420680373907089,0.863497614860535,0.299879461526871,0.482208728790283,0.823132395744324,-0.029831575229764,0.298790127038956,0.953852415084839,-0.208346024155617,-0.0328470319509506,0.977503418922424,-0.342580884695053,-0.356272399425507,0.869314789772034,0.00852910056710243,0.0883650034666061,0.996051490306854,-0.30596199631691,-0.313151150941849,0.899068176746368,0.0452983155846596,0.280518293380737,0.958779156208038,0.0452983155846596,0.280518293380737,0.958779156208038,-0.30596199631691,-0.313151150941849,0.899068176746368,-0.208346024155617,-0.0328470319509506,0.977503418922424,0.236056387424469,0.317885637283325,0.918273389339447,0.299879461526871,0.482208728790283,0.823132395744324,\r\n0.235776096582413,0.231674626469612,0.943788349628448,0.0275759045034647,-0.114965014159679,0.992986679077148,0.217617809772491,0.410790383815765,0.885377645492554,0.236056387424469,0.317885637283325,0.918273389339447,0.0275759045034647,-0.114965014159679,0.992986679077148,0.00852910056710243,0.0883650034666061,0.996051490306854,0.217617809772491,0.410790383815765,0.885377645492554,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.23119843006134,-0.0584687255322933,0.971148073673248,-0.342580884695053,-0.356272399425507,0.869314789772034,0.277099609375,-0.362266838550568,0.889931678771973,0.205523788928986,-0.679157733917236,0.704630732536316,0.29061895608902,-0.229689627885818,0.928861260414124,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.405032515525818,-0.473313689231873,0.782254874706268,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.563275933265686,-0.283142358064651,0.77624124288559,-0.406570971012115,-0.29946157336235,0.863146960735321,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.66752678155899,-0.161179915070534,0.726931154727936,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.470191359519959,-0.315123736858368,0.824388861656189,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.58588308095932,-0.259748488664627,0.767640233039856,\r\n-0.517318904399872,-0.271538138389587,0.811571300029755,-0.550819098949432,-0.246227964758873,0.797477245330811,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.544327735900879,-0.351293385028839,0.761774301528931,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.550819098949432,-0.246227964758873,0.797477245330811,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.58588308095932,-0.259748488664627,0.767640233039856,-0.519602477550507,-0.427895992994308,0.739539086818695,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.547647655010223,0.211131721735001,0.809632837772369,-0.27339118719101,0.060657937079668,0.959988415241241,-0.546998798847198,0.0910764336585999,0.832164168357849,-0.794561862945557,0.253921836614609,0.551538705825806,-0.547647655010223,0.211131721735001,0.809632837772369,-0.794561862945557,0.253921836614609,0.551538705825806,-0.866900444030762,0.15913550555706,0.47239750623703,-0.816873967647552,0.298540532588959,0.493548691272736,-0.847534477710724,0.220260724425316,0.482877224683762,-0.816873967647552,0.298540532588959,0.493548691272736,-0.866900444030762,0.15913550555706,0.47239750623703,-0.812917709350586,0.275775462388992,0.512944936752319,-0.768181025981903,0.362770467996597,0.527537167072296,-0.847534477710724,0.220260724425316,0.482877224683762,-0.27339118719101,0.060657937079668,0.959988415241241,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.723879158496857,0.251553326845169,0.642432689666748,-0.835689961910248,0.141228675842285,0.530732095241547,-0.757779479026794,-0.122000575065613,0.641003847122192,-0.567163169384003,-0.147161141037941,0.810351371765137,\r\n-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.614895045757294,-0.28420615196228,0.735615909099579,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.844881951808929,0.178671419620514,0.504232943058014,-0.815106928348541,0.217329561710358,0.536999464035034,-0.771921515464783,0.300421535968781,0.560253441333771,-0.812917709350586,0.275775462388992,0.512944936752319,-0.771921515464783,0.300421535968781,0.560253441333771,-0.723761260509491,0.418872743844986,0.548374950885773,-0.835689961910248,0.141228675842285,0.530732095241547,-0.723879158496857,0.251553326845169,0.642432689666748,-0.815106928348541,0.217329561710358,0.536999464035034,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.0698349103331566,-0.0789294242858887,0.99443107843399,0.0604284964501858,-0.0833671912550926,0.994684994220734,-0.0178426448255777,0.00390160526148975,0.999833166599274,0.0604284964501858,-0.0833671912550926,0.994684994220734,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.171587005257607,0.117550827562809,0.978130638599396,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.191774770617485,0.246372789144516,0.950011968612671,-0.293582201004028,0.275208920240402,0.915461361408234,-0.191774770617485,0.246372789144516,0.950011968612671,-0.280762284994125,0.367747992277145,0.886529088020325,-0.285839140415192,0.35606461763382,0.889670610427856,-0.280762284994125,0.367747992277145,0.886529088020325,-0.287240982055664,0.426977604627609,0.857427895069122,-0.171587005257607,0.117550827562809,0.978130638599396,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.249598264694214,0.322196930646896,0.913175642490387,-0.287240982055664,0.426977604627609,0.857427895069122,-0.225824803113937,0.378002643585205,0.897840261459351,\r\n-0.140961483120918,0.337814599275589,0.930597126483917,-0.175418630242348,0.272577196359634,0.946007311344147,-0.225824803113937,0.378002643585205,0.897840261459351,0.0819288417696953,0.279268205165863,0.95671147108078,-0.140961483120918,0.337814599275589,0.930597126483917,-0.0148559240624309,0.374038904905319,0.927293956279755,0.26573920249939,0.183240294456482,0.946470081806183,0.366166591644287,0.251160144805908,0.896013677120209,0.212998434901237,0.199246034026146,0.956521093845367,0.22576005756855,0.109542436897755,0.968004524707794,0.212998434901237,0.199246034026146,0.956521093845367,0.0611381828784943,0.179349884390831,0.981883704662323,0.281884551048279,0.128238409757614,0.950839579105377,0.22576005756855,0.109542436897755,0.968004524707794,0.161179721355438,0.19114425778389,0.968238055706024,0.323086380958557,0.261728465557098,0.909457683563232,0.0819288417696953,0.279268205165863,0.95671147108078,0.198135867714882,0.313905566930771,0.928550124168396,0.26573920249939,0.183240294456482,0.946470081806183,0.323086380958557,0.261728465557098,0.909457683563232,0.366166591644287,0.251160144805908,0.896013677120209,0.316532820463181,0.249423786997795,0.915201961994171,0.281884551048279,0.128238409757614,0.950839579105377,0.161179721355438,0.19114425778389,0.968238055706024,0.274680644273758,0.171310946345329,0.946151673793793,0.316532820463181,0.249423786997795,0.915201961994171,0.24602784216404,0.339038670063019,0.908032476902008,0.274680644273758,0.171310946345329,0.946151673793793,0.24602784216404,0.339038670063019,0.908032476902008,-0.0147538594901562,0.291810601949692,0.956362247467041,-0.227579534053802,0.248930767178535,0.941403687000275,-0.0844032615423203,0.148407429456711,0.985317826271057,-0.0147538594901562,0.291810601949692,0.956362247467041,-0.188786968588829,0.169787734746933,0.967228770256042,-0.177837505936623,0.0507919862866402,0.9827481508255,-0.0844032615423203,0.148407429456711,0.985317826271057,0.0534307770431042,0.210744023323059,0.976079940795898,0.265059143304825,0.228096127510071,0.936864793300629,\r\n0.0640028044581413,0.191854327917099,0.9793341755867,0.0534307770431042,0.210744023323059,0.976079940795898,-0.177837505936623,0.0507919862866402,0.9827481508255,-0.188786968588829,0.169787734746933,0.967228770256042,0.000299491046462208,-0.0144837042316794,0.999895036220551,0.156244426965714,0.045113530009985,0.98668760061264,0.0886930823326111,0.227541297674179,0.969720780849457,0.00173809041734785,0.0180379059165716,0.999835789203644,0.000299491046462208,-0.0144837042316794,0.999895036220551,-0.0212020799517632,0.162111476063728,0.986544609069824,0.156244426965714,0.045113530009985,0.98668760061264,0.274679213762283,0.10904535651207,0.955332577228546,0.268700033426285,0.261891305446625,0.926937460899353,0.268700033426285,0.261891305446625,0.926937460899353,0.274679213762283,0.10904535651207,0.955332577228546,0.265059143304825,0.228096127510071,0.936864793300629,0.306882530450821,0.0207295641303062,0.951521575450897,0.280861258506775,0.0404330529272556,0.958896279335022,0.29873588681221,0.0950129926204681,0.949594259262085,0.305764406919479,-0.0739916115999222,0.949227690696716,0.267917186021805,-0.481245338916779,0.834639549255371,0.276518255472183,-0.16714258491993,0.946361899375916,0.29061895608902,-0.229689627885818,0.928861260414124,0.267917186021805,-0.481245338916779,0.834639549255371,0.305764406919479,-0.0739916115999222,0.949227690696716,0.27564799785614,0.0145710995420814,0.961148142814636,0.276518255472183,-0.16714258491993,0.946361899375916,0.291687965393066,-0.184123456478119,0.938624858856201,0.306882530450821,0.0207295641303062,0.951521575450897,0.27564799785614,0.0145710995420814,0.961148142814636,0.280861258506775,0.0404330529272556,0.958896279335022,0.294447273015976,0.35137552022934,0.888727128505707,0.310118585824966,0.345167636871338,0.885824859142303,0.29873588681221,0.0950129926204681,0.949594259262085,0.294447273015976,0.35137552022934,0.888727128505707,0.278208315372467,0.420680373907089,0.863497614860535,0.310118585824966,0.345167636871338,0.885824859142303,0.278208315372467,0.420680373907089,0.863497614860535,\r\n0.235776096582413,0.231674626469612,0.943788349628448,0.299879461526871,0.482208728790283,0.823132395744324,-0.440851867198944,-0.460037797689438,0.770723521709442,-0.342580884695053,-0.356272399425507,0.869314789772034,-0.208346024155617,-0.0328470319509506,0.977503418922424,-0.30596199631691,-0.313151150941849,0.899068176746368,0.00852910056710243,0.0883650034666061,0.996051490306854,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.208346024155617,-0.0328470319509506,0.977503418922424,-0.30596199631691,-0.313151150941849,0.899068176746368,-0.440851867198944,-0.460037797689438,0.770723521709442,0.236056387424469,0.317885637283325,0.918273389339447,0.235776096582413,0.231674626469612,0.943788349628448,0.0652306601405144,-0.259792476892471,0.963458716869354,0.0275759045034647,-0.114965014159679,0.992986679077148,0.236056387424469,0.317885637283325,0.918273389339447,0.0652306601405144,-0.259792476892471,0.963458716869354,0.0275759045034647,-0.114965014159679,0.992986679077148,-0.25767657160759,-0.484305799007416,0.836092412471771,0.00852910056710243,0.0883650034666061,0.996051490306854,-0.3775275349617,-0.502535462379456,0.777773022651672,-0.342580884695053,-0.356272399425507,0.869314789772034,-0.322486758232117,-0.458847165107727,0.827925980091095,0.29061895608902,-0.229689627885818,0.928861260414124,0.205523788928986,-0.679157733917236,0.704630732536316,0.267917186021805,-0.481245338916779,0.834639549255371,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.36033833026886,-0.330161958932877,0.872438669204712,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.613590776920319,-0.184753149747849,0.767705976963043,-0.406570971012115,-0.29946157336235,0.863146960735321,-0.406570971012115,-0.29946157336235,0.863146960735321,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.220294743776321,-0.291857004165649,0.930746793746948,\r\n-0.50259256362915,-0.226412817835808,0.834348678588867,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.584030032157898,-0.242542564868927,0.774649500846863,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.470191359519959,-0.315123736858368,0.824388861656189,-0.515070021152496,-0.332558065652847,0.790004968643188,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.470191359519959,-0.315123736858368,0.824388861656189,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.550819098949432,-0.246227964758873,0.797477245330811,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.550819098949432,-0.246227964758873,0.797477245330811,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.448306918144226,-0.404077589511871,0.797334313392639,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.27339118719101,0.060657937079668,0.959988415241241,-0.547647655010223,0.211131721735001,0.809632837772369,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.768202126026154,0.357100814580917,0.531360805034637,-0.547647655010223,0.211131721735001,0.809632837772369,-0.794561862945557,0.253921836614609,0.551538705825806,-0.794561862945557,0.253921836614609,0.551538705825806,-0.816873967647552,0.298540532588959,0.493548691272736,-0.781966388225555,0.393921971321106,0.48306730389595,-0.816873967647552,0.298540532588959,0.493548691272736,-0.847534477710724,0.220260724425316,0.482877224683762,-0.768181025981903,0.362770467996597,0.527537167072296,-0.768181025981903,0.362770467996597,0.527537167072296,\r\n-0.812917709350586,0.275775462388992,0.512944936752319,-0.723761260509491,0.418872743844986,0.548374950885773,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.18082632124424,-0.224410399794579,0.957570731639862,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.628749549388886,0.112374156713486,0.769445180892944,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.62299919128418,0.215462476015091,0.751962602138519,-0.723879158496857,0.251553326845169,0.642432689666748,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.507237911224365,-0.409857898950577,0.758106887340546,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.723879158496857,0.251553326845169,0.642432689666748,-0.771921515464783,0.300421535968781,0.560253441333771,-0.815106928348541,0.217329561710358,0.536999464035034,-0.629867970943451,0.385348051786423,0.674368619918823,-0.723761260509491,0.418872743844986,0.548374950885773,-0.771921515464783,0.300421535968781,0.560253441333771,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.0112852230668068,0.299653649330139,0.953981280326843,-0.191774770617485,0.246372789144516,0.950011968612671,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.280762284994125,0.367747992277145,0.886529088020325,-0.191774770617485,0.246372789144516,0.950011968612671,-0.260193228721619,0.462161093950272,0.847765624523163,-0.287240982055664,0.426977604627609,0.857427895069122,\r\n-0.280762284994125,0.367747992277145,0.886529088020325,-0.0698349103331566,-0.0789294242858887,0.99443107843399,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.225824803113937,0.378002643585205,0.897840261459351,-0.287240982055664,0.426977604627609,0.857427895069122,-0.151033982634544,0.454980313777924,0.877599835395813,-0.140961483120918,0.337814599275589,0.930597126483917,-0.225824803113937,0.378002643585205,0.897840261459351,-0.151033982634544,0.454980313777924,0.877599835395813,-0.0148559240624309,0.374038904905319,0.927293956279755,-0.140961483120918,0.337814599275589,0.930597126483917,-0.151033982634544,0.454980313777924,0.877599835395813,0.0819288417696953,0.279268205165863,0.95671147108078,-0.0148559240624309,0.374038904905319,0.927293956279755,0.198135867714882,0.313905566930771,0.928550124168396,0.212998434901237,0.199246034026146,0.956521093845367,0.366166591644287,0.251160144805908,0.896013677120209,0.210851907730103,0.339987516403198,0.916487812995911,0.0611381828784943,0.179349884390831,0.981883704662323,0.212998434901237,0.199246034026146,0.956521093845367,0.0267036035656929,0.266716927289963,0.963404834270477,0.22576005756855,0.109542436897755,0.968004524707794,0.0611381828784943,0.179349884390831,0.981883704662323,0.161179721355438,0.19114425778389,0.968238055706024,0.198135867714882,0.313905566930771,0.928550124168396,0.348293662071228,0.301887094974518,0.887443244457245,0.323086380958557,0.261728465557098,0.909457683563232,0.323086380958557,0.261728465557098,0.909457683563232,0.348293662071228,0.301887094974518,0.887443244457245,0.366166591644287,0.251160144805908,0.896013677120209,0.161179721355438,0.19114425778389,0.968238055706024,0.223671555519104,0.321366280317307,0.920160114765167,0.316532820463181,0.249423786997795,0.915201961994171,0.24602784216404,0.339038670063019,0.908032476902008,0.316532820463181,0.249423786997795,0.915201961994171,0.223671555519104,0.321366280317307,0.920160114765167,-0.0147538594901562,0.291810601949692,0.956362247467041,\r\n0.24602784216404,0.339038670063019,0.908032476902008,0.0357851162552834,0.42984676361084,0.902192413806915,-0.227579534053802,0.248930767178535,0.941403687000275,-0.188786968588829,0.169787734746933,0.967228770256042,-0.0844032615423203,0.148407429456711,0.985317826271057,-0.0147538594901562,0.291810601949692,0.956362247467041,-0.190063312649727,0.359921514987946,0.913417935371399,-0.227579534053802,0.248930767178535,0.941403687000275,0.209412813186646,0.363791555166245,0.90763533115387,0.265059143304825,0.228096127510071,0.936864793300629,0.0534307770431042,0.210744023323059,0.976079940795898,0.0534307770431042,0.210744023323059,0.976079940795898,-0.188786968588829,0.169787734746933,0.967228770256042,-0.0267785228788853,0.23379772901535,0.971916377544403,0.0886930823326111,0.227541297674179,0.969720780849457,0.156244426965714,0.045113530009985,0.98668760061264,0.268700033426285,0.261891305446625,0.926937460899353,0.0886930823326111,0.227541297674179,0.969720780849457,-0.0212020799517632,0.162111476063728,0.986544609069824,0.000299491046462208,-0.0144837042316794,0.999895036220551,-0.0762558132410049,0.213511079549789,0.973959982395172,0.00173809041734785,0.0180379059165716,0.999835789203644,-0.0212020799517632,0.162111476063728,0.986544609069824,0.209412813186646,0.363791555166245,0.90763533115387,0.268700033426285,0.261891305446625,0.926937460899353,0.265059143304825,0.228096127510071,0.936864793300629,0.299044817686081,0.0283797830343246,0.953816890716553,0.29873588681221,0.0950129926204681,0.949594259262085,0.280861258506775,0.0404330529272556,0.958896279335022,0.267917186021805,-0.481245338916779,0.834639549255371,0.177646741271019,-0.750194430351257,0.636906385421753,0.276518255472183,-0.16714258491993,0.946361899375916,0.276518255472183,-0.16714258491993,0.946361899375916,0.207897424697876,-0.61188817024231,0.763132572174072,0.291687965393066,-0.184123456478119,0.938624858856201,0.27564799785614,0.0145710995420814,0.961148142814636,0.291687965393066,-0.184123456478119,0.938624858856201,0.248926490545273,-0.412970989942551,0.876065194606781,\r\n0.282634675502777,-0.0593121312558651,0.95739209651947,0.280861258506775,0.0404330529272556,0.958896279335022,0.27564799785614,0.0145710995420814,0.961148142814636,0.29873588681221,0.0950129926204681,0.949594259262085,0.308654546737671,0.146264389157295,0.939861118793488,0.294447273015976,0.35137552022934,0.888727128505707,0.228516042232513,0.337344855070114,0.913224339485168,0.278208315372467,0.420680373907089,0.863497614860535,0.294447273015976,0.35137552022934,0.888727128505707,0.146219566464424,-0.00181043182965368,0.989250421524048,0.235776096582413,0.231674626469612,0.943788349628448,0.278208315372467,0.420680373907089,0.863497614860535,-0.440851867198944,-0.460037797689438,0.770723521709442,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.342580884695053,-0.356272399425507,0.869314789772034,-0.30596199631691,-0.313151150941849,0.899068176746368,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.440851867198944,-0.460037797689438,0.770723521709442,-0.30596199631691,-0.313151150941849,0.899068176746368,0.0482234582304955,-0.347167521715164,0.936562418937683,0.0652306601405144,-0.259792476892471,0.963458716869354,0.235776096582413,0.231674626469612,0.943788349628448,0.0652306601405144,-0.259792476892471,0.963458716869354,-0.14106921851635,-0.565365731716156,0.812687456607819,0.0275759045034647,-0.114965014159679,0.992986679077148,0.0275759045034647,-0.114965014159679,0.992986679077148,-0.14106921851635,-0.565365731716156,0.812687456607819,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.39089161157608,-0.23914922773838,0.888825833797455,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.406570971012115,-0.29946157336235,0.863146960735321,\r\n-0.354357033967972,-0.37569996714592,0.85631799697876,-0.406570971012115,-0.29946157336235,0.863146960735321,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.470191359519959,-0.315123736858368,0.824388861656189,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.517318904399872,-0.271538138389587,0.811571300029755,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.480898290872574,-0.309650957584381,0.820276141166687,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.547647655010223,0.211131721735001,0.809632837772369,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.547647655010223,0.211131721735001,0.809632837772369,-0.768202126026154,0.357100814580917,0.531360805034637,-0.671155273914337,0.498823404312134,0.548384547233582,-0.768202126026154,0.357100814580917,0.531360805034637,-0.794561862945557,0.253921836614609,0.551538705825806,-0.781966388225555,0.393921971321106,0.48306730389595,-0.781966388225555,0.393921971321106,0.48306730389595,-0.816873967647552,0.298540532588959,0.493548691272736,-0.736575245857239,0.396892726421356,0.547661304473877,-0.816873967647552,0.298540532588959,0.493548691272736,\r\n-0.768181025981903,0.362770467996597,0.527537167072296,-0.736575245857239,0.396892726421356,0.547661304473877,-0.768181025981903,0.362770467996597,0.527537167072296,-0.723761260509491,0.418872743844986,0.548374950885773,-0.700007915496826,0.477078557014465,0.531398952007294,-0.18082632124424,-0.224410399794579,0.957570731639862,-0.368574798107147,-0.0492913909256458,0.92829030752182,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.18082632124424,-0.224410399794579,0.957570731639862,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.0716846510767937,-0.125787794589996,0.989463806152344,-0.628749549388886,0.112374156713486,0.769445180892944,-0.62299919128418,0.215462476015091,0.751962602138519,-0.750884175300598,0.0874963328242302,0.654612243175507,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.628749549388886,0.112374156713486,0.769445180892944,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.723879158496857,0.251553326845169,0.642432689666748,-0.62299919128418,0.215462476015091,0.751962602138519,-0.573001444339752,0.320152223110199,0.754434704780579,-0.567163169384003,-0.147161141037941,0.810351371765137,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.611378788948059,-0.0145747577771544,0.791203737258911,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.450801998376846,-0.318067908287048,0.834032535552979,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.723879158496857,0.251553326845169,0.642432689666748,-0.629867970943451,0.385348051786423,0.674368619918823,-0.771921515464783,0.300421535968781,0.560253441333771,-0.601086437702179,0.495438903570175,0.627084791660309,-0.723761260509491,0.418872743844986,0.548374950885773,-0.629867970943451,0.385348051786423,0.674368619918823,\r\n-0.149508386850357,0.0584179237484932,0.987033188343048,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.0112852230668068,0.299653649330139,0.953981280326843,-0.0112852230668068,0.299653649330139,0.953981280326843,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.191774770617485,0.246372789144516,0.950011968612671,-0.280762284994125,0.367747992277145,0.886529088020325,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.260193228721619,0.462161093950272,0.847765624523163,-0.401801139116287,0.454067289829254,0.795222342014313,-0.287240982055664,0.426977604627609,0.857427895069122,-0.260193228721619,0.462161093950272,0.847765624523163,-0.149508386850357,0.0584179237484932,0.987033188343048,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.287240982055664,0.426977604627609,0.857427895069122,-0.278763324022293,0.474724858999252,0.83482164144516,-0.151033982634544,0.454980313777924,0.877599835395813,-0.0148559240624309,0.374038904905319,0.927293956279755,-0.151033982634544,0.454980313777924,0.877599835395813,0.031970351934433,0.459809422492981,0.887441873550415,-0.0148559240624309,0.374038904905319,0.927293956279755,0.199078485369682,0.38610965013504,0.900714755058289,0.198135867714882,0.313905566930771,0.928550124168396,0.36633089184761,0.365843951702118,0.855546474456787,0.210851907730103,0.339987516403198,0.916487812995911,0.366166591644287,0.251160144805908,0.896013677120209,0.210851907730103,0.339987516403198,0.916487812995911,0.0267036035656929,0.266716927289963,0.963404834270477,0.212998434901237,0.199246034026146,0.956521093845367,0.0267036035656929,0.266716927289963,0.963404834270477,-0.0060020862147212,0.273110121488571,0.961964011192322,0.0611381828784943,0.179349884390831,0.981883704662323,0.0611381828784943,0.179349884390831,0.981883704662323,0.0544517450034618,0.219662219285965,0.974055171012878,0.161179721355438,0.19114425778389,0.968238055706024,0.198135867714882,0.313905566930771,0.928550124168396,0.199078485369682,0.38610965013504,0.900714755058289,\r\n0.348293662071228,0.301887094974518,0.887443244457245,0.36633089184761,0.365843951702118,0.855546474456787,0.366166591644287,0.251160144805908,0.896013677120209,0.348293662071228,0.301887094974518,0.887443244457245,0.0544517450034618,0.219662219285965,0.974055171012878,0.223671555519104,0.321366280317307,0.920160114765167,0.161179721355438,0.19114425778389,0.968238055706024,0.24602784216404,0.339038670063019,0.908032476902008,0.223671555519104,0.321366280317307,0.920160114765167,0.237124502658844,0.469708621501923,0.850379765033722,0.24602784216404,0.339038670063019,0.908032476902008,0.237124502658844,0.469708621501923,0.850379765033722,0.0357851162552834,0.42984676361084,0.902192413806915,-0.0147538594901562,0.291810601949692,0.956362247467041,0.0357851162552834,0.42984676361084,0.902192413806915,-0.190063312649727,0.359921514987946,0.913417935371399,-0.227579534053802,0.248930767178535,0.941403687000275,-0.182232171297073,0.291981071233749,0.938902795314789,-0.188786968588829,0.169787734746933,0.967228770256042,-0.227579534053802,0.248930767178535,0.941403687000275,-0.190063312649727,0.359921514987946,0.913417935371399,-0.182232171297073,0.291981071233749,0.938902795314789,0.0534307770431042,0.210744023323059,0.976079940795898,0.094586469233036,0.340464115142822,0.935487806797028,0.209412813186646,0.363791555166245,0.90763533115387,-0.188786968588829,0.169787734746933,0.967228770256042,-0.182232171297073,0.291981071233749,0.938902795314789,-0.0267785228788853,0.23379772901535,0.971916377544403,0.0534307770431042,0.210744023323059,0.976079940795898,-0.0267785228788853,0.23379772901535,0.971916377544403,0.0309427361935377,0.19627334177494,0.980060815811157,0.0886930823326111,0.227541297674179,0.969720780849457,0.268700033426285,0.261891305446625,0.926937460899353,0.136618614196777,0.423962980508804,0.895315945148468,0.0886930823326111,0.227541297674179,0.969720780849457,-0.0226036328822374,0.374068170785904,0.927125632762909,-0.0212020799517632,0.162111476063728,0.986544609069824,-0.0212020799517632,0.162111476063728,0.986544609069824,\r\n-0.0226036328822374,0.374068170785904,0.927125632762909,-0.0762558132410049,0.213511079549789,0.973959982395172,0.209412813186646,0.363791555166245,0.90763533115387,0.136618614196777,0.423962980508804,0.895315945148468,0.268700033426285,0.261891305446625,0.926937460899353,0.29873588681221,0.0950129926204681,0.949594259262085,0.299044817686081,0.0283797830343246,0.953816890716553,0.308654546737671,0.146264389157295,0.939861118793488,0.289669722318649,0.0577834844589233,0.955380797386169,0.299044817686081,0.0283797830343246,0.953816890716553,0.280861258506775,0.0404330529272556,0.958896279335022,0.177646741271019,-0.750194430351257,0.636906385421753,0.207897424697876,-0.61188817024231,0.763132572174072,0.276518255472183,-0.16714258491993,0.946361899375916,0.248926490545273,-0.412970989942551,0.876065194606781,0.291687965393066,-0.184123456478119,0.938624858856201,0.207897424697876,-0.61188817024231,0.763132572174072,0.248926490545273,-0.412970989942551,0.876065194606781,0.245692268013954,-0.24162757396698,0.938749849796295,0.27564799785614,0.0145710995420814,0.961148142814636,0.282634675502777,-0.0593121312558651,0.95739209651947,0.276407986879349,0.0273561291396618,0.96065092086792,0.280861258506775,0.0404330529272556,0.958896279335022,0.282634675502777,-0.0593121312558651,0.95739209651947,0.27564799785614,0.0145710995420814,0.961148142814636,0.245692268013954,-0.24162757396698,0.938749849796295,0.308654546737671,0.146264389157295,0.939861118793488,0.30853146314621,0.245821341872215,0.918901562690735,0.294447273015976,0.35137552022934,0.888727128505707,0.228516042232513,0.337344855070114,0.913224339485168,0.172458738088608,0.0686039701104164,0.982624769210815,0.278208315372467,0.420680373907089,0.863497614860535,0.294447273015976,0.35137552022934,0.888727128505707,0.231172353029251,0.2387335896492,0.943167686462402,0.228516042232513,0.337344855070114,0.913224339485168,0.146219566464424,-0.00181043182965368,0.989250421524048,0.0482234582304955,-0.347167521715164,0.936562418937683,0.235776096582413,0.231674626469612,0.943788349628448,\r\n0.146219566464424,-0.00181043182965368,0.989250421524048,0.278208315372467,0.420680373907089,0.863497614860535,0.172458738088608,0.0686039701104164,0.982624769210815,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.440851867198944,-0.460037797689438,0.770723521709442,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.440851867198944,-0.460037797689438,0.770723521709442,0.0482234582304955,-0.347167521715164,0.936562418937683,-0.0902806520462036,-0.627527475357056,0.773342430591583,0.0652306601405144,-0.259792476892471,0.963458716869354,-0.14106921851635,-0.565365731716156,0.812687456607819,0.0652306601405144,-0.259792476892471,0.963458716869354,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.25767657160759,-0.484305799007416,0.836092412471771,-0.14106921851635,-0.565365731716156,0.812687456607819,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.322486758232117,-0.458847165107727,0.827925980091095,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.183543220162392,-0.279210150241852,0.942525088787079,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.50259256362915,-0.226412817835808,0.834348678588867,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.50259256362915,-0.226412817835808,0.834348678588867,\r\n-0.459690183401108,-0.343426823616028,0.818988919258118,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.417526125907898,-0.155350536108017,0.895286560058594,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.0938081294298172,-0.268718898296356,0.958639681339264,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.43344509601593,-0.292476266622543,0.852398157119751,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.47955596446991,-0.228416338562965,0.847261428833008,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.547647655010223,0.211131721735001,0.809632837772369,-0.0253782197833061,0.0764647945761681,0.996749222278595,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.768202126026154,0.357100814580917,0.531360805034637,-0.781966388225555,0.393921971321106,0.48306730389595,-0.671155273914337,0.498823404312134,0.548384547233582,-0.335065901279449,0.410105288028717,0.848259627819061,-0.547647655010223,0.211131721735001,0.809632837772369,-0.671155273914337,0.498823404312134,0.548384547233582,-0.705836117267609,0.5106121301651,0.490989297628403,-0.781966388225555,0.393921971321106,0.48306730389595,\r\n-0.736575245857239,0.396892726421356,0.547661304473877,-0.768181025981903,0.362770467996597,0.527537167072296,-0.700007915496826,0.477078557014465,0.531398952007294,-0.736575245857239,0.396892726421356,0.547661304473877,-0.723761260509491,0.418872743844986,0.548374950885773,-0.689777791500092,0.512739598751068,0.511179685592651,-0.700007915496826,0.477078557014465,0.531398952007294,-0.18082632124424,-0.224410399794579,0.957570731639862,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.62299919128418,0.215462476015091,0.751962602138519,-0.628749549388886,0.112374156713486,0.769445180892944,-0.573001444339752,0.320152223110199,0.754434704780579,-0.62299919128418,0.215462476015091,0.751962602138519,-0.472552567720413,0.238754838705063,0.848345458507538,-0.723879158496857,0.251553326845169,0.642432689666748,-0.573001444339752,0.320152223110199,0.754434704780579,-0.629867970943451,0.385348051786423,0.674368619918823,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.44268211722374,-0.192050188779831,0.875870525836945,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.381730914115906,-0.379836052656174,0.842618465423584,-0.723761260509491,0.418872743844986,0.548374950885773,-0.601086437702179,0.495438903570175,0.627084791660309,-0.689777791500092,0.512739598751068,0.511179685592651,-0.601086437702179,0.495438903570175,0.627084791660309,-0.629867970943451,0.385348051786423,0.674368619918823,-0.534764170646667,0.438399821519852,0.722379982471466,0.221398919820786,0.32357656955719,0.91993510723114,\r\n-0.0112852230668068,0.299653649330139,0.953981280326843,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.0112852230668068,0.299653649330139,0.953981280326843,0.13478696346283,0.405199497938156,0.904237627983093,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.12575401365757,0.480429619550705,0.867970705032349,-0.260193228721619,0.462161093950272,0.847765624523163,-0.0854602381587029,0.406855821609497,0.909485995769501,-0.287240982055664,0.426977604627609,0.857427895069122,-0.401801139116287,0.454067289829254,0.795222342014313,-0.278763324022293,0.474724858999252,0.83482164144516,-0.260193228721619,0.462161093950272,0.847765624523163,-0.278763324022293,0.474724858999252,0.83482164144516,-0.401801139116287,0.454067289829254,0.795222342014313,0.0183836482465267,-0.0222958847880363,0.999582231044769,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.0997840166091919,0.461065888404846,0.881737649440765,-0.151033982634544,0.454980313777924,0.877599835395813,-0.278763324022293,0.474724858999252,0.83482164144516,-0.0997840166091919,0.461065888404846,0.881737649440765,0.031970351934433,0.459809422492981,0.887441873550415,-0.151033982634544,0.454980313777924,0.877599835395813,-0.0148559240624309,0.374038904905319,0.927293956279755,0.031970351934433,0.459809422492981,0.887441873550415,0.199078485369682,0.38610965013504,0.900714755058289,0.210851907730103,0.339987516403198,0.916487812995911,0.36633089184761,0.365843951702118,0.855546474456787,0.144646883010864,0.484331071376801,0.862844467163086,0.210851907730103,0.339987516403198,0.916487812995911,0.0155981173738837,0.409218490123749,0.912303030490875,0.0267036035656929,0.266716927289963,0.963404834270477,-0.0060020862147212,0.273110121488571,0.961964011192322,0.0267036035656929,0.266716927289963,0.963404834270477,-0.150894448161125,0.327793836593628,0.932621002197266,-0.0060020862147212,0.273110121488571,0.961964011192322,0.0544517450034618,0.219662219285965,0.974055171012878,0.0611381828784943,0.179349884390831,0.981883704662323,\r\n0.199078485369682,0.38610965013504,0.900714755058289,0.392720013856888,0.384200841188431,0.835560083389282,0.348293662071228,0.301887094974518,0.887443244457245,0.36633089184761,0.365843951702118,0.855546474456787,0.348293662071228,0.301887094974518,0.887443244457245,0.392720013856888,0.384200841188431,0.835560083389282,0.0544517450034618,0.219662219285965,0.974055171012878,-0.0060020862147212,0.273110121488571,0.961964011192322,0.223671555519104,0.321366280317307,0.920160114765167,0.167693793773651,0.403976023197174,0.899267494678497,0.237124502658844,0.469708621501923,0.850379765033722,0.223671555519104,0.321366280317307,0.920160114765167,0.237124502658844,0.469708621501923,0.850379765033722,0.0713720172643662,0.538539171218872,0.839572191238403,0.0357851162552834,0.42984676361084,0.902192413806915,-0.190063312649727,0.359921514987946,0.913417935371399,0.0357851162552834,0.42984676361084,0.902192413806915,-0.127938777208328,0.473729997873306,0.87132740020752,-0.0863652005791664,0.390618085861206,0.916492462158203,-0.182232171297073,0.291981071233749,0.938902795314789,-0.190063312649727,0.359921514987946,0.913417935371399,0.094586469233036,0.340464115142822,0.935487806797028,0.0534307770431042,0.210744023323059,0.976079940795898,0.0309427361935377,0.19627334177494,0.980060815811157,0.099195584654808,0.430413246154785,0.897164702415466,0.209412813186646,0.363791555166245,0.90763533115387,0.094586469233036,0.340464115142822,0.935487806797028,0.116519115865231,0.281676322221756,0.952408313751221,-0.0267785228788853,0.23379772901535,0.971916377544403,-0.182232171297073,0.291981071233749,0.938902795314789,0.0309427361935377,0.19627334177494,0.980060815811157,-0.0267785228788853,0.23379772901535,0.971916377544403,0.129524633288383,0.182934284210205,0.974555432796478,0.136618614196777,0.423962980508804,0.895315945148468,-0.0226036328822374,0.374068170785904,0.927125632762909,0.0886930823326111,0.227541297674179,0.969720780849457,-0.0762558132410049,0.213511079549789,0.973959982395172,-0.0226036328822374,0.374068170785904,0.927125632762909,\r\n-0.170585066080093,0.371656179428101,0.912563562393188,0.099195584654808,0.430413246154785,0.897164702415466,0.136618614196777,0.423962980508804,0.895315945148468,0.209412813186646,0.363791555166245,0.90763533115387,0.299974471330643,0.0885767713189125,0.949826002120972,0.308654546737671,0.146264389157295,0.939861118793488,0.299044817686081,0.0283797830343246,0.953816890716553,0.299974471330643,0.0885767713189125,0.949826002120972,0.299044817686081,0.0283797830343246,0.953816890716553,0.289669722318649,0.0577834844589233,0.955380797386169,0.289669722318649,0.0577834844589233,0.955380797386169,0.280861258506775,0.0404330529272556,0.958896279335022,0.276407986879349,0.0273561291396618,0.96065092086792,0.248926490545273,-0.412970989942551,0.876065194606781,0.16749107837677,-0.711831212043762,0.682087182998657,0.245692268013954,-0.24162757396698,0.938749849796295,0.282634675502777,-0.0593121312558651,0.95739209651947,0.247418656945229,-0.355897039175034,0.901177644729614,0.276407986879349,0.0273561291396618,0.96065092086792,0.245692268013954,-0.24162757396698,0.938749849796295,0.218509346246719,-0.556130886077881,0.801855385303497,0.282634675502777,-0.0593121312558651,0.95739209651947,0.308654546737671,0.146264389157295,0.939861118793488,0.299974471330643,0.0885767713189125,0.949826002120972,0.30853146314621,0.245821341872215,0.918901562690735,0.294447273015976,0.35137552022934,0.888727128505707,0.30853146314621,0.245821341872215,0.918901562690735,0.22350849211216,0.130906105041504,0.965871334075928,0.172458738088608,0.0686039701104164,0.982624769210815,0.228516042232513,0.337344855070114,0.913224339485168,0.0875439494848251,-0.145833566784859,0.985428094863892,0.22350849211216,0.130906105041504,0.965871334075928,0.231172353029251,0.2387335896492,0.943167686462402,0.294447273015976,0.35137552022934,0.888727128505707,0.231172353029251,0.2387335896492,0.943167686462402,0.0875439494848251,-0.145833566784859,0.985428094863892,0.228516042232513,0.337344855070114,0.913224339485168,-0.0259303692728281,-0.512676000595093,0.858190417289734,\r\n0.0482234582304955,-0.347167521715164,0.936562418937683,0.146219566464424,-0.00181043182965368,0.989250421524048,0.146219566464424,-0.00181043182965368,0.989250421524048,0.172458738088608,0.0686039701104164,0.982624769210815,-0.0259303692728281,-0.512676000595093,0.858190417289734,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.437429189682007,-0.497583597898483,0.749043464660645,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.0259303692728281,-0.512676000595093,0.858190417289734,-0.0902806520462036,-0.627527475357056,0.773342430591583,0.0482234582304955,-0.347167521715164,0.936562418937683,-0.14106921851635,-0.565365731716156,0.812687456607819,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.14106921851635,-0.565365731716156,0.812687456607819,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.411466836929321,-0.442168802022934,0.796982824802399,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.220294743776321,-0.291857004165649,0.930746793746948,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.459690183401108,-0.343426823616028,0.818988919258118,\r\n-0.448075652122498,-0.228849858045578,0.864208221435547,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.446030735969543,0.141368255019188,0.88378244638443,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.10231702029705,-0.120261050760746,0.987455546855927,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.0938081294298172,-0.268718898296356,0.958639681339264,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.0938081294298172,-0.268718898296356,0.958639681339264,-0.215847447514534,-0.170162081718445,0.961485624313354,-0.10231702029705,-0.120261050760746,0.987455546855927,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.393541276454926,-0.277537405490875,0.876412093639374,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.444471001625061,-0.253340125083923,0.859223067760468,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.353995352983475,-0.260671943426132,0.898185551166534,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.547647655010223,0.211131721735001,0.809632837772369,-0.335065901279449,0.410105288028717,0.848259627819061,-0.0253782197833061,0.0764647945761681,0.996749222278595,0.0183836482465267,-0.0222958847880363,0.999582231044769,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.0253782197833061,0.0764647945761681,0.996749222278595,-0.705836117267609,0.5106121301651,0.490989297628403,-0.671155273914337,0.498823404312134,0.548384547233582,-0.781966388225555,0.393921971321106,0.48306730389595,-0.539243817329407,0.549969434738159,0.637769222259521,-0.335065901279449,0.410105288028717,0.848259627819061,-0.671155273914337,0.498823404312134,0.548384547233582,\r\n-0.705836117267609,0.5106121301651,0.490989297628403,-0.736575245857239,0.396892726421356,0.547661304473877,-0.700007915496826,0.477078557014465,0.531398952007294,-0.640441060066223,0.605327248573303,0.472667038440704,-0.700007915496826,0.477078557014465,0.531398952007294,-0.689777791500092,0.512739598751068,0.511179685592651,0.0183836482465267,-0.0222958847880363,0.999582231044769,-0.114835299551487,-0.173146039247513,0.97817850112915,-0.24667689204216,-0.14749912917614,0.957807123661041,-0.472552567720413,0.238754838705063,0.848345458507538,-0.62299919128418,0.215462476015091,0.751962602138519,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.444357246160507,0.347853809595108,0.825556933879852,-0.573001444339752,0.320152223110199,0.754434704780579,-0.472552567720413,0.238754838705063,0.848345458507538,-0.573001444339752,0.320152223110199,0.754434704780579,-0.522037029266357,0.39647588133812,0.755171537399292,-0.629867970943451,0.385348051786423,0.674368619918823,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.472108691930771,-0.0527706407010555,0.879959404468536,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.375087261199951,0.183337077498436,0.908678650856018,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.0471365563571453,-0.292251408100128,0.955179154872894,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.0886774361133575,-0.354688882827759,0.930769562721252,-0.689777791500092,0.512739598751068,0.511179685592651,-0.601086437702179,0.495438903570175,0.627084791660309,-0.603323459625244,0.5991450548172,0.526332557201386,-0.629867970943451,0.385348051786423,0.674368619918823,-0.522037029266357,0.39647588133812,0.755171537399292,-0.534764170646667,0.438399821519852,0.722379982471466,-0.601086437702179,0.495438903570175,0.627084791660309,-0.534764170646667,0.438399821519852,0.722379982471466,\r\n-0.48348468542099,0.494127154350281,0.722551584243774,0.13478696346283,0.405199497938156,0.904237627983093,-0.0112852230668068,0.299653649330139,0.953981280326843,0.221398919820786,0.32357656955719,0.91993510723114,0.0183836482465267,-0.0222958847880363,0.999582231044769,0.221398919820786,0.32357656955719,0.91993510723114,-0.0220004096627235,0.101968504488468,0.994544267654419,-0.0854602381587029,0.406855821609497,0.909485995769501,0.13478696346283,0.405199497938156,0.904237627983093,0.0124767227098346,0.425440669059753,0.904900252819061,-0.260193228721619,0.462161093950272,0.847765624523163,-0.12575401365757,0.480429619550705,0.867970705032349,-0.238917529582977,0.473097741603851,0.847995758056641,-0.0854602381587029,0.406855821609497,0.909485995769501,0.0124767227098346,0.425440669059753,0.904900252819061,-0.12575401365757,0.480429619550705,0.867970705032349,-0.260193228721619,0.462161093950272,0.847765624523163,-0.238917529582977,0.473097741603851,0.847995758056641,-0.278763324022293,0.474724858999252,0.83482164144516,-0.0997840166091919,0.461065888404846,0.881737649440765,-0.278763324022293,0.474724858999252,0.83482164144516,-0.205172345042229,0.444188982248306,0.872124016284943,-0.0997840166091919,0.461065888404846,0.881737649440765,0.123494826257229,0.414531618356705,0.901616632938385,0.031970351934433,0.459809422492981,0.887441873550415,0.199078485369682,0.38610965013504,0.900714755058289,0.031970351934433,0.459809422492981,0.887441873550415,0.261794298887253,0.415505439043045,0.871102094650269,0.36633089184761,0.365843951702118,0.855546474456787,0.338591575622559,0.448234498500824,0.827309787273407,0.144646883010864,0.484331071376801,0.862844467163086,0.0155981173738837,0.409218490123749,0.912303030490875,0.210851907730103,0.339987516403198,0.916487812995911,0.144646883010864,0.484331071376801,0.862844467163086,0.0155981173738837,0.409218490123749,0.912303030490875,-0.150894448161125,0.327793836593628,0.932621002197266,0.0267036035656929,0.266716927289963,0.963404834270477,-0.0060020862147212,0.273110121488571,0.961964011192322,\r\n-0.150894448161125,0.327793836593628,0.932621002197266,-0.0413791313767433,0.339169234037399,0.939814805984497,0.199078485369682,0.38610965013504,0.900714755058289,0.261794298887253,0.415505439043045,0.871102094650269,0.392720013856888,0.384200841188431,0.835560083389282,0.36633089184761,0.365843951702118,0.855546474456787,0.392720013856888,0.384200841188431,0.835560083389282,0.338591575622559,0.448234498500824,0.827309787273407,0.167693793773651,0.403976023197174,0.899267494678497,0.223671555519104,0.321366280317307,0.920160114765167,-0.0060020862147212,0.273110121488571,0.961964011192322,0.237124502658844,0.469708621501923,0.850379765033722,0.167693793773651,0.403976023197174,0.899267494678497,0.0606982745230198,0.479367136955261,0.875512838363647,0.0713720172643662,0.538539171218872,0.839572191238403,0.237124502658844,0.469708621501923,0.850379765033722,0.0606982745230198,0.479367136955261,0.875512838363647,-0.127938777208328,0.473729997873306,0.87132740020752,0.0357851162552834,0.42984676361084,0.902192413806915,0.0713720172643662,0.538539171218872,0.839572191238403,-0.127938777208328,0.473729997873306,0.87132740020752,-0.0863652005791664,0.390618085861206,0.916492462158203,-0.190063312649727,0.359921514987946,0.913417935371399,0.116519115865231,0.281676322221756,0.952408313751221,-0.182232171297073,0.291981071233749,0.938902795314789,-0.0863652005791664,0.390618085861206,0.916492462158203,-0.0138370776548982,0.249558001756668,0.968260943889618,0.094586469233036,0.340464115142822,0.935487806797028,0.0309427361935377,0.19627334177494,0.980060815811157,-0.0138370776548982,0.249558001756668,0.968260943889618,0.099195584654808,0.430413246154785,0.897164702415466,0.094586469233036,0.340464115142822,0.935487806797028,0.116519115865231,0.281676322221756,0.952408313751221,0.129524633288383,0.182934284210205,0.974555432796478,-0.0267785228788853,0.23379772901535,0.971916377544403,0.0309427361935377,0.19627334177494,0.980060815811157,0.129524633288383,0.182934284210205,0.974555432796478,0.00826482754200697,0.0969062224030495,0.995259165763855,\r\n0.136618614196777,0.423962980508804,0.895315945148468,0.0160410609096289,0.393268972635269,0.919283509254456,-0.0226036328822374,0.374068170785904,0.927125632762909,-0.170585066080093,0.371656179428101,0.912563562393188,-0.0226036328822374,0.374068170785904,0.927125632762909,-0.115861721336842,0.396198451519012,0.910825312137604,0.0160410609096289,0.393268972635269,0.919283509254456,0.136618614196777,0.423962980508804,0.895315945148468,0.099195584654808,0.430413246154785,0.897164702415466,0.289669722318649,0.0577834844589233,0.955380797386169,0.28500509262085,0.0446630083024502,0.957484841346741,0.299974471330643,0.0885767713189125,0.949826002120972,0.289669722318649,0.0577834844589233,0.955380797386169,0.276407986879349,0.0273561291396618,0.96065092086792,0.284545183181763,-0.120181113481522,0.951099574565887,0.245692268013954,-0.24162757396698,0.938749849796295,0.16749107837677,-0.711831212043762,0.682087182998657,0.218509346246719,-0.556130886077881,0.801855385303497,0.247418656945229,-0.355897039175034,0.901177644729614,0.282634675502777,-0.0593121312558651,0.95739209651947,0.218509346246719,-0.556130886077881,0.801855385303497,0.284545183181763,-0.120181113481522,0.951099574565887,0.276407986879349,0.0273561291396618,0.96065092086792,0.247418656945229,-0.355897039175034,0.901177644729614,0.30853146314621,0.245821341872215,0.918901562690735,0.299974471330643,0.0885767713189125,0.949826002120972,0.278272151947021,0.185657814145088,0.942388296127319,0.22350849211216,0.130906105041504,0.965871334075928,0.30853146314621,0.245821341872215,0.918901562690735,0.204497382044792,-0.0537295006215572,0.977391242980957,0.172458738088608,0.0686039701104164,0.982624769210815,0.0875439494848251,-0.145833566784859,0.985428094863892,-0.0259303692728281,-0.512676000595093,0.858190417289734,0.22350849211216,0.130906105041504,0.965871334075928,0.0214574746787548,-0.310620427131653,0.950291752815247,0.231172353029251,0.2387335896492,0.943167686462402,0.0875439494848251,-0.145833566784859,0.985428094863892,0.231172353029251,0.2387335896492,0.943167686462402,\r\n0.0214574746787548,-0.310620427131653,0.950291752815247,-0.317292362451553,-0.541742026805878,0.778357863426209,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.0259303692728281,-0.512676000595093,0.858190417289734,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.264587908983231,-0.315759122371674,0.911202132701874,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.133802995085716,-0.255438387393951,0.957521736621857,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.354357033967972,-0.37569996714592,0.85631799697876,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.448075652122498,-0.228849858045578,0.864208221435547,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.448075652122498,-0.228849858045578,0.864208221435547,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.446030735969543,0.141368255019188,0.88378244638443,-0.45914751291275,-0.0865375399589539,0.884135007858276,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.446030735969543,0.141368255019188,0.88378244638443,-0.323461532592773,0.0612037219107151,0.944259822368622,\r\n-0.10231702029705,-0.120261050760746,0.987455546855927,-0.297859698534012,0.00669507728889585,0.954586088657379,-0.323461532592773,0.0612037219107151,0.944259822368622,-0.0938081294298172,-0.268718898296356,0.958639681339264,0.101315304636955,-0.2437494546175,0.964531660079956,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.10231702029705,-0.120261050760746,0.987455546855927,0.101315304636955,-0.2437494546175,0.964531660079956,-0.0938081294298172,-0.268718898296356,0.958639681339264,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.371466189622879,-0.20850433409214,0.904731273651123,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.217601418495178,-0.224231988191605,0.94993132352829,0.0648594722151756,0.330625355243683,0.941530644893646,-0.0253782197833061,0.0764647945761681,0.996749222278595,-0.335065901279449,0.410105288028717,0.848259627819061,-0.0253782197833061,0.0764647945761681,0.996749222278595,0.260425508022308,0.201003059744835,0.944339036941528,0.0183836482465267,-0.0222958847880363,0.999582231044769,-0.636635839939117,0.632672071456909,0.440931648015976,-0.671155273914337,0.498823404312134,0.548384547233582,-0.705836117267609,0.5106121301651,0.490989297628403,-0.315874487161636,0.443325936794281,0.838859498500824,-0.335065901279449,0.410105288028717,0.848259627819061,-0.539243817329407,0.549969434738159,0.637769222259521,-0.636635839939117,0.632672071456909,0.440931648015976,-0.539243817329407,0.549969434738159,0.637769222259521,-0.671155273914337,0.498823404312134,0.548384547233582,-0.700007915496826,0.477078557014465,0.531398952007294,-0.635668337345123,0.626442015171051,0.451105266809464,-0.705836117267609,0.5106121301651,0.490989297628403,-0.640441060066223,0.605327248573303,0.472667038440704,-0.635668337345123,0.626442015171051,0.451105266809464,\r\n-0.700007915496826,0.477078557014465,0.531398952007294,-0.603323459625244,0.5991450548172,0.526332557201386,-0.640441060066223,0.605327248573303,0.472667038440704,-0.689777791500092,0.512739598751068,0.511179685592651,-0.497143477201462,0.0973778367042542,0.8621866106987,-0.375087261199951,0.183337077498436,0.908678650856018,-0.472552567720413,0.238754838705063,0.848345458507538,-0.573001444339752,0.320152223110199,0.754434704780579,-0.444357246160507,0.347853809595108,0.825556933879852,-0.522037029266357,0.39647588133812,0.755171537399292,-0.472552567720413,0.238754838705063,0.848345458507538,-0.360474288463593,0.28840047121048,0.887064456939697,-0.444357246160507,0.347853809595108,0.825556933879852,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.152312874794006,0.00693594291806221,0.988307952880859,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.18723401427269,0.173806369304657,0.966816663742065,-0.375087261199951,0.183337077498436,0.908678650856018,-0.293450683355331,-0.341643989086151,0.892841517925262,-0.0886774361133575,-0.354688882827759,0.930769562721252,-0.0471365563571453,-0.292251408100128,0.955179154872894,-0.0471365563571453,-0.292251408100128,0.955179154872894,0.0784733891487122,-0.129872739315033,0.988420426845551,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.0886774361133575,-0.354688882827759,0.930769562721252,-0.252442002296448,-0.338712900876999,0.906391978263855,-0.603323459625244,0.5991450548172,0.526332557201386,-0.601086437702179,0.495438903570175,0.627084791660309,-0.507077217102051,0.606642067432404,0.612256407737732,-0.522037029266357,0.39647588133812,0.755171537399292,-0.441208571195602,0.414508998394012,0.795937895774841,-0.534764170646667,0.438399821519852,0.722379982471466,-0.48348468542099,0.494127154350281,0.722551584243774,-0.534764170646667,0.438399821519852,0.722379982471466,-0.441208571195602,0.414508998394012,0.795937895774841,-0.601086437702179,0.495438903570175,0.627084791660309,\r\n-0.48348468542099,0.494127154350281,0.722551584243774,-0.507077217102051,0.606642067432404,0.612256407737732,0.13478696346283,0.405199497938156,0.904237627983093,0.221398919820786,0.32357656955719,0.91993510723114,0.265602320432663,0.382017701864243,0.885165393352509,0.260425508022308,0.201003059744835,0.944339036941528,0.221398919820786,0.32357656955719,0.91993510723114,0.0183836482465267,-0.0222958847880363,0.999582231044769,0.0636734738945961,0.342715442180634,0.937278926372528,0.0124767227098346,0.425440669059753,0.904900252819061,0.13478696346283,0.405199497938156,0.904237627983093,-0.149759024381638,0.533650279045105,0.832339823246002,-0.238917529582977,0.473097741603851,0.847995758056641,-0.12575401365757,0.480429619550705,0.867970705032349,-0.0967390164732933,0.408581286668777,0.907580733299255,-0.12575401365757,0.480429619550705,0.867970705032349,0.0124767227098346,0.425440669059753,0.904900252819061,-0.278763324022293,0.474724858999252,0.83482164144516,-0.238917529582977,0.473097741603851,0.847995758056641,-0.205172345042229,0.444188982248306,0.872124016284943,-0.146359711885452,0.458258777856827,0.876685559749603,-0.0997840166091919,0.461065888404846,0.881737649440765,-0.205172345042229,0.444188982248306,0.872124016284943,0.00277008465491235,0.454153031110764,0.890919327735901,0.123494826257229,0.414531618356705,0.901616632938385,-0.0997840166091919,0.461065888404846,0.881737649440765,0.031970351934433,0.459809422492981,0.887441873550415,0.123494826257229,0.414531618356705,0.901616632938385,0.261794298887253,0.415505439043045,0.871102094650269,0.144646883010864,0.484331071376801,0.862844467163086,0.338591575622559,0.448234498500824,0.827309787273407,0.178815573453903,0.562302052974701,0.807366847991943,0.0155981173738837,0.409218490123749,0.912303030490875,0.144646883010864,0.484331071376801,0.862844467163086,-0.075469397008419,0.476377457380295,0.875995874404907,0.0155981173738837,0.409218490123749,0.912303030490875,-0.075469397008419,0.476377457380295,0.875995874404907,-0.150894448161125,0.327793836593628,0.932621002197266,\r\n-0.207679361104965,0.353434801101685,0.912114560604095,-0.0413791313767433,0.339169234037399,0.939814805984497,-0.150894448161125,0.327793836593628,0.932621002197266,-0.0060020862147212,0.273110121488571,0.961964011192322,-0.0413791313767433,0.339169234037399,0.939814805984497,0.167693793773651,0.403976023197174,0.899267494678497,0.284897685050964,0.411706954240799,0.865638792514801,0.392720013856888,0.384200841188431,0.835560083389282,0.261794298887253,0.415505439043045,0.871102094650269,0.338591575622559,0.448234498500824,0.827309787273407,0.392720013856888,0.384200841188431,0.835560083389282,0.322305023670197,0.478769451379776,0.816638946533203,0.0606982745230198,0.479367136955261,0.875512838363647,0.167693793773651,0.403976023197174,0.899267494678497,-0.0413791313767433,0.339169234037399,0.939814805984497,0.0606982745230198,0.479367136955261,0.875512838363647,0.00529352389276028,0.501917958259583,0.864898920059204,0.0713720172643662,0.538539171218872,0.839572191238403,-0.127938777208328,0.473729997873306,0.87132740020752,0.0713720172643662,0.538539171218872,0.839572191238403,-0.0174383465200663,0.495700091123581,0.868318617343903,-0.127938777208328,0.473729997873306,0.87132740020752,-0.0174383465200663,0.495700091123581,0.868318617343903,-0.0863652005791664,0.390618085861206,0.916492462158203,0.116519115865231,0.281676322221756,0.952408313751221,-0.0863652005791664,0.390618085861206,0.916492462158203,0.202450111508369,0.351367443799973,0.914086818695068,-0.0138370776548982,0.249558001756668,0.968260943889618,0.0309427361935377,0.19627334177494,0.980060815811157,0.00826482754200697,0.0969062224030495,0.995259165763855,0.023600235581398,0.334802091121674,0.941992819309235,0.099195584654808,0.430413246154785,0.897164702415466,-0.0138370776548982,0.249558001756668,0.968260943889618,0.140619903802872,0.203772723674774,0.968866646289825,0.129524633288383,0.182934284210205,0.974555432796478,0.116519115865231,0.281676322221756,0.952408313751221,0.00826482754200697,0.0969062224030495,0.995259165763855,0.129524633288383,0.182934284210205,0.974555432796478,\r\n0.140619903802872,0.203772723674774,0.968866646289825,0.0160410609096289,0.393268972635269,0.919283509254456,-0.115861721336842,0.396198451519012,0.910825312137604,-0.0226036328822374,0.374068170785904,0.927125632762909,-0.115861721336842,0.396198451519012,0.910825312137604,-0.222731307148933,0.354214578866959,0.908252537250519,-0.170585066080093,0.371656179428101,0.912563562393188,0.0160410609096289,0.393268972635269,0.919283509254456,0.099195584654808,0.430413246154785,0.897164702415466,0.023600235581398,0.334802091121674,0.941992819309235,0.28500509262085,0.0446630083024502,0.957484841346741,0.289669722318649,0.0577834844589233,0.955380797386169,0.284545183181763,-0.120181113481522,0.951099574565887,0.299974471330643,0.0885767713189125,0.949826002120972,0.28500509262085,0.0446630083024502,0.957484841346741,0.238079339265823,0.0721782967448235,0.968559980392456,0.234387576580048,0.162383526563644,0.958485245704651,0.278272151947021,0.185657814145088,0.942388296127319,0.299974471330643,0.0885767713189125,0.949826002120972,0.30853146314621,0.245821341872215,0.918901562690735,0.278272151947021,0.185657814145088,0.942388296127319,0.204497382044792,-0.0537295006215572,0.977391242980957,0.22350849211216,0.130906105041504,0.965871334075928,0.204497382044792,-0.0537295006215572,0.977391242980957,0.0641911253333092,-0.438263207674026,0.896551549434662,-0.0259303692728281,-0.512676000595093,0.858190417289734,0.0875439494848251,-0.145833566784859,0.985428094863892,-0.0780157446861267,-0.616507112979889,0.783474564552307,0.22350849211216,0.130906105041504,0.965871334075928,0.0641911253333092,-0.438263207674026,0.896551549434662,0.0214574746787548,-0.310620427131653,0.950291752815247,0.0875439494848251,-0.145833566784859,0.985428094863892,0.0214574746787548,-0.310620427131653,0.950291752815247,-0.0780157446861267,-0.616507112979889,0.783474564552307,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.0259303692728281,-0.512676000595093,0.858190417289734,\r\n-0.0780157446861267,-0.616507112979889,0.783474564552307,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.0902806520462036,-0.627527475357056,0.773342430591583,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.205875590443611,-0.551023662090302,0.808695316314697,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.313559919595718,-0.228925079107285,0.921560168266296,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.459690183401108,-0.343426823616028,0.818988919258118,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.447878748178482,-0.442914187908173,0.776679813861847,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.303190767765045,-0.278617709875107,0.911288857460022,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.413030952215195,-0.38897779583931,0.823469221591949,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.448075652122498,-0.228849858045578,0.864208221435547,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.448075652122498,-0.228849858045578,0.864208221435547,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.34295517206192,0.132272988557816,0.929992079734802,-0.446030735969543,0.141368255019188,0.88378244638443,\r\n-0.438236474990845,0.0115110147744417,0.898785948753357,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.323461532592773,0.0612037219107151,0.944259822368622,-0.446030735969543,0.141368255019188,0.88378244638443,-0.323461532592773,0.0612037219107151,0.944259822368622,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.10231702029705,-0.120261050760746,0.987455546855927,0.101315304636955,-0.2437494546175,0.964531660079956,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.00572862662374973,-0.247331276535988,0.968914031982422,0.101315304636955,-0.2437494546175,0.964531660079956,-0.10231702029705,-0.120261050760746,0.987455546855927,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.00572862662374973,-0.247331276535988,0.968914031982422,0.119882509112358,-0.216166958212852,0.968968451023102,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.281401038169861,-0.23745234310627,0.92974716424942,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.199443563818932,-0.258914470672607,0.945084929466248,0.0648594722151756,0.330625355243683,0.941530644893646,0.260425508022308,0.201003059744835,0.944339036941528,-0.0253782197833061,0.0764647945761681,0.996749222278595,0.0648594722151756,0.330625355243683,0.941530644893646,-0.335065901279449,0.410105288028717,0.848259627819061,-0.315874487161636,0.443325936794281,0.838859498500824,-0.635668337345123,0.626442015171051,0.451105266809464,-0.636635839939117,0.632672071456909,0.440931648015976,-0.705836117267609,0.5106121301651,0.490989297628403,-0.315874487161636,0.443325936794281,0.838859498500824,-0.539243817329407,0.549969434738159,0.637769222259521,-0.433520287275314,0.266040325164795,0.860977709293365,-0.539243817329407,0.549969434738159,0.637769222259521,-0.636635839939117,0.632672071456909,0.440931648015976,-0.556917250156403,0.639157056808472,0.530397236347198,-0.640441060066223,0.605327248573303,0.472667038440704,\r\n-0.551063477993011,0.742854118347168,0.380127161741257,-0.635668337345123,0.626442015171051,0.451105266809464,-0.603323459625244,0.5991450548172,0.526332557201386,-0.518564462661743,0.714755177497864,0.469271510839462,-0.640441060066223,0.605327248573303,0.472667038440704,-0.472552567720413,0.238754838705063,0.848345458507538,-0.375087261199951,0.183337077498436,0.908678650856018,-0.360474288463593,0.28840047121048,0.887064456939697,-0.444357246160507,0.347853809595108,0.825556933879852,-0.441208571195602,0.414508998394012,0.795937895774841,-0.522037029266357,0.39647588133812,0.755171537399292,-0.328831642866135,0.339123517274857,0.881399393081665,-0.444357246160507,0.347853809595108,0.825556933879852,-0.360474288463593,0.28840047121048,0.887064456939697,0.0784733891487122,-0.129872739315033,0.988420426845551,-0.152312874794006,0.00693594291806221,0.988307952880859,-0.279840916395187,-0.147536441683769,0.948642134666443,-0.369284838438034,0.0356708206236362,0.928631365299225,-0.152312874794006,0.00693594291806221,0.988307952880859,-0.18723401427269,0.173806369304657,0.966816663742065,-0.18723401427269,0.173806369304657,0.966816663742065,-0.20365247130394,0.280730247497559,0.937931776046753,-0.375087261199951,0.183337077498436,0.908678650856018,-0.0886774361133575,-0.354688882827759,0.930769562721252,0.145753160119057,-0.257337868213654,0.955265998840332,-0.0471365563571453,-0.292251408100128,0.955179154872894,-0.0471365563571453,-0.292251408100128,0.955179154872894,0.145753160119057,-0.257337868213654,0.955265998840332,0.0784733891487122,-0.129872739315033,0.988420426845551,-0.0886774361133575,-0.354688882827759,0.930769562721252,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.00888291280716658,-0.25619649887085,0.966583847999573,-0.603323459625244,0.5991450548172,0.526332557201386,-0.507077217102051,0.606642067432404,0.612256407737732,-0.518564462661743,0.714755177497864,0.469271510839462,-0.48348468542099,0.494127154350281,0.722551584243774,-0.441208571195602,0.414508998394012,0.795937895774841,-0.354392647743225,0.48661482334137,0.798505961894989,\r\n-0.507077217102051,0.606642067432404,0.612256407737732,-0.48348468542099,0.494127154350281,0.722551584243774,-0.42052149772644,0.588859856128693,0.69022136926651,0.221398919820786,0.32357656955719,0.91993510723114,0.145258784294128,0.284676551818848,0.947554230690002,0.265602320432663,0.382017701864243,0.885165393352509,0.0636734738945961,0.342715442180634,0.937278926372528,0.13478696346283,0.405199497938156,0.904237627983093,0.265602320432663,0.382017701864243,0.885165393352509,0.221398919820786,0.32357656955719,0.91993510723114,0.260425508022308,0.201003059744835,0.944339036941528,0.145258784294128,0.284676551818848,0.947554230690002,-0.0967390164732933,0.408581286668777,0.907580733299255,0.0124767227098346,0.425440669059753,0.904900252819061,0.0636734738945961,0.342715442180634,0.937278926372528,-0.238917529582977,0.473097741603851,0.847995758056641,-0.149759024381638,0.533650279045105,0.832339823246002,-0.203341916203499,0.490234702825546,0.847538709640503,-0.149759024381638,0.533650279045105,0.832339823246002,-0.12575401365757,0.480429619550705,0.867970705032349,-0.144358798861504,0.543385446071625,0.826978027820587,-0.0967390164732933,0.408581286668777,0.907580733299255,-0.154226958751678,0.485750824213028,0.860383689403534,-0.12575401365757,0.480429619550705,0.867970705032349,-0.238917529582977,0.473097741603851,0.847995758056641,-0.203341916203499,0.490234702825546,0.847538709640503,-0.205172345042229,0.444188982248306,0.872124016284943,-0.0997840166091919,0.461065888404846,0.881737649440765,-0.146359711885452,0.458258777856827,0.876685559749603,0.00277008465491235,0.454153031110764,0.890919327735901,-0.203341916203499,0.490234702825546,0.847538709640503,-0.146359711885452,0.458258777856827,0.876685559749603,-0.205172345042229,0.444188982248306,0.872124016284943,0.146157950162888,0.42800235748291,0.891880869865417,0.123494826257229,0.414531618356705,0.901616632938385,0.00277008465491235,0.454153031110764,0.890919327735901,0.284897685050964,0.411706954240799,0.865638792514801,0.261794298887253,0.415505439043045,0.871102094650269,\r\n0.123494826257229,0.414531618356705,0.901616632938385,0.178815573453903,0.562302052974701,0.807366847991943,0.338591575622559,0.448234498500824,0.827309787273407,0.322305023670197,0.478769451379776,0.816638946533203,0.0478980652987957,0.568480312824249,0.821301221847534,0.144646883010864,0.484331071376801,0.862844467163086,0.178815573453903,0.562302052974701,0.807366847991943,0.144646883010864,0.484331071376801,0.862844467163086,0.0478980652987957,0.568480312824249,0.821301221847534,-0.075469397008419,0.476377457380295,0.875995874404907,-0.150894448161125,0.327793836593628,0.932621002197266,-0.075469397008419,0.476377457380295,0.875995874404907,-0.210894584655762,0.363800972700119,0.907288372516632,-0.207679361104965,0.353434801101685,0.912114560604095,0.0606982745230198,0.479367136955261,0.875512838363647,-0.0413791313767433,0.339169234037399,0.939814805984497,-0.207679361104965,0.353434801101685,0.912114560604095,-0.150894448161125,0.327793836593628,0.932621002197266,-0.210894584655762,0.363800972700119,0.907288372516632,0.392720013856888,0.384200841188431,0.835560083389282,0.284897685050964,0.411706954240799,0.865638792514801,0.322305023670197,0.478769451379776,0.816638946533203,0.0606982745230198,0.479367136955261,0.875512838363647,-0.119992017745972,0.433786779642105,0.892989814281464,0.00529352389276028,0.501917958259583,0.864898920059204,0.0713720172643662,0.538539171218872,0.839572191238403,0.00529352389276028,0.501917958259583,0.864898920059204,-0.0174383465200663,0.495700091123581,0.868318617343903,-0.0863652005791664,0.390618085861206,0.916492462158203,-0.0174383465200663,0.495700091123581,0.868318617343903,0.0556429587304592,0.399742692708969,0.914936900138855,0.0556429587304592,0.399742692708969,0.914936900138855,0.202450111508369,0.351367443799973,0.914086818695068,-0.0863652005791664,0.390618085861206,0.916492462158203,0.202450111508369,0.351367443799973,0.914086818695068,0.18863944709301,0.328736305236816,0.925390481948853,0.116519115865231,0.281676322221756,0.952408313751221,-0.0138370776548982,0.249558001756668,0.968260943889618,\r\n0.00826482754200697,0.0969062224030495,0.995259165763855,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.0138370776548982,0.249558001756668,0.968260943889618,-0.0554574616253376,0.153167769312859,0.986642777919769,0.023600235581398,0.334802091121674,0.941992819309235,0.18863944709301,0.328736305236816,0.925390481948853,0.140619903802872,0.203772723674774,0.968866646289825,0.116519115865231,0.281676322221756,0.952408313751221,-0.0446717888116837,0.117344312369823,0.992085993289948,0.00826482754200697,0.0969062224030495,0.995259165763855,0.140619903802872,0.203772723674774,0.968866646289825,0.0160410609096289,0.393268972635269,0.919283509254456,-0.103978648781776,0.236527606844902,0.966045081615448,-0.115861721336842,0.396198451519012,0.910825312137604,-0.115861721336842,0.396198451519012,0.910825312137604,-0.103978648781776,0.236527606844902,0.966045081615448,-0.222731307148933,0.354214578866959,0.908252537250519,0.023600235581398,0.334802091121674,0.941992819309235,-0.0554574616253376,0.153167769312859,0.986642777919769,0.0160410609096289,0.393268972635269,0.919283509254456,0.28500509262085,0.0446630083024502,0.957484841346741,0.284545183181763,-0.120181113481522,0.951099574565887,0.287048995494843,-0.331043183803558,0.898895502090454,0.28500509262085,0.0446630083024502,0.957484841346741,0.232683315873146,-0.116002723574638,0.965609550476074,0.238079339265823,0.0721782967448235,0.968559980392456,0.234387576580048,0.162383526563644,0.958485245704651,0.299974471330643,0.0885767713189125,0.949826002120972,0.238079339265823,0.0721782967448235,0.968559980392456,0.234387576580048,0.162383526563644,0.958485245704651,0.170557156205177,0.047172199934721,0.984217941761017,0.278272151947021,0.185657814145088,0.942388296127319,0.204497382044792,-0.0537295006215572,0.977391242980957,0.278272151947021,0.185657814145088,0.942388296127319,0.13853295147419,-0.142608046531677,0.980036497116089,0.0641911253333092,-0.438263207674026,0.896551549434662,0.204497382044792,-0.0537295006215572,0.977391242980957,0.0536942556500435,-0.477733433246613,0.876862347126007,\r\n0.0641911253333092,-0.438263207674026,0.896551549434662,-0.104609645903111,-0.660065054893494,0.743889033794403,0.0214574746787548,-0.310620427131653,0.950291752815247,-0.104609645903111,-0.660065054893494,0.743889033794403,-0.0780157446861267,-0.616507112979889,0.783474564552307,0.0214574746787548,-0.310620427131653,0.950291752815247,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.379826217889786,-0.363878905773163,0.850484609603882,-0.104609645903111,-0.660065054893494,0.743889033794403,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.0780157446861267,-0.616507112979889,0.783474564552307,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.312497198581696,-0.451758295297623,0.835619390010834,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.34295517206192,0.132272988557816,0.929992079734802,\r\n-0.36165127158165,0.131866320967674,0.922940731048584,-0.446030735969543,0.141368255019188,0.88378244638443,-0.438236474990845,0.0115110147744417,0.898785948753357,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.34295517206192,0.132272988557816,0.929992079734802,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.446030735969543,0.141368255019188,0.88378244638443,-0.36165127158165,0.131866320967674,0.922940731048584,-0.10231702029705,-0.120261050760746,0.987455546855927,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.28510046005249,-0.135200932621956,0.948914289474487,0.0275514479726553,-0.231069773435593,0.972546994686127,0.119882509112358,-0.216166958212852,0.968968451023102,-0.00572862662374973,-0.247331276535988,0.968914031982422,-0.10231702029705,-0.120261050760746,0.987455546855927,-0.28510046005249,-0.135200932621956,0.948914289474487,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.0334517136216164,-0.208664044737816,0.977415025234222,0.119882509112358,-0.216166958212852,0.968968451023102,-0.217601418495178,-0.224231988191605,0.94993132352829,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.199443563818932,-0.258914470672607,0.945084929466248,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.199443563818932,-0.258914470672607,0.945084929466248,-0.230247750878334,-0.320855557918549,0.918715178966522,0.0648594722151756,0.330625355243683,0.941530644893646,0.145258784294128,0.284676551818848,0.947554230690002,0.260425508022308,0.201003059744835,0.944339036941528,-0.187902331352234,0.264447927474976,0.94591748714447,0.0648594722151756,0.330625355243683,0.941530644893646,-0.315874487161636,0.443325936794281,0.838859498500824,-0.565682291984558,0.714127719402313,0.412340849637985,-0.636635839939117,0.632672071456909,0.440931648015976,-0.635668337345123,0.626442015171051,0.451105266809464,-0.433520287275314,0.266040325164795,0.860977709293365,-0.539243817329407,0.549969434738159,0.637769222259521,-0.482998996973038,0.416776418685913,0.770070910453796,\r\n-0.187902331352234,0.264447927474976,0.94591748714447,-0.315874487161636,0.443325936794281,0.838859498500824,-0.433520287275314,0.266040325164795,0.860977709293365,-0.565682291984558,0.714127719402313,0.412340849637985,-0.556917250156403,0.639157056808472,0.530397236347198,-0.636635839939117,0.632672071456909,0.440931648015976,-0.539243817329407,0.549969434738159,0.637769222259521,-0.556917250156403,0.639157056808472,0.530397236347198,-0.482998996973038,0.416776418685913,0.770070910453796,-0.551063477993011,0.742854118347168,0.380127161741257,-0.640441060066223,0.605327248573303,0.472667038440704,-0.518564462661743,0.714755177497864,0.469271510839462,-0.551063477993011,0.742854118347168,0.380127161741257,-0.565682291984558,0.714127719402313,0.412340849637985,-0.635668337345123,0.626442015171051,0.451105266809464,-0.20365247130394,0.280730247497559,0.937931776046753,-0.360474288463593,0.28840047121048,0.887064456939697,-0.375087261199951,0.183337077498436,0.908678650856018,-0.328831642866135,0.339123517274857,0.881399393081665,-0.441208571195602,0.414508998394012,0.795937895774841,-0.444357246160507,0.347853809595108,0.825556933879852,-0.20365247130394,0.280730247497559,0.937931776046753,-0.328831642866135,0.339123517274857,0.881399393081665,-0.360474288463593,0.28840047121048,0.887064456939697,0.0784733891487122,-0.129872739315033,0.988420426845551,0.135554596781731,0.082500085234642,0.987329006195068,-0.152312874794006,0.00693594291806221,0.988307952880859,-0.152312874794006,0.00693594291806221,0.988307952880859,0.135554596781731,0.082500085234642,0.987329006195068,-0.18723401427269,0.173806369304657,0.966816663742065,-0.18723401427269,0.173806369304657,0.966816663742065,0.0383744612336159,0.223438069224358,0.973962366580963,-0.20365247130394,0.280730247497559,0.937931776046753,-0.00888291280716658,-0.25619649887085,0.966583847999573,0.145753160119057,-0.257337868213654,0.955265998840332,-0.0886774361133575,-0.354688882827759,0.930769562721252,0.0784733891487122,-0.129872739315033,0.988420426845551,0.145753160119057,-0.257337868213654,0.955265998840332,\r\n0.227777644991875,-0.0686473324894905,0.971290230751038,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.00888291280716658,-0.25619649887085,0.966583847999573,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.507077217102051,0.606642067432404,0.612256407737732,-0.426413357257843,0.706568419933319,0.564741134643555,-0.518564462661743,0.714755177497864,0.469271510839462,-0.371123343706131,0.384023010730743,0.845454692840576,-0.354392647743225,0.48661482334137,0.798505961894989,-0.441208571195602,0.414508998394012,0.795937895774841,-0.48348468542099,0.494127154350281,0.722551584243774,-0.354392647743225,0.48661482334137,0.798505961894989,-0.42052149772644,0.588859856128693,0.69022136926651,-0.507077217102051,0.606642067432404,0.612256407737732,-0.42052149772644,0.588859856128693,0.69022136926651,-0.426413357257843,0.706568419933319,0.564741134643555,0.145258784294128,0.284676551818848,0.947554230690002,0.0223141238093376,0.205385744571686,0.97842663526535,0.265602320432663,0.382017701864243,0.885165393352509,0.0636734738945961,0.342715442180634,0.937278926372528,0.265602320432663,0.382017701864243,0.885165393352509,0.0223141238093376,0.205385744571686,0.97842663526535,-0.0967390164732933,0.408581286668777,0.907580733299255,0.0636734738945961,0.342715442180634,0.937278926372528,-0.16793030500412,0.293921172618866,0.940962076187134,-0.203341916203499,0.490234702825546,0.847538709640503,-0.149759024381638,0.533650279045105,0.832339823246002,-0.13331313431263,0.575436592102051,0.806907773017883,-0.144358798861504,0.543385446071625,0.826978027820587,-0.12575401365757,0.480429619550705,0.867970705032349,-0.154226958751678,0.485750824213028,0.860383689403534,-0.144358798861504,0.543385446071625,0.826978027820587,-0.112820535898209,0.601291179656982,0.791024804115295,-0.149759024381638,0.533650279045105,0.832339823246002,-0.0967390164732933,0.408581286668777,0.907580733299255,-0.221785336732864,0.435822635889053,0.8722785115242,-0.154226958751678,0.485750824213028,0.860383689403534,-0.0898682102560997,0.526589512825012,0.845356166362762,\r\n0.00277008465491235,0.454153031110764,0.890919327735901,-0.146359711885452,0.458258777856827,0.876685559749603,-0.203341916203499,0.490234702825546,0.847538709640503,-0.13331313431263,0.575436592102051,0.806907773017883,-0.146359711885452,0.458258777856827,0.876685559749603,0.146157950162888,0.42800235748291,0.891880869865417,0.284897685050964,0.411706954240799,0.865638792514801,0.123494826257229,0.414531618356705,0.901616632938385,0.00277008465491235,0.454153031110764,0.890919327735901,0.129363998770714,0.497384965419769,0.857830464839935,0.146157950162888,0.42800235748291,0.891880869865417,0.178815573453903,0.562302052974701,0.807366847991943,0.322305023670197,0.478769451379776,0.816638946533203,0.154508769512177,0.602203369140625,0.783248364925385,0.0478980652987957,0.568480312824249,0.821301221847534,0.178815573453903,0.562302052974701,0.807366847991943,0.0188094787299633,0.607549667358398,0.794058859348297,-0.075469397008419,0.476377457380295,0.875995874404907,0.0478980652987957,0.568480312824249,0.821301221847534,0.0188094787299633,0.607549667358398,0.794058859348297,-0.210894584655762,0.363800972700119,0.907288372516632,-0.075469397008419,0.476377457380295,0.875995874404907,-0.216210544109344,0.366797596216202,0.904827296733856,-0.207679361104965,0.353434801101685,0.912114560604095,-0.119992017745972,0.433786779642105,0.892989814281464,0.0606982745230198,0.479367136955261,0.875512838363647,-0.210894584655762,0.363800972700119,0.907288372516632,-0.216210544109344,0.366797596216202,0.904827296733856,-0.207679361104965,0.353434801101685,0.912114560604095,0.322305023670197,0.478769451379776,0.816638946533203,0.284897685050964,0.411706954240799,0.865638792514801,0.256551146507263,0.52603942155838,0.81084144115448,-0.203229486942291,0.36670109629631,0.90786999464035,0.00529352389276028,0.501917958259583,0.864898920059204,-0.119992017745972,0.433786779642105,0.892989814281464,0.0961935371160507,0.458669751882553,0.883384823799133,-0.0174383465200663,0.495700091123581,0.868318617343903,0.00529352389276028,0.501917958259583,0.864898920059204,\r\n0.126146882772446,0.411300659179688,0.90272843837738,0.0556429587304592,0.399742692708969,0.914936900138855,-0.0174383465200663,0.495700091123581,0.868318617343903,0.0556429587304592,0.399742692708969,0.914936900138855,0.167197108268738,0.369580388069153,0.914032459259033,0.202450111508369,0.351367443799973,0.914086818695068,0.202450111508369,0.351367443799973,0.914086818695068,0.208391189575195,0.388018250465393,0.89778333902359,0.18863944709301,0.328736305236816,0.925390481948853,0.00826482754200697,0.0969062224030495,0.995259165763855,-0.0446717888116837,0.117344312369823,0.992085993289948,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.0120590049773455,0.281187474727631,0.959577023983002,0.140619903802872,0.203772723674774,0.968866646289825,0.18863944709301,0.328736305236816,0.925390481948853,-0.0120590049773455,0.281187474727631,0.959577023983002,-0.0446717888116837,0.117344312369823,0.992085993289948,0.140619903802872,0.203772723674774,0.968866646289825,-0.103978648781776,0.236527606844902,0.966045081615448,0.0160410609096289,0.393268972635269,0.919283509254456,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.103978648781776,0.236527606844902,0.966045081615448,-0.15008307993412,0.175075009465218,0.973048627376556,-0.222731307148933,0.354214578866959,0.908252537250519,0.287048995494843,-0.331043183803558,0.898895502090454,0.232683315873146,-0.116002723574638,0.965609550476074,0.28500509262085,0.0446630083024502,0.957484841346741,0.238079339265823,0.0721782967448235,0.968559980392456,0.232683315873146,-0.116002723574638,0.965609550476074,0.195252776145935,-0.0552942343056202,0.979192972183228,0.13868559896946,-0.0591722913086414,0.988567054271698,0.234387576580048,0.162383526563644,0.958485245704651,0.238079339265823,0.0721782967448235,0.968559980392456,0.170557156205177,0.047172199934721,0.984217941761017,0.234387576580048,0.162383526563644,0.958485245704651,0.106981366872787,-0.0440753884613514,0.993283569812775,0.189247697591782,-0.156319320201874,0.969406723976135,0.278272151947021,0.185657814145088,0.942388296127319,\r\n0.170557156205177,0.047172199934721,0.984217941761017,0.189247697591782,-0.156319320201874,0.969406723976135,0.13853295147419,-0.142608046531677,0.980036497116089,0.278272151947021,0.185657814145088,0.942388296127319,0.204497382044792,-0.0537295006215572,0.977391242980957,0.13853295147419,-0.142608046531677,0.980036497116089,0.0135263269767165,-0.529814898967743,0.848005354404449,0.0536942556500435,-0.477733433246613,0.876862347126007,0.204497382044792,-0.0537295006215572,0.977391242980957,0.0135263269767165,-0.529814898967743,0.848005354404449,0.0641911253333092,-0.438263207674026,0.896551549434662,0.0536942556500435,-0.477733433246613,0.876862347126007,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.104609645903111,-0.660065054893494,0.743889033794403,0.0641911253333092,-0.438263207674026,0.896551549434662,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.347861707210541,-0.239952698349953,0.906319379806519,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.104609645903111,-0.660065054893494,0.743889033794403,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.174205154180527,-0.565521717071533,0.806125044822693,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.154656007885933,-0.583430826663971,0.797301590442657,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.240078449249268,-0.384884089231491,0.891193807125092,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.312497198581696,-0.451758295297623,0.835619390010834,-0.411789327859879,-0.417485773563385,0.810021698474884,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.41497415304184,-0.43052014708519,0.801528990268707,-0.312497198581696,-0.451758295297623,0.835619390010834,\r\n-0.299234688282013,-0.451841235160828,0.840415358543396,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.394739300012589,-0.362034112215042,0.844459593296051,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.381822735071182,-0.294540882110596,0.876046240329742,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.350214272737503,-0.187934219837189,0.917622208595276,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.34295517206192,0.132272988557816,0.929992079734802,-0.228587999939919,0.125682130455971,0.965376317501068,-0.36165127158165,0.131866320967674,0.922940731048584,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.34295517206192,0.132272988557816,0.929992079734802,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.36165127158165,0.131866320967674,0.922940731048584,-0.378439873456955,-0.0175850111991167,0.92545872926712,-0.28510046005249,-0.135200932621956,0.948914289474487,-0.382714509963989,0.0484229698777199,0.92259669303894,-0.378439873456955,-0.0175850111991167,0.92545872926712,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.0999661087989807,-0.32399308681488,0.940763056278229,0.119882509112358,-0.216166958212852,0.968968451023102,-0.28510046005249,-0.135200932621956,0.948914289474487,-0.305228352546692,-0.307656824588776,0.901211857795715,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.102210082113743,-0.309917002916336,0.945253670215607,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.102210082113743,-0.309917002916336,0.945253670215607,-0.199443563818932,-0.258914470672607,0.945084929466248,-0.0334517136216164,-0.208664044737816,0.977415025234222,-0.230247750878334,-0.320855557918549,0.918715178966522,\r\n-0.199443563818932,-0.258914470672607,0.945084929466248,-0.102210082113743,-0.309917002916336,0.945253670215607,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.209770813584328,-0.269928157329559,0.939752578735352,0.145258784294128,0.284676551818848,0.947554230690002,0.0648594722151756,0.330625355243683,0.941530644893646,-0.187902331352234,0.264447927474976,0.94591748714447,-0.433520287275314,0.266040325164795,0.860977709293365,-0.482998996973038,0.416776418685913,0.770070910453796,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.187902331352234,0.264447927474976,0.94591748714447,-0.433520287275314,0.266040325164795,0.860977709293365,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.556917250156403,0.639157056808472,0.530397236347198,-0.565682291984558,0.714127719402313,0.412340849637985,-0.467866331338882,0.588923692703247,0.658991515636444,-0.556917250156403,0.639157056808472,0.530397236347198,-0.467866331338882,0.588923692703247,0.658991515636444,-0.482998996973038,0.416776418685913,0.770070910453796,-0.551063477993011,0.742854118347168,0.380127161741257,-0.518564462661743,0.714755177497864,0.469271510839462,-0.467525482177734,0.81559830904007,0.340909481048584,-0.551063477993011,0.742854118347168,0.380127161741257,-0.454387277364731,0.719729423522949,0.524901509284973,-0.565682291984558,0.714127719402313,0.412340849637985,-0.328831642866135,0.339123517274857,0.881399393081665,-0.371123343706131,0.384023010730743,0.845454692840576,-0.441208571195602,0.414508998394012,0.795937895774841,-0.20365247130394,0.280730247497559,0.937931776046753,-0.153740763664246,0.225317642092705,0.962078809738159,-0.328831642866135,0.339123517274857,0.881399393081665,0.0784733891487122,-0.129872739315033,0.988420426845551,0.227777644991875,-0.0686473324894905,0.971290230751038,0.135554596781731,0.082500085234642,0.987329006195068,0.135554596781731,0.082500085234642,0.987329006195068,0.0383744612336159,0.223438069224358,0.973962366580963,-0.18723401427269,0.173806369304657,0.966816663742065,\r\n-0.20365247130394,0.280730247497559,0.937931776046753,0.0383744612336159,0.223438069224358,0.973962366580963,-0.00996533408761024,0.252672135829926,0.967500567436218,-0.00888291280716658,-0.25619649887085,0.966583847999573,0.0836957916617393,-0.159856617450714,0.983585715293884,0.145753160119057,-0.257337868213654,0.955265998840332,0.227777644991875,-0.0686473324894905,0.971290230751038,0.145753160119057,-0.257337868213654,0.955265998840332,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.00888291280716658,-0.25619649887085,0.966583847999573,-0.127467215061188,-0.153074339032173,0.979959309101105,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.209770813584328,-0.269928157329559,0.939752578735352,-0.395905762910843,0.815633475780487,0.421901136636734,-0.518564462661743,0.714755177497864,0.469271510839462,-0.426413357257843,0.706568419933319,0.564741134643555,-0.244199857115746,0.34387993812561,0.906704425811768,-0.354392647743225,0.48661482334137,0.798505961894989,-0.371123343706131,0.384023010730743,0.845454692840576,-0.42052149772644,0.588859856128693,0.69022136926651,-0.354392647743225,0.48661482334137,0.798505961894989,-0.342094719409943,0.597184479236603,0.725494146347046,-0.426413357257843,0.706568419933319,0.564741134643555,-0.42052149772644,0.588859856128693,0.69022136926651,-0.368748366832733,0.6710125207901,0.643247008323669,-0.185875207185745,0.0435255393385887,0.981608688831329,0.0223141238093376,0.205385744571686,0.97842663526535,0.145258784294128,0.284676551818848,0.947554230690002,0.0636734738945961,0.342715442180634,0.937278926372528,0.0223141238093376,0.205385744571686,0.97842663526535,-0.16793030500412,0.293921172618866,0.940962076187134,-0.221785336732864,0.435822635889053,0.8722785115242,-0.0967390164732933,0.408581286668777,0.907580733299255,-0.16793030500412,0.293921172618866,0.940962076187134,-0.13331313431263,0.575436592102051,0.806907773017883,-0.149759024381638,0.533650279045105,0.832339823246002,\r\n-0.112820535898209,0.601291179656982,0.791024804115295,-0.154226958751678,0.485750824213028,0.860383689403534,-0.270678579807281,0.522927463054657,0.808257341384888,-0.144358798861504,0.543385446071625,0.826978027820587,-0.144358798861504,0.543385446071625,0.826978027820587,-0.215041399002075,0.59374988079071,0.775382518768311,-0.112820535898209,0.601291179656982,0.791024804115295,-0.221785336732864,0.435822635889053,0.8722785115242,-0.253222078084946,0.470214396715164,0.845444738864899,-0.154226958751678,0.485750824213028,0.860383689403534,0.00277008465491235,0.454153031110764,0.890919327735901,-0.0898682102560997,0.526589512825012,0.845356166362762,0.0814967676997185,0.551981747150421,0.829864084720612,-0.13331313431263,0.575436592102051,0.806907773017883,-0.0898682102560997,0.526589512825012,0.845356166362762,-0.146359711885452,0.458258777856827,0.876685559749603,0.187154442071915,0.492489367723465,0.849957227706909,0.284897685050964,0.411706954240799,0.865638792514801,0.146157950162888,0.42800235748291,0.891880869865417,0.129363998770714,0.497384965419769,0.857830464839935,0.00277008465491235,0.454153031110764,0.890919327735901,0.0814967676997185,0.551981747150421,0.829864084720612,0.146157950162888,0.42800235748291,0.891880869865417,0.129363998770714,0.497384965419769,0.857830464839935,0.187154442071915,0.492489367723465,0.849957227706909,0.154508769512177,0.602203369140625,0.783248364925385,0.322305023670197,0.478769451379776,0.816638946533203,0.256551146507263,0.52603942155838,0.81084144115448,0.154508769512177,0.602203369140625,0.783248364925385,0.0813170522451401,0.636084139347076,0.767322838306427,0.178815573453903,0.562302052974701,0.807366847991943,0.0813170522451401,0.636084139347076,0.767322838306427,0.0188094787299633,0.607549667358398,0.794058859348297,0.178815573453903,0.562302052974701,0.807366847991943,-0.138451859354973,0.465445697307587,0.874180316925049,-0.075469397008419,0.476377457380295,0.875995874404907,0.0188094787299633,0.607549667358398,0.794058859348297,-0.138451859354973,0.465445697307587,0.874180316925049,\r\n-0.216210544109344,0.366797596216202,0.904827296733856,-0.075469397008419,0.476377457380295,0.875995874404907,-0.203229486942291,0.36670109629631,0.90786999464035,-0.119992017745972,0.433786779642105,0.892989814281464,-0.207679361104965,0.353434801101685,0.912114560604095,-0.216210544109344,0.366797596216202,0.904827296733856,-0.203229486942291,0.36670109629631,0.90786999464035,-0.207679361104965,0.353434801101685,0.912114560604095,0.187154442071915,0.492489367723465,0.849957227706909,0.256551146507263,0.52603942155838,0.81084144115448,0.284897685050964,0.411706954240799,0.865638792514801,-0.0997171252965927,0.397240579128265,0.912280857563019,0.00529352389276028,0.501917958259583,0.864898920059204,-0.203229486942291,0.36670109629631,0.90786999464035,0.0961935371160507,0.458669751882553,0.883384823799133,0.126146882772446,0.411300659179688,0.90272843837738,-0.0174383465200663,0.495700091123581,0.868318617343903,-0.0997171252965927,0.397240579128265,0.912280857563019,0.0961935371160507,0.458669751882553,0.883384823799133,0.00529352389276028,0.501917958259583,0.864898920059204,0.126146882772446,0.411300659179688,0.90272843837738,0.167197108268738,0.369580388069153,0.914032459259033,0.0556429587304592,0.399742692708969,0.914936900138855,0.208391189575195,0.388018250465393,0.89778333902359,0.202450111508369,0.351367443799973,0.914086818695068,0.167197108268738,0.369580388069153,0.914032459259033,0.18863944709301,0.328736305236816,0.925390481948853,0.208391189575195,0.388018250465393,0.89778333902359,0.0751755014061928,0.407830208539963,0.909957706928253,-0.0446717888116837,0.117344312369823,0.992085993289948,-0.101666465401649,0.140243783593178,0.984883487224579,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.0120590049773455,0.281187474727631,0.959577023983002,0.18863944709301,0.328736305236816,0.925390481948853,0.0751755014061928,0.407830208539963,0.909957706928253,-0.0120590049773455,0.281187474727631,0.959577023983002,-0.101666465401649,0.140243783593178,0.984883487224579,-0.0446717888116837,0.117344312369823,0.992085993289948,\r\n-0.103978648781776,0.236527606844902,0.966045081615448,-0.0554574616253376,0.153167769312859,0.986642777919769,-0.101666465401649,0.140243783593178,0.984883487224579,-0.15008307993412,0.175075009465218,0.973048627376556,-0.103978648781776,0.236527606844902,0.966045081615448,-0.10918502509594,0.167230203747749,0.979853332042694,0.148108243942261,0.0651188716292381,0.986824929714203,0.238079339265823,0.0721782967448235,0.968559980392456,0.195252776145935,-0.0552942343056202,0.979192972183228,0.106981366872787,-0.0440753884613514,0.993283569812775,0.234387576580048,0.162383526563644,0.958485245704651,0.13868559896946,-0.0591722913086414,0.988567054271698,0.148108243942261,0.0651188716292381,0.986824929714203,0.13868559896946,-0.0591722913086414,0.988567054271698,0.238079339265823,0.0721782967448235,0.968559980392456,0.170557156205177,0.047172199934721,0.984217941761017,0.106981366872787,-0.0440753884613514,0.993283569812775,-0.0281032584607601,-0.364659011363983,0.930716872215271,0.189247697591782,-0.156319320201874,0.969406723976135,0.170557156205177,0.047172199934721,0.984217941761017,0.20653560757637,-0.240160018205643,0.948507308959961,0.189247697591782,-0.156319320201874,0.969406723976135,0.0135263269767165,-0.529814898967743,0.848005354404449,0.13853295147419,-0.142608046531677,0.980036497116089,0.0536942556500435,-0.477733433246613,0.876862347126007,0.0135263269767165,-0.529814898967743,0.848005354404449,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.154656007885933,-0.583430826663971,0.797301590442657,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.172486573457718,-0.549630165100098,0.817407429218292,-0.154656007885933,-0.583430826663971,0.797301590442657,\r\n-0.228922426700592,-0.451514661312103,0.862397253513336,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.209282353520393,-0.411310106515884,0.887144148349762,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.312497198581696,-0.451758295297623,0.835619390010834,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.312497198581696,-0.451758295297623,0.835619390010834,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.324292033910751,-0.00854876916855574,0.945918321609497,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.228587999939919,0.125682130455971,0.965376317501068,-0.34295517206192,0.132272988557816,0.929992079734802,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.36165127158165,0.131866320967674,0.922940731048584,-0.228587999939919,0.125682130455971,0.965376317501068,-0.378439873456955,-0.0175850111991167,0.92545872926712,-0.36165127158165,0.131866320967674,0.922940731048584,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.28510046005249,-0.135200932621956,0.948914289474487,-0.378439873456955,-0.0175850111991167,0.92545872926712,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.0999661087989807,-0.32399308681488,0.940763056278229,0.0275514479726553,-0.231069773435593,0.972546994686127,-0.305228352546692,-0.307656824588776,0.901211857795715,\r\n-0.28510046005249,-0.135200932621956,0.948914289474487,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.305228352546692,-0.307656824588776,0.901211857795715,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.102210082113743,-0.309917002916336,0.945253670215607,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.187902331352234,0.264447927474976,0.94591748714447,-0.254100352525711,0.0124188400804996,0.96709805727005,0.145258784294128,0.284676551818848,0.947554230690002,-0.264112889766693,0.274795740842819,0.924516916275024,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.482998996973038,0.416776418685913,0.770070910453796,-0.433520287275314,0.266040325164795,0.860977709293365,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.454387277364731,0.719729423522949,0.524901509284973,-0.467866331338882,0.588923692703247,0.658991515636444,-0.565682291984558,0.714127719402313,0.412340849637985,-0.264112889766693,0.274795740842819,0.924516916275024,-0.482998996973038,0.416776418685913,0.770070910453796,-0.467866331338882,0.588923692703247,0.658991515636444,-0.467525482177734,0.81559830904007,0.340909481048584,-0.518564462661743,0.714755177497864,0.469271510839462,-0.395905762910843,0.815633475780487,0.421901136636734,-0.551063477993011,0.742854118347168,0.380127161741257,-0.467525482177734,0.81559830904007,0.340909481048584,-0.436146110296249,0.79842084646225,0.415091037750244,-0.436146110296249,0.79842084646225,0.415091037750244,-0.454387277364731,0.719729423522949,0.524901509284973,-0.551063477993011,0.742854118347168,0.380127161741257,-0.244199857115746,0.34387993812561,0.906704425811768,-0.371123343706131,0.384023010730743,0.845454692840576,-0.328831642866135,0.339123517274857,0.881399393081665,-0.20365247130394,0.280730247497559,0.937931776046753,-0.00996533408761024,0.252672135829926,0.967500567436218,\r\n-0.153740763664246,0.225317642092705,0.962078809738159,-0.244199857115746,0.34387993812561,0.906704425811768,-0.328831642866135,0.339123517274857,0.881399393081665,-0.153740763664246,0.225317642092705,0.962078809738159,0.146785333752632,0.0417352132499218,0.988287448883057,0.135554596781731,0.082500085234642,0.987329006195068,0.227777644991875,-0.0686473324894905,0.971290230751038,0.135554596781731,0.082500085234642,0.987329006195068,0.0563478171825409,0.0842642486095428,0.994848906993866,0.0383744612336159,0.223438069224358,0.973962366580963,0.0383744612336159,0.223438069224358,0.973962366580963,0.0103465896099806,0.167325541377068,0.985847353935242,-0.00996533408761024,0.252672135829926,0.967500567436218,0.227777644991875,-0.0686473324894905,0.971290230751038,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.0553450658917427,-0.0623061023652554,0.996521353721619,-0.115296490490437,-0.0926408469676971,0.9890016913414,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.358920603990555,0.784794092178345,0.505246520042419,-0.395905762910843,0.815633475780487,0.421901136636734,-0.426413357257843,0.706568419933319,0.564741134643555,-0.212375774979591,0.4824458360672,0.849789619445801,-0.354392647743225,0.48661482334137,0.798505961894989,-0.244199857115746,0.34387993812561,0.906704425811768,-0.193550124764442,0.590336620807648,0.783607602119446,-0.342094719409943,0.597184479236603,0.725494146347046,-0.354392647743225,0.48661482334137,0.798505961894989,-0.42052149772644,0.588859856128693,0.69022136926651,-0.342094719409943,0.597184479236603,0.725494146347046,-0.368748366832733,0.6710125207901,0.643247008323669,-0.426413357257843,0.706568419933319,0.564741134643555,-0.368748366832733,0.6710125207901,0.643247008323669,-0.358920603990555,0.784794092178345,0.505246520042419,-0.228179141879082,0.150714114308357,0.961883306503296,\r\n0.0223141238093376,0.205385744571686,0.97842663526535,-0.185875207185745,0.0435255393385887,0.981608688831329,-0.185875207185745,0.0435255393385887,0.981608688831329,0.145258784294128,0.284676551818848,0.947554230690002,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.228179141879082,0.150714114308357,0.961883306503296,-0.16793030500412,0.293921172618866,0.940962076187134,0.0223141238093376,0.205385744571686,0.97842663526535,-0.221785336732864,0.435822635889053,0.8722785115242,-0.16793030500412,0.293921172618866,0.940962076187134,-0.263103157281876,0.337349623441696,0.903864920139313,-0.101863130927086,0.611777245998383,0.784443974494934,-0.13331313431263,0.575436592102051,0.806907773017883,-0.112820535898209,0.601291179656982,0.791024804115295,-0.154226958751678,0.485750824213028,0.860383689403534,-0.253222078084946,0.470214396715164,0.845444738864899,-0.270678579807281,0.522927463054657,0.808257341384888,-0.270678579807281,0.522927463054657,0.808257341384888,-0.215041399002075,0.59374988079071,0.775382518768311,-0.144358798861504,0.543385446071625,0.826978027820587,-0.129246816039085,0.628013908863068,0.767394065856934,-0.112820535898209,0.601291179656982,0.791024804115295,-0.215041399002075,0.59374988079071,0.775382518768311,-0.221785336732864,0.435822635889053,0.8722785115242,-0.260773599147797,0.461763441562653,0.847803950309753,-0.253222078084946,0.470214396715164,0.845444738864899,-0.0898682102560997,0.526589512825012,0.845356166362762,-0.0808609426021576,0.605528473854065,0.791704893112183,0.0814967676997185,0.551981747150421,0.829864084720612,-0.13331313431263,0.575436592102051,0.806907773017883,-0.0808609426021576,0.605528473854065,0.791704893112183,-0.0898682102560997,0.526589512825012,0.845356166362762,0.124823749065399,0.549116849899292,0.826371312141418,0.129363998770714,0.497384965419769,0.857830464839935,0.0814967676997185,0.551981747150421,0.829864084720612,0.099610224366188,0.525090932846069,0.845196545124054,0.187154442071915,0.492489367723465,0.849957227706909,0.129363998770714,0.497384965419769,0.857830464839935,\r\n0.13122695684433,0.573379039764404,0.808712422847748,0.154508769512177,0.602203369140625,0.783248364925385,0.256551146507263,0.52603942155838,0.81084144115448,0.0126438951119781,0.647016882896423,0.762370705604553,0.0813170522451401,0.636084139347076,0.767322838306427,0.154508769512177,0.602203369140625,0.783248364925385,0.0188094787299633,0.607549667358398,0.794058859348297,0.0813170522451401,0.636084139347076,0.767322838306427,0.0285270549356937,0.680732429027557,0.731976389884949,-0.138451859354973,0.465445697307587,0.874180316925049,0.0188094787299633,0.607549667358398,0.794058859348297,-0.105803988873959,0.575798332691193,0.81071674823761,-0.193615481257439,0.343994498252869,0.918793082237244,-0.216210544109344,0.366797596216202,0.904827296733856,-0.138451859354973,0.465445697307587,0.874180316925049,-0.216210544109344,0.366797596216202,0.904827296733856,-0.193615481257439,0.343994498252869,0.918793082237244,-0.203229486942291,0.36670109629631,0.90786999464035,0.187154442071915,0.492489367723465,0.849957227706909,0.13122695684433,0.573379039764404,0.808712422847748,0.256551146507263,0.52603942155838,0.81084144115448,-0.0997171252965927,0.397240579128265,0.912280857563019,-0.203229486942291,0.36670109629631,0.90786999464035,-0.193615481257439,0.343994498252869,0.918793082237244,0.126146882772446,0.411300659179688,0.90272843837738,0.0961935371160507,0.458669751882553,0.883384823799133,0.0447802841663361,0.392762809991837,0.918548822402954,-0.0997171252965927,0.397240579128265,0.912280857563019,0.0447802841663361,0.392762809991837,0.918548822402954,0.0961935371160507,0.458669751882553,0.883384823799133,0.155844211578369,0.431243091821671,0.888674259185791,0.167197108268738,0.369580388069153,0.914032459259033,0.126146882772446,0.411300659179688,0.90272843837738,0.15597540140152,0.408130019903183,0.899500548839569,0.208391189575195,0.388018250465393,0.89778333902359,0.167197108268738,0.369580388069153,0.914032459259033,0.121623747050762,0.446964293718338,0.886245131492615,0.0751755014061928,0.407830208539963,0.909957706928253,\r\n0.208391189575195,0.388018250465393,0.89778333902359,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.0120590049773455,0.281187474727631,0.959577023983002,0.0751755014061928,0.407830208539963,0.909957706928253,-0.110742457211018,0.238883882761002,0.964712679386139,-0.101666465401649,0.140243783593178,0.984883487224579,-0.0120590049773455,0.281187474727631,0.959577023983002,-0.10918502509594,0.167230203747749,0.979853332042694,-0.103978648781776,0.236527606844902,0.966045081615448,-0.101666465401649,0.140243783593178,0.984883487224579,-0.10918502509594,0.167230203747749,0.979853332042694,-0.186008542776108,0.15044005215168,0.970962703227997,-0.15008307993412,0.175075009465218,0.973048627376556,0.199213624000549,-0.169640943408012,0.965161025524139,0.148108243942261,0.0651188716292381,0.986824929714203,0.195252776145935,-0.0552942343056202,0.979192972183228,0.13868559896946,-0.0591722913086414,0.988567054271698,-0.00265303067862988,-0.487260490655899,0.87325257062912,0.106981366872787,-0.0440753884613514,0.993283569812775,0.0692684724926949,-0.206985965371132,0.975888609886169,0.13868559896946,-0.0591722913086414,0.988567054271698,0.148108243942261,0.0651188716292381,0.986824929714203,-0.00265303067862988,-0.487260490655899,0.87325257062912,-0.0281032584607601,-0.364659011363983,0.930716872215271,0.106981366872787,-0.0440753884613514,0.993283569812775,-0.0281032584607601,-0.364659011363983,0.930716872215271,-0.00786607153713703,-0.412341594696045,0.910995304584503,0.170557156205177,0.047172199934721,0.984217941761017,0.20653560757637,-0.240160018205643,0.948507308959961,0.170557156205177,0.047172199934721,0.984217941761017,-0.00786607153713703,-0.412341594696045,0.910995304584503,0.189247697591782,-0.156319320201874,0.969406723976135,0.20653560757637,-0.240160018205643,0.948507308959961,0.040744211524725,-0.615674436092377,0.786946475505829,0.0135263269767165,-0.529814898967743,0.848005354404449,0.189247697591782,-0.156319320201874,0.969406723976135,0.040744211524725,-0.615674436092377,0.786946475505829,-0.0543682835996151,-0.701073467731476,0.71101325750351,\r\n0.0135263269767165,-0.529814898967743,0.848005354404449,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.0543682835996151,-0.701073467731476,0.71101325750351,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.132649108767509,-0.688486158847809,0.71301531791687,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.154656007885933,-0.583430826663971,0.797301590442657,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.295555889606476,-0.355148434638977,0.886857450008392,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.299234688282013,-0.451841235160828,0.840415358543396,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.267946690320969,-0.334486454725266,0.903506100177765,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.253126084804535,-0.303161978721619,0.918705523014069,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.214699983596802,-0.146673306822777,0.965603828430176,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.228587999939919,0.125682130455971,0.965376317501068,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.261419743299484,-0.00387935643084347,0.965217351913452,\r\n-0.228587999939919,0.125682130455971,0.965376317501068,-0.378439873456955,-0.0175850111991167,0.92545872926712,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.305228352546692,-0.307656824588776,0.901211857795715,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.305228352546692,-0.307656824588776,0.901211857795715,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.0999661087989807,-0.32399308681488,0.940763056278229,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.230247750878334,-0.320855557918549,0.918715178966522,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.117534317076206,0.112793676555157,0.986642360687256,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.264112889766693,0.274795740842819,0.924516916275024,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.454387277364731,0.719729423522949,0.524901509284973,-0.239522457122803,0.46712538599968,0.851130247116089,-0.467866331338882,0.588923692703247,0.658991515636444,-0.264112889766693,0.274795740842819,0.924516916275024,-0.467866331338882,0.588923692703247,0.658991515636444,-0.239522457122803,0.46712538599968,0.851130247116089,-0.467525482177734,0.81559830904007,0.340909481048584,-0.395905762910843,0.815633475780487,0.421901136636734,-0.383523255586624,0.860610485076904,0.335051298141479,-0.378378599882126,0.828564763069153,0.412686169147491,-0.436146110296249,0.79842084646225,0.415091037750244,-0.467525482177734,0.81559830904007,0.340909481048584,\r\n-0.454387277364731,0.719729423522949,0.524901509284973,-0.436146110296249,0.79842084646225,0.415091037750244,-0.256511002779007,0.635345041751862,0.728380799293518,0.0103465896099806,0.167325541377068,0.985847353935242,-0.153740763664246,0.225317642092705,0.962078809738159,-0.00996533408761024,0.252672135829926,0.967500567436218,-0.15250451862812,0.196065083146095,0.968659281730652,-0.244199857115746,0.34387993812561,0.906704425811768,-0.153740763664246,0.225317642092705,0.962078809738159,0.146785333752632,0.0417352132499218,0.988287448883057,0.0563478171825409,0.0842642486095428,0.994848906993866,0.135554596781731,0.082500085234642,0.987329006195068,0.146785333752632,0.0417352132499218,0.988287448883057,0.227777644991875,-0.0686473324894905,0.971290230751038,-0.0553450658917427,-0.0623061023652554,0.996521353721619,0.0383744612336159,0.223438069224358,0.973962366580963,0.0563478171825409,0.0842642486095428,0.994848906993866,0.0103465896099806,0.167325541377068,0.985847353935242,-0.0553450658917427,-0.0623061023652554,0.996521353721619,0.0836957916617393,-0.159856617450714,0.983585715293884,-0.115296490490437,-0.0926408469676971,0.9890016913414,-0.115296490490437,-0.0926408469676971,0.9890016913414,-0.127467215061188,-0.153074339032173,0.979959309101105,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.206393525004387,-0.19865582883358,0.958090543746948,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.358920603990555,0.784794092178345,0.505246520042419,-0.34325984120369,0.868830859661102,0.356798946857452,-0.395905762910843,0.815633475780487,0.421901136636734,-0.212375774979591,0.4824458360672,0.849789619445801,-0.193550124764442,0.590336620807648,0.783607602119446,-0.354392647743225,0.48661482334137,0.798505961894989,-0.212375774979591,0.4824458360672,0.849789619445801,-0.244199857115746,0.34387993812561,0.906704425811768,-0.157589688897133,0.501818716526031,0.850495934486389,-0.221694365143776,0.698627054691315,0.680273234844208,-0.342094719409943,0.597184479236603,0.725494146347046,\r\n-0.193550124764442,0.590336620807648,0.783607602119446,-0.221694365143776,0.698627054691315,0.680273234844208,-0.368748366832733,0.6710125207901,0.643247008323669,-0.342094719409943,0.597184479236603,0.725494146347046,-0.221694365143776,0.698627054691315,0.680273234844208,-0.358920603990555,0.784794092178345,0.505246520042419,-0.368748366832733,0.6710125207901,0.643247008323669,-0.228179141879082,0.150714114308357,0.961883306503296,-0.185875207185745,0.0435255393385887,0.981608688831329,-0.274871498346329,0.198435977101326,0.940780937671661,-0.254100352525711,0.0124188400804996,0.96709805727005,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.185875207185745,0.0435255393385887,0.981608688831329,-0.263103157281876,0.337349623441696,0.903864920139313,-0.16793030500412,0.293921172618866,0.940962076187134,-0.228179141879082,0.150714114308357,0.961883306503296,-0.221785336732864,0.435822635889053,0.8722785115242,-0.263103157281876,0.337349623441696,0.903864920139313,-0.230110391974449,0.424787849187851,0.875559449195862,-0.11784466356039,0.609064757823944,0.784316658973694,-0.13331313431263,0.575436592102051,0.806907773017883,-0.101863130927086,0.611777245998383,0.784443974494934,-0.129246816039085,0.628013908863068,0.767394065856934,-0.101863130927086,0.611777245998383,0.784443974494934,-0.112820535898209,0.601291179656982,0.791024804115295,-0.300031065940857,0.508646070957184,0.807007014751434,-0.270678579807281,0.522927463054657,0.808257341384888,-0.253222078084946,0.470214396715164,0.845444738864899,-0.270678579807281,0.522927463054657,0.808257341384888,-0.344692260026932,0.582880973815918,0.73582398891449,-0.215041399002075,0.59374988079071,0.775382518768311,-0.215041399002075,0.59374988079071,0.775382518768311,-0.257578313350677,0.639456570148468,0.724395275115967,-0.129246816039085,0.628013908863068,0.767394065856934,-0.221785336732864,0.435822635889053,0.8722785115242,-0.230110391974449,0.424787849187851,0.875559449195862,-0.260773599147797,0.461763441562653,0.847803950309753,-0.253222078084946,0.470214396715164,0.845444738864899,\r\n-0.260773599147797,0.461763441562653,0.847803950309753,-0.300031065940857,0.508646070957184,0.807007014751434,-0.0808609426021576,0.605528473854065,0.791704893112183,0.0466975085437298,0.612105906009674,0.789395689964294,0.0814967676997185,0.551981747150421,0.829864084720612,-0.13331313431263,0.575436592102051,0.806907773017883,-0.11784466356039,0.609064757823944,0.784316658973694,-0.0808609426021576,0.605528473854065,0.791704893112183,0.124823749065399,0.549116849899292,0.826371312141418,0.099610224366188,0.525090932846069,0.845196545124054,0.129363998770714,0.497384965419769,0.857830464839935,0.124823749065399,0.549116849899292,0.826371312141418,0.0814967676997185,0.551981747150421,0.829864084720612,0.163395509123802,0.599611043930054,0.783433675765991,0.099610224366188,0.525090932846069,0.845196545124054,0.13122695684433,0.573379039764404,0.808712422847748,0.187154442071915,0.492489367723465,0.849957227706909,0.154508769512177,0.602203369140625,0.783248364925385,0.13122695684433,0.573379039764404,0.808712422847748,0.0182680934667587,0.611121952533722,0.791325569152832,0.0813170522451401,0.636084139347076,0.767322838306427,0.0126438951119781,0.647016882896423,0.762370705604553,0.0285270549356937,0.680732429027557,0.731976389884949,0.0182680934667587,0.611121952533722,0.791325569152832,0.0126438951119781,0.647016882896423,0.762370705604553,0.154508769512177,0.602203369140625,0.783248364925385,-0.0165920779109001,0.674281001091003,0.738288402557373,0.0188094787299633,0.607549667358398,0.794058859348297,0.0285270549356937,0.680732429027557,0.731976389884949,0.0188094787299633,0.607549667358398,0.794058859348297,-0.0165920779109001,0.674281001091003,0.738288402557373,-0.105803988873959,0.575798332691193,0.81071674823761,-0.126084223389626,0.428514540195465,0.894694328308105,-0.138451859354973,0.465445697307587,0.874180316925049,-0.105803988873959,0.575798332691193,0.81071674823761,-0.126084223389626,0.428514540195465,0.894694328308105,-0.193615481257439,0.343994498252869,0.918793082237244,-0.138451859354973,0.465445697307587,0.874180316925049,\r\n0.0447802841663361,0.392762809991837,0.918548822402954,-0.0997171252965927,0.397240579128265,0.912280857563019,-0.193615481257439,0.343994498252869,0.918793082237244,0.126146882772446,0.411300659179688,0.90272843837738,0.0447802841663361,0.392762809991837,0.918548822402954,0.201184317469597,0.439421594142914,0.875461876392365,0.15597540140152,0.408130019903183,0.899500548839569,0.167197108268738,0.369580388069153,0.914032459259033,0.155844211578369,0.431243091821671,0.888674259185791,0.201184317469597,0.439421594142914,0.875461876392365,0.155844211578369,0.431243091821671,0.888674259185791,0.126146882772446,0.411300659179688,0.90272843837738,0.15597540140152,0.408130019903183,0.899500548839569,0.121623747050762,0.446964293718338,0.886245131492615,0.208391189575195,0.388018250465393,0.89778333902359,0.0751755014061928,0.407830208539963,0.909957706928253,0.121623747050762,0.446964293718338,0.886245131492615,0.00678121671080589,0.477274954319,0.878727793693542,-0.110742457211018,0.238883882761002,0.964712679386139,-0.0120590049773455,0.281187474727631,0.959577023983002,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.0692095458507538,0.396191656589508,0.915555596351624,0.0751755014061928,0.407830208539963,0.909957706928253,0.00678121671080589,0.477274954319,0.878727793693542,-0.110742457211018,0.238883882761002,0.964712679386139,-0.10918502509594,0.167230203747749,0.979853332042694,-0.101666465401649,0.140243783593178,0.984883487224579,-0.186008542776108,0.15044005215168,0.970962703227997,-0.10918502509594,0.167230203747749,0.979853332042694,-0.163330540060997,0.289626717567444,0.943100929260254,0.199213624000549,-0.169640943408012,0.965161025524139,0.136822134256363,-0.111212283372879,0.984332978725433,0.148108243942261,0.0651188716292381,0.986824929714203,-0.014226570725441,-0.51861572265625,0.85488897562027,-0.00265303067862988,-0.487260490655899,0.87325257062912,0.13868559896946,-0.0591722913086414,0.988567054271698,0.0692684724926949,-0.206985965371132,0.975888609886169,-0.014226570725441,-0.51861572265625,0.85488897562027,\r\n0.13868559896946,-0.0591722913086414,0.988567054271698,0.0692684724926949,-0.206985965371132,0.975888609886169,0.148108243942261,0.0651188716292381,0.986824929714203,0.120994731783867,0.0707344859838486,0.990129709243774,-0.00265303067862988,-0.487260490655899,0.87325257062912,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.0281032584607601,-0.364659011363983,0.930716872215271,-0.0281032584607601,-0.364659011363983,0.930716872215271,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.00786607153713703,-0.412341594696045,0.910995304584503,0.040744211524725,-0.615674436092377,0.786946475505829,0.20653560757637,-0.240160018205643,0.948507308959961,-0.00786607153713703,-0.412341594696045,0.910995304584503,0.0135263269767165,-0.529814898967743,0.848005354404449,0.040744211524725,-0.615674436092377,0.786946475505829,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.228922426700592,-0.451514661312103,0.862397253513336,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.0491985790431499,-0.42323762178421,0.904681861400604,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.0814951732754707,-0.43065270781517,0.898830771446228,0.0759221017360687,-0.351094454526901,0.933256924152374,\r\n-0.23735049366951,-0.191121995449066,0.952437400817871,-0.277587652206421,-0.311597973108292,0.908763825893402,-0.313921988010406,-0.332227021455765,0.889425694942474,0.0759221017360687,-0.351094454526901,0.933256924152374,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0905354097485542,-0.2999666929245,0.949643731117249,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.198687642812729,0.0247589386999607,0.979749917984009,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.305228352546692,-0.307656824588776,0.901211857795715,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.351191103458405,-0.199609413743019,0.914779126644135,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.327665328979492,0.0728094130754471,0.941984176635742,-0.117534317076206,0.112793676555157,0.986642360687256,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.117534317076206,0.112793676555157,0.986642360687256,-0.264112889766693,0.274795740842819,0.924516916275024,-0.454387277364731,0.719729423522949,0.524901509284973,\r\n-0.256511002779007,0.635345041751862,0.728380799293518,-0.239522457122803,0.46712538599968,0.851130247116089,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.264112889766693,0.274795740842819,0.924516916275024,-0.239522457122803,0.46712538599968,0.851130247116089,-0.34325984120369,0.868830859661102,0.356798946857452,-0.383523255586624,0.860610485076904,0.335051298141479,-0.395905762910843,0.815633475780487,0.421901136636734,-0.383523255586624,0.860610485076904,0.335051298141479,-0.378378599882126,0.828564763069153,0.412686169147491,-0.467525482177734,0.81559830904007,0.340909481048584,-0.378378599882126,0.828564763069153,0.412686169147491,-0.295472472906113,0.732084810733795,0.613797724246979,-0.436146110296249,0.79842084646225,0.415091037750244,-0.256511002779007,0.635345041751862,0.728380799293518,-0.436146110296249,0.79842084646225,0.415091037750244,-0.295472472906113,0.732084810733795,0.613797724246979,0.0103465896099806,0.167325541377068,0.985847353935242,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.153740763664246,0.225317642092705,0.962078809738159,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.244199857115746,0.34387993812561,0.906704425811768,-0.15250451862812,0.196065083146095,0.968659281730652,-0.153740763664246,0.225317642092705,0.962078809738159,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.15250451862812,0.196065083146095,0.968659281730652,0.146785333752632,0.0417352132499218,0.988287448883057,-0.132743492722511,0.0135575849562883,0.991057634353638,0.0563478171825409,0.0842642486095428,0.994848906993866,0.146785333752632,0.0417352132499218,0.988287448883057,-0.0553450658917427,-0.0623061023652554,0.996521353721619,-0.132743492722511,0.0135575849562883,0.991057634353638,0.0103465896099806,0.167325541377068,0.985847353935242,0.0563478171825409,0.0842642486095428,0.994848906993866,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.0553450658917427,-0.0623061023652554,0.996521353721619,-0.115296490490437,-0.0926408469676971,0.9890016913414,-0.265487670898438,-0.0899147167801857,0.959912300109863,\r\n-0.115296490490437,-0.0926408469676971,0.9890016913414,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.34325984120369,0.868830859661102,0.356798946857452,-0.358920603990555,0.784794092178345,0.505246520042419,-0.318130731582642,0.870106339454651,0.376440942287445,-0.212375774979591,0.4824458360672,0.849789619445801,-0.157589688897133,0.501818716526031,0.850495934486389,-0.193550124764442,0.590336620807648,0.783607602119446,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.157589688897133,0.501818716526031,0.850495934486389,-0.244199857115746,0.34387993812561,0.906704425811768,-0.193550124764442,0.590336620807648,0.783607602119446,-0.137270584702492,0.652341604232788,0.74539053440094,-0.221694365143776,0.698627054691315,0.680273234844208,-0.241529792547226,0.765996336936951,0.59574556350708,-0.358920603990555,0.784794092178345,0.505246520042419,-0.221694365143776,0.698627054691315,0.680273234844208,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.274871498346329,0.198435977101326,0.940780937671661,-0.185875207185745,0.0435255393385887,0.981608688831329,-0.263103157281876,0.337349623441696,0.903864920139313,-0.228179141879082,0.150714114308357,0.961883306503296,-0.274871498346329,0.198435977101326,0.940780937671661,-0.263103157281876,0.337349623441696,0.903864920139313,-0.187370419502258,0.345458060503006,0.91953843832016,-0.230110391974449,0.424787849187851,0.875559449195862,-0.101863130927086,0.611777245998383,0.784443974494934,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.11784466356039,0.609064757823944,0.784316658973694,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.101863130927086,0.611777245998383,0.784443974494934,-0.129246816039085,0.628013908863068,0.767394065856934,-0.300031065940857,0.508646070957184,0.807007014751434,-0.344692260026932,0.582880973815918,0.73582398891449,\r\n-0.270678579807281,0.522927463054657,0.808257341384888,-0.215041399002075,0.59374988079071,0.775382518768311,-0.344692260026932,0.582880973815918,0.73582398891449,-0.257578313350677,0.639456570148468,0.724395275115967,-0.143788293004036,0.638352155685425,0.756195247173309,-0.129246816039085,0.628013908863068,0.767394065856934,-0.257578313350677,0.639456570148468,0.724395275115967,-0.260773599147797,0.461763441562653,0.847803950309753,-0.230110391974449,0.424787849187851,0.875559449195862,-0.19723841547966,0.465813785791397,0.862620651721954,-0.300031065940857,0.508646070957184,0.807007014751434,-0.260773599147797,0.461763441562653,0.847803950309753,-0.19723841547966,0.465813785791397,0.862620651721954,-0.0808609426021576,0.605528473854065,0.791704893112183,-0.0943541526794434,0.610206067562103,0.786603987216949,0.0466975085437298,0.612105906009674,0.789395689964294,0.164749771356583,0.585913896560669,0.793449580669403,0.0814967676997185,0.551981747150421,0.829864084720612,0.0466975085437298,0.612105906009674,0.789395689964294,-0.11784466356039,0.609064757823944,0.784316658973694,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.0808609426021576,0.605528473854065,0.791704893112183,0.124823749065399,0.549116849899292,0.826371312141418,0.0408790111541748,0.589746713638306,0.806552886962891,0.099610224366188,0.525090932846069,0.845196545124054,0.164749771356583,0.585913896560669,0.793449580669403,0.163395509123802,0.599611043930054,0.783433675765991,0.0814967676997185,0.551981747150421,0.829864084720612,0.0408790111541748,0.589746713638306,0.806552886962891,0.124823749065399,0.549116849899292,0.826371312141418,0.163395509123802,0.599611043930054,0.783433675765991,0.13122695684433,0.573379039764404,0.808712422847748,0.099610224366188,0.525090932846069,0.845196545124054,0.0408790111541748,0.589746713638306,0.806552886962891,0.13122695684433,0.573379039764404,0.808712422847748,0.0408790111541748,0.589746713638306,0.806552886962891,0.0182680934667587,0.611121952533722,0.791325569152832,0.0126438951119781,0.647016882896423,0.762370705604553,\r\n-0.0273397080600262,0.676782608032227,0.735674977302551,0.0285270549356937,0.680732429027557,0.731976389884949,0.0182680934667587,0.611121952533722,0.791325569152832,-0.0403720028698444,0.631038010120392,0.77470064163208,0.0126438951119781,0.647016882896423,0.762370705604553,-0.0165920779109001,0.674281001091003,0.738288402557373,0.0285270549356937,0.680732429027557,0.731976389884949,0.0313306488096714,0.681641578674316,0.731015026569366,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.105803988873959,0.575798332691193,0.81071674823761,-0.0165920779109001,0.674281001091003,0.738288402557373,-0.0736152604222298,0.533828496932983,0.842382252216339,-0.126084223389626,0.428514540195465,0.894694328308105,-0.105803988873959,0.575798332691193,0.81071674823761,-0.126084223389626,0.428514540195465,0.894694328308105,0.0447802841663361,0.392762809991837,0.918548822402954,-0.193615481257439,0.343994498252869,0.918793082237244,0.201184317469597,0.439421594142914,0.875461876392365,0.0447802841663361,0.392762809991837,0.918548822402954,0.057147528976202,0.459615439176559,0.886277437210083,0.15597540140152,0.408130019903183,0.899500548839569,0.155844211578369,0.431243091821671,0.888674259185791,0.0861893966794014,0.461974173784256,0.882695376873016,0.127389028668404,0.52800977230072,0.839629411697388,0.155844211578369,0.431243091821671,0.888674259185791,0.201184317469597,0.439421594142914,0.875461876392365,0.15597540140152,0.408130019903183,0.899500548839569,0.0449520125985146,0.510544955730438,0.858675181865692,0.121623747050762,0.446964293718338,0.886245131492615,0.00678121671080589,0.477274954319,0.878727793693542,0.121623747050762,0.446964293718338,0.886245131492615,0.0449520125985146,0.510544955730438,0.858675181865692,-0.163330540060997,0.289626717567444,0.943100929260254,-0.110742457211018,0.238883882761002,0.964712679386139,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.0692095458507538,0.396191656589508,0.915555596351624,0.00678121671080589,0.477274954319,0.878727793693542,-0.0808006152510643,0.497795552015305,0.863522291183472,\r\n-0.163330540060997,0.289626717567444,0.943100929260254,-0.10918502509594,0.167230203747749,0.979853332042694,-0.110742457211018,0.238883882761002,0.964712679386139,-0.163330540060997,0.289626717567444,0.943100929260254,-0.289223611354828,0.285745799541473,0.913618624210358,-0.186008542776108,0.15044005215168,0.970962703227997,0.136822134256363,-0.111212283372879,0.984332978725433,0.131407126784325,-0.0619342401623726,0.9893918633461,0.148108243942261,0.0651188716292381,0.986824929714203,-0.014226570725441,-0.51861572265625,0.85488897562027,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.00265303067862988,-0.487260490655899,0.87325257062912,-0.0430256873369217,-0.643864214420319,0.763929009437561,-0.014226570725441,-0.51861572265625,0.85488897562027,0.0692684724926949,-0.206985965371132,0.975888609886169,0.148108243942261,0.0651188716292381,0.986824929714203,0.131407126784325,-0.0619342401623726,0.9893918633461,0.120994731783867,0.0707344859838486,0.990129709243774,0.0692684724926949,-0.206985965371132,0.975888609886169,0.120994731783867,0.0707344859838486,0.990129709243774,0.112780079245567,-0.162548288702965,0.98023396730423,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.00265303067862988,-0.487260490655899,0.87325257062912,-0.0808166563510895,-0.746587038040161,0.660360753536224,0.040744211524725,-0.615674436092377,0.786946475505829,-0.00786607153713703,-0.412341594696045,0.910995304584503,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.0597732178866863,-0.741435408592224,0.668356597423553,0.040744211524725,-0.615674436092377,0.786946475505829,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.0597732178866863,-0.741435408592224,0.668356597423553,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.107299014925957,-0.726344168186188,0.678904294967651,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.178355470299721,-0.675301373004913,0.71565169095993,\r\n-0.281969338655472,-0.509728670120239,0.812815964221954,-0.193365931510925,-0.624986410140991,0.756307780742645,-0.29437193274498,-0.286476463079453,0.911743521690369,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.0495379008352757,-0.261851876974106,0.963835835456848,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.0491985790431499,-0.42323762178421,0.904681861400604,0.10025629401207,-0.393304914236069,0.913925528526306,-0.0814951732754707,-0.43065270781517,0.898830771446228,-0.0491985790431499,-0.42323762178421,0.904681861400604,-0.219923377037048,-0.399911612272263,0.889777541160584,-0.0495379008352757,-0.261851876974106,0.963835835456848,0.0759221017360687,-0.351094454526901,0.933256924152374,-0.0814951732754707,-0.43065270781517,0.898830771446228,0.10025629401207,-0.393304914236069,0.913925528526306,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.313921988010406,-0.332227021455765,0.889425694942474,-0.29437193274498,-0.286476463079453,0.911743521690369,0.0759221017360687,-0.351094454526901,0.933256924152374,0.106468506157398,-0.326004147529602,0.939353823661804,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.0822720527648926,0.010066338814795,0.996559023857117,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.261419743299484,-0.00387935643084347,0.965217351913452,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.308242738246918,-0.345413863658905,0.886383414268494,-0.351289957761765,-0.331517517566681,0.875609159469604,\r\n-0.338733583688736,-0.278161764144897,0.898824512958527,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.213679328560829,-0.261355996131897,0.941293835639954,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.117534317076206,0.112793676555157,0.986642360687256,-0.117534317076206,0.112793676555157,0.986642360687256,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.239522457122803,0.46712538599968,0.851130247116089,-0.256511002779007,0.635345041751862,0.728380799293518,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.239522457122803,0.46712538599968,0.851130247116089,-0.34325984120369,0.868830859661102,0.356798946857452,-0.345222979784012,0.832892656326294,0.432563036680222,-0.383523255586624,0.860610485076904,0.335051298141479,-0.383523255586624,0.860610485076904,0.335051298141479,-0.345222979784012,0.832892656326294,0.432563036680222,-0.378378599882126,0.828564763069153,0.412686169147491,-0.148011118173599,0.672079980373383,0.725535035133362,-0.295472472906113,0.732084810733795,0.613797724246979,-0.378378599882126,0.828564763069153,0.412686169147491,-0.256511002779007,0.635345041751862,0.728380799293518,-0.295472472906113,0.732084810733795,0.613797724246979,-0.0481461025774479,0.492816805839539,0.868800044059753,-0.15250451862812,0.196065083146095,0.968659281730652,0.0157581400126219,0.130627289414406,0.991306245326996,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.15250451862812,0.196065083146095,0.968659281730652,\r\n-0.122280202805996,0.0971738621592522,0.987727046012878,0.0157581400126219,0.130627289414406,0.991306245326996,0.0563478171825409,0.0842642486095428,0.994848906993866,-0.132743492722511,0.0135575849562883,0.991057634353638,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.132743492722511,0.0135575849562883,0.991057634353638,-0.0553450658917427,-0.0623061023652554,0.996521353721619,0.0563478171825409,0.0842642486095428,0.994848906993866,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.0553450658917427,-0.0623061023652554,0.996521353721619,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.201329484581947,-0.0951989516615868,0.974886417388916,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.245418563485146,0.825142562389374,0.508831322193146,-0.318130731582642,0.870106339454651,0.376440942287445,-0.358920603990555,0.784794092178345,0.505246520042419,-0.34325984120369,0.868830859661102,0.356798946857452,-0.318130731582642,0.870106339454651,0.376440942287445,-0.270971089601517,0.869038641452789,0.413940072059631,-0.193550124764442,0.590336620807648,0.783607602119446,-0.157589688897133,0.501818716526031,0.850495934486389,-0.137270584702492,0.652341604232788,0.74539053440094,-0.0991649925708771,0.413793861865997,0.904953479766846,-0.157589688897133,0.501818716526031,0.850495934486389,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.182099252939224,0.711992800235748,0.678163647651672,-0.221694365143776,0.698627054691315,0.680273234844208,-0.137270584702492,0.652341604232788,0.74539053440094,-0.241529792547226,0.765996336936951,0.59574556350708,-0.245418563485146,0.825142562389374,0.508831322193146,\r\n-0.358920603990555,0.784794092178345,0.505246520042419,-0.221694365143776,0.698627054691315,0.680273234844208,-0.15339732170105,0.776742279529572,0.610852301120758,-0.241529792547226,0.765996336936951,0.59574556350708,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.274871498346329,0.198435977101326,0.940780937671661,-0.255089312791824,0.0274212155491114,0.966528534889221,-0.263103157281876,0.337349623441696,0.903864920139313,-0.274871498346329,0.198435977101326,0.940780937671661,-0.187370419502258,0.345458060503006,0.91953843832016,-0.133433401584625,0.398495227098465,0.907412230968475,-0.230110391974449,0.424787849187851,0.875559449195862,-0.187370419502258,0.345458060503006,0.91953843832016,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.122721269726753,0.612933874130249,0.780545592308044,-0.11784466356039,0.609064757823944,0.784316658973694,-0.143788293004036,0.638352155685425,0.756195247173309,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.129246816039085,0.628013908863068,0.767394065856934,-0.300031065940857,0.508646070957184,0.807007014751434,-0.410612344741821,0.594025194644928,0.691759645938873,-0.344692260026932,0.582880973815918,0.73582398891449,-0.257578313350677,0.639456570148468,0.724395275115967,-0.344692260026932,0.582880973815918,0.73582398891449,-0.389988541603088,0.626154184341431,0.675158977508545,-0.143788293004036,0.638352155685425,0.756195247173309,-0.257578313350677,0.639456570148468,0.724395275115967,-0.351733475923538,0.612692415714264,0.707736790180206,-0.19723841547966,0.465813785791397,0.862620651721954,-0.230110391974449,0.424787849187851,0.875559449195862,-0.133433401584625,0.398495227098465,0.907412230968475,-0.300031065940857,0.508646070957184,0.807007014751434,-0.19723841547966,0.465813785791397,0.862620651721954,-0.225123718380928,0.521547675132751,0.822986721992493,0.0466975085437298,0.612105906009674,0.789395689964294,-0.0943541526794434,0.610206067562103,0.786603987216949,0.11588941514492,0.593560934066772,0.79640120267868,0.11588941514492,0.593560934066772,0.79640120267868,\r\n0.164749771356583,0.585913896560669,0.793449580669403,0.0466975085437298,0.612105906009674,0.789395689964294,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.11784466356039,0.609064757823944,0.784316658973694,-0.122721269726753,0.612933874130249,0.780545592308044,0.11588941514492,0.593560934066772,0.79640120267868,0.163395509123802,0.599611043930054,0.783433675765991,0.164749771356583,0.585913896560669,0.793449580669403,0.0118015566840768,0.649717330932617,0.76008415222168,0.0408790111541748,0.589746713638306,0.806552886962891,0.163395509123802,0.599611043930054,0.783433675765991,0.0182680934667587,0.611121952533722,0.791325569152832,0.0408790111541748,0.589746713638306,0.806552886962891,-0.0403720028698444,0.631038010120392,0.77470064163208,-0.0273397080600262,0.676782608032227,0.735674977302551,0.0126438951119781,0.647016882896423,0.762370705604553,-0.0403720028698444,0.631038010120392,0.77470064163208,-0.0273397080600262,0.676782608032227,0.735674977302551,0.0313306488096714,0.681641578674316,0.731015026569366,0.0285270549356937,0.680732429027557,0.731976389884949,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.0165920779109001,0.674281001091003,0.738288402557373,0.0313306488096714,0.681641578674316,0.731015026569366,-0.0736152604222298,0.533828496932983,0.842382252216339,-0.105803988873959,0.575798332691193,0.81071674823761,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.126084223389626,0.428514540195465,0.894694328308105,-0.0736152604222298,0.533828496932983,0.842382252216339,0.057147528976202,0.459615439176559,0.886277437210083,-0.126084223389626,0.428514540195465,0.894694328308105,0.057147528976202,0.459615439176559,0.886277437210083,0.0447802841663361,0.392762809991837,0.918548822402954,0.201184317469597,0.439421594142914,0.875461876392365,0.057147528976202,0.459615439176559,0.886277437210083,0.127389028668404,0.52800977230072,0.839629411697388,0.0861893966794014,0.461974173784256,0.882695376873016,0.155844211578369,0.431243091821671,0.888674259185791,0.0679269284009933,0.559387505054474,0.826118290424347,\r\n0.15597540140152,0.408130019903183,0.899500548839569,0.0861893966794014,0.461974173784256,0.882695376873016,0.0449520125985146,0.510544955730438,0.858675181865692,0.0679269284009933,0.559387505054474,0.826118290424347,0.155844211578369,0.431243091821671,0.888674259185791,0.127389028668404,0.52800977230072,0.839629411697388,0.00678121671080589,0.477274954319,0.878727793693542,0.0449520125985146,0.510544955730438,0.858675181865692,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.139198750257492,0.404264092445374,0.903987884521484,-0.163330540060997,0.289626717567444,0.943100929260254,-0.0692095458507538,0.396191656589508,0.915555596351624,0.00678121671080589,0.477274954319,0.878727793693542,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.0808006152510643,0.497795552015305,0.863522291183472,-0.125791221857071,0.470518589019775,0.873377799987793,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.0808006152510643,0.497795552015305,0.863522291183472,-0.289223611354828,0.285745799541473,0.913618624210358,-0.163330540060997,0.289626717567444,0.943100929260254,-0.224903836846352,0.427642107009888,0.875522911548615,-0.0430256873369217,-0.643864214420319,0.763929009437561,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.014226570725441,-0.51861572265625,0.85488897562027,0.109254233539104,-0.585358619689941,0.803379476070404,-0.0430256873369217,-0.643864214420319,0.763929009437561,0.0692684724926949,-0.206985965371132,0.975888609886169,0.131407126784325,-0.0619342401623726,0.9893918633461,0.162875175476074,-0.0189905539155006,0.986463844776154,0.120994731783867,0.0707344859838486,0.990129709243774,0.17294317483902,-0.271946340799332,0.946644425392151,0.112780079245567,-0.162548288702965,0.98023396730423,0.120994731783867,0.0707344859838486,0.990129709243774,0.112780079245567,-0.162548288702965,0.98023396730423,0.109254233539104,-0.585358619689941,0.803379476070404,0.0692684724926949,-0.206985965371132,0.975888609886169,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.0808166563510895,-0.746587038040161,0.660360753536224,\r\n-0.105984009802341,-0.753260016441345,0.649127542972565,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.111132420599461,-0.762474179267883,0.637403011322021,0.040744211524725,-0.615674436092377,0.786946475505829,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.101948812603951,-0.696193635463715,0.710577726364136,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.29437193274498,-0.286476463079453,0.911743521690369,-0.281969338655472,-0.509728670120239,0.812815964221954,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.012083038687706,-0.0640560984611511,0.99787312746048,-0.0495379008352757,-0.261851876974106,0.963835835456848,-0.0491985790431499,-0.42323762178421,0.904681861400604,-0.0495379008352757,-0.261851876974106,0.963835835456848,0.10025629401207,-0.393304914236069,0.913925528526306,0.0759221017360687,-0.351094454526901,0.933256924152374,0.10025629401207,-0.393304914236069,0.913925528526306,0.233304426074028,-0.401558667421341,0.885618150234222,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.29437193274498,-0.286476463079453,0.911743521690369,-0.202821299433708,0.0160295628011227,0.979084491729736,0.106468506157398,-0.326004147529602,0.939353823661804,0.0759221017360687,-0.351094454526901,0.933256924152374,0.233304426074028,-0.401558667421341,0.885618150234222,0.106468506157398,-0.326004147529602,0.939353823661804,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.0310634039342403,-0.168853968381882,0.985151410102844,-0.0672307163476944,-0.00660892203450203,0.997715413570404,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.0822720527648926,0.010066338814795,0.996559023857117,\r\n-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.15954464673996,0.0799979418516159,0.983943998813629,-0.0822720527648926,0.010066338814795,0.996559023857117,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.213000357151031,-0.086077556014061,0.973253011703491,-0.351289957761765,-0.331517517566681,0.875609159469604,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.270241945981979,-0.250923067331314,0.929519653320313,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.186724990606308,-0.202559903264046,0.961302876472473,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.0378654822707176,0.235399231314659,0.971160769462585,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.256511002779007,0.635345041751862,0.728380799293518,-0.0481461025774479,0.492816805839539,0.868800044059753,-0.270971089601517,0.869038641452789,0.413940072059631,-0.345222979784012,0.832892656326294,0.432563036680222,-0.34325984120369,0.868830859661102,0.356798946857452,-0.256465643644333,0.756111264228821,0.60209721326828,-0.378378599882126,0.828564763069153,0.412686169147491,-0.345222979784012,0.832892656326294,0.432563036680222,-0.295472472906113,0.732084810733795,0.613797724246979,\r\n-0.148011118173599,0.672079980373383,0.725535035133362,-0.0481461025774479,0.492816805839539,0.868800044059753,-0.148011118173599,0.672079980373383,0.725535035133362,-0.378378599882126,0.828564763069153,0.412686169147491,-0.256465643644333,0.756111264228821,0.60209721326828,0.0157581400126219,0.130627289414406,0.991306245326996,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.073194645345211,0.08730149269104,0.993489265441895,0.0157581400126219,0.130627289414406,0.991306245326996,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.132743492722511,0.0135575849562883,0.991057634353638,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.073194645345211,0.08730149269104,0.993489265441895,-0.122280202805996,0.0971738621592522,0.987727046012878,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.265487670898438,-0.0899147167801857,0.959912300109863,-0.276037275791168,-0.131297796964645,0.952136635780334,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.217170044779778,0.85335111618042,0.473950326442719,-0.318130731582642,0.870106339454651,0.376440942287445,-0.245418563485146,0.825142562389374,0.508831322193146,-0.264501363039017,0.879896938800812,0.394740790128708,-0.270971089601517,0.869038641452789,0.413940072059631,-0.318130731582642,0.870106339454651,0.376440942287445,-0.137270584702492,0.652341604232788,0.74539053440094,-0.157589688897133,0.501818716526031,0.850495934486389,-0.210961937904358,0.62172269821167,0.754291594028473,-0.157589688897133,0.501818716526031,0.850495934486389,-0.0991649925708771,0.413793861865997,0.904953479766846,\r\n-0.210961937904358,0.62172269821167,0.754291594028473,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0991649925708771,0.413793861865997,0.904953479766846,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.182099252939224,0.711992800235748,0.678163647651672,-0.15339732170105,0.776742279529572,0.610852301120758,-0.221694365143776,0.698627054691315,0.680273234844208,-0.137270584702492,0.652341604232788,0.74539053440094,-0.210961937904358,0.62172269821167,0.754291594028473,-0.182099252939224,0.711992800235748,0.678163647651672,-0.245418563485146,0.825142562389374,0.508831322193146,-0.241529792547226,0.765996336936951,0.59574556350708,-0.15339732170105,0.776742279529572,0.610852301120758,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.187370419502258,0.345458060503006,0.91953843832016,-0.274871498346329,0.198435977101326,0.940780937671661,-0.187370419502258,0.345458060503006,0.91953843832016,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.133433401584625,0.398495227098465,0.907412230968475,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.122721269726753,0.612933874130249,0.780545592308044,-0.143788293004036,0.638352155685425,0.756195247173309,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.309463143348694,0.566630840301514,0.763650357723236,-0.410612344741821,0.594025194644928,0.691759645938873,-0.300031065940857,0.508646070957184,0.807007014751434,-0.344692260026932,0.582880973815918,0.73582398891449,-0.410612344741821,0.594025194644928,0.691759645938873,-0.389988541603088,0.626154184341431,0.675158977508545,-0.389988541603088,0.626154184341431,0.675158977508545,-0.351733475923538,0.612692415714264,0.707736790180206,-0.257578313350677,0.639456570148468,0.724395275115967,-0.143788293004036,0.638352155685425,0.756195247173309,-0.351733475923538,0.612692415714264,0.707736790180206,-0.261588990688324,0.629579305648804,0.731574296951294,-0.19723841547966,0.465813785791397,0.862620651721954,\r\n-0.133433401584625,0.398495227098465,0.907412230968475,-0.123819634318352,0.410911530256271,0.903227746486664,-0.225123718380928,0.521547675132751,0.822986721992493,-0.19723841547966,0.465813785791397,0.862620651721954,-0.177660554647446,0.493786305189133,0.851241230964661,-0.225123718380928,0.521547675132751,0.822986721992493,-0.309463143348694,0.566630840301514,0.763650357723236,-0.300031065940857,0.508646070957184,0.807007014751434,-0.051984928548336,0.562686920166016,0.825033843517303,0.11588941514492,0.593560934066772,0.79640120267868,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.100811943411827,0.628901422023773,0.770921409130096,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.122721269726753,0.612933874130249,0.780545592308044,0.163395509123802,0.599611043930054,0.783433675765991,0.11588941514492,0.593560934066772,0.79640120267868,0.150182843208313,0.583920121192932,0.797798454761505,0.0118015566840768,0.649717330932617,0.76008415222168,-0.0403720028698444,0.631038010120392,0.77470064163208,0.0408790111541748,0.589746713638306,0.806552886962891,0.163395509123802,0.599611043930054,0.783433675765991,0.0198324155062437,0.609198749065399,0.792769432067871,0.0118015566840768,0.649717330932617,0.76008415222168,-0.0273397080600262,0.676782608032227,0.735674977302551,-0.0403720028698444,0.631038010120392,0.77470064163208,-0.099539689719677,0.688498139381409,0.71837455034256,0.0313306488096714,0.681641578674316,0.731015026569366,-0.0273397080600262,0.676782608032227,0.735674977302551,0.110229775309563,0.667213082313538,0.736665487289429,0.0313306488096714,0.681641578674316,0.731015026569366,0.0380522310733795,0.645900905132294,0.762472212314606,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.0394677966833115,0.638499081134796,0.768609821796417,-0.0267707575112581,0.584549605846405,0.810916066169739,-0.0736152604222298,0.533828496932983,0.842382252216339,0.0149742718786001,0.541386187076569,0.840640604496002,0.057147528976202,0.459615439176559,0.886277437210083,-0.0736152604222298,0.533828496932983,0.842382252216339,\r\n0.127389028668404,0.52800977230072,0.839629411697388,0.057147528976202,0.459615439176559,0.886277437210083,0.0149742718786001,0.541386187076569,0.840640604496002,0.0679269284009933,0.559387505054474,0.826118290424347,0.0449520125985146,0.510544955730438,0.858675181865692,0.0861893966794014,0.461974173784256,0.882695376873016,0.0679269284009933,0.559387505054474,0.826118290424347,0.127389028668404,0.52800977230072,0.839629411697388,0.0110830031335354,0.60471248626709,0.796366631984711,-0.0606788545846939,0.556630074977875,0.828541398048401,0.0449520125985146,0.510544955730438,0.858675181865692,-0.031187916174531,0.603022336959839,0.797114372253418,-0.163330540060997,0.289626717567444,0.943100929260254,-0.139198750257492,0.404264092445374,0.903987884521484,-0.224903836846352,0.427642107009888,0.875522911548615,-0.139198750257492,0.404264092445374,0.903987884521484,-0.0692095458507538,0.396191656589508,0.915555596351624,-0.125791221857071,0.470518589019775,0.873377799987793,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.0808006152510643,0.497795552015305,0.863522291183472,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.125791221857071,0.470518589019775,0.873377799987793,-0.0808006152510643,0.497795552015305,0.863522291183472,-0.224903836846352,0.427642107009888,0.875522911548615,-0.321447730064392,0.406912297010422,0.85504013299942,-0.289223611354828,0.285745799541473,0.913618624210358,-0.0430256873369217,-0.643864214420319,0.763929009437561,-0.00945391412824392,-0.717294931411743,0.696705520153046,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.0430256873369217,-0.643864214420319,0.763929009437561,0.109254233539104,-0.585358619689941,0.803379476070404,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.156430020928383,0.0250704232603312,0.987370789051056,0.120994731783867,0.0707344859838486,0.990129709243774,0.162875175476074,-0.0189905539155006,0.986463844776154,0.17294317483902,-0.271946340799332,0.946644425392151,0.109254233539104,-0.585358619689941,0.803379476070404,\r\n0.112780079245567,-0.162548288702965,0.98023396730423,0.171211868524551,-0.0983381941914558,0.980314195156097,0.17294317483902,-0.271946340799332,0.946644425392151,0.120994731783867,0.0707344859838486,0.990129709243774,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.0770908370614052,-0.721940100193024,0.687647700309753,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.104612536728382,-0.708353996276855,0.698062181472778,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.111132420599461,-0.762474179267883,0.637403011322021,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.101948812603951,-0.696193635463715,0.710577726364136,-0.107564650475979,-0.757838189601898,0.643514573574066,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.101948812603951,-0.696193635463715,0.710577726364136,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.178355470299721,-0.675301373004913,0.71565169095993,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.29437193274498,-0.286476463079453,0.911743521690369,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.23735049366951,-0.191121995449066,0.952437400817871,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.012083038687706,-0.0640560984611511,0.99787312746048,-0.0495379008352757,-0.261851876974106,0.963835835456848,-0.012083038687706,-0.0640560984611511,0.99787312746048,0.176335111260414,-0.293715596199036,0.93948757648468,-0.0495379008352757,-0.261851876974106,0.963835835456848,0.176335111260414,-0.293715596199036,0.93948757648468,0.10025629401207,-0.393304914236069,0.913925528526306,0.233304426074028,-0.401558667421341,0.885618150234222,0.10025629401207,-0.393304914236069,0.913925528526306,0.176335111260414,-0.293715596199036,0.93948757648468,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.29437193274498,-0.286476463079453,0.911743521690369,\r\n0.106468506157398,-0.326004147529602,0.939353823661804,0.233304426074028,-0.401558667421341,0.885618150234222,0.219772964715958,-0.400614380836487,0.88949853181839,-0.128650680184364,-0.26903161406517,0.954500317573547,-0.0213475823402405,-0.11724254488945,0.992873787879944,0.106468506157398,-0.326004147529602,0.939353823661804,-0.0822720527648926,0.010066338814795,0.996559023857117,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.0822720527648926,0.010066338814795,0.996559023857117,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.309330314397812,-0.383841961622238,0.870045959949493,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.338733583688736,-0.278161764144897,0.898824512958527,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.239680618047714,-0.186049520969391,0.952858150005341,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.0119927721098065,0.297957509756088,0.954503774642944,\r\n-0.0481461025774479,0.492816805839539,0.868800044059753,0.12606543302536,0.269345194101334,0.954756796360016,-0.270971089601517,0.869038641452789,0.413940072059631,-0.178592994809151,0.634656608104706,0.751874566078186,-0.345222979784012,0.832892656326294,0.432563036680222,-0.282919645309448,0.574541985988617,0.768022000789642,-0.256465643644333,0.756111264228821,0.60209721326828,-0.345222979784012,0.832892656326294,0.432563036680222,-0.0481461025774479,0.492816805839539,0.868800044059753,-0.148011118173599,0.672079980373383,0.725535035133362,0.0944771096110344,0.378253191709518,0.920868337154388,-0.148011118173599,0.672079980373383,0.725535035133362,-0.256465643644333,0.756111264228821,0.60209721326828,-0.0541347153484821,0.507229685783386,0.860108911991119,0.0157581400126219,0.130627289414406,0.991306245326996,-0.00999101810157299,0.143679618835449,0.989573776721954,-0.0386221744120121,0.0993533730506897,0.994302332401276,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0533705577254295,0.258902609348297,0.964427649974823,-0.0386221744120121,0.0993533730506897,0.994302332401276,0.0157581400126219,0.130627289414406,0.991306245326996,-0.073194645345211,0.08730149269104,0.993489265441895,-0.020547442138195,0.176797851920128,0.98403263092041,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.119200311601162,0.111742615699768,0.986562073230743,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.119200311601162,0.111742615699768,0.986562073230743,-0.073194645345211,0.08730149269104,0.993489265441895,-0.157269462943077,0.0403628535568714,0.986730515956879,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.217048168182373,-0.187892526388168,0.957907259464264,-0.264501363039017,0.879896938800812,0.394740790128708,-0.318130731582642,0.870106339454651,0.376440942287445,\r\n-0.217170044779778,0.85335111618042,0.473950326442719,-0.217170044779778,0.85335111618042,0.473950326442719,-0.245418563485146,0.825142562389374,0.508831322193146,-0.15339732170105,0.776742279529572,0.610852301120758,-0.270971089601517,0.869038641452789,0.413940072059631,-0.264501363039017,0.879896938800812,0.394740790128708,-0.25182718038559,0.84276956319809,0.475733637809753,-0.0991649925708771,0.413793861865997,0.904953479766846,-0.11361825466156,0.538382291793823,0.83500611782074,-0.210961937904358,0.62172269821167,0.754291594028473,-0.0991649925708771,0.413793861865997,0.904953479766846,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0338647365570068,0.321719259023666,0.946229219436646,-0.204256385564804,0.747137308120728,0.632506906986237,-0.15339732170105,0.776742279529572,0.610852301120758,-0.182099252939224,0.711992800235748,0.678163647651672,-0.239367216825485,0.706599116325378,0.665898561477661,-0.182099252939224,0.711992800235748,0.678163647651672,-0.210961937904358,0.62172269821167,0.754291594028473,-0.0880421847105026,0.210058704018593,0.973716497421265,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.187370419502258,0.345458060503006,0.91953843832016,-0.0220105890184641,0.368910312652588,0.929204285144806,-0.133433401584625,0.398495227098465,0.907412230968475,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.0734006762504578,0.624806046485901,0.777322053909302,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.100811943411827,0.628901422023773,0.770921409130096,-0.122721269726753,0.612933874130249,0.780545592308044,-0.143788293004036,0.638352155685425,0.756195247173309,-0.261588990688324,0.629579305648804,0.731574296951294,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.376448482275009,0.597138285636902,0.708316564559937,-0.410612344741821,0.594025194644928,0.691759645938873,-0.309463143348694,0.566630840301514,0.763650357723236,-0.389988541603088,0.626154184341431,0.675158977508545,\r\n-0.410612344741821,0.594025194644928,0.691759645938873,-0.465013414621353,0.593971252441406,0.656475841999054,-0.351733475923538,0.612692415714264,0.707736790180206,-0.389988541603088,0.626154184341431,0.675158977508545,-0.465013414621353,0.593971252441406,0.656475841999054,-0.261588990688324,0.629579305648804,0.731574296951294,-0.351733475923538,0.612692415714264,0.707736790180206,-0.417334169149399,0.604882538318634,0.678195595741272,-0.133433401584625,0.398495227098465,0.907412230968475,-0.032447811216116,0.363450616598129,0.931048154830933,-0.123819634318352,0.410911530256271,0.903227746486664,-0.177660554647446,0.493786305189133,0.851241230964661,-0.19723841547966,0.465813785791397,0.862620651721954,-0.123819634318352,0.410911530256271,0.903227746486664,-0.225123718380928,0.521547675132751,0.822986721992493,-0.177660554647446,0.493786305189133,0.851241230964661,-0.189457625150681,0.548098981380463,0.814673721790314,-0.225123718380928,0.521547675132751,0.822986721992493,-0.25105431675911,0.580020189285278,0.774950385093689,-0.309463143348694,0.566630840301514,0.763650357723236,-0.051984928548336,0.562686920166016,0.825033843517303,0.0392943471670151,0.524312555789948,0.850618660449982,0.11588941514492,0.593560934066772,0.79640120267868,-0.051984928548336,0.562686920166016,0.825033843517303,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.0463941171765327,0.60364431142807,0.795902609825134,-0.0943541526794434,0.610206067562103,0.786603987216949,-0.100811943411827,0.628901422023773,0.770921409130096,-0.0463941171765327,0.60364431142807,0.795902609825134,0.0840629488229752,0.534413695335388,0.841032266616821,0.150182843208313,0.583920121192932,0.797798454761505,0.11588941514492,0.593560934066772,0.79640120267868,0.150182843208313,0.583920121192932,0.797798454761505,0.0198324155062437,0.609198749065399,0.792769432067871,0.163395509123802,0.599611043930054,0.783433675765991,0.0118015566840768,0.649717330932617,0.76008415222168,-0.099539689719677,0.688498139381409,0.71837455034256,-0.0403720028698444,0.631038010120392,0.77470064163208,\r\n0.0118015566840768,0.649717330932617,0.76008415222168,0.0198324155062437,0.609198749065399,0.792769432067871,-0.0900026261806488,0.674315929412842,0.732937514781952,-0.0538960732519627,0.711629867553711,0.700484156608582,-0.0273397080600262,0.676782608032227,0.735674977302551,-0.099539689719677,0.688498139381409,0.71837455034256,0.173695281147957,0.653365015983582,0.736847281455994,0.110229775309563,0.667213082313538,0.736665487289429,-0.0273397080600262,0.676782608032227,0.735674977302551,0.0819162428379059,0.64330005645752,0.761219143867493,0.0313306488096714,0.681641578674316,0.731015026569366,0.110229775309563,0.667213082313538,0.736665487289429,0.0380522310733795,0.645900905132294,0.762472212314606,0.0313306488096714,0.681641578674316,0.731015026569366,0.0819162428379059,0.64330005645752,0.761219143867493,-0.0394677966833115,0.638499081134796,0.768609821796417,0.0380522310733795,0.645900905132294,0.762472212314606,0.036897350102663,0.598807215690613,0.800042688846588,-0.0394677966833115,0.638499081134796,0.768609821796417,0.036897350102663,0.598807215690613,0.800042688846588,-0.0267707575112581,0.584549605846405,0.810916066169739,-0.0267707575112581,0.584549605846405,0.810916066169739,0.0149742718786001,0.541386187076569,0.840640604496002,-0.0736152604222298,0.533828496932983,0.842382252216339,0.127389028668404,0.52800977230072,0.839629411697388,0.0149742718786001,0.541386187076569,0.840640604496002,0.0110830031335354,0.60471248626709,0.796366631984711,0.0679269284009933,0.559387505054474,0.826118290424347,-0.031187916174531,0.603022336959839,0.797114372253418,0.0449520125985146,0.510544955730438,0.858675181865692,0.0679269284009933,0.559387505054474,0.826118290424347,0.0110830031335354,0.60471248626709,0.796366631984711,-0.031187916174531,0.603022336959839,0.797114372253418,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.031187916174531,0.603022336959839,0.797114372253418,-0.049249742180109,0.579795598983765,0.813271939754486,-0.139198750257492,0.404264092445374,0.903987884521484,-0.125791221857071,0.470518589019775,0.873377799987793,\r\n-0.224903836846352,0.427642107009888,0.875522911548615,-0.0606788545846939,0.556630074977875,0.828541398048401,-0.049249742180109,0.579795598983765,0.813271939754486,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.101487137377262,0.497115552425385,0.861728727817535,-0.125791221857071,0.470518589019775,0.873377799987793,-0.321447730064392,0.406912297010422,0.85504013299942,-0.224903836846352,0.427642107009888,0.875522911548615,-0.255332142114639,0.450516164302826,0.855476796627045,-0.0770908370614052,-0.721940100193024,0.687647700309753,-0.0808166563510895,-0.746587038040161,0.660360753536224,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.109254233539104,-0.585358619689941,0.803379476070404,0.182815313339233,-0.686289250850677,0.703978300094604,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.156430020928383,0.0250704232603312,0.987370789051056,0.1105095744133,0.0975717902183533,0.989073932170868,0.120994731783867,0.0707344859838486,0.990129709243774,0.162875175476074,-0.0189905539155006,0.986463844776154,0.201260134577751,-0.11511142551899,0.972750544548035,0.156430020928383,0.0250704232603312,0.987370789051056,0.198529466986656,-0.619115173816681,0.75979095697403,0.109254233539104,-0.585358619689941,0.803379476070404,0.17294317483902,-0.271946340799332,0.946644425392151,0.171211868524551,-0.0983381941914558,0.980314195156097,0.251847565174103,-0.586135566234589,0.770076453685761,0.17294317483902,-0.271946340799332,0.946644425392151,0.120994731783867,0.0707344859838486,0.990129709243774,0.1105095744133,0.0975717902183533,0.989073932170868,0.171211868524551,-0.0983381941914558,0.980314195156097,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.0770908370614052,-0.721940100193024,0.687647700309753,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.105984009802341,-0.753260016441345,0.649127542972565,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.101948812603951,-0.696193635463715,0.710577726364136,\r\n-0.0339388512074947,-0.725036978721619,0.687873065471649,0.152017936110497,-0.626445055007935,0.764497876167297,-0.0792260989546776,-0.518146395683289,0.851614594459534,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.101948812603951,-0.696193635463715,0.710577726364136,-0.0792260989546776,-0.518146395683289,0.851614594459534,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.232030302286148,-0.527782797813416,0.81707227230072,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.0565488710999489,-0.01905850879848,0.998217880725861,-0.012083038687706,-0.0640560984611511,0.99787312746048,0.176335111260414,-0.293715596199036,0.93948757648468,-0.012083038687706,-0.0640560984611511,0.99787312746048,0.141459360718727,-0.189408853650093,0.971655011177063,0.219772964715958,-0.400614380836487,0.88949853181839,0.233304426074028,-0.401558667421341,0.885618150234222,0.176335111260414,-0.293715596199036,0.93948757648468,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.0122099900618196,-0.449315011501312,0.893289864063263,0.106468506157398,-0.326004147529602,0.939353823661804,0.219772964715958,-0.400614380836487,0.88949853181839,-0.128650680184364,-0.26903161406517,0.954500317573547,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.0213475823402405,-0.11724254488945,0.992873787879944,-0.0122099900618196,-0.449315011501312,0.893289864063263,-0.128650680184364,-0.26903161406517,0.954500317573547,0.106468506157398,-0.326004147529602,0.939353823661804,-0.120117612183094,-0.0219547841697931,0.992516815662384,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.150983273983002,-0.352173358201981,0.923676311969757,\r\n-0.216517806053162,-0.357741564512253,0.908372700214386,-0.223378613591194,-0.337788969278336,0.9143306016922,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.376330018043518,-0.153854489326477,0.913621544837952,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.215213358402252,-0.075236476957798,0.973664402961731,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.327875137329102,-0.0905591920018196,0.940370619297028,-0.19063763320446,-0.18367426097393,0.964324057102203,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.215213358402252,-0.075236476957798,0.973664402961731,0.0923661515116692,0.286449909210205,0.953632473945618,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.0119927721098065,0.297957509756088,0.954503774642944,-0.0481461025774479,0.492816805839539,0.868800044059753,0.0944771096110344,0.378253191709518,0.920868337154388,0.12606543302536,0.269345194101334,0.954756796360016,0.0923661515116692,0.286449909210205,0.953632473945618,-0.0119927721098065,0.297957509756088,0.954503774642944,0.12606543302536,0.269345194101334,0.954756796360016,-0.226041451096535,0.752825975418091,0.61818939447403,-0.178592994809151,0.634656608104706,0.751874566078186,-0.270971089601517,0.869038641452789,0.413940072059631,-0.178592994809151,0.634656608104706,0.751874566078186,-0.282919645309448,0.574541985988617,0.768022000789642,-0.345222979784012,0.832892656326294,0.432563036680222,-0.282919645309448,0.574541985988617,0.768022000789642,-0.0541347153484821,0.507229685783386,0.860108911991119,-0.256465643644333,0.756111264228821,0.60209721326828,-0.0541347153484821,0.507229685783386,0.860108911991119,\r\n0.0944771096110344,0.378253191709518,0.920868337154388,-0.148011118173599,0.672079980373383,0.725535035133362,0.0157581400126219,0.130627289414406,0.991306245326996,-0.020547442138195,0.176797851920128,0.98403263092041,-0.00999101810157299,0.143679618835449,0.989573776721954,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.00999101810157299,0.143679618835449,0.989573776721954,-0.173235356807709,0.141144588589668,0.97471410036087,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.119200311601162,0.111742615699768,0.986562073230743,-0.020547442138195,0.176797851920128,0.98403263092041,-0.073194645345211,0.08730149269104,0.993489265441895,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.119200311601162,0.111742615699768,0.986562073230743,-0.252416759729385,-0.00136262062005699,0.967617630958557,-0.115331344306469,-0.0331142693758011,0.992774903774261,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.115331344306469,-0.0331142693758011,0.992774903774261,-0.268483102321625,-0.0831951126456261,0.959685027599335,-0.217170044779778,0.85335111618042,0.473950326442719,-0.192873433232307,0.818727493286133,0.540818810462952,-0.264501363039017,0.879896938800812,0.394740790128708,-0.192873433232307,0.818727493286133,0.540818810462952,-0.217170044779778,0.85335111618042,0.473950326442719,-0.15339732170105,0.776742279529572,0.610852301120758,-0.25182718038559,0.84276956319809,0.475733637809753,-0.264501363039017,0.879896938800812,0.394740790128708,-0.23705767095089,0.891262173652649,0.386594504117966,-0.226041451096535,0.752825975418091,0.61818939447403,-0.270971089601517,0.869038641452789,0.413940072059631,-0.25182718038559,0.84276956319809,0.475733637809753,-0.0991649925708771,0.413793861865997,0.904953479766846,-0.0338647365570068,0.321719259023666,0.946229219436646,-0.11361825466156,0.538382291793823,0.83500611782074,\r\n-0.239367216825485,0.706599116325378,0.665898561477661,-0.210961937904358,0.62172269821167,0.754291594028473,-0.11361825466156,0.538382291793823,0.83500611782074,0.00446295458823442,0.189411550760269,0.981887578964233,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.0338647365570068,0.321719259023666,0.946229219436646,-0.192873433232307,0.818727493286133,0.540818810462952,-0.15339732170105,0.776742279529572,0.610852301120758,-0.204256385564804,0.747137308120728,0.632506906986237,-0.239367216825485,0.706599116325378,0.665898561477661,-0.204256385564804,0.747137308120728,0.632506906986237,-0.182099252939224,0.711992800235748,0.678163647651672,-0.133433401584625,0.398495227098465,0.907412230968475,-0.0220105890184641,0.368910312652588,0.929204285144806,-0.032447811216116,0.363450616598129,0.931048154830933,0.0923661515116692,0.286449909210205,0.953632473945618,-0.0220105890184641,0.368910312652588,0.929204285144806,-0.0674514770507813,0.295584857463837,0.952932178974152,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.124917268753052,0.700715780258179,0.702419340610504,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.100811943411827,0.628901422023773,0.770921409130096,-0.124917268753052,0.700715780258179,0.702419340610504,-0.0953855961561203,0.650668025016785,0.753347635269165,-0.261588990688324,0.629579305648804,0.731574296951294,-0.410612344741821,0.594025194644928,0.691759645938873,-0.376448482275009,0.597138285636902,0.708316564559937,-0.467254847288132,0.583591759204865,0.6641486287117,-0.309463143348694,0.566630840301514,0.763650357723236,-0.25105431675911,0.580020189285278,0.774950385093689,-0.376448482275009,0.597138285636902,0.708316564559937,-0.410612344741821,0.594025194644928,0.691759645938873,-0.467254847288132,0.583591759204865,0.6641486287117,-0.465013414621353,0.593971252441406,0.656475841999054,-0.351733475923538,0.612692415714264,0.707736790180206,-0.465013414621353,0.593971252441406,0.656475841999054,\r\n-0.417334169149399,0.604882538318634,0.678195595741272,-0.261588990688324,0.629579305648804,0.731574296951294,-0.417334169149399,0.604882538318634,0.678195595741272,-0.312922924757004,0.702220797538757,0.639503717422485,-0.032447811216116,0.363450616598129,0.931048154830933,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.123819634318352,0.410911530256271,0.903227746486664,-0.196416527032852,0.460635364055634,0.865583896636963,-0.177660554647446,0.493786305189133,0.851241230964661,-0.123819634318352,0.410911530256271,0.903227746486664,-0.177660554647446,0.493786305189133,0.851241230964661,-0.199882343411446,0.524718165397644,0.827476739883423,-0.189457625150681,0.548098981380463,0.814673721790314,-0.189457625150681,0.548098981380463,0.814673721790314,-0.25105431675911,0.580020189285278,0.774950385093689,-0.225123718380928,0.521547675132751,0.822986721992493,0.0392943471670151,0.524312555789948,0.850618660449982,-0.051984928548336,0.562686920166016,0.825033843517303,-0.0180345177650452,0.538604378700256,0.842365682125092,0.11588941514492,0.593560934066772,0.79640120267868,0.0392943471670151,0.524312555789948,0.850618660449982,0.0840629488229752,0.534413695335388,0.841032266616821,-0.051984928548336,0.562686920166016,0.825033843517303,-0.0463941171765327,0.60364431142807,0.795902609825134,-0.0180345177650452,0.538604378700256,0.842365682125092,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.0463941171765327,0.60364431142807,0.795902609825134,-0.100811943411827,0.628901422023773,0.770921409130096,0.0840629488229752,0.534413695335388,0.841032266616821,0.0198324155062437,0.609198749065399,0.792769432067871,0.150182843208313,0.583920121192932,0.797798454761505,0.0118015566840768,0.649717330932617,0.76008415222168,-0.0900026261806488,0.674315929412842,0.732937514781952,-0.099539689719677,0.688498139381409,0.71837455034256,-0.130473122000694,0.682144403457642,0.719482898712158,-0.0900026261806488,0.674315929412842,0.732937514781952,0.0198324155062437,0.609198749065399,0.792769432067871,-0.0538960732519627,0.711629867553711,0.700484156608582,\r\n0.173695281147957,0.653365015983582,0.736847281455994,-0.0273397080600262,0.676782608032227,0.735674977302551,-0.0538960732519627,0.711629867553711,0.700484156608582,-0.099539689719677,0.688498139381409,0.71837455034256,-0.135149076581001,0.732500374317169,0.667216420173645,0.173695281147957,0.653365015983582,0.736847281455994,0.272372096776962,0.544255435466766,0.7934730052948,0.110229775309563,0.667213082313538,0.736665487289429,0.161560669541359,0.575781643390656,0.801482081413269,0.0819162428379059,0.64330005645752,0.761219143867493,0.110229775309563,0.667213082313538,0.736665487289429,0.0819162428379059,0.64330005645752,0.761219143867493,0.036897350102663,0.598807215690613,0.800042688846588,0.0380522310733795,0.645900905132294,0.762472212314606,0.036897350102663,0.598807215690613,0.800042688846588,0.0479695051908493,0.530550599098206,0.846294760704041,-0.0267707575112581,0.584549605846405,0.810916066169739,0.0110830031335354,0.60471248626709,0.796366631984711,0.0149742718786001,0.541386187076569,0.840640604496002,-0.0267707575112581,0.584549605846405,0.810916066169739,-0.031187916174531,0.603022336959839,0.797114372253418,0.0110830031335354,0.60471248626709,0.796366631984711,-0.00741205317899585,0.571354806423187,0.820669651031494,-0.031187916174531,0.603022336959839,0.797114372253418,-0.00741205317899585,0.571354806423187,0.820669651031494,-0.049249742180109,0.579795598983765,0.813271939754486,-0.224903836846352,0.427642107009888,0.875522911548615,-0.125791221857071,0.470518589019775,0.873377799987793,-0.138013869524002,0.486159771680832,0.862902462482452,-0.049249742180109,0.579795598983765,0.813271939754486,-0.0283082779496908,0.547417402267456,0.83638072013855,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.101487137377262,0.497115552425385,0.861728727817535,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.138013869524002,0.486159771680832,0.862902462482452,-0.125791221857071,0.470518589019775,0.873377799987793,-0.101487137377262,0.497115552425385,0.861728727817535,\r\n-0.194861397147179,0.430331200361252,0.881387531757355,-0.255332142114639,0.450516164302826,0.855476796627045,-0.224903836846352,0.427642107009888,0.875522911548615,-0.321447730064392,0.406912297010422,0.85504013299942,-0.255332142114639,0.450516164302826,0.855476796627045,-0.258470416069031,0.407200694084167,0.876002550125122,-0.00945391412824392,-0.717294931411743,0.696705520153046,-0.0232259891927242,-0.607206404209137,0.794204533100128,-0.0770908370614052,-0.721940100193024,0.687647700309753,0.198529466986656,-0.619115173816681,0.75979095697403,0.182815313339233,-0.686289250850677,0.703978300094604,0.109254233539104,-0.585358619689941,0.803379476070404,0.166385605931282,-0.584491968154907,0.794156670570374,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.182815313339233,-0.686289250850677,0.703978300094604,0.156430020928383,0.0250704232603312,0.987370789051056,0.146805837750435,-0.0176062732934952,0.989008545875549,0.1105095744133,0.0975717902183533,0.989073932170868,0.156430020928383,0.0250704232603312,0.987370789051056,0.201260134577751,-0.11511142551899,0.972750544548035,0.146805837750435,-0.0176062732934952,0.989008545875549,0.251847565174103,-0.586135566234589,0.770076453685761,0.198529466986656,-0.619115173816681,0.75979095697403,0.17294317483902,-0.271946340799332,0.946644425392151,0.251847565174103,-0.586135566234589,0.770076453685761,0.171211868524551,-0.0983381941914558,0.980314195156097,0.268917500972748,-0.442458868026733,0.855519354343414,0.173991307616234,-0.0366918034851551,0.984063327312469,0.171211868524551,-0.0983381941914558,0.980314195156097,0.1105095744133,0.0975717902183533,0.989073932170868,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.0770908370614052,-0.721940100193024,0.687647700309753,-0.0232259891927242,-0.607206404209137,0.794204533100128,-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.0315115079283714,-0.63968825340271,0.76798814535141,0.11336924880743,-0.578736484050751,0.807596027851105,0.11336924880743,-0.578736484050751,0.807596027851105,0.152017936110497,-0.626445055007935,0.764497876167297,\r\n-0.0339388512074947,-0.725036978721619,0.687873065471649,-0.101948812603951,-0.696193635463715,0.710577726364136,0.152017936110497,-0.626445055007935,0.764497876167297,-0.0792260989546776,-0.518146395683289,0.851614594459534,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.0792260989546776,-0.518146395683289,0.851614594459534,-0.0562808588147163,-0.261790931224823,0.963482141494751,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.0565488710999489,-0.01905850879848,0.998217880725861,-0.202821299433708,0.0160295628011227,0.979084491729736,0.141459360718727,-0.189408853650093,0.971655011177063,-0.012083038687706,-0.0640560984611511,0.99787312746048,-0.0565488710999489,-0.01905850879848,0.998217880725861,0.219772964715958,-0.400614380836487,0.88949853181839,0.176335111260414,-0.293715596199036,0.93948757648468,0.141459360718727,-0.189408853650093,0.971655011177063,-0.242558911442757,-0.233623474836349,0.941586494445801,-0.0562808588147163,-0.261790931224823,0.963482141494751,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.202821299433708,0.0160295628011227,0.979084491729736,-0.014423088170588,-0.474319934844971,0.880234360694885,-0.0122099900618196,-0.449315011501312,0.893289864063263,0.219772964715958,-0.400614380836487,0.88949853181839,-0.128650680184364,-0.26903161406517,0.954500317573547,-0.147401675581932,-0.161986127495766,0.975721836090088,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.0122099900618196,-0.449315011501312,0.893289864063263,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.128650680184364,-0.26903161406517,0.954500317573547,-0.120117612183094,-0.0219547841697931,0.992516815662384,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.165552452206612,-0.0626979619264603,0.984205901622772,-0.149436682462692,-0.0773435011506081,0.98574161529541,-0.147401675581932,-0.161986127495766,0.975721836090088,-0.120117612183094,-0.0219547841697931,0.992516815662384,\r\n-0.0845209807157516,-0.287738591432571,0.953971982002258,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.329666703939438,-0.316288381814957,0.889539957046509,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.147883132100105,-0.179127633571625,0.972647786140442,-0.215213358402252,-0.075236476957798,0.973664402961731,0.00129990337882191,-0.127854317426682,0.99179208278656,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.215213358402252,-0.075236476957798,0.973664402961731,0.120045907795429,0.240620285272598,0.963167071342468,0.12606543302536,0.269345194101334,0.954756796360016,0.0944771096110344,0.378253191709518,0.920868337154388,0.120045907795429,0.240620285272598,0.963167071342468,0.0923661515116692,0.286449909210205,0.953632473945618,0.12606543302536,0.269345194101334,0.954756796360016,-0.226041451096535,0.752825975418091,0.61818939447403,-0.0605320520699024,0.450463026762009,0.890740573406219,-0.178592994809151,0.634656608104706,0.751874566078186,-0.282919645309448,0.574541985988617,0.768022000789642,-0.178592994809151,0.634656608104706,0.751874566078186,-0.15862087905407,0.271374106407166,0.949313163757324,-0.282919645309448,0.574541985988617,0.768022000789642,-0.113042682409287,0.257388353347778,0.95967310667038,-0.0541347153484821,0.507229685783386,0.860108911991119,0.038891214877367,0.214674293994904,0.975911021232605,0.0944771096110344,0.378253191709518,0.920868337154388,-0.0541347153484821,0.507229685783386,0.860108911991119,-0.020547442138195,0.176797851920128,0.98403263092041,-0.173235356807709,0.141144588589668,0.97471410036087,\r\n-0.00999101810157299,0.143679618835449,0.989573776721954,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.173235356807709,0.141144588589668,0.97471410036087,-0.168193697929382,0.158832713961601,0.972873568534851,-0.168193697929382,0.158832713961601,0.972873568534851,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.0386221744120121,0.0993533730506897,0.994302332401276,-0.119200311601162,0.111742615699768,0.986562073230743,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.020547442138195,0.176797851920128,0.98403263092041,-0.0415970534086227,0.102985605597496,0.993812620639801,-0.119200311601162,0.111742615699768,0.986562073230743,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.0415970534086227,0.102985605597496,0.993812620639801,-0.189327761530876,0.0545093826949596,0.98039972782135,-0.115331344306469,-0.0331142693758011,0.992774903774261,-0.147883132100105,-0.179127633571625,0.972647786140442,0.00129990337882191,-0.127854317426682,0.99179208278656,-0.115331344306469,-0.0331142693758011,0.992774903774261,-0.264501363039017,0.879896938800812,0.394740790128708,-0.192873433232307,0.818727493286133,0.540818810462952,-0.233316957950592,0.848070442676544,0.475751638412476,-0.264501363039017,0.879896938800812,0.394740790128708,-0.233316957950592,0.848070442676544,0.475751638412476,-0.23705767095089,0.891262173652649,0.386594504117966,-0.25182718038559,0.84276956319809,0.475733637809753,-0.23705767095089,0.891262173652649,0.386594504117966,-0.195545688271523,0.841771006584167,0.503173232078552,-0.226041451096535,0.752825975418091,0.61818939447403,-0.25182718038559,0.84276956319809,0.475733637809753,-0.193079262971878,0.575070261955261,0.794993340969086,-0.0338647365570068,0.321719259023666,0.946229219436646,-0.0332843475043774,0.381644368171692,0.923709690570831,-0.11361825466156,0.538382291793823,0.83500611782074,-0.143056958913803,0.655778586864471,0.741275310516357,-0.239367216825485,0.706599116325378,0.665898561477661,-0.11361825466156,0.538382291793823,0.83500611782074,-0.0332843475043774,0.381644368171692,0.923709690570831,\r\n-0.0338647365570068,0.321719259023666,0.946229219436646,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.229820966720581,0.784670174121857,0.575738549232483,-0.192873433232307,0.818727493286133,0.540818810462952,-0.204256385564804,0.747137308120728,0.632506906986237,-0.204256385564804,0.747137308120728,0.632506906986237,-0.239367216825485,0.706599116325378,0.665898561477661,-0.229820966720581,0.784670174121857,0.575738549232483,-0.032447811216116,0.363450616598129,0.931048154830933,-0.0220105890184641,0.368910312652588,0.929204285144806,0.0518649704754353,0.326932609081268,0.94362336397171,0.0518649704754353,0.326932609081268,0.94362336397171,-0.0220105890184641,0.368910312652588,0.929204285144806,0.0923661515116692,0.286449909210205,0.953632473945618,-0.0686390846967697,0.659193158149719,0.748834371566772,-0.124917268753052,0.700715780258179,0.702419340610504,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.124917268753052,0.700715780258179,0.702419340610504,-0.261588990688324,0.629579305648804,0.731574296951294,-0.213507503271103,0.741544723510742,0.636023461818695,-0.406545013189316,0.632723748683929,0.659076333045959,-0.467254847288132,0.583591759204865,0.6641486287117,-0.376448482275009,0.597138285636902,0.708316564559937,-0.312861323356628,0.624599695205688,0.715536832809448,-0.376448482275009,0.597138285636902,0.708316564559937,-0.25105431675911,0.580020189285278,0.774950385093689,-0.417334169149399,0.604882538318634,0.678195595741272,-0.465013414621353,0.593971252441406,0.656475841999054,-0.467254847288132,0.583591759204865,0.6641486287117,-0.361485421657562,0.708280920982361,0.606354892253876,-0.312922924757004,0.702220797538757,0.639503717422485,-0.417334169149399,0.604882538318634,0.678195595741272,-0.312922924757004,0.702220797538757,0.639503717422485,-0.213507503271103,0.741544723510742,0.636023461818695,-0.261588990688324,0.629579305648804,0.731574296951294,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.032447811216116,0.363450616598129,0.931048154830933,-0.0466550178825855,0.308889776468277,0.949952781200409,\r\n-0.0945578441023827,0.320887386798859,0.942385256290436,-0.123819634318352,0.410911530256271,0.903227746486664,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.196416527032852,0.460635364055634,0.865583896636963,-0.199882343411446,0.524718165397644,0.827476739883423,-0.177660554647446,0.493786305189133,0.851241230964661,-0.123819634318352,0.410911530256271,0.903227746486664,-0.201051980257034,0.378958731889725,0.90330958366394,-0.196416527032852,0.460635364055634,0.865583896636963,-0.199882343411446,0.524718165397644,0.827476739883423,-0.226706236600876,0.547712683677673,0.805366337299347,-0.189457625150681,0.548098981380463,0.814673721790314,-0.25105431675911,0.580020189285278,0.774950385093689,-0.189457625150681,0.548098981380463,0.814673721790314,-0.226706236600876,0.547712683677673,0.805366337299347,0.0392943471670151,0.524312555789948,0.850618660449982,-0.0180345177650452,0.538604378700256,0.842365682125092,0.0302358791232109,0.544053196907043,0.838505685329437,0.0840629488229752,0.534413695335388,0.841032266616821,0.0392943471670151,0.524312555789948,0.850618660449982,0.0302358791232109,0.544053196907043,0.838505685329437,-0.0463941171765327,0.60364431142807,0.795902609825134,0.0947011783719063,0.635367810726166,0.766380608081818,-0.0180345177650452,0.538604378700256,0.842365682125092,-0.0313311591744423,0.687329888343811,0.725669324398041,0.098351426422596,0.693352997303009,0.713854670524597,-0.0463941171765327,0.60364431142807,0.795902609825134,0.0840629488229752,0.534413695335388,0.841032266616821,0.0302358791232109,0.544053196907043,0.838505685329437,0.0198324155062437,0.609198749065399,0.792769432067871,-0.099539689719677,0.688498139381409,0.71837455034256,-0.0900026261806488,0.674315929412842,0.732937514781952,-0.180644050240517,0.714027404785156,0.676411509513855,-0.180644050240517,0.714027404785156,0.676411509513855,-0.0900026261806488,0.674315929412842,0.732937514781952,-0.130473122000694,0.682144403457642,0.719482898712158,0.0198324155062437,0.609198749065399,0.792769432067871,0.053541149944067,0.668681204319,0.741618931293488,\r\n-0.130473122000694,0.682144403457642,0.719482898712158,0.0799226388335228,0.720150113105774,0.689199566841125,0.173695281147957,0.653365015983582,0.736847281455994,-0.0538960732519627,0.711629867553711,0.700484156608582,-0.135149076581001,0.732500374317169,0.667216420173645,-0.099539689719677,0.688498139381409,0.71837455034256,-0.152619794011116,0.720435202121735,0.676520526409149,0.0799226388335228,0.720150113105774,0.689199566841125,-0.0538960732519627,0.711629867553711,0.700484156608582,-0.135149076581001,0.732500374317169,0.667216420173645,0.173695281147957,0.653365015983582,0.736847281455994,0.434510976076126,0.465211719274521,0.771218597888947,0.272372096776962,0.544255435466766,0.7934730052948,0.272372096776962,0.544255435466766,0.7934730052948,0.161560669541359,0.575781643390656,0.801482081413269,0.110229775309563,0.667213082313538,0.736665487289429,0.161560669541359,0.575781643390656,0.801482081413269,0.036897350102663,0.598807215690613,0.800042688846588,0.0819162428379059,0.64330005645752,0.761219143867493,0.100870192050934,0.508322656154633,0.855238616466522,0.0479695051908493,0.530550599098206,0.846294760704041,0.036897350102663,0.598807215690613,0.800042688846588,-0.01217439211905,0.581019639968872,0.813798367977142,-0.0267707575112581,0.584549605846405,0.810916066169739,0.0479695051908493,0.530550599098206,0.846294760704041,-0.01217439211905,0.581019639968872,0.813798367977142,0.0110830031335354,0.60471248626709,0.796366631984711,-0.0267707575112581,0.584549605846405,0.810916066169739,-0.01217439211905,0.581019639968872,0.813798367977142,-0.00741205317899585,0.571354806423187,0.820669651031494,0.0110830031335354,0.60471248626709,0.796366631984711,0.00675608450546861,0.489828318357468,0.871792674064636,-0.049249742180109,0.579795598983765,0.813271939754486,-0.00741205317899585,0.571354806423187,0.820669651031494,-0.224903836846352,0.427642107009888,0.875522911548615,-0.138013869524002,0.486159771680832,0.862902462482452,-0.194861397147179,0.430331200361252,0.881387531757355,-0.0283082779496908,0.547417402267456,0.83638072013855,\r\n-0.049249742180109,0.579795598983765,0.813271939754486,0.0837863832712173,0.436996281147003,0.895552337169647,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.0819044709205627,0.536246180534363,0.840078294277191,-0.0283082779496908,0.547417402267456,0.83638072013855,-0.101487137377262,0.497115552425385,0.861728727817535,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.138013869524002,0.486159771680832,0.862902462482452,-0.255332142114639,0.450516164302826,0.855476796627045,-0.194861397147179,0.430331200361252,0.881387531757355,-0.226979091763496,0.428359836339951,0.874636054039001,-0.258470416069031,0.407200694084167,0.876002550125122,-0.255332142114639,0.450516164302826,0.855476796627045,-0.226979091763496,0.428359836339951,0.874636054039001,0.166385605931282,-0.584491968154907,0.794156670570374,-0.0232259891927242,-0.607206404209137,0.794204533100128,-0.00945391412824392,-0.717294931411743,0.696705520153046,0.198529466986656,-0.619115173816681,0.75979095697403,0.251847565174103,-0.586135566234589,0.770076453685761,0.182815313339233,-0.686289250850677,0.703978300094604,0.182815313339233,-0.686289250850677,0.703978300094604,0.287063628435135,-0.53775417804718,0.792726159095764,0.166385605931282,-0.584491968154907,0.794156670570374,0.146805837750435,-0.0176062732934952,0.989008545875549,0.12624055147171,-0.043350987136364,0.991051912307739,0.1105095744133,0.0975717902183533,0.989073932170868,0.184904679656029,-0.110358953475952,0.976540386676788,0.146805837750435,-0.0176062732934952,0.989008545875549,0.201260134577751,-0.11511142551899,0.972750544548035,0.173991307616234,-0.0366918034851551,0.984063327312469,0.268917500972748,-0.442458868026733,0.855519354343414,0.171211868524551,-0.0983381941914558,0.980314195156097,0.251847565174103,-0.586135566234589,0.770076453685761,0.268917500972748,-0.442458868026733,0.855519354343414,0.329152077436447,-0.680687785148621,0.654463827610016,0.159363210201263,0.0132382707670331,0.987131237983704,0.173991307616234,-0.0366918034851551,0.984063327312469,0.1105095744133,0.0975717902183533,0.989073932170868,\r\n-0.0125361997634172,-0.505977094173431,0.862455725669861,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.0232259891927242,-0.607206404209137,0.794204533100128,0.11336924880743,-0.578736484050751,0.807596027851105,-0.0315115079283714,-0.63968825340271,0.76798814535141,-0.0125361997634172,-0.505977094173431,0.862455725669861,0.11336924880743,-0.578736484050751,0.807596027851105,0.196881100535393,-0.464235693216324,0.863552510738373,0.152017936110497,-0.626445055007935,0.764497876167297,-0.0792260989546776,-0.518146395683289,0.851614594459534,0.152017936110497,-0.626445055007935,0.764497876167297,0.232502058148384,-0.433547616004944,0.870620012283325,-0.0792260989546776,-0.518146395683289,0.851614594459534,0.232502058148384,-0.433547616004944,0.870620012283325,-0.0562808588147163,-0.261790931224823,0.963482141494751,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.0017994602676481,-0.265932410955429,0.963989973068237,-0.0565488710999489,-0.01905850879848,0.998217880725861,-0.0565488710999489,-0.01905850879848,0.998217880725861,-0.0017994602676481,-0.265932410955429,0.963989973068237,0.141459360718727,-0.189408853650093,0.971655011177063,-0.0017994602676481,-0.265932410955429,0.963989973068237,0.219772964715958,-0.400614380836487,0.88949853181839,0.141459360718727,-0.189408853650093,0.971655011177063,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.0562808588147163,-0.261790931224823,0.963482141494751,0.257212817668915,-0.178263276815414,0.949770331382751,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.131743982434273,0.0294429548084736,0.990846395492554,-0.149914711713791,-0.0273417327553034,0.988320767879486,-0.0122099900618196,-0.449315011501312,0.893289864063263,-0.014423088170588,-0.474319934844971,0.880234360694885,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.0017994602676481,-0.265932410955429,0.963989973068237,-0.014423088170588,-0.474319934844971,0.880234360694885,0.219772964715958,-0.400614380836487,0.88949853181839,-0.128650680184364,-0.26903161406517,0.954500317573547,\r\n-0.260012865066528,-0.431379169225693,0.863889575004578,-0.147401675581932,-0.161986127495766,0.975721836090088,0.0224286690354347,0.0487700030207634,0.998558104038239,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.120117612183094,-0.0219547841697931,0.992516815662384,-0.147401675581932,-0.161986127495766,0.975721836090088,0.0224286690354347,0.0487700030207634,0.998558104038239,-0.120117612183094,-0.0219547841697931,0.992516815662384,-0.0845209807157516,-0.287738591432571,0.953971982002258,-0.0141846183687449,-0.419681042432785,0.907560765743256,-0.150983273983002,-0.352173358201981,0.923676311969757,0.10300724953413,-0.258839339017868,0.960412204265594,-0.0845209807157516,-0.287738591432571,0.953971982002258,-0.0743235945701599,-0.0860858932137489,0.993511497974396,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.150983273983002,-0.352173358201981,0.923676311969757,-0.0141846183687449,-0.419681042432785,0.907560765743256,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.216517806053162,-0.357741564512253,0.908372700214386,-0.215213358402252,-0.075236476957798,0.973664402961731,-0.0538215078413486,-0.0231157429516315,0.998282968997955,0.00129990337882191,-0.127854317426682,0.99179208278656,-0.32762011885643,-0.0219999328255653,0.944553196430206,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.358136683702469,-0.114762619137764,0.92658919095993,-0.257654935121536,0.0282595325261354,0.965823590755463,-0.215213358402252,-0.075236476957798,0.973664402961731,-0.262798398733139,0.0461656488478184,0.963745594024658,0.120045907795429,0.240620285272598,0.963167071342468,0.0944771096110344,0.378253191709518,0.920868337154388,\r\n0.038891214877367,0.214674293994904,0.975911021232605,0.0518649704754353,0.326932609081268,0.94362336397171,0.0923661515116692,0.286449909210205,0.953632473945618,0.120045907795429,0.240620285272598,0.963167071342468,-0.0605320520699024,0.450463026762009,0.890740573406219,-0.226041451096535,0.752825975418091,0.61818939447403,-0.193079262971878,0.575070261955261,0.794993340969086,-0.0605320520699024,0.450463026762009,0.890740573406219,0.00970063079148531,0.336856424808502,0.941506028175354,-0.178592994809151,0.634656608104706,0.751874566078186,0.00970063079148531,0.336856424808502,0.941506028175354,-0.15862087905407,0.271374106407166,0.949313163757324,-0.178592994809151,0.634656608104706,0.751874566078186,-0.15862087905407,0.271374106407166,0.949313163757324,-0.113042682409287,0.257388353347778,0.95967310667038,-0.282919645309448,0.574541985988617,0.768022000789642,-0.0541347153484821,0.507229685783386,0.860108911991119,-0.113042682409287,0.257388353347778,0.95967310667038,0.038891214877367,0.214674293994904,0.975911021232605,-0.020547442138195,0.176797851920128,0.98403263092041,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.173235356807709,0.141144588589668,0.97471410036087,-0.156987547874451,0.114630095660686,0.980925440788269,-0.168193697929382,0.158832713961601,0.972873568534851,-0.173235356807709,0.141144588589668,0.97471410036087,-0.168193697929382,0.158832713961601,0.972873568534851,-0.0392148867249489,0.246009230613709,0.968473851680756,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.0415970534086227,0.102985605597496,0.993812620639801,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.119200311601162,0.111742615699768,0.986562073230743,-0.0415970534086227,0.102985605597496,0.993812620639801,-0.115331344306469,-0.0331142693758011,0.992774903774261,0.0837384909391403,-0.00583482254296541,0.996470630168915,-0.115331344306469,-0.0331142693758011,0.992774903774261,0.00129990337882191,-0.127854317426682,0.99179208278656,0.0837384909391403,-0.00583482254296541,0.996470630168915,-0.229820966720581,0.784670174121857,0.575738549232483,\r\n-0.233316957950592,0.848070442676544,0.475751638412476,-0.192873433232307,0.818727493286133,0.540818810462952,-0.233316957950592,0.848070442676544,0.475751638412476,-0.190941512584686,0.839529097080231,0.508657097816467,-0.23705767095089,0.891262173652649,0.386594504117966,-0.186557188630104,0.922202229499817,0.338731974363327,-0.195545688271523,0.841771006584167,0.503173232078552,-0.23705767095089,0.891262173652649,0.386594504117966,-0.25182718038559,0.84276956319809,0.475733637809753,-0.195545688271523,0.841771006584167,0.503173232078552,-0.162590056657791,0.613435029983521,0.7728271484375,-0.193079262971878,0.575070261955261,0.794993340969086,-0.25182718038559,0.84276956319809,0.475733637809753,-0.162590056657791,0.613435029983521,0.7728271484375,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.11361825466156,0.538382291793823,0.83500611782074,-0.0332843475043774,0.381644368171692,0.923709690570831,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.239367216825485,0.706599116325378,0.665898561477661,-0.143056958913803,0.655778586864471,0.741275310516357,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.143056958913803,0.655778586864471,0.741275310516357,-0.11361825466156,0.538382291793823,0.83500611782074,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0332843475043774,0.381644368171692,0.923709690570831,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.239367216825485,0.706599116325378,0.665898561477661,-0.143906101584435,0.773058950901031,0.617795050144196,-0.229820966720581,0.784670174121857,0.575738549232483,-0.032447811216116,0.363450616598129,0.931048154830933,0.0518649704754353,0.326932609081268,0.94362336397171,-0.0466550178825855,0.308889776468277,0.949952781200409,-0.124917268753052,0.700715780258179,0.702419340610504,-0.082286424934864,0.736061215400696,0.671894729137421,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.213507503271103,0.741544723510742,0.636023461818695,-0.082286424934864,0.736061215400696,0.671894729137421,-0.124917268753052,0.700715780258179,0.702419340610504,\r\n-0.417334169149399,0.604882538318634,0.678195595741272,-0.467254847288132,0.583591759204865,0.6641486287117,-0.406545013189316,0.632723748683929,0.659076333045959,-0.406545013189316,0.632723748683929,0.659076333045959,-0.376448482275009,0.597138285636902,0.708316564559937,-0.312861323356628,0.624599695205688,0.715536832809448,-0.312861323356628,0.624599695205688,0.715536832809448,-0.25105431675911,0.580020189285278,0.774950385093689,-0.256236463785172,0.600708603858948,0.757292449474335,-0.361485421657562,0.708280920982361,0.606354892253876,-0.327628135681152,0.788933873176575,0.519849002361298,-0.312922924757004,0.702220797538757,0.639503717422485,-0.417334169149399,0.604882538318634,0.678195595741272,-0.406545013189316,0.632723748683929,0.659076333045959,-0.361485421657562,0.708280920982361,0.606354892253876,-0.286925762891769,0.801416993141174,0.524789810180664,-0.213507503271103,0.741544723510742,0.636023461818695,-0.312922924757004,0.702220797538757,0.639503717422485,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.0466550178825855,0.308889776468277,0.949952781200409,-0.0656129196286201,0.281799733638763,0.957227110862732,-0.123819634318352,0.410911530256271,0.903227746486664,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.201051980257034,0.378958731889725,0.90330958366394,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.199882343411446,0.524718165397644,0.827476739883423,-0.196416527032852,0.460635364055634,0.865583896636963,-0.228288352489471,0.479163199663162,0.847518086433411,-0.196416527032852,0.460635364055634,0.865583896636963,-0.201051980257034,0.378958731889725,0.90330958366394,-0.228288352489471,0.479163199663162,0.847518086433411,-0.226706236600876,0.547712683677673,0.805366337299347,-0.199882343411446,0.524718165397644,0.827476739883423,-0.275321006774902,0.508504211902618,0.815856397151947,-0.256236463785172,0.600708603858948,0.757292449474335,-0.25105431675911,0.580020189285278,0.774950385093689,\r\n-0.226706236600876,0.547712683677673,0.805366337299347,-0.0180345177650452,0.538604378700256,0.842365682125092,0.0947011783719063,0.635367810726166,0.766380608081818,0.0302358791232109,0.544053196907043,0.838505685329437,0.0947011783719063,0.635367810726166,0.766380608081818,-0.0463941171765327,0.60364431142807,0.795902609825134,0.098351426422596,0.693352997303009,0.713854670524597,0.098351426422596,0.693352997303009,0.713854670524597,-0.0313311591744423,0.687329888343811,0.725669324398041,0.0305317845195532,0.743206381797791,0.668365061283112,0.0302358791232109,0.544053196907043,0.838505685329437,0.053541149944067,0.668681204319,0.741618931293488,0.0198324155062437,0.609198749065399,0.792769432067871,-0.152619794011116,0.720435202121735,0.676520526409149,-0.099539689719677,0.688498139381409,0.71837455034256,-0.180644050240517,0.714027404785156,0.676411509513855,-0.180644050240517,0.714027404785156,0.676411509513855,-0.130473122000694,0.682144403457642,0.719482898712158,-0.227212265133858,0.758272290229797,0.61106264591217,-0.130473122000694,0.682144403457642,0.719482898712158,0.053541149944067,0.668681204319,0.741618931293488,-0.054279338568449,0.763355195522308,0.643694400787354,0.0799226388335228,0.720150113105774,0.689199566841125,0.46461895108223,0.565212249755859,0.681662797927856,0.173695281147957,0.653365015983582,0.736847281455994,-0.135149076581001,0.732500374317169,0.667216420173645,-0.152619794011116,0.720435202121735,0.676520526409149,-0.197519242763519,0.745759308338165,0.636261761188507,-0.0242114067077637,0.713628351688385,0.700105845928192,0.0799226388335228,0.720150113105774,0.689199566841125,-0.135149076581001,0.732500374317169,0.667216420173645,0.434510976076126,0.465211719274521,0.771218597888947,0.173695281147957,0.653365015983582,0.736847281455994,0.46461895108223,0.565212249755859,0.681662797927856,0.527648866176605,0.247794568538666,0.812517285346985,0.272372096776962,0.544255435466766,0.7934730052948,0.434510976076126,0.465211719274521,0.771218597888947,0.161560669541359,0.575781643390656,0.801482081413269,\r\n0.272372096776962,0.544255435466766,0.7934730052948,0.387563794851303,0.3086818754673,0.868625164031982,0.161560669541359,0.575781643390656,0.801482081413269,0.221606194972992,0.456430673599243,0.861720144748688,0.036897350102663,0.598807215690613,0.800042688846588,0.154901206493378,0.443378955125809,0.882848024368286,0.0479695051908493,0.530550599098206,0.846294760704041,0.100870192050934,0.508322656154633,0.855238616466522,0.100870192050934,0.508322656154633,0.855238616466522,0.036897350102663,0.598807215690613,0.800042688846588,0.221606194972992,0.456430673599243,0.861720144748688,0.116993464529514,0.410933405160904,0.904127299785614,-0.01217439211905,0.581019639968872,0.813798367977142,0.0479695051908493,0.530550599098206,0.846294760704041,-0.01217439211905,0.581019639968872,0.813798367977142,0.116993464529514,0.410933405160904,0.904127299785614,-0.00741205317899585,0.571354806423187,0.820669651031494,0.0837863832712173,0.436996281147003,0.895552337169647,-0.049249742180109,0.579795598983765,0.813271939754486,0.00675608450546861,0.489828318357468,0.871792674064636,0.00675608450546861,0.489828318357468,0.871792674064636,-0.00741205317899585,0.571354806423187,0.820669651031494,0.0605771765112877,0.29670387506485,0.953046202659607,-0.194861397147179,0.430331200361252,0.881387531757355,-0.138013869524002,0.486159771680832,0.862902462482452,-0.0187679436057806,0.383020609617233,0.923549056053162,0.0471741370856762,0.445571511983871,0.894002497196198,-0.0283082779496908,0.547417402267456,0.83638072013855,0.0837863832712173,0.436996281147003,0.895552337169647,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.0283082779496908,0.547417402267456,0.83638072013855,0.0471741370856762,0.445571511983871,0.894002497196198,-0.138013869524002,0.486159771680832,0.862902462482452,-0.0615903437137604,0.515091001987457,0.854919791221619,-0.0187679436057806,0.383020609617233,0.923549056053162,-0.226979091763496,0.428359836339951,0.874636054039001,-0.194861397147179,0.430331200361252,0.881387531757355,-0.193161398172379,0.399019032716751,0.89636617898941,\r\n-0.258470416069031,0.407200694084167,0.876002550125122,-0.226979091763496,0.428359836339951,0.874636054039001,-0.193161398172379,0.399019032716751,0.89636617898941,0.166385605931282,-0.584491968154907,0.794156670570374,0.11159535497427,-0.514164924621582,0.850400328636169,-0.0232259891927242,-0.607206404209137,0.794204533100128,0.341270416975021,-0.645865440368652,0.68292909860611,0.182815313339233,-0.686289250850677,0.703978300094604,0.251847565174103,-0.586135566234589,0.770076453685761,0.341270416975021,-0.645865440368652,0.68292909860611,0.287063628435135,-0.53775417804718,0.792726159095764,0.182815313339233,-0.686289250850677,0.703978300094604,0.166385605931282,-0.584491968154907,0.794156670570374,0.287063628435135,-0.53775417804718,0.792726159095764,0.290923655033112,-0.451200276613235,0.843671560287476,0.185575127601624,-0.0918116569519043,0.978331446647644,0.12624055147171,-0.043350987136364,0.991051912307739,0.146805837750435,-0.0176062732934952,0.989008545875549,0.101697213947773,0.086746908724308,0.991026043891907,0.1105095744133,0.0975717902183533,0.989073932170868,0.12624055147171,-0.043350987136364,0.991051912307739,0.185575127601624,-0.0918116569519043,0.978331446647644,0.146805837750435,-0.0176062732934952,0.989008545875549,0.184904679656029,-0.110358953475952,0.976540386676788,0.265449792146683,-0.292839854955673,0.918575584888458,0.268917500972748,-0.442458868026733,0.855519354343414,0.173991307616234,-0.0366918034851551,0.984063327312469,0.268917500972748,-0.442458868026733,0.855519354343414,0.390424907207489,-0.598195791244507,0.699807167053223,0.329152077436447,-0.680687785148621,0.654463827610016,0.341270416975021,-0.645865440368652,0.68292909860611,0.251847565174103,-0.586135566234589,0.770076453685761,0.329152077436447,-0.680687785148621,0.654463827610016,0.159363210201263,0.0132382707670331,0.987131237983704,0.265449792146683,-0.292839854955673,0.918575584888458,0.173991307616234,-0.0366918034851551,0.984063327312469,0.159363210201263,0.0132382707670331,0.987131237983704,0.1105095744133,0.0975717902183533,0.989073932170868,\r\n0.106777712702751,0.154336988925934,0.982231378555298,-0.0232259891927242,-0.607206404209137,0.794204533100128,-0.0629183501005173,-0.489520907402039,0.869718611240387,-0.0125361997634172,-0.505977094173431,0.862455725669861,0.11336924880743,-0.578736484050751,0.807596027851105,-0.0125361997634172,-0.505977094173431,0.862455725669861,0.196881100535393,-0.464235693216324,0.863552510738373,0.196881100535393,-0.464235693216324,0.863552510738373,0.232502058148384,-0.433547616004944,0.870620012283325,0.152017936110497,-0.626445055007935,0.764497876167297,0.257212817668915,-0.178263276815414,0.949770331382751,-0.0562808588147163,-0.261790931224823,0.963482141494751,0.232502058148384,-0.433547616004944,0.870620012283325,-0.0017994602676481,-0.265932410955429,0.963989973068237,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.131743982434273,0.0294429548084736,0.990846395492554,0.257212817668915,-0.178263276815414,0.949770331382751,0.123140119016171,0.0137670915573835,0.992293775081635,-0.149914711713791,-0.0273417327553034,0.988320767879486,-0.131743982434273,0.0294429548084736,0.990846395492554,0.02005510404706,0.079396940767765,0.996641278266907,-0.227341488003731,-0.042752493172884,0.972876131534576,-0.149914711713791,-0.0273417327553034,0.988320767879486,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.014423088170588,-0.474319934844971,0.880234360694885,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.0017994602676481,-0.265932410955429,0.963989973068237,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.014423088170588,-0.474319934844971,0.880234360694885,-0.147401675581932,-0.161986127495766,0.975721836090088,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.126909241080284,-0.310957700014114,0.941912531852722,0.0224286690354347,0.0487700030207634,0.998558104038239,0.0766169726848602,-0.0365135744214058,0.996391773223877,-0.0743235945701599,-0.0860858932137489,0.993511497974396,\r\n-0.147401675581932,-0.161986127495766,0.975721836090088,-0.0199179798364639,-0.0855913087725639,0.996131181716919,0.0224286690354347,0.0487700030207634,0.998558104038239,0.10300724953413,-0.258839339017868,0.960412204265594,-0.0141846183687449,-0.419681042432785,0.907560765743256,-0.0845209807157516,-0.287738591432571,0.953971982002258,0.10300724953413,-0.258839339017868,0.960412204265594,-0.0743235945701599,-0.0860858932137489,0.993511497974396,0.0766169726848602,-0.0365135744214058,0.996391773223877,-0.103896856307983,-0.193920880556107,0.975499868392944,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.0141846183687449,-0.419681042432785,0.907560765743256,0.0752870813012123,-0.354339361190796,0.932081162929535,-0.100644998252392,-0.37034347653389,0.92342621088028,-0.257654935121536,0.0282595325261354,0.965823590755463,-0.0538215078413486,-0.0231157429516315,0.998282968997955,-0.215213358402252,-0.075236476957798,0.973664402961731,-0.0538215078413486,-0.0231157429516315,0.998282968997955,0.0837384909391403,-0.00583482254296541,0.996470630168915,0.00129990337882191,-0.127854317426682,0.99179208278656,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.227460741996765,0.201054602861404,0.952805638313293,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.257654935121536,0.0282595325261354,0.965823590755463,0.120045907795429,0.240620285272598,0.963167071342468,0.038891214877367,0.214674293994904,0.975911021232605,-0.0359027944505215,0.204282462596893,0.978253364562988,0.0518649704754353,0.326932609081268,0.94362336397171,0.120045907795429,0.240620285272598,0.963167071342468,-0.0359027944505215,0.204282462596893,0.978253364562988,-0.0605320520699024,0.450463026762009,0.890740573406219,\r\n-0.193079262971878,0.575070261955261,0.794993340969086,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0605320520699024,0.450463026762009,0.890740573406219,-0.0344541184604168,0.24917733669281,0.967844724655151,0.00970063079148531,0.336856424808502,0.941506028175354,0.00970063079148531,0.336856424808502,0.941506028175354,0.0450653433799744,0.253192096948624,0.96636575460434,-0.15862087905407,0.271374106407166,0.949313163757324,-0.15862087905407,0.271374106407166,0.949313163757324,-0.0396667383611202,0.127929106354713,0.990989685058594,-0.113042682409287,0.257388353347778,0.95967310667038,-0.113042682409287,0.257388353347778,0.95967310667038,-0.0396667383611202,0.127929106354713,0.990989685058594,0.038891214877367,0.214674293994904,0.975911021232605,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.156987547874451,0.114630095660686,0.980925440788269,-0.173235356807709,0.141144588589668,0.97471410036087,-0.168193697929382,0.158832713961601,0.972873568534851,-0.156987547874451,0.114630095660686,0.980925440788269,-0.0585360042750835,0.137408122420311,0.988783299922943,-0.168193697929382,0.158832713961601,0.972873568534851,-0.0585360042750835,0.137408122420311,0.988783299922943,-0.0392148867249489,0.246009230613709,0.968473851680756,-0.0392148867249489,0.246009230613709,0.968473851680756,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0776444748044014,0.231598868966103,0.969707787036896,-0.0880128666758537,0.15910068154335,0.983331382274628,-0.0415970534086227,0.102985605597496,0.993812620639801,0.0540977194905281,0.136341333389282,0.989183664321899,-0.0415970534086227,0.102985605597496,0.993812620639801,0.0837384909391403,-0.00583482254296541,0.996470630168915,0.168660268187523,0.117426283657551,0.978654563426971,-0.233316957950592,0.848070442676544,0.475751638412476,-0.229820966720581,0.784670174121857,0.575738549232483,-0.190941512584686,0.839529097080231,0.508657097816467,-0.128584966063499,0.888906896114349,0.439670771360397,-0.23705767095089,0.891262173652649,0.386594504117966,-0.190941512584686,0.839529097080231,0.508657097816467,\r\n-0.222803950309753,0.876215934753418,0.427321761846542,-0.195545688271523,0.841771006584167,0.503173232078552,-0.186557188630104,0.922202229499817,0.338731974363327,-0.23705767095089,0.891262173652649,0.386594504117966,-0.128584966063499,0.888906896114349,0.439670771360397,-0.186557188630104,0.922202229499817,0.338731974363327,-0.162590056657791,0.613435029983521,0.7728271484375,-0.195545688271523,0.841771006584167,0.503173232078552,-0.170713424682617,0.476669132709503,0.862347602844238,-0.193079262971878,0.575070261955261,0.794993340969086,-0.162590056657791,0.613435029983521,0.7728271484375,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.11361825466156,0.538382291793823,0.83500611782074,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0332843475043774,0.381644368171692,0.923709690570831,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.143906101584435,0.773058950901031,0.617795050144196,-0.239367216825485,0.706599116325378,0.665898561477661,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.143056958913803,0.655778586864471,0.741275310516357,-0.143906101584435,0.773058950901031,0.617795050144196,-0.190941512584686,0.839529097080231,0.508657097816467,-0.229820966720581,0.784670174121857,0.575738549232483,-0.0466550178825855,0.308889776468277,0.949952781200409,0.0518649704754353,0.326932609081268,0.94362336397171,-0.0359027944505215,0.204282462596893,0.978253364562988,0.0305317845195532,0.743206381797791,0.668365061283112,-0.0313311591744423,0.687329888343811,0.725669324398041,-0.082286424934864,0.736061215400696,0.671894729137421,-0.0833474770188332,0.796281099319458,0.599157273769379,-0.082286424934864,0.736061215400696,0.671894729137421,-0.213507503271103,0.741544723510742,0.636023461818695,-0.406545013189316,0.632723748683929,0.659076333045959,-0.312861323356628,0.624599695205688,0.715536832809448,\r\n-0.309366345405579,0.696086883544922,0.647885262966156,-0.312861323356628,0.624599695205688,0.715536832809448,-0.256236463785172,0.600708603858948,0.757292449474335,-0.309366345405579,0.696086883544922,0.647885262966156,-0.331635117530823,0.770946443080902,0.543745815753937,-0.327628135681152,0.788933873176575,0.519849002361298,-0.361485421657562,0.708280920982361,0.606354892253876,-0.327628135681152,0.788933873176575,0.519849002361298,-0.286925762891769,0.801416993141174,0.524789810180664,-0.312922924757004,0.702220797538757,0.639503717422485,-0.361485421657562,0.708280920982361,0.606354892253876,-0.406545013189316,0.632723748683929,0.659076333045959,-0.309366345405579,0.696086883544922,0.647885262966156,-0.286925762891769,0.801416993141174,0.524789810180664,-0.195249542593956,0.844354391098022,0.498942047357559,-0.213507503271103,0.741544723510742,0.636023461818695,-0.0656129196286201,0.281799733638763,0.957227110862732,-0.0466550178825855,0.308889776468277,0.949952781200409,-0.0359027944505215,0.204282462596893,0.978253364562988,-0.0204369947314262,0.348831683397293,0.936962485313416,-0.0656129196286201,0.281799733638763,0.957227110862732,0.0284648351371288,0.258694231510162,0.965539693832397,-0.201051980257034,0.378958731889725,0.90330958366394,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.229722335934639,0.297050803899765,0.92681622505188,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.21654962003231,0.233944416046143,0.947827100753784,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.0204369947314262,0.348831683397293,0.936962485313416,0.0284648351371288,0.258694231510162,0.965539693832397,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.199882343411446,0.524718165397644,0.827476739883423,-0.228288352489471,0.479163199663162,0.847518086433411,-0.275321006774902,0.508504211902618,0.815856397151947,-0.201051980257034,0.378958731889725,0.90330958366394,-0.198294073343277,0.3648941218853,0.909687638282776,-0.228288352489471,0.479163199663162,0.847518086433411,-0.226706236600876,0.547712683677673,0.805366337299347,\r\n-0.275321006774902,0.508504211902618,0.815856397151947,-0.311139583587646,0.542808830738068,0.780096471309662,-0.256236463785172,0.600708603858948,0.757292449474335,-0.226706236600876,0.547712683677673,0.805366337299347,-0.311139583587646,0.542808830738068,0.780096471309662,0.0947011783719063,0.635367810726166,0.766380608081818,0.053541149944067,0.668681204319,0.741618931293488,0.0302358791232109,0.544053196907043,0.838505685329437,0.0947011783719063,0.635367810726166,0.766380608081818,0.098351426422596,0.693352997303009,0.713854670524597,0.205336511135101,0.733333945274353,0.648118913173676,0.098351426422596,0.693352997303009,0.713854670524597,0.0305317845195532,0.743206381797791,0.668365061283112,0.149500042200089,0.802258729934692,0.577953815460205,-0.197519242763519,0.745759308338165,0.636261761188507,-0.152619794011116,0.720435202121735,0.676520526409149,-0.180644050240517,0.714027404785156,0.676411509513855,-0.054279338568449,0.763355195522308,0.643694400787354,-0.227212265133858,0.758272290229797,0.61106264591217,-0.130473122000694,0.682144403457642,0.719482898712158,-0.227212265133858,0.758272290229797,0.61106264591217,-0.197519242763519,0.745759308338165,0.636261761188507,-0.180644050240517,0.714027404785156,0.676411509513855,0.143511161208153,0.761146903038025,0.632502794265747,-0.054279338568449,0.763355195522308,0.643694400787354,0.053541149944067,0.668681204319,0.741618931293488,0.257043153047562,0.657340228557587,0.708401381969452,0.46461895108223,0.565212249755859,0.681662797927856,0.0799226388335228,0.720150113105774,0.689199566841125,-0.197519242763519,0.745759308338165,0.636261761188507,-0.136140897870064,0.757287979125977,0.638733446598053,-0.135149076581001,0.732500374317169,0.667216420173645,-0.0242114067077637,0.713628351688385,0.700105845928192,0.257043153047562,0.657340228557587,0.708401381969452,0.0799226388335228,0.720150113105774,0.689199566841125,-0.136140897870064,0.757287979125977,0.638733446598053,-0.0242114067077637,0.713628351688385,0.700105845928192,-0.135149076581001,0.732500374317169,0.667216420173645,\r\n0.73720794916153,0.22472882270813,0.637197971343994,0.434510976076126,0.465211719274521,0.771218597888947,0.46461895108223,0.565212249755859,0.681662797927856,0.527648866176605,0.247794568538666,0.812517285346985,0.387563794851303,0.3086818754673,0.868625164031982,0.272372096776962,0.544255435466766,0.7934730052948,0.527648866176605,0.247794568538666,0.812517285346985,0.434510976076126,0.465211719274521,0.771218597888947,0.73720794916153,0.22472882270813,0.637197971343994,0.221606194972992,0.456430673599243,0.861720144748688,0.161560669541359,0.575781643390656,0.801482081413269,0.387563794851303,0.3086818754673,0.868625164031982,0.154901206493378,0.443378955125809,0.882848024368286,0.272845298051834,0.314617305994034,0.909159660339355,0.0479695051908493,0.530550599098206,0.846294760704041,0.154901206493378,0.443378955125809,0.882848024368286,0.100870192050934,0.508322656154633,0.855238616466522,0.320148795843124,0.283552080392838,0.90393739938736,0.100870192050934,0.508322656154633,0.855238616466522,0.221606194972992,0.456430673599243,0.861720144748688,0.320148795843124,0.283552080392838,0.90393739938736,0.116993464529514,0.410933405160904,0.904127299785614,0.0479695051908493,0.530550599098206,0.846294760704041,0.272845298051834,0.314617305994034,0.909159660339355,0.0605771765112877,0.29670387506485,0.953046202659607,-0.00741205317899585,0.571354806423187,0.820669651031494,0.116993464529514,0.410933405160904,0.904127299785614,0.0837863832712173,0.436996281147003,0.895552337169647,0.00675608450546861,0.489828318357468,0.871792674064636,0.0887652933597565,0.181576564908028,0.979362308979034,0.0605771765112877,0.29670387506485,0.953046202659607,0.0887652933597565,0.181576564908028,0.979362308979034,0.00675608450546861,0.489828318357468,0.871792674064636,-0.0187679436057806,0.383020609617233,0.923549056053162,-0.10029511898756,0.408503502607346,0.907229661941528,-0.194861397147179,0.430331200361252,0.881387531757355,0.192061573266983,0.325655460357666,0.925775766372681,0.0471741370856762,0.445571511983871,0.894002497196198,\r\n0.0837863832712173,0.436996281147003,0.895552337169647,-0.0615903437137604,0.515091001987457,0.854919791221619,0.0471741370856762,0.445571511983871,0.894002497196198,-0.0187679436057806,0.383020609617233,0.923549056053162,-0.18752783536911,0.396434545516968,0.898706257343292,-0.193161398172379,0.399019032716751,0.89636617898941,-0.194861397147179,0.430331200361252,0.881387531757355,-0.258470416069031,0.407200694084167,0.876002550125122,-0.193161398172379,0.399019032716751,0.89636617898941,-0.170063838362694,0.292211562395096,0.941111385822296,0.166385605931282,-0.584491968154907,0.794156670570374,0.288958251476288,-0.482811003923416,0.826677978038788,0.11159535497427,-0.514164924621582,0.850400328636169,0.11159535497427,-0.514164924621582,0.850400328636169,-0.0629183501005173,-0.489520907402039,0.869718611240387,-0.0232259891927242,-0.607206404209137,0.794204533100128,0.381415337324142,-0.542632520198822,0.748379588127136,0.287063628435135,-0.53775417804718,0.792726159095764,0.341270416975021,-0.645865440368652,0.68292909860611,0.362351417541504,-0.475482046604156,0.801634669303894,0.290923655033112,-0.451200276613235,0.843671560287476,0.287063628435135,-0.53775417804718,0.792726159095764,0.290923655033112,-0.451200276613235,0.843671560287476,0.288958251476288,-0.482811003923416,0.826677978038788,0.166385605931282,-0.584491968154907,0.794156670570374,0.146812319755554,0.0130253145471215,0.98907858133316,0.12624055147171,-0.043350987136364,0.991051912307739,0.185575127601624,-0.0918116569519043,0.978331446647644,0.101697213947773,0.086746908724308,0.991026043891907,0.106777712702751,0.154336988925934,0.982231378555298,0.1105095744133,0.0975717902183533,0.989073932170868,0.146812319755554,0.0130253145471215,0.98907858133316,0.101697213947773,0.086746908724308,0.991026043891907,0.12624055147171,-0.043350987136364,0.991051912307739,0.185575127601624,-0.0918116569519043,0.978331446647644,0.184904679656029,-0.110358953475952,0.976540386676788,0.319532662630081,-0.232398837804794,0.918634593486786,0.265449792146683,-0.292839854955673,0.918575584888458,\r\n0.390424907207489,-0.598195791244507,0.699807167053223,0.268917500972748,-0.442458868026733,0.855519354343414,0.447318464517593,-0.638982057571411,0.625785887241364,0.329152077436447,-0.680687785148621,0.654463827610016,0.390424907207489,-0.598195791244507,0.699807167053223,0.341270416975021,-0.645865440368652,0.68292909860611,0.329152077436447,-0.680687785148621,0.654463827610016,0.447318464517593,-0.638982057571411,0.625785887241364,0.265449792146683,-0.292839854955673,0.918575584888458,0.159363210201263,0.0132382707670331,0.987131237983704,0.350747585296631,-0.343234419822693,0.871301412582397,0.159363210201263,0.0132382707670331,0.987131237983704,0.106777712702751,0.154336988925934,0.982231378555298,0.293739974498749,-0.161486059427261,0.942145943641663,-0.0125361997634172,-0.505977094173431,0.862455725669861,-0.0629183501005173,-0.489520907402039,0.869718611240387,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.196881100535393,-0.464235693216324,0.863552510738373,-0.0125361997634172,-0.505977094173431,0.862455725669861,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.240957483649254,-0.266357153654099,0.933270156383514,0.232502058148384,-0.433547616004944,0.870620012283325,0.196881100535393,-0.464235693216324,0.863552510738373,0.240957483649254,-0.266357153654099,0.933270156383514,0.257212817668915,-0.178263276815414,0.949770331382751,0.232502058148384,-0.433547616004944,0.870620012283325,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.227341488003731,-0.042752493172884,0.972876131534576,0.276267230510712,-0.108231507241726,0.954967141151428,0.123140119016171,0.0137670915573835,0.992293775081635,0.257212817668915,-0.178263276815414,0.949770331382751,-0.131743982434273,0.0294429548084736,0.990846395492554,0.123140119016171,0.0137670915573835,0.992293775081635,0.02005510404706,0.079396940767765,0.996641278266907,0.00566980335861444,-0.174700856208801,0.984605193138123,-0.149914711713791,-0.0273417327553034,0.988320767879486,\r\n0.02005510404706,0.079396940767765,0.996641278266907,0.00566980335861444,-0.174700856208801,0.984605193138123,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.149914711713791,-0.0273417327553034,0.988320767879486,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.221592351794243,-0.356437683105469,0.907661199569702,-0.126909241080284,-0.310957700014114,0.941912531852722,-0.260012865066528,-0.431379169225693,0.863889575004578,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.147401675581932,-0.161986127495766,0.975721836090088,-0.126909241080284,-0.310957700014114,0.941912531852722,-0.0199179798364639,-0.0855913087725639,0.996131181716919,0.0224286690354347,0.0487700030207634,0.998558104038239,0.161756560206413,0.0369205363094807,0.986139714717865,0.0766169726848602,-0.0365135744214058,0.996391773223877,0.107151426374912,-0.0107422303408384,0.994184672832489,0.0224286690354347,0.0487700030207634,0.998558104038239,-0.0199179798364639,-0.0855913087725639,0.996131181716919,0.10300724953413,-0.258839339017868,0.960412204265594,0.150016576051712,-0.375462591648102,0.914616227149963,-0.0141846183687449,-0.419681042432785,0.907560765743256,0.10300724953413,-0.258839339017868,0.960412204265594,0.0766169726848602,-0.0365135744214058,0.996391773223877,0.187596142292023,-0.135644391179085,0.972835123538971,-0.103896856307983,-0.193920880556107,0.975499868392944,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.250228494405746,-0.165925443172455,0.953862845897675,-0.103896856307983,-0.193920880556107,0.975499868392944,-0.100644998252392,-0.37034347653389,0.92342621088028,0.0752870813012123,-0.354339361190796,0.932081162929535,0.150016576051712,-0.375462591648102,0.914616227149963,0.0752870813012123,-0.354339361190796,0.932081162929535,-0.0141846183687449,-0.419681042432785,0.907560765743256,-0.257654935121536,0.0282595325261354,0.965823590755463,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.0538215078413486,-0.0231157429516315,0.998282968997955,\r\n0.136438995599747,0.0785231664776802,0.98753148317337,0.0837384909391403,-0.00583482254296541,0.996470630168915,-0.0538215078413486,-0.0231157429516315,0.998282968997955,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.18891566991806,0.177170291543007,0.96587860584259,-0.227460741996765,0.201054602861404,0.952805638313293,-0.262798398733139,0.0461656488478184,0.963745594024658,-0.227460741996765,0.201054602861404,0.952805638313293,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.0359027944505215,0.204282462596893,0.978253364562988,0.038891214877367,0.214674293994904,0.975911021232605,-0.0396667383611202,0.127929106354713,0.990989685058594,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.0605320520699024,0.450463026762009,0.890740573406219,-0.0972970277070999,0.216253533959389,0.971477031707764,0.00970063079148531,0.336856424808502,0.941506028175354,-0.0344541184604168,0.24917733669281,0.967844724655151,0.0450653433799744,0.253192096948624,0.96636575460434,-0.15862087905407,0.271374106407166,0.949313163757324,0.0450653433799744,0.253192096948624,0.96636575460434,-0.0396667383611202,0.127929106354713,0.990989685058594,0.0306681673973799,0.0857032313942909,0.995848536491394,-0.156987547874451,0.114630095660686,0.980925440788269,-0.0880128666758537,0.15910068154335,0.983331382274628,0.0306681673973799,0.0857032313942909,0.995848536491394,-0.0585360042750835,0.137408122420311,0.988783299922943,-0.156987547874451,0.114630095660686,0.980925440788269,-0.0585360042750835,0.137408122420311,0.988783299922943,0.0445712506771088,0.0955776274204254,0.994423568248749,-0.0392148867249489,0.246009230613709,0.968473851680756,0.050901360809803,0.33620896935463,0.940410792827606,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0392148867249489,0.246009230613709,0.968473851680756,0.0540977194905281,0.136341333389282,0.989183664321899,\r\n-0.0415970534086227,0.102985605597496,0.993812620639801,0.168660268187523,0.117426283657551,0.978654563426971,0.0306681673973799,0.0857032313942909,0.995848536491394,-0.0880128666758537,0.15910068154335,0.983331382274628,0.0540977194905281,0.136341333389282,0.989183664321899,0.168660268187523,0.117426283657551,0.978654563426971,0.0837384909391403,-0.00583482254296541,0.996470630168915,0.136438995599747,0.0785231664776802,0.98753148317337,-0.128584966063499,0.888906896114349,0.439670771360397,-0.190941512584686,0.839529097080231,0.508657097816467,-0.0648908540606499,0.826115667819977,0.559751629829407,-0.195545688271523,0.841771006584167,0.503173232078552,-0.222803950309753,0.876215934753418,0.427321761846542,-0.233824923634529,0.774148166179657,0.588234961032867,-0.0366731323301792,0.93647027015686,0.348824322223663,-0.222803950309753,0.876215934753418,0.427321761846542,-0.186557188630104,0.922202229499817,0.338731974363327,-0.128584966063499,0.888906896114349,0.439670771360397,-0.0765166059136391,0.923467397689819,0.375969499349594,-0.186557188630104,0.922202229499817,0.338731974363327,-0.107926897704601,0.538069605827332,0.835962176322937,-0.170713424682617,0.476669132709503,0.862347602844238,-0.195545688271523,0.841771006584167,0.503173232078552,-0.162590056657791,0.613435029983521,0.7728271484375,-0.170713424682617,0.476669132709503,0.862347602844238,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0249356366693974,0.473632723093033,0.880369305610657,-0.143906101584435,0.773058950901031,0.617795050144196,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0473899021744728,0.611922860145569,0.789496302604675,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0793817266821861,0.702696621417999,0.7070472240448,\r\n-0.0648908540606499,0.826115667819977,0.559751629829407,-0.190941512584686,0.839529097080231,0.508657097816467,-0.143906101584435,0.773058950901031,0.617795050144196,-0.0833474770188332,0.796281099319458,0.599157273769379,0.0305317845195532,0.743206381797791,0.668365061283112,-0.082286424934864,0.736061215400696,0.671894729137421,-0.0833474770188332,0.796281099319458,0.599157273769379,-0.213507503271103,0.741544723510742,0.636023461818695,-0.195249542593956,0.844354391098022,0.498942047357559,-0.256236463785172,0.600708603858948,0.757292449474335,-0.302320837974548,0.651773393154144,0.695552587509155,-0.309366345405579,0.696086883544922,0.647885262966156,-0.331635117530823,0.770946443080902,0.543745815753937,-0.317676484584808,0.823823094367981,0.469464600086212,-0.327628135681152,0.788933873176575,0.519849002361298,-0.361485421657562,0.708280920982361,0.606354892253876,-0.309366345405579,0.696086883544922,0.647885262966156,-0.331635117530823,0.770946443080902,0.543745815753937,-0.286925762891769,0.801416993141174,0.524789810180664,-0.327628135681152,0.788933873176575,0.519849002361298,-0.280360400676727,0.86076819896698,0.424824714660645,-0.195249542593956,0.844354391098022,0.498942047357559,-0.286925762891769,0.801416993141174,0.524789810180664,-0.280360400676727,0.86076819896698,0.424824714660645,0.0284648351371288,0.258694231510162,0.965539693832397,-0.0656129196286201,0.281799733638763,0.957227110862732,-0.0359027944505215,0.204282462596893,0.978253364562988,-0.229722335934639,0.297050803899765,0.92681622505188,-0.0945578441023827,0.320887386798859,0.942385256290436,-0.21654962003231,0.233944416046143,0.947827100753784,-0.201051980257034,0.378958731889725,0.90330958366394,-0.229722335934639,0.297050803899765,0.92681622505188,-0.198294073343277,0.3648941218853,0.909687638282776,-0.209809094667435,0.19437862932682,0.958225965499878,-0.21654962003231,0.233944416046143,0.947827100753784,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.000610767514444888,0.304598033428192,0.952480733394623,0.0284648351371288,0.258694231510162,0.965539693832397,\r\n0.0450653433799744,0.253192096948624,0.96636575460434,-0.239671558141708,0.494082391262054,0.835727214813232,-0.275321006774902,0.508504211902618,0.815856397151947,-0.228288352489471,0.479163199663162,0.847518086433411,-0.198294073343277,0.3648941218853,0.909687638282776,-0.179466485977173,0.445418149232864,0.877151250839233,-0.228288352489471,0.479163199663162,0.847518086433411,-0.262550711631775,0.515943586826324,0.81539511680603,-0.311139583587646,0.542808830738068,0.780096471309662,-0.275321006774902,0.508504211902618,0.815856397151947,-0.311139583587646,0.542808830738068,0.780096471309662,-0.302320837974548,0.651773393154144,0.695552587509155,-0.256236463785172,0.600708603858948,0.757292449474335,0.0947011783719063,0.635367810726166,0.766380608081818,0.205336511135101,0.733333945274353,0.648118913173676,0.053541149944067,0.668681204319,0.741618931293488,0.098351426422596,0.693352997303009,0.713854670524597,0.149500042200089,0.802258729934692,0.577953815460205,0.205336511135101,0.733333945274353,0.648118913173676,0.0352721326053143,0.819829642772675,0.57151997089386,0.149500042200089,0.802258729934692,0.577953815460205,0.0305317845195532,0.743206381797791,0.668365061283112,-0.054279338568449,0.763355195522308,0.643694400787354,-0.136804059147835,0.836160004138947,0.531150579452515,-0.227212265133858,0.758272290229797,0.61106264591217,-0.197519242763519,0.745759308338165,0.636261761188507,-0.227212265133858,0.758272290229797,0.61106264591217,-0.208728075027466,0.782859742641449,0.586142539978027,0.143511161208153,0.761146903038025,0.632502794265747,0.0841712802648544,0.833515524864197,0.546046614646912,-0.054279338568449,0.763355195522308,0.643694400787354,0.053541149944067,0.668681204319,0.741618931293488,0.205336511135101,0.733333945274353,0.648118913173676,0.143511161208153,0.761146903038025,0.632502794265747,0.257043153047562,0.657340228557587,0.708401381969452,0.625897467136383,0.433305025100708,0.648458898067474,0.46461895108223,0.565212249755859,0.681662797927856,-0.136140897870064,0.757287979125977,0.638733446598053,\r\n-0.197519242763519,0.745759308338165,0.636261761188507,-0.208728075027466,0.782859742641449,0.586142539978027,0.310053110122681,0.563990592956543,0.76536363363266,0.257043153047562,0.657340228557587,0.708401381969452,-0.0242114067077637,0.713628351688385,0.700105845928192,0.103447236120701,0.704618215560913,0.702005445957184,-0.0242114067077637,0.713628351688385,0.700105845928192,-0.136140897870064,0.757287979125977,0.638733446598053,0.73720794916153,0.22472882270813,0.637197971343994,0.46461895108223,0.565212249755859,0.681662797927856,0.625897467136383,0.433305025100708,0.648458898067474,0.527648866176605,0.247794568538666,0.812517285346985,0.655100345611572,-0.0740783363580704,0.75190144777298,0.387563794851303,0.3086818754673,0.868625164031982,0.73720794916153,0.22472882270813,0.637197971343994,0.755359947681427,-0.0326073989272118,0.654498338699341,0.527648866176605,0.247794568538666,0.812517285346985,0.221606194972992,0.456430673599243,0.861720144748688,0.387563794851303,0.3086818754673,0.868625164031982,0.486402809619904,0.0946260988712311,0.868595480918884,0.272845298051834,0.314617305994034,0.909159660339355,0.154901206493378,0.443378955125809,0.882848024368286,0.377433091402054,0.173426494002342,0.909652352333069,0.154901206493378,0.443378955125809,0.882848024368286,0.320148795843124,0.283552080392838,0.90393739938736,0.377433091402054,0.173426494002342,0.909652352333069,0.486402809619904,0.0946260988712311,0.868595480918884,0.320148795843124,0.283552080392838,0.90393739938736,0.221606194972992,0.456430673599243,0.861720144748688,0.359223783016205,0.0969588831067085,0.928201019763947,0.116993464529514,0.410933405160904,0.904127299785614,0.272845298051834,0.314617305994034,0.909159660339355,0.249607965350151,-0.047825314104557,0.967165172100067,0.0605771765112877,0.29670387506485,0.953046202659607,0.116993464529514,0.410933405160904,0.904127299785614,0.206829100847244,0.042377058416605,0.977458834648132,0.0837863832712173,0.436996281147003,0.895552337169647,0.0887652933597565,0.181576564908028,0.979362308979034,\r\n0.0605771765112877,0.29670387506485,0.953046202659607,0.1746576577425,-0.194435954093933,0.965240478515625,0.0887652933597565,0.181576564908028,0.979362308979034,-0.10029511898756,0.408503502607346,0.907229661941528,-0.0187679436057806,0.383020609617233,0.923549056053162,-0.0353925339877605,0.398872494697571,0.916323065757751,-0.194861397147179,0.430331200361252,0.881387531757355,-0.10029511898756,0.408503502607346,0.907229661941528,-0.204336926341057,0.415452033281326,0.886366665363312,0.0954413041472435,0.384494304656982,0.918180286884308,0.0471741370856762,0.445571511983871,0.894002497196198,0.192061573266983,0.325655460357666,0.925775766372681,0.192061573266983,0.325655460357666,0.925775766372681,0.0837863832712173,0.436996281147003,0.895552337169647,0.29939004778862,0.0987574085593224,0.949006080627441,0.0991846397519112,0.302877336740494,0.947854220867157,-0.0187679436057806,0.383020609617233,0.923549056053162,0.0471741370856762,0.445571511983871,0.894002497196198,-0.193161398172379,0.399019032716751,0.89636617898941,-0.18752783536911,0.396434545516968,0.898706257343292,-0.170063838362694,0.292211562395096,0.941111385822296,-0.193165183067322,0.399012953042984,0.896368086338043,-0.18752783536911,0.396434545516968,0.898706257343292,-0.194861397147179,0.430331200361252,0.881387531757355,0.294784754514694,-0.340628653764725,0.892789959907532,0.11159535497427,-0.514164924621582,0.850400328636169,0.288958251476288,-0.482811003923416,0.826677978038788,0.0616459362208843,-0.316750884056091,0.946503341197968,-0.0629183501005173,-0.489520907402039,0.869718611240387,0.11159535497427,-0.514164924621582,0.850400328636169,0.381415337324142,-0.542632520198822,0.748379588127136,0.362351417541504,-0.475482046604156,0.801634669303894,0.287063628435135,-0.53775417804718,0.792726159095764,0.381415337324142,-0.542632520198822,0.748379588127136,0.341270416975021,-0.645865440368652,0.68292909860611,0.470308512449265,-0.547529280185699,0.692113757133484,0.224455267190933,-0.357591331005096,0.906503260135651,0.290923655033112,-0.451200276613235,0.843671560287476,\r\n0.362351417541504,-0.475482046604156,0.801634669303894,0.290923655033112,-0.451200276613235,0.843671560287476,0.294938921928406,-0.334873199462891,0.894913852214813,0.288958251476288,-0.482811003923416,0.826677978038788,0.185575127601624,-0.0918116569519043,0.978331446647644,0.240496903657913,-0.0552168302237988,0.969078063964844,0.146812319755554,0.0130253145471215,0.98907858133316,0.106777712702751,0.154336988925934,0.982231378555298,0.101697213947773,0.086746908724308,0.991026043891907,0.0984918177127838,0.19842541217804,0.97515469789505,0.0984918177127838,0.19842541217804,0.97515469789505,0.101697213947773,0.086746908724308,0.991026043891907,0.146812319755554,0.0130253145471215,0.98907858133316,0.319532662630081,-0.232398837804794,0.918634593486786,0.240496903657913,-0.0552168302237988,0.969078063964844,0.185575127601624,-0.0918116569519043,0.978331446647644,0.265449792146683,-0.292839854955673,0.918575584888458,0.350747585296631,-0.343234419822693,0.871301412582397,0.390424907207489,-0.598195791244507,0.699807167053223,0.390424907207489,-0.598195791244507,0.699807167053223,0.476447969675064,-0.535488128662109,0.697315990924835,0.447318464517593,-0.638982057571411,0.625785887241364,0.341270416975021,-0.645865440368652,0.68292909860611,0.447318464517593,-0.638982057571411,0.625785887241364,0.470308512449265,-0.547529280185699,0.692113757133484,0.293739974498749,-0.161486059427261,0.942145943641663,0.350747585296631,-0.343234419822693,0.871301412582397,0.159363210201263,0.0132382707670331,0.987131237983704,0.293739974498749,-0.161486059427261,0.942145943641663,0.106777712702751,0.154336988925934,0.982231378555298,0.204431846737862,0.0182346776127815,0.978710889816284,0.0616459362208843,-0.316750884056091,0.946503341197968,-0.0321397967636585,-0.379517823457718,0.924625992774963,-0.0629183501005173,-0.489520907402039,0.869718611240387,0.196881100535393,-0.464235693216324,0.863552510738373,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.240957483649254,-0.266357153654099,0.933270156383514,0.240957483649254,-0.266357153654099,0.933270156383514,\r\n0.357314199209213,-0.150065764784813,0.92184966802597,0.257212817668915,-0.178263276815414,0.949770331382751,0.276267230510712,-0.108231507241726,0.954967141151428,0.02005510404706,0.079396940767765,0.996641278266907,0.123140119016171,0.0137670915573835,0.992293775081635,0.357314199209213,-0.150065764784813,0.92184966802597,0.276267230510712,-0.108231507241726,0.954967141151428,0.257212817668915,-0.178263276815414,0.949770331382751,0.00566980335861444,-0.174700856208801,0.984605193138123,0.02005510404706,0.079396940767765,0.996641278266907,0.276267230510712,-0.108231507241726,0.954967141151428,0.00566980335861444,-0.174700856208801,0.984605193138123,-0.0363474227488041,-0.441734462976456,0.896409153938293,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.260012865066528,-0.431379169225693,0.863889575004578,0.0314857624471188,-0.434105068445206,0.900311827659607,-0.126909241080284,-0.310957700014114,0.941912531852722,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.0199179798364639,-0.0855913087725639,0.996131181716919,-0.126909241080284,-0.310957700014114,0.941912531852722,0.0333672314882278,-0.220617383718491,0.974789440631866,0.161756560206413,0.0369205363094807,0.986139714717865,0.0224286690354347,0.0487700030207634,0.998558104038239,0.0921158045530319,0.150636166334152,0.984288215637207,0.161756560206413,0.0369205363094807,0.986139714717865,0.187596142292023,-0.135644391179085,0.972835123538971,0.0766169726848602,-0.0365135744214058,0.996391773223877,0.107151426374912,-0.0107422303408384,0.994184672832489,0.0995567888021469,0.158068910241127,0.982396364212036,0.0224286690354347,0.0487700030207634,0.998558104038239,0.0333672314882278,-0.220617383718491,0.974789440631866,0.107151426374912,-0.0107422303408384,0.994184672832489,-0.0199179798364639,-0.0855913087725639,0.996131181716919,0.10300724953413,-0.258839339017868,0.960412204265594,0.245437145233154,-0.359061539173126,0.900463938713074,\r\n0.150016576051712,-0.375462591648102,0.914616227149963,0.278270453214645,-0.291475147008896,0.915209054946899,0.10300724953413,-0.258839339017868,0.960412204265594,0.187596142292023,-0.135644391179085,0.972835123538971,-0.103896856307983,-0.193920880556107,0.975499868392944,-0.0561226084828377,-0.0295643620193005,0.997986018657684,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.103896856307983,-0.193920880556107,0.975499868392944,0.0752870813012123,-0.354339361190796,0.932081162929535,0.023940509185195,-0.175576597452164,0.98417454957962,0.245437145233154,-0.359061539173126,0.900463938713074,0.0752870813012123,-0.354339361190796,0.932081162929535,0.150016576051712,-0.375462591648102,0.914616227149963,-0.075280137360096,0.0645792633295059,0.995069026947021,0.136438995599747,0.0785231664776802,0.98753148317337,-0.0538215078413486,-0.0231157429516315,0.998282968997955,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.18891566991806,0.177170291543007,0.96587860584259,-0.335730224847794,0.0672629848122597,0.939553499221802,-0.0962034314870834,0.249013096094131,0.963710129261017,-0.227460741996765,0.201054602861404,0.952805638313293,-0.18891566991806,0.177170291543007,0.96587860584259,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.227460741996765,0.201054602861404,0.952805638313293,-0.011087330058217,0.169858664274216,0.985406041145325,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.214518412947655,-0.0220794342458248,0.976470291614532,-0.0561226084828377,-0.0295643620193005,0.997986018657684,-0.0359027944505215,0.204282462596893,0.978253364562988,-0.0396667383611202,0.127929106354713,0.990989685058594,0.0284648351371288,0.258694231510162,0.965539693832397,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.186030298471451,0.122593089938164,0.974865913391113,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.000610767514444888,0.304598033428192,0.952480733394623,0.0450653433799744,0.253192096948624,0.96636575460434,\r\n0.0450653433799744,0.253192096948624,0.96636575460434,0.0284648351371288,0.258694231510162,0.965539693832397,-0.0396667383611202,0.127929106354713,0.990989685058594,0.0306681673973799,0.0857032313942909,0.995848536491394,0.0445712506771088,0.0955776274204254,0.994423568248749,-0.0585360042750835,0.137408122420311,0.988783299922943,-0.0392148867249489,0.246009230613709,0.968473851680756,0.0445712506771088,0.0955776274204254,0.994423568248749,0.0760542303323746,0.1807921230793,0.980576276779175,0.050901360809803,0.33620896935463,0.940410792827606,-0.0249356366693974,0.473632723093033,0.880369305610657,-0.0593701042234898,0.381881505250931,0.922302305698395,-0.0392148867249489,0.246009230613709,0.968473851680756,0.0760542303323746,0.1807921230793,0.980576276779175,0.050901360809803,0.33620896935463,0.940410792827606,0.0540977194905281,0.136341333389282,0.989183664321899,0.168660268187523,0.117426283657551,0.978654563426971,0.17932653427124,0.0778496786952019,0.980704545974731,0.0540977194905281,0.136341333389282,0.989183664321899,0.17932653427124,0.0778496786952019,0.980704545974731,0.0306681673973799,0.0857032313942909,0.995848536491394,0.123144499957561,0.0805843770503998,0.989111483097076,0.168660268187523,0.117426283657551,0.978654563426971,0.136438995599747,0.0785231664776802,0.98753148317337,-0.128584966063499,0.888906896114349,0.439670771360397,-0.0648908540606499,0.826115667819977,0.559751629829407,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.222803950309753,0.876215934753418,0.427321761846542,-0.200093865394592,0.584151804447174,0.786593317985535,-0.233824923634529,0.774148166179657,0.588234961032867,-0.195545688271523,0.841771006584167,0.503173232078552,-0.233824923634529,0.774148166179657,0.588234961032867,-0.107926897704601,0.538069605827332,0.835962176322937,-0.0366731323301792,0.93647027015686,0.348824322223663,0.0369631312787533,0.766337811946869,0.641373455524445,-0.222803950309753,0.876215934753418,0.427321761846542,-0.0366731323301792,0.93647027015686,0.348824322223663,-0.186557188630104,0.922202229499817,0.338731974363327,\r\n-0.0765166059136391,0.923467397689819,0.375969499349594,-0.128584966063499,0.888906896114349,0.439670771360397,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.0765166059136391,0.923467397689819,0.375969499349594,-0.107926897704601,0.538069605827332,0.835962176322937,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.170713424682617,0.476669132709503,0.862347602844238,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.170713424682617,0.476669132709503,0.862347602844238,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0534790754318237,0.504545152187347,0.861727356910706,-0.0249356366693974,0.473632723093033,0.880369305610657,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.0164599251002073,0.673517286777496,0.738988101482391,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.143906101584435,0.773058950901031,0.617795050144196,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0648908540606499,0.826115667819977,0.559751629829407,-0.0793817266821861,0.702696621417999,0.7070472240448,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0164599251002073,0.673517286777496,0.738988101482391,-0.0833474770188332,0.796281099319458,0.599157273769379,0.0352721326053143,0.819829642772675,0.57151997089386,0.0305317845195532,0.743206381797791,0.668365061283112,-0.0833474770188332,0.796281099319458,0.599157273769379,-0.195249542593956,0.844354391098022,0.498942047357559,-0.0578498840332031,0.861983418464661,0.503624677658081,-0.309366345405579,0.696086883544922,0.647885262966156,-0.302320837974548,0.651773393154144,0.695552587509155,-0.302961528301239,0.743799567222595,0.595798909664154,-0.331635117530823,0.770946443080902,0.543745815753937,-0.321463942527771,0.80355167388916,0.500964522361755,-0.317676484584808,0.823823094367981,0.469464600086212,-0.317676484584808,0.823823094367981,0.469464600086212,-0.315922141075134,0.857251405715942,0.40658712387085,-0.327628135681152,0.788933873176575,0.519849002361298,-0.293890386819839,0.76807302236557,0.568939447402954,\r\n-0.331635117530823,0.770946443080902,0.543745815753937,-0.309366345405579,0.696086883544922,0.647885262966156,-0.280360400676727,0.86076819896698,0.424824714660645,-0.327628135681152,0.788933873176575,0.519849002361298,-0.315922141075134,0.857251405715942,0.40658712387085,-0.280360400676727,0.86076819896698,0.424824714660645,-0.0675052776932716,0.898881018161774,0.432961672544479,-0.195249542593956,0.844354391098022,0.498942047357559,-0.229722335934639,0.297050803899765,0.92681622505188,-0.21654962003231,0.233944416046143,0.947827100753784,-0.22087188065052,0.281852751970291,0.933688640594482,-0.198294073343277,0.3648941218853,0.909687638282776,-0.229722335934639,0.297050803899765,0.92681622505188,-0.22087188065052,0.281852751970291,0.933688640594482,-0.209809094667435,0.19437862932682,0.958225965499878,-0.206702321767807,0.180810734629631,0.961551666259766,-0.21654962003231,0.233944416046143,0.947827100753784,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.209809094667435,0.19437862932682,0.958225965499878,-0.000610767514444888,0.304598033428192,0.952480733394623,-0.275321006774902,0.508504211902618,0.815856397151947,-0.239671558141708,0.494082391262054,0.835727214813232,-0.262550711631775,0.515943586826324,0.81539511680603,-0.239671558141708,0.494082391262054,0.835727214813232,-0.228288352489471,0.479163199663162,0.847518086433411,-0.211268708109856,0.494062811136246,0.843366682529449,-0.179466485977173,0.445418149232864,0.877151250839233,-0.198294073343277,0.3648941218853,0.909687638282776,-0.154365971684456,0.352395623922348,0.923032164573669,-0.179466485977173,0.445418149232864,0.877151250839233,-0.211268708109856,0.494062811136246,0.843366682529449,-0.228288352489471,0.479163199663162,0.847518086433411,-0.262550711631775,0.515943586826324,0.81539511680603,-0.283676415681839,0.624607741832733,0.727593779563904,-0.311139583587646,0.542808830738068,0.780096471309662,-0.311139583587646,0.542808830738068,0.780096471309662,-0.283676415681839,0.624607741832733,0.727593779563904,-0.302320837974548,0.651773393154144,0.695552587509155,\r\n0.149500042200089,0.802258729934692,0.577953815460205,0.264530509710312,0.781427919864655,0.565149426460266,0.205336511135101,0.733333945274353,0.648118913173676,0.0311300754547119,0.868121743202209,0.49537405371666,0.149500042200089,0.802258729934692,0.577953815460205,0.0352721326053143,0.819829642772675,0.57151997089386,0.0841712802648544,0.833515524864197,0.546046614646912,-0.136804059147835,0.836160004138947,0.531150579452515,-0.054279338568449,0.763355195522308,0.643694400787354,-0.227212265133858,0.758272290229797,0.61106264591217,-0.136804059147835,0.836160004138947,0.531150579452515,-0.230580165982246,0.827055811882019,0.512651205062866,-0.227212265133858,0.758272290229797,0.61106264591217,-0.230580165982246,0.827055811882019,0.512651205062866,-0.208728075027466,0.782859742641449,0.586142539978027,0.229706928133965,0.790425300598145,0.567857623100281,0.0841712802648544,0.833515524864197,0.546046614646912,0.143511161208153,0.761146903038025,0.632502794265747,0.205336511135101,0.733333945274353,0.648118913173676,0.229706928133965,0.790425300598145,0.567857623100281,0.143511161208153,0.761146903038025,0.632502794265747,0.310053110122681,0.563990592956543,0.76536363363266,0.625897467136383,0.433305025100708,0.648458898067474,0.257043153047562,0.657340228557587,0.708401381969452,-0.136140897870064,0.757287979125977,0.638733446598053,-0.208728075027466,0.782859742641449,0.586142539978027,-0.0594217628240585,0.806098580360413,0.58879029750824,0.103447236120701,0.704618215560913,0.702005445957184,0.310053110122681,0.563990592956543,0.76536363363266,-0.0242114067077637,0.713628351688385,0.700105845928192,0.103447236120701,0.704618215560913,0.702005445957184,-0.136140897870064,0.757287979125977,0.638733446598053,-0.0594217628240585,0.806098580360413,0.58879029750824,0.73720794916153,0.22472882270813,0.637197971343994,0.625897467136383,0.433305025100708,0.648458898067474,0.85932058095932,0.106064178049564,0.500318288803101,0.527648866176605,0.247794568538666,0.812517285346985,0.755359947681427,-0.0326073989272118,0.654498338699341,\r\n0.655100345611572,-0.0740783363580704,0.75190144777298,0.579960405826569,-0.0726286321878433,0.811400532722473,0.387563794851303,0.3086818754673,0.868625164031982,0.655100345611572,-0.0740783363580704,0.75190144777298,0.73720794916153,0.22472882270813,0.637197971343994,0.881500959396362,0.0227612666785717,0.471633195877075,0.755359947681427,-0.0326073989272118,0.654498338699341,0.486402809619904,0.0946260988712311,0.868595480918884,0.387563794851303,0.3086818754673,0.868625164031982,0.579960405826569,-0.0726286321878433,0.811400532722473,0.272845298051834,0.314617305994034,0.909159660339355,0.377433091402054,0.173426494002342,0.909652352333069,0.538105368614197,-0.0783922970294952,0.839224100112915,0.377433091402054,0.173426494002342,0.909652352333069,0.320148795843124,0.283552080392838,0.90393739938736,0.575068295001984,-0.148228332400322,0.804564952850342,0.486402809619904,0.0946260988712311,0.868595480918884,0.575068295001984,-0.148228332400322,0.804564952850342,0.320148795843124,0.283552080392838,0.90393739938736,0.116993464529514,0.410933405160904,0.904127299785614,0.359223783016205,0.0969588831067085,0.928201019763947,0.249607965350151,-0.047825314104557,0.967165172100067,0.359223783016205,0.0969588831067085,0.928201019763947,0.272845298051834,0.314617305994034,0.909159660339355,0.538105368614197,-0.0783922970294952,0.839224100112915,0.0605771765112877,0.29670387506485,0.953046202659607,0.249607965350151,-0.047825314104557,0.967165172100067,0.1746576577425,-0.194435954093933,0.965240478515625,0.206829100847244,0.042377058416605,0.977458834648132,0.29939004778862,0.0987574085593224,0.949006080627441,0.0837863832712173,0.436996281147003,0.895552337169647,0.0887652933597565,0.181576564908028,0.979362308979034,0.195334628224373,-0.321067929267883,0.926692843437195,0.206829100847244,0.042377058416605,0.977458834648132,0.195334628224373,-0.321067929267883,0.926692843437195,0.0887652933597565,0.181576564908028,0.979362308979034,0.1746576577425,-0.194435954093933,0.965240478515625,-0.0353925339877605,0.398872494697571,0.916323065757751,\r\n-0.0187679436057806,0.383020609617233,0.923549056053162,-0.0498861782252789,0.263812780380249,0.963282942771912,-0.116507895290852,0.410639643669128,0.904323399066925,-0.10029511898756,0.408503502607346,0.907229661941528,-0.0353925339877605,0.398872494697571,0.916323065757751,-0.116507895290852,0.410639643669128,0.904323399066925,-0.204336926341057,0.415452033281326,0.886366665363312,-0.10029511898756,0.408503502607346,0.907229661941528,-0.194861397147179,0.430331200361252,0.881387531757355,-0.204336926341057,0.415452033281326,0.886366665363312,-0.215590953826904,0.40918493270874,0.886616110801697,0.0471741370856762,0.445571511983871,0.894002497196198,0.0954413041472435,0.384494304656982,0.918180286884308,0.0991846397519112,0.302877336740494,0.947854220867157,0.214117780327797,0.194863140583038,0.957173764705658,0.0954413041472435,0.384494304656982,0.918180286884308,0.192061573266983,0.325655460357666,0.925775766372681,0.429453462362289,-0.0933390259742737,0.898252427577972,0.192061573266983,0.325655460357666,0.925775766372681,0.29939004778862,0.0987574085593224,0.949006080627441,0.0987894013524055,0.230888366699219,0.967952013015747,-0.0187679436057806,0.383020609617233,0.923549056053162,0.0991846397519112,0.302877336740494,0.947854220867157,-0.18752783536911,0.396434545516968,0.898706257343292,-0.193165183067322,0.399012953042984,0.896368086338043,-0.170063838362694,0.292211562395096,0.941111385822296,-0.194861397147179,0.430331200361252,0.881387531757355,-0.215590953826904,0.40918493270874,0.886616110801697,-0.193165183067322,0.399012953042984,0.896368086338043,0.0616459362208843,-0.316750884056091,0.946503341197968,0.11159535497427,-0.514164924621582,0.850400328636169,0.294784754514694,-0.340628653764725,0.892789959907532,0.294938921928406,-0.334873199462891,0.894913852214813,0.294784754514694,-0.340628653764725,0.892789959907532,0.288958251476288,-0.482811003923416,0.826677978038788,0.470308512449265,-0.547529280185699,0.692113757133484,0.362351417541504,-0.475482046604156,0.801634669303894,0.381415337324142,-0.542632520198822,0.748379588127136,\r\n0.224455267190933,-0.357591331005096,0.906503260135651,0.294938921928406,-0.334873199462891,0.894913852214813,0.290923655033112,-0.451200276613235,0.843671560287476,0.224455267190933,-0.357591331005096,0.906503260135651,0.362351417541504,-0.475482046604156,0.801634669303894,0.321039617061615,-0.401533633470535,0.857731878757477,0.240496903657913,-0.0552168302237988,0.969078063964844,0.182783305644989,0.165355131030083,0.969147980213165,0.146812319755554,0.0130253145471215,0.98907858133316,0.106777712702751,0.154336988925934,0.982231378555298,0.0984918177127838,0.19842541217804,0.97515469789505,0.204431846737862,0.0182346776127815,0.978710889816284,0.182783305644989,0.165355131030083,0.969147980213165,0.0984918177127838,0.19842541217804,0.97515469789505,0.146812319755554,0.0130253145471215,0.98907858133316,0.240496903657913,-0.0552168302237988,0.969078063964844,0.319532662630081,-0.232398837804794,0.918634593486786,0.381828218698502,-0.192163974046707,0.904035449028015,0.390424907207489,-0.598195791244507,0.699807167053223,0.350747585296631,-0.343234419822693,0.871301412582397,0.476447969675064,-0.535488128662109,0.697315990924835,0.447318464517593,-0.638982057571411,0.625785887241364,0.476447969675064,-0.535488128662109,0.697315990924835,0.536342620849609,-0.566439688205719,0.625685632228851,0.470308512449265,-0.547529280185699,0.692113757133484,0.447318464517593,-0.638982057571411,0.625785887241364,0.536342620849609,-0.566439688205719,0.625685632228851,0.293739974498749,-0.161486059427261,0.942145943641663,0.476447969675064,-0.535488128662109,0.697315990924835,0.350747585296631,-0.343234419822693,0.871301412582397,0.293739974498749,-0.161486059427261,0.942145943641663,0.204431846737862,0.0182346776127815,0.978710889816284,0.37608078122139,-0.376599907875061,0.846602380275726,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.0616459362208843,-0.316750884056091,0.946503341197968,0.0383210368454456,-0.132730752229691,0.990410983562469,-0.0321397967636585,-0.379517823457718,0.924625992774963,0.0383210368454456,-0.132730752229691,0.990410983562469,\r\n0.240957483649254,-0.266357153654099,0.933270156383514,0.357314199209213,-0.150065764784813,0.92184966802597,0.240957483649254,-0.266357153654099,0.933270156383514,0.171009436249733,-0.0784017071127892,0.982145011425018,0.242217808961868,-0.188653439283371,0.951703906059265,0.276267230510712,-0.108231507241726,0.954967141151428,0.357314199209213,-0.150065764784813,0.92184966802597,0.00566980335861444,-0.174700856208801,0.984605193138123,0.276267230510712,-0.108231507241726,0.954967141151428,0.143168196082115,-0.310673266649246,0.939672768115997,0.00566980335861444,-0.174700856208801,0.984605193138123,0.143168196082115,-0.310673266649246,0.939672768115997,-0.0363474227488041,-0.441734462976456,0.896409153938293,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.219233587384224,-0.370671451091766,0.902518272399902,-0.0363474227488041,-0.441734462976456,0.896409153938293,-0.126909241080284,-0.310957700014114,0.941912531852722,0.0314857624471188,-0.434105068445206,0.900311827659607,0.0333672314882278,-0.220617383718491,0.974789440631866,0.0314857624471188,-0.434105068445206,0.900311827659607,-0.169357299804688,-0.473162144422531,0.864543557167053,-0.0363474227488041,-0.441734462976456,0.896409153938293,0.0995567888021469,0.158068910241127,0.982396364212036,0.0921158045530319,0.150636166334152,0.984288215637207,0.0224286690354347,0.0487700030207634,0.998558104038239,0.161756560206413,0.0369205363094807,0.986139714717865,0.0921158045530319,0.150636166334152,0.984288215637207,0.141233041882515,0.118398100137711,0.982870697975159,0.244865775108337,-0.0780725851655006,0.966408491134644,0.187596142292023,-0.135644391179085,0.972835123538971,0.161756560206413,0.0369205363094807,0.986139714717865,0.0995567888021469,0.158068910241127,0.982396364212036,0.107151426374912,-0.0107422303408384,0.994184672832489,0.238197445869446,0.106113001704216,0.965402483940125,0.0333672314882278,-0.220617383718491,0.974789440631866,0.193904742598534,-0.255643784999847,0.947125673294067,0.107151426374912,-0.0107422303408384,0.994184672832489,\r\n0.278270453214645,-0.291475147008896,0.915209054946899,0.245437145233154,-0.359061539173126,0.900463938713074,0.10300724953413,-0.258839339017868,0.960412204265594,0.278270453214645,-0.291475147008896,0.915209054946899,0.187596142292023,-0.135644391179085,0.972835123538971,0.345019370317459,-0.19679693877697,0.917732238769531,-0.103896856307983,-0.193920880556107,0.975499868392944,0.023940509185195,-0.175576597452164,0.98417454957962,-0.0561226084828377,-0.0295643620193005,0.997986018657684,0.0752870813012123,-0.354339361190796,0.932081162929535,0.211873054504395,-0.267101377248764,0.94008857011795,0.023940509185195,-0.175576597452164,0.98417454957962,0.245437145233154,-0.359061539173126,0.900463938713074,0.211873054504395,-0.267101377248764,0.94008857011795,0.0752870813012123,-0.354339361190796,0.932081162929535,-0.075280137360096,0.0645792633295059,0.995069026947021,-0.011087330058217,0.169858664274216,0.985406041145325,0.136438995599747,0.0785231664776802,0.98753148317337,-0.0245893653482199,0.158123657107353,0.987113058567047,-0.18891566991806,0.177170291543007,0.96587860584259,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.0962034314870834,0.249013096094131,0.963710129261017,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.227460741996765,0.201054602861404,0.952805638313293,-0.0245893653482199,0.158123657107353,0.987113058567047,-0.0962034314870834,0.249013096094131,0.963710129261017,-0.18891566991806,0.177170291543007,0.96587860584259,-0.227460741996765,0.201054602861404,0.952805638313293,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.011087330058217,0.169858664274216,0.985406041145325,-0.141969472169876,0.0915418192744255,0.985629081726074,-0.0561226084828377,-0.0295643620193005,0.997986018657684,0.0530214086174965,0.0709187760949135,0.996071875095367,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.186030298471451,0.122593089938164,0.974865913391113,-0.0344541184604168,0.24917733669281,0.967844724655151,-0.186030298471451,0.122593089938164,0.974865913391113,\r\n-0.209809094667435,0.19437862932682,0.958225965499878,0.0445712506771088,0.0955776274204254,0.994423568248749,0.0306681673973799,0.0857032313942909,0.995848536491394,0.0616091936826706,0.0120958294719458,0.99802702665329,0.0445712506771088,0.0955776274204254,0.994423568248749,-0.0105868661776185,0.0439645834267139,0.998976945877075,0.0760542303323746,0.1807921230793,0.980576276779175,0.050901360809803,0.33620896935463,0.940410792827606,0.05396344140172,0.468706637620926,0.881703972816467,-0.0249356366693974,0.473632723093033,0.880369305610657,0.050901360809803,0.33620896935463,0.940410792827606,0.0760542303323746,0.1807921230793,0.980576276779175,0.121466927230358,0.210624292492867,0.969991326332092,0.168660268187523,0.117426283657551,0.978654563426971,0.123144499957561,0.0805843770503998,0.989111483097076,0.17932653427124,0.0778496786952019,0.980704545974731,0.0306681673973799,0.0857032313942909,0.995848536491394,0.17932653427124,0.0778496786952019,0.980704545974731,0.0616091936826706,0.0120958294719458,0.99802702665329,0.123144499957561,0.0805843770503998,0.989111483097076,0.136438995599747,0.0785231664776802,0.98753148317337,-0.011087330058217,0.169858664274216,0.985406041145325,-0.0648908540606499,0.826115667819977,0.559751629829407,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.200093865394592,0.584151804447174,0.786593317985535,-0.222803950309753,0.876215934753418,0.427321761846542,0.0369631312787533,0.766337811946869,0.641373455524445,-0.107926897704601,0.538069605827332,0.835962176322937,-0.233824923634529,0.774148166179657,0.588234961032867,-0.200093865394592,0.584151804447174,0.786593317985535,0.0369631312787533,0.766337811946869,0.641373455524445,-0.0366731323301792,0.93647027015686,0.348824322223663,0.177549853920937,0.839820384979248,0.513008415699005,-0.0366731323301792,0.93647027015686,0.348824322223663,-0.0765166059136391,0.923467397689819,0.375969499349594,-0.0158139653503895,0.957235038280487,0.288878589868546,-0.0213953144848347,0.889397442340851,0.456633627414703,\r\n-0.0765166059136391,0.923467397689819,0.375969499349594,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.107926897704601,0.538069605827332,0.835962176322937,-0.0945523679256439,0.324324071407318,0.941208600997925,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0972970277070999,0.216253533959389,0.971477031707764,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.0214262902736664,0.595738649368286,0.8028923869133,-0.0249356366693974,0.473632723093033,0.880369305610657,0.05396344140172,0.468706637620926,0.881703972816467,-0.0164599251002073,0.673517286777496,0.738988101482391,0.0140959154814482,0.633044362068176,0.773987054824829,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0214262902736664,0.595738649368286,0.8028923869133,0.0297022331506014,0.568653523921967,0.822040617465973,-0.0164599251002073,0.673517286777496,0.738988101482391,-0.0578498840332031,0.861983418464661,0.503624677658081,0.0352721326053143,0.819829642772675,0.57151997089386,-0.0833474770188332,0.796281099319458,0.599157273769379,-0.0578498840332031,0.861983418464661,0.503624677658081,-0.195249542593956,0.844354391098022,0.498942047357559,-0.0675052776932716,0.898881018161774,0.432961672544479,-0.301093220710754,0.709899008274078,0.636699378490448,-0.302961528301239,0.743799567222595,0.595798909664154,-0.302320837974548,0.651773393154144,0.695552587509155,-0.302961528301239,0.743799567222595,0.595798909664154,-0.293890386819839,0.76807302236557,0.568939447402954,-0.309366345405579,0.696086883544922,0.647885262966156,-0.293890386819839,0.76807302236557,0.568939447402954,-0.321463942527771,0.80355167388916,0.500964522361755,-0.331635117530823,0.770946443080902,0.543745815753937,-0.321463942527771,0.80355167388916,0.500964522361755,-0.312516659498215,0.855161309242249,0.413560539484024,-0.317676484584808,0.823823094367981,0.469464600086212,-0.315922141075134,0.857251405715942,0.40658712387085,-0.317676484584808,0.823823094367981,0.469464600086212,-0.312516659498215,0.855161309242249,0.413560539484024,\r\n-0.280360400676727,0.86076819896698,0.424824714660645,-0.315922141075134,0.857251405715942,0.40658712387085,-0.28417444229126,0.884436368942261,0.370158135890961,-0.144640982151031,0.897597312927246,0.416410893201828,-0.0675052776932716,0.898881018161774,0.432961672544479,-0.280360400676727,0.86076819896698,0.424824714660645,-0.206702321767807,0.180810734629631,0.961551666259766,-0.22087188065052,0.281852751970291,0.933688640594482,-0.21654962003231,0.233944416046143,0.947827100753784,-0.22087188065052,0.281852751970291,0.933688640594482,-0.118112944066525,0.226643905043602,0.966789424419403,-0.198294073343277,0.3648941218853,0.909687638282776,-0.209809094667435,0.19437862932682,0.958225965499878,-0.186030298471451,0.122593089938164,0.974865913391113,-0.206702321767807,0.180810734629631,0.961551666259766,-0.200769975781441,0.497674435377121,0.843807756900787,-0.262550711631775,0.515943586826324,0.81539511680603,-0.239671558141708,0.494082391262054,0.835727214813232,-0.239671558141708,0.494082391262054,0.835727214813232,-0.211268708109856,0.494062811136246,0.843366682529449,-0.200769975781441,0.497674435377121,0.843807756900787,-0.118112944066525,0.226643905043602,0.966789424419403,-0.154365971684456,0.352395623922348,0.923032164573669,-0.198294073343277,0.3648941218853,0.909687638282776,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.179466485977173,0.445418149232864,0.877151250839233,-0.154365971684456,0.352395623922348,0.923032164573669,-0.179466485977173,0.445418149232864,0.877151250839233,-0.158026993274689,0.498767912387848,0.852207720279694,-0.211268708109856,0.494062811136246,0.843366682529449,-0.283676415681839,0.624607741832733,0.727593779563904,-0.262550711631775,0.515943586826324,0.81539511680603,-0.158606812357903,0.606247663497925,0.779299437999725,-0.302320837974548,0.651773393154144,0.695552587509155,-0.283676415681839,0.624607741832733,0.727593779563904,-0.301093220710754,0.709899008274078,0.636699378490448,0.149500042200089,0.802258729934692,0.577953815460205,0.268829077482224,0.82608562707901,0.495291233062744,\r\n0.264530509710312,0.781427919864655,0.565149426460266,0.264530509710312,0.781427919864655,0.565149426460266,0.229706928133965,0.790425300598145,0.567857623100281,0.205336511135101,0.733333945274353,0.648118913173676,0.149500042200089,0.802258729934692,0.577953815460205,0.0311300754547119,0.868121743202209,0.49537405371666,0.123520046472549,0.88137823343277,0.455977082252502,-0.0578498840332031,0.861983418464661,0.503624677658081,0.0311300754547119,0.868121743202209,0.49537405371666,0.0352721326053143,0.819829642772675,0.57151997089386,0.0841712802648544,0.833515524864197,0.546046614646912,0.0538204722106457,0.882174611091614,0.467836707830429,-0.136804059147835,0.836160004138947,0.531150579452515,-0.136804059147835,0.836160004138947,0.531150579452515,-0.176605939865112,0.865476965904236,0.468785434961319,-0.230580165982246,0.827055811882019,0.512651205062866,-0.0594217628240585,0.806098580360413,0.58879029750824,-0.208728075027466,0.782859742641449,0.586142539978027,-0.230580165982246,0.827055811882019,0.512651205062866,0.229706928133965,0.790425300598145,0.567857623100281,0.22693595290184,0.851723372936249,0.472299933433533,0.0841712802648544,0.833515524864197,0.546046614646912,0.698833703994751,0.263904839754105,0.664819955825806,0.625897467136383,0.433305025100708,0.648458898067474,0.310053110122681,0.563990592956543,0.76536363363266,0.310053110122681,0.563990592956543,0.76536363363266,0.103447236120701,0.704618215560913,0.702005445957184,0.571781277656555,0.402737647294998,0.714750587940216,0.103447236120701,0.704618215560913,0.702005445957184,-0.0594217628240585,0.806098580360413,0.58879029750824,0.294198483228683,0.688182532787323,0.663213312625885,0.698833703994751,0.263904839754105,0.664819955825806,0.85932058095932,0.106064178049564,0.500318288803101,0.625897467136383,0.433305025100708,0.648458898067474,0.73720794916153,0.22472882270813,0.637197971343994,0.85932058095932,0.106064178049564,0.500318288803101,0.881500959396362,0.0227612666785717,0.471633195877075,0.836142897605896,-0.0450863316655159,0.546655356884003,\r\n0.655100345611572,-0.0740783363580704,0.75190144777298,0.755359947681427,-0.0326073989272118,0.654498338699341,0.655100345611572,-0.0740783363580704,0.75190144777298,0.670956015586853,-0.264512985944748,0.692712604999542,0.579960405826569,-0.0726286321878433,0.811400532722473,0.836142897605896,-0.0450863316655159,0.546655356884003,0.755359947681427,-0.0326073989272118,0.654498338699341,0.881500959396362,0.0227612666785717,0.471633195877075,0.486402809619904,0.0946260988712311,0.868595480918884,0.579960405826569,-0.0726286321878433,0.811400532722473,0.633164703845978,-0.22199758887291,0.741498053073883,0.377433091402054,0.173426494002342,0.909652352333069,0.575068295001984,-0.148228332400322,0.804564952850342,0.538105368614197,-0.0783922970294952,0.839224100112915,0.575068295001984,-0.148228332400322,0.804564952850342,0.486402809619904,0.0946260988712311,0.868595480918884,0.633164703845978,-0.22199758887291,0.741498053073883,0.359223783016205,0.0969588831067085,0.928201019763947,0.516926825046539,-0.323344171047211,0.792612791061401,0.249607965350151,-0.047825314104557,0.967165172100067,0.516926825046539,-0.323344171047211,0.792612791061401,0.359223783016205,0.0969588831067085,0.928201019763947,0.538105368614197,-0.0783922970294952,0.839224100112915,0.1746576577425,-0.194435954093933,0.965240478515625,0.249607965350151,-0.047825314104557,0.967165172100067,0.349001109600067,-0.466373682022095,0.812830686569214,0.380833387374878,-0.371999353170395,0.846511840820313,0.29939004778862,0.0987574085593224,0.949006080627441,0.206829100847244,0.042377058416605,0.977458834648132,0.380833387374878,-0.371999353170395,0.846511840820313,0.206829100847244,0.042377058416605,0.977458834648132,0.195334628224373,-0.321067929267883,0.926692843437195,0.195334628224373,-0.321067929267883,0.926692843437195,0.1746576577425,-0.194435954093933,0.965240478515625,0.226469725370407,-0.531719088554382,0.81607973575592,-0.0498861782252789,0.263812780380249,0.963282942771912,-0.0187679436057806,0.383020609617233,0.923549056053162,0.0987894013524055,0.230888366699219,0.967952013015747,\r\n-0.0498861782252789,0.263812780380249,0.963282942771912,-0.0475290790200233,0.286867141723633,0.956790566444397,-0.0353925339877605,0.398872494697571,0.916323065757751,-0.116507895290852,0.410639643669128,0.904323399066925,-0.0353925339877605,0.398872494697571,0.916323065757751,-0.0475290790200233,0.286867141723633,0.956790566444397,-0.204336926341057,0.415452033281326,0.886366665363312,-0.116507895290852,0.410639643669128,0.904323399066925,-0.206212520599365,0.414413273334503,0.886418640613556,-0.206212520599365,0.414413273334503,0.886418640613556,-0.215590953826904,0.40918493270874,0.886616110801697,-0.204336926341057,0.415452033281326,0.886366665363312,0.214117780327797,0.194863140583038,0.957173764705658,0.0991846397519112,0.302877336740494,0.947854220867157,0.0954413041472435,0.384494304656982,0.918180286884308,0.192061573266983,0.325655460357666,0.925775766372681,0.429453462362289,-0.0933390259742737,0.898252427577972,0.214117780327797,0.194863140583038,0.957173764705658,0.29939004778862,0.0987574085593224,0.949006080627441,0.380833387374878,-0.371999353170395,0.846511840820313,0.429453462362289,-0.0933390259742737,0.898252427577972,0.214117780327797,0.194863140583038,0.957173764705658,0.0987894013524055,0.230888366699219,0.967952013015747,0.0991846397519112,0.302877336740494,0.947854220867157,-0.193165183067322,0.399012953042984,0.896368086338043,-0.19316354393959,0.399017781019211,0.8963662981987,-0.170063838362694,0.292211562395096,0.941111385822296,-0.19316354393959,0.399017781019211,0.8963662981987,-0.193165183067322,0.399012953042984,0.896368086338043,-0.215590953826904,0.40918493270874,0.886616110801697,0.277465254068375,-0.143271073698998,0.949992835521698,0.0616459362208843,-0.316750884056091,0.946503341197968,0.294784754514694,-0.340628653764725,0.892789959907532,0.294938921928406,-0.334873199462891,0.894913852214813,0.304726809263229,-0.182384088635445,0.934814155101776,0.294784754514694,-0.340628653764725,0.892789959907532,0.515210807323456,-0.472400456666946,0.715119183063507,0.362351417541504,-0.475482046604156,0.801634669303894,\r\n0.470308512449265,-0.547529280185699,0.692113757133484,0.141635119915009,-0.228774756193161,0.963120698928833,0.294938921928406,-0.334873199462891,0.894913852214813,0.224455267190933,-0.357591331005096,0.906503260135651,0.515210807323456,-0.472400456666946,0.715119183063507,0.321039617061615,-0.401533633470535,0.857731878757477,0.362351417541504,-0.475482046604156,0.801634669303894,0.224455267190933,-0.357591331005096,0.906503260135651,0.321039617061615,-0.401533633470535,0.857731878757477,0.110097415745258,-0.252197772264481,0.961392045021057,0.360401719808578,-0.0427653640508652,0.931816339492798,0.182783305644989,0.165355131030083,0.969147980213165,0.240496903657913,-0.0552168302237988,0.969078063964844,0.204431846737862,0.0182346776127815,0.978710889816284,0.0984918177127838,0.19842541217804,0.97515469789505,0.172686040401459,0.21707771718502,0.96075838804245,0.182783305644989,0.165355131030083,0.969147980213165,0.172686040401459,0.21707771718502,0.96075838804245,0.0984918177127838,0.19842541217804,0.97515469789505,0.319532662630081,-0.232398837804794,0.918634593486786,0.484358608722687,-0.396458089351654,0.779883086681366,0.381828218698502,-0.192163974046707,0.904035449028015,0.360401719808578,-0.0427653640508652,0.931816339492798,0.240496903657913,-0.0552168302237988,0.969078063964844,0.381828218698502,-0.192163974046707,0.904035449028015,0.536342620849609,-0.566439688205719,0.625685632228851,0.476447969675064,-0.535488128662109,0.697315990924835,0.453352749347687,-0.562883019447327,0.691110670566559,0.536342620849609,-0.566439688205719,0.625685632228851,0.543717384338379,-0.515437424182892,0.662340879440308,0.470308512449265,-0.547529280185699,0.692113757133484,0.293739974498749,-0.161486059427261,0.942145943641663,0.37608078122139,-0.376599907875061,0.846602380275726,0.476447969675064,-0.535488128662109,0.697315990924835,0.350025534629822,-0.365515172481537,0.86248517036438,0.37608078122139,-0.376599907875061,0.846602380275726,0.204431846737862,0.0182346776127815,0.978710889816284,0.154079109430313,-0.0518250875174999,0.986698389053345,\r\n0.0383210368454456,-0.132730752229691,0.990410983562469,0.0616459362208843,-0.316750884056091,0.946503341197968,0.0383210368454456,-0.132730752229691,0.990410983562469,0.171009436249733,-0.0784017071127892,0.982145011425018,0.240957483649254,-0.266357153654099,0.933270156383514,0.242217808961868,-0.188653439283371,0.951703906059265,0.357314199209213,-0.150065764784813,0.92184966802597,0.171009436249733,-0.0784017071127892,0.982145011425018,0.242217808961868,-0.188653439283371,0.951703906059265,0.225929945707321,-0.386457145214081,0.894207119941711,0.276267230510712,-0.108231507241726,0.954967141151428,0.225929945707321,-0.386457145214081,0.894207119941711,0.143168196082115,-0.310673266649246,0.939672768115997,0.276267230510712,-0.108231507241726,0.954967141151428,-0.0363474227488041,-0.441734462976456,0.896409153938293,0.143168196082115,-0.310673266649246,0.939672768115997,0.113590382039547,-0.504742920398712,0.855763852596283,0.0333672314882278,-0.220617383718491,0.974789440631866,0.0314857624471188,-0.434105068445206,0.900311827659607,0.193904742598534,-0.255643784999847,0.947125673294067,0.0314857624471188,-0.434105068445206,0.900311827659607,-0.0363474227488041,-0.441734462976456,0.896409153938293,0.113590382039547,-0.504742920398712,0.855763852596283,0.141233041882515,0.118398100137711,0.982870697975159,0.0921158045530319,0.150636166334152,0.984288215637207,0.0995567888021469,0.158068910241127,0.982396364212036,0.161756560206413,0.0369205363094807,0.986139714717865,0.141233041882515,0.118398100137711,0.982870697975159,0.244865775108337,-0.0780725851655006,0.966408491134644,0.244865775108337,-0.0780725851655006,0.966408491134644,0.345019370317459,-0.19679693877697,0.917732238769531,0.187596142292023,-0.135644391179085,0.972835123538971,0.268612563610077,-0.0722378119826317,0.960535705089569,0.238197445869446,0.106113001704216,0.965402483940125,0.107151426374912,-0.0107422303408384,0.994184672832489,0.141116693615913,0.130605041980743,0.981340050697327,0.0995567888021469,0.158068910241127,0.982396364212036,0.238197445869446,0.106113001704216,0.965402483940125,\r\n0.268612563610077,-0.0722378119826317,0.960535705089569,0.107151426374912,-0.0107422303408384,0.994184672832489,0.193904742598534,-0.255643784999847,0.947125673294067,0.278270453214645,-0.291475147008896,0.915209054946899,0.370119392871857,-0.292474985122681,0.881742537021637,0.245437145233154,-0.359061539173126,0.900463938713074,0.345019370317459,-0.19679693877697,0.917732238769531,0.457254499197006,-0.254931151866913,0.852014243602753,0.278270453214645,-0.291475147008896,0.915209054946899,0.141391679644585,-0.0835231617093086,0.986423969268799,-0.0561226084828377,-0.0295643620193005,0.997986018657684,0.023940509185195,-0.175576597452164,0.98417454957962,0.023940509185195,-0.175576597452164,0.98417454957962,0.211873054504395,-0.267101377248764,0.94008857011795,0.141391679644585,-0.0835231617093086,0.986423969268799,0.245437145233154,-0.359061539173126,0.900463938713074,0.370119392871857,-0.292474985122681,0.881742537021637,0.211873054504395,-0.267101377248764,0.94008857011795,-0.141969472169876,0.0915418192744255,0.985629081726074,0.0530214086174965,0.0709187760949135,0.996071875095367,-0.0245893653482199,0.158123657107353,0.987113058567047,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.0962034314870834,0.249013096094131,0.963710129261017,0.104236483573914,0.218462377786636,0.970262229442596,-0.0962034314870834,0.249013096094131,0.963710129261017,-0.0245893653482199,0.158123657107353,0.987113058567047,0.104236483573914,0.218462377786636,0.970262229442596,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.0918020531535149,0.0717685595154762,0.993187546730042,-0.011087330058217,0.169858664274216,0.985406041145325,0.141391679644585,-0.0835231617093086,0.986423969268799,0.0530214086174965,0.0709187760949135,0.996071875095367,-0.0561226084828377,-0.0295643620193005,0.997986018657684,-0.186030298471451,0.122593089938164,0.974865913391113,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.206702321767807,0.180810734629631,0.961551666259766,-0.0105868661776185,0.0439645834267139,0.998976945877075,\r\n0.0445712506771088,0.0955776274204254,0.994423568248749,0.0616091936826706,0.0120958294719458,0.99802702665329,0.0481184758245945,0.159732326865196,0.985986888408661,0.0760542303323746,0.1807921230793,0.980576276779175,-0.0105868661776185,0.0439645834267139,0.998976945877075,0.05396344140172,0.468706637620926,0.881703972816467,0.050901360809803,0.33620896935463,0.940410792827606,0.10322343558073,0.314330607652664,0.943684816360474,0.0760542303323746,0.1807921230793,0.980576276779175,0.0481184758245945,0.159732326865196,0.985986888408661,0.121466927230358,0.210624292492867,0.969991326332092,0.10322343558073,0.314330607652664,0.943684816360474,0.050901360809803,0.33620896935463,0.940410792827606,0.121466927230358,0.210624292492867,0.969991326332092,0.123144499957561,0.0805843770503998,0.989111483097076,0.0616091936826706,0.0120958294719458,0.99802702665329,0.17932653427124,0.0778496786952019,0.980704545974731,-0.011087330058217,0.169858664274216,0.985406041145325,-0.0918020531535149,0.0717685595154762,0.993187546730042,0.123144499957561,0.0805843770503998,0.989111483097076,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.0311659015715122,0.759183526039124,0.650129914283752,-0.0286849662661552,0.817149579524994,0.575711369514465,0.0369631312787533,0.766337811946869,0.641373455524445,0.0222943108528852,0.293574810028076,0.955676019191742,-0.200093865394592,0.584151804447174,0.786593317985535,-0.107926897704601,0.538069605827332,0.835962176322937,-0.200093865394592,0.584151804447174,0.786593317985535,-0.0945523679256439,0.324324071407318,0.941208600997925,-0.0366731323301792,0.93647027015686,0.348824322223663,0.0465957298874855,0.940351188182831,0.33699905872345,0.177549853920937,0.839820384979248,0.513008415699005,0.115128502249718,0.46953010559082,0.87537807226181,0.0369631312787533,0.766337811946869,0.641373455524445,0.177549853920937,0.839820384979248,0.513008415699005,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.0158139653503895,0.957235038280487,0.288878589868546,-0.0765166059136391,0.923467397689819,0.375969499349594,\r\n-0.0366731323301792,0.93647027015686,0.348824322223663,-0.0158139653503895,0.957235038280487,0.288878589868546,0.0465957298874855,0.940351188182831,0.33699905872345,-0.0251308865845203,0.857396721839905,0.5140420794487,-0.0286849662661552,0.817149579524994,0.575711369514465,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0945523679256439,0.324324071407318,0.941208600997925,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.0514198020100594,0.175295516848564,0.983172118663788,-0.0532539747655392,0.10844498872757,0.992675006389618,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.0214262902736664,0.595738649368286,0.8028923869133,0.05396344140172,0.468706637620926,0.881703972816467,0.0297022331506014,0.568653523921967,0.822040617465973,0.0297022331506014,0.568653523921967,0.822040617465973,0.0140959154814482,0.633044362068176,0.773987054824829,-0.0164599251002073,0.673517286777496,0.738988101482391,-0.0311659015715122,0.759183526039124,0.650129914283752,0.0140959154814482,0.633044362068176,0.773987054824829,0.00401627318933606,0.727492332458496,0.686103940010071,-0.0578498840332031,0.861983418464661,0.503624677658081,-0.0675052776932716,0.898881018161774,0.432961672544479,0.0311300754547119,0.868121743202209,0.49537405371666,-0.302961528301239,0.743799567222595,0.595798909664154,-0.301093220710754,0.709899008274078,0.636699378490448,-0.261051893234253,0.760264217853546,0.594852983951569,-0.302961528301239,0.743799567222595,0.595798909664154,-0.321463942527771,0.80355167388916,0.500964522361755,-0.293890386819839,0.76807302236557,0.568939447402954,-0.321463942527771,0.80355167388916,0.500964522361755,-0.346914261579514,0.828899025917053,0.438835710287094,-0.312516659498215,0.855161309242249,0.413560539484024,-0.315922141075134,0.857251405715942,0.40658712387085,-0.312516659498215,0.855161309242249,0.413560539484024,-0.342901080846787,0.867042183876038,0.361464619636536,-0.28417444229126,0.884436368942261,0.370158135890961,-0.315922141075134,0.857251405715942,0.40658712387085,\r\n-0.327250510454178,0.87444019317627,0.358135879039764,-0.28417444229126,0.884436368942261,0.370158135890961,-0.319101423025131,0.869186699390411,0.377741515636444,-0.280360400676727,0.86076819896698,0.424824714660645,-0.0675052776932716,0.898881018161774,0.432961672544479,-0.144640982151031,0.897597312927246,0.416410893201828,0.0512110628187656,0.906310975551605,0.419497102499008,-0.144640982151031,0.897597312927246,0.416410893201828,-0.280360400676727,0.86076819896698,0.424824714660645,-0.319101423025131,0.869186699390411,0.377741515636444,-0.22087188065052,0.281852751970291,0.933688640594482,-0.206702321767807,0.180810734629631,0.961551666259766,-0.118112944066525,0.226643905043602,0.966789424419403,-0.200769975781441,0.497674435377121,0.843807756900787,-0.177574038505554,0.524432301521301,0.832729279994965,-0.262550711631775,0.515943586826324,0.81539511680603,-0.200769975781441,0.497674435377121,0.843807756900787,-0.211268708109856,0.494062811136246,0.843366682529449,-0.158026993274689,0.498767912387848,0.852207720279694,-0.154365971684456,0.352395623922348,0.923032164573669,-0.118112944066525,0.226643905043602,0.966789424419403,-0.117864608764648,0.344730883836746,0.931272447109222,-0.179466485977173,0.445418149232864,0.877151250839233,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.158026993274689,0.498767912387848,0.852207720279694,-0.154365971684456,0.352395623922348,0.923032164573669,-0.117864608764648,0.344730883836746,0.931272447109222,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.262550711631775,0.515943586826324,0.81539511680603,-0.177574038505554,0.524432301521301,0.832729279994965,-0.158606812357903,0.606247663497925,0.779299437999725,-0.283676415681839,0.624607741832733,0.727593779563904,-0.158606812357903,0.606247663497925,0.779299437999725,-0.227422684431076,0.698331832885742,0.678683578968048,-0.227422684431076,0.698331832885742,0.678683578968048,-0.301093220710754,0.709899008274078,0.636699378490448,-0.283676415681839,0.624607741832733,0.727593779563904,0.268829077482224,0.82608562707901,0.495291233062744,\r\n0.149500042200089,0.802258729934692,0.577953815460205,0.123520046472549,0.88137823343277,0.455977082252502,0.268829077482224,0.82608562707901,0.495291233062744,0.305301517248154,0.803956031799316,0.510338604450226,0.264530509710312,0.781427919864655,0.565149426460266,0.264530509710312,0.781427919864655,0.565149426460266,0.305301517248154,0.803956031799316,0.510338604450226,0.229706928133965,0.790425300598145,0.567857623100281,0.123520046472549,0.88137823343277,0.455977082252502,0.0311300754547119,0.868121743202209,0.49537405371666,-0.0675052776932716,0.898881018161774,0.432961672544479,0.22693595290184,0.851723372936249,0.472299933433533,0.0538204722106457,0.882174611091614,0.467836707830429,0.0841712802648544,0.833515524864197,0.546046614646912,0.0538204722106457,0.882174611091614,0.467836707830429,-0.176605939865112,0.865476965904236,0.468785434961319,-0.136804059147835,0.836160004138947,0.531150579452515,-0.176605939865112,0.865476965904236,0.468785434961319,-0.160103425383568,0.850501298904419,0.501013398170471,-0.230580165982246,0.827055811882019,0.512651205062866,-0.0594217628240585,0.806098580360413,0.58879029750824,-0.230580165982246,0.827055811882019,0.512651205062866,-0.160103425383568,0.850501298904419,0.501013398170471,0.229706928133965,0.790425300598145,0.567857623100281,0.305301517248154,0.803956031799316,0.510338604450226,0.22693595290184,0.851723372936249,0.472299933433533,0.571781277656555,0.402737647294998,0.714750587940216,0.698833703994751,0.263904839754105,0.664819955825806,0.310053110122681,0.563990592956543,0.76536363363266,0.103447236120701,0.704618215560913,0.702005445957184,0.294198483228683,0.688182532787323,0.663213312625885,0.571781277656555,0.402737647294998,0.714750587940216,0.319304376840591,0.691225290298462,0.648268580436707,0.294198483228683,0.688182532787323,0.663213312625885,-0.0594217628240585,0.806098580360413,0.58879029750824,0.698833703994751,0.263904839754105,0.664819955825806,0.821823179721832,0.0141316317021847,0.569567322731018,0.85932058095932,0.106064178049564,0.500318288803101,\r\n0.86904376745224,-0.00911622773855925,0.494651079177856,0.881500959396362,0.0227612666785717,0.471633195877075,0.85932058095932,0.106064178049564,0.500318288803101,0.655100345611572,-0.0740783363580704,0.75190144777298,0.836142897605896,-0.0450863316655159,0.546655356884003,0.74127721786499,-0.131764367222786,0.658138334751129,0.655100345611572,-0.0740783363580704,0.75190144777298,0.74127721786499,-0.131764367222786,0.658138334751129,0.670956015586853,-0.264512985944748,0.692712604999542,0.670956015586853,-0.264512985944748,0.692712604999542,0.633164703845978,-0.22199758887291,0.741498053073883,0.579960405826569,-0.0726286321878433,0.811400532722473,0.836142897605896,-0.0450863316655159,0.546655356884003,0.881500959396362,0.0227612666785717,0.471633195877075,0.86904376745224,-0.00911622773855925,0.494651079177856,0.625141739845276,-0.343693524599075,0.700765550136566,0.538105368614197,-0.0783922970294952,0.839224100112915,0.575068295001984,-0.148228332400322,0.804564952850342,0.667778253555298,-0.327114015817642,0.668631792068481,0.575068295001984,-0.148228332400322,0.804564952850342,0.633164703845978,-0.22199758887291,0.741498053073883,0.349001109600067,-0.466373682022095,0.812830686569214,0.249607965350151,-0.047825314104557,0.967165172100067,0.516926825046539,-0.323344171047211,0.792612791061401,0.516926825046539,-0.323344171047211,0.792612791061401,0.538105368614197,-0.0783922970294952,0.839224100112915,0.625141739845276,-0.343693524599075,0.700765550136566,0.226469725370407,-0.531719088554382,0.81607973575592,0.1746576577425,-0.194435954093933,0.965240478515625,0.349001109600067,-0.466373682022095,0.812830686569214,0.380833387374878,-0.371999353170395,0.846511840820313,0.195334628224373,-0.321067929267883,0.926692843437195,0.274013012647629,-0.593513906002045,0.756741642951965,0.274013012647629,-0.593513906002045,0.756741642951965,0.195334628224373,-0.321067929267883,0.926692843437195,0.226469725370407,-0.531719088554382,0.81607973575592,0.0987894013524055,0.230888366699219,0.967952013015747,0.0460068061947823,0.211392968893051,0.976317703723907,\r\n-0.0498861782252789,0.263812780380249,0.963282942771912,-0.0475290790200233,0.286867141723633,0.956790566444397,-0.0498861782252789,0.263812780380249,0.963282942771912,0.0460068061947823,0.211392968893051,0.976317703723907,-0.0396724566817284,0.250813543796539,0.967222094535828,-0.116507895290852,0.410639643669128,0.904323399066925,-0.0475290790200233,0.286867141723633,0.956790566444397,-0.0396724566817284,0.250813543796539,0.967222094535828,-0.206212520599365,0.414413273334503,0.886418640613556,-0.116507895290852,0.410639643669128,0.904323399066925,-0.215590953826904,0.40918493270874,0.886616110801697,-0.206212520599365,0.414413273334503,0.886418640613556,-0.19316354393959,0.399017781019211,0.8963662981987,0.429453462362289,-0.0933390259742737,0.898252427577972,0.508974194526672,-0.299754649400711,0.806902885437012,0.214117780327797,0.194863140583038,0.957173764705658,0.429453462362289,-0.0933390259742737,0.898252427577972,0.380833387374878,-0.371999353170395,0.846511840820313,0.579841077327728,-0.48977255821228,0.651081383228302,0.0987894013524055,0.230888366699219,0.967952013015747,0.214117780327797,0.194863140583038,0.957173764705658,0.0460068061947823,0.211392968893051,0.976317703723907,-0.19316354393959,0.399017781019211,0.8963662981987,-0.144715830683708,0.351668685674667,0.92487096786499,-0.170063838362694,0.292211562395096,0.941111385822296,0.277465254068375,-0.143271073698998,0.949992835521698,0.154079109430313,-0.0518250875174999,0.986698389053345,0.0616459362208843,-0.316750884056091,0.946503341197968,0.277465254068375,-0.143271073698998,0.949992835521698,0.294784754514694,-0.340628653764725,0.892789959907532,0.304726809263229,-0.182384088635445,0.934814155101776,0.141635119915009,-0.228774756193161,0.963120698928833,0.304726809263229,-0.182384088635445,0.934814155101776,0.294938921928406,-0.334873199462891,0.894913852214813,0.515210807323456,-0.472400456666946,0.715119183063507,0.470308512449265,-0.547529280185699,0.692113757133484,0.543717384338379,-0.515437424182892,0.662340879440308,0.224455267190933,-0.357591331005096,0.906503260135651,\r\n0.110097415745258,-0.252197772264481,0.961392045021057,0.141635119915009,-0.228774756193161,0.963120698928833,0.538480341434479,-0.374638617038727,0.754774570465088,0.321039617061615,-0.401533633470535,0.857731878757477,0.515210807323456,-0.472400456666946,0.715119183063507,0.341279804706573,-0.261055886745453,0.902982711791992,0.110097415745258,-0.252197772264481,0.961392045021057,0.321039617061615,-0.401533633470535,0.857731878757477,0.351388424634933,0.132021114230156,0.926874577999115,0.182783305644989,0.165355131030083,0.969147980213165,0.360401719808578,-0.0427653640508652,0.931816339492798,0.204431846737862,0.0182346776127815,0.978710889816284,0.172686040401459,0.21707771718502,0.96075838804245,0.312040716409683,-0.169968754053116,0.934741199016571,0.238296136260033,0.301764577627182,0.923121333122253,0.172686040401459,0.21707771718502,0.96075838804245,0.182783305644989,0.165355131030083,0.969147980213165,0.470881640911102,-0.241609305143356,0.848466455936432,0.381828218698502,-0.192163974046707,0.904035449028015,0.484358608722687,-0.396458089351654,0.779883086681366,0.360401719808578,-0.0427653640508652,0.931816339492798,0.381828218698502,-0.192163974046707,0.904035449028015,0.469417363405228,-0.169011503458023,0.86665004491806,0.476447969675064,-0.535488128662109,0.697315990924835,0.37608078122139,-0.376599907875061,0.846602380275726,0.453352749347687,-0.562883019447327,0.691110670566559,0.491221815347672,-0.560847938060761,0.666446208953857,0.536342620849609,-0.566439688205719,0.625685632228851,0.453352749347687,-0.562883019447327,0.691110670566559,0.536342620849609,-0.566439688205719,0.625685632228851,0.509695708751678,-0.514814496040344,0.689330220222473,0.543717384338379,-0.515437424182892,0.662340879440308,0.350025534629822,-0.365515172481537,0.86248517036438,0.453352749347687,-0.562883019447327,0.691110670566559,0.37608078122139,-0.376599907875061,0.846602380275726,0.312040716409683,-0.169968754053116,0.934741199016571,0.350025534629822,-0.365515172481537,0.86248517036438,0.204431846737862,0.0182346776127815,0.978710889816284,\r\n0.125377282500267,-0.0810925662517548,0.988789260387421,0.0383210368454456,-0.132730752229691,0.990410983562469,0.154079109430313,-0.0518250875174999,0.986698389053345,0.0383210368454456,-0.132730752229691,0.990410983562469,0.125377282500267,-0.0810925662517548,0.988789260387421,0.171009436249733,-0.0784017071127892,0.982145011425018,0.125377282500267,-0.0810925662517548,0.988789260387421,0.242217808961868,-0.188653439283371,0.951703906059265,0.171009436249733,-0.0784017071127892,0.982145011425018,0.225929945707321,-0.386457145214081,0.894207119941711,0.242217808961868,-0.188653439283371,0.951703906059265,0.207866907119751,-0.342667102813721,0.916171610355377,0.225929945707321,-0.386457145214081,0.894207119941711,0.113590382039547,-0.504742920398712,0.855763852596283,0.143168196082115,-0.310673266649246,0.939672768115997,0.0314857624471188,-0.434105068445206,0.900311827659607,0.202385470271111,-0.452852576971054,0.868311285972595,0.193904742598534,-0.255643784999847,0.947125673294067,0.202385470271111,-0.452852576971054,0.868311285972595,0.0314857624471188,-0.434105068445206,0.900311827659607,0.113590382039547,-0.504742920398712,0.855763852596283,0.141116693615913,0.130605041980743,0.981340050697327,0.141233041882515,0.118398100137711,0.982870697975159,0.0995567888021469,0.158068910241127,0.982396364212036,0.14206662774086,-0.00240575941279531,0.989854156970978,0.244865775108337,-0.0780725851655006,0.966408491134644,0.141233041882515,0.118398100137711,0.982870697975159,0.244865775108337,-0.0780725851655006,0.966408491134644,0.227408066391945,-0.122943341732025,0.966007471084595,0.345019370317459,-0.19679693877697,0.917732238769531,0.338836014270782,-0.113080225884914,0.93402510881424,0.238197445869446,0.106113001704216,0.965402483940125,0.268612563610077,-0.0722378119826317,0.960535705089569,0.190370127558708,0.0261179655790329,0.981364846229553,0.141116693615913,0.130605041980743,0.981340050697327,0.238197445869446,0.106113001704216,0.965402483940125,0.330106168985367,-0.30880731344223,0.892002165317535,0.268612563610077,-0.0722378119826317,0.960535705089569,\r\n0.193904742598534,-0.255643784999847,0.947125673294067,0.457254499197006,-0.254931151866913,0.852014243602753,0.370119392871857,-0.292474985122681,0.881742537021637,0.278270453214645,-0.291475147008896,0.915209054946899,0.345019370317459,-0.19679693877697,0.917732238769531,0.524641633033752,-0.158042415976524,0.836524724960327,0.457254499197006,-0.254931151866913,0.852014243602753,0.359436810016632,-0.160319536924362,0.919294655323029,0.141391679644585,-0.0835231617093086,0.986423969268799,0.211873054504395,-0.267101377248764,0.94008857011795,0.359436810016632,-0.160319536924362,0.919294655323029,0.211873054504395,-0.267101377248764,0.94008857011795,0.370119392871857,-0.292474985122681,0.881742537021637,-0.0245893653482199,0.158123657107353,0.987113058567047,0.0530214086174965,0.0709187760949135,0.996071875095367,0.104236483573914,0.218462377786636,0.970262229442596,-0.0685457140207291,0.19324816763401,0.978752553462982,0.104236483573914,0.218462377786636,0.970262229442596,0.066582590341568,0.208219885826111,0.975813090801239,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.0918020531535149,0.0717685595154762,0.993187546730042,0.259693384170532,0.0318061858415604,0.965167164802551,0.0530214086174965,0.0709187760949135,0.996071875095367,0.141391679644585,-0.0835231617093086,0.986423969268799,-0.0944886654615402,0.107248216867447,0.989732086658478,-0.118112944066525,0.226643905043602,0.966789424419403,-0.206702321767807,0.180810734629631,0.961551666259766,-0.0105868661776185,0.0439645834267139,0.998976945877075,0.0616091936826706,0.0120958294719458,0.99802702665329,0.123144499957561,0.0805843770503998,0.989111483097076,0.0481184758245945,0.159732326865196,0.985986888408661,-0.0105868661776185,0.0439645834267139,0.998976945877075,-0.102870747447014,0.0613149702548981,0.99280309677124,0.0657772421836853,0.450890600681305,0.890152156352997,0.05396344140172,0.468706637620926,0.881703972816467,0.10322343558073,0.314330607652664,0.943684816360474,0.0756721943616867,0.198664948344231,0.977141678333282,\r\n0.121466927230358,0.210624292492867,0.969991326332092,0.0481184758245945,0.159732326865196,0.985986888408661,0.117201961576939,0.209685459733009,0.9707190990448,0.10322343558073,0.314330607652664,0.943684816360474,0.121466927230358,0.210624292492867,0.969991326332092,-0.0918020531535149,0.0717685595154762,0.993187546730042,-0.0105868661776185,0.0439645834267139,0.998976945877075,0.123144499957561,0.0805843770503998,0.989111483097076,-0.0311659015715122,0.759183526039124,0.650129914283752,0.00401627318933606,0.727492332458496,0.686103940010071,-0.0286849662661552,0.817149579524994,0.575711369514465,0.115128502249718,0.46953010559082,0.87537807226181,0.0222943108528852,0.293574810028076,0.955676019191742,0.0369631312787533,0.766337811946869,0.641373455524445,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.200093865394592,0.584151804447174,0.786593317985535,0.0222943108528852,0.293574810028076,0.955676019191742,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.0945523679256439,0.324324071407318,0.941208600997925,-0.200093865394592,0.584151804447174,0.786593317985535,0.0465957298874855,0.940351188182831,0.33699905872345,0.0547534115612507,0.721443355083466,0.690305292606354,0.177549853920937,0.839820384979248,0.513008415699005,0.115128502249718,0.46953010559082,0.87537807226181,0.177549853920937,0.839820384979248,0.513008415699005,0.0547534115612507,0.721443355083466,0.690305292606354,-0.0158139653503895,0.957235038280487,0.288878589868546,-0.0213953144848347,0.889397442340851,0.456633627414703,0.00939250458031893,0.934576094150543,0.355639100074768,0.0465957298874855,0.940351188182831,0.33699905872345,-0.0158139653503895,0.957235038280487,0.288878589868546,0.0112745547667146,0.966052532196045,0.258099287748337,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.0286849662661552,0.817149579524994,0.575711369514465,-0.00204519764520228,0.810361266136169,0.585926830768585,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.0532539747655392,0.10844498872757,0.992675006389618,-0.0514198020100594,0.175295516848564,0.983172118663788,\r\n-0.0944886654615402,0.107248216867447,0.989732086658478,-0.0532539747655392,0.10844498872757,0.992675006389618,-0.118112944066525,0.226643905043602,0.966789424419403,0.0657772421836853,0.450890600681305,0.890152156352997,0.0297022331506014,0.568653523921967,0.822040617465973,0.05396344140172,0.468706637620926,0.881703972816467,0.0140959154814482,0.633044362068176,0.773987054824829,0.0297022331506014,0.568653523921967,0.822040617465973,0.045506376773119,0.519245266914368,0.853412806987762,0.121039420366287,0.635125458240509,0.762866258621216,0.00401627318933606,0.727492332458496,0.686103940010071,0.0140959154814482,0.633044362068176,0.773987054824829,-0.227422684431076,0.698331832885742,0.678683578968048,-0.261051893234253,0.760264217853546,0.594852983951569,-0.301093220710754,0.709899008274078,0.636699378490448,-0.302961528301239,0.743799567222595,0.595798909664154,-0.261051893234253,0.760264217853546,0.594852983951569,-0.323049247264862,0.790066599845886,0.520993113517761,-0.323049247264862,0.790066599845886,0.520993113517761,-0.321463942527771,0.80355167388916,0.500964522361755,-0.302961528301239,0.743799567222595,0.595798909664154,-0.321463942527771,0.80355167388916,0.500964522361755,-0.388793081045151,0.802856028079987,0.451953560113907,-0.346914261579514,0.828899025917053,0.438835710287094,-0.361561417579651,0.841005206108093,0.4024718105793,-0.312516659498215,0.855161309242249,0.413560539484024,-0.346914261579514,0.828899025917053,0.438835710287094,-0.342901080846787,0.867042183876038,0.361464619636536,-0.312516659498215,0.855161309242249,0.413560539484024,-0.361561417579651,0.841005206108093,0.4024718105793,-0.342901080846787,0.867042183876038,0.361464619636536,-0.327250510454178,0.87444019317627,0.358135879039764,-0.315922141075134,0.857251405715942,0.40658712387085,-0.327250510454178,0.87444019317627,0.358135879039764,-0.267341136932373,0.896661520004272,0.35288342833519,-0.28417444229126,0.884436368942261,0.370158135890961,-0.288142174482346,0.889558255672455,0.354485601186752,-0.319101423025131,0.869186699390411,0.377741515636444,\r\n-0.28417444229126,0.884436368942261,0.370158135890961,0.190814599394798,0.86520129442215,0.463698595762253,0.0512110628187656,0.906310975551605,0.419497102499008,-0.144640982151031,0.897597312927246,0.416410893201828,-0.0675052776932716,0.898881018161774,0.432961672544479,0.0512110628187656,0.906310975551605,0.419497102499008,0.123520046472549,0.88137823343277,0.455977082252502,-0.144640982151031,0.897597312927246,0.416410893201828,-0.319101423025131,0.869186699390411,0.377741515636444,-0.28252387046814,0.886219918727875,0.367143511772156,-0.177574038505554,0.524432301521301,0.832729279994965,-0.200769975781441,0.497674435377121,0.843807756900787,-0.111864432692528,0.545822441577911,0.830399930477142,-0.111864432692528,0.545822441577911,0.830399930477142,-0.200769975781441,0.497674435377121,0.843807756900787,-0.158026993274689,0.498767912387848,0.852207720279694,-0.118112944066525,0.226643905043602,0.966789424419403,-0.167187631130219,0.224380508065224,0.960052907466888,-0.117864608764648,0.344730883836746,0.931272447109222,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.158026993274689,0.498767912387848,0.852207720279694,-0.117864608764648,0.344730883836746,0.931272447109222,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.158606812357903,0.606247663497925,0.779299437999725,-0.177574038505554,0.524432301521301,0.832729279994965,-0.111864432692528,0.545822441577911,0.830399930477142,-0.158606812357903,0.606247663497925,0.779299437999725,-0.149838164448738,0.6593017578125,0.736796855926514,-0.227422684431076,0.698331832885742,0.678683578968048,0.190814599394798,0.86520129442215,0.463698595762253,0.268829077482224,0.82608562707901,0.495291233062744,0.123520046472549,0.88137823343277,0.455977082252502,0.305301517248154,0.803956031799316,0.510338604450226,0.268829077482224,0.82608562707901,0.495291233062744,0.319999933242798,0.824891209602356,0.465998411178589,0.0538204722106457,0.882174611091614,0.467836707830429,\r\n0.22693595290184,0.851723372936249,0.472299933433533,0.196796029806137,0.887250900268555,0.417201548814774,-0.176605939865112,0.865476965904236,0.468785434961319,0.0538204722106457,0.882174611091614,0.467836707830429,-0.0595025457441807,0.905492722988129,0.420169323682785,-0.073917917907238,0.86688894033432,0.492990553379059,-0.160103425383568,0.850501298904419,0.501013398170471,-0.176605939865112,0.865476965904236,0.468785434961319,-0.0594217628240585,0.806098580360413,0.58879029750824,-0.160103425383568,0.850501298904419,0.501013398170471,0.159882545471191,0.811274290084839,0.562380194664001,0.305301517248154,0.803956031799316,0.510338604450226,0.29393744468689,0.845030069351196,0.446682035923004,0.22693595290184,0.851723372936249,0.472299933433533,0.571781277656555,0.402737647294998,0.714750587940216,0.821823179721832,0.0141316317021847,0.569567322731018,0.698833703994751,0.263904839754105,0.664819955825806,0.294198483228683,0.688182532787323,0.663213312625885,0.681636214256287,0.386375278234482,0.621358335018158,0.571781277656555,0.402737647294998,0.714750587940216,0.319304376840591,0.691225290298462,0.648268580436707,0.681636214256287,0.386375278234482,0.621358335018158,0.294198483228683,0.688182532787323,0.663213312625885,0.159882545471191,0.811274290084839,0.562380194664001,0.319304376840591,0.691225290298462,0.648268580436707,-0.0594217628240585,0.806098580360413,0.58879029750824,0.86904376745224,-0.00911622773855925,0.494651079177856,0.85932058095932,0.106064178049564,0.500318288803101,0.821823179721832,0.0141316317021847,0.569567322731018,0.788499474525452,0.0463692955672741,0.613284945487976,0.74127721786499,-0.131764367222786,0.658138334751129,0.836142897605896,-0.0450863316655159,0.546655356884003,0.711509823799133,-0.188614770770073,0.676888525485992,0.670956015586853,-0.264512985944748,0.692712604999542,0.74127721786499,-0.131764367222786,0.658138334751129,0.633164703845978,-0.22199758887291,0.741498053073883,0.670956015586853,-0.264512985944748,0.692712604999542,0.667778253555298,-0.327114015817642,0.668631792068481,\r\n0.836142897605896,-0.0450863316655159,0.546655356884003,0.86904376745224,-0.00911622773855925,0.494651079177856,0.816521406173706,0.0584375895559788,0.574349820613861,0.667778253555298,-0.327114015817642,0.668631792068481,0.625141739845276,-0.343693524599075,0.700765550136566,0.575068295001984,-0.148228332400322,0.804564952850342,0.516926825046539,-0.323344171047211,0.792612791061401,0.492316842079163,-0.416996002197266,0.764027714729309,0.349001109600067,-0.466373682022095,0.812830686569214,0.625141739845276,-0.343693524599075,0.700765550136566,0.632216513156891,-0.348908185958862,0.691784083843231,0.516926825046539,-0.323344171047211,0.792612791061401,0.226469725370407,-0.531719088554382,0.81607973575592,0.349001109600067,-0.466373682022095,0.812830686569214,0.293579995632172,-0.598074555397034,0.745732843875885,0.441819697618485,-0.610599756240845,0.657239019870758,0.380833387374878,-0.371999353170395,0.846511840820313,0.274013012647629,-0.593513906002045,0.756741642951965,0.274013012647629,-0.593513906002045,0.756741642951965,0.226469725370407,-0.531719088554382,0.81607973575592,0.293579995632172,-0.598074555397034,0.745732843875885,0.192994356155396,-0.0209497734904289,0.980976164340973,-0.0475290790200233,0.286867141723633,0.956790566444397,0.0460068061947823,0.211392968893051,0.976317703723907,-0.0396724566817284,0.250813543796539,0.967222094535828,-0.0475290790200233,0.286867141723633,0.956790566444397,0.192994356155396,-0.0209497734904289,0.980976164340973,-0.206212520599365,0.414413273334503,0.886418640613556,-0.0396724566817284,0.250813543796539,0.967222094535828,-0.144715830683708,0.351668685674667,0.92487096786499,-0.144715830683708,0.351668685674667,0.92487096786499,-0.19316354393959,0.399017781019211,0.8963662981987,-0.206212520599365,0.414413273334503,0.886418640613556,0.508974194526672,-0.299754649400711,0.806902885437012,0.429453462362289,-0.0933390259742737,0.898252427577972,0.579841077327728,-0.48977255821228,0.651081383228302,0.214117780327797,0.194863140583038,0.957173764705658,0.508974194526672,-0.299754649400711,0.806902885437012,\r\n0.192994356155396,-0.0209497734904289,0.980976164340973,0.441819697618485,-0.610599756240845,0.657239019870758,0.579841077327728,-0.48977255821228,0.651081383228302,0.380833387374878,-0.371999353170395,0.846511840820313,0.192994356155396,-0.0209497734904289,0.980976164340973,0.0460068061947823,0.211392968893051,0.976317703723907,0.214117780327797,0.194863140583038,0.957173764705658,-0.144715830683708,0.351668685674667,0.92487096786499,0.085183173418045,-0.0245090182870626,0.996063768863678,-0.170063838362694,0.292211562395096,0.941111385822296,0.280864298343658,-0.0524371638894081,0.958313882350922,0.154079109430313,-0.0518250875174999,0.986698389053345,0.277465254068375,-0.143271073698998,0.949992835521698,0.280864298343658,-0.0524371638894081,0.958313882350922,0.277465254068375,-0.143271073698998,0.949992835521698,0.304726809263229,-0.182384088635445,0.934814155101776,0.185323014855385,-0.134073868393898,0.973488330841064,0.304726809263229,-0.182384088635445,0.934814155101776,0.141635119915009,-0.228774756193161,0.963120698928833,0.548263430595398,-0.449575424194336,0.705187201499939,0.515210807323456,-0.472400456666946,0.715119183063507,0.543717384338379,-0.515437424182892,0.662340879440308,0.0651161596179008,-0.123993672430515,0.990144073963165,0.141635119915009,-0.228774756193161,0.963120698928833,0.110097415745258,-0.252197772264481,0.961392045021057,0.538480341434479,-0.374638617038727,0.754774570465088,0.341279804706573,-0.261055886745453,0.902982711791992,0.321039617061615,-0.401533633470535,0.857731878757477,0.515210807323456,-0.472400456666946,0.715119183063507,0.535665512084961,-0.399341583251953,0.744035363197327,0.538480341434479,-0.374638617038727,0.754774570465088,0.110097415745258,-0.252197772264481,0.961392045021057,0.341279804706573,-0.261055886745453,0.902982711791992,0.172259241342545,-0.0737808346748352,0.982284605503082,0.351388424634933,0.132021114230156,0.926874577999115,0.238296136260033,0.301764577627182,0.923121333122253,0.182783305644989,0.165355131030083,0.969147980213165,0.360401719808578,-0.0427653640508652,0.931816339492798,\r\n0.493319451808929,-0.0645067766308784,0.86745297908783,0.351388424634933,0.132021114230156,0.926874577999115,0.312040716409683,-0.169968754053116,0.934741199016571,0.172686040401459,0.21707771718502,0.96075838804245,0.31482794880867,-0.0679018646478653,0.946716725826263,0.238296136260033,0.301764577627182,0.923121333122253,0.34716522693634,0.0807160884141922,0.934323906898499,0.172686040401459,0.21707771718502,0.96075838804245,0.470881640911102,-0.241609305143356,0.848466455936432,0.469417363405228,-0.169011503458023,0.86665004491806,0.381828218698502,-0.192163974046707,0.904035449028015,0.484358608722687,-0.396458089351654,0.779883086681366,0.521891057491302,-0.326715558767319,0.787963509559631,0.470881640911102,-0.241609305143356,0.848466455936432,0.360401719808578,-0.0427653640508652,0.931816339492798,0.469417363405228,-0.169011503458023,0.86665004491806,0.493319451808929,-0.0645067766308784,0.86745297908783,0.536342620849609,-0.566439688205719,0.625685632228851,0.491221815347672,-0.560847938060761,0.666446208953857,0.509695708751678,-0.514814496040344,0.689330220222473,0.435147136449814,-0.491290688514709,0.754506647586823,0.491221815347672,-0.560847938060761,0.666446208953857,0.453352749347687,-0.562883019447327,0.691110670566559,0.548263430595398,-0.449575424194336,0.705187201499939,0.543717384338379,-0.515437424182892,0.662340879440308,0.509695708751678,-0.514814496040344,0.689330220222473,0.435147136449814,-0.491290688514709,0.754506647586823,0.453352749347687,-0.562883019447327,0.691110670566559,0.350025534629822,-0.365515172481537,0.86248517036438,0.350025534629822,-0.365515172481537,0.86248517036438,0.312040716409683,-0.169968754053116,0.934741199016571,0.435147136449814,-0.491290688514709,0.754506647586823,0.206685096025467,-0.104900427162647,0.97276771068573,0.125377282500267,-0.0810925662517548,0.988789260387421,0.154079109430313,-0.0518250875174999,0.986698389053345,0.207866907119751,-0.342667102813721,0.916171610355377,0.242217808961868,-0.188653439283371,0.951703906059265,0.125377282500267,-0.0810925662517548,0.988789260387421,\r\n0.225929945707321,-0.386457145214081,0.894207119941711,0.207866907119751,-0.342667102813721,0.916171610355377,0.231584221124649,-0.515248358249664,0.825159192085266,0.231584221124649,-0.515248358249664,0.825159192085266,0.113590382039547,-0.504742920398712,0.855763852596283,0.225929945707321,-0.386457145214081,0.894207119941711,0.330106168985367,-0.30880731344223,0.892002165317535,0.193904742598534,-0.255643784999847,0.947125673294067,0.202385470271111,-0.452852576971054,0.868311285972595,0.202385470271111,-0.452852576971054,0.868311285972595,0.113590382039547,-0.504742920398712,0.855763852596283,0.231584221124649,-0.515248358249664,0.825159192085266,0.141116693615913,0.130605041980743,0.981340050697327,0.14206662774086,-0.00240575941279531,0.989854156970978,0.141233041882515,0.118398100137711,0.982870697975159,0.14206662774086,-0.00240575941279531,0.989854156970978,0.227408066391945,-0.122943341732025,0.966007471084595,0.244865775108337,-0.0780725851655006,0.966408491134644,0.227408066391945,-0.122943341732025,0.966007471084595,0.279004245996475,-0.109212450683117,0.954059302806854,0.345019370317459,-0.19679693877697,0.917732238769531,0.238197445869446,0.106113001704216,0.965402483940125,0.338836014270782,-0.113080225884914,0.93402510881424,0.331478923559189,0.0326187126338482,0.942898571491241,0.330106168985367,-0.30880731344223,0.892002165317535,0.338836014270782,-0.113080225884914,0.93402510881424,0.268612563610077,-0.0722378119826317,0.960535705089569,0.190370127558708,0.0261179655790329,0.981364846229553,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.141116693615913,0.130605041980743,0.981340050697327,0.238197445869446,0.106113001704216,0.965402483940125,0.331478923559189,0.0326187126338482,0.942898571491241,0.190370127558708,0.0261179655790329,0.981364846229553,0.509767770767212,-0.185980647802353,0.839968979358673,0.370119392871857,-0.292474985122681,0.881742537021637,0.457254499197006,-0.254931151866913,0.852014243602753,0.279004245996475,-0.109212450683117,0.954059302806854,0.524641633033752,-0.158042415976524,0.836524724960327,\r\n0.345019370317459,-0.19679693877697,0.917732238769531,0.509767770767212,-0.185980647802353,0.839968979358673,0.457254499197006,-0.254931151866913,0.852014243602753,0.524641633033752,-0.158042415976524,0.836524724960327,0.359436810016632,-0.160319536924362,0.919294655323029,0.259693384170532,0.0318061858415604,0.965167164802551,0.141391679644585,-0.0835231617093086,0.986423969268799,0.359436810016632,-0.160319536924362,0.919294655323029,0.370119392871857,-0.292474985122681,0.881742537021637,0.509767770767212,-0.185980647802353,0.839968979358673,0.104236483573914,0.218462377786636,0.970262229442596,0.0530214086174965,0.0709187760949135,0.996071875095367,0.259693384170532,0.0318061858415604,0.965167164802551,0.066582590341568,0.208219885826111,0.975813090801239,0.104236483573914,0.218462377786636,0.970262229442596,0.188291743397713,0.210640773177147,0.959258377552032,-0.00504655903205276,0.051175482571125,0.998676896095276,-0.0685457140207291,0.19324816763401,0.978752553462982,0.066582590341568,0.208219885826111,0.975813090801239,-0.0685457140207291,0.19324816763401,0.978752553462982,-0.00504655903205276,0.051175482571125,0.998676896095276,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.102870747447014,0.0613149702548981,0.99280309677124,-0.0918020531535149,0.0717685595154762,0.993187546730042,-0.0918020531535149,0.0717685595154762,0.993187546730042,-0.102870747447014,0.0613149702548981,0.99280309677124,-0.0105868661776185,0.0439645834267139,0.998976945877075,-0.0626468360424042,0.0792129710316658,0.994887113571167,0.0481184758245945,0.159732326865196,0.985986888408661,-0.102870747447014,0.0613149702548981,0.99280309677124,0.106319591403008,0.394990116357803,0.912512362003326,0.0657772421836853,0.450890600681305,0.890152156352997,0.10322343558073,0.314330607652664,0.943684816360474,0.117201961576939,0.209685459733009,0.9707190990448,0.121466927230358,0.210624292492867,0.969991326332092,0.0756721943616867,0.198664948344231,0.977141678333282,0.0481184758245945,0.159732326865196,0.985986888408661,\r\n0.00445905653759837,0.195166260004044,0.980759978294373,0.0756721943616867,0.198664948344231,0.977141678333282,0.10322343558073,0.314330607652664,0.943684816360474,0.117201961576939,0.209685459733009,0.9707190990448,0.158996641635895,0.268071621656418,0.950188159942627,-0.00204519764520228,0.810361266136169,0.585926830768585,-0.0286849662661552,0.817149579524994,0.575711369514465,0.00401627318933606,0.727492332458496,0.686103940010071,0.115128502249718,0.46953010559082,0.87537807226181,-0.0702708140015602,0.0109441531822085,0.997467756271362,0.0222943108528852,0.293574810028076,0.955676019191742,-0.0731688365340233,0.146398484706879,0.986515939235687,0.0222943108528852,0.293574810028076,0.955676019191742,-0.0772864669561386,-0.0484077595174313,0.995833039283752,0.0496192313730717,0.782712638378143,0.620401978492737,0.0547534115612507,0.721443355083466,0.690305292606354,0.0465957298874855,0.940351188182831,0.33699905872345,0.0547534115612507,0.721443355083466,0.690305292606354,-0.0715653225779533,0.220032408833504,0.972863852977753,0.115128502249718,0.46953010559082,0.87537807226181,0.0496785417199135,0.860121965408325,0.507663369178772,0.00939250458031893,0.934576094150543,0.355639100074768,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.0158139653503895,0.957235038280487,0.288878589868546,0.00939250458031893,0.934576094150543,0.355639100074768,-0.00447735283523798,0.972510516643524,0.232815697789192,0.0112745547667146,0.966052532196045,0.258099287748337,-0.0158139653503895,0.957235038280487,0.288878589868546,-0.00447735283523798,0.972510516643524,0.232815697789192,0.0465957298874855,0.940351188182831,0.33699905872345,0.0112745547667146,0.966052532196045,0.258099287748337,0.0496192313730717,0.782712638378143,0.620401978492737,0.0496785417199135,0.860121965408325,0.507663369178772,-0.0213953144848347,0.889397442340851,0.456633627414703,-0.00204519764520228,0.810361266136169,0.585926830768585,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.165010556578636,0.121589690446854,0.978768289089203,-0.0532539747655392,0.10844498872757,0.992675006389618,\r\n-0.165010556578636,0.121589690446854,0.978768289089203,-0.118112944066525,0.226643905043602,0.966789424419403,-0.0532539747655392,0.10844498872757,0.992675006389618,0.0657772421836853,0.450890600681305,0.890152156352997,0.045506376773119,0.519245266914368,0.853412806987762,0.0297022331506014,0.568653523921967,0.822040617465973,0.045506376773119,0.519245266914368,0.853412806987762,0.107997708022594,0.520256280899048,0.847153902053833,0.0140959154814482,0.633044362068176,0.773987054824829,0.133795946836472,0.746883988380432,0.651354610919952,0.00401627318933606,0.727492332458496,0.686103940010071,0.121039420366287,0.635125458240509,0.762866258621216,0.121039420366287,0.635125458240509,0.762866258621216,0.0140959154814482,0.633044362068176,0.773987054824829,0.107997708022594,0.520256280899048,0.847153902053833,-0.261051893234253,0.760264217853546,0.594852983951569,-0.227422684431076,0.698331832885742,0.678683578968048,-0.225907981395721,0.746692597866058,0.625632107257843,-0.224417150020599,0.816890299320221,0.531344532966614,-0.323049247264862,0.790066599845886,0.520993113517761,-0.261051893234253,0.760264217853546,0.594852983951569,-0.321463942527771,0.80355167388916,0.500964522361755,-0.323049247264862,0.790066599845886,0.520993113517761,-0.388793081045151,0.802856028079987,0.451953560113907,-0.388793081045151,0.802856028079987,0.451953560113907,-0.361561417579651,0.841005206108093,0.4024718105793,-0.346914261579514,0.828899025917053,0.438835710287094,-0.378954887390137,0.838237762451172,0.392110347747803,-0.342901080846787,0.867042183876038,0.361464619636536,-0.361561417579651,0.841005206108093,0.4024718105793,-0.327250510454178,0.87444019317627,0.358135879039764,-0.342901080846787,0.867042183876038,0.361464619636536,-0.378954887390137,0.838237762451172,0.392110347747803,-0.329680740833282,0.880092322826386,0.341684013605118,-0.267341136932373,0.896661520004272,0.35288342833519,-0.327250510454178,0.87444019317627,0.358135879039764,-0.267341136932373,0.896661520004272,0.35288342833519,-0.288142174482346,0.889558255672455,0.354485601186752,\r\n-0.28417444229126,0.884436368942261,0.370158135890961,-0.288142174482346,0.889558255672455,0.354485601186752,-0.28252387046814,0.886219918727875,0.367143511772156,-0.319101423025131,0.869186699390411,0.377741515636444,0.190814599394798,0.86520129442215,0.463698595762253,0.123520046472549,0.88137823343277,0.455977082252502,0.0512110628187656,0.906310975551605,0.419497102499008,0.190814599394798,0.86520129442215,0.463698595762253,-0.144640982151031,0.897597312927246,0.416410893201828,0.0568487904965878,0.895864903926849,0.440674692392349,-0.144640982151031,0.897597312927246,0.416410893201828,-0.28252387046814,0.886219918727875,0.367143511772156,-0.175146922469139,0.895134150981903,0.409949243068695,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.111864432692528,0.545822441577911,0.830399930477142,-0.158026993274689,0.498767912387848,0.852207720279694,-0.167187631130219,0.224380508065224,0.960052907466888,-0.118112944066525,0.226643905043602,0.966789424419403,-0.165010556578636,0.121589690446854,0.978768289089203,-0.117864608764648,0.344730883836746,0.931272447109222,-0.167187631130219,0.224380508065224,0.960052907466888,-0.150593146681786,0.252001345157623,0.955937743186951,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.028650525957346,0.326502531766891,0.944761991500854,-0.010741226375103,0.421107977628708,0.906946837902069,-0.117864608764648,0.344730883836746,0.931272447109222,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.0828673914074898,0.435338646173477,0.896444737911224,-0.111864432692528,0.545822441577911,0.830399930477142,-0.100852631032467,0.58144474029541,0.807310700416565,-0.158606812357903,0.606247663497925,0.779299437999725,-0.110477574169636,0.622964382171631,0.774409413337708,-0.149838164448738,0.6593017578125,0.736796855926514,-0.158606812357903,0.606247663497925,0.779299437999725,-0.227422684431076,0.698331832885742,0.678683578968048,\r\n-0.149838164448738,0.6593017578125,0.736796855926514,-0.19915409386158,0.729276537895203,0.654593944549561,0.190814599394798,0.86520129442215,0.463698595762253,0.319999933242798,0.824891209602356,0.465998411178589,0.268829077482224,0.82608562707901,0.495291233062744,0.305301517248154,0.803956031799316,0.510338604450226,0.319999933242798,0.824891209602356,0.465998411178589,0.29393744468689,0.845030069351196,0.446682035923004,0.196796029806137,0.887250900268555,0.417201548814774,0.22693595290184,0.851723372936249,0.472299933433533,0.237675786018372,0.889008045196533,0.391375482082367,0.0997990518808365,0.90709924697876,0.408914387226105,0.0538204722106457,0.882174611091614,0.467836707830429,0.196796029806137,0.887250900268555,0.417201548814774,0.0997990518808365,0.90709924697876,0.408914387226105,-0.0595025457441807,0.905492722988129,0.420169323682785,0.0538204722106457,0.882174611091614,0.467836707830429,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.176605939865112,0.865476965904236,0.468785434961319,-0.0595025457441807,0.905492722988129,0.420169323682785,-0.160103425383568,0.850501298904419,0.501013398170471,-0.073917917907238,0.86688894033432,0.492990553379059,0.159882545471191,0.811274290084839,0.562380194664001,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.073917917907238,0.86688894033432,0.492990553379059,-0.176605939865112,0.865476965904236,0.468785434961319,0.29393744468689,0.845030069351196,0.446682035923004,0.237675786018372,0.889008045196533,0.391375482082367,0.22693595290184,0.851723372936249,0.472299933433533,0.859439492225647,0.0908604338765144,0.503098428249359,0.821823179721832,0.0141316317021847,0.569567322731018,0.571781277656555,0.402737647294998,0.714750587940216,0.681636214256287,0.386375278234482,0.621358335018158,0.859439492225647,0.0908604338765144,0.503098428249359,0.571781277656555,0.402737647294998,0.714750587940216,0.607379853725433,0.543282330036163,0.579598009586334,0.681636214256287,0.386375278234482,0.621358335018158,0.319304376840591,0.691225290298462,0.648268580436707,\r\n0.159882545471191,0.811274290084839,0.562380194664001,0.607379853725433,0.543282330036163,0.579598009586334,0.319304376840591,0.691225290298462,0.648268580436707,0.86904376745224,-0.00911622773855925,0.494651079177856,0.821823179721832,0.0141316317021847,0.569567322731018,0.869013845920563,-0.048482745885849,0.492406666278839,0.788499474525452,0.0463692955672741,0.613284945487976,0.754453659057617,-0.0261592641472816,0.655831694602966,0.74127721786499,-0.131764367222786,0.658138334751129,0.788499474525452,0.0463692955672741,0.613284945487976,0.836142897605896,-0.0450863316655159,0.546655356884003,0.816521406173706,0.0584375895559788,0.574349820613861,0.684021532535553,-0.279578238725662,0.673758387565613,0.670956015586853,-0.264512985944748,0.692712604999542,0.711509823799133,-0.188614770770073,0.676888525485992,0.711509823799133,-0.188614770770073,0.676888525485992,0.74127721786499,-0.131764367222786,0.658138334751129,0.754453659057617,-0.0261592641472816,0.655831694602966,0.684021532535553,-0.279578238725662,0.673758387565613,0.667778253555298,-0.327114015817642,0.668631792068481,0.670956015586853,-0.264512985944748,0.692712604999542,0.816521406173706,0.0584375895559788,0.574349820613861,0.86904376745224,-0.00911622773855925,0.494651079177856,0.845514535903931,0.034278754144907,0.532850801944733,0.625141739845276,-0.343693524599075,0.700765550136566,0.667778253555298,-0.327114015817642,0.668631792068481,0.632216513156891,-0.348908185958862,0.691784083843231,0.516926825046539,-0.323344171047211,0.792612791061401,0.632216513156891,-0.348908185958862,0.691784083843231,0.492316842079163,-0.416996002197266,0.764027714729309,0.385927557945251,-0.476688414812088,0.789827764034271,0.349001109600067,-0.466373682022095,0.812830686569214,0.492316842079163,-0.416996002197266,0.764027714729309,0.385927557945251,-0.476688414812088,0.789827764034271,0.293579995632172,-0.598074555397034,0.745732843875885,0.349001109600067,-0.466373682022095,0.812830686569214,0.441819697618485,-0.610599756240845,0.657239019870758,0.274013012647629,-0.593513906002045,0.756741642951965,\r\n0.389585107564926,-0.624979019165039,0.676479518413544,0.274013012647629,-0.593513906002045,0.756741642951965,0.293579995632172,-0.598074555397034,0.745732843875885,0.389585107564926,-0.624979019165039,0.676479518413544,0.192994356155396,-0.0209497734904289,0.980976164340973,0.228182777762413,-0.296950876712799,0.927228510379791,-0.0396724566817284,0.250813543796539,0.967222094535828,0.085183173418045,-0.0245090182870626,0.996063768863678,-0.144715830683708,0.351668685674667,0.92487096786499,-0.0396724566817284,0.250813543796539,0.967222094535828,0.643270194530487,-0.562820374965668,0.519072890281677,0.508974194526672,-0.299754649400711,0.806902885437012,0.579841077327728,-0.48977255821228,0.651081383228302,0.508974194526672,-0.299754649400711,0.806902885437012,0.519362688064575,-0.493750900030136,0.697475671768188,0.192994356155396,-0.0209497734904289,0.980976164340973,0.441819697618485,-0.610599756240845,0.657239019870758,0.579044759273529,-0.588093042373657,0.564671158790588,0.579841077327728,-0.48977255821228,0.651081383228302,0.206685096025467,-0.104900427162647,0.97276771068573,0.154079109430313,-0.0518250875174999,0.986698389053345,0.280864298343658,-0.0524371638894081,0.958313882350922,0.185323014855385,-0.134073868393898,0.973488330841064,0.280864298343658,-0.0524371638894081,0.958313882350922,0.304726809263229,-0.182384088635445,0.934814155101776,0.0651161596179008,-0.123993672430515,0.990144073963165,0.185323014855385,-0.134073868393898,0.973488330841064,0.141635119915009,-0.228774756193161,0.963120698928833,0.548263430595398,-0.449575424194336,0.705187201499939,0.535665512084961,-0.399341583251953,0.744035363197327,0.515210807323456,-0.472400456666946,0.715119183063507,0.110097415745258,-0.252197772264481,0.961392045021057,0.172259241342545,-0.0737808346748352,0.982284605503082,0.0651161596179008,-0.123993672430515,0.990144073963165,0.538480341434479,-0.374638617038727,0.754774570465088,0.569280862808228,-0.250347048044205,0.783100008964539,0.341279804706573,-0.261055886745453,0.902982711791992,0.611268937587738,-0.302311152219772,0.731408357620239,\r\n0.538480341434479,-0.374638617038727,0.754774570465088,0.535665512084961,-0.399341583251953,0.744035363197327,0.462737858295441,-0.0702100619673729,0.883710384368896,0.172259241342545,-0.0737808346748352,0.982284605503082,0.341279804706573,-0.261055886745453,0.902982711791992,0.355117648839951,0.293870389461517,0.887429714202881,0.238296136260033,0.301764577627182,0.923121333122253,0.351388424634933,0.132021114230156,0.926874577999115,0.498282194137573,0.0770204067230225,0.863587021827698,0.351388424634933,0.132021114230156,0.926874577999115,0.493319451808929,-0.0645067766308784,0.86745297908783,0.31482794880867,-0.0679018646478653,0.946716725826263,0.172686040401459,0.21707771718502,0.96075838804245,0.34716522693634,0.0807160884141922,0.934323906898499,0.312040716409683,-0.169968754053116,0.934741199016571,0.31482794880867,-0.0679018646478653,0.946716725826263,0.410685688257217,-0.36911553144455,0.833721101284027,0.34716522693634,0.0807160884141922,0.934323906898499,0.238296136260033,0.301764577627182,0.923121333122253,0.354949861764908,0.227069184184074,0.906890332698822,0.469417363405228,-0.169011503458023,0.86665004491806,0.470881640911102,-0.241609305143356,0.848466455936432,0.521891057491302,-0.326715558767319,0.787963509559631,0.484358608722687,-0.396458089351654,0.779883086681366,0.549715757369995,-0.59162175655365,0.589742362499237,0.521891057491302,-0.326715558767319,0.787963509559631,0.493319451808929,-0.0645067766308784,0.86745297908783,0.469417363405228,-0.169011503458023,0.86665004491806,0.593823134899139,-0.216114103794098,0.775028109550476,0.509695708751678,-0.514814496040344,0.689330220222473,0.491221815347672,-0.560847938060761,0.666446208953857,0.435147136449814,-0.491290688514709,0.754506647586823,0.42683419585228,-0.497022897005081,0.755500316619873,0.548263430595398,-0.449575424194336,0.705187201499939,0.509695708751678,-0.514814496040344,0.689330220222473,0.312040716409683,-0.169968754053116,0.934741199016571,0.410685688257217,-0.36911553144455,0.833721101284027,0.435147136449814,-0.491290688514709,0.754506647586823,\r\n0.206685096025467,-0.104900427162647,0.97276771068573,0.207866907119751,-0.342667102813721,0.916171610355377,0.125377282500267,-0.0810925662517548,0.988789260387421,0.231584221124649,-0.515248358249664,0.825159192085266,0.207866907119751,-0.342667102813721,0.916171610355377,0.332927405834198,-0.434002727270126,0.837138533592224,0.330106168985367,-0.30880731344223,0.892002165317535,0.202385470271111,-0.452852576971054,0.868311285972595,0.317990660667419,-0.450438648462296,0.834258258342743,0.317990660667419,-0.450438648462296,0.834258258342743,0.202385470271111,-0.452852576971054,0.868311285972595,0.231584221124649,-0.515248358249664,0.825159192085266,0.141116693615913,0.130605041980743,0.981340050697327,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.14206662774086,-0.00240575941279531,0.989854156970978,0.14206662774086,-0.00240575941279531,0.989854156970978,0.0790688768029213,-0.0962335765361786,0.992213249206543,0.227408066391945,-0.122943341732025,0.966007471084595,0.227408066391945,-0.122943341732025,0.966007471084595,0.0358700305223465,-0.130511805415154,0.990797638893127,0.279004245996475,-0.109212450683117,0.954059302806854,0.338836014270782,-0.113080225884914,0.93402510881424,0.424636393785477,-0.188246324658394,0.885577261447906,0.331478923559189,0.0326187126338482,0.942898571491241,0.401609867811203,-0.359731465578079,0.842201054096222,0.338836014270782,-0.113080225884914,0.93402510881424,0.330106168985367,-0.30880731344223,0.892002165317535,0.0880391746759415,-0.137878462672234,0.986528515815735,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.190370127558708,0.0261179655790329,0.981364846229553,0.278207957744598,0.0166163500398397,0.960377037525177,0.190370127558708,0.0261179655790329,0.981364846229553,0.331478923559189,0.0326187126338482,0.942898571491241,0.279004245996475,-0.109212450683117,0.954059302806854,0.386414736509323,-0.0481171458959579,0.921069145202637,0.524641633033752,-0.158042415976524,0.836524724960327,0.524641633033752,-0.158042415976524,0.836524724960327,0.500188171863556,-0.0413050875067711,0.864930927753448,\r\n0.509767770767212,-0.185980647802353,0.839968979358673,0.359436810016632,-0.160319536924362,0.919294655323029,0.500188171863556,-0.0413050875067711,0.864930927753448,0.259693384170532,0.0318061858415604,0.965167164802551,0.359436810016632,-0.160319536924362,0.919294655323029,0.509767770767212,-0.185980647802353,0.839968979358673,0.500188171863556,-0.0413050875067711,0.864930927753448,0.341392546892166,0.162806004285812,0.925713360309601,0.104236483573914,0.218462377786636,0.970262229442596,0.259693384170532,0.0318061858415604,0.965167164802551,0.188291743397713,0.210640773177147,0.959258377552032,0.104236483573914,0.218462377786636,0.970262229442596,0.341392546892166,0.162806004285812,0.925713360309601,0.188291743397713,0.210640773177147,0.959258377552032,0.0898893475532532,0.0892948880791664,0.99194061756134,0.066582590341568,0.208219885826111,0.975813090801239,0.0898893475532532,0.0892948880791664,0.99194061756134,-0.00504655903205276,0.051175482571125,0.998676896095276,0.066582590341568,0.208219885826111,0.975813090801239,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.00504655903205276,0.051175482571125,0.998676896095276,-0.0626468360424042,0.0792129710316658,0.994887113571167,-0.128358438611031,0.0388894304633141,0.990964889526367,-0.0626468360424042,0.0792129710316658,0.994887113571167,-0.102870747447014,0.0613149702548981,0.99280309677124,-0.0626468360424042,0.0792129710316658,0.994887113571167,0.00445905653759837,0.195166260004044,0.980759978294373,0.0481184758245945,0.159732326865196,0.985986888408661,0.106319591403008,0.394990116357803,0.912512362003326,0.045506376773119,0.519245266914368,0.853412806987762,0.0657772421836853,0.450890600681305,0.890152156352997,0.10322343558073,0.314330607652664,0.943684816360474,0.158996641635895,0.268071621656418,0.950188159942627,0.106319591403008,0.394990116357803,0.912512362003326,0.117201961576939,0.209685459733009,0.9707190990448,0.0756721943616867,0.198664948344231,0.977141678333282,0.0667813345789909,0.240893915295601,0.968251168727875,0.0756721943616867,0.198664948344231,0.977141678333282,\r\n0.00445905653759837,0.195166260004044,0.980759978294373,0.0667813345789909,0.240893915295601,0.968251168727875,0.137911349534988,0.255326420068741,0.956968545913696,0.158996641635895,0.268071621656418,0.950188159942627,0.117201961576939,0.209685459733009,0.9707190990448,-0.00204519764520228,0.810361266136169,0.585926830768585,0.00401627318933606,0.727492332458496,0.686103940010071,0.133795946836472,0.746883988380432,0.651354610919952,-0.0715653225779533,0.220032408833504,0.972863852977753,-0.0702708140015602,0.0109441531822085,0.997467756271362,0.115128502249718,0.46953010559082,0.87537807226181,-0.0772864669561386,-0.0484077595174313,0.995833039283752,0.0222943108528852,0.293574810028076,0.955676019191742,-0.0702708140015602,0.0109441531822085,0.997467756271362,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.0772864669561386,-0.0484077595174313,0.995833039283752,-0.151409164071083,0.00987077318131924,0.988421857357025,0.0496192313730717,0.782712638378143,0.620401978492737,-0.0715653225779533,0.220032408833504,0.972863852977753,0.0547534115612507,0.721443355083466,0.690305292606354,0.00939250458031893,0.934576094150543,0.355639100074768,0.0496785417199135,0.860121965408325,0.507663369178772,0.129757806658745,0.898173391819,0.420056343078613,0.0720953866839409,0.952698290348053,0.29524239897728,-0.00447735283523798,0.972510516643524,0.232815697789192,0.00939250458031893,0.934576094150543,0.355639100074768,0.00109900732059032,0.952879071235657,0.303348302841187,0.0112745547667146,0.966052532196045,0.258099287748337,-0.00447735283523798,0.972510516643524,0.232815697789192,0.0112745547667146,0.966052532196045,0.258099287748337,0.00109900732059032,0.952879071235657,0.303348302841187,0.0496192313730717,0.782712638378143,0.620401978492737,-0.00204519764520228,0.810361266136169,0.585926830768585,0.133795946836472,0.746883988380432,0.651354610919952,0.0496785417199135,0.860121965408325,0.507663369178772,-0.0731688365340233,0.146398484706879,0.986515939235687,-0.151409164071083,0.00987077318131924,0.988421857357025,\r\n-0.165010556578636,0.121589690446854,0.978768289089203,0.045506376773119,0.519245266914368,0.853412806987762,0.106319591403008,0.394990116357803,0.912512362003326,0.107997708022594,0.520256280899048,0.847153902053833,0.121039420366287,0.635125458240509,0.762866258621216,0.239288210868835,0.647522807121277,0.723502039909363,0.133795946836472,0.746883988380432,0.651354610919952,0.234011828899384,0.542003512382507,0.807137250900269,0.121039420366287,0.635125458240509,0.762866258621216,0.107997708022594,0.520256280899048,0.847153902053833,-0.225907981395721,0.746692597866058,0.625632107257843,-0.227422684431076,0.698331832885742,0.678683578968048,-0.19915409386158,0.729276537895203,0.654593944549561,-0.225907981395721,0.746692597866058,0.625632107257843,-0.203598886728287,0.79917311668396,0.565570294857025,-0.261051893234253,0.760264217853546,0.594852983951569,-0.224417150020599,0.816890299320221,0.531344532966614,-0.268790543079376,0.83925324678421,0.472658038139343,-0.323049247264862,0.790066599845886,0.520993113517761,-0.224417150020599,0.816890299320221,0.531344532966614,-0.261051893234253,0.760264217853546,0.594852983951569,-0.203598886728287,0.79917311668396,0.565570294857025,-0.388793081045151,0.802856028079987,0.451953560113907,-0.323049247264862,0.790066599845886,0.520993113517761,-0.350593030452728,0.817860543727875,0.456276774406433,-0.388793081045151,0.802856028079987,0.451953560113907,-0.371899574995041,0.831559658050537,0.412551939487457,-0.361561417579651,0.841005206108093,0.4024718105793,-0.371899574995041,0.831559658050537,0.412551939487457,-0.378954887390137,0.838237762451172,0.392110347747803,-0.361561417579651,0.841005206108093,0.4024718105793,-0.378954887390137,0.838237762451172,0.392110347747803,-0.382426023483276,0.862344324588776,0.331831902265549,-0.327250510454178,0.87444019317627,0.358135879039764,-0.234829664230347,0.921063184738159,0.310640633106232,-0.267341136932373,0.896661520004272,0.35288342833519,-0.329680740833282,0.880092322826386,0.341684013605118,-0.327250510454178,0.87444019317627,0.358135879039764,\r\n-0.382426023483276,0.862344324588776,0.331831902265549,-0.329680740833282,0.880092322826386,0.341684013605118,-0.288142174482346,0.889558255672455,0.354485601186752,-0.267341136932373,0.896661520004272,0.35288342833519,-0.28252387046814,0.886219918727875,0.367143511772156,0.0568487904965878,0.895864903926849,0.440674692392349,-0.144640982151031,0.897597312927246,0.416410893201828,-0.175146922469139,0.895134150981903,0.409949243068695,0.0568487904965878,0.895864903926849,0.440674692392349,0.239254668354988,0.877859473228455,0.414873242378235,0.190814599394798,0.86520129442215,0.463698595762253,-0.267341136932373,0.896661520004272,0.35288342833519,-0.175146922469139,0.895134150981903,0.409949243068695,-0.28252387046814,0.886219918727875,0.367143511772156,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.111864432692528,0.545822441577911,0.830399930477142,-0.165010556578636,0.121589690446854,0.978768289089203,-0.150593146681786,0.252001345157623,0.955937743186951,-0.167187631130219,0.224380508065224,0.960052907466888,-0.028650525957346,0.326502531766891,0.944761991500854,-0.117864608764648,0.344730883836746,0.931272447109222,-0.150593146681786,0.252001345157623,0.955937743186951,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.0434849821031094,0.474163919687271,0.879361987113953,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.028650525957346,0.326502531766891,0.944761991500854,0.0353103689849377,0.329119145870209,0.943627953529358,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.100852631032467,0.58144474029541,0.807310700416565,-0.111864432692528,0.545822441577911,0.830399930477142,-0.100852631032467,0.58144474029541,0.807310700416565,-0.110477574169636,0.622964382171631,0.774409413337708,-0.158606812357903,0.606247663497925,0.779299437999725,\r\n-0.110477574169636,0.622964382171631,0.774409413337708,-0.140205100178719,0.691294848918915,0.708839774131775,-0.149838164448738,0.6593017578125,0.736796855926514,-0.140205100178719,0.691294848918915,0.708839774131775,-0.19915409386158,0.729276537895203,0.654593944549561,-0.149838164448738,0.6593017578125,0.736796855926514,0.286287754774094,0.851420104503632,0.439457625150681,0.319999933242798,0.824891209602356,0.465998411178589,0.190814599394798,0.86520129442215,0.463698595762253,0.29393744468689,0.845030069351196,0.446682035923004,0.319999933242798,0.824891209602356,0.465998411178589,0.286287754774094,0.851420104503632,0.439457625150681,0.167736500501633,0.921648263931274,0.349898338317871,0.196796029806137,0.887250900268555,0.417201548814774,0.237675786018372,0.889008045196533,0.391375482082367,0.0997990518808365,0.90709924697876,0.408914387226105,0.196796029806137,0.887250900268555,0.417201548814774,0.167736500501633,0.921648263931274,0.349898338317871,0.0997990518808365,0.90709924697876,0.408914387226105,0.0114222317934036,0.937671184539795,0.347335934638977,-0.0595025457441807,0.905492722988129,0.420169323682785,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.0595025457441807,0.905492722988129,0.420169323682785,-0.104090474545956,0.913772940635681,0.392662793397903,0.381621122360229,0.787517905235291,0.483922213315964,0.159882545471191,0.811274290084839,0.562380194664001,-0.073917917907238,0.86688894033432,0.492990553379059,-0.0232548415660858,0.873414874076843,0.486421167850494,0.381621122360229,0.787517905235291,0.483922213315964,-0.073917917907238,0.86688894033432,0.492990553379059,0.237675786018372,0.889008045196533,0.391375482082367,0.29393744468689,0.845030069351196,0.446682035923004,0.247626379132271,0.891215980052948,0.380019903182983,0.859439492225647,0.0908604338765144,0.503098428249359,0.869013845920563,-0.048482745885849,0.492406666278839,0.821823179721832,0.0141316317021847,0.569567322731018,0.681636214256287,0.386375278234482,0.621358335018158,0.861381411552429,0.159530833363533,0.482257038354874,\r\n0.859439492225647,0.0908604338765144,0.503098428249359,0.607379853725433,0.543282330036163,0.579598009586334,0.849613189697266,0.251917123794556,0.463352024555206,0.681636214256287,0.386375278234482,0.621358335018158,0.381621122360229,0.787517905235291,0.483922213315964,0.607379853725433,0.543282330036163,0.579598009586334,0.159882545471191,0.811274290084839,0.562380194664001,0.86904376745224,-0.00911622773855925,0.494651079177856,0.869013845920563,-0.048482745885849,0.492406666278839,0.845514535903931,0.034278754144907,0.532850801944733,0.753895342350006,0.10707651078701,0.648210048675537,0.754453659057617,-0.0261592641472816,0.655831694602966,0.788499474525452,0.0463692955672741,0.613284945487976,0.788499474525452,0.0463692955672741,0.613284945487976,0.816521406173706,0.0584375895559788,0.574349820613861,0.761091649532318,0.112224392592907,0.638862311840057,0.650203287601471,-0.215958446264267,0.728421211242676,0.684021532535553,-0.279578238725662,0.673758387565613,0.711509823799133,-0.188614770770073,0.676888525485992,0.733306288719177,-0.0754149407148361,0.675702929496765,0.711509823799133,-0.188614770770073,0.676888525485992,0.754453659057617,-0.0261592641472816,0.655831694602966,0.684021532535553,-0.279578238725662,0.673758387565613,0.632216513156891,-0.348908185958862,0.691784083843231,0.667778253555298,-0.327114015817642,0.668631792068481,0.795047760009766,0.144300177693367,0.589131891727448,0.816521406173706,0.0584375895559788,0.574349820613861,0.845514535903931,0.034278754144907,0.532850801944733,0.632216513156891,-0.348908185958862,0.691784083843231,0.518583714962006,-0.259198158979416,0.81479275226593,0.492316842079163,-0.416996002197266,0.764027714729309,0.492316842079163,-0.416996002197266,0.764027714729309,0.456511974334717,-0.336588084697723,0.823592841625214,0.385927557945251,-0.476688414812088,0.789827764034271,0.420312404632568,-0.529822945594788,0.736630797386169,0.293579995632172,-0.598074555397034,0.745732843875885,0.385927557945251,-0.476688414812088,0.789827764034271,0.441819697618485,-0.610599756240845,0.657239019870758,\r\n0.389585107564926,-0.624979019165039,0.676479518413544,0.579044759273529,-0.588093042373657,0.564671158790588,0.389585107564926,-0.624979019165039,0.676479518413544,0.293579995632172,-0.598074555397034,0.745732843875885,0.420312404632568,-0.529822945594788,0.736630797386169,0.519362688064575,-0.493750900030136,0.697475671768188,0.228182777762413,-0.296950876712799,0.927228510379791,0.192994356155396,-0.0209497734904289,0.980976164340973,0.085183173418045,-0.0245090182870626,0.996063768863678,-0.0396724566817284,0.250813543796539,0.967222094535828,0.228182777762413,-0.296950876712799,0.927228510379791,0.508974194526672,-0.299754649400711,0.806902885437012,0.643270194530487,-0.562820374965668,0.519072890281677,0.519362688064575,-0.493750900030136,0.697475671768188,0.643270194530487,-0.562820374965668,0.519072890281677,0.579841077327728,-0.48977255821228,0.651081383228302,0.579044759273529,-0.588093042373657,0.564671158790588,0.280864298343658,-0.0524371638894081,0.958313882350922,0.185323014855385,-0.134073868393898,0.973488330841064,0.206685096025467,-0.104900427162647,0.97276771068573,0.196403384208679,-0.153244316577911,0.968473970890045,0.185323014855385,-0.134073868393898,0.973488330841064,0.0651161596179008,-0.123993672430515,0.990144073963165,0.42683419585228,-0.497022897005081,0.755500316619873,0.535665512084961,-0.399341583251953,0.744035363197327,0.548263430595398,-0.449575424194336,0.705187201499939,0.172259241342545,-0.0737808346748352,0.982284605503082,0.158412784337997,-0.0286261644214392,0.986957848072052,0.0651161596179008,-0.123993672430515,0.990144073963165,0.538480341434479,-0.374638617038727,0.754774570465088,0.611268937587738,-0.302311152219772,0.731408357620239,0.569280862808228,-0.250347048044205,0.783100008964539,0.341279804706573,-0.261055886745453,0.902982711791992,0.569280862808228,-0.250347048044205,0.783100008964539,0.462737858295441,-0.0702100619673729,0.883710384368896,0.611268937587738,-0.302311152219772,0.731408357620239,0.535665512084961,-0.399341583251953,0.744035363197327,0.442123591899872,-0.335992395877838,0.83164644241333,\r\n0.462737858295441,-0.0702100619673729,0.883710384368896,0.330249428749084,0.0170612670481205,0.943739414215088,0.172259241342545,-0.0737808346748352,0.982284605503082,0.238296136260033,0.301764577627182,0.923121333122253,0.355117648839951,0.293870389461517,0.887429714202881,0.354949861764908,0.227069184184074,0.906890332698822,0.498282194137573,0.0770204067230225,0.863587021827698,0.355117648839951,0.293870389461517,0.887429714202881,0.351388424634933,0.132021114230156,0.926874577999115,0.577619969844818,-0.069207675755024,0.813366651535034,0.498282194137573,0.0770204067230225,0.863587021827698,0.493319451808929,-0.0645067766308784,0.86745297908783,0.31482794880867,-0.0679018646478653,0.946716725826263,0.34716522693634,0.0807160884141922,0.934323906898499,0.449176847934723,-0.317531019449234,0.835113227367401,0.449176847934723,-0.317531019449234,0.835113227367401,0.410685688257217,-0.36911553144455,0.833721101284027,0.31482794880867,-0.0679018646478653,0.946716725826263,0.34716522693634,0.0807160884141922,0.934323906898499,0.354949861764908,0.227069184184074,0.906890332698822,0.457970947027206,-0.223447516560555,0.860426485538483,0.593823134899139,-0.216114103794098,0.775028109550476,0.469417363405228,-0.169011503458023,0.86665004491806,0.521891057491302,-0.326715558767319,0.787963509559631,0.549715757369995,-0.59162175655365,0.589742362499237,0.652537822723389,-0.449162155389786,0.610284805297852,0.521891057491302,-0.326715558767319,0.787963509559631,0.577619969844818,-0.069207675755024,0.813366651535034,0.493319451808929,-0.0645067766308784,0.86745297908783,0.593823134899139,-0.216114103794098,0.775028109550476,0.45675590634346,-0.515695035457611,0.724867224693298,0.509695708751678,-0.514814496040344,0.689330220222473,0.435147136449814,-0.491290688514709,0.754506647586823,0.45675590634346,-0.515695035457611,0.724867224693298,0.42683419585228,-0.497022897005081,0.755500316619873,0.509695708751678,-0.514814496040344,0.689330220222473,0.45675590634346,-0.515695035457611,0.724867224693298,0.435147136449814,-0.491290688514709,0.754506647586823,\r\n0.410685688257217,-0.36911553144455,0.833721101284027,0.207866907119751,-0.342667102813721,0.916171610355377,0.206685096025467,-0.104900427162647,0.97276771068573,0.227175056934357,-0.265602827072144,0.936934649944305,0.207866907119751,-0.342667102813721,0.916171610355377,0.227175056934357,-0.265602827072144,0.936934649944305,0.332927405834198,-0.434002727270126,0.837138533592224,0.231584221124649,-0.515248358249664,0.825159192085266,0.332927405834198,-0.434002727270126,0.837138533592224,0.317990660667419,-0.450438648462296,0.834258258342743,0.330106168985367,-0.30880731344223,0.892002165317535,0.317990660667419,-0.450438648462296,0.834258258342743,0.332927405834198,-0.434002727270126,0.837138533592224,0.14206662774086,-0.00240575941279531,0.989854156970978,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.0790688768029213,-0.0962335765361786,0.992213249206543,0.0358700305223465,-0.130511805415154,0.990797638893127,0.227408066391945,-0.122943341732025,0.966007471084595,0.0790688768029213,-0.0962335765361786,0.992213249206543,0.279004245996475,-0.109212450683117,0.954059302806854,0.0358700305223465,-0.130511805415154,0.990797638893127,0.0267279967665672,-0.0226760450750589,0.999385476112366,0.338836014270782,-0.113080225884914,0.93402510881424,0.401609867811203,-0.359731465578079,0.842201054096222,0.424636393785477,-0.188246324658394,0.885577261447906,0.424636393785477,-0.188246324658394,0.885577261447906,0.50696188211441,-0.0489546768367291,0.86057710647583,0.331478923559189,0.0326187126338482,0.942898571491241,0.401609867811203,-0.359731465578079,0.842201054096222,0.330106168985367,-0.30880731344223,0.892002165317535,0.332927405834198,-0.434002727270126,0.837138533592224,0.0880391746759415,-0.137878462672234,0.986528515815735,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0911807343363762,-0.0312887094914913,0.995342671871185,0.0880391746759415,-0.137878462672234,0.986528515815735,0.190370127558708,0.0261179655790329,0.981364846229553,0.196599990129471,-0.16146445274353,0.967097461223602,0.236759230494499,-0.0632953196763992,0.969504356384277,\r\n0.190370127558708,0.0261179655790329,0.981364846229553,0.278207957744598,0.0166163500398397,0.960377037525177,0.479864090681076,-0.0362855084240437,0.876592099666595,0.278207957744598,0.0166163500398397,0.960377037525177,0.331478923559189,0.0326187126338482,0.942898571491241,0.386414736509323,-0.0481171458959579,0.921069145202637,0.279004245996475,-0.109212450683117,0.954059302806854,0.0267279967665672,-0.0226760450750589,0.999385476112366,0.386414736509323,-0.0481171458959579,0.921069145202637,0.500188171863556,-0.0413050875067711,0.864930927753448,0.524641633033752,-0.158042415976524,0.836524724960327,0.341392546892166,0.162806004285812,0.925713360309601,0.259693384170532,0.0318061858415604,0.965167164802551,0.500188171863556,-0.0413050875067711,0.864930927753448,0.341392546892166,0.162806004285812,0.925713360309601,0.338858515024185,0.17530058324337,0.924361705780029,0.188291743397713,0.210640773177147,0.959258377552032,0.194042965769768,0.064727783203125,0.97885525226593,0.0898893475532532,0.0892948880791664,0.99194061756134,0.188291743397713,0.210640773177147,0.959258377552032,0.0421166867017746,-0.0331572629511356,0.998562276363373,-0.00504655903205276,0.051175482571125,0.998676896095276,0.0898893475532532,0.0892948880791664,0.99194061756134,0.00388403725810349,0.0494643598794937,0.998768329620361,-0.0626468360424042,0.0792129710316658,0.994887113571167,-0.00504655903205276,0.051175482571125,0.998676896095276,0.00445905653759837,0.195166260004044,0.980759978294373,-0.0626468360424042,0.0792129710316658,0.994887113571167,0.00388403725810349,0.0494643598794937,0.998768329620361,0.106319591403008,0.394990116357803,0.912512362003326,0.158996641635895,0.268071621656418,0.950188159942627,0.202332332730293,0.380738258361816,0.90227484703064,0.137911349534988,0.255326420068741,0.956968545913696,0.117201961576939,0.209685459733009,0.9707190990448,0.0667813345789909,0.240893915295601,0.968251168727875,0.0667813345789909,0.240893915295601,0.968251168727875,0.00445905653759837,0.195166260004044,0.980759978294373,0.0170439686626196,0.198112040758133,0.980031132698059,\r\n0.158996641635895,0.268071621656418,0.950188159942627,0.137911349534988,0.255326420068741,0.956968545913696,0.208017364144325,0.315430462360382,0.925868391990662,-0.0715653225779533,0.220032408833504,0.972863852977753,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0702708140015602,0.0109441531822085,0.997467756271362,-0.0702708140015602,0.0109441531822085,0.997467756271362,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0772864669561386,-0.0484077595174313,0.995833039283752,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.151409164071083,0.00987077318131924,0.988421857357025,-0.0772864669561386,-0.0484077595174313,0.995833039283752,0.0433850064873695,0.261097699403763,0.96433687210083,-0.0715653225779533,0.220032408833504,0.972863852977753,0.0496192313730717,0.782712638378143,0.620401978492737,0.0496785417199135,0.860121965408325,0.507663369178772,0.180904254317284,0.824076890945435,0.536815404891968,0.129757806658745,0.898173391819,0.420056343078613,0.0720953866839409,0.952698290348053,0.29524239897728,0.00939250458031893,0.934576094150543,0.355639100074768,0.129757806658745,0.898173391819,0.420056343078613,0.0720953866839409,0.952698290348053,0.29524239897728,-0.0064420597627759,0.960979998111725,0.276542663574219,-0.00447735283523798,0.972510516643524,0.232815697789192,-0.0064420597627759,0.960979998111725,0.276542663574219,0.00109900732059032,0.952879071235657,0.303348302841187,-0.00447735283523798,0.972510516643524,0.232815697789192,0.0496192313730717,0.782712638378143,0.620401978492737,0.00109900732059032,0.952879071235657,0.303348302841187,0.0108866281807423,0.679473221302032,0.733619391918182,0.0496785417199135,0.860121965408325,0.507663369178772,0.133795946836472,0.746883988380432,0.651354610919952,0.180904254317284,0.824076890945435,0.536815404891968,-0.151409164071083,0.00987077318131924,0.988421857357025,-0.125651016831398,0.143703296780586,0.981611490249634,-0.165010556578636,0.121589690446854,0.978768289089203,0.107997708022594,0.520256280899048,0.847153902053833,\r\n0.106319591403008,0.394990116357803,0.912512362003326,0.202332332730293,0.380738258361816,0.90227484703064,0.234011828899384,0.542003512382507,0.807137250900269,0.239288210868835,0.647522807121277,0.723502039909363,0.121039420366287,0.635125458240509,0.762866258621216,0.245776548981667,0.75172483921051,0.611966907978058,0.133795946836472,0.746883988380432,0.651354610919952,0.239288210868835,0.647522807121277,0.723502039909363,0.234011828899384,0.542003512382507,0.807137250900269,0.107997708022594,0.520256280899048,0.847153902053833,0.202332332730293,0.380738258361816,0.90227484703064,-0.225907981395721,0.746692597866058,0.625632107257843,-0.19915409386158,0.729276537895203,0.654593944549561,-0.203598886728287,0.79917311668396,0.565570294857025,-0.224417150020599,0.816890299320221,0.531344532966614,-0.218974053859711,0.833771049976349,0.506829380989075,-0.268790543079376,0.83925324678421,0.472658038139343,-0.323049247264862,0.790066599845886,0.520993113517761,-0.268790543079376,0.83925324678421,0.472658038139343,-0.350593030452728,0.817860543727875,0.456276774406433,-0.224417150020599,0.816890299320221,0.531344532966614,-0.203598886728287,0.79917311668396,0.565570294857025,-0.218974053859711,0.833771049976349,0.506829380989075,-0.371899574995041,0.831559658050537,0.412551939487457,-0.388793081045151,0.802856028079987,0.451953560113907,-0.350593030452728,0.817860543727875,0.456276774406433,-0.371899574995041,0.831559658050537,0.412551939487457,-0.371809244155884,0.842246532440186,0.390356987714767,-0.378954887390137,0.838237762451172,0.392110347747803,-0.378954887390137,0.838237762451172,0.392110347747803,-0.370282590389252,0.856281757354736,0.360100328922272,-0.382426023483276,0.862344324588776,0.331831902265549,-0.234829664230347,0.921063184738159,0.310640633106232,-0.175146922469139,0.895134150981903,0.409949243068695,-0.267341136932373,0.896661520004272,0.35288342833519,-0.0675895884633064,0.92728579044342,0.36820188164711,0.0568487904965878,0.895864903926849,0.440674692392349,-0.175146922469139,0.895134150981903,0.409949243068695,\r\n0.239254668354988,0.877859473228455,0.414873242378235,0.0568487904965878,0.895864903926849,0.440674692392349,0.159702852368355,0.939021587371826,0.304521471261978,0.239254668354988,0.877859473228455,0.414873242378235,0.286287754774094,0.851420104503632,0.439457625150681,0.190814599394798,0.86520129442215,0.463698595762253,-0.0434849821031094,0.474163919687271,0.879361987113953,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.0295670256018639,0.492189437150955,0.86998575925827,-0.125651016831398,0.143703296780586,0.981611490249634,-0.150593146681786,0.252001345157623,0.955937743186951,-0.165010556578636,0.121589690446854,0.978768289089203,-0.125651016831398,0.143703296780586,0.981611490249634,-0.028650525957346,0.326502531766891,0.944761991500854,-0.150593146681786,0.252001345157623,0.955937743186951,-0.131611049175262,0.468630582094193,0.87353527545929,-0.0434849821031094,0.474163919687271,0.879361987113953,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.028650525957346,0.326502531766891,0.944761991500854,-0.0115144234150648,0.182289108633995,0.983177483081818,0.0353103689849377,0.329119145870209,0.943627953529358,0.0353103689849377,0.329119145870209,0.943627953529358,-0.0216795839369297,0.378441274166107,0.925371289253235,-0.010741226375103,0.421107977628708,0.906946837902069,-0.010741226375103,0.421107977628708,0.906946837902069,-0.0216795839369297,0.378441274166107,0.925371289253235,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0236153304576874,0.458257704973221,0.888505518436432,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.131611049175262,0.468630582094193,0.87353527545929,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.100852631032467,0.58144474029541,0.807310700416565,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.110477574169636,0.622964382171631,0.774409413337708,-0.100852631032467,0.58144474029541,0.807310700416565,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.110477574169636,0.622964382171631,0.774409413337708,-0.0776412412524223,0.678701937198639,0.730298101902008,\r\n-0.140205100178719,0.691294848918915,0.708839774131775,-0.140205100178719,0.691294848918915,0.708839774131775,-0.190191775560379,0.776064872741699,0.601290464401245,-0.19915409386158,0.729276537895203,0.654593944549561,0.286287754774094,0.851420104503632,0.439457625150681,0.247626379132271,0.891215980052948,0.380019903182983,0.29393744468689,0.845030069351196,0.446682035923004,0.167736500501633,0.921648263931274,0.349898338317871,0.237675786018372,0.889008045196533,0.391375482082367,0.214313089847565,0.921440839767456,0.32406222820282,0.0997990518808365,0.90709924697876,0.408914387226105,0.167736500501633,0.921648263931274,0.349898338317871,0.0114222317934036,0.937671184539795,0.347335934638977,-0.104090474545956,0.913772940635681,0.392662793397903,-0.0595025457441807,0.905492722988129,0.420169323682785,0.0114222317934036,0.937671184539795,0.347335934638977,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.104090474545956,0.913772940635681,0.392662793397903,-0.0262400489300489,0.888054549694061,0.45898848772049,0.381621122360229,0.787517905235291,0.483922213315964,-0.0232548415660858,0.873414874076843,0.486421167850494,0.487268507480621,0.696035504341125,0.527355492115021,0.237675786018372,0.889008045196533,0.391375482082367,0.247626379132271,0.891215980052948,0.380019903182983,0.214313089847565,0.921440839767456,0.32406222820282,0.859439492225647,0.0908604338765144,0.503098428249359,0.889515936374664,0.062331173568964,0.452632457017899,0.869013845920563,-0.048482745885849,0.492406666278839,0.849613189697266,0.251917123794556,0.463352024555206,0.861381411552429,0.159530833363533,0.482257038354874,0.681636214256287,0.386375278234482,0.621358335018158,0.861381411552429,0.159530833363533,0.482257038354874,0.901516497135162,0.123198769986629,0.414837181568146,0.859439492225647,0.0908604338765144,0.503098428249359,0.607379853725433,0.543282330036163,0.579598009586334,0.749042332172394,0.501021683216095,0.433488965034485,0.849613189697266,0.251917123794556,0.463352024555206,0.381621122360229,0.787517905235291,0.483922213315964,\r\n0.749042332172394,0.501021683216095,0.433488965034485,0.607379853725433,0.543282330036163,0.579598009586334,0.889515936374664,0.062331173568964,0.452632457017899,0.845514535903931,0.034278754144907,0.532850801944733,0.869013845920563,-0.048482745885849,0.492406666278839,0.733306288719177,-0.0754149407148361,0.675702929496765,0.754453659057617,-0.0261592641472816,0.655831694602966,0.753895342350006,0.10707651078701,0.648210048675537,0.788499474525452,0.0463692955672741,0.613284945487976,0.761091649532318,0.112224392592907,0.638862311840057,0.753895342350006,0.10707651078701,0.648210048675537,0.761091649532318,0.112224392592907,0.638862311840057,0.816521406173706,0.0584375895559788,0.574349820613861,0.795047760009766,0.144300177693367,0.589131891727448,0.632216513156891,-0.348908185958862,0.691784083843231,0.684021532535553,-0.279578238725662,0.673758387565613,0.650203287601471,-0.215958446264267,0.728421211242676,0.650203287601471,-0.215958446264267,0.728421211242676,0.711509823799133,-0.188614770770073,0.676888525485992,0.733306288719177,-0.0754149407148361,0.675702929496765,0.795047760009766,0.144300177693367,0.589131891727448,0.845514535903931,0.034278754144907,0.532850801944733,0.870846688747406,0.165614768862724,0.462814927101135,0.650203287601471,-0.215958446264267,0.728421211242676,0.518583714962006,-0.259198158979416,0.81479275226593,0.632216513156891,-0.348908185958862,0.691784083843231,0.492316842079163,-0.416996002197266,0.764027714729309,0.518583714962006,-0.259198158979416,0.81479275226593,0.456511974334717,-0.336588084697723,0.823592841625214,0.511068761348724,-0.383843779563904,0.769072473049164,0.385927557945251,-0.476688414812088,0.789827764034271,0.456511974334717,-0.336588084697723,0.823592841625214,0.385927557945251,-0.476688414812088,0.789827764034271,0.511068761348724,-0.383843779563904,0.769072473049164,0.420312404632568,-0.529822945594788,0.736630797386169,0.389585107564926,-0.624979019165039,0.676479518413544,0.420312404632568,-0.529822945594788,0.736630797386169,0.579044759273529,-0.588093042373657,0.564671158790588,\r\n0.519362688064575,-0.493750900030136,0.697475671768188,0.496982485055923,-0.668016731739044,0.553860902786255,0.228182777762413,-0.296950876712799,0.927228510379791,0.228182777762413,-0.296950876712799,0.927228510379791,0.306534439325333,-0.433536976575851,0.847397327423096,0.085183173418045,-0.0245090182870626,0.996063768863678,0.643270194530487,-0.562820374965668,0.519072890281677,0.654901027679443,-0.624111235141754,0.426133364439011,0.519362688064575,-0.493750900030136,0.697475671768188,0.579044759273529,-0.588093042373657,0.564671158790588,0.704958975315094,-0.577041625976563,0.41237798333168,0.643270194530487,-0.562820374965668,0.519072890281677,0.185323014855385,-0.134073868393898,0.973488330841064,0.227175056934357,-0.265602827072144,0.936934649944305,0.206685096025467,-0.104900427162647,0.97276771068573,0.196403384208679,-0.153244316577911,0.968473970890045,0.227175056934357,-0.265602827072144,0.936934649944305,0.185323014855385,-0.134073868393898,0.973488330841064,0.196403384208679,-0.153244316577911,0.968473970890045,0.0651161596179008,-0.123993672430515,0.990144073963165,0.158412784337997,-0.0286261644214392,0.986957848072052,0.42683419585228,-0.497022897005081,0.755500316619873,0.31122362613678,-0.450541436672211,0.836750984191895,0.535665512084961,-0.399341583251953,0.744035363197327,0.158412784337997,-0.0286261644214392,0.986957848072052,0.172259241342545,-0.0737808346748352,0.982284605503082,0.330249428749084,0.0170612670481205,0.943739414215088,0.638917148113251,-0.119618460536003,0.759918510913849,0.569280862808228,-0.250347048044205,0.783100008964539,0.611268937587738,-0.302311152219772,0.731408357620239,0.462737858295441,-0.0702100619673729,0.883710384368896,0.569280862808228,-0.250347048044205,0.783100008964539,0.638917148113251,-0.119618460536003,0.759918510913849,0.31122362613678,-0.450541436672211,0.836750984191895,0.442123591899872,-0.335992395877838,0.83164644241333,0.535665512084961,-0.399341583251953,0.744035363197327,0.442123591899872,-0.335992395877838,0.83164644241333,0.579087018966675,-0.185492888092995,0.793883144855499,\r\n0.611268937587738,-0.302311152219772,0.731408357620239,0.462737858295441,-0.0702100619673729,0.883710384368896,0.548048377037048,0.0629874095320702,0.834071576595306,0.330249428749084,0.0170612670481205,0.943739414215088,0.355117648839951,0.293870389461517,0.887429714202881,0.380480974912643,0.270206719636917,0.884433388710022,0.354949861764908,0.227069184184074,0.906890332698822,0.498282194137573,0.0770204067230225,0.863587021827698,0.486893236637115,0.221341729164124,0.844951272010803,0.355117648839951,0.293870389461517,0.887429714202881,0.577619969844818,-0.069207675755024,0.813366651535034,0.581034898757935,0.0350375585258007,0.813124001026154,0.498282194137573,0.0770204067230225,0.863587021827698,0.457970947027206,-0.223447516560555,0.860426485538483,0.449176847934723,-0.317531019449234,0.835113227367401,0.34716522693634,0.0807160884141922,0.934323906898499,0.449176847934723,-0.317531019449234,0.835113227367401,0.45675590634346,-0.515695035457611,0.724867224693298,0.410685688257217,-0.36911553144455,0.833721101284027,0.473797857761383,-0.10476515442133,0.874379634857178,0.457970947027206,-0.223447516560555,0.860426485538483,0.354949861764908,0.227069184184074,0.906890332698822,0.593823134899139,-0.216114103794098,0.775028109550476,0.521891057491302,-0.326715558767319,0.787963509559631,0.652537822723389,-0.449162155389786,0.610284805297852,0.652537822723389,-0.449162155389786,0.610284805297852,0.549715757369995,-0.59162175655365,0.589742362499237,0.642636895179749,-0.650201082229614,0.405285507440567,0.644232928752899,-0.169619619846344,0.745783448219299,0.577619969844818,-0.069207675755024,0.813366651535034,0.593823134899139,-0.216114103794098,0.775028109550476,0.3779356777668,-0.580151438713074,0.721518397331238,0.42683419585228,-0.497022897005081,0.755500316619873,0.45675590634346,-0.515695035457611,0.724867224693298,0.332927405834198,-0.434002727270126,0.837138533592224,0.227175056934357,-0.265602827072144,0.936934649944305,0.346138834953308,-0.330932378768921,0.877879023551941,0.0911807343363762,-0.0312887094914913,0.995342671871185,\r\n-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0790688768029213,-0.0962335765361786,0.992213249206543,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0358700305223465,-0.130511805415154,0.990797638893127,0.0790688768029213,-0.0962335765361786,0.992213249206543,0.0358700305223465,-0.130511805415154,0.990797638893127,-0.0777115076780319,-0.136967435479164,0.987522542476654,0.0267279967665672,-0.0226760450750589,0.999385476112366,0.533834278583527,-0.3728067278862,0.758970320224762,0.424636393785477,-0.188246324658394,0.885577261447906,0.401609867811203,-0.359731465578079,0.842201054096222,0.424636393785477,-0.188246324658394,0.885577261447906,0.609364092350006,-0.202266320586205,0.766657412052155,0.50696188211441,-0.0489546768367291,0.86057710647583,0.479864090681076,-0.0362855084240437,0.876592099666595,0.331478923559189,0.0326187126338482,0.942898571491241,0.50696188211441,-0.0489546768367291,0.86057710647583,0.401609867811203,-0.359731465578079,0.842201054096222,0.332927405834198,-0.434002727270126,0.837138533592224,0.424105048179626,-0.421229779720306,0.801685869693756,0.0880391746759415,-0.137878462672234,0.986528515815735,0.0660471841692925,-0.160469442605972,0.984828531742096,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.236759230494499,-0.0632953196763992,0.969504356384277,0.196599990129471,-0.16146445274353,0.967097461223602,0.190370127558708,0.0261179655790329,0.981364846229553,0.0880391746759415,-0.137878462672234,0.986528515815735,0.196599990129471,-0.16146445274353,0.967097461223602,0.0660471841692925,-0.160469442605972,0.984828531742096,0.334105134010315,-0.105962336063385,0.936560571193695,0.236759230494499,-0.0632953196763992,0.969504356384277,0.278207957744598,0.0166163500398397,0.960377037525177,0.334105134010315,-0.105962336063385,0.936560571193695,0.278207957744598,0.0166163500398397,0.960377037525177,0.479864090681076,-0.0362855084240437,0.876592099666595,0.386414736509323,-0.0481171458959579,0.921069145202637,0.0267279967665672,-0.0226760450750589,0.999385476112366,\r\n0.222118750214577,0.022307651117444,0.974764347076416,0.386414736509323,-0.0481171458959579,0.921069145202637,0.450994789600372,-0.0293684490025043,0.892043173313141,0.500188171863556,-0.0413050875067711,0.864930927753448,0.470000982284546,0.0902432426810265,0.878040492534637,0.341392546892166,0.162806004285812,0.925713360309601,0.500188171863556,-0.0413050875067711,0.864930927753448,0.470000982284546,0.0902432426810265,0.878040492534637,0.338858515024185,0.17530058324337,0.924361705780029,0.341392546892166,0.162806004285812,0.925713360309601,0.194042965769768,0.064727783203125,0.97885525226593,0.188291743397713,0.210640773177147,0.959258377552032,0.338858515024185,0.17530058324337,0.924361705780029,0.194042965769768,0.064727783203125,0.97885525226593,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.0898893475532532,0.0892948880791664,0.99194061756134,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.00388403725810349,0.0494643598794937,0.998768329620361,-0.00504655903205276,0.051175482571125,0.998676896095276,0.00445905653759837,0.195166260004044,0.980759978294373,0.00388403725810349,0.0494643598794937,0.998768329620361,0.0170439686626196,0.198112040758133,0.980031132698059,0.158996641635895,0.268071621656418,0.950188159942627,0.208017364144325,0.315430462360382,0.925868391990662,0.202332332730293,0.380738258361816,0.90227484703064,0.137911349534988,0.255326420068741,0.956968545913696,0.0667813345789909,0.240893915295601,0.968251168727875,0.0582083575427532,0.295616030693054,0.953531801700592,0.0667813345789909,0.240893915295601,0.968251168727875,0.0170439686626196,0.198112040758133,0.980031132698059,0.0582083575427532,0.295616030693054,0.953531801700592,0.137911349534988,0.255326420068741,0.956968545913696,0.112164318561554,0.346320927143097,0.931386530399323,0.208017364144325,0.315430462360382,0.925868391990662,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0715653225779533,0.220032408833504,0.972863852977753,-0.0772864669561386,-0.0484077595174313,0.995833039283752,\r\n-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.125651016831398,0.143703296780586,0.981611490249634,-0.151409164071083,0.00987077318131924,0.988421857357025,0.0433850064873695,0.261097699403763,0.96433687210083,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.0715653225779533,0.220032408833504,0.972863852977753,0.0496192313730717,0.782712638378143,0.620401978492737,0.0108866281807423,0.679473221302032,0.733619391918182,0.0433850064873695,0.261097699403763,0.96433687210083,0.212573423981667,0.872259438037872,0.44042694568634,0.129757806658745,0.898173391819,0.420056343078613,0.180904254317284,0.824076890945435,0.536815404891968,0.0720953866839409,0.952698290348053,0.29524239897728,0.129757806658745,0.898173391819,0.420056343078613,0.196115657687187,0.91387152671814,0.355495870113373,0.10782714933157,0.940842747688293,0.321229100227356,-0.0064420597627759,0.960979998111725,0.276542663574219,0.0720953866839409,0.952698290348053,0.29524239897728,-0.0064420597627759,0.960979998111725,0.276542663574219,-0.112749569118023,0.78090500831604,0.614389717578888,0.00109900732059032,0.952879071235657,0.303348302841187,-0.112749569118023,0.78090500831604,0.614389717578888,0.0108866281807423,0.679473221302032,0.733619391918182,0.00109900732059032,0.952879071235657,0.303348302841187,0.245776548981667,0.75172483921051,0.611966907978058,0.180904254317284,0.824076890945435,0.536815404891968,0.133795946836472,0.746883988380432,0.651354610919952,0.234011828899384,0.542003512382507,0.807137250900269,0.313047915697098,0.526129424571991,0.790688753128052,0.239288210868835,0.647522807121277,0.723502039909363,0.239288210868835,0.647522807121277,0.723502039909363,0.310542374849319,0.655100047588348,0.688772201538086,0.245776548981667,0.75172483921051,0.611966907978058,0.30412358045578,0.409574717283249,0.8600914478302,0.234011828899384,0.542003512382507,0.807137250900269,0.202332332730293,0.380738258361816,0.90227484703064,\r\n-0.190191775560379,0.776064872741699,0.601290464401245,-0.203598886728287,0.79917311668396,0.565570294857025,-0.19915409386158,0.729276537895203,0.654593944549561,-0.247785419225693,0.865954995155334,0.434424102306366,-0.268790543079376,0.83925324678421,0.472658038139343,-0.218974053859711,0.833771049976349,0.506829380989075,-0.268790543079376,0.83925324678421,0.472658038139343,-0.311251819133759,0.849400460720062,0.426193654537201,-0.350593030452728,0.817860543727875,0.456276774406433,-0.218974053859711,0.833771049976349,0.506829380989075,-0.203598886728287,0.79917311668396,0.565570294857025,-0.203125864267349,0.835331201553345,0.510843932628632,-0.311251819133759,0.849400460720062,0.426193654537201,-0.371899574995041,0.831559658050537,0.412551939487457,-0.350593030452728,0.817860543727875,0.456276774406433,-0.371809244155884,0.842246532440186,0.390356987714767,-0.371899574995041,0.831559658050537,0.412551939487457,-0.32106676697731,0.869420945644379,0.37553071975708,-0.371809244155884,0.842246532440186,0.390356987714767,-0.370282590389252,0.856281757354736,0.360100328922272,-0.378954887390137,0.838237762451172,0.392110347747803,-0.175146922469139,0.895134150981903,0.409949243068695,-0.234829664230347,0.921063184738159,0.310640633106232,-0.0675895884633064,0.92728579044342,0.36820188164711,-0.0675895884633064,0.92728579044342,0.36820188164711,0.159702852368355,0.939021587371826,0.304521471261978,0.0568487904965878,0.895864903926849,0.440674692392349,0.159702852368355,0.939021587371826,0.304521471261978,0.261161178350449,0.907848596572876,0.328032970428467,0.239254668354988,0.877859473228455,0.414873242378235,0.239254668354988,0.877859473228455,0.414873242378235,0.261161178350449,0.907848596572876,0.328032970428467,0.286287754774094,0.851420104503632,0.439457625150681,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.0434849821031094,0.474163919687271,0.879361987113953,-0.131611049175262,0.468630582094193,0.87353527545929,-0.125651016831398,0.143703296780586,0.981611490249634,-0.0115144234150648,0.182289108633995,0.983177483081818,\r\n-0.028650525957346,0.326502531766891,0.944761991500854,0.0353103689849377,0.329119145870209,0.943627953529358,-0.0115144234150648,0.182289108633995,0.983177483081818,0.083567887544632,0.240023568272591,0.967163383960724,-0.0216795839369297,0.378441274166107,0.925371289253235,0.0353103689849377,0.329119145870209,0.943627953529358,-0.0272205043584108,0.35104975104332,0.935961008071899,-0.0272205043584108,0.35104975104332,0.935961008071899,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0216795839369297,0.378441274166107,0.925371289253235,-0.131611049175262,0.468630582094193,0.87353527545929,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.137862369418144,0.43934965133667,0.887674331665039,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.115046732127666,0.537694454193115,0.835253715515137,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.110477574169636,0.622964382171631,0.774409413337708,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.133227825164795,0.754687547683716,0.642414808273315,-0.140205100178719,0.691294848918915,0.708839774131775,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.190191775560379,0.776064872741699,0.601290464401245,-0.140205100178719,0.691294848918915,0.708839774131775,-0.133227825164795,0.754687547683716,0.642414808273315,0.247626379132271,0.891215980052948,0.380019903182983,0.286287754774094,0.851420104503632,0.439457625150681,0.261161178350449,0.907848596572876,0.328032970428467,0.167736500501633,0.921648263931274,0.349898338317871,0.214313089847565,0.921440839767456,0.32406222820282,0.128392115235329,0.957290768623352,0.259055018424988,0.128392115235329,0.957290768623352,0.259055018424988,0.0114222317934036,0.937671184539795,0.347335934638977,0.167736500501633,0.921648263931274,0.349898338317871,-0.0278551820665598,0.930348932743073,0.365615665912628,-0.104090474545956,0.913772940635681,0.392662793397903,0.0114222317934036,0.937671184539795,0.347335934638977,-0.104090474545956,0.913772940635681,0.392662793397903,\r\n-0.0278551820665598,0.930348932743073,0.365615665912628,-0.0262400489300489,0.888054549694061,0.45898848772049,-0.0232548415660858,0.873414874076843,0.486421167850494,-0.0262400489300489,0.888054549694061,0.45898848772049,0.332922548055649,0.755561828613281,0.564170837402344,0.487268507480621,0.696035504341125,0.527355492115021,-0.0232548415660858,0.873414874076843,0.486421167850494,0.332922548055649,0.755561828613281,0.564170837402344,0.381621122360229,0.787517905235291,0.483922213315964,0.487268507480621,0.696035504341125,0.527355492115021,0.703368842601776,0.604275524616241,0.374330371618271,0.248310551047325,0.930973052978516,0.267639428377151,0.214313089847565,0.921440839767456,0.32406222820282,0.247626379132271,0.891215980052948,0.380019903182983,0.901516497135162,0.123198769986629,0.414837181568146,0.889515936374664,0.062331173568964,0.452632457017899,0.859439492225647,0.0908604338765144,0.503098428249359,0.849613189697266,0.251917123794556,0.463352024555206,0.901516497135162,0.123198769986629,0.414837181568146,0.861381411552429,0.159530833363533,0.482257038354874,0.870687305927277,0.334379255771637,0.360685497522354,0.849613189697266,0.251917123794556,0.463352024555206,0.749042332172394,0.501021683216095,0.433488965034485,0.749042332172394,0.501021683216095,0.433488965034485,0.381621122360229,0.787517905235291,0.483922213315964,0.703368842601776,0.604275524616241,0.374330371618271,0.889515936374664,0.062331173568964,0.452632457017899,0.870846688747406,0.165614768862724,0.462814927101135,0.845514535903931,0.034278754144907,0.532850801944733,0.753895342350006,0.10707651078701,0.648210048675537,0.725337684154511,0.09644815325737,0.681603133678436,0.733306288719177,-0.0754149407148361,0.675702929496765,0.753895342350006,0.10707651078701,0.648210048675537,0.761091649532318,0.112224392592907,0.638862311840057,0.717521369457245,0.176224857568741,0.673875153064728,0.761091649532318,0.112224392592907,0.638862311840057,0.795047760009766,0.144300177693367,0.589131891727448,0.717521369457245,0.176224857568741,0.673875153064728,\r\n0.733306288719177,-0.0754149407148361,0.675702929496765,0.684216737747192,-0.0822338908910751,0.724627435207367,0.650203287601471,-0.215958446264267,0.728421211242676,0.795047760009766,0.144300177693367,0.589131891727448,0.870846688747406,0.165614768862724,0.462814927101135,0.833220779895782,0.258167296648026,0.488970994949341,0.650203287601471,-0.215958446264267,0.728421211242676,0.563770413398743,-0.101601220667362,0.819658398628235,0.518583714962006,-0.259198158979416,0.81479275226593,0.525852859020233,-0.238959208130836,0.816319227218628,0.456511974334717,-0.336588084697723,0.823592841625214,0.518583714962006,-0.259198158979416,0.81479275226593,0.511068761348724,-0.383843779563904,0.769072473049164,0.456511974334717,-0.336588084697723,0.823592841625214,0.525852859020233,-0.238959208130836,0.816319227218628,0.576517879962921,-0.489757806062698,0.65403687953949,0.420312404632568,-0.529822945594788,0.736630797386169,0.511068761348724,-0.383843779563904,0.769072473049164,0.579044759273529,-0.588093042373657,0.564671158790588,0.420312404632568,-0.529822945594788,0.736630797386169,0.576517879962921,-0.489757806062698,0.65403687953949,0.496982485055923,-0.668016731739044,0.553860902786255,0.519362688064575,-0.493750900030136,0.697475671768188,0.654901027679443,-0.624111235141754,0.426133364439011,0.228182777762413,-0.296950876712799,0.927228510379791,0.496982485055923,-0.668016731739044,0.553860902786255,0.306534439325333,-0.433536976575851,0.847397327423096,0.643270194530487,-0.562820374965668,0.519072890281677,0.704958975315094,-0.577041625976563,0.41237798333168,0.654901027679443,-0.624111235141754,0.426133364439011,0.675114154815674,-0.517472326755524,0.525778532028198,0.704958975315094,-0.577041625976563,0.41237798333168,0.579044759273529,-0.588093042373657,0.564671158790588,0.196403384208679,-0.153244316577911,0.968473970890045,0.346138834953308,-0.330932378768921,0.877879023551941,0.227175056934357,-0.265602827072144,0.936934649944305,0.196403384208679,-0.153244316577911,0.968473970890045,0.158412784337997,-0.0286261644214392,0.986957848072052,\r\n0.332726091146469,-0.147056326270103,0.931486785411835,0.42683419585228,-0.497022897005081,0.755500316619873,0.273366361856461,-0.570750534534454,0.774283170700073,0.31122362613678,-0.450541436672211,0.836750984191895,0.158412784337997,-0.0286261644214392,0.986957848072052,0.330249428749084,0.0170612670481205,0.943739414215088,0.332726091146469,-0.147056326270103,0.931486785411835,0.579087018966675,-0.185492888092995,0.793883144855499,0.638917148113251,-0.119618460536003,0.759918510913849,0.611268937587738,-0.302311152219772,0.731408357620239,0.462737858295441,-0.0702100619673729,0.883710384368896,0.638917148113251,-0.119618460536003,0.759918510913849,0.548048377037048,0.0629874095320702,0.834071576595306,0.211570799350739,-0.365890234708786,0.906290233135223,0.442123591899872,-0.335992395877838,0.83164644241333,0.31122362613678,-0.450541436672211,0.836750984191895,0.442123591899872,-0.335992395877838,0.83164644241333,0.395094573497772,-0.235732704401016,0.887879610061646,0.579087018966675,-0.185492888092995,0.793883144855499,0.330249428749084,0.0170612670481205,0.943739414215088,0.548048377037048,0.0629874095320702,0.834071576595306,0.533571779727936,0.0664401799440384,0.843140959739685,0.486893236637115,0.221341729164124,0.844951272010803,0.380480974912643,0.270206719636917,0.884433388710022,0.355117648839951,0.293870389461517,0.887429714202881,0.380480974912643,0.270206719636917,0.884433388710022,0.473797857761383,-0.10476515442133,0.874379634857178,0.354949861764908,0.227069184184074,0.906890332698822,0.498282194137573,0.0770204067230225,0.863587021827698,0.581034898757935,0.0350375585258007,0.813124001026154,0.486893236637115,0.221341729164124,0.844951272010803,0.577619969844818,-0.069207675755024,0.813366651535034,0.644232928752899,-0.169619619846344,0.745783448219299,0.581034898757935,0.0350375585258007,0.813124001026154,0.457970947027206,-0.223447516560555,0.860426485538483,0.431529104709625,-0.524264693260193,0.734117865562439,0.449176847934723,-0.317531019449234,0.835113227367401,0.45675590634346,-0.515695035457611,0.724867224693298,\r\n0.449176847934723,-0.317531019449234,0.835113227367401,0.431529104709625,-0.524264693260193,0.734117865562439,0.473797857761383,-0.10476515442133,0.874379634857178,0.459507435560226,-0.551141798496246,0.69648802280426,0.457970947027206,-0.223447516560555,0.860426485538483,0.727962851524353,-0.350361049175262,0.589336097240448,0.593823134899139,-0.216114103794098,0.775028109550476,0.652537822723389,-0.449162155389786,0.610284805297852,0.652537822723389,-0.449162155389786,0.610284805297852,0.642636895179749,-0.650201082229614,0.405285507440567,0.725247621536255,-0.551386713981628,0.412296622991562,0.644232928752899,-0.169619619846344,0.745783448219299,0.593823134899139,-0.216114103794098,0.775028109550476,0.727962851524353,-0.350361049175262,0.589336097240448,0.3779356777668,-0.580151438713074,0.721518397331238,0.273366361856461,-0.570750534534454,0.774283170700073,0.42683419585228,-0.497022897005081,0.755500316619873,0.431529104709625,-0.524264693260193,0.734117865562439,0.3779356777668,-0.580151438713074,0.721518397331238,0.45675590634346,-0.515695035457611,0.724867224693298,0.346138834953308,-0.330932378768921,0.877879023551941,0.424105048179626,-0.421229779720306,0.801685869693756,0.332927405834198,-0.434002727270126,0.837138533592224,-0.0777115076780319,-0.136967435479164,0.987522542476654,0.0358700305223465,-0.130511805415154,0.990797638893127,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0267279967665672,-0.0226760450750589,0.999385476112366,-0.0777115076780319,-0.136967435479164,0.987522542476654,-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.424636393785477,-0.188246324658394,0.885577261447906,0.533834278583527,-0.3728067278862,0.758970320224762,0.609364092350006,-0.202266320586205,0.766657412052155,0.533834278583527,-0.3728067278862,0.758970320224762,0.401609867811203,-0.359731465578079,0.842201054096222,0.424105048179626,-0.421229779720306,0.801685869693756,0.609364092350006,-0.202266320586205,0.766657412052155,0.479864090681076,-0.0362855084240437,0.876592099666595,0.50696188211441,-0.0489546768367291,0.86057710647583,\r\n-0.0777115076780319,-0.136967435479164,0.987522542476654,-0.00970171578228474,-0.163583785295486,0.986481666564941,0.0660471841692925,-0.160469442605972,0.984828531742096,0.236759230494499,-0.0632953196763992,0.969504356384277,0.334105134010315,-0.105962336063385,0.936560571193695,0.196599990129471,-0.16146445274353,0.967097461223602,0.196599990129471,-0.16146445274353,0.967097461223602,0.210591197013855,-0.146390616893768,0.966551125049591,0.0660471841692925,-0.160469442605972,0.984828531742096,0.479864090681076,-0.0362855084240437,0.876592099666595,0.384144246578217,-0.167515695095062,0.907949149608612,0.334105134010315,-0.105962336063385,0.936560571193695,0.222118750214577,0.022307651117444,0.974764347076416,0.0267279967665672,-0.0226760450750589,0.999385476112366,0.0181596595793962,0.0964839830994606,0.995168805122375,0.386414736509323,-0.0481171458959579,0.921069145202637,0.222118750214577,0.022307651117444,0.974764347076416,0.450994789600372,-0.0293684490025043,0.892043173313141,0.450994789600372,-0.0293684490025043,0.892043173313141,0.470000982284546,0.0902432426810265,0.878040492534637,0.500188171863556,-0.0413050875067711,0.864930927753448,0.338858515024185,0.17530058324337,0.924361705780029,0.470000982284546,0.0902432426810265,0.878040492534637,0.383732378482819,0.0719972550868988,0.920633316040039,0.338858515024185,0.17530058324337,0.924361705780029,0.383732378482819,0.0719972550868988,0.920633316040039,0.194042965769768,0.064727783203125,0.97885525226593,0.158430337905884,-0.105434514582157,0.981724679470062,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.194042965769768,0.064727783203125,0.97885525226593,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.00388403725810349,0.0494643598794937,0.998768329620361,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.0170439686626196,0.198112040758133,0.980031132698059,0.00388403725810349,0.0494643598794937,0.998768329620361,0.30412358045578,0.409574717283249,0.8600914478302,\r\n0.202332332730293,0.380738258361816,0.90227484703064,0.208017364144325,0.315430462360382,0.925868391990662,0.112164318561554,0.346320927143097,0.931386530399323,0.137911349534988,0.255326420068741,0.956968545913696,0.0582083575427532,0.295616030693054,0.953531801700592,0.0707326158881187,0.295081377029419,0.952850341796875,0.0582083575427532,0.295616030693054,0.953531801700592,0.0170439686626196,0.198112040758133,0.980031132698059,0.197703123092651,0.407277196645737,0.89164936542511,0.208017364144325,0.315430462360382,0.925868391990662,0.112164318561554,0.346320927143097,0.931386530399323,-0.00723437825217843,-0.0348329469561577,0.999366939067841,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.00723437825217843,-0.0348329469561577,0.999366939067841,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.0963509976863861,-0.0946151912212372,0.990840196609497,-0.125651016831398,0.143703296780586,0.981611490249634,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.0115144234150648,0.182289108633995,0.983177483081818,0.0433850064873695,0.261097699403763,0.96433687210083,-0.101764678955078,0.235011115670204,0.966650724411011,-0.0356251336634159,-0.0482506081461906,0.998199701309204,0.0433850064873695,0.261097699403763,0.96433687210083,0.0108866281807423,0.679473221302032,0.733619391918182,-0.101764678955078,0.235011115670204,0.966650724411011,0.212573423981667,0.872259438037872,0.44042694568634,0.196115657687187,0.91387152671814,0.355495870113373,0.129757806658745,0.898173391819,0.420056343078613,0.180904254317284,0.824076890945435,0.536815404891968,0.227061703801155,0.845456182956696,0.483370184898376,0.212573423981667,0.872259438037872,0.44042694568634,0.10782714933157,0.940842747688293,0.321229100227356,0.0720953866839409,0.952698290348053,0.29524239897728,0.196115657687187,0.91387152671814,0.355495870113373,0.10782714933157,0.940842747688293,0.321229100227356,-0.0201575793325901,0.86247992515564,0.50568950176239,-0.0064420597627759,0.960979998111725,0.276542663574219,\r\n-0.112749569118023,0.78090500831604,0.614389717578888,-0.0064420597627759,0.960979998111725,0.276542663574219,-0.0201575793325901,0.86247992515564,0.50568950176239,-0.112749569118023,0.78090500831604,0.614389717578888,-0.101764678955078,0.235011115670204,0.966650724411011,0.0108866281807423,0.679473221302032,0.733619391918182,0.180904254317284,0.824076890945435,0.536815404891968,0.245776548981667,0.75172483921051,0.611966907978058,0.227061703801155,0.845456182956696,0.483370184898376,0.234011828899384,0.542003512382507,0.807137250900269,0.30412358045578,0.409574717283249,0.8600914478302,0.313047915697098,0.526129424571991,0.790688753128052,0.239288210868835,0.647522807121277,0.723502039909363,0.313047915697098,0.526129424571991,0.790688753128052,0.310542374849319,0.655100047588348,0.688772201538086,0.310542374849319,0.655100047588348,0.688772201538086,0.251410961151123,0.802416682243347,0.541220664978027,0.245776548981667,0.75172483921051,0.611966907978058,-0.190191775560379,0.776064872741699,0.601290464401245,-0.134479597210884,0.814412713050842,0.564488291740417,-0.203598886728287,0.79917311668396,0.565570294857025,-0.247785419225693,0.865954995155334,0.434424102306366,-0.311251819133759,0.849400460720062,0.426193654537201,-0.268790543079376,0.83925324678421,0.472658038139343,-0.203125864267349,0.835331201553345,0.510843932628632,-0.247785419225693,0.865954995155334,0.434424102306366,-0.218974053859711,0.833771049976349,0.506829380989075,-0.203125864267349,0.835331201553345,0.510843932628632,-0.203598886728287,0.79917311668396,0.565570294857025,-0.130151435732841,0.824181258678436,0.551167547702789,-0.371899574995041,0.831559658050537,0.412551939487457,-0.311251819133759,0.849400460720062,0.426193654537201,-0.32106676697731,0.869420945644379,0.37553071975708,-0.370282590389252,0.856281757354736,0.360100328922272,-0.371809244155884,0.842246532440186,0.390356987714767,-0.32106676697731,0.869420945644379,0.37553071975708,-0.234829664230347,0.921063184738159,0.310640633106232,-0.110555455088615,0.961312830448151,0.252299427986145,\r\n-0.0675895884633064,0.92728579044342,0.36820188164711,0.159702852368355,0.939021587371826,0.304521471261978,-0.0675895884633064,0.92728579044342,0.36820188164711,0.0166161507368088,0.969983041286469,0.242603942751884,0.159702852368355,0.939021587371826,0.304521471261978,0.284644275903702,0.943514883518219,0.16957950592041,0.261161178350449,0.907848596572876,0.328032970428467,-0.0912581086158752,0.530861854553223,0.842530429363251,-0.131611049175262,0.468630582094193,0.87353527545929,-0.115046732127666,0.537694454193115,0.835253715515137,0.083567887544632,0.240023568272591,0.967163383960724,-0.0115144234150648,0.182289108633995,0.983177483081818,0.0132211623713374,0.0785951241850853,0.996818900108337,0.083567887544632,0.240023568272591,0.967163383960724,0.0514616444706917,0.279963612556458,0.958630263805389,0.0353103689849377,0.329119145870209,0.943627953529358,-0.0272205043584108,0.35104975104332,0.935961008071899,0.0353103689849377,0.329119145870209,0.943627953529358,0.0514616444706917,0.279963612556458,0.958630263805389,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0272205043584108,0.35104975104332,0.935961008071899,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.0743836984038353,0.421213239431381,0.903906166553497,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.137862369418144,0.43934965133667,0.887674331665039,-0.131611049175262,0.468630582094193,0.87353527545929,-0.137862369418144,0.43934965133667,0.887674331665039,-0.125923648476601,0.487240254878998,0.864141225814819,-0.115046732127666,0.537694454193115,0.835253715515137,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0353757329285145,0.696689307689667,0.716500103473663,-0.133227825164795,0.754687547683716,0.642414808273315,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.0699245110154152,0.730570137500763,0.679247975349426,-0.190191775560379,0.776064872741699,0.601290464401245,\r\n-0.133227825164795,0.754687547683716,0.642414808273315,-0.134479597210884,0.814412713050842,0.564488291740417,0.261161178350449,0.907848596572876,0.328032970428467,0.248310551047325,0.930973052978516,0.267639428377151,0.247626379132271,0.891215980052948,0.380019903182983,0.128392115235329,0.957290768623352,0.259055018424988,0.214313089847565,0.921440839767456,0.32406222820282,0.248310551047325,0.930973052978516,0.267639428377151,0.128392115235329,0.957290768623352,0.259055018424988,0.075224258005619,0.947177827358246,0.311761826276779,0.0114222317934036,0.937671184539795,0.347335934638977,-0.0278551820665598,0.930348932743073,0.365615665912628,0.0114222317934036,0.937671184539795,0.347335934638977,0.075224258005619,0.947177827358246,0.311761826276779,-0.0262400489300489,0.888054549694061,0.45898848772049,-0.0278551820665598,0.930348932743073,0.365615665912628,0.235151126980782,0.870574414730072,0.432208240032196,-0.0262400489300489,0.888054549694061,0.45898848772049,0.235151126980782,0.870574414730072,0.432208240032196,0.332922548055649,0.755561828613281,0.564170837402344,0.487268507480621,0.696035504341125,0.527355492115021,0.332922548055649,0.755561828613281,0.564170837402344,0.721217513084412,0.444100230932236,0.531620264053345,0.703368842601776,0.604275524616241,0.374330371618271,0.487268507480621,0.696035504341125,0.527355492115021,0.79304975271225,0.43667808175087,0.424716770648956,0.889515936374664,0.062331173568964,0.452632457017899,0.901516497135162,0.123198769986629,0.414837181568146,0.870846688747406,0.165614768862724,0.462814927101135,0.890147149562836,0.21664223074913,0.400879055261612,0.901516497135162,0.123198769986629,0.414837181568146,0.849613189697266,0.251917123794556,0.463352024555206,0.870687305927277,0.334379255771637,0.360685497522354,0.89800900220871,0.260620057582855,0.354481130838394,0.849613189697266,0.251917123794556,0.463352024555206,0.749042332172394,0.501021683216095,0.433488965034485,0.703368842601776,0.604275524616241,0.374330371618271,0.870687305927277,0.334379255771637,0.360685497522354,\r\n0.753895342350006,0.10707651078701,0.648210048675537,0.708331108093262,0.205853700637817,0.675197124481201,0.725337684154511,0.09644815325737,0.681603133678436,0.733306288719177,-0.0754149407148361,0.675702929496765,0.725337684154511,0.09644815325737,0.681603133678436,0.684216737747192,-0.0822338908910751,0.724627435207367,0.753895342350006,0.10707651078701,0.648210048675537,0.717521369457245,0.176224857568741,0.673875153064728,0.708331108093262,0.205853700637817,0.675197124481201,0.741834938526154,0.263561874628067,0.616616487503052,0.717521369457245,0.176224857568741,0.673875153064728,0.795047760009766,0.144300177693367,0.589131891727448,0.563770413398743,-0.101601220667362,0.819658398628235,0.650203287601471,-0.215958446264267,0.728421211242676,0.684216737747192,-0.0822338908910751,0.724627435207367,0.890147149562836,0.21664223074913,0.400879055261612,0.833220779895782,0.258167296648026,0.488970994949341,0.870846688747406,0.165614768862724,0.462814927101135,0.741834938526154,0.263561874628067,0.616616487503052,0.795047760009766,0.144300177693367,0.589131891727448,0.833220779895782,0.258167296648026,0.488970994949341,0.515542209148407,-0.0974207893013954,0.851308047771454,0.518583714962006,-0.259198158979416,0.81479275226593,0.563770413398743,-0.101601220667362,0.819658398628235,0.525852859020233,-0.238959208130836,0.816319227218628,0.518583714962006,-0.259198158979416,0.81479275226593,0.515542209148407,-0.0974207893013954,0.851308047771454,0.525852859020233,-0.238959208130836,0.816319227218628,0.668386161327362,-0.288619518280029,0.685535311698914,0.511068761348724,-0.383843779563904,0.769072473049164,0.678755879402161,-0.428910702466965,0.596092164516449,0.576517879962921,-0.489757806062698,0.65403687953949,0.511068761348724,-0.383843779563904,0.769072473049164,0.579044759273529,-0.588093042373657,0.564671158790588,0.576517879962921,-0.489757806062698,0.65403687953949,0.675114154815674,-0.517472326755524,0.525778532028198,0.654901027679443,-0.624111235141754,0.426133364439011,0.683156430721283,-0.660563468933105,0.311372846364975,\r\n0.496982485055923,-0.668016731739044,0.553860902786255,0.654901027679443,-0.624111235141754,0.426133364439011,0.704958975315094,-0.577041625976563,0.41237798333168,0.683156430721283,-0.660563468933105,0.311372846364975,0.704958975315094,-0.577041625976563,0.41237798333168,0.675114154815674,-0.517472326755524,0.525778532028198,0.773318886756897,-0.465731561183929,0.430199891328812,0.196403384208679,-0.153244316577911,0.968473970890045,0.332726091146469,-0.147056326270103,0.931486785411835,0.346138834953308,-0.330932378768921,0.877879023551941,0.31122362613678,-0.450541436672211,0.836750984191895,0.273366361856461,-0.570750534534454,0.774283170700073,0.188344940543175,-0.509777724742889,0.839435994625092,0.332726091146469,-0.147056326270103,0.931486785411835,0.330249428749084,0.0170612670481205,0.943739414215088,0.513966500759125,-0.127381563186646,0.848299622535706,0.579087018966675,-0.185492888092995,0.793883144855499,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.638917148113251,-0.119618460536003,0.759918510913849,0.548048377037048,0.0629874095320702,0.834071576595306,0.638917148113251,-0.119618460536003,0.759918510913849,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.211570799350739,-0.365890234708786,0.906290233135223,0.395094573497772,-0.235732704401016,0.887879610061646,0.442123591899872,-0.335992395877838,0.83164644241333,0.31122362613678,-0.450541436672211,0.836750984191895,0.188344940543175,-0.509777724742889,0.839435994625092,0.211570799350739,-0.365890234708786,0.906290233135223,0.52545702457428,-0.0928211286664009,0.84574168920517,0.579087018966675,-0.185492888092995,0.793883144855499,0.395094573497772,-0.235732704401016,0.887879610061646,0.548048377037048,0.0629874095320702,0.834071576595306,0.57683664560318,0.0730307176709175,0.813588261604309,0.533571779727936,0.0664401799440384,0.843140959739685,0.330249428749084,0.0170612670481205,0.943739414215088,0.533571779727936,0.0664401799440384,0.843140959739685,0.513966500759125,-0.127381563186646,0.848299622535706,0.439580261707306,0.250936239957809,0.862438440322876,\r\n0.380480974912643,0.270206719636917,0.884433388710022,0.486893236637115,0.221341729164124,0.844951272010803,0.471370249986649,0.00124359678011388,0.881934463977814,0.473797857761383,-0.10476515442133,0.874379634857178,0.380480974912643,0.270206719636917,0.884433388710022,0.569673001766205,0.126119762659073,0.812136888504028,0.486893236637115,0.221341729164124,0.844951272010803,0.581034898757935,0.0350375585258007,0.813124001026154,0.643970370292664,-0.0537489913403988,0.763159930706024,0.581034898757935,0.0350375585258007,0.813124001026154,0.644232928752899,-0.169619619846344,0.745783448219299,0.459507435560226,-0.551141798496246,0.69648802280426,0.431529104709625,-0.524264693260193,0.734117865562439,0.457970947027206,-0.223447516560555,0.860426485538483,0.459507435560226,-0.551141798496246,0.69648802280426,0.473797857761383,-0.10476515442133,0.874379634857178,0.54112046957016,-0.4202581346035,0.728403449058533,0.727962851524353,-0.350361049175262,0.589336097240448,0.652537822723389,-0.449162155389786,0.610284805297852,0.725247621536255,-0.551386713981628,0.412296622991562,0.678994357585907,-0.677961111068726,0.281664997339249,0.725247621536255,-0.551386713981628,0.412296622991562,0.642636895179749,-0.650201082229614,0.405285507440567,0.727962851524353,-0.350361049175262,0.589336097240448,0.712035417556763,-0.286907225847244,0.640850722789764,0.644232928752899,-0.169619619846344,0.745783448219299,0.3779356777668,-0.580151438713074,0.721518397331238,0.319755643606186,-0.635137319564819,0.703105032444,0.273366361856461,-0.570750534534454,0.774283170700073,0.3779356777668,-0.580151438713074,0.721518397331238,0.431529104709625,-0.524264693260193,0.734117865562439,0.319755643606186,-0.635137319564819,0.703105032444,0.491368323564529,-0.338214308023453,0.802600860595703,0.424105048179626,-0.421229779720306,0.801685869693756,0.346138834953308,-0.330932378768921,0.877879023551941,0.0660471841692925,-0.160469442605972,0.984828531742096,-0.0352551713585854,-0.00724665774032474,0.999352037906647,-0.0777115076780319,-0.136967435479164,0.987522542476654,\r\n0.0267279967665672,-0.0226760450750589,0.999385476112366,-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.0181596595793962,0.0964839830994606,0.995168805122375,0.533834278583527,-0.3728067278862,0.758970320224762,0.619894444942474,-0.311094373464584,0.720382630825043,0.609364092350006,-0.202266320586205,0.766657412052155,0.533834278583527,-0.3728067278862,0.758970320224762,0.424105048179626,-0.421229779720306,0.801685869693756,0.491368323564529,-0.338214308023453,0.802600860595703,0.609364092350006,-0.202266320586205,0.766657412052155,0.44224813580513,-0.22270679473877,0.868802726268768,0.479864090681076,-0.0362855084240437,0.876592099666595,0.316795140504837,-0.154013782739639,0.935906231403351,0.196599990129471,-0.16146445274353,0.967097461223602,0.334105134010315,-0.105962336063385,0.936560571193695,0.316795140504837,-0.154013782739639,0.935906231403351,0.210591197013855,-0.146390616893768,0.966551125049591,0.196599990129471,-0.16146445274353,0.967097461223602,0.0660471841692925,-0.160469442605972,0.984828531742096,0.210591197013855,-0.146390616893768,0.966551125049591,0.127677500247955,-0.00961600989103317,0.991769075393677,0.384144246578217,-0.167515695095062,0.907949149608612,0.479864090681076,-0.0362855084240437,0.876592099666595,0.44224813580513,-0.22270679473877,0.868802726268768,0.39928925037384,-0.100698843598366,0.911278069019318,0.334105134010315,-0.105962336063385,0.936560571193695,0.384144246578217,-0.167515695095062,0.907949149608612,0.0181596595793962,0.0964839830994606,0.995168805122375,0.276928007602692,-0.0188802964985371,0.960705101490021,0.222118750214577,0.022307651117444,0.974764347076416,0.450994789600372,-0.0293684490025043,0.892043173313141,0.222118750214577,0.022307651117444,0.974764347076416,0.276928007602692,-0.0188802964985371,0.960705101490021,0.470000982284546,0.0902432426810265,0.878040492534637,0.450994789600372,-0.0293684490025043,0.892043173313141,0.383732378482819,0.0719972550868988,0.920633316040039,0.194042965769768,0.064727783203125,0.97885525226593,0.383732378482819,0.0719972550868988,0.920633316040039,\r\n0.311840623617172,-0.0737160891294479,0.947270452976227,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.0421166867017746,-0.0331572629511356,0.998562276363373,0.158430337905884,-0.105434514582157,0.981724679470062,0.194042965769768,0.064727783203125,0.97885525226593,0.311840623617172,-0.0737160891294479,0.947270452976227,0.158430337905884,-0.105434514582157,0.981724679470062,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.0795867219567299,0.130899995565414,0.988195836544037,0.0170439686626196,0.198112040758133,0.980031132698059,0.30412358045578,0.409574717283249,0.8600914478302,0.208017364144325,0.315430462360382,0.925868391990662,0.27626770734787,0.382918566465378,0.881504118442535,0.0707326158881187,0.295081377029419,0.952850341796875,0.112164318561554,0.346320927143097,0.931386530399323,0.0582083575427532,0.295616030693054,0.953531801700592,0.0707326158881187,0.295081377029419,0.952850341796875,0.0170439686626196,0.198112040758133,0.980031132698059,0.0795867219567299,0.130899995565414,0.988195836544037,0.197703123092651,0.407277196645737,0.89164936542511,0.27626770734787,0.382918566465378,0.881504118442535,0.208017364144325,0.315430462360382,0.925868391990662,0.197703123092651,0.407277196645737,0.89164936542511,0.112164318561554,0.346320927143097,0.931386530399323,0.122164316475391,0.387442201375961,0.913763701915741,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.00410858355462551,0.000159960676683113,0.999991476535797,-0.00723437825217843,-0.0348329469561577,0.999366939067841,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.00723437825217843,-0.0348329469561577,0.999366939067841,0.0132211623713374,0.0785951241850853,0.996818900108337,0.0132211623713374,0.0785951241850853,0.996818900108337,-0.0115144234150648,0.182289108633995,0.983177483081818,-0.0866729840636253,-0.0116001218557358,0.996169209480286,-0.0356251336634159,-0.0482506081461906,0.998199701309204,-0.101764678955078,0.235011115670204,0.966650724411011,-0.00410858355462551,0.000159960676683113,0.999991476535797,\r\n0.172042667865753,0.896263182163239,0.408795267343521,0.196115657687187,0.91387152671814,0.355495870113373,0.212573423981667,0.872259438037872,0.44042694568634,0.172042667865753,0.896263182163239,0.408795267343521,0.212573423981667,0.872259438037872,0.44042694568634,0.227061703801155,0.845456182956696,0.483370184898376,0.10782714933157,0.940842747688293,0.321229100227356,0.196115657687187,0.91387152671814,0.355495870113373,0.172042667865753,0.896263182163239,0.408795267343521,-0.0201575793325901,0.86247992515564,0.50568950176239,0.10782714933157,0.940842747688293,0.321229100227356,0.00946624763309956,0.847232937812805,0.531137049198151,-0.112749569118023,0.78090500831604,0.614389717578888,-0.0201575793325901,0.86247992515564,0.50568950176239,-0.0763430818915367,0.492704629898071,0.8668412566185,-0.131930530071259,0.26743084192276,0.954502463340759,-0.101764678955078,0.235011115670204,0.966650724411011,-0.112749569118023,0.78090500831604,0.614389717578888,0.227061703801155,0.845456182956696,0.483370184898376,0.245776548981667,0.75172483921051,0.611966907978058,0.251410961151123,0.802416682243347,0.541220664978027,0.30412358045578,0.409574717283249,0.8600914478302,0.348604291677475,0.428204417228699,0.833736121654511,0.313047915697098,0.526129424571991,0.790688753128052,0.341940134763718,0.480908334255219,0.807343780994415,0.310542374849319,0.655100047588348,0.688772201538086,0.313047915697098,0.526129424571991,0.790688753128052,0.262873411178589,0.755711019039154,0.599831879138947,0.251410961151123,0.802416682243347,0.541220664978027,0.310542374849319,0.655100047588348,0.688772201538086,-0.203598886728287,0.79917311668396,0.565570294857025,-0.134479597210884,0.814412713050842,0.564488291740417,-0.130151435732841,0.824181258678436,0.551167547702789,-0.311251819133759,0.849400460720062,0.426193654537201,-0.247785419225693,0.865954995155334,0.434424102306366,-0.32106676697731,0.869420945644379,0.37553071975708,-0.0675895884633064,0.92728579044342,0.36820188164711,-0.110555455088615,0.961312830448151,0.252299427986145,\r\n0.0166161507368088,0.969983041286469,0.242603942751884,0.159702852368355,0.939021587371826,0.304521471261978,0.0166161507368088,0.969983041286469,0.242603942751884,0.113144584000111,0.98102331161499,0.157453000545502,0.284644275903702,0.943514883518219,0.16957950592041,0.159702852368355,0.939021587371826,0.304521471261978,0.113144584000111,0.98102331161499,0.157453000545502,0.261161178350449,0.907848596572876,0.328032970428467,0.284644275903702,0.943514883518219,0.16957950592041,0.248310551047325,0.930973052978516,0.267639428377151,-0.125923648476601,0.487240254878998,0.864141225814819,-0.115046732127666,0.537694454193115,0.835253715515137,-0.131611049175262,0.468630582094193,0.87353527545929,0.083567887544632,0.240023568272591,0.967163383960724,0.0132211623713374,0.0785951241850853,0.996818900108337,0.125151544809341,0.150098383426666,0.980717837810516,0.0514616444706917,0.279963612556458,0.958630263805389,0.083567887544632,0.240023568272591,0.967163383960724,0.125196561217308,0.250160127878189,0.960075855255127,-0.0272205043584108,0.35104975104332,0.935961008071899,0.0514616444706917,0.279963612556458,0.958630263805389,0.0100334007292986,0.312331259250641,0.949920237064362,-0.0272205043584108,0.35104975104332,0.935961008071899,0.0100334007292986,0.312331259250641,0.949920237064362,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.125923648476601,0.487240254878998,0.864141225814819,-0.137862369418144,0.43934965133667,0.887674331665039,-0.115046732127666,0.537694454193115,0.835253715515137,-0.0298803467303514,0.513960301876068,0.857293307781219,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0108718099072576,0.639894366264343,0.768385887145996,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0108718099072576,0.639894366264343,0.768385887145996,-0.0353757329285145,0.696689307689667,0.716500103473663,-0.0919720605015755,0.603517055511475,0.792027950286865,-0.0776412412524223,0.678701937198639,0.730298101902008,\r\n-0.0353757329285145,0.696689307689667,0.716500103473663,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.0699245110154152,0.730570137500763,0.679247975349426,-0.0776412412524223,0.678701937198639,0.730298101902008,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.133227825164795,0.754687547683716,0.642414808273315,-0.0699245110154152,0.730570137500763,0.679247975349426,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.133227825164795,0.754687547683716,0.642414808273315,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.134479597210884,0.814412713050842,0.564488291740417,0.241195008158684,0.952982842922211,0.183435320854187,0.128392115235329,0.957290768623352,0.259055018424988,0.248310551047325,0.930973052978516,0.267639428377151,0.128392115235329,0.957290768623352,0.259055018424988,0.10290739685297,0.969109237194061,0.224136829376221,0.075224258005619,0.947177827358246,0.311761826276779,0.075224258005619,0.947177827358246,0.311761826276779,0.235151126980782,0.870574414730072,0.432208240032196,-0.0278551820665598,0.930348932743073,0.365615665912628,0.332922548055649,0.755561828613281,0.564170837402344,0.235151126980782,0.870574414730072,0.432208240032196,0.629519820213318,0.61295074224472,0.477489441633224,0.629519820213318,0.61295074224472,0.477489441633224,0.721217513084412,0.444100230932236,0.531620264053345,0.332922548055649,0.755561828613281,0.564170837402344,0.79304975271225,0.43667808175087,0.424716770648956,0.487268507480621,0.696035504341125,0.527355492115021,0.721217513084412,0.444100230932236,0.531620264053345,0.870687305927277,0.334379255771637,0.360685497522354,0.703368842601776,0.604275524616241,0.374330371618271,0.79304975271225,0.43667808175087,0.424716770648956,0.890147149562836,0.21664223074913,0.400879055261612,0.870846688747406,0.165614768862724,0.462814927101135,0.901516497135162,0.123198769986629,0.414837181568146,0.849613189697266,0.251917123794556,0.463352024555206,0.89800900220871,0.260620057582855,0.354481130838394,0.890147149562836,0.21664223074913,0.400879055261612,\r\n0.89800900220871,0.260620057582855,0.354481130838394,0.870687305927277,0.334379255771637,0.360685497522354,0.888113737106323,0.253452062606812,0.383426487445831,0.708331108093262,0.205853700637817,0.675197124481201,0.682342350482941,0.23908469080925,0.690830886363983,0.725337684154511,0.09644815325737,0.681603133678436,0.725337684154511,0.09644815325737,0.681603133678436,0.641032159328461,0.0760904848575592,0.763732850551605,0.684216737747192,-0.0822338908910751,0.724627435207367,0.708331108093262,0.205853700637817,0.675197124481201,0.717521369457245,0.176224857568741,0.673875153064728,0.671477377414703,0.208224073052406,0.711168467998505,0.741834938526154,0.263561874628067,0.616616487503052,0.673548877239227,0.256690800189972,0.693138897418976,0.717521369457245,0.176224857568741,0.673875153064728,0.563770413398743,-0.101601220667362,0.819658398628235,0.684216737747192,-0.0822338908910751,0.724627435207367,0.641032159328461,0.0760904848575592,0.763732850551605,0.860473275184631,0.310579299926758,0.403888702392578,0.833220779895782,0.258167296648026,0.488970994949341,0.890147149562836,0.21664223074913,0.400879055261612,0.833220779895782,0.258167296648026,0.488970994949341,0.78267240524292,0.357104510068893,0.509804129600525,0.741834938526154,0.263561874628067,0.616616487503052,0.515542209148407,-0.0974207893013954,0.851308047771454,0.563770413398743,-0.101601220667362,0.819658398628235,0.489927351474762,0.0631547048687935,0.869472563266754,0.515542209148407,-0.0974207893013954,0.851308047771454,0.655546426773071,-0.127061918377876,0.744388341903687,0.525852859020233,-0.238959208130836,0.816319227218628,0.668386161327362,-0.288619518280029,0.685535311698914,0.525852859020233,-0.238959208130836,0.816319227218628,0.655546426773071,-0.127061918377876,0.744388341903687,0.678755879402161,-0.428910702466965,0.596092164516449,0.511068761348724,-0.383843779563904,0.769072473049164,0.668386161327362,-0.288619518280029,0.685535311698914,0.678755879402161,-0.428910702466965,0.596092164516449,0.675114154815674,-0.517472326755524,0.525778532028198,\r\n0.576517879962921,-0.489757806062698,0.65403687953949,0.704958975315094,-0.577041625976563,0.41237798333168,0.780604600906372,-0.532097578048706,0.327915459871292,0.683156430721283,-0.660563468933105,0.311372846364975,0.773318886756897,-0.465731561183929,0.430199891328812,0.675114154815674,-0.517472326755524,0.525778532028198,0.678755879402161,-0.428910702466965,0.596092164516449,0.704958975315094,-0.577041625976563,0.41237798333168,0.773318886756897,-0.465731561183929,0.430199891328812,0.780604600906372,-0.532097578048706,0.327915459871292,0.491368323564529,-0.338214308023453,0.802600860595703,0.346138834953308,-0.330932378768921,0.877879023551941,0.332726091146469,-0.147056326270103,0.931486785411835,0.273366361856461,-0.570750534534454,0.774283170700073,0.243449300527573,-0.612166047096252,0.752319753170013,0.188344940543175,-0.509777724742889,0.839435994625092,0.332726091146469,-0.147056326270103,0.931486785411835,0.513966500759125,-0.127381563186646,0.848299622535706,0.491368323564529,-0.338214308023453,0.802600860595703,0.52545702457428,-0.0928211286664009,0.84574168920517,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.579087018966675,-0.185492888092995,0.793883144855499,0.548048377037048,0.0629874095320702,0.834071576595306,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.57683664560318,0.0730307176709175,0.813588261604309,0.395094573497772,-0.235732704401016,0.887879610061646,0.211570799350739,-0.365890234708786,0.906290233135223,0.20089316368103,-0.250614911317825,0.947013199329376,0.211570799350739,-0.365890234708786,0.906290233135223,0.188344940543175,-0.509777724742889,0.839435994625092,0.204588130116463,-0.417424738407135,0.885381400585175,0.52545702457428,-0.0928211286664009,0.84574168920517,0.395094573497772,-0.235732704401016,0.887879610061646,0.346834003925323,-0.147999092936516,0.926176190376282,0.556100606918335,-0.0494062155485153,0.829645156860352,0.533571779727936,0.0664401799440384,0.843140959739685,0.57683664560318,0.0730307176709175,0.813588261604309,0.556100606918335,-0.0494062155485153,0.829645156860352,\r\n0.513966500759125,-0.127381563186646,0.848299622535706,0.533571779727936,0.0664401799440384,0.843140959739685,0.439580261707306,0.250936239957809,0.862438440322876,0.471370249986649,0.00124359678011388,0.881934463977814,0.380480974912643,0.270206719636917,0.884433388710022,0.510115444660187,0.0850097462534904,0.855894505977631,0.439580261707306,0.250936239957809,0.862438440322876,0.486893236637115,0.221341729164124,0.844951272010803,0.471370249986649,0.00124359678011388,0.881934463977814,0.54112046957016,-0.4202581346035,0.728403449058533,0.473797857761383,-0.10476515442133,0.874379634857178,0.569673001766205,0.126119762659073,0.812136888504028,0.510115444660187,0.0850097462534904,0.855894505977631,0.486893236637115,0.221341729164124,0.844951272010803,0.643970370292664,-0.0537489913403988,0.763159930706024,0.569673001766205,0.126119762659073,0.812136888504028,0.581034898757935,0.0350375585258007,0.813124001026154,0.712035417556763,-0.286907225847244,0.640850722789764,0.643970370292664,-0.0537489913403988,0.763159930706024,0.644232928752899,-0.169619619846344,0.745783448219299,0.459507435560226,-0.551141798496246,0.69648802280426,0.319755643606186,-0.635137319564819,0.703105032444,0.431529104709625,-0.524264693260193,0.734117865562439,0.459507435560226,-0.551141798496246,0.69648802280426,0.54112046957016,-0.4202581346035,0.728403449058533,0.519939303398132,-0.645437121391296,0.559530019760132,0.725247621536255,-0.551386713981628,0.412296622991562,0.737560570240021,-0.465059906244278,0.489615678787231,0.727962851524353,-0.350361049175262,0.589336097240448,0.725247621536255,-0.551386713981628,0.412296622991562,0.678994357585907,-0.677961111068726,0.281664997339249,0.714482843875885,-0.616353750228882,0.331092298030853,0.727962851524353,-0.350361049175262,0.589336097240448,0.737560570240021,-0.465059906244278,0.489615678787231,0.712035417556763,-0.286907225847244,0.640850722789764,0.243449300527573,-0.612166047096252,0.752319753170013,0.273366361856461,-0.570750534534454,0.774283170700073,0.319755643606186,-0.635137319564819,0.703105032444,\r\n-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.0660471841692925,-0.160469442605972,0.984828531742096,0.127677500247955,-0.00961600989103317,0.991769075393677,0.0181596595793962,0.0964839830994606,0.995168805122375,-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.022150756791234,0.124972723424435,0.991912841796875,0.533834278583527,-0.3728067278862,0.758970320224762,0.491368323564529,-0.338214308023453,0.802600860595703,0.619894444942474,-0.311094373464584,0.720382630825043,0.607026278972626,-0.283796936273575,0.742279171943665,0.609364092350006,-0.202266320586205,0.766657412052155,0.619894444942474,-0.311094373464584,0.720382630825043,0.609364092350006,-0.202266320586205,0.766657412052155,0.607026278972626,-0.283796936273575,0.742279171943665,0.44224813580513,-0.22270679473877,0.868802726268768,0.39928925037384,-0.100698843598366,0.911278069019318,0.316795140504837,-0.154013782739639,0.935906231403351,0.334105134010315,-0.105962336063385,0.936560571193695,0.280007004737854,-0.0505081303417683,0.958668291568756,0.210591197013855,-0.146390616893768,0.966551125049591,0.316795140504837,-0.154013782739639,0.935906231403351,0.127677500247955,-0.00961600989103317,0.991769075393677,0.210591197013855,-0.146390616893768,0.966551125049591,0.280007004737854,-0.0505081303417683,0.958668291568756,0.367658585309982,-0.220539763569832,0.903431951999664,0.384144246578217,-0.167515695095062,0.907949149608612,0.44224813580513,-0.22270679473877,0.868802726268768,0.39928925037384,-0.100698843598366,0.911278069019318,0.384144246578217,-0.167515695095062,0.907949149608612,0.367658585309982,-0.220539763569832,0.903431951999664,0.153472140431404,0.0121060498058796,0.988078773021698,0.276928007602692,-0.0188802964985371,0.960705101490021,0.0181596595793962,0.0964839830994606,0.995168805122375,0.276928007602692,-0.0188802964985371,0.960705101490021,0.300763428211212,-0.144975259900093,0.942615211009979,0.450994789600372,-0.0293684490025043,0.892043173313141,0.383732378482819,0.0719972550868988,0.920633316040039,0.450994789600372,-0.0293684490025043,0.892043173313141,\r\n0.311840623617172,-0.0737160891294479,0.947270452976227,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.158430337905884,-0.105434514582157,0.981724679470062,0.176204815506935,-0.0524153225123882,0.982956945896149,0.263052016496658,-0.211196288466454,0.941381812095642,0.158430337905884,-0.105434514582157,0.981724679470062,0.311840623617172,-0.0737160891294479,0.947270452976227,0.176204815506935,-0.0524153225123882,0.982956945896149,0.0795867219567299,0.130899995565414,0.988195836544037,0.0540701262652874,-0.00424614734947681,0.998528063297272,0.348604291677475,0.428204417228699,0.833736121654511,0.30412358045578,0.409574717283249,0.8600914478302,0.27626770734787,0.382918566465378,0.881504118442535,0.0707326158881187,0.295081377029419,0.952850341796875,0.122164316475391,0.387442201375961,0.913763701915741,0.112164318561554,0.346320927143097,0.931386530399323,0.0795867219567299,0.130899995565414,0.988195836544037,0.202096506953239,0.113540336489677,0.972761809825897,0.0707326158881187,0.295081377029419,0.952850341796875,0.27626770734787,0.382918566465378,0.881504118442535,0.197703123092651,0.407277196645737,0.89164936542511,0.267225861549377,0.438919067382813,0.857869625091553,0.122164316475391,0.387442201375961,0.913763701915741,0.196179538965225,0.378707110881805,0.904485702514648,0.197703123092651,0.407277196645737,0.89164936542511,-0.00410858355462551,0.000159960676683113,0.999991476535797,0.125151544809341,0.150098383426666,0.980717837810516,-0.00723437825217843,-0.0348329469561577,0.999366939067841,0.125151544809341,0.150098383426666,0.980717837810516,0.0132211623713374,0.0785951241850853,0.996818900108337,-0.00723437825217843,-0.0348329469561577,0.999366939067841,-0.131930530071259,0.26743084192276,0.954502463340759,-0.00410858355462551,0.000159960676683113,0.999991476535797,-0.101764678955078,0.235011115670204,0.966650724411011,0.133035317063332,0.858216226100922,0.495748341083527,0.172042667865753,0.896263182163239,0.408795267343521,0.227061703801155,0.845456182956696,0.483370184898376,0.10782714933157,0.940842747688293,0.321229100227356,\r\n0.172042667865753,0.896263182163239,0.408795267343521,0.00946624763309956,0.847232937812805,0.531137049198151,-0.0201575793325901,0.86247992515564,0.50568950176239,0.00946624763309956,0.847232937812805,0.531137049198151,0.0174745563417673,0.612232744693756,0.790484368801117,-0.0763430818915367,0.492704629898071,0.8668412566185,-0.0201575793325901,0.86247992515564,0.50568950176239,0.0174745563417673,0.612232744693756,0.790484368801117,-0.0763430818915367,0.492704629898071,0.8668412566185,-0.131930530071259,0.26743084192276,0.954502463340759,-0.112749569118023,0.78090500831604,0.614389717578888,0.227061703801155,0.845456182956696,0.483370184898376,0.251410961151123,0.802416682243347,0.541220664978027,0.133035317063332,0.858216226100922,0.495748341083527,0.341940134763718,0.480908334255219,0.807343780994415,0.313047915697098,0.526129424571991,0.790688753128052,0.348604291677475,0.428204417228699,0.833736121654511,0.341940134763718,0.480908334255219,0.807343780994415,0.339070081710815,0.525049269199371,0.7806116938591,0.310542374849319,0.655100047588348,0.688772201538086,0.262873411178589,0.755711019039154,0.599831879138947,0.0675790384411812,0.790684998035431,0.608481824398041,0.251410961151123,0.802416682243347,0.541220664978027,0.323511332273483,0.66647607088089,0.671676933765411,0.262873411178589,0.755711019039154,0.599831879138947,0.310542374849319,0.655100047588348,0.688772201538086,-0.130151435732841,0.824181258678436,0.551167547702789,-0.134479597210884,0.814412713050842,0.564488291740417,-0.0317195355892181,0.793773710727692,0.607385456562042,0.0166161507368088,0.969983041286469,0.242603942751884,-0.110555455088615,0.961312830448151,0.252299427986145,-0.0151908276602626,0.98775315284729,0.155283078551292,0.113144584000111,0.98102331161499,0.157453000545502,0.0166161507368088,0.969983041286469,0.242603942751884,-0.0151908276602626,0.98775315284729,0.155283078551292,0.113144584000111,0.98102331161499,0.157453000545502,0.168862327933311,0.98376077413559,0.0608289316296577,0.284644275903702,0.943514883518219,0.16957950592041,\r\n0.248310551047325,0.930973052978516,0.267639428377151,0.284644275903702,0.943514883518219,0.16957950592041,0.241195008158684,0.952982842922211,0.183435320854187,-0.115046732127666,0.537694454193115,0.835253715515137,-0.125923648476601,0.487240254878998,0.864141225814819,-0.0298803467303514,0.513960301876068,0.857293307781219,0.125151544809341,0.150098383426666,0.980717837810516,0.125196561217308,0.250160127878189,0.960075855255127,0.083567887544632,0.240023568272591,0.967163383960724,0.125196561217308,0.250160127878189,0.960075855255127,0.0622172057628632,0.188094243407249,0.98017817735672,0.0514616444706917,0.279963612556458,0.958630263805389,0.0622172057628632,0.188094243407249,0.98017817735672,0.0100334007292986,0.312331259250641,0.949920237064362,0.0514616444706917,0.279963612556458,0.958630263805389,0.0100334007292986,0.312331259250641,0.949920237064362,0.0713144913315773,0.450381398200989,0.889983534812927,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.0547223053872585,0.428312569856644,0.901972115039825,-0.0298803467303514,0.513960301876068,0.857293307781219,-0.125923648476601,0.487240254878998,0.864141225814819,-0.0298803467303514,0.513960301876068,0.857293307781219,0.0882005840539932,0.507813811302185,0.856939554214478,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0108718099072576,0.639894366264343,0.768385887145996,-0.0019079118501395,0.575022280216217,0.818135499954224,0.0985825657844543,0.628763675689697,0.771321952342987,-0.0353757329285145,0.696689307689667,0.716500103473663,-0.0108718099072576,0.639894366264343,0.768385887145996,0.0403314493596554,0.714066982269287,0.698914647102356,-0.0320500247180462,0.774002730846405,0.632370471954346,-0.0353757329285145,0.696689307689667,0.716500103473663,0.0172291044145823,0.769647896289825,0.638235926628113,-0.0317195355892181,0.793773710727692,0.607385456562042,-0.134479597210884,0.814412713050842,0.564488291740417,-0.0320500247180462,0.774002730846405,0.632370471954346,0.241195008158684,0.952982842922211,0.183435320854187,0.141424059867859,0.971049606800079,0.192514479160309,\r\n0.128392115235329,0.957290768623352,0.259055018424988,0.10290739685297,0.969109237194061,0.224136829376221,0.128392115235329,0.957290768623352,0.259055018424988,0.141424059867859,0.971049606800079,0.192514479160309,0.10290739685297,0.969109237194061,0.224136829376221,0.187167480587959,0.939340889453888,0.287414312362671,0.075224258005619,0.947177827358246,0.311761826276779,0.075224258005619,0.947177827358246,0.311761826276779,0.331274658441544,0.881245195865631,0.337140679359436,0.235151126980782,0.870574414730072,0.432208240032196,0.235151126980782,0.870574414730072,0.432208240032196,0.542016208171844,0.761074721813202,0.356347501277924,0.629519820213318,0.61295074224472,0.477489441633224,0.629519820213318,0.61295074224472,0.477489441633224,0.851179659366608,0.35236930847168,0.389010280370712,0.721217513084412,0.444100230932236,0.531620264053345,0.79304975271225,0.43667808175087,0.424716770648956,0.721217513084412,0.444100230932236,0.531620264053345,0.888113737106323,0.253452062606812,0.383426487445831,0.79304975271225,0.43667808175087,0.424716770648956,0.888113737106323,0.253452062606812,0.383426487445831,0.870687305927277,0.334379255771637,0.360685497522354,0.89800900220871,0.260620057582855,0.354481130838394,0.860473275184631,0.310579299926758,0.403888702392578,0.890147149562836,0.21664223074913,0.400879055261612,0.905253231525421,0.279196530580521,0.320259034633636,0.89800900220871,0.260620057582855,0.354481130838394,0.888113737106323,0.253452062606812,0.383426487445831,0.682342350482941,0.23908469080925,0.690830886363983,0.708331108093262,0.205853700637817,0.675197124481201,0.670446753501892,0.276777803897858,0.688400328159332,0.725337684154511,0.09644815325737,0.681603133678436,0.682342350482941,0.23908469080925,0.690830886363983,0.641032159328461,0.0760904848575592,0.763732850551605,0.673548877239227,0.256690800189972,0.693138897418976,0.671477377414703,0.208224073052406,0.711168467998505,0.717521369457245,0.176224857568741,0.673875153064728,0.671477377414703,0.208224073052406,0.711168467998505,0.670446753501892,0.276777803897858,0.688400328159332,\r\n0.708331108093262,0.205853700637817,0.675197124481201,0.741834938526154,0.263561874628067,0.616616487503052,0.664383471012115,0.332575857639313,0.669318854808807,0.673548877239227,0.256690800189972,0.693138897418976,0.641032159328461,0.0760904848575592,0.763732850551605,0.489927351474762,0.0631547048687935,0.869472563266754,0.563770413398743,-0.101601220667362,0.819658398628235,0.860473275184631,0.310579299926758,0.403888702392578,0.78267240524292,0.357104510068893,0.509804129600525,0.833220779895782,0.258167296648026,0.488970994949341,0.78267240524292,0.357104510068893,0.509804129600525,0.704952239990234,0.351573795080185,0.61598539352417,0.741834938526154,0.263561874628067,0.616616487503052,0.526422083377838,0.0854881256818771,0.845914542675018,0.515542209148407,-0.0974207893013954,0.851308047771454,0.489927351474762,0.0631547048687935,0.869472563266754,0.515542209148407,-0.0974207893013954,0.851308047771454,0.649829685688019,0.0461880341172218,0.758675098419189,0.655546426773071,-0.127061918377876,0.744388341903687,0.790592193603516,-0.224941268563271,0.569530725479126,0.668386161327362,-0.288619518280029,0.685535311698914,0.655546426773071,-0.127061918377876,0.744388341903687,0.668386161327362,-0.288619518280029,0.685535311698914,0.788371682167053,-0.361921191215515,0.497476667165756,0.678755879402161,-0.428910702466965,0.596092164516449,0.788371682167053,-0.361921191215515,0.497476667165756,0.773318886756897,-0.465731561183929,0.430199891328812,0.678755879402161,-0.428910702466965,0.596092164516449,0.773318886756897,-0.465731561183929,0.430199891328812,0.834701478481293,-0.411269217729568,0.366239041090012,0.780604600906372,-0.532097578048706,0.327915459871292,0.294819504022598,-0.525945603847504,0.797785997390747,0.188344940543175,-0.509777724742889,0.839435994625092,0.243449300527573,-0.612166047096252,0.752319753170013,0.619894444942474,-0.311094373464584,0.720382630825043,0.491368323564529,-0.338214308023453,0.802600860595703,0.513966500759125,-0.127381563186646,0.848299622535706,0.498067706823349,-0.0894015282392502,0.862517118453979,\r\n0.602113425731659,7.33628257876262e-005,0.798410475254059,0.52545702457428,-0.0928211286664009,0.84574168920517,0.498067706823349,-0.0894015282392502,0.862517118453979,0.57683664560318,0.0730307176709175,0.813588261604309,0.602113425731659,7.33628257876262e-005,0.798410475254059,0.20089316368103,-0.250614911317825,0.947013199329376,0.211570799350739,-0.365890234708786,0.906290233135223,0.208701744675636,-0.274956881999969,0.938531935214996,0.395094573497772,-0.235732704401016,0.887879610061646,0.20089316368103,-0.250614911317825,0.947013199329376,0.346834003925323,-0.147999092936516,0.926176190376282,0.204588130116463,-0.417424738407135,0.885381400585175,0.188344940543175,-0.509777724742889,0.839435994625092,0.294819504022598,-0.525945603847504,0.797785997390747,0.204588130116463,-0.417424738407135,0.885381400585175,0.208701744675636,-0.274956881999969,0.938531935214996,0.211570799350739,-0.365890234708786,0.906290233135223,0.498067706823349,-0.0894015282392502,0.862517118453979,0.52545702457428,-0.0928211286664009,0.84574168920517,0.346834003925323,-0.147999092936516,0.926176190376282,0.556100606918335,-0.0494062155485153,0.829645156860352,0.57683664560318,0.0730307176709175,0.813588261604309,0.498067706823349,-0.0894015282392502,0.862517118453979,0.556100606918335,-0.0494062155485153,0.829645156860352,0.590862035751343,-0.227593511343002,0.774004578590393,0.513966500759125,-0.127381563186646,0.848299622535706,0.510115444660187,0.0850097462534904,0.855894505977631,0.471370249986649,0.00124359678011388,0.881934463977814,0.439580261707306,0.250936239957809,0.862438440322876,0.497714698314667,-0.317995965480804,0.806943893432617,0.54112046957016,-0.4202581346035,0.728403449058533,0.471370249986649,0.00124359678011388,0.881934463977814,0.510115444660187,0.0850097462534904,0.855894505977631,0.569673001766205,0.126119762659073,0.812136888504028,0.526898860931396,-0.0422754473984241,0.848875880241394,0.643970370292664,-0.0537489913403988,0.763159930706024,0.603840231895447,0.0263564214110374,0.79666942358017,0.569673001766205,0.126119762659073,0.812136888504028,\r\n0.643970370292664,-0.0537489913403988,0.763159930706024,0.712035417556763,-0.286907225847244,0.640850722789764,0.731761813163757,-0.168248355388641,0.660467267036438,0.459507435560226,-0.551141798496246,0.69648802280426,0.421246021986008,-0.620599329471588,0.661368310451508,0.319755643606186,-0.635137319564819,0.703105032444,0.519939303398132,-0.645437121391296,0.559530019760132,0.54112046957016,-0.4202581346035,0.728403449058533,0.504042625427246,-0.553920865058899,0.662655651569366,0.459507435560226,-0.551141798496246,0.69648802280426,0.519939303398132,-0.645437121391296,0.559530019760132,0.421246021986008,-0.620599329471588,0.661368310451508,0.725247621536255,-0.551386713981628,0.412296622991562,0.714482843875885,-0.616353750228882,0.331092298030853,0.737560570240021,-0.465059906244278,0.489615678787231,0.655960619449615,-0.724235415458679,0.212599441409111,0.714482843875885,-0.616353750228882,0.331092298030853,0.678994357585907,-0.677961111068726,0.281664997339249,0.782142698764801,-0.372656613588333,0.499379426240921,0.712035417556763,-0.286907225847244,0.640850722789764,0.737560570240021,-0.465059906244278,0.489615678787231,0.421246021986008,-0.620599329471588,0.661368310451508,0.243449300527573,-0.612166047096252,0.752319753170013,0.319755643606186,-0.635137319564819,0.703105032444,-0.0352551713585854,-0.00724665774032474,0.999352037906647,0.127677500247955,-0.00961600989103317,0.991769075393677,0.022150756791234,0.124972723424435,0.991912841796875,0.0533662401139736,0.146562337875366,0.987760841846466,0.0181596595793962,0.0964839830994606,0.995168805122375,0.022150756791234,0.124972723424435,0.991912841796875,0.607026278972626,-0.283796936273575,0.742279171943665,0.619894444942474,-0.311094373464584,0.720382630825043,0.590862035751343,-0.227593511343002,0.774004578590393,0.44224813580513,-0.22270679473877,0.868802726268768,0.607026278972626,-0.283796936273575,0.742279171943665,0.420005142688751,-0.325333267450333,0.847203493118286,0.316795140504837,-0.154013782739639,0.935906231403351,0.39928925037384,-0.100698843598366,0.911278069019318,\r\n0.441951245069504,-0.0830669701099396,0.893184661865234,0.280007004737854,-0.0505081303417683,0.958668291568756,0.316795140504837,-0.154013782739639,0.935906231403351,0.420309662818909,-0.0927163064479828,0.902631342411041,0.280007004737854,-0.0505081303417683,0.958668291568756,0.134500235319138,0.12159176915884,0.983425140380859,0.127677500247955,-0.00961600989103317,0.991769075393677,0.44224813580513,-0.22270679473877,0.868802726268768,0.392128705978394,-0.337384879589081,0.855807423591614,0.367658585309982,-0.220539763569832,0.903431951999664,0.367658585309982,-0.220539763569832,0.903431951999664,0.47293809056282,-0.0888934880495071,0.876599907875061,0.39928925037384,-0.100698843598366,0.911278069019318,0.300763428211212,-0.144975259900093,0.942615211009979,0.276928007602692,-0.0188802964985371,0.960705101490021,0.153472140431404,0.0121060498058796,0.988078773021698,0.153472140431404,0.0121060498058796,0.988078773021698,0.0181596595793962,0.0964839830994606,0.995168805122375,0.0533662401139736,0.146562337875366,0.987760841846466,0.311840623617172,-0.0737160891294479,0.947270452976227,0.450994789600372,-0.0293684490025043,0.892043173313141,0.300763428211212,-0.144975259900093,0.942615211009979,0.2423445135355,-0.207427456974983,0.947756767272949,0.176204815506935,-0.0524153225123882,0.982956945896149,0.158430337905884,-0.105434514582157,0.981724679470062,0.2423445135355,-0.207427456974983,0.947756767272949,0.158430337905884,-0.105434514582157,0.981724679470062,0.263052016496658,-0.211196288466454,0.941381812095642,0.311840623617172,-0.0737160891294479,0.947270452976227,0.300763428211212,-0.144975259900093,0.942615211009979,0.263052016496658,-0.211196288466454,0.941381812095642,0.176204815506935,-0.0524153225123882,0.982956945896149,0.202096506953239,0.113540336489677,0.972761809825897,0.0795867219567299,0.130899995565414,0.988195836544037,0.348604291677475,0.428204417228699,0.833736121654511,0.27626770734787,0.382918566465378,0.881504118442535,0.267225861549377,0.438919067382813,0.857869625091553,0.0707326158881187,0.295081377029419,0.952850341796875,\r\n0.183695614337921,0.272750854492188,0.944384753704071,0.122164316475391,0.387442201375961,0.913763701915741,0.0707326158881187,0.295081377029419,0.952850341796875,0.202096506953239,0.113540336489677,0.972761809825897,0.183695614337921,0.272750854492188,0.944384753704071,0.197703123092651,0.407277196645737,0.89164936542511,0.212854743003845,0.423279881477356,0.880640029907227,0.267225861549377,0.438919067382813,0.857869625091553,0.183695614337921,0.272750854492188,0.944384753704071,0.196179538965225,0.378707110881805,0.904485702514648,0.122164316475391,0.387442201375961,0.913763701915741,0.196179538965225,0.378707110881805,0.904485702514648,0.284088909626007,0.317713260650635,0.904627919197083,0.197703123092651,0.407277196645737,0.89164936542511,0.125151544809341,0.150098383426666,0.980717837810516,-0.00410858355462551,0.000159960676683113,0.999991476535797,0.123679496347904,0.247575983405113,0.960941970348358,-0.0270052310079336,0.157849922776222,0.987093687057495,-0.00410858355462551,0.000159960676683113,0.999991476535797,-0.131930530071259,0.26743084192276,0.954502463340759,0.133035317063332,0.858216226100922,0.495748341083527,-0.0266329143196344,0.834496200084686,0.550369501113892,0.172042667865753,0.896263182163239,0.408795267343521,-0.0266329143196344,0.834496200084686,0.550369501113892,0.00946624763309956,0.847232937812805,0.531137049198151,0.172042667865753,0.896263182163239,0.408795267343521,0.0174745563417673,0.612232744693756,0.790484368801117,0.00946624763309956,0.847232937812805,0.531137049198151,-0.00296406168490648,0.638069748878479,0.769972681999207,-0.0763430818915367,0.492704629898071,0.8668412566185,0.0174745563417673,0.612232744693756,0.790484368801117,0.123679496347904,0.247575983405113,0.960941970348358,-0.0270052310079336,0.157849922776222,0.987093687057495,-0.131930530071259,0.26743084192276,0.954502463340759,-0.0763430818915367,0.492704629898071,0.8668412566185,0.133035317063332,0.858216226100922,0.495748341083527,0.251410961151123,0.802416682243347,0.541220664978027,0.0675790384411812,0.790684998035431,0.608481824398041,\r\n0.303067952394485,0.457902848720551,0.835747957229614,0.341940134763718,0.480908334255219,0.807343780994415,0.348604291677475,0.428204417228699,0.833736121654511,0.341940134763718,0.480908334255219,0.807343780994415,0.303067952394485,0.457902848720551,0.835747957229614,0.339070081710815,0.525049269199371,0.7806116938591,0.323511332273483,0.66647607088089,0.671676933765411,0.310542374849319,0.655100047588348,0.688772201538086,0.339070081710815,0.525049269199371,0.7806116938591,0.262873411178589,0.755711019039154,0.599831879138947,0.0523612163960934,0.688206434249878,0.723622858524323,0.0675790384411812,0.790684998035431,0.608481824398041,0.213782727718353,0.700187087059021,0.681201100349426,0.262873411178589,0.755711019039154,0.599831879138947,0.323511332273483,0.66647607088089,0.671676933765411,-0.0281199868768454,0.805395483970642,0.592070341110229,-0.130151435732841,0.824181258678436,0.551167547702789,-0.0317195355892181,0.793773710727692,0.607385456562042,0.113144584000111,0.98102331161499,0.157453000545502,-0.0151908276602626,0.98775315284729,0.155283078551292,0.0370265580713749,0.994041860103607,0.1025170981884,0.113144584000111,0.98102331161499,0.157453000545502,0.0370265580713749,0.994041860103607,0.1025170981884,0.168862327933311,0.98376077413559,0.0608289316296577,0.284644275903702,0.943514883518219,0.16957950592041,0.168862327933311,0.98376077413559,0.0608289316296577,0.305551648139954,0.949666500091553,0.0690770819783211,0.241195008158684,0.952982842922211,0.183435320854187,0.284644275903702,0.943514883518219,0.16957950592041,0.287783026695251,0.954533517360687,0.0777596682310104,0.237830072641373,0.203379124403,0.949775576591492,0.125196561217308,0.250160127878189,0.960075855255127,0.125151544809341,0.150098383426666,0.980717837810516,0.125196561217308,0.250160127878189,0.960075855255127,0.237830072641373,0.203379124403,0.949775576591492,0.0622172057628632,0.188094243407249,0.98017817735672,0.147948831319809,0.243292838335037,0.958602964878082,0.0100334007292986,0.312331259250641,0.949920237064362,0.0622172057628632,0.188094243407249,0.98017817735672,\r\n0.138674452900887,0.383616268634796,0.913021266460419,0.0713144913315773,0.450381398200989,0.889983534812927,0.0100334007292986,0.312331259250641,0.949920237064362,-0.0298803467303514,0.513960301876068,0.857293307781219,-0.0547223053872585,0.428312569856644,0.901972115039825,0.0713144913315773,0.450381398200989,0.889983534812927,0.0713144913315773,0.450381398200989,0.889983534812927,0.0882005840539932,0.507813811302185,0.856939554214478,-0.0298803467303514,0.513960301876068,0.857293307781219,0.130434736609459,0.580640733242035,0.803643524646759,-0.0019079118501395,0.575022280216217,0.818135499954224,0.0882005840539932,0.507813811302185,0.856939554214478,0.130434736609459,0.580640733242035,0.803643524646759,0.0985825657844543,0.628763675689697,0.771321952342987,-0.0019079118501395,0.575022280216217,0.818135499954224,-0.0108718099072576,0.639894366264343,0.768385887145996,0.0985825657844543,0.628763675689697,0.771321952342987,0.123435221612453,0.666655957698822,0.735073745250702,0.0403314493596554,0.714066982269287,0.698914647102356,-0.0108718099072576,0.639894366264343,0.768385887145996,0.123435221612453,0.666655957698822,0.735073745250702,-0.0353757329285145,0.696689307689667,0.716500103473663,0.0403314493596554,0.714066982269287,0.698914647102356,0.0172291044145823,0.769647896289825,0.638235926628113,-0.0320500247180462,0.774002730846405,0.632370471954346,0.0172291044145823,0.769647896289825,0.638235926628113,-0.0317195355892181,0.793773710727692,0.607385456562042,0.241195008158684,0.952982842922211,0.183435320854187,0.17128948867321,0.974414050579071,0.145523265004158,0.141424059867859,0.971049606800079,0.192514479160309,0.17128948867321,0.974414050579071,0.145523265004158,0.10290739685297,0.969109237194061,0.224136829376221,0.141424059867859,0.971049606800079,0.192514479160309,0.10290739685297,0.969109237194061,0.224136829376221,0.245438128709793,0.939164996147156,0.240268796682358,0.187167480587959,0.939340889453888,0.287414312362671,0.075224258005619,0.947177827358246,0.311761826276779,0.187167480587959,0.939340889453888,0.287414312362671,\r\n0.331274658441544,0.881245195865631,0.337140679359436,0.331274658441544,0.881245195865631,0.337140679359436,0.542016208171844,0.761074721813202,0.356347501277924,0.235151126980782,0.870574414730072,0.432208240032196,0.629519820213318,0.61295074224472,0.477489441633224,0.542016208171844,0.761074721813202,0.356347501277924,0.780361771583557,0.571741700172424,0.25327205657959,0.629519820213318,0.61295074224472,0.477489441633224,0.780361771583557,0.571741700172424,0.25327205657959,0.851179659366608,0.35236930847168,0.389010280370712,0.888113737106323,0.253452062606812,0.383426487445831,0.721217513084412,0.444100230932236,0.531620264053345,0.851179659366608,0.35236930847168,0.389010280370712,0.89800900220871,0.260620057582855,0.354481130838394,0.848690867424011,0.387295126914978,0.360175222158432,0.860473275184631,0.310579299926758,0.403888702392578,0.905253231525421,0.279196530580521,0.320259034633636,0.870593667030334,0.342585265636444,0.3531314432621,0.89800900220871,0.260620057582855,0.354481130838394,0.851179659366608,0.35236930847168,0.389010280370712,0.905253231525421,0.279196530580521,0.320259034633636,0.888113737106323,0.253452062606812,0.383426487445831,0.600396513938904,0.341484129428864,0.723126888275146,0.682342350482941,0.23908469080925,0.690830886363983,0.670446753501892,0.276777803897858,0.688400328159332,0.54468297958374,0.220325767993927,0.809182822704315,0.641032159328461,0.0760904848575592,0.763732850551605,0.682342350482941,0.23908469080925,0.690830886363983,0.670446753501892,0.276777803897858,0.688400328159332,0.671477377414703,0.208224073052406,0.711168467998505,0.673548877239227,0.256690800189972,0.693138897418976,0.704952239990234,0.351573795080185,0.61598539352417,0.664383471012115,0.332575857639313,0.669318854808807,0.741834938526154,0.263561874628067,0.616616487503052,0.613422811031342,0.331621646881104,0.716756224632263,0.673548877239227,0.256690800189972,0.693138897418976,0.664383471012115,0.332575857639313,0.669318854808807,0.641032159328461,0.0760904848575592,0.763732850551605,0.54468297958374,0.220325767993927,0.809182822704315,\r\n0.489927351474762,0.0631547048687935,0.869472563266754,0.82616138458252,0.400430798530579,0.396374106407166,0.78267240524292,0.357104510068893,0.509804129600525,0.860473275184631,0.310579299926758,0.403888702392578,0.78267240524292,0.357104510068893,0.509804129600525,0.686091899871826,0.435670405626297,0.582639694213867,0.704952239990234,0.351573795080185,0.61598539352417,0.515542209148407,-0.0974207893013954,0.851308047771454,0.526422083377838,0.0854881256818771,0.845914542675018,0.649829685688019,0.0461880341172218,0.758675098419189,0.526422083377838,0.0854881256818771,0.845914542675018,0.489927351474762,0.0631547048687935,0.869472563266754,0.483378410339355,0.214341431856155,0.848765552043915,0.655546426773071,-0.127061918377876,0.744388341903687,0.649829685688019,0.0461880341172218,0.758675098419189,0.789794504642487,-0.0598123036324978,0.610448181629181,0.790592193603516,-0.224941268563271,0.569530725479126,0.788371682167053,-0.361921191215515,0.497476667165756,0.668386161327362,-0.288619518280029,0.685535311698914,0.790592193603516,-0.224941268563271,0.569530725479126,0.655546426773071,-0.127061918377876,0.744388341903687,0.789794504642487,-0.0598123036324978,0.610448181629181,0.834701478481293,-0.411269217729568,0.366239041090012,0.773318886756897,-0.465731561183929,0.430199891328812,0.788371682167053,-0.361921191215515,0.497476667165756,0.243449300527573,-0.612166047096252,0.752319753170013,0.421246021986008,-0.620599329471588,0.661368310451508,0.294819504022598,-0.525945603847504,0.797785997390747,0.590862035751343,-0.227593511343002,0.774004578590393,0.619894444942474,-0.311094373464584,0.720382630825043,0.513966500759125,-0.127381563186646,0.848299622535706,0.20089316368103,-0.250614911317825,0.947013199329376,0.208701744675636,-0.274956881999969,0.938531935214996,0.193250477313995,-0.158799558877945,0.968213200569153,0.193250477313995,-0.158799558877945,0.968213200569153,0.346834003925323,-0.147999092936516,0.926176190376282,0.20089316368103,-0.250614911317825,0.947013199329376,0.204588130116463,-0.417424738407135,0.885381400585175,\r\n0.294819504022598,-0.525945603847504,0.797785997390747,0.38394483923912,-0.388521194458008,0.837638020515442,0.38394483923912,-0.388521194458008,0.837638020515442,0.208701744675636,-0.274956881999969,0.938531935214996,0.204588130116463,-0.417424738407135,0.885381400585175,0.498067706823349,-0.0894015282392502,0.862517118453979,0.346834003925323,-0.147999092936516,0.926176190376282,0.390531480312347,-0.214615747332573,0.895223498344421,0.556100606918335,-0.0494062155485153,0.829645156860352,0.498067706823349,-0.0894015282392502,0.862517118453979,0.501217007637024,-0.267954617738724,0.822788953781128,0.501217007637024,-0.267954617738724,0.822788953781128,0.590862035751343,-0.227593511343002,0.774004578590393,0.556100606918335,-0.0494062155485153,0.829645156860352,0.510115444660187,0.0850097462534904,0.855894505977631,0.488787800073624,-0.306269705295563,0.816875278949738,0.471370249986649,0.00124359678011388,0.881934463977814,0.497714698314667,-0.317995965480804,0.806943893432617,0.504042625427246,-0.553920865058899,0.662655651569366,0.54112046957016,-0.4202581346035,0.728403449058533,0.488787800073624,-0.306269705295563,0.816875278949738,0.497714698314667,-0.317995965480804,0.806943893432617,0.471370249986649,0.00124359678011388,0.881934463977814,0.526898860931396,-0.0422754473984241,0.848875880241394,0.569673001766205,0.126119762659073,0.812136888504028,0.603840231895447,0.0263564214110374,0.79666942358017,0.510115444660187,0.0850097462534904,0.855894505977631,0.526898860931396,-0.0422754473984241,0.848875880241394,0.488787800073624,-0.306269705295563,0.816875278949738,0.643970370292664,-0.0537489913403988,0.763159930706024,0.731761813163757,-0.168248355388641,0.660467267036438,0.603840231895447,0.0263564214110374,0.79666942358017,0.731761813163757,-0.168248355388641,0.660467267036438,0.712035417556763,-0.286907225847244,0.640850722789764,0.782142698764801,-0.372656613588333,0.499379426240921,0.577296555042267,-0.603464722633362,0.550053477287292,0.519939303398132,-0.645437121391296,0.559530019760132,0.504042625427246,-0.553920865058899,0.662655651569366,\r\n0.421246021986008,-0.620599329471588,0.661368310451508,0.519939303398132,-0.645437121391296,0.559530019760132,0.545982301235199,-0.628049373626709,0.554488122463226,0.714482843875885,-0.616353750228882,0.331092298030853,0.763037323951721,-0.527620494365692,0.373350352048874,0.737560570240021,-0.465059906244278,0.489615678787231,0.655960619449615,-0.724235415458679,0.212599441409111,0.726977944374084,-0.638608992099762,0.25235190987587,0.714482843875885,-0.616353750228882,0.331092298030853,0.763037323951721,-0.527620494365692,0.373350352048874,0.782142698764801,-0.372656613588333,0.499379426240921,0.737560570240021,-0.465059906244278,0.489615678787231,0.134500235319138,0.12159176915884,0.983425140380859,0.022150756791234,0.124972723424435,0.991912841796875,0.127677500247955,-0.00961600989103317,0.991769075393677,0.0533662401139736,0.146562337875366,0.987760841846466,0.022150756791234,0.124972723424435,0.991912841796875,0.134500235319138,0.12159176915884,0.983425140380859,0.607026278972626,-0.283796936273575,0.742279171943665,0.590862035751343,-0.227593511343002,0.774004578590393,0.501217007637024,-0.267954617738724,0.822788953781128,0.420005142688751,-0.325333267450333,0.847203493118286,0.607026278972626,-0.283796936273575,0.742279171943665,0.501217007637024,-0.267954617738724,0.822788953781128,0.420005142688751,-0.325333267450333,0.847203493118286,0.392128705978394,-0.337384879589081,0.855807423591614,0.44224813580513,-0.22270679473877,0.868802726268768,0.441951245069504,-0.0830669701099396,0.893184661865234,0.39928925037384,-0.100698843598366,0.911278069019318,0.386325061321259,-0.0994983091950417,0.91698032617569,0.441951245069504,-0.0830669701099396,0.893184661865234,0.420309662818909,-0.0927163064479828,0.902631342411041,0.316795140504837,-0.154013782739639,0.935906231403351,0.280007004737854,-0.0505081303417683,0.958668291568756,0.420309662818909,-0.0927163064479828,0.902631342411041,0.42011895775795,0.0203024316579103,0.907241821289063,0.253663897514343,0.129320368170738,0.958608746528625,0.134500235319138,0.12159176915884,0.983425140380859,\r\n0.280007004737854,-0.0505081303417683,0.958668291568756,0.529537320137024,-0.196504056453705,0.825212836265564,0.367658585309982,-0.220539763569832,0.903431951999664,0.392128705978394,-0.337384879589081,0.855807423591614,0.47293809056282,-0.0888934880495071,0.876599907875061,0.367658585309982,-0.220539763569832,0.903431951999664,0.529537320137024,-0.196504056453705,0.825212836265564,0.47293809056282,-0.0888934880495071,0.876599907875061,0.426290512084961,-0.100778356194496,0.898954927921295,0.39928925037384,-0.100698843598366,0.911278069019318,0.153879195451736,-0.046009574085474,0.987017810344696,0.300763428211212,-0.144975259900093,0.942615211009979,0.153472140431404,0.0121060498058796,0.988078773021698,0.153879195451736,-0.046009574085474,0.987017810344696,0.153472140431404,0.0121060498058796,0.988078773021698,0.0533662401139736,0.146562337875366,0.987760841846466,0.176204815506935,-0.0524153225123882,0.982956945896149,0.2423445135355,-0.207427456974983,0.947756767272949,0.305549412965775,-0.13619090616703,0.942386031150818,0.263052016496658,-0.211196288466454,0.941381812095642,0.262574404478073,-0.19075571000576,0.945868313312531,0.2423445135355,-0.207427456974983,0.947756767272949,0.263052016496658,-0.211196288466454,0.941381812095642,0.300763428211212,-0.144975259900093,0.942615211009979,0.262574404478073,-0.19075571000576,0.945868313312531,0.176204815506935,-0.0524153225123882,0.982956945896149,0.305549412965775,-0.13619090616703,0.942386031150818,0.202096506953239,0.113540336489677,0.972761809825897,0.348604291677475,0.428204417228699,0.833736121654511,0.267225861549377,0.438919067382813,0.857869625091553,0.303067952394485,0.457902848720551,0.835747957229614,0.183695614337921,0.272750854492188,0.944384753704071,0.202096506953239,0.113540336489677,0.972761809825897,0.291346490383148,0.0611963793635368,0.954658150672913,0.197703123092651,0.407277196645737,0.89164936542511,0.284088909626007,0.317713260650635,0.904627919197083,0.212854743003845,0.423279881477356,0.880640029907227,0.267225861549377,0.438919067382813,0.857869625091553,\r\n0.212854743003845,0.423279881477356,0.880640029907227,0.303067952394485,0.457902848720551,0.835747957229614,0.183695614337921,0.272750854492188,0.944384753704071,0.270329684019089,0.23632775247097,0.933311820030212,0.196179538965225,0.378707110881805,0.904485702514648,0.196179538965225,0.378707110881805,0.904485702514648,0.270329684019089,0.23632775247097,0.933311820030212,0.284088909626007,0.317713260650635,0.904627919197083,-0.0270052310079336,0.157849922776222,0.987093687057495,0.123679496347904,0.247575983405113,0.960941970348358,-0.00410858355462551,0.000159960676683113,0.999991476535797,0.125151544809341,0.150098383426666,0.980717837810516,0.123679496347904,0.247575983405113,0.960941970348358,0.237830072641373,0.203379124403,0.949775576591492,0.133035317063332,0.858216226100922,0.495748341083527,-0.108360596001148,0.76529985666275,0.634487152099609,-0.0266329143196344,0.834496200084686,0.550369501113892,-0.168202683329582,0.685810089111328,0.708076417446136,0.00946624763309956,0.847232937812805,0.531137049198151,-0.0266329143196344,0.834496200084686,0.550369501113892,-0.168202683329582,0.685810089111328,0.708076417446136,-0.00296406168490648,0.638069748878479,0.769972681999207,0.00946624763309956,0.847232937812805,0.531137049198151,0.0174745563417673,0.612232744693756,0.790484368801117,-0.00296406168490648,0.638069748878479,0.769972681999207,0.136592566967011,0.422657579183578,0.895936906337738,0.123679496347904,0.247575983405113,0.960941970348358,0.0174745563417673,0.612232744693756,0.790484368801117,0.136592566967011,0.422657579183578,0.895936906337738,-0.0763430818915367,0.492704629898071,0.8668412566185,0.123679496347904,0.247575983405113,0.960941970348358,-0.0270052310079336,0.157849922776222,0.987093687057495,0.133035317063332,0.858216226100922,0.495748341083527,0.0675790384411812,0.790684998035431,0.608481824398041,-0.108360596001148,0.76529985666275,0.634487152099609,0.230102077126503,0.492896169424057,0.839110374450684,0.339070081710815,0.525049269199371,0.7806116938591,0.303067952394485,0.457902848720551,0.835747957229614,\r\n0.275191009044647,0.585125863552094,0.762822031974792,0.323511332273483,0.66647607088089,0.671676933765411,0.339070081710815,0.525049269199371,0.7806116938591,0.0523612163960934,0.688206434249878,0.723622858524323,0.262873411178589,0.755711019039154,0.599831879138947,0.213782727718353,0.700187087059021,0.681201100349426,-0.172558680176735,0.648832619190216,0.741106986999512,0.0675790384411812,0.790684998035431,0.608481824398041,0.0523612163960934,0.688206434249878,0.723622858524323,0.323511332273483,0.66647607088089,0.671676933765411,0.193740084767342,0.627204418182373,0.754373371601105,0.213782727718353,0.700187087059021,0.681201100349426,-0.0317195355892181,0.793773710727692,0.607385456562042,0.0361335501074791,0.743836879730225,0.66738361120224,-0.0281199868768454,0.805395483970642,0.592070341110229,0.305551648139954,0.949666500091553,0.0690770819783211,0.168862327933311,0.98376077413559,0.0608289316296577,0.26318347454071,0.964514076709747,-0.0211402084678411,0.287783026695251,0.954533517360687,0.0777596682310104,0.284644275903702,0.943514883518219,0.16957950592041,0.305551648139954,0.949666500091553,0.0690770819783211,0.17128948867321,0.974414050579071,0.145523265004158,0.241195008158684,0.952982842922211,0.183435320854187,0.287783026695251,0.954533517360687,0.0777596682310104,0.237830072641373,0.203379124403,0.949775576591492,0.150748535990715,0.116500400006771,0.981683433055878,0.0622172057628632,0.188094243407249,0.98017817735672,0.138674452900887,0.383616268634796,0.913021266460419,0.0100334007292986,0.312331259250641,0.949920237064362,0.147948831319809,0.243292838335037,0.958602964878082,0.147948831319809,0.243292838335037,0.958602964878082,0.0622172057628632,0.188094243407249,0.98017817735672,0.121682927012444,0.0871393010020256,0.988736510276794,0.146585047245026,0.448811560869217,0.881521880626678,0.0713144913315773,0.450381398200989,0.889983534812927,0.138674452900887,0.383616268634796,0.913021266460419,0.0713144913315773,0.450381398200989,0.889983534812927,0.146585047245026,0.448811560869217,0.881521880626678,\r\n0.0882005840539932,0.507813811302185,0.856939554214478,0.166356474161148,0.530001580715179,0.831518888473511,0.130434736609459,0.580640733242035,0.803643524646759,0.0882005840539932,0.507813811302185,0.856939554214478,0.0985825657844543,0.628763675689697,0.771321952342987,0.130434736609459,0.580640733242035,0.803643524646759,0.192515254020691,0.626001298427582,0.755685150623322,0.0985825657844543,0.628763675689697,0.771321952342987,0.192515254020691,0.626001298427582,0.755685150623322,0.123435221612453,0.666655957698822,0.735073745250702,0.0403314493596554,0.714066982269287,0.698914647102356,0.123435221612453,0.666655957698822,0.735073745250702,0.138455301523209,0.682594060897827,0.717562079429626,0.0403314493596554,0.714066982269287,0.698914647102356,0.0361335501074791,0.743836879730225,0.66738361120224,0.0172291044145823,0.769647896289825,0.638235926628113,-0.0317195355892181,0.793773710727692,0.607385456562042,0.0172291044145823,0.769647896289825,0.638235926628113,0.0361335501074791,0.743836879730225,0.66738361120224,0.171578153967857,0.971455454826355,0.163814157247543,0.10290739685297,0.969109237194061,0.224136829376221,0.17128948867321,0.974414050579071,0.145523265004158,0.245438128709793,0.939164996147156,0.240268796682358,0.10290739685297,0.969109237194061,0.224136829376221,0.171578153967857,0.971455454826355,0.163814157247543,0.416870534420013,0.866686761379242,0.273994237184525,0.187167480587959,0.939340889453888,0.287414312362671,0.245438128709793,0.939164996147156,0.240268796682358,0.416870534420013,0.866686761379242,0.273994237184525,0.331274658441544,0.881245195865631,0.337140679359436,0.187167480587959,0.939340889453888,0.287414312362671,0.576404690742493,0.769129395484924,0.276039093732834,0.542016208171844,0.761074721813202,0.356347501277924,0.331274658441544,0.881245195865631,0.337140679359436,0.576404690742493,0.769129395484924,0.276039093732834,0.780361771583557,0.571741700172424,0.25327205657959,0.542016208171844,0.761074721813202,0.356347501277924,0.851179659366608,0.35236930847168,0.389010280370712,\r\n0.780361771583557,0.571741700172424,0.25327205657959,0.886294066905975,0.3976189494133,0.237448185682297,0.89800900220871,0.260620057582855,0.354481130838394,0.870593667030334,0.342585265636444,0.3531314432621,0.848690867424011,0.387295126914978,0.360175222158432,0.82616138458252,0.400430798530579,0.396374106407166,0.860473275184631,0.310579299926758,0.403888702392578,0.848690867424011,0.387295126914978,0.360175222158432,0.905253231525421,0.279196530580521,0.320259034633636,0.876369774341583,0.402731448411942,0.264165490865707,0.870593667030334,0.342585265636444,0.3531314432621,0.886294066905975,0.3976189494133,0.237448185682297,0.905253231525421,0.279196530580521,0.320259034633636,0.851179659366608,0.35236930847168,0.389010280370712,0.54468297958374,0.220325767993927,0.809182822704315,0.682342350482941,0.23908469080925,0.690830886363983,0.600396513938904,0.341484129428864,0.723126888275146,0.600396513938904,0.341484129428864,0.723126888275146,0.670446753501892,0.276777803897858,0.688400328159332,0.634307444095612,0.34515181183815,0.691754460334778,0.670446753501892,0.276777803897858,0.688400328159332,0.673548877239227,0.256690800189972,0.693138897418976,0.613422811031342,0.331621646881104,0.716756224632263,0.704952239990234,0.351573795080185,0.61598539352417,0.650475382804871,0.396056622266769,0.648090183734894,0.664383471012115,0.332575857639313,0.669318854808807,0.613422811031342,0.331621646881104,0.716756224632263,0.664383471012115,0.332575857639313,0.669318854808807,0.612667381763458,0.389772981405258,0.687543094158173,0.483378410339355,0.214341431856155,0.848765552043915,0.489927351474762,0.0631547048687935,0.869472563266754,0.54468297958374,0.220325767993927,0.809182822704315,0.78267240524292,0.357104510068893,0.509804129600525,0.82616138458252,0.400430798530579,0.396374106407166,0.772309184074402,0.465531647205353,0.432225376367569,0.772309184074402,0.465531647205353,0.432225376367569,0.686091899871826,0.435670405626297,0.582639694213867,0.78267240524292,0.357104510068893,0.509804129600525,0.686091899871826,0.435670405626297,0.582639694213867,\r\n0.650475382804871,0.396056622266769,0.648090183734894,0.704952239990234,0.351573795080185,0.61598539352417,0.526422083377838,0.0854881256818771,0.845914542675018,0.665528833866119,0.225126296281815,0.711610376834869,0.649829685688019,0.0461880341172218,0.758675098419189,0.526422083377838,0.0854881256818771,0.845914542675018,0.483378410339355,0.214341431856155,0.848765552043915,0.665528833866119,0.225126296281815,0.711610376834869,0.79223096370697,0.105440013110638,0.601042747497559,0.789794504642487,-0.0598123036324978,0.610448181629181,0.649829685688019,0.0461880341172218,0.758675098419189,0.790592193603516,-0.224941268563271,0.569530725479126,0.871392548084259,-0.301381886005402,0.387096762657166,0.788371682167053,-0.361921191215515,0.497476667165756,0.877426743507385,-0.1558698117733,0.453681349754334,0.790592193603516,-0.224941268563271,0.569530725479126,0.789794504642487,-0.0598123036324978,0.610448181629181,0.834701478481293,-0.411269217729568,0.366239041090012,0.788371682167053,-0.361921191215515,0.497476667165756,0.871392548084259,-0.301381886005402,0.387096762657166,0.492816627025604,-0.474328011274338,0.729482471942902,0.294819504022598,-0.525945603847504,0.797785997390747,0.421246021986008,-0.620599329471588,0.661368310451508,0.244432404637337,-0.146354675292969,0.958557784557343,0.193250477313995,-0.158799558877945,0.968213200569153,0.208701744675636,-0.274956881999969,0.938531935214996,0.346834003925323,-0.147999092936516,0.926176190376282,0.193250477313995,-0.158799558877945,0.968213200569153,0.306764125823975,-0.192916706204414,0.932029366493225,0.38394483923912,-0.388521194458008,0.837638020515442,0.294819504022598,-0.525945603847504,0.797785997390747,0.492816627025604,-0.474328011274338,0.729482471942902,0.411331236362457,-0.268900573253632,0.870918452739716,0.208701744675636,-0.274956881999969,0.938531935214996,0.38394483923912,-0.388521194458008,0.837638020515442,0.346834003925323,-0.147999092936516,0.926176190376282,0.306764125823975,-0.192916706204414,0.932029366493225,0.390531480312347,-0.214615747332573,0.895223498344421,\r\n0.498067706823349,-0.0894015282392502,0.862517118453979,0.390531480312347,-0.214615747332573,0.895223498344421,0.394492208957672,-0.32767778635025,0.858488798141479,0.394492208957672,-0.32767778635025,0.858488798141479,0.501217007637024,-0.267954617738724,0.822788953781128,0.498067706823349,-0.0894015282392502,0.862517118453979,0.488787800073624,-0.306269705295563,0.816875278949738,0.504042625427246,-0.553920865058899,0.662655651569366,0.497714698314667,-0.317995965480804,0.806943893432617,0.526898860931396,-0.0422754473984241,0.848875880241394,0.603840231895447,0.0263564214110374,0.79666942358017,0.508786976337433,-0.0622181259095669,0.858641088008881,0.534871399402618,-0.284098505973816,0.795738935470581,0.488787800073624,-0.306269705295563,0.816875278949738,0.526898860931396,-0.0422754473984241,0.848875880241394,0.623132705688477,-0.116109080612659,0.773449540138245,0.603840231895447,0.0263564214110374,0.79666942358017,0.731761813163757,-0.168248355388641,0.660467267036438,0.782142698764801,-0.372656613588333,0.499379426240921,0.759950459003448,-0.292904704809189,0.580242991447449,0.731761813163757,-0.168248355388641,0.660467267036438,0.577296555042267,-0.603464722633362,0.550053477287292,0.545982301235199,-0.628049373626709,0.554488122463226,0.519939303398132,-0.645437121391296,0.559530019760132,0.577296555042267,-0.603464722633362,0.550053477287292,0.504042625427246,-0.553920865058899,0.662655651569366,0.519575357437134,-0.524713575839996,0.67432701587677,0.421246021986008,-0.620599329471588,0.661368310451508,0.545982301235199,-0.628049373626709,0.554488122463226,0.623649537563324,-0.490239709615707,0.608872771263123,0.714482843875885,-0.616353750228882,0.331092298030853,0.726977944374084,-0.638608992099762,0.25235190987587,0.763037323951721,-0.527620494365692,0.373350352048874,0.726977944374084,-0.638608992099762,0.25235190987587,0.655960619449615,-0.724235415458679,0.212599441409111,0.656560838222504,-0.71994960308075,0.224945083260536,0.798241555690765,-0.447401881217957,0.403288930654526,0.782142698764801,-0.372656613588333,0.499379426240921,\r\n0.763037323951721,-0.527620494365692,0.373350352048874,0.171242475509644,0.0780431106686592,0.982132971286774,0.0533662401139736,0.146562337875366,0.987760841846466,0.134500235319138,0.12159176915884,0.983425140380859,0.394492208957672,-0.32767778635025,0.858488798141479,0.420005142688751,-0.325333267450333,0.847203493118286,0.501217007637024,-0.267954617738724,0.822788953781128,0.394492208957672,-0.32767778635025,0.858488798141479,0.392128705978394,-0.337384879589081,0.855807423591614,0.420005142688751,-0.325333267450333,0.847203493118286,0.386325061321259,-0.0994983091950417,0.91698032617569,0.39928925037384,-0.100698843598366,0.911278069019318,0.426290512084961,-0.100778356194496,0.898954927921295,0.433367669582367,-0.0627975314855576,0.89902663230896,0.441951245069504,-0.0830669701099396,0.893184661865234,0.386325061321259,-0.0994983091950417,0.91698032617569,0.433367669582367,-0.0627975314855576,0.89902663230896,0.420309662818909,-0.0927163064479828,0.902631342411041,0.441951245069504,-0.0830669701099396,0.893184661865234,0.433367669582367,-0.0627975314855576,0.89902663230896,0.42011895775795,0.0203024316579103,0.907241821289063,0.420309662818909,-0.0927163064479828,0.902631342411041,0.253663897514343,0.129320368170738,0.958608746528625,0.280007004737854,-0.0505081303417683,0.958668291568756,0.42011895775795,0.0203024316579103,0.907241821289063,0.253663897514343,0.129320368170738,0.958608746528625,0.171242475509644,0.0780431106686592,0.982132971286774,0.134500235319138,0.12159176915884,0.983425140380859,0.392128705978394,-0.337384879589081,0.855807423591614,0.503656566143036,-0.2791648209095,0.81755542755127,0.529537320137024,-0.196504056453705,0.825212836265564,0.47293809056282,-0.0888934880495071,0.876599907875061,0.529537320137024,-0.196504056453705,0.825212836265564,0.515059351921082,-0.155334860086441,0.84296190738678,0.47293809056282,-0.0888934880495071,0.876599907875061,0.515059351921082,-0.155334860086441,0.84296190738678,0.426290512084961,-0.100778356194496,0.898954927921295,0.300763428211212,-0.144975259900093,0.942615211009979,\r\n0.153879195451736,-0.046009574085474,0.987017810344696,0.262574404478073,-0.19075571000576,0.945868313312531,0.171242475509644,0.0780431106686592,0.982132971286774,0.153879195451736,-0.046009574085474,0.987017810344696,0.0533662401139736,0.146562337875366,0.987760841846466,0.2423445135355,-0.207427456974983,0.947756767272949,0.262574404478073,-0.19075571000576,0.945868313312531,0.305549412965775,-0.13619090616703,0.942386031150818,0.305549412965775,-0.13619090616703,0.942386031150818,0.291346490383148,0.0611963793635368,0.954658150672913,0.202096506953239,0.113540336489677,0.972761809825897,0.183695614337921,0.272750854492188,0.944384753704071,0.291346490383148,0.0611963793635368,0.954658150672913,0.270329684019089,0.23632775247097,0.933311820030212,0.284088909626007,0.317713260650635,0.904627919197083,0.373106896877289,0.185735791921616,0.909006774425507,0.212854743003845,0.423279881477356,0.880640029907227,0.303067952394485,0.457902848720551,0.835747957229614,0.212854743003845,0.423279881477356,0.880640029907227,0.230102077126503,0.492896169424057,0.839110374450684,0.270329684019089,0.23632775247097,0.933311820030212,0.347734153270721,0.203452780842781,0.915252864360809,0.284088909626007,0.317713260650635,0.904627919197083,0.260777950286865,0.276460617780685,0.924967169761658,0.237830072641373,0.203379124403,0.949775576591492,0.123679496347904,0.247575983405113,0.960941970348358,-0.108360596001148,0.76529985666275,0.634487152099609,-0.233159467577934,0.717138469219208,0.656771659851074,-0.0266329143196344,0.834496200084686,0.550369501113892,-0.233159467577934,0.717138469219208,0.656771659851074,-0.168202683329582,0.685810089111328,0.708076417446136,-0.0266329143196344,0.834496200084686,0.550369501113892,-0.00296406168490648,0.638069748878479,0.769972681999207,-0.168202683329582,0.685810089111328,0.708076417446136,-0.0180179681628942,0.523196578025818,0.852021515369415,-0.00296406168490648,0.638069748878479,0.769972681999207,-0.0180179681628942,0.523196578025818,0.852021515369415,0.136592566967011,0.422657579183578,0.895936906337738,\r\n0.123679496347904,0.247575983405113,0.960941970348358,0.136592566967011,0.422657579183578,0.895936906337738,0.260777950286865,0.276460617780685,0.924967169761658,-0.108360596001148,0.76529985666275,0.634487152099609,0.0675790384411812,0.790684998035431,0.608481824398041,-0.172558680176735,0.648832619190216,0.741106986999512,0.275191009044647,0.585125863552094,0.762822031974792,0.339070081710815,0.525049269199371,0.7806116938591,0.230102077126503,0.492896169424057,0.839110374450684,0.275191009044647,0.585125863552094,0.762822031974792,0.193740084767342,0.627204418182373,0.754373371601105,0.323511332273483,0.66647607088089,0.671676933765411,0.00350954779423773,0.576279997825623,0.8172447681427,0.0523612163960934,0.688206434249878,0.723622858524323,0.213782727718353,0.700187087059021,0.681201100349426,-0.172558680176735,0.648832619190216,0.741106986999512,0.0523612163960934,0.688206434249878,0.723622858524323,-0.13235230743885,0.559572339057922,0.818145155906677,0.00350954779423773,0.576279997825623,0.8172447681427,0.213782727718353,0.700187087059021,0.681201100349426,0.193740084767342,0.627204418182373,0.754373371601105,0.0248698219656944,0.784355819225311,0.619812309741974,-0.0281199868768454,0.805395483970642,0.592070341110229,0.0361335501074791,0.743836879730225,0.66738361120224,0.26318347454071,0.964514076709747,-0.0211402084678411,0.287783026695251,0.954533517360687,0.0777596682310104,0.305551648139954,0.949666500091553,0.0690770819783211,0.19212718307972,0.976399064064026,0.0986504554748535,0.17128948867321,0.974414050579071,0.145523265004158,0.287783026695251,0.954533517360687,0.0777596682310104,0.150748535990715,0.116500400006771,0.981683433055878,0.237830072641373,0.203379124403,0.949775576591492,0.224802166223526,0.0896391272544861,0.970272481441498,0.150748535990715,0.116500400006771,0.981683433055878,0.121682927012444,0.0871393010020256,0.988736510276794,0.0622172057628632,0.188094243407249,0.98017817735672,0.186404719948769,0.377718269824982,0.906963109970093,0.138674452900887,0.383616268634796,0.913021266460419,\r\n0.147948831319809,0.243292838335037,0.958602964878082,0.121682927012444,0.0871393010020256,0.988736510276794,0.237218081951141,0.0927581712603569,0.967017769813538,0.147948831319809,0.243292838335037,0.958602964878082,0.186404719948769,0.377718269824982,0.906963109970093,0.146585047245026,0.448811560869217,0.881521880626678,0.138674452900887,0.383616268634796,0.913021266460419,0.166356474161148,0.530001580715179,0.831518888473511,0.0882005840539932,0.507813811302185,0.856939554214478,0.146585047245026,0.448811560869217,0.881521880626678,0.130434736609459,0.580640733242035,0.803643524646759,0.166356474161148,0.530001580715179,0.831518888473511,0.192515254020691,0.626001298427582,0.755685150623322,0.192515254020691,0.626001298427582,0.755685150623322,0.138455301523209,0.682594060897827,0.717562079429626,0.123435221612453,0.666655957698822,0.735073745250702,0.0361335501074791,0.743836879730225,0.66738361120224,0.0403314493596554,0.714066982269287,0.698914647102356,0.138455301523209,0.682594060897827,0.717562079429626,0.171578153967857,0.971455454826355,0.163814157247543,0.17128948867321,0.974414050579071,0.145523265004158,0.19212718307972,0.976399064064026,0.0986504554748535,0.245438128709793,0.939164996147156,0.240268796682358,0.171578153967857,0.971455454826355,0.163814157247543,0.32250714302063,0.936523079872131,0.137526288628578,0.416870534420013,0.866686761379242,0.273994237184525,0.245438128709793,0.939164996147156,0.240268796682358,0.471544444561005,0.853276491165161,0.22263191640377,0.416870534420013,0.866686761379242,0.273994237184525,0.576404690742493,0.769129395484924,0.276039093732834,0.331274658441544,0.881245195865631,0.337140679359436,0.652380168437958,0.731931209564209,0.196663782000542,0.780361771583557,0.571741700172424,0.25327205657959,0.576404690742493,0.769129395484924,0.276039093732834,0.780361771583557,0.571741700172424,0.25327205657959,0.866604149341583,0.487601757049561,0.106025390326977,0.886294066905975,0.3976189494133,0.237448185682297,0.848690867424011,0.387295126914978,0.360175222158432,\r\n0.870593667030334,0.342585265636444,0.3531314432621,0.826460659503937,0.470702588558197,0.308871865272522,0.82616138458252,0.400430798530579,0.396374106407166,0.848690867424011,0.387295126914978,0.360175222158432,0.81199187040329,0.454914599657059,0.365679860115051,0.892129242420197,0.409080982208252,0.19172391295433,0.876369774341583,0.402731448411942,0.264165490865707,0.905253231525421,0.279196530580521,0.320259034633636,0.870593667030334,0.342585265636444,0.3531314432621,0.876369774341583,0.402731448411942,0.264165490865707,0.826460659503937,0.470702588558197,0.308871865272522,0.892129242420197,0.409080982208252,0.19172391295433,0.905253231525421,0.279196530580521,0.320259034633636,0.886294066905975,0.3976189494133,0.237448185682297,0.482879608869553,0.306309998035431,0.820366561412811,0.54468297958374,0.220325767993927,0.809182822704315,0.600396513938904,0.341484129428864,0.723126888275146,0.634307444095612,0.34515181183815,0.691754460334778,0.670446753501892,0.276777803897858,0.688400328159332,0.613422811031342,0.331621646881104,0.716756224632263,0.547985136508942,0.397220134735107,0.736157774925232,0.600396513938904,0.341484129428864,0.723126888275146,0.634307444095612,0.34515181183815,0.691754460334778,0.612667381763458,0.389772981405258,0.687543094158173,0.664383471012115,0.332575857639313,0.669318854808807,0.650475382804871,0.396056622266769,0.648090183734894,0.552988648414612,0.427430331707001,0.715196967124939,0.613422811031342,0.331621646881104,0.716756224632263,0.612667381763458,0.389772981405258,0.687543094158173,0.483378410339355,0.214341431856155,0.848765552043915,0.54468297958374,0.220325767993927,0.809182822704315,0.482879608869553,0.306309998035431,0.820366561412811,0.82616138458252,0.400430798530579,0.396374106407166,0.81199187040329,0.454914599657059,0.365679860115051,0.772309184074402,0.465531647205353,0.432225376367569,0.772309184074402,0.465531647205353,0.432225376367569,0.706791698932648,0.512935340404511,0.487178295850754,0.686091899871826,0.435670405626297,0.582639694213867,0.686091899871826,0.435670405626297,0.582639694213867,\r\n0.62119048833847,0.441356807947159,0.647554159164429,0.650475382804871,0.396056622266769,0.648090183734894,0.79223096370697,0.105440013110638,0.601042747497559,0.649829685688019,0.0461880341172218,0.758675098419189,0.665528833866119,0.225126296281815,0.711610376834869,0.483378410339355,0.214341431856155,0.848765552043915,0.518855631351471,0.359361946582794,0.775659501552582,0.665528833866119,0.225126296281815,0.711610376834869,0.789794504642487,-0.0598123036324978,0.610448181629181,0.79223096370697,0.105440013110638,0.601042747497559,0.8728306889534,0.00972162559628487,0.487925946712494,0.871392548084259,-0.301381886005402,0.387096762657166,0.790592193603516,-0.224941268563271,0.569530725479126,0.877426743507385,-0.1558698117733,0.453681349754334,0.87561708688736,-0.0744692981243134,0.477230489253998,0.877426743507385,-0.1558698117733,0.453681349754334,0.789794504642487,-0.0598123036324978,0.610448181629181,0.492816627025604,-0.474328011274338,0.729482471942902,0.421246021986008,-0.620599329471588,0.661368310451508,0.623649537563324,-0.490239709615707,0.608872771263123,0.244432404637337,-0.146354675292969,0.958557784557343,0.282571315765381,-0.0967374444007874,0.954355955123901,0.193250477313995,-0.158799558877945,0.968213200569153,0.411331236362457,-0.268900573253632,0.870918452739716,0.244432404637337,-0.146354675292969,0.958557784557343,0.208701744675636,-0.274956881999969,0.938531935214996,0.282571315765381,-0.0967374444007874,0.954355955123901,0.306764125823975,-0.192916706204414,0.932029366493225,0.193250477313995,-0.158799558877945,0.968213200569153,0.38394483923912,-0.388521194458008,0.837638020515442,0.492816627025604,-0.474328011274338,0.729482471942902,0.584139108657837,-0.350667655467987,0.731992840766907,0.411331236362457,-0.268900573253632,0.870918452739716,0.38394483923912,-0.388521194458008,0.837638020515442,0.584139108657837,-0.350667655467987,0.731992840766907,0.390531480312347,-0.214615747332573,0.895223498344421,0.306764125823975,-0.192916706204414,0.932029366493225,0.392162591218948,-0.320126354694366,0.862396359443665,\r\n0.390531480312347,-0.214615747332573,0.895223498344421,0.392162591218948,-0.320126354694366,0.862396359443665,0.394492208957672,-0.32767778635025,0.858488798141479,0.519575357437134,-0.524713575839996,0.67432701587677,0.504042625427246,-0.553920865058899,0.662655651569366,0.488787800073624,-0.306269705295563,0.816875278949738,0.623132705688477,-0.116109080612659,0.773449540138245,0.508786976337433,-0.0622181259095669,0.858641088008881,0.603840231895447,0.0263564214110374,0.79666942358017,0.526898860931396,-0.0422754473984241,0.848875880241394,0.508786976337433,-0.0622181259095669,0.858641088008881,0.482112169265747,-0.190091773867607,0.855238437652588,0.534871399402618,-0.284098505973816,0.795738935470581,0.552499771118164,-0.469884634017944,0.688441932201386,0.488787800073624,-0.306269705295563,0.816875278949738,0.534871399402618,-0.284098505973816,0.795738935470581,0.526898860931396,-0.0422754473984241,0.848875880241394,0.482112169265747,-0.190091773867607,0.855238437652588,0.623132705688477,-0.116109080612659,0.773449540138245,0.731761813163757,-0.168248355388641,0.660467267036438,0.759950459003448,-0.292904704809189,0.580242991447449,0.782142698764801,-0.372656613588333,0.499379426240921,0.798241555690765,-0.447401881217957,0.403288930654526,0.759950459003448,-0.292904704809189,0.580242991447449,0.545982301235199,-0.628049373626709,0.554488122463226,0.577296555042267,-0.603464722633362,0.550053477287292,0.623649537563324,-0.490239709615707,0.608872771263123,0.607475578784943,-0.501481533050537,0.616027176380157,0.577296555042267,-0.603464722633362,0.550053477287292,0.519575357437134,-0.524713575839996,0.67432701587677,0.763037323951721,-0.527620494365692,0.373350352048874,0.726977944374084,-0.638608992099762,0.25235190987587,0.785427153110504,-0.547979235649109,0.287789523601532,0.656560838222504,-0.71994960308075,0.224945083260536,0.708777546882629,-0.649789214134216,0.27460578083992,0.726977944374084,-0.638608992099762,0.25235190987587,0.763037323951721,-0.527620494365692,0.373350352048874,0.785427153110504,-0.547979235649109,0.287789523601532,\r\n0.798241555690765,-0.447401881217957,0.403288930654526,0.392128705978394,-0.337384879589081,0.855807423591614,0.394492208957672,-0.32767778635025,0.858488798141479,0.392162591218948,-0.320126354694366,0.862396359443665,0.386325061321259,-0.0994983091950417,0.91698032617569,0.426290512084961,-0.100778356194496,0.898954927921295,0.348674684762955,-0.170183956623077,0.921663284301758,0.433367669582367,-0.0627975314855576,0.89902663230896,0.386325061321259,-0.0994983091950417,0.91698032617569,0.243029460310936,-0.122977882623672,0.962191760540009,0.42011895775795,0.0203024316579103,0.907241821289063,0.433367669582367,-0.0627975314855576,0.89902663230896,0.333402633666992,0.0150874787941575,0.942663788795471,0.350758403539658,0.139257714152336,0.926053822040558,0.253663897514343,0.129320368170738,0.958608746528625,0.42011895775795,0.0203024316579103,0.907241821289063,0.23903501033783,0.139443144202232,0.960946321487427,0.171242475509644,0.0780431106686592,0.982132971286774,0.253663897514343,0.129320368170738,0.958608746528625,0.392128705978394,-0.337384879589081,0.855807423591614,0.392162591218948,-0.320126354694366,0.862396359443665,0.503656566143036,-0.2791648209095,0.81755542755127,0.503656566143036,-0.2791648209095,0.81755542755127,0.568130910396576,-0.19765317440033,0.798849403858185,0.529537320137024,-0.196504056453705,0.825212836265564,0.515059351921082,-0.155334860086441,0.84296190738678,0.529537320137024,-0.196504056453705,0.825212836265564,0.568130910396576,-0.19765317440033,0.798849403858185,0.458277404308319,-0.134959727525711,0.878503024578094,0.426290512084961,-0.100778356194496,0.898954927921295,0.515059351921082,-0.155334860086441,0.84296190738678,0.171242475509644,0.0780431106686592,0.982132971286774,0.262574404478073,-0.19075571000576,0.945868313312531,0.153879195451736,-0.046009574085474,0.987017810344696,0.305616497993469,-0.14498870074749,0.941050827503204,0.305549412965775,-0.13619090616703,0.942386031150818,0.262574404478073,-0.19075571000576,0.945868313312531,0.291346490383148,0.0611963793635368,0.954658150672913,\r\n0.305549412965775,-0.13619090616703,0.942386031150818,0.382446110248566,-0.0790920555591583,0.920586407184601,0.376925945281982,0.0702519044280052,0.923575341701508,0.270329684019089,0.23632775247097,0.933311820030212,0.291346490383148,0.0611963793635368,0.954658150672913,0.373106896877289,0.185735791921616,0.909006774425507,0.284088909626007,0.317713260650635,0.904627919197083,0.406422525644302,0.116976998746395,0.906166076660156,0.212854743003845,0.423279881477356,0.880640029907227,0.373106896877289,0.185735791921616,0.909006774425507,0.291777938604355,0.324896633625031,0.899615287780762,0.212854743003845,0.423279881477356,0.880640029907227,0.170840486884117,0.515116930007935,0.839921355247498,0.230102077126503,0.492896169424057,0.839110374450684,0.270329684019089,0.23632775247097,0.933311820030212,0.376925945281982,0.0702519044280052,0.923575341701508,0.347734153270721,0.203452780842781,0.915252864360809,0.284088909626007,0.317713260650635,0.904627919197083,0.347734153270721,0.203452780842781,0.915252864360809,0.406422525644302,0.116976998746395,0.906166076660156,0.260777950286865,0.276460617780685,0.924967169761658,0.275155693292618,0.221810221672058,0.935462176799774,0.237830072641373,0.203379124403,0.949775576591492,-0.108360596001148,0.76529985666275,0.634487152099609,-0.293920010328293,0.655557453632355,0.695597052574158,-0.233159467577934,0.717138469219208,0.656771659851074,-0.168202683329582,0.685810089111328,0.708076417446136,-0.233159467577934,0.717138469219208,0.656771659851074,-0.267171442508698,0.667942941188812,0.694601655006409,-0.0180179681628942,0.523196578025818,0.852021515369415,-0.168202683329582,0.685810089111328,0.708076417446136,-0.0105634331703186,0.462467938661575,0.886573016643524,0.136592566967011,0.422657579183578,0.895936906337738,-0.0180179681628942,0.523196578025818,0.852021515369415,0.162187486886978,0.358823597431183,0.919206619262695,0.136592566967011,0.422657579183578,0.895936906337738,0.162187486886978,0.358823597431183,0.919206619262695,0.260777950286865,0.276460617780685,0.924967169761658,\r\n-0.108360596001148,0.76529985666275,0.634487152099609,-0.172558680176735,0.648832619190216,0.741106986999512,-0.293920010328293,0.655557453632355,0.695597052574158,0.230102077126503,0.492896169424057,0.839110374450684,0.170840486884117,0.515116930007935,0.839921355247498,0.275191009044647,0.585125863552094,0.762822031974792,0.225744038820267,0.592826843261719,0.773043215274811,0.193740084767342,0.627204418182373,0.754373371601105,0.275191009044647,0.585125863552094,0.762822031974792,0.00350954779423773,0.576279997825623,0.8172447681427,-0.13235230743885,0.559572339057922,0.818145155906677,0.0523612163960934,0.688206434249878,0.723622858524323,-0.242020159959793,0.578021883964539,0.779305338859558,-0.172558680176735,0.648832619190216,0.741106986999512,-0.13235230743885,0.559572339057922,0.818145155906677,0.00350954779423773,0.576279997825623,0.8172447681427,0.193740084767342,0.627204418182373,0.754373371601105,-0.0081989886239171,0.488761842250824,0.872378647327423,0.01594203338027,0.756135642528534,0.654220581054688,0.0248698219656944,0.784355819225311,0.619812309741974,0.0361335501074791,0.743836879730225,0.66738361120224,0.314638316631317,0.949209272861481,0.00209437729790807,0.287783026695251,0.954533517360687,0.0777596682310104,0.26318347454071,0.964514076709747,-0.0211402084678411,0.19212718307972,0.976399064064026,0.0986504554748535,0.287783026695251,0.954533517360687,0.0777596682310104,0.233313396573067,0.971153616905212,0.0492487363517284,0.237830072641373,0.203379124403,0.949775576591492,0.275155693292618,0.221810221672058,0.935462176799774,0.224802166223526,0.0896391272544861,0.970272481441498,0.224802166223526,0.0896391272544861,0.970272481441498,0.121682927012444,0.0871393010020256,0.988736510276794,0.150748535990715,0.116500400006771,0.981683433055878,0.147948831319809,0.243292838335037,0.958602964878082,0.258578956127167,0.277361124753952,0.925314843654633,0.186404719948769,0.377718269824982,0.906963109970093,0.121682927012444,0.0871393010020256,0.988736510276794,0.224802166223526,0.0896391272544861,0.970272481441498,\r\n0.237218081951141,0.0927581712603569,0.967017769813538,0.147948831319809,0.243292838335037,0.958602964878082,0.237218081951141,0.0927581712603569,0.967017769813538,0.258578956127167,0.277361124753952,0.925314843654633,0.189963534474373,0.45488628745079,0.870052993297577,0.146585047245026,0.448811560869217,0.881521880626678,0.186404719948769,0.377718269824982,0.906963109970093,0.166356474161148,0.530001580715179,0.831518888473511,0.146585047245026,0.448811560869217,0.881521880626678,0.189963534474373,0.45488628745079,0.870052993297577,0.19168995320797,0.543141782283783,0.817466676235199,0.192515254020691,0.626001298427582,0.755685150623322,0.166356474161148,0.530001580715179,0.831518888473511,0.192515254020691,0.626001298427582,0.755685150623322,0.12248008698225,0.614090204238892,0.779674172401428,0.138455301523209,0.682594060897827,0.717562079429626,0.138455301523209,0.682594060897827,0.717562079429626,0.0406299233436584,0.660284996032715,0.749915182590485,0.0361335501074791,0.743836879730225,0.66738361120224,0.19212718307972,0.976399064064026,0.0986504554748535,0.196467682719231,0.976871371269226,0.084396205842495,0.171578153967857,0.971455454826355,0.163814157247543,0.171578153967857,0.971455454826355,0.163814157247543,0.196467682719231,0.976871371269226,0.084396205842495,0.32250714302063,0.936523079872131,0.137526288628578,0.32250714302063,0.936523079872131,0.137526288628578,0.471544444561005,0.853276491165161,0.22263191640377,0.245438128709793,0.939164996147156,0.240268796682358,0.652380168437958,0.731931209564209,0.196663782000542,0.416870534420013,0.866686761379242,0.273994237184525,0.471544444561005,0.853276491165161,0.22263191640377,0.416870534420013,0.866686761379242,0.273994237184525,0.652380168437958,0.731931209564209,0.196663782000542,0.576404690742493,0.769129395484924,0.276039093732834,0.811036109924316,0.57563990354538,0.104206927120686,0.780361771583557,0.571741700172424,0.25327205657959,0.652380168437958,0.731931209564209,0.196663782000542,0.811036109924316,0.57563990354538,0.104206927120686,0.866604149341583,0.487601757049561,0.106025390326977,\r\n0.780361771583557,0.571741700172424,0.25327205657959,0.866604149341583,0.487601757049561,0.106025390326977,0.892129242420197,0.409080982208252,0.19172391295433,0.886294066905975,0.3976189494133,0.237448185682297,0.81199187040329,0.454914599657059,0.365679860115051,0.848690867424011,0.387295126914978,0.360175222158432,0.826460659503937,0.470702588558197,0.308871865272522,0.892129242420197,0.409080982208252,0.19172391295433,0.858049094676971,0.494753807783127,0.137733027338982,0.876369774341583,0.402731448411942,0.264165490865707,0.834071218967438,0.507532238960266,0.216185256838799,0.826460659503937,0.470702588558197,0.308871865272522,0.876369774341583,0.402731448411942,0.264165490865707,0.600396513938904,0.341484129428864,0.723126888275146,0.45769864320755,0.409945696592331,0.78895902633667,0.482879608869553,0.306309998035431,0.820366561412811,0.547985136508942,0.397220134735107,0.736157774925232,0.634307444095612,0.34515181183815,0.691754460334778,0.613422811031342,0.331621646881104,0.716756224632263,0.600396513938904,0.341484129428864,0.723126888275146,0.547985136508942,0.397220134735107,0.736157774925232,0.45769864320755,0.409945696592331,0.78895902633667,0.612667381763458,0.389772981405258,0.687543094158173,0.650475382804871,0.396056622266769,0.648090183734894,0.62119048833847,0.441356807947159,0.647554159164429,0.613422811031342,0.331621646881104,0.716756224632263,0.552988648414612,0.427430331707001,0.715196967124939,0.547985136508942,0.397220134735107,0.736157774925232,0.552988648414612,0.427430331707001,0.715196967124939,0.612667381763458,0.389772981405258,0.687543094158173,0.62119048833847,0.441356807947159,0.647554159164429,0.518855631351471,0.359361946582794,0.775659501552582,0.483378410339355,0.214341431856155,0.848765552043915,0.482879608869553,0.306309998035431,0.820366561412811,0.81199187040329,0.454914599657059,0.365679860115051,0.782641053199768,0.537397444248199,0.314128667116165,0.772309184074402,0.465531647205353,0.432225376367569,0.772309184074402,0.465531647205353,0.432225376367569,0.752011895179749,0.545616865158081,0.369838029146194,\r\n0.706791698932648,0.512935340404511,0.487178295850754,0.636470854282379,0.488113224506378,0.597201943397522,0.686091899871826,0.435670405626297,0.582639694213867,0.706791698932648,0.512935340404511,0.487178295850754,0.686091899871826,0.435670405626297,0.582639694213867,0.636470854282379,0.488113224506378,0.597201943397522,0.62119048833847,0.441356807947159,0.647554159164429,0.79223096370697,0.105440013110638,0.601042747497559,0.665528833866119,0.225126296281815,0.711610376834869,0.810190856456757,0.247300386428833,0.531444251537323,0.674413561820984,0.354817926883698,0.647510945796967,0.665528833866119,0.225126296281815,0.711610376834869,0.518855631351471,0.359361946582794,0.775659501552582,0.859954357147217,0.156014502048492,0.485940217971802,0.8728306889534,0.00972162559628487,0.487925946712494,0.79223096370697,0.105440013110638,0.601042747497559,0.8728306889534,0.00972162559628487,0.487925946712494,0.87561708688736,-0.0744692981243134,0.477230489253998,0.789794504642487,-0.0598123036324978,0.610448181629181,0.871392548084259,-0.301381886005402,0.387096762657166,0.877426743507385,-0.1558698117733,0.453681349754334,0.910344481468201,-0.191994816064835,0.366620868444443,0.877426743507385,-0.1558698117733,0.453681349754334,0.87561708688736,-0.0744692981243134,0.477230489253998,0.912645161151886,-0.0448464751243591,0.406284928321838,0.584139108657837,-0.350667655467987,0.731992840766907,0.492816627025604,-0.474328011274338,0.729482471942902,0.623649537563324,-0.490239709615707,0.608872771263123,0.339533537626266,-0.0274342875927687,0.940193772315979,0.282571315765381,-0.0967374444007874,0.954355955123901,0.244432404637337,-0.146354675292969,0.958557784557343,0.39492204785347,-0.158623844385147,0.904917120933533,0.244432404637337,-0.146354675292969,0.958557784557343,0.411331236362457,-0.268900573253632,0.870918452739716,0.282571315765381,-0.0967374444007874,0.954355955123901,0.397372931241989,-0.247544392943382,0.883638143539429,0.306764125823975,-0.192916706204414,0.932029366493225,0.411331236362457,-0.268900573253632,0.870918452739716,\r\n0.584139108657837,-0.350667655467987,0.731992840766907,0.562187612056732,-0.193952649831772,0.803944826126099,0.392162591218948,-0.320126354694366,0.862396359443665,0.306764125823975,-0.192916706204414,0.932029366493225,0.397372931241989,-0.247544392943382,0.883638143539429,0.552499771118164,-0.469884634017944,0.688441932201386,0.519575357437134,-0.524713575839996,0.67432701587677,0.488787800073624,-0.306269705295563,0.816875278949738,0.508786976337433,-0.0622181259095669,0.858641088008881,0.623132705688477,-0.116109080612659,0.773449540138245,0.502345502376556,-0.200718984007835,0.841047406196594,0.508786976337433,-0.0622181259095669,0.858641088008881,0.502345502376556,-0.200718984007835,0.841047406196594,0.482112169265747,-0.190091773867607,0.855238437652588,0.51367175579071,-0.377999544143677,0.770232141017914,0.552499771118164,-0.469884634017944,0.688441932201386,0.534871399402618,-0.284098505973816,0.795738935470581,0.51367175579071,-0.377999544143677,0.770232141017914,0.534871399402618,-0.284098505973816,0.795738935470581,0.482112169265747,-0.190091773867607,0.855238437652588,0.731010556221008,-0.370411902666092,0.573078036308289,0.759950459003448,-0.292904704809189,0.580242991447449,0.798241555690765,-0.447401881217957,0.403288930654526,0.607475578784943,-0.501481533050537,0.616027176380157,0.623649537563324,-0.490239709615707,0.608872771263123,0.577296555042267,-0.603464722633362,0.550053477287292,0.552499771118164,-0.469884634017944,0.688441932201386,0.607475578784943,-0.501481533050537,0.616027176380157,0.519575357437134,-0.524713575839996,0.67432701587677,0.726977944374084,-0.638608992099762,0.25235190987587,0.759850978851318,-0.57358056306839,0.305992841720581,0.785427153110504,-0.547979235649109,0.287789523601532,0.708777546882629,-0.649789214134216,0.27460578083992,0.656560838222504,-0.71994960308075,0.224945083260536,0.660230159759521,-0.685432732105255,0.307047158479691,0.726977944374084,-0.638608992099762,0.25235190987587,0.708777546882629,-0.649789214134216,0.27460578083992,0.759850978851318,-0.57358056306839,0.305992841720581,\r\n0.798241555690765,-0.447401881217957,0.403288930654526,0.785427153110504,-0.547979235649109,0.287789523601532,0.759850978851318,-0.57358056306839,0.305992841720581,0.348674684762955,-0.170183956623077,0.921663284301758,0.426290512084961,-0.100778356194496,0.898954927921295,0.458277404308319,-0.134959727525711,0.878503024578094,0.386325061321259,-0.0994983091950417,0.91698032617569,0.348674684762955,-0.170183956623077,0.921663284301758,0.243029460310936,-0.122977882623672,0.962191760540009,0.433367669582367,-0.0627975314855576,0.89902663230896,0.243029460310936,-0.122977882623672,0.962191760540009,0.333402633666992,0.0150874787941575,0.942663788795471,0.350758403539658,0.139257714152336,0.926053822040558,0.42011895775795,0.0203024316579103,0.907241821289063,0.333402633666992,0.0150874787941575,0.942663788795471,0.253663897514343,0.129320368170738,0.958608746528625,0.350758403539658,0.139257714152336,0.926053822040558,0.23903501033783,0.139443144202232,0.960946321487427,0.171242475509644,0.0780431106686592,0.982132971286774,0.23903501033783,0.139443144202232,0.960946321487427,0.259110331535339,-0.0479038991034031,0.964658975601196,0.392162591218948,-0.320126354694366,0.862396359443665,0.397372931241989,-0.247544392943382,0.883638143539429,0.503656566143036,-0.2791648209095,0.81755542755127,0.515855491161346,-0.214382976293564,0.829417169094086,0.568130910396576,-0.19765317440033,0.798849403858185,0.503656566143036,-0.2791648209095,0.81755542755127,0.555468618869781,-0.194660946726799,0.808431565761566,0.515059351921082,-0.155334860086441,0.84296190738678,0.568130910396576,-0.19765317440033,0.798849403858185,0.458277404308319,-0.134959727525711,0.878503024578094,0.515059351921082,-0.155334860086441,0.84296190738678,0.531349301338196,-0.0829833969473839,0.84307861328125,0.171242475509644,0.0780431106686592,0.982132971286774,0.259110331535339,-0.0479038991034031,0.964658975601196,0.262574404478073,-0.19075571000576,0.945868313312531,0.414111077785492,-0.100619755685329,0.904647767543793,0.305549412965775,-0.13619090616703,0.942386031150818,\r\n0.305616497993469,-0.14498870074749,0.941050827503204,0.305616497993469,-0.14498870074749,0.941050827503204,0.262574404478073,-0.19075571000576,0.945868313312531,0.259110331535339,-0.0479038991034031,0.964658975601196,0.414111077785492,-0.100619755685329,0.904647767543793,0.382446110248566,-0.0790920555591583,0.920586407184601,0.305549412965775,-0.13619090616703,0.942386031150818,0.291346490383148,0.0611963793635368,0.954658150672913,0.382446110248566,-0.0790920555591583,0.920586407184601,0.376925945281982,0.0702519044280052,0.923575341701508,0.509129822254181,-0.0184873174875975,0.860491096973419,0.373106896877289,0.185735791921616,0.909006774425507,0.406422525644302,0.116976998746395,0.906166076660156,0.429211676120758,0.302551597356796,0.851022779941559,0.291777938604355,0.324896633625031,0.899615287780762,0.373106896877289,0.185735791921616,0.909006774425507,0.212854743003845,0.423279881477356,0.880640029907227,0.291777938604355,0.324896633625031,0.899615287780762,0.272989481687546,0.431001424789429,0.860066473484039,0.212854743003845,0.423279881477356,0.880640029907227,0.272989481687546,0.431001424789429,0.860066473484039,0.170840486884117,0.515116930007935,0.839921355247498,0.376925945281982,0.0702519044280052,0.923575341701508,0.406422525644302,0.116976998746395,0.906166076660156,0.347734153270721,0.203452780842781,0.915252864360809,0.275155693292618,0.221810221672058,0.935462176799774,0.260777950286865,0.276460617780685,0.924967169761658,0.162187486886978,0.358823597431183,0.919206619262695,-0.233159467577934,0.717138469219208,0.656771659851074,-0.293920010328293,0.655557453632355,0.695597052574158,-0.267171442508698,0.667942941188812,0.694601655006409,-0.168202683329582,0.685810089111328,0.708076417446136,-0.267171442508698,0.667942941188812,0.694601655006409,-0.0771195814013481,0.562456250190735,0.823222577571869,-0.168202683329582,0.685810089111328,0.708076417446136,-0.0771195814013481,0.562456250190735,0.823222577571869,-0.0105634331703186,0.462467938661575,0.886573016643524,-0.0180179681628942,0.523196578025818,0.852021515369415,\r\n-0.0105634331703186,0.462467938661575,0.886573016643524,0.162187486886978,0.358823597431183,0.919206619262695,-0.242020159959793,0.578021883964539,0.779305338859558,-0.293920010328293,0.655557453632355,0.695597052574158,-0.172558680176735,0.648832619190216,0.741106986999512,0.225744038820267,0.592826843261719,0.773043215274811,0.275191009044647,0.585125863552094,0.762822031974792,0.170840486884117,0.515116930007935,0.839921355247498,0.225744038820267,0.592826843261719,0.773043215274811,0.171153053641319,0.585917174816132,0.792090594768524,0.193740084767342,0.627204418182373,0.754373371601105,0.00350954779423773,0.576279997825623,0.8172447681427,-0.137312293052673,0.454007029533386,0.880353808403015,-0.13235230743885,0.559572339057922,0.818145155906677,-0.13235230743885,0.559572339057922,0.818145155906677,-0.137312293052673,0.454007029533386,0.880353808403015,-0.242020159959793,0.578021883964539,0.779305338859558,-0.0081989886239171,0.488761842250824,0.872378647327423,0.193740084767342,0.627204418182373,0.754373371601105,0.0971331521868706,0.519326865673065,0.84903746843338,0.00350954779423773,0.576279997825623,0.8172447681427,-0.0081989886239171,0.488761842250824,0.872378647327423,-0.137312293052673,0.454007029533386,0.880353808403015,0.0406299233436584,0.660284996032715,0.749915182590485,0.01594203338027,0.756135642528534,0.654220581054688,0.0361335501074791,0.743836879730225,0.66738361120224,0.314638316631317,0.949209272861481,0.00209437729790807,0.233313396573067,0.971153616905212,0.0492487363517284,0.287783026695251,0.954533517360687,0.0777596682310104,0.19212718307972,0.976399064064026,0.0986504554748535,0.233313396573067,0.971153616905212,0.0492487363517284,0.196467682719231,0.976871371269226,0.084396205842495,0.196337446570396,0.244698211550713,0.949512541294098,0.224802166223526,0.0896391272544861,0.970272481441498,0.275155693292618,0.221810221672058,0.935462176799774,0.211648061871529,0.362381160259247,0.907681047916412,0.186404719948769,0.377718269824982,0.906963109970093,0.258578956127167,0.277361124753952,0.925314843654633,\r\n0.224802166223526,0.0896391272544861,0.970272481441498,0.258156150579453,0.0986400619149208,0.96105432510376,0.237218081951141,0.0927581712603569,0.967017769813538,0.237218081951141,0.0927581712603569,0.967017769813538,0.325381875038147,0.0868537500500679,0.94158536195755,0.258578956127167,0.277361124753952,0.925314843654633,0.186404719948769,0.377718269824982,0.906963109970093,0.211648061871529,0.362381160259247,0.907681047916412,0.189963534474373,0.45488628745079,0.870052993297577,0.19168995320797,0.543141782283783,0.817466676235199,0.166356474161148,0.530001580715179,0.831518888473511,0.189963534474373,0.45488628745079,0.870052993297577,0.192515254020691,0.626001298427582,0.755685150623322,0.19168995320797,0.543141782283783,0.817466676235199,0.12248008698225,0.614090204238892,0.779674172401428,0.138455301523209,0.682594060897827,0.717562079429626,0.12248008698225,0.614090204238892,0.779674172401428,0.0406299233436584,0.660284996032715,0.749915182590485,0.196467682719231,0.976871371269226,0.084396205842495,0.240354716777802,0.970391750335693,0.0238614175468683,0.32250714302063,0.936523079872131,0.137526288628578,0.32250714302063,0.936523079872131,0.137526288628578,0.556236624717712,0.82250440120697,0.118689149618149,0.471544444561005,0.853276491165161,0.22263191640377,0.652380168437958,0.731931209564209,0.196663782000542,0.471544444561005,0.853276491165161,0.22263191640377,0.556236624717712,0.82250440120697,0.118689149618149,0.652380168437958,0.731931209564209,0.196663782000542,0.728854596614838,0.681846499443054,0.0620977841317654,0.811036109924316,0.57563990354538,0.104206927120686,0.811036109924316,0.57563990354538,0.104206927120686,0.841797590255737,0.539422869682312,0.0199900008738041,0.866604149341583,0.487601757049561,0.106025390326977,0.892129242420197,0.409080982208252,0.19172391295433,0.866604149341583,0.487601757049561,0.106025390326977,0.858049094676971,0.494753807783127,0.137733027338982,0.81199187040329,0.454914599657059,0.365679860115051,0.826460659503937,0.470702588558197,0.308871865272522,0.782641053199768,0.537397444248199,0.314128667116165,\r\n0.858049094676971,0.494753807783127,0.137733027338982,0.834071218967438,0.507532238960266,0.216185256838799,0.876369774341583,0.402731448411942,0.264165490865707,0.834071218967438,0.507532238960266,0.216185256838799,0.80336320400238,0.545027494430542,0.239900588989258,0.826460659503937,0.470702588558197,0.308871865272522,0.518855631351471,0.359361946582794,0.775659501552582,0.482879608869553,0.306309998035431,0.820366561412811,0.45769864320755,0.409945696592331,0.78895902633667,0.45769864320755,0.409945696592331,0.78895902633667,0.547985136508942,0.397220134735107,0.736157774925232,0.42995822429657,0.45355036854744,0.780658662319183,0.547985136508942,0.397220134735107,0.736157774925232,0.552988648414612,0.427430331707001,0.715196967124939,0.42995822429657,0.45355036854744,0.780658662319183,0.552988648414612,0.427430331707001,0.715196967124939,0.62119048833847,0.441356807947159,0.647554159164429,0.563539028167725,0.500743329524994,0.657023370265961,0.752011895179749,0.545616865158081,0.369838029146194,0.772309184074402,0.465531647205353,0.432225376367569,0.782641053199768,0.537397444248199,0.314128667116165,0.752011895179749,0.545616865158081,0.369838029146194,0.766538739204407,0.492107927799225,0.412611186504364,0.706791698932648,0.512935340404511,0.487178295850754,0.649481594562531,0.510450661182404,0.56357216835022,0.636470854282379,0.488113224506378,0.597201943397522,0.706791698932648,0.512935340404511,0.487178295850754,0.636470854282379,0.488113224506378,0.597201943397522,0.563539028167725,0.500743329524994,0.657023370265961,0.62119048833847,0.441356807947159,0.647554159164429,0.762664258480072,0.361497104167938,0.536342144012451,0.810190856456757,0.247300386428833,0.531444251537323,0.665528833866119,0.225126296281815,0.711610376834869,0.859954357147217,0.156014502048492,0.485940217971802,0.79223096370697,0.105440013110638,0.601042747497559,0.810190856456757,0.247300386428833,0.531444251537323,0.762664258480072,0.361497104167938,0.536342144012451,0.665528833866119,0.225126296281815,0.711610376834869,0.674413561820984,0.354817926883698,0.647510945796967,\r\n0.674413561820984,0.354817926883698,0.647510945796967,0.518855631351471,0.359361946582794,0.775659501552582,0.680937767028809,0.435988545417786,0.588419675827026,0.873599290847778,0.122305244207382,0.471026182174683,0.8728306889534,0.00972162559628487,0.487925946712494,0.859954357147217,0.156014502048492,0.485940217971802,0.87561708688736,-0.0744692981243134,0.477230489253998,0.8728306889534,0.00972162559628487,0.487925946712494,0.912645161151886,-0.0448464751243591,0.406284928321838,0.910344481468201,-0.191994816064835,0.366620868444443,0.877426743507385,-0.1558698117733,0.453681349754334,0.912645161151886,-0.0448464751243591,0.406284928321838,0.684000313282013,-0.350913316011429,0.639533579349518,0.584139108657837,-0.350667655467987,0.731992840766907,0.623649537563324,-0.490239709615707,0.608872771263123,0.339533537626266,-0.0274342875927687,0.940193772315979,0.314269483089447,0.0145530831068754,0.949222207069397,0.282571315765381,-0.0967374444007874,0.954355955123901,0.39492204785347,-0.158623844385147,0.904917120933533,0.339533537626266,-0.0274342875927687,0.940193772315979,0.244432404637337,-0.146354675292969,0.958557784557343,0.562187612056732,-0.193952649831772,0.803944826126099,0.39492204785347,-0.158623844385147,0.904917120933533,0.411331236362457,-0.268900573253632,0.870918452739716,0.282571315765381,-0.0967374444007874,0.954355955123901,0.436205685138702,-0.137197822332382,0.889326274394989,0.397372931241989,-0.247544392943382,0.883638143539429,0.677431464195251,-0.278760850429535,0.680719435214996,0.562187612056732,-0.193952649831772,0.803944826126099,0.584139108657837,-0.350667655467987,0.731992840766907,0.45384418964386,-0.353122979402542,0.818125605583191,0.482112169265747,-0.190091773867607,0.855238437652588,0.502345502376556,-0.200718984007835,0.841047406196594,0.552499771118164,-0.469884634017944,0.688441932201386,0.51367175579071,-0.377999544143677,0.770232141017914,0.55459064245224,-0.487950921058655,0.674042224884033,0.45384418964386,-0.353122979402542,0.818125605583191,0.51367175579071,-0.377999544143677,0.770232141017914,\r\n0.482112169265747,-0.190091773867607,0.855238437652588,0.773634493350983,-0.443773359060287,0.452277302742004,0.731010556221008,-0.370411902666092,0.573078036308289,0.798241555690765,-0.447401881217957,0.403288930654526,0.607475578784943,-0.501481533050537,0.616027176380157,0.665309965610504,-0.389527678489685,0.63689136505127,0.623649537563324,-0.490239709615707,0.608872771263123,0.550047814846039,-0.496457308530808,0.67154848575592,0.607475578784943,-0.501481533050537,0.616027176380157,0.552499771118164,-0.469884634017944,0.688441932201386,0.683378100395203,-0.628400087356567,0.371628284454346,0.708777546882629,-0.649789214134216,0.27460578083992,0.660230159759521,-0.685432732105255,0.307047158479691,0.708777546882629,-0.649789214134216,0.27460578083992,0.683378100395203,-0.628400087356567,0.371628284454346,0.759850978851318,-0.57358056306839,0.305992841720581,0.753945708274841,-0.515135586261749,0.407677799463272,0.798241555690765,-0.447401881217957,0.403288930654526,0.759850978851318,-0.57358056306839,0.305992841720581,0.458277404308319,-0.134959727525711,0.878503024578094,0.52230578660965,-0.118627443909645,0.844466686248779,0.348674684762955,-0.170183956623077,0.921663284301758,0.253302335739136,-0.160996153950691,0.953896224498749,0.243029460310936,-0.122977882623672,0.962191760540009,0.348674684762955,-0.170183956623077,0.921663284301758,0.240872249007225,-0.0530039742588997,0.969108402729034,0.333402633666992,0.0150874787941575,0.942663788795471,0.243029460310936,-0.122977882623672,0.962191760540009,0.221458077430725,0.104775972664356,0.969524741172791,0.350758403539658,0.139257714152336,0.926053822040558,0.333402633666992,0.0150874787941575,0.942663788795471,0.350758403539658,0.139257714152336,0.926053822040558,0.333323776721954,0.0597232989966869,0.940918862819672,0.23903501033783,0.139443144202232,0.960946321487427,0.23903501033783,0.139443144202232,0.960946321487427,0.333323776721954,0.0597232989966869,0.940918862819672,0.259110331535339,-0.0479038991034031,0.964658975601196,0.397372931241989,-0.247544392943382,0.883638143539429,\r\n0.515855491161346,-0.214382976293564,0.829417169094086,0.503656566143036,-0.2791648209095,0.81755542755127,0.515855491161346,-0.214382976293564,0.829417169094086,0.555468618869781,-0.194660946726799,0.808431565761566,0.568130910396576,-0.19765317440033,0.798849403858185,0.555468618869781,-0.194660946726799,0.808431565761566,0.531955480575562,-0.165600776672363,0.830421328544617,0.515059351921082,-0.155334860086441,0.84296190738678,0.515059351921082,-0.155334860086441,0.84296190738678,0.531955480575562,-0.165600776672363,0.830421328544617,0.531349301338196,-0.0829833969473839,0.84307861328125,0.458277404308319,-0.134959727525711,0.878503024578094,0.531349301338196,-0.0829833969473839,0.84307861328125,0.52230578660965,-0.118627443909645,0.844466686248779,0.333323776721954,0.0597232989966869,0.940918862819672,0.414111077785492,-0.100619755685329,0.904647767543793,0.305616497993469,-0.14498870074749,0.941050827503204,0.259110331535339,-0.0479038991034031,0.964658975601196,0.333323776721954,0.0597232989966869,0.940918862819672,0.305616497993469,-0.14498870074749,0.941050827503204,0.483912259340286,-0.0477803945541382,0.87381112575531,0.382446110248566,-0.0790920555591583,0.920586407184601,0.414111077785492,-0.100619755685329,0.904647767543793,0.483912259340286,-0.0477803945541382,0.87381112575531,0.376925945281982,0.0702519044280052,0.923575341701508,0.382446110248566,-0.0790920555591583,0.920586407184601,0.573955714702606,-0.0113434279337525,0.818807661533356,0.373106896877289,0.185735791921616,0.909006774425507,0.509129822254181,-0.0184873174875975,0.860491096973419,0.483912259340286,-0.0477803945541382,0.87381112575531,0.509129822254181,-0.0184873174875975,0.860491096973419,0.406422525644302,0.116976998746395,0.906166076660156,0.272989481687546,0.431001424789429,0.860066473484039,0.291777938604355,0.324896633625031,0.899615287780762,0.429211676120758,0.302551597356796,0.851022779941559,0.373106896877289,0.185735791921616,0.909006774425507,0.544764518737793,0.136966779828072,0.827327966690063,0.429211676120758,0.302551597356796,0.851022779941559,\r\n0.272989481687546,0.431001424789429,0.860066473484039,0.29153123497963,0.497476160526276,0.817023158073425,0.170840486884117,0.515116930007935,0.839921355247498,0.376925945281982,0.0702519044280052,0.923575341701508,0.483912259340286,-0.0477803945541382,0.87381112575531,0.406422525644302,0.116976998746395,0.906166076660156,0.196337446570396,0.244698211550713,0.949512541294098,0.275155693292618,0.221810221672058,0.935462176799774,0.162187486886978,0.358823597431183,0.919206619262695,-0.267171442508698,0.667942941188812,0.694601655006409,-0.293920010328293,0.655557453632355,0.695597052574158,-0.293070286512375,0.676338791847229,0.675777673721313,-0.0363817028701305,0.497976273298264,0.8664271235466,-0.0771195814013481,0.562456250190735,0.823222577571869,-0.267171442508698,0.667942941188812,0.694601655006409,-0.0771195814013481,0.562456250190735,0.823222577571869,0.134380310773849,0.349189698696136,0.927366375923157,-0.0105634331703186,0.462467938661575,0.886573016643524,0.162187486886978,0.358823597431183,0.919206619262695,-0.0105634331703186,0.462467938661575,0.886573016643524,0.196337446570396,0.244698211550713,0.949512541294098,-0.242020159959793,0.578021883964539,0.779305338859558,-0.293070286512375,0.676338791847229,0.675777673721313,-0.293920010328293,0.655557453632355,0.695597052574158,0.225744038820267,0.592826843261719,0.773043215274811,0.170840486884117,0.515116930007935,0.839921355247498,0.29153123497963,0.497476160526276,0.817023158073425,0.249081194400787,0.532951533794403,0.808653831481934,0.171153053641319,0.585917174816132,0.792090594768524,0.225744038820267,0.592826843261719,0.773043215274811,0.193740084767342,0.627204418182373,0.754373371601105,0.171153053641319,0.585917174816132,0.792090594768524,0.0971331521868706,0.519326865673065,0.84903746843338,-0.154090493917465,0.529117465019226,0.834440350532532,-0.242020159959793,0.578021883964539,0.779305338859558,-0.137312293052673,0.454007029533386,0.880353808403015,0.0971331521868706,0.519326865673065,0.84903746843338,-0.0105430567637086,0.388284772634506,0.921479046344757,\r\n-0.0081989886239171,0.488761842250824,0.872378647327423,-0.0105430567637086,0.388284772634506,0.921479046344757,-0.137312293052673,0.454007029533386,0.880353808403015,-0.0081989886239171,0.488761842250824,0.872378647327423,0.0406299233436584,0.660284996032715,0.749915182590485,-0.0146539704874158,0.715926289558411,0.698021948337555,0.01594203338027,0.756135642528534,0.654220581054688,0.314638316631317,0.949209272861481,0.00209437729790807,0.286826461553574,0.95796126127243,0.00637879502028227,0.233313396573067,0.971153616905212,0.0492487363517284,0.193863466382027,0.980489253997803,0.0325209274888039,0.196467682719231,0.976871371269226,0.084396205842495,0.233313396573067,0.971153616905212,0.0492487363517284,0.224802166223526,0.0896391272544861,0.970272481441498,0.196337446570396,0.244698211550713,0.949512541294098,0.258156150579453,0.0986400619149208,0.96105432510376,0.211648061871529,0.362381160259247,0.907681047916412,0.258578956127167,0.277361124753952,0.925314843654633,0.29014465212822,0.395574629306793,0.871399223804474,0.237218081951141,0.0927581712603569,0.967017769813538,0.258156150579453,0.0986400619149208,0.96105432510376,0.325381875038147,0.0868537500500679,0.94158536195755,0.258578956127167,0.277361124753952,0.925314843654633,0.325381875038147,0.0868537500500679,0.94158536195755,0.387405604124069,0.171525835990906,0.90581214427948,0.211648061871529,0.362381160259247,0.907681047916412,0.29014465212822,0.395574629306793,0.871399223804474,0.189963534474373,0.45488628745079,0.870052993297577,0.189963534474373,0.45488628745079,0.870052993297577,0.255997598171234,0.484333455562592,0.836592018604279,0.19168995320797,0.543141782283783,0.817466676235199,0.0411244556307793,0.545502960681915,0.837099254131317,0.12248008698225,0.614090204238892,0.779674172401428,0.19168995320797,0.543141782283783,0.817466676235199,0.0406299233436584,0.660284996032715,0.749915182590485,0.12248008698225,0.614090204238892,0.779674172401428,-0.0240290574729443,0.588638365268707,0.80803918838501,0.196467682719231,0.976871371269226,0.084396205842495,\r\n0.193863466382027,0.980489253997803,0.0325209274888039,0.240354716777802,0.970391750335693,0.0238614175468683,0.240354716777802,0.970391750335693,0.0238614175468683,0.441723585128784,0.897080481052399,-0.0112629402428865,0.32250714302063,0.936523079872131,0.137526288628578,0.441723585128784,0.897080481052399,-0.0112629402428865,0.556236624717712,0.82250440120697,0.118689149618149,0.32250714302063,0.936523079872131,0.137526288628578,0.652380168437958,0.731931209564209,0.196663782000542,0.556236624717712,0.82250440120697,0.118689149618149,0.728854596614838,0.681846499443054,0.0620977841317654,0.811386823654175,0.584468603134155,0.00691409315913916,0.811036109924316,0.57563990354538,0.104206927120686,0.728854596614838,0.681846499443054,0.0620977841317654,0.811036109924316,0.57563990354538,0.104206927120686,0.811386823654175,0.584468603134155,0.00691409315913916,0.841797590255737,0.539422869682312,0.0199900008738041,0.841797590255737,0.539422869682312,0.0199900008738041,0.860907554626465,0.506868124008179,0.0438493900001049,0.866604149341583,0.487601757049561,0.106025390326977,0.860907554626465,0.506868124008179,0.0438493900001049,0.858049094676971,0.494753807783127,0.137733027338982,0.866604149341583,0.487601757049561,0.106025390326977,0.782641053199768,0.537397444248199,0.314128667116165,0.826460659503937,0.470702588558197,0.308871865272522,0.80336320400238,0.545027494430542,0.239900588989258,0.858049094676971,0.494753807783127,0.137733027338982,0.827477335929871,0.527464747428894,0.192514643073082,0.834071218967438,0.507532238960266,0.216185256838799,0.827477335929871,0.527464747428894,0.192514643073082,0.80336320400238,0.545027494430542,0.239900588989258,0.834071218967438,0.507532238960266,0.216185256838799,0.37198469042778,0.445661216974258,0.814256310462952,0.518855631351471,0.359361946582794,0.775659501552582,0.45769864320755,0.409945696592331,0.78895902633667,0.37198469042778,0.445661216974258,0.814256310462952,0.45769864320755,0.409945696592331,0.78895902633667,0.42995822429657,0.45355036854744,0.780658662319183,\r\n0.494843870401382,0.508911848068237,0.704370737075806,0.42995822429657,0.45355036854744,0.780658662319183,0.552988648414612,0.427430331707001,0.715196967124939,0.494843870401382,0.508911848068237,0.704370737075806,0.552988648414612,0.427430331707001,0.715196967124939,0.563539028167725,0.500743329524994,0.657023370265961,0.782641053199768,0.537397444248199,0.314128667116165,0.785355091094971,0.529310762882233,0.321009874343872,0.752011895179749,0.545616865158081,0.369838029146194,0.766538739204407,0.492107927799225,0.412611186504364,0.752011895179749,0.545616865158081,0.369838029146194,0.785355091094971,0.529310762882233,0.321009874343872,0.766538739204407,0.492107927799225,0.412611186504364,0.69862824678421,0.463935643434525,0.544685304164886,0.706791698932648,0.512935340404511,0.487178295850754,0.636470854282379,0.488113224506378,0.597201943397522,0.649481594562531,0.510450661182404,0.56357216835022,0.603034853935242,0.457602858543396,0.653412878513336,0.69862824678421,0.463935643434525,0.544685304164886,0.649481594562531,0.510450661182404,0.56357216835022,0.706791698932648,0.512935340404511,0.487178295850754,0.563539028167725,0.500743329524994,0.657023370265961,0.636470854282379,0.488113224506378,0.597201943397522,0.603034853935242,0.457602858543396,0.653412878513336,0.762664258480072,0.361497104167938,0.536342144012451,0.780938863754272,0.389303296804428,0.488443702459335,0.810190856456757,0.247300386428833,0.531444251537323,0.810190856456757,0.247300386428833,0.531444251537323,0.814959943294525,0.278068631887436,0.508446574211121,0.859954357147217,0.156014502048492,0.485940217971802,0.762664258480072,0.361497104167938,0.536342144012451,0.674413561820984,0.354817926883698,0.647510945796967,0.680937767028809,0.435988545417786,0.588419675827026,0.680937767028809,0.435988545417786,0.588419675827026,0.518855631351471,0.359361946582794,0.775659501552582,0.521282017230988,0.448386371135712,0.72609543800354,0.8728306889534,0.00972162559628487,0.487925946712494,0.873599290847778,0.122305244207382,0.471026182174683,0.912645161151886,-0.0448464751243591,0.406284928321838,\r\n0.859954357147217,0.156014502048492,0.485940217971802,0.837062060832977,0.218554124236107,0.501558601856232,0.873599290847778,0.122305244207382,0.471026182174683,0.684000313282013,-0.350913316011429,0.639533579349518,0.677431464195251,-0.278760850429535,0.680719435214996,0.584139108657837,-0.350667655467987,0.731992840766907,0.684000313282013,-0.350913316011429,0.639533579349518,0.623649537563324,-0.490239709615707,0.608872771263123,0.665309965610504,-0.389527678489685,0.63689136505127,0.339533537626266,-0.0274342875927687,0.940193772315979,0.311769545078278,0.096303403377533,0.94526469707489,0.314269483089447,0.0145530831068754,0.949222207069397,0.282571315765381,-0.0967374444007874,0.954355955123901,0.314269483089447,0.0145530831068754,0.949222207069397,0.436205685138702,-0.137197822332382,0.889326274394989,0.339533537626266,-0.0274342875927687,0.940193772315979,0.39492204785347,-0.158623844385147,0.904917120933533,0.562187612056732,-0.193952649831772,0.803944826126099,0.515855491161346,-0.214382976293564,0.829417169094086,0.397372931241989,-0.247544392943382,0.883638143539429,0.436205685138702,-0.137197822332382,0.889326274394989,0.562187612056732,-0.193952649831772,0.803944826126099,0.677431464195251,-0.278760850429535,0.680719435214996,0.679118931293488,-0.21835720539093,0.700797736644745,0.45384418964386,-0.353122979402542,0.818125605583191,0.502345502376556,-0.200718984007835,0.841047406196594,0.473199307918549,-0.319873005151749,0.820831000804901,0.51367175579071,-0.377999544143677,0.770232141017914,0.459352791309357,-0.489040344953537,0.741508185863495,0.55459064245224,-0.487950921058655,0.674042224884033,0.552499771118164,-0.469884634017944,0.688441932201386,0.55459064245224,-0.487950921058655,0.674042224884033,0.550047814846039,-0.496457308530808,0.67154848575592,0.45384418964386,-0.353122979402542,0.818125605583191,0.459352791309357,-0.489040344953537,0.741508185863495,0.51367175579071,-0.377999544143677,0.770232141017914,0.753945708274841,-0.515135586261749,0.407677799463272,0.773634493350983,-0.443773359060287,0.452277302742004,\r\n0.798241555690765,-0.447401881217957,0.403288930654526,0.607475578784943,-0.501481533050537,0.616027176380157,0.563485324382782,-0.411046802997589,0.716606438159943,0.665309965610504,-0.389527678489685,0.63689136505127,0.563485324382782,-0.411046802997589,0.716606438159943,0.607475578784943,-0.501481533050537,0.616027176380157,0.550047814846039,-0.496457308530808,0.67154848575592,0.759850978851318,-0.57358056306839,0.305992841720581,0.683378100395203,-0.628400087356567,0.371628284454346,0.721532166004181,-0.574814915657043,0.385977953672409,0.759850978851318,-0.57358056306839,0.305992841720581,0.721532166004181,-0.574814915657043,0.385977953672409,0.753945708274841,-0.515135586261749,0.407677799463272,0.348674684762955,-0.170183956623077,0.921663284301758,0.52230578660965,-0.118627443909645,0.844466686248779,0.40720322728157,-0.170284166932106,0.897323071956635,0.240872249007225,-0.0530039742588997,0.969108402729034,0.243029460310936,-0.122977882623672,0.962191760540009,0.253302335739136,-0.160996153950691,0.953896224498749,0.348674684762955,-0.170183956623077,0.921663284301758,0.40720322728157,-0.170284166932106,0.897323071956635,0.253302335739136,-0.160996153950691,0.953896224498749,0.221458077430725,0.104775972664356,0.969524741172791,0.333402633666992,0.0150874787941575,0.942663788795471,0.240872249007225,-0.0530039742588997,0.969108402729034,0.221458077430725,0.104775972664356,0.969524741172791,0.27904200553894,0.187003552913666,0.941894471645355,0.350758403539658,0.139257714152336,0.926053822040558,0.333323776721954,0.0597232989966869,0.940918862819672,0.350758403539658,0.139257714152336,0.926053822040558,0.27904200553894,0.187003552913666,0.941894471645355,0.555468618869781,-0.194660946726799,0.808431565761566,0.515855491161346,-0.214382976293564,0.829417169094086,0.527364253997803,-0.132546976208687,0.839236617088318,0.571706116199493,-0.223184660077095,0.789519190788269,0.531955480575562,-0.165600776672363,0.830421328544617,0.555468618869781,-0.194660946726799,0.808431565761566,0.531349301338196,-0.0829833969473839,0.84307861328125,\r\n0.531955480575562,-0.165600776672363,0.830421328544617,0.497031509876251,-0.118793994188309,0.859562397003174,0.52230578660965,-0.118627443909645,0.844466686248779,0.531349301338196,-0.0829833969473839,0.84307861328125,0.537716090679169,-0.121822781860828,0.834278404712677,0.454024910926819,0.0177943669259548,0.890811204910278,0.414111077785492,-0.100619755685329,0.904647767543793,0.333323776721954,0.0597232989966869,0.940918862819672,0.483912259340286,-0.0477803945541382,0.87381112575531,0.414111077785492,-0.100619755685329,0.904647767543793,0.454024910926819,0.0177943669259548,0.890811204910278,0.373106896877289,0.185735791921616,0.909006774425507,0.573955714702606,-0.0113434279337525,0.818807661533356,0.544764518737793,0.136966779828072,0.827327966690063,0.509129822254181,-0.0184873174875975,0.860491096973419,0.574378430843353,-0.0689323395490646,0.815682291984558,0.573955714702606,-0.0113434279337525,0.818807661533356,0.509129822254181,-0.0184873174875975,0.860491096973419,0.483912259340286,-0.0477803945541382,0.87381112575531,0.524386405944824,-0.0286143478006125,0.850999355316162,0.416702121496201,0.370644956827164,0.830049097537994,0.272989481687546,0.431001424789429,0.860066473484039,0.429211676120758,0.302551597356796,0.851022779941559,0.429211676120758,0.302551597356796,0.851022779941559,0.544764518737793,0.136966779828072,0.827327966690063,0.527572870254517,0.2154590934515,0.821732401847839,0.416702121496201,0.370644956827164,0.830049097537994,0.29153123497963,0.497476160526276,0.817023158073425,0.272989481687546,0.431001424789429,0.860066473484039,-0.27046999335289,0.71820741891861,0.641111493110657,-0.267171442508698,0.667942941188812,0.694601655006409,-0.293070286512375,0.676338791847229,0.675777673721313,-0.0363817028701305,0.497976273298264,0.8664271235466,0.139124915003777,0.36630192399025,0.920036435127258,-0.0771195814013481,0.562456250190735,0.823222577571869,-0.120547235012054,0.607069373130798,0.785452127456665,-0.0363817028701305,0.497976273298264,0.8664271235466,-0.267171442508698,0.667942941188812,0.694601655006409,\r\n0.134380310773849,0.349189698696136,0.927366375923157,-0.0771195814013481,0.562456250190735,0.823222577571869,0.139124915003777,0.36630192399025,0.920036435127258,0.134380310773849,0.349189698696136,0.927366375923157,0.196337446570396,0.244698211550713,0.949512541294098,-0.0105634331703186,0.462467938661575,0.886573016643524,-0.293070286512375,0.676338791847229,0.675777673721313,-0.242020159959793,0.578021883964539,0.779305338859558,-0.188469663262367,0.665385842323303,0.722316205501556,0.225744038820267,0.592826843261719,0.773043215274811,0.29153123497963,0.497476160526276,0.817023158073425,0.331139475107193,0.551275372505188,0.765795052051544,0.249081194400787,0.532951533794403,0.808653831481934,0.130115330219269,0.442348301410675,0.88735443353653,0.171153053641319,0.585917174816132,0.792090594768524,0.225744038820267,0.592826843261719,0.773043215274811,0.331139475107193,0.551275372505188,0.765795052051544,0.249081194400787,0.532951533794403,0.808653831481934,0.130115330219269,0.442348301410675,0.88735443353653,0.0971331521868706,0.519326865673065,0.84903746843338,0.171153053641319,0.585917174816132,0.792090594768524,-0.154090493917465,0.529117465019226,0.834440350532532,-0.188469663262367,0.665385842323303,0.722316205501556,-0.242020159959793,0.578021883964539,0.779305338859558,-0.154090493917465,0.529117465019226,0.834440350532532,-0.137312293052673,0.454007029533386,0.880353808403015,-0.0571484267711639,0.34291273355484,0.937627255916595,0.130115330219269,0.442348301410675,0.88735443353653,-0.0105430567637086,0.388284772634506,0.921479046344757,0.0971331521868706,0.519326865673065,0.84903746843338,-0.0105430567637086,0.388284772634506,0.921479046344757,-0.0571484267711639,0.34291273355484,0.937627255916595,-0.137312293052673,0.454007029533386,0.880353808403015,0.0406299233436584,0.660284996032715,0.749915182590485,-0.0265201833099127,0.627325594425201,0.778305292129517,-0.0146539704874158,0.715926289558411,0.698021948337555,0.233313396573067,0.971153616905212,0.0492487363517284,0.286826461553574,0.95796126127243,0.00637879502028227,\r\n0.235509425401688,0.971845388412476,-0.00719765247777104,0.235509425401688,0.971845388412476,-0.00719765247777104,0.193863466382027,0.980489253997803,0.0325209274888039,0.233313396573067,0.971153616905212,0.0492487363517284,0.134380310773849,0.349189698696136,0.927366375923157,0.258156150579453,0.0986400619149208,0.96105432510376,0.196337446570396,0.244698211550713,0.949512541294098,0.338469982147217,0.276245385408401,0.899514555931091,0.29014465212822,0.395574629306793,0.871399223804474,0.258578956127167,0.277361124753952,0.925314843654633,0.325381875038147,0.0868537500500679,0.94158536195755,0.258156150579453,0.0986400619149208,0.96105432510376,0.272203058004379,0.0736149549484253,0.959419727325439,0.302626460790634,0.182243674993515,0.935523569583893,0.387405604124069,0.171525835990906,0.90581214427948,0.325381875038147,0.0868537500500679,0.94158536195755,0.338469982147217,0.276245385408401,0.899514555931091,0.258578956127167,0.277361124753952,0.925314843654633,0.387405604124069,0.171525835990906,0.90581214427948,0.29014465212822,0.395574629306793,0.871399223804474,0.255997598171234,0.484333455562592,0.836592018604279,0.189963534474373,0.45488628745079,0.870052993297577,0.180995345115662,0.486947119235992,0.854472398757935,0.19168995320797,0.543141782283783,0.817466676235199,0.255997598171234,0.484333455562592,0.836592018604279,0.12248008698225,0.614090204238892,0.779674172401428,0.0411244556307793,0.545502960681915,0.837099254131317,-0.0240290574729443,0.588638365268707,0.80803918838501,0.0411244556307793,0.545502960681915,0.837099254131317,0.19168995320797,0.543141782283783,0.817466676235199,0.180995345115662,0.486947119235992,0.854472398757935,-0.0240290574729443,0.588638365268707,0.80803918838501,-0.0265201833099127,0.627325594425201,0.778305292129517,0.0406299233436584,0.660284996032715,0.749915182590485,0.193863466382027,0.980489253997803,0.0325209274888039,0.184324815869331,0.982282936573029,-0.0338297337293625,0.240354716777802,0.970391750335693,0.0238614175468683,0.441723585128784,0.897080481052399,-0.0112629402428865,\r\n0.240354716777802,0.970391750335693,0.0238614175468683,0.271990090608597,0.960927605628967,-0.0513752959668636,0.441723585128784,0.897080481052399,-0.0112629402428865,0.629320919513702,0.777143180370331,-0.00190732814371586,0.556236624717712,0.82250440120697,0.118689149618149,0.556236624717712,0.82250440120697,0.118689149618149,0.629320919513702,0.777143180370331,-0.00190732814371586,0.728854596614838,0.681846499443054,0.0620977841317654,0.811386823654175,0.584468603134155,0.00691409315913916,0.728854596614838,0.681846499443054,0.0620977841317654,0.771994590759277,0.632817506790161,-0.0597176291048527,0.811386823654175,0.584468603134155,0.00691409315913916,0.822390913963318,0.561902225017548,-0.0891012102365494,0.841797590255737,0.539422869682312,0.0199900008738041,0.87510871887207,0.481278002262115,-0.0505585819482803,0.860907554626465,0.506868124008179,0.0438493900001049,0.841797590255737,0.539422869682312,0.0199900008738041,0.858049094676971,0.494753807783127,0.137733027338982,0.860907554626465,0.506868124008179,0.0438493900001049,0.862241506576538,0.497137874364853,0.0969193577766418,0.782641053199768,0.537397444248199,0.314128667116165,0.80336320400238,0.545027494430542,0.239900588989258,0.795419454574585,0.549291670322418,0.256098330020905,0.858049094676971,0.494753807783127,0.137733027338982,0.862241506576538,0.497137874364853,0.0969193577766418,0.827477335929871,0.527464747428894,0.192514643073082,0.795419454574585,0.549291670322418,0.256098330020905,0.80336320400238,0.545027494430542,0.239900588989258,0.827477335929871,0.527464747428894,0.192514643073082,0.521282017230988,0.448386371135712,0.72609543800354,0.518855631351471,0.359361946582794,0.775659501552582,0.37198469042778,0.445661216974258,0.814256310462952,0.391623109579086,0.479042768478394,0.785588443279266,0.37198469042778,0.445661216974258,0.814256310462952,0.42995822429657,0.45355036854744,0.780658662319183,0.494843870401382,0.508911848068237,0.704370737075806,0.379601806402206,0.542140662670136,0.749657213687897,0.42995822429657,0.45355036854744,0.780658662319183,\r\n0.563539028167725,0.500743329524994,0.657023370265961,0.468304604291916,0.516866385936737,0.716616988182068,0.494843870401382,0.508911848068237,0.704370737075806,0.782641053199768,0.537397444248199,0.314128667116165,0.785205543041229,0.538781642913818,0.305231779813766,0.785355091094971,0.529310762882233,0.321009874343872,0.785355091094971,0.529310762882233,0.321009874343872,0.868967473506927,0.351969599723816,0.347869038581848,0.766538739204407,0.492107927799225,0.412611186504364,0.791322648525238,0.350859135389328,0.500705659389496,0.69862824678421,0.463935643434525,0.544685304164886,0.766538739204407,0.492107927799225,0.412611186504364,0.649481594562531,0.510450661182404,0.56357216835022,0.69862824678421,0.463935643434525,0.544685304164886,0.603034853935242,0.457602858543396,0.653412878513336,0.518874287605286,0.47451439499855,0.711059331893921,0.563539028167725,0.500743329524994,0.657023370265961,0.603034853935242,0.457602858543396,0.653412878513336,0.757014274597168,0.433437794446945,0.488938570022583,0.780938863754272,0.389303296804428,0.488443702459335,0.762664258480072,0.361497104167938,0.536342144012451,0.810190856456757,0.247300386428833,0.531444251537323,0.780938863754272,0.389303296804428,0.488443702459335,0.814959943294525,0.278068631887436,0.508446574211121,0.859954357147217,0.156014502048492,0.485940217971802,0.814959943294525,0.278068631887436,0.508446574211121,0.837062060832977,0.218554124236107,0.501558601856232,0.757014274597168,0.433437794446945,0.488938570022583,0.762664258480072,0.361497104167938,0.536342144012451,0.680937767028809,0.435988545417786,0.588419675827026,0.680937767028809,0.435988545417786,0.588419675827026,0.521282017230988,0.448386371135712,0.72609543800354,0.620079278945923,0.436206638813019,0.65209299325943,0.677431464195251,-0.278760850429535,0.680719435214996,0.684000313282013,-0.350913316011429,0.639533579349518,0.634294033050537,-0.303202897310257,0.711153328418732,0.684000313282013,-0.350913316011429,0.639533579349518,0.665309965610504,-0.389527678489685,0.63689136505127,\r\n0.634294033050537,-0.303202897310257,0.711153328418732,0.495712131261826,0.0379657335579395,0.867656588554382,0.311769545078278,0.096303403377533,0.94526469707489,0.339533537626266,-0.0274342875927687,0.940193772315979,0.314269483089447,0.0145530831068754,0.949222207069397,0.311769545078278,0.096303403377533,0.94526469707489,0.413450688123703,0.0144868120551109,0.910411179065704,0.314269483089447,0.0145530831068754,0.949222207069397,0.413450688123703,0.0144868120551109,0.910411179065704,0.436205685138702,-0.137197822332382,0.889326274394989,0.495712131261826,0.0379657335579395,0.867656588554382,0.339533537626266,-0.0274342875927687,0.940193772315979,0.562187612056732,-0.193952649831772,0.803944826126099,0.527364253997803,-0.132546976208687,0.839236617088318,0.515855491161346,-0.214382976293564,0.829417169094086,0.436205685138702,-0.137197822332382,0.889326274394989,0.677431464195251,-0.278760850429535,0.680719435214996,0.666471064090729,-0.195282801985741,0.719500362873077,0.679118931293488,-0.21835720539093,0.700797736644745,0.658835351467133,-0.115728996694088,0.743332087993622,0.562187612056732,-0.193952649831772,0.803944826126099,0.679118931293488,-0.21835720539093,0.700797736644745,0.45384418964386,-0.353122979402542,0.818125605583191,0.473199307918549,-0.319873005151749,0.820831000804901,0.463857620954514,-0.437761783599854,0.770195186138153,0.550047814846039,-0.496457308530808,0.67154848575592,0.55459064245224,-0.487950921058655,0.674042224884033,0.459352791309357,-0.489040344953537,0.741508185863495,0.459352791309357,-0.489040344953537,0.741508185863495,0.45384418964386,-0.353122979402542,0.818125605583191,0.451412618160248,-0.46921095252037,0.758991241455078,0.634294033050537,-0.303202897310257,0.711153328418732,0.665309965610504,-0.389527678489685,0.63689136505127,0.563485324382782,-0.411046802997589,0.716606438159943,0.550047814846039,-0.496457308530808,0.67154848575592,0.563203692436218,-0.386929243803024,0.730128169059753,0.563485324382782,-0.411046802997589,0.716606438159943,0.503129541873932,-0.216639846563339,0.836616814136505,\r\n0.40720322728157,-0.170284166932106,0.897323071956635,0.52230578660965,-0.118627443909645,0.844466686248779,0.40720322728157,-0.170284166932106,0.897323071956635,0.240872249007225,-0.0530039742588997,0.969108402729034,0.253302335739136,-0.160996153950691,0.953896224498749,0.245384827256203,0.0585404522716999,0.967656433582306,0.221458077430725,0.104775972664356,0.969524741172791,0.240872249007225,-0.0530039742588997,0.969108402729034,0.27904200553894,0.187003552913666,0.941894471645355,0.221458077430725,0.104775972664356,0.969524741172791,0.16826020181179,0.239667147397995,0.956163227558136,0.454024910926819,0.0177943669259548,0.890811204910278,0.333323776721954,0.0597232989966869,0.940918862819672,0.27904200553894,0.187003552913666,0.941894471645355,0.500280022621155,-0.0606232546269894,0.863738715648651,0.555468618869781,-0.194660946726799,0.808431565761566,0.527364253997803,-0.132546976208687,0.839236617088318,0.571706116199493,-0.223184660077095,0.789519190788269,0.519281268119812,-0.188042715191841,0.833658635616302,0.531955480575562,-0.165600776672363,0.830421328544617,0.625588953495026,-0.235751137137413,0.743679821491241,0.571706116199493,-0.223184660077095,0.789519190788269,0.555468618869781,-0.194660946726799,0.808431565761566,0.519281268119812,-0.188042715191841,0.833658635616302,0.497031509876251,-0.118793994188309,0.859562397003174,0.531955480575562,-0.165600776672363,0.830421328544617,0.497031509876251,-0.118793994188309,0.859562397003174,0.537716090679169,-0.121822781860828,0.834278404712677,0.531349301338196,-0.0829833969473839,0.84307861328125,0.503129541873932,-0.216639846563339,0.836616814136505,0.52230578660965,-0.118627443909645,0.844466686248779,0.537716090679169,-0.121822781860828,0.834278404712677,0.454024910926819,0.0177943669259548,0.890811204910278,0.524386405944824,-0.0286143478006125,0.850999355316162,0.483912259340286,-0.0477803945541382,0.87381112575531,0.544764518737793,0.136966779828072,0.827327966690063,0.573955714702606,-0.0113434279337525,0.818807661533356,0.599628865718842,0.0449816845357418,0.799012959003448,\r\n0.509129822254181,-0.0184873174875975,0.860491096973419,0.524386405944824,-0.0286143478006125,0.850999355316162,0.574378430843353,-0.0689323395490646,0.815682291984558,0.56903076171875,0.00425800820812583,0.822305142879486,0.573955714702606,-0.0113434279337525,0.818807661533356,0.574378430843353,-0.0689323395490646,0.815682291984558,0.429211676120758,0.302551597356796,0.851022779941559,0.527572870254517,0.2154590934515,0.821732401847839,0.416702121496201,0.370644956827164,0.830049097537994,0.544764518737793,0.136966779828072,0.827327966690063,0.599628865718842,0.0449816845357418,0.799012959003448,0.527572870254517,0.2154590934515,0.821732401847839,0.432170182466507,0.413634419441223,0.801333487033844,0.29153123497963,0.497476160526276,0.817023158073425,0.416702121496201,0.370644956827164,0.830049097537994,-0.120547235012054,0.607069373130798,0.785452127456665,-0.267171442508698,0.667942941188812,0.694601655006409,-0.27046999335289,0.71820741891861,0.641111493110657,-0.27046999335289,0.71820741891861,0.641111493110657,-0.293070286512375,0.676338791847229,0.675777673721313,-0.275637894868851,0.724283754825592,0.632009983062744,0.139124915003777,0.36630192399025,0.920036435127258,-0.0363817028701305,0.497976273298264,0.8664271235466,0.166318252682686,0.221036270260811,0.960979282855988,-0.120547235012054,0.607069373130798,0.785452127456665,0.113533101975918,0.314957499504089,0.942290782928467,-0.0363817028701305,0.497976273298264,0.8664271235466,0.134380310773849,0.349189698696136,0.927366375923157,0.139124915003777,0.36630192399025,0.920036435127258,0.258156150579453,0.0986400619149208,0.96105432510376,-0.275637894868851,0.724283754825592,0.632009983062744,-0.293070286512375,0.676338791847229,0.675777673721313,-0.188469663262367,0.665385842323303,0.722316205501556,0.432170182466507,0.413634419441223,0.801333487033844,0.331139475107193,0.551275372505188,0.765795052051544,0.29153123497963,0.497476160526276,0.817023158073425,0.130115330219269,0.442348301410675,0.88735443353653,0.249081194400787,0.532951533794403,0.808653831481934,\r\n0.211224257946014,0.398383498191834,0.892566442489624,0.331139475107193,0.551275372505188,0.765795052051544,0.399425268173218,0.511557877063751,0.760767996311188,0.249081194400787,0.532951533794403,0.808653831481934,-0.188469663262367,0.665385842323303,0.722316205501556,-0.154090493917465,0.529117465019226,0.834440350532532,0.0145825259387493,0.640904426574707,0.767482042312622,0.041589118540287,0.4351806640625,0.899381995201111,-0.154090493917465,0.529117465019226,0.834440350532532,-0.0571484267711639,0.34291273355484,0.937627255916595,0.128379136323929,0.285098999738693,0.949861705303192,-0.0105430567637086,0.388284772634506,0.921479046344757,0.130115330219269,0.442348301410675,0.88735443353653,0.128379136323929,0.285098999738693,0.949861705303192,-0.0571484267711639,0.34291273355484,0.937627255916595,-0.0105430567637086,0.388284772634506,0.921479046344757,-0.0146539704874158,0.715926289558411,0.698021948337555,-0.0265201833099127,0.627325594425201,0.778305292129517,0.0170269832015038,0.698514223098755,0.715393483638763,0.235509425401688,0.971845388412476,-0.00719765247777104,0.286826461553574,0.95796126127243,0.00637879502028227,0.294876456260681,0.95463365316391,-0.0415012873709202,0.193863466382027,0.980489253997803,0.0325209274888039,0.235509425401688,0.971845388412476,-0.00719765247777104,0.184324815869331,0.982282936573029,-0.0338297337293625,0.283581525087357,0.294902443885803,0.91247683763504,0.29014465212822,0.395574629306793,0.871399223804474,0.338469982147217,0.276245385408401,0.899514555931091,0.166318252682686,0.221036270260811,0.960979282855988,0.272203058004379,0.0736149549484253,0.959419727325439,0.258156150579453,0.0986400619149208,0.96105432510376,0.302626460790634,0.182243674993515,0.935523569583893,0.325381875038147,0.0868537500500679,0.94158536195755,0.272203058004379,0.0736149549484253,0.959419727325439,0.352365732192993,0.175483196973801,0.919262707233429,0.387405604124069,0.171525835990906,0.90581214427948,0.302626460790634,0.182243674993515,0.935523569583893,0.359304964542389,0.186746969819069,0.914344251155853,\r\n0.338469982147217,0.276245385408401,0.899514555931091,0.387405604124069,0.171525835990906,0.90581214427948,0.29014465212822,0.395574629306793,0.871399223804474,0.29302042722702,0.47019898891449,0.832497298717499,0.255997598171234,0.484333455562592,0.836592018604279,0.29302042722702,0.47019898891449,0.832497298717499,0.180995345115662,0.486947119235992,0.854472398757935,0.255997598171234,0.484333455562592,0.836592018604279,0.0411244556307793,0.545502960681915,0.837099254131317,-0.0225425399839878,0.591375648975372,0.806080996990204,-0.0240290574729443,0.588638365268707,0.80803918838501,0.0411244556307793,0.545502960681915,0.837099254131317,0.180995345115662,0.486947119235992,0.854472398757935,0.0687032118439674,0.518133044242859,0.852536141872406,-0.0240290574729443,0.588638365268707,0.80803918838501,-0.0574611611664295,0.605557501316071,0.793724238872528,-0.0265201833099127,0.627325594425201,0.778305292129517,0.184770941734314,0.980836451053619,-0.0618018954992294,0.240354716777802,0.970391750335693,0.0238614175468683,0.184324815869331,0.982282936573029,-0.0338297337293625,0.271990090608597,0.960927605628967,-0.0513752959668636,0.240354716777802,0.970391750335693,0.0238614175468683,0.184770941734314,0.980836451053619,-0.0618018954992294,0.441723585128784,0.897080481052399,-0.0112629402428865,0.271990090608597,0.960927605628967,-0.0513752959668636,0.31710609793663,0.944522142410278,-0.0855663791298866,0.629320919513702,0.777143180370331,-0.00190732814371586,0.441723585128784,0.897080481052399,-0.0112629402428865,0.583303868770599,0.808461546897888,-0.0783988311886787,0.771994590759277,0.632817506790161,-0.0597176291048527,0.728854596614838,0.681846499443054,0.0620977841317654,0.629320919513702,0.777143180370331,-0.00190732814371586,0.771994590759277,0.632817506790161,-0.0597176291048527,0.822390913963318,0.561902225017548,-0.0891012102365494,0.811386823654175,0.584468603134155,0.00691409315913916,0.87510871887207,0.481278002262115,-0.0505585819482803,0.841797590255737,0.539422869682312,0.0199900008738041,0.822390913963318,0.561902225017548,-0.0891012102365494,\r\n0.87510871887207,0.481278002262115,-0.0505585819482803,0.899888217449188,0.435851812362671,0.0153056178241968,0.860907554626465,0.506868124008179,0.0438493900001049,0.899888217449188,0.435851812362671,0.0153056178241968,0.862241506576538,0.497137874364853,0.0969193577766418,0.860907554626465,0.506868124008179,0.0438493900001049,0.785205543041229,0.538781642913818,0.305231779813766,0.782641053199768,0.537397444248199,0.314128667116165,0.795419454574585,0.549291670322418,0.256098330020905,0.862241506576538,0.497137874364853,0.0969193577766418,0.865028917789459,0.473544090986252,0.165773376822472,0.827477335929871,0.527464747428894,0.192514643073082,0.795419454574585,0.549291670322418,0.256098330020905,0.827477335929871,0.527464747428894,0.192514643073082,0.837592363357544,0.474692463874817,0.27038112282753,0.410161823034287,0.452497065067291,0.791841924190521,0.521282017230988,0.448386371135712,0.72609543800354,0.37198469042778,0.445661216974258,0.814256310462952,0.37198469042778,0.445661216974258,0.814256310462952,0.391623109579086,0.479042768478394,0.785588443279266,0.410161823034287,0.452497065067291,0.791841924190521,0.379601806402206,0.542140662670136,0.749657213687897,0.391623109579086,0.479042768478394,0.785588443279266,0.42995822429657,0.45355036854744,0.780658662319183,0.468304604291916,0.516866385936737,0.716616988182068,0.379601806402206,0.542140662670136,0.749657213687897,0.494843870401382,0.508911848068237,0.704370737075806,0.563539028167725,0.500743329524994,0.657023370265961,0.518874287605286,0.47451439499855,0.711059331893921,0.468304604291916,0.516866385936737,0.716616988182068,0.785355091094971,0.529310762882233,0.321009874343872,0.785205543041229,0.538781642913818,0.305231779813766,0.863705635070801,0.416204869747162,0.284228652715683,0.863705635070801,0.416204869747162,0.284228652715683,0.868967473506927,0.351969599723816,0.347869038581848,0.785355091094971,0.529310762882233,0.321009874343872,0.766538739204407,0.492107927799225,0.412611186504364,0.868967473506927,0.351969599723816,0.347869038581848,\r\n0.791322648525238,0.350859135389328,0.500705659389496,0.791322648525238,0.350859135389328,0.500705659389496,0.694585621356964,0.339507669210434,0.634259581565857,0.69862824678421,0.463935643434525,0.544685304164886,0.603034853935242,0.457602858543396,0.653412878513336,0.69862824678421,0.463935643434525,0.544685304164886,0.694585621356964,0.339507669210434,0.634259581565857,0.513331532478333,0.350724279880524,0.783251583576202,0.518874287605286,0.47451439499855,0.711059331893921,0.603034853935242,0.457602858543396,0.653412878513336,0.757014274597168,0.433437794446945,0.488938570022583,0.742519438266754,0.440693229436874,0.504434525966644,0.780938863754272,0.389303296804428,0.488443702459335,0.76069849729538,0.424293875694275,0.491235554218292,0.757014274597168,0.433437794446945,0.488938570022583,0.680937767028809,0.435988545417786,0.588419675827026,0.521282017230988,0.448386371135712,0.72609543800354,0.595137000083923,0.41699343919754,0.686970353126526,0.620079278945923,0.436206638813019,0.65209299325943,0.680937767028809,0.435988545417786,0.588419675827026,0.620079278945923,0.436206638813019,0.65209299325943,0.733240783214569,0.394278138875961,0.553987860679626,0.677431464195251,-0.278760850429535,0.680719435214996,0.634294033050537,-0.303202897310257,0.711153328418732,0.666471064090729,-0.195282801985741,0.719500362873077,0.495712131261826,0.0379657335579395,0.867656588554382,0.425270855426788,0.0865808725357056,0.900915265083313,0.311769545078278,0.096303403377533,0.94526469707489,0.413450688123703,0.0144868120551109,0.910411179065704,0.311769545078278,0.096303403377533,0.94526469707489,0.425270855426788,0.0865808725357056,0.900915265083313,0.413450688123703,0.0144868120551109,0.910411179065704,0.527364253997803,-0.132546976208687,0.839236617088318,0.436205685138702,-0.137197822332382,0.889326274394989,0.495712131261826,0.0379657335579395,0.867656588554382,0.562187612056732,-0.193952649831772,0.803944826126099,0.658835351467133,-0.115728996694088,0.743332087993622,0.658835351467133,-0.115728996694088,0.743332087993622,\r\n0.679118931293488,-0.21835720539093,0.700797736644745,0.666471064090729,-0.195282801985741,0.719500362873077,0.463857620954514,-0.437761783599854,0.770195186138153,0.451412618160248,-0.46921095252037,0.758991241455078,0.45384418964386,-0.353122979402542,0.818125605583191,0.503042876720428,-0.46921369433403,0.725800395011902,0.550047814846039,-0.496457308530808,0.67154848575592,0.459352791309357,-0.489040344953537,0.741508185863495,0.503042876720428,-0.46921369433403,0.725800395011902,0.459352791309357,-0.489040344953537,0.741508185863495,0.451412618160248,-0.46921095252037,0.758991241455078,0.563485324382782,-0.411046802997589,0.716606438159943,0.482734024524689,-0.348207831382751,0.803566455841064,0.634294033050537,-0.303202897310257,0.711153328418732,0.550047814846039,-0.496457308530808,0.67154848575592,0.503042876720428,-0.46921369433403,0.725800395011902,0.563203692436218,-0.386929243803024,0.730128169059753,0.563485324382782,-0.411046802997589,0.716606438159943,0.563203692436218,-0.386929243803024,0.730128169059753,0.482734024524689,-0.348207831382751,0.803566455841064,0.40720322728157,-0.170284166932106,0.897323071956635,0.503129541873932,-0.216639846563339,0.836616814136505,0.368411242961884,-0.155737563967705,0.916525423526764,0.40720322728157,-0.170284166932106,0.897323071956635,0.368411242961884,-0.155737563967705,0.916525423526764,0.240872249007225,-0.0530039742588997,0.969108402729034,0.245384827256203,0.0585404522716999,0.967656433582306,0.16826020181179,0.239667147397995,0.956163227558136,0.221458077430725,0.104775972664356,0.969524741172791,0.240872249007225,-0.0530039742588997,0.969108402729034,0.368411242961884,-0.155737563967705,0.916525423526764,0.245384827256203,0.0585404522716999,0.967656433582306,0.27904200553894,0.187003552913666,0.941894471645355,0.16826020181179,0.239667147397995,0.956163227558136,0.213701754808426,0.289475649595261,0.933024823665619,0.27904200553894,0.187003552913666,0.941894471645355,0.364083528518677,0.148740708827972,0.91941249370575,0.454024910926819,0.0177943669259548,0.890811204910278,\r\n0.500280022621155,-0.0606232546269894,0.863738715648651,0.566455483436584,-0.082991898059845,0.819902718067169,0.555468618869781,-0.194660946726799,0.808431565761566,0.500280022621155,-0.0606232546269894,0.863738715648651,0.527364253997803,-0.132546976208687,0.839236617088318,0.413450688123703,0.0144868120551109,0.910411179065704,0.519505560398102,-0.274293810129166,0.809244573116302,0.519281268119812,-0.188042715191841,0.833658635616302,0.571706116199493,-0.223184660077095,0.789519190788269,0.519505560398102,-0.274293810129166,0.809244573116302,0.571706116199493,-0.223184660077095,0.789519190788269,0.625588953495026,-0.235751137137413,0.743679821491241,0.625588953495026,-0.235751137137413,0.743679821491241,0.555468618869781,-0.194660946726799,0.808431565761566,0.566455483436584,-0.082991898059845,0.819902718067169,0.519281268119812,-0.188042715191841,0.833658635616302,0.373355597257614,-0.283260464668274,0.883385002613068,0.497031509876251,-0.118793994188309,0.859562397003174,0.497031509876251,-0.118793994188309,0.859562397003174,0.41184788942337,-0.220648720860481,0.884135365486145,0.537716090679169,-0.121822781860828,0.834278404712677,0.430310666561127,-0.285313755273819,0.856404483318329,0.503129541873932,-0.216639846563339,0.836616814136505,0.537716090679169,-0.121822781860828,0.834278404712677,0.524386405944824,-0.0286143478006125,0.850999355316162,0.454024910926819,0.0177943669259548,0.890811204910278,0.364083528518677,0.148740708827972,0.91941249370575,0.56903076171875,0.00425800820812583,0.822305142879486,0.599628865718842,0.0449816845357418,0.799012959003448,0.573955714702606,-0.0113434279337525,0.818807661533356,0.434142529964447,0.114361338317394,0.893555581569672,0.574378430843353,-0.0689323395490646,0.815682291984558,0.524386405944824,-0.0286143478006125,0.850999355316162,0.56903076171875,0.00425800820812583,0.822305142879486,0.574378430843353,-0.0689323395490646,0.815682291984558,0.434142529964447,0.114361338317394,0.893555581569672,0.416702121496201,0.370644956827164,0.830049097537994,0.527572870254517,0.2154590934515,0.821732401847839,\r\n0.468298494815826,0.297156751155853,0.832102298736572,0.60212117433548,0.0840694308280945,0.793966174125671,0.527572870254517,0.2154590934515,0.821732401847839,0.599628865718842,0.0449816845357418,0.799012959003448,0.416702121496201,0.370644956827164,0.830049097537994,0.468298494815826,0.297156751155853,0.832102298736572,0.432170182466507,0.413634419441223,0.801333487033844,-0.222369968891144,0.700409412384033,0.678216814994812,-0.120547235012054,0.607069373130798,0.785452127456665,-0.27046999335289,0.71820741891861,0.641111493110657,-0.222369968891144,0.700409412384033,0.678216814994812,-0.27046999335289,0.71820741891861,0.641111493110657,-0.275637894868851,0.724283754825592,0.632009983062744,0.113533101975918,0.314957499504089,0.942290782928467,0.166318252682686,0.221036270260811,0.960979282855988,-0.0363817028701305,0.497976273298264,0.8664271235466,0.139124915003777,0.36630192399025,0.920036435127258,0.166318252682686,0.221036270260811,0.960979282855988,0.258156150579453,0.0986400619149208,0.96105432510376,-0.120547235012054,0.607069373130798,0.785452127456665,0.0301809925585985,0.480795502662659,0.876313149929047,0.113533101975918,0.314957499504089,0.942290782928467,-0.275637894868851,0.724283754825592,0.632009983062744,-0.188469663262367,0.665385842323303,0.722316205501556,-0.192331284284592,0.745489835739136,0.638164103031158,0.487899243831635,0.511891186237335,0.707051336765289,0.331139475107193,0.551275372505188,0.765795052051544,0.432170182466507,0.413634419441223,0.801333487033844,0.284920960664749,0.350892543792725,0.892017006874084,0.211224257946014,0.398383498191834,0.892566442489624,0.249081194400787,0.532951533794403,0.808653831481934,0.130115330219269,0.442348301410675,0.88735443353653,0.211224257946014,0.398383498191834,0.892566442489624,0.128379136323929,0.285098999738693,0.949861705303192,0.399425268173218,0.511557877063751,0.760767996311188,0.331139475107193,0.551275372505188,0.765795052051544,0.487899243831635,0.511891186237335,0.707051336765289,0.284920960664749,0.350892543792725,0.892017006874084,\r\n0.249081194400787,0.532951533794403,0.808653831481934,0.399425268173218,0.511557877063751,0.760767996311188,0.041589118540287,0.4351806640625,0.899381995201111,0.0145825259387493,0.640904426574707,0.767482042312622,-0.154090493917465,0.529117465019226,0.834440350532532,-0.0920888185501099,0.727133512496948,0.680291354656219,-0.188469663262367,0.665385842323303,0.722316205501556,0.0145825259387493,0.640904426574707,0.767482042312622,0.041589118540287,0.4351806640625,0.899381995201111,-0.0571484267711639,0.34291273355484,0.937627255916595,0.10079000890255,0.267464131116867,0.958281874656677,0.10079000890255,0.267464131116867,0.958281874656677,-0.0571484267711639,0.34291273355484,0.937627255916595,0.128379136323929,0.285098999738693,0.949861705303192,-0.0265201833099127,0.627325594425201,0.778305292129517,-0.0574611611664295,0.605557501316071,0.793724238872528,0.0170269832015038,0.698514223098755,0.715393483638763,0.224174469709396,0.970797061920166,-0.0854331776499748,0.235509425401688,0.971845388412476,-0.00719765247777104,0.294876456260681,0.95463365316391,-0.0415012873709202,0.224174469709396,0.970797061920166,-0.0854331776499748,0.184324815869331,0.982282936573029,-0.0338297337293625,0.235509425401688,0.971845388412476,-0.00719765247777104,0.283581525087357,0.294902443885803,0.91247683763504,0.282212525606155,0.412472009658813,0.866154074668884,0.29014465212822,0.395574629306793,0.871399223804474,0.283581525087357,0.294902443885803,0.91247683763504,0.338469982147217,0.276245385408401,0.899514555931091,0.359304964542389,0.186746969819069,0.914344251155853,0.113533101975918,0.314957499504089,0.942290782928467,0.272203058004379,0.0736149549484253,0.959419727325439,0.166318252682686,0.221036270260811,0.960979282855988,0.302626460790634,0.182243674993515,0.935523569583893,0.272203058004379,0.0736149549484253,0.959419727325439,0.113533101975918,0.314957499504089,0.942290782928467,0.359304964542389,0.186746969819069,0.914344251155853,0.387405604124069,0.171525835990906,0.90581214427948,0.352365732192993,0.175483196973801,0.919262707233429,\r\n0.352365732192993,0.175483196973801,0.919262707233429,0.302626460790634,0.182243674993515,0.935523569583893,0.193290412425995,0.363535583019257,0.911307036876678,0.29014465212822,0.395574629306793,0.871399223804474,0.282212525606155,0.412472009658813,0.866154074668884,0.29302042722702,0.47019898891449,0.832497298717499,0.180995345115662,0.486947119235992,0.854472398757935,0.29302042722702,0.47019898891449,0.832497298717499,0.256706207990646,0.434776544570923,0.863175094127655,0.0411244556307793,0.545502960681915,0.837099254131317,0.0687032118439674,0.518133044242859,0.852536141872406,-0.0225425399839878,0.591375648975372,0.806080996990204,-0.0240290574729443,0.588638365268707,0.80803918838501,-0.0225425399839878,0.591375648975372,0.806080996990204,-0.0574611611664295,0.605557501316071,0.793724238872528,0.0687032118439674,0.518133044242859,0.852536141872406,0.180995345115662,0.486947119235992,0.854472398757935,0.230764806270599,0.449401766061783,0.863009631633759,0.224174469709396,0.970797061920166,-0.0854331776499748,0.184770941734314,0.980836451053619,-0.0618018954992294,0.184324815869331,0.982282936573029,-0.0338297337293625,0.271990090608597,0.960927605628967,-0.0513752959668636,0.184770941734314,0.980836451053619,-0.0618018954992294,0.219225183129311,0.972016096115112,-0.0844090357422829,0.271990090608597,0.960927605628967,-0.0513752959668636,0.219225183129311,0.972016096115112,-0.0844090357422829,0.31710609793663,0.944522142410278,-0.0855663791298866,0.441723585128784,0.897080481052399,-0.0112629402428865,0.31710609793663,0.944522142410278,-0.0855663791298866,0.500001609325409,0.855618894100189,-0.133845150470734,0.583303868770599,0.808461546897888,-0.0783988311886787,0.441723585128784,0.897080481052399,-0.0112629402428865,0.500001609325409,0.855618894100189,-0.133845150470734,0.663908958435059,0.737198770046234,-0.12554968893528,0.629320919513702,0.777143180370331,-0.00190732814371586,0.583303868770599,0.808461546897888,-0.0783988311886787,0.629320919513702,0.777143180370331,-0.00190732814371586,0.663908958435059,0.737198770046234,-0.12554968893528,\r\n0.771994590759277,0.632817506790161,-0.0597176291048527,0.771994590759277,0.632817506790161,-0.0597176291048527,0.777178168296814,0.611563563346863,-0.148270174860954,0.822390913963318,0.561902225017548,-0.0891012102365494,0.87510871887207,0.481278002262115,-0.0505585819482803,0.822390913963318,0.561902225017548,-0.0891012102365494,0.879143297672272,0.460879594087601,-0.121231205761433,0.87510871887207,0.481278002262115,-0.0505585819482803,0.928572714328766,0.365699619054794,-0.0633744895458221,0.899888217449188,0.435851812362671,0.0153056178241968,0.862241506576538,0.497137874364853,0.0969193577766418,0.899888217449188,0.435851812362671,0.0153056178241968,0.904817581176758,0.412029713392258,0.107408694922924,0.837592363357544,0.474692463874817,0.27038112282753,0.785205543041229,0.538781642913818,0.305231779813766,0.795419454574585,0.549291670322418,0.256098330020905,0.862241506576538,0.497137874364853,0.0969193577766418,0.904817581176758,0.412029713392258,0.107408694922924,0.865028917789459,0.473544090986252,0.165773376822472,0.827477335929871,0.527464747428894,0.192514643073082,0.865028917789459,0.473544090986252,0.165773376822472,0.837592363357544,0.474692463874817,0.27038112282753,0.521282017230988,0.448386371135712,0.72609543800354,0.410161823034287,0.452497065067291,0.791841924190521,0.595137000083923,0.41699343919754,0.686970353126526,0.410161823034287,0.452497065067291,0.791841924190521,0.391623109579086,0.479042768478394,0.785588443279266,0.595137000083923,0.41699343919754,0.686970353126526,0.379601806402206,0.542140662670136,0.749657213687897,0.376271665096283,0.540265202522278,0.752683937549591,0.391623109579086,0.479042768478394,0.785588443279266,0.389440625905991,0.50956803560257,0.767252385616302,0.379601806402206,0.542140662670136,0.749657213687897,0.468304604291916,0.516866385936737,0.716616988182068,0.468304604291916,0.516866385936737,0.716616988182068,0.518874287605286,0.47451439499855,0.711059331893921,0.513331532478333,0.350724279880524,0.783251583576202,0.863705635070801,0.416204869747162,0.284228652715683,\r\n0.785205543041229,0.538781642913818,0.305231779813766,0.838324964046478,0.439643830060959,0.322373121976852,0.868967473506927,0.351969599723816,0.347869038581848,0.863705635070801,0.416204869747162,0.284228652715683,0.949808955192566,0.231740355491638,0.210140973329544,0.868967473506927,0.351969599723816,0.347869038581848,0.839982986450195,0.230000123381615,0.491455376148224,0.791322648525238,0.350859135389328,0.500705659389496,0.791322648525238,0.350859135389328,0.500705659389496,0.74335241317749,0.22402149438858,0.630270898342133,0.694585621356964,0.339507669210434,0.634259581565857,0.694585621356964,0.339507669210434,0.634259581565857,0.613585472106934,0.314357936382294,0.724356114864349,0.603034853935242,0.457602858543396,0.653412878513336,0.513331532478333,0.350724279880524,0.783251583576202,0.603034853935242,0.457602858543396,0.653412878513336,0.613585472106934,0.314357936382294,0.724356114864349,0.757014274597168,0.433437794446945,0.488938570022583,0.76069849729538,0.424293875694275,0.491235554218292,0.742519438266754,0.440693229436874,0.504434525966644,0.680937767028809,0.435988545417786,0.588419675827026,0.733240783214569,0.394278138875961,0.553987860679626,0.76069849729538,0.424293875694275,0.491235554218292,0.704905807971954,0.329658269882202,0.628039181232452,0.620079278945923,0.436206638813019,0.65209299325943,0.595137000083923,0.41699343919754,0.686970353126526,0.704905807971954,0.329658269882202,0.628039181232452,0.733240783214569,0.394278138875961,0.553987860679626,0.620079278945923,0.436206638813019,0.65209299325943,0.634294033050537,-0.303202897310257,0.711153328418732,0.506924867630005,-0.249088793992996,0.825216233730316,0.666471064090729,-0.195282801985741,0.719500362873077,0.546878159046173,0.0789627507328987,0.833480060100555,0.425270855426788,0.0865808725357056,0.900915265083313,0.495712131261826,0.0379657335579395,0.867656588554382,0.500280022621155,-0.0606232546269894,0.863738715648651,0.413450688123703,0.0144868120551109,0.910411179065704,0.425270855426788,0.0865808725357056,0.900915265083313,\r\n0.495712131261826,0.0379657335579395,0.867656588554382,0.658835351467133,-0.115728996694088,0.743332087993622,0.643848478794098,-0.00739919533953071,0.765117108821869,0.633402407169342,-0.0447336845099926,0.772528469562531,0.658835351467133,-0.115728996694088,0.743332087993622,0.666471064090729,-0.195282801985741,0.719500362873077,0.463857620954514,-0.437761783599854,0.770195186138153,0.503042876720428,-0.46921369433403,0.725800395011902,0.451412618160248,-0.46921095252037,0.758991241455078,0.634294033050537,-0.303202897310257,0.711153328418732,0.482734024524689,-0.348207831382751,0.803566455841064,0.506924867630005,-0.249088793992996,0.825216233730316,0.503042876720428,-0.46921369433403,0.725800395011902,0.525252997875214,-0.375090479850769,0.763816893100739,0.563203692436218,-0.386929243803024,0.730128169059753,0.563203692436218,-0.386929243803024,0.730128169059753,0.494831115007401,-0.299653351306915,0.8156898021698,0.482734024524689,-0.348207831382751,0.803566455841064,0.368411242961884,-0.155737563967705,0.916525423526764,0.503129541873932,-0.216639846563339,0.836616814136505,0.377791464328766,-0.312451928853989,0.871577441692352,0.286766856908798,0.202727109193802,0.93630462884903,0.16826020181179,0.239667147397995,0.956163227558136,0.245384827256203,0.0585404522716999,0.967656433582306,0.343497455120087,0.00434962986037135,0.939143359661102,0.245384827256203,0.0585404522716999,0.967656433582306,0.368411242961884,-0.155737563967705,0.916525423526764,0.213701754808426,0.289475649595261,0.933024823665619,0.16826020181179,0.239667147397995,0.956163227558136,0.215375408530235,0.329484671354294,0.91926771402359,0.27904200553894,0.187003552913666,0.941894471645355,0.213701754808426,0.289475649595261,0.933024823665619,0.364083528518677,0.148740708827972,0.91941249370575,0.500280022621155,-0.0606232546269894,0.863738715648651,0.425270855426788,0.0865808725357056,0.900915265083313,0.566455483436584,-0.082991898059845,0.819902718067169,0.519281268119812,-0.188042715191841,0.833658635616302,0.519505560398102,-0.274293810129166,0.809244573116302,\r\n0.373355597257614,-0.283260464668274,0.883385002613068,0.625588953495026,-0.235751137137413,0.743679821491241,0.614055931568146,-0.304978489875793,0.727958261966705,0.519505560398102,-0.274293810129166,0.809244573116302,0.625588953495026,-0.235751137137413,0.743679821491241,0.566455483436584,-0.082991898059845,0.819902718067169,0.645747601985931,-0.0964893624186516,0.757429659366608,0.497031509876251,-0.118793994188309,0.859562397003174,0.373355597257614,-0.283260464668274,0.883385002613068,0.41184788942337,-0.220648720860481,0.884135365486145,0.430310666561127,-0.285313755273819,0.856404483318329,0.537716090679169,-0.121822781860828,0.834278404712677,0.41184788942337,-0.220648720860481,0.884135365486145,0.377791464328766,-0.312451928853989,0.871577441692352,0.503129541873932,-0.216639846563339,0.836616814136505,0.430310666561127,-0.285313755273819,0.856404483318329,0.434142529964447,0.114361338317394,0.893555581569672,0.524386405944824,-0.0286143478006125,0.850999355316162,0.364083528518677,0.148740708827972,0.91941249370575,0.599628865718842,0.0449816845357418,0.799012959003448,0.56903076171875,0.00425800820812583,0.822305142879486,0.533074498176575,0.0933933034539223,0.840897858142853,0.434142529964447,0.114361338317394,0.893555581569672,0.4289391040802,0.147637143731117,0.891187071800232,0.56903076171875,0.00425800820812583,0.822305142879486,0.569828748703003,0.254364967346191,0.781404912471771,0.468298494815826,0.297156751155853,0.832102298736572,0.527572870254517,0.2154590934515,0.821732401847839,0.569828748703003,0.254364967346191,0.781404912471771,0.527572870254517,0.2154590934515,0.821732401847839,0.60212117433548,0.0840694308280945,0.793966174125671,0.533074498176575,0.0933933034539223,0.840897858142853,0.60212117433548,0.0840694308280945,0.793966174125671,0.599628865718842,0.0449816845357418,0.799012959003448,0.432170182466507,0.413634419441223,0.801333487033844,0.468298494815826,0.297156751155853,0.832102298736572,0.569828748703003,0.254364967346191,0.781404912471771,-0.222369968891144,0.700409412384033,0.678216814994812,\r\n0.0301809925585985,0.480795502662659,0.876313149929047,-0.120547235012054,0.607069373130798,0.785452127456665,-0.275637894868851,0.724283754825592,0.632009983062744,-0.247979134321213,0.745270669460297,0.618932843208313,-0.222369968891144,0.700409412384033,0.678216814994812,0.302626460790634,0.182243674993515,0.935523569583893,0.113533101975918,0.314957499504089,0.942290782928467,0.0301809925585985,0.480795502662659,0.876313149929047,-0.192331284284592,0.745489835739136,0.638164103031158,-0.188469663262367,0.665385842323303,0.722316205501556,-0.0920888185501099,0.727133512496948,0.680291354656219,-0.247979134321213,0.745270669460297,0.618932843208313,-0.275637894868851,0.724283754825592,0.632009983062744,-0.192331284284592,0.745489835739136,0.638164103031158,0.487899243831635,0.511891186237335,0.707051336765289,0.432170182466507,0.413634419441223,0.801333487033844,0.648819983005524,0.378381699323654,0.660196721553802,0.211224257946014,0.398383498191834,0.892566442489624,0.284920960664749,0.350892543792725,0.892017006874084,0.128379136323929,0.285098999738693,0.949861705303192,0.487899243831635,0.511891186237335,0.707051336765289,0.58933812379837,0.473243981599808,0.654767513275146,0.399425268173218,0.511557877063751,0.760767996311188,0.284920960664749,0.350892543792725,0.892017006874084,0.399425268173218,0.511557877063751,0.760767996311188,0.388480484485626,0.3582563996315,0.848961174488068,0.041589118540287,0.4351806640625,0.899381995201111,0.189864903688431,0.435102641582489,0.880134582519531,0.0145825259387493,0.640904426574707,0.767482042312622,0.0166227668523788,0.729115009307861,0.684189200401306,-0.0920888185501099,0.727133512496948,0.680291354656219,0.0145825259387493,0.640904426574707,0.767482042312622,0.10079000890255,0.267464131116867,0.958281874656677,0.1905497610569,0.279504716396332,0.941046118736267,0.041589118540287,0.4351806640625,0.899381995201111,0.213418856263161,0.206498295068741,0.954887807369232,0.10079000890255,0.267464131116867,0.958281874656677,0.128379136323929,0.285098999738693,0.949861705303192,\r\n0.0170269832015038,0.698514223098755,0.715393483638763,-0.0574611611664295,0.605557501316071,0.793724238872528,-0.0225425399839878,0.591375648975372,0.806080996990204,0.283581525087357,0.294902443885803,0.91247683763504,0.198849081993103,0.386764764785767,0.900484263896942,0.282212525606155,0.412472009658813,0.866154074668884,0.228856697678566,0.225194990634918,0.947054207324982,0.283581525087357,0.294902443885803,0.91247683763504,0.359304964542389,0.186746969819069,0.914344251155853,0.246319606900215,0.245079651474953,0.937690019607544,0.359304964542389,0.186746969819069,0.914344251155853,0.352365732192993,0.175483196973801,0.919262707233429,0.193290412425995,0.363535583019257,0.911307036876678,0.302626460790634,0.182243674993515,0.935523569583893,0.0301809925585985,0.480795502662659,0.876313149929047,0.246319606900215,0.245079651474953,0.937690019607544,0.352365732192993,0.175483196973801,0.919262707233429,0.193290412425995,0.363535583019257,0.911307036876678,0.256706207990646,0.434776544570923,0.863175094127655,0.29302042722702,0.47019898891449,0.832497298717499,0.282212525606155,0.412472009658813,0.866154074668884,0.230764806270599,0.449401766061783,0.863009631633759,0.180995345115662,0.486947119235992,0.854472398757935,0.256706207990646,0.434776544570923,0.863175094127655,0.155846759676933,0.611560523509979,0.775696754455566,-0.0225425399839878,0.591375648975372,0.806080996990204,0.0687032118439674,0.518133044242859,0.852536141872406,0.155846759676933,0.611560523509979,0.775696754455566,0.0687032118439674,0.518133044242859,0.852536141872406,0.230764806270599,0.449401766061783,0.863009631633759,0.219225183129311,0.972016096115112,-0.0844090357422829,0.309910953044891,0.941755056381226,-0.130585119128227,0.31710609793663,0.944522142410278,-0.0855663791298866,0.309910953044891,0.941755056381226,-0.130585119128227,0.500001609325409,0.855618894100189,-0.133845150470734,0.31710609793663,0.944522142410278,-0.0855663791298866,0.500001609325409,0.855618894100189,-0.133845150470734,0.573376834392548,0.803828060626984,-0.158427968621254,\r\n0.583303868770599,0.808461546897888,-0.0783988311886787,0.663908958435059,0.737198770046234,-0.12554968893528,0.583303868770599,0.808461546897888,-0.0783988311886787,0.573376834392548,0.803828060626984,-0.158427968621254,0.777178168296814,0.611563563346863,-0.148270174860954,0.771994590759277,0.632817506790161,-0.0597176291048527,0.663908958435059,0.737198770046234,-0.12554968893528,0.815166354179382,0.545003831386566,-0.196149066090584,0.822390913963318,0.561902225017548,-0.0891012102365494,0.777178168296814,0.611563563346863,-0.148270174860954,0.815166354179382,0.545003831386566,-0.196149066090584,0.879143297672272,0.460879594087601,-0.121231205761433,0.822390913963318,0.561902225017548,-0.0891012102365494,0.87510871887207,0.481278002262115,-0.0505585819482803,0.879143297672272,0.460879594087601,-0.121231205761433,0.928572714328766,0.365699619054794,-0.0633744895458221,0.899888217449188,0.435851812362671,0.0153056178241968,0.928572714328766,0.365699619054794,-0.0633744895458221,0.94012326002121,0.338524758815765,0.0396124944090843,0.904817581176758,0.412029713392258,0.107408694922924,0.899888217449188,0.435851812362671,0.0153056178241968,0.94012326002121,0.338524758815765,0.0396124944090843,0.838324964046478,0.439643830060959,0.322373121976852,0.785205543041229,0.538781642913818,0.305231779813766,0.837592363357544,0.474692463874817,0.27038112282753,0.904817581176758,0.412029713392258,0.107408694922924,0.905758738517761,0.378719598054886,0.190190553665161,0.865028917789459,0.473544090986252,0.165773376822472,0.905758738517761,0.378719598054886,0.190190553665161,0.837592363357544,0.474692463874817,0.27038112282753,0.865028917789459,0.473544090986252,0.165773376822472,0.595137000083923,0.41699343919754,0.686970353126526,0.391623109579086,0.479042768478394,0.785588443279266,0.562514543533325,0.450300365686417,0.693402349948883,0.376271665096283,0.540265202522278,0.752683937549591,0.379601806402206,0.542140662670136,0.749657213687897,0.389440625905991,0.50956803560257,0.767252385616302,0.391623109579086,0.479042768478394,0.785588443279266,\r\n0.376271665096283,0.540265202522278,0.752683937549591,0.562514543533325,0.450300365686417,0.693402349948883,0.389440625905991,0.50956803560257,0.767252385616302,0.468304604291916,0.516866385936737,0.716616988182068,0.513331532478333,0.350724279880524,0.783251583576202,0.863705635070801,0.416204869747162,0.284228652715683,0.838324964046478,0.439643830060959,0.322373121976852,0.91567474603653,0.324151664972305,0.237624287605286,0.91567474603653,0.324151664972305,0.237624287605286,0.949808955192566,0.231740355491638,0.210140973329544,0.863705635070801,0.416204869747162,0.284228652715683,0.916529655456543,0.208892866969109,0.341082096099854,0.868967473506927,0.351969599723816,0.347869038581848,0.949808955192566,0.231740355491638,0.210140973329544,0.868967473506927,0.351969599723816,0.347869038581848,0.916529655456543,0.208892866969109,0.341082096099854,0.839982986450195,0.230000123381615,0.491455376148224,0.791322648525238,0.350859135389328,0.500705659389496,0.839982986450195,0.230000123381615,0.491455376148224,0.74335241317749,0.22402149438858,0.630270898342133,0.656952798366547,0.222489446401596,0.720354974269867,0.694585621356964,0.339507669210434,0.634259581565857,0.74335241317749,0.22402149438858,0.630270898342133,0.613585472106934,0.314357936382294,0.724356114864349,0.694585621356964,0.339507669210434,0.634259581565857,0.656952798366547,0.222489446401596,0.720354974269867,0.613585472106934,0.314357936382294,0.724356114864349,0.579767882823944,0.16561171412468,0.797773003578186,0.513331532478333,0.350724279880524,0.783251583576202,0.76069849729538,0.424293875694275,0.491235554218292,0.781158328056335,0.359085083007813,0.51073431968689,0.742519438266754,0.440693229436874,0.504434525966644,0.733240783214569,0.394278138875961,0.553987860679626,0.811505258083344,0.318406373262405,0.489975959062576,0.76069849729538,0.424293875694275,0.491235554218292,0.704905807971954,0.329658269882202,0.628039181232452,0.595137000083923,0.41699343919754,0.686970353126526,0.792466461658478,0.219719812273979,0.568963944911957,0.818138480186462,0.239446491003037,0.522795021533966,\r\n0.733240783214569,0.394278138875961,0.553987860679626,0.704905807971954,0.329658269882202,0.628039181232452,0.529059767723084,-0.131520450115204,0.838330447673798,0.666471064090729,-0.195282801985741,0.719500362873077,0.506924867630005,-0.249088793992996,0.825216233730316,0.546878159046173,0.0789627507328987,0.833480060100555,0.566455483436584,-0.082991898059845,0.819902718067169,0.425270855426788,0.0865808725357056,0.900915265083313,0.613578736782074,0.0841930732131004,0.785132110118866,0.546878159046173,0.0789627507328987,0.833480060100555,0.495712131261826,0.0379657335579395,0.867656588554382,0.633402407169342,-0.0447336845099926,0.772528469562531,0.643848478794098,-0.00739919533953071,0.765117108821869,0.658835351467133,-0.115728996694088,0.743332087993622,0.613578736782074,0.0841930732131004,0.785132110118866,0.495712131261826,0.0379657335579395,0.867656588554382,0.643848478794098,-0.00739919533953071,0.765117108821869,0.529059767723084,-0.131520450115204,0.838330447673798,0.633402407169342,-0.0447336845099926,0.772528469562531,0.666471064090729,-0.195282801985741,0.719500362873077,0.4850133061409,-0.43706950545311,0.757451117038727,0.503042876720428,-0.46921369433403,0.725800395011902,0.463857620954514,-0.437761783599854,0.770195186138153,0.494831115007401,-0.299653351306915,0.8156898021698,0.506924867630005,-0.249088793992996,0.825216233730316,0.482734024524689,-0.348207831382751,0.803566455841064,0.503042876720428,-0.46921369433403,0.725800395011902,0.4850133061409,-0.43706950545311,0.757451117038727,0.525252997875214,-0.375090479850769,0.763816893100739,0.587504506111145,-0.308708757162094,0.748022198677063,0.563203692436218,-0.386929243803024,0.730128169059753,0.525252997875214,-0.375090479850769,0.763816893100739,0.563203692436218,-0.386929243803024,0.730128169059753,0.629952549934387,-0.30968302488327,0.712219178676605,0.494831115007401,-0.299653351306915,0.8156898021698,0.368411242961884,-0.155737563967705,0.916525423526764,0.377791464328766,-0.312451928853989,0.871577441692352,0.353006273508072,-0.232208386063576,0.906347513198853,\r\n0.286766856908798,0.202727109193802,0.93630462884903,0.215375408530235,0.329484671354294,0.91926771402359,0.16826020181179,0.239667147397995,0.956163227558136,0.343497455120087,0.00434962986037135,0.939143359661102,0.286766856908798,0.202727109193802,0.93630462884903,0.245384827256203,0.0585404522716999,0.967656433582306,0.368411242961884,-0.155737563967705,0.916525423526764,0.353006273508072,-0.232208386063576,0.906347513198853,0.343497455120087,0.00434962986037135,0.939143359661102,0.213701754808426,0.289475649595261,0.933024823665619,0.215375408530235,0.329484671354294,0.91926771402359,0.29639258980751,0.301033854484558,0.906382858753204,0.364083528518677,0.148740708827972,0.91941249370575,0.213701754808426,0.289475649595261,0.933024823665619,0.434142529964447,0.114361338317394,0.893555581569672,0.454742938280106,-0.286853075027466,0.843163132667542,0.373355597257614,-0.283260464668274,0.883385002613068,0.519505560398102,-0.274293810129166,0.809244573116302,0.625588953495026,-0.235751137137413,0.743679821491241,0.698770463466644,-0.292143076658249,0.652971744537354,0.614055931568146,-0.304978489875793,0.727958261966705,0.614055931568146,-0.304978489875793,0.727958261966705,0.610464096069336,-0.318234592676163,0.725299954414368,0.519505560398102,-0.274293810129166,0.809244573116302,0.546878159046173,0.0789627507328987,0.833480060100555,0.645747601985931,-0.0964893624186516,0.757429659366608,0.566455483436584,-0.082991898059845,0.819902718067169,0.625588953495026,-0.235751137137413,0.743679821491241,0.645747601985931,-0.0964893624186516,0.757429659366608,0.698770463466644,-0.292143076658249,0.652971744537354,0.373355597257614,-0.283260464668274,0.883385002613068,0.295921921730042,-0.345336139202118,0.890602648258209,0.41184788942337,-0.220648720860481,0.884135365486145,0.430310666561127,-0.285313755273819,0.856404483318329,0.41184788942337,-0.220648720860481,0.884135365486145,0.295921921730042,-0.345336139202118,0.890602648258209,0.430310666561127,-0.285313755273819,0.856404483318329,0.295921921730042,-0.345336139202118,0.890602648258209,\r\n0.377791464328766,-0.312451928853989,0.871577441692352,0.56903076171875,0.00425800820812583,0.822305142879486,0.4289391040802,0.147637143731117,0.891187071800232,0.533074498176575,0.0933933034539223,0.840897858142853,0.434142529964447,0.114361338317394,0.893555581569672,0.29639258980751,0.301033854484558,0.906382858753204,0.4289391040802,0.147637143731117,0.891187071800232,0.569828748703003,0.254364967346191,0.781404912471771,0.60212117433548,0.0840694308280945,0.793966174125671,0.715951383113861,0.14648100733757,0.682610332965851,0.533074498176575,0.0933933034539223,0.840897858142853,0.621812403202057,0.142436400055885,0.77010452747345,0.60212117433548,0.0840694308280945,0.793966174125671,0.569828748703003,0.254364967346191,0.781404912471771,0.648819983005524,0.378381699323654,0.660196721553802,0.432170182466507,0.413634419441223,0.801333487033844,-0.09040467441082,0.635527610778809,0.766766965389252,0.0301809925585985,0.480795502662659,0.876313149929047,-0.222369968891144,0.700409412384033,0.678216814994812,-0.09040467441082,0.635527610778809,0.766766965389252,-0.222369968891144,0.700409412384033,0.678216814994812,-0.247979134321213,0.745270669460297,0.618932843208313,-0.0944690406322479,0.734451591968536,0.672053813934326,-0.192331284284592,0.745489835739136,0.638164103031158,-0.0920888185501099,0.727133512496948,0.680291354656219,-0.247979134321213,0.745270669460297,0.618932843208313,-0.192331284284592,0.745489835739136,0.638164103031158,-0.163174197077751,0.720395922660828,0.67409473657608,0.487899243831635,0.511891186237335,0.707051336765289,0.648819983005524,0.378381699323654,0.660196721553802,0.58933812379837,0.473243981599808,0.654767513275146,0.213418856263161,0.206498295068741,0.954887807369232,0.128379136323929,0.285098999738693,0.949861705303192,0.284920960664749,0.350892543792725,0.892017006874084,0.58933812379837,0.473243981599808,0.654767513275146,0.462035804986954,0.459297358989716,0.758662462234497,0.399425268173218,0.511557877063751,0.760767996311188,0.462035804986954,0.459297358989716,0.758662462234497,\r\n0.388480484485626,0.3582563996315,0.848961174488068,0.399425268173218,0.511557877063751,0.760767996311188,0.284920960664749,0.350892543792725,0.892017006874084,0.388480484485626,0.3582563996315,0.848961174488068,0.285178124904633,0.226910039782524,0.931227743625641,0.041589118540287,0.4351806640625,0.899381995201111,0.1905497610569,0.279504716396332,0.941046118736267,0.189864903688431,0.435102641582489,0.880134582519531,0.18491792678833,0.602983415126801,0.776025891304016,0.0145825259387493,0.640904426574707,0.767482042312622,0.189864903688431,0.435102641582489,0.880134582519531,-0.0944690406322479,0.734451591968536,0.672053813934326,-0.0920888185501099,0.727133512496948,0.680291354656219,0.0166227668523788,0.729115009307861,0.684189200401306,0.0166227668523788,0.729115009307861,0.684189200401306,0.0145825259387493,0.640904426574707,0.767482042312622,0.111989013850689,0.701320171356201,0.703994572162628,0.10079000890255,0.267464131116867,0.958281874656677,0.213418856263161,0.206498295068741,0.954887807369232,0.1905497610569,0.279504716396332,0.941046118736267,0.155846759676933,0.611560523509979,0.775696754455566,0.0170269832015038,0.698514223098755,0.715393483638763,-0.0225425399839878,0.591375648975372,0.806080996990204,0.133209675550461,0.278239697217941,0.951229631900787,0.198849081993103,0.386764764785767,0.900484263896942,0.283581525087357,0.294902443885803,0.91247683763504,0.198849081993103,0.386764764785767,0.900484263896942,0.248707339167595,0.410341531038284,0.877362132072449,0.282212525606155,0.412472009658813,0.866154074668884,0.228856697678566,0.225194990634918,0.947054207324982,0.133209675550461,0.278239697217941,0.951229631900787,0.283581525087357,0.294902443885803,0.91247683763504,0.228856697678566,0.225194990634918,0.947054207324982,0.359304964542389,0.186746969819069,0.914344251155853,0.246319606900215,0.245079651474953,0.937690019607544,-0.09040467441082,0.635527610778809,0.766766965389252,0.193290412425995,0.363535583019257,0.911307036876678,0.0301809925585985,0.480795502662659,0.876313149929047,\r\n0.193290412425995,0.363535583019257,0.911307036876678,0.0225916616618633,0.506260335445404,0.862084627151489,0.246319606900215,0.245079651474953,0.937690019607544,0.256706207990646,0.434776544570923,0.863175094127655,0.282212525606155,0.412472009658813,0.866154074668884,0.248707339167595,0.410341531038284,0.877362132072449,0.230764806270599,0.449401766061783,0.863009631633759,0.256706207990646,0.434776544570923,0.863175094127655,0.248707339167595,0.410341531038284,0.877362132072449,0.155846759676933,0.611560523509979,0.775696754455566,0.230764806270599,0.449401766061783,0.863009631633759,0.255386292934418,0.526150107383728,0.81113737821579,0.500001609325409,0.855618894100189,-0.133845150470734,0.309910953044891,0.941755056381226,-0.130585119128227,0.527967870235443,0.832068860530853,-0.170032829046249,0.598965585231781,0.781837284564972,-0.173120021820068,0.573376834392548,0.803828060626984,-0.158427968621254,0.500001609325409,0.855618894100189,-0.133845150470734,0.663908958435059,0.737198770046234,-0.12554968893528,0.573376834392548,0.803828060626984,-0.158427968621254,0.61192524433136,0.772151231765747,-0.171259492635727,0.724258780479431,0.663338959217072,-0.188229858875275,0.777178168296814,0.611563563346863,-0.148270174860954,0.663908958435059,0.737198770046234,-0.12554968893528,0.815166354179382,0.545003831386566,-0.196149066090584,0.777178168296814,0.611563563346863,-0.148270174860954,0.724258780479431,0.663338959217072,-0.188229858875275,0.879143297672272,0.460879594087601,-0.121231205761433,0.815166354179382,0.545003831386566,-0.196149066090584,0.876865863800049,0.446303635835648,-0.178659722208977,0.928572714328766,0.365699619054794,-0.0633744895458221,0.879143297672272,0.460879594087601,-0.121231205761433,0.92276269197464,0.355819821357727,-0.147990301251411,0.94012326002121,0.338524758815765,0.0396124944090843,0.928572714328766,0.365699619054794,-0.0633744895458221,0.958514213562012,0.284664303064346,-0.0147190298885107,0.94012326002121,0.338524758815765,0.0396124944090843,0.934121668338776,0.32794463634491,0.140957340598106,\r\n0.904817581176758,0.412029713392258,0.107408694922924,0.838324964046478,0.439643830060959,0.322373121976852,0.837592363357544,0.474692463874817,0.27038112282753,0.834164798259735,0.430531978607178,0.344689965248108,0.904817581176758,0.412029713392258,0.107408694922924,0.934121668338776,0.32794463634491,0.140957340598106,0.905758738517761,0.378719598054886,0.190190553665161,0.871857106685638,0.398960709571838,0.284069299697876,0.837592363357544,0.474692463874817,0.27038112282753,0.905758738517761,0.378719598054886,0.190190553665161,0.595137000083923,0.41699343919754,0.686970353126526,0.562514543533325,0.450300365686417,0.693402349948883,0.728384673595428,0.321291774511337,0.605167090892792,0.376271665096283,0.540265202522278,0.752683937549591,0.389440625905991,0.50956803560257,0.767252385616302,0.430726051330566,0.449857383966446,0.782370269298553,0.562514543533325,0.450300365686417,0.693402349948883,0.376271665096283,0.540265202522278,0.752683937549591,0.54273521900177,0.392560929059982,0.742518842220306,0.498033136129379,0.254175871610641,0.829070270061493,0.389440625905991,0.50956803560257,0.767252385616302,0.513331532478333,0.350724279880524,0.783251583576202,0.900929987430573,0.336892127990723,0.273548394441605,0.91567474603653,0.324151664972305,0.237624287605286,0.838324964046478,0.439643830060959,0.322373121976852,0.91567474603653,0.324151664972305,0.237624287605286,0.961962461471558,0.216487586498261,0.166617229580879,0.949808955192566,0.231740355491638,0.210140973329544,0.949808955192566,0.231740355491638,0.210140973329544,0.9439896941185,0.201101988554001,0.261612921953201,0.916529655456543,0.208892866969109,0.341082096099854,0.879920363426209,0.137218788266182,0.454874783754349,0.839982986450195,0.230000123381615,0.491455376148224,0.916529655456543,0.208892866969109,0.341082096099854,0.839982986450195,0.230000123381615,0.491455376148224,0.791708827018738,0.0968974381685257,0.603164851665497,0.74335241317749,0.22402149438858,0.630270898342133,0.656952798366547,0.222489446401596,0.720354974269867,0.74335241317749,0.22402149438858,0.630270898342133,\r\n0.680261492729187,0.0713370740413666,0.729489624500275,0.613585472106934,0.314357936382294,0.724356114864349,0.656952798366547,0.222489446401596,0.720354974269867,0.579767882823944,0.16561171412468,0.797773003578186,0.579767882823944,0.16561171412468,0.797773003578186,0.544707894325256,0.0871401727199554,0.834086179733276,0.513331532478333,0.350724279880524,0.783251583576202,0.76069849729538,0.424293875694275,0.491235554218292,0.811505258083344,0.318406373262405,0.489975959062576,0.781158328056335,0.359085083007813,0.51073431968689,0.811505258083344,0.318406373262405,0.489975959062576,0.733240783214569,0.394278138875961,0.553987860679626,0.818138480186462,0.239446491003037,0.522795021533966,0.728384673595428,0.321291774511337,0.605167090892792,0.792466461658478,0.219719812273979,0.568963944911957,0.595137000083923,0.41699343919754,0.686970353126526,0.792466461658478,0.219719812273979,0.568963944911957,0.834693431854248,0.152591019868851,0.529152810573578,0.704905807971954,0.329658269882202,0.628039181232452,0.834693431854248,0.152591019868851,0.529152810573578,0.818138480186462,0.239446491003037,0.522795021533966,0.704905807971954,0.329658269882202,0.628039181232452,0.529059767723084,-0.131520450115204,0.838330447673798,0.506924867630005,-0.249088793992996,0.825216233730316,0.447119355201721,-0.160904884338379,0.8798828125,0.558926284313202,0.0564301311969757,0.827295005321503,0.546878159046173,0.0789627507328987,0.833480060100555,0.613578736782074,0.0841930732131004,0.785132110118866,0.613578736782074,0.0841930732131004,0.785132110118866,0.643848478794098,-0.00739919533953071,0.765117108821869,0.633402407169342,-0.0447336845099926,0.772528469562531,0.529059767723084,-0.131520450115204,0.838330447673798,0.455069422721863,-0.0133447917178273,0.89035576581955,0.633402407169342,-0.0447336845099926,0.772528469562531,0.494831115007401,-0.299653351306915,0.8156898021698,0.447119355201721,-0.160904884338379,0.8798828125,0.506924867630005,-0.249088793992996,0.825216233730316,0.587504506111145,-0.308708757162094,0.748022198677063,\r\n0.656537234783173,-0.254281312227249,0.710140645503998,0.563203692436218,-0.386929243803024,0.730128169059753,0.521001756191254,-0.254301369190216,0.814793109893799,0.587504506111145,-0.308708757162094,0.748022198677063,0.525252997875214,-0.375090479850769,0.763816893100739,0.629952549934387,-0.30968302488327,0.712219178676605,0.563203692436218,-0.386929243803024,0.730128169059753,0.656537234783173,-0.254281312227249,0.710140645503998,0.494831115007401,-0.299653351306915,0.8156898021698,0.629952549934387,-0.30968302488327,0.712219178676605,0.605178534984589,-0.188319966197014,0.773494899272919,0.377791464328766,-0.312451928853989,0.871577441692352,0.295921921730042,-0.345336139202118,0.890602648258209,0.353006273508072,-0.232208386063576,0.906347513198853,0.340760380029678,0.303035348653793,0.889972925186157,0.215375408530235,0.329484671354294,0.91926771402359,0.286766856908798,0.202727109193802,0.93630462884903,0.38338178396225,0.141520276665688,0.912683010101318,0.286766856908798,0.202727109193802,0.93630462884903,0.343497455120087,0.00434962986037135,0.939143359661102,0.443913549184799,-0.0184200592339039,0.895880222320557,0.343497455120087,0.00434962986037135,0.939143359661102,0.353006273508072,-0.232208386063576,0.906347513198853,0.215375408530235,0.329484671354294,0.91926771402359,0.340760380029678,0.303035348653793,0.889972925186157,0.29639258980751,0.301033854484558,0.906382858753204,0.213701754808426,0.289475649595261,0.933024823665619,0.29639258980751,0.301033854484558,0.906382858753204,0.434142529964447,0.114361338317394,0.893555581569672,0.327328950166702,-0.318132489919662,0.889745652675629,0.373355597257614,-0.283260464668274,0.883385002613068,0.454742938280106,-0.286853075027466,0.843163132667542,0.454742938280106,-0.286853075027466,0.843163132667542,0.519505560398102,-0.274293810129166,0.809244573116302,0.610464096069336,-0.318234592676163,0.725299954414368,0.614055931568146,-0.304978489875793,0.727958261966705,0.698770463466644,-0.292143076658249,0.652971744537354,0.610464096069336,-0.318234592676163,0.725299954414368,\r\n0.558926284313202,0.0564301311969757,0.827295005321503,0.645747601985931,-0.0964893624186516,0.757429659366608,0.546878159046173,0.0789627507328987,0.833480060100555,0.698770463466644,-0.292143076658249,0.652971744537354,0.645747601985931,-0.0964893624186516,0.757429659366608,0.722467720508575,-0.263571292161942,0.639195203781128,0.373355597257614,-0.283260464668274,0.883385002613068,0.327328950166702,-0.318132489919662,0.889745652675629,0.295921921730042,-0.345336139202118,0.890602648258209,0.533074498176575,0.0933933034539223,0.840897858142853,0.4289391040802,0.147637143731117,0.891187071800232,0.375746756792068,0.263093560934067,0.888592123985291,0.29639258980751,0.301033854484558,0.906382858753204,0.375746756792068,0.263093560934067,0.888592123985291,0.4289391040802,0.147637143731117,0.891187071800232,0.715951383113861,0.14648100733757,0.682610332965851,0.60212117433548,0.0840694308280945,0.793966174125671,0.621812403202057,0.142436400055885,0.77010452747345,0.715951383113861,0.14648100733757,0.682610332965851,0.735018312931061,0.250759124755859,0.62997442483902,0.569828748703003,0.254364967346191,0.781404912471771,0.621812403202057,0.142436400055885,0.77010452747345,0.533074498176575,0.0933933034539223,0.840897858142853,0.445237398147583,0.256726086139679,0.8578200340271,0.569828748703003,0.254364967346191,0.781404912471771,0.735018312931061,0.250759124755859,0.62997442483902,0.648819983005524,0.378381699323654,0.660196721553802,-0.247979134321213,0.745270669460297,0.618932843208313,-0.163174197077751,0.720395922660828,0.67409473657608,-0.09040467441082,0.635527610778809,0.766766965389252,-0.0944690406322479,0.734451591968536,0.672053813934326,-0.163174197077751,0.720395922660828,0.67409473657608,-0.192331284284592,0.745489835739136,0.638164103031158,0.648819983005524,0.378381699323654,0.660196721553802,0.703100800514221,0.326476842164993,0.631713509559631,0.58933812379837,0.473243981599808,0.654767513275146,0.284920960664749,0.350892543792725,0.892017006874084,0.285178124904633,0.226910039782524,0.931227743625641,\r\n0.213418856263161,0.206498295068741,0.954887807369232,0.563359081745148,0.343440890312195,0.751448392868042,0.462035804986954,0.459297358989716,0.758662462234497,0.58933812379837,0.473243981599808,0.654767513275146,0.563359081745148,0.343440890312195,0.751448392868042,0.388480484485626,0.3582563996315,0.848961174488068,0.462035804986954,0.459297358989716,0.758662462234497,0.285178124904633,0.226910039782524,0.931227743625641,0.388480484485626,0.3582563996315,0.848961174488068,0.421561419963837,0.241272628307343,0.874112904071808,0.189864903688431,0.435102641582489,0.880134582519531,0.1905497610569,0.279504716396332,0.941046118736267,0.213556125760078,0.239673748612404,0.94707453250885,0.18491792678833,0.602983415126801,0.776025891304016,0.111989013850689,0.701320171356201,0.703994572162628,0.0145825259387493,0.640904426574707,0.767482042312622,0.189864903688431,0.435102641582489,0.880134582519531,0.273999810218811,0.438565582036972,0.855911314487457,0.18491792678833,0.602983415126801,0.776025891304016,-0.0944690406322479,0.734451591968536,0.672053813934326,0.0166227668523788,0.729115009307861,0.684189200401306,0.0503585785627365,0.701619207859039,0.71077024936676,0.0503585785627365,0.701619207859039,0.71077024936676,0.0166227668523788,0.729115009307861,0.684189200401306,0.111989013850689,0.701320171356201,0.703994572162628,0.213418856263161,0.206498295068741,0.954887807369232,0.213556125760078,0.239673748612404,0.94707453250885,0.1905497610569,0.279504716396332,0.941046118736267,0.133209675550461,0.278239697217941,0.951229631900787,0.0526620373129845,0.386535793542862,0.92076963186264,0.198849081993103,0.386764764785767,0.900484263896942,0.198849081993103,0.386764764785767,0.900484263896942,0.136471122503281,0.432431310415268,0.891279220581055,0.248707339167595,0.410341531038284,0.877362132072449,0.133209675550461,0.278239697217941,0.951229631900787,0.228856697678566,0.225194990634918,0.947054207324982,0.0565464720129967,0.334549605846405,0.940680027008057,0.228856697678566,0.225194990634918,0.947054207324982,0.246319606900215,0.245079651474953,0.937690019607544,\r\n0.0565464720129967,0.334549605846405,0.940680027008057,-0.09040467441082,0.635527610778809,0.766766965389252,0.0225916616618633,0.506260335445404,0.862084627151489,0.193290412425995,0.363535583019257,0.911307036876678,0.0565464720129967,0.334549605846405,0.940680027008057,0.246319606900215,0.245079651474953,0.937690019607544,0.0225916616618633,0.506260335445404,0.862084627151489,0.211656719446182,0.3986676633358,0.892337024211884,0.230764806270599,0.449401766061783,0.863009631633759,0.248707339167595,0.410341531038284,0.877362132072449,0.239923924207687,0.451016366481781,0.859663069248199,0.255386292934418,0.526150107383728,0.81113737821579,0.230764806270599,0.449401766061783,0.863009631633759,0.527967870235443,0.832068860530853,-0.170032829046249,0.598965585231781,0.781837284564972,-0.173120021820068,0.500001609325409,0.855618894100189,-0.133845150470734,0.573376834392548,0.803828060626984,-0.158427968621254,0.598965585231781,0.781837284564972,-0.173120021820068,0.61192524433136,0.772151231765747,-0.171259492635727,0.663908958435059,0.737198770046234,-0.12554968893528,0.61192524433136,0.772151231765747,-0.171259492635727,0.724258780479431,0.663338959217072,-0.188229858875275,0.879143297672272,0.460879594087601,-0.121231205761433,0.876865863800049,0.446303635835648,-0.178659722208977,0.92276269197464,0.355819821357727,-0.147990301251411,0.928572714328766,0.365699619054794,-0.0633744895458221,0.92276269197464,0.355819821357727,-0.147990301251411,0.956210494041443,0.269664824008942,-0.113764353096485,0.956210494041443,0.269664824008942,-0.113764353096485,0.958514213562012,0.284664303064346,-0.0147190298885107,0.928572714328766,0.365699619054794,-0.0633744895458221,0.94012326002121,0.338524758815765,0.0396124944090843,0.958514213562012,0.284664303064346,-0.0147190298885107,0.956812798976898,0.283016890287399,0.0664119049906731,0.94012326002121,0.338524758815765,0.0396124944090843,0.956812798976898,0.283016890287399,0.0664119049906731,0.934121668338776,0.32794463634491,0.140957340598106,0.834164798259735,0.430531978607178,0.344689965248108,\r\n0.837592363357544,0.474692463874817,0.27038112282753,0.871857106685638,0.398960709571838,0.284069299697876,0.838324964046478,0.439643830060959,0.322373121976852,0.834164798259735,0.430531978607178,0.344689965248108,0.862197816371918,0.386800467967987,0.327108800411224,0.934121668338776,0.32794463634491,0.140957340598106,0.930416464805603,0.319522589445114,0.179528206586838,0.905758738517761,0.378719598054886,0.190190553665161,0.905758738517761,0.378719598054886,0.190190553665161,0.900016069412231,0.362067937850952,0.242647469043732,0.871857106685638,0.398960709571838,0.284069299697876,0.783369898796082,0.239176794886589,0.573694944381714,0.728384673595428,0.321291774511337,0.605167090892792,0.562514543533325,0.450300365686417,0.693402349948883,0.498033136129379,0.254175871610641,0.829070270061493,0.430726051330566,0.449857383966446,0.782370269298553,0.389440625905991,0.50956803560257,0.767252385616302,0.54273521900177,0.392560929059982,0.742518842220306,0.376271665096283,0.540265202522278,0.752683937549591,0.430726051330566,0.449857383966446,0.782370269298553,0.680406987667084,0.315312743186951,0.661531567573547,0.562514543533325,0.450300365686417,0.693402349948883,0.54273521900177,0.392560929059982,0.742518842220306,0.498033136129379,0.254175871610641,0.829070270061493,0.513331532478333,0.350724279880524,0.783251583576202,0.544707894325256,0.0871401727199554,0.834086179733276,0.900929987430573,0.336892127990723,0.273548394441605,0.961962461471558,0.216487586498261,0.166617229580879,0.91567474603653,0.324151664972305,0.237624287605286,0.838324964046478,0.439643830060959,0.322373121976852,0.862197816371918,0.386800467967987,0.327108800411224,0.900929987430573,0.336892127990723,0.273548394441605,0.949808955192566,0.231740355491638,0.210140973329544,0.961962461471558,0.216487586498261,0.166617229580879,0.977689743041992,0.126690939068794,0.167547285556793,0.949808955192566,0.231740355491638,0.210140973329544,0.977689743041992,0.126690939068794,0.167547285556793,0.9439896941185,0.201101988554001,0.261612921953201,0.936229109764099,0.182692497968674,0.300163894891739,\r\n0.916529655456543,0.208892866969109,0.341082096099854,0.9439896941185,0.201101988554001,0.261612921953201,0.839982986450195,0.230000123381615,0.491455376148224,0.879920363426209,0.137218788266182,0.454874783754349,0.791708827018738,0.0968974381685257,0.603164851665497,0.879920363426209,0.137218788266182,0.454874783754349,0.916529655456543,0.208892866969109,0.341082096099854,0.936229109764099,0.182692497968674,0.300163894891739,0.791708827018738,0.0968974381685257,0.603164851665497,0.680261492729187,0.0713370740413666,0.729489624500275,0.74335241317749,0.22402149438858,0.630270898342133,0.579767882823944,0.16561171412468,0.797773003578186,0.656952798366547,0.222489446401596,0.720354974269867,0.680261492729187,0.0713370740413666,0.729489624500275,0.579767882823944,0.16561171412468,0.797773003578186,0.671932578086853,-0.0686439126729965,0.737424194812775,0.544707894325256,0.0871401727199554,0.834086179733276,0.811505258083344,0.318406373262405,0.489975959062576,0.816799759864807,0.253669530153275,0.518159985542297,0.781158328056335,0.359085083007813,0.51073431968689,0.818138480186462,0.239446491003037,0.522795021533966,0.848691940307617,0.176388248801231,0.498607099056244,0.811505258083344,0.318406373262405,0.489975959062576,0.728384673595428,0.321291774511337,0.605167090892792,0.853951275348663,0.145277664065361,0.499661386013031,0.792466461658478,0.219719812273979,0.568963944911957,0.881253063678741,0.0385332815349102,0.471071183681488,0.834693431854248,0.152591019868851,0.529152810573578,0.792466461658478,0.219719812273979,0.568963944911957,0.818138480186462,0.239446491003037,0.522795021533966,0.834693431854248,0.152591019868851,0.529152810573578,0.872018873691559,0.0898233205080032,0.481159746646881,0.447119355201721,-0.160904884338379,0.8798828125,0.455069422721863,-0.0133447917178273,0.89035576581955,0.529059767723084,-0.131520450115204,0.838330447673798,0.633402407169342,-0.0447336845099926,0.772528469562531,0.558926284313202,0.0564301311969757,0.827295005321503,0.613578736782074,0.0841930732131004,0.785132110118866,\r\n0.633402407169342,-0.0447336845099926,0.772528469562531,0.455069422721863,-0.0133447917178273,0.89035576581955,0.558926284313202,0.0564301311969757,0.827295005321503,0.447119355201721,-0.160904884338379,0.8798828125,0.494831115007401,-0.299653351306915,0.8156898021698,0.605178534984589,-0.188319966197014,0.773494899272919,0.587504506111145,-0.308708757162094,0.748022198677063,0.521001756191254,-0.254301369190216,0.814793109893799,0.656537234783173,-0.254281312227249,0.710140645503998,0.629952549934387,-0.30968302488327,0.712219178676605,0.656537234783173,-0.254281312227249,0.710140645503998,0.605178534984589,-0.188319966197014,0.773494899272919,0.327328950166702,-0.318132489919662,0.889745652675629,0.353006273508072,-0.232208386063576,0.906347513198853,0.295921921730042,-0.345336139202118,0.890602648258209,0.38338178396225,0.141520276665688,0.912683010101318,0.340760380029678,0.303035348653793,0.889972925186157,0.286766856908798,0.202727109193802,0.93630462884903,0.343497455120087,0.00434962986037135,0.939143359661102,0.443913549184799,-0.0184200592339039,0.895880222320557,0.38338178396225,0.141520276665688,0.912683010101318,0.353006273508072,-0.232208386063576,0.906347513198853,0.480099201202393,-0.150344207882881,0.864234507083893,0.443913549184799,-0.0184200592339039,0.895880222320557,0.340760380029678,0.303035348653793,0.889972925186157,0.301966816186905,0.361608654260635,0.882074296474457,0.29639258980751,0.301033854484558,0.906382858753204,0.327328950166702,-0.318132489919662,0.889745652675629,0.454742938280106,-0.286853075027466,0.843163132667542,0.466021150350571,-0.203510850667953,0.861050248146057,0.599407494068146,-0.212936148047447,0.771601378917694,0.454742938280106,-0.286853075027466,0.843163132667542,0.610464096069336,-0.318234592676163,0.725299954414368,0.743739306926727,-0.312198042869568,0.591087162494659,0.610464096069336,-0.318234592676163,0.725299954414368,0.698770463466644,-0.292143076658249,0.652971744537354,0.566213428974152,0.0105051090940833,0.824191629886627,0.645747601985931,-0.0964893624186516,0.757429659366608,\r\n0.558926284313202,0.0564301311969757,0.827295005321503,0.645747601985931,-0.0964893624186516,0.757429659366608,0.663912653923035,-0.165037974715233,0.729371190071106,0.722467720508575,-0.263571292161942,0.639195203781128,0.698770463466644,-0.292143076658249,0.652971744537354,0.722467720508575,-0.263571292161942,0.639195203781128,0.743739306926727,-0.312198042869568,0.591087162494659,0.375746756792068,0.263093560934067,0.888592123985291,0.445237398147583,0.256726086139679,0.8578200340271,0.533074498176575,0.0933933034539223,0.840897858142853,0.29639258980751,0.301033854484558,0.906382858753204,0.301966816186905,0.361608654260635,0.882074296474457,0.375746756792068,0.263093560934067,0.888592123985291,0.715951383113861,0.14648100733757,0.682610332965851,0.621812403202057,0.142436400055885,0.77010452747345,0.750370621681213,0.175248026847839,0.637363314628601,0.715951383113861,0.14648100733757,0.682610332965851,0.750370621681213,0.175248026847839,0.637363314628601,0.735018312931061,0.250759124755859,0.62997442483902,0.386109590530396,0.313767522573471,0.867449820041656,0.621812403202057,0.142436400055885,0.77010452747345,0.445237398147583,0.256726086139679,0.8578200340271,0.735018312931061,0.250759124755859,0.62997442483902,0.69338995218277,0.27346658706665,0.666653096675873,0.648819983005524,0.378381699323654,0.660196721553802,-0.09040467441082,0.635527610778809,0.766766965389252,-0.163174197077751,0.720395922660828,0.67409473657608,0.0225916616618633,0.506260335445404,0.862084627151489,-0.0944690406322479,0.734451591968536,0.672053813934326,-0.12395802885294,0.588408887386322,0.799005150794983,-0.163174197077751,0.720395922660828,0.67409473657608,0.69338995218277,0.27346658706665,0.666653096675873,0.703100800514221,0.326476842164993,0.631713509559631,0.648819983005524,0.378381699323654,0.660196721553802,0.563359081745148,0.343440890312195,0.751448392868042,0.58933812379837,0.473243981599808,0.654767513275146,0.703100800514221,0.326476842164993,0.631713509559631,0.213418856263161,0.206498295068741,0.954887807369232,0.285178124904633,0.226910039782524,0.931227743625641,\r\n0.213556125760078,0.239673748612404,0.94707453250885,0.563359081745148,0.343440890312195,0.751448392868042,0.421561419963837,0.241272628307343,0.874112904071808,0.388480484485626,0.3582563996315,0.848961174488068,0.28433957695961,0.171001464128494,0.943350076675415,0.285178124904633,0.226910039782524,0.931227743625641,0.421561419963837,0.241272628307343,0.874112904071808,0.189864903688431,0.435102641582489,0.880134582519531,0.213556125760078,0.239673748612404,0.94707453250885,0.273999810218811,0.438565582036972,0.855911314487457,0.154518842697144,0.675409555435181,0.721072614192963,0.111989013850689,0.701320171356201,0.703994572162628,0.18491792678833,0.602983415126801,0.776025891304016,0.18491792678833,0.602983415126801,0.776025891304016,0.273999810218811,0.438565582036972,0.855911314487457,0.294129282236099,0.578670382499695,0.760676264762878,0.0503585785627365,0.701619207859039,0.71077024936676,-0.046486459672451,0.616934776306152,0.785640001296997,-0.0944690406322479,0.734451591968536,0.672053813934326,0.0503585785627365,0.701619207859039,0.71077024936676,0.111989013850689,0.701320171356201,0.703994572162628,0.154518842697144,0.675409555435181,0.721072614192963,0.0565464720129967,0.334549605846405,0.940680027008057,0.0526620373129845,0.386535793542862,0.92076963186264,0.133209675550461,0.278239697217941,0.951229631900787,0.0526620373129845,0.386535793542862,0.92076963186264,0.136471122503281,0.432431310415268,0.891279220581055,0.198849081993103,0.386764764785767,0.900484263896942,0.211656719446182,0.3986676633358,0.892337024211884,0.248707339167595,0.410341531038284,0.877362132072449,0.136471122503281,0.432431310415268,0.891279220581055,-0.12395802885294,0.588408887386322,0.799005150794983,0.0565464720129967,0.334549605846405,0.940680027008057,0.0225916616618633,0.506260335445404,0.862084627151489,0.239923924207687,0.451016366481781,0.859663069248199,0.230764806270599,0.449401766061783,0.863009631633759,0.211656719446182,0.3986676633358,0.892337024211884,0.169707015156746,0.445357173681259,0.879122495651245,0.255386292934418,0.526150107383728,0.81113737821579,\r\n0.239923924207687,0.451016366481781,0.859663069248199,0.598965585231781,0.781837284564972,-0.173120021820068,0.527967870235443,0.832068860530853,-0.170032829046249,0.724258780479431,0.663338959217072,-0.188229858875275,0.61192524433136,0.772151231765747,-0.171259492635727,0.598965585231781,0.781837284564972,-0.173120021820068,0.724258780479431,0.663338959217072,-0.188229858875275,0.909617006778717,0.357014417648315,-0.212455853819847,0.92276269197464,0.355819821357727,-0.147990301251411,0.876865863800049,0.446303635835648,-0.178659722208977,0.956210494041443,0.269664824008942,-0.113764353096485,0.92276269197464,0.355819821357727,-0.147990301251411,0.945940136909485,0.265357404947281,-0.186500906944275,0.9776611328125,0.208885103464127,0.0233585294336081,0.958514213562012,0.284664303064346,-0.0147190298885107,0.956210494041443,0.269664824008942,-0.113764353096485,0.956812798976898,0.283016890287399,0.0664119049906731,0.958514213562012,0.284664303064346,-0.0147190298885107,0.9776611328125,0.208885103464127,0.0233585294336081,0.956812798976898,0.283016890287399,0.0664119049906731,0.951216042041779,0.268587082624435,0.151818558573723,0.934121668338776,0.32794463634491,0.140957340598106,0.834164798259735,0.430531978607178,0.344689965248108,0.871857106685638,0.398960709571838,0.284069299697876,0.868748426437378,0.36997053027153,0.329238295555115,0.862197816371918,0.386800467967987,0.327108800411224,0.834164798259735,0.430531978607178,0.344689965248108,0.885437726974487,0.323828220367432,0.33336940407753,0.934121668338776,0.32794463634491,0.140957340598106,0.951216042041779,0.268587082624435,0.151818558573723,0.930416464805603,0.319522589445114,0.179528206586838,0.905758738517761,0.378719598054886,0.190190553665161,0.930416464805603,0.319522589445114,0.179528206586838,0.900016069412231,0.362067937850952,0.242647469043732,0.871857106685638,0.398960709571838,0.284069299697876,0.900016069412231,0.362067937850952,0.242647469043732,0.868748426437378,0.36997053027153,0.329238295555115,0.783369898796082,0.239176794886589,0.573694944381714,\r\n0.853951275348663,0.145277664065361,0.499661386013031,0.728384673595428,0.321291774511337,0.605167090892792,0.783369898796082,0.239176794886589,0.573694944381714,0.562514543533325,0.450300365686417,0.693402349948883,0.680406987667084,0.315312743186951,0.661531567573547,0.498033136129379,0.254175871610641,0.829070270061493,0.616758525371552,0.138308137655258,0.77490621805191,0.430726051330566,0.449857383966446,0.782370269298553,0.54273521900177,0.392560929059982,0.742518842220306,0.430726051330566,0.449857383966446,0.782370269298553,0.616758525371552,0.138308137655258,0.77490621805191,0.680406987667084,0.315312743186951,0.661531567573547,0.54273521900177,0.392560929059982,0.742518842220306,0.767368018627167,0.0612308159470558,0.638276636600494,0.544707894325256,0.0871401727199554,0.834086179733276,0.684358239173889,-0.134467586874962,0.716639459133148,0.498033136129379,0.254175871610641,0.829070270061493,0.952604472637177,0.222962737083435,0.20695948600769,0.961962461471558,0.216487586498261,0.166617229580879,0.900929987430573,0.336892127990723,0.273548394441605,0.900929987430573,0.336892127990723,0.273548394441605,0.862197816371918,0.386800467967987,0.327108800411224,0.952604472637177,0.222962737083435,0.20695948600769,0.952604472637177,0.222962737083435,0.20695948600769,0.977689743041992,0.126690939068794,0.167547285556793,0.961962461471558,0.216487586498261,0.166617229580879,0.977689743041992,0.126690939068794,0.167547285556793,0.946936786174774,0.177137076854706,0.268203347921371,0.9439896941185,0.201101988554001,0.261612921953201,0.9439896941185,0.201101988554001,0.261612921953201,0.946936786174774,0.177137076854706,0.268203347921371,0.936229109764099,0.182692497968674,0.300163894891739,0.844210028648376,-0.00667332904413342,0.53597092628479,0.791708827018738,0.0968974381685257,0.603164851665497,0.879920363426209,0.137218788266182,0.454874783754349,0.879920363426209,0.137218788266182,0.454874783754349,0.936229109764099,0.182692497968674,0.300163894891739,0.942816972732544,0.113863430917263,0.313258826732636,0.791708827018738,0.0968974381685257,0.603164851665497,\r\n0.752262353897095,-0.0984573289752007,0.651465535163879,0.680261492729187,0.0713370740413666,0.729489624500275,0.671932578086853,-0.0686439126729965,0.737424194812775,0.579767882823944,0.16561171412468,0.797773003578186,0.680261492729187,0.0713370740413666,0.729489624500275,0.671932578086853,-0.0686439126729965,0.737424194812775,0.684358239173889,-0.134467586874962,0.716639459133148,0.544707894325256,0.0871401727199554,0.834086179733276,0.848691940307617,0.176388248801231,0.498607099056244,0.816799759864807,0.253669530153275,0.518159985542297,0.811505258083344,0.318406373262405,0.489975959062576,0.848691940307617,0.176388248801231,0.498607099056244,0.818138480186462,0.239446491003037,0.522795021533966,0.872018873691559,0.0898233205080032,0.481159746646881,0.881253063678741,0.0385332815349102,0.471071183681488,0.792466461658478,0.219719812273979,0.568963944911957,0.853951275348663,0.145277664065361,0.499661386013031,0.834693431854248,0.152591019868851,0.529152810573578,0.881253063678741,0.0385332815349102,0.471071183681488,0.872018873691559,0.0898233205080032,0.481159746646881,0.447119355201721,-0.160904884338379,0.8798828125,0.469978243112564,-0.0741681903600693,0.879556357860565,0.455069422721863,-0.0133447917178273,0.89035576581955,0.455069422721863,-0.0133447917178273,0.89035576581955,0.457836419343948,0.0725595280528069,0.886070430278778,0.558926284313202,0.0564301311969757,0.827295005321503,0.469978243112564,-0.0741681903600693,0.879556357860565,0.447119355201721,-0.160904884338379,0.8798828125,0.605178534984589,-0.188319966197014,0.773494899272919,0.607929229736328,-0.106905840337276,0.786761105060577,0.656537234783173,-0.254281312227249,0.710140645503998,0.521001756191254,-0.254301369190216,0.814793109893799,0.605178534984589,-0.188319966197014,0.773494899272919,0.656537234783173,-0.254281312227249,0.710140645503998,0.678542613983154,-0.131573542952538,0.722681224346161,0.327328950166702,-0.318132489919662,0.889745652675629,0.480099201202393,-0.150344207882881,0.864234507083893,0.353006273508072,-0.232208386063576,0.906347513198853,\r\n0.38338178396225,0.141520276665688,0.912683010101318,0.500637531280518,0.1180210262537,0.857573866844177,0.340760380029678,0.303035348653793,0.889972925186157,0.443913549184799,-0.0184200592339039,0.895880222320557,0.500637531280518,0.1180210262537,0.857573866844177,0.38338178396225,0.141520276665688,0.912683010101318,0.443913549184799,-0.0184200592339039,0.895880222320557,0.480099201202393,-0.150344207882881,0.864234507083893,0.568601846694946,-0.0268887002021074,0.822173178195953,0.334557771682739,0.338022798299789,0.879665613174438,0.301966816186905,0.361608654260635,0.882074296474457,0.340760380029678,0.303035348653793,0.889972925186157,0.454742938280106,-0.286853075027466,0.843163132667542,0.57238632440567,-0.157256618142128,0.804763436317444,0.466021150350571,-0.203510850667953,0.861050248146057,0.480099201202393,-0.150344207882881,0.864234507083893,0.327328950166702,-0.318132489919662,0.889745652675629,0.466021150350571,-0.203510850667953,0.861050248146057,0.599407494068146,-0.212936148047447,0.771601378917694,0.57238632440567,-0.157256618142128,0.804763436317444,0.454742938280106,-0.286853075027466,0.843163132667542,0.599407494068146,-0.212936148047447,0.771601378917694,0.610464096069336,-0.318234592676163,0.725299954414368,0.672914028167725,-0.252209335565567,0.695397019386292,0.743739306926727,-0.312198042869568,0.591087162494659,0.672914028167725,-0.252209335565567,0.695397019386292,0.610464096069336,-0.318234592676163,0.725299954414368,0.645747601985931,-0.0964893624186516,0.757429659366608,0.566213428974152,0.0105051090940833,0.824191629886627,0.663912653923035,-0.165037974715233,0.729371190071106,0.566213428974152,0.0105051090940833,0.824191629886627,0.558926284313202,0.0564301311969757,0.827295005321503,0.457836419343948,0.0725595280528069,0.886070430278778,0.722467720508575,-0.263571292161942,0.639195203781128,0.663912653923035,-0.165037974715233,0.729371190071106,0.746906876564026,-0.285151988267899,0.60068154335022,0.722467720508575,-0.263571292161942,0.639195203781128,0.746906876564026,-0.285151988267899,0.60068154335022,\r\n0.743739306926727,-0.312198042869568,0.591087162494659,0.375746756792068,0.263093560934067,0.888592123985291,0.28572940826416,0.354646921157837,0.890271961688995,0.445237398147583,0.256726086139679,0.8578200340271,0.375746756792068,0.263093560934067,0.888592123985291,0.301966816186905,0.361608654260635,0.882074296474457,0.28572940826416,0.354646921157837,0.890271961688995,0.541498363018036,0.307949185371399,0.782270193099976,0.750370621681213,0.175248026847839,0.637363314628601,0.621812403202057,0.142436400055885,0.77010452747345,0.735018312931061,0.250759124755859,0.62997442483902,0.750370621681213,0.175248026847839,0.637363314628601,0.69338995218277,0.27346658706665,0.666653096675873,0.541498363018036,0.307949185371399,0.782270193099976,0.621812403202057,0.142436400055885,0.77010452747345,0.386109590530396,0.313767522573471,0.867449820041656,0.28572940826416,0.354646921157837,0.890271961688995,0.386109590530396,0.313767522573471,0.867449820041656,0.445237398147583,0.256726086139679,0.8578200340271,-0.12395802885294,0.588408887386322,0.799005150794983,0.0225916616618633,0.506260335445404,0.862084627151489,-0.163174197077751,0.720395922660828,0.67409473657608,-0.046486459672451,0.616934776306152,0.785640001296997,-0.12395802885294,0.588408887386322,0.799005150794983,-0.0944690406322479,0.734451591968536,0.672053813934326,0.565792977809906,0.220328107476234,0.794565081596375,0.703100800514221,0.326476842164993,0.631713509559631,0.69338995218277,0.27346658706665,0.666653096675873,0.565792977809906,0.220328107476234,0.794565081596375,0.563359081745148,0.343440890312195,0.751448392868042,0.703100800514221,0.326476842164993,0.631713509559631,0.285178124904633,0.226910039782524,0.931227743625641,0.164501711726189,0.165479183197021,0.972396910190582,0.213556125760078,0.239673748612404,0.94707453250885,0.565792977809906,0.220328107476234,0.794565081596375,0.421561419963837,0.241272628307343,0.874112904071808,0.563359081745148,0.343440890312195,0.751448392868042,0.28433957695961,0.171001464128494,0.943350076675415,0.164501711726189,0.165479183197021,0.972396910190582,\r\n0.285178124904633,0.226910039782524,0.931227743625641,0.565792977809906,0.220328107476234,0.794565081596375,0.28433957695961,0.171001464128494,0.943350076675415,0.421561419963837,0.241272628307343,0.874112904071808,0.236594215035439,0.299412578344345,0.924324154853821,0.273999810218811,0.438565582036972,0.855911314487457,0.213556125760078,0.239673748612404,0.94707453250885,0.18491792678833,0.602983415126801,0.776025891304016,0.294129282236099,0.578670382499695,0.760676264762878,0.154518842697144,0.675409555435181,0.721072614192963,0.273999810218811,0.438565582036972,0.855911314487457,0.360410898923874,0.505788266658783,0.783761501312256,0.294129282236099,0.578670382499695,0.760676264762878,0.0503585785627365,0.701619207859039,0.71077024936676,0.144298896193504,0.607931196689606,0.780767142772675,-0.046486459672451,0.616934776306152,0.785640001296997,0.0503585785627365,0.701619207859039,0.71077024936676,0.154518842697144,0.675409555435181,0.721072614192963,0.144221842288971,0.679853618144989,0.719026386737823,0.0565464720129967,0.334549605846405,0.940680027008057,-0.0576219297945499,0.451233416795731,0.890543699264526,0.0526620373129845,0.386535793542862,0.92076963186264,0.058062955737114,0.440546184778214,0.895850241184235,0.136471122503281,0.432431310415268,0.891279220581055,0.0526620373129845,0.386535793542862,0.92076963186264,0.136471122503281,0.432431310415268,0.891279220581055,0.169707015156746,0.445357173681259,0.879122495651245,0.211656719446182,0.3986676633358,0.892337024211884,0.0565464720129967,0.334549605846405,0.940680027008057,-0.12395802885294,0.588408887386322,0.799005150794983,-0.0576219297945499,0.451233416795731,0.890543699264526,0.239923924207687,0.451016366481781,0.859663069248199,0.211656719446182,0.3986676633358,0.892337024211884,0.169707015156746,0.445357173681259,0.879122495651245,0.169707015156746,0.445357173681259,0.879122495651245,0.27244821190834,0.548548817634583,0.790484666824341,0.255386292934418,0.526150107383728,0.81113737821579,0.909617006778717,0.357014417648315,-0.212455853819847,\r\n0.945940136909485,0.265357404947281,-0.186500906944275,0.92276269197464,0.355819821357727,-0.147990301251411,0.945940136909485,0.265357404947281,-0.186500906944275,0.974407494068146,0.187283962965012,-0.124316610395908,0.956210494041443,0.269664824008942,-0.113764353096485,0.956210494041443,0.269664824008942,-0.113764353096485,0.974407494068146,0.187283962965012,-0.124316610395908,0.9776611328125,0.208885103464127,0.0233585294336081,0.956812798976898,0.283016890287399,0.0664119049906731,0.9776611328125,0.208885103464127,0.0233585294336081,0.951216042041779,0.268587082624435,0.151818558573723,0.834164798259735,0.430531978607178,0.344689965248108,0.868748426437378,0.36997053027153,0.329238295555115,0.885437726974487,0.323828220367432,0.33336940407753,0.885437726974487,0.323828220367432,0.33336940407753,0.952604472637177,0.222962737083435,0.20695948600769,0.862197816371918,0.386800467967987,0.327108800411224,0.951216042041779,0.268587082624435,0.151818558573723,0.930464804172516,0.293443977832794,0.219375893473625,0.930416464805603,0.319522589445114,0.179528206586838,0.930464804172516,0.293443977832794,0.219375893473625,0.900016069412231,0.362067937850952,0.242647469043732,0.930416464805603,0.319522589445114,0.179528206586838,0.898322880268097,0.347351878881454,0.269002944231033,0.868748426437378,0.36997053027153,0.329238295555115,0.900016069412231,0.362067937850952,0.242647469043732,0.783369898796082,0.239176794886589,0.573694944381714,0.874637484550476,-0.00843804981559515,0.484703987836838,0.853951275348663,0.145277664065361,0.499661386013031,0.783369898796082,0.239176794886589,0.573694944381714,0.680406987667084,0.315312743186951,0.661531567573547,0.767368018627167,0.0612308159470558,0.638276636600494,0.498033136129379,0.254175871610641,0.829070270061493,0.684358239173889,-0.134467586874962,0.716639459133148,0.616758525371552,0.138308137655258,0.77490621805191,0.616758525371552,0.138308137655258,0.77490621805191,0.767368018627167,0.0612308159470558,0.638276636600494,0.54273521900177,0.392560929059982,0.742518842220306,\r\n0.977689743041992,0.126690939068794,0.167547285556793,0.952604472637177,0.222962737083435,0.20695948600769,0.986505746841431,0.0648204460740089,0.150347605347633,0.946936786174774,0.177137076854706,0.268203347921371,0.977689743041992,0.126690939068794,0.167547285556793,0.965864896774292,0.0285297445952892,0.257470279932022,0.946936786174774,0.177137076854706,0.268203347921371,0.962467133998871,0.0860324651002884,0.257401198148727,0.936229109764099,0.182692497968674,0.300163894891739,0.844210028648376,-0.00667332904413342,0.53597092628479,0.752262353897095,-0.0984573289752007,0.651465535163879,0.791708827018738,0.0968974381685257,0.603164851665497,0.902707815170288,0.0349471680819988,0.428832352161407,0.844210028648376,-0.00667332904413342,0.53597092628479,0.879920363426209,0.137218788266182,0.454874783754349,0.962467133998871,0.0860324651002884,0.257401198148727,0.942816972732544,0.113863430917263,0.313258826732636,0.936229109764099,0.182692497968674,0.300163894891739,0.879920363426209,0.137218788266182,0.454874783754349,0.942816972732544,0.113863430917263,0.313258826732636,0.902707815170288,0.0349471680819988,0.428832352161407,0.752262353897095,-0.0984573289752007,0.651465535163879,0.641130983829498,-0.0847693234682083,0.762735247612,0.680261492729187,0.0713370740413666,0.729489624500275,0.671932578086853,-0.0686439126729965,0.737424194812775,0.680261492729187,0.0713370740413666,0.729489624500275,0.641130983829498,-0.0847693234682083,0.762735247612,0.671932578086853,-0.0686439126729965,0.737424194812775,0.769633650779724,-0.236891016364098,0.592913627624512,0.684358239173889,-0.134467586874962,0.716639459133148,0.816799759864807,0.253669530153275,0.518159985542297,0.848691940307617,0.176388248801231,0.498607099056244,0.802916944026947,0.174946323037148,0.569840312004089,0.82113641500473,0.119052171707153,0.558176755905151,0.848691940307617,0.176388248801231,0.498607099056244,0.872018873691559,0.0898233205080032,0.481159746646881,0.874637484550476,-0.00843804981559515,0.484703987836838,0.881253063678741,0.0385332815349102,0.471071183681488,\r\n0.853951275348663,0.145277664065361,0.499661386013031,0.872018873691559,0.0898233205080032,0.481159746646881,0.881253063678741,0.0385332815349102,0.471071183681488,0.858859598636627,0.0479472056031227,0.509961843490601,0.471994400024414,0.033768568187952,0.880954504013062,0.455069422721863,-0.0133447917178273,0.89035576581955,0.469978243112564,-0.0741681903600693,0.879556357860565,0.455069422721863,-0.0133447917178273,0.89035576581955,0.471994400024414,0.033768568187952,0.880954504013062,0.457836419343948,0.0725595280528069,0.886070430278778,0.605178534984589,-0.188319966197014,0.773494899272919,0.580881118774414,-0.0647295638918877,0.811410546302795,0.469978243112564,-0.0741681903600693,0.879556357860565,0.607929229736328,-0.106905840337276,0.786761105060577,0.678542613983154,-0.131573542952538,0.722681224346161,0.656537234783173,-0.254281312227249,0.710140645503998,0.469198793172836,-0.169504687190056,0.866672098636627,0.607929229736328,-0.106905840337276,0.786761105060577,0.521001756191254,-0.254301369190216,0.814793109893799,0.605178534984589,-0.188319966197014,0.773494899272919,0.678542613983154,-0.131573542952538,0.722681224346161,0.580881118774414,-0.0647295638918877,0.811410546302795,0.459340006113052,0.21316422522068,0.862303733825684,0.340760380029678,0.303035348653793,0.889972925186157,0.500637531280518,0.1180210262537,0.857573866844177,0.443913549184799,-0.0184200592339039,0.895880222320557,0.568601846694946,-0.0268887002021074,0.822173178195953,0.500637531280518,0.1180210262537,0.857573866844177,0.582146525382996,-0.0874927863478661,0.808362722396851,0.568601846694946,-0.0268887002021074,0.822173178195953,0.480099201202393,-0.150344207882881,0.864234507083893,0.28572940826416,0.354646921157837,0.890271961688995,0.301966816186905,0.361608654260635,0.882074296474457,0.334557771682739,0.338022798299789,0.879665613174438,0.334557771682739,0.338022798299789,0.879665613174438,0.340760380029678,0.303035348653793,0.889972925186157,0.459340006113052,0.21316422522068,0.862303733825684,0.582146525382996,-0.0874927863478661,0.808362722396851,\r\n0.466021150350571,-0.203510850667953,0.861050248146057,0.57238632440567,-0.157256618142128,0.804763436317444,0.582146525382996,-0.0874927863478661,0.808362722396851,0.480099201202393,-0.150344207882881,0.864234507083893,0.466021150350571,-0.203510850667953,0.861050248146057,0.599407494068146,-0.212936148047447,0.771601378917694,0.60610020160675,-0.130868077278137,0.784548223018646,0.57238632440567,-0.157256618142128,0.804763436317444,0.599407494068146,-0.212936148047447,0.771601378917694,0.672914028167725,-0.252209335565567,0.695397019386292,0.596776723861694,-0.191225692629814,0.779288232326508,0.731092631816864,-0.259990870952606,0.63079959154129,0.672914028167725,-0.252209335565567,0.695397019386292,0.743739306926727,-0.312198042869568,0.591087162494659,0.566213428974152,0.0105051090940833,0.824191629886627,0.544406592845917,-0.0362543947994709,0.838037550449371,0.663912653923035,-0.165037974715233,0.729371190071106,0.566213428974152,0.0105051090940833,0.824191629886627,0.457836419343948,0.0725595280528069,0.886070430278778,0.544406592845917,-0.0362543947994709,0.838037550449371,0.663912653923035,-0.165037974715233,0.729371190071106,0.690032243728638,-0.253109127283096,0.678078889846802,0.746906876564026,-0.285151988267899,0.60068154335022,0.746906876564026,-0.285151988267899,0.60068154335022,0.769096314907074,-0.2781782746315,0.575419425964355,0.743739306926727,-0.312198042869568,0.591087162494659,0.541498363018036,0.307949185371399,0.782270193099976,0.69338995218277,0.27346658706665,0.666653096675873,0.750370621681213,0.175248026847839,0.637363314628601,0.541498363018036,0.307949185371399,0.782270193099976,0.386109590530396,0.313767522573471,0.867449820041656,0.181490451097488,0.370489358901978,0.910932898521423,0.28572940826416,0.354646921157837,0.890271961688995,0.181490451097488,0.370489358901978,0.910932898521423,0.386109590530396,0.313767522573471,0.867449820041656,-0.0576219297945499,0.451233416795731,0.890543699264526,-0.12395802885294,0.588408887386322,0.799005150794983,-0.046486459672451,0.616934776306152,0.785640001296997,\r\n0.69338995218277,0.27346658706665,0.666653096675873,0.329360246658325,0.219844251871109,0.918253898620605,0.565792977809906,0.220328107476234,0.794565081596375,0.213556125760078,0.239673748612404,0.94707453250885,0.164501711726189,0.165479183197021,0.972396910190582,0.117857046425343,0.193815857172012,0.97393274307251,0.28433957695961,0.171001464128494,0.943350076675415,0.0379968546330929,0.171778365969658,0.984402418136597,0.164501711726189,0.165479183197021,0.972396910190582,0.28433957695961,0.171001464128494,0.943350076675415,0.565792977809906,0.220328107476234,0.794565081596375,0.329360246658325,0.219844251871109,0.918253898620605,0.273999810218811,0.438565582036972,0.855911314487457,0.236594215035439,0.299412578344345,0.924324154853821,0.337111949920654,0.417125284671783,0.84401535987854,0.236594215035439,0.299412578344345,0.924324154853821,0.213556125760078,0.239673748612404,0.94707453250885,0.117857046425343,0.193815857172012,0.97393274307251,0.154518842697144,0.675409555435181,0.721072614192963,0.294129282236099,0.578670382499695,0.760676264762878,0.225230872631073,0.662219226360321,0.714658379554749,0.273999810218811,0.438565582036972,0.855911314487457,0.337111949920654,0.417125284671783,0.84401535987854,0.360410898923874,0.505788266658783,0.783761501312256,0.432465493679047,0.521998167037964,0.735181152820587,0.294129282236099,0.578670382499695,0.760676264762878,0.360410898923874,0.505788266658783,0.783761501312256,0.144298896193504,0.607931196689606,0.780767142772675,0.0503585785627365,0.701619207859039,0.71077024936676,0.144221842288971,0.679853618144989,0.719026386737823,0.144298896193504,0.607931196689606,0.780767142772675,0.0976498126983643,0.48733714222908,0.867736518383026,-0.046486459672451,0.616934776306152,0.785640001296997,0.225230872631073,0.662219226360321,0.714658379554749,0.144221842288971,0.679853618144989,0.719026386737823,0.154518842697144,0.675409555435181,0.721072614192963,0.058062955737114,0.440546184778214,0.895850241184235,0.0526620373129845,0.386535793542862,0.92076963186264,-0.0576219297945499,0.451233416795731,0.890543699264526,\r\n0.18672102689743,0.452683329582214,0.87190192937851,0.136471122503281,0.432431310415268,0.891279220581055,0.058062955737114,0.440546184778214,0.895850241184235,0.117889232933521,0.434895277023315,0.892730712890625,0.169707015156746,0.445357173681259,0.879122495651245,0.136471122503281,0.432431310415268,0.891279220581055,0.227156460285187,0.51408839225769,0.827111184597015,0.27244821190834,0.548548817634583,0.790484666824341,0.169707015156746,0.445357173681259,0.879122495651245,0.974407494068146,0.187283962965012,-0.124316610395908,0.945940136909485,0.265357404947281,-0.186500906944275,0.958990097045898,0.18850465118885,-0.211669251322746,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.9776611328125,0.208885103464127,0.0233585294336081,0.974407494068146,0.187283962965012,-0.124316610395908,0.9776611328125,0.208885103464127,0.0233585294336081,0.960306525230408,0.1750618070364,0.217174291610718,0.951216042041779,0.268587082624435,0.151818558573723,0.868748426437378,0.36997053027153,0.329238295555115,0.938814342021942,0.150321558117867,0.309888601303101,0.885437726974487,0.323828220367432,0.33336940407753,0.952604472637177,0.222962737083435,0.20695948600769,0.885437726974487,0.323828220367432,0.33336940407753,0.965376675128937,0.0833953693509102,0.247169867157936,0.930464804172516,0.293443977832794,0.219375893473625,0.951216042041779,0.268587082624435,0.151818558573723,0.960306525230408,0.1750618070364,0.217174291610718,0.930464804172516,0.293443977832794,0.219375893473625,0.898322880268097,0.347351878881454,0.269002944231033,0.900016069412231,0.362067937850952,0.242647469043732,0.932900190353394,0.212089672684669,0.29105868935585,0.868748426437378,0.36997053027153,0.329238295555115,0.898322880268097,0.347351878881454,0.269002944231033,0.767368018627167,0.0612308159470558,0.638276636600494,0.874637484550476,-0.00843804981559515,0.484703987836838,0.783369898796082,0.239176794886589,0.573694944381714,0.684358239173889,-0.134467586874962,0.716639459133148,0.707771122455597,-0.23979489505291,0.664498507976532,0.616758525371552,0.138308137655258,0.77490621805191,\r\n0.707771122455597,-0.23979489505291,0.664498507976532,0.767368018627167,0.0612308159470558,0.638276636600494,0.616758525371552,0.138308137655258,0.77490621805191,0.965376675128937,0.0833953693509102,0.247169867157936,0.986505746841431,0.0648204460740089,0.150347605347633,0.952604472637177,0.222962737083435,0.20695948600769,0.977689743041992,0.126690939068794,0.167547285556793,0.986505746841431,0.0648204460740089,0.150347605347633,0.981589198112488,-0.0260735396295786,0.189215436577797,0.965864896774292,0.0285297445952892,0.257470279932022,0.977689743041992,0.126690939068794,0.167547285556793,0.981589198112488,-0.0260735396295786,0.189215436577797,0.962467133998871,0.0860324651002884,0.257401198148727,0.946936786174774,0.177137076854706,0.268203347921371,0.965864896774292,0.0285297445952892,0.257470279932022,0.844210028648376,-0.00667332904413342,0.53597092628479,0.875024557113647,-0.038322176784277,0.482559084892273,0.752262353897095,-0.0984573289752007,0.651465535163879,0.902707815170288,0.0349471680819988,0.428832352161407,0.875024557113647,-0.038322176784277,0.482559084892273,0.844210028648376,-0.00667332904413342,0.53597092628479,0.951614677906036,0.0880796611309052,0.294400036334991,0.942816972732544,0.113863430917263,0.313258826732636,0.962467133998871,0.0860324651002884,0.257401198148727,0.902707815170288,0.0349471680819988,0.428832352161407,0.942816972732544,0.113863430917263,0.313258826732636,0.951614677906036,0.0880796611309052,0.294400036334991,0.752262353897095,-0.0984573289752007,0.651465535163879,0.662075996398926,-0.109614424407482,0.741377055644989,0.641130983829498,-0.0847693234682083,0.762735247612,0.73396235704422,-0.109951831400394,0.67023104429245,0.671932578086853,-0.0686439126729965,0.737424194812775,0.641130983829498,-0.0847693234682083,0.762735247612,0.769633650779724,-0.236891016364098,0.592913627624512,0.671932578086853,-0.0686439126729965,0.737424194812775,0.826446890830994,-0.213757768273354,0.520857930183411,0.747281849384308,-0.3355972468853,0.573536515235901,0.684358239173889,-0.134467586874962,0.716639459133148,\r\n0.769633650779724,-0.236891016364098,0.592913627624512,0.848691940307617,0.176388248801231,0.498607099056244,0.82113641500473,0.119052171707153,0.558176755905151,0.802916944026947,0.174946323037148,0.569840312004089,0.82113641500473,0.119052171707153,0.558176755905151,0.872018873691559,0.0898233205080032,0.481159746646881,0.828415513038635,0.102635234594345,0.550630211830139,0.872139513492584,-0.0223505962640047,0.48874643445015,0.881253063678741,0.0385332815349102,0.471071183681488,0.874637484550476,-0.00843804981559515,0.484703987836838,0.881253063678741,0.0385332815349102,0.471071183681488,0.872139513492584,-0.0223505962640047,0.48874643445015,0.858859598636627,0.0479472056031227,0.509961843490601,0.828415513038635,0.102635234594345,0.550630211830139,0.872018873691559,0.0898233205080032,0.481159746646881,0.858859598636627,0.0479472056031227,0.509961843490601,0.471994400024414,0.033768568187952,0.880954504013062,0.469978243112564,-0.0741681903600693,0.879556357860565,0.580881118774414,-0.0647295638918877,0.811410546302795,0.501951992511749,0.103734262287617,0.858651995658875,0.457836419343948,0.0725595280528069,0.886070430278778,0.471994400024414,0.033768568187952,0.880954504013062,0.60913872718811,-0.00176774011924863,0.793061554431915,0.678542613983154,-0.131573542952538,0.722681224346161,0.607929229736328,-0.106905840337276,0.786761105060577,0.492692589759827,-0.0889653638005257,0.865643739700317,0.607929229736328,-0.106905840337276,0.786761105060577,0.469198793172836,-0.169504687190056,0.866672098636627,0.580881118774414,-0.0647295638918877,0.811410546302795,0.678542613983154,-0.131573542952538,0.722681224346161,0.60913872718811,-0.00176774011924863,0.793061554431915,0.550327777862549,0.0490552112460136,0.833506286144257,0.459340006113052,0.21316422522068,0.862303733825684,0.500637531280518,0.1180210262537,0.857573866844177,0.550327777862549,0.0490552112460136,0.833506286144257,0.500637531280518,0.1180210262537,0.857573866844177,0.568601846694946,-0.0268887002021074,0.822173178195953,0.579265534877777,-0.0274763144552708,0.814675569534302,\r\n0.568601846694946,-0.0268887002021074,0.822173178195953,0.582146525382996,-0.0874927863478661,0.808362722396851,0.334557771682739,0.338022798299789,0.879665613174438,0.312750518321991,0.284220963716507,0.906314194202423,0.28572940826416,0.354646921157837,0.890271961688995,0.334557771682739,0.338022798299789,0.879665613174438,0.459340006113052,0.21316422522068,0.862303733825684,0.312750518321991,0.284220963716507,0.906314194202423,0.582146525382996,-0.0874927863478661,0.808362722396851,0.57238632440567,-0.157256618142128,0.804763436317444,0.60610020160675,-0.130868077278137,0.784548223018646,0.599407494068146,-0.212936148047447,0.771601378917694,0.596776723861694,-0.191225692629814,0.779288232326508,0.60610020160675,-0.130868077278137,0.784548223018646,0.672914028167725,-0.252209335565567,0.695397019386292,0.731092631816864,-0.259990870952606,0.63079959154129,0.596776723861694,-0.191225692629814,0.779288232326508,0.743739306926727,-0.312198042869568,0.591087162494659,0.769096314907074,-0.2781782746315,0.575419425964355,0.731092631816864,-0.259990870952606,0.63079959154129,0.544406592845917,-0.0362543947994709,0.838037550449371,0.58682769536972,-0.143707230687141,0.796857178211212,0.663912653923035,-0.165037974715233,0.729371190071106,0.521645665168762,0.0429724305868149,0.852079093456268,0.544406592845917,-0.0362543947994709,0.838037550449371,0.457836419343948,0.0725595280528069,0.886070430278778,0.690032243728638,-0.253109127283096,0.678078889846802,0.663912653923035,-0.165037974715233,0.729371190071106,0.58682769536972,-0.143707230687141,0.796857178211212,0.746906876564026,-0.285151988267899,0.60068154335022,0.690032243728638,-0.253109127283096,0.678078889846802,0.769096314907074,-0.2781782746315,0.575419425964355,0.541498363018036,0.307949185371399,0.782270193099976,0.368603497743607,0.359132200479507,0.857412040233612,0.69338995218277,0.27346658706665,0.666653096675873,0.368603497743607,0.359132200479507,0.857412040233612,0.541498363018036,0.307949185371399,0.782270193099976,0.181490451097488,0.370489358901978,0.910932898521423,\r\n0.174978792667389,0.302849978208542,0.936837315559387,0.181490451097488,0.370489358901978,0.910932898521423,0.28572940826416,0.354646921157837,0.890271961688995,-0.0576219297945499,0.451233416795731,0.890543699264526,-0.046486459672451,0.616934776306152,0.785640001296997,0.0976498126983643,0.48733714222908,0.867736518383026,0.329360246658325,0.219844251871109,0.918253898620605,0.69338995218277,0.27346658706665,0.666653096675873,0.368603497743607,0.359132200479507,0.857412040233612,0.0379968546330929,0.171778365969658,0.984402418136597,0.117857046425343,0.193815857172012,0.97393274307251,0.164501711726189,0.165479183197021,0.972396910190582,0.28433957695961,0.171001464128494,0.943350076675415,0.329360246658325,0.219844251871109,0.918253898620605,0.0379968546330929,0.171778365969658,0.984402418136597,0.236594215035439,0.299412578344345,0.924324154853821,0.306971400976181,0.332905769348145,0.891595184803009,0.337111949920654,0.417125284671783,0.84401535987854,0.236594215035439,0.299412578344345,0.924324154853821,0.117857046425343,0.193815857172012,0.97393274307251,0.223291024565697,0.25478395819664,0.940864562988281,0.334287703037262,0.624943196773529,0.705476880073547,0.225230872631073,0.662219226360321,0.714658379554749,0.294129282236099,0.578670382499695,0.760676264762878,0.39861273765564,0.480238139629364,0.781331598758698,0.360410898923874,0.505788266658783,0.783761501312256,0.337111949920654,0.417125284671783,0.84401535987854,0.432465493679047,0.521998167037964,0.735181152820587,0.334287703037262,0.624943196773529,0.705476880073547,0.294129282236099,0.578670382499695,0.760676264762878,0.360410898923874,0.505788266658783,0.783761501312256,0.39861273765564,0.480238139629364,0.781331598758698,0.432465493679047,0.521998167037964,0.735181152820587,0.144298896193504,0.607931196689606,0.780767142772675,0.144221842288971,0.679853618144989,0.719026386737823,0.243716105818748,0.654371500015259,0.715821325778961,0.144298896193504,0.607931196689606,0.780767142772675,0.220579251646996,0.499068766832352,0.838018476963043,0.0976498126983643,0.48733714222908,0.867736518383026,\r\n0.225230872631073,0.662219226360321,0.714658379554749,0.243716105818748,0.654371500015259,0.715821325778961,0.144221842288971,0.679853618144989,0.719026386737823,-0.0576219297945499,0.451233416795731,0.890543699264526,0.0976498126983643,0.48733714222908,0.867736518383026,0.058062955737114,0.440546184778214,0.895850241184235,0.117889232933521,0.434895277023315,0.892730712890625,0.136471122503281,0.432431310415268,0.891279220581055,0.18672102689743,0.452683329582214,0.87190192937851,0.058062955737114,0.440546184778214,0.895850241184235,0.0976498126983643,0.48733714222908,0.867736518383026,0.18672102689743,0.452683329582214,0.87190192937851,0.169707015156746,0.445357173681259,0.879122495651245,0.117889232933521,0.434895277023315,0.892730712890625,0.197286278009415,0.413040310144424,0.889087021350861,0.27244821190834,0.548548817634583,0.790484666824341,0.227156460285187,0.51408839225769,0.827111184597015,0.232763260602951,0.588428020477295,0.774321377277374,0.188188418745995,0.497414946556091,0.846855044364929,0.227156460285187,0.51408839225769,0.827111184597015,0.169707015156746,0.445357173681259,0.879122495651245,0.974407494068146,0.187283962965012,-0.124316610395908,0.958990097045898,0.18850465118885,-0.211669251322746,0.985434234142303,0.101908624172211,-0.136139273643494,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.987292945384979,0.0297057870775461,0.15610945224762,0.9776611328125,0.208885103464127,0.0233585294336081,0.985434234142303,0.101908624172211,-0.136139273643494,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.974407494068146,0.187283962965012,-0.124316610395908,0.987292945384979,0.0297057870775461,0.15610945224762,0.960306525230408,0.1750618070364,0.217174291610718,0.9776611328125,0.208885103464127,0.0233585294336081,0.868748426437378,0.36997053027153,0.329238295555115,0.932900190353394,0.212089672684669,0.29105868935585,0.938814342021942,0.150321558117867,0.309888601303101,0.938814342021942,0.150321558117867,0.309888601303101,0.965376675128937,0.0833953693509102,0.247169867157936,\r\n0.885437726974487,0.323828220367432,0.33336940407753,0.930464804172516,0.293443977832794,0.219375893473625,0.960306525230408,0.1750618070364,0.217174291610718,0.936689078807831,0.183071106672287,0.298493593931198,0.898322880268097,0.347351878881454,0.269002944231033,0.930464804172516,0.293443977832794,0.219375893473625,0.936689078807831,0.183071106672287,0.298493593931198,0.936689078807831,0.183071106672287,0.298493593931198,0.932900190353394,0.212089672684669,0.29105868935585,0.898322880268097,0.347351878881454,0.269002944231033,0.803593575954437,-0.175947546958923,0.568576872348785,0.874637484550476,-0.00843804981559515,0.484703987836838,0.767368018627167,0.0612308159470558,0.638276636600494,0.684358239173889,-0.134467586874962,0.716639459133148,0.747281849384308,-0.3355972468853,0.573536515235901,0.707771122455597,-0.23979489505291,0.664498507976532,0.707771122455597,-0.23979489505291,0.664498507976532,0.803593575954437,-0.175947546958923,0.568576872348785,0.767368018627167,0.0612308159470558,0.638276636600494,0.986505746841431,0.0648204460740089,0.150347605347633,0.965376675128937,0.0833953693509102,0.247169867157936,0.981589198112488,-0.0260735396295786,0.189215436577797,0.965864896774292,0.0285297445952892,0.257470279932022,0.981589198112488,-0.0260735396295786,0.189215436577797,0.975221872329712,-0.0368401780724525,0.218140050768852,0.960049629211426,-0.0113026676699519,0.279601365327835,0.962467133998871,0.0860324651002884,0.257401198148727,0.965864896774292,0.0285297445952892,0.257470279932022,0.875024557113647,-0.038322176784277,0.482559084892273,0.770219743251801,-0.0738609433174133,0.633487164974213,0.752262353897095,-0.0984573289752007,0.651465535163879,0.902707815170288,0.0349471680819988,0.428832352161407,0.951614677906036,0.0880796611309052,0.294400036334991,0.875024557113647,-0.038322176784277,0.482559084892273,0.951614677906036,0.0880796611309052,0.294400036334991,0.962467133998871,0.0860324651002884,0.257401198148727,0.963762581348419,0.109904073178768,0.243069469928741,0.752262353897095,-0.0984573289752007,0.651465535163879,\r\n0.770219743251801,-0.0738609433174133,0.633487164974213,0.662075996398926,-0.109614424407482,0.741377055644989,0.641130983829498,-0.0847693234682083,0.762735247612,0.662075996398926,-0.109614424407482,0.741377055644989,0.649166345596313,-0.0468475706875324,0.759202420711517,0.671932578086853,-0.0686439126729965,0.737424194812775,0.73396235704422,-0.109951831400394,0.67023104429245,0.826446890830994,-0.213757768273354,0.520857930183411,0.73396235704422,-0.109951831400394,0.67023104429245,0.641130983829498,-0.0847693234682083,0.762735247612,0.649166345596313,-0.0468475706875324,0.759202420711517,0.747281849384308,-0.3355972468853,0.573536515235901,0.769633650779724,-0.236891016364098,0.592913627624512,0.826446890830994,-0.213757768273354,0.520857930183411,0.802916944026947,0.174946323037148,0.569840312004089,0.82113641500473,0.119052171707153,0.558176755905151,0.754107475280762,0.169889241456985,0.634396910667419,0.79480242729187,0.14567656815052,0.589124143123627,0.82113641500473,0.119052171707153,0.558176755905151,0.828415513038635,0.102635234594345,0.550630211830139,0.872139513492584,-0.0223505962640047,0.48874643445015,0.874637484550476,-0.00843804981559515,0.484703987836838,0.832509696483612,-0.0924822688102722,0.546236753463745,0.824035048484802,0.0308896172791719,0.565695941448212,0.858859598636627,0.0479472056031227,0.509961843490601,0.872139513492584,-0.0223505962640047,0.48874643445015,0.795470833778381,0.146036699414253,0.58813202381134,0.828415513038635,0.102635234594345,0.550630211830139,0.858859598636627,0.0479472056031227,0.509961843490601,0.471994400024414,0.033768568187952,0.880954504013062,0.580881118774414,-0.0647295638918877,0.811410546302795,0.60913872718811,-0.00176774011924863,0.793061554431915,0.521645665168762,0.0429724305868149,0.852079093456268,0.457836419343948,0.0725595280528069,0.886070430278778,0.501951992511749,0.103734262287617,0.858651995658875,0.471994400024414,0.033768568187952,0.880954504013062,0.60913872718811,-0.00176774011924863,0.793061554431915,0.501951992511749,0.103734262287617,0.858651995658875,\r\n0.558884382247925,0.054775808006525,0.827434480190277,0.60913872718811,-0.00176774011924863,0.793061554431915,0.607929229736328,-0.106905840337276,0.786761105060577,0.518883585929871,-0.0204521045088768,0.854600131511688,0.607929229736328,-0.106905840337276,0.786761105060577,0.492692589759827,-0.0889653638005257,0.865643739700317,0.459340006113052,0.21316422522068,0.862303733825684,0.550327777862549,0.0490552112460136,0.833506286144257,0.431151360273361,0.13631971180439,0.891922235488892,0.550327777862549,0.0490552112460136,0.833506286144257,0.568601846694946,-0.0268887002021074,0.822173178195953,0.579265534877777,-0.0274763144552708,0.814675569534302,0.579265534877777,-0.0274763144552708,0.814675569534302,0.582146525382996,-0.0874927863478661,0.808362722396851,0.520994246006012,-0.0639992654323578,0.851157426834106,0.312750518321991,0.284220963716507,0.906314194202423,0.174978792667389,0.302849978208542,0.936837315559387,0.28572940826416,0.354646921157837,0.890271961688995,0.459340006113052,0.21316422522068,0.862303733825684,0.431151360273361,0.13631971180439,0.891922235488892,0.312750518321991,0.284220963716507,0.906314194202423,0.582146525382996,-0.0874927863478661,0.808362722396851,0.60610020160675,-0.130868077278137,0.784548223018646,0.549812316894531,-0.137221708893776,0.823939621448517,0.60610020160675,-0.130868077278137,0.784548223018646,0.596776723861694,-0.191225692629814,0.779288232326508,0.549812316894531,-0.137221708893776,0.823939621448517,0.656501531600952,-0.191554874181747,0.729597389698029,0.596776723861694,-0.191225692629814,0.779288232326508,0.731092631816864,-0.259990870952606,0.63079959154129,0.769096314907074,-0.2781782746315,0.575419425964355,0.749265253543854,-0.259223103523254,0.609429895877838,0.731092631816864,-0.259990870952606,0.63079959154129,0.521645665168762,0.0429724305868149,0.852079093456268,0.58682769536972,-0.143707230687141,0.796857178211212,0.544406592845917,-0.0362543947994709,0.838037550449371,0.58682769536972,-0.143707230687141,0.796857178211212,0.552319169044495,-0.261921882629395,0.791416645050049,\r\n0.690032243728638,-0.253109127283096,0.678078889846802,0.641210675239563,-0.309318035840988,0.702261388301849,0.769096314907074,-0.2781782746315,0.575419425964355,0.690032243728638,-0.253109127283096,0.678078889846802,0.368603497743607,0.359132200479507,0.857412040233612,0.181490451097488,0.370489358901978,0.910932898521423,0.015139976516366,0.279210060834885,0.960110604763031,0.174978792667389,0.302849978208542,0.936837315559387,0.000981803750619292,0.289591133594513,0.957149863243103,0.181490451097488,0.370489358901978,0.910932898521423,0.329360246658325,0.219844251871109,0.918253898620605,0.368603497743607,0.359132200479507,0.857412040233612,0.015139976516366,0.279210060834885,0.960110604763031,0.0379968546330929,0.171778365969658,0.984402418136597,0.124222956597805,0.224906533956528,0.96642929315567,0.117857046425343,0.193815857172012,0.97393274307251,0.329360246658325,0.219844251871109,0.918253898620605,0.015139976516366,0.279210060834885,0.960110604763031,0.0379968546330929,0.171778365969658,0.984402418136597,0.236594215035439,0.299412578344345,0.924324154853821,0.223291024565697,0.25478395819664,0.940864562988281,0.306971400976181,0.332905769348145,0.891595184803009,0.411513566970825,0.411558002233505,0.813189089298248,0.337111949920654,0.417125284671783,0.84401535987854,0.306971400976181,0.332905769348145,0.891595184803009,0.117857046425343,0.193815857172012,0.97393274307251,0.124222956597805,0.224906533956528,0.96642929315567,0.223291024565697,0.25478395819664,0.940864562988281,0.225230872631073,0.662219226360321,0.714658379554749,0.334287703037262,0.624943196773529,0.705476880073547,0.243716105818748,0.654371500015259,0.715821325778961,0.411513566970825,0.411558002233505,0.813189089298248,0.39861273765564,0.480238139629364,0.781331598758698,0.337111949920654,0.417125284671783,0.84401535987854,0.430302292108536,0.623027205467224,0.653205037117004,0.334287703037262,0.624943196773529,0.705476880073547,0.432465493679047,0.521998167037964,0.735181152820587,0.411513566970825,0.411558002233505,0.813189089298248,\r\n0.432465493679047,0.521998167037964,0.735181152820587,0.39861273765564,0.480238139629364,0.781331598758698,0.204116061329842,0.583775222301483,0.785839021205902,0.144298896193504,0.607931196689606,0.780767142772675,0.243716105818748,0.654371500015259,0.715821325778961,0.220579251646996,0.499068766832352,0.838018476963043,0.144298896193504,0.607931196689606,0.780767142772675,0.204116061329842,0.583775222301483,0.785839021205902,0.220579251646996,0.499068766832352,0.838018476963043,0.18672102689743,0.452683329582214,0.87190192937851,0.0976498126983643,0.48733714222908,0.867736518383026,0.197286278009415,0.413040310144424,0.889087021350861,0.117889232933521,0.434895277023315,0.892730712890625,0.18672102689743,0.452683329582214,0.87190192937851,0.188188418745995,0.497414946556091,0.846855044364929,0.169707015156746,0.445357173681259,0.879122495651245,0.197286278009415,0.413040310144424,0.889087021350861,0.227156460285187,0.51408839225769,0.827111184597015,0.188188418745995,0.497414946556091,0.846855044364929,0.232763260602951,0.588428020477295,0.774321377277374,0.982881128787994,-0.133762493729591,0.126697093248367,0.987292945384979,0.0297057870775461,0.15610945224762,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.985434234142303,0.101908624172211,-0.136139273643494,0.987292945384979,0.0297057870775461,0.15610945224762,0.938029110431671,-0.0775898098945618,0.337758600711823,0.960306525230408,0.1750618070364,0.217174291610718,0.966587483882904,-0.000442628108430654,0.256336390972137,0.938814342021942,0.150321558117867,0.309888601303101,0.932900190353394,0.212089672684669,0.29105868935585,0.938814342021942,0.150321558117867,0.309888601303101,0.968019425868988,-0.05674684420228,0.24437290430069,0.965376675128937,0.0833953693509102,0.247169867157936,0.960306525230408,0.1750618070364,0.217174291610718,0.937302470207214,0.0297885611653328,0.347241550683975,0.936689078807831,0.183071106672287,0.298493593931198,\r\n0.936689078807831,0.183071106672287,0.298493593931198,0.938546121120453,0.0159810185432434,0.344783455133438,0.932900190353394,0.212089672684669,0.29105868935585,0.803593575954437,-0.175947546958923,0.568576872348785,0.832509696483612,-0.0924822688102722,0.546236753463745,0.874637484550476,-0.00843804981559515,0.484703987836838,0.707771122455597,-0.23979489505291,0.664498507976532,0.747281849384308,-0.3355972468853,0.573536515235901,0.629667520523071,-0.35471898317337,0.691153407096863,0.602237820625305,-0.244163662195206,0.760061621665955,0.803593575954437,-0.175947546958923,0.568576872348785,0.707771122455597,-0.23979489505291,0.664498507976532,0.981589198112488,-0.0260735396295786,0.189215436577797,0.965376675128937,0.0833953693509102,0.247169867157936,0.968019425868988,-0.05674684420228,0.24437290430069,0.975030839443207,-0.0356889069080353,0.21918286383152,0.975221872329712,-0.0368401780724525,0.218140050768852,0.981589198112488,-0.0260735396295786,0.189215436577797,0.960049629211426,-0.0113026676699519,0.279601365327835,0.965864896774292,0.0285297445952892,0.257470279932022,0.975221872329712,-0.0368401780724525,0.218140050768852,0.962467133998871,0.0860324651002884,0.257401198148727,0.960049629211426,-0.0113026676699519,0.279601365327835,0.95115715265274,-0.0151911908760667,0.308332860469818,0.816789925098419,0.117120966315269,0.564921855926514,0.770219743251801,-0.0738609433174133,0.633487164974213,0.875024557113647,-0.038322176784277,0.482559084892273,0.875024557113647,-0.038322176784277,0.482559084892273,0.951614677906036,0.0880796611309052,0.294400036334991,0.906465649604797,0.162954449653625,0.389571279287338,0.963762581348419,0.109904073178768,0.243069469928741,0.962467133998871,0.0860324651002884,0.257401198148727,0.95115715265274,-0.0151911908760667,0.308332860469818,0.963762581348419,0.109904073178768,0.243069469928741,0.906465649604797,0.162954449653625,0.389571279287338,0.951614677906036,0.0880796611309052,0.294400036334991,0.770219743251801,-0.0738609433174133,0.633487164974213,0.702869057655334,0.0537651628255844,0.70928430557251,\r\n0.662075996398926,-0.109614424407482,0.741377055644989,0.649166345596313,-0.0468475706875324,0.759202420711517,0.662075996398926,-0.109614424407482,0.741377055644989,0.702869057655334,0.0537651628255844,0.70928430557251,0.826446890830994,-0.213757768273354,0.520857930183411,0.73396235704422,-0.109951831400394,0.67023104429245,0.88463819026947,-0.144546076655388,0.443307489156723,0.73396235704422,-0.109951831400394,0.67023104429245,0.649166345596313,-0.0468475706875324,0.759202420711517,0.823882460594177,-0.0770900696516037,0.561493217945099,0.769705951213837,-0.29580420255661,0.565731763839722,0.747281849384308,-0.3355972468853,0.573536515235901,0.826446890830994,-0.213757768273354,0.520857930183411,0.732336521148682,0.184203997254372,0.65555465221405,0.754107475280762,0.169889241456985,0.634396910667419,0.82113641500473,0.119052171707153,0.558176755905151,0.802916944026947,0.174946323037148,0.569840312004089,0.754107475280762,0.169889241456985,0.634396910667419,0.722396850585938,0.194176867604256,0.663654983043671,0.79480242729187,0.14567656815052,0.589124143123627,0.732336521148682,0.184203997254372,0.65555465221405,0.82113641500473,0.119052171707153,0.558176755905151,0.79480242729187,0.14567656815052,0.589124143123627,0.828415513038635,0.102635234594345,0.550630211830139,0.709631741046906,0.225022152066231,0.667673289775848,0.872139513492584,-0.0223505962640047,0.48874643445015,0.832509696483612,-0.0924822688102722,0.546236753463745,0.824035048484802,0.0308896172791719,0.565695941448212,0.824035048484802,0.0308896172791719,0.565695941448212,0.795470833778381,0.146036699414253,0.58813202381134,0.858859598636627,0.0479472056031227,0.509961843490601,0.795470833778381,0.146036699414253,0.58813202381134,0.709631741046906,0.225022152066231,0.667673289775848,0.828415513038635,0.102635234594345,0.550630211830139,0.521645665168762,0.0429724305868149,0.852079093456268,0.501951992511749,0.103734262287617,0.858651995658875,0.515254139900208,0.0938493087887764,0.851883411407471,0.558884382247925,0.054775808006525,0.827434480190277,\r\n0.501951992511749,0.103734262287617,0.858651995658875,0.60913872718811,-0.00176774011924863,0.793061554431915,0.518883585929871,-0.0204521045088768,0.854600131511688,0.558884382247925,0.054775808006525,0.827434480190277,0.607929229736328,-0.106905840337276,0.786761105060577,0.431151360273361,0.13631971180439,0.891922235488892,0.550327777862549,0.0490552112460136,0.833506286144257,0.468710452318192,0.00718054501339793,0.883322656154633,0.520994246006012,-0.0639992654323578,0.851157426834106,0.550327777862549,0.0490552112460136,0.833506286144257,0.579265534877777,-0.0274763144552708,0.814675569534302,0.549812316894531,-0.137221708893776,0.823939621448517,0.520994246006012,-0.0639992654323578,0.851157426834106,0.582146525382996,-0.0874927863478661,0.808362722396851,0.358386516571045,0.232702568173409,0.904106438159943,0.174978792667389,0.302849978208542,0.936837315559387,0.312750518321991,0.284220963716507,0.906314194202423,0.431151360273361,0.13631971180439,0.891922235488892,0.411791056394577,0.228082597255707,0.882273375988007,0.312750518321991,0.284220963716507,0.906314194202423,0.536318004131317,-0.137334227561951,0.83276778459549,0.549812316894531,-0.137221708893776,0.823939621448517,0.596776723861694,-0.191225692629814,0.779288232326508,0.656501531600952,-0.191554874181747,0.729597389698029,0.536318004131317,-0.137334227561951,0.83276778459549,0.596776723861694,-0.191225692629814,0.779288232326508,0.656501531600952,-0.191554874181747,0.729597389698029,0.731092631816864,-0.259990870952606,0.63079959154129,0.746418118476868,-0.212770983576775,0.630546033382416,0.769096314907074,-0.2781782746315,0.575419425964355,0.641210675239563,-0.309318035840988,0.702261388301849,0.749265253543854,-0.259223103523254,0.609429895877838,0.731092631816864,-0.259990870952606,0.63079959154129,0.749265253543854,-0.259223103523254,0.609429895877838,0.746418118476868,-0.212770983576775,0.630546033382416,0.581170201301575,-0.0781069323420525,0.810024917125702,0.58682769536972,-0.143707230687141,0.796857178211212,0.521645665168762,0.0429724305868149,0.852079093456268,\r\n0.552319169044495,-0.261921882629395,0.791416645050049,0.58682769536972,-0.143707230687141,0.796857178211212,0.581170201301575,-0.0781069323420525,0.810024917125702,0.641210675239563,-0.309318035840988,0.702261388301849,0.690032243728638,-0.253109127283096,0.678078889846802,0.552319169044495,-0.261921882629395,0.791416645050049,0.000981803750619292,0.289591133594513,0.957149863243103,0.015139976516366,0.279210060834885,0.960110604763031,0.181490451097488,0.370489358901978,0.910932898521423,0.174978792667389,0.302849978208542,0.936837315559387,0.164979547262192,0.22116956114769,0.961179316043854,0.000981803750619292,0.289591133594513,0.957149863243103,0.0379968546330929,0.171778365969658,0.984402418136597,0.0238498691469431,0.224427372217178,0.974198758602142,0.124222956597805,0.224906533956528,0.96642929315567,0.0238498691469431,0.224427372217178,0.974198758602142,0.0379968546330929,0.171778365969658,0.984402418136597,0.015139976516366,0.279210060834885,0.960110604763031,0.356815040111542,0.30386483669281,0.883373737335205,0.306971400976181,0.332905769348145,0.891595184803009,0.223291024565697,0.25478395819664,0.940864562988281,0.356815040111542,0.30386483669281,0.883373737335205,0.411513566970825,0.411558002233505,0.813189089298248,0.306971400976181,0.332905769348145,0.891595184803009,0.356815040111542,0.30386483669281,0.883373737335205,0.223291024565697,0.25478395819664,0.940864562988281,0.124222956597805,0.224906533956528,0.96642929315567,0.369543462991714,0.598122179508209,0.711116969585419,0.243716105818748,0.654371500015259,0.715821325778961,0.334287703037262,0.624943196773529,0.705476880073547,0.334287703037262,0.624943196773529,0.705476880073547,0.430302292108536,0.623027205467224,0.653205037117004,0.369543462991714,0.598122179508209,0.711116969585419,0.432465493679047,0.521998167037964,0.735181152820587,0.509121060371399,0.60287082195282,0.614281833171844,0.430302292108536,0.623027205467224,0.653205037117004,0.411513566970825,0.411558002233505,0.813189089298248,0.465382248163223,0.413421213626862,0.782625138759613,\r\n0.432465493679047,0.521998167037964,0.735181152820587,0.204116061329842,0.583775222301483,0.785839021205902,0.243716105818748,0.654371500015259,0.715821325778961,0.219282746315002,0.560246348381042,0.798773407936096,0.204116061329842,0.583775222301483,0.785839021205902,0.219282746315002,0.560246348381042,0.798773407936096,0.220579251646996,0.499068766832352,0.838018476963043,0.220579251646996,0.499068766832352,0.838018476963043,0.248536974191666,0.436931818723679,0.86447662115097,0.18672102689743,0.452683329582214,0.87190192937851,0.197286278009415,0.413040310144424,0.889087021350861,0.18672102689743,0.452683329582214,0.87190192937851,0.248536974191666,0.436931818723679,0.86447662115097,0.197286278009415,0.413040310144424,0.889087021350861,0.250383317470551,0.412055850028992,0.876081109046936,0.188188418745995,0.497414946556091,0.846855044364929,0.982881128787994,-0.133762493729591,0.126697093248367,0.892681121826172,-0.248533919453621,0.375967025756836,0.987292945384979,0.0297057870775461,0.15610945224762,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.982881128787994,-0.133762493729591,0.126697093248367,0.994702577590942,0.0944706201553345,-0.0405207052826881,0.938029110431671,-0.0775898098945618,0.337758600711823,0.987292945384979,0.0297057870775461,0.15610945224762,0.892681121826172,-0.248533919453621,0.375967025756836,0.938029110431671,-0.0775898098945618,0.337758600711823,0.937302470207214,0.0297885611653328,0.347241550683975,0.960306525230408,0.1750618070364,0.217174291610718,0.966587483882904,-0.000442628108430654,0.256336390972137,0.968019425868988,-0.05674684420228,0.24437290430069,0.938814342021942,0.150321558117867,0.309888601303101,0.966587483882904,-0.000442628108430654,0.256336390972137,0.932900190353394,0.212089672684669,0.29105868935585,0.938546121120453,0.0159810185432434,0.344783455133438,0.937302470207214,0.0297885611653328,0.347241550683975,0.916891396045685,-0.0399795956909657,0.397129267454147,0.936689078807831,0.183071106672287,0.298493593931198,0.916891396045685,-0.0399795956909657,0.397129267454147,\r\n0.938546121120453,0.0159810185432434,0.344783455133438,0.936689078807831,0.183071106672287,0.298493593931198,0.803593575954437,-0.175947546958923,0.568576872348785,0.709941744804382,-0.150845974683762,0.687915742397308,0.832509696483612,-0.0924822688102722,0.546236753463745,0.769705951213837,-0.29580420255661,0.565731763839722,0.629667520523071,-0.35471898317337,0.691153407096863,0.747281849384308,-0.3355972468853,0.573536515235901,0.602237820625305,-0.244163662195206,0.760061621665955,0.707771122455597,-0.23979489505291,0.664498507976532,0.629667520523071,-0.35471898317337,0.691153407096863,0.803593575954437,-0.175947546958923,0.568576872348785,0.602237820625305,-0.244163662195206,0.760061621665955,0.709941744804382,-0.150845974683762,0.687915742397308,0.975030839443207,-0.0356889069080353,0.21918286383152,0.981589198112488,-0.0260735396295786,0.189215436577797,0.968019425868988,-0.05674684420228,0.24437290430069,0.975221872329712,-0.0368401780724525,0.218140050768852,0.975030839443207,-0.0356889069080353,0.21918286383152,0.974845945835114,0.0948633328080177,0.201683670282364,0.974141240119934,0.0724797546863556,0.21399861574173,0.960049629211426,-0.0113026676699519,0.279601365327835,0.975221872329712,-0.0368401780724525,0.218140050768852,0.95115715265274,-0.0151911908760667,0.308332860469818,0.960049629211426,-0.0113026676699519,0.279601365327835,0.943131864070892,0.0538982674479485,0.328020185232162,0.816789925098419,0.117120966315269,0.564921855926514,0.702869057655334,0.0537651628255844,0.70928430557251,0.770219743251801,-0.0738609433174133,0.633487164974213,0.816789925098419,0.117120966315269,0.564921855926514,0.875024557113647,-0.038322176784277,0.482559084892273,0.906465649604797,0.162954449653625,0.389571279287338,0.95115715265274,-0.0151911908760667,0.308332860469818,0.94171154499054,0.0926693305373192,0.323406279087067,0.963762581348419,0.109904073178768,0.243069469928741,0.94171154499054,0.0926693305373192,0.323406279087067,0.906465649604797,0.162954449653625,0.389571279287338,0.963762581348419,0.109904073178768,0.243069469928741,\r\n0.649166345596313,-0.0468475706875324,0.759202420711517,0.702869057655334,0.0537651628255844,0.70928430557251,0.73927891254425,0.0698882788419724,0.669762849807739,0.73396235704422,-0.109951831400394,0.67023104429245,0.823882460594177,-0.0770900696516037,0.561493217945099,0.88463819026947,-0.144546076655388,0.443307489156723,0.826446890830994,-0.213757768273354,0.520857930183411,0.88463819026947,-0.144546076655388,0.443307489156723,0.886529922485352,-0.170328751206398,0.430177450180054,0.649166345596313,-0.0468475706875324,0.759202420711517,0.73927891254425,0.0698882788419724,0.669762849807739,0.823882460594177,-0.0770900696516037,0.561493217945099,0.826446890830994,-0.213757768273354,0.520857930183411,0.886529922485352,-0.170328751206398,0.430177450180054,0.769705951213837,-0.29580420255661,0.565731763839722,0.732336521148682,0.184203997254372,0.65555465221405,0.650254905223846,0.25131830573082,0.716943085193634,0.754107475280762,0.169889241456985,0.634396910667419,0.650254905223846,0.25131830573082,0.716943085193634,0.722396850585938,0.194176867604256,0.663654983043671,0.754107475280762,0.169889241456985,0.634396910667419,0.732336521148682,0.184203997254372,0.65555465221405,0.79480242729187,0.14567656815052,0.589124143123627,0.709631741046906,0.225022152066231,0.667673289775848,0.824035048484802,0.0308896172791719,0.565695941448212,0.832509696483612,-0.0924822688102722,0.546236753463745,0.695835411548615,0.00325415772385895,0.718193888664246,0.795470833778381,0.146036699414253,0.58813202381134,0.824035048484802,0.0308896172791719,0.565695941448212,0.790246546268463,0.175652533769608,0.587074458599091,0.795470833778381,0.146036699414253,0.58813202381134,0.663332164287567,0.283455669879913,0.692562758922577,0.709631741046906,0.225022152066231,0.667673289775848,0.558884382247925,0.054775808006525,0.827434480190277,0.515254139900208,0.0938493087887764,0.851883411407471,0.501951992511749,0.103734262287617,0.858651995658875,0.521645665168762,0.0429724305868149,0.852079093456268,0.515254139900208,0.0938493087887764,0.851883411407471,\r\n0.581170201301575,-0.0781069323420525,0.810024917125702,0.518883585929871,-0.0204521045088768,0.854600131511688,0.474894255399704,0.0376962162554264,0.879235088825226,0.558884382247925,0.054775808006525,0.827434480190277,0.550327777862549,0.0490552112460136,0.833506286144257,0.520994246006012,-0.0639992654323578,0.851157426834106,0.468710452318192,0.00718054501339793,0.883322656154633,0.431151360273361,0.13631971180439,0.891922235488892,0.468710452318192,0.00718054501339793,0.883322656154633,0.445376068353653,0.103299781680107,0.889364361763,0.536318004131317,-0.137334227561951,0.83276778459549,0.520994246006012,-0.0639992654323578,0.851157426834106,0.549812316894531,-0.137221708893776,0.823939621448517,0.358386516571045,0.232702568173409,0.904106438159943,0.164979547262192,0.22116956114769,0.961179316043854,0.174978792667389,0.302849978208542,0.936837315559387,0.358386516571045,0.232702568173409,0.904106438159943,0.312750518321991,0.284220963716507,0.906314194202423,0.411791056394577,0.228082597255707,0.882273375988007,0.445376068353653,0.103299781680107,0.889364361763,0.411791056394577,0.228082597255707,0.882273375988007,0.431151360273361,0.13631971180439,0.891922235488892,0.656501531600952,-0.191554874181747,0.729597389698029,0.671780586242676,-0.0598374903202057,0.738329291343689,0.536318004131317,-0.137334227561951,0.83276778459549,0.734341084957123,-0.127991825342178,0.666604161262512,0.656501531600952,-0.191554874181747,0.729597389698029,0.746418118476868,-0.212770983576775,0.630546033382416,0.749265253543854,-0.259223103523254,0.609429895877838,0.641210675239563,-0.309318035840988,0.702261388301849,0.624528467655182,-0.281293213367462,0.728586494922638,0.749265253543854,-0.259223103523254,0.609429895877838,0.734341084957123,-0.127991825342178,0.666604161262512,0.746418118476868,-0.212770983576775,0.630546033382416,0.552319169044495,-0.261921882629395,0.791416645050049,0.581170201301575,-0.0781069323420525,0.810024917125702,0.52007794380188,-0.269670933485031,0.810429751873016,0.641210675239563,-0.309318035840988,0.702261388301849,\r\n0.552319169044495,-0.261921882629395,0.791416645050049,0.491547673940659,-0.315078377723694,0.811853647232056,0.000981803750619292,0.289591133594513,0.957149863243103,0.0238498691469431,0.224427372217178,0.974198758602142,0.015139976516366,0.279210060834885,0.960110604763031,0.164979547262192,0.22116956114769,0.961179316043854,0.0238498691469431,0.224427372217178,0.974198758602142,0.000981803750619292,0.289591133594513,0.957149863243103,0.0238498691469431,0.224427372217178,0.974198758602142,0.291587263345718,0.235635176301003,0.927066802978516,0.124222956597805,0.224906533956528,0.96642929315567,0.411513566970825,0.411558002233505,0.813189089298248,0.356815040111542,0.30386483669281,0.883373737335205,0.465382248163223,0.413421213626862,0.782625138759613,0.291587263345718,0.235635176301003,0.927066802978516,0.356815040111542,0.30386483669281,0.883373737335205,0.124222956597805,0.224906533956528,0.96642929315567,0.219282746315002,0.560246348381042,0.798773407936096,0.243716105818748,0.654371500015259,0.715821325778961,0.369543462991714,0.598122179508209,0.711116969585419,0.369543462991714,0.598122179508209,0.711116969585419,0.430302292108536,0.623027205467224,0.653205037117004,0.508907318115234,0.631585597991943,0.584904074668884,0.527202963829041,0.497838318347931,0.688631892204285,0.509121060371399,0.60287082195282,0.614281833171844,0.432465493679047,0.521998167037964,0.735181152820587,0.508907318115234,0.631585597991943,0.584904074668884,0.430302292108536,0.623027205467224,0.653205037117004,0.509121060371399,0.60287082195282,0.614281833171844,0.432465493679047,0.521998167037964,0.735181152820587,0.465382248163223,0.413421213626862,0.782625138759613,0.512398421764374,0.447214901447296,0.733107447624207,0.219282746315002,0.560246348381042,0.798773407936096,0.238133206963539,0.497059434652328,0.834400594234467,0.220579251646996,0.499068766832352,0.838018476963043,0.220579251646996,0.499068766832352,0.838018476963043,0.222265154123306,0.485828131437302,0.845321893692017,0.248536974191666,0.436931818723679,0.86447662115097,\r\n0.248536974191666,0.436931818723679,0.86447662115097,0.273504644632339,0.420893728733063,0.864895105361938,0.197286278009415,0.413040310144424,0.889087021350861,0.273504644632339,0.420893728733063,0.864895105361938,0.250383317470551,0.412055850028992,0.876081109046936,0.197286278009415,0.413040310144424,0.889087021350861,0.892681121826172,-0.248533919453621,0.375967025756836,0.982881128787994,-0.133762493729591,0.126697093248367,0.839141428470612,-0.403505027294159,0.36472624540329,0.982881128787994,-0.133762493729591,0.126697093248367,0.998454749584198,-0.024724705144763,-0.0497662350535393,0.945594012737274,-0.305946677923203,0.110672660171986,0.800066232681274,-0.298927366733551,0.520131170749664,0.938029110431671,-0.0775898098945618,0.337758600711823,0.892681121826172,-0.248533919453621,0.375967025756836,0.938029110431671,-0.0775898098945618,0.337758600711823,0.86673241853714,-0.173378840088844,0.467669308185577,0.937302470207214,0.0297885611653328,0.347241550683975,0.973866879940033,-0.0113480426371098,0.226835131645203,0.968019425868988,-0.05674684420228,0.24437290430069,0.966587483882904,-0.000442628108430654,0.256336390972137,0.966587483882904,-0.000442628108430654,0.256336390972137,0.938546121120453,0.0159810185432434,0.344783455133438,0.944404542446136,0.0111262165009975,0.328596919775009,0.86673241853714,-0.173378840088844,0.467669308185577,0.916891396045685,-0.0399795956909657,0.397129267454147,0.937302470207214,0.0297885611653328,0.347241550683975,0.916891396045685,-0.0399795956909657,0.397129267454147,0.854289293289185,-0.0948177129030228,0.51107656955719,0.938546121120453,0.0159810185432434,0.344783455133438,0.695835411548615,0.00325415772385895,0.718193888664246,0.832509696483612,-0.0924822688102722,0.546236753463745,0.709941744804382,-0.150845974683762,0.687915742397308,0.769705951213837,-0.29580420255661,0.565731763839722,0.617124438285828,-0.263611048460007,0.741394937038422,0.629667520523071,-0.35471898317337,0.691153407096863,0.617124438285828,-0.263611048460007,0.741394937038422,0.602237820625305,-0.244163662195206,0.760061621665955,\r\n0.629667520523071,-0.35471898317337,0.691153407096863,0.709941744804382,-0.150845974683762,0.687915742397308,0.602237820625305,-0.244163662195206,0.760061621665955,0.580678284168243,-0.0906465202569962,0.809070944786072,0.975030839443207,-0.0356889069080353,0.21918286383152,0.968019425868988,-0.05674684420228,0.24437290430069,0.973866879940033,-0.0113480426371098,0.226835131645203,0.974845945835114,0.0948633328080177,0.201683670282364,0.975030839443207,-0.0356889069080353,0.21918286383152,0.973518133163452,0.121866419911385,0.193418949842453,0.974141240119934,0.0724797546863556,0.21399861574173,0.975221872329712,-0.0368401780724525,0.218140050768852,0.974845945835114,0.0948633328080177,0.201683670282364,0.960440993309021,0.200160399079323,0.193619653582573,0.960049629211426,-0.0113026676699519,0.279601365327835,0.974141240119934,0.0724797546863556,0.21399861574173,0.943131864070892,0.0538982674479485,0.328020185232162,0.960049629211426,-0.0113026676699519,0.279601365327835,0.960440993309021,0.200160399079323,0.193619653582573,0.95115715265274,-0.0151911908760667,0.308332860469818,0.943131864070892,0.0538982674479485,0.328020185232162,0.907122075557709,0.00628320639953017,0.420820683240891,0.816789925098419,0.117120966315269,0.564921855926514,0.804334163665771,0.0936460569500923,0.586751103401184,0.702869057655334,0.0537651628255844,0.70928430557251,0.816789925098419,0.117120966315269,0.564921855926514,0.906465649604797,0.162954449653625,0.389571279287338,0.842305541038513,0.169672608375549,0.51159793138504,0.95115715265274,-0.0151911908760667,0.308332860469818,0.907122075557709,0.00628320639953017,0.420820683240891,0.94171154499054,0.0926693305373192,0.323406279087067,0.94171154499054,0.0926693305373192,0.323406279087067,0.883191645145416,0.129262164235115,0.450847774744034,0.906465649604797,0.162954449653625,0.389571279287338,0.702869057655334,0.0537651628255844,0.70928430557251,0.804334163665771,0.0936460569500923,0.586751103401184,0.73927891254425,0.0698882788419724,0.669762849807739,0.88463819026947,-0.144546076655388,0.443307489156723,\r\n0.823882460594177,-0.0770900696516037,0.561493217945099,0.856944441795349,-0.074417419731617,0.510007917881012,0.886529922485352,-0.170328751206398,0.430177450180054,0.88463819026947,-0.144546076655388,0.443307489156723,0.856944441795349,-0.074417419731617,0.510007917881012,0.83301842212677,-0.027086528018117,0.552581667900085,0.823882460594177,-0.0770900696516037,0.561493217945099,0.73927891254425,0.0698882788419724,0.669762849807739,0.769705951213837,-0.29580420255661,0.565731763839722,0.886529922485352,-0.170328751206398,0.430177450180054,0.743534088134766,-0.140117332339287,0.653853178024292,0.650254905223846,0.25131830573082,0.716943085193634,0.732336521148682,0.184203997254372,0.65555465221405,0.600937366485596,0.319480210542679,0.732670783996582,0.650254905223846,0.25131830573082,0.716943085193634,0.621749222278595,0.247022345662117,0.743241369724274,0.722396850585938,0.194176867604256,0.663654983043671,0.732336521148682,0.184203997254372,0.65555465221405,0.709631741046906,0.225022152066231,0.667673289775848,0.600937366485596,0.319480210542679,0.732670783996582,0.695835411548615,0.00325415772385895,0.718193888664246,0.759991466999054,0.09315025806427,0.643223106861115,0.824035048484802,0.0308896172791719,0.565695941448212,0.824035048484802,0.0308896172791719,0.565695941448212,0.759991466999054,0.09315025806427,0.643223106861115,0.790246546268463,0.175652533769608,0.587074458599091,0.725631952285767,0.253552436828613,0.639663398265839,0.795470833778381,0.146036699414253,0.58813202381134,0.790246546268463,0.175652533769608,0.587074458599091,0.663332164287567,0.283455669879913,0.692562758922577,0.795470833778381,0.146036699414253,0.58813202381134,0.725631952285767,0.253552436828613,0.639663398265839,0.49820551276207,0.420292675495148,0.758383274078369,0.709631741046906,0.225022152066231,0.667673289775848,0.663332164287567,0.283455669879913,0.692562758922577,0.515254139900208,0.0938493087887764,0.851883411407471,0.558884382247925,0.054775808006525,0.827434480190277,0.474894255399704,0.0376962162554264,0.879235088825226,\r\n0.515254139900208,0.0938493087887764,0.851883411407471,0.534378051757813,-0.0746149122714996,0.841945707798004,0.581170201301575,-0.0781069323420525,0.810024917125702,0.474894255399704,0.0376962162554264,0.879235088825226,0.518883585929871,-0.0204521045088768,0.854600131511688,0.496804565191269,0.00290034804493189,0.867857575416565,0.468710452318192,0.00718054501339793,0.883322656154633,0.520994246006012,-0.0639992654323578,0.851157426834106,0.526188313961029,-0.0435833223164082,0.849250376224518,0.468710452318192,0.00718054501339793,0.883322656154633,0.503530859947205,0.0345612578094006,0.863285601139069,0.445376068353653,0.103299781680107,0.889364361763,0.520994246006012,-0.0639992654323578,0.851157426834106,0.536318004131317,-0.137334227561951,0.83276778459549,0.526188313961029,-0.0435833223164082,0.849250376224518,0.358386516571045,0.232702568173409,0.904106438159943,0.356440633535385,0.127176865935326,0.92562198638916,0.164979547262192,0.22116956114769,0.961179316043854,0.51749575138092,0.2262874096632,0.825222373008728,0.358386516571045,0.232702568173409,0.904106438159943,0.411791056394577,0.228082597255707,0.882273375988007,0.557763695716858,0.163732454180717,0.813689887523651,0.411791056394577,0.228082597255707,0.882273375988007,0.445376068353653,0.103299781680107,0.889364361763,0.656501531600952,-0.191554874181747,0.729597389698029,0.734341084957123,-0.127991825342178,0.666604161262512,0.671780586242676,-0.0598374903202057,0.738329291343689,0.671780586242676,-0.0598374903202057,0.738329291343689,0.526188313961029,-0.0435833223164082,0.849250376224518,0.536318004131317,-0.137334227561951,0.83276778459549,0.641210675239563,-0.309318035840988,0.702261388301849,0.491547673940659,-0.315078377723694,0.811853647232056,0.624528467655182,-0.281293213367462,0.728586494922638,0.657171368598938,-0.130419224500656,0.742372155189514,0.749265253543854,-0.259223103523254,0.609429895877838,0.624528467655182,-0.281293213367462,0.728586494922638,0.657171368598938,-0.130419224500656,0.742372155189514,0.734341084957123,-0.127991825342178,0.666604161262512,\r\n0.749265253543854,-0.259223103523254,0.609429895877838,0.534378051757813,-0.0746149122714996,0.841945707798004,0.52007794380188,-0.269670933485031,0.810429751873016,0.581170201301575,-0.0781069323420525,0.810024917125702,0.491547673940659,-0.315078377723694,0.811853647232056,0.552319169044495,-0.261921882629395,0.791416645050049,0.52007794380188,-0.269670933485031,0.810429751873016,0.164979547262192,0.22116956114769,0.961179316043854,0.2342798858881,0.188441604375839,0.953730881214142,0.0238498691469431,0.224427372217178,0.974198758602142,0.2342798858881,0.188441604375839,0.953730881214142,0.291587263345718,0.235635176301003,0.927066802978516,0.0238498691469431,0.224427372217178,0.974198758602142,0.465301245450974,0.341113269329071,0.816784143447876,0.465382248163223,0.413421213626862,0.782625138759613,0.356815040111542,0.30386483669281,0.883373737335205,0.291587263345718,0.235635176301003,0.927066802978516,0.437559694051743,0.276520311832428,0.855615496635437,0.356815040111542,0.30386483669281,0.883373737335205,0.369543462991714,0.598122179508209,0.711116969585419,0.238133206963539,0.497059434652328,0.834400594234467,0.219282746315002,0.560246348381042,0.798773407936096,0.369543462991714,0.598122179508209,0.711116969585419,0.508907318115234,0.631585597991943,0.584904074668884,0.402880400419235,0.46028271317482,0.791092336177826,0.529886245727539,0.623711705207825,0.574633836746216,0.509121060371399,0.60287082195282,0.614281833171844,0.527202963829041,0.497838318347931,0.688631892204285,0.432465493679047,0.521998167037964,0.735181152820587,0.512398421764374,0.447214901447296,0.733107447624207,0.527202963829041,0.497838318347931,0.688631892204285,0.529886245727539,0.623711705207825,0.574633836746216,0.508907318115234,0.631585597991943,0.584904074668884,0.509121060371399,0.60287082195282,0.614281833171844,0.546139359474182,0.397972226142883,0.737122595310211,0.512398421764374,0.447214901447296,0.733107447624207,0.465382248163223,0.413421213626862,0.782625138759613,0.220579251646996,0.499068766832352,0.838018476963043,\r\n0.238133206963539,0.497059434652328,0.834400594234467,0.222265154123306,0.485828131437302,0.845321893692017,0.250494122505188,0.514607131481171,0.820019543170929,0.248536974191666,0.436931818723679,0.86447662115097,0.222265154123306,0.485828131437302,0.845321893692017,0.248536974191666,0.436931818723679,0.86447662115097,0.250494122505188,0.514607131481171,0.820019543170929,0.273504644632339,0.420893728733063,0.864895105361938,0.945594012737274,-0.305946677923203,0.110672660171986,0.839141428470612,-0.403505027294159,0.36472624540329,0.982881128787994,-0.133762493729591,0.126697093248367,0.839141428470612,-0.403505027294159,0.36472624540329,0.74592912197113,-0.392771452665329,0.537885010242462,0.892681121826172,-0.248533919453621,0.375967025756836,0.938029110431671,-0.0775898098945618,0.337758600711823,0.800066232681274,-0.298927366733551,0.520131170749664,0.86673241853714,-0.173378840088844,0.467669308185577,0.800066232681274,-0.298927366733551,0.520131170749664,0.892681121826172,-0.248533919453621,0.375967025756836,0.74592912197113,-0.392771452665329,0.537885010242462,0.944404542446136,0.0111262165009975,0.328596919775009,0.973866879940033,-0.0113480426371098,0.226835131645203,0.966587483882904,-0.000442628108430654,0.256336390972137,0.944404542446136,0.0111262165009975,0.328596919775009,0.938546121120453,0.0159810185432434,0.344783455133438,0.854289293289185,-0.0948177129030228,0.51107656955719,0.86673241853714,-0.173378840088844,0.467669308185577,0.854289293289185,-0.0948177129030228,0.51107656955719,0.916891396045685,-0.0399795956909657,0.397129267454147,0.695835411548615,0.00325415772385895,0.718193888664246,0.709941744804382,-0.150845974683762,0.687915742397308,0.580678284168243,-0.0906465202569962,0.809070944786072,0.617124438285828,-0.263611048460007,0.741394937038422,0.769705951213837,-0.29580420255661,0.565731763839722,0.743534088134766,-0.140117332339287,0.653853178024292,0.602237820625305,-0.244163662195206,0.760061621665955,0.617124438285828,-0.263611048460007,0.741394937038422,0.539119720458984,-0.141406342387199,0.830273449420929,\r\n0.580678284168243,-0.0906465202569962,0.809070944786072,0.602237820625305,-0.244163662195206,0.760061621665955,0.539119720458984,-0.141406342387199,0.830273449420929,0.975030839443207,-0.0356889069080353,0.21918286383152,0.973866879940033,-0.0113480426371098,0.226835131645203,0.973518133163452,0.121866419911385,0.193418949842453,0.974845945835114,0.0948633328080177,0.201683670282364,0.973518133163452,0.121866419911385,0.193418949842453,0.953631281852722,0.250715434551239,0.166520327329636,0.974141240119934,0.0724797546863556,0.21399861574173,0.974845945835114,0.0948633328080177,0.201683670282364,0.945023953914642,0.286252170801163,0.158079355955124,0.960440993309021,0.200160399079323,0.193619653582573,0.974141240119934,0.0724797546863556,0.21399861574173,0.945023953914642,0.286252170801163,0.158079355955124,0.960440993309021,0.200160399079323,0.193619653582573,0.903520405292511,0.328956663608551,0.274660229682922,0.943131864070892,0.0538982674479485,0.328020185232162,0.943131864070892,0.0538982674479485,0.328020185232162,0.89113187789917,0.158469930291176,0.425171822309494,0.907122075557709,0.00628320639953017,0.420820683240891,0.816789925098419,0.117120966315269,0.564921855926514,0.842305541038513,0.169672608375549,0.51159793138504,0.804334163665771,0.0936460569500923,0.586751103401184,0.883191645145416,0.129262164235115,0.450847774744034,0.842305541038513,0.169672608375549,0.51159793138504,0.906465649604797,0.162954449653625,0.389571279287338,0.94171154499054,0.0926693305373192,0.323406279087067,0.907122075557709,0.00628320639953017,0.420820683240891,0.883191645145416,0.129262164235115,0.450847774744034,0.83301842212677,-0.027086528018117,0.552581667900085,0.73927891254425,0.0698882788419724,0.669762849807739,0.804334163665771,0.0936460569500923,0.586751103401184,0.851408421993256,0.030738839879632,0.523601591587067,0.856944441795349,-0.074417419731617,0.510007917881012,0.823882460594177,-0.0770900696516037,0.561493217945099,0.886529922485352,-0.170328751206398,0.430177450180054,0.856944441795349,-0.074417419731617,0.510007917881012,\r\n0.743534088134766,-0.140117332339287,0.653853178024292,0.83301842212677,-0.027086528018117,0.552581667900085,0.851408421993256,0.030738839879632,0.523601591587067,0.823882460594177,-0.0770900696516037,0.561493217945099,0.530267596244812,0.342416167259216,0.775607645511627,0.650254905223846,0.25131830573082,0.716943085193634,0.600937366485596,0.319480210542679,0.732670783996582,0.574234306812286,0.285582840442657,0.767266154289246,0.621749222278595,0.247022345662117,0.743241369724274,0.650254905223846,0.25131830573082,0.716943085193634,0.600937366485596,0.319480210542679,0.732670783996582,0.709631741046906,0.225022152066231,0.667673289775848,0.49820551276207,0.420292675495148,0.758383274078369,0.723302900791168,0.128993943333626,0.678375482559204,0.759991466999054,0.09315025806427,0.643223106861115,0.695835411548615,0.00325415772385895,0.718193888664246,0.759991466999054,0.09315025806427,0.643223106861115,0.74396288394928,0.206619799137115,0.6354740858078,0.790246546268463,0.175652533769608,0.587074458599091,0.725631952285767,0.253552436828613,0.639663398265839,0.790246546268463,0.175652533769608,0.587074458599091,0.682872295379639,0.311440587043762,0.660825252532959,0.663332164287567,0.283455669879913,0.692562758922577,0.725631952285767,0.253552436828613,0.639663398265839,0.587858378887177,0.388188928365707,0.709740579128265,0.49820551276207,0.420292675495148,0.758383274078369,0.663332164287567,0.283455669879913,0.692562758922577,0.587858378887177,0.388188928365707,0.709740579128265,0.445798575878143,-0.0136420130729675,0.895029246807098,0.515254139900208,0.0938493087887764,0.851883411407471,0.474894255399704,0.0376962162554264,0.879235088825226,0.445798575878143,-0.0136420130729675,0.895029246807098,0.534378051757813,-0.0746149122714996,0.841945707798004,0.515254139900208,0.0938493087887764,0.851883411407471,0.478120476007462,-0.0128174684941769,0.878200709819794,0.474894255399704,0.0376962162554264,0.879235088825226,0.496804565191269,0.00290034804493189,0.867857575416565,0.468710452318192,0.00718054501339793,0.883322656154633,\r\n0.526188313961029,-0.0435833223164082,0.849250376224518,0.503530859947205,0.0345612578094006,0.863285601139069,0.503530859947205,0.0345612578094006,0.863285601139069,0.557763695716858,0.163732454180717,0.813689887523651,0.445376068353653,0.103299781680107,0.889364361763,0.474885791540146,0.108797900378704,0.87329626083374,0.356440633535385,0.127176865935326,0.92562198638916,0.358386516571045,0.232702568173409,0.904106438159943,0.164979547262192,0.22116956114769,0.961179316043854,0.356440633535385,0.127176865935326,0.92562198638916,0.2342798858881,0.188441604375839,0.953730881214142,0.474885791540146,0.108797900378704,0.87329626083374,0.358386516571045,0.232702568173409,0.904106438159943,0.51749575138092,0.2262874096632,0.825222373008728,0.557763695716858,0.163732454180717,0.813689887523651,0.51749575138092,0.2262874096632,0.825222373008728,0.411791056394577,0.228082597255707,0.882273375988007,0.69479912519455,-0.0113178454339504,0.719114661216736,0.671780586242676,-0.0598374903202057,0.738329291343689,0.734341084957123,-0.127991825342178,0.666604161262512,0.633756995201111,0.061340905725956,0.771096110343933,0.526188313961029,-0.0435833223164082,0.849250376224518,0.671780586242676,-0.0598374903202057,0.738329291343689,0.544842422008514,-0.209530845284462,0.811938047409058,0.624528467655182,-0.281293213367462,0.728586494922638,0.491547673940659,-0.315078377723694,0.811853647232056,0.657171368598938,-0.130419224500656,0.742372155189514,0.624528467655182,-0.281293213367462,0.728586494922638,0.544842422008514,-0.209530845284462,0.811938047409058,0.657171368598938,-0.130419224500656,0.742372155189514,0.69479912519455,-0.0113178454339504,0.719114661216736,0.734341084957123,-0.127991825342178,0.666604161262512,0.531250298023224,-0.265706062316895,0.804470717906952,0.52007794380188,-0.269670933485031,0.810429751873016,0.534378051757813,-0.0746149122714996,0.841945707798004,0.474369049072266,-0.355982512235641,0.80513995885849,0.491547673940659,-0.315078377723694,0.811853647232056,0.52007794380188,-0.269670933485031,0.810429751873016,\r\n0.386699140071869,0.173928365111351,0.905655920505524,0.291587263345718,0.235635176301003,0.927066802978516,0.2342798858881,0.188441604375839,0.953730881214142,0.546139359474182,0.397972226142883,0.737122595310211,0.465382248163223,0.413421213626862,0.782625138759613,0.465301245450974,0.341113269329071,0.816784143447876,0.465301245450974,0.341113269329071,0.816784143447876,0.356815040111542,0.30386483669281,0.883373737335205,0.437559694051743,0.276520311832428,0.855615496635437,0.291587263345718,0.235635176301003,0.927066802978516,0.500799536705017,0.202507361769676,0.841540515422821,0.437559694051743,0.276520311832428,0.855615496635437,0.402880400419235,0.46028271317482,0.791092336177826,0.238133206963539,0.497059434652328,0.834400594234467,0.369543462991714,0.598122179508209,0.711116969585419,0.402880400419235,0.46028271317482,0.791092336177826,0.508907318115234,0.631585597991943,0.584904074668884,0.483003526926041,0.599706828594208,0.638011753559113,0.490589529275894,0.545006394386292,0.679918944835663,0.529886245727539,0.623711705207825,0.574633836746216,0.527202963829041,0.497838318347931,0.688631892204285,0.527202963829041,0.497838318347931,0.688631892204285,0.512398421764374,0.447214901447296,0.733107447624207,0.562988638877869,0.409378498792648,0.717950463294983,0.483003526926041,0.599706828594208,0.638011753559113,0.508907318115234,0.631585597991943,0.584904074668884,0.529886245727539,0.623711705207825,0.574633836746216,0.546139359474182,0.397972226142883,0.737122595310211,0.562988638877869,0.409378498792648,0.717950463294983,0.512398421764374,0.447214901447296,0.733107447624207,0.250494122505188,0.514607131481171,0.820019543170929,0.222265154123306,0.485828131437302,0.845321893692017,0.238133206963539,0.497059434652328,0.834400594234467,0.784700036048889,-0.538433492183685,0.307140082120895,0.839141428470612,-0.403505027294159,0.36472624540329,0.945594012737274,-0.305946677923203,0.110672660171986,0.839141428470612,-0.403505027294159,0.36472624540329,0.708737969398499,-0.482795566320419,0.514391601085663,\r\n0.74592912197113,-0.392771452665329,0.537885010242462,0.86673241853714,-0.173378840088844,0.467669308185577,0.800066232681274,-0.298927366733551,0.520131170749664,0.764685809612274,-0.241550520062447,0.597418546676636,0.800066232681274,-0.298927366733551,0.520131170749664,0.74592912197113,-0.392771452665329,0.537885010242462,0.697413265705109,-0.348186999559402,0.626402735710144,0.944404542446136,0.0111262165009975,0.328596919775009,0.954124212265015,0.179050877690315,0.239974454045296,0.973866879940033,-0.0113480426371098,0.226835131645203,0.944404542446136,0.0111262165009975,0.328596919775009,0.854289293289185,-0.0948177129030228,0.51107656955719,0.872495412826538,0.114851079881191,0.474932551383972,0.86673241853714,-0.173378840088844,0.467669308185577,0.764685809612274,-0.241550520062447,0.597418546676636,0.854289293289185,-0.0948177129030228,0.51107656955719,0.494246929883957,0.0108522847294807,0.869253754615784,0.695835411548615,0.00325415772385895,0.718193888664246,0.580678284168243,-0.0906465202569962,0.809070944786072,0.539119720458984,-0.141406342387199,0.830273449420929,0.617124438285828,-0.263611048460007,0.741394937038422,0.743534088134766,-0.140117332339287,0.653853178024292,0.580678284168243,-0.0906465202569962,0.809070944786072,0.539119720458984,-0.141406342387199,0.830273449420929,0.494246929883957,0.0108522847294807,0.869253754615784,0.954124212265015,0.179050877690315,0.239974454045296,0.973518133163452,0.121866419911385,0.193418949842453,0.973866879940033,-0.0113480426371098,0.226835131645203,0.973518133163452,0.121866419911385,0.193418949842453,0.923267662525177,0.344200432300568,0.170595362782478,0.953631281852722,0.250715434551239,0.166520327329636,0.945023953914642,0.286252170801163,0.158079355955124,0.974845945835114,0.0948633328080177,0.201683670282364,0.953631281852722,0.250715434551239,0.166520327329636,0.889109551906586,0.433357417583466,0.147259801626205,0.960440993309021,0.200160399079323,0.193619653582573,0.945023953914642,0.286252170801163,0.158079355955124,0.960440993309021,0.200160399079323,0.193619653582573,\r\n0.889109551906586,0.433357417583466,0.147259801626205,0.903520405292511,0.328956663608551,0.274660229682922,0.943131864070892,0.0538982674479485,0.328020185232162,0.903520405292511,0.328956663608551,0.274660229682922,0.89113187789917,0.158469930291176,0.425171822309494,0.878171861171722,0.105882696807384,0.46647921204567,0.907122075557709,0.00628320639953017,0.420820683240891,0.89113187789917,0.158469930291176,0.425171822309494,0.804334163665771,0.0936460569500923,0.586751103401184,0.842305541038513,0.169672608375549,0.51159793138504,0.868783533573151,0.0196597557514906,0.494801491498947,0.842305541038513,0.169672608375549,0.51159793138504,0.883191645145416,0.129262164235115,0.450847774744034,0.868783533573151,0.0196597557514906,0.494801491498947,0.883191645145416,0.129262164235115,0.450847774744034,0.907122075557709,0.00628320639953017,0.420820683240891,0.868783533573151,0.0196597557514906,0.494801491498947,0.83301842212677,-0.027086528018117,0.552581667900085,0.804334163665771,0.0936460569500923,0.586751103401184,0.860375106334686,-0.0271683894097805,0.508936524391174,0.856944441795349,-0.074417419731617,0.510007917881012,0.851408421993256,0.030738839879632,0.523601591587067,0.673935294151306,0.15028128027916,0.723344027996063,0.743534088134766,-0.140117332339287,0.653853178024292,0.856944441795349,-0.074417419731617,0.510007917881012,0.647358775138855,0.0293091218918562,0.761621654033661,0.83301842212677,-0.027086528018117,0.552581667900085,0.860375106334686,-0.0271683894097805,0.508936524391174,0.851408421993256,0.030738839879632,0.523601591587067,0.530267596244812,0.342416167259216,0.775607645511627,0.574234306812286,0.285582840442657,0.767266154289246,0.650254905223846,0.25131830573082,0.716943085193634,0.621749222278595,0.247022345662117,0.743241369724274,0.574234306812286,0.285582840442657,0.767266154289246,0.532677888870239,0.303108781576157,0.790176749229431,0.74396288394928,0.206619799137115,0.6354740858078,0.759991466999054,0.09315025806427,0.643223106861115,0.723302900791168,0.128993943333626,0.678375482559204,\r\n0.620432615280151,0.134505033493042,0.772639393806458,0.723302900791168,0.128993943333626,0.678375482559204,0.695835411548615,0.00325415772385895,0.718193888664246,0.790246546268463,0.175652533769608,0.587074458599091,0.74396288394928,0.206619799137115,0.6354740858078,0.682872295379639,0.311440587043762,0.660825252532959,0.725631952285767,0.253552436828613,0.639663398265839,0.682872295379639,0.311440587043762,0.660825252532959,0.587858378887177,0.388188928365707,0.709740579128265,0.49820551276207,0.420292675495148,0.758383274078369,0.587858378887177,0.388188928365707,0.709740579128265,0.418978989124298,0.51156222820282,0.750173568725586,0.474894255399704,0.0376962162554264,0.879235088825226,0.478120476007462,-0.0128174684941769,0.878200709819794,0.445798575878143,-0.0136420130729675,0.895029246807098,0.445798575878143,-0.0136420130729675,0.895029246807098,0.531250298023224,-0.265706062316895,0.804470717906952,0.534378051757813,-0.0746149122714996,0.841945707798004,0.503530859947205,0.0345612578094006,0.863285601139069,0.526188313961029,-0.0435833223164082,0.849250376224518,0.633756995201111,0.061340905725956,0.771096110343933,0.557763695716858,0.163732454180717,0.813689887523651,0.503530859947205,0.0345612578094006,0.863285601139069,0.633756995201111,0.061340905725956,0.771096110343933,0.356440633535385,0.127176865935326,0.92562198638916,0.474885791540146,0.108797900378704,0.87329626083374,0.450336158275604,0.118550099432468,0.884953737258911,0.386699140071869,0.173928365111351,0.905655920505524,0.2342798858881,0.188441604375839,0.953730881214142,0.356440633535385,0.127176865935326,0.92562198638916,0.474885791540146,0.108797900378704,0.87329626083374,0.51749575138092,0.2262874096632,0.825222373008728,0.585630238056183,0.156663134694099,0.795294761657715,0.51749575138092,0.2262874096632,0.825222373008728,0.557763695716858,0.163732454180717,0.813689887523651,0.585630238056183,0.156663134694099,0.795294761657715,0.69479912519455,-0.0113178454339504,0.719114661216736,0.731242477893829,0.0132252145558596,0.681989371776581,\r\n0.671780586242676,-0.0598374903202057,0.738329291343689,0.633756995201111,0.061340905725956,0.771096110343933,0.671780586242676,-0.0598374903202057,0.738329291343689,0.731242477893829,0.0132252145558596,0.681989371776581,0.491547673940659,-0.315078377723694,0.811853647232056,0.537452399730682,-0.260897994041443,0.801920831203461,0.544842422008514,-0.209530845284462,0.811938047409058,0.561429738998413,-0.0946241021156311,0.822096586227417,0.657171368598938,-0.130419224500656,0.742372155189514,0.544842422008514,-0.209530845284462,0.811938047409058,0.657171368598938,-0.130419224500656,0.742372155189514,0.577467679977417,0.0449533611536026,0.815174877643585,0.69479912519455,-0.0113178454339504,0.719114661216736,0.531250298023224,-0.265706062316895,0.804470717906952,0.474369049072266,-0.355982512235641,0.80513995885849,0.52007794380188,-0.269670933485031,0.810429751873016,0.543687701225281,-0.354370504617691,0.760805547237396,0.491547673940659,-0.315078377723694,0.811853647232056,0.474369049072266,-0.355982512235641,0.80513995885849,0.386699140071869,0.173928365111351,0.905655920505524,0.500799536705017,0.202507361769676,0.841540515422821,0.291587263345718,0.235635176301003,0.927066802978516,0.543479800224304,0.285009682178497,0.789556205272675,0.546139359474182,0.397972226142883,0.737122595310211,0.465301245450974,0.341113269329071,0.816784143447876,0.543479800224304,0.285009682178497,0.789556205272675,0.465301245450974,0.341113269329071,0.816784143447876,0.437559694051743,0.276520311832428,0.855615496635437,0.500799536705017,0.202507361769676,0.841540515422821,0.543479800224304,0.285009682178497,0.789556205272675,0.437559694051743,0.276520311832428,0.855615496635437,0.238133206963539,0.497059434652328,0.834400594234467,0.402880400419235,0.46028271317482,0.791092336177826,0.252773016691208,0.400063812732697,0.880939602851868,0.402880400419235,0.46028271317482,0.791092336177826,0.483003526926041,0.599706828594208,0.638011753559113,0.352392375469208,0.364965528249741,0.861753821372986,0.490589529275894,0.545006394386292,0.679918944835663,\r\n0.427132070064545,0.567909419536591,0.703588604927063,0.529886245727539,0.623711705207825,0.574633836746216,0.461232125759125,0.418584406375885,0.782337427139282,0.490589529275894,0.545006394386292,0.679918944835663,0.527202963829041,0.497838318347931,0.688631892204285,0.461232125759125,0.418584406375885,0.782337427139282,0.527202963829041,0.497838318347931,0.688631892204285,0.562988638877869,0.409378498792648,0.717950463294983,0.427132070064545,0.567909419536591,0.703588604927063,0.483003526926041,0.599706828594208,0.638011753559113,0.529886245727539,0.623711705207825,0.574633836746216,0.546139359474182,0.397972226142883,0.737122595310211,0.599883317947388,0.396584540605545,0.694881677627563,0.562988638877869,0.409378498792648,0.717950463294983,0.2407615929842,0.507385313510895,0.827401876449585,0.250494122505188,0.514607131481171,0.820019543170929,0.238133206963539,0.497059434652328,0.834400594234467,0.839141428470612,-0.403505027294159,0.36472624540329,0.784700036048889,-0.538433492183685,0.307140082120895,0.708737969398499,-0.482795566320419,0.514391601085663,0.697413265705109,-0.348186999559402,0.626402735710144,0.74592912197113,-0.392771452665329,0.537885010242462,0.708737969398499,-0.482795566320419,0.514391601085663,0.800066232681274,-0.298927366733551,0.520131170749664,0.697413265705109,-0.348186999559402,0.626402735710144,0.764685809612274,-0.241550520062447,0.597418546676636,0.932039558887482,0.131638541817665,0.337599635124207,0.954124212265015,0.179050877690315,0.239974454045296,0.944404542446136,0.0111262165009975,0.328596919775009,0.782933533191681,0.0724519193172455,0.617871940135956,0.872495412826538,0.114851079881191,0.474932551383972,0.854289293289185,-0.0948177129030228,0.51107656955719,0.932039558887482,0.131638541817665,0.337599635124207,0.944404542446136,0.0111262165009975,0.328596919775009,0.872495412826538,0.114851079881191,0.474932551383972,0.726148068904877,-0.051966018974781,0.685571551322937,0.854289293289185,-0.0948177129030228,0.51107656955719,0.764685809612274,-0.241550520062447,0.597418546676636,\r\n0.494246929883957,0.0108522847294807,0.869253754615784,0.620432615280151,0.134505033493042,0.772639393806458,0.695835411548615,0.00325415772385895,0.718193888664246,0.539119720458984,-0.141406342387199,0.830273449420929,0.743534088134766,-0.140117332339287,0.653853178024292,0.553481757640839,-0.050752941519022,0.831313371658325,0.553481757640839,-0.050752941519022,0.831313371658325,0.494246929883957,0.0108522847294807,0.869253754615784,0.539119720458984,-0.141406342387199,0.830273449420929,0.954124212265015,0.179050877690315,0.239974454045296,0.923267662525177,0.344200432300568,0.170595362782478,0.973518133163452,0.121866419911385,0.193418949842453,0.923267662525177,0.344200432300568,0.170595362782478,0.903835237026215,0.401255279779434,0.148579746484756,0.953631281852722,0.250715434551239,0.166520327329636,0.945023953914642,0.286252170801163,0.158079355955124,0.953631281852722,0.250715434551239,0.166520327329636,0.903835237026215,0.401255279779434,0.148579746484756,0.889109551906586,0.433357417583466,0.147259801626205,0.945023953914642,0.286252170801163,0.158079355955124,0.852619051933289,0.510683119297028,0.110650055110455,0.903520405292511,0.328956663608551,0.274660229682922,0.889109551906586,0.433357417583466,0.147259801626205,0.800738632678986,0.555893361568451,0.223159477114677,0.903520405292511,0.328956663608551,0.274660229682922,0.815575301647186,0.446502655744553,0.368065446615219,0.89113187789917,0.158469930291176,0.425171822309494,0.878171861171722,0.105882696807384,0.46647921204567,0.868783533573151,0.0196597557514906,0.494801491498947,0.907122075557709,0.00628320639953017,0.420820683240891,0.878171861171722,0.105882696807384,0.46647921204567,0.89113187789917,0.158469930291176,0.425171822309494,0.815575301647186,0.446502655744553,0.368065446615219,0.804334163665771,0.0936460569500923,0.586751103401184,0.868783533573151,0.0196597557514906,0.494801491498947,0.860375106334686,-0.0271683894097805,0.508936524391174,0.701287925243378,0.256175875663757,0.665258705615997,0.673935294151306,0.15028128027916,0.723344027996063,\r\n0.851408421993256,0.030738839879632,0.523601591587067,0.673935294151306,0.15028128027916,0.723344027996063,0.647358775138855,0.0293091218918562,0.761621654033661,0.856944441795349,-0.074417419731617,0.510007917881012,0.647358775138855,0.0293091218918562,0.761621654033661,0.553481757640839,-0.050752941519022,0.831313371658325,0.743534088134766,-0.140117332339287,0.653853178024292,0.851408421993256,0.030738839879632,0.523601591587067,0.860375106334686,-0.0271683894097805,0.508936524391174,0.790079236030579,0.211339101195335,0.575421988964081,0.574234306812286,0.285582840442657,0.767266154289246,0.530267596244812,0.342416167259216,0.775607645511627,0.532677888870239,0.303108781576157,0.790176749229431,0.74396288394928,0.206619799137115,0.6354740858078,0.723302900791168,0.128993943333626,0.678375482559204,0.696586906909943,0.22577853500843,0.681021690368652,0.620432615280151,0.134505033493042,0.772639393806458,0.696586906909943,0.22577853500843,0.681021690368652,0.723302900791168,0.128993943333626,0.678375482559204,0.628250062465668,0.348340749740601,0.695672631263733,0.682872295379639,0.311440587043762,0.660825252532959,0.74396288394928,0.206619799137115,0.6354740858078,0.510518252849579,0.463199377059937,0.724442839622498,0.587858378887177,0.388188928365707,0.709740579128265,0.682872295379639,0.311440587043762,0.660825252532959,0.510518252849579,0.463199377059937,0.724442839622498,0.418978989124298,0.51156222820282,0.750173568725586,0.587858378887177,0.388188928365707,0.709740579128265,0.445798575878143,-0.0136420130729675,0.895029246807098,0.478120476007462,-0.0128174684941769,0.878200709819794,0.407710790634155,-0.0718268603086472,0.910281658172607,0.445798575878143,-0.0136420130729675,0.895029246807098,0.464602023363113,-0.138388812541962,0.87463903427124,0.531250298023224,-0.265706062316895,0.804470717906952,0.557763695716858,0.163732454180717,0.813689887523651,0.633756995201111,0.061340905725956,0.771096110343933,0.639743983745575,0.163183435797691,0.751065015792847,0.450336158275604,0.118550099432468,0.884953737258911,\r\n0.474885791540146,0.108797900378704,0.87329626083374,0.531249165534973,0.102901436388493,0.840943276882172,0.356440633535385,0.127176865935326,0.92562198638916,0.450336158275604,0.118550099432468,0.884953737258911,0.386699140071869,0.173928365111351,0.905655920505524,0.536453127861023,0.0353842489421368,0.843187928199768,0.474885791540146,0.108797900378704,0.87329626083374,0.585630238056183,0.156663134694099,0.795294761657715,0.557763695716858,0.163732454180717,0.813689887523651,0.639743983745575,0.163183435797691,0.751065015792847,0.585630238056183,0.156663134694099,0.795294761657715,0.66677337884903,0.0911586880683899,0.739664256572723,0.731242477893829,0.0132252145558596,0.681989371776581,0.69479912519455,-0.0113178454339504,0.719114661216736,0.633756995201111,0.061340905725956,0.771096110343933,0.731242477893829,0.0132252145558596,0.681989371776581,0.638456106185913,0.0715431421995163,0.766325712203979,0.491547673940659,-0.315078377723694,0.811853647232056,0.543687701225281,-0.354370504617691,0.760805547237396,0.537452399730682,-0.260897994041443,0.801920831203461,0.587347745895386,-0.165840432047844,0.792161226272583,0.544842422008514,-0.209530845284462,0.811938047409058,0.537452399730682,-0.260897994041443,0.801920831203461,0.561429738998413,-0.0946241021156311,0.822096586227417,0.577467679977417,0.0449533611536026,0.815174877643585,0.657171368598938,-0.130419224500656,0.742372155189514,0.587347745895386,-0.165840432047844,0.792161226272583,0.561429738998413,-0.0946241021156311,0.822096586227417,0.544842422008514,-0.209530845284462,0.811938047409058,0.577467679977417,0.0449533611536026,0.815174877643585,0.66677337884903,0.0911586880683899,0.739664256572723,0.69479912519455,-0.0113178454339504,0.719114661216736,0.543687701225281,-0.354370504617691,0.760805547237396,0.474369049072266,-0.355982512235641,0.80513995885849,0.531250298023224,-0.265706062316895,0.804470717906952,0.450336158275604,0.118550099432468,0.884953737258911,0.500799536705017,0.202507361769676,0.841540515422821,0.386699140071869,0.173928365111351,0.905655920505524,\r\n0.543479800224304,0.285009682178497,0.789556205272675,0.599883317947388,0.396584540605545,0.694881677627563,0.546139359474182,0.397972226142883,0.737122595310211,0.5876824259758,0.153319120407104,0.794432163238525,0.543479800224304,0.285009682178497,0.789556205272675,0.500799536705017,0.202507361769676,0.841540515422821,0.252773016691208,0.400063812732697,0.880939602851868,0.402880400419235,0.46028271317482,0.791092336177826,0.289094746112823,0.293306320905685,0.911260366439819,0.238133206963539,0.497059434652328,0.834400594234467,0.252773016691208,0.400063812732697,0.880939602851868,0.2407615929842,0.507385313510895,0.827401876449585,0.352392375469208,0.364965528249741,0.861753821372986,0.483003526926041,0.599706828594208,0.638011753559113,0.427132070064545,0.567909419536591,0.703588604927063,0.402880400419235,0.46028271317482,0.791092336177826,0.352392375469208,0.364965528249741,0.861753821372986,0.289094746112823,0.293306320905685,0.911260366439819,0.429103314876556,0.498154431581497,0.753466904163361,0.427132070064545,0.567909419536591,0.703588604927063,0.490589529275894,0.545006394386292,0.679918944835663,0.490589529275894,0.545006394386292,0.679918944835663,0.461232125759125,0.418584406375885,0.782337427139282,0.429103314876556,0.498154431581497,0.753466904163361,0.517458736896515,0.401494145393372,0.75567102432251,0.461232125759125,0.418584406375885,0.782337427139282,0.562988638877869,0.409378498792648,0.717950463294983,0.599883317947388,0.396584540605545,0.694881677627563,0.517458736896515,0.401494145393372,0.75567102432251,0.562988638877869,0.409378498792648,0.717950463294983,0.652007281780243,-0.42521658539772,0.627755701541901,0.697413265705109,-0.348186999559402,0.626402735710144,0.708737969398499,-0.482795566320419,0.514391601085663,0.764685809612274,-0.241550520062447,0.597418546676636,0.697413265705109,-0.348186999559402,0.626402735710144,0.685481727123261,-0.188169971108437,0.703353881835938,0.932039558887482,0.131638541817665,0.337599635124207,0.865981161594391,0.318792998790741,0.38528898358345,0.954124212265015,0.179050877690315,0.239974454045296,\r\n0.872495412826538,0.114851079881191,0.474932551383972,0.782933533191681,0.0724519193172455,0.617871940135956,0.758680939674377,0.272991955280304,0.591505229473114,0.726148068904877,-0.051966018974781,0.685571551322937,0.782933533191681,0.0724519193172455,0.617871940135956,0.854289293289185,-0.0948177129030228,0.51107656955719,0.932039558887482,0.131638541817665,0.337599635124207,0.872495412826538,0.114851079881191,0.474932551383972,0.865981161594391,0.318792998790741,0.38528898358345,0.764685809612274,-0.241550520062447,0.597418546676636,0.685481727123261,-0.188169971108437,0.703353881835938,0.726148068904877,-0.051966018974781,0.685571551322937,0.620432615280151,0.134505033493042,0.772639393806458,0.494246929883957,0.0108522847294807,0.869253754615784,0.451663106679916,0.177157208323479,0.874423086643219,0.553481757640839,-0.050752941519022,0.831313371658325,0.467432618141174,0.0807632654905319,0.880331754684448,0.494246929883957,0.0108522847294807,0.869253754615784,0.882639408111572,0.391274869441986,0.260483235120773,0.923267662525177,0.344200432300568,0.170595362782478,0.954124212265015,0.179050877690315,0.239974454045296,0.923267662525177,0.344200432300568,0.170595362782478,0.84743469953537,0.512311220169067,0.139253303408623,0.903835237026215,0.401255279779434,0.148579746484756,0.945023953914642,0.286252170801163,0.158079355955124,0.903835237026215,0.401255279779434,0.148579746484756,0.852619051933289,0.510683119297028,0.110650055110455,0.889109551906586,0.433357417583466,0.147259801626205,0.852619051933289,0.510683119297028,0.110650055110455,0.762102723121643,0.632550179958344,0.138129159808159,0.800738632678986,0.555893361568451,0.223159477114677,0.889109551906586,0.433357417583466,0.147259801626205,0.762102723121643,0.632550179958344,0.138129159808159,0.800738632678986,0.555893361568451,0.223159477114677,0.815575301647186,0.446502655744553,0.368065446615219,0.903520405292511,0.328956663608551,0.274660229682922,0.878171861171722,0.105882696807384,0.46647921204567,0.856070697307587,0.0928685143589973,0.508446872234344,\r\n0.868783533573151,0.0196597557514906,0.494801491498947,0.815575301647186,0.446502655744553,0.368065446615219,0.794868946075439,0.388593226671219,0.466024130582809,0.878171861171722,0.105882696807384,0.46647921204567,0.856070697307587,0.0928685143589973,0.508446872234344,0.860375106334686,-0.0271683894097805,0.508936524391174,0.868783533573151,0.0196597557514906,0.494801491498947,0.701287925243378,0.256175875663757,0.665258705615997,0.505448520183563,0.361183851957321,0.783624827861786,0.673935294151306,0.15028128027916,0.723344027996063,0.851408421993256,0.030738839879632,0.523601591587067,0.706002593040466,0.326100200414658,0.628664314746857,0.701287925243378,0.256175875663757,0.665258705615997,0.673935294151306,0.15028128027916,0.723344027996063,0.43326273560524,0.253677129745483,0.864830136299133,0.647358775138855,0.0293091218918562,0.761621654033661,0.647358775138855,0.0293091218918562,0.761621654033661,0.467432618141174,0.0807632654905319,0.880331754684448,0.553481757640839,-0.050752941519022,0.831313371658325,0.790079236030579,0.211339101195335,0.575421988964081,0.860375106334686,-0.0271683894097805,0.508936524391174,0.856070697307587,0.0928685143589973,0.508446872234344,0.790079236030579,0.211339101195335,0.575421988964081,0.706002593040466,0.326100200414658,0.628664314746857,0.851408421993256,0.030738839879632,0.523601591587067,0.74396288394928,0.206619799137115,0.6354740858078,0.696586906909943,0.22577853500843,0.681021690368652,0.628250062465668,0.348340749740601,0.695672631263733,0.696586906909943,0.22577853500843,0.681021690368652,0.620432615280151,0.134505033493042,0.772639393806458,0.564897835254669,0.311235696077347,0.764213740825653,0.628250062465668,0.348340749740601,0.695672631263733,0.510518252849579,0.463199377059937,0.724442839622498,0.682872295379639,0.311440587043762,0.660825252532959,0.510518252849579,0.463199377059937,0.724442839622498,0.326419830322266,0.588403582572937,0.739750742912292,0.418978989124298,0.51156222820282,0.750173568725586,0.407710790634155,-0.0718268603086472,0.910281658172607,\r\n0.478120476007462,-0.0128174684941769,0.878200709819794,0.513507604598999,-0.118529632687569,0.849859178066254,0.445798575878143,-0.0136420130729675,0.895029246807098,0.407710790634155,-0.0718268603086472,0.910281658172607,0.464602023363113,-0.138388812541962,0.87463903427124,0.519290864467621,-0.270923584699631,0.810516655445099,0.531250298023224,-0.265706062316895,0.804470717906952,0.464602023363113,-0.138388812541962,0.87463903427124,0.638456106185913,0.0715431421995163,0.766325712203979,0.639743983745575,0.163183435797691,0.751065015792847,0.633756995201111,0.061340905725956,0.771096110343933,0.536453127861023,0.0353842489421368,0.843187928199768,0.531249165534973,0.102901436388493,0.840943276882172,0.474885791540146,0.108797900378704,0.87329626083374,0.450336158275604,0.118550099432468,0.884953737258911,0.531249165534973,0.102901436388493,0.840943276882172,0.500799536705017,0.202507361769676,0.841540515422821,0.585630238056183,0.156663134694099,0.795294761657715,0.638456106185913,0.0715431421995163,0.766325712203979,0.536453127861023,0.0353842489421368,0.843187928199768,0.585630238056183,0.156663134694099,0.795294761657715,0.639743983745575,0.163183435797691,0.751065015792847,0.638456106185913,0.0715431421995163,0.766325712203979,0.69377863407135,0.079524889588356,0.715784072875977,0.731242477893829,0.0132252145558596,0.681989371776581,0.66677337884903,0.0911586880683899,0.739664256572723,0.704671502113342,0.0557599477469921,0.70733916759491,0.638456106185913,0.0715431421995163,0.766325712203979,0.731242477893829,0.0132252145558596,0.681989371776581,0.537452399730682,-0.260897994041443,0.801920831203461,0.543687701225281,-0.354370504617691,0.760805547237396,0.639882683753967,-0.303985416889191,0.705792427062988,0.537452399730682,-0.260897994041443,0.801920831203461,0.639882683753967,-0.303985416889191,0.705792427062988,0.587347745895386,-0.165840432047844,0.792161226272583,0.561429738998413,-0.0946241021156311,0.822096586227417,0.583714008331299,-0.0530277937650681,0.810225784778595,0.577467679977417,0.0449533611536026,0.815174877643585,\r\n0.561429738998413,-0.0946241021156311,0.822096586227417,0.587347745895386,-0.165840432047844,0.792161226272583,0.583714008331299,-0.0530277937650681,0.810225784778595,0.577467679977417,0.0449533611536026,0.815174877643585,0.57466071844101,0.156982064247131,0.803194582462311,0.66677337884903,0.0911586880683899,0.739664256572723,0.519290864467621,-0.270923584699631,0.810516655445099,0.543687701225281,-0.354370504617691,0.760805547237396,0.531250298023224,-0.265706062316895,0.804470717906952,0.543479800224304,0.285009682178497,0.789556205272675,0.535246551036835,0.327803701162338,0.778495788574219,0.599883317947388,0.396584540605545,0.694881677627563,0.57056051492691,0.178223669528961,0.801683843135834,0.543479800224304,0.285009682178497,0.789556205272675,0.5876824259758,0.153319120407104,0.794432163238525,0.5876824259758,0.153319120407104,0.794432163238525,0.500799536705017,0.202507361769676,0.841540515422821,0.621490478515625,0.158169001340866,0.767288744449615,0.285392493009567,0.302108466625214,0.909550130367279,0.252773016691208,0.400063812732697,0.880939602851868,0.289094746112823,0.293306320905685,0.911260366439819,0.252773016691208,0.400063812732697,0.880939602851868,0.305773258209229,0.448322147130966,0.839946329593658,0.2407615929842,0.507385313510895,0.827401876449585,0.429647266864777,0.381031900644302,0.818668305873871,0.352392375469208,0.364965528249741,0.861753821372986,0.427132070064545,0.567909419536591,0.703588604927063,0.289094746112823,0.293306320905685,0.911260366439819,0.352392375469208,0.364965528249741,0.861753821372986,0.285392493009567,0.302108466625214,0.909550130367279,0.427132070064545,0.567909419536591,0.703588604927063,0.429103314876556,0.498154431581497,0.753466904163361,0.441919833421707,0.549427926540375,0.709109008312225,0.697413265705109,-0.348186999559402,0.626402735710144,0.652007281780243,-0.42521658539772,0.627755701541901,0.642052948474884,-0.280358523130417,0.713559448719025,0.685481727123261,-0.188169971108437,0.703353881835938,0.697413265705109,-0.348186999559402,0.626402735710144,\r\n0.642052948474884,-0.280358523130417,0.713559448719025,0.882639408111572,0.391274869441986,0.260483235120773,0.954124212265015,0.179050877690315,0.239974454045296,0.865981161594391,0.318792998790741,0.38528898358345,0.782933533191681,0.0724519193172455,0.617871940135956,0.630693793296814,0.157474085688591,0.759886205196381,0.758680939674377,0.272991955280304,0.591505229473114,0.872495412826538,0.114851079881191,0.474932551383972,0.758680939674377,0.272991955280304,0.591505229473114,0.865981161594391,0.318792998790741,0.38528898358345,0.782933533191681,0.0724519193172455,0.617871940135956,0.726148068904877,-0.051966018974781,0.685571551322937,0.630693793296814,0.157474085688591,0.759886205196381,0.618108093738556,-0.0159214250743389,0.785931766033173,0.726148068904877,-0.051966018974781,0.685571551322937,0.685481727123261,-0.188169971108437,0.703353881835938,0.467432618141174,0.0807632654905319,0.880331754684448,0.451663106679916,0.177157208323479,0.874423086643219,0.494246929883957,0.0108522847294807,0.869253754615784,0.620432615280151,0.134505033493042,0.772639393806458,0.451663106679916,0.177157208323479,0.874423086643219,0.564897835254669,0.311235696077347,0.764213740825653,0.882639408111572,0.391274869441986,0.260483235120773,0.792878091335297,0.55015617609024,0.26205387711525,0.923267662525177,0.344200432300568,0.170595362782478,0.923267662525177,0.344200432300568,0.170595362782478,0.792878091335297,0.55015617609024,0.26205387711525,0.84743469953537,0.512311220169067,0.139253303408623,0.903835237026215,0.401255279779434,0.148579746484756,0.84743469953537,0.512311220169067,0.139253303408623,0.852619051933289,0.510683119297028,0.110650055110455,0.722987413406372,0.685048818588257,0.0894268378615379,0.762102723121643,0.632550179958344,0.138129159808159,0.852619051933289,0.510683119297028,0.110650055110455,0.800738632678986,0.555893361568451,0.223159477114677,0.762102723121643,0.632550179958344,0.138129159808159,0.641768157482147,0.734207570552826,0.221523627638817,0.800738632678986,0.555893361568451,0.223159477114677,\r\n0.641768157482147,0.734207570552826,0.221523627638817,0.815575301647186,0.446502655744553,0.368065446615219,0.878171861171722,0.105882696807384,0.46647921204567,0.794868946075439,0.388593226671219,0.466024130582809,0.856070697307587,0.0928685143589973,0.508446872234344,0.794868946075439,0.388593226671219,0.466024130582809,0.815575301647186,0.446502655744553,0.368065446615219,0.605176150798798,0.713837265968323,0.352417439222336,0.701287925243378,0.256175875663757,0.665258705615997,0.519649207592011,0.465371668338776,0.716515004634857,0.505448520183563,0.361183851957321,0.783624827861786,0.505448520183563,0.361183851957321,0.783624827861786,0.467998325824738,0.304281681776047,0.829692780971527,0.673935294151306,0.15028128027916,0.723344027996063,0.701287925243378,0.256175875663757,0.665258705615997,0.706002593040466,0.326100200414658,0.628664314746857,0.519649207592011,0.465371668338776,0.716515004634857,0.467998325824738,0.304281681776047,0.829692780971527,0.43326273560524,0.253677129745483,0.864830136299133,0.673935294151306,0.15028128027916,0.723344027996063,0.43326273560524,0.253677129745483,0.864830136299133,0.467432618141174,0.0807632654905319,0.880331754684448,0.647358775138855,0.0293091218918562,0.761621654033661,0.790079236030579,0.211339101195335,0.575421988964081,0.856070697307587,0.0928685143589973,0.508446872234344,0.73315954208374,0.385823279619217,0.560015439987183,0.790079236030579,0.211339101195335,0.575421988964081,0.55226868391037,0.546515464782715,0.629539489746094,0.706002593040466,0.326100200414658,0.628664314746857,0.696586906909943,0.22577853500843,0.681021690368652,0.564897835254669,0.311235696077347,0.764213740825653,0.628250062465668,0.348340749740601,0.695672631263733,0.468060702085495,0.485270440578461,0.738533437252045,0.510518252849579,0.463199377059937,0.724442839622498,0.628250062465668,0.348340749740601,0.695672631263733,0.468060702085495,0.485270440578461,0.738533437252045,0.326419830322266,0.588403582572937,0.739750742912292,0.510518252849579,0.463199377059937,0.724442839622498,0.519290864467621,-0.270923584699631,0.810516655445099,\r\n0.407710790634155,-0.0718268603086472,0.910281658172607,0.513507604598999,-0.118529632687569,0.849859178066254,0.464602023363113,-0.138388812541962,0.87463903427124,0.407710790634155,-0.0718268603086472,0.910281658172607,0.519290864467621,-0.270923584699631,0.810516655445099,0.627322196960449,0.0993004590272903,0.772402822971344,0.531249165534973,0.102901436388493,0.840943276882172,0.536453127861023,0.0353842489421368,0.843187928199768,0.500799536705017,0.202507361769676,0.841540515422821,0.531249165534973,0.102901436388493,0.840943276882172,0.621490478515625,0.158169001340866,0.767288744449615,0.704671502113342,0.0557599477469921,0.70733916759491,0.536453127861023,0.0353842489421368,0.843187928199768,0.638456106185913,0.0715431421995163,0.766325712203979,0.731242477893829,0.0132252145558596,0.681989371776581,0.69377863407135,0.079524889588356,0.715784072875977,0.801903784275055,0.0476725623011589,0.595548033714294,0.69377863407135,0.079524889588356,0.715784072875977,0.66677337884903,0.0911586880683899,0.739664256572723,0.57466071844101,0.156982064247131,0.803194582462311,0.801903784275055,0.0476725623011589,0.595548033714294,0.704671502113342,0.0557599477469921,0.70733916759491,0.731242477893829,0.0132252145558596,0.681989371776581,0.543687701225281,-0.354370504617691,0.760805547237396,0.603014171123505,-0.31396359205246,0.733348906040192,0.639882683753967,-0.303985416889191,0.705792427062988,0.583012282848358,0.0535014979541302,0.810699760913849,0.577467679977417,0.0449533611536026,0.815174877643585,0.583714008331299,-0.0530277937650681,0.810225784778595,0.577467679977417,0.0449533611536026,0.815174877643585,0.505752682685852,0.142331466078758,0.850855946540833,0.57466071844101,0.156982064247131,0.803194582462311,0.543687701225281,-0.354370504617691,0.760805547237396,0.519290864467621,-0.270923584699631,0.810516655445099,0.603014171123505,-0.31396359205246,0.733348906040192,0.535246551036835,0.327803701162338,0.778495788574219,0.543479800224304,0.285009682178497,0.789556205272675,0.57056051492691,0.178223669528961,0.801683843135834,\r\n0.5876824259758,0.153319120407104,0.794432163238525,0.61928778886795,0.0833390355110168,0.780728578567505,0.57056051492691,0.178223669528961,0.801683843135834,0.5876824259758,0.153319120407104,0.794432163238525,0.621490478515625,0.158169001340866,0.767288744449615,0.687661051750183,0.124381601810455,0.715298175811768,0.252773016691208,0.400063812732697,0.880939602851868,0.285392493009567,0.302108466625214,0.909550130367279,0.305773258209229,0.448322147130966,0.839946329593658,0.429647266864777,0.381031900644302,0.818668305873871,0.374842017889023,0.267073601484299,0.887786626815796,0.352392375469208,0.364965528249741,0.861753821372986,0.48640039563179,0.511705636978149,0.70821738243103,0.429647266864777,0.381031900644302,0.818668305873871,0.427132070064545,0.567909419536591,0.703588604927063,0.401104062795639,0.263095736503601,0.877437174320221,0.285392493009567,0.302108466625214,0.909550130367279,0.352392375469208,0.364965528249741,0.861753821372986,0.48640039563179,0.511705636978149,0.70821738243103,0.427132070064545,0.567909419536591,0.703588604927063,0.441919833421707,0.549427926540375,0.709109008312225,0.652007281780243,-0.42521658539772,0.627755701541901,0.631619811058044,-0.40450394153595,0.661387026309967,0.642052948474884,-0.280358523130417,0.713559448719025,0.685481727123261,-0.188169971108437,0.703353881835938,0.642052948474884,-0.280358523130417,0.713559448719025,0.62407648563385,-0.142522349953651,0.768254995346069,0.882639408111572,0.391274869441986,0.260483235120773,0.865981161594391,0.318792998790741,0.38528898358345,0.807080686092377,0.478881925344467,0.345387727022171,0.586133718490601,0.352526694536209,0.729501187801361,0.758680939674377,0.272991955280304,0.591505229473114,0.630693793296814,0.157474085688591,0.759886205196381,0.865981161594391,0.318792998790741,0.38528898358345,0.758680939674377,0.272991955280304,0.591505229473114,0.718838751316071,0.447759926319122,0.531772255897522,0.630693793296814,0.157474085688591,0.759886205196381,0.726148068904877,-0.051966018974781,0.685571551322937,0.618108093738556,-0.0159214250743389,0.785931766033173,\r\n0.618108093738556,-0.0159214250743389,0.785931766033173,0.685481727123261,-0.188169971108437,0.703353881835938,0.62407648563385,-0.142522349953651,0.768254995346069,0.467432618141174,0.0807632654905319,0.880331754684448,0.43326273560524,0.253677129745483,0.864830136299133,0.451663106679916,0.177157208323479,0.874423086643219,0.451663106679916,0.177157208323479,0.874423086643219,0.430257856845856,0.354637861251831,0.830126523971558,0.564897835254669,0.311235696077347,0.764213740825653,0.807080686092377,0.478881925344467,0.345387727022171,0.792878091335297,0.55015617609024,0.26205387711525,0.882639408111572,0.391274869441986,0.260483235120773,0.728622317314148,0.667804062366486,0.152141824364662,0.84743469953537,0.512311220169067,0.139253303408623,0.792878091335297,0.55015617609024,0.26205387711525,0.777497112751007,0.619056046009064,0.11075958609581,0.852619051933289,0.510683119297028,0.110650055110455,0.84743469953537,0.512311220169067,0.139253303408623,0.603003799915314,0.786662101745605,0.13247261941433,0.762102723121643,0.632550179958344,0.138129159808159,0.722987413406372,0.685048818588257,0.0894268378615379,0.722987413406372,0.685048818588257,0.0894268378615379,0.852619051933289,0.510683119297028,0.110650055110455,0.777497112751007,0.619056046009064,0.11075958609581,0.603003799915314,0.786662101745605,0.13247261941433,0.641768157482147,0.734207570552826,0.221523627638817,0.762102723121643,0.632550179958344,0.138129159808159,0.641768157482147,0.734207570552826,0.221523627638817,0.605176150798798,0.713837265968323,0.352417439222336,0.815575301647186,0.446502655744553,0.368065446615219,0.794868946075439,0.388593226671219,0.466024130582809,0.73315954208374,0.385823279619217,0.560015439987183,0.856070697307587,0.0928685143589973,0.508446872234344,0.605176150798798,0.713837265968323,0.352417439222336,0.558921158313751,0.665096402168274,0.495231002569199,0.794868946075439,0.388593226671219,0.466024130582809,0.519649207592011,0.465371668338776,0.716515004634857,0.326661229133606,0.564052522182465,0.758377909660339,0.505448520183563,0.361183851957321,0.783624827861786,\r\n0.467998325824738,0.304281681776047,0.829692780971527,0.505448520183563,0.361183851957321,0.783624827861786,0.359361976385117,0.403540849685669,0.841435432434082,0.519649207592011,0.465371668338776,0.716515004634857,0.706002593040466,0.326100200414658,0.628664314746857,0.55226868391037,0.546515464782715,0.629539489746094,0.43326273560524,0.253677129745483,0.864830136299133,0.467998325824738,0.304281681776047,0.829692780971527,0.359361976385117,0.403540849685669,0.841435432434082,0.73315954208374,0.385823279619217,0.560015439987183,0.55226868391037,0.546515464782715,0.629539489746094,0.790079236030579,0.211339101195335,0.575421988964081,0.468060702085495,0.485270440578461,0.738533437252045,0.628250062465668,0.348340749740601,0.695672631263733,0.564897835254669,0.311235696077347,0.764213740825653,0.326419830322266,0.588403582572937,0.739750742912292,0.468060702085495,0.485270440578461,0.738533437252045,0.329243689775467,0.565854668617249,0.755914628505707,0.513507604598999,-0.118529632687569,0.849859178066254,0.603014171123505,-0.31396359205246,0.733348906040192,0.519290864467621,-0.270923584699631,0.810516655445099,0.627322196960449,0.0993004590272903,0.772402822971344,0.621490478515625,0.158169001340866,0.767288744449615,0.531249165534973,0.102901436388493,0.840943276882172,0.627322196960449,0.0993004590272903,0.772402822971344,0.536453127861023,0.0353842489421368,0.843187928199768,0.704671502113342,0.0557599477469921,0.70733916759491,0.801903784275055,0.0476725623011589,0.595548033714294,0.69377863407135,0.079524889588356,0.715784072875977,0.785053551197052,0.0646917521953583,0.616040349006653,0.494280934333801,0.145264178514481,0.857079088687897,0.69377863407135,0.079524889588356,0.715784072875977,0.57466071844101,0.156982064247131,0.803194582462311,0.704671502113342,0.0557599477469921,0.70733916759491,0.801903784275055,0.0476725623011589,0.595548033714294,0.755627393722534,0.0988272577524185,0.647503077983856,0.583012282848358,0.0535014979541302,0.810699760913849,0.505752682685852,0.142331466078758,0.850855946540833,\r\n0.577467679977417,0.0449533611536026,0.815174877643585,0.494280934333801,0.145264178514481,0.857079088687897,0.57466071844101,0.156982064247131,0.803194582462311,0.505752682685852,0.142331466078758,0.850855946540833,0.5876824259758,0.153319120407104,0.794432163238525,0.687661051750183,0.124381601810455,0.715298175811768,0.61928778886795,0.0833390355110168,0.780728578567505,0.57056051492691,0.178223669528961,0.801683843135834,0.61928778886795,0.0833390355110168,0.780728578567505,0.536041676998138,0.0606099404394627,0.842012822628021,0.627322196960449,0.0993004590272903,0.772402822971344,0.687661051750183,0.124381601810455,0.715298175811768,0.621490478515625,0.158169001340866,0.767288744449615,0.401104062795639,0.263095736503601,0.877437174320221,0.305773258209229,0.448322147130966,0.839946329593658,0.285392493009567,0.302108466625214,0.909550130367279,0.429647266864777,0.381031900644302,0.818668305873871,0.493134558200836,0.24052806198597,0.836040914058685,0.374842017889023,0.267073601484299,0.887786626815796,0.352392375469208,0.364965528249741,0.861753821372986,0.374842017889023,0.267073601484299,0.887786626815796,0.401104062795639,0.263095736503601,0.877437174320221,0.535521686077118,0.372111052274704,0.758122503757477,0.429647266864777,0.381031900644302,0.818668305873871,0.48640039563179,0.511705636978149,0.70821738243103,0.631619811058044,-0.40450394153595,0.661387026309967,0.600361585617065,-0.239592432975769,0.762994945049286,0.642052948474884,-0.280358523130417,0.713559448719025,0.62407648563385,-0.142522349953651,0.768254995346069,0.642052948474884,-0.280358523130417,0.713559448719025,0.600361585617065,-0.239592432975769,0.762994945049286,0.865981161594391,0.318792998790741,0.38528898358345,0.718838751316071,0.447759926319122,0.531772255897522,0.807080686092377,0.478881925344467,0.345387727022171,0.586133718490601,0.352526694536209,0.729501187801361,0.718838751316071,0.447759926319122,0.531772255897522,0.758680939674377,0.272991955280304,0.591505229473114,0.630693793296814,0.157474085688591,0.759886205196381,\r\n0.465707331895828,0.267070382833481,0.843676507472992,0.586133718490601,0.352526694536209,0.729501187801361,0.630693793296814,0.157474085688591,0.759886205196381,0.618108093738556,-0.0159214250743389,0.785931766033173,0.510155975818634,0.146026700735092,0.847594797611237,0.618108093738556,-0.0159214250743389,0.785931766033173,0.62407648563385,-0.142522349953651,0.768254995346069,0.57584536075592,0.0158021338284016,0.817405819892883,0.383404433727264,0.305079579353333,0.871738195419312,0.451663106679916,0.177157208323479,0.874423086643219,0.43326273560524,0.253677129745483,0.864830136299133,0.383404433727264,0.305079579353333,0.871738195419312,0.430257856845856,0.354637861251831,0.830126523971558,0.451663106679916,0.177157208323479,0.874423086643219,0.430257856845856,0.354637861251831,0.830126523971558,0.438516169786453,0.445428669452667,0.78057461977005,0.564897835254669,0.311235696077347,0.764213740825653,0.807080686092377,0.478881925344467,0.345387727022171,0.686942994594574,0.597724914550781,0.413320749998093,0.792878091335297,0.55015617609024,0.26205387711525,0.728622317314148,0.667804062366486,0.152141824364662,0.777497112751007,0.619056046009064,0.11075958609581,0.84743469953537,0.512311220169067,0.139253303408623,0.603003799915314,0.786662101745605,0.13247261941433,0.722987413406372,0.685048818588257,0.0894268378615379,0.562582015991211,0.822545289993286,0.0831891745328903,0.722987413406372,0.685048818588257,0.0894268378615379,0.777497112751007,0.619056046009064,0.11075958609581,0.655722379684448,0.750401079654694,0.0832246690988541,0.603003799915314,0.786662101745605,0.13247261941433,0.476240038871765,0.861734807491302,0.174951985478401,0.641768157482147,0.734207570552826,0.221523627638817,0.416014701128006,0.876717567443848,0.241449698805809,0.605176150798798,0.713837265968323,0.352417439222336,0.641768157482147,0.734207570552826,0.221523627638817,0.794868946075439,0.388593226671219,0.466024130582809,0.558921158313751,0.665096402168274,0.495231002569199,0.73315954208374,0.385823279619217,0.560015439987183,\r\n0.605176150798798,0.713837265968323,0.352417439222336,0.359088182449341,0.861209034919739,0.359686434268951,0.558921158313751,0.665096402168274,0.495231002569199,0.326460361480713,0.71135401725769,0.622413873672485,0.326661229133606,0.564052522182465,0.758377909660339,0.519649207592011,0.465371668338776,0.716515004634857,0.359361976385117,0.403540849685669,0.841435432434082,0.505448520183563,0.361183851957321,0.783624827861786,0.326661229133606,0.564052522182465,0.758377909660339,0.519649207592011,0.465371668338776,0.716515004634857,0.55226868391037,0.546515464782715,0.629539489746094,0.326460361480713,0.71135401725769,0.622413873672485,0.332492500543594,0.442558825016022,0.832820653915405,0.43326273560524,0.253677129745483,0.864830136299133,0.359361976385117,0.403540849685669,0.841435432434082,0.55226868391037,0.546515464782715,0.629539489746094,0.73315954208374,0.385823279619217,0.560015439987183,0.558921158313751,0.665096402168274,0.495231002569199,0.438516169786453,0.445428669452667,0.78057461977005,0.468060702085495,0.485270440578461,0.738533437252045,0.564897835254669,0.311235696077347,0.764213740825653,0.438516169786453,0.445428669452667,0.78057461977005,0.329243689775467,0.565854668617249,0.755914628505707,0.468060702085495,0.485270440578461,0.738533437252045,0.326419830322266,0.588403582572937,0.739750742912292,0.329243689775467,0.565854668617249,0.755914628505707,0.171767801046371,0.695141613483429,0.698049902915955,0.704671502113342,0.0557599477469921,0.70733916759491,0.687661051750183,0.124381601810455,0.715298175811768,0.627322196960449,0.0993004590272903,0.772402822971344,0.649057626724243,0.019175423309207,0.760497450828552,0.785053551197052,0.0646917521953583,0.616040349006653,0.69377863407135,0.079524889588356,0.715784072875977,0.801903784275055,0.0476725623011589,0.595548033714294,0.785053551197052,0.0646917521953583,0.616040349006653,0.755627393722534,0.0988272577524185,0.647503077983856,0.494280934333801,0.145264178514481,0.857079088687897,0.468657284975052,0.0150072183459997,0.883252561092377,\r\n0.69377863407135,0.079524889588356,0.715784072875977,0.704671502113342,0.0557599477469921,0.70733916759491,0.755627393722534,0.0988272577524185,0.647503077983856,0.687661051750183,0.124381601810455,0.715298175811768,0.583012282848358,0.0535014979541302,0.810699760913849,0.550437569618225,0.0859284475445747,0.830442428588867,0.505752682685852,0.142331466078758,0.850855946540833,0.505752682685852,0.142331466078758,0.850855946540833,0.438692659139633,0.0839320048689842,0.894708931446075,0.494280934333801,0.145264178514481,0.857079088687897,0.687661051750183,0.124381601810455,0.715298175811768,0.653038203716278,0.0440272316336632,0.756044089794159,0.61928778886795,0.0833390355110168,0.780728578567505,0.536041676998138,0.0606099404394627,0.842012822628021,0.61928778886795,0.0833390355110168,0.780728578567505,0.653038203716278,0.0440272316336632,0.756044089794159,0.537648975849152,0.256835967302322,0.803099393844604,0.493134558200836,0.24052806198597,0.836040914058685,0.429647266864777,0.381031900644302,0.818668305873871,0.401104062795639,0.263095736503601,0.877437174320221,0.374842017889023,0.267073601484299,0.887786626815796,0.493134558200836,0.24052806198597,0.836040914058685,0.535521686077118,0.372111052274704,0.758122503757477,0.537648975849152,0.256835967302322,0.803099393844604,0.429647266864777,0.381031900644302,0.818668305873871,0.600361585617065,-0.239592432975769,0.762994945049286,0.631619811058044,-0.40450394153595,0.661387026309967,0.607045531272888,-0.310428470373154,0.731525599956512,0.62407648563385,-0.142522349953651,0.768254995346069,0.600361585617065,-0.239592432975769,0.762994945049286,0.561366975307465,-0.0813280418515205,0.823561012744904,0.686942994594574,0.597724914550781,0.413320749998093,0.807080686092377,0.478881925344467,0.345387727022171,0.718838751316071,0.447759926319122,0.531772255897522,0.586133718490601,0.352526694536209,0.729501187801361,0.570243775844574,0.494201123714447,0.656191349029541,0.718838751316071,0.447759926319122,0.531772255897522,0.510155975818634,0.146026700735092,0.847594797611237,\r\n0.465707331895828,0.267070382833481,0.843676507472992,0.630693793296814,0.157474085688591,0.759886205196381,0.391959398984909,0.411307096481323,0.822918057441711,0.586133718490601,0.352526694536209,0.729501187801361,0.465707331895828,0.267070382833481,0.843676507472992,0.618108093738556,-0.0159214250743389,0.785931766033173,0.57584536075592,0.0158021338284016,0.817405819892883,0.510155975818634,0.146026700735092,0.847594797611237,0.57584536075592,0.0158021338284016,0.817405819892883,0.62407648563385,-0.142522349953651,0.768254995346069,0.561366975307465,-0.0813280418515205,0.823561012744904,0.383404433727264,0.305079579353333,0.871738195419312,0.43326273560524,0.253677129745483,0.864830136299133,0.332492500543594,0.442558825016022,0.832820653915405,0.383404433727264,0.305079579353333,0.871738195419312,0.332492500543594,0.442558825016022,0.832820653915405,0.430257856845856,0.354637861251831,0.830126523971558,0.430257856845856,0.354637861251831,0.830126523971558,0.357616394758224,0.499146699905396,0.789279997348785,0.438516169786453,0.445428669452667,0.78057461977005,0.777497112751007,0.619056046009064,0.11075958609581,0.728622317314148,0.667804062366486,0.152141824364662,0.655722379684448,0.750401079654694,0.0832246690988541,0.562582015991211,0.822545289993286,0.0831891745328903,0.722987413406372,0.685048818588257,0.0894268378615379,0.655722379684448,0.750401079654694,0.0832246690988541,0.562582015991211,0.822545289993286,0.0831891745328903,0.412384271621704,0.904653489589691,0.107429757714272,0.603003799915314,0.786662101745605,0.13247261941433,0.603003799915314,0.786662101745605,0.13247261941433,0.412384271621704,0.904653489589691,0.107429757714272,0.476240038871765,0.861734807491302,0.174951985478401,0.476240038871765,0.861734807491302,0.174951985478401,0.416014701128006,0.876717567443848,0.241449698805809,0.641768157482147,0.734207570552826,0.221523627638817,0.359088182449341,0.861209034919739,0.359686434268951,0.605176150798798,0.713837265968323,0.352417439222336,0.416014701128006,0.876717567443848,0.241449698805809,\r\n0.339624971151352,0.794077634811401,0.504078805446625,0.558921158313751,0.665096402168274,0.495231002569199,0.359088182449341,0.861209034919739,0.359686434268951,0.326460361480713,0.71135401725769,0.622413873672485,0.239537984132767,0.730198919773102,0.639867901802063,0.326661229133606,0.564052522182465,0.758377909660339,0.332492500543594,0.442558825016022,0.832820653915405,0.359361976385117,0.403540849685669,0.841435432434082,0.326661229133606,0.564052522182465,0.758377909660339,0.326460361480713,0.71135401725769,0.622413873672485,0.55226868391037,0.546515464782715,0.629539489746094,0.339624971151352,0.794077634811401,0.504078805446625,0.55226868391037,0.546515464782715,0.629539489746094,0.558921158313751,0.665096402168274,0.495231002569199,0.339624971151352,0.794077634811401,0.504078805446625,0.329243689775467,0.565854668617249,0.755914628505707,0.438516169786453,0.445428669452667,0.78057461977005,0.357616394758224,0.499146699905396,0.789279997348785,0.329243689775467,0.565854668617249,0.755914628505707,0.247834339737892,0.619160056114197,0.745130062103271,0.171767801046371,0.695141613483429,0.698049902915955,0.785053551197052,0.0646917521953583,0.616040349006653,0.649057626724243,0.019175423309207,0.760497450828552,0.755627393722534,0.0988272577524185,0.647503077983856,0.649057626724243,0.019175423309207,0.760497450828552,0.69377863407135,0.079524889588356,0.715784072875977,0.468657284975052,0.0150072183459997,0.883252561092377,0.438692659139633,0.0839320048689842,0.894708931446075,0.468657284975052,0.0150072183459997,0.883252561092377,0.494280934333801,0.145264178514481,0.857079088687897,0.653038203716278,0.0440272316336632,0.756044089794159,0.687661051750183,0.124381601810455,0.715298175811768,0.755627393722534,0.0988272577524185,0.647503077983856,0.505752682685852,0.142331466078758,0.850855946540833,0.550437569618225,0.0859284475445747,0.830442428588867,0.438692659139633,0.0839320048689842,0.894708931446075,0.536041676998138,0.0606099404394627,0.842012822628021,0.653038203716278,0.0440272316336632,0.756044089794159,\r\n0.518881916999817,-0.0132392961531878,0.854743301868439,0.493134558200836,0.24052806198597,0.836040914058685,0.537648975849152,0.256835967302322,0.803099393844604,0.542654573917389,0.272398322820663,0.794559717178345,0.537648975849152,0.256835967302322,0.803099393844604,0.535521686077118,0.372111052274704,0.758122503757477,0.542654573917389,0.272398322820663,0.794559717178345,0.600361585617065,-0.239592432975769,0.762994945049286,0.607045531272888,-0.310428470373154,0.731525599956512,0.541629612445831,-0.189620405435562,0.818951368331909,0.541629612445831,-0.189620405435562,0.818951368331909,0.561366975307465,-0.0813280418515205,0.823561012744904,0.600361585617065,-0.239592432975769,0.762994945049286,0.570243775844574,0.494201123714447,0.656191349029541,0.686942994594574,0.597724914550781,0.413320749998093,0.718838751316071,0.447759926319122,0.531772255897522,0.586133718490601,0.352526694536209,0.729501187801361,0.391959398984909,0.411307096481323,0.822918057441711,0.570243775844574,0.494201123714447,0.656191349029541,0.373138278722763,0.285593122243881,0.882725477218628,0.465707331895828,0.267070382833481,0.843676507472992,0.510155975818634,0.146026700735092,0.847594797611237,0.391959398984909,0.411307096481323,0.822918057441711,0.465707331895828,0.267070382833481,0.843676507472992,0.373138278722763,0.285593122243881,0.882725477218628,0.510155975818634,0.146026700735092,0.847594797611237,0.57584536075592,0.0158021338284016,0.817405819892883,0.54767781496048,0.186538800597191,0.815629959106445,0.544824242591858,0.177268654108047,0.819598853588104,0.57584536075592,0.0158021338284016,0.817405819892883,0.561366975307465,-0.0813280418515205,0.823561012744904,0.357616394758224,0.499146699905396,0.789279997348785,0.430257856845856,0.354637861251831,0.830126523971558,0.332492500543594,0.442558825016022,0.832820653915405,0.296633422374725,0.942808270454407,0.152056530117989,0.476240038871765,0.861734807491302,0.174951985478401,0.412384271621704,0.904653489589691,0.107429757714272,0.476240038871765,0.861734807491302,0.174951985478401,\r\n0.296633422374725,0.942808270454407,0.152056530117989,0.416014701128006,0.876717567443848,0.241449698805809,0.359088182449341,0.861209034919739,0.359686434268951,0.416014701128006,0.876717567443848,0.241449698805809,0.240029871463776,0.946222484111786,0.216906979680061,0.359088182449341,0.861209034919739,0.359686434268951,0.220693409442902,0.915505886077881,0.336367696523666,0.339624971151352,0.794077634811401,0.504078805446625,0.326460361480713,0.71135401725769,0.622413873672485,0.2047328799963,0.840445399284363,0.50173282623291,0.239537984132767,0.730198919773102,0.639867901802063,0.239537984132767,0.730198919773102,0.639867901802063,0.166751265525818,0.738078057765961,0.653784871101379,0.326661229133606,0.564052522182465,0.758377909660339,0.326661229133606,0.564052522182465,0.758377909660339,0.247834339737892,0.619160056114197,0.745130062103271,0.332492500543594,0.442558825016022,0.832820653915405,0.326460361480713,0.71135401725769,0.622413873672485,0.339624971151352,0.794077634811401,0.504078805446625,0.217234596610069,0.87262350320816,0.437421083450317,0.329243689775467,0.565854668617249,0.755914628505707,0.357616394758224,0.499146699905396,0.789279997348785,0.247834339737892,0.619160056114197,0.745130062103271,0.11349905282259,0.769034266471863,0.629050135612488,0.171767801046371,0.695141613483429,0.698049902915955,0.247834339737892,0.619160056114197,0.745130062103271,0.653038203716278,0.0440272316336632,0.756044089794159,0.755627393722534,0.0988272577524185,0.647503077983856,0.649057626724243,0.019175423309207,0.760497450828552,0.649057626724243,0.019175423309207,0.760497450828552,0.518881916999817,-0.0132392961531878,0.854743301868439,0.653038203716278,0.0440272316336632,0.756044089794159,0.607045531272888,-0.310428470373154,0.731525599956512,0.506657183170319,-0.185250729322433,0.842009782791138,0.541629612445831,-0.189620405435562,0.818951368331909,0.541629612445831,-0.189620405435562,0.818951368331909,0.462985634803772,0.0923797339200974,0.881538510322571,0.561366975307465,-0.0813280418515205,0.823561012744904,\r\n0.443148970603943,0.223772257566452,0.868069589138031,0.373138278722763,0.285593122243881,0.882725477218628,0.510155975818634,0.146026700735092,0.847594797611237,0.391959398984909,0.411307096481323,0.822918057441711,0.373138278722763,0.285593122243881,0.882725477218628,0.236143693327904,0.409129083156586,0.881390631198883,0.544824242591858,0.177268654108047,0.819598853588104,0.54767781496048,0.186538800597191,0.815629959106445,0.57584536075592,0.0158021338284016,0.817405819892883,0.443148970603943,0.223772257566452,0.868069589138031,0.510155975818634,0.146026700735092,0.847594797611237,0.54767781496048,0.186538800597191,0.815629959106445,0.561366975307465,-0.0813280418515205,0.823561012744904,0.462985634803772,0.0923797339200974,0.881538510322571,0.544824242591858,0.177268654108047,0.819598853588104,0.357616394758224,0.499146699905396,0.789279997348785,0.332492500543594,0.442558825016022,0.832820653915405,0.247834339737892,0.619160056114197,0.745130062103271,0.240029871463776,0.946222484111786,0.216906979680061,0.416014701128006,0.876717567443848,0.241449698805809,0.296633422374725,0.942808270454407,0.152056530117989,0.220693409442902,0.915505886077881,0.336367696523666,0.359088182449341,0.861209034919739,0.359686434268951,0.240029871463776,0.946222484111786,0.216906979680061,0.339624971151352,0.794077634811401,0.504078805446625,0.220693409442902,0.915505886077881,0.336367696523666,0.217234596610069,0.87262350320816,0.437421083450317,0.217234596610069,0.87262350320816,0.437421083450317,0.2047328799963,0.840445399284363,0.50173282623291,0.326460361480713,0.71135401725769,0.622413873672485,0.149909824132919,0.819837331771851,0.552624344825745,0.239537984132767,0.730198919773102,0.639867901802063,0.2047328799963,0.840445399284363,0.50173282623291,0.166751265525818,0.738078057765961,0.653784871101379,0.239537984132767,0.730198919773102,0.639867901802063,0.149909824132919,0.819837331771851,0.552624344825745,0.326661229133606,0.564052522182465,0.758377909660339,0.166751265525818,0.738078057765961,0.653784871101379,0.247834339737892,0.619160056114197,0.745130062103271,\r\n0.11349905282259,0.769034266471863,0.629050135612488,0.247834339737892,0.619160056114197,0.745130062103271,0.166751265525818,0.738078057765961,0.653784871101379,0.506657183170319,-0.185250729322433,0.842009782791138,0.607045531272888,-0.310428470373154,0.731525599956512,0.611037969589233,-0.383561313152313,0.692468881607056,0.506657183170319,-0.185250729322433,0.842009782791138,0.452125489711761,0.0100295357406139,0.891897857189178,0.541629612445831,-0.189620405435562,0.818951368331909,0.462985634803772,0.0923797339200974,0.881538510322571,0.541629612445831,-0.189620405435562,0.818951368331909,0.452125489711761,0.0100295357406139,0.891897857189178,0.317232072353363,0.320876151323318,0.892413675785065,0.373138278722763,0.285593122243881,0.882725477218628,0.443148970603943,0.223772257566452,0.868069589138031,0.373138278722763,0.285593122243881,0.882725477218628,0.317232072353363,0.320876151323318,0.892413675785065,0.236143693327904,0.409129083156586,0.881390631198883,0.54767781496048,0.186538800597191,0.815629959106445,0.544824242591858,0.177268654108047,0.819598853588104,0.609768748283386,0.264898717403412,0.747001051902771,0.443148970603943,0.223772257566452,0.868069589138031,0.54767781496048,0.186538800597191,0.815629959106445,0.412739425897598,0.285188913345337,0.865051090717316,0.544824242591858,0.177268654108047,0.819598853588104,0.462985634803772,0.0923797339200974,0.881538510322571,0.501176774501801,0.329582273960114,0.800123333930969,0.17295815050602,0.954431116580963,0.243200927972794,0.220693409442902,0.915505886077881,0.336367696523666,0.240029871463776,0.946222484111786,0.216906979680061,0.217234596610069,0.87262350320816,0.437421083450317,0.220693409442902,0.915505886077881,0.336367696523666,0.132118299603462,0.948549449443817,0.287747502326965,0.217234596610069,0.87262350320816,0.437421083450317,0.152761861681938,0.916894972324371,0.368737459182739,0.2047328799963,0.840445399284363,0.50173282623291,0.0779441520571709,0.906524062156677,0.414896100759506,0.149909824132919,0.819837331771851,0.552624344825745,\r\n0.2047328799963,0.840445399284363,0.50173282623291,0.0687392801046371,0.866661667823792,0.494137912988663,0.166751265525818,0.738078057765961,0.653784871101379,0.149909824132919,0.819837331771851,0.552624344825745,0.089270606637001,0.832935512065887,0.546121835708618,0.11349905282259,0.769034266471863,0.629050135612488,0.166751265525818,0.738078057765961,0.653784871101379,0.506657183170319,-0.185250729322433,0.842009782791138,0.611037969589233,-0.383561313152313,0.692468881607056,0.555144548416138,-0.320087283849716,0.767696976661682,0.506657183170319,-0.185250729322433,0.842009782791138,0.260372012853622,0.263382196426392,0.928889691829681,0.452125489711761,0.0100295357406139,0.891897857189178,0.462985634803772,0.0923797339200974,0.881538510322571,0.452125489711761,0.0100295357406139,0.891897857189178,0.354218602180481,0.299696266651154,0.885839283466339,0.443148970603943,0.223772257566452,0.868069589138031,0.412739425897598,0.285188913345337,0.865051090717316,0.317232072353363,0.320876151323318,0.892413675785065,0.544824242591858,0.177268654108047,0.819598853588104,0.501176774501801,0.329582273960114,0.800123333930969,0.609768748283386,0.264898717403412,0.747001051902771,0.54767781496048,0.186538800597191,0.815629959106445,0.609768748283386,0.264898717403412,0.747001051902771,0.606697916984558,0.173430144786835,0.775783121585846,0.606697916984558,0.173430144786835,0.775783121585846,0.412739425897598,0.285188913345337,0.865051090717316,0.54767781496048,0.186538800597191,0.815629959106445,0.501176774501801,0.329582273960114,0.800123333930969,0.462985634803772,0.0923797339200974,0.881538510322571,0.354218602180481,0.299696266651154,0.885839283466339,0.17295815050602,0.954431116580963,0.243200927972794,0.132118299603462,0.948549449443817,0.287747502326965,0.220693409442902,0.915505886077881,0.336367696523666,0.152761861681938,0.916894972324371,0.368737459182739,0.217234596610069,0.87262350320816,0.437421083450317,0.132118299603462,0.948549449443817,0.287747502326965,0.152761861681938,0.916894972324371,0.368737459182739,\r\n0.0779441520571709,0.906524062156677,0.414896100759506,0.2047328799963,0.840445399284363,0.50173282623291,0.149909824132919,0.819837331771851,0.552624344825745,0.0779441520571709,0.906524062156677,0.414896100759506,0.0687392801046371,0.866661667823792,0.494137912988663,0.0687392801046371,0.866661667823792,0.494137912988663,0.089270606637001,0.832935512065887,0.546121835708618,0.166751265525818,0.738078057765961,0.653784871101379,0.089270606637001,0.832935512065887,0.546121835708618,0.0462571904063225,0.858748018741608,0.51030570268631,0.11349905282259,0.769034266471863,0.629050135612488,0.583273649215698,-0.399355500936508,0.707323729991913,0.555144548416138,-0.320087283849716,0.767696976661682,0.611037969589233,-0.383561313152313,0.692468881607056,0.506657183170319,-0.185250729322433,0.842009782791138,0.555144548416138,-0.320087283849716,0.767696976661682,0.489455461502075,-0.0563844032585621,0.87020343542099,0.260372012853622,0.263382196426392,0.928889691829681,0.506657183170319,-0.185250729322433,0.842009782791138,0.354876548051834,0.145975634455681,0.923446595668793,0.354218602180481,0.299696266651154,0.885839283466339,0.452125489711761,0.0100295357406139,0.891897857189178,0.260372012853622,0.263382196426392,0.928889691829681,0.606697916984558,0.173430144786835,0.775783121585846,0.609768748283386,0.264898717403412,0.747001051902771,0.501176774501801,0.329582273960114,0.800123333930969,0.412739425897598,0.285188913345337,0.865051090717316,0.606697916984558,0.173430144786835,0.775783121585846,0.461415380239487,0.202915489673615,0.863667190074921,0.501176774501801,0.329582273960114,0.800123333930969,0.354218602180481,0.299696266651154,0.885839283466339,0.341684430837631,0.436214864253998,0.832447111606598,0.132118299603462,0.948549449443817,0.287747502326965,0.0815758481621742,0.944970607757568,0.316821426153183,0.152761861681938,0.916894972324371,0.368737459182739,0.0815758481621742,0.944970607757568,0.316821426153183,0.0779441520571709,0.906524062156677,0.414896100759506,0.152761861681938,0.916894972324371,0.368737459182739,\r\n0.0234814956784248,0.913554191589355,0.406038463115692,0.0687392801046371,0.866661667823792,0.494137912988663,0.0779441520571709,0.906524062156677,0.414896100759506,0.089270606637001,0.832935512065887,0.546121835708618,0.0687392801046371,0.866661667823792,0.494137912988663,0.0184278078377247,0.914194524288177,0.404856353998184,0.0462571904063225,0.858748018741608,0.51030570268631,0.089270606637001,0.832935512065887,0.546121835708618,0.0184278078377247,0.914194524288177,0.404856353998184,0.555144548416138,-0.320087283849716,0.767696976661682,0.583273649215698,-0.399355500936508,0.707323729991913,0.483471751213074,-0.259115725755692,0.836130321025848,0.555144548416138,-0.320087283849716,0.767696976661682,0.483471751213074,-0.259115725755692,0.836130321025848,0.489455461502075,-0.0563844032585621,0.87020343542099,0.506657183170319,-0.185250729322433,0.842009782791138,0.489455461502075,-0.0563844032585621,0.87020343542099,0.354876548051834,0.145975634455681,0.923446595668793,0.260372012853622,0.263382196426392,0.928889691829681,0.354876548051834,0.145975634455681,0.923446595668793,0.229317963123322,0.48029363155365,0.846599757671356,0.354218602180481,0.299696266651154,0.885839283466339,0.260372012853622,0.263382196426392,0.928889691829681,0.341684430837631,0.436214864253998,0.832447111606598,0.606697916984558,0.173430144786835,0.775783121585846,0.501176774501801,0.329582273960114,0.800123333930969,0.579363107681274,0.198491036891937,0.790531158447266,0.606697916984558,0.173430144786835,0.775783121585846,0.616427898406982,0.066298708319664,0.784615159034729,0.461415380239487,0.202915489673615,0.863667190074921,0.579363107681274,0.198491036891937,0.790531158447266,0.501176774501801,0.329582273960114,0.800123333930969,0.341684430837631,0.436214864253998,0.832447111606598,0.0779441520571709,0.906524062156677,0.414896100759506,0.0815758481621742,0.944970607757568,0.316821426153183,0.0210793167352676,0.934243619441986,0.356011837720871,0.0687392801046371,0.866661667823792,0.494137912988663,0.0234814956784248,0.913554191589355,0.406038463115692,\r\n0.0184278078377247,0.914194524288177,0.404856353998184,0.0210793167352676,0.934243619441986,0.356011837720871,0.0234814956784248,0.913554191589355,0.406038463115692,0.0779441520571709,0.906524062156677,0.414896100759506,0.527965247631073,-0.397306889295578,0.75059962272644,0.483471751213074,-0.259115725755692,0.836130321025848,0.583273649215698,-0.399355500936508,0.707323729991913,0.483471751213074,-0.259115725755692,0.836130321025848,0.251245468854904,0.315998136997223,0.914888381958008,0.489455461502075,-0.0563844032585621,0.87020343542099,0.489455461502075,-0.0563844032585621,0.87020343542099,0.229317963123322,0.48029363155365,0.846599757671356,0.354876548051834,0.145975634455681,0.923446595668793,0.341684430837631,0.436214864253998,0.832447111606598,0.260372012853622,0.263382196426392,0.928889691829681,0.229317963123322,0.48029363155365,0.846599757671356,0.606697916984558,0.173430144786835,0.775783121585846,0.579363107681274,0.198491036891937,0.790531158447266,0.616427898406982,0.066298708319664,0.784615159034729,0.579363107681274,0.198491036891937,0.790531158447266,0.341684430837631,0.436214864253998,0.832447111606598,0.629023253917694,0.0887856855988503,0.772299647331238,0.0234814956784248,0.913554191589355,0.406038463115692,0.0210793167352676,0.934243619441986,0.356011837720871,0.0184278078377247,0.914194524288177,0.404856353998184,0.527650952339172,-0.313881546258926,0.789343178272247,0.483471751213074,-0.259115725755692,0.836130321025848,0.527965247631073,-0.397306889295578,0.75059962272644,0.583273649215698,-0.399355500936508,0.707323729991913,0.581063508987427,-0.490697354078293,0.649292767047882,0.527965247631073,-0.397306889295578,0.75059962272644,0.251245468854904,0.315998136997223,0.914888381958008,0.483471751213074,-0.259115725755692,0.836130321025848,0.385940849781036,0.166916713118553,0.907297253608704,0.251245468854904,0.315998136997223,0.914888381958008,0.229317963123322,0.48029363155365,0.846599757671356,0.489455461502075,-0.0563844032585621,0.87020343542099,0.341684430837631,0.436214864253998,0.832447111606598,\r\n0.229317963123322,0.48029363155365,0.846599757671356,0.349536031484604,0.43546250462532,0.829576313495636,0.579363107681274,0.198491036891937,0.790531158447266,0.629023253917694,0.0887856855988503,0.772299647331238,0.616427898406982,0.066298708319664,0.784615159034729,0.629023253917694,0.0887856855988503,0.772299647331238,0.341684430837631,0.436214864253998,0.832447111606598,0.595453381538391,0.193755432963371,0.779675543308258,0.527650952339172,-0.313881546258926,0.789343178272247,0.385940849781036,0.166916713118553,0.907297253608704,0.483471751213074,-0.259115725755692,0.836130321025848,0.527650952339172,-0.313881546258926,0.789343178272247,0.527965247631073,-0.397306889295578,0.75059962272644,0.501362562179565,0.00216983235441148,0.86523449420929,0.527965247631073,-0.397306889295578,0.75059962272644,0.581063508987427,-0.490697354078293,0.649292767047882,0.561288416385651,-0.528102040290833,0.637231111526489,0.251245468854904,0.315998136997223,0.914888381958008,0.385940849781036,0.166916713118553,0.907297253608704,0.0968781933188438,0.632475852966309,0.768497705459595,0.229317963123322,0.48029363155365,0.846599757671356,0.251245468854904,0.315998136997223,0.914888381958008,0.148330092430115,0.639473676681519,0.754368245601654,0.384340524673462,0.496930003166199,0.778037846088409,0.349536031484604,0.43546250462532,0.829576313495636,0.229317963123322,0.48029363155365,0.846599757671356,0.341684430837631,0.436214864253998,0.832447111606598,0.349536031484604,0.43546250462532,0.829576313495636,0.595453381538391,0.193755432963371,0.779675543308258,0.616427898406982,0.066298708319664,0.784615159034729,0.629023253917694,0.0887856855988503,0.772299647331238,0.556739687919617,0.103391379117966,0.824227511882782,0.629023253917694,0.0887856855988503,0.772299647331238,0.595453381538391,0.193755432963371,0.779675543308258,0.651140987873077,-0.0331539548933506,0.758232176303864,0.501362562179565,0.00216983235441148,0.86523449420929,0.385940849781036,0.166916713118553,0.907297253608704,0.527650952339172,-0.313881546258926,0.789343178272247,\r\n0.501362562179565,0.00216983235441148,0.86523449420929,0.527965247631073,-0.397306889295578,0.75059962272644,0.387393772602081,-0.0588686764240265,0.920032858848572,0.561288416385651,-0.528102040290833,0.637231111526489,0.456208437681198,-0.278313875198364,0.8452308177948,0.527965247631073,-0.397306889295578,0.75059962272644,0.246760696172714,0.580853044986725,0.775705337524414,0.0968781933188438,0.632475852966309,0.768497705459595,0.385940849781036,0.166916713118553,0.907297253608704,0.148330092430115,0.639473676681519,0.754368245601654,0.251245468854904,0.315998136997223,0.914888381958008,0.0968781933188438,0.632475852966309,0.768497705459595,0.229317963123322,0.48029363155365,0.846599757671356,0.148330092430115,0.639473676681519,0.754368245601654,0.384340524673462,0.496930003166199,0.778037846088409,0.384340524673462,0.496930003166199,0.778037846088409,0.658372163772583,0.0440647415816784,0.751401543617249,0.349536031484604,0.43546250462532,0.829576313495636,0.658372163772583,0.0440647415816784,0.751401543617249,0.595453381538391,0.193755432963371,0.779675543308258,0.349536031484604,0.43546250462532,0.829576313495636,0.556739687919617,0.103391379117966,0.824227511882782,0.629023253917694,0.0887856855988503,0.772299647331238,0.651140987873077,-0.0331539548933506,0.758232176303864,0.595453381538391,0.193755432963371,0.779675543308258,0.658372163772583,0.0440647415816784,0.751401543617249,0.651140987873077,-0.0331539548933506,0.758232176303864,0.501362562179565,0.00216983235441148,0.86523449420929,0.246760696172714,0.580853044986725,0.775705337524414,0.385940849781036,0.166916713118553,0.907297253608704,0.387393772602081,-0.0588686764240265,0.920032858848572,0.527965247631073,-0.397306889295578,0.75059962272644,0.456208437681198,-0.278313875198364,0.8452308177948,0.501362562179565,0.00216983235441148,0.86523449420929,0.387393772602081,-0.0588686764240265,0.920032858848572,0.201137691736221,0.489602714776993,0.848429560661316,0.561288416385651,-0.528102040290833,0.637231111526489,0.523906707763672,-0.490512281656265,0.696361482143402,\r\n0.456208437681198,-0.278313875198364,0.8452308177948,0.0968781933188438,0.632475852966309,0.768497705459595,0.246760696172714,0.580853044986725,0.775705337524414,0.280737727880478,0.629370093345642,0.724623739719391,0.148330092430115,0.639473676681519,0.754368245601654,0.0968781933188438,0.632475852966309,0.768497705459595,0.195100039243698,0.589498221874237,0.783854365348816,0.486842542886734,0.369055807590485,0.791695654392242,0.384340524673462,0.496930003166199,0.778037846088409,0.148330092430115,0.639473676681519,0.754368245601654,0.658372163772583,0.0440647415816784,0.751401543617249,0.384340524673462,0.496930003166199,0.778037846088409,0.716582536697388,0.0821543484926224,0.692647099494934,0.651140987873077,-0.0331539548933506,0.758232176303864,0.658372163772583,0.0440647415816784,0.751401543617249,0.649603962898254,-0.077555887401104,0.756306648254395,0.246760696172714,0.580853044986725,0.775705337524414,0.501362562179565,0.00216983235441148,0.86523449420929,0.201137691736221,0.489602714776993,0.848429560661316,0.456208437681198,-0.278313875198364,0.8452308177948,0.196381583809853,0.395789861679077,0.897097885608673,0.387393772602081,-0.0588686764240265,0.920032858848572,0.196381583809853,0.395789861679077,0.897097885608673,0.201137691736221,0.489602714776993,0.848429560661316,0.387393772602081,-0.0588686764240265,0.920032858848572,0.55955559015274,-0.632047951221466,0.5361088514328,0.523906707763672,-0.490512281656265,0.696361482143402,0.561288416385651,-0.528102040290833,0.637231111526489,0.523906707763672,-0.490512281656265,0.696361482143402,0.460098832845688,-0.393140435218811,0.796083867549896,0.456208437681198,-0.278313875198364,0.8452308177948,0.246760696172714,0.580853044986725,0.775705337524414,0.268215745687485,0.588493645191193,0.762715756893158,0.280737727880478,0.629370093345642,0.724623739719391,0.280737727880478,0.629370093345642,0.724623739719391,0.195100039243698,0.589498221874237,0.783854365348816,0.0968781933188438,0.632475852966309,0.768497705459595,0.148330092430115,0.639473676681519,0.754368245601654,\r\n0.195100039243698,0.589498221874237,0.783854365348816,0.486842542886734,0.369055807590485,0.791695654392242,0.486842542886734,0.369055807590485,0.791695654392242,0.716582536697388,0.0821543484926224,0.692647099494934,0.384340524673462,0.496930003166199,0.778037846088409,0.658372163772583,0.0440647415816784,0.751401543617249,0.716582536697388,0.0821543484926224,0.692647099494934,0.76087886095047,-0.220012471079826,0.610456943511963,0.658372163772583,0.0440647415816784,0.751401543617249,0.76087886095047,-0.220012471079826,0.610456943511963,0.649603962898254,-0.077555887401104,0.756306648254395,0.246760696172714,0.580853044986725,0.775705337524414,0.201137691736221,0.489602714776993,0.848429560661316,0.268215745687485,0.588493645191193,0.762715756893158,0.456208437681198,-0.278313875198364,0.8452308177948,0.266779750585556,0.258924096822739,0.928324699401855,0.196381583809853,0.395789861679077,0.897097885608673,0.196381583809853,0.395789861679077,0.897097885608673,0.0726222768425941,0.720702946186066,0.689429581165314,0.201137691736221,0.489602714776993,0.848429560661316,0.539355099201202,-0.563739776611328,0.625534415245056,0.523906707763672,-0.490512281656265,0.696361482143402,0.55955559015274,-0.632047951221466,0.5361088514328,0.539355099201202,-0.563739776611328,0.625534415245056,0.460098832845688,-0.393140435218811,0.796083867549896,0.523906707763672,-0.490512281656265,0.696361482143402,0.456208437681198,-0.278313875198364,0.8452308177948,0.460098832845688,-0.393140435218811,0.796083867549896,0.266779750585556,0.258924096822739,0.928324699401855,0.268215745687485,0.588493645191193,0.762715756893158,0.450572103261948,0.415130019187927,0.790349125862122,0.280737727880478,0.629370093345642,0.724623739719391,0.280737727880478,0.629370093345642,0.724623739719391,0.610235512256622,0.130887433886528,0.781332731246948,0.195100039243698,0.589498221874237,0.783854365348816,0.486842542886734,0.369055807590485,0.791695654392242,0.195100039243698,0.589498221874237,0.783854365348816,0.610235512256622,0.130887433886528,0.781332731246948,\r\n0.486842542886734,0.369055807590485,0.791695654392242,0.731617152690887,-0.13545535504818,0.6681227684021,0.716582536697388,0.0821543484926224,0.692647099494934,0.731617152690887,-0.13545535504818,0.6681227684021,0.76087886095047,-0.220012471079826,0.610456943511963,0.716582536697388,0.0821543484926224,0.692647099494934,0.649603962898254,-0.077555887401104,0.756306648254395,0.76087886095047,-0.220012471079826,0.610456943511963,0.588877975940704,-0.0419148206710815,0.807134330272675,0.201137691736221,0.489602714776993,0.848429560661316,0.0726222768425941,0.720702946186066,0.689429581165314,0.268215745687485,0.588493645191193,0.762715756893158,0.196381583809853,0.395789861679077,0.897097885608673,0.266779750585556,0.258924096822739,0.928324699401855,0.0718779861927032,0.721548557281494,0.6886225938797,0.196381583809853,0.395789861679077,0.897097885608673,0.0718779861927032,0.721548557281494,0.6886225938797,0.0726222768425941,0.720702946186066,0.689429581165314,0.55955559015274,-0.632047951221466,0.5361088514328,0.562350928783417,-0.698562324047089,0.442461401224136,0.539355099201202,-0.563739776611328,0.625534415245056,0.458874762058258,-0.55887097120285,0.690722107887268,0.460098832845688,-0.393140435218811,0.796083867549896,0.539355099201202,-0.563739776611328,0.625534415245056,0.330279171466827,0.244338363409042,0.911709547042847,0.266779750585556,0.258924096822739,0.928324699401855,0.460098832845688,-0.393140435218811,0.796083867549896,0.450572103261948,0.415130019187927,0.790349125862122,0.268215745687485,0.588493645191193,0.762715756893158,0.67443311214447,0.000339937338139862,0.738335788249969,0.644506096839905,0.213920548558235,0.734063804149628,0.280737727880478,0.629370093345642,0.724623739719391,0.450572103261948,0.415130019187927,0.790349125862122,0.610235512256622,0.130887433886528,0.781332731246948,0.280737727880478,0.629370093345642,0.724623739719391,0.644506096839905,0.213920548558235,0.734063804149628,0.486842542886734,0.369055807590485,0.791695654392242,0.610235512256622,0.130887433886528,0.781332731246948,\r\n0.731617152690887,-0.13545535504818,0.6681227684021,0.770283162593842,-0.279319792985916,0.573274910449982,0.76087886095047,-0.220012471079826,0.610456943511963,0.731617152690887,-0.13545535504818,0.6681227684021,0.696971654891968,-0.185633108019829,0.69265478849411,0.588877975940704,-0.0419148206710815,0.807134330272675,0.76087886095047,-0.220012471079826,0.610456943511963,0.268215745687485,0.588493645191193,0.762715756893158,0.0726222768425941,0.720702946186066,0.689429581165314,0.229780629277229,0.656552731990814,0.718428254127502,0.127710923552513,0.715286195278168,0.687062859535217,0.0718779861927032,0.721548557281494,0.6886225938797,0.266779750585556,0.258924096822739,0.928324699401855,0.0718779861927032,0.721548557281494,0.6886225938797,0.229780629277229,0.656552731990814,0.718428254127502,0.0726222768425941,0.720702946186066,0.689429581165314,0.548273265361786,-0.763115763664246,0.342126548290253,0.539355099201202,-0.563739776611328,0.625534415245056,0.562350928783417,-0.698562324047089,0.442461401224136,0.460098832845688,-0.393140435218811,0.796083867549896,0.458874762058258,-0.55887097120285,0.690722107887268,0.419081896543503,-0.481297820806503,0.769884824752808,0.507670104503632,-0.673291265964508,0.537540555000305,0.458874762058258,-0.55887097120285,0.690722107887268,0.539355099201202,-0.563739776611328,0.625534415245056,0.330279171466827,0.244338363409042,0.911709547042847,0.127710923552513,0.715286195278168,0.687062859535217,0.266779750585556,0.258924096822739,0.928324699401855,0.330279171466827,0.244338363409042,0.911709547042847,0.460098832845688,-0.393140435218811,0.796083867549896,0.432428479194641,0.0384704992175102,0.90084707736969,0.268215745687485,0.588493645191193,0.762715756893158,0.616689562797546,0.193678647279739,0.763008773326874,0.67443311214447,0.000339937338139862,0.738335788249969,0.644506096839905,0.213920548558235,0.734063804149628,0.450572103261948,0.415130019187927,0.790349125862122,0.67443311214447,0.000339937338139862,0.738335788249969,0.610235512256622,0.130887433886528,0.781332731246948,\r\n0.644506096839905,0.213920548558235,0.734063804149628,0.771955788135529,-0.19215901196003,0.605936467647552,0.770283162593842,-0.279319792985916,0.573274910449982,0.731617152690887,-0.13545535504818,0.6681227684021,0.610235512256622,0.130887433886528,0.781332731246948,0.696971654891968,-0.185633108019829,0.69265478849411,0.76087886095047,-0.220012471079826,0.610456943511963,0.770283162593842,-0.279319792985916,0.573274910449982,0.268215745687485,0.588493645191193,0.762715756893158,0.229780629277229,0.656552731990814,0.718428254127502,0.616689562797546,0.193678647279739,0.763008773326874,0.127710923552513,0.715286195278168,0.687062859535217,0.159491360187531,0.745357513427734,0.647305607795715,0.0718779861927032,0.721548557281494,0.6886225938797,0.229780629277229,0.656552731990814,0.718428254127502,0.0718779861927032,0.721548557281494,0.6886225938797,0.159491360187531,0.745357513427734,0.647305607795715,0.548273265361786,-0.763115763664246,0.342126548290253,0.507670104503632,-0.673291265964508,0.537540555000305,0.539355099201202,-0.563739776611328,0.625534415245056,0.440930634737015,-0.526181578636169,0.72712653875351,0.419081896543503,-0.481297820806503,0.769884824752808,0.458874762058258,-0.55887097120285,0.690722107887268,0.460098832845688,-0.393140435218811,0.796083867549896,0.419081896543503,-0.481297820806503,0.769884824752808,0.432428479194641,0.0384704992175102,0.90084707736969,0.479956954717636,-0.647854208946228,0.591545462608337,0.458874762058258,-0.55887097120285,0.690722107887268,0.507670104503632,-0.673291265964508,0.537540555000305,0.219409421086311,0.690505027770996,0.68924754858017,0.127710923552513,0.715286195278168,0.687062859535217,0.330279171466827,0.244338363409042,0.911709547042847,0.330279171466827,0.244338363409042,0.911709547042847,0.432428479194641,0.0384704992175102,0.90084707736969,0.219409421086311,0.690505027770996,0.68924754858017,0.616689562797546,0.193678647279739,0.763008773326874,0.779988348484039,-0.229973092675209,0.582005500793457,0.67443311214447,0.000339937338139862,0.738335788249969,\r\n0.644506096839905,0.213920548558235,0.734063804149628,0.67443311214447,0.000339937338139862,0.738335788249969,0.771955788135529,-0.19215901196003,0.605936467647552,0.770283162593842,-0.279319792985916,0.573274910449982,0.610235512256622,0.130887433886528,0.781332731246948,0.771955788135529,-0.19215901196003,0.605936467647552,0.696971654891968,-0.185633108019829,0.69265478849411,0.770283162593842,-0.279319792985916,0.573274910449982,0.651851654052734,-0.139659553766251,0.745375394821167,0.616689562797546,0.193678647279739,0.763008773326874,0.229780629277229,0.656552731990814,0.718428254127502,0.491150856018066,0.404509544372559,0.771454930305481,0.127710923552513,0.715286195278168,0.687062859535217,0.180843561887741,0.787971198558807,0.588554859161377,0.159491360187531,0.745357513427734,0.647305607795715,0.229780629277229,0.656552731990814,0.718428254127502,0.159491360187531,0.745357513427734,0.647305607795715,0.491150856018066,0.404509544372559,0.771454930305481,0.548273265361786,-0.763115763664246,0.342126548290253,0.505502700805664,-0.820004880428314,0.268437892198563,0.507670104503632,-0.673291265964508,0.537540555000305,0.440930634737015,-0.526181578636169,0.72712653875351,0.443048715591431,-0.155565544962883,0.882897019386292,0.419081896543503,-0.481297820806503,0.769884824752808,0.440930634737015,-0.526181578636169,0.72712653875351,0.458874762058258,-0.55887097120285,0.690722107887268,0.479956954717636,-0.647854208946228,0.591545462608337,0.432428479194641,0.0384704992175102,0.90084707736969,0.419081896543503,-0.481297820806503,0.769884824752808,0.443048715591431,-0.155565544962883,0.882897019386292,0.479956954717636,-0.647854208946228,0.591545462608337,0.507670104503632,-0.673291265964508,0.537540555000305,0.509215593338013,-0.781410336494446,0.360689848661423,0.219409421086311,0.690505027770996,0.68924754858017,0.180843561887741,0.787971198558807,0.588554859161377,0.127710923552513,0.715286195278168,0.687062859535217,0.219409421086311,0.690505027770996,0.68924754858017,0.432428479194641,0.0384704992175102,0.90084707736969,\r\n0.287937581539154,0.622530579566956,0.727700114250183,0.729331195354462,-0.0616010129451752,0.681381821632385,0.779988348484039,-0.229973092675209,0.582005500793457,0.616689562797546,0.193678647279739,0.763008773326874,0.779988348484039,-0.229973092675209,0.582005500793457,0.788265287876129,-0.303085088729858,0.53551572561264,0.67443311214447,0.000339937338139862,0.738335788249969,0.67443311214447,0.000339937338139862,0.738335788249969,0.788265287876129,-0.303085088729858,0.53551572561264,0.771955788135529,-0.19215901196003,0.605936467647552,0.770283162593842,-0.279319792985916,0.573274910449982,0.771955788135529,-0.19215901196003,0.605936467647552,0.788265287876129,-0.303085088729858,0.53551572561264,0.770500659942627,-0.267281860113144,0.578695893287659,0.651851654052734,-0.139659553766251,0.745375394821167,0.770283162593842,-0.279319792985916,0.573274910449982,0.616689562797546,0.193678647279739,0.763008773326874,0.491150856018066,0.404509544372559,0.771454930305481,0.729331195354462,-0.0616010129451752,0.681381821632385,0.159491360187531,0.745357513427734,0.647305607795715,0.180843561887741,0.787971198558807,0.588554859161377,0.400494009256363,0.544064819812775,0.737290918827057,0.159491360187531,0.745357513427734,0.647305607795715,0.400494009256363,0.544064819812775,0.737290918827057,0.491150856018066,0.404509544372559,0.771454930305481,0.505502700805664,-0.820004880428314,0.268437892198563,0.509215593338013,-0.781410336494446,0.360689848661423,0.507670104503632,-0.673291265964508,0.537540555000305,0.460635542869568,-0.0817416161298752,0.883817315101624,0.443048715591431,-0.155565544962883,0.882897019386292,0.440930634737015,-0.526181578636169,0.72712653875351,0.479956954717636,-0.647854208946228,0.591545462608337,0.453281253576279,-0.589266121387482,0.66880589723587,0.440930634737015,-0.526181578636169,0.72712653875351,0.432428479194641,0.0384704992175102,0.90084707736969,0.443048715591431,-0.155565544962883,0.882897019386292,0.287937581539154,0.622530579566956,0.727700114250183,0.509215593338013,-0.781410336494446,0.360689848661423,\r\n0.46508401632309,-0.757190763950348,0.458648949861526,0.479956954717636,-0.647854208946228,0.591545462608337,0.192708685994148,0.809049844741821,0.555249214172363,0.180843561887741,0.787971198558807,0.588554859161377,0.219409421086311,0.690505027770996,0.68924754858017,0.219409421086311,0.690505027770996,0.68924754858017,0.287937581539154,0.622530579566956,0.727700114250183,0.192708685994148,0.809049844741821,0.555249214172363,0.779988348484039,-0.229973092675209,0.582005500793457,0.729331195354462,-0.0616010129451752,0.681381821632385,0.784030675888062,-0.294109910726547,0.546621382236481,0.788265287876129,-0.303085088729858,0.53551572561264,0.779988348484039,-0.229973092675209,0.582005500793457,0.770500659942627,-0.267281860113144,0.578695893287659,0.770500659942627,-0.267281860113144,0.578695893287659,0.770283162593842,-0.279319792985916,0.573274910449982,0.788265287876129,-0.303085088729858,0.53551572561264,0.687643229961395,0.0550758764147758,0.723956704139709,0.729331195354462,-0.0616010129451752,0.681381821632385,0.491150856018066,0.404509544372559,0.771454930305481,0.400494009256363,0.544064819812775,0.737290918827057,0.180843561887741,0.787971198558807,0.588554859161377,0.340594381093979,0.630708575248718,0.697281956672668,0.687643229961395,0.0550758764147758,0.723956704139709,0.491150856018066,0.404509544372559,0.771454930305481,0.400494009256363,0.544064819812775,0.737290918827057,0.505502700805664,-0.820004880428314,0.268437892198563,0.465915828943253,-0.87953394651413,0.0966556146740913,0.509215593338013,-0.781410336494446,0.360689848661423,0.460635542869568,-0.0817416161298752,0.883817315101624,0.287937581539154,0.622530579566956,0.727700114250183,0.443048715591431,-0.155565544962883,0.882897019386292,0.453281253576279,-0.589266121387482,0.66880589723587,0.460635542869568,-0.0817416161298752,0.883817315101624,0.440930634737015,-0.526181578636169,0.72712653875351,0.479956954717636,-0.647854208946228,0.591545462608337,0.46508401632309,-0.757190763950348,0.458648949861526,0.453281253576279,-0.589266121387482,0.66880589723587,\r\n0.46508401632309,-0.757190763950348,0.458648949861526,0.509215593338013,-0.781410336494446,0.360689848661423,0.453522503376007,-0.864075601100922,0.218381762504578,0.192708685994148,0.809049844741821,0.555249214172363,0.340594381093979,0.630708575248718,0.697281956672668,0.180843561887741,0.787971198558807,0.588554859161377,0.19319985806942,0.75681746006012,0.624420523643494,0.192708685994148,0.809049844741821,0.555249214172363,0.287937581539154,0.622530579566956,0.727700114250183,0.687643229961395,0.0550758764147758,0.723956704139709,0.784030675888062,-0.294109910726547,0.546621382236481,0.729331195354462,-0.0616010129451752,0.681381821632385,0.779988348484039,-0.229973092675209,0.582005500793457,0.784030675888062,-0.294109910726547,0.546621382236481,0.770500659942627,-0.267281860113144,0.578695893287659,0.400494009256363,0.544064819812775,0.737290918827057,0.340594381093979,0.630708575248718,0.697281956672668,0.582367420196533,0.226869687438011,0.780626773834229,0.687643229961395,0.0550758764147758,0.723956704139709,0.400494009256363,0.544064819812775,0.737290918827057,0.582367420196533,0.226869687438011,0.780626773834229,0.465915828943253,-0.87953394651413,0.0966556146740913,0.453522503376007,-0.864075601100922,0.218381762504578,0.509215593338013,-0.781410336494446,0.360689848661423,0.323224812746048,0.524882376194,0.787415981292725,0.287937581539154,0.622530579566956,0.727700114250183,0.460635542869568,-0.0817416161298752,0.883817315101624,0.460635542869568,-0.0817416161298752,0.883817315101624,0.453281253576279,-0.589266121387482,0.66880589723587,0.442673802375793,-0.161201357841492,0.882073640823364,0.444357633590698,-0.632897853851318,0.634024024009705,0.453281253576279,-0.589266121387482,0.66880589723587,0.46508401632309,-0.757190763950348,0.458648949861526,0.46508401632309,-0.757190763950348,0.458648949861526,0.453522503376007,-0.864075601100922,0.218381762504578,0.463462084531784,-0.83923065662384,0.284419775009155,0.321604430675507,0.648777842521667,0.689679443836212,0.340594381093979,0.630708575248718,0.697281956672668,\r\n0.192708685994148,0.809049844741821,0.555249214172363,0.19319985806942,0.75681746006012,0.624420523643494,0.321604430675507,0.648777842521667,0.689679443836212,0.192708685994148,0.809049844741821,0.555249214172363,0.19319985806942,0.75681746006012,0.624420523643494,0.287937581539154,0.622530579566956,0.727700114250183,0.137252122163773,0.803988516330719,0.57858806848526,0.687643229961395,0.0550758764147758,0.723956704139709,0.757671356201172,-0.155192360281944,0.633915841579437,0.784030675888062,-0.294109910726547,0.546621382236481,0.784030675888062,-0.294109910726547,0.546621382236481,0.777174711227417,-0.279720216989517,0.563698351383209,0.770500659942627,-0.267281860113144,0.578695893287659,0.582367420196533,0.226869687438011,0.780626773834229,0.340594381093979,0.630708575248718,0.697281956672668,0.507610857486725,0.355919480323792,0.784635186195374,0.687643229961395,0.0550758764147758,0.723956704139709,0.582367420196533,0.226869687438011,0.780626773834229,0.757671356201172,-0.155192360281944,0.633915841579437,0.465915828943253,-0.87953394651413,0.0966556146740913,0.411533683538437,-0.911254465579987,0.0159684009850025,0.453522503376007,-0.864075601100922,0.218381762504578,0.323224812746048,0.524882376194,0.787415981292725,0.137252122163773,0.803988516330719,0.57858806848526,0.287937581539154,0.622530579566956,0.727700114250183,0.460635542869568,-0.0817416161298752,0.883817315101624,0.442673802375793,-0.161201357841492,0.882073640823364,0.323224812746048,0.524882376194,0.787415981292725,0.444357633590698,-0.632897853851318,0.634024024009705,0.442673802375793,-0.161201357841492,0.882073640823364,0.453281253576279,-0.589266121387482,0.66880589723587,0.46508401632309,-0.757190763950348,0.458648949861526,0.456333547830582,-0.793123245239258,0.403379589319229,0.444357633590698,-0.632897853851318,0.634024024009705,0.463462084531784,-0.83923065662384,0.284419775009155,0.453522503376007,-0.864075601100922,0.218381762504578,0.427903950214386,-0.892446398735046,0.142959669232368,0.456333547830582,-0.793123245239258,0.403379589319229,\r\n0.46508401632309,-0.757190763950348,0.458648949861526,0.463462084531784,-0.83923065662384,0.284419775009155,0.321604430675507,0.648777842521667,0.689679443836212,0.507610857486725,0.355919480323792,0.784635186195374,0.340594381093979,0.630708575248718,0.697281956672668,0.19319985806942,0.75681746006012,0.624420523643494,0.366733968257904,0.535858273506165,0.760501086711884,0.321604430675507,0.648777842521667,0.689679443836212,0.19319985806942,0.75681746006012,0.624420523643494,0.137252122163773,0.803988516330719,0.57858806848526,0.13582681119442,0.778889775276184,0.612275779247284,0.803273677825928,-0.328896880149841,0.496566444635391,0.784030675888062,-0.294109910726547,0.546621382236481,0.757671356201172,-0.155192360281944,0.633915841579437,0.777174711227417,-0.279720216989517,0.563698351383209,0.784030675888062,-0.294109910726547,0.546621382236481,0.797490835189819,-0.335376739501953,0.501528263092041,0.582367420196533,0.226869687438011,0.780626773834229,0.507610857486725,0.355919480323792,0.784635186195374,0.709027945995331,-0.0109826931729913,0.705094754695892,0.582367420196533,0.226869687438011,0.780626773834229,0.709027945995331,-0.0109826931729913,0.705094754695892,0.757671356201172,-0.155192360281944,0.633915841579437,0.427903950214386,-0.892446398735046,0.142959669232368,0.453522503376007,-0.864075601100922,0.218381762504578,0.411533683538437,-0.911254465579987,0.0159684009850025,0.275631487369537,0.496113240718842,0.823346078395844,0.137252122163773,0.803988516330719,0.57858806848526,0.323224812746048,0.524882376194,0.787415981292725,0.275631487369537,0.496113240718842,0.823346078395844,0.323224812746048,0.524882376194,0.787415981292725,0.442673802375793,-0.161201357841492,0.882073640823364,0.442673802375793,-0.161201357841492,0.882073640823364,0.444357633590698,-0.632897853851318,0.634024024009705,0.448831409215927,-0.192026913166046,0.87274044752121,0.444357633590698,-0.632897853851318,0.634024024009705,0.456333547830582,-0.793123245239258,0.403379589319229,0.486275434494019,-0.69443154335022,0.530377984046936,\r\n0.456333547830582,-0.793123245239258,0.403379589319229,0.463462084531784,-0.83923065662384,0.284419775009155,0.427903950214386,-0.892446398735046,0.142959669232368,0.475846141576767,0.417605936527252,0.774064362049103,0.507610857486725,0.355919480323792,0.784635186195374,0.321604430675507,0.648777842521667,0.689679443836212,0.19319985806942,0.75681746006012,0.624420523643494,0.262785673141479,0.632739543914795,0.728412091732025,0.366733968257904,0.535858273506165,0.760501086711884,0.366733968257904,0.535858273506165,0.760501086711884,0.475846141576767,0.417605936527252,0.774064362049103,0.321604430675507,0.648777842521667,0.689679443836212,0.120612844824791,0.781385660171509,0.612281680107117,0.13582681119442,0.778889775276184,0.612275779247284,0.137252122163773,0.803988516330719,0.57858806848526,0.19319985806942,0.75681746006012,0.624420523643494,0.13582681119442,0.778889775276184,0.612275779247284,0.262785673141479,0.632739543914795,0.728412091732025,0.803273677825928,-0.328896880149841,0.496566444635391,0.797490835189819,-0.335376739501953,0.501528263092041,0.784030675888062,-0.294109910726547,0.546621382236481,0.801340758800507,-0.290915310382843,0.522705554962158,0.803273677825928,-0.328896880149841,0.496566444635391,0.757671356201172,-0.155192360281944,0.633915841579437,0.647339522838593,0.133479997515678,0.750422835350037,0.709027945995331,-0.0109826931729913,0.705094754695892,0.507610857486725,0.355919480323792,0.784635186195374,0.709027945995331,-0.0109826931729913,0.705094754695892,0.801340758800507,-0.290915310382843,0.522705554962158,0.757671356201172,-0.155192360281944,0.633915841579437,0.427903950214386,-0.892446398735046,0.142959669232368,0.411533683538437,-0.911254465579987,0.0159684009850025,0.366902440786362,-0.92475152015686,-0.101079717278481,0.275631487369537,0.496113240718842,0.823346078395844,0.120612844824791,0.781385660171509,0.612281680107117,0.137252122163773,0.803988516330719,0.57858806848526,0.442673802375793,-0.161201357841492,0.882073640823364,0.448831409215927,-0.192026913166046,0.87274044752121,\r\n0.275631487369537,0.496113240718842,0.823346078395844,0.518521785736084,-0.335196167230606,0.786624848842621,0.448831409215927,-0.192026913166046,0.87274044752121,0.444357633590698,-0.632897853851318,0.634024024009705,0.456333547830582,-0.793123245239258,0.403379589319229,0.447068840265274,-0.83402407169342,0.32331582903862,0.486275434494019,-0.69443154335022,0.530377984046936,0.444357633590698,-0.632897853851318,0.634024024009705,0.486275434494019,-0.69443154335022,0.530377984046936,0.518521785736084,-0.335196167230606,0.786624848842621,0.456333547830582,-0.793123245239258,0.403379589319229,0.427903950214386,-0.892446398735046,0.142959669232368,0.447068840265274,-0.83402407169342,0.32331582903862,0.475846141576767,0.417605936527252,0.774064362049103,0.647339522838593,0.133479997515678,0.750422835350037,0.507610857486725,0.355919480323792,0.784635186195374,0.413107067346573,0.447459816932678,0.793172180652618,0.366733968257904,0.535858273506165,0.760501086711884,0.262785673141479,0.632739543914795,0.728412091732025,0.475846141576767,0.417605936527252,0.774064362049103,0.366733968257904,0.535858273506165,0.760501086711884,0.541312515735626,0.283915370702744,0.791437089443207,0.14909952878952,0.806830406188965,0.571658849716187,0.13582681119442,0.778889775276184,0.612275779247284,0.120612844824791,0.781385660171509,0.612281680107117,0.262785673141479,0.632739543914795,0.728412091732025,0.13582681119442,0.778889775276184,0.612275779247284,0.269964933395386,0.662112712860107,0.699089050292969,0.801340758800507,-0.290915310382843,0.522705554962158,0.797490835189819,-0.335376739501953,0.501528263092041,0.803273677825928,-0.328896880149841,0.496566444635391,0.647339522838593,0.133479997515678,0.750422835350037,0.76932567358017,-0.133249849081039,0.624805808067322,0.709027945995331,-0.0109826931729913,0.705094754695892,0.76932567358017,-0.133249849081039,0.624805808067322,0.801340758800507,-0.290915310382843,0.522705554962158,0.709027945995331,-0.0109826931729913,0.705094754695892,0.427903950214386,-0.892446398735046,0.142959669232368,\r\n0.366902440786362,-0.92475152015686,-0.101079717278481,0.423533231019974,-0.898833751678467,0.112771272659302,0.275631487369537,0.496113240718842,0.823346078395844,0.328369975090027,0.374419361352921,0.867169618606567,0.120612844824791,0.781385660171509,0.612281680107117,0.275631487369537,0.496113240718842,0.823346078395844,0.448831409215927,-0.192026913166046,0.87274044752121,0.328369975090027,0.374419361352921,0.867169618606567,0.518521785736084,-0.335196167230606,0.786624848842621,0.328369975090027,0.374419361352921,0.867169618606567,0.448831409215927,-0.192026913166046,0.87274044752121,0.447068840265274,-0.83402407169342,0.32331582903862,0.482179909944534,-0.789823830127716,0.379052400588989,0.486275434494019,-0.69443154335022,0.530377984046936,0.518521785736084,-0.335196167230606,0.786624848842621,0.486275434494019,-0.69443154335022,0.530377984046936,0.531291961669922,-0.428087770938873,0.731074213981628,0.427903950214386,-0.892446398735046,0.142959669232368,0.423533231019974,-0.898833751678467,0.112771272659302,0.447068840265274,-0.83402407169342,0.32331582903862,0.475846141576767,0.417605936527252,0.774064362049103,0.541312515735626,0.283915370702744,0.791437089443207,0.647339522838593,0.133479997515678,0.750422835350037,0.413107067346573,0.447459816932678,0.793172180652618,0.541312515735626,0.283915370702744,0.791437089443207,0.366733968257904,0.535858273506165,0.760501086711884,0.413107067346573,0.447459816932678,0.793172180652618,0.262785673141479,0.632739543914795,0.728412091732025,0.269964933395386,0.662112712860107,0.699089050292969,0.14909952878952,0.806830406188965,0.571658849716187,0.269964933395386,0.662112712860107,0.699089050292969,0.13582681119442,0.778889775276184,0.612275779247284,0.120612844824791,0.781385660171509,0.612281680107117,0.162344038486481,0.774491310119629,0.611397981643677,0.14909952878952,0.806830406188965,0.571658849716187,0.801340758800507,-0.290915310382843,0.522705554962158,0.785460412502289,-0.268385708332062,0.557692468166351,0.797490835189819,-0.335376739501953,0.501528263092041,\r\n0.707168221473694,-0.0039675566367805,0.707034111022949,0.76932567358017,-0.133249849081039,0.624805808067322,0.647339522838593,0.133479997515678,0.750422835350037,0.801340758800507,-0.290915310382843,0.522705554962158,0.76932567358017,-0.133249849081039,0.624805808067322,0.770186305046082,-0.232611626386642,0.593889474868774,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.423533231019974,-0.898833751678467,0.112771272659302,0.366902440786362,-0.92475152015686,-0.101079717278481,0.120612844824791,0.781385660171509,0.612281680107117,0.328369975090027,0.374419361352921,0.867169618606567,0.162344038486481,0.774491310119629,0.611397981643677,0.328369975090027,0.374419361352921,0.867169618606567,0.518521785736084,-0.335196167230606,0.786624848842621,0.400402098894119,0.408441543579102,0.820276498794556,0.423533231019974,-0.898833751678467,0.112771272659302,0.482179909944534,-0.789823830127716,0.379052400588989,0.447068840265274,-0.83402407169342,0.32331582903862,0.48377913236618,-0.578627049922943,0.656618893146515,0.486275434494019,-0.69443154335022,0.530377984046936,0.482179909944534,-0.789823830127716,0.379052400588989,0.531291961669922,-0.428087770938873,0.731074213981628,0.486275434494019,-0.69443154335022,0.530377984046936,0.48377913236618,-0.578627049922943,0.656618893146515,0.518521785736084,-0.335196167230606,0.786624848842621,0.531291961669922,-0.428087770938873,0.731074213981628,0.516268491744995,0.226922020316124,0.825816631317139,0.707168221473694,-0.0039675566367805,0.707034111022949,0.647339522838593,0.133479997515678,0.750422835350037,0.541312515735626,0.283915370702744,0.791437089443207,0.541312515735626,0.283915370702744,0.791437089443207,0.413107067346573,0.447459816932678,0.793172180652618,0.564958512783051,0.192830547690392,0.802270591259003,0.413107067346573,0.447459816932678,0.793172180652618,0.269964933395386,0.662112712860107,0.699089050292969,0.39932182431221,0.492306679487228,0.773418426513672,0.269964933395386,0.662112712860107,0.699089050292969,0.14909952878952,0.806830406188965,0.571658849716187,\r\n0.244025737047195,0.740572810173035,0.626101613044739,0.196226716041565,0.822570562362671,0.533734560012817,0.14909952878952,0.806830406188965,0.571658849716187,0.162344038486481,0.774491310119629,0.611397981643677,0.785460412502289,-0.268385708332062,0.557692468166351,0.801340758800507,-0.290915310382843,0.522705554962158,0.785748362541199,-0.303555369377136,0.538937389850616,0.707168221473694,-0.0039675566367805,0.707034111022949,0.770186305046082,-0.232611626386642,0.593889474868774,0.76932567358017,-0.133249849081039,0.624805808067322,0.801340758800507,-0.290915310382843,0.522705554962158,0.770186305046082,-0.232611626386642,0.593889474868774,0.785748362541199,-0.303555369377136,0.538937389850616,0.432772904634476,-0.874702990055084,0.218179404735565,0.423533231019974,-0.898833751678467,0.112771272659302,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.366902440786362,-0.92475152015686,-0.101079717278481,0.30532369017601,-0.914015889167786,-0.267118036746979,0.328369975090027,0.374419361352921,0.867169618606567,0.400402098894119,0.408441543579102,0.820276498794556,0.162344038486481,0.774491310119629,0.611397981643677,0.400402098894119,0.408441543579102,0.820276498794556,0.518521785736084,-0.335196167230606,0.786624848842621,0.516268491744995,0.226922020316124,0.825816631317139,0.432772904634476,-0.874702990055084,0.218179404735565,0.482179909944534,-0.789823830127716,0.379052400588989,0.423533231019974,-0.898833751678467,0.112771272659302,0.498289555311203,-0.71522843837738,0.490056782960892,0.48377913236618,-0.578627049922943,0.656618893146515,0.482179909944534,-0.789823830127716,0.379052400588989,0.531291961669922,-0.428087770938873,0.731074213981628,0.48377913236618,-0.578627049922943,0.656618893146515,0.455107450485229,0.0419235378503799,0.889449000358582,0.516268491744995,0.226922020316124,0.825816631317139,0.531291961669922,-0.428087770938873,0.731074213981628,0.455107450485229,0.0419235378503799,0.889449000358582,0.541312515735626,0.283915370702744,0.791437089443207,\r\n0.669182240962982,0.0456385277211666,0.741695404052734,0.707168221473694,-0.0039675566367805,0.707034111022949,0.564958512783051,0.192830547690392,0.802270591259003,0.413107067346573,0.447459816932678,0.793172180652618,0.525840878486633,0.289552479982376,0.799781560897827,0.564958512783051,0.192830547690392,0.802270591259003,0.669182240962982,0.0456385277211666,0.741695404052734,0.541312515735626,0.283915370702744,0.791437089443207,0.269964933395386,0.662112712860107,0.699089050292969,0.350998401641846,0.569648802280426,0.743169009685516,0.39932182431221,0.492306679487228,0.773418426513672,0.413107067346573,0.447459816932678,0.793172180652618,0.39932182431221,0.492306679487228,0.773418426513672,0.525840878486633,0.289552479982376,0.799781560897827,0.196226716041565,0.822570562362671,0.533734560012817,0.244025737047195,0.740572810173035,0.626101613044739,0.14909952878952,0.806830406188965,0.571658849716187,0.269964933395386,0.662112712860107,0.699089050292969,0.244025737047195,0.740572810173035,0.626101613044739,0.350998401641846,0.569648802280426,0.743169009685516,0.162344038486481,0.774491310119629,0.611397981643677,0.29590892791748,0.741468608379364,0.602214157581329,0.196226716041565,0.822570562362671,0.533734560012817,0.770186305046082,-0.232611626386642,0.593889474868774,0.707168221473694,-0.0039675566367805,0.707034111022949,0.669182240962982,0.0456385277211666,0.741695404052734,0.785748362541199,-0.303555369377136,0.538937389850616,0.770186305046082,-0.232611626386642,0.593889474868774,0.786494195461273,-0.300923973321915,0.539325058460236,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.426525771617889,-0.901177287101746,0.0771693587303162,0.432772904634476,-0.874702990055084,0.218179404735565,0.337995916604996,-0.925707221031189,-0.169778630137444,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.30532369017601,-0.914015889167786,-0.267118036746979,0.400402098894119,0.408441543579102,0.820276498794556,0.29590892791748,0.741468608379364,0.602214157581329,0.162344038486481,0.774491310119629,0.611397981643677,\r\n0.400402098894119,0.408441543579102,0.820276498794556,0.516268491744995,0.226922020316124,0.825816631317139,0.29590892791748,0.741468608379364,0.602214157581329,0.498289555311203,-0.71522843837738,0.490056782960892,0.482179909944534,-0.789823830127716,0.379052400588989,0.432772904634476,-0.874702990055084,0.218179404735565,0.500983655452728,-0.372005552053452,0.781426310539246,0.48377913236618,-0.578627049922943,0.656618893146515,0.498289555311203,-0.71522843837738,0.490056782960892,0.500983655452728,-0.372005552053452,0.781426310539246,0.455107450485229,0.0419235378503799,0.889449000358582,0.48377913236618,-0.578627049922943,0.656618893146515,0.516268491744995,0.226922020316124,0.825816631317139,0.455107450485229,0.0419235378503799,0.889449000358582,0.294410049915314,0.719633996486664,0.628847718238831,0.564958512783051,0.192830547690392,0.802270591259003,0.525840878486633,0.289552479982376,0.799781560897827,0.664701700210571,0.0281601026654243,0.746577858924866,0.564958512783051,0.192830547690392,0.802270591259003,0.718557178974152,-0.0990635901689529,0.688376307487488,0.669182240962982,0.0456385277211666,0.741695404052734,0.455607444047928,0.40674102306366,0.791822850704193,0.39932182431221,0.492306679487228,0.773418426513672,0.350998401641846,0.569648802280426,0.743169009685516,0.455607444047928,0.40674102306366,0.791822850704193,0.525840878486633,0.289552479982376,0.799781560897827,0.39932182431221,0.492306679487228,0.773418426513672,0.225113451480865,0.798876106739044,0.557781994342804,0.244025737047195,0.740572810173035,0.626101613044739,0.196226716041565,0.822570562362671,0.533734560012817,0.317870855331421,0.628392219543457,0.709986746311188,0.350998401641846,0.569648802280426,0.743169009685516,0.244025737047195,0.740572810173035,0.626101613044739,0.294410049915314,0.719633996486664,0.628847718238831,0.196226716041565,0.822570562362671,0.533734560012817,0.29590892791748,0.741468608379364,0.602214157581329,0.718557178974152,-0.0990635901689529,0.688376307487488,0.770186305046082,-0.232611626386642,0.593889474868774,\r\n0.669182240962982,0.0456385277211666,0.741695404052734,0.718557178974152,-0.0990635901689529,0.688376307487488,0.786494195461273,-0.300923973321915,0.539325058460236,0.770186305046082,-0.232611626386642,0.593889474868774,0.777904033660889,-0.319045066833496,0.541364371776581,0.785748362541199,-0.303555369377136,0.538937389850616,0.786494195461273,-0.300923973321915,0.539325058460236,0.358150392770767,-0.930541634559631,-0.0762923434376717,0.337995916604996,-0.925707221031189,-0.169778630137444,0.426525771617889,-0.901177287101746,0.0771693587303162,0.432772904634476,-0.874702990055084,0.218179404735565,0.426525771617889,-0.901177287101746,0.0771693587303162,0.478044152259827,-0.816734373569489,0.32313871383667,0.30532369017601,-0.914015889167786,-0.267118036746979,0.254871159791946,-0.908683836460114,-0.330657422542572,0.337995916604996,-0.925707221031189,-0.169778630137444,0.294410049915314,0.719633996486664,0.628847718238831,0.29590892791748,0.741468608379364,0.602214157581329,0.516268491744995,0.226922020316124,0.825816631317139,0.432772904634476,-0.874702990055084,0.218179404735565,0.478044152259827,-0.816734373569489,0.32313871383667,0.498289555311203,-0.71522843837738,0.490056782960892,0.6052525639534,-0.436431646347046,0.665730118751526,0.500983655452728,-0.372005552053452,0.781426310539246,0.498289555311203,-0.71522843837738,0.490056782960892,0.455107450485229,0.0419235378503799,0.889449000358582,0.500983655452728,-0.372005552053452,0.781426310539246,0.541546583175659,0.242147102952003,0.805041551589966,0.455107450485229,0.0419235378503799,0.889449000358582,0.541546583175659,0.242147102952003,0.805041551589966,0.294410049915314,0.719633996486664,0.628847718238831,0.624428808689117,0.0981506556272507,0.7748903632164,0.664701700210571,0.0281601026654243,0.746577858924866,0.525840878486633,0.289552479982376,0.799781560897827,0.718557178974152,-0.0990635901689529,0.688376307487488,0.564958512783051,0.192830547690392,0.802270591259003,0.664701700210571,0.0281601026654243,0.746577858924866,0.412816405296326,0.480329185724258,0.773864567279816,\r\n0.455607444047928,0.40674102306366,0.791822850704193,0.350998401641846,0.569648802280426,0.743169009685516,0.525840878486633,0.289552479982376,0.799781560897827,0.455607444047928,0.40674102306366,0.791822850704193,0.565367460250854,0.208432197570801,0.798069834709167,0.22223362326622,0.757053256034851,0.614395976066589,0.244025737047195,0.740572810173035,0.626101613044739,0.225113451480865,0.798876106739044,0.557781994342804,0.225113451480865,0.798876106739044,0.557781994342804,0.196226716041565,0.822570562362671,0.533734560012817,0.294410049915314,0.719633996486664,0.628847718238831,0.317870855331421,0.628392219543457,0.709986746311188,0.412816405296326,0.480329185724258,0.773864567279816,0.350998401641846,0.569648802280426,0.743169009685516,0.22223362326622,0.757053256034851,0.614395976066589,0.317870855331421,0.628392219543457,0.709986746311188,0.244025737047195,0.740572810173035,0.626101613044739,0.718557178974152,-0.0990635901689529,0.688376307487488,0.756892800331116,-0.21231897175312,0.618088901042938,0.786494195461273,-0.300923973321915,0.539325058460236,0.777904033660889,-0.319045066833496,0.541364371776581,0.775683522224426,-0.297049760818481,0.55684494972229,0.785748362541199,-0.303555369377136,0.538937389850616,0.786494195461273,-0.300923973321915,0.539325058460236,0.756892800331116,-0.21231897175312,0.618088901042938,0.777904033660889,-0.319045066833496,0.541364371776581,0.461191415786743,-0.879885077476501,0.114475727081299,0.426525771617889,-0.901177287101746,0.0771693587303162,0.337995916604996,-0.925707221031189,-0.169778630137444,0.478044152259827,-0.816734373569489,0.32313871383667,0.426525771617889,-0.901177287101746,0.0771693587303162,0.532707214355469,-0.73984032869339,0.410924941301346,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.337995916604996,-0.925707221031189,-0.169778630137444,0.254871159791946,-0.908683836460114,-0.330657422542572,0.498289555311203,-0.71522843837738,0.490056782960892,0.478044152259827,-0.816734373569489,0.32313871383667,0.595266044139862,-0.636253416538239,0.490754306316376,\r\n0.6052525639534,-0.436431646347046,0.665730118751526,0.541546583175659,0.242147102952003,0.805041551589966,0.500983655452728,-0.372005552053452,0.781426310539246,0.498289555311203,-0.71522843837738,0.490056782960892,0.595266044139862,-0.636253416538239,0.490754306316376,0.6052525639534,-0.436431646347046,0.665730118751526,0.472811907529831,0.580746114253998,0.662708580493927,0.294410049915314,0.719633996486664,0.628847718238831,0.541546583175659,0.242147102952003,0.805041551589966,0.624428808689117,0.0981506556272507,0.7748903632164,0.721549868583679,-0.130518555641174,0.679948925971985,0.664701700210571,0.0281601026654243,0.746577858924866,0.525840878486633,0.289552479982376,0.799781560897827,0.565367460250854,0.208432197570801,0.798069834709167,0.624428808689117,0.0981506556272507,0.7748903632164,0.718557178974152,-0.0990635901689529,0.688376307487488,0.664701700210571,0.0281601026654243,0.746577858924866,0.756892800331116,-0.21231897175312,0.618088901042938,0.412816405296326,0.480329185724258,0.773864567279816,0.502450466156006,0.317032992839813,0.804383873939514,0.455607444047928,0.40674102306366,0.791822850704193,0.455607444047928,0.40674102306366,0.791822850704193,0.502450466156006,0.317032992839813,0.804383873939514,0.565367460250854,0.208432197570801,0.798069834709167,0.225113451480865,0.798876106739044,0.557781994342804,0.242377072572708,0.768776595592499,0.591807186603546,0.22223362326622,0.757053256034851,0.614395976066589,0.472811907529831,0.580746114253998,0.662708580493927,0.225113451480865,0.798876106739044,0.557781994342804,0.294410049915314,0.719633996486664,0.628847718238831,0.356569349765778,0.541812121868134,0.761116147041321,0.412816405296326,0.480329185724258,0.773864567279816,0.317870855331421,0.628392219543457,0.709986746311188,0.260957300662994,0.678691804409027,0.686497271060944,0.317870855331421,0.628392219543457,0.709986746311188,0.22223362326622,0.757053256034851,0.614395976066589,0.775683522224426,-0.297049760818481,0.55684494972229,0.777904033660889,-0.319045066833496,0.541364371776581,\r\n0.766999840736389,-0.271848022937775,0.581214010715485,0.721549868583679,-0.130518555641174,0.679948925971985,0.777904033660889,-0.319045066833496,0.541364371776581,0.756892800331116,-0.21231897175312,0.618088901042938,0.461191415786743,-0.879885077476501,0.114475727081299,0.532707214355469,-0.73984032869339,0.410924941301346,0.426525771617889,-0.901177287101746,0.0771693587303162,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.461191415786743,-0.879885077476501,0.114475727081299,0.337995916604996,-0.925707221031189,-0.169778630137444,0.532707214355469,-0.73984032869339,0.410924941301346,0.595266044139862,-0.636253416538239,0.490754306316376,0.478044152259827,-0.816734373569489,0.32313871383667,0.229289188981056,-0.918832540512085,-0.321205824613571,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.254871159791946,-0.908683836460114,-0.330657422542572,0.6052525639534,-0.436431646347046,0.665730118751526,0.716331660747528,-0.110541760921478,0.688947975635529,0.541546583175659,0.242147102952003,0.805041551589966,0.6052525639534,-0.436431646347046,0.665730118751526,0.595266044139862,-0.636253416538239,0.490754306316376,0.716331660747528,-0.110541760921478,0.688947975635529,0.541546583175659,0.242147102952003,0.805041551589966,0.716331660747528,-0.110541760921478,0.688947975635529,0.472811907529831,0.580746114253998,0.662708580493927,0.624428808689117,0.0981506556272507,0.7748903632164,0.682405531406403,-0.0287139154970646,0.730409562587738,0.721549868583679,-0.130518555641174,0.679948925971985,0.721549868583679,-0.130518555641174,0.679948925971985,0.756892800331116,-0.21231897175312,0.618088901042938,0.664701700210571,0.0281601026654243,0.746577858924866,0.624428808689117,0.0981506556272507,0.7748903632164,0.565367460250854,0.208432197570801,0.798069834709167,0.682405531406403,-0.0287139154970646,0.730409562587738,0.453344017267227,0.391771048307419,0.800621330738068,0.502450466156006,0.317032992839813,0.804383873939514,0.412816405296326,0.480329185724258,0.773864567279816,0.565367460250854,0.208432197570801,0.798069834709167,\r\n0.502450466156006,0.317032992839813,0.804383873939514,0.579974293708801,0.142212525010109,0.802125453948975,0.225113451480865,0.798876106739044,0.557781994342804,0.35258737206459,0.62508636713028,0.696382820606232,0.242377072572708,0.768776595592499,0.591807186603546,0.22223362326622,0.757053256034851,0.614395976066589,0.242377072572708,0.768776595592499,0.591807186603546,0.204762607812881,0.771462678909302,0.602426290512085,0.472811907529831,0.580746114253998,0.662708580493927,0.35258737206459,0.62508636713028,0.696382820606232,0.225113451480865,0.798876106739044,0.557781994342804,0.356569349765778,0.541812121868134,0.761116147041321,0.453344017267227,0.391771048307419,0.800621330738068,0.412816405296326,0.480329185724258,0.773864567279816,0.260957300662994,0.678691804409027,0.686497271060944,0.356569349765778,0.541812121868134,0.761116147041321,0.317870855331421,0.628392219543457,0.709986746311188,0.22223362326622,0.757053256034851,0.614395976066589,0.204762607812881,0.771462678909302,0.602426290512085,0.260957300662994,0.678691804409027,0.686497271060944,0.766999840736389,-0.271848022937775,0.581214010715485,0.777904033660889,-0.319045066833496,0.541364371776581,0.721549868583679,-0.130518555641174,0.679948925971985,0.775683522224426,-0.297049760818481,0.55684494972229,0.766999840736389,-0.271848022937775,0.581214010715485,0.753810524940491,-0.236630260944366,0.613005399703979,0.532707214355469,-0.73984032869339,0.410924941301346,0.461191415786743,-0.879885077476501,0.114475727081299,0.556603789329529,-0.738830149173737,0.379897505044937,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.530288279056549,-0.804530680179596,0.267440676689148,0.461191415786743,-0.879885077476501,0.114475727081299,0.532707214355469,-0.73984032869339,0.410924941301346,0.641518414020538,-0.0810020714998245,0.762818872928619,0.595266044139862,-0.636253416538239,0.490754306316376,0.229289188981056,-0.918832540512085,-0.321205824613571,0.458324104547501,-0.887789785861969,0.042050763964653,0.372488647699356,-0.925969660282135,-0.0619052872061729,\r\n0.641518414020538,-0.0810020714998245,0.762818872928619,0.716331660747528,-0.110541760921478,0.688947975635529,0.595266044139862,-0.636253416538239,0.490754306316376,0.641518414020538,-0.0810020714998245,0.762818872928619,0.472811907529831,0.580746114253998,0.662708580493927,0.716331660747528,-0.110541760921478,0.688947975635529,0.721549868583679,-0.130518555641174,0.679948925971985,0.682405531406403,-0.0287139154970646,0.730409562587738,0.766999840736389,-0.271848022937775,0.581214010715485,0.644583642482758,0.0402835682034492,0.763471722602844,0.682405531406403,-0.0287139154970646,0.730409562587738,0.565367460250854,0.208432197570801,0.798069834709167,0.453344017267227,0.391771048307419,0.800621330738068,0.543245732784271,0.222094416618347,0.809665441513062,0.502450466156006,0.317032992839813,0.804383873939514,0.543245732784271,0.222094416618347,0.809665441513062,0.579974293708801,0.142212525010109,0.802125453948975,0.502450466156006,0.317032992839813,0.804383873939514,0.565367460250854,0.208432197570801,0.798069834709167,0.579974293708801,0.142212525010109,0.802125453948975,0.644583642482758,0.0402835682034492,0.763471722602844,0.35258737206459,0.62508636713028,0.696382820606232,0.4790098965168,0.441199690103531,0.758875608444214,0.242377072572708,0.768776595592499,0.591807186603546,0.242377072572708,0.768776595592499,0.591807186603546,0.271827876567841,0.714590787887573,0.644569218158722,0.204762607812881,0.771462678909302,0.602426290512085,0.472811907529831,0.580746114253998,0.662708580493927,0.641518414020538,-0.0810020714998245,0.762818872928619,0.35258737206459,0.62508636713028,0.696382820606232,0.356569349765778,0.541812121868134,0.761116147041321,0.402676463127136,0.443473845720291,0.80073869228363,0.453344017267227,0.391771048307419,0.800621330738068,0.356569349765778,0.541812121868134,0.761116147041321,0.260957300662994,0.678691804409027,0.686497271060944,0.304999053478241,0.611037850379944,0.730484843254089,0.260957300662994,0.678691804409027,0.686497271060944,0.204762607812881,0.771462678909302,0.602426290512085,\r\n0.226431801915169,0.717324197292328,0.658919215202332,0.753810524940491,-0.236630260944366,0.613005399703979,0.766999840736389,-0.271848022937775,0.581214010715485,0.757432699203491,-0.284330457448959,0.587751507759094,0.556603789329529,-0.738830149173737,0.379897505044937,0.461191415786743,-0.879885077476501,0.114475727081299,0.530288279056549,-0.804530680179596,0.267440676689148,0.532707214355469,-0.73984032869339,0.410924941301346,0.556603789329529,-0.738830149173737,0.379897505044937,0.630516707897186,-0.30230838060379,0.714883327484131,0.530288279056549,-0.804530680179596,0.267440676689148,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.505776166915894,-0.829120874404907,0.238220259547234,0.641518414020538,-0.0810020714998245,0.762818872928619,0.532707214355469,-0.73984032869339,0.410924941301346,0.630516707897186,-0.30230838060379,0.714883327484131,0.352464079856873,-0.935154855251312,-0.035417165607214,0.458324104547501,-0.887789785861969,0.042050763964653,0.229289188981056,-0.918832540512085,-0.321205824613571,0.458324104547501,-0.887789785861969,0.042050763964653,0.505776166915894,-0.829120874404907,0.238220259547234,0.372488647699356,-0.925969660282135,-0.0619052872061729,0.682405531406403,-0.0287139154970646,0.730409562587738,0.720329284667969,-0.137869447469711,0.679792284965515,0.766999840736389,-0.271848022937775,0.581214010715485,0.644583642482758,0.0402835682034492,0.763471722602844,0.720329284667969,-0.137869447469711,0.679792284965515,0.682405531406403,-0.0287139154970646,0.730409562587738,0.453344017267227,0.391771048307419,0.800621330738068,0.472416043281555,0.322268307209015,0.820345103740692,0.543245732784271,0.222094416618347,0.809665441513062,0.579974293708801,0.142212525010109,0.802125453948975,0.543245732784271,0.222094416618347,0.809665441513062,0.624876320362091,0.0598969794809818,0.778422713279724,0.644583642482758,0.0402835682034492,0.763471722602844,0.579974293708801,0.142212525010109,0.802125453948975,0.682718753814697,-0.057049922645092,0.728450655937195,0.35258737206459,0.62508636713028,0.696382820606232,\r\n0.641518414020538,-0.0810020714998245,0.762818872928619,0.4790098965168,0.441199690103531,0.758875608444214,0.4790098965168,0.441199690103531,0.758875608444214,0.509370565414429,0.377973616123199,0.773095965385437,0.242377072572708,0.768776595592499,0.591807186603546,0.242377072572708,0.768776595592499,0.591807186603546,0.509370565414429,0.377973616123199,0.773095965385437,0.271827876567841,0.714590787887573,0.644569218158722,0.271827876567841,0.714590787887573,0.644569218158722,0.409545123577118,0.629871129989624,0.659950733184814,0.204762607812881,0.771462678909302,0.602426290512085,0.402676463127136,0.443473845720291,0.80073869228363,0.356569349765778,0.541812121868134,0.761116147041321,0.365151613950729,0.509310066699982,0.779273629188538,0.453344017267227,0.391771048307419,0.800621330738068,0.402676463127136,0.443473845720291,0.80073869228363,0.472416043281555,0.322268307209015,0.820345103740692,0.260957300662994,0.678691804409027,0.686497271060944,0.226431801915169,0.717324197292328,0.658919215202332,0.304999053478241,0.611037850379944,0.730484843254089,0.356569349765778,0.541812121868134,0.761116147041321,0.304999053478241,0.611037850379944,0.730484843254089,0.365151613950729,0.509310066699982,0.779273629188538,0.24747422337532,0.750146687030792,0.613218069076538,0.226431801915169,0.717324197292328,0.658919215202332,0.204762607812881,0.771462678909302,0.602426290512085,0.757432699203491,-0.284330457448959,0.587751507759094,0.766999840736389,-0.271848022937775,0.581214010715485,0.720329284667969,-0.137869447469711,0.679792284965515,0.757432699203491,-0.284330457448959,0.587751507759094,0.775993883609772,-0.297175824642181,0.556345045566559,0.753810524940491,-0.236630260944366,0.613005399703979,0.677663207054138,-0.420736074447632,0.603119850158691,0.556603789329529,-0.738830149173737,0.379897505044937,0.530288279056549,-0.804530680179596,0.267440676689148,0.630516707897186,-0.30230838060379,0.714883327484131,0.556603789329529,-0.738830149173737,0.379897505044937,0.677663207054138,-0.420736074447632,0.603119850158691,\r\n0.530288279056549,-0.804530680179596,0.267440676689148,0.505776166915894,-0.829120874404907,0.238220259547234,0.616996169090271,-0.542100250720978,0.570475995540619,0.641518414020538,-0.0810020714998245,0.762818872928619,0.630516707897186,-0.30230838060379,0.714883327484131,0.4790098965168,0.441199690103531,0.758875608444214,0.596005082130432,-0.7355597615242,0.322070837020874,0.458324104547501,-0.887789785861969,0.042050763964653,0.352464079856873,-0.935154855251312,-0.035417165607214,0.352464079856873,-0.935154855251312,-0.035417165607214,0.229289188981056,-0.918832540512085,-0.321205824613571,0.38063171505928,-0.910725831985474,-0.160305455327034,0.674501061439514,-0.630334079265594,0.384352803230286,0.505776166915894,-0.829120874404907,0.238220259547234,0.458324104547501,-0.887789785861969,0.042050763964653,0.682718753814697,-0.057049922645092,0.728450655937195,0.720329284667969,-0.137869447469711,0.679792284965515,0.644583642482758,0.0402835682034492,0.763471722602844,0.536631643772125,0.199642583727837,0.819859206676483,0.543245732784271,0.222094416618347,0.809665441513062,0.472416043281555,0.322268307209015,0.820345103740692,0.624876320362091,0.0598969794809818,0.778422713279724,0.543245732784271,0.222094416618347,0.809665441513062,0.584278583526611,0.124834358692169,0.80189448595047,0.682718753814697,-0.057049922645092,0.728450655937195,0.579974293708801,0.142212525010109,0.802125453948975,0.624876320362091,0.0598969794809818,0.778422713279724,0.630516707897186,-0.30230838060379,0.714883327484131,0.509370565414429,0.377973616123199,0.773095965385437,0.4790098965168,0.441199690103531,0.758875608444214,0.555403053760529,0.223737701773643,0.800917446613312,0.271827876567841,0.714590787887573,0.644569218158722,0.509370565414429,0.377973616123199,0.773095965385437,0.409545123577118,0.629871129989624,0.659950733184814,0.271827876567841,0.714590787887573,0.644569218158722,0.555403053760529,0.223737701773643,0.800917446613312,0.24747422337532,0.750146687030792,0.613218069076538,0.204762607812881,0.771462678909302,0.602426290512085,\r\n0.409545123577118,0.629871129989624,0.659950733184814,0.402676463127136,0.443473845720291,0.80073869228363,0.365151613950729,0.509310066699982,0.779273629188538,0.436118572950363,0.380337536334991,0.815563559532166,0.436118572950363,0.380337536334991,0.815563559532166,0.472416043281555,0.322268307209015,0.820345103740692,0.402676463127136,0.443473845720291,0.80073869228363,0.226431801915169,0.717324197292328,0.658919215202332,0.262311369180679,0.671252548694611,0.693262279033661,0.304999053478241,0.611037850379944,0.730484843254089,0.334126830101013,0.566083788871765,0.753596842288971,0.365151613950729,0.509310066699982,0.779273629188538,0.304999053478241,0.611037850379944,0.730484843254089,0.343394726514816,0.688366591930389,0.638929724693298,0.226431801915169,0.717324197292328,0.658919215202332,0.24747422337532,0.750146687030792,0.613218069076538,0.682718753814697,-0.057049922645092,0.728450655937195,0.757432699203491,-0.284330457448959,0.587751507759094,0.720329284667969,-0.137869447469711,0.679792284965515,0.775993883609772,-0.297175824642181,0.556345045566559,0.757432699203491,-0.284330457448959,0.587751507759094,0.770972847938538,-0.283977031707764,0.570050656795502,0.677663207054138,-0.420736074447632,0.603119850158691,0.530288279056549,-0.804530680179596,0.267440676689148,0.616996169090271,-0.542100250720978,0.570475995540619,0.630516707897186,-0.30230838060379,0.714883327484131,0.677663207054138,-0.420736074447632,0.603119850158691,0.509370565414429,0.377973616123199,0.773095965385437,0.674501061439514,-0.630334079265594,0.384352803230286,0.616996169090271,-0.542100250720978,0.570475995540619,0.505776166915894,-0.829120874404907,0.238220259547234,0.674501061439514,-0.630334079265594,0.384352803230286,0.458324104547501,-0.887789785861969,0.042050763964653,0.596005082130432,-0.7355597615242,0.322070837020874,0.352464079856873,-0.935154855251312,-0.035417165607214,0.418950229883194,-0.903230428695679,0.093034140765667,0.596005082130432,-0.7355597615242,0.322070837020874,0.262964874505997,-0.91510009765625,-0.305681645870209,\r\n0.38063171505928,-0.910725831985474,-0.160305455327034,0.229289188981056,-0.918832540512085,-0.321205824613571,0.352464079856873,-0.935154855251312,-0.035417165607214,0.38063171505928,-0.910725831985474,-0.160305455327034,0.418950229883194,-0.903230428695679,0.093034140765667,0.536631643772125,0.199642583727837,0.819859206676483,0.584278583526611,0.124834358692169,0.80189448595047,0.543245732784271,0.222094416618347,0.809665441513062,0.436118572950363,0.380337536334991,0.815563559532166,0.536631643772125,0.199642583727837,0.819859206676483,0.472416043281555,0.322268307209015,0.820345103740692,0.624876320362091,0.0598969794809818,0.778422713279724,0.584278583526611,0.124834358692169,0.80189448595047,0.642026722431183,0.000581815664190799,0.766681969165802,0.682718753814697,-0.057049922645092,0.728450655937195,0.624876320362091,0.0598969794809818,0.778422713279724,0.709228217601776,-0.151607945561409,0.688484013080597,0.555403053760529,0.223737701773643,0.800917446613312,0.509370565414429,0.377973616123199,0.773095965385437,0.677663207054138,-0.420736074447632,0.603119850158691,0.699035465717316,-0.0368136018514633,0.714138686656952,0.409545123577118,0.629871129989624,0.659950733184814,0.555403053760529,0.223737701773643,0.800917446613312,0.490709215402603,0.519458711147308,0.69954776763916,0.24747422337532,0.750146687030792,0.613218069076538,0.409545123577118,0.629871129989624,0.659950733184814,0.436118572950363,0.380337536334991,0.815563559532166,0.365151613950729,0.509310066699982,0.779273629188538,0.389943480491638,0.485516101121902,0.782443642616272,0.226431801915169,0.717324197292328,0.658919215202332,0.251301497220993,0.707149922847748,0.660898149013519,0.262311369180679,0.671252548694611,0.693262279033661,0.262311369180679,0.671252548694611,0.693262279033661,0.334126830101013,0.566083788871765,0.753596842288971,0.304999053478241,0.611037850379944,0.730484843254089,0.334126830101013,0.566083788871765,0.753596842288971,0.389943480491638,0.485516101121902,0.782443642616272,0.365151613950729,0.509310066699982,0.779273629188538,\r\n0.343394726514816,0.688366591930389,0.638929724693298,0.251301497220993,0.707149922847748,0.660898149013519,0.226431801915169,0.717324197292328,0.658919215202332,0.343394726514816,0.688366591930389,0.638929724693298,0.24747422337532,0.750146687030792,0.613218069076538,0.469608098268509,0.531635642051697,0.704862833023071,0.682718753814697,-0.057049922645092,0.728450655937195,0.709228217601776,-0.151607945561409,0.688484013080597,0.757432699203491,-0.284330457448959,0.587751507759094,0.770972847938538,-0.283977031707764,0.570050656795502,0.757432699203491,-0.284330457448959,0.587751507759094,0.756062090396881,-0.296503782272339,0.58348560333252,0.677663207054138,-0.420736074447632,0.603119850158691,0.616996169090271,-0.542100250720978,0.570475995540619,0.555403053760529,0.223737701773643,0.800917446613312,0.616996169090271,-0.542100250720978,0.570475995540619,0.674501061439514,-0.630334079265594,0.384352803230286,0.699035465717316,-0.0368136018514633,0.714138686656952,0.674501061439514,-0.630334079265594,0.384352803230286,0.596005082130432,-0.7355597615242,0.322070837020874,0.766754329204559,-0.0374154411256313,0.640849232673645,0.591672480106354,-0.771734118461609,0.233130693435669,0.596005082130432,-0.7355597615242,0.322070837020874,0.418950229883194,-0.903230428695679,0.093034140765667,0.262964874505997,-0.91510009765625,-0.305681645870209,0.504895865917206,-0.863139271736145,0.00839017238467932,0.38063171505928,-0.910725831985474,-0.160305455327034,0.591672480106354,-0.771734118461609,0.233130693435669,0.418950229883194,-0.903230428695679,0.093034140765667,0.38063171505928,-0.910725831985474,-0.160305455327034,0.584278583526611,0.124834358692169,0.80189448595047,0.536631643772125,0.199642583727837,0.819859206676483,0.642026722431183,0.000581815664190799,0.766681969165802,0.536631643772125,0.199642583727837,0.819859206676483,0.436118572950363,0.380337536334991,0.815563559532166,0.493907034397125,0.289443671703339,0.819925725460052,0.642026722431183,0.000581815664190799,0.766681969165802,0.709228217601776,-0.151607945561409,0.688484013080597,\r\n0.624876320362091,0.0598969794809818,0.778422713279724,0.766754329204559,-0.0374154411256313,0.640849232673645,0.409545123577118,0.629871129989624,0.659950733184814,0.699035465717316,-0.0368136018514633,0.714138686656952,0.699035465717316,-0.0368136018514633,0.714138686656952,0.555403053760529,0.223737701773643,0.800917446613312,0.616996169090271,-0.542100250720978,0.570475995540619,0.490709215402603,0.519458711147308,0.69954776763916,0.469608098268509,0.531635642051697,0.704862833023071,0.24747422337532,0.750146687030792,0.613218069076538,0.490709215402603,0.519458711147308,0.69954776763916,0.409545123577118,0.629871129989624,0.659950733184814,0.766754329204559,-0.0374154411256313,0.640849232673645,0.45992049574852,0.36165463924408,0.81097412109375,0.436118572950363,0.380337536334991,0.815563559532166,0.389943480491638,0.485516101121902,0.782443642616272,0.262311369180679,0.671252548694611,0.693262279033661,0.251301497220993,0.707149922847748,0.660898149013519,0.312871336936951,0.665913164615631,0.677252590656281,0.303600519895554,0.607353389263153,0.734131097793579,0.334126830101013,0.566083788871765,0.753596842288971,0.262311369180679,0.671252548694611,0.693262279033661,0.389943480491638,0.485516101121902,0.782443642616272,0.334126830101013,0.566083788871765,0.753596842288971,0.303600519895554,0.607353389263153,0.734131097793579,0.482631474733353,0.555219650268555,0.677346169948578,0.251301497220993,0.707149922847748,0.660898149013519,0.343394726514816,0.688366591930389,0.638929724693298,0.343394726514816,0.688366591930389,0.638929724693298,0.469608098268509,0.531635642051697,0.704862833023071,0.70700740814209,0.266230225563049,0.655180752277374,0.709228217601776,-0.151607945561409,0.688484013080597,0.756062090396881,-0.296503782272339,0.58348560333252,0.757432699203491,-0.284330457448959,0.587751507759094,0.767053186893463,-0.253628462553024,0.589323222637177,0.770972847938538,-0.283977031707764,0.570050656795502,0.756062090396881,-0.296503782272339,0.58348560333252,0.766754329204559,-0.0374154411256313,0.640849232673645,\r\n0.699035465717316,-0.0368136018514633,0.714138686656952,0.674501061439514,-0.630334079265594,0.384352803230286,0.734574377536774,-0.150425210595131,0.661643862724304,0.766754329204559,-0.0374154411256313,0.640849232673645,0.596005082130432,-0.7355597615242,0.322070837020874,0.734574377536774,-0.150425210595131,0.661643862724304,0.596005082130432,-0.7355597615242,0.322070837020874,0.591672480106354,-0.771734118461609,0.233130693435669,0.504895865917206,-0.863139271736145,0.00839017238467932,0.262964874505997,-0.91510009765625,-0.305681645870209,0.464081019163132,-0.873642146587372,-0.146212309598923,0.504895865917206,-0.863139271736145,0.00839017238467932,0.591672480106354,-0.771734118461609,0.233130693435669,0.38063171505928,-0.910725831985474,-0.160305455327034,0.642026722431183,0.000581815664190799,0.766681969165802,0.536631643772125,0.199642583727837,0.819859206676483,0.581781148910522,0.0950855538249016,0.807768106460571,0.45992049574852,0.36165463924408,0.81097412109375,0.493907034397125,0.289443671703339,0.819925725460052,0.436118572950363,0.380337536334991,0.815563559532166,0.536631643772125,0.199642583727837,0.819859206676483,0.493907034397125,0.289443671703339,0.819925725460052,0.552586913108826,0.159899398684502,0.817972898483276,0.642026722431183,0.000581815664190799,0.766681969165802,0.71966415643692,-0.193929076194763,0.666689455509186,0.709228217601776,-0.151607945561409,0.688484013080597,0.490709215402603,0.519458711147308,0.69954776763916,0.734574377536774,-0.150425210595131,0.661643862724304,0.469608098268509,0.531635642051697,0.704862833023071,0.734574377536774,-0.150425210595131,0.661643862724304,0.490709215402603,0.519458711147308,0.69954776763916,0.766754329204559,-0.0374154411256313,0.640849232673645,0.45992049574852,0.36165463924408,0.81097412109375,0.389943480491638,0.485516101121902,0.782443642616272,0.430235862731934,0.447538316249847,0.783968448638916,0.482631474733353,0.555219650268555,0.677346169948578,0.312871336936951,0.665913164615631,0.677252590656281,0.251301497220993,0.707149922847748,0.660898149013519,\r\n0.312871336936951,0.665913164615631,0.677252590656281,0.32954266667366,0.634333729743958,0.699301302433014,0.262311369180679,0.671252548694611,0.693262279033661,0.32954266667366,0.634333729743958,0.699301302433014,0.303600519895554,0.607353389263153,0.734131097793579,0.262311369180679,0.671252548694611,0.693262279033661,0.35807079076767,0.567113280296326,0.741732895374298,0.389943480491638,0.485516101121902,0.782443642616272,0.303600519895554,0.607353389263153,0.734131097793579,0.482631474733353,0.555219650268555,0.677346169948578,0.343394726514816,0.688366591930389,0.638929724693298,0.70700740814209,0.266230225563049,0.655180752277374,0.734574377536774,-0.150425210595131,0.661643862724304,0.70700740814209,0.266230225563049,0.655180752277374,0.469608098268509,0.531635642051697,0.704862833023071,0.756062090396881,-0.296503782272339,0.58348560333252,0.709228217601776,-0.151607945561409,0.688484013080597,0.71966415643692,-0.193929076194763,0.666689455509186,0.758049070835114,-0.290320247411728,0.584016799926758,0.767053186893463,-0.253628462553024,0.589323222637177,0.756062090396881,-0.296503782272339,0.58348560333252,0.734574377536774,-0.150425210595131,0.661643862724304,0.591672480106354,-0.771734118461609,0.233130693435669,0.760922074317932,-0.478893846273422,0.437787801027298,0.504895865917206,-0.863139271736145,0.00839017238467932,0.464081019163132,-0.873642146587372,-0.146212309598923,0.743079900741577,-0.618975758552551,0.254364103078842,0.504895865917206,-0.863139271736145,0.00839017238467932,0.760922074317932,-0.478893846273422,0.437787801027298,0.591672480106354,-0.771734118461609,0.233130693435669,0.581781148910522,0.0950855538249016,0.807768106460571,0.536631643772125,0.199642583727837,0.819859206676483,0.552586913108826,0.159899398684502,0.817972898483276,0.642026722431183,0.000581815664190799,0.766681969165802,0.581781148910522,0.0950855538249016,0.807768106460571,0.61290979385376,0.0234083086252213,0.789806008338928,0.493907034397125,0.289443671703339,0.819925725460052,0.45992049574852,0.36165463924408,0.81097412109375,\r\n0.510309100151062,0.251643031835556,0.822350442409515,0.493907034397125,0.289443671703339,0.819925725460052,0.510309100151062,0.251643031835556,0.822350442409515,0.552586913108826,0.159899398684502,0.817972898483276,0.71966415643692,-0.193929076194763,0.666689455509186,0.642026722431183,0.000581815664190799,0.766681969165802,0.722076117992401,-0.167327925562859,0.671272993087769,0.35807079076767,0.567113280296326,0.741732895374298,0.430235862731934,0.447538316249847,0.783968448638916,0.389943480491638,0.485516101121902,0.782443642616272,0.45992049574852,0.36165463924408,0.81097412109375,0.430235862731934,0.447538316249847,0.783968448638916,0.490521907806396,0.336560308933258,0.803812980651855,0.482631474733353,0.555219650268555,0.677346169948578,0.548144996166229,0.36493906378746,0.752566516399384,0.312871336936951,0.665913164615631,0.677252590656281,0.312871336936951,0.665913164615631,0.677252590656281,0.548144996166229,0.36493906378746,0.752566516399384,0.32954266667366,0.634333729743958,0.699301302433014,0.32954266667366,0.634333729743958,0.699301302433014,0.326051563024521,0.639663398265839,0.69607537984848,0.303600519895554,0.607353389263153,0.734131097793579,0.303600519895554,0.607353389263153,0.734131097793579,0.326051563024521,0.639663398265839,0.69607537984848,0.35807079076767,0.567113280296326,0.741732895374298,0.70700740814209,0.266230225563049,0.655180752277374,0.783270061016083,-0.00592353800311685,0.621653199195862,0.482631474733353,0.555219650268555,0.677346169948578,0.734574377536774,-0.150425210595131,0.661643862724304,0.760922074317932,-0.478893846273422,0.437787801027298,0.70700740814209,0.266230225563049,0.655180752277374,0.758049070835114,-0.290320247411728,0.584016799926758,0.756062090396881,-0.296503782272339,0.58348560333252,0.71966415643692,-0.193929076194763,0.666689455509186,0.767053186893463,-0.253628462553024,0.589323222637177,0.758049070835114,-0.290320247411728,0.584016799926758,0.752604126930237,-0.176060438156128,0.634499549865723,0.764477431774139,-0.612632870674133,0.200636744499207,\r\n0.743079900741577,-0.618975758552551,0.254364103078842,0.464081019163132,-0.873642146587372,-0.146212309598923,0.504895865917206,-0.863139271736145,0.00839017238467932,0.743079900741577,-0.618975758552551,0.254364103078842,0.760922074317932,-0.478893846273422,0.437787801027298,0.61290979385376,0.0234083086252213,0.789806008338928,0.581781148910522,0.0950855538249016,0.807768106460571,0.552586913108826,0.159899398684502,0.817972898483276,0.642026722431183,0.000581815664190799,0.766681969165802,0.61290979385376,0.0234083086252213,0.789806008338928,0.663190126419067,-0.0617789812386036,0.745896816253662,0.510309100151062,0.251643031835556,0.822350442409515,0.45992049574852,0.36165463924408,0.81097412109375,0.493468523025513,0.292581558227539,0.819075524806976,0.577093660831451,0.119228646159172,0.80792772769928,0.552586913108826,0.159899398684502,0.817972898483276,0.510309100151062,0.251643031835556,0.822350442409515,0.642026722431183,0.000581815664190799,0.766681969165802,0.663190126419067,-0.0617789812386036,0.745896816253662,0.722076117992401,-0.167327925562859,0.671272993087769,0.758049070835114,-0.290320247411728,0.584016799926758,0.71966415643692,-0.193929076194763,0.666689455509186,0.722076117992401,-0.167327925562859,0.671272993087769,0.436522513628006,0.515363216400146,0.737460970878601,0.430235862731934,0.447538316249847,0.783968448638916,0.35807079076767,0.567113280296326,0.741732895374298,0.488284438848495,0.418734043836594,0.765663087368011,0.490521907806396,0.336560308933258,0.803812980651855,0.430235862731934,0.447538316249847,0.783968448638916,0.490521907806396,0.336560308933258,0.803812980651855,0.493468523025513,0.292581558227539,0.819075524806976,0.45992049574852,0.36165463924408,0.81097412109375,0.482631474733353,0.555219650268555,0.677346169948578,0.783270061016083,-0.00592353800311685,0.621653199195862,0.548144996166229,0.36493906378746,0.752566516399384,0.619969666004181,0.329581797122955,0.712048649787903,0.32954266667366,0.634333729743958,0.699301302433014,0.548144996166229,0.36493906378746,0.752566516399384,\r\n0.477409273386002,0.568757295608521,0.669772565364838,0.326051563024521,0.639663398265839,0.69607537984848,0.32954266667366,0.634333729743958,0.699301302433014,0.380519956350327,0.605096399784088,0.69933021068573,0.35807079076767,0.567113280296326,0.741732895374298,0.326051563024521,0.639663398265839,0.69607537984848,0.783270061016083,-0.00592353800311685,0.621653199195862,0.70700740814209,0.266230225563049,0.655180752277374,0.760922074317932,-0.478893846273422,0.437787801027298,0.752604126930237,-0.176060438156128,0.634499549865723,0.758049070835114,-0.290320247411728,0.584016799926758,0.75469982624054,-0.268750041723251,0.598499298095703,0.764477431774139,-0.612632870674133,0.200636744499207,0.810556173324585,-0.196085393428802,0.551859617233276,0.743079900741577,-0.618975758552551,0.254364103078842,0.783270061016083,-0.00592353800311685,0.621653199195862,0.760922074317932,-0.478893846273422,0.437787801027298,0.743079900741577,-0.618975758552551,0.254364103078842,0.577093660831451,0.119228646159172,0.80792772769928,0.61290979385376,0.0234083086252213,0.789806008338928,0.552586913108826,0.159899398684502,0.817972898483276,0.61290979385376,0.0234083086252213,0.789806008338928,0.695839047431946,-0.132870584726334,0.705799698829651,0.663190126419067,-0.0617789812386036,0.745896816253662,0.510309100151062,0.251643031835556,0.822350442409515,0.493468523025513,0.292581558227539,0.819075524806976,0.534621298313141,0.232986688613892,0.812340497970581,0.510309100151062,0.251643031835556,0.822350442409515,0.534621298313141,0.232986688613892,0.812340497970581,0.577093660831451,0.119228646159172,0.80792772769928,0.722076117992401,-0.167327925562859,0.671272993087769,0.663190126419067,-0.0617789812386036,0.745896816253662,0.695839047431946,-0.132870584726334,0.705799698829651,0.722076117992401,-0.167327925562859,0.671272993087769,0.76679664850235,-0.273262023925781,0.580818891525269,0.758049070835114,-0.290320247411728,0.584016799926758,0.436522513628006,0.515363216400146,0.737460970878601,0.488284438848495,0.418734043836594,0.765663087368011,\r\n0.430235862731934,0.447538316249847,0.783968448638916,0.35807079076767,0.567113280296326,0.741732895374298,0.426648020744324,0.581396758556366,0.69278359413147,0.436522513628006,0.515363216400146,0.737460970878601,0.490521907806396,0.336560308933258,0.803812980651855,0.488284438848495,0.418734043836594,0.765663087368011,0.521024286746979,0.309981256723404,0.795264184474945,0.490521907806396,0.336560308933258,0.803812980651855,0.534621298313141,0.232986688613892,0.812340497970581,0.493468523025513,0.292581558227539,0.819075524806976,0.810556173324585,-0.196085393428802,0.551859617233276,0.548144996166229,0.36493906378746,0.752566516399384,0.783270061016083,-0.00592353800311685,0.621653199195862,0.32954266667366,0.634333729743958,0.699301302433014,0.619969666004181,0.329581797122955,0.712048649787903,0.477409273386002,0.568757295608521,0.669772565364838,0.619969666004181,0.329581797122955,0.712048649787903,0.548144996166229,0.36493906378746,0.752566516399384,0.77095228433609,-0.0913449227809906,0.630308270454407,0.464099556207657,0.59028685092926,0.660433828830719,0.326051563024521,0.639663398265839,0.69607537984848,0.477409273386002,0.568757295608521,0.669772565364838,0.35807079076767,0.567113280296326,0.741732895374298,0.380519956350327,0.605096399784088,0.69933021068573,0.426648020744324,0.581396758556366,0.69278359413147,0.380519956350327,0.605096399784088,0.69933021068573,0.326051563024521,0.639663398265839,0.69607537984848,0.464099556207657,0.59028685092926,0.660433828830719,0.76679664850235,-0.273262023925781,0.580818891525269,0.75469982624054,-0.268750041723251,0.598499298095703,0.758049070835114,-0.290320247411728,0.584016799926758,0.810556173324585,-0.196085393428802,0.551859617233276,0.764477431774139,-0.612632870674133,0.200636744499207,0.77095228433609,-0.0913449227809906,0.630308270454407,0.810556173324585,-0.196085393428802,0.551859617233276,0.783270061016083,-0.00592353800311685,0.621653199195862,0.743079900741577,-0.618975758552551,0.254364103078842,0.577093660831451,0.119228646159172,0.80792772769928,\r\n0.648303270339966,-0.0077604902908206,0.761342525482178,0.61290979385376,0.0234083086252213,0.789806008338928,0.695839047431946,-0.132870584726334,0.705799698829651,0.61290979385376,0.0234083086252213,0.789806008338928,0.648303270339966,-0.0077604902908206,0.761342525482178,0.577093660831451,0.119228646159172,0.80792772769928,0.534621298313141,0.232986688613892,0.812340497970581,0.590365767478943,0.132265821099281,0.796224772930145,0.722076117992401,-0.167327925562859,0.671272993087769,0.695839047431946,-0.132870584726334,0.705799698829651,0.76679664850235,-0.273262023925781,0.580818891525269,0.488284438848495,0.418734043836594,0.765663087368011,0.436522513628006,0.515363216400146,0.737460970878601,0.550178050994873,0.516219735145569,0.656369686126709,0.436522513628006,0.515363216400146,0.737460970878601,0.426648020744324,0.581396758556366,0.69278359413147,0.550178050994873,0.516219735145569,0.656369686126709,0.488284438848495,0.418734043836594,0.765663087368011,0.537909328937531,0.369424939155579,0.757745742797852,0.521024286746979,0.309981256723404,0.795264184474945,0.534621298313141,0.232986688613892,0.812340497970581,0.490521907806396,0.336560308933258,0.803812980651855,0.521024286746979,0.309981256723404,0.795264184474945,0.810556173324585,-0.196085393428802,0.551859617233276,0.77095228433609,-0.0913449227809906,0.630308270454407,0.548144996166229,0.36493906378746,0.752566516399384,0.619969666004181,0.329581797122955,0.712048649787903,0.759328365325928,0.168215215206146,0.628588855266571,0.477409273386002,0.568757295608521,0.669772565364838,0.77095228433609,-0.0913449227809906,0.630308270454407,0.820528209209442,-0.275594085454941,0.500780582427979,0.619969666004181,0.329581797122955,0.712048649787903,0.464099556207657,0.59028685092926,0.660433828830719,0.477409273386002,0.568757295608521,0.669772565364838,0.641508340835571,0.46287015080452,0.611733555793762,0.426648020744324,0.581396758556366,0.69278359413147,0.380519956350327,0.605096399784088,0.69933021068573,0.487429022789001,0.545158922672272,0.682066380977631,\r\n0.464099556207657,0.59028685092926,0.660433828830719,0.561893165111542,0.494647771120071,0.663022994995117,0.380519956350327,0.605096399784088,0.69933021068573,0.75469982624054,-0.268750041723251,0.598499298095703,0.76679664850235,-0.273262023925781,0.580818891525269,0.740694224834442,-0.158357843756676,0.652912557125092,0.77095228433609,-0.0913449227809906,0.630308270454407,0.764477431774139,-0.612632870674133,0.200636744499207,0.820528209209442,-0.275594085454941,0.500780582427979,0.613310992717743,0.0584655590355396,0.787674605846405,0.648303270339966,-0.0077604902908206,0.761342525482178,0.577093660831451,0.119228646159172,0.80792772769928,0.695839047431946,-0.132870584726334,0.705799698829651,0.648303270339966,-0.0077604902908206,0.761342525482178,0.718794047832489,-0.133549526333809,0.682275235652924,0.590365767478943,0.132265821099281,0.796224772930145,0.534621298313141,0.232986688613892,0.812340497970581,0.586301445960999,0.215850844979286,0.780806541442871,0.590365767478943,0.132265821099281,0.796224772930145,0.613310992717743,0.0584655590355396,0.787674605846405,0.577093660831451,0.119228646159172,0.80792772769928,0.760877072811127,-0.214244693517685,0.612507224082947,0.76679664850235,-0.273262023925781,0.580818891525269,0.695839047431946,-0.132870584726334,0.705799698829651,0.488284438848495,0.418734043836594,0.765663087368011,0.550178050994873,0.516219735145569,0.656369686126709,0.557981431484222,0.440094202756882,0.703543603420258,0.619199693202972,0.467390120029449,0.630981802940369,0.550178050994873,0.516219735145569,0.656369686126709,0.426648020744324,0.581396758556366,0.69278359413147,0.488284438848495,0.418734043836594,0.765663087368011,0.557981431484222,0.440094202756882,0.703543603420258,0.537909328937531,0.369424939155579,0.757745742797852,0.566519260406494,0.287445396184921,0.772289395332336,0.521024286746979,0.309981256723404,0.795264184474945,0.537909328937531,0.369424939155579,0.757745742797852,0.534621298313141,0.232986688613892,0.812340497970581,0.521024286746979,0.309981256723404,0.795264184474945,\r\n0.586301445960999,0.215850844979286,0.780806541442871,0.619969666004181,0.329581797122955,0.712048649787903,0.820528209209442,-0.275594085454941,0.500780582427979,0.759328365325928,0.168215215206146,0.628588855266571,0.641508340835571,0.46287015080452,0.611733555793762,0.477409273386002,0.568757295608521,0.669772565364838,0.759328365325928,0.168215215206146,0.628588855266571,0.708579659461975,0.353462874889374,0.610719799995422,0.464099556207657,0.59028685092926,0.660433828830719,0.641508340835571,0.46287015080452,0.611733555793762,0.380519956350327,0.605096399784088,0.69933021068573,0.561893165111542,0.494647771120071,0.663022994995117,0.487429022789001,0.545158922672272,0.682066380977631,0.619199693202972,0.467390120029449,0.630981802940369,0.426648020744324,0.581396758556366,0.69278359413147,0.487429022789001,0.545158922672272,0.682066380977631,0.464099556207657,0.59028685092926,0.660433828830719,0.708579659461975,0.353462874889374,0.610719799995422,0.561893165111542,0.494647771120071,0.663022994995117,0.774073779582977,-0.228786692023277,0.590310335159302,0.740694224834442,-0.158357843756676,0.652912557125092,0.76679664850235,-0.273262023925781,0.580818891525269,0.613310992717743,0.0584655590355396,0.787674605846405,0.672015070915222,-0.0187352877110243,0.740300297737122,0.648303270339966,-0.0077604902908206,0.761342525482178,0.718794047832489,-0.133549526333809,0.682275235652924,0.648303270339966,-0.0077604902908206,0.761342525482178,0.710474789142609,-0.0940432325005531,0.697410404682159,0.760877072811127,-0.214244693517685,0.612507224082947,0.695839047431946,-0.132870584726334,0.705799698829651,0.718794047832489,-0.133549526333809,0.682275235652924,0.665054440498352,0.13368371129036,0.734732091426849,0.590365767478943,0.132265821099281,0.796224772930145,0.586301445960999,0.215850844979286,0.780806541442871,0.642907202243805,0.054490365087986,0.764003276824951,0.613310992717743,0.0584655590355396,0.787674605846405,0.590365767478943,0.132265821099281,0.796224772930145,0.76679664850235,-0.273262023925781,0.580818891525269,\r\n0.760877072811127,-0.214244693517685,0.612507224082947,0.776728868484497,-0.225626021623611,0.588034808635712,0.629179179668427,0.450559586286545,0.633347809314728,0.557981431484222,0.440094202756882,0.703543603420258,0.550178050994873,0.516219735145569,0.656369686126709,0.619199693202972,0.467390120029449,0.630981802940369,0.671220898628235,0.458053559064865,0.582794308662415,0.550178050994873,0.516219735145569,0.656369686126709,0.537909328937531,0.369424939155579,0.757745742797852,0.557981431484222,0.440094202756882,0.703543603420258,0.604441463947296,0.381771087646484,0.699214696884155,0.566519260406494,0.287445396184921,0.772289395332336,0.586301445960999,0.215850844979286,0.780806541442871,0.521024286746979,0.309981256723404,0.795264184474945,0.604441463947296,0.381771087646484,0.699214696884155,0.566519260406494,0.287445396184921,0.772289395332336,0.537909328937531,0.369424939155579,0.757745742797852,0.487429022789001,0.545158922672272,0.682066380977631,0.561893165111542,0.494647771120071,0.663022994995117,0.758095860481262,0.337383568286896,0.558088541030884,0.619199693202972,0.467390120029449,0.630981802940369,0.487429022789001,0.545158922672272,0.682066380977631,0.758095860481262,0.337383568286896,0.558088541030884,0.740694224834442,-0.158357843756676,0.652912557125092,0.774073779582977,-0.228786692023277,0.590310335159302,0.645113527774811,0.156735077500343,0.747838616371155,0.774073779582977,-0.228786692023277,0.590310335159302,0.76679664850235,-0.273262023925781,0.580818891525269,0.776728868484497,-0.225626021623611,0.588034808635712,0.642907202243805,0.054490365087986,0.764003276824951,0.672015070915222,-0.0187352877110243,0.740300297737122,0.613310992717743,0.0584655590355396,0.787674605846405,0.672015070915222,-0.0187352877110243,0.740300297737122,0.710474789142609,-0.0940432325005531,0.697410404682159,0.648303270339966,-0.0077604902908206,0.761342525482178,0.776728868484497,-0.225626021623611,0.588034808635712,0.718794047832489,-0.133549526333809,0.682275235652924,0.710474789142609,-0.0940432325005531,0.697410404682159,\r\n0.776728868484497,-0.225626021623611,0.588034808635712,0.760877072811127,-0.214244693517685,0.612507224082947,0.718794047832489,-0.133549526333809,0.682275235652924,0.665054440498352,0.13368371129036,0.734732091426849,0.642907202243805,0.054490365087986,0.764003276824951,0.590365767478943,0.132265821099281,0.796224772930145,0.621896982192993,0.220395624637604,0.751445174217224,0.665054440498352,0.13368371129036,0.734732091426849,0.586301445960999,0.215850844979286,0.780806541442871,0.629179179668427,0.450559586286545,0.633347809314728,0.604441463947296,0.381771087646484,0.699214696884155,0.557981431484222,0.440094202756882,0.703543603420258,0.758879959583282,0.384290248155594,0.525758683681488,0.629179179668427,0.450559586286545,0.633347809314728,0.550178050994873,0.516219735145569,0.656369686126709,0.619199693202972,0.467390120029449,0.630981802940369,0.889263927936554,0.152903854846954,0.431080102920532,0.671220898628235,0.458053559064865,0.582794308662415,0.671220898628235,0.458053559064865,0.582794308662415,0.758879959583282,0.384290248155594,0.525758683681488,0.550178050994873,0.516219735145569,0.656369686126709,0.566519260406494,0.287445396184921,0.772289395332336,0.621896982192993,0.220395624637604,0.751445174217224,0.586301445960999,0.215850844979286,0.780806541442871,0.639310836791992,0.300254851579666,0.707904279232025,0.566519260406494,0.287445396184921,0.772289395332336,0.604441463947296,0.381771087646484,0.699214696884155,0.619199693202972,0.467390120029449,0.630981802940369,0.758095860481262,0.337383568286896,0.558088541030884,0.881018102169037,0.0932691916823387,0.463797271251678,0.744223654270172,-0.023254631087184,0.667525410652161,0.645113527774811,0.156735077500343,0.747838616371155,0.774073779582977,-0.228786692023277,0.590310335159302,0.774660170078278,-0.0922890231013298,0.625607073307037,0.774073779582977,-0.228786692023277,0.590310335159302,0.776728868484497,-0.225626021623611,0.588034808635712,0.672015070915222,-0.0187352877110243,0.740300297737122,0.642907202243805,0.054490365087986,0.764003276824951,\r\n0.730967581272125,-0.00655830465257168,0.682380557060242,0.758513391017914,-0.13907028734684,0.636645019054413,0.710474789142609,-0.0940432325005531,0.697410404682159,0.672015070915222,-0.0187352877110243,0.740300297737122,0.758513391017914,-0.13907028734684,0.636645019054413,0.776728868484497,-0.225626021623611,0.588034808635712,0.710474789142609,-0.0940432325005531,0.697410404682159,0.665054440498352,0.13368371129036,0.734732091426849,0.730967581272125,-0.00655830465257168,0.682380557060242,0.642907202243805,0.054490365087986,0.764003276824951,0.651611268520355,0.200083002448082,0.731689512729645,0.665054440498352,0.13368371129036,0.734732091426849,0.621896982192993,0.220395624637604,0.751445174217224,0.629179179668427,0.450559586286545,0.633347809314728,0.680371284484863,0.394071906805038,0.61790132522583,0.604441463947296,0.381771087646484,0.699214696884155,0.629179179668427,0.450559586286545,0.633347809314728,0.758879959583282,0.384290248155594,0.525758683681488,0.730822145938873,0.415372133255005,0.541631639003754,0.881018102169037,0.0932691916823387,0.463797271251678,0.889263927936554,0.152903854846954,0.431080102920532,0.619199693202972,0.467390120029449,0.630981802940369,0.671220898628235,0.458053559064865,0.582794308662415,0.889263927936554,0.152903854846954,0.431080102920532,0.758879959583282,0.384290248155594,0.525758683681488,0.621896982192993,0.220395624637604,0.751445174217224,0.566519260406494,0.287445396184921,0.772289395332336,0.639310836791992,0.300254851579666,0.707904279232025,0.680371284484863,0.394071906805038,0.61790132522583,0.639310836791992,0.300254851579666,0.707904279232025,0.604441463947296,0.381771087646484,0.699214696884155,0.645113527774811,0.156735077500343,0.747838616371155,0.744223654270172,-0.023254631087184,0.667525410652161,0.463855266571045,0.454978376626968,0.76015317440033,0.774660170078278,-0.0922890231013298,0.625607073307037,0.744223654270172,-0.023254631087184,0.667525410652161,0.774073779582977,-0.228786692023277,0.590310335159302,0.774660170078278,-0.0922890231013298,0.625607073307037,\r\n0.776728868484497,-0.225626021623611,0.588034808635712,0.813445389270782,-0.16120420396328,0.558855652809143,0.730967581272125,-0.00655830465257168,0.682380557060242,0.758513391017914,-0.13907028734684,0.636645019054413,0.672015070915222,-0.0187352877110243,0.740300297737122,0.758513391017914,-0.13907028734684,0.636645019054413,0.813445389270782,-0.16120420396328,0.558855652809143,0.776728868484497,-0.225626021623611,0.588034808635712,0.665054440498352,0.13368371129036,0.734732091426849,0.706394851207733,0.109441392123699,0.699305951595306,0.730967581272125,-0.00655830465257168,0.682380557060242,0.665054440498352,0.13368371129036,0.734732091426849,0.651611268520355,0.200083002448082,0.731689512729645,0.706394851207733,0.109441392123699,0.699305951595306,0.621896982192993,0.220395624637604,0.751445174217224,0.639310836791992,0.300254851579666,0.707904279232025,0.651611268520355,0.200083002448082,0.731689512729645,0.680371284484863,0.394071906805038,0.61790132522583,0.629179179668427,0.450559586286545,0.633347809314728,0.730822145938873,0.415372133255005,0.541631639003754,0.730822145938873,0.415372133255005,0.541631639003754,0.758879959583282,0.384290248155594,0.525758683681488,0.847056686878204,0.326450973749161,0.419433683156967,0.712427079677582,0.33827018737793,0.614833891391754,0.639310836791992,0.300254851579666,0.707904279232025,0.680371284484863,0.394071906805038,0.61790132522583,0.744223654270172,-0.023254631087184,0.667525410652161,0.774660170078278,-0.0922890231013298,0.625607073307037,0.463855266571045,0.454978376626968,0.76015317440033,0.75214010477066,0.182770356535912,0.633150935173035,0.774660170078278,-0.0922890231013298,0.625607073307037,0.813445389270782,-0.16120420396328,0.558855652809143,0.813224852085114,-0.124201513826847,0.568541288375854,0.758513391017914,-0.13907028734684,0.636645019054413,0.730967581272125,-0.00655830465257168,0.682380557060242,0.813445389270782,-0.16120420396328,0.558855652809143,0.758513391017914,-0.13907028734684,0.636645019054413,0.813224852085114,-0.124201513826847,0.568541288375854,\r\n0.767995119094849,-0.0151308756321669,0.640276849269867,0.730967581272125,-0.00655830465257168,0.682380557060242,0.706394851207733,0.109441392123699,0.699305951595306,0.651611268520355,0.200083002448082,0.731689512729645,0.686440527439117,0.169386982917786,0.707182645797729,0.706394851207733,0.109441392123699,0.699305951595306,0.639310836791992,0.300254851579666,0.707904279232025,0.672674119472504,0.247926995158196,0.697166800498962,0.651611268520355,0.200083002448082,0.731689512729645,0.764522671699524,0.359306037425995,0.535167336463928,0.680371284484863,0.394071906805038,0.61790132522583,0.730822145938873,0.415372133255005,0.541631639003754,0.847056686878204,0.326450973749161,0.419433683156967,0.818791151046753,0.352441251277924,0.453173369169235,0.730822145938873,0.415372133255005,0.541631639003754,0.712427079677582,0.33827018737793,0.614833891391754,0.713861107826233,0.289418786764145,0.637682437896729,0.639310836791992,0.300254851579666,0.707904279232025,0.680371284484863,0.394071906805038,0.61790132522583,0.764522671699524,0.359306037425995,0.535167336463928,0.712427079677582,0.33827018737793,0.614833891391754,0.774660170078278,-0.0922890231013298,0.625607073307037,0.75214010477066,0.182770356535912,0.633150935173035,0.463855266571045,0.454978376626968,0.76015317440033,0.75214010477066,0.182770356535912,0.633150935173035,0.813445389270782,-0.16120420396328,0.558855652809143,0.790116667747498,0.108334116637707,0.603307008743286,0.767995119094849,-0.0151308756321669,0.640276849269867,0.813224852085114,-0.124201513826847,0.568541288375854,0.730967581272125,-0.00655830465257168,0.682380557060242,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.813445389270782,-0.16120420396328,0.558855652809143,0.813224852085114,-0.124201513826847,0.568541288375854,0.706394851207733,0.109441392123699,0.699305951595306,0.72131872177124,0.0920378193259239,0.686460614204407,0.767995119094849,-0.0151308756321669,0.640276849269867,0.651611268520355,0.200083002448082,0.731689512729645,0.672674119472504,0.247926995158196,0.697166800498962,\r\n0.686440527439117,0.169386982917786,0.707182645797729,0.706394851207733,0.109441392123699,0.699305951595306,0.686440527439117,0.169386982917786,0.707182645797729,0.72131872177124,0.0920378193259239,0.686460614204407,0.713861107826233,0.289418786764145,0.637682437896729,0.672674119472504,0.247926995158196,0.697166800498962,0.639310836791992,0.300254851579666,0.707904279232025,0.764522671699524,0.359306037425995,0.535167336463928,0.730822145938873,0.415372133255005,0.541631639003754,0.818791151046753,0.352441251277924,0.453173369169235,0.904684722423553,0.271347522735596,0.328505605459213,0.818791151046753,0.352441251277924,0.453173369169235,0.847056686878204,0.326450973749161,0.419433683156967,0.713861107826233,0.289418786764145,0.637682437896729,0.712427079677582,0.33827018737793,0.614833891391754,0.772444486618042,0.32901531457901,0.543211102485657,0.764522671699524,0.359306037425995,0.535167336463928,0.772444486618042,0.32901531457901,0.543211102485657,0.712427079677582,0.33827018737793,0.614833891391754,0.790116667747498,0.108334116637707,0.603307008743286,0.813445389270782,-0.16120420396328,0.558855652809143,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.767995119094849,-0.0151308756321669,0.640276849269867,0.819758296012878,0.0189909972250462,0.572394549846649,0.813224852085114,-0.124201513826847,0.568541288375854,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.813224852085114,-0.124201513826847,0.568541288375854,0.819758296012878,0.0189909972250462,0.572394549846649,0.767995119094849,-0.0151308756321669,0.640276849269867,0.72131872177124,0.0920378193259239,0.686460614204407,0.805518507957459,0.0838503688573837,0.586607992649078,0.672674119472504,0.247926995158196,0.697166800498962,0.728965520858765,0.223394319415092,0.64707338809967,0.686440527439117,0.169386982917786,0.707182645797729,0.686440527439117,0.169386982917786,0.707182645797729,0.728965520858765,0.223394319415092,0.64707338809967,0.72131872177124,0.0920378193259239,0.686460614204407,0.713861107826233,0.289418786764145,0.637682437896729,\r\n0.728965520858765,0.223394319415092,0.64707338809967,0.672674119472504,0.247926995158196,0.697166800498962,0.818791151046753,0.352441251277924,0.453173369169235,0.772444486618042,0.32901531457901,0.543211102485657,0.764522671699524,0.359306037425995,0.535167336463928,0.772444486618042,0.32901531457901,0.543211102485657,0.784981667995453,0.293118506669998,0.545788586139679,0.713861107826233,0.289418786764145,0.637682437896729,0.805518507957459,0.0838503688573837,0.586607992649078,0.819758296012878,0.0189909972250462,0.572394549846649,0.767995119094849,-0.0151308756321669,0.640276849269867,0.791413009166718,0.185563445091248,0.582435846328735,0.805518507957459,0.0838503688573837,0.586607992649078,0.72131872177124,0.0920378193259239,0.686460614204407,0.791413009166718,0.185563445091248,0.582435846328735,0.72131872177124,0.0920378193259239,0.686460614204407,0.728965520858765,0.223394319415092,0.64707338809967,0.784981667995453,0.293118506669998,0.545788586139679,0.728965520858765,0.223394319415092,0.64707338809967,0.713861107826233,0.289418786764145,0.637682437896729,0.772444486618042,0.32901531457901,0.543211102485657,0.818791151046753,0.352441251277924,0.453173369169235,0.842786490917206,0.344725906848907,0.413370043039322,0.772444486618042,0.32901531457901,0.543211102485657,0.779515206813812,0.425029695034027,0.46011483669281,0.784981667995453,0.293118506669998,0.545788586139679,0.791413009166718,0.185563445091248,0.582435846328735,0.853951513767242,0.193813428282738,0.482911020517349,0.805518507957459,0.0838503688573837,0.586607992649078,0.791413009166718,0.185563445091248,0.582435846328735,0.728965520858765,0.223394319415092,0.64707338809967,0.784981667995453,0.293118506669998,0.545788586139679,0.779515206813812,0.425029695034027,0.46011483669281,0.772444486618042,0.32901531457901,0.543211102485657,0.842786490917206,0.344725906848907,0.413370043039322,0.784981667995453,0.293118506669998,0.545788586139679,0.779515206813812,0.425029695034027,0.46011483669281,0.82640528678894,0.341271132230759,0.44787073135376,0.791413009166718,0.185563445091248,0.582435846328735,\r\n0.855780065059662,0.281191557645798,0.434248358011246,0.853951513767242,0.193813428282738,0.482911020517349,0.791413009166718,0.185563445091248,0.582435846328735,0.784981667995453,0.293118506669998,0.545788586139679,0.855780065059662,0.281191557645798,0.434248358011246,0.784981667995453,0.293118506669998,0.545788586139679,0.82640528678894,0.341271132230759,0.44787073135376,0.855780065059662,0.281191557645798,0.434248358011246,0.465740203857422,-0.842628657817841,-0.270301431417465,0.29568013548851,-0.895565807819366,-0.332468032836914,0.632252871990204,-0.744614541530609,-0.214021772146225,0.507102012634277,-0.814292967319489,-0.282443523406982,0.632252871990204,-0.744614541530609,-0.214021772146225,0.29568013548851,-0.895565807819366,-0.332468032836914,0.632252871990204,-0.744614541530609,-0.214021772146225,0.721951544284821,-0.672236800193787,-0.163961812853813,0.465740203857422,-0.842628657817841,-0.270301431417465,0.785144686698914,-0.592994153499603,-0.178621619939804,0.632252871990204,-0.744614541530609,-0.214021772146225,0.507102012634277,-0.814292967319489,-0.282443523406982,0.29568013548851,-0.895565807819366,-0.332468032836914,0.279122710227966,-0.892987966537476,-0.35307639837265,0.507102012634277,-0.814292967319489,-0.282443523406982,0.632252871990204,-0.744614541530609,-0.214021772146225,0.842683076858521,-0.518184244632721,-0.146185353398323,0.721951544284821,-0.672236800193787,-0.163961812853813,0.721951544284821,-0.672236800193787,-0.163961812853813,0.634761095046997,-0.754182755947113,-0.168186366558075,0.465740203857422,-0.842628657817841,-0.270301431417465,0.785144686698914,-0.592994153499603,-0.178621619939804,0.842683076858521,-0.518184244632721,-0.146185353398323,0.632252871990204,-0.744614541530609,-0.214021772146225,0.652380764484406,-0.719779193401337,-0.237312287092209,0.785144686698914,-0.592994153499603,-0.178621619939804,0.507102012634277,-0.814292967319489,-0.282443523406982,0.652380764484406,-0.719779193401337,-0.237312287092209,0.507102012634277,-0.814292967319489,-0.282443523406982,\r\n0.279122710227966,-0.892987966537476,-0.35307639837265,0.794818758964539,-0.587242424488068,-0.153001442551613,0.721951544284821,-0.672236800193787,-0.163961812853813,0.842683076858521,-0.518184244632721,-0.146185353398323,0.721951544284821,-0.672236800193787,-0.163961812853813,0.794818758964539,-0.587242424488068,-0.153001442551613,0.634761095046997,-0.754182755947113,-0.168186366558075,0.785144686698914,-0.592994153499603,-0.178621619939804,0.88800436258316,-0.440827786922455,-0.130839541554451,0.842683076858521,-0.518184244632721,-0.146185353398323,0.862595498561859,-0.488215744495392,-0.132567822933197,0.785144686698914,-0.592994153499603,-0.178621619939804,0.652380764484406,-0.719779193401337,-0.237312287092209,0.652380764484406,-0.719779193401337,-0.237312287092209,0.279122710227966,-0.892987966537476,-0.35307639837265,0.511566698551178,-0.801742553710938,-0.3090440928936,0.842683076858521,-0.518184244632721,-0.146185353398323,0.851919591426849,-0.482876807451248,-0.202639818191528,0.794818758964539,-0.587242424488068,-0.153001442551613,0.634761095046997,-0.754182755947113,-0.168186366558075,0.794818758964539,-0.587242424488068,-0.153001442551613,0.704311728477478,-0.683531641960144,-0.191649198532104,0.862595498561859,-0.488215744495392,-0.132567822933197,0.88800436258316,-0.440827786922455,-0.130839541554451,0.785144686698914,-0.592994153499603,-0.178621619939804,0.842683076858521,-0.518184244632721,-0.146185353398323,0.88800436258316,-0.440827786922455,-0.130839541554451,0.9042027592659,-0.39864045381546,-0.153306290507317,0.782935798168182,-0.592618823051453,-0.189246699213982,0.862595498561859,-0.488215744495392,-0.132567822933197,0.652380764484406,-0.719779193401337,-0.237312287092209,0.511566698551178,-0.801742553710938,-0.3090440928936,0.279122710227966,-0.892987966537476,-0.35307639837265,0.194269239902496,-0.888628721237183,-0.415449678897858,0.652380764484406,-0.719779193401337,-0.237312287092209,0.511566698551178,-0.801742553710938,-0.3090440928936,0.782935798168182,-0.592618823051453,-0.189246699213982,\r\n0.842683076858521,-0.518184244632721,-0.146185353398323,0.9042027592659,-0.39864045381546,-0.153306290507317,0.851919591426849,-0.482876807451248,-0.202639818191528,0.813148736953735,-0.536014914512634,-0.226885259151459,0.794818758964539,-0.587242424488068,-0.153001442551613,0.851919591426849,-0.482876807451248,-0.202639818191528,0.704311728477478,-0.683531641960144,-0.191649198532104,0.794818758964539,-0.587242424488068,-0.153001442551613,0.813148736953735,-0.536014914512634,-0.226885259151459,0.88800436258316,-0.440827786922455,-0.130839541554451,0.862595498561859,-0.488215744495392,-0.132567822933197,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.9042027592659,-0.39864045381546,-0.153306290507317,0.88800436258316,-0.440827786922455,-0.130839541554451,0.782935798168182,-0.592618823051453,-0.189246699213982,0.86365795135498,-0.487207800149918,-0.129319295287132,0.862595498561859,-0.488215744495392,-0.132567822933197,0.511566698551178,-0.801742553710938,-0.3090440928936,0.194269239902496,-0.888628721237183,-0.415449678897858,0.659118175506592,-0.700697004795074,-0.273105770349503,0.511566698551178,-0.801742553710938,-0.3090440928936,0.659118175506592,-0.700697004795074,-0.273105770349503,0.782935798168182,-0.592618823051453,-0.189246699213982,0.851919591426849,-0.482876807451248,-0.202639818191528,0.9042027592659,-0.39864045381546,-0.153306290507317,0.881262838840485,-0.422209203243256,-0.212403059005737,0.851919591426849,-0.482876807451248,-0.202639818191528,0.876031756401062,-0.425345778465271,-0.227264568209648,0.813148736953735,-0.536014914512634,-0.226885259151459,0.749786019325256,-0.620891332626343,-0.228723838925362,0.704311728477478,-0.683531641960144,-0.191649198532104,0.813148736953735,-0.536014914512634,-0.226885259151459,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.862595498561859,-0.488215744495392,-0.132567822933197,0.86365795135498,-0.487207800149918,-0.129319295287132,0.907797396183014,-0.409421533346176,-0.0909825041890144,\r\n0.940751791000366,-0.322372078895569,-0.105176649987698,0.9042027592659,-0.39864045381546,-0.153306290507317,0.782935798168182,-0.592618823051453,-0.189246699213982,0.659118175506592,-0.700697004795074,-0.273105770349503,0.86365795135498,-0.487207800149918,-0.129319295287132,0.458349376916885,-0.806909620761871,-0.372575521469116,0.659118175506592,-0.700697004795074,-0.273105770349503,0.194269239902496,-0.888628721237183,-0.415449678897858,0.920826077461243,-0.355881810188293,-0.159459799528122,0.881262838840485,-0.422209203243256,-0.212403059005737,0.9042027592659,-0.39864045381546,-0.153306290507317,0.851919591426849,-0.482876807451248,-0.202639818191528,0.881262838840485,-0.422209203243256,-0.212403059005737,0.876031756401062,-0.425345778465271,-0.227264568209648,0.876031756401062,-0.425345778465271,-0.227264568209648,0.882005989551544,-0.413140773773193,-0.226671680808067,0.813148736953735,-0.536014914512634,-0.226885259151459,0.749786019325256,-0.620891332626343,-0.228723838925362,0.621656656265259,-0.751521408557892,-0.220813125371933,0.704311728477478,-0.683531641960144,-0.191649198532104,0.779469668865204,-0.568467974662781,-0.263193666934967,0.749786019325256,-0.620891332626343,-0.228723838925362,0.813148736953735,-0.536014914512634,-0.226885259151459,0.867772340774536,-0.484813719987869,-0.109209507703781,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.86365795135498,-0.487207800149918,-0.129319295287132,0.940751791000366,-0.322372078895569,-0.105176649987698,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.960485994815826,-0.251351565122604,-0.119536705315113,0.9042027592659,-0.39864045381546,-0.153306290507317,0.940751791000366,-0.322372078895569,-0.105176649987698,0.659118175506592,-0.700697004795074,-0.273105770349503,0.784724056720734,-0.592999994754791,-0.180441170930862,0.86365795135498,-0.487207800149918,-0.129319295287132,0.659118175506592,-0.700697004795074,-0.273105770349503,0.458349376916885,-0.806909620761871,-0.372575521469116,\r\n0.784724056720734,-0.592999994754791,-0.180441170930862,0.920826077461243,-0.355881810188293,-0.159459799528122,0.914121210575104,-0.355881065130234,-0.194244489073753,0.881262838840485,-0.422209203243256,-0.212403059005737,0.920826077461243,-0.355881810188293,-0.159459799528122,0.9042027592659,-0.39864045381546,-0.153306290507317,0.960485994815826,-0.251351565122604,-0.119536705315113,0.881262838840485,-0.422209203243256,-0.212403059005737,0.914121210575104,-0.355881065130234,-0.194244489073753,0.876031756401062,-0.425345778465271,-0.227264568209648,0.876031756401062,-0.425345778465271,-0.227264568209648,0.935395479202271,-0.293667852878571,-0.196962788701057,0.882005989551544,-0.413140773773193,-0.226671680808067,0.813148736953735,-0.536014914512634,-0.226885259151459,0.882005989551544,-0.413140773773193,-0.226671680808067,0.846169114112854,-0.465378642082214,-0.259654432535172,0.749786019325256,-0.620891332626343,-0.228723838925362,0.694310009479523,-0.673236012458801,-0.254336059093475,0.621656656265259,-0.751521408557892,-0.220813125371933,0.779469668865204,-0.568467974662781,-0.263193666934967,0.694310009479523,-0.673236012458801,-0.254336059093475,0.749786019325256,-0.620891332626343,-0.228723838925362,0.813148736953735,-0.536014914512634,-0.226885259151459,0.846169114112854,-0.465378642082214,-0.259654432535172,0.779469668865204,-0.568467974662781,-0.263193666934967,0.867772340774536,-0.484813719987869,-0.109209507703781,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.867772340774536,-0.484813719987869,-0.109209507703781,0.86365795135498,-0.487207800149918,-0.129319295287132,0.784724056720734,-0.592999994754791,-0.180441170930862,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.907797396183014,-0.409421533346176,-0.0909825041890144,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.940751791000366,-0.322372078895569,-0.105176649987698,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.974507451057434,-0.214745432138443,-0.0649580508470535,\r\n0.960485994815826,-0.251351565122604,-0.119536705315113,0.940751791000366,-0.322372078895569,-0.105176649987698,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.671079277992249,-0.66807758808136,-0.321441739797592,0.784724056720734,-0.592999994754791,-0.180441170930862,0.458349376916885,-0.806909620761871,-0.372575521469116,0.920826077461243,-0.355881810188293,-0.159459799528122,0.943866372108459,-0.295916527509689,-0.146797657012939,0.914121210575104,-0.355881065130234,-0.194244489073753,0.920826077461243,-0.355881810188293,-0.159459799528122,0.960485994815826,-0.251351565122604,-0.119536705315113,0.943866372108459,-0.295916527509689,-0.146797657012939,0.935395479202271,-0.293667852878571,-0.196962788701057,0.876031756401062,-0.425345778465271,-0.227264568209648,0.914121210575104,-0.355881065130234,-0.194244489073753,0.882005989551544,-0.413140773773193,-0.226671680808067,0.935395479202271,-0.293667852878571,-0.196962788701057,0.912883102893829,-0.343111574649811,-0.221175849437714,0.882005989551544,-0.413140773773193,-0.226671680808067,0.912883102893829,-0.343111574649811,-0.221175849437714,0.846169114112854,-0.465378642082214,-0.259654432535172,0.621656656265259,-0.751521408557892,-0.220813125371933,0.694310009479523,-0.673236012458801,-0.254336059093475,0.542383134365082,-0.805463671684265,-0.238848254084587,0.694310009479523,-0.673236012458801,-0.254336059093475,0.779469668865204,-0.568467974662781,-0.263193666934967,0.744386374950409,-0.6074538230896,-0.277287930250168,0.779469668865204,-0.568467974662781,-0.263193666934967,0.846169114112854,-0.465378642082214,-0.259654432535172,0.813633024692535,-0.514413774013519,-0.270886689424515,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.867772340774536,-0.484813719987869,-0.109209507703781,0.77368950843811,-0.61639666557312,-0.146490588784218,0.671079277992249,-0.66807758808136,-0.321441739797592,0.867772340774536,-0.484813719987869,-0.109209507703781,0.784724056720734,-0.592999994754791,-0.180441170930862,0.890213429927826,-0.453585386276245,-0.0421936847269535,\r\n0.895917177200317,-0.440315544605255,-0.0587731041014194,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.960485994815826,-0.251351565122604,-0.119536705315113,0.178219750523567,-0.795235157012939,-0.579515874385834,0.671079277992249,-0.66807758808136,-0.321441739797592,0.458349376916885,-0.806909620761871,-0.372575521469116,0.953068137168884,-0.253000527620316,-0.166288286447525,0.914121210575104,-0.355881065130234,-0.194244489073753,0.943866372108459,-0.295916527509689,-0.146797657012939,0.974379301071167,-0.183548882603645,-0.129978731274605,0.943866372108459,-0.295916527509689,-0.146797657012939,0.960485994815826,-0.251351565122604,-0.119536705315113,0.935395479202271,-0.293667852878571,-0.196962788701057,0.914121210575104,-0.355881065130234,-0.194244489073753,0.953068137168884,-0.253000527620316,-0.166288286447525,0.963462114334106,-0.215251222252846,-0.159397706389427,0.912883102893829,-0.343111574649811,-0.221175849437714,0.935395479202271,-0.293667852878571,-0.196962788701057,0.872760593891144,-0.422313332557678,-0.244826525449753,0.846169114112854,-0.465378642082214,-0.259654432535172,0.912883102893829,-0.343111574649811,-0.221175849437714,0.542383134365082,-0.805463671684265,-0.238848254084587,0.694310009479523,-0.673236012458801,-0.254336059093475,0.62569272518158,-0.733220219612122,-0.266264319419861,0.779469668865204,-0.568467974662781,-0.263193666934967,0.813633024692535,-0.514413774013519,-0.270886689424515,0.744386374950409,-0.6074538230896,-0.277287930250168,0.694310009479523,-0.673236012458801,-0.254336059093475,0.744386374950409,-0.6074538230896,-0.277287930250168,0.62569272518158,-0.733220219612122,-0.266264319419861,0.872760593891144,-0.422313332557678,-0.244826525449753,0.813633024692535,-0.514413774013519,-0.270886689424515,\r\n0.846169114112854,-0.465378642082214,-0.259654432535172,0.77368950843811,-0.61639666557312,-0.146490588784218,0.867772340774536,-0.484813719987869,-0.109209507703781,0.671079277992249,-0.66807758808136,-0.321441739797592,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.77368950843811,-0.61639666557312,-0.146490588784218,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.890213429927826,-0.453585386276245,-0.0421936847269535,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.936356663703918,-0.348604470491409,-0.0413641557097435,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.987232148647308,-0.159235268831253,-0.00408750120550394,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.960485994815826,-0.251351565122604,-0.119536705315113,0.178219750523567,-0.795235157012939,-0.579515874385834,0.218011647462845,-0.825384795665741,-0.520778954029083,0.671079277992249,-0.66807758808136,-0.321441739797592,0.953068137168884,-0.253000527620316,-0.166288286447525,0.943866372108459,-0.295916527509689,-0.146797657012939,0.974379301071167,-0.183548882603645,-0.129978731274605,0.974379301071167,-0.183548882603645,-0.129978731274605,0.960485994815826,-0.251351565122604,-0.119536705315113,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.972493886947632,-0.183918505907059,-0.142931684851646,0.935395479202271,-0.293667852878571,-0.196962788701057,0.953068137168884,-0.253000527620316,-0.166288286447525,\r\n0.963462114334106,-0.215251222252846,-0.159397706389427,0.928294241428375,-0.327763319015503,-0.175615638494492,0.912883102893829,-0.343111574649811,-0.221175849437714,0.963462114334106,-0.215251222252846,-0.159397706389427,0.935395479202271,-0.293667852878571,-0.196962788701057,0.972493886947632,-0.183918505907059,-0.142931684851646,0.928294241428375,-0.327763319015503,-0.175615638494492,0.872760593891144,-0.422313332557678,-0.244826525449753,0.912883102893829,-0.343111574649811,-0.221175849437714,0.542383134365082,-0.805463671684265,-0.238848254084587,0.62569272518158,-0.733220219612122,-0.266264319419861,0.479677945375443,-0.843657255172729,-0.241146147251129,0.813633024692535,-0.514413774013519,-0.270886689424515,0.837560772895813,-0.492581576108933,-0.236337065696716,0.744386374950409,-0.6074538230896,-0.277287930250168,0.744386374950409,-0.6074538230896,-0.277287930250168,0.638595342636108,-0.715246915817261,-0.283932507038116,0.62569272518158,-0.733220219612122,-0.266264319419861,0.813633024692535,-0.514413774013519,-0.270886689424515,0.872760593891144,-0.422313332557678,-0.244826525449753,0.837560772895813,-0.492581576108933,-0.236337065696716,0.77368950843811,-0.61639666557312,-0.146490588784218,0.671079277992249,-0.66807758808136,-0.321441739797592,0.218011647462845,-0.825384795665741,-0.520778954029083,0.77368950843811,-0.61639666557312,-0.146490588784218,0.626310408115387,-0.733514249324799,-0.263992100954056,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.698516190052032,-0.643461227416992,-0.31310161948204,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.98123699426651,-0.192527383565903,0.0103501146659255,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.98123699426651,-0.192527383565903,0.0103501146659255,\r\n0.987232148647308,-0.159235268831253,-0.00408750120550394,0.965186238288879,-0.260779112577438,-0.0202409569174051,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.974507451057434,-0.214745432138443,-0.0649580508470535,0.987232148647308,-0.159235268831253,-0.00408750120550394,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.988352954387665,-0.132344096899033,-0.0751222372055054,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.974379301071167,-0.183548882603645,-0.129978731274605,0.97931295633316,-0.154639035463333,-0.130510032176971,0.953068137168884,-0.253000527620316,-0.166288286447525,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.974379301071167,-0.183548882603645,-0.129978731274605,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.972493886947632,-0.183918505907059,-0.142931684851646,0.953068137168884,-0.253000527620316,-0.166288286447525,0.97931295633316,-0.154639035463333,-0.130510032176971,0.928294241428375,-0.327763319015503,-0.175615638494492,0.963462114334106,-0.215251222252846,-0.159397706389427,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.989751398563385,-0.101209171116352,-0.100741498172283,0.963462114334106,-0.215251222252846,-0.159397706389427,0.972493886947632,-0.183918505907059,-0.142931684851646,0.928294241428375,-0.327763319015503,-0.175615638494492,0.837560772895813,-0.492581576108933,-0.236337065696716,0.872760593891144,-0.422313332557678,-0.244826525449753,0.638595342636108,-0.715246915817261,-0.283932507038116,0.479677945375443,-0.843657255172729,-0.241146147251129,0.62569272518158,-0.733220219612122,-0.266264319419861,0.837560772895813,-0.492581576108933,-0.236337065696716,0.754804015159607,-0.606155037879944,-0.250692993402481,0.744386374950409,-0.6074538230896,-0.277287930250168,0.754804015159607,-0.606155037879944,-0.250692993402481,0.638595342636108,-0.715246915817261,-0.283932507038116,\r\n0.744386374950409,-0.6074538230896,-0.277287930250168,0.626310408115387,-0.733514249324799,-0.263992100954056,0.77368950843811,-0.61639666557312,-0.146490588784218,0.218011647462845,-0.825384795665741,-0.520778954029083,0.698516190052032,-0.643461227416992,-0.31310161948204,0.840420365333557,-0.533457815647125,-0.0954785495996475,0.626310408115387,-0.733514249324799,-0.263992100954056,0.698516190052032,-0.643461227416992,-0.31310161948204,0.782150328159332,-0.586284458637238,-0.210976868867874,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.965290367603302,-0.259211897850037,0.0319939330220222,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.895917177200317,-0.440315544605255,-0.0587731041014194,0.782150328159332,-0.586284458637238,-0.210976868867874,0.98123699426651,-0.192527383565903,0.0103501146659255,0.949696838855743,-0.31304469704628,-0.00887881591916084,0.965290367603302,-0.259211897850037,0.0319939330220222,0.98123699426651,-0.192527383565903,0.0103501146659255,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.987232148647308,-0.159235268831253,-0.00408750120550394,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.987232148647308,-0.159235268831253,-0.00408750120550394,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.999648213386536,0.0264034420251846,0.00249529606662691,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.974379301071167,-0.183548882603645,-0.129978731274605,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.97931295633316,-0.154639035463333,-0.130510032176971,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.99026757478714,-0.11084358394146,-0.0841646194458008,0.998302400112152,0.0397782884538174,-0.0425426661968231,\r\n0.97931295633316,-0.154639035463333,-0.130510032176971,0.992342710494995,-0.072039783000946,-0.100329846143723,0.972493886947632,-0.183918505907059,-0.142931684851646,0.963462114334106,-0.215251222252846,-0.159397706389427,0.989751398563385,-0.101209171116352,-0.100741498172283,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.945256054401398,-0.304666012525558,-0.116916500031948,0.928294241428375,-0.327763319015503,-0.175615638494492,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.989751398563385,-0.101209171116352,-0.100741498172283,0.972493886947632,-0.183918505907059,-0.142931684851646,0.992342710494995,-0.072039783000946,-0.100329846143723,0.87229311466217,-0.450187057256699,-0.190882682800293,0.837560772895813,-0.492581576108933,-0.236337065696716,0.928294241428375,-0.327763319015503,-0.175615638494492,0.484360158443451,-0.834418773651123,-0.262945801019669,0.479677945375443,-0.843657255172729,-0.241146147251129,0.638595342636108,-0.715246915817261,-0.283932507038116,0.754804015159607,-0.606155037879944,-0.250692993402481,0.837560772895813,-0.492581576108933,-0.236337065696716,0.87229311466217,-0.450187057256699,-0.190882682800293,0.754804015159607,-0.606155037879944,-0.250692993402481,0.568089246749878,-0.774509131908417,-0.278226584196091,0.638595342636108,-0.715246915817261,-0.283932507038116,0.965290367603302,-0.259211897850037,0.0319939330220222,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.8987837433815,-0.422688126564026,-0.116285927593708,0.844319641590118,-0.509151935577393,-0.166998520493507,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.782150328159332,-0.586284458637238,-0.210976868867874,0.98123699426651,-0.192527383565903,0.0103501146659255,0.965290367603302,-0.259211897850037,0.0319939330220222,0.990579783916473,-0.128035947680473,0.0485630668699741,0.990579783916473,-0.128035947680473,0.0485630668699741,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.98123699426651,-0.192527383565903,0.0103501146659255,0.996497631072998,-0.0793254822492599,0.0264549870043993,\r\n0.99635910987854,0.0633959025144577,0.0570037811994553,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.999648213386536,0.0264034420251846,0.00249529606662691,0.996590554714203,-0.0776983797550201,-0.0277501977980137,0.99635910987854,0.0633959025144577,0.0570037811994553,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.999648213386536,0.0264034420251846,0.00249529606662691,0.991538047790527,0.127126768231392,0.0262869354337454,0.998991727828979,-0.0257906448096037,-0.0367465391755104,0.991538047790527,0.127126768231392,0.0262869354337454,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.992342710494995,-0.072039783000946,-0.100329846143723,0.97931295633316,-0.154639035463333,-0.130510032176971,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.989303886890411,0.14528551697731,-0.0130306873470545,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.989751398563385,-0.101209171116352,-0.100741498172283,0.945256054401398,-0.304666012525558,-0.116916500031948,0.87229311466217,-0.450187057256699,-0.190882682800293,0.928294241428375,-0.327763319015503,-0.175615638494492,0.945256054401398,-0.304666012525558,-0.116916500031948,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.992342710494995,-0.072039783000946,-0.100329846143723,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.989751398563385,-0.101209171116352,-0.100741498172283,0.484360158443451,-0.834418773651123,-0.262945801019669,0.30469936132431,-0.929440379142761,-0.208083510398865,0.479677945375443,-0.843657255172729,-0.241146147251129,0.484360158443451,-0.834418773651123,-0.262945801019669,0.638595342636108,-0.715246915817261,-0.283932507038116,0.568089246749878,-0.774509131908417,-0.278226584196091,0.813714146614075,-0.539566695690155,-0.216187506914139,0.754804015159607,-0.606155037879944,-0.250692993402481,\r\n0.87229311466217,-0.450187057256699,-0.190882682800293,0.671452283859253,-0.697476267814636,-0.250356703996658,0.568089246749878,-0.774509131908417,-0.278226584196091,0.754804015159607,-0.606155037879944,-0.250692993402481,0.844319641590118,-0.509151935577393,-0.166998520493507,0.8987837433815,-0.422688126564026,-0.116285927593708,0.922208786010742,-0.38618677854538,-0.0197631269693375,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.965290367603302,-0.259211897850037,0.0319939330220222,0.8987837433815,-0.422688126564026,-0.116285927593708,0.980171144008636,-0.178667053580284,0.0856883525848389,0.990579783916473,-0.128035947680473,0.0485630668699741,0.965290367603302,-0.259211897850037,0.0319939330220222,0.990579783916473,-0.128035947680473,0.0485630668699741,0.997766971588135,-0.0200775861740112,0.063701368868351,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.99635910987854,0.0633959025144577,0.0570037811994553,0.996497631072998,-0.0793254822492599,0.0264549870043993,0.997766971588135,-0.0200775861740112,0.063701368868351,0.999648213386536,0.0264034420251846,0.00249529606662691,0.99635910987854,0.0633959025144577,0.0570037811994553,0.976053893566132,0.198145970702171,0.0897601917386055,0.976053893566132,0.198145970702171,0.0897601917386055,0.991538047790527,0.127126768231392,0.0262869354337454,0.999648213386536,0.0264034420251846,0.00249529606662691,0.969817996025085,0.24017870426178,0.0420376807451248,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.991538047790527,0.127126768231392,0.0262869354337454,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.996714234352112,0.0564754977822304,-0.0580612942576408,0.992342710494995,-0.072039783000946,-0.100329846143723,0.989303886890411,0.14528551697731,-0.0130306873470545,0.998302400112152,0.0397782884538174,-0.0425426661968231,0.969817996025085,0.24017870426178,0.0420376807451248,0.994083166122437,-0.0496644712984562,-0.0966023653745651,0.989303886890411,0.14528551697731,-0.0130306873470545,0.996714234352112,0.0564754977822304,-0.0580612942576408,\r\n0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.989751398563385,-0.101209171116352,-0.100741498172283,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.945256054401398,-0.304666012525558,-0.116916500031948,0.895897746086121,-0.414282649755478,-0.160427495837212,0.87229311466217,-0.450187057256699,-0.190882682800293,0.981192827224731,-0.175614789128304,-0.0801248922944069,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.93829083442688,-0.32939675450325,-0.10539435595274,0.945256054401398,-0.304666012525558,-0.116916500031948,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.992342710494995,-0.072039783000946,-0.100329846143723,0.992496192455292,0.118604101240635,-0.0297375097870827,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.989751398563385,-0.101209171116352,-0.100741498172283,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.30469936132431,-0.929440379142761,-0.208083510398865,0.484360158443451,-0.834418773651123,-0.262945801019669,0.326815634965897,-0.910003185272217,-0.255118817090988,0.484360158443451,-0.834418773651123,-0.262945801019669,0.568089246749878,-0.774509131908417,-0.278226584196091,0.326815634965897,-0.910003185272217,-0.255118817090988,0.813714146614075,-0.539566695690155,-0.216187506914139,0.671452283859253,-0.697476267814636,-0.250356703996658,0.754804015159607,-0.606155037879944,-0.250692993402481,0.813714146614075,-0.539566695690155,-0.216187506914139,0.87229311466217,-0.450187057256699,-0.190882682800293,0.895897746086121,-0.414282649755478,-0.160427495837212,0.435529112815857,-0.865764796733856,-0.24650664627552,0.568089246749878,-0.774509131908417,-0.278226584196091,0.671452283859253,-0.697476267814636,-0.250356703996658,0.980171144008636,-0.178667053580284,0.0856883525848389,\r\n0.965290367603302,-0.259211897850037,0.0319939330220222,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.980171144008636,-0.178667053580284,0.0856883525848389,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.990579783916473,-0.128035947680473,0.0485630668699741,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.997766971588135,-0.0200775861740112,0.063701368868351,0.990579783916473,-0.128035947680473,0.0485630668699741,0.99635910987854,0.0633959025144577,0.0570037811994553,0.997766971588135,-0.0200775861740112,0.063701368868351,0.985718429088593,0.122993633151054,0.11502879858017,0.976053893566132,0.198145970702171,0.0897601917386055,0.99635910987854,0.0633959025144577,0.0570037811994553,0.950556099414825,0.277536898851395,0.139342531561852,0.938232481479645,0.328345358371735,0.109127521514893,0.991538047790527,0.127126768231392,0.0262869354337454,0.976053893566132,0.198145970702171,0.0897601917386055,0.938232481479645,0.328345358371735,0.109127521514893,0.969817996025085,0.24017870426178,0.0420376807451248,0.991538047790527,0.127126768231392,0.0262869354337454,0.996714234352112,0.0564754977822304,-0.0580612942576408,0.992496192455292,0.118604101240635,-0.0297375097870827,0.992342710494995,-0.072039783000946,-0.100329846143723,0.969817996025085,0.24017870426178,0.0420376807451248,0.944126009941101,0.325042814016342,0.0545272342860699,0.989303886890411,0.14528551697731,-0.0130306873470545,0.972090661525726,0.23450443148613,0.00687804631888866,0.996714234352112,0.0564754977822304,-0.0580612942576408,0.989303886890411,0.14528551697731,-0.0130306873470545,0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.989717245101929,0.13859911262989,0.0353541858494282,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.989717245101929,0.13859911262989,0.0353541858494282,0.999363958835602,-0.0232126489281654,-0.0270695257931948,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.93829083442688,-0.32939675450325,-0.10539435595274,0.895897746086121,-0.414282649755478,-0.160427495837212,\r\n0.945256054401398,-0.304666012525558,-0.116916500031948,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.994974195957184,-0.0954278409481049,-0.0303287915885448,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.93829083442688,-0.32939675450325,-0.10539435595274,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.992496192455292,0.118604101240635,-0.0297375097870827,0.979541778564453,0.201192587614059,0.00440468359738588,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.997977137565613,0.0265960991382599,-0.0577423647046089,0.979541778564453,0.201192587614059,0.00440468359738588,0.435529112815857,-0.865764796733856,-0.24650664627552,0.326815634965897,-0.910003185272217,-0.255118817090988,0.568089246749878,-0.774509131908417,-0.278226584196091,0.723189532756805,-0.647091925144196,-0.241389319300652,0.671452283859253,-0.697476267814636,-0.250356703996658,0.813714146614075,-0.539566695690155,-0.216187506914139,0.877622067928314,-0.454773932695389,-0.151526018977165,0.813714146614075,-0.539566695690155,-0.216187506914139,0.895897746086121,-0.414282649755478,-0.160427495837212,0.435529112815857,-0.865764796733856,-0.24650664627552,0.671452283859253,-0.697476267814636,-0.250356703996658,0.539318859577179,-0.808016061782837,-0.23716039955616,0.972024917602539,-0.229633763432503,0.0493537932634354,0.980171144008636,-0.178667053580284,0.0856883525848389,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.985377669334412,-0.117717266082764,0.123180598020554,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.980171144008636,-0.178667053580284,0.0856883525848389,0.992493093013763,0.0176996197551489,0.121012806892395,0.997766971588135,-0.0200775861740112,0.063701368868351,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.992493093013763,0.0176996197551489,0.121012806892395,0.985718429088593,0.122993633151054,0.11502879858017,0.997766971588135,-0.0200775861740112,0.063701368868351,\r\n0.985718429088593,0.122993633151054,0.11502879858017,0.958486139774323,0.243181973695755,0.148884862661362,0.99635910987854,0.0633959025144577,0.0570037811994553,0.950556099414825,0.277536898851395,0.139342531561852,0.99635910987854,0.0633959025144577,0.0570037811994553,0.958486139774323,0.243181973695755,0.148884862661362,0.901952028274536,0.393876612186432,0.177040711045265,0.976053893566132,0.198145970702171,0.0897601917386055,0.950556099414825,0.277536898851395,0.139342531561852,0.938232481479645,0.328345358371735,0.109127521514893,0.976053893566132,0.198145970702171,0.0897601917386055,0.901952028274536,0.393876612186432,0.177040711045265,0.969817996025085,0.24017870426178,0.0420376807451248,0.938232481479645,0.328345358371735,0.109127521514893,0.901633322238922,0.419955462217331,0.103415042161942,0.972090661525726,0.23450443148613,0.00687804631888866,0.992496192455292,0.118604101240635,-0.0297375097870827,0.996714234352112,0.0564754977822304,-0.0580612942576408,0.944126009941101,0.325042814016342,0.0545272342860699,0.969817996025085,0.24017870426178,0.0420376807451248,0.901633322238922,0.419955462217331,0.103415042161942,0.972090661525726,0.23450443148613,0.00687804631888866,0.989303886890411,0.14528551697731,-0.0130306873470545,0.944126009941101,0.325042814016342,0.0545272342860699,0.989717245101929,0.13859911262989,0.0353541858494282,0.979186832904816,0.195114895701408,0.0558851025998592,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.989717245101929,0.13859911262989,0.0353541858494282,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.969678223133087,0.241843104362488,0.0351573340594769,0.877622067928314,-0.454773932695389,-0.151526018977165,0.895897746086121,-0.414282649755478,-0.160427495837212,0.93829083442688,-0.32939675450325,-0.10539435595274,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.999475240707397,0.0323713235557079,0.00100962608121336,0.994974195957184,-0.0954278409481049,-0.0303287915885448,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.979215085506439,-0.195573523640633,-0.0537469051778317,\r\n0.994974195957184,-0.0954278409481049,-0.0303287915885448,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.877622067928314,-0.454773932695389,-0.151526018977165,0.93829083442688,-0.32939675450325,-0.10539435595274,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.978374600410461,-0.202044978737831,-0.044279333204031,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.992496192455292,0.118604101240635,-0.0297375097870827,0.959459245204926,0.279735177755356,0.0344406254589558,0.979541778564453,0.201192587614059,0.00440468359738588,0.996843159198761,0.0785911977291107,-0.0112727526575327,0.979541778564453,0.201192587614059,0.00440468359738588,0.969678223133087,0.241843104362488,0.0351573340594769,0.202687814831734,-0.952937960624695,-0.225447848439217,0.326815634965897,-0.910003185272217,-0.255118817090988,0.435529112815857,-0.865764796733856,-0.24650664627552,0.723189532756805,-0.647091925144196,-0.241389319300652,0.539318859577179,-0.808016061782837,-0.23716039955616,0.671452283859253,-0.697476267814636,-0.250356703996658,0.787367403507233,-0.578018069267273,-0.214353799819946,0.723189532756805,-0.647091925144196,-0.241389319300652,0.813714146614075,-0.539566695690155,-0.216187506914139,0.813714146614075,-0.539566695690155,-0.216187506914139,0.877622067928314,-0.454773932695389,-0.151526018977165,0.787367403507233,-0.578018069267273,-0.214353799819946,0.435529112815857,-0.865764796733856,-0.24650664627552,0.539318859577179,-0.808016061782837,-0.23716039955616,0.274672657251358,-0.936954498291016,-0.21603487432003,0.972024917602539,-0.229633763432503,0.0493537932634354,0.985377669334412,-0.117717266082764,0.123180598020554,0.980171144008636,-0.178667053580284,0.0856883525848389,0.985377669334412,-0.117717266082764,0.123180598020554,0.991095721721649,-0.0523286312818527,0.122437462210655,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.992493093013763,0.0176996197551489,0.121012806892395,0.992334306240082,-0.0824146121740341,0.0920886248350143,0.991095721721649,-0.0523286312818527,0.122437462210655,\r\n0.992493093013763,0.0176996197551489,0.121012806892395,0.962055027484894,0.189116090536118,0.196684822440147,0.985718429088593,0.122993633151054,0.11502879858017,0.921194553375244,0.318875283002853,0.22297765314579,0.958486139774323,0.243181973695755,0.148884862661362,0.985718429088593,0.122993633151054,0.11502879858017,0.950556099414825,0.277536898851395,0.139342531561852,0.958486139774323,0.243181973695755,0.148884862661362,0.87881463766098,0.423620402812958,0.21961435675621,0.901952028274536,0.393876612186432,0.177040711045265,0.950556099414825,0.277536898851395,0.139342531561852,0.87881463766098,0.423620402812958,0.21961435675621,0.972090661525726,0.23450443148613,0.00687804631888866,0.959459245204926,0.279735177755356,0.0344406254589558,0.992496192455292,0.118604101240635,-0.0297375097870827,0.901633322238922,0.419955462217331,0.103415042161942,0.89371657371521,0.44050744175911,0.084992378950119,0.944126009941101,0.325042814016342,0.0545272342860699,0.918614387512207,0.388784795999527,0.0706673413515091,0.972090661525726,0.23450443148613,0.00687804631888866,0.944126009941101,0.325042814016342,0.0545272342860699,0.941835999488831,0.325789272785187,0.0824997574090958,0.979186832904816,0.195114895701408,0.0558851025998592,0.989717245101929,0.13859911262989,0.0353541858494282,0.999475240707397,0.0323713235557079,0.00100962608121336,0.999691307544708,-0.0245925802737474,0.00348964589647949,0.979186832904816,0.195114895701408,0.0558851025998592,0.969678223133087,0.241843104362488,0.0351573340594769,0.941835999488831,0.325789272785187,0.0824997574090958,0.989717245101929,0.13859911262989,0.0353541858494282,0.999475240707397,0.0323713235557079,0.00100962608121336,0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.994974195957184,-0.0954278409481049,-0.0303287915885448,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.978374600410461,-0.202044978737831,-0.044279333204031,0.979215085506439,-0.195573523640633,-0.0537469051778317,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.994974195957184,-0.0954278409481049,-0.0303287915885448,\r\n0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.877622067928314,-0.454773932695389,-0.151526018977165,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.978374600410461,-0.202044978737831,-0.044279333204031,0.959459245204926,0.279735177755356,0.0344406254589558,0.932919919490814,0.35454735159874,0.0629004687070847,0.979541778564453,0.201192587614059,0.00440468359738588,0.932919919490814,0.35454735159874,0.0629004687070847,0.969678223133087,0.241843104362488,0.0351573340594769,0.979541778564453,0.201192587614059,0.00440468359738588,0.202687814831734,-0.952937960624695,-0.225447848439217,0.435529112815857,-0.865764796733856,-0.24650664627552,0.274672657251358,-0.936954498291016,-0.21603487432003,0.539318859577179,-0.808016061782837,-0.23716039955616,0.723189532756805,-0.647091925144196,-0.241389319300652,0.626414656639099,-0.734910428524017,-0.259829103946686,0.787367403507233,-0.578018069267273,-0.214353799819946,0.626414656639099,-0.734910428524017,-0.259829103946686,0.723189532756805,-0.647091925144196,-0.241389319300652,0.745471894741058,-0.631689310073853,-0.212697193026543,0.787367403507233,-0.578018069267273,-0.214353799819946,0.877622067928314,-0.454773932695389,-0.151526018977165,0.539318859577179,-0.808016061782837,-0.23716039955616,0.380135029554367,-0.886513710021973,-0.263800412416458,0.274672657251358,-0.936954498291016,-0.21603487432003,0.986194014549255,-0.121706694364548,0.112288370728493,0.985377669334412,-0.117717266082764,0.123180598020554,0.972024917602539,-0.229633763432503,0.0493537932634354,0.988703727722168,-0.0414503812789917,0.144036993384361,0.991095721721649,-0.0523286312818527,0.122437462210655,0.985377669334412,-0.117717266082764,0.123180598020554,0.992493093013763,0.0176996197551489,0.121012806892395,0.991095721721649,-0.0523286312818527,0.122437462210655,0.985486686229706,0.0584729984402657,0.15936353802681,\r\n0.992493093013763,0.0176996197551489,0.121012806892395,0.985486686229706,0.0584729984402657,0.15936353802681,0.962055027484894,0.189116090536118,0.196684822440147,0.985718429088593,0.122993633151054,0.11502879858017,0.962055027484894,0.189116090536118,0.196684822440147,0.921194553375244,0.318875283002853,0.22297765314579,0.921194553375244,0.318875283002853,0.22297765314579,0.87881463766098,0.423620402812958,0.21961435675621,0.958486139774323,0.243181973695755,0.148884862661362,0.972090661525726,0.23450443148613,0.00687804631888866,0.918614387512207,0.388784795999527,0.0706673413515091,0.959459245204926,0.279735177755356,0.0344406254589558,0.918614387512207,0.388784795999527,0.0706673413515091,0.944126009941101,0.325042814016342,0.0545272342860699,0.89371657371521,0.44050744175911,0.084992378950119,0.992942452430725,0.114665038883686,0.0302837304770947,0.999475240707397,0.0323713235557079,0.00100962608121336,0.979186832904816,0.195114895701408,0.0558851025998592,0.969678223133087,0.241843104362488,0.0351573340594769,0.932919919490814,0.35454735159874,0.0629004687070847,0.941835999488831,0.325789272785187,0.0824997574090958,0.992942452430725,0.114665038883686,0.0302837304770947,0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.999475240707397,0.0323713235557079,0.00100962608121336,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.978374600410461,-0.202044978737831,-0.044279333204031,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.999120652675629,0.0315296314656734,0.0276344604790211,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.944839715957642,-0.323609113693237,-0.050546582788229,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.877622067928314,-0.454773932695389,-0.151526018977165,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.815098702907562,-0.559609293937683,-0.149837866425514,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.982631742954254,-0.185113042593002,-0.0129591738805175,\r\n0.966331422328949,-0.25557342171669,-0.0297614987939596,0.959459245204926,0.279735177755356,0.0344406254589558,0.918614387512207,0.388784795999527,0.0706673413515091,0.932919919490814,0.35454735159874,0.0629004687070847,0.539318859577179,-0.808016061782837,-0.23716039955616,0.626414656639099,-0.734910428524017,-0.259829103946686,0.380135029554367,-0.886513710021973,-0.263800412416458,0.745471894741058,-0.631689310073853,-0.212697193026543,0.626414656639099,-0.734910428524017,-0.259829103946686,0.787367403507233,-0.578018069267273,-0.214353799819946,0.745471894741058,-0.631689310073853,-0.212697193026543,0.877622067928314,-0.454773932695389,-0.151526018977165,0.815098702907562,-0.559609293937683,-0.149837866425514,0.102743305265903,-0.96482914686203,-0.241968050599098,0.274672657251358,-0.936954498291016,-0.21603487432003,0.380135029554367,-0.886513710021973,-0.263800412416458,0.986194014549255,-0.121706694364548,0.112288370728493,0.988703727722168,-0.0414503812789917,0.144036993384361,0.985377669334412,-0.117717266082764,0.123180598020554,0.988703727722168,-0.0414503812789917,0.144036993384361,0.985486686229706,0.0584729984402657,0.15936353802681,0.991095721721649,-0.0523286312818527,0.122437462210655,0.931907832622528,0.246058762073517,0.266462981700897,0.962055027484894,0.189116090536118,0.196684822440147,0.985486686229706,0.0584729984402657,0.15936353802681,0.892019152641296,0.346116989850998,0.290697008371353,0.921194553375244,0.318875283002853,0.22297765314579,0.962055027484894,0.189116090536118,0.196684822440147,0.921194553375244,0.318875283002853,0.22297765314579,0.836996853351593,0.447030484676361,0.315594613552094,0.87881463766098,0.423620402812958,0.21961435675621,0.992942452430725,0.114665038883686,0.0302837304770947,0.979186832904816,0.195114895701408,0.0558851025998592,0.946040451526642,0.306677788496017,0.104671321809292,0.999120652675629,0.0315296314656734,0.0276344604790211,0.998967409133911,-0.0360275506973267,-0.0276763755828142,0.992942452430725,0.114665038883686,0.0302837304770947,0.990261554718018,-0.133190378546715,-0.0405252538621426,\r\n0.996730029582977,-0.0790766552090645,0.0166137311607599,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.999120652675629,0.0315296314656734,0.0276344604790211,0.996730029582977,-0.0790766552090645,0.0166137311607599,0.990261554718018,-0.133190378546715,-0.0405252538621426,0.956965148448944,-0.283393919467926,-0.0624939687550068,0.966331422328949,-0.25557342171669,-0.0297614987939596,0.944839715957642,-0.323609113693237,-0.050546582788229,0.8739373087883,-0.473308563232422,-0.110509991645813,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.944839715957642,-0.323609113693237,-0.050546582788229,0.8739373087883,-0.473308563232422,-0.110509991645813,0.815098702907562,-0.559609293937683,-0.149837866425514,0.914015531539917,-0.394356966018677,-0.0951742827892303,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.966331422328949,-0.25557342171669,-0.0297614987939596,0.463579148054123,-0.842792630195618,-0.273486584424973,0.380135029554367,-0.886513710021973,-0.263800412416458,0.626414656639099,-0.734910428524017,-0.259829103946686,0.745471894741058,-0.631689310073853,-0.212697193026543,0.533667325973511,-0.807620942592621,-0.250893235206604,0.626414656639099,-0.734910428524017,-0.259829103946686,0.745471894741058,-0.631689310073853,-0.212697193026543,0.815098702907562,-0.559609293937683,-0.149837866425514,0.632493495941162,-0.749071836471558,-0.197087168693542,0.277227789163589,-0.921171247959137,-0.273107916116714,0.102743305265903,-0.96482914686203,-0.241968050599098,0.380135029554367,-0.886513710021973,-0.263800412416458,0.995206952095032,-0.0210538748651743,0.095497228205204,0.988703727722168,-0.0414503812789917,0.144036993384361,0.986194014549255,-0.121706694364548,0.112288370728493,0.985486686229706,0.0584729984402657,0.15936353802681,0.988703727722168,-0.0414503812789917,0.144036993384361,0.987879693508148,0.0433737970888615,0.149037763476372,0.931907832622528,0.246058762073517,0.266462981700897,0.892019152641296,0.346116989850998,0.290697008371353,\r\n0.962055027484894,0.189116090536118,0.196684822440147,0.964157342910767,0.162781521677971,0.209529623389244,0.931907832622528,0.246058762073517,0.266462981700897,0.985486686229706,0.0584729984402657,0.15936353802681,0.836996853351593,0.447030484676361,0.315594613552094,0.921194553375244,0.318875283002853,0.22297765314579,0.892019152641296,0.346116989850998,0.290697008371353,0.992942452430725,0.114665038883686,0.0302837304770947,0.946040451526642,0.306677788496017,0.104671321809292,0.98367828130722,0.169240742921829,0.0611114874482155,0.992942452430725,0.114665038883686,0.0302837304770947,0.98367828130722,0.169240742921829,0.0611114874482155,0.999120652675629,0.0315296314656734,0.0276344604790211,0.996730029582977,-0.0790766552090645,0.0166137311607599,0.996438801288605,-0.0711784809827805,0.0452013649046421,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.999120652675629,0.0315296314656734,0.0276344604790211,0.991110384464264,0.0898541882634163,0.0981142371892929,0.996730029582977,-0.0790766552090645,0.0166137311607599,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.944839715957642,-0.323609113693237,-0.050546582788229,0.966331422328949,-0.25557342171669,-0.0297614987939596,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.8739373087883,-0.473308563232422,-0.110509991645813,0.944839715957642,-0.323609113693237,-0.050546582788229,0.815098702907562,-0.559609293937683,-0.149837866425514,0.8739373087883,-0.473308563232422,-0.110509991645813,0.714530408382416,-0.681670963764191,-0.157387852668762,0.992958962917328,-0.116580121219158,0.0210061296820641,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.982631742954254,-0.185113042593002,-0.0129591738805175,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.966331422328949,-0.25557342171669,-0.0297614987939596,0.277227789163589,-0.921171247959137,-0.273107916116714,0.380135029554367,-0.886513710021973,-0.263800412416458,0.463579148054123,-0.842792630195618,-0.273486584424973,\r\n0.463579148054123,-0.842792630195618,-0.273486584424973,0.626414656639099,-0.734910428524017,-0.259829103946686,0.533667325973511,-0.807620942592621,-0.250893235206604,0.533667325973511,-0.807620942592621,-0.250893235206604,0.745471894741058,-0.631689310073853,-0.212697193026543,0.632493495941162,-0.749071836471558,-0.197087168693542,0.815098702907562,-0.559609293937683,-0.149837866425514,0.714530408382416,-0.681670963764191,-0.157387852668762,0.632493495941162,-0.749071836471558,-0.197087168693542,0.102743305265903,-0.96482914686203,-0.241968050599098,0.277227789163589,-0.921171247959137,-0.273107916116714,-0.0418497920036316,-0.958031594753265,-0.283591091632843,0.988703727722168,-0.0414503812789917,0.144036993384361,0.995206952095032,-0.0210538748651743,0.095497228205204,0.987879693508148,0.0433737970888615,0.149037763476372,0.985486686229706,0.0584729984402657,0.15936353802681,0.987879693508148,0.0433737970888615,0.149037763476372,0.964157342910767,0.162781521677971,0.209529623389244,0.866481840610504,0.379651665687561,0.324150681495667,0.892019152641296,0.346116989850998,0.290697008371353,0.931907832622528,0.246058762073517,0.266462981700897,0.964157342910767,0.162781521677971,0.209529623389244,0.901320040225983,0.307944416999817,0.304618448019028,0.931907832622528,0.246058762073517,0.266462981700897,0.866481840610504,0.379651665687561,0.324150681495667,0.836996853351593,0.447030484676361,0.315594613552094,0.892019152641296,0.346116989850998,0.290697008371353,0.968853890895844,0.218520760536194,0.11649376899004,0.98367828130722,0.169240742921829,0.0611114874482155,0.946040451526642,0.306677788496017,0.104671321809292,0.98367828130722,0.169240742921829,0.0611114874482155,0.968853890895844,0.218520760536194,0.11649376899004,0.999120652675629,0.0315296314656734,0.0276344604790211,0.996730029582977,-0.0790766552090645,0.0166137311607599,0.991110384464264,0.0898541882634163,0.0981142371892929,0.996438801288605,-0.0711784809827805,0.0452013649046421,0.992958962917328,-0.116580121219158,0.0210061296820641,0.982631742954254,-0.185113042593002,-0.0129591738805175,\r\n0.996438801288605,-0.0711784809827805,0.0452013649046421,0.999120652675629,0.0315296314656734,0.0276344604790211,0.968853890895844,0.218520760536194,0.11649376899004,0.991110384464264,0.0898541882634163,0.0981142371892929,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.944839715957642,-0.323609113693237,-0.050546582788229,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.776365876197815,-0.608356237411499,-0.164798557758331,0.8739373087883,-0.473308563232422,-0.110509991645813,0.714530408382416,-0.681670963764191,-0.157387852668762,0.8739373087883,-0.473308563232422,-0.110509991645813,0.776365876197815,-0.608356237411499,-0.164798557758331,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.992958962917328,-0.116580121219158,0.0210061296820641,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.463579148054123,-0.842792630195618,-0.273486584424973,0.533667325973511,-0.807620942592621,-0.250893235206604,0.277227789163589,-0.921171247959137,-0.273107916116714,0.533667325973511,-0.807620942592621,-0.250893235206604,0.632493495941162,-0.749071836471558,-0.197087168693542,0.404290199279785,-0.884166657924652,-0.234091058373451,0.632493495941162,-0.749071836471558,-0.197087168693542,0.714530408382416,-0.681670963764191,-0.157387852668762,0.498385936021805,-0.845227658748627,-0.19287733733654,0.277227789163589,-0.921171247959137,-0.273107916116714,0.168700397014618,-0.950691282749176,-0.260242462158203,-0.0418497920036316,-0.958031594753265,-0.283591091632843,0.995206952095032,-0.0210538748651743,0.095497228205204,0.990151345729828,0.0489564053714275,0.131162285804749,0.987879693508148,0.0433737970888615,0.149037763476372,0.964157342910767,0.162781521677971,0.209529623389244,0.987879693508148,0.0433737970888615,0.149037763476372,0.972104966640472,0.15726974606514,0.174005895853043,\r\n0.866481840610504,0.379651665687561,0.324150681495667,0.931907832622528,0.246058762073517,0.266462981700897,0.901320040225983,0.307944416999817,0.304618448019028,0.890762150287628,0.310849130153656,0.331535071134567,0.901320040225983,0.307944416999817,0.304618448019028,0.964157342910767,0.162781521677971,0.209529623389244,0.866481840610504,0.379651665687561,0.324150681495667,0.828401207923889,0.41530305147171,0.37586522102356,0.836996853351593,0.447030484676361,0.315594613552094,0.993661940097809,0.0445580035448074,0.103200607001781,0.996438801288605,-0.0711784809827805,0.0452013649046421,0.991110384464264,0.0898541882634163,0.0981142371892929,0.993661940097809,0.0445580035448074,0.103200607001781,0.992958962917328,-0.116580121219158,0.0210061296820641,0.996438801288605,-0.0711784809827805,0.0452013649046421,0.930768191814423,0.304695338010788,0.20206680893898,0.991110384464264,0.0898541882634163,0.0981142371892929,0.968853890895844,0.218520760536194,0.11649376899004,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.961867332458496,-0.265850245952606,-0.0643020421266556,0.938619792461395,-0.331784337759018,-0.0944033041596413,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.745206356048584,-0.646829307079315,-0.162108868360519,0.776365876197815,-0.608356237411499,-0.164798557758331,0.714530408382416,-0.681670963764191,-0.157387852668762,0.776365876197815,-0.608356237411499,-0.164798557758331,0.583617806434631,-0.786835670471191,-0.20069819688797,0.991728007793427,-0.122997209429741,0.0367043688893318,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.992958962917328,-0.116580121219158,0.0210061296820641,0.993661940097809,0.0445580035448074,0.103200607001781,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.980607151985168,-0.195368140935898,-0.0155152343213558,0.991728007793427,-0.122997209429741,0.0367043688893318,0.938619792461395,-0.331784337759018,-0.0944033041596413,\r\n0.961867332458496,-0.265850245952606,-0.0643020421266556,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.533667325973511,-0.807620942592621,-0.250893235206604,0.404290199279785,-0.884166657924652,-0.234091058373451,0.277227789163589,-0.921171247959137,-0.273107916116714,0.404290199279785,-0.884166657924652,-0.234091058373451,0.632493495941162,-0.749071836471558,-0.197087168693542,0.498385936021805,-0.845227658748627,-0.19287733733654,0.583617806434631,-0.786835670471191,-0.20069819688797,0.498385936021805,-0.845227658748627,-0.19287733733654,0.714530408382416,-0.681670963764191,-0.157387852668762,0.277227789163589,-0.921171247959137,-0.273107916116714,0.404290199279785,-0.884166657924652,-0.234091058373451,0.168700397014618,-0.950691282749176,-0.260242462158203,-0.0985161513090134,-0.960055351257324,-0.261893570423126,-0.0418497920036316,-0.958031594753265,-0.283591091632843,0.168700397014618,-0.950691282749176,-0.260242462158203,0.987879693508148,0.0433737970888615,0.149037763476372,0.990151345729828,0.0489564053714275,0.131162285804749,0.972104966640472,0.15726974606514,0.174005895853043,0.964157342910767,0.162781521677971,0.209529623389244,0.972104966640472,0.15726974606514,0.174005895853043,0.939149081707001,0.241741091012955,0.2440495043993,0.866481840610504,0.379651665687561,0.324150681495667,0.901320040225983,0.307944416999817,0.304618448019028,0.828401207923889,0.41530305147171,0.37586522102356,0.901320040225983,0.307944416999817,0.304618448019028,0.890762150287628,0.310849130153656,0.331535071134567,0.828401207923889,0.41530305147171,0.37586522102356,0.964157342910767,0.162781521677971,0.209529623389244,0.939149081707001,0.241741091012955,0.2440495043993,0.890762150287628,0.310849130153656,0.331535071134567,0.993661940097809,0.0445580035448074,0.103200607001781,0.991110384464264,0.0898541882634163,0.0981142371892929,0.971113979816437,0.182713687419891,0.153470456600189,0.971113979816437,0.182713687419891,0.153470456600189,0.991110384464264,0.0898541882634163,0.0981142371892929,0.930768191814423,0.304695338010788,0.20206680893898,\r\n0.938619792461395,-0.331784337759018,-0.0944033041596413,0.828636825084686,-0.539562940597534,-0.149106368422508,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.828636825084686,-0.539562940597534,-0.149106368422508,0.745206356048584,-0.646829307079315,-0.162108868360519,0.901946485042572,-0.420821130275726,-0.0969638600945473,0.745206356048584,-0.646829307079315,-0.162108868360519,0.633317232131958,-0.742963552474976,-0.216596737504005,0.776365876197815,-0.608356237411499,-0.164798557758331,0.583617806434631,-0.786835670471191,-0.20069819688797,0.776365876197815,-0.608356237411499,-0.164798557758331,0.633317232131958,-0.742963552474976,-0.216596737504005,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.993404090404511,0.0216652154922485,0.11260050535202,0.991728007793427,-0.122997209429741,0.0367043688893318,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.993661940097809,0.0445580035448074,0.103200607001781,0.972865104675293,0.14968167245388,0.176433697342873,0.991728007793427,-0.122997209429741,0.0367043688893318,0.997192919254303,-0.0740156769752502,0.011310207657516,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.938619792461395,-0.331784337759018,-0.0944033041596413,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.912094175815582,-0.387491792440414,-0.133918717503548,0.404290199279785,-0.884166657924652,-0.234091058373451,0.498385936021805,-0.845227658748627,-0.19287733733654,0.259578585624695,-0.935559809207916,-0.239471197128296,0.498385936021805,-0.845227658748627,-0.19287733733654,0.583617806434631,-0.786835670471191,-0.20069819688797,0.37853816151619,-0.898537695407867,-0.22212316095829,0.259578585624695,-0.935559809207916,-0.239471197128296,0.168700397014618,-0.950691282749176,-0.260242462158203,0.404290199279785,-0.884166657924652,-0.234091058373451,0.259578585624695,-0.935559809207916,-0.239471197128296,-0.0985161513090134,-0.960055351257324,-0.261893570423126,0.168700397014618,-0.950691282749176,-0.260242462158203,0.990151345729828,0.0489564053714275,0.131162285804749,\r\n0.983355939388275,0.151628792285919,0.100098095834255,0.972104966640472,0.15726974606514,0.174005895853043,0.939149081707001,0.241741091012955,0.2440495043993,0.972104966640472,0.15726974606514,0.174005895853043,0.906070530414581,0.321478396654129,0.275113970041275,0.890762150287628,0.310849130153656,0.331535071134567,0.939149081707001,0.241741091012955,0.2440495043993,0.906070530414581,0.321478396654129,0.275113970041275,0.946926414966583,0.249101415276527,0.20317168533802,0.993661940097809,0.0445580035448074,0.103200607001781,0.971113979816437,0.182713687419891,0.153470456600189,0.946926414966583,0.249101415276527,0.20317168533802,0.971113979816437,0.182713687419891,0.153470456600189,0.930768191814423,0.304695338010788,0.20206680893898,0.912094175815582,-0.387491792440414,-0.133918717503548,0.828636825084686,-0.539562940597534,-0.149106368422508,0.938619792461395,-0.331784337759018,-0.0944033041596413,0.828636825084686,-0.539562940597534,-0.149106368422508,0.62114006280899,-0.75622433423996,-0.20569309592247,0.745206356048584,-0.646829307079315,-0.162108868360519,0.633317232131958,-0.742963552474976,-0.216596737504005,0.745206356048584,-0.646829307079315,-0.162108868360519,0.549685776233673,-0.806063115596771,-0.219334617257118,0.583617806434631,-0.786835670471191,-0.20069819688797,0.633317232131958,-0.742963552474976,-0.216596737504005,0.447054624557495,-0.862496614456177,-0.237153112888336,0.995881974697113,-0.0629470646381378,0.0652430132031441,0.972865104675293,0.14968167245388,0.176433697342873,0.993404090404511,0.0216652154922485,0.11260050535202,0.991728007793427,-0.122997209429741,0.0367043688893318,0.993404090404511,0.0216652154922485,0.11260050535202,0.997192919254303,-0.0740156769752502,0.011310207657516,0.993661940097809,0.0445580035448074,0.103200607001781,0.946926414966583,0.249101415276527,0.20317168533802,0.972865104675293,0.14968167245388,0.176433697342873,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.997192919254303,-0.0740156769752502,0.011310207657516,0.991035223007202,-0.125569313764572,-0.0456230379641056,\r\n0.938483655452728,-0.313067942857742,-0.145728528499603,0.912094175815582,-0.387491792440414,-0.133918717503548,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.498385936021805,-0.845227658748627,-0.19287733733654,0.37853816151619,-0.898537695407867,-0.22212316095829,0.259578585624695,-0.935559809207916,-0.239471197128296,0.447054624557495,-0.862496614456177,-0.237153112888336,0.37853816151619,-0.898537695407867,-0.22212316095829,0.583617806434631,-0.786835670471191,-0.20069819688797,0.259578585624695,-0.935559809207916,-0.239471197128296,0.140123352408409,-0.960470616817474,-0.240544199943542,-0.0985161513090134,-0.960055351257324,-0.261893570423126,0.983355939388275,0.151628792285919,0.100098095834255,0.950215816497803,0.274013519287109,0.148345306515694,0.972104966640472,0.15726974606514,0.174005895853043,0.906070530414581,0.321478396654129,0.275113970041275,0.972104966640472,0.15726974606514,0.174005895853043,0.950215816497803,0.274013519287109,0.148345306515694,0.775222063064575,-0.605789005756378,-0.179026246070862,0.828636825084686,-0.539562940597534,-0.149106368422508,0.912094175815582,-0.387491792440414,-0.133918717503548,0.680437743663788,-0.702941954135895,-0.207067146897316,0.62114006280899,-0.75622433423996,-0.20569309592247,0.828636825084686,-0.539562940597534,-0.149106368422508,0.549685776233673,-0.806063115596771,-0.219334617257118,0.745206356048584,-0.646829307079315,-0.162108868360519,0.62114006280899,-0.75622433423996,-0.20569309592247,0.633317232131958,-0.742963552474976,-0.216596737504005,0.549685776233673,-0.806063115596771,-0.219334617257118,0.447054624557495,-0.862496614456177,-0.237153112888336,0.958675682544708,0.204954907298088,0.19731804728508,0.993404090404511,0.0216652154922485,0.11260050535202,0.972865104675293,0.14968167245388,0.176433697342873,0.998548924922943,0.012917404063046,0.0522794798016548,0.997192919254303,-0.0740156769752502,0.011310207657516,0.993404090404511,0.0216652154922485,0.11260050535202,0.991035223007202,-0.125569313764572,-0.0456230379641056,0.997192919254303,-0.0740156769752502,0.011310207657516,\r\n0.998548924922943,0.012917404063046,0.0522794798016548,0.938483655452728,-0.313067942857742,-0.145728528499603,0.975860595703125,-0.210500061511993,-0.0581876635551453,0.991035223007202,-0.125569313764572,-0.0456230379641056,0.938483655452728,-0.313067942857742,-0.145728528499603,0.835058629512787,-0.513958692550659,-0.196273729205132,0.912094175815582,-0.387491792440414,-0.133918717503548,0.259578585624695,-0.935559809207916,-0.239471197128296,0.37853816151619,-0.898537695407867,-0.22212316095829,0.140123352408409,-0.960470616817474,-0.240544199943542,0.447054624557495,-0.862496614456177,-0.237153112888336,0.227319419384003,-0.947347462177277,-0.225518569350243,0.37853816151619,-0.898537695407867,-0.22212316095829,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.0985161513090134,-0.960055351257324,-0.261893570423126,0.140123352408409,-0.960470616817474,-0.240544199943542,0.775222063064575,-0.605789005756378,-0.179026246070862,0.680437743663788,-0.702941954135895,-0.207067146897316,0.828636825084686,-0.539562940597534,-0.149106368422508,0.835058629512787,-0.513958692550659,-0.196273729205132,0.775222063064575,-0.605789005756378,-0.179026246070862,0.912094175815582,-0.387491792440414,-0.133918717503548,0.680437743663788,-0.702941954135895,-0.207067146897316,0.487466126680374,-0.845305144786835,-0.218714118003845,0.62114006280899,-0.75622433423996,-0.20569309592247,0.549685776233673,-0.806063115596771,-0.219334617257118,0.62114006280899,-0.75622433423996,-0.20569309592247,0.368691384792328,-0.898924767971039,-0.236645087599754,0.549685776233673,-0.806063115596771,-0.219334617257118,0.368691384792328,-0.898924767971039,-0.236645087599754,0.447054624557495,-0.862496614456177,-0.237153112888336,0.998548924922943,0.012917404063046,0.0522794798016548,0.993404090404511,0.0216652154922485,0.11260050535202,0.958675682544708,0.204954907298088,0.19731804728508,0.998548924922943,0.012917404063046,0.0522794798016548,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.991035223007202,-0.125569313764572,-0.0456230379641056,\r\n0.938483655452728,-0.313067942857742,-0.145728528499603,0.991035223007202,-0.125569313764572,-0.0456230379641056,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.835058629512787,-0.513958692550659,-0.196273729205132,0.938483655452728,-0.313067942857742,-0.145728528499603,0.790010631084442,-0.562812507152557,-0.243156552314758,0.227319419384003,-0.947347462177277,-0.225518569350243,0.140123352408409,-0.960470616817474,-0.240544199943542,0.37853816151619,-0.898537695407867,-0.22212316095829,0.447054624557495,-0.862496614456177,-0.237153112888336,0.368691384792328,-0.898924767971039,-0.236645087599754,0.227319419384003,-0.947347462177277,-0.225518569350243,0.227319419384003,-0.947347462177277,-0.225518569350243,-0.134369939565659,-0.957383871078491,-0.255657374858856,0.140123352408409,-0.960470616817474,-0.240544199943542,0.680437743663788,-0.702941954135895,-0.207067146897316,0.775222063064575,-0.605789005756378,-0.179026246070862,0.547736585140228,-0.810536801815033,-0.2073994576931,0.835058629512787,-0.513958692550659,-0.196273729205132,0.639516949653625,-0.735429406166077,-0.223967835307121,0.775222063064575,-0.605789005756378,-0.179026246070862,0.547736585140228,-0.810536801815033,-0.2073994576931,0.487466126680374,-0.845305144786835,-0.218714118003845,0.680437743663788,-0.702941954135895,-0.207067146897316,0.62114006280899,-0.75622433423996,-0.20569309592247,0.487466126680374,-0.845305144786835,-0.218714118003845,0.368691384792328,-0.898924767971039,-0.236645087599754,0.998548924922943,0.012917404063046,0.0522794798016548,0.958675682544708,0.204954907298088,0.19731804728508,0.990409433841705,0.0859690234065056,0.108158983290195,0.998548924922943,0.012917404063046,0.0522794798016548,0.990409433841705,0.0859690234065056,0.108158983290195,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.991035223007202,-0.125569313764572,-0.0456230379641056,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.938483655452728,-0.313067942857742,-0.145728528499603,\r\n0.97904509305954,-0.189353749155998,-0.0749387294054031,0.911373436450958,-0.372061431407928,-0.175979405641556,0.790010631084442,-0.562812507152557,-0.243156552314758,0.938483655452728,-0.313067942857742,-0.145728528499603,0.835766673088074,-0.488687485456467,-0.250356644392014,0.835058629512787,-0.513958692550659,-0.196273729205132,0.790010631084442,-0.562812507152557,-0.243156552314758,0.691812753677368,-0.675282299518585,-0.255712300539017,0.227319419384003,-0.947347462177277,-0.225518569350243,0.368691384792328,-0.898924767971039,-0.236645087599754,0.109900943934917,-0.965524733066559,-0.2359738945961,0.227319419384003,-0.947347462177277,-0.225518569350243,0.109900943934917,-0.965524733066559,-0.2359738945961,-0.134369939565659,-0.957383871078491,-0.255657374858856,0.639516949653625,-0.735429406166077,-0.223967835307121,0.547736585140228,-0.810536801815033,-0.2073994576931,0.775222063064575,-0.605789005756378,-0.179026246070862,0.639516949653625,-0.735429406166077,-0.223967835307121,0.835058629512787,-0.513958692550659,-0.196273729205132,0.691812753677368,-0.675282299518585,-0.255712300539017,0.547736585140228,-0.810536801815033,-0.2073994576931,0.311108857393265,-0.925333440303802,-0.216723680496216,0.487466126680374,-0.845305144786835,-0.218714118003845,0.311108857393265,-0.925333440303802,-0.216723680496216,0.368691384792328,-0.898924767971039,-0.236645087599754,0.487466126680374,-0.845305144786835,-0.218714118003845,0.958241164684296,0.211286246776581,0.192696183919907,0.990409433841705,0.0859690234065056,0.108158983290195,0.958675682544708,0.204954907298088,0.19731804728508,0.986373364925385,0.118583023548126,0.114041946828365,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.990409433841705,0.0859690234065056,0.108158983290195,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.911373436450958,-0.372061431407928,-0.175979405641556,0.97904509305954,-0.189353749155998,-0.0749387294054031,\r\n0.902269840240479,-0.401810169219971,-0.156389638781548,0.911373436450958,-0.372061431407928,-0.175979405641556,0.835766673088074,-0.488687485456467,-0.250356644392014,0.938483655452728,-0.313067942857742,-0.145728528499603,0.790010631084442,-0.562812507152557,-0.243156552314758,0.835766673088074,-0.488687485456467,-0.250356644392014,0.622805893421173,-0.727372705936432,-0.288169354200363,0.574065983295441,-0.772017538547516,-0.272831231355667,0.691812753677368,-0.675282299518585,-0.255712300539017,0.790010631084442,-0.562812507152557,-0.243156552314758,0.311108857393265,-0.925333440303802,-0.216723680496216,0.109900943934917,-0.965524733066559,-0.2359738945961,0.368691384792328,-0.898924767971039,-0.236645087599754,-0.134369939565659,-0.957383871078491,-0.255657374858856,0.109900943934917,-0.965524733066559,-0.2359738945961,-0.139218792319298,-0.96094274520874,-0.239179998636246,0.639516949653625,-0.735429406166077,-0.223967835307121,0.398451805114746,-0.890526175498962,-0.219542980194092,0.547736585140228,-0.810536801815033,-0.2073994576931,0.639516949653625,-0.735429406166077,-0.223967835307121,0.691812753677368,-0.675282299518585,-0.255712300539017,0.440618008375168,-0.854961514472961,-0.273672133684158,0.311108857393265,-0.925333440303802,-0.216723680496216,0.547736585140228,-0.810536801815033,-0.2073994576931,0.398451805114746,-0.890526175498962,-0.219542980194092,0.958241164684296,0.211286246776581,0.192696183919907,0.986373364925385,0.118583023548126,0.114041946828365,0.990409433841705,0.0859690234065056,0.108158983290195,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.986373364925385,0.118583023548126,0.114041946828365,0.99641340970993,0.0732806399464607,0.04230797290802,0.999422430992126,-0.0270718820393085,0.0205371025949717,0.99641340970993,0.0732806399464607,0.04230797290802,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.964438378810883,-0.246166303753853,-0.0962311327457428,\r\n0.902269840240479,-0.401810169219971,-0.156389638781548,0.97904509305954,-0.189353749155998,-0.0749387294054031,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.911373436450958,-0.372061431407928,-0.175979405641556,0.902269840240479,-0.401810169219971,-0.156389638781548,0.784265577793121,-0.573671758174896,-0.236279606819153,0.911373436450958,-0.372061431407928,-0.175979405641556,0.713751137256622,-0.639070272445679,-0.286615610122681,0.835766673088074,-0.488687485456467,-0.250356644392014,0.835766673088074,-0.488687485456467,-0.250356644392014,0.713751137256622,-0.639070272445679,-0.286615610122681,0.622805893421173,-0.727372705936432,-0.288169354200363,0.622805893421173,-0.727372705936432,-0.288169354200363,0.574065983295441,-0.772017538547516,-0.272831231355667,0.790010631084442,-0.562812507152557,-0.243156552314758,0.574065983295441,-0.772017538547516,-0.272831231355667,0.440618008375168,-0.854961514472961,-0.273672133684158,0.691812753677368,-0.675282299518585,-0.255712300539017,0.311108857393265,-0.925333440303802,-0.216723680496216,0.190362364053726,-0.949701011180878,-0.24865648150444,0.109900943934917,-0.965524733066559,-0.2359738945961,0.109900943934917,-0.965524733066559,-0.2359738945961,-0.0156903639435768,-0.968316256999969,-0.249233439564705,-0.139218792319298,-0.96094274520874,-0.239179998636246,0.398451805114746,-0.890526175498962,-0.219542980194092,0.639516949653625,-0.735429406166077,-0.223967835307121,0.440618008375168,-0.854961514472961,-0.273672133684158,0.311108857393265,-0.925333440303802,-0.216723680496216,0.398451805114746,-0.890526175498962,-0.219542980194092,0.190362364053726,-0.949701011180878,-0.24865648150444,0.986373364925385,0.118583023548126,0.114041946828365,0.958241164684296,0.211286246776581,0.192696183919907,0.96403306722641,0.211662113666534,0.160746052861214,0.977065443992615,0.184287577867508,0.106682054698467,0.99641340970993,0.0732806399464607,0.04230797290802,0.986373364925385,0.118583023548126,0.114041946828365,0.99641340970993,0.0732806399464607,0.04230797290802,\r\n0.997683942317963,0.0175520889461041,-0.0657155513763428,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.982503950595856,-0.144456580281258,-0.117549881339073,0.902269840240479,-0.401810169219971,-0.156389638781548,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.862954199314117,-0.478374481201172,-0.162689223885536,0.670218884944916,-0.691519677639008,-0.269457072019577,0.784265577793121,-0.573671758174896,-0.236279606819153,0.902269840240479,-0.401810169219971,-0.156389638781548,0.713751137256622,-0.639070272445679,-0.286615610122681,0.911373436450958,-0.372061431407928,-0.175979405641556,0.784265577793121,-0.573671758174896,-0.236279606819153,0.463651984930038,-0.832033574581146,-0.304543614387512,0.622805893421173,-0.727372705936432,-0.288169354200363,0.713751137256622,-0.639070272445679,-0.286615610122681,0.622805893421173,-0.727372705936432,-0.288169354200363,0.337154716253281,-0.895414531230927,-0.290790945291519,0.574065983295441,-0.772017538547516,-0.272831231355667,0.337154716253281,-0.895414531230927,-0.290790945291519,0.440618008375168,-0.854961514472961,-0.273672133684158,0.574065983295441,-0.772017538547516,-0.272831231355667,0.109900943934917,-0.965524733066559,-0.2359738945961,0.190362364053726,-0.949701011180878,-0.24865648150444,-0.0156903639435768,-0.968316256999969,-0.249233439564705,0.398451805114746,-0.890526175498962,-0.219542980194092,0.440618008375168,-0.854961514472961,-0.273672133684158,0.190362364053726,-0.949701011180878,-0.24865648150444,0.977065443992615,0.184287577867508,0.106682054698467,0.986373364925385,0.118583023548126,0.114041946828365,0.96403306722641,0.211662113666534,0.160746052861214,0.977065443992615,0.184287577867508,0.106682054698467,0.981603682041168,0.190920308232307,-0.00187494850251824,0.99641340970993,0.0732806399464607,0.04230797290802,0.99641340970993,0.0732806399464607,0.04230797290802,0.981603682041168,0.190920308232307,-0.00187494850251824,\r\n0.997683942317963,0.0175520889461041,-0.0657155513763428,0.982503950595856,-0.144456580281258,-0.117549881339073,0.995244145393372,-0.09074317663908,-0.0354210548102856,0.997683942317963,0.0175520889461041,-0.0657155513763428,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.982503950595856,-0.144456580281258,-0.117549881339073,0.914468109607697,-0.348576217889786,-0.205530181527138,0.964438378810883,-0.246166303753853,-0.0962311327457428,0.914468109607697,-0.348576217889786,-0.205530181527138,0.862954199314117,-0.478374481201172,-0.162689223885536,0.733730494976044,-0.633908748626709,-0.244538888335228,0.902269840240479,-0.401810169219971,-0.156389638781548,0.862954199314117,-0.478374481201172,-0.162689223885536,0.670218884944916,-0.691519677639008,-0.269457072019577,0.519511044025421,-0.787498652935028,-0.331593096256256,0.784265577793121,-0.573671758174896,-0.236279606819153,0.670218884944916,-0.691519677639008,-0.269457072019577,0.902269840240479,-0.401810169219971,-0.156389638781548,0.733730494976044,-0.633908748626709,-0.244538888335228,0.713751137256622,-0.639070272445679,-0.286615610122681,0.784265577793121,-0.573671758174896,-0.236279606819153,0.519511044025421,-0.787498652935028,-0.331593096256256,0.337154716253281,-0.895414531230927,-0.290790945291519,0.622805893421173,-0.727372705936432,-0.288169354200363,0.463651984930038,-0.832033574581146,-0.304543614387512,0.519511044025421,-0.787498652935028,-0.331593096256256,0.463651984930038,-0.832033574581146,-0.304543614387512,0.713751137256622,-0.639070272445679,-0.286615610122681,0.440618008375168,-0.854961514472961,-0.273672133684158,0.337154716253281,-0.895414531230927,-0.290790945291519,0.190362364053726,-0.949701011180878,-0.24865648150444,-0.00276464712806046,-0.95152872800827,-0.307547360658646,-0.0156903639435768,-0.968316256999969,-0.249233439564705,0.190362364053726,-0.949701011180878,-0.24865648150444,0.981603682041168,0.190920308232307,-0.00187494850251824,0.958265602588654,0.13981930911541,-0.249354094266891,0.997683942317963,0.0175520889461041,-0.0657155513763428,\r\n0.977198898792267,-0.0325850620865822,-0.209810361266136,0.982503950595856,-0.144456580281258,-0.117549881339073,0.997683942317963,0.0175520889461041,-0.0657155513763428,0.914468109607697,-0.348576217889786,-0.205530181527138,0.982503950595856,-0.144456580281258,-0.117549881339073,0.915197730064392,-0.146925732493401,-0.375267624855042,0.737393081188202,-0.601717948913574,-0.30689862370491,0.862954199314117,-0.478374481201172,-0.162689223885536,0.914468109607697,-0.348576217889786,-0.205530181527138,0.659812986850739,-0.703473508358002,-0.264143317937851,0.733730494976044,-0.633908748626709,-0.244538888335228,0.862954199314117,-0.478374481201172,-0.162689223885536,0.670218884944916,-0.691519677639008,-0.269457072019577,0.401439845561981,-0.849004089832306,-0.343566507101059,0.519511044025421,-0.787498652935028,-0.331593096256256,0.670218884944916,-0.691519677639008,-0.269457072019577,0.733730494976044,-0.633908748626709,-0.244538888335228,0.477037698030472,-0.810179829597473,-0.34065169095993,0.337154716253281,-0.895414531230927,-0.290790945291519,0.463651984930038,-0.832033574581146,-0.304543614387512,0.255339086055756,-0.905746102333069,-0.338268905878067,0.519511044025421,-0.787498652935028,-0.331593096256256,0.255339086055756,-0.905746102333069,-0.338268905878067,0.463651984930038,-0.832033574581146,-0.304543614387512,0.337154716253281,-0.895414531230927,-0.290790945291519,0.130573078989983,-0.941716730594635,-0.310032486915588,0.190362364053726,-0.949701011180878,-0.24865648150444,-0.00276464712806046,-0.95152872800827,-0.307547360658646,0.190362364053726,-0.949701011180878,-0.24865648150444,0.130573078989983,-0.941716730594635,-0.310032486915588,0.958265602588654,0.13981930911541,-0.249354094266891,0.981603682041168,0.190920308232307,-0.00187494850251824,0.946444749832153,0.287937253713608,-0.146063104271889,0.958265602588654,0.13981930911541,-0.249354094266891,0.977198898792267,-0.0325850620865822,-0.209810361266136,0.997683942317963,0.0175520889461041,-0.0657155513763428,0.915197730064392,-0.146925732493401,-0.375267624855042,\r\n0.982503950595856,-0.144456580281258,-0.117549881339073,0.977198898792267,-0.0325850620865822,-0.209810361266136,0.915197730064392,-0.146925732493401,-0.375267624855042,0.794824421405792,-0.418989628553391,-0.438978016376495,0.914468109607697,-0.348576217889786,-0.205530181527138,0.737393081188202,-0.601717948913574,-0.30689862370491,0.659812986850739,-0.703473508358002,-0.264143317937851,0.862954199314117,-0.478374481201172,-0.162689223885536,0.737393081188202,-0.601717948913574,-0.30689862370491,0.914468109607697,-0.348576217889786,-0.205530181527138,0.794824421405792,-0.418989628553391,-0.438978016376495,0.733730494976044,-0.633908748626709,-0.244538888335228,0.659812986850739,-0.703473508358002,-0.264143317937851,0.477037698030472,-0.810179829597473,-0.34065169095993,0.477037698030472,-0.810179829597473,-0.34065169095993,0.401439845561981,-0.849004089832306,-0.343566507101059,0.670218884944916,-0.691519677639008,-0.269457072019577,0.255339086055756,-0.905746102333069,-0.338268905878067,0.519511044025421,-0.787498652935028,-0.331593096256256,0.401439845561981,-0.849004089832306,-0.343566507101059,0.255339086055756,-0.905746102333069,-0.338268905878067,0.130573078989983,-0.941716730594635,-0.310032486915588,0.337154716253281,-0.895414531230927,-0.290790945291519,0.0459299869835377,-0.92097407579422,-0.386907011270523,-0.00276464712806046,-0.95152872800827,-0.307547360658646,0.130573078989983,-0.941716730594635,-0.310032486915588,0.737393081188202,-0.601717948913574,-0.30689862370491,0.51316899061203,-0.742361664772034,-0.430762946605682,0.659812986850739,-0.703473508358002,-0.264143317937851,0.625092506408691,-0.604773819446564,-0.493465125560761,0.737393081188202,-0.601717948913574,-0.30689862370491,0.794824421405792,-0.418989628553391,-0.438978016376495,0.51316899061203,-0.742361664772034,-0.430762946605682,0.477037698030472,-0.810179829597473,-0.34065169095993,0.659812986850739,-0.703473508358002,-0.264143317937851,0.477037698030472,-0.810179829597473,-0.34065169095993,0.219324722886086,-0.887252628803253,-0.405807107686996,\r\n0.401439845561981,-0.849004089832306,-0.343566507101059,0.219324722886086,-0.887252628803253,-0.405807107686996,0.255339086055756,-0.905746102333069,-0.338268905878067,0.401439845561981,-0.849004089832306,-0.343566507101059,0.255339086055756,-0.905746102333069,-0.338268905878067,0.0459299869835377,-0.92097407579422,-0.386907011270523,0.130573078989983,-0.941716730594635,-0.310032486915588,0.51316899061203,-0.742361664772034,-0.430762946605682,0.737393081188202,-0.601717948913574,-0.30689862370491,0.625092506408691,-0.604773819446564,-0.493465125560761,0.51316899061203,-0.742361664772034,-0.430762946605682,0.27746257185936,-0.765577793121338,-0.580435156822205,0.477037698030472,-0.810179829597473,-0.34065169095993,0.219324722886086,-0.887252628803253,-0.405807107686996,0.477037698030472,-0.810179829597473,-0.34065169095993,0.27746257185936,-0.765577793121338,-0.580435156822205,0.219324722886086,-0.887252628803253,-0.405807107686996,0.0459299869835377,-0.92097407579422,-0.386907011270523,0.255339086055756,-0.905746102333069,-0.338268905878067,0.430375903844833,-0.529236197471619,-0.731221914291382,0.51316899061203,-0.742361664772034,-0.430762946605682,0.625092506408691,-0.604773819446564,-0.493465125560761,0.430375903844833,-0.529236197471619,-0.731221914291382,0.27746257185936,-0.765577793121338,-0.580435156822205,0.51316899061203,-0.742361664772034,-0.430762946605682,0.27746257185936,-0.765577793121338,-0.580435156822205,0.0722249075770378,-0.811546385288239,-0.579806745052338,0.219324722886086,-0.887252628803253,-0.405807107686996,0.219324722886086,-0.887252628803253,-0.405807107686996,0.0722249075770378,-0.811546385288239,-0.579806745052338,0.0459299869835377,-0.92097407579422,-0.386907011270523,0.430375903844833,-0.529236197471619,-0.731221914291382,0.201500952243805,-0.450871467590332,-0.869547069072723,0.27746257185936,-0.765577793121338,-0.580435156822205,0.27746257185936,-0.765577793121338,-0.580435156822205,0.130717068910599,-0.577823996543884,-0.805625438690186,0.0722249075770378,-0.811546385288239,-0.579806745052338,\r\n0.0722249075770378,-0.811546385288239,-0.579806745052338,-0.140051230788231,-0.826616525650024,-0.545060217380524,0.0459299869835377,-0.92097407579422,-0.386907011270523,0.130717068910599,-0.577823996543884,-0.805625438690186,0.27746257185936,-0.765577793121338,-0.580435156822205,0.201500952243805,-0.450871467590332,-0.869547069072723,0.130717068910599,-0.577823996543884,-0.805625438690186,-0.0873085409402847,-0.603740870952606,-0.792385101318359,0.0722249075770378,-0.811546385288239,-0.579806745052338,-0.102315485477448,-0.763163387775421,-0.638054072856903,-0.140051230788231,-0.826616525650024,-0.545060217380524,0.0722249075770378,-0.811546385288239,-0.579806745052338,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.102315485477448,-0.763163387775421,-0.638054072856903,0.0722249075770378,-0.811546385288239,-0.579806745052338,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.102315485477448,-0.763163387775421,-0.638054072856903,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.102315485477448,-0.763163387775421,-0.638054072856903,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.225220322608948,-0.723771572113037,-0.652250230312347,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.0873085409402847,-0.603740870952606,-0.792385101318359,-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.225220322608948,-0.723771572113037,-0.652250230312347,-0.2304697483778,-0.727735877037048,-0.645975232124329,-0.229749068617821,-0.540937960147858,-0.809074461460114,0.0325855948030949,-0.999174118041992,-0.024274880066514,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.0325855948030949,-0.999174118041992,-0.024274880066514,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0325855948030949,-0.999174118041992,-0.024274880066514,\r\n0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.00834598485380411,-0.99869179725647,-0.0504472404718399,0.0325855948030949,-0.999174118041992,-0.024274880066514,0.0237623490393162,-0.999600529670715,-0.0152969742193818,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.00834598485380411,-0.99869179725647,-0.0504472404718399,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.0213583074510098,-0.999124825000763,-0.0359630770981312,-0.0214167032390833,-0.999743640422821,-0.00734294438734651,0.0237623490393162,-0.999600529670715,-0.0152969742193818,0.0325855948030949,-0.999174118041992,-0.024274880066514,0.0237623490393162,-0.999600529670715,-0.0152969742193818,0.17652302980423,-0.983282566070557,0.0446636080741882,0.0645628049969673,-0.997673034667969,0.0219103507697582,-0.00964699033647776,-0.999828279018402,0.0158215891569853,0.0237623490393162,-0.999600529670715,-0.0152969742193818,-0.0214167032390833,-0.999743640422821,-0.00734294438734651,0.17652302980423,-0.983282566070557,0.0446636080741882,0.0237623490393162,-0.999600529670715,-0.0152969742193818,0.261515915393829,-0.964716076850891,0.0305331945419312,0.17652302980423,-0.983282566070557,0.0446636080741882,0.222896710038185,-0.962484061717987,0.154729798436165,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.222896710038185,-0.962484061717987,0.154729798436165,0.281492471694946,-0.927177309989929,0.247192621231079,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.506555259227753,-0.680231273174286,0.529798984527588,0.477687180042267,-0.735735952854156,0.480111837387085,0.443045437335968,-0.677261710166931,0.587390124797821,0.477687180042267,-0.735735952854156,0.480111837387085,0.358185887336731,-0.820785045623779,0.444988369941711,0.443045437335968,-0.677261710166931,0.587390124797821,0.261515915393829,-0.964716076850891,0.0305331945419312,0.0237623490393162,-0.999600529670715,-0.0152969742193818,-0.00964699033647776,-0.999828279018402,0.0158215891569853,0.261515915393829,-0.964716076850891,0.0305331945419312,0.553082168102264,-0.817172706127167,0.162261709570885,\r\n0.17652302980423,-0.983282566070557,0.0446636080741882,0.17652302980423,-0.983282566070557,0.0446636080741882,0.514186561107636,-0.823038041591644,0.241289347410202,0.222896710038185,-0.962484061717987,0.154729798436165,0.526773154735565,-0.762398719787598,0.375843077898026,0.281492471694946,-0.927177309989929,0.247192621231079,0.222896710038185,-0.962484061717987,0.154729798436165,0.378556281328201,-0.838217973709106,0.392537415027618,0.281492471694946,-0.927177309989929,0.247192621231079,0.503227114677429,-0.741738498210907,0.443380564451218,0.0184723176062107,-0.998772919178009,0.0459497682750225,-0.00795681495219469,-0.999954581260681,0.00523778097704053,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,0.358185887336731,-0.820785045623779,0.444988369941711,0.186102896928787,-0.949363052845001,0.253131210803986,0.22071173787117,-0.904506742954254,0.364902347326279,0.506555259227753,-0.680231273174286,0.529798984527588,0.378556281328201,-0.838217973709106,0.392537415027618,0.503227114677429,-0.741738498210907,0.443380564451218,0.506555259227753,-0.680231273174286,0.529798984527588,0.560725331306458,-0.68721616268158,0.461866736412048,0.477687180042267,-0.735735952854156,0.480111837387085,0.477687180042267,-0.735735952854156,0.480111837387085,0.298479378223419,-0.905757963657379,0.300852835178375,0.358185887336731,-0.820785045623779,0.444988369941711,0.261515915393829,-0.964716076850891,0.0305331945419312,0.628348112106323,-0.765280365943909,0.13973043859005,0.553082168102264,-0.817172706127167,0.162261709570885,0.553082168102264,-0.817172706127167,0.162261709570885,0.514186561107636,-0.823038041591644,0.241289347410202,0.17652302980423,-0.983282566070557,0.0446636080741882,0.514186561107636,-0.823038041591644,0.241289347410202,0.526773154735565,-0.762398719787598,0.375843077898026,0.222896710038185,-0.962484061717987,0.154729798436165,0.526773154735565,-0.762398719787598,0.375843077898026,0.503227114677429,-0.741738498210907,0.443380564451218,0.281492471694946,-0.927177309989929,0.247192621231079,0.0184723176062107,-0.998772919178009,0.0459497682750225,\r\n0.0785489827394485,-0.984790146350861,0.154978558421135,0.103029832243919,-0.985901594161987,0.13184380531311,-0.00795681495219469,-0.999954581260681,0.00523778097704053,0.0184723176062107,-0.998772919178009,0.0459497682750225,0.0645723938941956,-0.995055556297302,0.0754640251398087,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,-0.00795681495219469,-0.999954581260681,0.00523778097704053,0.0785489827394485,-0.984790146350861,0.154978558421135,0.22071173787117,-0.904506742954254,0.364902347326279,0.186102896928787,-0.949363052845001,0.253131210803986,0.298479378223419,-0.905757963657379,0.300852835178375,0.186102896928787,-0.949363052845001,0.253131210803986,0.358185887336731,-0.820785045623779,0.444988369941711,0.506555259227753,-0.680231273174286,0.529798984527588,0.503227114677429,-0.741738498210907,0.443380564451218,0.560725331306458,-0.68721616268158,0.461866736412048,0.477687180042267,-0.735735952854156,0.480111837387085,0.560725331306458,-0.68721616268158,0.461866736412048,0.420991092920303,-0.83425760269165,0.356062650680542,0.477687180042267,-0.735735952854156,0.480111837387085,0.420991092920303,-0.83425760269165,0.356062650680542,0.298479378223419,-0.905757963657379,0.300852835178375,0.720728397369385,-0.66414612531662,0.198646664619446,0.553082168102264,-0.817172706127167,0.162261709570885,0.628348112106323,-0.765280365943909,0.13973043859005,0.553082168102264,-0.817172706127167,0.162261709570885,0.699463605880737,-0.676317036151886,0.230967089533806,0.514186561107636,-0.823038041591644,0.241289347410202,0.514186561107636,-0.823038041591644,0.241289347410202,0.651782035827637,-0.67565530538559,0.344484835863113,0.526773154735565,-0.762398719787598,0.375843077898026,0.560725331306458,-0.68721616268158,0.461866736412048,0.503227114677429,-0.741738498210907,0.443380564451218,0.526773154735565,-0.762398719787598,0.375843077898026,0.0785489827394485,-0.984790146350861,0.154978558421135,0.186102896928787,-0.949363052845001,0.253131210803986,\r\n0.103029832243919,-0.985901594161987,0.13184380531311,0.0184723176062107,-0.998772919178009,0.0459497682750225,0.103029832243919,-0.985901594161987,0.13184380531311,0.0645723938941956,-0.995055556297302,0.0754640251398087,-0.00795681495219469,-0.999954581260681,0.00523778097704053,0.0645723938941956,-0.995055556297302,0.0754640251398087,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.00795681495219469,-0.999954581260681,0.00523778097704053,0.298479378223419,-0.905757963657379,0.300852835178375,0.103029832243919,-0.985901594161987,0.13184380531311,0.186102896928787,-0.949363052845001,0.253131210803986,0.51669704914093,-0.77440071105957,0.365140408277512,0.420991092920303,-0.83425760269165,0.356062650680542,0.560725331306458,-0.68721616268158,0.461866736412048,0.201500371098518,-0.960798799991608,0.190429106354713,0.298479378223419,-0.905757963657379,0.300852835178375,0.420991092920303,-0.83425760269165,0.356062650680542,0.720728397369385,-0.66414612531662,0.198646664619446,0.699463605880737,-0.676317036151886,0.230967089533806,0.553082168102264,-0.817172706127167,0.162261709570885,0.699463605880737,-0.676317036151886,0.230967089533806,0.684210777282715,-0.676223337650299,0.273088693618774,0.514186561107636,-0.823038041591644,0.241289347410202,0.514186561107636,-0.823038041591644,0.241289347410202,0.684210777282715,-0.676223337650299,0.273088693618774,0.651782035827637,-0.67565530538559,0.344484835863113,0.594227194786072,-0.733241021633148,0.330532103776932,0.526773154735565,-0.762398719787598,0.375843077898026,0.651782035827637,-0.67565530538559,0.344484835863113,0.560725331306458,-0.68721616268158,0.461866736412048,0.526773154735565,-0.762398719787598,0.375843077898026,0.51669704914093,-0.77440071105957,0.365140408277512,\r\n0.201500371098518,-0.960798799991608,0.190429106354713,0.0645723938941956,-0.995055556297302,0.0754640251398087,0.103029832243919,-0.985901594161987,0.13184380531311,0.0645723938941956,-0.995055556297302,0.0754640251398087,0.0720528215169907,-0.996809542179108,0.0343375690281391,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.00795681495219469,-0.999954581260681,0.00523778097704053,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.131664723157883,-0.940042853355408,-0.314616680145264,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,0.201500371098518,-0.960798799991608,0.190429106354713,0.103029832243919,-0.985901594161987,0.13184380531311,0.298479378223419,-0.905757963657379,0.300852835178375,0.51669704914093,-0.77440071105957,0.365140408277512,0.282773315906525,-0.933148562908173,0.221975058317184,0.420991092920303,-0.83425760269165,0.356062650680542,0.201500371098518,-0.960798799991608,0.190429106354713,0.420991092920303,-0.83425760269165,0.356062650680542,0.282773315906525,-0.933148562908173,0.221975058317184,0.659708321094513,-0.73577880859375,0.153017178177834,0.699463605880737,-0.676317036151886,0.230967089533806,0.720728397369385,-0.66414612531662,0.198646664619446,0.699463605880737,-0.676317036151886,0.230967089533806,0.664103031158447,-0.717064797878265,0.211624830961227,0.684210777282715,-0.676223337650299,0.273088693618774,0.651782035827637,-0.67565530538559,0.344484835863113,0.684210777282715,-0.676223337650299,0.273088693618774,0.65572851896286,-0.702626526355743,0.276289582252502,0.51669704914093,-0.77440071105957,0.365140408277512,0.526773154735565,-0.762398719787598,0.375843077898026,0.594227194786072,-0.733241021633148,0.330532103776932,0.65572851896286,-0.702626526355743,0.276289582252502,0.594227194786072,-0.733241021633148,0.330532103776932,0.651782035827637,-0.67565530538559,0.344484835863113,0.201500371098518,-0.960798799991608,0.190429106354713,\r\n0.282773315906525,-0.933148562908173,0.221975058317184,0.0645723938941956,-0.995055556297302,0.0754640251398087,0.216813117265701,-0.968923032283783,0.119080409407616,0.0720528215169907,-0.996809542179108,0.0343375690281391,0.0645723938941956,-0.995055556297302,0.0754640251398087,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,0.0720528215169907,-0.996809542179108,0.0343375690281391,0.0380912758409977,-0.999173641204834,0.0141795640811324,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.131664723157883,-0.940042853355408,-0.314616680145264,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.131664723157883,-0.940042853355408,-0.314616680145264,0.282773315906525,-0.933148562908173,0.221975058317184,0.51669704914093,-0.77440071105957,0.365140408277512,0.407590389251709,-0.881129920482636,0.239749416708946,0.664103031158447,-0.717064797878265,0.211624830961227,0.699463605880737,-0.676317036151886,0.230967089533806,0.659708321094513,-0.73577880859375,0.153017178177834,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.659708321094513,-0.73577880859375,0.153017178177834,0.720728397369385,-0.66414612531662,0.198646664619446,0.664103031158447,-0.717064797878265,0.211624830961227,0.65572851896286,-0.702626526355743,0.276289582252502,0.684210777282715,-0.676223337650299,0.273088693618774,0.51669704914093,-0.77440071105957,0.365140408277512,0.594227194786072,-0.733241021633148,0.330532103776932,0.407590389251709,-0.881129920482636,0.239749416708946,0.65572851896286,-0.702626526355743,0.276289582252502,0.47113174200058,-0.863150894641876,0.18167370557785,0.594227194786072,-0.733241021633148,0.330532103776932,0.216813117265701,-0.968923032283783,0.119080409407616,0.0645723938941956,-0.995055556297302,0.0754640251398087,\r\n0.282773315906525,-0.933148562908173,0.221975058317184,0.199485123157501,-0.978961527347565,0.0428934395313263,0.0720528215169907,-0.996809542179108,0.0343375690281391,0.216813117265701,-0.968923032283783,0.119080409407616,0.0380912758409977,-0.999173641204834,0.0141795640811324,0.0720528215169907,-0.996809542179108,0.0343375690281391,0.064954400062561,-0.997764527797699,0.0157096292823553,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,0.0380912758409977,-0.999173641204834,0.0141795640811324,-0.105329997837543,-0.994110465049744,-0.0254939943552017,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.302890956401825,-0.910233795642853,-0.282367438077927,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.0874486342072487,-0.991664052009583,-0.0946308895945549,-0.302890956401825,-0.910233795642853,-0.282367438077927,0.282773315906525,-0.933148562908173,0.221975058317184,0.407590389251709,-0.881129920482636,0.239749416708946,0.216813117265701,-0.968923032283783,0.119080409407616,0.664103031158447,-0.717064797878265,0.211624830961227,0.659708321094513,-0.73577880859375,0.153017178177834,0.467812448740005,-0.87608939409256,0.116699442267418,0.659708321094513,-0.73577880859375,0.153017178177834,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.418023496866226,-0.905058860778809,0.0782601684331894,0.47113174200058,-0.863150894641876,0.18167370557785,0.65572851896286,-0.702626526355743,0.276289582252502,0.664103031158447,-0.717064797878265,0.211624830961227,0.407590389251709,-0.881129920482636,0.239749416708946,0.594227194786072,-0.733241021633148,0.330532103776932,0.47113174200058,-0.863150894641876,0.18167370557785,0.199485123157501,-0.978961527347565,0.0428934395313263,0.064954400062561,-0.997764527797699,0.0157096292823553,0.0720528215169907,-0.996809542179108,0.0343375690281391,\r\n0.199485123157501,-0.978961527347565,0.0428934395313263,0.216813117265701,-0.968923032283783,0.119080409407616,0.47113174200058,-0.863150894641876,0.18167370557785,0.0380912758409977,-0.999173641204834,0.0141795640811324,0.064954400062561,-0.997764527797699,0.0157096292823553,0.0301470663398504,-0.999533355236053,0.0049044699408114,-0.105329997837543,-0.994110465049744,-0.0254939943552017,0.0380912758409977,-0.999173641204834,0.0141795640811324,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.105329997837543,-0.994110465049744,-0.0254939943552017,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.0185587853193283,-0.999677240848541,-0.0173397772014141,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.302890956401825,-0.910233795642853,-0.282367438077927,-0.422091066837311,-0.666740715503693,-0.614244043827057,-0.302890956401825,-0.910233795642853,-0.282367438077927,-0.519978702068329,-0.485186666250229,-0.703004896640778,0.407590389251709,-0.881129920482636,0.239749416708946,0.47113174200058,-0.863150894641876,0.18167370557785,0.216813117265701,-0.968923032283783,0.119080409407616,0.467812448740005,-0.87608939409256,0.116699442267418,0.659708321094513,-0.73577880859375,0.153017178177834,0.418023496866226,-0.905058860778809,0.0782601684331894,0.47113174200058,-0.863150894641876,0.18167370557785,0.664103031158447,-0.717064797878265,0.211624830961227,0.467812448740005,-0.87608939409256,0.116699442267418,0.418023496866226,-0.905058860778809,0.0782601684331894,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.273312568664551,-0.961752593517303,0.0182233769446611,0.0705177187919617,-0.997507035732269,0.00261467695236206,\r\n0.064954400062561,-0.997764527797699,0.0157096292823553,0.199485123157501,-0.978961527347565,0.0428934395313263,0.47113174200058,-0.863150894641876,0.18167370557785,0.467812448740005,-0.87608939409256,0.116699442267418,0.199485123157501,-0.978961527347565,0.0428934395313263,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0301470663398504,-0.999533355236053,0.0049044699408114,0.064954400062561,-0.997764527797699,0.0157096292823553,0.0380912758409977,-0.999173641204834,0.0141795640811324,0.0301470663398504,-0.999533355236053,0.0049044699408114,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.105329997837543,-0.994110465049744,-0.0254939943552017,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.105329997837543,-0.994110465049744,-0.0254939943552017,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.340051501989365,-0.877816677093506,-0.337346583604813,-0.519978702068329,-0.485186666250229,-0.703004896640778,-0.158579036593437,-0.969911634922028,-0.184726685285568,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.757820844650269,-0.561291396617889,-0.332655042409897,0.467812448740005,-0.87608939409256,0.116699442267418,0.418023496866226,-0.905058860778809,0.0782601684331894,0.199485123157501,-0.978961527347565,0.0428934395313263,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.273312568664551,-0.961752593517303,0.0182233769446611,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.418023496866226,-0.905058860778809,0.0782601684331894,0.273312568664551,-0.961752593517303,0.0182233769446611,0.199485123157501,-0.978961527347565,0.0428934395313263,0.199485123157501,-0.978961527347565,0.0428934395313263,0.273312568664551,-0.961752593517303,0.0182233769446611,\r\n0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0205837432295084,-0.999727725982666,0.0109893605113029,0.0301470663398504,-0.999533355236053,0.0049044699408114,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0301470663398504,-0.999533355236053,0.0049044699408114,0.0117978332564235,-0.999849021434784,-0.0127572864294052,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.759353220462799,-0.544919013977051,-0.355592161417007,-0.301949232816696,-0.94214391708374,-0.145572647452354,-0.757820844650269,-0.561291396617889,-0.332655042409897,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.815312206745148,-0.520652890205383,-0.253350436687469,0.145433604717255,-0.989260315895081,-0.0145936803892255,0.0396719351410866,-0.999189078807831,-0.00687075406312943,0.0813832879066467,-0.996025145053864,-0.0362018868327141,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0396719351410866,-0.999189078807831,-0.00687075406312943,-0.256701976060867,-0.961503148078918,0.0980595126748085,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.273312568664551,-0.961752593517303,0.0182233769446611,0.0258039105683565,-0.99410617351532,-0.105294965207577,-0.143731892108917,-0.980844557285309,-0.131472632288933,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.423369884490967,-0.904240190982819,-0.0557429566979408,0.0301470663398504,-0.999533355236053,0.0049044699408114,0.0205837432295084,-0.999727725982666,0.0109893605113029,0.0117978332564235,-0.999849021434784,-0.0127572864294052,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.022700471803546,-0.999664962291718,-0.0124322464689612,\r\n0.0205837432295084,-0.999727725982666,0.0109893605113029,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,0.0117978332564235,-0.999849021434784,-0.0127572864294052,-0.158319354057312,-0.976025342941284,-0.149363309144974,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.0641348212957382,-0.997294068336487,-0.0359327346086502,-0.158319354057312,-0.976025342941284,-0.149363309144974,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.872026205062866,-0.385271638631821,-0.301887333393097,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.414691954851151,-0.900956988334656,-0.127698928117752,-0.850956976413727,-0.475750148296356,-0.222562059760094,-0.815312206745148,-0.520652890205383,-0.253350436687469,0.0813832879066467,-0.996025145053864,-0.0362018868327141,0.0396719351410866,-0.999189078807831,-0.00687075406312943,0.0574871338903904,-0.997099578380585,-0.0498750805854797,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0574871338903904,-0.997099578380585,-0.0498750805854797,0.0396719351410866,-0.999189078807831,-0.00687075406312943,-0.256701976060867,-0.961503148078918,0.0980595126748085,-0.324635088443756,-0.903090238571167,0.281140446662903,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.0185582302510738,-0.999278724193573,-0.033129058778286,-0.143731892108917,-0.980844557285309,-0.131472632288933,0.00543753150850534,-0.999984800815582,-0.000869518029503524,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.0070286151021719,-0.999913513660431,0.0111023969948292,0.0117978332564235,-0.999849021434784,-0.0127572864294052,0.0205837432295084,-0.999727725982666,0.0109893605113029,0.0705177187919617,-0.997507035732269,0.00261467695236206,0.0185582302510738,-0.999278724193573,-0.033129058778286,\r\n0.022700471803546,-0.999664962291718,-0.0124322464689612,0.022700471803546,-0.999664962291718,-0.0124322464689612,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0205837432295084,-0.999727725982666,0.0109893605113029,-0.158319354057312,-0.976025342941284,-0.149363309144974,0.0117978332564235,-0.999849021434784,-0.0127572864294052,-0.112560421228409,-0.969344735145569,-0.218405365943909,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.158319354057312,-0.976025342941284,-0.149363309144974,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.441953808069229,-0.865963041782379,-0.234061315655708,-0.505331337451935,-0.843263745307922,-0.183156698942184,-0.857192933559418,-0.349070131778717,-0.378642529249191,-0.872026205062866,-0.385271638631821,-0.301887333393097,-0.624052226543427,-0.745389580726624,0.234420627355576,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.256701976060867,-0.961503148078918,0.0980595126748085,0.0574871338903904,-0.997099578380585,-0.0498750805854797,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0970274358987808,-0.993980407714844,-0.0508773103356361,0.00921853724867105,-0.999816596508026,0.016783595085144,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.103293314576149,-0.988791763782501,0.107801601290703,0.00543753150850534,-0.999984800815582,-0.000869518029503524,0.0185582302510738,-0.999278724193573,-0.033129058778286,0.0258039105683565,-0.99410617351532,-0.105294965207577,0.167200908064842,-0.982347190380096,-0.0838912129402161,0.00543753150850534,-0.999984800815582,-0.000869518029503524,-0.143731892108917,-0.980844557285309,-0.131472632288933,0.0117978332564235,-0.999849021434784,-0.0127572864294052,0.0070286151021719,-0.999913513660431,0.0111023969948292,-0.0239174626767635,-0.997368335723877,-0.068442165851593,0.0070286151021719,-0.999913513660431,0.0111023969948292,0.0205837432295084,-0.999727725982666,0.0109893605113029,\r\n0.0106770005077124,-0.999880731105804,0.0111527144908905,0.022700471803546,-0.999664962291718,-0.0124322464689612,0.0185582302510738,-0.999278724193573,-0.033129058778286,0.00792443193495274,-0.999579131603241,-0.0279037896543741,0.022700471803546,-0.999664962291718,-0.0124322464689612,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0106770005077124,-0.999880731105804,0.0111527144908905,0.0205837432295084,-0.999727725982666,0.0109893605113029,-0.0239174626767635,-0.997368335723877,-0.068442165851593,-0.112560421228409,-0.969344735145569,-0.218405365943909,0.0117978332564235,-0.999849021434784,-0.0127572864294052,-0.158319354057312,-0.976025342941284,-0.149363309144974,-0.112560421228409,-0.969344735145569,-0.218405365943909,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.624052226543427,-0.745389580726624,0.234420627355576,-0.596134960651398,-0.61301189661026,0.518497169017792,0.0970274358987808,-0.993980407714844,-0.0508773103356361,0.00921853724867105,-0.999816596508026,0.016783595085144,0.0744598880410194,-0.996691286563873,-0.0325895249843597,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.24559785425663,-0.939275622367859,0.239672631025314,-0.103293314576149,-0.988791763782501,0.107801601290703,-0.00662468839436769,-0.999810457229614,0.0183049384504557,0.00921853724867105,-0.999816596508026,0.016783595085144,-0.103293314576149,-0.988791763782501,0.107801601290703,0.00543753150850534,-0.999984800815582,-0.000869518029503524,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.0185582302510738,-0.999278724193573,-0.033129058778286,0.00543753150850534,-0.999984800815582,-0.000869518029503524,0.167200908064842,-0.982347190380096,-0.0838912129402161,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.0070286151021719,-0.999913513660431,0.0111023969948292,0.0106770005077124,-0.999880731105804,0.0111527144908905,\r\n-0.0239174626767635,-0.997368335723877,-0.068442165851593,0.00792443193495274,-0.999579131603241,-0.0279037896543741,0.0185582302510738,-0.999278724193573,-0.033129058778286,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.022700471803546,-0.999664962291718,-0.0124322464689612,0.00792443193495274,-0.999579131603241,-0.0279037896543741,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0197228398174047,-0.999779582023621,-0.00719118723645806,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0106770005077124,-0.999880731105804,0.0111527144908905,-0.0239174626767635,-0.997368335723877,-0.068442165851593,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.112560421228409,-0.969344735145569,-0.218405365943909,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.112560421228409,-0.969344735145569,-0.218405365943909,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.740835309028625,-0.562863647937775,0.366534262895584,-0.596134960651398,-0.61301189661026,0.518497169017792,-0.624052226543427,-0.745389580726624,0.234420627355576,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.596134960651398,-0.61301189661026,0.518497169017792,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.00662468839436769,-0.999810457229614,0.0183049384504557,0.0744598880410194,-0.996691286563873,-0.0325895249843597,0.00921853724867105,-0.999816596508026,0.016783595085144,-0.324635088443756,-0.903090238571167,0.281140446662903,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.24559785425663,-0.939275622367859,0.239672631025314,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.103293314576149,-0.988791763782501,0.107801601290703,-0.24559785425663,-0.939275622367859,0.239672631025314,0.0185582302510738,-0.999278724193573,-0.033129058778286,0.0379508323967457,-0.997894108295441,-0.052601907402277,\r\n-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.167200908064842,-0.982347190380096,-0.0838912129402161,0.0106770005077124,-0.999880731105804,0.0111527144908905,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0239174626767635,-0.997368335723877,-0.068442165851593,0.00792443193495274,-0.999579131603241,-0.0279037896543741,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0120463138446212,-0.994919836521149,0.0999454781413078,0.0120463138446212,-0.994919836521149,0.0999454781413078,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.00792443193495274,-0.999579131603241,-0.0279037896543741,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0152599131688476,-0.999871850013733,0.00483281305059791,0.0106770005077124,-0.999880731105804,0.0111527144908905,-0.0239174626767635,-0.997368335723877,-0.068442165851593,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.762374818325043,-0.28863787651062,-0.579199969768524,-0.609341382980347,-0.47517591714859,0.634752631187439,-0.596134960651398,-0.61301189661026,0.518497169017792,-0.740835309028625,-0.562863647937775,0.366534262895584,-0.564037382602692,-0.559655129909515,0.607163667678833,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.596134960651398,-0.61301189661026,0.518497169017792,0.0515575297176838,-0.998584032058716,-0.0130989765748382,0.0744598880410194,-0.996691286563873,-0.0325895249843597,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.24559785425663,-0.939275622367859,0.239672631025314,\r\n-0.492899596691132,-0.724266409873962,0.482170104980469,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.24559785425663,-0.939275622367859,0.239672631025314,0.0182668808847666,-0.999663770198822,-0.0184002723544836,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.0182668808847666,-0.999663770198822,-0.0184002723544836,0.0379508323967457,-0.997894108295441,-0.052601907402277,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.187506124377251,-0.966835677623749,-0.173407271504402,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.167200908064842,-0.982347190380096,-0.0838912129402161,-0.0239174626767635,-0.997368335723877,-0.068442165851593,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.0364856868982315,-0.991257429122925,0.126796767115593,0.0120463138446212,-0.994919836521149,0.0999454781413078,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0120463138446212,-0.994919836521149,0.0999454781413078,0.0638913512229919,-0.957373380661011,0.281698346138,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.103062771260738,-0.971572160720825,0.213132604956627,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.00099969410803169,-0.999982357025146,0.00584715139120817,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.0239174626767635,-0.997368335723877,-0.068442165851593,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.100448742508888,-0.970690488815308,-0.218334451317787,\r\n-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.283896058797836,0.345176696777344,-0.894570231437683,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.564037382602692,-0.559655129909515,0.607163667678833,-0.596134960651398,-0.61301189661026,0.518497169017792,-0.609341382980347,-0.47517591714859,0.634752631187439,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.564037382602692,-0.559655129909515,0.607163667678833,0.0195590686053038,-0.999681770801544,-0.0159299150109291,0.0515575297176838,-0.998584032058716,-0.0130989765748382,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.24559785425663,-0.939275622367859,0.239672631025314,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.492899596691132,-0.724266409873962,0.482170104980469,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.00174113141838461,-0.999892354011536,-0.0145648224279284,0.0182668808847666,-0.999663770198822,-0.0184002723544836,-0.0364856868982315,-0.991257429122925,0.126796767115593,0.0255122166126966,-0.996570587158203,-0.0787151306867599,0.0182668808847666,-0.999663770198822,-0.0184002723544836,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.0247650612145662,-0.989644885063171,-0.141384318470955,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.187506124377251,-0.966835677623749,-0.173407271504402,0.187506124377251,-0.966835677623749,-0.173407271504402,0.167200908064842,-0.982347190380096,-0.0838912129402161,0.360368877649307,-0.891619205474854,-0.274133771657944,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,\r\n0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0364856868982315,-0.991257429122925,0.126796767115593,-0.0108905108645558,-0.907303869724274,0.420334309339523,0.0120463138446212,-0.994919836521149,0.0999454781413078,-0.0108905108645558,-0.907303869724274,0.420334309339523,0.0638913512229919,-0.957373380661011,0.281698346138,0.0120463138446212,-0.994919836521149,0.0999454781413078,0.0638913512229919,-0.957373380661011,0.281698346138,0.103062771260738,-0.971572160720825,0.213132604956627,0.0320290103554726,-0.999284207820892,0.0201275795698166,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.103062771260738,-0.971572160720825,0.213132604956627,0.208469018340111,-0.915742695331573,0.343447029590607,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0717467367649078,-0.986455321311951,0.147506892681122,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.00099969410803169,-0.999982357025146,0.00584715139120817,0.0046031572856009,-0.999982535839081,-0.00370260397903621,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.0152599131688476,-0.999871850013733,0.00483281305059791,0.00099969410803169,-0.999982357025146,0.00584715139120817,0.00809676013886929,-0.999921321868896,0.00957380421459675,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.283030152320862,-0.657633244991302,-0.698149144649506,-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.535942494869232,-0.567492663860321,0.625074028968811,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.564037382602692,-0.559655129909515,0.607163667678833,0.0195590686053038,-0.999681770801544,-0.0159299150109291,-0.00662468839436769,-0.999810457229614,0.0183049384504557,-0.0154706742614508,-0.99903804063797,0.041030902415514,\r\n-0.15698653459549,-0.943714559078217,0.291132211685181,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.321652829647064,-0.762850761413574,0.560890376567841,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.0950900167226791,-0.981980979442596,0.163313075900078,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.0364856868982315,-0.991257429122925,0.126796767115593,0.0182668808847666,-0.999663770198822,-0.0184002723544836,0.0208678133785725,-0.999375998973846,-0.0284956395626068,0.0182668808847666,-0.999663770198822,-0.0184002723544836,0.0255122166126966,-0.996570587158203,-0.0787151306867599,0.0255122166126966,-0.996570587158203,-0.0787151306867599,0.0544217005372047,-0.994212985038757,-0.0926216915249825,0.0247650612145662,-0.989644885063171,-0.141384318470955,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.0108905108645558,-0.907303869724274,0.420334309339523,-0.0364856868982315,-0.991257429122925,0.126796767115593,-0.151262789964676,-0.899165213108063,0.41063529253006,0.0638913512229919,-0.957373380661011,0.281698346138,-0.0108905108645558,-0.907303869724274,0.420334309339523,0.0782674178481102,-0.789858996868134,0.60827362537384,0.0638913512229919,-0.957373380661011,0.281698346138,0.215890824794769,-0.835945904254913,0.504564642906189,0.103062771260738,-0.971572160720825,0.213132604956627,0.208469018340111,-0.915742695331573,0.343447029590607,0.103062771260738,-0.971572160720825,0.213132604956627,0.215890824794769,-0.835945904254913,0.504564642906189,0.208469018340111,-0.915742695331573,0.343447029590607,\r\n0.158439561724663,-0.954002678394318,0.254510790109634,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.0461948923766613,-0.994758665561676,0.0912202447652817,0.158439561724663,-0.954002678394318,0.254510790109634,0.0717467367649078,-0.986455321311951,0.147506892681122,0.0717467367649078,-0.986455321311951,0.147506892681122,0.209734112024307,-0.973330497741699,0.0929472371935844,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.00809676013886929,-0.999921321868896,0.00957380421459675,0.00099969410803169,-0.999982357025146,0.00584715139120817,0.0152599131688476,-0.999871850013733,0.00483281305059791,0.00809676013886929,-0.999921321868896,0.00957380421459675,-0.00945893209427595,-0.999915957450867,0.00886476878076792,-0.100448742508888,-0.970690488815308,-0.218334451317787,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.0141295595094562,-0.999145686626434,-0.0388354882597923,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.164933785796165,0.0953185632824898,-0.981687903404236,-0.26288640499115,-0.545276522636414,-0.795967400074005,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.448243856430054,-0.567173361778259,0.690935373306274,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.535942494869232,-0.567492663860321,0.625074028968811,-0.0154706742614508,-0.99903804063797,0.041030902415514,0.0208678133785725,-0.999375998973846,-0.0284956395626068,0.0195590686053038,-0.999681770801544,-0.0159299150109291,-0.313883751630783,-0.843379378318787,0.436105698347092,-0.321652829647064,-0.762850761413574,0.560890376567841,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.382616966962814,-0.604591131210327,0.698622703552246,\r\n-0.321652829647064,-0.762850761413574,0.560890376567841,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.125556111335754,-0.953821122646332,0.272874981164932,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.0154706742614508,-0.99903804063797,0.041030902415514,-0.125556111335754,-0.953821122646332,0.272874981164932,-0.0364856868982315,-0.991257429122925,0.126796767115593,0.0208678133785725,-0.999375998973846,-0.0284956395626068,-0.0154706742614508,-0.99903804063797,0.041030902415514,0.0182668808847666,-0.999663770198822,-0.0184002723544836,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,-0.00945893209427595,-0.999915957450867,0.00886476878076792,-0.0330257378518581,-0.99325704574585,-0.111128710210323,0.0152599131688476,-0.999871850013733,0.00483281305059791,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.00481037003919482,-0.997470438480377,-0.0709194615483284,-0.151262789964676,-0.899165213108063,0.41063529253006,-0.0364856868982315,-0.991257429122925,0.126796767115593,-0.125556111335754,-0.953821122646332,0.272874981164932,-0.0108905108645558,-0.907303869724274,0.420334309339523,-0.151262789964676,-0.899165213108063,0.41063529253006,-0.198546290397644,-0.65089362859726,0.732746005058289,0.0277002118527889,-0.629705190658569,0.776340067386627,0.0782674178481102,-0.789858996868134,0.60827362537384,-0.0108905108645558,-0.907303869724274,0.420334309339523,0.0782674178481102,-0.789858996868134,0.60827362537384,0.215890824794769,-0.835945904254913,0.504564642906189,0.0638913512229919,-0.957373380661011,0.281698346138,0.208469018340111,-0.915742695331573,0.343447029590607,0.215890824794769,-0.835945904254913,0.504564642906189,0.360583037137985,-0.750744462013245,0.553500294685364,0.208469018340111,-0.915742695331573,0.343447029590607,0.352590829133987,-0.818412184715271,0.453741192817688,\r\n0.158439561724663,-0.954002678394318,0.254510790109634,0.0717467367649078,-0.986455321311951,0.147506892681122,0.158439561724663,-0.954002678394318,0.254510790109634,0.268889576196671,-0.915729820728302,0.298558473587036,0.268889576196671,-0.915729820728302,0.298558473587036,0.209734112024307,-0.973330497741699,0.0929472371935844,0.0717467367649078,-0.986455321311951,0.147506892681122,0.123514726758003,-0.991855502128601,0.0310923922806978,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.209734112024307,-0.973330497741699,0.0929472371935844,0.00809676013886929,-0.999921321868896,0.00957380421459675,0.0243938788771629,-0.999370038509369,0.0257753897458315,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,-0.00945893209427595,-0.999915957450867,0.00886476878076792,0.00809676013886929,-0.999921321868896,0.00957380421459675,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.0680006965994835,-0.985635340213776,-0.154592305421829,-0.213910907506943,-0.807042419910431,-0.550385773181915,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.382616966962814,-0.604591131210327,0.698622703552246,-0.476704925298691,-0.621283531188965,0.621899545192719,-0.448243856430054,-0.567173361778259,0.690935373306274,-0.321652829647064,-0.762850761413574,0.560890376567841,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.321652829647064,-0.762850761413574,0.560890376567841,-0.382616966962814,-0.604591131210327,0.698622703552246,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.15698653459549,-0.943714559078217,0.291132211685181,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.125556111335754,-0.953821122646332,0.272874981164932,\r\n-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.0164025612175465,-0.988425672054291,-0.15081612765789,-0.00945893209427595,-0.999915957450867,0.00886476878076792,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.151262789964676,-0.899165213108063,0.41063529253006,-0.125556111335754,-0.953821122646332,0.272874981164932,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.198546290397644,-0.65089362859726,0.732746005058289,-0.151262789964676,-0.899165213108063,0.41063529253006,0.0277002118527889,-0.629705190658569,0.776340067386627,-0.0108905108645558,-0.907303869724274,0.420334309339523,-0.198546290397644,-0.65089362859726,0.732746005058289,0.0277002118527889,-0.629705190658569,0.776340067386627,0.252152025699615,-0.620310604572296,0.742720663547516,0.0782674178481102,-0.789858996868134,0.60827362537384,0.0782674178481102,-0.789858996868134,0.60827362537384,0.252152025699615,-0.620310604572296,0.742720663547516,0.215890824794769,-0.835945904254913,0.504564642906189,0.252152025699615,-0.620310604572296,0.742720663547516,0.360583037137985,-0.750744462013245,0.553500294685364,0.215890824794769,-0.835945904254913,0.504564642906189,0.352590829133987,-0.818412184715271,0.453741192817688,0.208469018340111,-0.915742695331573,0.343447029590607,0.360583037137985,-0.750744462013245,0.553500294685364,0.268889576196671,-0.915729820728302,0.298558473587036,0.158439561724663,-0.954002678394318,0.254510790109634,0.352590829133987,-0.818412184715271,0.453741192817688,0.209734112024307,-0.973330497741699,0.0929472371935844,0.268889576196671,-0.915729820728302,0.298558473587036,0.380803108215332,-0.913941204547882,0.140357926487923,0.0313560627400875,-0.999453067779541,0.0105046667158604,\r\n0.0243938788771629,-0.999370038509369,0.0257753897458315,0.123514726758003,-0.991855502128601,0.0310923922806978,0.209734112024307,-0.973330497741699,0.0929472371935844,0.0814635008573532,-0.995212972164154,-0.0539885759353638,0.123514726758003,-0.991855502128601,0.0310923922806978,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,0.0243938788771629,-0.999370038509369,0.0257753897458315,0.0313560627400875,-0.999453067779541,0.0105046667158604,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,-0.0182609539479017,-0.999699890613556,0.0163262784481049,0.00809676013886929,-0.999921321868896,0.00957380421459675,0.0110649652779102,-0.999915599822998,0.00680179335176945,0.00809676013886929,-0.999921321868896,0.00957380421459675,-0.0182609539479017,-0.999699890613556,0.0163262784481049,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.00945893209427595,-0.999915957450867,0.00886476878076792,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.193061023950577,-0.108744323253632,-0.975142061710358,-0.337703794240952,-0.597953677177429,0.726916372776031,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.382616966962814,-0.604591131210327,0.698622703552246,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.0330257378518581,-0.99325704574585,-0.111128710210323,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.316446661949158,-0.579081535339355,0.75134938955307,-0.198546290397644,-0.65089362859726,0.732746005058289,0.0277002118527889,-0.629705190658569,0.776340067386627,\r\n-0.198546290397644,-0.65089362859726,0.732746005058289,-0.0768568888306618,-0.507230520248413,0.858376443386078,0.252152025699615,-0.620310604572296,0.742720663547516,0.0277002118527889,-0.629705190658569,0.776340067386627,0.130760967731476,-0.46478083729744,0.875716984272003,0.252152025699615,-0.620310604572296,0.742720663547516,0.46146097779274,-0.694403886795044,0.552138388156891,0.360583037137985,-0.750744462013245,0.553500294685364,0.352590829133987,-0.818412184715271,0.453741192817688,0.360583037137985,-0.750744462013245,0.553500294685364,0.46146097779274,-0.694403886795044,0.552138388156891,0.268889576196671,-0.915729820728302,0.298558473587036,0.352590829133987,-0.818412184715271,0.453741192817688,0.46234068274498,-0.82816344499588,0.316837847232819,0.268889576196671,-0.915729820728302,0.298558473587036,0.46234068274498,-0.82816344499588,0.316837847232819,0.380803108215332,-0.913941204547882,0.140357926487923,0.380803108215332,-0.913941204547882,0.140357926487923,0.326528966426849,-0.945164322853088,-0.00657406682148576,0.209734112024307,-0.973330497741699,0.0929472371935844,0.123514726758003,-0.991855502128601,0.0310923922806978,-0.15165276825428,-0.987780213356018,-0.035939559340477,0.0313560627400875,-0.999453067779541,0.0105046667158604,0.209734112024307,-0.973330497741699,0.0929472371935844,0.326528966426849,-0.945164322853088,-0.00657406682148576,0.0814635008573532,-0.995212972164154,-0.0539885759353638,0.123514726758003,-0.991855502128601,0.0310923922806978,0.0814635008573532,-0.995212972164154,-0.0539885759353638,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.0250545646995306,-0.999638736248016,0.00972420442849398,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,0.0313560627400875,-0.999453067779541,0.0105046667158604,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0182609539479017,-0.999699890613556,0.0163262784481049,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.0182609539479017,-0.999699890613556,0.0163262784481049,\r\n-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.039919413626194,-0.987488985061646,-0.15255044400692,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.107184141874313,-0.752862691879272,-0.649391293525696,-0.337703794240952,-0.597953677177429,0.726916372776031,-0.316446661949158,-0.579081535339355,0.75134938955307,-0.272326976060867,-0.746882915496826,0.606633126735687,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.156362503767014,-0.890054225921631,-0.428198665380478,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.279736548662186,-0.562717914581299,0.777879059314728,-0.198546290397644,-0.65089362859726,0.732746005058289,-0.316446661949158,-0.579081535339355,0.75134938955307,-0.0768568888306618,-0.507230520248413,0.858376443386078,-0.198546290397644,-0.65089362859726,0.732746005058289,-0.181262701749802,-0.53343665599823,0.826189458370209,0.130760967731476,-0.46478083729744,0.875716984272003,0.0277002118527889,-0.629705190658569,0.776340067386627,-0.0768568888306618,-0.507230520248413,0.858376443386078,0.46234068274498,-0.82816344499588,0.316837847232819,0.352590829133987,-0.818412184715271,0.453741192817688,0.46146097779274,-0.694403886795044,0.552138388156891,0.326528966426849,-0.945164322853088,-0.00657406682148576,0.380803108215332,-0.913941204547882,0.140357926487923,0.46234068274498,-0.82816344499588,0.316837847232819,-0.0250545646995306,-0.999638736248016,0.00972420442849398,0.0313560627400875,-0.999453067779541,0.0105046667158604,-0.15165276825428,-0.987780213356018,-0.035939559340477,\r\n-0.29163521528244,-0.948597848415375,-0.122926779091358,0.0814635008573532,-0.995212972164154,-0.0539885759353638,0.326528966426849,-0.945164322853088,-0.00657406682148576,-0.29163521528244,-0.948597848415375,-0.122926779091358,-0.15165276825428,-0.987780213356018,-0.035939559340477,0.0814635008573532,-0.995212972164154,-0.0539885759353638,-0.0125490864738822,-0.999921202659607,-0.000201455899514258,-0.0250545646995306,-0.999638736248016,0.00972420442849398,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0182609539479017,-0.999699890613556,0.0163262784481049,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.0182609539479017,-0.999699890613556,0.0163262784481049,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,0.0110649652779102,-0.999915599822998,0.00680179335176945,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.230264604091644,-0.0299121607095003,-0.972668170928955,-0.333045184612274,-0.273923218250275,-0.902245461940765,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.039919413626194,-0.987488985061646,-0.15255044400692,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.237797990441322,-0.749597489833832,-0.617701828479767,-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.349861145019531,0.0458319336175919,-0.935679733753204,\r\n-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.356453716754913,0.22632072865963,-0.906487464904785,-0.382926523685455,-0.282395780086517,-0.8795565366745,-0.181262701749802,-0.53343665599823,0.826189458370209,-0.198546290397644,-0.65089362859726,0.732746005058289,-0.279736548662186,-0.562717914581299,0.777879059314728,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.0250545646995306,-0.999638736248016,0.00972420442849398,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.414771229028702,-0.909308731555939,-0.0335014685988426,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.29163521528244,-0.948597848415375,-0.122926779091358,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0250545646995306,-0.999638736248016,0.00972420442849398,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.0182609539479017,-0.999699890613556,0.0163262784481049,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.331666141748428,-0.144691586494446,-0.932234823703766,\r\n-0.22522446513176,-0.614644050598145,-0.755967259407043,-0.331666141748428,-0.144691586494446,-0.932234823703766,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.16237960755825,-0.986423552036285,-0.024523077532649,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.16237960755825,-0.986423552036285,-0.024523077532649,-0.15165276825428,-0.987780213356018,-0.035939559340477,-0.414771229028702,-0.909308731555939,-0.0335014685988426,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.0480360724031925,-0.9986452460289,0.0200027674436569,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0366472229361534,-0.998945415019989,0.0276579931378365,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.0040144850499928,-0.999717235565186,0.0234372224658728,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.0210446119308472,-0.996717035770416,-0.0781806707382202,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.348634332418442,-0.17803680896759,-0.9201939702034,\r\n-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.00985341146588326,-0.999916791915894,-0.00831819511950016,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.331666141748428,-0.144691586494446,-0.932234823703766,-0.183242186903954,-0.799132168292999,-0.57254683971405,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.331666141748428,-0.144691586494446,-0.932234823703766,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.349861145019531,0.0458319336175919,-0.935679733753204,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.0721157863736153,-0.996306836605072,0.046604260802269,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.00483022397384048,-0.999841153621674,0.0171542856842279,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.194305345416069,-0.845154821872711,-0.497954428195953,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.331666141748428,-0.144691586494446,-0.932234823703766,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.0899794772267342,-0.9932541847229,0.0731424242258072,\r\n-0.277517825365067,-0.941677749156952,0.190333172678947,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.0899794772267342,-0.9932541847229,0.0731424242258072,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.01550074480474,-0.999103903770447,0.039384126663208,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.110369011759758,-0.982585489749908,-0.149480164051056,-0.348634332418442,-0.17803680896759,-0.9201939702034,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.351827353239059,0.247008845210075,-0.902886509895325,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.496952742338181,-0.76694118976593,0.406003773212433,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.0899794772267342,-0.9932541847229,0.0731424242258072,\r\n-0.243455648422241,-0.951300919055939,0.189091861248016,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.0378895923495293,-0.998991310596466,-0.0240967907011509,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.418865561485291,-0.53819739818573,-0.731365263462067,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.0825336873531342,-0.989142894744873,-0.121591456234455,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.496952742338181,-0.76694118976593,0.406003773212433,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.496952742338181,-0.76694118976593,0.406003773212433,\r\n-0.299850285053253,-0.912282645702362,0.27898034453392,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.277517825365067,-0.941677749156952,0.190333172678947,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.151632010936737,-0.979326963424683,0.133889332413673,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.112695671617985,-0.988284587860107,0.102923288941383,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.0505324937403202,-0.996549069881439,0.0658512264490128,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.0393056645989418,-0.999060034751892,0.0182753372937441,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.0775996595621109,-0.991967737674713,-0.0998908579349518,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.255754888057709,-0.694957792758942,-0.672028958797455,\r\n-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.238148644566536,-0.872885882854462,-0.425858318805695,-0.410217106342316,0.142689943313599,-0.900756001472473,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.496952742338181,-0.76694118976593,0.406003773212433,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.243455648422241,-0.951300919055939,0.189091861248016,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.496952742338181,-0.76694118976593,0.406003773212433,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.832204818725586,0.0117124086245894,0.554344415664673,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.676593661308289,-0.675083994865417,0.294079184532166,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.224233150482178,-0.955986738204956,0.189231991767883,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.152776569128037,-0.980174779891968,0.126161128282547,\r\n-0.210331618785858,-0.959481179714203,0.187500298023224,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.0775996595621109,-0.991967737674713,-0.0998908579349518,-0.0398318022489548,-0.999007284641266,-0.0199454389512539,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.0775996595621109,-0.991967737674713,-0.0998908579349518,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.414881557226181,-0.221748813986778,-0.882440149784088,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.109691396355629,-0.961042642593384,-0.253702044487,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.255754888057709,-0.694957792758942,-0.672028958797455,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.765731811523438,-0.174125760793686,0.619140386581421,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.741093337535858,-0.177979737520218,0.647382318973541,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.489405363798141,-0.712518751621246,0.502791523933411,\r\n-0.832204818725586,0.0117124086245894,0.554344415664673,-0.765731811523438,-0.174125760793686,0.619140386581421,-0.616630792617798,-0.619888842105865,0.485287696123123,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.299850285053253,-0.912282645702362,0.27898034453392,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.533905446529388,-0.678951025009155,0.503954470157623,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.266750663518906,-0.932295322418213,0.244273364543915,-0.533905446529388,-0.678951025009155,0.503954470157623,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.161183625459671,-0.97341001033783,0.162765562534332,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.152776569128037,-0.980174779891968,0.126161128282547,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.109286665916443,-0.991946935653687,0.0640123188495636,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.153896510601044,-0.987611770629883,0.0306389927864075,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.281719148159027,-0.932103753089905,-0.227633029222488,\r\n-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.0775996595621109,-0.991967737674713,-0.0998908579349518,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.330556750297546,0.160165667533875,-0.93009626865387,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.406260818243027,0.0803910568356514,-0.910213887691498,-0.489405363798141,-0.712518751621246,0.502791523933411,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.44615513086319,-0.795835554599762,0.409379094839096,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.533905446529388,-0.678951025009155,0.503954470157623,-0.533905446529388,-0.678951025009155,0.503954470157623,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.256733983755112,-0.938454329967499,0.231064975261688,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.296578943729401,-0.952039480209351,0.0752445831894875,\r\n-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.235502153635025,-0.971483588218689,-0.0275362152606249,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.460168033838272,-0.878647208213806,-0.127374842762947,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.32440048456192,-0.0031305062584579,-0.945914626121521,-0.406260818243027,0.0803910568356514,-0.910213887691498,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.406260818243027,0.0803910568356514,-0.910213887691498,-0.379062622785568,-0.341342657804489,-0.860114276409149,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.395065277814865,-0.725637793540955,-0.563358724117279,-0.667150020599365,-0.197761848568916,0.71819281578064,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.553854763507843,-0.63520872592926,0.538288533687592,-0.667200982570648,-0.338361233472824,0.663591980934143,-0.745780527591705,-0.176506251096725,0.642383635044098,-0.533905446529388,-0.678951025009155,0.503954470157623,\r\n-0.533905446529388,-0.678951025009155,0.503954470157623,-0.745780527591705,-0.176506251096725,0.642383635044098,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.369193315505981,-0.862431585788727,0.346277236938477,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.37797138094902,-0.879796802997589,0.288262188434601,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.238716468214989,-0.932349503040314,0.271548807621002,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.238716468214989,-0.932349503040314,0.271548807621002,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.210331618785858,-0.959481179714203,0.187500298023224,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.296578943729401,-0.952039480209351,0.0752445831894875,-0.4133480489254,-0.91037255525589,0.0191051159054041,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.52362722158432,-0.82702100276947,-0.204574227333069,-0.460168033838272,-0.878647208213806,-0.127374842762947,\r\n-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.791575193405151,-0.362284570932388,-0.49209600687027,-0.281719148159027,-0.932103753089905,-0.227633029222488,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.791575193405151,-0.362284570932388,-0.49209600687027,-0.465440720319748,-0.844433844089508,-0.265134036540985,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.406260818243027,0.0803910568356514,-0.910213887691498,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.702633321285248,-0.391317784786224,0.594286680221558,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.552344262599945,-0.697442412376404,0.45660674571991,-0.778876483440399,-0.0179379098117352,0.626920640468597,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.749906182289124,-0.230599239468575,0.62005215883255,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.719047248363495,-0.409671664237976,0.561373353004456,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.238716468214989,-0.932349503040314,0.271548807621002,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.558797001838684,-0.82735550403595,0.0568213388323784,-0.923367500305176,-0.373956620693207,0.0868834182620049,\r\n-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.474829882383347,-0.874870419502258,-0.0955936759710312,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.791575193405151,-0.362284570932388,-0.49209600687027,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.807151317596436,-0.528723001480103,-0.262599557638168,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.791575193405151,-0.362284570932388,-0.49209600687027,-0.391239613294601,0.182156473398209,-0.902081191539764,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.592282712459564,-0.388572603464127,-0.705841600894928,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.519931733608246,-0.0459256954491138,-0.852972328662872,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.749906182289124,-0.230599239468575,0.62005215883255,-0.486194670200348,-0.762731492519379,0.426444947719574,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.519315302371979,-0.833948075771332,0.186660662293434,\r\n-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.602092266082764,-0.797573447227478,0.0368967391550541,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.817351520061493,-0.382236450910568,0.431081920862198,-0.81661194562912,-0.534337103366852,0.218239933252335,-0.519315302371979,-0.833948075771332,0.186660662293434,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.778006553649902,-0.627886712551117,0.0215383395552635,-0.933851182460785,-0.357451200485229,0.0122708939015865,-0.940235614776611,-0.19293124973774,-0.280596137046814,-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.940235614776611,-0.19293124973774,-0.280596137046814,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.723549485206604,-0.688082277774811,-0.0549431256949902,-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.998259961605072,-0.013540924526751,-0.0573895014822483,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.940235614776611,-0.19293124973774,-0.280596137046814,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.754914700984955,-0.538230419158936,-0.374715447425842,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.8689324259758,-0.319692611694336,-0.377826601266861,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.663003981113434,-0.423596501350403,-0.617245137691498,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.543102622032166,0.197408646345139,-0.816130638122559,-0.640745878219604,0.012588725425303,-0.767649710178375,-0.940235614776611,-0.19293124973774,-0.280596137046814,\r\n-0.923367500305176,-0.373956620693207,0.0868834182620049,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.940235614776611,-0.19293124973774,-0.280596137046814,-0.96758097410202,0.198888629674912,-0.155660644173622,-0.850143909454346,0.121064767241478,-0.512443780899048,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.849173545837402,0.241268157958984,-0.469780653715134,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.869415462017059,0.115314699709415,-0.480436414480209,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.759771525859833,0.234358474612236,-0.606484293937683,-0.773511946201324,0.0235096868127584,-0.633345365524292,-0.840643644332886,0.291518151760101,-0.45643761754036,-0.0171088427305222,-0.982673048973084,-0.184555768966675,-0.0344852842390537,-0.998610973358154,-0.0398345217108727,-0.0975367203354836,-0.909852921962738,-0.403303980827332,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.478202342987061,-0.860364675521851,0.176337867975235,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.347112417221069,-0.924047470092773,0.160152733325958,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.478202342987061,-0.860364675521851,0.176337867975235,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.478202342987061,-0.860364675521851,0.176337867975235,-0.347112417221069,-0.924047470092773,0.160152733325958,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.347112417221069,-0.924047470092773,0.160152733325958,\r\n-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.457864046096802,-0.886235177516937,0.0703392922878265,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.347112417221069,-0.924047470092773,0.160152733325958,-0.478202342987061,-0.860364675521851,0.176337867975235,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.347112417221069,-0.924047470092773,0.160152733325958,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,0.00972930714488029,-0.999701678752899,-0.0224021300673485,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,0.00822143442928791,-0.999960839748383,-0.0032581661362201,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.000937319826334715,-0.999064803123474,0.0432241335511208,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.0755924209952354,-0.996360301971436,0.0393935106694698,0.00822143442928791,-0.999960839748383,-0.0032581661362201,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,\r\n0.0106352353468537,-0.999892771244049,0.0100628081709147,0.00972930714488029,-0.999701678752899,-0.0224021300673485,0.00822143442928791,-0.999960839748383,-0.0032581661362201,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.00972930714488029,-0.999701678752899,-0.0224021300673485,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.484544008970261,-0.850829780101776,0.203237965703011,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.000937319826334715,-0.999064803123474,0.0432241335511208,-0.271320670843124,-0.954867541790009,0.120884440839291,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.569900572299957,-0.717265009880066,0.400929003953934,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.000937319826334715,-0.999064803123474,0.0432241335511208,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.00822143442928791,-0.999960839748383,-0.0032581661362201,-0.0755924209952354,-0.996360301971436,0.0393935106694698,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.00822143442928791,-0.999960839748383,-0.0032581661362201,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.0203806143254042,-0.99977058172226,0.00657696556299925,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.495675146579742,-0.826885282993317,0.265644013881683,-0.0343938991427422,-0.99642550945282,0.0771572217345238,-0.000937319826334715,-0.999064803123474,0.0432241335511208,-0.213905110955238,-0.969387233257294,0.120552644133568,\r\n-0.395175844430923,-0.84804779291153,0.3530592918396,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.569900572299957,-0.717265009880066,0.400929003953934,0.0436160191893578,-0.998257100582123,0.0397536568343639,0.0246136114001274,-0.998632431030273,0.0461237207055092,-0.0755924209952354,-0.996360301971436,0.0393935106694698,-0.0343938991427422,-0.99642550945282,0.0771572217345238,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.000937319826334715,-0.999064803123474,0.0432241335511208,-0.0755924209952354,-0.996360301971436,0.0393935106694698,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.0173268392682076,-0.99898624420166,0.0415477901697159,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0203806143254042,-0.99977058172226,0.00657696556299925,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.0106352353468537,-0.999892771244049,0.0100628081709147,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0203806143254042,-0.99977058172226,0.00657696556299925,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.0343938991427422,-0.99642550945282,0.0771572217345238,-0.213905110955238,-0.969387233257294,0.120552644133568,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.395175844430923,-0.84804779291153,0.3530592918396,-0.158827006816864,-0.972283363342285,0.171578079462051,0.0173268392682076,-0.99898624420166,0.0415477901697159,0.0155084859579802,-0.999556243419647,0.0254303179681301,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0173268392682076,-0.99898624420166,0.0415477901697159,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0106352353468537,-0.999892771244049,0.0100628081709147,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.0203806143254042,-0.99977058172226,0.00657696556299925,0.0203806143254042,-0.99977058172226,0.00657696556299925,\r\n-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.297677636146545,-0.92087060213089,0.251764386892319,-0.158827006816864,-0.972283363342285,0.171578079462051,-0.0343938991427422,-0.99642550945282,0.0771572217345238,0.0173268392682076,-0.99898624420166,0.0415477901697159,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.033177062869072,-0.996918499469757,0.0710820853710175,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0173268392682076,-0.99898624420166,0.0415477901697159,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0203806143254042,-0.99977058172226,0.00657696556299925,0.0022565028630197,-0.999990701675415,0.00367420190013945,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,-0.189815700054169,-0.915529787540436,-0.354647874832153,0.0022565028630197,-0.999990701675415,0.00367420190013945,0.0203806143254042,-0.99977058172226,0.00657696556299925,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0022565028630197,-0.999990701675415,0.00367420190013945,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,-0.189815700054169,-0.915529787540436,-0.354647874832153,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.189815700054169,-0.915529787540436,-0.354647874832153,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0022565028630197,-0.999990701675415,0.00367420190013945,0.0148595683276653,-0.999202132225037,0.0370674058794975,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0267183389514685,-0.997486650943756,0.0656235888600349,\r\n-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0022565028630197,-0.999990701675415,0.00367420190013945,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0267183389514685,-0.997486650943756,0.0656235888600349,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,-0.0351175591349602,-0.997202038764954,-0.0659911260008812,0.0148595683276653,-0.999202132225037,0.0370674058794975,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0267183389514685,-0.997486650943756,0.0656235888600349,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0267183389514685,-0.997486650943756,0.0656235888600349,0.0302372761070728,-0.997070491313934,0.0702572539448738,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0267183389514685,-0.997486650943756,0.0656235888600349,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.0267183389514685,-0.997486650943756,0.0656235888600349,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0298520438373089,-0.99825644493103,0.0509202815592289,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0327508039772511,-0.998833775520325,0.0354705192148685,-0.0367862023413181,-0.996329188346863,-0.0772970244288445,0.0298520438373089,-0.99825644493103,0.0509202815592289,0.0595862492918968,-0.998094737529755,0.0160093419253826,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.0298520438373089,-0.99825644493103,0.0509202815592289,\r\n0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0298520438373089,-0.99825644493103,0.0509202815592289,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.066605918109417,-0.967423141002655,-0.2442457228899,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0595862492918968,-0.998094737529755,0.0160093419253826,0.066605918109417,-0.967423141002655,-0.2442457228899,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0302372761070728,-0.997070491313934,0.0702572539448738,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0298520438373089,-0.99825644493103,0.0509202815592289,0.0298520438373089,-0.99825644493103,0.0509202815592289,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.066605918109417,-0.967423141002655,-0.2442457228899,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0194252226501703,-0.997405171394348,0.0693217441439629,0.0356742329895496,-0.99774581193924,0.0568378455936909,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0501299612224102,-0.996169030666351,0.0716536045074463,\r\n0.0305140893906355,-0.996012806892395,0.0838289558887482,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.0440606623888016,-0.997998416423798,0.0453625917434692,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0305140893906355,-0.996012806892395,0.0838289558887482,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0723632052540779,-0.99705970287323,0.0252072159200907,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0440606623888016,-0.997998416423798,0.0453625917434692,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0956646651029587,-0.994484722614288,0.0429914966225624,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0533914379775524,-0.995332658290863,0.0803878307342529,0.0956646651029587,-0.994484722614288,0.0429914966225624,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.167423233389854,-0.981696128845215,0.0907855480909348,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0723632052540779,-0.99705970287323,0.0252072159200907,0.0831022784113884,-0.996255040168762,0.0238727536052465,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0956646651029587,-0.994484722614288,0.0429914966225624,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0881812870502472,-0.995777130126953,0.025531305000186,0.118079654872417,-0.992939054965973,0.0113668031990528,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.0956646651029587,-0.994484722614288,0.0429914966225624,0.101415507495403,-0.994107246398926,0.0382824912667274,0.167423233389854,-0.981696128845215,0.0907855480909348,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.0881812870502472,-0.995777130126953,0.025531305000186,0.064088948071003,-0.99651575088501,0.0533746331930161,0.0831022784113884,-0.996255040168762,0.0238727536052465,\r\n0.101415507495403,-0.994107246398926,0.0382824912667274,0.0840557664632797,-0.995025217533112,0.0534728616476059,0.118079654872417,-0.992939054965973,0.0113668031990528,0.101415507495403,-0.994107246398926,0.0382824912667274,0.233916282653809,-0.962341964244843,0.138495489954948,0.167423233389854,-0.981696128845215,0.0907855480909348,0.414391607046127,-0.899359583854675,0.139397814869881,0.167423233389854,-0.981696128845215,0.0907855480909348,0.233916282653809,-0.962341964244843,0.138495489954948,0.0574446208775043,-0.985036313533783,-0.162491455674171,0.066605918109417,-0.967423141002655,-0.2442457228899,0.144480377435684,0.420691251754761,-0.895625054836273,-0.550221264362335,0.726444661617279,0.411745697259903,-0.330566346645355,0.827818274497986,0.453257769346237,-0.390920788049698,0.817485928535461,0.422962993383408,-0.330566346645355,0.827818274497986,0.453257769346237,-0.550221264362335,0.726444661617279,0.411745697259903,-0.477980643510818,0.758467376232147,0.443014323711395,-0.330566346645355,0.827818274497986,0.453257769346237,-0.477980643510818,0.758467376232147,0.443014323711395,-0.271856188774109,0.839541018009186,0.47038808465004,-0.271856188774109,0.839541018009186,0.47038808465004,-0.477980643510818,0.758467376232147,0.443014323711395,-0.456937879323959,0.77647340297699,0.433931648731232,-0.271856188774109,0.839541018009186,0.47038808465004,-0.456937879323959,0.77647340297699,0.433931648731232,-0.192159965634346,0.87401294708252,0.44629117846489,-0.389376103878021,0.837724328041077,0.382889032363892,-0.192159965634346,0.87401294708252,0.44629117846489,-0.456937879323959,0.77647340297699,0.433931648731232,-0.192159965634346,0.87401294708252,0.44629117846489,-0.389376103878021,0.837724328041077,0.382889032363892,-0.272386968135834,0.88256049156189,0.383265137672424,-0.486638784408569,0.819304049015045,0.30318883061409,-0.272386968135834,0.88256049156189,0.383265137672424,-0.389376103878021,0.837724328041077,0.382889032363892,-0.272386968135834,0.88256049156189,0.383265137672424,-0.486638784408569,0.819304049015045,0.30318883061409,\r\n-0.390067994594574,0.867132723331451,0.309721827507019,-0.272386968135834,0.88256049156189,0.383265137672424,-0.390067994594574,0.867132723331451,0.309721827507019,-0.164000809192657,0.925649583339691,0.340993046760559,-0.390067994594574,0.867132723331451,0.309721827507019,-0.287136614322662,0.923939347267151,0.252761691808701,-0.164000809192657,0.925649583339691,0.340993046760559,-0.390067994594574,0.867132723331451,0.309721827507019,-0.482303589582443,0.840980708599091,0.245223551988602,-0.287136614322662,0.923939347267151,0.252761691808701,-0.368671715259552,0.905612289905548,0.209636375308037,-0.287136614322662,0.923939347267151,0.252761691808701,-0.482303589582443,0.840980708599091,0.245223551988602,-0.287136614322662,0.923939347267151,0.252761691808701,-0.368671715259552,0.905612289905548,0.209636375308037,-0.321613937616348,0.923950612545013,0.207073420286179,-0.321613937616348,0.923950612545013,0.207073420286179,-0.368671715259552,0.905612289905548,0.209636375308037,-0.326176375150681,0.94166088104248,0.08296749740839,-0.51827347278595,0.76224821805954,0.387775808572769,-0.348508179187775,0.848460733890533,0.398316979408264,-0.500876843929291,0.782990455627441,0.368847042322159,-0.348508179187775,0.848460733890533,0.398316979408264,-0.51827347278595,0.76224821805954,0.387775808572769,-0.34477636218071,0.844029068946838,0.410784691572189,-0.410857200622559,0.837581336498261,0.360074609518051,-0.500876843929291,0.782990455627441,0.368847042322159,-0.348508179187775,0.848460733890533,0.398316979408264,-0.51827347278595,0.76224821805954,0.387775808572769,-0.500876843929291,0.782990455627441,0.368847042322159,-0.652521312236786,0.674881815910339,0.344601631164551,-0.473663955926895,0.788324475288391,0.392666429281235,-0.34477636218071,0.844029068946838,0.410784691572189,-0.51827347278595,0.76224821805954,0.387775808572769,-0.585975408554077,0.729827165603638,0.35211518406868,-0.500876843929291,0.782990455627441,0.368847042322159,-0.410857200622559,0.837581336498261,0.360074609518051,-0.585975408554077,0.729827165603638,0.35211518406868,\r\n-0.652521312236786,0.674881815910339,0.344601631164551,-0.500876843929291,0.782990455627441,0.368847042322159,-0.71041601896286,0.627984404563904,0.317717641592026,-0.51827347278595,0.76224821805954,0.387775808572769,-0.652521312236786,0.674881815910339,0.344601631164551,-0.390920788049698,0.817485928535461,0.422962993383408,-0.34477636218071,0.844029068946838,0.410784691572189,-0.473663955926895,0.788324475288391,0.392666429281235,-0.651818513870239,0.670251548290253,0.354817271232605,-0.473663955926895,0.788324475288391,0.392666429281235,-0.51827347278595,0.76224821805954,0.387775808572769,-0.456542074680328,0.822449326515198,0.339332163333893,-0.585975408554077,0.729827165603638,0.35211518406868,-0.410857200622559,0.837581336498261,0.360074609518051,-0.585975408554077,0.729827165603638,0.35211518406868,-0.751123011112213,0.577505350112915,0.319846242666245,-0.652521312236786,0.674881815910339,0.344601631164551,-0.651818513870239,0.670251548290253,0.354817271232605,-0.51827347278595,0.76224821805954,0.387775808572769,-0.71041601896286,0.627984404563904,0.317717641592026,-0.71041601896286,0.627984404563904,0.317717641592026,-0.652521312236786,0.674881815910339,0.344601631164551,-0.785034418106079,0.545716524124146,0.293111324310303,-0.390920788049698,0.817485928535461,0.422962993383408,-0.473663955926895,0.788324475288391,0.392666429281235,-0.574745953083038,0.725480258464813,0.378609746694565,-0.651818513870239,0.670251548290253,0.354817271232605,-0.574745953083038,0.725480258464813,0.378609746694565,-0.473663955926895,0.788324475288391,0.392666429281235,-0.564100444316864,0.752527713775635,0.339841991662979,-0.585975408554077,0.729827165603638,0.35211518406868,-0.456542074680328,0.822449326515198,0.339332163333893,-0.585975408554077,0.729827165603638,0.35211518406868,-0.72846394777298,0.604507386684418,0.322352170944214,-0.751123011112213,0.577505350112915,0.319846242666245,-0.652521312236786,0.674881815910339,0.344601631164551,-0.751123011112213,0.577505350112915,0.319846242666245,-0.785034418106079,0.545716524124146,0.293111324310303,\r\n-0.581633627414703,0.718528926372528,0.381337732076645,-0.390920788049698,0.817485928535461,0.422962993383408,-0.574745953083038,0.725480258464813,0.378609746694565,-0.564100444316864,0.752527713775635,0.339841991662979,-0.72846394777298,0.604507386684418,0.322352170944214,-0.585975408554077,0.729827165603638,0.35211518406868,-0.564100444316864,0.752527713775635,0.339841991662979,-0.456542074680328,0.822449326515198,0.339332163333893,-0.612618863582611,0.730165004730225,0.302583873271942,-0.390920788049698,0.817485928535461,0.422962993383408,-0.581633627414703,0.718528926372528,0.381337732076645,-0.550221264362335,0.726444661617279,0.411745697259903,-0.564100444316864,0.752527713775635,0.339841991662979,-0.612618863582611,0.730165004730225,0.302583873271942,-0.72846394777298,0.604507386684418,0.322352170944214,0.229289188981056,-0.918832540512085,-0.321205824613571,0.183840230107307,-0.879487276077271,-0.438981503248215,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.183840230107307,-0.879487276077271,-0.438981503248215,0.229289188981056,-0.918832540512085,-0.321205824613571,0.254871159791946,-0.908683836460114,-0.330657422542572,0.183840230107307,-0.879487276077271,-0.438981503248215,0.254871159791946,-0.908683836460114,-0.330657422542572,0.247956663370132,-0.881808757781982,-0.401161700487137,0.30532369017601,-0.914015889167786,-0.267118036746979,0.247956663370132,-0.881808757781982,-0.401161700487137,0.254871159791946,-0.908683836460114,-0.330657422542572,0.247956663370132,-0.881808757781982,-0.401161700487137,0.30532369017601,-0.914015889167786,-0.267118036746979,0.262456446886063,-0.879748046398163,-0.396434098482132,0.262456446886063,-0.879748046398163,-0.396434098482132,0.30532369017601,-0.914015889167786,-0.267118036746979,0.264668256044388,-0.877374768257141,-0.400205194950104,0.358274102210999,-0.902628362178802,-0.238540574908257,0.264668256044388,-0.877374768257141,-0.400205194950104,0.30532369017601,-0.914015889167786,-0.267118036746979,0.366902440786362,-0.92475152015686,-0.101079717278481,0.358274102210999,-0.902628362178802,-0.238540574908257,\r\n0.30532369017601,-0.914015889167786,-0.267118036746979,0.358274102210999,-0.902628362178802,-0.238540574908257,0.366902440786362,-0.92475152015686,-0.101079717278481,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.366902440786362,-0.92475152015686,-0.101079717278481,0.411533683538437,-0.911254465579987,0.0159684009850025,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.430734753608704,-0.890502274036407,-0.146537154912949,0.358274102210999,-0.902628362178802,-0.238540574908257,0.465915828943253,-0.87953394651413,0.0966556146740913,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.411533683538437,-0.911254465579987,0.0159684009850025,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.478790014982224,-0.876599490642548,0.0483041889965534,0.430734753608704,-0.890502274036407,-0.146537154912949,0.478790014982224,-0.876599490642548,0.0483041889965534,0.404880940914154,-0.909532368183136,-0.0939269810914993,0.465915828943253,-0.87953394651413,0.0966556146740913,0.478790014982224,-0.876599490642548,0.0483041889965534,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.430734753608704,-0.890502274036407,-0.146537154912949,0.478790014982224,-0.876599490642548,0.0483041889965534,0.465915828943253,-0.87953394651413,0.0966556146740913,0.505502700805664,-0.820004880428314,0.268437892198563,0.478790014982224,-0.876599490642548,0.0483041889965534,0.532694041728973,-0.820528328418732,0.207292079925537,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.548273265361786,-0.763115763664246,0.342126548290253,0.478790014982224,-0.876599490642548,0.0483041889965534,0.505502700805664,-0.820004880428314,0.268437892198563,0.478790014982224,-0.876599490642548,0.0483041889965534,0.548273265361786,-0.763115763664246,0.342126548290253,0.532694041728973,-0.820528328418732,0.207292079925537,0.467843472957611,-0.882986307144165,-0.0381787270307541,0.532694041728973,-0.820528328418732,0.207292079925537,0.504408538341522,-0.851483464241028,0.143344968557358,\r\n0.548273265361786,-0.763115763664246,0.342126548290253,0.562350928783417,-0.698562324047089,0.442461401224136,0.532694041728973,-0.820528328418732,0.207292079925537,0.563308238983154,-0.73742550611496,0.372676014900208,0.504408538341522,-0.851483464241028,0.143344968557358,0.532694041728973,-0.820528328418732,0.207292079925537,0.55955559015274,-0.632047951221466,0.5361088514328,0.532694041728973,-0.820528328418732,0.207292079925537,0.562350928783417,-0.698562324047089,0.442461401224136,0.5616375207901,-0.696945548057556,0.445903718471527,0.504408538341522,-0.851483464241028,0.143344968557358,0.563308238983154,-0.73742550611496,0.372676014900208,0.563308238983154,-0.73742550611496,0.372676014900208,0.532694041728973,-0.820528328418732,0.207292079925537,0.55955559015274,-0.632047951221466,0.5361088514328,0.541086792945862,-0.784997701644897,0.3016676902771,0.504408538341522,-0.851483464241028,0.143344968557358,0.5616375207901,-0.696945548057556,0.445903718471527,0.5616375207901,-0.696945548057556,0.445903718471527,0.563308238983154,-0.73742550611496,0.372676014900208,0.561288416385651,-0.528102040290833,0.637231111526489,0.55955559015274,-0.632047951221466,0.5361088514328,0.561288416385651,-0.528102040290833,0.637231111526489,0.563308238983154,-0.73742550611496,0.372676014900208,0.541086792945862,-0.784997701644897,0.3016676902771,0.5616375207901,-0.696945548057556,0.445903718471527,0.584952354431152,-0.592991650104523,0.553345680236816,0.581063508987427,-0.490697354078293,0.649292767047882,0.5616375207901,-0.696945548057556,0.445903718471527,0.561288416385651,-0.528102040290833,0.637231111526489,0.584952354431152,-0.592991650104523,0.553345680236816,0.5616375207901,-0.696945548057556,0.445903718471527,0.581063508987427,-0.490697354078293,0.649292767047882,0.541086792945862,-0.784997701644897,0.3016676902771,0.584952354431152,-0.592991650104523,0.553345680236816,0.580039620399475,-0.726921319961548,0.367613077163696,0.583273649215698,-0.399355500936508,0.707323729991913,0.584952354431152,-0.592991650104523,0.553345680236816,\r\n0.581063508987427,-0.490697354078293,0.649292767047882,0.584952354431152,-0.592991650104523,0.553345680236816,0.611241161823273,-0.520661771297455,0.59606659412384,0.580039620399475,-0.726921319961548,0.367613077163696,0.584952354431152,-0.592991650104523,0.553345680236816,0.583273649215698,-0.399355500936508,0.707323729991913,0.611241161823273,-0.520661771297455,0.59606659412384,0.580039620399475,-0.726921319961548,0.367613077163696,0.611241161823273,-0.520661771297455,0.59606659412384,0.613923132419586,-0.668326079845428,0.420045733451843,0.583273649215698,-0.399355500936508,0.707323729991913,0.611037969589233,-0.383561313152313,0.692468881607056,0.611241161823273,-0.520661771297455,0.59606659412384,0.628624081611633,-0.575476765632629,0.523123204708099,0.613923132419586,-0.668326079845428,0.420045733451843,0.611241161823273,-0.520661771297455,0.59606659412384,0.611037969589233,-0.383561313152313,0.692468881607056,0.628624081611633,-0.575476765632629,0.523123204708099,0.611241161823273,-0.520661771297455,0.59606659412384,0.628624081611633,-0.575476765632629,0.523123204708099,0.611037969589233,-0.383561313152313,0.692468881607056,0.635076105594635,-0.476834207773209,0.607706725597382,0.607045531272888,-0.310428470373154,0.731525599956512,0.635076105594635,-0.476834207773209,0.607706725597382,0.611037969589233,-0.383561313152313,0.692468881607056,0.628624081611633,-0.575476765632629,0.523123204708099,0.635076105594635,-0.476834207773209,0.607706725597382,0.622661352157593,-0.669879138469696,0.404418975114822,0.631619811058044,-0.40450394153595,0.661387026309967,0.635076105594635,-0.476834207773209,0.607706725597382,0.607045531272888,-0.310428470373154,0.731525599956512,0.622661352157593,-0.669879138469696,0.404418975114822,0.635076105594635,-0.476834207773209,0.607706725597382,0.599846720695496,-0.609075307846069,0.518855452537537,0.631619811058044,-0.40450394153595,0.661387026309967,0.599846720695496,-0.609075307846069,0.518855452537537,0.635076105594635,-0.476834207773209,0.607706725597382,0.631619811058044,-0.40450394153595,0.661387026309967,\r\n0.644152045249939,-0.60375052690506,0.46963095664978,0.599846720695496,-0.609075307846069,0.518855452537537,0.631619811058044,-0.40450394153595,0.661387026309967,0.650096714496613,-0.504508197307587,0.568194985389709,0.644152045249939,-0.60375052690506,0.46963095664978,0.650096714496613,-0.504508197307587,0.568194985389709,0.631619811058044,-0.40450394153595,0.661387026309967,0.652007281780243,-0.42521658539772,0.627755701541901,0.652007281780243,-0.42521658539772,0.627755701541901,0.66311103105545,-0.504856824874878,0.552632927894592,0.650096714496613,-0.504508197307587,0.568194985389709,0.66311103105545,-0.504856824874878,0.552632927894592,0.652007281780243,-0.42521658539772,0.627755701541901,0.708737969398499,-0.482795566320419,0.514391601085663,0.880651831626892,0.384313523769379,0.277047604322433,0.816699147224426,0.478557586669922,0.322467058897018,0.900442898273468,0.34461435675621,0.265411972999573,0.816699147224426,0.478557586669922,0.322467058897018,0.880651831626892,0.384313523769379,0.277047604322433,0.813469469547272,0.492053896188736,0.310081034898758,0.816699147224426,0.478557586669922,0.322467058897018,0.8530433177948,0.423667848110199,0.304668068885803,0.900442898273468,0.34461435675621,0.265411972999573,0.958675682544708,0.204954907298088,0.19731804728508,0.880651831626892,0.384313523769379,0.277047604322433,0.900442898273468,0.34461435675621,0.265411972999573,0.813469469547272,0.492053896188736,0.310081034898758,0.880651831626892,0.384313523769379,0.277047604322433,0.905061900615692,0.337886691093445,0.258254736661911,0.900442898273468,0.34461435675621,0.265411972999573,0.8530433177948,0.423667848110199,0.304668068885803,0.919226944446564,0.319386869668961,0.230247303843498,0.880651831626892,0.384313523769379,0.277047604322433,0.958675682544708,0.204954907298088,0.19731804728508,0.905061900615692,0.337886691093445,0.258254736661911,0.958241164684296,0.211286246776581,0.192696183919907,0.958675682544708,0.204954907298088,0.19731804728508,0.900442898273468,0.34461435675621,0.265411972999573,0.813469469547272,0.492053896188736,0.310081034898758,\r\n0.905061900615692,0.337886691093445,0.258254736661911,0.880761742591858,0.392427444458008,0.265064746141434,0.872471988201141,0.428458124399185,0.234981194138527,0.919226944446564,0.319386869668961,0.230247303843498,0.8530433177948,0.423667848110199,0.304668068885803,0.900442898273468,0.34461435675621,0.265411972999573,0.919226944446564,0.319386869668961,0.230247303843498,0.958241164684296,0.211286246776581,0.192696183919907,0.958675682544708,0.204954907298088,0.19731804728508,0.972865104675293,0.14968167245388,0.176433697342873,0.905061900615692,0.337886691093445,0.258254736661911,0.946926414966583,0.249101415276527,0.20317168533802,0.880761742591858,0.392427444458008,0.265064746141434,0.905061900615692,0.337886691093445,0.258254736661911,0.880761742591858,0.392427444458008,0.265064746141434,0.834587514400482,0.479792833328247,0.270670175552368,0.813469469547272,0.492053896188736,0.310081034898758,0.872471988201141,0.428458124399185,0.234981194138527,0.947462558746338,0.292947590351105,0.128438159823418,0.919226944446564,0.319386869668961,0.230247303843498,0.96403306722641,0.211662113666534,0.160746052861214,0.958241164684296,0.211286246776581,0.192696183919907,0.919226944446564,0.319386869668961,0.230247303843498,0.946926414966583,0.249101415276527,0.20317168533802,0.905061900615692,0.337886691093445,0.258254736661911,0.972865104675293,0.14968167245388,0.176433697342873,0.880761742591858,0.392427444458008,0.265064746141434,0.946926414966583,0.249101415276527,0.20317168533802,0.930768191814423,0.304695338010788,0.20206680893898,0.930768191814423,0.304695338010788,0.20206680893898,0.834587514400482,0.479792833328247,0.270670175552368,0.880761742591858,0.392427444458008,0.265064746141434,0.947462558746338,0.292947590351105,0.128438159823418,0.872471988201141,0.428458124399185,0.234981194138527,0.899106860160828,0.421982973814011,0.116349421441555,0.947462558746338,0.292947590351105,0.128438159823418,0.96403306722641,0.211662113666534,0.160746052861214,0.919226944446564,0.319386869668961,0.230247303843498,0.834587514400482,0.479792833328247,0.270670175552368,\r\n0.930768191814423,0.304695338010788,0.20206680893898,0.904863357543945,0.383554458618164,0.184684112668037,0.899106860160828,0.421982973814011,0.116349421441555,0.950920403003693,0.3094103038311,-0.00393973523750901,0.947462558746338,0.292947590351105,0.128438159823418,0.947462558746338,0.292947590351105,0.128438159823418,0.977065443992615,0.184287577867508,0.106682054698467,0.96403306722641,0.211662113666534,0.160746052861214,0.930768191814423,0.304695338010788,0.20206680893898,0.968853890895844,0.218520760536194,0.11649376899004,0.904863357543945,0.383554458618164,0.184684112668037,0.856891870498657,0.481830984354019,0.18323515355587,0.834587514400482,0.479792833328247,0.270670175552368,0.904863357543945,0.383554458618164,0.184684112668037,0.950920403003693,0.3094103038311,-0.00393973523750901,0.899106860160828,0.421982973814011,0.116349421441555,0.908672213554382,0.414259791374207,-0.0519951730966568,0.947462558746338,0.292947590351105,0.128438159823418,0.950920403003693,0.3094103038311,-0.00393973523750901,0.981603682041168,0.190920308232307,-0.00187494850251824,0.981603682041168,0.190920308232307,-0.00187494850251824,0.977065443992615,0.184287577867508,0.106682054698467,0.947462558746338,0.292947590351105,0.128438159823418,0.968853890895844,0.218520760536194,0.11649376899004,0.946040451526642,0.306677788496017,0.104671321809292,0.904863357543945,0.383554458618164,0.184684112668037,0.946040451526642,0.306677788496017,0.104671321809292,0.856891870498657,0.481830984354019,0.18323515355587,0.904863357543945,0.383554458618164,0.184684112668037,0.831233382225037,0.554014801979065,0.0460272952914238,0.908672213554382,0.414259791374207,-0.0519951730966568,0.899106860160828,0.421982973814011,0.116349421441555,0.950920403003693,0.3094103038311,-0.00393973523750901,0.908672213554382,0.414259791374207,-0.0519951730966568,0.898094594478607,0.396439015865326,-0.190425992012024,0.950920403003693,0.3094103038311,-0.00393973523750901,0.946444749832153,0.287937253713608,-0.146063104271889,0.981603682041168,0.190920308232307,-0.00187494850251824,\r\n0.856891870498657,0.481830984354019,0.18323515355587,0.946040451526642,0.306677788496017,0.104671321809292,0.882639110088348,0.444853037595749,0.151835307478905,0.831233382225037,0.554014801979065,0.0460272952914238,0.80204164981842,0.560621559619904,-0.205991521477699,0.908672213554382,0.414259791374207,-0.0519951730966568,0.908672213554382,0.414259791374207,-0.0519951730966568,0.831369340419769,0.474342048168182,-0.289524763822556,0.898094594478607,0.396439015865326,-0.190425992012024,0.950920403003693,0.3094103038311,-0.00393973523750901,0.898094594478607,0.396439015865326,-0.190425992012024,0.946444749832153,0.287937253713608,-0.146063104271889,0.882639110088348,0.444853037595749,0.151835307478905,0.946040451526642,0.306677788496017,0.104671321809292,0.918190479278564,0.376503765583038,0.123170845210552,0.748039484024048,0.637404680252075,-0.184802740812302,0.80204164981842,0.560621559619904,-0.205991521477699,0.831233382225037,0.554014801979065,0.0460272952914238,0.80204164981842,0.560621559619904,-0.205991521477699,0.831369340419769,0.474342048168182,-0.289524763822556,0.908672213554382,0.414259791374207,-0.0519951730966568,0.946040451526642,0.306677788496017,0.104671321809292,0.979186832904816,0.195114895701408,0.0558851025998592,0.918190479278564,0.376503765583038,0.123170845210552,0.918190479278564,0.376503765583038,0.123170845210552,0.875136613845825,0.461039930582047,0.146894499659538,0.882639110088348,0.444853037595749,0.151835307478905,0.748039484024048,0.637404680252075,-0.184802740812302,0.60730654001236,0.694242060184479,-0.386272698640823,0.80204164981842,0.560621559619904,-0.205991521477699,0.918190479278564,0.376503765583038,0.123170845210552,0.979186832904816,0.195114895701408,0.0558851025998592,0.941835999488831,0.325789272785187,0.0824997574090958,0.918190479278564,0.376503765583038,0.123170845210552,0.941835999488831,0.325789272785187,0.0824997574090958,0.875136613845825,0.461039930582047,0.146894499659538,0.6829714179039,0.685764849185944,-0.251548379659653,0.60730654001236,0.694242060184479,-0.386272698640823,\r\n0.748039484024048,0.637404680252075,-0.184802740812302,0.892905056476593,0.43718808889389,0.107643201947212,0.875136613845825,0.461039930582047,0.146894499659538,0.941835999488831,0.325789272785187,0.0824997574090958,0.60730654001236,0.694242060184479,-0.386272698640823,0.6829714179039,0.685764849185944,-0.251548379659653,0.501465618610382,0.800948917865753,-0.327128350734711,0.892905056476593,0.43718808889389,0.107643201947212,0.941835999488831,0.325789272785187,0.0824997574090958,0.932919919490814,0.35454735159874,0.0629004687070847,0.892905056476593,0.43718808889389,0.107643201947212,0.932919919490814,0.35454735159874,0.0629004687070847,0.876342535018921,0.469281286001205,0.108622267842293,0.918614387512207,0.388784795999527,0.0706673413515091,0.876342535018921,0.469281286001205,0.108622267842293,0.932919919490814,0.35454735159874,0.0629004687070847,0.918614387512207,0.388784795999527,0.0706673413515091,0.860349118709564,0.497326880693436,0.111648008227348,0.876342535018921,0.469281286001205,0.108622267842293,0.89371657371521,0.44050744175911,0.084992378950119,0.860349118709564,0.497326880693436,0.111648008227348,0.918614387512207,0.388784795999527,0.0706673413515091,0.860349118709564,0.497326880693436,0.111648008227348,0.89371657371521,0.44050744175911,0.084992378950119,0.868348121643066,0.487024039030075,0.0936967432498932,0.868348121643066,0.487024039030075,0.0936967432498932,0.89371657371521,0.44050744175911,0.084992378950119,0.901633322238922,0.419955462217331,0.103415042161942,0.12588806450367,-0.92530483007431,-0.357719331979752,0.465740203857422,-0.842628657817841,-0.270301431417465,0.373289316892624,-0.894686043262482,-0.245340317487717,0.465740203857422,-0.842628657817841,-0.270301431417465,0.634761095046997,-0.754182755947113,-0.168186366558075,0.373289316892624,-0.894686043262482,-0.245340317487717,0.12588806450367,-0.92530483007431,-0.357719331979752,0.373289316892624,-0.894686043262482,-0.245340317487717,0.18247227370739,-0.956511259078979,-0.227574348449707,0.373289316892624,-0.894686043262482,-0.245340317487717,\r\n0.634761095046997,-0.754182755947113,-0.168186366558075,0.487823247909546,-0.855550110340118,-0.173385053873062,0.373289316892624,-0.894686043262482,-0.245340317487717,0.487823247909546,-0.855550110340118,-0.173385053873062,0.18247227370739,-0.956511259078979,-0.227574348449707,0.634761095046997,-0.754182755947113,-0.168186366558075,0.704311728477478,-0.683531641960144,-0.191649198532104,0.487823247909546,-0.855550110340118,-0.173385053873062,0.275043308734894,-0.938038349151611,-0.210796281695366,0.18247227370739,-0.956511259078979,-0.227574348449707,0.487823247909546,-0.855550110340118,-0.173385053873062,0.532328963279724,-0.82054603099823,-0.208158284425735,0.487823247909546,-0.855550110340118,-0.173385053873062,0.704311728477478,-0.683531641960144,-0.191649198532104,0.275043308734894,-0.938038349151611,-0.210796281695366,0.487823247909546,-0.855550110340118,-0.173385053873062,0.532328963279724,-0.82054603099823,-0.208158284425735,0.621656656265259,-0.751521408557892,-0.220813125371933,0.532328963279724,-0.82054603099823,-0.208158284425735,0.704311728477478,-0.683531641960144,-0.191649198532104,0.275043308734894,-0.938038349151611,-0.210796281695366,0.532328963279724,-0.82054603099823,-0.208158284425735,0.382209777832031,-0.893611550331116,-0.235316723585129,0.621656656265259,-0.751521408557892,-0.220813125371933,0.382209777832031,-0.893611550331116,-0.235316723585129,0.532328963279724,-0.82054603099823,-0.208158284425735,0.275043308734894,-0.938038349151611,-0.210796281695366,0.382209777832031,-0.893611550331116,-0.235316723585129,0.0648350194096565,-0.969828546047211,-0.23500819504261,0.382209777832031,-0.893611550331116,-0.235316723585129,0.621656656265259,-0.751521408557892,-0.220813125371933,0.452788710594177,-0.862157940864563,-0.227301418781281,0.382209777832031,-0.893611550331116,-0.235316723585129,0.206652730703354,-0.951941549777985,-0.226057082414627,0.0648350194096565,-0.969828546047211,-0.23500819504261,0.621656656265259,-0.751521408557892,-0.220813125371933,0.542383134365082,-0.805463671684265,-0.238848254084587,\r\n0.452788710594177,-0.862157940864563,-0.227301418781281,0.382209777832031,-0.893611550331116,-0.235316723585129,0.452788710594177,-0.862157940864563,-0.227301418781281,0.206652730703354,-0.951941549777985,-0.226057082414627,-0.136709079146385,-0.972881972789764,-0.186577007174492,0.0648350194096565,-0.969828546047211,-0.23500819504261,0.206652730703354,-0.951941549777985,-0.226057082414627,0.311269700527191,-0.927543938159943,-0.206817016005516,0.452788710594177,-0.862157940864563,-0.227301418781281,0.542383134365082,-0.805463671684265,-0.238848254084587,0.452788710594177,-0.862157940864563,-0.227301418781281,0.311269700527191,-0.927543938159943,-0.206817016005516,0.206652730703354,-0.951941549777985,-0.226057082414627,-0.136709079146385,-0.972881972789764,-0.186577007174492,0.206652730703354,-0.951941549777985,-0.226057082414627,0.0818162187933922,-0.98008143901825,-0.18095974624157,0.479677945375443,-0.843657255172729,-0.241146147251129,0.311269700527191,-0.927543938159943,-0.206817016005516,0.542383134365082,-0.805463671684265,-0.238848254084587,0.311269700527191,-0.927543938159943,-0.206817016005516,0.0818162187933922,-0.98008143901825,-0.18095974624157,0.206652730703354,-0.951941549777985,-0.226057082414627,-0.136709079146385,-0.972881972789764,-0.186577007174492,0.0818162187933922,-0.98008143901825,-0.18095974624157,-0.183526530861855,-0.969485282897949,-0.162530571222305,0.311269700527191,-0.927543938159943,-0.206817016005516,0.479677945375443,-0.843657255172729,-0.241146147251129,0.30469936132431,-0.929440379142761,-0.208083510398865,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.0818162187933922,-0.98008143901825,-0.18095974624157,0.311269700527191,-0.927543938159943,-0.206817016005516,0.0896788239479065,-0.976446270942688,-0.196240231394768,-0.183526530861855,-0.969485282897949,-0.162530571222305,0.0818162187933922,-0.98008143901825,-0.18095974624157,0.311269700527191,-0.927543938159943,-0.206817016005516,0.30469936132431,-0.929440379142761,-0.208083510398865,0.0896788239479065,-0.976446270942688,-0.196240231394768,\r\n-0.181701749563217,-0.974516630172729,-0.131535917520523,-0.183526530861855,-0.969485282897949,-0.162530571222305,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.30469936132431,-0.929440379142761,-0.208083510398865,0.326815634965897,-0.910003185272217,-0.255118817090988,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.00188168697059155,-0.984602987766266,-0.174795061349869,-0.181701749563217,-0.974516630172729,-0.131535917520523,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.202687814831734,-0.952937960624695,-0.225447848439217,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.326815634965897,-0.910003185272217,-0.255118817090988,-0.181701749563217,-0.974516630172729,-0.131535917520523,0.00188168697059155,-0.984602987766266,-0.174795061349869,-0.237449541687965,-0.966357946395874,-0.0988430306315422,0.00188168697059155,-0.984602987766266,-0.174795061349869,0.0896788239479065,-0.976446270942688,-0.196240231394768,0.202687814831734,-0.952937960624695,-0.225447848439217,0.00188168697059155,-0.984602987766266,-0.174795061349869,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.237449541687965,-0.966357946395874,-0.0988430306315422,0.202687814831734,-0.952937960624695,-0.225447848439217,0.274672657251358,-0.936954498291016,-0.21603487432003,0.00188168697059155,-0.984602987766266,-0.174795061349869,0.00188168697059155,-0.984602987766266,-0.174795061349869,0.102743305265903,-0.96482914686203,-0.241968050599098,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.237449541687965,-0.966357946395874,-0.0988430306315422,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.394419997930527,-0.905290722846985,-0.157738924026489,0.102743305265903,-0.96482914686203,-0.241968050599098,0.00188168697059155,-0.984602987766266,-0.174795061349869,0.274672657251358,-0.936954498291016,-0.21603487432003,0.102743305265903,-0.96482914686203,-0.241968050599098,-0.0418497920036316,-0.958031594753265,-0.283591091632843,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.362745553255081,-0.900287389755249,-0.240620389580727,\r\n-0.394419997930527,-0.905290722846985,-0.157738924026489,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.0418497920036316,-0.958031594753265,-0.283591091632843,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.176325634121895,-0.962130725383759,-0.207878828048706,-0.0985161513090134,-0.960055351257324,-0.261893570423126,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.0418497920036316,-0.958031594753265,-0.283591091632843,-0.0985161513090134,-0.960055351257324,-0.261893570423126,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.362745553255081,-0.900287389755249,-0.240620389580727,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.0985161513090134,-0.960055351257324,-0.261893570423126,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.441351145505905,-0.861393451690674,-0.251416712999344,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.134369939565659,-0.957383871078491,-0.255657374858856,-0.139218792319298,-0.96094274520874,-0.239179998636246,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.492045879364014,-0.816184163093567,-0.302876591682434,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.139218792319298,-0.96094274520874,-0.239179998636246,-0.459643959999084,-0.860540568828583,-0.219538941979408,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.572573721408844,-0.779998600482941,-0.252509832382202,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.139218792319298,-0.96094274520874,-0.239179998636246,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.459643959999084,-0.860540568828583,-0.219538941979408,-0.459643959999084,-0.860540568828583,-0.219538941979408,\r\n-0.563874542713165,-0.812261521816254,-0.149253830313683,-0.302062928676605,-0.918509066104889,-0.255145013332367,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.139218792319298,-0.96094274520874,-0.239179998636246,-0.0156903639435768,-0.968316256999969,-0.249233439564705,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.0156903639435768,-0.968316256999969,-0.249233439564705,-0.16277414560318,-0.944039642810822,-0.28686860203743,-0.0156903639435768,-0.968316256999969,-0.249233439564705,-0.00276464712806046,-0.95152872800827,-0.307547360658646,-0.16277414560318,-0.944039642810822,-0.28686860203743,-0.342332065105438,-0.905113399028778,-0.252147674560547,-0.16277414560318,-0.944039642810822,-0.28686860203743,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.16277414560318,-0.944039642810822,-0.28686860203743,-0.00276464712806046,-0.95152872800827,-0.307547360658646,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.16277414560318,-0.944039642810822,-0.28686860203743,0.0459299869835377,-0.92097407579422,-0.386907011270523,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.00276464712806046,-0.95152872800827,-0.307547360658646,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.325141280889511,-0.890359461307526,-0.318658202886581,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.157104820013046,-0.914907276630402,-0.371836811304092,0.0459299869835377,-0.92097407579422,-0.386907011270523,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.157104820013046,-0.914907276630402,-0.371836811304092,-0.225220322608948,-0.723771572113037,-0.652250230312347,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.140051230788231,-0.826616525650024,-0.545060217380524,-0.269685178995132,-0.797865033149719,-0.539148509502411,-0.225220322608948,-0.723771572113037,-0.652250230312347,\r\n-0.229749068617821,-0.540937960147858,-0.809074461460114,-0.481594622135162,0.820498406887054,0.307975560426712,-0.612618863582611,0.730165004730225,0.302583873271942,-0.456542074680328,0.822449326515198,0.339332163333893,-0.612618863582611,0.730165004730225,0.302583873271942,-0.481594622135162,0.820498406887054,0.307975560426712,-0.524287402629852,0.790542244911194,0.316489368677139,-0.481594622135162,0.820498406887054,0.307975560426712,-0.456542074680328,0.822449326515198,0.339332163333893,-0.331681579351425,0.888959407806396,0.31581375002861,-0.331681579351425,0.888959407806396,0.31581375002861,-0.524287402629852,0.790542244911194,0.316489368677139,-0.481594622135162,0.820498406887054,0.307975560426712,-0.612618863582611,0.730165004730225,0.302583873271942,-0.524287402629852,0.790542244911194,0.316489368677139,-0.681716024875641,0.65416294336319,0.327618569135666,-0.400785028934479,0.842192709445953,0.360669791698456,-0.524287402629852,0.790542244911194,0.316489368677139,-0.331681579351425,0.888959407806396,0.31581375002861,-0.593291282653809,0.71287876367569,0.373910814523697,-0.681716024875641,0.65416294336319,0.327618569135666,-0.524287402629852,0.790542244911194,0.316489368677139,-0.400785028934479,0.842192709445953,0.360669791698456,-0.593291282653809,0.71287876367569,0.373910814523697,-0.524287402629852,0.790542244911194,0.316489368677139,-0.403034508228302,0.800877153873444,0.442898362874985,-0.593291282653809,0.71287876367569,0.373910814523697,-0.400785028934479,0.842192709445953,0.360669791698456,-0.403034508228302,0.800877153873444,0.442898362874985,-0.580230176448822,0.705451190471649,0.40702748298645,-0.593291282653809,0.71287876367569,0.373910814523697,-0.580230176448822,0.705451190471649,0.40702748298645,-0.403034508228302,0.800877153873444,0.442898362874985,-0.47083368897438,0.766032695770264,0.437617868185043,-0.47083368897438,0.766032695770264,0.437617868185043,-0.673294723033905,0.636821389198303,0.37567612528801,-0.580230176448822,0.705451190471649,0.40702748298645,-0.673294723033905,0.636821389198303,0.37567612528801,\r\n-0.47083368897438,0.766032695770264,0.437617868185043,-0.693672299385071,0.639470517635345,0.331505715847015,-0.693672299385071,0.639470517635345,0.331505715847015,-0.47083368897438,0.766032695770264,0.437617868185043,-0.511714220046997,0.761099457740784,0.398592561483383,-0.673294723033905,0.636821389198303,0.37567612528801,-0.693672299385071,0.639470517635345,0.331505715847015,-0.900354981422424,0.397759199142456,0.176488935947418,-0.511714220046997,0.761099457740784,0.398592561483383,-0.805204570293427,0.546985566616058,0.229024559259415,-0.693672299385071,0.639470517635345,0.331505715847015,-0.900354981422424,0.397759199142456,0.176488935947418,-0.693672299385071,0.639470517635345,0.331505715847015,-0.943374633789063,0.302140653133392,0.136949732899666,-0.652809798717499,0.677241683006287,0.339385986328125,-0.805204570293427,0.546985566616058,0.229024559259415,-0.511714220046997,0.761099457740784,0.398592561483383,-0.805204570293427,0.546985566616058,0.229024559259415,-0.943374633789063,0.302140653133392,0.136949732899666,-0.693672299385071,0.639470517635345,0.331505715847015,-0.652809798717499,0.677241683006287,0.339385986328125,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.805204570293427,0.546985566616058,0.229024559259415,-0.350924611091614,0.828971028327942,0.435498356819153,-0.652809798717499,0.677241683006287,0.339385986328125,-0.511714220046997,0.761099457740784,0.398592561483383,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.943374633789063,0.302140653133392,0.136949732899666,-0.805204570293427,0.546985566616058,0.229024559259415,-0.790588080883026,0.591912865638733,0.156874552369118,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.652809798717499,0.677241683006287,0.339385986328125,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.805204570293427,0.546985566616058,0.229024559259415,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.652809798717499,0.677241683006287,0.339385986328125,-0.350924611091614,0.828971028327942,0.435498356819153,-0.478296548128128,0.809032618999481,0.341611415147781,\r\n-0.942041397094727,0.333629459142685,0.0353448241949081,-0.790588080883026,0.591912865638733,0.156874552369118,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.790588080883026,0.591912865638733,0.156874552369118,-0.652809798717499,0.677241683006287,0.339385986328125,-0.478296548128128,0.809032618999481,0.341611415147781,-0.983838260173798,-0.0431407280266285,-0.173784554004669,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.350924611091614,0.828971028327942,0.435498356819153,-0.210136875510216,0.90447986125946,0.371158480644226,-0.478296548128128,0.809032618999481,0.341611415147781,-0.905507743358612,0.406940698623657,-0.120228409767151,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.790588080883026,0.591912865638733,0.156874552369118,-0.942041397094727,0.333629459142685,0.0353448241949081,-0.954597473144531,-0.00291809788905084,-0.297884315252304,-0.800574660301209,-0.392559945583344,-0.452743619680405,-0.629594683647156,0.764622628688812,0.137704744935036,-0.790588080883026,0.591912865638733,0.156874552369118,-0.478296548128128,0.809032618999481,0.341611415147781,-0.399235755205154,0.892464280128479,0.210042789578438,-0.478296548128128,0.809032618999481,0.341611415147781,-0.210136875510216,0.90447986125946,0.371158480644226,-0.790588080883026,0.591912865638733,0.156874552369118,-0.629594683647156,0.764622628688812,0.137704744935036,-0.905507743358612,0.406940698623657,-0.120228409767151,-0.399235755205154,0.892464280128479,0.210042789578438,-0.629594683647156,0.764622628688812,0.137704744935036,-0.478296548128128,0.809032618999481,0.341611415147781,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.399235755205154,0.892464280128479,0.210042789578438,-0.210136875510216,0.90447986125946,0.371158480644226,-0.905507743358612,0.406940698623657,-0.120228409767151,-0.629594683647156,0.764622628688812,0.137704744935036,-0.865359544754028,0.460894554853439,-0.196796774864197,-0.629594683647156,0.764622628688812,0.137704744935036,\r\n-0.399235755205154,0.892464280128479,0.210042789578438,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.399235755205154,0.892464280128479,0.210042789578438,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.134650439023972,0.94197142124176,0.307504057884216,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.210136875510216,0.90447986125946,0.371158480644226,-0.629594683647156,0.764622628688812,0.137704744935036,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.865359544754028,0.460894554853439,-0.196796774864197,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.667168855667114,0.719561874866486,-0.192655846476555,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.134650439023972,0.94197142124176,0.307504057884216,-0.134650439023972,0.94197142124176,0.307504057884216,-0.210136875510216,0.90447986125946,0.371158480644226,0.0905180051922798,0.866768658161163,0.49042683839798,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.728738129138947,0.511489570140839,-0.455322921276093,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.438989728689194,0.896220862865448,0.0638439953327179,-0.0992717891931534,0.983115017414093,0.153720155358315,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.134650439023972,0.94197142124176,0.307504057884216,0.0905180051922798,0.866768658161163,0.49042683839798,0.142591893672943,0.888154745101929,0.436862170696259,-0.134650439023972,0.94197142124176,0.307504057884216,-0.757534384727478,0.546052157878876,-0.357727080583572,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.0992717891931534,0.983115017414093,0.153720155358315,\r\n-0.481663167476654,0.78721672296524,-0.385084807872772,-0.0992717891931534,0.983115017414093,0.153720155358315,-0.134650439023972,0.94197142124176,0.307504057884216,0.142591893672943,0.888154745101929,0.436862170696259,-0.481663167476654,0.78721672296524,-0.385084807872772,-0.655299663543701,0.57027280330658,-0.495349436998367,-0.399762332439423,0.916303753852844,-0.0240312572568655,-0.0992717891931534,0.983115017414093,0.153720155358315,-0.227027699351311,0.973782002925873,-0.0143857775256038,-0.481663167476654,0.78721672296524,-0.385084807872772,0.142591893672943,0.888154745101929,0.436862170696259,0.101576685905457,0.940180599689484,0.325180739164352,-0.0992717891931534,0.983115017414093,0.153720155358315,-0.0992717891931534,0.983115017414093,0.153720155358315,0.101576685905457,0.940180599689484,0.325180739164352,-0.227027699351311,0.973782002925873,-0.0143857775256038,-0.481663167476654,0.78721672296524,-0.385084807872772,-0.227027699351311,0.973782002925873,-0.0143857775256038,-0.627161502838135,0.555069386959076,-0.546411991119385,0.142591893672943,0.888154745101929,0.436862170696259,0.316875010728836,0.818814098834991,0.478678941726685,0.101576685905457,0.940180599689484,0.325180739164352,0.0742268934845924,0.965558469295502,0.249373450875282,-0.227027699351311,0.973782002925873,-0.0143857775256038,0.101576685905457,0.940180599689484,0.325180739164352,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.227027699351311,0.973782002925873,-0.0143857775256038,-0.330974608659744,0.929172575473785,-0.164602696895599,0.316875010728836,0.818814098834991,0.478678941726685,0.0742268934845924,0.965558469295502,0.249373450875282,0.101576685905457,0.940180599689484,0.325180739164352,-0.330974608659744,0.929172575473785,-0.164602696895599,-0.227027699351311,0.973782002925873,-0.0143857775256038,0.0742268934845924,0.965558469295502,0.249373450875282,-0.627161502838135,0.555069386959076,-0.546411991119385,-0.330974608659744,0.929172575473785,-0.164602696895599,-0.620979905128479,0.451020091772079,-0.641065239906311,\r\n0.291788369417191,0.879703402519226,0.375474810600281,0.0742268934845924,0.965558469295502,0.249373450875282,0.316875010728836,0.818814098834991,0.478678941726685,0.0742268934845924,0.965558469295502,0.249373450875282,0.0381486788392067,0.993809878826141,0.104338437318802,-0.330974608659744,0.929172575473785,-0.164602696895599,-0.330974608659744,0.929172575473785,-0.164602696895599,-0.278878301382065,0.911949574947357,-0.300956517457962,-0.620979905128479,0.451020091772079,-0.641065239906311,0.0742268934845924,0.965558469295502,0.249373450875282,0.291788369417191,0.879703402519226,0.375474810600281,0.0381486788392067,0.993809878826141,0.104338437318802,0.291788369417191,0.879703402519226,0.375474810600281,0.316875010728836,0.818814098834991,0.478678941726685,0.458853900432587,0.733976662158966,0.500730693340302,-0.330974608659744,0.929172575473785,-0.164602696895599,0.0381486788392067,0.993809878826141,0.104338437318802,-0.278878301382065,0.911949574947357,-0.300956517457962,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.620979905128479,0.451020091772079,-0.641065239906311,-0.278878301382065,0.911949574947357,-0.300956517457962,0.291788369417191,0.879703402519226,0.375474810600281,0.240779221057892,0.951038718223572,0.193779855966568,0.0381486788392067,0.993809878826141,0.104338437318802,0.291788369417191,0.879703402519226,0.375474810600281,0.458853900432587,0.733976662158966,0.500730693340302,0.441538393497467,0.809811592102051,0.386327385902405,-0.0228468142449856,0.990802228450775,-0.133375227451324,-0.278878301382065,0.911949574947357,-0.300956517457962,0.0381486788392067,0.993809878826141,0.104338437318802,-0.0228468142449856,0.990802228450775,-0.133375227451324,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.278878301382065,0.911949574947357,-0.300956517457962,0.291788369417191,0.879703402519226,0.375474810600281,0.441538393497467,0.809811592102051,0.386327385902405,0.240779221057892,0.951038718223572,0.193779855966568,0.240779221057892,0.951038718223572,0.193779855966568,-0.0228468142449856,0.990802228450775,-0.133375227451324,\r\n0.0381486788392067,0.993809878826141,0.104338437318802,0.552429914474487,0.681873083114624,0.479447722434998,0.441538393497467,0.809811592102051,0.386327385902405,0.458853900432587,0.733976662158966,0.500730693340302,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.0228468142449856,0.990802228450775,-0.133375227451324,-0.202666446566582,0.879656910896301,-0.430267363786697,0.240779221057892,0.951038718223572,0.193779855966568,0.441538393497467,0.809811592102051,0.386327385902405,0.357087850570679,0.920640349388123,0.157827526330948,0.153226852416992,0.987651705741882,-0.032642487436533,-0.0228468142449856,0.990802228450775,-0.133375227451324,0.240779221057892,0.951038718223572,0.193779855966568,0.552429914474487,0.681873083114624,0.479447722434998,0.532086908817291,0.781991720199585,0.324610948562622,0.441538393497467,0.809811592102051,0.386327385902405,0.153226852416992,0.987651705741882,-0.032642487436533,-0.202666446566582,0.879656910896301,-0.430267363786697,-0.0228468142449856,0.990802228450775,-0.133375227451324,-0.449395298957825,0.637455999851227,-0.625854253768921,-0.202666446566582,0.879656910896301,-0.430267363786697,-0.50001734495163,0.301383346319199,-0.811880946159363,0.357087850570679,0.920640349388123,0.157827526330948,0.441538393497467,0.809811592102051,0.386327385902405,0.532086908817291,0.781991720199585,0.324610948562622,0.153226852416992,0.987651705741882,-0.032642487436533,0.240779221057892,0.951038718223572,0.193779855966568,0.357087850570679,0.920640349388123,0.157827526330948,0.552429914474487,0.681873083114624,0.479447722434998,0.678956270217896,0.588558197021484,0.438882082700729,0.532086908817291,0.781991720199585,0.324610948562622,0.11612243950367,0.941549956798553,-0.316226452589035,-0.202666446566582,0.879656910896301,-0.430267363786697,0.153226852416992,0.987651705741882,-0.032642487436533,-0.189817383885384,0.709078967571259,-0.679099559783936,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.202666446566582,0.879656910896301,-0.430267363786697,0.392968505620956,0.918508470058441,0.0437928214669228,\r\n0.357087850570679,0.920640349388123,0.157827526330948,0.532086908817291,0.781991720199585,0.324610948562622,0.153226852416992,0.987651705741882,-0.032642487436533,0.357087850570679,0.920640349388123,0.157827526330948,0.11612243950367,0.941549956798553,-0.316226452589035,0.692304253578186,0.683771908283234,0.230587586760521,0.532086908817291,0.781991720199585,0.324610948562622,0.678956270217896,0.588558197021484,0.438882082700729,-0.189817383885384,0.709078967571259,-0.679099559783936,-0.202666446566582,0.879656910896301,-0.430267363786697,0.11612243950367,0.941549956798553,-0.316226452589035,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.189817383885384,0.709078967571259,-0.679099559783936,-0.258229225873947,0.53266853094101,-0.805966317653656,0.392968505620956,0.918508470058441,0.0437928214669228,0.11612243950367,0.941549956798553,-0.316226452589035,0.357087850570679,0.920640349388123,0.157827526330948,0.392968505620956,0.918508470058441,0.0437928214669228,0.532086908817291,0.781991720199585,0.324610948562622,0.537665963172913,0.830786883831024,0.143903747200966,0.537665963172913,0.830786883831024,0.143903747200966,0.532086908817291,0.781991720199585,0.324610948562622,0.692304253578186,0.683771908283234,0.230587586760521,0.692304253578186,0.683771908283234,0.230587586760521,0.678956270217896,0.588558197021484,0.438882082700729,0.78973776102066,0.517282128334045,0.329747319221497,-0.258229225873947,0.53266853094101,-0.805966317653656,-0.189817383885384,0.709078967571259,-0.679099559783936,0.11612243950367,0.941549956798553,-0.316226452589035,-0.50001734495163,0.301383346319199,-0.811880946159363,-0.258229225873947,0.53266853094101,-0.805966317653656,-0.558971881866455,0.0223034080117941,-0.82888650894165,0.11612243950367,0.941549956798553,-0.316226452589035,0.392968505620956,0.918508470058441,0.0437928214669228,0.212079614400864,0.889915227890015,-0.403823018074036,0.392968505620956,0.918508470058441,0.0437928214669228,0.537665963172913,0.830786883831024,0.143903747200966,0.212079614400864,0.889915227890015,-0.403823018074036,\r\n0.692304253578186,0.683771908283234,0.230587586760521,0.66941499710083,0.715507328510284,-0.199831277132034,0.537665963172913,0.830786883831024,0.143903747200966,0.692304253578186,0.683771908283234,0.230587586760521,0.78973776102066,0.517282128334045,0.329747319221497,0.777567386627197,0.628122866153717,0.029161898419261,-0.258229225873947,0.53266853094101,-0.805966317653656,0.11612243950367,0.941549956798553,-0.316226452589035,0.212079614400864,0.889915227890015,-0.403823018074036,-0.258229225873947,0.53266853094101,-0.805966317653656,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.558971881866455,0.0223034080117941,-0.82888650894165,0.212079614400864,0.889915227890015,-0.403823018074036,0.537665963172913,0.830786883831024,0.143903747200966,0.493837267160416,0.864870131015778,-0.0901349186897278,0.777567386627197,0.628122866153717,0.029161898419261,0.66941499710083,0.715507328510284,-0.199831277132034,0.692304253578186,0.683771908283234,0.230587586760521,0.493837267160416,0.864870131015778,-0.0901349186897278,0.537665963172913,0.830786883831024,0.143903747200966,0.66941499710083,0.715507328510284,-0.199831277132034,0.777567386627197,0.628122866153717,0.029161898419261,0.78973776102066,0.517282128334045,0.329747319221497,0.86332380771637,0.446198761463165,0.235751062631607,-0.258229225873947,0.53266853094101,-0.805966317653656,0.212079614400864,0.889915227890015,-0.403823018074036,-0.139212444424629,0.492664337158203,-0.859012007713318,-0.258229225873947,0.53266853094101,-0.805966317653656,-0.139212444424629,0.492664337158203,-0.859012007713318,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.558971881866455,0.0223034080117941,-0.82888650894165,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.517861127853394,-0.0313512794673443,-0.854889929294586,0.212079614400864,0.889915227890015,-0.403823018074036,0.493837267160416,0.864870131015778,-0.0901349186897278,0.66941499710083,0.715507328510284,-0.199831277132034,0.777567386627197,0.628122866153717,0.029161898419261,0.298005431890488,0.607091069221497,-0.736636281013489,\r\n0.66941499710083,0.715507328510284,-0.199831277132034,0.260190308094025,0.600193023681641,-0.756352543830872,-0.139212444424629,0.492664337158203,-0.859012007713318,0.212079614400864,0.889915227890015,-0.403823018074036,-0.139212444424629,0.492664337158203,-0.859012007713318,-0.155990317463875,0.175203636288643,-0.972096025943756,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.399341255426407,0.149480476975441,-0.904534161090851,-0.155990317463875,0.175203636288643,-0.972096025943756,-0.517861127853394,-0.0313512794673443,-0.854889929294586,0.260190308094025,0.600193023681641,-0.756352543830872,0.212079614400864,0.889915227890015,-0.403823018074036,0.66941499710083,0.715507328510284,-0.199831277132034,0.298005431890488,0.607091069221497,-0.736636281013489,0.260190308094025,0.600193023681641,-0.756352543830872,0.66941499710083,0.715507328510284,-0.199831277132034,-0.139212444424629,0.492664337158203,-0.859012007713318,0.260190308094025,0.600193023681641,-0.756352543830872,-0.155990317463875,0.175203636288643,-0.972096025943756,0.298005431890488,0.607091069221497,-0.736636281013489,-0.155990317463875,0.175203636288643,-0.972096025943756,0.260190308094025,0.600193023681641,-0.756352543830872,0.777567386627197,0.628122866153717,0.029161898419261,0.86332380771637,0.446198761463165,0.235751062631607,0.689971089363098,0.722794830799103,-0.0388253480195999,0.777567386627197,0.628122866153717,0.029161898419261,0.689971089363098,0.722794830799103,-0.0388253480195999,0.298005431890488,0.607091069221497,-0.736636281013489,0.902410924434662,0.430667549371719,-0.0134096303954721,0.689971089363098,0.722794830799103,-0.0388253480195999,0.86332380771637,0.446198761463165,0.235751062631607,-0.155990317463875,0.175203636288643,-0.972096025943756,-0.2538241147995,0.196635499596596,-0.947052121162415,-0.517861127853394,-0.0313512794673443,-0.854889929294586,0.298005431890488,0.607091069221497,-0.736636281013489,0.689971089363098,0.722794830799103,-0.0388253480195999,0.640661597251892,0.678450345993042,-0.359524220228195,0.689971089363098,0.722794830799103,-0.0388253480195999,\r\n0.902410924434662,0.430667549371719,-0.0134096303954721,0.640661597251892,0.678450345993042,-0.359524220228195,0.902410924434662,0.430667549371719,-0.0134096303954721,0.86332380771637,0.446198761463165,0.235751062631607,0.950215816497803,0.274013519287109,0.148345306515694,-0.155990317463875,0.175203636288643,-0.972096025943756,0.298005431890488,0.607091069221497,-0.736636281013489,-0.2538241147995,0.196635499596596,-0.947052121162415,0.567006945610046,0.458186358213425,-0.684520423412323,0.298005431890488,0.607091069221497,-0.736636281013489,0.640661597251892,0.678450345993042,-0.359524220228195,0.567006945610046,0.458186358213425,-0.684520423412323,0.640661597251892,0.678450345993042,-0.359524220228195,0.902410924434662,0.430667549371719,-0.0134096303954721,0.9326211810112,0.300039708614349,-0.200483843684196,0.902410924434662,0.430667549371719,-0.0134096303954721,0.950215816497803,0.274013519287109,0.148345306515694,0.298005431890488,0.607091069221497,-0.736636281013489,-0.0479806922376156,0.281917631626129,-0.958238065242767,-0.2538241147995,0.196635499596596,-0.947052121162415,0.567006945610046,0.458186358213425,-0.684520423412323,-0.0479806922376156,0.281917631626129,-0.958238065242767,0.298005431890488,0.607091069221497,-0.736636281013489,0.567006945610046,0.458186358213425,-0.684520423412323,0.902410924434662,0.430667549371719,-0.0134096303954721,0.9326211810112,0.300039708614349,-0.200483843684196,0.9326211810112,0.300039708614349,-0.200483843684196,0.950215816497803,0.274013519287109,0.148345306515694,0.983355939388275,0.151628792285919,0.100098095834255,-0.2538241147995,0.196635499596596,-0.947052121162415,-0.0479806922376156,0.281917631626129,-0.958238065242767,-0.334265798330307,0.0702492967247963,-0.939857065677643,0.567006945610046,0.458186358213425,-0.684520423412323,0.487372934818268,0.256327331066132,-0.834723830223084,-0.0479806922376156,0.281917631626129,-0.958238065242767,0.567006945610046,0.458186358213425,-0.684520423412323,0.9326211810112,0.300039708614349,-0.200483843684196,0.487372934818268,0.256327331066132,-0.834723830223084,\r\n0.9326211810112,0.300039708614349,-0.200483843684196,0.983355939388275,0.151628792285919,0.100098095834255,0.911339044570923,0.240983784198761,-0.333748161792755,-0.0479806922376156,0.281917631626129,-0.958238065242767,-0.138682052493095,0.0998300090432167,-0.985292434692383,-0.334265798330307,0.0702492967247963,-0.939857065677643,0.487372934818268,0.256327331066132,-0.834723830223084,-0.138682052493095,0.0998300090432167,-0.985292434692383,-0.0479806922376156,0.281917631626129,-0.958238065242767,0.9326211810112,0.300039708614349,-0.200483843684196,0.911339044570923,0.240983784198761,-0.333748161792755,0.487372934818268,0.256327331066132,-0.834723830223084,0.983355939388275,0.151628792285919,0.100098095834255,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.911339044570923,0.240983784198761,-0.333748161792755,-0.138682052493095,0.0998300090432167,-0.985292434692383,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.334265798330307,0.0702492967247963,-0.939857065677643,0.293303906917572,0.188983663916588,-0.937154173851013,-0.138682052493095,0.0998300090432167,-0.985292434692383,0.487372934818268,0.256327331066132,-0.834723830223084,0.293303906917572,0.188983663916588,-0.937154173851013,0.487372934818268,0.256327331066132,-0.834723830223084,0.911339044570923,0.240983784198761,-0.333748161792755,0.990151345729828,0.0489564053714275,0.131162285804749,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.983355939388275,0.151628792285919,0.100098095834255,0.911339044570923,0.240983784198761,-0.333748161792755,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.831472158432007,0.23171629011631,-0.504937171936035,-0.241671726107597,0.0245706085115671,-0.970046877861023,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.138682052493095,0.0998300090432167,-0.985292434692383,0.293303906917572,0.188983663916588,-0.937154173851013,-0.241671726107597,0.0245706085115671,-0.970046877861023,-0.138682052493095,0.0998300090432167,-0.985292434692383,0.911339044570923,0.240983784198761,-0.333748161792755,\r\n0.831472158432007,0.23171629011631,-0.504937171936035,0.293303906917572,0.188983663916588,-0.937154173851013,0.951134741306305,-0.154016524553299,-0.26762181520462,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.990151345729828,0.0489564053714275,0.131162285804749,0.831472158432007,0.23171629011631,-0.504937171936035,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.883360981941223,-0.0354714579880238,-0.467348873615265,-0.348505616188049,-0.0962213128805161,-0.932354629039764,-0.465555250644684,-0.0485031455755234,-0.883688628673553,-0.241671726107597,0.0245706085115671,-0.970046877861023,-0.241671726107597,0.0245706085115671,-0.970046877861023,0.293303906917572,0.188983663916588,-0.937154173851013,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.293303906917572,0.188983663916588,-0.937154173851013,0.831472158432007,0.23171629011631,-0.504937171936035,0.467602103948593,0.0666474103927612,-0.881422877311707,0.951134741306305,-0.154016524553299,-0.26762181520462,0.883360981941223,-0.0354714579880238,-0.467348873615265,0.99692714214325,0.0783278048038483,-0.00101123040076345,0.951134741306305,-0.154016524553299,-0.26762181520462,0.990151345729828,0.0489564053714275,0.131162285804749,0.995206952095032,-0.0210538748651743,0.095497228205204,0.467602103948593,0.0666474103927612,-0.881422877311707,0.831472158432007,0.23171629011631,-0.504937171936035,0.883360981941223,-0.0354714579880238,-0.467348873615265,-0.241671726107597,0.0245706085115671,-0.970046877861023,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,-0.348505616188049,-0.0962213128805161,-0.932354629039764,0.467602103948593,0.0666474103927612,-0.881422877311707,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.293303906917572,0.188983663916588,-0.937154173851013,0.951134741306305,-0.154016524553299,-0.26762181520462,0.501327335834503,-0.13983553647995,-0.853883326053619,0.883360981941223,-0.0354714579880238,-0.467348873615265,0.976718485355377,-0.173597082495689,-0.126035705208778,0.951134741306305,-0.154016524553299,-0.26762181520462,\r\n0.995206952095032,-0.0210538748651743,0.095497228205204,0.467602103948593,0.0666474103927612,-0.881422877311707,0.883360981941223,-0.0354714579880238,-0.467348873615265,0.501327335834503,-0.13983553647995,-0.853883326053619,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.00353197078220546,-0.142815634608269,-0.989742934703827,-0.348505616188049,-0.0962213128805161,-0.932354629039764,0.467602103948593,0.0666474103927612,-0.881422877311707,0.501327335834503,-0.13983553647995,-0.853883326053619,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.417570412158966,-0.274832725524902,-0.866084218025208,0.501327335834503,-0.13983553647995,-0.853883326053619,0.951134741306305,-0.154016524553299,-0.26762181520462,0.951134741306305,-0.154016524553299,-0.26762181520462,0.976718485355377,-0.173597082495689,-0.126035705208778,0.722142517566681,-0.262055605649948,-0.640185117721558,0.995206952095032,-0.0210538748651743,0.095497228205204,0.986194014549255,-0.121706694364548,0.112288370728493,0.976718485355377,-0.173597082495689,-0.126035705208778,-0.0308960154652596,-0.00956684350967407,-0.999476790428162,0.501327335834503,-0.13983553647995,-0.853883326053619,0.00353197078220546,-0.142815634608269,-0.989742934703827,-0.348505616188049,-0.0962213128805161,-0.932354629039764,0.00353197078220546,-0.142815634608269,-0.989742934703827,-0.228636085987091,-0.203442096710205,-0.952017188072205,0.417570412158966,-0.274832725524902,-0.866084218025208,0.00353197078220546,-0.142815634608269,-0.989742934703827,0.501327335834503,-0.13983553647995,-0.853883326053619,0.722142517566681,-0.262055605649948,-0.640185117721558,0.417570412158966,-0.274832725524902,-0.866084218025208,0.951134741306305,-0.154016524553299,-0.26762181520462,0.722142517566681,-0.262055605649948,-0.640185117721558,0.976718485355377,-0.173597082495689,-0.126035705208778,0.780369758605957,-0.339860379695892,-0.524897873401642,0.976718485355377,-0.173597082495689,-0.126035705208778,0.986194014549255,-0.121706694364548,0.112288370728493,0.932361483573914,-0.308132141828537,-0.189094036817551,\r\n0.00353197078220546,-0.142815634608269,-0.989742934703827,0.417570412158966,-0.274832725524902,-0.866084218025208,-0.228636085987091,-0.203442096710205,-0.952017188072205,0.0523047484457493,-0.271629929542542,-0.960979342460632,0.417570412158966,-0.274832725524902,-0.866084218025208,0.722142517566681,-0.262055605649948,-0.640185117721558,0.976718485355377,-0.173597082495689,-0.126035705208778,0.932361483573914,-0.308132141828537,-0.189094036817551,0.780369758605957,-0.339860379695892,-0.524897873401642,0.722142517566681,-0.262055605649948,-0.640185117721558,0.780369758605957,-0.339860379695892,-0.524897873401642,0.310634136199951,-0.352414071559906,-0.882785737514496,0.986194014549255,-0.121706694364548,0.112288370728493,0.972024917602539,-0.229633763432503,0.0493537932634354,0.932361483573914,-0.308132141828537,-0.189094036817551,-0.228636085987091,-0.203442096710205,-0.952017188072205,0.417570412158966,-0.274832725524902,-0.866084218025208,0.0523047484457493,-0.271629929542542,-0.960979342460632,0.310634136199951,-0.352414071559906,-0.882785737514496,0.0523047484457493,-0.271629929542542,-0.960979342460632,0.722142517566681,-0.262055605649948,-0.640185117721558,0.932361483573914,-0.308132141828537,-0.189094036817551,0.509033262729645,-0.446508765220642,-0.735876977443695,0.780369758605957,-0.339860379695892,-0.524897873401642,0.310634136199951,-0.352414071559906,-0.882785737514496,0.780369758605957,-0.339860379695892,-0.524897873401642,0.509033262729645,-0.446508765220642,-0.735876977443695,0.880154311656952,-0.393603354692459,-0.265338897705078,0.932361483573914,-0.308132141828537,-0.189094036817551,0.972024917602539,-0.229633763432503,0.0493537932634354,0.310634136199951,-0.352414071559906,-0.882785737514496,-0.115175165235996,-0.334916055202484,-0.935182213783264,0.0523047484457493,-0.271629929542542,-0.960979342460632,0.880154311656952,-0.393603354692459,-0.265338897705078,0.509033262729645,-0.446508765220642,-0.735876977443695,0.932361483573914,-0.308132141828537,-0.189094036817551,0.310634136199951,-0.352414071559906,-0.882785737514496,\r\n0.509033262729645,-0.446508765220642,-0.735876977443695,-0.115175165235996,-0.334916055202484,-0.935182213783264,0.972024917602539,-0.229633763432503,0.0493537932634354,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.880154311656952,-0.393603354692459,-0.265338897705078,0.509033262729645,-0.446508765220642,-0.735876977443695,0.880154311656952,-0.393603354692459,-0.265338897705078,0.481749385595322,-0.520523130893707,-0.704963147640228,0.00190833199303597,-0.377771496772766,-0.925896883010864,-0.115175165235996,-0.334916055202484,-0.935182213783264,0.509033262729645,-0.446508765220642,-0.735876977443695,0.880154311656952,-0.393603354692459,-0.265338897705078,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.796639502048492,-0.524639844894409,-0.300197184085846,0.481749385595322,-0.520523130893707,-0.704963147640228,0.880154311656952,-0.393603354692459,-0.265338897705078,0.796639502048492,-0.524639844894409,-0.300197184085846,0.509033262729645,-0.446508765220642,-0.735876977443695,0.481749385595322,-0.520523130893707,-0.704963147640228,0.00190833199303597,-0.377771496772766,-0.925896883010864,0.947608292102814,-0.319333165884018,-0.00804164633154869,0.8987837433815,-0.422688126564026,-0.116285927593708,0.796639502048492,-0.524639844894409,-0.300197184085846,0.481749385595322,-0.520523130893707,-0.704963147640228,0.796639502048492,-0.524639844894409,-0.300197184085846,0.32957512140274,-0.675335943698883,-0.659773766994476,0.481749385595322,-0.520523130893707,-0.704963147640228,-0.0788229927420616,-0.479235231876373,-0.874139785766602,0.00190833199303597,-0.377771496772766,-0.925896883010864,0.8987837433815,-0.422688126564026,-0.116285927593708,0.558652281761169,-0.65938538312912,-0.503108680248261,0.796639502048492,-0.524639844894409,-0.300197184085846,0.558652281761169,-0.65938538312912,-0.503108680248261,0.32957512140274,-0.675335943698883,-0.659773766994476,0.796639502048492,-0.524639844894409,-0.300197184085846,0.481749385595322,-0.520523130893707,-0.704963147640228,0.32957512140274,-0.675335943698883,-0.659773766994476,\r\n-0.0788229927420616,-0.479235231876373,-0.874139785766602,0.558652281761169,-0.65938538312912,-0.503108680248261,0.8987837433815,-0.422688126564026,-0.116285927593708,0.679299175739288,-0.588134527206421,-0.438919574022293,0.558652281761169,-0.65938538312912,-0.503108680248261,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.32957512140274,-0.675335943698883,-0.659773766994476,-0.0788229927420616,-0.479235231876373,-0.874139785766602,0.32957512140274,-0.675335943698883,-0.659773766994476,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.844319641590118,-0.509151935577393,-0.166998520493507,0.679299175739288,-0.588134527206421,-0.438919574022293,0.8987837433815,-0.422688126564026,-0.116285927593708,0.558652281761169,-0.65938538312912,-0.503108680248261,0.679299175739288,-0.588134527206421,-0.438919574022293,0.164703354239464,-0.624059855937958,-0.763820588588715,0.164703354239464,-0.624059855937958,-0.763820588588715,-0.0880248695611954,-0.598908722400665,-0.79596471786499,0.558652281761169,-0.65938538312912,-0.503108680248261,0.844319641590118,-0.509151935577393,-0.166998520493507,0.541086077690125,-0.69378674030304,-0.475274264812469,0.679299175739288,-0.588134527206421,-0.438919574022293,0.164703354239464,-0.624059855937958,-0.763820588588715,0.679299175739288,-0.588134527206421,-0.438919574022293,0.541086077690125,-0.69378674030304,-0.475274264812469,0.782150328159332,-0.586284458637238,-0.210976868867874,0.541086077690125,-0.69378674030304,-0.475274264812469,0.844319641590118,-0.509151935577393,-0.166998520493507,0.164703354239464,-0.624059855937958,-0.763820588588715,0.541086077690125,-0.69378674030304,-0.475274264812469,0.0905409827828407,-0.704576671123505,-0.703828036785126,0.782150328159332,-0.586284458637238,-0.210976868867874,0.282944470643997,-0.781816124916077,-0.555613100528717,0.541086077690125,-0.69378674030304,-0.475274264812469,0.282944470643997,-0.781816124916077,-0.555613100528717,0.0905409827828407,-0.704576671123505,-0.703828036785126,0.541086077690125,-0.69378674030304,-0.475274264812469,\r\n0.698516190052032,-0.643461227416992,-0.31310161948204,0.282944470643997,-0.781816124916077,-0.555613100528717,0.782150328159332,-0.586284458637238,-0.210976868867874,0.0905409827828407,-0.704576671123505,-0.703828036785126,0.282944470643997,-0.781816124916077,-0.555613100528717,-0.177448913455009,-0.687497437000275,-0.704172551631927,0.237520799040794,-0.773743450641632,-0.587285935878754,0.282944470643997,-0.781816124916077,-0.555613100528717,0.698516190052032,-0.643461227416992,-0.31310161948204,0.282944470643997,-0.781816124916077,-0.555613100528717,-0.294139981269836,-0.626961529254913,-0.721387982368469,-0.177448913455009,-0.687497437000275,-0.704172551631927,0.237520799040794,-0.773743450641632,-0.587285935878754,-0.294139981269836,-0.626961529254913,-0.721387982368469,0.282944470643997,-0.781816124916077,-0.555613100528717,0.698516190052032,-0.643461227416992,-0.31310161948204,0.626310408115387,-0.733514249324799,-0.263992100954056,0.237520799040794,-0.773743450641632,-0.587285935878754,-0.229001119732857,-0.722850382328033,-0.651955246925354,-0.294139981269836,-0.626961529254913,-0.721387982368469,0.237520799040794,-0.773743450641632,-0.587285935878754,0.237520799040794,-0.773743450641632,-0.587285935878754,0.626310408115387,-0.733514249324799,-0.263992100954056,0.218011647462845,-0.825384795665741,-0.520778954029083,0.218011647462845,-0.825384795665741,-0.520778954029083,-0.229001119732857,-0.722850382328033,-0.651955246925354,0.237520799040794,-0.773743450641632,-0.587285935878754,-0.229001119732857,-0.722850382328033,-0.651955246925354,0.218011647462845,-0.825384795665741,-0.520778954029083,-0.589365839958191,-0.555926442146301,-0.586168467998505,-0.589365839958191,-0.555926442146301,-0.586168467998505,0.218011647462845,-0.825384795665741,-0.520778954029083,-0.323904097080231,-0.644972205162048,-0.692168176174164,0.178219750523567,-0.795235157012939,-0.579515874385834,-0.323904097080231,-0.644972205162048,-0.692168176174164,0.218011647462845,-0.825384795665741,-0.520778954029083,-0.589365839958191,-0.555926442146301,-0.586168467998505,\r\n-0.323904097080231,-0.644972205162048,-0.692168176174164,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.323904097080231,-0.644972205162048,-0.692168176174164,0.178219750523567,-0.795235157012939,-0.579515874385834,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.815479338169098,-0.268738687038422,-0.512613713741302,-0.323904097080231,-0.644972205162048,-0.692168176174164,0.178219750523567,-0.795235157012939,-0.579515874385834,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.323904097080231,-0.644972205162048,-0.692168176174164,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.689245283603668,-0.415547698736191,-0.593515694141388,0.178219750523567,-0.795235157012939,-0.579515874385834,0.458349376916885,-0.806909620761871,-0.372575521469116,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.689245283603668,-0.415547698736191,-0.593515694141388,-0.254218697547913,-0.721252083778381,-0.644335389137268,-0.0343982242047787,-0.849719643592834,-0.526111423969269,0.458349376916885,-0.806909620761871,-0.372575521469116,0.194269239902496,-0.888628721237183,-0.415449678897858,-0.542487263679504,-0.638179540634155,-0.546291530132294,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.274226635694504,-0.817692697048187,-0.50614058971405,0.194269239902496,-0.888628721237183,-0.415449678897858,-0.274226635694504,-0.817692697048187,-0.50614058971405,-0.0343982242047787,-0.849719643592834,-0.526111423969269,-0.274226635694504,-0.817692697048187,-0.50614058971405,0.194269239902496,-0.888628721237183,-0.415449678897858,-0.0317179150879383,-0.89952427148819,-0.435717821121216,0.194269239902496,-0.888628721237183,-0.415449678897858,0.279122710227966,-0.892987966537476,-0.35307639837265,\r\n-0.0317179150879383,-0.89952427148819,-0.435717821121216,0.29568013548851,-0.895565807819366,-0.332468032836914,-0.0317179150879383,-0.89952427148819,-0.435717821121216,0.279122710227966,-0.892987966537476,-0.35307639837265,0.12588806450367,-0.92530483007431,-0.357719331979752,-0.0317179150879383,-0.89952427148819,-0.435717821121216,0.29568013548851,-0.895565807819366,-0.332468032836914,0.465740203857422,-0.842628657817841,-0.270301431417465,0.12588806450367,-0.92530483007431,-0.357719331979752,0.29568013548851,-0.895565807819366,-0.332468032836914,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.141162976622581,-0.383272290229797,-0.912784337997437,-0.103354178369045,-0.423040568828583,-0.90019690990448,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.15397983789444,-0.384853780269623,-0.910042643547058,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.141162976622581,-0.383272290229797,-0.912784337997437,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.0762273445725441,-0.47655987739563,-0.875831007957459,\r\n-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.177261054515839,-0.347469091415405,-0.92078423500061,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.141162976622581,-0.383272290229797,-0.912784337997437,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.0762273445725441,-0.47655987739563,-0.875831007957459,-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.203420758247375,-0.290740013122559,-0.934927880764008,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.141162976622581,-0.383272290229797,-0.912784337997437,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.319442838430405,-0.244591385126114,-0.915495097637177,\r\n-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.19807280600071,-0.327413201332092,-0.923887252807617,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.160240605473518,-0.413350194692612,-0.896361768245697,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.294238895177841,-0.2286007553339,-0.927989780902863,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.255490452051163,-0.23562216758728,-0.937660217285156,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.297000348567963,-0.177909344434738,-0.938157200813293,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.213235542178154,-0.295109003782272,-0.931365191936493,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.2444858700037,-0.303027719259262,-0.921086728572845,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.247098609805107,-0.378908097743988,-0.891835629940033,\r\n-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.2444858700037,-0.303027719259262,-0.921086728572845,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.191180720925331,-0.352346926927567,-0.916133940219879,-0.2444858700037,-0.303027719259262,-0.921086728572845,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.134643882513046,-0.421502709388733,-0.896775543689728,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.377615541219711,-0.156039506196976,-0.912720143795013,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.319442838430405,-0.244591385126114,-0.915495097637177,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.247098609805107,-0.378908097743988,-0.891835629940033,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.104181073606014,-0.521702945232391,-0.84674209356308,-0.0970537289977074,-0.551767885684967,-0.828331232070923,\r\n-0.410482943058014,-0.074946328997612,-0.908783078193665,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.357868403196335,-0.0783951729536057,-0.930475294589996,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.310144990682602,-0.152985215187073,-0.938299298286438,-0.407360076904297,0.0100348247215152,-0.913212478160858,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.262406408786774,-0.236945912241936,-0.93541407585144,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.2444858700037,-0.303027719259262,-0.921086728572845,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.182984232902527,-0.417932957410812,-0.889858782291412,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.40399494767189,-0.184336498379707,-0.895995557308197,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.0970537289977074,-0.551767885684967,-0.828331232070923,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.494953453540802,0.061847273260355,-0.866715550422668,-0.501462697982788,-0.00266003399156034,-0.865175068378448,-0.527705132961273,0.0681223496794701,-0.846691370010376,\r\n-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.364160031080246,-0.0694103538990021,-0.928746223449707,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.220119193196297,-0.34867450594902,-0.911028802394867,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.527705132961273,0.0681223496794701,-0.846691370010376,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.477289378643036,-0.0511281564831734,-0.877257466316223,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.184469699859619,-0.456980168819427,-0.870137870311737,-0.345758050680161,-0.289344489574432,-0.892597913742065,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.418920934200287,-0.0193157885223627,-0.907817184925079,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.30936536192894,-0.201121121644974,-0.929431676864624,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.461345136165619,-0.104360960423946,-0.881061494350433,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.377678275108337,-0.292435228824615,-0.878544569015503,\r\n-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.276764661073685,-0.298260986804962,-0.913477718830109,-0.368102520704269,-0.141905561089516,-0.918892383575439,-0.316790461540222,-0.239248141646385,-0.917825698852539,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.521974503993988,0.0146251274272799,-0.852835595607758,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.160073459148407,-0.505856573581696,-0.847635209560394,-0.156739294528961,-0.530167639255524,-0.833279609680176,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.281248182058334,-0.376822054386139,-0.882555663585663,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.4259212911129,-0.200448662042618,-0.882276237010956,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.498620599508286,-0.065055325627327,-0.864375591278076,-0.156739294528961,-0.530167639255524,-0.833279609680176,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.485192507505417,-0.141312494874001,-0.862913012504578,-0.309157609939575,-0.378721058368683,-0.872348487377167,\r\n-0.258182257413864,-0.449599862098694,-0.855103373527527,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.377678275108337,-0.292435228824615,-0.878544569015503,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.423335134983063,-0.197044551372528,-0.884285271167755,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.524719893932343,-0.0277547519654036,-0.850822269916534,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.207523912191391,-0.489217460155487,-0.847112715244293,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.309157609939575,-0.378721058368683,-0.872348487377167,-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.342594265937805,-0.301313787698746,-0.889853358268738,\r\n-0.250841170549393,-0.424099117517471,-0.870183050632477,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.342594265937805,-0.301313787698746,-0.889853358268738,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.445915430784225,-0.124628864228725,-0.886355996131897,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.49146232008934,-0.0840618088841438,-0.866832315921783,-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.544984877109528,0.033917386084795,-0.837759494781494,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.29824087023735,-0.384383797645569,-0.873671174049377,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.207031965255737,-0.494574069976807,-0.844117343425751,-0.402132332324982,-0.232918575406075,-0.885459423065186,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.543747067451477,-0.00784854963421822,-0.839212357997894,\r\n-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.282845854759216,-0.418496757745743,-0.863051891326904,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.472522348165512,-0.147894248366356,-0.86882096529007,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.543747067451477,-0.00784854963421822,-0.839212357997894,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.26857390999794,-0.466782569885254,-0.842604279518127,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.384363174438477,-0.29156619310379,-0.875930368900299,-0.495766550302505,-0.124136529862881,-0.859537959098816,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.605161845684052,0.0932225584983826,-0.790625393390656,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.656244695186615,0.167765647172928,-0.735661208629608,\r\n-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.351598620414734,-0.374402195215225,-0.85802173614502,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.571556150913239,-0.0298572555184364,-0.820019483566284,-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.463316768407822,-0.204713359475136,-0.86222380399704,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.322462350130081,-0.41818904876709,-0.849197149276733,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.584866523742676,-0.0540646351873875,-0.809325635433197,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.613461315631866,0.0716683119535446,-0.78646594285965,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.656244695186615,0.167765647172928,-0.735661208629608,-0.488873928785324,-0.175844103097916,-0.854447782039642,\r\n-0.523868024349213,-0.144636243581772,-0.83942985534668,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.427561700344086,-0.305727809667587,-0.850718140602112,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.380192220211029,-0.242155939340591,-0.89264452457428,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.570946753025055,-0.00283921393565834,-0.820982098579407,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.621401250362396,0.11330384016037,-0.775256454944611,-0.684755086898804,0.232766196131706,-0.690601348876953,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.380192220211029,-0.242155939340591,-0.89264452457428,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.488873928785324,-0.175844103097916,-0.854447782039642,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.380192220211029,-0.242155939340591,-0.89264452457428,-0.342664122581482,-0.327983170747757,-0.880345523357391,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.475844830274582,-0.0902857258915901,-0.874882876873016,\r\n-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.475844830274582,-0.0902857258915901,-0.874882876873016,-0.511155128479004,-0.0751373246312141,-0.856197774410248,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.380192220211029,-0.242155939340591,-0.89264452457428,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.475844830274582,-0.0902857258915901,-0.874882876873016,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.475844830274582,-0.0902857258915901,-0.874882876873016,-0.6242755651474,0.15438324213028,-0.765797436237335,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.693003118038177,0.275843530893326,-0.666075706481934,-0.441275179386139,-0.185230329632759,-0.878046631813049,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.528958678245544,0.0225066151469946,-0.84834897518158,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.475844830274582,-0.0902857258915901,-0.874882876873016,-0.391232490539551,-0.186095669865608,-0.901279866695404,\r\n-0.478839069604874,0.186456322669983,-0.857873618602753,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.551616787910461,0.13411907851696,-0.823244094848633,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.341610372066498,-0.279393762350082,-0.897352397441864,-0.281331807374954,-0.294681221246719,-0.913244366645813,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.596718966960907,0.25280749797821,-0.761586964130402,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.649209976196289,0.372879147529602,-0.662938416004181,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.391232490539551,-0.186095669865608,-0.901279866695404,-0.281331807374954,-0.294681221246719,-0.913244366645813,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.296341300010681,-0.145342439413071,-0.943958282470703,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.273532658815384,0.13772913813591,-0.95195084810257,\r\n-0.434198677539825,0.0786142274737358,-0.897380173206329,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.296341300010681,-0.145342439413071,-0.943958282470703,-0.402011513710022,-0.0612742193043232,-0.913582026958466,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.478839069604874,0.186456322669983,-0.857873618602753,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.296341300010681,-0.145342439413071,-0.943958282470703,-0.273532658815384,0.13772913813591,-0.95195084810257,-0.303342044353485,-0.0325490608811378,-0.952325582504272,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,-0.322760671377182,-0.211426883935928,-0.922563910484314,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.296341300010681,-0.145342439413071,-0.943958282470703,-0.493766754865646,0.285687506198883,-0.821326375007629,-0.370775729417801,0.254168808460236,-0.893265604972839,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.376515060663223,0.377286076545715,-0.846103727817535,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.517750918865204,0.384319126605988,-0.764351189136505,-0.545680463314056,0.508948564529419,-0.66573566198349,-0.323579967021942,0.549561381340027,-0.770245492458344,-0.449537098407745,0.684517741203308,-0.573891639709473,-0.0464253909885883,-0.0177971906960011,-0.998763144016266,-0.303342044353485,-0.0325490608811378,-0.952325582504272,\r\n-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.227206453680992,-0.267461210489273,-0.936398208141327,-0.162020012736321,-0.159517049789429,-0.973808765411377,-0.296341300010681,-0.145342439413071,-0.943958282470703,0.821252405643463,0.430427610874176,0.37453505396843,0.690792083740234,0.72295081615448,0.0121760629117489,0.779515206813812,0.425029695034027,0.46011483669281,0.787440359592438,0.616327285766602,0.00884426943957806,0.690792083740234,0.72295081615448,0.0121760629117489,0.821252405643463,0.430427610874176,0.37453505396843,0.842786490917206,0.344725906848907,0.413370043039322,0.821252405643463,0.430427610874176,0.37453505396843,0.779515206813812,0.425029695034027,0.46011483669281,-0.340127378702164,0.348741143941879,-0.873322904109955,0.0867357552051544,0.693573415279388,-0.715145289897919,0.281916826963425,0.767829835414886,-0.575291395187378,0.0867357552051544,0.693573415279388,-0.715145289897919,0.690792083740234,0.72295081615448,0.0121760629117489,0.281916826963425,0.767829835414886,-0.575291395187378,0.787440359592438,0.616327285766602,0.00884426943957806,0.281916826963425,0.767829835414886,-0.575291395187378,0.690792083740234,0.72295081615448,0.0121760629117489,0.913149654865265,0.402100205421448,0.0668811947107315,0.787440359592438,0.616327285766602,0.00884426943957806,0.821252405643463,0.430427610874176,0.37453505396843,0.842786490917206,0.344725906848907,0.413370043039322,0.913149654865265,0.402100205421448,0.0668811947107315,0.821252405643463,0.430427610874176,0.37453505396843,0.0452613793313503,0.481111407279968,-0.875490188598633,-0.340127378702164,0.348741143941879,-0.873322904109955,0.281916826963425,0.767829835414886,-0.575291395187378,0.688639044761658,0.570120811462402,-0.448038309812546,0.281916826963425,0.767829835414886,-0.575291395187378,0.787440359592438,0.616327285766602,0.00884426943957806,0.913149654865265,0.402100205421448,0.0668811947107315,0.688639044761658,0.570120811462402,-0.448038309812546,0.787440359592438,0.616327285766602,0.00884426943957806,0.913149654865265,0.402100205421448,0.0668811947107315,\r\n0.842786490917206,0.344725906848907,0.413370043039322,0.919832766056061,0.3608518242836,0.153926342725754,-0.340127378702164,0.348741143941879,-0.873322904109955,0.0452613793313503,0.481111407279968,-0.875490188598633,-0.246586918830872,0.201044395565987,-0.948037981987,0.688639044761658,0.570120811462402,-0.448038309812546,0.0452613793313503,0.481111407279968,-0.875490188598633,0.281916826963425,0.767829835414886,-0.575291395187378,0.494765132665634,0.419842183589935,-0.760881006717682,0.688639044761658,0.570120811462402,-0.448038309812546,0.913149654865265,0.402100205421448,0.0668811947107315,0.842786490917206,0.344725906848907,0.413370043039322,0.874907076358795,0.343086570501328,0.341802835464478,0.919832766056061,0.3608518242836,0.153926342725754,0.913149654865265,0.402100205421448,0.0668811947107315,0.919832766056061,0.3608518242836,0.153926342725754,0.876393139362335,0.437095105648041,-0.202194422483444,0.494765132665634,0.419842183589935,-0.760881006717682,-0.246586918830872,0.201044395565987,-0.948037981987,0.0452613793313503,0.481111407279968,-0.875490188598633,0.494765132665634,0.419842183589935,-0.760881006717682,0.0452613793313503,0.481111407279968,-0.875490188598633,0.688639044761658,0.570120811462402,-0.448038309812546,0.913149654865265,0.402100205421448,0.0668811947107315,0.876393139362335,0.437095105648041,-0.202194422483444,0.494765132665634,0.419842183589935,-0.760881006717682,0.818791151046753,0.352441251277924,0.453173369169235,0.874907076358795,0.343086570501328,0.341802835464478,0.842786490917206,0.344725906848907,0.413370043039322,0.906435251235962,0.408212661743164,0.108339197933674,0.919832766056061,0.3608518242836,0.153926342725754,0.874907076358795,0.343086570501328,0.341802835464478,0.876393139362335,0.437095105648041,-0.202194422483444,0.919832766056061,0.3608518242836,0.153926342725754,0.711552083492279,0.467286109924316,-0.524725794792175,-0.246586918830872,0.201044395565987,-0.948037981987,0.494765132665634,0.419842183589935,-0.760881006717682,-0.103350751101971,0.169804632663727,-0.980043292045593,\r\n0.494765132665634,0.419842183589935,-0.760881006717682,0.876393139362335,0.437095105648041,-0.202194422483444,0.711552083492279,0.467286109924316,-0.524725794792175,0.869438827037811,0.317747890949249,0.378301948308945,0.874907076358795,0.343086570501328,0.341802835464478,0.818791151046753,0.352441251277924,0.453173369169235,0.906435251235962,0.408212661743164,0.108339197933674,0.711552083492279,0.467286109924316,-0.524725794792175,0.919832766056061,0.3608518242836,0.153926342725754,0.906435251235962,0.408212661743164,0.108339197933674,0.874907076358795,0.343086570501328,0.341802835464478,0.974393427371979,0.221952125430107,-0.0359800830483437,-0.103350751101971,0.169804632663727,-0.980043292045593,0.494765132665634,0.419842183589935,-0.760881006717682,0.711552083492279,0.467286109924316,-0.524725794792175,0.869438827037811,0.317747890949249,0.378301948308945,0.939753174781799,0.245412394404411,0.237984001636505,0.874907076358795,0.343086570501328,0.341802835464478,0.869438827037811,0.317747890949249,0.378301948308945,0.818791151046753,0.352441251277924,0.453173369169235,0.904684722423553,0.271347522735596,0.328505605459213,0.711552083492279,0.467286109924316,-0.524725794792175,0.906435251235962,0.408212661743164,0.108339197933674,0.904145658016205,0.300250291824341,-0.303924739360809,0.939753174781799,0.245412394404411,0.237984001636505,0.974393427371979,0.221952125430107,-0.0359800830483437,0.874907076358795,0.343086570501328,0.341802835464478,0.906435251235962,0.408212661743164,0.108339197933674,0.974393427371979,0.221952125430107,-0.0359800830483437,0.904145658016205,0.300250291824341,-0.303924739360809,0.00864444579929113,0.0953328758478165,-0.99540776014328,-0.103350751101971,0.169804632663727,-0.980043292045593,0.711552083492279,0.467286109924316,-0.524725794792175,0.965241432189941,0.141782134771347,0.21956017613411,0.939753174781799,0.245412394404411,0.237984001636505,0.869438827037811,0.317747890949249,0.378301948308945,0.965241432189941,0.141782134771347,0.21956017613411,0.869438827037811,0.317747890949249,0.378301948308945,\r\n0.904684722423553,0.271347522735596,0.328505605459213,0.711552083492279,0.467286109924316,-0.524725794792175,0.904145658016205,0.300250291824341,-0.303924739360809,0.550391018390656,0.287493288516998,-0.783847689628601,0.974393427371979,0.221952125430107,-0.0359800830483437,0.939753174781799,0.245412394404411,0.237984001636505,0.973211944103241,0.0169193670153618,-0.22928623855114,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.904145658016205,0.300250291824341,-0.303924739360809,0.974393427371979,0.221952125430107,-0.0359800830483437,0.00864444579929113,0.0953328758478165,-0.99540776014328,-0.431080013513565,-0.115305848419666,-0.894915878772736,-0.103350751101971,0.169804632663727,-0.980043292045593,0.711552083492279,0.467286109924316,-0.524725794792175,0.550391018390656,0.287493288516998,-0.783847689628601,0.00864444579929113,0.0953328758478165,-0.99540776014328,0.965241432189941,0.141782134771347,0.21956017613411,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.939753174781799,0.245412394404411,0.237984001636505,0.965241432189941,0.141782134771347,0.21956017613411,0.904684722423553,0.271347522735596,0.328505605459213,0.997614145278931,0.0135507816448808,0.0676923766732216,0.550391018390656,0.287493288516998,-0.783847689628601,0.904145658016205,0.300250291824341,-0.303924739360809,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.973211944103241,0.0169193670153618,-0.22928623855114,0.939753174781799,0.245412394404411,0.237984001636505,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.974393427371979,0.221952125430107,-0.0359800830483437,0.973211944103241,0.0169193670153618,-0.22928623855114,0.723957061767578,-0.108858287334442,-0.681201815605164,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.904145658016205,0.300250291824341,-0.303924739360809,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.974393427371979,0.221952125430107,-0.0359800830483437,0.723957061767578,-0.108858287334442,-0.681201815605164,\r\n0.00864444579929113,0.0953328758478165,-0.99540776014328,-0.167247250676155,-0.209401547908783,-0.963420569896698,-0.431080013513565,-0.115305848419666,-0.894915878772736,0.00864444579929113,0.0953328758478165,-0.99540776014328,0.550391018390656,0.287493288516998,-0.783847689628601,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.965241432189941,0.141782134771347,0.21956017613411,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.950440168380737,0.168193981051445,0.26148447394371,0.997614145278931,0.0135507816448808,0.0676923766732216,0.904684722423553,0.271347522735596,0.328505605459213,0.997614145278931,0.0135507816448808,0.0676923766732216,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.965241432189941,0.141782134771347,0.21956017613411,0.973211944103241,0.0169193670153618,-0.22928623855114,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.872268676757813,-0.237518519163132,-0.427471876144409,0.760581910610199,-0.243008509278297,-0.60204815864563,0.723957061767578,-0.108858287334442,-0.681201815605164,0.973211944103241,0.0169193670153618,-0.22928623855114,0.294533044099808,-0.268085092306137,-0.917267978191376,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.294533044099808,-0.268085092306137,-0.917267978191376,0.8268683552742,-0.0100430678576231,-0.562305748462677,0.723957061767578,-0.108858287334442,-0.681201815605164,0.00864444579929113,0.0953328758478165,-0.99540776014328,0.478156477212906,-0.0630126968026161,-0.876011192798615,-0.167247250676155,-0.209401547908783,-0.963420569896698,-0.519632995128632,-0.251721739768982,-0.816466510295868,-0.431080013513565,-0.115305848419666,-0.894915878772736,-0.167247250676155,-0.209401547908783,-0.963420569896698,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.875648021697998,-0.348684132099152,-0.334155261516571,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.987868249416351,-0.146669581532478,-0.0510322339832783,\r\n0.997614145278931,0.0135507816448808,0.0676923766732216,0.950440168380737,0.168193981051445,0.26148447394371,0.904684722423553,0.271347522735596,0.328505605459213,0.847056686878204,0.326450973749161,0.419433683156967,0.950440168380737,0.168193981051445,0.26148447394371,0.997614145278931,0.0135507816448808,0.0676923766732216,0.859579265117645,-0.398241937160492,-0.320197850465775,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.875648021697998,-0.348684132099152,-0.334155261516571,0.872268676757813,-0.237518519163132,-0.427471876144409,0.999696671962738,-0.000871743832249194,0.0246097389608622,0.872268676757813,-0.237518519163132,-0.427471876144409,0.722086489200592,-0.315779626369476,-0.61552757024765,0.973211944103241,0.0169193670153618,-0.22928623855114,0.760581910610199,-0.243008509278297,-0.60204815864563,0.438501954078674,-0.312903076410294,-0.842500746250153,0.723957061767578,-0.108858287334442,-0.681201815605164,0.760581910610199,-0.243008509278297,-0.60204815864563,0.973211944103241,0.0169193670153618,-0.22928623855114,0.722086489200592,-0.315779626369476,-0.61552757024765,0.294533044099808,-0.268085092306137,-0.917267978191376,-0.167247250676155,-0.209401547908783,-0.963420569896698,0.478156477212906,-0.0630126968026161,-0.876011192798615,0.294533044099808,-0.268085092306137,-0.917267978191376,0.723957061767578,-0.108858287334442,-0.681201815605164,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.167247250676155,-0.209401547908783,-0.963420569896698,-0.258984953165054,-0.316251188516617,-0.912640035152435,-0.519632995128632,-0.251721739768982,-0.816466510295868,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.58751767873764,-0.606679737567902,-0.535501956939697,0.875648021697998,-0.348684132099152,-0.334155261516571,0.859579265117645,-0.398241937160492,-0.320197850465775,0.997614145278931,0.0135507816448808,0.0676923766732216,0.987868249416351,-0.146669581532478,-0.0510322339832783,0.983104348182678,0.013426885008812,0.182552456855774,0.987868249416351,-0.146669581532478,-0.0510322339832783,\r\n0.950440168380737,0.168193981051445,0.26148447394371,0.983104348182678,0.013426885008812,0.182552456855774,0.950440168380737,0.168193981051445,0.26148447394371,0.847056686878204,0.326450973749161,0.419433683156967,0.859579265117645,-0.398241937160492,-0.320197850465775,0.58751767873764,-0.606679737567902,-0.535501956939697,0.977089107036591,-0.208284959197044,-0.0437514409422874,0.875648021697998,-0.348684132099152,-0.334155261516571,0.354228407144547,-0.543577373027802,-0.76095062494278,0.872268676757813,-0.237518519163132,-0.427471876144409,0.722086489200592,-0.315779626369476,-0.61552757024765,0.872268676757813,-0.237518519163132,-0.427471876144409,0.354228407144547,-0.543577373027802,-0.76095062494278,0.243664786219597,-0.480725526809692,-0.842336237430573,0.438501954078674,-0.312903076410294,-0.842500746250153,0.760581910610199,-0.243008509278297,-0.60204815864563,0.0177003238350153,-0.382669568061829,-0.923715651035309,0.723957061767578,-0.108858287334442,-0.681201815605164,0.438501954078674,-0.312903076410294,-0.842500746250153,0.760581910610199,-0.243008509278297,-0.60204815864563,0.722086489200592,-0.315779626369476,-0.61552757024765,0.243664786219597,-0.480725526809692,-0.842336237430573,0.294533044099808,-0.268085092306137,-0.917267978191376,-0.258984953165054,-0.316251188516617,-0.912640035152435,-0.167247250676155,-0.209401547908783,-0.963420569896698,0.294533044099808,-0.268085092306137,-0.917267978191376,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.258984953165054,-0.316251188516617,-0.912640035152435,-0.258984953165054,-0.316251188516617,-0.912640035152435,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.519632995128632,-0.251721739768982,-0.816466510295868,0.875648021697998,-0.348684132099152,-0.334155261516571,0.58751767873764,-0.606679737567902,-0.535501956939697,0.354228407144547,-0.543577373027802,-0.76095062494278,0.859579265117645,-0.398241937160492,-0.320197850465775,0.987868249416351,-0.146669581532478,-0.0510322339832783,0.734976530075073,-0.540907800197601,-0.408935308456421,\r\n0.875124573707581,-0.428804278373718,-0.22424028813839,0.987868249416351,-0.146669581532478,-0.0510322339832783,0.983104348182678,0.013426885008812,0.182552456855774,0.847056686878204,0.326450973749161,0.419433683156967,0.920381128787994,0.174091443419456,0.35012948513031,0.983104348182678,0.013426885008812,0.182552456855774,0.58751767873764,-0.606679737567902,-0.535501956939697,0.859579265117645,-0.398241937160492,-0.320197850465775,0.212719798088074,-0.717150926589966,-0.663660049438477,0.243664786219597,-0.480725526809692,-0.842336237430573,0.722086489200592,-0.315779626369476,-0.61552757024765,0.354228407144547,-0.543577373027802,-0.76095062494278,0.0177003238350153,-0.382669568061829,-0.923715651035309,0.438501954078674,-0.312903076410294,-0.842500746250153,0.243664786219597,-0.480725526809692,-0.842336237430573,-0.258984953165054,-0.316251188516617,-0.912640035152435,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.446410536766052,-0.396181344985962,-0.802345216274261,-0.108794905245304,-0.63979697227478,-0.76080447435379,0.354228407144547,-0.543577373027802,-0.76095062494278,0.58751767873764,-0.606679737567902,-0.535501956939697,0.875124573707581,-0.428804278373718,-0.22424028813839,0.734976530075073,-0.540907800197601,-0.408935308456421,0.987868249416351,-0.146669581532478,-0.0510322339832783,0.734976530075073,-0.540907800197601,-0.408935308456421,0.212719798088074,-0.717150926589966,-0.663660049438477,0.859579265117645,-0.398241937160492,-0.320197850465775,0.875124573707581,-0.428804278373718,-0.22424028813839,0.983104348182678,0.013426885008812,0.182552456855774,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.847056686878204,0.326450973749161,0.419433683156967,0.758879959583282,0.384290248155594,0.525758683681488,0.920381128787994,0.174091443419456,0.35012948513031,0.96470832824707,-0.220447063446045,0.144016832113266,0.983104348182678,0.013426885008812,0.182552456855774,0.920381128787994,0.174091443419456,0.35012948513031,-0.108794905245304,-0.63979697227478,-0.76080447435379,0.58751767873764,-0.606679737567902,-0.535501956939697,\r\n0.212719798088074,-0.717150926589966,-0.663660049438477,0.243664786219597,-0.480725526809692,-0.842336237430573,0.354228407144547,-0.543577373027802,-0.76095062494278,-0.258272796869278,-0.529074907302856,-0.808316051959991,0.243664786219597,-0.480725526809692,-0.842336237430573,-0.258272796869278,-0.529074907302856,-0.808316051959991,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.258272796869278,-0.529074907302856,-0.808316051959991,-0.446410536766052,-0.396181344985962,-0.802345216274261,0.0177003238350153,-0.382669568061829,-0.923715651035309,-0.258272796869278,-0.529074907302856,-0.808316051959991,0.354228407144547,-0.543577373027802,-0.76095062494278,-0.108794905245304,-0.63979697227478,-0.76080447435379,0.875124573707581,-0.428804278373718,-0.22424028813839,0.355656117200851,-0.735060095787048,-0.577230632305145,0.734976530075073,-0.540907800197601,-0.408935308456421,0.212719798088074,-0.717150926589966,-0.663660049438477,0.734976530075073,-0.540907800197601,-0.408935308456421,0.355656117200851,-0.735060095787048,-0.577230632305145,0.96470832824707,-0.220447063446045,0.144016832113266,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.983104348182678,0.013426885008812,0.182552456855774,0.875124573707581,-0.428804278373718,-0.22424028813839,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.58896267414093,-0.707315683364868,-0.390931308269501,0.758879959583282,0.384290248155594,0.525758683681488,0.94767153263092,-0.00335598667152226,0.319229245185852,0.920381128787994,0.174091443419456,0.35012948513031,0.94767153263092,-0.00335598667152226,0.319229245185852,0.96470832824707,-0.220447063446045,0.144016832113266,0.920381128787994,0.174091443419456,0.35012948513031,-0.108794905245304,-0.63979697227478,-0.76080447435379,0.212719798088074,-0.717150926589966,-0.663660049438477,-0.32580640912056,-0.631749749183655,-0.703379273414612,-0.258272796869278,-0.529074907302856,-0.808316051959991,-0.108794905245304,-0.63979697227478,-0.76080447435379,-0.407715231180191,-0.555059313774109,-0.725036144256592,\r\n0.355656117200851,-0.735060095787048,-0.577230632305145,0.875124573707581,-0.428804278373718,-0.22424028813839,0.58896267414093,-0.707315683364868,-0.390931308269501,0.212719798088074,-0.717150926589966,-0.663660049438477,0.355656117200851,-0.735060095787048,-0.577230632305145,-0.199936538934708,-0.716123342514038,-0.668724596500397,0.96470832824707,-0.220447063446045,0.144016832113266,0.6811363697052,-0.703610241413116,-0.202449172735214,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.6811363697052,-0.703610241413116,-0.202449172735214,0.58896267414093,-0.707315683364868,-0.390931308269501,0.914265394210815,-0.401454359292984,-0.0543417185544968,0.94767153263092,-0.00335598667152226,0.319229245185852,0.758879959583282,0.384290248155594,0.525758683681488,0.889263927936554,0.152903854846954,0.431080102920532,0.94767153263092,-0.00335598667152226,0.319229245185852,0.896109402179718,-0.443595260381699,0.0145273795351386,0.96470832824707,-0.220447063446045,0.144016832113266,-0.32580640912056,-0.631749749183655,-0.703379273414612,0.212719798088074,-0.717150926589966,-0.663660049438477,-0.199936538934708,-0.716123342514038,-0.668724596500397,-0.108794905245304,-0.63979697227478,-0.76080447435379,-0.32580640912056,-0.631749749183655,-0.703379273414612,-0.407715231180191,-0.555059313774109,-0.725036144256592,0.355656117200851,-0.735060095787048,-0.577230632305145,0.58896267414093,-0.707315683364868,-0.390931308269501,0.133064717054367,-0.825734555721283,-0.548138678073883,-0.199936538934708,-0.716123342514038,-0.668724596500397,0.355656117200851,-0.735060095787048,-0.577230632305145,0.133064717054367,-0.825734555721283,-0.548138678073883,0.96470832824707,-0.220447063446045,0.144016832113266,0.896109402179718,-0.443595260381699,0.0145273795351386,0.6811363697052,-0.703610241413116,-0.202449172735214,0.6811363697052,-0.703610241413116,-0.202449172735214,0.133064717054367,-0.825734555721283,-0.548138678073883,0.58896267414093,-0.707315683364868,-0.390931308269501,0.94767153263092,-0.00335598667152226,0.319229245185852,\r\n0.889263927936554,0.152903854846954,0.431080102920532,0.896109402179718,-0.443595260381699,0.0145273795351386,-0.0434652380645275,-0.816667079925537,-0.575469851493835,-0.199936538934708,-0.716123342514038,-0.668724596500397,0.133064717054367,-0.825734555721283,-0.548138678073883,0.433459788560867,-0.817594349384308,-0.379014492034912,0.6811363697052,-0.703610241413116,-0.202449172735214,0.896109402179718,-0.443595260381699,0.0145273795351386,0.133064717054367,-0.825734555721283,-0.548138678073883,0.6811363697052,-0.703610241413116,-0.202449172735214,0.433459788560867,-0.817594349384308,-0.379014492034912,0.952232420444489,-0.293303668498993,0.085007406771183,0.896109402179718,-0.443595260381699,0.0145273795351386,0.889263927936554,0.152903854846954,0.431080102920532,-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.133064717054367,-0.825734555721283,-0.548138678073883,0.433459788560867,-0.817594349384308,-0.379014492034912,0.581612765789032,-0.723864674568176,-0.371141999959946,0.433459788560867,-0.817594349384308,-0.379014492034912,0.896109402179718,-0.443595260381699,0.0145273795351386,0.952232420444489,-0.293303668498993,0.085007406771183,0.581612765789032,-0.723864674568176,-0.371141999959946,0.896109402179718,-0.443595260381699,0.0145273795351386,0.881018102169037,0.0932691916823387,0.463797271251678,0.952232420444489,-0.293303668498993,0.085007406771183,0.889263927936554,0.152903854846954,0.431080102920532,0.581612765789032,-0.723864674568176,-0.371141999959946,-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.433459788560867,-0.817594349384308,-0.379014492034912,0.581612765789032,-0.723864674568176,-0.371141999959946,0.952232420444489,-0.293303668498993,0.085007406771183,0.723192155361176,-0.66845840215683,-0.173655673861504,0.886206865310669,-0.424130737781525,0.186414510011673,0.952232420444489,-0.293303668498993,0.085007406771183,0.881018102169037,0.0932691916823387,0.463797271251678,0.581612765789032,-0.723864674568176,-0.371141999959946,0.262285321950912,-0.858041763305664,-0.441554754972458,\r\n-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.886206865310669,-0.424130737781525,0.186414510011673,0.723192155361176,-0.66845840215683,-0.173655673861504,0.952232420444489,-0.293303668498993,0.085007406771183,0.581612765789032,-0.723864674568176,-0.371141999959946,0.723192155361176,-0.66845840215683,-0.173655673861504,0.262285321950912,-0.858041763305664,-0.441554754972458,0.886206865310669,-0.424130737781525,0.186414510011673,0.881018102169037,0.0932691916823387,0.463797271251678,0.935642600059509,-0.282773077487946,0.211215987801552,-0.0434652380645275,-0.816667079925537,-0.575469851493835,0.262285321950912,-0.858041763305664,-0.441554754972458,0.00936393160372972,-0.858172357082367,-0.513276219367981,0.517147660255432,-0.834819555282593,-0.18877087533474,0.723192155361176,-0.66845840215683,-0.173655673861504,0.886206865310669,-0.424130737781525,0.186414510011673,0.723192155361176,-0.66845840215683,-0.173655673861504,0.517147660255432,-0.834819555282593,-0.18877087533474,0.262285321950912,-0.858041763305664,-0.441554754972458,0.758095860481262,0.337383568286896,0.558088541030884,0.935642600059509,-0.282773077487946,0.211215987801552,0.881018102169037,0.0932691916823387,0.463797271251678,0.886206865310669,-0.424130737781525,0.186414510011673,0.935642600059509,-0.282773077487946,0.211215987801552,0.517147660255432,-0.834819555282593,-0.18877087533474,0.517147660255432,-0.834819555282593,-0.18877087533474,0.00936393160372972,-0.858172357082367,-0.513276219367981,0.262285321950912,-0.858041763305664,-0.441554754972458,0.758095860481262,0.337383568286896,0.558088541030884,0.853417336940765,0.167059242725372,0.493730664253235,0.935642600059509,-0.282773077487946,0.211215987801552,0.517147660255432,-0.834819555282593,-0.18877087533474,0.935642600059509,-0.282773077487946,0.211215987801552,0.672768175601959,-0.730615377426147,-0.116550326347351,0.2318045347929,-0.877021074295044,-0.420833230018616,0.00936393160372972,-0.858172357082367,-0.513276219367981,0.517147660255432,-0.834819555282593,-0.18877087533474,\r\n0.758095860481262,0.337383568286896,0.558088541030884,0.561893165111542,0.494647771120071,0.663022994995117,0.853417336940765,0.167059242725372,0.493730664253235,0.923319160938263,-0.224092721939087,0.311871826648712,0.935642600059509,-0.282773077487946,0.211215987801552,0.853417336940765,0.167059242725372,0.493730664253235,0.923319160938263,-0.224092721939087,0.311871826648712,0.672768175601959,-0.730615377426147,-0.116550326347351,0.935642600059509,-0.282773077487946,0.211215987801552,0.517147660255432,-0.834819555282593,-0.18877087533474,0.672768175601959,-0.730615377426147,-0.116550326347351,0.2318045347929,-0.877021074295044,-0.420833230018616,0.2318045347929,-0.877021074295044,-0.420833230018616,-0.0046850317157805,-0.819392323493958,-0.573213875293732,0.00936393160372972,-0.858172357082367,-0.513276219367981,0.853417336940765,0.167059242725372,0.493730664253235,0.561893165111542,0.494647771120071,0.663022994995117,0.708579659461975,0.353462874889374,0.610719799995422,0.853417336940765,0.167059242725372,0.493730664253235,0.708579659461975,0.353462874889374,0.610719799995422,0.923319160938263,-0.224092721939087,0.311871826648712,0.923319160938263,-0.224092721939087,0.311871826648712,0.794367611408234,-0.581908643245697,0.17424800992012,0.672768175601959,-0.730615377426147,-0.116550326347351,0.672768175601959,-0.730615377426147,-0.116550326347351,0.510656416416168,-0.845521748065948,-0.155956923961639,0.2318045347929,-0.877021074295044,-0.420833230018616,0.2318045347929,-0.877021074295044,-0.420833230018616,0.152846723794937,-0.861648917198181,-0.483941107988358,-0.0046850317157805,-0.819392323493958,-0.573213875293732,0.923319160938263,-0.224092721939087,0.311871826648712,0.708579659461975,0.353462874889374,0.610719799995422,0.866335332393646,0.0220404490828514,0.498976171016693,0.923319160938263,-0.224092721939087,0.311871826648712,0.866335332393646,0.0220404490828514,0.498976171016693,0.794367611408234,-0.581908643245697,0.17424800992012,0.672768175601959,-0.730615377426147,-0.116550326347351,0.794367611408234,-0.581908643245697,0.17424800992012,\r\n0.510656416416168,-0.845521748065948,-0.155956923961639,0.2318045347929,-0.877021074295044,-0.420833230018616,0.510656416416168,-0.845521748065948,-0.155956923961639,0.152846723794937,-0.861648917198181,-0.483941107988358,0.708579659461975,0.353462874889374,0.610719799995422,0.641508340835571,0.46287015080452,0.611733555793762,0.866335332393646,0.0220404490828514,0.498976171016693,0.809695363044739,-0.48652583360672,0.328155428171158,0.794367611408234,-0.581908643245697,0.17424800992012,0.866335332393646,0.0220404490828514,0.498976171016693,0.809695363044739,-0.48652583360672,0.328155428171158,0.510656416416168,-0.845521748065948,-0.155956923961639,0.794367611408234,-0.581908643245697,0.17424800992012,0.510656416416168,-0.845521748065948,-0.155956923961639,0.467744588851929,-0.86238831281662,-0.193652540445328,0.152846723794937,-0.861648917198181,-0.483941107988358,0.641508340835571,0.46287015080452,0.611733555793762,0.759328365325928,0.168215215206146,0.628588855266571,0.866335332393646,0.0220404490828514,0.498976171016693,0.866335332393646,0.0220404490828514,0.498976171016693,0.759328365325928,0.168215215206146,0.628588855266571,0.809695363044739,-0.48652583360672,0.328155428171158,0.809695363044739,-0.48652583360672,0.328155428171158,0.705902457237244,-0.70018482208252,0.106971196830273,0.510656416416168,-0.845521748065948,-0.155956923961639,0.510656416416168,-0.845521748065948,-0.155956923961639,0.705902457237244,-0.70018482208252,0.106971196830273,0.467744588851929,-0.86238831281662,-0.193652540445328,0.152846723794937,-0.861648917198181,-0.483941107988358,0.467744588851929,-0.86238831281662,-0.193652540445328,0.200194463133812,-0.889614343643188,-0.410497814416885,0.759328365325928,0.168215215206146,0.628588855266571,0.820528209209442,-0.275594085454941,0.500780582427979,0.809695363044739,-0.48652583360672,0.328155428171158,0.809695363044739,-0.48652583360672,0.328155428171158,0.820528209209442,-0.275594085454941,0.500780582427979,0.705902457237244,-0.70018482208252,0.106971196830273,0.764477431774139,-0.612632870674133,0.200636744499207,\r\n0.467744588851929,-0.86238831281662,-0.193652540445328,0.705902457237244,-0.70018482208252,0.106971196830273,0.200194463133812,-0.889614343643188,-0.410497814416885,0.467744588851929,-0.86238831281662,-0.193652540445328,0.464081019163132,-0.873642146587372,-0.146212309598923,0.152846723794937,-0.861648917198181,-0.483941107988358,0.200194463133812,-0.889614343643188,-0.410497814416885,0.0539583414793015,-0.829480171203613,-0.555923521518707,0.764477431774139,-0.612632870674133,0.200636744499207,0.705902457237244,-0.70018482208252,0.106971196830273,0.820528209209442,-0.275594085454941,0.500780582427979,0.464081019163132,-0.873642146587372,-0.146212309598923,0.467744588851929,-0.86238831281662,-0.193652540445328,0.764477431774139,-0.612632870674133,0.200636744499207,0.200194463133812,-0.889614343643188,-0.410497814416885,0.464081019163132,-0.873642146587372,-0.146212309598923,0.262964874505997,-0.91510009765625,-0.305681645870209,0.119110487401485,-0.868180155754089,-0.481742382049561,0.0539583414793015,-0.829480171203613,-0.555923521518707,0.200194463133812,-0.889614343643188,-0.410497814416885,0.200194463133812,-0.889614343643188,-0.410497814416885,0.262964874505997,-0.91510009765625,-0.305681645870209,0.119110487401485,-0.868180155754089,-0.481742382049561,0.119110487401485,-0.868180155754089,-0.481742382049561,0.0364860668778419,-0.806113839149475,-0.59063446521759,0.0539583414793015,-0.829480171203613,-0.555923521518707,0.262964874505997,-0.91510009765625,-0.305681645870209,0.229289188981056,-0.918832540512085,-0.321205824613571,0.119110487401485,-0.868180155754089,-0.481742382049561,0.119110487401485,-0.868180155754089,-0.481742382049561,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.0364860668778419,-0.806113839149475,-0.59063446521759,0.119110487401485,-0.868180155754089,-0.481742382049561,0.229289188981056,-0.918832540512085,-0.321205824613571,0.0995777770876884,-0.851943671703339,-0.5140780210495,0.194934412837029,-0.952674388885498,-0.233263611793518,0.195589005947113,-0.963940680027008,-0.180452942848206,\r\n0.273695230484009,-0.885812759399414,-0.37473526597023,0.22250971198082,-0.895494341850281,-0.385459423065186,0.194934412837029,-0.952674388885498,-0.233263611793518,0.273695230484009,-0.885812759399414,-0.37473526597023,0.22250971198082,-0.895494341850281,-0.385459423065186,0.21283908188343,-0.932673692703247,-0.29123729467392,0.194934412837029,-0.952674388885498,-0.233263611793518,0.194934412837029,-0.952674388885498,-0.233263611793518,0.078129768371582,-0.992809057235718,-0.0906949788331985,0.195589005947113,-0.963940680027008,-0.180452942848206,0.168940544128418,-0.974272549152374,-0.14917117357254,0.078129768371582,-0.992809057235718,-0.0906949788331985,0.194934412837029,-0.952674388885498,-0.233263611793518,0.194934412837029,-0.952674388885498,-0.233263611793518,0.21283908188343,-0.932673692703247,-0.29123729467392,0.168940544128418,-0.974272549152374,-0.14917117357254,-0.020694037899375,-0.99973464012146,-0.010114312171936,0.195589005947113,-0.963940680027008,-0.180452942848206,0.078129768371582,-0.992809057235718,-0.0906949788331985,0.21283908188343,-0.932673692703247,-0.29123729467392,0.161134108901024,-0.971689105033875,-0.172788992524147,0.168940544128418,-0.974272549152374,-0.14917117357254,0.206492960453033,-0.929435670375824,-0.305793881416321,0.161134108901024,-0.971689105033875,-0.172788992524147,0.21283908188343,-0.932673692703247,-0.29123729467392,-0.020694037899375,-0.99973464012146,-0.010114312171936,0.078129768371582,-0.992809057235718,-0.0906949788331985,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.0482739806175232,-0.998018264770508,0.0403616614639759,-0.206800580024719,-0.974077761173248,0.091682568192482,0.078129768371582,-0.992809057235718,-0.0906949788331985,-0.0482739806175232,-0.998018264770508,0.0403616614639759,0.078129768371582,-0.992809057235718,-0.0906949788331985,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.168940544128418,-0.974272549152374,-0.14917117357254,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.078129768371582,-0.992809057235718,-0.0906949788331985,\r\n0.168940544128418,-0.974272549152374,-0.14917117357254,0.161134108901024,-0.971689105033875,-0.172788992524147,0.097259908914566,-0.994111776351929,-0.0477714873850346,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.340551406145096,-0.917936861515045,0.203510582447052,-0.020694037899375,-0.99973464012146,-0.010114312171936,0.184030428528786,-0.961094319820404,-0.205986544489861,0.161134108901024,-0.971689105033875,-0.172788992524147,0.206492960453033,-0.929435670375824,-0.305793881416321,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.161134108901024,-0.971689105033875,-0.172788992524147,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.184030428528786,-0.961094319820404,-0.205986544489861,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.161134108901024,-0.971689105033875,-0.172788992524147,-0.0482739806175232,-0.998018264770508,0.0403616614639759,0.097259908914566,-0.994111776351929,-0.0477714873850346,-0.12050848454237,-0.984380424022675,0.128346398472786,0.097259908914566,-0.994111776351929,-0.0477714873850346,-0.0376114659011364,-0.99830287694931,0.0444600470364094,-0.12050848454237,-0.984380424022675,0.128346398472786,-0.0376114659011364,-0.99830287694931,0.0444600470364094,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.0740802586078644,-0.997150421142578,-0.0142519045621157,0.097259908914566,-0.994111776351929,-0.0477714873850346,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.0740802586078644,-0.997150421142578,-0.0142519045621157,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.0482739806175232,-0.998018264770508,0.0403616614639759,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.0482739806175232,-0.998018264770508,0.0403616614639759,-0.12050848454237,-0.984380424022675,0.128346398472786,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.510048985481262,-0.814544379711151,0.276346415281296,-0.340551406145096,-0.917936861515045,0.203510582447052,-0.322997540235519,-0.916313111782074,0.236733481287956,\r\n-0.510048985481262,-0.814544379711151,0.276346415281296,-0.206800580024719,-0.974077761173248,0.091682568192482,-0.340551406145096,-0.917936861515045,0.203510582447052,-0.510048985481262,-0.814544379711151,0.276346415281296,-0.537781059741974,-0.773346543312073,0.335747689008713,0.178598269820213,-0.976244151592255,-0.122678078711033,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.184030428528786,-0.961094319820404,-0.205986544489861,0.265495628118515,-0.938710510730743,-0.219851046800613,0.178598269820213,-0.976244151592255,-0.122678078711033,0.184030428528786,-0.961094319820404,-0.205986544489861,0.126597717404366,-0.987491369247437,-0.0939877107739449,0.146828964352608,-0.988367021083832,-0.03964639082551,0.0740802586078644,-0.997150421142578,-0.0142519045621157,0.178598269820213,-0.976244151592255,-0.122678078711033,0.146828964352608,-0.988367021083832,-0.03964639082551,0.126597717404366,-0.987491369247437,-0.0939877107739449,-0.0376114659011364,-0.99830287694931,0.0444600470364094,0.0740802586078644,-0.997150421142578,-0.0142519045621157,-0.170673921704292,-0.981977641582489,0.0811805203557014,0.0740802586078644,-0.997150421142578,-0.0142519045621157,0.0547250136733055,-0.998140454292297,0.0268453434109688,-0.170673921704292,-0.981977641582489,0.0811805203557014,0.0740802586078644,-0.997150421142578,-0.0142519045621157,0.146828964352608,-0.988367021083832,-0.03964639082551,0.0547250136733055,-0.998140454292297,0.0268453434109688,-0.0376114659011364,-0.99830287694931,0.0444600470364094,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.12050848454237,-0.984380424022675,0.128346398472786,-0.170673921704292,-0.981977641582489,0.0811805203557014,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.0376114659011364,-0.99830287694931,0.0444600470364094,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.12050848454237,-0.984380424022675,0.128346398472786,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.411421358585358,-0.871922731399536,0.26548644900322,\r\n-0.12050848454237,-0.984380424022675,0.128346398472786,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.528976440429688,-0.781013906002045,0.331965625286102,-0.510048985481262,-0.814544379711151,0.276346415281296,-0.322997540235519,-0.916313111782074,0.236733481287956,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.528976440429688,-0.781013906002045,0.331965625286102,-0.537781059741974,-0.773346543312073,0.335747689008713,-0.510048985481262,-0.814544379711151,0.276346415281296,-0.61250251531601,-0.724491059780121,0.316153734922409,-0.528976440429688,-0.781013906002045,0.331965625286102,-0.61250251531601,-0.724491059780121,0.316153734922409,-0.510048985481262,-0.814544379711151,0.276346415281296,0.178598269820213,-0.976244151592255,-0.122678078711033,0.265495628118515,-0.938710510730743,-0.219851046800613,0.239216268062592,-0.963123083114624,-0.123163931071758,0.265495628118515,-0.938710510730743,-0.219851046800613,0.31026354432106,-0.93649286031723,-0.163455083966255,0.239216268062592,-0.963123083114624,-0.123163931071758,0.178598269820213,-0.976244151592255,-0.122678078711033,0.239216268062592,-0.963123083114624,-0.123163931071758,0.146828964352608,-0.988367021083832,-0.03964639082551,0.0547250136733055,-0.998140454292297,0.0268453434109688,0.146828964352608,-0.988367021083832,-0.03964639082551,0.175519376993179,-0.983834028244019,0.0355443544685841,0.239216268062592,-0.963123083114624,-0.123163931071758,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.146828964352608,-0.988367021083832,-0.03964639082551,0.175519376993179,-0.983834028244019,0.0355443544685841,0.146828964352608,-0.988367021083832,-0.03964639082551,0.234916463494301,-0.969098687171936,-0.0752455815672874,-0.158610165119171,-0.986393213272095,0.043256901204586,-0.170673921704292,-0.981977641582489,0.0811805203557014,0.0547250136733055,-0.998140454292297,0.0268453434109688,0.00831621047109365,-0.998623430728912,0.0517885200679302,-0.158610165119171,-0.986393213272095,0.043256901204586,0.0547250136733055,-0.998140454292297,0.0268453434109688,\r\n0.0547250136733055,-0.998140454292297,0.0268453434109688,0.175519376993179,-0.983834028244019,0.0355443544685841,0.123867549002171,-0.989214181900024,0.0781795158982277,0.00831621047109365,-0.998623430728912,0.0517885200679302,0.0547250136733055,-0.998140454292297,0.0268453434109688,0.123867549002171,-0.989214181900024,0.0781795158982277,-0.170673921704292,-0.981977641582489,0.0811805203557014,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.170673921704292,-0.981977641582489,0.0811805203557014,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.158610165119171,-0.986393213272095,0.043256901204586,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.170673921704292,-0.981977641582489,0.0811805203557014,-0.250613540410995,-0.952537059783936,0.172817587852478,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.528976440429688,-0.781013906002045,0.331965625286102,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.525588572025299,-0.791434109210968,0.31207138299942,-0.411421358585358,-0.871922731399536,0.26548644900322,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.525588572025299,-0.791434109210968,0.31207138299942,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.239216268062592,-0.963123083114624,-0.123163931071758,0.31026354432106,-0.93649286031723,-0.163455083966255,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.31026354432106,-0.93649286031723,-0.163455083966255,0.175519376993179,-0.983834028244019,0.0355443544685841,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.276309430599213,-0.960526883602142,0.0322656892240047,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.276309430599213,-0.960526883602142,0.0322656892240047,0.234916463494301,-0.969098687171936,-0.0752455815672874,0.181032836437225,-0.979064464569092,0.0930581092834473,\r\n0.123867549002171,-0.989214181900024,0.0781795158982277,0.175519376993179,-0.983834028244019,0.0355443544685841,0.175519376993179,-0.983834028244019,0.0355443544685841,0.276309430599213,-0.960526883602142,0.0322656892240047,0.242595821619034,-0.960004866123199,0.139777794480324,0.181032836437225,-0.979064464569092,0.0930581092834473,0.175519376993179,-0.983834028244019,0.0355443544685841,0.242595821619034,-0.960004866123199,0.139777794480324,0.123867549002171,-0.989214181900024,0.0781795158982277,0.146900564432144,-0.980062901973724,0.133778229355812,0.00831621047109365,-0.998623430728912,0.0517885200679302,0.181032836437225,-0.979064464569092,0.0930581092834473,0.193905994296074,-0.971814155578613,0.134080648422241,0.123867549002171,-0.989214181900024,0.0781795158982277,0.146900564432144,-0.980062901973724,0.133778229355812,0.123867549002171,-0.989214181900024,0.0781795158982277,0.159038990736008,-0.974675059318542,0.157210052013397,0.156584173440933,-0.980077266693115,0.122187942266464,0.123867549002171,-0.989214181900024,0.0781795158982277,0.193905994296074,-0.971814155578613,0.134080648422241,0.156584173440933,-0.980077266693115,0.122187942266464,0.159038990736008,-0.974675059318542,0.157210052013397,0.123867549002171,-0.989214181900024,0.0781795158982277,-0.158610165119171,-0.986393213272095,0.043256901204586,0.00831621047109365,-0.998623430728912,0.0517885200679302,-0.242951154708862,-0.968195378780365,-0.0597671866416931,0.0676233023405075,-0.995519876480103,0.0660842284560204,-0.242951154708862,-0.968195378780365,-0.0597671866416931,0.00831621047109365,-0.998623430728912,0.0517885200679302,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.00831621047109365,-0.998623430728912,0.0517885200679302,0.146900564432144,-0.980062901973724,0.133778229355812,-0.158610165119171,-0.986393213272095,0.043256901204586,-0.242951154708862,-0.968195378780365,-0.0597671866416931,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.425864398479462,-0.904734551906586,0.00973417889326811,\r\n-0.586102783679962,-0.810113310813904,0.0141346892341971,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.586102783679962,-0.810113310813904,0.0141346892341971,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.242951154708862,-0.968195378780365,-0.0597671866416931,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.425864398479462,-0.904734551906586,0.00973417889326811,-0.525588572025299,-0.791434109210968,0.31207138299942,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.598381280899048,-0.790379106998444,0.131303951144218,-0.598381280899048,-0.790379106998444,0.131303951144218,-0.468571662902832,-0.863121211528778,0.188314244151115,-0.586102783679962,-0.810113310813904,0.0141346892341971,0.382312715053558,-0.923962235450745,0.0114310858771205,0.276309430599213,-0.960526883602142,0.0322656892240047,0.335968643426895,-0.936915814876556,-0.0965075865387917,0.309051543474197,-0.939855754375458,0.145458459854126,0.242595821619034,-0.960004866123199,0.139777794480324,0.276309430599213,-0.960526883602142,0.0322656892240047,0.382312715053558,-0.923962235450745,0.0114310858771205,0.309051543474197,-0.939855754375458,0.145458459854126,0.276309430599213,-0.960526883602142,0.0322656892240047,0.181032836437225,-0.979064464569092,0.0930581092834473,0.242595821619034,-0.960004866123199,0.139777794480324,0.193905994296074,-0.971814155578613,0.134080648422241,0.309051543474197,-0.939855754375458,0.145458459854126,0.299707859754562,-0.935646414756775,0.186388939619064,0.242595821619034,-0.960004866123199,0.139777794480324,0.193905994296074,-0.971814155578613,0.134080648422241,0.242595821619034,-0.960004866123199,0.139777794480324,0.267794132232666,-0.944221198558807,0.191657438874245,0.299707859754562,-0.935646414756775,0.186388939619064,0.267794132232666,-0.944221198558807,0.191657438874245,0.242595821619034,-0.960004866123199,0.139777794480324,\r\n0.225335165858269,-0.948840439319611,0.221191838383675,0.156584173440933,-0.980077266693115,0.122187942266464,0.193905994296074,-0.971814155578613,0.134080648422241,0.225335165858269,-0.948840439319611,0.221191838383675,0.193905994296074,-0.971814155578613,0.134080648422241,0.267794132232666,-0.944221198558807,0.191657438874245,0.156584173440933,-0.980077266693115,0.122187942266464,0.225335165858269,-0.948840439319611,0.221191838383675,0.159038990736008,-0.974675059318542,0.157210052013397,0.146900564432144,-0.980062901973724,0.133778229355812,0.159038990736008,-0.974675059318542,0.157210052013397,0.235555216670036,-0.942402362823486,0.237468704581261,0.159038990736008,-0.974675059318542,0.157210052013397,0.225335165858269,-0.948840439319611,0.221191838383675,0.235555216670036,-0.942402362823486,0.237468704581261,0.23817540705204,-0.944939017295837,0.224416151642799,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.146900564432144,-0.980062901973724,0.133778229355812,0.23817540705204,-0.944939017295837,0.224416151642799,0.146900564432144,-0.980062901973724,0.133778229355812,0.235555216670036,-0.942402362823486,0.237468704581261,-0.136139914393425,-0.987576127052307,-0.078480638563633,-0.242951154708862,-0.968195378780365,-0.0597671866416931,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.0268291644752026,-0.999012172222137,0.0354239121079445,-0.136139914393425,-0.987576127052307,-0.078480638563633,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.0268291644752026,-0.999012172222137,0.0354239121079445,0.0676233023405075,-0.995519876480103,0.0660842284560204,0.17764113843441,-0.972853720188141,0.148321211338043,0.23817540705204,-0.944939017295837,0.224416151642799,0.17764113843441,-0.972853720188141,0.148321211338043,0.0676233023405075,-0.995519876480103,0.0660842284560204,-0.242951154708862,-0.968195378780365,-0.0597671866416931,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.242951154708862,-0.968195378780365,-0.0597671866416931,\r\n-0.136139914393425,-0.987576127052307,-0.078480638563633,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.470660358667374,-0.866263508796692,-0.167530193924904,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.586102783679962,-0.810113310813904,0.0141346892341971,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.617903351783752,-0.78050971031189,-0.0948682427406311,-0.617903351783752,-0.78050971031189,-0.0948682427406311,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.559816420078278,-0.788114011287689,-0.25589394569397,-0.559816420078278,-0.788114011287689,-0.25589394569397,-0.557467460632324,-0.817623734474182,-0.143948912620544,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.598381280899048,-0.790379106998444,0.131303951144218,-0.586102783679962,-0.810113310813904,0.0141346892341971,-0.617903351783752,-0.78050971031189,-0.0948682427406311,0.267794132232666,-0.944221198558807,0.191657438874245,0.265630483627319,-0.930368602275848,0.252694606781006,0.225335165858269,-0.948840439319611,0.221191838383675,0.235555216670036,-0.942402362823486,0.237468704581261,0.225335165858269,-0.948840439319611,0.221191838383675,0.259758979082108,-0.914674580097198,0.309670239686966,0.259758979082108,-0.914674580097198,0.309670239686966,0.225335165858269,-0.948840439319611,0.221191838383675,0.243824228644371,-0.914848804473877,0.3218714594841,0.225335165858269,-0.948840439319611,0.221191838383675,0.265630483627319,-0.930368602275848,0.252694606781006,0.243824228644371,-0.914848804473877,0.3218714594841,0.23817540705204,-0.944939017295837,0.224416151642799,0.235555216670036,-0.942402362823486,0.237468704581261,0.278047859668732,-0.904672741889954,0.322887748479843,0.278047859668732,-0.904672741889954,0.322887748479843,0.235555216670036,-0.942402362823486,0.237468704581261,\r\n0.259758979082108,-0.914674580097198,0.309670239686966,0.23817540705204,-0.944939017295837,0.224416151642799,0.351173043251038,-0.89715439081192,0.267939060926437,0.17764113843441,-0.972853720188141,0.148321211338043,0.23817540705204,-0.944939017295837,0.224416151642799,0.318477660417557,-0.883532762527466,0.343426465988159,0.351173043251038,-0.89715439081192,0.267939060926437,0.278047859668732,-0.904672741889954,0.322887748479843,0.318477660417557,-0.883532762527466,0.343426465988159,0.23817540705204,-0.944939017295837,0.224416151642799,0.17764113843441,-0.972853720188141,0.148321211338043,0.142743065953255,-0.984451711177826,0.102366626262665,0.0268291644752026,-0.999012172222137,0.0354239121079445,0.276522696018219,-0.944294095039368,0.178448095917702,0.142743065953255,-0.984451711177826,0.102366626262665,0.17764113843441,-0.972853720188141,0.148321211338043,0.276522696018219,-0.944294095039368,0.178448095917702,0.17764113843441,-0.972853720188141,0.148321211338043,0.351173043251038,-0.89715439081192,0.267939060926437,0.0268291644752026,-0.999012172222137,0.0354239121079445,-0.173388302326202,-0.972432911396027,-0.155917957425117,-0.136139914393425,-0.987576127052307,-0.078480638563633,0.0301706567406654,-0.999519944190979,0.00703302072361112,-0.173388302326202,-0.972432911396027,-0.155917957425117,0.0268291644752026,-0.999012172222137,0.0354239121079445,0.0301706567406654,-0.999519944190979,0.00703302072361112,0.0268291644752026,-0.999012172222137,0.0354239121079445,0.142743065953255,-0.984451711177826,0.102366626262665,-0.173388302326202,-0.972432911396027,-0.155917957425117,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.136139914393425,-0.987576127052307,-0.078480638563633,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.382580369710922,-0.889498472213745,-0.249849200248718,-0.173388302326202,-0.972432911396027,-0.155917957425117,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.382580369710922,-0.889498472213745,-0.249849200248718,\r\n-0.461669117212296,-0.765853583812714,-0.447582125663757,-0.559816420078278,-0.788114011287689,-0.25589394569397,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.461669117212296,-0.765853583812714,-0.447582125663757,-0.520008563995361,-0.798071205615997,-0.30442288517952,-0.367527395486832,-0.853760302066803,-0.368804544210434,0.259758979082108,-0.914674580097198,0.309670239686966,0.243824228644371,-0.914848804473877,0.3218714594841,0.263385146856308,-0.887956738471985,0.377042412757874,0.278047859668732,-0.904672741889954,0.322887748479843,0.259758979082108,-0.914674580097198,0.309670239686966,0.263385146856308,-0.887956738471985,0.377042412757874,0.278047859668732,-0.904672741889954,0.322887748479843,0.263385146856308,-0.887956738471985,0.377042412757874,0.318477660417557,-0.883532762527466,0.343426465988159,0.385124176740646,-0.865175068378448,0.321171790361404,0.351173043251038,-0.89715439081192,0.267939060926437,0.318477660417557,-0.883532762527466,0.343426465988159,0.385124176740646,-0.865175068378448,0.321171790361404,0.318477660417557,-0.883532762527466,0.343426465988159,0.35479462146759,-0.851547241210938,0.385989516973495,0.263385146856308,-0.887956738471985,0.377042412757874,0.35479462146759,-0.851547241210938,0.385989516973495,0.318477660417557,-0.883532762527466,0.343426465988159,0.276522696018219,-0.944294095039368,0.178448095917702,0.351173043251038,-0.89715439081192,0.267939060926437,0.434501528739929,-0.876595914363861,0.206852585077286,0.458358734846115,-0.850490093231201,0.258018851280212,0.351173043251038,-0.89715439081192,0.267939060926437,0.385124176740646,-0.865175068378448,0.321171790361404,0.434501528739929,-0.876595914363861,0.206852585077286,0.351173043251038,-0.89715439081192,0.267939060926437,0.458358734846115,-0.850490093231201,0.258018851280212,0.276522696018219,-0.944294095039368,0.178448095917702,0.307719826698303,-0.944160580635071,0.117767333984375,0.142743065953255,-0.984451711177826,0.102366626262665,0.276522696018219,-0.944294095039368,0.178448095917702,0.434501528739929,-0.876595914363861,0.206852585077286,\r\n0.307719826698303,-0.944160580635071,0.117767333984375,0.120160691440105,-0.991060495376587,0.0579689927399158,0.0301706567406654,-0.999519944190979,0.00703302072361112,0.142743065953255,-0.984451711177826,0.102366626262665,0.120160691440105,-0.991060495376587,0.0579689927399158,0.142743065953255,-0.984451711177826,0.102366626262665,0.307719826698303,-0.944160580635071,0.117767333984375,0.0301706567406654,-0.999519944190979,0.00703302072361112,-0.112680055201054,-0.977257907390594,-0.179638713598251,-0.173388302326202,-0.972432911396027,-0.155917957425117,0.0301706567406654,-0.999519944190979,0.00703302072361112,0.0165667030960321,-0.999861657619476,-0.00144569540861994,-0.112680055201054,-0.977257907390594,-0.179638713598251,0.0165667030960321,-0.999861657619476,-0.00144569540861994,0.0301706567406654,-0.999519944190979,0.00703302072361112,0.120160691440105,-0.991060495376587,0.0579689927399158,-0.112680055201054,-0.977257907390594,-0.179638713598251,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.173388302326202,-0.972432911396027,-0.155917957425117,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.461669117212296,-0.765853583812714,-0.447582125663757,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.112680055201054,-0.977257907390594,-0.179638713598251,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.367527395486832,-0.853760302066803,-0.368804544210434,-0.461669117212296,-0.765853583812714,-0.447582125663757,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.419998019933701,-0.617481708526611,-0.665069818496704,0.385124176740646,-0.865175068378448,0.321171790361404,0.35479462146759,-0.851547241210938,0.385989516973495,0.41211211681366,-0.858661532402039,0.304735720157623,0.458358734846115,-0.850490093231201,0.258018851280212,0.385124176740646,-0.865175068378448,0.321171790361404,0.41211211681366,-0.858661532402039,0.304735720157623,0.434501528739929,-0.876595914363861,0.206852585077286,0.458358734846115,-0.850490093231201,0.258018851280212,0.530144155025482,-0.827777922153473,0.183659359812737,\r\n0.453572779893875,-0.881403744220734,0.131905198097229,0.307719826698303,-0.944160580635071,0.117767333984375,0.434501528739929,-0.876595914363861,0.206852585077286,0.530144155025482,-0.827777922153473,0.183659359812737,0.453572779893875,-0.881403744220734,0.131905198097229,0.434501528739929,-0.876595914363861,0.206852585077286,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.0165667030960321,-0.999861657619476,-0.00144569540861994,0.120160691440105,-0.991060495376587,0.0579689927399158,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.120160691440105,-0.991060495376587,0.0579689927399158,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.0531366430222988,-0.990837335586548,-0.124168120324612,-0.112680055201054,-0.977257907390594,-0.179638713598251,0.0165667030960321,-0.999861657619476,-0.00144569540861994,0.0218589678406715,-0.999741315841675,0.00627833371981978,-0.0531366430222988,-0.990837335586548,-0.124168120324612,0.0165667030960321,-0.999861657619476,-0.00144569540861994,-0.0531366430222988,-0.990837335586548,-0.124168120324612,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.112680055201054,-0.977257907390594,-0.179638713598251,-0.419998019933701,-0.617481708526611,-0.665069818496704,-0.275559812784195,-0.845956861972809,-0.456534504890442,-0.0564642138779163,-0.967810094356537,-0.245265960693359,-0.0531366430222988,-0.990837335586548,-0.124168120324612,-0.0564642138779163,-0.967810094356537,-0.245265960693359,-0.275559812784195,-0.845956861972809,-0.456534504890442,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.0497986413538456,-0.998663187026978,0.0138514339923859,0.028103431686759,-0.998831450939178,0.0393171012401581,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.0273258332163095,-0.997748255729675,0.0612501055002213,0.028103431686759,-0.998831450939178,0.0393171012401581,-0.0273258332163095,-0.997748255729675,0.0612501055002213,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.0256036333739758,-0.999657869338989,0.00533970212563872,\r\n0.0218589678406715,-0.999741315841675,0.00627833371981978,-0.0564642138779163,-0.967810094356537,-0.245265960693359,-0.0531366430222988,-0.990837335586548,-0.124168120324612,0.0733116418123245,-0.996685922145844,0.0352488830685616,-0.0564642138779163,-0.967810094356537,-0.245265960693359,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.0733116418123245,-0.996685922145844,0.0352488830685616,0.0218589678406715,-0.999741315841675,0.00627833371981978,0.028103431686759,-0.998831450939178,0.0393171012401581,-0.0564642138779163,-0.967810094356537,-0.245265960693359,0.0733116418123245,-0.996685922145844,0.0352488830685616,0.0777720287442207,-0.992449522018433,0.0948441475629807,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.0256036333739758,-0.999657869338989,0.00533970212563872,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.147487714886665,-0.971263408660889,0.186801254749298,0.028103431686759,-0.998831450939178,0.0393171012401581,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.0273258332163095,-0.997748255729675,0.0612501055002213,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.287566423416138,-0.933751106262207,0.213106364011765,0.0733116418123245,-0.996685922145844,0.0352488830685616,0.028103431686759,-0.998831450939178,0.0393171012401581,-0.0206463187932968,-0.998193383216858,0.0564231723546982,0.0733116418123245,-0.996685922145844,0.0352488830685616,-0.0206463187932968,-0.998193383216858,0.0564231723546982,0.0777720287442207,-0.992449522018433,0.0948441475629807,\r\n0.0777720287442207,-0.992449522018433,0.0948441475629807,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.0178166925907135,-0.994571447372437,0.102518878877163,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.316778719425201,-0.890985310077667,0.325263440608978,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.316778719425201,-0.890985310077667,0.325263440608978,-0.147487714886665,-0.971263408660889,0.186801254749298,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,-0.0150147080421448,-0.9989053606987,0.0443011485040188,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,-0.114537082612515,-0.99328476190567,-0.0163273233920336,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.115289948880672,-0.991837441921234,0.0544660985469818,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.114537082612515,-0.99328476190567,-0.0163273233920336,-0.0178166925907135,-0.994571447372437,0.102518878877163,-0.0206463187932968,-0.998193383216858,0.0564231723546982,-0.115289948880672,-0.991837441921234,0.0544660985469818,-0.316778719425201,-0.890985310077667,0.325263440608978,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.0435228422284126,-0.994615912437439,0.0940471217036247,\r\n-0.162222623825073,-0.96266758441925,0.216690719127655,0.00585170276463032,-0.99807196855545,0.0617904663085938,0.00585170276463032,-0.99807196855545,0.0617904663085938,0.0561287924647331,-0.998272240161896,-0.01737623475492,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.0435228422284126,-0.994615912437439,0.0940471217036247,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.162222623825073,-0.96266758441925,0.216690719127655,-0.0435228422284126,-0.994615912437439,0.0940471217036247,0.0561287924647331,-0.998272240161896,-0.01737623475492,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,-0.316778719425201,-0.890985310077667,0.325263440608978,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.358236134052277,-0.839041888713837,0.409481853246689,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.334285438060761,-0.847836852073669,0.411613643169403,-0.162222623825073,-0.96266758441925,0.216690719127655,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.334285438060761,-0.847836852073669,0.411613643169403,-0.233936458826065,-0.915087759494781,0.328463047742844,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,0.0561287924647331,-0.998272240161896,-0.01737623475492,0.0717418938875198,-0.99324631690979,-0.0911852344870567,-0.0730344653129578,-0.994201898574829,-0.0789203867316246,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,0.0717418938875198,-0.99324631690979,-0.0911852344870567,-0.114537082612515,-0.99328476190567,-0.0163273233920336,-0.0196461174637079,-0.999342381954193,-0.0304746944457293,\r\n-0.0730344653129578,-0.994201898574829,-0.0789203867316246,-0.162222623825073,-0.96266758441925,0.216690719127655,-0.097537599503994,-0.983774304389954,0.150580301880836,0.00585170276463032,-0.99807196855545,0.0617904663085938,-0.162222623825073,-0.96266758441925,0.216690719127655,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.097537599503994,-0.983774304389954,0.150580301880836,-0.334285438060761,-0.847836852073669,0.411613643169403,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.162222623825073,-0.96266758441925,0.216690719127655,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.00585170276463032,-0.99807196855545,0.0617904663085938,-0.097537599503994,-0.983774304389954,0.150580301880836,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.00585170276463032,-0.99807196855545,0.0617904663085938,0.00585170276463032,-0.99807196855545,0.0617904663085938,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.0561287924647331,-0.998272240161896,-0.01737623475492,0.0717418938875198,-0.99324631690979,-0.0911852344870567,0.0561287924647331,-0.998272240161896,-0.01737623475492,0.123652823269367,-0.990374863147736,-0.0621892735362053,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.334285438060761,-0.847836852073669,0.411613643169403,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.531244039535522,-0.593717455863953,0.604383289813995,-0.531244039535522,-0.593717455863953,0.604383289813995,-0.449412137269974,-0.700222671031952,0.554722368717194,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.449412137269974,-0.700222671031952,0.554722368717194,\r\n-0.334285438060761,-0.847836852073669,0.411613643169403,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.287550121545792,-0.898085057735443,0.332803428173065,0.0717418938875198,-0.99324631690979,-0.0911852344870567,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.147593751549721,-0.981811940670013,-0.119420602917671,0.00404170481488109,-0.996722936630249,0.0807895585894585,0.136235952377319,-0.990676283836365,-0.000495914253406227,-0.097537599503994,-0.983774304389954,0.150580301880836,-0.193094581365585,-0.954370498657227,0.22779668867588,0.00404170481488109,-0.996722936630249,0.0807895585894585,-0.097537599503994,-0.983774304389954,0.150580301880836,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.097537599503994,-0.983774304389954,0.150580301880836,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.364107936620712,-0.842690348625183,0.3966084420681,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.287550121545792,-0.898085057735443,0.332803428173065,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.364107936620712,-0.842690348625183,0.3966084420681,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.00404170481488109,-0.996722936630249,0.0807895585894585,0.192912727594376,-0.980905950069427,0.02465845271945,0.284451901912689,-0.95784854888916,-0.0401649475097656,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.192912727594376,-0.980905950069427,0.02465845271945,0.202655747532845,-0.976470768451691,-0.0737255066633224,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.284451901912689,-0.95784854888916,-0.0401649475097656,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.136235952377319,-0.990676283836365,-0.000495914253406227,0.202655747532845,-0.976470768451691,-0.0737255066633224,0.147593751549721,-0.981811940670013,-0.119420602917671,0.123652823269367,-0.990374863147736,-0.0621892735362053,0.202655747532845,-0.976470768451691,-0.0737255066633224,-0.540582954883575,-0.639463722705841,0.54667741060257,\r\n-0.480639547109604,-0.709499359130859,0.515360176563263,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.531244039535522,-0.593717455863953,0.604383289813995,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.471083730459213,-0.670215904712677,0.573489844799042,-0.480639547109604,-0.709499359130859,0.515360176563263,-0.364107936620712,-0.842690348625183,0.3966084420681,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.480002343654633,-0.696702301502228,0.533107340335846,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.493991315364838,-0.716734230518341,0.492203712463379,0.00404170481488109,-0.996722936630249,0.0807895585894585,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.193094581365585,-0.954370498657227,0.22779668867588,-0.364107936620712,-0.842690348625183,0.3966084420681,-0.093847818672657,-0.991515755653381,0.0899385288357735,0.0524392686784267,-0.995820879936218,0.0747719332575798,\r\n0.00404170481488109,-0.996722936630249,0.0807895585894585,0.192912727594376,-0.980905950069427,0.02465845271945,0.00404170481488109,-0.996722936630249,0.0807895585894585,0.0524392686784267,-0.995820879936218,0.0747719332575798,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.093847818672657,-0.991515755653381,0.0899385288357735,0.00404170481488109,-0.996722936630249,0.0807895585894585,-0.364107936620712,-0.842690348625183,0.3966084420681,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.480639547109604,-0.709499359130859,0.515360176563263,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.47290712594986,-0.680483102798462,0.559733390808105,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.147112920880318,-0.961290180683136,0.232978284358978,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.147112920880318,-0.961290180683136,0.232978284358978,-0.353620082139969,-0.820792615413666,0.448611438274384,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.0862768515944481,-0.977811753749847,0.190893560647964,-0.0862768515944481,-0.977811753749847,0.190893560647964,-0.212419539690018,-0.91420841217041,0.345109879970551,0.00179139152169228,-0.994337797164917,0.10624884814024,-0.147112920880318,-0.961290180683136,0.232978284358978,0.00179139152169228,-0.994337797164917,0.10624884814024,-0.212419539690018,-0.91420841217041,0.345109879970551,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.468380123376846,-0.739380061626434,0.483670383691788,\r\n-0.0862768515944481,-0.977811753749847,0.190893560647964,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.317955762147903,-0.844724535942078,0.430516481399536,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.493991315364838,-0.716734230518341,0.492203712463379,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.222222238779068,-0.95393979549408,0.201534122228622,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.222222238779068,-0.95393979549408,0.201534122228622,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.361553132534027,-0.867315948009491,0.342114329338074,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.139295265078545,-0.973026096820831,0.183893814682961,-0.222222238779068,-0.95393979549408,0.201534122228622,-0.093847818672657,-0.991515755653381,0.0899385288357735,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.0364438109099865,-0.993548333644867,0.107394054532051,-0.147112920880318,-0.961290180683136,0.232978284358978,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.468380123376846,-0.739380061626434,0.483670383691788,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.0364438109099865,-0.993548333644867,0.107394054532051,\r\n0.00179139152169228,-0.994337797164917,0.10624884814024,-0.147112920880318,-0.961290180683136,0.232978284358978,0.0251305215060711,-0.996753454208374,0.0764908194541931,0.00179139152169228,-0.994337797164917,0.10624884814024,0.0482384748756886,-0.997548401355743,0.0506960526108742,-0.0862768515944481,-0.977811753749847,0.190893560647964,0.00179139152169228,-0.994337797164917,0.10624884814024,0.0251305215060711,-0.996753454208374,0.0764908194541931,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.00179139152169228,-0.994337797164917,0.10624884814024,0.0487124510109425,-0.996004998683929,0.0748395696282387,-0.0364438109099865,-0.993548333644867,0.107394054532051,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.00179139152169228,-0.994337797164917,0.10624884814024,-0.0862768515944481,-0.977811753749847,0.190893560647964,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.0862768515944481,-0.977811753749847,0.190893560647964,0.0251305215060711,-0.996753454208374,0.0764908194541931,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.100277446210384,-0.982060551643372,0.159691944718361,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.100277446210384,-0.982060551643372,0.159691944718361,-0.231485664844513,-0.932414889335632,0.277518898248672,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.559334814548492,-0.690314412117004,0.45892322063446,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.395175844430923,-0.84804779291153,0.3530592918396,-0.158827006816864,-0.972283363342285,0.171578079462051,-0.395175844430923,-0.84804779291153,0.3530592918396,\r\n-0.29101437330246,-0.912958920001984,0.286035746335983,-0.158827006816864,-0.972283363342285,0.171578079462051,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.29101437330246,-0.912958920001984,0.286035746335983,-0.100277446210384,-0.982060551643372,0.159691944718361,-0.542870938777924,-0.720339417457581,0.431743085384369,-0.395175844430923,-0.84804779291153,0.3530592918396,-0.569900572299957,-0.717265009880066,0.400929003953934,0.0385789684951305,-0.995219528675079,0.089719794690609,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.0436160191893578,-0.998257100582123,0.0397536568343639,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.00982866436243057,-0.995724678039551,0.0918455868959427,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.0482384748756886,-0.997548401355743,0.0506960526108742,0.0385789684951305,-0.995219528675079,0.089719794690609,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0251305215060711,-0.996753454208374,0.0764908194541931,0.0482384748756886,-0.997548401355743,0.0506960526108742,-0.00982866436243057,-0.995724678039551,0.0918455868959427,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.100277446210384,-0.982060551643372,0.159691944718361,-0.00982866436243057,-0.995724678039551,0.0918455868959427,-0.0255853291600943,-0.994992911815643,0.0966135486960411,0.0436160191893578,-0.998257100582123,0.0397536568343639,-0.0343938991427422,-0.99642550945282,0.0771572217345238,-0.0255853291600943,-0.994992911815643,0.0966135486960411,-0.0343938991427422,-0.99642550945282,0.0771572217345238,-0.158827006816864,-0.972283363342285,0.171578079462051,\r\n0.0436160191893578,-0.998257100582123,0.0397536568343639,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0436160191893578,-0.998257100582123,0.0397536568343639,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0295560862869024,-0.995258748531342,0.092662401497364,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0249471850693226,-0.997819423675537,0.0611042194068432,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.00785439554601908,-0.997408092021942,0.071521058678627,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0246136114001274,-0.998632431030273,0.0461237207055092,0.00785439554601908,-0.997408092021942,0.071521058678627,0.0240670274943113,-0.991354942321777,0.128979980945587,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0295560862869024,-0.995258748531342,0.092662401497364,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0259841587394476,-0.995611846446991,0.089898370206356,0.0240670274943113,-0.991354942321777,0.128979980945587,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0220855548977852,-0.993190407752991,0.11438973993063,0.00785439554601908,-0.997408092021942,0.071521058678627,0.0220855548977852,-0.993190407752991,0.11438973993063,0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0248435270041227,-0.990361452102661,0.136260315775871,0.0248435270041227,-0.990361452102661,0.136260315775871,\r\n0.0199811346828938,-0.995869219303131,0.0885733738541603,0.0240670274943113,-0.991354942321777,0.128979980945587,0.00785439554601908,-0.997408092021942,0.071521058678627,0.0220855548977852,-0.993190407752991,0.11438973993063,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0363240465521812,-0.993178308010101,0.110802926123142,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0363240465521812,-0.993178308010101,0.110802926123142,0.033177062869072,-0.996918499469757,0.0710820853710175,0.0220855548977852,-0.993190407752991,0.11438973993063,0.0275333374738693,-0.987375855445862,0.155983060598373,0.0248435270041227,-0.990361452102661,0.136260315775871,0.0240670274943113,-0.991354942321777,0.128979980945587,0.0220855548977852,-0.993190407752991,0.11438973993063,0.0248435270041227,-0.990361452102661,0.136260315775871,0.0275333374738693,-0.987375855445862,0.155983060598373,0.0220855548977852,-0.993190407752991,0.11438973993063,0.0395733825862408,-0.987298369407654,0.153869330883026,0.0363240465521812,-0.993178308010101,0.110802926123142,0.0221267528831959,-0.997239708900452,0.0708746090531349,0.0363240465521812,-0.993178308010101,0.110802926123142,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0363240465521812,-0.993178308010101,0.110802926123142,0.0383325107395649,-0.991800606250763,0.121910199522972,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0383325107395649,-0.991800606250763,0.121910199522972,0.0363240465521812,-0.993178308010101,0.110802926123142,0.0395733825862408,-0.987298369407654,0.153869330883026,0.0318183824419975,-0.99312835931778,0.112621635198593,0.023672342300415,-0.996148228645325,0.0844284668564796,0.0383325107395649,-0.991800606250763,0.121910199522972,0.0345578864216805,-0.989020884037018,0.143678158521652,0.0318183824419975,-0.99312835931778,0.112621635198593,0.0383325107395649,-0.991800606250763,0.121910199522972,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.023672342300415,-0.996148228645325,0.0844284668564796,\r\n0.0318183824419975,-0.99312835931778,0.112621635198593,0.0456116534769535,-0.988736152648926,0.142549023032188,0.0318183824419975,-0.99312835931778,0.112621635198593,0.0345578864216805,-0.989020884037018,0.143678158521652,0.0318189226090908,-0.998701453208923,0.0397854670882225,0.0314269438385963,-0.996424853801727,0.0784209743142128,0.0318183824419975,-0.99312835931778,0.112621635198593,0.0318189226090908,-0.998701453208923,0.0397854670882225,0.0318183824419975,-0.99312835931778,0.112621635198593,0.0456116534769535,-0.988736152648926,0.142549023032188,0.0318189226090908,-0.998701453208923,0.0397854670882225,0.0595862492918968,-0.998094737529755,0.0160093419253826,0.0314269438385963,-0.996424853801727,0.0784209743142128,-0.0101088183000684,0.973163604736328,-0.229892030358315,0.0595862492918968,-0.998094737529755,0.0160093419253826,0.0318189226090908,-0.998701453208923,0.0397854670882225,0.779850006103516,0.610774993896484,0.137068405747414,0.348779290914536,0.908047258853912,-0.231954380869865,0.855585336685181,0.439547032117844,0.273444682359695,0.779850006103516,0.610774993896484,0.137068405747414,0.0557303875684738,0.89520138502121,-0.442163348197937,0.348779290914536,0.908047258853912,-0.231954380869865,0.542684078216553,0.838871598243713,-0.0422878675162792,0.855585336685181,0.439547032117844,0.273444682359695,0.348779290914536,0.908047258853912,-0.231954380869865,0.855780065059662,0.281191557645798,0.434248358011246,0.779850006103516,0.610774993896484,0.137068405747414,0.855585336685181,0.439547032117844,0.273444682359695,0.779850006103516,0.610774993896484,0.137068405747414,0.60889083147049,0.793252229690552,-0.00164051202591509,0.0557303875684738,0.89520138502121,-0.442163348197937,0.0557303875684738,0.89520138502121,-0.442163348197937,-0.373403966426849,0.719381392002106,-0.585712909698486,0.348779290914536,0.908047258853912,-0.231954380869865,0.850745975971222,0.318017512559891,0.418444871902466,0.855585336685181,0.439547032117844,0.273444682359695,0.542684078216553,0.838871598243713,-0.0422878675162792,\r\n0.542684078216553,0.838871598243713,-0.0422878675162792,0.348779290914536,0.908047258853912,-0.231954380869865,-0.288024067878723,0.836333811283112,-0.466462999582291,0.779850006103516,0.610774993896484,0.137068405747414,0.855780065059662,0.281191557645798,0.434248358011246,0.850741863250732,0.393817186355591,0.348060578107834,0.855780065059662,0.281191557645798,0.434248358011246,0.855585336685181,0.439547032117844,0.273444682359695,0.853951513767242,0.193813428282738,0.482911020517349,0.779850006103516,0.610774993896484,0.137068405747414,0.850741863250732,0.393817186355591,0.348060578107834,0.60889083147049,0.793252229690552,-0.00164051202591509,0.0557303875684738,0.89520138502121,-0.442163348197937,0.60889083147049,0.793252229690552,-0.00164051202591509,-0.157215446233749,0.830069959163666,-0.535039305686951,0.0557303875684738,0.89520138502121,-0.442163348197937,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.373403966426849,0.719381392002106,-0.585712909698486,-0.288024067878723,0.836333811283112,-0.466462999582291,0.348779290914536,0.908047258853912,-0.231954380869865,-0.373403966426849,0.719381392002106,-0.585712909698486,0.850745975971222,0.318017512559891,0.418444871902466,0.853951513767242,0.193813428282738,0.482911020517349,0.855585336685181,0.439547032117844,0.273444682359695,0.542684078216553,0.838871598243713,-0.0422878675162792,0.580496847629547,0.789411783218384,0.199630483984947,0.850745975971222,0.318017512559891,0.418444871902466,-0.117830477654934,0.942831635475159,-0.311744123697281,0.542684078216553,0.838871598243713,-0.0422878675162792,-0.288024067878723,0.836333811283112,-0.466462999582291,0.850741863250732,0.393817186355591,0.348060578107834,0.855780065059662,0.281191557645798,0.434248358011246,0.82640528678894,0.341271132230759,0.44787073135376,0.850741863250732,0.393817186355591,0.348060578107834,0.786850094795227,0.52639502286911,0.322141289710999,0.60889083147049,0.793252229690552,-0.00164051202591509,0.60889083147049,0.793252229690552,-0.00164051202591509,0.483810991048813,0.863404273986816,-0.143037915229797,\r\n-0.157215446233749,0.830069959163666,-0.535039305686951,0.0557303875684738,0.89520138502121,-0.442163348197937,-0.157215446233749,0.830069959163666,-0.535039305686951,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.373403966426849,0.719381392002106,-0.585712909698486,-0.288024067878723,0.836333811283112,-0.466462999582291,-0.373403966426849,0.719381392002106,-0.585712909698486,-0.632649719715118,0.484614938497543,-0.60407155752182,0.805518507957459,0.0838503688573837,0.586607992649078,0.853951513767242,0.193813428282738,0.482911020517349,0.850745975971222,0.318017512559891,0.418444871902466,0.542684078216553,0.838871598243713,-0.0422878675162792,-0.117830477654934,0.942831635475159,-0.311744123697281,0.580496847629547,0.789411783218384,0.199630483984947,0.749607145786285,0.454299837350845,0.481352895498276,0.850745975971222,0.318017512559891,0.418444871902466,0.580496847629547,0.789411783218384,0.199630483984947,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.117830477654934,0.942831635475159,-0.311744123697281,-0.288024067878723,0.836333811283112,-0.466462999582291,0.850741863250732,0.393817186355591,0.348060578107834,0.82640528678894,0.341271132230759,0.44787073135376,0.786850094795227,0.52639502286911,0.322141289710999,0.60889083147049,0.793252229690552,-0.00164051202591509,0.786850094795227,0.52639502286911,0.322141289710999,0.483810991048813,0.863404273986816,-0.143037915229797,-0.0181518439203501,0.806248843669891,-0.59129786491394,-0.157215446233749,0.830069959163666,-0.535039305686951,0.483810991048813,0.863404273986816,-0.143037915229797,-0.582265615463257,0.464549511671066,-0.667203366756439,-0.157215446233749,0.830069959163666,-0.535039305686951,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.632649719715118,0.484614938497543,-0.60407155752182,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.288024067878723,0.836333811283112,-0.466462999582291,0.749607145786285,0.454299837350845,0.481352895498276,\r\n0.805518507957459,0.0838503688573837,0.586607992649078,0.850745975971222,0.318017512559891,0.418444871902466,0.106745071709156,0.991677284240723,0.0719828456640244,0.580496847629547,0.789411783218384,0.199630483984947,-0.117830477654934,0.942831635475159,-0.311744123697281,0.749607145786285,0.454299837350845,0.481352895498276,0.580496847629547,0.789411783218384,0.199630483984947,0.106745071709156,0.991677284240723,0.0719828456640244,-0.117830477654934,0.942831635475159,-0.311744123697281,-0.581838607788086,0.626670718193054,-0.518408536911011,-0.486489176750183,0.799892067909241,-0.351426810026169,0.786850094795227,0.52639502286911,0.322141289710999,0.82640528678894,0.341271132230759,0.44787073135376,0.779515206813812,0.425029695034027,0.46011483669281,0.635182499885559,0.765227317810059,0.104739263653755,0.483810991048813,0.863404273986816,-0.143037915229797,0.786850094795227,0.52639502286911,0.322141289710999,-0.0181518439203501,0.806248843669891,-0.59129786491394,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.157215446233749,0.830069959163666,-0.535039305686951,0.635182499885559,0.765227317810059,0.104739263653755,-0.0181518439203501,0.806248843669891,-0.59129786491394,0.483810991048813,0.863404273986816,-0.143037915229797,0.805518507957459,0.0838503688573837,0.586607992649078,0.749607145786285,0.454299837350845,0.481352895498276,0.81856906414032,0.147801890969276,0.555066764354706,-0.117830477654934,0.942831635475159,-0.311744123697281,-0.486489176750183,0.799892067909241,-0.351426810026169,0.106745071709156,0.991677284240723,0.0719828456640244,0.749607145786285,0.454299837350845,0.481352895498276,0.106745071709156,0.991677284240723,0.0719828456640244,0.404096633195877,0.808793246746063,0.427269548177719,0.786850094795227,0.52639502286911,0.322141289710999,0.779515206813812,0.425029695034027,0.46011483669281,0.635182499885559,0.765227317810059,0.104739263653755,-0.542790949344635,0.403749734163284,-0.736453652381897,-0.0181518439203501,0.806248843669891,-0.59129786491394,-0.405961364507675,0.404996901750565,-0.819251298904419,\r\n0.418924808502197,0.854383170604706,-0.30745941400528,-0.0181518439203501,0.806248843669891,-0.59129786491394,0.635182499885559,0.765227317810059,0.104739263653755,0.751353919506073,0.324701696634293,0.574487626552582,0.81856906414032,0.147801890969276,0.555066764354706,0.749607145786285,0.454299837350845,0.481352895498276,0.805518507957459,0.0838503688573837,0.586607992649078,0.81856906414032,0.147801890969276,0.555066764354706,0.819758296012878,0.0189909972250462,0.572394549846649,-0.486489176750183,0.799892067909241,-0.351426810026169,-0.344709098339081,0.936210036277771,-0.0684566050767899,0.106745071709156,0.991677284240723,0.0719828456640244,0.106745071709156,0.991677284240723,0.0719828456640244,-0.344709098339081,0.936210036277771,-0.0684566050767899,0.404096633195877,0.808793246746063,0.427269548177719,0.751353919506073,0.324701696634293,0.574487626552582,0.749607145786285,0.454299837350845,0.481352895498276,0.404096633195877,0.808793246746063,0.427269548177719,0.690792083740234,0.72295081615448,0.0121760629117489,0.635182499885559,0.765227317810059,0.104739263653755,0.779515206813812,0.425029695034027,0.46011483669281,-0.0181518439203501,0.806248843669891,-0.59129786491394,0.0867357552051544,0.693573415279388,-0.715145289897919,-0.405961364507675,0.404996901750565,-0.819251298904419,-0.0181518439203501,0.806248843669891,-0.59129786491394,0.418924808502197,0.854383170604706,-0.30745941400528,0.0867357552051544,0.693573415279388,-0.715145289897919,0.690792083740234,0.72295081615448,0.0121760629117489,0.418924808502197,0.854383170604706,-0.30745941400528,0.635182499885559,0.765227317810059,0.104739263653755,0.81856906414032,0.147801890969276,0.555066764354706,0.751353919506073,0.324701696634293,0.574487626552582,0.819758296012878,0.0189909972250462,0.572394549846649,-0.486489176750183,0.799892067909241,-0.351426810026169,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.344709098339081,0.936210036277771,-0.0684566050767899,0.125661015510559,0.957829236984253,0.258403599262238,0.404096633195877,0.808793246746063,0.427269548177719,\r\n-0.344709098339081,0.936210036277771,-0.0684566050767899,0.736391484737396,0.385629147291183,0.55589348077774,0.751353919506073,0.324701696634293,0.574487626552582,0.404096633195877,0.808793246746063,0.427269548177719,0.0867357552051544,0.693573415279388,-0.715145289897919,-0.340127378702164,0.348741143941879,-0.873322904109955,-0.405961364507675,0.404996901750565,-0.819251298904419,0.690792083740234,0.72295081615448,0.0121760629117489,0.0867357552051544,0.693573415279388,-0.715145289897919,0.418924808502197,0.854383170604706,-0.30745941400528,0.736391484737396,0.385629147291183,0.55589348077774,0.819758296012878,0.0189909972250462,0.572394549846649,0.751353919506073,0.324701696634293,0.574487626552582,-0.344709098339081,0.936210036277771,-0.0684566050767899,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.522601068019867,0.842803001403809,-0.128728747367859,0.125661015510559,0.957829236984253,0.258403599262238,0.736391484737396,0.385629147291183,0.55589348077774,0.404096633195877,0.808793246746063,0.427269548177719,-0.344709098339081,0.936210036277771,-0.0684566050767899,-0.522601068019867,0.842803001403809,-0.128728747367859,0.125661015510559,0.957829236984253,0.258403599262238,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.819758296012878,0.0189909972250462,0.572394549846649,0.736391484737396,0.385629147291183,0.55589348077774,-0.662547588348389,0.641905009746552,-0.3859903216362,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.522601068019867,0.842803001403809,-0.128728747367859,0.736391484737396,0.385629147291183,0.55589348077774,0.125661015510559,0.957829236984253,0.258403599262238,0.727163553237915,0.426064610481262,0.538239657878876,0.125661015510559,0.957829236984253,0.258403599262238,-0.522601068019867,0.842803001403809,-0.128728747367859,-0.412953734397888,0.909557938575745,0.0466202609241009,0.736391484737396,0.385629147291183,0.55589348077774,0.727163553237915,0.426064610481262,0.538239657878876,0.838589608669281,8.54392346809618e-005,0.544763505458832,-0.522601068019867,0.842803001403809,-0.128728747367859,\r\n-0.677449107170105,0.673013865947723,-0.296841531991959,-0.412953734397888,0.909557938575745,0.0466202609241009,0.167753636837006,0.896029770374298,0.41108313202858,0.727163553237915,0.426064610481262,0.538239657878876,0.125661015510559,0.957829236984253,0.258403599262238,0.167753636837006,0.896029770374298,0.41108313202858,0.125661015510559,0.957829236984253,0.258403599262238,-0.412953734397888,0.909557938575745,0.0466202609241009,0.838589608669281,8.54392346809618e-005,0.544763505458832,0.727163553237915,0.426064610481262,0.538239657878876,0.790116667747498,0.108334116637707,0.603307008743286,-0.677449107170105,0.673013865947723,-0.296841531991959,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.412953734397888,0.909557938575745,0.0466202609241009,0.366756588220596,0.716972768306732,0.592823207378387,0.727163553237915,0.426064610481262,0.538239657878876,0.167753636837006,0.896029770374298,0.41108313202858,0.366756588220596,0.716972768306732,0.592823207378387,0.167753636837006,0.896029770374298,0.41108313202858,-0.412953734397888,0.909557938575745,0.0466202609241009,0.727163553237915,0.426064610481262,0.538239657878876,0.366756588220596,0.716972768306732,0.592823207378387,0.790116667747498,0.108334116637707,0.603307008743286,-0.412953734397888,0.909557938575745,0.0466202609241009,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.298293709754944,0.941628873348236,0.156063258647919,-0.412953734397888,0.909557938575745,0.0466202609241009,-0.298293709754944,0.941628873348236,0.156063258647919,0.366756588220596,0.716972768306732,0.592823207378387,0.75214010477066,0.182770356535912,0.633150935173035,0.790116667747498,0.108334116637707,0.603307008743286,0.366756588220596,0.716972768306732,0.592823207378387,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.298293709754944,0.941628873348236,0.156063258647919,-0.61747819185257,0.756037056446075,-0.217091232538223,0.366756588220596,0.716972768306732,0.592823207378387,-0.298293709754944,0.941628873348236,0.156063258647919,0.261202245950699,0.77480810880661,0.575713157653809,\r\n0.366756588220596,0.716972768306732,0.592823207378387,0.261202245950699,0.77480810880661,0.575713157653809,0.75214010477066,0.182770356535912,0.633150935173035,-0.30200257897377,0.886800348758698,0.349827647209167,-0.298293709754944,0.941628873348236,0.156063258647919,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.61747819185257,0.756037056446075,-0.217091232538223,-0.724854290485382,0.610236823558807,-0.319682627916336,0.261202245950699,0.77480810880661,0.575713157653809,-0.298293709754944,0.941628873348236,0.156063258647919,-0.30200257897377,0.886800348758698,0.349827647209167,0.463855266571045,0.454978376626968,0.76015317440033,0.75214010477066,0.182770356535912,0.633150935173035,0.261202245950699,0.77480810880661,0.575713157653809,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.30200257897377,0.886800348758698,0.349827647209167,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.602489233016968,0.795535445213318,-0.0642641112208366,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.30200257897377,0.886800348758698,0.349827647209167,0.463855266571045,0.454978376626968,0.76015317440033,0.261202245950699,0.77480810880661,0.575713157653809,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.30200257897377,0.886800348758698,0.349827647209167,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.724854290485382,0.610236823558807,-0.319682627916336,-0.0545033067464828,0.857796609401703,0.511090993881226,0.463855266571045,0.454978376626968,0.76015317440033,-0.30200257897377,0.886800348758698,0.349827647209167,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.705883681774139,0.618047654628754,-0.346042335033417,-0.666199326515198,0.684379577636719,-0.296315550804138,\r\n-0.623652100563049,0.780848205089569,-0.0365240834653378,0.463855266571045,0.454978376626968,0.76015317440033,-0.0545033067464828,0.857796609401703,0.511090993881226,0.645113527774811,0.156735077500343,0.747838616371155,-0.128601551055908,0.9002605676651,0.415923565626144,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.623652100563049,0.780848205089569,-0.0365240834653378,-0.666199326515198,0.684379577636719,-0.296315550804138,0.496160537004471,0.477428525686264,0.725180387496948,0.645113527774811,0.156735077500343,0.747838616371155,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.128601551055908,0.9002605676651,0.415923565626144,0.496160537004471,0.477428525686264,0.725180387496948,-0.0545033067464828,0.857796609401703,0.511090993881226,-0.109210975468159,0.877037405967712,0.467844307422638,-0.128601551055908,0.9002605676651,0.415923565626144,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.666199326515198,0.684379577636719,-0.296315550804138,0.496160537004471,0.477428525686264,0.725180387496948,0.740694224834442,-0.158357843756676,0.652912557125092,0.645113527774811,0.156735077500343,0.747838616371155,-0.109210975468159,0.877037405967712,0.467844307422638,0.496160537004471,0.477428525686264,0.725180387496948,-0.128601551055908,0.9002605676651,0.415923565626144,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.485630035400391,0.868235647678375,0.101637601852417,-0.109210975468159,0.877037405967712,0.467844307422638,-0.5024334192276,0.864268064498901,0.0245183166116476,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.485630035400391,0.868235647678375,0.101637601852417,0.659816145896912,-0.0139634907245636,0.751297235488892,0.740694224834442,-0.158357843756676,0.652912557125092,0.496160537004471,0.477428525686264,0.725180387496948,0.406345754861832,0.489812523126602,0.771340847015381,\r\n0.496160537004471,0.477428525686264,0.725180387496948,-0.109210975468159,0.877037405967712,0.467844307422638,-0.109210975468159,0.877037405967712,0.467844307422638,-0.485630035400391,0.868235647678375,0.101637601852417,-0.0665697604417801,0.768150806427002,0.636798739433289,-0.485630035400391,0.868235647678375,0.101637601852417,-0.621035695075989,0.746946573257446,-0.237455934286118,-0.580990374088287,0.811691522598267,-0.0600578673183918,0.659816145896912,-0.0139634907245636,0.751297235488892,0.75469982624054,-0.268750041723251,0.598499298095703,0.740694224834442,-0.158357843756676,0.652912557125092,0.659816145896912,-0.0139634907245636,0.751297235488892,0.496160537004471,0.477428525686264,0.725180387496948,0.406345754861832,0.489812523126602,0.771340847015381,0.274290859699249,0.472306430339813,0.837669968605042,0.406345754861832,0.489812523126602,0.771340847015381,-0.109210975468159,0.877037405967712,0.467844307422638,-0.0665697604417801,0.768150806427002,0.636798739433289,-0.485630035400391,0.868235647678375,0.101637601852417,-0.304106771945953,0.887821197509766,0.345387399196625,-0.109210975468159,0.877037405967712,0.467844307422638,-0.0665697604417801,0.768150806427002,0.636798739433289,0.274290859699249,0.472306430339813,0.837669968605042,-0.304106771945953,0.887821197509766,0.345387399196625,-0.485630035400391,0.868235647678375,0.101637601852417,-0.580990374088287,0.811691522598267,-0.0600578673183918,0.75469982624054,-0.268750041723251,0.598499298095703,0.659816145896912,-0.0139634907245636,0.751297235488892,0.752604126930237,-0.176060438156128,0.634499549865723,0.274290859699249,0.472306430339813,0.837669968605042,0.659816145896912,-0.0139634907245636,0.751297235488892,0.406345754861832,0.489812523126602,0.771340847015381,-0.0665697604417801,0.768150806427002,0.636798739433289,-0.304106771945953,0.887821197509766,0.345387399196625,0.358601599931717,0.507097899913788,0.783745169639587,0.53783655166626,0.220236465334892,0.81377375125885,0.274290859699249,0.472306430339813,0.837669968605042,-0.0665697604417801,0.768150806427002,0.636798739433289,\r\n-0.304106771945953,0.887821197509766,0.345387399196625,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.404577344655991,0.881717085838318,0.2426767796278,0.53783655166626,0.220236465334892,0.81377375125885,0.752604126930237,-0.176060438156128,0.634499549865723,0.659816145896912,-0.0139634907245636,0.751297235488892,0.53783655166626,0.220236465334892,0.81377375125885,0.659816145896912,-0.0139634907245636,0.751297235488892,0.274290859699249,0.472306430339813,0.837669968605042,0.358601599931717,0.507097899913788,0.783745169639587,-0.304106771945953,0.887821197509766,0.345387399196625,0.182615086436272,0.710974216461182,0.679092943668365,-0.0665697604417801,0.768150806427002,0.636798739433289,0.358601599931717,0.507097899913788,0.783745169639587,0.53783655166626,0.220236465334892,0.81377375125885,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.404577344655991,0.881717085838318,0.2426767796278,-0.580990374088287,0.811691522598267,-0.0600578673183918,-0.304106771945953,0.887821197509766,0.345387399196625,-0.404577344655991,0.881717085838318,0.2426767796278,0.182615086436272,0.710974216461182,0.679092943668365,0.700762093067169,-0.00298877665773034,0.713388681411743,0.752604126930237,-0.176060438156128,0.634499549865723,0.53783655166626,0.220236465334892,0.81377375125885,0.358601599931717,0.507097899913788,0.783745169639587,0.182615086436272,0.710974216461182,0.679092943668365,0.668041288852692,0.0836354196071625,0.73940908908844,0.700762093067169,-0.00298877665773034,0.713388681411743,0.53783655166626,0.220236465334892,0.81377375125885,0.358601599931717,0.507097899913788,0.783745169639587,-0.404577344655991,0.881717085838318,0.2426767796278,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.156233429908752,0.846404194831848,0.509107947349548,0.182615086436272,0.710974216461182,0.679092943668365,-0.404577344655991,0.881717085838318,0.2426767796278,-0.156233429908752,0.846404194831848,0.509107947349548,0.767053186893463,-0.253628462553024,0.589323222637177,0.752604126930237,-0.176060438156128,0.634499549865723,\r\n0.700762093067169,-0.00298877665773034,0.713388681411743,0.538246929645538,0.323065757751465,0.778407692909241,0.668041288852692,0.0836354196071625,0.73940908908844,0.182615086436272,0.710974216461182,0.679092943668365,0.668041288852692,0.0836354196071625,0.73940908908844,0.700762093067169,-0.00298877665773034,0.713388681411743,0.358601599931717,0.507097899913788,0.783745169639587,-0.550345599651337,0.833755731582642,0.0443950071930885,-0.495883941650391,0.856540560722351,0.14295893907547,-0.156233429908752,0.846404194831848,0.509107947349548,0.538246929645538,0.323065757751465,0.778407692909241,0.182615086436272,0.710974216461182,0.679092943668365,-0.156233429908752,0.846404194831848,0.509107947349548,0.668041288852692,0.0836354196071625,0.73940908908844,0.767053186893463,-0.253628462553024,0.589323222637177,0.700762093067169,-0.00298877665773034,0.713388681411743,0.538246929645538,0.323065757751465,0.778407692909241,0.738605380058289,-0.127417668700218,0.661986887454987,0.668041288852692,0.0836354196071625,0.73940908908844,-0.156233429908752,0.846404194831848,0.509107947349548,-0.495883941650391,0.856540560722351,0.14295893907547,-0.285291999578476,0.786038756370544,0.548408091068268,0.538246929645538,0.323065757751465,0.778407692909241,-0.156233429908752,0.846404194831848,0.509107947349548,0.454133987426758,0.439163118600845,0.775176048278809,0.738605380058289,-0.127417668700218,0.661986887454987,0.767053186893463,-0.253628462553024,0.589323222637177,0.668041288852692,0.0836354196071625,0.73940908908844,0.738605380058289,-0.127417668700218,0.661986887454987,0.538246929645538,0.323065757751465,0.778407692909241,0.710988759994507,-0.0355837680399418,0.7023024559021,-0.454541802406311,0.845846235752106,0.279169917106628,-0.285291999578476,0.786038756370544,0.548408091068268,-0.495883941650391,0.856540560722351,0.14295893907547,-0.156233429908752,0.846404194831848,0.509107947349548,-0.285291999578476,0.786038756370544,0.548408091068268,0.149259939789772,0.587952256202698,0.795005321502686,0.149259939789772,0.587952256202698,0.795005321502686,\r\n0.454133987426758,0.439163118600845,0.775176048278809,-0.156233429908752,0.846404194831848,0.509107947349548,0.538246929645538,0.323065757751465,0.778407692909241,0.454133987426758,0.439163118600845,0.775176048278809,0.710988759994507,-0.0355837680399418,0.7023024559021,0.767053186893463,-0.253628462553024,0.589323222637177,0.738605380058289,-0.127417668700218,0.661986887454987,0.770972847938538,-0.283977031707764,0.570050656795502,0.738605380058289,-0.127417668700218,0.661986887454987,0.710988759994507,-0.0355837680399418,0.7023024559021,0.770972847938538,-0.283977031707764,0.570050656795502,-0.285291999578476,0.786038756370544,0.548408091068268,-0.454541802406311,0.845846235752106,0.279169917106628,-0.0726219192147255,0.742078959941864,0.666366875171661,0.149259939789772,0.587952256202698,0.795005321502686,-0.285291999578476,0.786038756370544,0.548408091068268,0.258421301841736,0.427494674921036,0.866294741630554,0.454133987426758,0.439163118600845,0.775176048278809,0.149259939789772,0.587952256202698,0.795005321502686,0.589096963405609,0.131659612059593,0.797264277935028,0.454133987426758,0.439163118600845,0.775176048278809,0.589096963405609,0.131659612059593,0.797264277935028,0.710988759994507,-0.0355837680399418,0.7023024559021,0.759416580200195,-0.177383422851563,0.625956416130066,0.770972847938538,-0.283977031707764,0.570050656795502,0.710988759994507,-0.0355837680399418,0.7023024559021,-0.454541802406311,0.845846235752106,0.279169917106628,-0.342672348022461,0.86136132478714,0.375009626150131,-0.0726219192147255,0.742078959941864,0.666366875171661,-0.285291999578476,0.786038756370544,0.548408091068268,-0.0726219192147255,0.742078959941864,0.666366875171661,0.258421301841736,0.427494674921036,0.866294741630554,0.589096963405609,0.131659612059593,0.797264277935028,0.149259939789772,0.587952256202698,0.795005321502686,0.258421301841736,0.427494674921036,0.866294741630554,0.759416580200195,-0.177383422851563,0.625956416130066,0.710988759994507,-0.0355837680399418,0.7023024559021,0.589096963405609,0.131659612059593,0.797264277935028,\r\n0.770972847938538,-0.283977031707764,0.570050656795502,0.759416580200195,-0.177383422851563,0.625956416130066,0.775993883609772,-0.297175824642181,0.556345045566559,-0.0726219192147255,0.742078959941864,0.666366875171661,-0.342672348022461,0.86136132478714,0.375009626150131,0.116234198212624,0.707555174827576,0.697033166885376,0.518780648708344,0.266524970531464,0.812299787998199,0.258421301841736,0.427494674921036,0.866294741630554,-0.0726219192147255,0.742078959941864,0.666366875171661,0.258421301841736,0.427494674921036,0.866294741630554,0.677801966667175,-0.0510902889072895,0.733467161655426,0.589096963405609,0.131659612059593,0.797264277935028,0.677801966667175,-0.0510902889072895,0.733467161655426,0.759416580200195,-0.177383422851563,0.625956416130066,0.589096963405609,0.131659612059593,0.797264277935028,0.677801966667175,-0.0510902889072895,0.733467161655426,0.775993883609772,-0.297175824642181,0.556345045566559,0.759416580200195,-0.177383422851563,0.625956416130066,0.116234198212624,0.707555174827576,0.697033166885376,-0.342672348022461,0.86136132478714,0.375009626150131,-0.0994513630867004,0.731586575508118,0.67445570230484,-0.0726219192147255,0.742078959941864,0.666366875171661,0.116234198212624,0.707555174827576,0.697033166885376,0.518780648708344,0.266524970531464,0.812299787998199,0.518780648708344,0.266524970531464,0.812299787998199,0.677801966667175,-0.0510902889072895,0.733467161655426,0.258421301841736,0.427494674921036,0.866294741630554,0.677801966667175,-0.0510902889072895,0.733467161655426,0.753810524940491,-0.236630260944366,0.613005399703979,0.775993883609772,-0.297175824642181,0.556345045566559,-0.342672348022461,0.86136132478714,0.375009626150131,-0.321639955043793,0.809638142585754,0.490951865911484,-0.0994513630867004,0.731586575508118,0.67445570230484,0.116234198212624,0.707555174827576,0.697033166885376,-0.0994513630867004,0.731586575508118,0.67445570230484,0.374739646911621,0.382853448390961,0.844389319419861,0.518780648708344,0.266524970531464,0.812299787998199,0.116234198212624,0.707555174827576,0.697033166885376,\r\n0.374739646911621,0.382853448390961,0.844389319419861,0.677801966667175,-0.0510902889072895,0.733467161655426,0.518780648708344,0.266524970531464,0.812299787998199,0.753810524940491,-0.236630260944366,0.613005399703979,-0.0994513630867004,0.731586575508118,0.67445570230484,-0.321639955043793,0.809638142585754,0.490951865911484,0.0876500755548477,0.533470392227173,0.84126490354538,-0.0994513630867004,0.731586575508118,0.67445570230484,0.0876500755548477,0.533470392227173,0.84126490354538,0.374739646911621,0.382853448390961,0.844389319419861,0.518780648708344,0.266524970531464,0.812299787998199,0.374739646911621,0.382853448390961,0.844389319419861,0.681475043296814,-0.0190276484936476,0.731593906879425,0.681475043296814,-0.0190276484936476,0.731593906879425,0.753810524940491,-0.236630260944366,0.613005399703979,0.518780648708344,0.266524970531464,0.812299787998199,0.0876500755548477,0.533470392227173,0.84126490354538,-0.321639955043793,0.809638142585754,0.490951865911484,-0.0109569057822227,0.635639667510986,0.771908104419708,0.48510754108429,0.124095536768436,0.865604341030121,0.374739646911621,0.382853448390961,0.844389319419861,0.0876500755548477,0.533470392227173,0.84126490354538,0.48510754108429,0.124095536768436,0.865604341030121,0.681475043296814,-0.0190276484936476,0.731593906879425,0.374739646911621,0.382853448390961,0.844389319419861,0.674040079116821,-0.135003179311752,0.72625344991684,0.753810524940491,-0.236630260944366,0.613005399703979,0.681475043296814,-0.0190276484936476,0.731593906879425,-0.23018179833889,0.768166780471802,0.59744119644165,-0.0109569057822227,0.635639667510986,0.771908104419708,-0.321639955043793,0.809638142585754,0.490951865911484,0.0876500755548477,0.533470392227173,0.84126490354538,-0.0109569057822227,0.635639667510986,0.771908104419708,0.410668104887009,0.25159564614296,0.876385271549225,0.410668104887009,0.25159564614296,0.876385271549225,0.48510754108429,0.124095536768436,0.865604341030121,0.0876500755548477,0.533470392227173,0.84126490354538,0.674040079116821,-0.135003179311752,0.72625344991684,\r\n0.681475043296814,-0.0190276484936476,0.731593906879425,0.48510754108429,0.124095536768436,0.865604341030121,0.674040079116821,-0.135003179311752,0.72625344991684,0.775683522224426,-0.297049760818481,0.55684494972229,0.753810524940491,-0.236630260944366,0.613005399703979,0.26367723941803,0.489682883024216,0.83107453584671,-0.0109569057822227,0.635639667510986,0.771908104419708,-0.23018179833889,0.768166780471802,0.59744119644165,0.26367723941803,0.489682883024216,0.83107453584671,0.410668104887009,0.25159564614296,0.876385271549225,-0.0109569057822227,0.635639667510986,0.771908104419708,0.410668104887009,0.25159564614296,0.876385271549225,0.674040079116821,-0.135003179311752,0.72625344991684,0.48510754108429,0.124095536768436,0.865604341030121,0.674040079116821,-0.135003179311752,0.72625344991684,0.678318202495575,0.0220880582928658,0.734436094760895,0.775683522224426,-0.297049760818481,0.55684494972229,0.0955817103385925,0.63368421792984,0.767664194107056,0.26367723941803,0.489682883024216,0.83107453584671,-0.23018179833889,0.768166780471802,0.59744119644165,0.678318202495575,0.0220880582928658,0.734436094760895,0.410668104887009,0.25159564614296,0.876385271549225,0.26367723941803,0.489682883024216,0.83107453584671,0.678318202495575,0.0220880582928658,0.734436094760895,0.674040079116821,-0.135003179311752,0.72625344991684,0.410668104887009,0.25159564614296,0.876385271549225,0.775683522224426,-0.297049760818481,0.55684494972229,0.678318202495575,0.0220880582928658,0.734436094760895,0.740456104278564,-0.158223956823349,0.653214871883392,0.0955817103385925,0.63368421792984,0.767664194107056,0.519934713840485,0.251370161771774,0.816382765769959,0.26367723941803,0.489682883024216,0.83107453584671,-0.151554778218269,0.752554297447205,0.640853345394135,0.0955817103385925,0.63368421792984,0.767664194107056,-0.23018179833889,0.768166780471802,0.59744119644165,0.519934713840485,0.251370161771774,0.816382765769959,0.678318202495575,0.0220880582928658,0.734436094760895,0.26367723941803,0.489682883024216,0.83107453584671,0.519934713840485,0.251370161771774,0.816382765769959,\r\n0.740456104278564,-0.158223956823349,0.653214871883392,0.678318202495575,0.0220880582928658,0.734436094760895,0.775683522224426,-0.297049760818481,0.55684494972229,0.740456104278564,-0.158223956823349,0.653214871883392,0.785748362541199,-0.303555369377136,0.538937389850616,0.220527559518814,0.510757029056549,0.830960094928741,0.519934713840485,0.251370161771774,0.816382765769959,0.0955817103385925,0.63368421792984,0.767664194107056,0.220527559518814,0.510757029056549,0.830960094928741,0.0955817103385925,0.63368421792984,0.767664194107056,-0.151554778218269,0.752554297447205,0.640853345394135,0.606550633907318,0.0592340268194675,0.792835116386414,0.740456104278564,-0.158223956823349,0.653214871883392,0.519934713840485,0.251370161771774,0.816382765769959,0.785748362541199,-0.303555369377136,0.538937389850616,0.740456104278564,-0.158223956823349,0.653214871883392,0.606550633907318,0.0592340268194675,0.792835116386414,0.606550633907318,0.0592340268194675,0.792835116386414,0.519934713840485,0.251370161771774,0.816382765769959,0.220527559518814,0.510757029056549,0.830960094928741,0.220527559518814,0.510757029056549,0.830960094928741,-0.151554778218269,0.752554297447205,0.640853345394135,0.226890608668327,0.497016817331314,0.837552845478058,0.732301115989685,-0.120346330106258,0.670262396335602,0.785748362541199,-0.303555369377136,0.538937389850616,0.606550633907318,0.0592340268194675,0.792835116386414,0.220527559518814,0.510757029056549,0.830960094928741,0.226890608668327,0.497016817331314,0.837552845478058,0.606550633907318,0.0592340268194675,0.792835116386414,0.0218547694385052,0.669559240341187,0.742436945438385,0.226890608668327,0.497016817331314,0.837552845478058,-0.151554778218269,0.752554297447205,0.640853345394135,0.732301115989685,-0.120346330106258,0.670262396335602,0.785460412502289,-0.268385708332062,0.557692468166351,0.785748362541199,-0.303555369377136,0.538937389850616,0.470964163541794,0.256901979446411,0.84391587972641,0.732301115989685,-0.120346330106258,0.670262396335602,0.606550633907318,0.0592340268194675,0.792835116386414,\r\n0.470964163541794,0.256901979446411,0.84391587972641,0.606550633907318,0.0592340268194675,0.792835116386414,0.226890608668327,0.497016817331314,0.837552845478058,0.0218547694385052,0.669559240341187,0.742436945438385,0.470964163541794,0.256901979446411,0.84391587972641,0.226890608668327,0.497016817331314,0.837552845478058,0.0218547694385052,0.669559240341187,0.742436945438385,-0.151554778218269,0.752554297447205,0.640853345394135,-0.276927828788757,0.798900663852692,0.533918082714081,0.732301115989685,-0.120346330106258,0.670262396335602,0.676241993904114,0.00723978644236922,0.736643850803375,0.785460412502289,-0.268385708332062,0.557692468166351,0.676241993904114,0.00723978644236922,0.736643850803375,0.732301115989685,-0.120346330106258,0.670262396335602,0.470964163541794,0.256901979446411,0.84391587972641,0.393839508295059,0.405888915061951,0.824708700180054,0.470964163541794,0.256901979446411,0.84391587972641,0.0218547694385052,0.669559240341187,0.742436945438385,0.0218547694385052,0.669559240341187,0.742436945438385,-0.276927828788757,0.798900663852692,0.533918082714081,-0.124548092484474,0.664768397808075,0.736593902111053,0.785460412502289,-0.268385708332062,0.557692468166351,0.676241993904114,0.00723978644236922,0.736643850803375,0.726232290267944,-0.153156131505966,0.67017138004303,0.393839508295059,0.405888915061951,0.824708700180054,0.676241993904114,0.00723978644236922,0.736643850803375,0.470964163541794,0.256901979446411,0.84391587972641,0.145381912589073,0.525221049785614,0.838455021381378,0.393839508295059,0.405888915061951,0.824708700180054,0.0218547694385052,0.669559240341187,0.742436945438385,-0.124548092484474,0.664768397808075,0.736593902111053,-0.276927828788757,0.798900663852692,0.533918082714081,-0.183405965566635,0.749204218387604,0.636439383029938,0.0218547694385052,0.669559240341187,0.742436945438385,-0.124548092484474,0.664768397808075,0.736593902111053,0.145381912589073,0.525221049785614,0.838455021381378,0.49054217338562,0.198866963386536,0.848422229290009,0.726232290267944,-0.153156131505966,0.67017138004303,\r\n0.676241993904114,0.00723978644236922,0.736643850803375,0.785460412502289,-0.268385708332062,0.557692468166351,0.726232290267944,-0.153156131505966,0.67017138004303,0.797490835189819,-0.335376739501953,0.501528263092041,0.49054217338562,0.198866963386536,0.848422229290009,0.676241993904114,0.00723978644236922,0.736643850803375,0.393839508295059,0.405888915061951,0.824708700180054,0.49054217338562,0.198866963386536,0.848422229290009,0.393839508295059,0.405888915061951,0.824708700180054,0.145381912589073,0.525221049785614,0.838455021381378,0.100760489702225,0.535176336765289,0.83870941400528,-0.124548092484474,0.664768397808075,0.736593902111053,-0.183405965566635,0.749204218387604,0.636439383029938,0.170537069439888,0.415335804224014,0.893539726734161,0.145381912589073,0.525221049785614,0.838455021381378,-0.124548092484474,0.664768397808075,0.736593902111053,0.506067633628845,0.12890550494194,0.852806389331818,0.726232290267944,-0.153156131505966,0.67017138004303,0.49054217338562,0.198866963386536,0.848422229290009,0.726232290267944,-0.153156131505966,0.67017138004303,0.73709625005722,-0.205095872282982,0.643913567066193,0.797490835189819,-0.335376739501953,0.501528263092041,0.170537069439888,0.415335804224014,0.893539726734161,0.49054217338562,0.198866963386536,0.848422229290009,0.145381912589073,0.525221049785614,0.838455021381378,0.100760489702225,0.535176336765289,0.83870941400528,0.170537069439888,0.415335804224014,0.893539726734161,-0.124548092484474,0.664768397808075,0.736593902111053,0.0239938236773014,0.626766920089722,0.778837263584137,0.100760489702225,0.535176336765289,0.83870941400528,-0.183405965566635,0.749204218387604,0.636439383029938,0.726232290267944,-0.153156131505966,0.67017138004303,0.506067633628845,0.12890550494194,0.852806389331818,0.73709625005722,-0.205095872282982,0.643913567066193,0.506067633628845,0.12890550494194,0.852806389331818,0.49054217338562,0.198866963386536,0.848422229290009,0.170537069439888,0.415335804224014,0.893539726734161,0.777174711227417,-0.279720216989517,0.563698351383209,\r\n0.797490835189819,-0.335376739501953,0.501528263092041,0.73709625005722,-0.205095872282982,0.643913567066193,0.100760489702225,0.535176336765289,0.83870941400528,0.506067633628845,0.12890550494194,0.852806389331818,0.170537069439888,0.415335804224014,0.893539726734161,0.0239938236773014,0.626766920089722,0.778837263584137,0.302157461643219,0.369005471467972,0.878940105438232,0.100760489702225,0.535176336765289,0.83870941400528,0.0239938236773014,0.626766920089722,0.778837263584137,-0.183405965566635,0.749204218387604,0.636439383029938,-0.149653360247612,0.694210112094879,0.704042613506317,0.506067633628845,0.12890550494194,0.852806389331818,0.643674254417419,-0.0194435194134712,0.765052437782288,0.73709625005722,-0.205095872282982,0.643913567066193,0.777174711227417,-0.279720216989517,0.563698351383209,0.73709625005722,-0.205095872282982,0.643913567066193,0.643674254417419,-0.0194435194134712,0.765052437782288,0.506067633628845,0.12890550494194,0.852806389331818,0.100760489702225,0.535176336765289,0.83870941400528,0.302157461643219,0.369005471467972,0.878940105438232,0.0239938236773014,0.626766920089722,0.778837263584137,0.0508133508265018,0.510626614093781,0.858299732208252,0.302157461643219,0.369005471467972,0.878940105438232,0.0239938236773014,0.626766920089722,0.778837263584137,-0.149653360247612,0.694210112094879,0.704042613506317,0.0508133508265018,0.510626614093781,0.858299732208252,0.506067633628845,0.12890550494194,0.852806389331818,0.302157461643219,0.369005471467972,0.878940105438232,0.643674254417419,-0.0194435194134712,0.765052437782288,0.770500659942627,-0.267281860113144,0.578695893287659,0.777174711227417,-0.279720216989517,0.563698351383209,0.643674254417419,-0.0194435194134712,0.765052437782288,0.0508133508265018,0.510626614093781,0.858299732208252,0.345889955759048,0.25228425860405,0.903721570968628,0.302157461643219,0.369005471467972,0.878940105438232,-0.0635645464062691,0.621780097484589,0.780608057975769,0.0508133508265018,0.510626614093781,0.858299732208252,-0.149653360247612,0.694210112094879,0.704042613506317,\r\n0.302157461643219,0.369005471467972,0.878940105438232,0.345889955759048,0.25228425860405,0.903721570968628,0.643674254417419,-0.0194435194134712,0.765052437782288,0.552327573299408,0.0385440103709698,0.832735538482666,0.770500659942627,-0.267281860113144,0.578695893287659,0.643674254417419,-0.0194435194134712,0.765052437782288,0.345889955759048,0.25228425860405,0.903721570968628,0.0508133508265018,0.510626614093781,0.858299732208252,0.243170872330666,0.362286984920502,0.899786591529846,0.0508133508265018,0.510626614093781,0.858299732208252,-0.0635645464062691,0.621780097484589,0.780608057975769,0.243170872330666,0.362286984920502,0.899786591529846,0.552327573299408,0.0385440103709698,0.832735538482666,0.643674254417419,-0.0194435194134712,0.765052437782288,0.345889955759048,0.25228425860405,0.903721570968628,0.552327573299408,0.0385440103709698,0.832735538482666,0.651851654052734,-0.139659553766251,0.745375394821167,0.770500659942627,-0.267281860113144,0.578695893287659,0.345889955759048,0.25228425860405,0.903721570968628,0.243170872330666,0.362286984920502,0.899786591529846,0.552327573299408,0.0385440103709698,0.832735538482666,0.243170872330666,0.362286984920502,0.899786591529846,-0.0635645464062691,0.621780097484589,0.780608057975769,0.177869200706482,0.442385077476501,0.879009604454041,0.552327573299408,0.0385440103709698,0.832735538482666,0.419903814792633,0.175652325153351,0.890408337116241,0.651851654052734,-0.139659553766251,0.745375394821167,0.552327573299408,0.0385440103709698,0.832735538482666,0.243170872330666,0.362286984920502,0.899786591529846,0.419903814792633,0.175652325153351,0.890408337116241,0.011230206117034,0.564097344875336,0.82563179731369,0.177869200706482,0.442385077476501,0.879009604454041,-0.0635645464062691,0.621780097484589,0.780608057975769,0.243170872330666,0.362286984920502,0.899786591529846,0.177869200706482,0.442385077476501,0.879009604454041,0.419903814792633,0.175652325153351,0.890408337116241,0.491851359605789,0.0479839630424976,0.869355916976929,0.651851654052734,-0.139659553766251,0.745375394821167,\r\n0.419903814792633,0.175652325153351,0.890408337116241,0.225138872861862,0.321603149175644,0.919719398021698,0.177869200706482,0.442385077476501,0.879009604454041,0.011230206117034,0.564097344875336,0.82563179731369,0.225138872861862,0.321603149175644,0.919719398021698,0.419903814792633,0.175652325153351,0.890408337116241,0.177869200706482,0.442385077476501,0.879009604454041,0.696971654891968,-0.185633108019829,0.69265478849411,0.651851654052734,-0.139659553766251,0.745375394821167,0.491851359605789,0.0479839630424976,0.869355916976929,0.491851359605789,0.0479839630424976,0.869355916976929,0.419903814792633,0.175652325153351,0.890408337116241,0.225138872861862,0.321603149175644,0.919719398021698,0.011230206117034,0.564097344875336,0.82563179731369,0.116317607462406,0.443737328052521,0.888576030731201,0.225138872861862,0.321603149175644,0.919719398021698,0.588877975940704,-0.0419148206710815,0.807134330272675,0.696971654891968,-0.185633108019829,0.69265478849411,0.491851359605789,0.0479839630424976,0.869355916976929,0.332688361406326,0.21376371383667,0.918489754199982,0.491851359605789,0.0479839630424976,0.869355916976929,0.225138872861862,0.321603149175644,0.919719398021698,0.332688361406326,0.21376371383667,0.918489754199982,0.225138872861862,0.321603149175644,0.919719398021698,0.116317607462406,0.443737328052521,0.888576030731201,0.332688361406326,0.21376371383667,0.918489754199982,0.588877975940704,-0.0419148206710815,0.807134330272675,0.491851359605789,0.0479839630424976,0.869355916976929,0.332688361406326,0.21376371383667,0.918489754199982,0.116317607462406,0.443737328052521,0.888576030731201,0.214255422353745,0.325911849737167,0.920801818370819,0.430192232131958,0.13835172355175,0.89207249879837,0.588877975940704,-0.0419148206710815,0.807134330272675,0.332688361406326,0.21376371383667,0.918489754199982,0.0184622779488564,0.476772278547287,0.878832876682281,0.214255422353745,0.325911849737167,0.920801818370819,0.116317607462406,0.443737328052521,0.888576030731201,0.430192232131958,0.13835172355175,0.89207249879837,\r\n0.332688361406326,0.21376371383667,0.918489754199982,0.214255422353745,0.325911849737167,0.920801818370819,0.649603962898254,-0.077555887401104,0.756306648254395,0.588877975940704,-0.0419148206710815,0.807134330272675,0.430192232131958,0.13835172355175,0.89207249879837,0.214255422353745,0.325911849737167,0.920801818370819,0.0184622779488564,0.476772278547287,0.878832876682281,0.248058170080185,0.276558250188828,0.928430140018463,0.214255422353745,0.325911849737167,0.920801818370819,0.248058170080185,0.276558250188828,0.928430140018463,0.430192232131958,0.13835172355175,0.89207249879837,0.430192232131958,0.13835172355175,0.89207249879837,0.471187561750412,0.108772940933704,0.875300168991089,0.649603962898254,-0.077555887401104,0.756306648254395,0.0184622779488564,0.476772278547287,0.878832876682281,0.133045077323914,0.371088236570358,0.91901707649231,0.248058170080185,0.276558250188828,0.928430140018463,0.430192232131958,0.13835172355175,0.89207249879837,0.248058170080185,0.276558250188828,0.928430140018463,0.471187561750412,0.108772940933704,0.875300168991089,0.522089779376984,0.0642031654715538,0.850470542907715,0.649603962898254,-0.077555887401104,0.756306648254395,0.471187561750412,0.108772940933704,0.875300168991089,0.0184622779488564,0.476772278547287,0.878832876682281,-0.0166128817945719,0.487799763679504,0.87279736995697,0.133045077323914,0.371088236570358,0.91901707649231,0.328464478254318,0.244814142584801,0.912237346172333,0.248058170080185,0.276558250188828,0.928430140018463,0.133045077323914,0.371088236570358,0.91901707649231,0.471187561750412,0.108772940933704,0.875300168991089,0.248058170080185,0.276558250188828,0.928430140018463,0.328464478254318,0.244814142584801,0.912237346172333,0.522089779376984,0.0642031654715538,0.850470542907715,0.651140987873077,-0.0331539548933506,0.758232176303864,0.649603962898254,-0.077555887401104,0.756306648254395,0.328464478254318,0.244814142584801,0.912237346172333,0.522089779376984,0.0642031654715538,0.850470542907715,0.471187561750412,0.108772940933704,0.875300168991089,\r\n0.194262117147446,0.37288710474968,0.907313227653503,0.133045077323914,0.371088236570358,0.91901707649231,-0.0166128817945719,0.487799763679504,0.87279736995697,0.194262117147446,0.37288710474968,0.907313227653503,0.328464478254318,0.244814142584801,0.912237346172333,0.133045077323914,0.371088236570358,0.91901707649231,0.441979259252548,0.201303958892822,0.874145805835724,0.651140987873077,-0.0331539548933506,0.758232176303864,0.522089779376984,0.0642031654715538,0.850470542907715,0.328464478254318,0.244814142584801,0.912237346172333,0.441979259252548,0.201303958892822,0.874145805835724,0.522089779376984,0.0642031654715538,0.850470542907715,-0.0166128817945719,0.487799763679504,0.87279736995697,0.103461161255836,0.458975791931152,0.882403910160065,0.194262117147446,0.37288710474968,0.907313227653503,0.328464478254318,0.244814142584801,0.912237346172333,0.194262117147446,0.37288710474968,0.907313227653503,0.441979259252548,0.201303958892822,0.874145805835724,0.556739687919617,0.103391379117966,0.824227511882782,0.651140987873077,-0.0331539548933506,0.758232176303864,0.441979259252548,0.201303958892822,0.874145805835724,-0.0166128817945719,0.487799763679504,0.87279736995697,-0.0878424122929573,0.566415309906006,0.81942492723465,0.103461161255836,0.458975791931152,0.882403910160065,0.194262117147446,0.37288710474968,0.907313227653503,0.103461161255836,0.458975791931152,0.882403910160065,0.314179122447968,0.335769057273865,0.888003647327423,0.314179122447968,0.335769057273865,0.888003647327423,0.441979259252548,0.201303958892822,0.874145805835724,0.194262117147446,0.37288710474968,0.907313227653503,0.314179122447968,0.335769057273865,0.888003647327423,0.556739687919617,0.103391379117966,0.824227511882782,0.441979259252548,0.201303958892822,0.874145805835724,0.0564125217497349,0.53067010641098,0.845698952674866,0.103461161255836,0.458975791931152,0.882403910160065,-0.0878424122929573,0.566415309906006,0.81942492723465,0.314179122447968,0.335769057273865,0.888003647327423,0.103461161255836,0.458975791931152,0.882403910160065,\r\n0.198068290948868,0.424347043037415,0.883571445941925,0.37807509303093,0.288995832204819,0.879511535167694,0.556739687919617,0.103391379117966,0.824227511882782,0.314179122447968,0.335769057273865,0.888003647327423,0.0564125217497349,0.53067010641098,0.845698952674866,0.198068290948868,0.424347043037415,0.883571445941925,0.103461161255836,0.458975791931152,0.882403910160065,-0.0878424122929573,0.566415309906006,0.81942492723465,-0.122283548116684,0.634320259094238,0.763337671756744,0.0564125217497349,0.53067010641098,0.845698952674866,0.37807509303093,0.288995832204819,0.879511535167694,0.314179122447968,0.335769057273865,0.888003647327423,0.198068290948868,0.424347043037415,0.883571445941925,0.616427898406982,0.066298708319664,0.784615159034729,0.556739687919617,0.103391379117966,0.824227511882782,0.37807509303093,0.288995832204819,0.879511535167694,0.181693181395531,0.457442402839661,0.870479106903076,0.198068290948868,0.424347043037415,0.883571445941925,0.0564125217497349,0.53067010641098,0.845698952674866,0.0564125217497349,0.53067010641098,0.845698952674866,-0.122283548116684,0.634320259094238,0.763337671756744,0.0647969320416451,0.540483713150024,0.838855504989624,0.181693181395531,0.457442402839661,0.870479106903076,0.37807509303093,0.288995832204819,0.879511535167694,0.198068290948868,0.424347043037415,0.883571445941925,0.37807509303093,0.288995832204819,0.879511535167694,0.461415380239487,0.202915489673615,0.863667190074921,0.616427898406982,0.066298708319664,0.784615159034729,0.0564125217497349,0.53067010641098,0.845698952674866,0.0647969320416451,0.540483713150024,0.838855504989624,0.181693181395531,0.457442402839661,0.870479106903076,0.0103870760649443,0.565562665462494,0.824639797210693,0.0647969320416451,0.540483713150024,0.838855504989624,-0.122283548116684,0.634320259094238,0.763337671756744,0.258721381425858,0.393818914890289,0.882025957107544,0.37807509303093,0.288995832204819,0.879511535167694,0.181693181395531,0.457442402839661,0.870479106903076,0.37807509303093,0.288995832204819,0.879511535167694,\r\n0.258721381425858,0.393818914890289,0.882025957107544,0.461415380239487,0.202915489673615,0.863667190074921,0.258721381425858,0.393818914890289,0.882025957107544,0.181693181395531,0.457442402839661,0.870479106903076,0.0647969320416451,0.540483713150024,0.838855504989624,0.0647969320416451,0.540483713150024,0.838855504989624,0.0103870760649443,0.565562665462494,0.824639797210693,0.187363475561142,0.456372618675232,0.869838416576386,0.412739425897598,0.285188913345337,0.865051090717316,0.461415380239487,0.202915489673615,0.863667190074921,0.258721381425858,0.393818914890289,0.882025957107544,0.187363475561142,0.456372618675232,0.869838416576386,0.258721381425858,0.393818914890289,0.882025957107544,0.0647969320416451,0.540483713150024,0.838855504989624,0.187363475561142,0.456372618675232,0.869838416576386,0.0103870760649443,0.565562665462494,0.824639797210693,0.163704290986061,0.439286261796951,0.883305370807648,0.187363475561142,0.456372618675232,0.869838416576386,0.412739425897598,0.285188913345337,0.865051090717316,0.258721381425858,0.393818914890289,0.882025957107544,0.070015549659729,0.537744641304016,0.840195417404175,0.163704290986061,0.439286261796951,0.883305370807648,0.0103870760649443,0.565562665462494,0.824639797210693,0.187363475561142,0.456372618675232,0.869838416576386,0.163704290986061,0.439286261796951,0.883305370807648,0.281863778829575,0.384592801332474,0.879000008106232,0.281863778829575,0.384592801332474,0.879000008106232,0.412739425897598,0.285188913345337,0.865051090717316,0.187363475561142,0.456372618675232,0.869838416576386,0.070015549659729,0.537744641304016,0.840195417404175,0.236143693327904,0.409129083156586,0.881390631198883,0.163704290986061,0.439286261796951,0.883305370807648,0.281863778829575,0.384592801332474,0.879000008106232,0.163704290986061,0.439286261796951,0.883305370807648,0.317232072353363,0.320876151323318,0.892413675785065,0.281863778829575,0.384592801332474,0.879000008106232,0.317232072353363,0.320876151323318,0.892413675785065,0.412739425897598,0.285188913345337,0.865051090717316,\r\n0.177898719906807,0.569624483585358,0.80242121219635,0.236143693327904,0.409129083156586,0.881390631198883,0.070015549659729,0.537744641304016,0.840195417404175,0.317232072353363,0.320876151323318,0.892413675785065,0.163704290986061,0.439286261796951,0.883305370807648,0.236143693327904,0.409129083156586,0.881390631198883,0.236143693327904,0.409129083156586,0.881390631198883,0.177898719906807,0.569624483585358,0.80242121219635,0.391959398984909,0.411307096481323,0.822918057441711,0.403216242790222,0.575127720832825,0.711789727210999,0.391959398984909,0.411307096481323,0.822918057441711,0.177898719906807,0.569624483585358,0.80242121219635,0.403216242790222,0.575127720832825,0.711789727210999,0.570243775844574,0.494201123714447,0.656191349029541,0.391959398984909,0.411307096481323,0.822918057441711,0.403216242790222,0.575127720832825,0.711789727210999,0.565264761447906,0.667678415775299,0.484439015388489,0.570243775844574,0.494201123714447,0.656191349029541,0.565264761447906,0.667678415775299,0.484439015388489,0.686942994594574,0.597724914550781,0.413320749998093,0.570243775844574,0.494201123714447,0.656191349029541,0.643102586269379,0.681853175163269,0.348561525344849,0.686942994594574,0.597724914550781,0.413320749998093,0.565264761447906,0.667678415775299,0.484439015388489,0.66301017999649,0.671490252017975,0.33093535900116,0.686942994594574,0.597724914550781,0.413320749998093,0.643102586269379,0.681853175163269,0.348561525344849,0.686942994594574,0.597724914550781,0.413320749998093,0.66301017999649,0.671490252017975,0.33093535900116,0.792878091335297,0.55015617609024,0.26205387711525,0.120160691440105,-0.991060495376587,0.0579689927399158,0.307719826698303,-0.944160580635071,0.117767333984375,0.297604143619537,-0.951470971107483,0.0783239752054214,0.453572779893875,-0.881403744220734,0.131905198097229,0.297604143619537,-0.951470971107483,0.0783239752054214,0.307719826698303,-0.944160580635071,0.117767333984375,0.297604143619537,-0.951470971107483,0.0783239752054214,0.159546434879303,-0.986728131771088,0.030207796022296,\r\n0.120160691440105,-0.991060495376587,0.0579689927399158,0.458358734846115,-0.850490093231201,0.258018851280212,0.41211211681366,-0.858661532402039,0.304735720157623,0.501618027687073,-0.820316433906555,0.274700105190277,0.468713045120239,-0.793812811374664,0.387516677379608,0.41211211681366,-0.858661532402039,0.304735720157623,0.35479462146759,-0.851547241210938,0.385989516973495,0.530144155025482,-0.827777922153473,0.183659359812737,0.458358734846115,-0.850490093231201,0.258018851280212,0.501618027687073,-0.820316433906555,0.274700105190277,0.0497986413538456,-0.998663187026978,0.0138514339923859,0.120160691440105,-0.991060495376587,0.0579689927399158,0.159546434879303,-0.986728131771088,0.030207796022296,0.382184118032455,-0.91899973154068,0.0968217179179192,0.297604143619537,-0.951470971107483,0.0783239752054214,0.453572779893875,-0.881403744220734,0.131905198097229,0.297604143619537,-0.951470971107483,0.0783239752054214,0.382184118032455,-0.91899973154068,0.0968217179179192,0.159546434879303,-0.986728131771088,0.030207796022296,0.530144155025482,-0.827777922153473,0.183659359812737,0.526057839393616,-0.83855539560318,0.141732051968575,0.453572779893875,-0.881403744220734,0.131905198097229,0.501618027687073,-0.820316433906555,0.274700105190277,0.41211211681366,-0.858661532402039,0.304735720157623,0.468713045120239,-0.793812811374664,0.387516677379608,0.530144155025482,-0.827777922153473,0.183659359812737,0.501618027687073,-0.820316433906555,0.274700105190277,0.590501368045807,-0.769497096538544,0.243273913860321,0.159546434879303,-0.986728131771088,0.030207796022296,0.0265890471637249,-0.999555826187134,-0.0134581932798028,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.59003221988678,-0.679775476455688,0.43562263250351,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.506627559661865,-0.67433899641037,0.537210643291473,-0.59003221988678,-0.679775476455688,0.43562263250351,0.0395830944180489,-0.996393918991089,0.07504802942276,\r\n0.0385789684951305,-0.995219528675079,0.089719794690609,0.0569719225168228,-0.993271350860596,0.100827269256115,0.0295560862869024,-0.995258748531342,0.092662401497364,0.0395830944180489,-0.996393918991089,0.07504802942276,0.0569719225168228,-0.993271350860596,0.100827269256115,0.382184118032455,-0.91899973154068,0.0968217179179192,0.453572779893875,-0.881403744220734,0.131905198097229,0.526057839393616,-0.83855539560318,0.141732051968575,0.203816115856171,-0.977341651916504,0.0571151450276375,0.159546434879303,-0.986728131771088,0.030207796022296,0.382184118032455,-0.91899973154068,0.0968217179179192,0.530144155025482,-0.827777922153473,0.183659359812737,0.58408910036087,-0.793264865875244,0.171961069107056,0.526057839393616,-0.83855539560318,0.141732051968575,0.501618027687073,-0.820316433906555,0.274700105190277,0.468713045120239,-0.793812811374664,0.387516677379608,0.583117246627808,-0.721384167671204,0.373602896928787,0.590501368045807,-0.769497096538544,0.243273913860321,0.501618027687073,-0.820316433906555,0.274700105190277,0.583117246627808,-0.721384167671204,0.373602896928787,0.58408910036087,-0.793264865875244,0.171961069107056,0.530144155025482,-0.827777922153473,0.183659359812737,0.590501368045807,-0.769497096538544,0.243273913860321,0.159546434879303,-0.986728131771088,0.030207796022296,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.0265890471637249,-0.999555826187134,-0.0134581932798028,0.0265890471637249,-0.999555826187134,-0.0134581932798028,-0.0256036333739758,-0.999657869338989,0.00533970212563872,0.0497986413538456,-0.998663187026978,0.0138514339923859,-0.480639547109604,-0.709499359130859,0.515360176563263,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.563676059246063,-0.781757712364197,0.266690909862518,\r\n-0.469103634357452,-0.782316327095032,0.409783840179443,-0.59003221988678,-0.679775476455688,0.43562263250351,-0.469103634357452,-0.782316327095032,0.409783840179443,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.540582954883575,-0.639463722705841,0.54667741060257,-0.59003221988678,-0.679775476455688,0.43562263250351,-0.497364103794098,-0.790284037590027,0.357882589101791,0.0385789684951305,-0.995219528675079,0.089719794690609,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.0338953286409378,-0.993001997470856,0.113128244876862,0.0569719225168228,-0.993271350860596,0.100827269256115,0.0385789684951305,-0.995219528675079,0.089719794690609,0.0411115400493145,-0.992761135101318,0.112849719822407,0.526057839393616,-0.83855539560318,0.141732051968575,0.487699776887894,-0.85866904258728,0.157595291733742,0.382184118032455,-0.91899973154068,0.0968217179179192,0.159546434879303,-0.986728131771088,0.030207796022296,0.203816115856171,-0.977341651916504,0.0571151450276375,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.382184118032455,-0.91899973154068,0.0968217179179192,0.327014535665512,-0.935421407222748,0.134343490004539,0.203816115856171,-0.977341651916504,0.0571151450276375,0.526057839393616,-0.83855539560318,0.141732051968575,0.58408910036087,-0.793264865875244,0.171961069107056,0.487699776887894,-0.85866904258728,0.157595291733742,0.590501368045807,-0.769497096538544,0.243273913860321,0.583117246627808,-0.721384167671204,0.373602896928787,0.660230159759521,-0.685432732105255,0.307047158479691,0.58408910036087,-0.793264865875244,0.171961069107056,0.590501368045807,-0.769497096538544,0.243273913860321,0.656560838222504,-0.71994960308075,0.224945083260536,0.0479638390243053,-0.99875944852829,0.013377046212554,0.0265890471637249,-0.999555826187134,-0.0134581932798028,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.0265890471637249,-0.999555826187134,-0.0134581932798028,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.0256036333739758,-0.999657869338989,0.00533970212563872,\r\n-0.304088413715363,-0.900885820388794,0.309733480215073,-0.480639547109604,-0.709499359130859,0.515360176563263,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.0256036333739758,-0.999657869338989,0.00533970212563872,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.287566423416138,-0.933751106262207,0.213106364011765,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.157075762748718,-0.984058380126953,0.083402656018734,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.59003221988678,-0.679775476455688,0.43562263250351,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.59003221988678,-0.679775476455688,0.43562263250351,0.0338953286409378,-0.993001997470856,0.113128244876862,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.058581817895174,-0.992120385169983,0.110748127102852,0.0338953286409378,-0.993001997470856,0.113128244876862,0.0411115400493145,-0.992761135101318,0.112849719822407,0.0385789684951305,-0.995219528675079,0.089719794690609,0.382184118032455,-0.91899973154068,0.0968217179179192,0.487699776887894,-0.85866904258728,0.157595291733742,0.327014535665512,-0.935421407222748,0.134343490004539,0.203396335244179,-0.970668137073517,0.128192007541656,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.203816115856171,-0.977341651916504,0.0571151450276375,0.203396335244179,-0.970668137073517,0.128192007541656,0.203816115856171,-0.977341651916504,0.0571151450276375,0.327014535665512,-0.935421407222748,0.134343490004539,0.575266778469086,-0.781846642494202,0.240382879972458,0.487699776887894,-0.85866904258728,0.157595291733742,0.58408910036087,-0.793264865875244,0.171961069107056,0.660230159759521,-0.685432732105255,0.307047158479691,\r\n0.656560838222504,-0.71994960308075,0.224945083260536,0.590501368045807,-0.769497096538544,0.243273913860321,0.656560838222504,-0.71994960308075,0.224945083260536,0.655960619449615,-0.724235415458679,0.212599441409111,0.58408910036087,-0.793264865875244,0.171961069107056,0.0479638390243053,-0.99875944852829,0.013377046212554,-0.031636543571949,-0.998661458492279,-0.0409185402095318,0.0265890471637249,-0.999555826187134,-0.0134581932798028,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.12107153236866,-0.980454325675964,0.155083432793617,0.0479638390243053,-0.99875944852829,0.013377046212554,-0.110590532422066,-0.992487907409668,-0.0523181185126305,0.0265890471637249,-0.999555826187134,-0.0134581932798028,-0.031636543571949,-0.998661458492279,-0.0409185402095318,-0.0256036333739758,-0.999657869338989,0.00533970212563872,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.304088413715363,-0.900885820388794,0.309733480215073,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.0364438109099865,-0.993548333644867,0.107394054532051,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.563676059246063,-0.781757712364197,0.266690909862518,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.497364103794098,-0.790284037590027,0.357882589101791,0.00586567632853985,-0.997732102870941,0.0670533999800682,0.0487124510109425,-0.996004998683929,0.0748395696282387,\r\n-0.0364438109099865,-0.993548333644867,0.107394054532051,0.058581817895174,-0.992120385169983,0.110748127102852,0.0487124510109425,-0.996004998683929,0.0748395696282387,0.00586567632853985,-0.997732102870941,0.0670533999800682,0.487699776887894,-0.85866904258728,0.157595291733742,0.439236134290695,-0.861935913562775,0.253254771232605,0.327014535665512,-0.935421407222748,0.134343490004539,0.203396335244179,-0.970668137073517,0.128192007541656,0.12107153236866,-0.980454325675964,0.155083432793617,0.0891056135296822,-0.99570232629776,0.0252391509711742,0.327014535665512,-0.935421407222748,0.134343490004539,0.336119800806046,-0.915375769138336,0.221608519554138,0.203396335244179,-0.970668137073517,0.128192007541656,0.487699776887894,-0.85866904258728,0.157595291733742,0.575266778469086,-0.781846642494202,0.240382879972458,0.439236134290695,-0.861935913562775,0.253254771232605,0.58408910036087,-0.793264865875244,0.171961069107056,0.655960619449615,-0.724235415458679,0.212599441409111,0.575266778469086,-0.781846642494202,0.240382879972458,0.0479638390243053,-0.99875944852829,0.013377046212554,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.031636543571949,-0.998661458492279,-0.0409185402095318,0.0479638390243053,-0.99875944852829,0.013377046212554,0.12107153236866,-0.980454325675964,0.155083432793617,0.0977801084518433,-0.988054811954498,0.119107708334923,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.031636543571949,-0.998661458492279,-0.0409185402095318,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.497364103794098,-0.790284037590027,0.357882589101791,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.0364438109099865,-0.993548333644867,0.107394054532051,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.084639884531498,-0.99461841583252,0.0597513802349567,\r\n-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.407692670822144,-0.902799367904663,0.136893793940544,-0.250152826309204,-0.968196749687195,0.00431486079469323,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.633633613586426,-0.738015472888947,0.232037499547005,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.084639884531498,-0.99461841583252,0.0597513802349567,0.00586567632853985,-0.997732102870941,0.0670533999800682,-0.0364438109099865,-0.993548333644867,0.107394054532051,0.327014535665512,-0.935421407222748,0.134343490004539,0.439236134290695,-0.861935913562775,0.253254771232605,0.336119800806046,-0.915375769138336,0.221608519554138,0.12107153236866,-0.980454325675964,0.155083432793617,0.203396335244179,-0.970668137073517,0.128192007541656,0.255920022726059,-0.927014291286469,0.274133682250977,0.203396335244179,-0.970668137073517,0.128192007541656,0.336119800806046,-0.915375769138336,0.221608519554138,0.344884186983109,-0.894802749156952,0.28351879119873,0.534161031246185,-0.751201212406158,0.387773871421814,0.439236134290695,-0.861935913562775,0.253254771232605,0.575266778469086,-0.781846642494202,0.240382879972458,0.678994357585907,-0.677961111068726,0.281664997339249,0.575266778469086,-0.781846642494202,0.240382879972458,0.655960619449615,-0.724235415458679,0.212599441409111,0.0479638390243053,-0.99875944852829,0.013377046212554,0.0549856014549732,-0.997020125389099,0.05410310998559,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.031636543571949,-0.998661458492279,-0.0409185402095318,0.12107153236866,-0.980454325675964,0.155083432793617,\r\n0.181443855166435,-0.917213976383209,0.354677766561508,0.0977801084518433,-0.988054811954498,0.119107708334923,0.0977801084518433,-0.988054811954498,0.119107708334923,0.0549856014549732,-0.997020125389099,0.05410310998559,0.0479638390243053,-0.99875944852829,0.013377046212554,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.110590532422066,-0.992487907409668,-0.0523181185126305,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.17359484732151,-0.982040286064148,0.0739029571413994,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.084639884531498,-0.99461841583252,0.0597513802349567,-0.212495967745781,-0.960789144039154,0.178128182888031,-0.17359484732151,-0.982040286064148,0.0739029571413994,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.168858617544174,-0.940454840660095,0.295010715723038,-0.425783634185791,-0.887706577777863,0.175171852111816,0.00586567632853985,-0.997732102870941,0.0670533999800682,-0.084639884531498,-0.99461841583252,0.0597513802349567,-0.122738793492317,-0.992334246635437,0.014415149576962,0.458219558000565,-0.808679640293121,0.368879288434982,0.336119800806046,-0.915375769138336,0.221608519554138,0.439236134290695,-0.861935913562775,0.253254771232605,0.203396335244179,-0.970668137073517,0.128192007541656,0.344884186983109,-0.894802749156952,0.28351879119873,0.255920022726059,-0.927014291286469,0.274133682250977,0.12107153236866,-0.980454325675964,0.155083432793617,0.255920022726059,-0.927014291286469,0.274133682250977,\r\n0.266453742980957,-0.848693370819092,0.456860840320587,0.336119800806046,-0.915375769138336,0.221608519554138,0.458219558000565,-0.808679640293121,0.368879288434982,0.344884186983109,-0.894802749156952,0.28351879119873,0.458219558000565,-0.808679640293121,0.368879288434982,0.439236134290695,-0.861935913562775,0.253254771232605,0.534161031246185,-0.751201212406158,0.387773871421814,0.642636895179749,-0.650201082229614,0.405285507440567,0.534161031246185,-0.751201212406158,0.387773871421814,0.575266778469086,-0.781846642494202,0.240382879972458,0.642636895179749,-0.650201082229614,0.405285507440567,0.575266778469086,-0.781846642494202,0.240382879972458,0.678994357585907,-0.677961111068726,0.281664997339249,0.0549856014549732,-0.997020125389099,0.05410310998559,0.0484997890889645,-0.989838123321533,0.133672058582306,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.088193267583847,-0.989474058151245,-0.114729672670364,0.12107153236866,-0.980454325675964,0.155083432793617,0.266453742980957,-0.848693370819092,0.456860840320587,0.181443855166435,-0.917213976383209,0.354677766561508,0.101337917149067,-0.970939636230469,0.216810524463654,0.0977801084518433,-0.988054811954498,0.119107708334923,0.181443855166435,-0.917213976383209,0.354677766561508,0.0977801084518433,-0.988054811954498,0.119107708334923,0.101337917149067,-0.970939636230469,0.216810524463654,0.0549856014549732,-0.997020125389099,0.05410310998559,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.425783634185791,-0.887706577777863,0.175171852111816,-0.168858617544174,-0.940454840660095,0.295010715723038,-0.17359484732151,-0.982040286064148,0.0739029571413994,-0.122738793492317,-0.992334246635437,0.014415149576962,-0.084639884531498,-0.99461841583252,0.0597513802349567,-0.17359484732151,-0.982040286064148,0.0739029571413994,\r\n-0.6647008061409,-0.745737314224243,0.0452606081962585,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.533924758434296,-0.842813551425934,-0.0677459985017776,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.342810481786728,-0.924918651580811,-0.164335981011391,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.653231978416443,-0.705114543437958,0.275864690542221,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.168858617544174,-0.940454840660095,0.295010715723038,-0.595417320728302,-0.768283009529114,0.234987780451775,-0.653231978416443,-0.705114543437958,0.275864690542221,0.344884186983109,-0.894802749156952,0.28351879119873,0.425818026065826,-0.745764493942261,0.512361347675323,0.255920022726059,-0.927014291286469,0.274133682250977,0.425818026065826,-0.745764493942261,0.512361347675323,0.266453742980957,-0.848693370819092,0.456860840320587,0.255920022726059,-0.927014291286469,0.274133682250977,0.458219558000565,-0.808679640293121,0.368879288434982,0.425818026065826,-0.745764493942261,0.512361347675323,0.344884186983109,-0.894802749156952,0.28351879119873,0.534161031246185,-0.751201212406158,0.387773871421814,0.549715757369995,-0.59162175655365,0.589742362499237,0.458219558000565,-0.808679640293121,0.368879288434982,0.642636895179749,-0.650201082229614,0.405285507440567,0.549715757369995,-0.59162175655365,0.589742362499237,0.534161031246185,-0.751201212406158,0.387773871421814,0.0549856014549732,-0.997020125389099,0.05410310998559,0.101337917149067,-0.970939636230469,0.216810524463654,0.0484997890889645,-0.989838123321533,0.133672058582306,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,0.0484997890889645,-0.989838123321533,0.133672058582306,-0.00410118512809277,-0.999211251735687,0.039496723562479,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,\r\n-0.088193267583847,-0.989474058151245,-0.114729672670364,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.088193267583847,-0.989474058151245,-0.114729672670364,0.266453742980957,-0.848693370819092,0.456860840320587,0.302627205848694,-0.633063733577728,0.712493479251862,0.181443855166435,-0.917213976383209,0.354677766561508,0.101337917149067,-0.970939636230469,0.216810524463654,0.181443855166435,-0.917213976383209,0.354677766561508,0.156552895903587,-0.839922249317169,0.51963609457016,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.126646667718887,-0.982256412506104,-0.138321667909622,-0.122738793492317,-0.992334246635437,0.014415149576962,-0.17359484732151,-0.982040286064148,0.0739029571413994,-0.168858617544174,-0.940454840660095,0.295010715723038,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.680262565612793,-0.700267851352692,-0.216489300131798,-0.557658493518829,-0.775048494338989,-0.297181218862534,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.653231978416443,-0.705114543437958,0.275864690542221,-0.782948791980743,-0.582388818264008,-0.218664795160294,-0.759458363056183,-0.416283339262009,-0.499931007623672,0.425818026065826,-0.745764493942261,0.512361347675323,0.394631445407867,-0.544737637042999,0.73995053768158,0.266453742980957,-0.848693370819092,0.456860840320587,0.549715757369995,-0.59162175655365,0.589742362499237,0.425818026065826,-0.745764493942261,0.512361347675323,0.458219558000565,-0.808679640293121,0.368879288434982,0.0484997890889645,-0.989838123321533,0.133672058582306,0.101337917149067,-0.970939636230469,0.216810524463654,\r\n0.136574983596802,-0.877577185630798,0.459570854902267,0.0473684296011925,-0.964747726917267,0.258878439664841,-0.00410118512809277,-0.999211251735687,0.039496723562479,0.0484997890889645,-0.989838123321533,0.133672058582306,-0.00468617677688599,-0.999801099300385,-0.0193844065070152,-0.00410118512809277,-0.999211251735687,0.039496723562479,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.088193267583847,-0.989474058151245,-0.114729672670364,0.266453742980957,-0.848693370819092,0.456860840320587,0.394631445407867,-0.544737637042999,0.73995053768158,0.302627205848694,-0.633063733577728,0.712493479251862,0.229684382677078,-0.710994482040405,0.66462904214859,0.181443855166435,-0.917213976383209,0.354677766561508,0.302627205848694,-0.633063733577728,0.712493479251862,0.229684382677078,-0.710994482040405,0.66462904214859,0.156552895903587,-0.839922249317169,0.51963609457016,0.181443855166435,-0.917213976383209,0.354677766561508,0.136574983596802,-0.877577185630798,0.459570854902267,0.101337917149067,-0.970939636230469,0.216810524463654,0.156552895903587,-0.839922249317169,0.51963609457016,-0.3883036673069,-0.848955631256104,-0.358461380004883,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.759458363056183,-0.416283339262009,-0.499931007623672,-0.782948791980743,-0.582388818264008,-0.218664795160294,0.484358608722687,-0.396458089351654,0.779883086681366,0.394631445407867,-0.544737637042999,0.73995053768158,0.425818026065826,-0.745764493942261,0.512361347675323,0.549715757369995,-0.59162175655365,0.589742362499237,0.484358608722687,-0.396458089351654,0.779883086681366,0.425818026065826,-0.745764493942261,0.512361347675323,0.136574983596802,-0.877577185630798,0.459570854902267,0.134773403406143,-0.912932097911835,0.38521546125412,0.0484997890889645,-0.989838123321533,0.133672058582306,\r\n-0.00410118512809277,-0.999211251735687,0.039496723562479,0.0473684296011925,-0.964747726917267,0.258878439664841,0.0348202586174011,-0.987121164798737,0.156138494610786,0.0473684296011925,-0.964747726917267,0.258878439664841,0.0484997890889645,-0.989838123321533,0.133672058582306,0.134773403406143,-0.912932097911835,0.38521546125412,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,-0.00410118512809277,-0.999211251735687,0.039496723562479,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.0542060434818268,-0.996305644512177,-0.0666086301207542,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.226463228464127,-0.925143599510193,-0.304669767618179,0.302627205848694,-0.633063733577728,0.712493479251862,0.394631445407867,-0.544737637042999,0.73995053768158,0.319532662630081,-0.232398837804794,0.918634593486786,0.229684382677078,-0.710994482040405,0.66462904214859,0.302627205848694,-0.633063733577728,0.712493479251862,0.242843106389046,-0.364319056272507,0.899054348468781,0.229684382677078,-0.710994482040405,0.66462904214859,0.176049306988716,-0.484307914972305,0.857001960277557,0.156552895903587,-0.839922249317169,0.51963609457016,0.136574983596802,-0.877577185630798,0.459570854902267,0.156552895903587,-0.839922249317169,0.51963609457016,0.176049306988716,-0.484307914972305,0.857001960277557,-0.658609509468079,-0.587279856204987,-0.470463424921036,-0.226463228464127,-0.925143599510193,-0.304669767618179,-0.759458363056183,-0.416283339262009,-0.499931007623672,0.484358608722687,-0.396458089351654,0.779883086681366,0.319532662630081,-0.232398837804794,0.918634593486786,0.394631445407867,-0.544737637042999,0.73995053768158,0.136574983596802,-0.877577185630798,0.459570854902267,0.231585055589676,-0.587118029594421,0.77566784620285,0.134773403406143,-0.912932097911835,0.38521546125412,0.0473684296011925,-0.964747726917267,0.258878439664841,0.0725646540522575,-0.831033229827881,0.551468968391418,0.0348202586174011,-0.987121164798737,0.156138494610786,-0.00410118512809277,-0.999211251735687,0.039496723562479,\r\n0.0348202586174011,-0.987121164798737,0.156138494610786,0.00143669755198061,-0.999987542629242,0.00476956320926547,0.0473684296011925,-0.964747726917267,0.258878439664841,0.134773403406143,-0.912932097911835,0.38521546125412,0.13854992389679,-0.723032653331757,0.676777303218842,-0.00410118512809277,-0.999211251735687,0.039496723562479,0.00143669755198061,-0.999987542629242,0.00476956320926547,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.226463228464127,-0.925143599510193,-0.304669767618179,0.00450415816158056,-0.998498141765594,-0.0545994639396667,0.0828030034899712,-0.99601686000824,-0.0330758802592754,0.319532662630081,-0.232398837804794,0.918634593486786,0.242843106389046,-0.364319056272507,0.899054348468781,0.302627205848694,-0.633063733577728,0.712493479251862,0.229684382677078,-0.710994482040405,0.66462904214859,0.242843106389046,-0.364319056272507,0.899054348468781,0.176049306988716,-0.484307914972305,0.857001960277557,0.176049306988716,-0.484307914972305,0.857001960277557,0.231585055589676,-0.587118029594421,0.77566784620285,0.136574983596802,-0.877577185630798,0.459570854902267,0.134773403406143,-0.912932097911835,0.38521546125412,0.231585055589676,-0.587118029594421,0.77566784620285,0.13854992389679,-0.723032653331757,0.676777303218842,0.0725646540522575,-0.831033229827881,0.551468968391418,0.0473684296011925,-0.964747726917267,0.258878439664841,0.13854992389679,-0.723032653331757,0.676777303218842,0.0725646540522575,-0.831033229827881,0.551468968391418,0.0979195088148117,-0.868289053440094,0.486298054456711,0.0348202586174011,-0.987121164798737,0.156138494610786,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.00143669755198061,-0.999987542629242,0.00476956320926547,0.0348202586174011,-0.987121164798737,0.156138494610786,0.00450415816158056,-0.998498141765594,-0.0545994639396667,0.00143669755198061,-0.999987542629242,0.00476956320926547,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,0.0828030034899712,-0.99601686000824,-0.0330758802592754,0.00450415816158056,-0.998498141765594,-0.0545994639396667,\r\n-0.0638819709420204,-0.994699358940125,-0.0805745422840118,0.319532662630081,-0.232398837804794,0.918634593486786,0.184904679656029,-0.110358953475952,0.976540386676788,0.242843106389046,-0.364319056272507,0.899054348468781,0.176049306988716,-0.484307914972305,0.857001960277557,0.242843106389046,-0.364319056272507,0.899054348468781,0.184904679656029,-0.110358953475952,0.976540386676788,0.176049306988716,-0.484307914972305,0.857001960277557,0.201260134577751,-0.11511142551899,0.972750544548035,0.231585055589676,-0.587118029594421,0.77566784620285,0.231585055589676,-0.587118029594421,0.77566784620285,0.203167721629143,-0.260633260011673,0.943818390369415,0.13854992389679,-0.723032653331757,0.676777303218842,0.0725646540522575,-0.831033229827881,0.551468968391418,0.13854992389679,-0.723032653331757,0.676777303218842,0.130089104175568,-0.355731725692749,0.925489962100983,0.0725646540522575,-0.831033229827881,0.551468968391418,0.126557350158691,-0.471088290214539,0.872959852218628,0.0979195088148117,-0.868289053440094,0.486298054456711,0.0625865310430527,-0.934289276599884,0.35097923874855,0.0348202586174011,-0.987121164798737,0.156138494610786,0.0979195088148117,-0.868289053440094,0.486298054456711,0.0142686618492007,-0.997468292713165,0.0696653723716736,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,0.00143669755198061,-0.999987542629242,0.00476956320926547,0.0625865310430527,-0.934289276599884,0.35097923874855,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.0348202586174011,-0.987121164798737,0.156138494610786,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,-0.0398198924958706,-0.993935942649841,-0.102496802806854,-0.0638819709420204,-0.994699358940125,-0.0805745422840118,0.00450415816158056,-0.998498141765594,-0.0545994639396667,-0.0398198924958706,-0.993935942649841,-0.102496802806854,0.184904679656029,-0.110358953475952,0.976540386676788,0.201260134577751,-0.11511142551899,0.972750544548035,0.176049306988716,-0.484307914972305,0.857001960277557,\r\n0.231585055589676,-0.587118029594421,0.77566784620285,0.201260134577751,-0.11511142551899,0.972750544548035,0.203167721629143,-0.260633260011673,0.943818390369415,0.130089104175568,-0.355731725692749,0.925489962100983,0.13854992389679,-0.723032653331757,0.676777303218842,0.203167721629143,-0.260633260011673,0.943818390369415,0.130089104175568,-0.355731725692749,0.925489962100983,0.126557350158691,-0.471088290214539,0.872959852218628,0.0725646540522575,-0.831033229827881,0.551468968391418,0.152154341340065,-0.570204257965088,0.807289302349091,0.0979195088148117,-0.868289053440094,0.486298054456711,0.126557350158691,-0.471088290214539,0.872959852218628,0.0979195088148117,-0.868289053440094,0.486298054456711,0.152154341340065,-0.570204257965088,0.807289302349091,0.0625865310430527,-0.934289276599884,0.35097923874855,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.0490109845995903,-0.956404387950897,0.287903726100922,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.0625865310430527,-0.934289276599884,0.35097923874855,-0.0398198924958706,-0.993935942649841,-0.102496802806854,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,-0.0141607634723186,-0.99429178237915,-0.105750873684883,0.201260134577751,-0.11511142551899,0.972750544548035,0.162875175476074,-0.0189905539155006,0.986463844776154,0.203167721629143,-0.260633260011673,0.943818390369415,0.130089104175568,-0.355731725692749,0.925489962100983,0.203167721629143,-0.260633260011673,0.943818390369415,0.162875175476074,-0.0189905539155006,0.986463844776154,0.130089104175568,-0.355731725692749,0.925489962100983,0.131407126784325,-0.0619342401623726,0.9893918633461,0.126557350158691,-0.471088290214539,0.872959852218628,0.152154341340065,-0.570204257965088,0.807289302349091,0.126557350158691,-0.471088290214539,0.872959852218628,0.136822134256363,-0.111212283372879,0.984332978725433,0.150027588009834,-0.717889487743378,0.679798662662506,\r\n0.0625865310430527,-0.934289276599884,0.35097923874855,0.152154341340065,-0.570204257965088,0.807289302349091,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,-0.0288012288510799,-0.995715856552124,-0.0878642126917839,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.033571120351553,-0.983877301216125,0.175665497779846,0.033571120351553,-0.983877301216125,0.175665497779846,0.0142686618492007,-0.997468292713165,0.0696653723716736,0.0490109845995903,-0.956404387950897,0.287903726100922,0.0490109845995903,-0.956404387950897,0.287903726100922,0.0625865310430527,-0.934289276599884,0.35097923874855,0.150027588009834,-0.717889487743378,0.679798662662506,-0.0141607634723186,-0.99429178237915,-0.105750873684883,-0.0182900913059711,-0.997738242149353,-0.0646823570132256,-0.0288012288510799,-0.995715856552124,-0.0878642126917839,0.131407126784325,-0.0619342401623726,0.9893918633461,0.130089104175568,-0.355731725692749,0.925489962100983,0.162875175476074,-0.0189905539155006,0.986463844776154,0.136822134256363,-0.111212283372879,0.984332978725433,0.126557350158691,-0.471088290214539,0.872959852218628,0.131407126784325,-0.0619342401623726,0.9893918633461,0.136822134256363,-0.111212283372879,0.984332978725433,0.199213624000549,-0.169640943408012,0.965161025524139,0.152154341340065,-0.570204257965088,0.807289302349091,0.150027588009834,-0.717889487743378,0.679798662662506,0.152154341340065,-0.570204257965088,0.807289302349091,0.199213624000549,-0.169640943408012,0.965161025524139,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0288012288510799,-0.995715856552124,-0.0878642126917839,0.0258965492248535,-0.994910180568695,0.0973804667592049,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,0.033571120351553,-0.983877301216125,0.175665497779846,0.033571120351553,-0.983877301216125,0.175665497779846,0.0490109845995903,-0.956404387950897,0.287903726100922,\r\n0.0873522683978081,-0.851779222488403,0.51656711101532,0.0490109845995903,-0.956404387950897,0.287903726100922,0.150027588009834,-0.717889487743378,0.679798662662506,0.0873522683978081,-0.851779222488403,0.51656711101532,0.150027588009834,-0.717889487743378,0.679798662662506,0.199213624000549,-0.169640943408012,0.965161025524139,0.171856760978699,-0.432693690061569,0.885009229183197,-0.00492334086447954,-0.999977052211761,-0.00463662389665842,0.0258965492248535,-0.994910180568695,0.0973804667592049,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0288012288510799,-0.995715856552124,-0.0878642126917839,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0526864491403103,-0.99235612154007,-0.111595056951046,0.033571120351553,-0.983877301216125,0.175665497779846,0.100177153944969,-0.905174612998962,0.413065791130066,0.0258965492248535,-0.994910180568695,0.0973804667592049,0.100177153944969,-0.905174612998962,0.413065791130066,0.033571120351553,-0.983877301216125,0.175665497779846,0.0873522683978081,-0.851779222488403,0.51656711101532,0.150027588009834,-0.717889487743378,0.679798662662506,0.171856760978699,-0.432693690061569,0.885009229183197,0.0873522683978081,-0.851779222488403,0.51656711101532,0.199213624000549,-0.169640943408012,0.965161025524139,0.195252776145935,-0.0552942343056202,0.979192972183228,0.171856760978699,-0.432693690061569,0.885009229183197,0.0258965492248535,-0.994910180568695,0.0973804667592049,0.00909474957734346,-0.998661398887634,0.05091742426157,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0526864491403103,-0.99235612154007,-0.111595056951046,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0437456183135509,-0.992634415626526,-0.112974397838116,0.086935743689537,-0.953060209751129,0.290031582117081,0.0258965492248535,-0.994910180568695,0.0973804667592049,0.100177153944969,-0.905174612998962,0.413065791130066,0.100177153944969,-0.905174612998962,0.413065791130066,0.0873522683978081,-0.851779222488403,0.51656711101532,0.164251521229744,-0.507718443870544,0.845720589160919,\r\n0.164251521229744,-0.507718443870544,0.845720589160919,0.0873522683978081,-0.851779222488403,0.51656711101532,0.171856760978699,-0.432693690061569,0.885009229183197,0.164251521229744,-0.507718443870544,0.845720589160919,0.171856760978699,-0.432693690061569,0.885009229183197,0.195252776145935,-0.0552942343056202,0.979192972183228,0.0258965492248535,-0.994910180568695,0.0973804667592049,0.086935743689537,-0.953060209751129,0.290031582117081,0.00909474957734346,-0.998661398887634,0.05091742426157,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,0.00909474957734346,-0.998661398887634,0.05091742426157,-0.0241786036640406,-0.997798621654511,-0.0617513619363308,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,-0.0437456183135509,-0.992634415626526,-0.112974397838116,0.086935743689537,-0.953060209751129,0.290031582117081,0.100177153944969,-0.905174612998962,0.413065791130066,0.192767009139061,-0.643192291259766,0.741042792797089,0.192767009139061,-0.643192291259766,0.741042792797089,0.100177153944969,-0.905174612998962,0.413065791130066,0.164251521229744,-0.507718443870544,0.845720589160919,0.232683315873146,-0.116002723574638,0.965609550476074,0.164251521229744,-0.507718443870544,0.845720589160919,0.195252776145935,-0.0552942343056202,0.979192972183228,0.0532339476048946,-0.982029795646667,0.181062161922455,0.00909474957734346,-0.998661398887634,0.05091742426157,0.086935743689537,-0.953060209751129,0.290031582117081,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,0.00909474957734346,-0.998661398887634,0.05091742426157,0.0532339476048946,-0.982029795646667,0.181062161922455,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,-0.0245448723435402,-0.99579256772995,-0.088287390768528,-0.0437456183135509,-0.992634415626526,-0.112974397838116,0.192767009139061,-0.643192291259766,0.741042792797089,0.135382622480392,-0.805875360965729,0.576399385929108,0.086935743689537,-0.953060209751129,0.290031582117081,0.192767009139061,-0.643192291259766,0.741042792797089,\r\n0.164251521229744,-0.507718443870544,0.845720589160919,0.232683315873146,-0.116002723574638,0.965609550476074,0.0532339476048946,-0.982029795646667,0.181062161922455,0.086935743689537,-0.953060209751129,0.290031582117081,0.135382622480392,-0.805875360965729,0.576399385929108,0.0148718897253275,-0.998425900936127,0.0540778823196888,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,0.0532339476048946,-0.982029795646667,0.181062161922455,-0.0150580983608961,-0.999444544315338,-0.0297288186848164,0.0148718897253275,-0.998425900936127,0.0540778823196888,-0.0245448723435402,-0.99579256772995,-0.088287390768528,-0.0437456183135509,-0.992634415626526,-0.112974397838116,-0.0245448723435402,-0.99579256772995,-0.088287390768528,-0.0183449313044548,-0.992282450199127,-0.122633285820484,0.192767009139061,-0.643192291259766,0.741042792797089,0.287048995494843,-0.331043183803558,0.898895502090454,0.135382622480392,-0.805875360965729,0.576399385929108,0.287048995494843,-0.331043183803558,0.898895502090454,0.192767009139061,-0.643192291259766,0.741042792797089,0.232683315873146,-0.116002723574638,0.965609550476074,0.204430088400841,-0.818650305271149,0.536674916744232,0.0532339476048946,-0.982029795646667,0.181062161922455,0.135382622480392,-0.805875360965729,0.576399385929108,0.0148718897253275,-0.998425900936127,0.0540778823196888,0.0532339476048946,-0.982029795646667,0.181062161922455,0.100509241223335,-0.93483030796051,0.340573132038116,0.00324276718311012,-0.999677538871765,-0.0251839216798544,-0.0245448723435402,-0.99579256772995,-0.088287390768528,0.0148718897253275,-0.998425900936127,0.0540778823196888,-0.0183449313044548,-0.992282450199127,-0.122633285820484,-0.0245448723435402,-0.99579256772995,-0.088287390768528,-0.0476880334317684,-0.976192712783813,-0.211597636342049,0.204430088400841,-0.818650305271149,0.536674916744232,0.135382622480392,-0.805875360965729,0.576399385929108,0.287048995494843,-0.331043183803558,0.898895502090454,0.204430088400841,-0.818650305271149,0.536674916744232,0.100509241223335,-0.93483030796051,0.340573132038116,\r\n0.0532339476048946,-0.982029795646667,0.181062161922455,0.0148718897253275,-0.998425900936127,0.0540778823196888,0.100509241223335,-0.93483030796051,0.340573132038116,0.0461776256561279,-0.982742011547089,0.179124787449837,0.00324276718311012,-0.999677538871765,-0.0251839216798544,-0.0476880334317684,-0.976192712783813,-0.211597636342049,-0.0245448723435402,-0.99579256772995,-0.088287390768528,0.0148718897253275,-0.998425900936127,0.0540778823196888,0.0461776256561279,-0.982742011547089,0.179124787449837,0.00324276718311012,-0.999677538871765,-0.0251839216798544,0.204430088400841,-0.818650305271149,0.536674916744232,0.287048995494843,-0.331043183803558,0.898895502090454,0.268877685070038,-0.618069589138031,0.738711476325989,0.204430088400841,-0.818650305271149,0.536674916744232,0.268877685070038,-0.618069589138031,0.738711476325989,0.100509241223335,-0.93483030796051,0.340573132038116,0.1241569891572,-0.840798318386078,0.526918590068817,0.0461776256561279,-0.982742011547089,0.179124787449837,0.100509241223335,-0.93483030796051,0.340573132038116,0.00324276718311012,-0.999677538871765,-0.0251839216798544,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.0476880334317684,-0.976192712783813,-0.211597636342049,0.0216071698814631,-0.994424104690552,0.103216640651226,0.00324276718311012,-0.999677538871765,-0.0251839216798544,0.0461776256561279,-0.982742011547089,0.179124787449837,0.287048995494843,-0.331043183803558,0.898895502090454,0.284545183181763,-0.120181113481522,0.951099574565887,0.268877685070038,-0.618069589138031,0.738711476325989,0.193721294403076,-0.653062701225281,0.732107222080231,0.100509241223335,-0.93483030796051,0.340573132038116,0.268877685070038,-0.618069589138031,0.738711476325989,0.1241569891572,-0.840798318386078,0.526918590068817,0.102116651833057,-0.912719309329987,0.39562052488327,0.0461776256561279,-0.982742011547089,0.179124787449837,0.100509241223335,-0.93483030796051,0.340573132038116,0.193721294403076,-0.653062701225281,0.732107222080231,0.1241569891572,-0.840798318386078,0.526918590068817,\r\n0.00324276718311012,-0.999677538871765,-0.0251839216798544,0.0216071698814631,-0.994424104690552,0.103216640651226,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.0476880334317684,-0.976192712783813,-0.211597636342049,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.0630142465233803,-0.979826211929321,-0.189656808972359,0.0216071698814631,-0.994424104690552,0.103216640651226,0.0461776256561279,-0.982742011547089,0.179124787449837,0.102116651833057,-0.912719309329987,0.39562052488327,0.193721294403076,-0.653062701225281,0.732107222080231,0.268877685070038,-0.618069589138031,0.738711476325989,0.284545183181763,-0.120181113481522,0.951099574565887,0.1241569891572,-0.840798318386078,0.526918590068817,0.218509346246719,-0.556130886077881,0.801855385303497,0.102116651833057,-0.912719309329987,0.39562052488327,0.1241569891572,-0.840798318386078,0.526918590068817,0.193721294403076,-0.653062701225281,0.732107222080231,0.247418656945229,-0.355897039175034,0.901177644729614,0.0216071698814631,-0.994424104690552,0.103216640651226,-0.0195152796804905,-0.999206125736237,0.034729577600956,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.0195152796804905,-0.999206125736237,0.034729577600956,-0.0630142465233803,-0.979826211929321,-0.189656808972359,-0.0219246670603752,-0.998410046100616,-0.0519293621182442,-0.170096352696419,-0.784347236156464,-0.596545577049255,-0.0476880334317684,-0.976192712783813,-0.211597636342049,-0.0630142465233803,-0.979826211929321,-0.189656808972359,0.102116651833057,-0.912719309329987,0.39562052488327,0.0536669157445431,-0.957176625728607,0.284486651420593,0.0216071698814631,-0.994424104690552,0.103216640651226,0.284545183181763,-0.120181113481522,0.951099574565887,0.247418656945229,-0.355897039175034,0.901177644729614,0.193721294403076,-0.653062701225281,0.732107222080231,0.247418656945229,-0.355897039175034,0.901177644729614,0.218509346246719,-0.556130886077881,0.801855385303497,0.1241569891572,-0.840798318386078,0.526918590068817,0.16749107837677,-0.711831212043762,0.682087182998657,\r\n0.102116651833057,-0.912719309329987,0.39562052488327,0.218509346246719,-0.556130886077881,0.801855385303497,0.0216071698814631,-0.994424104690552,0.103216640651226,0.0536669157445431,-0.957176625728607,0.284486651420593,-0.0195152796804905,-0.999206125736237,0.034729577600956,-0.0195152796804905,-0.999206125736237,0.034729577600956,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,-0.0630142465233803,-0.979826211929321,-0.189656808972359,0.102116651833057,-0.912719309329987,0.39562052488327,0.16749107837677,-0.711831212043762,0.682087182998657,0.0536669157445431,-0.957176625728607,0.284486651420593,-0.0195152796804905,-0.999206125736237,0.034729577600956,0.0536669157445431,-0.957176625728607,0.284486651420593,0.0222227331250906,-0.98620742559433,0.16401518881321,-0.0195152796804905,-0.999206125736237,0.034729577600956,0.0222227331250906,-0.98620742559433,0.16401518881321,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,-0.0630142465233803,-0.979826211929321,-0.189656808972359,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.00244317529723048,-0.993616044521332,-0.112788073718548,0.0536669157445431,-0.957176625728607,0.284486651420593,0.16749107837677,-0.711831212043762,0.682087182998657,0.117448851466179,-0.853252053260803,0.508100926876068,0.0536669157445431,-0.957176625728607,0.284486651420593,0.117448851466179,-0.853252053260803,0.508100926876068,0.0222227331250906,-0.98620742559433,0.16401518881321,0.0285132229328156,-0.995249032974243,0.0930926203727722,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.0222227331250906,-0.98620742559433,0.16401518881321,0.00244317529723048,-0.993616044521332,-0.112788073718548,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.00572041375562549,-0.995704293251038,-0.092412494122982,0.248926490545273,-0.412970989942551,0.876065194606781,0.117448851466179,-0.853252053260803,0.508100926876068,0.16749107837677,-0.711831212043762,0.682087182998657,0.117448851466179,-0.853252053260803,0.508100926876068,0.0898901149630547,-0.928216576576233,0.361017465591431,\r\n0.0222227331250906,-0.98620742559433,0.16401518881321,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0222227331250906,-0.98620742559433,0.16401518881321,0.0898901149630547,-0.928216576576233,0.361017465591431,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,0.00572041375562549,-0.995704293251038,-0.092412494122982,-0.00203544553369284,-0.99905914068222,-0.0433196052908897,0.248926490545273,-0.412970989942551,0.876065194606781,0.207897424697876,-0.61188817024231,0.763132572174072,0.117448851466179,-0.853252053260803,0.508100926876068,-0.00678135547786951,-0.998082339763641,0.0615250803530216,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.0224066842347384,-0.996970415115356,0.0744839310646057,0.117448851466179,-0.853252053260803,0.508100926876068,0.207897424697876,-0.61188817024231,0.763132572174072,0.0898901149630547,-0.928216576576233,0.361017465591431,0.0419169068336487,-0.987381756305695,0.152709394693375,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0811435356736183,-0.957521557807922,0.276709377765656,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0898901149630547,-0.928216576576233,0.361017465591431,0.00572041375562549,-0.995704293251038,-0.092412494122982,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,-0.0168444085866213,-0.998921513557434,-0.0432668030261993,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.00678135547786951,-0.998082339763641,0.0615250803530216,0.0173398144543171,-0.999464869499207,0.0277342367917299,0.177646741271019,-0.750194430351257,0.636906385421753,0.0898901149630547,-0.928216576576233,0.361017465591431,0.207897424697876,-0.61188817024231,0.763132572174072,0.0296243391931057,-0.996353924274445,0.0800071805715561,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,\r\n0.0419169068336487,-0.987381756305695,0.152709394693375,0.0419169068336487,-0.987381756305695,0.152709394693375,0.0285132229328156,-0.995249032974243,0.0930926203727722,0.0811435356736183,-0.957521557807922,0.276709377765656,0.0898901149630547,-0.928216576576233,0.361017465591431,0.177646741271019,-0.750194430351257,0.636906385421753,0.0811435356736183,-0.957521557807922,0.276709377765656,-0.0168444085866213,-0.998921513557434,-0.0432668030261993,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,-0.0209987033158541,-0.999124050140381,-0.0361950770020485,0.0173398144543171,-0.999464869499207,0.0277342367917299,-0.00678135547786951,-0.998082339763641,0.0615250803530216,0.0739076137542725,-0.99658328294754,0.0368683710694313,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.0419169068336487,-0.987381756305695,0.152709394693375,0.095495730638504,-0.946719110012054,0.307576268911362,0.129887446761131,-0.8835688829422,0.449927985668182,0.0419169068336487,-0.987381756305695,0.152709394693375,0.0811435356736183,-0.957521557807922,0.276709377765656,0.177646741271019,-0.750194430351257,0.636906385421753,0.129887446761131,-0.8835688829422,0.449927985668182,0.0811435356736183,-0.957521557807922,0.276709377765656,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,-0.0209987033158541,-0.999124050140381,-0.0361950770020485,-0.00275756698101759,-0.999886512756348,-0.0148003613576293,0.0667781457304955,-0.997754752635956,0.00508093973621726,0.0173398144543171,-0.999464869499207,0.0277342367917299,0.0739076137542725,-0.99658328294754,0.0368683710694313,0.0206700097769499,-0.993899643421173,0.108333930373192,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.095495730638504,-0.946719110012054,0.307576268911362,0.0419169068336487,-0.987381756305695,0.152709394693375,\r\n0.129887446761131,-0.8835688829422,0.449927985668182,0.095495730638504,-0.946719110012054,0.307576268911362,0.0758995190262794,-0.976089239120483,0.203688502311707,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.267917186021805,-0.481245338916779,0.834639549255371,0.129887446761131,-0.8835688829422,0.449927985668182,0.177646741271019,-0.750194430351257,0.636906385421753,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,-0.013399557210505,-0.999745726585388,-0.0181338768452406,-0.0209987033158541,-0.999124050140381,-0.0361950770020485,0.0173398144543171,-0.999464869499207,0.0277342367917299,0.0667781457304955,-0.997754752635956,0.00508093973621726,0.00550259696319699,-0.999937415122986,-0.00973962619900703,0.0126136057078838,-0.99820077419281,0.0586176030337811,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,0.0206700097769499,-0.993899643421173,0.108333930373192,0.0206700097769499,-0.993899643421173,0.108333930373192,0.0296243391931057,-0.996353924274445,0.0800071805715561,0.0758995190262794,-0.976089239120483,0.203688502311707,0.095495730638504,-0.946719110012054,0.307576268911362,0.129887446761131,-0.8835688829422,0.449927985668182,0.205523788928986,-0.679157733917236,0.704630732536316,0.095495730638504,-0.946719110012054,0.307576268911362,0.172151833772659,-0.827459216117859,0.534485578536987,0.0758995190262794,-0.976089239120483,0.203688502311707,0.205523788928986,-0.679157733917236,0.704630732536316,0.129887446761131,-0.8835688829422,0.449927985668182,0.267917186021805,-0.481245338916779,0.834639549255371,-0.00398188224062324,-0.999978423118591,-0.00521548371762037,0.0126136057078838,-0.99820077419281,0.0586176030337811,-0.013399557210505,-0.999745726585388,-0.0181338768452406,0.0340221747756004,-0.998894810676575,-0.0324275977909565,0.00550259696319699,-0.999937415122986,-0.00973962619900703,0.0667781457304955,-0.997754752635956,0.00508093973621726,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.0173398144543171,-0.999464869499207,0.0277342367917299,0.00550259696319699,-0.999937415122986,-0.00973962619900703,\r\n0.0126136057078838,-0.99820077419281,0.0586176030337811,0.0206700097769499,-0.993899643421173,0.108333930373192,0.128925085067749,-0.936172127723694,0.327047348022461,0.128925085067749,-0.936172127723694,0.327047348022461,0.0206700097769499,-0.993899643421173,0.108333930373192,0.0758995190262794,-0.976089239120483,0.203688502311707,0.172151833772659,-0.827459216117859,0.534485578536987,0.095495730638504,-0.946719110012054,0.307576268911362,0.205523788928986,-0.679157733917236,0.704630732536316,0.128925085067749,-0.936172127723694,0.327047348022461,0.0758995190262794,-0.976089239120483,0.203688502311707,0.172151833772659,-0.827459216117859,0.534485578536987,-0.00176976202055812,-0.998611271381378,0.0526529960334301,-0.013399557210505,-0.999745726585388,-0.0181338768452406,0.0126136057078838,-0.99820077419281,0.0586176030337811,-0.0185060333460569,-0.999298870563507,-0.032545767724514,0.00550259696319699,-0.999937415122986,-0.00973962619900703,0.0340221747756004,-0.998894810676575,-0.0324275977909565,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.00550259696319699,-0.999937415122986,-0.00973962619900703,-0.014552547596395,-0.999756574630737,0.0165826380252838,0.128925085067749,-0.936172127723694,0.327047348022461,0.0511197298765183,-0.979135096073151,0.196674659848213,0.0126136057078838,-0.99820077419281,0.0586176030337811,0.172151833772659,-0.827459216117859,0.534485578536987,0.205523788928986,-0.679157733917236,0.704630732536316,0.277099609375,-0.362266838550568,0.889931678771973,0.128925085067749,-0.936172127723694,0.327047348022461,0.172151833772659,-0.827459216117859,0.534485578536987,0.302004158496857,-0.574054956436157,0.761087536811829,-0.00176976202055812,-0.998611271381378,0.0526529960334301,-0.00252893031574786,-0.999996483325958,0.000717511516995728,-0.013399557210505,-0.999745726585388,-0.0181338768452406,-0.00176976202055812,-0.998611271381378,0.0526529960334301,0.0126136057078838,-0.99820077419281,0.0586176030337811,0.0511197298765183,-0.979135096073151,0.196674659848213,-0.0185060333460569,-0.999298870563507,-0.032545767724514,\r\n-0.014552547596395,-0.999756574630737,0.0165826380252838,0.00550259696319699,-0.999937415122986,-0.00973962619900703,-0.014552547596395,-0.999756574630737,0.0165826380252838,0.0172833688557148,-0.984961867332459,0.171905055642128,-0.0175798106938601,-0.996267914772034,0.0845049247145653,0.128925085067749,-0.936172127723694,0.327047348022461,0.201653152704239,-0.827229678630829,0.5244300365448,0.0511197298765183,-0.979135096073151,0.196674659848213,0.277099609375,-0.362266838550568,0.889931678771973,0.302004158496857,-0.574054956436157,0.761087536811829,0.172151833772659,-0.827459216117859,0.534485578536987,0.302004158496857,-0.574054956436157,0.761087536811829,0.245846837759018,-0.726159751415253,0.642067790031433,0.128925085067749,-0.936172127723694,0.327047348022461,-0.00252893031574786,-0.999996483325958,0.000717511516995728,-0.00176976202055812,-0.998611271381378,0.0526529960334301,-0.0172487068921328,-0.999788105487823,-0.0112200183793902,-0.00176976202055812,-0.998611271381378,0.0526529960334301,0.0511197298765183,-0.979135096073151,0.196674659848213,0.0228001642972231,-0.963836431503296,0.265517145395279,-0.0172487068921328,-0.999788105487823,-0.0112200183793902,-0.014552547596395,-0.999756574630737,0.0165826380252838,-0.0185060333460569,-0.999298870563507,-0.032545767724514,-0.014552547596395,-0.999756574630737,0.0165826380252838,-0.00176976202055812,-0.998611271381378,0.0526529960334301,0.0172833688557148,-0.984961867332459,0.171905055642128,0.201653152704239,-0.827229678630829,0.5244300365448,0.128925085067749,-0.936172127723694,0.327047348022461,0.245846837759018,-0.726159751415253,0.642067790031433,0.201653152704239,-0.827229678630829,0.5244300365448,0.119255863130093,-0.908088386058807,0.401439189910889,0.0511197298765183,-0.979135096073151,0.196674659848213,0.302004158496857,-0.574054956436157,0.761087536811829,0.353288650512695,-0.363729119300842,0.861909568309784,0.245846837759018,-0.726159751415253,0.642067790031433,-0.0172487068921328,-0.999788105487823,-0.0112200183793902,-0.00176976202055812,-0.998611271381378,0.0526529960334301,\r\n-0.014552547596395,-0.999756574630737,0.0165826380252838,0.0228001642972231,-0.963836431503296,0.265517145395279,0.0511197298765183,-0.979135096073151,0.196674659848213,0.119255863130093,-0.908088386058807,0.401439189910889,0.0172833688557148,-0.984961867332459,0.171905055642128,-0.00176976202055812,-0.998611271381378,0.0526529960334301,0.0228001642972231,-0.963836431503296,0.265517145395279,0.201653152704239,-0.827229678630829,0.5244300365448,0.245846837759018,-0.726159751415253,0.642067790031433,0.353288650512695,-0.363729119300842,0.861909568309784,0.201653152704239,-0.827229678630829,0.5244300365448,0.313925087451935,-0.595674157142639,0.739339768886566,0.119255863130093,-0.908088386058807,0.401439189910889,0.119255863130093,-0.908088386058807,0.401439189910889,0.141898572444916,-0.794461786746979,0.590504109859467,0.0228001642972231,-0.963836431503296,0.265517145395279,0.0172833688557148,-0.984961867332459,0.171905055642128,0.0228001642972231,-0.963836431503296,0.265517145395279,0.0643405988812447,-0.898112237453461,0.435033947229385,0.353288650512695,-0.363729119300842,0.861909568309784,0.313925087451935,-0.595674157142639,0.739339768886566,0.201653152704239,-0.827229678630829,0.5244300365448,0.119255863130093,-0.908088386058807,0.401439189910889,0.313925087451935,-0.595674157142639,0.739339768886566,0.141898572444916,-0.794461786746979,0.590504109859467,0.0228001642972231,-0.963836431503296,0.265517145395279,0.141898572444916,-0.794461786746979,0.590504109859467,0.0643405988812447,-0.898112237453461,0.435033947229385,0.353288650512695,-0.363729119300842,0.861909568309784,0.361224353313446,-0.105485685169697,0.926493227481842,0.313925087451935,-0.595674157142639,0.739339768886566,0.28393492102623,-0.378126740455627,0.881136178970337,0.141898572444916,-0.794461786746979,0.590504109859467,0.313925087451935,-0.595674157142639,0.739339768886566,0.0643405988812447,-0.898112237453461,0.435033947229385,0.141898572444916,-0.794461786746979,0.590504109859467,0.186159580945969,-0.558516979217529,0.8083336353302,0.28393492102623,-0.378126740455627,0.881136178970337,\r\n0.313925087451935,-0.595674157142639,0.739339768886566,0.361224353313446,-0.105485685169697,0.926493227481842,0.186159580945969,-0.558516979217529,0.8083336353302,0.141898572444916,-0.794461786746979,0.590504109859467,0.28393492102623,-0.378126740455627,0.881136178970337,0.361224353313446,-0.105485685169697,0.926493227481842,0.282409846782684,-0.111748047173023,0.9527627825737,0.28393492102623,-0.378126740455627,0.881136178970337,0.186159580945969,-0.558516979217529,0.8083336353302,0.28393492102623,-0.378126740455627,0.881136178970337,0.282409846782684,-0.111748047173023,0.9527627825737,0.186159580945969,-0.558516979217529,0.8083336353302,0.282409846782684,-0.111748047173023,0.9527627825737,0.232231959700584,-0.235388413071632,0.943748116493225,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0468369498848915,-0.678771555423737,-0.732854247093201,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0948396474123001,-0.401841223239899,-0.910784780979156,0.0468369498848915,-0.678771555423737,-0.732854247093201,0.141851052641869,-0.444758206605911,-0.88434624671936,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0842657908797264,-0.38159367442131,-0.920481085777283,0.0200244262814522,-0.949937224388123,-0.311798393726349,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0795059204101563,-0.707274198532104,-0.702454149723053,0.0200244262814522,-0.949937224388123,-0.311798393726349,\r\n0.0468369498848915,-0.678771555423737,-0.732854247093201,0.0200244262814522,-0.949937224388123,-0.311798393726349,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.0468369498848915,-0.678771555423737,-0.732854247093201,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.141851052641869,-0.444758206605911,-0.88434624671936,0.0468369498848915,-0.678771555423737,-0.732854247093201,0.141851052641869,-0.444758206605911,-0.88434624671936,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.200125440955162,-0.677185416221619,-0.708074569702148,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.084542416036129,-0.492398649454117,-0.866254031658173,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.0962731242179871,-0.704849779605865,-0.702793061733246,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0200244262814522,-0.949937224388123,-0.311798393726349,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0106870997697115,-0.999923944473267,0.00615181541070342,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,0.0200244262814522,-0.949937224388123,-0.311798393726349,0.0106870997697115,-0.999923944473267,0.00615181541070342,0.0200244262814522,-0.949937224388123,-0.311798393726349,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.0224122628569603,-0.999687433242798,0.011073162779212,0.00714346440508962,-0.998603403568268,0.0523464865982533,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0224122628569603,-0.999687433242798,0.011073162779212,0.0588926672935486,-0.96165144443512,-0.267877042293549,\r\n0.00714346440508962,-0.998603403568268,0.0523464865982533,0.0106870997697115,-0.999923944473267,0.00615181541070342,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0588926672935486,-0.96165144443512,-0.267877042293549,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.0609014630317688,-0.997560381889343,-0.0341209471225739,0.0911552757024765,-0.887406289577484,-0.451885730028152,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.0609014630317688,-0.997560381889343,-0.0341209471225739,0.121859662234783,-0.951022803783417,-0.284087538719177,0.0911552757024765,-0.887406289577484,-0.451885730028152,0.121859662234783,-0.951022803783417,-0.284087538719177,0.200125440955162,-0.677185416221619,-0.708074569702148,0.102374263107777,-0.918786525726318,-0.381248891353607,0.200125440955162,-0.677185416221619,-0.708074569702148,0.121859662234783,-0.951022803783417,-0.284087538719177,0.141881495714188,-0.673281848430634,-0.725645244121552,0.200125440955162,-0.677185416221619,-0.708074569702148,0.102374263107777,-0.918786525726318,-0.381248891353607,0.117043107748032,-0.406934291124344,-0.905927896499634,0.103796251118183,-0.725943148136139,-0.679876983165741,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.103796251118183,-0.725943148136139,-0.679876983165741,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.0811764746904373,-0.484127789735794,-0.871223568916321,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0856988653540611,-0.79458075761795,-0.601079821586609,0.0758015215396881,-0.760276615619659,-0.6451615691185,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.00714346440508962,-0.998603403568268,0.0523464865982533,\r\n-0.0324100516736507,-0.976807951927185,0.211650118231773,0.0106870997697115,-0.999923944473267,0.00615181541070342,-0.0324100516736507,-0.976807951927185,0.211650118231773,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,0.0106870997697115,-0.999923944473267,0.00615181541070342,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,-0.0324100516736507,-0.976807951927185,0.211650118231773,0.0609014630317688,-0.997560381889343,-0.0341209471225739,-0.0110616385936737,-0.999857664108276,-0.0127362571656704,-0.0233477801084518,-0.973347246646881,0.228144466876984,0.0224122628569603,-0.999687433242798,0.011073162779212,-0.0198927707970142,-0.976373791694641,0.215170785784721,0.00714346440508962,-0.998603403568268,0.0523464865982533,-0.0198927707970142,-0.976373791694641,0.215170785784721,-0.0284085739403963,-0.970497786998749,0.239430278539658,0.00714346440508962,-0.998603403568268,0.0523464865982533,-0.0324100516736507,-0.976807951927185,0.211650118231773,0.00714346440508962,-0.998603403568268,0.0523464865982533,-0.0284085739403963,-0.970497786998749,0.239430278539658,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.0224122628569603,-0.999687433242798,0.011073162779212,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0461166426539421,-0.961715877056122,-0.270139783620834,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.00100872467737645,-0.999975979328156,0.0068477550521493,-0.0198927707970142,-0.976373791694641,0.215170785784721,0.0224122628569603,-0.999687433242798,0.011073162779212,0.0609014630317688,-0.997560381889343,-0.0341209471225739,-0.0233477801084518,-0.973347246646881,0.228144466876984,0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.0609014630317688,-0.997560381889343,-0.0341209471225739,\r\n0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.121859662234783,-0.951022803783417,-0.284087538719177,0.102374263107777,-0.918786525726318,-0.381248891353607,0.121859662234783,-0.951022803783417,-0.284087538719177,0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.102374263107777,-0.918786525726318,-0.381248891353607,0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.062904492020607,-0.960011541843414,-0.272801578044891,0.102374263107777,-0.918786525726318,-0.381248891353607,0.062904492020607,-0.960011541843414,-0.272801578044891,0.141881495714188,-0.673281848430634,-0.725645244121552,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.141881495714188,-0.673281848430634,-0.725645244121552,0.062904492020607,-0.960011541843414,-0.272801578044891,0.122711107134819,-0.699450731277466,-0.70406711101532,0.141881495714188,-0.673281848430634,-0.725645244121552,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.167896181344986,-0.491339564323425,-0.854632198810577,0.103796251118183,-0.725943148136139,-0.679876983165741,0.117043107748032,-0.406934291124344,-0.905927896499634,0.12173242866993,-0.857075750827789,-0.500601887702942,0.103796251118183,-0.725943148136139,-0.679876983165741,0.167896181344986,-0.491339564323425,-0.854632198810577,0.12173242866993,-0.857075750827789,-0.500601887702942,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.103796251118183,-0.725943148136139,-0.679876983165741,0.0871955379843712,-0.830848097801209,-0.549625515937805,0.103796251118183,-0.725943148136139,-0.679876983165741,0.0681706070899963,-0.950664758682251,-0.302637010812759,-0.0324100516736507,-0.976807951927185,0.211650118231773,-0.0284085739403963,-0.970497786998749,0.239430278539658,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0324100516736507,-0.976807951927185,0.211650118231773,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0324100516736507,-0.976807951927185,0.211650118231773,\r\n-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0693340003490448,-0.848764955997467,0.524204611778259,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0693340003490448,-0.848764955997467,0.524204611778259,-0.0693748444318771,-0.831668019294739,0.550922155380249,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0693748444318771,-0.831668019294739,0.550922155380249,0.0276575833559036,-0.999599158763886,-0.00602093851193786,-0.0233477801084518,-0.973347246646881,0.228144466876984,0.0194399692118168,-0.999768912792206,0.00917435344308615,-0.0233477801084518,-0.973347246646881,0.228144466876984,-0.0624116100370884,-0.865096867084503,0.497706800699234,0.0109502375125885,-0.976810574531555,0.213824898004532,-0.0233477801084518,-0.973347246646881,0.228144466876984,0.0109502375125885,-0.976810574531555,0.213824898004532,0.0194399692118168,-0.999768912792206,0.00917435344308615,-0.0323839038610458,-0.971943914890289,0.232972055673599,-0.0198927707970142,-0.976373791694641,0.215170785784721,0.00100872467737645,-0.999975979328156,0.0068477550521493,-0.0323839038610458,-0.971943914890289,0.232972055673599,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.0198927707970142,-0.976373791694641,0.215170785784721,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0198927707970142,-0.976373791694641,0.215170785784721,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.0198927707970142,-0.976373791694641,0.215170785784721,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0284085739403963,-0.970497786998749,0.239430278539658,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.0453175567090511,-0.983221650123596,-0.176696002483368,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.0681706070899963,-0.950664758682251,-0.302637010812759,0.12173242866993,-0.857075750827789,-0.500601887702942,\r\n0.0453175567090511,-0.983221650123596,-0.176696002483368,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.0311154965311289,-0.999503076076508,-0.00503590144217014,-0.0323839038610458,-0.971943914890289,0.232972055673599,0.00100872467737645,-0.999975979328156,0.0068477550521493,0.0453175567090511,-0.983221650123596,-0.176696002483368,0.0311154965311289,-0.999503076076508,-0.00503590144217014,0.0276575833559036,-0.999599158763886,-0.00602093851193786,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.062904492020607,-0.960011541843414,-0.272801578044891,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.062904492020607,-0.960011541843414,-0.272801578044891,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.0534284636378288,-0.954685628414154,-0.292780995368958,0.0721768289804459,-0.920635581016541,-0.383693218231201,0.0534284636378288,-0.954685628414154,-0.292780995368958,0.122711107134819,-0.699450731277466,-0.70406711101532,0.0534284636378288,-0.954685628414154,-0.292780995368958,0.0728467330336571,-0.881653606891632,-0.466240465641022,0.122711107134819,-0.699450731277466,-0.70406711101532,0.219833821058273,-0.499458253383636,-0.837982356548309,0.17319492995739,-0.793925166130066,-0.582826018333435,0.167896181344986,-0.491339564323425,-0.854632198810577,0.12173242866993,-0.857075750827789,-0.500601887702942,0.167896181344986,-0.491339564323425,-0.854632198810577,0.17319492995739,-0.793925166130066,-0.582826018333435,0.12173242866993,-0.857075750827789,-0.500601887702942,0.17319492995739,-0.793925166130066,-0.582826018333435,0.10127317160368,-0.96205872297287,-0.253350853919983,0.10127317160368,-0.96205872297287,-0.253350853919983,0.0453175567090511,-0.983221650123596,-0.176696002483368,0.12173242866993,-0.857075750827789,-0.500601887702942,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.126365572214127,-0.59325098991394,0.795037627220154,\r\n-0.126365572214127,-0.59325098991394,0.795037627220154,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0738492161035538,-0.863859176635742,0.498290538787842,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.0693340003490448,-0.848764955997467,0.524204611778259,-0.0850189253687859,-0.853815019130707,0.513586938381195,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.0693340003490448,-0.848764955997467,0.524204611778259,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.0693748444318771,-0.831668019294739,0.550922155380249,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.0693748444318771,-0.831668019294739,0.550922155380249,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.0693748444318771,-0.831668019294739,0.550922155380249,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.00412752572447062,-0.969103813171387,0.246618494391441,0.0109502375125885,-0.976810574531555,0.213824898004532,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.00412752572447062,-0.969103813171387,0.246618494391441,-0.0624116100370884,-0.865096867084503,0.497706800699234,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.064152903854847,-0.8457852602005,0.529652237892151,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.0109502375125885,-0.976810574531555,0.213824898004532,0.0394030772149563,-0.998648881912231,-0.03387800604105,-0.00412752572447062,-0.969103813171387,0.246618494391441,\r\n0.0394030772149563,-0.998648881912231,-0.03387800604105,0.0109502375125885,-0.976810574531555,0.213824898004532,0.0194399692118168,-0.999768912792206,0.00917435344308615,0.0394030772149563,-0.998648881912231,-0.03387800604105,0.0534284636378288,-0.954685628414154,-0.292780995368958,-0.0534386746585369,-0.978878617286682,0.19733427464962,-0.0323839038610458,-0.971943914890289,0.232972055673599,0.0311154965311289,-0.999503076076508,-0.00503590144217014,-0.0534386746585369,-0.978878617286682,0.19733427464962,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.0323839038610458,-0.971943914890289,0.232972055673599,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.0323839038610458,-0.971943914890289,0.232972055673599,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.111131399869919,-0.57400107383728,0.811278283596039,-0.0897464081645012,-0.814998686313629,0.572470486164093,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.111131399869919,-0.57400107383728,0.811278283596039,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.0897464081645012,-0.814998686313629,0.572470486164093,0.10127317160368,-0.96205872297287,-0.253350853919983,0.0311154965311289,-0.999503076076508,-0.00503590144217014,0.0453175567090511,-0.983221650123596,-0.176696002483368,0.0311154965311289,-0.999503076076508,-0.00503590144217014,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,-0.0534386746585369,-0.978878617286682,0.19733427464962,0.0311154965311289,-0.999503076076508,-0.00503590144217014,0.075142964720726,-0.942124783992767,-0.326732784509659,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,0.075142964720726,-0.942124783992767,-0.326732784509659,0.0311154965311289,-0.999503076076508,-0.00503590144217014,0.10127317160368,-0.96205872297287,-0.253350853919983,0.0534284636378288,-0.954685628414154,-0.292780995368958,0.0394030772149563,-0.998648881912231,-0.03387800604105,\r\n0.0728467330336571,-0.881653606891632,-0.466240465641022,0.0728467330336571,-0.881653606891632,-0.466240465641022,0.0394030772149563,-0.998648881912231,-0.03387800604105,0.186527162790298,-0.904004335403442,-0.384686559438705,0.17319492995739,-0.793925166130066,-0.582826018333435,0.219833821058273,-0.499458253383636,-0.837982356548309,0.188089981675148,-0.608807981014252,-0.770697712898254,0.17319492995739,-0.793925166130066,-0.582826018333435,0.188089981675148,-0.608807981014252,-0.770697712898254,0.075142964720726,-0.942124783992767,-0.326732784509659,0.075142964720726,-0.942124783992767,-0.326732784509659,0.10127317160368,-0.96205872297287,-0.253350853919983,0.17319492995739,-0.793925166130066,-0.582826018333435,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.111131399869919,-0.57400107383728,0.811278283596039,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.123232640326023,-0.66044557094574,0.740692377090454,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.123232640326023,-0.66044557094574,0.740692377090454,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.126365572214127,-0.59325098991394,0.795037627220154,-0.120318792760372,-0.63971620798111,0.759135246276855,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.126956060528755,-0.515093743801117,0.847679436206818,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.11723405867815,-0.637466609477997,0.761506617069244,-0.126956060528755,-0.515093743801117,0.847679436206818,-0.114519663155079,-0.625801980495453,0.771528959274292,\r\n-0.115728765726089,-0.619198024272919,0.776659905910492,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.126956060528755,-0.515093743801117,0.847679436206818,-0.114519663155079,-0.625801980495453,0.771528959274292,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.115721926093102,-0.623646795749664,0.773093163967133,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.00412752572447062,-0.969103813171387,0.246618494391441,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.0183772519230843,-0.8812255859375,0.472338438034058,-0.0183772519230843,-0.8812255859375,0.472338438034058,-0.064152903854847,-0.8457852602005,0.529652237892151,-0.0545523092150688,-0.600632071495056,0.797662198543549,0.0394030772149563,-0.998648881912231,-0.03387800604105,-0.00412752572447062,-0.969103813171387,0.246618494391441,0.0365356728434563,-0.999329328536987,0.00243300385773182,-0.0340013168752193,-0.976860523223877,0.211157158017159,0.0365356728434563,-0.999329328536987,0.00243300385773182,-0.00412752572447062,-0.969103813171387,0.246618494391441,0.0394030772149563,-0.998648881912231,-0.03387800604105,0.0365356728434563,-0.999329328536987,0.00243300385773182,0.186527162790298,-0.904004335403442,-0.384686559438705,-0.0534386746585369,-0.978878617286682,0.19733427464962,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.0534386746585369,-0.978878617286682,0.19733427464962,\r\n-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.0534386746585369,-0.978878617286682,0.19733427464962,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.138682082295418,-0.839019000530243,0.526131391525269,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.111131399869919,-0.57400107383728,0.811278283596039,-0.158076450228691,-0.586525142192841,0.794355034828186,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.111131399869919,-0.57400107383728,0.811278283596039,0.0536094941198826,-0.998436510562897,-0.0158281866461039,-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,0.0487594977021217,-0.978826999664307,-0.198796615004539,0.0536094941198826,-0.998436510562897,-0.0158281866461039,0.075142964720726,-0.942124783992767,-0.326732784509659,0.0487594977021217,-0.978826999664307,-0.198796615004539,-0.00887930393218994,-0.999856650829315,-0.0144144278019667,0.075142964720726,-0.942124783992767,-0.326732784509659,0.13045234978199,-0.822402536869049,-0.553747355937958,0.0487594977021217,-0.978826999664307,-0.198796615004539,0.075142964720726,-0.942124783992767,-0.326732784509659,0.188089981675148,-0.608807981014252,-0.770697712898254,\r\n0.13045234978199,-0.822402536869049,-0.553747355937958,0.0922555103898048,-0.958398580551147,-0.270112901926041,0.186527162790298,-0.904004335403442,-0.384686559438705,0.0365356728434563,-0.999329328536987,0.00243300385773182,0.188089981675148,-0.608807981014252,-0.770697712898254,0.126468554139137,-0.451952517032623,-0.88303142786026,0.13045234978199,-0.822402536869049,-0.553747355937958,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.123232640326023,-0.66044557094574,0.740692377090454,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.102169699966908,-0.645558059215546,0.756846070289612,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.123232640326023,-0.66044557094574,0.740692377090454,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.0484514124691486,-0.926823198795319,0.372358858585358,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.115213610231876,-0.677138447761536,0.726779997348785,-0.0484514124691486,-0.926823198795319,0.372358858585358,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.14354296028614,-0.518438398838043,0.842980921268463,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.126956060528755,-0.515093743801117,0.847679436206818,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.126956060528755,-0.515093743801117,0.847679436206818,\r\n-0.105166077613831,-0.709848403930664,0.696459114551544,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.115728765726089,-0.619198024272919,0.776659905910492,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.123215705156326,-0.52348917722702,0.843075811862946,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0468697026371956,-0.672857701778412,0.738285601139069,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.0254903268069029,-0.740726888179779,0.671322405338287,-0.0183772519230843,-0.8812255859375,0.472338438034058,-0.0545523092150688,-0.600632071495056,0.797662198543549,0.0140523631125689,-0.590322554111481,0.807044982910156,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.0468697026371956,-0.672857701778412,0.738285601139069,-0.0254903268069029,-0.740726888179779,0.671322405338287,-0.0545523092150688,-0.600632071495056,0.797662198543549,-0.00095319707179442,-0.536871612071991,0.843663334846497,-0.00095319707179442,-0.536871612071991,0.843663334846497,-0.0545523092150688,-0.600632071495056,0.797662198543549,0.0140523631125689,-0.590322554111481,0.807044982910156,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.0183772519230843,-0.8812255859375,0.472338438034058,0.004625647328794,-0.982105612754822,0.188273921608925,-0.0183772519230843,-0.8812255859375,0.472338438034058,-0.0119402995333076,-0.923454761505127,0.383521348237991,0.004625647328794,-0.982105612754822,0.188273921608925,-0.0183772519230843,-0.8812255859375,0.472338438034058,\r\n-0.0254903268069029,-0.740726888179779,0.671322405338287,-0.0119402995333076,-0.923454761505127,0.383521348237991,0.0365356728434563,-0.999329328536987,0.00243300385773182,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,-0.0340013168752193,-0.976860523223877,0.211157158017159,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,-0.0340013168752193,-0.976860523223877,0.211157158017159,0.004625647328794,-0.982105612754822,0.188273921608925,0.0365356728434563,-0.999329328536987,0.00243300385773182,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,0.0922555103898048,-0.958398580551147,-0.270112901926041,-0.00733992643654346,-0.998009860515594,0.0626292079687119,-0.0305759217590094,-0.991299748420715,0.128022685647011,0.0536094941198826,-0.998436510562897,-0.0158281866461039,-0.00733992643654346,-0.998009860515594,0.0626292079687119,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.0305759217590094,-0.991299748420715,0.128022685647011,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.17559078335762,-0.875933051109314,0.449342995882034,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.253703147172928,-0.637672364711761,0.727329611778259,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.230459794402123,-0.54960823059082,0.803006172180176,\r\n-0.303626090288162,-0.577875435352325,0.757542729377747,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.181772485375404,-0.701002180576324,0.689604640007019,-0.230459794402123,-0.54960823059082,0.803006172180176,-0.181772485375404,-0.701002180576324,0.689604640007019,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.122276648879051,-0.517558217048645,0.846865713596344,-0.181772485375404,-0.701002180576324,0.689604640007019,0.121147073805332,-0.971322953701019,-0.204584956169128,0.0536094941198826,-0.998436510562897,-0.0158281866461039,0.0487594977021217,-0.978826999664307,-0.198796615004539,0.121147073805332,-0.971322953701019,-0.204584956169128,0.0487594977021217,-0.978826999664307,-0.198796615004539,0.13045234978199,-0.822402536869049,-0.553747355937958,0.0753918290138245,-0.994254767894745,-0.0759829506278038,-0.00733992643654346,-0.998009860515594,0.0626292079687119,0.0536094941198826,-0.998436510562897,-0.0158281866461039,0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.0536094941198826,-0.998436510562897,-0.0158281866461039,0.121147073805332,-0.971322953701019,-0.204584956169128,0.121147073805332,-0.971322953701019,-0.204584956169128,0.13045234978199,-0.822402536869049,-0.553747355937958,0.147956669330597,-0.913846909999847,-0.378143578767776,0.0922555103898048,-0.958398580551147,-0.270112901926041,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,0.0724783018231392,-0.933188915252686,-0.352001756429672,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.181772485375404,-0.701002180576324,0.689604640007019,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.0344855301082134,-0.944027125835419,0.328060269355774,-0.091622069478035,-0.752653300762177,0.652010917663574,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.091622069478035,-0.752653300762177,0.652010917663574,\r\n-0.0344855301082134,-0.944027125835419,0.328060269355774,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.0344855301082134,-0.944027125835419,0.328060269355774,0.0135940844193101,-0.994413435459137,0.104675702750683,0.0135940844193101,-0.994413435459137,0.104675702750683,0.00256143603473902,-0.993648052215576,0.11250289529562,-0.0343954600393772,-0.915860533714294,0.400020390748978,-0.0689095482230186,-0.868890941143036,0.490183621644974,-0.0343954600393772,-0.915860533714294,0.400020390748978,0.00256143603473902,-0.993648052215576,0.11250289529562,-0.0484514124691486,-0.926823198795319,0.372358858585358,-0.0689095482230186,-0.868890941143036,0.490183621644974,0.00256143603473902,-0.993648052215576,0.11250289529562,0.00474998075515032,-0.996386706829071,0.0847988724708557,-0.0484514124691486,-0.926823198795319,0.372358858585358,0.00256143603473902,-0.993648052215576,0.11250289529562,-0.0452103540301323,-0.917502462863922,0.39515209197998,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.0484514124691486,-0.926823198795319,0.372358858585358,0.00190212356392294,-0.990893602371216,0.134633511304855,-0.0484514124691486,-0.926823198795319,0.372358858585358,0.00474998075515032,-0.996386706829071,0.0847988724708557,-0.0452103540301323,-0.917502462863922,0.39515209197998,-0.0484514124691486,-0.926823198795319,0.372358858585358,0.00190212356392294,-0.990893602371216,0.134633511304855,-0.0452103540301323,-0.917502462863922,0.39515209197998,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.105166077613831,-0.709848403930664,0.696459114551544,-0.0452103540301323,-0.917502462863922,0.39515209197998,0.00190212356392294,-0.990893602371216,0.134633511304855,-0.0434642285108566,-0.918126463890076,0.393896579742432,0.0116748576983809,-0.995969474315643,0.0889291241765022,-0.0434642285108566,-0.918126463890076,0.393896579742432,0.00190212356392294,-0.990893602371216,0.134633511304855,-0.0427758172154427,-0.932839393615723,0.357744127511978,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.0434642285108566,-0.918126463890076,0.393896579742432,\r\n0.0116748576983809,-0.995969474315643,0.0889291241765022,-0.00281666172668338,-0.992958962917328,0.118424765765667,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.0427758172154427,-0.932839393615723,0.357744127511978,-0.0434642285108566,-0.918126463890076,0.393896579742432,-0.00281666172668338,-0.992958962917328,0.118424765765667,-0.0510744526982307,-0.897869288921356,0.437289386987686,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.0427758172154427,-0.932839393615723,0.357744127511978,-0.103934623301029,-0.730477452278137,0.674981594085693,-0.0510744526982307,-0.897869288921356,0.437289386987686,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0510744526982307,-0.897869288921356,0.437289386987686,-0.0889186710119247,-0.675688922405243,0.731804490089417,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.0468697026371956,-0.672857701778412,0.738285601139069,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.00933704804629087,-0.869487643241882,0.493866294622421,-0.0468697026371956,-0.672857701778412,0.738285601139069,0.0140523631125689,-0.590322554111481,0.807044982910156,-0.0468697026371956,-0.672857701778412,0.738285601139069,-0.00933704804629087,-0.869487643241882,0.493866294622421,-0.00095319707179442,-0.536871612071991,0.843663334846497,0.0140523631125689,-0.590322554111481,0.807044982910156,0.0725380256772041,-0.574352204799652,0.815388023853302,-0.00933704804629087,-0.869487643241882,0.493866294622421,0.0463035888969898,-0.812277376651764,0.581430375576019,0.0140523631125689,-0.590322554111481,0.807044982910156,0.0463035888969898,-0.812277376651764,0.581430375576019,0.0725380256772041,-0.574352204799652,0.815388023853302,0.0140523631125689,-0.590322554111481,0.807044982910156,0.0287728440016508,-0.600178301334381,0.799348473548889,-0.0254903268069029,-0.740726888179779,0.671322405338287,-0.00095319707179442,-0.536871612071991,0.843663334846497,0.0287728440016508,-0.600178301334381,0.799348473548889,\r\n-0.00095319707179442,-0.536871612071991,0.843663334846497,0.0725380256772041,-0.574352204799652,0.815388023853302,-0.0260712541639805,-0.92661440372467,0.375107824802399,-0.0119402995333076,-0.923454761505127,0.383521348237991,-0.0254903268069029,-0.740726888179779,0.671322405338287,0.0152589734643698,-0.797281324863434,0.603414833545685,-0.0260712541639805,-0.92661440372467,0.375107824802399,-0.0254903268069029,-0.740726888179779,0.671322405338287,0.0152589734643698,-0.797281324863434,0.603414833545685,-0.0254903268069029,-0.740726888179779,0.671322405338287,0.0287728440016508,-0.600178301334381,0.799348473548889,-0.00917005073279142,-0.987003922462463,0.160433903336525,0.004625647328794,-0.982105612754822,0.188273921608925,-0.0119402995333076,-0.923454761505127,0.383521348237991,-0.0260712541639805,-0.92661440372467,0.375107824802399,-0.00917005073279142,-0.987003922462463,0.160433903336525,-0.0119402995333076,-0.923454761505127,0.383521348237991,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,0.004625647328794,-0.982105612754822,0.188273921608925,0.0303511805832386,-0.999438047409058,-0.014225710183382,-0.00917005073279142,-0.987003922462463,0.160433903336525,0.0303511805832386,-0.999438047409058,-0.014225710183382,0.004625647328794,-0.982105612754822,0.188273921608925,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,0.0356921218335629,-0.967829644680023,-0.249061778187752,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,0.0356921218335629,-0.967829644680023,-0.249061778187752,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,0.0698400065302849,-0.93700236082077,-0.342270046472549,-0.00609943363815546,-0.999980807304382,-0.00107273727189749,0.0303511805832386,-0.999438047409058,-0.014225710183382,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.0724783018231392,-0.933188915252686,-0.352001756429672,-0.00851019285619259,-0.99980753660202,-0.0176734682172537,0.0356921218335629,-0.967829644680023,-0.249061778187752,-0.00733992643654346,-0.998009860515594,0.0626292079687119,\r\n0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.019340893253684,-0.999812543392181,0.000700145377777517,-0.00733992643654346,-0.998009860515594,0.0626292079687119,0.019340893253684,-0.999812543392181,0.000700145377777517,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.00733992643654346,-0.998009860515594,0.0626292079687119,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.187508746981621,-0.919660866260529,0.345056891441345,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.289835244417191,-0.685666680335999,0.667724907398224,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.288869857788086,-0.700473487377167,0.652603209018707,-0.288869857788086,-0.700473487377167,0.652603209018707,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.303626090288162,-0.577875435352325,0.757542729377747,-0.288869857788086,-0.700473487377167,0.652603209018707,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.269200921058655,-0.719301342964172,0.640418827533722,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.181772485375404,-0.701002180576324,0.689604640007019,-0.269200921058655,-0.719301342964172,0.640418827533722,\r\n-0.13522432744503,-0.911711156368256,0.387939423322678,0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.121147073805332,-0.971322953701019,-0.204584956169128,0.147956669330597,-0.913846909999847,-0.378143578767776,0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.118634842336178,-0.985062658786774,-0.124808788299561,0.019340893253684,-0.999812543392181,0.000700145377777517,0.0753918290138245,-0.994254767894745,-0.0759829506278038,0.139191508293152,-0.949877917766571,-0.279923766851425,0.118634842336178,-0.985062658786774,-0.124808788299561,0.147956669330597,-0.913846909999847,-0.378143578767776,0.139191508293152,-0.949877917766571,-0.279923766851425,0.0753918290138245,-0.994254767894745,-0.0759829506278038,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.106189876794815,-0.982910990715027,0.150364831089973,-0.106189876794815,-0.982910990715027,0.150364831089973,-0.0109110716730356,-0.996045231819153,0.0881747305393219,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.0344855301082134,-0.944027125835419,0.328060269355774,-0.13522432744503,-0.911711156368256,0.387939423322678,-0.0109110716730356,-0.996045231819153,0.0881747305393219,0.0135940844193101,-0.994413435459137,0.104675702750683,-0.0344855301082134,-0.944027125835419,0.328060269355774,-0.0109110716730356,-0.996045231819153,0.0881747305393219,0.0135940844193101,-0.994413435459137,0.104675702750683,-0.0109110716730356,-0.996045231819153,0.0881747305393219,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0135940844193101,-0.994413435459137,0.104675702750683,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.00256143603473902,-0.993648052215576,0.11250289529562,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.00256143603473902,-0.993648052215576,0.11250289529562,0.00474998075515032,-0.996386706829071,0.0847988724708557,0.00256143603473902,-0.993648052215576,0.11250289529562,0.0244569107890129,-0.999579727649689,-0.0155595969408751,\r\n0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.00474998075515032,-0.996386706829071,0.0847988724708557,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.00190212356392294,-0.990893602371216,0.134633511304855,0.00474998075515032,-0.996386706829071,0.0847988724708557,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0116748576983809,-0.995969474315643,0.0889291241765022,0.00190212356392294,-0.990893602371216,0.134633511304855,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.032447200268507,-0.999472379684448,-0.00142972334288061,0.0116748576983809,-0.995969474315643,0.0889291241765022,0.0116748576983809,-0.995969474315643,0.0889291241765022,0.032447200268507,-0.999472379684448,-0.00142972334288061,-0.00281666172668338,-0.992958962917328,0.118424765765667,-0.00281666172668338,-0.992958962917328,0.118424765765667,0.032447200268507,-0.999472379684448,-0.00142972334288061,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.00281666172668338,-0.992958962917328,0.118424765765667,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.0427758172154427,-0.932839393615723,0.357744127511978,-0.0510744526982307,-0.897869288921356,0.437289386987686,-0.0427758172154427,-0.932839393615723,0.357744127511978,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.0510744526982307,-0.897869288921356,0.437289386987686,0.00403490010648966,-0.994669556617737,0.103034220635891,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.00933704804629087,-0.869487643241882,0.493866294622421,-0.0459471940994263,-0.905543982982636,0.4217569231987,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.00367920892313123,-0.982922375202179,0.183983743190765,-0.00933704804629087,-0.869487643241882,0.493866294622421,\r\n-0.00933704804629087,-0.869487643241882,0.493866294622421,-0.00367920892313123,-0.982922375202179,0.183983743190765,0.0463035888969898,-0.812277376651764,0.581430375576019,0.175397247076035,-0.736786246299744,0.652979075908661,0.0725380256772041,-0.574352204799652,0.815388023853302,0.0463035888969898,-0.812277376651764,0.581430375576019,0.0463035888969898,-0.812277376651764,0.581430375576019,-0.00367920892313123,-0.982922375202179,0.183983743190765,0.0517810322344303,-0.958633661270142,0.279892981052399,0.175397247076035,-0.736786246299744,0.652979075908661,0.0463035888969898,-0.812277376651764,0.581430375576019,0.0517810322344303,-0.958633661270142,0.279892981052399,0.137409225106239,-0.665299892425537,0.733821988105774,0.0287728440016508,-0.600178301334381,0.799348473548889,0.0725380256772041,-0.574352204799652,0.815388023853302,0.137409225106239,-0.665299892425537,0.733821988105774,0.0725380256772041,-0.574352204799652,0.815388023853302,0.175397247076035,-0.736786246299744,0.652979075908661,0.0152589734643698,-0.797281324863434,0.603414833545685,0.0287728440016508,-0.600178301334381,0.799348473548889,0.137409225106239,-0.665299892425537,0.733821988105774,-0.0260712541639805,-0.92661440372467,0.375107824802399,0.0152589734643698,-0.797281324863434,0.603414833545685,0.0108841992914677,-0.951428771018982,0.307676285505295,0.0108841992914677,-0.951428771018982,0.307676285505295,0.0152589734643698,-0.797281324863434,0.603414833545685,0.0670536234974861,-0.861624419689178,0.503097355365753,0.0152589734643698,-0.797281324863434,0.603414833545685,0.137409225106239,-0.665299892425537,0.733821988105774,0.0670536234974861,-0.861624419689178,0.503097355365753,-0.026105921715498,-0.992159783840179,0.122218556702137,-0.00917005073279142,-0.987003922462463,0.160433903336525,-0.0260712541639805,-0.92661440372467,0.375107824802399,-0.0260712541639805,-0.92661440372467,0.375107824802399,0.0108841992914677,-0.951428771018982,0.307676285505295,-0.026105921715498,-0.992159783840179,0.122218556702137,0.0183435473591089,-0.999374747276306,-0.0302240755409002,\r\n0.0303511805832386,-0.999438047409058,-0.014225710183382,-0.00917005073279142,-0.987003922462463,0.160433903336525,-0.026105921715498,-0.992159783840179,0.122218556702137,0.0183435473591089,-0.999374747276306,-0.0302240755409002,-0.00917005073279142,-0.987003922462463,0.160433903336525,0.0698400065302849,-0.93700236082077,-0.342270046472549,0.0303511805832386,-0.999438047409058,-0.014225710183382,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.0183435473591089,-0.999374747276306,-0.0302240755409002,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.0303511805832386,-0.999438047409058,-0.014225710183382,0.019340893253684,-0.999812543392181,0.000700145377777517,0.118634842336178,-0.985062658786774,-0.124808788299561,0.139507234096527,-0.988946676254272,-0.0502199158072472,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.531963109970093,-0.679120659828186,0.505776882171631,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.531963109970093,-0.679120659828186,0.505776882171631,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.424162119626999,-0.699603259563446,0.575014412403107,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.288869857788086,-0.700473487377167,0.652603209018707,-0.371830433607101,-0.693378031253815,0.617226779460907,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.304795503616333,-0.937436282634735,0.168263897299767,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.304795503616333,-0.937436282634735,0.168263897299767,\r\n-0.167762130498886,-0.976824879646301,0.13292433321476,-0.106189876794815,-0.982910990715027,0.150364831089973,-0.245221510529518,-0.894521117210388,0.373762309551239,-0.167762130498886,-0.976824879646301,0.13292433321476,-0.106189876794815,-0.982910990715027,0.150364831089973,-0.167762130498886,-0.976824879646301,0.13292433321476,-0.0710990428924561,-0.996858417987823,0.0349016524851322,-0.0710990428924561,-0.996858417987823,0.0349016524851322,-0.0109110716730356,-0.996045231819153,0.0881747305393219,-0.106189876794815,-0.982910990715027,0.150364831089973,0.0117403659969568,-0.999805629253387,-0.015828238800168,-0.0109110716730356,-0.996045231819153,0.0881747305393219,-0.0710990428924561,-0.996858417987823,0.0349016524851322,0.0274163521826267,-0.999539434909821,-0.0130056543275714,-0.0109110716730356,-0.996045231819153,0.0881747305393219,0.0117403659969568,-0.999805629253387,-0.015828238800168,0.0117403659969568,-0.999805629253387,-0.015828238800168,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0274163521826267,-0.999539434909821,-0.0130056543275714,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0244569107890129,-0.999579727649689,-0.0155595969408751,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0286166034638882,-0.998547255992889,-0.0456547252833843,\r\n0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.0286166034638882,-0.998547255992889,-0.0456547252833843,0.0305384341627359,-0.998835146427155,-0.0373591594398022,0.0305384341627359,-0.998835146427155,-0.0373591594398022,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.032447200268507,-0.999472379684448,-0.00142972334288061,0.0245620794594288,-0.99966961145401,-0.00755282957106829,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.032447200268507,-0.999472379684448,-0.00142972334288061,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.00403490010648966,-0.994669556617737,0.103034220635891,0.032447200268507,-0.999472379684448,-0.00142972334288061,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,0.00403490010648966,-0.994669556617737,0.103034220635891,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.00403490010648966,-0.994669556617737,0.103034220635891,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.00898563861846924,-0.987987756729126,0.154270350933075,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,-0.00367920892313123,-0.982922375202179,0.183983743190765,0.00925365556031466,-0.999942302703857,0.00544713670387864,-0.00367920892313123,-0.982922375202179,0.183983743190765,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0517810322344303,-0.958633661270142,0.279892981052399,-0.00367920892313123,-0.982922375202179,0.183983743190765,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.0517810322344303,-0.958633661270142,0.279892981052399,0.126484975218773,-0.929601728916168,0.34618204832077,0.175397247076035,-0.736786246299744,0.652979075908661,\r\n0.0517810322344303,-0.958633661270142,0.279892981052399,0.126484975218773,-0.929601728916168,0.34618204832077,0.0517810322344303,-0.958633661270142,0.279892981052399,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.175397247076035,-0.736786246299744,0.652979075908661,0.319474160671234,-0.649659156799316,0.689839899539948,0.137409225106239,-0.665299892425537,0.733821988105774,0.175397247076035,-0.736786246299744,0.652979075908661,0.281944245100021,-0.822226583957672,0.494419634342194,0.319474160671234,-0.649659156799316,0.689839899539948,0.175397247076035,-0.736786246299744,0.652979075908661,0.126484975218773,-0.929601728916168,0.34618204832077,0.281944245100021,-0.822226583957672,0.494419634342194,0.0670536234974861,-0.861624419689178,0.503097355365753,0.137409225106239,-0.665299892425537,0.733821988105774,0.196864113211632,-0.791901469230652,0.578045308589935,0.196864113211632,-0.791901469230652,0.578045308589935,0.137409225106239,-0.665299892425537,0.733821988105774,0.232045382261276,-0.682286322116852,0.693282067775726,0.319474160671234,-0.649659156799316,0.689839899539948,0.232045382261276,-0.682286322116852,0.693282067775726,0.137409225106239,-0.665299892425537,0.733821988105774,0.0529097877442837,-0.974794268608093,0.21674071252346,0.0108841992914677,-0.951428771018982,0.307676285505295,0.0670536234974861,-0.861624419689178,0.503097355365753,0.0529097877442837,-0.974794268608093,0.21674071252346,0.0670536234974861,-0.861624419689178,0.503097355365753,0.118295639753342,-0.893004238605499,0.434222817420959,0.0670536234974861,-0.861624419689178,0.503097355365753,0.196864113211632,-0.791901469230652,0.578045308589935,0.118295639753342,-0.893004238605499,0.434222817420959,-0.00110254308674484,-0.996733486652374,0.0807531327009201,-0.026105921715498,-0.992159783840179,0.122218556702137,0.0108841992914677,-0.951428771018982,0.307676285505295,0.0529097877442837,-0.974794268608093,0.21674071252346,-0.00110254308674484,-0.996733486652374,0.0807531327009201,0.0108841992914677,-0.951428771018982,0.307676285505295,\r\n0.00370917282998562,-0.99977445602417,0.0209085773676634,0.0183435473591089,-0.999374747276306,-0.0302240755409002,-0.026105921715498,-0.992159783840179,0.122218556702137,-0.026105921715498,-0.992159783840179,0.122218556702137,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,0.00370917282998562,-0.99977445602417,0.0209085773676634,-0.00110254308674484,-0.996733486652374,0.0807531327009201,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,-0.026105921715498,-0.992159783840179,0.122218556702137,0.0599019415676594,-0.964753031730652,-0.256248295307159,0.0183435473591089,-0.999374747276306,-0.0302240755409002,0.160131052136421,-0.925731837749481,-0.342605412006378,0.160131052136421,-0.925731837749481,-0.342605412006378,0.0183435473591089,-0.999374747276306,-0.0302240755409002,0.18714414536953,-0.961242854595184,-0.202458009123802,0.00370917282998562,-0.99977445602417,0.0209085773676634,0.18714414536953,-0.961242854595184,-0.202458009123802,0.0183435473591089,-0.999374747276306,-0.0302240755409002,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.167762130498886,-0.976824879646301,0.13292433321476,-0.304795503616333,-0.937436282634735,0.168263897299767,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.0710990428924561,-0.996858417987823,0.0349016524851322,-0.167762130498886,-0.976824879646301,0.13292433321476,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.0710990428924561,-0.996858417987823,0.0349016524851322,-0.0824144035577774,-0.995026290416718,-0.055950190871954,0.0117403659969568,-0.999805629253387,-0.015828238800168,-0.0710990428924561,-0.996858417987823,0.0349016524851322,0.0117403659969568,-0.999805629253387,-0.015828238800168,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.00875756144523621,-0.998479187488556,-0.0544271357357502,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0117403659969568,-0.999805629253387,-0.015828238800168,-0.00875756144523621,-0.998479187488556,-0.0544271357357502,\r\n-0.00875756144523621,-0.998479187488556,-0.0544271357357502,0.0185172855854034,-0.999067068099976,-0.0390099510550499,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0185172855854034,-0.999067068099976,-0.0390099510550499,0.0230424217879772,-0.999233961105347,-0.0316292084753513,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0230424217879772,-0.999233961105347,-0.0316292084753513,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0312389396131039,-0.999047815799713,-0.0304554980248213,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.0318588465452194,-0.999212265014648,-0.0236605834215879,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.0321035794913769,-0.999036967754364,-0.0299054905772209,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.0286166034638882,-0.998547255992889,-0.0456547252833843,0.037716917693615,-0.998752295970917,-0.0327290631830692,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0286166034638882,-0.998547255992889,-0.0456547252833843,\r\n0.0286166034638882,-0.998547255992889,-0.0456547252833843,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0305384341627359,-0.998835146427155,-0.0373591594398022,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.0305384341627359,-0.998835146427155,-0.0373591594398022,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.041902270168066,-0.998656034469604,-0.0305004827678204,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.0114490082487464,-0.999199032783508,-0.038342323154211,0.030776547268033,-0.999326050281525,-0.0199987087398767,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,0.030776547268033,-0.999326050281525,-0.0199987087398767,0.0114490082487464,-0.999199032783508,-0.038342323154211,-0.000811716134194285,-0.999992907047272,-0.00365967815741897,0.0114490082487464,-0.999199032783508,-0.038342323154211,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0114490082487464,-0.999199032783508,-0.038342323154211,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.00925365556031466,-0.999942302703857,0.00544713670387864,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.00925365556031466,-0.999942302703857,0.00544713670387864,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.117791049182415,-0.979192018508911,0.165251851081848,0.0513531416654587,-0.994722366333008,0.0888268426060677,0.117791049182415,-0.979192018508911,0.165251851081848,0.126484975218773,-0.929601728916168,0.34618204832077,\r\n0.117791049182415,-0.979192018508911,0.165251851081848,0.281944245100021,-0.822226583957672,0.494419634342194,0.126484975218773,-0.929601728916168,0.34618204832077,0.281944245100021,-0.822226583957672,0.494419634342194,0.412412345409393,-0.723655462265015,0.553388357162476,0.319474160671234,-0.649659156799316,0.689839899539948,0.281944245100021,-0.822226583957672,0.494419634342194,0.252728819847107,-0.924633681774139,0.284922063350677,0.412412345409393,-0.723655462265015,0.553388357162476,0.252728819847107,-0.924633681774139,0.284922063350677,0.281944245100021,-0.822226583957672,0.494419634342194,0.117791049182415,-0.979192018508911,0.165251851081848,0.232045382261276,-0.682286322116852,0.693282067775726,0.319474160671234,-0.649659156799316,0.689839899539948,0.331636309623718,-0.739624500274658,0.585638761520386,0.443045437335968,-0.677261710166931,0.587390124797821,0.319474160671234,-0.649659156799316,0.689839899539948,0.412412345409393,-0.723655462265015,0.553388357162476,0.443045437335968,-0.677261710166931,0.587390124797821,0.331636309623718,-0.739624500274658,0.585638761520386,0.319474160671234,-0.649659156799316,0.689839899539948,0.232045382261276,-0.682286322116852,0.693282067775726,0.331636309623718,-0.739624500274658,0.585638761520386,0.196864113211632,-0.791901469230652,0.578045308589935,0.144093662500381,-0.927390098571777,0.345231086015701,0.118295639753342,-0.893004238605499,0.434222817420959,0.196864113211632,-0.791901469230652,0.578045308589935,0.196864113211632,-0.791901469230652,0.578045308589935,0.331636309623718,-0.739624500274658,0.585638761520386,0.235907152295113,-0.859161674976349,0.454080283641815,0.196864113211632,-0.791901469230652,0.578045308589935,0.235907152295113,-0.859161674976349,0.454080283641815,0.144093662500381,-0.927390098571777,0.345231086015701,0.144093662500381,-0.927390098571777,0.345231086015701,0.0529097877442837,-0.974794268608093,0.21674071252346,0.118295639753342,-0.893004238605499,0.434222817420959,-0.00110254308674484,-0.996733486652374,0.0807531327009201,0.0529097877442837,-0.974794268608093,0.21674071252346,\r\n0.00359165179543197,-0.998873233795166,0.0473211258649826,0.00359165179543197,-0.998873233795166,0.0473211258649826,0.0529097877442837,-0.974794268608093,0.21674071252346,0.0398196503520012,-0.993996679782867,0.101906381547451,0.144093662500381,-0.927390098571777,0.345231086015701,0.0398196503520012,-0.993996679782867,0.101906381547451,0.0529097877442837,-0.974794268608093,0.21674071252346,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,-0.00110254308674484,-0.996733486652374,0.0807531327009201,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,-0.00110254308674484,-0.996733486652374,0.0807531327009201,0.00359165179543197,-0.998873233795166,0.0473211258649826,0.0460121817886829,-0.995894312858582,-0.0779569521546364,0.00370917282998562,-0.99977445602417,0.0209085773676634,-0.00522640813142061,-0.999719798564911,-0.0230856947600842,0.0460121817886829,-0.995894312858582,-0.0779569521546364,0.18714414536953,-0.961242854595184,-0.202458009123802,0.00370917282998562,-0.99977445602417,0.0209085773676634,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0292050205171108,-0.998979032039642,-0.0344661250710487,0.0230424217879772,-0.999233961105347,-0.0316292084753513,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0322445295751095,-0.998880803585052,-0.0346024967730045,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.024304885417223,-0.999512672424316,-0.0195838250219822,\r\n0.0243081115186214,-0.998917639255524,-0.0396560356020927,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.00747424457222223,-0.999930262565613,-0.00914164632558823,0.0114490082487464,-0.999199032783508,-0.038342323154211,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.024304885417223,-0.999512672424316,-0.0195838250219822,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.00747424457222223,-0.999930262565613,-0.00914164632558823,0.00747424457222223,-0.999930262565613,-0.00914164632558823,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,0.0114490082487464,-0.999199032783508,-0.038342323154211,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.0114490082487464,-0.999199032783508,-0.038342323154211,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,0.00168793566990644,-0.999578237533569,-0.0289897955954075,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0179140791296959,-0.999756813049316,-0.0128555344417691,-0.0105809951201081,-0.999096691608429,-0.0411546006798744,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.117791049182415,-0.979192018508911,0.165251851081848,0.0179140791296959,-0.999756813049316,-0.0128555344417691,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.117791049182415,-0.979192018508911,0.165251851081848,0.0747324377298355,-0.996113002300262,0.0466252006590366,\r\n0.252728819847107,-0.924633681774139,0.284922063350677,0.181974366307259,-0.971222460269928,0.153662323951721,0.252728819847107,-0.924633681774139,0.284922063350677,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.252728819847107,-0.924633681774139,0.284922063350677,0.378556281328201,-0.838217973709106,0.392537415027618,0.412412345409393,-0.723655462265015,0.553388357162476,0.252728819847107,-0.924633681774139,0.284922063350677,0.181974366307259,-0.971222460269928,0.153662323951721,0.378556281328201,-0.838217973709106,0.392537415027618,0.506555259227753,-0.680231273174286,0.529798984527588,0.443045437335968,-0.677261710166931,0.587390124797821,0.412412345409393,-0.723655462265015,0.553388357162476,0.378556281328201,-0.838217973709106,0.392537415027618,0.506555259227753,-0.680231273174286,0.529798984527588,0.412412345409393,-0.723655462265015,0.553388357162476,0.358185887336731,-0.820785045623779,0.444988369941711,0.331636309623718,-0.739624500274658,0.585638761520386,0.443045437335968,-0.677261710166931,0.587390124797821,0.22071173787117,-0.904506742954254,0.364902347326279,0.235907152295113,-0.859161674976349,0.454080283641815,0.331636309623718,-0.739624500274658,0.585638761520386,0.358185887336731,-0.820785045623779,0.444988369941711,0.22071173787117,-0.904506742954254,0.364902347326279,0.331636309623718,-0.739624500274658,0.585638761520386,0.144093662500381,-0.927390098571777,0.345231086015701,0.235907152295113,-0.859161674976349,0.454080283641815,0.128946542739868,-0.957494020462036,0.258026957511902,0.22071173787117,-0.904506742954254,0.364902347326279,0.128946542739868,-0.957494020462036,0.258026957511902,0.235907152295113,-0.859161674976349,0.454080283641815,0.144093662500381,-0.927390098571777,0.345231086015701,0.128946542739868,-0.957494020462036,0.258026957511902,0.0398196503520012,-0.993996679782867,0.101906381547451,0.00359165179543197,-0.998873233795166,0.0473211258649826,0.0398196503520012,-0.993996679782867,0.101906381547451,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,0.0398196503520012,-0.993996679782867,0.101906381547451,\r\n0.0184723176062107,-0.998772919178009,0.0459497682750225,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,0.128946542739868,-0.957494020462036,0.258026957511902,0.0785489827394485,-0.984790146350861,0.154978558421135,0.0398196503520012,-0.993996679782867,0.101906381547451,0.0398196503520012,-0.993996679782867,0.101906381547451,0.0785489827394485,-0.984790146350861,0.154978558421135,0.0184723176062107,-0.998772919178009,0.0459497682750225,-0.00657857768237591,-0.998406529426575,-0.0560448952019215,-0.0221181455999613,-0.995086193084717,-0.0965097770094872,0.00359165179543197,-0.998873233795166,0.0473211258649826,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0144710522145033,-0.999786138534546,-0.0147695550695062,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.0187129825353622,-0.999626517295837,-0.0199137330055237,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0121595682576299,-0.999860167503357,-0.0114769032225013,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0102866934612393,-0.999776244163513,-0.018481807783246,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,0.00747424457222223,-0.999930262565613,-0.00914164632558823,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0502747520804405,-0.997401118278503,-0.0516085736453533,0.0102866934612393,-0.999776244163513,-0.018481807783246,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,\r\n-0.00989023316651583,-0.999816358089447,-0.0164113231003284,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0895073562860489,-0.993259370326996,-0.0736491233110428,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0502747520804405,-0.997401118278503,-0.0516085736453533,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0285395793616772,-0.997918725013733,-0.0578240565955639,0.0452325455844402,-0.997001051902771,-0.0627902150154114,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0895073562860489,-0.993259370326996,-0.0736491233110428,0.0285395793616772,-0.997918725013733,-0.0578240565955639,0.0102866934612393,-0.999776244163513,-0.018481807783246,0.0452325455844402,-0.997001051902771,-0.0627902150154114,0.00168793566990644,-0.999578237533569,-0.0289897955954075,-0.00989023316651583,-0.999816358089447,-0.0164113231003284,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,0.00844634417444468,-0.999358475208282,-0.0348014868795872,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.043037798255682,-0.998685717582703,-0.0278289895504713,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.00844634417444468,-0.999358475208282,-0.0348014868795872,0.0213583074510098,-0.999124825000763,-0.0359630770981312,0.00168793566990644,-0.999578237533569,-0.0289897955954075,0.043037798255682,-0.998685717582703,-0.0278289895504713,0.0100194960832596,-0.999584794044495,-0.027014372870326,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.181974366307259,-0.971222460269928,0.153662323951721,0.0747324377298355,-0.996113002300262,0.0466252006590366,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.181974366307259,-0.971222460269928,0.153662323951721,0.0645628049969673,-0.997673034667969,0.0219103507697582,0.281492471694946,-0.927177309989929,0.247192621231079,0.378556281328201,-0.838217973709106,0.392537415027618,\r\n0.181974366307259,-0.971222460269928,0.153662323951721,0.281492471694946,-0.927177309989929,0.247192621231079,0.128946542739868,-0.957494020462036,0.258026957511902,0.22071173787117,-0.904506742954254,0.364902347326279,0.0785489827394485,-0.984790146350861,0.154978558421135,0.0895073562860489,-0.993259370326996,-0.0736491233110428,0.0502747520804405,-0.997401118278503,-0.0516085736453533,0.0432611666619778,0.999060750007629,0.00244085164740682,0.110816404223442,-0.988604187965393,-0.101889029145241,0.0285395793616772,-0.997918725013733,-0.0578240565955639,0.0452325455844402,-0.997001051902771,-0.0627902150154114,-0.00559412548318505,-0.999683499336243,-0.0245250929147005,0.0285395793616772,-0.997918725013733,-0.0578240565955639,0.00844634417444468,-0.999358475208282,-0.0348014868795872,0.168060839176178,-0.614413797855377,0.770876824855804,0.104648001492023,-0.745454967021942,0.658289849758148,0.0309442467987537,-0.575371563434601,0.817306458950043,0.104648001492023,-0.745454967021942,0.658289849758148,0.168060839176178,-0.614413797855377,0.770876824855804,0.134991869330406,-0.8232581615448,0.551382839679718,-0.133357033133507,-0.762132346630096,0.633537709712982,0.0309442467987537,-0.575371563434601,0.817306458950043,0.104648001492023,-0.745454967021942,0.658289849758148,0.129113391041756,-0.697246253490448,0.705107927322388,0.134991869330406,-0.8232581615448,0.551382839679718,0.168060839176178,-0.614413797855377,0.770876824855804,0.104648001492023,-0.745454967021942,0.658289849758148,0.134991869330406,-0.8232581615448,0.551382839679718,0.074092261493206,-0.963567435741425,0.256998151540756,0.0309442467987537,-0.575371563434601,0.817306458950043,-0.133357033133507,-0.762132346630096,0.633537709712982,-0.219321459531784,-0.576956927776337,0.786777377128601,-0.133357033133507,-0.762132346630096,0.633537709712982,0.104648001492023,-0.745454967021942,0.658289849758148,0.074092261493206,-0.963567435741425,0.256998151540756,0.039522796869278,-0.897197365760803,0.439857631921768,0.134991869330406,-0.8232581615448,0.551382839679718,\r\n0.129113391041756,-0.697246253490448,0.705107927322388,0.074092261493206,-0.963567435741425,0.256998151540756,0.134991869330406,-0.8232581615448,0.551382839679718,0.0567598640918732,-0.984523296356201,0.165807336568832,-0.219321459531784,-0.576956927776337,0.786777377128601,-0.133357033133507,-0.762132346630096,0.633537709712982,-0.379963099956512,-0.677799880504608,0.629456281661987,-0.0302810054272413,-0.974657416343689,0.221643507480621,-0.133357033133507,-0.762132346630096,0.633537709712982,0.074092261493206,-0.963567435741425,0.256998151540756,0.039522796869278,-0.897197365760803,0.439857631921768,0.0567598640918732,-0.984523296356201,0.165807336568832,0.134991869330406,-0.8232581615448,0.551382839679718,-0.0159715935587883,-0.800815999507904,0.598697364330292,0.039522796869278,-0.897197365760803,0.439857631921768,0.129113391041756,-0.697246253490448,0.705107927322388,0.074092261493206,-0.963567435741425,0.256998151540756,0.0567598640918732,-0.984523296356201,0.165807336568832,0.0263913255184889,-0.999604463577271,-0.00971473660320044,-0.133357033133507,-0.762132346630096,0.633537709712982,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.379963099956512,-0.677799880504608,0.629456281661987,-0.133357033133507,-0.762132346630096,0.633537709712982,-0.0302810054272413,-0.974657416343689,0.221643507480621,-0.272545754909515,-0.859851181507111,0.431711405515671,0.0806439444422722,-0.996740341186523,-0.00226468779146671,-0.0302810054272413,-0.974657416343689,0.221643507480621,0.074092261493206,-0.963567435741425,0.256998151540756,0.0567598640918732,-0.984523296356201,0.165807336568832,0.039522796869278,-0.897197365760803,0.439857631921768,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.0497421845793724,-0.916766822338104,0.39631325006485,0.039522796869278,-0.897197365760803,0.439857631921768,-0.0159715935587883,-0.800815999507904,0.598697364330292,0.0567598640918732,-0.984523296356201,0.165807336568832,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.0263913255184889,-0.999604463577271,-0.00971473660320044,\r\n0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.074092261493206,-0.963567435741425,0.256998151540756,0.0263913255184889,-0.999604463577271,-0.00971473660320044,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.455144941806793,-0.733030915260315,0.50547856092453,-0.379963099956512,-0.677799880504608,0.629456281661987,-0.050407949835062,-0.993949174880981,0.0975913554430008,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.0302810054272413,-0.974657416343689,0.221643507480621,0.0688551366329193,-0.997272908687592,-0.0265639815479517,-0.0302810054272413,-0.974657416343689,0.221643507480621,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.0497421845793724,-0.916766822338104,0.39631325006485,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.039522796869278,-0.897197365760803,0.439857631921768,0.0916284471750259,-0.793682634830475,0.601391613483429,0.0497421845793724,-0.916766822338104,0.39631325006485,-0.0159715935587883,-0.800815999507904,0.598697364330292,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,0.0263913255184889,-0.999604463577271,-0.00971473660320044,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.0263913255184889,-0.999604463577271,-0.00971473660320044,0.047006893903017,-0.998518943786621,-0.0273886192589998,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.455144941806793,-0.733030915260315,0.50547856092453,-0.272545754909515,-0.859851181507111,0.431711405515671,-0.050407949835062,-0.993949174880981,0.0975913554430008,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.050407949835062,-0.993949174880981,0.0975913554430008,-0.0302810054272413,-0.974657416343689,0.221643507480621,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.127972066402435,-0.989606320858002,-0.0655925571918488,\r\n0.111182138323784,-0.973299503326416,0.200814068317413,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.0497421845793724,-0.916766822338104,0.39631325006485,0.0916284471750259,-0.793682634830475,0.601391613483429,0.218147307634354,-0.827641844749451,0.517127275466919,0.0497421845793724,-0.916766822338104,0.39631325006485,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,0.0180694703012705,-0.998579442501068,-0.0501226522028446,0.0263913255184889,-0.999604463577271,-0.00971473660320044,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.0263913255184889,-0.999604463577271,-0.00971473660320044,0.0180694703012705,-0.998579442501068,-0.0501226522028446,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.142150819301605,-0.988779723644257,-0.0459093116223812,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.409708291292191,-0.782580256462097,0.468729257583618,-0.455144941806793,-0.733030915260315,0.50547856092453,0.00221211230382323,-0.999956727027893,-0.00902872439473867,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.050407949835062,-0.993949174880981,0.0975913554430008,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.0904784724116325,-0.991862773895264,-0.0895645543932915,-0.050407949835062,-0.993949174880981,0.0975913554430008,0.0806439444422722,-0.996740341186523,-0.00226468779146671,0.142150819301605,-0.988779723644257,-0.0459093116223812,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.271335422992706,-0.950131773948669,-0.1537094861269,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,0.00573364924639463,-0.996251583099365,0.0863118693232536,0.111182138323784,-0.973299503326416,0.200814068317413,\r\n0.111182138323784,-0.973299503326416,0.200814068317413,0.0497421845793724,-0.916766822338104,0.39631325006485,0.218147307634354,-0.827641844749451,0.517127275466919,0.0916284471750259,-0.793682634830475,0.601391613483429,0.353142261505127,-0.651618957519531,0.671329319477081,0.218147307634354,-0.827641844749451,0.517127275466919,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,0.0180694703012705,-0.998579442501068,-0.0501226522028446,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.0180694703012705,-0.998579442501068,-0.0501226522028446,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.142150819301605,-0.988779723644257,-0.0459093116223812,-0.25805851817131,-0.923718869686127,0.283105820417404,-0.19473323225975,-0.957117319107056,0.214487910270691,-0.409708291292191,-0.782580256462097,0.468729257583618,-0.455144941806793,-0.733030915260315,0.50547856092453,-0.409708291292191,-0.782580256462097,0.468729257583618,-0.474688947200775,-0.686963498592377,0.550228476524353,-0.25805851817131,-0.923718869686127,0.283105820417404,0.00221211230382323,-0.999956727027893,-0.00902872439473867,-0.19473323225975,-0.957117319107056,0.214487910270691,0.00221211230382323,-0.999956727027893,-0.00902872439473867,-0.050407949835062,-0.993949174880981,0.0975913554430008,0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.271335422992706,-0.950131773948669,-0.1537094861269,0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.0688551366329193,-0.997272908687592,-0.0265639815479517,0.153606235980988,-0.987659633159637,-0.0305529180914164,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.142150819301605,-0.988779723644257,-0.0459093116223812,\r\n0.476398497819901,-0.870094656944275,-0.126410618424416,0.271335422992706,-0.950131773948669,-0.1537094861269,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.0928514748811722,-0.992798864841461,0.0756900385022163,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,0.111182138323784,-0.973299503326416,0.200814068317413,0.296904057264328,-0.884543597698212,0.359764397144318,0.111182138323784,-0.973299503326416,0.200814068317413,0.218147307634354,-0.827641844749451,0.517127275466919,0.296904057264328,-0.884543597698212,0.359764397144318,0.218147307634354,-0.827641844749451,0.517127275466919,0.353142261505127,-0.651618957519531,0.671329319477081,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.0129504380747676,-0.998880803585052,-0.0454892292618752,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.0043971324339509,-0.999989151954651,0.00152654503472149,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.047006893903017,-0.998518943786621,-0.0273886192589998,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.142150819301605,-0.988779723644257,-0.0459093116223812,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.153606235980988,-0.987659633159637,-0.0305529180914164,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.409708291292191,-0.782580256462097,0.468729257583618,-0.19473323225975,-0.957117319107056,0.214487910270691,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.474688947200775,-0.686963498592377,0.550228476524353,-0.409708291292191,-0.782580256462097,0.468729257583618,0.00221211230382323,-0.999956727027893,-0.00902872439473867,-0.0993935689330101,-0.990446448326111,0.0955862179398537,-0.19473323225975,-0.957117319107056,0.214487910270691,\r\n0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.164928287267685,-0.969408094882965,-0.181787103414536,0.00221211230382323,-0.999956727027893,-0.00902872439473867,0.271335422992706,-0.950131773948669,-0.1537094861269,0.380041241645813,-0.88980621099472,-0.252612769603729,0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.153606235980988,-0.987659633159637,-0.0305529180914164,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.476398497819901,-0.870094656944275,-0.126410618424416,0.656744718551636,-0.693685710430145,-0.29578110575676,0.271335422992706,-0.950131773948669,-0.1537094861269,0.476398497819901,-0.870094656944275,-0.126410618424416,0.127972066402435,-0.989606320858002,-0.0655925571918488,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.0928514748811722,-0.992798864841461,0.0756900385022163,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.00328072579577565,-0.999989628791809,-0.00314005394466221,0.0928514748811722,-0.992798864841461,0.0756900385022163,0.111182138323784,-0.973299503326416,0.200814068317413,0.296904057264328,-0.884543597698212,0.359764397144318,0.444893777370453,-0.730442523956299,0.518192112445831,0.296904057264328,-0.884543597698212,0.359764397144318,0.353142261505127,-0.651618957519531,0.671329319477081,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.169975727796555,-0.969295501708984,-0.177691802382469,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.0043971324339509,-0.999989151954651,0.00152654503472149,-0.0043971324339509,-0.999989151954651,0.00152654503472149,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.047006893903017,-0.998518943786621,-0.0273886192589998,\r\n0.144140556454659,-0.989555180072784,-0.0019798472058028,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.153606235980988,-0.987659633159637,-0.0305529180914164,-0.0993935689330101,-0.990446448326111,0.0955862179398537,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.19473323225975,-0.957117319107056,0.214487910270691,-0.474688947200775,-0.686963498592377,0.550228476524353,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.537781059741974,-0.773346543312073,0.335747689008713,0.00221211230382323,-0.999956727027893,-0.00902872439473867,0.135786861181259,-0.985840201377869,-0.0983916670084,-0.0993935689330101,-0.990446448326111,0.0955862179398537,0.380041241645813,-0.88980621099472,-0.252612769603729,0.164928287267685,-0.969408094882965,-0.181787103414536,0.0904784724116325,-0.991862773895264,-0.0895645543932915,0.164928287267685,-0.969408094882965,-0.181787103414536,0.18709434568882,-0.96151077747345,-0.201227635145187,0.00221211230382323,-0.999956727027893,-0.00902872439473867,0.380041241645813,-0.88980621099472,-0.252612769603729,0.271335422992706,-0.950131773948669,-0.1537094861269,0.639754891395569,-0.717177748680115,-0.276350378990173,0.656744718551636,-0.693685710430145,-0.29578110575676,0.476398497819901,-0.870094656944275,-0.126410618424416,0.778610348701477,-0.587314128875732,-0.220970332622528,0.656744718551636,-0.693685710430145,-0.29578110575676,0.639754891395569,-0.717177748680115,-0.276350378990173,0.271335422992706,-0.950131773948669,-0.1537094861269,0.476398497819901,-0.870094656944275,-0.126410618424416,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.476559072732925,-0.876515626907349,-0.0679090917110443,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,0.0928514748811722,-0.992798864841461,0.0756900385022163,0.149158820509911,-0.970673203468323,0.188534155488014,\r\n0.0928514748811722,-0.992798864841461,0.0756900385022163,0.296904057264328,-0.884543597698212,0.359764397144318,0.444893777370453,-0.730442523956299,0.518192112445831,0.149158820509911,-0.970673203468323,0.188534155488014,0.296904057264328,-0.884543597698212,0.359764397144318,0.591926097869873,-0.381469637155533,0.710003018379211,0.444893777370453,-0.730442523956299,0.518192112445831,0.353142261505127,-0.651618957519531,0.671329319477081,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.0221687331795692,-0.998738527297974,-0.0450534969568253,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.169975727796555,-0.969295501708984,-0.177691802382469,-0.0751076489686966,-0.992904424667358,-0.0921928212046623,-0.169975727796555,-0.969295501708984,-0.177691802382469,-0.277583748102188,-0.93305629491806,-0.228808045387268,0.0255380738526583,-0.999607682228088,0.0114881005138159,-0.0043971324339509,-0.999989151954651,0.00152654503472149,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.000476566841825843,-0.999766767024994,0.0215892791748047,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.139507234096527,-0.988946676254272,-0.0502199158072472,0.214405000209808,-0.975381731987,-0.0515841580927372,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.155409842729568,-0.987775027751923,-0.0121751492843032,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.0993935689330101,-0.990446448326111,0.0955862179398537,-0.340551406145096,-0.917936861515045,0.203510582447052,-0.357408374547958,-0.856166124343872,0.373147130012512,-0.340551406145096,-0.917936861515045,0.203510582447052,\r\n-0.537781059741974,-0.773346543312073,0.335747689008713,0.135786861181259,-0.985840201377869,-0.0983916670084,0.00221211230382323,-0.999956727027893,-0.00902872439473867,0.18709434568882,-0.96151077747345,-0.201227635145187,0.135786861181259,-0.985840201377869,-0.0983916670084,-0.020694037899375,-0.99973464012146,-0.010114312171936,-0.0993935689330101,-0.990446448326111,0.0955862179398537,0.380041241645813,-0.88980621099472,-0.252612769603729,0.353421717882156,-0.826284766197205,-0.438573241233826,0.164928287267685,-0.969408094882965,-0.181787103414536,0.164928287267685,-0.969408094882965,-0.181787103414536,0.353421717882156,-0.826284766197205,-0.438573241233826,0.18709434568882,-0.96151077747345,-0.201227635145187,0.558647692203522,-0.687967240810394,-0.463264107704163,0.380041241645813,-0.88980621099472,-0.252612769603729,0.639754891395569,-0.717177748680115,-0.276350378990173,0.778610348701477,-0.587314128875732,-0.220970332622528,0.476398497819901,-0.870094656944275,-0.126410618424416,0.798410177230835,-0.586962759494781,-0.134223222732544,0.656744718551636,-0.693685710430145,-0.29578110575676,0.778610348701477,-0.587314128875732,-0.220970332622528,0.736960232257843,-0.58683443069458,-0.335432231426239,0.639754891395569,-0.717177748680115,-0.276350378990173,0.656744718551636,-0.693685710430145,-0.29578110575676,0.666936457157135,-0.647988200187683,-0.367840796709061,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.476559072732925,-0.876515626907349,-0.0679090917110443,0.155409842729568,-0.987775027751923,-0.0121751492843032,0.476559072732925,-0.876515626907349,-0.0679090917110443,0.798410177230835,-0.586962759494781,-0.134223222732544,0.476398497819901,-0.870094656944275,-0.126410618424416,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,0.0928514748811722,-0.992798864841461,0.0756900385022163,0.149158820509911,-0.970673203468323,0.188534155488014,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,\r\n0.217045292258263,-0.903323292732239,0.36999773979187,0.149158820509911,-0.970673203468323,0.188534155488014,0.444893777370453,-0.730442523956299,0.518192112445831,0.469941169023514,-0.815891683101654,0.336862057447433,0.444893777370453,-0.730442523956299,0.518192112445831,0.591926097869873,-0.381469637155533,0.710003018379211,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.0610741451382637,-0.994511246681213,-0.0849543064832687,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.169975727796555,-0.969295501708984,-0.177691802382469,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.169975727796555,-0.969295501708984,-0.177691802382469,0.0255380738526583,-0.999607682228088,0.0114881005138159,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.185191556811333,-0.982533097267151,0.0182387176901102,0.019340893253684,-0.999812543392181,0.000700145377777517,0.139507234096527,-0.988946676254272,-0.0502199158072472,-0.000476566841825843,-0.999766767024994,0.0215892791748047,-0.185191556811333,-0.982533097267151,0.0182387176901102,-0.000476566841825843,-0.999766767024994,0.0215892791748047,0.0255380738526583,-0.999607682228088,0.0114881005138159,0.256227433681488,-0.958962798118591,-0.12139917165041,0.144140556454659,-0.989555180072784,-0.0019798472058028,0.214405000209808,-0.975381731987,-0.0515841580927372,0.256227433681488,-0.958962798118591,-0.12139917165041,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.144140556454659,-0.989555180072784,-0.0019798472058028,-0.0993935689330101,-0.990446448326111,0.0955862179398537,\r\n-0.020694037899375,-0.99973464012146,-0.010114312171936,-0.340551406145096,-0.917936861515045,0.203510582447052,0.135786861181259,-0.985840201377869,-0.0983916670084,0.18709434568882,-0.96151077747345,-0.201227635145187,0.317339152097702,-0.899321377277374,-0.300860226154327,0.135786861181259,-0.985840201377869,-0.0983916670084,0.195589005947113,-0.963940680027008,-0.180452942848206,-0.020694037899375,-0.99973464012146,-0.010114312171936,0.380041241645813,-0.88980621099472,-0.252612769603729,0.558647692203522,-0.687967240810394,-0.463264107704163,0.353421717882156,-0.826284766197205,-0.438573241233826,0.353421717882156,-0.826284766197205,-0.438573241233826,0.317339152097702,-0.899321377277374,-0.300860226154327,0.18709434568882,-0.96151077747345,-0.201227635145187,0.639754891395569,-0.717177748680115,-0.276350378990173,0.602038145065308,-0.687158584594727,-0.40664866566658,0.558647692203522,-0.687967240810394,-0.463264107704163,0.666936457157135,-0.647988200187683,-0.367840796709061,0.656744718551636,-0.693685710430145,-0.29578110575676,0.736960232257843,-0.58683443069458,-0.335432231426239,0.639754891395569,-0.717177748680115,-0.276350378990173,0.666936457157135,-0.647988200187683,-0.367840796709061,0.593249201774597,-0.720966875553131,-0.358136862516403,0.44307205080986,-0.882459819316864,-0.157961055636406,0.476559072732925,-0.876515626907349,-0.0679090917110443,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.798410177230835,-0.586962759494781,-0.134223222732544,0.476559072732925,-0.876515626907349,-0.0679090917110443,0.787183046340942,-0.589440822601318,-0.181389316916466,0.0495869107544422,-0.998399972915649,0.0271767526865005,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,0.0495869107544422,-0.998399972915649,0.0271767526865005,-0.00987988989800215,-0.999942064285278,-0.00425811624154449,0.149158820509911,-0.970673203468323,0.188534155488014,0.215186566114426,-0.952173352241516,0.216934636235237,0.149158820509911,-0.970673203468323,0.188534155488014,\r\n0.217045292258263,-0.903323292732239,0.36999773979187,0.469941169023514,-0.815891683101654,0.336862057447433,0.217045292258263,-0.903323292732239,0.36999773979187,0.444893777370453,-0.730442523956299,0.518192112445831,-0.171603113412857,-0.977608799934387,-0.121792130172253,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.185191556811333,-0.982533097267151,0.0182387176901102,-0.0883512645959854,-0.995815992355347,-0.023334052413702,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.549823641777039,-0.718385517597198,-0.426164299249649,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.277583748102188,-0.93305629491806,-0.228808045387268,-0.000476566841825843,-0.999766767024994,0.0215892791748047,-0.081295944750309,-0.9940544962883,0.0724327936768532,0.019340893253684,-0.999812543392181,0.000700145377777517,-0.185191556811333,-0.982533097267151,0.0182387176901102,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.000476566841825843,-0.999766767024994,0.0215892791748047,0.256227433681488,-0.958962798118591,-0.12139917165041,0.44307205080986,-0.882459819316864,-0.157961055636406,0.185997292399406,-0.982483208179474,-0.0114728920161724,0.135786861181259,-0.985840201377869,-0.0983916670084,0.317339152097702,-0.899321377277374,-0.300860226154327,0.195589005947113,-0.963940680027008,-0.180452942848206,0.353421717882156,-0.826284766197205,-0.438573241233826,0.558647692203522,-0.687967240810394,-0.463264107704163,0.37223282456398,-0.738109529018402,-0.562704980373383,\r\n0.317339152097702,-0.899321377277374,-0.300860226154327,0.353421717882156,-0.826284766197205,-0.438573241233826,0.311445504426956,-0.780799031257629,-0.541622042655945,0.593249201774597,-0.720966875553131,-0.358136862516403,0.602038145065308,-0.687158584594727,-0.40664866566658,0.639754891395569,-0.717177748680115,-0.276350378990173,0.37223282456398,-0.738109529018402,-0.562704980373383,0.558647692203522,-0.687967240810394,-0.463264107704163,0.602038145065308,-0.687158584594727,-0.40664866566658,0.44307205080986,-0.882459819316864,-0.157961055636406,0.787183046340942,-0.589440822601318,-0.181389316916466,0.476559072732925,-0.876515626907349,-0.0679090917110443,-0.169772952795029,-0.976947546005249,-0.129423812031746,0.0495869107544422,-0.998399972915649,0.0271767526865005,-0.134318009018898,-0.988624393939972,-0.0676784887909889,0.0495869107544422,-0.998399972915649,0.0271767526865005,0.149158820509911,-0.970673203468323,0.188534155488014,0.215186566114426,-0.952173352241516,0.216934636235237,0.215186566114426,-0.952173352241516,0.216934636235237,0.217045292258263,-0.903323292732239,0.36999773979187,0.469941169023514,-0.815891683101654,0.336862057447433,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.185191556811333,-0.982533097267151,0.0182387176901102,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.549823641777039,-0.718385517597198,-0.426164299249649,-0.30286779999733,-0.91792768239975,-0.256280481815338,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.549823641777039,-0.718385517597198,-0.426164299249649,\r\n-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.431036978960037,-0.82799357175827,-0.358655244112015,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.000476566841825843,-0.999766767024994,0.0215892791748047,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.081295944750309,-0.9940544962883,0.0724327936768532,-0.081295944750309,-0.9940544962883,0.0724327936768532,-0.116527996957302,-0.980892300605774,0.155792877078056,0.019340893253684,-0.999812543392181,0.000700145377777517,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.185191556811333,-0.982533097267151,0.0182387176901102,0.273695230484009,-0.885812759399414,-0.37473526597023,0.195589005947113,-0.963940680027008,-0.180452942848206,0.317339152097702,-0.899321377277374,-0.300860226154327,0.311445504426956,-0.780799031257629,-0.541622042655945,0.353421717882156,-0.826284766197205,-0.438573241233826,0.37223282456398,-0.738109529018402,-0.562704980373383,0.273695230484009,-0.885812759399414,-0.37473526597023,0.317339152097702,-0.899321377277374,-0.300860226154327,0.311445504426956,-0.780799031257629,-0.541622042655945,0.593249201774597,-0.720966875553131,-0.358136862516403,0.37223282456398,-0.738109529018402,-0.562704980373383,0.602038145065308,-0.687158584594727,-0.40664866566658,0.0189902670681477,-0.999818980693817,0.00110918597783893,-0.134318009018898,-0.988624393939972,-0.0676784887909889,0.0495869107544422,-0.998399972915649,0.0271767526865005,-0.169772952795029,-0.976947546005249,-0.129423812031746,-0.134318009018898,-0.988624393939972,-0.0676784887909889,-0.396453648805618,-0.885535478591919,-0.242180213332176,0.0495869107544422,-0.998399972915649,0.0271767526865005,0.215186566114426,-0.952173352241516,0.216934636235237,0.299316495656967,-0.954096674919128,0.0104445954784751,0.215186566114426,-0.952173352241516,0.216934636235237,0.469941169023514,-0.815891683101654,0.336862057447433,\r\n0.299316495656967,-0.954096674919128,0.0104445954784751,-0.305969268083572,-0.946202039718628,-0.105282485485077,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.432275027036667,-0.858059108257294,-0.277259528636932,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.549823641777039,-0.718385517597198,-0.426164299249649,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.549823641777039,-0.718385517597198,-0.426164299249649,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.55541718006134,-0.727104842662811,-0.403522163629532,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.081295944750309,-0.9940544962883,0.0724327936768532,-0.081295944750309,-0.9940544962883,0.0724327936768532,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.251435548067093,-0.96356600522995,0.091217115521431,0.0189902670681477,-0.999818980693817,0.00110918597783893,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.134318009018898,-0.988624393939972,-0.0676784887909889,0.0495869107544422,-0.998399972915649,0.0271767526865005,0.299316495656967,-0.954096674919128,0.0104445954784751,0.0189902670681477,-0.999818980693817,0.00110918597783893,\r\n-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.134318009018898,-0.988624393939972,-0.0676784887909889,0.114452183246613,-0.978702902793884,-0.170414760708809,0.299316495656967,-0.954096674919128,0.0104445954784751,0.469941169023514,-0.815891683101654,0.336862057447433,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.528153479099274,-0.818183183670044,-0.227222323417664,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.485045790672302,-0.803629338741302,-0.344833761453629,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.251435548067093,-0.96356600522995,0.091217115521431,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.116527996957302,-0.980892300605774,0.155792877078056,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.124276474118233,-0.992247521877289,0.000360319158062339,\r\n-0.192101359367371,-0.981069922447205,-0.0244692545384169,0.0189902670681477,-0.999818980693817,0.00110918597783893,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.134318009018898,-0.988624393939972,-0.0676784887909889,-0.103571563959122,-0.990683674812317,-0.0884237587451935,0.0189902670681477,-0.999818980693817,0.00110918597783893,0.299316495656967,-0.954096674919128,0.0104445954784751,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.396453648805618,-0.885535478591919,-0.242180213332176,-0.103571563959122,-0.990683674812317,-0.0884237587451935,0.299316495656967,-0.954096674919128,0.0104445954784751,0.114452183246613,-0.978702902793884,-0.170414760708809,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.50208854675293,-0.864154458045959,-0.0338230207562447,-0.641942322254181,-0.676494956016541,-0.360921710729599,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.627071142196655,-0.613172173500061,-0.48041820526123,-0.64163076877594,-0.611781299114227,-0.462637484073639,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.660858511924744,-0.664384603500366,-0.349083006381989,\r\n-0.673972606658936,-0.593026638031006,-0.440545260906219,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.325855672359467,-0.917914211750031,0.226387873291969,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.124276474118233,-0.992247521877289,0.000360319158062339,0.0189902670681477,-0.999818980693817,0.00110918597783893,-0.103571563959122,-0.990683674812317,-0.0884237587451935,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.384638786315918,-0.916700422763824,-0.10822781920433,-0.103571563959122,-0.990683674812317,-0.0884237587451935,0.114452183246613,-0.978702902793884,-0.170414760708809,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.663721561431885,-0.718635857105255,-0.20745162665844,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.563574731349945,-0.773372530937195,-0.290307193994522,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.696264863014221,-0.651738345623016,-0.300752699375153,\r\n-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.636269629001617,-0.664388597011566,-0.392107874155045,-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.583659112453461,-0.801514744758606,0.13006167113781,-0.36477854847908,-0.840851664543152,0.399881154298782,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.531963109970093,-0.679120659828186,0.505776882171631,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.192101359367371,-0.981069922447205,-0.0244692545384169,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.103571563959122,-0.990683674812317,-0.0884237587451935,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.351402044296265,-0.926632702350616,-0.133672222495079,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.103571563959122,-0.990683674812317,-0.0884237587451935,\r\n-0.384638786315918,-0.916700422763824,-0.10822781920433,-0.697792887687683,-0.713211715221405,-0.0664384886622429,-0.724077165126801,-0.623618960380554,-0.29463791847229,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.635008573532104,-0.605691194534302,-0.479481071233749,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.60878598690033,-0.648826479911804,-0.456512629985809,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.660858511924744,-0.664384603500366,-0.349083006381989,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.531963109970093,-0.679120659828186,0.505776882171631,\r\n-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.204921826720238,-0.969278931617737,0.136034071445465,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.384638786315918,-0.916700422763824,-0.10822781920433,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.674798011779785,-0.725177764892578,-0.136984199285507,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.565365076065063,-0.806019425392151,-0.175199463963509,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.696264863014221,-0.651738345623016,-0.300752699375153,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.692322194576263,-0.617709279060364,-0.372994869947433,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.692322194576263,-0.617709279060364,-0.372994869947433,\r\n-0.643431961536407,-0.631065130233765,-0.433303475379944,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.571750044822693,-0.700590968132019,-0.426935732364655,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.492192298173904,-0.810448169708252,-0.317679673433304,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.667230725288391,-0.736421167850494,0.111745290458202,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.558633208274841,-0.671957194805145,0.486212372779846,-0.586687326431274,-0.738007724285126,0.333380520343781,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.322700500488281,-0.946500480175018,0.00104723311960697,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.124276474118233,-0.992247521877289,0.000360319158062339,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.426484495401382,-0.899716019630432,0.0928544402122498,\r\n-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.403789579868317,-0.913510203361511,-0.0495270937681198,-0.204921826720238,-0.969278931617737,0.136034071445465,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.251072436571121,-0.967959403991699,-0.00415213545784354,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.72419935464859,-0.636834442615509,-0.264531791210175,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.577450096607208,-0.740226566791534,-0.344406485557556,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.492713153362274,-0.773737728595734,-0.398200333118439,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.392803847789764,-0.863833069801331,-0.315432131290436,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.464824199676514,-0.872459530830383,-0.150839865207672,-0.241642966866493,-0.960524201393127,-0.137846931815147,\r\n-0.304795503616333,-0.937436282634735,0.168263897299767,-0.493067234754562,-0.821241676807404,0.287135452032089,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.313101559877396,-0.949105083942413,0.0341589115560055,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.462634056806564,-0.885851442813873,0.0351685993373394,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.093847818672657,-0.991515755653381,0.0899385288357735,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.345268726348877,-0.924455165863037,0.161777660250664,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.196556061506271,-0.979094326496124,0.0523442402482033,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.204921826720238,-0.969278931617737,0.136034071445465,0.0378010496497154,-0.987363636493683,0.15389621257782,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.304795503616333,-0.937436282634735,0.168263897299767,-0.486000716686249,-0.872227549552917,0.0549761429429054,-0.626456558704376,-0.777114450931549,-0.0603748336434364,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.714209258556366,-0.68284684419632,-0.153704643249512,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.72419935464859,-0.636834442615509,-0.264531791210175,\r\n-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.616561651229858,-0.735002458095551,-0.282175272703171,-0.480593472719193,-0.809147953987122,-0.338096469640732,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.391314804553986,-0.864058911800385,-0.316661983728409,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.241642966866493,-0.960524201393127,-0.137846931815147,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.223468393087387,-0.974461078643799,0.0220750328153372,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.511722266674042,-0.854977667331696,0.0845777243375778,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.540776431560516,-0.841141164302826,0.00649940175935626,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.093847818672657,-0.991515755653381,0.0899385288357735,-0.218654334545136,-0.966441214084625,0.134839072823524,-0.196556061506271,-0.979094326496124,0.0523442402482033,0.0524392686784267,-0.995820879936218,0.0747719332575798,-0.093847818672657,-0.991515755653381,0.0899385288357735,-0.0974145829677582,-0.992436170578003,0.0747046023607254,-0.345268726348877,-0.924455165863037,0.161777660250664,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.218654334545136,-0.966441214084625,0.134839072823524,\r\n-0.345268726348877,-0.924455165863037,0.161777660250664,-0.196556061506271,-0.979094326496124,0.0523442402482033,0.0524392686784267,-0.995820879936218,0.0747719332575798,-0.0974145829677582,-0.992436170578003,0.0747046023607254,0.0378010496497154,-0.987363636493683,0.15389621257782,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.113877020776272,-0.989497363567352,-0.0890327095985413,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.072522446513176,-0.993714392185211,-0.0852762386202812,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.241909101605415,-0.94611668586731,-0.215274453163147,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.426484495401382,-0.899716019630432,0.0928544402122498,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.648312449455261,-0.759399712085724,0.054798673838377,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.218654334545136,-0.966441214084625,0.134839072823524,-0.093847818672657,-0.991515755653381,0.0899385288357735,\r\n-0.222222238779068,-0.95393979549408,0.201534122228622,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.345268726348877,-0.924455165863037,0.161777660250664,-0.218654334545136,-0.966441214084625,0.134839072823524,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.345268726348877,-0.924455165863037,0.161777660250664,0.192912727594376,-0.980905950069427,0.02465845271945,0.0524392686784267,-0.995820879936218,0.0747719332575798,0.0378010496497154,-0.987363636493683,0.15389621257782,-0.699810028076172,-0.714118719100952,0.0173262692987919,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.716101467609406,-0.697365045547485,-0.0296735074371099,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.705407202243805,-0.697682619094849,-0.125058010220528,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.607043862342834,-0.771687984466553,-0.189724057912827,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.113877020776272,-0.989497363567352,-0.0890327095985413,-0.368941426277161,-0.915048658847809,-0.162997037172318,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,-0.113877020776272,-0.989497363567352,-0.0890327095985413,-0.072522446513176,-0.993714392185211,-0.0852762386202812,-0.337904512882233,-0.917655110359192,-0.209116235375404,-0.00875756144523621,-0.998479187488556,-0.0544271357357502,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.072522446513176,-0.993714392185211,-0.0852762386202812,-0.183408439159393,-0.968779742717743,-0.166814357042313,-0.00875756144523621,-0.998479187488556,-0.0544271357357502,\r\n-0.0824144035577774,-0.995026290416718,-0.055950190871954,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.64159482717514,-0.755843937397003,0.130598619580269,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.218654334545136,-0.966441214084625,0.134839072823524,-0.222222238779068,-0.95393979549408,0.201534122228622,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.523307621479034,-0.829010307788849,0.197207719087601,-0.345268726348877,-0.924455165863037,0.161777660250664,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.629973113536835,-0.775570392608643,0.0403026044368744,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.0185172855854034,-0.999067068099976,-0.0390099510550499,-0.113877020776272,-0.989497363567352,-0.0890327095985413,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,-0.113877020776272,-0.989497363567352,-0.0890327095985413,0.0185172855854034,-0.999067068099976,-0.0390099510550499,-0.072522446513176,-0.993714392185211,-0.0852762386202812,-0.072522446513176,-0.993714392185211,-0.0852762386202812,0.0185172855854034,-0.999067068099976,-0.0390099510550499,\r\n-0.00875756144523621,-0.998479187488556,-0.0544271357357502,-0.641249120235443,-0.748390197753906,0.169444635510445,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.606785178184509,-0.711790561676025,0.353787779808044,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.58426433801651,-0.81142246723175,-0.0151200825348496,-0.362342834472656,-0.932024836540222,0.00608741026371717,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.50713574886322,-0.858430862426758,-0.0768749117851257,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,-0.307270854711533,-0.946566581726074,-0.0979603752493858,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,0.00972930714488029,-0.999701678752899,-0.0224021300673485,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.0185172855854034,-0.999067068099976,-0.0390099510550499,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.0230424217879772,-0.999233961105347,-0.0316292084753513,-0.610131919384003,-0.7618488073349,0.217544138431549,-0.652828216552734,-0.708751857280731,0.267368584871292,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.551538825035095,-0.778482735157013,0.299615651369095,-0.606785178184509,-0.711790561676025,0.353787779808044,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.606785178184509,-0.711790561676025,0.353787779808044,-0.426759719848633,-0.861941397190094,0.273739010095596,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.362342834472656,-0.932024836540222,0.00608741026371717,\r\n-0.0616685897111893,-0.997940480709076,-0.0176566485315561,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.307181745767593,-0.951514780521393,-0.0160908661782742,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,-0.216505989432335,-0.975568175315857,-0.0373073369264603,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,0.00972930714488029,-0.999701678752899,-0.0224021300673485,-0.0552780441939831,-0.997909605503082,-0.0334765017032623,-0.0616685897111893,-0.997940480709076,-0.0176566485315561,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.00972930714488029,-0.999701678752899,-0.0224021300673485,0.0255984906107187,-0.999369502067566,-0.0245997663587332,0.0230424217879772,-0.999233961105347,-0.0316292084753513,-0.0572371669113636,-0.997011661529541,-0.0518781952559948,0.0255984906107187,-0.999369502067566,-0.0245997663587332,-0.635447859764099,-0.703979194164276,0.317205399274826,-0.606785178184509,-0.711790561676025,0.353787779808044,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.545527637004852,-0.743736326694489,0.38633605837822,-0.569900572299957,-0.717265009880066,0.400929003953934,-0.606785178184509,-0.711790561676025,0.353787779808044,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0255984906107187,-0.999369502067566,-0.0245997663587332,0.00972930714488029,-0.999701678752899,-0.0224021300673485,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0230424217879772,-0.999233961105347,-0.0316292084753513,0.0255984906107187,-0.999369502067566,-0.0245997663587332,0.0261679049581289,-0.999509692192078,-0.0171922780573368,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0255984906107187,-0.999369502067566,-0.0245997663587332,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0274897534400225,-0.999215960502625,-0.0284908711910248,0.0190547332167625,-0.999635636806488,-0.0191160626709461,0.0175724159926176,-0.999753594398499,-0.0135580748319626,\r\n0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.026348888874054,-0.999297618865967,-0.0266437008976936,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0224652830511332,-0.999542534351349,-0.0202482175081968,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.0224652830511332,-0.999542534351349,-0.0202482175081968,0.0175724159926176,-0.999753594398499,-0.0135580748319626,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.0224652830511332,-0.999542534351349,-0.0202482175081968,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.0323852449655533,-0.999334335327148,-0.0167939905077219,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.020591739565134,-0.999780356884003,-0.00389362848363817,0.0224652830511332,-0.999542534351349,-0.0202482175081968,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0273404065519571,-0.9994797706604,0.017105370759964,0.0307195540517569,-0.999508202075958,0.00628531211987138,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.0243775714188814,-0.99956738948822,-0.0164532363414764,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.020983574911952,-0.999685645103455,-0.0137183982878923,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0307195540517569,-0.999508202075958,0.00628531211987138,\r\n0.0273404065519571,-0.9994797706604,0.017105370759964,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0227305050939322,-0.999718189239502,-0.0068416828289628,0.0307195540517569,-0.999508202075958,0.00628531211987138,0.0307195540517569,-0.999508202075958,0.00628531211987138,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.021568400785327,-0.999623477458954,-0.0169592443853617,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0307195540517569,-0.999508202075958,0.00628531211987138,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0327508039772511,-0.998833775520325,0.0354705192148685,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0292164403945208,-0.999473989009857,-0.0140729574486613,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0599545240402222,-0.998040795326233,-0.0178876724094152,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0315686836838722,-0.999476671218872,0.0070482213050127,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.0632090866565704,-0.996572375297546,0.0533675998449326,\r\n0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0310562159866095,-0.998759090900421,0.0389319695532322,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.0599545240402222,-0.998040795326233,-0.0178876724094152,0.0599545240402222,-0.998040795326233,-0.0178876724094152,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.0337596498429775,-0.999106764793396,-0.0254137851297855,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0337596498429775,-0.999106764793396,-0.0254137851297855,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.0438755191862583,-0.999009907245636,-0.00735670514404774,0.0501299612224102,-0.996169030666351,0.0716536045074463,0.087553009390831,-0.993955254554749,0.066236712038517,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.249012619256973,-0.968241691589355,0.0223752073943615,0.0599545240402222,-0.998040795326233,-0.0178876724094152,-0.0131052285432816,-0.990273654460907,-0.138514399528503,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.0599545240402222,-0.998040795326233,-0.0178876724094152,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.0502747520804405,-0.997401118278503,-0.0516085736453533,0.0108351120725274,-0.99961519241333,-0.0255351327359676,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.220773592591286,-0.970116674900055,0.100660473108292,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.087553009390831,-0.993955254554749,0.066236712038517,0.0501299612224102,-0.996169030666351,0.0716536045074463,\r\n0.167423233389854,-0.981696128845215,0.0907855480909348,0.258215606212616,-0.96127861738205,0.0962705463171005,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.087553009390831,-0.993955254554749,0.066236712038517,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.127549469470978,-0.990575194358826,0.049917958676815,0.0525699369609356,-0.998450934886932,0.0182238388806582,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.220773592591286,-0.970116674900055,0.100660473108292,0.249012619256973,-0.968241691589355,0.0223752073943615,0.0917432755231857,-0.99572229385376,0.0109622851014137,0.220773592591286,-0.970116674900055,0.100660473108292,0.0599545240402222,-0.998040795326233,-0.0178876724094152,0.249012619256973,-0.968241691589355,0.0223752073943615,-0.0131052285432816,-0.990273654460907,-0.138514399528503,-0.0131052285432816,-0.990273654460907,-0.138514399528503,-0.231822714209557,-0.959304988384247,-0.161220848560333,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,-0.0126381488516927,-0.999759674072266,0.0179114546626806,0.0502747520804405,-0.997401118278503,-0.0516085736453533,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,0.301677137613297,-0.942814886569977,0.14174222946167,0.087553009390831,-0.993955254554749,0.066236712038517,0.167423233389854,-0.981696128845215,0.0907855480909348,0.0632090866565704,-0.996572375297546,0.0533675998449326,0.258215606212616,-0.96127861738205,0.0962705463171005,0.127549469470978,-0.990575194358826,0.049917958676815,0.258215606212616,-0.96127861738205,0.0962705463171005,0.087553009390831,-0.993955254554749,0.066236712038517,0.301677137613297,-0.942814886569977,0.14174222946167,0.301856905221939,-0.952143847942352,0.0480047613382339,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.127549469470978,-0.990575194358826,0.049917958676815,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.218933299183846,-0.969606101512909,0.109234221279621,0.220773592591286,-0.970116674900055,0.100660473108292,\r\n0.249012619256973,-0.968241691589355,0.0223752073943615,0.220773592591286,-0.970116674900055,0.100660473108292,0.421470403671265,-0.906799554824829,0.00878175068646669,0.249012619256973,-0.968241691589355,0.0223752073943615,0.421470403671265,-0.906799554824829,0.00878175068646669,-0.0131052285432816,-0.990273654460907,-0.138514399528503,-0.0131052285432816,-0.990273654460907,-0.138514399528503,0.421470403671265,-0.906799554824829,0.00878175068646669,-0.231822714209557,-0.959304988384247,-0.161220848560333,-0.0819445475935936,-0.994477152824402,0.0655742138624191,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,-0.231822714209557,-0.959304988384247,-0.161220848560333,-0.0126381488516927,-0.999759674072266,0.0179114546626806,-0.0532150417566299,-0.998549699783325,-0.00816325005143881,-0.0819445475935936,-0.994477152824402,0.0655742138624191,0.414100766181946,-0.899486899375916,0.139440923929214,0.301677137613297,-0.942814886569977,0.14174222946167,0.167423233389854,-0.981696128845215,0.0907855480909348,0.258215606212616,-0.96127861738205,0.0962705463171005,0.47153103351593,-0.876305758953094,0.0987247079610825,0.127549469470978,-0.990575194358826,0.049917958676815,0.301677137613297,-0.942814886569977,0.14174222946167,0.582094252109528,-0.784447371959686,0.214028984308243,0.258215606212616,-0.96127861738205,0.0962705463171005,0.301856905221939,-0.952143847942352,0.0480047613382339,0.218933299183846,-0.969606101512909,0.109234221279621,0.0365664139389992,-0.998941004276276,0.0279214754700661,0.301856905221939,-0.952143847942352,0.0480047613382339,0.127549469470978,-0.990575194358826,0.049917958676815,0.47153103351593,-0.876305758953094,0.0987247079610825,0.218933299183846,-0.969606101512909,0.109234221279621,0.567440807819366,-0.783017158508301,0.254744797945023,0.220773592591286,-0.970116674900055,0.100660473108292,0.421470403671265,-0.906799554824829,0.00878175068646669,0.220773592591286,-0.970116674900055,0.100660473108292,0.567440807819366,-0.783017158508301,0.254744797945023,0.414100766181946,-0.899486899375916,0.139440923929214,\r\n0.565199255943298,-0.79681932926178,0.213608235120773,0.301677137613297,-0.942814886569977,0.14174222946167,0.414100766181946,-0.899486899375916,0.139440923929214,0.167423233389854,-0.981696128845215,0.0907855480909348,0.414391607046127,-0.899359583854675,0.139397814869881,0.258215606212616,-0.96127861738205,0.0962705463171005,0.530578553676605,-0.832911789417267,0.157302632927895,0.47153103351593,-0.876305758953094,0.0987247079610825,0.582094252109528,-0.784447371959686,0.214028984308243,0.301677137613297,-0.942814886569977,0.14174222946167,0.565199255943298,-0.79681932926178,0.213608235120773,0.582094252109528,-0.784447371959686,0.214028984308243,0.530578553676605,-0.832911789417267,0.157302632927895,0.258215606212616,-0.96127861738205,0.0962705463171005,0.301856905221939,-0.952143847942352,0.0480047613382339,0.548267722129822,-0.819021761417389,0.169132187962532,0.218933299183846,-0.969606101512909,0.109234221279621,0.301856905221939,-0.952143847942352,0.0480047613382339,0.47153103351593,-0.876305758953094,0.0987247079610825,0.665039002895355,-0.735815584659576,0.12766495347023,0.567440807819366,-0.783017158508301,0.254744797945023,0.218933299183846,-0.969606101512909,0.109234221279621,0.548267722129822,-0.819021761417389,0.169132187962532,0.421470403671265,-0.906799554824829,0.00878175068646669,0.567440807819366,-0.783017158508301,0.254744797945023,0.706536650657654,-0.605450749397278,0.366381227970123,0.630413293838501,-0.75530081987381,0.179163634777069,0.565199255943298,-0.79681932926178,0.213608235120773,0.414100766181946,-0.899486899375916,0.139440923929214,0.414391607046127,-0.899359583854675,0.139397814869881,0.630413293838501,-0.75530081987381,0.179163634777069,0.414100766181946,-0.899486899375916,0.139440923929214,0.681600451469421,-0.710913777351379,0.173269465565681,0.47153103351593,-0.876305758953094,0.0987247079610825,0.530578553676605,-0.832911789417267,0.157302632927895,0.582094252109528,-0.784447371959686,0.214028984308243,0.565199255943298,-0.79681932926178,0.213608235120773,0.649501144886017,-0.725326538085938,0.228143289685249,\r\n0.530578553676605,-0.832911789417267,0.157302632927895,0.582094252109528,-0.784447371959686,0.214028984308243,0.681600451469421,-0.710913777351379,0.173269465565681,0.665039002895355,-0.735815584659576,0.12766495347023,0.548267722129822,-0.819021761417389,0.169132187962532,0.301856905221939,-0.952143847942352,0.0480047613382339,0.681600451469421,-0.710913777351379,0.173269465565681,0.665039002895355,-0.735815584659576,0.12766495347023,0.47153103351593,-0.876305758953094,0.0987247079610825,0.567440807819366,-0.783017158508301,0.254744797945023,0.548267722129822,-0.819021761417389,0.169132187962532,0.698159456253052,-0.675448775291443,0.237365037202835,0.698159456253052,-0.675448775291443,0.237365037202835,0.706536650657654,-0.605450749397278,0.366381227970123,0.567440807819366,-0.783017158508301,0.254744797945023,0.630413293838501,-0.75530081987381,0.179163634777069,0.649501144886017,-0.725326538085938,0.228143289685249,0.565199255943298,-0.79681932926178,0.213608235120773,0.649501144886017,-0.725326538085938,0.228143289685249,0.533649146556854,-0.816048324108124,0.221998944878578,0.582094252109528,-0.784447371959686,0.214028984308243,0.603404641151428,-0.775742650032043,0.184732258319855,0.681600451469421,-0.710913777351379,0.173269465565681,0.582094252109528,-0.784447371959686,0.214028984308243,0.698159456253052,-0.675448775291443,0.237365037202835,0.548267722129822,-0.819021761417389,0.169132187962532,0.665039002895355,-0.735815584659576,0.12766495347023,0.681600451469421,-0.710913777351379,0.173269465565681,0.68191534280777,-0.715709865093231,0.150833398103714,0.665039002895355,-0.735815584659576,0.12766495347023,0.698159456253052,-0.675448775291443,0.237365037202835,0.579351782798767,-0.760978400707245,0.291998654603958,0.706536650657654,-0.605450749397278,0.366381227970123,0.630413293838501,-0.75530081987381,0.179163634777069,0.631890177726746,-0.759713053703308,0.153462544083595,0.649501144886017,-0.725326538085938,0.228143289685249,0.48196804523468,-0.859102249145508,0.172191619873047,0.533649146556854,-0.816048324108124,0.221998944878578,\r\n0.649501144886017,-0.725326538085938,0.228143289685249,0.603404641151428,-0.775742650032043,0.184732258319855,0.582094252109528,-0.784447371959686,0.214028984308243,0.533649146556854,-0.816048324108124,0.221998944878578,0.603404641151428,-0.775742650032043,0.184732258319855,0.68191534280777,-0.715709865093231,0.150833398103714,0.681600451469421,-0.710913777351379,0.173269465565681,0.68191534280777,-0.715709865093231,0.150833398103714,0.698159456253052,-0.675448775291443,0.237365037202835,0.665039002895355,-0.735815584659576,0.12766495347023,0.519602835178375,-0.8416628241539,0.147025287151337,0.579351782798767,-0.760978400707245,0.291998654603958,0.698159456253052,-0.675448775291443,0.237365037202835,0.706536650657654,-0.605450749397278,0.366381227970123,0.579351782798767,-0.760978400707245,0.291998654603958,0.521391808986664,-0.805715084075928,0.281022161245346,0.44904813170433,-0.89000391960144,-0.0790482684969902,0.631890177726746,-0.759713053703308,0.153462544083595,0.630413293838501,-0.75530081987381,0.179163634777069,0.48196804523468,-0.859102249145508,0.172191619873047,0.649501144886017,-0.725326538085938,0.228143289685249,0.631890177726746,-0.759713053703308,0.153462544083595,0.48196804523468,-0.859102249145508,0.172191619873047,0.279049932956696,-0.949527621269226,0.143277108669281,0.533649146556854,-0.816048324108124,0.221998944878578,0.603404641151428,-0.775742650032043,0.184732258319855,0.533649146556854,-0.816048324108124,0.221998944878578,0.30207633972168,-0.943366527557373,0.137147471308708,0.603404641151428,-0.775742650032043,0.184732258319855,0.45993384718895,-0.880685806274414,0.113372176885605,0.68191534280777,-0.715709865093231,0.150833398103714,0.68191534280777,-0.715709865093231,0.150833398103714,0.519602835178375,-0.8416628241539,0.147025287151337,0.698159456253052,-0.675448775291443,0.237365037202835,0.519602835178375,-0.8416628241539,0.147025287151337,0.276220619678497,-0.957542836666107,0.0825454071164131,0.579351782798767,-0.760978400707245,0.291998654603958,0.521391808986664,-0.805715084075928,0.281022161245346,\r\n0.579351782798767,-0.760978400707245,0.291998654603958,0.276220619678497,-0.957542836666107,0.0825454071164131,0.412430167198181,-0.905467689037323,0.100147232413292,0.631890177726746,-0.759713053703308,0.153462544083595,0.44904813170433,-0.89000391960144,-0.0790482684969902,0.412430167198181,-0.905467689037323,0.100147232413292,0.48196804523468,-0.859102249145508,0.172191619873047,0.631890177726746,-0.759713053703308,0.153462544083595,0.196298018097878,-0.976298034191132,0.0911543369293213,0.279049932956696,-0.949527621269226,0.143277108669281,0.48196804523468,-0.859102249145508,0.172191619873047,0.533649146556854,-0.816048324108124,0.221998944878578,0.279049932956696,-0.949527621269226,0.143277108669281,0.30207633972168,-0.943366527557373,0.137147471308708,0.30207633972168,-0.943366527557373,0.137147471308708,0.45993384718895,-0.880685806274414,0.113372176885605,0.603404641151428,-0.775742650032043,0.184732258319855,0.68191534280777,-0.715709865093231,0.150833398103714,0.45993384718895,-0.880685806274414,0.113372176885605,0.519602835178375,-0.8416628241539,0.147025287151337,0.276220619678497,-0.957542836666107,0.0825454071164131,0.519602835178375,-0.8416628241539,0.147025287151337,0.121892511844635,-0.99078494310379,0.0590531565248966,0.238688036799431,-0.970523595809937,0.0333454348146915,0.521391808986664,-0.805715084075928,0.281022161245346,0.276220619678497,-0.957542836666107,0.0825454071164131,0.44904813170433,-0.89000391960144,-0.0790482684969902,0.293226510286331,-0.956027090549469,0.00550037762150168,0.412430167198181,-0.905467689037323,0.100147232413292,0.412430167198181,-0.905467689037323,0.100147232413292,0.196298018097878,-0.976298034191132,0.0911543369293213,0.48196804523468,-0.859102249145508,0.172191619873047,0.196298018097878,-0.976298034191132,0.0911543369293213,0.0381021574139595,-0.998102486133575,0.0483692474663258,0.279049932956696,-0.949527621269226,0.143277108669281,0.30207633972168,-0.943366527557373,0.137147471308708,0.279049932956696,-0.949527621269226,0.143277108669281,0.0381021574139595,-0.998102486133575,0.0483692474663258,\r\n0.30207633972168,-0.943366527557373,0.137147471308708,0.121892511844635,-0.99078494310379,0.0590531565248966,0.45993384718895,-0.880685806274414,0.113372176885605,0.121892511844635,-0.99078494310379,0.0590531565248966,0.519602835178375,-0.8416628241539,0.147025287151337,0.45993384718895,-0.880685806274414,0.113372176885605,0.276220619678497,-0.957542836666107,0.0825454071164131,0.121892511844635,-0.99078494310379,0.0590531565248966,-0.0389143750071526,-0.998901963233948,0.0260867886245251,0.238688036799431,-0.970523595809937,0.0333454348146915,0.276220619678497,-0.957542836666107,0.0825454071164131,0.0988683179020882,-0.995098531246185,-0.00197190744802356,-0.0469929724931717,-0.992826819419861,-0.109938584268093,0.293226510286331,-0.956027090549469,0.00550037762150168,0.44904813170433,-0.89000391960144,-0.0790482684969902,0.0783976167440414,-0.996476054191589,0.0298204980790615,0.412430167198181,-0.905467689037323,0.100147232413292,0.293226510286331,-0.956027090549469,0.00550037762150168,0.196298018097878,-0.976298034191132,0.0911543369293213,0.412430167198181,-0.905467689037323,0.100147232413292,0.0783976167440414,-0.996476054191589,0.0298204980790615,0.0380854569375515,-0.997650802135468,0.0569412708282471,0.0381021574139595,-0.998102486133575,0.0483692474663258,0.196298018097878,-0.976298034191132,0.0911543369293213,0.0381021574139595,-0.998102486133575,0.0483692474663258,0.121892511844635,-0.99078494310379,0.0590531565248966,0.30207633972168,-0.943366527557373,0.137147471308708,-0.151195287704468,-0.987908780574799,0.0342950895428658,-0.0389143750071526,-0.998901963233948,0.0260867886245251,0.121892511844635,-0.99078494310379,0.0590531565248966,0.276220619678497,-0.957542836666107,0.0825454071164131,-0.0389143750071526,-0.998901963233948,0.0260867886245251,0.0988683179020882,-0.995098531246185,-0.00197190744802356,0.238688036799431,-0.970523595809937,0.0333454348146915,0.0988683179020882,-0.995098531246185,-0.00197190744802356,0.130908712744713,-0.991070210933685,-0.0253502409905195,0.0241366922855377,-0.999702274799347,0.00356373260729015,\r\n0.293226510286331,-0.956027090549469,0.00550037762150168,-0.0469929724931717,-0.992826819419861,-0.109938584268093,0.44904813170433,-0.89000391960144,-0.0790482684969902,-0.338940769433975,-0.935973405838013,-0.0952515080571175,-0.0469929724931717,-0.992826819419861,-0.109938584268093,0.0783976167440414,-0.996476054191589,0.0298204980790615,0.293226510286331,-0.956027090549469,0.00550037762150168,0.0241366922855377,-0.999702274799347,0.00356373260729015,0.196298018097878,-0.976298034191132,0.0911543369293213,0.0783976167440414,-0.996476054191589,0.0298204980790615,0.0380854569375515,-0.997650802135468,0.0569412708282471,0.0380854569375515,-0.997650802135468,0.0569412708282471,-0.0314143970608711,-0.999488651752472,0.00595629913732409,0.0381021574139595,-0.998102486133575,0.0483692474663258,0.0381021574139595,-0.998102486133575,0.0483692474663258,-0.24448749423027,-0.968359112739563,-0.0500639230012894,0.121892511844635,-0.99078494310379,0.0590531565248966,-0.151195287704468,-0.987908780574799,0.0342950895428658,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.0389143750071526,-0.998901963233948,0.0260867886245251,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.151195287704468,-0.987908780574799,0.0342950895428658,0.121892511844635,-0.99078494310379,0.0590531565248966,0.0988683179020882,-0.995098531246185,-0.00197190744802356,-0.0389143750071526,-0.998901963233948,0.0260867886245251,-0.188817545771599,-0.98199063539505,0.00650751776993275,0.130908712744713,-0.991070210933685,-0.0253502409905195,0.0988683179020882,-0.995098531246185,-0.00197190744802356,0.147735461592674,-0.988788068294525,-0.0217315461486578,0.0241366922855377,-0.999702274799347,0.00356373260729015,-0.0469929724931717,-0.992826819419861,-0.109938584268093,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.0469929724931717,-0.992826819419861,-0.109938584268093,-0.338940769433975,-0.935973405838013,-0.0952515080571175,0.0783976167440414,-0.996476054191589,0.0298204980790615,\r\n0.0241366922855377,-0.999702274799347,0.00356373260729015,-0.0287991873919964,-0.998278021812439,0.0511026494204998,0.0783976167440414,-0.996476054191589,0.0298204980790615,-0.00861648190766573,-0.999319911003113,0.0358488410711288,0.0380854569375515,-0.997650802135468,0.0569412708282471,0.0380854569375515,-0.997650802135468,0.0569412708282471,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.16991750895977,-0.981762588024139,-0.0852653905749321,0.0381021574139595,-0.998102486133575,0.0483692474663258,-0.24448749423027,-0.968359112739563,-0.0500639230012894,0.0381021574139595,-0.998102486133575,0.0483692474663258,-0.16991750895977,-0.981762588024139,-0.0852653905749321,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.151195287704468,-0.987908780574799,0.0342950895428658,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.0389143750071526,-0.998901963233948,0.0260867886245251,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.151195287704468,-0.987908780574799,0.0342950895428658,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.188817545771599,-0.98199063539505,0.00650751776993275,-0.0389143750071526,-0.998901963233948,0.0260867886245251,0.0396719351410866,-0.999189078807831,-0.00687075406312943,0.0988683179020882,-0.995098531246185,-0.00197190744802356,-0.188817545771599,-0.98199063539505,0.00650751776993275,0.145433604717255,-0.989260315895081,-0.0145936803892255,0.147735461592674,-0.988788068294525,-0.0217315461486578,0.0988683179020882,-0.995098531246185,-0.00197190744802356,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.0469929724931717,-0.992826819419861,-0.109938584268093,-0.0287991873919964,-0.998278021812439,0.0511026494204998,\r\n0.0241366922855377,-0.999702274799347,0.00356373260729015,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.0950371772050858,-0.955512583255768,0.279219418764114,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.338940769433975,-0.935973405838013,-0.0952515080571175,0.0783976167440414,-0.996476054191589,0.0298204980790615,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0235425364226103,-0.999710023403168,0.00504988571628928,0.0380854569375515,-0.997650802135468,0.0569412708282471,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.0993482768535614,-0.993716835975647,-0.0515435896813869,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.16991750895977,-0.981762588024139,-0.0852653905749321,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.16991750895977,-0.981762588024139,-0.0852653905749321,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.276225686073303,-0.960395038127899,0.036614291369915,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.188817545771599,-0.98199063539505,0.00650751776993275,0.145433604717255,-0.989260315895081,-0.0145936803892255,0.0988683179020882,-0.995098531246185,-0.00197190744802356,0.0396719351410866,-0.999189078807831,-0.00687075406312943,-0.256701976060867,-0.961503148078918,0.0980595126748085,\r\n0.0396719351410866,-0.999189078807831,-0.00687075406312943,-0.188817545771599,-0.98199063539505,0.00650751776993275,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.0723040774464607,-0.986517310142517,0.146818399429321,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.0950371772050858,-0.955512583255768,0.279219418764114,-0.0219102967530489,-0.999547898769379,0.0205893293023109,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.00861648190766573,-0.999319911003113,0.0358488410711288,0.000838913954794407,-0.999584019184113,0.0288259405642748,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.0993482768535614,-0.993716835975647,-0.0515435896813869,-0.0993482768535614,-0.993716835975647,-0.0515435896813869,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.0314143970608711,-0.999488651752472,0.00595629913732409,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.16991750895977,-0.981762588024139,-0.0852653905749321,-0.24448749423027,-0.968359112739563,-0.0500639230012894,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.63868123292923,-0.769460260868073,0.00412552012130618,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.465513914823532,-0.885037660598755,-0.00225600809790194,\r\n-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.69880074262619,-0.715315282344818,0.00118987692985684,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.392109423875809,-0.919916987419128,0.00166579335927963,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.256701976060867,-0.961503148078918,0.0980595126748085,-0.188817545771599,-0.98199063539505,0.00650751776993275,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.00536902947351336,-0.999359667301178,0.03537417948246,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0723040774464607,-0.986517310142517,0.146818399429321,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.139741867780685,-0.980940341949463,0.135011598467827,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.00536902947351336,-0.999359667301178,0.03537417948246,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.0949774086475372,-0.969039559364319,0.227906823158264,-0.0219102967530489,-0.999547898769379,0.0205893293023109,-0.0247255004942417,-0.999132454395294,0.033508375287056,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0219102967530489,-0.999547898769379,0.0205893293023109,-0.0287991873919964,-0.998278021812439,0.0511026494204998,0.00228894082829356,-0.998833417892456,0.0482330210506916,-0.00861648190766573,-0.999319911003113,0.0358488410711288,-0.0247255004942417,-0.999132454395294,0.033508375287056,0.000838913954794407,-0.999584019184113,0.0288259405642748,0.000838913954794407,-0.999584019184113,0.0288259405642748,0.0699213221669197,-0.988274455070496,-0.135736659169197,-0.0235425364226103,-0.999710023403168,0.00504988571628928,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.0235425364226103,-0.999710023403168,0.00504988571628928,0.0699213221669197,-0.988274455070496,-0.135736659169197,-0.207619547843933,-0.963688671588898,-0.167922928929329,\r\n-0.0993482768535614,-0.993716835975647,-0.0515435896813869,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.601714193820953,-0.733107388019562,-0.317007005214691,-0.63868123292923,-0.769460260868073,0.00412552012130618,-0.465513914823532,-0.885037660598755,-0.00225600809790194,-0.69880074262619,-0.715315282344818,0.00118987692985684,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.63868123292923,-0.769460260868073,0.00412552012130618,-0.723913848400116,-0.686296105384827,-0.0703304633498192,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.793657600879669,-0.604278147220612,-0.070393517613411,-0.69880074262619,-0.715315282344818,0.00118987692985684,-0.632106959819794,-0.763713300228119,-0.131082370877266,-0.601714193820953,-0.733107388019562,-0.317007005214691,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.825862050056458,-0.562438488006592,-0.0401829145848751,-0.256701976060867,-0.961503148078918,0.0980595126748085,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.624052226543427,-0.745389580726624,0.234420627355576,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0723040774464607,-0.986517310142517,0.146818399429321,-0.0348530486226082,-0.997027993202209,0.0687047466635704,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0949774086475372,-0.969039559364319,0.227906823158264,\r\n-0.07386564463377,-0.989459216594696,0.124556183815002,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.0287991873919964,-0.998278021812439,0.0511026494204998,-0.0949774086475372,-0.969039559364319,0.227906823158264,0.00287791038863361,-0.98587828874588,0.167438358068466,0.00228894082829356,-0.998833417892456,0.0482330210506916,-0.0247255004942417,-0.999132454395294,0.033508375287056,-0.0219102967530489,-0.999547898769379,0.0205893293023109,-0.0287991873919964,-0.998278021812439,0.0511026494204998,0.00287791038863361,-0.98587828874588,0.167438358068466,0.00228894082829356,-0.998833417892456,0.0482330210506916,0.000838913954794407,-0.999584019184113,0.0288259405642748,-0.0247255004942417,-0.999132454395294,0.033508375287056,0.0322862379252911,-0.995583534240723,0.088153138756752,0.000838913954794407,-0.999584019184113,0.0288259405642748,0.240269511938095,-0.962818384170532,-0.123495735228062,0.0699213221669197,-0.988274455070496,-0.135736659169197,-0.115738458931446,-0.977128803730011,-0.178392380475998,0.0699213221669197,-0.988274455070496,-0.135736659169197,-0.0113888056948781,-0.954031109809875,-0.299490958452225,-0.207619547843933,-0.963688671588898,-0.167922928929329,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.601714193820953,-0.733107388019562,-0.317007005214691,-0.467196434736252,-0.837293446063995,-0.284019470214844,-0.723913848400116,-0.686296105384827,-0.0703304633498192,-0.63868123292923,-0.769460260868073,0.00412552012130618,-0.69880074262619,-0.715315282344818,0.00118987692985684,-0.793657600879669,-0.604278147220612,-0.070393517613411,-0.597992837429047,-0.801419079303741,-0.0114816874265671,-0.723913848400116,-0.686296105384827,-0.0703304633498192,-0.825862050056458,-0.562438488006592,-0.0401829145848751,-0.742507934570313,-0.667572259902954,-0.0550357736647129,-0.793657600879669,-0.604278147220612,-0.070393517613411,-0.825862050056458,-0.562438488006592,-0.0401829145848751,\r\n-0.624052226543427,-0.745389580726624,0.234420627355576,-0.609063625335693,-0.793053150177002,-0.0103950351476669,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.0542549192905426,-0.993161499500275,0.103375740349293,0.00244860164821148,-0.998522341251373,0.0542862340807915,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.245746552944183,-0.941833317279816,0.22925665974617,-0.0723040774464607,-0.986517310142517,0.146818399429321,-0.131126075983047,-0.986843109130859,0.0945862010121346,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.07386564463377,-0.989459216594696,0.124556183815002,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.0949774086475372,-0.969039559364319,0.227906823158264,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.23674176633358,-0.723964095115662,0.647942245006561,0.00287791038863361,-0.98587828874588,0.167438358068466,-0.0949774086475372,-0.969039559364319,0.227906823158264,-0.00279740244150162,-0.914767920970917,0.403970003128052,-0.0247255004942417,-0.999132454395294,0.033508375287056,0.00228894082829356,-0.998833417892456,0.0482330210506916,-0.0107911955565214,-0.999857544898987,0.0129765942692757,0.0454252064228058,-0.993519723415375,0.10418626666069,0.00228894082829356,-0.998833417892456,0.0482330210506916,0.00287791038863361,-0.98587828874588,0.167438358068466,-0.0247255004942417,-0.999132454395294,0.033508375287056,-0.0139928311109543,-0.997585654258728,0.068020224571228,0.0322862379252911,-0.995583534240723,0.088153138756752,0.0322862379252911,-0.995583534240723,0.088153138756752,0.240269511938095,-0.962818384170532,-0.123495735228062,0.000838913954794407,-0.999584019184113,0.0288259405642748,-0.0113888056948781,-0.954031109809875,-0.299490958452225,0.0699213221669197,-0.988274455070496,-0.135736659169197,\r\n0.240269511938095,-0.962818384170532,-0.123495735228062,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.115738458931446,-0.977128803730011,-0.178392380475998,-0.0113888056948781,-0.954031109809875,-0.299490958452225,-0.601714193820953,-0.733107388019562,-0.317007005214691,-0.29424774646759,-0.891521275043488,-0.344395190477371,-0.0113888056948781,-0.954031109809875,-0.299490958452225,-0.825862050056458,-0.562438488006592,-0.0401829145848751,-0.740835309028625,-0.562863647937775,0.366534262895584,-0.624052226543427,-0.745389580726624,0.234420627355576,-0.0542549192905426,-0.993161499500275,0.103375740349293,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.0838482081890106,-0.99046790599823,0.109282478690147,-0.245746552944183,-0.941833317279816,0.22925665974617,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.0669759511947632,-0.988064467906952,0.138717994093895,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.131126075983047,-0.986843109130859,0.0945862010121346,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.36576721072197,-0.8657146692276,0.341690331697464,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.187488913536072,-0.955331683158875,0.228449463844299,-0.23674176633358,-0.723964095115662,0.647942245006561,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.00279740244150162,-0.914767920970917,0.403970003128052,-0.0949774086475372,-0.969039559364319,0.227906823158264,-0.23674176633358,-0.723964095115662,0.647942245006561,-0.00279740244150162,-0.914767920970917,0.403970003128052,0.108198501169682,-0.948828041553497,0.296678990125656,0.00287791038863361,-0.98587828874588,0.167438358068466,-0.0107911955565214,-0.999857544898987,0.0129765942692757,0.00228894082829356,-0.998833417892456,0.0482330210506916,0.0454252064228058,-0.993519723415375,0.10418626666069,\r\n-0.0139928311109543,-0.997585654258728,0.068020224571228,-0.0247255004942417,-0.999132454395294,0.033508375287056,-0.0107911955565214,-0.999857544898987,0.0129765942692757,0.0454252064228058,-0.993519723415375,0.10418626666069,0.00287791038863361,-0.98587828874588,0.167438358068466,0.108198501169682,-0.948828041553497,0.296678990125656,0.0322862379252911,-0.995583534240723,0.088153138756752,-0.0139928311109543,-0.997585654258728,0.068020224571228,0.0433109812438488,-0.991632759571075,0.121608048677444,0.288274735212326,-0.934873342514038,0.207145795226097,0.240269511938095,-0.962818384170532,-0.123495735228062,0.0322862379252911,-0.995583534240723,0.088153138756752,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.028345474973321,-0.998417794704437,0.0485625267028809,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.0669759511947632,-0.988064467906952,0.138717994093895,-0.0203301906585693,-0.994535505771637,0.102399788796902,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.25117689371109,-0.903538048267365,0.347172886133194,-0.444866180419922,-0.734166622161865,0.51292622089386,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.566608309745789,-0.488668888807297,0.663443744182587,-0.511537253856659,-0.228545039892197,0.828309535980225,-0.23674176633358,-0.723964095115662,0.647942245006561,-0.00279740244150162,-0.914767920970917,0.403970003128052,-0.23674176633358,-0.723964095115662,0.647942245006561,0.103692747652531,-0.588402509689331,0.801891624927521,-0.00279740244150162,-0.914767920970917,0.403970003128052,0.204961687326431,-0.736329734325409,0.644832611083984,0.108198501169682,-0.948828041553497,0.296678990125656,0.0454252064228058,-0.993519723415375,0.10418626666069,0.00503814732655883,-0.999637961387634,0.0264282468706369,-0.0107911955565214,-0.999857544898987,0.0129765942692757,-0.0139928311109543,-0.997585654258728,0.068020224571228,-0.0107911955565214,-0.999857544898987,0.0129765942692757,-0.0141362510621548,-0.999814867973328,0.0130485165864229,0.0454252064228058,-0.993519723415375,0.10418626666069,\r\n0.108198501169682,-0.948828041553497,0.296678990125656,0.0759395733475685,-0.980480074882507,0.181361094117165,-0.0139928311109543,-0.997585654258728,0.068020224571228,0.0100722704082727,-0.986918330192566,0.1609056442976,0.0433109812438488,-0.991632759571075,0.121608048677444,0.288274735212326,-0.934873342514038,0.207145795226097,0.0322862379252911,-0.995583534240723,0.088153138756752,0.0433109812438488,-0.991632759571075,0.121608048677444,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.0348530486226082,-0.997027993202209,0.0687047466635704,-0.0203301906585693,-0.994535505771637,0.102399788796902,-0.0201946627348661,-0.991750717163086,0.126580134034157,-0.0203301906585693,-0.994535505771637,0.102399788796902,-0.0669759511947632,-0.988064467906952,0.138717994093895,-0.23674176633358,-0.723964095115662,0.647942245006561,-0.511537253856659,-0.228545039892197,0.828309535980225,0.0204367060214281,-0.199286758899689,0.979728043079376,-0.23674176633358,-0.723964095115662,0.647942245006561,0.0204367060214281,-0.199286758899689,0.979728043079376,0.103692747652531,-0.588402509689331,0.801891624927521,0.204961687326431,-0.736329734325409,0.644832611083984,-0.00279740244150162,-0.914767920970917,0.403970003128052,0.103692747652531,-0.588402509689331,0.801891624927521,0.181428268551826,-0.87577223777771,0.447332799434662,0.108198501169682,-0.948828041553497,0.296678990125656,0.204961687326431,-0.736329734325409,0.644832611083984,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.0454252064228058,-0.993519723415375,0.10418626666069,0.0759395733475685,-0.980480074882507,0.181361094117165,-0.0107911955565214,-0.999857544898987,0.0129765942692757,0.00503814732655883,-0.999637961387634,0.0264282468706369,-0.0141362510621548,-0.999814867973328,0.0130485165864229,-0.0139928311109543,-0.997585654258728,0.068020224571228,-0.0141362510621548,-0.999814867973328,0.0130485165864229,-0.00979156699031591,-0.995563983917236,0.0935755148530006,0.181428268551826,-0.87577223777771,0.447332799434662,0.0759395733475685,-0.980480074882507,0.181361094117165,\r\n0.108198501169682,-0.948828041553497,0.296678990125656,-0.0139928311109543,-0.997585654258728,0.068020224571228,-0.00979156699031591,-0.995563983917236,0.0935755148530006,0.0100722704082727,-0.986918330192566,0.1609056442976,0.0100722704082727,-0.986918330192566,0.1609056442976,0.0558324605226517,-0.986178517341614,0.155995607376099,0.0433109812438488,-0.991632759571075,0.121608048677444,0.288274735212326,-0.934873342514038,0.207145795226097,0.0433109812438488,-0.991632759571075,0.121608048677444,0.0558324605226517,-0.986178517341614,0.155995607376099,-0.0224066842347384,-0.996970415115356,0.0744839310646057,-0.0100736701861024,-0.998942077159882,0.0448658689856529,-0.0203301906585693,-0.994535505771637,0.102399788796902,0.0651274919509888,-0.996976733207703,0.0423755496740341,-0.0203301906585693,-0.994535505771637,0.102399788796902,-0.0201946627348661,-0.991750717163086,0.126580134034157,0.0204367060214281,-0.199286758899689,0.979728043079376,0.33131530880928,-0.172719866037369,0.9275763630867,0.103692747652531,-0.588402509689331,0.801891624927521,0.204961687326431,-0.736329734325409,0.644832611083984,0.103692747652531,-0.588402509689331,0.801891624927521,0.33131530880928,-0.172719866037369,0.9275763630867,0.181428268551826,-0.87577223777771,0.447332799434662,0.204961687326431,-0.736329734325409,0.644832611083984,0.319517523050308,-0.53386390209198,0.782877862453461,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.0759395733475685,-0.980480074882507,0.181361094117165,0.0339107066392899,-0.992947816848755,0.113598689436913,-0.0141362510621548,-0.999814867973328,0.0130485165864229,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.00655972864478827,-0.999971807003021,0.00364732043817639,0.00778050348162651,-0.999713063240051,0.0226532947272062,-0.00979156699031591,-0.995563983917236,0.0935755148530006,-0.0141362510621548,-0.999814867973328,0.0130485165864229,0.181428268551826,-0.87577223777771,0.447332799434662,0.107965044677258,-0.935742616653442,0.335751801729202,0.0759395733475685,-0.980480074882507,0.181361094117165,\r\n-0.0409214496612549,-0.975447297096252,0.216397538781166,0.0100722704082727,-0.986918330192566,0.1609056442976,-0.00979156699031591,-0.995563983917236,0.0935755148530006,0.0558324605226517,-0.986178517341614,0.155995607376099,0.0100722704082727,-0.986918330192566,0.1609056442976,0.0445485077798367,-0.986564695835114,0.157179638743401,0.319517523050308,-0.53386390209198,0.782877862453461,0.204961687326431,-0.736329734325409,0.644832611083984,0.33131530880928,-0.172719866037369,0.9275763630867,0.319517523050308,-0.53386390209198,0.782877862453461,0.252474784851074,-0.664206862449646,0.703623116016388,0.181428268551826,-0.87577223777771,0.447332799434662,0.107965044677258,-0.935742616653442,0.335751801729202,0.0339107066392899,-0.992947816848755,0.113598689436913,0.0759395733475685,-0.980480074882507,0.181361094117165,0.0240944996476173,-0.998648107051849,0.046057790517807,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.0339107066392899,-0.992947816848755,0.113598689436913,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.00655972864478827,-0.999971807003021,0.00364732043817639,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.00778050348162651,-0.999713063240051,0.0226532947272062,-0.0141362510621548,-0.999814867973328,0.0130485165864229,0.00655972864478827,-0.999971807003021,0.00364732043817639,-0.00979156699031591,-0.995563983917236,0.0935755148530006,0.00778050348162651,-0.999713063240051,0.0226532947272062,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.181428268551826,-0.87577223777771,0.447332799434662,0.252474784851074,-0.664206862449646,0.703623116016388,0.107965044677258,-0.935742616653442,0.335751801729202,-0.0409214496612549,-0.975447297096252,0.216397538781166,0.010400109924376,-0.974038898944855,0.22614161670208,0.0100722704082727,-0.986918330192566,0.1609056442976,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.00979156699031591,-0.995563983917236,0.0935755148530006,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.0445485077798367,-0.986564695835114,0.157179638743401,\r\n0.0100722704082727,-0.986918330192566,0.1609056442976,0.010400109924376,-0.974038898944855,0.22614161670208,0.0339107066392899,-0.992947816848755,0.113598689436913,0.107965044677258,-0.935742616653442,0.335751801729202,0.0798556432127953,-0.978785812854767,0.188683301210403,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.00503814732655883,-0.999637961387634,0.0264282468706369,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0339107066392899,-0.992947816848755,0.113598689436913,0.0798556432127953,-0.978785812854767,0.188683301210403,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.00778050348162651,-0.999713063240051,0.0226532947272062,0.00655972864478827,-0.999971807003021,0.00364732043817639,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.00778050348162651,-0.999713063240051,0.0226532947272062,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.252474784851074,-0.664206862449646,0.703623116016388,0.190357357263565,-0.734283208847046,0.6516073346138,0.107965044677258,-0.935742616653442,0.335751801729202,0.010400109924376,-0.974038898944855,0.22614161670208,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0273285731673241,-0.961806774139404,0.272361427545547,-0.102364741265774,-0.978809237480164,0.177351638674736,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.107965044677258,-0.935742616653442,0.335751801729202,0.18120077252388,-0.85315728187561,0.489171624183655,0.0798556432127953,-0.978785812854767,0.188683301210403,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0798556432127953,-0.978785812854767,0.188683301210403,-0.0072314846329391,-0.998073041439056,0.0616266168653965,0.0114173144102097,-0.999882817268372,0.0101929744705558,\r\n0.026708671823144,-0.999061048030853,0.0341112427413464,0.107965044677258,-0.935742616653442,0.335751801729202,0.190357357263565,-0.734283208847046,0.6516073346138,0.18120077252388,-0.85315728187561,0.489171624183655,-0.0273285731673241,-0.961806774139404,0.272361427545547,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0679580345749855,-0.961276948451996,0.267073422670364,-0.102364741265774,-0.978809237480164,0.177351638674736,-0.0982141867280006,-0.96052211523056,0.26029047369957,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0072314846329391,-0.998073041439056,0.0616266168653965,-0.0128736384212971,-0.996168196201324,0.0865055248141289,-0.102364741265774,-0.978809237480164,0.177351638674736,0.18120077252388,-0.85315728187561,0.489171624183655,0.13426199555397,-0.948890447616577,0.285623013973236,0.0798556432127953,-0.978785812854767,0.188683301210403,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0240944996476173,-0.998648107051849,0.046057790517807,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0230838470160961,-0.999715864658356,0.0059421849437058,0.0798556432127953,-0.978785812854767,0.188683301210403,0.13426199555397,-0.948890447616577,0.285623013973236,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0114173144102097,-0.999882817268372,0.0101929744705558,0.0230838470160961,-0.999715864658356,0.0059421849437058,0.026708671823144,-0.999061048030853,0.0341112427413464,0.026708671823144,-0.999061048030853,0.0341112427413464,-0.0128736384212971,-0.996168196201324,0.0865055248141289,-0.0072314846329391,-0.998073041439056,0.0616266168653965,-0.0679580345749855,-0.961276948451996,0.267073422670364,-0.0409214496612549,-0.975447297096252,0.216397538781166,-0.0982141867280006,-0.96052211523056,0.26029047369957,-0.0982141867280006,-0.96052211523056,0.26029047369957,-0.102364741265774,-0.978809237480164,0.177351638674736,-0.185835391283035,-0.949786067008972,0.251736998558044,\r\n-0.102364741265774,-0.978809237480164,0.177351638674736,-0.0128736384212971,-0.996168196201324,0.0865055248141289,-0.147191807627678,-0.966743588447571,0.209144175052643,0.18120077252388,-0.85315728187561,0.489171624183655,0.218316376209259,-0.721683084964752,0.656895220279694,0.13426199555397,-0.948890447616577,0.285623013973236,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0448717251420021,-0.985016286373138,0.166521430015564,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.0230838470160961,-0.999715864658356,0.0059421849437058,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.13426199555397,-0.948890447616577,0.285623013973236,0.0448717251420021,-0.985016286373138,0.166521430015564,0.0614623017609119,-0.993601381778717,0.0947554036974907,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.026708671823144,-0.999061048030853,0.0341112427413464,0.0230838470160961,-0.999715864658356,0.0059421849437058,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.0128736384212971,-0.996168196201324,0.0865055248141289,0.026708671823144,-0.999061048030853,0.0341112427413464,-0.102364741265774,-0.978809237480164,0.177351638674736,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.185835391283035,-0.949786067008972,0.251736998558044,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.0128736384212971,-0.996168196201324,0.0865055248141289,0.218316376209259,-0.721683084964752,0.656895220279694,0.134191811084747,-0.844798266887665,0.517984867095947,0.13426199555397,-0.948890447616577,0.285623013973236,0.0193864852190018,-0.999429285526276,0.0276628211140633,0.0448717251420021,-0.985016286373138,0.166521430015564,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.0230838470160961,-0.999715864658356,0.0059421849437058,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.13426199555397,-0.948890447616577,0.285623013973236,\r\n0.134191811084747,-0.844798266887665,0.517984867095947,0.0448717251420021,-0.985016286373138,0.166521430015564,0.026708671823144,-0.999061048030853,0.0341112427413464,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.00983716826885939,-0.999161183834076,0.0397492498159409,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.0230838470160961,-0.999715864658356,0.0059421849437058,-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.0153352273628116,-0.9953972697258,0.0945995599031448,0.026708671823144,-0.999061048030853,0.0341112427413464,-0.185835391283035,-0.949786067008972,0.251736998558044,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.227739453315735,-0.932409226894379,0.280620157718658,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.149409949779511,-0.977563321590424,0.148480549454689,0.0167720522731543,-0.992017507553101,0.124979518353939,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.0448717251420021,-0.985016286373138,0.166521430015564,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.000716769252903759,-0.998404383659363,0.0564629621803761,0.134191811084747,-0.844798266887665,0.517984867095947,0.056921798735857,-0.922482848167419,0.381818234920502,0.0448717251420021,-0.985016286373138,0.166521430015564,0.0230286438018084,-0.999325275421143,0.0286100283265114,0.00983716826885939,-0.999161183834076,0.0397492498159409,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.026708671823144,-0.999061048030853,0.0341112427413464,0.00983716826885939,-0.999161183834076,0.0397492498159409,-0.0194712337106466,-0.998264729976654,0.0555718205869198,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.00549602089449763,-0.999946296215057,0.00877796951681376,-0.0194712337106466,-0.998264729976654,0.0555718205869198,\r\n-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.227739453315735,-0.932409226894379,0.280620157718658,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.218252614140511,-0.950841724872589,0.219694629311562,-0.0153352273628116,-0.9953972697258,0.0945995599031448,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.149409949779511,-0.977563321590424,0.148480549454689,-0.147191807627678,-0.966743588447571,0.209144175052643,-0.149409949779511,-0.977563321590424,0.148480549454689,-0.218252614140511,-0.950841724872589,0.219694629311562,0.000716769252903759,-0.998404383659363,0.0564629621803761,0.0205856319516897,-0.999318420886993,0.0306395180523396,0.0167720522731543,-0.992017507553101,0.124979518353939,0.0167720522731543,-0.992017507553101,0.124979518353939,0.0448717251420021,-0.985016286373138,0.166521430015564,0.056921798735857,-0.922482848167419,0.381818234920502,0.00985689461231232,-0.999950647354126,-0.00119050836656243,0.000716769252903759,-0.998404383659363,0.0564629621803761,0.00549602089449763,-0.999946296215057,0.00877796951681376,0.00983716826885939,-0.999161183834076,0.0397492498159409,0.0230286438018084,-0.999325275421143,0.0286100283265114,-0.00459290621802211,-0.999618351459503,0.0272391587495804,0.0230286438018084,-0.999325275421143,0.0286100283265114,0.0122165391221642,-0.999725878238678,0.0199721436947584,0.00549602089449763,-0.999946296215057,0.00877796951681376,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.0194712337106466,-0.998264729976654,0.0555718205869198,0.00983716826885939,-0.999161183834076,0.0397492498159409,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.149409949779511,-0.977563321590424,0.148480549454689,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.254037261009216,-0.958154320716858,0.131929248571396,-0.218252614140511,-0.950841724872589,0.219694629311562,\r\n-0.149409949779511,-0.977563321590424,0.148480549454689,-0.160936340689659,-0.979065001010895,0.124624088406563,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.16237960755825,-0.986423552036285,-0.024523077532649,-0.16237960755825,-0.986423552036285,-0.024523077532649,-0.414771229028702,-0.909308731555939,-0.0335014685988426,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.0781481042504311,-0.996165871620178,0.0393231026828289,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.112270824611187,-0.993194699287415,0.0309757106006145,0.0167720522731543,-0.992017507553101,0.124979518353939,0.0269863288849592,-0.968023240566254,0.249404564499855,0.000716769252903759,-0.998404383659363,0.0564629621803761,0.056921798735857,-0.922482848167419,0.381818234920502,0.0269863288849592,-0.968023240566254,0.249404564499855,0.0167720522731543,-0.992017507553101,0.124979518353939,-0.0710163861513138,-0.993943393230438,0.0838637501001358,0.00549602089449763,-0.999946296215057,0.00877796951681376,0.000716769252903759,-0.998404383659363,0.0564629621803761,-0.00274603092111647,-0.999795198440552,0.0200429614633322,-0.00459290621802211,-0.999618351459503,0.0272391587495804,0.0230286438018084,-0.999325275421143,0.0286100283265114,0.00983716826885939,-0.999161183834076,0.0397492498159409,-0.00459290621802211,-0.999618351459503,0.0272391587495804,-0.0233411528170109,-0.999477744102478,0.0223467312753201,0.00549602089449763,-0.999946296215057,0.00877796951681376,-0.00274603092111647,-0.999795198440552,0.0200429614633322,0.0230286438018084,-0.999325275421143,0.0286100283265114,-0.112270824611187,-0.993194699287415,0.0309757106006145,\r\n-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.0487371198832989,-0.99850994348526,0.0245472490787506,0.00983716826885939,-0.999161183834076,0.0397492498159409,-0.0233411528170109,-0.999477744102478,0.0223467312753201,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.0161404851824045,-0.997900485992432,0.0627214834094048,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.0692507028579712,-0.996698617935181,0.0423799268901348,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.254037261009216,-0.958154320716858,0.131929248571396,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.160936340689659,-0.979065001010895,0.124624088406563,-0.149409949779511,-0.977563321590424,0.148480549454689,-0.254037261009216,-0.958154320716858,0.131929248571396,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.0473774410784245,-0.998720109462738,0.0177029576152563,-0.370698302984238,-0.923178255558014,0.101610444486141,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.414771229028702,-0.909308731555939,-0.0335014685988426,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.0194712337106466,-0.998264729976654,0.0555718205869198,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.0692507028579712,-0.996698617935181,0.0423799268901348,0.0269863288849592,-0.968023240566254,0.249404564499855,-0.0467874854803085,-0.978813529014587,0.199336230754852,0.000716769252903759,-0.998404383659363,0.0564629621803761,-0.00274603092111647,-0.999795198440552,0.0200429614633322,0.00549602089449763,-0.999946296215057,0.00877796951681376,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.0710163861513138,-0.993943393230438,0.0838637501001358,\r\n0.000716769252903759,-0.998404383659363,0.0564629621803761,-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.00459290621802211,-0.999618351459503,0.0272391587495804,-0.00274603092111647,-0.999795198440552,0.0200429614633322,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.0233411528170109,-0.999477744102478,0.0223467312753201,-0.00459290621802211,-0.999618351459503,0.0272391587495804,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.0233411528170109,-0.999477744102478,0.0223467312753201,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.0233895946294069,-0.998195767402649,0.0553001128137112,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.0161404851824045,-0.997900485992432,0.0627214834094048,-0.0161404851824045,-0.997900485992432,0.0627214834094048,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.088620662689209,-0.99369215965271,0.0687165260314941,-0.254037261009216,-0.958154320716858,0.131929248571396,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.485684245824814,-0.853665888309479,0.188056409358978,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.370698302984238,-0.923178255558014,0.101610444486141,-0.112270824611187,-0.993194699287415,0.0309757106006145,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.180115565657616,-0.981284022331238,0.0681169703602791,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.00274603092111647,-0.999795198440552,0.0200429614633322,-0.0710163861513138,-0.993943393230438,0.0838637501001358,\r\n-0.0467874854803085,-0.978813529014587,0.199336230754852,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.00459290621802211,-0.999618351459503,0.0272391587495804,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.00274603092111647,-0.999795198440552,0.0200429614633322,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.0233411528170109,-0.999477744102478,0.0223467312753201,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.0487371198832989,-0.99850994348526,0.0245472490787506,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.0161404851824045,-0.997900485992432,0.0627214834094048,-0.134678080677986,-0.988995730876923,0.0612304881215096,-0.485684245824814,-0.853665888309479,0.188056409358978,-0.262110680341721,-0.957093477249146,0.123571909964085,-0.370698302984238,-0.923178255558014,0.101610444486141,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.390555381774902,-0.920544624328613,-0.007995898835361,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.174143970012665,-0.954230546951294,0.24314147233963,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.190681383013725,-0.980166256427765,0.0539849363267422,\r\n-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.897202432155609,-0.398109018802643,0.191146120429039,-0.472220778465271,-0.871082425117493,0.134991824626923,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.0710163861513138,-0.993943393230438,0.0838637501001358,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.031140360981226,-0.999387741088867,0.0159480851143599,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.0303282793611288,-0.999185383319855,0.0266203563660383,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.0866794213652611,-0.996235430240631,0.00121113809291273,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.581981182098389,-0.784523546695709,-0.21405765414238,\r\n-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.275939524173737,-0.957456946372986,-0.0844604223966599,-0.910565853118896,-0.379725903272629,-0.163333669304848,-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.841287136077881,0.168122723698616,-0.513780772686005,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.300626397132874,-0.897688806056976,0.322146534919739,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.245923191308975,-0.94794899225235,0.202272966504097,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.131065011024475,-0.98811000585556,0.0803757682442665,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.0596597045660019,-0.998118698596954,0.0141334403306246,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.841287136077881,0.168122723698616,-0.513780772686005,-0.746282041072845,-0.533033013343811,-0.398671388626099,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.748864650726318,-0.469806611537933,0.467422008514404,\r\n-0.440862327814102,-0.858264982700348,0.262719392776489,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.0978269055485725,-0.995128273963928,-0.0122283156961203,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.274105548858643,-0.960202872753143,-0.0536326542496681,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.581981182098389,-0.784523546695709,-0.21405765414238,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.54243540763855,-0.705175459384918,0.456608414649963,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.748864650726318,-0.469806611537933,0.467422008514404,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.440862327814102,-0.858264982700348,0.262719392776489,-0.748864650726318,-0.469806611537933,0.467422008514404,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.6466144323349,-0.720760762691498,0.249787002801895,-0.356898099184036,-0.92310106754303,0.143205553293228,\r\n-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.190681383013725,-0.980166256427765,0.0539849363267422,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.356898099184036,-0.92310106754303,0.143205553293228,-0.6466144323349,-0.720760762691498,0.249787002801895,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.410643398761749,-0.905597448348999,0.106137841939926,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.638972222805023,-0.76111364364624,-0.111446619033813,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.820861876010895,-0.00331404758617282,-0.571117103099823,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.748864650726318,-0.469806611537933,0.467422008514404,-0.777651607990265,-0.172501429915428,0.604566872119904,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.748864650726318,-0.469806611537933,0.467422008514404,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.738873243331909,-0.590097725391388,0.325347453355789,\r\n-0.887111306190491,-0.206109777092934,0.41297972202301,-0.6466144323349,-0.720760762691498,0.249787002801895,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.331353515386581,-0.939651250839233,-0.0852076336741447,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.242758765816689,-0.970010340213776,0.0121685676276684,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.404567509889603,-0.913363933563232,0.0457289963960648,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.6466144323349,-0.720760762691498,0.249787002801895,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.871283113956451,-0.416864901781082,-0.259015917778015,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.638001799583435,-0.733924984931946,-0.233039930462837,-0.871283113956451,-0.416864901781082,-0.259015917778015,-0.867374897003174,0.131990298628807,-0.479832500219345,-0.843885838985443,-0.428337931632996,-0.323083817958832,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.738873243331909,-0.590097725391388,0.325347453355789,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.955446779727936,-0.250880509614944,-0.155500188469887,\r\n-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.795327544212341,-0.605015814304352,0.037547629326582,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.511200726032257,-0.855185985565186,0.0856176093220711,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.70205169916153,-0.670906782150269,0.238762125372887,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.70343941450119,-0.697313368320465,0.13757561147213,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.871283113956451,-0.416864901781082,-0.259015917778015,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.936037838459015,-0.186424568295479,-0.298461079597473,-0.871283113956451,-0.416864901781082,-0.259015917778015,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.864578425884247,0.22791063785553,0.447840124368668,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.577984690666199,-0.812830865383148,-0.0723842531442642,-0.795327544212341,-0.605015814304352,0.037547629326582,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.757601916790009,-0.620732367038727,-0.201817944645882,-0.795327544212341,-0.605015814304352,0.037547629326582,-0.577284634113312,-0.812013924121857,0.0858815684914589,-0.944355607032776,-0.321180552244186,0.0709613561630249,\r\n-0.875495851039886,-0.467004537582397,0.124151855707169,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.675827383995056,-0.732827663421631,0.0788720175623894,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.885355532169342,0.161656454205513,0.43590435385704,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.943506300449371,0.199307754635811,0.264711439609528,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.864578425884247,0.22791063785553,0.447840124368668,-0.876842677593231,0.00274545722641051,0.480769425630569,-0.835808515548706,0.270195215940475,0.477931559085846,-0.885355532169342,0.161656454205513,0.43590435385704,-0.887111306190491,-0.206109777092934,0.41297972202301,-0.864578425884247,0.22791063785553,0.447840124368668,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.795327544212341,-0.605015814304352,0.037547629326582,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.9719517827034,0.205238476395607,-0.114833451807499,-0.967003703117371,-0.0359421595931053,-0.252214103937149,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.875495851039886,-0.467004537582397,0.124151855707169,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.885355532169342,0.161656454205513,0.43590435385704,-0.943506300449371,0.199307754635811,0.264711439609528,-0.924686014652252,-0.13287578523159,0.356790721416473,-0.949908196926117,-0.237760320305824,0.202840551733971,-0.943506300449371,0.199307754635811,0.264711439609528,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.984268188476563,0.176666036248207,-0.00226434180513024,-0.984268188476563,0.176666036248207,-0.00226434180513024,\r\n-0.9719517827034,0.205238476395607,-0.114833451807499,-0.955446779727936,-0.250880509614944,-0.155500188469887,-0.944355607032776,-0.321180552244186,0.0709613561630249,-0.991604447364807,0.0703159272670746,0.108518116176128,-0.984268188476563,0.176666036248207,-0.00226434180513024\r\n\t\t\t} \r\n\t\t\tNormalsW: *91014 {\r\n\t\t\t\ta: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\r\n1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1\r\n\t\t\t} \r\n\t\t}\r\n\t\tLayerElementUV: 0 {\r\n\t\t\tVersion: 101\r\n\t\t\tName: \"default\"\r\n\t\t\tMappingInformationType: \"ByPolygonVertex\"\r\n\t\t\tReferenceInformationType: \"IndexToDirect\"\r\n\t\t\tUV: *36506 {\r\n\t\t\t\ta: 0.783957421779633,0.133178472518921,0.781626760959625,0.133716523647308,0.781165897846222,0.129450127482414,0.784015655517578,0.136947333812714,0.778798520565033,0.132732838392258,0.785360157489777,0.129457727074623,0.787026166915894,0.137076452374458,0.779907524585724,0.137081518769264,0.773550987243652,0.129470378160477,0.78667426109314,0.133096188306808,0.784235954284668,0.12586610019207,0.787735164165497,0.140512362122536,0.784033417701721,0.140269294381142,0.775904476642609,0.133093655109406,0.780488610267639,0.125534415245056,0.79034560918808,0.133013889193535,0.795418441295624,0.125593915581703,0.790878593921661,0.139459058642387,0.789046704769135,0.136004164814949,0.779954373836517,0.140304729342461,0.774876475334167,0.13728155195713,0.773238301277161,0.133983641862869,0.772221684455872,0.125910416245461,0.800015270709991,0.129205793142319,0.783680200576782,0.122393496334553,0.789346754550934,0.14528514444828,0.799354434013367,0.143439337611198,0.78173691034317,0.144026756286621,0.770558178424835,0.133087322115898,0.768635153770447,0.129070326685905,0.77916944026947,0.11915635317564,0.791910409927368,0.137048602104187,0.796250224113464,0.133084788918495,0.801100194454193,0.125923082232475,0.799531638622284,0.12204534560442,0.799435436725616,0.146609365940094,0.795989394187927,0.13967427611351,0.775247395038605,0.142087250947952,0.77003026008606,0.136967584490776,0.767309665679932,0.122463122010231,0.773505389690399,0.119769096374512,0.795023441314697,0.136539682745934,0.802362382411957,0.132943004369736,0.785955190658569,0.118073932826519,0.803722083568573,0.129128560423851,0.796402096748352,0.116659820079803,0.797521233558655,0.148756489157677,0.785590529441834,0.146095380187035,0.805209636688232,0.142834186553955,0.80547422170639,0.148427337408066,0.775405645370483,0.144857242703438,0.7676020860672,0.132749304175377,0.767788171768188,0.137013152241707,0.764697909355164,0.12607753276825,0.777666747570038,0.112812474370003,0.80188262462616,0.136808067560196,0.783204138278961,0.114955797791481,\r\n0.804599404335022,0.125103980302811,0.801340758800507,0.116673745214939,0.801825642585754,0.149402141571045,0.793892920017242,0.149262890219688,0.783771336078644,0.148526087403297,0.787217378616333,0.148561537265778,0.805009603500366,0.140049010515213,0.769317507743835,0.144636958837509,0.779766976833344,0.146259963512421,0.762462139129639,0.129422277212143,0.767260253429413,0.118534751236439,0.756687998771667,0.123643025755882,0.773352205753326,0.114036686718464,0.80621862411499,0.137038484215736,0.805795788764954,0.132926538586617,0.78816682100296,0.114601314067841,0.80776309967041,0.128957659006119,0.798275768756866,0.1114806458354,0.800902724266052,0.152042999863625,0.808587312698364,0.140773147344589,0.808356881141663,0.145973846316338,0.805962860584259,0.152511417865753,0.775863945484161,0.147974103689194,0.772333085536957,0.148495703935623,0.762631833553314,0.133237972855568,0.762998938560486,0.137099251151085,0.763523042201996,0.144697725772858,0.763043284416199,0.120223581790924,0.77030622959137,0.116285085678101,0.77798068523407,0.107904225587845,0.784519553184509,0.111605979502201,0.806646525859833,0.118070133030415,0.808820247650146,0.124774821102619,0.803053617477417,0.113358117640018,0.794933557510376,0.15288108587265,0.787999749183655,0.151615098118782,0.779829025268555,0.149133756756783,0.812918245792389,0.141401082277298,0.809633016586304,0.14891853928566,0.808504998683929,0.151627764105797,0.763769924640656,0.148376703262329,0.757461488246918,0.133030354976654,0.763017952442169,0.118258766829968,0.763643324375153,0.112966924905777,0.75449401140213,0.129250094294548,0.758775591850281,0.117984049022198,0.768497169017792,0.113501168787479,0.782323062419891,0.107369974255562,0.771017730236053,0.104434140026569,0.811034440994263,0.136006698012352,0.810468554496765,0.132986038923264,0.790082275867462,0.111069202423096,0.813295483589172,0.128289207816124,0.80240797996521,0.108172617852688,0.804114520549774,0.155509293079376,0.79876571893692,0.15651448071003,0.782129347324371,0.152493700385094,0.810207784175873,\r\n0.139345109462738,0.811412990093231,0.147249966859818,0.813927233219147,0.145447194576263,0.808629035949707,0.156033411622047,0.777504682540894,0.151896148920059,0.772091269493103,0.151944264769554,0.763044536113739,0.152027815580368,0.759970724582672,0.137099251151085,0.758461654186249,0.144555941224098,0.758265376091003,0.148250102996826,0.763414204120636,0.115952126681805,0.761605083942413,0.113168217241764,0.753207743167877,0.124958388507366,0.753406524658203,0.119951397180557,0.766724765300751,0.107190206646919,0.781862199306488,0.103908754885197,0.776066482067108,0.103580862283707,0.790169656276703,0.107135765254498,0.793752431869507,0.106892697513103,0.807466864585876,0.107152223587036,0.810259640216827,0.121004700660706,0.814762771129608,0.123821534216404,0.799272119998932,0.103977121412754,0.79028993844986,0.155610576272011,0.815817356109619,0.138808339834213,0.813985466957092,0.150187060236931,0.811030626296997,0.151804998517036,0.815128684043884,0.144024223089218,0.811367392539978,0.155116826295853,0.75824385881424,0.152007564902306,0.751913905143738,0.133003771305084,0.756990551948547,0.136747300624847,0.759568095207214,0.113369509577751,0.765184044837952,0.110077932476997,0.758924961090088,0.10948671400547,0.747807025909424,0.124172210693359,0.753948390483856,0.113617643713951,0.786355197429657,0.103182077407837,0.76117467880249,0.104663290083408,0.775418341159821,0.100888103246689,0.815393269062042,0.135543346405029,0.813290417194366,0.137960121035576,0.814132332801819,0.132212519645691,0.811087608337402,0.107206664979458,0.816450357437134,0.125155881047249,0.806313574314117,0.102374374866486,0.808237850666046,0.159664273262024,0.801306545734406,0.159466773271561,0.796297073364258,0.160099774599075,0.782371163368225,0.158509686589241,0.778961837291718,0.158519819378853,0.816945374011993,0.147999435663223,0.817325174808502,0.141727715730667,0.811171174049377,0.158879354596138,0.774720728397369,0.155349776148796,0.763119220733643,0.155623227357864,0.757660269737244,0.155797928571701,0.755827128887177,0.140076860785484,\r\n0.753135621547699,0.136605516076088,0.748178005218506,0.129128560423851,0.751902520656586,0.148077920079231,0.751430332660675,0.15178981423378,0.762408971786499,0.108814470469952,0.750623881816864,0.121190801262856,0.746025800704956,0.11146292835474,0.78013414144516,0.100014567375183,0.759718775749207,0.100151292979717,0.769147872924805,0.0997208580374718,0.792653501033783,0.0998259335756302,0.816216170787811,0.129871696233749,0.795783042907715,0.0949898511171341,0.81549072265625,0.10783839225769,0.817031443119049,0.115097589790821,0.821624457836151,0.118948727846146,0.80295741558075,0.0986966714262962,0.793019413948059,0.161988630890846,0.823546230792999,0.144115373492241,0.824589431285858,0.14898943901062,0.814507067203522,0.152972251176834,0.814536154270172,0.156197994947433,0.769473195075989,0.157917201519012,0.752653241157532,0.144290074706078,0.748757839202881,0.136618167161942,0.748128592967987,0.132910087704659,0.753048241138458,0.107534557580948,0.741858184337616,0.116258502006531,0.743115305900574,0.122542880475521,0.746965169906616,0.105979919433594,0.78137481212616,0.0963824391365051,0.758226156234741,0.10423918068409,0.774984061717987,0.0969571992754936,0.786821126937866,0.0985131040215492,0.817478358745575,0.13322152197361,0.79854416847229,0.0980814024806023,0.810240685939789,0.101356521248817,0.818427860736847,0.127929672598839,0.820516705513,0.125040680170059,0.811345875263214,0.163191318511963,0.808411300182343,0.163464784622192,0.80141669511795,0.163201451301575,0.796928763389587,0.163300201296806,0.780232906341553,0.163763552904129,0.784425854682922,0.162978634238243,0.775015711784363,0.159621223807335,0.825261652469635,0.146257430315018,0.813955068588257,0.16085684299469,0.765594244003296,0.162705183029175,0.761184751987457,0.159570589661598,0.746595501899719,0.155587777495384,0.749706029891968,0.140800997614861,0.744085013866425,0.132425203919411,0.747851371765137,0.151721447706223,0.748413443565369,0.147910818457603,0.755277693271637,0.103816337883472,0.740054130554199,0.128828525543213,0.741326451301575,\r\n0.103374511003494,0.769994795322418,0.0966660231351852,0.790389955043793,0.0909171551465988,0.819151997566223,0.136397883296013,0.819773614406586,0.131642818450928,0.80191171169281,0.09324911236763,0.816878259181976,0.10020700097084,0.824275434017181,0.102017365396023,0.823632299900055,0.121909886598587,0.810196340084076,0.095031626522541,0.797028779983521,0.166951313614845,0.774106740951538,0.16313561797142,0.790356993675232,0.167328581213951,0.828802645206451,0.143378555774689,0.823612093925476,0.152346849441528,0.830882668495178,0.146108046174049,0.82111930847168,0.155577659606934,0.816923856735229,0.159947857260704,0.756563901901245,0.159522488713264,0.75043398141861,0.159395888447762,0.74847674369812,0.144122958183289,0.745820701122284,0.140241429209709,0.745675146579742,0.136102914810181,0.747195601463318,0.103482119739056,0.738534927368164,0.104553148150444,0.737919688224792,0.11522039026022,0.737501859664917,0.123539216816425,0.786302030086517,0.0895536839962006,0.774524509906769,0.0926958695054054,0.753719210624695,0.0991043224930763,0.764115571975708,0.0925895273685455,0.793167531490326,0.0890675410628319,0.821718156337738,0.134403944015503,0.797659277915955,0.0909969136118889,0.82926219701767,0.104536689817905,0.821611821651459,0.129396960139275,0.823514580726624,0.127208054065704,0.82951158285141,0.117273822426796,0.8104128241539,0.167361497879028,0.813728451728821,0.16634364426136,0.801896512508392,0.166563928127289,0.780272126197815,0.167062729597092,0.772036850452423,0.166695594787598,0.785133540630341,0.168873086571693,0.826704859733582,0.141135230660439,0.833565294742584,0.14916667342186,0.816361725330353,0.165135890245438,0.762282371520996,0.16659177839756,0.758928775787354,0.163598969578743,0.744228065013886,0.158892020583153,0.739210963249207,0.157360166311264,0.745721936225891,0.146601781249046,0.739766716957092,0.132635354995728,0.742591142654419,0.136413082480431,0.730049014091492,0.12058312445879,0.736504256725311,0.0997423827648163,0.742998838424683,0.0996170490980148,0.780554473400116,0.0929161533713341,\r\n0.757175385951996,0.093228854238987,0.768978238105774,0.0929895862936974,0.785891890525818,0.0852391868829727,0.790952026844025,0.0857468470931053,0.823939979076386,0.136309266090393,0.823800683021545,0.132301136851311,0.800349473953247,0.0875394940376282,0.821994125843048,0.0965824648737907,0.81761634349823,0.0955671370029449,0.829374849796295,0.0993967652320862,0.826358020305634,0.124587453901768,0.829352080821991,0.122140295803547,0.809424102306366,0.0916109159588814,0.800496339797974,0.17039480805397,0.790765941143036,0.170572057366371,0.831063687801361,0.141155481338501,0.833334863185883,0.14322917163372,0.833860278129578,0.152331650257111,0.828229129314423,0.156109362840652,0.835159182548523,0.146032080054283,0.825754106044769,0.159719973802567,0.819705247879028,0.164082586765289,0.756296813488007,0.164437055587769,0.743836879730225,0.162659615278244,0.741394817829132,0.151534080505371,0.742391169071198,0.146523281931877,0.74309378862381,0.140102177858353,0.734145760536194,0.128596857190132,0.748786926269531,0.0998449251055717,0.734986364841461,0.103712528944016,0.775663912296295,0.0891169160604477,0.754576325416565,0.0926021859049797,0.763210356235504,0.0893220081925392,0.770285964012146,0.085941806435585,0.7796910405159,0.0854771882295609,0.797012329101563,0.0817020088434219,0.826969504356384,0.134031742811203,0.804322183132172,0.0856810137629509,0.825560450553894,0.0994575321674347,0.814171552658081,0.0904943123459816,0.832929790019989,0.0980510115623474,0.831715703010559,0.107932075858116,0.825402200222015,0.13078448176384,0.826894760131836,0.129323527216911,0.832019507884979,0.116372436285019,0.814174115657806,0.17137722671032,0.810340702533722,0.1717848777771,0.795466542243958,0.172126695513725,0.782050848007202,0.172572314739227,0.775570213794708,0.171554461121559,0.789179623126984,0.17427633702755,0.841930985450745,0.152430400252342,0.83897864818573,0.147566467523575,0.818700015544891,0.168893352150917,0.770009994506836,0.170630291104317,0.760377049446106,0.170283406972885,0.749930143356323,0.165665075182915,\r\n0.755505561828613,0.172225430607796,0.740438997745514,0.163712918758392,0.740232646465302,0.158942654728889,0.736077666282654,0.155491560697556,0.732705056667328,0.132687270641327,0.739888250827789,0.136364966630936,0.740576982498169,0.140162944793701,0.733003795146942,0.113954395055771,0.731734037399292,0.116133168339729,0.729970514774323,0.131104782223701,0.732872128486633,0.0951746851205826,0.742527842521667,0.0958937630057335,0.748856544494629,0.0924262180924416,0.756744921207428,0.0883092135190964,0.785707056522369,0.08212611079216,0.779712557792664,0.0818969681859016,0.791020393371582,0.0817906260490417,0.827513873577118,0.0959064289927483,0.825038850307465,0.0919413417577744,0.818408846855164,0.0920286923646927,0.835014879703522,0.102766834199429,0.830357253551483,0.12648643553257,0.828841865062714,0.12825882434845,0.832266390323639,0.121166750788689,0.80765426158905,0.0851606950163841,0.812056124210358,0.178454115986824,0.801902830600739,0.176666527986526,0.835898518562317,0.141054198145866,0.838892579078674,0.142748102545738,0.836704969406128,0.155997961759567,0.83147007226944,0.160142824053764,0.8270543217659,0.16318878531456,0.823877930641174,0.167065262794495,0.75211775302887,0.167984366416931,0.746817052364349,0.170083373785019,0.737499356269836,0.162616565823555,0.731754302978516,0.162244364619255,0.732350587844849,0.150625094771385,0.73541933298111,0.136152282357216,0.727547407150269,0.101393230259418,0.726916909217834,0.114562071859837,0.726770102977753,0.128217056393623,0.725111603736877,0.0891574248671532,0.736906886100769,0.0958583205938339,0.774301707744598,0.0854493379592896,0.753863573074341,0.0889434739947319,0.760113775730133,0.0857772305607796,0.765491664409637,0.0849239528179169,0.794277787208557,0.0778394639492035,0.829249501228333,0.132013753056526,0.805053889751434,0.0803056135773659,0.815602123737335,0.0809550732374191,0.835017383098602,0.0965963900089264,0.828368425369263,0.0898853689432144,0.836226403713226,0.105986244976521,0.832017004489899,0.124839387834072,0.830925703048706,0.131182000041008,\r\n0.834248900413513,0.120215989649296,0.810428023338318,0.174689054489136,0.817299842834473,0.174245953559875,0.798664450645447,0.180431589484215,0.79183566570282,0.178213581442833,0.779616355895996,0.178314849734306,0.785269021987915,0.177983164787292,0.770797431468964,0.178023681044579,0.842306971549988,0.149217307567596,0.841354966163635,0.156114429235458,0.842342436313629,0.144216641783714,0.822086572647095,0.170784741640091,0.762322902679443,0.173769950866699,0.757917284965515,0.174906805157661,0.748879373073578,0.177003294229507,0.742463290691376,0.172286197543144,0.734692633152008,0.162583649158478,0.732431590557098,0.155099108815193,0.731082022190094,0.148303270339966,0.735832035541534,0.143234238028526,0.732565760612488,0.13608518242836,0.737499356269836,0.139565393328667,0.730414867401123,0.10848531126976,0.726681470870972,0.109872840344906,0.729975581169128,0.135833248496056,0.728838682174683,0.0893245413899422,0.739379346370697,0.0885218977928162,0.743871092796326,0.0888865068554878,0.769198477268219,0.0818982347846031,0.751469552516937,0.0849556028842926,0.752649486064911,0.0814551338553429,0.781929314136505,0.0777951553463936,0.788303554058075,0.078044556081295,0.774347305297852,0.0814019665122032,0.79901385307312,0.0767405852675438,0.824534952640533,0.0878180116415024,0.820477485656738,0.0825945287942886,0.829874932765961,0.0860873982310295,0.839991450309753,0.0945644751191139,0.836885988712311,0.110253907740116,0.833717226982117,0.128909543156624,0.831962525844574,0.130024895071983,0.835185766220093,0.114137962460518,0.833905816078186,0.12441148608923,0.812806844711304,0.0781496316194534,0.804856419563293,0.181869760155678,0.846665740013123,0.150083258748055,0.842717170715332,0.160074457526207,0.845885932445526,0.157020881772041,0.837822794914246,0.160064324736595,0.833118379116058,0.163872420787811,0.841915786266327,0.140479445457459,0.829414129257202,0.168528735637665,0.752198755741119,0.178882017731667,0.748094439506531,0.173645883798599,0.737860143184662,0.166809529066086,0.743008971214294,0.179302334785461,\r\n0.733394980430603,0.167834982275963,0.731985986232758,0.16621957719326,0.729145050048828,0.162687465548515,0.729289412498474,0.156790480017662,0.734721779823303,0.139307141304016,0.74930727481842,0.0886282399296761,0.722407460212708,0.0886459648609161,0.724025428295136,0.110676743090153,0.722620129585266,0.11645346134901,0.724344432353973,0.127746105194092,0.726927042007446,0.0845150351524353,0.732379674911499,0.0896574929356575,0.737311959266663,0.0889409407973289,0.746025800704956,0.0890194326639175,0.764502942562103,0.0818716511130333,0.790968477725983,0.0743845775723457,0.794985473155975,0.0726995393633842,0.80726432800293,0.0733629241585732,0.818029046058655,0.0755454897880554,0.837015092372894,0.082888238132,0.8388951420784,0.0913589894771576,0.824721097946167,0.0838503912091255,0.841515719890594,0.101098254323006,0.834788262844086,0.1281967908144,0.809683620929718,0.0738819763064384,0.823366463184357,0.181902676820755,0.815114736557007,0.181449443101883,0.794593036174774,0.183616831898689,0.804436087608337,0.185903206467628,0.785738706588745,0.181510210037231,0.773190200328827,0.181636810302734,0.767794549465179,0.183464899659157,0.846064448356628,0.145561128854752,0.848452091217041,0.15316466987133,0.8451908826828,0.141877099871635,0.827166974544525,0.177583113312721,0.764095306396484,0.187303394079208,0.758121073246002,0.188612431287766,0.746622085571289,0.181489959359169,0.740269362926483,0.180608823895454,0.729104578495026,0.166244894266129,0.730405986309052,0.144847109913826,0.72752457857132,0.152513951063156,0.731764435768127,0.140155345201492,0.724440634250641,0.0983345955610275,0.723432898521423,0.0836136490106583,0.724141895771027,0.105744443833828,0.723729193210602,0.131859302520752,0.730226218700409,0.0805942639708519,0.733787477016449,0.084055483341217,0.738341212272644,0.0846479684114456,0.744759798049927,0.084936611354351,0.769477009773254,0.0779344141483307,0.747875392436981,0.0813222080469131,0.763224303722382,0.0778837725520134,0.785970330238342,0.0744985193014145,0.776227295398712,0.0780977308750153,\r\n0.798507452011108,0.0722121372818947,0.803934752941132,0.0722349211573601,0.836311221122742,0.0798182114958763,0.840733349323273,0.0883180722594261,0.83000659942627,0.0789927840232849,0.84372866153717,0.0980598777532578,0.842536091804504,0.106034353375435,0.836226403713226,0.131480783224106,0.818677246570587,0.0686407759785652,0.812819480895996,0.0727438554167748,0.81858104467392,0.184556186199188,0.78960245847702,0.183619365096092,0.850089013576508,0.146665081381798,0.852774202823639,0.151042878627777,0.845206081867218,0.162662133574486,0.838959693908691,0.163586318492889,0.850475132465363,0.156547397375107,0.839458465576172,0.167250096797943,0.836680889129639,0.174640953540802,0.756393015384674,0.192111626267433,0.750969469547272,0.185586705803871,0.734943330287933,0.176544994115829,0.741559386253357,0.188812449574471,0.729094445705414,0.171367093920708,0.726828336715698,0.165928393602371,0.727757573127747,0.148133620619774,0.726582705974579,0.157993167638779,0.728739976882935,0.139484375715256,0.721323788166046,0.0940137729048729,0.721713721752167,0.0832566395401955,0.72117692232132,0.106148295104504,0.720316052436829,0.109709531068802,0.719999551773071,0.124691270291805,0.726600408554077,0.135897815227509,0.720566749572754,0.128151223063469,0.729312181472778,0.0773596540093422,0.77364593744278,0.0766215845942497,0.749437630176544,0.0777217298746109,0.754126906394959,0.0780458226799965,0.781455814838409,0.0747618451714516,0.77632349729538,0.0748403370380402,0.786522328853607,0.0666177198290825,0.794515788555145,0.0664822608232498,0.8059983253479,0.0678862407803535,0.808892369270325,0.0690079107880592,0.828234195709229,0.073694609105587,0.837815225124359,0.0762240588665009,0.845083296298981,0.0930111035704613,0.83768105506897,0.112160488963127,0.827696144580841,0.0680406913161278,0.828619062900543,0.18206724524498,0.823555111885071,0.185401871800423,0.811964929103851,0.18752621114254,0.802815616130829,0.189470767974854,0.79120397567749,0.188318714499474,0.784939825534821,0.18984043598175,0.779521405696869,0.185404404997826,\r\n0.771311461925507,0.185528472065926,0.768575608730316,0.189204916357994,0.848742008209229,0.143462121486664,0.854728877544403,0.155851110816002,0.850778996944427,0.159854173660278,0.837312638759613,0.177773013710976,0.762015283107758,0.192858561873436,0.75336092710495,0.192709177732468,0.74607264995575,0.187445178627968,0.73227334022522,0.176896944642067,0.735074996948242,0.181191191077232,0.726929605007172,0.170131489634514,0.728653848171234,0.142902553081512,0.721301019191742,0.0994334742426872,0.718047380447388,0.0877445787191391,0.71896904706955,0.0845555514097214,0.726002871990204,0.0762417837977409,0.718128442764282,0.114077195525169,0.720019817352295,0.135626897215843,0.715649604797363,0.132453054189682,0.73324179649353,0.0785294324159622,0.742412686347961,0.0814817249774933,0.768112301826477,0.073818676173687,0.763680040836334,0.0743162110447884,0.745445966720581,0.0776647627353668,0.78151661157608,0.0673038884997368,0.795541226863861,0.0628172159194946,0.802430748939514,0.0682267919182777,0.840028166770935,0.0800486207008362,0.83163845539093,0.071090467274189,0.844385743141174,0.0878294035792351,0.846588551998138,0.0962988808751106,0.845432698726654,0.101857848465443,0.820786356925964,0.066001184284687,0.812939763069153,0.0649871230125427,0.833594381809235,0.182209044694901,0.81640350818634,0.189830303192139,0.769295990467072,0.192807927727699,0.854778230190277,0.148518487811089,0.85299825668335,0.144257158041,0.85884964466095,0.152815267443657,0.844269275665283,0.167174130678177,0.850166261196136,0.163500219583511,0.842533588409424,0.173023015260696,0.760831594467163,0.196545124053955,0.755170047283173,0.196466639637947,0.750490963459015,0.189989820122719,0.734747111797333,0.18500941991806,0.741525232791901,0.19191412627697,0.730613648891449,0.181492492556572,0.726218104362488,0.180953174829483,0.724929332733154,0.1683109998703,0.725445866584778,0.139117240905762,0.726435840129852,0.142307534813881,0.715333104133606,0.0913488566875458,0.71651303768158,0.0989156886935234,0.718675315380096,0.0803841054439545,\r\n0.722939193248749,0.0752695053815842,0.71852844953537,0.102287024259567,0.714765965938568,0.10306054353714,0.713943064212799,0.110190607607365,0.713505029678345,0.117007963359356,0.713122665882111,0.122283354401588,0.714188635349274,0.128479108214378,0.73274427652359,0.0736452341079712,0.736224472522736,0.0778432637453079,0.773450970649719,0.0703372061252594,0.750011146068573,0.0743200108408928,0.756301879882813,0.0741782188415527,0.779710054397583,0.0627247989177704,0.791716694831848,0.0626007318496704,0.802643477916718,0.0646453052759171,0.807620048522949,0.0627551823854446,0.835564315319061,0.0704916566610336,0.838993847370148,0.0738857761025429,0.846368253231049,0.0865127742290497,0.825423717498779,0.0625184401869774,0.816692173480988,0.062029767781496,0.828911483287811,0.186845108866692,0.823789298534393,0.189182117581367,0.803343534469604,0.193185180425644,0.793473899364471,0.193129479885101,0.785937428474426,0.192443311214447,0.776341199874878,0.18918465077877,0.773309171199799,0.192306593060493,0.85929149389267,0.156281545758247,0.849176228046417,0.166936129331589,0.855415046215057,0.163781270384789,0.857765972614288,0.159899741411209,0.840205430984497,0.180029004812241,0.766489267349243,0.196689456701279,0.749626278877258,0.196732491254807,0.74483448266983,0.196441322565079,0.736495435237885,0.188878282904625,0.724921703338623,0.172060862183571,0.723412692546844,0.145431995391846,0.711881995201111,0.089777760207653,0.715864837169647,0.0838959664106369,0.72755753993988,0.0695497542619705,0.710064053535461,0.112642832100391,0.716297805309296,0.139421075582504,0.721463024616241,0.139170408248901,0.712990999221802,0.136072531342506,0.733405113220215,0.0697826966643333,0.740273118019104,0.0775887966156006,0.764894127845764,0.0713449344038963,0.769145309925079,0.066492386162281,0.744691431522369,0.0739845260977745,0.761124014854431,0.0667671114206314,0.778632640838623,0.0659682676196098,0.785077810287476,0.0629906579852104,0.790625393390656,0.0597636438906193,0.798507452011108,0.0616727583110332,0.831570088863373,\r\n0.0666936784982681,0.84585428237915,0.0798777118325233,0.84717720746994,0.0928756445646286,0.812749862670898,0.0615423619747162,0.835245251655579,0.186007022857666,0.819579899311066,0.192352160811424,0.787998497486115,0.193709313869476,0.779296040534973,0.193010479211807,0.774071276187897,0.196269139647484,0.857558369636536,0.149802207946777,0.856845617294312,0.146462514996529,0.863266706466675,0.156696796417236,0.846601188182831,0.171807661652565,0.845912516117096,0.178838968276978,0.757475435733795,0.2000772356987,0.763624370098114,0.200029134750366,0.752388656139374,0.200239285826683,0.730678200721741,0.183966234326363,0.740537703037262,0.196028605103493,0.737584173679352,0.192645877599716,0.724964797496796,0.179806187748909,0.723726630210876,0.14252781867981,0.724972367286682,0.148870438337326,0.711400926113129,0.0946581587195396,0.717834711074829,0.0763088837265968,0.715034365653992,0.082213468849659,0.724349498748779,0.0695421621203423,0.711978256702423,0.106057144701481,0.705739438533783,0.105559609830379,0.709051251411438,0.114424079656601,0.71088695526123,0.124950796365738,0.73923122882843,0.0701295807957649,0.739659130573273,0.0739085674285889,0.765462577342987,0.0669797956943512,0.774244725704193,0.0671595633029938,0.750449180603027,0.070700541138649,0.756979167461395,0.0664164274930954,0.782391369342804,0.0590698830783367,0.795448839664459,0.0577962957322598,0.785898208618164,0.0552465878427029,0.804617166519165,0.0583849810063839,0.834593296051025,0.0664771944284439,0.83952808380127,0.0703688561916351,0.844885766506195,0.0750365629792213,0.824940085411072,0.0589521452784538,0.831810653209686,0.0628045573830605,0.81593257188797,0.0582621805369854,0.811414241790771,0.0579292252659798,0.823280394077301,0.196793258190155,0.828346848487854,0.193537130951881,0.807332694530487,0.197211042046547,0.791482508182526,0.197008475661278,0.780869662761688,0.198555514216423,0.860805630683899,0.14838682115078,0.860991716384888,0.160580843687058,0.863398373126984,0.152116432785988,0.850906848907471,0.170665740966797,0.860459983348846,\r\n0.163839519023895,0.854440212249756,0.167374163866043,0.836222589015961,0.191425457596779,0.844743967056274,0.184427052736282,0.775306940078735,0.200039267539978,0.766341149806976,0.204292997717857,0.74819952249527,0.200120285153389,0.733679831027985,0.192455977201462,0.744466125965118,0.199986085295677,0.727225840091705,0.18640960752964,0.72426849603653,0.184923335909843,0.721364319324493,0.142413884401321,0.711585760116577,0.0977041348814964,0.706671178340912,0.0912311226129532,0.720916152000427,0.0730033814907074,0.731075704097748,0.0662721022963524,0.727071404457092,0.0659302845597267,0.709977984428406,0.102021165192127,0.704516470432281,0.109200596809387,0.714943170547485,0.142158150672913,0.711026191711426,0.135459780693054,0.736896753311157,0.0662733688950539,0.767278015613556,0.0625981986522675,0.771393716335297,0.0631982758641243,0.754363596439362,0.070372648537159,0.744659781455994,0.0703042894601822,0.757728636264801,0.0629995167255402,0.777023613452911,0.0587179362773895,0.78932774066925,0.0534425489604473,0.797956764698029,0.0547756403684616,0.800877392292023,0.0550111122429371,0.816989660263062,0.200748220086098,0.816111087799072,0.197413593530655,0.803663849830627,0.196684390306473,0.78427517414093,0.200641870498657,0.865493595600128,0.160327658057213,0.850778996944427,0.175891742110252,0.858417987823486,0.168356567621231,0.842018306255341,0.188744083046913,0.848045706748962,0.187900945544243,0.769574522972107,0.200393736362457,0.761375963687897,0.203933447599411,0.754616796970367,0.204034730792046,0.749336361885071,0.203903064131737,0.739733815193176,0.199796199798584,0.723131597042084,0.180472105741501,0.720974385738373,0.145867496728897,0.703111231327057,0.095093660056591,0.710413455963135,0.0873495936393738,0.709757685661316,0.0811044573783875,0.714938104152679,0.0740971937775612,0.72159469127655,0.0662898272275925,0.724346995353699,0.0657606422901154,0.703068196773529,0.101838864386082,0.707415580749512,0.117158621549606,0.718660116195679,0.143107637763023,0.742225289344788,0.0665468275547028,0.751887321472168,\r\n0.066882312297821,0.747555136680603,0.0666557028889656,0.753011524677277,0.0626412406563759,0.771406412124634,0.0589040368795395,0.780089855194092,0.0552288629114628,0.795220971107483,0.0512030124664307,0.785519659519196,0.0522575825452805,0.803942382335663,0.0555099137127399,0.807470679283142,0.0548541322350502,0.835936486721039,0.0607384592294693,0.837810158729553,0.0657631754875183,0.821826994419098,0.0541261844336987,0.831453621387482,0.0595370307564735,0.815113484859467,0.0541363134980202,0.828781127929688,0.197264209389687,0.821448504924774,0.200074717402458,0.810969889163971,0.204371482133865,0.807468175888062,0.204563915729523,0.796366691589355,0.200598835945129,0.790462076663971,0.200492486357689,0.781536877155304,0.2037283629179,0.86597216129303,0.163773685693741,0.855713784694672,0.170810058712959,0.854504764080048,0.176294326782227,0.861194312572479,0.16721211373806,0.840016782283783,0.192731961607933,0.845823884010315,0.190612688660622,0.777585685253143,0.204049929976463,0.772658467292786,0.204098030924797,0.766203165054321,0.207741558551788,0.733805179595947,0.198512479662895,0.742877304553986,0.203794196248055,0.725387632846832,0.189311251044273,0.723197460174561,0.173293933272362,0.721255421638489,0.18476128578186,0.700126051902771,0.0896992683410645,0.706005275249481,0.0872331187129021,0.729878067970276,0.0622475184500217,0.734788835048676,0.0624956525862217,0.727063775062561,0.0620728135108948,0.698973953723907,0.0990891307592392,0.704531669616699,0.114632964134216,0.717391610145569,0.145535811781883,0.712066829204559,0.145490229129791,0.70533686876297,0.127876505255699,0.742124021053314,0.0624880567193031,0.757847607135773,0.0593800507485867,0.764021873474121,0.0590686164796352,0.774715721607208,0.0552250668406487,0.780158162117004,0.0518537312746048,0.795013308525085,0.0479139685630798,0.788521349430084,0.0486583709716797,0.798337817192078,0.0503636598587036,0.804747521877289,0.0520955361425877,0.810864806175232,0.0534590072929859,0.840383946895599,0.0643186792731285,0.827061891555786,0.0555529594421387,\r\n0.827308773994446,0.200267136096954,0.837191104888916,0.196408405900002,0.819616615772247,0.2033561617136,0.814453899860382,0.204229697585106,0.800065875053406,0.204298064112663,0.788651704788208,0.204315781593323,0.865501165390015,0.167480498552322,0.852401971817017,0.186133623123169,0.86318439245224,0.171296194195747,0.857140600681305,0.175501823425293,0.84295642375946,0.194286599755287,0.850486516952515,0.190610155463219,0.775122106075287,0.204072713851929,0.761259496212006,0.207989692687988,0.754939675331116,0.20756684243679,0.770578444004059,0.207878276705742,0.745564997196198,0.203811913728714,0.730750381946564,0.198768213391304,0.740168035030365,0.20532351732254,0.737035989761353,0.204452514648438,0.723650693893433,0.189569517970085,0.718751311302185,0.148379221558571,0.699946284294128,0.0937681645154953,0.711995959281921,0.0739743933081627,0.716163575649261,0.0663961693644524,0.724334299564362,0.0619297549128532,0.698746085166931,0.104824066162109,0.704174637794495,0.120283089578152,0.715477406978607,0.145756095647812,0.748057723045349,0.0626754239201546,0.753590106964111,0.0590838082134724,0.77091521024704,0.0563176162540913,0.776603281497955,0.0520069152116776,0.784790456295013,0.0483279451727867,0.800753355026245,0.048633050173521,0.835198402404785,0.0555504262447357,0.844247698783875,0.0675279647111893,0.816059172153473,0.0515448302030563,0.824538767337799,0.0523955747485161,0.831563770771027,0.0533235482871532,0.812252342700958,0.0504927895963192,0.835932672023773,0.200259551405907,0.810905337333679,0.206533804535866,0.806880712509155,0.208212494850159,0.801068544387817,0.207777008414268,0.796662926673889,0.204338565468788,0.784875273704529,0.207830175757408,0.779285907745361,0.207728892564774,0.857652068138123,0.185153737664223,0.859199106693268,0.17468398809433,0.841498017311096,0.200545653700829,0.848063409328461,0.198935315012932,0.775972843170166,0.205913469195366,0.751630365848541,0.21082803606987,0.768988370895386,0.211435720324516,0.763224303722382,0.211501553654671,0.748299539089203,0.20987094938755,\r\n0.733922898769379,0.204961434006691,0.745581448078156,0.20904552936554,0.743038058280945,0.208280861377716,0.726987838745117,0.196937590837479,0.702083230018616,0.0869622007012367,0.697766244411469,0.0911273062229156,0.707504212856293,0.0788370668888092,0.718533515930176,0.0608296096324921,0.728139877319336,0.0584254935383797,0.735942184925079,0.0586280487477779,0.741683423519135,0.0586153902113438,0.721118688583374,0.0609954558312893,0.696117877960205,0.0985510796308517,0.700123488903046,0.115022890269756,0.716426908969879,0.1495211571455,0.714497566223145,0.149186924099922,0.748053908348084,0.0589090995490551,0.766204416751862,0.055507380515337,0.758617341518402,0.0553276129066944,0.77094304561615,0.0523018911480904,0.773748457431793,0.0505598895251751,0.781341910362244,0.0481595695018768,0.795010805130005,0.0422651134431362,0.796621143817902,0.0420562252402306,0.78766930103302,0.041803028434515,0.808264434337616,0.048502653837204,0.840965032577515,0.0589787289500237,0.843033611774445,0.0629729330539703,0.818983614444733,0.0499003082513809,0.827898740768433,0.0500446297228336,0.832585394382477,0.207852959632874,0.838614046573639,0.202391475439072,0.825275599956512,0.20402966439724,0.81590723991394,0.208247944712639,0.810839474201202,0.208698645234108,0.796757876873016,0.207931458950043,0.790897607803345,0.207999810576439,0.854625046253204,0.19074435532093,0.865851879119873,0.171496227383614,0.862975537776947,0.175501823425293,0.85896360874176,0.181945711374283,0.844333827495575,0.202649742364883,0.758959174156189,0.211374953389168,0.774932205677032,0.207802325487137,0.773286402225494,0.211493954062462,0.729334950447083,0.201928123831749,0.740181982517242,0.211283802986145,0.738229811191559,0.213433444499969,0.723903894424438,0.19742625951767,0.696510374546051,0.0842757672071457,0.70227062702179,0.0813373997807503,0.708076477050781,0.0705486238002777,0.713087260723114,0.0693421363830566,0.71488493680954,0.0613385364413261,0.725066065788269,0.0545946024358273,0.696874976158142,0.103558078408241,0.754668712615967,0.0552010126411915,\r\n0.776860296726227,0.0483393408358097,0.783076286315918,0.0432652495801449,0.805202007293701,0.0429576113820076,0.83332222700119,0.0486292541027069,0.840118050575256,0.0553491339087486,0.815421104431152,0.0480798110365868,0.820916771888733,0.0465049184858799,0.828615248203278,0.0475075840950012,0.808303713798523,0.0415878109633923,0.821723222732544,0.207713708281517,0.803308129310608,0.211833238601685,0.799807667732239,0.211405336856842,0.787700951099396,0.211711704730988,0.779816389083862,0.211499020457268,0.860085248947144,0.186705842614174,0.838091194629669,0.214509546756744,0.833637475967407,0.214534863829613,0.85391104221344,0.203449845314026,0.844442665576935,0.210843235254288,0.755587816238403,0.215537533164024,0.753049492835999,0.219138011336327,0.770956993103027,0.215360283851624,0.765472710132599,0.215274199843407,0.76059228181839,0.215157732367516,0.745859980583191,0.217932775616646,0.732912659645081,0.209197446703911,0.743508994579315,0.215236216783524,0.724729299545288,0.200917854905128,0.700488090515137,0.0803942382335663,0.695378541946411,0.0868507921695709,0.713391065597534,0.065102331340313,0.721463024616241,0.0534184984862804,0.714796304702759,0.0561137907207012,0.731030166149139,0.0543831810355186,0.73892867565155,0.0548250116407871,0.745589017868042,0.0551756918430328,0.695191204547882,0.0935972556471825,0.751029014587402,0.0546300522983074,0.756015717983246,0.0519081689417362,0.762819170951843,0.0513359420001507,0.77168995141983,0.0479709357023239,0.776732444763184,0.043207012116909,0.799292385578156,0.0377442613244057,0.790653228759766,0.0388950482010841,0.781934380531311,0.0402167402207851,0.834578096866608,0.0438716560602188,0.8120396733284,0.043588075786829,0.827945530414581,0.217031389474869,0.824650168418884,0.213197976350784,0.820471167564392,0.213370144367218,0.81187504529953,0.211450904607773,0.805932521820068,0.211291387677193,0.792123079299927,0.214251279830933,0.783576369285584,0.213314443826675,0.862888157367706,0.193959966301918,0.865074574947357,0.175863891839981,0.861423432826996,\r\n0.183616831898689,0.857963502407074,0.197264209389687,0.849401593208313,0.206237554550171,0.775258779525757,0.215185582637787,0.72956794500351,0.207708641886711,0.740254163742065,0.215509667992592,0.736271321773529,0.216773137450218,0.726129472255707,0.204839900135994,0.722020089626312,0.198390945792198,0.698209345340729,0.0764051005244255,0.693672001361847,0.0755695477128029,0.70834481716156,0.0645908713340759,0.704526603221893,0.0695067122578621,0.718609511852264,0.0524373538792133,0.710684418678284,0.0611093938350677,0.735516786575317,0.0547629781067371,0.725782632827759,0.0506687648594379,0.75959849357605,0.0515473634004593,0.766408264636993,0.0468442030251026,0.794400572776794,0.034027311950922,0.785990595817566,0.0389748029410839,0.804085433483124,0.0389786027371883,0.830345869064331,0.041371326893568,0.838631808757782,0.0500585548579693,0.820858538150787,0.0439893938601017,0.814728617668152,0.0421486422419548,0.80530458688736,0.215469166636467,0.801944613456726,0.215542584657669,0.798560619354248,0.215532466769218,0.789213836193085,0.215952768921852,0.786247611045837,0.21531218290329,0.780848145484924,0.215167850255966,0.864178240299225,0.190217703580856,0.867044448852539,0.174689054489136,0.843028604984283,0.215304583311081,0.833875477313995,0.217907458543777,0.828802645206451,0.219168394804001,0.857617855072021,0.201662257313728,0.853435039520264,0.208113759756088,0.846931636333466,0.214079111814499,0.757770419120789,0.219267129898071,0.749074280261993,0.223039790987968,0.772667348384857,0.218897461891174,0.768831372261047,0.218925312161446,0.76255202293396,0.218844294548035,0.742768406867981,0.218775928020477,0.721688389778137,0.204908266663551,0.722878396511078,0.193868815898895,0.694834172725677,0.0733097493648529,0.721852958202362,0.0434741377830505,0.713522732257843,0.0527373924851418,0.70776754617691,0.0608410015702248,0.736462533473969,0.0511321164667606,0.745666265487671,0.0513524003326893,0.750371932983398,0.0513903796672821,0.72446346282959,0.0466581024229527,0.728066444396973,0.0466948188841343,\r\n0.757243752479553,0.0479405522346497,0.761101245880127,0.0481279194355011,0.770598709583282,0.0442577861249447,0.795127272605896,0.0287873726338148,0.790493726730347,0.0347881726920605,0.774880290031433,0.0393571332097054,0.780924141407013,0.0358756557106972,0.808491051197052,0.0331702344119549,0.812691628932953,0.0394837334752083,0.826094686985016,0.040837075561285,0.832417011260986,0.0395964048802853,0.821614325046539,0.221368685364723,0.817749261856079,0.218808844685555,0.815785706043243,0.216160401701927,0.811044573783875,0.215210899710655,0.809382319450378,0.217383340001106,0.796469211578369,0.219084829092026,0.79167240858078,0.222639739513397,0.784619569778442,0.220026731491089,0.780730426311493,0.218856960535049,0.778156638145447,0.215390667319298,0.862448871135712,0.197476893663406,0.866576015949249,0.193570047616959,0.866115212440491,0.179018750786781,0.840528249740601,0.219024062156677,0.837217688560486,0.219013944268227,0.829659700393677,0.221307918429375,0.822165071964264,0.226047784090042,0.829231798648834,0.220236882567406,0.859399080276489,0.202713042497635,0.850468814373016,0.212126940488815,0.756568968296051,0.222703039646149,0.753785073757172,0.222690373659134,0.743943274021149,0.222756206989288,0.775100529193878,0.220414131879807,0.726613104343414,0.207832708954811,0.730517387390137,0.21194463968277,0.740146517753601,0.222439706325531,0.723757028579712,0.208716362714767,0.71916651725769,0.193164929747581,0.697188913822174,0.0719640031456947,0.691960394382477,0.0688623264431953,0.705182373523712,0.0645946636795998,0.719437479972839,0.0432462580502033,0.734663546085358,0.0472113415598869,0.753791391849518,0.0479342229664326,0.763854742050171,0.0433361418545246,0.773193955421448,0.0427765734493732,0.80091792345047,0.0324448198080063,0.791111528873444,0.0303939152508974,0.783233284950256,0.0317979007959366,0.812584042549133,0.0360326394438744,0.825876951217651,0.037196084856987,0.835833966732025,0.0419486165046692,0.816901028156281,0.0400787480175495,0.819471001625061,0.0374657437205315,0.804796934127808,\r\n0.221859887242317,0.801581263542175,0.220596432685852,0.797611117362976,0.221502870321274,0.787535130977631,0.222685307264328,0.777984499931335,0.221983954310417,0.8669393658638,0.18621464073658,0.865288496017456,0.198269411921501,0.868186354637146,0.189096033573151,0.868840873241425,0.17886683344841,0.844117343425751,0.219175979495049,0.856029033660889,0.211580038070679,0.849738359451294,0.215610951185226,0.759703576564789,0.222857490181923,0.752007603645325,0.226361751556396,0.746067583560944,0.226544052362442,0.769123792648315,0.222627073526382,0.737276554107666,0.222282722592354,0.721437692642212,0.209627881646156,0.694525301456451,0.0667152032256126,0.701873123645782,0.0681900829076767,0.720629990100861,0.0387152768671513,0.724422931671143,0.0428411401808262,0.709198117256165,0.0544464811682701,0.715533137321472,0.0433120913803577,0.742282271385193,0.047087274491787,0.747101902961731,0.0476227886974812,0.727284073829651,0.0429753363132477,0.732846856117249,0.0431614369153976,0.754649758338928,0.0418967120349407,0.769361793994904,0.0399800017476082,0.799332916736603,0.0274327620863914,0.790914058685303,0.0280075222253799,0.775023341178894,0.0324701406061649,0.779468238353729,0.0327461287379265,0.806374311447144,0.030217943713069,0.814309597015381,0.0327752456068993,0.830587685108185,0.0357401967048645,0.818696200847626,0.222867622971535,0.818684816360474,0.228848159313202,0.813766479492188,0.219077244400978,0.810786306858063,0.219365879893303,0.806535124778748,0.223044857382774,0.794400572776794,0.225657865405083,0.79258006811142,0.228597491979599,0.782228112220764,0.223186641931534,0.862343788146973,0.201074838638306,0.871479213237762,0.190106302499771,0.869209289550781,0.19758577644825,0.869805574417114,0.18259896337986,0.84861034154892,0.219011411070824,0.838463425636292,0.222627073526382,0.842109441757202,0.222880274057388,0.83359569311142,0.222667589783669,0.825912356376648,0.223677843809128,0.755865097045898,0.226501002907753,0.758822441101074,0.226754203438759,0.742454469203949,0.226706102490425,0.769004821777344,\r\n0.226440235972404,0.726445972919464,0.212061122059822,0.734476149082184,0.222300454974175,0.738962829113007,0.226078167557716,0.723513960838318,0.215578034520149,0.692352831363678,0.0637021437287331,0.701290726661682,0.0644883215427399,0.705962240695953,0.0598864443600178,0.724397599697113,0.0389406234025955,0.710656523704529,0.0510143786668777,0.739968061447144,0.0430563576519489,0.730089485645294,0.0430690199136734,0.735537052154541,0.0433171540498734,0.751906335353851,0.0436146631836891,0.757699489593506,0.0394710712134838,0.763000190258026,0.0395014546811581,0.793584048748016,0.0255793519318104,0.787911117076874,0.0267326701432467,0.783894121646881,0.0288139581680298,0.77243310213089,0.0361516438424587,0.777407169342041,0.0289911981672049,0.821350991725922,0.0340045243501663,0.825213551521301,0.033368993550539,0.81573885679245,0.223217025399208,0.822520792484283,0.227534055709839,0.812382757663727,0.222637206315994,0.803690433502197,0.226721286773682,0.800195038318634,0.227242887020111,0.797195911407471,0.225971832871437,0.787036299705505,0.226642802357674,0.778660535812378,0.226609885692596,0.775373995304108,0.22285495698452,0.869766294956207,0.186148807406425,0.861036062240601,0.207549124956131,0.871344983577728,0.193866282701492,0.866307616233826,0.202616825699806,0.870562613010406,0.177909731864929,0.843743860721588,0.224652662873268,0.829284965991974,0.227916389703751,0.850808084011078,0.220269799232483,0.761735498905182,0.226579502224922,0.75261652469635,0.230921849608421,0.749551594257355,0.230552181601524,0.74409008026123,0.228445574641228,0.773048400878906,0.226974487304688,0.729469180107117,0.215296983718872,0.721739053726196,0.218006208539009,0.694664537906647,0.0633552595973015,0.714522898197174,0.0376733653247356,0.723491132259369,0.0350046567618847,0.727625906467438,0.0392343327403069,0.702890932559967,0.0563568621873856,0.705296337604523,0.0515752136707306,0.712163090705872,0.0416840240359306,0.743720412254334,0.0435488298535347,0.74679297208786,0.0435462966561317,0.732687294483185,0.0385266430675983,\r\n0.735513031482697,0.039382454007864,0.751527786254883,0.0367352664470673,0.756393015384674,0.0362719111144543,0.766719698905945,0.0355325751006603,0.801581263542175,0.0241057369858027,0.8033726811409,0.0263933837413788,0.780507624149323,0.0278986468911171,0.768732607364655,0.0320726186037064,0.810572385787964,0.0268504060804844,0.828174710273743,0.0317535884678364,0.816061675548553,0.225900933146477,0.822876513004303,0.229022860527039,0.808072030544281,0.226149067282677,0.798546731472015,0.230630666017532,0.789332807064056,0.231640934944153,0.782990217208862,0.22664786875248,0.776038646697998,0.226599752902985,0.875351846218109,0.190169602632523,0.875712692737579,0.186186790466309,0.874458074569702,0.193595364689827,0.869732141494751,0.203614428639412,0.868433237075806,0.174739688634872,0.875939309597015,0.182325512170792,0.834050178527832,0.226242750883102,0.838522911071777,0.227425187826157,0.826278269290924,0.22834175825119,0.856907665729523,0.213815778493881,0.754528224468231,0.232749938964844,0.758752822875977,0.233947575092316,0.745832085609436,0.230448365211487,0.742112636566162,0.230347096920013,0.764578878879547,0.234160259366035,0.769284605979919,0.230048313736916,0.725858569145203,0.219196245074272,0.73155552148819,0.226225018501282,0.719305813312531,0.216990888118744,0.723645627498627,0.219973564147949,0.694492340087891,0.0602915622293949,0.70125275850296,0.060359925031662,0.718801915645599,0.0342678502202034,0.727281510829926,0.0350717529654503,0.707785248756409,0.0433146208524704,0.740865647792816,0.0392204076051712,0.744495213031769,0.0395862758159637,0.76103538274765,0.0359908640384674,0.794791758060455,0.0205255150794983,0.782881319522858,0.0259097758680582,0.787007212638855,0.0223890542984009,0.776957750320435,0.026547834277153,0.819481134414673,0.0302432626485825,0.825573086738586,0.0284139048308134,0.813103079795837,0.229463428258896,0.820263504981995,0.233598157763481,0.802828311920166,0.230154663324356,0.807175695896149,0.229648262262344,0.795814692974091,0.234494477510452,0.78631979227066,0.233190506696701,\r\n0.779326438903809,0.230473697185516,0.864531457424164,0.209805116057396,0.873327553272247,0.197970628738403,0.875487327575684,0.17896556854248,0.843417227268219,0.228308841586113,0.839035630226135,0.232038453221321,0.825441420078278,0.233739942312241,0.829764783382416,0.232522070407867,0.860757529735565,0.217768207192421,0.761667132377625,0.234107092022896,0.748994529247284,0.23762147128582,0.747251272201538,0.234737545251846,0.773136973381042,0.232253670692444,0.735748469829559,0.233820974826813,0.737382888793945,0.232013136148453,0.721207320690155,0.221842169761658,0.69161856174469,0.0593521967530251,0.715634405612946,0.033894382417202,0.710957825183868,0.0388355441391468,0.719128549098969,0.0302673168480396,0.726848542690277,0.0310775507241488,0.730361700057983,0.0356427133083344,0.702559232711792,0.0524398870766163,0.704534232616425,0.0440818108618259,0.735601603984833,0.0348843857645988,0.739883184432983,0.0336690358817577,0.755427062511444,0.0321814939379692,0.760549247264862,0.0319802016019821,0.792066097259521,0.0188176929950714,0.798037767410278,0.0187138821929693,0.805785655975342,0.0234727412462235,0.779840409755707,0.0246488470584154,0.76757550239563,0.0287772454321384,0.772052049636841,0.0254578161984682,0.813092947006226,0.0241791643202305,0.814603269100189,0.23349940776825,0.800021588802338,0.234000742435455,0.783837139606476,0.230096429586411,0.788789689540863,0.238208889961243,0.794299304485321,0.237540453672409,0.775119543075562,0.23068131506443,0.871526062488556,0.175061255693436,0.848701477050781,0.22404246032238,0.833428561687469,0.231711834669113,0.833558976650238,0.235854148864746,0.855139076709747,0.225278064608574,0.754081308841705,0.237937971949577,0.761578500270844,0.237732887268066,0.729778051376343,0.227344155311584,0.727349877357483,0.227804973721504,0.74030476808548,0.237705036997795,0.724671065807343,0.227931573987007,0.694363236427307,0.0543945766985416,0.712598562240601,0.0358161553740501,0.730056583881378,0.0311028715223074,0.707261145114899,0.0391393825411797,0.743872344493866,0.0358490720391274,\r\n0.732796192169189,0.0312813743948936,0.735553503036499,0.02757328748703,0.741373300552368,0.0352502577006817,0.747576653957367,0.036439023911953,0.75093150138855,0.0322891026735306,0.795382976531982,0.0157881751656532,0.809616565704346,0.0218510068953037,0.779837906360626,0.0215294454246759,0.786069095134735,0.0192228090018034,0.821219325065613,0.0242285393178463,0.809216499328613,0.233187973499298,0.819458365440369,0.237193569540977,0.823960244655609,0.237482219934464,0.80419933795929,0.233826041221619,0.797285795211792,0.237927839159966,0.784233391284943,0.23538826406002,0.781188726425171,0.234380543231964,0.777418613433838,0.234015926718712,0.868804156780243,0.171245560050011,0.874540388584137,0.175914540886879,0.834693312644959,0.237148001790047,0.827943027019501,0.237864553928375,0.751385986804962,0.241409316658974,0.744620561599731,0.237783521413803,0.76859587430954,0.237986087799072,0.764906823635101,0.237801253795624,0.730137586593628,0.232668921351433,0.721093356609344,0.225726217031479,0.697275042533875,0.0538451373577118,0.695251941680908,0.0482418574392796,0.72639787197113,0.0265225153416395,0.730008482933044,0.0268326830118895,0.700277924537659,0.0481469109654427,0.699133515357971,0.0450300388038158,0.711190760135651,0.0351249240338802,0.740977048873901,0.0271365214139223,0.743622958660126,0.0276467148214579,0.754872560501099,0.0291241258382797,0.761653184890747,0.0286696366965771,0.791027963161469,0.0147563926875591,0.796786963939667,0.0110710924491286,0.804179131984711,0.0177340041846037,0.781416594982147,0.0204584170132875,0.775876581668854,0.0219003818929195,0.766294300556183,0.0266022719442844,0.81394624710083,0.237183436751366,0.801401495933533,0.237679705023766,0.793475151062012,0.241725817322731,0.78214704990387,0.23758602142334,0.829093813896179,0.241047248244286,0.759088277816772,0.24139666557312,0.74637645483017,0.24178658425808,0.755572617053986,0.24152073264122,0.776532411575317,0.238084822893143,0.763526856899261,0.241378933191299,0.738426029682159,0.240376278758049,0.732677161693573,0.237302452325821,\r\n0.742896258831024,0.241085231304169,0.72366589307785,0.229607746005058,0.73274302482605,0.0270896796137095,0.700599491596222,0.0399306267499924,0.738951444625854,0.0231891609728336,0.748043775558472,0.0272226072847843,0.789468288421631,0.0110103255137801,0.802076280117035,0.0146854976192117,0.791848361492157,0.00975952576845884,0.778171837329865,0.0176339913159609,0.783453583717346,0.0182188786566257,0.785394310951233,0.0110596986487508,0.771506428718567,0.0196519810706377,0.763695240020752,0.0241652391850948,0.769173204898834,0.0216269269585609,0.808375895023346,0.237008735537529,0.821430742740631,0.241057381033897,0.817132711410522,0.241123214364052,0.825288236141205,0.241614416241646,0.798330247402191,0.241773933172226,0.787945330142975,0.241844817996025,0.783272504806519,0.241513133049011,0.752496302127838,0.245068043470383,0.768723785877228,0.241806849837303,0.772778749465942,0.241328299045563,0.728266477584839,0.236173182725906,0.72065532207489,0.229941979050636,0.697672545909882,0.0440539605915546,0.727539777755737,0.0223877876996994,0.732596158981323,0.0228688642382622,0.703407466411591,0.0360326394438744,0.735385119915009,0.0230448376387358,0.744792699813843,0.0240006595849991,0.756328463554382,0.0256439168006182,0.793475151062012,0.00701992120593786,0.807740330696106,0.0141879627481103,0.810811638832092,0.24091811478138,0.804252505302429,0.2401382625103,0.790011405944824,0.245683312416077,0.780008792877197,0.241434648633003,0.795495688915253,0.245526328682899,0.763097703456879,0.245326295495033,0.757743835449219,0.24532376229763,0.747358918190002,0.245268061757088,0.775737345218658,0.242404386401176,0.768849074840546,0.245283260941505,0.736048519611359,0.244847759604454,0.741774618625641,0.245052844285965,0.72899317741394,0.241049781441689,0.723293662071228,0.233747541904449,0.717981576919556,0.225718632340431,0.692036330699921,0.0440248437225819,0.724367201328278,0.0218788590282202,0.700328588485718,0.0359149016439915,0.709322214126587,0.0350122526288033,0.737779140472412,0.0189683455973864,0.741106152534485,\r\n0.0200355760753155,0.751207530498505,0.0234398264437914,0.787965536117554,0.00837832968682051,0.800108969211578,0.0100734913721681,0.774525821208954,0.0159957986325026,0.78203821182251,0.0127687864005566,0.766322195529938,0.01883415132761,0.762981235980988,0.0218358151614666,0.756677865982056,0.0233752615749836,0.822713196277618,0.244412258267403,0.81736946105957,0.244518592953682,0.810150802135468,0.244835093617439,0.801887691020966,0.245004743337631,0.784894287586212,0.245974481105804,0.780453145503998,0.244878143072128,0.751027762889862,0.248263403773308,0.758522391319275,0.248934373259544,0.7735915184021,0.245533928275108,0.72976541519165,0.245194628834724,0.726286470890045,0.237153053283691,0.718617081642151,0.233208224177361,0.719267785549164,0.221540853381157,0.717804312705994,0.230126813054085,0.690724790096283,0.0525905378162861,0.725266098976135,0.0176707040518522,0.720690786838531,0.0260376408696175,0.732492327690125,0.0186898279935122,0.692922532558441,0.0404927283525467,0.750582098960876,0.0206622425466776,0.783958673477173,0.00646921480074525,0.769439041614532,0.0162793807685375,0.779093503952026,0.0109381638467312,0.78173816204071,0.008953089825809,0.784115672111511,0.248893857002258,0.789646804332733,0.249073639512062,0.7949538230896,0.248696371912956,0.762365937232971,0.249134406447411,0.765346109867096,0.24837227165699,0.745686531066895,0.248595088720322,0.774899244308472,0.247957020998001,0.740180730819702,0.248625472187996,0.736572623252869,0.248640656471252,0.725747168064117,0.24090039730072,0.723488628864288,0.238062039017677,0.719979286193848,0.237034052610397,0.715555906295776,0.229800179600716,0.721331357955933,0.0214218366891146,0.727982878684998,0.0139967985451221,0.732529044151306,0.0145740900188684,0.739486932754517,0.0170946791768074,0.749694645404816,0.0181353241205215,0.754775047302246,0.019301300868392,0.770444214344025,0.0108305541798472,0.760712563991547,0.0193468760699034,0.763807892799377,0.012347212061286,0.81499445438385,0.247549384832382,0.802490293979645,0.248073503375053,0.769620060920715,\r\n0.24842543900013,0.757276654243469,0.251595497131348,0.75206458568573,0.250506728887558,0.765280246734619,0.252167701721191,0.731713771820068,0.248909056186676,0.72589910030365,0.244622409343719,0.714689970016479,0.237132802605629,0.715011537075043,0.226478219032288,0.721865653991699,0.017649183049798,0.726124405860901,0.0139221046119928,0.735705435276031,0.0144993970170617,0.743011474609375,0.0178593378514051,0.778412401676178,0.00753391347825527,0.768322467803955,0.0117483977228403,0.773329436779022,0.0066970931366086,0.809351921081543,0.248032987117767,0.784456253051758,0.250628262758255,0.794924736022949,0.251289129257202,0.765462577342987,0.249947160482407,0.770482242107391,0.250823229551315,0.743336856365204,0.25185626745224,0.739714860916138,0.251884132623672,0.729028582572937,0.248774856328964,0.735320568084717,0.25207656621933,0.71886271238327,0.247562035918236,0.717401742935181,0.241508066654205,0.715692639350891,0.222176387906075,0.712636530399323,0.229635611176491,0.718781650066376,0.0194266345351934,0.72476726770401,0.0157590582966805,0.726797938346863,0.00941391009837389,0.732260704040527,0.0109875369817019,0.740259230136871,0.0118534751236439,0.743064641952515,0.0135676274076104,0.754811763763428,0.0151627762243152,0.748712241649628,0.0143854571506381,0.757012069225311,0.0166781675070524,0.770764529705048,0.0019914039876312,0.767067849636078,0.00522854365408421,0.764782726764679,0.00656922813504934,0.805808424949646,0.249997809529305,0.78684264421463,0.251699298620224,0.780465841293335,0.251739799976349,0.776096880435944,0.250061094760895,0.749261677265167,0.251673966646194,0.731772005558014,0.252684235572815,0.72206312417984,0.248681172728539,0.725481271743774,0.24948887526989,0.713206231594086,0.241168782114983,0.71226179599762,0.232998073101044,0.712793529033661,0.225285664200783,0.716877639293671,0.0239310301840305,0.724265933036804,0.013848677277565,0.768961787223816,0.00338146230205894,0.761245548725128,0.00972027983516455,0.737894356250763,0.254198372364044,0.728139877319336,0.25289186835289,\r\n0.734697699546814,0.255899846553802,0.71946781873703,0.252544969320297,0.71521919965744,0.248739406466484,0.714484870433807,0.24491611123085,0.710137486457825,0.241584032773972,0.709767818450928,0.237348020076752,0.709907054901123,0.229445710778236,0.712512493133545,0.0235246475785971,0.725017964839935,0.00860367622226477,0.731220006942749,0.00889358762651682,0.736799240112305,0.00916451029479504,0.743453323841095,0.00892397202551365,0.748364090919495,0.00873913709074259,0.752826690673828,0.00877078715711832,0.757048785686493,0.00904550682753325,0.763667404651642,0.00340298423543572,0.760347962379456,0.00592104066163301,0.741422653198242,0.25462880730629,0.729608416557312,0.255831480026245,0.715983808040619,0.252598166465759,0.722133994102478,0.255699843168259,0.710831224918365,0.245265528559685,0.704384803771973,0.237393602728844,0.703751802444458,0.234859079122543,0.709962785243988,0.224981814622879,0.706395208835602,0.0322258062660694,0.718981683254242,0.0144171072170138,0.727200508117676,0.00596028659492731,0.730179369449615,0.00679963873699307,0.739684462547302,0.256899982690811,0.73150360584259,0.258340686559677,0.718009412288666,0.255796045064926,0.712889730930328,0.253046303987503,0.712585926055908,0.248802706599236,0.707481443881989,0.240553513169289,0.707483947277069,0.244440108537674,0.706628143787384,0.229367211461067,0.71265172958374,0.221442103385925,0.7465980052948,0.00595395639538765,0.752548217773438,0.0049525573849678,0.756628453731537,0.00516651012003422,0.736218154430389,0.25852045416832,0.721820056438446,0.258771121501923,0.727058708667755,0.258801519870758,0.71391773223877,0.256692379713058,0.709347486495972,0.248382404446602,0.70467346906662,0.241444766521454,0.701652824878693,0.24107763171196,0.700267791748047,0.234651461243629,0.706926941871643,0.226417452096939,0.728388011455536,0.261343628168106,0.733081042766571,0.260611861944199,0.715950906276703,0.25977885723114,0.709334850311279,0.255494743585587,0.703663229942322,0.248681172728539,0.697745978832245,0.241070032119751,0.70028555393219,\r\n0.229136809706688,0.724779963493347,0.2618348300457,0.709648787975311,0.261525928974152,0.704903900623322,0.259082555770874,0.705863475799561,0.252552568912506,0.700305819511414,0.244592025876045,0.696712911128998,0.233846291899681,0.698776483535767,0.227136537432671,0.718958914279938,0.26226019859314,0.725382566452026,0.264245271682739,0.714094996452332,0.262184232473373,0.703650534152985,0.256120145320892,0.700483024120331,0.252165168523788,0.694492340087891,0.244733810424805,0.692388296127319,0.241021931171417,0.696366012096405,0.229212760925293,0.721212387084961,0.26483017206192,0.729621112346649,0.262905865907669,0.703410029411316,0.262407064437866,0.710945188999176,0.265835344791412,0.698001682758331,0.259999126195908,0.699981689453125,0.24837227165699,0.695168375968933,0.247995004057884,0.693368136882782,0.232263803482056,0.693953037261963,0.228840559720993,0.714284896850586,0.265012472867966,0.716548442840576,0.266954481601715,0.706673741340637,0.265708744525909,0.696707844734192,0.256145447492599,0.695568442344666,0.252008199691772,0.690745055675507,0.24849633872509,0.690752625465393,0.244708493351936,0.689094185829163,0.233329772949219,0.716135740280151,0.269600421190262,0.70058685541153,0.266083478927612,0.692598462104797,0.263908505439758,0.711968123912811,0.269109219312668,0.70853728055954,0.268878787755966,0.693872034549713,0.260009258985519,0.690724790096283,0.252274066209793,0.688438415527344,0.244148924946785,0.690010786056519,0.230382531881332,0.686098873615265,0.24049274623394,0.72258722782135,0.266746878623962,0.702460527420044,0.269496589899063,0.692990899085999,0.252788037061691,0.68792188167572,0.25227153301239,0.685939311981201,0.248967289924622,0.684559404850006,0.231805518269539,0.680379092693329,0.236520066857338,0.705921709537506,0.27253246307373,0.688299119472504,0.267926782369614,0.697902917861938,0.269602954387665,0.690896928310394,0.260272592306137,0.690643727779388,0.256046712398529,0.687845885753632,0.256008744239807,0.685529172420502,0.245187044143677,0.680670261383057,0.240910515189171,\r\n0.70337963104248,0.275813907384872,0.68780791759491,0.26371356844902,0.699255049228668,0.273347735404968,0.702045261859894,0.27333003282547,0.685179710388184,0.25239560008049,0.685124039649963,0.256115078926086,0.681974232196808,0.244726225733757,0.682926297187805,0.248063370585442,0.680270195007324,0.232868939638138,0.6763836145401,0.240606680512428,0.690919756889343,0.270375192165375,0.683316171169281,0.267567217350006,0.696596443653107,0.272757798433304,0.687830746173859,0.259872525930405,0.682516098022461,0.251438498497009,0.685040473937988,0.259918123483658,0.676596343517303,0.237056851387024,0.676368415355682,0.244779393076897,0.699156284332275,0.27719634771347,0.692178130149841,0.273274332284927,0.683250367641449,0.271704494953156,0.685048043727875,0.263751536607742,0.696011543273926,0.276479810476303,0.682166695594788,0.255679577589035,0.682095766067505,0.259631991386414,0.677477419376373,0.249025523662567,0.674877107143402,0.234241276979446,0.670334696769714,0.240399062633514,0.686103880405426,0.274732738733292,0.677140712738037,0.271317094564438,0.682328701019287,0.263799637556076,0.677611649036407,0.253099471330643,0.671567797660828,0.236856818199158,0.6746466755867,0.247959554195404,0.667088747024536,0.244622409343719,0.687288880348206,0.277735680341721,0.678150951862335,0.275312572717667,0.679551124572754,0.267592549324036,0.692198395729065,0.280809491872787,0.692094564437866,0.27715077996254,0.679143488407135,0.256089746952057,0.679629623889923,0.263703435659409,0.67342883348465,0.248544454574585,0.6690434217453,0.234902128577232,0.665323913097382,0.242082834243774,0.665815114974976,0.239044457674026,0.681650161743164,0.277576148509979,0.676849484443665,0.267465949058533,0.671783030033112,0.275287240743637,0.677031815052032,0.259750992059708,0.676406443119049,0.256066977977753,0.67693305015564,0.263569235801697,0.662619769573212,0.248286187648773,0.663498342037201,0.245214894413948,0.684493541717529,0.280920892953873,0.68910938501358,0.280280321836472,0.678036987781525,0.280685424804688,0.674107372760773,\r\n0.271304428577423,0.671537399291992,0.28166276216507,0.673613667488098,0.256087213754654,0.66478967666626,0.2522993683815,0.661006927490234,0.244217291474342,0.662538766860962,0.240751013159752,0.681715965270996,0.280839890241623,0.674132704734802,0.267438113689423,0.671423494815826,0.271291762590408,0.669519424438477,0.278763651847839,0.685154438018799,0.284085869789124,0.674299836158752,0.25977885723114,0.672423601150513,0.263024866580963,0.670038461685181,0.256239145994186,0.656082212924957,0.252253800630569,0.66158926486969,0.238687440752983,0.680953860282898,0.285086005926132,0.678806722164154,0.28395676612854,0.673228800296783,0.283369332551956,0.66865599155426,0.275046706199646,0.661439895629883,0.282708495855331,0.671593129634857,0.259788990020752,0.663840174674988,0.255925178527832,0.658191323280334,0.247901320457459,0.658234357833862,0.241606816649437,0.665417611598969,0.285686105489731,0.671403229236603,0.267440646886826,0.668688952922821,0.271223425865173,0.665865778923035,0.278862416744232,0.668886423110962,0.259811758995056,0.664678275585175,0.259750992059708,0.656753182411194,0.25606444478035,0.655330181121826,0.24831910431385,0.65750515460968,0.244617342948914,0.656160712242126,0.239244475960732,0.680394291877747,0.287531912326813,0.673008501529694,0.286906510591507,0.66642028093338,0.288808017969131,0.665956914424896,0.274968206882477,0.65634298324585,0.286076009273529,0.663176834583282,0.278892785310745,0.668759822845459,0.263538837432861,0.667501449584961,0.266693711280823,0.659745991230011,0.25938892364502,0.652134835720062,0.251906931400299,0.6524538397789,0.247435435652733,0.654899775981903,0.241647332906723,0.673292100429535,0.290398120880127,0.658793926239014,0.288699150085449,0.665956914424896,0.271175295114517,0.657712817192078,0.28272619843483,0.660465061664581,0.278910517692566,0.666055679321289,0.263511002063751,0.66062206029892,0.26351860165596,0.648564755916595,0.255778312683105,0.65435791015625,0.259728223085403,0.653828740119934,0.244531258940697,0.651491701602936,0.241695433855057,\r\n0.668916821479797,0.290889322757721,0.656930387020111,0.29245662689209,0.663235068321228,0.275001138448715,0.650597929954529,0.291904658079147,0.654937744140625,0.282705962657928,0.66332620382309,0.263516068458557,0.656978487968445,0.263457834720612,0.644483208656311,0.251820832490921,0.649491429328918,0.24800007045269,0.650258660316467,0.239287525415421,0.667620420455933,0.293168097734451,0.663224935531616,0.271195560693741,0.652266502380371,0.286450743675232,0.657740652561188,0.278877586126328,0.660505592823029,0.275049239397049,0.66324520111084,0.267352014780045,0.660530865192413,0.267326682806015,0.65780645608902,0.267349481582642,0.647389888763428,0.259705424308777,0.636568188667297,0.255899846553802,0.649372458457947,0.244391992688179,0.648790061473846,0.263680636882782,0.646098613739014,0.241938501596451,0.657771050930023,0.295598804950714,0.65215003490448,0.295535504817963,0.647696256637573,0.290256321430206,0.652261435985565,0.282655328512192,0.655041575431824,0.27880921959877,0.653724908828735,0.267407715320587,0.634884417057037,0.259750992059708,0.642356336116791,0.248184904456139,0.633610844612122,0.252463966608047,0.645875751972198,0.245004743337631,0.661057531833649,0.296788841485977,0.641865134239197,0.293790966272354,0.659148454666138,0.27083095908165,0.649481296539307,0.286526709794998,0.657773554325104,0.275016337633133,0.65325140953064,0.271205693483353,0.638338088989258,0.248146921396255,0.630557298660278,0.258882522583008,0.648544490337372,0.267491281032562,0.651332199573517,0.299718350172043,0.652058899402618,0.297918111085892,0.640239596366882,0.296528041362762,0.644045174121857,0.290403187274933,0.646799921989441,0.286524176597595,0.652319669723511,0.278796583414078,0.649595260620117,0.28261986374855,0.654218673706055,0.274596005678177,0.649574995040894,0.271162658929825,0.63448691368103,0.263295769691467,0.64006233215332,0.244247674942017,0.631775140762329,0.248192504048347,0.62869119644165,0.251962631940842,0.63953822851181,0.268243283033371,0.645982146263123,0.29909548163414,0.638667225837708,\r\n0.293259263038635,0.641338467597961,0.290380388498306,0.649585127830505,0.274983406066895,0.636099815368652,0.244756609201431,0.621130704879761,0.25170436501503,0.627374589443207,0.263637602329254,0.640505433082581,0.241525799036026,0.646848082542419,0.271165192127228,0.643379211425781,0.271134793758392,0.638462126255035,0.299741119146347,0.636426389217377,0.296360939741135,0.644073009490967,0.286552041769028,0.646868288516998,0.282609730958939,0.649585127830505,0.278801649808884,0.646860718727112,0.274985939264297,0.629083693027496,0.268334418535233,0.625308454036713,0.248291254043579,0.632869005203247,0.244242608547211,0.622855007648468,0.2614626288414,0.633618474006653,0.27367690205574,0.644673109054565,0.301640123128891,0.638244390487671,0.30283522605896,0.633957743644714,0.294074565172195,0.638993859291077,0.289818286895752,0.641335904598236,0.286534309387207,0.645523846149445,0.278237015008926,0.63012433052063,0.272258996963501,0.627665758132935,0.244683176279068,0.621447205543518,0.247683569788933,0.620166003704071,0.255183309316635,0.617925226688385,0.267620414495468,0.644128680229187,0.2749884724617,0.637905120849609,0.27501380443573,0.631187736988068,0.303470730781555,0.634659111499786,0.299860119819641,0.630709171295166,0.297591477632523,0.636114954948425,0.290681689977646,0.644126176834106,0.282629996538162,0.62623518705368,0.271251261234283,0.633165240287781,0.2421765178442,0.624323546886444,0.244531258940697,0.629663467407227,0.242576569318771,0.617709994316101,0.247744336724281,0.615578055381775,0.251724630594254,0.618082225322723,0.258928120136261,0.615793287754059,0.263531237840652,0.641394138336182,0.274980872869492,0.629848301410675,0.278702884912491,0.633220911026001,0.278801649808884,0.628653228282928,0.301100790500641,0.630296468734741,0.294059365987778,0.63304877281189,0.290208220481873,0.638563394546509,0.286468476057053,0.640399098396301,0.282138794660568,0.641371369361877,0.278763651847839,0.619631767272949,0.277165979146957,0.627316355705261,0.243229821324348,0.61996853351593,0.245328828692436,\r\n0.613557577133179,0.255608677864075,0.614990651607513,0.274841606616974,0.609597504138947,0.266739279031754,0.622373938560486,0.281017124652863,0.638641893863678,0.278735816478729,0.635937750339508,0.278761118650436,0.627607524394989,0.297913044691086,0.635793447494507,0.286354541778564,0.614334881305695,0.248739406466484,0.61593759059906,0.246225148439407,0.611595273017883,0.25189933180809,0.615104615688324,0.271595627069473,0.610040605068207,0.271524727344513,0.609025299549103,0.25906229019165,0.630405366420746,0.282543897628784,0.626941621303558,0.282670497894287,0.633144974708557,0.282518595457077,0.627488493919373,0.303931564092636,0.630336999893188,0.290119588375092,0.627604961395264,0.2940973341465,0.625250220298767,0.300895720720291,0.631342172622681,0.285713940858841,0.613463878631592,0.283966869115829,0.609205067157745,0.255325108766556,0.602535843849182,0.281161457300186,0.60285484790802,0.27211719751358,0.60506272315979,0.259421855211258,0.621713042259216,0.286430507898331,0.635874450206757,0.28246796131134,0.625473082065582,0.307235807180405,0.624564051628113,0.303961932659149,0.624867916107178,0.297945946455002,0.603857517242432,0.285855740308762,0.615081787109375,0.286881178617477,0.610886335372925,0.249012857675552,0.606108486652374,0.252410799264908,0.602214276790619,0.266979813575745,0.606110990047455,0.255239009857178,0.627582192420959,0.286270976066589,0.624951481819153,0.286364674568176,0.624893248081207,0.294001132249832,0.622454941272736,0.301554024219513,0.602740943431854,0.290744990110397,0.613203048706055,0.290117055177689,0.59951263666153,0.288063615560532,0.598763167858124,0.27831295132637,0.598332762718201,0.270780324935913,0.602285146713257,0.255109876394272,0.599993705749512,0.263290703296661,0.622196674346924,0.290157586336136,0.616730153560638,0.290185421705246,0.622325778007507,0.307007908821106,0.622128307819366,0.297938346862793,0.627587258815765,0.290076553821564,0.620264768600464,0.305207669734955,0.606576859951019,0.251043528318405,0.593987882137299,0.291643857955933,0.596788227558136,\r\n0.27375540137291,0.594154953956604,0.284435302019119,0.600631773471832,0.259619325399399,0.623870313167572,0.290656387805939,0.619507730007172,0.290193021297455,0.616236388683319,0.312155425548553,0.619419097900391,0.301748991012573,0.603991746902466,0.29419356584549,0.594577789306641,0.296130537986755,0.613876581192017,0.293909966945648,0.592055976390839,0.279163718223572,0.593547284603119,0.267192512750626,0.595479190349579,0.262989401817322,0.597795963287354,0.259429454803467,0.619441866874695,0.293930232524872,0.616676926612854,0.293907433748245,0.616704821586609,0.307846009731293,0.613856315612793,0.315588802099228,0.617087125778198,0.304691165685654,0.619388699531555,0.297890245914459,0.610671103000641,0.294120132923126,0.597481966018677,0.299599349498749,0.589650571346283,0.292281925678253,0.587652862071991,0.2994145154953,0.586933732032776,0.274294704198837,0.585343658924103,0.287410378456116,0.591460943222046,0.270385324954987,0.59782886505127,0.255925178527832,0.610853374004364,0.314917832612991,0.615119755268097,0.310724884271622,0.61659848690033,0.301721155643463,0.604743719100952,0.298386514186859,0.590202569961548,0.302123725414276,0.613927245140076,0.297705411911011,0.611149609088898,0.29773074388504,0.581950843334198,0.27464160323143,0.580234110355377,0.282280594110489,0.592316746711731,0.263260334730148,0.589868307113647,0.266805112361908,0.594866454601288,0.25915852189064,0.602019309997559,0.25284880399704,0.614258885383606,0.305233001708984,0.608587265014648,0.317979007959366,0.611959874629974,0.311816155910492,0.612676441669464,0.308610677719116,0.608379662036896,0.297834545373917,0.602275013923645,0.301865458488464,0.590232908725739,0.305729269981384,0.585460126399994,0.289722084999084,0.583383917808533,0.296307772397995,0.585807025432587,0.30729404091835,0.581495046615601,0.277882516384125,0.583832085132599,0.270977824926376,0.586665391921997,0.270727157592773,0.578005969524384,0.286671042442322,0.587488234043121,0.267281115055084,0.607351660728455,0.315538167953491,0.608820199966431,0.312935292720795,\r\n0.613836050033569,0.301667958498001,0.605700790882111,0.30167555809021,0.596651494503021,0.305807769298553,0.608485996723175,0.301599591970444,0.579535305500031,0.307362407445908,0.57895040512085,0.312066823244095,0.579325139522552,0.27447447180748,0.581330478191376,0.270519524812698,0.576213359832764,0.28237172961235,0.578211069107056,0.278794050216675,0.589035332202911,0.263169169425964,0.592716813087463,0.259318023920059,0.611131906509399,0.305433034896851,0.605143785476685,0.318482875823975,0.608812630176544,0.309494316577911,0.603009283542633,0.305458337068558,0.600216507911682,0.305460870265961,0.588118731975555,0.309276580810547,0.592007875442505,0.309355080127716,0.575820863246918,0.293218731880188,0.576826095581055,0.299037247896194,0.576780498027802,0.304787367582321,0.578793406486511,0.316072404384613,0.584556221961975,0.266225278377533,0.5859614610672,0.266544312238693,0.574149787425995,0.286078542470932,0.603814482688904,0.316191405057907,0.605364084243774,0.320979386568069,0.605989456176758,0.312618792057037,0.597507297992706,0.309200614690781,0.581965982913971,0.315333068370819,0.594760119915009,0.30930694937706,0.574370086193085,0.312960624694824,0.575218260288239,0.317340940237045,0.577593266963959,0.274537771940231,0.57574999332428,0.278472483158112,0.574213087558746,0.282002061605453,0.608379662036896,0.305498868227005,0.602031946182251,0.319328546524048,0.605609655380249,0.309238582849503,0.586913526058197,0.315639436244965,0.584698021411896,0.314720332622528,0.589268267154694,0.316669970750809,0.57260525226593,0.29292756319046,0.572967350482941,0.300146251916885,0.572298884391785,0.307283908128738,0.57735276222229,0.320964217185974,0.579841673374176,0.270825892686844,0.572666049003601,0.282824963331223,0.600644469261169,0.316492736339569,0.602923214435577,0.321627587080002,0.603001713752747,0.313208758831024,0.59474241733551,0.313036561012268,0.582844614982605,0.320905983448029,0.57158488035202,0.288210481405258,0.571440577507019,0.315842002630234,0.573823153972626,0.321893453598022,0.599256932735443,\r\n0.319389313459396,0.599479734897614,0.322263121604919,0.589349269866943,0.321389585733414,0.570435345172882,0.294773370027542,0.570475876331329,0.300943821668625,0.569202303886414,0.308575212955475,0.57892507314682,0.324939429759979,0.575942397117615,0.325192630290985,0.59747439622879,0.317161172628403,0.600143134593964,0.312968194484711,0.592023015022278,0.317059904336929,0.569131374359131,0.291666626930237,0.571422815322876,0.322566956281662,0.569379508495331,0.316788971424103,0.58218377828598,0.32498499751091,0.574691593647003,0.32753723859787,0.597028791904449,0.321007251739502,0.602946043014526,0.309284180402756,0.592678844928741,0.320986986160278,0.568346500396729,0.299011915922165,0.566926062107086,0.309041112661362,0.578790903091431,0.328289240598679,0.581558346748352,0.328312009572983,0.57716029882431,0.328836143016815,0.595033586025238,0.320414751768112,0.595231056213379,0.323592394590378,0.591985046863556,0.324010193347931,0.594681620597839,0.316968739032745,0.586933732032776,0.324174761772156,0.569688439369202,0.32248592376709,0.585014522075653,0.328393042087555,0.58985310792923,0.325352132320404,0.587189495563507,0.327132105827332,0.566022098064423,0.304675966501236,0.597421228885651,0.312998592853546,0.594471454620361,0.325969934463501,0.588865637779236,0.328755110502243,0.0151817658916116,0.855978429317474,0.0145639618858695,0.843819797039032,0.019177233800292,0.857411503791809,0.0104824071750045,0.8457390666008,0.0186860300600529,0.844685733318329,0.0151463178917766,0.860541045665741,0.0109989307820797,0.853578090667725,0.0106647098436952,0.839404046535492,0.0227321367710829,0.846508800983429,0.0184885356575251,0.841303050518036,0.0191974900662899,0.86343252658844,0.0110596986487508,0.857148170471191,0.00682622427120805,0.84464019536972,0.0146551132202148,0.837023973464966,0.0225397069007158,0.84292858839035,0.0228688642382622,0.857538104057312,0.0230258479714394,0.862298250198364,0.015050102956593,0.865878462791443,0.0107052214443684,0.861710786819458,0.00781876128166914,0.852904558181763,0.0102190803736448,\r\n0.835909903049469,0.00585394306108356,0.837722778320313,0.0284088421612978,0.844569265842438,0.0268947165459394,0.850919485092163,0.0224738754332066,0.840492784976959,0.0184429585933685,0.838669776916504,0.0233701970428228,0.867063403129578,0.0190101228654385,0.866531729698181,0.00833528582006693,0.861498117446899,0.00536780245602131,0.849288880825043,0.00719589367508888,0.855299830436707,0.0101633770391345,0.833398163318634,0.00564125645905733,0.834304630756378,0.00242563895881176,0.835798501968384,0.0288747269660234,0.847268402576447,0.0277809090912342,0.84232085943222,0.026671901345253,0.858160972595215,0.0179365631192923,0.836289703845978,0.0269200354814529,0.863260388374329,0.0192531943321228,0.869195342063904,0.0121535155922174,0.864809930324554,0.00490191765129566,0.843556523323059,0.00603624572977424,0.832542359828949,0.00189392280299217,0.832937359809875,0.034151379019022,0.845171928405762,0.0333411432802677,0.843156456947327,0.0307787768542767,0.851486682891846,0.021916838362813,0.838598847389221,0.0263630002737045,0.839545845985413,0.0268491413444281,0.866420269012451,0.010234272107482,0.831220686435699,0.00610714126378298,0.830942153930664,0.00213192915543914,0.831397891044617,0.0316092669963837,0.847992539405823,0.030312892049551,0.840538382530212,0.0304344277828932,0.858642041683197,0.0277100149542093,0.869595408439636,0.0306572411209345,0.863979458808899,0.0231271255761385,0.870643615722656,0.0133688664063811,0.831230819225311,0.00220788852311671,0.830800354480743,0.0375594273209572,0.843439996242523,0.0343488715589046,0.848721742630005,0.0340754166245461,0.841186583042145,0.0345666222274303,0.85738617181778,0.0221599098294973,0.837099969387054,0.0325309075415134,0.866688668727875,0.0101026091724634,0.829012811183929,0.0381012707948685,0.84596186876297,0.0346780307590961,0.862434983253479,0.0306217949837446,0.869453608989716,0.0263275522738695,0.871777951717377,0.00626918813213706,0.829493880271912,0.0383240841329098,0.841576457023621,0.0417675785720348,0.843637526035309,0.0380658209323883,0.851390421390533,\r\n0.0385266430675983,0.861680448055267,0.0339589454233646,0.868714272975922,0.0310218464583158,0.871772885322571,0.0400559604167938,0.864754259586334,0.0419600121676922,0.847597539424896,0.0381316542625427,0.857289969921112,0.0385165140032768,0.867909073829651,0.0423853844404221,0.84055358171463,0.04595547914505,0.846893668174744,0.0419498831033707,0.856358170509338,0.042192954570055,0.861006915569305,0.0346527099609375,0.871884286403656,0.0379594787955284,0.871504545211792,0.0432614497840405,0.866622865200043,0.0456668324768543,0.841530919075012,0.0463960431516171,0.855021297931671,0.0456972159445286,0.843632459640503,0.0465125143527985,0.861087918281555,0.0426790937781334,0.869266271591187,0.049793966114521,0.848174810409546,0.049404039978981,0.842781722545624,0.0467100106179714,0.857796370983124,0.0540730133652687,0.864698529243469,0.0535463616251946,0.853481888771057,0.0537286661565304,0.859128177165985,0.0496977493166924,0.84036111831665,0.0573645904660225,0.844260394573212,0.0575266368687153,0.860991716384888,0.0558150187134743,0.839530646800995,0.0571620315313339,0.851922154426575,0.0593648590147495,0.84038645029068,0.0576076619327068,0.856894969940186,0.0579013712704182,0.864845395088196,0.0640895366668701,0.834375500679016,0.0612537153065205,0.842624723911285,0.0525943376123905,0.867063403129578,0.0615676827728748,0.86194372177124,0.0627323910593987,0.85884964466095,0.0539818629622459,0.836958169937134,0.0638971030712128,0.836309969425201,0.0612486526370049,0.851917088031769,0.0619474798440933,0.855882167816162,0.0651833564043045,0.839100182056427,0.0615778118371964,0.865108728408813,0.0605954006314278,0.834264099597931,0.068667359650135,0.835266768932343,0.0652542486786842,0.850306749343872,0.0701257809996605,0.859310507774353,0.0668949708342552,0.861847519874573,0.0537033453583717,0.86795973777771,0.0719791948795319,0.855269432067871,0.0675634145736694,0.830268681049347,0.0688294097781181,0.83188408613205,0.0683736503124237,0.837798774242401,0.0659530758857727,0.853962957859039,0.069285161793232,0.844584465026855,\r\n0.0752606391906738,0.856454432010651,0.0725868716835976,0.834076762199402,0.0726020634174347,0.838857114315033,0.0707081407308578,0.850316882133484,0.0749568045139313,0.858910441398621,0.0798587203025818,0.853243887424469,0.0756455063819885,0.852651357650757,0.0720906034111977,0.830405354499817,0.0795143693685532,0.845192134380341,0.0689712017774582,0.863756656646729,0.0788408666849136,0.855147898197174,0.0729160234332085,0.827605009078979,0.0759392157196999,0.83166629076004,0.0793016850948334,0.843019723892212,0.0795751437544823,0.849997878074646,0.0797726362943649,0.847678542137146,0.0824261531233788,0.853841423988342,0.0722678378224373,0.82619720697403,0.0761822834610939,0.826997339725494,0.0810284987092018,0.835590898990631,0.0842643678188324,0.844148993492126,0.0846745520830154,0.848073542118073,0.0846998691558838,0.850899219512939,0.0803752467036247,0.829544484615326,0.0818741768598557,0.832547426223755,0.0844213515520096,0.835403501987457,0.0874749273061752,0.85197788476944,0.0764354839920998,0.823280394077301,0.0800815373659134,0.826789736747742,0.0881990715861321,0.846868336200714,0.0884927809238434,0.840892851352692,0.0903107449412346,0.848119139671326,0.0728248730301857,0.824277997016907,0.0857633054256439,0.830749750137329,0.0873837769031525,0.829336881637573,0.0895815342664719,0.832881629467011,0.0883864387869835,0.844209730625153,0.0883965641260147,0.835727632045746,0.079889103770256,0.822525858879089,0.0846694856882095,0.826880872249603,0.0924882516264915,0.844852864742279,0.0922755599021912,0.839404046535492,0.0923667177557945,0.842908322811127,0.0841884091496468,0.824475467205048,0.0768203437328339,0.821609258651733,0.0916223153471947,0.831408023834229,0.0890953913331032,0.828065812587738,0.0924072265625,0.835206031799316,0.0842846259474754,0.821973860263824,0.0797776952385902,0.81987738609314,0.0958962962031364,0.832152426242828,0.0881281793117523,0.825802206993103,0.0959266796708107,0.834294497966766,0.0966710820794106,0.842427253723145,0.096245713531971,0.836892306804657,0.0964583978056908,0.840128183364868,\r\n0.0838946998119354,0.819472253322601,0.0871812179684639,0.820864856243134,0.0939314812421799,0.827012538909912,0.0802233293652534,0.817937910556793,0.0999727919697762,0.832501888275146,0.0935212969779968,0.824495732784271,0.0928427278995514,0.828871011734009,0.100458927452564,0.835352897644043,0.100469060242176,0.839439511299133,0.0886295065283775,0.818211376667023,0.0840618163347244,0.813117027282715,0.0932478457689285,0.821437120437622,0.100418418645859,0.825245201587677,0.0966001898050308,0.8292356133461,0.088204137980938,0.815507173538208,0.0802131965756416,0.813567698001862,0.104180946946144,0.832861423492432,0.100008234381676,0.82782781124115,0.103861913084984,0.835190832614899,0.0950151681900024,0.816945374011993,0.098787821829319,0.818991184234619,0.0764759927988052,0.814686834812164,0.0802537128329277,0.809987485408783,0.0881534963846207,0.811531960964203,0.103856854140759,0.82633900642395,0.0999424085021019,0.829574882984161,0.0916324406862259,0.813993096351624,0.0764051005244255,0.811131954193115,0.0759594663977623,0.818327844142914,0.0843453928828239,0.809086084365845,0.107112981379032,0.820667386054993,0.104054346680641,0.828531682491302,0.0956279113888741,0.813820898532867,0.100702002644539,0.815679371356964,0.0725362300872803,0.815400838851929,0.0762633085250854,0.806407272815704,0.0801625624299049,0.805450141429901,0.0920578166842461,0.811769962310791,0.0876369699835777,0.808047950267792,0.103497311472893,0.816707372665405,0.105786219239235,0.827336609363556,0.107619374990463,0.823650062084198,0.0723184794187546,0.810124218463898,0.0724653303623199,0.819158315658569,0.0850037112832069,0.804123401641846,0.0922249257564545,0.808994948863983,0.108389101922512,0.815228700637817,0.107518099248409,0.826136469841003,0.111331261694431,0.82043445110321,0.0959317460656166,0.811223089694977,0.103532753884792,0.813922166824341,0.0684546753764153,0.812028229236603,0.0647681057453156,0.822424590587616,0.0762481167912483,0.801231861114502,0.072237454354763,0.805541336536407,0.0813373997807503,0.800548255443573,0.0883864387869835,\r\n0.805090606212616,0.111417353153229,0.817598640918732,0.110971719026566,0.823158860206604,0.0645452961325645,0.809567153453827,0.06458580493927,0.813932299613953,0.089206799864769,0.800922989845276,0.0963419303297997,0.808498680591583,0.0939719900488853,0.805485606193542,0.090624712407589,0.803470134735107,0.107345923781395,0.810990154743195,0.111452795565128,0.814307034015656,0.113361909985542,0.820561051368713,0.103892296552658,0.811040759086609,0.0616993457078934,0.820115387439728,0.0811753496527672,0.796076774597168,0.0720247700810432,0.801241993904114,0.0676950812339783,0.802057325839996,0.0869533345103264,0.797114849090576,0.113848052918911,0.815593302249908,0.0611068606376648,0.813375294208527,0.0608334057033062,0.826987206935883,0.0756151229143143,0.796988248825073,0.0618006251752377,0.808792352676392,0.0945037081837654,0.796648979187012,0.0983421951532364,0.79686164855957,0.0992891564965248,0.802021861076355,0.103497311472893,0.806928813457489,0.111650295555592,0.807303547859192,0.11472412198782,0.810519218444824,0.116248369216919,0.814084231853485,0.0575975328683853,0.826683342456818,0.0641604289412498,0.826298475265503,0.0569493472576141,0.817284643650055,0.0815197005867958,0.792273700237274,0.0941087156534195,0.790526628494263,0.0728400647640228,0.794613301753998,0.065715067088604,0.796532511711121,0.102808609604836,0.802634596824646,0.107720658183098,0.80230039358139,0.0570506267249584,0.81107622385025,0.0535970032215118,0.827893674373627,0.0726476386189461,0.820925652980804,0.0550554245710373,0.815730035305023,0.0855658128857613,0.79026335477829,0.0777014717459679,0.791240692138672,0.061192948371172,0.802452266216278,0.0983016788959503,0.791012823581696,0.102454133331776,0.797849178314209,0.115271024405956,0.803824603557587,0.112506099045277,0.802695393562317,0.117443464696407,0.807389676570892,0.0563366077840328,0.803672730922699,0.0543363392353058,0.831402957439423,0.0533893778920174,0.820561051368713,0.0831300467252731,0.788617551326752,0.0900676771998405,0.78499174118042,0.0696902796626091,0.788369417190552,\r\n0.0730324983596802,0.784419536590576,0.0600788779556751,0.79059249162674,0.0985093042254448,0.785928606987,0.106231853365898,0.79302316904068,0.110136166214943,0.798315048217773,0.0495002530515194,0.816408574581146,0.053414698690176,0.803880333900452,0.0503256805241108,0.830643355846405,0.0496015325188637,0.822520792484283,0.0842390507459641,0.785067677497864,0.0935314297676086,0.784500539302826,0.0631172582507133,0.789063155651093,0.0776103213429451,0.784323275089264,0.0575924701988697,0.797094643115997,0.102752909064293,0.788617551326752,0.117777690291405,0.79951012134552,0.112997308373451,0.798831582069397,0.0515207760035992,0.809977352619171,0.0470948703587055,0.834172964096069,0.0479810647666454,0.828810214996338,0.0941087156534195,0.780104994773865,0.0691737532615662,0.778403520584106,0.0775850042700768,0.781097531318665,0.0562606453895569,0.792896568775177,0.0594813302159309,0.784399271011353,0.103173218667507,0.781634330749512,0.106545813381672,0.790784895420074,0.111366711556911,0.794213235378265,0.11902342736721,0.805642604827881,0.115812867879868,0.798477053642273,0.0454744026064873,0.814788103103638,0.0500269047915936,0.802194058895111,0.052462674677372,0.794496834278107,0.0503104887902737,0.835626304149628,0.0452110767364502,0.826440274715424,0.0459504164755344,0.821411788463593,0.0897334516048431,0.780424058437347,0.0724045634269714,0.773182570934296,0.0775242373347282,0.774752378463745,0.0898955017328262,0.775856375694275,0.0568835139274597,0.787295818328857,0.0990005061030388,0.778935253620148,0.107183873653412,0.784627139568329,0.119469054043293,0.797626316547394,0.117038354277611,0.792597830295563,0.114405088126659,0.793352365493774,0.0454338900744915,0.808782279491425,0.0457124076783657,0.836811304092407,0.042192954570055,0.833226025104523,0.0417675785720348,0.825822472572327,0.0945340916514397,0.775942444801331,0.059162300080061,0.779558122158051,0.0662164017558098,0.773375034332275,0.086046889424324,0.774701774120331,0.0528981760144234,0.786328613758087,0.106302745640278,0.780074656009674,0.102641500532627,\r\n0.775998115539551,0.110936276614666,0.788956820964813,0.119063936173916,0.791190028190613,0.0421169921755791,0.819224119186401,0.0417371951043606,0.812595427036285,0.0439349561929703,0.803135931491852,0.0411750972270966,0.796051442623138,0.0415143817663193,0.837251842021942,0.072237454354763,0.768260419368744,0.0817627757787704,0.771501362323761,0.0904018953442574,0.771673500537872,0.047793697565794,0.785837411880493,0.0556327141821384,0.780165791511536,0.0981092527508736,0.773147106170654,0.109356313943863,0.781573593616486,0.115721717476845,0.786931216716766,0.118365108966827,0.78612607717514,0.039063423871994,0.817289710044861,0.038354467600584,0.82299679517746,0.0415751487016678,0.807080745697021,0.0447654463350773,0.792729496955872,0.038283571600914,0.836127638816834,0.0377771779894829,0.829939484596252,0.0941998735070229,0.772154569625854,0.061972800642252,0.770139157772064,0.0682875663042068,0.765206813812256,0.0800207704305649,0.763616740703583,0.089348591864109,0.767085552215576,0.049454677850008,0.781862199306488,0.051824614405632,0.779517590999603,0.0550706163048744,0.772686302661896,0.106971189379692,0.771131694316864,0.1105767339468,0.775942444801331,0.103011168539524,0.76752108335495,0.112652957439423,0.782915532588959,0.120081789791584,0.786298274993896,0.0345514304935932,0.818489849567413,0.0365871451795101,0.814200699329376,0.0380506291985512,0.808134078979492,0.0369466841220856,0.802148461341858,0.0384152345359325,0.798811316490173,0.0414536148309708,0.790987491607666,0.0379847995936871,0.838127911090851,0.0732147991657257,0.764589011669159,0.0858038142323494,0.760659396648407,0.0940125063061714,0.764857411384583,0.0443198196589947,0.785563945770264,0.0455554276704788,0.782667398452759,0.0993043482303619,0.767126083374023,0.116775020956993,0.776747584342957,0.119013294577599,0.775805711746216,0.114172145724297,0.777623653411865,0.0302521251142025,0.816175639629364,0.0342172086238861,0.82175612449646,0.035032507032156,0.798836648464203,0.0385874100029469,0.79321563243866,0.0423246175050735,0.787002146244049,\r\n0.0347691811621189,0.837039172649384,0.0339792035520077,0.833859026432037,0.0341766960918903,0.827559411525726,0.0591116584837437,0.765054941177368,0.0665708780288696,0.761849403381348,0.0696092545986176,0.759509861469269,0.0787699669599533,0.760791063308716,0.0902398526668549,0.759823858737946,0.049702811986208,0.777350246906281,0.0466289855539799,0.779330253601074,0.111538887023926,0.770159363746643,0.107001572847366,0.767880618572235,0.102479450404644,0.761393666267395,0.121130034327507,0.778717517852783,0.029765984043479,0.818302512168884,0.029482401907444,0.813025832176209,0.0337968990206718,0.804482936859131,0.0403699278831482,0.787650346755981,0.05493388697505,0.767207086086273,0.0742377191781998,0.759980797767639,0.0844112262129784,0.756820917129517,0.0981092527508736,0.762148201465607,0.0949088260531425,0.759671926498413,0.0427297353744507,0.783984005451202,0.0442590527236462,0.780707657337189,0.114415213465691,0.769283354282379,0.110450133681297,0.766123414039612,0.106485046446323,0.76497894525528,0.117063671350479,0.771678566932678,0.120112180709839,0.772215366363525,0.0231828298419714,0.816185772418976,0.030241996049881,0.825219869613647,0.0262515917420387,0.814990699291229,0.0300748851150274,0.809460818767548,0.0320650227367878,0.802310526371002,0.0308800563216209,0.835241436958313,0.0631375089287758,0.758876860141754,0.0579823963344097,0.76103413105011,0.0654568076133728,0.755797982215881,0.0736806839704514,0.755711913108826,0.0904373452067375,0.754704177379608,0.0940580815076828,0.756430983543396,0.0474493503570557,0.776347577571869,0.0460213124752045,0.776909649372101,0.0522753074765205,0.767414748668671,0.113797411322594,0.766391813755035,0.0987270548939705,0.757960319519043,0.106555946171284,0.761459529399872,0.0258971154689789,0.819553315639496,0.0256135333329439,0.812327027320862,0.0304445549845696,0.805232405662537,0.0293507389724255,0.836142838001251,0.0547920987010002,0.762350738048553,0.069204144179821,0.75132143497467,0.0859456062316895,0.752759635448456,0.049064751714468,0.774094104766846,\r\n0.117823265492916,0.764477610588074,0.114415213465691,0.76346480846405,0.110769160091877,0.762462139129639,0.11767640709877,0.767885684967041,0.10290989279747,0.757231116294861,0.106910422444344,0.759018659591675,0.119783021509647,0.7676020860672,0.0217345356941223,0.815031170845032,0.0218358151614666,0.818074643611908,0.0263022314757109,0.829579949378967,0.0265351738780737,0.807946681976318,0.0281151309609413,0.805040001869202,0.0227574575692415,0.831104218959808,0.0567721091210842,0.757301986217499,0.0619424171745777,0.746890485286713,0.0653352737426758,0.747488021850586,0.0789269506931305,0.752906441688538,0.0727084055542946,0.744029343128204,0.0945340916514397,0.753519177436829,0.0898955017328262,0.751579701900482,0.0985143706202507,0.754851043224335,0.0498192831873894,0.76832115650177,0.0529234930872917,0.762178599834442,0.11774730682373,0.766184151172638,0.11771185696125,0.767034947872162,0.110870443284512,0.760239064693451,0.0178656671196222,0.818297445774078,0.0219370946288109,0.82037365436554,0.0222206767648458,0.824232399463654,0.0231119338423014,0.811152160167694,0.021987734362483,0.832836091518402,0.0579823963344097,0.752896308898926,0.0541540384292603,0.758775591850281,0.069057285785675,0.743735611438751,0.0859861224889755,0.748551428318024,0.0825021117925644,0.748131155967712,0.0514397509396076,0.764887809753418,0.118942402303219,0.761844336986542,0.118800610303879,0.766037344932556,0.115250773727894,0.761044263839722,0.101907223463058,0.7530837059021,0.106621772050858,0.756360113620758,0.110693201422691,0.75739312171936,0.0183214247226715,0.81960391998291,0.0214306991547346,0.81378036737442,0.0260642264038324,0.83621883392334,0.0147260092198849,0.826896071434021,0.0551313832402229,0.753073573112488,0.0629855915904045,0.740018665790558,0.0560682155191898,0.746809422969818,0.0776761546730995,0.744262278079987,0.0720906034111977,0.739446461200714,0.0944125577807426,0.750992298126221,0.0985548794269562,0.752633035182953,0.0901689529418945,0.748612225055695,0.0529386848211288,0.756643652915955,0.120537549257278,\r\n0.763799071311951,0.118765160441399,0.766893148422241,0.116116710007191,0.759560525417328,0.114030353724957,0.758314788341522,0.0181593764573336,0.822272658348084,0.0173947177827358,0.825852870941162,0.0585090480744839,0.738200724124908,0.0577899627387524,0.742145538330078,0.0540325008332729,0.754861176013947,0.0655783414840698,0.739360332489014,0.0862545073032379,0.745553612709045,0.0817222595214844,0.741391003131866,0.12228462100029,0.76070499420166,0.121925078332424,0.75882625579834,0.119296878576279,0.766822218894959,0.0985042378306389,0.75040990114212,0.106576196849346,0.751868367195129,0.1110730022192,0.754055976867676,0.114845655858517,0.754805445671082,0.0147462654858828,0.821568787097931,0.014422170817852,0.824622333049774,0.0547262653708458,0.751144230365753,0.0603725872933865,0.734463512897491,0.0539514794945717,0.740828931331635,0.054316084831953,0.751584768295288,0.0774330869317055,0.739395797252655,0.0668544620275497,0.732767105102539,0.0942707657814026,0.74839448928833,0.0899461433291435,0.74433821439743,0.0534957237541676,0.750095963478088,0.12015775591135,0.76569801568985,0.102606050670147,0.749827563762665,0.119347520172596,0.754121840000153,0.0102494647726417,0.825326204299927,0.0543211475014687,0.74921989440918,0.0539818629622459,0.736428320407867,0.0556175224483013,0.734336912631989,0.0535058490931988,0.745366215705872,0.0730932652950287,0.733096241950989,0.085925355553627,0.740504801273346,0.0818539261817932,0.736018121242523,0.100519694387913,0.748956561088562,0.106343254446983,0.747675359249115,0.110141232609749,0.749366760253906,0.114212661981583,0.750668168067932,0.118912018835545,0.750804901123047,0.0571519061923027,0.732296109199524,0.0517081432044506,0.735197782516479,0.0599978528916836,0.730802237987518,0.0778280720114708,0.734985113143921,0.0687585100531578,0.729576766490936,0.0984333455562592,0.748080492019653,0.0941239073872566,0.745786547660828,0.0897081345319748,0.740565598011017,0.085783563554287,0.736625790596008,0.102525025606155,0.747832357883453,0.0994765236973763,0.748516023159027,\r\n0.121808603405952,0.751422703266144,0.0525436960160732,0.732858240604401,0.0534754656255245,0.731101036071777,0.0774482786655426,0.731480836868286,0.0734983831644058,0.72957170009613,0.0946860089898109,0.742808938026428,0.0895511507987976,0.736757457256317,0.081185482442379,0.732108771800995,0.0853075459599495,0.733136773109436,0.101319804787636,0.745806813240051,0.110450133681297,0.745923280715942,0.114840589463711,0.747229754924774,0.123165749013424,0.749331295490265,0.126214250922203,0.75090616941452,0.0555516928434372,0.728538691997528,0.0612840987741947,0.727384090423584,0.0655580833554268,0.724639415740967,0.0977243930101395,0.745796680450439,0.100479185581207,0.74795389175415,0.0980029106140137,0.74430787563324,0.0928680449724197,0.737967789173126,0.0891764163970947,0.733151912689209,0.102373108267784,0.743766009807587,0.106414154171944,0.743062138557434,0.118547409772873,0.749240159988403,0.129961594939232,0.751888632774353,0.0506497733294964,0.72907543182373,0.0576684288680553,0.726781487464905,0.0524424165487289,0.726649820804596,0.0813120827078819,0.727591693401337,0.0768507272005081,0.727652490139008,0.0723184794187546,0.72645229101181,0.0998816415667534,0.746941089630127,0.0977800935506821,0.742606341838837,0.0927870273590088,0.735445916652679,0.0924477353692055,0.732777178287506,0.0851657539606094,0.73081237077713,0.0895308926701546,0.730574369430542,0.110738776624203,0.742297470569611,0.119124703109264,0.745756149291992,0.126513034105301,0.747169017791748,0.120613507926464,0.755337178707123,0.0540476962924004,0.724578619003296,0.0515714175999165,0.728452563285828,0.0612689070403576,0.722466945648193,0.084897369146347,0.727920889854431,0.0651934817433357,0.720208466053009,0.095364585518837,0.740302264690399,0.0927211940288544,0.730538904666901,0.0980181023478508,0.740104734897614,0.10266175866127,0.74072253704071,0.106485046446323,0.739633798599243,0.130589514970779,0.748885691165924,0.0557542517781258,0.7225581407547,0.0512574501335621,0.722902476787567,0.0787547752261162,0.724796414375305,0.0883003547787666,\r\n0.726340889930725,0.0734376162290573,0.724781215190887,0.0687382593750954,0.720927536487579,0.0887814313173294,0.728331029415131,0.11093121021986,0.738175392150879,0.116724386811256,0.742986142635345,0.129981845617294,0.744956016540527,0.130741432309151,0.750546634197235,0.051946148276329,0.720583200454712,0.0596940144896507,0.718365132808685,0.0948733761906624,0.737972855567932,0.0930300951004028,0.727703094482422,0.0979218855500221,0.738448858261108,0.102454133331776,0.737486720085144,0.10666735470295,0.737537324428558,0.11397971957922,0.738940060138702,0.122137762606144,0.743897676467896,0.134235575795174,0.747194290161133,0.134265959262848,0.748981893062592,0.0537641122937202,0.719712197780609,0.0549743995070457,0.718091726303101,0.0618158169090748,0.716466188430786,0.0875154361128807,0.725090086460114,0.0739338845014572,0.721428871154785,0.093166820704937,0.726523220539093,0.0969141572713852,0.73591685295105,0.106728121638298,0.735111713409424,0.110728651285172,0.735167384147644,0.122446663677692,0.741937935352325,0.13534964621067,0.744945883750916,0.050624456256628,0.71679025888443,0.0563011579215527,0.716562390327454,0.0579773299396038,0.714865982532501,0.0650364980101585,0.718349993228912,0.0930756703019142,0.72565221786499,0.0811145827174187,0.722755610942841,0.0705005154013634,0.7202388048172,0.10276810079813,0.734904050827026,0.114617772400379,0.734316647052765,0.120780616998672,0.737658858299255,0.131095916032791,0.742808938026428,0.138175338506699,0.745796680450439,0.0520474277436733,0.715645790100098,0.0850644782185555,0.722421407699585,0.0686876177787781,0.715600252151489,0.0759645327925682,0.719180464744568,0.10710284858942,0.732417643070221,0.103239044547081,0.731268167495728,0.110657751560211,0.731916308403015,0.123591117560863,0.740889668464661,0.126837119460106,0.744829416275024,0.133941859006882,0.741026401519775,0.138631090521812,0.744049608707428,0.0795346274971962,0.718319594860077,0.0670114457607269,0.716425657272339,0.100301951169968,0.731825172901154,0.114779822528362,0.732316374778748,0.126163616776466,\r\n0.740089595317841,0.142023950815201,0.740889668464661,0.0815399587154388,0.71654212474823,0.0723944380879402,0.715666055679321,0.0642414540052414,0.713812649250031,0.0767190605401993,0.716000318527222,0.0987270548939705,0.73073136806488,0.107366181910038,0.728432297706604,0.102033823728561,0.728037357330322,0.111447736620903,0.729941368103027,0.126568734645844,0.737567722797394,0.126751035451889,0.741775870323181,0.138393089175224,0.739775598049164,0.142104968428612,0.742545604705811,0.0865431576967239,0.721312403678894,0.0699384137988091,0.712739109992981,0.114749439060688,0.730179369449615,0.120917350053787,0.732898712158203,0.130174279212952,0.739871799945831,0.135045811533928,0.738853991031647,0.146287813782692,0.739294528961182,0.146419480443001,0.74118846654892,0.0790586173534393,0.713908851146698,0.0890042409300804,0.722897410392761,0.0650719478726387,0.712055444717407,0.0745820701122284,0.713503777980804,0.111316069960594,0.726923286914825,0.130923748016357,0.74077320098877,0.138357639312744,0.737329721450806,0.146394148468971,0.737294256687164,0.119225986301899,0.729870498180389,0.134473577141762,0.737436056137085,0.142510086297989,0.735957384109497,0.150744095444679,0.7383171916008,0.126639634370804,0.735749781131744,0.114759564399719,0.728675365447998,0.137982904911041,0.735126912593842,0.150450393557549,0.736235916614532,0.115336857736111,0.726548552513123,0.14244931936264,0.733678579330444,0.15443067252636,0.736904323101044,0.153367236256599,0.732807576656342,0.13903620839119,0.733055710792542,0.146581515669823,0.732483506202698,0.154896557331085,0.734990179538727,0.113240376114845,0.722406208515167,0.142034083604813,0.731268167495728,0.158512219786644,0.732706308364868,0.146571397781372,0.729981899261475,0.137917071580887,0.732285976409912,0.154501557350159,0.730387032032013,0.159221172332764,0.734458446502686,0.150136426091194,0.727308094501495,0.134979978203774,0.735572516918182,0.142530351877213,0.729095697402954,0.158431202173233,0.729318499565125,0.162836849689484,0.732640504837036,0.146085247397423,\r\n0.727465093135834,0.138276621699333,0.731328904628754,0.15670944750309,0.727206826210022,0.163115367293358,0.730554103851318,0.146520748734474,0.725120484828949,0.142348051071167,0.726978957653046,0.154531940817833,0.725100219249725,0.162588715553284,0.727799355983734,0.150131359696388,0.723667144775391,0.139005824923515,0.729829967021942,0.154881358146667,0.722360610961914,0.162598833441734,0.725135684013367,0.166817128658295,0.728589296340942,0.146399214863777,0.722922742366791,0.166827246546745,0.726528286933899,0.142894953489304,0.724953353404999,0.150541543960571,0.72137314081192,0.165697991847992,0.722082138061523,0.166806995868683,0.724274814128876,0.170108705759048,0.727070093154907,0.146475180983543,0.721033871173859,0.158309668302536,0.717281460762024,0.154526874423027,0.720137536525726,0.170706242322922,0.725616753101349,0.150597244501114,0.718982994556427,0.162583649158478,0.715372383594513,0.171313926577568,0.723515212535858,0.146860033273697,0.719271600246429,0.154045805335045,0.717747330665588,0.158137485384941,0.713924050331116,0.166614562273026,0.71179211139679,0.170777142047882,0.720669269561768,0.150744095444679,0.715924322605133,0.15472437441349,0.714779853820801,0.162679865956306,0.712769508361816,0.171151876449585,0.717276394367218,0.174980238080025,0.721595942974091,0.158537536859512,0.711766839027405,0.154511690139771,0.712941646575928,0.167551398277283,0.709199368953705,0.162229165434837,0.710359036922455,0.174929589033127,0.7193323969841,0.178342700004578,0.713240444660187,0.175263822078705,0.716871321201324,0.178874418139458,0.719342529773712,0.154663607478142,0.710667908191681,0.158603370189667,0.709518432617188,0.16260389983654,0.70823723077774,0.171273410320282,0.705816686153412,0.179102301597595,0.718142330646515,0.150420010089874,0.713108777999878,0.166756361722946,0.70710289478302,0.179071918129921,0.710485637187958,0.178889617323875,0.715534389019012,0.158633753657341,0.706809222698212,0.162867233157158,0.705517888069153,0.166229709982872,0.704854488372803,0.183421865105629,0.706100225448608,\r\n0.183062314987183,0.711893439292908,0.18360923230648,0.713989913463593,0.179628953337669,0.717043459415436,0.170903742313385,0.702373147010803,0.175856307148933,0.70155280828476,0.182890146970749,0.709457635879517,0.182890146970749,0.71587872505188,0.162512749433517,0.703147947788239,0.166888013482094,0.701887011528015,0.186809659004211,0.702150344848633,0.187326177954674,0.708201766014099,0.187467977404594,0.711584508419037,0.187356561422348,0.710151433944702,0.158431202173233,0.703588485717773,0.170523941516876,0.698377668857574,0.175354972481728,0.699957668781281,0.18715400993824,0.705978691577911,0.18509803712368,0.697050929069519,0.154471173882484,0.707548558712006,0.162776082754135,0.699841201305389,0.166528478264809,0.698954999446869,0.191033005714417,0.704353153705597,0.191114023327827,0.700033605098724,0.191427990794182,0.706900358200073,0.190800055861473,0.708606898784637,0.175598040223122,0.698083996772766,0.166776612401009,0.695212721824646,0.192010343074799,0.702231347560883,0.190931722521782,0.697552263736725,0.174894154071808,0.696291327476501,0.170979708433151,0.693688452243805,0.187994629144669,0.693506181240082,0.195408269762993,0.702763080596924,0.194800585508347,0.704586088657379,0.195727303624153,0.698934733867645,0.195418402552605,0.701137542724609,0.162269681692123,0.696909129619598,0.175106838345528,0.693141579627991,0.179628953337669,0.693865716457367,0.170858159661293,0.691156506538391,0.195175319910049,0.696463525295258,0.158289402723312,0.70080840587616,0.166563928127289,0.691450178623199,0.188318714499474,0.691541314125061,0.195023402571678,0.694113850593567,0.199672132730484,0.696954727172852,0.198370680212975,0.699805736541748,0.178697183728218,0.690234839916229,0.170387223362923,0.688133299350739,0.174823254346848,0.687956035137177,0.193646013736725,0.68764716386795,0.184242218732834,0.691004574298859,0.19936828315258,0.69487851858139,0.199013814330101,0.698757469654083,0.199277132749558,0.693774521350861,0.199180915951729,0.692670583724976,0.202933311462402,0.693202316761017,0.179598569869995,\r\n0.686087429523468,0.184905603528023,0.68869537115097,0.174767553806305,0.683049082756042,0.203186511993408,0.692447781562805,0.199206247925758,0.685996294021606,0.186257690191269,0.68579375743866,0.178727567195892,0.683271884918213,0.19319024682045,0.684973359107971,0.202669993042946,0.69087290763855,0.184763818979263,0.683079481124878,0.178555399179459,0.678709268569946,0.19733764231205,0.680643677711487,0.203378945589066,0.685925424098969,0.190789937973022,0.683185815811157,0.185391739010811,0.680041074752808,0.174838438630104,0.678511738777161,0.205586835741997,0.689500570297241,0.202882677316666,0.682041347026825,0.206893339753151,0.686219096183777,0.170969575643539,0.681226015090942,0.179294735193253,0.675260722637177,0.182647079229355,0.677974998950958,0.195388004183769,0.67789900302887,0.20394104719162,0.677473664283752,0.206943973898888,0.683727622032166,0.190870955586433,0.677195131778717,0.171080976724625,0.684406220912933,0.175081506371498,0.674642860889435,0.186946377158165,0.675908863544464,0.206650272011757,0.680648744106293,0.208599895238876,0.68380868434906,0.167131096124649,0.686305224895477,0.183310449123383,0.672946453094482,0.176646277308464,0.672141313552856,0.202173724770546,0.672693252563477,0.195225968956947,0.673893451690674,0.208098560571671,0.67765086889267,0.209010079503059,0.680750012397766,0.191179856657982,0.67263251543045,0.170918941497803,0.673594653606415,0.186900809407234,0.672095715999603,0.205971702933311,0.675944328308105,0.209850698709488,0.67737740278244,0.179163068532944,0.666302561759949,0.170969575643539,0.676293730735779,0.172600165009499,0.669751107692719,0.186855226755142,0.665669560432434,0.208554312586784,0.674561858177185,0.195393070578575,0.668171167373657,0.191144406795502,0.666900098323822,0.182728096842766,0.664636492729187,0.166295528411865,0.674931526184082,0.20698955655098,0.671442449092865,0.200335502624512,0.669452309608459,0.210498884320259,0.673326253890991,0.181143075227737,0.662271618843079,0.172878682613373,0.667102634906769,0.166639879345894,0.67787367105484,\r\n0.162441864609718,0.674349188804626,0.194395467638969,0.66443395614624,0.188921332359314,0.661041080951691,0.209729164838791,0.671482980251312,0.201191321015358,0.666819036006927,0.162755817174912,0.676673531532288,0.206483155488968,0.668242037296295,0.20902019739151,0.668312907218933,0.180165737867355,0.660089075565338,0.166827246546745,0.668829441070557,0.157848834991455,0.677225530147552,0.158542603254318,0.681464076042175,0.199130281805992,0.659445941448212,0.199388548731804,0.66377055644989,0.206336304545403,0.664970695972443,0.193230763077736,0.657217800617218,0.162300065159798,0.671842515468597,0.158102035522461,0.673903524875641,0.208184644579887,0.664925158023834,0.203115627169609,0.664752960205078,0.170529007911682,0.663679420948029,0.187042593955994,0.655106127262115,0.161743029952049,0.668829441070557,0.154856041073799,0.680988013744354,0.154552206397057,0.673711121082306,0.197940245270729,0.656625330448151,0.203100427985191,0.661431014537811,0.205809652805328,0.661603152751923,0.206781938672066,0.661739885807037,0.176114559173584,0.659587740898132,0.166391745209694,0.666408896446228,0.191433057188988,0.653247654438019,0.157975435256958,0.671199381351471,0.153022885322571,0.677493929862976,0.154714241623878,0.683844089508057,0.195514604449272,0.652847588062286,0.20085708796978,0.65534919500351,0.203075110912323,0.657820403575897,0.170534074306488,0.66087394952774,0.165895476937294,0.663228690624237,0.178474366664886,0.655516266822815,0.187255278229713,0.652315855026245,0.157529816031456,0.668809175491333,0.162948250770569,0.66401869058609,0.150652945041656,0.679863810539246,0.159028738737106,0.683099687099457,0.149923741817474,0.683044016361237,0.151493564248085,0.674151659011841,0.155048474669456,0.669497907161713,0.198436513543129,0.65333878993988,0.204888015985489,0.658767342567444,0.182717978954315,0.65212345123291,0.190227836370468,0.648892641067505,0.193251013755798,0.65049284696579,0.158947721123695,0.666186094284058,0.150009825825691,0.677291333675385,0.154673740267754,0.686127960681915,0.151209980249405,\r\n0.685616493225098,0.153225436806679,0.671022176742554,0.197281926870346,0.650867581367493,0.199094831943512,0.651647448539734,0.202720627188683,0.655182063579559,0.170179590582848,0.657855868339539,0.166047394275665,0.659916877746582,0.16285203397274,0.661137282848358,0.177745163440704,0.652999520301819,0.186748892068863,0.649424374103546,0.19432458281517,0.649181246757507,0.15624862909317,0.667001366615295,0.160588443279266,0.662909686565399,0.147963985800743,0.679873943328857,0.147877901792526,0.686750829219818,0.200948238372803,0.653004586696625,0.178454115986824,0.650482714176178,0.187943980097771,0.647662103176117,0.183011680841446,0.649231910705566,0.158026084303856,0.663988292217255,0.145680129528046,0.684983491897583,0.150956779718399,0.6889688372612,0.166918396949768,0.657349467277527,0.170093506574631,0.655288398265839,0.163859769701958,0.658387541770935,0.161388546228409,0.66015487909317,0.174752354621887,0.65212345123291,0.183558583259583,0.647970974445343,0.154466107487679,0.688963770866394,0.145356044173241,0.68839156627655,0.147543668746948,0.690300643444061,0.171349376440048,0.653485655784607,0.17477260529995,0.650751113891602,0.179907470941544,0.648639440536499,0.150308594107628,0.691232442855835,0.143097519874573,0.688006699085236,0.16774383187294,0.654812395572662,0.171648144721985,0.65212345123291,0.151002362370491,0.692528784275055,0.145021826028824,0.690822243690491,0.147639885544777,0.692741513252258,0.142753168940544,0.691278040409088,0.147675335407257,0.694974720478058,0.144961059093475,0.69340991973877,0.140494629740715,0.691374242305756,0.141704916954041,0.694053053855896,0.144819259643555,0.695688724517822,0.137810736894608,0.696245789527893,0.146541014313698,0.697354793548584,0.142682269215584,0.696898996829987,0.13889442384243,0.697795331478119,0.136534616351128,0.699527204036713,0.14187203347683,0.699820935726166,0.13804367184639,0.702084541320801,0.14670304954052,0.699537336826324,0.135612979531288,0.702859282493591,0.142591118812561,0.703299880027771,0.139274224638939,0.705993890762329,\r\n0.134974911808968,0.705740690231323,0.143472239375114,0.704788684844971,0.138990640640259,0.70851069688797,0.146834716200829,0.701036274433136,0.14294558763504,0.7063028216362,0.135086327791214,0.708682835102081,0.142580986022949,0.708135962486267,0.132392287254334,0.70544695854187,0.138463988900185,0.710424840450287,0.132240369915962,0.708181500434875,0.133116438984871,0.702363014221191,0.13499516248703,0.710870504379272,0.139051407575607,0.711675643920898,0.131592184305191,0.71022230386734,0.134924277663231,0.713073313236237,0.131632700562477,0.712885975837708,0.134787544608116,0.715119183063507,0.138980507850647,0.713189780712128,0.130589514970779,0.713994979858398,0.138914674520493,0.714648187160492,0.135248363018036,0.717058658599854,0.64988899230957,0.667695105075836,0.646031498908997,0.668236970901489,0.649832010269165,0.663513541221619,0.6495281457901,0.670817077159882,0.645641565322876,0.66103857755661,0.653856575489044,0.66385155916214,0.645811200141907,0.673833906650543,0.65289443731308,0.667524218559265,0.642422139644623,0.665283441543579,0.650266230106354,0.660382747650146,0.654226243495941,0.660439729690552,0.648911595344543,0.674636542797089,0.641977787017822,0.67108416557312,0.637541770935059,0.660405576229095,0.646275818347931,0.657803952693939,0.65725576877594,0.659018039703369,0.652160167694092,0.670405626296997,0.645604848861694,0.677249550819397,0.641184031963348,0.675817728042603,0.638474762439728,0.664939045906067,0.636631488800049,0.655664443969727,0.650119364261627,0.656516432762146,0.653824925422668,0.657446920871735,0.638567209243774,0.671374082565308,0.634076714515686,0.66437441110611,0.63128650188446,0.660167574882507,0.636849284172058,0.652738690376282,0.646266937255859,0.653400838375092,0.657676100730896,0.6569544672966,0.641629636287689,0.67903083562851,0.632753789424896,0.676202595233917,0.633676707744598,0.670999348163605,0.631432056427002,0.652567803859711,0.650330781936646,0.649444580078125,0.654430091381073,0.650680184364319,0.637153089046478,0.680209457874298,0.645049095153809,\r\n0.682159066200256,0.629924297332764,0.667476117610931,0.628614008426666,0.663479387760162,0.628148078918457,0.655972063541412,0.631706774234772,0.648628056049347,0.637951910495758,0.648514091968536,0.658454656600952,0.652403235435486,0.64130049943924,0.682133734226227,0.65021938085556,0.675161957740784,0.631978988647461,0.679846107959747,0.627574622631073,0.670082807540894,0.627292275428772,0.660221993923187,0.627537906169891,0.652493119239807,0.628288626670837,0.649542093276978,0.655384659767151,0.64513772726059,0.649420559406281,0.645374417304993,0.658372342586517,0.650159895420074,0.65794575214386,0.655040264129639,0.637524008750916,0.685174643993378,0.64105486869812,0.685498774051666,0.647783637046814,0.680487990379334,0.6280797123909,0.679089069366455,0.634041309356689,0.683774471282959,0.624343812465668,0.665984749794006,0.623820960521698,0.662309587001801,0.62402731180191,0.653072953224182,0.623772859573364,0.65894079208374,0.632647454738617,0.646315097808838,0.628189861774445,0.647221505641937,0.657876074314117,0.646955668926239,0.662572920322418,0.645980834960938,0.661915898323059,0.651817083358765,0.644949078559875,0.685087323188782,0.629544496536255,0.683125019073486,0.623977899551392,0.677093863487244,0.624056398868561,0.67078161239624,0.623986780643463,0.650347232818604,0.624247550964355,0.647953271865845,0.662909686565399,0.6422398686409,0.660300493240356,0.641409337520599,0.644765496253967,0.64397805929184,0.6668621301651,0.64511114358902,0.633109509944916,0.687666118144989,0.640195250511169,0.688677668571472,0.621361136436462,0.679909408092499,0.620376169681549,0.666375994682312,0.620276153087616,0.663551568984985,0.620166003704071,0.659692823886871,0.620359718799591,0.655413746833801,0.620181202888489,0.650337100028992,0.663390755653381,0.643956542015076,0.649034440517426,0.642528474330902,0.639929413795471,0.64312732219696,0.636156737804413,0.691178023815155,0.641272604465485,0.690308272838593,0.624203264713287,0.684455573558807,0.627811372280121,0.686703979969025,0.619924247264862,0.675479710102081,\r\n0.621063590049744,0.672231197357178,0.62004828453064,0.669377624988556,0.621339619159698,0.653384387493134,0.620283782482147,0.648463487625122,0.667898952960968,0.640292763710022,0.665873348712921,0.639768660068512,0.655785977840424,0.63975977897644,0.631483972072601,0.690934956073761,0.620234370231628,0.683566868305206,0.616727590560913,0.680061340332031,0.616751670837402,0.66790783405304,0.616988360881805,0.664352893829346,0.618938028812408,0.651698052883148,0.648579955101013,0.640913069248199,0.632157504558563,0.695893824100494,0.636515021324158,0.694716453552246,0.619869768619537,0.690434873104095,0.616525053977966,0.682778179645538,0.623739898204803,0.692616164684296,0.630563616752625,0.693706214427948,0.61704409122467,0.672589480876923,0.616746604442596,0.67729514837265,0.616674423217773,0.661376595497131,0.616723775863647,0.647511422634125,0.637838006019592,0.642389237880707,0.639748394489288,0.694049298763275,0.616147756576538,0.686396360397339,0.627625226974487,0.694027721881866,0.613062560558319,0.680099308490753,0.612900495529175,0.682880699634552,0.613487899303436,0.671813428401947,0.635713636875153,0.699251234531403,0.619174778461456,0.698072612285614,0.616504788398743,0.691224813461304,0.61268275976181,0.68634569644928,0.627058088779449,0.700918555259705,0.613133430480957,0.67734956741333,0.612821996212006,0.674873292446136,0.630978882312775,0.699209451675415,0.62322336435318,0.698239684104919,0.611894011497498,0.695224106311798,0.608949363231659,0.682762980461121,0.609555780887604,0.680143594741821,0.609210133552551,0.685606360435486,0.631439685821533,0.701778173446655,0.62220424413681,0.702828943729401,0.615789473056793,0.697030663490295,0.608780980110168,0.691078007221222,0.608965814113617,0.688333332538605,0.634452760219574,0.70447850227356,0.615674316883087,0.701327443122864,0.611923158168793,0.699187934398651,0.608269512653351,0.69564950466156,0.626401007175446,0.704807639122009,0.604550004005432,0.686440646648407,0.604103147983551,0.689871490001678,0.630356013774872,0.704872250556946,0.61615788936615,\r\n0.704467117786407,0.608779728412628,0.69884866476059,0.604190468788147,0.695474803447723,0.605232417583466,0.691091895103455,0.621285140514374,0.70461905002594,0.63191819190979,0.707373797893524,0.612803041934967,0.701947808265686,0.608588516712189,0.701719880104065,0.605526089668274,0.699367702007294,0.628275990486145,0.707749843597412,0.620210349559784,0.70674592256546,0.601496458053589,0.693855583667755,0.63470721244812,0.707719445228577,0.611978888511658,0.7047278881073,0.601528108119965,0.698938548564911,0.631190299987793,0.70994508266449,0.615681886672974,0.707237124443054,0.604729771614075,0.701888263225555,0.601815462112427,0.6961989402771,0.627072036266327,0.710412204265594,0.634651482105255,0.710660338401794,0.608539164066315,0.70486968755722,0.612690329551697,0.708525896072388,0.62021666765213,0.710518538951874,0.595564007759094,0.696239411830902,0.631045937538147,0.713193595409393,0.61544132232666,0.711071789264679,0.597832679748535,0.698999285697937,0.598079562187195,0.693730235099792,0.626856803894043,0.712906181812286,0.634873032569885,0.714898884296417,0.611791491508484,0.711416125297546,0.619571030139923,0.711793422698975,0.59471583366394,0.693556785583496,0.623134791851044,0.714278519153595,0.630978882312775,0.716767489910126,0.608236610889435,0.708967685699463,0.615027368068695,0.717914462089539,0.61927604675293,0.719296932220459,0.598485946655273,0.690980494022369,0.592223048210144,0.696714162826538,0.627363204956055,0.718904495239258,0.633524775505066,0.718552529811859,0.611623108386993,0.715888857841492,0.595039904117584,0.690848827362061,0.5953728556633,0.699411988258362,0.591231822967529,0.693609952926636,0.623284161090851,0.719539999961853,0.636064350605011,0.717540979385376,0.630681335926056,0.720728754997253,0.612915694713593,0.71913743019104,0.616568088531494,0.72070723772049,0.599122703075409,0.685048043727875,0.588471949100494,0.695776104927063,0.629059612751007,0.724349498748779,0.632887959480286,0.721235156059265,0.618916511535645,0.724344432353973,0.62261825799942,0.723902583122253,\r\n0.588825166225433,0.691160261631012,0.596052706241608,0.683522582054138,0.590827941894531,0.698952436447144,0.588295936584473,0.693341553211212,0.635865569114685,0.721855521202087,0.615070402622223,0.723325312137604,0.599964618682861,0.677440702915192,0.594499349594116,0.700970470905304,0.586769163608551,0.697283864021301,0.584282755851746,0.693287134170532,0.622925877571106,0.726776421070099,0.638031721115112,0.717679023742676,0.636087119579315,0.724170982837677,0.632192969322205,0.726481437683105,0.611676275730133,0.720984518527985,0.615232467651367,0.726773858070374,0.592896580696106,0.683685839176178,0.596489429473877,0.67748886346817,0.59128874540329,0.703820168972015,0.628591179847717,0.727366387844086,0.638841927051544,0.721375703811646,0.639401495456696,0.703751802444458,0.611762404441834,0.725276231765747,0.608579695224762,0.716057240962982,0.619151949882507,0.729328632354736,0.586455225944519,0.686709046363831,0.592658579349518,0.679547369480133,0.600098788738251,0.67412257194519,0.594882905483246,0.707037091255188,0.585175275802612,0.700264036655426,0.584076404571533,0.697301626205444,0.62438428401947,0.730190813541412,0.63641631603241,0.727862656116486,0.638910293579102,0.724398851394653,0.632424592971802,0.73100483417511,0.615379333496094,0.729427397251129,0.580405056476593,0.688397884368896,0.589440405368805,0.682490766048431,0.593899250030518,0.676782429218292,0.596835076808929,0.673508584499359,0.603623330593109,0.674826443195343,0.591121673583984,0.706642091274261,0.580754458904266,0.695381104946136,0.628567159175873,0.732372105121613,0.625121116638184,0.735815584659576,0.617927730083466,0.732101142406464,0.578162968158722,0.692117393016815,0.580393671989441,0.683946669101715,0.585901975631714,0.681686878204346,0.589894890785217,0.6778724193573,0.60089510679245,0.667252063751221,0.603644847869873,0.671555161476135,0.580441772937775,0.698666334152222,0.585042357444763,0.703889846801758,0.639696478843689,0.728804528713226,0.636496067047119,0.734269797801971,0.632428407669067,0.737452507019043,0.621359825134277,\r\n0.73605740070343,0.614329814910889,0.731875836849213,0.577279329299927,0.686749577522278,0.590512692928314,0.673071801662445,0.593851149082184,0.671136081218719,0.596253991127014,0.669006705284119,0.582857251167297,0.701100826263428,0.591460943222046,0.710635006427765,0.578009784221649,0.696372389793396,0.628859579563141,0.742242991924286,0.622024476528168,0.739623665809631,0.617861926555634,0.735877633094788,0.611477553844452,0.727725923061371,0.582415461540222,0.680298089981079,0.577410995960236,0.682570517063141,0.586441278457642,0.676873564720154,0.604271531105042,0.664478242397308,0.600941956043243,0.663800954818726,0.58008599281311,0.700627386569977,0.58781361579895,0.709189236164093,0.580048024654388,0.702978312969208,0.577145099639893,0.699575304985046,0.576363980770111,0.698040962219238,0.639896512031555,0.733030378818512,0.63619726896286,0.738048791885376,0.632784187793732,0.741597354412079,0.614501953125,0.734776198863983,0.579516291618347,0.680480360984802,0.587329983711243,0.671337366104126,0.591641962528229,0.668577551841736,0.606985807418823,0.671442449092865,0.594534754753113,0.663210988044739,0.57748818397522,0.701657891273499,0.583664953708649,0.706155955791473,0.592068612575531,0.713256895542145,0.576146245002747,0.693465650081635,0.620586335659027,0.74265444278717,0.641972720623016,0.731164336204529,0.640295267105103,0.737427175045013,0.632420837879181,0.746877789497375,0.617466926574707,0.741563200950623,0.614072799682617,0.738039910793304,0.581905245780945,0.675546824932098,0.578113615512848,0.678500354290009,0.607750475406647,0.661628484725952,0.604347467422485,0.660192847251892,0.59965193271637,0.657320320606232,0.583971321582794,0.71101987361908,0.5948765873909,0.712312459945679,0.586719810962677,0.711335122585297,0.580573439598084,0.705745756626129,0.575627207756042,0.70368093252182,0.576177895069122,0.688829600811005,0.622690439224243,0.745454847812653,0.641695499420166,0.735002815723419,0.64006233215332,0.740988433361053,0.636436522006989,0.742040455341339,0.6361985206604,0.746922135353088,\r\n0.627358138561249,0.747422218322754,0.583058536052704,0.669172525405884,0.58786803483963,0.666725397109985,0.592369914054871,0.660758793354034,0.576755166053772,0.704412698745728,0.598007380962372,0.717154860496521,0.588151633739471,0.713975965976715,0.57748818397522,0.706534445285797,0.617865741252899,0.745595335960388,0.643326044082642,0.737344920635223,0.643245041370392,0.740745365619659,0.636556804180145,0.752990007400513,0.63222461938858,0.751832902431488,0.614307045936584,0.742797553539276,0.578268051147461,0.674116253852844,0.580092370510101,0.672045052051544,0.588414967060089,0.659707963466644,0.607612431049347,0.658115386962891,0.601842045783997,0.655787229537964,0.592391431331635,0.656401216983795,0.58036071062088,0.710334956645966,0.598461866378784,0.714451968669891,0.594034731388092,0.71698272228241,0.577911019325256,0.708203077316284,0.614191830158234,0.745537102222443,0.621438324451447,0.749459147453308,0.617497324943542,0.749821245670319,0.640072464942932,0.745804250240326,0.643310904502869,0.745219349861145,0.639918029308319,0.749436378479004,0.625732600688934,0.7510986328125,0.578640222549438,0.669434607028961,0.584730923175812,0.665056824684143,0.604605734348297,0.655012428760529,0.598851799964905,0.655170679092407,0.580106258392334,0.712963163852692,0.583095252513886,0.716878890991211,0.593714416027069,0.719913482666016,0.587242662906647,0.718993067741394,0.613820850849152,0.749659180641174,0.645145297050476,0.743182361125946,0.640039563179016,0.75496119260788,0.631567537784576,0.760987281799316,0.626904904842377,0.754037022590637,0.580930411815643,0.664770662784576,0.584318220615387,0.66020679473877,0.607579529285431,0.655274510383606,0.600316524505615,0.651241064071655,0.590562105178833,0.652929902076721,0.577888250350952,0.713468313217163,0.577302098274231,0.711433887481689,0.598401129245758,0.721213638782501,0.610422968864441,0.748272955417633,0.620921850204468,0.754786431789398,0.617235243320465,0.754938364028931,0.613634765148163,0.75496119260788,0.643913507461548,0.749871909618378,0.64583021402359,\r\n0.749017357826233,0.643585622310638,0.754180073738098,0.639737010002136,0.761883616447449,0.635588347911835,0.76200008392334,0.578075587749481,0.664618790149689,0.607920110225677,0.651723384857178,0.609960854053497,0.655750513076782,0.596269190311432,0.650095343589783,0.604738652706146,0.648059606552124,0.579292237758636,0.716050922870636,0.584548652172089,0.720241367816925,0.595022201538086,0.722627758979797,0.601476192474365,0.720752835273743,0.610233068466187,0.752345621585846,0.643904626369476,0.757462739944458,0.628107607364655,0.761055648326874,0.633752644062042,0.764780223369598,0.62435394525528,0.758860409259796,0.578918755054474,0.662756502628326,0.581371009349823,0.659862458705902,0.584699273109436,0.653938889503479,0.600821673870087,0.646675884723663,0.590149402618408,0.649215459823608,0.580424010753632,0.718689262866974,0.576795697212219,0.717420756816864,0.59703254699707,0.726406753063202,0.602338314056396,0.723927915096283,0.616832673549652,0.761040449142456,0.613467693328857,0.759199678897858,0.610038101673126,0.756571531295776,0.645852982997894,0.751107513904572,0.646275818347931,0.75421929359436,0.646649301052094,0.756832301616669,0.642803192138672,0.76586639881134,0.64654928445816,0.761908948421478,0.620442032814026,0.761010050773621,0.578484535217285,0.660346031188965,0.585986793041229,0.649400293827057,0.611462354660034,0.653028607368469,0.607966959476471,0.647378504276276,0.596250176429749,0.644317328929901,0.604469001293182,0.644850313663483,0.590060770511627,0.64558207988739,0.577555298805237,0.718841195106506,0.583428204059601,0.721423804759979,0.600758373737335,0.725781321525574,0.609987437725067,0.759176909923553,0.647039234638214,0.759460508823395,0.623948812484741,0.76426112651825,0.627851843833923,0.764737129211426,0.642386674880981,0.769444108009338,0.580627858638763,0.653986990451813,0.582141995429993,0.650220632553101,0.61077743768692,0.647674739360809,0.601388871669769,0.637203752994537,0.579220056533813,0.721247851848602,0.592811763286591,0.728287994861603,0.601744592189789,0.728441178798676,\r\n0.605176687240601,0.729136228561401,0.616597175598145,0.765046060085297,0.613216996192932,0.762015283107758,0.609460830688477,0.762417852878571,0.650249779224396,0.760929048061371,0.646641671657562,0.76517516374588,0.650180160999298,0.763501524925232,0.633704543113709,0.767765402793884,0.646637916564941,0.769411206245422,0.619955897331238,0.765311896800995,0.578960537910461,0.656965851783752,0.582325577735901,0.646860718727112,0.608022630214691,0.644023656845093,0.592490196228027,0.639972448348999,0.597187042236328,0.635631382465363,0.604633569717407,0.639500260353088,0.585614621639252,0.64508581161499,0.576452612876892,0.722851812839508,0.586227357387543,0.726076304912567,0.579623937606812,0.723467111587524,0.597541511058807,0.730116069316864,0.598751783370972,0.72835385799408,0.604660153388977,0.725695252418518,0.612829625606537,0.764878928661346,0.627630293369293,0.76762866973877,0.642379105091095,0.771183550357819,0.623715877532959,0.768785774707794,0.577398300170898,0.658677458763123,0.578107237815857,0.65527069568634,0.578989684581757,0.651557564735413,0.579322636127472,0.64781779050827,0.586205840110779,0.64108020067215,0.601160943508148,0.634147644042969,0.60423731803894,0.634283065795898,0.587059080600739,0.728514611721039,0.582877516746521,0.726019322872162,0.577286899089813,0.725326836109161,0.594199299812317,0.731182038784027,0.601607859134674,0.730707287788391,0.615727484226227,0.76821357011795,0.611526906490326,0.768226206302643,0.609696269035339,0.765046060085297,0.650729596614838,0.767018496990204,0.629319131374359,0.769666910171509,0.647250652313232,0.77262681722641,0.636880934238434,0.771469712257385,0.619598865509033,0.769132673740387,0.581955909729004,0.643697023391724,0.607993543148041,0.638863444328308,0.58670711517334,0.63696700334549,0.59631472826004,0.633667826652527,0.590803921222687,0.729522347450256,0.579922676086426,0.727419555187225,0.597422480583191,0.733921647071838,0.604708254337311,0.731294751167297,0.608087182044983,0.768527507781982,0.60666298866272,0.766390562057495,0.65096378326416,\r\n0.770368278026581,0.654597163200378,0.767648935317993,0.646696150302887,0.774708092212677,0.619725465774536,0.772143185138702,0.578612387180328,0.645255446434021,0.582914233207703,0.637974739074707,0.596798360347748,0.631596684455872,0.601026773452759,0.632203042507172,0.608113765716553,0.636650502681732,0.586751461029053,0.731302320957184,0.582542061805725,0.730197131633759,0.577047646045685,0.729343831539154,0.600752055644989,0.733113944530487,0.594830989837646,0.738684296607971,0.590327858924866,0.732755661010742,0.604691803455353,0.735096514225006,0.615754067897797,0.773469984531403,0.654745280742645,0.769363105297089,0.624008297920227,0.772214114665985,0.629059612751007,0.772986352443695,0.65499472618103,0.77461189031601,0.641982853412628,0.778739035129547,0.57955938577652,0.641987919807434,0.587130010128021,0.633789360523224,0.592555999755859,0.631585240364075,0.578892171382904,0.730723738670349,0.600817859172821,0.7370246052742,0.61201810836792,0.770527780056,0.654982030391693,0.771920382976532,0.652248799800873,0.776776731014252,0.647116422653198,0.780402541160584,0.5822913646698,0.635083198547363,0.594070136547089,0.628241777420044,0.580416440963745,0.638344407081604,0.586152613162994,0.735383868217468,0.582601547241211,0.733936846256256,0.579677104949951,0.732935428619385,0.576684296131134,0.735619366168976,0.597380697727203,0.74135684967041,0.58944296836853,0.739945232868195,0.658904075622559,0.772798955440521,0.633471608161926,0.776404500007629,0.659073710441589,0.774642288684845,0.655137777328491,0.777166664600372,0.586910963058472,0.630437016487122,0.58348137140274,0.632676541805267,0.590140521526337,0.624947667121887,0.59460312128067,0.6264289021492,0.578366816043854,0.64080548286438,0.601398944854736,0.742312669754028,0.594613254070282,0.745182633399963,0.627932906150818,0.774454891681671,0.659258544445038,0.776688098907471,0.65148788690567,0.781691312789917,0.586712181568146,0.626399755477905,0.580732941627502,0.633727312088013,0.579354286193848,0.635188281536102,0.577599585056305,0.64519214630127,\r\n0.581643164157867,0.738748908042908,0.585601925849915,0.739952862262726,0.577614784240723,0.740173101425171,0.604984283447266,0.740235149860382,0.598125100135803,0.744844615459442,0.588771998882294,0.745643496513367,0.624334931373596,0.773908019065857,0.655870795249939,0.782445847988129,0.659364938735962,0.778326272964478,0.58298134803772,0.629996418952942,0.580097377300262,0.631323218345642,0.590974807739258,0.623377859592438,0.586770415306091,0.624441266059875,0.584415674209595,0.746843636035919,0.575409412384033,0.741335332393646,0.607549130916595,0.737522125244141,0.604765236377716,0.742877304553986,0.594230949878693,0.748209655284882,0.601372361183167,0.745606780052185,0.587932646274567,0.748984396457672,0.659609258174896,0.780397474765778,0.581633031368256,0.627453088760376,0.587009727954865,0.623029708862305,0.595248758792877,0.624609649181366,0.583485186100006,0.625259101390839,0.581955909729004,0.745678901672363,0.579332768917084,0.743225455284119,0.576420962810516,0.743841946125031,0.597779512405396,0.748461544513702,0.586038708686829,0.748729944229126,0.659900426864624,0.783719420433044,0.601225554943085,0.629825532436371,0.58149379491806,0.749865531921387,0.593204200267792,0.75070995092392,0.601106524467468,0.748279273509979,0.585981726646423,0.751787304878235,0.663942754268646,0.783959984779358,0.578836500644684,0.629362165927887,0.580275893211365,0.626183271408081,0.5793137550354,0.74671196937561,0.577469229698181,0.745762467384338,0.597337663173676,0.753229320049286,0.577441334724426,0.749064207077026,0.575689196586609,0.747724771499634,0.592875063419342,0.753287553787231,0.60064697265625,0.752896308898926,0.581910312175751,0.754956126213074,0.577676832675934,0.7540243268013,0.594242334365845,0.756991803646088,0.587438881397247,0.756133496761322,0.597921311855316,0.756900668144226,0.575442373752594,0.751935422420502,0.600335538387299,0.758586943149567,0.578521251678467,0.760002315044403,0.582596480846405,0.760607481002808,0.57530689239502,0.756523430347443,0.590963423252106,0.762177288532257,0.594230949878693,\r\n0.761187314987183,0.602811813354492,0.756133496761322,0.596650242805481,0.762283682823181,0.576479196548462,0.758614838123322,0.586753964424133,0.761349380016327,0.604052484035492,0.750758051872253,0.576543748378754,0.761379718780518,0.57912003993988,0.764711856842041,0.583120584487915,0.765266358852386,0.575296759605408,0.760977149009705,0.593481481075287,0.764050960540771,0.587250232696533,0.765742361545563,0.576315879821777,0.763706624507904,0.590783655643463,0.76636016368866,0.57649564743042,0.766871631145477,0.579766988754272,0.767276704311371,0.583353519439697,0.767735004425049,0.594191670417786,0.765717029571533,0.587603449821472,0.767735004425049,0.578826367855072,0.769147872924805,0.911609828472137,0.650258660316467,0.914508998394012,0.650415599346161,0.914929270744324,0.654530107975006,0.911759257316589,0.646304965019226,0.917823314666748,0.652041137218475,0.908632218837738,0.65385913848877,0.907095313072205,0.646691083908081,0.915868639945984,0.648801505565643,0.918861448764801,0.65628981590271,0.906707942485809,0.6500244140625,0.911533892154694,0.659634590148926,0.918180346488953,0.649386346340179,0.919805884361267,0.652486801147461,0.916863739490509,0.660130858421326,0.904862105846405,0.653821110725403,0.906082510948181,0.658125519752502,0.903335332870483,0.646749317646027,0.918871581554413,0.66288560628891,0.902135193347931,0.649821877479553,0.914126634597778,0.662283003330231,0.906794011592865,0.665364444255829,0.916623175144196,0.664660573005676,0.898891687393188,0.653742671012878,0.89776748418808,0.658467292785645,0.913805067539215,0.665879726409912,0.903472065925598,0.663454055786133,0.898116886615753,0.64602518081665,0.916352272033691,0.670096695423126,0.897873818874359,0.650172531604767,0.900464057922363,0.664552927017212,0.908318281173706,0.669654905796051,0.900922358036041,0.670349895954132,0.915207803249359,0.668690204620361,0.893625199794769,0.649571180343628,0.892840266227722,0.657350718975067,0.897099077701569,0.668726921081543,0.911964356899261,0.669625759124756,0.895445704460144,0.64613276720047,\r\n0.913551867008209,0.672159016132355,0.890432357788086,0.653346359729767,0.894498705863953,0.662669122219086,0.900238692760468,0.683557987213135,0.906059741973877,0.676569700241089,0.912604928016663,0.676310181617737,0.887158513069153,0.649387657642365,0.890655159950256,0.645778298377991,0.889536023139954,0.659500360488892,0.896959781646729,0.673011004924774,0.889622092247009,0.668190121650696,0.894891142845154,0.67657858133316,0.909115850925446,0.677053332328796,0.88507217168808,0.653448939323425,0.88673061132431,0.672504603862762,0.896273612976074,0.682838916778564,0.906054675579071,0.681523561477661,0.910432457923889,0.680844962596893,0.88714075088501,0.645701050758362,0.882173001766205,0.649437010288239,0.88722687959671,0.665316343307495,0.88372004032135,0.664276957511902,0.882995903491974,0.678797900676727,0.884558141231537,0.668647170066834,0.901317358016968,0.687381267547607,0.886917948722839,0.684726536273956,0.908680319786072,0.682350218296051,0.883958041667938,0.645655512809753,0.880714595317841,0.653191924095154,0.876790046691895,0.663666725158691,0.878357350826263,0.674347937107086,0.895633041858673,0.695345640182495,0.888943552970886,0.691108345985413,0.903948068618774,0.688257336616516,0.909799456596375,0.684783458709717,0.876491248607636,0.654725074768066,0.88049179315567,0.6446173787117,0.880506992340088,0.668832004070282,0.884335339069366,0.684888541698456,0.880405724048615,0.681207060813904,0.898119449615479,0.695524156093597,0.891726195812225,0.693858087062836,0.88664448261261,0.691709697246552,0.907067477703094,0.688353598117828,0.875926613807678,0.660497963428497,0.878142118453979,0.648354589939117,0.881666600704193,0.64303994178772,0.873708605766296,0.669111788272858,0.875868380069733,0.680233478546143,0.892847836017609,0.706923127174377,0.888226985931396,0.7065509557724,0.88123619556427,0.704779803752899,0.901694595813751,0.694441735744476,0.9046950340271,0.692963063716888,0.872067868709564,0.665529012680054,0.872379302978516,0.657048165798187,0.87284517288208,0.660085260868073,0.87841808795929,\r\n0.644176840782166,0.878656089305878,0.640695333480835,0.879884123802185,0.688496649265289,0.881433665752411,0.692368030548096,0.875848114490509,0.688121914863586,0.873098373413086,0.678463637828827,0.897468745708466,0.704098701477051,0.880304396152496,0.700198173522949,0.875402510166168,0.649121761322021,0.876587450504303,0.644692063331604,0.870019495487213,0.67437070608139,0.873356640338898,0.688944816589355,0.894997537136078,0.708675265312195,0.887523114681244,0.712450444698334,0.88396817445755,0.710698306560516,0.875835478305817,0.705773591995239,0.900099456310272,0.700672924518585,0.868783891201019,0.665987312793732,0.874685943126678,0.645457983016968,0.869300425052643,0.661267697811127,0.876784980297089,0.641006767749786,0.867755889892578,0.671789348125458,0.877078652381897,0.691989481449127,0.87833708524704,0.69540137052536,0.870379030704498,0.682345151901245,0.892665565013886,0.712759375572205,0.89790678024292,0.708809435367584,0.876341879367828,0.715297639369965,0.871358931064606,0.699808239936829,0.90058308839798,0.703337848186493,0.869546055793762,0.65626323223114,0.867406487464905,0.677145779132843,0.871700763702393,0.695762157440186,0.870710730552673,0.688894152641296,0.896217942237854,0.712645411491394,0.885059475898743,0.716368675231934,0.888540983200073,0.716933310031891,0.878858685493469,0.716201603412628,0.873364269733429,0.709718465805054,0.870624661445618,0.714631736278534,0.863722443580627,0.673255383968353,0.865155577659607,0.666601300239563,0.872964203357697,0.645925164222717,0.87502521276474,0.64141571521759,0.866307616233826,0.661223411560059,0.864717543125153,0.677083730697632,0.868049621582031,0.685546875,0.895020306110382,0.716785192489624,0.89773964881897,0.714507699012756,0.8919717669487,0.716640889644623,0.874270677566528,0.719014585018158,0.865423977375031,0.707435846328735,0.866208851337433,0.651500582695007,0.873690903186798,0.641090333461761,0.864709913730621,0.657082319259644,0.863968074321747,0.687417984008789,0.866535484790802,0.699529767036438,0.866069614887238,0.695555806159973,\r\n0.865765750408173,0.691741347312927,0.883945405483246,0.720119833946228,0.888723254203796,0.720589518547058,0.878600418567657,0.721509873867035,0.868269920349121,0.712418794631958,0.869900524616241,0.72015780210495,0.861750066280365,0.67108166217804,0.861309468746185,0.679268836975098,0.861967802047729,0.661694347858429,0.861127197742462,0.683354198932648,0.896053373813629,0.720493316650391,0.89285796880722,0.720080554485321,0.88178813457489,0.724010229110718,0.876974880695343,0.724282383918762,0.867383718490601,0.719232380390167,0.862509667873383,0.704169631004334,0.862595736980438,0.718910813331604,0.872804701328278,0.723441779613495,0.857921719551086,0.677064716815948,0.858992695808411,0.686933159828186,0.859906792640686,0.702314913272858,0.860187828540802,0.694730401039124,0.862142503261566,0.691109657287598,0.895154476165771,0.720959186553955,0.88981705904007,0.723927915096283,0.883330166339874,0.727587878704071,0.861628532409668,0.714539349079132,0.864750444889069,0.72377347946167,0.869313061237335,0.72595602273941,0.856716454029083,0.674356758594513,0.856412649154663,0.683798551559448,0.857979953289032,0.690909624099731,0.893141567707062,0.724358379840851,0.886601448059082,0.727862656116486,0.873470604419708,0.728390574455261,0.858344554901123,0.715592622756958,0.858066022396088,0.719174146652222,0.853392004966736,0.685551941394806,0.854318678379059,0.688927054405212,0.858258426189423,0.700885593891144,0.889779090881348,0.72838419675827,0.883707404136658,0.73155552148819,0.880382895469666,0.731249153614044,0.860554933547974,0.722540378570557,0.854364275932312,0.712615013122559,0.863069236278534,0.727875292301178,0.874840378761292,0.734721779823303,0.853926241397858,0.696628093719482,0.855521380901337,0.700289368629456,0.892217397689819,0.728586792945862,0.886690080165863,0.732626557350159,0.853045105934143,0.717209339141846,0.85658985376358,0.723244309425354,0.867353320121765,0.734505295753479,0.850505530834198,0.698139667510986,0.852680504322052,0.705686271190643,0.889082789421082,0.732640504837036,0.881907165050507,\r\n0.738713443279266,0.878896653652191,0.73829060792923,0.875407576560974,0.739033758640289,0.858215391635895,0.726376354694366,0.854146540164948,0.724655866622925,0.851336002349854,0.712827742099762,0.864542841911316,0.734810411930084,0.868520557880402,0.738500773906708,0.847132921218872,0.699715852737427,0.887459814548492,0.736546039581299,0.885869741439819,0.740406095981598,0.861304402351379,0.730290770530701,0.851839900016785,0.725585103034973,0.850340962409973,0.716645956039429,0.845844149589539,0.708008110523224,0.850594162940979,0.707509279251099,0.883213639259338,0.741083383560181,0.878235816955566,0.742092370986938,0.870675265789032,0.742587387561798,0.856351852416992,0.731826424598694,0.850244700908661,0.721946656703949,0.853212237358093,0.73056548833847,0.844659149646759,0.712980926036835,0.862755239009857,0.738950192928314,0.860043525695801,0.734115362167358,0.883540272712708,0.744849681854248,0.881122231483459,0.743625462055206,0.875562012195587,0.743816673755646,0.866930484771729,0.744911730289459,0.848284959793091,0.728155076503754,0.850533366203308,0.730004668235779,0.848130524158478,0.720511019229889,0.886155843734741,0.744440793991089,0.878238320350647,0.745805501937866,0.872840166091919,0.750892281532288,0.86975109577179,0.749179363250732,0.860013127326965,0.740383267402649,0.853779375553131,0.736005485057831,0.850930869579315,0.736504256725311,0.844281911849976,0.71646112203598,0.864727675914764,0.743444442749023,0.884074568748474,0.748427391052246,0.881902098655701,0.74770450592041,0.88024365901947,0.748189389705658,0.878288984298706,0.74941486120224,0.875805079936981,0.749952912330627,0.854397177696228,0.742003738880157,0.848682522773743,0.731991052627563,0.845790982246399,0.721884608268738,0.87610387802124,0.753839492797852,0.868330657482147,0.753902792930603,0.862899601459503,0.749918699264526,0.857605218887329,0.746513187885284,0.846808850765228,0.7312833070755,0.849295258522034,0.738391876220703,0.882811069488525,0.752349436283112,0.87872701883316,0.753302693367004,0.871637463569641,0.758021056652069,\r\n0.853809773921967,0.747584223747253,0.847360789775848,0.738559007644653,0.850854933261871,0.742158174514771,0.876070916652679,0.761775970458984,0.878605484962463,0.754749774932861,0.865927815437317,0.75739061832428,0.862957835197449,0.753522992134094,0.857314050197601,0.749385714530945,0.848226726055145,0.743850827217102,0.872047603130341,0.761453151702881,0.878939688205719,0.763839542865753,0.855222582817078,0.753654658794403,0.850728332996368,0.747296869754791,0.877263486385345,0.76514732837677,0.880610764026642,0.759368062019348,0.860167562961578,0.757075369358063,0.862848937511444,0.760860681533813,0.859068691730499,0.753428041934967,0.853115975856781,0.75350147485733,0.849502861499786,0.749398410320282,0.873381972312927,0.765235960483551,0.880390524864197,0.767695784568787,0.867586255073547,0.764476358890533,0.856245517730713,0.757252633571625,0.877790153026581,0.767588138580322,0.857909023761749,0.760927796363831,0.861177802085876,0.76371169090271,0.85388320684433,0.758289456367493,0.868512988090515,0.766862750053406,0.876303911209106,0.768669307231903,0.156114429235458,0.968909859657288,0.150728911161423,0.96757048368454,0.159993425011635,0.966185450553894,0.150414943695068,0.974133372306824,0.157281681895256,0.958895862102509,0.161783546209335,0.96978086233139,0.154785141348839,0.974171340465546,0.146292880177498,0.968466758728027,0.153514087200165,0.959587097167969,0.161730363965034,0.961172163486481,0.164477571845055,0.966828584671021,0.151999965310097,0.977085649967194,0.150470644235611,0.961356997489929,0.14640174806118,0.974300444126129,0.154415473341942,0.955057382583618,0.161626562476158,0.95238870382309,0.165110573172569,0.962468504905701,0.164847239851952,0.971854567527771,0.161145478487015,0.974530875682831,0.1446293592453,0.977176785469055,0.160636559128761,0.977214753627777,0.146824583411217,0.962111532688141,0.142507568001747,0.975444912910461,0.157894417643547,0.952472269535065,0.165358707308769,0.955285251140594,0.168604701757431,0.965517044067383,0.167738765478134,0.969446659088135,0.148303270339966,\r\n0.979559421539307,0.15509657561779,0.979967057704926,0.1476069688797,0.954849779605865,0.143525421619415,0.961789965629578,0.142540469765663,0.968861758708954,0.151030212640762,0.954361081123352,0.155225709080696,0.951689839363098,0.167837515473366,0.952236771583557,0.15979340672493,0.950330197811127,0.168108433485031,0.959706127643585,0.164591506123543,0.977075517177582,0.144014090299606,0.982354700565338,0.160963177680969,0.979820191860199,0.139183074235916,0.975829780101776,0.139076724648476,0.968803524971008,0.167186796665192,0.949884533882141,0.168690785765648,0.955399215221405,0.170529007911682,0.957100689411163,0.169452920556068,0.968332588672638,0.168690785765648,0.970988631248474,0.151040345430374,0.982374966144562,0.138580456376076,0.984314441680908,0.158497035503387,0.982658565044403,0.140066727995873,0.957948923110962,0.148424804210663,0.952573537826538,0.137836053967476,0.980070829391479,0.152800068259239,0.952520370483398,0.173415467143059,0.950201034545898,0.171554461121559,0.95261150598526,0.168194517493248,0.974725842475891,0.164396554231644,0.980136692523956,0.144872426986694,0.985008239746094,0.142596185207367,0.954786479473114,0.139127358794212,0.961764633655548,0.141745433211327,0.953219175338745,0.152207583189011,0.951606333255768,0.13637763261795,0.974037110805511,0.135623097419739,0.97819972038269,0.167100697755814,0.977814853191376,0.153752088546753,0.984957575798035,0.149513557553291,0.985231041908264,0.135640829801559,0.982704102993011,0.141720116138458,0.987479448318481,0.163593903183937,0.982990205287933,0.139431208372116,0.954880177974701,0.135595247149467,0.957477986812592,0.136268749833107,0.96406364440918,0.136605516076088,0.969183325767517,0.164282605051994,0.985243678092957,0.145639628171921,0.988120019435883,0.135364845395088,0.987588286399841,0.13786643743515,0.991019129753113,0.134053274989128,0.976936280727386,0.134468510746956,0.968968093395233,0.149554073810577,0.988039016723633,0.156476512551308,0.988001048564911,0.141314998269081,0.99081152677536,0.166984230279922,0.980845630168915,\r\n0.134114041924477,0.961202502250671,0.133987441658974,0.985180377960205,0.162928000092506,0.98846435546875,0.145563662052155,0.9908646941185,0.136083915829659,0.991672396659851,0.138833656907082,0.993497967720032,0.133792474865913,0.952733039855957,0.155656144022942,0.991252064704895,0.165348574519157,0.988484621047974,0.149098306894302,0.990788757801056,0.134549543261528,0.990365922451019,0.142720252275467,0.993133366107941,0.168052732944489,0.982709169387817,0.160406142473221,0.991034328937531,0.13602314889431,0.994981706142426,0.140704795718193,0.995558977127075,0.149852842092514,0.994141101837158,0.161631628870964,0.993130803108215,0.159079387784004,0.993528366088867,0.153177335858345,0.994298040866852,0.148229837417603,0.996597111225128,0.153577387332916,0.996321141719818,0.157615900039673,0.995693206787109,0.847758293151855,0.898089051246643,0.846132814884186,0.90185409784317,0.847844421863556,0.895184874534607,0.240021795034409,0.599686086177826,0.237839221954346,0.601893961429596,0.232137203216553,0.599546849727631,0.240543380379677,0.604818403720856,0.233104422688484,0.603618264198303,0.236198499798775,0.590344309806824,0.235570564866066,0.606712341308594,0.244442641735077,0.603347361087799,0.226779535412788,0.605079233646393,0.23052179813385,0.595493137836456,0.239277392625809,0.593064963817596,0.237013801932335,0.609996318817139,0.244999676942825,0.595166504383087,0.241571366786957,0.607636511325836,0.221457302570343,0.614153861999512,0.225807249546051,0.598301112651825,0.221188917756081,0.61171555519104,0.227134004235268,0.593968868255615,0.242877870798111,0.585856378078461,0.242260068655014,0.594641089439392,0.231357350945473,0.613941133022308,0.247217684984207,0.600744426250458,0.246447965502739,0.605747640132904,0.225751549005508,0.615586936473846,0.21920382976532,0.603914499282837,0.217380806803703,0.610214054584503,0.234056442975998,0.586122274398804,0.242401853203774,0.581207692623138,0.24456924200058,0.588064312934875,0.235889598727226,0.616498470306396,0.229807779192925,0.620415449142456,0.248291254043579,\r\n0.587179362773895,0.249141991138458,0.602694094181061,0.249633207917213,0.596098244190216,0.220535665750504,0.618551909923553,0.214626014232636,0.614131033420563,0.221229419112206,0.597637712955475,0.227903723716736,0.585795640945435,0.245931446552277,0.584458768367767,0.231838434934616,0.620628118515015,0.249633207917213,0.590496242046356,0.250737130641937,0.598968267440796,0.247764602303505,0.594856321811676,0.216145202517509,0.616868138313293,0.214134812355042,0.605565369129181,0.213506877422333,0.598677098751068,0.211374953389168,0.613872766494751,0.220252081751823,0.593476414680481,0.229873612523079,0.583188951015472,0.23744423687458,0.581902682781219,0.24730883538723,0.581333041191101,0.234122276306152,0.622461259365082,0.229098826646805,0.626816272735596,0.250899195671082,0.584680318832397,0.2526715695858,0.599305033683777,0.252408266067505,0.592344582080841,0.255284577608109,0.5924471616745,0.225604683160782,0.623251259326935,0.213299259543419,0.621504187583923,0.210220366716385,0.606694638729095,0.226394668221474,0.583526968955994,0.222009271383286,0.588688433170319,0.239398926496506,0.578355371952057,0.2427968531847,0.574772655963898,0.239338159561157,0.616860508918762,0.254423707723618,0.587446510791779,0.258378654718399,0.591111540794373,0.220738217234612,0.625274300575256,0.206979423761368,0.621329486370087,0.20855937898159,0.600281119346619,0.21462094783783,0.59167617559433,0.206473022699356,0.611659824848175,0.231291517615318,0.57790219783783,0.219350695610046,0.588017463684082,0.248468488454819,0.576490581035614,0.252286732196808,0.579904973506927,0.234876811504364,0.626223802566528,0.243723556399345,0.611707925796509,0.240442112088203,0.623228430747986,0.223862677812576,0.630100250244141,0.254489541053772,0.581844449043274,0.207014873623848,0.626206040382385,0.213572710752487,0.627829074859619,0.200457036495209,0.618321478366852,0.2049690335989,0.605684340000153,0.222804322838783,0.582810401916504,0.238219022750854,0.574822008609772,0.244635060429573,0.572610318660736,0.228237956762314,0.632118225097656,\r\n0.242295518517494,0.615969240665436,0.242614552378654,0.620293915271759,0.218499943614006,0.634561598300934,0.258844554424286,0.585360109806061,0.218322709202766,0.6306471824646,0.20238134264946,0.624365329742432,0.201550856232643,0.620797753334045,0.192030608654022,0.598564445972443,0.209126546978951,0.593924582004547,0.217507407069206,0.583137035369873,0.194380283355713,0.616498470306396,0.189898669719696,0.605826139450073,0.225812315940857,0.578530132770538,0.228734225034714,0.575203061103821,0.248478621244431,0.571298778057098,0.254185706377029,0.576575398445129,0.256474614143372,0.578971922397614,0.222232088446617,0.638339340686798,0.234897062182426,0.628036677837372,0.248919188976288,0.608983516693115,0.247643068432808,0.618235409259796,0.261067628860474,0.582496464252472,0.202234491705894,0.63081681728363,0.207263007760048,0.629664778709412,0.209410130977631,0.632429659366608,0.187209710478783,0.622565090656281,0.197894677519798,0.595948874950409,0.211567372083664,0.587212264537811,0.190486088395119,0.611687660217285,0.219882413744926,0.57942134141922,0.230739548802376,0.571163296699524,0.239226758480072,0.571122765541077,0.244756609201431,0.567610919475555,0.248144388198853,0.61199152469635,0.250499129295349,0.605859041213989,0.250347226858139,0.614677965641022,0.246361881494522,0.622405588626862,0.217021271586418,0.640093982219696,0.213658794760704,0.634731233119965,0.195134818553925,0.627548038959503,0.193418130278587,0.624155163764954,0.181841909885406,0.599815189838409,0.193443447351456,0.591943264007568,0.204660132527351,0.590158224105835,0.210701435804367,0.58345103263855,0.173901602625847,0.613361299037933,0.234567910432816,0.569708704948425,0.2221460044384,0.570622742176056,0.250240862369537,0.568761706352234,0.254261672496796,0.571241796016693,0.257112681865692,0.5743687748909,0.262586832046509,0.578888356685638,0.251744866371155,0.608955681324005,0.248220354318619,0.61944568157196,0.21334482729435,0.639141976833344,0.196745157241821,0.63134092092514,0.209248080849648,0.636040270328522,0.174251019954681,\r\n0.602982699871063,0.185776606202126,0.59540194272995,0.206219837069511,0.586756527423859,0.214615881443024,0.579374551773071,0.17256473004818,0.620896518230438,0.17151141166687,0.605864107608795,0.219867214560509,0.575413227081299,0.230992749333382,0.567329883575439,0.238441839814186,0.56534731388092,0.245440244674683,0.562653303146362,0.263999670743942,0.581039309501648,0.253395736217499,0.606155276298523,0.212772607803345,0.64179801940918,0.198780864477158,0.635528802871704,0.191210240125656,0.631252288818359,0.17179499566555,0.599807620048523,0.194066315889359,0.587023615837097,0.182444512844086,0.590113937854767,0.202816843986511,0.582507848739624,0.209526598453522,0.579141557216644,0.17300021648407,0.623732328414917,0.163277417421341,0.620147049427032,0.16710576415062,0.611763656139374,0.236082032322884,0.559787094593048,0.224905863404274,0.567238748073578,0.2175023406744,0.57403838634491,0.250808030366898,0.562882483005524,0.255244076251984,0.567293167114258,0.258231818675995,0.570170760154724,0.263326168060303,0.575232207775116,0.265863209962845,0.577651500701904,0.255846679210663,0.609163284301758,0.253643870353699,0.611885190010071,0.20624515414238,0.6406130194664,0.184692919254303,0.630477547645569,0.174094036221504,0.595453858375549,0.212286457419395,0.574938476085663,0.160963177680969,0.607537746429443,0.221447169780731,0.561677217483521,0.217613756656647,0.565135896205902,0.245019927620888,0.559527575969696,0.251147329807281,0.559187054634094,0.256626546382904,0.604003131389618,0.196745157241821,0.639709115028381,0.191843241453171,0.63716447353363,0.163981303572655,0.602258563041687,0.171774744987488,0.593263685703278,0.183730766177177,0.585996925830841,0.198527663946152,0.582231879234314,0.207739025354385,0.574333369731903,0.17838828265667,0.630667448043823,0.161479711532593,0.624864101409912,0.161439195275307,0.612480163574219,0.230850949883461,0.557312071323395,0.225204631686211,0.559822559356689,0.244143858551979,0.556753814220428,0.2556491792202,0.560634076595306,0.259907990694046,0.561684846878052,\r\n0.262738734483719,0.564063608646393,0.268060982227325,0.569670677185059,0.197362959384918,0.64246141910553,0.180631622672081,0.636242866516113,0.163773685693741,0.596019804477692,0.171835511922836,0.58739709854126,0.192957311868668,0.583076298236847,0.203662529587746,0.571997582912445,0.212402939796448,0.568787038326263,0.158917337656021,0.61828351020813,0.157190531492233,0.610310256481171,0.15546877682209,0.60067355632782,0.237064436078072,0.555819511413574,0.225381880998611,0.552525401115417,0.215132415294647,0.559292078018188,0.252469033002853,0.556132197380066,0.239743277430534,0.557029783725739,0.256682246923447,0.55800461769104,0.258328020572662,0.560673296451569,0.270390391349792,0.572197616100311,0.204442381858826,0.643864095211029,0.190794989466667,0.642770290374756,0.189301133155823,0.638871073722839,0.162026613950729,0.590915322303772,0.173410400748253,0.583413064479828,0.182535663247108,0.574752390384674,0.19811749458313,0.574530839920044,0.209805116057396,0.566498100757599,0.160401076078415,0.62755560874939,0.172038063406944,0.636354267597198,0.158081784844399,0.624960362911224,0.233646258711815,0.54878693819046,0.2226422727108,0.549255311489105,0.246797382831573,0.551194846630096,0.257300049066544,0.546856284141541,0.260535925626755,0.557399451732636,0.263538837432861,0.559614956378937,0.270344823598862,0.566238582134247,0.176281675696373,0.638800144195557,0.156309396028519,0.592209160327911,0.158917337656021,0.582961082458496,0.180960774421692,0.581127941608429,0.192754745483398,0.572205245494843,0.15858818590641,0.586318492889404,0.204786732792854,0.567045032978058,0.16802741587162,0.632470190525055,0.155377626419067,0.617949247360229,0.153271019458771,0.608135282993317,0.242812037467957,0.548550188541412,0.226283267140388,0.546703100204468,0.215654000639915,0.550114929676056,0.258014053106308,0.555101692676544,0.24585548043251,0.548822343349457,0.275545507669449,0.566676616668701,0.181841909885406,0.641737222671509,0.152835518121719,0.592002809047699,0.16281658411026,0.575860142707825,0.171962112188339,\r\n0.575655043125153,0.169171869754791,0.567033648490906,0.180530339479446,0.568675637245178,0.200193718075752,0.565970182418823,0.20603246986866,0.56115186214447,0.15600049495697,0.627132773399353,0.159504756331444,0.632303059101105,0.169723838567734,0.638805210590363,0.164249688386917,0.63721764087677,0.152313932776451,0.61903041601181,0.150987163186073,0.598612546920776,0.242953836917877,0.544793963432312,0.233165189623833,0.544668614864349,0.223508208990097,0.544878780841827,0.207576975226402,0.551475882530212,0.252707034349442,0.546070098876953,0.263214766979218,0.549136340618134,0.270020723342896,0.555987894535065,0.271884262561798,0.557507038116455,0.274092137813568,0.564566254615784,0.271570295095444,0.574027001857758,0.151103645563126,0.58808958530426,0.154886424541473,0.582036912441254,0.15947437286377,0.575013160705566,0.192450910806656,0.568430006504059,0.149635091423988,0.609900116920471,0.148703321814537,0.601205289363861,0.24634163081646,0.545192778110504,0.234223559498787,0.540478229522705,0.227913856506348,0.539214730262756,0.261928498744965,0.55369645357132,0.26253616809845,0.543143093585968,0.265306174755096,0.5460245013237,0.267043113708496,0.552665889263153,0.271772861480713,0.562012732028961,0.268238216638565,0.579327702522278,0.276148110628128,0.571786165237427,0.171977296471596,0.643091857433319,0.171496227383614,0.561997532844543,0.181968510150909,0.563781321048737,0.194927185773849,0.563605308532715,0.201545789837837,0.558148920536041,0.202376276254654,0.553855955600739,0.152784883975983,0.632644891738892,0.152825385332108,0.627575874328613,0.159327521920204,0.636463105678558,0.16412815451622,0.641572654247284,0.149356573820114,0.617716312408447,0.147072717547417,0.599640488624573,0.242108151316643,0.540956735610962,0.244675576686859,0.539873063564301,0.222890406847,0.541296064853668,0.208447977900505,0.545825779438019,0.253188103437424,0.542482256889343,0.262931168079376,0.539336264133453,0.270841091871262,0.55088084936142,0.273975670337677,0.553992688655853,0.274634003639221,0.559660494327545,\r\n0.27724701166153,0.567884385585785,0.271286725997925,0.577862918376923,0.148151353001595,0.588482081890106,0.1484754383564,0.582596480846405,0.155326992273331,0.573530733585358,0.162527948617935,0.561653196811676,0.201900273561478,0.54886794090271,0.150126293301582,0.621053457260132,0.144140690565109,0.614455163478851,0.140808597207069,0.609583616256714,0.143274754285812,0.60547924041748,0.250256061553955,0.538056373596191,0.235651597380638,0.53661060333252,0.211719304323196,0.541585981845856,0.225786983966827,0.537176489830017,0.251942366361618,0.539151430130005,0.266592413187027,0.54213285446167,0.276776045560837,0.554559826850891,0.276841878890991,0.562663435935974,0.14886537194252,0.572422981262207,0.157033547759056,0.564613044261932,0.17998343706131,0.558278024196625,0.160669475793839,0.556639850139618,0.188799798488617,0.55659806728363,0.193245947360992,0.549873113632202,0.157225981354713,0.637620270252228,0.144824326038361,0.631110489368439,0.148819789290428,0.626357972621918,0.146748632192612,0.619622886180878,0.139608442783356,0.600589990615845,0.144115373492241,0.594582855701447,0.247962087392807,0.534474909305573,0.229645729064941,0.532965838909149,0.218788594007492,0.537699341773987,0.225827500224113,0.534391343593597,0.208331510424614,0.533400058746338,0.204584166407585,0.53998064994812,0.261482864618301,0.535961151123047,0.269600421190262,0.544690191745758,0.266273379325867,0.535162329673767,0.275743007659912,0.549880743026733,0.144905343651772,0.585694372653961,0.144383758306503,0.571579813957214,0.151761949062347,0.569421291351318,0.157150015234947,0.560359358787537,0.164675071835518,0.554809212684631,0.189032733440399,0.54735255241394,0.152222782373428,0.636242866516113,0.140246495604515,0.615710973739624,0.136797934770584,0.609930515289307,0.136149749159813,0.605370402336121,0.233712092041969,0.532993674278259,0.24557189643383,0.53125673532486,0.255228877067566,0.53249990940094,0.197930127382278,0.538329839706421,0.268562287092209,0.539119780063629,0.272415965795517,0.547253787517548,0.281369060277939,\r\n0.545886516571045,0.143527954816818,0.580125272274017,0.14449517428875,0.562340617179871,0.153306469321251,0.561368346214294,0.180211305618286,0.553184986114502,0.154886424541473,0.556510746479034,0.159859240055084,0.55297863483429,0.145133227109909,0.624433696269989,0.142464518547058,0.619617879390717,0.134873628616333,0.594310700893402,0.140281945466995,0.591634392738342,0.25323873758316,0.528726041316986,0.225624948740005,0.525377452373505,0.234983146190643,0.527915775775909,0.214494347572327,0.534043192863464,0.200527936220169,0.53302276134491,0.263700902462006,0.531892240047455,0.273530036211014,0.543215274810791,0.269914388656616,0.53131115436554,0.277439445257187,0.544152140617371,0.139826193451881,0.578764319419861,0.139669209718704,0.573896586894989,0.136408016085625,0.562974870204926,0.177618563175201,0.550095975399017,0.154861107468605,0.552802622318268,0.163034334778786,0.546382784843445,0.189731568098068,0.535193979740143,0.139491975307465,0.625919938087463,0.135921880602837,0.613763928413391,0.131835252046585,0.605909705162048,0.131571933627129,0.600605189800262,0.137294203042984,0.584601819515228,0.246220082044601,0.525266051292419,0.257862150669098,0.528672814369202,0.226911187171936,0.523037910461426,0.222242221236229,0.52954638004303,0.209369614720345,0.52957421541214,0.215810984373093,0.530086934566498,0.195823505520821,0.523673415184021,0.269802957773209,0.528042376041412,0.274082034826279,0.539998412132263,0.271018326282501,0.535771250724792,0.27615824341774,0.543127954006195,0.28246796131134,0.541891038417816,0.135101512074471,0.559226274490356,0.148505821824074,0.556043565273285,0.164381355047226,0.539531230926514,0.146763816475868,0.550751745700836,0.155068725347519,0.543921709060669,0.158810988068581,0.545428216457367,0.178205981850624,0.543174743652344,0.193656131625175,0.527082741260529,0.183578848838806,0.536986589431763,0.140540212392807,0.623752593994141,0.141487166285515,0.630857348442078,0.132230252027512,0.608775913715363,0.131075665354729,0.589023888111115,0.238588690757751,0.522584676742554,\r\n0.252712100744247,0.525171101093292,0.223249942064285,0.522569477558136,0.221852287650108,0.525862336158752,0.231661185622215,0.522027671337128,0.208336561918259,0.519672930240631,0.202052190899849,0.522654294967651,0.26376673579216,0.52764230966568,0.272137463092804,0.530080616474152,0.279054820537567,0.536540985107422,0.130549013614655,0.574018120765686,0.13353168964386,0.567586898803711,0.13126303255558,0.556886732578278,0.147133499383926,0.542605102062225,0.160178259015083,0.536776483058929,0.135410413146019,0.617855608463287,0.140646547079086,0.621291518211365,0.135891497135162,0.627689838409424,0.125799015164375,0.599807620048523,0.12711563706398,0.595062673091888,0.131835252046585,0.580022692680359,0.242538586258888,0.51859176158905,0.246326431632042,0.520708501338959,0.258373618125916,0.524776101112366,0.226019933819771,0.518632292747498,0.217603623867035,0.526324450969696,0.229681178927422,0.518387913703918,0.210301384329796,0.524462163448334,0.191564723849297,0.514597535133362,0.263407170772552,0.524793863296509,0.274760603904724,0.535911798477173,0.272112131118774,0.524481117725372,0.277403980493546,0.536447286605835,0.28566837310791,0.534552097320557,0.132802471518517,0.553629338741302,0.138656422495842,0.553516626358032,0.175547391176224,0.535062313079834,0.139714777469635,0.544763565063477,0.147194266319275,0.538237392902374,0.166614562273026,0.5253546833992,0.133389890193939,0.623826026916504,0.127986639738083,0.58538419008255,0.233453840017319,0.517266273498535,0.23918117582798,0.517789125442505,0.252747535705566,0.521255373954773,0.219462096691132,0.518667697906494,0.205591902136803,0.508414447307587,0.214063912630081,0.517395377159119,0.199692383408546,0.508022010326386,0.184434652328491,0.517033338546753,0.26959028840065,0.52399879693985,0.27310973405838,0.53222268819809,0.277343213558197,0.53269237279892,0.281136125326157,0.530561685562134,0.126781418919563,0.570137858390808,0.126092717051506,0.573600351810455,0.129333660006523,0.563355922698975,0.127338454127312,0.555475115776062,0.140808597207069,\r\n0.538351356983185,0.153458386659622,0.534958481788635,0.147255033254623,0.533868491649628,0.160233974456787,0.524755895137787,0.130984514951706,0.615389466285706,0.123550608754158,0.595532357692719,0.124239310622215,0.591805279254913,0.125955998897552,0.580835461616516,0.241642266511917,0.51428234577179,0.246432781219482,0.517315626144409,0.260723292827606,0.521004736423492,0.227022603154182,0.514163315296173,0.222171321511269,0.514481067657471,0.191990092396736,0.50719279050827,0.185827240347862,0.506543338298798,0.265898644924164,0.520532548427582,0.270005524158478,0.519723534584045,0.279009252786636,0.528837442398071,0.282771795988083,0.527896761894226,0.124695062637329,0.552034199237823,0.175987958908081,0.518048644065857,0.132974654436111,0.542087256908417,0.157413333654404,0.532727837562561,0.166179060935974,0.517178893089294,0.13012869656086,0.619739413261414,0.122137762606144,0.59849351644516,0.124234244227409,0.58497017621994,0.234208360314369,0.512555539608002,0.246159315109253,0.513603746891022,0.251891732215881,0.51356703042984,0.227797389030457,0.510581851005554,0.201793923974037,0.503321349620819,0.214671581983566,0.508111894130707,0.196253955364227,0.504558265209198,0.273150265216827,0.520164132118225,0.278599083423615,0.523068308830261,0.281095623970032,0.525028049945831,0.286974877119064,0.530217349529266,0.120821133255959,0.562302649021149,0.122866973280907,0.557574152946472,0.130842715501785,0.548185586929321,0.169673204421997,0.51629775762558,0.13425076007843,0.533596277236938,0.149579390883446,0.527013123035431,0.141725182533264,0.532070755958557,0.162335515022278,0.515324234962463,0.120562866330147,0.595314621925354,0.121423743665218,0.592057228088379,0.123753167688847,0.581084907054901,0.239206492900848,0.509285449981689,0.258905321359634,0.517715692520142,0.222515672445297,0.51166045665741,0.207176923751831,0.503730297088623,0.212296590209007,0.504696249961853,0.189209967851639,0.504443049430847,0.178413599729538,0.508177697658539,0.263159036636353,0.512316226959229,0.270567625761032,0.515367269515991,\r\n0.276178508996964,0.525667369365692,0.28673180937767,0.520480632781982,0.289456218481064,0.531661868095398,0.286620408296585,0.525140702724457,0.120983175933361,0.567398250102997,0.124219052493572,0.548795759677887,0.117423214018345,0.554100275039673,0.129267826676369,0.541673302650452,0.147017017006874,0.527585387229919,0.154597774147987,0.516781389713287,0.158502086997032,0.51384174823761,0.16543972492218,0.51218456029892,0.121160417795181,0.584776520729065,0.121798478066921,0.575051188468933,0.227984756231308,0.506821811199188,0.234578028321266,0.504489898681641,0.245931446552277,0.509998202323914,0.249820560216904,0.509369015693665,0.258115351200104,0.512555539608002,0.224485546350479,0.505401372909546,0.196299523115158,0.500379204750061,0.205262735486031,0.499655067920685,0.215795785188675,0.501243889331818,0.184257417917252,0.502298474311829,0.192486360669136,0.502246558666229,0.18047970533371,0.503555595874786,0.273150265216827,0.515623033046722,0.277991414070129,0.520138800144196,0.29084375500679,0.528523445129395,0.288843482732773,0.524664700031281,0.11845625936985,0.561107516288757,0.170078322291374,0.508548676967621,0.127409353852272,0.536516904830933,0.13605859875679,0.528503179550171,0.146748632192612,0.52258974313736,0.141811266541481,0.521906137466431,0.150435194373131,0.519734919071198,0.160968244075775,0.51022481918335,0.11866894364357,0.588517487049103,0.12019319832325,0.58096969127655,0.238867208361626,0.500171601772308,0.24102446436882,0.505264639854431,0.255846679210663,0.508928418159485,0.218074575066566,0.504415214061737,0.200502619147301,0.499403119087219,0.210169717669487,0.500062704086304,0.188055396080017,0.500942587852478,0.17665134370327,0.505033016204834,0.267017781734467,0.508624613285065,0.275246739387512,0.517649829387665,0.270425826311111,0.512060523033142,0.283384531736374,0.511524975299835,0.285481005907059,0.512841641902924,0.116891495883465,0.56782865524292,0.119772888720036,0.572006464004517,0.118451200425625,0.544714212417603,0.114850714802742,0.546210646629334,0.17282298207283,\r\n0.506810426712036,0.123753167688847,0.5346799492836,0.132366970181465,0.525252163410187,0.136656150221825,0.519523501396179,0.148804605007172,0.511495888233185,0.154081255197525,0.505478620529175,0.168670535087585,0.502606093883514,0.118299275636673,0.586724877357483,0.11792454123497,0.584930956363678,0.22952926158905,0.501055240631104,0.235935181379318,0.498751133680344,0.245328828692436,0.506277441978455,0.251051098108292,0.505519151687622,0.219163328409195,0.499906986951828,0.192136943340302,0.499292999505997,0.200381085276604,0.496848344802856,0.203297927975655,0.496914178133011,0.208655595779419,0.496807843446732,0.212580174207687,0.496347039937973,0.183862432837486,0.499752551317215,0.179942920804024,0.500375390052795,0.176281675696373,0.500870406627655,0.262100666761398,0.508582830429077,0.275378406047821,0.514762103557587,0.273023664951324,0.510327339172363,0.280082821846008,0.513383448123932,0.287739545106888,0.512753009796143,0.289223283529282,0.515678703784943,0.292064160108566,0.525282502174377,0.114126570522785,0.556655049324036,0.122502371668816,0.539789497852325,0.112511165440083,0.549814879894257,0.126811802387238,0.526685237884521,0.143325388431549,0.512039005756378,0.136939734220505,0.508057415485382,0.158400818705559,0.498934715986252,0.163738235831261,0.502189576625824,0.115579925477505,0.583970069885254,0.118218258023262,0.579749286174774,0.22430831193924,0.493166863918304,0.232071369886398,0.500819802284241,0.239247009158134,0.494808852672577,0.243510872125626,0.498761266469955,0.254469275474548,0.505241870880127,0.2202318161726,0.495246887207031,0.20678699016571,0.49521142244339,0.216646537184715,0.494791120290756,0.188495948910713,0.498967617750168,0.172625496983528,0.501538872718811,0.262024730443954,0.504600048065186,0.2767254114151,0.515098869800568,0.278431981801987,0.510543823242188,0.284751802682877,0.502763092517853,0.29018035531044,0.519923567771912,0.117251038551331,0.574142158031464,0.113670811057091,0.569832742214203,0.115873642265797,0.539643943309784,0.113746777176857,0.541493535041809,\r\n0.109457597136498,0.54495096206665,0.115276090800762,0.531001031398773,0.120238773524761,0.521326303482056,0.128062605857849,0.519242465496063,0.131278216838837,0.521413624286652,0.133440539240837,0.508414447307587,0.148890689015388,0.500291883945465,0.144135624170303,0.5002361536026,0.166017010807991,0.498200446367264,0.115949600934982,0.581094980239868,0.232203036546707,0.494546800851822,0.251294195652008,0.497678846120834,0.253780573606491,0.501523673534393,0.257801383733749,0.504907667636871,0.204609498381615,0.494953155517578,0.210240617394447,0.493784666061401,0.213846161961555,0.492095828056335,0.179254218935966,0.498594164848328,0.176393076777458,0.498597949743271,0.173121765255928,0.49805611371994,0.267752051353455,0.504142999649048,0.275722742080688,0.510298252105713,0.280882924795151,0.506159722805023,0.289734750986099,0.509189248085022,0.288610547780991,0.502876996994019,0.109422147274017,0.54958575963974,0.10972598940134,0.563425540924072,0.169703587889671,0.497835844755173,0.118309408426285,0.523110091686249,0.120805941522121,0.514843165874481,0.137689203023911,0.501243889331818,0.134736910462379,0.496663510799408,0.152683600783348,0.494241684675217,0.159428805112839,0.49585834145546,0.112885899841785,0.573901653289795,0.22179152071476,0.485405057668686,0.228617742657661,0.487129330635071,0.237565770745277,0.490747541189194,0.243693172931671,0.494460701942444,0.250868797302246,0.493856817483902,0.257867217063904,0.499704420566559,0.217446640133858,0.490194320678711,0.209668397903442,0.492484480142593,0.259725689888,0.500972986221313,0.272020995616913,0.498634666204453,0.278700351715088,0.505164682865143,0.282290697097778,0.501432538032532,0.284432768821716,0.496731877326965,0.111078061163425,0.569782137870789,0.110819801688194,0.537492990493774,0.108181476593018,0.539935111999512,0.107001572847366,0.547838687896729,0.112718790769577,0.526409268379211,0.128731042146683,0.504983603954315,0.122208654880524,0.510293185710907,0.130832597613335,0.492292046546936,0.143852040171623,0.495593756437302,0.148348838090897,\r\n0.493956834077835,0.165034607052803,0.494161933660507,0.168017283082008,0.495154470205307,0.113994911313057,0.577800869941711,0.225943967700005,0.484180837869644,0.231483951210976,0.481988161802292,0.241125732660294,0.491038739681244,0.254200905561447,0.495056986808777,0.256935447454453,0.491190642118454,0.21260042488575,0.490303188562393,0.215598300099373,0.48792439699173,0.170807525515556,0.49568110704422,0.266901314258575,0.500975489616394,0.276122808456421,0.502185761928558,0.291436225175858,0.501507222652435,0.289922118186951,0.499080300331116,0.104368314146996,0.556356251239777,0.105806477367878,0.561408817768097,0.108839794993401,0.534003913402557,0.107047148048878,0.54235565662384,0.106692671775818,0.552581071853638,0.109341122210026,0.529610931873322,0.112582065165043,0.520435035228729,0.117402955889702,0.515225470066071,0.120380565524101,0.501812338829041,0.128098055720329,0.495208889245987,0.133440539240837,0.490760207176209,0.147670269012451,0.488253533840179,0.154856041073799,0.491426110267639,0.160542875528336,0.492542713880539,0.218656927347183,0.486182391643524,0.223614543676376,0.480363875627518,0.239039391279221,0.487200230360031,0.250078827142715,0.490122139453888,0.253892004489899,0.489924639463425,0.260839760303497,0.490058839321136,0.262981802225113,0.496745824813843,0.174681454896927,0.497081309556961,0.269625723361969,0.493369400501251,0.272147595882416,0.49399608373642,0.28041198849678,0.498595416545868,0.289182752370834,0.495231688022614,0.106287553906441,0.53719425201416,0.105563409626484,0.545167446136475,0.108713194727898,0.526031970977783,0.109629772603512,0.519431114196777,0.126016765832901,0.50296688079834,0.119919747114182,0.505326688289642,0.116258502006531,0.511723756790161,0.121383234858513,0.493221282958984,0.126730784773827,0.483609884977341,0.128614574670792,0.480782926082611,0.13882352411747,0.488824516534805,0.151483431458473,0.487664848566055,0.220414131879807,0.482015997171402,0.22795943915844,0.47892826795578,0.243298187851906,0.487126797437668,0.234532460570335,0.480508208274841,\r\n0.256651848554611,0.486250758171082,0.264257937669754,0.492193311452866,0.2179986089468,0.484251737594604,0.27704444527626,0.495755821466446,0.281288057565689,0.492071777582169,0.293152898550034,0.491912245750427,0.284250468015671,0.492271810770035,0.102028757333755,0.55701208114624,0.103203602135181,0.552243053913116,0.107315540313721,0.527675271034241,0.105477318167686,0.541321337223053,0.112146563827991,0.516011655330658,0.117848582565784,0.499577850103378,0.12022864818573,0.489620804786682,0.132296070456505,0.483257949352264,0.137172669172287,0.485586106777191,0.148445054888725,0.484366953372955,0.154643356800079,0.487548381090164,0.157990634441376,0.489691704511642,0.222667589783669,0.47821044921875,0.225133746862412,0.476588696241379,0.23179791867733,0.476716578006744,0.240036994218826,0.482355296611786,0.253314703702927,0.485777258872986,0.266860812902451,0.485808908939362,0.266886115074158,0.489698052406311,0.27090185880661,0.486945778131485,0.275773376226425,0.489656269550323,0.294975936412811,0.492114812135696,0.286640644073486,0.48929038643837,0.291937559843063,0.489791721105576,0.104737982153893,0.548638761043549,0.104839257895947,0.516329407691956,0.105629235506058,0.521511137485504,0.107902958989143,0.51557868719101,0.11799544095993,0.49310228228569,0.116374969482422,0.506585121154785,0.11291628330946,0.512098491191864,0.119514629244804,0.47898268699646,0.130280613899231,0.475727826356888,0.142732903361321,0.480674058198929,0.149624958634377,0.482236295938492,0.15238481760025,0.484377086162567,0.163550868630409,0.491995811462402,0.228617742657661,0.474450439214706,0.243652656674385,0.482594549655914,0.234613478183746,0.472427397966385,0.264141470193863,0.481551378965378,0.273449033498764,0.486705243587494,0.281303226947784,0.487929463386536,0.297214210033417,0.487626880407333,0.284047901630402,0.487052112817764,0.288514316082001,0.489142268896103,0.100727319717407,0.552201271057129,0.107978917658329,0.511762976646423,0.116182543337345,0.498061180114746,0.113027691841125,0.508652448654175,0.117580197751522,\r\n0.489201784133911,0.121621236205101,0.474954307079315,0.133197456598282,0.475454360246658,0.139704659581184,0.475408792495728,0.144474908709526,0.477366030216217,0.146530881524086,0.477809131145477,0.226961836218834,0.472429931163788,0.231899201869965,0.472413450479507,0.243708357214928,0.476522862911224,0.238279789686203,0.475280940532684,0.2511827647686,0.482767999172211,0.254175573587418,0.481953978538513,0.257219016551971,0.48185521364212,0.267493814229965,0.480286657810211,0.272836297750473,0.481218427419662,0.275930374860764,0.484208703041077,0.278077483177185,0.486795127391815,0.296439439058304,0.493692249059677,0.285324037075043,0.47900801897049,0.290367722511292,0.485730409622192,0.296403974294662,0.483054131269455,0.0975826010107994,0.557028532028198,0.101451463997364,0.548552691936493,0.10415056347847,0.51215922832489,0.102621242403984,0.519017100334167,0.114450663328171,0.502350330352783,0.1142987459898,0.49459108710289,0.108075134456158,0.508253693580627,0.117251038551331,0.475083440542221,0.117256097495556,0.480056256055832,0.132296070456505,0.471015810966492,0.127561271190643,0.470879077911377,0.14148211479187,0.472651481628418,0.229676112532616,0.469408005475998,0.235054045915604,0.467888802289963,0.232395470142365,0.466636747121811,0.261523395776749,0.477936983108521,0.265260607004166,0.477457165718079,0.270051091909409,0.479910671710968,0.281100690364838,0.480122089385986,0.299634784460068,0.491322308778763,0.287420511245728,0.476264595985413,0.294813901185989,0.479953706264496,0.29880428314209,0.482480615377426,0.101086862385273,0.559625089168549,0.0960937961935997,0.549899697303772,0.0990258306264877,0.5483438372612,0.0996942743659019,0.515738189220428,0.105563409626484,0.52587628364563,0.104687340557575,0.508560061454773,0.112212389707565,0.502617478370667,0.11039949208498,0.50464940071106,0.113311275839806,0.488162398338318,0.118081524968147,0.471051245927811,0.116182543337345,0.486146926879883,0.136732116341591,0.470830976963043,0.138160154223442,0.467702716588974,0.145675078034401,0.4746935069561,\r\n0.144019156694412,0.473161667585373,0.248468488454819,0.474535256624222,0.242938637733459,0.46894845366478,0.237292319536209,0.464499741792679,0.254114806652069,0.474534004926682,0.265012472867966,0.466267079114914,0.273514866828918,0.476505160331726,0.275991141796112,0.480248689651489,0.278599083423615,0.47994738817215,0.283404767513275,0.47957518696785,0.299882918596268,0.495045572519302,0.299680352210999,0.487242013216019,0.28519743680954,0.474402338266373,0.290469020605087,0.475746810436249,0.292535096406937,0.472050130367279,0.296530574560165,0.478630751371384,0.103704929351807,0.561668395996094,0.099299281835556,0.56421172618866,0.0945746004581451,0.551132798194885,0.100909620523453,0.539994597434998,0.0995170325040817,0.511437654495239,0.10096026211977,0.520718634128571,0.107381373643875,0.504694998264313,0.11078941822052,0.49701926112175,0.114673480391502,0.477145731449127,0.115038082003593,0.472145080566406,0.134691327810287,0.46664434671402,0.126675069332123,0.464773207902908,0.121844053268433,0.464512407779694,0.140560463070869,0.468545854091644,0.141917616128922,0.468235701322556,0.231251016259193,0.465164393186569,0.245708629488945,0.467739433050156,0.234664127230644,0.463456571102142,0.251699298620224,0.474479556083679,0.25886482000351,0.473022401332855,0.26785334944725,0.47172224521637,0.259725689888,0.470148593187332,0.270339757204056,0.473466753959656,0.278907984495163,0.476222842931747,0.281779259443283,0.475843042135239,0.296464741230011,0.499161332845688,0.287141978740692,0.471558928489685,0.289881587028503,0.471458911895752,0.105381101369858,0.566323399543762,0.104520231485367,0.5727179646492,0.0969141572713852,0.562397599220276,0.0953949689865112,0.544334411621094,0.0970913916826248,0.542700052261353,0.102241449058056,0.541277050971985,0.0963115468621254,0.512249112129211,0.103770762681961,0.526962518692017,0.099030889570713,0.520666718482971,0.099056214094162,0.508699297904968,0.108971454203129,0.500272870063782,0.103841662406921,0.50437593460083,0.113655619323254,0.482318580150604,0.111275561153889,\r\n0.488452315330505,0.114749439060688,0.465534061193466,0.117144696414471,0.463957905769348,0.139876827597618,0.465028941631317,0.249972492456436,0.467068433761597,0.239814177155495,0.46104234457016,0.2452781945467,0.463245153427124,0.233190506696701,0.462043732404709,0.235560446977615,0.459133207798004,0.25351220369339,0.467091232538223,0.258297652006149,0.465734094381332,0.267508983612061,0.465691059827805,0.272674232721329,0.47271603345871,0.276705145835876,0.476322829723358,0.282153993844986,0.472583115100861,0.293871998786926,0.468900322914124,0.103497311472893,0.57470428943634,0.0925338268280029,0.536553621292114,0.0997398495674133,0.535601615905762,0.102347791194916,0.535053431987762,0.0962153300642967,0.515610337257385,0.102221190929413,0.527501821517944,0.104297414422035,0.501275539398193,0.112906157970428,0.473732620477676,0.1130580753088,0.46810656785965,0.111716121435165,0.48088926076889,0.130209729075432,0.456839233636856,0.135916814208031,0.463380604982376,0.124538078904152,0.458740770816803,0.120243839919567,0.460177659988403,0.138372838497162,0.462689399719238,0.237459436058998,0.45933198928833,0.234502077102661,0.459024339914322,0.270273923873901,0.469573855400085,0.264050304889679,0.462389349937439,0.275717675685883,0.472417265176773,0.278599083423615,0.473638951778412,0.289228349924088,0.467731833457947,0.287673711776733,0.465315043926239,0.291993260383606,0.468068569898605,0.108885370194912,0.573316752910614,0.107234515249729,0.577440083026886,0.0980181023478508,0.567595720291138,0.0913083478808403,0.538975477218628,0.0939719900488853,0.533725440502167,0.0957696959376335,0.531168103218079,0.103846721351147,0.53722208738327,0.092285692691803,0.511873126029968,0.0967115983366966,0.507583975791931,0.104069538414478,0.531341552734375,0.0962406471371651,0.522023856639862,0.108829662203789,0.497651010751724,0.113483443856239,0.462394416332245,0.115726783871651,0.460776478052139,0.133374705910683,0.457244366407394,0.248509004712105,0.463098287582397,0.23762147128582,0.455211162567139,0.23996102809906,0.456194847822189,\r\n0.23634535074234,0.455430179834366,0.252509534358978,0.462821036577225,0.257730484008789,0.462272882461548,0.270213156938553,0.465568244457245,0.268678784370422,0.46221336722374,0.273089498281479,0.469316840171814,0.281718492507935,0.467979967594147,0.294261932373047,0.464404791593552,0.0926553606987,0.529152631759644,0.0972028002142906,0.530245184898376,0.0999879837036133,0.530716180801392,0.0904120281338692,0.513964533805847,0.0944429412484169,0.508065044879913,0.0988739058375359,0.505417823791504,0.106895230710506,0.494061917066574,0.130209729075432,0.451056182384491,0.136504232883453,0.459073722362518,0.121119908988476,0.455226361751556,0.116992771625519,0.456774681806564,0.24609349668026,0.458363503217697,0.258829355239868,0.458082437515259,0.262814700603485,0.458691388368607,0.275611340999603,0.468352168798447,0.278426915407181,0.468873739242554,0.291522324085236,0.462399482727051,0.285850673913956,0.463533788919449,0.11000956594944,0.577938914299011,0.090624712407589,0.507806777954102,0.0926958695054054,0.507948577404022,0.0990156978368759,0.500501990318298,0.0893384665250778,0.518639862537384,0.108920812606812,0.493314981460571,0.134635627269745,0.453704655170441,0.127171337604523,0.448297590017319,0.137851238250732,0.458100169897079,0.249592691659927,0.459034472703934,0.239226758480072,0.451787948608398,0.242609485983849,0.455420076847076,0.273094534873962,0.465201109647751,0.269980221986771,0.457482367753983,0.281343758106232,0.464365571737289,0.290955156087875,0.458820521831512,0.109877906739712,0.58063417673111,0.0937390476465225,0.523611426353455,0.0883965641260147,0.510298252105713,0.0927870273590088,0.500848889350891,0.0966609567403793,0.501003324985504,0.102114848792553,0.495545655488968,0.0876521617174149,0.515917956829071,0.108424544334412,0.490061372518539,0.114339254796505,0.456651866436005,0.132437869906425,0.445844113826752,0.136671334505081,0.454531341791153,0.122618839144707,0.442252486944199,0.118577793240547,0.451714515686035,0.248529255390167,0.45505166053772,0.242867738008499,0.449681311845779,\r\n0.262956500053406,0.452921003103256,0.27387946844101,0.460992962121964,0.276026576757431,0.464847892522812,0.294378399848938,0.454257875680923,0.280538588762283,0.460686594247818,0.288063615560532,0.458109021186829,0.107958659529686,0.581431746482849,0.0907867550849915,0.527799308300018,0.0895359590649605,0.501746475696564,0.100291818380356,0.493744134902954,0.086269699037075,0.519874215126038,0.0912020057439804,0.52419376373291,0.115498907864094,0.452123433351517,0.134681209921837,0.445330113172531,0.131187066435814,0.439676195383072,0.135850980877876,0.451147347688675,0.259269922971725,0.448611557483673,0.273160368204117,0.457035481929779,0.268552184104919,0.453260272741318,0.293355464935303,0.452676653862,0.284189701080322,0.460332095623016,0.291370391845703,0.452548801898956,0.111478120088577,0.586388111114502,0.0898600518703461,0.533211410045624,0.0865077078342438,0.50774097442627,0.09343521296978,0.493118762969971,0.0976889431476593,0.491402059793472,0.102145232260227,0.491389393806458,0.0871660262346268,0.523915231227875,0.133840590715408,0.440114229917526,0.130174279212952,0.434388160705566,0.120188139379025,0.444904744625092,0.118648692965508,0.445109844207764,0.256018847227097,0.454232573509216,0.250610560178757,0.45096629858017,0.240269929170609,0.447624087333679,0.256677180528641,0.450430780649185,0.262156397104263,0.449886411428452,0.277485013008118,0.456561982631683,0.262723535299301,0.446772068738937,0.278583884239197,0.452550053596497,0.285086005926132,0.456448048353195,0.288873851299286,0.451418250799179,0.112399756908417,0.584054887294769,0.0881585627794266,0.530118584632874,0.0904829204082489,0.493228882551193,0.0878749787807465,0.501809775829315,0.0976484268903732,0.483473151922226,0.104175880551338,0.490063905715942,0.133227840065956,0.436688452959061,0.124917879700661,0.436796069145203,0.121798478066921,0.438096255064011,0.115635633468628,0.450039595365524,0.242938637733459,0.443642556667328,0.240958631038666,0.444264143705368,0.255198508501053,0.444238841533661,0.274451702833176,0.453114688396454,\r\n0.265498608350754,0.44652646780014,0.2927325963974,0.448858439922333,0.289841085672379,0.44766840338707,0.113012500107288,0.588818788528442,0.0879509374499321,0.493879616260529,0.0834895819425583,0.503836631774902,0.0950050428509712,0.483007282018662,0.0895055755972862,0.488929569721222,0.103507436811924,0.485984891653061,0.105279825627804,0.49297821521759,0.101051412522793,0.486278593540192,0.135572463274002,0.434867948293686,0.134681209921837,0.429624229669571,0.13019959628582,0.427626490592957,0.115777425467968,0.447955787181854,0.252377867698669,0.444319844245911,0.248929306864738,0.443346291780472,0.245713695883751,0.44053453207016,0.258074820041656,0.442447453737259,0.270739793777466,0.449049592018127,0.263275533914566,0.441984087228775,0.29461133480072,0.448952108621597,0.281115859746933,0.452242434024811,0.282240062952042,0.448083639144897,0.283814966678619,0.444612294435501,0.0855404883623123,0.527224540710449,0.0840415582060814,0.499718368053436,0.085267037153244,0.511988341808319,0.0923262014985085,0.483309835195541,0.0938909649848938,0.477904081344604,0.106363512575626,0.487364828586578,0.106216661632061,0.489368885755539,0.0980687364935875,0.479657471179962,0.135228112339973,0.422538489103317,0.136281415820122,0.429793864488602,0.123606309294701,0.430136948823929,0.126852318644524,0.422408074140549,0.240826964378357,0.440101563930511,0.242543652653694,0.434417277574539,0.255056709051132,0.43825575709343,0.249415457248688,0.438809007406235,0.274654239416122,0.449160993099213,0.268531918525696,0.445616215467453,0.290818423032761,0.444805979728699,0.293223798274994,0.445011079311371,0.279130786657333,0.448191255331039,0.28517210483551,0.440397799015045,0.0850442200899124,0.495069652795792,0.0819096267223358,0.501243889331818,0.0820919275283813,0.511681973934174,0.0901486948132515,0.484677106142044,0.10333526134491,0.476421594619751,0.137385353446007,0.422278940677643,0.138651356101036,0.423108160495758,0.121712386608124,0.433004438877106,0.124173477292061,0.422991693019867,0.13428620994091,0.418208777904511,\r\n0.240300312638283,0.434464126825333,0.24504017829895,0.434591978788376,0.260616928339005,0.438136756420136,0.27247166633606,0.445497214794159,0.269919455051422,0.441666334867477,0.287942081689835,0.440618097782135,0.280715823173523,0.44380334019661,0.282817363739014,0.440273731946945,0.0885434225201607,0.485891193151474,0.0784863904118538,0.507396578788757,0.0792307928204536,0.51113760471344,0.0821982771158218,0.515807867050171,0.091156430542469,0.478916853666306,0.0979522690176964,0.471818447113037,0.107021830976009,0.480395525693893,0.102727584540844,0.500351369380951,0.139188125729561,0.414038598537445,0.120259031653404,0.438470959663391,0.121003434062004,0.427382171154022,0.120967984199524,0.418846845626831,0.125277414917946,0.414622247219086,0.129521027207375,0.417330175638199,0.242700636386871,0.429900199174881,0.252565234899521,0.434162795543671,0.25735068321228,0.434084326028824,0.26649621129036,0.437658220529556,0.278340816497803,0.441424518823624,0.275216341018677,0.445194661617279,0.290413320064545,0.440894067287445,0.282802164554596,0.436359286308289,0.284802436828613,0.436444133520126,0.0842036008834839,0.517440974712372,0.0914855822920799,0.47513535618782,0.0946303084492683,0.474855571985245,0.105051949620247,0.474602371454239,0.141785949468613,0.412914425134659,0.118689201772213,0.431721985340118,0.12313536554575,0.417239040136337,0.134362176060677,0.41288149356842,0.138205721974373,0.412082642316818,0.248554572463036,0.434261560440063,0.240295246243477,0.429073512554169,0.24606816470623,0.430109113454819,0.263979405164719,0.433757692575455,0.273140132427216,0.44152706861496,0.272198230028152,0.437698721885681,0.286919176578522,0.436679601669312,0.280710756778717,0.439405262470245,0.0771343111991882,0.511204719543457,0.0790130421519279,0.515917956829071,0.088447205722332,0.473731368780136,0.0870039761066437,0.481889396905899,0.0936732143163681,0.467724233865738,0.102525025606155,0.473360419273376,0.108196668326855,0.47206911444664,0.141365632414818,0.410017818212509,0.119322195649147,0.420047014951706,\r\n0.118901886045933,0.436454236507416,0.118395492434502,0.424191862344742,0.12168200314045,0.414029747247696,0.1292425096035,0.41333344578743,0.24017371237278,0.425178080797195,0.242746204137802,0.426089584827423,0.252701967954636,0.429939448833466,0.258687555789948,0.429790079593658,0.267493814229965,0.433675408363342,0.275899976491928,0.44119918346405,0.278811752796173,0.435318648815155,0.0812968909740448,0.521057903766632,0.0900119692087173,0.470819592475891,0.0912526398897171,0.470647394657135,0.0860823318362236,0.488673865795136,0.0907968878746033,0.463148951530457,0.0978459268808365,0.465347975492477,0.10344160348177,0.46914467215538,0.105608984827995,0.469338357448578,0.109989315271378,0.477652132511139,0.144414141774178,0.409640550613403,0.116628170013428,0.437134087085724,0.126943469047546,0.409507632255554,0.136575132608414,0.409662067890167,0.132934138178825,0.40907084941864,0.139755293726921,0.407977044582367,0.245673179626465,0.426052868366241,0.263994604349136,0.429696381092072,0.277277380228043,0.437193602323532,0.27196529507637,0.433677941560745,0.0828971043229103,0.486051976680756,0.0880471542477608,0.471262663602829,0.0852569118142128,0.491910994052887,0.0928123444318771,0.464035123586655,0.107827000319958,0.461222112178802,0.108839794993401,0.484246671199799,0.109963990747929,0.471590578556061,0.115579925477505,0.417506158351898,0.116957329213619,0.41312962770462,0.122765697538853,0.409250646829605,0.143097519874573,0.406803458929062,0.249521791934967,0.425698399543762,0.242366418242455,0.41929879784584,0.255431443452835,0.425733834505081,0.261280328035355,0.426142752170563,0.267316579818726,0.42953559756279,0.275621473789215,0.434062778949738,0.0855252966284752,0.470898061990738,0.0893637835979462,0.467621684074402,0.0842694342136383,0.490423440933228,0.0928072780370712,0.459878891706467,0.103669486939907,0.464114904403687,0.110353916883469,0.458525538444519,0.110627368092537,0.464779525995255,0.116486378014088,0.423976629972458,0.118587926030159,0.408844262361526,0.123813934624195,0.404881685972214,\r\n0.129941329360008,0.405786871910095,0.137957587838173,0.405954003334045,0.246382132172585,0.42133703827858,0.240852281451225,0.421583920717239,0.264273136854172,0.42539456486702,0.270714491605759,0.43022683262825,0.276416510343552,0.432291656732559,0.0828160792589188,0.478657335042953,0.0872926190495491,0.467162132263184,0.0815804675221443,0.489204317331314,0.0914551988244057,0.455722630023956,0.0985852628946304,0.459005355834961,0.10166921466589,0.467189997434616,0.104464523494244,0.45990926027298,0.108687870204449,0.45626699924469,0.116861112415791,0.428306341171265,0.111832596361637,0.416957974433899,0.113301143050194,0.413514494895935,0.115119107067585,0.409320265054703,0.134068459272385,0.405861586332321,0.142180934548378,0.404790550470352,0.252241134643555,0.42183330655098,0.245521262288094,0.417168140411377,0.239910393953323,0.413952529430389,0.256489813327789,0.421110451221466,0.260206758975983,0.421302855014801,0.267934381961823,0.425364166498184,0.0803955048322678,0.484361886978149,0.0823400616645813,0.473897218704224,0.0797219946980476,0.496282458305359,0.0933946967124939,0.456274598836899,0.099689207971096,0.463619887828827,0.101902157068253,0.464069306850433,0.105846986174583,0.454419940710068,0.10305167734623,0.459229439496994,0.110358983278275,0.452629804611206,0.114202529191971,0.422892957925797,0.118380300700665,0.40478041768074,0.131359249353409,0.402543425559998,0.136975184082985,0.403033345937729,0.249901592731476,0.41670098900795,0.242857620120049,0.412991642951965,0.239373609423637,0.419348180294037,0.26416677236557,0.42045846581459,0.0786889493465424,0.479211837053299,0.0774381458759308,0.496071040630341,0.0950911268591881,0.452146202325821,0.0994511991739273,0.469718158245087,0.100777961313725,0.459672540426254,0.110404558479786,0.413698047399521,0.113478384912014,0.429034262895584,0.10965508967638,0.418392360210419,0.112014897167683,0.4084492623806,0.113053008913994,0.40389296412468,0.124097518622875,0.401630640029907,0.141264364123344,0.40292701125145,0.25613534450531,0.416560471057892,0.245369344949722,\r\n0.412586510181427,0.23762147128582,0.412696659564972,0.239434376358986,0.407804876565933,0.261574029922485,0.418789863586426,0.267554581165314,0.42016726732254,0.0771900117397308,0.48175773024559,0.0788965672254562,0.475539207458496,0.0781167149543762,0.490669041872025,0.0763190090656281,0.501732528209686,0.0934807881712914,0.449311643838882,0.101036220788956,0.455303579568863,0.108647361397743,0.448973625898361,0.111275561153889,0.42824050784111,0.106874972581863,0.421553522348404,0.118365108966827,0.401240706443787,0.133141756057739,0.399972170591354,0.142170801758766,0.39978101849556,0.249987676739693,0.412292808294296,0.237378403544426,0.409074664115906,0.259361088275909,0.416265487670898,0.26408576965332,0.415851503610611,0.270785391330719,0.424194395542145,0.0779344141483307,0.486844509840012,0.0744554698467255,0.50390625,0.0792054682970047,0.500356435775757,0.0908272713422775,0.452418386936188,0.097618043422699,0.448595106601715,0.102641500532627,0.456464499235153,0.112602315843105,0.448815375566483,0.108135901391506,0.414100646972656,0.108161218464375,0.408068209886551,0.110131099820137,0.432741105556488,0.104854449629784,0.41788849234581,0.109695598483086,0.405804604291916,0.112708657979965,0.401278674602509,0.116602852940559,0.398351728916168,0.147184133529663,0.399394899606705,0.253892004489899,0.412068724632263,0.244508475065231,0.406575590372086,0.237530320882797,0.400245636701584,0.234345093369484,0.404766499996185,0.257608950138092,0.412718176841736,0.267539381980896,0.415992021560669,0.270284056663513,0.419898897409439,0.097759835422039,0.444642692804337,0.10283899307251,0.449286341667175,0.104834198951721,0.449921876192093,0.117119371891022,0.440505415201187,0.112394697964191,0.433012008666992,0.119686804711819,0.396351456642151,0.130473047494888,0.397483229637146,0.247496202588081,0.404752552509308,0.234785661101341,0.400621622800827,0.264156639575958,0.41156992316246,0.273398399353027,0.423900693655014,0.0944986417889595,0.445627629756927,0.104418948292732,0.414262682199478,0.106930680572987,0.405815988779068,\r\n0.114865906536579,0.432487905025482,0.108728386461735,0.400793820619583,0.111807271838188,0.398964464664459,0.141917616128922,0.39619192481041,0.254808574914932,0.405274152755737,0.240548446774483,0.399565786123276,0.234704628586769,0.396099507808685,0.231959968805313,0.401134371757507,0.270289123058319,0.415937602519989,0.269833356142044,0.411985158920288,0.2752366065979,0.428168326616287,0.272983133792877,0.419907748699188,0.0968280658125877,0.441343516111374,0.104996241629124,0.444530010223389,0.103669486939907,0.410568535327911,0.1140506118536,0.436598569154739,0.114805139601231,0.396503359079361,0.148840054869652,0.396602123975754,0.246498599648476,0.399639219045639,0.239449560642242,0.396374225616455,0.230957299470901,0.394674003124237,0.260900527238846,0.403337180614471,0.275737941265106,0.42393359541893,0.0991119146347046,0.440680116415024,0.104712657630444,0.440629482269287,0.1073864325881,0.446570783853531,0.105350717902184,0.401759773492813,0.110014632344246,0.436884701251984,0.251142263412476,0.400714039802551,0.237910121679306,0.394352436065674,0.229498878121376,0.39854034781456,0.274790972471237,0.415847718715668,0.268268585205078,0.405415952205658,0.275737941265106,0.419993847608566,0.277069747447968,0.428002506494522,0.108110584318638,0.436622619628906,0.10415056347847,0.406140089035034,0.11103755235672,0.440982699394226,0.257857084274292,0.395899474620819,0.247481018304825,0.396153956651688,0.231661185622215,0.393871366977692,0.227615088224411,0.396576792001724,0.273312300443649,0.411561071872711,0.26359960436821,0.399830400943756,0.278609216213226,0.423637360334396,0.103411220014095,0.435417413711548,0.11277449131012,0.440181314945221,0.249780058860779,0.394309401512146,0.225984483957291,0.39415243268013,0.278112947940826,0.419384896755219,0.275667041540146,0.411688923835754,0.267098814249039,0.398499846458435,0.269787788391113,0.398928999900818,0.278796583414078,0.428064525127411,0.106469854712486,0.43627193570137,0.262753933668137,0.395789355039597,0.278452217578888,0.415808469057083,0.276041775941849,\r\n0.4069604575634,0.27247166633606,0.399412602186203,0.280690491199493,0.428269624710083,0.28091835975647,0.419707715511322,0.106398962438107,0.432427138090134,0.257791250944138,0.394113183021545,0.280158787965775,0.414936184883118,0.264495939016342,0.394347369670868,0.268050849437714,0.395779222249985,0.281520992517471,0.424374163150787,0.2749884724617,0.398227661848068,0.278690218925476,0.407331377267838,0.28289332985878,0.428493708372116,0.283556699752808,0.420644551515579,0.282766729593277,0.416992157697678,0.278624385595322,0.40265354514122,0.28155642747879,0.412610560655594,0.284812569618225,0.424591898918152,0.2787104845047,0.399858236312866,0.287248343229294,0.42881777882576,0.276917845010757,0.396737575531006,0.281353861093521,0.404651284217834,0.27090185880661,0.394010633230209,0.381503909826279,0.798117518424988,0.38382825255394,0.795180439949036,0.385869055986404,0.797864317893982,0.380734175443649,0.79636538028717,0.387205928564072,0.793828368186951,0.381767243146896,0.80022919178009,0.377397030591965,0.79835045337677,0.381969779729843,0.79396003484726,0.384238451719284,0.791959762573242,0.390649437904358,0.796319842338562,0.388198465108871,0.801591396331787,0.377873033285141,0.799965858459473,0.378738969564438,0.795367836952209,0.387757897377014,0.789123952388763,0.3909532725811,0.789073288440704,0.391074806451797,0.799596190452576,0.382278680801392,0.802786529064178,0.378531366586685,0.801905393600464,0.381083607673645,0.792359828948975,0.384015619754791,0.78910368680954,0.394872784614563,0.792491495609283,0.394796818494797,0.798694849014282,0.394518285989761,0.802624464035034,0.389697402715683,0.80409300327301,0.374946057796478,0.799955785274506,0.386405825614929,0.786586880683899,0.390305072069168,0.78476893901825,0.394842386245728,0.785442411899567,0.390072137117386,0.806346476078033,0.380339205265045,0.804923534393311,0.376490592956543,0.802933394908905,0.383311748504639,0.787938952445984,0.398954331874847,0.787680685520172,0.399172067642212,0.793089032173157,0.399602502584457,0.800360858440399,0.394523352384567,\r\n0.806685745716095,0.383661150932312,0.807303547859192,0.386577993631363,0.783984005451202,0.392381310462952,0.780525326728821,0.399643033742905,0.78065699338913,0.398093461990356,0.804503202438354,0.390527874231339,0.809121549129486,0.392978847026825,0.809516549110413,0.3821622133255,0.808255612850189,0.384096652269363,0.784313201904297,0.389069467782974,0.781740665435791,0.395966589450836,0.775491774082184,0.406226187944412,0.78082412481308,0.403846114873886,0.789189755916595,0.403547346591949,0.794998109340668,0.401850908994675,0.804219603538513,0.398868232965469,0.807131409645081,0.38580322265625,0.810017883777618,0.395784288644791,0.810362219810486,0.386314660310745,0.781477332115173,0.392219245433807,0.777127385139465,0.389160633087158,0.779026389122009,0.404261350631714,0.785847544670105,0.40664142370224,0.776256382465363,0.400726705789566,0.771658301353455,0.405755221843719,0.797742784023285,0.398204863071442,0.810286223888397,0.393373847007751,0.811982691287994,0.397536426782608,0.81300562620163,0.391895145177841,0.774195373058319,0.414531081914902,0.778768122196198,0.411462306976318,0.776671648025513,0.397343993186951,0.769617557525635,0.41174590587616,0.78452080488205,0.407081991434097,0.790101289749146,0.402959913015366,0.807511210441589,0.406448990106583,0.801854729652405,0.400676071643829,0.809896349906921,0.400210201740265,0.813324630260468,0.386122226715088,0.779259324073792,0.388785898685455,0.776382982730865,0.394437283277512,0.770762026309967,0.407755494117737,0.771167099475861,0.399789869785309,0.762897670269012,0.41025710105896,0.791012823581696,0.410510301589966,0.795205771923065,0.403400480747223,0.813117027282715,0.391368508338928,0.771313965320587,0.388441532850266,0.773876368999481,0.416343986988068,0.772964835166931,0.415938854217529,0.782971203327179,0.407319992780685,0.766082882881165,0.41188770532608,0.769359290599823,0.393708050251007,0.766077816486359,0.402276277542114,0.76420921087265,0.396523624658585,0.761545598506927,0.406768023967743,0.808078348636627,0.404803216457367,0.810939490795136,\r\n0.411877572536469,0.798482120037079,0.404423415660858,0.815674304962158,0.39088237285614,0.768493354320526,0.420395165681839,0.773172438144684,0.420248299837112,0.778970718383789,0.399106234312058,0.760061860084534,0.414206981658936,0.790800094604492,0.40912276506424,0.802659928798676,0.41580718755722,0.796203374862671,0.406950324773788,0.81430196762085,0.388223797082901,0.771511495113373,0.416030019521713,0.766842484474182,0.420435667037964,0.768447756767273,0.421235769987106,0.78383207321167,0.407492160797119,0.756633520126343,0.411634504795074,0.76393073797226,0.390335470438004,0.765870213508606,0.393080115318298,0.763115406036377,0.404063880443573,0.753858506679535,0.395389288663864,0.757737457752228,0.406975656747818,0.812018096446991,0.41008996963501,0.805911004543304,0.414308279752731,0.80238139629364,0.406651556491852,0.81601357460022,0.424491912126541,0.768533885478973,0.425565451383591,0.772007763385773,0.411725640296936,0.756542384624481,0.388046532869339,0.769303560256958,0.392502844333649,0.760360598564148,0.400807738304138,0.751716434955597,0.397819995880127,0.753701508045197,0.418430328369141,0.792435765266418,0.409143030643463,0.813101828098297,0.410287469625473,0.809946954250336,0.418055593967438,0.800138056278229,0.408049196004868,0.81369936466217,0.415685653686523,0.760649263858795,0.420567333698273,0.764290273189545,0.424881815910339,0.762396335601807,0.42452734708786,0.783680200576782,0.407411158084869,0.747391819953918,0.38997083902359,0.763439536094666,0.403658747673035,0.748931229114532,0.392143279314041,0.757686853408813,0.394852519035339,0.754709243774414,0.413609445095062,0.807870745658875,0.416946589946747,0.804827272891998,0.409801334142685,0.816803574562073,0.420147031545639,0.760441660881042,0.429611563682556,0.76247227191925,0.422380238771439,0.787837684154511,0.42772775888443,0.776195645332336,0.411740839481354,0.747761487960815,0.416870623826981,0.754380106925964,0.396989494562149,0.749199628829956,0.399789869785309,0.746925950050354,0.39440181851387,0.751974701881409,0.421023070812225,\r\n0.796436309814453,0.412282675504684,0.814590632915497,0.421458572149277,0.802492797374725,0.428786128759384,0.758086919784546,0.431657403707504,0.766244947910309,0.424486845731735,0.790364623069763,0.430310398340225,0.781249463558197,0.403653681278229,0.743092477321625,0.413736045360565,0.739416062831879,0.416050285100937,0.748769223690033,0.391910344362259,0.755276381969452,0.411644607782364,0.817927777767181,0.413695514202118,0.8128941655159,0.416870623826981,0.808837950229645,0.419068396091461,0.808994948863983,0.420278668403625,0.753341972827911,0.424962848424912,0.757271587848663,0.433024674654007,0.754258513450623,0.43715688586235,0.756187915802002,0.428355693817139,0.78612607717514,0.435121148824692,0.770524024963379,0.4342400431633,0.776418447494507,0.407877027988434,0.740975737571716,0.396371692419052,0.746343553066254,0.393900483846664,0.749392092227936,0.399227768182755,0.743882477283478,0.414571583271027,0.819482386112213,0.421215504407883,0.807182013988495,0.429054528474808,0.749523758888245,0.435607314109802,0.765060007572174,0.428740561008453,0.792506694793701,0.433683007955551,0.781077325344086,0.431009232997894,0.785396873950958,0.407937794923782,0.735749781131744,0.419534265995026,0.741097271442413,0.411543339490891,0.735076248645782,0.420729368925095,0.745583951473236,0.401795208454132,0.740281999111176,0.424071580171585,0.801874995231628,0.416698455810547,0.813015699386597,0.420212835073471,0.812879025936127,0.424517214298248,0.752050638198853,0.437703788280487,0.7501060962677,0.4332475066185,0.749240159988403,0.438969761133194,0.76006692647934,0.425641417503357,0.793716967105865,0.436893552541733,0.774408042430878,0.437916457653046,0.767029881477356,0.435759216547012,0.780717730522156,0.404575318098068,0.735121846199036,0.4237120449543,0.737142324447632,0.418106228113174,0.733886241912842,0.424517214298248,0.747128486633301,0.393591582775116,0.747006952762604,0.396027356386185,0.743715345859528,0.398609966039658,0.739502131938934,0.418015092611313,0.814266502857208,0.446099847555161,0.737491726875305,\r\n0.433318376541138,0.744581282138824,0.442296802997589,0.756517052650452,0.432285338640213,0.787645280361176,0.426314920186996,0.799145519733429,0.408788532018662,0.731349170207977,0.424709647893906,0.74240380525589,0.412849843502045,0.729607164859772,0.401293873786926,0.735947251319885,0.415999621152878,0.821715593338013,0.42920646071434,0.742859542369843,0.437430322170258,0.74168473482132,0.444286942481995,0.74748295545578,0.441714435815811,0.737436056137085,0.440407931804657,0.763206541538239,0.439415395259857,0.769673228263855,0.437764555215836,0.77847945690155,0.40359291434288,0.729612231254578,0.424729913473129,0.732594907283783,0.420111566781998,0.72399628162384,0.395799487829208,0.741279602050781,0.397941529750824,0.735800385475159,0.400448203086853,0.731885969638824,0.447720319032669,0.74058586359024,0.448277354240417,0.723388612270355,0.433439910411835,0.737233519554138,0.444246411323547,0.754886448383331,0.442808270454407,0.761348068714142,0.408560663461685,0.727996826171875,0.429160863161087,0.734316647052765,0.424426078796387,0.72719669342041,0.415878087282181,0.721145272254944,0.395601987838745,0.739071726799011,0.437734156847,0.736200451850891,0.451184064149857,0.728766560554504,0.44734051823616,0.746611952781677,0.444742679595947,0.728624761104584,0.450809329748154,0.723895013332367,0.440813064575195,0.770959496498108,0.399967104196548,0.727865159511566,0.405461519956589,0.722598612308502,0.412095308303833,0.724082350730896,0.428745627403259,0.730488300323486,0.420152068138123,0.715412855148315,0.424628615379334,0.716937124729156,0.397576928138733,0.73189103603363,0.441765069961548,0.727774024009705,0.453250139951706,0.728103160858154,0.451700568199158,0.737704455852509,0.44588714838028,0.720284402370453,0.453240036964417,0.709594368934631,0.433358907699585,0.730230033397675,0.437480956315994,0.727738559246063,0.447036683559418,0.751908838748932,0.446251749992371,0.757210850715637,0.402494043111801,0.724416613578796,0.40892019867897,0.722345411777496,0.428598761558533,0.725034415721893,0.412075072526932,\r\n0.718046128749847,0.415888220071793,0.715944588184357,0.429550796747208,0.717762529850006,0.457017749547958,0.711746573448181,0.451634764671326,0.742565870285034,0.450181394815445,0.710217237472534,0.456521481275558,0.7082878947258,0.449168592691422,0.748419761657715,0.399582266807556,0.725581288337708,0.401931941509247,0.718552529811859,0.40827202796936,0.716663658618927,0.433156341314316,0.724710285663605,0.414799481630325,0.71118950843811,0.424203246831894,0.711199641227722,0.428578525781631,0.71118950843811,0.442068934440613,0.718689262866974,0.456410080194473,0.718511998653412,0.455159276723862,0.728128492832184,0.454819977283478,0.7368283867836,0.447801321744919,0.711680710315704,0.44979652762413,0.705290019512177,0.45760515332222,0.700676739215851,0.449128091335297,0.752546906471252,0.399268299341202,0.72115033864975,0.404524683952332,0.71530145406723,0.433156341314316,0.720542669296265,0.410925537347794,0.712961912155151,0.420699000358582,0.70611035823822,0.433156341314316,0.70958423614502,0.437308788299561,0.721899807453156,0.459478825330734,0.714440584182739,0.4602991938591,0.705026686191559,0.452338635921478,0.746191620826721,0.445421278476715,0.713144242763519,0.445877015590668,0.708333432674408,0.460749894380569,0.700666606426239,0.401182472705841,0.715539455413818,0.407183259725571,0.711736440658569,0.432553738355637,0.717018127441406,0.417736560106277,0.704621553421021,0.412865042686462,0.703740417957306,0.424375414848328,0.705674886703491,0.428801327943802,0.705401420593262,0.437430322170258,0.716759860515594,0.461549997329712,0.708789229393005,0.457483619451523,0.728158891201019,0.442210704088211,0.710455238819122,0.454490840435028,0.698068797588348,0.446079581975937,0.701881945133209,0.461514532566071,0.694918990135193,0.403587847948074,0.710505902767181,0.424360245466232,0.700317203998566,0.408839195966721,0.703801214694977,0.437734156847,0.710399568080902,0.432958841323853,0.703669548034668,0.46136263012886,0.713964581489563,0.463033735752106,0.700124740600586,0.450226962566376,0.696812927722931,\r\n0.459316790103912,0.691936314105988,0.441471368074417,0.706505358219147,0.400863438844681,0.712683379650116,0.405831187963486,0.705107688903809,0.423484176397324,0.693987250328064,0.410864770412445,0.696534395217896,0.428932994604111,0.698266267776489,0.437197387218475,0.705325424671173,0.465003609657288,0.705998957157135,0.455012410879135,0.688953638076782,0.445937782526016,0.69473671913147,0.441739767789841,0.700676739215851,0.462365299463272,0.686755895614624,0.464370608329773,0.689085304737091,0.400701403617859,0.710181772708893,0.403015613555908,0.706961095333099,0.404970318078995,0.701167941093445,0.407735228538513,0.698504269123077,0.433348774909973,0.697157263755798,0.438063323497772,0.69909679889679,0.466193646192551,0.693217515945435,0.450520664453506,0.690801978111267,0.460177659988403,0.684441685676575,0.402570009231567,0.704429149627686,0.428943127393723,0.691662847995758,0.414232313632965,0.693815052509308,0.40706679224968,0.695577323436737,0.433034807443619,0.691450178623199,0.468097686767578,0.69620019197464,0.45031812787056,0.687849700450897,0.454293340444565,0.684142887592316,0.441547334194183,0.694903790950775,0.445740282535553,0.689318239688873,0.466305047273636,0.681342542171478,0.467084914445877,0.684978425502777,0.424385547637939,0.689287900924683,0.409968435764313,0.69305545091629,0.404494315385818,0.698635935783386,0.402570009231567,0.701826274394989,0.438969761133194,0.692645311355591,0.467647016048431,0.692290782928467,0.458400219678879,0.680977880954742,0.466598778963089,0.673959255218506,0.428973495960236,0.68480122089386,0.413219511508942,0.690938711166382,0.407127559185028,0.692933917045593,0.437055587768555,0.686001360416412,0.470746159553528,0.685707628726959,0.449978828430176,0.68403148651123,0.454759210348129,0.67848140001297,0.463428735733032,0.674582123756409,0.468983888626099,0.674855589866638,0.469383955001831,0.684436619281769,0.42459824681282,0.677554666996002,0.432675272226334,0.682562947273254,0.409284800291061,0.690189242362976,0.415878087282181,0.685803890228271,0.441339701414108,\r\n0.682456612586975,0.471855163574219,0.690336108207703,0.445846647024155,0.681053876876831,0.458931922912598,0.674956858158112,0.472169131040573,0.671619713306427,0.470670193433762,0.677858531475067,0.463094502687454,0.669492840766907,0.420435667037964,0.679397940635681,0.426198452711105,0.672829985618591,0.432619571685791,0.676759600639343,0.412181407213211,0.687940835952759,0.437187254428864,0.678471267223358,0.474458038806915,0.683940351009369,0.450702995061874,0.677742063999176,0.454566776752472,0.671761512756348,0.474047869443893,0.663679420948029,0.467454582452774,0.666469633579254,0.420111566781998,0.675782263278961,0.422511875629425,0.673746585845947,0.409330397844315,0.68764716386795,0.411619305610657,0.685074687004089,0.414622247219086,0.682841420173645,0.441977769136429,0.67304265499115,0.473278135061264,0.675301194190979,0.446094781160355,0.672505915164948,0.459929525852203,0.66904217004776,0.475379675626755,0.66765969991684,0.415022283792496,0.679580271244049,0.422253638505936,0.671017110347748,0.430502831935883,0.670110642910004,0.436366885900497,0.668621838092804,0.47696977853775,0.671452581882477,0.45014089345932,0.671012043952942,0.455660611391068,0.664469361305237,0.471070259809494,0.662459015846252,0.48024109005928,0.664332687854767,0.467403948307037,0.662960350513458,0.417422592639923,0.674394726753235,0.419833064079285,0.673103451728821,0.425286948680878,0.668834507465363,0.41196870803833,0.682021081447601,0.441344767808914,0.667988836765289,0.476883679628372,0.678987801074982,0.4460289478302,0.664752960205078,0.45015099644661,0.663664221763611,0.46711528301239,0.659521877765656,0.476250678300858,0.658428072929382,0.47888395190239,0.661719679832459,0.422825843095779,0.668014168739319,0.434543877840042,0.664084553718567,0.428522825241089,0.66694563627243,0.438529223203659,0.66203361749649,0.479415655136108,0.669457376003265,0.454526275396347,0.655637860298157,0.458541989326477,0.654832661151886,0.471733629703522,0.655273199081421,0.481643795967102,0.659076273441315,0.419929265975952,0.67102724313736,\r\n0.425611048936844,0.66575562953949,0.442337304353714,0.660377681255341,0.482150197029114,0.667781233787537,0.449664860963821,0.65811413526535,0.465272009372711,0.654452860355377,0.475349307060242,0.65425032377243,0.479542255401611,0.657359600067139,0.484109967947006,0.663431286811829,0.428416460752487,0.664216160774231,0.435126215219498,0.660043478012085,0.440488964319229,0.657435536384583,0.480656325817108,0.675944328308105,0.45014089345932,0.655384659767151,0.456025213003159,0.65198165178299,0.460359960794449,0.651753783226013,0.477992683649063,0.654700994491577,0.471895664930344,0.652295589447021,0.483309835195541,0.659400343894959,0.481841295957565,0.655561864376068,0.431044667959213,0.662104487419128,0.444651544094086,0.656422734260559,0.483958035707474,0.671427249908447,0.467454582452774,0.65146005153656,0.47747614979744,0.652558922767639,0.475121408700943,0.651176452636719,0.48500120639801,0.667912900447845,0.485072106122971,0.659927010536194,0.478124350309372,0.652361452579498,0.43247777223587,0.659547209739685,0.440007895231247,0.655273199081421,0.444347709417343,0.65383505821228,0.447456985712051,0.653029918670654,0.451260030269623,0.652239918708801,0.459438323974609,0.650538444519043,0.464826375246048,0.649991512298584,0.471136063337326,0.649956047534943,0.4833604991436,0.656615197658539,0.481436192989349,0.653050124645233,0.455204844474792,0.649864912033081,0.459326922893524,0.649404108524323,0.466801315546036,0.649125576019287,0.447634220123291,0.651834785938263,0.463185667991638,0.648978710174561,0.682556629180908,0.824998319149017,0.685336709022522,0.819270968437195,0.68485563993454,0.826877057552338,0.682652831077576,0.816982090473175,0.687630712985992,0.826456725597382,0.682835102081299,0.830908000469208,0.678606688976288,0.818187296390533,0.683913767337799,0.814293086528778,0.687757313251495,0.820329368114471,0.686805248260498,0.832422077655792,0.679538488388062,0.824760317802429,0.684911370277405,0.832285404205322,0.678358554840088,0.812956213951111,0.685772240161896,0.816435158252716,0.680455029010773,\r\n0.811345875263214,0.690025925636292,0.826375722885132,0.689919590950012,0.835566818714142,0.679665088653564,0.829971134662628,0.682450234889984,0.840205430984497,0.67345666885376,0.825079381465912,0.676125347614288,0.81347781419754,0.68132096529007,0.809745669364929,0.68888658285141,0.838159561157227,0.686202645301819,0.839066028594971,0.678819417953491,0.83574914932251,0.667739450931549,0.823950111865997,0.668028116226196,0.816095888614655,0.676682412624359,0.809122800827026,0.678145885467529,0.807674527168274,0.691413462162018,0.830604135990143,0.688557386398315,0.841699302196503,0.674190938472748,0.830082535743713,0.686065912246704,0.842853844165802,0.679371356964111,0.840767502784729,0.670241057872772,0.811973810195923,0.673578202724457,0.809451937675476,0.692340195178986,0.839719295501709,0.691079258918762,0.840838432312012,0.674434006214142,0.835318684577942,0.68319970369339,0.848135590553284,0.679346024990082,0.844935178756714,0.676176011562347,0.842529773712158,0.664169371128082,0.819210231304169,0.666073381900787,0.830507934093475,0.6636021733284,0.810849606990814,0.671542465686798,0.80690985918045,0.675284743309021,0.805638790130615,0.689722120761871,0.845431447029114,0.688243448734283,0.848424255847931,0.663647770881653,0.826947927474976,0.667683720588684,0.809082269668579,0.6922287940979,0.844712316989899,0.669689059257507,0.835647821426392,0.685751974582672,0.85220193862915,0.679320752620697,0.851594269275665,0.675624012947083,0.848039388656616,0.660624563694,0.827510058879852,0.660027027130127,0.815594553947449,0.661566495895386,0.833075344562531,0.665146708488464,0.807254195213318,0.668164789676666,0.801547110080719,0.690056324005127,0.850409328937531,0.672160267829895,0.843623578548431,0.687519311904907,0.853169143199921,0.68171089887619,0.85689115524292,0.671436131000519,0.849882662296295,0.660239696502686,0.820861101150513,0.659966230392456,0.812029540538788,0.659297823905945,0.808170795440674,0.66619998216629,0.803501784801483,0.669856190681458,0.800189971923828,0.692243993282318,0.847846925258636,\r\n0.667653381824493,0.844737648963928,0.68803071975708,0.856334149837494,0.683842837810516,0.857797622680664,0.678181350231171,0.857559621334076,0.675522744655609,0.854739010334015,0.656548082828522,0.830249667167664,0.656664550304413,0.825054049491882,0.656365752220154,0.818587362766266,0.656284749507904,0.813371479511261,0.659485161304474,0.803967714309692,0.663440108299255,0.800584971904755,0.665718913078308,0.798220098018646,0.660756230354309,0.845036447048187,0.680834829807281,0.86365157365799,0.67801421880722,0.862967908382416,0.671501994132996,0.856850683689117,0.657029151916504,0.834128677845001,0.655631482601166,0.806281924247742,0.669385254383087,0.798858165740967,0.691089391708374,0.853148937225342,0.667926788330078,0.85173100233078,0.685179710388184,0.860486567020416,0.674560606479645,0.85868889093399,0.653752744197845,0.832300543785095,0.653008341789246,0.827935457229614,0.652208268642426,0.818177163600922,0.655135214328766,0.809816539287567,0.655479609966278,0.79948103427887,0.661262631416321,0.796554028987885,0.658953487873077,0.799283504486084,0.663424968719482,0.794862687587738,0.675700008869171,0.803061246871948,0.661520898342133,0.853341341018677,0.656573414802551,0.844297111034393,0.689296722412109,0.858471155166626,0.681969165802002,0.865287244319916,0.675907611846924,0.867044448852539,0.674474537372589,0.864421308040619,0.667445719242096,0.857736885547638,0.670965194702148,0.861934900283813,0.651134729385376,0.8383469581604,0.652522206306458,0.813493013381958,0.651620864868164,0.80436772108078,0.68361496925354,0.865251779556274,0.640723168849945,0.837394893169403,0.64174610376358,0.831733405590057,0.644895911216736,0.820243239402771,0.646045386791229,0.812961280345917,0.643842577934265,0.809127867221832,0.65145879983902,0.797875761985779,0.656401216983795,0.79592102766037,0.66054356098175,0.792599081993103,0.65678608417511,0.859701693058014,0.656340479850769,0.852921009063721,0.652694404125214,0.844616115093231,0.678540885448456,0.868842124938965,0.67097532749176,0.86569744348526,0.666594982147217,\r\n0.862127304077148,0.648471057415009,0.846287250518799,0.640064895153046,0.801577508449554,0.641239702701569,0.798042833805084,0.658619225025177,0.794452488422394,0.674788475036621,0.870411992073059,0.671010732650757,0.869075059890747,0.640925765037537,0.848226726055145,0.637001156806946,0.832057476043701,0.637193620204926,0.823038578033447,0.636965751647949,0.81838983297348,0.636991024017334,0.813589215278625,0.636601150035858,0.80939120054245,0.644460380077362,0.795490622520447,0.653489470481873,0.793059885501862,0.656715214252472,0.791768610477448,0.651904404163361,0.85799515247345,0.662356436252594,0.864902377128601,0.652623534202576,0.851411998271942,0.676687479019165,0.872376799583435,0.667455852031708,0.86823445558548,0.647574722766876,0.851832270622253,0.63694041967392,0.837192356586456,0.636069416999817,0.80215984582901,0.639482498168945,0.795961558818817,0.654325008392334,0.862127304077148,0.670580327510834,0.873308539390564,0.672383069992065,0.874220073223114,0.67991828918457,0.869895458221436,0.66619998216629,0.8718501329422,0.641006767749786,0.854941546916962,0.63694041967392,0.847998857498169,0.632656276226044,0.837658226490021,0.633213341236115,0.830978870391846,0.632853806018829,0.820187568664551,0.63263601064682,0.813614547252655,0.636135220527649,0.79732882976532,0.632327139377594,0.808824002742767,0.644571781158447,0.79365748167038,0.653155207633972,0.790725409984589,0.645311117172241,0.86133736371994,0.65678608417511,0.865702450275421,0.663931310176849,0.869966328144073,0.645959317684174,0.8575798869133,0.632094204425812,0.802463710308075,0.648369789123535,0.791236877441406,0.63718855381012,0.79319155216217,0.649853527545929,0.864401042461395,0.660578966140747,0.871860265731812,0.667997717857361,0.874630272388458,0.640657365322113,0.860243499279022,0.636960685253143,0.854642808437347,0.632990539073944,0.849183797836304,0.629364728927612,0.831743538379669,0.628650724887848,0.825514853000641,0.628757059574127,0.818764567375183,0.628291130065918,0.813270211219788,0.630721867084503,0.793951153755188,\r\n0.628129124641418,0.808515131473541,0.642991840839386,0.790244340896606,0.644703447818756,0.868852257728577,0.64881032705307,0.869323194026947,0.663323640823364,0.876032948493958,0.668028116226196,0.877547085285187,0.658264756202698,0.876088678836823,0.628620326519012,0.839207828044891,0.627911329269409,0.803749918937683,0.646896183490753,0.787757933139801,0.63694041967392,0.790629208087921,0.640996634960175,0.866684913635254,0.649625658988953,0.87422513961792,0.664052903652191,0.878610551357269,0.649493992328644,0.876949548721313,0.636920154094696,0.859863698482513,0.632560074329376,0.854911148548126,0.628513991832733,0.851872801780701,0.624452650547028,0.835268080234528,0.624498248100281,0.818951964378357,0.624361515045166,0.813224613666534,0.62697958946228,0.794948756694794,0.624224781990051,0.808661997318268,0.631182670593262,0.790669739246368,0.638059556484222,0.788547933101654,0.641320765018463,0.874964475631714,0.659556090831757,0.878240883350372,0.653023540973663,0.878473818302155,0.624361515045166,0.850130796432495,0.624402046203613,0.840250968933105,0.624498248100281,0.827768325805664,0.623009443283081,0.797313630580902,0.623409509658813,0.803765118122101,0.637142956256866,0.865808844566345,0.645108580589294,0.876164615154266,0.637679755687714,0.873465538024902,0.658264756202698,0.882038831710815,0.64947372674942,0.880028426647186,0.633117139339447,0.859230756759644,0.628594994544983,0.857129156589508,0.623991847038269,0.854551613330841,0.621105372905731,0.836184620857239,0.619976103305817,0.83020406961441,0.619403898715973,0.824593186378479,0.619839370250702,0.813604414463043,0.623181641101837,0.793348550796509,0.627815127372742,0.789889872074127,0.619834363460541,0.808044195175171,0.631749868392944,0.86213743686676,0.641705572605133,0.877744615077972,0.636580884456635,0.876022815704346,0.645761847496033,0.879294157028198,0.654254078865051,0.880879163742065,0.620072364807129,0.840311765670776,0.620158433914185,0.849882662296295,0.619201362133026,0.804544985294342,0.632114470005035,0.865018844604492,0.626280784606934,\r\n0.873475670814514,0.621824502944946,0.860020697116852,0.619160830974579,0.854673147201538,0.615950286388397,0.835774421691895,0.616137623786926,0.830437004566193,0.615383088588715,0.824512183666229,0.615742623806,0.8112952709198,0.615317285060883,0.807223796844482,0.625191986560822,0.864613711833954,0.62628585100174,0.86978405714035,0.641163766384125,0.880261361598969,0.635568082332611,0.878468751907349,0.629597663879395,0.876721680164337,0.616395890712738,0.84695565700531,0.614932417869568,0.83964329957962,0.615935087203979,0.815827488899231,0.625581920146942,0.877283751964569,0.622163772583008,0.872503399848938,0.616613626480103,0.856800019741058,0.613337278366089,0.850946068763733,0.61207127571106,0.830548465251923,0.611661076545715,0.836427688598633,0.611412942409515,0.824547648429871,0.61149400472641,0.816389620304108,0.610420405864716,0.810490071773529,0.62173330783844,0.864365577697754,0.621383905410767,0.868654787540436,0.637816488742828,0.881314694881439,0.629693865776062,0.884028971195221,0.617104887962341,0.861858904361725,0.612689077854156,0.84521871805191,0.644090712070465,0.882681965827942,0.633785545825958,0.884484708309174,0.62192577123642,0.876706480979919,0.625941455364227,0.882403433322906,0.619297564029694,0.87182480096817,0.614810883998871,0.858972489833832,0.61130154132843,0.853498339653015,0.610364735126495,0.846611320972443,0.60895186662674,0.832842409610748,0.608030259609222,0.824684381484985,0.618355631828308,0.865565776824951,0.637401223182678,0.88432776927948,0.639639496803284,0.88620138168335,0.645326316356659,0.886910378932953,0.636874556541443,0.887938320636749,0.641102969646454,0.887588918209076,0.649428129196167,0.884196102619171,0.633866608142853,0.887457251548767,0.720870554447174,0.806332528591156,0.716067373752594,0.807775795459747,0.719971716403961,0.803689181804657,0.72018438577652,0.809001266956329,0.715378701686859,0.803813219070435,0.723901331424713,0.804147481918335,0.719776749610901,0.811862409114838,0.724435567855835,0.806337594985962,0.710679352283478,0.803038418292999,\r\n0.717518210411072,0.801078677177429,0.72432416677475,0.801574945449829,0.724283695220947,0.809054434299469,0.712580859661102,0.811366140842438,0.711373090744019,0.798939168453217,0.709355115890503,0.808732867240906,0.720554053783417,0.80017477273941,0.728418409824371,0.803248584270477,0.724367201328278,0.811745941638947,0.717930912971497,0.815667986869812,0.72846394777298,0.806960463523865,0.707853615283966,0.800557076931,0.706977546215057,0.806249022483826,0.717465043067932,0.797716200351715,0.725577533245087,0.799574673175812,0.720685720443726,0.814191818237305,0.727808177471161,0.809424102306366,0.708803117275238,0.814708352088928,0.706592738628387,0.811186373233795,0.706139504909515,0.803719580173492,0.709167718887329,0.796260356903076,0.704779803752899,0.80828469991684,0.713188529014587,0.795705854892731,0.720181882381439,0.797131359577179,0.727385342121124,0.799101233482361,0.736146032810211,0.808879733085632,0.724286198616028,0.814450085163116,0.728377878665924,0.811745941638947,0.711608588695526,0.816847860813141,0.7319176197052,0.8093101978302,0.703199863433838,0.806704759597778,0.714006364345551,0.790462076663971,0.725797772407532,0.795895755290985,0.731249153614044,0.800478637218475,0.720612287521362,0.79398912191391,0.736148536205292,0.805167853832245,0.703078329563141,0.815602123737335,0.719047546386719,0.819729268550873,0.704389870166779,0.81298154592514,0.723749399185181,0.817761898040771,0.702751696109772,0.810279905796051,0.710973024368286,0.791783809661865,0.735323131084442,0.811761140823364,0.743650794029236,0.810900270938873,0.728334844112396,0.814508318901062,0.731742918491364,0.812171280384064,0.71061098575592,0.819906532764435,0.714183568954468,0.820458471775055,0.701647758483887,0.812120676040649,0.711266756057739,0.787221133708954,0.71645987033844,0.789294838905334,0.737300574779511,0.803284049034119,0.739804744720459,0.811966240406036,0.698340952396393,0.813971519470215,0.706233143806458,0.81993180513382,0.726324439048767,0.822871446609497,0.720766723155975,0.827436625957489,0.728147447109222,\r\n0.817154228687286,0.71262389421463,0.785879194736481,0.732304990291595,0.814528584480286,0.736313104629517,0.814528584480286,0.743815362453461,0.814553916454315,0.740974485874176,0.804124653339386,0.710436284542084,0.822838544845581,0.706354677677155,0.822858810424805,0.702189564704895,0.817903697490692,0.729545116424561,0.819663465023041,0.724703967571259,0.826763093471527,0.714515268802643,0.825995922088623,0.739766716957092,0.814915955066681,0.747461438179016,0.813371479511261,0.702308595180511,0.820696473121643,0.698181450366974,0.816111087799072,0.730547785758972,0.822246074676514,0.734343230724335,0.83042186498642,0.718809545040131,0.829712867736816,0.729924917221069,0.831935942173004,0.732201159000397,0.817252993583679,0.736221969127655,0.817280828952789,0.740273118019104,0.817242860794067,0.74894517660141,0.818594932556152,0.710064053535461,0.825367987155914,0.736052334308624,0.820007801055908,0.73420649766922,0.827198624610901,0.723113894462585,0.833526074886322,0.714287400245667,0.829373598098755,0.743686258792877,0.817622661590576,0.751882255077362,0.818339228630066,0.710456490516663,0.828474760055542,0.735902965068817,0.822719573974609,0.738052606582642,0.835880815982819,0.739528715610504,0.829021632671356,0.71836644411087,0.832865178585052,0.729892015457153,0.834614813327789,0.740149080753326,0.820015370845795,0.752398788928986,0.822357475757599,0.744164824485779,0.820005238056183,0.735900402069092,0.825378119945526,0.739880681037903,0.825459122657776,0.714644432067871,0.831472635269165,0.724878668785095,0.836430251598358,0.754735827445984,0.819417834281921,0.747608304023743,0.821651041507721,0.740014851093292,0.822732210159302,0.733586192131042,0.83679735660553,0.741969585418701,0.834394514560699,0.743934392929077,0.825509786605835,0.718710780143738,0.834954082965851,0.754930794239044,0.822481513023376,0.747929871082306,0.825605988502502,0.744055926799774,0.822765111923218,0.736497938632965,0.839896500110626,0.745473802089691,0.840291500091553,0.743693828582764,0.828778564929962,0.730914950370789,0.840020596981049,\r\n0.757247567176819,0.820924341678619,0.751821517944336,0.825631320476532,0.740690886974335,0.840233266353607,0.747851371765137,0.834738850593567,0.747648775577545,0.830897867679596,0.726433336734772,0.839516699314117,0.755449831485748,0.825281918048859,0.747719705104828,0.828279793262482,0.745476365089417,0.845656752586365,0.736920773983002,0.845730185508728,0.752282321453094,0.840997934341431,0.722480893135071,0.837767124176025,0.75173544883728,0.828251898288727,0.731069386005402,0.844451546669006,0.751606285572052,0.830864906311035,0.751444220542908,0.846763253211975,0.751550614833832,0.836298584938049,0.718571543693542,0.836627721786499,0.755703032016754,0.828256964683533,0.741561889648438,0.849391460418701,0.734707832336426,0.846864521503448,0.726861238479614,0.842633605003357,0.751545548439026,0.833546280860901,0.75612336397171,0.845173180103302,0.755566298961639,0.836377084255219,0.748069107532501,0.850221931934357,0.75874650478363,0.825466752052307,0.75565493106842,0.830928206443787,0.755563795566559,0.839876234531403,0.75670063495636,0.848112821578979,0.755622029304504,0.833594381809235,0.75288999080658,0.84979659318924,0.759736478328705,0.829054594039917,0.736700534820557,0.849267363548279,0.759893476963043,0.840380132198334,0.760090947151184,0.845628917217255,0.759265542030334,0.832984209060669,0.759587109088898,0.83649605512619,0.762050747871399,0.827039122581482,0.760212481021881,0.822230875492096,0.760475814342499,0.851105570793152,0.762736856937408,0.831346035003662,0.763217985630035,0.842251241207123,0.763521790504456,0.83654922246933,0.764372527599335,0.849773764610291,0.757804572582245,0.852591872215271,0.763539552688599,0.834078013896942,0.764858663082123,0.828064560890198,0.763466119766235,0.839086294174194,0.766810834407806,0.847026586532593,0.767309665679932,0.8541060090065,0.766375362873077,0.856949388980865,0.766233563423157,0.830963671207428,0.767464101314545,0.839177429676056,0.767474234104156,0.842990577220917,0.767000734806061,0.833728611469269,0.767279267311096,0.836417555809021,0.770765781402588,\r\n0.851974070072174,0.757017135620117,0.854842782020569,0.7715203166008,0.844947814941406,0.771608948707581,0.857124149799347,0.771978616714478,0.848373591899872,0.765909433364868,0.859481394290924,0.748942673206329,0.85346794128418,0.770720243453979,0.835840284824371,0.771312713623047,0.83887106180191,0.771489977836609,0.841967701911926,0.777293264865875,0.852900803089142,0.77792876958847,0.850378930568695,0.753669857978821,0.856318950653076,0.769745409488678,0.832842409610748,0.777857899665833,0.845165550708771,0.775986731052399,0.841443538665771,0.771682381629944,0.862010836601257,0.775685429573059,0.856620252132416,0.778123736381531,0.848052024841309,0.761914014816284,0.860139727592468,0.77367502450943,0.834597051143646,0.774728357791901,0.837837994098663,0.770165741443634,0.864697277545929,0.776870429515839,0.861271500587463,0.783770084381104,0.85024219751358,0.78162294626236,0.855772018432617,0.782367348670959,0.846188485622406,0.760746777057648,0.861813366413116,0.772097647190094,0.831447303295136,0.780868411064148,0.841757535934448,0.777804732322693,0.836164355278015,0.777366697788239,0.863836407661438,0.783878922462463,0.853075504302979,0.781445682048798,0.858182489871979,0.75554096698761,0.859413027763367,0.776115894317627,0.832882940769196,0.76426112651825,0.86555814743042,0.778146505355835,0.866583585739136,0.783524453639984,0.862020969390869,0.786165297031403,0.845385849475861,0.78786426782608,0.849753499031067,0.786866664886475,0.854030013084412,0.774047255516052,0.829857230186462,0.783552289009094,0.841063737869263,0.780149340629578,0.834989547729492,0.759445309638977,0.864064276218414,0.770069479942322,0.866459548473358,0.787307262420654,0.858729422092438,0.781881213188171,0.837303757667542,0.778024971485138,0.831151068210602,0.755523264408112,0.86238557100296,0.76752233505249,0.867740750312805,0.775505661964417,0.869424521923065,0.783663690090179,0.868183791637421,0.789750576019287,0.852576673030853,0.787887036800385,0.863051474094391,0.790244340896606,0.855653047561646,0.771988749504089,0.871014595031738,\r\n0.763547122478485,0.869247257709503,0.7794429063797,0.869492828845978,0.790332973003387,0.848176121711731,0.790327906608582,0.859418094158173,0.767762899398804,0.871637463569641,0.759870707988739,0.866391181945801,0.775725960731506,0.874359309673309,0.779554307460785,0.87237423658371,0.787882030010223,0.866702616214752,0.787861764431,0.844398379325867,0.791743278503418,0.851589202880859,0.79153311252594,0.862550139427185,0.792839646339417,0.85517954826355,0.77168995141983,0.876268446445465,0.763471186161041,0.873030006885529,0.787388265132904,0.871556401252747,0.784253656864166,0.873746573925018,0.793092846870422,0.859833359718323,0.767919838428497,0.876812815666199,0.759612441062927,0.872197031974792,0.779351770877838,0.876592516899109,0.776386797428131,0.884897410869598,0.791206479072571,0.867305219173431,0.794786691665649,0.861575365066528,0.767509698867798,0.880810797214508,0.763554692268372,0.878947257995605,0.75957190990448,0.877529382705688,0.772328019142151,0.885991275310516,0.789444208145142,0.873564302921295,0.791723012924194,0.869913160800934,0.794148683547974,0.866107583045959,0.783410549163818,0.878651022911072,0.755697965621948,0.873852908611298,0.781574845314026,0.884284675121307,0.777057766914368,0.887576282024384,0.787914931774139,0.877417981624603,0.766342401504517,0.88772314786911,0.760415077209473,0.886636912822723,0.7557612657547,0.882279396057129,0.771173477172852,0.889335989952087,0.791583776473999,0.874678373336792,0.793209314346313,0.871817231178284,0.786747694015503,0.881370365619659,0.750302314758301,0.877341985702515,0.782058417797089,0.886824250221252,0.794849991798401,0.868188858032227,0.784620821475983,0.884396076202393,0.790054440498352,0.879089057445526,0.791710376739502,0.875863313674927,0.275350540876389,0.970320165157318,0.270651191473007,0.964986562728882,0.276079744100571,0.966428518295288,0.271767795085907,0.969736576080322,0.27343761920929,0.961907684803009,0.28205269575119,0.966860234737396,0.269500404596329,0.969587206840515,0.272947698831558,0.973778903484344,0.271779179573059,\r\n0.958326160907745,0.276760846376419,0.962917923927307,0.282524913549423,0.962911605834961,0.281729876995087,0.970361948013306,0.270225822925568,0.97416877746582,0.275869607925415,0.973787724971771,0.273808568716049,0.956574082374573,0.28834468126297,0.966939985752106,0.268164783716202,0.973325669765472,0.273324966430664,0.977546453475952,0.271946281194687,0.954142093658447,0.282045096158981,0.959211111068726,0.278599083423615,0.959031343460083,0.288773834705353,0.963472425937653,0.280751258134842,0.974329590797424,0.287695229053497,0.970506310462952,0.266111344099045,0.977965533733368,0.276520311832428,0.977027416229248,0.27174374461174,0.98084819316864,0.272988200187683,0.952653288841248,0.284816354513168,0.957607090473175,0.275808840990067,0.954851031303406,0.290393054485321,0.966755151748657,0.285493671894073,0.973958671092987,0.266703814268112,0.980488657951355,0.274364352226257,0.980846881866455,0.269953638315201,0.951535403728485,0.28143236041069,0.955599248409271,0.277879983186722,0.953914225101471,0.288816899061203,0.95873761177063,0.291337490081787,0.96199631690979,0.279163718223572,0.978323757648468,0.281734943389893,0.977446436882019,0.287840813398361,0.974161207675934,0.290690571069717,0.970346748828888,0.264245271682739,0.982512950897217,0.275308758020401,0.98239266872406,0.271466493606567,0.984370172023773,0.26728492975235,0.984109342098236,0.283046513795853,0.953510344028473,0.274109870195389,0.95167338848114,0.286453276872635,0.955800533294678,0.292723745107651,0.963381290435791,0.285039186477661,0.977222383022308,0.292552828788757,0.967123568058014,0.264603555202484,0.984344840049744,0.279616922140121,0.95233553647995,0.291666626930237,0.956319570541382,0.288173764944077,0.954029440879822,0.293087095022202,0.959378242492676,0.278915584087372,0.981262147426605,0.281691908836365,0.981135547161102,0.289218217134476,0.97607034444809,0.272346347570419,0.98744148015976,0.268637001514435,0.988341569900513,0.264994740486145,0.987527549266815,0.276183575391769,0.950942933559418,0.280850023031235,0.951191067695618,\r\n0.285005003213882,0.952579855918884,0.295438021421433,0.958912372589111,0.284899920225143,0.98434990644455,0.286024123430252,0.981168448925018,0.262691885232925,0.987660467624664,0.290712088346481,0.952879905700684,0.286321610212326,0.951524019241333,0.295540571212769,0.962788820266724,0.277602732181549,0.988339066505432,0.280506938695908,0.98829597234726,0.265994876623154,0.991071045398712,0.26179051399231,0.991119146347046,0.293940365314484,0.953563511371613,0.29597732424736,0.955860018730164,0.299810767173767,0.959633946418762,0.287711679935455,0.983348488807678,0.284931570291519,0.987260401248932,0.297231942415237,0.963820576667786,0.289675235748291,0.978079438209534,0.298962533473969,0.956489264965057,0.300509601831436,0.963250875473022,0.295839339494705,0.966804504394531,0.297201544046402,0.953466057777405,0.299767702817917,0.96679949760437,0.294845551252365,0.952771008014679,0.299765199422836,0.954610526561737,0.295007586479187,0.971416532993317,0.905311524868011,0.779292225837708,0.904041767120361,0.782912969589233,0.901500880718231,0.782350897789001,0.908134698867798,0.778877019882202,0.899386703968048,0.786095678806305,0.908165097236633,0.782123029232025,0.898053646087646,0.782402813434601,0.905116558074951,0.787395834922791,0.910497069358826,0.778179466724396,0.903658151626587,0.778831422328949,0.897214293479919,0.785909593105316,0.900545060634613,0.795845091342926,0.91195547580719,0.779179573059082,0.910451471805573,0.787164211273193,0.898646116256714,0.798401117324829,0.904011368751526,0.795228540897369,0.914662182331085,0.775843679904938,0.912760615348816,0.783275067806244,0.902718782424927,0.807271897792816,0.905008971691132,0.807478308677673,0.915177404880524,0.779090940952301,0.917020678520203,0.783466219902039,0.910409688949585,0.794104337692261,0.901222407817841,0.810000121593475,0.908499300479889,0.804541170597076,0.917071342468262,0.775415778160095,0.921768188476563,0.787649035453796,0.915533185005188,0.794768989086151,0.905257105827332,0.815469205379486,0.909626066684723,0.810078620910645,0.918474078178406,\r\n0.779158055782318,0.921985924243927,0.783714354038239,0.914445698261261,0.80183070898056,0.903736650943756,0.81877726316452,0.914538085460663,0.806013524532318,0.918490529060364,0.775632262229919,0.924721717834473,0.785647511482239,0.92166942358017,0.792944729328156,0.911447823047638,0.814989387989044,0.90831196308136,0.82158899307251,0.914379835128784,0.809846937656403,0.921912491321564,0.779932856559753,0.925421833992004,0.783913135528564,0.924612820148468,0.78761488199234,0.923660814762115,0.789430320262909,0.918752551078796,0.802421927452087,0.911665558815002,0.820907890796661,0.906088888645172,0.824489414691925,0.918486714363098,0.810836970806122,0.921168088912964,0.776071548461914,0.92509263753891,0.780140459537506,0.927456259727478,0.787580668926239,0.925552189350128,0.791210293769836,0.91879940032959,0.804513335227966,0.920907318592072,0.802716910839081,0.916782677173615,0.820647120475769,0.90988302230835,0.830911755561829,0.904063284397125,0.824384331703186,0.90806633234024,0.831189036369324,0.918413281440735,0.806124925613403,0.91995906829834,0.775342345237732,0.923186063766479,0.775804460048676,0.928856432437897,0.784110605716705,0.927506923675537,0.7966388463974,0.921983361244202,0.802865028381348,0.91582053899765,0.827680945396423,0.906410396099091,0.831915676593781,0.920350253582001,0.806181907653809,0.925442039966583,0.776355147361755,0.92798924446106,0.780396223068237,0.932513892650604,0.789915204048157,0.929809749126434,0.791607797145844,0.923060715198517,0.803013145923615,0.920930087566376,0.80376261472702,0.922522664070129,0.802938461303711,0.925224304199219,0.810998976230621,0.92147570848465,0.826093435287476,0.908601880073547,0.835837721824646,0.915690124034882,0.834914863109589,0.920388221740723,0.808536648750305,0.920737624168396,0.804569005966187,0.924898982048035,0.772467315196991,0.930374383926392,0.780694961547852,0.933496296405792,0.785410761833191,0.929971814155579,0.794794321060181,0.931906223297119,0.800779938697815,0.921996057033539,0.803387880325317,0.922527730464935,0.803200483322144,\r\n0.923855781555176,0.821030735969543,0.921170592308044,0.833000659942627,0.912866950035095,0.836725234985352,0.90676361322403,0.836217522621155,0.921320021152496,0.806209743022919,0.921898543834686,0.80379045009613,0.927419543266296,0.776565313339233,0.93351149559021,0.797547817230225,0.922288477420807,0.806237578392029,0.931932806968689,0.820796489715576,0.921337723731995,0.807387113571167,0.928919732570648,0.826731443405151,0.910983204841614,0.844247698783875,0.922313809394836,0.837436676025391,0.917273879051209,0.844245195388794,0.908200562000275,0.840578854084015,0.921706140041351,0.804596900939941,0.936963856220245,0.80169016122818,0.933192491531372,0.806669294834137,0.921803593635559,0.806223690509796,0.922479629516602,0.80340176820755,0.931463122367859,0.81110405921936,0.923755764961243,0.808617651462555,0.929688215255737,0.834318578243256,0.923740565776825,0.845160484313965,0.921813726425171,0.806812345981598,0.922189712524414,0.804610788822174,0.922383427619934,0.803804397583008,0.923022747039795,0.807427644729614,0.929208397865295,0.808834135532379,0.93331778049469,0.816004753112793,0.93613588809967,0.823128461837769,0.936140954494476,0.829902768135071,0.916018009185791,0.848144471645355,0.909227252006531,0.847184836864471,0.932715177536011,0.837044239044189,0.920813620090485,0.849314212799072,0.938255190849304,0.807056725025177,0.928474128246307,0.807644128799438,0.932327806949615,0.808887302875519,0.935015499591827,0.811467409133911,0.931199789047241,0.807751715183258,0.936848640441895,0.833814680576324,0.911847829818726,0.848260939121246,0.930565536022186,0.847379803657532,0.925353467464447,0.848897695541382,0.940497219562531,0.804996907711029,0.936979055404663,0.811025559902191,0.937758922576904,0.821191489696503,0.939324915409088,0.833422243595123,0.913315117359161,0.851622104644775,0.910370469093323,0.851856350898743,0.936991691589355,0.838421642780304,0.93784373998642,0.848777413368225,0.924357116222382,0.853350222110748,0.940288364887238,0.812580227851868,0.938453912734985,0.800196290016174,0.937784194946289,\r\n0.813876569271088,0.939237594604492,0.839491426944733,0.931234002113342,0.853109657764435,0.941773355007172,0.810857236385345,0.936839759349823,0.795471608638763,0.939780712127686,0.822006821632385,0.941412568092346,0.839702844619751,0.915190100669861,0.855532765388489,0.911471843719482,0.855664432048798,0.940508604049683,0.849087595939636,0.938747644424438,0.853369176387787,0.942717790603638,0.816501021385193,0.941036522388458,0.817189693450928,0.941782236099243,0.836158037185669,0.942072153091431,0.843221008777618,0.924626767635345,0.856801271438599,0.942691206932068,0.849876344203949,0.932716429233551,0.856949388980865,0.941565752029419,0.823639929294586,0.945710599422455,0.842563986778259,0.944739580154419,0.845275700092316,0.916125655174255,0.859710514545441,0.912623882293701,0.86014986038208,0.942616522312164,0.853129923343658,0.938907146453857,0.857108950614929,0.944280028343201,0.838491261005402,0.945266246795654,0.850519418716431,0.925894021987915,0.86039799451828,0.910508453845978,0.860849916934967,0.934309065341949,0.862119734287262,0.945908069610596,0.838382363319397,0.930322468280792,0.862003266811371,0.917739808559418,0.863331258296967,0.911745309829712,0.867126703262329,0.909605801105499,0.854569375514984,0.943578660488129,0.857617855072021,0.945668816566467,0.854427576065063,0.941220104694366,0.861024618148804,0.92393171787262,0.863955438137054,0.914278566837311,0.867136836051941,0.947161436080933,0.853571772575378,0.941663205623627,0.864909946918488,0.930351555347443,0.869804263114929,0.92291259765625,0.868074953556061,0.918236076831818,0.867781221866608,0.913489818572998,0.870967745780945,0.944691479206085,0.862948954105377,0.946856319904327,0.857688724994659,0.936237156391144,0.871339917182922,0.915479958057404,0.87097156047821,0.946913301944733,0.86094743013382,0.942891240119934,0.87135636806488,0.940118730068207,0.872056484222412,0.921532690525055,0.87221223115921,0.934015333652496,0.875816464424133,0.91802716255188,0.872057735919952,0.915488839149475,0.874911308288574,0.946505606174469,0.864677011966705,\r\n0.94993394613266,0.861014485359192,0.946518301963806,0.868393957614899,0.939312279224396,0.875751912593842,0.929131150245667,0.876002609729767,0.916572511196136,0.875344276428223,0.949238896369934,0.865240395069122,0.945881485939026,0.872297048568726,0.924663484096527,0.875537991523743,0.938413441181183,0.879781544208527,0.930250287055969,0.879598021507263,0.92015278339386,0.875478446483612,0.917910695075989,0.878839671611786,0.948983192443848,0.869045972824097,0.941960692405701,0.877433180809021,0.926164925098419,0.879311859607697,0.947995722293854,0.873771905899048,0.944943368434906,0.87712424993515,0.920499622821808,0.879347324371338,0.938736259937286,0.886144459247589,0.932867109775543,0.885784924030304,0.929550230503082,0.882933855056763,0.941858172416687,0.883682072162628,0.925488889217377,0.882873117923737,0.936758756637573,0.885681092739105,0.919555187225342,0.886734366416931,0.921418726444244,0.882768034934998,0.935896635055542,0.890684306621552,0.942112624645233,0.887368679046631,0.932250559329987,0.89072859287262,0.927510678768158,0.886691331863403,0.922089695930481,0.886940717697144,0.93886536359787,0.891008377075195,0.928152561187744,0.890348792076111,0.933741927146912,0.89439868927002,0.928031027317047,0.893906235694885,0.922853112220764,0.890504539012909,0.919832468032837,0.890318393707275,0.925019204616547,0.893911302089691,0.920113503932953,0.892914950847626,0.930649101734161,0.897505462169647,0.923673450946808,0.897499084472656,0.922163128852844,0.894282221794128,0.9255091547966,0.898020684719086,0.921803593635559,0.897643446922302,0.919812202453613,0.89776623249054,0.249999076128006,0.963409125804901,0.2547807097435,0.96368008852005,0.252291768789291,0.965563833713531,0.247407585382462,0.956408202648163,0.246111214160919,0.968355357646942,0.24640366435051,0.959840297698975,0.246892333030701,0.96489542722702,0.250778913497925,0.968954205513,0.243241205811501,0.950942933559418,0.244371742010117,0.966964066028595,0.245160460472107,0.971395015716553,0.253837555646896,0.968116104602814,0.244617342948914,\r\n0.962704002857208,0.243646323680878,0.971069633960724,0.248511537909508,0.972205221652985,0.254763007164001,0.962672352790833,0.252452552318573,0.970929145812988,0.243760272860527,0.957456469535828,0.245479479432106,0.973416805267334,0.249802842736244,0.97389280796051,0.246770799160004,0.975696861743927,0.251698046922684,0.976093113422394,0.245584562420845,0.980042994022369,0.251248598098755,0.981773614883423,0.247941836714745,0.984206855297089,0.24575799703598,0.987576901912689,0.25029531121254,0.986414730548859,0.245417445898056,0.991828083992004,0.181512743234634,0.976708352565765,0.182215377688408,0.972501516342163,0.185203105211258,0.972397685050964,0.180530339479446,0.973353505134583,0.184704318642616,0.969761908054352,0.182141944766045,0.980900049209595,0.181719109416008,0.968205988407135,0.186277940869331,0.980336725711823,0.180168271064758,0.983129501342773,0.184446051716805,0.964629530906677,0.18317499756813,0.983591556549072,0.182492628693581,0.963050842285156,0.186413407325745,0.983126938343048,0.180680990219116,0.984717071056366,0.184595435857773,0.959094643592834,0.186114624142647,0.984177708625793,0.181636810302734,0.961302518844604,0.182538196444511,0.987219929695129,0.182296395301819,0.957328617572784,0.183872550725937,0.989221453666687,0.185123354196548,0.956349968910217,0.181355759501457,0.991558432579041,0.186450108885765,0.987597167491913,0.182214111089706,0.952782392501831,0.18291799724102,0.949884533882141,0.0171086043119431,0.886311531066895,0.0201874952763319,0.876692533493042,0.0220573637634516,0.87789398431778,0.0251919589936733,0.880090475082397,0.0208204910159111,0.889470219612122,0.0291380528360605,0.882440149784088,0.024700753390789,0.89183509349823,0.0317890383303165,0.878582656383514,0.0192886404693127,0.893828988075256,0.0324270986020565,0.885576009750366,0.0266643054783344,0.875683546066284,0.0359997227787972,0.881917297840118,0.0232625883072615,0.896477460861206,0.0306154638528824,0.895348191261292,0.0189113765954971,0.898663818836212,0.0357136093080044,0.886705279350281,0.0350211150944233,\r\n0.891353964805603,0.0288532041013241,0.89986652135849,0.0219826698303223,0.900798261165619,0.0344577468931675,0.899332284927368,0.0164528209716082,0.90165787935257,0.0402559861540794,0.88973480463028,0.0379683412611485,0.894797503948212,0.028660774230957,0.903458118438721,0.0207040198147297,0.904681086540222,0.039127990603447,0.884483456611633,0.0409965924918652,0.896778762340546,0.0359946601092815,0.905368506908417,0.0438159555196762,0.892014861106873,0.0364225655794144,0.910907208919525,0.0286025386303663,0.908510684967041,0.0449452176690102,0.898642301559448,0.0461846217513084,0.893691003322601,0.0438488684594631,0.908408164978027,0.0193873886018991,0.907956182956696,0.043280441313982,0.913797497749329,0.0283809900283813,0.912474513053894,0.0242665186524391,0.910291969776154,0.048420362174511,0.910446405410767,0.0477012805640697,0.89746618270874,0.0489343553781509,0.914991319179535,0.0379303619265556,0.915610373020172,0.0189607497304678,0.911507308483124,0.0500610880553722,0.902698516845703,0.0495698824524879,0.894727885723114,0.0455630235373974,0.917813181877136,0.0230726897716522,0.913018882274628,0.0329714752733707,0.916977643966675,0.051259983330965,0.911616206169128,0.0504332892596722,0.898991703987122,0.0486811585724354,0.891607165336609,0.0499230958521366,0.918546199798584,0.043576680123806,0.920214772224426,0.0277783777564764,0.916088938713074,0.0385355055332184,0.919113397598267,0.0212445985525846,0.915763556957245,0.0551060624420643,0.90378350019455,0.0535843409597874,0.915525555610657,0.052962739020586,0.899795591831207,0.0487672463059425,0.921833992004395,0.0324106402695179,0.920518636703491,0.0547098070383072,0.911906063556671,0.0523373410105705,0.896482527256012,0.0548617281019688,0.919422268867493,0.0535539574921131,0.922949314117432,0.0466188602149487,0.924145698547363,0.0395343713462353,0.921988427639008,0.0278226882219315,0.919291913509369,0.037453081458807,0.922207474708557,0.0619981177151203,0.904430389404297,0.0557010807096958,0.900402009487152,0.058760978281498,0.918074011802673,0.0546844899654388,\r\n0.897553563117981,0.0502927638590336,0.925642073154449,0.0429221652448177,0.922850608825684,0.027280842885375,0.921440243721008,0.0320827476680279,0.923600077629089,0.0587913617491722,0.900846421718597,0.0652099400758743,0.912663161754608,0.0575646162033081,0.926984071731567,0.054298359900713,0.929198265075684,0.0475822761654854,0.926709353923798,0.0448882468044758,0.925997853279114,0.0424220971763134,0.925097703933716,0.0336335860192776,0.926185190677643,0.0223092958331108,0.919610917568207,0.0617347918450832,0.900919795036316,0.0713208764791489,0.904398739337921,0.0576367788016796,0.898496687412262,0.0638224110007286,0.919909715652466,0.0611321814358234,0.92429506778717,0.050932090729475,0.931753039360046,0.039752122014761,0.926459908485413,0.024877991527319,0.923570930957794,0.0292380657047033,0.925097703933716,0.0660530850291252,0.900565326213837,0.0717032104730606,0.910598337650299,0.0615398287773132,0.898952484130859,0.0662062764167786,0.922868311405182,0.062842532992363,0.927638590335846,0.0580887384712696,0.930152833461761,0.0552288629114628,0.932608842849731,0.0419422872364521,0.928864061832428,0.0335854776203632,0.928289294242859,0.0292709823697805,0.927053689956665,0.066006250679493,0.898815751075745,0.0713943019509315,0.900816023349762,0.0755315646529198,0.904274702072144,0.0526196546852589,0.934458434581757,0.0461846217513084,0.931783437728882,0.0247412659227848,0.926163673400879,0.0693459287285805,0.89895498752594,0.0764759927988052,0.912027597427368,0.0707739666104317,0.919228613376617,0.0654530078172684,0.931739091873169,0.068093866109848,0.926784038543701,0.0635173097252846,0.934460997581482,0.0577760376036167,0.93619030714035,0.0494154319167137,0.933646976947784,0.0777533799409866,0.90141099691391,0.0741313770413399,0.917762577533722,0.0550832748413086,0.937958896160126,0.0498699247837067,0.935932099819183,0.0798701196908951,0.906197726726532,0.0728527307510376,0.923776030540466,0.0700510889291763,0.929974317550659,0.0687597766518593,0.934050798416138,0.0624095648527145,0.93657773733139,0.075748048722744,\r\n0.921375691890717,0.065944217145443,0.936985373497009,0.0642566457390785,0.93960976600647,0.0723437964916229,0.933284878730774,0.0705853402614594,0.936735987663269,0.0732920244336128,0.930181920528412,0.0677355900406837,0.938860297203064,0.0745656117796898,0.934353351593018,0.0741731524467468,0.937670290470123,0.942600071430206,0.901819944381714,0.946455001831055,0.904902637004852,0.945218145847321,0.907429575920105,0.499894320964813,0.752852022647858,0.500837504863739,0.749375641345978,0.505571007728577,0.75490927696228,0.510379254817963,0.752897620201111,0.507356107234955,0.760978400707245,0.504056930541992,0.743938207626343,0.515873670578003,0.753429293632507,0.516062319278717,0.75929719209671,0.512306094169617,0.747499406337738,0.519215881824493,0.762365937232971,0.519975483417511,0.744026780128479,0.521675705909729,0.75825023651123,0.51461398601532,0.766699433326721,0.51522171497345,0.740489602088928,0.519899547100067,0.768352806568146,0.505700170993805,0.765332162380219,0.528268992900848,0.764608025550842,0.528146207332611,0.756731033325195,0.51229727268219,0.73986804485321,0.518898129463196,0.739837646484375,0.525111615657806,0.766883015632629,0.508627116680145,0.770359396934509,0.53139853477478,0.761015117168427,0.530064165592194,0.751387298107147,0.513717710971832,0.733872294425964,0.526195287704468,0.745857417583466,0.525696516036987,0.769544124603271,0.515058398246765,0.772869884967804,0.504005014896393,0.767933785915375,0.53942996263504,0.767224848270416,0.532736659049988,0.76809960603714,0.537990510463715,0.757567822933197,0.511280655860901,0.733234226703644,0.525253415107727,0.738684296607971,0.518995583057404,0.732540488243103,0.521520018577576,0.77064174413681,0.507695376873016,0.773073732852936,0.50197434425354,0.770346760749817,0.539137542247772,0.763900339603424,0.532448053359985,0.743957161903381,0.537700653076172,0.753311574459076,0.507854878902435,0.736546039581299,0.510969221591949,0.727586627006531,0.522658109664917,0.728117108345032,0.522774577140808,0.778011083602905,0.532341659069061,0.771629214286804,\r\n0.548445105552673,0.768303453922272,0.539080560207367,0.771678566932678,0.547393083572388,0.761843085289001,0.544849693775177,0.755999267101288,0.507080078125,0.741835355758667,0.504951953887939,0.727724611759186,0.528510808944702,0.734214127063751,0.504945635795593,0.77389532327652,0.516610503196716,0.778146505355835,0.537060022354126,0.744063496589661,0.542674720287323,0.751903772354126,0.513275861740112,0.721142768859863,0.505745768547058,0.723717749118805,0.531333982944489,0.73089212179184,0.528067708015442,0.783739686012268,0.53732842206955,0.775938630104065,0.500417172908783,0.772176086902618,0.523049294948578,0.780479729175568,0.550885915756226,0.761550664901733,0.548800826072693,0.773212969303131,0.5507732629776,0.758724987506866,0.549131274223328,0.753517925739288,0.524263381958008,0.725554704666138,0.535794019699097,0.734640717506409,0.533805191516876,0.72595477104187,0.534005224704742,0.783601701259613,0.54279625415802,0.775035977363586,0.522854328155518,0.782576203346252,0.553882539272308,0.768176853656769,0.556461334228516,0.769737839698792,0.543377339839935,0.744588911533356,0.547068953514099,0.748761594295502,0.511927604675293,0.71629524230957,0.523597478866577,0.718813300132751,0.537813305854797,0.737452507019043,0.534178614616394,0.785974144935608,0.538722276687622,0.780164539813995,0.554116725921631,0.760071992874146,0.554932057857513,0.764905512332916,0.555930912494659,0.772244453430176,0.546646118164063,0.775465130805969,0.55176705121994,0.75639933347702,0.550841629505157,0.749287009239197,0.516150951385498,0.715357184410095,0.509871602058411,0.71052360534668,0.531352937221527,0.721392154693604,0.540814936161041,0.733646929264069,0.539754092693329,0.729056477546692,0.526548504829407,0.785206973552704,0.539150178432465,0.786264061927795,0.557117104530334,0.766969084739685,0.559561789035797,0.772106468677521,0.549131274223328,0.775843679904938,0.552802622318268,0.753106474876404,0.544780075550079,0.737856388092041,0.547827303409576,0.743435561656952,0.552338004112244,0.746674001216888,0.527972757816315,\r\n0.714051902294159,0.537251174449921,0.718000531196594,0.537758886814117,0.723205029964447,0.537590503692627,0.788051664829254,0.544619262218475,0.780243039131165,0.545643448829651,0.783891618251801,0.557047486305237,0.763483822345734,0.559732675552368,0.768883287906647,0.556123316287994,0.774204254150391,0.549121141433716,0.738836228847504,0.51914370059967,0.71049702167511,0.550844132900238,0.733615279197693,0.547196805477142,0.720171749591827,0.540979564189911,0.788741588592529,0.546373903751373,0.787723779678345,0.559103488922119,0.77502715587616,0.549289524555206,0.78005313873291,0.511547803878784,0.706226825714111,0.522767007350922,0.707483947277069,0.534493863582611,0.712851762771606,0.550649166107178,0.729874312877655,0.55104923248291,0.726181387901306,0.549714863300323,0.787973165512085,0.561603784561157,0.776514649391174,0.518684148788452,0.705130517482758,0.507367491722107,0.708720862865448,0.530199646949768,0.710712254047394,0.539283096790314,0.714481115341187,0.555285215377808,0.724672317504883,0.551574647426605,0.783237099647522,0.562591254711151,0.7715203166008,0.513943016529083,0.701327443122864,0.507606744766235,0.703426480293274,0.525776267051697,0.703241646289825,0.532215058803558,0.70635974407196,0.536383986473084,0.708638548851013,0.541311204433441,0.710685670375824,0.557158887386322,0.719445049762726,0.555966317653656,0.779320120811462,0.552443087100983,0.785924792289734,0.564771294593811,0.77881246805191,0.524276077747345,0.697772562503815,0.543741941452026,0.708157479763031,0.556814551353455,0.716204106807709,0.556084096431732,0.777229964733124,0.558231234550476,0.782085001468658,0.556815803050995,0.784586608409882,0.558923721313477,0.78996330499649,0.524005115032196,0.691464126110077,0.509101867675781,0.69951331615448,0.530688285827637,0.692398428916931,0.532989859580994,0.695082306861877,0.540687084197998,0.70045393705368,0.540209829807281,0.706476211547852,0.546617031097412,0.706244587898254,0.555663764476776,0.713263213634491,0.558946490287781,0.779178321361542,0.559338927268982,0.788059234619141,\r\n0.520670533180237,0.686873614788055,0.503820180892944,0.700107038021088,0.513134062290192,0.697325646877289,0.543774843215942,0.70254784822464,0.552639305591583,0.709024667739868,0.561627864837646,0.782891452312469,0.561544299125671,0.780796229839325,0.561183512210846,0.785695612430573,0.562453269958496,0.789986073970795,0.532610058784485,0.680401861667633,0.526391506195068,0.680019557476044,0.505478620529175,0.696387529373169,0.511055290699005,0.693447947502136,0.533898830413818,0.690710842609406,0.549769341945648,0.706382572650909,0.564900457859039,0.78692489862442,0.528975427150726,0.68250846862793,0.535425662994385,0.680741190910339,0.521068036556244,0.681242525577545,0.53583961725235,0.686578631401062,0.536561250686646,0.692759215831757,0.543439388275146,0.699524700641632,0.564499139785767,0.78424859046936,0.564532041549683,0.782225549221039,0.565073907375336,0.789468288421631,0.530124962329865,0.67635577917099,0.537648737430573,0.674906194210052,0.527020752429962,0.67387318611145,0.50729912519455,0.69230729341507,0.537542402744293,0.688920736312866,0.536963820457459,0.69788521528244,0.540547847747803,0.695119023323059,0.567467868328094,0.785919725894928,0.568079352378845,0.788779616355896,0.536334633827209,0.672248899936676,0.512113690376282,0.689072668552399,0.524597644805908,0.6717728972435,0.532784759998322,0.670876562595367,0.53915274143219,0.672816038131714,0.518086612224579,0.67787116765976,0.527404308319092,0.667445719242096,0.508842349052429,0.686357080936432,0.538095593452454,0.667334318161011,0.539959132671356,0.669704258441925,0.510464072227478,0.682133734226227,0.522449254989624,0.668840825557709,0.515662252902985,0.676279842853546,0.534643232822418,0.665377080440521,0.528991878032684,0.665617644786835,0.521078169345856,0.664060473442078,0.505650818347931,0.683212399482727,0.540233850479126,0.662994503974915,0.541465699672699,0.667091250419617,0.513253092765808,0.675965845584869,0.52808541059494,0.661986768245697,0.519753932952881,0.666959583759308,0.509027183055878,0.676558315753937,0.533822894096375,\r\n0.659561157226563,0.516031920909882,0.669938445091248,0.525582551956177,0.65720134973526,0.516975104808807,0.664777040481567,0.54022878408432,0.658029317855835,0.529329895973206,0.651246130466461,0.521211087703705,0.660161197185516,0.514557063579559,0.666557013988495,0.53559148311615,0.654221177101135,0.543287456035614,0.660422027111053,0.522137820720673,0.654449045658112,0.526347219944,0.651565134525299,0.517905592918396,0.658740758895874,0.540105998516083,0.652760207653046,0.543021559715271,0.664463043212891,0.542976021766663,0.656274616718292,0.532503724098206,0.64939272403717,0.529583096504211,0.638097524642944,0.544742047786713,0.64632648229599,0.517495393753052,0.654026210308075,0.522620141506195,0.649362325668335,0.525771200656891,0.640594065189362,0.542886137962341,0.652144968509674,0.532072007656097,0.636712551116943,0.534568548202515,0.635844051837921,0.512017488479614,0.658540725708008,0.525754749774933,0.635428786277771,0.54575103521347,0.654560446739197,0.545689046382904,0.651124596595764,0.528219640254974,0.634066581726074,0.542444288730621,0.640670001506805,0.512009859085083,0.664025008678436,0.512856841087341,0.652271568775177,0.517489075660706,0.647215187549591,0.522383391857147,0.637363255023956,0.548438787460327,0.64928126335144,0.532659471035004,0.632051169872284,0.538852691650391,0.635102212429047,0.545452296733856,0.640105366706848,0.52179092168808,0.630134463310242,0.548265337944031,0.644984543323517,0.526202917098999,0.62874436378479,0.54290384054184,0.634421110153198,0.510973036289215,0.643802106380463,0.516694009304047,0.642586708068848,0.51455956697464,0.634269177913666,0.551084697246552,0.647235453128815,0.532285988330841,0.629643261432648,0.538070321083069,0.631025671958923,0.548074185848236,0.639593899250031,0.547371506690979,0.635049045085907,0.506298959255219,0.646154284477234,0.513826549053192,0.639558494091034,0.51961088180542,0.62838739156723,0.524620413780212,0.626728951931,0.550926446914673,0.643804609775543,0.54262787103653,0.63076239824295,0.546913266181946,0.631157338619232,\r\n0.507882714271545,0.64008766412735,0.511593341827393,0.632681608200073,0.553741991519928,0.645597279071808,0.537056267261505,0.62805312871933,0.540444016456604,0.626171886920929,0.551025211811066,0.638614058494568,0.551160633563995,0.631937205791473,0.504063248634338,0.643166542053223,0.553654670715332,0.642700672149658,0.546925902366638,0.623029708862305,0.549873113632202,0.623931109905243,0.552877306938171,0.634838879108429,0.555270075798035,0.62841522693634,0.502319991588593,0.651775300502777,0.502557992935181,0.640358567237854,0.557248771190643,0.643526077270508,0.541117548942566,0.623148679733276,0.555366277694702,0.63602888584137,0.56103789806366,0.630742132663727,0.557052552700043,0.632767677307129,0.508229613304138,0.656636714935303,0.499201834201813,0.649081289768219,0.561249315738678,0.625614821910858,0.556492984294891,0.641075134277344,0.561513900756836,0.62874436378479,0.504017651081085,0.657388687133789,0.495584905147552,0.653785705566406,0.559259176254272,0.634507179260254,0.559047758579254,0.637302458286285,0.506706655025482,0.661090433597565,0.496207773685455,0.650949895381927,0.565233409404755,0.626939058303833,0.559156656265259,0.639963567256927,0.499931037425995,0.660449862480164,0.496858477592468,0.656350612640381,0.497026860713959,0.647020220756531,0.493090897798538,0.652357637882233,0.564088940620422,0.63089656829834,0.503731548786163,0.66412627696991,0.491819828748703,0.655393481254578,0.493655532598495,0.658887624740601,0.496111541986465,0.666156947612762,0.113056808710098,0.914314031600952,0.107596591114998,0.912141561508179,0.114411421120167,0.910455286502838,0.109631039202213,0.908723413944244,0.101014703512192,0.908753752708435,0.110910952091217,0.904753267765045,0.0931402370333672,0.91223269701004,0.104117646813393,0.902479529380798,0.116707928478718,0.906176209449768,0.101505905389786,0.914450705051422,0.092386968433857,0.908333480358124,0.0984054952859879,0.904783606529236,0.113306209445,0.902428865432739,0.106164753437042,0.898114383220673,0.108537219464779,0.915114104747772,0.0965216979384422,\r\n0.919119715690613,0.0868153423070908,0.912389695644379,0.0973749756813049,0.900388121604919,0.117399156093597,0.902459263801575,0.102379441261292,0.895916640758514,0.102621242403984,0.917099177837372,0.0918020829558373,0.922203660011292,0.0922135263681412,0.903791069984436,0.0857088640332222,0.908880352973938,0.100062675774097,0.897567451000214,0.114397495985031,0.899030983448029,0.108010567724705,0.895572245121002,0.103970788419247,0.891597032546997,0.108571402728558,0.918669044971466,0.103589728474617,0.919833719730377,0.0889624655246735,0.906510412693024,0.0911918729543686,0.898438453674316,0.0952873602509499,0.894772171974182,0.117792882025242,0.898276448249817,0.100680477917194,0.892549097537994,0.105015233159065,0.922578394412994,0.115038082003593,0.895450711250305,0.10786497592926,0.890396893024445,0.0985093042254448,0.890032291412354,0.0987333878874779,0.926771342754364,0.0884041637182236,0.8947873711586,0.113870844244957,0.8919717669487,0.118092924356461,0.893182098865509,0.105433009564877,0.885758280754089,0.101954065263271,0.886578679084778,0.106049545109272,0.925637006759644,0.089102990925312,0.925591468811035,0.0915666073560715,0.889627158641815,0.120532482862473,0.897228181362152,0.11055900901556,0.886335611343384,0.0938998311758041,0.887414216995239,0.0984308123588562,0.884953141212463,0.0989663302898407,0.92967301607132,0.0865950584411621,0.922320127487183,0.119556404650211,0.888908088207245,0.121243976056576,0.893080830574036,0.120385631918907,0.901102125644684,0.109474055469036,0.88203626871109,0.101395763456821,0.882173001766205,0.104787357151508,0.930908620357513,0.0947594419121742,0.932534158229828,0.123239174485207,0.896448314189911,0.123322732746601,0.899228453636169,0.113184675574303,0.881722331047058,0.104879774153233,0.880780458450317,0.0944176241755486,0.883337736129761,0.0985700711607933,0.881362795829773,0.105803944170475,0.933526694774628,0.0928832367062569,0.935810565948486,0.123641759157181,0.889444887638092,0.125592648983002,0.892640233039856,0.119864046573639,0.884325206279755,0.105355784296989,\r\n0.878000319004059,0.113121375441551,0.878891587257385,0.10166921466589,0.878719389438629,0.0907677710056305,0.885044276714325,0.102535158395767,0.937203109264374,0.0862545073032379,0.928204476833344,0.125326797366142,0.88581907749176,0.127290353178978,0.89732438325882,0.125931933522224,0.895683705806732,0.0946961417794228,0.880587995052338,0.0993321985006332,0.876050710678101,0.0987105965614319,0.941740453243256,0.128422141075134,0.889814555644989,0.129341259598732,0.894934237003326,0.122758097946644,0.882076799869537,0.102937743067741,0.875878512859344,0.108529627323151,0.875681042671204,0.0905690044164658,0.882968068122864,0.105864711105824,0.940636515617371,0.129518494009972,0.892574429512024,0.128875374794006,0.886993944644928,0.127800539135933,0.883206069469452,0.114230379462242,0.877078652381897,0.100857719779015,0.944495260715485,0.108395427465439,0.936367571353912,0.131251633167267,0.889794290065765,0.134334325790405,0.891637563705444,0.106047011911869,0.944616794586182,0.133840590715408,0.88689261674881,0.134783744812012,0.888310551643372,0.132815137505531,0.883596003055573,0.139267891645432,0.888437151908875,0.139280542731285,0.885839343070984,0.408483445644379,0.846203684806824,0.403960049152374,0.850300431251526,0.403611898422241,0.844132542610168,0.399911403656006,0.852391839027405,0.406073004007339,0.843226075172424,0.400565922260284,0.857222855091095,0.391925543546677,0.849029362201691,0.403019428253174,0.840273797512054,0.405942589044571,0.85275137424469,0.395548820495605,0.857395052909851,0.392316728830338,0.84380841255188,0.396770477294922,0.840334534645081,0.398703664541245,0.860473930835724,0.387299597263336,0.852462768554688,0.388027548789978,0.847135424613953,0.388438999652863,0.856919050216675,0.388892233371735,0.842304408550262,0.391917943954468,0.840749800205231,0.38310918211937,0.851024568080902,0.391257107257843,0.860641062259674,0.377247631549835,0.859152257442474,0.381893843412399,0.848371088504791,0.393792867660522,0.837574660778046,0.395332336425781,0.862317204475403,0.38863018155098,\r\n0.864049077033997,0.377169162034988,0.86473274230957,0.38674384355545,0.840288996696472,0.389461934566498,0.838050723075867,0.376348793506622,0.855784714221954,0.39162677526474,0.866611480712891,0.384261220693588,0.866677284240723,0.373445868492126,0.862089335918427,0.374363720417023,0.853647708892822,0.372812867164612,0.858488857746124,0.388934016227722,0.869062423706055,0.37269514799118,0.867031753063202,0.376951396465302,0.869275093078613,0.378230065107346,0.847976088523865,0.383418083190918,0.872602105140686,0.393348515033722,0.870763897895813,0.371034145355225,0.865264415740967,0.37289896607399,0.851971566677094,0.390748172998428,0.873209834098816,0.370601177215576,0.870470225811005,0.376723527908325,0.873549103736877,0.389794886112213,0.876111447811127,0.3825863301754,0.8762127161026,0.373690217733383,0.875432908535004,0.388484567403793,0.879377722740173,0.368003368377686,0.872627437114716,0.379685938358307,0.878795385360718,0.367367833852768,0.876430511474609,0.365690410137177,0.869776427745819,0.371877312660217,0.878856122493744,0.382558465003967,0.883656740188599,0.367060214281082,0.867117881774902,0.374044686555862,0.881514728069305,0.38954421877861,0.88413280248642,0.367855250835419,0.881570398807526,0.384118169546127,0.886852145195007,0.375928491353989,0.885408878326416,0.368341386318207,0.884213805198669,0.390144288539886,0.886872410774231,0.385561406612396,0.889606952667236,0.378747850656509,0.890027225017548,0.371002495288849,0.888740956783295,0.364661157131195,0.886943280696869,0.381801426410675,0.894488573074341,0.373680084943771,0.892093300819397,0.366300612688065,0.889617025852203,0.387975662946701,0.893683433532715,0.370244175195694,0.894230306148529,0.384844839572906,0.897440850734711,0.375671476125717,0.897471249103546,0.39075955748558,0.89790678024292,0.379913806915283,0.900079190731049,0.387097060680389,0.900929927825928,0.373349666595459,0.89992219209671,0.39263704419136,0.900514721870422,0.382882565259933,0.903603732585907,0.375573992729187,0.903001129627228,0.390389889478683,0.903325200080872,\r\n0.387137562036514,0.905284941196442,0.371155679225922,0.903618931770325,0.395008236169815,0.903755664825439,0.381417810916901,0.90668261051178,0.374080121517181,0.905391275882721,0.392931997776031,0.906718075275421,0.387851595878601,0.908085346221924,0.372336864471436,0.907052278518677,0.396970510482788,0.907725811004639,0.385428488254547,0.91027295589447,0.37874910235405,0.908530950546265,0.369295954704285,0.905386209487915,0.397504776716232,0.911285758018494,0.390401303768158,0.911731362342834,0.399941802024841,0.910146355628967,0.387814879417419,0.913311362266541,0.380288541316986,0.910338819026947,0.396371692419052,0.914936900138855,0.398570716381073,0.906378746032715,0.403452396392822,0.912885963916779,0.402047127485275,0.909862756729126,0.407698512077332,0.919256448745728,0.102719992399216,0.959626376628876,0.095070868730545,0.959033906459808,0.0996347665786743,0.954962432384491,0.0994562655687332,0.964877665042877,0.0938972979784012,0.955342233181,0.104915216565132,0.963388860225677,0.0988777056336403,0.971106350421906,0.0963406637310982,0.952091157436371,0.0894258171319962,0.959150373935699,0.105676077306271,0.968609809875488,0.0937086641788483,0.973678886890411,0.0996398329734802,0.951129019260406,0.093350388109684,0.951787352561951,0.0868761092424393,0.954709231853485,0.0979155525565147,0.975481629371643,0.107261098921299,0.971278548240662,0.102708600461483,0.950855553150177,0.0983333289623261,0.948414742946625,0.0904651954770088,0.951205015182495,0.0950240269303322,0.948946475982666,0.0837529078125954,0.957757771015167,0.0871217101812363,0.966057598590851,0.103315003216267,0.973683953285217,0.0940631404519081,0.978854238986969,0.101556546986103,0.948546409606934,0.0924325436353683,0.948728740215302,0.0864418745040894,0.951731622219086,0.0825742706656456,0.952992558479309,0.0861291736364365,0.962750852108002,0.0843529924750328,0.970751881599426,0.103390969336033,0.977304637432098,0.0889244824647903,0.977142632007599,0.103221319615841,0.979897439479828,0.1096196398139,0.976069033145905,0.0892650336027145,\r\n0.948794543743134,0.0880509540438652,0.950009882450104,0.0804524719715118,0.956866502761841,0.0839428082108498,0.968098402023315,0.0852455124258995,0.974489092826843,0.0818982347846031,0.965282797813416,0.0917767658829689,0.982474982738495,0.0949341431260109,0.983462452888489,0.082459069788456,0.950177013874054,0.0851860120892525,0.949832677841187,0.0789674669504166,0.952379822731018,0.0815513506531715,0.969212472438812,0.107215523719788,0.979340374469757,0.0879002958536148,0.980611443519592,0.0845745429396629,0.977578103542328,0.0990511476993561,0.984520792961121,0.0781395062804222,0.949964344501495,0.0792371183633804,0.971617817878723,0.108324535191059,0.982495248317719,0.111645229160786,0.979583442211151,0.0925958603620529,0.988252937793732,0.0889915823936462,0.985006928443909,0.0968128740787506,0.987979471683502,0.104663290083408,0.985467791557312,0.0834832563996315,0.979902505874634,0.111608512699604,0.984855055809021,0.114368371665478,0.982763588428497,0.0965495482087135,0.991068542003632,0.0862215906381607,0.98275351524353,0.107621908187866,0.989503741264343,0.104994975030422,0.992415547370911,0.0931744202971458,0.992896616458893,0.114700064063072,0.985057592391968,0.115068465471268,0.988065600395203,0.103891029953957,0.995155155658722,0.0967850238084793,0.993960022926331,0.110657751560211,0.993165016174316,0.0973002836108208,0.996643960475922,0.114855781197548,0.991504013538361,0.110152624547482,0.996005892753601,0.0926034525036812,0.995458960533142,0.117905557155609,0.989048004150391,0.114684872329235,0.99475508928299,0.109420880675316,0.998006165027618,0.104231581091881,0.997636497020721,0.0908639803528786,0.993296682834625,0.117701731622219,0.992182612419128,0.117701731622219,0.986232459545136,0.116769962012768,0.997773230075836,0.120667949318886,0.989939272403717,0.12027295678854,0.988308668136597,0.117965057492256,0.995514690876007,0.120508432388306,0.992390215396881,0.122427672147751,0.994881689548492,0.122960656881332,0.990850746631622,0.123199932277203,0.992790281772614,0.126664951443672,0.993691623210907,\r\n0.328969061374664,0.23519204556942,0.32858419418335,0.232044786214828,0.332999974489212,0.235456630587578,0.326908022165298,0.233267739415169,0.329650163650513,0.227294787764549,0.331594735383987,0.239058375358582,0.326718121767044,0.23022934794426,0.333729207515717,0.231530800461769,0.338000655174255,0.239896461367607,0.328176558017731,0.236806184053421,0.327059954404831,0.226565569639206,0.335473746061325,0.223372742533684,0.332182168960571,0.242306903004646,0.329693228006363,0.240719363093376,0.330029964447021,0.223512008786201,0.345611780881882,0.225749015808105,0.346892982721329,0.243389338254929,0.336347252130508,0.244705960154533,0.327568888664246,0.221705436706543,0.346579015254974,0.219736814498901,0.349799692630768,0.229279860854149,0.331680834293365,0.221275001764297,0.348564088344574,0.235790848731995,0.331885904073715,0.244573026895523,0.33719801902771,0.218750610947609,0.350483328104019,0.225024864077568,0.328776627779007,0.219988748431206,0.359205991029739,0.241354882717133,0.347457617521286,0.251662582159042,0.335858583450317,0.246986016631126,0.347601920366287,0.215103298425674,0.351478397846222,0.217658057808876,0.354357242584229,0.227363154292107,0.353764772415161,0.233417123556137,0.332240402698517,0.217075705528259,0.356114447116852,0.237293586134911,0.340600997209549,0.249709159135818,0.334974944591522,0.248944506049156,0.342727869749069,0.214087963104248,0.35466867685318,0.220726817846298,0.354096472263336,0.23042431473732,0.354554742574692,0.22430831193924,0.337904423475266,0.215642601251602,0.328817158937454,0.216507270932198,0.362176030874252,0.239745810627937,0.366546213626862,0.248067170381546,0.34477624297142,0.25371727347374,0.343826740980148,0.210379883646965,0.352086067199707,0.213257476687431,0.355301678180695,0.214320912957191,0.358021020889282,0.228529125452042,0.357522219419479,0.224124744534492,0.358099520206451,0.231800451874733,0.357985585927963,0.235013529658318,0.336676418781281,0.212523207068443,0.32944256067276,0.213996812701225,0.366467714309692,0.241353616118431,0.362054467201233,\r\n0.236503601074219,0.369171887636185,0.24568584561348,0.371205061674118,0.256180912256241,0.339590728282928,0.252379149198532,0.353020370006561,0.257429182529449,0.34872105717659,0.209034129977226,0.358086854219437,0.219444379210472,0.331356734037399,0.212496623396873,0.366001844406128,0.237908855080605,0.385163873434067,0.251870214939117,0.38211789727211,0.255175709724426,0.356793016195297,0.255811244249344,0.342368304729462,0.255270659923553,0.338284224271774,0.253400802612305,0.337304353713989,0.208691045641899,0.344507843255997,0.204893067479134,0.355982780456543,0.207980826497078,0.353058338165283,0.206527471542358,0.357620984315872,0.213963896036148,0.360811293125153,0.228544324636459,0.361765831708908,0.233033522963524,0.3324935734272,0.209393665194511,0.330561697483063,0.208336561918259,0.36985045671463,0.239169776439667,0.370779693126678,0.242932304739952,0.36517134308815,0.234150126576424,0.376641243696213,0.245276927947998,0.387490779161453,0.263812303543091,0.368424952030182,0.260144710540771,0.347252517938614,0.257434248924255,0.360988527536392,0.260291576385498,0.339446425437927,0.206632539629936,0.34968575835228,0.203689113259315,0.359765559434891,0.214729830622673,0.360178291797638,0.222892940044403,0.368493318557739,0.235114812850952,0.397236377000809,0.256144195795059,0.385158807039261,0.248809039592743,0.334152042865753,0.20507538318634,0.332382172346115,0.207003474235535,0.339061558246613,0.202770009636879,0.345247179269791,0.200048118829727,0.353931874036789,0.202350959181786,0.358314752578735,0.208820179104805,0.362264633178711,0.218018874526024,0.36246719956398,0.223893061280251,0.364269971847534,0.230305314064026,0.373873770236969,0.240542113780975,0.373815536499023,0.233128473162651,0.367166548967361,0.231090232729912,0.395003169775009,0.252881735563278,0.383216798305511,0.244351491332054,0.390131622552872,0.250853627920151,0.40134072303772,0.265187174081802,0.382191330194473,0.26788118481636,0.368754118680954,0.263541370630264,0.351597398519516,0.192015409469604,0.356884181499481,0.201257139444351,\r\n0.362421631813049,0.211174920201302,0.331245332956314,0.205355152487755,0.370366990566254,0.231933385133743,0.378287017345428,0.242258802056313,0.400262087583542,0.252093017101288,0.388688415288925,0.246637865900993,0.411637037992477,0.260952413082123,0.377223581075668,0.2668696641922,0.334088742733002,0.200811520218849,0.34118589758873,0.197598427534103,0.346619516611099,0.193291530013084,0.355747312307358,0.190507620573044,0.360236525535584,0.208137810230255,0.365799278020859,0.213100492954254,0.365358710289001,0.222895473241806,0.365784078836441,0.226851686835289,0.375734776258469,0.237421452999115,0.373367369174957,0.229512795805931,0.369468122720718,0.228251874446869,0.394560068845749,0.248365938663483,0.41134712100029,0.254131257534027,0.38008725643158,0.239133074879646,0.385080337524414,0.24113966524601,0.394200533628464,0.271485477685928,0.411925673484802,0.267032980918884,0.377464115619659,0.26976752281189,0.335916817188263,0.196041256189346,0.331802368164063,0.202672526240349,0.347470253705978,0.18890106678009,0.35909965634346,0.186199441552162,0.352640569210052,0.186328575015068,0.363019168376923,0.205352634191513,0.3667032122612,0.208142876625061,0.365652441978455,0.21946969628334,0.379107385873795,0.235080629587173,0.377742648124695,0.231218099594116,0.400054484605789,0.250035792589188,0.405490636825562,0.251185297966003,0.390860855579376,0.242260068655014,0.382049560546875,0.272053897380829,0.405685603618622,0.272529929876328,0.418877214193344,0.262504518032074,0.422886610031128,0.269206702709198,0.372478663921356,0.267317831516266,0.340942800045013,0.192992761731148,0.342499971389771,0.190045535564423,0.357410818338394,0.180856958031654,0.360834062099457,0.202552258968353,0.370799958705902,0.213056176900864,0.369739055633545,0.216942772269249,0.36915922164917,0.221752271056175,0.369090855121613,0.224907130002975,0.373377501964569,0.226412385702133,0.379274487495422,0.229338094592094,0.413418263196945,0.250762462615967,0.387369245290756,0.238351956009865,0.420205265283585,0.255075693130493,0.411178737878799,\r\n0.276717811822891,0.376605778932571,0.272295713424683,0.336957484483719,0.189731568098068,0.348285555839539,0.183380082249641,0.342201203107834,0.187089443206787,0.360991060733795,0.17645637691021,0.353579938411713,0.180168271064758,0.367538750171661,0.202282592654228,0.3640978038311,0.200853288173676,0.371954530477524,0.205422252416611,0.385799407958984,0.234605878591537,0.405971705913544,0.247531652450562,0.391233056783676,0.241172581911087,0.396755307912827,0.283170580863953,0.424126029014587,0.261487931013107,0.42668205499649,0.272572964429855,0.381006360054016,0.276583611965179,0.334081143140793,0.191688790917397,0.364411771297455,0.179684653878212,0.358661621809006,0.174020618200302,0.355152308940887,0.171101242303848,0.361624032258987,0.195626020431519,0.374121904373169,0.219315245747566,0.389587253332138,0.20677687227726,0.374066203832626,0.223615810275078,0.392486363649368,0.234248876571655,0.417287141084671,0.245802313089371,0.422577708959579,0.246380865573883,0.392387628555298,0.238174721598625,0.38826048374176,0.279528319835663,0.426279485225677,0.248384937644005,0.427391022443771,0.264650374650955,0.427202373743057,0.268978804349899,0.428982377052307,0.278894066810608,0.417778342962265,0.281036108732224,0.377385646104813,0.275836676359177,0.349232524633408,0.17725396156311,0.343001306056976,0.183509215712547,0.337714523077011,0.18379533290863,0.363383769989014,0.173737034201622,0.360140293836594,0.190630421042442,0.36190003156662,0.171096175909042,0.369660556316376,0.191849559545517,0.365067541599274,0.193563714623451,0.384687870740891,0.216538920998573,0.376010775566101,0.190201252698898,0.384434670209885,0.22605411708355,0.402242094278336,0.231766268610954,0.410088717937469,0.243966624140739,0.388154149055481,0.289313167333603,0.428351908922195,0.259852290153503,0.431050986051559,0.270357489585876,0.430587649345398,0.276401311159134,0.415902137756348,0.290084153413773,0.384867638349533,0.279289036989212,0.379492253065109,0.279281437397003,0.344535708427429,0.180611357092857,0.365548610687256,0.173524349927902,\r\n0.363307803869247,0.186229825019836,0.359560489654541,0.168445184826851,0.350508630275726,0.170898675918579,0.404039800167084,0.19637168943882,0.393714398145676,0.214647531509399,0.396600842475891,0.235162928700447,0.398423880338669,0.233945041894913,0.416713654994965,0.240610480308533,0.4129878282547,0.242228418588638,0.406938940286636,0.245698496699333,0.427769541740417,0.2421765178442,0.383583933115005,0.286877393722534,0.387792080640793,0.292361676692963,0.430281281471252,0.249952226877213,0.430468648672104,0.263641387224197,0.431007951498032,0.267054498195648,0.430982649326324,0.273494601249695,0.436975836753845,0.278664916753769,0.40255606174469,0.291486859321594,0.344548344612122,0.175798058509827,0.340623795986176,0.178730100393295,0.367589384317398,0.179715037345886,0.365898042917252,0.158631220459938,0.361325263977051,0.15899583697319,0.351207464933395,0.166295528411865,0.345723181962967,0.173078715801239,0.376415878534317,0.184961304068565,0.366551280021667,0.185255020856857,0.401715457439423,0.222497940063477,0.400750756263733,0.205112084746361,0.384657502174377,0.185203105211258,0.419514030218124,0.23890645802021,0.431050986051559,0.246171981096268,0.382396429777145,0.289494186639786,0.432499289512634,0.2522993683815,0.431476384401321,0.259911775588989,0.433658927679062,0.268387585878372,0.434466630220413,0.271396845579147,0.434778064489365,0.274728953838348,0.437578439712524,0.282390713691711,0.426645338535309,0.290457606315613,0.405202001333237,0.297269910573959,0.379672020673752,0.285458207130432,0.368607252836227,0.173314183950424,0.368047684431076,0.159876957535744,0.357666552066803,0.157501965761185,0.364649772644043,0.155856177210808,0.351764500141144,0.162796333432198,0.346629649400711,0.167943850159645,0.345500379800797,0.170653074979782,0.37084299325943,0.185309454798698,0.411778807640076,0.208660662174225,0.404569000005722,0.182763546705246,0.410016566514969,0.216755405068398,0.404837399721146,0.230171114206314,0.432258754968643,0.241908118128777,0.42150416970253,0.237720221281052,0.387035012245178,\r\n0.29721674323082,0.382872432470322,0.293135195970535,0.434114694595337,0.246693566441536,0.433707058429718,0.263718605041504,0.438272207975388,0.276424109935761,0.43284872174263,0.284040302038193,0.444116026163101,0.281789362430573,0.430023014545441,0.298537164926529,0.341423898935318,0.173096433281899,0.3730508685112,0.172425463795662,0.370280891656876,0.164295271039009,0.365460008382797,0.150716245174408,0.362735599279404,0.150989696383476,0.346059948205948,0.164566189050674,0.372015297412872,0.179499819874763,0.377276748418808,0.174757421016693,0.413817048072815,0.194197982549667,0.412984043359756,0.186813458800316,0.395139902830124,0.17833511531353,0.413786679506302,0.221821904182434,0.408196061849594,0.227327704429626,0.433193057775497,0.238001272082329,0.433228492736816,0.233334824442863,0.37934285402298,0.28735214471817,0.380720257759094,0.29045507311821,0.435243964195251,0.250130742788315,0.436474502086639,0.269544720649719,0.437467038631439,0.271175295114517,0.442399352788925,0.276795029640198,0.448136806488037,0.283704817295074,0.446678400039673,0.288652300834656,0.45098277926445,0.294746786355972,0.417780876159668,0.302149057388306,0.39081272482872,0.30011460185051,0.37220773100853,0.152587383985519,0.369440287351608,0.151301130652428,0.352855801582336,0.156785413622856,0.358960390090942,0.151037812232971,0.347829818725586,0.160894811153412,0.342388570308685,0.168602168560028,0.416644006967545,0.201904073357582,0.414950132369995,0.182088777422905,0.399145483970642,0.17167092859745,0.416775673627853,0.220039397478104,0.411892741918564,0.222956240177155,0.435600966215134,0.242503136396408,0.436834037303925,0.239657193422318,0.425155282020569,0.233344957232475,0.383708000183105,0.296635657548904,0.436006098985672,0.247794985771179,0.434540063142776,0.252814650535584,0.45088654756546,0.282695829868317,0.454046458005905,0.301928758621216,0.440778881311417,0.303383380174637,0.400581121444702,0.304674685001373,0.385855108499527,0.300279170274735,0.37465363740921,0.164507955312729,0.376357644796371,0.153592586517334,\r\n0.370194792747498,0.147422134876251,0.354372441768646,0.149959191679955,0.360378295183182,0.142548069357872,0.365184009075165,0.137818336486816,0.344143241643906,0.160249158740044,0.341793566942215,0.164120554924011,0.433236092329025,0.197849094867706,0.434145092964172,0.211131870746613,0.430959850549698,0.19170144200325,0.408765763044357,0.175980374217033,0.422562539577484,0.216599687933922,0.438170939683914,0.244486942887306,0.438403874635696,0.235221162438393,0.42834684252739,0.230496481060982,0.433947592973709,0.255231410264969,0.458560973405838,0.29069310426712,0.454456657171249,0.282879382371902,0.461429715156555,0.29884734749794,0.427956908941269,0.310478001832962,0.411823123693466,0.309639900922775,0.386596977710724,0.303449213504791,0.390293687582016,0.305363386869431,0.373539566993713,0.145538344979286,0.367250114679337,0.140671879053116,0.349647760391235,0.148936256766319,0.344753444194794,0.155364960432053,0.406435072422028,0.166586712002754,0.440171211957932,0.207325041294098,0.425649017095566,0.2145766466856,0.422700524330139,0.179140284657478,0.41826069355011,0.171017676591873,0.420321732759476,0.2181745916605,0.439173609018326,0.240496546030045,0.439441978931427,0.231706768274307,0.441173851490021,0.236698567867279,0.438869774341583,0.228824108839035,0.433415859937668,0.25806850194931,0.454806059598923,0.285775989294052,0.464361757040024,0.294259399175644,0.451466381549835,0.306430637836456,0.461305648088455,0.301593273878098,0.406721174716949,0.31200984120369,0.380039155483246,0.161586046218872,0.378041416406631,0.144702792167664,0.355375111103058,0.143639355897903,0.36214816570282,0.13350635766983,0.368926286697388,0.130835115909576,0.444561660289764,0.193577647209167,0.44442492723465,0.203328311443329,0.437970906496048,0.210578635334969,0.437867105007172,0.180758222937584,0.440143346786499,0.242182835936546,0.443675458431244,0.231511801481247,0.430828183889389,0.228635475039482,0.461860150098801,0.285639256238937,0.469253540039063,0.28916123509407,0.457467168569565,0.305671036243439,0.469233304262161,\r\n0.300244987010956,0.441616952419281,0.315383732318878,0.415236234664917,0.316758573055267,0.386954009532928,0.305874854326248,0.394046068191528,0.310357719659805,0.383366167545319,0.146470114588737,0.371412694454193,0.140466779470444,0.374385237693787,0.141927734017372,0.345487713813782,0.149138823151588,0.351384699344635,0.137003034353256,0.357453882694244,0.133663341403008,0.367242515087128,0.126464918255806,0.407935261726379,0.160585910081863,0.447344303131104,0.186195656657219,0.448091238737106,0.197041392326355,0.449088841676712,0.2062097042799,0.442723453044891,0.209479764103889,0.435522466897964,0.174922004342079,0.416817456483841,0.165295407176018,0.440796613693237,0.241332098841667,0.444802194833755,0.234342560172081,0.43433752655983,0.226457968354225,0.459216773509979,0.282559096813202,0.482485681772232,0.291667908430099,0.4519322514534,0.309481680393219,0.467683732509613,0.303369462490082,0.463105887174606,0.304407566785812,0.44687083363533,0.311759173870087,0.436054199934006,0.31720295548439,0.405088067054749,0.319851398468018,0.389797419309616,0.30787006020546,0.392704129219055,0.314392447471619,0.390005022287369,0.153445720672607,0.369513690471649,0.138534873723984,0.379011154174805,0.13898304104805,0.346184015274048,0.143484905362129,0.34292283654213,0.151845514774323,0.36361163854599,0.124327927827835,0.358671754598618,0.125257164239883,0.369809955358505,0.126801669597626,0.464544057846069,0.188166797161102,0.463602155447006,0.194908201694489,0.44853687286377,0.208199843764305,0.454147756099701,0.205283001065254,0.456778466701508,0.202086374163628,0.444657862186432,0.169749155640602,0.457520335912704,0.176271542906761,0.445265561342239,0.228268340229988,0.440718114376068,0.225637599825859,0.467379868030548,0.285067021846771,0.466139197349548,0.283211082220078,0.472405880689621,0.283985882997513,0.45673543214798,0.309437364339828,0.47231724858284,0.304560750722885,0.477100163698196,0.300165235996246,0.445865631103516,0.315116584300995,0.440300345420837,0.318995594978333,0.428473442792892,0.323773443698883,\r\n0.41464376449585,0.32667002081871,0.38826048374176,0.30875626206398,0.390144288539886,0.311279386281967,0.399029016494751,0.145112976431847,0.375803142786026,0.133412674069405,0.372673600912094,0.132896155118942,0.389736652374268,0.132435336709023,0.343403905630112,0.143998891115189,0.351604998111725,0.133189871907234,0.346781551837921,0.137894287705421,0.36923012137413,0.119942530989647,0.353357136249542,0.130764231085777,0.404834866523743,0.153957188129425,0.41885569691658,0.160046607255936,0.468180000782013,0.182868629693985,0.470008075237274,0.201060920953751,0.455084562301636,0.210583701729774,0.439203977584839,0.166017010807991,0.447493702173233,0.2313282340765,0.43674036860466,0.224651396274567,0.464949190616608,0.281328558921814,0.483898520469666,0.28183114528656,0.459490239620209,0.308023244142532,0.454613626003265,0.312193423509598,0.450471311807632,0.313774645328522,0.492725014686584,0.291537493467331,0.445255428552628,0.318034708499908,0.435066729784012,0.321735203266144,0.419436782598495,0.325623065233231,0.398016214370728,0.320966750383377,0.397041410207748,0.317000389099121,0.390437990427017,0.314601331949234,0.370731592178345,0.131551668047905,0.386237442493439,0.13039456307888,0.381089925765991,0.130698397755623,0.347910821437836,0.134703993797302,0.36511817574501,0.117625772953033,0.359261691570282,0.120524890720844,0.353876173496246,0.126280084252357,0.372731864452362,0.117737181484699,0.475456893444061,0.189394816756248,0.472702115774155,0.19935816526413,0.459272474050522,0.207209840416908,0.465037792921066,0.174210518598557,0.462194383144379,0.167953982949257,0.450235843658447,0.227372005581856,0.439523011445999,0.222758740186691,0.469759941101074,0.279977738857269,0.47675833106041,0.281399458646774,0.492484480142593,0.281410843133926,0.461571514606476,0.306321740150452,0.483630150556564,0.304444283246994,0.488071233034134,0.301140040159225,0.449714243412018,0.316529452800751,0.443726092576981,0.320790767669678,0.439874947071075,0.321987122297287,0.432570189237595,0.326407968997955,0.426316201686859,\r\n0.328286707401276,0.419812798500061,0.328834861516953,0.404624700546265,0.325743317604065,0.393030762672424,0.317415624856949,0.415918618440628,0.151589781045914,0.397930145263672,0.135093912482262,0.375084072351456,0.125107780098915,0.393704265356064,0.128412008285522,0.378413617610931,0.123821534216404,0.344474941492081,0.134519159793854,0.346627116203308,0.132045403122902,0.348536223173141,0.129374161362648,0.370566993951797,0.114053145051003,0.353377372026443,0.122145362198353,0.374208003282547,0.120314732193947,0.436350435018539,0.157686799764633,0.487017929553986,0.182783797383308,0.482024878263474,0.209135413169861,0.459312975406647,0.210891336202621,0.470144808292389,0.206276804208755,0.472929984331131,0.17393958568573,0.451144814491272,0.223495543003082,0.451686650514603,0.230234414339066,0.482597082853317,0.277279913425446,0.488256067037582,0.277325481176376,0.452945053577423,0.314787447452545,0.481391876935959,0.308475196361542,0.502303540706635,0.286843210458755,0.499024599790573,0.300910919904709,0.447681069374084,0.319776713848114,0.438297539949417,0.324716597795486,0.417306125164032,0.330809831619263,0.409212648868561,0.327576488256454,0.40017095208168,0.324331730604172,0.417190939188004,0.144781276583672,0.38352569937706,0.123051807284355,0.387483179569244,0.121023692190647,0.36009219288826,0.115139365196228,0.366239845752716,0.112906157970428,0.355544745922089,0.118876568973064,0.348961591720581,0.125492632389069,0.373980104923248,0.114668413996696,0.376767843961716,0.118780352175236,0.427104920148849,0.156296730041504,0.481303244829178,0.192519277334213,0.492583245038986,0.208350494503975,0.463247686624527,0.208916395902634,0.4568772315979,0.214023396372795,0.463495820760727,0.158962920308113,0.455621361732483,0.225722432136536,0.455038994550705,0.228868409991264,0.443093121051788,0.22020523250103,0.472922384738922,0.279156118631363,0.478763669729233,0.277012795209885,0.49335041642189,0.272898316383362,0.49575075507164,0.306234389543533,0.490861475467682,0.309456348419189,0.478576302528381,0.310307085514069,\r\n0.510266602039337,0.278849750757217,0.500553905963898,0.295589953660965,0.442308187484741,0.324122846126556,0.435821264982224,0.328829795122147,0.431805521249771,0.330281913280487,0.425528734922409,0.331038951873779,0.413423329591751,0.329389363527298,0.397441476583481,0.323611408472061,0.39427649974823,0.320337533950806,0.429926812648773,0.147320866584778,0.408112496137619,0.134878695011139,0.409588664770126,0.13878807425499,0.376167744398117,0.120372973382473,0.39395746588707,0.124391227960587,0.383518099784851,0.119489312171936,0.344381242990494,0.131219983100891,0.345221877098084,0.128386691212654,0.372134298086166,0.108824603259563,0.351485997438431,0.115397624671459,0.347566485404968,0.120811007916927,0.375418275594711,0.11071852594614,0.43830007314682,0.152815267443657,0.501032471656799,0.188054129481316,0.482731282711029,0.174473837018013,0.486625492572784,0.198433980345726,0.490443706512451,0.212757408618927,0.473046451807022,0.209816515445709,0.463612288236618,0.211862355470657,0.462814718484879,0.215694516897202,0.468017935752869,0.210848301649094,0.478829503059387,0.166900679469109,0.458631873130798,0.221302852034569,0.444941461086273,0.219712764024735,0.487716764211655,0.274257987737656,0.480860143899918,0.275346755981445,0.50680285692215,0.273054033517838,0.492613613605499,0.312637776136398,0.474398523569107,0.308528363704681,0.482647746801376,0.311916172504425,0.512226343154907,0.28762811422348,0.511841475963593,0.294135332107544,0.508782863616943,0.300891906023026,0.506524324417114,0.30660405755043,0.445098429918289,0.323012590408325,0.439900279045105,0.327052354812622,0.433750092983246,0.32771572470665,0.421442121267319,0.143454521894455,0.401996493339539,0.129837527871132,0.389873385429382,0.11895252764225,0.380958259105682,0.117175079882145,0.361522763967514,0.109432272613049,0.35660058259964,0.111822463572025,0.368159085512161,0.10679142177105,0.345713078975677,0.12354301661253,0.378147751092911,0.115739442408085,0.377056479454041,0.112323798239231,0.494259417057037,0.182222962379456,0.494872152805328,\r\n0.193083912134171,0.499239802360535,0.217003539204597,0.477674931287766,0.21169650554657,0.498885333538055,0.201133072376251,0.459778875112534,0.218594893813133,0.454768091440201,0.152058199048042,0.483559250831604,0.16004154086113,0.4655821621418,0.224209561944008,0.449954777956009,0.218539193272591,0.459611773490906,0.228035390377045,0.482754081487656,0.273683220148087,0.489504337310791,0.267302632331848,0.498806834220886,0.26547709107399,0.500247538089752,0.309189230203629,0.49830549955368,0.312356740236282,0.487033128738403,0.313513845205307,0.469030737876892,0.306074887514114,0.525298953056335,0.273747801780701,0.523650646209717,0.280237257480621,0.429146945476532,0.143753290176392,0.417942941188812,0.139471709728241,0.407839059829712,0.132080852985382,0.385685473680496,0.117466256022453,0.398608714342117,0.125231847167015,0.394947469234467,0.121021158993244,0.376623511314392,0.107586458325386,0.372534364461899,0.105500109493732,0.347262650728226,0.117332063615322,0.355481445789337,0.108584061264992,0.379553020000458,0.110429875552654,0.43649223446846,0.149404674768448,0.501824975013733,0.182259678840637,0.517518222332001,0.191274806857109,0.50349098443985,0.211383804678917,0.488537132740021,0.216016069054604,0.504620254039764,0.206906005740166,0.473056584596634,0.212918192148209,0.468220502138138,0.21441712975502,0.464574456214905,0.220555916428566,0.447832971811295,0.149581924080849,0.472251415252686,0.156534746289253,0.496933192014694,0.163214117288589,0.464675724506378,0.227061837911606,0.457269668579102,0.215659067034721,0.460189044475555,0.230676248669624,0.484840422868729,0.270549893379211,0.494484752416611,0.262272864580154,0.51138573884964,0.262651383876801,0.496528059244156,0.316248387098312,0.491712242364883,0.315388768911362,0.521928906440735,0.266617745161057,0.526418089866638,0.292204678058624,0.52344810962677,0.301371723413467,0.517971396446228,0.306782573461533,0.504324018955231,0.311366736888886,0.434431195259094,0.146004229784012,0.413090378046036,0.13444572687149,0.404199331998825,0.127794206142426,\r\n0.387351512908936,0.115458391606808,0.392007827758789,0.117294080555439,0.383644700050354,0.114182271063328,0.361813932657242,0.102813675999641,0.374590337276459,0.102221190929413,0.348285555839539,0.11272132396698,0.349764227867126,0.109260104596615,0.508863866329193,0.172696381807327,0.518141090869904,0.18793386220932,0.497475028038025,0.169194653630257,0.516596555709839,0.196552723646164,0.505974888801575,0.216450303792953,0.495226621627808,0.218670859932899,0.481715977191925,0.21662375330925,0.509610831737518,0.204579100012779,0.478006601333618,0.214960232377052,0.46902060508728,0.218798726797104,0.454866826534271,0.1480323523283,0.48029550909996,0.151306197047234,0.469476372003555,0.222554922103882,0.4716437458992,0.229315310716629,0.467091232538223,0.230496481060982,0.485407590866089,0.267806500196457,0.490147471427917,0.256331562995911,0.50368595123291,0.25636699795723,0.519239962100983,0.258848339319229,0.500802040100098,0.316073685884476,0.526283919811249,0.267609000205994,0.529745161533356,0.27161967754364,0.527694225311279,0.284887254238129,0.425751566886902,0.139983177185059,0.43275249004364,0.142664536833763,0.418354362249374,0.136808067560196,0.40991148352623,0.130450263619423,0.399084717035294,0.122203595936298,0.357355117797852,0.105006366968155,0.368417352437973,0.0978484600782394,0.377975583076477,0.104925349354744,0.380806356668472,0.108594186604023,0.352349400520325,0.104418948292732,0.439563512802124,0.147771552205086,0.513922810554504,0.178114831447601,0.519136130809784,0.182871162891388,0.502680778503418,0.21892911195755,0.508765161037445,0.213471427559853,0.51213264465332,0.208815112709999,0.491590708494186,0.220644533634186,0.500746369361877,0.222166255116463,0.474535256624222,0.217668190598488,0.449483841657639,0.146237164735794,0.498437166213989,0.157243698835373,0.511243939399719,0.166295528411865,0.474522590637207,0.224615946412086,0.480338573455811,0.230050846934319,0.465344160795212,0.232001736760139,0.485597491264343,0.26609867811203,0.486015260219574,0.260727077722549,0.496836960315704,\r\n0.252703219652176,0.50247061252594,0.314002513885498,0.523237943649292,0.259891539812088,0.526980221271515,0.263313502073288,0.530205965042114,0.293858081102371,0.531803667545319,0.28388711810112,0.523002445697784,0.306033104658127,0.515955984592438,0.311009705066681,0.437922805547714,0.144644558429718,0.414223432540894,0.132215052843094,0.406938940286636,0.126639634370804,0.384611904621124,0.1096196398139,0.389941722154617,0.114058203995228,0.395410805940628,0.116402819752693,0.3570436835289,0.102137632668018,0.363355934619904,0.0988536551594734,0.383095264434814,0.103953063488007,0.382695198059082,0.100550085306168,0.349293291568756,0.106285020709038,0.44492119550705,0.147060066461563,0.517224490642548,0.172119095921516,0.516039490699768,0.199513882398605,0.500781774520874,0.223619610071182,0.49243637919426,0.224761545658112,0.513836681842804,0.207193374633789,0.473937720060349,0.221412986516953,0.451833516359329,0.144330590963364,0.482655316591263,0.142950654029846,0.504265785217285,0.153574854135513,0.514429152011871,0.162019014358521,0.471066445112228,0.232028320431709,0.478467434644699,0.232352420687675,0.484415054321289,0.256853133440018,0.491064041852951,0.251984149217606,0.514170944690704,0.252484202384949,0.505876123905182,0.314865916967392,0.524197578430176,0.255040258169174,0.530056595802307,0.265810042619705,0.533226609230042,0.275037854909897,0.528550028800964,0.299981683492661,0.526810586452484,0.304129064083099,0.520343899726868,0.310841351747513,0.509937465190887,0.313402444124222,0.42099142074585,0.135466113686562,0.428154408931732,0.138246238231659,0.436352968215942,0.14174796640873,0.401885092258453,0.119522228837013,0.358378052711487,0.0989827811717987,0.36199876666069,0.0959925130009651,0.384913206100464,0.107085131108761,0.382221728563309,0.094336599111557,0.518399298191071,0.175071388483047,0.519518435001373,0.180008754134178,0.515783786773682,0.20192939043045,0.484192252159119,0.225119814276695,0.514844417572021,0.206113487482071,0.448157072067261,0.143057003617287,0.455818861722946,0.14505472779274,\r\n0.443910926580429,0.144295141100883,0.487359762191772,0.147108167409897,0.46885097026825,0.145150944590569,0.515145719051361,0.164097771048546,0.484870821237564,0.228755742311478,0.475611358880997,0.233988076448441,0.486050724983215,0.235371813178062,0.48329085111618,0.252151250839233,0.489808171987534,0.248681172728539,0.499034732580185,0.249382540583611,0.520062863826752,0.253359019756317,0.527598023414612,0.258224219083786,0.53335827589035,0.270846158266068,0.531221270561218,0.261644929647446,0.534259676933289,0.291734993457794,0.53294050693512,0.297615528106689,0.535748481750488,0.280765175819397,0.525959849357605,0.308381527662277,0.513330280780792,0.315095067024231,0.417954325675964,0.129865378141403,0.410717904567719,0.126042082905769,0.387999713420868,0.110872976481915,0.392990231513977,0.112911216914654,0.398618847131729,0.115422949194908,0.353579938411713,0.0997980833053589,0.368333786725998,0.094825267791748,0.389529019594193,0.106160953640938,0.390503823757172,0.103492245078087,0.398798614740372,0.0959216207265854,0.373633235692978,0.0939593315124512,0.498875200748444,0.227498605847359,0.494380950927734,0.229303911328316,0.451757550239563,0.142072066664696,0.460108041763306,0.144178673624992,0.502283275127411,0.14129726588726,0.47073221206665,0.142178401350975,0.506567358970642,0.147320866584778,0.509182929992676,0.156033411622047,0.494669586420059,0.232557505369186,0.481427311897278,0.236193433403969,0.495175987482071,0.235866814851761,0.483437716960907,0.246498599648476,0.515431821346283,0.249007806181908,0.509590566158295,0.315709084272385,0.524625480175018,0.250063627958298,0.527800559997559,0.253274202346802,0.533287405967712,0.264985889196396,0.536032021045685,0.272900849580765,0.534973680973053,0.284846752882004,0.531785905361176,0.300937503576279,0.535996615886688,0.275872141122818,0.52982360124588,0.304787367582321,0.515892684459686,0.313269525766373,0.426287084817886,0.135326862335205,0.434902131557465,0.13866400718689,0.441285282373428,0.141416281461716,0.407693475484848,0.122185871005058,0.404270231723785,\r\n0.118008099496365,0.35087576508522,0.10177556425333,0.355985313653946,0.096488781273365,0.364849776029587,0.0908373966813087,0.390184819698334,0.109146162867546,0.391192525625229,0.100486785173416,0.39729967713356,0.0930250287055969,0.373653501272202,0.0909513384103775,0.503921449184418,0.228330373764038,0.444440126419067,0.139091923832893,0.456269532442093,0.142783552408218,0.490595638751984,0.132516354322433,0.465035259723663,0.14309498667717,0.47556072473526,0.138347506523132,0.511790871620178,0.151969581842422,0.512418806552887,0.153863504528999,0.486329227685928,0.238074705004692,0.490142405033112,0.240090161561966,0.478510469198227,0.237592354416847,0.489625871181488,0.244966760277748,0.512428939342499,0.244060307741165,0.520845234394073,0.248091220855713,0.530755400657654,0.25519722700119,0.530866801738739,0.258260935544968,0.535611748695374,0.269326955080032,0.533535540103912,0.260573893785477,0.537703156471252,0.286379873752594,0.536573886871338,0.293607413768768,0.534963548183441,0.29859921336174,0.538194358348846,0.281091809272766,0.519158899784088,0.312970727682114,0.421800404787064,0.130956664681435,0.413367629051209,0.124763429164886,0.395200669765472,0.111328728497028,0.401112854480743,0.113615110516548,0.349480658769608,0.103985980153084,0.354190140962601,0.095096193253994,0.357909619808197,0.0932934209704399,0.368407219648361,0.0915210321545601,0.397132575511932,0.109085395932198,0.399988651275635,0.106350854039192,0.390625357627869,0.0908779129385948,0.410679936408997,0.0930073037743568,0.378909885883331,0.0898701772093773,0.500460207462311,0.23176246881485,0.448529273271561,0.138233572244644,0.457839369773865,0.141150414943695,0.480946242809296,0.134724244475365,0.502551674842834,0.134070992469788,0.50972980260849,0.143821656703949,0.461146146059036,0.141593515872955,0.470787942409515,0.13958565890789,0.46642279624939,0.140355378389359,0.500184237957001,0.235026195645332,0.484258085489273,0.24020029604435,0.500827372074127,0.243242472410202,0.483349084854126,0.24749493598938,0.518237292766571,0.24066998064518,\r\n0.524795114994049,0.2464669495821,0.527939856052399,0.248847022652626,0.529945194721222,0.251805633306503,0.535074949264526,0.264669388532639,0.53763735294342,0.275285989046097,0.428286075592041,0.133741840720177,0.437145471572876,0.136932134628296,0.418588578701019,0.12699156999588,0.409620314836502,0.120443865656853,0.406794607639313,0.116382569074631,0.386959046125412,0.0880724713206291,0.40134072303772,0.087277427315712,0.410464704036713,0.0978332683444023,0.404472768306732,0.0992334485054016,0.375111907720566,0.0881155133247375,0.370146691799164,0.0883180722594261,0.505212783813477,0.233726024627686,0.443305790424347,0.136468783020973,0.452831119298935,0.137815803289413,0.485184788703918,0.131832718849182,0.500609636306763,0.12642440199852,0.508962631225586,0.141801133751869,0.462817251682281,0.139894559979439,0.476246893405914,0.135534480214119,0.471547514200211,0.136005431413651,0.481191843748093,0.243418455123901,0.485161989927292,0.243581756949425,0.522080838680267,0.241548582911491,0.532429039478302,0.256435364484787,0.538908362388611,0.287814229726791,0.424750149250031,0.12963242828846,0.415323585271835,0.122580863535404,0.405961573123932,0.112921349704266,0.415299534797668,0.094830334186554,0.411509156227112,0.0879813209176064,0.407539010047913,0.108239710330963,0.383118033409119,0.0865304991602898,0.510210871696472,0.232776522636414,0.446334034204483,0.13481792807579,0.45014214515686,0.13617254793644,0.45772796869278,0.136613100767136,0.461634814739227,0.137739837169647,0.487883865833282,0.127290353178978,0.481493145227432,0.130617365241051,0.505934357643127,0.131513699889183,0.506711721420288,0.133711457252502,0.476768463850021,0.132559403777123,0.46746090054512,0.137466385960579,0.464893490076065,0.137005567550659,0.47204378247261,0.234317243099213,0.523744344711304,0.23662893474102,0.527448654174805,0.24569596350193,0.526547253131866,0.242296785116196,0.435598433017731,0.133526623249054,0.422724574804306,0.126031950116158,0.411230653524399,0.117256097495556,0.394993036985397,0.0844466760754585,0.416097104549408,\r\n0.0897714346647263,0.414958983659744,0.0991245731711388,0.401236921548843,0.0834364145994186,0.506982624530792,0.23653145134449,0.510886907577515,0.230935782194138,0.440913081169128,0.132997438311577,0.451473981142044,0.13390389084816,0.456477165222168,0.134053274989128,0.493036448955536,0.121200926601887,0.504123985767365,0.124006368219852,0.469795405864716,0.133997574448586,0.517229557037354,0.234346359968185,0.526972591876984,0.239122942090034,0.433314591646194,0.129865378141403,0.420602768659592,0.122233979403973,0.416393339633942,0.118441067636013,0.412177592515945,0.112604849040508,0.419676065444946,0.0911868140101433,0.418968379497528,0.097537025809288,0.412972658872604,0.108903095126152,0.417007356882095,0.0851556286215782,0.411990225315094,0.0826312452554703,0.515219151973724,0.231739684939384,0.446559399366379,0.132215052843094,0.459864944219589,0.13387855887413,0.483007282018662,0.125069797039032,0.478447169065475,0.128961458802223,0.50285804271698,0.121426276862621,0.487769931554794,0.12260364741087,0.462776750326157,0.134709060192108,0.474545389413834,0.130632564425468,0.528299391269684,0.231296584010124,0.527861356735229,0.235283195972443,0.529580533504486,0.239695176482201,0.430458515882492,0.125933200120926,0.417042821645737,0.114468388259411,0.420162200927734,0.087277427315712,0.418987363576889,0.0944100245833397,0.418656945228577,0.101380571722984,0.406918674707413,0.0798688530921936,0.513401210308075,0.228372141718864,0.441746085882187,0.129531145095825,0.455975830554962,0.131640285253525,0.451038479804993,0.130095779895782,0.497687697410584,0.119886830449104,0.489744871854782,0.117509298026562,0.465351760387421,0.131308600306511,0.467909067869186,0.131111115217209,0.522004842758179,0.227997407317162,0.530702233314514,0.237002402544022,0.421429455280304,0.116499036550522,0.43004834651947,0.122570730745792,0.417387157678604,0.111505970358849,0.4227195084095,0.0888649821281433,0.421306669712067,0.0940150320529938,0.421364903450012,0.0965343564748764,0.421423137187958,0.100370310246944,0.417732775211334,\r\n0.108267560601234,0.421853572130203,0.0836465656757355,0.418030291795731,0.0799726620316505,0.401943325996399,0.081038624048233,0.412377625703812,0.0793067514896393,0.515826821327209,0.22572748363018,0.462194383144379,0.130543947219849,0.48083484172821,0.123203724622726,0.484617620706558,0.121005967259407,0.476196259260178,0.127637222409248,0.501703441143036,0.11879301071167,0.493236482143402,0.117757432162762,0.470782876014709,0.127568870782852,0.533282339572906,0.227893605828285,0.532775938510895,0.233284190297127,0.532401204109192,0.237944304943085,0.439426809549332,0.124148160219193,0.42524516582489,0.120686940848827,0.421520620584488,0.112956792116165,0.425327450037003,0.0859582647681236,0.421359837055206,0.0920426249504089,0.421462386846542,0.104558207094669,0.39819347858429,0.0812437161803246,0.408398628234863,0.0763772502541542,0.451271414756775,0.12340122461319,0.458895206451416,0.128333523869514,0.497464895248413,0.116919346153736,0.491681843996048,0.113184675574303,0.48651659488678,0.117086455225945,0.467622965574265,0.126664951443672,0.527468860149384,0.2243272960186,0.534031808376312,0.230412930250168,0.534472346305847,0.235349029302597,0.444511026144028,0.125300213694572,0.425059050321579,0.117937207221985,0.429364711046219,0.118046082556248,0.434150159358978,0.121013559401035,0.425346434116364,0.115027956664562,0.420724302530289,0.109913349151611,0.422106772661209,0.107133239507675,0.423067659139633,0.0807373225688934,0.425452798604965,0.0831857472658157,0.413442343473434,0.076734259724617,0.405285537242889,0.0780331641435623,0.458750873804092,0.124644428491592,0.463333785533905,0.12674343585968,0.499936103820801,0.114817805588245,0.49449235200882,0.114156953990459,0.472008347511292,0.123426541686058,0.535677552223206,0.223915860056877,0.53744238615036,0.230117946863174,0.536209285259247,0.232744872570038,0.442009419202805,0.122180804610252,0.423201858997345,0.109224654734135,0.423425942659378,0.0776609629392624,0.427297323942184,0.083998516201973,0.418317675590515,0.0756961405277252,0.403487831354141,\r\n0.074126310646534,0.412549793720245,0.0738224759697914,0.518257558345795,0.224174112081528,0.45581379532814,0.121162950992584,0.447701305150986,0.120978116989136,0.464483290910721,0.123193599283695,0.475031524896622,0.123689867556095,0.469180107116699,0.121659219264984,0.5342698097229,0.215332433581352,0.539470493793488,0.226376935839653,0.427063137292862,0.0796941444277763,0.403401762247086,0.0774102956056595,0.406571805477142,0.071847528219223,0.520331203937531,0.222694173455238,0.463133752346039,0.119557671248913,0.450600445270538,0.11980327218771,0.47430232167244,0.119367770850658,0.540852963924408,0.220117881894112,0.526268720626831,0.215952768921852,0.539860427379608,0.223372742533684,0.541597366333008,0.228711426258087,0.424099445343018,0.0750074461102486,0.428106307983398,0.0771267116069794,0.431921988725662,0.0796561613678932,0.41841134428978,0.0727337226271629,0.40094318985939,0.0756682902574539,0.402300328016281,0.0691560357809067,0.412404209375381,0.0701612308621407,0.456031531095505,0.117190271615982,0.478786468505859,0.115987576544285,0.470392942428589,0.117701731622219,0.546630918979645,0.213466361165047,0.528780460357666,0.212718158960342,0.542913973331451,0.225935116410255,0.398553013801575,0.0721412375569344,0.40719085931778,0.066740520298481,0.523491144180298,0.218711361289024,0.464921325445175,0.116190135478973,0.482566714286804,0.114498771727085,0.475198656320572,0.115331791341305,0.544767379760742,0.222501739859581,0.53685998916626,0.206684455275536,0.545192778110504,0.219129145145416,0.529337465763092,0.210068449378014,0.424632430076599,0.0720070451498032,0.429724246263504,0.07453902810812,0.433081656694412,0.076324075460434,0.419587463140488,0.0676140561699867,0.398608714342117,0.0668038204312325,0.403019428253174,0.0647478550672531,0.413911998271942,0.0666215196251869,0.524060845375061,0.217925190925598,0.457778602838516,0.115367241203785,0.480510741472244,0.111348986625671,0.478404134511948,0.122444130480289,0.470985412597656,0.114212661981583,0.548598289489746,0.205133616924286,0.550165593624115,\r\n0.216355353593826,0.547304451465607,0.224005743861198,0.433712124824524,0.0784813240170479,0.395524770021439,0.0698725804686546,0.405966639518738,0.0613727197051048,0.41105592250824,0.0634514763951302,0.458786338567734,0.114139229059219,0.484870821237564,0.109171479940414,0.476606428623199,0.110034890472889,0.548661589622498,0.220574900507927,0.529461562633514,0.207507342100143,0.535632014274597,0.203386545181274,0.551467001438141,0.211314186453819,0.425223648548126,0.0664442777633667,0.430187582969666,0.0715614184737206,0.434636294841766,0.0734325498342514,0.436158001422882,0.0768887102603912,0.417980909347534,0.0636970773339272,0.395281672477722,0.0659277588129044,0.400657087564468,0.0615195743739605,0.466587364673615,0.112138964235783,0.482432514429092,0.105512768030167,0.486911594867706,0.110827401280403,0.471815913915634,0.109249971807003,0.529785633087158,0.204767733812332,0.544357180595398,0.199450582265854,0.553188741207123,0.202258542180061,0.554166078567505,0.213014408946037,0.551436603069305,0.218612626194954,0.550532698631287,0.221221834421158,0.430868685245514,0.067763440310955,0.39299276471138,0.0676267147064209,0.396945208311081,0.0629197582602501,0.41241055727005,0.0581165887415409,0.402171224355698,0.0567467883229256,0.462209582328796,0.109384171664715,0.486060857772827,0.106221720576286,0.48919290304184,0.106753438711166,0.47789266705513,0.104806341230869,0.473124951124191,0.104492381215096,0.530233800411224,0.201619222760201,0.530922532081604,0.198741614818573,0.549844026565552,0.199208766222,0.556123316287994,0.204006880521774,0.553793907165527,0.216326236724854,0.555857479572296,0.208730295300484,0.425756633281708,0.0607093386352062,0.435188263654709,0.070454940199852,0.437963306903839,0.0729919895529747,0.398231446743011,0.0579342879354954,0.406673073768616,0.0544502809643745,0.418775945901871,0.059038233011961,0.464936524629593,0.107186406850815,0.487423062324524,0.103444136679173,0.48299714922905,0.101416021585464,0.531682133674622,0.196058988571167,0.545451045036316,0.194818317890167,0.553928077220917,\r\n0.196143805980682,0.557103216648102,0.19827826321125,0.556358814239502,0.213447377085686,0.556875348091125,0.21111162006855,0.431430786848068,0.0598813816905022,0.435821264982224,0.0677355900406837,0.442374020814896,0.074536494910717,0.396565407514572,0.0550655499100685,0.412013024091721,0.0509282909333706,0.401011556386948,0.0494217611849308,0.40431073307991,0.0480266399681568,0.473542720079422,0.100208267569542,0.467815369367599,0.103996112942696,0.550960600376129,0.192568644881248,0.558364152908325,0.203178927302361,0.425718635320663,0.05571373924613,0.436320066452026,0.0649225562810898,0.439761012792587,0.0698016881942749,0.442682921886444,0.0706650912761688,0.408220112323761,0.046573281288147,0.419493764638901,0.0505434311926365,0.491215974092484,0.105191208422184,0.487914264202118,0.100415885448456,0.481191843748093,0.0926097854971886,0.468656003475189,0.101643897593021,0.532348036766052,0.19316366314888,0.547547519207001,0.187997162342072,0.554383873939514,0.190329104661942,0.556520879268646,0.193413063883781,0.558673024177551,0.1994569003582,0.557974219322205,0.210122883319855,0.431987822055817,0.0547667779028416,0.436758100986481,0.0552453212440014,0.441267549991608,0.0671836212277412,0.444384425878525,0.0740351602435112,0.397932678461075,0.0479152351617813,0.412344723939896,0.0449907928705215,0.40148252248764,0.0443907156586647,0.406409740447998,0.0441451109945774,0.491540044546127,0.102362982928753,0.490975439548492,0.0969647914171219,0.49233004450798,0.0917083993554115,0.475137889385223,0.092430017888546,0.469207972288132,0.0994056239724159,0.532806277275085,0.19123175740242,0.54337477684021,0.187337577342987,0.551406264305115,0.188679531216621,0.558288156986237,0.196248888969421,0.425499618053436,0.0496065989136696,0.442933589220047,0.0632160007953644,0.447217702865601,0.0717108026146889,0.398672014474869,0.0420536957681179,0.418037891387939,0.041608065366745,0.494254350662231,0.105368442833424,0.493160516023636,0.0997550413012505,0.476067125797272,0.0876749530434608,0.470187842845917,0.0947467759251595,\r\n0.469997942447662,0.0962659642100334,0.548302054405212,0.181973576545715,0.551583468914032,0.185546189546585,0.554211676120758,0.187103360891342,0.556105613708496,0.189822718501091,0.432104289531708,0.049085009843111,0.442672789096832,0.049457211047411,0.448329240083694,0.0692674368619919,0.446199864149094,0.0662062764167786,0.449180006980896,0.0747415870428085,0.410667270421982,0.041238397359848,0.402550995349884,0.0400863438844681,0.501055240631104,0.0967875570058823,0.50023490190506,0.0993448570370674,0.495646923780441,0.103117510676384,0.485184788703918,0.0819881185889244,0.469410538673401,0.0885434225201607,0.538903295993805,0.184852436184883,0.544098973274231,0.183112964034081,0.437649339437485,0.0480671525001526,0.431739687919617,0.0431677661836147,0.448625475168228,0.0601447075605392,0.42415389418602,0.038676030933857,0.451673984527588,0.0650035813450813,0.451190382242203,0.0731844156980515,0.405293136835098,0.0410459637641907,0.401183724403381,0.0324650779366493,0.412175059318542,0.0378075614571571,0.49914613366127,0.0844036340713501,0.500017106533051,0.102195873856544,0.472917318344116,0.0822084024548531,0.471312046051025,0.08450997620821,0.533044338226318,0.185703173279762,0.551203668117523,0.182759746909142,0.544926881790161,0.179583370685577,0.553431808948517,0.183429464697838,0.44266265630722,0.0443577989935875,0.447255700826645,0.0516245886683464,0.416331321001053,0.0348704606294632,0.452453851699829,0.0682369247078896,0.452856421470642,0.0712727680802345,0.454165458679199,0.076835535466671,0.406619906425476,0.038622859865427,0.39650970697403,0.0400508977472782,0.403594195842743,0.0364048406481743,0.51066666841507,0.103641629219055,0.508291661739349,0.0903487280011177,0.508073925971985,0.106031820178032,0.499905735254288,0.104907624423504,0.470813244581223,0.0789548009634018,0.492876946926117,0.0813500583171844,0.465445458889008,0.0827198624610901,0.540526330471039,0.178000882267952,0.535988986492157,0.178555399179459,0.551330268383026,0.180003687739372,0.548469126224518,0.177798330783844,0.437401205301285,\r\n0.0421271212399006,0.429648280143738,0.035278107970953,0.448969841003418,0.0492445230484009,0.453360289335251,0.0548452697694302,0.462523549795151,0.0663100853562355,0.422525823116302,0.0318877846002579,0.461941182613373,0.0693180784583092,0.455621361732483,0.0751264467835426,0.399484783411026,0.0304749384522438,0.404822200536728,0.0316447168588638,0.408347994089127,0.0355363711714745,0.517761290073395,0.103061810135841,0.508524596691132,0.0877053365111351,0.505151987075806,0.107457332313061,0.46739000082016,0.0802005380392075,0.476540595293045,0.0783040821552277,0.50227564573288,0.0819552019238472,0.486192524433136,0.0785851329565048,0.53214293718338,0.183083847165108,0.545481383800507,0.174453586339951,0.442095518112183,0.0382177419960499,0.447027802467346,0.0425499640405178,0.453264087438583,0.0594205595552921,0.463364154100418,0.0636666938662529,0.418399959802628,0.0312193427234888,0.457517802715302,0.0732705071568489,0.460146009922028,0.0715107768774033,0.458095103502274,0.0789801254868507,0.40262696146965,0.0270795505493879,0.410964787006378,0.0329638794064522,0.519315898418427,0.111229985952377,0.518136024475098,0.0916045904159546,0.522349238395691,0.0964609310030937,0.511666774749756,0.115159623324871,0.463278084993362,0.0754935815930367,0.467410266399384,0.074394702911377,0.490983009338379,0.0775774046778679,0.460877746343613,0.0776660293340683,0.541759371757507,0.172162130475044,0.530074298381805,0.174937188625336,0.550626397132874,0.176091775298119,0.548691987991333,0.173023015260696,0.433603227138519,0.0289152376353741,0.428027808666229,0.0276062022894621,0.454097092151642,0.0463378094136715,0.459632009267807,0.0506269857287407,0.463333785533905,0.0600940696895123,0.468914270401001,0.06444401293993,0.47132471203804,0.0694345533847809,0.416343986988068,0.0289430897682905,0.419300079345703,0.026231337338686,0.39839094877243,0.0260920785367489,0.407516211271286,0.0319485515356064,0.40738582611084,0.0274593476206064,0.521627604961395,0.105867244303226,0.51602178812027,0.114108845591545,0.51210480928421,0.0858696475625038,\r\n0.522351741790771,0.100707061588764,0.502769410610199,0.108748637139797,0.47184631228447,0.0731033906340599,0.479178905487061,0.0757999569177628,0.502425074577332,0.0784509405493736,0.48406058549881,0.0744706615805626,0.538184225559235,0.167799532413483,0.533586144447327,0.167817249894142,0.545570015907288,0.170511290431023,0.423890560865402,0.0255958084017038,0.446718901395798,0.0379113703966141,0.440221846103668,0.0308522041887045,0.456750631332397,0.0356072671711445,0.399434149265289,0.0228739287704229,0.404191732406616,0.0229979958385229,0.409819066524506,0.0287481267005205,0.525615453720093,0.110850185155869,0.519477963447571,0.11641801148653,0.513213813304901,0.0830540806055069,0.523101210594177,0.0933288708329201,0.518728494644165,0.0885535478591919,0.5268434882164,0.098643496632576,0.467369765043259,0.0862241238355637,0.542453169822693,0.167275413870811,0.529393196105957,0.173028081655502,0.548134922981262,0.169278204441071,0.42905580997467,0.0218408796936274,0.445685863494873,0.0331613719463348,0.436626434326172,0.0205369088798761,0.462888151407242,0.0387241393327713,0.463847756385803,0.0492647811770439,0.469719439744949,0.0570354349911213,0.472686916589737,0.0663202106952667,0.477598965167999,0.0717791691422462,0.414858967065811,0.0238689966499805,0.422035872936249,0.0225143861025572,0.397289544343948,0.0207825116813183,0.408198595046997,0.0208584703505039,0.526359856128693,0.105993844568729,0.524615347385406,0.116749703884125,0.518092930316925,0.0849961116909981,0.522883474826813,0.0900195688009262,0.526835918426514,0.0944859832525253,0.518247425556183,0.119322195649147,0.539202094078064,0.162079781293869,0.542870938777924,0.164335787296295,0.527203023433685,0.164690256118774,0.546008050441742,0.166098043322563,0.433380424976349,0.0161692388355732,0.425945252180099,0.0166705716401339,0.452114552259445,0.031778909265995,0.446572065353394,0.0245602279901505,0.461358815431595,0.0242817103862762,0.470139741897583,0.0511435121297836,0.475897461175919,0.0666316449642181,0.417660623788834,0.0174225699156523,0.419896364212036,\r\n0.0185974109917879,0.400801420211792,0.0200153198093176,0.530041396617889,0.108115643262863,0.529537498950958,0.114078462123871,0.51629775762558,0.0809500068426132,0.526043355464935,0.0899689272046089,0.522118806838989,0.0863431319594383,0.529945194721222,0.0960558131337166,0.529965400695801,0.103297285735607,0.512927711009979,0.117922015488148,0.485713958740234,0.0704017654061317,0.535201549530029,0.160282075405121,0.452243685722351,0.0281379204243422,0.440176278352737,0.0128244906663895,0.468840837478638,0.0272618532180786,0.456953167915344,0.0213218238204718,0.469066172838211,0.039574883878231,0.475950628519058,0.0576886832714081,0.482432514429092,0.0670013129711151,0.409407615661621,0.0178049001842737,0.420631885528564,0.0109255034476519,0.398056745529175,0.0173643343150616,0.402690261602402,0.0172706507146358,0.529859066009521,0.111100852489471,0.528357625007629,0.120575532317162,0.523296177387238,0.122236512601376,0.529362797737122,0.0924806520342827,0.521093368530273,0.0828743129968643,0.530198335647583,0.0994587987661362,0.514246881008148,0.123975984752178,0.490729808807373,0.0717411860823631,0.539916098117828,0.157281681895256,0.542964637279511,0.160388424992561,0.545906782150269,0.16284191608429,0.53076046705246,0.15731206536293,0.434828728437424,0.009350610896945,0.451180249452591,0.0164072457700968,0.445392161607742,0.0119838723912835,0.465794861316681,0.0161160677671433,0.469266206026077,0.0331588387489319,0.460037142038345,0.0145082585513592,0.471613347530365,0.0412789061665535,0.475492358207703,0.0496344491839409,0.485602557659149,0.0609498769044876,0.411147087812424,0.0135461054742336,0.426533937454224,0.00634767953306437,0.532573342323303,0.105368442833424,0.532983541488647,0.109682939946651,0.532573342323303,0.117144696414471,0.533160805702209,0.11288083344698,0.522080838680267,0.128217056393623,0.524172246456146,0.0833224728703499,0.527549922466278,0.0866900086402893,0.531968235969543,0.0986308380961418,0.515548288822174,0.126723185181618,0.487433195114136,0.0654264241456985,0.535882651805878,0.155924528837204,\r\n0.524379849433899,0.154683858156204,0.442986756563187,0.00706676254048944,0.471775412559509,0.0139512224122882,0.476059526205063,0.0272846408188343,0.457753270864487,0.00973800383508205,0.474631488323212,0.03740244358778,0.479077637195587,0.0523867160081863,0.479665070772171,0.0573114193975925,0.404733568429947,0.0146576454862952,0.414779216051102,0.00893283355981112,0.417369425296783,0.00553997745737433,0.399183481931686,0.0146247297525406,0.532375872135162,0.121155351400375,0.527246057987213,0.127308070659637,0.491636276245117,0.0669937208294868,0.540331363677979,0.154321789741516,0.543379843235016,0.155957445502281,0.545309245586395,0.159021154046059,0.531454205513,0.152435466647148,0.526577651500702,0.163019150495529,0.446572065353394,0.00258768582716584,0.463642686605453,0.00685407593846321,0.47935363650322,0.0411523096263409,0.484696120023727,0.0574152320623398,0.490719705820084,0.0632286593317986,0.407970726490021,0.0101861646398902,0.397552877664566,0.0122623899951577,0.534905314445496,0.115698933601379,0.535163581371307,0.119385495781899,0.532072007656097,0.124016493558884,0.526038289070129,0.132668271660805,0.517735958099365,0.130799680948257,0.536637187004089,0.151739165186882,0.527415692806244,0.151227712631226,0.456755697727203,0.00612233346328139,0.46911683678627,0.00384608120657504,0.476269662380219,0.0201621744781733,0.478467434644699,0.0307332016527653,0.481898277997971,0.0463681928813457,0.482460379600525,0.0537463873624802,0.489805638790131,0.0589344203472137,0.400930523872375,0.0120167881250381,0.414690583944321,0.00239272322505713,0.535226881504059,0.122530221939087,0.53172767162323,0.126973852515221,0.51894623041153,0.134471043944359,0.531013667583466,0.131987169384956,0.494943052530289,0.0646212548017502,0.543268442153931,0.15279246866703,0.540392100811005,0.150351643562317,0.523769676685333,0.152777284383774,0.532998740673065,0.147493034601212,0.472003281116486,0.00199267012067139,0.475327759981155,0.0131688397377729,0.481179177761078,0.0267757121473551,0.461090445518494,0.0024357670918107,\r\n0.482080578804016,0.0396432466804981,0.483093351125717,0.0490799434483051,0.485068321228027,0.0528044924139977,0.493145346641541,0.0606232509016991,0.403492897748947,0.00861633569002151,0.40745797753334,0.00437779724597931,0.400036752223969,0.00760607467964292,0.535282611846924,0.125687599182129,0.525126814842224,0.139831259846687,0.53029203414917,0.135630697011948,0.537612020969391,0.146011829376221,0.521675705909729,0.144490107893944,0.52833479642868,0.145292744040489,0.480685442686081,0.0183745957911015,0.481883078813553,0.0317029505968094,0.484642922878265,0.0449882633984089,0.488486498594284,0.052976667881012,0.534907877445221,0.129298210144043,0.520966768264771,0.142672136425972,0.534786343574524,0.134035542607307,0.542701303958893,0.149136289954185,0.540761768817902,0.145814329385757,0.533887445926666,0.142084717750549,0.479396671056747,0.0110596986487508,0.48609122633934,0.0260110534727573,0.486050724983215,0.0297052171081305,0.485113888978958,0.0375189147889614,0.487407863140106,0.0486900210380554,0.491535007953644,0.0563264787197113,0.536956250667572,0.128637358546257,0.529507160186768,0.139935061335564,0.534366011619568,0.13703341782093,0.540300965309143,0.142710119485855,0.537728488445282,0.141135230660439,0.475710093975067,0.0031801697332412,0.486678659915924,0.0140651613473892,0.487453430891037,0.0412839725613594,0.487321764230728,0.0449730716645718,0.491114675998688,0.0528044924139977,0.537455022335052,0.132250502705574,0.537670254707336,0.13565094769001,0.537343621253967,0.138418406248093,0.481969177722931,0.00759341474622488,0.490714639425278,0.0155311794951558,0.491580575704575,0.0263579357415438,0.489332169294357,0.0317409299314022,0.487693965435028,0.0366631038486958,0.490096837282181,0.0485583581030369,0.539766728878021,0.139162808656693,0.486850827932358,0.00985700730234385,0.491626143455505,0.0218434110283852,0.489554971456528,0.0403927154839039,0.489456236362457,0.0450591556727886,0.482647746801376,0.00448160851374269,0.494953155517578,0.0197013542056084,0.492550313472748,0.0114394957199693,\r\n0.496317893266678,0.02287139557302,0.493114948272705,0.0293000992387533,0.490342438220978,0.0353110246360302,0.49533548951149,0.0158881898969412,0.495191186666489,0.0273656640201807,0.492742747068405,0.0342906378209591,0.491524875164032,0.0410459637641907,0.497024327516556,0.0187138821929693,0.494173318147659,0.00952278543263674,0.497297793626785,0.0255299769341946,0.495018988847733,0.030578751116991,0.494679719209671,0.0341944210231304,0.492380678653717,0.0447072125971317,0.49810802936554,0.021881390362978,0.496879994869232,0.031143382191658,0.493646681308746,0.0413118228316307,0.808132767677307,0.762749552726746,0.811054706573486,0.766172766685486,0.806643962860107,0.766638696193695,0.804820954799652,0.763929426670074,0.803970217704773,0.767190635204315,0.805631220340729,0.760597348213196,0.804046154022217,0.770867109298706,0.809302568435669,0.759341478347778,0.807170629501343,0.769018709659576,0.815921187400818,0.761245548725128,0.806102156639099,0.757042467594147,0.815835058689117,0.758733808994293,0.810487568378448,0.756141066551209,0.823258876800537,0.760653078556061,0.80726683139801,0.752869725227356,0.815278053283691,0.753938257694244,0.821861207485199,0.756677865982056,0.804046154022217,0.75443959236145,0.81910640001297,0.753826856613159,0.82561868429184,0.757007002830505,0.815819919109344,0.748443841934204,0.803752481937408,0.759452879428864,0.804441154003143,0.750540316104889,0.826530158519745,0.76155948638916,0.827218890190125,0.751948118209839,0.823663949966431,0.748150110244751,0.809206366539001,0.742382287979126,0.829811632633209,0.754783928394318,0.813981652259827,0.738300740718842,0.805489420890808,0.742701292037964,0.819445669651031,0.73671567440033,0.830556035041809,0.759842813014984,0.83069783449173,0.748069107532501,0.828403830528259,0.74505603313446,0.806871891021729,0.735591530799866,0.806400895118713,0.738234877586365,0.821891605854034,0.739749014377594,0.831963837146759,0.756368935108185,0.832596838474274,0.752738058567047,0.825203418731689,0.74317729473114,0.813951313495636,0.726835906505585,\r\n0.803448617458344,0.739121079444885,0.822777807712555,0.734619200229645,0.833645045757294,0.758819937705994,0.834014713764191,0.742782354354858,0.831573903560638,0.742473423480988,0.825669288635254,0.737262606620789,0.807287096977234,0.731560587882996,0.803524613380432,0.736194133758545,0.81982547044754,0.728268980979919,0.80309921503067,0.74312162399292,0.834718585014343,0.752555787563324,0.831320703029633,0.763919293880463,0.836136519908905,0.742397487163544,0.828636765480042,0.736791670322418,0.803585350513458,0.731813788414001,0.80861896276474,0.72366589307785,0.815029919147491,0.723032891750336,0.802942216396332,0.747350037097931,0.826322555541992,0.730081915855408,0.823456346988678,0.727549910545349,0.834222316741943,0.73564213514328,0.836425185203552,0.737870275974274,0.83158403635025,0.736270070075989,0.804719686508179,0.724227964878082,0.801407873630524,0.733008861541748,0.820412933826447,0.722764492034912,0.8319131731987,0.728988111019135,0.801605343818665,0.729869246482849,0.80508428812027,0.718763947486877,0.812938511371613,0.711831390857697,0.816903591156006,0.717670142650604,0.826398491859436,0.723402559757233,0.823598146438599,0.722556829452515,0.836921453475952,0.730026185512543,0.834318578243256,0.730122447013855,0.802638411521912,0.723741829395294,0.805418491363525,0.714434266090393,0.805585622787476,0.711638927459717,0.819293797016144,0.715811669826508,0.834374248981476,0.724248230457306,0.829335629940033,0.723822832107544,0.802846014499664,0.719422280788422,0.802785277366638,0.715168535709381,0.817470729351044,0.711183190345764,0.80886709690094,0.704017698764801,0.823461413383484,0.715497672557831,0.83635425567627,0.726689040660858,0.831948637962341,0.721893489360809,0.82923436164856,0.716480076313019,0.802613079547882,0.712398529052734,0.82017993927002,0.703425228595734,0.805119752883911,0.705881237983704,0.813237249851227,0.700265288352966,0.826413691043854,0.715831935405731,0.833472847938538,0.71391773223877,0.801772475242615,0.706706643104553,0.805236220359802,0.702311098575592,0.808836698532104,\r\n0.694482266902924,0.826530158519745,0.710686922073364,0.831401705741882,0.712834060192108,0.812249779701233,0.694867074489594,0.823071479797363,0.702706098556519,0.801767408847809,0.702979564666748,0.804846286773682,0.693261802196503,0.829087495803833,0.708934783935547,0.819192469120026,0.696912944316864,0.800065875053406,0.703227698802948,0.801428079605103,0.696953475475311,0.811328172683716,0.689418256282806,0.826120018959045,0.704134166240692,0.8306725025177,0.703161895275116,0.81805819272995,0.687828183174133,0.822463810443878,0.693793535232544,0.799422800540924,0.699910819530487,0.801058411598206,0.692016065120697,0.803382813930511,0.685194909572601,0.814472854137421,0.686729311943054,0.825623750686646,0.695449471473694,0.828515231609344,0.702802360057831,0.832495510578156,0.704043030738831,0.799124002456665,0.6944620013237,0.799503803253174,0.697237014770508,0.810310304164886,0.678976356983185,0.829391300678253,0.696239411830902,0.817090928554535,0.679705560207367,0.821076273918152,0.686774909496307,0.7990682721138,0.691332459449768,0.8003950715065,0.686572313308716,0.802699148654938,0.677421748638153,0.813298046588898,0.6778724193573,0.827401161193848,0.695809006690979,0.823638677597046,0.686410307884216,0.799205005168915,0.677386283874512,0.803641080856323,0.671501994132996,0.826520025730133,0.690314590930939,0.820078670978546,0.679310619831085,0.818853199481964,0.676900148391724,0.822818279266357,0.680363893508911,0.797782063484192,0.681477963924408,0.801524341106415,0.670438528060913,0.80850750207901,0.667967319488525,0.812259912490845,0.673325002193451,0.825350284576416,0.684951841831207,0.796252727508545,0.674322605133057,0.801179945468903,0.666924118995667,0.798339068889618,0.669020652770996,0.803367614746094,0.663029968738556,0.821709275245667,0.67549741268158,0.813353717327118,0.671623528003693,0.803073883056641,0.659231960773468,0.817789793014526,0.67221599817276,0.824327349662781,0.677082479000092,0.796050190925598,0.670251190662384,0.800597608089447,0.662508368492126,0.798637866973877,0.664868175983429,\r\n0.800379872322083,0.659789025783539,0.809282302856445,0.661211967468262,0.819405198097229,0.670225858688354,0.814138650894165,0.667719185352325,0.796313524246216,0.667303919792175,0.800111472606659,0.656360685825348,0.803246080875397,0.656684815883636,0.823208212852478,0.673669338226318,0.816782057285309,0.66815972328186,0.798637866973877,0.661708235740662,0.811014175415039,0.659469962120056,0.81803286075592,0.664432644844055,0.80141294002533,0.652972936630249,0.804800689220428,0.654608607292175,0.81427538394928,0.659510493278503,0.812897980213165,0.654628813266754,0.815966725349426,0.657596290111542,0.803332149982452,0.651134729385376,0.807140231132507,0.65286660194397,0.801114141941071,0.648779928684235,0.807844161987305,0.648136854171753,0.814503252506256,0.653403341770172,0.805160224437714,0.650015592575073,0.803094148635864,0.645513713359833,0.810978770256042,0.647468388080597,0.805074155330658,0.645736515522003,0.809191167354584,0.644288241863251,0.805590689182281,0.640692830085754,0.67892450094223,0.761929154396057,0.681836247444153,0.759088277816772,0.684708774089813,0.761265814304352,0.6785649061203,0.758893311023712,0.686472296714783,0.757677972316742,0.682904720306396,0.763676226139069,0.681585609912872,0.75074291229248,0.684618890285492,0.753771126270294,0.688840985298157,0.759447813034058,0.686783730983734,0.762111485004425,0.679348587989807,0.764618158340454,0.687748432159424,0.750087082386017,0.690153837203979,0.755632162094116,0.687821865081787,0.762534320354462,0.686754643917084,0.744843363761902,0.691517293453217,0.760212481021881,0.688858687877655,0.762957155704498,0.684636652469635,0.741977155208588,0.691388130187988,0.742225289344788,0.691281795501709,0.747547507286072,0.688849866390228,0.7612025141716,0.694794952869415,0.756374001502991,0.680939912796021,0.745919466018677,0.689551174640656,0.733236730098724,0.69454425573349,0.751289784908295,0.694429039955139,0.761359512805939,0.682159066200256,0.736938536167145,0.68590259552002,0.729699552059174,0.692773163318634,0.734555900096893,0.69550895690918,\r\n0.744653463363647,0.692080676555634,0.763486325740814,0.698963820934296,0.75642466545105,0.697926998138428,0.752796351909637,0.679565072059631,0.741977155208588,0.69117671251297,0.7259801030159,0.695072174072266,0.737786710262299,0.694313883781433,0.729086816310883,0.696935713291168,0.739997148513794,0.697887778282166,0.747739970684052,0.695130407810211,0.764144659042358,0.698454916477203,0.760845482349396,0.699794352054596,0.749960482120514,0.67911434173584,0.73652583360672,0.680406928062439,0.732236623764038,0.689774036407471,0.723582327365875,0.69793838262558,0.734355866909027,0.696260929107666,0.731925189495087,0.698733448982239,0.742359519004822,0.700383007526398,0.744863629341125,0.698708117008209,0.76385098695755,0.681384265422821,0.726843476295471,0.695589959621429,0.723759531974792,0.687104046344757,0.722068190574646,0.693803668022156,0.721500992774963,0.699543654918671,0.736976504325867,0.698811948299408,0.728841245174408,0.697280049324036,0.726172506809235,0.691954076290131,0.719419717788696,0.683356702327728,0.721009790897369,0.698266267776489,0.720455288887024,0.690762758255005,0.717087805271149,0.696631908416748,0.717875242233276,0.688448548316956,0.715545773506165,0.69498485326767,0.715492606163025,0.685092389583588,0.712717592716217,0.692792117595673,0.712454259395599,0.681772947311401,0.715330600738525,0.689205586910248,0.709588050842285,0.697738349437714,0.712201058864594,0.677534401416779,0.717781543731689,0.682384431362152,0.709800720214844,0.686100125312805,0.70423036813736,0.694227755069733,0.707554876804352,0.696057140827179,0.709765255451202,0.678818106651306,0.723534226417542,0.679002940654755,0.713555634021759,0.691437542438507,0.704235434532166,0.682141363620758,0.704326570034027,0.680011987686157,0.709514617919922,0.689213156700134,0.700318455696106,0.696849644184113,0.704281032085419,0.685964643955231,0.697642147541046,0.677786350250244,0.708127081394196,0.694407522678375,0.700376689434052,0.681722342967987,0.693312466144562,0.67547082901001,0.714505136013031,0.691132426261902,0.69721931219101,\r\n0.679432153701782,0.702225029468536,0.684503674507141,0.68695467710495,0.696102678775787,0.696345806121826,0.689406871795654,0.693788468837738,0.679687857627869,0.696497678756714,0.682043850421906,0.685281038284302,0.687880098819733,0.686255812644959,0.694306254386902,0.694064438343048,0.676098763942719,0.698064982891083,0.678329467773438,0.692471861839294,0.686078608036041,0.682523667812347,0.691528677940369,0.68963098526001,0.684002339839935,0.680437326431274,0.679010570049286,0.68513160943985,0.690205693244934,0.681166529655457,0.691949009895325,0.684020102024078,0.679787874221802,0.68162989616394,0.688595354557037,0.678662419319153,0.68201094865799,0.677824318408966,0.686783730983734,0.676591277122498,0.679167568683624,0.67928272485733,0.691275477409363,0.675446808338165,0.685662090778351,0.673580706119537,0.679373919963837,0.676289916038513,0.689737319946289,0.672912299633026,0.682609796524048,0.673011004924774,0.686277329921722,0.668716788291931,0.68866503238678,0.67030942440033,0.680679142475128,0.671934962272644,0.683049082756042,0.667904019355774,0.690608322620392,0.667119085788727,0.686583697795868,0.662138700485229,0.689334690570831,0.66421240568161,0.683780789375305,0.662852704524994,0.693131446838379,0.664057910442352,0.684678375720978,0.658543288707733,0.689923405647278,0.659626960754395,0.692097127437592,0.661417067050934,0.687587678432465,0.653985738754272,0.690569043159485,0.654423773288727,0.692780733108521,0.656127750873566,0.693756818771362,0.658672392368317,0.690104424953461,0.650126993656158,0.694346785545349,0.653560340404511,0.687168598175049,0.649795293807983,0.693260550498962,0.650504231452942,0.689361274242401,0.647458255290985,0.692861795425415,0.646951854228973,0.687195181846619,0.646832883358002,0.695708990097046,0.64806592464447,0.69004875421524,0.644683182239532,0.69432145357132,0.642880439758301,0.689966440200806,0.64100170135498,0.692462980747223,0.639474928379059,0.695716559886932,0.639512896537781,0.690268993377686,0.637927889823914,0.693116247653961,0.636522650718689,0.697734594345093,\r\n0.641584038734436,0.697367429733276,0.636494755744934,0.699162602424622,0.639502763748169,0.695092439651489,0.634334981441498,0.692813634872437,0.63329690694809,0.697302877902985,0.633631110191345,0.695307672023773,0.63180810213089,0.699861407279968,0.634241342544556,0.698725819587708,0.631210505962372,0.701681911945343,0.632701873779297,0.69548487663269,0.629559695720673,0.702368080615997,0.630587637424469,0.698732197284698,0.628278493881226,0.701875627040863,0.628027856349945,0.700409591197968,0.625898420810699,0.705372273921967,0.623758912086487,0.703274548053741,0.623029708862305,0.792380094528198,0.463124871253967,0.798502385616302,0.465039074420929,0.795142471790314,0.466745615005493,0.796474277973175,0.461372762918472,0.787041366100311,0.457200050354004,0.8021320104599,0.462704569101334,0.791774928569794,0.454632610082626,0.798744201660156,0.458450853824615,0.803330898284912,0.466776013374329,0.785908341407776,0.452055066823959,0.805754005908966,0.461509466171265,0.799160718917847,0.468568652868271,0.798778414726257,0.454257875680923,0.782557249069214,0.454399675130844,0.789146721363068,0.4452845454216,0.807645380496979,0.465677112340927,0.780973494052887,0.449183791875839,0.785561442375183,0.460775196552277,0.783890306949615,0.445112377405167,0.802330732345581,0.450895398855209,0.807628929615021,0.461048662662506,0.805738806724548,0.470244824886322,0.796721160411835,0.445228844881058,0.779865741729736,0.436432719230652,0.809502601623535,0.460582762956619,0.809458315372467,0.468872487545013,0.785941243171692,0.433753877878189,0.77751100063324,0.441182732582092,0.799692451953888,0.442398071289063,0.80591607093811,0.455741614103317,0.812819480895996,0.463671803474426,0.811138272285461,0.466274678707123,0.807811260223389,0.473379403352737,0.793646037578583,0.432619571685791,0.772117853164673,0.435976982116699,0.780648112297058,0.433850109577179,0.805261552333832,0.449178725481033,0.812351107597351,0.459397822618485,0.811978876590729,0.464973241090775,0.811825692653656,0.468720555305481,0.788266837596893,0.428451925516129,\r\n0.773326873779297,0.441000431776047,0.773806691169739,0.431211769580841,0.782720565795898,0.429434329271317,0.802426993846893,0.4315105676651,0.817322611808777,0.458050787448883,0.812323212623596,0.466198712587357,0.809983670711517,0.476838111877441,0.794762670993805,0.423180341720581,0.774728357791901,0.444094508886337,0.769097208976746,0.430366098880768,0.776198148727417,0.425945252180099,0.807822644710541,0.434548944234848,0.809582352638245,0.447907686233521,0.817142844200134,0.461950033903122,0.814837515354156,0.451396733522415,0.815510988235474,0.468001484870911,0.806704759597778,0.478073716163635,0.813827216625214,0.475359410047531,0.7816241979599,0.423155009746552,0.789587318897247,0.424132347106934,0.771639347076416,0.425995886325836,0.801017940044403,0.424517214298248,0.807609915733337,0.429991364479065,0.819440603256226,0.463373005390167,0.821250975131989,0.455447912216187,0.812946081161499,0.479668855667114,0.78192549943924,0.419230431318283,0.771764695644379,0.419620364904404,0.79951012134552,0.420430600643158,0.812311828136444,0.438113957643509,0.823143661022186,0.459549725055695,0.817055523395538,0.472336232662201,0.809541821479797,0.481076627969742,0.816045224666595,0.478569984436035,0.794062554836273,0.414976716041565,0.769554257392883,0.422005504369736,0.808743000030518,0.414799481630325,0.815327405929565,0.41682505607605,0.816109836101532,0.439207792282104,0.824578046798706,0.463084369897842,0.828810214996338,0.456374615430832,0.812138378620148,0.483877003192902,0.814962804317474,0.484327703714371,0.78347384929657,0.414444983005524,0.776267826557159,0.414986848831177,0.795596957206726,0.408798664808273,0.807444095611572,0.409006297588348,0.812570095062256,0.428467124700546,0.830118000507355,0.461641132831573,0.821548521518707,0.46587461233139,0.819443166255951,0.471688061952591,0.824367880821228,0.448717892169952,0.818587362766266,0.477541983127594,0.808116316795349,0.48524934053421,0.817741692066193,0.483436435461044,0.773799121379852,0.411538273096085,0.815750241279602,0.411087572574615,0.820909202098846,\r\n0.429434329271317,0.82156240940094,0.435602247714996,0.830992817878723,0.46530744433403,0.825232565402985,0.468229353427887,0.832291722297668,0.438073456287384,0.834333777427673,0.448272287845612,0.835525035858154,0.461560130119324,0.811206638813019,0.490323454141617,0.816779494285584,0.490748822689056,0.785251259803772,0.410044401884079,0.779883444309235,0.406869292259216,0.807056725025177,0.401410341262817,0.825623750686646,0.409750699996948,0.816640257835388,0.406793355941772,0.824000716209412,0.417230188846588,0.829368531703949,0.467576116323471,0.821939706802368,0.472756534814835,0.821218073368073,0.477065980434418,0.837288558483124,0.456967115402222,0.820458471775055,0.483046531677246,0.813895583152771,0.493118762969971,0.819858431816101,0.489330917596817,0.796110928058624,0.40567421913147,0.777373015880585,0.4006507396698,0.810860991477966,0.404403150081635,0.826308608055115,0.403172612190247,0.827831625938416,0.427854359149933,0.833614647388458,0.467257082462311,0.828510165214539,0.470462560653687,0.824266612529755,0.475678443908691,0.837344288825989,0.444494545459747,0.840157330036163,0.453503340482712,0.83964329957962,0.46156519651413,0.809025347232819,0.50307959318161,0.818368315696716,0.500020921230316,0.816064238548279,0.499970287084579,0.791591346263886,0.402301609516144,0.772443234920502,0.403972715139389,0.780644357204437,0.400382369756699,0.795319676399231,0.401268571615219,0.818503797054291,0.400858372449875,0.832151174545288,0.405020952224731,0.833700776100159,0.412677675485611,0.833695709705353,0.429176062345505,0.837563276290894,0.465641677379608,0.833670377731323,0.472017198801041,0.83238285779953,0.475354373455048,0.826770722866058,0.476929247379303,0.823877930641174,0.482762932777405,0.842504441738129,0.441071331501007,0.841798007488251,0.458233088254929,0.823027193546295,0.490799456834793,0.811472475528717,0.506047070026398,0.821515560150146,0.494718968868256,0.789373338222504,0.399060666561127,0.776500761508942,0.397111028432846,0.805833756923676,0.397526293992996,0.815666735172272,0.392411679029465,\r\n0.834416031837463,0.408530294895172,0.834390699863434,0.398052930831909,0.835706055164337,0.416014820337296,0.825304687023163,0.398417532444,0.83555793762207,0.469191521406174,0.825516104698181,0.480950027704239,0.82405012845993,0.488069981336594,0.844547748565674,0.447381019592285,0.843076705932617,0.451979100704193,0.8444464802742,0.455493479967117,0.84276270866394,0.462198168039322,0.840262413024902,0.465499877929688,0.807284593582153,0.507302939891815,0.814405798912048,0.510002017021179,0.820695221424103,0.502841532230377,0.783053517341614,0.391672343015671,0.788073182106018,0.394092917442322,0.803286612033844,0.391150742769241,0.840292751789093,0.403856247663498,0.840044617652893,0.410611569881439,0.842230975627899,0.427363157272339,0.838186144828796,0.470847427845001,0.836318850517273,0.473141402006149,0.846699953079224,0.443491905927658,0.849978864192963,0.438377290964127,0.845937848091125,0.45941299200058,0.825089454650879,0.497438311576843,0.810339391231537,0.517521977424622,0.816074371337891,0.519253849983215,0.819562137126923,0.510346353054047,0.823956429958344,0.502299726009369,0.793078899383545,0.392305344343185,0.779616355895996,0.391469776630402,0.80790114402771,0.3863804936409,0.823458909988403,0.390836805105209,0.832963943481445,0.394371449947357,0.844502210617065,0.389216333627701,0.842336058616638,0.415959119796753,0.848562240600586,0.44719871878624,0.84687340259552,0.451801866292953,0.848536908626556,0.454936444759369,0.846087217330933,0.463707238435745,0.843191862106323,0.465783476829529,0.840810537338257,0.470325857400894,0.807178258895874,0.514260828495026,0.812965095043182,0.521249055862427,0.823798179626465,0.511465489864349,0.825136303901672,0.509227216243744,0.792005360126495,0.386800825595856,0.783461153507233,0.386851459741592,0.799517750740051,0.384157419204712,0.804794371128082,0.382334381341934,0.813063859939575,0.385332256555557,0.828211426734924,0.392604112625122,0.8186354637146,0.383504182100296,0.845292150974274,0.41156867146492,0.848479926586151,0.392897814512253,0.849544644355774,\r\n0.423377841711044,0.838405191898346,0.473247736692429,0.851470232009888,0.441810667514801,0.84464019536972,0.464745342731476,0.840904235839844,0.47393137216568,0.806709825992584,0.521304786205292,0.818051815032959,0.521345257759094,0.814051330089569,0.532648026943207,0.821661174297333,0.512893557548523,0.811281323432922,0.529898345470428,0.789810121059418,0.383483916521072,0.781079828739166,0.38374724984169,0.810644507408142,0.380501240491867,0.830682635307312,0.391647011041641,0.827453076839447,0.378982037305832,0.852488040924072,0.396300822496414,0.839154660701752,0.386648893356323,0.849547147750854,0.388304799795151,0.853879392147064,0.436209917068481,0.838624179363251,0.475643008947372,0.850377678871155,0.450368762016296,0.851595520973206,0.445897281169891,0.846637904644012,0.46686714887619,0.843410909175873,0.468801587820053,0.843794524669647,0.471703231334686,0.808191061019897,0.526064872741699,0.824879348278046,0.518985450267792,0.795461475849152,0.381422877311707,0.802175045013428,0.379058003425598,0.80624520778656,0.376591861248016,0.828402578830719,0.388927668333054,0.824884414672852,0.375467658042908,0.855026364326477,0.404479116201401,0.830038249492645,0.388198465108871,0.834946513175964,0.38602602481842,0.843455195426941,0.385114520788193,0.846891105175018,0.383696585893631,0.852666556835175,0.418197393417358,0.853181838989258,0.427692323923111,0.856865882873535,0.440012961626053,0.854669392108917,0.444742679595947,0.843390643596649,0.474270671606064,0.820324301719666,0.521887123584747,0.816270589828491,0.534906566143036,0.810064673423767,0.536906838417053,0.828101277351379,0.520271718502045,0.80723774433136,0.533169627189636,0.79244464635849,0.378262966871262,0.788641571998596,0.377113431692123,0.817903697490692,0.372312813997269,0.829714119434357,0.376095592975616,0.832071423530579,0.381235510110855,0.855534017086029,0.395110785961151,0.851033449172974,0.412105441093445,0.831675171852112,0.387474328279495,0.839440762996674,0.382668614387512,0.849720597267151,0.383630782365799,0.852451324462891,0.388588398694992,\r\n0.85606324672699,0.432953774929047,0.858029305934906,0.435394614934921,0.853851556777954,0.449026823043823,0.847112655639648,0.469854891300201,0.846656918525696,0.473652869462967,0.841266334056854,0.47682797908783,0.812505543231964,0.540547847747803,0.830820620059967,0.526738405227661,0.823450028896332,0.524479866027832,0.799737989902496,0.37498152256012,0.782568633556366,0.377366632223129,0.807089626789093,0.365891695022583,0.824528634548187,0.371208876371384,0.858401536941528,0.403127044439316,0.836028933525085,0.382567346096039,0.844059109687805,0.38127601146698,0.84739625453949,0.379751771688461,0.856240451335907,0.427899956703186,0.858944594860077,0.443198174238205,0.860811948776245,0.438448190689087,0.852975487709045,0.453614771366119,0.857189953327179,0.447877287864685,0.846911370754242,0.471845030784607,0.818207561969757,0.535767436027527,0.814548850059509,0.54475599527359,0.80696302652359,0.538841307163239,0.808358132839203,0.545404195785522,0.828455746173859,0.528596878051758,0.820821821689606,0.534344494342804,0.794287919998169,0.370889842510223,0.786948978900909,0.373543351888657,0.779597342014313,0.381174743175507,0.802416861057281,0.370854377746582,0.812462508678436,0.36437252163887,0.82992559671402,0.372393816709518,0.834503412246704,0.376257628202438,0.85722541809082,0.39336371421814,0.857631802558899,0.410991370677948,0.837110042572021,0.379108637571335,0.840380132198334,0.378587067127228,0.85385662317276,0.386669158935547,0.850204229354858,0.380192339420319,0.857433021068573,0.422729641199112,0.860066294670105,0.430913001298904,0.861796915531158,0.435121148824692,0.857191205024719,0.452444970607758,0.810649573802948,0.549845278263092,0.825802206993103,0.532734155654907,0.799411356449127,0.366884231567383,0.782787680625916,0.371770977973938,0.819474816322327,0.369031369686127,0.806395828723907,0.359678208827972,0.825357854366302,0.366529762744904,0.860811948776245,0.409563332796097,0.842855155467987,0.377336263656616,0.848948359489441,0.377594530582428,0.862955272197723,0.441628366708755,0.861570298671722,\r\n0.4462770819664,0.863569259643555,0.43839755654335,0.862889468669891,0.454323709011078,0.820667386054993,0.54550039768219,0.816493391990662,0.547677874565125,0.812990427017212,0.551734149456024,0.806098341941834,0.555127024650574,0.824008345603943,0.537398040294647,0.794268906116486,0.366200596094131,0.79360556602478,0.362625449895859,0.822603046894073,0.366737395524979,0.798237800598145,0.364033222198486,0.812453627586365,0.360250443220139,0.832085371017456,0.370342940092087,0.836046636104584,0.374216854572296,0.860292911529541,0.414455115795136,0.859435796737671,0.422035872936249,0.844573080539703,0.375498056411743,0.861852586269379,0.428537994623184,0.863562941551209,0.43315127491951,0.863447725772858,0.436037749052048,0.859448492527008,0.457139283418655,0.823215842247009,0.543753325939178,0.807316243648529,0.564277589321136,0.780713975429535,0.367426067590714,0.801620543003082,0.358052670955658,0.810663521289825,0.356756299734116,0.820453405380249,0.360584676265717,0.827949345111847,0.365344792604446,0.865636646747589,0.444540143013,0.865358114242554,0.441248565912247,0.865296065807343,0.451229631900787,0.865098595619202,0.436954319477081,0.866165816783905,0.459048390388489,0.819303929805756,0.550832748413086,0.824742615222931,0.553116619586945,0.816104769706726,0.5534508228302,0.809772253036499,0.565219461917877,0.804800689220428,0.561791181564331,0.826855540275574,0.541525185108185,0.792012929916382,0.358812272548676,0.81457793712616,0.357465267181396,0.79824161529541,0.355404227972031,0.803634703159332,0.351839184761047,0.824195683002472,0.360154241323471,0.832899391651154,0.368651568889618,0.864331424236298,0.435055315494537,0.866306364536285,0.448748290538788,0.867007732391357,0.440048396587372,0.872388184070587,0.456835448741913,0.82233339548111,0.552589952945709,0.804979205131531,0.572536885738373,0.803042232990265,0.5682173371315,0.780930459499359,0.363045752048492,0.796032428741455,0.353079855442047,0.809981167316437,0.352917820215225,0.812525808811188,0.350699812173843,0.821747243404388,0.356675297021866,\r\n0.817485928535461,0.355824530124664,0.837518990039825,0.370864510536194,0.827823996543884,0.361313879489899,0.868490219116211,0.443446308374405,0.868982672691345,0.448560923337936,0.871918499469757,0.453543871641159,0.87224006652832,0.459883958101273,0.819487452507019,0.55921870470047,0.824494481086731,0.561786115169525,0.812573909759521,0.56504225730896,0.808408796787262,0.573230683803558,0.782033145427704,0.357758969068527,0.791639447212219,0.351322680711746,0.800560891628265,0.349033772945404,0.807582080364227,0.34695753455162,0.824495732784271,0.35682213306427,0.82708466053009,0.358326137065887,0.831037104129791,0.365562528371811,0.876473546028137,0.454551607370377,0.871445000171661,0.463631272315979,0.878462374210358,0.462628602981567,0.816138923168182,0.566991865634918,0.811055958271027,0.57210648059845,0.799293637275696,0.575276494026184,0.80409300327301,0.579251706600189,0.793700516223907,0.346278965473175,0.800995111465454,0.345190227031708,0.818068265914917,0.351282149553299,0.824452698230743,0.352634251117706,0.871303200721741,0.446342915296555,0.878662407398224,0.458810389041901,0.878630757331848,0.466431647539139,0.866239249706268,0.462253898382187,0.817716360092163,0.574415624141693,0.820031821727753,0.574947357177734,0.8144171833992,0.572866082191467,0.809027850627899,0.586148858070374,0.806973159313202,0.582031846046448,0.796737611293793,0.34564596414566,0.789779722690582,0.345701664686203,0.800565958023071,0.341498583555222,0.812402963638306,0.347332268953323,0.817797362804413,0.348876774311066,0.821953594684601,0.352674752473831,0.875065743923187,0.450115561485291,0.881714761257172,0.457032948732376,0.881747663021088,0.462076634168625,0.88341623544693,0.467277348041534,0.823698163032532,0.575980424880981,0.811913073062897,0.579849243164063,0.800077319145203,0.580988645553589,0.804820954799652,0.596681892871857,0.790906429290771,0.342410087585449,0.794134736061096,0.342060685157776,0.797341465950012,0.339245110750198,0.803956270217896,0.339133709669113,0.809467136859894,0.343215256929398,0.820564806461334,\r\n0.348775506019592,0.875751912593842,0.447112619876862,0.879008054733276,0.452434867620468,0.884710073471069,0.46057265996933,0.881741344928741,0.454733908176422,0.817774593830109,0.58218377828598,0.814943850040436,0.57897824048996,0.822039723396301,0.583945989608765,0.802085161209106,0.592605412006378,0.81068754196167,0.59048867225647,0.786326110363007,0.341929018497467,0.800297558307648,0.334545761346817,0.81502103805542,0.344592660665512,0.878464937210083,0.449588894844055,0.88559627532959,0.458121687173843,0.884559392929077,0.455194711685181,0.884813904762268,0.465034008026123,0.813041031360626,0.593020617961884,0.809781134128571,0.596859157085419,0.80724024772644,0.599391102790833,0.801286339759827,0.597871899604797,0.79004180431366,0.338632375001907,0.794796824455261,0.336834669113159,0.808078348636627,0.339290708303452,0.803996801376343,0.335006594657898,0.797594666481018,0.332631587982178,0.812249779701233,0.341296017169952,0.881962895393372,0.450495362281799,0.881907165050507,0.452490568161011,0.891328692436218,0.460273861885071,0.889262557029724,0.465297341346741,0.888895452022552,0.46941938996315,0.816346526145935,0.589759469032288,0.819239318370819,0.588883399963379,0.804255068302155,0.598889768123627,0.808092296123505,0.336019366979599,0.884661972522736,0.453148871660233,0.889776587486267,0.461853832006454,0.88874351978302,0.472918599843979,0.823594331741333,0.593744814395905,0.81609970331192,0.595274090766907,0.811709225177765,0.599355638027191,0.811017990112305,0.605533719062805,0.803690433502197,0.601097643375397,0.791638195514679,0.333259522914886,0.893723905086517,0.463889539241791,0.896642029285431,0.471834897994995,0.883163034915924,0.474047869443893,0.897249698638916,0.479289054870605,0.819514036178589,0.599689900875092,0.815105855464935,0.599497437477112,0.807828962802887,0.60624772310257,0.895762145519257,0.462172865867615,0.896568596363068,0.467839449644089,0.89760547876358,0.475450575351715,0.887904167175293,0.476519078016281,0.822922110557556,0.599608838558197,0.8137246966362,0.602307975292206,\r\n0.812216877937317,0.612638413906097,0.802194058895111,0.603538513183594,0.898138463497162,0.464527606964111,0.901233792304993,0.472052663564682,0.903582215309143,0.479623287916183,0.893087148666382,0.481491893529892,0.825505971908569,0.606004655361176,0.821582674980164,0.608050465583801,0.819967269897461,0.610648274421692,0.814295649528503,0.610709071159363,0.807112395763397,0.61199027299881,0.805427372455597,0.608004927635193,0.799713969230652,0.601315438747406,0.901184439659119,0.467454582452774,0.905848324298859,0.477278679609299,0.901212275028229,0.484074503183365,0.897423148155212,0.482570499181747,0.819195032119751,0.614182949066162,0.811537027359009,0.617596089839935,0.814350068569183,0.61690229177475,0.801644563674927,0.606981992721558,0.903593599796295,0.470199257135391,0.906153440475464,0.473273068666458,0.901379346847534,0.464476972818375,0.910698354244232,0.482747763395309,0.905548274517059,0.485381007194519,0.826899826526642,0.610957205295563,0.824804663658142,0.614000618457794,0.825014770030975,0.618517696857452,0.817135274410248,0.615616023540497,0.802940964698792,0.611230671405792,0.904338002204895,0.46754065155983,0.910424888134003,0.47786608338356,0.903744220733643,0.465418875217438,0.821933388710022,0.618796229362488,0.818891167640686,0.618983566761017,0.81311571598053,0.621449768543243,0.816109836101532,0.620406568050385,0.906404078006744,0.469566255807877,0.909981787204742,0.473288267850876,0.916859924793243,0.484758138656616,0.910141289234161,0.48814594745636,0.826812505722046,0.622032105922699,0.809598803520203,0.619272232055664,0.907900512218475,0.468112885951996,0.909179151058197,0.47066006064415,0.913246750831604,0.475440442562103,0.917743563652039,0.480787992477417,0.913927853107452,0.48666724562645,0.907457411289215,0.490191787481308,0.820467352867126,0.622457444667816,0.823685526847839,0.622872710227966,0.817923963069916,0.62369304895401,0.816037654876709,0.624903380870819,0.912516295909882,0.472898334264755,0.911565542221069,0.471343696117401,0.920592069625854,0.483831435441971,0.916428208351135,\r\n0.489796787500381,0.912373244762421,0.491214692592621,0.828288614749908,0.626392185688019,0.917252361774445,0.47623547911644,0.914924204349518,0.47368323802948,0.920697152614594,0.480311989784241,0.919855237007141,0.488404184579849,0.822437226772308,0.626300990581512,0.819621682167053,0.626280784606934,0.831733405590057,0.626513719558716,0.826107323169708,0.628113925457001,0.818625330924988,0.627673327922821,0.919319748878479,0.478068649768829,0.91722959280014,0.475136607885361,0.923018932342529,0.48141086101532,0.923332929611206,0.486743211746216,0.918452560901642,0.492895931005478,0.914243102073669,0.494111299514771,0.831633388996124,0.630017995834351,0.826812505722046,0.630767464637756,0.923429131507874,0.483557969331741,0.922173261642456,0.491493225097656,0.823903262615204,0.630119264125824,0.821124374866486,0.629298865795136,0.925623118877411,0.482611030340195,0.925868690013886,0.484155535697937,0.92597758769989,0.489629685878754,0.920064151287079,0.495990008115768,0.915674924850464,0.496876209974289,0.833324730396271,0.634205877780914,0.825792133808136,0.632124602794647,0.926344692707062,0.486155807971954,0.92423939704895,0.494597434997559,0.823512077331543,0.631770074367523,0.834788262844086,0.630544602870941,0.829558432102203,0.63501101732254,0.928403198719025,0.484874606132507,0.928063929080963,0.493007332086563,0.928315877914429,0.486854612827301,0.921794772148132,0.498992949724197,0.91703587770462,0.499565184116364,0.835676968097687,0.633329808712006,0.832977890968323,0.636864423751831,0.926302969455719,0.497747212648392,0.929678082466125,0.489082753658295,0.837134122848511,0.634383082389832,0.835623800754547,0.636894822120667,0.930961787700653,0.486763477325439,0.931618869304657,0.49173629283905,0.930333852767944,0.496030539274216,0.93298614025116,0.489168852567673,0.934954702854156,0.494298666715622,0.934377431869507,0.491194427013397,0.932625293731689,0.499317049980164,0.936506807804108,0.492146462202072,0.938708364963531,0.493853032588959,0.939186930656433,0.496167242527008,0.936349868774414,0.498142212629318,\r\n0.939159095287323,0.500451385974884,0.942130386829376,0.497990280389786,0.942641854286194,0.500633656978607,0.940934002399445,0.504213869571686,0.944638311862946,0.4996158182621,0.945252299308777,0.503130197525024,0.94488388299942,0.508533477783203,0.945468783378601,0.500947654247284,0.947060108184814,0.505778670310974,0.947401940822601,0.501995861530304,0.949200928211212,0.50379866361618,0.94993269443512,0.507551074028015,0.947577953338623,0.51290363073349,0.705152034759521,0.895929276943207,0.708906948566437,0.893133997917175,0.7079017162323,0.898876488208771,0.70516973733902,0.90177309513092,0.331245332956314,0.94816917181015,0.337620854377747,0.952650725841522,0.32857409119606,0.950908720493317,0.33762463927269,0.94822233915329,0.331263035535812,0.953673660755157,0.334530562162399,0.94545990228653,0.334520429372787,0.956367671489716,0.328733593225479,0.94537889957428,0.340375661849976,0.945457398891449,0.331578284502029,0.942616522312164,0.338046222925186,0.942707657814026,0.335358530282974,0.939940214157104,0.329534977674484,0.93991231918335,0.341050416231155,0.939930081367493,0.332691073417664,0.937160074710846,0.338986843824387,0.937266409397125,0.336414366960526,0.934547066688538,0.330500930547714,0.934390068054199,0.341842919588089,0.934481263160706,0.333841860294342,0.931726455688477,0.34007054567337,0.931789755821228,0.329129844903946,0.931782126426697,0.337960124015808,0.929022312164307,0.33187073469162,0.928923547267914,0.34307473897934,0.928996980190277,0.335640847682953,0.926201641559601,0.341608732938766,0.926287770271301,0.330909818410873,0.92625480890274,0.339679360389709,0.92352283000946,0.334136843681335,0.92346203327179,0.338099390268326,0.920803487300873,0.342415153980255,0.918048679828644,0.344426810741425,0.923540532588959,0.408306211233139,0.495990008115768,0.412970125675201,0.495245605707169,0.408559411764145,0.507313013076782,0.409744381904602,0.47967392206192,0.414266496896744,0.509272813796997,0.403860032558441,0.501747727394104,0.418656945228577,0.485041737556458,0.404103100299835,0.484469503164291,\r\n0.419482380151749,0.498213082551956,0.411354720592499,0.518038511276245,0.400821655988693,0.509819686412811,0.401702791452408,0.495053172111511,0.416357904672623,0.473430067300797,0.423330992460251,0.488454848527908,0.406093239784241,0.475820243358612,0.419127881526947,0.507687747478485,0.419234246015549,0.513703763484955,0.405743837356567,0.513080894947052,0.400370955467224,0.501864194869995,0.409977316856384,0.468821853399277,0.423280358314514,0.475146740674973,0.428339242935181,0.479562520980835,0.385594308376312,0.490429788827896,0.395028501749039,0.480124622583389,0.425280600786209,0.497716814279556,0.419973582029343,0.522530257701874,0.409967184066772,0.522970795631409,0.401631891727448,0.516726970672607,0.391022890806198,0.505910336971283,0.386515974998474,0.495164602994919,0.414934933185577,0.460096627473831,0.419963449239731,0.466072112321854,0.427807539701462,0.490247488021851,0.387027412652969,0.483851701021194,0.392511695623398,0.466932982206345,0.403156161308289,0.467236816883087,0.425868034362793,0.504826605319977,0.425685733556747,0.511262953281403,0.42524516582489,0.518448710441589,0.403252363204956,0.524216532707214,0.388435214757919,0.510619819164276,0.407055407762527,0.454708576202393,0.429488778114319,0.474939107894897,0.431200385093689,0.491153925657272,0.382753431797028,0.496147006750107,0.3813456594944,0.486778676509857,0.387538880109787,0.474326372146606,0.404771566390991,0.459352225065231,0.42822277545929,0.500674188137054,0.429149478673935,0.507383942604065,0.41055965423584,0.528839945793152,0.422946125268936,0.526115536689758,0.404958933591843,0.529862880706787,0.392582595348358,0.527898073196411,0.388379514217377,0.521031320095062,0.415178000926971,0.454414874315262,0.418996244668961,0.460557460784912,0.433463990688324,0.480377823114395,0.433094322681427,0.47368323802948,0.378519952297211,0.494313836097717,0.376382976770401,0.475460708141327,0.382196396589279,0.471369028091431,0.394172668457031,0.461099296808243,0.432775288820267,0.503945529460907,0.431053519248962,0.511789560317993,0.430339515209198,\r\n0.517532110214233,0.4136081635952,0.532587289810181,0.41984698176384,0.533691227436066,0.430425614118576,0.524955868721008,0.384313136339188,0.509536147117615,0.410195052623749,0.447821587324142,0.400852054357529,0.453366637229919,0.423913329839706,0.464011073112488,0.435504764318466,0.486950844526291,0.374099135398865,0.490718424320221,0.378140151500702,0.467879951000214,0.388318747282028,0.452444970607758,0.431954920291901,0.500350117683411,0.433641225099564,0.507140874862671,0.429387480020523,0.530252814292908,0.398573249578476,0.532511353492737,0.386298209428787,0.529381811618805,0.381897628307343,0.515572369098663,0.401176154613495,0.446216315031052,0.415522366762161,0.445102244615555,0.419122844934464,0.451695531606674,0.423153758049011,0.450424462556839,0.436912536621094,0.479982823133469,0.436137765645981,0.472376763820648,0.434390693902969,0.491862893104553,0.377046346664429,0.505317866802216,0.372488766908646,0.494111299514771,0.371551960706711,0.475455641746521,0.395651340484619,0.452637404203415,0.43589973449707,0.500066518783569,0.438735574483871,0.506578743457794,0.437824040651321,0.519294381141663,0.403784096240997,0.535863697528839,0.412205457687378,0.53655743598938,0.429787546396255,0.534233093261719,0.435064196586609,0.52907794713974,0.389594852924347,0.533787429332733,0.403470128774643,0.442914605140686,0.411881357431412,0.441289067268372,0.426632702350616,0.461944967508316,0.431975185871124,0.465135276317596,0.439241975545883,0.485786139965057,0.437940537929535,0.490860223770142,0.366953879594803,0.48641911149025,0.36630567908287,0.477349549531937,0.378454118967056,0.458202719688416,0.389913886785507,0.446079581975937,0.437505036592484,0.50357586145401,0.440442115068436,0.51403796672821,0.404624700546265,0.538896977901459,0.412833392620087,0.539661645889282,0.419411480426788,0.537286639213562,0.435200929641724,0.534764766693115,0.395717173814774,0.53713470697403,0.381765961647034,0.526075005531311,0.38461697101593,0.53415709733963,0.37599304318428,0.512098491191864,0.399413883686066,0.440362364053726,\r\n0.418520212173462,0.440458565950394,0.420490115880966,0.444914877414703,0.42695677280426,0.452779203653336,0.440381348133087,0.479689121246338,0.437373369932175,0.469069987535477,0.370387226343155,0.499661386013031,0.362441867589951,0.490055054426193,0.372341930866241,0.465115010738373,0.363307803869247,0.47150069475174,0.376534879207611,0.454354107379913,0.384576469659805,0.449487626552582,0.443688124418259,0.503540396690369,0.445288330316544,0.513394892215729,0.448159605264664,0.52521413564682,0.440963715314865,0.52808541059494,0.39645653963089,0.541099786758423,0.40228009223938,0.542745590209961,0.429969847202301,0.537580370903015,0.440016746520996,0.531184554100037,0.387928813695908,0.537620842456818,0.409496247768402,0.435435116291046,0.414322197437286,0.433333575725555,0.431965053081512,0.446196049451828,0.430369883775711,0.460861295461655,0.440887749195099,0.47375413775444,0.436239033937454,0.462623566389084,0.443105757236481,0.481841295957565,0.44134858250618,0.488389015197754,0.439368575811386,0.496390074491501,0.360370725393295,0.482742697000504,0.357661485671997,0.477886348962784,0.371592462062836,0.459129422903061,0.383229464292526,0.439521759748459,0.443055123090744,0.499661386013031,0.445207327604294,0.517051041126251,0.444204658269882,0.506705343723297,0.412306725978851,0.542659521102905,0.406746506690979,0.54508513212204,0.420363515615463,0.54138845205307,0.434583127498627,0.544335663318634,0.438811510801315,0.539697110652924,0.391747027635574,0.539661645889282,0.378742784261703,0.528956413269043,0.372630566358566,0.51809424161911,0.380986124277115,0.535443365573883,0.369845390319824,0.506695210933685,0.408508747816086,0.432133436203003,0.391498893499374,0.439450860023499,0.427468240261078,0.438508957624435,0.417730242013931,0.431308001279831,0.428982377052307,0.443041205406189,0.436102300882339,0.449538260698318,0.4354287981987,0.456713914871216,0.443981826305389,0.476569712162018,0.441920787096024,0.470751225948334,0.361044228076935,0.499681651592255,0.356805682182312,0.490667790174484,0.360937863588333,\r\n0.466846913099289,0.356542348861694,0.468710452318192,0.365936011075974,0.463443905115128,0.371921628713608,0.446722716093063,0.377021014690399,0.446155548095703,0.446432799100876,0.502461791038513,0.449233174324036,0.520727455615997,0.45388188958168,0.516453504562378,0.45172968506813,0.510174155235291,0.445268094539642,0.532055556774139,0.389123916625977,0.544082462787628,0.397150278091431,0.546341001987457,0.426987171173096,0.540912449359894,0.431124418973923,0.544173657894135,0.442199319601059,0.538583040237427,0.385746240615845,0.541742920875549,0.380859524011612,0.540542781352997,0.366255044937134,0.505819141864777,0.397383242845535,0.434675544500351,0.422991693019867,0.431652337312698,0.413132160902023,0.427712589502335,0.433539927005768,0.43995726108551,0.437155604362488,0.443451374769211,0.439322978258133,0.462826102972031,0.445759296417236,0.480874091386795,0.443120956420898,0.490870356559753,0.442224651575089,0.495635539293289,0.353154569864273,0.479830890893936,0.354258507490158,0.472336232662201,0.361150562763214,0.453397005796433,0.389291018247604,0.435825049877167,0.376585513353348,0.437972187995911,0.448033004999161,0.497073709964752,0.452869087457657,0.520727455615997,0.45378565788269,0.527604341506958,0.450423210859299,0.531979620456696,0.409713983535767,0.546097934246063,0.395950138568878,0.552220284938812,0.424212127923965,0.543687522411346,0.43861910700798,0.546898066997528,0.435094565153122,0.547971606254578,0.441505551338196,0.546720802783966,0.375436007976532,0.531047821044922,0.373187601566315,0.524844467639923,0.377517282962799,0.537428438663483,0.401029288768768,0.42698335647583,0.431843519210815,0.431657403707504,0.419183611869812,0.423200577497482,0.440244615077972,0.449786394834518,0.440634548664093,0.456951916217804,0.446209967136383,0.473982036113739,0.442462652921677,0.465023875236511,0.446366965770721,0.47707611322403,0.447440534830093,0.486059576272964,0.446361899375916,0.491807192564011,0.362745702266693,0.506538271903992,0.355418145656586,0.498400449752808,0.351285964250565,0.475526541471481,\r\n0.349878191947937,0.482079297304153,0.354405373334885,0.45834955573082,0.350460529327393,0.461884200572968,0.358962923288345,0.450232028961182,0.388060480356216,0.432179003953934,0.381786227226257,0.434609711170197,0.456099897623062,0.504938066005707,0.455147862434387,0.513475894927979,0.45864200592041,0.522008657455444,0.454818725585938,0.53271895647049,0.449491441249847,0.53581303358078,0.388131380081177,0.551799952983856,0.406189471483231,0.553177356719971,0.427842974662781,0.54616379737854,0.429250746965408,0.548143804073334,0.446787267923355,0.546158730983734,0.38404980301857,0.54522693157196,0.37477770447731,0.540927648544312,0.369268089532852,0.524363398551941,0.40767827630043,0.426021218299866,0.422394156455994,0.421311736106873,0.415152668952942,0.419311463832855,0.436355501413345,0.434513479471207,0.441606819629669,0.447654485702515,0.44543519616127,0.467155814170837,0.443505823612213,0.461585432291031,0.449790209531784,0.481618493795395,0.35892242193222,0.506963610649109,0.353215336799622,0.491022258996964,0.348232388496399,0.477390080690384,0.348141252994537,0.465530276298523,0.354815542697906,0.452541202306747,0.366710811853409,0.441982835531235,0.371344327926636,0.437440454959869,0.376575410366058,0.432047337293625,0.449324309825897,0.491508394479752,0.452874153852463,0.497129410505295,0.457451969385147,0.530424952507019,0.461984217166901,0.521487057209015,0.382485032081604,0.551263213157654,0.409653216600418,0.549819946289063,0.420677483081818,0.547060072422028,0.397474378347397,0.55665123462677,0.392481327056885,0.55582582950592,0.437302470207214,0.550584614276886,0.442822188138962,0.550463080406189,0.431053519248962,0.552083551883698,0.448741972446442,0.552929222583771,0.37418520450592,0.54638659954071,0.372063398361206,0.533058226108551,0.368235051631927,0.528212010860443,0.373557269573212,0.537317037582397,0.410909086465836,0.419306397438049,0.387300878763199,0.426517486572266,0.405713438987732,0.421240836381912,0.429822981357574,0.424978047609329,0.418277144432068,0.416409820318222,0.439814180135727,\r\n0.44266140460968,0.443814724683762,0.451918333768845,0.451841115951538,0.469307988882065,0.450853645801544,0.474716305732727,0.452109485864639,0.477744549512863,0.450483977794647,0.487928181886673,0.361925363540649,0.517633378505707,0.355180144309998,0.507358610630035,0.350759297609329,0.497291445732117,0.344768643379211,0.468386352062225,0.346804350614548,0.485355705022812,0.344961076974869,0.4792839884758,0.348404556512833,0.456182181835175,0.345426946878433,0.461980432271957,0.35139736533165,0.453969240188599,0.352567136287689,0.444038808345795,0.359788358211517,0.438291192054749,0.456813931465149,0.499970287084579,0.459072440862656,0.50823974609375,0.462986886501312,0.512387156486511,0.462556451559067,0.527857542037964,0.457436800003052,0.538117110729218,0.454276859760284,0.538360238075256,0.453441321849823,0.547343671321869,0.388425081968308,0.558119773864746,0.412848591804504,0.55411422252655,0.405115902423859,0.557279169559479,0.424060195684433,0.554615557193756,0.450367480516434,0.55060487985611,0.370741724967957,0.540000915527344,0.364766240119934,0.524135529994965,0.391169756650925,0.420612901449203,0.39997598528862,0.422906875610352,0.435352832078934,0.425960451364517,0.425159066915512,0.414029747247696,0.415096968412399,0.40887463092804,0.420474916696548,0.410454601049423,0.439662277698517,0.436402350664139,0.44660496711731,0.445385813713074,0.447896271944046,0.448971092700958,0.446341633796692,0.459271222352982,0.447881072759628,0.463530004024506,0.45544159412384,0.481218427419662,0.454737693071365,0.485639274120331,0.341401100158691,0.470067590475082,0.366214513778687,0.433596909046173,0.369561821222305,0.429408997297287,0.454737693071365,0.495073437690735,0.459695309400558,0.50123119354248,0.466577231884003,0.516696572303772,0.46463268995285,0.525320470333099,0.459847241640091,0.533498823642731,0.385543674230576,0.559846639633179,0.411066055297852,0.559041440486908,0.404599368572235,0.561846852302551,0.395600706338882,0.560732781887054,0.440786480903625,0.552908957004547,0.434542596340179,0.55783623456955,\r\n0.448863506317139,0.555213093757629,0.431914418935776,0.559552907943726,0.454064190387726,0.551881015300751,0.377198278903961,0.551891148090363,0.367895752191544,0.544153392314911,0.368873119354248,0.535291433334351,0.360223859548569,0.527082741260529,0.408387213945389,0.410383701324463,0.384100437164307,0.420217901468277,0.373471200466156,0.426365554332733,0.394071400165558,0.418212592601776,0.44078141450882,0.431206703186035,0.436694800853729,0.422253638505936,0.428258210420609,0.416804790496826,0.446113765239716,0.44162330031395,0.4499471783638,0.453554004430771,0.456520199775696,0.468644618988037,0.458100169897079,0.478868752717972,0.350035160779953,0.516448438167572,0.351858198642731,0.504299998283386,0.346692949533463,0.497934579849243,0.339912295341492,0.466087311506271,0.342049300670624,0.481532394886017,0.338418424129486,0.474108636379242,0.346313148736954,0.451087832450867,0.344241976737976,0.455280810594559,0.347898155450821,0.443664073944092,0.351022630929947,0.437379688024521,0.357438683509827,0.43116620182991,0.457760870456696,0.495519071817398,0.462657749652863,0.508103013038635,0.467144399881363,0.51144015789032,0.466324031352997,0.529179215431213,0.465361893177032,0.532248020172119,0.46052074432373,0.538238644599915,0.457821637392044,0.545621931552887,0.380773425102234,0.558828771114349,0.389974653720856,0.570886075496674,0.418616443872452,0.55576503276825,0.393818199634552,0.566125929355621,0.43763667345047,0.555142164230347,0.454889625310898,0.559016108512878,0.428227841854095,0.560646712779999,0.462090581655502,0.554088890552521,0.370326459407806,0.550594747066498,0.366067677736282,0.540598452091217,0.362614035606384,0.53506863117218,0.354055941104889,0.521963119506836,0.364968806505203,0.537615776062012,0.400092452764511,0.411761105060577,0.385295540094376,0.410717904567719,0.442675322294235,0.429282397031784,0.43371719121933,0.41320937871933,0.432385355234146,0.409299999475479,0.410412818193436,0.40327388048172,0.419872283935547,0.402372509241104,0.44414895772934,0.436827719211578,0.45185124874115,\r\n0.447193652391434,0.452403217554092,0.461985498666763,0.457862168550491,0.473293334245682,0.454985827207565,0.47551640868187,0.45807483792305,0.487528145313263,0.348531156778336,0.501236259937286,0.339041292667389,0.495048105716705,0.336094081401825,0.467069715261459,0.341902434825897,0.486839443445206,0.33726891875267,0.457341849803925,0.363626837730408,0.429657131433487,0.3673235476017,0.421959906816483,0.460181444883347,0.493412464857101,0.462379217147827,0.503991067409515,0.46939280629158,0.513931632041931,0.468385070562363,0.519739985466003,0.469058573246002,0.523836731910706,0.465564459562302,0.534501492977142,0.462424784898758,0.546270132064819,0.38529047369957,0.568485736846924,0.417259305715561,0.562429249286652,0.408863246440887,0.563902854919434,0.399646818637848,0.565913259983063,0.42294105887413,0.560661911964417,0.448341906070709,0.557831168174744,0.439100176095963,0.560312509536743,0.436856836080551,0.560504913330078,0.459826976060867,0.558023571968079,0.451699316501617,0.559411108493805,0.432638555765152,0.564505457878113,0.370741724967957,0.560823976993561,0.375932276248932,0.561127781867981,0.365768909454346,0.549359142780304,0.363500237464905,0.545206665992737,0.359038889408112,0.533113956451416,0.347148716449738,0.526196539402008,0.402082592248917,0.404555082321167,0.370964527130127,0.420314133167267,0.378565549850464,0.418192327022552,0.389782220125198,0.406281888484955,0.446128964424133,0.436220049858093,0.439393877983093,0.419812798500061,0.430856049060822,0.403061211109161,0.414661467075348,0.402250975370407,0.454038858413696,0.442144870758057,0.454449057579041,0.451908200979233,0.457882404327393,0.457093715667725,0.459290206432343,0.467272281646729,0.46141704916954,0.472204566001892,0.460439711809158,0.487831979990005,0.345958679914474,0.51538497209549,0.337987989187241,0.501889526844025,0.330452799797058,0.488328248262405,0.330265432596207,0.471819698810577,0.33471667766571,0.450728297233582,0.344181209802628,0.443370372056961,0.344885110855103,0.434903413057327,0.351458132266998,0.431844770908356,\r\n0.356243580579758,0.425170481204987,0.462460249662399,0.497762411832809,0.469342172145844,0.509318351745605,0.46505805850029,0.504259467124939,0.469868808984756,0.533873558044434,0.464744091033936,0.544634461402893,0.465655595064163,0.537884175777435,0.378990918397903,0.566698133945465,0.392035692930222,0.573559820652008,0.38734644651413,0.575079023838043,0.398958116769791,0.571893811225891,0.444766759872437,0.55737030506134,0.436922669410706,0.56445986032486,0.461958914995193,0.561142981052399,0.455320060253143,0.564687788486481,0.422384023666382,0.566060066223145,0.368417352437973,0.555506765842438,0.357646286487579,0.540411114692688,0.356704413890839,0.537114500999451,0.351073265075684,0.528313279151917,0.342175900936127,0.522175788879395,0.376458942890167,0.41174590587616,0.447936803102493,0.430609166622162,0.449886411428452,0.428249359130859,0.43705940246582,0.409137964248657,0.438998878002167,0.414526015520096,0.403885364532471,0.39943540096283,0.425878167152405,0.397409826517105,0.454788327217102,0.445922583341599,0.459614306688309,0.473997205495834,0.46137148141861,0.474706172943115,0.347305685281754,0.510746419429779,0.335233181715012,0.499205619096756,0.334205210208893,0.493498533964157,0.339051425457001,0.505626738071442,0.332574605941772,0.456399947404861,0.332204937934875,0.478767484426498,0.325900316238403,0.461661398410797,0.347867786884308,0.43258410692215,0.357590585947037,0.420790135860443,0.361499965190887,0.420197665691376,0.369420021772385,0.414809584617615,0.462303251028061,0.490718424320221,0.464597225189209,0.49525573849678,0.46431365609169,0.501550257205963,0.471747547388077,0.510624885559082,0.471641212701797,0.515314102172852,0.470775276422501,0.520155251026154,0.472091913223267,0.528272807598114,0.468547135591507,0.53705370426178,0.465316325426102,0.542522788047791,0.383021831512451,0.573828220367432,0.412489026784897,0.567761600017548,0.40302449464798,0.574689090251923,0.448873609304428,0.564383924007416,0.442979156970978,0.562079846858978,0.440280079841614,0.564358592033386,0.4574975669384,\r\n0.563325524330139,0.452068984508514,0.563664853572845,0.434608429670334,0.572116613388062,0.465144127607346,0.559056639671326,0.365677744150162,0.560054242610931,0.363885104656219,0.55330902338028,0.355544745922089,0.550822615623474,0.353498905897141,0.546928465366364,0.349579393863678,0.533119022846222,0.344292610883713,0.534800231456757,0.395003169775009,0.400736838579178,0.383264899253845,0.407861828804016,0.451846182346344,0.435035079717636,0.444589495658875,0.41962543129921,0.441373884677887,0.416247755289078,0.438649475574493,0.40000256896019,0.432537287473679,0.396589457988739,0.457289934158325,0.442362636327744,0.457968503236771,0.447553187608719,0.463802188634872,0.461863964796066,0.462855219841003,0.468872487545013,0.461391746997833,0.473455369472504,0.464663058519363,0.48542657494545,0.342008769512177,0.515131831169128,0.330579400062561,0.496334373950958,0.328047424554825,0.484692305326462,0.326740920543671,0.473541468381882,0.325069814920425,0.467950850725174,0.333025306463242,0.446064382791519,0.340773165225983,0.435450315475464,0.331470668315887,0.452723503112793,0.340641498565674,0.423884212970734,0.347498118877411,0.421686470508575,0.344363510608673,0.423372775316238,0.353058338165283,0.418982297182083,0.469630807638168,0.506391406059265,0.468223035335541,0.499995619058609,0.471641212701797,0.506963610649109,0.474335223436356,0.530141413211823,0.470461308956146,0.538208305835724,0.464997291564941,0.553374886512756,0.466784864664078,0.541758120059967,0.379137754440308,0.573301553726196,0.391205191612244,0.578395903110504,0.382961064577103,0.577610969543457,0.416945338249207,0.569037735462189,0.396274209022522,0.575833559036255,0.447030335664749,0.564551055431366,0.441986620426178,0.570693612098694,0.458429336547852,0.567199468612671,0.452195584774017,0.569088339805603,0.424019694328308,0.57329648733139,0.438588708639145,0.572607815265656,0.463832587003708,0.563041985034943,0.37463590502739,0.572071015834808,0.364816874265671,0.564348459243774,0.350283294916153,0.545794129371643,0.354218006134033,0.539494514465332,\r\n0.337132185697556,0.523416459560394,0.388435214757919,0.400458335876465,0.369617521762848,0.402038276195526,0.451547384262085,0.42583891749382,0.439439445734024,0.406884491443634,0.44509083032608,0.411204069852829,0.454752892255783,0.435612380504608,0.457543134689331,0.437496155500412,0.459761142730713,0.450201660394669,0.465559393167496,0.454688310623169,0.464678257703781,0.469429522752762,0.463108420372009,0.472781866788864,0.464516222476959,0.480013221502304,0.339674293994904,0.510027348995209,0.338798224925995,0.517608106136322,0.334372311830521,0.508857548236847,0.326528251171112,0.493108630180359,0.326811820268631,0.480529725551605,0.324634313583374,0.486803978681564,0.320785701274872,0.465287208557129,0.335769981145859,0.436726450920105,0.338276624679565,0.425038814544678,0.362062066793442,0.413229644298553,0.370083391666412,0.407203525304794,0.466632932424545,0.488591551780701,0.468309134244919,0.496536910533905,0.473297119140625,0.514924168586731,0.473854154348373,0.535554766654968,0.46840026974678,0.540841579437256,0.467164665460587,0.55214935541153,0.379527688026428,0.576557695865631,0.385670274496078,0.578882038593292,0.408589780330658,0.577124834060669,0.398877114057541,0.577362835407257,0.44987627863884,0.568926274776459,0.44484269618988,0.566429793834686,0.458014070987701,0.570627808570862,0.431220650672913,0.577448964118958,0.439014077186584,0.578588366508484,0.468020468950272,0.558864176273346,0.359423756599426,0.558383107185364,0.360553026199341,0.561558246612549,0.35124546289444,0.555623292922974,0.348647624254227,0.553521692752838,0.348566621541977,0.542482256889343,0.346622049808502,0.538886845111847,0.33843868970871,0.53090101480484,0.379482120275497,0.398751765489578,0.454018622636795,0.429940730333328,0.447319000959396,0.417827725410461,0.451598048210144,0.411715507507324,0.444002091884613,0.4001544713974,0.438082307577133,0.394948720932007,0.460363745689392,0.443912208080292,0.46137148141861,0.440448462963104,0.467807799577713,0.457235485315323,0.466465830802917,0.462988168001175,0.466926664113998,\r\n0.479972690343857,0.464794725179672,0.473359167575836,0.328731060028076,0.506761074066162,0.327318221330643,0.452647536993027,0.322573274374008,0.495083570480347,0.323813945055008,0.483395934104919,0.325074881315231,0.475040405988693,0.321844071149826,0.469551056623459,0.324376046657562,0.456070780754089,0.329627394676209,0.448773622512817,0.331298500299454,0.436868220567703,0.34572571516037,0.419276028871536,0.336757451295853,0.421691536903381,0.366624712944031,0.408428996801376,0.471783012151718,0.502578258514404,0.473985821008682,0.497078776359558,0.474274456501007,0.511171758174896,0.475793659687042,0.521137654781342,0.476370960474014,0.532901227474213,0.472172915935516,0.541277050971985,0.375142306089401,0.575818359851837,0.417061805725098,0.580740511417389,0.404108166694641,0.57936817407608,0.447065800428391,0.56816166639328,0.444862961769104,0.571883678436279,0.442381620407104,0.580041706562042,0.460865080356598,0.568617403507233,0.453086853027344,0.575013160705566,0.435418665409088,0.57834529876709,0.426728904247284,0.579753041267395,0.469909340143204,0.563366055488586,0.370640426874161,0.571650683879852,0.359362989664078,0.566379129886627,0.341578334569931,0.550756812095642,0.339542627334595,0.547718405723572,0.341031432151794,0.537099301815033,0.335010379552841,0.529148876667023,0.33400771021843,0.517699241638184,0.361768364906311,0.400822937488556,0.457097500562668,0.431865036487579,0.454540193080902,0.4224713742733,0.449385076761246,0.406261622905731,0.432517021894455,0.393870115280151,0.459609240293503,0.435394614934921,0.464906126260757,0.451209366321564,0.468000203371048,0.452201902866364,0.470592975616455,0.460091561079025,0.467230498790741,0.485730409622192,0.32538378238678,0.500618457794189,0.330047696828842,0.511060357093811,0.322299838066101,0.473440170288086,0.321145236492157,0.487528145313263,0.318982928991318,0.460770130157471,0.318582862615585,0.465520143508911,0.328563958406448,0.44308677315712,0.333683609962463,0.429459661245346,0.344525575637817,0.417751759290695,0.333217740058899,0.424390614032745,\r\n0.349361658096313,0.416409820318222,0.352901369333267,0.410890102386475,0.362406432628632,0.408955663442612,0.471990615129471,0.499666452407837,0.468820571899414,0.492744028568268,0.47808763384819,0.512630224227905,0.477682530879974,0.518656313419342,0.476720362901688,0.527599275112152,0.478426933288574,0.533650696277618,0.47531259059906,0.545591533184052,0.470056176185608,0.541287183761597,0.373754769563675,0.578542768955231,0.370939195156097,0.575236022472382,0.397752910852432,0.580441772937775,0.413552463054657,0.580811440944672,0.409177213907242,0.580846846103668,0.448321640491486,0.574071288108826,0.445349097251892,0.577155232429504,0.463083118200302,0.569007337093353,0.454692125320435,0.572395086288452,0.450782746076584,0.57674503326416,0.461234748363495,0.571519076824188,0.432035952806473,0.585536122322083,0.439247012138367,0.583814382553101,0.472871750593185,0.55855530500412,0.468769937753677,0.567245066165924,0.365237176418304,0.569716274738312,0.351812601089478,0.56390792131424,0.344525575637817,0.557871639728546,0.345507979393005,0.54188472032547,0.342246770858765,0.540593445301056,0.336868852376938,0.53697270154953,0.332954406738281,0.523983597755432,0.449952244758606,0.41732132434845,0.454104691743851,0.410869836807251,0.450175076723099,0.400822937488556,0.462632417678833,0.443917274475098,0.461725980043411,0.435470581054688,0.466876029968262,0.447289854288101,0.470203042030334,0.45287036895752,0.47045624256134,0.464031338691711,0.469853639602661,0.467495083808899,0.467873632907867,0.47246789932251,0.469590306282043,0.48297056555748,0.324289977550507,0.507161140441895,0.326735854148865,0.513202428817749,0.327065020799637,0.447684854269028,0.316653519868851,0.44593271613121,0.320973068475723,0.499246150255203,0.320132464170456,0.47910675406456,0.317666292190552,0.472564101219177,0.315493851900101,0.450925797224045,0.327221989631653,0.43534904718399,0.3324935734272,0.421747237443924,0.341076999902725,0.415189385414124,0.358745187520981,0.402494043111801,0.466339230537415,0.494248002767563,0.476558327674866,\r\n0.493999868631363,0.478396534919739,0.508320748806,0.47868013381958,0.528485476970673,0.477783799171448,0.540051579475403,0.471367746591568,0.546584069728851,0.469706773757935,0.544062256813049,0.371501296758652,0.577616035938263,0.427994906902313,0.58659952878952,0.412651091814041,0.583328187465668,0.402482628822327,0.582021713256836,0.445333898067474,0.583885252475739,0.45534536242485,0.577145099639893,0.455031394958496,0.582193911075592,0.459685176610947,0.573711752891541,0.435697197914124,0.584903120994568,0.442482888698578,0.585748791694641,0.469995409250259,0.555066227912903,0.367085516452789,0.574273824691772,0.346242249011993,0.563274919986725,0.364614307880402,0.576243698596954,0.352182269096375,0.56730580329895,0.338717192411423,0.552888751029968,0.339552760124207,0.543839395046234,0.338195621967316,0.540471911430359,0.333283573389053,0.531503617763519,0.330655366182327,0.526900470256805,0.458945840597153,0.429282397031784,0.453147619962692,0.417878359556198,0.44586056470871,0.39812383055687,0.4639692902565,0.438245624303818,0.461270213127136,0.428694993257523,0.470182776451111,0.457336783409119,0.469954907894135,0.447441786527634,0.471089243888855,0.489867687225342,0.47041067481041,0.477486282587051,0.319838732481003,0.445952981710434,0.31856769323349,0.491022258996964,0.315660983324051,0.461230963468552,0.313199877738953,0.462729901075363,0.324771046638489,0.444135010242462,0.324163377285004,0.434994548559189,0.349052757024765,0.410890102386475,0.329551428556442,0.424836248159409,0.345123112201691,0.412875175476074,0.355149775743485,0.407740294933319,0.354866176843643,0.397288292646408,0.477140665054321,0.497600346803665,0.473838955163956,0.490607023239136,0.479535937309265,0.510938823223114,0.474765688180923,0.508401811122894,0.479394137859344,0.517289042472839,0.479348570108414,0.523451924324036,0.480614542961121,0.534866094589233,0.475251823663712,0.548888206481934,0.479490339756012,0.541540384292603,0.368518620729446,0.578811168670654,0.418773412704468,0.585728526115417,0.407019942998886,0.584082722663879,\r\n0.448174804449081,0.580193638801575,0.46503272652626,0.572511613368988,0.457254499197006,0.576739966869354,0.453107088804245,0.586326062679291,0.437145471572876,0.588027596473694,0.431529551744461,0.590159475803375,0.367141246795654,0.57740843296051,0.348050087690353,0.567407131195068,0.341659367084503,0.56009978055954,0.335035711526871,0.548498272895813,0.335430681705475,0.544224262237549,0.333450675010681,0.537519574165344,0.3280069231987,0.522849261760712,0.334235578775406,0.540335178375244,0.457325369119644,0.423003107309341,0.455912530422211,0.409563332796097,0.45601886510849,0.417777091264725,0.44798743724823,0.395029753446579,0.472527414560318,0.456192314624786,0.472177982330322,0.450085163116455,0.472041249275208,0.46934849023819,0.473600953817368,0.476909011602402,0.472654014825821,0.482747763395309,0.322071939706802,0.50821441411972,0.320431232452393,0.50487220287323,0.313918977975845,0.442823439836502,0.318643659353256,0.442524671554565,0.317321956157684,0.497671246528625,0.316992789506912,0.479137152433395,0.313341677188873,0.457873553037643,0.313432812690735,0.471951365470886,0.323196142911911,0.440078794956207,0.326573818922043,0.431490302085876,0.328331023454666,0.421929538249969,0.33482301235199,0.416288286447525,0.343593806028366,0.410322934389114,0.354800343513489,0.403709381818771,0.352020233869553,0.40128880739212,0.475601226091385,0.50043112039566,0.477495163679123,0.490156322717667,0.479454904794693,0.50371253490448,0.481247544288635,0.528591811656952,0.476781129837036,0.549318611621857,0.471919715404511,0.550366878509521,0.423447459936142,0.587627530097961,0.41499063372612,0.586477994918823,0.44866093993187,0.5850550532341,0.446346700191498,0.591334342956543,0.471281677484512,0.574906826019287,0.463559120893478,0.57497775554657,0.455335229635239,0.591749608516693,0.428258210420609,0.589242935180664,0.441652417182922,0.59581595659256,0.342955738306046,0.564667522907257,0.359585791826248,0.576020896434784,0.350820064544678,0.57503342628479,0.339010924100876,0.560742914676666,0.335866183042526,\r\n0.553045690059662,0.3297438621521,0.535331964492798,0.32659912109375,0.53004515171051,0.323236674070358,0.5239177942276,0.323099941015244,0.515152037143707,0.460176378488541,0.42477548122406,0.453497022390366,0.402433276176453,0.45128408074379,0.396407157182693,0.468405336141586,0.444008409976959,0.473525017499924,0.466107547283173,0.475256890058517,0.484651803970337,0.311756640672684,0.450905531644821,0.316410422325134,0.49347323179245,0.31411138176918,0.478038251399994,0.313832879066467,0.48396310210228,0.310434967279434,0.464871942996979,0.321444004774094,0.438336789608002,0.32471027970314,0.428446859121323,0.348105788230896,0.407649159431458,0.326432019472122,0.423453778028488,0.340403497219086,0.412181407213211,0.349862992763519,0.398523896932602,0.475454360246658,0.552858352661133,0.474456787109375,0.551850616931915,0.419396281242371,0.588376998901367,0.411420553922653,0.586072862148285,0.465761959552765,0.578021168708801,0.457933068275452,0.583044648170471,0.45197781920433,0.593405485153198,0.436152935028076,0.593537151813507,0.428324043750763,0.592134475708008,0.363864839076996,0.579545438289642,0.344814211130142,0.569245338439941,0.360198527574539,0.579165637493134,0.355063676834106,0.575408160686493,0.33134913444519,0.545713067054749,0.331425100564957,0.549728810787201,0.327348589897156,0.540431380271912,0.327794224023819,0.532192289829254,0.323930412530899,0.527437210083008,0.320805966854095,0.520610988140106,0.45764946937561,0.408434063196182,0.458885073661804,0.417402356863022,0.469813108444214,0.434346377849579,0.471180379390717,0.44372484087944,0.472345113754272,0.463859170675278,0.476998895406723,0.470852494239807,0.475616425275803,0.473136335611343,0.476062059402466,0.4792839884758,0.31874492764473,0.506102740764618,0.319372862577438,0.514149367809296,0.310070365667343,0.449011623859406,0.317595392465591,0.440023064613342,0.310754001140594,0.460000425577164,0.310293167829514,0.470862627029419,0.320917367935181,0.434133678674698,0.330133765935898,0.416814923286438,0.324011445045471,0.420931935310364,\r\n0.334782510995865,0.413179010152817,0.337952554225922,0.406626224517822,0.342170834541321,0.405486851930618,0.341456800699234,0.402190208435059,0.478001534938812,0.48237806558609,0.421199053525925,0.590939342975616,0.416747838258743,0.588837802410126,0.424541264772415,0.590539276599884,0.448969841003418,0.595785558223724,0.465412527322769,0.581955909729004,0.459654808044434,0.580867111682892,0.457846969366074,0.58908087015152,0.452291786670685,0.598155498504639,0.431914418935776,0.594549953937531,0.435788333415985,0.597578227519989,0.34006929397583,0.566642463207245,0.355965077877045,0.578907370567322,0.348632454872131,0.579418838024139,0.346890449523926,0.575286626815796,0.335658580064774,0.559993445873261,0.333217740058899,0.552726686000824,0.324553281068802,0.538507044315338,0.318425893783569,0.533341825008392,0.316380053758621,0.530308485031128,0.315969884395599,0.525067329406738,0.465488493442535,0.434903413057327,0.475920259952545,0.464790940284729,0.314663380384445,0.501828789710999,0.312531441450119,0.440185129642487,0.309437364339828,0.482889533042908,0.310318499803543,0.475597441196442,0.326664954423904,0.418151825666428,0.332984805107117,0.407330125570297,0.342464536428452,0.396174222230911,0.448448240756989,0.600019037723541,0.469357371330261,0.583024382591248,0.460135877132416,0.585809528827667,0.457274734973907,0.59581595659256,0.454712361097336,0.597436428070068,0.428344309329987,0.595203220844269,0.424946397542953,0.593430817127228,0.438608974218369,0.600221574306488,0.340347796678543,0.572035551071167,0.354633241891861,0.582047045230865,0.340722531080246,0.575995564460754,0.334650844335556,0.567933738231659,0.329217195510864,0.548331141471863,0.330133765935898,0.556089162826538,0.325520515441895,0.547946274280548,0.321114867925644,0.535919368267059,0.313731610774994,0.523142993450165,0.466784864664078,0.431733369827271,0.478467434644699,0.477222949266434,0.31544828414917,0.511430025100708,0.311594605445862,0.505804002285004,0.309229731559753,0.477582514286041,0.309563964605331,0.48581650853157,0.324730515480042,\r\n0.41655158996582,0.328442424535751,0.412500441074371,0.334002643823624,0.404286682605743,0.339127391576767,0.398736566305161,0.467397600412369,0.585571527481079,0.453603357076645,0.60359925031662,0.431965053081512,0.597466826438904,0.434648960828781,0.600489974021912,0.336899250745773,0.570420145988464,0.351579666137695,0.58179384469986,0.341963201761246,0.579499840736389,0.333658307790756,0.564080059528351,0.326538354158401,0.555385231971741,0.330817401409149,0.56004410982132,0.322694808244705,0.548356473445892,0.319777965545654,0.541666984558105,0.315397650003433,0.536314368247986,0.31307327747345,0.532207489013672,0.310480535030365,0.528617143630981,0.312566876411438,0.520565450191498,0.464389622211456,0.431429535150528,0.468035668134689,0.42732772231102,0.47989547252655,0.477379947900772,0.307730793952942,0.500365257263184,0.31314417719841,0.490728557109833,0.322937875986099,0.418668329715729,0.329105794429779,0.408555597066879,0.336818218231201,0.402347177267075,0.330245196819305,0.404869049787521,0.452276617288589,0.609043002128601,0.441130816936493,0.603229582309723,0.456646800041199,0.601355910301209,0.427265673875809,0.597497165203094,0.431392818689346,0.599943101406097,0.437327772378922,0.603396713733673,0.331820070743561,0.575494289398193,0.334544479846954,0.577291965484619,0.349012225866318,0.585455060005188,0.347574084997177,0.584021985530853,0.344323009252548,0.583363652229309,0.335157245397568,0.584052383899689,0.332275837659836,0.570541679859161,0.331485867500305,0.56537139415741,0.328670293092728,0.56048971414566,0.316349655389786,0.541474521160126,0.465478360652924,0.427580922842026,0.479480236768723,0.471465229988098,0.479794204235077,0.481400728225708,0.311037570238113,0.512361824512482,0.312420040369034,0.497504144906998,0.32186433672905,0.41639968752861,0.326330751180649,0.407836526632309,0.333531707525253,0.400478571653366,0.447688668966293,0.608060598373413,0.454828858375549,0.610491335391998,0.423270225524902,0.594752490520477,0.433661460876465,0.602890312671661,0.340251594781876,0.5849689245224,\r\n0.327429622411728,0.567898333072662,0.324315279722214,0.55946683883667,0.321190804243088,0.555947363376617,0.316673755645752,0.548528671264648,0.311386972665787,0.534936964511871,0.312668174505234,0.53849184513092,0.465387225151062,0.422942340373993,0.308870196342468,0.506345808506012,0.308748662471771,0.493341565132141,0.32857409119606,0.403314411640167,0.448909074068069,0.613838613033295,0.441581517457962,0.609412670135498,0.457811534404755,0.607037723064423,0.448949575424194,0.617935359477997,0.431058585643768,0.602409243583679,0.435150265693665,0.60580712556839,0.329374194145203,0.57520055770874,0.345538347959518,0.58709579706192,0.342808872461319,0.587541460990906,0.336448550224304,0.587166726589203,0.326467484235764,0.571103811264038,0.324436813592911,0.56250011920929,0.313422709703445,0.546184062957764,0.467129230499268,0.422770142555237,0.32396587729454,0.408337861299515,0.33103010058403,0.399151831865311,0.445283263921738,0.614775419235229,0.437778472900391,0.607751727104187,0.458647072315216,0.6003178358078,0.456748098134995,0.614041149616241,0.454661726951599,0.620431900024414,0.326816886663437,0.587136328220367,0.331708669662476,0.586736261844635,0.339836329221725,0.587794601917267,0.324295043945313,0.567878067493439,0.321474403142929,0.561659514904022,0.318775296211243,0.558975636959076,0.314815282821655,0.550128877162933,0.306956022977829,0.539145112037659,0.305725485086441,0.545571267604828,0.325662285089493,0.403456181287766,0.327768921852112,0.399546802043915,0.439495146274567,0.611959874629974,0.441277682781219,0.614167749881744,0.461341112852097,0.601492643356323,0.458991438150406,0.596028625965118,0.460515677928925,0.609022796154022,0.448250740766525,0.625217318534851,0.323626577854156,0.580168306827545,0.323059409856796,0.576289296150208,0.33990216255188,0.590341806411743,0.336696684360504,0.590670943260193,0.3327417075634,0.589739203453064,0.320466667413712,0.570648074150085,0.316764920949936,0.558924973011017,0.445409864187241,0.620345771312714,0.437206238508224,0.610460937023163,0.443505823612213,\r\n0.617130160331726,0.46151328086853,0.597669363021851,0.458971172571182,0.615464150905609,0.455790996551514,0.624650180339813,0.31824865937233,0.582999050617218,0.320689499378204,0.572866082191467,0.320821136236191,0.566693067550659,0.31831955909729,0.562307715415955,0.441890418529511,0.619636833667755,0.464045256376266,0.613084077835083,0.44600236415863,0.626270651817322,0.448027938604355,0.630164802074432,0.323413908481598,0.590124070644379,0.315893918275833,0.57906436920166,0.316390186548233,0.576147496700287,0.32931849360466,0.590291142463684,0.334068477153778,0.592792749404907,0.318187892436981,0.569027602672577,0.443870425224304,0.622761309146881,0.461467713117599,0.616973221302032,0.465969562530518,0.604931116104126,0.454859226942062,0.633512079715729,0.317711889743805,0.58930367231369,0.314587414264679,0.585870325565338,0.331632703542709,0.593147218227386,0.316673755645752,0.573397755622864,0.458130538463593,0.626766920089722,0.452408283948898,0.636596083641052,0.326204150915146,0.59504622220993,0.318846195936203,0.593754947185516,0.3129922747612,0.577089428901672,0.328179091215134,0.597421228885651,0.314313948154449,0.573412954807281,0.447192400693893,0.637725293636322,0.322056770324707,0.593977749347687,0.314749449491501,0.590519070625305,0.312070608139038,0.583024382591248,0.329551428556442,0.599087297916412,0.447521537542343,0.645179450511932,0.445769399404526,0.633836209774017,0.323418974876404,0.601001441478729,0.312683343887329,0.590306341648102,0.31601545214653,0.596636295318604,0.311123669147491,0.575595557689667,0.30984753370285,0.579697370529175,0.310921102762222,0.58560699224472,0.32708528637886,0.601598978042603,0.313929080963135,0.597081959247589,0.318891793489456,0.601457178592682,0.324289977550507,0.603037178516388,0.316385120153427,0.602176308631897,0.322325140237808,0.605888187885284,0.316354721784592,0.606004655361176,0.319266498088837,0.608187198638916,0.323986113071442,0.605857789516449,0.313655644655228,0.603492915630341,0.321626305580139,0.610010266304016,0.32355061173439,0.608972132205963,\r\n0.314253181219101,0.600525438785553,0.312956809997559,0.607169330120087,0.318866461515427,0.613944947719574,0.310885637998581,0.604242384433746,0.313432812690735,0.61411714553833,0.321104735136032,0.615443885326386,0.310905903577805,0.607219994068146,0.310460269451141,0.611367404460907,0.315119117498398,0.620993971824646,0.310495734214783,0.616127490997314,0.31953489780426,0.618087291717529,0.30739152431488,0.615757822990417,0.319033563137054,0.624564051628113,0.310283035039902,0.622903108596802,0.30732062458992,0.618537962436676,0.315078616142273,0.625338852405548,0.31666362285614,0.628503859043121,0.313903778791428,0.630539536476135,0.308237195014954,0.632524609565735,0.30970573425293,0.629481196403503,0.316278785467148,0.633334875106812,0.312592208385468,0.635416150093079,0.88134378194809,0.883903622627258,0.879104256629944,0.885888695716858,0.877902805805206,0.881374180316925,0.876064598560333,0.88535064458847,0.880131006240845,0.879405558109283,0.873933970928192,0.881112098693848,0.877366065979004,0.888129532337189,0.873993456363678,0.874316275119781,0.884011268615723,0.881656527519226,0.872924983501434,0.88366436958313,0.872698366641998,0.876897633075714,0.874496042728424,0.888559937477112,0.876645684242249,0.873062968254089,0.870358765125275,0.885075926780701,0.870232224464417,0.881547629833221,0.870963931083679,0.878785252571106,0.876268446445465,0.890438675880432,0.870477795600891,0.866039216518402,0.869171321392059,0.873879492282867,0.879299223423004,0.871339917182922,0.867426753044128,0.875968396663666,0.873618721961975,0.891389429569244,0.869100391864777,0.869475126266479,0.87353640794754,0.866429150104523,0.884479641914368,0.873630106449127,0.867371082305908,0.882314801216125,0.867862284183502,0.879604339599609,0.869161188602448,0.887047111988068,0.864836513996124,0.863488256931305,0.869044721126556,0.859838426113129,0.866454482078552,0.871700763702393,0.876603901386261,0.865844249725342,0.886538147926331,0.877154648303986,0.86561131477356,0.877339482307434,0.86613541841507,0.868380069732666,0.866224050521851,\r\n0.860184013843536,0.87113356590271,0.857726752758026,0.862337470054626,0.871526062488556,0.886533081531525,0.880815863609314,0.862993240356445,0.875183463096619,0.86045116186142,0.863446474075317,0.86282867193222,0.858496427536011,0.866479814052582,0.851447403430939,0.861036062240601,0.867121636867523,0.872551500797272,0.853761672973633,0.888865053653717,0.876896381378174,0.858362257480621,0.858060956001282,0.860661327838898,0.853240072727203,0.864418745040894,0.852419674396515,0.868416786193848,0.847426652908325,0.858405292034149,0.872665405273438,0.85512387752533,0.865368247032166,0.876995146274567,0.855797350406647,0.891374230384827,0.879294157028198,0.853657841682434,0.857696354389191,0.857329189777374,0.8538578748703,0.863142669200897,0.839453399181366,0.875489830970764,0.848844528198242,0.879834711551666,0.863719940185547,0.87097156047821,0.844866812229156,0.854055345058441,0.854062974452972,0.856017649173737,0.84933066368103,0.860415697097778,0.848272323608398,0.860744833946228,0.840266168117523,0.86613541841507,0.838959693908691,0.851599335670471,0.859192728996277,0.849269926548004,0.850867569446564,0.852376639842987,0.849756062030792,0.857590019702911,0.832042276859283,0.862079203128815,0.827515125274658,0.848748326301575,0.854232609272003,0.869761228561401,0.838316559791565,0.851862668991089,0.845841586589813,0.855632781982422,0.843770444393158,0.858048319816589,0.840291500091553,0.856620252132416,0.819701433181763,0.866520285606384,0.834386944770813,0.872645199298859,0.839582562446594,0.847935557365417,0.845439016819,0.845915019512177,0.851888000965118,0.854306042194366,0.835711121559143,0.854847848415375,0.822630941867828,0.860339760780334,0.820185005664825,0.86555814743042,0.826304852962494,0.868431925773621,0.831809341907501,0.872475504875183,0.834467947483063,0.875113844871521,0.842770338058472,0.845507383346558,0.847198724746704,0.84800136089325,0.842899441719055,0.851298034191132,0.841901838779449,0.851072669029236,0.828748226165771,0.851974070072174,0.815078020095825,0.852827370166779,0.8243248462677,\r\n0.864201009273529,0.822192907333374,0.856605052947998,0.811923146247864,0.875339210033417,0.837270855903625,0.844514846801758,0.840585231781006,0.843421041965485,0.849720597267151,0.84933066368103,0.836842954158783,0.850383996963501,0.834579348564148,0.853095710277557,0.810160934925079,0.848722994327545,0.816169321537018,0.863985776901245,0.817012429237366,0.859830796718597,0.81217634677887,0.867816686630249,0.827368259429932,0.867533087730408,0.822577774524689,0.871338665485382,0.829130530357361,0.875107526779175,0.831961274147034,0.878438353538513,0.841349899768829,0.842256307601929,0.841770172119141,0.847532987594604,0.8387570977211,0.847186088562012,0.822957575321198,0.847317755222321,0.830469965934753,0.849072396755219,0.806800961494446,0.847553253173828,0.809467136859894,0.867163419723511,0.818860828876495,0.858792722225189,0.808449268341064,0.854944109916687,0.806119859218597,0.870211958885193,0.824917316436768,0.878152251243591,0.837146759033203,0.843856513500214,0.835728883743286,0.844335079193115,0.832748711109161,0.844785749912262,0.82818865776062,0.850525796413422,0.803992986679077,0.844160377979279,0.813908219337463,0.845433950424194,0.818420231342316,0.867654621601105,0.813812017440796,0.862851440906525,0.812571346759796,0.862562835216522,0.808393597602844,0.870667695999146,0.820678770542145,0.876035511493683,0.829084932804108,0.878439605236053,0.831667542457581,0.884315073490143,0.842332303524017,0.840476334095001,0.833282947540283,0.843223512172699,0.823362648487091,0.842243671417236,0.800346970558167,0.841762602329254,0.80362331867218,0.84356027841568,0.807932794094086,0.870632231235504,0.816143989562988,0.861451268196106,0.805904626846313,0.858790159225464,0.804699420928955,0.854009807109833,0.801531910896301,0.873855471611023,0.823813378810883,0.880704462528229,0.83624541759491,0.838344395160675,0.832229673862457,0.841276466846466,0.828434228897095,0.840572535991669,0.795457720756531,0.841722071170807,0.818192362785339,0.841043531894684,0.811244606971741,0.870748698711395,0.813252449035645,0.865550577640533,\r\n0.810155868530273,0.856746852397919,0.802478909492493,0.850925803184509,0.800205171108246,0.872473001480103,0.81830883026123,0.874464392662048,0.820633172988892,0.878316819667816,0.827507495880127,0.840094029903412,0.824550151824951,0.83693915605545,0.799177169799805,0.844947814941406,0.794794321060181,0.837673425674438,0.796402096748352,0.838352024555206,0.804053783416748,0.83964329957962,0.815159022808075,0.838769793510437,0.807613730430603,0.869054794311523,0.810955941677094,0.865624010562897,0.806717395782471,0.849158525466919,0.797376930713654,0.876469731330872,0.823858916759491,0.87999552488327,0.830568671226501,0.838663458824158,0.828315198421478,0.840600430965424,0.791993916034698,0.83602511882782,0.791758477687836,0.838384926319122,0.819215297698975,0.83765572309494,0.811533272266388,0.86768501996994,0.808783531188965,0.863681972026825,0.804491817951202,0.851411998271942,0.798204898834229,0.83663535118103,0.82192450761795,0.832551240921021,0.798751831054688,0.830738306045532,0.794303119182587,0.848089993000031,0.793315649032593,0.844813644886017,0.791216611862183,0.830880105495453,0.790943145751953,0.835354149341583,0.804826021194458,0.835733950138092,0.817164361476898,0.834118545055389,0.807482063770294,0.851427137851715,0.795237421989441,0.854303479194641,0.797652900218964,0.835683286190033,0.824689447879791,0.839942097663879,0.78816556930542,0.834908485412598,0.78780859708786,0.833105742931366,0.78940623998642,0.833915948867798,0.809971034526825,0.834045112133026,0.81320184469223,0.832366406917572,0.818506300449371,0.827446758747101,0.798154234886169,0.827239155769348,0.794996857643127,0.823142409324646,0.788236498832703,0.831647336483002,0.788228869438171,0.82978630065918,0.811553478240967,0.825438916683197,0.7867830991745,0.836569488048553,0.785038590431213,0.830533266067505,0.788998603820801,0.822982847690582,0.794703185558319,0.822359979152679,0.790543138980865,0.820106565952301,0.781559646129608,0.831505537033081,0.784010589122772,0.830186367034912,0.787054061889648,0.825145184993744,0.800676107406616,\r\n0.817961931228638,0.787276864051819,0.826479554176331,0.783567488193512,0.812475144863129,0.779787242412567,0.833548843860626,0.781698882579803,0.828155696392059,0.815432488918304,0.822960078716278,0.801693975925446,0.81949383020401,0.791555881500244,0.82490462064743,0.779989838600159,0.815650224685669,0.778683304786682,0.82843679189682,0.780367076396942,0.818189859390259,0.793333351612091,0.825112283229828,0.81157374382019,0.81494128704071,0.788613736629486,0.808563232421875,0.780167043209076,0.822714507579803,0.778313636779785,0.812556147575378,0.776528596878052,0.819587469100952,0.777852833271027,0.808826565742493,0.784423291683197,0.808717668056488,0.776470363140106,0.825854122638702,0.778055369853973,0.815569221973419,0.775834858417511,0.818063259124756,0.776136159896851,0.813713312149048,0.792611718177795,0.805595755577087,0.777533769607544,0.805570423603058,0.780587375164032,0.806950390338898,0.774670124053955,0.803889214992523,0.782688915729523,0.803377747535706,0.775153756141663,0.802086412906647,0.778989672660828,0.800688743591309,0.776138663291931,0.815065383911133,0.906117975711823,0.816084504127502,0.908651232719421,0.815475523471832,0.910309672355652,0.904793739318848,0.901818692684174,0.907487809658051,0.903872132301331,0.903644204139709,0.907792866230011,0.576077878475189,0.840678870677948,0.576670348644257,0.836070716381073,0.579253017902374,0.839195132255554,0.579270720481873,0.835118651390076,0.57969605922699,0.843013405799866,0.577197015285492,0.83149790763855,0.584686636924744,0.832723379135132,0.577260315418243,0.845312416553497,0.587555348873138,0.84019273519516,0.575262606143951,0.833209574222565,0.580650627613068,0.830677568912506,0.586689412593842,0.836232721805573,0.580863356590271,0.848244488239288,0.589023888111115,0.844076812267303,0.574373841285706,0.829938232898712,0.578708589076996,0.827456891536713,0.585170209407806,0.828307628631592,0.590274691581726,0.831214368343353,0.583770036697388,0.845671951770782,0.577941417694092,0.849115490913391,0.591988861560822,0.840547263622284,0.575457572937012,\r\n0.827624022960663,0.583992838859558,0.825107216835022,0.592399060726166,0.834181845188141,0.587844014167786,0.84833562374115,0.575786709785461,0.848953425884247,0.57862251996994,0.85291850566864,0.59427273273468,0.847601354122162,0.576050043106079,0.824140012264252,0.577693283557892,0.821967542171478,0.588813781738281,0.82329934835434,0.591297626495361,0.826884686946869,0.594687938690186,0.831148505210876,0.586205840110779,0.855212450027466,0.580455660820007,0.853799641132355,0.594047367572784,0.837837994098663,0.595915973186493,0.843590676784515,0.591431796550751,0.848983824253082,0.573485136032104,0.824833750724792,0.581668496131897,0.820068538188934,0.586593210697174,0.82024073600769,0.597323775291443,0.837787389755249,0.589198589324951,0.853824973106384,0.582286298274994,0.854680776596069,0.577029883861542,0.857197523117065,0.579508721828461,0.855754315853119,0.597933948040009,0.850953698158264,0.59465503692627,0.85363757610321,0.572297632694244,0.821851074695587,0.573920607566834,0.820367336273193,0.577918648719788,0.815571784973145,0.592361032962799,0.82032173871994,0.595295608043671,0.826611220836639,0.600265920162201,0.834860384464264,0.587160348892212,0.860929667949677,0.580394923686981,0.858590126037598,0.599101185798645,0.84635055065155,0.574239671230316,0.816680788993835,0.58190906047821,0.815992057323456,0.587699711322784,0.816326320171356,0.599010050296783,0.831725835800171,0.600696325302124,0.839853465557098,0.592902898788452,0.858544588088989,0.578711152076721,0.857896387577057,0.601114153862,0.848968625068665,0.597898483276367,0.856635451316834,0.570041656494141,0.817359328269959,0.570259392261505,0.814807116985321,0.578108549118042,0.810026705265045,0.574725806713104,0.812852382659912,0.591034293174744,0.814776718616486,0.596389472484589,0.821101605892181,0.598002314567566,0.826423823833466,0.591052055358887,0.862129867076874,0.580784857273102,0.862155199050903,0.577769219875336,0.861425936222076,0.602002859115601,0.853197038173676,0.571593761444092,0.813485383987427,0.583263635635376,0.813414514064789,\r\n0.586719810962677,0.812442243099213,0.594457566738129,0.818123996257782,0.601344525814056,0.829163432121277,0.595526039600372,0.8617804646492,0.588163018226624,0.865770816802979,0.582273662090302,0.865963280200958,0.60186105966568,0.859243392944336,0.568284451961517,0.811459839344025,0.57359653711319,0.809581100940704,0.582222998142242,0.809616565704346,0.571044325828552,0.810533106327057,0.589750587940216,0.810786306858063,0.593110501766205,0.811682641506195,0.600255787372589,0.823238611221313,0.600121557712555,0.819086134433746,0.594401836395264,0.8657506108284,0.577933847904205,0.865451812744141,0.598706185817719,0.860342264175415,0.578404784202576,0.806659162044525,0.584000468254089,0.806816160678864,0.59694904088974,0.814320981502533,0.597959280014038,0.864768147468567,0.586841344833374,0.869072556495667,0.578559219837189,0.869827091693878,0.575189173221588,0.863603472709656,0.601716756820679,0.863137602806091,0.567681849002838,0.809201300144196,0.570522725582123,0.806005954742432,0.574097871780396,0.804152548313141,0.588525116443634,0.807104825973511,0.5950728058815,0.809677302837372,0.59452086687088,0.868201553821564,0.575614511966705,0.870019495487213,0.575123310089111,0.866484880447388,0.575424611568451,0.860114395618439,0.567542552947998,0.806735157966614,0.577607214450836,0.802172482013702,0.581450760364532,0.803443551063538,0.591940760612488,0.806785762310028,0.584808170795441,0.805018484592438,0.597612380981445,0.870044827461243,0.586165308952332,0.872353971004486,0.592490196228027,0.871736168861389,0.576619744300842,0.875382244586945,0.602195262908936,0.865279614925385,0.56794011592865,0.803803086280823,0.572074830532074,0.802273809909821,0.586914777755737,0.804041087627411,0.594470202922821,0.807195961475372,0.584648668766022,0.875878512859344,0.573171138763428,0.869416892528534,0.572768568992615,0.873928904533386,0.564762473106384,0.804182887077332,0.570385992527008,0.795407056808472,0.582716763019562,0.801291406154633,0.585681676864624,0.800329208374023,0.600240588188171,0.869827091693878,0.597037613391876,\r\n0.87278950214386,0.590239286422729,0.87466824054718,0.572553336620331,0.877590119838715,0.581222891807556,0.879458725452423,0.569337725639343,0.799792468547821,0.577278017997742,0.800131738185883,0.587702214717865,0.878162384033203,0.570358157157898,0.872414767742157,0.569770693778992,0.874815106391907,0.584468901157379,0.881165266036987,0.564861178398132,0.802015542984009,0.566555082798004,0.795736193656921,0.573444604873657,0.794449985027313,0.581584930419922,0.798840403556824,0.600739419460297,0.871898233890533,0.590862154960632,0.87786865234375,0.569780826568604,0.879139721393585,0.580498695373535,0.882400929927826,0.565109312534332,0.799362003803253,0.566793084144592,0.793781518936157,0.57707804441452,0.797078132629395,0.586881875991821,0.883013665676117,0.589905023574829,0.881220996379852,0.567342519760132,0.877230584621429,0.584258735179901,0.885748207569122,0.562486231327057,0.800324141979218,0.5621697306633,0.797868132591248,0.562324166297913,0.79512345790863,0.5667804479599,0.879484057426453,0.57762998342514,0.886052012443542,0.581169724464417,0.886057078838348,0.588193416595459,0.885884881019592,0.566529750823975,0.881610929965973,0.56697541475296,0.884710073471069,0.582111597061157,0.888654887676239,0.559174358844757,0.796257793903351,0.573953568935394,0.888761222362518,0.563878774642944,0.883778274059296,0.578024983406067,0.888913154602051,0.566481649875641,0.891065359115601,0.563010334968567,0.887540817260742,0.57334840297699,0.890660226345062,0.579002320766449,0.890614628791809,0.424562782049179,0.927573978900909,0.421711772680283,0.932131588459015,0.421782672405243,0.923059463500977,0.416083186864853,0.926389038562775,0.417263090610504,0.931655526161194,0.412123173475266,0.932924091815948,0.409700065851212,0.931014955043793,0.415432453155518,0.934567332267761,0.407699793577194,0.93408876657486,0.413690477609634,0.926108002662659,0.419101297855377,0.935177564620972,0.413700580596924,0.936919569969177,0.40985956788063,0.937458872795105,0.416759222745895,0.936985373497009,0.405580520629883,0.937319576740265,\r\n0.411809206008911,0.939550280570984,0.404555082321167,0.934068560600281,0.406656622886658,0.943743228912354,0.409608900547028,0.943026661872864,0.400329202413559,0.939823746681213,0.402088910341263,0.936881542205811,0.401916742324829,0.947082936763763,0.399275898933411,0.936901807785034,0.403334647417068,0.94929838180542,0.398706197738647,0.943545758724213,0.39700722694397,0.941001117229462,0.39960503578186,0.950564384460449,0.397533893585205,0.94998961687088,0.395356386899948,0.945890367031097,0.398027628660202,0.953291356563568,0.83798485994339,0.907315611839294,0.842120885848999,0.905760943889618,0.838935613632202,0.910115957260132,0.17742232978344,0.934990167617798,0.177321046590805,0.939547717571259,0.173614233732224,0.937405705451965,0.179964438080788,0.937339842319489,0.174723237752914,0.931025087833405,0.183205381035805,0.933172225952148,0.171720311045647,0.933187425136566,0.180865824222565,0.930219948291779,0.18572723865509,0.935121834278107,0.167041197419167,0.937501907348633,0.168357834219933,0.92917674779892,0.178602233529091,0.925935804843903,0.18896310031414,0.931161820888519,0.18416753411293,0.939841449260712,0.187849029898643,0.928305745124817,0.170651808381081,0.941152989864349,0.17256598174572,0.927961409091949,0.184668868780136,0.923935532569885,0.18944925069809,0.93442302942276,0.187246426939964,0.937258839607239,0.166793063282967,0.941021382808685,0.170667007565498,0.925520539283752,0.176682993769646,0.923069596290588,0.183012947440147,0.921256721019745,0.191565990447998,0.931906223297119,0.191641941666603,0.928523480892181,0.18714514374733,0.940854251384735,0.190269604325294,0.925090134143829,0.165451124310493,0.926973938941956,0.186826109886169,0.921656727790833,0.188897281885147,0.939517378807068,0.185322120785713,0.942753255367279,0.171963378787041,0.92268979549408,0.165922060608864,0.9225834608078,0.180192321538925,0.91891211271286,0.183266147971153,0.943973660469055,0.172935664653778,0.919119715690613,0.161030277609825,0.925414204597473,0.185200586915016,0.946085333824158,0.159445255994797,\r\n0.921742856502533,0.177827447652817,0.916658639907837,0.164053469896317,0.919443786144257,0.156639814376831,0.924553334712982,0.17366486787796,0.91584837436676,0.165739759802818,0.916613042354584,0.158356502652168,0.919104516506195,0.158250167965889,0.928199410438538,0.154806658625603,0.919990718364716,0.155292809009552,0.929733753204346,0.153981238603592,0.92650294303894,0.171254426240921,0.913620233535767,0.157824784517288,0.916445910930634,0.156285345554352,0.932245492935181,0.176369026303291,0.914369702339172,0.163714185357094,0.913412630558014,0.152421534061432,0.91463303565979,0.16983650624752,0.910916090011597,0.155996695160866,0.913711369037628,0.173148348927498,0.911564290523529,0.16557265818119,0.91060209274292,0.158559069037437,0.909761488437653,0.152112632989883,0.910946488380432,0.168367967009544,0.90872848033905,0.14938822388649,0.913701295852661,0.163496434688568,0.908141016960144,0.153322920203209,0.904788672924042,0.148294404149055,0.9107945561409,0.148775488138199,0.916005373001099,0.159212321043015,0.90511280298233,0.167157679796219,0.906368672847748,0.149747759103775,0.906054675579071,0.145995363593102,0.915017902851105,0.151272013783455,0.920259118080139,0.163886353373528,0.905087471008301,0.150441527366638,0.901492059230804,0.154847174882889,0.900276720523834,0.146643549203873,0.918805718421936,0.163395151495934,0.90257066488266,0.165137156844139,0.903249263763428,0.159982040524483,0.900266587734222,0.147995635867119,0.922026395797729,0.153206452727318,0.895379841327667,0.156082779169083,0.897557318210602,0.151368230581284,0.921930193901062,0.163425534963608,0.900236189365387,0.16088342666626,0.897233247756958,0.149114772677422,0.927470207214355,0.1580830514431,0.892523765563965,0.147215783596039,0.924963533878326,0.152487367391586,0.924112796783447,0.155464977025986,0.890376627445221,0.160564392805099,0.894356906414032,0.145721912384033,0.922796130180359,0.150952994823456,0.929602086544037,0.159247756004334,0.889287889003754,0.153778687119484,0.888224482536316,0.16109611093998,0.891966760158539,\r\n0.145119294524193,0.919945120811462,0.158240035176277,0.885029077529907,0.15989089012146,0.886548280715942,0.15705506503582,0.879539787769318,0.159035071730614,0.881129860877991,0.159794673323631,0.878405451774597,0.160640358924866,0.875681042671204,0.729186832904816,0.769666910171509,0.728660225868225,0.775642395019531,0.723970949649811,0.770066976547241,0.731754302978516,0.773272454738617,0.723535478115082,0.774573922157288,0.725282549858093,0.764962494373322,0.734807848930359,0.769499838352203,0.720952868461609,0.77116584777832,0.73304557800293,0.765013158321381,0.72214287519455,0.766907036304474,0.738696992397308,0.769823908805847,0.720289468765259,0.774168789386749,0.728898227214813,0.762916684150696,0.719301998615265,0.760972082614899,0.740104734897614,0.764663696289063,0.736894190311432,0.775373995304108,0.71540778875351,0.764030754566193,0.717559993267059,0.763843357563019,0.725601553916931,0.761184751987457,0.738504528999329,0.761741816997528,0.722502410411835,0.761331617832184,0.742783606052399,0.766208231449127,0.740570664405823,0.772097647190094,0.727510690689087,0.757204532623291,0.730944037437439,0.755472600460052,0.723393678665161,0.756779134273529,0.716415524482727,0.75979220867157,0.743943274021149,0.760496079921722,0.742940604686737,0.769428908824921,0.744748413562775,0.763666093349457,0.741239070892334,0.774766325950623,0.740788400173187,0.754859864711761,0.719504535198212,0.75295078754425,0.716481387615204,0.755138397216797,0.742738008499146,0.757812201976776,0.745239615440369,0.767018496990204,0.743517875671387,0.772624254226685,0.738727390766144,0.77792626619339,0.714232981204987,0.760177075862885,0.726467490196228,0.753912925720215,0.732093572616577,0.748626172542572,0.722198605537415,0.751522719860077,0.713523983955383,0.756627202033997,0.745816886425018,0.756839871406555,0.745199084281921,0.770603775978088,0.73437237739563,0.78021514415741,0.742231607437134,0.777541399002075,0.729728698730469,0.751502454280853,0.741811335086823,0.749066710472107,0.745776414871216,0.754910528659821,0.718800663948059,\r\n0.747846305370331,0.715291321277618,0.752150654792786,0.740601003170013,0.779921472072601,0.725601553916931,0.750307381153107,0.727176487445831,0.74345076084137,0.735764920711517,0.744574964046478,0.745067417621613,0.751613914966583,0.712571978569031,0.751867055892944,0.73738032579422,0.782078683376312,0.729997098445892,0.740741550922394,0.739821195602417,0.744453430175781,0.745705485343933,0.749497175216675,0.723241746425629,0.743086159229279,0.714172184467316,0.74828177690506,0.725778818130493,0.738437473773956,0.74287474155426,0.746256232261658,0.737861454486847,0.740118682384491,0.732746839523315,0.739652812480927,0.745199084281921,0.747339904308319,0.720066666603088,0.743091225624084,0.716901659965515,0.746722102165222,0.727171421051025,0.733140528202057,0.744783878326416,0.744372427463531,0.743543207645416,0.741334021091461,0.722786009311676,0.733413994312286,0.716658592224121,0.742281019687653,0.743350744247437,0.738943874835968,0.73561304807663,0.733464658260345,0.729607164859772,0.728380441665649,0.71894246339798,0.734244465827942,0.714384913444519,0.741587221622467,0.725505352020264,0.728279113769531,0.746404349803925,0.74155181646347,0.741193532943726,0.736766338348389,0.746080219745636,0.7387615442276,0.715914189815521,0.73522686958313,0.718709528446198,0.725949704647064,0.721494674682617,0.722663223743439,0.744814276695251,0.736877739429474,0.732888638973236,0.72426849603653,0.739993333816528,0.733494997024536,0.724396347999573,0.723088562488556,0.716699123382568,0.727965176105499,0.713361978530884,0.737637341022491,0.744074881076813,0.73370772600174,0.727130889892578,0.720348954200745,0.73762845993042,0.726952373981476,0.713908851146698,0.731854319572449,0.716334521770477,0.724248230457306,0.719443798065186,0.718130946159363,0.722841680049896,0.717422008514404,0.729784429073334,0.717999279499054,0.735526919364929,0.718880414962769,0.742672204971313,0.729636251926422,0.714536786079407,0.725088834762573,0.717063724994659,0.717432141304016,0.725292682647705,0.716075003147125,0.740302264690399,0.722551822662354,\r\n0.745351016521454,0.728734910488129,0.7210693359375,0.711066722869873,0.718010663986206,0.71242892742157,0.729095697402954,0.712722659111023,0.732959508895874,0.714160799980164,0.738195657730103,0.716672539710999,0.743583679199219,0.722273290157318,0.72598135471344,0.706807911396027,0.728032290935516,0.707861244678497,0.741856873035431,0.716971278190613,0.745837152004242,0.725230634212494,0.719955265522003,0.706731975078583,0.724198877811432,0.702376961708069,0.732989907264709,0.709846317768097,0.740413665771484,0.711846590042114,0.744404077529907,0.718105614185333,0.745401680469513,0.721939027309418,0.728204429149628,0.703779697418213,0.717387795448303,0.707648575305939,0.733324110507965,0.706174910068512,0.743978679180145,0.714221596717834,0.721935272216797,0.701926290988922,0.729359030723572,0.700594425201416,0.7383171916008,0.708225846290588,0.744581282138824,0.711102187633514,0.734088778495789,0.702974498271942,0.723560810089111,0.697819411754608,0.727672755718231,0.695565938949585,0.738377928733826,0.70519757270813,0.74370014667511,0.708008110523224,0.733865976333618,0.699834823608398,0.730594635009766,0.69791054725647,0.742363274097443,0.705734372138977,0.746606886386871,0.708580315113068,0.737106919288635,0.700741291046143,0.72498881816864,0.694117605686188,0.730913639068604,0.694477200508118,0.740033864974976,0.702954232692719,0.745609283447266,0.702523827552795,0.748510956764221,0.706362307071686,0.734093844890594,0.697145879268646,0.736529588699341,0.69771808385849,0.748541355133057,0.703222632408142,0.738636195659637,0.697267413139343,0.724193811416626,0.68714964389801,0.733992576599121,0.694431602954865,0.741548001766205,0.696755945682526,0.750860631465912,0.700893223285675,0.72976416349411,0.688263714313507,0.721915006637573,0.691185593605042,0.735101580619812,0.694451868534088,0.731875836849213,0.6924769282341,0.746399283409119,0.697434544563293,0.75107330083847,0.703465700149536,0.750820100307465,0.697753548622131,0.73992246389389,0.690309524536133,0.73122763633728,0.682804763317108,0.721874475479126,\r\n0.694948136806488,0.722345411777496,0.685610175132751,0.744024276733398,0.692238926887512,0.750288367271423,0.70588630437851,0.736838519573212,0.689732253551483,0.732296109199524,0.687762379646301,0.727262556552887,0.680313289165497,0.719889402389526,0.687028110027313,0.749630093574524,0.694679737091064,0.738813459873199,0.684612572193146,0.744495213031769,0.689848721027374,0.732837975025177,0.678753554821014,0.752952039241791,0.6954545378685,0.748359024524689,0.691970527172089,0.736083984375,0.685903906822205,0.744318008422852,0.687463581562042,0.728700697422028,0.676869750022888,0.75300270318985,0.692254066467285,0.737598121166229,0.678358554840088,0.742216408252716,0.684182107448578,0.750759363174438,0.684506237506866,0.751949369907379,0.689276456832886,0.730903565883636,0.675148010253906,0.740287065505981,0.676535546779633,0.743492543697357,0.679523289203644,0.73263543844223,0.675958275794983,0.755418181419373,0.69001579284668,0.739735066890717,0.669516921043396,0.749619960784912,0.679817020893097,0.755332112312317,0.686876177787781,0.754906713962555,0.694107532501221,0.744216680526733,0.674277007579803,0.743046939373016,0.667805254459381,0.753964841365814,0.681437492370605,0.742454469203949,0.665734112262726,0.754385113716125,0.675411343574524,0.750992298126221,0.6748948097229,0.756881654262543,0.681477963924408,0.746480286121368,0.668964922428131,0.749149024486542,0.656158149242401,0.756329715251923,0.676707744598389,0.748743891716003,0.664695978164673,0.742657005786896,0.661455035209656,0.753767311573029,0.665668308734894,0.758218586444855,0.66956752538681,0.750916302204132,0.658654689788818,0.756101846694946,0.668838322162628,0.755251049995422,0.662103235721588,0.751686036586761,0.653722405433655,0.757028520107269,0.664898574352264,0.755205512046814,0.656380951404572,0.750961899757385,0.650537133216858,0.758097052574158,0.662665367126465,0.756739914417267,0.657181084156036,0.760983467102051,0.667060852050781,0.763292670249939,0.658097624778748,0.761879801750183,0.654897212982178,0.764087677001953,0.649939596652985,\r\n0.762087404727936,0.648612856864929,0.77072149515152,0.65162593126297,0.7658651471138,0.644278109073639,0.769106090068817,0.645508646965027,0.765596747398376,0.658634424209595,0.764290273189545,0.643295705318451,0.775167644023895,0.64392364025116,0.764290273189545,0.663278102874756,0.769526422023773,0.64080423116684,0.775729775428772,0.649169862270355,0.775957643985748,0.640692830085754,0.778682053089142,0.644389510154724,0.779649257659912,0.641837239265442,0.779137790203094,0.648855924606323,0.786191880702972,0.642374038696289,0.774711906909943,0.652051270008087,0.784373939037323,0.646693587303162,0.788860619068146,0.646151781082153,0.875817775726318,0.900894522666931,0.876492500305176,0.895182371139526,0.878226935863495,0.901618659496307,0.800387442111969,0.908153712749481,0.7971351146698,0.910746455192566,0.798887252807617,0.906607925891876,0.918258845806122,0.904339253902435,0.914774835109711,0.907708048820496,0.91628897190094,0.901818692684174,0.895013988018036,0.901816129684448,0.896496474742889,0.90447473526001,0.894368290901184,0.906814277172089,0.896791398525238,0.906616806983948,0.897388994693756,0.907999217510223,0.944975018501282,0.913569629192352,0.946995556354523,0.911224961280823,0.947853922843933,0.914926767349243,0.945033311843872,0.915797770023346,0.94817042350769,0.916876375675201,0.94993269443512,0.91570657491684,0.894629120826721,0.91413676738739,0.895049393177032,0.916861176490784,0.894056856632233,0.911797225475311,0.608393549919128,0.891733765602112,0.609282314777374,0.895101308822632,0.606833875179291,0.894964575767517,0.607942879199982,0.898190319538116,0.610426783561707,0.897937119007111,0.610768556594849,0.901117324829102,0.607208609580994,0.900474190711975,0.612718224525452,0.898884117603302,0.610325455665588,0.903497397899628,0.613414466381073,0.90152245759964,0.613475263118744,0.903699934482574,0.388149082660675,0.95451682806015,0.385260105133057,0.953331828117371,0.38771864771843,0.951331615447998,0.384999305009842,0.956071436405182,0.384541004896164,0.950470685958862,0.387019813060761,\r\n0.947943806648254,0.38404855132103,0.946844935417175,0.385827273130417,0.944773733615875,0.382942080497742,0.942930459976196,0.384795486927032,0.941694855690002,0.380405008792877,0.944763600826263,0.380716443061829,0.948566675186157,0.379390954971313,0.940226316452026,0.381619095802307,0.938879311084747,0.378426283597946,0.935506701469421,0.375846177339554,0.938489377498627,0.374839723110199,0.933830499649048,0.377472996711731,0.932448089122772,0.376424759626389,0.930037617683411,0.372753381729126,0.930240154266357,0.374342203140259,0.926756143569946,0.371075928211212,0.926832139492035,0.372830599546433,0.923808932304382,0.369384557008743,0.923054397106171,0.754268646240234,0.905836939811707,0.757603287696838,0.904844403266907,0.755834698677063,0.908910751342773,0.716282606124878,0.901628792285919,0.719727396965027,0.89313143491745,0.717657446861267,0.900251388549805,0.887276232242584,0.901552796363831,0.886279881000519,0.901643991470337,0.885093688964844,0.895182371139526,0.780507624149323,0.908747434616089,0.781158328056335,0.904677271842957,0.782854735851288,0.908034682273865,0.490877956151962,0.523107528686523,0.490615874528885,0.517029523849487,0.493488430976868,0.520788252353668,0.49387201666832,0.515052020549774,0.493392199277878,0.526562452316284,0.496320426464081,0.516861140727997,0.491336226463318,0.513145446777344,0.496253341436386,0.524281144142151,0.490360140800476,0.527303040027618,0.496747076511383,0.508925914764404,0.496190041303635,0.530270516872406,0.49228698015213,0.530640184879303,0.500388085842133,0.512084543704987,0.499137282371521,0.52226310968399,0.498872667551041,0.526563704013824,0.48933470249176,0.531088352203369,0.498890399932861,0.504749417304993,0.499922186136246,0.518701910972595,0.500546336174011,0.530126214027405,0.501300871372223,0.505452036857605,0.505841970443726,0.517356157302856,0.502283275127411,0.525943338871002,0.500656485557556,0.534053325653076,0.497873812913895,0.499190449714661,0.506655991077423,0.512688457965851,0.50945258140564,0.527276456356049,0.504632949829102,0.530288219451904,\r\n0.503996133804321,0.534084975719452,0.496385008096695,0.534858465194702,0.502749145030975,0.501069188117981,0.493999868631363,0.500951409339905,0.512382090091705,0.519957780838013,0.508691728115082,0.530768036842346,0.493441581726074,0.534045696258545,0.501567959785461,0.49528107047081,0.50895881652832,0.509732365608215,0.514867186546326,0.515354633331299,0.512859344482422,0.52974259853363,0.507120609283447,0.534176111221313,0.497766196727753,0.495767205953598,0.504834234714508,0.499156266450882,0.510417222976685,0.507306694984436,0.517559945583344,0.519843816757202,0.514493763446808,0.525935769081116,0.511849105358124,0.534022927284241,0.506044507026672,0.537624657154083,0.497699111700058,0.489656269550323,0.494221419095993,0.49590265750885,0.508627116680145,0.494841754436493,0.512677073478699,0.509931087493896,0.518908262252808,0.515273571014404,0.514733016490936,0.530827581882477,0.513493597507477,0.53081613779068,0.510028600692749,0.537109434604645,0.495208889245987,0.489404320716858,0.50219589471817,0.487063527107239,0.513134062290192,0.50299346446991,0.505609035491943,0.486591309309006,0.518319547176361,0.512160539627075,0.516606688499451,0.531912505626678,0.521521270275116,0.519193112850189,0.514127850532532,0.531888484954834,0.514179766178131,0.537890553474426,0.512403607368469,0.540904879570007,0.496630609035492,0.482640147209167,0.501102089881897,0.478009134531021,0.5103919506073,0.49315419793129,0.518322110176086,0.507663726806641,0.519175350666046,0.530012249946594,0.527519524097443,0.512094676494598,0.536387801170349,0.519570350646973,0.522064387798309,0.523315191268921,0.514445662498474,0.532425224781036,0.515397667884827,0.534035563468933,0.494599968194962,0.482769280672073,0.503813862800598,0.477720499038696,0.520024836063385,0.504054367542267,0.511283218860626,0.489984154701233,0.522517621517181,0.507947325706482,0.521254122257233,0.537322103977203,0.533088624477386,0.515861034393311,0.514763414859772,0.532962024211884,0.517791628837585,0.53760439157486,0.514676034450531,0.541051685810089,0.50125527381897,\r\n0.472876816987991,0.494185984134674,0.477928131818771,0.506577491760254,0.482204645872116,0.517473876476288,0.499220818281174,0.52510529756546,0.526639640331268,0.524049460887909,0.533307611942291,0.516902923583984,0.533335506916046,0.52830570936203,0.507728278636932,0.532989859580994,0.511500954627991,0.53873997926712,0.515263438224792,0.536052286624908,0.524972379207611,0.515685021877289,0.532437920570374,0.516002833843231,0.532973408699036,0.516833305358887,0.541142880916595,0.516576290130615,0.544652163982391,0.508148610591888,0.473509818315506,0.509746253490448,0.48076394200325,0.519694447517395,0.497492760419846,0.512223839759827,0.48537215590477,0.515842020511627,0.492465496063232,0.523760795593262,0.503827750682831,0.531687140464783,0.528707027435303,0.519226014614105,0.536039650440216,0.516304135322571,0.532442986965179,0.540242731571198,0.520203351974487,0.538829863071442,0.525305330753326,0.517199158668518,0.534758448600769,0.519690632820129,0.54122132062912,0.49630144238472,0.470419526100159,0.507778942584991,0.468956053256989,0.50884997844696,0.476432979106903,0.520388185977936,0.537392973899841,0.527268886566162,0.503741681575775,0.534891366958618,0.508181512355804,0.540285766124725,0.511323690414429,0.543312788009644,0.515595138072968,0.519523501396179,0.537462592124939,0.519109547138214,0.545049726963043,0.502104759216309,0.467849552631378,0.487086296081543,0.473260402679443,0.511982023715973,0.471818447113037,0.514368414878845,0.477282464504242,0.513031542301178,0.481446295976639,0.523798763751984,0.49652174115181,0.523179709911346,0.492318630218506,0.520862936973572,0.538296937942505,0.533393740653992,0.50412780046463,0.527057468891144,0.496382474899292,0.542920291423798,0.511728823184967,0.543955862522125,0.519788146018982,0.543226659297943,0.525837004184723,0.520473003387451,0.539271712303162,0.496266007423401,0.465864479541779,0.504713952541351,0.462127298116684,0.513175845146179,0.463366687297821,0.5203577876091,0.485359489917755,0.521913707256317,0.539350211620331,0.533622860908508,0.496422976255417,\r\n0.536706805229187,0.503903746604919,0.542007505893707,0.508538544178009,0.548585593700409,0.509433567523956,0.548536241054535,0.516225636005402,0.543221592903137,0.530357897281647,0.522573292255402,0.541380882263184,0.495041787624359,0.461870282888412,0.515507817268372,0.465742945671082,0.515412867069244,0.471976697444916,0.517386555671692,0.481062710285187,0.525135636329651,0.492094576358795,0.526083886623383,0.538005709648132,0.539271712303162,0.496671110391617,0.53100860118866,0.493408650159836,0.540137648582459,0.504151880741119,0.540137648582459,0.500360190868378,0.54569536447525,0.507685244083405,0.550571978092194,0.520342648029327,0.546172618865967,0.527209341526031,0.521328806877136,0.545118093490601,0.496109008789063,0.458240687847137,0.514046847820282,0.45908385515213,0.517566323280334,0.461922198534012,0.519399464130402,0.473879486322403,0.51922219991684,0.477188795804977,0.523187279701233,0.48155266046524,0.524419128894806,0.486483693122864,0.524329245090485,0.539692044258118,0.539738893508911,0.492866814136505,0.534754693508148,0.49213632941246,0.544214129447937,0.50371128320694,0.548255205154419,0.503251731395721,0.551273345947266,0.511817455291748,0.551627814769745,0.517168760299683,0.547366440296173,0.530603468418121,0.523894965648651,0.545282661914825,0.504059433937073,0.458103954792023,0.51834237575531,0.466041743755341,0.526014268398285,0.541145384311676,0.544440746307373,0.497397810220718,0.542924106121063,0.492837697267532,0.531917572021484,0.489258736371994,0.542926609516144,0.500251352787018,0.550947964191437,0.505336821079254,0.554061055183411,0.522883474826813,0.550344109535217,0.529890716075897,0.523910164833069,0.549245178699493,0.49765732884407,0.452950119972229,0.504896283149719,0.45462629199028,0.517546057701111,0.456896215677261,0.520904719829559,0.463174253702164,0.523768365383148,0.477186262607574,0.526467502117157,0.481619745492935,0.530023634433746,0.541603684425354,0.536376416683197,0.489043533802032,0.541185915470123,0.48948410153389,0.548351407051086,0.497330695390701,0.551451802253723,\r\n0.500148773193359,0.556376516819,0.508014380931854,0.555920779705048,0.518085360527039,0.526819407939911,0.545477628707886,0.511885821819305,0.454332590103149,0.521352887153625,0.458234369754791,0.525204002857208,0.469121873378754,0.526962518692017,0.477791398763657,0.548405826091766,0.492575645446777,0.545399129390717,0.488561183214188,0.534385025501251,0.484613806009293,0.556151211261749,0.504010081291199,0.556372702121735,0.512926459312439,0.553733110427856,0.530294597148895,0.55687028169632,0.523154377937317,0.526600420475006,0.549113512039185,0.500093102455139,0.444840162992477,0.504577219486237,0.445892214775085,0.519342482089996,0.449886411428452,0.522880911827087,0.451051115989685,0.522894859313965,0.462641268968582,0.531413733959198,0.485575973987579,0.529483079910278,0.476831763982773,0.529765367507935,0.545561194419861,0.540170550346375,0.485408872365952,0.544888913631439,0.483961820602417,0.552213966846466,0.496095091104507,0.558836340904236,0.499291718006134,0.559064209461212,0.504205048084259,0.559706091880798,0.509417116641998,0.558993339538574,0.515167236328125,0.551097333431244,0.534239411354065,0.556168913841248,0.529426097869873,0.55952000617981,0.51944375038147,0.496560990810394,0.446763217449188,0.512055456638336,0.443743824958801,0.514750719070435,0.447922855615616,0.524039328098297,0.454395890235901,0.526052236557007,0.457184851169586,0.531242787837982,0.467764735221863,0.534039378166199,0.545599162578583,0.548228621482849,0.48656091094017,0.551606297492981,0.4908247590065,0.5377436876297,0.478315502405167,0.554061055183411,0.534467279911041,0.559668123722076,0.52394562959671,0.532839238643646,0.549503445625305,0.501798391342163,0.440443396568298,0.513463199138641,0.439025491476059,0.523401260375977,0.442669004201889,0.527020752429962,0.44642773270607,0.526471257209778,0.450837165117264,0.526642203330994,0.461527198553085,0.532248020172119,0.473364233970642,0.534914195537567,0.477225482463837,0.53650426864624,0.542193651199341,0.542054355144501,0.481558978557587,0.544226825237274,0.479156136512756,\r\n0.555925846099854,0.489147335290909,0.559037625789642,0.496882528066635,0.562434315681458,0.500586807727814,0.561992466449738,0.506364822387695,0.561989963054657,0.511806070804596,0.56222540140152,0.515755951404572,0.557504534721375,0.534090042114258,0.5593541264534,0.530661702156067,0.561681032180786,0.523241758346558,0.53098326921463,0.553326785564423,0.497269928455353,0.442487955093384,0.519707083702087,0.441080182790756,0.529228627681732,0.458929389715195,0.534997761249542,0.470874011516571,0.539146363735199,0.545328199863434,0.537337303161621,0.549060344696045,0.551249265670776,0.485592424869537,0.549183189868927,0.482117295265198,0.53744238615036,0.473623752593994,0.539965510368347,0.476627945899963,0.55499279499054,0.488094031810761,0.556453764438629,0.492626279592514,0.561660766601563,0.496659725904465,0.562231719493866,0.519540011882782,0.557952702045441,0.537998139858246,0.535924434661865,0.5534508228302,0.527270138263702,0.552379786968231,0.531473219394684,0.444379359483719,0.528757691383362,0.452652603387833,0.532128989696503,0.464123755693436,0.534725546836853,0.465950578451157,0.54064154624939,0.541358053684235,0.544395208358765,0.475689858198166,0.560703694820404,0.484827786684036,0.559546589851379,0.489146053791046,0.562357068061829,0.489276468753815,0.567770421504974,0.496055841445923,0.567190647125244,0.504454433917999,0.567079246044159,0.507939696311951,0.564694106578827,0.511546492576599,0.564580142498016,0.519372880458832,0.564071238040924,0.537866473197937,0.552410185337067,0.538217127323151,0.564282655715942,0.534576177597046,0.565965116024017,0.530104696750641,0.533124089241028,0.558018505573273,0.529313445091248,0.556529700756073,0.531031370162964,0.439529329538345,0.531851768493652,0.455420076847076,0.537420868873596,0.467917919158936,0.540252864360809,0.549435079097748,0.538850128650665,0.553435623645782,0.553924322128296,0.480582892894745,0.557960271835327,0.481089293956757,0.5494464635849,0.477705299854279,0.540459215641022,0.470073908567429,0.569359242916107,0.500132322311401,0.565306842327118,\r\n0.515309035778046,0.527204275131226,0.556944966316223,0.532958209514618,0.443107038736343,0.534228026866913,0.450083911418915,0.534702777862549,0.458150804042816,0.538080453872681,0.458707839250565,0.544578731060028,0.545538365840912,0.546968936920166,0.473084449768066,0.562136769294739,0.481199443340302,0.567118465900421,0.488709300756454,0.571173429489136,0.495696306228638,0.571486115455627,0.503349244594574,0.567883133888245,0.512250423431396,0.570132791996002,0.524601399898529,0.568979442119598,0.532394886016846,0.568170487880707,0.525333166122437,0.535486400127411,0.561429083347321,0.530941486358643,0.561170816421509,0.533734261989594,0.445442795753479,0.534443259239197,0.441835969686508,0.536538422107697,0.453814774751663,0.542554438114166,0.461839914321899,0.542844355106354,0.549257874488831,0.541133999824524,0.553739488124847,0.554339528083801,0.47714701294899,0.543116509914398,0.467300117015839,0.553301453590393,0.474635273218155,0.565415680408478,0.485506355762482,0.565624594688416,0.481114625930786,0.560021340847015,0.477757215499878,0.574530839920044,0.491672992706299,0.576114594936371,0.506071090698242,0.570527791976929,0.508273899555206,0.539438843727112,0.561001181602478,0.528471529483795,0.560925245285034,0.535111665725708,0.448295056819916,0.535323083400726,0.450138360261917,0.542226552963257,0.458700239658356,0.545614361763,0.549675643444061,0.545556128025055,0.463940173387527,0.550169348716736,0.46919783949852,0.565262496471405,0.477471083402634,0.572777450084686,0.489030867815018,0.570411324501038,0.485192388296127,0.572506546974182,0.511928856372833,0.572681248188019,0.521666824817657,0.530757904052734,0.56537139415741,0.536843538284302,0.565075159072876,0.535995364189148,0.446506232023239,0.536418199539185,0.450192779302597,0.540360450744629,0.454143941402435,0.546106815338135,0.458716690540314,0.5487020611763,0.546406865119934,0.544025540351868,0.553435623645782,0.55665248632431,0.472833782434464,0.560706198215485,0.474349170923233,0.553931891918182,0.469939708709717,0.570631563663483,0.477291315793991,\r\n0.574830889701843,0.483199715614319,0.580040454864502,0.503173232078552,0.576010763645172,0.515462219715118,0.572729349136353,0.526749789714813,0.537832319736481,0.442600637674332,0.538608372211456,0.450302928686142,0.543771028518677,0.455020010471344,0.547298133373261,0.552655756473541,0.54861980676651,0.462424784898758,0.551194846630096,0.465941727161407,0.565779030323029,0.473712384700775,0.577867984771729,0.489438503980637,0.575398027896881,0.477462232112885,0.581226646900177,0.509123384952545,0.58068859577179,0.496259659528732,0.575871527194977,0.525748431682587,0.574892938137054,0.530419886112213,0.531411170959473,0.569321274757385,0.541763186454773,0.448441922664642,0.548578023910522,0.453978091478348,0.548729956150055,0.549166679382324,0.548524856567383,0.557170331478119,0.557655155658722,0.470318257808685,0.554068624973297,0.461927264928818,0.572005212306976,0.472928732633591,0.563568651676178,0.469648540019989,0.578644037246704,0.484245419502258,0.577540099620819,0.473321169614792,0.583743453025818,0.505725502967834,0.583880186080933,0.500769138336182,0.57760214805603,0.521735191345215,0.539108395576477,0.568364202976227,0.543092489242554,0.446955651044846,0.550903677940369,0.458328038454056,0.549950361251831,0.553754687309265,0.557383000850677,0.46282485127449,0.567724883556366,0.468981355428696,0.578531384468079,0.478477567434311,0.581055760383606,0.48847508430481,0.584176421165466,0.511594593524933,0.583609282970428,0.495648205280304,0.581141829490662,0.51580023765564,0.578727602958679,0.52706378698349,0.531718790531158,0.573086321353912,0.543226659297943,0.441790401935577,0.551366984844208,0.452657669782639,0.54666006565094,0.44645556807518,0.551549315452576,0.549268007278442,0.553976237773895,0.457164585590363,0.571098744869232,0.469530791044235,0.564881443977356,0.462188065052032,0.58132541179657,0.481245011091232,0.581101357936859,0.473247736692429,0.586794495582581,0.503813862800598,0.586756527423859,0.507291495800018,0.587183177471161,0.500641286373138,0.583537101745605,0.522175788879395,0.578992187976837,\r\n0.530519902706146,0.539726197719574,0.573777556419373,0.552988708019257,0.553316652774811,0.561035394668579,0.462022215127945,0.568095803260803,0.462269067764282,0.575455009937286,0.469230771064758,0.580627858638763,0.477567315101624,0.584397971630096,0.488240897655487,0.578701019287109,0.469152271747589,0.583806753158569,0.51825624704361,0.587632596492767,0.511488258838654,0.586158990859985,0.49374920129776,0.584042251110077,0.528450012207031,0.577502131462097,0.534434378147125,0.538038671016693,0.576995730400085,0.546567618846893,0.442019551992416,0.551635384559631,0.446456849575043,0.554015457630157,0.452579170465469,0.55228865146637,0.557329833507538,0.561439216136932,0.458229303359985,0.564742207527161,0.457873553037643,0.584157466888428,0.478720635175705,0.581483662128448,0.468067318201065,0.592045843601227,0.502041459083557,0.592929482460022,0.507952392101288,0.58689957857132,0.515367269515991,0.593002915382385,0.511535108089447,0.591277360916138,0.496255874633789,0.586531162261963,0.521185755729675,0.581176042556763,0.534388780593872,0.531187117099762,0.577335000038147,0.555776476860046,0.442227154970169,0.55651581287384,0.448712855577469,0.555504262447357,0.556879103183746,0.561406314373016,0.453756541013718,0.571655750274658,0.459585160017014,0.575610756874084,0.46565306186676,0.56730329990387,0.457002550363541,0.585807025432587,0.482580631971359,0.589032769203186,0.487916797399521,0.57817816734314,0.462017148733139,0.586618542671204,0.470892995595932,0.591491341590881,0.516566157341003,0.589874625205994,0.492649078369141,0.585886776447296,0.534340679645538,0.531589686870575,0.581398844718933,0.559378206729889,0.451118230819702,0.557169020175934,0.553823053836823,0.554890275001526,0.56084418296814,0.564178824424744,0.451319515705109,0.580911457538605,0.461403131484985,0.5865438580513,0.465692311525345,0.596421122550964,0.500799536705017,0.59962785243988,0.512247860431671,0.588768184185028,0.519304513931274,0.593619465827942,0.492742747068405,0.586850225925446,0.527289092540741,0.581189930438995,0.538163959980011,\r\n0.538604557514191,0.58052533864975,0.559087038040161,0.446549266576767,0.562098801136017,0.450123161077499,0.570401191711426,0.453647673130035,0.57597029209137,0.461279064416885,0.56730580329895,0.450361162424088,0.589034020900726,0.47449854016304,0.589298605918884,0.481005758047104,0.59225469827652,0.488727033138275,0.584010601043701,0.461872816085815,0.578085720539093,0.458259671926498,0.589254319667816,0.466374695301056,0.595885574817657,0.496155858039856,0.599205017089844,0.507905542850494,0.600283622741699,0.524605214595795,0.591985046863556,0.526085138320923,0.589311301708221,0.527520775794983,0.585561394691467,0.538305759429932,0.536856234073639,0.584723353385925,0.559306025505066,0.442110687494278,0.572948336601257,0.457760870456696,0.564673840999603,0.446539133787155,0.591420412063599,0.485018938779831,0.583050966262817,0.457964718341827,0.588549137115479,0.458283722400665,0.58632355928421,0.458645820617676,0.601552128791809,0.503030180931091,0.605157673358917,0.508216977119446,0.600117802619934,0.516152203083038,0.599603772163391,0.49287948012352,0.597374379634857,0.488775134086609,0.589042901992798,0.536704301834106,0.528212010860443,0.584675252437592,0.562065899372101,0.44620743393898,0.57368391752243,0.455307394266129,0.570071995258331,0.449286341667175,0.567662835121155,0.446121364831924,0.591645777225494,0.476701378822327,0.591829359531403,0.472478032112122,0.592761099338531,0.481056392192841,0.594515800476074,0.484544187784195,0.57831996679306,0.454086989164352,0.592457294464111,0.4624083340168,0.602648496627808,0.499775320291519,0.605320990085602,0.513012528419495,0.594885468482971,0.527301788330078,0.59228128194809,0.536727070808411,0.59852135181427,0.483698517084122,0.587897181510925,0.542112588882446,0.535367429256439,0.589321434497833,0.561926662921906,0.442260086536407,0.573233187198639,0.450999230146408,0.564932107925415,0.442052453756332,0.592071175575256,0.466613948345184,0.583102881908417,0.454985827207565,0.586643874645233,0.454024940729141,0.589393556118011,0.45336788892746,0.606749057769775,\r\n0.5044025182724,0.608173310756683,0.509091734886169,0.605585634708405,0.530595898628235,0.595662772655487,0.534234344959259,0.600439369678497,0.489294201135635,0.603948652744293,0.495181053876877,0.600196301937103,0.484954357147217,0.529428660869598,0.590043008327484,0.569958090782166,0.441082715988159,0.572917997837067,0.446308732032776,0.567290663719177,0.439183741807938,0.594362616539001,0.472829967737198,0.595048785209656,0.477525532245636,0.594833552837372,0.468669921159744,0.59482342004776,0.481051325798035,0.597238898277283,0.480656325817108,0.57870227098465,0.450385212898254,0.593930900096893,0.454175591468811,0.594733536243439,0.465516328811646,0.608022630214691,0.500983059406281,0.609017729759216,0.52057933807373,0.60445761680603,0.534268498420715,0.595614671707153,0.537858903408051,0.604228436946869,0.48898783326149,0.60713267326355,0.496478676795959,0.603252410888672,0.481441259384155,0.5266472697258,0.588706135749817,0.534426748752594,0.600077271461487,0.575656294822693,0.444637626409531,0.565528392791748,0.437253087759018,0.599629104137421,0.477088779211044,0.581360876560211,0.448930591344833,0.584054887294769,0.446280866861343,0.594491720199585,0.449493944644928,0.594672739505768,0.461108148097992,0.610781252384186,0.504183530807495,0.611259758472443,0.51522421836853,0.60840368270874,0.533510208129883,0.606059074401855,0.537627220153809,0.603582799434662,0.485820323228836,0.607863128185272,0.492919981479645,0.602759897708893,0.476670980453491,0.527908205986023,0.592990279197693,0.538303256034851,0.593344748020172,0.526039600372314,0.599603772163391,0.572229266166687,0.434088110923767,0.561753213405609,0.438032954931259,0.597822546958923,0.473647803068161,0.597147762775421,0.463533788919449,0.597503542900085,0.477074831724167,0.578279435634613,0.445708632469177,0.587151527404785,0.440583914518356,0.597318708896637,0.451524615287781,0.598116278648376,0.456355631351471,0.612773895263672,0.497226893901825,0.613129675388336,0.500432372093201,0.610733151435852,0.509515881538391,0.614010751247406,0.517634689807892,\r\n0.609982371330261,0.485979825258255,0.613552510738373,0.489286601543427,0.605657756328583,0.477153331041336,0.606264173984528,0.481144994497299,0.539646446704865,0.599844336509705,0.533781111240387,0.604384183883667,0.574900507926941,0.438620358705521,0.564320623874664,0.434988230466843,0.572071015834808,0.43091806769371,0.600458323955536,0.468553453683853,0.601512908935547,0.473417401313782,0.579698622226715,0.440762430429459,0.583872616291046,0.437994956970215,0.593920767307281,0.444574326276779,0.615389466285706,0.501426160335541,0.613953828811646,0.512108623981476,0.615445137023926,0.523939311504364,0.605499505996704,0.472761601209641,0.537586688995361,0.603168845176697,0.527008056640625,0.60357391834259,0.574934720993042,0.433803260326386,0.566979229450226,0.430020481348038,0.602520644664764,0.461784213781357,0.578469336032867,0.431891620159149,0.587561666965485,0.435760498046875,0.598603665828705,0.448006421327591,0.601747095584869,0.455578327178955,0.614034831523895,0.492714911699295,0.616678237915039,0.496607810258865,0.615241348743439,0.505650818347931,0.619013965129852,0.519015848636627,0.616630136966705,0.514414012432098,0.608942985534668,0.481214642524719,0.614055097103119,0.485888659954071,0.608341693878174,0.473202168941498,0.608317613601685,0.477145731449127,0.531713783740997,0.611096441745758,0.524820446968079,0.606574356555939,0.535196483135223,0.611656010150909,0.561384797096252,0.430775016546249,0.570402443408966,0.423600643873215,0.574265003204346,0.427250504493713,0.603040933609009,0.469330787658691,0.58486133813858,0.432946175336838,0.594065070152283,0.435449063777924,0.597399711608887,0.437193602323532,0.616769373416901,0.492624998092651,0.616116106510162,0.488733351230621,0.619034230709076,0.497081309556961,0.621490240097046,0.50120210647583,0.616664290428162,0.508263826370239,0.620268583297729,0.527811944484711,0.611040771007538,0.484021335840225,0.608407497406006,0.469361156225204,0.528569042682648,0.611835777759552,0.526010453701019,0.611278772354126,0.562621653079987,0.425157815217972,0.561351895332336,\r\n0.434145092964172,0.579496085643768,0.424912214279175,0.605664074420929,0.468383818864822,0.581898927688599,0.426218718290329,0.589916408061981,0.426561802625656,0.600384891033173,0.440381348133087,0.604960203170776,0.454726308584213,0.605633735656738,0.459362357854843,0.619426667690277,0.493609964847565,0.620471119880676,0.51571923494339,0.627763211727142,0.528680443763733,0.619650781154633,0.533186078071594,0.619460880756378,0.511284470558167,0.611419320106506,0.477578699588776,0.613874077796936,0.481074094772339,0.618797481060028,0.488968819379807,0.536373853683472,0.61497038602829,0.52999073266983,0.6158287525177,0.55847430229187,0.427454322576523,0.558480620384216,0.43347156047821,0.567246317863464,0.419092446565628,0.573197782039642,0.42157506942749,0.577274262905121,0.423170208930969,0.594661355018616,0.430085062980652,0.600220322608948,0.427980959415436,0.606067955493927,0.447564601898193,0.621871292591095,0.496760994195938,0.619362115859985,0.508091628551483,0.626777052879334,0.52107310295105,0.625969350337982,0.535968780517578,0.611104071140289,0.473205983638763,0.608151793479919,0.463084369897842,0.538025975227356,0.611478805541992,0.527467608451843,0.615448951721191,0.558456540107727,0.422091573476791,0.558397054672241,0.431099116802216,0.564471304416656,0.418274611234665,0.570097327232361,0.418611377477646,0.583254814147949,0.418548077344894,0.586672961711884,0.417787224054337,0.592872500419617,0.422809392213821,0.597600996494293,0.429243177175522,0.605045020580292,0.439973711967468,0.608298599720001,0.452883005142212,0.608250498771667,0.456803798675537,0.621771275997162,0.492552846670151,0.624115943908691,0.500163972377777,0.622048556804657,0.50415313243866,0.623898148536682,0.512373208999634,0.626035153865814,0.515645802021027,0.633750081062317,0.534606516361237,0.541540384292603,0.603781580924988,0.531915068626404,0.618786096572876,0.555956244468689,0.421905487775803,0.561624050140381,0.422563791275024,0.555799245834351,0.429779946804047,0.565792977809906,0.413577795028687,0.577221095561981,0.419145613908768,\r\n0.589387238025665,0.414528548717499,0.602928280830383,0.427475839853287,0.596007108688354,0.420802801847458,0.608237862586975,0.446934133768082,0.624394416809082,0.49622169137001,0.625656604766846,0.508660078048706,0.630114197731018,0.522183358669281,0.634023547172546,0.543297588825226,0.535147130489349,0.619231700897217,0.572044432163239,0.416002154350281,0.582550883293152,0.411663621664047,0.586161494255066,0.408897429704666,0.591617941856384,0.412738442420959,0.606010973453522,0.432043522596359,0.598694801330566,0.419086128473282,0.608675897121429,0.435160398483276,0.611140787601471,0.449419260025024,0.610993921756744,0.454090774059296,0.626559257507324,0.500018417835236,0.625189483165741,0.495149403810501,0.628848195075989,0.50357586145401,0.628235459327698,0.511493325233459,0.631563723087311,0.515925586223602,0.642637372016907,0.53802216053009,0.642227172851563,0.54401159286499,0.552936851978302,0.426954239606857,0.575209438800812,0.411487638950348,0.578397154808044,0.410030484199524,0.587460398674011,0.406821191310883,0.605364084243774,0.424857765436172,0.601931929588318,0.417436540126801,0.594615817070007,0.41199404001236,0.610888838768005,0.443940043449402,0.610931873321533,0.457898885011673,0.621420621871948,0.489175200462341,0.629907846450806,0.508084058761597,0.632603108882904,0.519798219203949,0.636245369911194,0.527600526809692,0.552976071834564,0.421518087387085,0.582216680049896,0.407503575086594,0.592407882213593,0.406549006700516,0.597236394882202,0.409250646829605,0.611157238483429,0.437480956315994,0.61387026309967,0.442813336849213,0.629810333251953,0.500000655651093,0.632032155990601,0.503940463066101,0.63627701997757,0.508172631263733,0.63542628288269,0.516630709171295,0.642620921134949,0.5290766954422,0.648240625858307,0.542206287384033,0.632900655269623,0.508091628551483,0.546142280101776,0.430643349885941,0.575456261634827,0.404281616210938,0.58088356256485,0.400797605514526,0.583629548549652,0.399137884378433,0.589192271232605,0.401390105485916,0.605052649974823,0.408426463603973,0.60829484462738,\r\n0.425176799297333,0.599536716938019,0.409136682748795,0.594736039638519,0.406937658786774,0.610925555229187,0.431339651346207,0.613880395889282,0.43845197558403,0.637391090393066,0.521087050437927,0.637874722480774,0.525263547897339,0.645238995552063,0.534400165081024,0.648067176342011,0.538139939308167,0.578181982040405,0.401930660009384,0.58640331029892,0.399989902973175,0.593656182289124,0.399725317955017,0.608325183391571,0.41139143705368,0.597954213619232,0.400846987962723,0.613614499568939,0.434124827384949,0.632509410381317,0.499877870082855,0.634889483451843,0.503717601299286,0.638348162174225,0.512098491191864,0.641177654266357,0.515581250190735,0.64345520734787,0.523120224475861,0.64930659532547,0.524041831493378,0.654223740100861,0.543371021747589,0.575044810771942,0.393539667129517,0.58091014623642,0.393101662397385,0.587517380714417,0.395696938037872,0.600515305995941,0.402000308036804,0.603201746940613,0.400959670543671,0.611253440380096,0.413662612438202,0.613866448402405,0.42760244011879,0.616443991661072,0.434150159358978,0.628722846508026,0.496516674757004,0.637664556503296,0.503497362136841,0.639806628227234,0.507283926010132,0.643064022064209,0.518925964832306,0.646902501583099,0.520216047763824,0.649385094642639,0.53459769487381,0.648911595344543,0.529056429862976,0.656722784042358,0.537695586681366,0.648784995079041,0.546996772289276,0.578149020671844,0.394132167100906,0.58345353603363,0.390814006328583,0.59388279914856,0.395274102687836,0.610462188720703,0.404204398393631,0.597897231578827,0.393924534320831,0.641828417778015,0.510643839836121,0.643981873989105,0.513073325157166,0.65165376663208,0.525869965553284,0.64905846118927,0.519052565097809,0.662186801433563,0.542839288711548,0.578149020671844,0.385477840900421,0.581860959529877,0.385028421878815,0.58753764629364,0.388344049453735,0.603748679161072,0.392643362283707,0.613887965679169,0.414747565984726,0.61657190322876,0.426618754863739,0.646412551403046,0.516095221042633,0.656054317951202,0.53457236289978,0.655730247497559,0.530999720096588,\r\n0.652291834354401,0.51977926492691,0.663032472133636,0.538655161857605,0.661244928836823,0.547814607620239,0.575614511966705,0.381817877292633,0.591890096664429,0.385149955749512,0.610567271709442,0.395063936710358,0.616659224033356,0.421473771333694,0.61392217874527,0.406879425048828,0.595129787921906,0.387042611837387,0.645411133766174,0.510080516338348,0.647007584571838,0.512509942054749,0.662761569023132,0.534536898136139,0.655016243457794,0.523121476173401,0.649612963199615,0.514148116111755,0.652263939380646,0.515429317951202,0.669661223888397,0.543034255504608,0.668772518634796,0.552673518657684,0.578823804855347,0.380434155464172,0.572611570358276,0.384180217981339,0.588328897953033,0.384096652269363,0.607121229171753,0.387906014919281,0.616665542125702,0.411097705364227,0.619295001029968,0.421011686325073,0.657707750797272,0.523912727832794,0.659024357795715,0.517890393733978,0.655588448047638,0.513944327831268,0.670360028743744,0.53896152973175,0.663857936859131,0.556415796279907,0.577933847904205,0.37639182806015,0.573014199733734,0.395631104707718,0.571765899658203,0.379872053861618,0.58375358581543,0.38032653927803,0.588718831539154,0.379546672105789,0.595455169677734,0.383789032697678,0.611124336719513,0.38769206404686,0.613862633705139,0.397694677114487,0.619450747966766,0.412234574556351,0.616532623767853,0.399615168571472,0.648764789104462,0.510405838489532,0.651937365531921,0.511022388935089,0.666660845279694,0.535177528858185,0.671699464321136,0.552919089794159,0.676013946533203,0.539431214332581,0.657084882259369,0.552144348621368,0.581487476825714,0.376793146133423,0.574887871742249,0.376755177974701,0.57260400056839,0.40473610162735,0.568903505802155,0.388349115848541,0.567681849002838,0.383891552686691,0.593094050884247,0.380003690719604,0.60307389497757,0.383600383996964,0.608698666095734,0.38367760181427,0.619045615196228,0.400635570287704,0.663108468055725,0.524955868721008,0.663404703140259,0.519784331321716,0.657520353794098,0.5145583152771,0.666232883930206,0.529913544654846,0.672914803028107,\r\n0.53462427854538,0.676598846912384,0.545467495918274,0.67500114440918,0.535886466503143,0.656917750835419,0.560887277126312,0.580016374588013,0.372824281454086,0.574734687805176,0.372905284166336,0.570545494556427,0.376342445611954,0.565482795238495,0.379949271678925,0.590203821659088,0.374492853879929,0.600139319896698,0.380037873983383,0.613994300365448,0.38736417889595,0.612106740474701,0.383980184793472,0.618734180927277,0.388144016265869,0.662933766841888,0.515861034393311,0.660814464092255,0.514113962650299,0.677003979682922,0.55234432220459,0.682771801948547,0.535224318504334,0.680503189563751,0.541973352432251,0.66111832857132,0.56117844581604,0.652757704257965,0.553430557250977,0.584924638271332,0.372686266899109,0.565804362297058,0.376248776912689,0.595555186271667,0.37634751200676,0.604494333267212,0.379851788282394,0.609592437744141,0.380588591098785,0.616642773151398,0.388057947158813,0.667602717876434,0.520156502723694,0.665093541145325,0.515700221061707,0.67367947101593,0.531412422657013,0.678989052772522,0.554800391197205,0.67682671546936,0.531106054782867,0.680455029010773,0.538513422012329,0.670625925064087,0.559583306312561,0.649716794490814,0.560912549495697,0.577454030513763,0.368259102106094,0.583887755870819,0.369085788726807,0.567855298519135,0.372706532478333,0.561836719512939,0.375985443592072,0.59360933303833,0.371954530477524,0.591862261295319,0.368687003850937,0.599741816520691,0.376352578401566,0.60315614938736,0.377052664756775,0.615488171577454,0.38434100151062,0.618922829627991,0.384637236595154,0.666068315505981,0.518885493278503,0.669223189353943,0.526602923870087,0.676548182964325,0.560783445835114,0.685111343860626,0.530893385410309,0.685448110103607,0.54417872428894,0.684746742248535,0.549964308738709,0.580789923667908,0.368707269430161,0.572848320007324,0.368750303983688,0.588416218757629,0.366815865039825,0.564445972442627,0.372449547052383,0.597927629947662,0.373110383749008,0.668061017990112,0.516115486621857,0.671162664890289,0.523418962955475,0.675667107105255,0.527871489524841,\r\n0.682637631893158,0.561294913291931,0.684126436710358,0.527315676212311,0.68725597858429,0.540618717670441,0.690134823322296,0.551394879817963,0.683726370334625,0.556385397911072,0.580983579158783,0.361080944538116,0.577781915664673,0.362852066755295,0.583580136299133,0.362221598625183,0.586664080619812,0.363263517618179,0.561753213405609,0.372314065694809,0.594710767269135,0.368950337171555,0.597055375576019,0.369809955358505,0.590782344341278,0.364077538251877,0.601259708404541,0.373858571052551,0.670879125595093,0.519576668739319,0.689220786094666,0.52711695432663,0.690248787403107,0.536694169044495,0.692459166049957,0.546285331249237,0.594436049461365,0.365813195705414,0.600041806697845,0.370960742235184,0.673968136310577,0.520894587039948,0.676616549491882,0.522975862026215,0.688045918941498,0.523535430431366,0.692312300205231,0.541679620742798,0.6933833360672,0.550442814826965,0.689717054367065,0.557714700698853,0.577794551849365,0.35825777053833,0.58347886800766,0.356998115777969,0.586778044700623,0.357779234647751,0.5892214179039,0.358642637729645,0.597592115402222,0.367645084857941,0.592788994312286,0.361265778541565,0.673666834831238,0.517332077026367,0.690631091594696,0.52154278755188,0.693021297454834,0.53291392326355,0.699432253837585,0.542343020439148,0.697272479534149,0.545953631401062,0.573297739028931,0.363900303840637,0.580821573734283,0.355263710021973,0.595658957958221,0.363788902759552,0.676910281181335,0.51804107427597,0.680538594722748,0.520527482032776,0.69545704126358,0.519989430904388,0.696095108985901,0.534533143043518,0.69942718744278,0.538809657096863,0.699143588542938,0.552217721939087,0.694586038589478,0.55808436870575,0.577374279499054,0.354035705327988,0.581221580505371,0.348834991455078,0.586990714073181,0.354250907897949,0.590372204780579,0.356625914573669,0.675550580024719,0.515264749526978,0.693327665328979,0.519194364547729,0.687200248241425,0.516538321971893,0.696315407752991,0.522869527339935,0.698829650878906,0.531265616416931,0.703536629676819,0.547310769557953,0.70440000295639,\r\n0.538523495197296,0.57456374168396,0.355308026075363,0.586207091808319,0.346547365188599,0.678725719451904,0.514664649963379,0.680308222770691,0.517367541790009,0.694325268268585,0.516221821308136,0.690489292144775,0.517444789409637,0.697548449039459,0.527167558670044,0.699637353420258,0.519464015960693,0.708972752094269,0.543353259563446,0.70368093252182,0.55744880437851,0.705579936504364,0.55386608839035,0.5778768658638,0.349423676729202,0.571329176425934,0.357922285795212,0.569340288639069,0.345634579658508,0.583810567855835,0.342384785413742,0.589675903320313,0.352887451648712,0.698211848735809,0.515896439552307,0.683693468570709,0.514930486679077,0.702726364135742,0.523611426353455,0.703015029430389,0.526845991611481,0.708395481109619,0.548728704452515,0.704192399978638,0.530671834945679,0.70900571346283,0.539876878261566,0.579125106334686,0.343578606843948,0.56970739364624,0.354854792356491,0.570002377033234,0.351168215274811,0.587984502315521,0.341626435518265,0.589046716690063,0.348286837339401,0.701331257820129,0.516496539115906,0.703853130340576,0.519600749015808,0.714173436164856,0.550974547863007,0.713846862316132,0.544449627399445,0.575876593589783,0.341969519853592,0.566314578056335,0.358098268508911,0.564496576786041,0.350680828094482,0.581408977508545,0.338938742876053,0.585650026798248,0.338253855705261,0.706066071987152,0.523011326789856,0.706547141075134,0.526881456375122,0.714292466640472,0.548493206501007,0.711474359035492,0.534262180328369,0.714381098747253,0.535110414028168,0.714403867721558,0.553934454917908,0.570926547050476,0.341431498527527,0.576867878437042,0.339548945426941,0.565465092658997,0.354292690753937,0.563157200813293,0.34499779343605,0.588328897953033,0.337442338466644,0.708967685699463,0.527571439743042,0.722941696643829,0.549404740333557,0.70997542142868,0.530832648277283,0.717280209064484,0.538280427455902,0.719391882419586,0.545302927494049,0.718034744262695,0.558580636978149,0.565228343009949,0.34086686372757,0.573492705821991,0.338196873664856,0.561272144317627,0.358259052038193,\r\n0.561422765254974,0.351739197969437,0.561220228672028,0.35519152879715,0.584232151508331,0.33595860004425,0.578122437000275,0.336644768714905,0.587631344795227,0.334835678339005,0.709210753440857,0.523437976837158,0.722665727138519,0.553420424461365,0.713492333889008,0.530933916568756,0.718320846557617,0.534573614597321,0.714565932750702,0.562239348888397,0.569354176521301,0.337848722934723,0.57473087310791,0.336062431335449,0.560732781887054,0.340856730937958,0.559141457080841,0.345425695180893,0.581081092357636,0.335848450660706,0.711535155773163,0.526942253112793,0.728243708610535,0.548333704471588,0.723473429679871,0.544166028499603,0.716973841190338,0.530747830867767,0.719979286193848,0.538567841053009,0.720262885093689,0.557853937149048,0.565258741378784,0.338070273399353,0.552744388580322,0.355372577905655,0.560601115226746,0.337109386920929,0.554629445075989,0.351522713899612,0.725858569145203,0.545107960700989,0.728256344795227,0.556116998195648,0.714674770832062,0.527348637580872,0.720176815986633,0.531004786491394,0.722412526607513,0.534286260604858,0.720457851886749,0.567131102085114,0.557291865348816,0.340184479951859,0.554788947105408,0.348626106977463,0.730211019515991,0.545102894306183,0.731284618377686,0.553572356700897,0.723921597003937,0.538384258747101,0.716252207756042,0.569090902805328,0.548823654651642,0.351786017417908,0.554881393909454,0.345110446214676,0.557027220726013,0.33608141541481,0.549944043159485,0.347917169332504,0.727598011493683,0.561993718147278,0.725552201271057,0.53462678194046,0.712064325809479,0.564538359642029,0.54704362154007,0.354753524065018,0.550566911697388,0.344045758247375,0.554642140865326,0.337924689054489,0.730950355529785,0.538778007030487,0.733277261257172,0.544520497322083,0.731669485569,0.562578618526459,0.727010607719421,0.565801858901978,0.544122993946075,0.350407361984253,0.550098478794098,0.340606063604355,0.736908137798309,0.543940722942352,0.73638653755188,0.551648080348969,0.726142168045044,0.570047974586487,0.541451752185822,0.355175077915192,0.544663608074188,\r\n0.347855120897293,0.546575248241425,0.344141960144043,0.548836290836334,0.337365120649338,0.735720634460449,0.537884175777435,0.739716112613678,0.551040351390839,0.539751529693604,0.351399898529053,0.538508355617523,0.347734868526459,0.545248448848724,0.340057879686356,0.742860853672028,0.537990510463715,0.738186776638031,0.560016274452209,0.73365706205368,0.565465092658997,0.537846207618713,0.353612840175629,0.542421519756317,0.344310343265533,0.543548226356506,0.33635738492012,0.743969857692719,0.545492827892303,0.735923171043396,0.562740683555603,0.745045900344849,0.555294096469879,0.536181449890137,0.350950479507446,0.538095593452454,0.345087677240372,0.539984464645386,0.341013699769974,0.542113900184631,0.338336139917374,0.749152779579163,0.5461106300354,0.745370030403137,0.541644215583801,0.746251165866852,0.560639142990112,0.533210158348084,0.356927216053009,0.535419285297394,0.346676498651505,0.754333257675171,0.541613817214966,0.750750482082367,0.548984408378601,0.748157739639282,0.556441068649292,0.535114228725433,0.342711389064789,0.534338176250458,0.33896279335022,0.753796458244324,0.545434594154358,0.751130282878876,0.560011208057404,0.536320686340332,0.33606493473053,0.758024871349335,0.551643013954163,0.532230257987976,0.34247213602066,0.531328916549683,0.335977584123611,0.760805010795593,0.548812210559845,0.532670855522156,0.345842212438583,0.53095668554306,0.339186877012253,0.760379612445831,0.555149793624878,0.75504469871521,0.559499740600586,0.763258457183838,0.553896427154541,0.305339336395264,0.84527063369751,0.308968931436539,0.840690314769745,0.308751195669174,0.844956696033478,0.311545222997665,0.844862997531891,0.306996524333954,0.848901510238647,0.313498646020889,0.839168548583984,0.310286849737167,0.848823010921478,0.315178632736206,0.842847526073456,0.31284287571907,0.84736967086792,0.309567749500275,0.85324639081955,0.317813158035278,0.84011298418045,0.313551843166351,0.852094352245331,0.307057291269302,0.852347552776337,0.317613124847412,0.843867957592011,0.316625654697418,0.849268674850464,\r\n0.312790960073471,0.856570899486542,0.306409120559692,0.856054365634918,0.320584416389465,0.844146430492401,0.320336282253265,0.852899491786957,0.316354721784592,0.856153130531311,0.310846418142319,0.859700441360474,0.307872593402863,0.860070109367371,0.321164220571518,0.848443210124969,0.323332875967026,0.842617154121399,0.315130531787872,0.859819412231445,0.323979794979095,0.837781071662903,0.31976529955864,0.856168270111084,0.324373513460159,0.851063847541809,0.318343609571457,0.859852313995361,0.309870332479477,0.863262891769409,0.312251657247543,0.863313555717468,0.324627995491028,0.847587406635284,0.326169967651367,0.839852213859558,0.322873324155808,0.856211364269257,0.316907972097397,0.863635122776031,0.313767045736313,0.866483569145203,0.325362265110016,0.844067931175232,0.322860658168793,0.858983874320984,0.329632461071014,0.845420062541962,0.326343417167664,0.85589736700058,0.320638835430145,0.864488363265991,0.311328738927841,0.867440700531006,0.329560279846191,0.841958820819855,0.329833745956421,0.8491091132164,0.328812092542648,0.855684697628021,0.330412298440933,0.838376045227051,0.326966255903244,0.860082745552063,0.325539499521255,0.863146424293518,0.334097594022751,0.840510547161102,0.335040748119354,0.848552107810974,0.322309941053391,0.867825567722321,0.334972411394119,0.845030128955841,0.331566870212555,0.856315135955811,0.332274585962296,0.852783024311066,0.329624861478806,0.860070109367371,0.333643108606339,0.837578475475311,0.328224658966064,0.868433237075806,0.31972861289978,0.867539405822754,0.338127255439758,0.843827426433563,0.337024569511414,0.846835434436798,0.335193961858749,0.852909624576569,0.329564094543457,0.863976955413818,0.322579622268677,0.87168937921524,0.319248795509338,0.870899379253387,0.339310944080353,0.839940845966339,0.332231521606445,0.860090315341949,0.328108191490173,0.870319545269012,0.332654356956482,0.86406809091568,0.345002859830856,0.844576895236969,0.341494798660278,0.848572373390198,0.338974207639694,0.852955222129822,0.332340389490128,0.871896982192993,0.327991724014282,\r\n0.872205853462219,0.318777829408646,0.874760627746582,0.348484307527542,0.841761291027069,0.33532053232193,0.860513210296631,0.33863490819931,0.856662034988403,0.326023101806641,0.875674664974213,0.321930170059204,0.875922799110413,0.335397779941559,0.868412971496582,0.348722338676453,0.845508635044098,0.345905512571335,0.848435640335083,0.344677478075027,0.851909518241882,0.342122703790665,0.858285009860992,0.337619572877884,0.864607393741608,0.332854390144348,0.876315295696259,0.319109529256821,0.878743469715118,0.338088005781174,0.870605647563934,0.353124171495438,0.844214797019959,0.328374058008194,0.879865109920502,0.322974592447281,0.87990814447403,0.349987059831619,0.849023044109344,0.351963251829147,0.841277718544006,0.34655749797821,0.856510102748871,0.340422481298447,0.867777466773987,0.340611129999161,0.872679352760315,0.333984911441803,0.878908038139343,0.319394379854202,0.882169246673584,0.354677557945251,0.848521709442139,0.354813009500504,0.83966988325119,0.350598514080048,0.852600753307343,0.3445103764534,0.860685348510742,0.332255572080612,0.883181989192963,0.328923493623734,0.884235322475433,0.322811275720596,0.883574485778809,0.358822405338287,0.847820341587067,0.354730725288391,0.852327287197113,0.358400821685791,0.843943893909454,0.353424221277237,0.856978535652161,0.350637763738632,0.860411882400513,0.343534290790558,0.868263602256775,0.338347524404526,0.879662573337555,0.336418151855469,0.883782088756561,0.320837616920471,0.886544466018677,0.357808351516724,0.851020753383636,0.347995638847351,0.864108622074127,0.343386173248291,0.873400986194611,0.340941548347473,0.876482367515564,0.332875907421112,0.888803005218506,0.327080219984055,0.888825833797455,0.324025362730026,0.89001327753067,0.35791090130806,0.855712532997131,0.353849589824677,0.8605055809021,0.351231515407562,0.865627765655518,0.340406030416489,0.883123755455017,0.334993928670883,0.888916969299316,0.329981863498688,0.892162978649139,0.320276767015457,0.892188251018524,0.357155084609985,0.85934591293335,0.346049815416336,0.873866856098175,\r\n0.344378709793091,0.879837274551392,0.337918370962143,0.889008104801178,0.332684755325317,0.895993828773499,0.327184021472931,0.897951066493988,0.322428971529007,0.897237062454224,0.356235980987549,0.862655222415924,0.352693736553192,0.868448436260223,0.348759055137634,0.886268496513367,0.341044098138809,0.889623403549194,0.33638396859169,0.896568596363068,0.318713277578354,0.898378968238831,0.348466604948044,0.878396570682526,0.346809417009354,0.893661916255951,0.356542348861694,0.867374837398529,0.351332813501358,0.877287566661835,0.351137846708298,0.891585648059845,0.344611644744873,0.899437367916107,0.340479463338852,0.896634459495544,0.351184695959091,0.882592082023621,0.349969327449799,0.904562056064606,0.353823006153107,0.878766238689423,0.351145446300507,0.899652540683746,0.344636976718903,0.904293715953827,0.340465545654297,0.902435183525085,0.354240775108337,0.907119393348694,0.34740823507309,0.908843636512756,0.336343467235565,0.903116285800934,0.352952003479004,0.912168145179749,0.341854333877563,0.908572733402252,0.350184559822083,0.914249420166016,0.720038831233978,0.909300684928894,0.720538854598999,0.905429303646088,0.72250497341156,0.908191680908203,0.806226193904877,0.910457789897919,0.809226632118225,0.906606674194336,0.80884176492691,0.910727441310883,0.143950790166855,0.34329628944397,0.143924206495285,0.340197145938873,0.146661281585693,0.340642780065537,0.140727579593658,0.343579858541489,0.141327664256096,0.339832544326782,0.143201321363449,0.336095333099365,0.137418270111084,0.344136923551559,0.146011829376221,0.336389034986496,0.140154078602791,0.336328268051147,0.136199131608009,0.340166747570038,0.14375202357769,0.329795747995377,0.140917479991913,0.330838948488235,0.134826794266701,0.344076126813889,0.133387356996536,0.336196601390839,0.133024021983147,0.340045213699341,0.141133964061737,0.323111325502396,0.136069998145103,0.329795747995377,0.131659284234047,0.344238191843033,0.13487996160984,0.323830395936966,0.144011557102203,0.322584688663483,0.127597987651825,0.340521246194839,0.131251633167267,\r\n0.329076677560806,0.138058871030808,0.320245116949081,0.14110104739666,0.315920501947403,0.125766098499298,0.335973799228668,0.124602645635605,0.344055891036987,0.13368234038353,0.319860249757767,0.144002690911293,0.316376268863678,0.122675806283951,0.339690744876862,0.129046276211739,0.324630528688431,0.127580255270004,0.346658766269684,0.12879940867424,0.320700883865356,0.133970975875854,0.316234469413757,0.138119637966156,0.304658234119415,0.143501371145248,0.311838954687119,0.122422613203526,0.331831485033035,0.124853312969208,0.348269104957581,0.130445197224617,0.346901834011078,0.118523359298706,0.344147026538849,0.130131229758263,0.317267507314682,0.134365975856781,0.307767510414124,0.141060531139374,0.307899177074432,0.119017094373703,0.333026558160782,0.122204862535,0.325673699378967,0.119991905987263,0.347742438316345,0.132859438657761,0.347570270299912,0.118051141500473,0.340207278728485,0.126854851841927,0.316315472126007,0.128355041146278,0.31235545873642,0.130690798163414,0.309570282697678,0.141451731324196,0.304334133863449,0.13166181743145,0.295279771089554,0.119612112641335,0.321379452943802,0.120533749461174,0.350699812173843,0.114945665001869,0.347843736410141,0.112787149846554,0.340126246213913,0.127977773547173,0.304830402135849,0.138310804963112,0.299432218074799,0.115403957664967,0.33620673418045,0.117863774299622,0.328367710113525,0.115968585014343,0.352087318897247,0.113221384584904,0.34428882598877,0.119515895843506,0.316183835268021,0.124325394630432,0.311697155237198,0.140832647681236,0.29971581697464,0.126037016510963,0.301599591970444,0.135433197021484,0.294874668121338,0.114677280187607,0.332125186920166,0.116759829223156,0.323050558567047,0.115290015935898,0.356928497552872,0.108337193727493,0.347752571105957,0.106644563376904,0.340561747550964,0.108625836670399,0.335872530937195,0.138165205717087,0.289344817399979,0.129867911338806,0.287947148084641,0.132416352629662,0.289962619543076,0.113973386585712,0.327871441841125,0.113140366971493,0.356908231973648,0.110166549682617,0.352269649505615,\r\n0.107061073184013,0.344167292118073,0.11946652084589,0.311960488557816,0.116552211344242,0.314087331295013,0.120297014713287,0.307605475187302,0.127035886049271,0.288727015256882,0.13547371327877,0.285394906997681,0.109833598136902,0.329390645027161,0.113741710782051,0.313347995281219,0.111497104167938,0.359176874160767,0.103226386010647,0.35146951675415,0.10088050365448,0.344207793474197,0.100745044648647,0.340298414230347,0.103440336883068,0.336865067481995,0.12141615152359,0.28935495018959,0.129861578345299,0.283845335245132,0.132323920726776,0.284240335226059,0.138160154223442,0.283875733613968,0.105550743639469,0.32761824131012,0.105778627097607,0.320599615573883,0.111171744763851,0.317652374505997,0.109829798340797,0.364321857690811,0.102668084204197,0.360108643770218,0.102916218340397,0.356027096509933,0.102811142802238,0.332560688257217,0.116471186280251,0.308790445327759,0.118900626897812,0.298784047365189,0.12116801738739,0.284473270177841,0.127181470394135,0.283845335245132,0.132422670722008,0.276614010334015,0.135153412818909,0.278173714876175,0.102840259671211,0.324812829494476,0.111137568950653,0.306461006402969,0.106790155172348,0.36430162191391,0.098971389234066,0.348886907100677,0.0994486659765244,0.352279752492905,0.0975572764873505,0.340632647275925,0.100087992846966,0.33670300245285,0.100133568048477,0.331163018941879,0.113639160990715,0.307575076818466,0.11891708523035,0.291238725185394,0.118823401629925,0.28594183921814,0.128974109888077,0.277039378881454,0.10287444293499,0.317510575056076,0.106607846915722,0.313499927520752,0.107999175786972,0.305792570114136,0.107421882450581,0.368889570236206,0.100352585315704,0.368960469961166,0.0964419394731522,0.360888510942459,0.0974724590778351,0.344916760921478,0.0969673246145248,0.356675297021866,0.0971901416778564,0.335578799247742,0.116481311619282,0.297518044710159,0.113749302923679,0.298713147640228,0.116395227611065,0.289121985435486,0.118893027305603,0.275631606578827,0.132582187652588,0.27204629778862,0.0996803492307663,0.322655558586121,0.1098323315382,\r\n0.300819754600525,0.103109918534756,0.368180602788925,0.0975863933563232,0.366155028343201,0.0928212031722069,0.352624118328094,0.122307404875755,0.276137977838516,0.115712858736515,0.276512712240219,0.12985397875309,0.272086828947067,0.135363578796387,0.272188097238541,0.0995195657014847,0.317520707845688,0.102932676672935,0.309469014406204,0.10444300621748,0.307261109352112,0.105240575969219,0.302014857530594,0.10565709322691,0.37190768122673,0.0986219793558121,0.377994567155838,0.0965875312685966,0.373234450817108,0.0922527760267258,0.368018567562103,0.0921628922224045,0.360554277896881,0.0909006968140602,0.356634765863419,0.113550543785095,0.29233255982399,0.11078941822052,0.296181172132492,0.11623191088438,0.283875733613968,0.122447930276394,0.272026062011719,0.11750803142786,0.272137463092804,0.126813068985939,0.270415723323822,0.135442063212395,0.268126785755157,0.0999525338411331,0.313145458698273,0.105720393359661,0.295188635587692,0.102939009666443,0.377447664737701,0.107509233057499,0.371320277452469,0.0909905806183815,0.374328255653381,0.0885459557175636,0.353110253810883,0.111091993749142,0.290793091058731,0.11385565251112,0.286600142717361,0.109277822077274,0.276532977819443,0.11182626336813,0.271529793739319,0.127533420920372,0.262728601694107,0.137736037373543,0.271722227334976,0.100094325840473,0.304739266633987,0.100095592439175,0.308770179748535,0.102246508002281,0.299411982297897,0.105569735169411,0.375695526599884,0.10752822458744,0.373082518577576,0.103209927678108,0.382572412490845,0.092449001967907,0.378105998039246,0.0884598642587662,0.372383713722229,0.0880066379904747,0.360432744026184,0.0904170870780945,0.348907172679901,0.0866013914346695,0.356553763151169,0.110081732273102,0.282103329896927,0.111075535416603,0.265848010778427,0.123149290680885,0.262698233127594,0.138299405574799,0.275894910097122,0.138133555650711,0.268329352140427,0.130174279212952,0.260814428329468,0.100052550435066,0.300637453794479,0.102455399930477,0.29070195555687,0.105172216892242,0.382369846105576,0.0975838676095009,\r\n0.38105320930481,0.0894625335931778,0.380860775709152,0.0809259563684464,0.368129968643188,0.0865773409605026,0.375290423631668,0.106395162642002,0.287825614213943,0.106772430241108,0.27452763915062,0.107957392930985,0.282194495201111,0.108194135129452,0.267731815576553,0.114486113190651,0.266951948404312,0.124136760830879,0.25685441493988,0.135381296277046,0.26409587264061,0.127665087580681,0.255983412265778,0.0972939506173134,0.300698220729828,0.100089259445667,0.296069771051407,0.104182213544846,0.384689152240753,0.10044626891613,0.385296821594238,0.0966052561998367,0.385631024837494,0.0930338948965073,0.38573232293129,0.0802714377641678,0.372353315353394,0.0807550475001335,0.376971662044525,0.0844960510730743,0.358984440565109,0.118986710906029,0.263154000043869,0.109143629670143,0.262627333402634,0.132567003369331,0.260095357894897,0.0971850752830505,0.296566039323807,0.100094325840473,0.288808017969131,0.102226257324219,0.284726470708847,0.0873761773109436,0.386664092540741,0.0828831717371941,0.384537220001221,0.0755480229854584,0.371948212385178,0.105272226035595,0.284311234951019,0.105206400156021,0.280239790678024,0.104591123759747,0.271428495645523,0.105325400829315,0.264561772346497,0.114159487187862,0.261006861925125,0.124543145298958,0.25260066986084,0.114748172461987,0.252843767404556,0.132516354322433,0.256125211715698,0.135281279683113,0.260044723749161,0.0973965004086494,0.29205909371376,0.103894829750061,0.388517498970032,0.0989169552922249,0.389216333627701,0.0953759774565697,0.389125168323517,0.0857544466853142,0.389307469129562,0.0743276104331017,0.377366632223129,0.0749555379152298,0.366458863019943,0.0783306732773781,0.385560125112534,0.10337071120739,0.278153449296951,0.109748773276806,0.258079886436462,0.121502235531807,0.252701967954636,0.127147287130356,0.252155065536499,0.130878165364265,0.252722233533859,0.0991752147674561,0.284240335226059,0.0951898768544197,0.289101749658585,0.0919312164187431,0.389358103275299,0.0838605239987373,0.387535095214844,0.0728084146976471,0.383261114358902,\r\n0.0723691210150719,0.370185941457748,0.0701713562011719,0.373366117477417,0.0807575732469559,0.388142764568329,0.0993866324424744,0.2762291431427,0.0992942154407501,0.26884588599205,0.105220325291157,0.259052187204361,0.121649093925953,0.245399728417397,0.127768889069557,0.248164653778076,0.117387764155865,0.249926909804344,0.135239511728287,0.25613534450531,0.0996512249112129,0.280776590108871,0.0675507560372353,0.37864276766777,0.0780774727463722,0.389368236064911,0.0716753527522087,0.387069195508957,0.0991410315036774,0.272147595882416,0.100106984376907,0.260561227798462,0.109190471470356,0.252225965261459,0.124430470168591,0.244265392422676,0.110052607953548,0.248448237776756,0.135210394859314,0.252225965261459,0.0892979502677917,0.28844341635704,0.0649010390043259,0.38523605465889,0.0631020665168762,0.37282931804657,0.0598294772207737,0.376991897821426,0.0745770037174225,0.389479637145996,0.0680837407708168,0.387980729341507,0.0878813117742538,0.272623598575592,0.0894587337970734,0.267083615064621,0.104943074285984,0.256266981363297,0.121227517724037,0.240923181176186,0.118437267839909,0.24208790063858,0.131535217165947,0.244954094290733,0.132501170039177,0.248397588729858,0.116007834672928,0.241672649979591,0.137600585818291,0.252276599407196,0.0622462518513203,0.383210450410843,0.0648427978157997,0.36969980597496,0.0709334835410118,0.389945536851883,0.0880104377865791,0.276836812496185,0.0946151167154312,0.26032829284668,0.104280956089497,0.252469033002853,0.0987612381577492,0.256226480007172,0.125233113765717,0.240001544356346,0.107881434261799,0.245916247367859,0.138205721974373,0.26005482673645,0.135273680090904,0.248245671391487,0.0624564066529274,0.387899696826935,0.0653378069400787,0.38914543390274,0.0542274639010429,0.373852252960205,0.0633033588528633,0.368271768093109,0.0564442165195942,0.381711512804031,0.067763440310955,0.39006707072258,0.085063211619854,0.275864541530609,0.0859519392251968,0.268147051334381,0.0873774439096451,0.260237157344818,0.118634767830372,0.236497282981873,0.125400215387344,\r\n0.23634535074234,0.116024293005466,0.236466899514198,0.131476983428001,0.2398901283741,0.108509369194508,0.239262208342552,0.0591698959469795,0.385509490966797,0.0541717633605003,0.377032428979874,0.0568911097943783,0.370449274778366,0.0553086213767529,0.379371970891953,0.0814361497759819,0.27211719751358,0.0856101214885712,0.263478070497513,0.0931187123060226,0.256398648023605,0.100753903388977,0.250747263431549,0.112998574972153,0.237044185400009,0.135195195674896,0.244255274534225,0.101640097796917,0.243262737989426,0.0599332861602306,0.389459401369095,0.0562214031815529,0.384476453065872,0.0519689358770847,0.381286144256592,0.0792548432946205,0.276117742061615,0.0807208642363548,0.267296314239502,0.0824413448572159,0.260510593652725,0.0886282399296761,0.256317645311356,0.0965811982750893,0.253107070922852,0.114326596260071,0.233043655753136,0.120328664779663,0.232385337352753,0.129412144422531,0.236375734210014,0.134960994124413,0.240335762500763,0.101693272590637,0.234542593359947,0.110227316617966,0.232841089367867,0.0566113255918026,0.388112366199493,0.0535235740244389,0.385813325643539,0.0766418352723122,0.272826164960861,0.0778306052088737,0.266668379306793,0.0819298848509789,0.256479680538177,0.0852910876274109,0.255487143993378,0.0964229479432106,0.246604949235916,0.1257154494524,0.232618272304535,0.132397353649139,0.235950365662575,0.0995157659053802,0.235069245100021,0.0753239393234253,0.276624143123627,0.0779673308134079,0.260459959506989,0.0771862119436264,0.25635814666748,0.081100657582283,0.246868282556534,0.0899474024772644,0.249450892210007,0.0968508571386337,0.241470083594322,0.118871502578259,0.228789925575256,0.122560605406761,0.228475958108902,0.133020222187042,0.232679054141045,0.113099850714207,0.228729158639908,0.137279018759727,0.238938108086586,0.0986954048275948,0.228739276528358,0.109171479940414,0.228435441851616,0.0537970289587975,0.389469534158707,0.078581340610981,0.281303226947784,0.0705574825406075,0.277576148509979,0.07538091391325,0.266840547323227,0.0734211578965187,0.261087894439697,\r\n0.078866183757782,0.252327233552933,0.12866647541523,0.227584704756737,0.138869106769562,0.244974359869957,0.096816673874855,0.236659318208694,0.0937162637710571,0.232780322432518,0.0508751198649406,0.388142764568329,0.0751935467123985,0.283551633358002,0.068215399980545,0.272623598575592,0.0676532983779907,0.266131609678268,0.0751163214445114,0.251577764749527,0.0841858834028244,0.244852811098099,0.0777533799409866,0.245946630835533,0.0896321758627892,0.244599625468254,0.121155351400375,0.222976490855217,0.116992771625519,0.223898127675056,0.127679005265236,0.224667862057686,0.140588313341141,0.235281929373741,0.140017360448837,0.226774469017982,0.113191001117229,0.221477553248405,0.142941802740097,0.24449834227562,0.0929427444934845,0.24201700091362,0.0930275619029999,0.228860810399055,0.104303747415543,0.225012198090553,0.0704232901334763,0.284777104854584,0.0610144436359406,0.27254256606102,0.0696864798665047,0.261725962162018,0.0704296231269836,0.256894916296005,0.0700447559356689,0.253076702356339,0.0802347213029861,0.237570837140083,0.077736921608448,0.238512739539146,0.130966782569885,0.216626286506653,0.142688602209091,0.239545777440071,0.141382098197937,0.217173188924789,0.108837261795998,0.221669986844063,0.141520082950592,0.249055907130241,0.0926123186945915,0.236689701676369,0.0890017077326775,0.233256340026855,0.0940669402480125,0.225062847137451,0.0975104346871376,0.225326165556908,0.0627577155828476,0.2767254114151,0.062966600060463,0.267691284418106,0.0619765967130661,0.259913057088852,0.0700472891330719,0.248346954584122,0.0749137625098228,0.243657723069191,0.0832325890660286,0.237601220607758,0.0874179527163506,0.240345895290375,0.118541084229946,0.220393866300583,0.126214250922203,0.215370416641235,0.137382835149765,0.216535121202469,0.147353768348694,0.225346431136131,0.150085777044296,0.222095355391502,0.109727248549461,0.217618823051453,0.146009296178818,0.240011662244797,0.086969792842865,0.223371475934982,0.0896549597382545,0.22278405725956,0.0996866747736931,0.220363482832909,0.0569088347256184,\r\n0.27239066362381,0.0667506530880928,0.257117748260498,0.0670139789581299,0.252610802650452,0.0771507695317268,0.234735012054443,0.0805119723081589,0.231666252017021,0.117613106966019,0.213972762227058,0.126724451780319,0.209273397922516,0.139291942119598,0.208767011761665,0.149809792637825,0.230390131473541,0.1485995054245,0.213466361165047,0.114035420119762,0.21334482729435,0.146887883543968,0.243272855877876,0.0874496027827263,0.236375734210014,0.0857746973633766,0.231190234422684,0.0939403399825096,0.217902392148972,0.0533767193555832,0.257948219776154,0.0577481873333454,0.276968479156494,0.0602130703628063,0.256510078907013,0.0669886544346809,0.243404522538185,0.0724754631519318,0.239525526762009,0.0833921059966087,0.232040986418724,0.123420208692551,0.212808042764664,0.145172476768494,0.206964239478111,0.15185184776783,0.213010609149933,0.10091595351696,0.217193439602852,0.103536553680897,0.213648661971092,0.150675728917122,0.233317106962204,0.14536489546299,0.246878400444984,0.149221107363701,0.239383742213249,0.0861329734325409,0.217446640133858,0.0826249122619629,0.22250047326088,0.0910298302769661,0.216879472136498,0.0520550236105919,0.27302873134613,0.0433981753885746,0.258130520582199,0.0643300712108612,0.254707306623459,0.0692940279841423,0.237884804606438,0.0640426948666573,0.242665186524391,0.0769418776035309,0.22795943915844,0.122128903865814,0.20652873814106,0.124550744891167,0.206184387207031,0.135452196002007,0.205222234129906,0.155585244297981,0.221902936697006,0.145209193229675,0.202021807432175,0.148233637213707,0.206913590431213,0.156406879425049,0.216666787862778,0.152453184127808,0.208908796310425,0.106276161968708,0.208584696054459,0.156641080975533,0.224991947412491,0.0919071584939957,0.212949842214584,0.0580380968749523,0.252570301294327,0.0487115420401096,0.268552184104919,0.0497306659817696,0.276958346366882,0.0498154871165752,0.253654003143311,0.0668899118900299,0.231180116534233,0.0727767646312714,0.229012742638588,0.0780572146177292,0.222561240196228,0.080671489238739,0.222713157534599,\r\n0.111690804362297,0.205596968531609,0.127766355872154,0.205009549856186,0.141622632741928,0.203642278909683,0.149987041950226,0.201221704483032,0.158640086650848,0.211005285382271,0.0974952429533005,0.210914120078087,0.15067321062088,0.237935438752174,0.0838706493377686,0.214985549449921,0.0888535901904106,0.211390137672424,0.0476164594292641,0.273423701524735,0.0439767353236675,0.264855474233627,0.0380164496600628,0.253947705030441,0.0591433085501194,0.246918916702271,0.0696459710597992,0.229579895734787,0.0613575279712677,0.237732887268066,0.0754454806447029,0.219330430030823,0.0725666135549545,0.221953570842743,0.113745510578156,0.200593769550323,0.123045481741428,0.202690243721008,0.136153548955917,0.197514876723289,0.141178265213966,0.197261676192284,0.163566052913666,0.217942908406258,0.160318791866302,0.222176387906075,0.147162616252899,0.197332575917244,0.162272214889526,0.211653470993042,0.160278275609016,0.204806983470917,0.104261964559555,0.205627351999283,0.09234519302845,0.209232896566391,0.0501079298555851,0.249734476208687,0.0396913550794125,0.258079886436462,0.0441577732563019,0.249916777014732,0.0558200813829899,0.248022854328156,0.0669873878359795,0.223411992192268,0.0617917627096176,0.226956769824028,0.0694611370563507,0.222085237503052,0.0778901055455208,0.217618823051453,0.118680343031883,0.201262205839157,0.128272756934166,0.199621483683586,0.13262777030468,0.196127355098724,0.152754500508308,0.196664124727249,0.0983295366168022,0.20532351732254,0.0861886814236641,0.206873089075089,0.0927591696381569,0.205576702952385,0.0373619310557842,0.258100152015686,0.0379012450575829,0.247870936989784,0.0587065406143665,0.237277120351791,0.0722830295562744,0.2177504748106,0.0787902250885963,0.213901862502098,0.103904955089092,0.20192052423954,0.117292813956738,0.195752620697021,0.122942931950092,0.197261676192284,0.140160411596298,0.192450910806656,0.146556198596954,0.19375741481781,0.166775345802307,0.213162526488304,0.163582518696785,0.221801653504372,0.154334455728531,0.193483963608742,0.1589515209198,\r\n0.197464242577553,0.160375759005547,0.2005735039711,0.16648542881012,0.204584166407585,0.0834642648696899,0.207440242171288,0.0886915400624275,0.204482898116112,0.0550351664423943,0.242239817976952,0.0484899915754795,0.24578458070755,0.0402901694178581,0.269200354814529,0.0343032963573933,0.253745138645172,0.0342032834887505,0.248579889535904,0.0408864505589008,0.244083091616631,0.0693522617220879,0.217396005988121,0.0620221719145775,0.222297921776772,0.058843269944191,0.226349085569382,0.0749631375074387,0.213729694485664,0.110642559826374,0.196451440453529,0.114168345928192,0.196036204695702,0.128690525889397,0.196066588163376,0.130613580346107,0.189807519316673,0.143015220761299,0.192592710256577,0.168055266141891,0.217274472117424,0.166971579194069,0.208544194698334,0.16691081225872,0.221112951636314,0.0973572507500649,0.201626822352409,0.0845947936177254,0.19986455142498,0.0922464430332184,0.201626822352409,0.0349426232278347,0.239566043019295,0.0560403652489185,0.231838434934616,0.0662948936223984,0.217811241745949,0.0719855204224586,0.213506877422333,0.0797207280993462,0.207419991493225,0.106885097920895,0.197545260190964,0.123911418020725,0.193868815898895,0.118418283760548,0.188511148095131,0.137152418494225,0.185462638735771,0.173380017280579,0.213101759552956,0.161004960536957,0.193109229207039,0.164202854037285,0.196502089500427,0.171056926250458,0.200695052742958,0.174467504024506,0.204067647457123,0.10375177115202,0.194790467619896,0.0896207764744759,0.197636410593987,0.0504624061286449,0.231848552823067,0.0437615178525448,0.241176381707191,0.0315586291253567,0.241875201463699,0.0401914231479168,0.223401859402657,0.0522892326116562,0.230896532535553,0.0685584843158722,0.21369931101799,0.0586521029472351,0.221872553229332,0.0617398582398891,0.218044191598892,0.055888444185257,0.225397065281868,0.0746453702449799,0.20951646566391,0.1216199696064,0.190131619572639,0.130207195878029,0.185695588588715,0.140436396002769,0.184551119804382,0.170469507575035,0.220201432704926,0.17307111620903,0.217507407069206,\r\n0.176857694983482,0.213111892342567,0.0956317037343979,0.197504743933678,0.0802790299057961,0.20220410823822,0.0901550278067589,0.193848565220833,0.0482861697673798,0.23137255012989,0.0428373441100121,0.232952505350113,0.029863465577364,0.23059269785881,0.0620664842426777,0.213871479034424,0.0726109221577644,0.207278206944466,0.0691686943173409,0.208128944039345,0.107220590114594,0.188997283577919,0.112851716578007,0.182231828570366,0.125797748565674,0.189726501703262,0.125948399305344,0.185614556074142,0.137317001819611,0.183366164565086,0.14402548968792,0.189989820122719,0.176971644163132,0.217021271586418,0.16728301346302,0.193169996142387,0.171915262937546,0.196623623371124,0.178311049938202,0.201292589306831,0.179297268390656,0.209364548325539,0.100409559905529,0.193737164139748,0.0856227800250053,0.194162532687187,0.0953455939888954,0.19389919936657,0.0504168309271336,0.222865089774132,0.0426145270466805,0.222409322857857,0.0321030020713806,0.22384749352932,0.0621551014482975,0.210498884320259,0.0587356612086296,0.214398130774498,0.0555327013134956,0.221781387925148,0.0783230736851692,0.201576173305511,0.0634135007858276,0.205840036273003,0.104288555681705,0.189736619591713,0.120966717600822,0.183315515518188,0.129559010267258,0.181310191750526,0.14550669491291,0.186141207814217,0.146985366940498,0.191043123602867,0.140808597207069,0.179608702659607,0.180159404873848,0.213101759552956,0.181907743215561,0.204087898135185,0.0842365175485611,0.192886412143707,0.0935516804456711,0.19021263718605,0.0475860759615898,0.222622007131577,0.0410484969615936,0.218216359615326,0.0576557703316212,0.210660934448242,0.067314013838768,0.202011674642563,0.0725957304239273,0.200492486357689,0.109266430139542,0.182596430182457,0.102646559476852,0.187265411019325,0.132510021328926,0.178443983197212,0.184808120131493,0.215633735060692,0.1752600222826,0.192714244127274,0.180335372686386,0.197281926870346,0.184858769178391,0.206569239497185,0.184386551380157,0.212554857134819,0.0512498542666435,0.218104958534241,0.0443502031266689,\r\n0.217760607600212,0.0321409851312637,0.218894928693771,0.0581089928746223,0.206346437335014,0.0539654046297073,0.21476274728775,0.0794320851564407,0.191883742809296,0.0638224110007286,0.202062323689461,0.103474520146847,0.182231828570366,0.110300742089748,0.178838968276978,0.128627240657806,0.177107095718384,0.142893686890602,0.178666800260544,0.17242419719696,0.189209967851639,0.184713169932365,0.196714773774147,0.18780979514122,0.209050580859184,0.188164263963699,0.206022337079048,0.0931149125099182,0.186272874474525,0.097785159945488,0.186120957136154,0.0475430302321911,0.217730224132538,0.0410003885626793,0.214782997965813,0.0534349530935287,0.206751555204391,0.060187753289938,0.202163591980934,0.0508662573993206,0.210549518465996,0.0701764225959778,0.198203578591347,0.0767380520701408,0.191539391875267,0.0655276998877525,0.197788327932358,0.10094253718853,0.177583113312721,0.0968280658125877,0.182231828570366,0.143724173307419,0.174372553825378,0.146589115262032,0.182434394955635,0.17858324944973,0.187508478760719,0.167390614748001,0.188521280884743,0.179704919457436,0.189351767301559,0.188520014286041,0.202994093298912,0.188388347625732,0.212747275829315,0.0817918926477432,0.186364024877548,0.0448325462639332,0.209232896566391,0.0472683124244213,0.209273397922516,0.0335285104811192,0.213891744613647,0.0534159652888775,0.202518075704575,0.102266766130924,0.170615091919899,0.147861436009407,0.177755281329155,0.137008100748062,0.175344839692116,0.14929074048996,0.185077786445618,0.17721851170063,0.18453086912632,0.162224113941193,0.189270734786987,0.184409335255623,0.191559657454491,0.18920111656189,0.193058595061302,0.191510275006294,0.206113487482071,0.190016403794289,0.204553782939911,0.191315323114395,0.212605491280556,0.0871546268463135,0.181887477636337,0.042172696441412,0.209212630987167,0.0350780822336674,0.202426925301552,0.0502623803913593,0.20312574505806,0.0612081401050091,0.197950378060341,0.0739098265767097,0.189746752381325,0.0973787754774094,0.177866697311401,0.0982042029500008,0.165287807583809,\r\n0.108246043324471,0.173997819423676,0.151812598109245,0.181522876024246,0.168274283409119,0.185270205140114,0.183242097496986,0.185493022203445,0.184935986995697,0.188257947564125,0.190879821777344,0.200624153017998,0.194500550627708,0.209243014454842,0.0792282596230507,0.18219131231308,0.0465758144855499,0.203085243701935,0.0541666969656944,0.198426395654678,0.070516973733902,0.187022343277931,0.0665594860911369,0.189250484108925,0.0945644751191139,0.177886947989464,0.101843923330307,0.164619356393814,0.11391768604517,0.175557523965836,0.193009212613106,0.196491956710815,0.0802689045667648,0.178302198648453,0.0425322391092777,0.201930657029152,0.0506168566644192,0.197666794061661,0.0584229603409767,0.190577238798141,0.0636907517910004,0.189696118235588,0.0998423919081688,0.160233974456787,0.105500109493732,0.16508524119854,0.109341122210026,0.171708911657333,0.18755279481411,0.187407210469246,0.192163527011871,0.191427990794182,0.193928331136703,0.200421586632729,0.197642743587494,0.209040462970734,0.087896503508091,0.178768083453178,0.0403078943490982,0.195286735892296,0.0561897531151772,0.189807519316673,0.0672735050320625,0.180094838142395,0.0943809077143669,0.165115624666214,0.0955544784665108,0.160689726471901,0.117371305823326,0.17126327753067,0.195070251822472,0.193119361996651,0.19992658495903,0.196340039372444,0.0909450054168701,0.174402937293053,0.0827907547354698,0.173369899392128,0.0468606613576412,0.191053256392479,0.0365795493125916,0.189574584364891,0.0526956170797348,0.188723832368851,0.0587938949465752,0.187356561422348,0.0630324333906174,0.178808584809303,0.110095657408237,0.163515418767929,0.111449003219604,0.166412010788918,0.117852382361889,0.175679057836533,0.195444986224175,0.184925854206085,0.201615422964096,0.199297398328781,0.203770145773888,0.208108693361282,0.0701359137892723,0.174939721822739,0.0797131359577179,0.174818187952042,0.0544464811682701,0.183801665902138,0.0448452048003674,0.184632152318954,0.0629412829875946,0.175344839692116,0.0868520587682724,0.16643226146698,0.110064007341862,\r\n0.160264357924461,0.120894558727741,0.170523941516876,0.113715127110481,0.163505285978317,0.192404076457024,0.18438908457756,0.198273211717606,0.186738759279251,0.200815320014954,0.189999952912331,0.206112220883369,0.193058595061302,0.0789016336202621,0.171020209789276,0.0411231890320778,0.179406136274338,0.106795214116573,0.156891748309135,0.118760101497173,0.166665211319923,0.123363241553307,0.172691315412521,0.187473028898239,0.181654542684555,0.193297863006592,0.176985561847687,0.204167664051056,0.190567120909691,0.209244281053543,0.193808048963547,0.208087176084518,0.207875743508339,0.0691053941845894,0.172002628445625,0.0525804124772549,0.17551700770855,0.0325714200735092,0.181988760828972,0.100058875977993,0.157134816050529,0.115008965134621,0.159980773925781,0.12216055393219,0.162695050239563,0.188907399773598,0.174868822097778,0.196207106113434,0.178373083472252,0.201876223087311,0.184054851531982,0.205717235803604,0.183376282453537,0.209239214658737,0.187407210469246,0.209021463990211,0.200684919953346,0.0623589269816875,0.172103896737099,0.038797564804554,0.171951979398727,0.0430107824504375,0.176003158092499,0.0592787712812424,0.170959442853928,0.094520166516304,0.158117234706879,0.112826399505138,0.156749963760376,0.124351978302002,0.16607777774334,0.185249954462051,0.175041005015373,0.198797330260277,0.181431725621223,0.210398867726326,0.183872550725937,0.213295459747314,0.185432255268097,0.214217096567154,0.19652234017849,0.212373808026314,0.203946113586426,0.0506966151297092,0.171192392706871,0.119133569300175,0.156861364841461,0.184700518846512,0.180418938398361,0.213495478034019,0.179679587483406,0.211981356143951,0.192157208919525,0.212340906262398,0.208047926425934,0.0421790257096291,0.171891212463379,0.0462352633476257,0.168012216687202,0.125244498252869,0.161023944616318,0.180560722947121,0.176246225833893,0.21447029709816,0.182383745908737,0.218253076076508,0.185189187526703,0.217711240053177,0.205009549856186,0.216873154044151,0.19269397854805,0.215108349919319,0.208139076828957,0.0421410463750362,\r\n0.167688131332397,0.0503535307943821,0.167789399623871,0.123478449881077,0.154197722673416,0.181944444775581,0.171891212463379,0.217285856604576,0.188997283577919,0.219551980495453,0.199803784489632,0.0390444323420525,0.16820465028286,0.0502573177218437,0.163566052913666,0.0554554760456085,0.164467439055443,0.126787751913071,0.151615098118782,0.218491077423096,0.181958377361298,0.223423391580582,0.186434924602509,0.222671389579773,0.204229697585106,0.220802783966064,0.208250477910042,0.221721887588501,0.192592710256577,0.0362693816423416,0.168255284428597,0.0401496440172195,0.163799002766609,0.0457111410796642,0.164244621992111,0.0532450564205647,0.16395092010498,0.0581507720053196,0.164497822523117,0.131185799837112,0.158826187252998,0.224408328533173,0.183153480291367,0.223013207316399,0.201171055436134,0.0357262715697289,0.164295271039009,0.0487913005053997,0.159666806459427,0.0525778792798519,0.160092175006866,0.0552453212440014,0.159980773925781,0.0581925511360168,0.15947437286377,0.228406324982643,0.185371488332748,0.228378474712372,0.190678521990776,0.22670990228653,0.19857831299305,0.22428172826767,0.20702500641346,0.032487865537405,0.167931199073792,0.0334892645478249,0.160426393151283,0.0440590232610703,0.160669475793839,0.0539122335612774,0.160031408071518,0.0620373636484146,0.159930124878883,0.231082633137703,0.180591106414795,0.227598622441292,0.205698236823082,0.0272023528814316,0.164953589439392,0.033812090754509,0.171688660979271,0.031719408929348,0.156172662973404,0.0400648228824139,0.156061261892319,0.053036168217659,0.15543332695961,0.0567759051918983,0.156101778149605,0.0608802475035191,0.15550422668457,0.234419777989388,0.194425851106644,0.225021064281464,0.178909868001938,0.235457897186279,0.182677462697029,0.234265327453613,0.199196115136147,0.0283657982945442,0.169065520167351,0.0263338815420866,0.160132691264153,0.0481000691652298,0.155018091201782,0.0408864505589008,0.152222782373428,0.0657340586185455,0.155615627765656,0.235827565193176,0.188207313418388,0.218650594353676,0.179679587483406,\r\n0.234632477164268,0.178474366664886,0.233044922351837,0.205900803208351,0.0255527663975954,0.167951449751854,0.0308711938560009,0.171911478042603,0.022271316498518,0.160365626215935,0.0241335891187191,0.15642586350441,0.0474075712263584,0.150369361042976,0.0581634305417538,0.153883755207062,0.0657074749469757,0.161013826727867,0.0625437647104263,0.152060732245445,0.23954451084137,0.186384275555611,0.24037754535675,0.198163062334061,0.240228146314621,0.183376282453537,0.229765996336937,0.176043659448624,0.23743537068367,0.204452514648438,0.230274930596352,0.206619888544083,0.0259806700050831,0.171577244997025,0.0219231694936752,0.164477571845055,0.0284493528306484,0.174342170357704,0.0298571363091469,0.152111366391182,0.0259996596723795,0.15216201543808,0.0535577572882175,0.146308064460754,0.0602156035602093,0.153590053319931,0.0595522224903107,0.151675865054131,0.0696029290556908,0.155696660280228,0.0681875497102737,0.151969581842422,0.244421109557152,0.189858168363571,0.241038382053375,0.194405600428581,0.243522256612778,0.203510612249374,0.242096751928329,0.177390679717064,0.232011869549751,0.174514353275299,0.236176982522011,0.207116156816483,0.0220067240297794,0.1690554022789,0.0204179063439369,0.156446129083633,0.0152134159579873,0.159160405397415,0.0367833748459816,0.148039937019348,0.022430831566453,0.152972251176834,0.0427411273121834,0.143148154020309,0.0513435378670692,0.138347506523132,0.0565543584525585,0.148991972208023,0.065918892621994,0.147239834070206,0.247621536254883,0.198314979672432,0.24347922205925,0.173147082328796,0.246699899435043,0.178281933069229,0.23812660574913,0.173987701535225,0.24603146314621,0.207693442702293,0.0226485822349787,0.172012746334076,0.0153222912922502,0.164740890264511,0.0157881751656532,0.153326719999313,0.029517849907279,0.145892813801765,0.022306764498353,0.142256900668144,0.04619475081563,0.141396015882492,0.0577633790671825,0.133384823799133,0.0622829683125019,0.141355514526367,0.0731122568249702,0.150288343429565,0.0705612823367119,0.148222237825394,0.24459582567215,\r\n0.186060190200806,0.248054504394531,0.195570319890976,0.247682303190231,0.204067647457123,0.247819036245346,0.184844836592674,0.239678710699081,0.170139089226723,0.0173402801156044,0.168579384684563,0.0177479293197393,0.151777148246765,0.0118129635229707,0.15883632004261,0.0116800339892507,0.152941852807999,0.0257148128002882,0.144272357225418,0.0386697016656399,0.143907740712166,0.0179188381880522,0.1445052921772,0.0436374507844448,0.135329395532608,0.049138180911541,0.132128968834877,0.0755264982581139,0.152232900261879,0.0652694404125214,0.142398685216904,0.248069703578949,0.188602298498154,0.24933822453022,0.192896544933319,0.251698046922684,0.197099626064301,0.249753475189209,0.176884278655052,0.250604212284088,0.181725427508354,0.235779464244843,0.1685591340065,0.253186851739883,0.208503678441048,0.010392521508038,0.164933323860168,0.0141385896131396,0.145933330059052,0.01138252671808,0.148586854338646,0.0259642135351896,0.136848583817482,0.0286696366965771,0.137162551283836,0.0380253121256828,0.13605859875679,0.0176555123180151,0.137273952364922,0.0622677765786648,0.134043142199516,0.0532830357551575,0.127257436513901,0.0762354582548141,0.146146014332771,0.0699498131871223,0.144444525241852,0.25395655632019,0.200350701808929,0.245785847306252,0.169541537761688,0.251222014427185,0.173278748989105,0.252571552991867,0.185462638735771,0.231842219829559,0.170848041772842,0.252931118011475,0.205495685338974,0.0129814734682441,0.169318720698357,0.00862393155694008,0.159454122185707,0.00670722126960754,0.152638018131256,0.00418916484341025,0.149133756756783,0.0219130404293537,0.136585250496864,0.0413396768271923,0.132078319787979,0.0450616888701916,0.130083128809929,0.0595522224903107,0.128685474395752,0.0787433832883835,0.149022355675697,0.252295583486557,0.18991893529892,0.253890722990036,0.193514347076416,0.255232691764832,0.196654006838799,0.258131802082062,0.178048998117447,0.256807565689087,0.185037270188332,0.228381007909775,0.17126327753067,0.257258266210556,0.208908796310425,0.0170009955763817,0.174544736742973,\r\n0.00741617614403367,0.144150823354721,0.0281037371605635,0.131541550159454,0.0339703410863876,0.132078319787979,0.0101760365068913,0.136494100093842,0.0200089905411005,0.132189735770226,0.025176765397191,0.132199853658676,0.0637996271252632,0.123803809285164,0.0485102497041225,0.11973237991333,0.0587154030799866,0.123834192752838,0.0749757960438728,0.142894953489304,0.0700941309332848,0.132230252027512,0.258235603570938,0.200370952486992,0.25792670249939,0.20454366505146,0.25214871764183,0.169744089245796,0.261593014001846,0.175577774643898,0.256683498620987,0.189159333705902,0.0123763298615813,0.172600165009499,0.00189645471982658,0.151523947715759,0.00379037763923407,0.145386427640915,0.0173086319118738,0.132169470191002,0.0409029088914394,0.128260090947151,0.0444451533257961,0.120238773524761,0.0544224269688129,0.118851251900196,0.0801739543676376,0.142793670296669,0.259000271558762,0.192562311887741,0.260390341281891,0.196745157241821,0.24843430519104,0.166462644934654,0.264821290969849,0.179061785340309,0.264550387859344,0.185452505946159,0.263798385858536,0.192339509725571,0.260205507278442,0.208645477890968,0.0140018621459603,0.177289396524429,0.00646541686728597,0.136980250477791,0.00383848510682583,0.137638553977013,0.0256856940686703,0.123550608754158,0.032744862139225,0.126953586935997,0.0101836333051324,0.132686004042625,0.0200950782746077,0.124279819428921,0.0558643937110901,0.114101253449917,0.0704270899295807,0.128310739994049,0.04703663662076,0.110131099820137,0.0516271181404591,0.109462656080723,0.0786788165569305,0.132088452577591,0.0817032679915428,0.145862430334091,0.0788446664810181,0.139745160937309,0.263433784246445,0.198527663946152,0.261529713869095,0.172397613525391,0.265674561262131,0.175486624240875,0.262185513973236,0.203085243701935,0.0283392127603292,0.124239310622215,0.0317497923970222,0.123621501028538,0.0172162130475044,0.124877370893955,0.0656656920909882,0.116096451878548,0.0719855204224586,0.123540483415127,0.0438463389873505,0.111670546233654,0.0811677575111389,0.136575132608414,\r\n0.0839124247431755,0.142915204167366,0.0818855762481689,0.139613509178162,0.269540905952454,0.188521280884743,0.268738269805908,0.177329912781715,0.263170450925827,0.208280861377716,0.0285518988966942,0.117332063615322,0.0367124788463116,0.119924813508987,0.0118990512564778,0.128614574670792,0.0232853759080172,0.113422676920891,0.0168756619095802,0.119053810834885,0.062927357852459,0.112035155296326,0.0674874559044838,0.12022864818573,0.0808221399784088,0.124603912234306,0.0486735627055168,0.104135371744633,0.052781704813242,0.104104988276958,0.0875597447156906,0.132149219512939,0.266897529363632,0.196167856454849,0.267186164855957,0.200178518891335,0.268545836210251,0.173663601279259,0.272407114505768,0.181705176830292,0.27278944849968,0.191590040922165,0.2638920545578,0.204958900809288,0.262641251087189,0.212311774492264,0.031710546463728,0.116785153746605,0.0132726514711976,0.123580992221832,0.00872647669166327,0.127875238656998,0.0190519001334906,0.112541548907757,0.0575392991304398,0.104054346680641,0.0736135914921761,0.114040486514568,0.0741516351699829,0.118861377239227,0.0437020137906075,0.104084730148315,0.0862266570329666,0.136747300624847,0.0854151546955109,0.139370441436768,0.270991742610931,0.203784063458443,0.277174830436707,0.188673198223114,0.273462951183319,0.178474366664886,0.273105949163437,0.174504220485687,0.268378734588623,0.207268074154854,0.265798628330231,0.211937054991722,0.0301141310483217,0.112025022506714,0.0226599760353565,0.108753703534603,0.0601978786289692,0.100469060242176,0.0738326013088226,0.10915882140398,0.0802739709615707,0.120542615652084,0.0882471799850464,0.123348049819469,0.039763517677784,0.108419485390186,0.0456060655415058,0.100205734372139,0.0505029186606407,0.101147629320621,0.056943017989397,0.100053809583187,0.0900676771998405,0.136585250496864,0.271812111139297,0.19446636736393,0.2731793820858,0.200897604227066,0.281101942062378,0.184713169932365,0.281691908836365,0.177674263715744,0.277273595333099,0.191954642534256,0.0294836685061455,0.10802449285984,0.013451156206429,\r\n0.120026089251041,0.0198937859386206,0.107821933925152,0.0624602064490318,0.10142108052969,0.0773875042796135,0.116258502006531,0.0771279782056808,0.111386969685555,0.0908766463398933,0.129283010959625,0.0342767089605331,0.108530886471272,0.0404851324856281,0.0998411253094673,0.0373619310557842,0.103720121085644,0.0909652635455132,0.133435472846031,0.0881231129169464,0.140676930546761,0.27434915304184,0.197281926870346,0.275372058153152,0.195003151893616,0.276716560125351,0.203297927975655,0.282970547676086,0.18991893529892,0.277987599372864,0.175223305821419,0.273346483707428,0.206609755754471,0.269019335508347,0.211339503526688,0.0236651729792356,0.100458927452564,0.0629830583930016,0.0968331322073936,0.0601282492280006,0.0967318490147591,0.0780255645513535,0.10674837231636,0.0686648264527321,0.104054346680641,0.080736055970192,0.117088988423347,0.089167557656765,0.119509562849998,0.0917071327567101,0.125029280781746,0.0424588099122047,0.0965596809983253,0.0470100492238998,0.0988789722323418,0.0546844899654388,0.0981092527508736,0.0929819867014885,0.135126829147339,0.278585165739059,0.200614020228386,0.287773728370667,0.182414129376411,0.285431623458862,0.186850160360336,0.272933781147003,0.171668395400047,0.282259047031403,0.17353193461895,0.282611012458801,0.193139612674713,0.278144598007202,0.195347502827644,0.27226784825325,0.208868280053139,0.267720431089401,0.215218499302864,0.0302483271807432,0.101522363722324,0.0664392188191414,0.0992840901017189,0.0582621805369854,0.0954962447285652,0.0748656541109085,0.104732915759087,0.081369049847126,0.112642832100391,0.0934643298387527,0.130700930953026,0.0389026440680027,0.0960026383399963,0.0339817330241203,0.10035765171051,0.0484127663075924,0.0975522175431252,0.0516347140073776,0.0980788692831993,0.283603549003601,0.203824579715729,0.289923369884491,0.179335236549377,0.287634462118149,0.190303787589073,0.273040115833282,0.165115624666214,0.278473734855652,0.164285138249397,0.28871813416481,0.193727031350136,0.277303963899612,0.211461037397385,0.271148711442947,0.215390667319298,\r\n0.272207081317902,0.211724355816841,0.0284683424979448,0.097005307674408,0.0615499578416348,0.0935010462999344,0.065673291683197,0.096367247402668,0.0765924677252769,0.10227183252573,0.0699725970625877,0.100904561579227,0.08334019780159,0.114313937723637,0.0938808396458626,0.126356050372124,0.0362301357090473,0.0968736410140991,0.0959292128682137,0.133040472865105,0.282028645277023,0.208392277359962,0.283522516489029,0.200786203145981,0.283687084913254,0.19915559887886,0.292923778295517,0.184834703803062,0.271513313055038,0.167566582560539,0.290531039237976,0.175901874899864,0.287439495325089,0.168052732944489,0.283059179782867,0.195661470293999,0.0253375470638275,0.0959013625979424,0.0324853323400021,0.0952734276652336,0.0702561810612679,0.0977446436882019,0.0898676514625549,0.116288885474205,0.0349881984293461,0.092164158821106,0.285750657320023,0.208149209618568,0.287880063056946,0.202042058110237,0.293475747108459,0.178909868001938,0.294756919145584,0.18814654648304,0.290422171354294,0.191671058535576,0.271095544099808,0.160699859261513,0.267181098461151,0.160335242748261,0.268290102481842,0.170128956437111,0.288001596927643,0.170918941497803,0.286312758922577,0.164528205990791,0.289348602294922,0.196684390306473,0.275108754634857,0.216302186250687,0.281770378351212,0.215309649705887,0.0289532169699669,0.0917286574840546,0.0220915451645851,0.095607653260231,0.0900296941399574,0.112592190504074,0.288118064403534,0.205191850662231,0.284641653299332,0.216413587331772,0.296491324901581,0.181219041347504,0.29614445567131,0.184854969382286,0.296065956354141,0.195428520441055,0.263724952936172,0.16331285238266,0.264446556568146,0.166280344128609,0.293923914432526,0.171486094594002,0.293090879917145,0.198487162590027,0.274536520242691,0.219067111611366,0.0243576690554619,0.0917185246944427,0.0751555636525154,0.0971774831414223,0.0867925584316254,0.110829927027225,0.0924034267663956,0.116136968135834,0.289452433586121,0.208037793636322,0.288437098264694,0.211977556347847,0.293966948986053,0.203095361590385,0.300732403993607,\r\n0.176570326089859,0.297519326210022,0.192157208919525,0.26040044426918,0.159221172332764,0.293437749147415,0.166553795337677,0.278729468584061,0.220191314816475,0.285502523183823,0.221609219908714,0.0793624520301819,0.09979048371315,0.0730717405676842,0.0952936857938766,0.0905841961503029,0.107892833650112,0.295567154884338,0.206873089075089,0.287563562393188,0.218621477484703,0.302317410707474,0.180560722947121,0.299137264490128,0.185462638735771,0.297359794378281,0.199965834617615,0.302651643753052,0.195499420166016,0.260970145463943,0.165804326534271,0.298628330230713,0.171415209770203,0.29946893453598,0.168690785765648,0.0818729177117348,0.0947872921824455,0.0700447559356689,0.0938960313796997,0.0729489400982857,0.0920730084180832,0.292819947004318,0.213243544101715,0.295389920473099,0.210681185126305,0.291728675365448,0.219340562820435,0.299056231975555,0.204330965876579,0.304755717515945,0.177947714924812,0.303089678287506,0.19070890545845,0.300732403993607,0.199469566345215,0.25762540102005,0.161925330758095,0.281995743513107,0.225792050361633,0.291105806827545,0.221892803907394,0.301555305719376,0.20879739522934,0.3037049472332,0.174423202872276,0.310427367687225,0.183761149644852,0.306320488452911,0.187822446227074,0.306601524353027,0.197950378060341,0.28606715798378,0.226987153291702,0.276372194290161,0.22242958843708,0.288951098918915,0.226733952760696,0.0764506757259369,0.0898347347974777,0.299600601196289,0.213152393698692,0.296648323535919,0.222024470567703,0.304107546806335,0.202720627188683,0.308310627937317,0.174716904759407,0.311176836490631,0.179355502128601,0.286819159984589,0.232780322432518,0.294475883245468,0.227007403969765,0.0825742706656456,0.0923262014985085,0.0733451992273331,0.0884370803833008,0.302441477775574,0.212696641683578,0.306568622589111,0.171597510576248,0.314354479312897,0.18126967549324,0.307700425386429,0.19276487827301,0.308424562215805,0.201252087950706,0.281775444746017,0.228992477059364,0.292579412460327,0.230977550148964,0.0778268054127693,0.0879711955785751,0.304710149765015,\r\n0.219097495079041,0.304180949926376,0.225964233279228,0.315729320049286,0.177886947989464,0.313037842512131,0.189463168382645,0.316253453493118,0.19552980363369,0.315035581588745,0.199540466070175,0.306533187627792,0.206548988819122,0.277493864297867,0.225883200764656,0.297329425811768,0.231635868549347,0.0826439037919044,0.0883560553193092,0.0743491277098656,0.0808613896369934,0.305973619222641,0.213901862502098,0.315478652715683,0.174828320741653,0.314354479312897,0.202923193573952,0.285072088241577,0.239869877696037,0.292083144187927,0.237661987543106,0.0816944092512131,0.0842846259474754,0.085370846092701,0.092386968433857,0.0777622386813164,0.079767569899559,0.307330757379532,0.225528731942177,0.306890189647675,0.217912524938583,0.30514058470726,0.232456237077713,0.309799432754517,0.168873086571693,0.316430687904358,0.188136413693428,0.318380326032639,0.19808204472065,0.309520900249481,0.208382144570351,0.283218681812286,0.235646530985832,0.294359415769577,0.240832030773163,0.0836908742785454,0.0860975235700607,0.0856873467564583,0.0879205539822578,0.0846808850765228,0.0962659642100334,0.0758012235164642,0.076688677072525,0.309885531663895,0.216008469462395,0.298451095819473,0.237388536334038,0.312979608774185,0.164082586765289,0.317147254943848,0.181614026427269,0.319203227758408,0.195215836167336,0.287978798151016,0.246898666024208,0.279643535614014,0.238887473940849,0.0821856111288071,0.0770330280065537,0.0826059207320213,0.0838389992713928,0.087956003844738,0.0938048809766769,0.0719209611415863,0.0766988098621368,0.078762374818325,0.0759695991873741,0.312101006507874,0.220920518040657,0.311493337154388,0.226014867424965,0.305310219526291,0.238016471266747,0.318709462881088,0.172944515943527,0.280241072177887,0.243323504924774,0.280041038990021,0.235109746456146,0.297390192747116,0.244873076677322,0.0835187062621117,0.0833933725953102,0.0887497812509537,0.0882446467876434,0.070556215941906,0.0812563747167587,0.0707511827349663,0.0700953975319862,0.0797625035047531,0.0721817538142204,0.309680432081223,0.234694510698318,\r\n0.30120587348938,0.244954094290733,0.286148190498352,0.250575095415115,0.275610059499741,0.241064965724945,0.274675786495209,0.236720085144043,0.294597417116165,0.250605493783951,0.0853417292237282,0.0824919864535332,0.0760442912578583,0.0726172551512718,0.0674849227070808,0.0698118135333061,0.305598884820938,0.246027663350105,0.309601932764053,0.23868490755558,0.282264113426209,0.249136924743652,0.278202831745148,0.246361881494522,0.274103552103043,0.232851222157478,0.300345003604889,0.248914122581482,0.0832325890660286,0.0719791948795319,0.0901803448796272,0.0842238590121269,0.0733629241585732,0.0691535025835037,0.0684660673141479,0.07402503490448,0.0770710110664368,0.0680900663137436,0.298514395952225,0.25529471039772,0.280648708343506,0.254697173833847,0.272146314382553,0.238593757152557,0.275678426027298,0.248154520988464,0.269702970981598,0.234593227505684,0.299663901329041,0.252053767442703,0.0824704617261887,0.0679077655076981,0.0853404626250267,0.0760911330580711,0.0878002867102623,0.080648697912693,0.0915450900793076,0.0881534963846207,0.071005642414093,0.0664088353514671,0.0694535374641418,0.0784509405493736,0.0799182206392288,0.0646060630679131,0.288996666669846,0.254838943481445,0.274030119180679,0.242533519864082,0.269915640354156,0.230967432260513,0.0870951265096664,0.0680698156356812,0.0867026671767235,0.0723235458135605,0.0913096144795418,0.0802435800433159,0.0898993015289307,0.0930250287055969,0.0933402627706528,0.0840314328670502,0.0678887739777565,0.0663278102874756,0.0739414766430855,0.0653757825493813,0.0773052200675011,0.0635021179914474,0.291928708553314,0.263366669416428,0.272769182920456,0.253390669822693,0.283849149942398,0.261270195245743,0.268105268478394,0.2379050552845,0.271852612495422,0.243343755602837,0.263074219226837,0.229509010910988,0.0821552276611328,0.0618613921105862,0.0860671401023865,0.0631780251860619,0.088444672524929,0.0762633085250854,0.0942910239100456,0.0882952883839607,0.0712069422006607,0.0630564913153648,0.0805284306406975,0.0596636310219765,0.298101663589478,0.263265401124954,\r\n0.28502145409584,0.265432775020599,0.27363258600235,0.257755786180496,0.277774930000305,0.258798986673355,0.263403385877609,0.233691841363907,0.0907601714134216,0.0721918791532516,0.0945935919880867,0.076344333589077,0.0976826101541519,0.0778736472129822,0.0929224863648415,0.0925490185618401,0.0757176652550697,0.0614765323698521,0.302233874797821,0.260652393102646,0.297266125679016,0.271357595920563,0.284408718347549,0.272947698831558,0.269176304340363,0.253390669822693,0.275344222784042,0.265635341405869,0.264755457639694,0.242209434509277,0.263251453638077,0.238138005137444,0.258815437555313,0.232051119208336,0.0924008935689926,0.0679685324430466,0.0747023373842239,0.0592787712812424,0.304629117250443,0.264895975589752,0.304353147745132,0.271387994289398,0.290624737739563,0.272947698831558,0.28009420633316,0.273413568735123,0.271087944507599,0.261655062437058,0.268095135688782,0.257137984037399,0.265899926424026,0.248326703906059,0.276172161102295,0.26956495642662,0.259992808103561,0.235616147518158,0.257283598184586,0.227422654628754,0.0900309607386589,0.0640692785382271,0.0953228026628494,0.0721817538142204,0.303897380828857,0.255912512540817,0.298549830913544,0.278882652521133,0.292047709226608,0.277545779943466,0.28137794137001,0.277414113283157,0.26632022857666,0.253694504499435,0.269358605146408,0.268896520137787,0.266978532075882,0.265372008085251,0.263562887907028,0.249693974852562,0.25817483663559,0.241865083575249,0.256187230348587,0.238938108086586,0.253257721662521,0.232962623238564,0.253837555646896,0.229539394378662,0.0951493605971336,0.0639477446675301,0.0973901674151421,0.0680292993783951,0.0997347831726074,0.0719285532832146,0.302907377481461,0.279075086116791,0.287267327308655,0.277566015720367,0.275893658399582,0.276917845010757,0.2756607234478,0.27295783162117,0.264803558588028,0.260733425617218,0.269133269786835,0.273251533508301,0.258463501930237,0.248954623937607,0.092817410826683,0.0600181072950363,0.102414883673191,0.0755948647856712,0.296997725963593,0.283804833889008,0.292318612337112,\r\n0.28141462802887,0.288092732429504,0.285536706447601,0.276301294565201,0.28091835975647,0.25968137383461,0.253684371709824,0.265492260456085,0.270162522792816,0.260739743709564,0.262789368629456,0.25519722700119,0.241865083575249,0.252060115337372,0.236953034996986,0.250426977872849,0.229134276509285,0.0990144312381744,0.0640794113278389,0.101627439260483,0.0645756796002388,0.104149296879768,0.068667359650135,0.296769857406616,0.288463681936264,0.281709611415863,0.284969538450241,0.268930703401566,0.280300557613373,0.266796231269836,0.276583611965179,0.262438714504242,0.268228083848953,0.253483086824417,0.250301629304886,0.252156317234039,0.241399198770523,0.24958635866642,0.233377873897552,0.252011984586716,0.225822433829308,0.0976142510771751,0.0598965734243393,0.107390232384205,0.0740149095654488,0.294098615646362,0.28688371181488,0.281985610723495,0.288544714450836,0.274878323078156,0.284412503242493,0.269454836845398,0.276786178350449,0.255617529153824,0.256449311971664,0.263785719871521,0.276826679706573,0.263342618942261,0.272299498319626,0.258271068334579,0.262718498706818,0.249930709600449,0.248255804181099,0.244962960481644,0.234502077102661,0.246522665023804,0.242411985993385,0.242557570338249,0.22795943915844,0.10516082495451,0.0642515867948532,0.109546214342117,0.0701460391283035,0.289718270301819,0.289253652095795,0.274306088685989,0.288433283567429,0.268487602472305,0.284230202436447,0.265968292951584,0.280634790658951,0.260656177997589,0.273970603942871,0.257987469434738,0.270891726016998,0.251189112663269,0.255811244249344,0.245347827672958,0.237803772091866,0.243104487657547,0.23045089840889,0.24714806675911,0.224931180477142,0.102844059467316,0.0599472150206566,0.282570481300354,0.292129993438721,0.255645394325256,0.265392243862152,0.261638581752777,0.281515926122665,0.244785726070404,0.247070834040642,0.24030664563179,0.237753137946129,0.233115807175636,0.234542593359947,0.237194836139679,0.226987153291702,0.241101682186127,0.224445044994354,0.100342459976673,0.0561897531151772,0.108428344130516,\r\n0.0599370859563351,0.112064272165298,0.0636540353298187,0.2901791036129,0.293335229158401,0.275128990411758,0.292585760354996,0.268991470336914,0.287896513938904,0.263894587755203,0.284361869096756,0.258159637451172,0.277859747409821,0.254837691783905,0.271945029497147,0.252708286046982,0.263862937688828,0.24443630874157,0.252924770116806,0.23191311955452,0.232091620564461,0.105529226362705,0.0557947605848312,0.283256649971008,0.296717941761017,0.272186845541,0.292292028665543,0.277688831090927,0.298773914575577,0.265168190002441,0.288230746984482,0.259402841329575,0.283936500549316,0.255255460739136,0.277890115976334,0.249371141195297,0.265625208616257,0.241261199116707,0.246301114559174,0.245930179953575,0.256611347198486,0.234551444649696,0.238421589136124,0.225517332553864,0.234694510698318,0.231270000338554,0.228648126125336,0.110902093350887,0.0558150187134743,0.114034153521061,0.0598965734243393,0.288702964782715,0.297609210014343,0.273235082626343,0.300313353538513,0.269601672887802,0.291583091020584,0.26656836271286,0.292535096406937,0.26141831278801,0.288109213113785,0.25417685508728,0.283906102180481,0.250887811183929,0.276117742061615,0.246396064758301,0.263609737157822,0.241157382726669,0.253259003162384,0.231763735413551,0.241297915577888,0.22346642613411,0.231261134147644,0.224347561597824,0.228354424238205,0.2317004352808,0.225265398621559,0.10590522736311,0.0519664064049721,0.119361445307732,0.061405636370182,0.291207075119019,0.298095345497131,0.283492147922516,0.304658234119415,0.269730806350708,0.300515919923782,0.275420188903809,0.303929030895233,0.268862336874008,0.295846939086914,0.264879524707794,0.295958340167999,0.259843409061432,0.291086822748184,0.256546765565872,0.287704080343246,0.251725882291794,0.280209422111511,0.251014411449432,0.272066563367844,0.237513870000839,0.247354418039322,0.239230558276176,0.264723807573318,0.240380078554153,0.257543116807938,0.227603688836098,0.241865083575249,0.21719217300415,0.234329894185066,0.224707096815109,0.225204631686211,0.109604448080063,0.0516119264066219,\r\n0.116569936275482,0.055906169116497,0.286791294813156,0.30682560801506,0.277605265378952,0.307534575462341,0.273473083972931,0.308192878961563,0.275539189577103,0.307868808507919,0.260904312133789,0.296049505472183,0.248801440000534,0.283804833889008,0.246441632509232,0.279632121324539,0.243314638733864,0.272066563367844,0.234229892492294,0.252722233533859,0.236161783337593,0.256824016571045,0.231746017932892,0.244680643081665,0.224005743861198,0.240781396627426,0.213591694831848,0.230886399745941,0.106164753437042,0.0474392212927341,0.114051878452301,0.0516929514706135,0.122475780546665,0.0557846352458,0.291186839342117,0.305073499679565,0.267786234617233,0.307524442672729,0.266715228557587,0.299584150314331,0.263628721237183,0.299624651670456,0.253202021121979,0.295684903860092,0.253007054328918,0.291876792907715,0.250505477190018,0.287967413663864,0.243648856878281,0.275854408740997,0.231905519962311,0.248934373259544,0.235217362642288,0.271013259887695,0.235837697982788,0.264977008104324,0.225724950432777,0.248711556196213,0.215452700853348,0.241824567317963,0.212406724691391,0.234410926699638,0.214675381779671,0.227534055709839,0.1112325116992,0.0478848479688168,0.117889098823071,0.0517334640026093,0.125536948442459,0.0579216256737709,0.29387578368187,0.301943957805634,0.287677496671677,0.311565488576889,0.277005195617676,0.315819203853607,0.268862336874008,0.315373599529266,0.266034126281738,0.303645461797714,0.274356752634048,0.310096949338913,0.257184833288193,0.29937145113945,0.242428451776505,0.287612944841385,0.243464022874832,0.283592134714127,0.235533863306046,0.279794186353683,0.234951496124268,0.27566197514534,0.228059440851212,0.252438634634018,0.23338420689106,0.256510078907013,0.232642337679863,0.264885872602463,0.203263744711876,0.23023821413517,0.114987447857857,0.0475405007600784,0.122183337807655,0.0517841018736362,0.293594747781754,0.311676889657974,0.2909235060215,0.312183290719986,0.275240391492844,0.312011122703552,0.261228412389755,0.31143382191658,0.260975211858749,0.307504177093506,0.259134471416473,\r\n0.303544163703918,0.252391785383224,0.299594283103943,0.248692572116852,0.295816570520401,0.249102756381035,0.291674226522446,0.241435915231705,0.291684359312058,0.237946838140488,0.28445303440094,0.233558908104897,0.26039919257164,0.230090096592903,0.276634246110916,0.23051293194294,0.270314425230026,0.215475499629974,0.248559638857841,0.211062252521515,0.241490349173546,0.204924717545509,0.234117209911346,0.112221255898476,0.0431348495185375,0.118652492761612,0.0476822927594185,0.127262488007545,0.0516625680029392,0.283494681119919,0.316011637449265,0.288107931613922,0.316021770238876,0.264514923095703,0.315738201141357,0.250487744808197,0.303098529577255,0.231247216463089,0.284230202436447,0.224208295345306,0.256348013877869,0.221395269036293,0.252580434083939,0.227953106164932,0.271762728691101,0.20082038640976,0.23364120721817,0.116940870881081,0.0413725897669792,0.124831795692444,0.0475405007600784,0.130495831370354,0.0550554245710373,0.292569279670715,0.316173702478409,0.278648465871811,0.319667845964432,0.270705610513687,0.319475412368774,0.253108352422714,0.315687566995621,0.259595274925232,0.315576136112213,0.265591025352478,0.319576680660248,0.25319442152977,0.307311743497849,0.245709896087646,0.299634784460068,0.244676843285561,0.295117735862732,0.232001736760139,0.291309624910355,0.231409251689911,0.287612944841385,0.22311195731163,0.260368794202805,0.227813839912415,0.262799501419067,0.227104887366295,0.276219010353088,0.214201912283897,0.252722233533859,0.210847035050392,0.248792588710785,0.20898349583149,0.24350580573082,0.204448714852333,0.237115085124969,0.197387009859085,0.22995463013649,0.13033252954483,0.0474797338247299,0.1328404545784,0.0512068122625351,0.119534887373447,0.0437729097902775,0.292361676692963,0.319941282272339,0.283426314592361,0.31973871588707,0.274855554103851,0.31965771317482,0.257665902376175,0.31958681344986,0.250004142522812,0.307372540235519,0.245811179280281,0.303270727396011,0.241597950458527,0.295786172151566,0.232984155416489,0.295239269733429,0.228365808725357,0.286205142736435,\r\n0.217392206192017,0.259356021881104,0.224377945065498,0.283328831195831,0.223228424787521,0.268147051334381,0.223170191049576,0.271560162305832,0.199782267212868,0.240234479308128,0.124860912561417,0.0434690713882446,0.285137921571732,0.327344805002213,0.281871676445007,0.327203005552292,0.298914432525635,0.31817901134491,0.273741483688354,0.32753723859787,0.256212562322617,0.326575070619583,0.247634202241898,0.30732187628746,0.241663783788681,0.299472749233246,0.227606222033501,0.294975936412811,0.22351960837841,0.263954102993011,0.21876959502697,0.267569750547409,0.221076235175133,0.280209422111511,0.221701636910439,0.274760603904724,0.210401400923729,0.253147602081299,0.215065315365791,0.263883203268051,0.206428721547127,0.245460495352745,0.203109294176102,0.241895467042923,0.197483226656914,0.233914658427238,0.130528748035431,0.0433779209852219,0.135010361671448,0.0475506260991097,0.121828861534595,0.039823018014431,0.290515840053558,0.327679038047791,0.29486072063446,0.326321870088577,0.296620458364487,0.312507390975952,0.266545563936234,0.326514303684235,0.252832353115082,0.319252580404282,0.249973759055138,0.315434366464615,0.250520646572113,0.323962062597275,0.24253985285759,0.307210475206375,0.241164982318878,0.303220063447952,0.237210035324097,0.2992904484272,0.226107284426689,0.299077749252319,0.224767863750458,0.290550023317337,0.218268275260925,0.28388586640358,0.21990393102169,0.271732330322266,0.207347825169563,0.252225965261459,0.207545325160027,0.262252599000931,0.211973756551743,0.260520726442337,0.205281734466553,0.248914122581482,0.195938721299171,0.240599080920219,0.199888616800308,0.244994610548019,0.127397954463959,0.0393875166773796,0.285816490650177,0.3313048183918,0.282732546329498,0.331284552812576,0.275832891464233,0.331142783164978,0.271103143692017,0.331021249294281,0.249933242797852,0.319201946258545,0.258843272924423,0.327223271131516,0.250067442655563,0.328013241291046,0.244828760623932,0.315383732318878,0.239769861102104,0.310856521129608,0.232470154762268,0.299432218074799,0.222246021032333,\r\n0.299209415912628,0.221177518367767,0.291583091020584,0.215283066034317,0.272147595882416,0.215500816702843,0.290246188640594,0.216954171657562,0.277363479137421,0.20132677257061,0.259447157382965,0.20449934899807,0.262586832046509,0.209345564246178,0.266840547323227,0.189998686313629,0.237348020076752,0.135245829820633,0.0433880500495434,0.131393417716026,0.0393166206777096,0.12255933880806,0.0353363454341888,0.289695501327515,0.331507384777069,0.265302360057831,0.330798417329788,0.258886337280273,0.330909818410873,0.255652993917465,0.331061750650406,0.247345551848412,0.326777637004852,0.241808116436005,0.316437035799026,0.238617807626724,0.306410372257233,0.237592354416847,0.302906095981598,0.219121545553207,0.303321361541748,0.227869540452957,0.302966862916946,0.210639402270317,0.274213671684265,0.213460028171539,0.288676381111145,0.212363690137863,0.282670497894287,0.202212974429131,0.253461569547653,0.206355288624763,0.267478615045547,0.189745485782623,0.244690775871277,0.189274534583092,0.241085231304169,0.189639151096344,0.233600690960884,0.199174597859383,0.248569771647453,0.142958253622055,0.0476417802274227,0.130185663700104,0.0351844280958176,0.293936550617218,0.331628918647766,0.284839153289795,0.335224330425262,0.278169900178909,0.335629433393478,0.270232141017914,0.333624124526978,0.247388601303101,0.322868257761002,0.244666710495949,0.322847992181778,0.247656986117363,0.331173151731491,0.254723757505417,0.335254728794098,0.241982817649841,0.325724333524704,0.234034925699234,0.311514854431152,0.238934308290482,0.321409821510315,0.233607023954391,0.306501537561417,0.218615144491196,0.299118250608444,0.23079651594162,0.305782437324524,0.219192445278168,0.295208871364594,0.211100220680237,0.277971148490906,0.212173789739609,0.298743516206741,0.21480704843998,0.277758449316025,0.199886083602905,0.267529249191284,0.197303459048271,0.260024458169937,0.19346496462822,0.248397588729858,0.186499491333961,0.237803772091866,0.185113221406937,0.23378299176693,0.13509264588356,0.039184957742691,0.14091494679451,0.0433171540498734,\r\n0.289728403091431,0.335447132587433,0.296716690063477,0.327901840209961,0.273204684257507,0.338931143283844,0.259909242391586,0.334971129894257,0.250343412160873,0.332550555467606,0.244628742337227,0.330676883459091,0.244669243693352,0.32676750421524,0.233493074774742,0.314755797386169,0.220529332756996,0.306693941354752,0.206170454621315,0.282174229621887,0.207241490483284,0.29461133480072,0.210322916507721,0.28410866856575,0.192637011408806,0.255750477313995,0.200810253620148,0.271712094545364,0.203699246048927,0.274618804454803,0.18896310031414,0.249845892190933,0.186634942889214,0.242969021201134,0.152500033378601,0.0428715236485004,0.135533213615417,0.0354578793048859,0.293827682733536,0.33556866645813,0.28073987364769,0.340075612068176,0.277417898178101,0.339245110750198,0.26374015212059,0.342101186513901,0.246920183300972,0.334150761365891,0.249915510416031,0.339123576879501,0.239395126700401,0.32647380232811,0.230647131800652,0.310238718986511,0.231801718473434,0.320852786302567,0.212183922529221,0.306390106678009,0.211649671196938,0.302713692188263,0.226666852831841,0.310886919498444,0.201957240700722,0.282285630702972,0.209269598126411,0.28893968462944,0.207588374614716,0.298976480960846,0.193928331136703,0.268126785755157,0.191636875271797,0.259609222412109,0.180550590157509,0.241834700107574,0.174425736069679,0.238796323537827,0.140644028782845,0.0391748286783695,0.134279876947403,0.0315485000610352,0.272032380104065,0.347013235092163,0.267983734607697,0.343387454748154,0.260967612266541,0.341068148612976,0.256711363792419,0.338404506444931,0.24207903444767,0.334677428007126,0.252650052309036,0.342354387044907,0.236769467592239,0.327132105827332,0.227239087224007,0.314158231019974,0.227244153618813,0.318482875823975,0.233726024627686,0.32604843378067,0.216736420989037,0.31044128537178,0.205894470214844,0.288099080324173,0.201876223087311,0.288838416337967,0.203501746058464,0.298834681510925,0.19506011903286,0.263538837432861,0.189768269658089,0.256256878376007,0.189715102314949,0.271144926548004,0.196878090500832,\r\n0.279439687728882,0.183339580893517,0.251709431409836,0.181245625019073,0.246453031897545,0.174956187605858,0.23534269630909,0.14737656712532,0.038992527872324,0.13848677277565,0.029553297907114,0.139522358775139,0.0349312275648117,0.277438163757324,0.343245655298233,0.262626081705093,0.346922099590302,0.24740631878376,0.340794682502747,0.243562772870064,0.338141173124313,0.250097811222076,0.346233397722244,0.236564368009567,0.334555894136429,0.238944441080093,0.334211528301239,0.223281592130661,0.323759526014328,0.229831829667091,0.326159834861755,0.211996555328369,0.310927420854568,0.207669392228127,0.306795239448547,0.220977485179901,0.315039366483688,0.197718694806099,0.288007915019989,0.200519070029259,0.295340538024902,0.197946578264236,0.306309103965759,0.189864486455917,0.264906108379364,0.186934992671013,0.259771257638931,0.189288467168808,0.267488747835159,0.190692454576492,0.278264850378037,0.196136206388474,0.28296422958374,0.173985168337822,0.248671054840088,0.173280000686646,0.243819773197174,0.168688252568245,0.237743005156517,0.152549400925636,0.0393571332097054,0.143349438905716,0.0348299480974674,0.274789720773697,0.347215801477432,0.267376065254211,0.34691196680069,0.256759464740753,0.342253118753433,0.255711227655411,0.34705376625061,0.237232819199562,0.338708341121674,0.252928584814072,0.346861332654953,0.233037322759628,0.329309612512589,0.220564782619476,0.318189144134521,0.208061844110489,0.310319751501083,0.216298386454582,0.314269632101059,0.202397808432579,0.306774973869324,0.196819841861725,0.296110272407532,0.198169395327568,0.299482882022858,0.184359967708588,0.256398648023605,0.181990027427673,0.268714219331741,0.185646206140518,0.274882137775421,0.192976295948029,0.284189701080322,0.176257625222206,0.252550035715103,0.168902203440666,0.240933313965797,0.156414479017258,0.0434893295168877,0.149424940347672,0.0353869833052158,0.140745297074318,0.0313560701906681,0.272133648395538,0.351277112960815,0.275541722774506,0.350568145513535,0.269366204738617,0.355156093835831,0.262517184019089,\r\n0.350953012704849,0.255926430225372,0.351155549287796,0.242572769522667,0.346476465463638,0.239663526415825,0.346425831317902,0.252589285373688,0.350507378578186,0.233589291572571,0.334414094686508,0.220516666769981,0.326332002878189,0.228198707103729,0.338080406188965,0.208087176084518,0.314330399036407,0.212459906935692,0.316011637449265,0.200455769896507,0.310856521129608,0.217566907405853,0.318077743053436,0.191297590732574,0.297599077224731,0.194452449679375,0.303949296474457,0.184056118130684,0.260996729135513,0.185201853513718,0.279581487178802,0.177374228835106,0.257370948791504,0.172953382134438,0.254849076271057,0.169697254896164,0.248822972178459,0.169483304023743,0.245004743337631,0.165097907185555,0.243282988667488,0.160040274262428,0.0389418862760067,0.154544606804848,0.0349008440971375,0.145031943917274,0.0309408232569695,0.142267018556595,0.0269402917474508,0.280165106058121,0.343417823314667,0.267054498195648,0.355034559965134,0.245661780238152,0.350628912448883,0.235921248793602,0.342759519815445,0.232606887817383,0.338647574186325,0.218139141798019,0.330393314361572,0.217199772596359,0.322868257761002,0.224671646952629,0.333948224782944,0.201286271214485,0.315555900335312,0.191424190998077,0.291198223829269,0.195508286356926,0.310228615999222,0.178799733519554,0.260733425617218,0.17883138358593,0.273990869522095,0.182153344154358,0.277474880218506,0.184979036450386,0.283480733633041,0.169084519147873,0.25251966714859,0.163592636585236,0.23918117582798,0.148995772004128,0.0309914629906416,0.138951390981674,0.024691890925169,0.271923512220383,0.355753630399704,0.28143110871315,0.347580403089523,0.268130600452423,0.359227538108826,0.261696845293045,0.355470061302185,0.256025195121765,0.355115592479706,0.251186579465866,0.358457803726196,0.241937234997749,0.35052764415741,0.238025322556496,0.350456744432449,0.236019998788834,0.346294164657593,0.246239081025124,0.35508519411087,0.217123806476593,0.327000439167023,0.225147664546967,0.338546305894852,0.205702036619186,0.319921016693115,0.210462167859077,\r\n0.318786710500717,0.198559314012527,0.315221667289734,0.181992560625076,0.291714757680893,0.191067188978195,0.303807497024536,0.179940387606621,0.280351221561432,0.175333440303802,0.260966360569,0.166158810257912,0.256175845861435,0.163538202643394,0.24883309006691,0.162944450974464,0.254119873046875,0.16179746389389,0.0317915715277195,0.155889093875885,0.0311940219253302,0.146511897444725,0.0268896520137787,0.144031807780266,0.0230511669069529,0.274817556142807,0.355490326881409,0.277549564838409,0.351570814847946,0.261651247739792,0.359804809093475,0.250150978565216,0.355145961046219,0.241375133395195,0.354973793029785,0.229269728064537,0.345889031887054,0.229748278856277,0.342324018478394,0.21363727748394,0.326038300991058,0.218799993395805,0.334252059459686,0.225884467363358,0.342779755592346,0.218924060463905,0.338323473930359,0.200967237353325,0.325400233268738,0.213163793087006,0.322554290294647,0.198539063334465,0.324215263128281,0.186322242021561,0.298935949802399,0.184181451797485,0.290529787540436,0.192097693681717,0.310026049613953,0.195034801959991,0.317004173994064,0.166224643588066,0.0334829352796078,0.15042632818222,0.0268592685461044,0.141820132732391,0.0181796327233315,0.274708688259125,0.359460473060608,0.27011314034462,0.363683819770813,0.280970275402069,0.351763248443604,0.265254259109497,0.36323818564415,0.258154600858688,0.359004706144333,0.2528475522995,0.359450340270996,0.246580898761749,0.359075605869293,0.232482820749283,0.350446611642838,0.241537183523178,0.359419941902161,0.21225480735302,0.334171026945114,0.222061172127724,0.344653427600861,0.219369679689407,0.342475920915604,0.203587830066681,0.327354937791824,0.208317577838898,0.322017520666122,0.195346236228943,0.322483390569687,0.179488435387611,0.292271792888641,0.186310857534409,0.302197158336639,0.175920858979225,0.277930647134781,0.178784534335136,0.283440232276917,0.163083717226982,0.261401861906052,0.163103967905045,0.0268795248121023,0.158754020929337,0.0269504189491272,0.154764890670776,0.0269301645457745,0.14830707013607,\r\n0.022909376770258,0.14844885468483,0.0173086319118738,0.278744667768478,0.355024427175522,0.272933781147003,0.363592654466629,0.286986261606216,0.347985535860062,0.248763471841812,0.363582521677017,0.235045179724693,0.354619324207306,0.227515071630478,0.35011237859726,0.234240010380745,0.359257906675339,0.208104893565178,0.33407986164093,0.212667524814606,0.338131040334702,0.214060112833977,0.344866126775742,0.198323845863342,0.331973254680634,0.202542126178741,0.332925289869308,0.195477902889252,0.332783490419388,0.181708976626396,0.299006849527359,0.189131483435631,0.310846418142319,0.185886740684509,0.30653190612793,0.192426860332489,0.323556959629059,0.17292046546936,0.26706337928772,0.169298470020294,0.0269200354814529,0.153893887996674,0.0229498874396086,0.149870559573174,0.00844669342041016,0.279243469238281,0.359612375497818,0.27062714099884,0.371776014566422,0.264816224575043,0.367188066244125,0.287702828645706,0.352087318897247,0.283854216337204,0.355986595153809,0.259066104888916,0.367319732904434,0.254045188426971,0.363521754741669,0.244628742337227,0.363683819770813,0.229416593909264,0.354639559984207,0.221962437033653,0.350355446338654,0.241572633385658,0.363106518983841,0.238529190421104,0.363866120576859,0.206365421414375,0.330433815717697,0.208791062235832,0.338424742221832,0.215612217783928,0.346820801496506,0.177359029650688,0.29290983080864,0.175824657082558,0.284908771514893,0.188066780567169,0.318604409694672,0.173364832997322,0.277819216251373,0.169630154967308,0.269463688135147,0.165781542658806,0.0228587370365858,0.173176199197769,0.0305762179195881,0.160663142800331,0.0226865615695715,0.151801198720932,0.0192531943321228,0.143070921301842,0.0133587382733822,0.282023578882217,0.364088922739029,0.265960693359375,0.371745645999908,0.278602868318558,0.368768036365509,0.254485756158829,0.367947667837143,0.245750412344933,0.367745101451874,0.229798913002014,0.358690738677979,0.223385408520699,0.354426890611649,0.232297986745834,0.363400220870972,0.206398338079453,0.337958872318268,0.213996812701225,\r\n0.35082134604454,0.203729629516602,0.338303208351135,0.199169531464577,0.335862398147583,0.192963644862175,0.344734460115433,0.177593246102333,0.296950876712799,0.181231692433357,0.308132112026215,0.184589102864265,0.310755252838135,0.190021470189095,0.323111325502396,0.166951313614845,0.270800560712814,0.173154681921005,0.0228486079722643,0.157869100570679,0.0188379492610693,0.154649674892426,0.0125890159979463,0.282874315977097,0.359774440526962,0.266737997531891,0.375725924968719,0.276774793863297,0.371796280145645,0.260370075702667,0.37168487906456,0.240334495902061,0.367309600114822,0.225403398275375,0.363228052854538,0.218027725815773,0.354852259159088,0.236245349049568,0.36742103099823,0.208669528365135,0.346780300140381,0.201331838965416,0.345099061727524,0.189687252044678,0.332216322422028,0.197230026125908,0.349373042583466,0.178516149520874,0.305944502353668,0.172950848937035,0.292970597743988,0.173243299126625,0.284837871789932,0.186201974749565,0.322453022003174,0.16979093849659,0.276219010353088,0.160908743739128,0.264531373977661,0.163285002112389,0.0186455175280571,0.184052333235741,0.0270213149487972,0.166856363415718,0.0207926388829947,0.156127095222473,0.0151513824239373,0.285778522491455,0.359936475753784,0.283552914857864,0.367967933416367,0.271386712789536,0.375908225774765,0.263142585754395,0.375989258289337,0.278845936059952,0.373609185218811,0.255052894353867,0.371158212423325,0.249687641859055,0.371634244918823,0.244026124477386,0.371391177177429,0.228310108184814,0.363298952579498,0.22089646756649,0.358913570642471,0.229330494999886,0.367603331804276,0.203585296869278,0.342739254236221,0.214619681239128,0.353616654872894,0.206408470869064,0.34953510761261,0.190082237124443,0.341371983289719,0.194953769445419,0.350021243095398,0.176134824752808,0.30432403087616,0.183561116456985,0.318087875843048,0.169851705431938,0.2797030210495,0.170542940497398,0.0207926388829947,0.160318791866302,0.0167819783091545,0.160479575395584,0.0107153495773673,0.285781055688858,0.363582521677017,0.267226666212082,\r\n0.38028347492218,0.264160454273224,0.379594802856445,0.275361925363541,0.375928491353989,0.256326496601105,0.374166220426559,0.236703634262085,0.371310144662857,0.225661665201187,0.367400765419006,0.215113416314125,0.358093202114105,0.220785066485405,0.363207787275314,0.228441774845123,0.3716139793396,0.211424320936203,0.354801625013351,0.20210662484169,0.350558012723923,0.188475698232651,0.346820801496506,0.186055123806,0.34287092089653,0.198295995593071,0.353717923164368,0.175803124904633,0.318330943584442,0.169951722025871,0.28467583656311,0.173772484064102,0.307129442691803,0.181073442101479,0.320569217205048,0.183347165584564,0.3332898914814,0.167931199073792,0.018736669793725,0.173107832670212,0.0187873095273972,0.162768483161926,0.0147260092198849,0.162845715880394,0.00434488151222467,0.281917244195938,0.37324458360672,0.269437104463577,0.381954610347748,0.260676443576813,0.379706203937531,0.277990132570267,0.377923667430878,0.248563438653946,0.375573992729187,0.240055978298187,0.37530055642128,0.222914457321167,0.366995632648468,0.217387139797211,0.363298952579498,0.206947773694992,0.354720592498779,0.188617497682571,0.351631581783295,0.194151133298874,0.35607773065567,0.183034464716911,0.0229802709072828,0.166065126657486,0.0107254767790437,0.264927625656128,0.382440745830536,0.261952549219131,0.383848518133163,0.276116460561752,0.380718976259232,0.253050118684769,0.379574537277222,0.234840095043182,0.375361323356628,0.214657664299011,0.362286150455475,0.217728957533836,0.367664098739624,0.211930721998215,0.358852803707123,0.204266414046288,0.354214191436768,0.201331838965416,0.355125725269318,0.182524278759956,0.346901834011078,0.182362228631973,0.340632647275925,0.198037728667259,0.358589470386505,0.172074779868126,0.31561666727066,0.177748963236809,0.324073493480682,0.168592035770416,0.014493066817522,0.180011287331581,0.0184632148593664,0.165170073509216,0.00550959352403879,0.266793698072433,0.384972721338272,0.258491337299347,0.38310918211937,0.253880590200424,0.382987648248672,0.249616742134094,0.379513770341873,\r\n0.240281328558922,0.379260569810867,0.228560775518417,0.374996721744537,0.214703232049942,0.366327196359634,0.217490956187248,0.371532946825027,0.206481888890266,0.359744042158127,0.211674988269806,0.363572418689728,0.177524879574776,0.335599064826965,0.192983895540237,0.358954071998596,0.181573510169983,0.354599058628082,0.170415073633194,0.321602255105972,0.178145214915276,0.330990850925446,0.17236216366291,0.0146956257522106,0.176969110965729,0.0143208922818303,0.181291192770004,0.0157590582966805,0.171178460121155,0.0106545817106962,0.251725882291794,0.381853312253952,0.228859558701515,0.379118770360947,0.219633013010025,0.375138491392136,0.21397402882576,0.371006309986115,0.208598628640175,0.363005250692368,0.203511878848076,0.362610250711441,0.201015338301659,0.359956741333008,0.178685784339905,0.341179549694061,0.189517617225647,0.359035104513168,0.186804592609406,0.355145961046219,0.179216235876083,0.346932202577591,0.195037335157394,0.362995117902756,0.187838912010193,0.0157084185630083,0.168898418545723,0.00680596847087145,0.250401645898819,0.384121984243393,0.242825970053673,0.383483916521072,0.236693501472473,0.383554816246033,0.221435785293579,0.379189670085907,0.212029471993446,0.367593199014664,0.214313313364983,0.375239789485931,0.206119820475578,0.363724321126938,0.200443118810654,0.363481253385544,0.190953239798546,0.363076150417328,0.186191856861115,0.35897433757782,0.179249152541161,0.351064413785934,0.176547527313232,0.0105836857110262,0.191396340727806,0.0210154540836811,0.184216901659966,0.0102089531719685,0.17357625067234,0.006380595266819,0.247669652104378,0.382774949073792,0.239992678165436,0.38268381357193,0.227213770151138,0.383291482925415,0.213308110833168,0.379392236471176,0.204489216208458,0.37488529086113,0.206930056214333,0.367461532354355,0.219367146492004,0.383453518152237,0.204319581389427,0.366499364376068,0.174987822771072,0.347793102264404,0.188213646411896,0.363025486469269,0.182016611099243,0.359217405319214,0.178933918476105,0.35551056265831,0.194118216633797,0.36642849445343,\r\n0.192117959260941,0.0148678002879024,0.190099969506264,0.0105533022433519,0.171553194522858,0.00199520215392113,0.206170454621315,0.379280835390091,0.203749880194664,0.371583610773087,0.201820507645607,0.367056399583817,0.17063282430172,0.346760034561157,0.189978435635567,0.370894908905029,0.185099303722382,0.36246845126152,0.176538676023483,0.351155549287796,0.198658064007759,0.367512166500092,0.179331451654434,0.00666417740285397,0.196115955710411,0.0202254746109247,0.184420734643936,0.00664392160251737,0.211079970002174,0.383048415184021,0.207092106342316,0.383878916501999,0.200270935893059,0.375776559114456,0.173859834671021,0.351165682077408,0.186361491680145,0.366408228874207,0.177610963582993,0.358923673629761,0.176103174686432,0.354426890611649,0.198660597205162,0.371077209711075,0.200306385755539,0.0159514881670475,0.177866697311401,0.00270415702834725,0.215847700834274,0.387312263250351,0.201977491378784,0.382967382669449,0.170836642384529,0.351591050624847,0.180972173810005,0.370358109474182,0.180034071207047,0.366590529680252,0.178159132599831,0.36267101764679,0.191234290599823,0.375249922275543,0.210963502526283,0.386978060007095,0.202610492706299,0.386866629123688,0.192583844065666,0.380800008773804,0.173569917678833,0.355784028768539,0.17952387034893,0.382633179426193,0.172412797808647,0.363288819789886,0.198116227984428,0.386967927217484,0.169059187173843,0.35543966293335,0.175749957561493,0.370236575603485,0.176566526293755,0.37636399269104,0.169745355844498,0.366398096084595,0.184578984975815,0.382379978895187,0.188023746013641,0.378116101026535,0.192482560873032,0.387069195508957,0.166496828198433,0.362589985132217,0.167771682143211,0.351266980171204,0.17578287422657,0.382106512784958,0.181481093168259,0.386815994977951,0.187417328357697,0.384446054697037,0.164821922779083,0.358731240034103,0.165594175457954,0.355226993560791,0.168159067630768,0.347225934267044,0.171563327312469,0.38176217675209,0.168305933475494,0.370388507843018,0.175171405076981,0.387251496315002,0.160031408071518,0.366641163825989,\r\n0.15916420519352,0.363096386194229,0.165354907512665,0.352006316184998,0.168540135025978,0.38268381357193,0.165075123310089,0.375898092985153,0.170401141047478,0.386279225349426,0.165505558252335,0.347995638847351,0.168332517147064,0.379382103681564,0.160721376538277,0.370175808668137,0.154393956065178,0.366823464632034,0.163062199950218,0.35167208313942,0.166137292981148,0.387332528829575,0.165857508778572,0.384344786405563,0.157157614827156,0.377245098352432,0.162054464221001,0.37949350476265,0.15493705868721,0.370115041732788,0.151815131306648,0.363035619258881,0.162876099348068,0.383980184793472,0.150068059563637,0.370682209730148,0.150223776698112,0.366651296615601,0.1582071185112,0.383240848779678,0.148795738816261,0.377093195915222,0.146625831723213,0.363228052854538,0.155861228704453,0.381519109010696,0.148095652461052,0.381174743175507,0.157215848565102,0.387119829654694,0.146152347326279,0.36692476272583,0.145611777901649,0.377062797546387,0.152670934796333,0.383534550666809,0.154705390334129,0.386289358139038,0.145359843969345,0.370499908924103,0.139694526791573,0.364311754703522,0.149507224559784,0.385256290435791,0.144855976104736,0.381326675415039,0.141341581940651,0.369912475347519,0.142688602209091,0.376900762319565,0.13972744345665,0.367734998464584,0.151223912835121,0.38801109790802,0.144647091627121,0.385975390672684,0.13979834318161,0.376809597015381,0.134997695684433,0.366499364376068,0.147700652480125,0.389287203550339,0.141968250274658,0.381407678127289,0.1378044039011,0.3711177110672,0.135391429066658,0.37069234251976,0.140983313322067,0.385965257883072,0.133762091398239,0.378490835428238,0.138899490237236,0.381954610347748,0.132591053843498,0.370540410280228,0.129402026534081,0.375887960195541,0.137944921851158,0.386289358139038,0.134530544281006,0.383413016796112,0.134406477212906,0.387271761894226,0.127554938197136,0.385276556015015,0.136020615696907,0.389317601919174,0.130493298172951,0.388395965099335,0.123025223612785,0.383413016796112,0.122268162667751,0.388092130422592,0.120262831449509,\r\n0.381397575139999,0.126639634370804,0.389155566692352,0.119358912110329,0.385286688804626,0.661939918994904,0.909001886844635,0.659177541732788,0.909204483032227,0.661544919013977,0.905831873416901,0.888218104839325,0.905447006225586,0.888148486614227,0.910399556159973,0.885306358337402,0.908779084682465,0.847959637641907,0.905902743339539,0.851466417312622,0.905659675598145,0.848159611225128,0.910126090049744,0.934801518917084,0.911412358283997,0.939136266708374,0.913316428661346,0.934436917304993,0.914076030254364,0.935156047344208,0.916911840438843,0.745587766170502,0.905102670192719,0.748362839221954,0.904960870742798,0.748429894447327,0.908971548080444,0.77458655834198,0.90477854013443,0.774668872356415,0.908870220184326,0.771836817264557,0.904950737953186,0.819401383399963,0.902318716049194,0.816190838813782,0.89945125579834,0.812746047973633,0.895184874534607,0.68761932849884,0.908404350280762,0.684502422809601,0.907705545425415,0.683922588825226,0.904687404632568,0.553381204605103,0.89511650800705,0.553209006786346,0.897891581058502,0.549704730510712,0.894670903682709,0.545714378356934,0.895582377910614,0.553036868572235,0.892037630081177,0.546058714389801,0.905983805656433,0.549866795539856,0.890883028507233,0.541906237602234,0.898468852043152,0.542959570884705,0.896352112293243,0.54500538110733,0.891713559627533,0.727413177490234,0.893133997917175,0.731183350086212,0.897085130214691,0.734563529491425,0.901222407817841,0.594060003757477,0.907837212085724,0.596916079521179,0.900524854660034,0.600693821907043,0.902813732624054,0.593847334384918,0.901537597179413,0.59725034236908,0.894873440265656,0.684746742248535,0.894984841346741,0.685720324516296,0.891743898391724,0.689392924308777,0.900879323482513,0.728343725204468,0.908971548080444,0.728596925735474,0.905021607875824,0.73083770275116,0.908667683601379,0.867076098918915,0.905528008937836,0.869708061218262,0.910278022289276,0.866860866546631,0.909964084625244,0.00932908896356821,0.997438967227936,0.00933541916310787,0.993499219417572,0.0125763565301895,\r\n0.996800899505615,0.0114508904516697,0.992871284484863,0.00981522910296917,0.989974677562714,0.0142537942156196,0.993468821048737,0.0122763160616159,0.98915433883667,0.0143816592171788,0.986055195331573,0.0171187333762646,0.988313734531403,0.0116357244551182,0.983766257762909,0.0161059387028217,0.984313189983368,0.0150918802246451,0.980312645435333,0.0180720239877701,0.981315314769745,0.0204546190798283,0.984414458274841,0.019620331004262,0.977416098117828,0.020388787612319,0.98112291097641,0.0192164797335863,0.988759338855743,0.0188151597976685,0.97397255897522,0.0144588854163885,0.972959756851196,0.0218851882964373,0.973557353019714,0.0225232485681772,0.977497100830078,0.0172035545110703,0.967298269271851,0.0207204781472683,0.970660746097565,0.0226776991039515,0.969435274600983,0.0198494754731655,0.966467797756195,0.0172516610473394,0.963166058063507,0.022182697430253,0.965576529502869,0.0206951573491097,0.961960852146149,0.0147133488208056,0.962933123111725,0.0176187995821238,0.959266841411591,0.0205369088798761,0.957626104354858,0.0146462516859174,0.95779824256897,0.0172959715127945,0.955418229103088,0.00987852923572063,0.955185294151306,0.0197317376732826,0.953645825386047,0.0132169481366873,0.954547226428986,0.0167110841721296,0.950637817382813,0.0121028758585453,0.950354218482971,0.00925819296389818,0.949483215808868,0.0140081923455,0.947326004505157,0.0113622704520822,0.94706267118454,0.00794282834976912,0.946009337902069,0.00634641386568546,0.94941234588623,0.00189645471982658,0.94443953037262,0.00417650490999222,0.943406462669373,0.231076300144196,0.989245474338531,0.225756600499153,0.989363253116608,0.228531658649445,0.985723495483398,0.22285495698452,0.985451340675354,0.234405860304832,0.985988080501556,0.218307510018349,0.988494753837585,0.22188013792038,0.980055689811707,0.231263667345047,0.982448399066925,0.220077365636826,0.984300553798676,0.219472229480743,0.992266118526459,0.227470755577087,0.982045829296112,0.217188373208046,0.982749700546265,0.211704105138779,0.989399969577789,0.228686109185219,\r\n0.977900922298431,0.221573770046234,0.977985739707947,0.22678205370903,0.973957359790802,0.232357487082481,0.97502589225769,0.223330974578857,0.974565029144287,0.231866285204887,0.978861808776855,0.233484223484993,0.971731781959534,0.226660519838333,0.971869766712189,0.230997815728188,0.969175755977631,0.236294716596603,0.967832505702972,0.229491278529167,0.967247605323792,0.234532460570335,0.963187575340271,0.237178385257721,0.963712990283966,0.234727427363396,0.955339729785919,0.229040592908859,0.960254311561584,0.230390131473541,0.955599248409271,0.231742218136787,0.950942933559418,0.857821702957153,0.90560907125473,0.861022114753723,0.908738553524017,0.85730516910553,0.907847344875336,0.857517838478088,0.910156488418579,0.308638513088226,0.91805624961853,0.315700203180313,0.92117565870285,0.308167576789856,0.92216819524765,0.315621733665466,0.924801468849182,0.310626119375229,0.928923547267914,0.315745800733566,0.928832411766052,0.315925568342209,0.932053089141846,0.310066550970078,0.935607969760895,0.315209001302719,0.936144769191742,0.310236185789108,0.939355313777924,0.311423689126968,0.946384072303772,0.318655043840408,0.9398313164711,0.313963264226913,0.947336137294769,0.31520140171051,0.954405426979065,0.318543642759323,0.947457671165466,0.315801501274109,0.950242817401886,0.309299349784851,0.951913952827454,0.321280717849731,0.941968321800232,0.318938612937927,0.951883554458618,0.313259392976761,0.956957638263702,0.321574419736862,0.936286568641663,0.321576952934265,0.947569072246552,0.360966980457306,0.951879739761353,0.35785773396492,0.956622183322906,0.356581598520279,0.952679872512817,0.35969340801239,0.949208498001099,0.354872524738312,0.949002146720886,0.350834012031555,0.952593803405762,0.360144108533859,0.943139374256134,0.352970987558365,0.956284165382385,0.352067083120346,0.945318102836609,0.354743391275406,0.941263139247894,0.360820144414902,0.945362448692322,0.359802275896072,0.934479951858521,0.363233119249344,0.946396768093109,0.362506449222565,0.941235303878784,0.354502856731415,0.935382604598999,\r\n0.362048149108887,0.931716322898865,0.358997106552124,0.929917335510254,0.35468515753746,0.931003570556641,0.360194742679596,0.925552189350128,0.355865061283112,0.923058211803436,0.745962500572205,0.901160359382629,0.742253124713898,0.895562171936035,0.747788071632385,0.893133997917175,0.656920254230499,0.902023792266846,0.659553527832031,0.891743898391724,0.662870466709137,0.893982172012329,0.233477890491486,0.945004165172577,0.230442047119141,0.94057697057724,0.233034789562225,0.939559161663055,0.230545848608017,0.937461376190186,0.235814914107323,0.943086206912994,0.233133539557457,0.935310482978821,0.235954165458679,0.947144985198975,0.230325564742088,0.935064852237701,0.236212432384491,0.938952744007111,0.228441774845123,0.935929536819458,0.230758532881737,0.932450592517853,0.228069573640823,0.931003570556641,0.230442047119141,0.928361415863037,0.227446705102921,0.924760937690735,0.225264132022858,0.927796840667725,0.225545182824135,0.931313753128052,0.225112214684486,0.924420416355133,0.226066768169403,0.935419321060181,0.222911924123764,0.925457239151001,0.225329965353012,0.9206503033638,0.222592890262604,0.920868039131165,0.230596497654915,0.92429381608963,0.22254478931427,0.916676342487335,0.231069967150688,0.920498371124268,0.220043182373047,0.917299211025238,0.227727755904198,0.9168940782547,0.235065445303917,0.9248166680336,0.220263466238976,0.921841561794281,0.219929248094559,0.913091063499451,0.229596361517906,0.915098905563354,0.235880732536316,0.920875668525696,0.217594757676125,0.91391521692276,0.224215894937515,0.911926329135895,0.239007741212845,0.924333035945892,0.21533876657486,0.906516790390015,0.218587294220924,0.907499194145203,0.229553312063217,0.906183838844299,0.238420322537422,0.918789267539978,0.23865832388401,0.929084300994873,0.213216960430145,0.908097982406616,0.225261598825455,0.902156710624695,0.241716951131821,0.928060114383698,0.242653787136078,0.920540153980255,0.216969355940819,0.901332557201386,0.211826905608177,0.901494562625885,0.228829175233841,0.901379346847534,0.2335614413023,\r\n0.908967733383179,0.241957500576973,0.924069762229919,0.241408050060272,0.916378855705261,0.214100629091263,0.898371398448944,0.209251880645752,0.902882099151611,0.224499478936195,0.898099184036255,0.227385938167572,0.897461116313934,0.232910722494125,0.904907703399658,0.235890865325928,0.910365402698517,0.245135128498077,0.924839437007904,0.245206028223038,0.916495323181152,0.239116609096527,0.915502786636353,0.218402460217476,0.897276282310486,0.208788529038429,0.897635817527771,0.211639538407326,0.894169569015503,0.23076106607914,0.897821962833405,0.233558908104897,0.901417374610901,0.23602506518364,0.90527480840683,0.24600613117218,0.928133547306061,0.245031327009201,0.912696063518524,0.247191101312637,0.920745253562927,0.241678982973099,0.911813676357269,0.218339160084724,0.893946766853333,0.224722295999527,0.894156873226166,0.22840379178524,0.892669379711151,0.23887100815773,0.909067749977112,0.250361144542694,0.923916578292847,0.2453503459692,0.932903826236725,0.250140875577927,0.916795372962952,0.20878092944622,0.892588317394257,0.21914179623127,0.889649987220764,0.235288247466087,0.897326946258545,0.231571301817894,0.892945349216461,0.235966831445694,0.900551438331604,0.239881277084351,0.904243052005768,0.249768659472466,0.928143680095673,0.2487533390522,0.931749224662781,0.242613285779953,0.908470213413239,0.250682711601257,0.919798254966736,0.20490700006485,0.892561733722687,0.21214847266674,0.889301836490631,0.224755212664604,0.889955043792725,0.238916590809822,0.901237607002258,0.253946423530579,0.928520977497101,0.249857276678085,0.935752272605896,0.258136868476868,0.91683965921402,0.255868196487427,0.925631940364838,0.206481888890266,0.899456322193146,0.206089437007904,0.889510691165924,0.208973363041878,0.886249542236328,0.216090768575668,0.885748207569122,0.227413788437843,0.889109373092651,0.234396994113922,0.892818748950958,0.244423642754555,0.907007992267609,0.253589421510696,0.931916356086731,0.257708966732025,0.913129031658173,0.257787436246872,0.921621322631836,0.202995344996452,0.885876059532166,\r\n0.219706431031227,0.885945677757263,0.2305838316679,0.889555037021637,0.240762397646904,0.897063612937927,0.256610065698624,0.931244134902954,0.253954023122787,0.937210738658905,0.251019448041916,0.91145920753479,0.205577969551086,0.88366436958313,0.222919523715973,0.886547029018402,0.243405789136887,0.901156544685364,0.260577708482742,0.931420087814331,0.250989079475403,0.939875662326813,0.256726562976837,0.934517979621887,0.253158986568451,0.908532202243805,0.202278807759285,0.882183134555817,0.209239214658737,0.881940066814423,0.258833169937134,0.939157843589783,0.200088635087013,0.88504683971405,0.20522603392601,0.878473818302155,0.21599455177784,0.882642686367035,0.260516941547394,0.935397803783417,0.255187094211578,0.942964673042297,0.202724426984787,0.892392098903656,0.197480693459511,0.875682294368744,0.209892466664314,0.878732085227966,0.201726824045181,0.877911686897278,0.263454020023346,0.939754128456116,0.260213077068329,0.945069968700409,0.262742549180985,0.94405722618103,0.296520441770554,0.88733446598053,0.299500584602356,0.890747606754303,0.294089734554291,0.894491136074066,0.290851354598999,0.89125394821167,0.289023250341415,0.897848546504974,0.290220886468887,0.885192394256592,0.293823897838593,0.902054131031036,0.295874804258347,0.881708383560181,0.28721034526825,0.903663218021393,0.289522051811218,0.878381371498108,0.292221128940582,0.906720578670502,0.283414900302887,0.900966644287109,0.29441636800766,0.875996232032776,0.293456763029099,0.910621106624603,0.28846874833107,0.906916797161102,0.282895863056183,0.902970731258392,0.286582410335541,0.893997371196747,0.289858818054199,0.873652875423431,0.290458887815475,0.911252856254578,0.285675972700119,0.907663762569427,0.286691308021545,0.87212735414505,0.292355328798294,0.87025374174118,0.292286962270737,0.913874685764313,0.287853479385376,0.885670959949493,0.291198223829269,0.86572527885437,0.283042699098587,0.866231679916382,0.289734750986099,0.863641440868378,0.288271248340607,0.861557602882385,0.283392131328583,0.862417221069336,0.282305896282196,\r\n0.854107260704041,0.286382406949997,0.852072834968567,0.282113462686539,0.850056111812592,0.288435816764832,0.851698100566864,0.278826951980591,0.850735902786255,0.28494930267334,0.846606254577637,0.279227018356323,0.854870676994324,0.278155982494354,0.862575471401215,0.274484604597092,0.853783190250397,0.273127466440201,0.850200414657593,0.27392503619194,0.860172629356384,0.272319763898849,0.846089720726013,0.278885185718536,0.868021786212921,0.27290466427803,0.854584515094757,0.279419451951981,0.845323801040649,0.275185972452164,0.841908156871796,0.277034312486649,0.837793707847595,0.269291520118713,0.842636108398438,0.274580836296082,0.837578475475311,0.936227023601532,0.901821196079254,0.935976386070251,0.905092537403107,0.933530509471893,0.903441667556763,0.933325409889221,0.907604277133942,0.766170263290405,0.893141567707062,0.770282208919525,0.896878778934479,0.764514327049255,0.897061049938202,0.766765296459198,0.900970458984375,0.426526337862015,0.862372934818268,0.433129757642746,0.863243937492371,0.429544478654861,0.865289747714996,0.428389877080917,0.859283924102783,0.433788061141968,0.865664482116699,0.438578575849533,0.863952875137329,0.437018871307373,0.866565883159637,0.438193708658218,0.859780192375183,0.432319521903992,0.868328154087067,0.443095654249191,0.867366015911102,0.436907470226288,0.868935823440552,0.439925611019135,0.869786560535431,0.447481036186218,0.865320146083832,0.443115890026093,0.870404362678528,0.443480491638184,0.859152257442474,0.446842968463898,0.870161294937134,0.439824312925339,0.872136235237122,0.447369635105133,0.859283924102783,0.439530611038208,0.855698645114899,0.450681447982788,0.868054687976837,0.443521022796631,0.872673034667969,0.43549969792366,0.870951294898987,0.442670255899429,0.851110637187958,0.451339781284332,0.862940073013306,0.435813665390015,0.852913439273834,0.450549781322479,0.872875571250916,0.446640402078629,0.873108506202698,0.446893602609634,0.851353704929352,0.450954914093018,0.858372390270233,0.439662277698517,0.850178897380829,0.454337626695633,0.867598950862885,\r\n0.45453006029129,0.875508844852448,0.443743824958801,0.875275909900665,0.443500757217407,0.846948087215424,0.454681992530823,0.859496593475342,0.435580730438232,0.847251951694489,0.454995959997177,0.863426208496094,0.449223041534424,0.875579714775085,0.43962174654007,0.873959243297577,0.448230504989624,0.848396360874176,0.453983157873154,0.856123983860016,0.439571112394333,0.845337748527527,0.458560973405838,0.873918771743774,0.459300339221954,0.870080292224884,0.453000754117966,0.878547251224518,0.447167068719864,0.8777876496315,0.447450637817383,0.844102144241333,0.45864200592041,0.860610663890839,0.435844033956528,0.84102326631546,0.442872822284698,0.842765271663666,0.458084970712662,0.878243386745453,0.458429336547852,0.864216208457947,0.45076248049736,0.846299886703491,0.457436800003052,0.855496048927307,0.432005554437637,0.84414267539978,0.439743280410767,0.840982735157013,0.463908523321152,0.877615451812744,0.462399482727051,0.868267357349396,0.456079632043839,0.881514728069305,0.45132964849472,0.880420863628387,0.451360017061234,0.84118527173996,0.441191583871841,0.837721526622772,0.462298184633255,0.861319601535797,0.462348818778992,0.864266872406006,0.432633489370346,0.840071201324463,0.432299256324768,0.848234355449677,0.43763667345047,0.835949182510376,0.468709170818329,0.876673579216003,0.467564702033997,0.87345290184021,0.456292331218719,0.846613883972168,0.445982098579407,0.837802588939667,0.463240087032318,0.852579236030579,0.427468240261078,0.841995537281036,0.433808326721191,0.836121320724487,0.432673990726471,0.852305769920349,0.461346179246902,0.883459270000458,0.470076441764832,0.881778061389923,0.465822726488113,0.863750338554382,0.467726767063141,0.871163964271545,0.454692125320435,0.883459270000458,0.466612696647644,0.856508851051331,0.429463446140289,0.83806586265564,0.458854705095291,0.885950744152069,0.47440105676651,0.877078652381897,0.4742491543293,0.88319593667984,0.463169187307358,0.847889959812164,0.466541796922684,0.851850032806396,0.430931985378265,0.834622383117676,0.464789658784866,\r\n0.886558413505554,0.468466103076935,0.889049887657166,0.470876544713974,0.865026414394379,0.474856823682785,0.87033349275589,0.457416534423828,0.843899607658386,0.470542341470718,0.861603200435638,0.424966633319855,0.833589375019073,0.464485824108124,0.889860093593597,0.478371202945709,0.884289741516113,0.474421322345734,0.890123426914215,0.479434639215469,0.874718844890594,0.423255026340485,0.83635425567627,0.478452235460281,0.890599489212036,0.474289655685425,0.89362770318985,0.418646812438965,0.831766307353973,0.482584446668625,0.886295080184937,0.418444246053696,0.835392117500305,0.469873875379562,0.894275903701782,0.482523679733276,0.892159163951874,0.478340834379196,0.89682811498642,0.414322197437286,0.829214096069336,0.46453645825386,0.893526434898376,0.473773151636124,0.897486448287964,0.482746481895447,0.899309456348419,0.419062077999115,0.826246619224548,0.455309927463531,0.88617354631424,0.416206002235413,0.825517416000366,0.424490630626678,0.831928372383118,0.478745937347412,0.902195930480957,0.486625492572784,0.907158613204956,0.47736856341362,0.904768407344818,0.479606837034225,0.90541660785675,0.472861617803574,0.90077805519104,0.486260861158371,0.910176753997803,0.469053536653519,0.896899044513702,0.433331042528152,0.940428853034973,0.435619950294495,0.935780167579651,0.437030285596848,0.941198587417603,0.438653290271759,0.935810565948486,0.436382085084915,0.932569622993469,0.439881294965744,0.939618647098541,0.439407795667648,0.931354224681854,0.433579176664352,0.929845213890076,0.440845966339111,0.936489105224609,0.441511899232864,0.932812690734863,0.437232822179794,0.928255081176758,0.43983319401741,0.927698075771332,0.434242576360703,0.925014138221741,0.437346786260605,0.924062132835388,0.43914195895195,0.923322796821594,0.435192048549652,0.920983254909515,0.438346892595291,0.92103385925293,0.430601567029953,0.919129848480225,0.432862639427185,0.917570114135742,0.43607571721077,0.916942179203033,0.430781334638596,0.914126634597778,0.433918476104736,0.914400100708008,0.435680717229843,0.913984835147858,\r\n0.739749014377594,0.909062683582306,0.736675202846527,0.908981680870056,0.739381909370422,0.905021607875824,0.90088814496994,0.911799728870392,0.904776036739349,0.91463303565979,0.902276992797852,0.916927039623261,0.855412483215332,0.901608526706696,0.859401643276215,0.895184874534607,0.85953962802887,0.901807308197021,0.456711381673813,0.938161492347717,0.453488171100616,0.937461376190186,0.457312732934952,0.933769762516022,0.453169137239456,0.931528925895691,0.46243491768837,0.934744596481323,0.457781136035919,0.928945064544678,0.449153393507004,0.933573544025421,0.460681527853012,0.933452010154724,0.460722029209137,0.930230021476746,0.449745893478394,0.938389360904694,0.464444041252136,0.931590974330902,0.465369492769241,0.925849735736847,0.467533081769943,0.931864440441132,0.463702172040939,0.923456966876984,0.465422660112381,0.929076731204987,0.470887929201126,0.919338703155518,0.464975774288177,0.919605851173401,0.463504672050476,0.921276986598969,0.47085502743721,0.913981080055237,0.220029264688492,0.667798936367035,0.217898607254028,0.668449640274048,0.220455899834633,0.663832604885101,0.222534656524658,0.667602717876434,0.223589226603508,0.664142787456512,0.222324505448341,0.660324513912201,0.224702030420303,0.66713809967041,0.219582363963127,0.660284042358398,0.225816115736961,0.659978926181793,0.226238951086998,0.664371907711029,0.220333099365234,0.655965745449066,0.224599495530128,0.656156897544861,0.22755178809166,0.667666018009186,0.21790999174118,0.656667053699493,0.231237083673477,0.655196011066437,0.229270994663239,0.661229729652405,0.230310380458832,0.665211260318756,0.217269405722618,0.653522372245789,0.223290458321571,0.653231203556061,0.230234414339066,0.65201073884964,0.232243552803993,0.670414507389069,0.21996596455574,0.651643633842468,0.235065445303917,0.655493497848511,0.233956426382065,0.652438700199127,0.235205963253975,0.665097296237946,0.234450161457062,0.669818222522736,0.228691175580025,0.67108291387558,0.222301721572876,0.650986552238464,0.232479020953178,0.672598302364349,0.225474298000336,\r\n0.670492947101593,0.224683046340942,0.649863660335541,0.237164452672005,0.653483092784882,0.23786960542202,0.659846007823944,0.239164724946022,0.668240785598755,0.236979618668556,0.67508727312088,0.239492610096931,0.673216104507446,0.236703634262085,0.677577435970306,0.240553513169289,0.654409825801849,0.240487679839134,0.664754211902618,0.244100823998451,0.670652508735657,0.240000277757645,0.651008129119873,0.242491751909256,0.674625158309937,0.245946630835533,0.654341459274292,0.243590623140335,0.6519575715065,0.235135063529015,0.650523245334625,0.248405188322067,0.665815114974976,0.250107944011688,0.6739541888237,0.241442233324051,0.678734600543976,0.252591818571091,0.670354962348938,0.246007397770882,0.677701532840729,0.246309980750084,0.650380194187164,0.248911589384079,0.657881140708923,0.256227761507034,0.666763365268707,0.252118349075317,0.677521765232086,0.259273737668991,0.67378705739975,0.249983876943588,0.652105689048767,0.253313422203064,0.655009925365448,0.259425640106201,0.67025625705719,0.260473877191544,0.660218179225922,0.25584289431572,0.656475901603699,0.265894860029221,0.666873514652252,0.269123136997223,0.659718096256256,0.265816360712051,0.670203030109406,0.253409653902054,0.650483965873718,0.257321566343308,0.6517613530159,0.264109820127487,0.65504664182663,0.268006533384323,0.652777969837189,0.267955899238586,0.67343008518219,0.261286646127701,0.652945041656494,0.27241724729538,0.666817784309387,0.274531453847885,0.655508697032928,0.271753877401352,0.670123279094696,0.260390341281891,0.649866163730621,0.278828233480453,0.659867525100708,0.264135122299194,0.650738418102264,0.271589279174805,0.653018474578857,0.274754256010056,0.673274338245392,0.28158301115036,0.664298474788666,0.281590610742569,0.669911861419678,0.267315298318863,0.649329423904419,0.270571440458298,0.650156080722809,0.274392187595367,0.651009380817413,0.281018376350403,0.6535325050354,0.2718146443367,0.676940679550171,0.284699887037277,0.66711151599884,0.286824226379395,0.660228312015533,0.278048366308212,0.652615904808044,\r\n0.283578217029572,0.65568596124649,0.279962539672852,0.673175632953644,0.274774521589279,0.677362263202667,0.29367071390152,0.663913607597351,0.288986533880234,0.667416632175446,0.277455896139145,0.649329423904419,0.284277051687241,0.650977730751038,0.280620872974396,0.65019154548645,0.27763819694519,0.676351964473724,0.282717347145081,0.673066735267639,0.271888047456741,0.6809361577034,0.295118987560272,0.657017767429352,0.288518130779266,0.652971625328064,0.285456955432892,0.67284768819809,0.279992938041687,0.676944434642792,0.275817692279816,0.681133627891541,0.269168704748154,0.680856347084045,0.293359279632568,0.667716681957245,0.297932028770447,0.661301851272583,0.288543432950974,0.673185706138611,0.287598997354507,0.649214208126068,0.282808512449265,0.676872313022614,0.270941108465195,0.68447333574295,0.26909527182579,0.67704701423645,0.298858731985092,0.664866924285889,0.294250518083572,0.651962637901306,0.298785299062729,0.653129875659943,0.285925358533859,0.677226781845093,0.29070320725441,0.64960789680481,0.280018240213394,0.681119680404663,0.277774930000305,0.685635507106781,0.266459494829178,0.685013890266418,0.266396194696426,0.680943727493286,0.298456162214279,0.669732093811035,0.291402041912079,0.673417389392853,0.30301371216774,0.653849005699158,0.305533051490784,0.668778836727142,0.288378864526749,0.676682412624359,0.282843947410584,0.681127309799194,0.27117657661438,0.689471423625946,0.266456961631775,0.689280271530151,0.266365796327591,0.677209079265594,0.302557975053787,0.668773770332336,0.293984681367874,0.672398269176483,0.2910475730896,0.676941931247711,0.297762393951416,0.64939272403717,0.301162838935852,0.650254845619202,0.308454960584641,0.660918295383453,0.285922825336456,0.681670427322388,0.276888728141785,0.689971506595612,0.263656586408615,0.684978425502777,0.263679385185242,0.689171433448792,0.2636439204216,0.681042492389679,0.301347672939301,0.672799587249756,0.296840757131577,0.672313451766968,0.304775983095169,0.650352299213409,0.307852327823639,0.65281468629837,0.304046779870987,\r\n0.672803401947021,0.308675229549408,0.668725669384003,0.266380995512009,0.69332891702652,0.272412180900574,0.693461835384369,0.279861271381378,0.689170122146606,0.262795716524124,0.692855417728424,0.262466549873352,0.677943348884583,0.298792898654938,0.673466801643372,0.29622295498848,0.676581144332886,0.312098473310471,0.65418952703476,0.306750923395157,0.672852754592896,0.316483855247498,0.662019670009613,0.29310354590416,0.681383013725281,0.287196427583694,0.685920357704163,0.278529435396194,0.693654298782349,0.284271985292435,0.689670205116272,0.260970145463943,0.689014434814453,0.260960012674332,0.684904992580414,0.260952413082123,0.681043744087219,0.300684303045273,0.67718118429184,0.307725727558136,0.64900529384613,0.310883104801178,0.649729430675507,0.315686285495758,0.654373109340668,0.305743187665939,0.677222967147827,0.309804499149323,0.67329078912735,0.313093543052673,0.668138206005096,0.269819438457489,0.697504162788391,0.265732824802399,0.69719523191452,0.258293837308884,0.692988395690918,0.296562224626541,0.681494414806366,0.314027845859528,0.650576412677765,0.31307327747345,0.672397017478943,0.319567829370499,0.656883537769318,0.315630584955215,0.669100403785706,0.291966676712036,0.685624122619629,0.289034634828568,0.689871490001678,0.260623276233673,0.699149966239929,0.278101533651352,0.697708010673523,0.284223884344101,0.693898618221283,0.25831663608551,0.688847303390503,0.258311569690704,0.684834122657776,0.258255869150162,0.697335779666901,0.301464140415192,0.681809663772583,0.317714393138886,0.651251196861267,0.309214532375336,0.681589365005493,0.322011172771454,0.661612033843994,0.3185955286026,0.668634474277496,0.266337960958481,0.703575849533081,0.260876476764679,0.705443203449249,0.276898860931396,0.701405942440033,0.258210301399231,0.681104481220245,0.255726426839828,0.69625335931778,0.306766122579575,0.681520998477936,0.297071158885956,0.686025440692902,0.314714014530182,0.681603312492371,0.321322470903397,0.65214878320694,0.323492377996445,0.665913879871368,0.325348347425461,0.654831409454346,\r\n0.315779983997345,0.673408567905426,0.31787645816803,0.672876834869385,0.293736547231674,0.689932286739349,0.290158838033676,0.694053053855896,0.26981183886528,0.705265939235687,0.257992535829544,0.7044278383255,0.28123614192009,0.702608644962311,0.284583419561386,0.697902917861938,0.255587160587311,0.688739717006683,0.255528926849365,0.684759438037872,0.254799723625183,0.704125285148621,0.302854210138321,0.685830473899841,0.307619392871857,0.686026692390442,0.311462938785553,0.685873508453369,0.320532500743866,0.648978710174561,0.325695216655731,0.66164493560791,0.320681899785995,0.67246413230896,0.321360468864441,0.66865473985672,0.261663913726807,0.708789229393005,0.265525192022324,0.708570182323456,0.255698561668396,0.711445271968842,0.276359528303146,0.705601453781128,0.2528475522995,0.692760467529297,0.252634853124619,0.701751530170441,0.296407788991928,0.690956473350525,0.316838353872299,0.685470938682556,0.323730409145355,0.649909198284149,0.331306099891663,0.662752687931061,0.334048211574554,0.655246615409851,0.320760369300842,0.676877379417419,0.326130717992783,0.669994175434113,0.293647915124893,0.693974554538727,0.29033100605011,0.697901666164398,0.255523860454559,0.71645987033844,0.270766377449036,0.709081649780273,0.28011953830719,0.705706536769867,0.286700159311295,0.701771795749664,0.252498149871826,0.688157320022583,0.252829819917679,0.696868658065796,0.252477884292603,0.711438894271851,0.303811281919479,0.689722120761871,0.299400568008423,0.689494252204895,0.31006783246994,0.689623355865479,0.319048762321472,0.681424796581268,0.316395252943039,0.689238488674164,0.328044891357422,0.651082813739777,0.337425887584686,0.658207774162292,0.332812607288361,0.666634202003479,0.323441743850708,0.671727299690247,0.324135512113571,0.676530480384827,0.330455332994461,0.670733511447906,0.259613007307053,0.714877367019653,0.263355284929276,0.714043080806732,0.252632319927216,0.716163575649261,0.277557164430618,0.709656417369843,0.283223748207092,0.705397605895996,0.27179691195488,0.713161945343018,0.25314125418663,\r\n0.684144139289856,0.250083893537521,0.692532598972321,0.250149726867676,0.696662247180939,0.251097947359085,0.701378107070923,0.307237058877945,0.690783023834229,0.301271706819534,0.693240284919739,0.296357125043869,0.694979786872864,0.312812477350235,0.689639806747437,0.321162968873978,0.685581028461456,0.324492514133453,0.693145334720612,0.338350057601929,0.666492462158203,0.340757966041565,0.656079649925232,0.334782510995865,0.652769088745117,0.325282514095306,0.680462658405304,0.326082617044449,0.673836469650269,0.328672826290131,0.673742771148682,0.293592214584351,0.697963714599609,0.293809950351715,0.70177686214447,0.259390205144882,0.718633532524109,0.253498286008835,0.720964252948761,0.275756925344467,0.713197410106659,0.280289173126221,0.710004568099976,0.282659113407135,0.709314584732056,0.287735730409622,0.708701848983765,0.250266194343567,0.685140490531921,0.249615475535393,0.689092934131622,0.249686375260353,0.717657446861267,0.30452024936676,0.693984687328339,0.312853008508682,0.693663120269775,0.30896133184433,0.694051802158356,0.324550747871399,0.685535490512848,0.321702271699905,0.694955706596375,0.318304359912872,0.693608701229095,0.342431604862213,0.666720330715179,0.336099117994308,0.670101761817932,0.327898025512695,0.677519202232361,0.334129244089127,0.674298524856567,0.291353940963745,0.709627270698547,0.263803452253342,0.717062473297119,0.285456955432892,0.709365248680115,0.271508276462555,0.717101693153381,0.247318968176842,0.692322432994843,0.302036374807358,0.697586476802826,0.296810358762741,0.699634850025177,0.32622691988945,0.697772562503815,0.34168216586113,0.670875310897827,0.337357521057129,0.650930881500244,0.344130575656891,0.660120725631714,0.329753994941711,0.684033989906311,0.330295830965042,0.677064716815948,0.295833021402359,0.7093905210495,0.259124338626862,0.722768306732178,0.279873937368393,0.717500507831573,0.282626181840897,0.716339588165283,0.285672158002853,0.713896214962006,0.288333296775818,0.712422609329224,0.275835424661636,0.717404246330261,0.247263267636299,0.688434600830078,\r\n0.247439235448837,0.696363508701324,0.305621653795242,0.69813460111618,0.312812477350235,0.697628200054169,0.318271458148956,0.698677718639374,0.328761458396912,0.694930374622345,0.320892035961151,0.698273897171021,0.323808878660202,0.701489508152008,0.345923215150833,0.667308986186981,0.340281963348389,0.674869477748871,0.340932697057724,0.652380406856537,0.346723318099976,0.655252993106842,0.331260502338409,0.681147575378418,0.329290628433228,0.689705669879913,0.333787441253662,0.678186416625977,0.296855926513672,0.702392160892487,0.296506524085999,0.705595135688782,0.295919090509415,0.713207542896271,0.261853814125061,0.720823705196381,0.253721088171005,0.726824522018433,0.268518000841141,0.721246540546417,0.291105806827545,0.713550567626953,0.272440046072006,0.721033871173859,0.310510903596878,0.69807767868042,0.301864206790924,0.701724946498871,0.329100728034973,0.698829650878906,0.327087819576263,0.701618611812592,0.346606850624084,0.671072781085968,0.337372720241547,0.677882552146912,0.344128042459488,0.674549221992493,0.34732848405838,0.659633278846741,0.348214656114578,0.664061725139618,0.334233045578003,0.686145663261414,0.335587680339813,0.690023422241211,0.300107002258301,0.706186354160309,0.299091666936874,0.709781765937805,0.262345016002655,0.723879814147949,0.258511602878571,0.727379024028778,0.278638333082199,0.721820056438446,0.285581022500992,0.721839070320129,0.288391530513763,0.716545939445496,0.304902583360672,0.701217293739319,0.31009566783905,0.705206453800201,0.315574884414673,0.70158064365387,0.318304359912872,0.703303635120392,0.337114453315735,0.693640351295471,0.321418702602386,0.704965889453888,0.338043689727783,0.697925746440887,0.325442016124725,0.7052241563797,0.350450396537781,0.667755901813507,0.340175628662109,0.678031921386719,0.343219071626663,0.678559839725494,0.336797952651978,0.682345151901245,0.299929767847061,0.713782250881195,0.290877938270569,0.721642792224884,0.262079149484634,0.72670042514801,0.255521327257156,0.729139983654022,0.267571032047272,0.724654614925385,0.288401633501053,\r\n0.720481872558594,0.273670583963394,0.724966049194336,0.314020246267319,0.705539405345917,0.30561152100563,0.705303907394409,0.330060362815857,0.702088296413422,0.337261319160461,0.702117443084717,0.329488128423691,0.705911576747894,0.348214656114578,0.674597322940826,0.351321399211884,0.671381711959839,0.339041292667389,0.681256413459778,0.346178948879242,0.678200304508209,0.340411096811295,0.692369282245636,0.302125006914139,0.709370315074921,0.295460820198059,0.717556178569794,0.268378734588623,0.729023516178131,0.261795580387115,0.731135189533234,0.260038375854492,0.733116507530212,0.252746284008026,0.73246830701828,0.284520119428635,0.725271165370941,0.288082629442215,0.724769830703735,0.278000265359879,0.724511563777924,0.311865538358688,0.709328532218933,0.305325418710709,0.709293067455292,0.320897102355957,0.709620952606201,0.323950678110123,0.709195613861084,0.340124994516373,0.702123761177063,0.326333284378052,0.71245551109314,0.341859400272369,0.682310998439789,0.345371246337891,0.681864082813263,0.340114861726761,0.685978591442108,0.304497450590134,0.713664531707764,0.304335415363312,0.717871427536011,0.294544249773026,0.721489608287811,0.268616735935211,0.732198655605316,0.263674318790436,0.732841789722443,0.255501061677933,0.733041822910309,0.279086470603943,0.732227742671967,0.31613951921463,0.709112048149109,0.341747969388962,0.698157429695129,0.333025306463242,0.705435574054718,0.338063955307007,0.705852091312408,0.330136299133301,0.708830952644348,0.350480794906616,0.678645968437195,0.353681206703186,0.675046741962433,0.348581790924072,0.6818767786026,0.343462139368057,0.68949168920517,0.292690813541412,0.725044548511505,0.273718684911728,0.730840265750885,0.25824573636055,0.735880136489868,0.255663126707077,0.738710880279541,0.286216557025909,0.729156494140625,0.282307177782059,0.729021012783051,0.317218124866486,0.715210318565369,0.311093270778656,0.71287077665329,0.319798231124878,0.713035345077515,0.32359367609024,0.712997376918793,0.344355911016464,0.69377201795578,0.342887371778488,0.701899707317352,\r\n0.340768098831177,0.705879986286163,0.329683095216751,0.713189780712128,0.34383687376976,0.68554562330246,0.347348719835281,0.686158359050751,0.308867663145065,0.717189073562622,0.303659379482269,0.721379458904266,0.298451095819473,0.724936902523041,0.271756410598755,0.735904216766357,0.268216699361801,0.736344754695892,0.263552784919739,0.737839877605438,0.261218279600143,0.741515100002289,0.253083020448685,0.741707503795624,0.280843675136566,0.736516952514648,0.345323145389557,0.69780296087265,0.326690286397934,0.717075109481812,0.33521294593811,0.709553837776184,0.338476657867432,0.709215819835663,0.332506239414215,0.713546812534332,0.354104071855545,0.67828768491745,0.353635638952255,0.682557880878448,0.350774496793747,0.685920357704163,0.346376448869705,0.689875304698944,0.308584064245224,0.721154153347015,0.294974684715271,0.728964030742645,0.251191645860672,0.73702210187912,0.255589693784714,0.748356521129608,0.290617138147354,0.729085564613342,0.276035457849503,0.736418187618256,0.3204565346241,0.717049777507782,0.312815010547638,0.717101693153381,0.32307967543602,0.716578841209412,0.348495721817017,0.69404548406601,0.343472272157669,0.70589005947113,0.348683089017868,0.702128827571869,0.34086686372757,0.709776699542999,0.331359267234802,0.716819405555725,0.357777953147888,0.681733727455139,0.350870728492737,0.688910603523254,0.313820213079453,0.72065407037735,0.305844485759735,0.725166082382202,0.268140733242035,0.740090847015381,0.263628721237183,0.744206547737122,0.258362203836441,0.743648290634155,0.249638259410858,0.741575837135315,0.249343290925026,0.736038386821747,0.252404451370239,0.758193254470825,0.276891261339188,0.740285813808441,0.273255318403244,0.740108549594879,0.321188300848007,0.720588266849518,0.350245326757431,0.698125779628754,0.325662285089493,0.720084369182587,0.334281176328659,0.716140806674957,0.349154025316238,0.705909073352814,0.329062759876251,0.720473051071167,0.353704005479813,0.68557345867157,0.35149359703064,0.694836735725403,0.311457872390747,0.725047051906586,0.3061862885952,\r\n0.728347480297089,0.290115803480148,0.736325800418854,0.260714411735535,0.747346222400665,0.245941564440727,0.739607214927673,0.250052243471146,0.748907208442688,0.249476224184036,0.733156979084015,0.255333960056305,0.754490196704865,0.282291978597641,0.740202248096466,0.323297441005707,0.720764219760895,0.34408500790596,0.710727453231812,0.351382166147232,0.702055394649506,0.337511986494064,0.716704189777374,0.330404698848724,0.721011102199554,0.357018381357193,0.686234295368195,0.354942142963409,0.689765155315399,0.353433072566986,0.694173336029053,0.316866189241409,0.724762201309204,0.311148971319199,0.728686809539795,0.301046371459961,0.732408821582794,0.293544113636017,0.737063825130463,0.267768532037735,0.743910312652588,0.2647605240345,0.749936461448669,0.246540382504463,0.754349708557129,0.251006811857224,0.728547513484955,0.258028000593185,0.751032769680023,0.252986818552017,0.762488722801209,0.248719155788422,0.75813752412796,0.280086606740952,0.748248875141144,0.273718684911728,0.743124127388,0.321876972913742,0.723888695240021,0.352984935045242,0.699120819568634,0.324750781059265,0.724709033966064,0.328490525484085,0.725934505462646,0.349467992782593,0.709414601325989,0.341889768838882,0.716815590858459,0.352156966924667,0.705911576747894,0.335055947303772,0.720386922359467,0.309672832489014,0.73613715171814,0.303585946559906,0.736611902713776,0.29807636141777,0.735552251338959,0.291462808847427,0.740355432033539,0.260114341974258,0.755838513374329,0.247729152441025,0.763071119785309,0.288054764270782,0.740106046199799,0.283995985984802,0.748062789440155,0.276506394147873,0.748142540454865,0.344735711812973,0.716482639312744,0.354344606399536,0.702804863452911,0.339319825172424,0.721028804779053,0.330981999635696,0.727632224559784,0.357605785131454,0.690115809440613,0.320514768362045,0.728867828845978,0.313627779483795,0.73602956533432,0.297947227954865,0.741172015666962,0.269558638334274,0.747905790805817,0.2661252617836,0.753535687923431,0.244027391076088,0.758531272411346,0.250280112028122,0.767189383506775,\r\n0.259463608264923,0.759057939052582,0.244930043816566,0.763088822364807,0.28780409693718,0.7441685795784,0.279914438724518,0.752122819423676,0.276810228824615,0.751782238483429,0.324484914541245,0.728171527385712,0.329361528158188,0.731765687465668,0.352083534002304,0.713278412818909,0.352595001459122,0.709693133831024,0.342241734266281,0.720718622207642,0.335752248764038,0.729032397270203,0.358124852180481,0.694122672080994,0.360611259937286,0.69037789106369,0.305229216814041,0.740290880203247,0.310784369707108,0.740118682384491,0.299501866102219,0.739775598049164,0.296835690736771,0.745313048362732,0.253315955400467,0.76680451631546,0.246359348297119,0.770872116088867,0.255384594202042,0.764018058776855,0.284150451421738,0.751949369907379,0.289353668689728,0.749127507209778,0.271910846233368,0.751808822154999,0.324874848127365,0.731949269771576,0.34745255112648,0.717401742935181,0.354944676160812,0.709215819835663,0.345257312059402,0.72065532207489,0.340216130018234,0.72739040851593,0.361920297145844,0.698023200035095,0.360894829034805,0.686505198478699,0.320362865924835,0.731841623783112,0.315268516540527,0.740401029586792,0.299744933843613,0.747448801994324,0.29136660695076,0.744552195072174,0.294670850038528,0.744768679141998,0.268609136343002,0.754083812236786,0.264846622943878,0.759971976280212,0.240036994218826,0.761243045330048,0.25276905298233,0.77066832780838,0.250095278024673,0.771636784076691,0.258774936199188,0.763300240039825,0.236127600073814,0.769539058208466,0.280924707651138,0.755329549312592,0.278934568166733,0.757099449634552,0.271791845560074,0.755516946315765,0.327905625104904,0.734671115875244,0.353101402521133,0.716970026493073,0.343786239624023,0.724391281604767,0.334539443254471,0.732863306999207,0.320975601673126,0.736442267894745,0.307513058185577,0.744111597537994,0.304948151111603,0.745835900306702,0.312222540378571,0.743678629398346,0.320013433694839,0.740566849708557,0.296549558639526,0.751941800117493,0.299266397953033,0.751902520656586,0.235411062836647,0.766486763954163,0.239050775766373,\r\n0.755670130252838,0.255680829286575,0.77030622959137,0.246337831020355,0.774738490581512,0.258582502603531,0.768556654453278,0.238625407218933,0.773663640022278,0.286588758230209,0.756003081798553,0.288307964801788,0.752760887145996,0.274706155061722,0.7559574842453,0.324084877967834,0.73638778924942,0.355344742536545,0.716642141342163,0.349386960268021,0.721114873886108,0.337354987859726,0.732705056667328,0.315704017877579,0.750325083732605,0.304629117250443,0.75352931022644,0.292270511388779,0.752021551132202,0.301884442567825,0.753869891166687,0.270809441804886,0.758964240550995,0.264140188694,0.764191508293152,0.237441703677177,0.759188294410706,0.254847824573517,0.774470090866089,0.251197963953018,0.77431309223175,0.26074481010437,0.768998503684998,0.233686774969101,0.773656070232391,0.283988416194916,0.760008692741394,0.276774793863297,0.759764313697815,0.329391896724701,0.740601003170013,0.353420436382294,0.724140584468842,0.347756385803223,0.724755883216858,0.33546108007431,0.735250949859619,0.307333290576935,0.75099104642868,0.312888443470001,0.751715183258057,0.318157494068146,0.75021368265152,0.299322098493576,0.755689084529877,0.296671092510223,0.755811929702759,0.266183495521545,0.764991641044617,0.25794443488121,0.774111807346344,0.247924119234085,0.778474450111389,0.238457024097443,0.776981830596924,0.293235212564468,0.756194233894348,0.292060375213623,0.760090947151184,0.283874452114105,0.763205289840698,0.281408309936523,0.765206813812256,0.273587018251419,0.760228931903839,0.321770638227463,0.746632218360901,0.358241319656372,0.728348791599274,0.350635230541229,0.724312782287598,0.312640309333801,0.755177676677704,0.316623121500015,0.755582749843597,0.307710558176041,0.756004333496094,0.304991185665131,0.758890807628632,0.299038499593735,0.759809911251068,0.268877536058426,0.766576647758484,0.2658771276474,0.770808815956116,0.250201642513275,0.778694689273834,0.255898594856262,0.77872633934021,0.244874343276024,0.778340220451355,0.261818379163742,0.776257693767548,0.290536105632782,0.762811601161957,\r\n0.279291570186615,0.766025900840759,0.275179624557495,0.763040721416473,0.326325684785843,0.745759963989258,0.337215721607208,0.740337729454041,0.35374704003334,0.728628575801849,0.320324867963791,0.753874957561493,0.296043157577515,0.759633958339691,0.25846853852272,0.779211223125458,0.24722021818161,0.782205283641815,0.237364485859871,0.781207680702209,0.292992144823074,0.764161109924316,0.286474823951721,0.766667783260345,0.283046513795853,0.772634387016296,0.276362061500549,0.765723347663879,0.271875411272049,0.76785147190094,0.331458002328873,0.747177839279175,0.323279708623886,0.751680970191956,0.313989847898483,0.758645176887512,0.308844864368439,0.761355698108673,0.318547427654266,0.760064363479614,0.307262390851974,0.761888682842255,0.304808884859085,0.766346216201782,0.269037038087845,0.770717680454254,0.265547960996628,0.77604752779007,0.25482502579689,0.784587919712067,0.249983876943588,0.785114526748657,0.244008406996727,0.782277464866638,0.259770005941391,0.784597992897034,0.287393927574158,0.77392190694809,0.279841005802155,0.771846950054169,0.327723324298859,0.75664746761322,0.336048483848572,0.748351454734802,0.323454409837723,0.758752822875977,0.321018636226654,0.760259330272675,0.301735073328018,0.763481259346008,0.29807636141777,0.763749659061432,0.263775587081909,0.781888782978058,0.247182235121727,0.786094427108765,0.238259539008141,0.785013258457184,0.282676845788956,0.779689788818359,0.280185371637344,0.781411528587341,0.273460417985916,0.771179795265198,0.330138832330704,0.756617069244385,0.339114725589752,0.744162261486053,0.31500518321991,0.766596913337708,0.307677626609802,0.76641458272934,0.316324353218079,0.770059406757355,0.301970541477203,0.767693221569061,0.27021187543869,0.774897992610931,0.25336155295372,0.788398504257202,0.257258266210556,0.792431950569153,0.250326961278915,0.789294838905334,0.243714690208435,0.786528646945953,0.262043714523315,0.786526143550873,0.296754658222198,0.770351827144623,0.292126208543777,0.771096229553223,0.288156032562256,0.778356671333313,0.274911254644394,\r\n0.775724709033966,0.327961325645447,0.761325299739838,0.341107398271561,0.737855076789856,0.338945090770721,0.749564230442047,0.333812743425369,0.75684118270874,0.310485601425171,0.767442584037781,0.323867112398148,0.763975024223328,0.320484399795532,0.770337879657745,0.30900439620018,0.770110011100769,0.303737878799438,0.770875930786133,0.299238532781601,0.766842484474182,0.27137154340744,0.786521077156067,0.251839816570282,0.793792903423309,0.246551781892776,0.794756352901459,0.239477425813675,0.789739191532135,0.265910059213638,0.786575496196747,0.29081717133522,0.775451242923737,0.287434428930283,0.784485340118408,0.283651649951935,0.790156960487366,0.276179760694504,0.784998059272766,0.335152179002762,0.761369585990906,0.344728112220764,0.742697536945343,0.336663752794266,0.757399439811707,0.313103675842285,0.770194828510284,0.319101929664612,0.77359277009964,0.299453765153885,0.770978510379791,0.272521048784256,0.781286180019379,0.260516941547394,0.794777870178223,0.295698821544647,0.774334609508514,0.289295434951782,0.782676219940186,0.280139803886414,0.789791107177734,0.328700691461563,0.764662444591522,0.346113115549088,0.739545166492462,0.31420761346817,0.773957371711731,0.325224280357361,0.771806418895721,0.306252121925354,0.774281442165375,0.301512241363525,0.77477902173996,0.274663120508194,0.789279639720917,0.268391400575638,0.792764902114868,0.25799760222435,0.797403514385223,0.254184424877167,0.801017940044403,0.242622137069702,0.798498630523682,0.266489863395691,0.793071269989014,0.298162430524826,0.775904476642609,0.29800546169281,0.782274901866913,0.288943499326706,0.789973437786102,0.279960006475449,0.796032428741455,0.335980117321014,0.765219509601593,0.329093128442764,0.769171893596649,0.349103391170502,0.727224588394165,0.339532494544983,0.76147848367691,0.321689605712891,0.776252627372742,0.271799445152283,0.793516933917999,0.262205749750137,0.800995111465454,0.249680042266846,0.800582408905029,0.237201169133186,0.793091535568237,0.266740530729294,0.796770513057709,0.295789986848831,0.785905778408051,\r\n0.281752675771713,0.80022919178009,0.335919350385666,0.768723785877228,0.339036226272583,0.755225777626038,0.329255193471909,0.776547610759735,0.325300216674805,0.775906980037689,0.315091282129288,0.781427979469299,0.309518367052078,0.778331339359283,0.301489472389221,0.780897557735443,0.27487325668335,0.796633780002594,0.271115809679031,0.798203647136688,0.251885384321213,0.804441154003143,0.238122805953026,0.79964941740036,0.30087673664093,0.78576272726059,0.291999608278275,0.793229520320892,0.287140727043152,0.801133155822754,0.275605022907257,0.800657093524933,0.340568065643311,0.769031405448914,0.341963201761246,0.765565097332001,0.333587408065796,0.773756086826324,0.341803699731827,0.757852673530579,0.332073271274567,0.776238679885864,0.309394299983978,0.782421767711639,0.259286373853683,0.804436087608337,0.265745460987091,0.800939440727234,0.255739063024521,0.80464118719101,0.241744816303253,0.803335964679718,0.296478658914566,0.794832289218903,0.281266510486603,0.804263949394226,0.33762338757515,0.771621584892273,0.345191478729248,0.76061886548996,0.343026638031006,0.753849625587463,0.326713085174561,0.784870207309723,0.330933898687363,0.779253005981445,0.321780771017075,0.783121883869171,0.306176155805588,0.786004543304443,0.269662439823151,0.801458477973938,0.264046519994736,0.804323434829712,0.300005733966827,0.792669951915741,0.294799953699112,0.80069637298584,0.287819296121597,0.804650068283081,0.276967227458954,0.804845035076141,0.345687747001648,0.773711740970612,0.344920545816422,0.768809854984283,0.345991581678391,0.764697909355164,0.338874191045761,0.780055642127991,0.334701478481293,0.780551910400391,0.347320884466171,0.751482248306274,0.317294090986252,0.785933613777161,0.310875535011292,0.785831093788147,0.267715364694595,0.804636120796204,0.306087553501129,0.789047956466675,0.301403373479843,0.797907412052155,0.28406435251236,0.808529078960419,0.278278768062592,0.807696044445038,0.347860187292099,0.760889828205109,0.345173746347427,0.749756693840027,0.35003262758255,0.752239286899567,0.32159087061882,\r\n0.786665380001068,0.330660432577133,0.788920104503632,0.333319008350372,0.782957315444946,0.26763179898262,0.808194816112518,0.271558910608292,0.805132389068604,0.303864449262619,0.796190679073334,0.300456404685974,0.805196940898895,0.29082727432251,0.808542966842651,0.274326354265213,0.808863282203674,0.344388842582703,0.780362010002136,0.349042624235153,0.769411206245422,0.338947623968124,0.783782720565796,0.342079669237137,0.749775648117065,0.351683467626572,0.745404183864594,0.326880186796188,0.790392458438873,0.337246119976044,0.787318646907806,0.311900973320007,0.789637923240662,0.317002922296524,0.789542973041534,0.309158831834793,0.792788982391357,0.309812098741531,0.801307857036591,0.298040896654129,0.808461964130402,0.34993389248848,0.778797268867493,0.341783434152603,0.78350043296814,0.350761830806732,0.774551093578339,0.351584732532501,0.754737079143524,0.348842591047287,0.743916690349579,0.354142040014267,0.748562872409821,0.32226437330246,0.790183544158936,0.329156428575516,0.794019520282745,0.33286327123642,0.790432989597321,0.313610076904297,0.797227561473846,0.302907377481461,0.808349251747131,0.291670441627502,0.81176620721817,0.349047690629959,0.785458922386169,0.341287165880203,0.788345336914063,0.351506233215332,0.742167055606842,0.354182541370392,0.739384412765503,0.323573410511017,0.793998003005981,0.33714485168457,0.794366419315338,0.313951879739761,0.793197870254517,0.312564343214035,0.801200211048126,0.308265060186386,0.808225214481354,0.298481464385986,0.812239646911621,0.287953495979309,0.812468826770782,0.353496372699738,0.780600011348724,0.345275044441223,0.788573205471039,0.35461550951004,0.753211557865143,0.332845538854599,0.794084072113037,0.324406445026398,0.797575712203979,0.316557288169861,0.800544440746307,0.303489744663239,0.812030792236328,0.353635638952255,0.788369417190552,0.353083670139313,0.77480810880661,0.347953885793686,0.790577292442322,0.344469875097275,0.792106628417969,0.341117531061172,0.797380745410919,0.33189857006073,0.79727691411972,0.328895628452301,0.797527611255646,\r\n0.335430681705475,0.798622667789459,0.312321275472641,0.8067427277565,0.357555150985718,0.78703761100769,0.350658029317856,0.792325615882874,0.353387504816055,0.769301056861877,0.357410818338394,0.780717730522156,0.328890591859818,0.800872325897217,0.317175090312958,0.805145084857941,0.309184163808823,0.811801612377167,0.356134712696075,0.792550981044769,0.354086339473724,0.795679211616516,0.356668949127197,0.770934164524078,0.358610987663269,0.777004599571228,0.347156286239624,0.79462343454361,0.342740505933762,0.797958016395569,0.340385764837265,0.800783693790436,0.332296103239059,0.801029324531555,0.324730515480042,0.80577427148819,0.32097053527832,0.80679589509964,0.313992381095886,0.811920642852783,0.359659224748611,0.790826678276062,0.360416293144226,0.783611834049225,0.350554227828979,0.798956871032715,0.361669629812241,0.777408480644226,0.348546355962753,0.795705854892731,0.344793945550919,0.797473132610321,0.336043417453766,0.801571190357208,0.318096727132797,0.81160032749176,0.362011432647705,0.786704659461975,0.358907222747803,0.795366525650024,0.356041014194489,0.803239762783051,0.360793560743332,0.773367404937744,0.346376448869705,0.800938189029694,0.342760771512985,0.801643311977386,0.337436020374298,0.80495011806488,0.330308496952057,0.804305732250214,0.321801036596298,0.811326920986176,0.36432820558548,0.792468667030334,0.361449331045151,0.795684278011322,0.351134032011032,0.805374205112457,0.348095655441284,0.801631927490234,0.363082468509674,0.769411206245422,0.340970665216446,0.804813385009766,0.367045015096664,0.790046870708466,0.359565556049347,0.80433988571167,0.356099247932434,0.808937966823578,0.358056485652924,0.765481531620026,0.345887780189514,0.804998219013214,0.339046359062195,0.80815178155899,0.335602849721909,0.808617651462555,0.367566615343094,0.782645881175995,0.365346044301987,0.804625988006592,0.351688534021378,0.816850423812866,0.347650021314621,0.809468388557434,0.363350868225098,0.763791441917419,0.343692541122437,0.805181741714478,0.34077063202858,0.808880984783173,0.363300204277039,\r\n0.811681389808655,0.359005987644196,0.815902173519135,0.356185346841812,0.81543630361557,0.34790575504303,0.815513551235199,0.359185755252838,0.761234164237976,0.345143377780914,0.810572385787964,0.343102604150772,0.809048116207123,0.367493182420731,0.810521721839905,0.348475456237793,0.825119853019714,0.344173610210419,0.825937688350677,0.344520509243011,0.815460324287415,0.362968534231186,0.815890789031982,0.356048613786697,0.820096433162689,0.342383503913879,0.812928378582001,0.33995532989502,0.812076330184937,0.360666960477829,0.821088969707489,0.358076751232147,0.821692824363709,0.346396714448929,0.82953941822052,0.352992504835129,0.825797200202942,0.335012912750244,0.822786629199982,0.335440814495087,0.81869113445282,0.365404307842255,0.817704975605011,0.337555021047592,0.830026865005493,0.335167348384857,0.826265573501587,0.337162554264069,0.814655184745789,0.359755456447601,0.833780527114868,0.354458540678024,0.828555762767792,0.35018202662468,0.831427037715912,0.330257833003998,0.822525858879089,0.330513566732407,0.826182007789612,0.33311140537262,0.814802050590515,0.36228996515274,0.828197479248047,0.330014765262604,0.829487562179565,0.331670701503754,0.818650662899017,0.365381509065628,0.830933272838593,0.326629519462585,0.826018691062927,0.328153759241104,0.818492412567139,0.324758380651474,0.822372674942017,0.326181352138519,0.830039501190186,0.32146680355072,0.824840068817139,0.323439210653305,0.818700015544891,0.321484535932541,0.822434723377228,0.31864869594574,0.829419195652008,0.31877276301384,0.822334706783295,0.645412445068359,0.906887710094452,0.644432544708252,0.909976720809937,0.642803192138672,0.907680213451386,0.711788356304169,0.905860960483551,0.71397852897644,0.905571043491364,0.714200079441071,0.90938675403595,0.876174747943878,0.91027170419693,0.875545561313629,0.907752394676209,0.879467606544495,0.908434748649597,0.87613046169281,0.905419170856476,0.642079055309296,0.899053752422333,0.646593570709229,0.891736328601837,0.650920748710632,0.899000585079193,0.647646903991699,0.903089702129364,\r\n0.781331777572632,0.897002816200256,0.783438384532928,0.893161833286285,0.783792853355408,0.89669394493103,0.777499616146088,0.893133997917175,0.783290266990662,0.900879323482513,0.837256908416748,0.895184874534607,0.839756011962891,0.901962995529175,0.83500599861145,0.898590385913849,0.196455240249634,0.950942933559418,0.201691374182701,0.955440998077393,0.197946578264236,0.957485556602478,0.20104318857193,0.960250496864319,0.196640074253082,0.960693597793579,0.201276138424873,0.965090394020081,0.196343839168549,0.964640974998474,0.196835041046143,0.970739245414734,0.201620489358902,0.968211054801941,0.203443512320518,0.974381506443024,0.198356762528419,0.982838332653046,0.204851299524307,0.970165729522705,0.204461365938187,0.977442681789398,0.193984031677246,0.972839534282684,0.202167391777039,0.987005949020386,0.193153530359268,0.980678558349609,0.194135949015617,0.966369032859802,0.197817444801331,0.987299680709839,0.200326636433601,0.992410480976105,0.526544690132141,0.903320133686066,0.525210380554199,0.893447935581207,0.528757691383362,0.890880525112152,0.530066728591919,0.898253619670868,0.533424079418182,0.89917778968811,0.534581243991852,0.902278244495392,0.531707406044006,0.891964197158813,0.528501927852631,0.90660160779953,0.491405874490738,0.913981080055237,0.494254350662231,0.915697753429413,0.494429051876068,0.919442534446716,0.48960942029953,0.91822212934494,0.488525718450546,0.92249608039856,0.494611352682114,0.923200011253357,0.49391758441925,0.926539659500122,0.487116694450378,0.926570057868958,0.494460701942444,0.930656671524048,0.487472414970398,0.930274367332459,0.484137803316116,0.93078076839447,0.486548244953156,0.934533178806305,0.492964297533035,0.935226917266846,0.481928646564484,0.93414831161499,0.495460838079453,0.932388544082642,0.493602365255356,0.938237428665161,0.480066388845444,0.930459201335907,0.496459692716599,0.934120416641235,0.481114625930786,0.936870157718658,0.476978629827499,0.932489812374115,0.48237806558609,0.927061259746552,0.497977614402771,0.937574088573456,0.866543114185333,\r\n0.895184874534607,0.869297921657562,0.897364914417267,0.866586148738861,0.901722431182861,0.86917507648468,0.901545226573944,0.0402775071561337,0.946563839912415,0.03733154758811,0.948655307292938,0.0382633171975613,0.943406462669373,0.0388355441391468,0.952863454818726,0.0336956195533276,0.954461097717285,0.0435108505189419,0.953149557113647,0.0353565998375416,0.947786808013916,0.035874392837286,0.958626210689545,0.0417511239647865,0.95868444442749,0.046068150550127,0.951886117458344,0.0313902497291565,0.958712339401245,0.0447084791958332,0.962500154972076,0.0386519767343998,0.962814152240753,0.0342032834887505,0.962563455104828,0.029907776042819,0.95481812953949,0.0420587584376335,0.962920486927032,0.0315928086638451,0.951475918292999,0.0413649939000607,0.966718435287476,0.0448629297316074,0.966842532157898,0.0471682995557785,0.963277459144592,0.0476025342941284,0.958750307559967,0.0483393408358097,0.966804504394531,0.0448072254657745,0.970706343650818,0.0475620217621326,0.970782279968262,0.0419081039726734,0.971194982528687,0.0501421131193638,0.970736682415009,0.0516473762691021,0.966771602630615,0.0474594756960869,0.974868893623352,0.0496002659201622,0.963125586509705,0.0526778921484947,0.970713913440704,0.050234530121088,0.974863827228546,0.0446413792669773,0.974471390247345,0.0484963245689869,0.980373442173004,0.0538793168962002,0.974673926830292,0.0446147955954075,0.977973103523254,0.0518119558691978,0.978476941585541,0.0555947348475456,0.971167147159576,0.0542287304997444,0.984589159488678,0.0556732267141342,0.978859305381775,0.0577215999364853,0.97463846206665,0.0565910711884499,0.982328116893768,0.0592496506869793,0.978958070278168,0.0586622320115566,0.98724776506424,0.0611043274402618,0.982872486114502,0.062493123114109,0.986878097057343,0.0625716149806976,0.978821337223053,0.0640199035406113,0.983282685279846,0.0610384978353977,0.990954577922821,0.0599459484219551,0.974557459354401,0.0660948678851128,0.986966729164124,0.0642794370651245,0.990483641624451,0.0666443035006523,0.991126775741577,0.069204144179821,\r\n0.987430036067963,0.0690319687128067,0.991757214069366,0.0672380551695824,0.995269060134888,0.0708005577325821,0.995372891426086,0.0640844702720642,0.99489688873291,0.492464244365692,0.886181175708771,0.496804058551788,0.883330166339874,0.497163593769073,0.886598944664001,0.501417338848114,0.887082517147064,0.500358939170837,0.881722331047058,0.496664792299271,0.880560159683228,0.50509124994278,0.881157696247101,0.493094682693481,0.880904495716095,0.500895738601685,0.878716886043549,0.504767119884491,0.886057078838348,0.497376263141632,0.87690144777298,0.504412651062012,0.874635338783264,0.508235931396484,0.883697271347046,0.501508474349976,0.87612920999527,0.508127093315125,0.879694223403931,0.500391840934753,0.872771799564362,0.50917786359787,0.877276182174683,0.509352564811707,0.881522297859192,0.504929184913635,0.871303200721741,0.512193441390991,0.879557490348816,0.508886694908142,0.87403267621994,0.500703275203705,0.869318127632141,0.512727677822113,0.875850677490234,0.508871495723724,0.870786726474762,0.505007684230804,0.866836786270142,0.494981020689011,0.874425172805786,0.512135207653046,0.873432636260986,0.501845240592957,0.866821587085724,0.516234457492828,0.873688340187073,0.508428394794464,0.867231786251068,0.513234078884125,0.87083226442337,0.51729029417038,0.871596932411194,0.516528189182281,0.867968618869781,0.508955061435699,0.864244043827057,0.516171157360077,0.869905591011047,0.504415214061737,0.864403545856476,0.513008713722229,0.864694774150848,0.520290732383728,0.869758725166321,0.504919052124023,0.861631035804749,0.508944928646088,0.861403167247772,0.517259955406189,0.864892244338989,0.499034732580185,0.864568173885345,0.51287454366684,0.861332297325134,0.520784437656403,0.86740905046463,0.504822850227356,0.859256029129028,0.508871495723724,0.858496427536011,0.51673835515976,0.861387968063354,0.512803673744202,0.85805082321167,0.52060467004776,0.864573240280151,0.504896283149719,0.856268286705017,0.508911967277527,0.855731546878815,0.516756057739258,0.858425557613373,0.521151602268219,0.861428499221802,\r\n0.4991714656353,0.857772290706635,0.513013780117035,0.853766739368439,0.524774849414825,0.863565504550934,0.509147465229034,0.85140186548233,0.517229557037354,0.854414880275726,0.520705938339233,0.858585059642792,0.505134284496307,0.850181400775909,0.5128213763237,0.849143326282501,0.524650812149048,0.861008167266846,0.508499264717102,0.848517894744873,0.520769238471985,0.854660511016846,0.520822405815125,0.849943399429321,0.524729251861572,0.858073592185974,0.505488753318787,0.845603585243225,0.509175300598145,0.844504714012146,0.516758620738983,0.846355617046356,0.513155579566956,0.844114780426025,0.525114119052887,0.855556845664978,0.524640679359436,0.851548671722412,0.520964205265045,0.845497250556946,0.504589915275574,0.843020975589752,0.509018301963806,0.841443538665771,0.524779915809631,0.847631692886353,0.513089776039124,0.841410636901855,0.517090320587158,0.842013239860535,0.528998196125031,0.853007137775421,0.528676629066467,0.847874820232391,0.521035134792328,0.841147303581238,0.524759650230408,0.844292044639587,0.509203195571899,0.837794959545136,0.51298850774765,0.836389720439911,0.517087757587433,0.837296187877655,0.532765805721283,0.85037636756897,0.528818428516388,0.844109714031219,0.524876117706299,0.837698757648468,0.521032571792603,0.835300981998444,0.509334802627563,0.834569215774536,0.528919696807861,0.840043365955353,0.532917737960815,0.847062051296234,0.513669610023499,0.833657681941986,0.517085254192352,0.833445012569427,0.532722771167755,0.84171450138092,0.520513534545898,0.826502323150635,0.528719663619995,0.834100782871246,0.517178893089294,0.828444361686707,0.513130247592926,0.831654906272888,0.532816410064697,0.8362757563591,0.536887884140015,0.843172907829285,0.524919152259827,0.823367714881897,0.509015798568726,0.832244873046875,0.536685287952423,0.838189959526062,0.5206578373909,0.819929301738739,0.516700387001038,0.823076546192169,0.532705008983612,0.83105480670929,0.528955161571503,0.820921838283539,0.513059377670288,0.829054594039917,0.536540985107422,0.833407044410706,0.517682790756226,\r\n0.820924341678619,0.525271117687225,0.816404759883881,0.514297485351563,0.824805915355682,0.508820831775665,0.830080032348633,0.541027665138245,0.834523677825928,0.517171323299408,0.818622827529907,0.52126806974411,0.815938889980316,0.513504981994629,0.820653438568115,0.513079643249512,0.822719573974609,0.536647319793701,0.828558325767517,0.532740473747253,0.819114029407501,0.529145061969757,0.813237249851227,0.511347770690918,0.827188491821289,0.517234623432159,0.816338956356049,0.520832538604736,0.812857449054718,0.511671841144562,0.824891984462738,0.536723256111145,0.821395337581635,0.540523767471313,0.829685032367706,0.52449631690979,0.812834680080414,0.517305493354797,0.814022183418274,0.540939033031464,0.823884248733521,0.53318864107132,0.81077367067337,0.536958754062653,0.81300687789917,0.525088846683502,0.808363199234009,0.521197140216827,0.810469806194305,0.541349232196808,0.812941014766693,0.545033276081085,0.829191267490387,0.529129862785339,0.808274567127228,0.521726369857788,0.808548033237457,0.545385181903839,0.814184248447418,0.544820547103882,0.822856247425079,0.529129862785339,0.805547654628754,0.536913156509399,0.808072030544281,0.524959683418274,0.805674254894257,0.545152246952057,0.806094527244568,0.529433727264404,0.802605450153351,0.541382133960724,0.804547488689423,0.520845234394073,0.806249022483826,0.548641324043274,0.81957483291626,0.549221158027649,0.808439195156097,0.52479761838913,0.802448511123657,0.53658401966095,0.802367448806763,0.549335062503815,0.813619613647461,0.544893980026245,0.798351764678955,0.549223661422729,0.800164639949799,0.525926887989044,0.799787402153015,0.529256463050842,0.800068438053131,0.536895453929901,0.799131572246552,0.553021669387817,0.813328444957733,0.541004836559296,0.796799659729004,0.553095102310181,0.806605994701386,0.53272020816803,0.799673438072205,0.544549643993378,0.793784081935883,0.553335607051849,0.800762176513672,0.537282824516296,0.796589493751526,0.532925307750702,0.795845091342926,0.536799252033234,0.793799221515656,0.765998065471649,0.908237278461456,\r\n0.764058589935303,0.908824682235718,0.763442039489746,0.904770970344543,0.632804393768311,0.899348735809326,0.632820844650269,0.891736328601837,0.635882019996643,0.897505462169647,0.635580718517303,0.901678144931793,0.635589599609375,0.903155565261841,0.517820775508881,0.906773746013641,0.517790377140045,0.89845871925354,0.517932176589966,0.890883028507233,0.91076672077179,0.916871309280396,0.910614788532257,0.91159462928772,0.91071605682373,0.913964569568634,0.828055679798126,0.895187437534332,0.827962040901184,0.898590385913849,0.825731337070465,0.898296713829041,0.826716303825378,0.902195930480957,0.925904154777527,0.905325472354889,0.926218092441559,0.901821196079254,0.927129626274109,0.907654881477356,0.705891370773315,0.905760943889618,0.705949604511261,0.909569084644318,0.70274156332016,0.907006680965424,0.696902811527252,0.909566521644592,0.693456768989563,0.909318387508392,0.695372223854065,0.905753374099731,0.651251196861267,0.909531116485596,0.65333878993988,0.906887710094452,0.653184354305267,0.910171687602997,0.636135220527649,0.906953513622284,0.636965751647949,0.909905850887299,0.634138762950897,0.909819722175598,0.832146108150482,0.91037929058075,0.829202711582184,0.909769117832184,0.831735908985138,0.906001508235931,0.794005572795868,0.900871694087982,0.791876196861267,0.900724828243256,0.793156147003174,0.897433280944824,0.79048490524292,0.897539615631104,0.791317880153656,0.893133997917175,0.805954039096832,0.899550020694733,0.806589543819427,0.902808666229248,0.804055035114288,0.902560532093048,0.803809463977814,0.899025917053223,0.80552738904953,0.895184874534607,0.801615476608276,0.9018794298172,0.790611505508423,0.90466970205307,0.791296362876892,0.908847451210022,0.788692235946655,0.90861701965332,0.677309095859528,0.894055604934692,0.67417699098587,0.892311096191406,0.678073704242706,0.891736328601837,0.674650490283966,0.895433008670807,0.670515775680542,0.894369602203369,0.672784388065338,0.897501647472382,0.669905543327332,0.897524416446686,0.672065317630768,0.901507258415222,0.626103520393372,\r\n0.900043725967407,0.626842856407166,0.903330266475677,0.624434947967529,0.903264462947845,0.623484194278717,0.900643825531006,0.623772859573364,0.896339476108551,0.621097803115845,0.899861454963684,0.619819164276123,0.896060943603516,0.621119320392609,0.891736328601837,0.670249879360199,0.909439921379089,0.667778670787811,0.905824244022369,0.670265078544617,0.906842112541199,0.755377650260925,0.893133997917175,0.758175492286682,0.901048958301544,0.75523841381073,0.898273885250092,0.916883945465088,0.911506056785584,0.920150220394135,0.914146900177002,0.916605472564697,0.91686624288559,0.560456812381744,0.909923553466797,0.560987293720245,0.894865870475769,0.563862323760986,0.899296820163727,0.505151987075806,0.894913971424103,0.504812717437744,0.890880525112152,0.508658766746521,0.895630538463593,0.508620798587799,0.902613699436188,0.504805088043213,0.90475070476532,0.511180639266968,0.911500990390778,0.583277583122253,0.902428865432739,0.580862045288086,0.894865870475769,0.586783111095428,0.901746511459351,0.585580408573151,0.90833854675293,0.698638498783112,0.898767650127411,0.695876121520996,0.898937284946442,0.69843590259552,0.893133997917175,0.696987628936768,0.901955425739288,0.57395988702774,0.894865870475769,0.569731473922729,0.908729732036591,0.570977210998535,0.9038125872612,0.678083837032318,0.908860087394714,0.676103830337524,0.908895552158356,0.676909029483795,0.905305206775665,0.628296196460724,0.907128214836121,0.625465452671051,0.910029888153076,0.626478254795074,0.907518148422241,0.927116990089417,0.914029181003571,0.925987720489502,0.91146045923233,0.928598165512085,0.916832089424133,0.823365211486816,0.906117975711823,0.823323428630829,0.910409688949585,0.82192325592041,0.909941256046295\r\n\t\t\t} \r\n\t\t\tUVIndex: *91014 {\r\n\t\t\t\ta: 12,7,3,1,3,7,12,3,11,0,3,1,1,7,4,11,3,6,11,25,12,6,3,0,0,1,2,4,7,13,2,1,4,17,11,6,25,11,35,0,9,6,5,0,2,8,4,13,2,4,8,17,26,11,18,17,6,11,26,35,25,35,46,0,5,9,18,6,9,5,2,10,14,2,8,26,17,36,31,17,18,49,35,26,35,59,46,15,9,5,15,18,9,10,2,14,16,5,10,14,8,22,17,31,36,26,36,48,31,18,15,49,59,35,26,48,49,46,59,75,5,23,15,10,14,24,5,16,23,16,10,24,14,22,30,31,41,36,48,36,63,31,15,41,49,78,59,77,49,48,78,75,59,32,15,23,14,30,24,16,33,23,34,16,24,22,40,30,41,55,36,63,36,55,48,63,76,32,41,15,78,49,96,77,95,49,48,94,77,78,111,75,42,32,23,30,43,24,16,34,33,23,33,44,34,24,45,39,40,22,40,54,30,41,32,55,63,55,70,63,70,76,48,76,94,96,49,95,117,78,96,95,77,115,94,116,77,117,111,78,42,55,32,23,44,42,30,56,43,45,24,43,57,33,34,57,44,33,58,34,45,40,39,67,40,69,54,54,56,30,70,55,42,76,70,114,94,76,114,96,95,140,142,117,96,115,77,116,95,115,139,116,94,141,117,160,111,42,44,71,56,72,43,45,43,72,57,34,58,73,44,57,74,58,45,67,85,40,85,69,40,86,54,69,54,87,56,42,71,70,70,106,114,94,114,138,140,95,139,142,96,140,167,117,142,115,116,165,139,115,165,141,94,166,7194,7195,7196,167,160,117,73,71,44,56,87,72,72,74,45,57,58,88,73,57,89,74,90,58,100,85,67,103,69,85,104,54,86,86,69,105,87,54,104,70,71,106,114,106,155,7331,7332,7333,7204,7201,7197,140,139,192,140,192,142,142,193,167,165,116,190,191,139,165,7194,7196,7197,211,160,167,73,107,71,87,108,72,74,72,108,88,58,90,88,89,57,73,89,109,74,110,90,100,103,85,103,128,69,104,86,129,128,105,69,86,105,130,104,131,87,107,106,71,154,155,106,138,155,154,7199,7197,7201,191,192,139,142,192,193,167,193,219,165,190,218,218,191,165,7194,7197,7198,167,219,211,73,109,107,87,131,108,74,108,132,133,88,90,88,134,89,135,109,89,74,136,110,110,133,90,100,147,103,147,128,103,129,86,130,104,129,151,105,128,152,105,153,130,104,151,131,154,106,107,138,154,232,7199,7198,7197,7201,7205,7199,192,191,243,245,193,192,219,193,246,218,190,242,191,218,244,190,273,242,268,211,219,156,107,109,108,131,132,74,132,136,157,88,133,157,134,88,135,89,134,158,109,135,136,159,110,133,110,159,100,176,147,128,147,152,129,\r\n130,179,129,179,151,152,180,105,153,105,181,153,179,130,151,182,131,156,154,107,206,232,154,7200,7198,7199,7203,7199,7205,274,243,191,192,243,245,245,246,193,219,246,275,218,242,244,274,191,244,242,273,302,268,219,275,183,156,109,184,132,131,184,136,132,133,159,157,157,185,134,134,186,135,183,109,158,158,135,187,188,159,136,176,100,148,176,152,147,202,151,179,180,152,203,180,181,105,153,181,204,153,204,179,182,151,205,131,182,184,206,154,156,261,232,206,7202,7198,7200,7199,7203,7200,7203,7205,7209,243,274,304,245,243,305,245,307,246,308,275,246,303,244,242,274,244,306,242,302,303,268,275,332,206,156,183,184,207,136,157,159,208,185,157,208,185,186,134,135,186,187,209,183,158,158,187,210,208,159,188,188,136,207,152,176,148,151,202,205,204,202,179,203,152,148,203,227,180,180,230,181,230,204,181,231,182,205,184,182,231,261,291,232,206,233,261,7202,7200,7206,7200,7203,7207,7203,7209,7210,304,274,338,243,304,305,245,305,307,307,308,246,275,308,340,303,306,244,274,306,339,303,302,371,275,340,332,206,183,233,184,234,207,235,185,208,185,236,186,187,186,236,209,233,183,158,210,209,237,210,187,238,208,188,188,207,234,205,202,256,204,257,202,227,203,148,258,180,227,230,180,259,230,257,204,256,231,205,260,184,231,7209,7219,7215,292,261,233,7200,7207,7206,7202,7206,7208,7207,7203,7210,7209,7215,7210,274,339,338,304,338,373,305,304,373,374,307,305,375,308,307,340,308,376,303,372,306,339,306,372,303,371,372,332,340,403,234,184,262,185,235,236,235,208,238,187,236,263,264,233,209,264,209,210,210,237,265,187,266,237,238,188,234,286,256,202,202,257,286,180,258,287,259,180,287,230,259,288,230,288,257,289,231,256,260,262,184,290,260,231,292,323,261,264,292,233,7207,7211,7206,7208,7206,7212,7213,7207,7210,7210,7215,7216,409,338,339,410,373,338,305,373,374,374,375,307,375,376,308,412,340,376,339,372,411,7212,7214,7208,403,340,412,234,262,293,294,236,235,238,295,235,263,236,296,266,187,263,264,210,265,265,237,297,266,298,237,299,238,234,317,256,286,257,317,286,258,318,287,319,259,287,288,259,319,257,288,320,289,290,231,321,289,256,262,260,\r\n293,260,290,322,323,292,329,264,329,292,7211,7207,7213,7211,7212,7206,7213,7210,7216,7215,7222,7216,409,447,338,339,411,409,410,448,373,449,410,338,450,374,373,451,375,374,376,375,453,453,412,376,411,372,452,7218,7214,7212,412,483,403,293,324,234,294,325,236,294,235,295,238,326,295,236,325,296,327,263,296,263,328,266,264,265,329,298,297,237,265,297,330,331,298,266,326,238,299,234,324,299,317,321,256,317,257,320,318,357,287,319,287,357,319,320,288,289,358,290,321,359,289,260,322,293,290,360,322,393,323,329,7211,7213,7217,7217,7212,7211,7220,7213,7216,7222,7220,7216,409,490,447,338,447,491,409,411,490,449,448,410,450,373,448,338,491,449,450,451,374,451,453,375,453,493,412,411,452,492,7218,7212,7217,412,493,483,324,293,322,294,361,325,362,294,295,363,295,326,361,296,325,263,327,364,296,361,327,328,263,364,266,328,331,330,329,265,298,365,297,330,297,366,331,367,298,326,299,368,324,368,299,388,321,317,317,320,388,318,389,357,319,357,390,320,319,391,358,289,359,358,360,290,388,359,321,360,392,322,330,393,329,7217,7213,7221,7213,7220,7221,7222,7226,7220,527,447,490,528,491,447,492,490,411,529,448,449,450,448,530,449,491,531,451,450,530,453,451,532,493,453,533,7218,7224,7228,7218,7217,7224,565,483,493,324,322,394,294,362,361,363,362,295,326,395,363,327,396,364,327,361,397,364,398,328,328,398,331,399,365,298,366,297,365,330,366,400,331,401,367,367,399,298,326,368,395,324,394,368,388,320,429,357,389,430,431,390,357,391,319,390,320,391,429,432,358,359,358,433,360,434,359,388,433,392,360,435,322,392,393,330,400,7221,7223,7217,7225,7221,7220,7220,7226,7225,527,528,447,574,527,490,528,575,491,574,490,492,530,448,529,449,576,529,491,575,531,449,531,576,451,530,532,533,453,532,577,493,533,7224,7231,7228,7223,7224,7217,566,483,565,565,493,607,435,394,322,362,397,361,436,362,363,437,363,395,396,327,438,396,439,364,397,438,327,364,439,398,440,331,398,399,441,365,366,365,442,7244,7238,7226,443,401,331,444,367,401,444,399,367,395,368,445,368,394,445,388,429,434,431,357,430,472,390,431,391,390,472,429,391,472,432,433,358,434,432,359,433,\r\n473,392,474,435,392,7227,7223,7221,7227,7221,7225,7233,7225,7226,610,528,527,574,611,527,612,575,528,7231,7236,7228,530,529,613,576,614,529,576,531,575,530,613,532,532,615,533,577,607,493,615,577,533,7231,7224,7230,7230,7224,7223,566,565,650,607,650,565,435,475,394,436,397,362,436,363,437,395,476,437,477,396,438,478,439,396,438,397,479,398,439,480,443,331,440,398,480,440,12627,12628,12629,442,365,441,7233,7226,7238,12630,12631,12632,12630,12634,12638,399,444,481,476,395,445,482,445,394,510,434,429,431,512,472,429,472,512,513,433,432,514,432,434,513,473,433,473,474,392,435,474,515,7223,7227,7229,7227,7225,7232,7225,7233,7237,612,528,610,527,611,610,7236,7240,7249,657,575,612,7240,7236,7231,613,529,658,576,659,614,658,529,614,576,575,660,615,532,613,577,661,607,661,577,615,7231,7230,7240,7230,7223,7235,651,566,650,607,689,650,516,475,435,482,394,475,436,479,397,437,479,436,476,479,437,396,477,478,517,477,438,439,478,518,519,438,479,480,439,520,12636,12633,12631,521,440,480,7256,7266,7252,442,441,522,7243,7233,7238,12633,12632,12631,12632,12634,12630,12638,12634,12641,12638,12641,12645,523,476,445,524,445,482,510,551,434,512,510,429,553,512,431,513,432,554,514,555,432,514,434,551,556,473,513,473,556,474,474,557,515,515,516,435,7227,7234,7229,7223,7229,7235,7225,7237,7232,7227,7232,7234,7243,7237,7233,612,610,694,695,610,611,7240,7247,7249,657,660,575,612,696,657,613,658,697,660,659,576,659,658,614,613,697,615,661,689,607,698,661,615,7240,7230,7247,7230,7235,7241,650,733,651,650,689,734,516,558,475,482,475,559,476,560,479,518,478,477,477,517,561,517,438,519,518,562,439,560,519,479,439,562,520,521,480,520,521,563,440,7252,7266,7264,7243,7256,7252,12633,12635,12632,12632,12637,12634,12640,12641,12634,7282,7264,7266,523,564,476,524,523,445,482,559,524,551,510,594,512,595,510,553,595,512,552,553,431,555,554,432,597,513,554,514,551,555,597,556,513,557,474,556,515,557,598,515,599,516,7239,7229,7234,7239,7235,7229,7237,7242,7232,7242,7234,7232,7243,7252,7237,695,694,610,694,738,612,7269,7279,7249,7247,7261,7249,660,657,739,696,\r\n612,740,739,657,696,658,741,697,660,742,659,658,659,743,698,615,697,661,744,689,745,661,698,7247,7230,7241,7235,7248,7241,733,650,734,734,689,744,558,516,599,475,558,559,476,564,560,477,600,518,561,517,601,477,561,600,601,517,519,602,562,518,601,519,560,520,562,603,520,604,521,12639,12635,12633,7252,7264,7250,12637,12632,12635,12637,12640,12634,7282,7291,7271,7271,7264,7282,605,564,523,523,524,606,559,606,524,594,510,595,638,551,594,640,595,553,552,639,553,597,554,555,555,551,638,597,641,556,557,556,642,642,598,557,598,599,515,7239,7234,7245,7239,7246,7235,7250,7242,7237,7251,7234,7242,7252,7250,7237,695,738,694,740,612,738,7269,7287,7279,7269,7249,7261,7261,7247,7254,660,739,742,13792,13793,13794,777,739,696,658,743,741,741,778,697,779,659,742,779,743,659,698,697,778,661,780,744,661,745,780,698,781,745,7247,7241,7254,7246,7248,7235,7248,7254,7241,813,733,734,744,813,734,558,599,643,559,558,644,564,601,560,602,518,600,601,645,561,600,561,646,602,647,562,12653,12677,12669,12653,12646,12660,12646,12642,12639,12639,12642,12635,7264,7271,7250,12637,12635,12643,12640,12637,12644,12663,12640,12658,605,648,564,523,649,605,523,606,649,559,644,606,595,677,594,638,594,678,640,680,595,639,640,553,597,555,638,681,641,597,641,682,556,642,556,682,683,598,642,684,599,598,7245,7234,7251,7245,7253,7239,7253,7246,7239,7250,7255,7242,7242,7255,7251,7304,7287,7288,7269,7288,7287,7261,7254,7269,739,820,742,13793,13795,13794,13792,13794,13796,777,820,739,821,741,743,778,741,822,779,742,823,779,821,743,778,781,698,780,824,744,745,825,780,825,745,781,7246,7260,7248,7248,7262,7254,733,813,856,857,813,744,684,643,599,644,558,643,564,685,601,602,600,686,685,645,601,646,561,645,600,646,686,647,602,686,687,562,647,12669,12664,12653,12653,12649,12646,12646,12649,12642,12642,12647,12635,7263,7250,7271,12635,12647,12643,12637,12643,12644,12640,12644,12648,12658,12640,12652,7263,7271,7280,648,605,649,685,564,648,688,649,606,644,688,606,680,677,595,594,677,718,594,718,678,719,638,678,640,721,680,640,639,720,597,638,719,719,641,681,719,681,597,641,\r\n722,682,642,682,722,723,598,683,724,683,642,684,598,723,7245,7251,7257,7258,7253,7245,7253,7259,7246,7250,7263,7255,7255,7265,7251,7288,7298,7304,7270,7288,7269,7270,7269,7254,862,742,820,13793,13797,13795,13794,13795,13798,13796,13794,13798,13796,13801,13804,821,822,741,778,822,863,823,742,862,823,864,779,779,865,821,778,863,781,780,866,824,857,744,824,866,780,825,867,825,781,7246,7268,7260,7262,7248,7260,7262,7270,7254,897,856,813,857,897,813,684,725,643,644,643,725,685,726,645,727,646,645,646,728,686,12684,12704,12694,12669,12684,12676,12669,12676,12664,12659,12653,12664,12659,12649,12653,12654,12642,12649,12647,12642,12650,12643,12647,12651,12643,12651,12644,12648,12644,12651,12640,12648,12652,7289,7280,7299,7289,7263,7280,648,649,729,685,648,730,688,731,649,644,732,688,718,677,680,678,718,764,719,678,765,640,766,721,680,721,768,720,766,640,765,641,719,722,641,769,642,722,724,683,770,723,724,770,683,723,771,684,7251,7265,7257,7245,7257,7258,7267,7253,7258,7267,7259,7253,7268,7246,7259,7255,7263,7272,7255,7272,7265,7278,7298,7288,7270,7278,7288,13808,13804,13801,13799,13795,13797,13798,13795,13800,13796,13798,13801,821,865,822,822,904,863,823,862,864,779,864,905,779,905,865,781,863,867,857,824,866,825,906,866,825,867,907,7260,7268,7277,7260,7278,7262,7262,7278,7270,897,943,856,944,897,857,684,772,725,732,644,725,685,730,726,645,726,727,646,727,728,12715,12694,12704,12694,12676,12684,12676,12685,12664,12670,12659,12664,12649,12659,12654,12642,12654,12650,12647,12650,12655,12647,12655,12651,12648,12651,12656,12652,12648,12657,7299,7305,7289,7281,7263,7289,729,649,731,730,648,729,732,731,688,718,680,764,678,764,765,721,766,799,801,768,721,768,764,680,720,799,766,765,802,641,802,769,641,803,722,769,724,722,803,804,723,770,724,805,770,723,804,771,771,772,684,7257,7265,7273,7257,7273,7258,7258,7274,7267,7275,7259,7267,7268,7259,7276,7263,7281,7272,7283,7265,7272,7297,7298,7278,13808,13801,13813,13800,13795,13799,13802,13799,13797,13798,13800,13803,13801,13798,13803,822,865,904,904,950,863,864,862,951,952,905,864,953,\r\n865,905,867,863,950,944,857,866,825,954,906,944,866,906,950,907,867,954,825,907,13952,13953,13954,7286,7260,7277,7286,7278,7260,943,897,944,945,856,943,725,772,806,732,725,807,730,808,726,727,726,809,12753,12742,12715,12715,12714,12694,12694,12695,12676,12676,12695,12685,12664,12685,12687,12670,12671,12659,12678,12670,12664,12665,12654,12659,12650,12654,12661,12655,12650,12661,12651,12655,12662,12662,12656,12651,12648,12656,12657,7300,7289,7305,7289,7300,7281,729,731,810,811,730,729,732,812,731,764,802,765,801,721,799,801,845,768,768,846,764,720,800,799,847,769,802,803,769,847,848,724,803,804,770,849,805,724,848,805,850,770,804,851,771,771,851,772,7284,7273,7265,7273,7274,7258,7285,7267,7274,7275,7276,7259,7275,7267,7285,7272,7281,7290,7284,7265,7283,7272,7292,7283,7286,7297,7278,13812,13813,13801,13800,13799,13805,13805,13799,13802,13803,13800,13806,13801,13803,13807,953,904,865,904,984,950,864,951,952,952,953,905,954,985,906,986,944,906,950,987,907,988,954,907,7277,7276,7296,7277,7296,7286,943,944,1017,945,943,1018,806,772,852,807,725,806,807,853,732,730,811,808,809,726,808,727,809,854,727,854,892,12742,12714,12715,12695,12694,12714,12705,12685,12695,12687,12685,12705,12664,12687,12678,12686,12671,12670,12665,12659,12671,12678,12686,12670,12654,12665,12666,12654,12666,12661,12655,12661,12667,12667,12662,12655,12668,12656,12662,12668,12657,12656,12675,12657,12668,7301,7281,7300,812,810,731,855,729,810,811,729,855,853,812,732,802,764,846,801,799,800,801,886,845,845,846,768,887,847,802,803,847,888,888,848,803,770,850,849,851,804,849,805,848,889,850,805,889,851,890,772,7293,7273,7284,7294,7274,7273,7274,7295,7285,7275,7285,7276,7301,7290,7281,7292,7272,7290,7283,7292,7284,13815,13802,13817,13821,13813,13812,13812,13801,13807,13806,13800,13805,13805,13802,13809,13810,13803,13806,13811,13807,13803,984,904,953,1024,950,984,951,1025,952,952,1026,953,988,985,954,985,986,906,1017,944,986,987,950,1027,907,987,1028,988,907,1028,7296,7276,7303,13815,13817,13824,943,1017,1018,890,852,772,807,806,852,853,807,852,808,811,891,854,\r\n809,808,854,940,892,12742,12752,12714,12714,12705,12695,12705,12716,12687,12678,12687,12696,12686,12679,12671,12679,12665,12671,12696,12686,12678,12679,12666,12665,12667,12674,12662,12668,12662,12674,12668,12683,12675,7313,7301,7300,812,893,810,810,894,855,895,811,855,896,812,853,802,846,930,885,801,800,801,885,886,845,886,931,846,845,930,887,932,847,887,802,930,888,847,933,888,934,848,935,849,850,936,851,849,889,848,934,889,937,850,936,890,851,7293,7294,7273,7293,7284,7292,7274,7294,7295,7285,7295,7302,7303,7276,7285,7290,7301,7306,7292,7290,7307,13815,13809,13802,951,1059,1025,13822,13821,13812,13816,13812,13807,13814,13806,13805,13805,13809,13814,13811,13803,13810,13814,13810,13806,13811,13816,13807,1026,984,953,950,1024,1027,1024,984,1058,1025,1026,952,985,988,1060,987,1027,1063,1028,987,1064,1065,988,1028,13834,13824,13837,13828,13815,13824,890,938,852,852,938,853,891,811,895,891,939,808,939,854,808,854,939,940,12766,12752,12742,12752,12743,12714,12705,12714,12729,12705,12730,12716,12687,12716,12707,12696,12687,12707,12679,12686,12697,12696,12706,12686,12666,12679,12688,12668,12674,12683,12693,12675,12683,7313,7317,7301,896,893,812,893,941,810,810,941,894,894,942,855,895,855,942,896,853,938,886,885,929,969,931,886,931,930,845,887,930,932,933,847,932,888,933,970,934,888,970,935,936,849,850,937,935,889,934,971,889,971,937,890,936,972,7294,7293,7308,7309,7293,7292,7294,7310,7295,7311,7302,7295,7285,7302,7312,7303,7285,7312,2188,2180,2159,7306,7314,7290,7290,7314,7307,7309,7292,7307,13815,13814,13809,1025,1059,1106,13822,13833,13821,13816,13822,13812,13811,13810,13818,13814,13819,13810,13816,13811,13820,984,1026,1058,1024,1104,1027,1024,1058,1105,1106,1026,1025,1065,1060,988,1107,985,1060,1063,1027,1112,987,1063,1064,1064,1113,1028,1065,1028,1113,13834,13828,13824,13837,13840,13834,13823,13815,13828,890,972,938,891,895,973,891,974,939,12778,12752,12766,12752,12767,12743,12714,12743,12729,12744,12705,12729,12744,12730,12705,12730,12732,12716,12716,12732,12707,12696,12707,12717,12706,12697,12686,12697,12688,12679,12696,\r\n12717,12706,12683,12674,12692,12683,12692,12693,2168,2190,2179,2180,2168,2159,893,896,975,893,975,941,941,976,894,976,942,894,895,942,977,978,896,938,1007,886,929,969,1008,931,969,886,1007,1009,930,931,1009,932,930,933,932,1010,970,933,1010,934,970,1011,1012,936,935,1013,935,937,1011,971,934,1014,937,971,936,1012,972,7309,7308,7293,7294,7308,7310,7295,7310,7311,7302,7311,7315,7312,7302,7316,13837,13847,13840,2159,2176,2188,7318,7307,7314,7309,7307,7318,13823,13814,13815,1147,1106,1059,1274,1232,1147,13816,13827,13822,13818,13810,13825,13820,13811,13818,13823,13819,13814,13819,13825,13810,13816,13820,13826,1144,1058,1026,1104,1024,1145,1104,1112,1027,1058,1146,1105,1105,1145,1024,1144,1026,1106,1065,1148,1060,1107,1060,1148,1112,1064,1063,1149,1113,1064,1150,1065,1113,13823,13828,13834,13830,13834,13840,978,938,972,895,977,973,1015,891,973,1015,974,891,12778,12792,12767,12778,12767,12752,12768,12743,12767,12743,12754,12729,12744,12729,12754,12744,12755,12730,12756,12732,12730,12707,12732,12733,12707,12733,12717,12697,12706,12708,12697,12708,12688,12731,12706,12717,12693,12692,12713,12693,12713,12728,2168,2179,2154,2159,2168,2154,896,1016,975,941,975,976,976,977,942,1016,896,978,1005,1007,929,969,1007,1008,1043,931,1008,1043,1009,931,1009,1044,932,932,1044,1010,1010,1011,970,1012,935,1045,1045,935,1013,937,1046,1013,1011,1014,971,1014,1046,937,1012,1047,972,7319,7308,7309,7308,7320,7310,7310,7321,7311,7311,7321,7315,7302,7315,7316,2159,2166,2176,7318,7314,7322,7319,7309,7318,1106,1147,1187,1187,1147,1232,1385,1351,1232,13818,13825,13829,13820,13818,13829,13823,13830,13819,13819,13831,13825,13826,13820,13832,1058,1144,1146,1104,1145,1184,1184,1112,1104,1185,1105,1146,1145,1105,1186,1106,1187,1144,1188,1148,1065,1112,1149,1064,1113,1149,1150,1065,1150,1188,13830,13823,13834,13843,13830,13840,1047,978,972,1048,973,977,1048,1015,973,1049,974,1015,12808,12767,12792,12743,12768,12754,12768,12767,12793,12755,12744,12754,12756,12730,12755,12769,12732,12756,12733,12732,12758,12731,12717,12733,12706,12734,12708,12731,12734,12706,\r\n2154,2150,2159,975,1016,976,976,1050,977,1016,978,1051,1005,1080,1007,1080,1008,1007,1043,1008,1083,1043,1084,1009,1044,1009,1084,1010,1044,1085,1010,1085,1011,1086,1012,1045,1045,1013,1087,1046,1087,1013,1014,1011,1088,1014,1089,1046,1012,1090,1047,7319,7320,7308,7323,7310,7320,7310,7323,7321,7321,7324,7315,13840,13856,13850,2159,2153,2166,2166,2158,2177,2158,2175,2177,1275,1187,1232,1232,1351,1313,13831,13829,13825,13820,13829,13832,13835,13819,13830,13836,13831,13819,1313,1351,1386,1144,1228,1146,1145,1229,1184,1229,1112,1184,1105,1185,1230,1228,1185,1146,1186,1105,1230,1186,1231,1145,1144,1187,1228,1229,1149,1112,1235,1150,1149,1188,1150,1235,13843,13841,13830,13840,13850,13843,1047,1091,978,977,1092,1048,1093,1015,1048,12792,12819,12808,12819,12863,12845,12793,12767,12808,12779,12754,12768,12794,12768,12793,12780,12755,12754,12755,12781,12756,12732,12769,12758,12769,12756,12781,12731,12733,12758,12757,12734,12731,2154,2148,2150,2159,2150,2153,976,1016,1051,976,1051,1050,1050,1092,977,1091,1051,978,1080,1005,1079,1128,1008,1080,1083,1008,1128,1043,1083,1084,1044,1084,1129,1085,1044,1129,1130,1011,1085,1086,1131,1012,1086,1045,1132,1045,1087,1132,1133,1087,1046,1011,1130,1088,1014,1088,1089,1133,1046,1089,1012,1131,1090,1134,1047,1090,7320,7319,7325,7326,7323,7320,7324,7321,7323,13860,13856,13866,13850,13856,13860,2166,2153,2158,2165,2175,2158,1275,1228,1187,1313,1275,1232,13829,13831,13838,13832,13829,13839,13836,13819,13835,13835,13830,13841,13836,13838,13831,13842,13849,13832,1229,1145,1231,1185,1270,1230,1185,1228,1271,1272,1186,1230,1186,1273,1231,1229,1279,1149,1279,1235,1149,13851,13841,13843,13850,13851,13843,1091,1047,1134,1048,1092,1135,1093,1136,1015,1135,1093,1048,12820,12808,12819,12819,12845,12820,12793,12808,12820,12779,12780,12754,12779,12768,12794,12794,12793,12821,12755,12780,12795,12755,12796,12781,12782,12758,12769,12797,12769,12781,12757,12731,12758,12757,12761,12734,2147,2150,2148,2153,2150,2147,1051,1137,1050,1092,1050,1138,1051,1091,1137,1080,1079,1164,1080,1164,1128,1167,1083,1128,1084,\r\n1083,1167,1084,1167,1129,1168,1085,1129,1130,1085,1168,1086,1169,1131,1086,1132,1170,1132,1087,1133,1168,1088,1130,1089,1088,1171,1172,1133,1089,1173,1090,1131,1174,1134,1090,7327,7325,7319,7320,7325,7326,7326,7328,7323,7328,7324,7323,13872,13860,13866,13850,13860,13861,2158,2153,2147,2165,2158,2152,1228,1275,1271,13842,13855,13849,13829,13838,13839,13832,13839,13842,13836,13835,13844,13835,13841,13845,13846,13838,13836,1311,1229,1231,1270,1185,1271,1272,1230,1270,1272,1312,1186,1312,1273,1186,1273,1311,1231,1311,1279,1229,1318,1235,1279,13851,13852,13841,13850,13861,13851,1137,1091,1134,1092,1138,1135,12876,12845,12897,1175,1093,1135,12846,12820,12845,12820,12833,12793,12779,12809,12780,12779,12794,12809,12793,12833,12821,12794,12821,12834,12809,12795,12780,12796,12755,12795,12796,12797,12781,12758,12782,12761,12798,12782,12769,12798,12769,12797,12757,12758,12761,2147,2148,2149,1137,1138,1050,1163,1164,1079,1128,1164,1209,1128,1209,1167,1210,1129,1167,1168,1129,1211,1212,1169,1086,1131,1169,1173,1170,1132,1213,1170,1212,1086,1132,1133,1214,1168,1215,1088,1088,1215,1171,1171,1172,1089,1172,1216,1133,1174,1090,1173,1174,1138,1134,2165,2164,2187,7326,7325,7329,13891,13880,13884,13880,13866,13884,13860,13872,13873,13880,13872,13866,13873,13861,13860,2158,2147,2152,2165,2152,2164,13854,13865,13855,13842,13854,13855,13846,13839,13838,13848,13842,13839,13835,13845,13844,13836,13844,13846,13845,13841,13852,13878,13865,13870,13882,13889,13878,13896,13905,13889,13912,13919,13905,13926,13932,13919,1311,1318,1279,13851,13862,13852,13851,13861,13862,1137,1134,1138,1217,1135,1138,12845,12876,12846,7387,7396,7371,1175,1135,1218,12846,12833,12820,12822,12809,12794,12821,12833,12847,12834,12821,12848,12834,12822,12794,12809,12822,12795,12823,12796,12795,12796,12823,12797,12785,12761,12782,12782,12798,12785,12824,12798,12797,2151,2149,2148,2149,2152,2147,1251,1164,1163,1251,1209,1164,1167,1209,1254,1129,1210,1211,1167,1255,1210,1168,1211,1256,1212,1257,1169,1169,1258,1173,1213,1132,1214,1170,1213,1212,1259,1214,1133,1168,1256,1215,\r\n1215,1260,1171,1171,1216,1172,1259,1133,1216,1174,1173,1261,1217,1138,1174,7326,7329,7330,13880,13891,13899,13872,13883,13873,13880,13883,13872,13873,13874,13861,2157,2164,2152,13865,13854,13870,13842,13848,13854,13853,13839,13846,13853,13848,13839,13852,13844,13845,13846,13844,13857,13882,13878,13870,13889,13882,13896,13912,13905,13896,13926,13919,13912,10351,10366,10377,10338,10366,10351,13852,13862,13868,13862,13861,13874,1218,1135,1217,12876,12877,12846,7370,7387,7371,1262,1175,1218,12846,12864,12833,12847,12833,12865,12848,12821,12847,12834,12848,12866,12849,12822,12834,12822,12835,12795,12835,12823,12795,12836,12797,12823,12813,12785,12798,12824,12813,12798,12797,12836,12824,2151,2155,2149,2149,2157,2152,1250,1251,1163,1251,1254,1209,1255,1167,1254,1211,1210,1297,1255,1297,1210,1211,1297,1256,1212,1298,1257,1169,1257,1258,1173,1258,1261,1214,1299,1213,1213,1300,1212,1259,1299,1214,1256,1260,1215,1171,1260,1216,1259,1216,1301,1261,1302,1174,1302,1217,1174,2174,2186,2164,13880,13899,13897,13874,13873,13883,13883,13880,13890,2174,2164,2157,13869,13870,13854,13848,13858,13854,13846,13857,13853,13859,13848,13853,13852,13857,13844,13870,13869,13882,13895,13896,13882,13912,13896,13911,10378,10377,10400,10352,10351,10377,10338,10351,10324,13862,13875,13868,13852,13868,13867,13862,13874,13875,1218,1217,1302,7387,7370,7388,12846,12877,12864,7355,7370,7371,7355,7371,7362,1218,1303,1262,12865,12833,12864,12865,12878,12847,12847,12879,12848,12880,12866,12848,12834,12866,12867,12822,12849,12835,12849,12834,12867,12836,12823,12835,12824,12850,12813,12836,12851,12824,2155,2162,2149,2149,2163,2157,1250,1296,1251,1250,1163,1206,1254,1251,1296,1255,1254,1336,1255,1337,1297,1297,1260,1256,1212,1338,1298,1298,1339,1257,1340,1258,1257,1261,1258,1340,1213,1299,1300,1338,1212,1300,1259,1341,1299,1216,1260,1342,1343,1301,1216,1259,1301,1341,1261,1344,1302,2174,2173,2186,2205,2186,2173,13897,13890,13880,13892,13874,13883,13883,13890,13898,2174,2157,2173,13864,13869,13854,13858,13848,13863,13858,13864,13854,13859,13853,13857,13848,13859,\r\n13863,13852,13867,13857,13881,13882,13869,13895,13911,13896,13881,13895,13882,13925,13912,13911,10352,10377,10378,10324,10351,10352,13876,13868,13875,13876,13867,13868,13875,13874,13885,1302,1303,1218,7370,7378,7388,12864,12877,12898,7370,7355,7361,7349,7355,7362,12865,12864,12898,12878,12865,12898,12847,12878,12879,12880,12848,12879,12880,12867,12866,12835,12849,12868,12849,12867,12881,12836,12835,12851,12824,12839,12850,12850,12839,12813,12824,12851,12839,2162,2155,2170,2149,2162,2163,2163,2173,2157,1250,1206,1296,1254,1296,1370,1254,1371,1336,1336,1337,1255,1337,1260,1297,1298,1338,1372,1298,1372,1339,1339,1340,1257,1261,1340,1373,1299,1374,1300,1300,1375,1338,1299,1341,1374,1337,1342,1260,1216,1342,1343,1343,1341,1301,1344,1261,1373,1344,1376,1302,2205,2173,2203,13897,13906,13890,13885,13874,13892,13892,13883,13898,13906,13898,13890,13869,13864,13877,13863,13864,13858,13859,13857,13867,13871,13863,13859,13877,13881,13869,13918,13911,13895,13881,13894,13895,13918,13925,13911,10352,10378,10353,10324,10352,10337,13886,13876,13875,13876,13859,13867,13875,13885,13893,1303,1302,1376,7370,7361,7378,7397,7388,7378,7407,7388,7397,7348,7361,7355,7355,7349,7346,7394,7428,7407,12878,12914,12879,12880,12879,12915,12880,12915,12867,12849,12881,12868,12835,12868,12882,12881,12867,12899,12851,12835,12882,12851,12883,12839,2170,2183,2162,2183,2163,2162,2163,2185,2173,1295,1296,1206,1296,1366,1370,1370,1371,1254,1371,1404,1336,1336,1405,1337,1406,1372,1338,1407,1339,1372,1339,1408,1340,1408,1373,1340,1300,1374,1409,1300,1409,1375,1338,1375,1406,1374,1341,1410,1405,1342,1337,1342,1411,1343,1343,1410,1341,7334,7335,7336,7334,7336,7338,2196,2203,2173,2205,2203,2218,13885,13892,13900,13898,13900,13892,13906,13913,13898,13863,13877,13864,13879,13863,13871,13859,13876,13871,13888,13881,13877,13918,13895,13910,13888,13894,13881,13894,13910,13895,10353,10378,10381,10337,10352,10353,13876,13886,13879,13886,13875,13893,13885,13901,13893,7349,7338,7346,7378,7361,7369,7394,7397,7378,7394,7407,7397,7348,7369,7361,7355,7346,7348,7415,7428,7394,\r\n12934,12914,12878,12914,12915,12879,12899,12867,12915,12868,12881,12899,12868,12900,12882,12851,12882,12883,2183,2170,2193,2183,2185,2163,2196,2173,2185,1295,1366,1296,1370,1366,1371,1429,1404,1371,1405,1336,1404,1406,1430,1372,1407,1431,1339,1372,1432,1407,1339,1431,1408,7339,7337,7335,1409,1374,1433,1375,1409,1434,1375,1435,1406,1374,1410,1436,1405,1411,1342,1437,1343,1411,1438,1410,1343,7335,7337,7336,7336,7341,7338,2196,2213,2203,2203,2225,2218,13885,13900,13901,13898,13913,13900,13877,13863,13879,13876,13879,13871,13877,13887,13888,13918,13910,13924,13888,13904,13894,13910,13894,13904,10353,10381,10367,10337,10353,10325,13879,13886,13887,13893,13902,13886,13901,13907,13893,7338,7343,7346,7369,7360,7378,7394,7378,7379,7369,7348,7360,7343,7348,7346,7415,7394,7405,12946,12914,12934,12914,12947,12915,12899,12915,12935,12868,12899,12916,12868,12917,12900,12883,12882,12900,2183,2193,2202,2183,2202,2185,2196,2185,2204,1366,1295,1369,1366,1429,1371,1404,1429,1457,1404,1457,1405,1406,1435,1430,1430,1432,1372,7352,7384,7375,1407,1432,1458,1431,1459,1408,7339,7342,7337,1436,1433,1374,1434,1409,1433,1375,1434,1435,1410,1438,1436,1457,1411,1405,1438,1343,1437,1457,1437,1411,7337,7340,7336,7336,7340,7341,7343,7338,7341,2213,2196,2204,2213,2217,2203,2203,2217,2225,13901,13900,13914,13900,13913,13920,13877,13879,13887,13888,13887,13903,13924,13910,13917,13903,13904,13888,13917,13910,13904,10367,10339,10353,10353,10339,10325,13887,13886,13902,13893,13907,13902,13915,13907,13901,7360,7379,7378,7394,7379,7405,7360,7348,7354,7343,7354,7348,7429,7415,7405,12962,12914,12946,12963,12946,12934,12962,12947,12914,12947,12935,12915,12916,12899,12935,12916,12917,12868,2211,2202,2193,2185,2202,2204,1295,1335,1369,1366,1369,1403,1366,1403,1429,1429,1481,1457,1482,1430,1435,1430,1482,1432,1483,1459,1431,7375,7366,7352,1482,1458,1432,7337,7342,7340,1436,1484,1433,1485,1434,1433,1434,1485,1435,1438,1486,1436,1438,1437,1487,1457,1488,1437,7340,7345,7341,7343,7341,7345,2213,2204,2216,2224,2217,2213,2224,2225,2217,13920,13914,13900,13901,13914,\r\n13915,2224,2234,2225,13903,13887,13909,13931,13924,13917,13916,13904,13903,13923,13917,13904,10367,10354,10339,10339,10313,10325,13887,13902,13908,13908,13902,13907,13907,13915,13921,7360,7364,7379,7395,7405,7379,7354,7364,7360,7343,7350,7354,7415,7429,7440,7405,7416,7429,12962,12946,12963,12979,12947,12962,12947,12964,12935,12935,12948,12916,12916,12948,12917,2202,2211,2216,2204,2202,2216,1335,1403,1369,1403,1456,1429,1456,1481,1429,1457,1481,1488,1509,1482,1435,7347,7342,7352,7352,7366,7358,7385,7376,7366,7344,7340,7342,1436,1510,1484,1433,1484,1511,1485,1433,1511,1435,1485,1512,1486,1438,1487,1510,1436,1486,1437,1488,1487,7344,7345,7340,7343,7345,7350,2216,2226,2213,2224,2213,2229,13920,13927,13914,13927,13915,13914,2235,2234,2224,13887,13908,13909,13916,13903,13909,10354,10367,10380,13931,13917,13923,13916,13923,13904,10354,10313,10339,13907,13921,13908,13915,13928,13921,7364,7381,7379,7416,7405,7395,7379,7381,7395,7354,7350,7364,7450,7440,7429,7442,7429,7416,12992,12962,12963,12980,12947,12979,12992,12979,12962,12947,12980,12964,12948,12935,12964,2216,2211,2223,1335,1402,1403,1402,1456,1403,1456,1508,1481,1488,1481,1531,7392,7376,7385,1512,1509,1435,7342,7347,7344,7352,7358,7347,7376,7358,7366,1532,1484,1510,1484,1532,1511,1511,1512,1485,1486,1487,1533,1510,1486,1534,1488,1533,1487,7351,7345,7344,7345,7356,7350,2226,2216,2223,2229,2213,2226,2235,2224,2229,13928,13915,13927,13908,13922,13909,13922,13916,13909,10391,10354,10380,13923,13930,13931,13923,13916,13930,10354,10355,10313,13908,13921,13922,13928,13933,13921,7364,7363,7381,7406,7416,7395,7406,7395,7381,7364,7350,7363,13006,12992,12963,7451,7450,7429,7451,7429,7442,7442,7416,7441,12979,12992,12980,12980,12993,12964,2228,2223,2211,1402,1428,1456,1480,1508,1456,1508,1531,1481,1488,1531,1533,7392,7391,7376,1549,1509,1512,7353,7344,7347,7358,7353,7347,7376,7377,7358,1532,1510,1550,1532,1551,1511,1512,1511,1549,1534,1486,1533,1534,1550,1510,7345,7351,7356,7351,7344,7357,7350,7356,7363,2226,2223,2233,2229,2226,2236,2229,2241,2235,13927,13935,13928,13916,13922,\r\n13929,13945,13948,13939,13930,13939,13931,13930,13916,13934,10354,10379,10355,10340,10313,10355,13921,13933,13922,13928,13936,13933,7363,7380,7381,7406,7420,7416,7381,7399,7406,13020,12992,13006,13046,13034,13006,7420,7441,7416,7442,7441,7453,12993,12980,12992,12993,13007,12964,2228,2233,2223,1428,1480,1456,1530,1508,1480,1508,1530,1531,1531,1573,1533,7412,7391,7392,7376,7391,7377,1509,1549,1574,7344,7353,7359,7358,7368,7353,7358,7377,7368,1550,1575,1532,1551,1532,1575,1551,1549,1511,1573,1534,1533,1534,1576,1550,7351,7365,7356,7357,7344,7359,7351,7357,7365,7356,7372,7363,2233,2240,2226,2240,2236,2226,2229,2236,2241,13928,13935,13936,13929,13922,13933,13929,13934,13916,13945,13939,13938,13938,13939,13930,13934,13938,13930,13945,13944,13950,10355,10368,10340,13933,13936,13940,7363,7372,7380,7381,7380,7399,7406,7399,7420,13007,12992,13020,13006,13034,13020,7420,7432,7441,7441,7432,7453,13007,12993,12992,2232,2233,2228,1428,1479,1480,1548,1530,1480,1530,1571,1531,1531,1571,1573,7412,7423,7391,7392,7424,7412,7391,7402,7377,1590,1574,1549,7353,7367,7359,7368,7367,7353,7386,7368,7377,1576,1575,1550,1575,1590,1551,1590,1549,1551,1573,1591,1534,1591,1576,1534,7356,7365,7372,7357,7359,7373,7374,7365,7357,2244,2240,2233,2240,2245,2236,2236,2245,2241,13942,13936,13935,2255,2266,2272,13934,13929,13937,13945,13938,13944,13934,13941,13938,10355,10382,10368,2245,2255,2258,7380,7372,7382,7409,7399,7380,7432,7420,7399,7432,7445,7453,2232,2244,2233,1479,1529,1480,1548,1572,1530,1548,1480,1529,1530,1572,1571,1573,1571,1608,7412,7424,7423,7423,7413,7391,7391,7413,7402,7404,7377,7402,7424,7462,7454,7367,7373,7359,7386,7367,7368,7393,7386,7377,1575,1576,1609,1575,1609,1590,1591,1573,1608,1591,1610,1576,7365,7382,7372,7357,7373,7374,7374,7383,7365,2244,2247,2240,2240,2247,2245,2255,2259,2266,2259,2271,2266,2283,2288,2271,13938,13941,13944,13941,13934,13943,13944,13941,13947,2255,2245,2250,7380,7382,7398,7409,7419,7399,7408,7409,7380,7399,7419,7432,7432,7419,7445,2244,2232,2238,1547,1529,1479,1570,1572,1548,1570,1548,1529,1572,1607,1571,\r\n1607,1608,1571,7423,7424,7447,7423,7437,7413,7425,7402,7413,7393,7377,7404,7404,7402,7425,7454,7462,7469,7454,7447,7424,7367,7386,7373,7393,7403,7386,1609,1576,1610,1610,1591,1608,7365,7383,7382,7389,7374,7373,7390,7383,7374,2247,2244,2246,2250,2245,2247,2255,2250,2259,2271,2259,2270,2270,2283,2271,7400,7398,7382,7398,7408,7380,7431,7419,7409,7409,7408,7430,7431,7445,7419,2244,2238,2246,1529,1547,1569,1570,1606,1572,1529,1569,1570,1572,1606,1607,1634,1608,1607,7423,7447,7437,7438,7413,7437,7438,7425,7413,7403,7393,7404,7439,7404,7425,7469,7468,7454,7454,7461,7447,7389,7373,7386,7389,7386,7403,7469,7496,7486,1610,1608,1634,7382,7383,7400,7390,7374,7389,7383,7390,7401,2247,2246,2254,2250,2247,2254,2260,2259,2250,2270,2259,2260,2270,2279,2283,7400,7417,7398,7408,7398,7418,7431,7409,7444,7408,7418,7430,7430,7444,7409,1569,1547,1568,1570,1605,1606,1570,1569,1605,1606,1633,1607,1633,1634,1607,7447,7455,7437,7438,7437,7456,7439,7425,7438,7404,7427,7403,7404,7439,7427,7469,7486,7468,7468,7461,7454,7455,7447,7461,7414,7389,7403,7506,7486,7496,7401,7400,7383,7390,7389,7410,7401,7390,7411,2252,2254,2246,2250,2254,2260,2270,2260,2279,7421,7417,7400,7417,7418,7398,7418,7443,7430,13955,13956,13957,1568,1604,1569,1606,1605,1632,1605,1569,1604,1632,1633,1606,7507,7506,7523,7463,7437,7455,7456,7437,7463,7438,7456,7464,7439,7438,7449,7426,7403,7427,7449,7427,7439,7468,7486,7497,7461,7468,7478,7455,7461,7470,7414,7410,7389,7426,7414,7403,7506,7507,7486,7401,7421,7400,7410,7411,7390,7422,7401,7411,2252,2264,2254,2260,2254,2264,2260,2273,2279,3209,3214,3216,3214,3219,3224,3231,3237,3219,1604,1568,1603,7536,7545,7539,7551,7539,7545,7536,7530,7523,7530,7507,7523,7463,7455,7471,7456,7463,7472,7464,7456,7473,7449,7438,7464,7427,7449,7426,7507,7497,7486,7468,7497,7495,7485,7478,7468,7461,7478,7470,7471,7455,7470,7410,7414,7434,7426,7434,7414,7433,7421,7401,7411,7410,7435,3220,3212,3225,7422,7411,7436,2264,2252,2263,2273,2260,2264,3209,3211,3214,3212,3209,3216,3211,3219,3214,3231,3219,3218,1603,1568,1567,1622,1604,1603,7530,7536,7539,7539,7551,\r\n7548,7507,7530,7513,7472,7463,7471,7473,7456,7472,7464,7473,7449,7449,7458,7426,7507,7495,7497,7468,7495,7485,7478,7485,7487,7470,7478,7487,7470,7488,7471,7446,7410,7434,7448,7434,7426,7410,7446,7435,3253,3265,3245,3215,3212,3220,3245,3226,3253,3220,3226,3215,2264,2263,2277,2273,2264,2277,3209,3210,3211,3212,3210,3209,3211,3218,3219,1622,1603,1567,7551,7553,7548,7530,7539,7534,7548,7541,7539,7530,7534,7513,7507,7513,7495,7472,7471,7489,7473,7472,7490,7473,7479,7449,7449,7465,7458,7426,7458,7457,7505,7485,7495,7487,7485,7504,7487,7488,7470,7488,7489,7471,7446,7434,7448,7448,7426,7457,3265,3277,3245,3210,3212,3215,3245,3238,3226,3227,3215,3226,3210,3213,3211,3213,3218,3211,7550,7553,7559,7553,7540,7548,7534,7539,7541,7540,7541,7548,7531,7513,7534,7505,7495,7513,7472,7489,7490,7490,7479,7473,7491,7449,7479,7465,7449,7474,7465,7457,7458,7505,7511,7485,7485,7511,7504,7504,7512,7487,7487,7508,7488,18247,18248,18249,3299,3288,3277,3318,3299,3328,3264,3245,3277,3210,3215,3221,3252,3238,3245,3238,3227,3226,3227,3221,3215,3213,3210,3217,7540,7553,7550,7541,7531,7534,7540,7531,7541,7531,7522,7513,7522,7505,7513,7498,7490,7489,7490,7498,7479,3429,3408,3439,7498,7491,7479,7480,7474,7449,3334,3352,3347,3334,3318,3328,7520,7511,7505,7504,7511,7520,7512,7504,7521,7514,7487,7512,7487,7514,7508,7488,7508,7515,7489,7525,7526,7525,7488,7515,3299,3298,3288,3264,3277,3288,3318,3298,3299,3264,3252,3245,3217,3210,3221,3252,3244,3238,3227,3238,3244,3227,3232,3221,3217,3222,3213,7535,7531,7540,7531,7535,7522,7522,7520,7505,7498,7489,7516,3429,3422,3408,7499,7449,7509,3438,3422,3429,3372,3365,3352,7480,7449,7492,3359,3347,3352,3347,3341,3334,3318,3334,3317,7529,7504,7520,7521,7504,7529,3590,3561,3573,3542,3573,3543,7524,7508,7514,7508,7524,7515,7525,7515,7526,7526,7516,7489,3288,3298,3263,3264,3288,3263,3317,3298,3318,3263,3252,3264,3217,3221,3228,3263,3244,3252,3227,3244,3239,3232,3227,3239,3221,3232,3228,3217,3228,3222,7535,7532,7522,7522,7532,7520,3438,3451,3430,3415,3408,3422,7492,7449,7499,3390,3408,3402,3430,3422,3438,3365,3372,3375,3359,\r\n3352,3365,3372,3380,3375,3359,3338,3347,3347,3338,3341,3341,3317,3334,7520,7532,7529,7521,7529,7533,3561,3590,3589,3543,3573,3561,3543,3513,3542,3529,3542,3513,3498,3512,3529,3498,3472,3512,3472,3450,3451,3298,3287,3263,3310,3298,3317,3244,3263,3267,3254,3239,3244,3232,3239,3240,3228,3232,3240,3228,3233,3222,3430,3451,3450,3415,3402,3408,3430,3415,3422,3385,3380,3390,3395,3390,3402,3369,3365,3375,3359,3365,3369,3385,3375,3380,3356,3338,3359,3341,3338,3317,3589,3590,3620,3561,3589,3560,3530,3543,3561,3543,3530,3513,3513,3498,3529,3473,3472,3498,3450,3472,3473,3310,3287,3298,3267,3263,3287,3310,3317,3322,3254,3244,3267,3254,3266,3239,3255,3240,3239,3228,3240,3233,3233,3234,3222,3430,3450,3431,3415,3409,3402,3431,3415,3430,3385,3390,3395,3402,3409,3395,3369,3375,3379,3369,3356,3359,3385,3379,3375,3348,3338,3356,3338,3330,3317,3562,3560,3589,3560,3530,3561,3530,3499,3513,3513,3473,3498,3450,3473,3452,3310,3301,3287,3287,3278,3267,3322,3317,3330,3310,3322,3301,3254,3267,3278,3266,3254,3278,3255,3239,3266,3240,3255,3246,3233,3240,3246,3233,3247,3234,3431,3450,3452,3409,3415,3414,3431,3414,3415,3385,3395,3389,3401,3395,3409,3379,3370,3369,3369,3370,3356,3379,3385,3389,3348,3342,3338,3364,3348,3356,3321,3330,3338,3562,3532,3560,3560,3531,3530,3531,3499,3530,3473,3513,3499,3474,3452,3473,3278,3287,3301,3330,3301,3322,3266,3278,3289,3255,3266,3279,3255,3268,3246,3233,3246,3247,3256,3234,3247,3452,3437,3431,3414,3401,3409,3431,3437,3414,3401,3389,3395,3383,3370,3379,3356,3370,3364,3383,3379,3389,3342,3348,3335,3342,3321,3338,3348,3364,3360,3330,3321,3301,3532,3531,3560,3500,3499,3531,3473,3499,3474,3474,3461,3452,3300,3278,3301,3300,3289,3278,3266,3289,3279,3280,3255,3279,3280,3268,3255,3268,3247,3246,3269,3256,3247,3452,3461,3437,3414,3407,3401,3437,3428,3414,3401,3394,3389,3376,3370,3383,3360,3364,3370,3394,3383,3389,3353,3335,3348,3321,3342,3335,3360,3353,3348,3300,3301,3321,3532,3500,3531,3500,3474,3499,3484,3461,3474,3300,3311,3289,3302,3279,3289,3280,3279,3303,3280,3290,3268,3268,3269,3247,3269,3271,3256,3449,3437,3461,\r\n3417,3407,3414,3407,3394,3401,3449,3428,3437,3417,3414,3428,3360,3370,3376,3376,3383,3386,3392,3383,3394,3353,3349,3335,3319,3321,3335,3360,3366,3353,3300,3321,3319,3500,3532,3514,3500,3484,3474,3484,3462,3461,3311,3300,3319,3320,3289,3311,3302,3303,3279,3312,3302,3289,3280,3303,3304,3304,3290,3280,3290,3291,3268,3269,3268,3291,3269,3292,3271,3461,3462,3449,3417,3398,3407,3398,3394,3407,3442,3428,3449,3416,3417,3428,3376,3373,3360,3392,3386,3383,3376,3386,3382,3392,3394,3398,3353,3354,3349,3335,3349,3336,3319,3335,3336,3373,3366,3360,3354,3353,3366,3484,3500,3514,3462,3484,3485,3311,3319,3329,3320,3312,3289,3329,3320,3311,3302,3323,3303,3312,3324,3302,3323,3304,3303,3304,3313,3290,3314,3291,3290,3291,3292,3269,3293,3271,3292,3462,3442,3449,3416,3398,3417,3416,3428,3442,3382,3373,3376,3392,3398,3386,3382,3386,3391,3354,3343,3349,3343,3336,3349,3336,3329,3319,3367,3366,3373,3354,3366,3367,3484,3514,3533,3511,3485,3484,3475,3462,3485,3312,3320,3332,3329,3337,3320,3323,3302,3324,3312,3331,3324,3323,3313,3304,3313,3314,3290,3325,3291,3314,7652,7653,7654,7660,7654,7657,3462,3475,3442,3411,3398,3416,3442,3433,3416,3381,3373,3382,3397,3386,3398,3397,3391,3386,3382,3391,3381,3354,3361,3343,3336,3343,3329,3367,3373,3381,3361,3354,3367,3533,3528,3484,3511,3515,3485,3511,3484,3528,3486,3475,3485,3337,3332,3320,3331,3312,3332,3343,3337,3329,3323,3324,3339,3339,3324,3331,3323,3333,3313,7666,7680,7672,7653,7666,7661,7653,7655,7654,7657,7654,7655,7664,7660,7657,3475,3463,3442,3411,3397,3398,3411,3416,3423,3453,3433,3442,3423,3416,3433,3403,3391,3397,3381,3391,3396,3355,3343,3361,3381,3377,3367,3367,3368,3361,3541,3515,3511,3486,3485,3515,3541,3511,3528,3463,3475,3486,3346,3332,3337,3331,3332,3344,3343,3350,3337,3340,3323,3339,3339,3331,3345,3323,3340,3333,7681,7680,7687,7672,7680,7681,7666,7672,7661,7653,7661,7658,7653,7656,7655,7655,7659,7657,7664,7657,7665,3442,3463,3453,3411,3410,3397,3410,3411,3423,3453,3440,3433,3440,3423,3433,7762,7758,7765,3397,3410,3403,7757,7758,7759,3355,3350,3343,3355,3361,3368,7757,7759,7761,3367,3377,\r\n3368,3541,3557,3515,3486,3515,3516,3463,3486,3476,3344,3332,3346,3351,3346,3337,3344,3345,3331,3351,3337,3350,3340,3339,3345,7691,7687,7697,7681,7687,7673,7672,7681,7667,7667,7661,7672,7667,7658,7661,7653,7658,7656,7655,7656,7659,7657,7659,7665,3463,3476,3453,3410,3423,3432,7786,7796,7791,3440,3432,3423,7758,7762,7760,7766,7762,7769,7759,7758,7760,3350,3355,3362,3362,3355,3368,7761,7759,7764,3377,3374,3368,3515,3557,3546,3516,3515,3546,3486,3516,3501,3476,3486,3501,3344,3346,3357,3351,3358,3346,7704,7711,7719,3351,3350,3363,7704,7697,7711,7673,7687,7691,7691,7697,7704,7673,7667,7681,7667,7673,7658,7662,7656,7658,7656,7663,7659,7665,7659,7671,3476,3487,3453,3441,3410,3432,7786,7791,7781,7780,7786,7776,7766,7760,7762,7759,7760,7763,3350,3362,3363,3362,3368,3374,7768,7764,7759,7819,7816,7814,7805,7814,7811,7805,7803,7802,7799,7802,7795,7748,7742,7728,7728,7712,7719,3358,3351,3363,7704,7719,7712,7691,7698,7673,7691,7704,7698,7668,7658,7673,7656,7662,7663,7662,7658,7668,7659,7663,7669,7671,7659,7676,7799,7795,7791,7766,7780,7776,7781,7791,7787,7781,7776,7786,7766,7763,7760,7759,7763,7767,3371,3363,3362,3362,3374,3378,3374,3387,3384,7767,7768,7759,7811,7814,7816,7805,7811,7807,7805,7807,7803,7802,7803,7795,7742,7735,7728,7728,7720,7712,3363,3371,3358,7712,7698,7704,7705,7673,7698,3519,3505,3491,7674,7663,7662,7662,7668,7675,7669,7663,7674,7669,7676,7659,7671,7676,7684,7791,7795,7787,7766,7776,7772,7781,7787,7772,7781,7772,7776,7770,7763,7766,7767,7763,7771,3378,3371,3362,3374,3384,3378,7774,7779,7768,7774,7768,7767,7811,7816,7817,7813,7807,7811,7807,7804,7803,7801,7795,7803,7747,7735,7742,7735,7720,7728,7712,7720,7698,7751,7747,7742,3491,3505,3469,3469,3458,3445,3520,3519,3491,7682,7674,7662,3550,3519,3520,7682,7662,7675,7669,7674,7683,7669,7684,7676,7686,7671,7684,7787,7795,7793,7770,7766,7772,7782,7772,7787,7770,7771,7763,7767,7771,7773,3378,3384,3371,3405,3400,3384,7774,7767,7773,7817,7813,7811,7810,7807,7813,7810,7804,7807,7804,7801,7803,7801,7793,7795,3388,3393,3399,3399,3404,3412,7729,7698,7720,3371,3384,3388,3491,\r\n3469,3468,3424,3445,3458,3468,3469,3445,3520,3491,3492,3628,3596,3595,3566,3550,3520,3596,3550,3579,3595,3643,3628,7683,7684,7669,7686,7684,7690,7787,7793,7782,7770,7772,7777,7782,7777,7772,7775,7771,7770,7773,7771,7778,7774,7773,7784,3393,3384,3400,7817,7818,7813,7810,7813,7815,7810,7808,7804,7804,7800,7801,7793,7801,7800,3393,3388,3384,3393,3404,3399,3419,3412,3404,3424,3412,3419,3492,3491,3468,3424,3435,3445,3468,3445,3457,3521,3520,3492,3595,3596,3579,3566,3579,3550,3566,3520,3551,3595,3629,3643,7692,7684,7683,7702,7690,7684,7782,7793,7792,7770,7777,7775,7777,7782,7788,7775,7778,7771,7773,7778,7783,3425,3420,3400,3393,3400,3406,7815,7813,7818,3778,3766,3720,7806,7804,7808,7800,7804,7806,7800,7792,7793,3406,3404,3393,3419,3404,3418,3419,3435,3424,3480,3492,3468,3457,3445,3435,3457,3480,3468,3520,3521,3551,3521,3492,3506,3595,3579,3566,3580,3566,3551,3595,3598,3629,3660,3643,3629,7692,7699,7684,7702,7684,7699,7782,7792,7788,7785,7775,7777,7777,7788,7790,7785,7778,7775,3446,3436,3420,3400,3420,3413,3400,3413,3406,3766,3779,3754,3754,3720,3766,3686,3702,3720,7800,7806,7809,3648,3616,3670,3406,3418,3404,3419,3418,3434,3435,3419,3444,3492,3480,3506,3435,3456,3457,3480,3457,3479,3567,3551,3521,3506,3536,3521,3566,3598,3595,3580,3598,3566,3580,3551,3567,3598,3631,3629,3629,3631,3660,3660,3663,3696,3681,3713,3696,7788,7792,7797,7777,7790,7785,3584,3538,3602,7785,7789,7778,3459,3436,3446,3426,3420,3436,3413,3420,3426,3406,3413,3421,3731,3720,3754,3686,3647,3702,3686,3720,3717,7812,7800,7809,3635,3616,3648,3406,3421,3418,3443,3434,3418,3434,3444,3419,3435,3444,3456,3480,3504,3506,3479,3457,3456,3479,3504,3480,3567,3521,3552,3549,3536,3506,3552,3521,3536,3580,3611,3598,3567,3597,3580,3598,3611,3631,3663,3660,3631,3681,3696,3663,3616,3584,3602,3554,3538,3523,3584,3570,3538,7794,7778,7789,3447,3436,3459,3447,3426,3436,3413,3426,3427,3421,3413,3427,3717,3720,3731,3743,3731,3754,3686,3669,3647,3686,3717,3668,3635,3647,3615,3635,3584,3616,3418,3421,3427,3443,3455,3434,3427,3443,3418,3455,3444,3434,3467,3456,3444,3504,3535,3506,\r\n3479,3456,3478,3479,3478,3504,3567,3552,3581,3552,3536,3549,3506,3535,3549,3580,3597,3611,3567,3581,3597,3611,3644,3631,3663,3631,3644,3663,3644,3681,3509,3523,3538,3584,3601,3570,3570,3555,3538,7798,7794,7789,3447,3459,3471,3426,3447,3448,3427,3426,3448,3731,3701,3717,3743,3718,3731,3668,3669,3686,3669,3615,3647,3668,3717,3701,3584,3635,3615,3466,3455,3443,3443,3427,3454,3467,3444,3455,3467,3478,3456,3504,3503,3535,3478,3503,3504,3549,3581,3552,3565,3549,3535,3611,3597,3630,3597,3581,3612,3611,3630,3644,3681,3644,3680,3482,3523,3509,3538,3555,3509,3584,3615,3601,3601,3600,3570,3571,3555,3570,3471,3459,3482,3471,3481,3447,3447,3470,3448,3448,3460,3427,3731,3718,3701,3668,3615,3669,3668,3701,3685,3467,3455,3466,3466,3443,3465,3464,3454,3427,3465,3443,3454,3490,3478,3467,3535,3503,3534,3490,3503,3478,3578,3581,3549,3578,3549,3565,3565,3535,3534,3632,3630,3597,3627,3612,3581,3612,3632,3597,3630,3662,3644,3644,3662,3680,3494,3482,3509,3539,3509,3555,3600,3601,3615,3571,3570,3600,3571,3539,3555,3494,3471,3482,3471,3495,3481,3481,3470,3447,3448,3470,3460,3464,3427,3460,3685,3701,3718,3646,3615,3668,3668,3685,3646,3490,3467,3466,3465,3488,3466,3503,3517,3534,3490,3517,3503,3578,3610,3581,3661,3630,3632,3627,3632,3612,3627,3581,3610,3662,3630,3661,3524,3494,3509,3524,3509,3539,3600,3615,3646,3571,3600,3569,3569,3539,3571,3494,3508,3471,3471,3508,3495,3495,3493,3481,3493,3470,3481,3460,3470,3483,3464,3460,3483,3719,3685,3718,3685,3699,3646,3490,3466,3488,3488,3517,3490,3661,3632,3679,3664,3632,3627,3697,3662,3661,3524,3522,3494,3524,3539,3522,3600,3646,3634,3613,3569,3600,3522,3539,3569,3522,3508,3494,3495,3508,3525,3699,3685,3719,3744,3719,3718,3682,3646,3699,3664,3679,3632,3697,3661,3679,3634,3646,3666,3613,3600,3634,3613,3599,3569,3569,3568,3522,3522,3525,3508,3714,3699,3719,3739,3719,3744,3666,3646,3682,3682,3699,3714,3634,3666,3683,3613,3634,3645,3569,3599,3568,3553,3522,3568,3525,3522,3553,3739,3714,3719,3739,3744,3764,3683,3666,3682,3715,3682,3714,3667,3634,3683,3645,3634,3667,3714,3739,3740,3763,3739,3764,3683,3682,\r\n3715,3715,3714,3740,3700,3667,3683,3763,3740,3739,3700,3683,3715,3741,3715,3740,3763,3741,3740,3730,3700,3715,3741,3730,3715,3840,3841,3842,3840,3843,3841,3842,3841,3844,3845,3840,3842,3846,3843,3840,3847,3841,3843,3847,3844,3841,3842,3844,3848,3840,3845,3849,3842,3850,3845,7861,7862,7863,3840,3849,3846,7877,7863,7872,3847,3851,3844,3848,3844,3852,3853,3842,3848,3854,3849,3845,3842,3853,3850,3845,3850,3855,7862,7861,7864,7865,7863,7862,3846,3849,3856,7872,7863,7868,7877,7872,7885,13958,13959,13960,13963,13965,13959,3853,3848,3857,3849,3854,3858,3854,3845,3855,3859,3850,3853,3850,3860,3855,7864,7861,7866,7867,7862,7864,7868,7863,7865,7869,7865,7862,3849,3858,3856,7872,7868,7878,7885,7872,7878,13958,13961,13959,13963,13968,13965,13963,13959,13962,3861,3853,3857,3862,3858,3854,3855,3863,3854,3859,3864,3850,3859,3853,3861,3850,3864,3860,3855,3860,3865,7870,7864,7866,7871,7862,7867,7867,7864,7870,7868,7865,7873,7874,7865,7869,7869,7862,7871,3866,3856,3858,7880,7878,7868,13962,13959,13961,13963,13969,13968,13963,13962,13966,3857,3867,3861,3868,3858,3862,3862,3854,3863,3863,3855,3869,3864,3859,3861,3870,3860,3864,3865,3860,3871,3855,3865,3869,7867,7875,7871,7876,7867,7870,7879,7873,7865,7880,7868,7873,7874,7879,7865,7881,7874,7869,7869,7871,7882,3868,3866,3858,13964,13962,13961,13963,13966,13969,13969,13973,13968,13962,13967,13966,13968,13973,13977,3872,3861,3867,3868,3862,3873,3862,3863,3874,3863,3869,3875,3872,3864,3861,3871,3860,3870,3876,3870,3864,3869,3865,3871,7867,7883,7875,7884,7871,7875,7883,7867,7876,3877,3866,3868,7879,7886,7873,7880,7873,7886,7879,7874,7887,7888,7874,7881,7869,7889,7881,7890,7882,7871,7869,7882,7889,13962,13964,13967,13971,13969,13966,13969,13976,13973,13971,13966,13967,13973,13981,13977,3872,3867,3878,3879,3873,3862,3868,3873,3877,3863,3880,3874,3879,3862,3874,3871,3875,3869,3863,3875,3880,3872,3876,3864,3881,3871,3870,3876,3882,3870,7891,7875,7883,7884,7892,7871,7893,7884,7875,7894,7883,7876,7886,7879,7895,13964,13970,13967,7888,7887,7874,7879,7887,7896,7888,7881,7897,7897,7881,7889,7882,7890,\r\n7898,7899,7890,7871,7900,7889,7882,13969,13971,13974,13969,13974,13976,13973,13976,13980,13972,13971,13967,13973,13980,13981,13981,13985,13977,3878,3867,3883,3872,3878,3876,3884,3873,3879,3885,3877,3873,3886,3874,3880,3879,3874,3886,3871,3887,3875,3875,3888,3880,3889,3871,3881,3882,3881,3870,3876,3890,3882,7891,7893,7875,7891,7883,7894,7892,7884,7901,7892,7899,7871,7893,7902,7884,13995,13975,14003,13975,13972,13970,13972,13967,13970,7903,7887,7888,7904,7896,7887,7905,7888,7897,7897,7889,7900,7890,7906,7898,7882,7898,7900,4175,4184,4194,13971,13979,13974,13974,13979,13976,13980,13976,13984,13972,13978,13971,13991,13981,13980,13992,13985,13981,3878,3883,3890,3876,3878,3890,3884,3885,3873,3884,3879,3891,3886,3880,3888,3891,3879,3886,3889,3887,3871,3892,3875,3887,3892,3888,3875,3881,3893,3889,3881,3882,3894,3882,3890,3894,7907,7893,7891,7907,7891,7894,7901,7884,7902,7892,7901,7908,7909,7899,7892,7910,7902,7893,13988,13975,13995,13972,13975,13978,7904,7887,7903,7888,7911,7903,7888,7905,7911,4181,4193,4182,4163,4174,4182,7890,7912,7906,4163,4183,4164,4175,4155,4184,4203,4175,4194,13971,13982,13979,13976,13979,13987,13976,13989,13984,13980,13984,13990,13971,13978,13982,13981,13991,13999,13991,13980,13998,3895,3890,3883,13981,13999,13992,3884,3896,3885,3884,3891,3897,3886,3888,3898,3891,3886,3899,3887,3889,3900,3887,3900,3892,3901,3888,3892,3893,3881,3902,3903,3889,3893,3894,3902,3881,3890,3904,3894,7913,7893,7907,7907,7894,7914,7901,7902,7915,7908,7901,7916,7909,7892,7908,7910,7917,7902,7918,7910,7893,13988,13983,13975,13978,13975,13983,13988,13994,13983,14002,13994,14011,4192,4193,4172,4181,4172,4193,4181,4182,4174,4163,4154,4174,4148,4164,4155,4163,4164,4148,4156,4155,4175,4203,4195,4175,13979,13982,13987,13989,13976,13987,13997,13984,13989,13997,13990,13984,13980,13990,13998,13978,13986,13982,14008,13999,13991,13998,14009,13991,3890,3895,3904,3904,3895,3912,3905,3896,3884,3897,3891,3906,3884,3897,3905,3901,3898,3888,3886,3898,3899,3907,3891,3899,3903,3900,3889,3900,3908,3892,3908,3901,3892,3893,3902,3909,3910,3903,3893,\r\n3894,3911,3902,3904,3911,3894,7918,7893,7913,7913,7907,7914,7902,7917,7915,4235,4231,4213,4213,4208,4222,7909,7908,7919,7918,7917,7910,13978,13983,13986,14002,13983,13994,14018,14002,14011,4180,4192,4172,4172,4181,4162,4181,4174,4162,4148,4154,4163,4154,4162,4174,4143,4148,4155,4156,4143,4155,4158,4156,4175,4195,4177,4175,13982,13993,13987,13989,13987,14001,13997,13989,14005,13997,14006,13990,13998,13990,14007,13993,13982,13986,3904,3912,3921,14008,13991,14015,14014,14009,13998,14009,14015,13991,7921,7913,7914,3907,3906,3891,3913,3897,3906,3897,3914,3905,3899,3898,3901,3915,3907,3899,3916,3900,3903,3908,3900,3917,3901,3908,3915,3909,3902,3918,3893,3909,3919,3903,3910,3920,3910,3893,3919,3911,3918,3902,3904,3921,3911,7918,7913,7920,7915,7917,7922,4213,4231,4225,4213,4187,4208,7923,7919,7908,7917,7918,7924,13986,13983,13996,13996,13983,14002,14018,14012,14002,14018,14011,14027,4180,4172,4153,4162,4153,4172,4148,4140,4154,4154,4147,4162,4143,4140,4148,4144,4143,4156,4144,4156,4158,4175,4177,4158,4195,4187,4177,13993,14001,13987,14010,13989,14001,14005,13989,14010,13997,14005,14006,14006,14007,13990,13998,14007,14014,13986,14000,13993,14022,14008,14015,14009,14014,14023,14009,14024,14015,7913,7921,7920,3922,3906,3907,3923,3897,3913,3922,3913,3906,3923,3914,3897,3905,3914,3924,3901,3915,3899,3915,3925,3907,3917,3900,3916,3903,3920,3916,3908,3917,3926,3908,3925,3915,3909,3918,3927,3928,3919,3909,3929,3920,3910,3929,3910,3919,3930,3918,3911,3931,3911,3921,7924,7918,7920,7922,7917,7925,7922,7926,7915,4225,4231,4236,4213,4225,4220,4213,4204,4187,4208,4187,4195,7917,7924,7925,13986,13996,14004,14002,14012,13996,14012,14018,14028,14018,14027,14035,4180,4153,4173,4153,4162,4147,4140,4147,4154,4140,4143,4138,4138,4143,4144,4149,4144,4158,4158,4177,4166,4187,4166,4177,13993,14000,14001,14010,14001,14017,14020,14005,14010,14005,14021,14006,14014,14007,14006,13986,14004,14000,14022,14015,14031,14014,14021,14023,14009,14023,14032,14033,14024,14009,14015,14024,14031,7921,7927,7920,3922,3907,3932,3933,3923,3913,3934,3913,3922,3914,3923,\r\n3935,3914,3936,3924,3932,3907,3925,3917,3916,3937,3938,3916,3920,3926,3917,3939,3926,3940,3908,3940,3925,3908,3918,3941,3927,3909,3927,3928,3928,3929,3919,3942,3920,3929,3941,3918,3930,3930,3911,3931,7928,7924,7920,7922,7925,7929,7930,7926,7922,4236,4231,4240,4236,4230,4225,4230,4220,4225,4213,4220,4204,4204,4185,4187,7931,7925,7924,13996,14013,14004,14019,13996,14012,14036,14028,14018,14012,14028,14019,14035,14027,14045,14036,14018,14035,4161,4173,4153,14027,14057,14045,4153,4147,4142,4140,4142,4147,4138,4139,4140,4141,4138,4144,4149,4141,4144,4149,4158,4166,4187,4185,4166,14000,14017,14001,14017,14026,14010,14021,14005,14020,14020,14010,14026,14014,14006,14021,14000,14004,14016,3931,3964,3951,14040,14023,14021,14023,14041,14032,14009,14032,14033,14042,14024,14033,14042,14031,14024,7928,7920,7927,3934,3922,3932,3923,3933,3943,3913,3934,3933,3923,3944,3935,7942,7945,7936,7936,7928,7942,3932,3925,3945,3937,3916,3938,3939,3917,3937,3938,3920,3942,3939,3946,3926,3940,3926,3946,3945,3925,3940,3947,3927,3941,3948,3928,3927,3929,3928,3949,3950,3942,3929,3941,3930,3951,3931,3951,3930,7928,7931,7924,7931,7929,7925,7930,7922,7929,7930,7932,7926,4240,4241,4236,4236,4241,4230,4219,4220,4230,4220,4219,4204,4205,4185,4204,13996,14019,14013,14013,14016,14004,14046,14028,14036,14019,14028,14037,14035,14045,14058,14059,14036,14035,4171,4173,4161,4142,4161,4153,14057,14069,14045,4139,4142,4140,4139,4138,4141,4157,4141,4149,4149,4166,4165,4185,4165,4166,14017,14000,14025,14017,14034,14026,14021,14020,14038,14026,14039,14020,14025,14000,14016,3941,3951,3964,14040,14050,14023,14021,14038,14040,14050,14041,14023,14041,14051,14032,14052,14033,14032,14052,14042,14033,14031,14042,14053,3934,3932,3952,3933,3953,3943,3923,3943,3944,3954,3933,3934,3955,3935,3944,16313,16314,16315,7936,7933,7928,3956,3932,3945,3957,3937,3938,3939,3937,3957,3942,3958,3938,3939,3957,3946,3940,3946,3959,3945,3940,3959,3960,3927,3947,3941,3961,3947,3948,3949,3928,3960,3948,3927,3929,3949,3962,3942,3950,3963,3950,3929,3962,7928,7933,7931,7929,7931,7934,7930,7929,\r\n7932,7932,7935,7926,7926,7935,7940,4242,4230,4241,4232,4219,4230,4205,4204,4219,4196,4185,4205,14013,14019,14029,14030,14016,14013,14046,14047,14028,14046,14036,14059,14047,14037,14028,14029,14019,14037,14058,14045,14069,14058,14059,14035,14082,14069,14057,4152,4171,4161,4152,4161,4142,4142,4139,4146,4145,4139,4141,4157,4151,4141,4157,4149,4165,4185,4176,4165,14017,14025,14034,14034,14044,14026,14038,14020,14039,14039,14026,14044,14030,14025,14016,3964,3961,3941,14062,14050,14040,14040,14038,14061,14050,14063,14041,14041,14064,14051,14032,14051,14052,14052,14065,14042,14066,14053,14042,3956,3952,3932,3952,3954,3934,3953,3933,3965,3943,3953,3944,3954,3965,3933,16262,16258,16254,7944,7941,7936,7936,7941,7933,3956,3945,3966,3957,3938,3958,3963,3958,3942,3957,3967,3946,3968,3959,3946,3945,3959,3966,3947,3969,3960,3947,3961,3969,3949,3948,3970,3948,3960,3971,3972,3962,3949,3963,3950,3973,3962,3974,3950,7931,7933,7937,7937,7934,7931,7934,7938,7929,7939,7932,7929,16283,16288,16292,4245,4244,4241,4239,4230,4242,4241,4244,4242,4232,4226,4219,4232,4230,4239,4214,4205,4219,4185,4196,4176,4214,4196,4205,14013,14029,14030,14046,14070,14047,14059,14071,14046,14047,14048,14037,14048,14029,14037,14058,14069,14083,14058,14084,14059,14082,14095,14069,4152,4170,4171,4146,4152,4142,4139,4150,4146,4139,4145,4150,4145,4141,4151,4157,4160,4151,4157,4165,4176,14025,14043,14034,14034,14056,14044,14061,14038,14039,14044,14061,14039,14025,14030,14043,14076,14050,14062,14062,14040,14061,14063,14050,14077,14041,14063,14064,14051,14064,14078,14052,14051,14065,14065,14066,14042,3983,3969,3961,3975,3952,3956,3952,3976,3954,3953,3965,3977,3944,3953,3978,3954,3979,3965,16258,16242,16254,7944,7949,7947,7941,7944,7947,7941,7937,7933,3980,3956,3966,3967,3957,3958,3967,3958,3963,3967,3968,3946,3968,3981,3959,3981,3966,3959,3969,3982,3960,3970,3948,3971,3972,3949,3970,3960,3984,3971,3972,3985,3962,3950,3974,3973,3986,3963,3973,3962,3985,3974,7937,7943,7934,7943,7938,7934,7929,7938,7939,16274,16278,16283,16278,16288,16283,16288,16296,16292,16292,16296,16300,\r\n16316,16317,16318,4243,4242,4244,4232,4234,4226,4226,4214,4219,4232,4239,4234,4186,4176,4196,4207,4196,4214,14030,14029,14049,14046,14071,14070,14047,14070,14085,14086,14071,14059,14047,14072,14048,14048,14049,14029,14083,14069,14095,14058,14083,14096,14058,14096,14084,14059,14084,14086,14106,14095,14082,4150,4170,4152,4170,4191,4171,4150,4152,4146,4159,4150,4145,4151,4160,4145,4178,4160,4157,4186,4157,4176,14043,14055,14034,14056,14034,14055,14056,14068,14044,14075,14061,14044,14030,14054,14043,14076,14077,14050,14090,14076,14062,14061,14088,14062,14091,14063,14077,14064,14063,14078,14051,14078,14065,14092,14066,14065,3983,3982,3969,3975,3976,3952,3975,3956,3980,3954,3976,3979,3987,3977,3965,3977,3988,3953,16222,16242,16248,3965,3979,3989,16242,16247,16254,7950,7947,7949,7941,7947,7946,7946,7937,7941,3980,3966,3990,3967,3963,3991,3967,3992,3968,3968,3993,3981,3990,3966,3981,3960,3982,3984,3971,3994,3970,3994,3972,3970,3984,3995,3971,3985,3972,3996,3997,3973,3974,3991,3963,3986,3973,3997,3986,3998,3974,3985,7946,7943,7937,16253,16261,16268,16274,16268,16271,16278,16274,16271,16278,16286,16288,16288,16295,16296,16296,16301,16300,4243,4234,4239,4226,4234,4221,4226,4221,4214,4207,4186,4196,4221,4207,4214,14049,14060,14030,14070,14071,14097,3708,3721,3694,14047,14085,14072,14097,14071,14086,14087,14048,14072,14049,14048,14073,14083,14095,14107,14083,14108,14096,14096,14109,14084,14110,14086,14084,14121,14095,14106,14106,14082,14122,4170,4150,4167,14135,14106,14122,4150,4159,4167,4159,4145,4168,4160,4169,4145,4178,4179,4160,4178,4157,4190,4190,4157,4186,14054,14055,14043,14055,14080,14056,14068,14056,14081,14068,14075,14044,14061,14075,14089,14030,14067,14054,14077,14076,14090,14090,14062,14088,14089,14088,14061,14098,14063,14091,14091,14077,14099,14098,14078,14063,14100,14065,14078,14101,14066,14092,14092,14065,14100,4003,3982,3983,3975,3999,3976,3975,3980,4000,3976,3999,3979,16191,16202,16161,3965,3989,3987,16213,16222,16202,16222,16234,16242,3989,3979,4001,16247,16242,16234,7950,7948,7947,7946,7947,7948,3980,3990,4002,\r\n3967,3991,3992,3993,3968,3992,3981,3993,3990,4004,3984,3982,4005,3994,3971,3972,3994,3996,4004,3995,3984,4005,3971,3995,4006,3985,3996,4007,3997,3974,3991,3986,4008,3997,4009,3986,3998,4007,3974,3985,4010,3998,7948,7943,7946,16252,16261,16253,16261,16271,16268,16278,16271,16270,16278,16282,16286,16295,16288,16286,16296,16295,16298,16296,16298,16301,16308,16310,16301,4228,4221,4234,4207,4216,4186,4221,4216,4207,14049,14074,14060,14060,14067,14030,3721,3732,3687,3721,3687,3694,3708,3694,3674,3674,3723,3708,14111,14097,14086,3724,3756,3769,3691,3724,3723,14049,14073,14074,14121,14107,14095,14083,14107,14108,14123,14096,14108,14096,14123,14109,14110,14084,14109,14110,14111,14086,14106,14134,14121,4167,4189,4170,4200,4170,4189,4168,4167,4159,4169,4168,4145,4160,4179,4169,4178,4201,4179,4178,4190,4202,4206,4190,4186,14055,14054,14079,14079,14080,14055,14080,14081,14056,14094,14068,14081,14075,14068,14094,14094,14089,14075,14079,14054,14067,14090,14114,14077,14090,14088,14112,14112,14088,14089,14098,14091,14115,14077,14114,14099,14116,14091,14099,14078,14098,14117,14100,14078,14117,14101,14092,14118,14100,14118,14092,14130,14145,14101,4011,3999,3975,3980,4002,4000,3975,4000,4011,4001,3979,3999,16213,16202,16191,16191,16161,16164,16145,16128,16161,16213,16230,16222,16230,16234,16222,16099,16145,16149,7950,7951,7948,3990,4012,4002,3992,3991,4013,3992,4014,3993,3993,4015,3990,4016,4004,3982,4005,3996,3994,4004,4017,3995,4005,3995,4018,3985,4006,4010,4005,4006,3996,4007,4009,3997,4019,4008,3986,4013,3991,4008,4019,3986,4009,4007,3998,4020,4021,3998,4010,16241,16253,16246,16252,16267,16261,16241,16252,16253,16270,16271,16261,16270,16282,16278,16282,16291,16286,16295,16286,16291,16298,16295,16291,16298,16303,16301,4238,4228,4234,16305,16308,16301,4228,4216,4221,4216,4215,4186,14060,14074,14067,14124,14140,14097,3694,3687,3657,3674,3694,3657,3723,3674,3691,14124,14097,14111,3724,3746,3756,3691,3693,3724,14121,14136,14107,14137,14108,14107,14137,14123,14108,14138,14109,14123,14110,14109,14139,14110,14139,14111,14134,14150,14121,\r\n4189,4167,4199,4188,4167,4168,4169,4179,4168,4202,4201,4178,4212,4179,4201,4206,4202,4190,4206,4186,4215,14103,14080,14079,14080,14104,14081,14105,14094,14081,14089,14094,14113,14079,14067,14093,14090,14126,14114,14090,14112,14126,14112,14089,14125,14115,14091,14116,14117,14098,14115,14127,14099,14114,14116,14099,14128,14129,14100,14117,14130,14101,14118,14100,14129,14118,3999,4011,4022,4023,4000,4002,4023,4011,4000,16149,16148,16131,16191,16205,16213,16127,16164,16161,16191,16164,16178,16128,16145,16099,16127,16161,16128,16230,16213,16216,16241,16234,16230,16099,16149,16131,16234,16241,16246,4024,4012,3990,4023,4002,4012,3992,4013,4014,3993,4014,4015,4024,3990,4015,4025,4004,4016,4025,4017,4004,3995,4017,4026,4018,3995,4026,4006,4005,4018,4006,4027,4010,4020,4009,4007,4028,4008,4019,4008,4028,4013,4019,4009,4029,3998,4021,4020,4010,4027,4021,16260,16267,16252,16270,16261,16267,16237,16252,16241,16270,16279,16282,16291,16282,16287,16298,16291,16299,16298,16299,16303,16305,16301,16303,16308,16309,16312,16305,16309,16308,4228,4227,4216,4227,4215,4216,14093,14067,14074,3649,3687,3688,3649,3657,3687,3674,3657,3638,3691,3674,3672,14141,14124,14111,3726,3746,3724,3691,3655,3693,3726,3724,3693,14150,14136,14121,14136,14151,14107,14137,14107,14151,14123,14137,14152,14138,14153,14109,14138,14123,14154,7856,7858,7860,14141,14111,14139,4167,4197,4199,4167,4188,4197,4198,4188,4168,4168,4179,4198,4211,4179,4212,14104,14080,14103,14103,14079,14119,14081,14104,14105,14105,14120,14094,14120,14113,14094,14113,14125,14089,14102,14079,14093,14126,14142,14114,14126,14112,14125,14116,14117,14115,14127,14128,14099,14127,14114,14142,14116,14128,14143,14144,14129,14117,14146,14130,14118,14118,14129,14147,16130,16097,16095,16131,16148,16095,4011,4023,4030,16178,16205,16191,16213,16205,16216,16127,16147,16164,16178,16164,16147,16099,16093,16128,16127,16128,16093,16230,16216,16215,16241,16230,16232,16099,16131,16098,4031,4012,4024,4023,4012,4031,4013,4032,4014,4024,4015,4014,4025,4033,4017,4033,4026,4017,4018,4026,4034,4006,4018,4035,4027,4006,\r\n4035,4036,4009,4020,4029,4028,4019,4037,4013,4028,4009,4036,4029,4020,4021,4038,4039,4021,4027,16260,16265,16267,16250,16260,16252,16270,16267,16273,16237,16250,16252,16237,16241,16232,16270,16273,16279,16282,16279,16287,16287,16294,16291,16299,16291,16294,16302,16303,16299,16305,16303,16307,4227,4228,4237,16311,16309,16305,4227,4233,4215,3649,3688,3671,3657,3649,3625,3638,3657,3625,3672,3674,3638,3672,3655,3691,3703,3671,3688,3655,3673,3693,3707,3726,3693,14150,14165,14136,14166,14151,14136,14167,14137,14151,14152,14137,14168,14123,14152,14154,14138,14169,14153,14170,14138,14154,7856,7851,7858,14139,14171,14141,4209,4199,4197,4188,4209,4197,4198,4210,4188,4211,4198,4179,14104,14103,14131,14102,14119,14079,14132,14103,14119,14104,14133,14105,14105,14133,14120,14113,14120,14125,3707,3735,3726,14126,14125,14142,14116,14144,14117,14127,14156,14128,14157,14127,14142,14158,14143,14128,14143,14159,14116,14160,14129,14144,14146,14118,14161,14147,14129,14162,14147,14161,14118,16095,16097,16074,16098,16131,16095,4031,4030,4023,16178,16194,16205,16194,16216,16205,16113,16147,16127,16147,16194,16178,16099,16046,16093,16092,16127,16093,16194,16215,16216,16215,16232,16230,16051,16099,16098,4031,4024,4040,4037,4032,4013,4014,4032,4041,4041,4024,4014,4025,4042,4033,4033,4043,4026,4034,4026,4043,4018,4034,4035,4027,4035,4039,4036,4020,4038,4044,4028,4029,4037,4028,4044,4045,4029,4036,4021,4046,4038,4039,4046,4021,16256,16265,16260,16273,16267,16265,16250,16256,16260,16235,16250,16237,16232,16225,16237,16279,16273,16276,16279,16285,16287,16294,16287,16285,16299,16294,16297,16302,16304,16303,16302,16299,16297,16307,16303,16304,16311,16305,16307,8022,7989,8012,3649,3671,3617,3625,3649,3617,3607,3638,3625,3639,3672,3638,3672,3639,3655,3689,3671,3703,3655,3640,3673,3673,3707,3693,14165,14166,14136,14167,14151,14166,14167,14168,14137,14178,14152,14168,14154,14152,14179,14169,14138,14170,14180,14153,14169,14154,14179,14170,7851,7856,7852,7851,7853,7858,7857,7859,7853,4210,4209,4188,4210,4198,4211,14132,14131,14103,14104,14131,14148,3735,\r\n3734,3758,3770,3758,3748,14104,14148,14133,14133,14149,14120,14120,14155,14125,3707,3734,3735,14142,14125,14157,14172,14144,14116,14157,14156,14127,14158,14128,14156,14158,14173,14143,14143,14173,14159,14172,14116,14159,14160,14162,14129,14172,14160,14144,14147,14162,14174,14147,14174,14161,16074,16097,16049,16095,16074,16048,16098,16095,16048,4047,4030,4031,16113,16163,16147,16092,16113,16127,16194,16147,16193,16046,16099,16051,16046,16072,16093,16093,16072,16092,16193,16215,16194,16215,16225,16232,16075,16051,16098,4041,4040,4024,4047,4031,4040,4037,4048,4032,4041,4032,4048,4049,4033,4042,4043,4033,4049,4043,4050,4034,4034,4051,4035,4052,4039,4035,4036,4038,4053,4044,4029,4054,4037,4044,4055,4054,4029,4045,4045,4036,4053,4038,4046,4056,4057,4046,4039,16256,16266,16265,16273,16265,16276,16256,16250,16235,16224,16235,16237,16237,16225,16224,16285,16279,16276,16294,16285,16290,16297,16294,16290,16304,16302,16306,7955,7958,7953,7965,7961,7957,7975,7965,7964,3671,3650,3617,3625,3617,3586,3638,3607,3605,3625,3586,3607,3605,3639,3638,3606,3655,3639,3671,3689,3650,3640,3655,3606,3640,3656,3673,3673,3692,3707,14165,14191,14166,14178,14179,14152,14170,14195,14169,14180,14196,14153,14169,14195,14180,14170,14179,14197,7851,7852,7845,7847,7853,7851,7847,7857,7853,3793,3770,3783,14131,14163,14148,3758,3734,3748,3783,3770,3748,14164,14133,14148,14133,14164,14149,14149,14155,14120,14155,14157,14125,3707,3725,3734,14156,14157,14182,14158,14156,14183,14184,14173,14158,14173,14185,14159,14172,14159,14185,14162,14160,14186,14160,14172,14187,14162,14188,14174,14189,14161,14174,4047,4058,4030,16074,16049,16028,16028,16048,16074,16098,16048,16075,16113,16162,16163,16177,16147,16163,16073,16113,16092,16177,16193,16147,16046,16051,16031,16046,16027,16072,16027,16092,16072,16225,16215,16193,16007,16051,16075,4048,4040,4041,4047,4040,4048,4037,4055,4048,4059,4043,4049,4043,4060,4050,4034,4050,4051,4035,4051,4052,4057,4039,4052,4038,4061,4053,4062,4044,4054,4055,4044,4063,4045,4053,4054,4056,4046,4057,4056,4061,4038,16266,16256,16259,16266,\r\n16272,16265,16276,16265,16280,16256,16235,16259,16224,16223,16235,16225,16193,16224,16285,16276,16290,7958,7962,7956,7952,7955,7953,7961,7952,7957,7953,7958,7956,7957,7964,7965,3618,3617,3650,3586,3617,3587,3605,3607,3576,3607,3586,3576,3606,3639,3605,3651,3650,3689,3606,3623,3640,3640,3623,3656,3673,3656,3692,3692,3725,3707,14170,14207,14195,14208,14196,14180,14195,14209,14180,14207,14170,14197,7845,7852,7848,7851,7845,7844,7847,7851,7844,3651,3689,3704,3799,3793,3783,14163,14175,14148,3748,3734,3725,16319,16320,16321,14164,14148,14175,14176,14149,14164,14149,14177,14155,14155,14181,14157,14181,14182,14157,14156,14182,14198,14198,14183,14156,14183,14184,14158,14184,14199,14173,14187,14185,14173,14187,14172,14185,14160,14200,14186,14186,14201,14162,14160,14187,14200,14202,14188,14162,14188,14189,14174,4047,4064,4058,16049,16005,16028,16028,15982,16048,16048,16029,16075,16146,16162,16113,16177,16163,16162,16073,16114,16113,16027,16073,16092,16204,16193,16177,16031,16051,16007,16046,16031,15985,16027,16046,15985,16029,16007,16075,4048,4065,4047,4055,4065,4048,14252,14217,14242,14188,14217,14189,4060,4066,4050,4067,4051,4050,4052,4051,4067,4057,4052,4068,4069,4053,4061,4062,4070,4044,4054,4071,4062,4070,4063,4044,4063,4072,4055,4069,4054,4053,4056,4057,4073,4056,4074,4061,16266,16259,16269,16272,16266,16269,16275,16265,16272,16280,16265,16275,16284,16276,16280,16255,16259,16235,16214,16223,16224,16236,16235,16223,16214,16224,16193,16290,16276,16284,7966,7956,7962,7952,7953,7954,7954,7957,7952,7953,7956,7954,3587,3617,3618,3618,3650,3651,3587,3558,3586,3605,3576,3575,3563,3576,3586,3575,3606,3605,3606,3593,3623,3623,3653,3656,3692,3656,3705,3725,3692,3705,14195,14207,14219,7854,7848,7852,14208,14180,14209,14195,14219,14209,7845,7848,7842,7844,7845,7839,7847,7844,7841,16322,16323,16324,7642,7633,7638,3748,3725,3757,7612,7618,7625,3771,3748,3757,14175,14190,14164,14149,14176,14177,14176,14164,14190,14181,14155,14177,14181,14198,14182,14198,14211,14183,14212,14184,14183,14213,14199,14184,14173,14199,14187,14214,14186,14200,\r\n14186,14215,14201,14202,14162,14201,14216,14200,14187,14188,14202,14217,4064,4047,4065,16096,16050,16049,16049,16050,16005,16005,15982,16028,16029,16048,15982,16146,16176,16162,16114,16146,16113,16177,16162,16192,16073,16094,16114,16073,16027,16047,16214,16193,16204,16192,16204,16177,16031,16007,15985,16027,15985,15981,16030,16007,16029,4055,4064,4065,14242,14217,14227,4066,4060,4075,4076,4050,4066,4067,4050,4076,4052,4067,4077,4052,4077,4068,4057,4068,4078,4074,4069,4061,4070,4062,4079,4054,4069,4071,4062,4071,4080,4063,4070,4081,4063,4081,4072,4072,4064,4055,4073,4057,4078,4056,4073,4074,16264,16269,16259,16269,16277,16272,16275,16272,16281,16280,16275,16281,16284,16280,16289,16255,16264,16259,16249,16255,16235,16223,16214,16203,16236,16249,16235,16231,16236,16223,7962,7970,7966,7966,7963,7956,7954,7956,7959,3618,3588,3587,3651,3636,3618,3587,3559,3558,3563,3586,3558,3575,3576,3545,3576,3563,3545,3575,3593,3606,3592,3623,3593,3653,3623,3624,3653,3690,3656,3705,3656,3690,3733,3725,3705,14229,14219,14207,7854,7855,7848,14209,14230,14208,14219,14231,14209,7848,7849,7842,7845,7842,7839,7844,7839,7838,7844,7838,7841,16325,16324,16323,7638,7633,7627,3757,3725,3747,7607,7618,7612,7612,7598,7607,7627,7637,7638,14177,14176,14203,14190,14204,14176,14177,14198,14181,7632,7641,7634,14183,14211,14222,14223,14184,14212,14212,14183,14222,14199,14213,14224,14223,14213,14184,14224,14187,14199,14225,14186,14214,14214,14200,14216,14225,14215,14186,14215,14202,14201,14216,14187,14226,14227,14217,14202,16096,16076,16050,16006,16005,16050,15959,15982,16005,16029,15982,15984,16176,16146,16165,16192,16162,16176,16114,16129,16146,16073,16047,16094,16114,16094,16129,16047,16027,15981,16192,16214,16204,16007,15940,15985,15981,15985,15958,15983,16007,16030,16029,15984,16030,14242,14227,14253,4060,4082,4075,4076,4066,4075,4067,4076,4083,4067,4083,4077,4077,4084,4068,4068,4085,4078,4069,4074,4086,4062,4080,4079,4070,4079,4081,4071,4069,4087,4080,4071,4088,4089,4072,4081,4090,4073,4078,4086,4074,4073,8068,8048,8031,8031,8016,8007,16281,16272,\r\n16277,16280,16281,16289,16293,16284,16289,8094,8047,8068,16249,16257,16255,16192,16203,16214,16223,16203,16231,16243,16249,16236,16243,16236,16231,7973,7963,7966,7963,7959,7956,3618,3636,3588,3587,3588,3559,7841,7838,7835,3528,3558,3559,3533,3563,3558,3575,3545,3544,3533,3545,3563,3593,3575,3544,3592,3624,3623,3593,3544,3592,3653,3624,3654,3653,3654,3690,3705,3690,3722,3725,3733,3747,3722,3733,3705,14219,14229,14243,14208,14230,14244,7848,7855,7849,14209,14231,14230,14243,14231,14219,7843,7842,7849,7842,7836,7839,7838,7839,7833,7618,7627,7633,7598,7587,7592,7607,7615,7618,7607,7598,7592,7627,7629,7637,14204,14203,14176,14177,14203,14218,7634,7641,7647,7632,7634,7622,14222,14211,14234,14223,14212,14235,14222,14234,14212,14224,14213,14236,14223,14236,14213,14224,14226,14187,14225,14214,14237,14214,14216,14238,14225,14239,14215,14240,14202,14215,14216,14226,14241,14227,14202,14240,16008,16050,16076,16006,15959,16005,16050,16008,16006,15959,15937,15982,15960,15984,15982,16165,16146,16129,16195,16176,16165,16192,16176,16203,16091,16094,16047,16126,16129,16094,15981,16045,16047,15940,16007,15983,15958,15985,15940,15981,15958,15936,15983,16030,15984,14227,14240,14253,4075,4082,4091,4076,4075,4092,4083,4076,4093,4077,4083,4094,4077,4095,4084,4068,4084,4085,4090,4078,4085,4096,4069,4086,4097,4079,4080,4098,4081,4079,4087,4069,4096,4088,4071,4087,4097,4080,4088,16008,16076,16052,4089,4081,4098,4090,4086,4073,8048,8068,8047,8048,8030,8031,8030,8016,8031,7986,8007,8016,7995,8007,7986,7986,7978,7995,7966,7978,7973,16257,16263,16255,16243,16257,16249,16203,16226,16231,16243,16231,16251,7963,7973,7976,3636,3619,3588,3588,3572,3559,7838,7833,7835,3533,3558,3528,3559,3541,3528,3514,3544,3545,3514,3545,3533,3624,3592,3604,3592,3544,3574,3637,3654,3624,3706,3690,3654,16326,16327,16328,16329,16330,16331,3722,3745,3733,14230,14257,14244,14231,14256,14230,14231,14243,14258,7837,7842,7843,7846,7843,7849,7837,7836,7842,7839,7836,7833,7618,7615,7627,7592,7587,7570,7607,7601,7615,7607,7592,7601,7621,7629,7627,14228,14203,14204,7634,7628,7622,\r\n7620,7632,7622,14246,14234,14211,14234,14235,14212,14235,14247,14223,14224,14236,14248,14249,14236,14223,14226,14224,14248,14214,14238,14237,14250,14225,14237,14238,14216,14241,14225,14250,14239,14240,14215,14239,14241,14226,14251,15959,16006,15962,16008,15961,16006,15937,15959,15912,15937,15960,15982,15939,15984,15960,16165,16129,16175,16195,16203,16176,16165,16175,16195,16126,16094,16091,16091,16047,16045,16129,16126,16160,16026,16045,15981,15940,15983,15939,15940,15911,15958,15936,15958,15911,15979,15981,15936,15983,15984,15939,14240,14239,14253,14253,14239,14277,4092,4075,4091,14340,14355,14323,14404,14340,14388,4095,4077,4094,4099,4084,4095,4084,4100,4085,4085,4101,4090,4102,4096,4086,4079,4097,4103,16053,15963,16032,4096,4088,4087,4097,4088,4104,16052,16009,16008,16052,16032,16009,4102,4086,4090,8047,8023,8048,8048,8023,8030,8030,8006,8016,7986,8016,8006,7986,7973,7978,8075,8049,8047,16251,16257,16243,16217,16226,16203,16238,16231,16226,8093,8141,8126,7986,7976,7973,7831,7835,7833,3588,3619,3603,3588,3603,3572,3541,3559,3572,3532,3544,3514,3592,3574,3604,3624,3604,3637,3562,3574,3544,7561,7566,7546,7567,7561,7556,7567,7574,7579,7587,7580,7570,7580,7579,7574,14270,14257,14230,14231,14269,14256,14230,14256,14270,14258,14271,14231,7837,7843,7840,7846,7840,7843,7837,7832,7836,7832,7833,7836,7615,7621,7627,7592,7570,7590,7615,7601,7602,7590,7601,7592,7616,7629,7621,7622,7628,7616,7622,7609,7620,14234,14246,14260,14234,14261,14235,14247,14235,14262,14249,14223,14247,14249,14248,14236,14226,14248,14251,14238,14263,14237,14250,14237,14264,14265,14238,14241,14266,14239,14250,14241,14251,14267,16006,15961,15962,15959,15962,15912,15986,15961,16008,15865,15937,15912,15913,15960,15937,15913,15939,15960,16129,16160,16175,16217,16203,16195,16195,16175,16206,16125,16126,16091,16071,16091,16045,16125,16160,16126,16045,16026,16069,15979,16026,15981,15940,15939,15888,15940,15888,15911,15911,15886,15936,15936,15934,15979,14239,14266,14277,4092,4091,4105,14313,14340,14323,14388,14340,14373,4095,4094,4106,4084,4099,4107,4099,4095,\r\n4106,4084,4107,4100,4100,4101,4085,4090,4101,4102,4102,4108,4096,4097,4109,4103,16009,16032,15963,4110,4088,4096,4104,4088,4110,4097,4104,4109,16009,15986,16008,8047,8040,8023,8006,8030,8023,7986,8006,7994,8093,8049,8075,8049,8040,8047,16212,16226,16217,16231,16238,16244,16332,16333,16334,8093,8126,8111,7994,7976,7986,7831,7833,7829,7831,7829,7827,3585,3572,3603,3572,3557,3541,3544,3532,3562,3591,3604,3574,3637,3604,3622,3562,3591,3574,3637,3622,3652,7561,7546,7556,7565,7567,7556,7567,7565,7574,7580,7574,7570,14271,14269,14231,3833,3838,3831,3833,3830,3837,14271,14258,14281,7837,7840,7834,7850,7840,7846,7837,7834,7832,7832,7829,7833,7602,7621,7615,7590,7570,7582,7590,7602,7601,7602,7616,7621,7609,7622,7616,7608,7620,7609,7608,7619,7620,14260,14272,14234,14234,14272,14261,14261,14273,14235,14273,14262,14235,14247,14262,14274,14249,14247,14274,14248,14249,14275,14251,14248,14275,14238,14265,14263,14263,14264,14237,14266,14250,14264,14265,14241,14276,14251,14278,14267,14276,14241,14267,15914,15962,15961,15914,15912,15962,15961,15986,15915,15913,15937,15865,15865,15912,15887,15913,15888,15939,16159,16175,16160,16195,16206,16217,16201,16206,16175,16091,16071,16125,16071,16045,16044,16159,16160,16125,16025,16069,16026,16069,16044,16045,16025,16026,15979,15863,15911,15888,15911,15863,15886,15936,15886,15934,15979,15934,15980,14290,14277,14266,14323,14290,14313,14313,14352,14340,14340,14352,14373,14405,14388,14373,4111,4107,4099,4112,4099,4106,4113,4100,4107,4100,4114,4101,4101,4115,4102,4115,4108,4102,4096,4108,4110,15916,15963,15918,16009,15963,15986,4110,4116,4104,4104,4116,4109,8076,8049,8093,16226,16212,16229,16200,16212,16217,16238,16245,16244,16229,16239,16226,16238,16239,16245,8112,8111,8126,8111,8076,8093,7827,7829,7824,3557,3572,3585,7820,7827,7824,3591,3622,3604,3589,3591,3562,7547,7537,7546,7546,7552,7556,7565,7556,7560,7570,7574,7565,14269,14271,14281,3831,3838,3836,3833,3831,3819,3833,3819,3830,3813,3815,3822,3830,3820,3822,7834,7830,7832,7832,7824,7829,7570,7576,7582,7590,7582,7594,7602,7590,7594,7609,7616,\r\n7602,7608,7609,7594,7614,7619,7608,14282,14272,14260,14272,14283,14261,14261,14283,14273,14284,14262,14273,14262,14285,14274,14286,14249,14274,14275,14249,14286,14251,14275,14278,14265,14287,14263,14264,14263,14288,14289,14266,14264,14265,14276,14287,14278,14291,14267,14276,14267,14292,15890,15914,15961,15892,15912,15914,15915,15986,15963,15961,15915,15890,15866,15913,15865,15887,15912,15938,15887,15815,15865,15888,15913,15866,16201,16175,16159,16206,16201,16217,16112,16125,16071,16044,16024,16071,16125,16143,16159,16023,16069,16025,16069,16023,16044,16025,15979,15980,15817,15863,15888,15863,15836,15886,15934,15886,15909,15980,15934,15956,14301,14290,14266,14301,14313,14290,14337,14352,14313,14385,14373,14352,14405,14373,14403,4111,4117,4107,4099,4118,4111,4118,4099,4112,14403,14440,14405,4100,4113,4114,4113,4107,4117,4101,4114,4115,4115,4119,4108,4110,4108,4120,15915,15963,15916,15916,15918,15893,4110,4120,4116,15871,15918,15917,16229,16212,16221,16212,16200,16187,16200,16217,16201,8128,8126,8162,16229,16245,16239,8112,8126,8128,7820,7816,7819,7820,7824,7821,3622,3591,3621,3589,3621,3591,7547,7538,7537,7537,7542,7546,7546,7542,7552,7556,7552,7560,7565,7560,7570,3828,3831,3836,3819,3831,3824,3819,3820,3830,3813,3808,3815,3813,3822,3820,3821,3815,3808,7830,7824,7832,7570,7568,7576,7582,7576,7589,7589,7594,7582,7602,7594,7609,7600,7608,7594,7626,7619,7614,7600,7614,7608,14282,14295,14272,14283,14272,14296,14284,14273,14283,14284,14297,14262,14298,14285,14262,14286,14274,14285,14286,14299,14275,14275,14299,14278,14287,14288,14263,14264,14288,14300,14289,14301,14266,14289,14264,14300,14292,14287,14276,14291,14278,14302,14291,14292,14267,15890,15891,15914,15892,15938,15912,15914,15868,15892,15889,15890,15915,15866,15865,15839,15887,15938,15892,15815,15887,15844,15865,15815,15839,15817,15888,15866,16201,16159,16190,16112,16143,16125,16112,16071,16090,16044,15978,16024,16090,16071,16024,16159,16143,16174,16025,15980,16023,16003,16044,16023,15863,15817,15838,15863,15813,15836,15861,15886,15836,15909,15886,15861,15934,15909,\r\n15956,16002,15980,15956,14301,14311,14313,14370,14352,14337,14313,14311,14337,14403,14373,14385,14352,14370,14385,4111,4121,4117,4111,4118,4121,4118,4112,4122,4113,4123,4114,4124,4113,4117,4114,4125,4115,4125,4119,4115,4126,4108,4119,4126,4120,4108,15870,15915,15916,15871,15893,15918,15870,15916,15893,4116,4120,4127,15871,15917,15872,16221,16212,16199,16221,16233,16229,16157,16187,16200,16187,16199,16212,16201,16190,16200,8161,8128,8162,16245,16229,16240,7820,7821,7816,7824,7825,7821,3620,3621,3589,7538,7529,7537,7532,7542,7537,7542,7543,7552,7560,7552,7557,7570,7560,7568,3828,3824,3831,3819,3824,3812,3819,3811,3820,3804,3808,3813,3820,3811,3813,3821,3808,3825,7830,7825,7824,7576,7568,7575,7576,7588,7589,7600,7594,7589,14282,14317,14303,7613,7614,7600,14282,14303,14295,14296,14272,14295,14304,14283,14296,14284,14283,14304,14297,14284,14305,14297,14298,14262,14306,14285,14298,14286,14285,14307,14307,14299,14286,14308,14278,14299,14309,14288,14287,14310,14300,14288,14289,14311,14301,14311,14289,14300,14292,14312,14287,14302,14278,14308,14302,14314,14291,14292,14291,14315,15891,15890,15842,15914,15891,15868,15844,15892,15868,15889,15867,15890,15915,15869,15889,15840,15866,15839,15887,15892,15844,15815,15844,15822,15791,15839,15815,15817,15866,15840,16159,16174,16190,16158,16143,16112,16112,16090,16124,16044,16003,15978,15978,16004,16024,16090,16024,16070,16158,16174,16143,15976,16023,15980,16003,16023,15976,15838,15817,15772,15813,15863,15838,15813,15767,15836,15861,15836,15812,15861,15910,15909,15957,15956,15909,15976,15980,16002,15930,16002,15956,14338,14370,14337,14338,14337,14311,14424,14403,14385,14370,14371,14385,4121,4128,4117,4121,4118,4129,4129,4118,4122,4113,4124,4123,4114,4123,4125,4130,4124,4117,4125,4123,4119,4126,4119,4131,4126,4127,4120,15915,15870,15869,15871,15823,15893,15893,15823,15870,15872,15917,15873,15871,15872,15824,16211,16221,16199,16233,16221,16228,16240,16229,16233,16173,16187,16157,16157,16200,16188,16173,16199,16187,16188,16200,16190,8162,8202,8161,7816,7821,7817,7822,7821,7825,7538,7533,\r\n7529,7529,7532,7537,7542,7532,7543,7549,7552,7543,7549,7557,7552,7557,7568,7560,3828,3817,3824,3812,3824,3817,3811,3819,3812,3808,3804,3797,3804,3813,3811,7825,7828,7822,7569,7575,7568,7576,7575,7588,7588,7600,7589,14303,14317,14327,7613,7600,7599,14303,14318,14295,14319,14296,14295,14304,14296,14320,14305,14284,14304,14297,14305,14321,14321,14298,14297,14307,14285,14306,14321,14306,14298,14307,14308,14299,14309,14310,14288,14309,14287,14312,14322,14300,14310,14311,14300,14322,14292,14315,14312,14308,14324,14302,14314,14302,14325,14291,14314,14315,15890,15867,15842,15891,15842,15843,15843,15868,15891,15844,15868,15821,15867,15889,15841,15889,15869,15841,15840,15839,15816,15796,15822,15844,15770,15815,15822,15791,15816,15839,15791,15815,15770,15817,15840,15792,16188,16190,16174,16144,16158,16112,16087,16124,16090,16144,16112,16124,16003,15977,15978,16004,15978,15955,16004,15954,16024,16042,16070,16024,16090,16070,16087,16158,16188,16174,15976,15953,16003,15817,15792,15772,15813,15838,15772,15767,15813,15768,15812,15836,15767,15861,15812,15862,15861,15862,15910,15910,15957,15909,15930,15956,15957,16002,15930,15976,14338,14371,14370,14322,14338,14311,14418,14424,14385,14385,14371,14418,4121,4132,4128,4130,4117,4128,9570,9576,9574,4133,4123,4124,4134,4124,4130,4123,4131,4119,4126,4131,4135,15873,15894,15825,15869,15870,15845,15871,15824,15823,15845,15870,15823,15846,15872,15873,15872,15846,15824,16211,16228,16221,16199,16186,16211,16173,16157,16142,16188,16172,16157,16199,16173,16186,7822,7817,7821,7543,7532,7535,7535,7549,7543,7557,7549,7554,7557,7569,7568,3812,3817,3809,3811,3812,3807,3791,3797,3804,7828,7826,7822,3811,3807,3804,7575,7569,7581,7575,7581,7588,7588,7599,7600,14303,14327,14318,14327,14344,14318,14295,14318,14328,14296,14319,14320,14295,14329,14319,14304,14320,14305,14305,14330,14321,14307,14306,14331,14321,14332,14306,14307,14333,14308,14309,14334,14310,14309,14312,14335,14322,14310,14336,14339,14312,14315,14308,14341,14324,14325,14302,14324,14325,14342,14314,14343,14315,14314,15842,15867,15820,15843,15842,\r\n15795,15821,15868,15843,15796,15844,15821,15867,15841,15819,15869,15797,15841,15840,15816,15792,15822,15796,15770,15790,15816,15791,15748,15791,15770,16144,16172,16158,16122,16124,16087,16144,16124,16122,15977,16003,15953,15933,15978,15977,15933,15955,15978,16004,15955,15954,15999,16024,15954,16042,16087,16070,15999,16042,16024,16188,16158,16172,15976,15930,15953,15749,15772,15792,15768,15813,15772,15768,15701,15767,15812,15767,15789,15837,15862,15812,15935,15910,15862,15935,15957,15910,15957,15935,15930,14338,14353,14371,14338,14322,14353,14418,14456,14424,14421,14418,14371,9568,9569,9570,4130,4128,4136,9570,9574,9572,4123,4133,4131,4133,4124,4134,4134,4130,4136,4133,4135,4131,9599,9611,9620,15873,15825,15846,15797,15869,15845,15824,15775,15823,15798,15845,15823,15776,15824,15846,16210,16211,16186,16142,16157,16123,16156,16173,16142,16141,16157,16172,16156,16186,16173,7822,7818,7817,7535,7544,7549,7549,7544,7554,7563,7557,7554,7569,7557,7563,3809,3798,3812,3812,3798,3807,3781,3797,3791,3791,3804,3796,7823,7822,7826,3807,3796,3804,7569,7578,7581,7593,7588,7581,7593,7599,7588,14318,14344,14360,14345,14328,14318,14295,14328,14329,14346,14320,14319,14329,14346,14319,14347,14305,14320,14330,14305,14348,14332,14321,14330,14331,14306,14349,14307,14331,14333,14332,14350,14306,14341,14308,14333,14309,14335,14334,14310,14334,14336,14312,14339,14335,14322,14336,14351,14339,14315,14354,14324,14341,14356,14356,14325,14324,14357,14342,14325,14358,14314,14342,14354,14315,14343,14343,14314,14359,15818,15820,15867,15842,15820,15795,15795,15821,15843,15821,15752,15796,15819,15841,15794,15867,15819,15818,15794,15841,15797,15749,15792,15816,15770,15796,15753,15749,15816,15790,15748,15790,15791,15770,15703,15748,16144,16141,16172,16111,16122,16087,16144,16122,16141,15931,15977,15953,15933,15977,15931,15933,15908,15955,15954,15955,15908,15928,15999,15954,16067,16087,16042,16021,16042,15999,15930,15883,15953,15749,15730,15772,15772,15730,15768,15768,15730,15701,15747,15767,15701,15747,15789,15767,15812,15789,15837,15864,15862,15837,15884,\r\n15935,15862,15935,15884,15930,14353,14386,14371,14369,14353,14322,14418,14455,14456,14418,14421,14455,14371,14400,14421,4137,4136,4128,9568,9570,9571,9571,9570,9572,9591,9581,9587,9581,9577,9579,9599,9591,9595,9605,9611,9599,15825,15776,15846,15797,15845,15798,15776,15775,15824,15775,15798,15823,16210,16186,16189,16141,16123,16157,16110,16142,16123,16156,16142,16110,16186,16156,16171,7823,7818,7822,7544,7535,7540,7544,7558,7554,7563,7554,7562,7573,7569,7563,3809,3795,3798,3796,3807,3798,3791,3767,3781,3780,3791,3796,7573,7578,7569,7578,7591,7581,7581,7591,7593,7593,7606,7599,14318,14360,14345,14345,14361,14328,14361,14329,14328,14346,14347,14320,14362,14346,14329,14347,14348,14305,14330,14348,14363,14332,14330,14364,14349,14306,14350,14331,14349,14365,14333,14331,14366,14350,14332,14364,14366,14341,14333,14335,14367,14334,14336,14334,14368,14339,14367,14335,14351,14336,14368,14369,14322,14351,14339,14354,14372,14366,14356,14341,14357,14325,14356,14374,14342,14357,14358,14359,14314,14358,14342,14375,14354,14343,14376,14343,14359,14376,15773,15820,15818,15773,15795,15820,15821,15795,15752,15753,15796,15752,15794,15774,15819,15818,15819,15774,15794,15797,15754,15770,15753,15703,15771,15749,15790,15750,15790,15748,15729,15748,15703,16122,16111,16141,16067,16111,16087,15931,15953,15883,15931,15885,15933,15933,15885,15908,15954,15908,15932,15974,15999,15928,15928,15954,15932,16021,16067,16042,15974,16021,15999,15907,15883,15930,15749,15704,15730,15726,15701,15730,15701,15702,15747,15789,15747,15769,15814,15837,15789,15884,15862,15864,15814,15864,15837,15930,15884,15907,14399,14386,14353,14400,14371,14386,14384,14353,14369,14488,14456,14455,14421,14458,14455,14400,14438,14421,9568,9575,9577,9571,9573,9568,9587,9581,9584,9595,9591,9587,9577,9575,9579,9584,9581,9579,9605,9599,9595,9605,9619,9611,15776,15825,15799,15755,15797,15798,15776,15735,15775,15755,15798,15775,16186,16171,16189,16141,16111,16123,16110,16123,16088,16156,16110,16140,16156,16140,16171,3781,3754,3779,7550,7544,7540,7544,7555,7558,7554,7558,7562,7562,7572,\r\n7563,7563,7572,7573,3795,3792,3798,3796,3798,3782,3780,3767,3791,3781,3767,3754,3780,3796,3782,7578,7573,7586,7591,7578,7586,7593,7591,7606,14345,14360,14377,14345,14362,14361,14361,14362,14329,14346,14378,14347,14362,14378,14346,14348,14347,14379,14348,14379,14363,14363,14364,14330,14349,14350,14380,14365,14349,14381,14365,14366,14331,14380,14350,14364,14368,14334,14367,14339,14382,14367,14351,14368,14383,14351,14384,14369,14354,14376,14372,14372,14387,14339,14389,14356,14366,14389,14357,14356,14375,14342,14374,14374,14357,14390,14358,14376,14359,14391,14358,14375,15793,15773,15818,15795,15773,15752,15753,15752,15707,15794,15751,15774,15818,15774,15793,15754,15797,15755,15794,15754,15751,15753,15707,15703,15749,15771,15704,15750,15771,15790,15750,15748,15729,15729,15703,15683,16088,16111,16067,15931,15883,15885,15885,15860,15908,15860,15932,15908,15974,15928,15951,15932,15929,15928,16041,16067,16021,15998,16021,15974,15907,15859,15883,15730,15704,15684,15726,15681,15701,15726,15730,15728,15701,15660,15702,15727,15747,15702,15727,15769,15747,15769,15814,15789,15835,15884,15864,15814,15835,15864,15907,15884,15859,14386,14399,14420,14384,14399,14353,14422,14400,14386,14488,14455,14512,14421,14438,14458,14487,14455,14458,14438,14400,14422,9575,9568,9573,9592,9587,9584,9592,9595,9587,9575,9580,9579,9584,9579,9586,9606,9605,9595,9606,9619,9605,15776,15799,15736,15776,15736,15735,15755,15775,15735,16189,16171,16155,16088,16123,16111,16041,16110,16088,16140,16110,16089,16171,16140,16155,7555,7544,7550,7555,7564,7558,7558,7564,7562,7571,7572,7562,7573,7572,7585,3776,3792,3795,3782,3798,3792,3755,3767,3780,3743,3754,3767,3780,3782,3755,7573,7585,7586,7597,7591,7586,7605,7606,7591,14393,14377,14360,14392,14345,14377,14362,14345,14392,14378,14379,14347,14394,14378,14362,14395,14363,14379,14364,14363,14396,14381,14349,14380,14365,14381,14397,14365,14389,14366,14380,14364,14396,14368,14367,14398,14382,14339,14387,14382,14398,14367,14383,14368,14398,14384,14351,14383,14372,14376,14401,14387,14372,14402,14390,14357,14389,14374,14406,\r\n14375,14374,14390,14407,14391,14376,14358,14391,14375,14408,15773,15793,15733,15773,15732,15752,15752,15732,15707,15733,15774,15751,15733,15793,15774,15755,15708,15754,15754,15734,15751,15703,15707,15688,15750,15704,15771,15750,15729,15705,15703,15643,15683,15731,15729,15683,16041,16088,16067,15885,15883,15811,15811,15860,15885,15932,15860,15929,15905,15951,15928,15974,15951,15998,15881,15928,15929,15998,16041,16021,15883,15859,15811,15684,15704,15662,15730,15684,15728,15726,15728,15681,15681,15660,15701,15660,15680,15702,15727,15702,15680,15769,15727,15765,15786,15814,15769,15859,15884,15835,15786,15835,15814,14420,14399,14437,14386,14420,14422,14419,14399,14384,14510,14512,14455,14459,14458,14438,14510,14455,14487,14487,14458,14511,14438,14422,14459,9578,9575,9573,9593,9592,9584,9600,9595,9592,9578,9580,9575,9579,9580,9583,9583,9586,9579,9593,9584,9586,9600,9606,9595,9619,9606,9621,15689,15735,15736,15709,15755,15735,16185,16189,16155,16086,16110,16041,16086,16089,16110,16121,16140,16089,16121,16155,16140,1602,1621,1567,1589,1620,1602,7564,7571,7562,7571,7585,7572,3776,3768,3792,3788,3776,3795,3782,3792,3768,3767,3755,3743,3782,3768,3755,7586,7585,7596,7597,7605,7591,7597,7586,7604,14409,14377,14393,14392,14377,14410,14394,14362,14392,14378,14411,14379,14394,14411,14378,14395,14412,14363,14379,14413,14395,14363,14412,14396,14380,14414,14381,14381,14407,14397,14365,14397,14389,14380,14396,14414,14387,14415,14382,14415,14398,14382,14416,14383,14398,14384,14383,14417,14391,14401,14376,14372,14401,14402,14402,14423,14387,14390,14389,14397,14374,14407,14406,14406,14408,14375,14407,14390,14397,14408,14425,14391,15732,15773,15733,15732,15687,15707,15751,15706,15733,15755,15709,15708,15708,15734,15754,15711,15751,15734,15707,15665,15688,15703,15688,15643,15704,15750,15705,15731,15705,15729,15639,15683,15643,15731,15683,15685,15811,15834,15860,15860,15882,15929,15904,15951,15905,15905,15928,15881,15998,15951,15973,15881,15929,15882,16041,15998,16020,15859,15810,15811,15704,15705,15662,15625,15684,15662,15682,15728,15684,\r\n15728,15682,15681,15681,15637,15660,15660,15622,15680,15725,15727,15680,15725,15765,15727,15769,15765,15786,15859,15835,15810,15835,15786,15787,14419,14437,14399,14420,14437,14422,14419,14384,14436,14512,14510,14545,14459,14492,14458,14510,14487,14525,14458,14492,14511,14525,14487,14511,14422,14437,14459,9601,9592,9593,9601,9600,9592,9582,9580,9578,9582,9583,9580,9588,9586,9583,9588,9593,9586,9606,9600,9612,9606,9612,9621,15709,15735,15689,15689,15736,15710,16170,16185,16155,16086,16041,16066,16086,16068,16089,16085,16121,16089,16139,16155,16121,1589,1602,1567,7577,7564,7583,7571,7564,7577,7584,7585,7571,3776,3744,3768,3788,3764,3776,3755,3718,3743,3768,3744,3755,7596,7585,7595,7604,7586,7596,7605,7597,7611,7610,7597,7604,14409,14427,14377,14428,14409,14393,14427,14410,14377,14410,14429,14392,14394,14392,14426,14411,14413,14379,14426,14411,14394,14430,14412,14395,14413,14430,14395,14412,14431,14396,14432,14381,14414,14381,14433,14407,14414,14396,14431,14434,14415,14387,14416,14398,14415,14383,14416,14435,14417,14383,14435,14417,14436,14384,14391,14439,14401,14402,14401,14439,14402,14439,14423,14434,14387,14423,14441,14406,14407,14442,14408,14406,14442,14425,14408,14425,14439,14391,15732,15733,15686,15732,15686,15687,15707,15687,15665,15711,15706,15751,15733,15706,15686,15709,15668,15708,15734,15708,15669,15711,15734,15669,15688,15665,15666,15666,15643,15688,15731,15685,15705,15663,15683,15639,15639,15643,15624,15683,15663,15685,15788,15834,15811,15834,15858,15860,15860,15858,15882,15904,15973,15951,15905,15856,15904,15905,15881,15856,15998,15973,16020,15882,15832,15881,16020,16066,16041,15766,15811,15810,15685,15662,15705,15625,15682,15684,15625,15662,15640,15682,15661,15681,15637,15681,15661,15660,15637,15622,15680,15622,15659,15700,15725,15680,15765,15725,15723,15746,15786,15765,15835,15787,15810,15746,15787,15786,14419,14457,14437,14436,14457,14419,9578,9589,9585,14459,14491,14492,14525,14546,14510,14511,14492,14529,14511,14547,14525,14437,14491,14459,9607,9601,9593,9613,9600,9601,9578,9585,9582,9582,9588,9583,\r\n9593,9588,9598,9612,9600,9613,9621,9612,9630,15709,15689,15668,15710,15646,15689,16170,16155,16139,16086,16066,16068,16043,16089,16068,16121,16085,16109,16085,16089,16043,16121,16109,16139,1546,1589,1567,1589,1545,1565,7577,7584,7571,7595,7585,7584,3776,3764,3744,3788,3763,3764,3755,3744,3718,7604,7596,7595,7610,7611,7597,7595,7610,7604,14443,14427,14409,14428,14443,14409,14410,14427,14444,14429,14410,14445,14426,14392,14429,14411,14446,14413,14446,14411,14426,14447,14412,14430,14448,14430,14413,14447,14431,14412,14432,14433,14381,14432,14414,14449,14433,14441,14407,14431,14450,14414,14434,14451,14415,14452,14416,14415,14416,14452,14435,14417,14435,14453,14417,14454,14436,14439,14460,14423,14460,14434,14423,14442,14406,14441,14442,14461,14425,14461,14439,14425,15687,15686,15642,15687,15642,15665,15711,15667,15706,15686,15706,15664,15668,15669,15708,15667,15711,15669,15607,15666,15665,15643,15666,15607,15663,15639,15626,15624,15643,15607,15624,15604,15639,15685,15663,15641,15788,15785,15834,15788,15811,15766,15834,15808,15858,15858,15808,15882,15927,15973,15904,15856,15855,15904,15832,15856,15881,15975,16020,15973,15882,15808,15832,16066,16020,16022,15766,15810,15787,15640,15662,15685,15625,15661,15682,15606,15625,15640,15637,15661,15623,15622,15637,15602,15622,15621,15659,15680,15659,15700,15700,15699,15725,15699,15723,15725,15746,15765,15723,15746,15766,15787,14457,14473,14437,14436,14454,14457,14492,14491,14528,14525,14563,14546,14492,14528,14529,14511,14529,14547,14547,14563,14525,14437,14490,14491,9607,9614,9601,9593,9604,9607,9601,9622,9613,9585,9590,9582,9588,9582,9594,9598,9588,9596,9593,9598,9604,9629,9612,9613,9629,9630,9612,15646,15668,15689,9629,9642,9630,16184,16170,16139,16066,16022,16068,16043,16068,16022,16109,16085,16065,16040,16085,16043,16139,16109,16108,1589,1546,1566,1527,1546,1567,1589,1566,1545,1526,1565,1545,1588,1601,1565,7595,7584,7603,7610,7624,7611,7595,7603,7610,14443,14444,14427,1507,1427,1475,14444,14463,14410,14410,14463,14445,14429,14445,14464,14462,14426,14429,14446,14448,14413,14446,\r\n14426,14465,14466,14447,14430,14430,14448,14467,14468,14431,14447,14432,14469,14433,14449,14414,14450,14432,14449,14469,14441,14433,14469,14468,14450,14431,14460,14451,14434,14451,14470,14415,14452,14415,14470,14471,14435,14452,14472,14453,14435,14453,14454,14417,14474,14460,14439,14441,14475,14442,14442,14476,14461,14461,14474,14439,15642,15686,15664,15607,15665,15642,15706,15667,15664,15628,15669,15668,15667,15669,15645,15639,15638,15626,15663,15626,15627,15607,15587,15624,15624,15586,15604,15639,15604,15638,15663,15627,15641,15640,15685,15641,15788,15724,15785,15834,15785,15808,15766,15724,15788,15927,15975,15973,15904,15903,15927,15855,15856,15805,15904,15855,15903,15806,15856,15832,15975,16022,16020,15808,15809,15832,15625,15623,15661,15625,15606,15573,15640,15641,15606,15603,15637,15623,15637,15603,15602,15602,15570,15622,15622,15570,15621,15621,15636,15659,15700,15659,15658,15699,15700,15658,15699,15679,15723,15679,15746,15723,15766,15746,15724,14473,14457,14489,14490,14437,14473,14457,14454,14486,14491,14527,14528,14528,14566,14529,14547,14529,14567,14547,14585,14563,14490,14527,14491,9607,9604,9614,9601,9614,9622,9613,9622,9631,9582,9590,9594,9588,9594,9596,9598,9596,9608,9610,9604,9598,9613,9631,9629,15628,15668,15646,9643,9642,9629,16169,16184,16139,16022,16001,16043,16085,16040,16065,16108,16109,16065,16040,16043,16001,16139,16108,16138,1546,1504,1566,1504,1546,1527,1567,1568,1527,1566,1504,1545,1565,1526,1588,1504,1526,1545,1588,1619,1601,1454,1427,1477,7617,7610,7603,1475,1396,1503,1451,1475,1427,14463,14444,14477,14445,14463,14477,14464,14445,14478,14464,14462,14429,14465,14426,14462,14446,14479,14448,14446,14465,14479,14468,14447,14466,14467,14466,14430,14479,14467,14448,14449,14450,14480,14469,14449,14481,14469,14481,14441,14480,14450,14468,14460,14482,14451,14483,14470,14451,14452,14470,14484,14471,14472,14435,14471,14452,14484,14453,14472,14485,14453,14485,14454,14474,14482,14460,14475,14441,14493,14494,14442,14475,14476,14442,14494,14461,14476,14474,15642,15664,15608,15642,15608,15607,15608,15664,\r\n15667,15669,15628,15645,15644,15667,15645,15626,15638,15605,15588,15627,15626,15607,15575,15587,15586,15624,15587,15556,15604,15586,15605,15638,15604,15627,15606,15641,15724,15764,15785,15808,15785,15764,15952,15975,15927,15927,15903,15880,15806,15805,15856,15807,15855,15805,15903,15855,15880,15832,15783,15806,16022,15975,16001,15809,15808,15764,15832,15809,15783,15625,15573,15623,15606,15574,15573,15603,15623,15585,15571,15602,15603,15602,15571,15570,15601,15621,15570,15636,15621,15600,15636,15658,15659,15699,15658,15657,15699,15657,15679,15679,15724,15746,14457,14486,14489,14490,14473,14489,14454,14509,14486,14527,14565,14528,14528,14565,14566,14586,14529,14566,14586,14567,14529,14547,14567,14585,14597,14563,14585,14490,14526,14527,9614,9604,9610,9627,9622,9614,9635,9631,9622,9597,9594,9590,9602,9596,9594,9596,9602,9608,9598,9608,9617,9598,9617,9610,9643,9629,9631,15589,15628,15646,9642,9643,9655,16138,16169,16139,16040,16019,16065,16064,16108,16065,16000,16040,16001,16084,16138,16108,1504,1527,1452,1568,1528,1527,7630,7639,7635,1476,1526,1504,7630,7623,7603,1427,1454,1365,7603,7623,7617,1451,1396,1475,14497,14477,14444,1427,1400,1451,14498,14445,14477,14499,14478,14445,14464,14478,14500,14464,14496,14462,14462,14495,14465,14479,14465,14495,14468,14466,14501,14467,14502,14466,14467,14479,14503,14449,14480,14504,14449,14504,14481,14441,14481,14493,14480,14468,14501,14505,14451,14482,14483,14484,14470,14506,14483,14451,14471,14507,14472,14471,14484,14507,14472,14508,14485,14454,14485,14509,14474,14513,14482,14475,14493,14514,14475,14514,14494,14476,14494,14515,14474,14476,14513,15575,15607,15608,15608,15667,15644,15645,15628,15610,15644,15645,15609,15588,15626,15605,15627,15588,15606,15537,15587,15575,15555,15586,15587,15605,15604,15556,15555,15556,15586,15764,15724,15722,15952,16001,15975,15927,15906,15952,15927,15880,15906,15762,15805,15806,15880,15855,15807,15807,15805,15763,15783,15762,15806,15809,15764,15783,15623,15573,15585,15588,15574,15606,15535,15573,15574,15571,15603,15585,15570,15571,15551,15601,15600,\r\n15621,15569,15601,15570,15620,15636,15600,15620,15658,15636,15620,15657,15658,15679,15657,15635,15724,15679,15698,11434,11286,11388,14526,14490,14489,11434,11471,11387,14565,14527,14564,14565,14598,14566,14599,14586,14566,14600,14567,14586,14567,14601,14585,9626,9618,9597,14527,14526,14564,9627,9614,9610,9635,9622,9627,9635,9643,9631,9603,9594,9597,9602,9594,9603,9602,9615,9608,9608,9625,9617,9628,9610,9617,15628,15589,15610,15558,15589,15611,16169,16138,16183,16040,15997,16019,16064,16065,16019,16084,16108,16064,15997,16040,16000,16001,15952,16000,16138,16084,16120,1528,1452,1527,1476,1504,1452,1528,1568,1547,7643,7635,7639,7630,7635,7623,7643,7639,7648,1478,1365,1454,1427,1365,1400,7623,7631,7617,1451,1400,1396,1326,1396,1362,14498,14499,14445,1290,1201,1326,14516,14478,14499,14500,14478,14516,14500,14496,14464,14462,14496,14495,14517,14479,14495,14501,14466,14518,14503,14502,14467,14502,14518,14466,14503,14479,14517,14519,14504,14480,14504,14520,14481,14520,14493,14481,14519,14480,14501,14506,14451,14505,14482,14521,14505,14483,14522,14484,14523,14483,14506,14507,14508,14472,14507,14484,14522,14485,14508,14524,14485,14524,14509,14513,14530,14482,14514,14493,14520,14514,14531,14494,14531,14515,14494,14513,14476,14515,15608,15576,15575,15608,15644,15609,15609,15645,15610,15605,15557,15588,15555,15587,15537,15537,15575,15538,15605,15556,15557,15518,15556,15555,15722,15724,15698,15722,15783,15764,15950,15952,15906,15880,15857,15906,15762,15763,15805,15880,15807,15857,15807,15763,15784,15783,15744,15762,15553,15585,15573,15588,15557,15574,15554,15573,15535,15535,15574,15536,15571,15585,15553,15551,15571,15552,15551,15532,15570,15568,15600,15601,15568,15601,15569,15532,15569,15570,15584,15620,15600,15657,15620,15635,15698,15679,15635,11387,11286,11434,11388,11286,11337,11386,11388,11337,14562,14583,14509,14564,14598,14565,14566,14598,14599,14599,14614,14586,14600,14615,14567,14600,14586,14616,14601,14567,14615,9609,9597,9618,11386,11285,11433,9628,9627,9610,9640,9635,9627,9648,9643,9635,9603,9597,9609,9602,9603,9616,\r\n9602,9623,9615,9615,9624,9608,9608,9624,9625,9625,9634,9617,9628,9617,9634,15577,15610,15589,15577,15589,15558,16138,16168,16183,15997,15972,16019,16019,16018,16064,16064,16063,16084,15997,16000,15950,15950,16000,15952,16120,16154,16138,1528,1506,1452,1476,1452,1397,1528,1547,1506,7644,7635,7643,7635,7636,7623,1505,1476,1397,7640,7645,7631,1400,1365,1333,7636,7631,7623,1400,1362,1396,1290,1326,1362,1201,1157,1124,1290,1243,1201,14499,14534,14516,14535,14500,14516,14533,14496,14500,14496,14532,14495,14517,14495,14536,14537,14501,14518,14538,14502,14503,14539,14518,14502,14503,14517,14540,14504,14519,14541,14504,14541,14520,14519,14501,14537,14506,14505,14523,14482,14530,14521,14521,14523,14505,14483,14542,14522,14483,14523,14542,14507,14522,14508,14524,14508,14543,14544,14509,14524,14513,14548,14530,14514,14520,14549,14514,14550,14531,14531,14548,14515,14513,14515,14548,15608,15609,15576,15575,15576,15538,15609,15610,15577,15537,15534,15555,15537,15538,15521,15556,15572,15557,15519,15556,15518,15518,15555,15534,15698,15678,15722,15722,15745,15783,15926,15950,15906,15906,15857,15926,15762,15743,15763,15833,15857,15807,15763,15721,15784,15833,15807,15784,15783,15745,15744,15720,15762,15744,15553,15573,15554,15536,15574,15557,15517,15554,15535,15536,15503,15535,15553,15516,15571,15552,15571,15516,15552,15515,15551,15551,15515,15532,15600,15568,15567,15531,15568,15569,15532,15531,15569,15584,15635,15620,15584,15600,15567,15698,15635,15678,11286,11387,11338,11189,11337,11286,11285,11386,11337,11472,11435,11387,14509,14544,14562,14613,14598,14564,14599,14598,14633,14599,14633,14614,14586,14614,14634,14615,14600,14616,14616,14586,14634,14635,14601,14615,14632,14564,14646,9640,9627,9628,9640,9649,9635,9635,9656,9648,9609,9616,9603,9616,9623,9602,9632,9615,9623,9624,9615,9632,9638,9625,9624,9639,9634,9625,9628,9634,9641,15558,15539,15577,16154,16168,16138,15997,15950,15972,16019,15972,16018,16063,16064,16018,16063,16039,16084,16154,16120,16137,1453,1452,1506,1398,1397,1452,1547,1479,1506,7644,7636,7635,7644,7643,7650,7643,7651,\r\n7650,1401,1328,1365,7640,7631,7636,1294,1333,1365,1399,1400,1333,1400,1395,1362,1362,1395,1290,1201,1243,1157,1157,1074,1124,1290,1291,1243,1074,1036,1124,14516,14534,14553,14535,14552,14500,14516,14553,14535,14533,14551,14496,14552,14533,14500,14532,14496,14551,14532,14536,14495,14540,14517,14536,14554,14537,14518,14538,14539,14502,14503,14540,14538,14554,14518,14539,14519,14555,14541,14549,14520,14541,14519,14537,14556,14557,14521,14530,14523,14521,14558,14542,14559,14522,14523,14560,14542,14559,14508,14522,14559,14543,14508,14524,14543,14561,14544,14524,14561,14568,14530,14548,14549,14569,14514,14514,14569,14550,14550,14570,14531,14531,14570,14548,15576,15609,15577,15538,15576,15539,15537,15505,15534,15521,15538,15506,15537,15521,15505,15556,15519,15572,15557,15572,15519,15519,15518,15485,15518,15534,15502,15678,15719,15722,15722,15719,15745,15902,15950,15926,15857,15902,15926,15762,15720,15743,15763,15743,15721,15833,15831,15857,15784,15721,15782,15833,15784,15830,15745,15697,15744,15720,15744,15697,15533,15553,15554,15557,15519,15536,15517,15533,15554,15517,15535,15503,15536,15504,15503,15553,15533,15516,15552,15516,15515,15532,15515,15482,15530,15567,15568,15530,15568,15531,15499,15531,15532,15635,15584,15619,15567,15550,15584,15635,15655,15678,11435,11338,11387,11286,11338,11238,11285,11337,11189,11286,11238,11189,14562,14544,14582,14613,14631,14598,14613,14564,14632,14598,14631,14633,14633,14647,14614,14648,14634,14614,14615,14616,14649,14616,14634,14650,14635,14615,14651,11336,11285,11237,9628,9641,9640,9657,9649,9640,9635,9649,9656,9648,9656,9663,9616,9633,9623,9632,9623,9636,9632,9637,9624,9638,9639,9625,9638,9624,9646,9634,9639,9647,9634,9647,9641,15558,15522,15539,15576,15577,15539,16168,16154,16137,15950,15902,15972,16018,15972,15996,15995,16063,16018,16063,15995,16039,1453,1398,1452,1506,1479,1453,1398,1330,1397,7644,7649,7636,7644,7650,7649,1329,1397,1330,16335,16336,16337,1294,1365,1328,7640,7636,7646,1333,1294,1248,1400,1399,1395,1333,1332,1399,1290,1395,1332,1202,1157,1243,1157,1123,1074,1290,1332,\r\n1291,1243,1291,1202,1074,962,1036,1036,962,999,14552,14535,14572,14553,14573,14535,14552,14551,14533,14532,14551,14571,14532,14571,14536,14536,14571,14540,14554,14574,14537,14575,14539,14538,14540,14576,14538,14554,14539,14575,14519,14556,14555,14541,14555,14577,14541,14577,14549,14578,14556,14537,14557,14558,14521,14557,14530,14579,14523,14558,14580,14542,14560,14559,14523,14580,14560,14543,14559,14560,14561,14543,14581,14561,14584,14544,14530,14568,14579,14568,14548,14570,14549,14577,14569,14569,14587,14550,14550,14588,14570,15538,15539,15506,15534,15505,15520,15506,15473,15521,15505,15521,15473,15518,15502,15485,15504,15519,15485,15520,15502,15534,15678,15675,15719,15745,15719,15718,15857,15854,15902,15743,15720,15677,15677,15721,15743,15833,15830,15831,15854,15857,15831,15721,15742,15782,15830,15784,15782,15718,15697,15745,15677,15720,15697,15536,15519,15504,15483,15533,15517,15517,15503,15484,15471,15503,15504,15533,15483,15516,15515,15516,15500,15482,15515,15500,15532,15482,15499,15567,15530,15550,15498,15530,15531,15498,15531,15499,15599,15619,15584,15619,15655,15635,15566,15584,15550,15655,15675,15678,14582,14630,14644,11338,11339,11238,11237,11285,11189,11189,11238,11143,14584,14582,14544,14645,14631,14613,11336,11284,11385,14633,14631,14663,14633,14664,14647,14648,14614,14647,14634,14648,14665,14650,14649,14616,14649,14666,14615,14650,14634,14665,14615,14666,14651,11237,11284,11336,9640,9641,9654,9657,9656,9649,9662,9657,9640,9656,9668,9663,9636,9623,9633,9636,9644,9632,9632,9644,9637,9637,9645,9624,9639,9638,9652,9645,9646,9624,9646,9653,9638,9639,9652,9647,9654,9641,9647,15539,15522,15506,15949,15972,15902,15949,15996,15972,15995,16018,15996,16039,15995,15992,1426,1398,1453,1453,1479,1455,1398,1364,1330,7649,7646,7636,1327,1329,1292,1329,1330,1245,1244,1328,1363,1294,1328,1249,1294,1205,1248,1248,1332,1333,1399,1332,1395,1158,1157,1202,1157,1158,1123,1035,1074,1123,1332,1247,1291,1202,1291,1203,1074,1035,962,962,918,999,14572,14535,14590,14552,14572,14589,1006,999,918,14535,14573,14590,14551,14552,14589,\r\n14571,14551,14589,14571,14576,14540,14591,14574,14554,14537,14574,14578,14575,14538,14576,14575,14591,14554,14555,14556,14592,14577,14555,14593,14578,14592,14556,14557,14594,14558,14595,14557,14579,11516,11440,11542,14580,14581,14560,14581,14543,14560,14596,14561,14581,11201,11350,11301,14579,14568,14595,14568,14570,14595,14569,14577,14587,14550,14587,14588,14570,14588,14595,15520,15505,15486,15473,15506,15487,15505,15473,15486,15470,15485,15502,15471,15504,15485,15502,15520,15486,15719,15675,15718,15901,15902,15854,15721,15677,15696,15830,15781,15831,15804,15854,15831,15721,15695,15742,15781,15782,15742,15781,15830,15782,15718,15656,15697,15677,15697,15656,15483,15517,15501,15471,15484,15503,15484,15501,15517,15516,15483,15500,15482,15500,15468,15499,15482,15467,15514,15550,15530,15514,15530,15498,15498,15499,15481,15599,15596,15619,15566,15599,15584,15619,15596,15655,15550,15529,15566,15675,15655,15596,14582,14612,14630,14644,14630,14661,11287,11238,11339,11142,11237,11189,11287,11143,11238,11143,11051,11189,14582,14584,14612,11384,11283,11282,14645,14613,14662,14664,14633,14663,14647,14664,14648,14665,14648,14675,14649,14650,14665,14666,14649,14665,11237,11142,11284,9662,9640,9654,9656,9657,9668,9662,9667,9657,15487,15522,15540,14666,14665,14687,14687,14686,14709,9644,9650,9637,9651,9645,9637,9652,9638,9659,9646,9645,9658,9646,9660,9653,9661,9638,9653,9647,9652,9654,15487,15506,15522,15901,15949,15902,15996,15949,15948,15995,15996,15948,15992,15995,15947,1426,1364,1398,1426,1453,1455,1455,1479,1428,1293,1330,1364,1327,1244,1363,1292,1329,1245,1327,1292,1244,1293,1245,1330,1244,1249,1328,1294,1249,1205,1248,1205,1161,1247,1332,1248,1125,1158,1202,1038,1123,1158,1038,1035,1123,1247,1203,1291,1125,1202,1203,998,962,1035,962,834,918,14603,14572,14590,14603,14589,14572,1006,918,925,14604,14590,14573,14571,14589,14602,14576,14571,14602,14591,14605,14574,14578,14574,14605,14575,14576,14606,14575,14606,14591,14592,14593,14555,14607,14577,14593,14592,14578,14608,14594,14557,14609,14594,14610,14558,14595,14609,14557,11475,\r\n11440,11516,11516,11542,11568,14580,14611,14581,11249,11201,11301,14611,14596,14581,14629,14584,14643,14587,14577,14607,14617,14588,14587,14595,14588,14618,15461,15473,15487,15486,15473,15447,15470,15460,15485,15502,15472,15470,15460,15471,15485,15502,15486,15472,15656,15718,15675,15901,15854,15853,15634,15696,15677,15696,15695,15721,15804,15831,15781,15804,15853,15854,15695,15694,15742,15781,15742,15761,15677,15656,15634,15458,15483,15501,15484,15471,15437,15469,15501,15484,15483,15468,15500,15457,15482,15468,15457,15467,15482,15467,15481,15499,15550,15514,15529,15514,15498,15466,15481,15466,15498,15599,15565,15596,15565,15599,15566,15548,15566,15529,15675,15596,15654,14630,14612,14642,14630,14642,14661,16338,16339,16340,11142,11189,11051,16338,16340,16342,11143,11096,11051,14629,14612,14584,11283,11188,11282,11283,11284,11142,11335,11382,11282,14684,14648,14664,14648,14685,14675,14675,14686,14665,9662,9654,9667,9657,9673,9668,9657,9667,9673,9668,9679,9688,14686,14687,14665,14686,14708,14709,14732,14709,14708,9651,9637,9650,9645,9651,9658,9638,9661,9659,9659,9654,9652,9664,9646,9658,9660,9646,9664,9665,9653,9660,9653,9666,9661,15901,15948,15949,15995,15948,15947,1364,1426,1367,1426,1455,1368,1368,1455,1428,1293,1364,1331,1159,1292,1245,1292,1159,1244,1293,1204,1245,1162,1249,1244,1249,1162,1205,1076,1161,1205,1248,1161,1247,1125,1038,1158,998,1035,1038,1161,1203,1247,1203,1077,1125,998,834,962,918,834,878,14620,14603,14590,14603,14619,14589,925,918,839,14620,14590,14604,14602,14589,14619,14602,14606,14576,14621,14605,14591,14578,14605,14622,14606,14623,14591,14592,14624,14593,14625,14607,14593,14608,14578,14622,14626,14592,14608,14627,14594,14609,14627,14610,14594,14609,14595,14628,11475,11393,11440,14706,14674,14694,14674,14610,14660,11440,11393,11302,11157,11201,11249,11302,11157,11249,11191,11201,11107,14636,14587,14607,14588,14617,14618,14636,14617,14587,14595,14618,14628,15447,15473,15461,15487,15488,15461,15486,15447,15472,15470,15445,15460,15470,15472,15446,15437,15471,15460,15675,15654,15656,15900,15901,15853,\r\n15634,15676,15696,15696,15676,15695,15761,15804,15781,15804,15829,15853,15695,15653,15694,15694,15717,15742,15717,15761,15742,15618,15634,15656,15458,15468,15483,15458,15501,15469,15437,15469,15484,15436,15457,15468,15444,15467,15457,15467,15456,15481,15514,15497,15529,15514,15466,15497,15466,15481,15456,15565,15564,15596,15566,15548,15565,15548,15529,15528,15618,15654,15596,14629,14642,14612,16348,16349,16350,16339,16341,16340,11142,11051,11095,11190,11096,11143,11006,11051,11096,11283,11236,11188,11188,11235,11282,11142,11236,11283,11335,11282,11235,14648,14684,14685,14675,14685,14695,14686,14675,14696,9654,9670,9667,9668,9673,9679,9678,9673,9667,14686,14696,14708,14708,14744,14732,14763,14732,14757,14757,14772,14763,9661,9669,9659,9670,9654,9659,14786,14772,14770,9671,9660,9664,9665,9672,9653,9665,9660,9671,9653,9672,9666,9661,9666,9669,15900,15948,15901,15925,15947,15948,1426,1368,1367,1364,1367,1331,1402,1368,1428,1293,1331,1246,1159,1245,1204,1244,1159,1162,1246,1204,1293,1162,1076,1205,1076,1077,1161,1037,1038,1125,964,998,1038,1161,1077,1203,1037,1125,1077,998,963,834,878,834,789,878,839,918,14620,14637,14603,14619,14603,14638,882,925,839,14620,14604,14639,14602,14619,14623,14602,14623,14606,14621,14640,14605,14591,14623,14621,14605,14640,14622,14626,14624,14592,14624,14625,14593,14625,14636,14607,14608,14622,14626,14609,14628,14627,14627,14641,14610,14706,14717,14727,14694,14674,14683,14706,14694,14717,14641,14660,14610,14674,14660,14683,11393,11295,11302,11107,11201,11157,11295,11157,11302,11107,11144,11191,14628,14618,14617,14636,14652,14617,15439,15447,15461,15474,15461,15488,15447,15446,15472,15446,15445,15470,15460,15445,15437,15618,15656,15654,15879,15900,15853,15653,15676,15634,15653,15695,15676,15761,15780,15804,15829,15804,15780,15879,15853,15829,15674,15694,15653,15674,15717,15694,15741,15761,15717,15598,15634,15618,15458,15436,15468,15458,15469,15459,15437,15459,15469,15435,15457,15436,15467,15444,15456,15444,15457,15435,15528,15529,15497,15565,15527,15564,15596,15564,15597,15527,15565,15548,15618,\r\n15596,15597,16341,16339,16343,16344,16340,16341,11051,11005,11095,11142,11095,11094,11006,10965,11051,11006,11096,11053,11094,11188,11236,11188,11093,11235,11142,11094,11236,11383,11335,11235,11432,11335,11383,14685,14707,14695,14696,14675,14695,9678,9667,9670,9687,9679,9673,9687,9673,9678,14708,14696,14722,14708,14731,14744,14732,14744,14757,14757,14770,14772,9669,9674,9659,9659,9674,9670,14770,14785,14786,9671,9664,9675,9665,9676,9672,9671,9676,9665,9666,9672,9677,9666,9677,9669,15900,15925,15948,15925,15899,15947,1367,1368,1252,1367,1252,1331,1402,1334,1368,1331,1252,1246,1075,1159,1204,1126,1162,1159,1246,1160,1204,1076,1162,1126,1077,1076,1002,964,1038,1037,964,919,998,1077,1040,1037,998,919,963,963,917,834,789,834,755,878,789,839,14653,14637,14620,14638,14603,14637,14619,14638,14623,882,968,925,760,882,839,14620,14639,14654,14655,14640,14621,14655,14621,14623,14656,14622,14640,14626,14657,14624,14625,14624,14657,14657,14636,14625,14626,14622,14656,14658,14627,14628,14641,14627,14659,11298,11393,11441,14694,14683,14705,14726,14717,14694,14673,14660,14641,14683,14660,14682,11298,11295,11393,11060,11107,11157,11245,11157,11295,11107,10975,11144,11052,11191,11144,14652,14628,14617,14652,14636,14667,15447,15439,15426,15439,15461,15448,15461,15474,15448,9692,9679,9687,15426,15446,15447,15438,15445,15446,15425,15437,15445,15879,15925,15900,15653,15634,15598,15741,15780,15761,15653,15633,15674,15674,15673,15717,15673,15741,15717,15598,15618,15583,15458,15443,15436,15443,15458,15459,15443,15459,15437,15564,15527,15547,15564,15583,15597,15597,15583,15618,16341,16343,16345,11053,11096,11145,11051,10964,11005,11094,11095,11005,10925,10965,11006,11051,10965,10964,11053,10966,11006,11094,11093,11188,14760,14767,14752,14728,14760,14752,14685,14728,14719,14685,14719,14707,14720,14695,14707,14696,14695,14721,9678,9670,9686,9686,9687,9678,14696,14730,14722,14708,14722,14731,14756,14744,14731,14757,14744,14756,14756,14770,14757,9674,9669,9680,9674,9681,9670,14770,14778,14785,14804,14786,14785,9682,9671,9675,9676,9683,9672,9671,\r\n9682,9676,9672,9684,9677,9677,9685,9669,15925,15879,15899,1334,1252,1368,1334,1402,1335,1246,1252,1207,1075,1126,1159,1075,1204,1160,1165,1160,1246,1039,1076,1126,1002,1076,1039,1077,1002,1040,1037,965,964,964,879,919,1040,966,1037,919,917,963,917,835,834,755,834,835,789,755,708,795,839,789,14653,14668,14637,14654,14653,14620,14637,14668,14638,14655,14623,14638,968,882,926,760,840,882,839,795,760,14655,14669,14640,14669,14656,14640,14670,14657,14626,14657,14667,14636,14656,14671,14626,14659,14627,14658,14672,14658,14628,14659,14673,14641,14717,14738,14751,14683,14682,14705,14718,14694,14705,14717,14726,14738,14718,14726,14694,14673,14682,14660,11298,11245,11295,11107,11060,10975,11060,11157,11153,11153,11157,11245,11144,10975,11052,14652,14672,14628,14652,14667,14676,15439,15413,15426,15428,15439,15448,15448,15474,15489,15474,15507,15489,15446,15426,15438,15438,15427,15445,15427,15425,15445,15653,15598,15633,15674,15633,15673,15547,15598,15583,15583,15564,15547,16345,16346,16341,16346,16347,16341,10964,10924,11005,11094,11005,11004,10925,10894,10965,10925,11006,10966,10965,10894,10964,11097,10966,11053,11094,11004,11093,14767,14776,14752,14739,14728,14752,14719,14728,14739,14729,14707,14719,14720,14721,14695,11234,11380,11430,14696,14721,14730,9681,9686,9670,9686,9699,9687,14722,14730,14743,14731,14722,14743,14756,14731,14762,14756,14778,14770,9685,9680,9669,9681,9674,9680,14778,14795,14785,14811,14804,14785,9676,9689,9683,9672,9683,9684,9682,9690,9676,9677,9684,9691,9677,9691,9685,1334,1253,1252,1334,1335,1253,1252,1166,1207,1246,1207,1165,1039,1126,1075,1075,1160,1081,1165,1081,1160,1039,920,1002,1002,966,1040,1037,1000,965,964,965,879,879,791,919,1037,966,1000,919,791,917,835,917,791,790,755,835,668,708,755,789,708,754,795,789,759,14677,14668,14653,14677,14653,14654,14655,14638,14668,926,882,840,840,760,796,795,713,760,14669,14655,14678,14669,14679,14656,14657,14670,14667,14626,14671,14670,14656,14680,14671,14659,14658,14672,14681,14673,14659,11298,11347,11198,14704,14705,14682,14704,14718,14705,14737,14738,14726,\r\n14737,14726,14718,14681,14682,14673,11298,11198,11245,10975,11060,11016,11104,11060,11153,11245,11198,11153,11007,11052,10975,14672,14652,14688,14676,14667,14670,14676,14688,14652,15413,15439,15428,15401,15426,15413,9711,9703,9700,9686,9703,9699,15401,15438,15426,15401,15427,15438,15427,15412,15425,15633,15598,15595,15598,15547,15595,10966,11097,11052,10964,10894,10924,10924,11004,11005,10894,10925,10854,10966,10895,10925,11003,11093,11004,11092,11003,11049,11092,11049,11141,14729,14719,14739,14740,14707,14729,14721,14720,14741,11234,11334,11380,14740,14753,14707,14742,14730,14721,9694,9686,9681,14730,14754,14743,14731,14743,14755,14731,14755,14762,14756,14762,14771,14756,14771,14778,9693,9680,9685,9694,9681,9680,14787,14795,14778,14785,14795,14803,14811,14785,14803,9689,9676,9690,9689,9695,9683,9696,9684,9683,14831,14845,14811,9685,9691,9698,1252,1253,1166,1295,1253,1335,1082,1207,1166,1082,1165,1207,1001,1039,1075,1075,1081,1001,1082,1081,1165,1039,1001,920,1002,920,966,1000,880,965,879,965,880,792,791,879,880,1000,966,790,835,791,668,755,790,668,626,708,627,754,708,789,754,759,795,759,713,14678,14668,14677,14689,14677,14654,14678,14655,14668,926,840,883,760,714,796,796,883,840,713,671,760,14678,14690,14669,14690,14679,14669,14680,14656,14679,14670,14671,14691,14671,14680,14691,14672,14692,14659,14681,14659,14693,14766,14738,14759,14682,14681,14704,14704,14716,14718,14737,14759,14738,14716,14737,14718,10973,11016,11060,10864,10975,11016,11104,10973,11060,11104,11153,11061,11153,11198,11061,11052,11007,10966,11007,10975,10967,14697,14672,14688,14670,14691,14676,14676,14698,14688,15402,15413,15428,15379,15401,15413,9686,9700,9703,15449,15440,15428,15427,15401,15412,10924,10894,10855,10924,10923,11004,10925,10895,10854,10894,10854,10825,10966,11007,10895,11003,11004,10923,10963,11049,11003,11141,11049,11139,11139,11233,11141,11280,11233,11140,14741,14742,14721,11334,11234,11281,11280,11140,11234,14730,14742,14754,9686,9694,9700,14755,14743,14754,14755,14769,14762,14771,14762,14777,14787,14778,14771,9693,9694,9680,9685,\r\n9698,9693,14795,14787,14803,14803,14822,14811,14831,14844,14861,9696,9683,9695,14822,14831,14811,1253,1208,1166,1253,1295,1208,1127,1082,1166,1081,1042,1001,1082,1042,1081,1001,924,920,920,880,966,879,880,792,709,791,792,790,791,710,790,710,668,668,586,626,626,627,708,627,631,754,631,759,754,712,713,759,14699,14678,14677,14677,14689,14699,14654,14700,14689,843,926,883,760,671,714,796,714,715,796,843,883,671,713,632,14701,14690,14678,14679,14690,14702,14679,14702,14680,14680,14703,14691,14692,14672,14697,11680,11666,11650,11667,11650,11595,14759,14775,14766,14681,14716,14704,11476,11394,11517,14716,14750,14737,10973,10864,11016,10864,10934,10975,11104,11061,10973,14782,14793,14766,10975,10934,10967,10967,10895,11007,14697,14688,14698,14691,14710,14676,14711,14698,14676,15379,15413,15402,15440,15402,15428,9700,9694,9706,10825,10855,10894,10924,10855,10923,10826,10854,10895,10854,10792,10825,10963,11003,10923,11049,10963,10962,11049,11050,11139,11139,11140,11233,11334,11381,11431,11187,11281,11234,11334,11281,11381,11187,11234,11140,14754,14742,14761,14754,14768,14755,14755,14768,14769,14762,14769,14777,14771,14777,14787,9694,9693,9704,9693,9698,9705,14803,14787,14802,14802,14822,14803,14831,14822,14844,1166,1208,1127,1295,1206,1208,1127,1003,1082,967,1001,1042,1082,1003,1042,1001,967,924,920,924,793,920,793,880,880,793,792,709,710,791,756,709,792,669,668,710,668,669,586,586,543,626,626,543,627,627,630,631,631,712,759,712,632,713,14678,14699,14712,14699,14689,14713,14713,14689,14700,714,671,633,714,634,715,715,762,796,843,796,762,632,589,671,14712,14690,14701,18238,18239,18240,14712,14702,14690,14680,14702,14703,14703,14714,14691,14692,14697,14715,11666,11634,11650,11650,11634,11595,14736,14681,14749,11394,11345,11296,14782,14766,14775,14725,14716,14681,11476,11346,11394,11518,11476,11543,10864,10973,10932,10934,10864,10902,11061,11017,10973,11105,11061,11154,10967,10934,10897,10967,10896,10895,11688,11668,11699,14714,14710,14691,14711,14676,14710,14711,14723,14698,15379,15402,15380,9720,9706,9716,9694,9704,9706,10766,\r\n10855,10825,10855,10893,10923,10826,10793,10854,10826,10895,10896,10793,10792,10854,10766,10825,10792,10963,10923,10893,10893,10962,10963,11049,10962,11050,11140,11139,11050,11459,11431,11381,11187,11333,11281,11367,11381,11281,11140,11091,11187,11459,11511,11431,14761,14768,14754,14783,14769,14768,14777,14769,14784,14777,14784,14787,9693,9705,9704,14784,14802,14787,14802,14819,14822,1208,1206,1127,1127,1078,1003,1042,1003,967,924,967,881,924,881,793,792,793,756,628,710,709,756,629,709,669,710,628,669,587,586,464,543,586,627,543,585,585,630,627,630,545,631,632,712,631,14713,14712,14699,14700,14724,14713,589,633,671,714,633,634,635,715,634,762,715,674,14700,14735,14724,546,589,632,14703,14702,14712,14712,14714,14703,11666,11668,11634,11595,11634,11618,14725,14681,14736,11544,11595,11545,11345,11394,11346,11345,11246,11296,11296,11246,11154,11442,11346,11476,11442,11476,11518,10973,11017,10932,10864,10832,10902,10934,10902,10897,11105,11017,11061,10967,10897,10896,11688,11681,11668,14710,14714,14733,14711,14710,14723,11688,11698,11681,15414,15380,15402,9706,9704,9716,10766,10824,10855,10855,10824,10893,10826,10715,10793,10827,10826,10896,10793,10765,10792,10892,10962,10893,11050,10962,11002,11140,11050,11091,11459,11381,11367,16351,16352,16353,11186,11281,11333,11367,11281,11266,11459,11497,11511,11586,11611,11511,14794,14769,14783,14769,14794,14784,9704,9705,9716,14801,14802,14784,14801,14819,14802,1163,1127,1206,1163,1078,1127,1078,1041,1003,967,1003,921,921,881,967,793,881,794,793,711,756,629,628,709,711,629,756,669,628,587,464,586,587,543,464,502,543,502,585,585,545,630,546,631,545,546,632,631,14734,14712,14713,14724,14734,14713,633,589,547,633,547,634,674,715,635,635,634,549,674,761,762,14746,14724,14735,546,466,589,14734,14714,14712,11651,11634,11668,11618,11634,11651,11618,11569,11595,11518,11544,11442,11545,11595,11569,11442,11544,11545,11345,11346,11246,10902,10832,10897,10827,10896,10897,11668,11681,11651,14714,14745,14733,14723,14710,14733,11682,11681,11698,10892,10893,10824,10826,10794,10715,10765,10793,\r\n10715,10826,10827,10794,10962,10892,10922,10962,10922,11002,11050,11002,11091,11367,11414,11459,16351,16354,16352,11186,11266,11281,16354,16355,16352,11266,11320,11367,11459,11414,11497,11511,11497,11559,11511,11559,11586,11559,11610,11586,14801,14784,14794,14828,14819,14801,1163,1079,1078,1041,1078,1004,922,1003,1041,922,921,1003,921,838,881,881,838,794,794,711,793,629,544,628,670,629,711,628,544,587,464,587,544,464,383,502,585,502,504,545,585,504,465,546,545,14724,14747,14734,547,589,466,547,549,634,674,635,591,549,591,635,672,761,674,842,762,761,14746,14747,14724,546,465,466,14714,14734,14748,11618,11651,11652,11618,11593,11569,10832,10827,10897,11651,11681,11652,14748,14745,14714,11700,11682,11705,11682,11698,11705,11682,11652,11681,10892,10824,10823,10823,10922,10892,11048,11002,10922,11090,11091,11002,11414,11367,11320,11126,11266,11186,11089,11186,11090,11266,11219,11320,11414,11413,11497,11497,11496,11559,14829,14820,14794,14794,14810,14801,14821,14828,14801,1078,1079,1004,1041,1004,922,921,922,836,838,921,836,838,758,794,794,758,711,588,544,629,670,588,629,711,758,670,503,464,544,386,383,464,502,383,504,545,504,465,14747,14758,14734,547,466,467,467,549,547,591,672,674,549,505,591,672,797,761,884,842,761,14746,14764,14747,465,384,466,14748,14734,14758,11618,11652,11635,11635,11593,11618,11700,11706,11690,11700,11690,11682,11669,11652,11682,10891,10922,10823,11048,11090,11002,10922,11001,11048,11414,11320,11368,11266,11126,11219,11126,11186,11089,11090,11048,11089,11219,11368,11320,11414,11368,11413,11497,11413,11496,11559,11496,11495,14794,14820,14810,14801,14810,14821,1004,1079,1005,1004,923,922,922,837,836,838,836,758,588,503,544,670,675,588,757,670,758,386,464,503,386,316,383,424,504,383,465,504,424,14758,14747,14765,467,466,385,549,467,505,672,591,590,591,505,590,753,797,672,797,841,761,884,928,842,884,761,841,14764,14746,14773,14765,14747,14764,465,424,384,384,385,466,11706,11717,11712,11669,11635,11652,11690,11706,11712,11682,11690,11669,10961,10922,10891,10922,10961,11001,11089,11048,11001,11126,11174,\r\n11219,11038,11126,11089,11219,11319,11368,11368,11319,11413,11496,11413,11412,11496,11412,11495,11495,11458,11533,14830,14821,14810,923,1004,1005,922,923,837,836,837,757,757,758,836,550,503,588,670,757,675,675,636,588,468,386,503,386,354,316,383,316,351,383,423,424,14758,14765,14774,385,425,467,467,425,505,673,672,590,590,505,548,753,788,797,673,753,672,14848,14823,14833,14813,14805,14788,14788,14779,14746,884,841,927,14746,14779,14773,14773,14765,14764,424,352,384,384,283,385,14781,14792,14758,11718,11690,11712,11690,11689,11669,10961,10993,11001,11038,11089,11001,11174,11126,11077,11220,11219,11174,11038,11077,11126,11219,11220,11319,11413,11319,11412,11412,11458,11495,14830,14810,14843,923,1005,929,923,844,837,763,757,837,550,468,503,550,588,636,763,675,757,636,675,716,426,386,468,386,426,354,284,316,354,316,254,351,351,423,383,424,423,352,14774,14765,14780,14774,14781,14758,385,353,425,548,505,425,624,673,590,590,548,624,753,667,788,877,797,788,673,706,753,14823,14805,14833,14805,14796,14788,14788,14796,14779,14773,14779,14789,14773,14790,14765,384,352,283,353,385,283,14792,14781,14800,14809,14827,14838,14792,14800,14809,14838,14827,14854,10993,11038,11001,11220,11174,11077,11077,11038,10949,11318,11319,11220,11318,11412,11319,11412,11318,11458,14830,14843,14860,923,929,844,837,844,763,506,468,550,550,636,592,716,675,763,636,716,717,468,506,426,426,469,354,316,284,253,354,387,284,253,254,316,351,254,352,351,352,423,14790,14780,14765,14780,14791,14774,14774,14791,14781,421,425,353,548,425,542,624,706,673,624,548,542,706,667,753,14846,14876,14862,14823,14846,14832,14823,14812,14805,14796,14805,14812,14796,14789,14779,14790,14773,14789,283,352,254,353,283,314,14781,14799,14800,14827,14809,14818,14800,14818,14809,11038,10993,10949,11318,11494,11458,844,929,885,844,798,763,550,592,506,592,636,637,716,763,798,716,767,717,636,717,637,426,506,507,507,469,426,354,469,470,253,284,229,354,427,387,387,355,284,254,253,199,14797,14780,14790,14780,14798,14791,14799,14781,14791,425,421,501,421,353,348,542,425,501,625,706,624,\r\n624,542,625,625,667,706,14862,14876,14891,14862,14832,14846,14823,14832,14812,14796,14812,14806,14796,14806,14789,14790,14789,14807,255,283,254,228,314,283,348,353,314,14817,14800,14799,14800,14817,14818,844,885,798,506,592,507,592,637,508,716,798,767,679,717,767,717,676,637,507,470,469,470,427,354,285,229,284,253,229,178,387,427,355,284,355,285,253,178,199,200,254,199,14798,14780,14797,14797,14790,14807,14798,14808,14791,14808,14799,14791,421,462,501,348,382,421,501,584,542,584,625,542,625,584,667,584,707,667,14862,14891,14877,14862,14847,14832,14832,14847,14812,14824,14806,14812,14814,14789,14806,14789,14815,14807,283,255,228,254,200,255,228,281,314,281,348,314,14817,14799,14816,800,798,885,592,508,507,637,593,508,800,767,798,679,676,717,720,679,767,676,593,637,508,470,507,427,470,508,229,285,252,201,178,229,427,428,355,285,355,356,178,177,199,200,199,149,14798,14797,14816,14807,14815,14797,14808,14798,14816,14799,14808,14816,421,382,462,420,501,462,281,382,348,14974,14959,14942,14926,14891,14942,14877,14891,14909,14877,14847,14862,14834,14812,14847,14824,14814,14806,14834,14824,14812,14814,14815,14789,228,255,200,281,228,224,509,508,593,720,767,800,676,679,596,679,720,639,676,596,593,427,508,428,315,252,285,229,252,201,178,201,150,428,356,355,315,285,356,127,177,178,177,149,199,200,149,173,14797,14825,14816,14826,14797,14815,422,462,382,499,501,420,422,420,462,349,382,281,14926,14942,14959,14926,14909,14891,14877,14909,14893,14877,14864,14847,14834,14847,14864,14835,14814,14824,14834,14835,14824,14814,14826,14815,228,200,173,228,173,224,282,281,224,509,428,508,509,593,511,679,639,596,596,511,593,315,258,252,201,252,198,201,198,150,127,178,150,471,356,428,315,356,318,127,126,177,149,177,126,173,149,101,14825,14797,14826,14825,14836,14816,349,422,382,499,420,419,350,420,422,349,281,282,540,499,419,540,419,500,14927,14893,14909,14877,14893,14864,14834,14864,14878,14835,14850,14814,14835,14834,14863,14814,14849,14826,224,173,197,282,224,251,471,428,509,509,511,430,596,639,552,596,552,511,318,258,315,227,252,258,227,\r\n198,252,150,198,146,150,102,127,471,463,356,318,356,389,127,68,126,149,126,101,173,101,144,14836,14825,14826,14816,14836,14851,350,422,349,312,419,420,420,350,312,349,282,350,500,419,461,14928,14893,14927,500,461,541,14864,14893,14894,14864,14894,14878,14863,14834,14878,14850,14835,14866,14850,14849,14814,14835,14863,14866,14849,14865,14826,197,173,144,224,197,251,313,282,251,463,471,509,430,511,431,463,509,430,552,431,511,198,227,148,198,148,146,102,150,146,68,127,102,463,389,356,126,68,101,98,144,101,14826,14867,14836,14851,14836,14868,419,312,381,313,312,350,313,350,282,419,381,461,14928,14894,14893,14960,14928,14927,539,541,461,14878,14894,14911,14863,14878,14892,14866,14880,14850,14850,14879,14849,14863,14892,14866,14849,14879,14865,14865,14867,14826,197,144,196,251,197,196,313,251,250,389,463,430,125,146,148,146,99,102,102,84,68,68,66,101,98,172,144,101,66,98,14867,14881,14836,14868,14836,14881,381,312,311,313,250,312,461,381,418,14929,14894,14928,14960,14929,14928,16356,16357,16358,14894,14929,14911,14878,14911,14910,14892,14878,14910,14866,14897,14880,14895,14850,14880,14850,14895,14879,14897,14866,14892,14879,14896,14865,14867,14865,14896,172,196,144,251,196,250,146,125,124,100,125,148,146,124,99,102,99,84,84,39,68,53,66,68,172,98,145,98,66,81,14881,14867,14898,14868,14881,14899,311,312,280,381,311,347,280,312,250,418,381,347,460,461,418,623,539,583,460,498,539,14943,14911,14929,14943,14910,14911,14897,14892,14910,14897,14915,14880,14880,14912,14895,14912,14879,14895,14879,14913,14896,14867,14896,14914,172,223,196,196,223,250,125,67,124,67,125,100,124,67,99,99,67,84,84,67,39,68,39,53,66,53,29,145,98,121,172,145,171,51,81,66,98,81,121,14867,14914,14898,14899,14881,14898,311,280,225,279,347,311,280,250,223,380,418,347,460,418,380,539,498,583,666,623,583,380,498,460,14929,14961,14943,14943,14946,14910,14897,14910,14915,14880,14915,14930,14930,14912,14880,14879,14912,14913,14914,14896,14913,172,171,223,39,29,53,66,29,51,121,171,145,51,82,81,82,121,81,14914,14931,14898,14932,14899,14898,226,225,280,311,225,279,\r\n279,380,347,249,280,223,538,583,498,583,622,666,498,380,459,14976,14943,14961,14943,14975,14946,14915,14910,14946,14930,14915,14947,14912,14930,14948,14913,14912,14944,14914,14913,14945,195,223,171,39,22,29,51,29,28,171,121,122,52,82,51,82,122,121,14931,14914,14945,14931,14932,14898,226,174,225,226,280,249,222,279,225,417,380,279,249,223,195,583,538,622,498,459,538,705,666,622,417,459,380,705,787,832,14975,14979,14946,14946,14962,14915,14947,14915,14962,14947,14948,14930,14912,14948,14944,14913,14944,14945,122,195,171,22,8,29,29,8,28,51,28,52,83,82,52,83,122,82,14931,14945,14963,14932,14931,14963,174,226,195,225,174,175,226,249,195,222,278,279,225,175,222,417,279,379,621,622,538,538,459,458,622,752,705,417,458,459,787,705,752,833,787,752,14946,14979,14962,14980,14947,14962,14977,14948,14947,14977,14944,14948,14978,14945,14944,122,174,195,28,8,21,38,52,28,83,52,64,83,123,122,14963,14945,14978,14963,14964,14932,123,175,174,248,278,222,346,279,278,170,222,175,379,279,346,417,379,458,622,621,702,621,538,581,538,458,581,622,751,752,833,752,876,14962,14979,14994,14977,14947,14980,14980,14962,14994,14992,14944,14977,14993,14978,14944,123,174,122,21,8,13,28,21,38,64,52,38,97,83,64,97,123,83,14964,14963,14978,143,175,123,248,310,278,170,248,222,346,278,345,170,175,143,379,346,345,456,458,379,621,619,702,702,751,622,621,581,582,581,458,536,752,751,831,876,752,831,15024,15006,14979,15006,14994,14979,14977,14980,15007,15008,14980,14994,14992,14993,14944,14992,14977,15004,15005,14978,14993,21,13,20,38,21,20,37,64,38,80,97,64,97,143,123,14978,15005,14964,248,343,310,345,278,310,170,247,248,143,120,170,345,456,379,458,456,536,582,619,621,619,665,702,702,749,751,582,581,536,873,831,751,916,876,831,15024,15023,15006,15023,14994,15006,15007,14980,15025,15007,15004,14977,1034,1072,1122,15023,15008,14994,14992,15004,14993,15022,15005,14993,20,13,7,37,38,20,50,64,37,80,120,97,50,80,64,143,97,120,15005,14997,14964,309,343,248,343,378,310,378,345,310,247,170,221,248,247,309,170,120,169,456,345,416,536,456,497,619,582,537,665,619,537,702,\r\n665,749,829,751,749,582,536,497,916,831,873,829,873,751,961,876,916,15055,15023,15024,15007,15025,15039,15007,15038,15004,1034,997,1072,1034,1073,961,14993,15004,15022,15022,14997,15005,20,7,19,20,19,37,27,50,37,120,80,119,79,80,50,309,377,343,343,377,378,378,416,345,170,169,221,277,247,221,277,309,247,120,119,169,416,497,456,582,497,537,537,620,665,665,704,749,749,786,829,958,916,873,873,829,913,961,916,997,15039,15025,15056,15007,15039,15054,15038,15007,15054,15004,15038,15022,1034,961,997,997,1033,1072,15022,15044,14997,19,7,12,27,37,19,65,50,27,79,119,80,65,79,50,309,344,377,455,378,377,378,457,416,169,220,221,221,276,277,344,309,277,119,194,169,416,457,497,537,497,457,537,580,620,704,665,620,786,749,704,786,875,829,916,958,997,958,873,913,913,829,875,1156,1072,1121,15039,15056,15073,15073,15054,15039,15061,15038,15054,15061,15022,15038,958,1033,997,1072,1033,1121,15061,15044,15022,15029,14997,15044,19,12,27,27,61,65,119,79,118,93,79,65,415,377,344,378,455,457,455,377,415,169,194,220,221,220,276,277,276,342,344,277,342,119,168,194,580,537,457,620,580,664,704,620,703,786,704,703,875,786,874,958,913,995,913,875,960,1121,1200,1156,1242,1288,1156,15094,15054,15073,15063,15061,15054,958,1030,1033,1118,1121,1033,15044,15061,15063,15063,15029,15044,27,12,25,27,47,61,93,65,61,93,118,79,119,118,168,344,454,415,457,455,415,194,217,220,271,276,220,341,342,276,414,344,342,217,194,168,580,457,496,664,580,618,664,703,620,750,786,703,830,874,786,874,959,875,995,913,960,1030,958,995,960,875,959,1121,1197,1200,1242,1156,1200,1242,1325,1288,15063,15054,15094,15094,15073,15113,1033,1030,1118,1118,1197,1121,15062,15029,15063,47,27,25,61,47,62,93,61,113,93,113,118,168,118,164,344,414,454,415,454,496,457,415,496,240,220,217,341,276,271,240,271,220,341,413,342,414,342,413,217,168,164,496,535,580,535,618,580,663,664,618,664,750,703,750,830,786,830,915,874,874,915,959,995,960,1032,1032,1030,995,960,959,1031,1286,1200,1197,1242,1200,1289,1242,1289,1325,15073,15149,15130,15094,15101,15063,15130,15113,15073,15113,15131,15094,1119,1118,1030,\r\n1119,1197,1118,15062,15045,15029,15062,15063,15101,47,25,62,61,62,92,113,61,92,113,164,118,454,414,495,535,496,454,240,217,164,271,336,341,215,271,240,408,413,341,494,414,413,579,618,535,664,663,748,579,663,618,748,750,664,830,750,872,915,830,914,996,959,915,960,1031,1032,1119,1030,1032,996,1031,959,1286,1289,1200,1197,1241,1286,1289,1361,1325,15161,15130,15149,15094,15131,15101,15130,15148,15113,15113,15148,15131,1119,1241,1197,15045,15062,15081,15062,15101,15120,60,62,25,92,62,91,113,92,137,163,164,113,494,495,414,454,495,534,454,579,535,215,240,164,270,336,271,408,341,336,270,271,215,408,489,413,494,413,489,748,663,701,579,617,663,748,785,750,750,785,872,914,830,872,996,915,914,1120,1032,1031,1119,1032,1155,996,1071,1031,1286,1359,1289,1286,1241,1287,1289,1359,1361,1394,1325,1361,1501,1394,1474,15120,15101,15131,1544,1563,1474,1198,1241,1119,15100,15081,15062,15120,15100,15062,60,91,62,60,25,46,92,91,137,163,113,137,163,215,164,578,495,494,534,495,578,579,454,534,336,270,335,408,336,406,215,216,270,489,408,488,573,494,489,701,663,617,748,701,785,579,534,617,872,785,912,914,872,912,914,994,996,1120,1155,1032,1116,1120,1031,1119,1155,1198,996,994,1071,1116,1031,1071,1286,1358,1359,1198,1287,1241,1358,1286,1287,1359,1393,1361,1394,1361,1425,1474,1394,1450,15134,15120,15131,1563,1544,1587,1544,1474,1525,9762,9752,9757,15100,15120,15134,75,91,60,60,46,75,112,137,91,163,137,189,216,215,163,578,494,609,616,534,578,335,270,272,336,335,406,488,408,406,270,216,272,489,488,572,573,609,494,489,572,573,701,617,699,785,701,784,617,534,616,785,909,912,914,912,994,1120,1199,1155,1120,1116,1195,1199,1198,1155,1071,994,1116,1359,1358,1393,1199,1287,1198,1323,1358,1287,1449,1361,1393,1449,1425,1361,1394,1425,1450,1474,1450,1502,1587,1544,1564,1525,1474,1502,1544,1525,1564,1587,1618,1631,9752,9754,9757,112,91,75,112,162,137,189,137,162,216,163,189,578,609,662,616,578,662,272,337,335,407,406,335,487,488,406,216,241,272,572,488,571,609,573,656,572,656,573,617,616,699,701,699,784,785,784,870,785,870,909,909,990,912,994,912,990,1120,1195,\r\n1199,1195,1116,1153,994,1067,1116,1323,1393,1358,1199,1323,1287,1449,1393,1423,1425,1449,1473,1425,1473,1450,1502,1450,1500,1587,1564,1600,1525,1502,1500,1564,1525,1586,1600,1618,1587,9752,9753,9754,75,111,112,162,112,161,189,162,214,216,189,241,693,662,609,662,700,616,301,337,272,407,335,337,407,487,406,487,571,488,301,272,241,571,655,572,609,656,693,572,655,656,700,699,616,783,784,699,784,869,870,909,870,955,989,990,909,990,1067,994,1195,1283,1199,1153,1116,1067,1153,1239,1195,1393,1323,1423,1323,1199,1324,1449,1423,1472,1499,1473,1449,1450,1473,1500,1600,1564,1586,1500,1543,1525,1525,1543,1586,1600,1630,1618,9753,9752,9755,161,112,111,213,162,161,213,214,162,214,239,189,189,239,241,662,693,746,662,747,700,334,337,301,407,337,405,407,405,487,487,570,571,241,239,301,655,571,570,656,692,693,656,655,692,700,783,699,783,869,784,955,870,869,955,989,909,1066,990,989,1115,1067,990,1239,1283,1195,1283,1324,1199,1153,1067,1152,1153,1282,1239,1323,1422,1423,1323,1324,1360,1498,1472,1423,1449,1472,1499,1473,1499,1523,1524,1500,1473,1617,1600,1586,1524,1543,1500,1599,1586,1543,1617,1630,1600,1618,1630,1643,9758,9753,9755,161,111,160,161,212,213,213,269,214,269,239,214,693,737,746,782,662,746,662,782,747,700,747,783,334,405,337,239,334,301,487,405,526,570,487,526,655,570,692,737,693,692,783,828,869,955,869,911,993,989,955,1114,990,1066,993,1066,989,1115,1152,1067,1115,990,1114,1283,1239,1282,1283,1360,1324,1238,1153,1152,1282,1153,1238,1422,1323,1360,1423,1422,1470,1498,1522,1472,1498,1423,1470,1499,1472,1522,1499,1522,1523,1473,1523,1524,1617,1586,1616,1524,1562,1543,1599,1616,1586,1599,1543,1598,1630,1617,1642,1643,1630,1650,1643,1650,1657,161,160,212,213,212,269,269,300,239,737,826,746,827,782,746,782,827,747,747,828,783,404,405,334,334,239,300,405,485,526,526,569,570,654,692,570,737,692,654,828,911,869,993,955,911,1066,1151,1114,993,1070,1066,1152,1115,1193,1115,1114,1193,1283,1282,1321,1283,1390,1360,1238,1152,1237,1282,1238,1321,1424,1422,1360,1471,1470,1422,1542,1522,1498,1498,1470,1521,1522,1562,1523,1562,1524,1523,1641,\r\n1617,1616,1562,1585,1543,1599,1628,1616,1598,1543,1585,1628,1599,1598,1649,1642,1617,1630,1642,1650,1657,1650,1665,211,212,160,212,267,269,300,269,333,819,826,737,826,868,746,868,827,746,747,827,871,747,871,828,405,404,485,404,334,370,300,370,334,569,526,485,570,569,654,654,691,737,911,828,910,993,911,992,1066,1070,1151,1194,1114,1151,993,992,1070,1193,1237,1152,1193,1114,1194,1321,1390,1283,1424,1360,1390,1321,1238,1237,1424,1471,1422,1471,1520,1470,1522,1542,1561,1542,1498,1559,1521,1470,1520,1541,1498,1521,1522,1561,1562,1641,1649,1617,1641,1616,1640,1585,1562,1597,1640,1616,1628,1598,1585,1615,1628,1598,1629,1649,1656,1642,1656,1650,1642,1665,1650,1656,1674,1657,1665,212,211,267,269,267,333,300,333,369,819,903,826,737,776,819,903,868,826,908,827,868,908,871,827,871,910,828,485,404,486,446,404,370,300,369,370,485,568,569,654,569,691,737,691,776,910,992,911,1151,1070,1154,1194,1151,1236,992,1069,1070,1237,1193,1280,1193,1194,1280,1320,1390,1321,1424,1390,1418,1320,1321,1237,1467,1471,1424,1471,1518,1520,1542,1583,1561,1559,1498,1541,1584,1542,1559,1521,1520,1558,1560,1541,1521,1561,1596,1562,1641,1655,1649,1640,1655,1641,1562,1596,1597,1615,1585,1597,1640,1628,1629,1629,1598,1615,1649,1664,1656,1656,1673,1665,1674,1665,1673,268,267,211,333,267,332,4246,4247,4248,819,902,903,819,776,861,903,908,868,956,871,908,871,957,910,446,486,404,485,486,568,446,370,369,568,653,569,691,569,653,691,736,776,910,991,992,1070,1069,1154,1151,1154,1236,1194,1236,1281,991,1069,992,1280,1320,1237,1281,1280,1194,1320,1418,1390,1424,1418,1467,1467,1518,1471,1518,1557,1520,1584,1583,1542,1583,1595,1561,1559,1541,1582,1559,1593,1584,1558,1520,1557,1558,1560,1521,1582,1541,1560,1561,1613,1596,1655,1663,1649,1640,1648,1655,1627,1597,1596,1615,1597,1627,1640,1629,1648,1629,1615,1639,1649,1663,1664,1664,1673,1656,1691,1674,1673,267,268,332,333,332,402,369,402,332,819,861,902,902,983,903,776,818,861,903,956,908,871,956,957,957,991,910,446,484,486,567,568,486,446,369,484,653,568,652,691,653,736,776,736,818,1068,1154,1069,1196,1236,1154,1281,1236,\r\n1319,991,1068,1069,1320,1280,1356,1356,1280,1281,1389,1418,1320,1467,1418,1446,1467,1495,1518,1557,1518,1581,1583,1584,1595,1613,1561,1595,1559,1582,1593,1593,1614,1584,9913,9914,9915,1558,1592,1560,1582,1560,1594,1596,1613,1626,1655,1672,1663,1655,1648,1671,1626,1627,1596,1615,1627,1639,1648,1629,1639,1681,1664,1663,1682,1673,1664,1691,1673,1682,369,332,403,861,949,902,902,1023,983,957,903,983,818,817,861,903,957,956,957,1029,991,567,486,484,652,568,567,369,403,484,653,652,736,818,736,817,1068,1117,1154,1196,1284,1236,1196,1154,1117,1236,1284,1319,1281,1319,1357,1029,1068,991,1389,1320,1356,1357,1356,1281,1389,1446,1418,1467,1446,1495,1495,1539,1518,9930,9926,9917,9913,9917,9916,1614,1595,1584,1613,1595,1625,1582,1612,1593,1593,1612,1614,9914,9913,9916,1558,1611,1592,1560,1592,1594,1582,1594,1612,1626,1613,1638,1671,1672,1655,1663,1672,1680,1671,1648,1662,1626,1647,1627,1627,1647,1639,1639,1654,1648,1690,1664,1681,1681,1663,1680,1664,1692,1682,1691,1682,1698,949,861,901,902,949,982,982,1023,902,1023,1057,983,983,1029,957,861,817,901,567,484,525,567,608,652,525,484,403,775,736,652,775,817,736,1029,1117,1068,1284,1196,1285,1196,1117,1240,1284,1357,1319,1389,1356,1419,1357,1417,1356,1389,1419,1446,1496,1495,1446,1538,1539,1495,9926,9922,9917,9919,9916,9917,1625,1595,1614,1613,1625,1638,1636,1614,1612,9916,9918,9914,9921,9924,9914,1623,1594,1592,1624,1612,1594,1626,1638,1647,1671,1679,1672,1689,1680,1672,1662,1648,1654,1671,1662,1679,1654,1639,1647,1664,1690,1692,1690,1681,1697,1697,1681,1680,1692,1699,1682,1699,1698,1682,948,949,901,949,1022,982,982,1056,1023,1023,1102,1057,1057,1103,983,1103,1029,983,860,901,817,608,567,525,690,652,608,483,525,403,735,775,652,775,860,817,1103,1117,1029,1240,1285,1196,1284,1285,1322,1227,1240,1117,1357,1284,1392,1419,1356,1417,1421,1417,1357,1466,1446,1419,1496,1538,1495,1496,1446,1466,9929,9922,9926,9919,9917,9922,9920,9916,9919,1625,1614,1636,1646,1638,1625,1636,1612,1637,9916,9920,9918,9921,9914,9918,1623,1635,1594,1624,1637,1612,1624,1594,1635,1638,1653,1647,1679,1695,1672,1696,\r\n1680,1689,1689,1672,1695,1662,1654,1661,1679,1662,1678,1661,1654,1647,1706,1692,1690,1706,1690,1697,1697,1680,1696,1699,1692,1707,1716,1698,1699,948,1022,949,860,948,901,982,1022,1055,1056,982,1055,1056,1101,1023,1101,1102,1023,1057,1102,1143,1103,1057,1143,566,608,525,690,735,652,651,690,608,566,525,483,735,816,775,775,816,860,1103,1143,1117,1285,1240,1322,1391,1284,1322,1227,1269,1240,1227,1117,1143,1391,1392,1284,1357,1392,1421,1419,1417,1466,1465,1417,1421,1540,1538,1496,1496,1466,1516,9931,9922,9929,9927,9919,9922,9925,9920,9919,1646,1625,1636,1652,1638,1646,1636,1637,1651,9920,9923,9918,9921,9918,9923,9934,9921,9928,1624,1644,1637,1624,1635,1645,1638,1652,1653,1661,1647,1653,1695,1679,1704,1696,1689,1705,1704,1689,1695,1661,1678,1662,1688,1679,1678,1706,1714,1692,1715,1706,1697,1696,1712,1697,1707,1692,1714,1707,1717,1699,1699,1724,1716,948,981,1022,900,948,860,1100,1055,1022,1055,1101,1056,1101,1183,1102,1183,1143,1102,651,608,566,735,690,774,690,651,733,816,735,815,860,816,900,1350,1322,1240,1420,1391,1322,1143,1269,1227,1350,1240,1269,1391,1447,1392,1447,1421,1392,1465,1466,1417,1469,1465,1421,9940,9931,9929,1496,1516,1540,1465,1516,1466,9931,9927,9922,9925,9919,9927,9923,9920,9925,1658,1646,1636,1646,1660,1652,1644,1651,1637,1651,1658,1636,9921,9923,9928,9934,9928,9938,1645,1644,1624,9945,9934,9938,1653,1652,1668,1661,1653,1670,1704,1679,1703,1704,1705,1689,1705,1713,1696,1678,1661,1670,1703,1679,1688,1688,1678,1670,1706,1715,1714,1715,1697,1722,1696,1713,1712,1712,1722,1697,1725,1707,1714,1707,1725,1717,1699,1717,1724,1734,1716,1724,900,981,948,1022,981,1054,1055,1100,1142,1022,1099,1100,1055,1142,1101,1101,1142,1183,1143,1183,1226,690,773,774,735,774,815,733,773,690,815,899,816,900,816,899,1350,1384,1322,1420,1448,1391,1420,1322,1384,1143,1226,1269,1350,1269,1310,1391,1448,1447,1447,1469,1421,1469,1517,1465,9940,9936,9931,9940,9962,9954,1517,1516,1465,9927,9931,9936,9925,9927,9935,9923,9925,9932,1658,1660,1646,1660,1669,1652,1659,1651,1644,1651,1666,1658,9945,9960,9970,1652,1677,1668,1653,1668,1670,1703,\r\n1721,1704,1704,1721,1705,1705,1723,1713,1703,1688,1685,1688,1670,1685,1733,1714,1715,1733,1715,1722,1712,1713,1731,1712,1731,1722,1725,1714,1733,1735,1717,1725,1735,1724,1717,1734,1724,1740,900,980,981,981,1053,1054,1099,1022,1054,1100,1182,1142,1181,1100,1099,1225,1183,1142,1226,1183,1268,773,859,774,815,774,859,733,814,773,815,898,899,900,899,980,1350,1310,1384,1448,1420,1468,1420,1384,1383,1226,1310,1269,1447,1448,1497,1497,1469,1447,1517,1469,1537,9936,9940,9947,1517,1555,1516,9940,9954,9947,9936,9939,9927,9927,9939,9935,9935,9932,9925,1658,1675,1660,1675,1669,1660,1652,1669,1677,1659,1666,1651,1659,1644,1667,1676,1658,1666,1684,1668,1677,1668,1685,1670,1703,1709,1721,1705,1721,1723,1713,1723,1732,1709,1703,1685,1739,1733,1722,1731,1713,1732,1739,1722,1731,1725,1733,1741,1725,1742,1735,1724,1735,1740,1734,1740,1751,980,1053,981,1053,1141,1054,1099,1054,1141,1181,1182,1100,1225,1142,1182,1181,1099,1141,1268,1183,1225,1226,1268,1310,773,858,859,898,815,859,814,733,856,814,858,773,898,947,899,899,1021,980,1310,1383,1384,1463,1468,1420,1468,1497,1448,1383,1415,1420,1497,1519,1469,1519,1537,1469,1517,1537,1556,9955,9936,9947,1556,1555,1517,9939,9936,9948,1676,1675,1658,1675,1686,1669,1687,1677,1669,9986,9995,10007,1683,1676,1666,1668,1684,1685,1684,1677,1694,1729,1721,1709,1729,1723,1721,1723,1738,1732,1709,1685,1701,1739,1750,1733,1731,1732,1748,1731,1748,1739,1733,1750,1741,1750,1725,1741,1725,1750,1742,1742,1752,1735,1740,1735,1753,9826,9821,9810,980,1052,1053,1053,1140,1141,1181,1266,1182,1267,1225,1182,1181,1141,1224,1225,1347,1268,1310,1268,1347,859,858,946,947,898,859,858,814,856,899,947,1021,980,1021,1052,1347,1383,1310,1463,1494,1468,1463,1420,1415,1468,1494,1497,1382,1415,1383,1494,1519,1497,1519,1556,1537,9948,9936,9955,9947,9963,9955,9939,9948,9956,1686,1675,1676,1687,1669,1686,1687,1694,1677,1683,1666,1693,1686,1676,1683,1685,1684,1701,1694,1702,1684,1719,1729,1709,1729,1738,1723,1732,1738,1749,1701,1719,1709,1739,1758,1750,1757,1748,1732,1748,1758,1739,1750,1760,1742,1742,1761,1752,1735,1752,1753,9818,\r\n9810,9821,1053,1052,1140,1140,1224,1141,1181,1224,1266,1308,1182,1266,1225,1267,1309,1182,1308,1267,1347,1225,1309,979,946,858,947,859,946,858,856,945,1021,947,1020,1021,1098,1052,1347,1309,1383,1463,1445,1494,1463,1415,1445,1415,1382,1348,1309,1382,1383,1494,1513,1519,1556,1519,1580,9948,9955,9964,9955,9963,9974,9948,9964,9956,1700,1687,1686,1687,1700,1694,1700,1686,1683,1702,1701,1684,1694,1710,1702,1729,1719,1738,1738,1745,1749,1749,1759,1732,1719,1701,1728,1767,1750,1758,1748,1757,1758,1732,1759,1757,1750,1768,1760,1742,1760,1761,1761,1769,1752,1752,1770,1753,9818,9821,9827,1139,1140,1052,1140,1223,1224,1266,1224,1223,1266,1346,1308,1309,1267,1348,1349,1267,1308,979,1019,946,979,858,945,947,946,1020,1021,1020,1097,1097,1098,1021,1098,1139,1052,1493,1494,1445,1348,1445,1415,1382,1309,1348,1493,1513,1494,1519,1513,1580,9955,9974,9964,1579,1580,1513,9956,9964,9972,1711,1694,1700,1700,1683,1708,1702,1718,1701,1710,1694,1711,1702,1710,1720,1738,1719,1745,1755,1749,1745,1749,1755,1759,1728,1701,1718,1737,1719,1728,1778,1750,1767,1758,1776,1767,1776,1758,1757,1757,1759,1777,1768,1750,1778,1760,1768,1779,1761,1760,1769,1752,1769,1770,1780,1753,1770,9818,9827,9822,1140,1139,1223,1266,1223,1306,1346,1266,1306,1381,1308,1346,1267,1349,1348,1349,1308,1381,1018,1019,979,1019,1020,946,1018,979,945,1020,1096,1097,1097,1179,1098,1098,1180,1139,1445,1444,1493,1445,1348,1444,1493,1462,1513,9981,9964,9974,1553,1579,1513,9980,9972,9964,1708,1711,1700,1702,1727,1718,1710,1711,1726,1710,1730,1720,1727,1702,1720,1737,1745,1719,1755,1745,1737,1755,1772,1759,1718,1736,1728,1737,1728,1744,1778,1767,1786,1786,1767,1776,1776,1757,1777,1777,1759,1772,1778,1787,1768,1768,1787,1779,1760,1779,1788,1760,1788,1769,1770,1769,1789,9837,9834,9827,9830,9822,9827,1223,1139,1222,1223,1222,1306,1346,1306,1380,1381,1346,1413,1349,1414,1348,1349,1381,1414,1018,1095,1019,1020,1019,1096,1096,1178,1097,1178,1179,1097,1098,1179,1221,1180,1098,1221,1222,1139,1180,1493,1444,1462,1348,1414,1444,1513,1462,1514,9981,9980,9964,9989,9981,9974,1513,1514,1553,1726,\r\n1711,1708,1718,1727,1736,1710,1726,1730,1727,1720,1730,1765,1755,1737,1755,1765,1772,1744,1728,1736,1756,1737,1744,1786,1794,1778,1786,1776,1777,1772,1791,1777,1778,1795,1787,1796,1779,1787,1797,1788,1779,1798,1769,1788,1798,1789,1769,1770,1789,1799,9834,9830,9827,9829,9822,9830,1306,1222,1307,1380,1306,1307,1346,1380,1413,1443,1381,1413,1414,1381,1443,1018,1094,1095,1019,1095,1096,1096,1095,1178,1221,1179,1178,1221,1265,1180,1222,1180,1265,1462,1444,1414,1464,1514,1462,9981,9998,9980,1553,1514,1578,1743,1736,1727,1726,1746,1730,1747,1727,1730,1765,1737,1756,1772,1765,1773,1754,1744,1736,1744,1766,1756,1786,1806,1794,1778,1794,1795,1786,1777,1806,1772,1773,1791,1807,1777,1791,1808,1787,1795,1779,1796,1809,1796,1787,1808,1797,1798,1788,1797,1779,1810,1789,1798,1811,1789,1811,1799,9834,9829,9830,1222,1265,1307,1380,1307,1377,1439,1413,1380,1461,1443,1413,1414,1443,1464,1094,1018,1017,1094,1176,1095,1095,1219,1178,1219,1221,1178,1263,1265,1221,1464,1462,1414,1514,1464,1515,9998,9981,10009,1554,1578,1514,1754,1736,1743,1743,1727,1747,1747,1730,1746,1756,1773,1765,1754,1764,1744,1744,1764,1766,1756,1766,1774,1794,1806,1817,1794,1817,1795,1777,1807,1806,1773,1792,1791,1807,1791,1792,1808,1795,1818,1809,1796,1819,1779,1809,1810,1808,1820,1796,1798,1797,1821,1797,1810,1821,1798,1821,1811,1811,1822,1799,9834,9839,9829,1307,1265,1304,1307,1304,1377,1439,1380,1377,1461,1413,1439,1443,1461,1492,1464,1443,1492,1094,1017,1110,1094,1177,1176,1095,1176,1219,1219,1263,1221,1263,1304,1265,1464,1492,1515,1514,1515,1554,1743,1762,1754,1743,1747,1763,1746,1763,1747,1784,1773,1756,1754,1771,1764,1764,1783,1766,1766,1785,1774,1784,1756,1774,1806,1807,1817,1828,1795,1817,1773,1784,1792,1807,1792,1814,1828,1818,1795,1818,1829,1808,1820,1819,1796,1830,1809,1819,1810,1809,1831,1808,1829,1820,1810,1822,1821,1821,1822,1811,1799,1822,1832,9829,9839,9836,1345,1377,1304,1439,1377,1412,1461,1439,1460,1460,1492,1461,1017,1062,1110,1110,1177,1094,1176,1177,1263,1263,1219,1176,1304,1263,1177,1536,1515,1492,1515,1536,1554,1743,1763,1762,1762,1771,1754,\r\n1775,1763,1746,1771,1782,1764,1764,1782,1783,1766,1783,1790,1766,1790,1785,1793,1774,1785,1793,1784,1774,1807,1838,1817,1828,1817,1838,1792,1784,1803,1792,1803,1814,1814,1834,1807,1828,1839,1818,1818,1840,1829,1820,1841,1819,1830,1831,1809,1842,1830,1819,1810,1831,1843,1829,1844,1820,1810,1843,1822,1845,1832,1822,9839,9843,9836,1345,1412,1377,1345,1304,1177,1439,1412,1460,1460,1491,1492,1062,1017,986,1062,1111,1110,1110,1220,1177,1492,1491,1536,1775,1762,1763,1762,1781,1771,1771,1781,1782,1801,1783,1782,1790,1783,1802,1790,1804,1785,1793,1785,1805,1784,1793,1803,1807,1834,1838,1828,1838,1839,1803,1825,1814,1814,1825,1834,1840,1818,1839,1840,1851,1829,1820,1844,1841,1841,1852,1819,1831,1830,1853,1854,1830,1842,1842,1819,1852,1855,1843,1831,1829,1851,1844,1843,1845,1822,9839,9847,9843,9848,9836,9843,1378,1412,1345,1177,1305,1345,1460,1412,1441,1460,1441,1491,1111,1062,986,1192,1110,1111,1110,1192,1220,1220,1264,1177,1781,1762,1775,1801,1782,1781,1801,1802,1783,1813,1790,1802,1813,1804,1790,1785,1804,1815,1816,1805,1785,1793,1805,1803,1838,1834,1858,1839,1838,1858,1803,1805,1825,1825,1837,1834,1840,1839,1858,1840,1861,1851,1841,1844,1852,1853,1830,1862,1831,1853,1855,1854,1862,1830,1854,1842,1863,1852,1863,1842,1855,1845,1843,1851,1864,1844,9847,9848,9843,9844,9836,9848,1378,1441,1412,1345,1305,1378,1305,1177,1264,1109,1111,986,1111,1109,1192,1192,1109,1220,1264,1220,1109,1824,1813,1802,1826,1804,1813,1815,1804,1827,1816,1785,1815,1816,1825,1805,1834,1837,1858,1825,1816,1837,1861,1840,1858,1851,1861,1873,1844,1874,1852,1853,1862,1875,1875,1855,1853,1862,1854,1876,1877,1854,1863,1863,1852,1874,1845,1855,1875,1864,1851,1873,1878,1844,1864,1845,1875,1886,9848,9852,9844,1826,1813,1824,1804,1826,1835,1804,1835,1827,1815,1827,1836,1816,1815,1836,1860,1858,1837,1837,1816,1836,1861,1858,1872,1861,1882,1873,1844,1878,1874,1875,1862,1883,1854,1877,1876,1862,1876,1883,1884,1877,1863,1874,1885,1863,1864,1873,1887,1878,1864,1888,1875,1883,1886,1886,1897,1919,9852,9855,9844,1847,1826,1824,1835,1826,1848,1849,1827,1835,1850,1836,1827,\r\n1860,1872,1858,1837,1836,1860,1882,1861,1872,1894,1873,1882,1895,1874,1878,1896,1876,1877,1883,1876,1897,1884,1896,1877,1898,1884,1863,1874,1895,1885,1898,1863,1885,1887,1873,1894,1888,1864,1887,1899,1878,1888,1883,1897,1886,1919,1897,1921,9844,9855,9851,1847,1857,1826,1848,1826,1857,1835,1848,1859,1849,1850,1827,1849,1835,1859,1850,1860,1836,1860,1850,1872,1882,1872,1893,1894,1882,1905,1895,1878,1906,1896,1907,1876,1897,1876,1907,1896,1884,1908,1909,1884,1898,1895,1910,1885,1898,1885,1910,1894,1911,1887,1888,1887,1911,1906,1878,1899,1899,1888,1912,1897,1907,1921,9857,9851,9855,1857,1847,1867,1848,1857,1868,1869,1859,1848,1850,1849,1870,1849,1859,1871,1850,1870,1872,1893,1872,1870,1882,1893,1905,1894,1905,1911,1918,1895,1906,1920,1907,1896,1884,1922,1908,1896,1908,1920,1923,1884,1909,1898,1924,1909,1895,1918,1910,1925,1898,1910,1911,1926,1888,1899,1927,1906,1926,1912,1888,1899,1912,1928,1921,1907,1936,9857,9858,9851,9855,9859,9857,1847,1879,1867,1867,1880,1857,1881,1868,1857,1869,1848,1868,1869,1871,1859,1870,1849,1871,1870,1871,1893,1905,1893,1892,1934,1911,1905,1935,1918,1906,1920,1936,1907,1923,1922,1884,1908,1922,1937,1920,1908,1937,1938,1923,1909,1925,1924,1898,1938,1909,1924,1939,1910,1918,1910,1940,1925,1934,1926,1911,1899,1928,1927,1927,1941,1906,1926,1942,1912,1928,1912,1943,9857,9861,9858,9862,9857,9859,1879,1889,1867,1867,1890,1880,1881,1857,1880,1881,1891,1868,1869,1868,1891,1871,1869,1892,1871,1892,1893,1905,1892,1917,1934,1905,1933,1939,1918,1935,1941,1935,1906,1946,1922,1923,1937,1922,1947,9862,9867,9864,1938,1948,1923,1938,1924,1925,1949,1910,1939,1910,1950,1940,1940,1951,1925,1942,1926,1934,1952,1927,1928,1927,1953,1941,1943,1912,1942,1928,1943,1954,9864,9861,9857,9862,9864,9857,1889,1890,1867,1880,1890,1902,1881,1880,1903,1904,1891,1881,1892,1869,1891,1892,1891,1917,1917,1933,1905,1942,1934,1933,1939,1935,1960,1960,1935,1941,1946,1947,1922,1948,1946,1923,9868,9864,9867,1938,1961,1948,1951,1938,1925,1950,1910,1949,1962,1949,1939,1940,1950,1963,1964,1951,1940,1952,1953,1927,1952,1928,1954,1941,1953,\r\n1965,1942,1966,1943,1966,1954,1943,9865,9861,9864,1890,1889,1914,1915,1902,1890,1880,1902,1916,1916,1903,1880,1904,1881,1903,1904,1917,1891,1917,1904,1933,1942,1933,1966,1970,1939,1960,1960,1941,1971,1947,1946,1972,1948,1972,1946,9868,9865,9864,1938,1951,1961,1973,1948,1961,1949,1962,1950,1970,1962,1939,1950,1962,1963,1974,1940,1963,1964,1975,1951,1974,1964,1940,1952,1976,1953,1959,1952,1954,1977,1965,1953,1971,1941,1965,1966,1959,1954,1913,1914,1889,1929,1890,1914,1930,1902,1915,1929,1915,1890,1931,1916,1902,1916,1932,1903,1904,1903,1932,1904,1932,1933,1966,1933,1945,1960,1980,1970,1971,1981,1960,9868,9872,9870,1973,1972,1948,9865,9868,9870,1961,1951,1975,1973,1961,1975,1970,1982,1962,1983,1963,1962,1963,1984,1974,1985,1975,1964,1986,1964,1974,1959,1976,1952,1953,1976,1977,1977,1987,1965,1971,1965,1988,1959,1966,1945,1929,1914,1913,1930,1931,1902,1915,1944,1930,1915,1929,1944,1931,1945,1916,1945,1932,1916,1945,1933,1932,1960,1981,1980,1970,1980,1982,1988,1981,1971,9870,9872,9874,1973,1993,1972,1985,1973,1975,1994,1962,1982,1983,1995,1963,1996,1983,1962,1984,1963,1995,1984,1986,1974,1997,1985,1964,1986,1997,1964,1959,1991,1976,1998,1977,1976,1987,1977,1998,1999,1965,1987,1999,1988,1965,1959,1945,1931,1913,1955,1929,1931,1930,1956,1957,1930,1944,1944,1929,1958,1981,2002,1980,1982,1980,2003,1988,2004,1981,9877,9870,9874,18250,18251,18252,1962,1994,1996,2003,1994,1982,1983,2005,1995,1983,1996,2005,2006,1984,1995,1984,2007,1986,1997,2008,1985,1997,1986,2008,10542,10543,10544,1998,1976,1991,2009,1987,1998,2009,1999,1987,1999,2010,1988,1931,1956,1959,1913,1967,1955,1968,1929,1955,1957,1956,1930,1969,1957,1944,1968,1958,1929,1944,1958,1969,2002,1981,2015,2016,1980,2002,2003,1980,2016,2004,1988,2010,2015,1981,2004,2035,1993,1985,2017,1996,1994,1994,2003,2018,1995,2005,2019,1996,2020,2005,2007,1984,2006,2006,1995,2021,2007,2008,1986,1985,2008,2022,10545,10542,10544,10552,10550,10547,10546,10549,10547,2010,1999,2009,1968,1955,1967,1969,1978,1957,1979,1958,1968,1979,1969,1958,2002,2015,2026,2016,2002,2026,2027,2003,2016,2010,\r\n2028,2004,2015,2004,2029,2022,2035,1985,1996,2017,2020,1994,2018,2017,2027,2018,2003,2019,2005,2030,2019,2021,1995,2020,2031,2005,2007,2006,2032,2006,2021,2033,2007,2034,2008,2022,2008,2034,1991,1957,1978,10547,10550,10548,10549,10546,10551,10546,10547,10548,10554,10549,10551,1989,1968,1967,1969,1990,1978,1968,1992,1979,1969,1979,1990,2040,2026,2015,2016,2026,2041,2042,2027,2016,10554,10551,10556,2004,2028,2029,2040,2015,2029,2043,2020,2017,2018,2044,2017,2018,2027,2045,2046,2030,2005,2019,2030,2047,2048,2021,2019,2049,2031,2020,2005,2031,2046,2006,2033,2032,2007,2032,2034,2033,2021,2050,10546,10553,10551,1990,2001,2014,1992,1968,1989,1989,1967,2000,1992,2001,1979,1990,1979,2001,2040,2054,2026,2054,2041,2026,2055,2016,2041,2042,2045,2027,2016,2055,2042,10556,10551,10555,10559,10556,10557,2029,2056,2040,2049,2020,2043,2017,2044,2043,2044,2018,2057,2018,2045,2058,2046,2059,2030,2047,2030,2060,2019,2047,2048,2048,2050,2021,2061,2031,2049,2046,2031,2062,2063,2032,2033,2033,2050,2063,2014,2001,2025,10555,10551,10553,2011,1992,1989,1989,2000,2011,2013,2001,1992,2054,2040,2056,2054,2068,2041,2055,2041,2069,2042,2070,2045,2071,2042,2055,10556,10555,10557,10559,10557,10561,2072,2049,2043,2073,2043,2044,2018,2058,2057,2074,2044,2057,2045,2075,2058,2046,2062,2059,2060,2030,2059,2047,2060,2076,2047,2077,2048,2050,2048,2077,2061,2062,2031,2078,2061,2049,2063,2050,2077,2013,2025,2001,2053,2025,2036,2011,2013,1992,2024,2011,2000,10564,10561,10562,10564,10562,10566,2068,2069,2041,2082,2055,2069,2071,2070,2042,2083,2045,2070,2071,2055,2084,10558,10557,10555,10561,10557,10560,2072,2078,2049,2073,2072,2043,2073,2044,2074,2058,2085,2057,2085,2074,2057,2045,2083,2075,2086,2058,2075,2087,2059,2062,16359,16360,16361,9895,9900,9899,16362,16363,16364,2061,2088,2062,2089,2061,2078,9891,9894,9892,2036,2025,2013,2036,2065,2053,2036,2013,2011,2011,2024,2039,2038,2024,2000,10561,10560,10562,10566,10562,10565,10570,10566,10568,2084,2055,2082,10572,10570,10568,2071,2093,2070,2083,2070,2094,2095,2071,2084,10558,10560,10557,2078,2072,2096,2097,2072,\r\n2073,2074,2098,2073,2058,2086,2085,2085,2098,2074,2083,2099,2075,2086,2075,2099,2087,2100,2059,2087,2062,2088,9902,9899,9900,9892,9894,9895,2088,2061,2089,2089,2078,2101,2036,2039,2065,2011,2039,2036,2038,2039,2024,10560,10563,10562,10563,10565,10562,10566,10565,10568,2084,2082,2105,10572,10568,10571,2071,2095,2093,2070,2093,2094,2083,2094,2106,10577,10578,10574,2065,2067,2090,2096,2072,2097,2078,2096,2107,2097,2073,2098,2108,2085,2086,2108,2098,2085,2083,2106,2099,2086,2099,2109,9906,9904,9902,16365,16366,16367,9901,9899,9902,16366,16369,16368,2101,2078,2107,16368,16369,16371,2065,2039,2067,2038,2067,2039,2090,2067,2092,10565,10563,10567,10565,10569,10568,10574,10572,10571,10571,10568,10569,2093,2095,2112,2094,2093,2106,10577,10574,10576,2096,2097,2113,2113,2107,2096,2097,2098,2114,2108,2086,2109,2108,2115,2098,2116,2099,2106,2109,2099,2117,9906,9908,9904,9904,9901,9902,16366,16368,16367,16371,16374,16372,16368,16371,16370,2052,2067,2038,2081,2092,2067,2092,2081,2104,2104,2119,2127,10574,10571,10575,10573,10571,10569,2095,2120,2112,2112,2106,2093,10576,10574,10575,2113,2097,2114,2107,2113,2121,2115,2114,2098,2108,2109,2122,2123,2115,2108,2116,2117,2099,2116,2106,2124,2117,2125,2109,16370,16367,16368,16372,16374,16376,16372,16370,16371,2067,2052,2081,2104,2102,2119,2137,2144,2118,2118,2119,2102,2128,2112,2120,2112,2124,2106,2120,2137,2128,2113,2114,2129,2121,2113,2129,2114,2115,2129,2125,2122,2109,2122,2123,2108,2123,2130,2115,2116,2131,2117,2132,2116,2124,2133,2125,2117,16372,16376,16375,16372,16373,16370,2118,2134,2137,2118,2102,2110,2128,2136,2112,2124,2112,2138,2134,2128,2137,16382,16376,16383,2130,2129,2115,16398,16396,16393,2116,2132,2131,2133,2117,2131,2140,2132,2124,16375,16376,16377,16375,16373,16372,2134,2118,2126,2110,2126,2118,2136,2128,2135,2141,2112,2136,2141,2138,2112,2124,2138,2142,2134,2135,2128,16379,16376,16382,16386,16382,16383,2143,2129,2130,16396,16398,16400,2140,2124,2142,16376,16379,16377,16373,16375,16377,2134,2126,2135,2141,2142,2138,10579,10580,10581,10582,10580,10579,10581,10580,10583,10579,\r\n10581,10584,10582,10585,10580,10579,10586,10582,10583,10580,10587,10581,10583,10588,10581,10589,10584,10590,10579,10584,10582,10591,10585,10585,10592,10580,10590,10586,10579,10582,10586,10593,10580,10592,10587,10583,10587,10594,10588,10583,10595,10596,10581,10588,10589,10581,10596,10589,10597,10584,10590,10584,10597,10582,10598,10591,10599,10585,10591,10592,10585,10600,10586,10590,10601,10602,10593,10586,10598,10582,10593,10587,10592,10603,10587,10603,10594,10595,10583,10594,10604,10588,10595,10596,10588,10605,10589,10596,10606,10589,10607,10597,10597,10608,10590,10598,10609,10591,10599,10600,10585,10599,10591,10610,10600,10611,10592,10601,10590,10608,10586,10601,10612,10593,10602,10613,10612,10602,10586,10598,10593,10614,10603,10592,10611,10594,10603,10615,10594,10616,10595,10605,10588,10604,10604,10595,10617,10618,10596,10605,10606,10596,10618,10606,10619,10589,10589,10619,10607,10597,10607,10608,10620,10609,10598,10591,10609,10610,10600,10599,10621,10610,10621,10599,10611,10600,10622,10608,10623,10601,10612,10601,10624,10613,10602,10625,10614,10593,10613,10625,10602,10612,10598,10614,10626,10603,10611,10622,10603,10627,10615,10594,10615,10628,10616,10594,10628,10617,10595,10616,10629,10605,10604,10630,10604,10617,10605,10631,10618,10606,10618,10632,10606,10633,10619,10623,10607,10619,10608,10607,10623,10620,10634,10609,10620,10598,10626,10635,10610,10609,10636,10600,10621,10610,10637,10621,10622,10600,10636,10601,10623,10638,10601,10638,10624,10639,10612,10624,10640,10613,10625,10641,10614,10613,10640,10625,10612,10641,10626,10614,10603,10622,10627,10627,10642,10615,10628,10615,10642,10616,10628,10643,10617,10616,10644,10631,10605,10629,10629,10604,10645,10604,10630,10646,10630,10617,10647,10631,10632,10618,10606,10632,10633,10633,10648,10619,10623,10619,10648,10620,10649,10634,10634,10635,10609,10626,10650,10620,10610,10635,10651,10636,10621,10637,10610,10651,10637,10622,10636,10652,10638,10623,10648,10638,10653,10624,10640,10612,10639,10639,10624,10653,10613,10640,10654,10655,10641,10613,10626,10641,10650,10622,\r\n10656,10627,10627,10656,10642,10628,10642,10657,10628,10657,10643,10644,10616,10643,10617,10644,10647,10631,10629,10645,10604,10646,10645,10658,10646,10630,10630,10647,10658,10631,10659,10632,10660,10633,10632,10633,10661,10648,10620,10662,10649,10649,10663,10634,10635,10634,10664,10620,10650,10662,10665,10651,10635,10636,10637,10666,10651,10667,10637,10652,10636,10666,10668,10622,10652,10638,10648,10669,10670,10653,10638,10654,10640,10639,10671,10639,10653,10655,10613,10654,10641,10655,10672,10641,10672,10650,10622,10668,10656,10642,10656,10673,10674,10657,10642,10643,10657,10675,10644,10643,10675,10675,10647,10644,10631,10645,10676,10646,10677,10645,10678,10646,10658,10679,10658,10647,10676,10659,10631,10632,10659,10680,10660,10661,10633,10660,10632,10680,10669,10648,10661,10681,10649,10662,10649,10682,10663,10634,10663,10664,10635,10664,10665,10672,10662,10650,10665,10683,10651,10637,10667,10666,10651,10684,10667,10652,10666,10685,10668,10652,10686,10670,10638,10669,10687,10653,10670,10654,10639,10671,10671,10653,10688,10655,10654,10689,10655,10690,10672,10668,10673,10656,10642,10673,10691,10692,10657,10674,10642,10691,10674,10692,10675,10657,10679,10647,10675,10693,10676,10645,10646,10694,10677,10677,10693,10645,10678,10695,10646,10658,10696,10678,10679,10696,10658,10697,10659,10676,10659,10697,10680,10660,10698,10661,10699,10660,10680,10661,10700,10669,10681,10682,10649,10701,10681,10662,10702,10663,10682,10664,10663,10703,10664,10703,10665,10672,10690,10662,10665,10704,10683,10683,10684,10651,10705,10666,10667,10667,10684,10706,10666,10705,10685,10685,10686,10652,10673,10668,10686,10707,10670,10669,10653,10687,10688,10687,10670,10708,10671,10709,10654,10688,10710,10671,10689,10654,10709,10655,10689,10711,10655,10712,10690,10713,10691,10673,10714,10692,10674,10713,10674,10691,10675,10692,10715,10675,10716,10679,10693,10717,10676,10694,10646,10695,10694,10718,10677,10677,10718,10693,10678,10719,10695,10678,10696,10719,10720,10696,10679,10697,10676,10717,10680,10697,10721,10699,10698,10660,10700,10661,10698,10680,\r\n10721,10699,10700,10707,10669,10722,10682,10681,10701,10722,10681,10701,10662,10690,10702,10703,10663,10702,10682,10723,10665,10703,10724,10724,10704,10665,10725,10683,10704,10684,10683,10725,10667,10726,10705,10706,10684,10727,10706,10726,10667,10685,10705,10728,10729,10686,10685,10673,10686,10730,10708,10670,10707,10731,10688,10687,10687,10708,10731,10671,10710,10709,10732,10710,10688,10709,10733,10689,10711,10689,10733,10711,10712,10655,10734,10690,10712,10713,10673,10735,10714,10736,10692,10674,10737,10714,10713,10737,10674,10692,10736,10715,10715,10716,10675,10679,10716,10720,10693,10718,10717,10738,10694,10695,10718,10694,10739,10719,10740,10695,10696,10741,10719,10742,10696,10720,10697,10717,10743,10743,10721,10697,10699,10744,10698,10700,10698,10745,10746,10699,10721,10747,10707,10700,10722,10723,10682,10701,10748,10722,10749,10701,10690,10750,10703,10702,10723,10751,10702,10703,10752,10724,10704,10724,10753,10704,10754,10725,10725,10727,10684,10726,10755,10705,10756,10706,10727,10706,10756,10726,10755,10728,10705,10729,10685,10728,10729,10730,10686,10735,10673,10730,10708,10707,10757,10688,10731,10732,10708,10758,10731,10710,10759,10709,10732,10760,10710,10709,10761,10733,10711,10733,10762,10711,10763,10712,10749,10690,10734,10734,10712,10763,10713,10735,10764,10714,10765,10736,10737,10766,10714,10767,10737,10713,10765,10715,10736,10715,10768,10716,10768,10720,10716,10718,10769,10717,10694,10738,10739,10738,10695,10740,10770,10718,10739,10719,10771,10740,10741,10696,10742,10719,10741,10772,10742,10720,10773,10717,10769,10743,10774,10721,10743,10699,10746,10744,10745,10698,10744,10745,10747,10700,10746,10721,10775,10776,10707,10747,10723,10722,10748,10748,10701,10777,10777,10701,10749,10703,10750,10752,10750,10702,10778,10723,10779,10751,10702,10751,10778,10752,10780,10724,10753,10724,10781,10704,10753,10754,10754,10727,10725,10756,10755,10726,10756,10727,10782,10783,10728,10755,10728,10783,10729,10729,10784,10730,10785,10735,10730,10757,10707,10776,10757,10758,10708,10732,10731,10786,10758,10786,10731,10710,\r\n10760,10759,10759,10761,10709,10732,10787,10760,10788,10733,10761,10733,10788,10762,10763,10711,10762,10734,10789,10749,10734,10763,10790,10735,10791,10764,10767,10713,10764,10714,10792,10765,10737,10767,10766,10714,10766,10792,10794,10768,10715,10773,10720,10768,10718,10770,10769,10795,10739,10738,10738,10740,10795,10770,10739,10796,10719,10772,10771,10771,10797,10740,10798,10741,10742,10799,10772,10741,10800,10742,10773,10769,10774,10743,10775,10721,10774,10746,10801,10744,10745,10744,10802,10776,10747,10745,10803,10746,10775,10723,10748,10779,10777,10804,10748,10777,10749,10789,10780,10752,10750,10778,10805,10750,10779,10806,10751,10751,10806,10778,10781,10724,10780,10781,10807,10753,10753,10808,10754,10754,10782,10727,10756,10809,10755,10782,10810,10756,10811,10783,10755,10729,10783,10812,10729,10813,10784,10730,10784,10785,10735,10785,10813,10757,10776,10814,10757,10815,10758,10816,10732,10786,10758,10817,10786,10818,10759,10760,10759,10818,10761,10816,10787,10732,10760,10787,10819,10788,10761,10818,10762,10788,10820,10762,10790,10763,10821,10789,10734,10790,10822,10734,10735,10813,10791,10791,10823,10764,10767,10764,10823,10767,10824,10766,10827,10768,10794,10768,10827,10773,10828,10769,10770,10739,10795,10829,10797,10795,10740,10829,10796,10739,10770,10796,10828,10771,10772,10830,10830,10797,10771,10799,10741,10798,10798,10742,10800,10831,10772,10799,10773,10832,10800,10803,10801,10746,10801,10802,10744,10802,10835,10745,10776,10745,10814,10748,10836,10779,10777,10821,10804,10836,10748,10804,10821,10777,10789,10780,10750,10805,10805,10778,10837,10779,10838,10806,10778,10806,10837,10781,10780,10839,10807,10781,10840,10808,10753,10807,10754,10808,10782,10756,10841,10809,10809,10811,10755,10782,10842,10810,10810,10841,10756,10783,10811,10843,10843,10812,10783,10813,10729,10812,10784,10813,10785,10757,10814,10844,10815,10757,10844,10845,10758,10815,10816,10786,10846,10845,10817,10758,10817,10846,10786,10818,10760,10819,10847,10787,10816,10787,10847,10819,10788,10818,10848,10820,10788,10848,10820,10849,10762,10850,\r\n10790,10762,10822,10821,10734,10851,10822,10790,10852,10791,10813,10853,10823,10791,10823,10824,10767,10773,10827,10832,10795,10857,10829,10797,10858,10795,10829,10859,10796,10828,10796,10860,10830,10772,10831,10858,10797,10830,10799,10798,10861,10862,10798,10800,10799,10863,10831,10832,10864,10800,10803,10866,10801,10802,10801,10867,10802,10867,10835,10835,10814,10745,10779,10836,10869,10870,10804,10821,10871,10836,10804,10780,10805,10839,10872,10805,10837,10779,10869,10838,10806,10838,10873,10873,10837,10806,10781,10839,10874,10781,10874,10840,10875,10807,10840,10875,10808,10807,10808,10842,10782,10841,10876,10809,10809,10877,10811,10810,10842,10841,10878,10843,10811,10843,10879,10812,10812,10852,10813,10880,10844,10814,10881,10815,10844,10845,10815,10882,10883,10816,10846,10884,10817,10845,10817,10885,10846,10886,10818,10819,10847,10816,10883,10887,10819,10847,10888,10848,10818,10889,10820,10848,10849,10820,10890,10762,10849,10850,10850,10851,10790,10821,10822,10851,10852,10853,10791,10891,10823,10853,10857,10795,10858,10829,10857,10899,10859,10829,10900,10859,10860,10796,10858,10830,10831,10861,10798,10862,10863,10799,10861,10800,10864,10862,10901,10831,10863,10866,10867,10801,10835,10867,10904,10835,10880,10814,10871,10869,10836,10905,10804,10870,10851,10870,10821,10871,10804,10906,10839,10805,10907,10805,10872,10907,10908,10872,10837,10838,10869,10909,10838,10909,10873,10837,10873,10910,10839,10911,10874,10840,10874,10912,10913,10875,10840,10914,10808,10875,10842,10808,10914,10876,10841,10915,10809,10876,10877,10878,10811,10877,10841,10842,10915,10916,10843,10878,10879,10843,10917,10852,10812,10879,10880,10881,10844,10815,10881,10882,10884,10845,10882,10883,10846,10918,10885,10817,10884,10885,10918,10846,10888,10818,10886,10886,10819,10887,10883,10887,10847,10889,10848,10888,10890,10820,10889,10919,10849,10890,10849,10919,10850,10851,10850,10920,10853,10852,10921,10853,10921,10891,10857,10858,10899,10829,10899,10927,10927,10900,10829,10928,10859,10900,10858,10831,10901,10862,10930,10861,10863,10861,10931,10864,\r\n10932,10862,10901,10863,10933,10880,10835,10904,10871,10939,10869,10905,10906,10804,10905,10870,10940,10941,10870,10851,10871,10906,10942,10839,10907,10943,10944,10907,10872,10945,10872,10908,10908,10837,10910,10869,10939,10909,10909,10910,10873,10911,10839,10943,10911,10946,10874,10946,10912,10874,10840,10912,10913,10875,10913,10947,10947,10914,10875,10915,10842,10914,10915,10948,10876,10878,10877,10876,10916,10917,10843,10949,10916,10878,10921,10879,10917,10852,10879,10921,10883,10918,10953,10885,10884,10954,10885,10955,10918,10886,10956,10888,10887,10957,10886,10883,10953,10887,10958,10889,10888,10959,10890,10889,10919,10890,10960,10920,10850,10919,10920,10941,10851,10961,10891,10921,10970,10899,10858,10970,10927,10899,10900,10927,10928,10901,10970,10858,10930,10862,10932,10861,10930,10972,10861,10972,10931,10933,10863,10931,10974,10901,10933,10871,10981,10939,10942,10906,10905,10870,10941,10940,10982,10905,10940,10981,10871,10942,10983,10943,10907,10944,10983,10907,10945,10944,10872,10908,10984,10945,10908,10910,10985,10986,10909,10939,10987,10910,10909,10911,10943,10988,10911,10988,10946,10989,10912,10946,10913,10912,10989,10989,10947,10913,10947,10990,10914,10915,10914,10990,10915,10990,10948,10991,10876,10948,10876,10992,10878,10916,10993,10917,10993,10916,10949,10878,10992,10949,10921,10917,10993,10996,10953,10918,10954,10955,10885,10996,10918,10955,10886,10957,10956,10958,10888,10956,10887,10998,10957,10998,10887,10953,10889,10958,10959,10960,10890,10959,10999,10919,10960,10999,10920,10919,10920,11000,10941,10961,10921,10993,10927,10970,11009,10928,10927,11010,11012,10970,10901,10930,10932,11013,11014,10972,10930,10931,10972,11014,10931,11015,10933,10974,11012,10901,11018,10974,10933,11025,10939,10981,10982,10942,10905,10941,11026,10940,11027,10982,10940,11028,10981,10942,10943,10983,11029,10983,10944,11030,11030,10944,10945,10984,10908,10985,11030,10945,10984,10985,10910,11031,11032,10909,10986,11025,10986,10939,10987,11031,10910,10987,10909,11032,10943,11029,10988,10946,10988,11029,11033,10989,10946,10989,\r\n11034,10947,10990,10947,11035,10948,10990,11036,10876,10991,10992,10991,10948,11037,10992,10991,10949,10998,10953,10996,11043,10956,10957,10956,11044,10958,11043,10957,10998,10958,11045,10959,11046,10960,10959,11047,10999,10960,11000,10920,10999,10941,11000,11026,10970,11012,11009,11009,11010,10927,10928,11010,11057,10932,11017,11013,10930,11013,11058,11014,10930,11058,10931,11014,11015,10933,11015,11059,11062,11012,10974,11062,10974,11018,11018,10933,11059,10981,11028,11025,11028,10942,10982,11026,11027,10940,10982,11027,11068,11069,11029,10983,10983,11030,11070,10984,10985,11071,10984,11072,11030,10985,11031,11071,4392,4375,4407,10986,11025,11073,11074,11031,10987,4355,4375,4340,11033,10946,11029,11033,11075,10989,10989,11075,11034,10947,11034,11035,11035,11036,10990,10948,11036,11037,11037,11076,10991,10991,11076,10949,11082,10998,10996,10956,11043,11044,10958,11044,11045,11043,10998,11082,10959,11045,11085,11046,11047,10960,11046,10959,11085,11086,10999,11047,10999,11087,11000,11088,11026,11000,11009,11012,11062,11009,11099,11010,11100,11057,11010,11013,11017,11101,11013,11102,11058,11014,11058,11102,11103,11015,11014,11059,11015,11103,11062,11018,11106,11106,11018,11059,11025,11028,11114,11115,11028,10982,11068,11027,11026,10982,11068,11115,11116,11029,11069,11069,10983,11070,11117,11070,11030,10984,11071,11072,11118,11030,11072,11119,11071,11031,4392,4340,4375,4428,4392,4407,4473,4455,4428,11074,11120,11031,4337,4355,4301,4301,4355,4340,11116,11033,11029,11121,11075,11033,11034,11075,11122,11034,11122,11035,11035,11123,11036,11037,11036,11124,11076,11037,11125,11076,11077,10949,11044,11043,11132,11045,11044,11133,11134,11043,11082,11135,11085,11045,11136,11047,11046,11137,11046,11085,10999,11086,11087,11138,11086,11047,11088,11000,11087,11088,11068,11026,11062,11149,11009,11149,11099,11009,11099,11100,11010,11105,11101,11017,11151,11013,11101,11013,11151,11102,11103,11014,11102,11059,11103,11152,11062,11106,11155,11156,11106,11059,11163,11114,11028,11028,11115,11163,11164,11115,11068,11116,11069,11070,11165,\r\n11070,11117,11117,11030,11118,11071,11166,11072,11167,11118,11072,11119,11166,11071,11119,11031,11120,4376,4340,4392,4394,4392,4428,4428,4455,4438,4356,4337,4325,4337,4301,4325,4301,4340,4328,11033,11116,11168,11121,11122,11075,11033,11169,11121,11170,11035,11122,11035,11171,11123,11124,11036,11123,11124,11172,11037,11125,11037,11173,11077,11076,11125,11043,11134,11132,11132,11182,11044,11133,11044,11182,11133,11183,11045,11137,11085,11135,11135,11045,11183,11138,11047,11136,11046,11137,11136,11138,11087,11086,11088,11087,11184,11088,11185,11068,11155,11149,11062,11194,11099,11149,11100,11099,11194,11196,11101,11105,11196,11151,11101,11197,11102,11151,11103,11102,11197,11197,11152,11103,11156,11059,11152,11155,11106,11199,11200,11106,11156,4438,4455,4474,11115,11209,11163,11209,11115,11164,11164,11068,11185,11168,11116,11070,11210,11070,11165,11165,11117,11211,11118,11211,11117,11167,11072,11166,11167,11212,11118,11166,11119,11213,11214,11119,11120,4376,4342,4340,4394,4376,4392,4394,4428,4438,11120,11261,11214,4301,4300,4325,4340,4342,4328,4306,4301,4328,11033,11168,11169,11215,11122,11121,11169,11216,11121,11171,11035,11170,11215,11170,11122,11171,11217,11123,11123,11218,11124,11124,11218,11172,11173,11037,11172,11077,11125,11173,11132,11134,11228,11182,11132,11229,11133,11182,11183,11230,11137,11135,11135,11183,11231,11138,11136,11230,11230,11136,11137,11087,11138,11184,11184,11232,11088,11185,11088,11232,11155,11240,11149,11240,11194,11149,11241,11100,11194,11196,11105,11154,11151,11196,11242,11151,11242,11197,11197,11243,11152,11152,11244,11156,11106,11247,11199,11248,11155,11199,11106,11200,11247,11200,11156,11244,4474,4475,4438,4474,4507,4475,4507,4547,4517,11257,11164,11185,11210,11168,11070,11210,11165,11258,11211,11259,11165,11118,11212,11211,11167,11166,11260,11260,11212,11167,11119,11214,11213,11260,11166,11213,4362,4342,4376,4362,4376,4394,4394,4438,4408,4325,4300,4327,4288,4300,4301,4342,4316,4328,4279,4301,4306,4306,4328,4316,11258,11169,11168,11216,11215,11121,11216,11169,11262,11263,11171,11170,11170,\r\n11215,11263,11171,11264,11217,11123,11217,11218,11265,11172,11218,11220,11173,11172,11077,11173,11220,11273,11132,11228,11273,11229,11132,11274,11182,11229,11274,11183,11182,11230,11135,11275,11276,11231,11183,11231,11275,11135,11138,11230,11277,11184,11138,11278,11184,11279,11232,11257,11185,11232,11248,11240,11155,11240,11291,11194,11194,11292,11241,11196,11154,11246,11293,11242,11196,11197,11242,11243,11152,11243,11294,11152,11294,11244,11299,11199,11247,11248,11199,11299,11200,11300,11247,11200,11244,11300,4438,4475,4439,4507,4491,4475,4556,4517,4547,4507,4517,4491,11168,11210,11258,11258,11165,11259,11310,11259,11211,11310,11211,11212,11260,11311,11212,4327,4358,4374,11213,11312,11260,4331,4342,4362,4362,4394,4360,4439,4408,4438,4360,4394,4408,4327,4300,4313,4300,4288,4278,4279,4288,4301,4331,4316,4342,4306,4283,4279,4306,4316,4283,11258,11262,11169,11313,11215,11216,11314,11216,11262,11171,11263,11264,11315,11263,11215,11316,11217,11264,11217,11265,11218,11317,11172,11265,11220,11172,11318,11273,11329,11229,11274,11229,11329,11276,11183,11274,11230,11275,11277,11276,11330,11231,11231,11331,11275,11278,11138,11277,11184,11278,11279,11279,11332,11232,11257,11232,11332,11341,11240,11248,11291,11240,11342,11292,11194,11291,11292,11343,11241,11196,11246,11297,11293,11243,11242,11297,11293,11196,11293,11294,11243,11294,11344,11244,11348,11299,11247,11341,11248,11299,11348,11247,11300,11349,11300,11244,4439,4475,4456,4456,4475,4491,4518,4517,4556,4517,4482,4491,11258,11259,11360,11310,11361,11259,11310,11212,11361,11312,11311,11260,11311,11361,11212,4327,4339,4358,4391,4374,4358,11312,11213,11362,4331,4362,4361,4361,4362,4360,4439,4409,4408,4360,4408,4393,4300,4278,4313,4313,4339,4327,4260,4278,4288,4260,4288,4279,4316,4331,4307,4279,4283,4272,4283,4316,4307,11258,11360,11262,11215,11313,11315,11363,11313,11216,11314,11363,11216,11364,11314,11262,11315,11264,11263,11365,11217,11316,11264,11366,11316,11265,11217,11365,11318,11172,11317,14924,14907,14860,11273,11374,11329,11329,11276,11274,11275,11375,11277,11376,11330,\r\n11276,11330,11331,11231,11275,11331,11377,11277,11375,11278,11378,11279,11278,11332,11279,11378,11257,11332,11379,11240,11341,11390,11390,11342,11240,11292,11291,11342,11292,11391,11343,11297,11246,11346,11297,11392,11293,11293,11392,11294,11294,11392,11344,11344,11349,11244,11396,11299,11348,11397,11341,11299,11396,11348,11300,11396,11300,11349,4456,4429,4439,4482,4456,4491,4518,4482,4517,4518,4556,4555,11360,11259,11406,11361,11406,11259,11312,11407,11311,11311,11408,11361,4373,4358,4339,4373,4391,4358,11312,11362,11409,4330,4331,4361,4361,4360,4330,4409,4439,4429,4393,4408,4409,4360,4393,4377,4326,4313,4278,4313,4338,4339,4262,4278,4260,4269,4260,4279,4331,4330,4307,4272,4283,4263,4279,4272,4269,4307,4292,4283,11364,11262,11360,11315,11313,11363,15183,15196,15170,15141,15156,15170,11264,11315,11366,11316,11410,11365,11411,11316,11366,11365,11410,11265,14924,14860,14940,14890,14860,14907,11424,11329,11374,11276,11329,11376,11275,11377,11375,11425,11330,11376,11426,11331,11330,11377,11331,11427,11378,11278,11375,11332,11378,11428,11332,11429,11379,4555,4556,4593,11436,11390,11341,11342,11390,11437,11292,11342,11391,2710,2696,2666,11395,11297,11346,11438,11392,11297,11392,11438,11344,11344,11439,11349,11397,11299,11396,11397,11443,11341,11396,11349,11444,4445,4429,4456,4456,4482,4445,4482,4518,4498,4518,4555,4516,11360,11406,11454,11408,11406,11361,11455,11407,11312,11408,11311,11407,4339,4371,4373,11312,11409,11456,4343,4330,4360,4409,4429,4363,4409,4377,4393,4343,4360,4377,4313,4326,4338,15247,15259,15237,4339,4338,4371,15272,15237,15259,4252,4262,4260,4269,4255,4260,4330,4317,4307,4292,4263,4283,4255,4272,4263,4255,4269,4272,4307,4317,4292,11364,11360,11454,11315,11363,11457,11532,11492,11363,15183,15170,15156,15141,15126,15156,11457,11366,11315,11410,11316,11411,14921,14969,14956,14860,14890,14874,11424,11376,11329,11424,11374,11466,11467,11375,11377,11425,11426,11330,11425,11376,11468,11331,11426,11469,11427,11331,11469,11467,11377,11427,11467,11378,11375,11378,11467,11428,11429,11332,11428,11470,11379,11429,\r\n4553,4555,4593,11436,11473,11390,11436,11341,11443,2731,2756,2732,11474,11342,11437,2708,2696,2720,2696,2680,2666,11438,11297,11395,11395,11346,11442,11344,11438,11439,11439,11444,11349,11397,11396,11478,11443,11397,11479,11396,11444,11478,4445,4415,4429,4482,4498,4445,4498,4518,4516,4555,4553,4516,11408,11454,11406,11455,11490,11407,11456,11455,11312,11408,11407,11491,4373,4371,4390,4373,4390,4427,4330,4343,4317,4429,4415,4363,4409,4363,4377,4378,4343,4377,4357,4338,4326,15247,15237,15211,4357,4371,4338,4256,4271,4262,4256,4262,4252,4252,4260,4255,4292,4284,4263,4253,4255,4263,4292,4317,4295,15107,15141,15140,11492,11457,11363,11532,11558,11492,15183,15156,15157,15126,15141,15107,15126,15157,15156,11366,11457,11493,14921,14872,14890,14921,14956,14922,14874,14890,14872,14830,14860,14874,11376,11424,11468,11468,11424,11466,11505,11426,11425,11506,11425,11468,11507,11469,11426,11469,11508,11427,11467,11427,11509,11429,11428,11467,4553,4593,4615,11470,11429,11510,11512,11473,11436,11473,11513,11390,11514,11436,11443,2731,2732,2709,2708,2731,2709,2708,2680,2696,2631,2666,2680,11438,11395,11477,11395,11442,11477,11438,11477,11439,11444,11439,11515,11520,11397,11478,11520,11479,11397,11514,11443,11479,11521,11478,11444,4446,4415,4445,4445,4498,4481,4498,4516,4481,4516,4553,4515,11491,11454,11408,15128,15171,15158,15128,15108,15144,15158,15171,15185,4357,4390,4371,4426,4427,4390,4343,4344,4317,4363,4415,4399,4378,4377,4363,4344,4343,4378,4326,4372,4357,15227,15211,15237,4271,4256,4281,4249,4256,4252,4252,4255,4250,4292,4295,4284,4265,4263,4284,4250,4255,4253,4265,4253,4263,4295,4317,4332,15108,15107,15140,11492,11493,11457,11532,11584,11558,11558,11585,11492,15126,15107,15088,15126,15142,15157,14921,14922,14872,14922,14956,14957,14874,14872,14830,11506,11468,11466,11505,11507,11426,11538,11505,11425,11506,11538,11425,11507,11539,11469,11508,11469,11539,11508,11509,11427,11429,11467,11509,4594,4553,4615,11429,11509,11510,11540,11470,11510,2758,2732,2773,11512,11436,11514,2719,2709,2732,2708,2709,2679,2680,2708,2679,2679,2631,\r\n2680,11519,11477,11442,11515,11439,11477,11515,11541,11444,11521,11520,11478,11546,11479,11520,11514,11479,11547,11521,11444,11548,4446,4416,4415,4481,4446,4445,4481,4516,4515,4515,4553,4554,15128,15158,15143,15089,15108,15128,15158,15185,15184,4357,4406,4390,4406,4426,4390,4344,4332,4317,4415,4416,4399,4383,4363,4399,4378,4363,4344,15211,15200,15218,15212,15211,15227,4256,4270,4281,4249,4261,4256,4252,4250,4249,4274,4284,4295,4274,4265,4284,4251,4250,4253,4265,4257,4253,4332,4320,4295,15070,15107,15108,14989,14957,14956,11584,11609,11558,11558,11609,11585,14990,14989,15017,15107,15070,15088,15088,15142,15126,14922,14905,14872,14922,14957,14938,14830,14872,14859,11505,11538,11507,11506,11564,11538,11565,11539,11507,11566,11508,11539,11509,11508,11510,4554,4553,4594,11567,11540,11510,2744,2732,2758,11547,11512,11514,2719,2695,2709,2719,2732,2744,2679,2709,2695,2631,2679,2665,11519,11515,11477,11442,11545,11519,11519,11541,11515,11548,11444,11541,11570,11520,11521,11546,11547,11479,11546,11520,11570,11521,11548,11571,4446,4462,4416,4481,4483,4446,4481,4515,4483,4515,4554,4519,15158,15127,15143,15143,15089,15128,15070,15108,15089,15158,15184,15168,4406,4437,4426,4332,4344,4363,4383,4399,4416,4363,4383,4348,15211,15193,15200,15212,15193,15211,15227,15219,15212,4270,4256,4261,4270,4290,4281,4249,4268,4261,4249,4250,4251,4308,4274,4295,4274,4257,4265,4257,4251,4253,4332,4348,4320,4308,4295,4320,14957,14989,14990,11628,11585,11609,15002,14990,15017,15070,15035,15088,14905,14922,14938,14873,14872,14905,14970,14938,14957,14859,14872,14873,14830,14859,14842,11538,11565,11507,11538,11564,11565,11539,11565,11590,11508,11566,11591,11566,11539,11592,11510,11508,11591,4594,4595,4554,4594,4679,4652,11510,11591,11567,2744,2758,2772,2784,2772,2758,2721,2695,2719,2744,2721,2719,2679,2695,2665,2632,2631,2665,11519,11545,11569,11541,11519,11593,11548,11541,11594,11570,11521,11571,11596,11547,11546,11546,11570,11597,11598,11571,11548,4483,4462,4446,4447,4416,4462,4483,4515,4519,4575,4519,4554,15158,15137,15127,15127,15089,15143,15089,15052,\r\n15070,15158,15168,15137,15168,15200,15193,4332,4363,4348,4417,4383,4416,4383,4366,4348,15212,15201,15193,4303,4281,4290,15219,15201,15212,4270,4261,4282,4270,4282,4290,4249,4259,4268,4280,4261,4268,4249,4251,4254,4274,4308,4293,4273,4257,4274,4264,4251,4257,4320,4348,4366,4333,4308,4320,14957,14990,14970,11645,11585,11628,15002,14970,14990,15035,15002,15017,15070,15034,15035,14905,14938,14939,14905,14906,14873,14971,14938,14970,14859,14873,14842,14830,14842,14821,11615,11565,11564,11565,11615,11590,11539,11590,11592,11566,11616,11591,11616,11566,11592,4594,4632,4595,4595,4575,4554,4679,4699,4652,4652,4632,4594,11616,11567,11591,2744,2772,2757,11596,11619,11547,2699,2695,2721,2744,2757,2721,2682,2665,2695,2632,2665,2650,11519,11569,11593,11541,11593,11617,11617,11594,11541,11598,11548,11594,11570,11571,11597,11546,11597,11596,11620,11571,11598,4483,4499,4462,4447,4417,4416,4462,4463,4447,4483,4519,4499,4519,4575,4557,15127,15137,15105,15127,15105,15089,15052,15089,15105,15034,15070,15052,15137,15168,15153,15168,15193,15179,4400,4383,4417,4383,4349,4366,15193,15201,15179,4290,4315,4303,15219,15228,15201,4291,4282,4261,4305,4290,4282,4254,4259,4249,4277,4268,4259,4261,4280,4289,4280,4268,4277,4254,4251,4258,4308,4318,4293,4274,4293,4273,4264,4257,4273,4258,4251,4264,4349,4320,4366,4308,4333,4318,4349,4333,4320,15018,14970,15002,15002,15035,15034,14939,14938,14971,14905,14939,14906,14889,14873,14906,15001,14971,14970,14842,14873,14889,14821,14842,14840,11614,11615,11564,11590,11615,11592,11592,11631,11616,4595,4632,4596,4595,4596,4575,4722,4652,4699,4652,4678,4632,2757,2772,2783,2794,2783,2772,2682,2695,2699,2699,2721,2723,2721,2757,2745,2650,2665,2682,11632,11617,11593,11594,11617,11632,11633,11598,11594,11571,11620,11597,11596,11597,11636,11598,11637,11620,4462,4499,4463,4447,4432,4417,4447,4463,4432,4519,4535,4499,4596,4557,4575,4519,4557,4535,15105,15137,15125,15052,15105,15086,15034,15052,15018,15153,15168,15179,15125,15137,15153,4400,4349,4383,4400,4417,4432,15202,15179,15201,15248,15228,15260,15220,15201,15228,\r\n4304,4282,4291,4261,4289,4291,4304,4305,4282,4259,4254,4267,4277,4259,4267,4289,4280,4302,4277,4287,4280,4266,4254,4258,4293,4318,4294,4294,4273,4293,4264,4273,4285,4266,4258,4264,4333,4345,4318,4345,4333,4349,15018,15001,14970,15002,15034,15018,14939,14971,14972,14923,14906,14939,14923,14889,14906,14972,14971,15001,14886,14842,14889,14856,14840,14842,14821,14840,14828,11615,11614,11646,11631,11592,11615,11647,11616,11631,4632,4633,4596,4652,4722,4697,4652,4697,4678,4678,4698,4632,2774,2757,2783,2794,2805,2783,2682,2699,2668,2723,2721,2745,2723,2711,2699,2774,2745,2757,2650,2682,2668,11635,11632,11593,11594,11632,11648,11633,11649,11598,11633,11594,11648,15121,15084,15099,2794,2816,2805,11598,11649,11637,15048,15064,15084,4500,4463,4499,4463,4464,4432,4500,4499,4535,4596,4576,4557,4557,4576,4535,15105,15125,15086,15052,15086,15051,15052,15051,15018,15154,15153,15179,15125,15153,15154,4349,4400,4395,4440,4400,4432,15202,15180,15179,15201,15220,15202,15228,15248,15229,15228,15229,15220,4304,4291,4314,4291,4289,4314,4304,4314,4305,4276,4267,4254,4277,4267,4287,4287,4302,4280,4289,4302,4314,4266,4275,4254,4319,4294,4318,4294,4285,4273,4264,4285,4266,4318,4345,4364,4349,4379,4345,15001,15018,15033,14972,14958,14939,14939,14958,14923,14923,14902,14889,14972,15001,15019,14842,14886,14856,14886,14889,14902,14840,14856,14819,14828,14840,14819,13758,13765,13772,11646,11662,11615,11631,11615,11662,11647,11631,11663,12556,12559,12558,4596,4633,4616,4697,4722,4744,4698,4678,4697,2795,2774,2783,2806,2783,2805,2699,2711,2668,2723,2745,2746,2734,2711,2723,2746,2745,2774,2634,2650,2668,11635,11648,11632,11649,11633,11664,11633,11648,11665,15099,15084,15064,2806,2805,2816,15065,15030,15048,15014,15064,15048,4463,4500,4464,4432,4464,4440,4536,4500,4535,4596,4616,4576,4576,4577,4535,15125,15087,15086,15051,15086,15087,15033,15018,15051,15180,15154,15179,15154,15138,15125,4395,4400,4410,4379,4349,4395,4410,4400,4440,15202,15194,15180,15202,15220,15203,15229,15248,15261,15229,15203,15220,4305,4314,4341,4267,4276,4287,4276,4254,4275,4287,\r\n4299,4302,4302,4329,4314,4286,4275,4266,4296,4294,4319,4319,4318,4346,4294,4296,4285,4285,4296,4266,4380,4364,4345,4318,4364,4346,4345,4379,4396,15001,15033,15019,14972,14967,14958,14958,14935,14923,14935,14902,14923,15015,14972,15019,14856,14886,14902,14856,14857,14819,13777,13772,13765,13772,13777,13781,11663,11631,11662,4764,4744,4722,12556,12558,12553,4653,4616,4633,12551,12555,12557,12555,12553,12558,2776,2774,2795,2795,2783,2806,2668,2711,2698,2734,2723,2746,2733,2711,2734,2776,2746,2774,2667,2634,2668,11648,11635,11677,11664,11633,11665,11664,11678,11649,11665,11648,11679,15099,15064,15060,15099,15060,15119,15030,15065,15031,15014,15048,15030,15060,15064,15014,4500,4520,4464,4457,4440,4464,4500,4536,4520,4577,4536,4535,4616,4617,4576,4577,4576,4617,15106,15087,15125,15087,15069,15051,15051,15069,15033,15154,15180,15169,15138,15154,15169,15125,15138,15106,4395,4410,4379,4410,4440,4457,15202,15203,15194,15194,15169,15180,15261,15249,15229,15230,15203,15229,4341,4314,4329,4276,4299,4287,4276,4275,4298,4324,4302,4299,4324,4329,4302,4286,4297,4275,4286,4266,4296,4319,4322,4296,4365,4319,4346,4380,4381,4364,4396,4380,4345,4381,4346,4364,4410,4396,4379,15019,15033,15053,14968,14967,14972,14958,14967,14936,14958,14936,14935,14902,14935,14903,15015,14988,14972,15049,15015,15019,14856,14902,14903,14856,14887,14857,14841,14819,14857,13777,13765,13776,13777,13776,13781,13790,13781,13783,13790,13783,13789,12554,12556,12553,4616,4653,4617,12555,12551,12553,13791,13789,13786,2776,2795,2807,2806,2817,2795,2722,2698,2711,2667,2668,2698,2746,2761,2734,2733,2722,2711,2760,2733,2734,2761,2746,2776,11677,11635,11669,11648,11677,11679,14999,14986,14966,15000,15031,14999,11687,11665,11679,2828,2817,2806,14998,15030,15031,14998,15014,15030,15014,15043,15060,4508,4464,4520,4492,4457,4464,4536,4558,4520,4577,4578,4536,4577,4617,4618,15087,15106,15069,15069,15053,15033,15169,15139,15138,15138,15139,15106,4441,4410,4457,15182,15194,15203,15194,15182,15169,4341,4329,4359,15249,15230,15229,15230,15221,15203,4299,4276,4312,4297,4298,4275,\r\n4276,4298,4311,4299,4323,4324,4324,4354,4329,4286,4309,4297,4286,4296,4310,4319,4347,4322,4322,4310,4296,4319,4365,4347,4365,4346,4381,4380,4411,4381,4396,4412,4380,4410,4430,4396,15019,15053,15067,14937,14967,14968,14988,14968,14972,14937,14936,14967,14936,14903,14935,15015,15016,14988,15016,15015,15049,15067,15049,15019,14903,14887,14856,14871,14857,14887,14819,14841,14822,14871,14841,14857,13765,13770,13776,13776,13783,13781,13789,13783,13786,12554,12553,12548,4653,4680,4617,12548,12553,12551,12548,12551,12543,2795,2818,2807,2776,2807,2819,2817,2818,2795,2698,2722,2713,2684,2667,2698,2760,2734,2761,2737,2722,2733,2760,2759,2733,2788,2761,2776,11689,11677,11669,11697,11679,11677,14986,14918,14966,14966,15000,14999,15000,14998,15031,14918,14934,14884,15060,15043,15080,15014,14998,14985,15043,15014,15011,4508,4492,4464,4508,4520,4531,4492,4476,4457,4578,4558,4536,4558,4570,4520,4578,4577,4618,4617,4654,4618,15106,15109,15069,15069,15090,15053,15169,15155,15139,15139,15109,15106,4441,4430,4410,4441,4457,4476,15195,15182,15203,15182,15155,15169,4359,4329,4354,4359,4389,4405,15230,15238,15221,15203,15221,15210,4311,4312,4276,4299,4312,4323,4321,4298,4297,4321,4311,4298,4324,4323,4353,4324,4353,4354,4286,4310,4309,4309,4321,4297,4322,4347,4334,4310,4322,4309,4347,4365,4382,4397,4365,4381,4380,4412,4411,4381,4411,4397,4430,4412,4396,15091,15067,15053,14937,14968,14954,14988,14954,14968,14904,14936,14937,14903,14936,14904,14988,15016,14991,15066,15016,15049,15067,15066,15049,14887,14903,14904,14871,14887,14904,14822,14841,14858,14841,14871,14858,13770,13780,13776,13776,13780,13783,13780,13786,13783,12548,12552,12554,4617,4680,4654,12548,12543,12545,15043,15042,15079,15118,15133,15079,15150,15164,15133,2737,2713,2722,2698,2713,2684,2652,2667,2684,2760,2761,2787,2737,2733,2759,2785,2759,2760,2788,2787,2761,14900,14854,14884,14966,14918,14952,15000,14966,14987,15000,14987,14998,14884,14885,14918,14985,14998,14952,15011,15014,14985,15043,15011,15042,4508,4531,4492,4531,4520,4570,4496,4476,4492,4578,4597,4558,4558,4598,4570,\r\n4578,4618,4597,4618,4654,4655,15090,15069,15109,15091,15053,15090,15155,15109,15139,4412,4430,4441,4458,4441,4476,15195,15155,15182,15195,15203,15210,4359,4354,4389,4425,4405,4389,15221,15238,15250,15210,15221,15231,4335,4312,4311,4336,4323,4312,4321,4335,4311,4323,4352,4353,4388,4354,4353,4321,4309,4334,4367,4334,4347,4322,4334,4309,4397,4382,4365,4347,4382,4398,4411,4412,4442,4397,4411,4413,15066,15067,15091,14920,14937,14954,14988,14955,14954,14904,14937,14920,15032,14991,15016,14988,14991,14955,15016,15066,15050,14871,14904,14888,14858,14844,14822,14888,14858,14871,12546,12549,12539,12539,12543,12546,12548,12545,12552,4700,4654,4680,12543,12541,12545,15042,15078,15079,15118,15150,15133,15118,15079,15078,2737,2738,2713,2727,2684,2713,2683,2652,2684,2785,2760,2787,2737,2759,2775,2786,2759,2785,15163,15176,15150,14854,14855,14884,14918,14919,14952,14952,14987,14966,14998,14987,14952,14885,14884,14855,14885,14919,14918,14985,14952,14953,15011,14985,14982,15011,15028,15042,4531,4496,4492,4571,4531,4570,4496,4458,4476,4597,4598,4558,4598,4609,4570,4618,4634,4597,4654,4701,4655,4655,4634,4618,15090,15109,15129,15129,15091,15090,15155,15159,15109,4412,4441,4458,15195,15181,15155,15210,15192,15195,4388,4389,4354,4425,4389,4424,4425,4454,4472,4530,4545,4472,4530,4546,4569,4335,4336,4312,4336,4352,4323,4321,4351,4335,4387,4353,4352,4353,4387,4388,4350,4321,4334,4350,4334,4367,4367,4347,4398,4382,4397,4413,4414,4398,4382,4458,4442,4412,4459,4411,4442,4413,4411,4443,15066,15091,15085,14920,14954,14955,14904,14920,14888,15032,15020,14991,15050,15032,15016,14991,14973,14955,15050,15066,15085,14875,14844,14858,14875,14858,14888,12539,12541,12543,12545,12550,12552,4654,4700,4701,12541,12544,12545,15042,15058,15078,15118,15163,15150,2847,2830,2840,2737,2766,2738,2727,2713,2738,2727,2712,2684,2683,2651,2652,2683,2684,2712,2785,2787,2809,2786,2775,2759,2737,2775,2766,2808,2786,2785,2809,2787,2822,14855,14854,14827,14953,14952,14919,14855,14870,14885,14919,14885,14901,14985,14953,14982,15011,14982,14996,14996,15028,15011,15042,15028,\r\n15058,4531,4532,4496,4531,4571,4532,4609,4571,4570,4496,4493,4458,4598,4597,4635,4598,4635,4609,4634,4656,4597,4701,4681,4655,4681,4634,4655,15145,15129,15109,15091,15129,15124,15159,15155,15181,15145,15109,15159,15195,15192,15181,15192,15210,15199,4389,4388,4424,4425,4424,4454,4472,4454,4490,4530,4472,4506,4506,4546,4530,4369,4336,4335,4352,4336,4370,4350,4351,4321,4368,4335,4351,4386,4387,4352,4388,4387,4423,4350,4367,4351,4367,4398,4401,4382,4413,4414,4431,4398,4414,4458,4477,4442,4459,4443,4411,4459,4442,4478,4413,4443,4460,15124,15085,15091,14925,14920,14955,14888,14920,14925,15032,15036,15020,14991,15020,15003,15068,15032,15050,14991,15003,14973,14941,14955,14973,15050,15085,15068,14875,14861,14844,14875,14888,14908,12540,12541,12539,12544,12550,12545,4700,4745,4701,12541,12542,12544,15058,15098,15078,2830,2822,2840,2767,2738,2766,2738,2751,2727,2727,2736,2712,2683,2671,2651,2712,2701,2683,2821,2785,2809,2775,2786,2789,2789,2766,2775,2786,2808,2820,2808,2785,2821,2830,2809,2822,14855,14827,14839,14919,14916,14953,14839,14870,14855,14901,14885,14870,14916,14919,14901,14949,14982,14953,14949,14996,14982,14996,15010,15028,15028,15027,15058,4493,4496,4532,4532,4571,4587,4609,4626,4571,4477,4458,4493,4597,4656,4635,4656,4609,4635,4656,4634,4681,4681,4701,4723,15124,15129,15145,15159,15181,15167,15124,15145,15159,15167,15181,15192,15199,15177,15192,4388,4423,4424,4454,4424,4453,4453,4490,4454,4472,4490,4506,4506,4568,4546,4369,4370,4336,4335,4384,4369,4352,4370,4386,4368,4384,4335,4385,4368,4351,4386,4422,4387,4422,4423,4387,4351,4367,4401,4420,4401,4398,4413,4444,4414,4431,4420,4398,4444,4431,4414,4477,4494,4442,4459,4479,4443,4442,4494,4478,4478,4495,4459,4443,4479,4460,4413,4460,4444,15085,15124,15123,14925,14955,14941,14888,14925,14908,15036,15032,15071,15003,15020,15036,15068,15071,15032,15021,14973,15003,9721,9728,9714,15104,15068,15085,9696,9695,9707,9707,9712,9701,12542,12541,12540,4765,4745,4700,4745,4746,4701,12547,12544,12542,2867,2858,2830,2767,2751,2738,2789,2767,2766,2736,2727,2751,2712,2736,2726,2683,\r\n2701,2671,2712,2726,2701,2821,2809,2831,2786,2810,2789,15254,15277,15266,15310,15320,15277,2808,2821,2829,2809,2830,2831,14839,14827,14818,14949,14953,14916,14839,14853,14870,14883,14901,14870,14883,14916,14901,14996,14949,15010,14995,15028,15010,15027,15028,14995,15027,15059,15058,4532,4533,4493,4571,4610,4587,4587,4572,4532,4645,4626,4609,4571,4626,4610,4493,4509,4477,4656,4645,4609,4702,4656,4681,4746,4723,4701,4681,4723,4702,15136,15159,15167,15124,15159,15136,15177,15167,15192,15199,15190,15177,4423,4453,4424,4490,4453,4489,4529,4506,4490,15236,15225,15217,15217,15208,15199,4369,4403,4370,4384,4403,4369,4404,4386,4370,4368,4402,4384,4402,4368,4385,4385,4351,4401,4422,4386,4421,4422,4452,4423,4420,4385,4401,4420,4431,4434,4431,4444,4461,4494,4477,4510,4479,4459,4495,4478,4494,4511,4478,4512,4495,4460,4479,4497,4460,4480,4444,15136,15123,15124,15085,15123,15104,14941,14908,14925,15036,15071,15092,15037,15003,15036,15071,15068,15104,9723,9714,9728,15021,15003,15037,9721,9714,9712,9701,9696,9707,9712,9714,9701,4786,4745,4765,4746,4745,4787,16410,16411,16412,2846,2830,2858,2767,2778,2751,2797,2767,2789,2736,2751,2765,2726,2736,2750,2671,2701,2700,2735,2701,2726,2821,2831,2839,15310,15334,15345,15287,15277,15254,15266,15242,15254,15310,15277,15297,2839,2829,2821,15266,15255,15242,2830,2846,2831,14839,14818,14852,14933,14949,14916,14852,14853,14839,14883,14870,14853,14916,14883,14882,15010,14949,14995,15027,14995,15009,15041,15059,15027,4572,4533,4532,4509,4493,4533,4610,4627,4587,4611,4572,4587,4646,4626,4645,4646,4610,4626,4509,4510,4477,4656,4692,4645,4702,4692,4656,4746,4766,4723,4747,4702,4723,15136,15167,15151,15151,15167,15177,15190,15199,15208,15165,15177,15190,4423,4452,4453,4453,4452,4489,4489,4528,4490,15236,15257,15245,4544,4529,4490,15236,15245,15225,15225,15208,15217,4403,4404,4370,4403,4384,4418,4404,4421,4386,4418,4384,4402,4402,4385,4419,4421,4451,4422,4422,4471,4452,4420,4434,4385,4434,4431,4461,4480,4461,4444,4511,4494,4510,4479,4495,4513,4478,4511,4512,4534,4495,4512,4479,4513,4497,4497,4480,4460,\r\n15136,15104,15123,15110,15092,15071,15072,15036,15092,15072,15037,15036,15071,15104,15122,9723,9713,9714,9723,9733,9722,9696,9701,9684,9714,9708,9701,4787,4745,4786,4746,4787,4766,16412,16414,16410,2846,2858,2868,16440,16441,16442,2765,2751,2778,16443,16442,16441,2765,2764,2736,2764,2750,2736,2735,2726,2750,2700,2701,2725,2735,2725,2701,2839,2831,2848,15334,15310,15321,15277,15287,15297,15287,15254,15276,15254,15242,15234,15310,15297,15321,2829,2839,2845,15215,15242,15255,2848,2831,2846,14852,14818,14837,14949,14933,14951,14933,14916,14882,14853,14852,14837,14853,14869,14883,14883,14851,14882,14981,14995,14949,14995,14981,15009,15041,15027,15009,15041,15076,15059,4588,4533,4572,4533,4510,4509,4627,4610,4647,4611,4587,4627,4611,4588,4572,4646,4645,4692,4646,4647,4610,4692,4702,4737,4766,4747,4723,4747,4737,4702,15104,15136,15151,15151,15177,15165,15208,15189,15190,15165,15190,15189,4452,4488,4489,4527,4528,4489,4490,4528,4544,4586,4529,4567,4544,4567,4529,15225,15245,15244,15225,15209,15208,4435,4404,4403,4418,4435,4403,4436,4421,4404,4418,4402,4419,4433,4419,4385,4436,4451,4421,4422,4451,4471,4471,4488,4452,4433,4385,4434,4467,4434,4461,4480,4467,4461,4511,4510,4533,4513,4495,4534,4548,4512,4511,4549,4534,4512,4497,4513,4514,4497,4514,4480,15112,15092,15110,15071,15122,15110,15072,15092,15112,15037,15072,15093,15122,15104,15135,9713,9723,9722,9713,9708,9714,9733,9724,9722,9701,9697,9684,9708,9697,9701,4810,4766,4787,16417,16414,16412,2846,2868,2848,11762,11760,11765,11759,11760,11761,11775,11770,11765,11759,11763,11767,11791,11797,11767,11812,11797,11804,2724,2700,2725,2749,2725,2735,2848,2845,2839,11770,11775,11780,15297,15287,15309,15253,15276,15254,15287,15276,15264,15215,15234,15242,15254,15234,15253,15319,15321,15297,2829,2845,2857,2829,2857,2866,14817,14837,14818,14933,14917,14951,14981,14949,14951,14933,14882,14917,14853,14837,14816,14869,14853,14816,14869,14851,14883,14882,14851,14868,15026,15009,14981,15041,15009,15057,15097,15076,15041,4588,4573,4533,4627,4647,4669,4628,4611,4627,4588,4611,4628,4693,4646,\r\n4692,4693,4647,4646,4692,4737,4736,4766,4788,4747,4737,4747,4778,15104,15151,15135,15165,15135,15151,15191,15189,15208,15165,15189,15166,4488,4527,4489,4528,4527,4566,4544,4528,4567,15245,15269,15244,15225,15244,15226,15225,15226,15209,15191,15208,15209,4436,4404,4435,4418,4450,4435,4418,4419,4448,4449,4419,4433,4436,4470,4451,4470,4471,4451,4470,4488,4471,4433,4434,4467,4480,4514,4467,4573,4511,4533,4550,4513,4534,4548,4549,4512,4573,4548,4511,4549,4550,4534,4514,4513,4551,15146,15112,15110,15122,15147,15110,15072,15112,15111,15111,15093,15072,15135,15152,15122,9713,9722,9715,9713,9702,9708,9715,9722,9724,9697,9691,9684,9708,9702,9697,4810,4788,4766,4810,4787,4836,2848,2868,2865,11762,11761,11760,11762,11765,11770,11759,11761,11763,11771,11767,11763,11791,11804,11797,11791,11767,11783,2763,2735,2777,2700,2724,2688,2725,2747,2724,2747,2725,2749,2749,2735,2763,2848,2865,2845,11780,11772,11770,15287,15308,15309,15309,15319,15297,15276,15253,15265,15276,15265,15264,15308,15287,15264,15215,15224,15234,15241,15253,15234,15344,15321,15319,15174,15162,15186,15215,15186,15207,14837,14817,14816,14965,14951,14917,14981,14951,14965,14882,14899,14917,14851,14869,14816,14882,14868,14899,15040,15009,15026,15013,15026,14981,15040,15057,15009,15077,15041,15057,15116,15076,15097,15097,15041,15077,4588,4612,4573,4669,4647,4694,4669,4670,4627,4628,4627,4670,4588,4628,4612,4693,4692,4736,4694,4647,4693,4737,4778,4736,4788,4811,4747,4802,4778,4747,15165,15166,15135,15166,15189,15191,4543,4527,4488,4566,4527,4565,4566,4585,4528,4585,4567,4528,15244,15269,15270,15226,15244,15246,15209,15226,15214,15198,15191,15209,4435,4468,4436,4450,4418,4469,4435,4450,4468,4449,4448,4419,4418,4448,4465,4466,4449,4433,4470,4436,4468,4470,4504,4488,4485,4433,4467,4467,4514,4524,4550,4551,4513,4589,4549,4548,4573,4590,4548,4591,4550,4549,4514,4551,4552,15111,15112,15146,15147,15146,15110,15122,15152,15147,9729,9718,9724,15135,15166,15152,9702,9713,9715,9718,9715,9724,9691,9697,9702,4810,4837,4788,11762,11764,11761,11770,11772,11762,11766,11763,11761,11771,\r\n11778,11767,11766,11771,11763,2777,2796,2779,11778,11783,11767,2796,2811,2779,2777,2779,2763,2724,2729,2688,2762,2724,2747,2739,2747,2749,2739,2749,2763,15174,15116,15162,11780,11786,11772,15333,15309,15308,15309,15333,15319,15253,15241,15265,15265,15241,15264,15215,15207,15224,15234,15224,15241,15344,15319,15343,15186,15162,15188,15207,15186,15188,14950,14965,14917,14984,14981,14965,14917,14899,14932,15047,15040,15026,15047,15026,15013,14984,15013,14981,15040,15074,15057,15095,15077,15057,15097,15117,15116,15097,15077,15117,4590,4573,4612,4694,4716,4669,4670,4669,4717,4670,4630,4628,4612,4628,4630,4738,4693,4736,4694,4693,4738,4736,4778,4779,4811,4788,4837,4802,4747,4811,4828,4778,4802,15166,15191,15178,4543,4565,4527,4543,4488,4540,16444,16445,16446,4566,4608,4585,15270,15246,15244,15226,15246,15233,15226,15233,15214,15198,15209,15214,15178,15191,15198,4469,4418,4465,4469,4486,4450,4468,4450,4487,4449,4484,4448,4484,4465,4448,4466,4484,4449,4466,4433,4485,4470,4468,4504,4540,4488,4504,4485,4467,4503,4524,4514,4552,4467,4524,4503,4551,4550,4552,4591,4549,4589,4589,4548,4613,4590,4613,4548,4592,4550,4591,15111,15146,15160,15147,15172,15146,15152,15173,15147,9730,9718,9729,15166,15178,15152,9715,9709,9702,9715,9718,9709,9702,9698,9691,4837,4810,4863,11762,11768,11764,11769,11761,11764,11762,11772,11768,11769,11766,11761,11771,11782,11778,11771,11766,11776,2811,2849,2841,11997,11998,11999,2752,2763,2779,2724,2748,2729,2729,2714,2688,2748,2724,2762,2739,2762,2747,2763,2752,2739,15162,15116,15132,11784,11772,11786,15333,15343,15319,15241,15243,15264,15224,15207,15216,15243,15241,15224,15344,15343,15368,15188,15162,15175,15188,15216,15207,14950,14984,14965,14917,14932,14950,15047,15075,15040,15013,15046,15047,15012,15013,14984,15075,15074,15040,15095,15057,15074,15117,15077,15095,15132,15116,15117,4630,4590,4612,4694,4739,4716,4716,4717,4669,4717,4672,4670,4670,4672,4630,4736,4779,4738,4694,4738,4739,4779,4778,4804,4811,4837,4852,4802,4811,4852,4828,4804,4778,4802,4851,4828,4565,4543,4542,4543,4540,4526,16446,16445,16447,\r\n4608,4625,4585,15281,15246,15270,15246,15258,15233,15214,15233,15223,15206,15198,15214,15178,15198,15173,4501,4469,4465,4505,4486,4469,4450,4486,4487,4487,4504,4468,4465,4484,4501,4466,4502,4484,4466,4485,4502,4526,4540,4504,4523,4485,4503,4552,4574,4524,4524,4523,4503,4592,4552,4550,4589,4629,4591,4589,4613,4629,4613,4590,4631,4591,4629,4592,15146,15172,15160,9730,9729,9736,15147,15173,15172,15178,15173,15152,9725,9718,9730,9698,9702,9709,9718,9725,9709,4837,4863,4893,11768,11773,11764,11774,11769,11764,11773,11768,11772,11769,11777,11766,11771,11776,11782,11790,11778,11782,11766,11781,11776,2851,2841,2849,2823,2811,2841,2811,2799,2798,2780,2779,2798,2779,2780,2752,2728,2729,2748,2729,2728,2714,2739,2748,2762,15162,15132,15175,11773,11772,11784,15344,15383,15392,15333,15342,15343,15243,15268,15264,15235,15224,15216,15224,15235,15243,15342,15368,15343,15344,15368,15383,15188,15175,15187,5774,5790,5781,14950,14983,14984,14932,14964,14950,15096,15075,15047,15013,15012,15046,15083,15047,15046,14983,15012,14984,15074,15075,15114,15095,15074,15115,15117,15095,15132,4590,4630,4649,4759,4716,4739,4716,4719,4717,4719,4672,4717,4672,4649,4630,4779,4739,4738,4779,4804,4759,4893,4852,4837,4802,4852,4851,4804,4828,4884,4884,4828,4851,4543,4526,4542,4565,4542,4606,4624,4565,4606,16447,16448,16446,4625,4608,4644,15281,15271,15246,15271,15258,15246,15252,15233,15258,15233,15240,15223,15214,15223,15206,15206,15173,15198,4505,4469,4501,4505,4525,4486,4486,4525,4487,4487,4526,4504,4484,4521,4501,4502,4522,4484,4485,4523,4502,4552,4592,4574,4524,4574,4562,4562,4523,4524,4629,4613,4648,4590,4649,4631,4650,4613,4631,4592,4629,4614,9741,9736,9743,9730,9736,9737,15172,15173,15197,9734,9725,9730,9709,9710,9698,9717,9709,9725,4893,4863,4922,11773,11774,11764,11774,11779,11769,11769,11779,11777,11781,11766,11777,11776,11788,11782,11790,11782,11795,11781,11787,11776,2833,2841,2851,2823,2799,2811,2833,2823,2841,2780,2798,2799,2748,2739,2728,15175,15132,15187,11773,11784,11785,15392,15383,15405,15268,15243,15256,15268,15280,15264,5800,5790,5779,\r\n15235,15256,15243,15382,15383,15368,5774,5781,5767,5774,5779,5790,14950,14964,14983,15075,15096,15114,15047,15083,15096,15045,15046,15012,15103,15083,15046,15012,14983,14997,5744,5741,5738,5744,5738,5749,5755,5762,5749,5755,5768,5762,4759,4780,4716,4739,4779,4759,4780,4719,4716,4719,4695,4672,4672,4695,4649,4804,4803,4759,4893,4909,4852,4851,4852,4909,4804,4884,4886,4851,4910,4884,4542,4526,4487,4584,4606,4542,4624,4606,4642,16447,16449,16448,4608,4667,4644,4668,4625,4644,15271,15281,15291,15258,15271,15282,15233,15252,15240,15275,15252,15258,15239,15223,15240,15223,15213,15206,15204,15173,15206,4505,4501,4537,4505,4537,4525,4541,4487,4525,4484,4522,4521,4521,4537,4501,4502,4538,4522,4539,4502,4523,4574,4592,4614,4562,4574,4604,4562,4581,4523,4613,4671,4648,4614,4629,4648,4673,4631,4649,4613,4650,4671,4650,4631,4674,9737,9736,9741,15197,15205,15172,9734,9730,9737,15204,15197,15173,9727,9725,9734,9717,9710,9709,9698,9710,9705,9727,9717,9725,4922,4947,4893,11773,11785,11774,11785,11779,11774,11789,11777,11779,11781,11777,11789,11776,11794,11788,11782,11788,11795,11803,11790,11795,11781,11793,11787,11776,11787,11794,11817,11790,11811,2800,2799,2823,2823,2833,2812,2780,2799,2781,5768,5755,5767,11792,11785,11784,15404,15405,15383,15416,15392,15405,15280,15268,15256,5780,5800,5779,15235,15267,15256,15382,15404,15383,5774,5767,5754,5766,5779,5774,14964,14997,14983,5750,5745,5741,15045,15082,15046,15029,15045,15012,15103,15046,15102,15029,15012,14997,5738,5741,5739,5743,5749,5738,5743,5755,5749,4803,4780,4759,4761,4719,4780,4740,4695,4719,4673,4649,4695,4803,4804,4854,4893,4947,4909,4910,4851,4909,4938,4886,4884,4886,4854,4804,4884,4910,4939,4541,4542,4487,4623,4606,4584,4541,4584,4542,4623,4642,4606,16448,16449,16450,4667,4691,4644,4691,4668,4644,15291,15290,15271,15271,15290,15282,15275,15258,15282,15252,15262,15240,15262,15252,15275,15223,15239,15213,15262,15239,15240,15213,15204,15206,4537,4563,4525,4525,4564,4541,4521,4522,4559,4521,4560,4537,4539,4538,4502,4522,4538,4559,4539,4523,4561,4622,4574,4614,4574,4622,4604,\r\n4562,4604,4603,4562,4603,4581,4581,4561,4523,4648,4671,4675,4648,4675,4614,4631,4673,4674,4671,4650,4696,4696,4650,4674,9737,9741,9742,9747,9746,9741,9739,9734,9737,15197,15204,15213,9727,9734,9732,9705,9710,9717,9717,9727,9719,4922,4973,4947,11785,11792,11779,11789,11779,11796,11789,11793,11781,11801,11788,11794,11801,11795,11788,11790,11803,11811,11795,11808,11803,11793,11799,11787,11800,11794,11787,2833,2850,2832,2800,2781,2799,2812,2800,2823,12000,12001,12002,5754,5767,5755,15404,15429,15405,15405,15430,15416,15280,15256,15288,15278,15267,15235,5766,5780,5779,15279,15256,15267,5766,5774,5754,5745,5739,5741,15082,15045,15081,15082,15102,15046,5738,5739,5740,5738,5740,5743,5754,5755,5743,4803,4805,4780,4740,4719,4761,4761,4780,4805,4720,4695,4740,4695,4720,4673,4803,4854,4853,4947,4910,4909,4913,4886,4938,4884,4939,4938,4913,4854,4886,4910,4961,4939,4584,4607,4623,4584,4541,4564,4623,4665,4642,16448,16450,16451,4691,4667,4714,4691,4715,4668,15290,15295,15282,15295,15275,15282,15262,15275,15286,15213,15239,15251,15262,15273,15239,4583,4563,4537,4525,4563,4564,4560,4521,4559,4560,4579,4537,4539,4580,4538,4559,4538,4580,4539,4561,4582,4651,4622,4614,4604,4622,4640,4640,4603,4604,4581,4603,4601,4581,4601,4561,4718,4675,4671,4614,4675,4677,4673,4696,4674,4721,4671,4696,9746,9742,9741,9737,9742,9739,15232,15197,15222,9738,9734,9739,15222,15197,15213,9732,9734,9738,9732,9719,9727,9705,9717,9719,16432,16429,16431,11798,11779,11792,11796,11779,11798,11796,11802,11789,11789,11802,11793,11807,11801,11794,11808,11795,11801,11793,11802,11799,11787,11799,11805,11800,11806,11794,11787,11805,11800,15429,15430,15405,15279,15288,15256,15280,15288,15300,5791,5801,5780,5766,5773,5780,15289,15279,15267,5766,5754,5761,15102,15082,15081,5743,5740,5748,5743,5748,5754,4853,4805,4803,4761,4782,4740,4805,4782,4761,4742,4720,4740,4720,4742,4673,4853,4854,4912,4910,4947,4961,4913,4938,4964,4939,4986,4938,4912,4854,4913,4961,4987,4939,4584,4564,4607,4643,4623,4607,4665,4623,4666,16450,16452,16451,4714,4734,4691,4691,4735,4715,4777,4800,4715,\r\n15295,15286,15275,15283,15262,15286,15239,15263,15251,9749,9751,9750,15262,15283,15273,15239,15273,15263,4583,4605,4563,4583,4537,4579,4605,4564,4563,4560,4559,4580,4560,4599,4579,4539,4600,4580,4601,4582,4561,4602,4539,4582,4622,4651,4676,4614,4677,4651,4663,4640,4622,4603,4640,4661,4639,4601,4603,4718,4677,4675,4671,4721,4718,4741,4696,4673,4721,4696,4743,9746,9744,9742,9744,9739,9742,9746,9749,9744,9740,9738,9739,9732,9738,9735,9732,9726,9719,9719,9716,9705,16432,16431,16434,11809,11796,11798,11796,11810,11802,11815,11801,11807,11807,11794,11806,11801,11815,11808,11813,11799,11802,11805,11799,11813,11800,11814,11806,11805,11814,11800,15429,15452,15430,15279,15298,15288,15298,15300,15288,15312,15299,15267,5791,5780,5773,5761,5773,5766,10188,10167,10150,15289,15267,15299,5748,5761,5754,5748,5740,5753,4853,4885,4805,4784,4740,4782,4805,4830,4782,4740,4784,4742,4673,4742,4741,4912,4911,4853,16432,16434,16435,4964,4938,4990,4989,4913,4964,4987,4986,4939,4938,4986,4990,4963,4912,4913,16436,16435,16434,4564,4605,4607,4643,4666,4623,4664,4643,4607,4665,4666,4712,16451,16452,16453,4757,4691,4734,4757,4735,4691,4735,4758,4715,4826,4800,4777,4777,4715,4758,15286,15295,15306,15286,15301,15283,15251,15263,15274,9749,9750,9748,15283,15292,15273,15284,15263,15273,4583,4621,4605,4579,4621,4583,4560,4580,4619,4560,4620,4599,4621,4579,4599,4602,4600,4539,4619,4580,4600,4602,4582,4601,4676,4651,4677,4663,4622,4676,4663,4688,4640,4640,4687,4661,4661,4639,4603,4602,4601,4639,4676,4677,4718,4718,4721,4760,4696,4741,4762,4743,4696,4762,4743,4763,4721,9739,9744,9745,9749,9748,9744,9740,9735,9738,9745,9740,9739,9732,9735,9726,9726,9716,9719,16431,16433,16434,11796,11809,11810,11813,11802,11810,11815,11807,11822,11821,11807,11806,11819,11805,11813,11814,11820,11806,11819,11814,11805,15279,15311,15298,15323,15300,15298,5791,5799,5811,5773,5799,5791,5760,5773,5761,10130,10150,10167,15279,15322,15311,5832,5811,5819,5748,5760,5761,5760,5748,5753,4911,4885,4853,4885,4856,4805,4782,4831,4784,4830,4805,4856,4857,4782,4830,4806,4742,4784,4783,4741,\r\n4742,4962,4911,4912,16466,16467,16468,4989,4963,4913,4989,4964,5013,5035,4986,4987,4990,4986,5036,4963,4962,4912,16434,16433,16436,4641,4607,4605,4666,4643,4690,4664,4690,4643,4664,4607,4641,4733,4712,4666,16452,16454,16453,4757,4734,4775,4735,4757,4776,4776,4758,4735,4826,4777,4827,4758,4801,4777,15286,15306,15301,15314,15283,15301,15285,15274,15263,15302,15292,15283,15292,15293,15273,15263,15284,15285,15284,15273,15293,4641,4605,4621,4620,4560,4619,4620,4636,4599,4636,4621,4599,4637,4600,4602,4600,4638,4619,4663,4676,4710,4663,4710,4688,4688,4687,4640,4709,4661,4687,4661,4662,4639,4662,4602,4639,4676,4718,4731,4781,4760,4721,4718,4760,4731,4783,4762,4741,4762,4783,4743,4763,4743,4785,4721,4763,4781,9744,9748,9745,15316,15305,15330,15294,15305,15316,15330,15354,15366,9716,9726,9731,11824,11813,11810,11822,11807,11821,11822,11827,11815,11821,11806,11820,11825,11819,11813,11826,11820,11814,11826,11814,11819,15323,15298,15311,5799,5819,5811,5773,5789,5799,5773,5760,5778,10150,10130,10112,10189,10130,10167,10150,10187,10206,4911,4914,4885,4856,4885,4914,4782,4857,4831,4858,4784,4831,4856,4887,4830,4857,4830,4887,4806,4783,4742,4806,4784,4833,4962,4914,4911,4990,5036,5059,16468,16469,16466,5012,4963,4989,16478,16469,16476,4986,5035,5036,16438,16439,16436,4963,4988,4962,16437,16436,16433,16464,16461,16455,4713,4690,4664,4664,4641,4689,16455,16454,16452,4798,4775,4734,4757,4775,4776,4776,4799,4758,4827,4777,4801,4826,4827,4883,4799,4801,4758,15314,15302,15283,15314,15301,15325,15294,15274,15285,15292,15302,15304,15293,15292,15304,15303,15285,15284,15284,15293,15304,4641,4621,4658,4620,4619,4638,4620,4657,4636,4621,4636,4658,4659,4600,4637,4602,4660,4637,4659,4638,4600,4731,4710,4676,4710,4730,4688,4688,4728,4687,4661,4709,4662,4687,4729,4709,4662,4660,4602,4781,4795,4760,4760,4754,4731,4743,4783,4807,4808,4785,4743,4785,4809,4763,4809,4781,4763,15305,15341,15330,15294,15285,15305,15341,15354,15330,15354,15380,15366,11829,11813,11824,11833,11822,11821,11822,11833,11827,11820,11832,11821,11819,11825,11826,11825,11813,11829,\r\n11820,11826,11831,15335,15323,15311,5799,5810,5819,5789,5773,5778,5799,5789,5810,10090,10112,10130,10150,10112,10149,5840,5854,5819,10149,10187,10150,4941,4856,4914,4831,4857,4858,4784,4858,4833,4915,4887,4856,4916,4857,4887,4783,4806,4832,4832,4806,4833,4962,4988,4914,16473,16471,16468,16468,16470,16469,4963,5012,4988,5012,4989,5038,16476,16469,16472,5035,5081,5036,5035,5159,5129,16437,16438,16436,16458,16455,16461,16465,16458,16461,4664,4732,4713,4641,4658,4689,4664,4689,4711,16456,16454,16455,4798,4825,4775,4776,4775,4799,4801,4799,4827,4908,4883,4827,15314,15327,15302,15325,15301,15337,15325,15338,15314,15302,15326,15304,15303,15305,15285,15303,15284,15315,15315,15284,15304,4620,4638,4682,4657,4620,4682,4657,4683,4636,4683,4658,4636,4659,4637,4684,4637,4660,4685,4686,4638,4659,4754,4710,4731,4710,4753,4730,4688,4730,4728,4729,4687,4728,4709,4707,4662,4727,4709,4729,4707,4660,4662,4781,4829,4795,4795,4754,4760,4783,4834,4807,4808,4743,4807,4785,4808,4835,4809,4785,4835,4781,4809,4829,15305,15328,15341,15341,15365,15354,15354,15379,15380,11821,11832,11833,11833,11839,11827,11820,11831,11832,11837,11826,11825,11829,11838,11825,11837,11831,11826,5830,5819,5810,10127,10090,10130,10145,10127,10130,5830,5840,5819,10187,10149,10148,4915,4856,4941,4941,4914,4965,4917,4858,4857,4858,4889,4833,4942,4887,4915,4857,4916,4917,4942,4916,4887,4832,4834,4783,4833,4888,4832,4991,4914,4988,5081,5107,5036,16468,16471,16470,16469,16470,16472,5012,5037,4988,16476,16472,16479,5159,5187,5129,16458,16456,16455,16458,16465,16462,4732,4664,4711,4713,4732,4756,4705,4689,4658,4711,4689,4705,16454,16456,16457,16454,16457,16460,4825,4849,4775,4850,4799,4775,4882,4827,4799,15347,15337,15301,15357,15347,15369,15338,15327,15314,15302,15327,15340,15325,15337,15348,15349,15338,15325,15302,15339,15326,15326,15329,15304,15303,15328,15305,15329,15303,15315,15315,15304,15329,4682,4638,4686,4657,4682,4703,4657,4704,4683,4683,4705,4658,4684,4637,4685,4706,4659,4684,4707,4685,4660,4708,4686,4659,4753,4710,4754,4730,4753,4773,4730,4771,4728,4729,4728,4772,\r\n4709,4727,4707,4752,4727,4729,4795,4829,4855,4754,4795,4823,4859,4807,4834,4860,4808,4807,4835,4808,4860,4809,4835,4861,4809,4861,4829,15341,15328,15353,15353,15365,15341,15365,15379,15354,11832,11839,11833,11849,11827,11839,11848,11832,11831,11846,11837,11825,11846,11825,11838,11847,11831,11837,10090,10127,10091,10127,10145,10091,4942,4915,4941,4965,4914,4991,4965,4992,4941,4918,4858,4917,4858,4918,4889,4888,4833,4889,4917,4916,4966,4967,4916,4942,4888,4834,4832,5037,4991,4988,16471,16474,16470,16470,16475,16472,16479,16477,16481,16477,16479,16472,16459,16456,16458,4713,4756,4774,16459,16458,16462,4732,4711,4755,4732,4755,4756,4711,4705,4750,16459,16457,16456,16460,16457,16463,4880,4849,4825,4850,4775,4849,4881,4799,4850,4799,4881,4882,15357,15337,15347,15351,15327,15338,15327,15351,15340,15340,15339,15302,15348,15337,15358,15359,15325,15348,15349,15360,15338,15349,15325,15359,15326,15339,15350,15326,15350,15329,15303,15329,15328,4682,4686,4724,4682,4725,4703,4703,4704,4657,4704,4726,4683,4705,4683,4726,4707,4684,4685,4708,4659,4706,4727,4706,4684,4708,4724,4686,4794,4753,4754,4773,4753,4794,4773,4771,4730,4771,4792,4728,4728,4793,4772,4729,4772,4752,4727,4684,4707,4752,4706,4727,4855,4829,4861,4795,4855,4845,4795,4845,4823,4754,4823,4821,4860,4807,4859,4888,4859,4834,4860,4890,4835,4891,4861,4835,15353,15328,15352,15378,15365,15353,15365,15378,15379,11832,11857,11839,11849,11851,11827,11858,11849,11839,11848,11857,11832,11847,11848,11831,11855,11837,11846,11855,11847,11837,4942,4941,4993,5014,4965,4991,5015,4992,4965,4993,4941,4992,4918,4917,4966,4918,4944,4889,4943,4888,4889,4916,4994,4966,4967,4994,4916,4942,4993,4967,5014,4991,5037,16470,16474,16475,16477,16472,16475,16481,16477,16482,4797,4774,4756,16457,16459,16462,4755,4711,4750,4755,4796,4756,4750,4705,4726,4878,4905,4847,4905,4880,4825,4849,4880,4906,4849,4907,4850,4907,4881,4850,4881,4936,4882,15357,15358,15337,15351,15338,15364,15340,15351,15361,15340,15361,15339,15348,15358,15370,15359,15348,15371,15360,15349,15372,15364,15338,15360,15359,15371,15349,\r\n15362,15350,15339,15363,15329,15350,15329,15352,15328,4724,4725,4682,4725,4748,4703,4703,4749,4704,4726,4704,4749,4706,4751,4708,4708,4751,4724,4821,4794,4754,4773,4794,4822,4773,4818,4771,4771,4819,4792,4728,4792,4793,4820,4772,4793,4772,4791,4752,4752,4751,4706,4855,4861,4903,4903,4845,4855,4876,4823,4845,4821,4823,4875,4860,4859,4919,4859,4888,4920,4860,4919,4890,4891,4835,4890,4861,4891,4921,15353,15352,15377,15353,15377,15378,15401,15379,15378,11858,11839,11857,11870,11851,11849,11827,11851,11840,11858,11871,11849,11848,11869,11857,11869,11848,11847,11855,11846,11868,11869,11847,11855,5015,4965,5014,5039,4992,5015,5039,4993,4992,4918,4966,4995,4918,4968,4944,4889,4944,4943,4920,4888,4943,5016,4966,4994,5017,4994,4967,4967,4993,5018,5037,5061,5014,5219,5246,5192,16477,16475,16480,16477,16480,16482,16484,16481,16482,4824,4774,4797,4796,4797,4756,4824,4847,4774,4755,4750,4796,4750,4726,4769,4878,4934,4905,4878,4847,4824,4906,4880,4905,4935,4849,4906,4907,4849,4935,4881,4907,4937,4937,4936,4881,15364,15374,15351,15351,15375,15361,15362,15339,15361,15384,15370,15358,15370,15371,15348,15385,15372,15349,15372,15386,15360,15387,15364,15360,15371,15385,15349,15362,15373,15350,15329,15363,15352,15373,15363,15350,4724,4767,4725,4748,4725,4767,4703,4748,4749,4726,4749,4768,4751,4770,4724,4821,4844,4794,4844,4822,4794,4822,4818,4773,4842,4771,4818,4771,4842,4819,4843,4792,4819,4793,4792,4843,4820,4841,4772,4820,4793,4843,4772,4841,4791,4752,4791,4751,4940,4903,4861,4903,4876,4845,4876,4875,4823,4874,4821,4875,4919,4859,4920,4919,4945,4890,4891,4890,4946,4891,4946,4921,4940,4861,4921,15390,15377,15352,15400,15378,15377,15401,15378,15412,11880,11858,11857,11860,11851,11870,11881,11870,11849,11860,11840,11851,11858,11880,11871,11849,11871,11881,11869,11879,11857,11879,11855,11868,11879,11869,11855,5060,5015,5014,5039,5015,5062,5039,5018,4993,4995,4966,5019,4918,4995,4968,4968,4996,4944,4943,4944,4920,4966,5016,5019,4994,5019,5016,4994,5017,5040,5018,5017,4967,5060,5014,5061,5246,5219,5249,4824,4797,4848,4796,4846,4797,4750,4790,\r\n4796,4768,4769,4726,4769,4790,4750,4879,4934,4878,4906,4905,4934,4878,4824,4879,4958,4935,4906,4935,4959,4907,4937,4907,4960,4984,4936,4937,15364,15389,15374,15351,15374,15375,15388,15361,15375,15388,15362,15361,15393,15370,15384,15370,15394,15371,15372,15385,15395,15372,15396,15386,15387,15360,15386,15387,15389,15364,15371,15394,15385,15362,15388,15373,15363,15376,15352,15363,15373,15376,4770,4767,4724,4748,4767,4789,4768,4749,4748,4751,4791,4770,4821,4874,4844,4822,4844,4869,4822,4869,4818,4842,4818,4870,4842,4871,4819,4872,4843,4819,4841,4820,4868,4873,4820,4843,4817,4791,4841,4940,4932,4903,4903,4932,4876,4875,4876,4931,4874,4875,4930,4919,4920,4969,4919,4970,4945,4890,4945,4946,4921,4946,4971,4940,4921,4972,15377,15390,15400,15352,15376,15390,15400,15412,15378,11880,11857,11879,11870,11884,11860,11881,11893,11870,11850,11840,11860,11881,11871,11880,11892,11879,11868,5060,5062,5015,5082,5039,5062,5039,5065,5018,5019,5041,4995,5020,4968,4995,4968,5021,4996,5022,4944,4996,4944,4969,4920,5019,4994,5063,5040,5017,5064,5063,4994,5040,5064,5017,5018,4848,4797,4846,4824,4848,4879,4846,4796,4877,4816,4796,4790,4768,4815,4769,4816,4790,4769,4879,4957,4934,4958,4906,4934,4935,4958,4959,4907,4959,4960,4960,4985,4937,4937,4985,4984,15398,15374,15389,15374,15398,15375,15388,15375,15399,15393,15394,15370,15393,15384,15406,15394,15395,15385,15395,15407,15372,15396,15372,15407,15408,15386,15396,15387,15386,15389,15397,15373,15388,15373,15397,15376,4770,4812,4767,4813,4789,4767,4748,4789,4814,4814,4768,4748,4817,4770,4791,4902,4844,4874,4902,4869,4844,4869,4870,4818,4842,4870,4871,4900,4819,4871,4873,4843,4872,4819,4900,4872,4868,4820,4901,4868,4817,4841,4820,4873,4901,4940,4981,4932,4932,4931,4876,4875,4931,4930,12003,12004,12005,4919,4969,4970,4997,4945,4970,4946,4945,4998,4946,4999,4971,4971,4972,4921,4940,4972,4981,15411,15400,15390,15390,15376,15397,15425,15412,15400,11892,11880,11879,11893,11884,11870,11860,11884,11883,11893,11881,11904,11860,11873,11850,11904,11881,11880,11892,11868,11903,5108,5062,5060,5039,5082,5065,5108,\r\n5082,5062,5065,5084,5018,5019,5063,5041,5041,5020,4995,4968,5020,5021,4996,5021,5042,4944,5022,4969,5022,4996,5043,5040,5064,5083,5040,5083,5063,5064,5018,5084,4879,4848,4846,4840,4877,4796,4904,4846,4877,4796,4816,4840,4815,4768,4814,4840,4769,4815,4840,4816,4769,4957,4879,4933,4934,4957,4983,4934,4983,4958,4958,5010,4959,5010,4960,4959,4960,5011,4985,5033,4984,4985,15409,15398,15389,15398,15410,15375,15399,15375,15410,15397,15388,15399,15393,15417,15394,5033,5056,4984,15393,15406,15417,5184,5102,5153,15395,15418,15407,15419,15396,15407,15386,15408,15420,15408,15396,15419,15386,15420,15389,4812,4770,4817,4767,4812,4813,4813,4838,4789,4839,4814,4789,12007,12010,12003,12028,12010,12022,12028,12029,12047,4927,4871,4870,12116,12078,12106,4873,4872,4928,4900,4928,4872,4899,4868,4901,4868,4899,4817,4873,4929,4901,5007,4932,4981,12008,12012,12017,12008,12004,12012,12005,12004,12006,12007,12003,12005,4969,4997,4970,4997,5023,4945,4998,4945,5023,4946,4998,4999,12052,12051,12069,12031,12041,12051,12041,12031,12024,15411,15425,15400,15390,15397,15411,11904,11880,11892,11893,11906,11884,11906,11883,11884,11860,11883,11873,11893,11904,11915,11872,11850,11873,11892,11903,11904,5112,5065,5082,5108,5134,5082,5065,5112,5084,5085,5041,5063,5066,5020,5041,5066,5021,5020,5067,5042,5021,4996,5042,5043,4969,5022,4997,5022,5043,5068,5083,5064,5110,5111,5063,5083,5064,5084,5110,4933,4879,4846,4840,4926,4877,4933,4846,4904,4904,4877,4926,4815,4814,4866,4840,4815,4867,4933,4982,4957,4957,5009,4983,4958,4983,5010,5032,4960,5010,5034,5011,4960,5033,4985,5011,15409,15422,15398,15409,15389,15420,15398,15423,15410,15410,15424,15399,15399,15421,15397,5056,5033,5078,5056,5078,5102,5102,5125,5153,15431,15418,15395,15432,15407,15418,15419,15407,15432,15420,15408,15409,15419,15433,15408,4864,4812,4817,4864,4813,4812,4865,4838,4813,4789,4838,4839,4866,4814,4839,12010,12007,12015,12022,12010,12015,12022,12029,12028,12029,12048,12047,12078,12047,12066,12078,12098,12106,4873,4928,4929,4900,4955,4928,4899,4901,4954,4894,4817,4899,4954,4901,4929,12024,12018,\r\n12008,12004,12008,12006,12006,12009,12005,12007,12005,12011,5023,4997,5044,5023,5045,4998,4998,5046,4999,12051,12052,12031,5046,5071,4999,12024,12031,12018,15411,15437,15425,15421,15411,15397,11906,11893,11915,11906,11920,11883,11883,11896,11873,11915,11904,11927,11872,11873,11895,11904,11903,11927,5134,5112,5082,5112,5136,5084,5085,5066,5041,5085,5063,5111,5086,5021,5066,5087,5042,5067,5086,5067,5021,5087,5043,5042,5022,5068,4997,5068,5043,5088,5110,5111,5083,5084,5135,5110,4926,4840,4898,4933,4904,4956,4926,4956,4904,4867,4815,4866,4867,4898,4840,4956,4982,4933,5008,4957,4982,5008,5009,4957,5009,5031,4983,5031,5010,4983,5032,5034,4960,5010,5031,5032,5034,5057,5011,5033,5011,5058,15409,15434,15422,15423,15398,15422,15435,15410,15423,15436,15424,15410,15399,15424,15421,5033,5058,5078,5125,5102,5078,15431,15442,15418,15432,15418,15442,15419,15432,15433,15409,15408,15434,15408,15433,15434,4864,4817,4894,4864,4895,4813,4865,4896,4838,4865,4813,4895,4897,4839,4838,4839,4897,4866,12007,12021,12015,12029,12022,12015,12048,12029,12037,12066,12047,12048,12058,12078,12066,12077,12098,12078,12106,12098,12115,4928,4979,4929,4955,4979,4928,4954,4948,4899,4894,4899,4948,4954,4929,4980,12008,12018,12013,12008,12013,12006,12006,12013,12009,12005,12009,12014,12005,12014,12011,12007,12011,12016,5068,5044,4997,5023,5044,5069,5045,5023,5070,5046,4998,5045,12031,12052,12032,12052,12070,12060,12031,12032,12018,15421,15437,15411,11906,11915,11930,11920,11906,11930,11920,11907,11883,11907,11896,11883,11896,11895,11873,11935,11915,11927,11895,11894,11872,15756,15826,15847,5134,5165,5112,5112,5165,5136,5084,5136,5135,5085,5114,5066,5137,5085,5111,5086,5066,5113,5115,5087,5067,5067,5086,5116,5087,5088,5043,5088,5117,5068,5135,5111,5110,4926,4898,4953,4926,4953,4956,4867,4866,4924,4925,4898,4867,4956,5006,4982,5008,4982,5006,5008,5054,5009,5009,5055,5031,5034,5032,5077,5055,5032,5031,5079,5057,5034,5057,5080,5011,5080,5058,5011,15434,15444,15422,15435,15423,15422,15436,15410,15435,15436,15443,15424,15443,15421,15424,5105,5078,5058,5125,5078,\r\n5154,15453,15442,15431,15454,15432,15442,15432,15455,15433,15433,15456,15434,4923,4864,4894,4923,4895,4864,4865,4923,4896,4897,4838,4896,4895,4923,4865,4866,4897,4924,12021,12007,12016,12021,12027,12015,12037,12029,12015,12046,12048,12037,12058,12066,12048,12077,12078,12058,12077,12087,12098,12114,12115,12098,4979,4980,4929,12114,12132,12115,4954,5000,4948,4974,4894,4948,5000,4954,4980,12018,12025,12013,12009,12013,12019,12020,12014,12009,12023,12011,12014,12016,12011,12023,5089,5044,5068,5069,5044,5090,5070,5023,5069,12092,12089,12108,12070,12089,12080,12060,12032,12052,12060,12070,12080,12018,12032,12025,15443,15437,15421,11935,11930,11915,11920,11930,11942,11920,11931,11907,11921,11896,11907,11896,11919,11895,11935,11927,11946,11895,11916,11894,15826,15874,15847,5165,5197,5136,5135,5136,5197,5114,5085,5139,5114,5113,5066,5139,5085,5137,5111,5166,5137,5086,5113,5138,5087,5115,5140,5115,5067,5116,5138,5116,5086,5087,5140,5088,5141,5117,5088,5117,5089,5068,16486,16487,16488,4925,4953,4898,4956,4953,5006,4925,4867,4924,5029,5008,5006,5008,5053,5054,5076,5009,5054,5076,5055,5009,5101,5077,5032,5079,5034,5077,5055,5101,5032,16489,16490,16491,5103,5080,5057,5080,5104,5058,15434,15456,15444,15444,15435,15422,5128,5078,5105,5058,5127,5105,5154,5078,5128,15453,15463,15442,15454,15464,15432,15465,15454,15442,15432,15464,15455,15455,15466,15433,15433,15466,15456,4894,4949,4923,4950,4896,4923,4897,4896,4951,4952,4924,4897,12027,12021,12016,12015,12027,12036,12046,12037,12015,12048,12046,12058,12058,12057,12077,12057,12087,12077,12105,12098,12087,12114,12098,12105,12133,12146,12132,12133,12132,12114,5024,4948,5000,4894,4974,4949,4974,4948,5001,5000,4980,5030,12013,12025,12019,12020,12009,12019,12026,12014,12020,12026,12023,12014,12016,12023,12030,5089,5090,5044,16492,16493,16494,16498,16492,16496,12092,12080,12089,12117,12092,12108,12053,12032,12060,12060,12080,12072,12042,12025,12032,11930,11935,11942,11942,11931,11920,11921,11907,11931,11896,11921,11919,11895,11919,11916,11946,11952,11935,11918,11894,11916,15874,15826,15875,\r\n5135,5197,5166,5114,5139,5167,5167,5113,5114,5139,5137,5199,5200,5137,5166,5113,5168,5138,5140,5115,5169,5116,5170,5115,5171,5116,5138,5141,5088,5140,5117,5141,5172,5117,5143,5089,4953,4925,4978,5006,4953,5029,4925,4924,4977,5029,5053,5008,5054,5053,5052,5054,5099,5076,5055,5076,5100,5077,5101,5124,5077,5124,5079,5055,5100,5101,5079,5152,5103,5103,5126,5080,5080,5126,5104,5104,5127,5058,5128,5105,5158,5105,5127,5158,15453,15492,15477,15453,15477,15463,15463,15465,15442,15478,15464,15454,15465,15478,15454,15464,15479,15455,15455,15480,15466,4923,4949,4975,4976,4896,4950,4923,4975,4950,4976,4951,4896,4952,4897,4951,4977,4924,4952,12016,12040,12027,12027,12045,12036,12015,12036,12046,12036,12058,12046,12036,12057,12058,12086,12087,12057,12105,12087,12104,12125,12114,12105,12133,12147,12146,12125,12133,12114,5001,4948,5024,5024,5000,5030,4974,4975,4949,5025,4974,5001,12025,12033,12019,12034,12020,12019,12035,12026,12020,12038,12023,12026,12039,12030,12023,12040,12016,12030,5142,5090,5089,16495,16494,16493,16494,16496,16492,12092,12072,12080,12092,12117,12109,12053,12042,12032,12053,12060,12072,12042,12043,12025,11942,11935,11952,11942,11951,11931,11921,11931,11943,11921,11941,11919,11919,11936,11916,15941,15874,15919,11918,11916,11937,15919,15874,15875,5199,5167,5139,5113,5167,5168,5200,5199,5137,5168,5201,5138,5115,5170,5169,5141,5140,5169,5170,5116,5171,5171,5138,5202,5172,5141,5203,16509,16507,16503,5173,5143,5117,5142,5089,5143,4925,4977,4978,4953,4978,5005,5005,5029,4953,5005,5053,5029,5005,5052,5053,5098,5054,5052,5123,5099,5054,5076,5099,5100,5151,5124,5101,5079,5124,5152,5100,5150,5101,5103,5152,5183,5103,5155,5126,5126,5156,5104,5157,5127,5104,15492,15544,15526,5157,5158,5127,15492,15510,15477,15463,15477,15493,15463,15493,15465,15478,15494,15464,15495,15478,15465,15464,15496,15479,15455,15479,15480,15480,15497,15466,4976,4950,5002,4975,5002,4950,4976,5003,4951,4952,4951,5003,4952,5004,4977,12045,12027,12040,12045,12057,12036,12086,12104,12087,12086,12057,12076,12105,12104,12123,12131,12125,12105,12147,12133,\r\n12141,12141,12133,12125,5024,5047,5001,12155,12162,12147,4974,5025,4975,5025,5001,5048,12033,12025,12043,12033,12034,12019,12035,12020,12034,12044,12026,12035,12039,12023,12038,12026,12044,12038,12039,12049,12030,12050,12040,12030,16495,16497,16494,12134,12127,12117,12092,12090,12072,12109,12117,12127,12090,12092,12109,12042,12053,12061,12053,12072,12071,12061,12043,12042,11942,11952,11951,11950,11931,11951,11950,11943,11931,11943,11941,11921,11919,11941,11936,11936,11937,11916,15964,15941,15919,11940,11918,11937,5167,5199,5225,5167,5223,5168,5199,5200,5225,5224,5201,5168,5138,5201,5202,5226,5169,5170,5141,5169,5227,5170,5171,5228,5171,5202,5229,5141,5230,5203,16507,16506,16503,16502,16501,16503,16495,16501,16499,4977,5004,4978,4978,5028,5005,5028,5052,5005,5123,5054,5098,5098,5052,5075,5099,5123,5149,5099,5150,5100,5182,5124,5151,5101,5150,5151,5124,5183,5152,5103,5183,5155,5185,5126,5155,5156,5126,5186,5157,5104,5156,15544,15561,15526,15492,15526,15510,5158,5157,5215,15510,15493,15477,15465,15493,15511,15512,15494,15478,15494,15496,15464,15478,15495,15513,15511,15495,15465,15496,15480,15479,15496,15497,15480,4976,5002,5026,5027,5002,4975,4976,5026,5003,4952,5003,5004,12045,12040,12050,12065,12057,12045,12097,12104,12086,12065,12076,12057,12086,12076,12097,12124,12123,12104,12131,12105,12123,12131,12142,12125,12155,12147,12141,12141,12125,12142,12162,12155,12167,5047,5048,5001,4975,5025,5049,5025,5048,5072,12033,12043,12054,12054,12034,12033,12055,12035,12034,12044,12035,12056,12044,12039,12038,12049,12039,12059,12050,12030,12049,16495,16499,16497,16500,16494,16497,12071,12072,12090,12109,12127,12128,12110,12090,12109,12053,12071,12061,12061,12062,12043,11957,11951,11952,11957,11950,11951,11950,11957,11943,11953,11941,11943,11953,11936,11941,11936,11954,11937,15941,15964,15987,11918,11940,11929,11937,11955,11940,16624,16625,16626,5223,5224,5168,5224,5252,5201,5202,5201,5253,5254,5169,5226,5228,5226,5170,5227,5169,5254,5227,5230,5141,5171,5229,5228,5229,5202,5253,16506,16510,16508,16505,16503,16506,16499,16501,16502,\r\n16504,16502,16503,4978,5004,5028,5028,5075,5052,5098,5179,5123,5075,5122,5098,5123,5181,5149,5099,5149,5150,5182,5183,5124,5182,5151,5213,5151,5150,5213,5183,5214,5155,5186,5126,5185,5155,5214,5185,5186,5157,5156,15562,15526,15561,15545,15510,15526,5239,5215,5157,15493,15510,15511,15512,15527,15494,15478,15513,15512,15494,15528,15496,15495,15511,15513,15528,15497,15496,5050,5026,5002,5027,5050,5002,4975,5049,5027,5051,5003,5026,5051,5004,5003,12045,12050,12065,12113,12104,12097,12065,12085,12076,12097,12076,12085,12124,12140,12123,12113,12124,12104,12140,12131,12123,12131,12148,12142,12156,12155,12141,12156,12141,12142,12171,12167,12155,16672,16673,16674,5049,5025,5072,5091,5072,5048,12043,12062,12054,12054,12055,12034,12063,12035,12055,12063,12056,12035,12064,12044,12056,12044,12059,12039,12049,12059,12067,12050,12049,12068,16502,16497,16499,12143,12127,12149,12090,12100,12071,12128,12127,12143,12128,12110,12109,12110,12100,12090,12061,12071,12081,12062,12061,12081,15941,15987,16011,11943,11957,11953,11954,11936,11953,11937,11954,11955,15987,15964,16010,11949,11929,11940,11958,11940,11955,16626,16627,16624,16629,16631,16624,16636,16631,16633,5201,5252,5253,5226,5273,5254,5228,5273,5226,5274,5227,5254,5274,5230,5227,5275,5228,5229,5229,5253,5276,16512,16508,16510,16506,16508,16505,16505,16504,16503,12165,12157,12164,5004,5051,5028,5075,5028,5097,5098,5148,5179,5123,5179,5181,5075,5121,5122,5098,5122,5148,5181,5212,5149,16676,16677,16678,5182,5236,5183,5182,5213,5236,5214,5183,5236,5186,5185,5237,5214,5238,5185,5186,5239,5157,15562,15545,15526,15562,15561,15593,15546,15510,15545,5239,5265,5215,15546,15511,15510,15527,15512,15547,15494,15527,15548,15512,15513,15549,15494,15548,15528,15513,15511,15549,5073,5026,5050,5074,5050,5027,5074,5027,5049,5051,5026,5073,12068,12065,12050,12097,12103,12113,12068,12085,12065,12097,12085,12103,12139,12140,12124,12122,12124,12113,12145,12131,12140,12131,12145,12148,12148,12156,12142,12168,12155,12156,12171,12155,12172,16673,16675,16674,5092,5049,5072,5091,5118,5072,12062,12073,12054,\r\n12074,12055,12054,12075,12063,12055,6280,6270,6290,12059,12044,12064,6256,6255,6270,12059,12064,12067,12049,12067,12079,12068,12049,12079,12164,12157,12149,12157,12143,12149,12071,12100,12091,12143,12135,12128,12110,12128,12118,12110,12118,12100,12071,12091,12081,12062,12081,12082,11966,11957,11971,11953,11957,11966,11953,11961,11954,11954,11962,11955,16012,16010,15964,16033,15987,16010,11929,11949,11948,11956,11949,11940,11960,11940,11958,11963,11958,11955,16629,16624,16627,16631,16629,16633,16636,16633,16641,5276,5253,5252,5290,5254,5273,5291,5273,5228,5290,5274,5254,5274,5292,5230,5291,5228,5275,5275,5229,5276,16512,16511,16508,16508,16511,16505,12165,12174,12166,12150,12157,12165,5028,5051,5096,5096,5097,5028,5097,5121,5075,5211,5179,5148,5181,5179,5233,5121,5178,5122,5148,5122,5180,5212,5181,5233,5235,5149,5212,16679,16678,16677,5236,5213,5235,5264,5214,5236,5185,5238,5237,5186,5237,5239,5264,5238,5214,15562,15582,15545,15582,15562,15593,15546,15545,15581,15632,15593,15652,15546,15563,15511,15512,15549,15547,15563,15549,15511,5093,5073,5050,5074,5094,5050,5074,5049,5092,5095,5051,5073,12103,12122,12113,12085,12068,12099,12103,12085,12099,12140,12139,12154,12122,12139,12124,12140,12154,12145,12160,12148,12145,12148,12163,12156,12172,12155,12168,12169,12168,12156,12171,12172,12176,5092,5072,5118,16680,16681,16682,12062,12082,12073,12073,12083,12054,12075,12055,12074,12074,12054,12083,12084,12063,12075,6280,6266,6270,6235,6255,6256,6256,6270,6266,6255,6235,6248,6234,6248,6235,12068,12079,12088,12150,12143,12157,12091,12100,12101,12143,12150,12135,12118,12128,12135,12118,12119,12100,12082,12081,12091,16055,15987,16033,11953,11966,11961,11954,11961,11962,11962,11967,11955,16012,16054,16010,16010,16056,16033,11949,11956,11948,11940,11960,11956,11965,11960,11958,11963,11968,11958,11969,11963,11955,16641,16633,16644,16636,16641,16645,5252,5308,5276,5290,5273,5309,5291,5309,5273,5290,5310,5274,16512,16519,16516,5311,5291,5275,5312,5275,5276,16512,16514,16511,16505,16511,16513,12150,12165,12166,5096,5051,5095,5147,5097,\r\n5096,5097,5147,5121,5211,5233,5179,5211,5148,5234,5121,5147,5178,5180,5122,5178,5210,5148,5180,5212,5233,5263,5212,5263,5235,5281,5236,5235,5281,5264,5236,5282,5237,5238,5239,5237,5282,5264,5283,5238,15581,15545,15582,15593,15615,15582,15546,15581,15594,15632,15615,15593,15563,15546,15547,15549,15563,15547,5093,5095,5073,5050,5094,5093,5074,5119,5094,5092,5120,5074,12126,12122,12103,12068,12088,12099,12103,12099,12107,16782,16784,16788,12139,12122,12138,12154,12161,12145,12163,12148,12160,12161,12160,12145,12169,12156,12163,12172,12168,12175,12173,12168,12169,16681,16680,16683,5092,5118,5120,16682,16681,16684,12093,12073,12082,12094,12083,12073,12075,12074,12095,12074,12083,12096,6292,6280,6310,6280,6267,6266,6235,6256,6249,6249,6256,6266,6223,6234,6235,6223,6227,6234,12101,12100,12119,12101,12082,12091,12150,12158,12135,12118,12135,12144,12118,12136,12119,11978,11972,11966,11972,11961,11966,11973,11962,11961,11973,11967,11962,11969,11955,11967,16056,16010,16054,16077,16033,16056,11956,11965,11948,11960,11965,11956,11958,11968,11965,16645,16641,16644,5276,5308,5327,5290,5309,5328,5329,5309,5291,5310,5290,5330,16512,16516,16514,5291,5311,5329,5311,5275,5312,5312,5276,5327,16514,16517,16511,16513,16511,16515,12150,12166,12158,5095,5144,5096,5096,5177,5147,5261,5233,5211,5148,5210,5234,5211,5234,5262,5147,5209,5178,5178,5210,5180,5233,5261,5263,5280,5235,5263,5235,5280,5281,5281,5298,5264,5282,5238,5299,5298,5283,5264,5283,5299,5238,15615,15581,15582,15616,15594,15581,15594,15617,15546,15632,15651,15615,15546,15595,15547,5093,5144,5095,5093,5094,5145,5074,5120,5119,5146,5094,5119,12138,12122,12126,12103,12107,12126,12107,12099,12088,16784,16782,16779,16782,16788,16792,12139,12138,12153,12170,12163,12160,12170,12160,12161,12173,12169,12163,12175,12168,12177,12178,12172,12175,12177,12168,12173,12178,12179,12172,5118,5174,5120,16685,16684,16681,12094,12073,12093,12101,12093,12082,12083,12094,12102,6325,6312,6292,12083,12102,12096,6282,6280,6292,6282,6267,6280,6249,6266,6267,6249,6241,6235,6223,6235,6228,6220,6227,6223,12101,\r\n12119,12121,16525,16530,16518,12151,12144,12135,12136,12118,12144,12136,12121,12119,16033,16101,16115,11972,11977,11961,11973,11961,11977,11973,11979,11967,11980,11969,11967,16100,16056,16054,16033,16077,16101,16056,16100,16077,16644,16648,16645,5344,5328,5309,5290,5328,5330,5329,5344,5309,16516,16523,16520,16514,16516,16520,5345,5329,5311,5312,5346,5311,5327,5347,5312,16514,16520,16517,16515,16511,16517,16513,16515,16518,5144,5177,5096,5177,5209,5147,5261,5211,5262,5260,5234,5210,5279,5262,5234,5178,5209,5210,5296,5263,5261,5280,5263,5296,5317,5281,5280,5298,5281,5317,5282,5299,5318,5298,5319,5283,5283,5320,5299,15616,15581,15615,15616,15630,15594,15631,15617,15594,15595,15546,15617,15615,15651,15650,5093,5175,5144,5094,5146,5145,5093,5145,5175,5119,5120,5176,5146,5119,5176,6233,6240,6226,6220,6226,6232,6220,6232,6227,16779,16782,16774,16792,16788,16794,16782,16792,16795,6233,6247,6240,16761,16744,16752,16761,16779,16774,16734,16752,16744,16754,16745,16715,12178,12175,12180,16734,16715,16745,16685,16681,16687,16686,16688,16684,16686,16684,16685,12093,12111,12094,12101,12111,12093,12094,12112,12102,6292,6312,6293,6326,6312,6334,6282,6292,6272,6282,6272,6267,6249,6267,6251,6242,6241,6249,6228,6235,6241,6221,6223,6228,6221,6220,6223,12111,12101,12121,16525,16533,16530,16525,16518,16522,12159,12144,12151,12136,12144,12152,12136,12137,12121,16101,16133,16115,16166,16180,16115,11973,11977,11979,11984,11967,11979,11980,11967,11984,16077,16100,16101,16648,16644,16649,16531,16542,16536,16526,16523,16531,5364,5344,5329,16526,16520,16523,5329,5345,5364,5311,5365,5345,5312,5347,5346,5346,5366,5311,5327,5367,5347,16524,16517,16520,16515,16517,16521,16522,16518,16515,5177,5144,5204,5204,5209,5177,5261,5262,5296,5234,5260,5278,5259,5260,5210,5297,5262,5279,5234,5278,5279,5259,5210,5209,5317,5280,5296,5298,5317,5316,5334,5318,5299,5319,5298,5316,5335,5283,5319,5335,5320,5283,5336,5299,5320,15615,15650,15616,15650,15630,15616,15630,15631,15594,15631,15633,15617,15633,15595,15617,15693,15650,15651,5175,5204,5144,5146,5205,5145,5175,\r\n5145,5206,5120,5207,5176,5176,5208,5146,6233,6226,6222,6226,6220,6222,6322,6289,6309,6265,6247,6246,6279,6289,6265,6246,6247,6233,16753,16744,16761,16774,16767,16761,16734,16744,16728,12181,12180,12175,16687,16704,16698,16734,16728,16715,16685,16687,16689,16688,16686,16690,16685,16689,16686,12094,12111,12120,12094,12120,12112,6376,6346,6334,6312,6304,6293,6293,6272,6292,6326,6304,6312,18241,18242,18243,6267,6272,6258,6267,6258,6251,6249,6251,6242,6228,6241,6242,6230,6221,6228,6219,6220,6221,12111,12121,12129,16525,16539,16533,16525,16522,16529,12144,12159,12152,16533,16556,16565,16600,16606,16582,12121,12137,12129,16151,16133,16101,16152,16115,16133,16180,16166,16196,16166,16115,16152,16180,16196,16208,11979,11989,11984,11980,11984,11991,16132,16101,16100,16650,16648,16649,16551,16536,16542,16531,16536,16526,5364,5383,5344,16520,16526,16527,5364,5345,5384,5311,5366,5365,5345,5365,5385,5347,5366,5346,5367,5386,5347,16521,16517,16524,16520,16527,16524,16522,16515,16521,5209,5204,5259,5316,5296,5262,5259,5278,5260,5297,5316,5262,5297,5279,5315,5278,5315,5279,5317,5296,5316,15740,15714,15651,5334,5299,5336,5319,5316,5353,5335,5319,5355,5335,5356,5320,5320,5357,5336,15630,15650,15671,15630,15672,15631,15633,15631,15673,15671,15650,15693,15714,15693,15651,5206,5204,5175,5146,5231,5205,5205,5206,5145,5176,5207,5232,16701,16691,16696,5231,5146,5208,6233,6222,6231,6219,6222,6220,6289,6302,6309,6264,6265,6246,6302,6289,6279,6264,6279,6265,6233,6231,6246,16753,16728,16744,16753,16761,16767,6309,6302,6321,16715,16709,16704,16709,16698,16704,16687,16698,16694,16721,16715,16728,16687,16692,16689,16691,16690,16686,16686,16689,16691,12120,12111,12129,12130,12112,12120,6367,6346,6376,6283,6293,6304,6283,6272,6293,6304,6326,6327,6346,6327,6326,6283,6258,6272,6237,6251,6258,6251,6237,6242,6230,6228,6242,6230,6224,6221,6224,6219,6221,16525,16534,16539,16533,16539,16547,16529,16522,16521,16525,16529,16534,16582,16565,16574,16533,16547,16556,16556,16574,16565,16600,16582,16592,16600,16611,16616,16152,16133,16151,16150,16151,16101,16166,\r\n16197,16196,16166,16152,16181,16196,16197,16218,11993,11991,11984,16101,16132,16150,16651,16650,16649,16536,16551,16552,16526,16536,16541,16577,16551,16585,16535,16527,16526,5345,5405,5384,5364,5384,5406,5365,5366,5407,5385,5365,5408,5345,5385,5405,5347,5386,5366,16521,16524,16528,16524,16527,16532,5259,5204,5255,5259,5293,5278,5332,5316,5297,5297,5315,5333,5278,5331,5315,5393,5334,5373,5334,5336,5373,5316,5332,5353,5319,5353,5355,5335,5355,5356,5357,5320,5356,5374,5336,5357,15671,15672,15630,15673,15631,15672,15671,15693,15715,15714,15739,15693,5255,5204,5206,5256,5205,5231,5257,5206,5205,16691,16693,16696,5231,5208,5258,6225,6231,6222,6219,6225,6222,6264,6246,6254,6302,6279,6301,6279,6264,6288,6239,6246,6231,16753,16746,16728,6342,6321,6319,6321,6302,6319,16709,16715,16721,16709,16702,16698,16698,16702,16694,16694,16692,16687,16721,16728,16735,16695,16689,16692,16691,16689,16693,16622,16616,16611,16622,16611,16623,6367,6353,6346,6305,6283,6304,6304,6327,6305,6353,6327,6346,6283,6273,6258,6237,6258,6259,6237,6230,6242,6230,6237,6224,6224,6229,6219,16539,16534,16547,16521,16528,16529,16540,16534,16529,16574,16592,16582,16547,16564,16556,16573,16574,16556,16600,16592,16607,16607,16611,16600,16152,16151,16179,16153,16151,16150,16197,16166,16181,16181,16152,16179,6783,6789,6794,11991,11993,11995,16132,16153,16150,16652,16651,16649,16551,16567,16552,16536,16552,16541,16526,16541,16535,16551,16577,16567,16535,16532,16527,5384,5405,5424,5406,5384,5425,5366,5426,5407,5365,5407,5427,5365,5427,5408,5385,5408,5428,5405,5385,5428,16651,16654,16656,16524,16532,16528,5255,5293,5259,5313,5278,5293,5297,5333,5332,5354,5333,5315,5331,5278,5351,5315,5331,5352,5393,5373,5416,5373,5336,5374,5353,5332,5371,5355,5353,5371,5394,5356,5355,5357,5356,5395,5374,5357,5396,15671,15715,15672,15673,15672,15716,15739,15715,15693,15714,15758,15739,5255,5206,5277,5205,5256,5257,16712,16718,16700,5277,5206,5257,16700,16696,16693,6231,6225,6239,6219,6229,6225,6239,6254,6246,6269,6264,6254,6301,6279,6288,6302,6301,6319,6288,6264,6278,6342,6352,6363,\r\n16746,16735,16728,6319,6352,6342,16713,16709,16721,16709,16713,16702,16702,16697,16694,16694,16697,16692,16729,16721,16735,16693,16689,16695,16695,16692,16699,16621,16623,16611,6353,6367,6375,6283,6305,6294,6305,6327,6328,6353,6354,6327,6283,6294,6273,6259,6258,6273,6237,6259,6252,6243,6224,6237,6229,6224,6236,16534,16558,16547,16528,16538,16529,16540,16548,16534,16549,16540,16529,16574,16581,16592,16558,16564,16547,16573,16556,16564,16581,16574,16573,16599,16607,16592,16615,16611,16607,16153,16179,16151,16197,16181,16209,16181,16179,16207,6783,6777,6789,16803,16804,16805,16653,16651,16652,16567,16578,16552,16560,16541,16552,16535,16541,16550,16577,16586,16567,16535,16543,16532,5405,5445,5424,16617,16612,16595,16577,16595,16586,5446,5426,5366,5447,5407,5426,5407,5448,5427,5427,5449,5408,5450,5428,5408,5405,5428,5445,16651,16653,16654,16528,16532,16537,5255,5277,5293,5348,5278,5313,5293,5277,5313,5371,5332,5333,5354,5372,5333,5352,5354,5315,5278,5348,5351,5370,5331,5351,5354,5352,5331,5415,5416,5373,5373,5374,5415,5355,5371,5413,5394,5395,5356,5355,5417,5394,5396,5357,5395,5396,5418,5374,15715,15716,15672,15716,15741,15673,12207,12206,12210,12207,12204,12201,5256,5294,5257,16700,16706,16712,5277,5257,5295,16700,16693,16695,6239,6225,6245,6225,6229,6238,6239,6253,6254,6269,6278,6264,6254,6253,6269,6300,6301,6288,6301,6320,6319,6300,6288,6278,6352,6362,6363,16746,16741,16735,6341,6352,6319,16729,16713,16721,16713,16707,16702,16697,16702,16707,16703,16692,16697,16729,16735,16741,16699,16692,16703,16699,16705,16695,16621,16611,16615,6374,6353,6375,6305,6313,6294,6347,6328,6327,6328,6313,6305,6374,6354,6353,6354,6347,6327,6294,6295,6273,6259,6273,6274,6259,6260,6252,6243,6237,6252,6236,6224,6243,6229,6236,6238,16548,16558,16534,16545,16538,16528,16538,16546,16529,16548,16540,16557,16540,16549,16559,16546,16549,16529,16581,16599,16592,16558,16576,16564,16581,16573,16564,16599,16605,16607,16607,16605,16615,16153,16182,16179,16209,16181,16207,6777,6783,6770,16207,16179,16182,6777,6788,6789,16578,16567,16587,16568,16552,16578,\r\n16550,16541,16560,16568,16560,16552,16543,16535,16550,16567,16586,16587,16543,16544,16532,5464,5424,5445,16595,16612,16609,16595,16602,16586,16658,16654,16655,5407,5447,5448,5447,5426,5465,5466,5427,5448,5466,5449,5427,5449,5450,5408,5467,5428,5450,5468,5445,5428,16653,16655,16654,16537,16532,16544,16537,16545,16528,5313,5349,5348,5313,5277,5314,5371,5333,5391,5354,5392,5372,5372,5391,5333,5348,5387,5351,5370,5390,5331,5370,5351,5387,5354,5331,5390,5415,5457,5416,5415,5374,5434,5391,5413,5371,5413,5417,5355,5394,5417,5395,5435,5396,5395,5418,5396,5436,5418,5434,5374,15715,15759,15716,15760,15741,15716,12207,12201,12206,12210,12206,12209,12201,12204,12202,16712,16717,16725,5257,5294,5295,16700,16695,16706,16712,16706,16717,5277,5295,5314,6244,6245,6225,6245,6253,6239,6244,6225,6238,6269,6263,6278,6269,6253,6263,6300,6320,6301,6341,6319,6320,6300,6278,6287,6341,6362,6352,6362,6387,6363,16729,16726,16713,16713,16719,16707,16708,16697,16707,16703,16697,16708,16741,16726,16729,16710,16699,16703,16705,16699,16711,16706,16695,16705,6375,6411,6397,6375,6397,6374,6295,6294,6313,6347,6330,6328,6328,6330,6313,6374,6377,6354,6347,6354,6368,6295,6274,6273,6259,6274,6260,6243,6252,6260,6250,6236,6243,6238,6236,6250,16548,16566,16558,16545,16555,16538,16538,16555,16546,16540,16559,16557,16566,16548,16557,16563,16559,16549,16546,16563,16549,16581,16584,16599,16558,16566,16576,16584,16564,16576,16584,16581,16564,16599,16584,16605,6397,6411,6419,16209,16207,16219,6777,6770,6765,16207,16182,16219,6777,6776,6788,16578,16587,16588,16568,16578,16588,16561,16550,16560,16561,16560,16568,16543,16550,16561,16586,16602,16587,16543,16561,16544,16618,16609,16612,5445,5484,5464,16595,16609,16602,5465,5426,5486,5447,5485,5448,5465,5487,5447,5449,5489,5450,5467,5468,5428,5450,5489,5467,5468,5484,5445,16553,16537,16544,16537,16554,16545,5314,5349,5313,5349,5388,5348,5392,5354,5390,5392,5414,5372,5372,5414,5391,5388,5387,5348,5390,5370,5411,5370,5387,5412,5415,5434,5457,5432,5413,5391,5413,5455,5417,5417,5435,5395,5435,5436,5396,5458,5418,5436,5418,\r\n5459,5434,15760,15716,15759,15760,15779,15741,12203,12206,12201,12203,12209,12206,12201,12202,12196,16717,16724,16725,5294,5314,5295,16706,16705,16717,6244,6261,6245,6245,6263,6253,6250,6244,6238,6278,6263,6287,6300,6318,6320,6341,6320,6318,6287,6308,6300,6340,6362,6341,6387,6362,6393,16726,16719,16713,16720,16707,16719,16708,16707,16720,16703,16708,16714,16741,16750,16726,16699,16710,16711,16710,16703,16716,16717,16705,16711,6377,6374,6397,6295,6313,6306,6347,6348,6330,6330,6306,6313,6377,6368,6354,6347,6368,6348,6295,6284,6274,6274,6284,6260,6260,6257,6243,6257,6250,6243,16554,16555,16545,16546,16555,16563,16557,16559,16575,6510,6507,6494,16563,16575,16559,16566,16583,16576,16584,16576,16594,6419,6442,6432,6397,6419,6410,6751,6765,6770,6776,6777,6765,6776,6787,6788,9557,9563,9567,16596,16568,16588,16561,16568,16579,16602,16610,16587,16544,16561,16562,16620,16609,16618,5484,5506,5464,16613,16602,16609,5447,5487,5485,5468,5467,5509,5510,5467,5489,5468,5511,5484,16554,16537,16553,16553,16544,16562,5314,5368,5349,5349,5389,5388,5392,5390,5431,5392,5433,5414,5432,5391,5414,5387,5388,5412,5370,5412,5411,5411,5431,5390,5457,5434,5475,5432,5456,5413,5456,5455,5413,5417,5455,5435,5476,5436,5435,16826,16827,16828,5476,5458,5436,12196,12198,12190,15760,15759,15803,15760,15803,15779,15741,15779,15780,12199,12203,12201,12208,12209,12203,12201,12196,12199,16717,16711,16724,16725,16724,16739,5294,5350,5314,6261,6244,6268,6245,6261,6263,6250,6262,6244,6286,6287,6263,6308,6318,6300,6340,6341,6318,6287,6317,6308,6340,6361,6362,6393,6362,6386,16726,16732,16719,16719,16733,16720,16708,16720,16714,16714,16716,16703,6407,6415,6393,16722,16711,16710,16710,16716,16723,6377,6397,6410,6306,6284,6295,6348,6329,6330,6306,6330,6329,6377,6390,6368,6365,6348,6368,6260,6284,6281,6260,6271,6257,6262,6250,6257,16554,16571,16555,16555,16572,16563,6507,6509,6506,6507,6506,6494,16566,16601,16593,16572,16575,16563,16566,16593,16583,16583,16594,16576,6432,6442,6458,6432,6410,6419,6751,6755,6765,6776,6765,6769,6775,6787,6776,9563,9557,9553,16610,16614,\r\n16587,16603,16568,16596,9562,9563,9553,9561,9566,9556,16579,16562,16561,9558,9564,9547,16620,16613,16609,9543,9534,9523,9480,9512,9524,9512,9523,9534,16613,16619,16602,5467,5510,5509,5468,5509,5511,5526,5484,5511,16554,16553,16569,16553,16562,16570,5314,5369,5368,5368,5389,5349,5389,5412,5388,5454,5392,5431,5392,5454,5433,5432,5414,5433,5452,5411,5412,5411,5453,5431,5473,5456,5432,5495,5455,5456,5455,5476,5435,12190,12188,12187,5496,5458,5476,12196,12190,12194,12208,12211,12209,15828,15779,15803,15779,15829,15780,12199,12205,12203,12208,12203,12205,12194,12199,12196,16730,16724,16711,16738,16739,16724,5350,5369,5314,6268,6244,6262,6268,6275,6261,6261,6276,6263,6286,6299,6287,6286,6263,6276,6308,6333,6318,6333,6340,6318,6317,6287,6299,6333,6308,6317,6361,6340,6351,6362,6361,6386,6386,6407,6393,16732,16726,16740,16732,16733,16719,16720,16733,16727,16720,16727,16714,16714,16727,16716,16722,16730,16711,16723,16722,16710,16723,16716,16731,6377,6410,6412,6306,6311,6284,6343,6329,6348,6329,6311,6306,6396,6390,6377,6365,6368,6390,6365,6343,6348,6281,6284,6291,6281,6271,6260,6257,6271,6262,16569,16571,16554,16580,16555,16571,16555,16580,16572,16572,16591,16575,6506,6505,6494,16601,16608,16593,6443,6457,6420,6443,6433,6458,6458,6433,6432,6412,6410,6432,6755,6769,6765,6769,6775,6776,6775,6778,6787,9541,9553,9557,9558,9554,9557,9553,9556,9562,9561,9556,9552,16562,16579,16589,9547,9554,9558,9543,9533,9548,9543,9523,9533,9480,9498,9512,9512,9498,9523,9548,9532,9547,5510,5544,5509,5544,5511,5509,9480,9499,9464,16570,16569,16553,9559,9565,9550,5409,5368,5369,5368,5410,5389,5430,5412,5389,5454,5431,5472,5433,5454,5474,5432,5433,5473,5453,5411,5452,5452,5412,5469,5472,5431,5453,5495,5456,5473,5495,5514,5455,5514,5476,5455,12187,12188,12185,12187,12194,12190,12188,12191,12185,5514,5496,5476,15878,15851,15803,15779,15828,15850,15851,15828,15803,15829,15779,15852,15971,15946,15898,15898,15851,15878,12194,12200,12199,16730,16738,16724,16739,16738,16759,6268,6262,6277,6268,6277,6275,6275,6285,6261,6261,6285,6276,6286,6276,6299,6340,6333,\r\n6351,6317,6299,6332,6333,6317,6339,6361,6351,6372,6361,6372,6386,6386,6394,6407,16732,16740,16749,16733,16732,16749,16727,16733,16742,16731,16716,16727,16736,16730,16722,16723,16736,16722,16723,16731,16737,6377,6412,6396,6311,6291,6284,6343,6323,6329,6329,6323,6311,6365,6390,6396,6343,6365,6373,6281,6291,6271,6277,6262,6271,16580,16571,16569,6495,6508,6511,6508,6495,6506,6505,6506,6495,6505,6490,6494,6473,6494,6490,6457,6473,6455,6457,6440,6420,6443,6420,6433,6412,6432,6433,6755,6764,6769,6775,6769,6764,6764,6778,6775,6787,6778,6790,9541,9540,9553,9554,9541,9557,9553,9540,9556,9540,9552,9556,16562,16589,16597,9547,9542,9554,9533,9532,9548,9523,9511,9533,9498,9480,9463,9498,9497,9523,9532,9542,9547,5544,5510,5562,5511,5544,5563,9480,9464,9426,16570,16590,16569,9550,9555,9559,5429,5368,5409,16738,16762,16759,16793,16775,16789,5430,5389,5410,5430,5469,5412,5472,5494,5454,5494,5474,5454,5433,5474,5473,5453,5452,5492,5471,5452,5469,5472,5453,5493,5495,5473,5474,5514,5495,5474,12187,12185,12186,12193,12194,12187,5532,5549,5496,5514,5532,5496,15850,15828,15851,15779,15850,15852,15852,15879,15829,15993,15946,15971,15924,15898,15946,15898,15924,15851,12200,12194,12197,16730,16736,16738,6277,6296,6275,6275,6297,6285,6276,6285,6298,6299,6276,6298,6351,6333,6350,6332,6299,6316,6338,6317,6332,6317,6338,6339,6350,6333,6339,6351,6384,6372,6372,6394,6386,6416,6407,6394,6416,6430,6407,16749,16751,16733,16751,16742,16733,16742,16743,16727,16731,16727,16743,16736,16723,16747,16737,16731,16743,16748,16723,16737,6420,6396,6412,6311,6303,6291,6343,6344,6323,6311,6323,6303,6396,6389,6365,6373,6365,6389,6373,6364,6343,6277,6271,6291,16598,16580,16569,16598,16604,16580,6505,6495,6490,6473,6490,6474,6474,6455,6473,6457,6455,6440,6440,6418,6420,6412,6433,6420,6764,6772,6778,6785,6790,6778,9541,9521,9540,9541,9554,9542,9540,9546,9552,9552,9546,9550,9511,9532,9533,9523,9497,9511,9426,9463,9480,9463,9479,9498,9497,9498,9479,9522,9542,9532,16598,16569,16590,9550,9539,9555,16775,16762,16768,16755,16762,16738,16775,16785,16789,5430,5410,5451,5471,\r\n5469,5430,5472,5513,5494,5494,5515,5474,5471,5492,5452,5492,5493,5453,5513,5472,5493,5514,5474,5515,12183,12186,12185,12186,12189,12187,12193,12197,12194,12193,12187,12189,5548,5549,5532,5532,5514,5515,15897,15850,15851,15897,15852,15850,15852,15899,15879,5727,5732,5734,15924,15946,15969,15923,15851,15924,5727,5717,5724,16755,16738,16736,6277,6307,6296,6297,6275,6296,6298,6285,6297,6299,6298,6316,6371,6351,6350,6332,6316,6337,6338,6332,6337,6338,6359,6339,6360,6350,6339,6371,6384,6351,6384,6394,6372,6405,6416,6394,16765,16749,16772,16751,16749,16765,16760,16742,16751,16743,16742,16757,16747,16723,16748,16747,16756,16736,16737,16743,16757,16737,16758,16748,6418,6396,6420,6277,6291,6303,6343,6364,6344,6344,6324,6323,6324,6303,6323,6409,6389,6396,6389,6395,6373,6388,6364,6373,6474,6495,6491,6474,6490,6495,6474,6456,6455,6431,6440,6455,6418,6440,6408,6785,6778,6772,16815,16820,16818,9522,9521,9541,9520,9540,9521,9541,9542,9522,9546,9540,9520,9546,9539,9550,9511,9522,9532,9478,9511,9497,9463,9426,9447,9463,9447,9479,9446,9497,9479,9555,9551,9560,9555,9539,9551,16755,16768,16762,16775,16768,16769,16785,16775,16781,5451,5410,5470,5430,5451,5471,5531,5494,5513,5494,5531,5515,5527,5492,5471,5492,5529,5493,5530,5513,5493,5654,5668,5621,12184,12183,12185,12186,12192,12189,5711,5702,5717,12195,12193,12189,5532,5515,5548,15897,15851,15923,15897,15899,15852,5727,5724,5732,15994,15969,15946,15969,15923,15924,5724,5717,5702,16755,16736,16756,6303,6307,6277,6307,6314,6296,6297,6296,6315,6315,6298,6297,6298,6315,6316,6360,6371,6350,6337,6316,6315,6337,6358,6338,6338,6358,6359,6339,6359,6360,6371,6392,6384,6394,6384,6405,6429,6416,6405,16766,16751,16765,16760,16757,16742,16766,16760,16751,16763,16747,16748,16747,16764,16756,16758,16737,16757,16748,16758,16763,6409,6396,6418,6364,6366,6344,6344,6345,6324,6303,6324,6307,6389,6409,6395,6388,6373,6395,6388,6391,6364,6475,6474,6491,6475,6456,6474,6431,6455,6456,6408,6440,6431,6418,6408,6409,16818,16820,16821,9522,9510,9521,9521,9494,9520,9539,9546,9520,9511,9496,9522,9496,9511,9478,9497,\r\n9446,9478,9426,9400,9447,9446,9479,9447,6479,6491,6497,9551,9539,9545,16755,16756,16768,16769,16768,16756,16769,16781,16775,16785,16781,16790,5490,5451,5470,5491,5471,5451,5531,5513,5547,5531,5548,5515,5527,5529,5492,5512,5527,5471,5530,5493,5529,5530,5547,5513,5654,5621,5643,12182,12183,12184,5654,5680,5692,5702,5711,5680,15897,15923,15944,15897,15945,15899,5724,5728,5732,15969,15994,15990,15944,15923,15969,5702,5718,5724,6331,6314,6307,6314,6315,6296,6360,6385,6371,6336,6337,6315,6337,6357,6358,6359,6358,6382,6359,6383,6360,6392,6371,6385,6392,6405,6384,6405,6427,6429,6452,6429,6427,16760,16773,16757,9502,9481,9466,16764,16747,16763,16769,16756,16764,16758,16757,16770,16771,16763,16758,6369,6366,6364,6366,6345,6344,6331,6324,6345,6331,6307,6324,6409,6408,6395,6388,6395,6408,6391,6388,6398,6391,6369,6364,6475,6491,6479,6475,6463,6456,6456,6441,6431,6417,6408,6431,9496,9510,9522,9510,9494,9521,9494,9509,9520,9539,9520,9531,9496,9478,9462,9446,9462,9478,9446,9447,9400,6479,6497,6496,9545,9539,9531,16777,16781,16769,16790,16781,16787,16802,16790,16800,5512,5471,5491,5569,5531,5547,5569,5548,5531,5527,5564,5529,5512,5545,5527,5530,5529,5567,5568,5547,5530,5643,5621,5604,5654,5643,5669,5569,5604,5621,5654,5669,5680,5702,5680,5691,15897,15944,15970,15945,15897,15970,15945,15947,15899,5728,5724,5718,16058,16036,15994,15994,16036,15990,15944,15969,15990,5702,5707,5718,6314,6331,6335,6315,6314,6336,6383,6385,6360,6337,6336,6357,6357,6382,6358,6382,6383,6359,6392,6385,6406,6392,6414,6405,6405,6414,6427,6452,6427,6451,9451,9404,9466,16773,16770,16757,9500,9481,9502,9451,9466,9481,16764,16763,16776,16777,16769,16764,16758,16770,16771,16771,16778,16763,6349,6366,6369,6366,6349,6345,6331,6345,6349,6388,6408,6417,6388,6417,6398,6378,6391,6398,6391,6378,6369,6479,6463,6475,6456,6463,6441,6417,6431,6441,9496,9462,9510,9510,9477,9494,9494,9476,9509,9531,9520,9509,9425,9462,9446,9425,9446,9400,6496,6480,6479,9531,9538,9545,16780,16781,16777,16787,16781,16780,16790,16787,16791,16798,16800,16790,5528,5512,5491,5586,5569,5547,5564,5527,\r\n5545,5567,5529,5564,5528,5545,5512,5568,5530,5567,5586,5547,5568,5643,5604,5642,5666,5669,5643,5569,5586,5604,5691,5680,5669,5691,5707,5702,15944,15990,15970,15991,15945,15970,15945,15992,15947,5728,5718,5729,16058,16015,16036,16036,16015,15990,5714,5718,5707,6335,6331,6349,6314,6335,6336,6383,6404,6385,6357,6336,6356,6381,6382,6357,6382,6403,6383,6385,6404,6406,6406,6414,6392,6414,6437,6427,6437,6451,6427,9451,9405,9404,9404,9384,9363,9500,9465,9481,9451,9481,9448,16776,16763,16778,16776,16780,16764,16777,16764,16780,9340,9321,9363,9278,9321,9298,6355,6349,6369,6421,6398,6417,6378,6398,6399,6355,6369,6378,6480,6463,6479,6441,6463,6472,6439,6417,6441,9462,9477,9510,9477,9443,9494,9494,9443,9476,9493,9509,9476,9519,9531,9509,9445,9462,9425,9425,9400,9380,9545,9538,9549,9531,9519,9538,16787,16780,16791,16790,16791,16796,5546,5528,5491,16798,16790,16796,5545,5583,5564,5567,5564,5599,5565,5545,5528,5568,5567,5599,5586,5568,5603,5642,5604,5620,5666,5643,5642,5689,5669,5666,5586,5620,5604,5691,5669,5689,5691,5689,5707,16015,15970,15990,15991,16016,15945,16017,15991,15970,16016,15992,15945,5721,5729,5718,16058,16080,16015,5714,5721,5718,5714,5707,5689,6335,6349,6355,6335,6356,6336,6403,6404,6383,6357,6356,6381,6381,6402,6382,6403,6382,6402,6426,6406,6404,6428,6414,6406,6437,6414,6438,9501,9465,9500,9405,9451,9448,9405,9384,9404,9340,9363,9384,9465,9448,9481,9257,9278,9240,16776,16783,16780,9340,9298,9321,9298,9240,9278,6398,6421,6399,6439,6421,6417,6379,6378,6399,6355,6378,6379,6463,6480,6472,6441,6472,6462,6462,6439,6441,9462,9445,9477,9445,9443,9477,9442,9476,9443,9509,9493,9519,9442,9493,9476,9445,9425,9424,9424,9425,9380,6480,6498,6489,9519,9530,9538,16786,16791,16780,16797,16796,16791,5546,5566,5528,16796,16799,16798,5565,5583,5545,5599,5564,5583,5528,5584,5565,5619,5568,5599,5619,5603,5568,5603,5620,5586,5642,5620,5653,5666,5642,5667,5689,5666,5667,16015,16017,15970,15991,16037,16016,16038,15991,16017,16039,15992,16016,5721,5731,5729,16015,16080,16059,5708,5721,5714,5689,5708,5714,6335,6355,6370,6356,6335,6370,6403,\r\n6425,6404,6380,6381,6356,6402,6381,6401,6402,6425,6403,6426,6428,6406,6404,6425,6426,6428,6438,6414,6437,6438,6461,9501,9482,9465,9402,9405,9448,9384,9405,9364,9341,9340,9384,9465,9427,9448,9208,9257,9240,16786,16780,16783,9298,9340,9341,9298,9279,9240,6422,6399,6421,6421,6439,6454,6399,6400,6379,6379,6370,6355,6480,6489,6472,6462,6472,6471,6462,6454,6439,9445,9422,9443,9442,9443,9397,9493,9492,9519,9493,9442,9492,9445,9424,9399,9380,9399,9424,6504,6489,6498,9519,9492,9530,9192,9166,9164,16796,16797,16799,9149,9132,9164,5546,5585,5566,5584,5528,5566,5565,5600,5583,5599,5583,5617,5584,5600,5565,5619,5599,5641,5619,5620,5603,5653,5620,5641,5667,5642,5653,5667,5700,5689,16015,16059,16017,16060,16037,15991,16037,16061,16016,16038,16060,15991,16038,16017,16062,16039,16016,16061,5726,5731,5721,5715,5721,5708,5700,5708,5689,6356,6370,6380,6380,6401,6381,6424,6402,6401,6436,6425,6402,6426,6450,6428,6425,6450,6426,6428,6453,6438,6461,6438,6453,9465,9482,9449,9402,9364,9405,9402,9448,9427,9341,9384,9364,9465,9449,9427,9225,9208,9240,9192,9208,9166,9323,9298,9341,9298,9323,9279,9279,9258,9240,6422,6400,6399,6422,6421,6444,6444,6421,6454,6400,6380,6379,6379,6380,6370,6471,6472,6489,6471,6454,6462,9422,9445,9399,9443,9422,9397,9397,9421,9442,9475,9492,9442,9399,9380,9357,6488,6489,6504,6492,6488,6504,9166,9149,9164,16801,16799,16797,9119,9132,9149,5601,5566,5585,5584,5566,5602,5617,5583,5600,5637,5599,5617,5584,5602,5600,5637,5641,5599,5619,5641,5620,5653,5641,5662,5679,5667,5653,5667,5690,5700,16059,16062,16017,16060,16081,16037,16082,16061,16037,16083,16060,16038,16083,16038,16062,16039,16061,16084,16059,16104,16062,5726,5721,5715,5708,5700,5715,6413,6401,6380,6424,6436,6402,6401,6413,6424,6436,6449,6425,6453,6428,6450,6449,6450,6425,6461,6453,6470,9450,9449,9482,9364,9402,9361,9382,9402,9427,9323,9341,9364,9449,9382,9427,9225,9194,9208,9258,9225,9240,9194,9166,9208,9322,9279,9323,9279,9280,9258,6422,6423,6400,6422,6444,6445,6445,6444,6454,6413,6380,6400,6488,6471,6489,6471,6464,6454,9399,9356,9422,9422,9356,9397,9397,9379,9421,\r\n9421,9461,9442,6499,6481,6492,9475,9442,9461,9399,9357,9356,6488,6492,6464,9166,9134,9149,9118,9132,9091,9119,9091,9132,9119,9149,9134,9103,9131,9118,5618,5602,5566,5617,5600,5638,5637,5617,5651,5639,5600,5602,5637,5662,5641,5662,5679,5653,5667,5679,5690,5710,5700,5690,16105,16081,16060,16037,16081,16082,16082,16106,16061,16105,16060,16083,16083,16062,16107,16106,16084,16061,16104,16107,16062,5726,5715,5730,5716,5715,5700,6424,6448,6436,6413,6435,6424,6436,6448,6449,6453,6450,6469,6468,6450,6449,6453,6469,6470,9382,9449,9450,9382,9361,9402,9364,9361,9342,9323,9364,9342,9225,9195,9194,9258,9256,9225,9194,9167,9166,9322,9280,9279,9322,9323,9342,9256,9258,9280,6422,6445,6423,6400,6423,6413,6454,6464,6445,6488,6464,6471,9379,9397,9356,9379,9423,9421,9461,9421,9423,6500,6481,6499,6481,6464,6492,9356,9357,9315,9167,9134,9166,9103,9118,9091,9092,9091,9119,9104,9119,9134,5618,5640,5602,5639,5638,5600,5651,5617,5638,5637,5651,5662,5602,5652,5639,5679,5662,5696,5679,5701,5690,5710,5716,5700,5710,5690,5709,8815,8681,8849,16081,16117,16082,16082,16118,16106,16083,16119,16105,5730,5733,5736,16106,16120,16084,5715,5725,5730,5725,5715,5716,6447,6448,6424,6435,6413,6434,6447,6424,6435,6448,6467,6449,6469,6450,6478,6468,6478,6450,6468,6449,6467,6470,6469,6487,9382,9450,9403,9320,9361,9382,9319,9342,9361,9195,9225,9239,9167,9194,9195,9256,9239,9225,9322,9299,9280,9322,9342,9299,9256,9280,9241,6446,6423,6445,6434,6413,6423,6445,6464,6446,9379,9356,9339,9379,9398,9423,9461,9423,9444,6482,6481,6500,6465,6464,6481,9356,9315,9314,9150,9134,9167,9077,9103,9091,9069,9091,9092,9104,9092,9119,9150,9104,9134,5602,5640,5652,5639,5663,5638,5663,5651,5638,5676,5662,5651,5662,5686,5696,5701,5679,5696,5690,5701,5709,5710,5723,5716,5710,5709,5723,8681,8815,8781,16081,16135,16117,16118,16082,16117,16136,16106,16118,8781,8815,8850,5725,5733,5730,16106,16137,16120,5725,5716,5723,6447,6466,6448,6459,6435,6434,6447,6435,6459,6466,6467,6448,6486,6469,6478,6468,6485,6478,6468,6467,6483,6486,6487,6469,9383,9382,9403,9320,9319,9361,9382,9383,9320,9319,9299,\r\n9342,9195,9239,9224,9176,9167,9195,9256,9224,9239,9299,9252,9280,9252,9241,9280,9256,9241,9224,6434,6423,6446,6465,6446,6464,9356,9314,9339,9398,9379,9339,9398,9444,9423,9461,9444,9474,6482,6465,6481,9495,9461,9474,9150,9167,9176,9077,9091,9069,9069,9092,9078,9104,9078,9092,9133,9104,9150,5640,5665,5652,5639,5677,5663,5676,5651,5663,5686,5662,5676,5686,5697,5696,5713,5701,5696,5709,5701,5713,5723,5709,5722,8681,8781,8713,8681,8648,8717,16136,16137,16106,8647,8648,8545,8816,8781,8850,5725,5735,5733,8747,8851,8817,6447,6459,6466,6460,6459,6434,6466,6483,6467,6478,6485,6486,6485,6468,6483,9428,9376,9403,9383,9403,9362,9320,9294,9319,9320,9383,9362,9319,9252,9299,9193,9195,9224,9195,9193,9176,9209,9241,9252,9224,9241,9209,6434,6446,6460,6465,6460,6446,9291,9339,9314,9395,9398,9339,9398,9419,9444,9420,9474,9444,6476,6465,6482,6482,6501,6493,9150,9176,9165,9043,9077,9069,9055,9069,9078,9104,9105,9078,9133,9105,9104,9165,9133,9150,9077,9043,9068,5677,5676,5663,5697,5686,5676,5713,5696,5720,5709,5713,5722,8817,8852,8782,8746,8713,8781,8677,8681,8713,8681,8612,8648,8647,8545,8611,8545,8648,8612,8816,8746,8781,5725,5737,5735,8747,8817,8782,6466,6459,6477,6460,6476,6459,6484,6483,6466,6485,6503,6486,6485,6483,6503,9376,9428,9418,9362,9403,9376,9320,9275,9294,9252,9319,9294,9320,9362,9336,9193,9224,9209,9165,9176,9193,9209,9252,9236,6476,6460,6465,9291,9337,9339,9419,9398,9395,9395,9339,9377,9420,9444,9419,9420,9460,9474,6493,6476,6482,6501,6484,6493,9043,9069,9055,9055,9078,9070,9105,9093,9078,9133,9117,9105,9165,9151,9133,5697,5676,5677,8821,8887,8886,8852,8887,8821,8782,8852,8786,8746,8645,8713,8612,8681,8677,8645,8677,8713,8747,8746,8816,8678,8747,8782,6477,6459,6476,6466,6477,6484,6502,6483,6484,6503,6483,6502,9376,9418,9375,9336,9362,9376,9336,9275,9320,9252,9294,9275,9177,9193,9209,9165,9193,9177,9236,9252,9275,9205,9209,9236,9337,9291,9290,9337,9377,9339,9419,9395,9378,9354,9395,9377,9378,9420,9419,9441,9460,9420,6477,6476,6493,6484,6477,6493,9093,9070,9078,9105,9117,9093,9151,9117,9133,9177,9151,9165,8821,8786,8852,8782,\r\n8786,8678,8645,8746,8714,8747,8714,8746,8678,8714,8747,9418,9441,9396,9418,9396,9375,9375,9353,9376,9336,9376,9353,9336,9313,9275,9177,9209,9205,9236,9275,9271,9205,9236,9234,9354,9337,9290,9337,9354,9377,9354,9378,9395,9378,9396,9420,9396,9441,9420,9177,9172,9151,8645,8714,8678,9355,9375,9396,9375,9312,9353,9336,9353,9313,9275,9313,9271,9177,9205,9172,9234,9236,9271,9354,9290,9338,9354,9338,9378,9355,9396,9378,9355,9312,9375,9312,9313,9353,9313,9312,9271,9234,9271,9270,9338,9290,9312,9378,9338,9355,9338,9312,9355,9312,9270,9271,9270,9312,9290,9958,9978,9984,9958,9968,9978,9978,9994,9984,9977,9958,9984,9968,9958,9950,9968,9983,9978,10005,9994,9978,10002,9984,9994,9958,9977,9967,9977,9984,9993,9958,9943,9950,9968,9950,9966,9966,9983,9968,9978,9983,9992,10005,10016,9994,9978,9992,10005,9984,10002,9993,9994,10017,10002,9977,9969,9967,9943,9958,9967,10003,9977,9993,9943,9937,9950,9950,9949,9966,9966,9965,9983,9992,9983,9976,10016,10005,10015,9994,10016,10029,10005,9992,10015,10002,10013,9993,10017,9994,10029,10017,10013,10002,9985,9969,9977,9969,9943,9967,9977,10003,10004,10003,9993,10014,9937,9943,9928,9950,9937,9949,9949,9965,9966,9965,9976,9983,9992,9976,10001,10015,10041,10016,10029,10016,10042,10012,10015,9992,10026,9993,10013,10029,10043,10017,10017,10038,10013,9971,9969,9985,9977,10004,9985,9959,9943,9969,10003,10027,10004,10026,10014,9993,10027,10003,10014,9943,9951,9928,9933,9937,9928,9937,9942,9949,9965,9949,9957,9965,9957,9976,9991,10001,9976,9992,10001,10012,10060,10041,10015,10041,10042,10016,10042,10061,10029,10015,10012,10011,10026,10013,10038,10029,10061,10043,10043,10055,10017,10017,10055,10038,9969,9971,9952,9985,9987,9971,10006,9985,10004,9951,9943,9959,9952,9959,9969,10028,10004,10027,10026,10039,10014,10027,10014,10040,9951,9944,9928,9942,9937,9933,9923,9933,9928,9942,9932,9949,9941,9957,9949,9976,9957,9975,10011,10001,9991,9991,9976,9975,10012,10001,10011,10060,10076,10041,10054,10060,10015,10041,10077,10042,10042,10078,10061,10015,10011,10037,10056,10026,10038,10043,10061,10079,10055,10043,10080,\r\n10073,10038,10055,10006,9987,9985,9971,9987,9979,10028,10006,10004,9944,9951,9959,9959,9952,9944,10027,10040,10028,10039,10026,10057,10039,10058,10014,5954,5927,5944,9932,9942,9933,9932,9933,9923,9932,9941,9949,9957,9941,9946,9961,9975,9957,10011,9991,10025,9990,9991,9975,10060,10092,10076,10076,10077,10041,10093,10060,10054,10054,10015,10037,10077,10078,10042,10094,10061,10078,10011,10025,10037,10026,10056,10057,10056,10038,10073,10061,10094,10079,10079,10080,10043,10080,10090,10055,10073,10055,10090,10008,9987,10006,9996,9979,9987,10030,10006,10028,10040,10074,10028,5889,5900,5914,5900,5927,5914,5927,5902,5944,9932,9935,9941,9946,9941,9935,9946,9961,9957,9975,9961,9982,10023,10025,9991,9991,9990,10010,9990,9975,9982,10092,10060,10093,10107,10076,10092,10076,10108,10077,10054,10089,10093,10025,10054,10037,10108,10078,10077,10094,10078,10109,5889,5899,5863,10073,10091,10056,10110,10079,10094,10080,10079,10111,10080,10112,10090,10073,10090,10091,10008,9996,9987,10006,10030,10008,10028,10059,10030,5928,5902,5915,5900,5889,5876,5927,5900,5901,5927,5901,5902,9939,9946,9935,9961,9946,9953,9982,9961,9988,10053,10025,10023,9991,10010,10023,10010,9990,10000,9982,10000,9990,10093,10128,10092,10107,10108,10076,10107,10092,10128,10071,10089,10054,10089,10126,10093,10025,10071,10054,10078,10108,10109,6541,6562,6543,5878,5863,5899,5889,5863,5864,10110,10129,10079,6541,6525,6532,10129,10111,10079,10111,10112,10080,10008,10019,9996,10030,10032,10008,10059,10075,10030,5915,5902,5890,5876,5889,5864,5900,5876,5901,5877,5902,5901,9946,9939,9953,9973,9961,9953,9980,9988,9961,9999,9982,9988,10025,10053,10071,10023,10069,10053,10010,10036,10023,10024,10010,10000,10000,9982,9999,10144,10128,10093,10107,10146,10108,10147,10107,10128,10106,10089,10071,10106,10126,10089,10144,10093,10126,10146,10109,10108,6543,6562,6552,6541,6543,6525,5866,5863,5878,5829,5864,5863,10129,10110,10148,6520,6532,6525,10111,10129,10148,10112,10111,10149,10019,10008,10032,10031,9996,10019,10062,10032,10030,5915,5890,5926,10062,10030,10075,5902,5877,5890,5864,5852,\r\n5876,5876,5877,5901,9953,9939,9956,9980,9961,9973,9972,9973,9953,9997,9988,9980,9997,9999,9988,10088,10071,10053,10069,10023,10052,10088,10053,10069,10036,10010,10024,10052,10023,10036,10035,10024,10000,9999,10022,10000,10165,10128,10144,10147,10146,10107,10166,10147,10128,10071,10088,10106,10124,10126,10106,10164,10144,10126,6552,6562,6570,6543,6552,6534,6543,6534,6525,5863,5866,5851,5829,5852,5864,5863,5851,5829,6532,6520,6540,6516,6520,6525,10149,10111,10148,10045,10019,10032,10031,10019,10046,10064,10032,10062,5893,5926,5890,5926,5933,5949,5865,5890,5877,5876,5852,5853,5876,5853,5877,9953,9956,9972,9972,9980,9973,9980,9998,9997,9999,9997,10020,10087,10069,10052,10088,10069,10087,10036,10024,10051,10052,10036,10070,10035,10051,10024,10035,10000,10022,10022,9999,10033,10165,10166,10128,10144,10185,10165,10147,10186,10146,10166,10186,10147,10106,10088,10124,10124,10163,10126,10184,10144,10164,10126,10163,10164,10146,10186,10204,6552,6544,6534,6525,6534,6521,5852,5829,5838,6533,6540,6520,6520,6516,6513,6525,6521,6516,10019,10045,10046,10045,10032,10064,10063,10031,10046,10064,10062,10095,5926,5893,5933,5893,5890,5888,5933,5918,5949,5888,5890,5865,5865,5877,5853,5853,5852,5838,10020,9997,9998,9999,10020,10033,10087,10052,10070,10124,10088,10087,10051,10072,10036,10072,10070,10036,10022,10051,10035,10022,10033,10050,10166,10165,10202,10184,10185,10144,10185,10203,10165,10166,10205,10186,10124,10179,10163,10184,10164,10201,10163,10201,10164,6571,6552,6579,6552,6555,6544,6527,6534,6544,6527,6521,6534,5829,5809,5838,6520,6526,6533,6514,6513,6516,6520,6513,6526,6514,6516,6521,10046,10045,10082,10083,10045,10064,10046,10082,10063,10095,10099,10064,5933,5893,5918,5893,5888,5881,5888,5865,5862,5839,5865,5853,5853,5838,5831,9998,10021,10020,10020,10047,10033,10070,10105,10087,10124,10087,10141,10068,10072,10051,10072,10104,10070,10022,10068,10051,10050,10033,10047,10050,10067,10022,10202,10165,10203,10166,10202,10205,10227,10185,10184,10228,10203,10185,10205,10229,10186,10124,10158,10179,10179,10158,10163,10184,10201,10227,\r\n10226,10201,10163,6555,6552,6571,6555,6535,6544,6527,6544,6535,6527,6514,6521,5838,5809,5831,6512,6513,6514,6513,6524,6526,10045,10097,10082,10045,10083,10098,10064,10099,10083,10096,10063,10082,5918,5920,5948,5907,5918,5893,5881,5888,5862,5870,5893,5881,5839,5862,5865,5853,5831,5839,10021,9998,10009,10021,10047,10020,10104,10105,10070,10087,10105,10125,10141,10087,10125,10124,10141,10158,10103,10072,10068,10122,10104,10072,10022,10067,10068,10065,10050,10047,10050,10086,10067,10240,10202,10203,10241,10205,10202,10227,10228,10185,10228,10242,10203,10205,10243,10229,10163,10158,10221,10226,10227,10201,10226,10163,10221,10262,10229,10243,6553,6535,6555,6527,6535,6522,6527,6522,6514,5818,5831,5809,6515,6513,6512,6512,6514,6517,6513,6518,6524,10045,10098,10097,10114,10082,10097,10115,10098,10083,10116,10083,10099,10114,10096,10082,5920,5918,5907,5948,5920,5919,5893,5870,5907,5844,5881,5862,5844,5870,5881,5839,5837,5862,5818,5839,5831,10009,10034,10021,10021,10065,10047,10104,10142,10105,10103,10122,10072,10068,10123,10103,10104,10122,10139,10068,10067,10102,10065,10100,10050,10086,10050,10100,10067,10086,10102,10240,10241,10202,10240,10203,10242,10241,10243,10205,10260,10228,10227,10242,10228,10261,10227,10226,10259,10221,10257,10226,10274,10262,10243,6545,6535,6553,6528,6522,6535,6522,6517,6514,6513,6515,6518,6515,6512,6519,6519,6512,6517,6530,6524,6518,10098,10132,10097,10097,10133,10114,10134,10098,10115,10115,10083,10116,5936,5948,5919,10114,10135,10096,5894,5920,5907,5919,5920,5894,5907,5870,5894,5844,5862,5837,5870,5844,5856,5839,5818,5837,10009,10048,10034,10034,10049,10021,10021,10049,10065,10104,10160,10142,10103,10139,10122,10121,10123,10068,10123,10140,10103,10159,10104,10139,10121,10068,10102,10065,10085,10100,10086,10100,10119,10086,10120,10102,10240,10270,10241,10271,10240,10242,10272,10243,10241,10260,10261,10228,10227,10259,10260,10273,10242,10261,10259,10226,10257,10221,10256,10257,10243,10290,10274,6528,6535,6545,10318,10331,10274,6522,6528,6517,6523,6518,6515,6523,6515,6519,6519,6517,6528,6518,6536,\r\n6530,10134,10132,10098,10097,10132,10133,10114,10133,10135,10115,10152,10134,5936,5934,5961,5936,5919,5909,5909,5919,5894,5882,5894,5870,5856,5882,5870,1552,1577,1536,10066,10049,10034,10065,10049,10085,10180,10160,10104,10139,10103,10156,10123,10121,10138,10123,10157,10140,10140,10156,10103,10104,10159,10180,10156,10159,10139,10102,10138,10121,10100,10085,10117,10117,10119,10100,10086,10119,10120,10120,10138,10102,10270,10240,10271,10270,10288,10241,10242,10289,10271,10290,10243,10272,10272,10241,10288,10261,10260,10287,2589,2623,2590,10289,10242,10273,10273,10261,10287,2590,2574,2554,2539,2554,2574,10305,10274,10290,6554,6528,6545,10305,10318,10274,6529,6518,6523,6523,6519,6531,6528,6531,6519,6518,6529,6536,6547,6530,6536,10168,10132,10134,10132,10169,10133,10170,10135,10133,10115,10171,10152,10134,10152,10168,5936,5909,5934,5961,5934,5960,5909,5894,5882,5882,5856,5892,1552,1536,1491,10084,10049,10066,10084,10085,10049,10160,10180,10177,10157,10123,10138,10157,10176,10140,10177,10156,10140,10180,10159,10177,10159,10156,10177,10084,10117,10085,10117,10153,10119,10154,10120,10119,10120,10155,10138,10302,10270,10271,10270,10303,10288,10302,10271,10289,10272,10304,10290,10303,10272,10288,2703,2623,2687,2589,2620,2623,2554,2589,2590,2673,2703,2687,10305,10290,10319,6528,6554,6556,10318,10305,10330,6523,6537,6529,6523,6531,6537,6546,6531,6528,6547,6536,6529,6560,6530,6547,10132,10168,10169,10133,10169,10190,10133,10190,10170,10191,10152,10171,10152,10192,10168,5909,5908,5934,5934,5935,5960,5882,5908,5909,5892,5856,5880,5908,5882,5892,1491,1535,1552,10066,10101,10084,10157,10138,10175,10176,10157,10196,10140,10176,10177,10084,10136,10117,10136,10153,10117,10154,10119,10153,10154,10155,10120,10175,10138,10155,10270,10302,10303,10272,10303,10304,10304,10317,10290,2687,2623,2674,2620,2589,2586,2641,2623,2620,2687,2655,2673,10290,10329,10319,10305,10319,10330,6554,6572,6556,6528,6556,6546,6548,6529,6537,6531,6550,6537,6531,6546,6550,6547,6529,6548,6530,6560,6558,6547,6565,6560,10168,10207,10169,10190,10169,10208,10210,10170,\r\n10190,5983,5959,5972,5959,5960,5935,10152,10211,10192,10212,10168,10192,5934,5908,5935,5880,5906,5892,5917,5908,5892,1490,1535,1491,10118,10084,10101,10196,10157,10175,10176,10196,10218,10118,10136,10084,10136,10173,10153,10154,10153,10193,10155,10154,10193,10195,10175,10155,10328,10303,10302,10303,10317,10304,10290,10317,10329,2674,2623,2641,2655,2687,2674,2641,2620,2586,10319,10329,10345,10319,10346,10330,6572,6564,6556,6564,6546,6556,6548,6537,6550,6563,6550,6546,6547,6548,6565,6558,6560,6576,6578,6560,6565,10168,10212,10207,10207,10208,10169,10230,10190,10208,10230,10210,10190,5959,5947,5972,5959,5935,5932,10231,10192,10211,10212,10192,10231,5917,5935,5908,5906,5880,5905,5917,5892,5906,1490,1489,1535,1490,1491,1441,10118,10101,10137,10196,10175,10234,10218,10196,10236,10118,10137,10136,10173,10136,10174,10173,10193,10153,10216,10155,10193,10195,10217,10175,10155,10216,10195,10303,10328,10343,10303,10343,10317,10344,10329,10317,2640,2674,2641,2655,2674,2640,2640,2641,2586,10329,10359,10345,10319,10345,10346,6572,6583,6564,6564,6573,6546,6548,6550,6566,6563,6566,6550,6563,6546,6573,6548,6566,6565,6587,6576,6560,6588,6558,6576,6587,6560,6578,6578,6565,6580,10244,10207,10212,10245,10208,10207,10246,10230,10208,10247,10210,10230,5959,5932,5947,5947,5971,5972,5932,5935,5917,5999,5972,5971,10231,10248,10212,5905,5930,5906,5906,5932,5917,1490,1440,1489,1441,1440,1490,10234,10175,10217,10196,10234,10251,10236,10196,10251,10136,10137,10174,10213,10173,10174,10213,10193,10173,10232,10216,10193,10217,10195,10235,10195,10216,10232,10359,10329,10344,10372,10345,10359,10372,10346,10345,10346,10394,10403,6582,6573,6564,6580,6566,6563,6563,6573,6581,6580,6565,6566,6587,6594,6576,6577,6558,6588,6595,6588,6576,6587,6578,6598,6598,6578,6580,10245,10207,10244,10212,10263,10244,10245,10246,10208,10264,10230,10246,10264,10247,10230,5932,5906,5947,5957,5971,5947,5998,5999,5971,5999,5998,6025,10212,10248,10263,5930,5905,5931,5945,5906,5930,1440,1442,1489,1440,1441,1378,10217,10253,10234,10234,10253,10251,10268,10236,10251,10194,10174,\r\n10137,10214,10213,10174,10213,10232,10193,10195,10252,10235,10235,10253,10217,10195,10232,10252,10359,10344,10370,10386,10372,10359,10346,10372,10387,10394,10346,10387,10403,10394,10411,6573,6582,6590,6582,6564,6591,6563,6581,6580,6581,6573,6590,6603,6594,6587,6594,6604,6576,6597,6577,6588,6595,6597,6588,6604,6595,6576,6599,6587,6598,6598,6580,6581,10275,10245,10244,10263,10276,10244,10246,10245,10277,10264,10246,10278,5957,5947,5906,5980,5971,5957,5980,5998,5971,6010,6025,5998,10280,10263,10248,5930,5931,5956,5906,5945,5957,5930,5958,5945,1440,1379,1442,10215,10194,10137,1378,1379,1440,10282,10251,10253,10268,10285,10236,10268,10251,10282,10194,10214,10174,10214,10249,10213,10213,10249,10232,10252,10266,10235,10235,10267,10253,10249,10252,10232,10385,10359,10370,10386,10387,10372,10359,10393,10386,10394,10387,10404,10394,10404,10411,6600,6590,6582,6582,6591,6601,6581,6590,6599,6594,6603,6610,6603,6587,6599,6594,6610,6604,6605,6577,6597,6611,6597,6595,6595,6604,6612,6599,6598,6581,10275,10277,10245,10244,10291,10275,6035,6007,6021,10291,10244,10276,10246,10277,10278,10292,10264,10278,5957,5968,5980,6010,5998,5980,6035,6010,6007,5930,5956,5958,5957,5945,5968,5958,5969,5945,1379,1388,1442,1442,1388,1416,1378,1305,1379,10253,10267,10282,10285,10268,10298,10268,10282,10299,10194,10233,10214,10214,10250,10249,10283,10266,10252,10266,10284,10235,10284,10267,10235,10249,10250,10252,10359,10385,10393,10386,10402,10387,10393,10401,10386,10410,10404,10387,10419,10411,10404,6600,6599,6590,6582,6607,6600,6601,6591,6608,6582,6601,6607,6615,6610,6603,6599,6600,6603,6618,6604,6610,6605,6597,6614,6611,6614,6597,6612,6611,6595,6612,6604,6619,10306,10277,10275,10306,10275,10291,6021,6007,5993,10307,10291,10276,10308,10278,10277,10278,10309,10292,5980,5968,5993,5980,6007,6010,5978,5958,5956,5979,5968,5945,5958,5981,5969,5945,5969,5982,1379,1316,1388,1416,1388,1354,1316,1379,1305,10282,10267,10297,10268,10299,10298,10285,10298,10314,10282,10297,10299,1416,1354,1387,10250,10214,10233,10284,10266,10283,10252,10250,10283,10267,10284,10296,\r\n10393,10385,10401,10409,10402,10386,10410,10387,10402,10386,10401,10409,10410,10418,10404,10419,10404,10430,6615,6600,6607,6601,6608,6616,6617,6607,6601,6615,6624,6610,6615,6603,6600,6619,6604,6618,6618,6610,6624,6621,6605,6614,6611,6625,6614,6626,6611,6612,6612,6619,6627,10277,10306,10320,10291,10307,10306,5980,5993,6007,5993,6020,6021,6021,6020,6048,10308,10321,10278,10308,10277,10320,10278,10321,10309,10309,10323,10292,5992,5993,5968,5978,5991,5958,5968,5979,5992,5945,5982,5979,5981,5958,5991,5981,5994,5969,5969,5995,5982,1388,1316,1317,1388,1353,1354,1305,1264,1316,10297,10267,10296,10298,10299,10326,10314,10298,10327,10326,10299,10297,1387,1354,1315,10250,10233,10265,10284,10283,10312,10295,10283,10250,10284,10313,10296,10385,10408,10401,10417,10402,10409,10417,10410,10402,10416,10409,10401,10428,10418,10410,10418,10429,10404,10430,10404,10429,6608,6622,6616,6617,6615,6607,6601,6616,6623,6617,6601,6623,6615,6617,6624,6619,6618,6624,6614,6625,6621,6611,6632,6625,6626,6633,6611,6626,6612,6634,6631,6627,6619,6612,6627,6634,10306,10332,10320,10307,10333,10306,5993,5992,6020,6020,6033,6048,10308,10334,10321,10308,10320,10334,10309,10321,10335,10336,10323,10309,6006,5992,5979,5979,5982,6006,5981,5991,5994,5994,6008,5969,5969,6008,5995,5982,5995,6009,1234,1317,1316,1388,1317,1353,1277,1354,1353,1278,1316,1264,10313,10297,10296,10298,10326,10342,10342,10327,10298,10297,10341,10326,1277,1315,1354,10265,10281,10250,10295,10312,10283,10325,10284,10312,10295,10250,10281,10325,10313,10284,10416,10401,10408,10409,10427,10417,10417,10428,10410,10416,10427,10409,10418,10428,10438,10429,10418,10439,6622,6636,6629,6622,6629,6616,6623,6616,6630,6617,6623,6631,6624,6617,6631,6624,6631,6619,6621,6625,6635,6611,6638,6632,6632,6635,6625,6626,6639,6633,6611,6633,6638,6640,6626,6634,6631,6623,6627,6627,6630,6634,10306,10333,10332,10320,10332,10334,10347,10333,10307,6020,5992,6019,6033,6020,6019,6048,6033,6058,10334,10348,10321,10321,10348,10335,10336,10309,10335,10350,10323,10336,5992,6006,6019,5982,6009,6006,6022,6008,5994,6023,5995,\r\n6008,5995,6024,6009,1234,1276,1317,1278,1234,1316,1317,1276,1353,1276,1277,1353,1109,1278,1264,10297,10313,10340,10356,10342,10326,16829,16830,16831,10341,10297,10340,10326,10341,10356,1277,1233,1315,10281,10265,10294,10337,10312,10295,10312,10337,10325,10311,10295,10281,10427,10435,10417,10436,10428,10417,10446,10438,10428,10418,10438,10439,6636,6675,6662,12212,12213,12214,6616,6629,6637,6616,6637,6630,6627,6623,6630,6632,6638,6644,6635,6632,6645,6640,6639,6626,6646,6633,6639,6644,6638,6633,6640,6634,6643,6630,6643,6634,10361,10332,10333,10334,10332,10362,10363,10333,10347,6006,6033,6019,6033,6047,6058,10334,10362,10348,10335,10348,10365,10336,10335,10350,10350,10364,10323,6006,6009,6034,6008,6022,6037,5995,6023,6024,6008,6037,6023,6038,6009,6024,1276,1234,1191,1234,1278,1109,1276,1189,1277,2301,2310,2305,10341,10340,10368,13951,13947,13949,1277,1190,1233,1314,1315,1233,10281,10294,10310,10337,10295,10324,10295,10311,10324,10310,10311,10281,10436,10417,10435,10446,10428,10436,10446,10454,10438,10438,10455,10439,6674,6662,6675,6636,6662,6642,6629,6642,6637,6630,6637,6643,6644,6645,6632,6640,6650,6639,6633,6646,6651,6639,6652,6646,6633,6651,6644,6643,6648,6640,10361,10362,10332,10333,10363,10361,6069,6058,6047,6047,6033,6006,10373,10348,10362,10348,10373,10365,10374,10335,10365,10375,10350,10335,10350,10376,10364,6009,6038,6034,6047,6006,6034,6024,6023,6050,6051,6023,6037,6024,6052,6038,1234,1109,1191,1189,1276,1191,1190,1277,1189,2295,2301,2305,13949,13947,13941,1148,1233,1190,1235,1314,1233,1314,1235,1352,10324,10311,10338,1355,1352,1235,10446,10461,10454,10462,10438,10454,10462,10455,10438,10463,10439,10455,6674,6668,6662,6662,6654,6642,6642,6648,6637,6643,6637,6648,6645,6644,6655,6648,6650,6640,6639,6650,6658,6646,6659,6651,6639,6658,6652,6646,6652,6660,6661,6644,6651,10388,10362,10361,10363,10389,10361,6059,6069,6047,10362,10388,10373,10365,10373,10374,10335,10374,10375,10390,10350,10375,10350,10390,10376,6059,6034,6038,6034,6059,6047,6023,6060,6050,6061,6024,6050,6023,6051,6060,6061,6052,6024,6038,6052,6059,1109,\r\n1108,1191,1108,1189,1191,1107,1190,1189,13941,13946,13949,1188,1233,1148,1107,1148,1190,1188,1235,1233,1318,1355,1235,10454,10461,10470,10462,10454,10471,10472,10455,10462,10463,10455,10472,6668,6674,6677,6668,6654,6662,6654,6648,6642,6661,6655,6644,6648,6654,6650,6650,6663,6658,6646,6664,6659,6651,6659,6665,6658,6666,6652,6660,6652,6666,6664,6646,6660,6661,6651,6667,10389,10388,10361,10363,10395,10389,6059,6081,6069,10388,10396,10373,10373,10397,10374,10374,10398,10375,10399,10390,10375,10390,10399,10376,6070,6050,6060,6061,6050,6070,6061,6073,6052,6052,6074,6059,1109,1061,1108,1189,1108,1107,13946,13941,13943,10454,10470,10477,10477,10471,10454,10462,10471,10472,6683,6677,6674,6668,6677,6672,6668,6663,6654,15943,15922,15896,6650,6654,6663,6658,6663,6666,6670,6659,6664,6671,6665,6659,6651,6665,6667,6672,6660,6666,6664,6660,6673,16014,15989,15943,10389,10395,10388,6069,6081,6089,6081,6059,6074,10388,10405,10396,10373,10396,10406,10373,10406,10397,10398,10374,10397,10407,10375,10398,10399,10375,10407,6083,6061,6070,6061,6083,6073,6052,6073,6074,1061,1109,986,985,1108,1061,1107,1108,985,10477,10470,10486,10477,10487,10471,10472,10471,10488,6683,6688,6677,6677,6682,6672,6672,6663,6668,15968,15922,15943,6672,6666,6663,6671,6659,6670,6664,6673,6670,6665,6671,6676,6665,6676,6667,6672,6673,6660,6667,6676,6681,15943,15989,15968,10388,10395,10412,6101,6089,6081,6081,6074,6095,10412,10405,10388,10405,10406,10396,10406,10413,10397,10413,10398,10397,6083,6094,6073,6074,6073,6094,985,1061,986,10477,10486,10492,10487,10477,10492,10488,10471,10487,6677,6688,6682,6672,6682,6673,15968,15967,15922,6671,6670,6678,6673,6679,6670,6680,6676,6671,6687,6681,6676,6681,6694,6699,6119,6089,6108,6108,6089,6101,6081,6095,6101,6074,6094,6095,10405,10412,10420,10406,10405,10421,10413,10406,10422,10398,10413,10423,6103,6094,6083,10497,10492,10486,10487,10492,10498,10488,10487,10499,6691,6682,6688,6673,6682,6679,15967,15968,16013,6678,6670,6684,6685,6671,6678,6679,6684,6670,6686,6676,6680,6680,6671,6685,6681,6687,6694,6687,6676,6686,6705,6699,6694,\r\n6119,6108,6130,6101,6113,6108,6101,6095,6113,6095,6094,6113,10420,10421,10405,10406,10421,10422,10431,10413,10422,10431,10423,10413,6103,6112,6094,10492,10497,10503,10498,10492,10503,10487,10498,10499,6691,6679,6682,16035,16013,15968,6678,6684,6689,6685,6678,6690,6679,6692,6684,6686,6680,6693,6680,6685,6693,6698,6694,6687,6686,6696,6687,6698,6705,6694,6130,6108,6141,6123,6108,6113,6123,6113,6094,10420,10440,10421,10421,10441,10422,10442,10431,10422,6112,6103,6122,6112,6123,6094,10508,10503,10497,10498,10503,10510,10499,10498,10511,6691,6692,6679,16013,16035,16057,6692,6689,6684,6690,6678,6689,6695,6685,6690,6693,6696,6686,6685,6697,6693,6696,6698,6687,6698,6712,6705,6123,6141,6108,6149,6130,6141,6149,6160,6130,10441,10421,10440,10442,10422,10441,6122,6103,6133,6122,6123,6112,10514,10503,10508,6713,6700,6721,6692,6706,6700,16079,16057,16035,16013,16057,16034,6692,6700,6689,6701,6690,6689,6685,6695,6697,6695,6690,6702,6693,6703,6696,6693,6697,6704,6709,6698,6696,6698,6720,6712,16103,16079,16035,6122,6141,6123,6149,6141,6144,6160,6149,6170,6178,6187,6160,6197,6187,6178,6133,6103,6134,6122,6133,6144,6735,6728,6713,6700,6713,6701,16102,16057,16079,16078,16034,16057,6701,6689,6700,6702,6690,6701,6707,6697,6695,6695,6702,6708,6703,6693,6704,6710,6696,6703,6704,6697,6711,6715,6698,6709,6696,6716,6709,6715,6720,6698,6720,6727,6712,6141,6122,6144,6153,6149,6144,6170,6149,6153,6160,6170,6178,6134,6152,6133,6153,6144,6133,6713,6728,6714,6713,6714,6701,16102,16078,16057,16116,16102,16079,16034,16078,16054,6702,6701,6714,6707,6711,6697,6707,6695,6708,6714,6708,6702,6704,6717,6703,6696,6710,6716,6703,6718,6710,6711,6719,6704,6715,6709,6724,6709,6716,6724,6729,6720,6715,16116,16079,16134,6178,6170,6153,6152,6164,6133,6133,6165,6153,6714,6728,6723,16078,16102,16054,16132,16102,16116,6719,6711,6707,6708,6722,6707,6714,6723,6708,6719,6717,6704,6725,6703,6717,6726,6716,6710,6725,6718,6703,6726,6710,6718,6730,6715,6724,6731,6724,6716,6738,6720,6729,6739,6729,6715,6738,6743,6720,6164,6152,6173,6133,6164,6165,16102,16100,16054,16102,16132,\r\n16100,16153,16132,16116,6719,6707,6722,6723,6722,6708,6731,6716,6726,6725,6734,6718,6734,6726,6718,6730,6739,6715,6724,6731,6730,16198,16182,16167,6729,6739,6744,16167,16153,16116,6731,6726,6740,6734,6740,6726,6745,6739,6730,6731,6746,6730,6729,6751,6756,16182,16153,16167,6750,6744,6739,6729,6744,6751,6731,6740,6748,6734,6749,6740,6745,6750,6739,6745,6730,6752,6731,6748,6746,6730,6746,6752,6755,6744,6750,6751,6744,6755,6740,6754,6748,6754,6740,6749,6750,6745,6757,6745,6752,6758,6759,6746,6748,6746,6758,6752,6755,6750,6764,6762,6748,6754,6745,6758,6757,6750,6757,6764,6766,6746,6759,6762,6759,6748,6758,6746,6767,6771,6757,6758,6772,6764,6757,6767,6746,6766,6766,6759,6773,6759,6762,6773,6771,6758,6767,6771,6772,6757,6779,6767,6766,6780,6766,6773,6773,6762,6781,6782,6771,6767,6784,6772,6771,6786,6767,6779,6779,6766,6780,6780,6773,6781,6782,6784,6771,6782,6767,6786,6784,6785,6772,6782,6793,6784,6786,6793,6782,6795,6785,6784,6793,6797,6784,16820,16823,16821,6797,6795,6784,7733,7727,7741,7727,7733,7717,3681,3680,3712,16832,16833,16834,7718,7717,7733,7727,7717,7702,3680,3711,3712,3712,3737,3752,3794,3752,3786,7717,7718,7703,7733,7734,7718,7702,7717,7703,3698,3711,3680,3712,3711,3737,3737,3751,3752,3786,3752,3774,13773,13766,13760,7703,7718,7710,7718,7734,7726,7702,7703,7690,3698,3729,3711,3698,3680,3662,3711,3729,3737,3751,3737,3729,3751,3774,3752,13766,13774,13755,13766,13754,13760,7718,7726,7710,7703,7710,7696,7726,7734,7739,7703,7696,7690,3728,3729,3698,3697,3698,3662,3751,3729,3759,3774,3751,3785,13767,13755,13774,13755,13754,13766,13748,13760,13754,7716,7710,7726,7695,7696,7710,7739,7724,7726,7690,7696,7679,3749,3729,3728,3697,3728,3698,3759,3729,3749,3775,3751,3759,13787,13784,13778,13767,13774,13778,13767,13761,13755,13755,13743,13754,13743,13748,13754,7716,7695,7710,7724,7716,7726,7695,7679,7696,7739,7740,7724,7679,7686,7690,3749,3728,3750,3710,3728,3697,3759,3749,3772,3759,3787,3775,13778,13784,13779,13767,13778,13768,13761,13767,13768,13749,13755,13761,13743,13755,13749,13748,13743,13736,7716,7709,7695,7716,7724,\r\n7709,7695,7689,7679,7725,7724,7740,7679,7671,7686,3728,3736,3750,3750,3772,3749,3736,3728,3710,3772,3784,3759,3787,3759,3784,13788,13779,13784,13778,13779,13768,13756,13761,13768,13749,13761,13750,13743,13749,13732,13743,13729,13736,7701,7695,7709,7725,7709,7724,7701,7689,7695,7679,7689,7678,7746,7725,7740,7665,7671,7679,3750,3736,3760,3750,3773,3772,3772,3773,3784,3787,3784,3801,13788,13785,13779,13769,13768,13779,13750,13761,13756,13756,13768,13769,13750,13732,13749,13743,13732,13729,13714,13736,13729,7709,7715,7701,7725,7715,7709,7689,7701,7693,7678,7689,7677,7679,7678,7665,7725,7746,7738,3760,3736,3761,3773,3750,3760,3784,3773,3800,3800,3801,3784,13785,13782,13779,13769,13779,13782,13756,13744,13750,13769,13762,13756,13737,13732,13750,13716,13729,13732,13716,13714,13729,7701,7715,7706,7723,7715,7725,7701,7706,7693,7689,7693,7677,7678,7677,7664,7664,7665,7678,13693,13691,13714,7725,7738,7723,3773,3760,3761,8806,8808,8739,8806,8772,8842,8842,8772,8841,8840,8901,8841,13756,13751,13744,13737,13750,13744,13762,13751,13756,13737,13730,13732,13716,13732,13724,13693,13714,13716,7723,7706,7715,7694,7693,7706,7677,7693,7688,7677,7670,7664,13693,13680,13691,7723,7738,7730,8774,8739,8808,8806,8739,8738,8772,8806,8738,8771,8841,8772,8840,8841,8771,13744,13751,13738,13723,13737,13744,8843,8840,8773,13737,13723,13730,13730,13724,13732,13716,13724,13705,13716,13692,13693,7723,7730,7706,7694,7688,7693,7706,7707,7694,7685,7677,7688,7685,7670,7677,7664,7670,7660,13693,13669,13680,13691,13680,13668,7738,7745,7730,8772,8738,8703,8771,8772,8703,8771,8805,8840,8807,8876,8843,13723,13744,13738,8805,8773,8840,8807,8843,8773,13730,13723,13705,13730,13705,13724,13705,13692,13716,13692,13669,13693,7706,7730,7721,7694,7685,7688,7721,7707,7706,7700,7694,7707,3326,3294,3315,3305,3293,3315,13669,13660,13680,13680,13659,13668,7730,7745,7744,8704,8771,8703,8771,8704,8805,8804,8876,8807,13731,13723,13738,8704,8773,8805,8807,8773,8737,13723,13704,13705,13705,13681,13692,13669,13692,13681,7721,7730,7736,7685,7694,7700,7721,7722,7707,7713,7700,7707,\r\n7685,7700,7708,3294,3305,3315,3270,3293,3305,13669,13648,13660,13680,13660,13659,13668,13659,13647,7745,7752,7744,7736,7730,7744,8737,8804,8807,13715,13723,13731,8737,8773,8704,13723,13715,13704,13705,13704,13681,13681,13648,13669,7721,7736,7722,7713,7707,7722,7713,7714,7700,7708,7700,7714,3294,3270,3305,3271,3293,3270,13660,13648,13635,13660,13635,13659,13659,13635,13647,7745,7754,7752,7749,7744,7752,7736,7744,7749,8769,8804,8737,8838,8804,8769,13689,13704,13715,13689,13681,13704,13689,13648,13681,7722,7736,7743,7713,7722,7732,7714,7713,7731,3306,3281,3294,3294,3281,3270,3248,3271,3270,13648,13624,13635,13647,13635,13603,7754,7756,7752,7752,7753,7749,7736,7749,7743,8803,8838,8769,13715,13713,13689,13689,13678,13648,7722,7743,7737,7732,7722,7737,13586,13572,13540,13526,13556,13540,3306,3282,3281,3270,3281,3257,3256,3271,3248,3248,3270,3257,13646,13624,13648,13624,13603,13635,7752,7756,7753,7753,7750,7749,7743,7749,7750,8838,8803,8875,13702,13689,13713,13678,13689,13702,13667,13648,13678,7737,7743,7750,13555,13540,13572,13492,13526,13540,3258,3281,3282,3258,3257,3281,3256,3248,3234,3241,3248,3257,13624,13646,13625,13648,13667,13646,13624,13615,13603,13603,13583,13614,7755,7750,7753,8839,8875,8803,13702,13690,13678,13667,13678,13690,13555,13570,13524,13555,13525,13540,13492,13510,13526,13540,13525,13492,3258,3282,3273,3258,3241,3257,3248,3241,3234,13658,13625,13646,13624,13625,13615,13667,13658,13646,13615,13582,13603,13582,13583,13603,13570,13583,13553,8770,8839,8803,8839,8837,8900,13690,13679,13667,13553,13524,13570,13555,13524,13525,13510,13492,13480,13507,13492,13525,3273,3249,3258,3249,3241,3258,3241,3229,3234,13625,13658,13649,13604,13615,13625,13667,13679,13658,13615,13604,13582,13583,13582,13553,8839,8770,8837,8836,8900,8837,13703,13679,13690,13553,13523,13524,13507,13525,13524,13492,13465,13480,13510,13480,13509,13507,13465,13492,3273,3272,3249,3249,3235,3241,3241,3235,3229,3234,3229,3222,13670,13649,13658,13636,13625,13649,13604,13625,13636,13679,13670,13658,13582,13604,13584,13569,13553,13582,13695,13679,\r\n13703,13553,13569,13523,13524,13523,13490,13507,13524,13490,13465,13426,13480,13491,13509,13480,13490,13465,13507,3249,3272,3250,3250,3235,3249,3229,3235,3223,3229,3213,3222,13649,13670,13671,13661,13636,13649,13626,13604,13636,13679,13695,13670,13604,13605,13584,13569,13582,13584,13523,13569,13554,13490,13523,13506,13465,13453,13426,13426,13491,13480,3297,3285,3272,13490,13479,13465,3260,3250,3272,3236,3235,3250,3235,3236,3223,3229,3223,3213,13661,13649,13671,13636,13661,13662,13626,13605,13604,13626,13636,13650,13605,13585,13584,13584,13554,13569,13523,13554,13539,13523,13539,13506,13506,13479,13490,13453,13465,13479,13443,13426,13453,13426,13508,13491,3285,3297,3296,3272,3285,3260,3242,3250,3260,3250,3242,3236,3230,3223,3236,3213,3223,3218,13682,13661,13671,6808,6804,6801,13662,13650,13636,13626,13627,13605,13627,13626,13650,13605,13606,13585,13584,13585,13554,13554,13571,13539,13494,13506,13539,13506,13493,13479,13453,13479,13454,13443,13413,13426,13443,13453,13454,3327,3316,3296,3260,3285,3296,3259,3242,3260,3242,3230,3236,3218,3223,3230,6808,6818,6814,6814,6804,6808,6802,6801,6804,6806,6801,6803,13606,13605,13627,6816,6806,6812,13589,13585,13606,13585,13571,13554,13558,13539,13571,13506,13494,13493,13527,13494,13539,13493,13454,13479,13443,13427,13413,13426,13413,13399,13454,13427,13443,3296,3316,3309,3284,3260,3296,3259,3243,3242,3260,3284,3259,3242,3243,3230,3218,3230,3231,6827,6814,6818,6809,6804,6814,6800,6801,6802,6809,6802,6804,6803,6801,6800,6812,6806,6803,13608,13606,13627,6824,6816,6812,13589,13571,13585,13589,13606,13608,13527,13539,13558,13589,13558,13571,13481,13493,13494,13527,13511,13494,13481,13454,13493,13413,13427,13400,13413,13374,13399,13454,13444,13427,13399,13374,13373,3296,3309,3284,3243,3259,3274,3284,3283,3259,3231,3230,3243,6829,6814,6827,6820,6809,6814,6800,6802,6805,6802,6809,6810,6803,6800,6807,6807,6812,6803,6832,6824,6812,13595,13589,13608,13557,13527,13558,13589,13595,13558,13494,13466,13481,13527,13541,13511,13494,13511,13466,13455,13454,13481,13427,13401,13400,13413,13400,13374,\r\n13455,13444,13454,13427,13444,13401,13374,13346,13373,13346,13356,13373,3283,3274,3259,3243,3274,3261,3284,3308,3283,3243,3251,3231,6829,6820,6814,9001,8962,8978,6819,6809,6820,6802,6810,6805,6811,6800,6805,6810,6809,6819,6813,6807,6800,6807,6817,6812,6843,6824,6832,6832,6812,6826,13527,13557,13541,13587,13557,13558,13587,13558,13595,13481,13466,13455,13541,13528,13511,13495,13466,13511,13400,13401,13386,13386,13374,13400,13444,13455,13428,13401,13444,13428,13374,13357,13346,13346,13310,13356,3283,3295,3274,3261,3274,3275,3251,3243,3261,13272,13326,13310,3262,3231,3251,6829,6836,6820,6829,6848,6836,6819,6820,6835,6810,6815,6805,6813,6800,6811,6811,6805,6815,6810,6819,6828,6813,6817,6807,6817,6826,6812,13607,13595,13616,6826,6846,6832,13573,13541,13557,13587,13588,13557,13607,13587,13595,13445,13455,13466,13559,13528,13541,13495,13511,13528,13470,13466,13495,13386,13401,13375,13374,13386,13357,13428,13455,13445,13414,13401,13428,13357,13327,13346,13346,13311,13310,3295,3283,3307,13325,13345,13309,3251,3261,3275,13272,13310,13273,3276,3262,3251,6836,6835,6820,9000,9018,8978,6819,6835,6828,6810,6821,6815,6822,6813,6811,6823,6811,6815,6828,6821,6810,6817,6813,6825,6817,6833,6826,6853,6832,6846,6846,6826,6845,13573,13559,13541,13573,13557,13588,13587,13607,13588,13466,13470,13445,13560,13528,13559,13495,13528,13512,13495,13512,13470,13414,13375,13401,13386,13375,13358,13386,13358,13357,13415,13428,13445,13428,13402,13414,13357,13358,13327,13327,13311,13346,13273,13310,13311,13272,13288,13309,13288,13325,13309,3251,3275,3286,13240,13272,13273,7460,7431,7467,6836,6854,6835,6864,6854,6836,6835,6847,6828,6821,6830,6815,6825,6813,6822,6822,6811,6831,6823,6831,6811,6823,6815,6830,6837,6821,6828,6817,6825,6833,6845,6826,6833,6853,6846,6863,6846,6845,6862,13573,13590,13559,13573,13588,13596,13596,13588,13607,13445,13470,13447,13542,13528,13560,13560,13559,13590,13542,13512,13528,13470,13512,13482,13414,13402,13375,13358,13375,13347,13415,13402,13428,13445,13417,13415,13358,13328,13327,13311,13327,13290,13311,13290,13273,13288,\r\n13272,13253,13288,13343,13325,7467,7477,7460,13253,13272,13240,13273,13252,13240,7460,7452,7431,6854,6847,6835,9017,9037,9000,6849,6828,6847,6838,6830,6821,6839,6825,6822,6831,6840,6822,6823,6841,6831,6823,6830,6842,6837,6838,6821,6837,6828,6849,6844,6833,6825,6844,6845,6833,6863,6846,6862,6853,6863,6870,6862,6845,6861,12246,12253,12250,13470,13456,13447,13447,13417,13445,12241,12234,12245,12241,12246,12228,13513,13512,13542,13513,13482,13512,13470,13482,13456,13402,13387,13375,13347,13375,13359,13358,13347,13328,13402,13415,13387,13415,13417,13406,13292,13327,13328,13327,13292,13290,13290,13252,13273,13271,13288,13253,13288,13323,13343,13203,13253,13240,13219,13240,13252,13342,13323,13307,7431,7452,7445,6854,6865,6847,9037,9017,9036,6849,6847,6866,6850,6830,6838,6839,6844,6825,6839,6822,6840,6831,6851,6840,6823,6842,6841,6831,6841,6851,6852,6842,6830,6837,6855,6838,6856,6837,6849,6844,6861,6845,6863,6862,6876,6870,6863,6877,12215,12216,12217,12246,12250,12228,13447,13456,13430,13447,13429,13417,12241,12228,12234,12233,12245,12234,13513,13542,13543,13496,13482,13513,13482,13467,13456,13387,13359,13375,13359,13329,13347,13347,13293,13328,13415,13406,13387,13417,13388,13406,13292,13328,13293,13290,13292,13255,13290,13255,13252,13307,13288,13271,13271,13253,13239,13288,13307,13323,13239,13253,13203,13219,13203,13240,13252,13238,13219,13342,13307,13344,13385,13342,13372,6865,6866,6847,8999,9036,9017,6856,6849,6866,6852,6830,6850,6857,6850,6838,12235,12224,12230,6840,6858,6839,6840,6851,6859,6842,6860,6841,6841,6860,6851,16835,16836,16837,6856,6855,6837,6838,6855,6857,12230,12224,12217,12215,12218,12216,6877,6863,6876,12215,12217,12219,13446,13430,13456,13430,13429,13447,13417,13429,13405,12234,12228,12223,12233,12234,12223,13530,13513,13543,13496,13467,13482,13530,13496,13513,13456,13467,13446,13378,13359,13387,13359,13349,13329,13347,13329,13293,13406,13378,13387,13417,13405,13388,13406,13388,13378,13292,13293,13275,13255,13292,13275,13252,13255,13243,13307,13271,13324,13239,13289,13271,13239,13203,13220,13219,13184,\r\n13203,13252,13243,13238,13238,13182,13219,13344,13307,13324,13372,13342,13344,13385,13372,13398,9036,9052,9063,8999,9052,9036,6872,6856,6866,16841,16836,16844,6857,6867,6850,6840,6859,6858,6859,6851,6868,16835,16837,16839,6869,6851,6860,16838,16837,16836,6856,6871,6855,6857,6855,6867,12224,12221,12217,12220,12218,12215,12228,12218,12223,12219,12217,12221,12215,12219,12222,13430,13446,13416,13429,13430,13403,13429,13403,13405,12227,12233,12223,12233,12227,12239,13496,13497,13467,13529,13496,13530,13467,13469,13446,13359,13378,13349,13330,13329,13349,13312,13293,13329,13388,13405,13377,13388,13361,13378,13293,13256,13275,13255,13275,13244,13243,13255,13206,7500,7501,7518,7527,7510,7517,13308,13271,13289,13169,13220,13203,13184,13219,13182,13184,13169,13203,13202,13238,13243,13202,13182,13238,7493,7501,7482,7481,7493,7475,7453,7481,7475,9076,9063,9052,9052,8999,9035,6872,6871,6856,16838,16836,16841,6873,6850,6867,6859,6874,6858,6869,6868,6851,6875,6859,6868,16837,16842,16839,16845,16847,16839,16837,16838,16840,6871,6878,6855,6879,6867,6855,12224,12225,12221,12220,12223,12218,12220,12215,12222,12221,12225,12219,12219,12226,12222,13416,13446,13431,13430,13416,13403,13377,13405,13403,12227,12223,12220,12240,12239,12227,13529,13497,13496,13497,13469,13467,13529,13530,13561,13457,13446,13469,13378,13361,13349,13329,13330,13312,13330,13349,13313,13312,13276,13293,13388,13377,13361,13276,13256,13293,13275,13256,13244,13206,13255,13244,13205,13243,13206,7500,7482,7501,7517,7510,7502,7500,7517,7502,7519,7510,7528,13182,13153,13184,13169,13184,13153,13224,13202,13243,13202,13183,13182,7475,7493,7482,7453,7475,7466,9062,9076,9052,9062,9052,9035,9083,9101,9076,6887,6873,6883,6873,6867,6880,6875,6874,6859,6868,6869,6881,6875,6868,6882,16843,16842,16837,16845,16839,16842,6869,6884,6881,6892,6887,6889,16840,16843,16837,9109,9129,9101,6879,6855,6878,6867,6879,6880,12220,12222,12229,12219,12225,12231,12219,12231,12226,12232,12222,12226,13457,13431,13446,13404,13416,13431,13376,13403,13416,13377,13403,13376,12229,12227,12220,12229,12240,\r\n12227,13529,13499,13497,13497,13499,13469,13544,13529,13561,13457,13469,13483,13313,13349,13361,13330,13277,13312,13330,13313,13277,13276,13312,13277,13361,13377,13348,13256,13276,13245,13244,13256,13225,13206,13244,13225,13205,13224,13243,13205,13206,13172,7500,7483,7482,7494,7502,7510,7500,7502,7483,7519,7503,7510,13138,13167,13169,13182,13152,13153,13138,13169,13153,13190,13202,13224,13183,13202,13168,13182,13183,13152,7482,7466,7475,7453,7466,7442,9083,9076,9062,9035,9060,9062,9109,9101,9083,6873,6880,6883,6883,6889,6887,12243,12236,12225,6882,6868,6881,12243,12252,12248,16843,16845,16842,12267,12263,12261,16854,16855,16856,16840,16846,16843,9128,9129,9109,17847,17848,17849,6879,6885,6880,12232,12229,12222,12236,12231,12225,12237,12226,12231,12232,12226,12238,13457,13432,13431,13404,13376,13416,13407,13404,13431,13377,13376,13348,12242,12240,12229,13544,13499,13529,13499,13483,13469,13562,13544,13561,13483,13468,13457,13348,13313,13361,13313,13294,13277,13277,13245,13276,13256,13245,13225,13173,13206,13225,13190,13224,13205,13172,13206,13173,13205,13172,13171,7482,7483,7466,7494,7483,7502,7494,7510,7503,13167,13150,13136,13167,13138,13150,13153,13152,13122,13153,13122,13138,13190,13168,13202,13183,13168,13152,7466,7459,7442,9083,9062,9060,9060,9035,9051,9085,9109,9083,6886,6883,6880,6886,6889,6883,12248,12236,12243,12257,12252,12261,12254,12248,12252,16843,16849,16845,12257,12261,12263,12308,12301,12304,16856,16857,16854,16840,16848,16846,16843,16846,16849,9109,9100,9128,6890,6888,6879,6885,6879,6888,16871,16864,16867,12232,12242,12229,12236,12237,12231,12237,12238,12226,12232,12238,12244,13457,13468,13432,13407,13431,13432,13404,13362,13376,13404,13407,13362,13360,13348,13376,13544,13531,13499,13499,13514,13483,13544,13562,13531,13483,13498,13468,13348,13331,13313,13313,13331,13294,13277,13294,13257,13277,13257,13245,13207,13225,13245,13173,13225,13207,13190,13205,13171,13141,13172,13173,13171,13172,13142,7476,7466,7483,7476,7483,7494,7484,7494,7503,13118,13136,13150,13150,13138,13108,13120,13122,13152,13138,\r\n13122,13108,13190,13158,13168,13120,13152,13168,7466,7476,7459,7451,7442,7459,9085,9083,9060,9051,9074,9060,9109,9085,9100,16861,16867,16864,16861,16859,16856,12248,12247,12236,12252,12257,12254,12248,12254,12256,12263,12264,12257,12301,12298,12304,16856,16858,16857,12301,12303,12295,16848,16850,16846,9128,9100,9144,6885,6888,6891,16875,16864,16871,6899,6902,6895,12237,12236,12247,12249,12238,12237,6893,6894,6895,13458,13432,13468,13418,13407,13432,13362,13360,13376,13389,13362,13407,13348,13360,13331,13531,13514,13499,13498,13483,13514,6903,6899,6897,13498,13484,13468,13314,13294,13331,13257,13294,13314,13245,13257,13226,13226,13207,13245,13173,13207,13191,13171,13158,13190,13141,13142,13172,13173,13159,13141,13140,13171,13142,7494,7484,7476,13090,13136,13118,13119,13118,13150,13119,13150,13108,13120,13096,13122,13122,13096,13108,13168,13158,13127,13168,13151,13120,7459,7476,7484,13046,13074,13048,9074,9085,9060,9074,9051,9084,9085,9074,9100,16861,16864,16859,16858,16856,16859,12251,12247,12248,12257,12262,12254,12260,12256,12254,12248,12256,12251,12264,12262,12257,12301,12295,12298,16851,16848,16852,16860,16857,16858,12295,12303,12307,16850,16848,16851,9127,9144,9100,9159,9144,9127,16872,16864,16875,6899,6895,6897,12237,12247,12251,6896,6894,6893,12249,12237,12251,6897,6895,6894,13433,13432,13458,13458,13468,13484,13389,13407,13418,13418,13432,13433,13360,13362,13331,13362,13389,13379,6903,6897,6907,6911,6916,6907,6916,6921,6926,13331,13350,13314,13257,13314,13295,13258,13226,13257,13207,13226,13191,13159,13173,13191,13171,13140,13158,13141,13110,13142,13141,13159,13128,13140,13142,13126,13090,13118,13091,13119,13105,13118,13119,13108,13093,13120,13094,13096,13108,13096,13079,13127,13158,13140,13168,13127,13151,13120,13151,13137,13090,13048,13074,13046,13048,13034,9084,9099,9074,9074,9112,9100,16864,16865,16859,16859,16862,16858,12260,12254,12262,12260,12259,12256,12259,12251,12256,12287,12298,12295,16860,16858,16863,12312,12295,12307,16850,16851,16853,9127,9100,9112,9159,9127,9160,16864,16872,16865,16875,16881,\r\n16872,6894,6896,6898,12249,12251,12255,6894,6900,6897,6959,6950,6940,6940,6950,6926,13408,13389,13418,13408,13418,13433,13362,13350,13331,13389,13408,13379,13362,13379,13350,6897,6904,6907,6921,6916,6911,6904,6911,6907,6926,6921,6932,13314,13350,13332,13295,13314,13332,13257,13295,13258,13226,13258,13227,13227,13191,13226,13159,13191,13208,13110,13141,13128,13126,13142,13110,13159,13170,13128,13109,13140,13126,13118,13105,13091,13075,13090,13091,13119,13093,13105,13079,13093,13108,13120,13137,13094,13094,13063,13096,13063,13079,13096,13127,13140,13109,13127,13121,13151,13137,13151,13121,13075,13048,13090,13048,13021,13034,9099,9112,9074,16859,16865,16862,16858,16862,16863,12266,12260,12262,12266,12259,12260,12259,12258,12251,12291,12287,12295,16866,16860,16863,16880,16883,16866,12282,12270,12287,12262,12270,12266,9127,9112,9145,9127,9145,9160,16872,16873,16865,16872,16881,16884,6896,6901,6898,6894,6898,6900,12255,12251,12258,6904,6897,6900,6951,6959,6940,6940,6926,6932,6970,6984,6959,13390,13379,13408,13363,13350,13379,6921,6911,6912,6904,6912,6911,6932,6921,6939,13350,13363,13332,13333,13295,13332,13295,13296,13258,13227,13258,13254,13208,13191,13227,13192,13159,13208,13110,13128,13100,13126,13110,13081,13159,13192,13170,13170,13155,13128,13109,13126,13081,13105,13050,13091,13075,13091,13076,13105,13093,13050,13078,13093,13079,13094,13137,13121,13063,13094,13064,13063,13052,13079,13127,13109,13099,13121,13127,13099,13048,13075,13047,13048,13047,13021,13021,13008,13034,9112,9099,9126,16868,16862,16865,16863,16862,16869,12266,12269,12259,12265,12258,12259,12291,12282,12287,16870,16866,16863,16880,16866,16874,12278,12270,12282,12266,12270,12272,9145,9112,9143,9187,9145,9171,16868,16865,16873,6898,6901,6905,6898,6906,6900,6901,6909,6905,6904,6900,6908,6970,6959,6951,6932,6951,6940,6996,6984,6970,13363,13379,13390,6921,6912,6922,6904,6908,6912,6921,6931,6939,6949,6932,6939,13363,13364,13332,13296,13295,13333,13333,13332,13364,13258,13296,13254,13222,13227,13254,13222,13208,13227,13192,13208,13222,13100,13128,13123,13110,\r\n13100,13081,13192,13187,13170,13187,13155,13170,13155,13123,13128,13109,13081,13099,13050,13076,13091,13047,13075,13076,13050,13093,13078,13052,13078,13079,13094,13121,13095,13094,13095,13064,13064,13051,13063,13038,13052,13063,13099,13095,13121,13021,13047,13035,13021,12995,13008,13020,13034,13008,9126,9099,9142,9112,9126,9143,16862,16868,16869,16870,16863,16869,12266,12272,12269,12259,12269,12265,12265,12268,12258,12291,12286,12282,16870,16874,16866,16882,16880,16874,12278,12276,12270,12282,12286,12278,12270,12276,12272,9145,9143,9171,16877,16868,16873,6898,6905,6910,6898,6910,6906,6906,6908,6900,6970,6951,6949,6949,6951,6932,6993,6996,6970,6996,6993,7015,6922,6912,6917,6921,6922,6931,6912,6908,6917,6931,6948,6939,6958,6949,6939,7015,7024,7032,13296,13333,13320,13364,13380,13333,13296,13291,13254,13222,13254,13241,13192,13222,13187,13123,13097,13100,13054,13081,13100,13187,13185,13155,13155,13154,13123,13067,13099,13081,13050,13047,13076,13050,13078,13062,13052,13062,13078,13067,13064,13095,13029,13051,13064,13038,13063,13051,13027,13052,13038,13067,13095,13099,13050,13035,13047,12995,13021,13035,12995,12981,13008,12994,13020,13008,9126,9142,9157,9143,9126,9158,16868,16876,16869,16869,16878,16870,12275,12269,12272,12271,12265,12269,6905,6918,6913,16870,16879,16874,16882,16874,16879,12278,12281,12276,12278,12286,12281,12272,12276,12275,9143,9158,9171,16868,16877,16876,9186,9171,9158,6905,6913,6910,6914,6906,6910,6915,6908,6906,6983,6970,6949,6970,6983,6993,7024,7015,6993,6922,6917,6927,6933,6931,6922,6915,6917,6908,6948,6931,6941,6958,6939,6948,6949,6958,6971,7031,7032,7024,7046,7066,7072,13296,13320,13291,7032,7031,7046,13254,13291,13274,13241,13254,13274,13187,13222,13241,13124,13097,13123,13100,13097,13080,13054,13067,13081,13054,13100,13080,13187,13221,13185,13185,13154,13155,13124,13123,13154,13062,13037,13050,13027,13062,13052,13067,13029,13064,13029,13026,13051,13038,13051,13026,13038,13012,13027,13025,13035,13050,13010,12995,13035,12965,12981,12995,13008,12981,12994,13020,12994,13007,9157,9158,9126,16876,\r\n16878,16869,16878,16879,16870,12269,12275,12274,12271,12273,12265,12269,12274,12271,16882,16879,16888,12281,12285,12276,16882,16888,16890,12276,12280,12275,16877,16885,16876,9186,9158,9204,6914,6910,6913,6914,6919,6906,6920,6915,6906,6949,6971,6983,6995,6993,6983,6993,7014,7024,6925,6927,6917,6933,6922,6927,6941,6931,6933,6925,6917,6915,6968,6948,6941,6948,6969,6958,6958,6982,6971,7031,7024,7014,7046,7060,7066,13320,13285,13291,7045,7046,7031,13274,13291,13249,13274,13242,13241,13187,13241,13221,13097,13124,13098,13066,13080,13097,13067,13054,13029,13054,13080,13065,13221,13186,13185,13186,13154,13185,13156,13124,13154,13062,13027,13037,13037,13025,13050,13029,13001,13026,13038,13026,13012,13027,13012,12999,13010,13035,13025,12995,13010,12983,12949,12981,12965,12995,12983,12965,12949,12994,12981,12994,12964,13007,9158,9157,9185,16876,16886,16878,16878,16887,16879,12275,12279,12274,6923,6913,6928,12271,12274,12277,16879,16889,16888,16890,16895,16901,12276,12285,12280,16889,16890,16888,12283,12275,12280,16885,16886,16876,16894,16885,16898,6914,6913,6923,6924,6919,6914,6906,6919,6920,6920,6925,6915,6971,6995,6983,6993,6995,7014,6938,6927,6925,6941,6933,6927,6948,6968,6981,6941,6972,6968,6981,6969,6948,6969,6982,6958,6971,6982,6994,7014,7017,7031,7046,7045,7060,7066,7060,7071,13285,13249,13291,7035,7045,7031,13274,13249,13242,13241,13242,13221,13139,13098,13124,13097,13098,13066,13066,13053,13080,13039,13029,13054,13065,13080,13053,13054,13065,13039,13221,13223,13186,13186,13156,13154,13156,13139,13124,13027,13024,13037,13025,13037,13000,13014,13001,13029,13012,13026,13001,12999,13012,12985,13027,12999,13024,13011,13010,13025,12983,13010,12984,12949,12965,12936,12965,12983,12969,12994,12949,12964,16878,16886,16887,16879,16887,16889,12283,12279,12275,12279,12277,12274,17850,17851,17852,16895,16890,16889,16901,16895,16903,12285,12289,12280,12280,12290,12283,16891,16886,16885,6923,6924,6914,6924,6929,6919,6920,6919,6930,6925,6920,6930,6971,7005,6995,6995,7017,7014,6927,6938,6946,6938,6925,6930,6927,6952,6941,6968,6990,6981,\r\n6941,6960,6972,6972,6991,6968,6992,6969,6981,6992,6982,6969,6982,7004,6994,7005,6971,6994,7035,7031,7017,7060,7045,7059,7077,7071,7060,13285,13266,13249,7045,7035,7053,13242,13249,13215,13242,13204,13221,13125,13098,13139,13070,13066,13098,13066,13040,13053,13039,13014,13029,13039,13065,13053,13204,13223,13221,13223,13189,13186,13186,13188,13156,13139,13156,13157,13024,13000,13037,13000,13011,13025,13014,12987,13001,12985,13012,13001,12973,12999,12985,12999,12998,13024,13010,13011,12984,12951,12983,12984,12936,12965,12942,12917,12949,12936,12951,12969,12983,12969,12942,12965,12949,12948,12964,16886,16892,16887,16893,16889,16887,12283,12288,12279,12277,12279,12284,6923,6953,6942,16895,16889,16893,16900,16903,16895,12280,12289,12290,12294,12283,12290,16886,16891,16892,6923,6934,6924,6929,6924,6935,6919,6929,6936,6919,6937,6930,6995,7005,7017,6947,6946,6938,6927,6946,6952,6947,6938,6930,6960,6941,6952,6968,7002,6990,6981,6990,6992,6985,6972,6960,6991,6972,6985,7003,6968,6991,6982,6992,7004,7016,6994,7004,7016,7005,6994,7026,7035,7017,7045,7053,7059,7060,7059,7070,7083,7071,7077,7077,7060,7070,13266,13234,13249,7053,7035,7055,13234,13215,13249,13204,13242,13215,13125,13102,13098,13125,13139,13157,13066,13070,13042,13102,13070,13098,13066,13042,13040,13028,13053,13040,13002,13014,13039,13039,13053,13028,13204,13189,13223,13189,13188,13186,13156,13188,13157,13024,12998,13000,13011,13000,12984,13014,13002,12987,13001,12987,12971,12985,13001,12972,12968,12999,12973,12973,12985,12952,12999,12968,12998,12970,12951,12984,12905,12936,12942,12949,12917,12948,12936,12900,12917,12951,12919,12969,12969,12919,12942,16893,16887,16892,12288,12283,12292,12288,12284,12279,6923,6942,6934,16900,16895,16893,16903,16900,16907,12290,12289,12296,12294,12292,12283,12297,12294,12290,16891,16896,16892,6934,6943,6924,6935,6924,6943,6929,6935,6944,6929,6944,6936,6919,6936,6937,6937,6945,6930,7026,7017,7005,6946,6947,6966,6966,6952,6946,6957,6947,6930,6952,6973,6960,6968,7010,7002,7002,7011,6990,7012,6992,6990,6985,6960,6997,6985,7006,6991,7010,6968,\r\n7003,7009,7003,6991,7004,6992,7013,7023,7016,7004,7005,7016,7025,7026,7025,7035,7059,7053,7065,7059,7065,7070,7087,7083,7077,7070,7082,7077,13267,13234,13266,7055,7035,7040,7053,7055,7065,13199,13215,13234,13204,13215,13164,13114,13102,13125,13125,13157,13164,13042,13070,13057,13102,13086,13070,13016,13040,13042,13028,13040,13013,13002,13039,13028,13204,13164,13189,13189,13157,13188,12998,12970,13000,12970,12984,13000,12987,13002,12986,12953,12971,12987,13001,12971,12972,12952,12985,12972,12968,12973,12940,12952,12940,12973,12968,12970,12998,12970,12941,12951,12936,12905,12900,12942,12906,12905,12941,12919,12951,12942,12919,12906,16892,16899,16893,17853,17854,17855,12284,12288,12293,6942,6954,6934,16893,16902,16900,16900,16908,16907,12296,12297,12290,12294,12299,12292,12297,12300,12294,16899,16892,16896,6943,6934,6954,6955,6935,6943,6935,6955,6944,6945,6936,6944,6936,6945,6937,6945,6956,6930,7026,7005,7025,6957,6966,6947,6952,6966,6973,6967,6957,6930,6986,6960,6973,7010,7020,7002,7002,7021,7011,7012,6990,7011,6992,7012,7013,6997,6960,6986,7007,6985,6997,7006,6985,7000,6991,7006,7009,7003,7022,7010,7019,7003,7009,7013,7023,7004,7033,7016,7023,7034,7025,7016,7040,7035,7025,7070,7065,7076,7094,7083,7087,7077,7082,7087,7070,7076,7082,13235,13234,13267,7048,7055,7040,7065,7055,7069,13164,13215,13199,13199,13234,13235,13114,13086,13102,13125,13147,13114,13157,13189,13164,13125,13164,13147,13057,13070,13086,13042,13057,13031,13040,13016,13013,13042,13031,13016,13002,13028,13013,12986,13002,12974,12953,12987,12986,12953,12922,12971,12971,12920,12972,12952,12972,12920,12939,12968,12940,12952,12920,12940,12941,12970,12968,12883,12900,12905,12905,12906,12872,12941,12904,12919,12906,12919,12886,16902,16893,16899,17855,17854,17856,16900,16902,16908,12305,12296,12310,12297,12296,12302,12300,12299,12294,12297,12302,12300,16899,16896,16905,6943,6954,6961,6955,6943,6962,6955,6963,6944,6964,6945,6944,6956,6945,6964,6930,6956,6965,6979,6966,6957,6979,6973,6966,6967,6980,6957,6965,6967,6930,6986,6973,6979,7020,7010,7022,7021,7002,7020,\r\n7021,7029,7011,7012,7011,7029,7013,7012,7030,7008,6997,6986,7000,6985,7007,7008,7007,6997,6989,7006,7000,6989,7009,7006,7022,7003,7019,6999,7019,7009,7030,7023,7013,7034,7016,7033,7039,7033,7023,7040,7025,7034,7076,7065,7069,13302,13267,13319,7087,7082,7093,7082,7076,7081,13235,13267,13264,7062,7055,7048,7048,7040,7034,7069,7055,7067,13164,13199,13180,13199,13235,13213,13129,13086,13114,13114,13147,13146,13147,13164,13180,13057,13086,13082,13031,13057,13055,13016,12974,13013,13016,13031,13003,13002,13013,12974,12953,12986,12974,12953,12923,12922,12971,12922,12920,12941,12968,12939,12939,12940,12903,12920,12907,12940,12905,12872,12883,12885,12872,12906,12939,12904,12941,12886,12919,12904,12906,12886,12885,16906,16902,16899,6961,6954,6974,16902,16911,16908,12305,12302,12296,12313,12305,12310,17137,17138,17170,12300,12302,12306,16896,16909,16905,16905,16910,16899,6943,6961,6962,6962,6975,6955,6955,6976,6963,6964,6944,6963,6956,6964,6977,6965,6956,6978,6980,6979,6957,6967,6965,6980,7001,6986,6979,6999,7020,7022,6999,7021,7020,7021,7038,7029,7030,7012,7029,7001,7008,6986,7007,6965,7000,7008,6965,7007,6989,7000,6965,6999,7009,6989,6999,7022,7019,7030,7039,7023,7047,7034,7033,7039,7047,7033,7076,7069,7081,13302,13264,13267,7100,7087,7093,7093,7082,7091,7091,7082,7081,13264,13232,13235,7062,7067,7055,7061,7062,7048,7048,7034,7047,7080,7069,7067,13213,13180,13199,13235,13232,13213,13129,13111,13086,13114,13146,13129,13178,13146,13147,13147,13180,13178,13086,13111,13082,13055,13057,13082,13031,13055,13030,13016,13003,12974,13003,13031,13030,12953,12974,12923,12922,12923,12909,12922,12921,12920,12903,12940,12907,12904,12939,12903,12920,12887,12907,12883,12872,12839,12885,12853,12872,12886,12904,12870,12885,12886,12854,16902,16906,16911,16906,16899,16912,17154,17170,17138,16916,16908,16911,12302,12305,12309,12313,12309,12305,12315,12313,12310,17093,17138,17137,12302,12311,12306,17137,17113,17093,16905,16909,16910,16899,16910,16913,17114,17171,17154,6962,6987,6975,6976,6955,6975,6988,6963,6976,6977,6964,6963,6977,6978,6956,6965,\r\n6978,6989,6980,7001,6979,6980,6965,7001,7028,7021,6999,7028,7038,7021,7038,7043,7029,7029,7043,7030,7001,6965,7008,6999,6989,6978,7030,7044,7039,7039,7054,7047,7080,7081,7069,13302,13284,13264,7107,7100,7093,7106,7093,7091,7080,7091,7081,13264,13284,13232,7067,7062,7075,7073,7062,7061,7061,7048,7047,7086,7080,7067,13178,13180,13213,13213,13232,13197,13111,13129,13143,13160,13129,13146,13178,13197,13146,13083,13082,13111,13055,13082,13083,13056,13030,13055,13003,12975,12974,13003,13030,13015,12954,12923,12974,12909,12923,12889,12888,12922,12909,12922,12888,12921,12921,12887,12920,12871,12903,12907,12903,12870,12904,12871,12907,12887,12839,12872,12853,12853,12885,12854,12870,12854,12886,16906,16914,16911,16912,16899,16913,16912,16915,16906,17138,17114,17154,16921,16908,16916,16916,16911,16914,12311,12302,12309,12313,12314,12309,12313,12315,12316,17093,17114,17138,17065,17093,17113,16917,16910,16909,16918,16913,16910,17078,17115,17114,17116,17115,17094,6977,6963,6988,6998,6988,6976,6977,6988,6978,7028,6999,7018,7038,7028,7036,7043,7038,7050,7051,7030,7043,6988,6999,6978,7030,7051,7044,7039,7044,7052,7052,7054,7039,7047,7054,7061,13302,13303,13284,7107,7093,7106,7103,7106,7091,7080,7099,7091,13265,13232,13284,7062,7073,7075,7067,7075,7079,7074,7073,7061,7080,7086,7092,7086,7067,7079,13178,13213,13197,13232,13214,13197,13160,13143,13129,13130,13111,13143,13179,13160,13146,13179,13146,13197,13083,13111,13130,13055,13083,13056,13056,13041,13030,12975,13003,13015,12975,12954,12974,13041,13015,13030,12954,12943,12923,12923,12943,12889,12856,12909,12889,12856,12888,12909,12908,12921,12888,12921,12908,12887,12871,12870,12903,12871,12887,12855,12839,12853,12826,12853,12854,12827,12870,12838,12854,16906,16915,16914,16919,16912,16913,16920,16915,16912,16916,16925,16921,16914,16923,16916,17065,17048,17038,16993,17016,17004,17048,17016,17038,12315,12317,12316,17004,16982,16993,17093,17078,17114,17093,17065,17064,16918,16910,16917,16918,16922,16913,17115,17078,17094,17094,17079,17116,6999,6988,6998,17139,17116,17095,6999,6998,7018,\r\n7028,7018,7036,7036,7050,7038,7050,7056,7043,7051,7043,7056,7057,7044,7051,7058,7052,7044,7064,7054,7052,7061,7054,7064,13265,13284,13303,7113,7107,7106,7106,7103,7113,7103,7091,7099,7092,7099,7080,13232,13265,13233,7075,7073,7084,7079,7075,7084,7085,7073,7074,7064,7074,7061,7092,7086,7098,7079,7090,7086,13232,13233,13214,13179,13197,13214,13143,13160,13174,13130,13143,13144,13160,13179,13198,13083,13130,13112,13085,13056,13083,13056,13069,13041,12975,13015,13004,12954,12975,12943,13015,13041,13043,12889,12943,12924,12856,12889,12857,12855,12888,12856,12888,12855,12908,12887,12908,12855,12871,12837,12870,12828,12871,12855,12826,12853,12827,12813,12839,12826,12854,12838,12827,12870,12837,12838,16915,16923,16914,16919,16920,16912,16919,16913,16922,16920,16924,16915,16916,16923,16925,16925,16930,16921,17065,17038,17064,16993,17015,17016,17016,17015,17038,12317,12315,12318,16973,16982,16964,16973,16993,16982,17078,17093,17064,16918,16926,16922,17094,17078,17049,17094,17049,17079,17079,17095,17116,7037,6998,7042,7027,7018,6998,7018,7027,7036,17348,17366,17245,17330,17346,17348,7051,7056,7063,17438,17458,17399,7063,7057,7051,17476,17438,17457,13303,13304,13265,7107,7113,7120,7113,7103,7110,7099,7110,7103,7092,7105,7099,13265,13279,13233,7073,7088,7084,7084,7089,7079,7073,7085,7088,7074,7078,7085,7074,7064,7078,7086,7090,7098,7092,7098,7104,7079,7089,7090,13233,13198,13214,13179,13214,13198,13160,13193,13174,13143,13174,13144,13130,13144,13112,13160,13198,13193,13083,13112,13085,13069,13056,13085,13041,13069,13084,13015,13032,13004,12975,13004,12988,12943,12975,12955,13043,13041,13068,13015,13043,13032,12924,12943,12955,12889,12924,12890,12889,12890,12857,12840,12856,12857,12829,12855,12856,12828,12837,12871,12828,12855,12829,12826,12827,12800,12813,12826,12801,12827,12838,12812,12812,12838,12837,16915,16927,16923,16919,16928,16920,16922,16928,16919,16924,16920,16929,16915,16924,16927,16932,16925,16923,16932,16930,16925,16930,16937,16921,17037,17064,17038,17015,16993,16991,17038,17015,17037,16964,16937,16957,16973,16964,\r\n16957,16973,16991,16993,17078,17064,17049,16922,16926,16928,17049,17066,17079,17079,17066,17095,7027,6998,7037,17109,17095,17076,7027,7041,7036,7049,7036,7041,17245,17330,17348,17310,17346,17330,7068,7063,7056,17402,17438,17399,7057,7063,7068,17457,17438,17402,13265,13304,13279,7121,7120,7113,7113,7110,7118,7110,7099,7105,7105,7092,7104,13279,13259,13233,7095,7084,7088,7084,7097,7089,7085,7096,7088,17480,17442,17462,17442,17457,17402,7089,7098,7090,7109,7104,7098,13198,13233,13228,13193,13209,13174,13175,13144,13174,13161,13112,13144,13198,13228,13193,13085,13112,13101,13069,13085,13101,13084,13069,13101,13041,13084,13068,13004,13032,13017,12988,13004,12989,12975,12988,12955,13068,13058,13043,13043,13058,13032,12955,12925,12924,12890,12924,12925,12857,12890,12858,12840,12829,12856,12857,12830,12840,12811,12837,12828,12828,12829,12803,12800,12827,12812,12800,12801,12826,12785,12813,12801,12811,12812,12837,16931,16923,16927,16928,16933,16920,16920,16934,16929,16924,16929,16935,16936,16927,16924,16923,16938,16932,16942,16930,16932,16943,16937,16930,17037,17049,17064,17015,16991,17014,17014,17037,17015,16951,16957,16937,16957,16972,16973,16973,16972,16991,17049,17039,17066,17076,17095,17066,17132,17109,17089,17109,17076,17089,17132,17164,17189,17245,17189,17226,17245,17310,17330,17346,17310,17329,17329,17365,17346,17402,17399,17369,17369,17399,17365,13279,13304,13278,7120,7121,7126,7121,7113,7118,7118,7110,7116,7110,7105,7116,7105,7104,7115,13259,13279,13278,13259,13228,13233,7095,7097,7084,7101,7095,7088,7089,7097,7102,17480,17462,17495,7088,7096,7101,17442,17419,17462,17442,17402,17419,7089,7109,7098,7114,7104,7109,13193,13229,13209,13209,13175,13174,13144,13175,13161,13145,13112,13161,13193,13228,13229,13112,13131,13101,13084,13101,13113,13084,13087,13068,13044,13017,13032,13017,12989,13004,12989,12956,12988,12988,12976,12955,13068,13087,13058,13044,13032,13058,12976,12925,12955,12890,12925,12891,12890,12891,12858,12857,12858,12830,12840,12815,12829,12840,12830,12815,12828,12814,12811,12829,12815,12803,12828,12803,\r\n12802,12800,12812,12784,12800,12771,12801,12801,12771,12785,12811,12784,12812,16923,16931,16938,16939,16931,16927,16933,16934,16920,16935,16929,16934,16935,16940,16924,16936,16941,16927,16936,16924,16940,16938,16945,16932,16942,16949,16930,16932,16950,16942,16943,16951,16937,16943,16930,16949,17026,17049,17037,16992,17014,16991,17014,17026,17037,16951,16963,16957,16972,16957,16963,16992,16991,16972,17026,17039,17049,17039,17061,17066,17076,17066,17061,17132,17089,17131,17076,17046,17089,17132,17131,17164,17189,17164,17207,17189,17207,17226,17263,17245,17226,17245,17297,17310,17329,17310,17297,17329,17347,17365,17402,17369,17385,17369,17365,17347,13304,13297,13278,7121,7118,7126,7132,7120,7126,7125,7118,7116,7105,7115,7116,7104,7119,7115,13259,13278,13228,7101,7097,7095,7102,7097,7108,7089,7102,7109,17462,17460,17495,17495,17513,17525,17462,17419,17460,17385,17419,17402,7104,7114,7119,7114,7109,7117,13246,13209,13229,13209,13230,13175,13194,13161,13175,13112,13145,13131,13161,13131,13145,13260,13229,13228,13132,13101,13131,13132,13113,13101,13084,13113,13087,13017,13044,13018,13017,13005,12989,12956,12989,12957,12956,12976,12988,13087,13071,13058,13044,13058,13071,12976,12956,12925,12926,12891,12925,12891,12859,12858,12830,12858,12841,12804,12815,12830,12814,12828,12802,12787,12811,12814,12774,12803,12815,12802,12803,12788,12784,12771,12800,12785,12771,12761,12787,12784,12811,16944,16938,16931,16944,16931,16939,16939,16927,16941,16935,16946,16940,16936,16947,16941,16940,16948,16936,16938,16944,16945,16932,16945,16954,16949,16942,16955,16954,16950,16932,16950,16955,16942,16956,16951,16943,16943,16949,16956,16992,17003,17014,17026,17014,17003,16956,16963,16951,16972,16963,16981,16992,16972,16981,17026,17003,17039,17034,17061,17039,17061,17046,17076,17107,17131,17089,17089,17046,17074,17164,17131,17188,17207,17164,17225,17207,17244,17226,17263,17277,17245,17263,17226,17244,17297,17245,17277,17297,17347,17329,17385,17369,17331,17369,17347,17331,13304,13334,13297,13260,13278,13297,7125,7126,7118,13366,13334,13381,7125,7116,\r\n7115,7124,7115,7119,13260,13228,13278,7108,7097,7101,7111,7102,7108,7102,7112,7109,17513,17495,17460,17513,17542,17525,17419,17440,17460,17419,17385,17400,7119,7114,7122,7109,7112,7117,7114,7117,7123,13230,13209,13246,13260,13246,13229,13175,13230,13210,13161,13194,13176,13175,13210,13194,13161,13176,13131,13132,13131,13162,13132,13133,13113,13087,13113,13115,13044,13059,13018,13005,13017,13018,13005,12957,12989,12956,12957,12944,13087,13115,13071,13044,13071,13059,12926,12925,12956,12891,12926,12892,12859,12891,12892,12841,12858,12859,12841,12804,12830,12774,12815,12804,12786,12814,12802,12786,12787,12814,12774,12788,12803,12802,12788,12773,12784,12760,12771,12761,12771,12746,12760,12784,12787,16939,16952,16944,16939,16941,16953,16940,16946,16948,16947,16936,16948,16953,16941,16947,16945,16944,16958,16954,16945,16960,16949,16955,16956,16954,16962,16950,16955,16950,16962,16992,16981,17003,16956,16971,16963,16981,16963,16980,17034,17039,17003,17046,17061,17034,17131,17107,17108,17107,17089,17074,17046,17045,17074,17131,17151,17188,17164,17188,17206,17206,17225,17164,17207,17225,17243,17244,17207,17243,17263,17276,17277,17244,17276,17263,17277,17311,17297,17297,17331,17347,17368,17385,17331,13315,13297,13334,13297,13280,13260,7131,7126,7125,13351,13334,13366,7131,7134,7126,7115,7128,7125,7124,7128,7115,7122,7124,7119,17525,17542,17554,7102,7111,7112,17554,17568,17587,17460,17494,17513,17513,17524,17542,17419,17400,17440,17440,17478,17460,17368,17400,17385,7122,7114,7127,17628,17614,17642,17656,17642,17614,7114,7123,7127,13230,13246,13261,13280,13246,13260,13247,13210,13230,13211,13176,13194,13231,13194,13210,13131,13176,13162,13177,13132,13162,13163,13133,13132,13113,13133,13115,13018,13059,13072,13005,13018,12958,13005,12958,12957,12927,12944,12957,12956,12944,12926,13103,13071,13115,13059,13071,13088,12892,12926,12944,12892,12862,12859,12841,12859,12831,12841,12831,12804,12774,12804,12775,12786,12802,12773,12772,12787,12786,12762,12788,12774,12773,12788,12762,12760,12746,12771,12746,12734,12761,12760,12787,12772,16952,\r\n16939,16953,16944,16952,16959,16965,16958,16944,16945,16958,16960,16954,16960,16968,16956,16955,16970,16954,16968,16962,16955,16962,16970,17000,17003,16981,16956,16970,16971,16980,16963,16971,16981,16980,17000,17003,17025,17034,17034,17025,17046,17107,17075,17108,17151,17131,17108,17075,17107,17074,17045,17046,17025,17075,17074,17045,17190,17188,17151,17206,17188,17190,17242,17225,17206,17262,17243,17225,17243,17262,17244,17276,17296,17277,17276,17244,17296,17277,17328,17311,17311,17331,17297,17368,17331,17349,13315,13280,13297,13315,13334,13351,7128,7131,7125,13351,13366,13365,7134,7131,7137,7124,7130,7128,7122,7129,7124,17554,17542,17568,17587,17614,17628,17586,17587,17568,17478,17494,17460,17513,17494,17524,17524,17553,17542,17400,17439,17440,17440,17439,17478,17400,17368,17418,7122,7127,7129,17656,17614,17641,12323,12330,12326,13246,13281,13261,13247,13230,13261,13246,13280,13281,13231,13210,13247,13176,13211,13195,11644,11661,11627,13231,13248,13194,13176,13195,13162,13132,13177,13163,13195,13177,13162,13148,13133,13163,13103,13115,13133,11709,11722,11711,11715,11723,11709,11723,11715,11724,12957,12958,12959,12927,12892,12944,12927,12957,12959,13071,13103,13088,12892,12910,12862,12859,12862,12831,12804,12831,12805,12805,12775,12804,12775,12749,12774,12786,12773,12747,12786,12747,12772,12749,12762,12774,12748,12773,12762,12760,12721,12746,12746,12721,12734,12772,12747,12760,16952,16953,16966,16952,16967,16959,16965,16944,16959,16965,16974,16958,16960,16958,16975,16968,16960,16978,16968,16979,16962,16979,16970,16962,17000,17025,17003,16979,16971,16970,16990,16980,16971,17001,17000,16980,17075,17090,17108,17112,17151,17108,17045,17025,17024,17060,17075,17045,17190,17151,17153,17206,17190,17227,17242,17261,17225,17206,17227,17242,17262,17225,17261,17244,17262,17295,17296,17328,17277,17244,17295,17296,17345,17311,17328,17331,17311,17349,17368,17349,17384,13315,13281,13280,13335,13315,13351,7133,7131,7128,13365,13366,13391,13335,13351,13365,7133,7137,7131,7134,7137,7140,7130,7124,7129,7130,7133,7128,17553,17568,17542,\r\n17586,17614,17587,17553,17586,17568,17478,17511,17494,17494,17511,17524,17524,17541,17553,17418,17439,17400,17478,17439,17477,17420,17418,17368,12323,12321,12320,17627,17641,17614,12330,12335,12326,12323,12326,12321,13281,13282,13261,13247,13261,13282,13231,13247,13263,11659,11644,11625,11627,11661,11660,11627,11608,11644,13231,13262,13248,13196,13163,13177,11659,11625,11676,13148,13103,13133,13163,13165,13148,11709,11711,11693,11715,11709,11702,11724,11715,11702,12959,12958,12931,12927,12910,12892,12959,12931,12927,13088,13103,13116,12895,12862,12910,12843,12831,12862,12816,12805,12831,12805,12789,12775,12775,12763,12749,12773,12748,12747,12723,12762,12749,12723,12748,12762,12721,12760,12747,12721,12708,12734,16966,16967,16952,16959,16967,16976,16977,16965,16959,16974,16965,16983,16984,16958,16974,16984,16975,16958,16960,16975,16985,16978,16960,16985,16968,16978,16989,16979,16968,16989,17024,17025,17000,16971,16979,16989,16990,17001,16980,16990,16971,17002,17001,17024,17000,17060,17090,17075,17112,17108,17090,17112,17153,17151,17024,17060,17045,17190,17153,17192,17227,17190,17192,17242,17275,17261,17227,17229,17242,17262,17261,17294,17295,17262,17294,17296,17345,17328,17295,17327,17296,17367,17311,17345,17367,17349,17311,17384,17349,17367,17384,17401,17368,13281,13315,13335,13365,13391,13367,13335,13365,13336,7137,7133,7139,13434,13419,13391,7130,7129,7135,7130,7136,7133,17586,17627,17614,17553,17585,17586,17478,17477,17511,17511,17541,17524,17553,17541,17567,17418,17459,17439,17477,17439,17459,17418,17420,17459,17401,17420,17368,12319,12320,12321,17613,17641,17627,12326,12335,12336,12321,12326,12328,13316,13282,13281,13247,13282,13263,13262,13231,13263,11625,11644,11608,11660,11626,11627,11627,11580,11608,13262,13283,13248,11686,11658,11657,13212,13196,13177,13134,13103,13148,11685,11686,11657,13148,13165,13134,11693,11711,11704,11693,11692,11709,11692,11702,11709,11720,11724,11702,12930,12931,12958,12895,12910,12927,12931,12895,12927,13134,13116,13103,12874,12862,12895,12843,12816,12831,12874,12843,12862,12816,\r\n12789,12805,12763,12775,12789,12749,12763,12738,12748,12722,12747,12723,12749,12738,12723,12722,12748,12721,12747,12722,12708,12721,12699,16988,16959,16976,16983,16965,16977,16988,16977,16959,16974,16983,16994,16984,16974,16995,16984,16985,16975,16978,16985,16989,16971,16989,17011,16990,17012,17001,17002,16971,17013,16990,17002,17012,17024,17001,17012,17060,17077,17090,17112,17090,17077,17112,17133,17153,17024,17047,17060,17153,17169,17192,17227,17192,17229,17229,17275,17242,17293,17261,17275,17294,17261,17293,17295,17294,17326,17345,17296,17327,17295,17326,17327,17384,17367,17345,17401,17384,17398,13335,13336,13281,13392,13367,13391,13365,13367,13336,12356,12371,12377,13392,13391,13419,12322,12320,12319,7130,7135,7138,12334,12356,12364,17613,17627,17586,17553,17567,17585,17613,17586,17585,17512,17511,17477,17511,17540,17541,17541,17565,17567,17477,17459,17493,17461,17459,17420,17420,17401,17441,12324,12319,12321,17655,17641,17613,12345,12336,12335,12326,12336,12328,12321,12328,12324,13301,13282,13316,13316,13281,13336,13301,13263,13282,13262,13263,13298,11579,11625,11608,13248,13283,13300,11626,11580,11627,11556,11608,11580,13262,13299,13283,11658,11624,11657,11625,11624,11658,11656,11685,11657,11675,11696,11685,11684,11693,11704,11670,11692,11693,11702,11692,11683,11720,11702,11714,12894,12931,12930,12931,12894,12895,11696,11684,11704,12874,12895,12894,12816,12843,12861,12874,12861,12843,12817,12789,12816,12790,12763,12789,12764,12738,12763,12700,12723,12738,12710,12722,12723,12699,12721,12722,12699,12688,12708,16997,16988,16976,16977,16998,16983,16999,16977,16988,16998,16994,16983,16994,17005,16974,16995,16974,17005,16984,16995,17006,16985,16984,17006,16989,16985,17010,16989,17010,17011,16971,17011,17013,17002,17013,17012,17035,17024,17012,17060,17047,17077,17112,17077,17133,17169,17153,17133,17035,17047,17024,17169,17208,17192,17229,17192,17208,17264,17275,17229,17264,17293,17275,17294,17293,17326,17364,17345,17327,17326,17363,17327,17384,17345,17364,17364,17398,17384,17401,17398,17437,13382,13367,13392,13367,\r\n13352,13336,12356,12365,12371,13392,13419,13420,12322,12319,12325,12329,12334,12322,12356,12334,12349,17565,17585,17567,17612,17613,17585,17512,17540,17511,17512,17477,17493,17541,17540,17565,17493,17459,17461,17461,17420,17441,17401,17437,17441,12324,12327,12319,12357,12345,12335,17655,17613,17653,12332,12336,12345,12332,12328,12336,12332,12324,12328,13301,13316,13337,13336,13352,13316,13298,13263,13301,13262,13298,13317,11578,11625,11579,11556,11579,11608,13318,13300,13283,11626,11581,11580,11580,11529,11556,13262,13317,13299,13283,13299,13318,11624,11623,11657,11625,11578,11624,11656,11675,11685,11656,11657,11622,11675,11684,11696,11693,11684,11671,11692,11670,11683,11671,11670,11693,11701,11702,11683,11702,11701,11714,11726,11720,11714,12893,12894,12930,12861,12874,12894,12816,12861,12842,12790,12789,12817,12842,12817,12816,12790,12764,12763,12738,12764,12739,12710,12723,12700,12700,12738,12739,12710,12699,12722,12688,12699,12680,16997,17007,16988,17008,16998,16977,16999,17008,16977,16999,16988,17009,16998,17017,16994,16994,17017,17005,17006,16995,17005,16985,17006,17010,17010,17032,17011,17033,17013,17011,17012,17013,17036,17036,17035,17012,17077,17047,17062,17110,17133,17077,17169,17133,17165,17062,17047,17035,17165,17208,17169,17248,17229,17208,17248,17264,17229,17264,17313,17293,17333,17326,17293,17327,17363,17364,17333,17363,17326,17364,17397,17398,17437,17398,17436,13367,13382,13352,13397,13382,13392,12356,12349,12365,13397,13392,13420,12327,12325,12319,12325,12329,12322,12329,12341,12334,12349,12334,12341,17565,17566,17585,17626,17613,17612,17585,17566,17612,17512,17523,17540,17512,17493,17523,17565,17540,17566,17493,17461,17479,17461,17441,17479,17437,17475,17441,12327,12324,12331,12357,12361,12345,17626,17653,17613,12345,12352,12332,12339,12324,12332,13352,13337,13316,13298,13301,13337,13298,13338,13317,11579,11528,11578,11528,11579,11556,11582,11581,11626,11580,11581,11529,11487,11556,11529,13299,13317,13339,13318,13299,13339,11624,11576,11623,11643,11657,11623,11578,11576,11624,11656,11642,11675,11643,\r\n11622,11657,11642,11656,11622,11684,11675,11642,11684,11642,11671,11670,11653,11683,11671,11638,11670,11701,11683,11691,11708,11714,11701,12911,12893,12928,12893,12861,12894,12842,12861,12873,12790,12817,12806,12860,12817,12842,12790,12776,12764,12739,12764,12776,12680,12710,12700,12700,12739,12724,12680,12699,12710,12680,12666,12688,17007,17020,16988,17008,17021,16998,17022,17008,16999,16988,17020,17009,16999,17009,17023,17017,16998,17021,17006,17005,17017,17010,17006,17027,17010,17027,17032,17033,17011,17032,17033,17036,17013,17063,17035,17036,17091,17077,17062,17110,17134,17133,17110,17077,17091,17165,17133,17134,17062,17035,17063,17165,17209,17208,17248,17208,17246,17248,17279,17264,17298,17313,17264,17333,17293,17313,17364,17363,17397,17333,17371,17363,17436,17398,17397,17474,17437,17436,13368,13352,13382,13382,13397,13368,13393,13420,13435,13393,13397,13420,12327,12333,12325,12325,12333,12329,12347,12341,12329,12349,12341,12355,17612,17600,17626,17612,17566,17600,17540,17523,17543,17514,17523,17493,17540,17543,17566,17493,17479,17514,17441,17475,17479,17475,17437,17492,12337,12331,12324,12327,12331,12338,12345,12361,12352,17667,17653,17626,12351,12332,12352,12339,12337,12324,12332,12344,12339,13368,13337,13352,13298,13337,13338,13353,13317,13338,11528,11555,11578,11487,11528,11556,11582,11531,11581,11529,11581,11530,11487,11529,11451,13339,13317,13353,13318,13339,13354,11623,11576,11607,11607,11643,11623,11576,11578,11555,11607,11622,11643,11605,11642,11622,11671,11642,11638,11653,11670,11638,11653,11691,11683,11708,11701,11691,11721,11714,11708,12893,12911,12873,12893,12873,12861,12842,12873,12860,11743,11740,11738,12790,12806,12776,11738,11740,11734,11748,11744,11746,12690,12680,12700,11748,11746,11751,12701,12700,12724,12666,12680,12672,17022,17021,17008,17029,17022,16999,17020,17030,17009,17031,17023,17009,17023,17029,16999,17017,17021,17040,17017,17027,17006,17027,17051,17032,17058,17033,17032,17059,17036,17033,17059,17063,17036,17062,17111,17091,17110,17091,17134,17165,17134,17166,17062,17063,17092,17209,\r\n17165,17166,17209,17246,17208,17248,17246,17279,17298,17264,17279,17298,17332,17313,17332,17333,17313,17363,17371,17397,17333,17332,17371,17436,17397,17423,17437,17474,17492,17474,17436,17445,13368,13397,13393,13393,13435,13436,12338,12333,12327,12340,12329,12333,12341,12347,12355,12347,12329,12340,17600,17629,17626,17569,17600,17566,17543,17523,17514,17569,17566,17543,17510,17514,17479,17475,17510,17479,17475,17492,17510,12342,12331,12337,12343,12338,12331,12352,12361,12370,12361,12376,12370,17654,17667,17626,12351,12344,12332,12352,12370,12351,12337,12339,12344,13368,13338,13337,13338,13369,13353,11528,11486,11555,11487,11450,11528,11557,11531,11582,11581,11531,11530,11530,11451,11529,11487,11451,11358,13339,13353,13370,13354,13339,13371,11583,11557,11582,11554,11607,11576,11553,11576,11555,11622,11607,11606,11605,11638,11642,11622,11552,11605,11653,11638,11599,11691,11653,11694,11691,11713,11708,11708,11727,11721,12929,12873,12911,11734,11737,11729,11738,11744,11743,11738,11734,11731,11746,11744,11741,12680,12690,12672,12690,12700,12701,11750,11751,11746,11750,11755,11751,12672,12661,12666,17022,17042,17021,17022,17029,17042,17043,17009,17030,17031,17029,17023,17044,17031,17009,17040,17021,17050,17027,17017,17040,17027,17040,17051,17058,17032,17051,17058,17059,17033,17088,17063,17059,17062,17092,17111,17091,17111,17135,17091,17135,17134,17166,17134,17135,17088,17092,17063,17209,17166,17167,17247,17246,17209,17279,17246,17278,17278,17298,17279,17332,17298,17350,17397,17371,17388,17371,17332,17388,17397,17388,17423,17423,17445,17436,17474,17509,17492,17474,17445,17465,13368,13393,13369,13393,13436,13421,12338,12346,12333,12348,12340,12333,12355,12347,12363,12347,12340,12354,17600,17615,17629,17654,17626,17629,17600,17569,17588,17514,17552,17543,17552,17569,17543,17539,17514,17510,17509,17510,17492,12343,12331,12342,12342,12337,12344,12338,12343,12350,12376,12382,12370,17667,17654,17680,12360,12344,12351,12369,12351,12370,13368,13369,13338,13383,13353,13369,11486,11528,11450,11486,11553,11555,11487,11358,11450,11489,\r\n11531,11557,11530,11531,11488,11451,11530,11488,11358,11451,11359,13353,13384,13370,13371,13339,13370,11583,11612,11560,11583,11499,11557,11554,11577,11607,11554,11576,11485,11576,11553,11485,11575,11606,11607,11606,11552,11622,11605,11599,11638,11605,11552,11572,11654,11653,11599,11674,11694,11653,11707,11691,11694,11713,11691,11707,11708,11713,11719,11708,11719,11727,11727,11729,11721,11734,11729,11731,11738,11741,11744,11738,11731,11741,11746,11741,11745,12690,12701,12672,11746,11745,11750,12735,12718,12701,12661,12672,12673,17050,17021,17042,17029,17052,17042,17043,17054,17009,17030,17055,17043,17056,17029,17031,17044,17057,17031,17009,17054,17044,17040,17050,17067,17051,17040,17067,17058,17051,17080,17087,17059,17058,17087,17088,17059,17092,17136,17111,17135,17111,17152,17167,17166,17135,17092,17088,17130,17228,17209,17167,17247,17278,17246,17228,17247,17209,17312,17298,17278,17350,17298,17344,17332,17350,17370,17332,17370,17388,17405,17423,17388,17423,17405,17445,17474,17500,17509,17405,17465,17445,17474,17465,17500,13394,13369,13393,13436,13448,13421,13394,13393,13421,12353,12346,12338,12346,12348,12333,12348,12354,12340,12354,12363,12347,17600,17588,17615,17629,17615,17611,17654,17629,17666,17552,17588,17569,17539,17552,17514,17538,17539,17510,17509,17538,17510,12342,12358,12343,12358,12342,12344,12350,12343,12359,12353,12338,12350,17667,17680,17691,12369,12370,12382,17654,17666,17680,12358,12344,12360,12369,12360,12351,13353,13383,13384,13394,13383,13369,11486,11450,11403,11486,11484,11553,11403,11450,11358,11531,11489,11452,11557,11499,11489,11531,11452,11488,11451,11488,11359,11358,11359,11255,13384,13395,13370,13396,13371,13370,11612,11561,11560,11560,11499,11583,11577,11554,11527,11607,11577,11575,11554,11485,11527,11484,11485,11553,11575,11552,11606,11605,11572,11599,11522,11572,11552,11654,11674,11653,11654,11599,11604,11674,11703,11694,11710,11707,11694,11707,11719,11713,11719,11730,11727,11731,11729,11727,11741,11731,11739,11741,11739,11745,12672,12701,12698,11745,11752,11750,11754,11756,11750,12698,\r\n12701,12718,12689,12673,12672,12661,12673,12667,17042,17068,17050,17056,17052,17029,17069,17042,17052,17043,17071,17054,17043,17055,17071,17057,17056,17031,17057,17044,17072,17073,17044,17054,17067,17050,17068,17051,17067,17097,17097,17080,17051,17058,17080,17087,17088,17087,17129,17150,17136,17092,17152,17111,17136,17167,17135,17152,17088,17129,17130,17130,17150,17092,17210,17228,17167,17247,17274,17278,17228,17224,17247,17312,17344,17298,17278,17274,17312,17386,17350,17344,17387,17370,17350,17405,17388,17370,17509,17500,17530,17444,17465,17405,17465,17482,17500,13422,13421,13448,13422,13394,13421,12353,12362,12346,13500,13501,13475,13500,13472,13471,13449,13448,13471,17588,17611,17615,17629,17611,17640,17640,17666,17629,17552,17584,17588,17564,17552,17539,17564,17539,17538,17509,17530,17538,12343,12358,12366,12343,12366,12359,12350,12359,12367,12353,12350,12368,17680,17692,17691,12389,12369,12382,17692,17680,17666,12372,12358,12360,12360,12369,12372,13384,13383,13409,13409,13383,13394,11486,11403,11484,11403,11358,11308,11404,11452,11489,11453,11489,11499,11359,11488,11452,11309,11255,11359,11255,11308,11358,13395,13384,13410,13411,13370,13395,11629,11561,11612,13370,13412,13396,11561,11498,11560,11499,11560,11498,17857,17858,17859,17860,17857,17859,11485,11449,11527,11484,11401,11485,11575,11526,11552,11599,11572,11549,11549,11572,11522,11552,11448,11522,11641,11674,11654,11604,11599,11600,11641,11654,11604,11674,11695,11703,11703,11710,11694,11710,11719,11707,11728,11730,11719,11732,11727,11730,11732,11731,11727,11732,11739,11731,11747,11745,11739,12672,12698,12689,11752,11745,11749,11754,11750,11752,11756,11754,11758,12673,12689,12681,12667,12673,12681,17069,17068,17042,17056,17057,17052,17052,17081,17069,17071,17083,17054,17084,17071,17055,17073,17072,17044,17057,17072,17085,17086,17073,17054,17096,17067,17068,17097,17067,17096,17097,17118,17080,17087,17080,17119,17087,17119,17129,17150,17168,17136,17136,17168,17152,17168,17167,17152,17130,17129,17156,17150,17130,17163,17228,17210,17224,17168,17210,17167,17247,\r\n17224,17274,17309,17344,17312,17274,17309,17312,17386,17403,17350,17383,17386,17344,17387,17404,17370,17387,17350,17403,17404,17405,17370,17500,17529,17530,17465,17444,17482,17404,17444,17405,17517,17500,17482,13422,13448,13449,13409,13394,13422,12362,12353,12368,13487,13476,13501,13476,13475,13501,13475,13472,13500,13471,13472,13449,17588,17584,17611,17625,17640,17611,17640,17646,17666,17564,17584,17552,17564,17538,17557,17538,17530,17557,12372,12366,12358,12366,12373,12359,12374,12367,12359,12350,12367,12375,12368,12350,12375,17696,17691,17692,12388,12369,12389,12394,12389,12382,17671,17692,17666,12369,12381,12372,13384,13409,13410,11403,11405,11484,11308,11405,11403,11359,11452,11404,11404,11489,11453,11453,11499,11415,11309,11162,11255,11359,11404,11309,11208,11308,11255,13395,13410,13423,13370,13411,13412,13424,13411,13395,13442,13396,13425,13396,13412,13425,11498,11561,11534,11415,11499,11498,11527,11449,11526,11449,11485,11401,11401,11484,11402,11526,11448,11552,11600,11599,11549,11549,11522,11481,11522,11448,11445,11641,11673,11674,11604,11600,11551,11621,11641,11604,11695,11674,11673,17861,17862,17863,11710,11703,11716,11710,11725,11719,11733,11730,11728,11728,11719,11725,11735,11732,11730,11732,11735,11739,11749,11745,11747,12884,12918,12901,12689,12698,12709,11753,11752,11749,11754,11752,11753,12698,12719,12709,12681,12689,12682,12667,12681,12682,17069,17098,17068,17099,17052,17057,17099,17081,17052,17069,17081,17100,17102,17083,17071,17103,17054,17083,17102,17071,17084,17104,17072,17073,17072,17105,17085,17099,17057,17085,17086,17104,17073,17086,17054,17106,17068,17117,17096,17097,17096,17118,17118,17119,17080,17156,17129,17119,17168,17150,17191,17130,17156,17185,17163,17130,17186,17150,17163,17187,17224,17210,17191,17168,17191,17210,17274,17224,17260,17309,17362,17344,17274,17292,17309,17383,17403,17386,17383,17344,17362,17421,17404,17387,17403,17422,17387,17517,17529,17500,17529,17557,17530,17444,17499,17482,17404,17443,17444,17482,17516,17517,13422,13449,13437,13409,13422,13437,13487,13517,13486,13487,\r\n13462,13476,13476,13451,13475,13475,13459,13472,13472,13459,13449,17584,17625,17611,17640,17625,17639,17640,17639,17646,17646,17671,17666,17584,17564,17599,17564,17557,17573,12366,12372,12373,12378,12359,12373,12379,12367,12374,12359,12378,12374,12375,12367,12380,13517,13533,13486,12399,12394,12382,17671,17696,17692,12388,12381,12369,12394,12388,12389,12381,12373,12372,13410,13409,13437,11402,11484,11405,11357,11405,11308,11404,11453,11322,11453,11415,11322,11256,11162,11309,11162,11208,11255,11309,11404,11322,11208,11254,11308,13423,13410,13437,13395,13423,13438,13412,13411,13439,13424,13440,13411,13395,13438,13424,11561,11587,11534,13412,13441,13425,11498,11534,11416,11415,11498,11416,11449,11448,11526,11449,11401,11355,11401,11402,11253,11551,11600,11549,11445,11481,11522,11481,11551,11549,11400,11445,11448,11655,11673,11641,11551,11574,11604,11621,11655,11641,11574,11621,11604,2610,2661,2646,17861,17864,17862,17861,17863,17865,13061,13106,13092,11733,11736,11730,13022,13049,13036,13049,13061,13036,12950,12996,12982,11742,11739,11735,12825,12884,12869,12901,12869,12884,12709,12720,12689,12810,12783,12825,11754,11753,11757,12691,12682,12689,12667,12682,12674,17069,17120,17098,17098,17117,17068,17121,17081,17099,17122,17100,17081,17100,17120,17069,17123,17083,17102,17103,17106,17054,17123,17103,17083,17102,17084,17124,17104,17105,17072,17126,17085,17105,17099,17085,17126,17104,17086,17127,17086,17106,17128,17096,17117,17140,17118,17096,17140,17155,17119,17118,17155,17156,17119,17187,17191,17150,17204,17185,17156,17130,17185,17186,17205,17163,17186,17205,17187,17163,17187,17224,17191,17260,17224,17241,17274,17260,17292,17309,17382,17362,17325,17309,17292,17383,17434,17403,17383,17362,17396,17421,17443,17404,17421,17387,17422,17434,17422,17403,17517,17516,17529,17545,17557,17529,17444,17498,17499,17482,17499,17516,17481,17444,17443,13437,13449,13459,13462,13487,13486,13476,13462,13451,13475,13451,13459,17610,17625,17584,17610,17639,17625,17639,17619,17646,17658,17671,17646,17599,17564,17573,17610,17584,17599,17573,\r\n17557,17545,12378,12373,12383,12367,12379,12384,12385,12379,12374,12378,12386,12374,12387,12380,12367,13533,13532,13486,12394,12399,12404,17696,17671,17684,12381,12388,12393,12394,12404,12388,12383,12373,12381,11357,11402,11405,11357,11308,11254,11415,11321,11322,11256,11176,11162,11309,11322,11256,11208,11162,11113,11254,11208,11113,13438,13423,13437,13439,13411,13440,13412,13439,13441,13450,13440,13424,13424,13438,13451,11613,11534,11587,13441,13452,13425,13522,13552,13538,11416,11321,11415,11449,11355,11448,11401,11253,11355,11356,11253,11402,11445,11399,11481,11551,11481,11525,11400,11352,11445,11448,11355,11400,11655,11672,11673,11574,11551,11525,11640,11655,11621,11603,11621,11574,2610,2646,2627,2624,2591,2643,2610,2593,2624,13061,13092,13077,12982,13022,13009,13022,13036,13009,13077,13036,13061,12966,12950,12982,12937,12901,12950,12852,12825,12869,12901,12902,12869,12720,12709,12736,12689,12720,12737,12799,12783,12810,12810,12825,12832,12770,12709,12783,12682,12691,12674,12702,12691,12689,17141,17098,17120,17142,17117,17098,17121,17122,17081,17121,17099,17143,17144,17100,17122,17100,17145,17120,17102,17146,17123,17106,17103,17147,17147,17103,17123,17124,17146,17102,17104,17127,17105,17105,17148,17126,17099,17126,17143,17128,17127,17086,17128,17106,17149,17142,17140,17117,17118,17140,17155,17155,17194,17156,17204,17186,17185,17194,17204,17156,17205,17186,17204,17205,17223,17187,17187,17241,17224,17259,17260,17241,17292,17260,17291,17382,17309,17361,17382,17396,17362,17325,17343,17309,17291,17325,17292,17383,17435,17434,17417,17383,17396,17421,17463,17443,17421,17422,17464,17435,17422,17434,17516,17545,17529,17481,17498,17444,17527,17499,17498,17516,17499,17528,17481,17443,17463,13437,13459,13438,13462,13486,13474,13462,13424,13451,13451,13438,13459,17610,17619,17639,17646,17619,17631,17658,17684,17671,17646,17631,17658,17599,17573,17592,17599,17592,17610,17556,17573,17545,12378,12383,12390,12379,12391,12384,12367,12384,12387,12385,12392,12379,12385,12374,12386,12378,12390,12386,13546,13516,13532,13486,13532,\r\n13516,12399,12412,12404,12388,12398,12393,12381,12393,12383,12388,12404,12398,11357,11356,11402,11357,11254,11307,11322,11321,11221,11256,11177,11176,11176,11067,11162,11268,11256,11322,11113,11162,11067,11113,11207,11254,13439,13440,13460,13441,13439,13460,13450,13461,13440,13462,13450,13424,13538,13505,13522,11613,11587,11630,13452,13441,13463,13452,13464,13425,11419,11325,11416,11416,11325,11321,11253,11252,11355,11306,11253,11356,11352,11399,11445,11481,11399,11447,11481,11447,11525,11305,11352,11400,11355,11305,11400,11640,11672,11655,11574,11525,11524,11603,11640,11621,11603,11574,11524,2610,2627,2594,2624,2593,2591,2625,2643,2591,2610,2576,2593,13077,13092,13107,12982,13009,12997,13009,13036,13023,2660,2677,2692,12950,12966,12937,12966,12982,12997,12901,12937,12902,12852,12832,12825,12869,12875,12852,12875,12869,12902,12736,12709,12745,12740,12720,12736,12740,12737,12720,12689,12737,12725,12783,12799,12770,12777,12799,12810,12807,12810,12832,12759,12709,12770,12691,12702,12674,12689,12725,12702,17142,17098,17141,17145,17141,17120,17143,17122,17121,17144,17145,17100,17144,17122,17157,17146,17158,17123,17106,17147,17149,17158,17147,17123,17146,17124,17160,17105,17127,17148,17126,17148,17161,17143,17126,17161,17128,17148,17127,17128,17149,17162,17140,17142,17172,17140,17172,17155,17194,17155,17211,17231,17204,17194,17205,17204,17240,17205,17240,17223,17241,17187,17223,17260,17259,17291,17259,17241,17223,17343,17361,17309,17382,17361,17381,17416,17396,17382,17343,17325,17360,17291,17308,17325,17417,17435,17383,17417,17396,17433,17421,17464,17463,17422,17472,17464,17435,17472,17422,17516,17528,17545,17515,17498,17481,17527,17544,17499,17515,17527,17498,17499,17544,17528,17481,17463,17497,13486,13485,13474,13462,13474,13450,17619,17610,17603,17619,17591,17631,17658,17683,17684,17658,17631,17645,17573,17556,17592,17610,17592,17603,17556,17545,17528,12383,12393,12390,12391,12379,12392,12387,12384,12391,12392,12385,12395,12385,12386,12396,12397,12386,12390,13546,13563,13516,13486,13516,13485,12404,12412,12416,12398,\r\n12405,12393,12404,12411,12398,11307,11356,11357,11307,11254,11207,11267,11221,11321,11221,11268,11322,11268,11177,11256,11177,11127,11176,11067,11176,11127,11113,11067,11024,11065,11207,11113,13461,13460,13440,13460,13473,13441,13450,13474,13461,13489,13522,13505,13505,13464,13489,13473,13463,13441,13477,13452,13463,13452,13478,13464,11325,11419,11370,11321,11325,11267,11253,11160,11252,11252,11305,11355,11253,11306,11206,11307,11306,11356,11352,11304,11399,11399,11354,11447,11524,11525,11447,11305,11204,11352,2611,2627,2628,11640,11603,11639,11603,11524,11602,2611,2594,2627,2610,2594,2576,2556,2591,2593,2591,2609,2625,2556,2593,2576,2660,2625,2644,13009,13023,12997,2677,2660,2644,12966,12967,12937,2663,2706,2693,12902,12937,12938,12844,12832,12852,12844,12852,12875,12875,12902,12912,12745,12709,12759,12745,12750,12736,12740,12736,12750,12737,12740,12726,12726,12725,12737,12777,12770,12799,12810,12807,12777,12832,12844,12807,12777,12759,12770,12702,12711,12674,12711,12702,12725,17173,17142,17141,17145,17174,17141,17175,17122,17143,17176,17145,17144,17175,17157,17122,17144,17157,17177,17178,17158,17146,17149,17147,17179,17158,17179,17147,17124,17181,17160,17178,17146,17160,17161,17148,17182,17161,17183,17143,17128,17162,17148,17184,17162,17149,17193,17172,17142,17172,17211,17155,17231,17194,17211,17231,17250,17204,17250,17240,17204,17223,17240,17258,17291,17259,17308,17259,17223,17258,17381,17361,17343,17382,17381,17416,17416,17433,17396,17342,17360,17325,17380,17343,17360,17342,17325,17308,17417,17455,17435,17433,17456,17417,17496,17463,17464,17464,17472,17496,17435,17455,17472,17481,17497,17515,17544,17527,17526,17527,17515,17526,17544,17555,17528,17496,17497,17463,13474,13485,13461,17591,17619,17603,17618,17631,17591,17683,17658,17670,17631,17618,17645,17670,17658,17645,17556,17603,17592,17528,17555,17556,12390,12393,12400,12392,12401,12391,13546,13574,13563,12385,12402,12395,12403,12392,12395,12397,12396,12386,12385,12396,12402,12390,12400,12397,13516,13563,13545,13516,13515,13485,12404,12416,12411,12411,12405,\r\n12398,12393,12405,12406,11307,11207,11306,11221,11267,11128,11221,11177,11268,11177,11175,11127,11067,11127,11039,11024,11067,10979,11024,11112,11113,11207,11065,11161,11065,11113,11112,13460,13461,13473,13489,13537,13522,13489,13464,13478,13463,13473,13488,13452,13477,13478,13463,13488,13477,11419,11461,11370,11325,11370,11223,11223,11267,11325,11160,11253,11206,11160,11205,11252,11252,11205,11305,11206,11306,11207,11204,11304,11352,11304,11354,11399,11354,11483,11447,11524,11447,11483,11305,11205,11204,2595,2611,2628,11603,11602,11639,11573,11602,11524,2611,2577,2594,2541,2576,2594,2591,2556,2575,2591,2575,2609,2609,2644,2625,2556,2576,2541,2678,2693,2677,2645,2677,2644,12938,12937,12967,2663,2693,2678,12912,12902,12938,12844,12875,12896,12896,12875,12912,12759,12765,12745,12750,12745,12765,12712,12740,12750,12712,12726,12740,12725,12726,12711,12807,12791,12777,2219,2214,2197,12759,12777,12765,12711,12703,12674,17173,17193,17142,17173,17141,17174,17176,17174,17145,17175,17143,17183,17144,17177,17176,17195,17157,17175,17196,17177,17157,17197,17158,17178,17149,17179,17198,17199,17179,17158,17200,17160,17181,17178,17160,17201,17148,17162,17182,17202,17161,17182,17161,17203,17183,17184,17182,17162,17198,17184,17149,17212,17172,17193,17172,17212,17211,17212,17231,17211,17250,17231,17249,17250,17258,17240,17259,17290,17308,17290,17259,17258,17380,17381,17343,17414,17416,17381,17416,17452,17433,17359,17360,17342,17395,17380,17360,17324,17342,17308,17456,17455,17417,17433,17473,17456,17491,17496,17472,17491,17472,17455,17515,17497,17526,17544,17526,17571,17544,17572,17555,17522,17497,17496,13485,13473,13461,17591,17603,17556,17618,17591,17590,17695,17683,17670,17644,17645,17618,17669,17670,17645,17555,17591,17556,12393,12406,12400,12403,12401,12392,13545,13574,13591,13545,13563,13574,12402,12407,12395,12403,12395,12407,12396,12397,12408,12402,12396,12409,12397,12400,12410,13545,13515,13516,13485,13515,13473,12423,12411,12416,12405,12411,12417,12418,12406,12405,11223,11128,11267,11221,11128,11079,11079,11177,11221,11177,\r\n11081,11175,11078,11127,11175,11039,11127,11078,11039,10979,11067,10979,10938,11024,11066,11112,11024,11064,11161,11065,11207,11161,11206,11065,11112,11023,13537,13489,13551,11463,11588,11563,13473,13502,13488,13477,13503,13478,13488,13504,13477,11370,11461,11463,11370,11270,11223,11064,11160,11206,11205,11160,11111,11304,11204,11202,11354,11304,11251,11446,11483,11354,11524,11483,11523,11205,11110,11204,2595,2577,2611,11602,11601,11639,11573,11601,11602,11523,11573,11524,2541,2594,2577,2540,2575,2556,2592,2609,2575,2644,2609,2645,2556,2541,2521,2645,2678,2677,12967,12977,12938,2678,2629,2663,12912,12938,12932,12913,12844,12896,12896,12912,12932,12741,12750,12765,12712,12750,12741,12726,12712,12703,12703,12711,12726,12791,12807,12818,12777,12791,12741,2206,2197,2214,12741,12765,12777,12703,12692,12674,17213,17193,17173,17213,17173,17174,17214,17174,17176,17215,17175,17183,17216,17176,17177,17195,17196,17157,17175,17217,17195,17177,17196,17218,17197,17199,17158,17178,17219,17197,17198,17179,17220,17199,17221,17179,17200,17201,17160,5684,5657,5694,17178,17201,17219,17161,17202,17203,17222,17202,17182,17215,17183,17203,17222,17182,17184,17184,17198,17222,17230,17212,17193,17249,17231,17212,17250,17249,17281,17281,17258,17250,17324,17308,17290,17290,17258,17281,17380,17414,17381,17414,17452,17416,17452,17471,17433,17360,17359,17394,17324,17359,17342,17395,17415,17380,17360,17394,17395,17490,17455,17456,17471,17473,17433,17490,17456,17473,17491,17522,17496,17491,17455,17490,17526,17497,17522,17571,17526,17570,17589,17544,17571,17544,17589,17572,17572,17590,17555,17555,17590,17591,17602,17618,17590,17708,17695,17670,17669,17645,17644,17618,17630,17644,17670,17669,17694,12410,12400,12406,13609,13597,13591,13545,13591,13575,12413,12407,12402,13628,13617,13609,12414,12408,12397,12396,12408,12415,12409,12396,12415,12402,12409,12413,12414,12397,12410,13545,13518,13515,13518,13473,13515,17695,17720,17731,12417,12424,12405,12419,12406,12418,12418,12405,12424,11128,11223,11178,11080,11079,11128,11177,11079,11081,11081,11078,11175,\r\n10950,11039,11078,10979,11039,10950,10904,10938,10979,10938,11066,11024,11066,11023,11112,11064,11206,11161,11064,11065,10980,11065,11023,10978,11536,11463,11563,13502,13473,13518,13488,13502,13519,13477,13520,13503,13521,13504,13488,13504,13520,13477,11463,11420,11370,11326,11270,11370,11223,11270,11180,11064,11111,11160,11205,11111,11110,11202,11204,11109,11203,11304,11202,11203,11251,11304,11353,11354,11251,11483,11446,11523,11353,11446,11354,11110,11109,11204,2543,2577,2595,2558,2543,2595,11550,11601,11573,11523,11550,11573,2541,2577,2542,2540,2557,2575,2540,2556,2521,2626,2609,2592,2592,2575,2557,2626,2645,2609,2521,2541,2508,2678,2645,2629,2663,2629,2647,12960,12938,12977,12960,12932,12938,12913,12896,12933,12896,12932,12933,12741,12727,12712,12692,12703,12712,2178,2198,2197,2198,2189,2207,2206,2184,2197,17230,17193,17213,17214,17213,17174,17216,17214,17176,17215,17217,17175,17177,17218,17216,17195,17232,17196,17233,17195,17217,17234,17218,17196,17235,17199,17197,17236,17197,17219,17220,17179,17221,17198,17220,17237,17221,17199,17238,5672,5694,5657,5684,5659,5657,5656,5672,5630,17203,17202,17222,17239,17215,17203,17198,17237,17222,17230,17249,17212,17281,17249,17280,17324,17290,17315,17315,17290,17281,17380,17415,17414,17414,17451,17452,17452,17487,17471,17359,17372,17394,17334,17359,17324,17432,17415,17395,17431,17395,17394,17471,17507,17473,17473,17508,17490,17491,17508,17522,17491,17490,17508,17551,17526,17522,17570,17526,17551,17570,17601,17571,17601,17589,17571,17572,17589,17602,17572,17602,17590,17602,17630,17618,17708,17720,17695,17670,17694,17708,17669,17644,17657,17644,17630,17657,17682,17694,17669,12410,12406,12419,13617,13597,13609,13575,13591,13597,13545,13575,13564,13637,13617,13628,12408,12414,12420,12421,12415,12408,12422,12409,12415,12409,12422,12413,12410,12419,12414,13545,13564,13518,17720,17708,17730,12418,12428,12419,12429,12418,12424,11178,11223,11180,11178,11041,11128,11080,10995,11079,11080,11128,11041,11081,11079,11040,11081,10994,11078,10994,10950,11078,10950,10880,10979,10867,10938,\r\n10904,10979,10880,10904,11066,10938,11023,10980,11065,10978,10980,10977,11064,10938,10978,11023,11536,11462,11463,13518,13519,13502,13521,13488,13519,13520,13534,13503,13521,13535,13504,13520,13504,13536,11462,11420,11463,11420,11326,11370,11326,11224,11270,11224,11180,11270,11022,11111,11064,11110,11111,11022,11108,11202,11109,11203,11202,11108,11203,11159,11251,11353,11251,11303,11482,11523,11446,11353,11482,11446,11109,11110,11021,2543,2542,2577,2558,2544,2543,2559,2510,2558,11482,11550,11523,2541,2542,2508,2522,2557,2540,2540,2521,2507,2596,2626,2592,2563,2592,2557,2626,2629,2645,2478,2521,2508,2629,2612,2647,12977,12991,12960,12961,12932,12960,12913,12933,12945,12933,12932,12961,12751,12727,12741,12692,12712,12727,2198,2178,2189,2178,2197,2184,17213,17214,17230,17251,17214,17216,17239,17217,17215,17218,17252,17216,17195,17233,17232,17196,17232,17234,17233,17217,17253,17234,17254,17218,17199,17235,17238,17236,17235,17197,5629,5632,5656,17220,17221,17255,17255,17237,17220,17221,17238,17256,17866,17867,17868,5659,5633,5657,5629,5656,5630,17257,17203,17222,17257,17239,17203,17257,17222,17237,17249,17230,17265,17249,17265,17280,17281,17280,17315,17324,17315,17280,17414,17415,17451,17487,17452,17451,17471,17487,17506,17359,17334,17372,17372,17406,17394,17334,17324,17280,17432,17453,17415,17432,17395,17454,17450,17395,17431,17424,17431,17394,17507,17471,17506,17507,17508,17473,17551,17522,17508,17551,17583,17570,17598,17601,17570,17616,17589,17601,17617,17602,17589,17630,17602,17617,17708,17694,17719,17682,17669,17657,17657,17630,17643,17694,17682,17707,13617,13598,13597,13597,13598,13575,13576,13564,13575,13638,13617,13637,12414,12425,12420,12421,12408,12420,12421,12426,12415,12426,12422,12415,12413,12422,12427,12414,12419,12425,13564,13547,13518,17730,17708,17719,12429,12428,12418,12434,12419,12428,17738,17730,17719,11178,11180,11041,11080,10997,10995,11079,10995,11040,11080,11041,10997,10994,11081,11040,10994,10951,10950,10950,10881,10880,10867,10978,10938,10937,10980,10978,10977,10980,10903,10977,11022,11064,11562,\r\n11462,11536,13547,13519,13518,13547,13521,13519,13548,13534,13520,13521,13549,13535,13535,13550,13504,13504,13550,13536,13520,13536,13548,11327,11420,11462,11326,11420,11327,11326,11269,11224,11224,11129,11180,11022,11021,11110,11108,11109,11063,11203,11108,11159,11303,11251,11159,11353,11303,11351,11482,11353,11480,11109,11021,11063,2543,2523,2542,2510,2544,2558,2544,2509,2543,2559,2545,2510,2578,2545,2559,2523,2508,2542,2563,2557,2522,2540,2507,2522,2507,2521,2478,2629,2626,2596,2596,2592,2563,2478,2508,2494,2596,2612,2629,2647,2612,2662,12990,12960,12991,12960,12990,12961,12933,12961,12945,2189,2179,2199,12727,12713,12692,2178,2167,2189,2184,2160,2178,17214,17265,17230,17251,17265,17214,17251,17216,17252,17239,17266,17217,17252,17218,17254,17267,17232,17233,17234,17232,17267,17266,17253,17217,17253,17268,17233,17234,17269,17254,17235,17270,17238,17236,17271,17235,5629,5594,5632,17256,17255,17221,17255,17257,17237,17272,17256,17238,5630,5657,5633,5633,5659,5634,5592,5629,5630,17273,17239,17257,17280,17265,17282,17415,17453,17451,17453,17487,17451,17487,17488,17506,17351,17372,17334,17372,17374,17406,17424,17394,17406,17334,17280,17314,17432,17470,17453,17450,17454,17395,17432,17454,17470,17466,17450,17431,17466,17431,17424,17507,17506,17536,17507,17537,17508,17550,17551,17508,17550,17583,17551,17598,17570,17583,17598,17616,17601,17616,17617,17589,17630,17617,17643,17694,17707,17719,17682,17657,17668,17657,17643,17668,17682,17693,17707,13618,13598,13617,13575,13598,13576,13576,13547,13564,13638,13618,13617,13637,13652,13638,12430,12420,12425,12421,12420,12431,12432,12426,12421,12426,12433,12422,12433,12427,12422,12434,12425,12419,12429,12438,12428,12428,12439,12434,17729,17738,17719,11129,11041,11180,10884,10995,10997,10995,10952,11040,10997,11041,10954,10952,10994,11040,10951,10994,10882,10951,10881,10950,10978,10867,10937,10937,10903,10980,10903,10936,10977,10977,10936,11022,13565,13534,13548,13547,13549,13521,13535,13549,13566,13550,13535,13567,13567,13536,13550,13548,13536,13568,11462,11422,11327,11326,11327,\r\n11269,11179,11224,11269,11129,11224,11179,11021,11022,10936,11108,11063,11019,11019,11159,11108,11250,11303,11159,11303,11250,11351,11353,11351,11398,11480,11353,11398,2578,2584,2560,10976,11063,11021,2509,2523,2543,2510,2509,2544,2524,2510,2545,2545,2578,2560,2523,2494,2508,2522,2526,2563,2522,2507,2483,2507,2478,2483,2563,2562,2596,2478,2494,2465,2596,2561,2612,13019,12991,13033,12990,12991,13019,2194,2212,2195,12945,12961,12978,2179,2189,2167,12727,12728,12713,2178,2160,2167,2172,2160,2184,17251,17282,17265,17251,17252,17283,17239,17284,17266,17252,17254,17283,17268,17267,17233,17234,17267,17269,17285,17253,17266,17253,17286,17268,17254,17269,17287,17271,17270,17235,17270,17272,17238,5632,5594,5613,5629,5592,5594,17256,17288,17255,17257,17255,17288,17272,17289,17256,5595,5630,5633,5633,5634,5596,5592,5630,5595,17273,17284,17239,17288,17273,17257,17282,17314,17280,17488,17487,17453,17506,17488,17504,17372,17351,17374,17351,17334,17314,17374,17424,17406,17488,17453,17470,17450,17466,17454,17454,17489,17470,17424,17446,17466,17536,17506,17534,17507,17536,17537,17537,17550,17508,17583,17550,17563,17583,17563,17598,17609,17616,17598,17616,17638,17617,17638,17643,17617,17729,17719,17707,17693,17682,17668,17681,17668,17643,17718,17707,17693,13599,13598,13618,13599,13576,13598,13547,13576,13549,13638,13630,13618,13638,13652,13630,12430,12431,12420,12425,12435,12430,12432,12421,12431,12432,12436,12426,12433,12426,12436,12433,12437,12427,12425,12434,12435,12429,12445,12438,12428,12438,12439,12439,12444,12434,11129,11083,11041,10884,10952,10995,10954,10884,10997,10954,11041,10955,10994,10952,10882,10881,10951,10882,10867,10866,10937,10903,10937,10868,10903,10865,10936,13565,13548,13577,13566,13549,13578,13566,13579,13535,13567,13535,13579,13536,13567,13580,13536,13580,13568,13548,13568,13581,11422,11372,11327,11269,11327,11226,11179,11269,11225,11129,11179,11083,10936,10976,11021,11019,11063,10976,11019,11158,11159,11250,11159,11158,11351,11250,11289,11351,11289,11398,2584,2585,2551,2560,2584,2550,2523,2509,2494,2479,2509,\r\n2510,2524,2480,2510,2545,2560,2524,2522,2497,2526,2563,2526,2562,2522,2483,2497,2453,2483,2478,2561,2596,2562,2479,2465,2494,2453,2478,2465,13045,13033,13060,13019,13033,13045,2201,2182,2195,2171,2194,2195,2184,2194,2172,2167,2154,2179,2167,2160,2154,2160,2172,2156,17251,17283,17282,17266,17284,17299,17283,17254,17300,17268,17301,17267,17269,17267,17301,17285,17286,17253,17266,17299,17285,17302,17268,17286,17269,17303,17287,17254,17287,17300,17304,17270,17271,17305,17272,17270,5579,5613,5594,5559,5594,5592,17289,17288,17256,17289,17272,17306,5595,5633,5596,5614,5596,5634,5595,5560,5592,17273,17307,17284,17273,17288,17307,17316,17314,17282,17470,17504,17488,17506,17504,17534,17351,17336,17374,17351,17314,17316,17374,17407,17424,17501,17454,17466,17501,17489,17454,17470,17489,17505,17446,17424,17407,17483,17466,17446,17534,17561,17536,17537,17536,17561,17550,17537,17563,17598,17563,17582,17638,17616,17609,17598,17582,17609,17638,17665,17643,17729,17707,17728,17681,17693,17668,17681,17643,17665,17718,17728,17707,17718,17693,17706,13618,13610,13599,13576,13599,13578,13578,13549,13576,13618,13630,13610,12440,12431,12430,12440,12430,12435,12432,12431,12440,12436,12432,12441,12433,12436,12442,12443,12437,12433,12435,12434,12444,17729,17747,17754,12448,12439,12438,12449,12444,12439,11041,11083,10955,10952,10884,10882,10937,10866,10868,10903,10868,10834,10865,10903,10834,10936,10865,10976,11503,11422,11537,13566,13578,13592,13579,13566,13593,13567,13579,13594,13567,13594,13580,13580,13581,13568,11422,11464,11372,11272,11327,11372,11272,11226,11327,11269,11226,11130,11225,11269,11130,11179,11225,11130,11179,11130,11083,10935,11019,10976,11019,11054,11158,11158,11289,11250,2585,2604,2570,2570,2551,2585,2550,2584,2551,2524,2560,2550,2479,2494,2509,2510,2480,2479,2480,2524,2515,2497,2496,2526,2526,2525,2562,2497,2483,2482,2453,2456,2483,2561,2562,2525,2454,2465,2479,2465,2430,2453,13045,13060,13073,2210,2192,2201,2182,2201,2192,2171,2195,2182,2171,2172,2194,2160,2148,2154,2156,2172,2171,2160,2156,2148,17316,17282,17283,17284,17317,\r\n17299,17283,17300,17316,17302,17301,17268,17269,17301,17303,17286,17285,17318,17285,17299,17319,17302,17286,17320,17321,17287,17303,17321,17300,17287,17304,17305,17270,17322,17304,17271,17305,17306,17272,5579,5612,5613,5559,5579,5594,5560,5559,5592,17289,17307,17288,17289,17306,17323,5596,5561,5595,5596,5614,5580,5595,5561,5560,17317,17284,17307,17504,17470,17505,17534,17504,17533,17351,17316,17336,17375,17374,17336,17374,17375,17407,17483,17501,17466,17521,17489,17501,17505,17489,17521,17449,17446,17407,17483,17446,17449,17578,17561,17534,17561,17581,17537,17563,17537,17582,17638,17609,17652,17608,17609,17582,17652,17665,17638,17747,17729,17728,17681,17706,17693,17665,17679,17681,17728,17718,17737,17706,17727,17718,13610,13592,13599,13592,13578,13599,13640,13610,13630,12446,12440,12435,12432,12440,12441,12436,12441,12447,12442,12436,12447,12442,12443,12433,12435,12444,12446,17765,17754,17747,12448,12453,12439,12449,12452,12444,12454,12449,12439,10955,11083,11042,10868,10866,10803,10834,10868,10803,10834,10774,10865,10976,10865,10935,11422,11503,11464,13592,13593,13566,13593,13600,13579,13600,13594,13579,13594,13601,13580,13580,13602,13581,11464,11502,11372,11272,11372,11371,11226,11272,11181,11130,11226,11131,11042,11083,11130,10935,11020,11019,11054,11019,11020,11054,11146,11158,11158,11239,11289,11289,11340,11389,2570,2532,2551,2550,2551,2515,2550,2515,2524,2480,2454,2479,2502,2480,2515,2496,2497,2467,2526,2496,2525,2456,2482,2483,2482,2467,2497,2453,2444,2456,2525,2546,2561,2454,2430,2465,2430,2433,2453,13089,13045,13073,2210,2208,2192,2169,2182,2192,2182,2161,2171,2161,2156,2171,2156,2151,2148,17335,17299,17317,17336,17316,17300,17337,17301,17302,17337,17303,17301,17318,17285,17338,17286,17318,17320,17319,17299,17335,17319,17338,17285,17337,17302,17320,17321,17303,17337,17321,17339,17300,17322,17305,17304,17340,17306,17305,5612,5579,5593,5559,5540,5579,5559,5560,5523,17289,17341,17307,5703,5719,5712,17289,17323,17341,5596,5580,5561,5597,5580,5614,5524,5560,5561,17341,17317,17307,17504,17505,17533,17560,17534,\r\n17533,17375,17336,17339,17407,17375,17392,17501,17483,17518,17521,17501,17532,17521,17535,17505,17407,17411,17449,17449,17486,17483,17581,17561,17578,17578,17534,17560,17582,17537,17581,17637,17652,17609,17637,17609,17608,17582,17581,17608,17652,17679,17665,17747,17728,17737,17681,17704,17706,17681,17679,17704,17718,17736,17737,17704,17727,17706,17727,17725,17718,13592,13610,13619,13629,13610,13640,12446,12450,12440,12450,12441,12440,12447,12441,12451,13639,13651,13619,13629,13640,13639,12446,12444,12452,17753,17765,17747,17765,17753,17773,12454,12439,12453,12449,12457,12452,12458,12449,12454,10996,10955,11042,10834,10803,10775,10834,10775,10774,10865,10774,10833,10935,10865,10856,13611,13593,13592,13593,13611,13600,13612,13594,13600,13613,13601,13594,13602,13580,13601,13601,13623,13602,11421,11372,11502,11421,11371,11372,11272,11371,11271,11181,11272,11271,11226,11181,11131,11130,11131,11042,10935,10968,11020,10968,11054,11020,11054,11098,11146,11158,11146,11239,11239,11340,11289,2570,2603,2569,2570,2569,2532,2515,2551,2532,2480,2461,2454,2502,2471,2480,2532,2502,2515,2466,2496,2467,2511,2525,2496,2467,2482,2456,2433,2444,2453,2431,2456,2444,2525,2511,2546,2442,2430,2454,2430,2410,2433,2210,2220,2208,13089,13073,13104,2192,2208,2191,2169,2161,2182,2169,2192,2191,2151,2156,2161,17317,17341,17335,17339,17336,17300,17318,17338,17352,17352,17320,17318,17319,17335,17353,17353,17338,17319,17337,17320,17354,17321,17337,17355,17355,17339,17321,17322,17356,17305,17340,17357,17306,17356,17340,17305,5593,5579,5540,5612,5593,5631,5559,5523,5540,5523,5560,5524,5682,5703,5712,17341,17323,17358,5580,5541,5561,5597,5542,5580,5541,5524,5561,17535,17533,17505,17560,17533,17535,17375,17339,17355,17392,17375,17355,17392,17411,17407,17518,17483,17531,17518,17532,17501,17521,17532,17548,17549,17535,17521,17469,17449,17411,17486,17449,17469,17486,17519,17483,17596,17581,17578,17596,17578,17560,17652,17637,17636,17608,17606,17637,17608,17581,17606,17652,17636,17679,17747,17737,17753,17704,17679,17678,17718,17725,17736,17737,17736,17753,\r\n17704,17705,17727,17727,17705,17725,13629,13619,13610,13592,13619,13611,12446,12455,12450,12456,12441,12450,12456,12451,12441,13651,13663,13642,13619,13651,13642,13639,13619,13629,12446,12452,12455,17764,17773,17753,12462,12454,12453,12457,12449,12458,12461,12452,12457,12454,12463,12458,11042,11084,10996,10833,10774,10769,10856,10865,10833,10968,10935,10856,13611,13620,13600,13613,13594,13612,13612,13600,13621,13622,13601,13613,13601,13622,13623,11460,11421,11502,11371,11421,11328,11371,11328,11271,11181,11271,11227,11181,11084,11131,11042,11131,11084,11008,11054,10968,11098,11054,11008,11192,11146,11098,11192,11239,11146,11288,11340,11239,2616,2569,2603,2532,2569,2533,2480,2471,2461,2442,2454,2461,2502,2488,2471,2533,2502,2532,2511,2496,2466,2466,2467,2455,2467,2456,2431,2433,2423,2444,2431,2444,2421,13104,13073,13117,2430,2442,2413,2413,2410,2430,2410,2423,2433,2220,2221,2208,2220,2230,2221,2215,2191,2208,2169,2155,2161,2181,2169,2191,2151,2161,2155,17373,17335,17341,17376,17352,17338,17320,17352,17377,17353,17335,17373,17378,17338,17353,17320,17377,17354,17337,17354,17379,17379,17355,17337,17356,17357,17340,16670,16671,16668,5648,5631,5593,5487,5540,5523,5524,5485,5523,5682,5681,5703,17412,17357,17393,5670,5681,5644,5580,5542,5541,5542,5597,5581,5488,5524,5541,17562,17560,17535,17379,17392,17355,17379,17411,17392,17531,17483,17519,17546,17518,17531,17546,17532,17518,17546,17548,17532,17549,17521,17548,17549,17562,17535,5606,5571,5587,5605,5587,5570,5605,5570,5622,17581,17596,17606,17562,17596,17560,17637,17606,17636,17636,17678,17679,17704,17678,17705,17725,17716,17736,17753,17736,17764,17705,17715,17725,13631,13611,13619,12455,12459,12450,12459,12456,12450,12451,12456,12460,13663,13664,13642,13619,13642,13631,12455,12452,12461,17782,17773,17764,12462,12463,12454,12467,12457,12458,12461,12457,12468,12467,12458,12463,11082,10996,11084,10769,10856,10833,10926,10968,10856,13620,13611,13632,13620,13621,13600,13633,13613,13612,13621,13634,13612,13633,13622,13613,13644,13623,13622,11421,11460,11328,11328,11227,11271,\r\n11084,11181,11227,11008,10968,10926,11098,11008,11056,11192,11098,11148,11192,11288,11239,2605,2569,2616,2569,2534,2533,2461,2471,2449,2442,2461,2436,2516,2488,2502,2471,2488,2449,2516,2502,2533,2495,2511,2466,2455,2467,2431,2443,2466,2455,2421,2444,2423,2411,2431,2421,13104,13117,13135,2442,2436,2413,2413,2394,2410,2410,2404,2423,2215,2208,2221,2230,2237,2221,2191,2215,2209,2155,2169,2181,2200,2181,2191,5655,5670,5644,17376,17389,17352,17378,17376,17338,17389,17377,17352,17353,17373,17390,17378,17353,17390,17354,17377,17391,17354,17391,17379,17393,17357,17356,5487,5558,5540,16670,16668,16664,17430,17413,17356,5648,5593,5658,5487,5523,5485,5524,5488,5485,5681,5682,5644,5671,5682,5693,5541,5542,5525,5581,5543,5542,5541,5525,5488,17411,17379,17391,17531,17519,17547,17546,17531,17558,17548,17546,17574,17579,17549,17548,17580,17562,17549,17411,17391,17428,5571,5550,5587,5570,5587,5550,17559,17519,17575,17562,17606,17596,17624,17636,17606,17678,17636,17664,17688,17705,17678,17716,17725,17702,17736,17716,17745,17736,17763,17764,17705,17688,17715,17725,17715,17702,13631,13641,13611,12455,12464,12459,12456,12459,12465,12460,12456,12466,13642,13664,13653,13642,13653,13631,12455,12461,12464,12484,12476,12462,12471,12463,12462,12467,12468,12457,12470,12461,12468,12467,12463,12472,11134,11082,11084,10828,10856,10769,10926,10856,10898,13611,13641,13632,13632,13621,13620,13612,13643,13633,13621,13632,13634,13612,13634,13643,13645,13622,13633,13644,13622,13645,11417,11328,11460,11328,11324,11227,11227,11222,11084,10926,10969,11008,11008,10969,11056,11056,11148,11098,2605,2638,2653,2638,2605,2616,2579,2569,2605,2579,2534,2569,2534,2516,2533,2436,2461,2449,2516,2499,2488,2472,2449,2488,2466,2481,2495,2443,2455,2431,2466,2443,2481,2421,2423,2404,2431,2411,2443,2411,2421,2404,13149,13104,13135,2436,2427,2413,2413,2407,2394,2395,2410,2394,2410,2395,2404,2215,2221,2227,2239,2221,2237,2222,2209,2215,2209,2200,2191,2155,2181,2170,2181,2200,2193,5609,5655,5644,17408,17389,17376,17409,17376,17378,17389,17410,17377,5625,5609,5553,17391,17377,\r\n17410,17413,17393,17356,16668,16669,16667,16668,16667,16664,5673,5685,5648,5673,5648,5658,5448,5485,5488,5671,5644,5682,17413,17429,17393,5542,5508,5525,5543,5581,5562,5542,5543,5508,5488,5525,5508,17547,17519,17559,17531,17547,17558,17546,17558,17574,17579,17548,17574,17549,17579,17580,17562,17580,17597,17391,17410,17428,5533,5550,5571,5479,5570,5550,17559,17575,17594,17562,17597,17606,17635,17636,17624,17624,17606,17597,17635,17664,17636,17678,17664,17688,17689,17716,17702,17744,17745,17716,17736,17745,17752,17736,17752,17763,17688,17702,17715,13641,13631,13653,12459,12464,12465,12456,12465,12469,12456,12469,12466,13664,13672,13653,12470,12464,12461,12471,12462,12476,12471,12475,12463,12467,12477,12468,12468,12477,12470,12472,12463,12478,17846,17844,17842,11222,11134,11084,10828,10898,10856,10926,10898,10969,13654,13632,13641,13655,13633,13643,13632,13656,13634,13634,13657,13643,13633,13655,13645,11417,11460,11500,11328,11417,11324,11227,11324,11222,10969,11055,11056,11056,11193,11148,2605,2653,2639,2605,2613,2579,2579,2564,2534,2516,2534,2499,2436,2449,2427,2499,2472,2488,2472,2459,2449,13149,13135,13166,13166,13217,13201,13217,13236,13201,2411,2404,2387,2407,2413,2427,2407,2389,2394,2386,2395,2394,2395,2387,2404,2231,2227,2221,2222,2215,2227,2231,2221,2239,2239,2237,2243,2211,2209,2222,2200,2209,2193,2170,2181,2193,5626,5609,5644,17408,17425,17389,17409,17408,17376,17426,17409,17378,17389,17427,17410,5589,5553,5609,16657,16664,16667,5685,5673,5695,16657,16662,16664,5466,5448,5488,5671,5645,5644,5683,5671,5685,5510,5543,5562,5543,5510,5508,5449,5488,5508,17559,17576,17547,17577,17558,17547,17593,17574,17558,17604,17579,17574,17579,17607,17580,17580,17607,17597,17410,17448,17428,5533,5479,5550,17622,17605,17575,17575,17605,17594,5607,5552,5588,17607,17635,17624,17597,17607,17624,17662,17664,17635,17662,17688,17664,17717,17716,17689,17662,17689,17702,17752,17745,17744,17716,17735,17744,12491,12485,12476,17688,17662,17702,13654,13641,13653,12465,12464,12473,12474,12469,12465,13697,13673,13672,13653,13672,13654,12470,\r\n12473,12464,12471,12476,12485,12483,12475,12471,12463,12475,12478,17841,17845,17842,17843,17840,17844,17840,17842,17844,11222,11228,11134,10828,10860,10898,10971,10969,10898,13632,13654,13656,13655,13643,13665,13634,13656,13657,13643,13657,13666,13655,13665,13645,11500,11535,11417,11418,11324,11417,11222,11324,11369,10969,10971,11055,11055,11147,11056,11147,11193,11056,2605,2639,2613,2598,2579,2613,2579,2598,2564,2564,2528,2534,2528,2499,2534,2427,2449,2459,2499,2469,2472,2469,2459,2472,13181,13149,13166,13181,13166,13201,13250,13201,13236,2422,2411,2387,2427,2406,2407,2389,2407,2406,2389,2377,2394,2395,2386,2369,2377,2386,2394,2387,2395,2369,2231,2238,2227,2227,2232,2222,2231,2239,2243,2243,2237,2248,2209,2211,2193,2222,2228,2211,5626,5589,5609,5626,5644,5645,17408,17447,17425,17389,17425,17427,17408,17409,17426,17448,17410,17427,5553,5589,5573,5507,5465,5486,5673,5704,5695,5685,5695,5683,16657,16661,16662,5449,5466,5488,5671,5646,5645,5646,5671,5683,5508,5510,5489,5508,5489,5449,17547,17576,17595,17593,17558,17577,17547,17595,17577,17604,17574,17593,17604,17621,17579,17607,17579,17621,5479,5533,5517,5480,5516,5479,5552,5516,5535,5588,5552,5572,17634,17635,17607,17662,17635,17634,17716,17717,17735,17689,17690,17717,17689,17662,17663,17762,17752,17744,17744,17735,17746,17762,17781,17752,12479,12465,12473,12474,12480,12469,12481,12474,12465,12487,12469,12480,13673,13654,13672,12473,12470,12482,12471,12485,12490,12483,12489,12475,12471,12490,12483,12489,12478,12475,12488,12482,12470,17841,17842,17838,17839,17840,17843,17840,17838,17842,11222,11323,11228,10898,10860,10929,10929,10971,10898,13673,13656,13654,13674,13665,13643,13657,13656,13675,13676,13666,13657,13674,13643,13666,13665,13677,13645,11501,11417,11535,11324,11418,11369,11418,11417,11501,11369,11323,11222,10971,11011,11055,11147,11055,11150,2672,2649,2639,2639,2649,2613,2598,2613,2630,2598,2597,2564,2565,2528,2564,2499,2528,2500,2427,2459,2447,2499,2500,2469,2447,2459,2469,13200,13149,13181,13218,13181,13201,13250,13237,13201,2387,2432,2422,2427,2426,2406,\r\n2406,2388,2389,2370,2377,2389,2386,2377,2369,2378,2387,2369,2242,2238,2231,2227,2238,2232,2222,2232,2228,2242,2231,2243,2243,2248,2251,5589,5626,5610,5626,5645,5610,17467,17447,17408,17425,17447,17468,17425,17468,17427,17467,17408,17426,5517,5533,5551,5589,5554,5573,5536,5553,5573,16657,16655,16653,16663,16666,16661,16661,16657,16659,5610,5645,5646,5683,5576,5646,5608,5623,5588,17595,17593,17577,17620,17604,17593,17621,17604,17632,17634,17607,17621,5498,5479,5517,5480,5500,5516,5441,5480,5479,5500,5535,5516,5535,5572,5552,5608,5588,5572,17634,17663,17662,17735,17717,17726,17689,17663,17690,17703,17717,17690,17744,17746,17762,17735,17726,17746,17780,17781,17762,12481,12465,12479,12479,12473,12486,13683,13707,13685,13719,13699,13707,13673,13683,13656,12486,12473,12482,17780,17795,17781,17839,17833,17836,12490,12495,12483,12482,12488,12493,17835,17841,17838,17831,17840,17839,17831,17838,17840,11228,11323,11273,10929,10860,10859,10971,10929,11011,13684,13665,13674,13685,13675,13656,13676,13657,13675,13686,13666,13676,13687,13674,13666,13665,13688,13677,13688,13701,13677,11418,11423,11369,13735,13701,13728,11369,11373,11323,11057,11055,11011,11150,11055,11057,11147,11150,11195,2649,2672,2681,2630,2613,2649,2630,2597,2598,2565,2564,2597,2565,2529,2528,2529,2500,2528,2426,2427,2447,2500,2485,2469,2447,2469,2448,13216,13200,13181,13181,13218,13216,13237,13218,13201,13270,13237,13250,13340,13321,13270,2406,2426,2412,2412,2388,2406,2389,2388,2370,2370,2362,2377,2369,2377,2362,2363,2378,2369,2242,2246,2238,2249,2242,2243,2248,2256,2251,2243,2251,2253,5589,5610,5554,17467,17484,17447,17468,17447,17484,17468,17485,17427,5501,5553,5536,5536,5573,5554,16653,16659,16657,16660,16663,16661,16660,16661,16659,5646,5627,5610,16663,16660,16665,17869,17870,17871,17595,17633,17623,17595,17623,17593,17620,17632,17604,17593,17623,17620,17621,17632,17649,17621,17651,17634,5498,5461,5479,5498,5517,5534,5437,5500,5480,5437,5480,5441,5441,5479,5461,17723,17701,17713,17713,17686,17700,5624,5608,5572,17663,17634,17651,17703,17726,17717,17676,17690,\r\n17663,17703,17690,17676,17762,17746,17772,17743,17746,17726,17762,17772,17780,12492,12481,12479,12492,12479,12486,13699,13685,13707,13683,13685,13656,13719,13710,13699,12486,12482,12494,17794,17795,17780,17823,17836,17833,17839,17836,17831,12495,12490,12500,17823,17833,17827,12498,12493,12488,12499,12482,12493,17835,17838,17832,17832,17838,17831,11323,11373,11273,10928,10929,10859,10928,11011,10929,13684,13698,13665,13684,13674,13687,13699,13675,13685,13676,13675,13699,13687,13666,13686,13686,13676,13700,13665,13698,13688,13701,13688,13712,11418,11465,11423,11369,11423,11373,13728,13701,13722,10928,11057,11011,11150,11057,11100,11150,11100,11195,11147,11195,11290,2681,2672,2702,2664,2649,2681,2649,2664,2630,2630,2648,2597,2565,2597,2599,2565,2566,2529,2500,2529,2512,2448,2426,2447,2500,2512,2485,2469,2485,2448,2248,2261,2256,2261,2267,2256,13237,13251,13218,13268,13237,13270,13270,13321,13305,2412,2426,2435,2388,2412,2405,2388,2371,2370,2370,2357,2362,2362,2356,2369,2363,2369,2356,2242,2249,2246,2243,2253,2249,2262,2251,2256,2262,2253,2251,5610,5591,5554,17502,17484,17467,17503,17468,17484,5501,5536,5519,5502,5536,5554,16653,16660,16659,5610,5627,5591,5611,5578,5576,17870,17872,17871,17623,17633,17650,17647,17632,17620,17648,17620,17623,17649,17632,17659,17621,17649,17651,17503,17484,17520,5500,5437,5518,5441,5422,5437,5441,5461,5401,17713,17701,17686,17661,17700,17686,17650,17633,17661,17676,17663,17651,17726,17703,17722,17676,17699,17703,17761,17772,17746,17761,17746,17743,17722,17743,17726,17780,17772,17761,12492,12496,12481,12486,12497,12492,13676,13699,13710,12494,12482,12499,12497,12486,12494,17794,17780,17788,17836,17823,17831,12500,12506,12495,17823,17827,17816,12498,12502,12493,12503,12499,12493,17832,17826,17835,17822,17832,17831,11273,11373,11423,13684,13708,13698,13709,13684,13687,13711,13687,13686,13700,13676,13710,13711,13686,13700,13712,13688,13698,13722,13701,13712,11374,11423,11465,11374,11465,11504,11100,11241,11195,11241,11290,11195,2702,2697,2681,2664,2681,2697,2648,2630,2664,2631,2597,2648,2631,\r\n2599,2597,2565,2599,2566,2529,2566,2547,2512,2529,2547,2435,2426,2448,2512,2486,2485,2486,2448,2485,2256,2267,2274,13251,13237,13268,13218,13251,13269,13268,13270,13305,2412,2435,2424,2424,2405,2412,2390,2388,2405,2388,2390,2371,2370,2371,2357,2350,2362,2357,2356,2362,2350,2356,2338,2363,2249,2252,2246,2253,2257,2249,2262,2256,2268,2265,2253,2262,5574,5554,5591,5462,5461,5499,5481,5462,5501,5502,5519,5536,5481,5501,5519,5574,5502,5554,5628,5611,5647,17872,17873,17871,5611,5628,5578,5557,5576,5578,5576,5556,5577,17623,17650,17660,17647,17659,17632,17648,17647,17620,17623,17660,17648,17649,17659,17675,17651,17649,17676,17714,17701,17724,5441,5400,5422,5422,5379,5437,5462,5401,5461,5441,5401,5400,17701,17677,17686,17661,17686,17677,17661,17677,17650,17703,17699,17722,17676,17675,17699,17761,17743,17760,17722,17742,17743,17761,17788,17780,12501,12496,12492,12501,12492,12497,12504,12494,12499,12497,12494,12505,17794,17788,17802,17822,17831,17823,12506,12509,12495,17817,17816,17827,17823,17816,17813,17835,17826,17825,12507,12493,12502,12504,12499,12503,12503,12493,12508,17832,17822,17826,11374,11273,11423,13717,13708,13684,13708,13718,13698,13709,13717,13684,13709,13687,13711,13720,13700,13710,13700,13721,13711,13712,13698,13718,13722,13712,13718,11374,11504,11466,11290,11241,11343,2707,2697,2702,2664,2697,2694,2666,2648,2664,2631,2648,2666,2599,2631,2632,2566,2599,2614,2547,2566,2580,2547,2530,2512,2435,2448,2460,2512,2530,2486,2470,2448,2486,2256,2274,2275,13251,13268,13286,13269,13251,13287,13306,13268,13305,2445,2424,2435,2424,2434,2405,2405,2408,2390,2379,2371,2390,2371,2364,2357,2350,2357,2345,2356,2350,2338,13355,13341,13305,2249,2257,2252,2257,2253,2265,2275,2268,2256,2268,2276,2262,2276,2265,2262,17875,17873,17874,5442,5462,5481,5481,5519,5502,5574,5590,5502,17872,17874,17873,5557,5520,5576,5538,5557,5578,5556,5576,5520,5577,5556,5537,17650,17677,17660,17672,17659,17647,17673,17647,17648,17674,17648,17660,17659,17672,17675,17649,17675,17676,17687,17701,17714,5419,5437,5379,5422,5400,5379,5442,5401,5462,5400,5401,\r\n5378,17701,17687,17677,17722,17699,17710,17675,17710,17699,17760,17743,17742,17760,17779,17761,17742,17722,17733,17761,17779,17788,12497,12505,12501,12504,12505,12494,17788,17801,17802,17823,17813,17822,17809,17817,17802,17809,17816,17817,17813,17816,17808,17825,17826,17812,12507,12508,12493,12502,12511,12507,12504,12503,12512,12512,12503,12508,17822,17812,17826,13717,13725,13708,13708,13726,13718,13717,13709,13727,13709,13711,13727,12501,12510,12514,13727,13711,13721,13733,13722,13718,13742,13747,13722,2710,2707,2702,2697,2707,2694,2664,2694,2666,2599,2632,2614,2566,2614,2600,2600,2580,2566,2547,2580,2567,2547,2567,2530,2460,2448,2470,2435,2460,2457,2530,2513,2486,2486,2501,2470,2286,2275,2274,13306,13286,13268,13287,13251,13286,2290,2274,2296,13306,13305,13341,2445,2434,2424,2435,2457,2445,2405,2434,2425,2405,2425,2408,2396,2390,2408,2371,2379,2364,2379,2390,2396,2364,2345,2357,2338,2350,2345,2338,2335,2328,2257,2263,2252,2265,2269,2257,2275,2280,2268,2281,2276,2268,2265,2276,2278,17874,17876,17875,5502,5442,5481,17885,17876,17882,5575,5577,5537,5557,5538,5520,5556,5520,5537,17687,17660,17677,17673,17672,17647,17648,17674,17673,17660,17685,17674,17672,17697,17675,17687,17714,17712,5376,5419,5379,5340,5379,5400,5404,5401,5442,5401,5362,5378,5400,5378,5340,17710,17733,17722,17675,17697,17710,17760,17742,17771,17760,17771,17779,17741,17742,17733,17779,17778,17788,12501,12505,12510,12504,12513,12505,17778,17801,17788,17809,17802,17801,17822,17813,17812,17809,17808,17816,17799,17813,17808,17825,17812,17820,12515,12508,12507,12507,12511,12516,12512,12517,12504,12512,12508,12515,13727,13725,13717,13725,13726,13708,13733,13718,13726,13734,13727,13721,13742,13722,13733,13741,13747,13742,2707,2710,2666,2694,2707,2666,2650,2614,2632,2600,2614,2634,2581,2580,2600,2567,2580,2581,2567,2548,2530,2460,2470,2487,2457,2460,2484,2530,2548,2513,2486,2513,2501,2470,2501,2487,2286,2280,2275,2286,2274,2290,13306,13322,13286,2296,2311,2306,2290,2296,2297,2328,2317,2323,2446,2434,2445,2445,2457,2446,2446,2425,2434,2425,2414,2408,2408,2414,\r\n2396,2373,2364,2379,2379,2396,2399,2364,2358,2345,2335,2338,2345,2335,2317,2328,2269,2263,2257,2269,2265,2278,2281,2268,2280,2276,2281,2278,17874,17877,17876,17876,17879,17882,5555,5575,5537,5483,5520,5538,5537,5520,5504,17687,17685,17660,17673,17698,17672,17674,17698,17673,5477,5438,5439,17709,17697,17672,17714,17734,17712,17685,17687,17712,5376,5398,5419,5376,5379,5360,5340,5360,5379,5401,5404,5362,17884,17882,17879,5378,5362,5341,5378,5341,5340,17710,17721,17733,17710,17697,17721,17759,17771,17742,17779,17771,17778,17759,17742,17741,17721,17741,17733,12513,12510,12505,12517,12513,12504,17793,17801,17778,17793,17809,17801,17813,17806,17812,17793,17808,17809,17799,17806,17813,17793,17799,17808,17811,17820,17812,12507,12516,12515,12511,12518,12516,12512,12519,12517,12512,12515,12520,13727,13739,13725,13740,13726,13725,13726,13741,13733,13727,13734,13739,13742,13733,13741,13741,13759,13747,2650,2634,2614,2634,2633,2600,2600,2633,2581,2567,2581,2548,2460,2487,2484,2484,2446,2457,2548,2531,2513,2531,2501,2513,2514,2487,2501,2286,2291,2280,2286,2290,2297,2323,2317,2306,2306,2297,2296,2425,2446,2458,2414,2425,2437,2414,2415,2396,2373,2358,2364,2391,2373,2379,2415,2399,2396,2379,2399,2391,2358,2349,2345,2335,2345,2349,2335,2327,2317,2263,2269,2277,2282,2269,2278,2291,2281,2280,2278,2281,2292,17878,17876,17877,17876,17878,17879,5537,5503,5555,5483,5504,5520,16633,16647,16644,5537,5504,5503,17711,17672,17698,5477,5439,5478,5377,5439,5438,17721,17697,17709,17709,17672,17711,5377,5420,5398,5377,5438,5420,5376,5361,5398,5376,5360,5323,5303,5360,5340,5404,5382,5362,17884,17879,17886,5362,5324,5341,5341,5304,5340,17759,17778,17771,17759,17741,17749,17721,17749,17741,12521,12513,12517,17778,17786,17793,17812,17806,17798,17799,17785,17806,17799,17793,17786,17820,17811,17821,17811,17812,17798,12515,12516,12522,17820,17821,17830,12523,12516,12518,12519,12512,12520,12519,12524,12517,12522,12520,12515,13740,13725,13739,13745,13726,13740,13746,13741,13726,13764,13759,13741,2633,2634,2667,2615,2581,2633,2581,2568,2548,2487,2498,2484,2446,\r\n2484,2468,2531,2548,2568,2531,2514,2501,2527,2487,2514,2297,2291,2286,2317,2307,2306,2307,2297,2306,2468,2458,2446,2425,2458,2450,2437,2425,2450,2415,2414,2437,2373,2380,2358,2391,2380,2373,2398,2399,2415,2391,2399,2398,2358,2361,2349,2344,2335,2349,2327,2335,2336,2322,2317,2327,2269,2282,2277,2282,2278,2287,2298,2281,2291,2281,2298,2292,2287,2278,2292,17878,17877,17880,17881,17879,17878,5463,5504,5483,5522,5483,5539,5503,5504,5463,5440,5497,5478,5440,5478,5439,5421,5439,5377,17709,17732,17721,17709,17711,17732,5377,5398,5361,5376,5323,5361,5360,5303,5323,5340,5304,5303,5382,5342,5362,17883,17886,17879,5324,5362,5342,5341,5324,5304,17759,17770,17778,17770,17759,17749,17739,17749,17721,12521,12517,12524,17786,17778,17770,17785,17798,17806,17799,17786,17785,17811,17815,17821,17811,17798,17805,12525,12522,12516,17829,17830,17821,12523,12525,12516,12518,12526,12523,12519,12520,12527,12519,12528,12524,12522,12527,12520,13739,13752,13740,13746,13726,13745,13740,13752,13745,13741,13746,13753,11506,11589,11564,13758,13764,13741,2633,2667,2652,2615,2601,2581,2652,2615,2633,2601,2568,2581,2487,2527,2498,2498,2468,2484,2531,2568,2549,2514,2531,2549,2549,2527,2514,2302,2291,2297,2317,2322,2307,2307,2302,2297,2458,2468,2450,2437,2450,2462,2451,2415,2437,2380,2372,2358,2391,2398,2380,2398,2415,2416,2358,2372,2361,2349,2361,2354,2335,2344,2336,2344,2349,2354,2322,2327,2336,2277,2282,2285,2294,2282,2287,2298,2291,2303,2304,2292,2298,2299,2287,2292,5482,5503,5463,17883,17879,17881,5482,5463,5423,5443,5463,5483,5505,5483,5522,17711,17750,17740,5440,5439,5421,5421,5377,5399,17732,17739,17721,17711,17740,17732,5377,5361,5339,5361,5323,5339,5285,5323,5303,5304,5270,5303,17883,17887,17886,5342,5305,5324,5287,5304,5324,17770,17749,17768,17739,17756,17749,17786,17770,17768,17785,17791,17798,17786,17768,17785,17811,17805,17815,17819,17821,17815,17798,17791,17805,12522,12525,12527,17819,17829,17821,12529,12525,12523,17819,17828,17829,12530,12519,12527,12528,12519,12530,13757,13745,13752,13753,13746,13745,13758,13741,13753,11589,11614,11564,\r\n2636,2601,2615,2651,2615,2652,2601,2602,2568,2517,2498,2527,2498,2489,2468,2568,2583,2549,2549,2552,2527,2302,2303,2291,2307,2322,2318,2313,2302,2307,2450,2468,2489,2473,2462,2450,2451,2437,2462,2415,2451,2438,2384,2372,2380,2380,2398,2397,2416,2415,2438,2416,2397,2398,2372,2367,2361,2354,2361,2367,2336,2344,2346,2344,2354,2355,2330,2322,2336,2293,2285,2282,2277,2285,2273,2294,2293,2282,2294,2287,2300,2298,2303,2304,2304,2299,2292,2299,2300,2287,5380,5423,5402,5443,5423,5463,5505,5443,5483,17740,17750,17757,5399,5440,5421,5339,5399,5377,17748,17739,17732,17740,17751,17732,5302,5339,5323,5285,5302,5323,5285,5303,5286,5304,5287,5270,5303,5270,5286,5363,5342,5380,5305,5342,5363,5287,5324,5305,17756,17768,17749,17739,17755,17756,17785,17776,17791,17776,17785,17768,17804,17815,17805,17804,17819,17815,17804,17805,17791,12531,12527,12525,12525,12529,12531,12523,12532,12529,17819,17818,17828,12530,12527,12533,12530,12533,12528,13757,13763,13745,13753,13745,13763,13753,13765,13758,2636,2635,2601,2651,2636,2615,2602,2601,2635,2602,2583,2568,2517,2489,2498,2517,2527,2552,2583,2582,2549,2582,2552,2549,2302,2312,2303,2330,2318,2322,2313,2307,2318,2302,2313,2312,2473,2450,2489,2462,2473,2490,2474,2451,2462,2438,2451,2452,2384,2367,2372,2384,2380,2397,2438,2428,2416,2428,2397,2416,2354,2367,2368,2344,2355,2346,2336,2346,2340,2354,2368,2355,2336,2340,2330,2293,2284,2285,2284,2273,2285,2293,2294,2300,2304,2303,2314,2299,2304,2309,2299,2308,2300,5443,5402,5423,5380,5402,5363,5505,5521,5443,5440,5399,5460,17740,17757,17758,17800,17792,17807,17748,17755,17739,17748,17732,17751,17758,17751,17740,5285,5269,5302,5247,5285,5286,5270,5287,5248,5270,5247,5286,5305,5363,5381,5287,5305,5271,17756,17776,17768,17755,17776,17756,17776,17790,17791,17819,17804,17818,17790,17804,17791,12533,12527,12531,12531,12529,12534,12535,12532,12523,12534,12529,12532,17828,17818,17834,12533,12536,12528,13757,13771,13763,13763,13770,13753,13770,13765,13753,2635,2636,2669,2636,2651,2671,2637,2602,2635,2602,2607,2583,2504,2489,2517,2517,2552,2537,2607,2582,2583,\r\n2582,2573,2552,2314,2303,2312,2330,2325,2318,2325,2313,2318,2312,2313,2324,2473,2489,2504,2490,2473,2503,2474,2462,2490,2475,2451,2474,2452,2451,2475,2438,2452,2429,2384,2385,2367,2384,2397,2403,2438,2429,2428,2428,2417,2397,2367,2385,2368,2346,2355,2347,2340,2346,2347,2374,2355,2368,2330,2340,2337,2284,2293,2301,2284,2279,2273,2293,2300,2301,2314,2316,2304,2304,2316,2309,2315,2299,2309,2308,2299,2315,2310,2300,2308,16635,16640,16628,5402,5403,5363,16628,16627,16626,17757,17792,17787,17757,17777,17758,17792,17800,17787,17748,17766,17755,17767,17748,17751,17769,17751,17758,5285,5247,5269,5269,5306,5302,5287,5271,5248,5193,5270,5248,5193,5247,5270,5403,5381,5363,17888,17889,17890,17755,17775,17776,17775,17790,17776,17814,17818,17804,17790,17803,17804,12531,12536,12533,12531,12534,12537,5300,5321,5241,17828,17834,17837,5300,5337,5321,5160,5216,5242,12528,12536,12538,13775,13763,13771,13763,13775,13770,2671,2669,2636,2669,2670,2635,2602,2637,2607,2637,2635,2670,2537,2504,2517,2537,2552,2573,2607,2573,2582,2314,2312,2324,2325,2330,2337,17896,17897,17898,17899,17896,17898,2473,2504,2503,2490,2503,2518,2474,2490,2505,2475,2474,2505,2475,2464,2452,2452,2440,2429,2384,2403,2385,2417,2403,2397,2428,2429,2417,2374,2368,2385,2365,2347,2355,2340,2347,2337,2374,2365,2355,2295,2284,2301,2289,2279,2284,2301,2300,2310,2326,2316,2314,2316,2320,2309,2315,2309,2321,2308,2315,2319,2310,2308,2319,16632,16635,16628,16632,16639,16635,16630,16628,16626,17757,17787,17777,17777,17769,17758,17774,17766,17748,17755,17766,17775,17774,17748,17767,5343,5359,5397,5220,5269,5247,5288,5306,5269,5196,5248,5271,5193,5248,5196,5193,5220,5247,5272,5381,5403,17891,17888,17890,17784,17790,17775,17824,17818,17814,17814,17804,17803,17790,17797,17803,12537,12536,12531,5375,5337,5358,5284,5300,5241,5241,5216,5188,5358,5337,5300,5160,5188,5216,12539,12538,12536,2700,2669,2671,2669,2688,2670,2607,2637,2621,2637,2670,2657,2537,2535,2504,2537,2573,2588,2607,2621,2573,2329,2314,2324,2341,2325,2337,17899,17898,17900,2535,2503,2504,2503,2536,2518,2505,2490,2518,2493,\r\n2475,2505,2475,2493,2464,2452,2464,2440,2418,2429,2440,2385,2403,2400,2403,2417,2400,2417,2429,2400,2374,2385,2381,2347,2365,2359,2337,2347,2352,2374,2381,2365,2295,2289,2284,2279,2289,2283,2320,2316,2326,2331,2326,2314,2309,2320,2321,2315,2321,2319,17918,17919,17920,16628,16630,16632,16632,16643,16639,5325,5306,5288,5343,5325,5288,17766,17774,17783,17784,17775,17766,5338,5359,5322,5359,5343,5322,5220,5250,5269,5288,5269,5250,17888,17893,17895,5163,5193,5196,5193,5132,5220,5272,5444,5381,17892,17888,17891,17784,17797,17790,5106,5160,5189,17810,17814,17803,17797,17810,17803,16422,16421,16415,16421,16424,16416,16430,16425,16427,5240,5284,5241,5240,5241,5188,16425,16424,16427,5160,5129,5188,12540,12539,12536,2669,2700,2688,2657,2670,2688,2637,2657,2621,2572,2535,2537,2608,2588,2573,2572,2537,2588,2622,2573,2621,2329,2331,2314,2341,2337,2348,17901,17900,17898,2535,2536,2503,2536,2538,2518,2505,2518,2538,2493,2505,2519,2464,2493,2477,2464,2439,2440,2418,2400,2429,2418,2440,2439,2385,2400,2381,2376,2359,2365,2359,2352,2347,2352,2348,2337,2365,2381,2392,2289,2295,2283,2320,2326,2333,2331,2333,2326,2334,2321,2320,2332,2319,2321,17921,17920,17919,16632,16630,16634,5307,5289,5272,5343,5288,5326,17783,17774,17789,17766,17783,17784,5266,5338,5322,5343,5326,5322,5195,5250,5220,5288,5250,5301,17888,17892,17893,5134,5196,5198,5163,5132,5193,5134,5163,5196,5132,5195,5220,17892,17891,17894,17783,17797,17784,5106,5129,5160,5130,5106,5161,16415,16421,16418,16422,16415,16419,16416,16424,16425,16421,16416,16418,16431,16425,16430,16430,16433,16431,5187,5240,5188,5129,5187,5188,2704,2657,2688,2621,2657,2658,2572,2587,2535,2588,2608,2619,2622,2608,2573,2572,2588,2587,2621,2658,2622,2331,2329,2339,17901,17902,17900,2571,2536,2535,2536,2555,2538,2505,2538,2519,2493,2519,2492,2477,2493,2492,2477,2439,2464,2418,2401,2400,2439,2419,2418,2401,2381,2400,2376,2382,2359,2365,2383,2376,2359,2366,2352,2352,2360,2348,2392,2381,2401,2392,2383,2365,2320,2333,2334,2333,2331,2342,2334,2332,2321,10315,10285,10314,16634,16630,16637,16632,16634,16638,5251,\r\n5272,5289,5301,5326,5288,17796,17789,17774,5243,5217,5161,5322,5301,5266,5322,5326,5301,5221,5250,5195,5245,5301,5250,5198,5222,5165,5198,5165,5134,5163,5108,5132,5163,5134,5108,5132,5164,5195,5251,5222,5272,5106,5035,5129,5081,5106,5130,5130,5161,5190,16413,16415,16418,16415,16411,16419,16423,16416,16425,16418,16416,16413,16425,16431,16429,2657,2704,2689,2658,2657,2689,2571,2535,2587,2608,2642,2619,2588,2619,2587,2608,2622,2642,2659,2622,2658,17902,17903,17900,2331,2339,2342,2571,2586,2536,2536,2586,2555,2538,2555,2519,2520,2492,2519,2477,2492,2463,2477,2463,2439,2418,2419,2401,2419,2439,2441,2376,2393,2382,2382,2375,2359,2376,2383,2393,2375,2366,2359,2366,2360,2352,2392,2401,2409,2392,2402,2383,2333,2342,2334,2343,2332,2334,10301,10285,10315,16642,16634,16637,16638,16634,16642,5244,5217,5266,5161,5217,5190,5245,5266,5301,5250,5221,5267,5221,5195,5164,5267,5245,5250,5222,5197,5165,5060,5132,5108,5132,5109,5164,5222,5251,5197,5035,5106,5081,5130,5131,5081,5130,5190,5191,16415,16413,16411,16423,16420,16416,16426,16423,16425,16412,16413,16416,16426,16425,16429,2704,2715,2689,2658,2689,2690,2571,2587,2606,2656,2619,2642,2587,2619,2618,2642,2622,2659,2659,2658,2690,17902,17904,17903,2339,2351,2342,2606,2586,2571,2589,2555,2586,2553,2519,2555,2506,2492,2520,2520,2519,2553,2506,2463,2492,2463,2441,2439,2419,2409,2401,2441,2420,2419,17917,17911,17913,17910,17913,17908,2393,2383,2402,17904,17910,17908,2409,2402,2392,2343,2334,2342,10285,10301,10269,16637,16646,16642,5244,5190,5217,5244,5266,5245,5267,5221,5268,5194,5221,5164,5245,5267,5218,5060,5109,5132,5194,5164,5109,5130,5191,5131,5081,5131,5107,5244,5191,5190,16412,16411,16413,16423,16417,16420,16416,16420,16412,16428,16423,16426,2715,2716,2689,2690,2689,2716,2587,2618,2606,2656,2618,2619,2642,2675,2656,2642,2659,2676,2659,2690,2691,17905,17903,17904,17905,17906,17903,17906,17912,17916,2606,2617,2586,2589,2553,2555,2506,2520,2539,2520,2553,2554,2506,2491,2463,2476,2441,2463,2419,2420,2409,10220,10183,10224,10200,10258,10239,17908,17913,17911,10239,10225,10200,17907,17904,\r\n17908,2402,2409,2420,2353,2343,2342,10316,10269,10301,10285,10269,10236,5245,5191,5244,5219,5268,5221,5267,5268,5218,5194,5249,5221,5245,5218,5191,5060,5061,5109,16485,16482,16483,5191,5162,5131,5107,5131,5162,4862,4836,4892,16412,16420,16417,4863,4862,4892,2716,2715,2740,2690,2716,2717,2617,2606,2618,2656,2654,2618,17922,17923,17924,17926,17928,17923,2659,2691,2676,2691,2690,2717,17905,17904,17907,17905,17907,17906,17906,17909,17912,2553,2589,2554,2539,2520,2554,10256,10221,10237,10237,10221,10197,2491,2476,2463,10183,10220,10178,10182,10224,10183,10200,10238,10258,17907,17908,17911,10200,10225,10182,10225,10224,10182,17915,17912,17909,10269,10254,10236,5268,5219,5218,5219,5221,5249,16482,16480,16483,5162,5191,5218,5109,5061,5133,5107,5162,5192,4836,4862,4810,4862,4863,4810,2716,2740,2741,2741,2717,2716,2654,2617,2618,2656,2686,2654,17925,17923,17922,17926,17923,17925,2676,2691,2705,2718,2691,2717,17909,17906,17907,10158,10197,10221,10197,10158,10178,10183,10178,10141,10183,10143,10182,10200,10199,10238,10238,10255,10258,17911,17914,17907,10200,10182,10162,10269,10286,10254,10218,10236,10254,5162,5218,5219,5219,5192,5162,2740,2769,2741,2741,2754,2717,17927,17925,17922,17926,17925,17929,2718,2705,2691,17927,17922,17931,17979,17980,17981,10286,10300,10254,10141,10178,10158,10143,10183,10141,10182,10143,10162,10162,10199,10200,10223,10238,10199,10255,10238,10223,10258,10255,10254,10218,10254,10255,2769,2740,2768,17989,17984,17986,17980,17986,17984,17930,17925,17927,17925,17930,17929,2705,2718,2730,2771,2705,2755,17981,17980,17982,10125,10143,10141,10162,10143,10105,10162,10161,10199,10181,10223,10199,10222,10255,10223,10219,10218,10255,2769,2768,2791,17989,17987,17984,17980,17984,17983,17927,17933,17930,2718,2742,2730,2705,2730,2743,2743,2755,2705,17982,17980,17983,10125,10105,10143,10161,10162,10105,10161,10181,10199,10223,10181,10222,10222,10219,10255,10219,10176,10218,2801,2791,2768,2769,2791,2802,17987,17989,17992,17983,17984,17987,2743,2730,2742,17933,17942,17941,17982,17983,17985,10105,10142,10161,10142,10181,\r\n10161,10198,10222,10181,10219,10222,10177,10176,10219,10177,2791,2801,2814,18004,18000,17994,17989,17994,17992,17987,17992,17990,17983,17987,17985,2743,2742,2770,2743,2782,2793,17988,17982,17985,10181,10142,10160,10222,10198,10177,10160,10198,10181,2825,2814,2801,18000,17997,17994,17994,17990,17992,17985,17987,17990,2743,2770,2782,17988,17985,17991,10198,10160,10177,2835,2814,2825,2801,2824,2825,17997,18000,18003,17997,17990,17994,17985,17990,17993,2770,2792,2782,2792,2836,2826,18006,18003,18000,2835,2825,2843,2825,2824,2842,17997,18003,18002,17990,17997,17999,17995,17993,17990,17985,17993,17996,2782,2792,2803,2792,2826,2815,2843,2854,2835,18014,18020,18017,2842,2853,2825,18008,18002,18003,17999,17997,18002,17990,17999,17995,17995,17998,17993,17998,17996,17993,2803,2792,2815,2826,2837,2815,2843,2861,2854,18017,18020,18023,18014,18017,18012,2842,2860,2853,18002,18008,18009,17999,18002,18005,18001,17995,17999,2837,2870,2862,2815,2837,2844,18008,18014,18012,18023,18018,18017,18018,18012,18017,2859,2860,2842,18032,18028,18023,18008,18011,18009,18009,18005,18002,17999,18005,18001,2874,2862,2870,2837,2862,2855,2837,2855,2844,18008,18012,18011,18023,18024,18018,18018,18015,18012,2873,2860,2859,2873,2877,2860,18023,18028,18024,18011,18013,18009,18009,18007,18005,18001,18005,18007,2874,2871,2862,2871,2855,2862,2844,2855,2863,18012,18015,18011,18018,18024,18021,18018,18021,18015,2859,2878,2873,11878,11891,11867,18029,18024,18028,18013,18011,18016,2885,2896,2892,18007,18009,18010,2874,2879,2871,2875,2855,2871,2872,2863,2855,18011,18015,18019,18026,18021,18024,18021,18019,18015,2881,2873,2878,11891,11878,11902,11854,11878,11867,18029,18026,18024,18029,18028,18035,2901,2897,2889,2885,2892,2889,2879,2885,2882,2875,2871,2879,2872,2855,2875,18011,18019,18022,18026,18025,18021,18019,18021,18025,11845,11854,11867,11890,11902,11878,18028,18038,18035,11866,11878,11854,18033,18026,18029,18029,18035,18033,2897,2891,2889,2885,2889,2882,2875,2879,2882,2872,2875,2880,2897,2909,2905,18026,18030,18025,18019,18025,18027,11845,11836,11854,18045,\r\n18041,18038,11890,11878,11866,18035,18038,18041,11866,11854,11844,18033,18030,18026,18033,18035,18039,2900,2891,2897,2891,2886,2889,2889,2886,2882,2875,2882,2886,2884,2880,2875,2897,2905,2900,18025,18030,18031,18025,18031,18027,11836,11844,11854,18046,18041,18045,11866,11889,11890,18035,18041,18039,11844,11865,11866,18036,18030,18033,18033,18039,18036,2891,2900,2895,2886,2891,2884,2884,2875,2886,2904,2900,2905,18031,18030,18037,18034,18027,18031,11836,11830,11844,18046,18039,18041,18052,18046,18045,11866,11865,11889,11865,11844,11843,18036,18037,18030,18043,18036,18039,2904,2895,2900,2891,2895,2884,18031,18037,18040,2904,2915,2913,11830,11843,11844,18048,18039,18046,11926,11889,11914,11901,11889,11865,11865,11843,11863,18042,18037,18036,18043,18042,18036,18043,18039,18047,2904,2908,2895,2895,2893,2884,18040,18037,18044,2904,2913,2908,11830,11835,11843,18048,18047,18039,18046,18053,18048,11901,11914,11889,11865,11877,11901,11863,11843,11842,11877,11865,11863,18042,18044,18037,18043,18050,18042,18043,18047,18051,2906,2895,2908,2893,2895,2902,2913,2920,2916,2913,2916,2908,11842,11843,11835,18055,18047,18048,18055,18048,18053,11914,11901,11925,11901,11877,11888,11877,11863,11842,18049,18044,18042,18043,18054,18050,18050,18049,18042,18056,18051,18047,18043,18051,18054,2906,2902,2895,2910,2906,2908,2924,2916,2920,2916,2910,2908,11842,11835,11828,18055,18056,18047,18053,18061,18055,11913,11925,11901,11877,11864,11888,11901,11888,11913,11877,11842,11864,2927,2924,2920,18058,18050,18054,18049,18050,18057,18059,18051,18056,18054,18051,18060,2910,2902,2906,2924,2922,2916,2922,2910,2916,11842,11828,11852,18055,18062,18056,18055,18061,18062,18068,18062,18061,11864,11874,11888,11913,11888,11912,11842,11852,11864,2927,2932,2924,18058,18057,18050,18058,18054,18060,18059,18060,18051,18056,18063,18059,2910,2911,2902,2928,2922,2924,2910,2922,2921,11841,11852,11828,18056,18062,18063,18062,18068,18071,11852,11874,11864,11897,11888,11874,11912,11888,11897,18068,18081,18077,2928,2924,2932,18057,18058,18064,18058,18060,18065,18060,18059,\r\n18066,18067,18059,18063,2911,2910,2917,2928,2921,2922,2910,2921,2917,11861,11852,11841,11841,11828,11834,18062,18071,18063,18071,18068,18077,11861,11874,11852,11885,11897,11874,18081,18092,18087,18077,18081,18087,2932,2933,2928,2938,2950,2945,2938,2933,2932,18060,18069,18065,18058,18065,18070,18067,18066,18059,18060,18066,18069,18063,18072,18067,2921,2928,2933,2917,2921,2925,11841,11862,11861,11853,11841,11834,18071,18072,18063,18071,18077,18072,11885,11874,11861,11908,11897,11885,18101,18087,18092,18077,18087,18076,2938,2945,2937,2938,2929,2933,18073,18065,18069,18073,18070,18065,18074,18066,18067,18075,18069,18066,18076,18067,18072,2929,2921,2933,2929,2925,2921,2930,2917,2925,11841,11853,11862,11861,11862,11886,11834,11859,11853,18076,18072,18077,11861,11886,11885,11922,11908,11885,18087,18101,18091,18087,18091,18076,2946,2937,2945,2929,2938,2937,18078,18073,18069,18070,18073,18079,18080,18066,18074,18074,18067,18076,18075,18078,18069,18080,18075,18066,2929,2934,2925,2930,2935,2917,2925,2934,2930,11875,11862,11853,11886,11862,11887,11876,11853,11859,11885,11886,11909,18104,18091,18101,11885,11909,11922,18084,18076,18091,2946,2940,2937,2945,2954,2946,2929,2937,2934,18078,18082,18073,2976,2971,2954,18074,18083,18080,18084,18074,18076,18085,18078,18075,18086,18075,18080,2935,2930,2939,2940,2930,2934,11875,11887,11862,11876,11875,11853,11887,11909,11886,11882,11876,11859,18104,18097,18091,11922,11909,11932,18091,18097,18084,2946,2947,2940,2940,2934,2937,2946,2954,2947,18088,18082,18078,2954,2971,2965,18074,18089,18083,18080,18083,18090,18084,18089,18074,18085,18088,18078,18086,18085,18075,18080,18090,18086,2939,2930,2940,2935,2939,2942,11887,11875,11898,11876,11899,11875,11887,11923,11909,11882,11900,11876,11923,11932,11909,18096,18084,18097,2940,2947,2939,2955,2947,2954,18088,18093,18082,2977,2965,2971,2954,2965,2955,18089,18094,18083,18083,18095,18090,18084,18096,18089,18085,18098,18088,18085,18086,18099,18086,18090,18100,2942,2939,2948,11898,11875,11899,3206,3203,3204,11899,11876,11910,11923,11887,11933,11911,11900,\r\n11882,11900,11910,11876,2947,2951,2939,2955,2951,2947,2999,2994,2977,2965,2977,2966,2955,2965,2956,18089,18096,18094,18094,18102,18083,18083,18102,18095,18095,18103,18090,18098,18085,18105,18088,18098,18106,18086,18100,18099,18085,18099,18105,18107,18100,18090,2948,2939,2951,2948,2952,2942,3202,3203,3201,3204,3203,3202,3201,3197,3199,3208,3204,3207,3188,3195,3198,11911,11882,11924,3193,3197,3195,2956,2951,2955,2984,2977,2994,2966,2977,2978,2956,2965,2966,3204,3205,3207,18108,18095,18102,18103,18095,18108,18107,18090,18103,18098,18105,18109,18109,18106,18098,18100,18110,18099,18111,18105,18099,18112,18100,18107,2956,2948,2951,2952,2948,2957,3202,3201,3199,3204,3202,3205,3193,3199,3197,3193,3195,3188,11911,11934,11945,11917,11924,11882,11911,11924,11934,2984,2978,2977,18109,18115,18106,2966,2978,2972,2956,2966,2961,3200,3205,3202,3196,3194,3200,18113,18107,18103,18109,18105,18114,18100,18116,18110,18110,18111,18099,18111,18114,18105,18112,18116,18100,18112,18107,18117,2956,2961,2948,2957,2948,2962,3202,3199,3200,3199,3193,3196,3193,3188,3190,11944,11945,11934,11917,11938,11924,11944,11934,11924,2978,2984,2972,18115,18109,18119,2972,2961,2966,3190,3194,3196,18146,18147,18148,18113,18117,18107,3192,3194,3190,18118,18109,18114,18110,18116,18120,18121,18111,18110,18114,18111,18121,18122,18116,18112,3191,3189,3186,2961,2962,2948,2967,2957,2962,3190,3196,3193,3187,3190,3188,3187,3188,3185,11938,11917,11939,11938,11944,11924,2972,2984,2988,18118,18119,18109,2984,3000,2997,2972,2973,2961,3192,3187,3189,3187,3192,3190,18118,18114,18123,18122,18120,18116,18120,18124,18110,18124,18121,18110,18125,18114,18121,18122,18112,18126,3187,3186,3189,2962,2961,2973,2975,2967,2962,3187,3185,3183,3181,3177,3180,3181,3183,3185,2988,2984,2997,2972,2988,2995,18119,18118,18127,3000,3006,2997,2973,2972,2983,18125,18123,18114,18118,18123,18128,18122,18129,18120,18120,18129,18124,18124,18130,18121,18121,18130,18125,3186,3182,3184,3187,3183,3186,2975,2962,2973,2967,2975,2980,3175,3180,3177,3181,3180,3183,2995,2988,2997,2972,2995,2987,18127,18118,\r\n18131,3007,2997,3006,2972,2987,2983,2975,2973,2983,18132,18123,18125,18133,18128,18123,3034,3041,3046,3184,3182,3178,18134,18124,18129,18135,18130,18124,18136,18125,18130,3182,3186,3183,2980,2975,2986,3175,3179,3180,3182,3183,3180,3007,2995,2997,2995,2996,2987,18127,18131,18137,3006,3017,3007,2983,2987,2996,2983,2989,2975,18132,18133,18123,18125,18138,18132,18128,18133,18139,3034,3017,3041,3179,3178,3182,18124,18134,18135,3172,3178,3176,18140,18130,18135,18125,18136,18138,18136,18130,18140,2989,2986,2975,3179,3175,3176,3179,3182,3180,3007,3005,2995,2996,2995,3005,3007,3017,3021,2983,2996,2989,3059,3072,3066,18132,18138,18141,18133,18142,18139,3017,3034,3030,3179,3176,3178,3172,3170,3168,3176,3173,3172,3158,3168,3164,18138,18136,18143,18140,18144,18136,2986,2989,2998,3176,3175,3173,3015,3005,3007,2996,3005,3009,3021,3017,3025,3021,3015,3007,3001,2989,2996,3059,3066,3054,18145,18141,18138,3059,3054,3042,3035,3030,3042,3017,3030,3025,3172,3173,3170,3164,3168,3170,3151,3158,3164,18136,18144,18143,18145,18138,18143,3158,3151,3129,3002,2998,2989,3015,3020,3005,3009,3005,3016,3001,2996,3009,3029,3021,3025,3024,3015,3021,2989,3001,3008,3060,3054,3066,3084,3078,3066,3042,3054,3048,3035,3025,3030,3048,3035,3042,3118,3129,3107,3084,3118,3107,2998,3002,3010,3002,2989,3008,3024,3020,3015,3020,3016,3005,3008,3009,3016,3008,3001,3009,3029,3024,3021,3036,3029,3025,3060,3048,3054,3073,3060,3066,3084,3083,3078,3078,3073,3066,3035,3036,3025,3047,3035,3048,3084,3107,3096,3012,3010,3002,3013,3002,3008,3020,3024,3028,3022,3016,3020,3022,3008,3016,3029,3028,3024,3043,3029,3036,3060,3058,3048,3060,3073,3071,3096,3083,3084,3078,3083,3073,3036,3035,3047,3058,3047,3048,3010,3012,3018,3013,3012,3002,3013,3008,3019,3028,3022,3020,3022,3019,3008,3029,3040,3028,3029,3043,3040,3036,3047,3043,3058,3060,3071,3071,3073,3082,3065,3047,3058,3012,3013,3018,3023,3013,3019,3026,3022,3028,3019,3022,3026,3037,3028,3040,3043,3053,3040,3047,3055,3043,3070,3058,3071,3082,3081,3071,3065,3061,3047,3058,3070,3065,3013,3023,3018,3023,3019,3027,3037,3026,3028,3032,\r\n3019,3026,3040,3050,3037,3043,3055,3053,3040,3053,3050,3061,3055,3047,3070,3071,3081,3093,3081,3082,3061,3065,3075,3070,3075,3065,3027,3019,3032,3037,3038,3026,3032,3026,3038,3037,3050,3049,3055,3064,3053,3053,3064,3050,3061,3064,3055,3081,3075,3070,3075,3074,3061,3049,3038,3037,3063,3049,3050,3063,3050,3064,3074,3064,3061,3075,3081,3088,3075,3085,3074,3063,3068,3049,3063,3064,3074,3085,3075,3088,3074,3085,3086,3063,3077,3068,3063,3074,3077,3074,3086,3077,9869,9871,9873,9876,9873,9871,6087,6078,6098,6097,6087,6106,9871,9875,9876,6087,6066,6078,6078,6077,6098,6097,6066,6087,6116,6097,6106,9880,9876,9875,6055,6078,6066,6078,6055,6077,6097,6086,6066,6105,6097,6116,9880,9875,9879,6066,6043,6055,6077,6055,6064,6105,6086,6097,6066,6086,6065,6128,6105,6116,9879,9875,9878,6116,6137,6128,6066,6065,6043,6029,6055,6043,6064,6055,6029,6086,6105,6096,6096,6065,6086,6128,6117,6105,9879,9878,9882,6137,6138,6128,6043,6065,6042,6043,6015,6029,6040,6064,6029,6096,6105,6117,6096,6085,6065,6128,6138,6117,9884,9882,9878,6054,6042,6065,6043,6042,6015,6015,6004,6029,6040,6053,6064,6013,6040,6029,6125,6096,6117,6085,6096,6104,6067,6065,6085,6138,6139,6117,6138,6158,6139,6054,6030,6042,6054,6065,6067,6042,6030,6015,6015,5988,6004,6029,6004,6003,6040,6027,6053,6013,6027,6040,6029,6003,6013,6125,6114,6096,6125,6117,6139,6104,6096,6114,6085,6104,6088,6067,6085,6088,6145,6139,6158,6054,6044,6030,6054,6067,6044,5988,6015,6030,6004,5988,5976,6004,5976,6003,6053,6027,6039,6027,6013,5985,6013,6003,6001,6114,6125,6135,6145,6125,6139,6114,6126,6104,6088,6104,6115,6088,6079,6067,9886,9888,9884,6016,6030,6044,6045,6044,6067,5988,6030,6016,5964,5976,5988,5986,6003,5976,6039,6027,6012,6013,6001,5985,6027,5985,6012,5986,6001,6003,6135,6125,6145,6114,6135,6136,6126,6114,6136,6127,6104,6126,6127,6115,6104,6088,6115,6107,6088,6100,6079,6079,6057,6067,9886,9890,9888,6016,6044,6045,6045,6067,6057,5989,5988,6016,5964,5952,5976,5964,5988,5989,5952,5986,5976,6039,6012,6026,6001,5973,5985,5985,6000,6012,6001,5986,5973,6135,6145,6155,6135,6156,6136,6126,6136,6146,\r\n6147,6127,6126,6127,6129,6115,6129,6107,6115,6100,6088,6107,6100,6080,6079,6079,6080,6057,6045,6017,6016,6031,6045,6057,5989,6016,6017,5952,5964,5939,5975,5964,5989,5952,5973,5986,6000,6026,6012,5973,5962,5985,5962,6000,5985,6156,6135,6155,6146,6136,6156,6146,6157,6126,6147,6148,6127,6147,6126,6157,6129,6127,6148,6129,6118,6107,6118,6100,6107,6080,6100,6092,6080,6068,6057,6045,6031,6017,6031,6057,6068,6017,6005,5989,5964,5975,5939,5923,5952,5939,5975,5989,6005,5950,5973,5952,6011,6026,6000,5962,5973,5950,5962,5984,6000,6148,6147,6167,6168,6147,6157,6129,6148,6140,6140,6118,6129,6118,6093,6100,6092,6100,6093,6080,6092,6072,6080,6072,6068,6031,6005,6017,6068,6056,6031,5963,5939,5975,5923,5950,5952,5923,5939,5896,6005,6002,5975,9846,9842,9850,6011,6000,5984,5937,5962,5950,5967,5984,5962,6168,6167,6147,6169,6148,6167,6159,6140,6148,6140,6120,6118,6093,6118,6120,6092,6093,6071,6071,6072,6092,6062,6068,6072,6031,6041,6005,6056,6068,6062,6031,6056,6041,5963,5938,5939,5963,5975,5987,5923,5921,5950,5939,5938,5896,5910,5923,5896,6002,6005,6028,5987,5975,6002,9842,9846,9838,9846,9841,9838,5937,5967,5962,5937,5950,5921,5990,5984,5967,6159,6148,6169,6159,6142,6140,6142,6120,6140,6093,6120,6109,6071,6093,6082,6051,6072,6071,6051,6062,6072,6041,6028,6005,6062,6049,6056,6046,6041,6056,5963,5974,5938,5974,5963,5987,5910,5921,5923,5938,5922,5896,5871,5910,5896,6028,6014,6002,5987,6002,6014,9835,9838,9841,5953,5967,5937,5895,5937,5921,5990,5967,5966,6177,6159,6169,6161,6142,6159,6131,6120,6142,6131,6109,6120,6109,6090,6093,6082,6093,6090,6060,6071,6082,6051,6071,6060,6062,6051,6037,6046,6028,6041,6049,6062,6037,6046,6056,6049,5974,5955,5938,5974,5987,5996,5895,5921,5910,5938,5951,5922,5897,5896,5922,5871,5895,5910,5896,5883,5871,6028,6032,6014,5987,6014,5996,9831,9838,9835,5953,5966,5967,5925,5953,5937,5937,5895,5925,9835,9832,9828,6177,6161,6159,6161,6150,6142,6131,6142,6150,6131,6110,6109,6091,6090,6109,6082,6090,6070,6060,6082,6070,6046,6032,6028,6037,6036,6049,6018,6046,6049,5970,5955,5974,5951,5938,5955,5996,5970,5974,5951,5924,\r\n5922,5897,5883,5896,5897,5922,5924,5895,5871,5873,5857,5871,5883,6032,5997,6014,5997,5996,6014,9831,9835,9828,5966,5953,5943,5925,5943,5953,5913,5925,5895,9832,9824,9828,6179,6161,6177,6162,6150,6161,6131,6150,6132,6131,6132,6110,6109,6110,6091,6091,6070,6090,6046,6018,6032,6018,6049,6036,5940,5951,5955,5996,5997,5970,5940,5924,5951,5857,5883,5897,5903,5897,5924,5871,5849,5873,5895,5873,5886,5871,5857,5845,6032,6018,5997,5966,5943,5977,5913,5943,5925,5913,5895,5886,9819,9828,9824,6179,6162,6161,6162,6132,6150,6121,6110,6132,6102,6091,6110,6091,6083,6070,5940,5955,5916,5903,5924,5940,5897,5884,5857,5903,5884,5897,5871,5845,5849,5860,5873,5849,5860,5886,5873,5857,5824,5845,5965,5977,5943,5913,5942,5943,5913,5886,5911,9817,9819,9824,6171,6162,6179,6132,6162,6151,6121,6102,6110,6143,6121,6132,6083,6091,6102,5940,5916,5929,5940,5929,5903,5884,5867,5857,5903,5879,5884,5827,5849,5845,5836,5860,5849,5886,5860,5885,5846,5824,5857,5824,5827,5845,9817,9824,9825,5965,5943,5942,5942,5913,5911,5886,5885,5911,9819,9817,9814,6162,6171,6151,6132,6151,6143,6111,6102,6121,6143,6124,6121,6111,6083,6102,5904,5929,5916,5929,5904,5903,5884,5879,5867,5846,5857,5867,5903,5904,5879,5827,5836,5849,5836,5861,5860,5885,5860,5861,5825,5824,5846,5827,5824,5797,9825,9820,9817,5942,5911,5941,5911,5885,5912,9817,9812,9814,6171,6172,6151,6143,6151,6163,6111,6121,6124,6134,6124,6143,6111,6103,6083,5842,5867,5879,5842,5846,5867,5869,5879,5904,5836,5827,5816,5836,5850,5861,5885,5861,5887,5815,5824,5825,5825,5846,5842,5797,5824,5815,5816,5827,5797,9820,9815,9817,5941,5911,5912,5887,5912,5885,9817,9815,9812,9804,9814,9812,6151,6172,6163,6143,6163,6154,6111,6124,6103,6124,6134,6103,6143,6154,6134,5842,5879,5868,5868,5879,5869,5816,5828,5836,5828,5850,5836,5850,5875,5861,5887,5861,5875,5825,5804,5815,5825,5842,5822,5815,5796,5797,5816,5797,5805,9815,9813,9809,9813,9811,9805,9809,9812,9815,9809,9804,9812,6172,6180,6163,6154,6163,6152,6134,6154,6152,5843,5842,5868,5843,5868,5869,5805,5828,5816,5828,5859,5850,5875,5850,5874,5887,5875,5898,5825,5822,5804,5815,\r\n5804,5796,5842,5843,5822,5797,5796,5777,5784,5805,5797,9813,9805,9809,9803,9805,9811,9809,9796,9804,6180,6173,6163,6152,6163,6173,5826,5828,5805,5848,5859,5828,5874,5850,5859,5875,5874,5898,5803,5804,5822,5785,5796,5804,5777,5796,5785,5784,5797,5777,5784,5814,5805,9809,9805,9796,9803,9786,9805,9779,9804,9796,5826,5848,5828,5814,5826,5805,5848,5872,5859,9808,9807,9788,9808,9788,9803,5785,5804,5803,5785,5770,5777,5784,5777,5765,5814,5784,5802,9786,9796,9805,9803,9788,9786,9786,9779,9796,5848,5826,5847,5814,5833,5826,5847,5872,5848,9807,9798,9788,5785,5803,5795,5785,5795,5770,5777,5770,5765,5784,5765,5776,5802,5784,5793,5814,5802,5820,9786,9788,9775,9786,9775,9779,5833,5847,5826,5833,5814,5820,9797,9780,9798,9780,9788,9798,5806,5795,5803,5786,5770,5795,5765,5770,5758,5776,5765,5764,5776,5793,5784,5802,5793,5813,5821,5820,5802,9780,9775,9788,9779,9775,9769,5833,5858,5847,5833,5820,5841,9780,9797,9787,5806,5786,5795,5770,5786,5771,5770,5771,5758,5765,5758,5752,5764,5765,5752,5776,5764,5783,5776,5794,5793,5793,5794,5813,5813,5821,5802,5821,5841,5820,9780,9770,9775,9775,9766,9769,9787,9806,9789,9780,9787,9770,5786,5806,5807,5787,5771,5786,5771,5759,5758,5752,5758,5747,5764,5752,5751,5775,5783,5764,5794,5776,5783,5812,5813,5794,9800,9781,9799,9781,9789,9799,9775,9770,9766,9787,9789,9770,5787,5786,5807,5787,5772,5771,5771,5772,5759,5747,5758,5759,5752,5747,5742,5752,5742,5751,5763,5764,5751,5775,5792,5783,5775,5764,5763,5794,5783,5792,9781,9800,9790,5792,5812,5794,9789,9781,9770,9763,9766,9770,5772,5760,5759,5753,5747,5759,5742,5747,5740,5746,5751,5742,5757,5763,5751,5775,5782,5792,5775,5763,5769,9781,9790,9776,9793,9776,9790,9781,9771,9770,9763,9770,9771,5760,5772,5778,5760,5753,5759,5740,5747,5753,5740,5739,5742,5746,5757,5751,5746,5742,5739,5763,5757,5769,5769,5782,5775,9776,9793,9784,9776,9771,9781,9764,9763,9771,5746,5756,5757,5745,5746,5739,5756,5769,5757,9783,9773,9784,9773,9776,9784,9776,9764,9771,5756,5746,5745,9792,9777,9783,9773,9783,9777,9773,9764,9776,5750,5756,5745,9801,9777,9792,9777,9767,9773,9773,9767,9764,\r\n9801,9791,9777,9777,9782,9767,9767,9760,9764,9782,9777,9791,9782,9768,9767,9772,9760,9767,9768,9772,9767,9760,9772,9765,9768,9765,9772,9765,9761,9760,9765,9768,9757,9761,9765,9757,8171,8170,8210,8171,8120,8170,8171,8210,8236,8171,8149,8120,8236,8210,8259,8188,8149,8171,8149,8134,8120,8187,8149,8188,8134,8149,8152,8134,8102,8120,8102,8084,8120,8058,8034,8055,8034,8029,8055,8152,8149,8187,8152,8122,8134,8134,8101,8102,8057,8084,8102,8085,8084,8069,7974,7968,7959,8029,8005,8004,8058,8085,8069,8058,8044,8034,8034,8009,8029,8152,8136,8122,8122,8101,8134,8101,8057,8102,8057,8069,8084,7974,7985,7987,7968,7974,7979,7960,7959,7968,7985,8004,8005,8009,8005,8029,8058,8069,8044,8034,8044,8017,8034,8017,8009,8105,8122,8136,8122,8089,8101,8101,8083,8057,8044,8069,8057,7985,8005,7987,7974,7987,7979,7968,7979,7980,7959,7960,7954,7969,7960,7968,8009,7987,8005,8032,8017,8044,7996,8009,8017,8105,8089,8122,8089,8088,8101,8101,8088,8083,8056,8057,8083,8044,8057,8032,7996,7979,7987,7979,7997,7980,7980,7969,7968,7969,7964,7960,7996,7987,8009,8032,8008,8017,7996,8017,8008,8072,8089,8105,8089,8060,8088,8083,8088,8070,8032,8057,8056,8070,8056,8083,7996,8008,7979,8010,7997,7979,7980,7997,8011,7969,7980,7988,7957,7960,7964,7969,7975,7964,8008,8032,8033,8060,8089,8072,8086,8072,8105,8060,8070,8088,8032,8056,8033,8070,8035,8056,8010,7979,8008,8018,7997,8010,8011,7997,8019,7980,8011,8020,7998,7988,7980,7988,7981,7969,7975,7969,7981,8008,8033,8010,8060,8072,8046,8072,8086,8061,8035,8070,8060,8033,8056,8035,8018,8019,7997,8018,8010,8035,8011,8019,8036,8020,8011,8037,8020,8013,7980,7998,8012,7988,7998,7980,8013,7988,7989,7981,7975,7981,7989,8033,8035,8010,8046,8072,8061,8035,8060,8046,8061,8086,8059,8045,8019,8018,8035,8046,8018,8045,8036,8019,8011,8036,8037,8020,8037,8039,8013,8020,8039,7998,8021,8012,8012,7989,7988,4224,4217,4206,8046,8061,8018,8071,8059,8086,8061,8059,8018,8018,8059,8045,8062,8036,8045,8036,8063,8037,8039,8037,8064,4217,4218,4201,8038,8021,7998,4206,4217,4202,8458,8402,8431,8332,8402,8401,8045,8059,8071,8103,8071,8086,8036,8062,\r\n8063,8045,8073,8062,8037,8063,8074,8064,8037,8074,4218,4223,4211,4212,4201,4218,4217,4201,4202,8431,8402,8375,8332,8375,8402,8401,8349,8332,8045,8071,8087,8103,8104,8071,8090,8063,8062,8045,8087,8073,8073,8091,8062,8074,8063,8092,4223,4229,4210,4210,4211,4223,4218,4211,4212,8430,8349,8401,8375,8332,8350,8332,8349,8330,8104,8087,8071,8135,8104,8103,8063,8090,8106,8090,8062,8107,8073,8087,8108,8073,8109,8091,8091,8107,8062,8106,8092,8063,8074,8092,8110,7182,7174,7179,8350,8332,8310,8349,8309,8330,8261,8332,8330,8104,8121,8087,8104,8135,8121,8090,8107,8106,8108,8087,8123,8073,8108,8109,8124,8091,8109,8091,8124,8107,8106,8125,8092,8110,8092,8125,7176,7179,7174,8349,8374,8331,8261,8310,8332,8349,8331,8309,8261,8330,8309,8087,8121,8123,8150,8121,8135,8107,8137,8106,8108,8123,8138,8138,8109,8108,8109,8139,8124,8124,8137,8107,8106,8140,8125,14192,14166,14191,7181,7179,7176,7184,7186,7179,8286,8310,8261,8285,8309,8331,8260,8261,8309,8151,8123,8121,8151,8121,8150,8172,8150,8135,8106,8137,8153,8154,8138,8123,8138,8155,8109,8139,8109,8156,8124,8139,8157,8124,8158,8137,8140,8106,8153,8125,8140,8159,14166,14192,14167,7184,7179,7181,7188,7186,7184,8238,8286,8261,8260,8309,8285,7188,7190,7186,8261,8260,8192,8123,8151,8154,8189,8151,8150,8190,8150,8172,8172,8135,8191,8173,8153,8137,8154,8174,8138,8174,8155,8138,8155,8156,8109,8139,8156,8175,8139,8176,8157,8158,8124,8157,8137,8158,8177,8178,8140,8153,8179,8159,8140,14192,14193,14167,7191,7188,7184,8238,8261,8192,8237,8260,8285,8285,8329,8284,8237,8192,8260,8192,8154,8151,8213,8151,8189,8189,8150,8190,8193,8153,8173,8173,8137,8194,8174,8154,8195,8155,8174,8196,8155,8197,8156,8175,8156,8197,8175,8198,8139,8139,8198,8176,8176,8199,8157,8157,8177,8158,8137,8177,8200,8140,8178,8179,8193,8178,8153,14205,14168,14193,14167,14193,14168,8348,8329,8373,8192,8213,8238,8285,8284,8237,8308,8284,8329,8237,8214,8192,8192,8214,8154,8213,8192,8151,8215,8193,8173,8200,8194,8137,8194,8215,8173,8195,8154,8214,8174,8195,8216,8217,8196,8174,8196,8197,8155,8175,8197,8218,8175,8219,8198,8176,8198,8220,8220,\r\n8199,8176,8221,8157,8199,8177,8157,8222,8200,8177,8223,8179,8178,8224,8193,8224,8178,14205,14194,14168,8308,8329,8348,8284,8241,8237,8284,8308,8241,8237,8241,8214,8215,8224,8193,8200,8239,8194,8194,8240,8215,8195,8214,8241,8241,8216,8195,8217,8174,8216,8217,8242,8196,8196,8242,8197,8242,8218,8197,8219,8175,8218,8220,8198,8219,8199,8220,8243,8244,8157,8221,8199,8245,8221,8222,8157,8244,8222,8246,8177,8223,8177,8246,8239,8200,8223,14194,14178,14168,8288,8241,8308,8215,8262,8224,8239,8240,8194,8263,8215,8240,8241,8264,8216,18149,18150,18151,18153,18149,18152,8242,8265,8218,8219,8218,8265,8220,8219,8266,8220,8266,8243,8243,8267,8199,8221,8268,8244,8199,8267,8245,8221,8245,8268,8269,8222,8244,8222,8270,8246,8223,8246,8271,8272,8239,8223,14206,14178,14194,8288,8264,8241,8262,8215,8263,8240,8239,8287,14210,14220,14197,8289,8216,8264,8333,8216,8311,18152,18149,18151,8266,8219,8265,8267,8243,8266,8269,8244,8268,8290,8245,8267,8290,8268,8245,8222,8269,8270,8291,8246,8270,8292,8271,8246,8293,8223,8271,8294,8239,8272,8272,8223,8293,14206,14179,14178,14206,14210,14179,8239,8294,8287,14220,14232,14197,14197,14179,14210,8311,8216,8289,8312,8269,8268,8313,8268,8290,8270,8269,8312,8246,8291,8292,8314,8291,8270,8271,8292,8315,8271,8316,8293,8294,8272,8317,8272,8293,8318,14232,14245,14221,14232,14221,14197,8334,8312,8268,8334,8268,8313,8335,8270,8312,8336,8292,8291,8291,8314,8337,8314,8270,8335,8336,8315,8292,8315,8316,8271,8293,8316,8338,8318,8317,8272,14245,14259,14233,8318,8293,8338,14221,14245,14233,14221,14207,14197,8336,8291,8353,8353,8291,8337,8315,8336,8355,8356,8316,8315,8356,8338,8316,8318,8357,8317,14233,14259,14255,8318,8338,8358,14221,14233,14207,8336,8353,8378,8353,8337,8380,8355,8336,8381,8382,8315,8355,8315,8382,8356,8356,8383,8338,8384,8357,8318,14233,14255,14229,8358,8338,8385,8358,8384,8318,14233,14229,14207,8378,8353,8406,8381,8336,8378,3526,3497,3496,8355,8381,8409,8355,8410,8382,8356,8382,8411,8383,8356,8412,8385,8338,8383,8384,8413,8357,14229,14255,14254,8385,8414,8358,8414,8384,8358,8353,8434,8406,8435,8378,8406,\r\n8436,8381,8378,3483,3496,3497,8353,8462,8434,8436,8409,8381,8438,8355,8409,8410,8355,8438,8439,8382,8410,8439,8411,8382,8411,8440,8356,8356,8440,8412,8412,8441,8383,8442,8385,8383,8414,8413,8384,14229,14254,14243,8414,8385,8443,3495,3537,3507,8436,8378,8435,3540,3537,3495,3483,3470,3496,3470,3507,3496,8436,8465,8409,8438,8409,8465,8410,8438,8466,8467,8439,8410,8411,8439,8468,8440,8411,8469,8470,8412,8440,8412,8471,8441,8441,8442,8383,8385,8442,8472,14254,14279,14268,14254,14268,14243,8443,8385,8472,14279,14293,14268,3495,3507,3493,8435,8494,8436,3495,3525,3540,3470,3493,3507,8494,8465,8436,8465,8498,8438,8438,8498,8466,8467,8410,8466,8467,8499,8439,8499,8468,8439,8469,8411,8468,8440,8469,8470,8500,8412,8470,8471,8412,8501,8502,8441,8471,8441,8472,8442,14258,14243,14268,14294,14293,14316,14268,14293,14280,3540,3525,3556,3556,3553,3583,3583,3553,3582,3582,3599,3614,8466,8529,8467,8499,8467,8529,8499,8530,8468,8469,8468,8531,8470,8469,8532,8533,8412,8500,3790,3777,3765,8501,8412,8533,3814,3810,3818,8502,8534,8441,3829,3818,3823,8535,8472,8441,14268,14280,14258,14294,14280,14293,14326,14294,14316,3525,3553,3556,3553,3568,3582,3582,3568,3599,8466,8570,8529,3633,3645,3665,8499,8571,8530,8572,8468,8530,8572,8531,8468,8531,8532,8469,3777,3742,3765,3790,3803,3806,3789,3790,3765,3814,3806,3805,3805,3810,3814,3818,3810,3823,3832,3829,3826,8441,8534,8535,3823,3826,3829,14294,14258,14280,3839,3834,3835,3599,3613,3633,3633,3613,3645,3667,3684,3645,8530,8531,8572,3730,3742,3716,3741,3765,3742,3790,3789,3803,3803,3805,3806,3763,3789,3765,3805,3795,3810,3816,3823,3810,3832,3826,3816,3832,3827,3834,3823,3816,3826,14258,14294,14281,3827,3835,3834,3835,3836,3839,3700,3684,3667,3684,3700,3716,3741,3742,3730,3700,3730,3716,3763,3765,3741,3802,3803,3789,3802,3805,3803,3789,3763,3788,3802,3795,3805,3809,3810,3795,3816,3810,3809,3816,3827,3832,3827,3828,3835,3828,3836,3835,3802,3789,3788,3802,3788,3795,3816,3809,3817,3827,3816,3817,3828,3827,3817,7954,7960,7957,8755,8789,8725,8789,8860,8824,8725,8789,8756,8691,8755,8725,8860,8790,8824,8789,\r\n8824,8756,8725,8756,8659,8691,8725,8659,8864,8860,8913,8864,8790,8860,8790,8756,8824,8790,8659,8756,8691,8659,8623,8548,8623,8589,8894,8864,8913,8826,8790,8864,8913,8920,8894,8759,8659,8790,8659,8589,8623,8517,8548,8589,8517,8484,8548,8894,8826,8864,8826,8759,8790,8866,8894,8920,8726,8659,8759,8624,8589,8659,8624,8517,8589,8425,8484,8429,8484,8517,8456,8866,8826,8894,8792,8759,8826,8919,8866,8920,8726,8660,8659,8792,8726,8759,8659,8660,8624,8624,8590,8517,8484,8456,8429,8517,8557,8456,8866,8792,8826,8866,8919,8865,8590,8624,8660,8590,8557,8517,8399,8429,8456,8456,8557,8489,8866,8865,8792,8590,8660,8625,8557,8590,8625,8456,8455,8399,8489,8557,8550,8455,8456,8489,8557,8625,8651,8400,8399,8455,18154,18155,18156,8489,8550,8485,8455,8489,8426,8583,8557,8651,8400,8455,8426,8583,8485,8557,8489,8485,8426,8583,8651,8649,8583,8549,8485,8485,8452,8426,8583,8649,8615,8583,8615,8549,8513,8485,8549,8452,8485,8513,8650,8549,8615,8513,8549,8584,8452,8513,8453,8616,8549,8650,8616,8584,8549,8584,8551,8513,8513,8551,8453,8652,8584,8616,8584,8587,8551,8551,8514,8453,8652,8587,8584,8551,8587,8514,8652,8656,8587,8619,8514,8587,8652,8720,8656,8587,8656,8619,8619,8617,8514,8752,8656,8720,8656,8687,8619,8619,8687,8617,8617,8585,8514,8752,8754,8656,8687,8656,8723,8686,8617,8687,8653,8585,8617,8723,8656,8754,8653,8617,8686,8653,8685,8585,8689,8585,8685,18157,18158,18159,10081,10063,10096,10063,10081,10044,10063,10044,10031,10031,10044,10018,10031,10018,9996,9995,9996,10018,9996,9995,9979,9986,9979,9995,9979,9986,9960,9979,9960,9971,9960,9952,9971,9960,9945,9952,9938,9952,9945,9952,9938,9944,9944,9938,9928,10172,10170,10209,10170,10172,10135,10210,10209,10170,1812,1833,1823,10151,10135,10172,1846,1833,1856,1846,1823,1833,1801,1812,1823,10096,10135,10151,1781,1800,1812,1865,1846,1856,1846,1824,1823,1781,1812,1801,1801,1823,1802,10096,10151,10131,1781,1775,1800,12560,12561,12562,1846,1847,1824,1823,1824,1802,10113,10096,10131,1866,1847,1846,1866,1865,1879,10096,10113,10081,1866,1879,1847,11882,11872,11894,11872,11882,11859,11872,11859,11850,11834,\r\n11850,11859,11850,11834,11840,11840,11834,11827,11815,11827,11834,11828,11815,11834,11815,11828,11823,11828,11835,11823,11823,11808,11815,11830,11823,11835,11823,11818,11808,11818,11823,11830,11818,11803,11808,11818,11830,11836,11818,11816,11803,11845,11818,11836,2888,2881,2869,11803,11816,11811,2881,2878,2869,2852,2850,2869,12563,12564,12565,12566,12567,12568,2852,2869,2859,2832,2850,2834,2834,2852,2842,2859,2842,2852,2832,2834,2813,2824,2834,2842,2813,2834,2824,2832,2813,2812,2801,2813,2824,2813,2790,2812,2813,2801,2790,2812,2790,2800,2801,2768,2790,2781,2800,2790,2768,2781,2790,2781,2768,2753,2740,2753,2768,2781,2753,2780,2715,2753,2740,2780,2753,2752,2715,2752,2753,2715,2739,2752,2715,2728,2739,2728,2715,2704,2704,2714,2728,2714,2704,2688,5835,5844,5823,5844,5835,5856,5844,5837,5823,5803,5835,5823,5856,5835,5834,5823,5837,5817,5835,5803,5834,5806,5803,5823,5856,5834,5855,5818,5817,5837,5823,5817,5806,5803,5822,5834,5843,5855,5834,5855,5880,5856,5818,5798,5817,5807,5806,5817,5843,5834,5822,5855,5843,5869,5869,5880,5855,5798,5818,5809,5798,5807,5817,5880,5869,5891,5809,5788,5798,5798,5787,5807,5869,5904,5891,5905,5880,5891,5788,5809,5808,5798,5788,5772,5772,5787,5798,5904,5916,5891,5916,5905,5891,5829,5808,5809,5788,5808,5789,5788,5778,5772,5905,5916,5931,5829,5830,5808,5808,5810,5789,5788,5789,5778,5931,5916,5946,5851,5830,5829,5830,5810,5808,5916,5955,5946,5946,5956,5931,5851,5840,5830,5946,5955,5970,5946,5970,5956,5866,5840,5851,5978,5956,5970,5840,5866,5878,5978,5970,5997,5978,5997,5991,6018,5991,5997,6018,5994,5991,6036,5994,6018,5994,6036,6022,6022,6036,6037,9865,9869,9866,6098,6077,6099,9865,9866,9861,6099,6077,6084,9866,9863,9861,6077,6064,6084,9858,9861,9863,6076,6084,6064,9858,9863,9860,6053,6076,6064,9858,9860,9856,6053,6075,6076,9858,9856,9851,6075,6053,6063,9856,9849,9851,6053,6039,6063,9856,9853,9849,9844,9851,9849,9845,9853,9854,9853,9845,9849,9844,9849,9840,9850,9845,9854,9845,9840,9849,9844,9840,9836,9845,9850,9842,9833,9840,9845,9833,9836,9840,9845,9842,9833,9829,9836,9833,9842,9838,9833,9823,9829,\r\n9833,9831,9833,9838,9829,9823,9822,9823,9833,9831,9823,9816,9822,9831,9828,9823,9823,9819,9816,9822,9816,9818,9819,9823,9828,9819,9814,9816,9810,9818,9816,9814,9810,9816,9804,9810,9814,9804,9802,9810,9779,9802,9804,9779,9795,9802,9795,9779,9778,9779,9769,9778,9794,9795,9778,9769,9774,9778,9785,9794,9778,9769,9758,9774,9774,9785,9778,9758,9769,9766,9758,9766,9759,9766,9763,9759,9758,9759,9753,9756,9759,9763,9756,9753,9759,9764,9756,9763,9754,9753,9756,9760,9756,9764,9760,9754,9756,9761,9754,9760,9754,9761,9757,1900,1879,1865,1879,1900,1901,10279,10247,10264,10264,10293,10279,1879,1901,1889,10292,10293,10264,1913,1889,1901,10292,10322,10293,10323,10322,10292,10323,10349,10322,10349,10323,10364,2012,2000,1967,2000,2012,2023,2023,2012,2037,2000,2023,2038,2037,2051,2023,2038,2023,2052,2066,2051,2037,2051,2052,2023,2066,2079,2051,2080,2066,2037,2081,2052,2051,2091,2079,2066,2081,2051,2079,10426,10399,10415,2079,2091,2102,2091,2066,2103,2081,2079,2104,10399,10407,10415,2110,2102,2091,2079,2102,2104,2111,2091,2103,10425,10415,10407,2091,2111,2110,10425,10434,10415,10424,10425,10407,2110,2111,2126,10434,10425,10444,10425,10424,10444,10414,10424,10407,2111,2135,2126,2136,2135,2145,10432,10424,10414,10414,10407,10398,2141,2136,2145,2146,2141,2145,10433,10432,10414,10398,10423,10414,2141,2146,2142,10432,10433,10450,10433,10414,10423,10450,10457,10432,10433,10451,10450,10423,10443,10433,10433,10443,10451,10450,10451,10467,10423,10431,10443,10449,10451,10443,10467,10451,10466,10431,10449,10443,10466,10451,10449,10467,10466,10482,10448,10449,10431,10449,10464,10466,10466,10479,10482,10449,10448,10464,10448,10431,10442,10466,10464,10479,10494,10482,10479,10448,10465,10464,10448,10442,10456,10478,10479,10464,10478,10494,10479,10448,10456,10465,10465,10478,10464,6178,6201,6197,10494,10478,10493,10465,10456,10473,10481,10478,10465,6178,6183,6201,10481,10493,10478,10494,10493,10504,10473,10456,10480,10481,10465,10473,6178,6153,6183,10490,10493,10481,10501,10504,10493,10489,10473,10480,10481,10473,10490,6174,6183,6153,10501,10493,10490,\r\n16408,16409,16406,10489,10490,10473,6202,6183,6193,6193,6183,6174,6174,6153,6165,10506,10501,10490,16408,16406,16407,10490,10489,10500,10489,10505,10500,6174,6194,6193,6174,6165,6182,10506,10490,10500,16406,16403,16407,10500,10505,10512,6182,6194,6174,6212,6193,6194,6182,6165,6164,10506,10500,10513,16406,16405,16403,2122,2139,2123,10500,10512,10516,6182,6203,6194,10517,10513,10500,16405,16402,16403,16403,16402,16398,10517,10500,10516,6203,6213,6194,16405,16404,16402,16401,16402,16404,6182,6164,6191,12569,12570,12571,6181,6191,6164,16402,16400,16398,12571,12570,12572,6191,6181,6199,6181,6164,6173,16402,16401,16400,12573,12571,12572,6200,6199,6181,6192,6181,6173,16401,16397,16400,16399,16397,16401,6200,6181,6192,6192,6173,6180,16400,16397,16396,16399,16395,16397,6200,6192,6211,6192,6180,6198,16397,16394,16396,16395,16394,16397,6192,6198,6211,6180,6190,6198,16394,16393,16396,16392,16394,16395,6216,6211,6198,6172,6190,6180,6198,6190,6210,16390,16393,16394,16392,16390,16394,6198,6210,6216,6189,6190,6172,6210,6190,6209,16386,16393,16390,16390,16392,16389,6216,6210,6218,6189,6209,6190,6189,6172,6171,6218,6210,6209,16390,16389,16386,16391,16389,16392,6189,6215,6209,6188,6189,6171,6218,6209,6215,16389,16387,16386,16391,16388,16389,6214,6215,6189,6189,6188,6208,6171,6179,6188,16389,16388,16387,16386,16387,16382,16384,16387,16388,6208,6214,6189,6208,6188,6207,6188,6179,6196,16387,16384,16382,16379,16384,16385,6188,6196,6207,6208,6207,6217,6179,6177,6196,16382,16384,16379,16380,16379,16385,6196,6206,6207,6217,6207,6206,6186,6196,6177,16380,16377,16379,6186,6206,6196,16380,16378,16377,6177,6169,6186,6206,6186,6205,16373,16377,16378,6186,6169,6185,6205,6186,6185,16378,16381,16373,6169,6167,6185,6205,6185,6204,9911,9910,9912,6167,6195,6185,6195,6204,6185,9911,9909,9910,6195,6167,6184,9907,9908,9909,9910,9909,9908,6168,6184,6167,9907,9905,9904,9904,9908,9907,6168,6176,6184,9904,9905,9903,6157,6176,6168,9904,9903,9901,6157,6166,6176,9897,9901,9903,6146,6166,6157,9901,9897,9899,6175,6166,6146,9897,9895,9899,9893,9895,9897,9898,9896,\r\n9893,9892,9895,9893,9893,9896,9890,9890,9892,9893,9892,9890,9891,9891,9890,9889,9886,9889,9890,2063,2064,2032,9889,9886,9885,2034,2032,2064,9886,9881,9885,9889,9885,9887,9886,9884,9881,9883,9885,9881,9883,9887,9885,9881,9884,9878,9883,9881,9877,9878,9877,9881,9877,9878,9870,9878,9875,9870,9871,9870,9875,9865,9870,9871,9869,9865,9871,15826,15800,15848,15826,15756,15800,15848,15800,15827,15875,15826,15848,15800,15756,15777,15777,15827,15800,15848,15827,15876,15875,15848,15895,15738,15777,15756,15777,15802,15827,15876,15827,15849,15895,15848,15876,15895,15920,15875,15737,15777,15738,15738,15756,15712,15777,15757,15802,15827,15802,15849,15877,15876,15849,15895,15876,15921,15895,15942,15920,15919,15875,15920,15737,15757,15777,15737,15738,15690,15712,15690,15738,15801,15802,15757,15802,15801,15849,15877,15921,15876,15877,15849,15801,15895,15921,15942,15920,15942,15966,15920,15965,15919,15713,15757,15737,15691,15737,15690,15648,15690,15712,15801,15757,15778,15877,15922,15921,15877,15801,15896,15921,15967,15942,15942,15988,15966,15965,15920,15966,15964,15919,15965,15713,15778,15757,15691,15713,15737,15647,15691,15690,15647,15690,15648,11856,11868,11846,6669,6656,6655,15896,15922,15877,15967,15921,15922,15988,15942,15967,15965,15966,15988,15964,15965,16012,6656,6649,6645,15691,15670,15713,15691,15647,15670,15648,15612,15647,11856,11846,11838,6655,6656,6645,16013,15988,15967,15988,16012,15965,6635,6645,6649,6657,6635,6649,15647,15629,15670,15613,15612,15648,15647,15612,15629,16034,15988,16013,16034,16012,15988,15670,15649,15692,15670,15629,15649,15613,15580,15612,15591,15629,15612,16012,16034,16054,6621,6635,6641,15614,15649,15629,15613,15592,15580,15591,15612,15580,15591,15614,15629,6647,6621,6641,15592,15543,15580,15560,15591,15580,15579,15614,15591,6653,6621,6647,15560,15580,15543,15579,15591,15560,15579,15559,15590,15543,15525,15560,15560,15542,15579,15579,15542,15559,6605,6621,6628,15525,15543,15491,15560,15525,15542,15542,15524,15559,15541,15578,15559,15525,15491,15509,15542,15525,15509,15542,15509,15524,15559,15524,15541,\r\n6613,6596,6605,15476,15509,15491,15509,15475,15524,15524,15508,15541,6613,6620,6596,6605,6596,6577,15509,15476,15475,15452,15476,15491,15524,15475,15508,15490,15523,15508,6589,6577,6596,15451,15475,15476,15476,15452,15451,15475,15490,15508,6589,6596,6606,6589,6568,6577,15462,15475,15451,15429,15451,15452,15462,15490,15475,6606,6609,6589,6589,6584,6568,6577,6568,6558,15441,15462,15451,15441,15451,15429,6602,6589,6609,6589,6602,6584,6584,6567,6568,6549,6558,6568,15450,15462,15441,15404,15441,15429,6585,6584,6602,6584,6585,6567,6549,6568,6567,6549,6530,6558,15415,15450,15441,15404,15415,15441,6575,6567,6585,6549,6567,6557,6549,6538,6530,15403,15415,15404,6567,6575,6557,6575,6585,6592,6557,6538,6549,6530,6538,6524,15403,15381,15415,15382,15403,15404,6575,6586,6557,15381,15367,15391,6559,6538,6557,6538,6539,6524,15403,15382,15381,6593,6557,6586,15381,15355,15367,6538,6559,6539,6559,6557,6574,6539,6526,6524,15381,15382,15355,15317,15307,15332,15317,15367,15355,6569,6539,6559,15313,15331,15307,6539,6542,6526,15382,15368,15355,15317,15296,15307,15317,15355,15342,15313,15324,15336,15280,15313,15307,6539,6561,6542,6533,6526,6542,15342,15355,15368,15317,15318,15296,15280,15307,15296,15342,15318,15317,15313,15300,15324,15280,15300,15313,15323,15346,15324,15335,15356,15346,15308,15296,15318,15280,15296,15264,15342,15333,15318,15324,15300,15323,15323,15335,15346,6533,6551,6540,15264,15296,15308,15333,15308,15318,3098,3109,3085,3122,3109,3098,3088,3098,3085,12577,12574,12576,12574,12575,12576,3122,3133,3109,3108,3122,3098,3088,3108,3098,12578,12577,12576,3132,3133,3122,3108,3132,3122,3108,3088,3104,16823,16824,16821,12579,12578,12576,3140,3132,3108,3088,3094,3104,3108,3104,3126,16822,16821,16824,16822,16824,16825,3108,3126,3140,3081,3094,3088,3114,3104,3094,3126,3104,3125,16821,16822,16818,3140,3126,3125,3102,3094,3081,3114,3125,3104,3114,3094,3124,16818,16822,16819,3102,3113,3094,3102,3081,3093,3125,3114,3139,3113,3124,3094,3114,3124,3139,16816,16818,16819,3111,3113,3102,3111,3102,3093,3125,3139,3147,3124,3113,3138,3148,3139,3124,\r\n16816,16815,16818,16819,16817,16816,3111,3135,3113,3111,3093,3112,3147,3139,3157,3138,3113,3135,3124,3138,3146,3157,3139,3148,3148,3124,3146,16816,16813,16815,16816,16817,16814,3111,3136,3135,3103,3112,3093,3112,3136,3111,3138,3135,3153,3156,3146,3138,3163,3157,3148,3163,3148,3146,16816,16814,16813,16810,16815,16813,3136,3152,3135,3116,3112,3103,3093,3082,3103,3112,3137,3136,3152,3153,3135,3153,3161,3138,3156,3162,3146,3156,3138,3161,16809,16813,16814,16809,16812,16806,16813,16807,16810,3136,3154,3152,3137,3112,3116,3095,3116,3103,3095,3103,3082,3137,3154,3136,3152,3166,3153,3161,3153,3166,3167,3162,3156,16806,16812,16811,18160,18161,18162,16809,16807,16813,16809,16806,16807,16807,16804,16810,3152,3154,3166,3137,3116,3142,3127,3116,3095,3082,3089,3095,3154,3137,3155,18162,18161,18163,16806,16811,16808,16807,16806,16804,11990,11994,11992,3127,3142,3116,3142,3155,3137,3127,3095,3115,3082,3073,3089,3105,3095,3089,11990,11992,11985,11996,11994,11995,16808,16805,16806,16805,16804,16806,11995,11994,11990,3127,3149,3142,3155,3142,3149,3105,3115,3095,3127,3115,3141,3073,3090,3089,3090,3105,3089,11990,11985,11980,11995,11990,11991,3149,3127,3141,11985,11982,11969,3105,3121,3115,3121,3141,3115,3090,3073,3083,3090,3097,3105,11980,11985,11969,11990,11980,11991,11982,11987,11975,11969,11982,11975,3105,3097,3121,11988,11975,11987,3090,3083,3097,11963,11969,11975,3131,3121,3097,11975,11988,11983,3106,3097,3083,11963,11975,11983,3120,3131,3097,3106,3120,3097,3096,3106,3083,11981,11963,11983,3120,3106,3128,3117,3106,3096,11981,11974,11963,3117,3128,3106,11981,11986,11974,3117,3096,3119,11963,11974,11968,3143,3128,3117,11986,11976,11974,3107,3119,3096,3117,3119,3143,11976,11968,11974,3107,3130,3119,3143,3119,3150,11964,11968,11976,3107,3129,3130,3144,3119,3130,3144,3150,3119,11976,11970,11964,11964,11965,11968,3130,3129,3151,3130,3151,3144,3144,3159,3150,11970,11959,11964,11964,11948,11965,3144,3151,3160,3144,3160,3159,3150,3159,3165,11964,11959,11948,3151,3164,3160,3169,3159,3160,3169,3165,3159,11959,11947,11948,3164,3170,3160,3160,\r\n3170,3169,3169,3171,3165,3165,3171,3174,11948,11947,11928,3170,3173,3169,3169,3173,3171,3175,3174,3171,11928,11947,11939,11948,11928,11929,3175,3171,3173,3177,3174,3175,11928,11939,11917,11905,11929,11928,11928,11917,11905,11905,11918,11929,11917,11882,11905,11905,11894,11918,11905,11882,11894,9090,9067,9070,9093,9090,9070,9093,9117,9090,9090,9087,9067,9113,9087,9090,9090,9117,9113,9064,9067,9087,9117,9146,9113,9151,9146,9117,9064,9087,9088,9114,9088,9087,9114,9087,9130,9113,9130,9087,9113,9146,9130,9088,9065,9064,9172,9146,9151,9130,9146,9161,9172,9161,9146,9114,9130,9147,9130,9162,9147,9162,9130,9173,9130,9161,9173,9088,9114,9115,9115,9114,9147,9088,9089,9065,9115,9089,9088,9065,9089,9066,9188,9161,9172,9205,9188,9172,9161,9189,9173,9188,9189,9161,9162,9173,9190,9173,9206,9190,9173,9189,9206,9162,9174,9147,9190,9174,9162,9115,9147,9148,9174,9148,9147,9115,9116,9089,9115,9148,9116,9066,9089,9102,9116,9102,9089,9188,9205,9219,9205,9234,9219,9188,9219,9189,9206,9189,9220,9219,9233,9189,9220,9189,9233,9222,9190,9206,9237,9222,9206,9206,9220,9235,9237,9206,9235,9190,9175,9174,9175,9190,9221,9222,9221,9190,9174,9175,9148,9116,9148,9163,9148,9175,9163,9233,9219,9234,9270,9233,9234,9220,9233,9250,9270,9250,9233,9251,9235,9220,9220,9250,9272,9251,9220,9272,9235,9274,9237,9251,9273,9235,9274,9235,9293,9292,9235,9273,9292,9293,9235,9222,9237,9253,9276,9253,9237,9276,9237,9274,9222,9253,9221,9175,9221,9207,9221,9238,9207,9221,9254,9238,9253,9254,9221,9163,9175,9191,9191,9175,9207,9290,9250,9270,9291,9272,9250,9290,9291,9250,9251,9272,9273,9291,9314,9272,9273,9272,9315,9314,9315,9272,9316,9292,9273,9316,9273,9315,9292,9316,9293,9274,9293,9317,9293,9316,9317,9318,9276,9274,9318,9274,9317,9296,9253,9276,9305,9296,9276,9305,9276,9329,9318,9329,9276,9253,9295,9254,9253,9296,9295,9254,9277,9238,9254,9295,9277,9207,9238,9223,9223,9238,9255,9255,9238,9277,9191,9207,9223,9315,9357,9316,9317,9316,9358,9358,9316,9380,9316,9357,9380,9318,9317,9359,9359,9317,9358,9318,9360,9329,9318,9381,9360,9359,9381,9318,9329,9285,9305,9330,9285,9329,\r\n9330,9329,9360,9305,9304,9296,9263,9304,9305,9263,9305,9285,9304,9295,9296,9307,9277,9295,9304,9307,9295,9297,9255,9277,9297,9277,9307,9358,9380,9400,9359,9358,9400,9359,9400,9381,9401,9360,9381,9401,9381,9426,9400,9426,9381,9330,9360,9332,9393,9360,9401,9332,9360,9393,9330,9287,9285,9330,9332,9287,9229,9263,9285,9229,9285,9287,9263,9284,9304,9263,9244,9284,9244,9263,9229,9284,9307,9304,9265,9297,9307,9284,9265,9307,9297,9265,9349,9401,9426,9438,9393,9401,9438,9332,9393,9413,9306,9287,9332,5616,5661,5675,9212,9244,9229,9212,9229,9198,9245,9284,9244,9212,9245,9244,9245,9265,9284,18164,18165,18166,9245,9230,9265,9212,9198,9180,9198,9154,9180,9154,9198,9197,9212,9230,9245,9199,9230,9212,9199,9212,9180,9230,9199,9213,9179,9154,9197,9154,9121,9138,9138,9168,9154,9154,9153,9121,9180,9154,9168,9154,9179,9153,9199,9180,9168,9199,9168,9213,9213,9168,9214,9096,9108,9121,9138,9121,9108,9096,9121,9107,9121,9136,9107,9153,9136,9121,9138,9108,9139,9138,9139,9168,9139,9181,9168,9200,9168,9181,9214,9168,9200,9136,9153,9137,9108,9082,9098,9098,9123,9108,9108,9096,9082,9108,9123,9139,9136,9137,9107,9081,9096,9107,9081,9107,9122,9122,9107,9137,9072,9082,9096,9072,9096,9081,9139,9123,9152,9169,9139,9152,9181,9139,9169,9082,9073,9098,9082,9059,9073,9072,9059,9082,9080,9098,9073,9080,9120,9098,9098,9120,9123,9152,9123,9120,7163,7161,7160,9049,9072,9081,9049,9081,9097,7165,7163,7164,7160,7164,7163,9072,9049,9059,9152,9120,9135,9057,9080,9073,9050,9057,9073,9050,9073,9059,9059,9034,9050,9059,9049,9034,9080,9057,9071,9095,9080,9071,9106,9080,9095,9120,9080,9106,9135,9120,9106,7160,7162,7164,7164,7167,7166,8995,8993,8955,7164,7166,7165,8955,8993,8954,8994,8954,8993,8994,8993,9014,9034,9049,8998,7166,7167,7168,9057,9050,9048,9015,9048,9050,9015,9050,9034,9030,9046,9057,9071,9057,9046,9048,9030,9057,9034,8998,9015,8994,9014,8974,8959,8998,8995,8959,8995,8955,8994,8957,8954,8974,8957,8994,8955,8954,8915,8915,8954,8914,8957,8914,8954,8955,8918,8959,8915,8918,8955,9015,8998,8976,8976,8998,8959,9048,9015,9031,8992,9031,9015,8992,9015,8975,9015,8976,\r\n8975,9048,9031,9030,8974,8937,8957,8976,8959,8939,8896,8939,8959,8959,8918,8896,8937,8914,8957,8891,8914,8825,8915,8914,8891,8825,8914,8892,8937,8892,8914,8915,8861,8918,8915,8891,8861,8918,8895,8896,8861,8895,8918,8975,8976,8920,8920,8976,8939,8939,8896,8919,8865,8919,8896,8865,8896,8827,8827,8896,8895,8939,8919,8920,8862,8825,8892,8726,8825,8791,8726,8861,8825,8825,8862,8791,8891,8825,8861,8726,8827,8861,8827,8895,8861,8827,8726,8792,8827,8792,8865,8726,8758,8660,8726,8791,8758,8758,8791,8793,8863,8793,8791,8727,8660,8758,8758,8793,8727,8692,8660,8727,8625,8660,8692,8828,8793,8863,8727,8793,8828,8727,8728,8692,8728,8727,8794,8794,8727,8828,8692,8728,8625,8693,8651,8625,8693,8625,8728,8829,8794,8828,8728,8794,8829,8728,8760,8693,8651,8693,8649,8693,8719,8649,8719,8693,8760,8683,8649,8719,8750,8683,8719,8615,8649,8683,8751,8683,8750,8684,8615,8683,8684,8683,8751,8684,8650,8615,12580,12581,12582,3087,3091,3079,3087,3101,3091,3080,3079,3091,3077,3087,3079,12583,12584,12585,12594,12595,12596,3067,3079,3080,12599,12596,12598,3087,3077,3092,3077,3079,3068,3087,3092,3100,12585,12584,12586,12594,12597,12595,12598,12596,12595,3067,3068,3079,3080,3076,3067,12600,12599,12598,3092,3077,3086,3092,3099,3100,12584,12587,12586,6799,6798,6786,6786,6779,6791,6792,6791,6779,3049,3068,3067,12599,12600,12601,3062,3067,3076,6780,6796,6792,3092,3086,3099,3100,3099,3123,12588,12586,12587,6786,6798,6793,6779,6780,6792,3062,3049,3067,12602,12601,12600,12603,12601,12602,12600,12605,12604,3099,3086,3085,3110,3123,3099,12588,12589,12586,12590,12588,12587,3049,3062,3056,12600,12604,12602,3062,3069,3057,3099,3085,3110,12589,12588,12591,12592,12588,12590,3051,3056,3062,3049,3056,3038,12604,12606,12602,12602,12606,12607,3051,3062,3057,3109,3110,3085,12588,12593,12591,12588,12592,12593,3109,3134,3110,3056,3051,3038,6781,6762,6774,12608,12607,12606,3044,3051,3057,18167,18168,18169,3109,3145,3134,3044,3038,3051,6774,6762,6768,3052,3044,3057,12606,12609,12608,3032,3038,3044,6762,6754,6768,3044,3052,3039,12608,12609,12610,3044,3039,3032,6768,6754,6763,\r\n3045,3039,3052,12611,12608,12610,3032,3039,3027,6754,6749,6763,3033,3039,3045,12612,12611,12610,3039,3033,3027,6763,6749,6761,12610,12613,12612,3023,3027,3033,12618,12619,12620,12612,12613,12614,3033,3031,3023,6753,6761,6747,6747,6749,6734,12614,12613,12615,3018,3023,3031,6733,6753,6747,6733,6747,6734,12615,12616,12614,6760,6753,6733,6725,6733,6734,12617,12616,12615,10535,10540,10541,6725,6717,6733,18170,18171,18172,10537,10540,10535,6732,6733,6717,3003,3010,3014,10537,10539,10540,10534,10537,10535,6719,6732,6717,3003,2998,3010,10534,10539,10537,10535,10532,10534,6732,6719,6736,2992,2998,3003,10538,10539,10534,10534,10532,10531,6736,6719,6722,2992,2986,2998,2992,3003,3011,10536,10538,10534,10531,10532,10529,10534,10531,10536,6741,6736,6722,2986,2992,2980,18173,18174,18175,10531,10529,10530,18176,18177,18178,6741,6722,6737,2993,2980,2992,2993,2992,3004,10530,10529,10527,10531,10530,10533,6723,6737,6722,10529,10528,10527,2985,2980,2993,18179,18180,18181,2985,2993,2990,6737,6723,6742,10527,10528,10522,2967,2980,2985,2981,2979,2991,2979,2985,2990,10524,10520,10522,10526,10527,10522,2979,2967,2985,2981,2974,2979,10522,10520,10519,10526,10522,10525,2974,2967,2979,2974,2981,2968,10508,10519,10520,10522,10519,10523,10523,10525,10522,2981,2982,2968,2967,2974,2957,2974,2968,2957,10519,10508,10515,10523,10519,10521,18182,18183,18184,2982,2970,2968,2963,2957,2968,10508,10497,10515,10519,10515,10521,18184,18183,18185,2963,2968,2970,2957,2963,2952,10515,10497,10509,10518,10521,10515,18185,18186,18184,2958,2963,2970,2958,2952,2963,10509,10497,10502,10515,10509,10518,2959,2958,2969,2958,2942,2952,10497,10486,10502,10509,10502,10507,10518,10509,10507,2958,2959,2942,10502,10486,10496,10502,10496,10507,2959,2964,2953,2953,2942,2959,10496,10486,10491,18187,18188,18189,2960,2953,2964,2943,2942,2953,10470,10491,10486,18189,18192,18190,18190,18187,18189,2943,2953,2960,2943,2935,2942,10485,10491,10470,10485,10495,10491,18190,18191,18187,2943,2941,2935,10476,10485,10470,18193,18194,18195,2941,2943,2949,2935,2941,2931,18196,18197,18198,10461,\r\n10476,10470,2936,2941,2944,2936,2931,2941,2935,2931,2917,18199,18197,18196,10483,10476,10461,2926,2931,2936,2917,2931,2926,18200,18197,18199,10483,10461,10474,2918,2917,2926,18199,18201,18200,10460,10474,10461,2918,2911,2917,2923,2918,2926,18202,18200,18201,18203,18202,18201,10460,10461,10446,2918,2914,2911,2914,2918,2923,10475,10484,10460,10460,10446,10453,2911,2914,2907,2919,2914,2923,10468,10475,10460,10453,10446,10436,10460,10453,10468,2912,2907,2914,2911,2907,2902,2912,2914,2919,18204,18205,18206,10459,10453,10436,10469,10468,10453,2903,2907,2912,2907,2898,2902,18207,18204,18206,10459,10469,10453,10452,10459,10436,2907,2903,2898,18208,18204,18207,2893,2902,2898,18209,18208,18207,10452,10458,10459,10452,10436,10435,2903,2890,2898,2893,2898,2890,18208,18209,18210,10452,10445,10458,10452,10435,10445,18208,18210,18211,2884,2893,2890,17976,17975,17977,10427,10445,10435,2899,2894,2890,2887,2884,2890,17975,17976,17973,17976,17978,17973,2887,2890,2894,2887,2880,2884,17975,17973,17974,10447,10427,10437,2887,2883,2880,17974,17973,17971,10416,10437,10427,17973,17972,17971,2876,2880,2883,17966,17972,17969,17966,17971,17972,2872,2880,2876,17968,17971,17966,17969,17964,17966,2863,2872,2876,17965,17968,17966,17965,17966,17964,17965,17967,17968,17965,17964,17962,17963,17967,17965,17959,17962,17964,17963,17965,17962,17970,17967,17963,17962,17959,17960,17962,17960,17963,2864,2856,2844,17959,17957,17960,17963,17960,17961,2838,2844,2856,17959,17954,17957,17955,17960,17957,17961,17960,17955,2838,2815,2844,17955,17958,17961,17952,17957,17954,17952,17955,17957,2827,2815,2838,17955,17951,17958,17954,17949,17952,17955,17952,17951,2803,2815,2827,17954,17956,17949,17952,17949,17947,17947,17951,17952,17947,17948,17951,10360,10371,10344,17947,17949,17945,17943,17948,17947,17953,17945,17949,10344,10317,10360,17943,17947,17945,17950,17948,17943,10384,10392,10360,10360,10317,10358,17944,17943,17945,2804,2793,2782,10360,10358,10384,10343,10358,10317,17940,17943,17944,17943,17940,17941,17940,17944,17946,10358,10343,10369,17933,17941,17940,10369,\r\n10383,10358,10369,10343,10357,17939,17933,17940,10328,10357,10343,17939,17934,17937,17937,17933,17939,17935,17929,17934,17937,17934,17930,17937,17930,17933,17932,17929,17935,17930,17934,17929,17929,17932,17926,17936,17926,17932,17936,17938,17926,2685,2673,2654,2673,2617,2654,2655,2617,2673,2640,2617,2655,2617,2640,2586,9229,9287,9264,9306,9264,9287,9264,9242,9229,9393,9438,9454,9464,9438,9426,5616,5636,5598,9198,9229,9242,9286,9264,9306,9264,9286,9242,5616,5650,5661,9454,9438,9464,5616,5598,5582,9242,9226,9198,7155,7161,7159,7160,7161,7155,8791,8862,8893,8863,8791,8893,9286,9306,9331,9282,9242,9286,5616,5615,5650,9454,9464,9487,5582,5598,5544,5615,5616,5582,9242,9260,9226,9226,9197,9198,7162,7160,7157,9196,9153,9179,9153,9178,9137,7155,7159,7151,7160,7155,7157,8862,8892,8916,8893,8862,8917,9331,9345,9286,9242,9282,9260,9286,9326,9282,5650,5615,5649,5582,5544,5562,5615,5582,5581,9281,9226,9260,9226,9227,9197,8974,9014,9013,9211,9179,9197,9196,9178,9153,9211,9196,9179,7148,7155,7151,7148,7157,7155,8916,8892,8938,8916,8917,8862,9286,9345,9326,9301,9260,9282,9301,9282,9326,5635,5649,5615,5562,5581,5582,5581,5597,5615,9281,9259,9226,9260,9302,9281,9227,9226,9259,9197,9227,9211,8974,9013,8997,8974,8997,8937,9210,9178,9196,9211,9228,9196,7148,7151,7145,7148,7152,7157,8956,8892,8937,8938,8892,8956,9345,9367,9326,9301,9302,9260,9326,9347,9301,9345,9387,9367,5615,5597,5635,9281,9300,9259,9281,9302,9327,9227,9259,9261,9211,9227,9243,8997,9013,9033,8937,8997,8973,7150,7145,7154,9211,9243,9228,7148,7145,7143,7148,7143,7152,8973,8956,8937,9326,9367,9347,9302,9301,9346,9301,9347,9368,5660,5674,5635,5614,5635,5597,9281,9324,9300,9300,9261,9259,9302,9348,9327,9327,9324,9281,9243,9227,9261,9033,9012,8997,8973,8997,9012,7147,7145,7150,9243,9262,9228,7145,7141,7143,7143,7156,7152,8956,8973,8996,9389,9347,9367,9301,9368,9346,9302,9346,9369,9347,9389,9368,9389,9367,9410,5634,5660,5635,5634,5635,5614,9324,9343,9300,9261,9300,9325,9302,9369,9348,9365,9327,9348,9327,9365,9324,9243,9261,9283,9033,9032,9012,8996,8973,9012,7145,7147,7141,7153,\r\n7147,7150,9262,9243,9283,7141,7142,7143,18212,18213,18214,9368,9388,9346,9388,9369,9346,9389,9388,9368,9410,9434,9389,5634,5659,5660,9324,9365,9343,9300,9343,9366,9344,9325,9300,9303,9261,9325,9369,9390,9348,9365,9348,9391,9303,9283,9261,8996,9012,9032,7147,7146,7141,7153,7146,7147,7153,7158,7146,7142,7141,7144,9388,9409,9369,9434,9388,9389,9343,9365,9385,9386,9366,9343,9300,9366,9344,9344,9303,9325,9369,9409,9390,9411,9348,9390,9411,9391,9348,9385,9365,9391,9283,9303,9328,7146,7144,7141,9435,9409,9388,9434,9435,9388,9385,9406,9343,9366,9386,9407,9386,9343,9406,9344,9366,9370,9344,9370,9303,17159,17180,17124,9411,9390,9436,9411,9429,9391,9385,9391,9429,7146,7149,7144,17181,17124,17180,9385,9430,9406,9386,9431,9407,9366,9407,9408,9386,9406,9432,9366,9408,9370,9303,9370,9392,17124,17125,17159,9411,9436,9429,9429,9430,9385,9406,9430,9432,9431,9386,9432,9431,9452,9407,9453,9408,9407,9370,9408,9433,9392,9370,9412,17124,17084,17125,17101,17125,17084,17101,17055,17082,17082,17053,17070,9431,9432,9467,9431,9468,9452,9469,9407,9452,9453,9433,9408,9469,9453,9407,9370,9433,9437,9412,9370,9437,17084,17055,17101,17082,17055,17053,17041,17070,17053,9467,9468,9431,9483,9452,9468,9452,9483,9469,9470,9433,9453,9484,9453,9469,9437,9433,9471,17055,17030,17053,17041,17053,17030,17041,17020,17028,17019,17028,17007,9503,9469,9483,9433,9470,9485,9470,9453,9486,9486,9453,9484,9484,9469,9503,9471,9433,9485,17020,17041,17030,17007,17028,17020,17007,16997,17019,17018,17019,16997,9470,9504,9485,9505,9470,9486,9486,9484,9513,9484,9503,9513,17018,16997,16996,9470,9505,9504,9485,9504,9514,9486,9515,9505,9515,9486,9513,9503,9525,9513,16997,16976,16996,9505,9526,9504,9514,9504,9507,9527,9505,9515,9515,9513,9535,9535,9513,9525,16987,16996,16976,9505,9527,9526,9508,9504,9526,9504,9508,9507,9527,9515,9536,9536,9515,9535,16967,16987,16976,9518,9526,9527,9508,9526,9518,9508,9473,9507,9536,9537,9527,16986,16987,16967,9518,9527,9537,9491,9508,9518,9508,9491,9473,9507,9473,9490,9536,9544,9537,16966,16986,16967,9529,9518,9537,9491,9518,9506,9458,9473,9491,\r\n9490,9473,9440,9529,9537,9544,9529,9506,9518,9491,9506,9472,9458,9440,9473,9491,9472,9458,9529,9544,9528,9529,9528,9506,9489,9472,9506,9458,9417,9440,9439,9458,9472,16966,16953,16969,9517,9506,9528,9489,9455,9472,9506,9517,9489,9458,9439,9417,9440,9417,9373,9439,9472,9455,16961,16969,16953,9489,9488,9455,9489,9517,9516,9439,9394,9417,9394,9373,9417,9459,9440,9373,9455,9414,9439,16953,16947,16961,9516,9488,9489,9456,9455,9488,9439,9414,9394,9394,9334,9373,9455,9456,9414,9394,9414,9371,9394,9371,9334,9373,9334,9351,9414,9456,9415,9414,9415,9371,9333,9334,9371,9351,9334,9309,9457,9415,9456,9415,9372,9371,9267,9334,9333,9333,9371,9372,9267,9309,9334,9457,9416,9415,9086,9051,9075,9415,9416,9372,9308,9267,9333,9350,9333,9372,9309,9267,9288,9051,9086,9084,9374,9372,9416,9266,9267,9308,9308,9333,9350,9372,9374,9350,9288,9267,9246,9084,9086,9110,9231,9267,9266,9266,9308,9289,9335,9308,9350,9374,9335,9350,9231,9246,9267,9124,9084,9110,9232,9231,9266,9289,9308,9335,9289,9248,9266,9352,9335,9374,9231,9201,9246,9084,9124,9111,9202,9231,9232,9232,9266,9248,9289,9335,9311,9289,9269,9248,9311,9335,9352,9231,9202,9201,9140,9111,9124,9099,9084,9111,9202,9232,9215,9215,9232,9248,9269,9289,9311,9215,9248,9269,9156,9201,9202,9141,9111,9140,9099,9111,9125,9215,9183,9202,9269,9311,9310,9215,9269,9268,9156,9182,9201,9156,9202,9183,9141,9125,9111,9125,9142,9099,9215,9216,9183,9310,9268,9269,9268,9247,9215,9182,9156,9155,9156,9183,9170,9155,9125,9141,9125,9156,9142,9216,9215,9247,9216,9203,9183,9268,9249,9247,9155,9156,9125,9170,9183,9203,9142,9156,9170,9216,9247,9249,9216,9217,9203,9203,9184,9170,9142,9170,9157,9249,9217,9216,9203,9217,9184,9170,9184,9157,16909,16896,16904,9218,9184,9217,9157,9184,9185,16897,16904,16896,9185,9184,9218,16896,16891,16897,16894,16897,16891,16894,16891,16885,16220,16227,16210,16210,16189,16220,16210,16227,16211,8419,8362,8390,8362,8322,8390,8277,8322,8321,8362,8321,8322,8322,8277,8301,8277,8252,8301,8252,8302,8301,8302,8252,8278,8478,8421,8419,8389,8419,8421,8362,8419,8389,8362,8389,8321,8277,8321,8275,8229,8277,\r\n8275,8277,8229,8252,8341,8298,8321,8363,8341,8321,8298,8275,8321,8363,8321,8389,8206,8252,8229,8252,8206,8230,8252,8230,8278,8231,8278,8230,8247,8278,8231,8542,8479,8478,8447,8478,8479,8421,8478,8447,8421,8447,8363,8389,8421,8363,8298,8227,8275,8227,8229,8275,8144,8229,8227,8206,8229,8144,8341,8299,8298,8299,8276,8298,8227,8298,8276,8363,8420,8364,8364,8341,8363,8363,8447,8420,8364,8299,8341,8206,8144,8184,8206,8184,8230,8231,8230,8184,8231,8184,8207,8231,8207,8247,8201,8247,8207,8202,8247,8201,8543,8479,8542,8480,8479,8543,8480,8420,8479,8447,8479,8420,8227,8276,8251,8205,8227,8251,8144,8227,8205,8183,8144,8205,8183,8143,8144,8113,8144,8143,8184,8144,8160,8144,8113,8130,8144,8130,8160,8342,8299,8364,8342,8300,8299,8251,8299,8300,8299,8251,8276,8420,8423,8364,8420,8480,8423,8364,8392,8342,8364,8423,8392,8184,8160,8207,8201,8207,8160,8201,8160,8180,8201,8180,8202,8180,8161,8202,8580,8509,8543,8480,8543,8509,8480,8509,8450,8450,8423,8480,8251,8300,8250,8250,8228,8251,8205,8251,8228,8228,8165,8205,8183,8205,8165,8183,8165,8143,8129,8143,8165,8113,8143,8129,8097,8130,8113,8129,8096,8113,8113,8078,8097,8113,8096,8078,8160,8130,8127,8097,8127,8130,8160,8127,8180,8391,8342,8392,8391,8365,8342,8365,8300,8342,8365,8343,8300,8320,8300,8343,8320,8250,8300,8450,8392,8423,8392,8449,8391,8392,8482,8449,8482,8392,8450,8180,8127,8161,8161,8127,8128,8509,8580,8546,8509,8546,8482,8482,8450,8509,8250,8320,8297,8250,8297,8274,18215,18216,18217,8274,8226,8250,8226,8204,8250,8228,8204,8165,8163,8165,8204,18218,18219,18220,8142,8129,8163,8129,8142,8096,8164,8096,8142,18221,18222,18223,8066,8078,8096,8065,8097,8078,8065,8078,8051,8051,8078,8066,8127,8097,8095,8065,8095,8097,8127,8095,8128,8391,8449,8448,8391,8448,8422,8365,8391,8422,8365,8422,8393,8343,8365,8393,18224,18225,18226,18226,18227,18224,18228,18224,18227,18227,18229,18228,8506,8448,8449,8449,8508,8506,8482,8508,8449,8482,8545,8508,8482,8546,8545,8112,8128,8095,8546,8611,8545,8360,8297,8387,8297,8273,8274,8360,8319,8297,8273,8297,8319,8274,8273,8226,8226,8181,8204,8249,8226,8273,\r\n8226,8249,8181,8204,8181,8163,8181,8142,8163,8181,8203,8142,8142,8203,8182,8164,8142,8182,8182,8145,8164,8164,8145,8066,8145,8114,8066,8025,8051,8066,8079,8066,8114,8025,8066,8052,18230,18231,18232,8065,8051,8041,8051,8026,8041,8051,8025,8026,8095,8065,8077,8050,8077,8065,8050,8065,8041,8095,8077,8112,8507,8448,8506,8507,8481,8448,8422,8448,8481,8422,8481,8451,8393,8422,8451,8393,8451,8483,8393,8483,8444,8444,8483,8475,8444,8475,8417,8444,8417,8387,8360,8387,8417,8578,8506,8508,8578,8508,8545,8577,8507,8506,8577,8506,8578,8578,8545,8612,8112,8077,8111,8360,8417,8416,8361,8360,8416,8319,8360,8361,8319,8361,8340,8340,8296,8319,8273,8319,8296,8249,8273,8296,8295,8249,8296,8225,8181,8249,8248,8249,8295,8225,8249,8248,8225,8203,8181,8225,8248,8203,8253,8203,8248,8209,8182,8203,8253,8232,8203,8209,8203,8232,8167,8182,8209,8182,8167,8145,8132,8145,8167,8145,8132,8114,8132,8098,8114,8079,8114,8098,18230,18232,18233,8098,8067,8079,8067,8042,8079,8027,8025,8052,8027,8052,8042,8000,8026,8025,8001,8000,8025,8001,8025,8027,8014,8041,8026,8000,8014,8026,8050,8041,8024,8014,8024,8041,8050,8076,8077,8076,8050,8049,8050,8024,8049,8111,8077,8076,8507,8577,8579,8507,8579,8544,8544,8481,8507,8547,8481,8544,8547,8510,8481,8510,8451,8481,8510,8511,8451,8451,8511,8483,8483,8511,8539,8539,8475,8483,8539,8477,8475,8416,8475,8477,8417,8475,8416,8577,8578,8612,8577,8645,8579,8577,8677,8645,8612,8677,8577,8416,8477,8446,8446,8388,8416,8361,8416,8388,8340,8361,8388,8340,8388,8359,8340,8359,8296,8359,8339,8296,8295,8296,8339,8254,8295,8339,8248,8295,8254,8253,8248,8254,8254,8208,8253,8253,8208,8232,8232,8208,8166,8232,8166,8209,8167,8209,8166,8132,8167,8166,8166,8131,8132,8131,8098,8132,8131,8099,8098,8098,8099,8067,8053,8042,8067,8067,8099,8080,8053,8067,8080,8015,8027,8042,8015,8042,8053,8001,8027,8015,8000,8001,7983,7983,8001,7991,8001,8015,7991,7982,8014,8000,8000,7983,7982,7999,8024,8014,7982,7999,8014,8049,8024,8040,7999,8040,8024,8579,8645,8678,8547,8582,8510,8510,8582,8581,8581,8511,8510,8581,8576,8511,8576,8477,8511,8539,8511,8477,8477,\r\n8576,8541,8477,8541,8504,8446,8477,8504,8446,8504,8445,8445,8388,8446,8418,8388,8445,8359,8388,8418,8418,8415,8359,8415,8386,8359,8359,8386,8339,8386,8366,8339,8323,8339,8366,8323,8254,8339,8323,8281,8254,8254,8281,8257,8257,8212,8254,8212,8208,8254,8212,8169,8208,8169,8166,8208,8133,8166,8169,8166,8133,8131,8131,8133,8099,8115,8099,8133,8115,8080,8099,8115,8116,8080,8100,8053,8080,8100,8080,8116,8053,8054,8015,8053,8081,8054,8053,8100,8081,7991,8015,8003,8003,8015,8043,8054,8043,8015,7977,7983,7991,7977,7991,7993,7991,8003,7993,7971,7982,7983,7977,7971,7983,7990,7999,7982,7982,7976,7990,7971,7976,7982,8040,7999,8023,8023,7999,8006,7990,8006,7999,8505,8504,8541,8505,8445,8504,8505,8476,8445,8476,8418,8445,8418,8476,8474,8415,8418,8474,8474,8503,8415,8503,8473,8415,8415,8473,8424,8415,8424,8386,8366,8386,8424,8425,8366,8424,8425,8372,8366,8366,8372,8323,8327,8323,8372,8306,8323,8327,8306,8281,8323,8306,8234,8281,8281,8234,8257,8212,8257,8234,8234,8185,8212,8185,8169,8212,8185,8147,8169,8133,8169,8147,8133,8147,8115,8147,8168,8115,8146,8115,8168,8115,8146,8116,8116,8146,8117,8116,8117,8100,8117,8081,8100,8081,8082,8054,8081,8118,8082,8118,8081,8117,8043,8054,8028,8055,8054,8082,8055,8028,8054,8043,8028,8003,7984,7993,8003,8003,8028,8002,8003,8002,7984,7984,7977,7993,7971,7977,7967,7967,7977,7972,7984,7972,7977,7963,7976,7971,7963,7971,7967,7994,7990,7976,7994,8006,7990,8425,8424,8473,8327,8280,8306,8327,8326,8280,8280,8234,8306,8280,8256,8234,8256,8185,8234,8255,8185,8256,8185,8211,8147,8255,8233,8185,8185,8233,8211,8211,8186,8147,8168,8147,8186,8168,8186,8210,8168,8210,8170,8170,8146,8168,8170,8148,8146,8117,8146,8148,8117,8148,8118,8119,8118,8148,8118,8085,8082,8118,8119,8085,8058,8055,8082,8085,8058,8082,8029,8028,8055,8004,8002,8028,8029,8004,8028,7984,8002,7992,8004,7992,8002,7984,7992,7972,7967,7972,7959,7972,7974,7959,7992,7985,7972,7972,7985,7974,7959,7963,7967,8280,8326,8305,8280,8305,8256,8255,8256,8305,8255,8305,8303,8255,8303,8279,8255,8279,8233,8186,8211,8233,8279,8304,8233,8235,8186,8233,8325,8233,8304,\r\n8235,8233,8282,8307,8233,8325,8282,8233,8307,8210,8186,8235,8235,8258,8210,8283,8210,8258,8259,8210,8283,8170,8120,8148,8119,8148,8120,8119,8120,8084,8085,8119,8084,7992,8004,7985,12621,12622,12623,8328,8282,8307,8235,8282,8258,8984,8966,8983,8966,8984,8947,8946,8983,8966,8985,8947,8984,8966,8947,8905,8983,8946,9006,8946,8966,8905,8967,8947,8985,8905,8947,8930,9006,8946,8982,8929,8946,8905,8967,8930,8947,9007,8967,8985,8905,8930,8884,8946,8965,8982,8946,8929,8965,8856,8929,8905,8930,8967,8948,8986,8967,9007,8930,8948,8884,8856,8905,8884,8965,9005,8982,8949,8965,8929,8906,8929,8856,8986,8948,8967,9025,8986,9007,8907,8884,8948,8856,8884,8785,8965,8987,9005,8965,8949,8987,8949,8929,8906,8906,8856,8883,8981,8948,8986,9025,9024,8986,8907,8885,8884,8945,8907,8948,8785,8884,8885,8856,8785,8820,8987,9027,9005,8988,8987,8949,8906,8950,8949,8856,8820,8883,8906,8883,8931,8945,8948,8981,8981,8986,9024,9025,9039,9024,8854,8885,8907,8904,8907,8945,8854,8785,8885,8785,8749,8820,8987,9026,9027,9005,9027,9041,8987,8988,9026,8988,8949,8950,8931,8950,8906,8855,8883,8820,8928,8931,8883,8964,8945,8981,9004,8981,9024,9004,9024,9039,8854,8907,8904,8945,8927,8904,8854,8819,8785,8749,8785,8716,8820,8749,8855,9053,9027,9026,9053,9041,9027,8988,9040,9026,8950,8990,8988,8931,8968,8950,8855,8882,8883,5687,5664,5698,8928,8883,8882,8964,8927,8945,8964,8981,9004,9023,9004,9039,8853,8854,8904,8904,8927,8881,8854,8784,8819,8819,8716,8785,8749,8716,8678,8749,8882,8855,9040,9053,9026,9041,9053,9066,8988,9042,9040,8968,8990,8950,8990,9028,8988,8968,8931,8989,5664,5687,5677,9008,8989,8931,8928,8882,8908,8944,8927,8964,8979,8964,9004,9023,8979,9004,18234,18235,18236,8853,8784,8854,8853,8904,8848,8927,8880,8881,8904,8881,8848,8716,8819,8784,8646,8678,8716,8749,8678,8786,8749,8857,8882,9053,9040,9065,9053,9065,9066,9042,8988,9028,9042,9064,9040,8968,9009,8990,8990,9009,9028,5699,5706,5678,5677,5687,5697,5664,5677,5639,5678,5664,5652,8857,8908,8882,5705,5697,5687,8903,8927,8944,8964,8979,8944,9020,8979,9023,18237,18235,18234,8853,8783,8784,8848,8847,8853,\r\n8903,8880,8927,8814,8881,8880,8814,8848,8881,8716,8784,8715,8579,8678,8646,8715,8646,8716,8821,8749,8786,8821,8857,8749,9040,9064,9065,9042,9028,9044,9042,9067,9064,8968,9029,9009,9009,9044,9028,5678,5688,5699,5652,5664,5639,5678,5652,5665,8886,8908,8857,5697,5705,5696,8943,8903,8944,8943,8944,8979,9003,8979,9020,9021,9020,9023,8853,8847,8783,8783,8715,8784,8848,8780,8847,8903,8846,8880,8814,8880,8813,8814,8780,8848,8646,8610,8579,8715,8679,8646,8821,8886,8857,9042,9044,9067,9009,9029,9043,9044,9009,9055,5665,5688,5678,9043,9029,9054,5720,5696,5705,8903,8943,8926,8943,8979,9003,9003,9020,9021,8818,8783,8847,8783,8748,8715,8779,8847,8780,8846,8903,8879,8813,8880,8846,8813,8745,8814,8814,8745,8780,8646,8679,8610,8610,8544,8579,8748,8679,8715,9070,9067,9044,9055,9009,9043,9070,9044,9055,9068,9043,9054,8963,8926,8943,8903,8926,8879,8943,9003,8980,9003,9021,8980,8783,8818,8748,8818,8847,8779,8779,8780,8712,8846,8879,8776,8813,8846,8777,8813,8777,8745,8780,8745,8712,8679,8609,8610,8610,8609,8544,8748,8680,8679,8963,8942,8926,8943,8980,8963,8902,8879,8926,9022,8980,9021,8818,8778,8748,8818,8779,8778,8779,8712,8711,8879,8845,8776,8846,8776,8777,8709,8745,8777,8676,8712,8745,8679,8680,8609,8544,8609,8547,8748,8710,8680,8970,8942,8963,8942,8902,8926,9002,8963,8980,8902,8845,8879,9002,8980,9022,8778,8710,8748,8779,8711,8778,8711,8712,8643,8776,8845,8810,8708,8777,8776,8709,8676,8745,8777,8708,8709,8643,8712,8676,8680,8613,8609,8547,8609,8613,8644,8680,8710,8970,8934,8942,8970,8963,9002,8902,8942,8925,8877,8845,8902,9038,9002,9022,8710,8778,8711,8643,8642,8711,8877,8810,8845,8776,8810,8742,8776,8742,8708,8676,8709,8641,8709,8708,8675,8676,8608,8643,8644,8613,8680,8547,8613,8582,8710,8642,8644,8952,8934,8970,8942,8934,8925,8970,9002,9019,8902,8925,8877,9019,9002,9038,8710,8711,8642,8643,8575,8642,8810,8877,8811,8810,8743,8742,8742,8674,8708,8709,8675,8641,8607,8676,8641,8708,8640,8675,8608,8676,8607,8575,8643,8608,8613,8644,8576,8613,8581,8582,8642,8606,8644,8952,8910,8934,8970,8972,8952,8934,8889,8925,9010,8970,9019,8925,8878,\r\n8877,9047,9019,9038,8606,8642,8575,8811,8877,8878,8810,8811,8743,8743,8672,8742,8672,8674,8742,8708,8674,8640,8605,8641,8675,8607,8641,8574,8640,8605,8675,8608,8607,8540,8540,8575,8608,8576,8644,8606,8581,8613,8576,8910,8952,8911,8889,8934,8910,9010,8972,8970,8952,8972,8935,8889,8878,8925,9047,9010,9019,8606,8575,8505,8878,8812,8811,8744,8743,8811,8672,8743,8673,8672,8604,8674,8640,8674,8604,8605,8574,8641,8540,8607,8574,8640,8537,8605,8505,8575,8540,8541,8576,8606,8935,8911,8952,8911,8859,8910,8889,8910,8859,9030,8972,9010,8971,8935,8972,8889,8823,8878,9047,9058,9010,8505,8541,8606,8878,8823,8812,8812,8744,8811,8744,8673,8743,8672,8673,8603,8603,8604,8672,8640,8604,8537,8574,8605,8537,8540,8574,8476,8540,8476,8505,8935,8890,8911,8911,8890,8859,8889,8859,8823,9030,9011,8972,9046,9030,9010,8971,8936,8935,9011,8971,8972,9046,9010,9058,8812,8823,8755,8812,8757,8744,8744,8707,8673,8603,8673,8639,8603,8573,8604,8604,8538,8537,8574,8537,8476,8890,8935,8936,8859,8890,8789,8823,8859,8789,9011,9030,9031,8953,8936,8971,9011,8992,8971,9071,9046,9058,8823,8789,8755,8757,8812,8755,8757,8707,8744,8639,8673,8707,8639,8536,8603,8573,8603,8536,8573,8538,8604,8474,8537,8538,8537,8474,8476,8890,8936,8912,8789,8890,8860,9011,9031,8992,8953,8912,8936,8971,8992,8953,8757,8755,8691,8757,8718,8707,8682,8639,8707,8639,8614,8536,8503,8573,8536,8573,8503,8538,8538,8503,8474,8890,8912,8860,8912,8953,8913,8992,8958,8953,8757,8691,8718,8682,8707,8718,8682,8614,8639,8614,8548,8536,8503,8536,8473,8860,8912,8913,8913,8953,8958,8975,8958,8992,8718,8691,8623,8682,8718,8623,8682,8623,8614,8548,8614,8623,8536,8548,8512,8473,8536,8512,8913,8958,8920,8975,8920,8958,8484,8512,8548,8425,8473,8512,8484,8425,8512,8429,8372,8425,8429,8399,8372,8327,8372,8399,8327,8399,8371,8399,8400,8347,8371,8399,8347,8371,8326,8327,8347,8400,8367,8426,8367,8400,8371,8347,8326,8347,8367,8305,8426,8394,8367,8347,8305,8326,8452,8394,8426,8344,8305,8367,8344,8367,8394,8394,8452,8395,8305,8344,8303,8394,8395,8344,8452,8453,8395,8344,8368,8303,8395,8368,8344,8453,8427,8395,8368,\r\n8345,8303,8427,8368,8395,8514,8486,8453,8427,8453,8486,8368,8398,8345,8345,8324,8303,8279,8303,8324,8427,8398,8368,8514,8552,8486,8427,8486,8488,8398,8397,8345,8369,8324,8345,8324,8304,8279,8427,8454,8398,8552,8514,8585,8586,8486,8552,8488,8486,8553,8427,8488,8454,8397,8398,8454,8345,8397,8369,8369,8396,8324,8346,8304,8324,8618,8552,8585,8486,8586,8553,8586,8552,8618,8556,8488,8553,8488,8515,8454,8397,8454,8428,8397,8428,8369,8369,8428,8396,8370,8324,8396,8346,8324,8370,8654,8618,8585,8586,8620,8553,8618,8655,8586,8556,8515,8488,8556,8553,8620,8515,8487,8454,8428,8454,8487,8654,8688,8618,8654,8585,8689,8586,8657,8620,8655,8618,8688,8655,8657,8586,8556,8554,8515,8556,8620,8621,8487,8515,8554,8428,8487,8516,8721,8688,8654,8689,8721,8654,8690,8620,8657,8655,8688,8722,8657,8655,8690,8621,8554,8556,8690,8621,8620,8487,8554,8555,8555,8516,8487,8721,8722,8688,8722,8753,8655,8724,8690,8655,8555,8554,8621,8690,8658,8621,8555,8588,8516,8721,8787,8722,8788,8753,8722,8724,8655,8753,8724,8658,8690,8658,8555,8621,8622,8588,8555,18244,18245,18246,8822,8787,8721,8788,8722,8787,8788,8761,8753,8724,8753,8694,8724,8661,8658,8658,8622,8555,8622,8558,8588,8627,8588,8558,8858,8787,8822,8858,8788,8787,8795,8761,8788,8753,8761,8694,8694,8661,8724,8658,8661,8622,8558,8622,8591,8592,8627,8558,8822,8888,8858,8858,8795,8788,8795,8695,8761,8694,8761,8695,8694,8591,8661,8591,8622,8661,8558,8591,8518,8592,8558,8490,8909,8888,8822,8867,8858,8888,8795,8858,8867,8797,8695,8795,8695,8591,8694,8626,8518,8591,8558,8518,8490,8592,8490,8559,8932,8888,8909,8822,8933,8909,8867,8888,8932,8795,8867,8797,8797,8763,8695,8695,8662,8591,8626,8593,8518,8662,8626,8591,8490,8518,8457,8559,8490,8520,8932,8909,8940,8951,8909,8933,8867,8932,8871,8867,8869,8797,8797,8831,8763,8763,8730,8695,8662,8695,8730,8593,8626,8663,8519,8518,8593,8662,8663,8626,8519,8457,8518,8402,8490,8457,8458,8520,8490,8951,8940,8909,8871,8932,8940,8969,8951,8933,8867,8871,8869,8831,8797,8869,8831,8830,8763,8763,8796,8730,8662,8730,8762,8593,8663,8628,8519,8593,8628,8663,8662,8729,8519,8491,8457,\r\n8458,8490,8402,8401,8402,8457,8977,8940,8951,8871,8940,8922,8991,8951,8969,8834,8869,8871,8869,8833,8831,8831,8868,8830,8830,8796,8763,8796,8762,8730,8662,8762,8729,8628,8663,8696,7170,7172,7175,7185,7187,7183,7169,7172,7170,8401,8457,8491,8940,8977,8960,8991,8977,8951,8922,8940,8960,8871,8922,8899,8834,8766,8869,8834,8871,8799,8869,8766,8833,8833,8898,8831,8868,8831,8898,8796,8830,8868,8796,8832,8762,7187,7192,7189,7180,7185,7183,7175,7180,7178,7170,7175,7173,7183,7187,7189,7169,7170,7171,7177,7169,7174,8977,8999,8960,8991,9016,8977,8961,8922,8960,8899,8922,8941,8871,8899,8835,8799,8766,8834,8871,8835,8799,8833,8766,8765,8833,8870,8898,8868,8898,8897,8796,8868,8832,7193,7189,7192,7178,7180,7183,7173,7175,7178,7171,7170,7173,7171,7174,7169,9016,8999,8977,8960,8999,9017,8991,9045,9016,8941,8922,8961,8960,9000,8961,8899,8941,8924,8835,8899,8872,8766,8799,8733,8767,8799,8835,8766,8699,8765,8765,8870,8833,8897,8898,8870,8832,8868,8897,8921,8832,8897,7171,7176,7174,8999,9016,9035,8960,9017,9000,9056,9016,9045,8941,8961,8978,9000,8978,8961,8924,8941,8962,8872,8899,8924,8872,8801,8835,8733,8799,8767,8699,8766,8733,8767,8835,8801,8765,8699,8732,12624,12625,12626,9051,9035,9016,9056,9061,9016,8941,8978,8962,6827,6818,6834,8872,8924,8923,8872,8873,8801,8767,8667,8733,8699,8733,8666,8767,8801,8735,8699,8665,8732,8798,8765,8732,9051,9016,9061,9079,9061,9056,13696,13682,13671,13696,13671,13694,8873,8872,8923,8802,8801,8873,8667,8767,8735,8733,8667,8666,8699,8666,8630,8802,8735,8801,8699,8630,8665,8665,8764,8732,8798,8732,8764,9075,9051,9061,9094,9061,9079,13671,13670,13694,13706,13694,13670,8802,8873,8874,8667,8735,8701,8666,8667,8631,8596,8630,8666,8802,8768,8735,8595,8665,8630,8764,8665,8731,13695,13706,13670,8874,8836,8802,8768,8701,8735,8634,8667,8701,8562,8631,8667,8596,8666,8631,8630,8596,8523,8802,8836,8768,8595,8698,8665,8595,8630,8523,8731,8665,8698,8701,8768,8702,8562,8667,8634,8701,8702,8634,8562,8596,8631,8523,8596,8562,8836,8837,8768,8698,8595,8697,8560,8595,8523,8768,8770,8702,8562,8634,8601,8669,8634,8702,8523,8562,\r\n8461,8768,8837,8770,8697,8595,8664,8560,8629,8595,8523,8493,8560,8770,8736,8702,8669,8601,8634,8562,8601,8527,8702,8736,8669,8562,8527,8461,8461,8493,8523,8664,8595,8629,8629,8560,8594,8560,8493,8492,8770,8803,8736,8669,8670,8601,8602,8527,8601,8736,8670,8669,8496,8461,8527,8433,8493,8461,8560,8492,8594,8433,8492,8493,8803,8769,8736,8601,8670,8602,8566,8527,8602,8736,8769,8670,8461,8496,8437,8566,8496,8527,8377,8433,8461,8594,8492,8561,8492,8433,8460,8671,8602,8670,8566,8602,8635,8769,8737,8670,8528,8437,8496,8461,8437,8377,8496,8566,8567,8377,8405,8433,8561,8492,8522,8433,8405,8460,8492,8460,8522,8635,8602,8671,8671,8670,8737,8566,8635,8567,8437,8528,8497,8528,8496,8567,8408,8377,8437,8352,8405,8377,8460,8405,8459,8522,8460,8521,8351,8312,8334,8334,8313,8351,8312,8352,8335,8354,8337,8314,8314,8335,8354,8671,8704,8635,8737,8704,8671,8636,8567,8635,8568,8497,8528,8437,8497,8464,8567,8568,8528,8354,8377,8408,8437,8464,8408,8352,8403,8405,8377,8335,8352,8459,8405,8404,8521,8460,8459,8351,8352,8312,8376,8351,8313,8337,8354,8379,8377,8354,8335,8704,8703,8635,8568,8567,8636,8636,8635,8703,8569,8497,8568,8524,8464,8497,8354,8408,8407,8408,8464,8463,8352,8351,8403,8403,8404,8405,8459,8404,8432,8404,8351,8376,8354,8407,8379,8337,8379,8380,8636,8637,8568,8636,8703,8738,8569,8524,8497,8569,8568,8637,8463,8464,8524,8407,8408,8463,8404,8403,8351,8432,8404,8376,3510,3527,3464,3497,3510,3464,8636,8705,8637,8738,8739,8636,8597,8524,8569,8638,8569,8637,8525,8463,8524,8407,8463,8495,8600,8407,8564,3483,3497,3464,8636,8739,8705,8637,8705,8740,8525,8524,8597,8597,8569,8638,8706,8638,8637,8495,8463,8525,8526,8407,8495,8526,8564,8407,3464,3477,3454,8774,8705,8739,8774,8740,8705,8706,8637,8740,8525,8597,8598,8598,8597,8638,8706,8741,8638,8495,8525,8563,8526,8495,8565,3477,3489,3465,3454,3477,3465,3761,3738,3753,3727,3762,3753,8598,8563,8525,8598,8638,8700,8706,8775,8741,8638,8741,8734,8495,8563,8599,8599,8565,8495,3489,3518,3502,3489,3502,3465,3761,3736,3738,3727,3753,3738,8844,8809,8706,8632,8563,8598,8638,8734,8700,8598,8700,8668,8775,\r\n8706,8809,8775,8800,8741,8800,8734,8741,8633,8599,8563,3547,3517,3518,3502,3518,3517,3465,3502,3488,3710,3738,3736,3727,3738,3710,3727,3695,3709,8632,8633,8563,8632,8598,8668,3675,3676,3658,3626,3675,3658,3678,3709,3695,3678,3642,3677,3677,3641,3676,3564,3548,3547,3517,3547,3548,3488,3502,3517,3710,3695,3727,3594,3577,3564,3594,3626,3608,3658,3676,3641,3626,3658,3609,3695,3659,3678,3678,3659,3642,3677,3642,3641,3534,3548,3564,3517,3548,3534,3710,3679,3695,3577,3594,3608,3577,3534,3564,3608,3626,3609,3641,3609,3658,3695,3664,3659,3627,3642,3659,3642,3610,3641,3679,3710,3697,3664,3695,3679,3577,3608,3609,3565,3534,3577,3609,3641,3610,3664,3627,3659,3642,3627,3610,3577,3609,3578,3578,3565,3577,3609,3610,3578\r\n\t\t\t} \r\n\t\t}\r\n\t\tLayerElementSmoothing: 0 {\r\n\t\t\tVersion: 102\r\n\t\t\tName: \"\"\r\n\t\t\tMappingInformationType: \"ByEdge\"\r\n\t\t\tReferenceInformationType: \"Direct\"\r\n\t\t\tSmoothing: *45598 {\r\n\t\t\t\ta: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\r\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\n\t\t\t} \r\n\t\t}\r\n\t\tLayerElementMaterial: 0 {\r\n\t\t\tVersion: 101\r\n\t\t\tName: \"\"\r\n\t\t\tMappingInformationType: \"AllSame\"\r\n\t\t\tReferenceInformationType: \"IndexToDirect\"\r\n\t\t\tMaterials: *1 {\r\n\t\t\t\ta: 0\r\n\t\t\t} \r\n\t\t}\r\n\t\tLayer: 0 {\r\n\t\t\tVersion: 100\r\n\t\t\tLayerElement:  {\r\n\t\t\t\tType: \"LayerElementNormal\"\r\n\t\t\t\tTypedIndex: 0\r\n\t\t\t}\r\n\t\t\tLayerElement:  {\r\n\t\t\t\tType: \"LayerElementMaterial\"\r\n\t\t\t\tTypedIndex: 0\r\n\t\t\t}\r\n\t\t\tLayerElement:  {\r\n\t\t\t\tType: \"LayerElementSmoothing\"\r\n\t\t\t\tTypedIndex: 0\r\n\t\t\t}\r\n\t\t\tLayerElement:  {\r\n\t\t\t\tType: \"LayerElementUV\"\r\n\t\t\t\tTypedIndex: 0\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tModel: 2709857248, \"Model::Stanford Bunny\", \"Mesh\" {\r\n\t\tVersion: 232\r\n\t\tProperties70:  {\r\n\t\t\tP: \"RotationActive\", \"bool\", \"\", \"\",1\r\n\t\t\tP: \"InheritType\", \"enum\", \"\", \"\",1\r\n\t\t\tP: \"ScalingMax\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\tP: \"DefaultAttributeIndex\", \"int\", \"Integer\", \"\",0\r\n\t\t\tP: \"Lcl Scaling\", \"Lcl Scaling\", \"\", \"A\",100,100,100\r\n\t\t\tP: \"currentUVSet\", \"KString\", \"\", \"U\", \"default\"\r\n\t\t}\r\n\t\tShading: T\r\n\t\tCulling: \"CullingOff\"\r\n\t}\r\n\tMaterial: 2249280928, \"Material::Wood Light\", \"\" {\r\n\t\tVersion: 102\r\n\t\tShadingModel: \"phong\"\r\n\t\tMultiLayer: 0\r\n\t\tProperties70:  {\r\n\t\t\tP: \"AmbientColor\", \"Color\", \"\", \"A\",0,0,0\r\n\t\t\tP: \"DiffuseColor\", \"Color\", \"\", \"A\",1,1,1\r\n\t\t\tP: \"BumpFactor\", \"double\", \"Number\", \"\",0.0299999993294477\r\n\t\t\tP: \"TransparencyFactor\", \"Number\", \"\", \"A\",1\r\n\t\t\tP: \"SpecularColor\", \"Color\", \"\", \"A\",0.5,0.5,0.5\r\n\t\t\tP: \"ShininessExponent\", \"Number\", \"\", \"A\",19\r\n\t\t\tP: \"Emissive\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\tP: \"Ambient\", \"Vector3D\", \"Vector\", \"\",0,0,0\r\n\t\t\tP: \"Diffuse\", \"Vector3D\", \"Vector\", \"\",1,1,1\r\n\t\t\tP: \"Specular\", \"Vector3D\", \"Vector\", \"\",0.5,0.5,0.5\r\n\t\t\tP: \"Shininess\", \"double\", \"Number\", \"\",19\r\n\t\t\tP: \"Opacity\", \"double\", \"Number\", \"\",1\r\n\t\t\tP: \"Reflectivity\", \"double\", \"Number\", \"\",0\r\n\t\t}\r\n\t}\r\n}\r\n\r\n; Object connections\r\n;------------------------------------------------------------------\r\n\r\nConnections:  {\r\n\t\r\n\t;Model::Stanford Bunny, Model::RootNode\r\n\tC: \"OO\",2709857248,0\r\n\t\r\n\t;AnimLayer::BaseLayer, AnimStack::Take 001\r\n\tC: \"OO\",2708656048,1024396080\r\n\t\r\n\t;Geometry::, Model::Stanford Bunny\r\n\tC: \"OO\",1938977120,2709857248\r\n\t\r\n\t;Material::Wood Light, Model::Stanford Bunny\r\n\tC: \"OO\",2249280928,2709857248\r\n}\r\n"
  },
  {
    "path": "public/models/gltf/DamagedHelmet.gltf",
    "content": "{\r\n    \"accessors\" : [\r\n        {\r\n            \"bufferView\" : 0,\r\n            \"componentType\" : 5123,\r\n            \"count\" : 46356,\r\n            \"max\" : [\r\n                14555\r\n            ],\r\n            \"min\" : [\r\n                0\r\n            ],\r\n            \"type\" : \"SCALAR\"\r\n        },\r\n        {\r\n            \"bufferView\" : 1,\r\n            \"componentType\" : 5126,\r\n            \"count\" : 14556,\r\n            \"max\" : [\r\n                0.9424954056739807,\r\n                0.8128451108932495,\r\n                0.900973916053772\r\n            ],\r\n            \"min\" : [\r\n                -0.9474585652351379,\r\n                -1.18715500831604,\r\n                -0.9009949564933777\r\n            ],\r\n            \"type\" : \"VEC3\"\r\n        },\r\n        {\r\n            \"bufferView\" : 2,\r\n            \"componentType\" : 5126,\r\n            \"count\" : 14556,\r\n            \"max\" : [\r\n                1.0,\r\n                1.0,\r\n                1.0\r\n            ],\r\n            \"min\" : [\r\n                -1.0,\r\n                -1.0,\r\n                -1.0\r\n            ],\r\n            \"type\" : \"VEC3\"\r\n        },\r\n        {\r\n            \"bufferView\" : 3,\r\n            \"componentType\" : 5126,\r\n            \"count\" : 14556,\r\n            \"max\" : [\r\n                0.9999759793281555,\r\n                1.998665988445282\r\n            ],\r\n            \"min\" : [\r\n                0.002448640065267682,\r\n                1.0005531199858524\r\n            ],\r\n            \"type\" : \"VEC2\"\r\n        }\r\n    ],\r\n    \"asset\" : {\r\n        \"generator\" : \"Khronos Blender glTF 2.0 exporter\",\r\n        \"version\" : \"2.0\"\r\n    },\r\n    \"bufferViews\" : [\r\n        {\r\n            \"buffer\" : 0,\r\n            \"byteLength\" : 92712,\r\n            \"byteOffset\" : 0,\r\n            \"target\" : 34963\r\n        },\r\n        {\r\n            \"buffer\" : 0,\r\n            \"byteLength\" : 174672,\r\n            \"byteOffset\" : 92712,\r\n            \"target\" : 34962\r\n        },\r\n        {\r\n            \"buffer\" : 0,\r\n            \"byteLength\" : 174672,\r\n            \"byteOffset\" : 267384,\r\n            \"target\" : 34962\r\n        },\r\n        {\r\n            \"buffer\" : 0,\r\n            \"byteLength\" : 116448,\r\n            \"byteOffset\" : 442056,\r\n            \"target\" : 34962\r\n        }\r\n    ],\r\n    \"buffers\" : [\r\n        {\r\n            \"byteLength\" : 558504,\r\n            \"uri\" : \"DamagedHelmet.bin\"\r\n        }\r\n    ],\r\n    \"images\" : [\r\n        {\r\n            \"uri\" : \"Default_albedo.jpg\"\r\n        },\r\n        {\r\n            \"uri\" : \"Default_metalRoughness.jpg\"\r\n        },\r\n        {\r\n            \"uri\" : \"Default_emissive.jpg\"\r\n        },\r\n        {\r\n            \"uri\" : \"Default_AO.jpg\"\r\n        },\r\n        {\r\n            \"uri\" : \"Default_normal.jpg\"\r\n        }\r\n    ],\r\n    \"materials\" : [\r\n        {\r\n            \"emissiveFactor\" : [\r\n                1.0,\r\n                1.0,\r\n                1.0\r\n            ],\r\n            \"emissiveTexture\" : {\r\n                \"index\" : 2\r\n            },\r\n            \"name\" : \"Material_MR\",\r\n            \"normalTexture\" : {\r\n                \"index\" : 4\r\n            },\r\n            \"occlusionTexture\" : {\r\n                \"index\" : 3\r\n            },\r\n            \"pbrMetallicRoughness\" : {\r\n                \"baseColorTexture\" : {\r\n                    \"index\" : 0\r\n                },\r\n                \"metallicRoughnessTexture\" : {\r\n                    \"index\" : 1\r\n                }\r\n            }\r\n        }\r\n    ],\r\n    \"meshes\" : [\r\n        {\r\n            \"name\" : \"mesh_helmet_LP_13930damagedHelmet\",\r\n            \"primitives\" : [\r\n                {\r\n                    \"attributes\" : {\r\n                        \"NORMAL\" : 2,\r\n                        \"POSITION\" : 1,\r\n                        \"TEXCOORD_0\" : 3\r\n                    },\r\n                    \"indices\" : 0,\r\n                    \"material\" : 0\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"nodes\" : [\r\n        {\r\n            \"mesh\" : 0,\r\n            \"name\" : \"node_damagedHelmet_-6514\",\r\n            \"rotation\" : [\r\n                0.7071068286895752,\r\n                0.0,\r\n                -0.0,\r\n                0.7071068286895752\r\n            ]\r\n        }\r\n    ],\r\n    \"samplers\" : [\r\n        {}\r\n    ],\r\n    \"scene\" : 0,\r\n    \"scenes\" : [\r\n        {\r\n            \"name\" : \"Scene\",\r\n            \"nodes\" : [\r\n                0\r\n            ]\r\n        }\r\n    ],\r\n    \"textures\" : [\r\n        {\r\n            \"sampler\" : 0,\r\n            \"source\" : 0\r\n        },\r\n        {\r\n            \"sampler\" : 0,\r\n            \"source\" : 1\r\n        },\r\n        {\r\n            \"sampler\" : 0,\r\n            \"source\" : 2\r\n        },\r\n        {\r\n            \"sampler\" : 0,\r\n            \"source\" : 3\r\n        },\r\n        {\r\n            \"sampler\" : 0,\r\n            \"source\" : 4\r\n        }\r\n    ]\r\n}\r\n"
  },
  {
    "path": "public/models/json/lightmap.json",
    "content": "{\"metadata\":{\"version\":4.5,\"type\":\"Object\",\"generator\":\"Object3D.toJSON\"},\"geometries\":[{\"uuid\":\"0E054665-995F-4348-950F-5A4A82ED1AC3\",\"type\":\"BufferGeometry\",\"data\":{\"attributes\":{\"position\":{\"itemSize\":3,\"type\":\"Float32Array\",\"array\":[1.8567899465560913,0.012594800442457199,-0.5449060201644897,1.8567899465560913,0.012594800442457199,0.5449060201644897,1.8567899465560913,1.1024099588394165,-0.5449060201644897,1.8567899465560913,0.012594800442457199,0.5449060201644897,1.8567899465560913,1.1024099588394165,0.5449060201644897,1.8567899465560913,1.1024099588394165,-0.5449060201644897,1.8567899465560913,1.1024099588394165,-0.5449060201644897,2.9465999603271484,1.1024099588394165,-0.5449060201644897,1.8567899465560913,0.012594800442457199,-0.5449060201644897,2.9465999603271484,1.1024099588394165,-0.5449060201644897,2.9465999603271484,0.012594800442457199,-0.5449060201644897,1.8567899465560913,0.012594800442457199,-0.5449060201644897,2.9465999603271484,1.1024099588394165,-0.5449060201644897,2.9465999603271484,1.1024099588394165,0.5449060201644897,2.9465999603271484,0.012594800442457199,-0.5449060201644897,2.9465999603271484,1.1024099588394165,0.5449060201644897,2.9465999603271484,0.012594800442457199,0.5449060201644897,2.9465999603271484,0.012594800442457199,-0.5449060201644897,1.8567899465560913,0.012594800442457199,0.5449060201644897,2.9465999603271484,0.012594800442457199,0.5449060201644897,1.8567899465560913,1.1024099588394165,0.5449060201644897,2.9465999603271484,0.012594800442457199,0.5449060201644897,2.9465999603271484,1.1024099588394165,0.5449060201644897,1.8567899465560913,1.1024099588394165,0.5449060201644897,1.8567899465560913,0.012594800442457199,0.5449060201644897,1.8567899465560913,0.012594800442457199,-0.5449060201644897,2.9465999603271484,0.012594800442457199,0.5449060201644897,1.8567899465560913,0.012594800442457199,-0.5449060201644897,2.9465999603271484,0.012594800442457199,-0.5449060201644897,2.9465999603271484,0.012594800442457199,0.5449060201644897,2.9465999603271484,1.1024099588394165,0.5449060201644897,2.9465999603271484,1.1024099588394165,-0.5449060201644897,1.8567899465560913,1.1024099588394165,0.5449060201644897,2.9465999603271484,1.1024099588394165,-0.5449060201644897,1.8567899465560913,1.1024099588394165,-0.5449060201644897,1.8567899465560913,1.1024099588394165,0.5449060201644897,8.397109985351562,-3.670490116292058e-7,-8.397109985351562,-8.397109985351562,-3.670490116292058e-7,-8.397109985351562,8.397109985351562,3.670490116292058e-7,8.397109985351562,-8.397109985351562,-3.670490116292058e-7,-8.397109985351562,-8.397109985351562,3.670490116292058e-7,8.397109985351562,8.397109985351562,3.670490116292058e-7,8.397109985351562,1,0.018008200451731682,-1,1,0.01800829917192459,1,-1,0.018008200451731682,-1,1,0.01800829917192459,1,-1,0.01800829917192459,1,-1,0.018008200451731682,-1,1,2.018009901046753,-1,-1,2.018009901046753,-1,0.9999989867210388,2.018009901046753,1,-1,2.018009901046753,-1,-1,2.018009901046753,1,0.9999989867210388,2.018009901046753,1,1,0.018008200451731682,-1,1,2.018009901046753,-1,1,0.01800829917192459,1,1,2.018009901046753,-1,0.9999989867210388,2.018009901046753,1,1,0.01800829917192459,1,1,0.01800829917192459,1,0.9999989867210388,2.018009901046753,1,-1,0.01800829917192459,1,0.9999989867210388,2.018009901046753,1,-1,2.018009901046753,1,-1,0.01800829917192459,1,-1,0.01800829917192459,1,-1,2.018009901046753,1,-1,0.018008200451731682,-1,-1,2.018009901046753,1,-1,2.018009901046753,-1,-1,0.018008200451731682,-1,1,2.018009901046753,-1,1,0.018008200451731682,-1,-1,2.018009901046753,-1,1,0.018008200451731682,-1,-1,0.018008200451731682,-1,-1,2.018009901046753,-1],\"normalized\":false},\"normal\":{\"itemSize\":3,\"type\":\"Float32Array\",\"array\":[-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-4.371134920688746e-8,0,1,-4.371134920688746e-8,0,1,-4.371134920688746e-8,0,1,-4.371134920688746e-8,0,1,-4.371134920688746e-8,0,1,-4.371134920688746e-8,0,-1,5.000000058430487e-8,0,-1,5.000000058430487e-8,0,-1,5.000000058430487e-8,0,-1,5.000000058430487e-8,0,-1,5.000000058430487e-8,0,-1,5.000000058430487e-8,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,4.999996008336893e-7,4.999999987376214e-7,1,4.999996008336893e-7,4.999999987376214e-7,1,4.999996008336893e-7,4.999999987376214e-7,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1],\"normalized\":false},\"uv\":{\"itemSize\":2,\"type\":\"Float32Array\",\"array\":[1,1,0,1,1,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,1,1,0,1,1,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,1,1,0,1,1,0,0,1,0,0,1,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0],\"normalized\":false},\"uv2\":{\"itemSize\":2,\"type\":\"Float32Array\",\"array\":[0.0010010000551119447,0.4989989995956421,0.2489989995956421,0.4989989995956421,0.0010010000551119447,0.2510010004043579,0.2489989995956421,0.4989989995956421,0.2489989995956421,0.2510010004043579,0.0010010000551119447,0.2510010004043579,0.4989989995956421,0.0010010000551119447,0.2510010004043579,0.0010010000551119447,0.4989989995956421,0.2489989995956421,0.2510010004043579,0.0010010000551119447,0.2510010004043579,0.2489989995956421,0.4989989995956421,0.2489989995956421,0.4989989995956421,0.2510010004043579,0.2510010004043579,0.2510010004043579,0.4989989995956421,0.4989989995956421,0.2510010004043579,0.2510010004043579,0.2510010004043579,0.4989989995956421,0.4989989995956421,0.4989989995956421,0.5010010004043579,0.4989989995956421,0.7489989995956421,0.4989989995956421,0.5010010004043579,0.2510010004043579,0.7489989995956421,0.4989989995956421,0.7489989995956421,0.2510010004043579,0.5010010004043579,0.2510010004043579,0.7489989995956421,0.0010010000551119447,0.5010010004043579,0.0010010000551119447,0.7489989995956421,0.2489989995956421,0.5010010004043579,0.0010010000551119447,0.5010010004043579,0.2489989995956421,0.7489989995956421,0.2489989995956421,0.4989989995956421,0.5010010004043579,0.2510010004043579,0.5010010004043579,0.4989989995956421,0.7489989995956421,0.2510010004043579,0.5010010004043579,0.2510010004043579,0.7489989995956421,0.4989989995956421,0.7489989995956421,0.0010010000551119447,0.2489989995956421,0.2489989995956421,0.2489989995956421,0.0010010000551119447,0.0010010000551119447,0.2489989995956421,0.2489989995956421,0.2489989995956421,0.0010010000551119447,0.0010010000551119447,0.0010010000551119447,0.2489989995956421,0.5010010004043579,0.0010010000551119447,0.5010010004043579,0.2489989995956421,0.7489989995956421,0.0010010000551119447,0.5010010004043579,0.0010010000551119447,0.7489989995956421,0.2489989995956421,0.7489989995956421,0.7489989995956421,0.5010010004043579,0.5010010004043579,0.5010010004043579,0.7489989995956421,0.7489989995956421,0.5010010004043579,0.5010010004043579,0.5010010004043579,0.7489989995956421,0.7489989995956421,0.7489989995956421,0.7489989995956421,0.7510010004043579,0.5010010004043579,0.7510010004043579,0.7489989995956421,0.9989989995956421,0.5010010004043579,0.7510010004043579,0.5010010004043579,0.9989989995956421,0.7489989995956421,0.9989989995956421,0.4989989995956421,0.7510010004043579,0.2510010004043579,0.7510010004043579,0.4989989995956421,0.9989989995956421,0.2510010004043579,0.7510010004043579,0.2510010004043579,0.9989989995956421,0.4989989995956421,0.9989989995956421,0.2489989995956421,0.7510010004043579,0.0010010000551119447,0.7510010004043579,0.2489989995956421,0.9989989995956421,0.0010010000551119447,0.7510010004043579,0.0010010000551119447,0.9989989995956421,0.2489989995956421,0.9989989995956421,0.9989989995956421,0.2510010004043579,0.7510010004043579,0.2510010004043579,0.9989989995956421,0.4989989995956421,0.7510010004043579,0.2510010004043579,0.7510010004043579,0.4989989995956421,0.9989989995956421,0.4989989995956421],\"normalized\":false}},\"groups\":[{\"start\":0,\"materialIndex\":0,\"count\":36},{\"start\":36,\"materialIndex\":1,\"count\":6},{\"start\":42,\"materialIndex\":2,\"count\":36}]}}],\"materials\":[{\"uuid\":\"594FAB08-384E-477B-B28D-D7897F143ED3\",\"type\":\"MeshPhongMaterial\",\"name\":\"redstone\",\"color\":10691347,\"emissive\":0,\"specular\":1118481,\"shininess\":100,\"lightMap\":\"9F2CAC9D-AE10-4D5E-BE29-5105E807C99E\",\"lightMapIntensity\":0.75,\"bumpMap\":\"19251D9F-B655-4799-A8F3-8BAF72AEA63F\",\"bumpScale\":2,\"specularMap\":\"19251D9F-B655-4799-A8F3-8BAF72AEA63F\",\"depthFunc\":3,\"depthTest\":true,\"depthWrite\":true},{\"uuid\":\"56FF8500-53BD-4797-A1CD-4E22C54D186B\",\"type\":\"MeshPhongMaterial\",\"name\":\"floor\",\"color\":10716251,\"emissive\":0,\"specular\":1118481,\"shininess\":100,\"lightMap\":\"9F2CAC9D-AE10-4D5E-BE29-5105E807C99E\",\"lightMapIntensity\":0.75,\"bumpMap\":\"19251D9F-B655-4799-A8F3-8BAF72AEA63A\",\"bumpScale\":2,\"specularMap\":\"19251D9F-B655-4799-A8F3-8BAF72AEA63A\",\"depthFunc\":3,\"depthTest\":true,\"depthWrite\":true},{\"uuid\":\"2FA178C3-B009-4BF9-873A-3440898B69FB\",\"type\":\"MeshPhongMaterial\",\"name\":\"stone\",\"color\":10699809,\"emissive\":0,\"specular\":1118481,\"shininess\":100,\"lightMap\":\"9F2CAC9D-AE10-4D5E-BE29-5105E807C99E\",\"lightMapIntensity\":0.75,\"bumpMap\":\"2CA8989D-21DB-4DC8-86CD-3A12904FD296\",\"bumpScale\":2,\"specularMap\":\"2CA8989D-21DB-4DC8-86CD-3A12904FD296\",\"depthFunc\":3,\"depthTest\":true,\"depthWrite\":true}],\"textures\":[{\"uuid\":\"9F2CAC9D-AE10-4D5E-BE29-5105E807C99E\",\"name\":\"\",\"mapping\":300,\"repeat\":[1,1],\"offset\":[0,0],\"center\":[0,0],\"rotation\":0,\"wrap\":[1001,1001],\"format\":1023,\"minFilter\":1008,\"magFilter\":1006,\"anisotropy\":4,\"flipY\":true,\"image\":\"1FBD379E-9B4F-44B1-A2C7-E484904BF9D6\"},{\"uuid\":\"2CA8989D-21DB-4DC8-86CD-3A12904FD296\",\"name\":\"\",\"mapping\":300,\"repeat\":[2,2],\"offset\":[0,0],\"center\":[0,0],\"rotation\":0,\"wrap\":[1000,1000],\"format\":1023,\"minFilter\":1008,\"magFilter\":1006,\"anisotropy\":4,\"flipY\":true,\"image\":\"49932CEF-B54D-4D5B-8764-37A87FEFBB8E\"},{\"uuid\":\"19251D9F-B655-4799-A8F3-8BAF72AEA63F\",\"name\":\"\",\"mapping\":300,\"repeat\":[2,2],\"offset\":[0,0],\"center\":[0,0],\"rotation\":0,\"wrap\":[1000,1000],\"format\":1023,\"minFilter\":1008,\"magFilter\":1006,\"anisotropy\":4,\"flipY\":true,\"image\":\"374AADB8-3D5C-4A8F-9B1A-934B06069FBD\"},{\"uuid\":\"19251D9F-B655-4799-A8F3-8BAF72AEA63A\",\"name\":\"\",\"mapping\":300,\"repeat\":[16,16],\"offset\":[0,0],\"center\":[0,0],\"rotation\":0,\"wrap\":[1000,1000],\"format\":1023,\"minFilter\":1008,\"magFilter\":1006,\"anisotropy\":4,\"flipY\":true,\"image\":\"374AADB8-3D5C-4A8F-9B1A-934B06069FBD\"}],\"images\":[{\"uuid\":\"1FBD379E-9B4F-44B1-A2C7-E484904BF9D6\",\"url\":\"lightmap-ao-shadow.png\"},{\"uuid\":\"49932CEF-B54D-4D5B-8764-37A87FEFBB8E\",\"url\":\"rocks.jpg\"},{\"uuid\":\"374AADB8-3D5C-4A8F-9B1A-934B06069FBD\",\"url\":\"stone.jpg\"}],\"object\":{\"uuid\":\"082B79AF-77C8-4ADA-8C47-7B4EBCCBA958\",\"type\":\"Mesh\",\"layers\":1,\"matrix\":[100,0,0,0,0,100,0,0,0,0,100,0,0,0,0,1],\"geometry\":\"0E054665-995F-4348-950F-5A4A82ED1AC3\",\"material\":[\"594FAB08-384E-477B-B28D-D7897F143ED3\",\"56FF8500-53BD-4797-A1CD-4E22C54D186B\",\"2FA178C3-B009-4BF9-873A-3440898B69FB\"]}}\n"
  },
  {
    "path": "public/models/json/readme.txt",
    "content": "Textures from:\n\nhttp://opengameart.org/node/7506\nhttp://opengameart.org/node/8038"
  },
  {
    "path": "public/models/obj/male02.mtl",
    "content": "# Material Count: 5\nnewmtl _01_-_Default1noCulli__01_-_Default1noCulli\nNs 30.0000\nKa 0.640000 0.640000 0.640000\nKd 0.640000 0.640000 0.640000\nKs 0.050000 0.050000 0.050000\nNi 1.000000\nd 1.000000\nillum 2\nmap_Kd 01_-_Default1noCulling.JPG\n\n\nnewmtl FrontColorNoCullingID_male-02-1noCulling.JP\nNs 30.0000\nKa 0.800000 0.800000 0.800000\nKd 0.800000 0.800000 0.800000\nKs 0.050000 0.050000 0.050000\nNi 1.000000\nd 1.000000\nillum 2\nmap_Kd male-02-1noCulling.JPG\n\n\nnewmtl male-02-1noCullingID_male-02-1noCulling.JP\nNs 30.0000\nKa 0.640000 0.640000 0.640000\nKd 0.640000 0.640000 0.640000\nKs 0.050000 0.050000 0.050000\nNi 1.000000\nd 1.000000\nillum 2\nmap_Kd male-02-1noCulling.JPG\n\n\nnewmtl orig_02_-_Defaul1noCu_orig_02_-_Defaul1noCu\nNs 30.0000\nKa 0.640000 0.640000 0.640000\nKd 0.640000 0.640000 0.640000\nKs 0.050000 0.050000 0.050000\nNi 1.000000\nd 1.000000\nillum 2\nmap_Kd orig_02_-_Defaul1noCulling.JPG\n\n\nnewmtl FrontColorNoCullingID_orig_02_-_Defaul1noCu\nNs 30.0000\nKa 0.800000 0.800000 0.800000\nKd 0.800000 0.800000 0.800000\nKs 0.050000 0.050000 0.050000\nNi 1.000000\nd 1.000000\nillum 2\nmap_Kd orig_02_-_Defaul1noCulling.JPG\n\n\n"
  },
  {
    "path": "public/models/obj/male02.obj",
    "content": "# Blender v2.54 (sub 0) OBJ File: ''\n# www.blender.org\nmtllib male02.mtl\no mesh1.002_mesh1-geometry\nv 4.649472 159.854965 5.793066\nv 1.662002 157.904083 5.834653\nv 1.600978 157.673813 6.226475\nv 4.363278 159.890976 5.326734\nv 6.608557 161.854065 3.049800\nv 3.466243 161.077850 5.782724\nv 5.649033 163.753754 5.049810\nv 6.906231 162.829758 -0.187148\nv 7.238166 164.680359 1.732683\nv 5.584624 163.417984 -3.092680\nv 5.789997 163.667801 -3.096897\nv 3.269245 163.503494 -4.594658\nv 3.394374 163.842010 -4.947471\nv 6.822815 160.621841 -4.446563\nv 7.079769 163.082047 -0.100348\nv 6.940348 161.997635 3.059531\nv 6.520535 157.196869 6.233152\nv 4.032762 153.060410 10.152127\nv -0.738178 156.034775 6.615305\nv -0.488457 156.462387 5.917762\nv -0.391342 157.963257 5.611122\nv -2.106775 157.867722 4.463144\nv -1.228902 159.266144 4.969418\nv -2.240621 159.979706 3.343578\nv -3.883278 159.811401 2.325699\nv -3.761207 161.138031 0.969119\nv -3.883487 160.977798 2.369467\nv -3.396014 160.371918 3.975860\nv -3.085714 160.094788 4.971333\nv -2.274866 159.809525 5.756587\nv 0.671611 159.955429 5.283175\nv -1.311007 160.067978 6.356381\nv -0.264757 160.324524 6.419621\nv 1.423342 160.897537 6.511130\nv 0.174956 161.149017 8.492281\nv 3.137444 162.095215 6.826398\nv 1.580328 162.260345 8.720961\nv 4.232831 163.397293 7.017303\nv 5.411410 165.552292 6.707873\nv 5.941846 166.096420 5.693473\nv 7.698439 166.877945 2.578879\nv 7.736173 167.312256 0.167189\nv 9.004306 171.553482 -2.576243\nv 9.674952 170.939377 1.542800\nv 9.193996 175.367065 -2.382607\nv 6.826259 171.866287 -5.666442\nv 6.631321 175.908707 -5.338691\nv 3.131651 175.458786 -7.113905\nv 3.294047 171.639862 -7.032760\nv 3.663478 167.804321 -5.124862\nv 5.541586 167.793304 -4.099828\nv 6.991788 167.753967 -2.527314\nv 6.603789 165.229568 -1.870128\nv 5.309627 165.354385 -3.849870\nv 3.072674 165.283020 -4.625954\nv 0.531947 163.369217 -4.931417\nv 0.373095 163.615570 -5.068183\nv -2.337601 162.740601 -3.551106\nv -2.530603 162.989319 -3.597694\nv 0.501248 160.560867 -6.747069\nv 3.902342 160.528946 -6.255511\nv 7.183012 160.979050 -4.984339\nv 4.114253 160.884720 -6.847251\nv 8.871805 157.296555 -6.602290\nv 11.908689 157.880737 -2.676024\nv 8.977464 160.762634 -1.866835\nv 8.489389 160.492981 -1.682754\nv 7.837028 159.870148 1.955769\nv 8.134795 160.100281 2.295684\nv 10.610469 155.845703 8.072849\nv 11.449694 158.366272 3.103761\nv 11.636851 157.758804 3.195474\nv 16.828262 155.763718 4.570674\nv 18.358437 155.022354 -0.438701\nv 11.968946 157.259628 -3.052958\nv 15.559920 152.100555 -5.465731\nv 17.752758 151.851746 -4.391552\nv 22.155792 153.221436 0.918617\nv 20.259775 150.475632 -2.792062\nv 25.005072 151.288696 2.308913\nv 21.320932 153.709274 5.653195\nv 14.951803 154.613739 8.895734\nv 10.350957 151.695282 12.007047\nv 9.897684 146.136917 14.951768\nv 3.281380 145.767349 14.389509\nv -2.759207 146.090164 12.432467\nv -1.502320 152.778275 8.801401\nv -6.614850 152.957657 6.277314\nv -2.307918 157.636078 4.803972\nv -6.072287 157.075394 1.650451\nv -4.401570 159.767639 2.499267\nv -4.436065 161.887878 -1.080502\nv -4.377309 159.752289 -2.489196\nv -4.827758 159.975266 -2.421568\nv -2.549276 160.386490 -5.699876\nv -2.809415 160.648911 -6.156242\nv 0.564872 160.915207 -7.392771\nv -4.527121 157.760681 -8.588340\nv 0.373832 157.214539 -9.694819\nv 4.745620 157.253708 -8.485953\nv 8.965010 156.889297 -6.740156\nv 9.746875 152.400604 -8.129445\nv 16.361917 145.590210 -5.968112\nv 18.001280 145.659195 -4.977849\nv 19.029322 145.498657 -3.928282\nv 19.815390 145.048218 -2.275515\nv 22.116743 148.913361 -0.810049\nv 25.669662 148.026840 2.204447\nv 25.900208 148.533615 6.315758\nv 25.081768 151.470795 6.491819\nv 19.515141 152.899582 9.433100\nv 12.641019 151.436386 12.306793\nv 12.014204 146.401520 14.560165\nv 11.466537 141.072662 15.246183\nv 9.585091 140.291382 16.551079\nv 2.951553 139.937775 16.440334\nv -3.426638 140.077087 14.425870\nv -8.638289 145.652359 10.051780\nv -13.192952 146.297302 5.825720\nv -12.460855 151.346786 4.022535\nv -10.339564 155.577713 0.623777\nv -7.911208 158.096466 -3.793482\nv -8.100825 157.484009 -3.833099\nv -4.326567 157.139633 -8.913846\nv -10.008295 155.862717 -9.458926\nv -5.699710 151.813477 -12.733803\nv 0.397979 156.806656 -9.857817\nv 4.829595 156.713593 -8.702394\nv 5.265057 152.368103 -9.783830\nv 10.829158 145.249573 -8.492122\nv 16.054150 140.324860 -4.437304\nv 17.460732 140.733276 -2.840980\nv 18.233747 142.026840 -1.373372\nv 19.512470 142.138336 -0.035135\nv 19.998344 146.618866 -1.277897\nv 22.869740 147.564331 -0.649779\nv 25.771870 145.662598 2.145746\nv 26.354897 145.705658 6.124487\nv 24.191675 145.255524 9.359864\nv 23.367132 148.401321 9.722461\nv 22.446440 150.885681 9.854981\nv 18.750437 149.459229 11.702381\nv 16.614782 150.887054 12.290878\nv 14.348170 146.677917 13.779427\nv 13.451496 141.420914 14.097109\nv 13.341617 140.119202 14.312266\nv 11.537154 139.520111 15.546076\nv 9.567074 139.176025 16.626099\nv 2.897593 138.674774 16.646610\nv -3.531466 138.645660 14.751863\nv -9.604338 139.816650 11.871074\nv -14.755976 140.056839 7.725889\nv -9.305899 139.812103 11.051111\nv -15.613759 140.420807 5.536672\nv -15.597602 139.258591 5.697345\nv -16.423658 139.575470 3.574057\nv -16.244028 135.323715 4.662390\nv -17.000664 135.594955 2.749535\nv -16.802223 127.598732 5.411883\nv -15.699236 135.903748 -3.293094\nv -16.056416 127.560974 0.047543\nv -12.815212 135.671417 -8.875793\nv -13.317531 127.535820 -5.424366\nv -11.463568 127.538231 -6.689985\nv -10.857416 135.508804 -9.573948\nv -10.621736 139.740570 -11.366023\nv -8.549648 139.467529 -11.791920\nv -8.523907 140.545792 -12.142858\nv -6.426078 140.160294 -12.474717\nv -6.283586 145.555389 -13.625497\nv 0.081304 145.160629 -12.306752\nv 0.628935 152.324081 -11.381757\nv 5.577052 145.212494 -10.451515\nv 10.435836 139.881729 -7.868828\nv 16.041271 139.411774 -4.017454\nv 17.302526 139.677063 -2.482034\nv 18.592514 139.944016 -0.911846\nv 19.864161 140.161530 0.560429\nv 18.170294 140.935806 6.566799\nv 19.981819 142.886414 0.617801\nv 19.558125 144.240173 -2.003280\nv 15.905472 143.103638 -0.827424\nv 20.437838 141.564423 -2.297455\nv 23.827606 142.618958 -1.371421\nv 23.342785 145.145630 -1.013466\nv 26.261211 143.240280 1.805052\nv 26.383968 144.964020 6.033945\nv 24.460531 142.396713 8.953703\nv 21.046871 141.277130 10.418730\nv 20.641155 144.023453 10.864476\nv 19.970816 147.046204 11.450656\nv 16.977470 145.171280 10.705132\nv 15.785122 146.367020 12.998548\nv 15.637086 141.546341 13.128377\nv 15.404267 140.301056 13.303158\nv 14.894350 135.897339 13.693145\nv 13.160339 135.602020 14.697047\nv 11.448811 135.306808 15.686269\nv 9.806707 135.011658 16.632994\nv 3.415546 134.348099 17.150942\nv -3.192292 134.171097 15.939249\nv -9.463440 134.257584 13.161318\nv -9.674059 138.553497 12.071612\nv -14.765273 138.941772 7.831411\nv -15.477912 135.052689 6.595465\nv -15.861449 127.618156 7.055291\nv -15.994061 118.369102 7.836857\nv -16.153809 118.346336 2.496993\nv -14.297902 118.312775 -3.183221\nv -12.630476 118.297943 -4.804330\nv -10.963052 118.283119 -6.425441\nv -9.609603 127.540657 -7.955603\nv -9.295626 118.268272 -8.046551\nv -7.755638 127.543037 -9.221220\nv -1.238948 127.590263 -8.810342\nv -2.592414 118.235626 -8.431435\nv 3.663772 127.628899 -8.113521\nv 2.390470 118.213463 -8.244828\nv 7.198837 118.197052 -6.924370\nv 8.258192 127.674614 -6.266083\nv 13.476058 118.178581 -4.541546\nv 14.250923 127.740105 -3.122545\nv 15.188498 127.762688 -1.082306\nv 16.507147 135.587204 -1.537308\nv 15.541102 135.398300 -3.055457\nv 9.758000 134.974686 -7.107168\nv 4.315620 134.924301 -8.824050\nv -0.456289 134.878693 -10.505471\nv -6.692199 135.184113 -11.107017\nv 0.219878 138.855743 -11.369954\nv 5.302536 138.852051 -9.528598\nv 5.366557 139.727356 -9.727717\nv 10.378969 138.953766 -7.672922\nv 17.721376 135.782104 0.529933\nv 18.793436 135.964691 2.275212\nv 18.339851 139.981537 6.989245\nv 16.482372 142.908829 9.947306\nv 15.157075 143.849152 4.275788\nv 13.938186 142.276337 2.875864\nv 13.796805 142.183029 7.214377\nv 15.176003 139.542053 2.796405\nv 15.004939 139.396011 6.766051\nv 16.767601 135.205460 2.617966\nv 16.644606 134.957565 6.284468\nv 18.692663 128.665710 2.112558\nv 18.804144 128.470566 5.809090\nv 20.619713 124.272057 -0.021708\nv 20.317596 123.969772 4.896559\nv 21.363358 120.677971 0.423887\nv 23.554688 122.209007 -3.143295\nv 24.160868 120.223320 -3.178278\nv 24.559280 118.107773 -2.795470\nv 27.934765 117.581291 -3.177812\nv 27.544399 120.202141 -3.868780\nv 26.826931 122.645218 -4.135824\nv 30.432003 120.672195 -2.353134\nv 29.799242 123.190041 -2.837935\nv 31.720692 121.453934 0.789725\nv 31.336308 123.635353 0.254629\nv 28.934153 125.544937 -2.939281\nv 30.687838 126.005669 0.059181\nv 26.881989 130.888428 -2.515787\nv 23.768469 130.200027 -3.369110\nv 25.877180 124.925270 -4.018944\nv 22.684690 124.383369 -2.767377\nv 20.700264 129.379700 -1.842713\nv 18.493361 135.840225 -1.153700\nv 16.997524 140.319946 -0.980730\nv 21.951525 136.761444 -2.830909\nv 25.292065 137.500214 -1.917682\nv 27.441467 137.819122 1.292510\nv 27.323904 137.540039 5.503819\nv 25.592730 136.936462 8.730681\nv 22.222595 136.034744 10.431960\nv 18.882055 135.295944 9.518732\nv 17.540092 140.265259 9.761596\nv 16.671246 142.994843 9.942330\nv 20.773726 128.764114 8.716192\nv 22.212852 124.332771 7.845097\nv 20.342545 122.016418 2.653145\nv 21.397202 122.958878 5.879892\nv 20.657064 117.833298 4.047078\nv 21.715126 116.743233 0.680830\nv 24.653074 115.786949 -1.949447\nv 27.989632 115.513618 -2.300211\nv 30.705835 115.896805 -0.620901\nv 30.745518 118.002640 -1.546847\nv 31.764238 116.790138 2.447078\nv 31.917850 119.210876 1.474406\nv 30.973164 122.439407 4.620109\nv 30.246365 126.036598 4.181868\nv 28.851538 131.181976 0.391309\nv 28.768202 130.893433 4.873965\nv 26.955420 130.272827 8.043112\nv 23.887243 129.452530 9.569515\nv 25.319103 124.997078 8.793164\nv 24.202822 123.354675 7.614490\nv 21.715416 118.726631 7.115022\nv 20.890305 113.150444 5.749089\nv 22.088673 112.001411 2.214092\nv 22.527176 106.146553 4.515820\nv 25.109823 105.323509 2.260731\nv 24.871675 111.111595 -0.225448\nv 28.235577 105.030624 1.812679\nv 28.102211 110.858818 -0.526519\nv 30.754578 111.232986 1.113313\nv 31.815691 112.091187 4.067702\nv 30.671940 113.212242 7.520716\nv 30.504992 117.983223 6.115230\nv 27.768229 118.836479 8.443604\nv 27.687719 123.052605 7.194352\nv 24.431660 119.109810 8.794361\nv 21.951406 114.008636 8.703467\nv 21.474094 107.185356 7.716565\nv 22.644394 101.133011 6.304855\nv 25.240175 100.283554 3.966198\nv 25.482267 95.637741 5.165921\nv 28.477364 94.782722 5.001706\nv 28.313711 99.965843 3.429198\nv 30.691038 100.301201 4.898983\nv 30.710472 105.379753 3.342792\nv 31.464067 101.161568 7.814132\nv 31.589199 106.237549 6.266620\nv 30.536119 107.276367 9.467364\nv 27.953470 108.099403 11.722453\nv 27.834309 114.130035 10.042230\nv 24.827734 108.392296 12.170515\nv 24.603771 114.382797 10.343301\nv 22.352837 108.043159 10.640403\nv 21.517900 102.189728 9.551901\nv 22.743484 97.023468 7.165522\nv 26.000484 96.822395 6.286420\nv 24.003380 97.837242 7.757880\nv 25.766850 94.990944 6.675523\nv 28.099072 94.293007 6.449197\nv 28.171295 96.196220 6.147556\nv 29.686644 96.197868 7.394339\nv 29.680281 94.294754 7.750160\nv 29.906546 94.995506 10.081528\nv 29.967756 96.826759 9.550564\nv 30.584780 94.785034 6.735625\nv 30.999468 95.643799 9.705302\nv 29.563124 97.030975 12.776506\nv 30.337561 102.218269 11.061173\nv 27.741793 103.067741 13.399832\nv 24.668266 103.385452 13.936845\nv 22.290939 103.050087 12.467059\nv 21.307127 98.410652 10.236713\nv 22.942867 98.853119 9.999942\nv 23.574476 96.121948 8.342729\nv 26.011106 96.256065 10.275638\nv 22.359337 97.254028 10.813976\nv 22.585598 97.954781 13.145344\nv 24.166817 97.956520 14.446320\nv 26.499077 97.258591 14.220020\nv 26.910135 98.857475 13.264086\nv 24.739285 99.483665 13.402907\nv 23.223969 99.481995 12.156157\nv 23.829248 99.271744 14.940318\nv 26.824331 98.416733 14.776092\nv 21.721838 99.269417 13.206415\nv 28.907207 97.842636 11.792596\nv 28.691427 96.127579 12.552794\nv 28.449747 125.708939 7.378595\nv 17.525860 136.221634 8.464445\nv 14.468414 127.878777 14.084682\nv 12.815034 127.875008 15.009171\nv 11.161652 127.871223 15.933661\nv 9.508270 127.867455 16.858150\nv 3.108867 127.830269 17.611391\nv -3.041794 127.783226 16.912453\nv -8.718052 127.725258 14.442986\nv -14.682373 134.782257 8.581291\nv -13.979907 127.657082 10.342106\nv -8.366097 127.717171 13.129449\nv -14.920680 127.637627 8.698698\nv -14.981936 118.370659 9.252932\nv -14.802432 113.608925 10.499703\nv -15.986743 113.628998 9.118726\nv -16.743973 113.634224 3.770438\nv -14.994713 113.590843 -2.220824\nv -13.512955 113.559952 -3.873364\nv -14.104607 110.932281 -3.340832\nv -12.732811 110.887703 -5.124052\nv -15.240512 104.413826 -3.346132\nv -13.910125 104.142670 -5.019384\nv -11.361011 110.843094 -6.907270\nv -12.540332 103.887779 -6.709754\nv -4.204332 110.612808 -7.891820\nv -3.550832 113.364281 -7.904236\nv 1.525718 113.267845 -8.036426\nv 6.502177 113.175301 -7.024501\nv 13.268417 113.050392 -5.094151\nv 14.578828 118.182503 -2.494049\nv 16.126074 127.785286 0.957932\nv 17.063648 127.807877 2.998172\nv 16.592785 127.853371 9.100898\nv 15.088210 118.246689 12.621021\nv 13.697111 118.257713 13.667194\nv 12.306007 118.268730 14.713366\nv 10.914904 118.279747 15.759533\nv 4.278399 118.318802 17.668390\nv -1.617691 118.346581 17.796513\nv -7.202355 118.364021 15.901284\nv -12.957686 118.373779 12.085079\nv -6.962161 118.356056 14.340718\nv -13.969814 118.372231 10.669007\nv -13.618121 113.588837 11.880677\nv -14.686402 110.955040 11.298864\nv -15.977977 110.996155 9.952903\nv -17.111496 111.031128 4.629352\nv -15.476403 110.976875 -1.557612\nv -16.593603 104.690422 -1.682134\nv -16.915615 101.377121 -1.804740\nv -15.627249 100.866959 -3.437808\nv -17.024218 97.622063 -2.503352\nv -15.477369 96.642311 -4.039944\nv -14.365385 100.368469 -5.090454\nv -13.961461 95.655281 -5.567815\nv -13.053378 99.897491 -6.780736\nv -12.438584 94.684441 -7.119666\nv -14.230751 91.370003 -6.325580\nv -12.739477 90.576897 -7.542810\nv -5.447390 92.787849 -8.729818\nv -5.714090 98.147102 -8.803486\nv -0.224950 97.896584 -9.163513\nv 0.011502 102.540138 -8.861650\nv 5.256374 97.637283 -8.803216\nv 5.470701 102.288147 -8.500066\nv 0.916260 110.448158 -8.243977\nv 5.986797 110.285385 -7.447496\nv 13.030695 110.059433 -5.843819\nv 14.440713 113.031395 -3.209355\nv 15.681599 118.186424 -0.446552\nv 16.784369 118.190346 1.600945\nv 16.846298 118.216362 7.576354\nv 15.793279 113.031578 11.899786\nv 14.387174 113.060188 13.054075\nv 12.981069 113.088814 14.208364\nv 11.574964 113.117424 15.362656\nv 5.189061 113.242241 17.593004\nv -0.759568 113.355804 18.085911\nv -6.532220 113.462593 16.567280\nv -12.433812 113.568771 13.261656\nv -13.394831 110.913879 12.644828\nv -15.249251 104.471657 12.001419\nv -16.737616 104.745949 10.606500\nv -17.948006 104.905823 4.764266\nv -18.270679 101.891777 4.134608\nv -19.070816 98.520706 2.751322\nv -20.555876 93.459251 1.822612\nv -17.567404 93.022499 -4.018213\nv -21.893379 87.958557 1.482874\nv -18.876955 87.570641 -4.409697\nv -21.020267 78.402405 -4.945928\nv -24.033262 78.771538 0.958060\nv -24.131506 78.514229 6.748145\nv -21.971102 87.690216 7.302462\nv -22.869276 78.151909 8.604800\nv -20.598404 87.285629 9.225051\nv -21.607050 77.789589 10.461456\nv -19.309267 86.931839 11.064619\nv -20.344822 77.427277 12.318112\nv -17.976336 86.572098 12.916518\nv -11.297489 85.206909 16.953341\nv -13.119234 75.931358 16.528761\nv 2.418499 83.538673 17.825539\nv 3.291192 74.239716 17.340813\nv 11.766529 74.508369 15.627456\nv 9.926974 83.750618 16.411219\nv 2.086611 87.105698 18.047447\nv -10.539260 89.026939 17.154049\nv -16.790283 91.102226 13.226484\nv -18.088938 91.778915 11.396071\nv -14.721732 95.336227 13.914465\nv -9.611225 92.759697 17.396389\nv -0.464399 92.684814 18.038401\nv 8.293064 91.365593 17.164047\nv 9.174792 87.569115 16.761150\nv 16.957230 85.226860 12.896898\nv 19.553532 76.146698 11.898993\nv 18.449188 85.706299 11.189483\nv 15.696481 89.725807 13.382185\nv 17.140699 90.509621 11.709073\nv 19.893534 86.184082 9.495900\nv 18.710184 91.395164 9.945885\nv 21.451519 86.732536 7.731912\nv 20.033386 92.200943 8.292947\nv 20.454697 92.838890 2.529788\nv 18.773497 97.643181 3.488898\nv 16.791204 96.532158 -2.253208\nv 16.767752 99.880920 -1.731886\nv 15.435496 99.458992 -3.400679\nv 15.361988 103.027008 -3.312632\nv 13.998912 102.873283 -4.999372\nv 14.242180 110.021042 -3.947971\nv 15.613013 113.012405 -1.324561\nv 16.785309 112.993401 0.560235\nv 17.467670 112.991058 6.764287\nv 16.163568 109.963493 11.354239\nv 14.759822 110.008972 12.582689\nv 13.356069 110.054405 13.811139\nv 11.952315 110.099838 15.039587\nv 5.728892 110.300575 17.483189\nv -0.237173 110.492531 18.226076\nv -6.115992 110.681145 16.966766\nv -12.103257 110.872742 13.990790\nv -13.727245 104.172951 13.433613\nv -15.784281 100.975563 11.765977\nv -17.204666 101.471565 10.328866\nv -18.786827 98.204460 8.700180\nv -20.664091 93.203491 7.629589\nv -19.491190 92.529198 9.446715\nv -16.187418 96.297333 12.160289\nv -12.686414 99.903069 14.781307\nv -6.267694 98.170990 17.462450\nv -0.224700 97.896584 18.145847\nv 5.806874 97.607407 17.462473\nv 12.299645 98.717346 14.810927\nv 12.154482 102.734238 14.899207\nv 6.112185 102.255646 17.503616\nv -0.026173 102.541580 18.171320\nv -6.160598 102.818031 17.490656\nv -12.153255 103.878616 14.866297\nv -14.248204 100.421555 13.299453\nv -17.593121 97.298019 10.351051\nv 13.702599 102.888885 13.505971\nv 13.871916 99.101219 13.368109\nv 15.240658 94.982918 12.519041\nv 13.681128 94.000755 14.130342\nv 16.750168 96.044937 10.878715\nv 15.415341 99.551239 11.904341\nv 15.231107 103.071770 12.101836\nv 16.757832 103.231133 10.709270\nv 16.901585 99.956177 10.482260\nv 18.071228 97.006378 9.346217\nv 18.020887 100.552361 4.506469\nv 16.726040 103.189606 -1.634891\nv 15.453664 109.982635 -2.052123\nv 16.665142 109.944176 -0.156274\nv 17.755863 109.910896 6.149532\nv 17.989183 103.360771 4.935433\nv 12.599860 102.741402 -6.695926\nv 12.728104 98.705070 -6.780656\nv 14.100864 99.060127 -5.082645\nv 15.244360 95.651611 -3.879036\nv 17.963924 92.704758 -3.595776\nv 21.909506 87.386490 1.959525\nv 23.816769 77.641014 6.786575\nv 22.395687 77.142906 8.490713\nv 20.974611 76.644798 10.194852\nv 24.246410 78.279526 1.041256\nv 21.795179 78.268578 -5.128253\nv 19.430052 87.341209 -4.200752\nv 20.018717 77.979874 -6.582596\nv 17.547279 86.910744 -5.541605\nv 18.242250 77.691162 -8.036943\nv 15.749234 86.592575 -6.968532\nv 16.465788 77.402458 -9.491287\nv 13.925380 86.248451 -8.373507\nv 5.605986 84.792557 -9.573101\nv 7.136113 75.545059 -10.309937\nv -0.809498 85.041130 -9.718755\nv -0.642082 88.664307 -9.604506\nv 5.064899 88.631340 -9.254803\nv -0.459712 92.684555 -9.369256\nv 4.960483 92.363182 -8.943845\nv 12.160459 93.873634 -7.124958\nv 13.704902 94.748589 -5.494917\nv 16.230421 91.812454 -4.939406\nv 14.506252 90.950523 -6.304307\nv 12.773890 90.057777 -7.650190\nv -5.789091 89.046318 -8.999622\nv -5.882986 85.085388 -8.978189\nv -7.174840 75.721046 -9.269491\nv -1.234825 75.597687 -9.833009\nv -15.299918 77.346146 -8.734137\nv -13.295485 86.424942 -8.061192\nv -15.126253 86.788582 -6.814213\nv -17.206703 77.698227 -7.471400\nv -19.113483 78.050323 -6.208664\nv -16.989679 87.146652 -5.561334\nv -15.864202 92.178452 -5.142394\nv -5.422924 102.783318 -8.526292\nv -4.363776 113.141342 15.457201\nv -9.161141 113.358971 13.684751\nv -4.514559 109.817451 15.522047\nv -9.640353 110.049980 13.732565\nv -12.631920 113.516403 10.688079\nv -13.119051 110.207809 10.735895\nv -14.012547 113.579041 5.071187\nv -14.499681 110.270416 5.071188\nv -12.631918 113.516411 -0.494753\nv -13.119048 110.207779 -0.879756\nv -16.062969 104.109993 4.201808\nv -14.212197 104.037018 -1.516487\nv -16.532497 101.377480 3.844687\nv -14.808963 100.721771 -1.637879\nv -17.119747 98.564957 3.089355\nv -15.187860 97.279869 -2.153241\nv -17.700687 96.791145 2.010295\nv -15.877234 94.691772 -3.346727\nv -18.588305 93.190147 1.730948\nv -16.272127 91.714813 -3.524055\nv -19.941336 87.515472 1.457287\nv -16.875511 87.083809 -3.759020\nv -21.902416 78.473969 1.059498\nv -18.545982 78.041397 -5.048082\nv -23.310509 69.316704 0.519885\nv -20.090370 68.915863 -5.635211\nv -24.332289 61.858349 -0.267098\nv -21.301041 61.501022 -6.478582\nv -24.814411 57.989895 -0.970949\nv -21.831425 57.637787 -7.073575\nv -25.313265 54.353020 -1.677981\nv -22.265230 53.983921 -7.719527\nv -25.680981 50.239952 -2.723691\nv -22.646618 50.624943 -8.378830\nv -27.054876 41.884933 -4.097518\nv -24.252626 41.548927 -9.721278\nv -27.791088 32.593918 -4.876021\nv -25.152803 32.280384 -10.229482\nv -29.135004 25.461178 -5.549623\nv -26.007769 26.793024 -10.837532\nv -30.700377 19.699944 -6.152062\nv -27.701918 20.534857 -11.233248\nv -30.902267 13.737979 -7.051531\nv -28.139591 12.362001 -12.239161\nv -31.942837 8.020783 -7.994670\nv -27.548307 5.876221 -13.780400\nv -32.041035 6.784681 -7.955337\nv -27.463247 4.785686 -13.809216\nv -25.243813 11.222871 -6.418061\nv -33.917400 7.681756 -1.431603\nv -31.830156 8.308322 3.946064\nv -28.784664 8.289076 5.764748\nv -24.680763 7.620050 4.482825\nv -28.655392 9.298162 5.591133\nv -31.715099 9.317498 3.763962\nv -33.817020 8.872999 -1.528845\nv -32.090302 14.793136 -1.069249\nv -29.668900 15.460433 3.261364\nv -26.500614 14.039939 4.625926\nv -24.590639 8.811358 4.379458\nv -20.203484 6.709875 -0.886283\nv -20.145098 7.946228 -0.949395\nv -23.290253 12.644404 2.819509\nv -19.986303 11.450438 -2.265651\nv -20.987106 14.957050 2.921678\nv -18.497795 14.452767 -2.576766\nv -20.390150 20.542685 2.825998\nv -17.668734 20.265261 -2.437226\nv -17.661350 15.149574 -7.649373\nv -17.178251 20.388206 -8.431999\nv -14.824888 29.625216 -1.397947\nv -14.580560 29.859800 -7.393564\nv -19.116430 21.690737 -11.684649\nv -17.310740 30.621704 -10.980178\nv -22.037336 22.996592 -12.474249\nv -19.391275 16.839899 -11.551017\nv -19.613811 11.248459 -11.608360\nv -23.446049 11.719286 -13.237035\nv -21.892946 4.948390 -14.009021\nv -17.975742 4.923635 -11.669774\nv -18.583639 10.616117 -8.298045\nv -16.861042 5.808681 -7.398263\nv -16.900282 4.718933 -7.501311\nv -18.166559 3.690897 -11.573592\nv -21.991123 3.715066 -13.857514\nv -21.390900 31.555883 -12.074646\nv -15.961672 39.785198 -10.304172\nv -12.628469 38.887501 -6.603193\nv -11.260936 48.018116 -5.324714\nv -14.492636 48.883801 -8.815610\nv -19.906561 40.688404 -11.362354\nv -18.606228 49.825645 -9.919049\nv -13.662093 52.143559 -8.111143\nv -10.711427 51.338612 -4.620317\nv -10.172786 54.968468 -3.946242\nv -12.738718 55.690254 -7.436462\nv -18.013636 53.139877 -9.278407\nv -17.272444 56.728294 -8.652598\nv -12.099709 59.529251 -6.825039\nv -9.489767 58.796761 -3.310306\nv -7.873728 66.118782 -2.358199\nv -10.852670 66.940056 -6.061932\nv -16.691734 60.580627 -8.056812\nv -15.632797 68.034492 -7.344161\nv -9.083931 76.037094 -5.720168\nv -5.713907 75.174812 -1.692716\nv -3.527207 84.778885 -1.202638\nv -6.786037 85.142715 -4.803019\nv -13.984360 77.150490 -7.027109\nv -12.339795 86.059464 -5.773754\nv -6.276602 87.536743 -5.249259\nv -3.055826 86.621063 -1.104358\nv -2.783092 87.819054 -1.053825\nv -5.980594 89.076912 -5.529183\nv -0.676278 87.910461 -1.315908\nv -0.714516 87.067520 3.756571\nv 1.611547 87.607597 -1.289008\nv 0.497379 86.360725 4.014831\nv 1.905142 86.381058 -1.447131\nv 1.001975 85.281197 4.183525\nv 2.474661 84.486305 -1.724535\nv 1.842953 83.685951 4.382596\nv 6.046333 74.698624 -3.399614\nv 5.931728 73.856773 3.456112\nv 8.651642 65.696129 -4.565914\nv 8.308817 64.965942 2.336635\nv 10.467230 58.470932 -5.836022\nv 10.189911 57.755730 1.062116\nv 11.293968 54.701935 -6.658504\nv 11.287086 52.336136 -0.010717\nv 11.962323 51.131081 -7.515543\nv 11.478705 49.262650 -0.802915\nv 12.630664 47.870670 -8.379688\nv 12.554915 46.492134 -2.100355\nv 14.265114 38.860119 -10.114984\nv 14.054849 38.227310 -3.858190\nv 16.434978 29.926392 -11.304403\nv 16.131514 29.298576 -5.339853\nv 19.277966 20.573229 -12.709183\nv 19.217758 20.059547 -6.715394\nv 20.122116 15.110147 -12.932369\nv 20.154984 14.278441 -7.153923\nv 21.566000 11.328874 -7.178906\nv 21.126348 10.699231 -13.423558\nv 19.772890 5.672545 -13.157360\nv 21.808502 4.861011 -17.090471\nv 22.008204 3.632756 -16.960705\nv 26.233715 3.780590 -18.363089\nv 26.136364 5.012426 -18.526829\nv 31.534071 4.993605 -17.127464\nv 31.580551 6.085648 -17.076139\nv 34.681145 7.051447 -10.413123\nv 34.559452 8.284905 -10.467342\nv 31.210730 12.728031 -15.745440\nv 26.709370 12.054907 -17.507914\nv 22.652847 11.468492 -16.519512\nv 22.209265 17.101255 -16.183123\nv 21.484261 22.109146 -15.676686\nv 19.469688 30.953665 -14.565295\nv 17.908400 40.037056 -13.424756\nv 23.616629 32.002842 -15.213644\nv 21.917856 41.051449 -14.051611\nv 27.180260 32.644951 -12.984369\nv 26.079529 41.849171 -11.962102\nv 29.309938 32.632721 -7.400226\nv 28.347240 41.843288 -6.092725\nv 24.202702 50.798401 -10.188911\nv 20.335068 50.058445 -12.145886\nv 16.154140 49.000675 -11.492222\nv 15.207018 52.197399 -10.658016\nv 19.629780 53.316376 -11.349491\nv 23.705223 54.102039 -9.351480\nv 26.710903 50.073612 -4.313565\nv 26.178707 54.104256 -3.042055\nv 23.151768 57.700241 -8.513062\nv 18.773252 56.847195 -10.563845\nv 14.165320 55.681396 -9.843419\nv 13.407579 59.464321 -9.046343\nv 11.969720 66.794327 -7.923419\nv 18.074764 60.645119 -9.776031\nv 16.828083 68.023491 -8.682998\nv 22.503271 61.509644 -7.720658\nv 21.094185 68.838745 -6.514351\nv 24.944632 61.488670 -1.244702\nv 23.728048 68.867004 -0.074075\nv 19.347242 77.888000 -5.482699\nv 15.002519 77.079948 -7.929959\nv 9.879564 75.815758 -7.101157\nv 6.238918 84.699883 -5.303299\nv 12.538063 85.668137 -6.136902\nv 17.374660 86.787750 -3.767953\nv 22.120632 77.952560 0.925068\nv 19.973925 86.923927 1.724556\nv 16.710516 91.404945 -3.293050\nv 11.570992 88.160011 -6.050589\nv 5.582752 87.079552 -5.596034\nv 5.302277 88.620171 -5.825300\nv 10.997614 89.708656 -5.973975\nv 16.250364 94.359161 -2.960500\nv 18.508728 92.554901 2.238737\nv 17.519735 96.086601 2.643888\nv 14.986343 96.336624 -1.943658\nv 10.280379 93.188408 -6.991246\nv 5.091094 91.591682 -7.513051\nv -0.555643 90.569794 -4.887519\nv -5.569135 92.025871 -7.255952\nv -0.438382 93.154762 -7.546367\nv 4.975255 96.989990 -7.605367\nv 10.228589 97.701767 -6.518639\nv 14.671453 99.489792 -1.500530\nv 10.102407 102.202736 -5.797535\nv 4.950098 101.769333 -7.166106\nv -0.227182 97.812141 -7.605726\nv -5.492239 97.475807 -7.606133\nv -10.505162 93.849403 -6.894494\nv -11.267994 90.333656 -5.805726\nv -11.606802 88.663971 -5.799654\nv -10.654156 98.673882 -6.518688\nv -4.911944 102.212318 -7.205629\nv -0.003969 101.994720 -7.189290\nv 0.307572 109.598701 -4.786429\nv 4.172276 109.423393 -4.786429\nv 0.458355 112.922592 -4.274922\nv 4.323060 112.747276 -4.274922\nv 9.298482 109.190865 -4.897129\nv 9.120833 112.529633 -4.274921\nv 13.734194 108.989632 -0.879756\nv 13.548629 112.328773 -0.494753\nv 15.114824 108.927002 5.071188\nv 14.929260 112.266151 5.071188\nv 13.734198 108.989632 10.735894\nv 13.548631 112.328781 10.688079\nv 10.255498 109.147430 13.732565\nv 10.077852 112.486214 13.684749\nv 5.129704 109.379959 15.522047\nv 5.280487 112.703850 15.457200\nv 0.307572 109.598709 15.522047\nv 0.458355 112.922592 15.457201\nv -1.284061 118.335503 15.628898\nv 4.518593 118.310814 16.107826\nv 3.460823 127.822182 16.297850\nv 3.723833 134.340866 16.245407\nv 3.249990 139.933228 15.620371\nv 3.579818 145.762817 13.569551\nv -2.564291 146.087250 11.896932\nv -8.339851 145.647827 9.231821\nv -3.168404 140.073166 13.716371\nv -2.829525 134.163742 14.809464\nv -9.152256 134.254196 12.293344\nv -2.578465 127.772575 15.183251\nv -0.058240 101.996803 15.348846\nv -4.992849 102.215485 15.334857\nv -10.659122 103.265312 13.934096\nv -14.713750 103.971870 10.099659\nv -15.179127 101.153008 9.916493\nv -16.258968 98.437241 9.025100\nv -17.119123 96.323380 8.155849\nv -18.347330 92.854393 7.649872\nv -19.794964 87.196663 7.341154\nv -21.646437 78.152824 6.605483\nv -23.065395 69.022781 5.546893\nv -24.231440 61.606342 4.535804\nv -24.681587 58.801590 4.369627\nv -25.085075 56.703987 4.258952\nv -25.970783 51.539558 4.008332\nv -26.092020 47.960857 2.191626\nv -27.258247 41.656952 1.575834\nv -28.105846 32.386520 0.870003\nv -29.153328 26.736397 0.134204\nv -30.812218 20.680784 -0.254970\nv -26.601055 23.194956 3.962842\nv -26.247499 18.050323 4.883663\nv -23.578144 21.865740 4.779805\nv -21.681383 30.778788 5.447577\nv -25.761543 31.712969 4.353107\nv -24.348619 40.848057 5.333836\nv -20.403732 39.944847 6.392019\nv -17.533602 29.965940 3.705919\nv -15.634091 38.995525 4.693918\nv -12.992643 38.665302 -0.325441\nv -11.752955 47.051037 1.012386\nv -10.832192 49.917740 2.217152\nv -10.748602 53.038921 2.818634\nv -9.815169 58.534557 3.626996\nv -8.139584 65.843224 4.589358\nv -5.974217 74.827103 5.332104\nv -2.547879 84.171875 5.030331\nv -1.888535 85.584923 4.552163\nv -1.722489 86.556892 4.268160\nv -0.680958 87.807289 9.561883\nv -3.595441 87.653633 9.855235\nv -0.555641 90.569817 13.944120\nv -9.368273 91.165916 14.116604\nv -0.322169 95.716576 14.898864\nv -6.924603 96.163033 15.022003\nv -12.630634 97.459885 13.306044\nv -14.446730 94.668602 12.091393\nv -15.442813 91.421280 11.849339\nv -16.711218 86.345695 11.574375\nv -18.755032 77.321945 10.904243\nv -20.236679 68.199959 9.960257\nv -21.191906 60.742344 8.857786\nv -21.918119 56.352863 8.180220\nv -22.401390 53.421356 7.645409\nv -23.365623 49.257629 7.360046\nv -23.653076 46.479702 6.039588\nv -19.539480 45.537872 7.143022\nv -14.706331 45.354027 5.245739\nv -14.416979 48.894249 7.107544\nv -13.719884 52.676762 7.321200\nv -13.014219 56.024776 7.514749\nv -12.420173 58.902069 7.704080\nv -10.848753 66.225708 8.823905\nv -8.762831 75.266861 9.994042\nv -6.949177 84.369545 10.646333\nv -5.170993 86.266533 10.293334\nv -9.851855 88.818275 13.792099\nv -10.979153 85.170662 13.284927\nv -13.456410 76.133194 12.306269\nv -15.456551 67.105522 11.242485\nv -16.599880 59.690971 10.089558\nv -17.312183 55.749542 9.530900\nv -18.077272 51.413376 8.815052\nv -19.014082 48.261318 8.527311\nv -11.195665 100.448418 13.785435\nv -5.428857 99.412300 15.133115\nv -0.177766 99.024689 15.136345\nv 5.057755 98.929955 15.144951\nv 6.080218 95.303162 14.940265\nv 8.232927 89.803101 13.707427\nv 2.222636 87.252281 9.565615\nv 4.164134 85.363861 9.593962\nv 8.733191 87.496552 13.314637\nv 6.191727 83.104103 9.535813\nv 8.116199 74.068001 8.459771\nv 10.456195 65.098473 6.848668\nv 12.402771 57.881393 5.378499\nv 13.060602 55.029598 5.058973\nv 13.837970 51.709618 4.715091\nv 14.616046 47.957382 4.322273\nv 15.135422 44.551407 2.269777\nv 16.218075 38.253860 1.395375\nv 18.353771 29.330734 0.004594\nv 21.439106 20.018167 -1.215530\nv 22.119768 14.445312 -1.427177\nv 24.037184 12.380482 -1.557602\nv 21.524910 7.828876 -6.141377\nv 19.863739 4.585306 -13.254262\nv 21.602610 6.593881 -6.072558\nv 27.448124 11.332376 -10.474638\nv 24.786619 7.565680 0.141966\nv 28.496212 8.328725 2.284252\nv 28.379526 9.335822 2.091216\nv 24.687891 8.755231 0.026782\nv 26.920940 13.753672 0.802828\nv 26.543686 17.744774 1.183745\nv 24.411167 21.244007 1.107250\nv 22.309595 30.072071 2.172557\nv 20.794716 39.141060 3.586598\nv 19.770033 44.662373 4.615170\nv 19.073410 47.282398 6.118374\nv 18.060596 50.398079 6.521690\nv 17.159266 54.668785 7.443063\nv 16.331654 58.556599 8.187553\nv 14.961185 65.865685 9.707660\nv 12.652423 74.800438 11.203405\nv 9.923444 83.834099 12.646460\nv 14.471968 90.104614 11.901203\nv 13.432819 93.339882 12.258298\nv 11.795149 96.242195 13.447913\nv 10.796736 99.388336 13.842124\nv 10.523271 102.265221 14.021268\nv 4.864342 101.772438 15.364937\nv 14.668585 102.651665 10.185750\nv 14.874350 99.817680 10.018360\nv 15.608590 97.207085 9.393929\nv 16.292906 100.045715 4.038738\nv 16.049286 102.730545 4.334019\nv 14.346197 102.829346 -1.339486\nv 16.753235 97.433739 3.452229\nv 16.415741 95.211891 8.642554\nv 17.730844 91.825890 8.075542\nv 19.284908 86.214012 7.539190\nv 15.818643 85.073830 11.433449\nv 18.102364 76.117661 10.339893\nv 19.819550 67.094849 8.948082\nv 20.998840 59.737389 7.457866\nv 21.858854 55.410549 6.567476\nv 22.439053 52.526291 5.890893\nv 23.496174 48.401360 5.426900\nv 23.950954 45.720150 3.961506\nv 24.804173 40.155453 2.959742\nv 26.456539 31.121252 1.524206\nv 27.473269 22.657394 0.662147\nv 30.255527 15.268849 0.010249\nv 31.759996 9.454091 0.969290\nv 31.860979 8.446445 1.167539\nv 35.077618 7.930150 -3.634018\nv 34.967560 9.119304 -3.745442\nv 33.352703 14.798560 -3.930981\nv 32.096241 20.473934 -3.300868\nv 32.543255 19.884001 -9.234031\nv 30.831301 25.575283 -8.407207\nv 28.180773 27.219500 -13.864923\nv 30.010418 21.020144 -14.506618\nv 33.123516 13.949685 -10.100903\nv 24.442682 23.496302 -16.105579\nv 30.305752 26.472015 -2.675533\nv 29.099058 32.049301 -1.675367\nv 28.032490 41.242912 -0.451742\nv 26.707460 47.479137 0.460554\nv 26.358952 50.928345 2.486338\nv 25.555168 57.680744 -2.150080\nv 25.366163 56.054890 2.987971\nv 24.918554 58.136044 3.196483\nv 24.407360 60.918560 3.501648\nv 23.027267 68.238655 4.878843\nv 21.361826 77.262619 6.390857\nv -3.557132 109.773994 -4.786430\nv -10.027311 103.114998 -5.858694\nv -8.683336 110.006538 -4.897129\nv -3.406350 113.097900 -4.274922\nv -8.204123 113.315552 -4.274922\nv -10.549438 113.498131 -7.178443\nv -12.031198 113.529030 -5.525903\nv 0.286414 139.783829 -11.562342\nv -6.474258 139.194565 -12.211164\nv -8.902658 135.346161 -10.270442\nv -7.922139 151.292114 -13.141315\nv -8.656327 145.581985 -14.096850\nv -10.621732 140.931229 -11.810996\nv -11.157555 142.087646 -11.323327\nv -15.169711 139.761978 -5.320950\nv -17.247032 139.892502 1.459662\nv -16.468538 140.784851 3.353976\nv -15.134230 146.184082 4.614671\nv -14.432147 150.534668 2.624300\nv -12.896749 154.223969 -0.389672\nv -11.813804 155.889450 -4.547063\nv -15.716800 154.404617 -9.584239\nv -12.488200 150.878677 -13.168905\nv -10.451757 146.186783 -14.339672\nv -11.448958 143.161926 -11.813308\nv -14.639687 140.773163 -5.761320\nv -17.322807 141.148941 1.174588\nv -16.072968 145.605362 2.657415\nv -15.926299 149.772232 1.597551\nv -15.995328 152.773834 -1.497710\nv -18.451574 150.209732 -2.665621\nv -16.936338 148.198380 0.278834\nv -16.101147 145.007202 -1.391700\nv -18.795122 146.756958 -3.404109\nv -18.690916 152.217178 -5.702372\nv -19.613728 148.305344 -7.146380\nv -19.008186 144.325195 -4.625582\nv -20.465666 144.656326 -7.929785\nv -18.564182 140.569443 -6.032800\nv -20.425526 142.346313 -8.884608\nv -19.276388 135.568542 -8.448930\nv -20.885679 137.125763 -11.226144\nv -20.064123 129.571548 -11.638576\nv -17.124449 128.516983 -10.424921\nv -18.236193 124.870728 -13.290473\nv -21.222364 125.304573 -13.887474\nv -21.740732 131.086395 -14.300132\nv -22.924040 126.809883 -16.940512\nv -21.795866 125.701073 -16.534613\nv -23.757143 124.104256 -18.398638\nv -22.903206 128.039581 -20.614044\nv -23.429380 125.718575 -21.506458\nv -23.910517 123.322578 -21.687214\nv -24.285189 120.917213 -20.753866\nv -21.994982 122.606300 -23.948198\nv -22.431736 119.197121 -22.646662\nv -18.887377 122.145706 -24.715677\nv -18.357178 125.643227 -24.696310\nv -15.339843 124.949867 -23.604755\nv -14.839157 127.533417 -22.766439\nv -12.956281 126.184219 -19.601038\nv -11.880474 130.680939 -16.981777\nv -13.725375 132.533813 -20.311489\nv -17.832191 128.383804 -23.941669\nv -21.447102 125.936844 -23.894835\nv -20.912430 128.577148 -23.119514\nv -19.712069 133.713669 -20.696457\nv -21.702473 132.861832 -18.141994\nv -20.903622 138.836487 -14.908218\nv -20.053844 143.955780 -12.764236\nv -19.925385 146.246078 -11.852520\nv -19.104277 149.159103 -11.038695\nv -18.186779 152.700134 -9.778841\nv -16.028313 154.418839 -5.401087\nv -15.279111 150.268280 -13.517637\nv -11.726213 146.019363 -14.789785\nv -12.285069 145.591553 -14.802291\nv -11.455322 144.965240 -12.261539\nv -11.792189 143.418167 -7.971587\nv -14.476195 143.264893 -1.894130\nv -15.396235 144.090530 -0.492546\nv -15.504067 145.083298 1.033518\nv -11.620612 141.274963 -3.624127\nv -8.443570 141.557785 -6.467235\nv -9.113446 139.077667 -8.285270\nv -11.757750 138.631058 -5.348123\nv -15.288582 141.639771 -3.132534\nv -15.248173 139.148117 -4.696101\nv -16.038740 134.378571 -7.050795\nv -14.077458 128.391693 -11.253597\nv -15.155967 124.677391 -14.112625\nv -15.474462 125.552963 -16.336082\nv -18.602531 126.180817 -15.601875\nv -18.791439 124.874435 -12.848219\nv -21.938862 123.967545 -13.624157\nv -24.015722 121.657448 -15.621446\nv -24.329077 118.601448 -18.272129\nv -22.544376 116.449043 -20.146070\nv -19.334185 118.575386 -23.373705\nv -15.774755 122.116707 -23.696493\nv -13.700814 122.613708 -20.882242\nv -13.179784 124.973862 -16.074776\nv -12.087026 129.243530 -13.808069\nv -10.520688 135.208496 -10.830178\nv -10.556349 136.701019 -14.035365\nv -12.147920 138.476440 -17.289461\nv -16.665079 133.588379 -21.525133\nv -15.471727 139.669968 -18.664165\nv -10.768327 142.754364 -15.165388\nv -9.116078 140.699768 -12.057584\nv -8.384428 143.182220 -10.656863\nv -9.773125 145.303238 -13.115635\nv -14.126161 144.235046 -16.318542\nv -18.740444 139.804382 -17.775190\nv -17.518770 144.696686 -15.382508\nv -16.603758 147.510345 -14.790949\nv -16.334358 148.612747 -14.290703\nv -13.308922 146.753296 -14.356651\nv -12.770009 134.244156 -7.939775\nv -13.606498 124.057320 -18.456789\nv -13.958508 121.952248 -15.400769\nv -15.743207 124.104652 -13.526826\nv -16.218023 120.863205 -9.771025\nv -19.194555 121.614906 -9.108294\nv -22.251432 120.766411 -9.833842\nv -24.378290 118.288734 -11.976319\nv -24.632795 115.419823 -14.464874\nv -22.873491 113.355026 -16.262749\nv -19.496176 115.679260 -20.824665\nv -19.896944 112.603317 -16.925476\nv -16.348740 116.586151 -20.048729\nv -16.840069 113.451820 -16.199930\nv -14.151481 119.166405 -17.817451\nv -14.745925 115.856140 -14.120971\nv -14.458717 118.798409 -11.568891\nv -15.326255 114.636879 -6.908083\nv -16.901217 116.713074 -5.100970\nv -19.678633 117.414497 -4.482579\nv -22.597542 116.473190 -5.289130\nv -24.543116 114.248741 -7.212532\nv -24.772160 111.590782 -9.518110\nv -23.197205 109.514587 -11.325228\nv -20.419830 108.813179 -11.943608\nv -17.500862 109.754471 -11.137077\nv -15.555301 111.978920 -9.213666\nv -15.954244 108.605354 -5.113702\nv -15.665491 111.312874 -2.765313\nv -17.135866 113.402618 -0.946815\nv -19.803753 114.076370 -0.352808\nv -22.650084 113.076790 -1.210188\nv -24.587688 110.785675 -3.191459\nv -24.876472 108.078140 -5.539830\nv -23.406082 105.988411 -7.358336\nv -20.738213 105.314667 -7.952346\nv -17.891848 106.314240 -7.094972\nv -17.617188 102.819954 -1.649484\nv -15.984215 106.033218 -0.995275\nv -15.961130 109.538635 0.068328\nv -17.556734 111.997246 1.135064\nv -20.161619 112.469963 1.797498\nv -22.780727 110.776199 1.802587\nv -24.413675 107.562927 1.148371\nv -24.436731 104.057510 0.084746\nv -22.841120 101.598892 -0.982008\nv -20.236277 101.126190 -1.644415\nv -22.386141 103.258919 -1.505342\nv -23.526731 105.054382 -0.731220\nv -23.499147 107.619591 0.044978\nv -23.451496 107.141022 1.871042\nv -23.523302 104.289726 1.016466\nv -22.359732 102.308319 0.181111\nv -20.513084 102.919014 -1.981668\nv -20.405298 101.953651 -0.315887\nv -20.121675 106.572762 0.883381\nv -22.171797 109.773117 2.418455\nv -22.313946 109.974716 0.526804\nv -20.172876 111.180618 2.449569\nv -20.423820 111.220200 0.530179\nv -18.218420 110.825935 1.952542\nv -18.550789 110.880295 0.053875\nv -17.054859 108.844528 1.117204\nv -17.126654 105.993233 0.262617\nv -18.406368 103.361145 -0.284799\nv -18.622969 104.164490 -1.978281\nv -17.437754 106.519623 -1.496467\nv -17.410192 109.084831 -0.720240\nv -16.175682 119.289497 -22.657297\nv -4.173226 161.750076 -0.873839\nv -3.437090 163.891220 -2.041367\nv -0.586899 164.798782 -4.374317\nv 0.860472 167.416275 -5.198886\nv -1.478318 167.016800 -4.583032\nv -4.088677 166.248169 -2.134752\nv -4.954387 165.709106 -1.382013\nv -5.009133 163.537109 -0.195498\nv -4.582647 162.211990 0.801328\nv -5.498087 161.234863 4.064809\nv -5.483699 160.238617 5.951284\nv -5.342688 159.534714 7.512962\nv -4.396662 159.433273 8.466735\nv -3.239970 159.502899 9.154009\nv -1.677446 160.181061 8.921835\nv -1.162659 161.295898 9.602525\nv -2.868908 160.526474 9.892479\nv -2.358781 162.080231 10.327346\nv -3.285553 161.537857 10.238132\nv -2.821003 162.980209 10.478459\nv -3.757885 162.588959 10.236213\nv -3.805057 163.330048 10.780764\nv -4.542873 163.187271 10.628786\nv -4.606568 163.775986 10.462106\nv -5.535329 163.660339 10.006703\nv -4.597719 163.759979 9.977880\nv -5.301692 163.622742 9.706755\nv -5.498241 163.714310 9.960246\nv -4.896528 163.873108 10.437851\nv -3.706488 163.612152 10.331025\nv -4.076719 163.736740 10.760042\nv -3.373173 163.674500 10.668042\nv -3.285171 163.901642 10.850708\nv -3.901680 164.110855 10.937594\nv -5.130281 164.326172 10.785661\nv -5.867358 164.012558 10.438742\nv -5.978024 164.558060 10.591012\nv -6.376829 164.345016 9.812805\nv -6.104573 163.891388 9.495045\nv -5.732905 163.777161 9.091934\nv -6.294453 163.651321 8.311274\nv -6.618551 163.775192 8.776294\nv -6.826253 164.155106 8.655140\nv -6.895405 163.956253 8.033135\nv -6.701097 163.724869 8.070795\nv -6.961512 163.658386 7.313450\nv -6.812683 163.626068 7.539379\nv -6.664102 163.038345 7.479150\nv -6.646468 162.145111 6.981063\nv -6.345301 161.584137 7.850183\nv -6.129959 160.575806 7.347423\nv -6.248059 161.372818 5.633673\nv -6.039979 162.375641 2.773765\nv -5.898510 165.477264 -0.571200\nv -5.824038 165.629898 -1.532769\nv -6.152044 167.832443 -1.084957\nv -7.381176 167.439362 1.598063\nv -6.473725 164.303253 1.941148\nv -7.393106 164.090881 4.388025\nv -6.784505 162.630524 4.501485\nv -7.183799 163.395218 6.162938\nv -7.125834 163.660370 6.931920\nv -7.264343 164.431259 7.427931\nv -6.715477 165.003906 8.657825\nv -6.165079 165.283569 9.860231\nv -6.425492 164.777084 9.911065\nv -5.723646 165.107559 10.275841\nv -5.210061 165.269119 10.605566\nv -5.885168 165.640884 10.493009\nv -6.263289 165.850586 9.838525\nv -6.603130 166.160172 8.855912\nv -6.701038 166.736954 8.758343\nv -6.787750 166.213165 9.525903\nv -6.684366 166.101776 9.738687\nv -6.537160 166.175385 10.339097\nv -6.443703 165.895187 10.801285\nv -6.272778 165.852524 10.993514\nv -6.044022 165.889145 11.113212\nv -5.154554 165.833817 10.703827\nv -5.567692 166.160721 11.095708\nv -6.058839 166.233978 11.860385\nv -4.950856 166.075546 11.091588\nv -4.717252 166.181839 11.141801\nv -5.767832 166.499390 11.858060\nv -6.499082 166.662506 12.075649\nv -6.361106 166.144363 11.668932\nv -6.977320 166.617661 11.910614\nv -6.890893 167.250320 11.812147\nv -7.252587 166.673904 11.487583\nv -6.901169 166.152527 11.247445\nv -6.689672 166.051361 11.531280\nv -7.158547 166.250626 11.002129\nv -7.221898 166.521393 10.723248\nv -6.878415 166.960129 9.420182\nv -6.503171 167.545944 9.747412\nv -7.215488 167.099670 10.549761\nv -7.256812 167.230713 11.252284\nv -6.521703 167.843674 11.350783\nv -6.789638 167.744049 10.820496\nv -6.372567 168.723907 10.368290\nv -6.414341 168.010269 9.344132\nv -6.490502 167.671295 8.758307\nv -7.575360 167.453751 6.411020\nv -7.792018 165.744476 6.211139\nv -7.510634 164.228409 6.168862\nv -7.928697 166.090744 4.336383\nv -7.683704 169.247986 2.489774\nv -8.060548 167.767349 4.395259\nv -7.843638 169.044754 5.133633\nv -7.269145 168.606842 6.709624\nv -6.220347 169.134430 7.660675\nv -5.808087 169.772720 8.740017\nv -5.953539 169.626495 9.842504\nv -5.688157 169.759644 10.320262\nv -6.095200 168.867050 10.824325\nv -5.588170 168.712036 10.980466\nv -5.944105 167.731262 11.480383\nv -6.259335 167.215637 12.030755\nv -5.590232 167.075073 11.818176\nv -4.578693 166.925339 11.214978\nv -3.983785 166.695847 10.878996\nv -4.113003 166.122498 10.799306\nv -3.915244 164.961548 10.843238\nv -5.205711 164.758636 10.863030\nv -2.599621 164.360687 11.068466\nv -2.576488 163.592041 10.735702\nv -2.832383 163.565872 10.645764\nv -2.943472 163.577591 10.579494\nv -2.972066 163.640472 10.418808\nv -3.107589 163.605988 10.456468\nv -3.855985 163.632294 10.509222\nv -3.045608 163.495071 10.622074\nv -2.166439 163.585327 10.802435\nv -1.411291 163.307861 10.668039\nv 0.089462 162.526535 9.866207\nv 0.374523 163.973373 10.450192\nv -1.322149 164.134796 10.998603\nv -1.266503 165.645752 11.303912\nv -1.480938 167.361557 11.167351\nv -4.017303 167.633865 10.688491\nv -4.597784 167.982788 10.761847\nv -4.976200 167.522842 10.939121\nv -5.162769 169.614532 10.459652\nv -5.542810 170.423416 10.146937\nv -5.945767 170.391113 9.671204\nv -6.072116 170.354355 8.882036\nv -5.875394 170.409424 8.313353\nv -5.871873 169.877472 7.909170\nv -6.295103 169.890625 7.374049\nv -7.409274 169.164505 6.821891\nv -7.458369 169.602737 6.686985\nv -7.370320 169.675583 6.575751\nv -6.064456 169.970993 7.217728\nv -7.417247 170.532440 6.639974\nv -7.935706 169.939682 5.337009\nv -8.011439 169.761169 5.279985\nv -8.063988 169.532074 5.248847\nv -8.003642 169.862595 3.940338\nv -7.423465 171.295319 1.049659\nv -6.585318 171.329468 -0.385766\nv -6.135538 170.393021 -1.397957\nv -5.656524 168.114670 -2.865763\nv -5.768250 166.298584 -2.593752\nv -5.699372 167.514221 -3.750442\nv -4.816138 167.624329 -3.815022\nv -4.906840 166.300812 -2.503667\nv -4.602607 169.776596 -3.168442\nv -5.451994 171.617447 -2.897577\nv -5.572677 171.118362 -2.040625\nv -6.145767 171.143463 -2.402503\nv -6.132565 171.480347 -3.566385\nv -5.431254 171.541733 -3.413336\nv -5.872583 170.849747 -4.735369\nv -5.183898 170.844162 -4.628434\nv -5.686158 169.017471 -4.936945\nv -4.957386 168.983246 -4.748733\nv -7.284447 175.274811 2.399433\nv -8.507471 172.073502 4.344199\nv -8.473030 171.247589 4.560701\nv -8.115695 170.565002 3.687733\nv -8.122340 170.487701 4.482671\nv -8.104478 170.334000 4.990050\nv -7.999949 170.613037 5.744652\nv -7.569451 170.632233 6.820689\nv -6.756514 170.565018 7.384728\nv -6.584668 170.760635 7.451516\nv -7.444902 170.978912 6.689479\nv -7.986853 170.993240 5.726914\nv -8.196742 171.679764 6.213902\nv -7.417730 171.560165 7.351233\nv -6.449411 170.935410 7.994983\nv -5.905688 169.889938 7.675772\nv -6.627238 171.176254 8.800421\nv -6.364204 171.449631 9.830948\nv -5.783220 171.485855 10.475358\nv -4.984130 170.376572 10.421704\nv -4.188530 170.325867 10.352063\nv -4.125683 169.747269 10.053033\nv -2.990487 169.085571 10.181387\nv -1.823298 168.524460 10.959781\nv -0.146739 168.928314 11.140601\nv -0.195942 169.413040 11.389385\nv -1.887781 169.080978 11.131085\nv -0.234604 169.643524 11.349341\nv -1.736776 169.516174 11.152348\nv -1.648847 169.589020 11.041019\nv -0.304951 169.824234 11.292357\nv -1.683714 170.445694 11.114655\nv -2.582875 169.918320 9.934894\nv -2.680102 169.835938 10.195341\nv -3.067293 169.847000 9.890970\nv -2.565912 170.501617 10.655242\nv -3.302168 169.838593 9.914671\nv -2.668722 170.701385 10.507678\nv -1.820257 170.545242 11.307591\nv -0.672242 170.502167 11.463490\nv -1.716668 170.892242 11.160023\nv -3.225520 170.886627 10.511037\nv -2.354392 171.483566 11.302866\nv -3.959304 171.135895 10.882584\nv -2.768224 171.970840 11.591115\nv -4.948986 172.253479 10.792158\nv -5.017785 171.429260 10.881747\nv -5.680249 172.339020 10.359963\nv -6.278524 172.273590 9.754533\nv -7.587883 172.043762 7.829659\nv -8.333568 172.449081 6.431175\nv -7.964417 173.704666 5.858681\nv -7.466657 175.663345 5.180467\nv -6.068661 173.387466 9.426619\nv -5.419997 173.390442 10.046968\nv -5.034739 175.384415 9.592081\nv -5.788547 175.454727 8.843654\nv -5.416945 177.919266 7.332547\nv -4.072011 177.903763 8.407772\nv -4.124475 175.429535 10.142363\nv -4.660870 173.366165 10.525315\nv -0.733544 173.595276 11.501945\nv -0.159562 175.552811 10.883220\nv -2.702346 177.878189 9.451129\nv -1.048989 180.380096 7.246170\nv -2.419930 180.587692 6.343776\nv 2.093838 181.599426 0.582469\nv -3.631823 180.419174 5.230422\nv -0.393590 181.084488 -0.965098\nv 2.355464 179.218445 -5.026069\nv -1.583798 178.159836 -4.960846\nv 5.249752 179.689972 -3.496244\nv 7.427116 179.141724 -1.067947\nv 4.188925 181.015167 2.611282\nv 1.840944 179.838974 7.374865\nv 0.345628 177.927200 9.596433\nv 2.487100 175.126968 10.025541\nv 0.836935 171.932144 11.636950\nv -1.222971 172.341507 11.980571\nv -1.059780 171.571777 11.783875\nv -0.651082 170.882263 11.452045\nv 0.079990 170.210190 11.377538\nv 0.579458 170.356049 11.273906\nv 0.603053 171.110275 11.644041\nv 3.755772 171.126190 9.774384\nv 1.350539 170.421799 11.075562\nv 1.065121 169.725403 11.017966\nv 2.383329 169.095673 10.346490\nv 0.598292 167.636353 11.152966\nv 0.592010 165.961853 10.986284\nv 2.529456 164.167038 8.967592\nv 4.849408 165.314667 7.816908\nv 3.141186 167.280167 9.810138\nv 4.945766 171.155014 8.613555\nv 6.301734 170.938721 7.226644\nv 3.877049 177.105255 8.385373\nv 4.947692 178.297974 6.776120\nv 7.442924 176.102753 4.970164\nv 8.647042 173.956482 4.095708\nv 10.258606 175.074799 1.128360\nv 8.299424 178.010315 2.752419\nv 5.571980 179.627396 4.792706\nv 8.994831 171.426620 3.454978\nv 7.135505 169.599014 5.992452\nv 7.113226 171.427353 6.908826\nv 7.774262 167.433853 6.011033\nv 7.607162 171.344467 6.762368\nv 7.924594 171.267685 7.404388\nv 8.983857 170.624985 6.859195\nv 8.712972 170.633911 6.217243\nv 9.099867 168.793762 6.602664\nv 7.923761 167.308121 6.881601\nv 7.066315 167.922180 7.063653\nv 6.792292 170.947723 7.694879\nv 5.801144 170.212433 7.917911\nv 5.453485 167.656860 7.972465\nv 5.767112 165.454529 7.513431\nv 6.499188 166.128250 6.398057\nv 6.795472 166.108505 7.211484\nv 8.739869 168.776031 5.941156\nv -0.538348 175.238144 -7.298018\nv -0.876384 171.099014 -6.691886\nv -2.557475 171.601395 -5.560908\nv -3.047338 174.133408 -5.031058\nv -3.563455 176.269287 -3.619658\nv -4.669242 178.443466 -0.729322\nv -5.993208 177.254578 0.682227\nv -6.296253 178.027695 4.412841\nv -4.467746 179.934418 2.451308\nv -2.871446 179.755142 -1.796885\nv -3.683478 170.376266 10.024012\nv -6.086135 160.077545 8.436064\nv -5.153275 159.976273 9.446231\nv -3.945066 160.045166 10.107041\nv -4.303662 161.131882 10.313823\nv -5.339861 161.185196 9.708549\nv -6.179410 161.160263 8.849912\nv -5.915640 162.147690 8.837806\nv -5.226265 162.298279 9.584568\nv -4.337384 162.123810 10.069540\nv -4.512469 162.490036 10.296731\nv -5.423965 162.489838 9.841466\nv -5.633204 163.116989 10.121556\nv -6.388445 163.215179 9.188428\nv -6.086730 162.513855 9.068114\nv -6.209179 162.626022 8.323125\nv -6.712166 163.374008 8.511939\nv -6.200251 163.800095 9.218331\nv -6.430700 163.671249 8.499805\nv -6.561527 163.658234 7.760873\nv -6.557216 163.694733 7.620815\nv -6.721225 163.634720 7.631185\nv -6.739310 163.550934 7.739360\nvt 0.640670 0.469725\nvt 0.630557 0.465076\nvt 0.631820 0.461743\nvt 0.637860 0.472104\nvt 0.642922 0.493283\nvt 0.516116 0.981185\nvt 0.516878 0.984262\nvt 0.502577 0.988980\nvt 0.528663 0.983486\nvt 0.528663 0.980380\nvt 0.513075 0.961205\nvt 0.501865 0.985768\nvt 0.488634 0.991042\nvt 0.492504 0.993789\nvt 0.645468 0.493283\nvt 0.654573 0.463390\nvt 0.650532 0.433663\nvt 0.620774 0.453023\nvt 0.620774 0.458264\nvt 0.033936 0.981185\nvt 0.033174 0.984262\nvt 0.021389 0.983486\nvt 0.047475 0.988980\nvt 0.048187 0.985768\nvt 0.036977 0.961205\nvt 0.021389 0.980380\nvt 0.021389 0.960052\nvt 0.528663 0.960052\nvt 0.512760 0.958428\nvt 0.528663 0.956954\nvt 0.505389 0.933116\nvt 0.481066 0.941256\nvt 0.496061 0.964688\nvt 0.498586 0.967603\nvt 0.486375 0.978580\nvt 0.653424 0.493283\nvt 0.307083 0.959620\nvt 0.308825 0.929740\nvt 0.308820 0.959633\nvt 0.334638 0.924981\nvt 0.330357 0.959633\nvt 0.467408 0.970675\nvt 0.481673 0.977465\nvt 0.467438 0.966040\nvt 0.332384 0.959633\nvt 0.346385 0.959633\nvt 0.462997 0.938322\nvt 0.454992 0.966086\nvt 0.479446 0.939662\nvt 0.467172 0.900856\nvt 0.454814 0.900298\nvt 0.446549 0.936981\nvt 0.442457 0.899740\nvt 0.430100 0.935641\nvt 0.442546 0.966132\nvt 0.360385 0.959633\nvt 0.347888 0.924582\nvt 0.339526 0.895543\nvt 0.304745 0.898304\nvt 0.342998 0.860742\nvt 0.307570 0.857532\nvt 0.275026 0.860263\nvt 0.275026 0.898304\nvt 0.620774 0.433663\nvt 0.591686 0.433663\nvt 0.609729 0.461743\nvt 0.586975 0.463390\nvt 0.600879 0.469725\nvt 0.596080 0.493283\nvt 0.588125 0.493283\nvt 0.243349 0.959599\nvt 0.241232 0.959633\nvt 0.241227 0.929740\nvt 0.051466 0.967603\nvt 0.068379 0.977465\nvt 0.063677 0.978580\nvt 0.053991 0.964688\nvt 0.037292 0.958428\nvt 0.068986 0.941256\nvt 0.044663 0.933116\nvt 0.021389 0.956954\nvt 0.021389 0.930344\nvt 0.528663 0.930344\nvt 0.504744 0.929835\nvt 0.502865 0.900302\nvt 0.465189 0.865977\nvt 0.453493 0.867162\nvt 0.441796 0.868346\nvt 0.430100 0.869530\nvt 0.430100 0.899182\nvt 0.578039 0.901674\nvt 0.593411 0.901674\nvt 0.578039 0.922718\nvt 0.593411 0.877599\nvt 0.578039 0.877599\nvt 0.430100 0.966178\nvt 0.374386 0.959633\nvt 0.361137 0.924182\nvt 0.351146 0.895443\nvt 0.353461 0.861910\nvt 0.353845 0.832467\nvt 0.343575 0.829653\nvt 0.308837 0.826679\nvt 0.275026 0.828128\nvt 0.242483 0.857532\nvt 0.245954 0.898304\nvt 0.207054 0.860742\nvt 0.210526 0.895543\nvt 0.215414 0.924981\nvt 0.219695 0.959633\nvt 0.082644 0.970675\nvt 0.082614 0.966040\nvt 0.070606 0.939662\nvt 0.087055 0.938322\nvt 0.082880 0.900856\nvt 0.045308 0.929835\nvt 0.021389 0.926716\nvt 0.528663 0.926716\nvt 0.528663 0.901319\nvt 0.498271 0.864759\nvt 0.467202 0.834137\nvt 0.454834 0.835456\nvt 0.442467 0.836775\nvt 0.430100 0.838094\nvt 0.578039 0.942327\nvt 0.593411 0.942327\nvt 0.578039 0.963388\nvt 0.593411 0.922718\nvt 0.611196 0.901674\nvt 0.611196 0.877599\nvt 0.611196 0.855209\nvt 0.593411 0.855209\nvt 0.578039 0.855209\nvt 0.374386 0.923783\nvt 0.374386 0.895244\nvt 0.362766 0.895343\nvt 0.363924 0.863078\nvt 0.364116 0.835280\nvt 0.363159 0.821188\nvt 0.353032 0.818724\nvt 0.342905 0.816259\nvt 0.308893 0.812512\nvt 0.275026 0.812361\nvt 0.241215 0.826679\nvt 0.206477 0.829653\nvt 0.556870 0.377817\nvt 0.555701 0.346732\nvt 0.587680 0.344170\nvt 0.196207 0.832467\nvt 0.197020 0.818724\nvt 0.186893 0.821188\nvt 0.187851 0.807096\nvt 0.177867 0.809212\nvt 0.180467 0.767792\nvt 0.148499 0.811171\nvt 0.152314 0.767792\nvt 0.120465 0.810845\nvt 0.119747 0.767792\nvt 0.107738 0.767792\nvt 0.108401 0.809968\nvt 0.107993 0.823371\nvt 0.095777 0.822273\nvt 0.095218 0.835456\nvt 0.082850 0.834137\nvt 0.084863 0.865977\nvt 0.051781 0.864759\nvt 0.047187 0.900302\nvt 0.021389 0.901319\nvt 0.021389 0.864093\nvt 0.528663 0.864093\nvt 0.501369 0.832623\nvt 0.466490 0.821175\nvt 0.454275 0.822273\nvt 0.442059 0.823371\nvt 0.429843 0.824469\nvt 0.404427 0.838094\nvt 0.593411 0.963388\nvt 0.578039 0.995892\nvt 0.611196 0.942327\nvt 0.611196 0.963388\nvt 0.629763 0.942327\nvt 0.629763 0.922718\nvt 0.611196 0.922718\nvt 0.629763 0.901674\nvt 0.629763 0.877599\nvt 0.629763 0.855209\nvt 0.629763 0.834299\nvt 0.611196 0.834299\nvt 0.593411 0.834299\nvt 0.578039 0.834299\nvt 0.593411 0.814748\nvt 0.578039 0.814748\nvt 0.374386 0.864246\nvt 0.374386 0.838094\nvt 0.373286 0.823653\nvt 0.372185 0.809212\nvt 0.362201 0.807096\nvt 0.352218 0.804981\nvt 0.342234 0.802865\nvt 0.308948 0.798345\nvt 0.275026 0.796595\nvt 0.241104 0.798345\nvt 0.241159 0.812512\nvt 0.207148 0.816259\nvt 0.197834 0.804981\nvt 0.190111 0.767792\nvt 0.181544 0.720614\nvt 0.153167 0.720614\nvt 0.121415 0.720614\nvt 0.109176 0.720614\nvt 0.096937 0.720614\nvt 0.095729 0.767792\nvt 0.084698 0.720614\nvt 0.083719 0.767792\nvt 0.049312 0.767792\nvt 0.049215 0.720614\nvt 0.021389 0.767792\nvt 0.021389 0.720614\nvt 0.528663 0.767792\nvt 0.500837 0.720614\nvt 0.528663 0.720614\nvt 0.500740 0.767792\nvt 0.465354 0.720614\nvt 0.466333 0.767792\nvt 0.454323 0.767792\nvt 0.453715 0.809090\nvt 0.465779 0.808212\nvt 0.500042 0.806286\nvt 0.528663 0.804835\nvt 0.021389 0.804835\nvt 0.050010 0.806286\nvt 0.084273 0.808212\nvt 0.049346 0.819454\nvt 0.021389 0.818490\nvt 0.021389 0.832145\nvt 0.528663 0.832145\nvt 0.500706 0.819454\nvt 0.528663 0.818490\nvt 0.441651 0.809968\nvt 0.429587 0.810845\nvt 0.402990 0.824632\nvt 0.578039 0.763369\nvt 0.593411 0.793296\nvt 0.578039 0.793296\nvt 0.593411 0.763369\nvt 0.611196 0.763369\nvt 0.611196 0.793296\nvt 0.629763 0.763369\nvt 0.629763 0.793296\nvt 0.664468 0.763369\nvt 0.664468 0.793296\nvt 0.710904 0.763369\nvt 0.710904 0.793296\nvt 0.744670 0.763369\nvt 0.744670 0.793296\nvt 0.772503 0.763369\nvt 0.759916 0.963388\nvt 0.773537 0.995892\nvt 0.744670 0.995892\nvt 0.771967 0.963388\nvt 0.785828 0.963388\nvt 0.787625 0.942327\nvt 0.771308 0.942327\nvt 0.757911 0.942327\nvt 0.771213 0.922718\nvt 0.757644 0.922718\nvt 0.770986 0.901674\nvt 0.758540 0.901674\nvt 0.744670 0.922718\nvt 0.744670 0.901674\nvt 0.710904 0.922718\nvt 0.710904 0.942327\nvt 0.744670 0.942327\nvt 0.744670 0.963388\nvt 0.710904 0.995892\nvt 0.710904 0.963388\nvt 0.664468 0.995892\nvt 0.664468 0.963388\nvt 0.629763 0.995892\nvt 0.629763 0.963388\nvt 0.611196 0.995892\nvt 0.593411 0.995892\nvt 0.664468 0.942327\nvt 0.664468 0.922718\nvt 0.664468 0.901674\nvt 0.664468 0.877599\nvt 0.664468 0.855209\nvt 0.664468 0.834299\nvt 0.664468 0.814748\nvt 0.629763 0.814748\nvt 0.611196 0.814748\nvt 0.710904 0.814748\nvt 0.744670 0.814748\nvt 0.769841 0.793296\nvt 0.768282 0.814748\nvt 0.800728 0.793296\nvt 0.800728 0.763369\nvt 0.800728 0.963388\nvt 0.800728 0.995892\nvt 0.800728 0.942327\nvt 0.800728 0.922718\nvt 0.787570 0.922718\nvt 0.800728 0.901674\nvt 0.784899 0.901674\nvt 0.769679 0.877599\nvt 0.744670 0.877599\nvt 0.710904 0.901674\nvt 0.710904 0.877599\nvt 0.710904 0.855209\nvt 0.710904 0.834299\nvt 0.744670 0.834299\nvt 0.768194 0.834299\nvt 0.800728 0.814748\nvt 0.834866 0.793296\nvt 0.834866 0.763369\nvt 0.877873 0.763369\nvt 0.834866 0.995892\nvt 0.877873 0.963388\nvt 0.877873 0.995892\nvt 0.834866 0.963388\nvt 0.877873 0.942327\nvt 0.834866 0.942327\nvt 0.834866 0.922718\nvt 0.834866 0.901674\nvt 0.834866 0.878523\nvt 0.800728 0.877324\nvt 0.800728 0.855209\nvt 0.768916 0.855209\nvt 0.800728 0.834299\nvt 0.834866 0.814748\nvt 0.877873 0.793296\nvt 0.914315 0.763369\nvt 0.914315 0.963388\nvt 0.914315 0.995892\nvt 0.948307 0.963388\nvt 0.948307 0.942327\nvt 0.914315 0.942327\nvt 0.914315 0.922718\nvt 0.877873 0.922718\nvt 0.914315 0.901674\nvt 0.877873 0.901674\nvt 0.877873 0.878121\nvt 0.877873 0.855209\nvt 0.834866 0.855209\nvt 0.877873 0.834299\nvt 0.834866 0.834299\nvt 0.877873 0.814748\nvt 0.914315 0.793296\nvt 0.948307 0.763369\nvt 0.948307 0.995892\nvt 0.963121 0.963388\nvt 0.963121 0.995892\nvt 0.986738 0.963388\nvt 0.986738 0.942327\nvt 0.963121 0.942327\nvt 0.963121 0.922718\nvt 0.986738 0.922718\nvt 0.986738 0.901674\nvt 0.963121 0.901674\nvt 0.948307 0.922718\nvt 0.948307 0.901674\nvt 0.948307 0.877557\nvt 0.914315 0.877875\nvt 0.914315 0.855209\nvt 0.914315 0.834299\nvt 0.914315 0.814748\nvt 0.948307 0.793296\nvt 0.963121 0.763369\nvt 0.963121 0.793296\nvt 0.986738 0.763369\nvt 0.986738 0.995892\nvt 0.692389 0.147666\nvt 0.692391 0.169043\nvt 0.672401 0.164695\nvt 0.712380 0.164693\nvt 0.724733 0.153306\nvt 0.724733 0.139233\nvt 0.712378 0.127847\nvt 0.963121 0.855209\nvt 0.986738 0.834299\nvt 0.986738 0.855209\nvt 0.963121 0.834299\nvt 0.986738 0.814748\nvt 0.963121 0.814748\nvt 0.948307 0.834299\nvt 0.948307 0.855209\nvt 0.948307 0.814748\nvt 0.986738 0.793296\nvt 0.963121 0.877490\nvt 0.986738 0.877376\nvt 0.692388 0.123498\nvt 0.672399 0.127849\nvt 0.660045 0.139236\nvt 0.660047 0.153310\nvt 0.744670 0.855209\nvt 0.401553 0.811171\nvt 0.369585 0.767792\nvt 0.359941 0.767792\nvt 0.350296 0.767792\nvt 0.340652 0.767792\nvt 0.306314 0.767792\nvt 0.275026 0.767792\nvt 0.243738 0.767792\nvt 0.207818 0.802865\nvt 0.209400 0.767792\nvt 0.555568 0.319689\nvt 0.558346 0.283485\nvt 0.590347 0.283245\nvt 0.199756 0.767792\nvt 0.190696 0.720614\nvt 0.190797 0.695948\nvt 0.181386 0.695948\nvt 0.153311 0.695948\nvt 0.120921 0.695948\nvt 0.109355 0.695948\nvt 0.109263 0.681982\nvt 0.097770 0.681982\nvt 0.107420 0.647816\nvt 0.096562 0.647466\nvt 0.086277 0.681982\nvt 0.085705 0.647116\nvt 0.049196 0.681982\nvt 0.049390 0.695948\nvt 0.021389 0.695948\nvt 0.500662 0.695948\nvt 0.528663 0.695948\nvt 0.463828 0.695948\nvt 0.453115 0.720614\nvt 0.442314 0.767792\nvt 0.430305 0.767792\nvt 0.397738 0.767792\nvt 0.368508 0.720614\nvt 0.359356 0.720614\nvt 0.350203 0.720614\nvt 0.341050 0.720614\nvt 0.305381 0.720614\nvt 0.275026 0.720614\nvt 0.244671 0.720614\nvt 0.209002 0.720614\nvt 0.559682 0.236121\nvt 0.591931 0.236000\nvt 0.199849 0.720614\nvt 0.200209 0.695948\nvt 0.191245 0.681982\nvt 0.181694 0.681982\nvt 0.153667 0.681982\nvt 0.120756 0.681982\nvt 0.118277 0.648166\nvt 0.118046 0.630923\nvt 0.107392 0.629624\nvt 0.117655 0.611212\nvt 0.106421 0.608108\nvt 0.096737 0.628325\nvt 0.095186 0.605004\nvt 0.086083 0.627025\nvt 0.083952 0.601900\nvt 0.093566 0.583671\nvt 0.081970 0.582343\nvt 0.047627 0.597915\nvt 0.048557 0.622908\nvt 0.021389 0.624792\nvt 0.021389 0.647341\nvt 0.528663 0.647341\nvt 0.501495 0.622908\nvt 0.528663 0.624792\nvt 0.500850 0.645551\nvt 0.528663 0.681982\nvt 0.500856 0.681982\nvt 0.463775 0.681982\nvt 0.452263 0.695948\nvt 0.440876 0.720614\nvt 0.428637 0.720614\nvt 0.396885 0.720614\nvt 0.368666 0.695948\nvt 0.359255 0.695948\nvt 0.349843 0.695948\nvt 0.340432 0.695948\nvt 0.305677 0.695948\nvt 0.275026 0.695948\nvt 0.244375 0.695948\nvt 0.209620 0.695948\nvt 0.200796 0.681982\nvt 0.191280 0.646489\nvt 0.181027 0.647473\nvt 0.151942 0.647828\nvt 0.151305 0.630813\nvt 0.150506 0.611267\nvt 0.149680 0.586528\nvt 0.116757 0.586326\nvt 0.149227 0.558787\nvt 0.116226 0.558787\nvt 0.115696 0.518209\nvt 0.148775 0.518209\nvt 0.177636 0.518209\nvt 0.178017 0.558787\nvt 0.188522 0.518209\nvt 0.188776 0.558787\nvt 0.199408 0.518209\nvt 0.199535 0.558787\nvt 0.210294 0.518209\nvt 0.210294 0.558787\nvt 0.245412 0.558787\nvt 0.245717 0.518209\nvt 0.275026 0.558787\nvt 0.275026 0.518209\nvt 0.304335 0.518209\nvt 0.304640 0.558787\nvt 0.275026 0.575382\nvt 0.245108 0.577774\nvt 0.210294 0.581756\nvt 0.199662 0.583314\nvt 0.211317 0.601529\nvt 0.245739 0.593319\nvt 0.275026 0.592542\nvt 0.304313 0.593319\nvt 0.304944 0.577774\nvt 0.339758 0.558787\nvt 0.339758 0.518209\nvt 0.350517 0.558787\nvt 0.339758 0.581756\nvt 0.350390 0.583314\nvt 0.361276 0.558787\nvt 0.361022 0.584872\nvt 0.372035 0.558787\nvt 0.371654 0.586430\nvt 0.400373 0.586528\nvt 0.399546 0.611267\nvt 0.432397 0.611212\nvt 0.432006 0.630923\nvt 0.442660 0.629624\nvt 0.442632 0.647816\nvt 0.453490 0.647466\nvt 0.452282 0.681982\nvt 0.440697 0.695948\nvt 0.429131 0.695948\nvt 0.396741 0.695948\nvt 0.368358 0.681982\nvt 0.358807 0.681982\nvt 0.349256 0.681982\nvt 0.339704 0.681982\nvt 0.305596 0.681982\nvt 0.275026 0.681982\nvt 0.244456 0.681982\nvt 0.210348 0.681982\nvt 0.201534 0.645504\nvt 0.190466 0.628766\nvt 0.180241 0.630615\nvt 0.179191 0.611137\nvt 0.178398 0.586430\nvt 0.189030 0.584872\nvt 0.200608 0.604731\nvt 0.210917 0.625068\nvt 0.245051 0.618358\nvt 0.275026 0.617894\nvt 0.305001 0.618358\nvt 0.339136 0.625068\nvt 0.338265 0.644520\nvt 0.305738 0.640337\nvt 0.275026 0.640023\nvt 0.244314 0.640337\nvt 0.211787 0.644520\nvt 0.200691 0.626917\nvt 0.189899 0.607934\nvt 0.348518 0.645504\nvt 0.349361 0.626917\nvt 0.349444 0.604731\nvt 0.338735 0.601529\nvt 0.360153 0.607934\nvt 0.359586 0.628766\nvt 0.358772 0.646489\nvt 0.369025 0.647473\nvt 0.369811 0.630615\nvt 0.370861 0.611137\nvt 0.398747 0.630813\nvt 0.431775 0.648166\nvt 0.440789 0.681982\nvt 0.429296 0.681982\nvt 0.396385 0.681982\nvt 0.398110 0.647828\nvt 0.464347 0.647116\nvt 0.463969 0.627025\nvt 0.453315 0.628325\nvt 0.443631 0.608108\nvt 0.433295 0.586326\nvt 0.400825 0.558787\nvt 0.372416 0.518209\nvt 0.361530 0.518209\nvt 0.350644 0.518209\nvt 0.401277 0.518209\nvt 0.434356 0.518209\nvt 0.433826 0.558787\nvt 0.445388 0.518209\nvt 0.445139 0.558787\nvt 0.456420 0.518209\nvt 0.456453 0.558787\nvt 0.467452 0.518209\nvt 0.467767 0.558787\nvt 0.501550 0.558787\nvt 0.501880 0.518209\nvt 0.528663 0.558787\nvt 0.528663 0.581187\nvt 0.501220 0.580220\nvt 0.528663 0.597749\nvt 0.502425 0.597915\nvt 0.466100 0.601900\nvt 0.454866 0.605004\nvt 0.444891 0.584998\nvt 0.456486 0.583671\nvt 0.468082 0.582343\nvt 0.021389 0.597749\nvt 0.048832 0.580220\nvt 0.021389 0.581187\nvt 0.048502 0.558787\nvt 0.021389 0.558787\nvt 0.048172 0.518209\nvt 0.021389 0.518209\nvt 0.528663 0.518209\nvt 0.082600 0.518209\nvt 0.082285 0.558787\nvt 0.093599 0.558787\nvt 0.093632 0.518209\nvt 0.104664 0.518209\nvt 0.104913 0.558787\nvt 0.105161 0.584998\nvt 0.021389 0.681982\nvt 0.049202 0.645551\nvt 0.596890 0.209153\nvt 0.571220 0.208718\nvt 0.202267 0.502404\nvt 0.233770 0.486411\nvt 0.232654 0.502404\nvt 0.202909 0.486411\nvt 0.177568 0.502404\nvt 0.177732 0.486411\nvt 0.148485 0.502404\nvt 0.147661 0.486411\nvt 0.115413 0.502404\nvt 0.115912 0.486411\nvt 0.145671 0.451602\nvt 0.115318 0.451587\nvt 0.145484 0.438137\nvt 0.115876 0.435997\nvt 0.145481 0.425066\nvt 0.116928 0.420335\nvt 0.146296 0.415388\nvt 0.119077 0.406326\nvt 0.146942 0.399881\nvt 0.119417 0.394033\nvt 0.148052 0.374644\nvt 0.119736 0.373770\nvt 0.151635 0.330827\nvt 0.121439 0.330827\nvt 0.154256 0.289237\nvt 0.123711 0.289237\nvt 0.154944 0.257872\nvt 0.124300 0.255416\nvt 0.154294 0.240409\nvt 0.124083 0.237756\nvt 0.153634 0.223768\nvt 0.123522 0.221226\nvt 0.151734 0.204911\nvt 0.122778 0.206216\nvt 0.150750 0.165606\nvt 0.122869 0.165606\nvt 0.150394 0.124516\nvt 0.122479 0.124516\nvt 0.149574 0.091528\nvt 0.120849 0.099164\nvt 0.148905 0.064733\nvt 0.121397 0.070962\nvt 0.149867 0.042155\nvt 0.121761 0.042155\nvt 0.152232 0.017017\nvt 0.120945 0.017017\nvt 0.152532 0.005452\nvt 0.121673 0.005452\nvt 0.595130 0.147426\nvt 0.590794 0.175078\nvt 0.618958 0.170488\nvt 0.565748 0.169239\nvt 0.551805 0.151424\nvt 0.551880 0.136193\nvt 0.564245 0.123811\nvt 0.219274 0.017017\nvt 0.220349 0.005452\nvt 0.238118 0.005452\nvt 0.200804 0.017017\nvt 0.201307 0.005452\nvt 0.179560 0.017017\nvt 0.179453 0.005452\nvt 0.178761 0.044294\nvt 0.200352 0.046968\nvt 0.219910 0.043759\nvt 0.238730 0.017017\nvt 0.266107 0.005452\nvt 0.266107 0.017017\nvt 0.238454 0.042155\nvt 0.265787 0.042155\nvt 0.238959 0.055818\nvt 0.265660 0.061564\nvt 0.237029 0.081157\nvt 0.265521 0.084612\nvt 0.047472 0.056462\nvt 0.018685 0.083405\nvt 0.018824 0.059244\nvt 0.047114 0.081762\nvt 0.018676 0.124516\nvt 0.047771 0.124516\nvt 0.070598 0.084544\nvt 0.071091 0.124516\nvt 0.092453 0.088122\nvt 0.070867 0.063295\nvt 0.070210 0.042155\nvt 0.095603 0.042155\nvt 0.095076 0.017017\nvt 0.070864 0.017017\nvt 0.046596 0.042155\nvt 0.018951 0.042155\nvt 0.047691 0.017017\nvt 0.019271 0.017017\nvt 0.048010 0.005452\nvt 0.070931 0.005452\nvt 0.095809 0.005452\nvt 0.630519 0.134806\nvt 0.630883 0.152602\nvt 0.618415 0.122289\nvt 0.590184 0.119537\nvt 0.019271 0.005452\nvt 0.099991 0.124516\nvt 0.071516 0.165606\nvt 0.048337 0.165606\nvt 0.048076 0.204564\nvt 0.071320 0.204426\nvt 0.099204 0.165606\nvt 0.100575 0.204962\nvt 0.071151 0.218940\nvt 0.047851 0.219039\nvt 0.047562 0.235132\nvt 0.070935 0.235090\nvt 0.100733 0.219657\nvt 0.100293 0.236033\nvt 0.070976 0.252640\nvt 0.047617 0.252329\nvt 0.048062 0.289237\nvt 0.069615 0.289237\nvt 0.100458 0.253785\nvt 0.101008 0.289237\nvt 0.068338 0.330827\nvt 0.046246 0.330827\nvt 0.041383 0.368221\nvt 0.061609 0.372815\nvt 0.098848 0.330827\nvt 0.092553 0.373451\nvt 0.058648 0.382157\nvt 0.038683 0.375541\nvt 0.035635 0.381827\nvt 0.055705 0.390015\nvt 0.014029 0.383337\nvt 0.014029 0.372483\nvt 0.511902 0.381827\nvt 0.533509 0.372483\nvt 0.533509 0.383337\nvt 0.531017 0.368418\nvt 0.508855 0.375541\nvt 0.529300 0.364740\nvt 0.506155 0.368221\nvt 0.528267 0.363330\nvt 0.501291 0.330827\nvt 0.528267 0.330827\nvt 0.499476 0.289237\nvt 0.528267 0.289237\nvt 0.499921 0.252329\nvt 0.528267 0.251553\nvt 0.499976 0.235132\nvt 0.528267 0.228240\nvt 0.499687 0.219039\nvt 0.528267 0.215287\nvt 0.499462 0.204564\nvt 0.528494 0.202206\nvt 0.499201 0.165606\nvt 0.528613 0.165606\nvt 0.499767 0.124516\nvt 0.528862 0.124516\nvt 0.500424 0.081762\nvt 0.528852 0.083405\nvt 0.500066 0.056462\nvt 0.528714 0.059244\nvt 0.528586 0.042155\nvt 0.500942 0.042155\nvt 0.499847 0.017017\nvt 0.476674 0.017017\nvt 0.476607 0.005452\nvt 0.451729 0.005452\nvt 0.452462 0.017017\nvt 0.425865 0.005452\nvt 0.426593 0.017017\nvt 0.395006 0.005452\nvt 0.395306 0.017017\nvt 0.425777 0.042155\nvt 0.451935 0.042155\nvt 0.477328 0.042155\nvt 0.476671 0.063295\nvt 0.476940 0.084544\nvt 0.476447 0.124516\nvt 0.476022 0.165606\nvt 0.447546 0.124516\nvt 0.448334 0.165606\nvt 0.425059 0.124516\nvt 0.424669 0.165606\nvt 0.397144 0.124516\nvt 0.396788 0.165606\nvt 0.424760 0.206216\nvt 0.446963 0.204962\nvt 0.476218 0.204426\nvt 0.476386 0.218940\nvt 0.446805 0.219657\nvt 0.424016 0.221226\nvt 0.395804 0.204911\nvt 0.393904 0.223768\nvt 0.423455 0.237756\nvt 0.447245 0.236033\nvt 0.476603 0.235090\nvt 0.476562 0.252640\nvt 0.477923 0.289237\nvt 0.447080 0.253785\nvt 0.446530 0.289237\nvt 0.423238 0.255416\nvt 0.423826 0.289237\nvt 0.392594 0.257872\nvt 0.393282 0.289237\nvt 0.426099 0.330827\nvt 0.448690 0.330827\nvt 0.479200 0.330827\nvt 0.485929 0.372815\nvt 0.454984 0.373451\nvt 0.427802 0.373770\nvt 0.395903 0.330827\nvt 0.399486 0.374644\nvt 0.428121 0.394033\nvt 0.458627 0.386368\nvt 0.488890 0.382157\nvt 0.491833 0.390015\nvt 0.460701 0.393021\nvt 0.428461 0.406326\nvt 0.400596 0.399881\nvt 0.401242 0.415388\nvt 0.430610 0.420335\nvt 0.464993 0.409557\nvt 0.492055 0.402154\nvt 0.533509 0.396157\nvt 0.014029 0.396157\nvt 0.055483 0.402154\nvt 0.014029 0.407444\nvt 0.533509 0.407444\nvt 0.495920 0.426315\nvt 0.467046 0.429856\nvt 0.431662 0.435997\nvt 0.466164 0.450113\nvt 0.496005 0.447851\nvt 0.533509 0.428028\nvt 0.014029 0.428028\nvt 0.051618 0.426315\nvt 0.082545 0.409557\nvt 0.086837 0.393021\nvt 0.088911 0.386368\nvt 0.080492 0.429856\nvt 0.051533 0.447851\nvt 0.014029 0.448725\nvt 0.014029 0.486411\nvt 0.533509 0.486411\nvt 0.533509 0.448725\nvt 0.495792 0.486411\nvt 0.533509 0.502404\nvt 0.494481 0.502404\nvt 0.464350 0.486411\nvt 0.465065 0.502404\nvt 0.431626 0.486411\nvt 0.432124 0.502404\nvt 0.399877 0.486411\nvt 0.399053 0.502404\nvt 0.369806 0.486411\nvt 0.369970 0.502404\nvt 0.344629 0.486411\nvt 0.345271 0.502404\nvt 0.313768 0.486411\nvt 0.314884 0.502404\nvt 0.273769 0.486411\nvt 0.273769 0.502404\nvt 0.621219 0.209044\nvt 0.621219 0.235907\nvt 0.650507 0.236000\nvt 0.645548 0.209153\nvt 0.682756 0.236121\nvt 0.671218 0.208718\nvt 0.684092 0.283485\nvt 0.652091 0.283245\nvt 0.686870 0.319689\nvt 0.654864 0.315997\nvt 0.686737 0.346732\nvt 0.654758 0.344170\nvt 0.685568 0.377817\nvt 0.653291 0.375115\nvt 0.651242 0.416356\nvt 0.621219 0.376026\nvt 0.621190 0.416356\nvt 0.591606 0.416356\nvt 0.589147 0.375115\nvt 0.621219 0.344650\nvt 0.621219 0.314904\nvt 0.587574 0.315997\nvt 0.621219 0.283015\nvt 0.273769 0.450031\nvt 0.234067 0.449668\nvt 0.205123 0.452589\nvt 0.176053 0.452945\nvt 0.176128 0.439649\nvt 0.175951 0.426729\nvt 0.175630 0.416831\nvt 0.175332 0.401008\nvt 0.174855 0.375533\nvt 0.175536 0.330827\nvt 0.176088 0.289237\nvt 0.176159 0.258637\nvt 0.177150 0.246189\nvt 0.177981 0.236970\nvt 0.179815 0.213704\nvt 0.175244 0.196549\nvt 0.176119 0.165606\nvt 0.177429 0.124516\nvt 0.176202 0.098264\nvt 0.175870 0.068995\nvt 0.201108 0.084044\nvt 0.217801 0.063127\nvt 0.217603 0.082473\nvt 0.217768 0.124516\nvt 0.197581 0.124516\nvt 0.197897 0.165606\nvt 0.216931 0.165606\nvt 0.238987 0.124516\nvt 0.265512 0.124516\nvt 0.240265 0.165606\nvt 0.265761 0.165606\nvt 0.018925 0.165606\nvt 0.019044 0.202206\nvt 0.019271 0.215287\nvt 0.019271 0.228240\nvt 0.019271 0.251553\nvt 0.019271 0.289237\nvt 0.019271 0.330827\nvt 0.019271 0.363330\nvt 0.018237 0.364740\nvt 0.016521 0.368418\nvt 0.273769 0.385672\nvt 0.271918 0.373988\nvt 0.273769 0.377163\nvt 0.249539 0.385380\nvt 0.273769 0.403880\nvt 0.230342 0.405428\nvt 0.273769 0.422947\nvt 0.230758 0.423415\nvt 0.202517 0.425039\nvt 0.199296 0.413905\nvt 0.201140 0.399330\nvt 0.197828 0.375938\nvt 0.197848 0.330827\nvt 0.199052 0.289237\nvt 0.200105 0.258812\nvt 0.199864 0.238952\nvt 0.199536 0.225842\nvt 0.199060 0.206952\nvt 0.197262 0.193427\nvt 0.217658 0.192665\nvt 0.241839 0.193997\nvt 0.265880 0.199071\nvt 0.238809 0.210934\nvt 0.266107 0.212752\nvt 0.241143 0.227371\nvt 0.266107 0.226942\nvt 0.242852 0.242122\nvt 0.266107 0.251860\nvt 0.243972 0.254981\nvt 0.243864 0.289237\nvt 0.266107 0.289237\nvt 0.242630 0.330827\nvt 0.266107 0.330827\nvt 0.243191 0.370330\nvt 0.266107 0.363330\nvt 0.245807 0.379151\nvt 0.268754 0.369805\nvt 0.226433 0.393754\nvt 0.222533 0.375606\nvt 0.221002 0.330827\nvt 0.220913 0.289237\nvt 0.221945 0.257558\nvt 0.221523 0.239868\nvt 0.220832 0.220315\nvt 0.218450 0.206170\nvt 0.204835 0.439882\nvt 0.232213 0.437693\nvt 0.273769 0.436491\nvt 0.315325 0.437693\nvt 0.316780 0.423415\nvt 0.317196 0.405428\nvt 0.297999 0.385380\nvt 0.275620 0.373988\nvt 0.278784 0.369805\nvt 0.301730 0.379151\nvt 0.321104 0.393754\nvt 0.304347 0.370330\nvt 0.281431 0.363330\nvt 0.281431 0.330827\nvt 0.304908 0.330827\nvt 0.281431 0.289237\nvt 0.303674 0.289237\nvt 0.281431 0.251860\nvt 0.303566 0.254981\nvt 0.304685 0.242122\nvt 0.281431 0.226942\nvt 0.306395 0.227371\nvt 0.281431 0.212752\nvt 0.308728 0.210934\nvt 0.281658 0.199071\nvt 0.305698 0.193997\nvt 0.281777 0.165606\nvt 0.307273 0.165606\nvt 0.282026 0.124516\nvt 0.308550 0.124516\nvt 0.282016 0.084612\nvt 0.310509 0.081157\nvt 0.281878 0.061564\nvt 0.308579 0.055818\nvt 0.281750 0.042155\nvt 0.309083 0.042155\nvt 0.281431 0.017017\nvt 0.528267 0.017017\nvt 0.499528 0.005452\nvt 0.528267 0.005452\nvt 0.328263 0.017017\nvt 0.309419 0.005452\nvt 0.327189 0.005452\nvt 0.308808 0.017017\nvt 0.327628 0.043759\nvt 0.329737 0.063127\nvt 0.329934 0.082473\nvt 0.329770 0.124516\nvt 0.330606 0.165606\nvt 0.329880 0.192665\nvt 0.329088 0.206170\nvt 0.326706 0.220315\nvt 0.326015 0.239868\nvt 0.325593 0.257558\nvt 0.326625 0.289237\nvt 0.326536 0.330827\nvt 0.325004 0.375606\nvt 0.346397 0.399330\nvt 0.348242 0.413905\nvt 0.345021 0.425039\nvt 0.342703 0.439882\nvt 0.342415 0.452589\nvt 0.313471 0.449668\nvt 0.371484 0.452945\nvt 0.371410 0.439649\nvt 0.371586 0.426729\nvt 0.402054 0.438137\nvt 0.401867 0.451602\nvt 0.432220 0.451587\nvt 0.402057 0.425066\nvt 0.371908 0.416831\nvt 0.372206 0.401008\nvt 0.372683 0.375533\nvt 0.349710 0.375938\nvt 0.349690 0.330827\nvt 0.348486 0.289237\nvt 0.347433 0.258812\nvt 0.347674 0.238952\nvt 0.348001 0.225842\nvt 0.348478 0.206952\nvt 0.350276 0.193427\nvt 0.349641 0.165606\nvt 0.349957 0.124516\nvt 0.346430 0.084044\nvt 0.347186 0.046968\nvt 0.346734 0.017017\nvt 0.346231 0.005452\nvt 0.367978 0.017017\nvt 0.368085 0.005452\nvt 0.368777 0.044294\nvt 0.371668 0.068995\nvt 0.398633 0.064733\nvt 0.397964 0.091528\nvt 0.426689 0.099164\nvt 0.426140 0.070962\nvt 0.397671 0.042155\nvt 0.455085 0.088122\nvt 0.371336 0.098264\nvt 0.370109 0.124516\nvt 0.371419 0.165606\nvt 0.372294 0.196549\nvt 0.367723 0.213704\nvt 0.393244 0.240409\nvt 0.369557 0.236970\nvt 0.370387 0.246189\nvt 0.371379 0.258637\nvt 0.371450 0.289237\nvt 0.372002 0.330827\nvt 0.281431 0.005452\nvt 0.014029 0.502404\nvt 0.051746 0.486411\nvt 0.081374 0.450113\nvt 0.083187 0.486411\nvt 0.053057 0.502404\nvt 0.082473 0.502404\nvt 0.086224 0.695948\nvt 0.097789 0.695948\nvt 0.048683 0.832623\nvt 0.083562 0.821175\nvt 0.096337 0.809090\nvt 0.095238 0.900298\nvt 0.096559 0.867162\nvt 0.107585 0.836775\nvt 0.120209 0.824469\nvt 0.147062 0.824632\nvt 0.176766 0.823653\nvt 0.185936 0.835280\nvt 0.196591 0.861910\nvt 0.198906 0.895443\nvt 0.202164 0.924582\nvt 0.203667 0.959633\nvt 0.217668 0.959633\nvt 0.095060 0.966086\nvt 0.103503 0.936981\nvt 0.107595 0.899740\nvt 0.108256 0.868346\nvt 0.119952 0.838094\nvt 0.145625 0.838094\nvt 0.175666 0.838094\nvt 0.186128 0.863078\nvt 0.187286 0.895343\nvt 0.188915 0.924182\nvt 0.175666 0.923783\nvt 0.175666 0.895244\nvt 0.578039 0.606920\nvt 0.593411 0.586010\nvt 0.578039 0.586010\nvt 0.593411 0.606920\nvt 0.578039 0.629309\nvt 0.593411 0.629309\nvt 0.611196 0.606920\nvt 0.611196 0.629309\nvt 0.629763 0.606920\nvt 0.629763 0.629309\nvt 0.664468 0.606920\nvt 0.664468 0.629309\nvt 0.710904 0.606920\nvt 0.710904 0.586010\nvt 0.744670 0.586010\nvt 0.744670 0.606920\nvt 0.710904 0.629309\nvt 0.744670 0.629309\nvt 0.768916 0.606920\nvt 0.769679 0.629309\nvt 0.744670 0.653385\nvt 0.758540 0.653385\nvt 0.770986 0.653385\nvt 0.784899 0.653385\nvt 0.771213 0.674428\nvt 0.787570 0.674428\nvt 0.771308 0.694038\nvt 0.757911 0.694038\nvt 0.759916 0.715099\nvt 0.744670 0.715099\nvt 0.744670 0.747603\nvt 0.710904 0.747603\nvt 0.710904 0.715099\nvt 0.744670 0.694038\nvt 0.757644 0.674428\nvt 0.744670 0.674428\nvt 0.710904 0.674428\nvt 0.710904 0.653385\nvt 0.664468 0.653385\nvt 0.629763 0.653385\nvt 0.611196 0.653385\nvt 0.593411 0.653385\nvt 0.578039 0.653385\nvt 0.107506 0.966132\nvt 0.119952 0.935641\nvt 0.119952 0.966178\nvt 0.119952 0.899182\nvt 0.119952 0.869530\nvt 0.578039 0.694038\nvt 0.578039 0.715099\nvt 0.593411 0.694038\nvt 0.593411 0.715099\nvt 0.578039 0.747603\nvt 0.593411 0.747603\nvt 0.593411 0.515079\nvt 0.578039 0.515079\nvt 0.578039 0.545007\nvt 0.593411 0.545007\nvt 0.593411 0.566459\nvt 0.578039 0.566459\nvt 0.175666 0.864246\nvt 0.611196 0.566459\nvt 0.611196 0.545007\nvt 0.629763 0.545007\nvt 0.629763 0.566459\nvt 0.611196 0.586010\nvt 0.629763 0.586010\nvt 0.664468 0.586010\nvt 0.710904 0.566459\nvt 0.744670 0.566459\nvt 0.768282 0.566459\nvt 0.768194 0.586010\nvt 0.800728 0.586010\nvt 0.800728 0.606920\nvt 0.800728 0.629035\nvt 0.800728 0.653385\nvt 0.800728 0.674428\nvt 0.787625 0.694038\nvt 0.771967 0.715099\nvt 0.773537 0.747603\nvt 0.772503 0.515079\nvt 0.744670 0.515079\nvt 0.744670 0.545007\nvt 0.710904 0.545007\nvt 0.710904 0.515079\nvt 0.664468 0.545007\nvt 0.664468 0.515079\nvt 0.664468 0.747603\nvt 0.664468 0.715099\nvt 0.710904 0.694038\nvt 0.664468 0.694038\nvt 0.629763 0.715099\nvt 0.629763 0.747603\nvt 0.611196 0.747603\nvt 0.611196 0.715099\nvt 0.629763 0.694038\nvt 0.664468 0.674428\nvt 0.629763 0.674428\nvt 0.611196 0.674428\nvt 0.593411 0.674428\nvt 0.578039 0.674428\nvt 0.611196 0.694038\nvt 0.611196 0.515079\nvt 0.629763 0.515079\nvt 0.664468 0.566459\nvt 0.769841 0.545007\nvt 0.800728 0.545007\nvt 0.800728 0.566459\nvt 0.834866 0.566459\nvt 0.834866 0.586010\nvt 0.834866 0.606920\nvt 0.834866 0.630234\nvt 0.834866 0.653385\nvt 0.834866 0.674428\nvt 0.800728 0.694038\nvt 0.834866 0.694038\nvt 0.800728 0.715099\nvt 0.834866 0.715099\nvt 0.800728 0.747603\nvt 0.800728 0.515079\nvt 0.834866 0.515079\nvt 0.834866 0.545007\nvt 0.877873 0.545007\nvt 0.877873 0.566459\nvt 0.877873 0.586010\nvt 0.877873 0.606920\nvt 0.877873 0.629832\nvt 0.877873 0.653385\nvt 0.877873 0.674428\nvt 0.877873 0.694038\nvt 0.877873 0.715099\nvt 0.834866 0.747603\nvt 0.877873 0.747603\nvt 0.877873 0.515079\nvt 0.914315 0.515079\nvt 0.914315 0.545007\nvt 0.914315 0.566459\nvt 0.914315 0.586010\nvt 0.914315 0.606920\nvt 0.914315 0.629586\nvt 0.914315 0.653385\nvt 0.914315 0.674428\nvt 0.914315 0.694038\nvt 0.914315 0.715099\nvt 0.914315 0.747603\nvt 0.948307 0.715099\nvt 0.948307 0.747603\nvt 0.948307 0.515079\nvt 0.948307 0.545007\nvt 0.948307 0.566459\nvt 0.948307 0.586010\nvt 0.948307 0.606920\nvt 0.948307 0.629268\nvt 0.948307 0.653385\nvt 0.948307 0.674428\nvt 0.948307 0.694038\nvt 0.963121 0.674428\nvt 0.963121 0.653385\nvt 0.963121 0.629200\nvt 0.986738 0.629087\nvt 0.986738 0.653385\nvt 0.986738 0.674428\nvt 0.963121 0.694038\nvt 0.986738 0.694038\nvt 0.986738 0.606920\nvt 0.963121 0.606920\nvt 0.986738 0.586010\nvt 0.963121 0.586010\nvt 0.986738 0.566459\nvt 0.963121 0.566459\nvt 0.986738 0.545007\nvt 0.986738 0.715099\nvt 0.963121 0.715099\nvt 0.963121 0.747603\nvt 0.986738 0.747603\nvt 0.963121 0.515079\nvt 0.963121 0.545007\nvt 0.986738 0.515079\nvt 0.785828 0.715099\nvt 0.189667 0.959633\nvt 0.175666 0.959633\nvt 0.061418 0.991042\nvt 0.057549 0.993789\nvt 0.598626 0.493283\nvt 0.603688 0.472104\nvt 0.610991 0.465076\nvt 0.734711 0.317324\nvt 0.666689 0.354523\nvt 0.652530 0.320049\nvt 0.772191 0.401171\nvt 0.810021 0.282025\nvt 0.834136 0.352155\nvt 0.872898 0.254110\nvt 0.505646 0.296793\nvt 0.505646 0.266136\nvt 0.560725 0.285820\nvt 0.450566 0.285820\nvt 0.505646 0.322330\nvt 0.452648 0.327475\nvt 0.358761 0.320049\nvt 0.344602 0.354523\nvt 0.383917 0.372843\nvt 0.427811 0.360175\nvt 0.466470 0.356583\nvt 0.505646 0.347118\nvt 0.558643 0.327475\nvt 0.544821 0.356583\nvt 0.583480 0.360175\nvt 0.627374 0.372843\nvt 0.610686 0.421877\nvt 0.680411 0.407492\nvt 0.657500 0.450153\nvt 0.742774 0.436664\nvt 0.804176 0.496119\nvt 0.826246 0.470863\nvt 0.872623 0.427377\nvt 0.916147 0.395120\nvt 0.722249 0.234878\nvt 0.800792 0.134172\nvt 0.797520 0.180770\nvt 0.727736 0.169140\nvt 0.668995 0.233054\nvt 0.727511 0.300817\nvt 0.656211 0.289028\nvt 0.796709 0.233205\nvt 0.805791 0.269273\nvt 0.965840 0.367441\nvt 0.916400 0.318345\nvt 0.964869 0.291063\nvt 0.995908 0.337609\nvt 0.045451 0.367441\nvt 0.015383 0.337609\nvt 0.046422 0.291063\nvt 0.094891 0.318345\nvt 0.138393 0.254110\nvt 0.086385 0.224183\nvt 0.924906 0.224183\nvt 0.276581 0.317325\nvt 0.239100 0.401171\nvt 0.276580 0.317325\nvt 0.201270 0.282025\nvt 0.177155 0.352155\nvt 0.095144 0.395120\nvt 0.138668 0.427377\nvt 0.185045 0.470863\nvt 0.207115 0.496119\nvt 0.268517 0.436664\nvt 0.330880 0.407492\nvt 0.400605 0.421877\nvt 0.432724 0.404022\nvt 0.469369 0.387000\nvt 0.505646 0.383901\nvt 0.541922 0.387000\nvt 0.578567 0.404022\nvt 0.594904 0.445855\nvt 0.561122 0.429523\nvt 0.576373 0.472080\nvt 0.555161 0.455206\nvt 0.566781 0.494899\nvt 0.544010 0.483640\nvt 0.548635 0.500425\nvt 0.533669 0.499444\nvt 0.532016 0.510646\nvt 0.505646 0.513558\nvt 0.530555 0.515791\nvt 0.505646 0.515176\nvt 0.505646 0.516691\nvt 0.528476 0.522734\nvt 0.548795 0.511793\nvt 0.547850 0.521174\nvt 0.562558 0.515258\nvt 0.565054 0.521027\nvt 0.555388 0.528565\nvt 0.526618 0.534346\nvt 0.505646 0.524086\nvt 0.505646 0.542266\nvt 0.484673 0.534346\nvt 0.482815 0.522734\nvt 0.480736 0.515791\nvt 0.462496 0.511793\nvt 0.463441 0.521174\nvt 0.455903 0.528565\nvt 0.446237 0.521027\nvt 0.448733 0.515258\nvt 0.435670 0.509061\nvt 0.440597 0.507894\nvt 0.444510 0.494899\nvt 0.434918 0.472080\nvt 0.456130 0.455206\nvt 0.450169 0.429523\nvt 0.416387 0.445855\nvt 0.353791 0.450153\nvt 0.242019 0.507164\nvt 0.212698 0.518018\nvt 0.224425 0.587819\nvt 0.287730 0.588077\nvt 0.312553 0.498001\nvt 0.371588 0.511670\nvt 0.384700 0.470926\nvt 0.414384 0.500397\nvt 0.428068 0.509365\nvt 0.430719 0.530276\nvt 0.447693 0.549694\nvt 0.483008 0.556628\nvt 0.482847 0.544765\nvt 0.505646 0.553396\nvt 0.528283 0.556628\nvt 0.505646 0.567988\nvt 0.478951 0.567524\nvt 0.450473 0.577175\nvt 0.443706 0.597918\nvt 0.460933 0.581351\nvt 0.474485 0.575534\nvt 0.483329 0.576642\nvt 0.496841 0.573856\nvt 0.505646 0.574328\nvt 0.514450 0.573856\nvt 0.532340 0.567524\nvt 0.527962 0.576642\nvt 0.525762 0.582541\nvt 0.536806 0.575534\nvt 0.550358 0.581351\nvt 0.533392 0.592543\nvt 0.518612 0.594614\nvt 0.513210 0.582519\nvt 0.505646 0.593855\nvt 0.505646 0.607215\nvt 0.492679 0.594614\nvt 0.498081 0.582519\nvt 0.505646 0.581616\nvt 0.485529 0.582541\nvt 0.477899 0.592543\nvt 0.459824 0.601428\nvt 0.468591 0.618023\nvt 0.474975 0.602070\nvt 0.488245 0.608783\nvt 0.505646 0.624559\nvt 0.486576 0.621934\nvt 0.484983 0.643478\nvt 0.461468 0.632622\nvt 0.449505 0.623619\nvt 0.399939 0.613697\nvt 0.396624 0.561829\nvt 0.408109 0.522782\nvt 0.355938 0.565661\nvt 0.302382 0.644093\nvt 0.349186 0.617239\nvt 0.364746 0.646680\nvt 0.405315 0.643748\nvt 0.437919 0.658457\nvt 0.463951 0.669683\nvt 0.488933 0.661396\nvt 0.505646 0.661795\nvt 0.505646 0.646765\nvt 0.526308 0.643478\nvt 0.524715 0.621934\nvt 0.523046 0.608783\nvt 0.536316 0.602070\nvt 0.551467 0.601428\nvt 0.567585 0.597918\nvt 0.560818 0.577175\nvt 0.563598 0.549694\nvt 0.528444 0.544765\nvt 0.580572 0.530276\nvt 0.575621 0.509061\nvt 0.570694 0.507894\nvt 0.567731 0.508572\nvt 0.564346 0.509396\nvt 0.562436 0.508056\nvt 0.547538 0.506802\nvt 0.564488 0.505387\nvt 0.583223 0.509365\nvt 0.596907 0.500397\nvt 0.626591 0.470926\nvt 0.639703 0.511670\nvt 0.603182 0.522782\nvt 0.614667 0.561829\nvt 0.611352 0.613697\nvt 0.561786 0.623619\nvt 0.549823 0.632622\nvt 0.542700 0.618023\nvt 0.522358 0.661396\nvt 0.505646 0.687833\nvt 0.486414 0.685240\nvt 0.465897 0.687460\nvt 0.456568 0.690830\nvt 0.448859 0.676038\nvt 0.434189 0.675105\nvt 0.406797 0.655968\nvt 0.403776 0.667236\nvt 0.403740 0.669120\nvt 0.437417 0.678965\nvt 0.403270 0.689598\nvt 0.371415 0.674698\nvt 0.368299 0.669437\nvt 0.367243 0.662524\nvt 0.337583 0.669089\nvt 0.270203 0.695579\nvt 0.234039 0.689052\nvt 0.211063 0.660650\nvt 0.181399 0.593806\nvt 0.185585 0.543674\nvt 0.155340 0.582050\nvt 0.138908 0.571234\nvt 0.173114 0.531863\nvt 0.791204 0.040598\nvt 0.741138 0.064226\nvt 0.822926 0.052815\nvt 0.689476 0.043955\nvt 0.691441 0.056586\nvt 0.164039 0.701604\nvt 0.183152 0.682973\nvt 0.189747 0.681908\nvt 0.155052 0.681420\nvt 0.145955 0.695668\nvt 0.131669 0.662195\nvt 0.117628 0.665144\nvt 0.130525 0.618888\nvt 0.116567 0.612671\nvt 0.757672 0.007312\nvt 0.711084 0.012955\nvt 0.691532 0.032394\nvt 0.308723 0.798679\nvt 0.341337 0.722288\nvt 0.351011 0.706055\nvt 0.331087 0.688663\nvt 0.349200 0.687759\nvt 0.362110 0.685226\nvt 0.379203 0.693167\nvt 0.403633 0.694014\nvt 0.428013 0.695668\nvt 0.433979 0.698971\nvt 0.405301 0.701354\nvt 0.379516 0.700061\nvt 0.384740 0.715952\nvt 0.421209 0.714524\nvt 0.447295 0.701406\nvt 0.446285 0.677126\nvt 0.463757 0.710332\nvt 0.486847 0.718063\nvt 0.505646 0.717165\nvt 0.524877 0.685240\nvt 0.545394 0.687460\nvt 0.547340 0.669683\nvt 0.573372 0.658457\nvt 0.605976 0.643748\nvt 0.646545 0.646680\nvt 0.644048 0.662524\nvt 0.604494 0.655968\nvt 0.642992 0.669437\nvt 0.607515 0.667236\nvt 0.607551 0.669120\nvt 0.639876 0.674698\nvt 0.608021 0.689598\nvt 0.573874 0.678965\nvt 0.577102 0.675105\nvt 0.565006 0.677126\nvt 0.583278 0.695668\nvt 0.562432 0.676038\nvt 0.577312 0.698971\nvt 0.607658 0.694014\nvt 0.632088 0.693167\nvt 0.605990 0.701354\nvt 0.563996 0.701406\nvt 0.590082 0.714524\nvt 0.547534 0.710332\nvt 0.584650 0.727034\nvt 0.520932 0.739178\nvt 0.524444 0.718063\nvt 0.505646 0.744289\nvt 0.490359 0.739178\nvt 0.426641 0.727034\nvt 0.387666 0.733506\nvt 0.381574 0.762465\nvt 0.380852 0.804903\nvt 0.491037 0.763646\nvt 0.505646 0.764375\nvt 0.505646 0.805456\nvt 0.482509 0.805051\nvt 0.457733 0.855102\nvt 0.505646 0.853915\nvt 0.528782 0.805051\nvt 0.520254 0.763646\nvt 0.629717 0.762465\nvt 0.630439 0.804903\nvt 0.553558 0.855102\nvt 0.570037 0.912512\nvt 0.505646 0.911465\nvt 0.505646 0.982999\nvt 0.441254 0.912512\nvt 0.363815 0.978479\nvt 0.604644 0.219026\nvt 0.539295 0.164895\nvt 0.510878 0.205979\nvt 0.617877 0.158535\nvt 0.583765 0.263076\nvt 0.647476 0.978479\nvt 0.652748 0.906303\nvt 0.633189 0.849079\nvt 0.702568 0.798679\nvt 0.669954 0.722288\nvt 0.623625 0.733506\nvt 0.626551 0.715952\nvt 0.631775 0.700061\nvt 0.649181 0.685226\nvt 0.662091 0.687759\nvt 0.660281 0.706055\nvt 0.741088 0.695579\nvt 0.680204 0.688663\nvt 0.673708 0.669089\nvt 0.708909 0.644093\nvt 0.662105 0.617239\nvt 0.655353 0.565661\nvt 0.698738 0.498001\nvt 0.769272 0.507164\nvt 0.723561 0.588077\nvt 0.777252 0.689052\nvt 0.821544 0.681908\nvt 0.731505 0.841400\nvt 0.753851 0.873594\nvt 0.588114 0.084389\nvt 0.637276 0.114850\nvt 0.674906 0.129001\nvt 0.674252 0.181978\nvt 0.571174 0.123925\nvt 0.748826 0.909467\nvt 0.716267 0.134014\nvt 0.856239 0.681420\nvt 0.865336 0.695668\nvt 0.847252 0.701604\nvt 0.879622 0.662195\nvt 0.893663 0.665144\nvt 0.880766 0.618888\nvt 0.855951 0.582050\nvt 0.829892 0.593806\nvt 0.828139 0.682973\nvt 0.800228 0.660650\nvt 0.786866 0.587819\nvt 0.798593 0.518018\nvt 0.838177 0.531863\nvt 0.825706 0.543674\nvt 0.872383 0.571234\nvt 0.828090 0.082222\nvt 0.855034 0.058733\nvt 0.894724 0.612671\nvt 0.279786 0.841400\nvt 0.257440 0.873594\nvt 0.378102 0.849079\nvt 0.358543 0.906303\nvt 0.262465 0.909467\nvt 0.554723 0.690830\nvt 0.475618 0.417480\nvt 0.505646 0.418415\nvt 0.535673 0.417480\nvt 0.532561 0.444392\nvt 0.505646 0.442465\nvt 0.478730 0.444392\nvt 0.480714 0.470873\nvt 0.505646 0.474865\nvt 0.530577 0.470873\nvt 0.530468 0.481544\nvt 0.505646 0.482398\nvt 0.505646 0.499009\nvt 0.477622 0.499444\nvt 0.480823 0.481544\nvt 0.467281 0.483640\nvt 0.462656 0.500425\nvt 0.479275 0.510646\nvt 0.463753 0.506802\nvt 0.448855 0.508056\nvt 0.446945 0.509396\nvt 0.443560 0.508572\nvt 0.446803 0.505387\nvt -4.085537 113.649086\nvt -4.706486 112.579254\nvt -4.470658 112.592827\nvn -0.253945 0.750999 0.609455\nvn -0.306619 0.533250 0.788415\nvn -0.309854 0.686026 0.658254\nvn -0.086215 0.449202 0.889248\nvn 0.270058 0.706626 0.653981\nvn -0.279092 0.889553 0.361583\nvn -0.877041 0.424635 0.224647\nvn -0.537675 0.591845 0.600482\nvn -0.174017 0.883938 0.433943\nvn 0.182592 0.831996 -0.523850\nvn 0.308054 0.920927 -0.238624\nvn 0.550218 0.830683 0.084628\nvn 0.181341 0.833247 0.522263\nvn 0.113193 0.638539 0.761193\nvn -0.163823 0.544572 0.822535\nvn -0.258248 0.674276 0.691794\nvn -0.257332 0.677358 0.689138\nvn -0.033753 0.891903 0.450911\nvn 0.000031 0.533799 -0.845576\nvn -0.232582 0.955290 0.182501\nvn -0.490005 0.820673 -0.293893\nvn -0.098270 0.917020 -0.386486\nvn -0.016785 0.999664 0.019684\nvn 0.160009 0.980804 -0.111209\nvn 0.186438 0.824488 -0.534227\nvn 0.542955 0.451460 -0.708029\nvn 0.829493 0.500229 -0.248329\nvn 0.093173 0.990051 0.105258\nvn 0.032868 0.998199 0.049898\nvn 0.488388 0.803125 0.341166\nvn -0.211676 0.931028 0.297189\nvn 0.210395 0.790277 0.575457\nvn 0.712149 0.663320 0.229774\nvn 0.732902 0.665609 0.140538\nvn 0.334208 0.925352 0.178808\nvn 0.441847 0.831568 -0.336497\nvn 0.698843 0.566149 -0.437117\nvn 0.468398 0.440596 -0.765770\nvn 0.533341 0.361034 -0.764946\nvn 0.572131 0.746727 -0.339091\nvn 0.715690 0.106357 -0.690237\nvn 0.817805 0.449995 -0.358654\nvn 0.429182 0.886196 0.174474\nvn 0.175512 0.820338 0.544237\nvn -0.022217 0.585009 0.810694\nvn -0.020844 0.348949 0.936888\nvn -0.200140 0.405408 0.891934\nvn -0.309763 0.446516 0.839412\nvn -0.299112 0.506760 0.808496\nvn -0.421583 0.533982 0.732871\nvn -0.197394 0.687124 0.699179\nvn -0.584613 0.632771 0.507706\nvn -0.209967 0.751427 0.625477\nvn -0.488754 0.826777 0.278390\nvn -0.607013 0.792566 -0.057436\nvn -0.047029 0.932646 0.357677\nvn -0.074252 0.997162 0.010895\nvn -0.160375 0.986908 0.016419\nvn -0.068575 0.978607 -0.193793\nvn -0.490951 0.488327 -0.721427\nvn 0.028993 0.446791 -0.894162\nvn 0.309763 0.401502 -0.861873\nvn 0.482192 0.416028 -0.770928\nvn 0.386090 0.210425 -0.898129\nvn 0.509171 -0.064608 -0.858211\nvn 0.668477 -0.179937 -0.721610\nvn 0.731132 -0.354869 -0.582629\nvn 0.917142 -0.327219 -0.227424\nvn 0.736351 -0.043214 -0.675161\nvn 0.886898 0.160924 -0.432997\nvn 0.942656 0.186193 0.276955\nvn 0.721274 0.584185 0.372082\nvn 0.317972 0.715842 0.621601\nvn 0.085086 0.558428 0.825159\nvn 0.218268 0.244026 0.944853\nvn 0.448408 0.142705 0.882351\nvn 0.138981 0.151158 0.978668\nvn -0.145054 0.225776 0.963286\nvn -0.328898 0.298715 0.895871\nvn -0.460311 0.402997 0.790979\nvn -0.562120 0.359416 0.744865\nvn -0.535478 0.532090 0.655812\nvn -0.558245 0.768273 0.313150\nvn -0.712516 0.643757 -0.279000\nvn -0.673788 0.663594 -0.324992\nvn -0.275521 0.554521 -0.785211\nvn -0.180609 0.839930 -0.511704\nvn 0.059603 0.412488 -0.908994\nvn 0.106632 0.403394 -0.908750\nvn 0.318308 0.328227 -0.889309\nvn 0.330515 0.153417 -0.931211\nvn 0.402722 -0.039979 -0.914426\nvn 0.632710 -0.270394 -0.725608\nvn 0.783044 -0.244026 -0.572069\nvn 0.779168 -0.246284 -0.576373\nvn 0.916135 -0.274850 -0.291757\nvn 0.621265 -0.097842 -0.777429\nvn 0.524827 0.158849 -0.836207\nvn 0.900662 0.146855 -0.408887\nvn 0.971831 0.058321 0.228278\nvn 0.636525 0.009308 0.771172\nvn 0.620533 0.103702 0.777245\nvn 0.477493 0.365429 0.799005\nvn 0.367901 0.094699 0.925016\nvn 0.306253 0.341746 0.888455\nvn 0.339763 0.123814 0.932310\nvn 0.423048 0.053194 0.904508\nvn 0.486038 0.088839 0.869381\nvn 0.505020 0.085055 0.858882\nvn 0.244942 0.057161 0.967834\nvn -0.101413 0.107608 0.988983\nvn -0.325816 0.191900 0.925718\nvn -0.519883 0.239937 0.819819\nvn -0.713309 0.200110 0.671651\nvn -0.442854 0.258400 0.858516\nvn -0.875088 0.130161 0.466109\nvn -0.927915 0.046693 0.369823\nvn -0.928129 0.045412 0.369396\nvn -0.915677 0.075076 0.394757\nvn -0.989349 0.000427 0.145482\nvn -0.987854 0.006653 0.155187\nvn -0.951231 -0.085665 -0.296243\nvn -0.959258 -0.085208 -0.269326\nvn -0.701437 -0.192816 -0.686117\nvn -0.782708 -0.123661 -0.609943\nvn -0.547960 -0.178014 -0.817316\nvn -0.360210 -0.302011 -0.882626\nvn -0.434858 -0.292032 -0.851802\nvn -0.259346 -0.294015 -0.919919\nvn -0.145054 -0.311716 -0.939024\nvn -0.031678 -0.229377 -0.972808\nvn 0.136143 -0.039460 -0.989898\nvn 0.249550 -0.025422 -0.968017\nvn 0.245003 0.207007 -0.947142\nvn 0.337077 -0.053499 -0.939940\nvn 0.438459 -0.200262 -0.876125\nvn 0.633351 -0.273080 -0.724052\nvn 0.782556 -0.290780 -0.550462\nvn 0.794031 -0.234016 -0.560991\nvn 0.971984 -0.029237 -0.233192\nvn 0.917234 0.312723 0.246651\nvn 0.493301 0.830714 0.257942\nvn -0.219581 0.442427 -0.869472\nvn -0.564898 0.576525 -0.590320\nvn -0.060976 0.075259 -0.995270\nvn 0.515702 0.221351 -0.827662\nvn 0.495285 0.232765 -0.836940\nvn 0.909879 0.218207 -0.352733\nvn 0.967589 0.102908 0.230567\nvn 0.637349 0.026337 0.770074\nvn 0.115268 -0.072207 0.990692\nvn 0.138005 -0.119358 0.983184\nvn 0.170263 -0.099826 0.980316\nvn 0.319529 -0.356578 0.877895\nvn 0.664754 -0.117710 0.737693\nvn 0.775048 0.066897 0.628315\nvn 0.703970 -0.001556 0.710196\nvn 0.673757 0.001953 0.738914\nvn 0.505173 0.027192 0.862575\nvn 0.492691 0.016663 0.870022\nvn 0.156652 0.033357 0.987060\nvn -0.104068 0.122379 0.986999\nvn -0.291482 0.181280 0.939207\nvn -0.485214 0.153172 0.860836\nvn -0.542497 0.164251 0.823817\nvn -0.802545 0.087039 0.590197\nvn -0.916837 0.056551 0.395184\nvn -0.868740 0.067965 0.490524\nvn -0.940672 0.047151 0.335948\nvn -0.988586 0.023408 -0.148717\nvn -0.857265 0.001373 -0.514817\nvn -0.684255 -0.039674 -0.728141\nvn -0.684561 -0.002411 -0.728935\nvn -0.525956 -0.134342 -0.839808\nvn -0.357891 -0.054689 -0.932127\nvn -0.194006 -0.159490 -0.967925\nvn 0.113590 -0.137455 -0.983947\nvn -0.000671 -0.075198 -0.997162\nvn 0.223487 -0.047517 -0.973540\nvn 0.130039 -0.043458 -0.990539\nvn 0.314737 0.012574 -0.949065\nvn 0.389080 -0.057894 -0.919370\nvn 0.681783 0.039460 -0.730461\nvn 0.724326 -0.089908 -0.683523\nvn 0.894559 -0.090609 -0.437635\nvn 0.854610 -0.206671 -0.476333\nvn 0.701804 -0.204260 -0.682424\nvn 0.444685 -0.168798 -0.879604\nvn 0.303964 -0.197607 -0.931944\nvn 0.176214 -0.243385 -0.953764\nvn -0.181555 -0.243538 -0.952727\nvn 0.232337 -0.237342 -0.943205\nvn 0.334025 -0.239601 -0.911557\nvn 0.337107 -0.194250 -0.921201\nvn 0.427412 -0.221870 -0.876370\nvn 0.837519 -0.254952 -0.483200\nvn 0.958434 -0.233436 -0.163854\nvn 0.950133 0.024842 0.310770\nvn 0.779290 0.187933 0.597797\nvn -0.073580 0.994079 0.079592\nvn -0.952788 0.226997 -0.201483\nvn -0.883419 -0.429395 0.187445\nvn -0.900266 -0.350780 -0.257759\nvn -0.863430 -0.368816 0.344157\nvn -0.921018 -0.292886 -0.256752\nvn -0.898892 -0.317789 0.301614\nvn -0.924497 -0.264107 -0.274758\nvn -0.894803 -0.346477 0.281472\nvn -0.908750 -0.248054 -0.335582\nvn -0.955535 -0.237526 0.174657\nvn -0.850307 -0.104434 -0.515793\nvn -0.549760 -0.150517 -0.821619\nvn -0.449812 -0.214911 -0.866848\nvn -0.427198 -0.306864 -0.850459\nvn 0.188147 -0.301584 -0.934660\nvn 0.142857 -0.145665 -0.978942\nvn 0.058290 -0.012299 -0.998199\nvn 0.735069 -0.021241 -0.677633\nvn 0.668874 0.123142 -0.733085\nvn 0.975097 0.104617 -0.195410\nvn 0.947600 0.210852 -0.239937\nvn 0.589160 0.230079 -0.774529\nvn 0.931303 0.291757 -0.217933\nvn 0.542650 0.239540 -0.805048\nvn -0.098148 0.067263 -0.992889\nvn -0.033418 0.066103 -0.997223\nvn -0.605090 -0.095004 -0.790429\nvn -0.671560 -0.141423 -0.727287\nvn -0.676626 -0.177587 -0.714560\nvn -0.634785 -0.195502 -0.747490\nvn -0.089541 0.054445 -0.994476\nvn 0.540819 0.222907 -0.811060\nvn 0.927641 0.241585 -0.284707\nvn 0.954497 0.153081 0.255837\nvn 0.666494 0.067080 0.742454\nvn 0.099887 -0.049898 0.993744\nvn -0.530381 -0.207099 0.822047\nvn -0.468184 -0.216620 0.856655\nvn -0.188025 -0.445357 0.875362\nvn -0.523942 -0.289621 0.800989\nvn -0.550615 -0.398968 0.733207\nvn -0.998535 0.043184 0.031617\nvn -0.773064 -0.127903 0.621235\nvn -0.997162 -0.070009 -0.027070\nvn -0.822230 -0.190497 -0.536271\nvn -0.446394 -0.297647 -0.843867\nvn 0.209357 -0.352916 -0.911924\nvn 0.782556 -0.231452 -0.577929\nvn 0.770562 -0.182440 -0.610645\nvn 0.999725 -0.022126 -0.000763\nvn 0.998810 -0.002808 -0.048280\nvn 0.894284 0.190680 0.404797\nvn 0.923795 0.169408 0.343303\nvn 0.921506 0.283761 -0.265084\nvn 0.936552 0.209815 0.280770\nvn 0.672384 0.078402 0.736015\nvn 0.121677 -0.122868 0.984924\nvn 0.109226 -0.394147 0.912503\nvn -0.172826 -0.079440 0.981719\nvn -0.786493 0.140110 0.601459\nvn -0.997589 -0.062410 0.029695\nvn -0.843776 -0.237068 -0.481460\nvn -0.845027 -0.222602 -0.486129\nvn -0.446181 -0.328929 -0.832270\nvn -0.428571 -0.346721 -0.834315\nvn 0.205756 -0.333445 -0.920011\nvn 0.219245 -0.349437 -0.910916\nvn 0.788018 -0.220374 -0.574816\nvn 0.999817 -0.016205 -0.007355\nvn 0.845790 0.163366 0.507828\nvn 0.843715 0.142338 0.517533\nvn 0.405927 0.273782 0.871883\nvn 0.452742 0.115421 0.884121\nvn -0.215979 0.276437 0.936430\nvn -0.789026 0.146123 0.596698\nvn -0.998749 -0.049013 0.009613\nvn -0.840846 -0.166631 -0.514969\nvn -0.449202 -0.276162 -0.849635\nvn -0.514847 -0.854549 -0.067995\nvn -0.300333 -0.923917 -0.236946\nvn 0.205298 -0.297281 -0.932432\nvn 0.819544 -0.192602 -0.539628\nvn 0.802149 -0.204291 -0.561052\nvn 0.997406 -0.040345 0.059328\nvn 0.999512 -0.027528 0.014008\nvn 0.846553 0.140355 0.513413\nvn 0.446211 0.264687 0.854854\nvn 0.425520 0.273934 0.862453\nvn -0.206732 0.303476 0.930113\nvn -0.222114 0.288186 0.931455\nvn -0.802911 0.172185 0.570635\nvn -0.998688 0.009339 -0.050295\nvn -0.601123 -0.788934 0.127201\nvn -0.273659 -0.934141 -0.228950\nvn -0.497055 -0.861141 -0.106479\nvn -0.543626 -0.643635 -0.538652\nvn -0.042695 -0.744896 -0.665792\nvn 0.152348 -0.974578 -0.164159\nvn 0.375683 -0.896420 0.234993\nvn 0.587878 -0.732933 -0.342296\nvn 0.761040 -0.595538 0.257057\nvn 0.258065 -0.802545 0.537858\nvn 0.062197 -0.975799 -0.209540\nvn 0.288827 -0.950896 0.111118\nvn 0.252815 -0.878353 0.405652\nvn 0.837428 0.090793 0.538926\nvn 0.446577 0.215613 0.868343\nvn -0.203131 0.299753 0.932127\nvn -0.818262 0.215278 0.532945\nvn -0.610584 -0.710501 0.349803\nvn -0.645558 -0.763329 0.023103\nvn -0.807123 -0.512131 -0.293619\nvn -0.245369 -0.921262 0.301737\nvn -0.948088 -0.314707 0.045106\nvn -0.796503 -0.091830 0.597613\nvn -0.193182 -0.100681 0.975951\nvn 0.323283 -0.289438 0.900937\nvn -0.177190 -0.600482 0.779748\nvn -0.586566 -0.502060 0.635487\nvn -0.746635 -0.613941 0.256050\nvn -0.134556 -0.694418 0.706839\nvn 0.112735 -0.789605 0.603137\nvn -0.447188 -0.653127 0.611072\nvn 0.072054 -0.722739 0.687338\nvn 0.605823 -0.457625 0.650777\nvn 0.655812 -0.129887 0.743645\nvn 0.932249 -0.069704 0.354991\nvn 0.738029 -0.029817 0.674062\nvn 0.508988 -0.032960 0.860103\nvn 0.509049 -0.022095 0.860408\nvn 0.224738 -0.019837 0.974212\nvn 0.017182 0.045778 0.998779\nvn -0.270211 0.098086 0.957762\nvn -0.505264 0.081515 0.859066\nvn -0.701041 0.098575 0.706259\nvn -0.637715 0.078463 0.766228\nvn -0.390973 0.073000 0.917478\nvn -0.870022 0.040345 0.491287\nvn -0.822810 0.075625 0.563219\nvn -0.769524 0.140996 0.622852\nvn -0.907010 0.132511 0.399670\nvn -0.993042 0.097049 -0.066347\nvn -0.880978 0.040437 -0.471358\nvn -0.744743 0.025422 -0.666860\nvn -0.776818 0.083285 -0.624165\nvn -0.770043 0.115848 -0.627338\nvn -0.768334 0.115299 -0.629536\nvn -0.766800 0.124069 -0.629781\nvn -0.488052 0.066530 -0.870235\nvn -0.771050 0.112125 -0.626789\nvn -0.513688 0.085421 -0.853694\nvn -0.109989 0.052889 -0.992492\nvn -0.060183 -0.046602 -0.997070\nvn 0.073183 0.020447 -0.997101\nvn 0.239906 0.052004 -0.969390\nvn 0.621723 0.073550 -0.779748\nvn 0.880215 0.025727 -0.473830\nvn 0.893002 -0.095218 -0.439833\nvn 0.977691 -0.064974 -0.199591\nvn 0.966643 -0.064028 0.247963\nvn 0.787347 -0.023133 0.616047\nvn 0.588244 -0.035676 0.807855\nvn 0.588610 -0.015473 0.808222\nvn 0.359874 -0.071139 0.930265\nvn 0.133366 0.009461 0.990997\nvn -0.187841 0.045106 0.981140\nvn -0.440687 0.058657 0.895718\nvn -0.572710 0.077059 0.816095\nvn -0.266854 0.070223 0.961150\nvn -0.812952 0.065615 0.578600\nvn -0.756645 0.115604 0.643513\nvn -0.723136 0.157659 0.672414\nvn -0.872005 0.155522 0.464064\nvn -0.990997 0.130375 -0.029633\nvn -0.911527 0.113559 -0.395215\nvn -0.890835 0.138066 -0.432813\nvn -0.870174 0.145726 -0.470656\nvn -0.755913 0.097964 -0.647267\nvn -0.791650 0.207190 -0.574755\nvn -0.639271 0.162542 -0.751579\nvn -0.766747 0.064302 -0.638691\nvn -0.673849 0.093905 -0.732841\nvn -0.531632 0.038057 -0.846095\nvn -0.456008 0.065310 -0.887539\nvn -0.558336 0.175054 -0.810907\nvn -0.379009 0.143406 -0.914182\nvn -0.155004 0.048097 -0.986724\nvn -0.154942 0.032655 -0.987365\nvn -0.006561 0.036042 -0.999298\nvn 0.004639 0.068178 -0.997650\nvn 0.160100 0.041536 -0.986206\nvn 0.172369 0.073824 -0.982238\nvn 0.032594 0.082064 -0.996063\nvn 0.200018 0.096408 -0.975005\nvn 0.615101 0.097140 -0.782434\nvn 0.852077 0.064089 -0.519425\nvn 0.879543 0.046663 -0.473464\nvn 0.959716 0.056887 -0.275063\nvn 0.984222 0.038148 0.172613\nvn 0.819514 0.019013 0.572710\nvn 0.632527 -0.025513 0.774102\nvn 0.632923 -0.008728 0.774132\nvn 0.499496 -0.009888 0.866237\nvn 0.205542 0.013367 0.978545\nvn -0.108219 0.037690 0.993408\nvn -0.376476 0.076815 0.923215\nvn -0.614368 0.117649 0.780175\nvn -0.713370 0.121616 0.690146\nvn -0.688314 0.099734 0.718497\nvn -0.890957 0.123569 0.436903\nvn -0.991119 0.132054 -0.014954\nvn -0.977935 0.204016 -0.044618\nvn -0.951628 0.267190 -0.151585\nvn -0.936857 0.267190 -0.225562\nvn -0.700766 0.254646 -0.666341\nvn -0.933226 0.238227 -0.268899\nvn -0.658284 0.205054 -0.724265\nvn -0.707907 0.207312 -0.675161\nvn -0.943205 0.233192 -0.236549\nvn -0.956999 0.212531 0.197333\nvn -0.916135 0.195837 0.349712\nvn -0.797540 0.156621 0.582537\nvn -0.791101 0.152745 0.592273\nvn -0.798608 0.161351 0.579791\nvn -0.789453 0.161138 0.592273\nvn -0.660573 0.117374 0.741508\nvn -0.630848 0.108951 0.768181\nvn -0.294992 0.008423 0.955443\nvn -0.210517 -0.011017 0.977508\nvn 0.063356 -0.047121 0.996857\nvn 0.072481 -0.045106 0.996338\nvn 0.273812 -0.023316 0.961486\nvn 0.315104 -0.017029 0.948882\nvn 0.045503 -0.036653 0.998260\nvn -0.378277 0.039918 0.924802\nvn -0.675619 0.155034 0.720725\nvn -0.759026 0.184362 0.624378\nvn -0.626759 0.149388 0.764733\nvn -0.277413 0.052400 0.959288\nvn 0.010559 0.000214 0.999939\nvn 0.290780 0.019440 0.956572\nvn 0.368908 -0.001129 0.929441\nvn 0.568743 0.067049 0.819758\nvn 0.597156 0.077883 0.798303\nvn 0.731773 0.130589 0.668905\nvn 0.617512 0.110385 0.778741\nvn 0.704581 0.146184 0.694357\nvn 0.730583 0.121372 0.671896\nvn 0.715354 0.136509 0.685263\nvn 0.876125 0.181616 0.446516\nvn 0.879391 0.233375 0.414930\nvn 0.939665 0.314371 -0.134648\nvn 0.956725 0.276193 -0.091464\nvn 0.804987 0.241279 -0.541978\nvn 0.885342 0.095553 -0.455000\nvn 0.764672 0.049104 -0.642506\nvn 0.785668 0.058138 -0.615864\nvn 0.785791 0.041078 -0.617084\nvn 0.831538 0.072787 -0.550645\nvn 0.851039 0.081881 -0.518662\nvn 0.938810 0.071169 -0.336955\nvn 0.990783 0.069948 0.115818\nvn 0.834834 0.006256 0.550401\nvn 0.656758 -0.020325 0.753777\nvn 0.657460 -0.007416 0.753410\nvn 0.526261 -0.005921 0.850276\nvn 0.237587 -0.003235 0.971343\nvn -0.057344 0.024293 0.998047\nvn -0.318400 0.078280 0.944700\nvn -0.566698 0.114780 0.815882\nvn -0.680135 0.087283 0.727836\nvn -0.708243 0.063234 0.703116\nvn -0.872463 0.111209 0.475814\nvn -0.893094 0.207923 0.398846\nvn -0.915799 0.238777 0.322855\nvn -0.774773 0.169591 0.609027\nvn -0.716178 0.168859 0.677145\nvn -0.557176 0.113498 0.822565\nvn -0.237526 0.040712 0.970519\nvn -0.000824 -0.011933 0.999908\nvn 0.245979 0.001434 0.969268\nvn 0.549883 0.047578 0.833857\nvn 0.538469 -0.005432 0.842616\nvn 0.250649 -0.006653 0.968047\nvn -0.014710 0.008026 0.999847\nvn -0.262459 0.041505 0.964019\nvn -0.534043 0.066012 0.842860\nvn -0.687857 0.091220 0.720054\nvn -0.746940 0.147191 0.648335\nvn 0.672842 0.001099 0.739769\nvn 0.680654 0.036164 0.731681\nvn 0.682516 0.118809 0.721122\nvn 0.582293 0.090884 0.807855\nvn 0.705527 0.110874 0.699942\nvn 0.693655 0.019135 0.720023\nvn 0.675527 -0.007172 0.737266\nvn 0.858425 0.006989 0.512833\nvn 0.871242 0.048189 0.488449\nvn 0.871334 0.184820 0.454482\nvn 0.989166 0.145909 -0.014222\nvn 0.911222 0.062624 -0.407056\nvn 0.829524 0.095676 -0.550188\nvn 0.943022 0.068239 -0.325571\nvn 0.997253 0.045289 0.058596\nvn 0.999542 0.027985 0.008637\nvn 0.530320 0.059877 -0.845637\nvn 0.532090 0.018555 -0.846461\nvn 0.767632 0.022401 -0.640461\nvn 0.644154 0.206244 -0.736534\nvn 0.721702 0.339061 -0.603442\nvn 0.949034 0.267190 -0.167150\nvn 0.930845 0.209967 0.298990\nvn 0.736595 0.127445 0.664174\nvn 0.739586 0.132908 0.659780\nvn 0.956786 0.258858 -0.132389\nvn 0.817896 0.264046 -0.511155\nvn 0.682516 0.260109 -0.683004\nvn 0.569414 0.242256 -0.785516\nvn 0.551042 0.251717 -0.795556\nvn 0.582781 0.254311 -0.771783\nvn 0.554949 0.271920 -0.786157\nvn 0.345103 0.198431 -0.917325\nvn 0.308176 0.217841 -0.926023\nvn 0.069948 0.092105 -0.993286\nvn 0.012757 0.063082 -0.997925\nvn -0.065004 0.039003 -0.997101\nvn -0.037843 0.046083 -0.998199\nvn 0.112918 0.108249 -0.987671\nvn -0.023164 0.061434 -0.997833\nvn 0.145329 0.068392 -0.986999\nvn 0.447768 0.114750 -0.886715\nvn 0.668416 0.147649 -0.728935\nvn 0.518418 0.282815 -0.806970\nvn 0.542131 0.259621 -0.799158\nvn 0.362896 0.214850 -0.906705\nvn -0.139439 0.062258 -0.988250\nvn -0.115238 0.036500 -0.992645\nvn -0.098666 0.035310 -0.994476\nvn -0.075442 0.015442 -0.997009\nvn -0.233955 0.106937 -0.966338\nvn -0.338481 0.131809 -0.931669\nvn -0.530351 0.183691 -0.827601\nvn -0.523087 0.179052 -0.833216\nvn -0.521317 0.180578 -0.834010\nvn -0.508560 0.180242 -0.841945\nvn -0.508713 0.202521 -0.836756\nvn -0.150548 0.079287 -0.985412\nvn -0.174932 0.059420 0.982757\nvn -0.421186 0.060152 0.904965\nvn -0.145726 0.009369 0.989257\nvn -0.481063 0.076937 0.873287\nvn -0.784020 0.123661 0.608234\nvn -0.844722 0.144658 0.515213\nvn -0.985992 0.146336 0.079958\nvn -0.980438 0.196814 0.001221\nvn -0.889615 0.170537 -0.423627\nvn -0.829615 0.215094 -0.515213\nvn -0.979492 0.199438 -0.027863\nvn -0.827967 0.197028 -0.524979\nvn -0.974364 0.216529 -0.060976\nvn -0.829096 0.194830 -0.524003\nvn -0.949461 0.289285 -0.121708\nvn -0.750694 0.304147 -0.586413\nvn -0.925260 0.340526 -0.166967\nvn -0.705924 0.223121 -0.672170\nvn -0.953825 0.228614 -0.194769\nvn -0.667318 0.139348 -0.731590\nvn -0.950102 0.208960 -0.231544\nvn -0.643727 0.168340 -0.746483\nvn -0.955107 0.190252 -0.226997\nvn -0.648000 0.190130 -0.737510\nvn -0.961943 0.161596 -0.220252\nvn -0.651418 0.162908 -0.740989\nvn -0.967895 0.169805 -0.185278\nvn -0.638661 0.188757 -0.745933\nvn -0.955504 0.174780 -0.237526\nvn -0.629048 0.207556 -0.749107\nvn -0.954436 0.153050 -0.256081\nvn -0.628498 0.216407 -0.747063\nvn -0.953429 0.178655 -0.242958\nvn -0.632008 0.227119 -0.740898\nvn -0.956572 0.151616 -0.248878\nvn -0.648885 0.162999 -0.743187\nvn -0.955809 0.150884 -0.252205\nvn -0.671346 0.157384 -0.724204\nvn -0.936460 0.237617 -0.257973\nvn -0.714347 0.222114 -0.663564\nvn -0.934660 0.203192 -0.291665\nvn -0.627674 0.149388 -0.764000\nvn -0.910703 0.171514 -0.375683\nvn -0.561571 0.153691 -0.812983\nvn -0.889065 0.118137 -0.442244\nvn -0.474776 0.076357 -0.876766\nvn -0.707938 -0.641163 -0.296152\nvn -0.284249 -0.730461 -0.620930\nvn -0.122593 -0.975097 0.184698\nvn -0.792413 -0.609943 0.001099\nvn -0.696921 -0.527604 0.485672\nvn -0.307291 -0.512101 0.802026\nvn 0.249458 -0.603809 0.757073\nvn -0.064669 0.178716 0.981750\nvn -0.732139 0.241157 0.637013\nvn -0.981017 0.189795 0.039277\nvn -0.950285 0.227790 0.212195\nvn -0.603107 0.259743 0.754173\nvn -0.044069 0.104373 0.993530\nvn 0.591113 0.047121 0.805170\nvn 0.523942 -0.648305 0.552385\nvn 0.849055 0.028962 0.527451\nvn 0.613178 -0.114231 0.781610\nvn 0.916807 -0.156774 0.367168\nvn 0.602222 -0.276162 0.749016\nvn 0.919431 -0.240455 0.311075\nvn 0.695120 -0.161687 0.700430\nvn 0.934355 -0.214576 0.284402\nvn 0.978851 -0.181402 -0.094363\nvn 0.954833 -0.178533 -0.237434\nvn 0.929136 -0.261605 0.261208\nvn 0.936033 -0.189489 -0.296457\nvn 0.629719 -0.075411 -0.773125\nvn 0.541307 -0.035554 -0.840052\nvn 0.102725 0.039094 -0.993927\nvn 0.693106 -0.062136 -0.718101\nvn 0.691366 0.064730 -0.719565\nvn 0.083956 0.128849 -0.988098\nvn 0.231361 0.035188 -0.972198\nvn 0.794671 0.037111 -0.605884\nvn 0.989654 0.107608 -0.094821\nvn 0.994903 0.090091 0.044679\nvn 0.639332 -0.671621 0.374310\nvn 0.635762 -0.751976 -0.174047\nvn 0.204474 -0.776025 -0.596606\nvn -0.102939 0.093936 -0.990234\nvn 0.524125 0.015992 -0.851466\nvn 0.936583 -0.128544 -0.325938\nvn 0.927732 -0.114414 -0.355235\nvn 0.533311 0.054872 -0.844111\nvn -0.041780 0.117283 -0.992187\nvn -0.014649 0.173650 -0.984680\nvn 0.553941 0.041261 -0.831507\nvn 0.935759 -0.065645 -0.346416\nvn 0.944700 -0.113315 -0.307688\nvn 0.569720 0.026276 -0.821406\nvn -0.009369 0.178320 -0.983917\nvn -0.004852 0.161962 -0.986755\nvn 0.560533 0.011780 -0.828028\nvn 0.942808 -0.142644 -0.301218\nvn 0.931211 -0.174718 -0.319803\nvn 0.537584 -0.039430 -0.842250\nvn -0.008667 0.124851 -0.992126\nvn -0.031739 0.072176 -0.996857\nvn 0.522874 -0.064394 -0.849940\nvn 0.906613 -0.208533 -0.366802\nvn 0.863948 -0.227119 -0.449416\nvn 0.490890 -0.108798 -0.864376\nvn -0.064119 0.093112 -0.993561\nvn -0.119694 0.060549 -0.990936\nvn 0.457350 -0.200201 -0.866421\nvn 0.866543 -0.211615 -0.451949\nvn 0.565996 -0.696646 -0.440809\nvn 0.212836 -0.518662 -0.828028\nvn -0.048311 -0.933744 -0.354625\nvn -0.045259 -0.991241 -0.123814\nvn -0.610065 -0.647084 -0.457228\nvn -0.723258 -0.690207 -0.020966\nvn -0.848262 -0.235450 -0.474288\nvn -0.885647 -0.451521 0.108280\nvn -0.845973 -0.247627 -0.472182\nvn -0.872189 -0.442061 0.209387\nvn -0.870632 -0.230262 -0.434706\nvn -0.928587 -0.308878 0.205542\nvn -0.895566 -0.169622 -0.411267\nvn -0.945250 -0.275399 0.174993\nvn -0.908505 -0.134251 -0.395672\nvn -0.938139 -0.258980 0.229713\nvn -0.910245 -0.105411 -0.400403\nvn -0.963408 -0.186163 0.192785\nvn -0.898679 -0.053468 -0.435255\nvn -0.952971 -0.247566 0.174688\nvn -0.889096 -0.100833 -0.446455\nvn -0.939848 -0.299692 0.163732\nvn -0.900357 -0.116977 -0.419050\nvn -0.959258 -0.228217 0.166478\nvn -0.901486 -0.179724 -0.393689\nvn -0.944609 -0.288461 0.156377\nvn -0.921018 -0.180914 -0.344890\nvn -0.952361 -0.252144 0.171392\nvn -0.952300 -0.187536 -0.240669\nvn -0.944426 -0.268105 0.190069\nvn -0.957976 -0.191595 0.213324\nvn -0.964568 0.050447 -0.258889\nvn -0.987030 0.039583 -0.155461\nvn -0.653859 -0.002045 -0.756584\nvn -0.562334 -0.767052 -0.308817\nvn -0.049806 -0.775567 -0.629261\nvn -0.025300 0.031098 -0.999176\nvn 0.432142 -0.716605 -0.547441\nvn 0.642476 0.100345 -0.759697\nvn 0.772881 -0.619221 -0.138554\nvn 0.956755 0.151067 -0.248543\nvn 0.672842 0.207404 -0.710105\nvn 0.082827 0.152348 -0.984832\nvn -0.555071 0.058443 -0.829737\nvn -0.589312 -0.013306 -0.807764\nvn -0.557787 -0.023072 -0.829615\nvn -0.461165 0.014100 -0.887173\nvn -0.443892 0.066500 -0.893582\nvn 0.191839 0.160314 -0.968230\nvn 0.130741 0.183081 -0.974334\nvn 0.732231 0.212287 -0.647084\nvn 0.711539 0.218879 -0.667653\nvn 0.972228 0.177709 -0.152135\nvn 0.972686 0.178198 -0.148686\nvn 0.693442 0.282540 -0.662770\nvn 0.102084 0.238533 -0.965728\nvn -0.454360 0.104709 -0.884610\nvn -0.475661 0.089938 -0.874996\nvn 0.096652 0.243080 -0.965148\nvn 0.690695 0.272225 -0.669942\nvn 0.968535 0.204779 -0.141362\nvn 0.971191 0.180120 -0.155950\nvn 0.691580 0.263497 -0.672475\nvn 0.092715 0.226905 -0.969481\nvn -0.491256 0.074007 -0.867824\nvn -0.480728 0.060945 -0.874722\nvn -0.455245 0.009033 -0.890286\nvn 0.097629 0.190283 -0.976836\nvn 0.120792 0.138707 -0.982910\nvn 0.701163 0.244636 -0.669668\nvn 0.713858 0.218665 -0.665212\nvn 0.977783 0.192297 -0.083285\nvn 0.975219 0.186346 -0.119114\nvn 0.699789 0.254006 -0.667623\nvn 0.139103 0.171178 -0.975341\nvn -0.445723 -0.021577 -0.894894\nvn -0.444075 -0.066500 -0.893490\nvn 0.150914 0.132054 -0.979675\nvn 0.678335 0.227424 -0.698630\nvn 0.968230 0.216193 -0.125431\nvn 0.963713 0.233100 -0.129826\nvn 0.694296 0.200476 -0.691183\nvn 0.173345 0.069735 -0.982360\nvn -0.430158 -0.160558 -0.888333\nvn -0.241218 -0.486831 -0.839503\nvn 0.269448 -0.082705 -0.959441\nvn 0.707999 0.319926 -0.629566\nvn 0.963286 0.253029 -0.089541\nvn 0.896664 0.436872 -0.071505\nvn 0.729209 0.395520 -0.558367\nvn 0.376385 0.073000 -0.923551\nvn -0.024628 -0.343760 -0.938719\nvn -0.033143 -0.687338 -0.725547\nvn -0.003296 -0.368816 -0.929472\nvn -0.021027 -0.272011 -0.962035\nvn 0.083102 0.040590 -0.995697\nvn 0.478683 0.127842 -0.868587\nvn 0.847102 0.149815 -0.509812\nvn 0.455336 0.176275 -0.872677\nvn 0.101840 0.194800 -0.975524\nvn 0.004151 0.058107 -0.998291\nvn -0.086184 0.020356 -0.996063\nvn -0.379528 0.021516 -0.924894\nvn -0.268136 -0.125401 -0.955168\nvn -0.165502 0.005646 -0.986175\nvn -0.472060 0.133305 -0.871395\nvn -0.080355 0.201392 -0.976196\nvn 0.012909 0.200690 -0.979553\nvn 0.012635 0.251534 -0.967742\nvn 0.036348 0.199683 -0.979156\nvn 0.006867 0.151769 -0.988372\nvn 0.000244 0.162725 -0.986663\nvn 0.361461 0.165777 -0.917508\nvn 0.466292 0.168340 -0.868435\nvn 0.847865 0.136143 -0.512375\nvn 0.901395 0.089297 -0.423627\nvn 0.994690 0.102695 0.002380\nvn 0.995178 0.056459 0.079958\nvn 0.854030 0.065218 0.516068\nvn 0.792016 0.052187 0.608234\nvn 0.485092 0.033998 0.873775\nvn 0.421613 -0.072115 0.903897\nvn 0.145146 -0.003021 0.989380\nvn 0.120151 -0.092349 0.988433\nvn 0.000702 0.015564 0.999878\nvn -0.049898 -0.003845 0.998718\nvn -0.187964 -0.012726 0.982086\nvn -0.025880 -0.074679 0.996857\nvn -0.115940 0.003906 0.993225\nvn -0.149052 0.045930 0.987732\nvn -0.214728 0.215400 0.952605\nvn -0.230628 0.364818 0.902036\nvn -0.318125 0.390545 0.863826\nvn -0.442427 0.363536 0.819788\nvn -0.332041 0.263985 0.905545\nvn -0.307566 0.113315 0.944731\nvn -0.448073 0.109928 0.887173\nvn -0.270241 0.034059 0.962157\nvn -0.004303 -0.041932 0.999084\nvn -0.137974 -0.023103 0.990143\nvn -0.464614 0.057009 0.883633\nvn -0.854396 0.144292 0.499161\nvn -0.862392 0.162145 0.479568\nvn -0.887387 0.197790 0.416395\nvn -0.897916 0.234046 0.372723\nvn -0.907895 0.228553 0.351390\nvn -0.924192 0.190588 0.330882\nvn -0.937803 0.141240 0.317118\nvn -0.942595 0.101230 0.318125\nvn -0.937376 0.107974 0.331095\nvn -0.901669 0.117771 0.416059\nvn -0.920621 0.143498 0.363018\nvn -0.962645 0.019623 0.269967\nvn -0.962279 0.046815 0.267953\nvn -0.961180 0.116764 0.249916\nvn -0.953642 0.094333 0.285684\nvn -0.941588 0.166753 0.292550\nvn -0.944914 0.211890 0.249367\nvn -0.605853 0.093936 0.789972\nvn -0.033174 -0.072268 0.996826\nvn 0.166326 -0.046266 0.984954\nvn 0.065554 -0.105441 0.992248\nvn -0.577197 0.010041 0.816523\nvn -0.612934 -0.003388 0.790094\nvn 0.024476 -0.120853 0.992340\nvn 0.629048 -0.237434 0.740196\nvn 0.631214 -0.195929 0.750420\nvn 0.942106 -0.200568 0.268624\nvn 0.923826 -0.272408 0.268838\nvn 0.935301 -0.219459 0.277474\nvn 0.943480 -0.156438 0.292093\nvn 0.915433 -0.224036 0.334300\nvn 0.924161 -0.247749 0.290719\nvn 0.918424 -0.262886 0.295541\nvn 0.901914 -0.362407 0.234840\nvn 0.937895 -0.327982 0.112949\nvn 0.753197 -0.657430 -0.020600\nvn -0.035585 -0.951781 0.304666\nvn 0.428571 -0.692984 0.579699\nvn -0.025513 -0.655446 0.754784\nvn -0.025086 -0.251778 0.967437\nvn -0.000061 -0.127384 0.991852\nvn -0.157781 -0.040468 0.986633\nvn -0.545518 0.055483 0.836238\nvn -0.598437 0.058779 0.798975\nvn -0.572466 0.098300 0.813990\nvn -0.560533 0.078463 0.824366\nvn -0.570544 0.036439 0.820429\nvn -0.591937 -0.017396 0.805780\nvn -0.586871 -0.029908 0.809107\nvn -0.577776 -0.029542 0.815638\nvn -0.537980 0.019379 0.842708\nvn -0.569079 -0.127079 0.812372\nvn -0.670003 -0.172430 0.722007\nvn -0.034944 -0.260781 0.964751\nvn 0.627491 -0.312021 0.713340\nvn 0.602039 -0.299631 0.740074\nvn 0.630360 -0.171545 0.757073\nvn 0.652455 -0.193854 0.732566\nvn 0.611133 -0.214911 0.761742\nvn 0.631672 -0.240974 0.736808\nvn 0.652913 -0.220588 0.724570\nvn 0.638447 -0.290536 0.712699\nvn 0.621784 -0.365154 0.692801\nvn 0.076449 -0.151433 0.985504\nvn 0.090732 -0.121891 0.988372\nvn 0.073458 -0.125523 0.989349\nvn 0.086337 -0.150700 0.984771\nvn 0.092105 -0.153722 0.983795\nvn 0.065096 -0.151097 0.986358\nvn 0.029633 -0.131382 0.990875\nvn 0.016419 -0.270363 0.962584\nvn -0.476943 0.069796 0.876125\nvn -0.115238 -0.026368 0.992981\nvn -0.005005 -0.072176 0.997375\nvn 0.111515 -0.050233 0.992462\nvn 0.144932 -0.086428 0.985656\nvn -0.005737 -0.305582 0.952147\nvn -0.425214 -0.737114 0.525163\nvn -0.601215 -0.464614 0.650105\nvn -0.130070 -0.222022 0.966308\nvn -0.666372 -0.369457 0.647603\nvn -0.720695 -0.275369 0.636158\nvn -0.691153 -0.303262 0.655965\nvn -0.670461 -0.277566 0.688040\nvn -0.713614 -0.249001 0.654775\nvn -0.694235 -0.228126 0.682607\nvn -0.662282 -0.354503 0.660024\nvn -0.684957 -0.365368 0.630299\nvn -0.694052 -0.252022 0.674337\nvn -0.690237 -0.292764 0.661672\nvn -0.753685 -0.215278 0.620960\nvn -0.672811 -0.329234 0.662496\nvn -0.733390 -0.135228 0.666189\nvn -0.940001 0.009339 0.340983\nvn -0.685171 -0.692343 0.226112\nvn -0.611591 -0.668294 0.423444\nvn 0.111148 -0.972594 0.204138\nvn -0.388806 -0.618397 0.682913\nvn 0.141758 -0.512284 0.847011\nvn -0.147313 0.177557 0.972991\nvn -0.749229 0.051820 0.660237\nvn -0.166173 0.082644 0.982604\nvn -0.127354 -0.134739 0.982635\nvn -0.260598 -0.112918 0.958800\nvn -0.154637 -0.171545 0.972961\nvn -0.113468 -0.186468 0.975860\nvn -0.049379 -0.323618 0.944884\nvn -0.100162 -0.333598 0.937376\nvn -0.118290 -0.196905 0.973235\nvn -0.152837 -0.216681 0.964171\nvn -0.179449 -0.219428 0.958953\nvn -0.166204 -0.218726 0.961516\nvn -0.149266 -0.194525 0.969451\nvn -0.170446 -0.188177 0.967223\nvn 0.504837 0.053072 0.861568\nvn 0.542039 0.008332 0.840297\nvn 0.518113 -0.006836 0.855251\nvn 0.472213 0.013092 0.881375\nvn 0.464125 0.010834 0.885678\nvn 0.130802 -0.035249 0.990753\nvn 0.861263 0.062471 0.504288\nvn 0.864559 0.086520 0.494980\nvn 0.874996 0.148869 0.460646\nvn 0.988342 0.147771 -0.036103\nvn 0.993713 0.110538 -0.016541\nvn 0.849757 0.126255 -0.511795\nvn 0.946196 0.316568 -0.066866\nvn 0.856319 0.239998 0.457228\nvn 0.867702 0.217139 0.447066\nvn 0.886593 0.178106 0.426832\nvn 0.487442 0.029603 0.872616\nvn 0.493637 -0.011872 0.869564\nvn 0.515641 -0.064150 0.854396\nvn 0.510483 -0.076907 0.856410\nvn 0.500809 -0.077059 0.862087\nvn 0.457900 -0.030457 0.888455\nvn 0.494125 -0.174291 0.851711\nvn 0.603687 -0.212439 0.768364\nvn 0.537736 -0.048921 0.841670\nvn 0.499496 -0.037599 0.865474\nvn 0.485153 0.042756 0.873348\nvn 0.463027 0.229194 0.856166\nvn 0.579089 0.243294 0.778100\nvn 0.590075 -0.514054 0.622486\nvn 0.790246 -0.588702 0.169958\nvn 0.947539 0.206244 0.244148\nvn 0.907407 0.218360 0.358989\nvn 0.914640 0.208502 0.346294\nvn 0.956023 0.231666 -0.179662\nvn 0.951994 0.264412 -0.154057\nvn 0.768395 0.273324 -0.578631\nvn 0.696493 0.212317 -0.685385\nvn 0.952879 0.204321 -0.224158\nvn 0.015595 0.111118 -0.993683\nvn 0.907743 0.157353 0.388836\nvn 0.921628 0.085665 0.378430\nvn 0.932035 0.110538 0.345042\nvn 0.932646 0.039552 0.358531\nvn 0.933317 0.012268 0.358806\nvn 0.970183 0.200568 -0.136021\nvn 0.880825 0.129276 0.455397\nvn 0.857509 0.099857 0.504654\nvn 0.901028 0.096103 0.422926\nvn 0.907529 0.090304 0.410108\nvn 0.901975 0.130619 0.411481\nvn -0.017182 0.204505 -0.978698\nvn -0.433088 0.214789 -0.875362\nvn -0.342967 0.200476 -0.917692\nvn 0.014466 0.162084 -0.986663\nvn -0.449141 0.209845 -0.868435\nvn -0.497543 0.006867 -0.867397\nvn -0.733818 0.052034 -0.677328\nvn 0.224342 -0.180578 -0.957610\nvn -0.022858 -0.251320 -0.967620\nvn -0.350627 -0.267525 -0.897458\nvn 0.024781 0.405286 -0.913846\nvn 0.064760 -0.090365 -0.993774\nvn -0.549394 -0.360546 -0.753746\nvn -0.834620 -0.149449 -0.530137\nvn -0.910062 0.048616 -0.411542\nvn -0.998169 -0.026002 0.054567\nvn -0.922269 0.082034 0.377697\nvn -0.763634 0.261574 0.590228\nvn -0.671102 0.474013 0.569964\nvn -0.514756 0.761681 0.393445\nvn -0.379070 0.923215 0.062807\nvn -0.299936 0.836390 -0.458754\nvn 0.012848 0.476089 -0.879269\nvn 0.017548 -0.172430 -0.984863\nvn -0.670827 -0.476424 -0.568316\nvn -0.889492 0.255348 -0.378857\nvn -0.930235 0.287820 -0.227515\nvn -0.955412 0.204718 0.212683\nvn -0.838832 0.215491 0.499893\nvn -0.635365 0.630970 0.445143\nvn -0.879727 0.133793 0.456191\nvn -0.884213 -0.239448 0.400983\nvn -0.726859 -0.476089 0.494919\nvn -0.867214 -0.127323 0.481338\nvn -0.878170 0.441755 0.183325\nvn -0.978759 0.172033 0.111423\nvn -0.784082 -0.226691 0.577715\nvn -0.983245 0.040498 0.177587\nvn -0.706107 -0.273598 0.653096\nvn -0.978942 -0.037019 0.200690\nvn -0.706595 -0.247780 0.662801\nvn -0.968413 -0.001068 0.249275\nvn -0.672292 -0.266640 0.690573\nvn -0.155217 -0.528794 0.834407\nvn -0.227332 -0.940123 0.253853\nvn -0.609088 -0.733665 0.301126\nvn -0.957915 0.039583 0.284249\nvn -0.954131 -0.063021 0.292581\nvn -0.791345 0.112156 0.600940\nvn -0.948943 0.234809 0.210517\nvn -0.912900 0.333445 -0.235267\nvn -0.890194 0.276406 -0.362133\nvn -0.906613 0.120914 -0.404248\nvn -0.957640 -0.057405 -0.282113\nvn -0.536119 -0.060854 -0.841914\nvn -0.584674 -0.387036 -0.712943\nvn 0.026002 -0.178350 -0.983612\nvn 0.073244 0.130161 -0.988769\nvn 0.627766 0.009919 -0.778314\nvn 0.672689 0.144566 -0.725639\nvn 0.956938 -0.099673 -0.272530\nvn 0.958190 -0.081759 -0.274117\nvn 0.703665 0.171758 -0.689413\nvn 0.112156 0.326090 -0.938658\nvn -0.515000 0.232917 -0.824915\nvn -0.512040 0.412000 -0.753655\nvn -0.525773 0.454512 -0.718955\nvn -0.929899 0.296731 -0.217231\nvn -0.933348 0.266823 -0.240059\nvn -0.910489 0.240913 -0.336070\nvn -0.889859 0.265542 -0.370952\nvn -0.841639 0.390576 -0.372875\nvn -0.675436 0.634175 -0.376202\nvn -0.514847 0.844844 0.145268\nvn -0.231330 0.540208 -0.809076\nvn 0.226447 -0.028565 -0.973571\nvn -0.670003 -0.713248 -0.205756\nvn -0.815851 0.500290 0.289956\nvn -0.316721 0.943693 0.095492\nvn 0.049898 0.998718 0.005524\nvn -0.975249 -0.015076 -0.220557\nvn -0.998321 0.044679 -0.036683\nvn 0.455672 -0.387310 0.801447\nvn 0.926603 0.016724 0.375652\nvn 0.875973 -0.418744 0.239357\nvn 0.421461 -0.541551 0.727348\nvn -0.292337 -0.492752 0.819575\nvn -0.205329 -0.465987 0.860591\nvn -0.142155 -0.448195 0.882534\nvn 0.484481 -0.550218 0.680044\nvn 0.101291 -0.919034 0.380840\nvn 0.714408 -0.670766 0.199164\nvn 0.752464 -0.365062 0.548173\nvn -0.001007 0.827021 0.562120\nvn -0.602557 0.656301 0.454024\nvn -0.940733 0.287454 0.179815\nvn -0.966552 -0.154180 -0.204810\nvn -0.614093 -0.546373 -0.569475\nvn -0.002136 -0.519852 -0.854244\nvn 0.527085 -0.247108 -0.813044\nvn 0.907620 -0.313639 -0.278970\nvn 0.670644 -0.650868 0.355724\nvn 0.911405 -0.346263 0.222236\nvn 0.904874 -0.373974 0.203253\nvn 0.946165 -0.131840 -0.295602\nvn 0.707450 0.133122 -0.694082\nvn 0.128697 0.400189 -0.907315\nvn 0.122440 0.405194 -0.905972\nvn 0.702445 0.181158 -0.688253\nvn 0.945036 -0.143498 -0.293771\nvn 0.842799 0.537034 -0.035279\nvn 0.549486 0.821406 -0.152745\nvn 0.146947 0.493545 -0.857173\nvn -0.530992 0.456557 -0.713828\nvn -0.435926 0.442763 -0.783502\nvn -0.392621 0.364605 -0.844325\nvn -0.426832 0.354747 -0.831813\nvn -0.106784 0.489303 -0.865535\nvn 0.505814 -0.503128 0.700674\nvn 0.332255 -0.843471 0.422010\nvn 0.975005 0.116581 0.189123\nvn 0.614185 0.631642 0.473006\nvn 0.619373 0.543474 0.566546\nvn -0.014801 0.748924 0.662465\nvn -0.626606 0.605426 0.490677\nvn -0.946806 0.269509 0.175634\nvn -0.968322 -0.166509 -0.186010\nvn -0.621509 -0.595325 -0.509171\nvn 0.010254 -0.730094 -0.683248\nvn 0.014405 -0.790155 -0.612690\nvn 0.624439 -0.608997 -0.488998\nvn 0.624928 -0.652577 -0.428480\nvn 0.929716 -0.326426 -0.170324\nvn 0.940642 -0.319132 -0.115360\nvn 0.963042 0.110660 0.245521\nvn 0.968566 0.112033 0.222022\nvn 0.638356 0.554491 0.533830\nvn -0.029817 0.758965 0.650441\nvn -0.644642 0.590625 0.485366\nvn -0.948241 0.252693 0.192236\nvn -0.972777 -0.165258 -0.162267\nvn -0.638966 -0.576830 -0.508866\nvn 0.029237 -0.779168 -0.626087\nvn 0.641011 -0.633808 -0.432813\nvn 0.942564 -0.309000 -0.126621\nvn 0.951323 -0.268410 -0.151311\nvn 0.973327 0.144322 0.178259\nvn 0.635395 0.584674 0.504349\nvn -0.053957 0.788659 0.612415\nvn -0.660939 0.600208 0.450423\nvn -0.951292 0.241829 0.191076\nvn -0.976440 -0.174413 -0.126926\nvn -0.641285 -0.608997 -0.466720\nvn 0.056429 -0.798334 -0.599536\nvn 0.661702 -0.611347 -0.434004\nvn 0.593554 -0.453230 0.664968\nvn 0.558702 -0.251045 0.790429\nvn 0.437544 -0.098575 0.893765\nvn 0.232978 0.023072 0.972198\nvn -0.014710 0.028718 0.999451\nvn -0.200629 -0.096683 0.974853\nvn -0.297708 -0.297403 0.907132\nvn -0.279305 -0.574847 0.769097\nvn 0.039003 -0.813807 0.579760\nvn 0.445357 -0.704123 0.552995\nvn -0.361614 -0.532579 0.765221\nvn -0.377850 -0.222297 0.898770\nvn -0.271035 -0.003601 0.962554\nvn -0.769524 -0.047304 0.636799\nvn -0.749229 -0.461501 0.475021\nvn -0.347942 -0.903958 0.248573\nvn 0.003784 -0.781304 0.624104\nvn 0.357219 -0.916898 0.177831\nvn 0.185583 -0.286081 0.940031\nvn -0.620075 0.330515 0.711509\nvn -0.087619 0.224219 0.970580\nvn -0.189825 0.681082 0.707144\nvn 0.336039 0.328410 0.882717\nvn 0.509659 0.633686 0.581927\nvn 0.638539 0.050111 0.767937\nvn 0.880154 0.162358 0.445998\nvn 0.897366 -0.246193 0.366161\nvn 0.760369 -0.590747 0.269814\nvn 0.417035 -0.652760 0.632405\nvn 0.569170 -0.444075 0.691946\nvn 0.647694 -0.240822 0.722800\nvn 0.543046 -0.506363 -0.669820\nvn -0.503250 0.789880 0.350414\nvn -0.352611 0.691763 0.630146\nvn -0.324503 0.528153 0.784661\nvn 0.483596 -0.476363 0.734275\nvn 0.867672 -0.267342 0.419111\nvn 0.812006 -0.403516 0.421613\nvn -0.336955 0.220649 0.915281\nvn -0.444929 -0.160405 0.881039\nvn -0.732688 -0.627552 0.263253\nvn -0.971221 -0.237373 -0.018097\nvn -0.517777 -0.826289 -0.221595\nvn -0.340220 -0.907254 -0.247200\nvn -0.181371 -0.962004 -0.203925\nvn -0.076571 -0.990356 0.115299\nvn 0.102634 -0.621326 0.776757\nvn 0.217750 -0.966002 0.139134\nvn 0.297983 -0.902341 0.311411\nvn 0.321970 -0.813044 0.485000\nvn 0.450880 -0.770714 0.450179\nvn 0.486618 -0.661885 0.570147\nvn 0.530534 -0.530168 0.661367\nvn 0.695151 -0.480697 0.534471\nvn 0.672140 -0.733970 0.097354\nvn 0.899258 -0.418378 0.127445\nvn 0.920927 -0.337504 0.194769\nvn 0.937803 -0.299081 -0.176092\nvn 0.900540 -0.291421 -0.322520\nvn 0.972655 -0.231758 0.014710\nvn 0.899899 0.220344 -0.376293\nvn 0.601184 -0.198096 -0.774132\nvn 0.571154 0.386090 -0.724326\nvn 0.150761 0.231605 -0.961028\nvn 0.088839 -0.279122 -0.956114\nvn 0.292917 -0.317209 -0.901975\nvn 0.584948 -0.295602 -0.755242\nvn 0.797754 -0.324870 -0.507920\nvn 0.869350 -0.173376 -0.462722\nvn 0.544176 -0.152257 -0.825007\nvn 0.118748 -0.154973 -0.980743\nvn -0.777856 -0.096103 -0.621021\nvn -0.401654 -0.058901 -0.913877\nvn -0.062258 -0.283944 -0.956786\nvn -0.418500 -0.317240 -0.850978\nvn -0.349498 -0.399457 -0.847468\nvn -0.271157 -0.719657 -0.639149\nvn -0.660482 -0.489090 -0.569659\nvn -0.654714 -0.657277 -0.373180\nvn -0.560411 -0.755455 -0.339427\nvn -0.530076 -0.788324 -0.312235\nvn -0.443709 -0.880673 -0.165838\nvn -0.096377 -0.989837 0.104312\nvn 0.251869 -0.891171 0.377270\nvn 0.416517 -0.802637 0.426893\nvn 0.383190 -0.549150 0.742668\nvn 0.316538 -0.464766 0.826899\nvn 0.065859 -0.324503 0.943571\nvn 0.007050 -0.110508 0.993835\nvn -0.073977 -0.270882 0.959746\nvn -0.029786 -0.391552 0.919645\nvn 0.014588 0.187384 0.982147\nvn -0.280404 -0.188238 0.941221\nvn -0.131565 0.772607 0.621082\nvn -0.365856 0.794763 0.484207\nvn 0.007904 0.909879 0.414747\nvn -0.593707 0.247902 0.765526\nvn -0.195624 -0.952788 0.232185\nvn -0.165899 -0.896634 0.410443\nvn -0.233314 -0.696310 0.678732\nvn -0.141362 -0.740989 0.656453\nvn -0.111850 -0.919004 0.378002\nvn -0.030122 -0.360363 0.932310\nvn -0.027406 -0.055635 0.998047\nvn -0.232093 -0.411206 0.881466\nvn -0.460189 -0.675069 0.576556\nvn -0.608112 0.137455 0.781823\nvn -0.806330 -0.402600 0.433241\nvn -0.374645 -0.893521 0.247444\nvn -0.387066 0.915860 0.106418\nvn -0.614856 -0.690481 0.380932\nvn -0.616260 -0.733879 0.285684\nvn -0.962462 -0.041536 0.268166\nvn -0.903714 -0.347240 0.250343\nvn -0.356731 -0.915311 0.186865\nvn -0.822687 -0.430494 0.371258\nvn -0.791650 -0.415723 0.447676\nvn -0.918027 -0.258217 0.300882\nvn -0.937254 -0.309427 0.160466\nvn -0.967742 -0.095828 0.232887\nvn -0.887478 -0.446669 -0.113132\nvn -0.823542 -0.530992 -0.199500\nvn -0.780023 -0.510422 -0.361919\nvn -0.787255 -0.453078 -0.418195\nvn -0.627461 -0.687063 -0.366375\nvn -0.945311 -0.083621 -0.315256\nvn -0.922422 -0.142796 -0.358776\nvn -0.884823 -0.308390 -0.349223\nvn -0.933470 -0.307077 -0.185095\nvn -0.896695 -0.425733 -0.121067\nvn -0.930509 -0.359386 0.070223\nvn -0.906400 -0.325571 0.269051\nvn -0.919706 -0.203894 0.335459\nvn -0.916562 0.017518 0.399487\nvn -0.872646 0.120151 0.473312\nvn -0.902280 0.130192 0.410993\nvn -0.612018 0.087954 0.785913\nvn -0.245033 0.110691 0.963164\nvn -0.433180 -0.720817 0.541063\nvn -0.738304 -0.669881 0.078249\nvn -0.935514 -0.274056 0.222816\nvn -0.983215 0.103946 0.149754\nvn -0.820948 -0.528428 -0.216285\nvn -0.415967 -0.909360 -0.001129\nvn -0.517930 -0.854274 -0.044069\nvn -0.498276 -0.866329 -0.034242\nvn -0.192816 -0.954222 0.228584\nvn 0.137791 -0.875912 0.462355\nvn 0.090579 -0.682363 0.725364\nvn 0.152287 -0.864376 0.479202\nvn 0.154180 -0.776391 0.611072\nvn 0.084872 -0.916898 0.389904\nvn 0.398877 -0.546800 0.736106\nvn 0.394452 -0.199133 0.897061\nvn -0.049226 -0.188482 0.980834\nvn -0.113987 -0.758202 0.641957\nvn -0.566668 -0.403760 0.718223\nvn -0.561907 0.393536 0.727561\nvn -0.942930 -0.175024 0.283212\nvn -0.609180 -0.750755 0.255379\nvn -0.298654 -0.881558 0.365581\nvn -0.644642 -0.764367 -0.012574\nvn -0.969481 -0.178594 -0.167821\nvn -0.926695 0.194555 -0.321421\nvn -0.858272 0.461989 -0.223334\nvn -0.944304 0.273629 -0.182623\nvn -0.844844 0.524796 0.103793\nvn -0.455489 0.660909 0.596393\nvn -0.850093 0.525956 -0.026093\nvn -0.902676 0.416883 0.106357\nvn -0.966247 0.250465 -0.060213\nvn -0.925504 0.288736 0.245003\nvn -0.933744 0.113559 0.339427\nvn -0.979858 -0.078616 0.183386\nvn -0.949522 -0.301950 0.084902\nvn -0.968383 -0.170782 -0.181646\nvn -0.983245 -0.050417 -0.174993\nvn -0.998047 0.033784 0.051973\nvn -0.986328 -0.133824 0.095859\nvn -0.883908 -0.044099 0.465499\nvn -0.806391 0.237159 0.541704\nvn -0.995575 0.083407 -0.043001\nvn -0.966643 0.198553 0.161748\nvn -0.525559 0.506943 0.683187\nvn -0.500259 0.569720 0.651997\nvn 0.123569 0.401318 0.907529\nvn 0.241310 0.509384 0.825983\nvn 0.114078 0.510239 0.852412\nvn 0.411206 0.253151 0.875668\nvn 0.540056 0.172430 0.823756\nvn 0.095157 0.087680 0.991577\nvn 0.005646 -0.288217 0.957518\nvn -0.164739 0.006165 0.986297\nvn -0.177221 0.119236 0.976897\nvn -0.106052 -0.216132 0.970580\nvn -0.168554 -0.440321 0.881832\nvn -0.249886 -0.423963 0.870479\nvn -0.623096 0.235694 0.745750\nvn -0.545701 -0.125126 0.828578\nvn -0.088198 0.877865 0.470656\nvn 0.116977 0.946379 0.301065\nvn -0.113590 0.433210 0.894101\nvn -0.047182 -0.338481 0.939787\nvn 0.150792 -0.375622 0.914396\nvn 0.326853 -0.444136 0.834193\nvn 0.400067 -0.327158 0.856075\nvn 0.142247 -0.318339 0.937223\nvn 0.058290 -0.094272 0.993835\nvn -0.100528 0.100955 0.989776\nvn -0.007691 0.274819 0.961455\nvn 0.297403 0.231361 0.926267\nvn 0.433363 0.442427 0.785119\nvn 0.081301 0.182684 0.979797\nvn -0.614673 0.030610 0.788171\nvn -0.861110 -0.192907 0.470351\nvn -0.929044 -0.368694 -0.030183\nvn -0.889523 -0.456801 0.007691\nvn -0.890866 -0.016266 0.453932\nvn -0.460524 0.740745 0.489029\nvn -0.782891 0.002380 0.622120\nvn -0.652303 0.569689 0.499893\nvn -0.664785 0.567156 0.486129\nvn -0.739280 0.124699 0.661733\nvn -0.663472 -0.568499 0.486404\nvn -0.948698 -0.024445 0.315165\nvn -0.875027 0.302072 0.378216\nvn -0.971648 -0.159612 0.174383\nvn -0.967162 -0.211066 -0.141392\nvn -0.940184 -0.038972 -0.338389\nvn -0.874050 0.075777 -0.479843\nvn -0.970061 0.173193 -0.170080\nvn -0.993347 -0.060976 -0.097568\nvn -0.534654 -0.619160 -0.575091\nvn -0.816980 -0.380657 -0.433119\nvn 0.724296 -0.316538 -0.612507\nvn 0.360424 -0.709983 -0.604938\nvn 0.149480 -0.079012 -0.985595\nvn 0.371502 0.928404 -0.006592\nvn -0.820673 0.403088 -0.404920\nvn -0.770531 0.566851 0.291452\nvn -0.696097 0.699973 -0.159429\nvn 0.536149 0.804437 -0.255684\nvn -0.714316 0.421125 -0.558855\nvn 0.680380 0.372631 -0.631031\nvn -0.098331 -0.269845 -0.957854\nvn 0.624775 -0.144383 -0.767327\nvn -0.918271 0.272622 -0.287088\nvn -0.994934 0.080355 -0.060244\nvn -0.963469 -0.267434 0.012543\nvn -0.954161 -0.246284 -0.169897\nvn -0.985412 -0.140141 0.096225\nvn -0.956084 -0.234352 0.175939\nvn -0.898434 -0.261696 0.352489\nvn -0.726890 -0.208258 0.654378\nvn -0.617084 -0.585131 0.526109\nvn -0.667745 -0.111179 0.735984\nvn -0.818354 -0.158208 0.552477\nvn -0.915952 -0.250862 0.313120\nvn -0.881405 -0.359661 0.306131\nvn -0.716392 -0.594317 0.365398\nvn -0.689444 -0.640706 0.337779\nvn -0.928922 0.258065 0.265450\nvn -0.840022 -0.506363 0.194769\nvn -0.877132 -0.212958 0.430403\nvn -0.612720 -0.106815 0.783013\nvn -0.250862 -0.202094 0.946684\nvn 0.247627 -0.386364 0.888455\nvn 0.284677 0.064058 0.956450\nvn -0.325236 0.229865 0.917234\nvn -0.237831 -0.053835 0.969787\nvn 0.143681 -0.150853 0.978027\nvn 0.063509 -0.175176 0.982452\nvn -0.413343 -0.003143 0.910550\nvn -0.148839 0.291086 0.945036\nvn -0.315836 0.564592 0.762535\nvn -0.299509 0.561632 0.771264\nvn -0.075991 -0.037599 0.996368\nvn -0.321421 -0.573656 0.753380\nvn -0.460036 0.120487 0.879665\nvn -0.348613 0.739036 0.576403\nvn -0.027253 0.244484 0.969237\nvn -0.371502 -0.588794 0.717795\nvn -0.224433 -0.026307 0.974120\nvn -0.553850 -0.112888 0.824915\nvn -0.462172 -0.212256 0.860988\nvn -0.128819 -0.273324 0.953246\nvn -0.340220 -0.165410 0.925657\nvn -0.172369 -0.648457 0.741447\nvn -0.191717 -0.602191 0.774957\nvn 0.005310 -0.519059 0.854701\nvn -0.268105 -0.164892 0.949156\nvn -0.354228 0.196539 0.914243\nvn -0.208625 -0.223029 0.952208\nvn -0.589740 0.270547 0.760888\nvn -0.797082 0.203253 0.568621\nvn -0.858638 -0.155980 0.488235\nvn -0.955657 0.072970 0.285257\nvn -0.895718 0.350719 0.273232\nvn -0.902951 0.362133 0.231330\nvn -0.759209 0.302408 0.576250\nvn -0.578997 0.324015 0.748161\nvn -0.569109 0.365917 0.736320\nvn -0.715415 0.391491 0.578661\nvn -0.685781 0.580554 0.438826\nvn -0.476699 0.620319 0.622822\nvn -0.380261 0.386425 0.840266\nvn -0.368938 0.296487 0.880856\nvn -0.041139 0.337748 0.940306\nvn 0.001465 0.348430 0.937315\nvn -0.248299 0.573901 0.780358\nvn -0.061495 0.863247 0.500961\nvn -0.267434 0.893796 0.359996\nvn 0.076571 0.993927 -0.078829\nvn -0.454695 0.869228 0.193976\nvn -0.237953 0.926054 -0.292856\nvn 0.073519 0.737022 -0.671834\nvn -0.422834 0.593646 -0.684652\nvn 0.398083 0.772210 -0.495132\nvn 0.647572 0.728416 -0.223670\nvn 0.359111 0.917020 0.173345\nvn 0.313456 0.747459 0.585681\nvn 0.190619 0.556688 0.808527\nvn 0.506180 0.251106 0.825037\nvn 0.301187 0.060793 0.951598\nvn -0.043458 0.059206 0.997284\nvn -0.089846 -0.371563 0.924039\nvn -0.086215 -0.263344 0.960814\nvn 0.056825 -0.249611 0.966674\nvn 0.143010 -0.157140 0.977142\nvn 0.216407 -0.285195 0.933714\nvn 0.555376 -0.061525 0.829279\nvn 0.391491 -0.266549 0.880703\nvn 0.367656 -0.231178 0.900754\nvn 0.407178 -0.071383 0.910550\nvn 0.192267 0.015809 0.981201\nvn 0.407758 -0.191534 0.892758\nvn 0.547410 -0.329936 0.769036\nvn 0.587970 -0.473830 0.655538\nvn 0.568896 -0.165258 0.805597\nvn 0.678671 0.052339 0.732536\nvn 0.599231 0.381634 0.703726\nvn 0.539689 0.383160 0.749596\nvn 0.637593 0.416028 0.648335\nvn 0.756279 0.229865 0.612507\nvn 0.816675 0.085482 0.570696\nvn 0.952452 0.156346 0.261422\nvn 0.777703 0.575579 0.252693\nvn 0.525346 0.736534 0.426008\nvn 0.872677 -0.134953 0.469253\nvn 0.918241 -0.090640 -0.385479\nvn -0.066164 0.934996 -0.348369\nvn 0.412427 -0.311869 -0.855922\nvn 0.133091 0.810511 -0.570360\nvn 0.336558 0.684378 0.646748\nvn 0.723167 0.399518 0.563341\nvn 0.453993 0.376019 -0.807733\nvn 0.947844 -0.285684 -0.141240\nvn 0.611042 -0.402264 0.681722\nvn 0.334330 -0.080996 0.938932\nvn -0.085116 0.556475 0.826472\nvn 0.403394 0.152470 0.902219\nvn 0.533341 -0.105930 0.839229\nvn 0.494522 -0.704062 0.509598\nvn 0.485916 -0.711905 -0.506974\nvn 0.675802 -0.637532 0.369854\nvn 0.589923 -0.143895 -0.794488\nvn -0.481521 0.177953 -0.858150\nvn -0.254463 -0.213202 -0.943266\nvn -0.669210 -0.111667 -0.734611\nvn -0.749901 0.109134 -0.652455\nvn -0.773095 0.252937 -0.581622\nvn -0.775597 0.437391 -0.455092\nvn -0.850703 0.404187 -0.335978\nvn -0.819971 0.572008 0.019562\nvn -0.629994 0.761773 -0.150945\nvn -0.526688 0.752434 -0.395428\nvn 0.199622 -0.473190 0.858028\nvn -0.793176 -0.582324 0.178014\nvn -0.523270 -0.538957 0.660024\nvn 0.008759 -0.594378 0.804102\nvn -0.282571 -0.058901 0.957427\nvn -0.614673 0.029603 0.788202\nvn -0.861141 -0.050172 0.505814\nvn -0.860439 -0.103244 0.498947\nvn -0.535752 -0.505020 0.676656\nvn -0.277047 -0.112033 0.954283\nvn -0.180425 -0.592669 0.784967\nvn -0.493118 -0.610218 0.620014\nvn -0.612110 -0.117161 0.782006\nvn -0.848384 -0.179693 0.497879\nvn -0.728660 -0.584429 0.356975\nvn -0.892087 -0.378613 0.246529\nvn -0.952666 0.202002 0.227088\nvn -0.555925 0.779015 0.289834\nvn -0.302622 0.952727 -0.026460\nvn -0.418653 0.882839 0.212806\nvn -0.673513 -0.123325 0.728782\nvn -0.567583 0.234870 0.789087\nvn -0.831507 0.444075 0.333689\ng mesh1.002_mesh1-geometry_male-02-1noCullingID_male-02-1noCulling.JP\nusemtl male-02-1noCullingID_male-02-1noCulling.JP\ns 1\nf 1/1/1 2/2/2 3/3/3\nf 1/1/1 4/4/4 2/2/2\nf 4/4/4 1/1/1 5/5/5\nf 11/6/6 10/7/7 8/8/8\nf 11/6/6 12/9/9 10/7/7\nf 11/6/6 13/10/10 12/9/9\nf 13/10/10 11/6/6 14/11/11\nf 14/11/11 11/6/6 15/12/12\nf 11/6/6 8/8/8 15/12/12\nf 8/8/8 16/13/13 15/12/12\nf 16/13/13 8/8/8 5/14/5\nf 5/5/5 1/1/1 16/15/13\nf 16/15/13 1/1/1 17/16/14\nf 1/1/1 3/3/3 17/16/14\nf 3/3/3 18/17/15 17/16/14\nf 3/3/3 19/18/16 18/17/15\nf 3/3/3 20/19/17 19/18/16\nf 2/2/2 20/19/17 3/3/3\nf 57/20/18 56/21/19 12/22/9\nf 57/20/18 58/23/20 56/21/19\nf 57/20/18 59/24/21 58/23/20\nf 57/20/18 60/25/22 59/24/21\nf 13/26/10 60/25/22 57/20/18\nf 13/26/10 61/27/23 60/25/22\nf 13/10/10 14/11/11 61/28/23\nf 62/29/24 61/28/23 14/11/11\nf 62/29/24 63/30/25 61/28/23\nf 62/29/24 64/31/26 63/30/25\nf 64/31/26 62/29/24 65/32/27\nf 65/32/27 62/29/24 66/33/28\nf 66/33/28 62/29/24 14/11/11\nf 66/33/28 14/11/11 67/34/29\nf 14/11/11 15/12/12 67/34/29\nf 67/34/29 15/12/12 68/35/30\nf 15/12/12 16/13/13 68/35/30\nf 68/36/30 16/15/13 17/16/14\nf 68/37/30 17/38/14 69/39/31\nf 70/40/32 69/39/31 17/38/14\nf 71/41/33 69/39/31 70/40/32\nf 71/42/33 66/33/28 69/43/31\nf 65/32/27 66/33/28 71/42/33\nf 65/32/27 71/42/33 72/44/34\nf 71/41/33 70/40/32 72/45/34\nf 73/46/35 72/45/34 70/40/32\nf 74/47/36 72/44/34 73/48/35\nf 74/47/36 75/49/37 72/44/34\nf 75/49/37 74/47/36 76/50/38\nf 74/47/36 77/51/39 76/50/38\nf 78/52/40 77/51/39 74/47/36\nf 77/51/39 78/52/40 79/53/41\nf 78/52/40 80/54/42 79/53/41\nf 80/54/42 78/52/40 81/55/43\nf 78/52/40 73/48/35 81/55/43\nf 78/52/40 74/47/36 73/48/35\nf 81/56/43 73/46/35 82/57/44\nf 73/46/35 70/40/32 82/57/44\nf 70/40/32 83/58/45 82/57/44\nf 70/40/32 18/59/15 83/58/45\nf 70/40/32 17/38/14 18/59/15\nf 18/59/15 84/60/46 83/58/45\nf 18/59/15 85/61/47 84/60/46\nf 18/59/15 86/62/48 85/61/47\nf 18/59/15 87/63/49 86/62/48\nf 19/18/16 87/64/49 18/17/15\nf 19/18/16 88/65/50 87/64/49\nf 89/66/51 88/65/50 19/18/16\nf 89/66/51 90/67/52 88/65/50\nf 91/68/53 90/67/52 89/66/51\nf 92/69/54 90/67/52 91/68/53\nf 93/70/55 90/67/52 92/69/54\nf 93/71/55 94/72/56 90/73/52\nf 95/74/57 94/75/56 93/76/55\nf 95/74/57 96/77/58 94/75/56\nf 60/25/22 96/77/58 95/74/57\nf 97/78/59 96/77/58 60/25/22\nf 97/78/59 98/79/60 96/77/58\nf 97/78/59 99/80/61 98/79/60\nf 97/78/59 63/81/25 99/80/61\nf 63/81/25 97/78/59 61/27/23\nf 61/27/23 97/78/59 60/25/22\nf 63/81/25 100/82/62 99/80/61\nf 63/30/25 64/31/26 100/83/62\nf 64/31/26 101/84/63 100/83/62\nf 101/84/63 64/31/26 75/49/37\nf 64/31/26 65/32/27 75/49/37\nf 75/49/37 65/32/27 72/44/34\nf 76/50/38 101/84/63 75/49/37\nf 101/84/63 76/50/38 102/85/64\nf 102/85/64 76/50/38 103/86/65\nf 76/50/38 77/51/39 103/86/65\nf 77/51/39 104/87/66 103/86/65\nf 77/51/39 79/53/41 104/87/66\nf 104/87/66 79/53/41 105/88/67\nf 105/88/67 79/53/41 106/89/68\nf 79/53/41 107/90/69 106/89/68\nf 79/53/41 80/54/42 107/90/69\nf 80/91/42 108/92/70 107/93/69\nf 108/92/70 80/91/42 109/94/71\nf 80/91/42 110/95/72 109/94/71\nf 110/96/72 80/54/42 81/55/43\nf 110/97/72 81/56/43 111/98/73\nf 81/56/43 82/57/44 111/98/73\nf 82/57/44 112/99/74 111/98/73\nf 82/57/44 83/58/45 112/99/74\nf 83/58/45 113/100/75 112/99/74\nf 83/58/45 84/60/46 113/100/75\nf 113/100/75 84/60/46 114/101/76\nf 84/60/46 115/102/77 114/101/76\nf 84/60/46 116/103/78 115/102/77\nf 84/60/46 85/61/47 116/103/78\nf 85/61/47 117/104/79 116/103/78\nf 86/62/48 117/104/79 85/61/47\nf 86/62/48 118/105/80 117/104/79\nf 88/106/50 118/105/80 86/62/48\nf 88/106/50 119/107/81 118/105/80\nf 88/106/50 120/108/82 119/107/81\nf 88/106/50 121/109/83 120/108/82\nf 90/73/52 121/109/83 88/106/50\nf 94/72/56 121/109/83 90/73/52\nf 94/72/56 122/110/84 121/109/83\nf 96/77/58 122/111/84 94/75/56\nf 96/77/58 98/79/60 122/111/84\nf 98/79/60 123/112/85 122/111/84\nf 124/113/86 123/112/85 98/79/60\nf 124/113/86 125/114/87 123/112/85\nf 124/113/86 126/115/88 125/114/87\nf 124/113/86 127/116/89 126/115/88\nf 99/80/61 127/116/89 124/113/86\nf 100/82/62 127/116/89 99/80/61\nf 100/82/62 128/117/90 127/116/89\nf 100/83/62 101/84/63 128/118/90\nf 101/84/63 102/85/64 128/118/90\nf 128/118/90 102/85/64 129/119/91\nf 102/85/64 130/120/92 129/119/91\nf 102/85/64 103/86/65 130/120/92\nf 103/86/65 131/121/93 130/120/92\nf 103/86/65 132/122/94 131/121/93\nf 104/87/66 132/122/94 103/86/65\nf 104/87/66 133/123/95 132/122/94\nf 104/87/66 105/88/67 133/123/95\nf 105/88/67 134/124/96 133/123/95\nf 105/88/67 106/89/68 134/124/96\nf 106/125/68 135/126/97 134/127/96\nf 107/93/69 135/126/97 106/125/68\nf 107/93/69 136/128/98 135/126/97\nf 107/93/69 108/92/70 136/128/98\nf 136/128/98 108/92/70 137/129/99\nf 137/129/99 108/92/70 138/130/100\nf 108/92/70 109/94/71 138/130/100\nf 138/130/100 109/94/71 139/131/101\nf 109/94/71 140/132/102 139/131/101\nf 109/94/71 110/95/72 140/132/102\nf 110/95/72 141/133/103 140/132/102\nf 110/97/72 111/98/73 141/134/103\nf 111/98/73 142/135/104 141/134/103\nf 111/98/73 143/136/105 142/135/104\nf 111/98/73 112/99/74 143/136/105\nf 112/99/74 144/137/106 143/136/105\nf 112/99/74 113/100/75 144/137/106\nf 144/137/106 113/100/75 145/138/107\nf 113/100/75 114/101/76 145/138/107\nf 145/138/107 114/101/76 146/139/108\nf 114/101/76 147/140/109 146/139/108\nf 114/101/76 115/102/77 147/140/109\nf 115/102/77 148/141/110 147/140/109\nf 115/102/77 116/103/78 148/141/110\nf 116/103/78 149/142/111 148/141/110\nf 116/103/78 150/143/112 149/142/111\nf 117/104/79 150/143/112 116/103/78\nf 117/104/79 151/144/113 150/143/112\nf 118/105/80 151/144/113 117/104/79\nf 119/107/81 151/144/113 118/105/80\nf 119/107/81 152/145/114 151/144/113\nf 119/146/81 152/147/114 153/148/115\nf 154/149/116 152/145/114 119/107/81\nf 154/149/116 155/150/117 152/145/114\nf 156/151/118 155/150/117 154/149/116\nf 156/151/118 157/152/119 155/150/117\nf 158/153/120 157/152/119 156/151/118\nf 158/153/120 159/154/121 157/152/119\nf 160/155/122 159/154/121 158/153/120\nf 160/155/122 161/156/123 159/154/121\nf 162/157/124 161/156/123 160/155/122\nf 162/157/124 163/158/125 161/156/123\nf 162/157/124 164/159/126 163/158/125\nf 162/157/124 165/160/127 164/159/126\nf 166/161/128 165/160/127 162/157/124\nf 166/161/128 167/162/129 165/160/127\nf 168/163/130 167/162/129 166/161/128\nf 168/163/130 169/164/131 167/162/129\nf 170/165/132 169/164/131 168/163/130\nf 170/165/132 171/166/133 169/164/131\nf 172/167/134 171/166/133 170/165/132\nf 129/168/91 171/166/133 172/167/134\nf 129/168/91 173/169/135 171/166/133\nf 129/119/91 130/120/92 173/170/135\nf 130/120/92 174/171/136 173/170/135\nf 130/120/92 131/121/93 174/171/136\nf 131/121/93 175/172/137 174/171/136\nf 131/121/93 176/173/138 175/172/137\nf 131/121/93 132/122/94 176/173/138\nf 132/122/94 177/174/139 176/173/138\nf 132/122/94 133/123/95 177/174/139\nf 133/123/95 178/175/140 177/174/139\nf 133/123/95 134/124/96 178/175/140\nf 134/124/96 179/176/141 178/175/140\nf 134/127/96 180/177/142 179/178/141\nf 135/126/97 180/177/142 134/127/96\nf 181/179/143 180/177/142 135/126/97\nf 180/177/142 181/179/143 182/180/144\nf 181/179/143 183/181/145 182/180/144\nf 181/179/143 184/182/146 183/181/145\nf 185/183/147 184/182/146 181/179/143\nf 184/182/146 185/183/147 186/184/148\nf 185/183/147 137/129/99 186/184/148\nf 185/183/147 136/128/98 137/129/99\nf 136/128/98 185/183/147 135/126/97\nf 135/126/97 185/183/147 181/179/143\nf 186/184/148 137/129/99 187/185/149\nf 137/129/99 138/130/100 187/185/149\nf 187/185/149 138/130/100 188/186/150\nf 138/130/100 139/131/101 188/186/150\nf 139/131/101 189/187/151 188/186/150\nf 139/131/101 190/188/152 189/187/151\nf 140/132/102 190/188/152 139/131/101\nf 140/132/102 191/189/153 190/188/152\nf 141/133/103 191/189/153 140/132/102\nf 141/133/103 142/190/104 191/189/153\nf 142/190/104 192/191/154 191/189/153\nf 192/191/154 142/190/104 193/192/155\nf 143/136/105 193/193/155 142/135/104\nf 143/136/105 144/137/106 193/193/155\nf 144/137/106 194/194/156 193/193/155\nf 144/137/106 145/138/107 194/194/156\nf 194/194/156 145/138/107 195/195/157\nf 145/138/107 146/139/108 195/195/157\nf 195/195/157 146/139/108 196/196/158\nf 146/139/108 197/197/159 196/196/158\nf 146/139/108 147/140/109 197/197/159\nf 147/140/109 198/198/160 197/197/159\nf 147/140/109 148/141/110 198/198/160\nf 148/141/110 199/199/161 198/198/160\nf 148/141/110 149/142/111 199/199/161\nf 149/142/111 200/200/162 199/199/161\nf 149/142/111 150/143/112 200/200/162\nf 150/143/112 201/201/163 200/200/162\nf 150/143/112 202/202/164 201/201/163\nf 150/143/112 203/203/165 202/202/164\nf 151/144/113 203/203/165 150/143/112\nf 151/144/113 204/204/166 203/203/165\nf 152/145/114 204/204/166 151/144/113\nf 155/150/117 204/204/166 152/145/114\nf 155/150/117 205/205/167 204/204/166\nf 157/152/119 205/205/167 155/150/117\nf 157/152/119 206/206/168 205/205/167\nf 157/152/119 159/154/121 206/206/168\nf 159/154/121 207/207/169 206/206/168\nf 161/156/123 207/207/169 159/154/121\nf 161/156/123 208/208/170 207/207/169\nf 163/158/125 208/208/170 161/156/123\nf 163/158/125 209/209/171 208/208/170\nf 163/158/125 210/210/172 209/209/171\nf 164/159/126 210/210/172 163/158/125\nf 164/159/126 211/211/173 210/210/172\nf 212/212/174 211/211/173 164/159/126\nf 212/212/174 213/213/175 211/211/173\nf 214/214/176 213/213/175 212/212/174\nf 215/215/177 213/213/175 214/214/176\nf 215/215/177 216/216/178 213/213/175\nf 217/217/179 216/216/178 215/215/177\nf 217/217/179 218/218/180 216/216/178\nf 217/219/179 219/220/181 218/221/180\nf 220/222/182 219/220/181 217/219/179\nf 220/222/182 221/223/183 219/220/181\nf 222/224/184 221/223/183 220/222/182\nf 221/223/183 222/224/184 223/225/185\nf 222/224/184 224/226/186 223/225/185\nf 222/224/184 225/227/187 224/226/186\nf 225/227/187 222/224/184 226/228/188\nf 226/228/188 222/224/184 220/222/182\nf 226/228/188 220/222/182 227/229/189\nf 227/229/189 220/222/182 217/219/179\nf 227/230/189 217/217/179 215/215/177\nf 227/230/189 215/215/177 228/231/190\nf 228/231/190 215/215/177 214/214/176\nf 229/232/191 228/231/190 214/214/176\nf 230/233/192 228/231/190 229/232/191\nf 230/233/192 227/230/189 228/231/190\nf 230/233/192 231/234/193 227/230/189\nf 232/235/194 231/234/193 230/233/192\nf 232/236/194 233/237/195 231/238/193\nf 174/171/136 233/237/195 232/236/194\nf 174/171/136 175/172/137 233/237/195\nf 175/172/137 225/227/187 233/237/195\nf 175/172/137 176/173/138 225/227/187\nf 225/227/187 176/173/138 224/226/186\nf 176/173/138 234/239/196 224/226/186\nf 176/173/138 177/174/139 234/239/196\nf 177/174/139 235/240/197 234/239/196\nf 177/174/139 178/175/140 235/240/197\nf 178/175/140 236/241/198 235/240/197\nf 178/175/140 179/176/141 236/241/198\nf 179/176/141 194/194/156 236/241/198\nf 179/242/141 237/243/199 194/244/156\nf 238/245/200 237/243/199 179/242/141\nf 239/246/201 237/243/199 238/245/200\nf 237/243/199 239/246/201 240/247/202\nf 241/248/203 240/247/202 239/246/201\nf 241/248/203 242/249/204 240/247/202\nf 243/250/205 242/249/204 241/248/203\nf 243/250/205 244/251/206 242/249/204\nf 245/252/207 244/251/206 243/250/205\nf 245/252/207 246/253/208 244/251/206\nf 247/254/209 246/253/208 245/252/207\nf 247/254/209 248/255/210 246/253/208\nf 247/254/209 249/256/211 248/255/210\nf 250/257/212 249/258/211 247/259/209\nf 251/260/213 249/258/211 250/257/212\nf 251/260/213 252/261/214 249/258/211\nf 251/260/213 253/262/215 252/261/214\nf 251/260/213 254/263/216 253/262/215\nf 250/257/212 254/263/216 251/260/213\nf 255/264/217 254/263/216 250/257/212\nf 255/264/217 256/265/218 254/263/216\nf 257/266/219 256/265/218 255/264/217\nf 257/266/219 258/267/220 256/265/218\nf 257/266/219 259/268/221 258/267/220\nf 260/269/222 259/268/221 257/266/219\nf 260/269/222 261/270/223 259/268/221\nf 260/269/222 262/271/224 261/270/223\nf 262/271/224 260/269/222 263/272/225\nf 263/272/225 260/269/222 264/273/226\nf 260/269/222 257/266/219 264/273/226\nf 264/273/226 257/266/219 255/264/217\nf 264/273/226 255/264/217 265/274/227\nf 265/274/227 255/264/217 250/257/212\nf 250/257/212 247/259/209 265/274/227\nf 265/274/227 247/259/209 245/275/207\nf 265/274/227 245/275/207 266/276/228\nf 266/276/228 245/275/207 243/277/205\nf 266/276/228 243/277/205 267/278/229\nf 267/278/229 243/277/205 241/279/203\nf 267/278/229 241/279/203 268/280/230\nf 268/280/230 241/279/203 239/281/201\nf 268/280/230 239/281/201 182/180/144\nf 182/180/144 239/281/201 238/282/200\nf 180/177/142 182/180/144 238/282/200\nf 180/177/142 238/282/200 179/178/141\nf 182/180/144 183/181/145 268/280/230\nf 183/181/145 269/283/231 268/280/230\nf 183/181/145 270/284/232 269/283/231\nf 184/182/146 270/284/232 183/181/145\nf 270/284/232 184/182/146 271/285/233\nf 184/182/146 186/184/148 271/285/233\nf 271/285/233 186/184/148 272/286/234\nf 186/184/148 187/185/149 272/286/234\nf 272/286/234 187/185/149 273/287/235\nf 187/185/149 188/186/150 273/287/235\nf 188/186/150 274/288/236 273/287/235\nf 188/186/150 189/187/151 274/288/236\nf 189/187/151 275/289/237 274/288/236\nf 189/187/151 276/290/238 275/289/237\nf 190/188/152 276/290/238 189/187/151\nf 190/188/152 277/291/239 276/290/238\nf 191/189/153 277/291/239 190/188/152\nf 191/189/153 192/191/154 277/291/239\nf 192/191/154 237/243/199 277/291/239\nf 237/243/199 192/191/154 193/192/155\nf 237/243/199 193/192/155 194/244/156\nf 277/291/239 237/243/199 240/247/202\nf 277/291/239 240/247/202 242/249/204\nf 242/249/204 276/290/238 277/291/239\nf 244/251/206 276/290/238 242/249/204\nf 244/251/206 275/289/237 276/290/238\nf 246/253/208 275/289/237 244/251/206\nf 246/253/208 278/292/240 275/289/237\nf 248/255/210 278/292/240 246/253/208\nf 248/255/210 279/293/241 278/292/240\nf 280/294/242 279/293/241 248/255/210\nf 280/294/242 281/295/243 279/293/241\nf 280/294/242 282/296/244 281/295/243\nf 249/256/211 282/296/244 280/294/242\nf 249/256/211 283/297/245 282/296/244\nf 249/258/211 284/298/246 283/299/245\nf 252/261/214 284/298/246 249/258/211\nf 252/261/214 285/300/247 284/298/246\nf 252/261/214 253/262/215 285/300/247\nf 253/262/215 286/301/248 285/300/247\nf 287/302/249 286/301/248 253/262/215\nf 287/302/249 288/303/250 286/301/248\nf 287/302/249 289/304/251 288/303/250\nf 256/265/218 289/304/251 287/302/249\nf 256/265/218 258/267/220 289/304/251\nf 258/267/220 290/305/252 289/304/251\nf 259/268/221 290/305/252 258/267/220\nf 261/270/223 290/305/252 259/268/221\nf 261/270/223 291/306/253 290/305/252\nf 261/270/223 292/307/254 291/306/253\nf 262/271/224 292/307/254 261/270/223\nf 262/271/224 270/284/232 292/307/254\nf 270/284/232 262/271/224 269/283/231\nf 269/283/231 262/271/224 263/272/225\nf 269/283/231 263/272/225 267/278/229\nf 267/278/229 263/272/225 266/276/228\nf 263/272/225 264/273/226 266/276/228\nf 266/276/228 264/273/226 265/274/227\nf 268/280/230 269/283/231 267/278/229\nf 270/284/232 271/285/233 292/307/254\nf 292/307/254 271/285/233 293/308/255\nf 271/285/233 272/286/234 293/308/255\nf 293/308/255 272/286/234 294/309/256\nf 272/286/234 273/287/235 294/309/256\nf 273/287/235 295/310/257 294/309/256\nf 273/287/235 274/288/236 295/310/257\nf 274/288/236 278/292/240 295/310/257\nf 274/288/236 275/289/237 278/292/240\nf 295/310/257 278/292/240 279/293/241\nf 295/310/257 279/293/241 296/311/258\nf 296/311/258 279/293/241 281/295/243\nf 296/311/258 281/295/243 297/312/259\nf 297/312/259 281/295/243 298/313/260\nf 282/296/244 298/313/260 281/295/243\nf 282/296/244 299/314/261 298/313/260\nf 300/315/262 299/314/261 282/296/244\nf 300/315/262 301/316/263 299/314/261\nf 300/317/262 302/318/264 301/319/263\nf 303/320/265 302/318/264 300/317/262\nf 303/320/265 304/321/266 302/318/264\nf 303/320/265 305/322/267 304/321/266\nf 284/298/246 305/322/267 303/320/265\nf 284/298/246 285/300/247 305/322/267\nf 285/300/247 306/323/268 305/322/267\nf 286/301/248 306/323/268 285/300/247\nf 286/301/248 307/324/269 306/323/268\nf 286/301/248 288/303/250 307/324/269\nf 288/303/250 308/325/270 307/324/269\nf 288/303/250 309/326/271 308/325/270\nf 289/304/251 309/326/271 288/303/250\nf 289/304/251 290/305/252 309/326/271\nf 290/305/252 310/327/272 309/326/271\nf 311/328/273 310/327/272 290/305/252\nf 311/328/273 312/329/274 310/327/272\nf 297/312/259 312/329/274 311/328/273\nf 297/312/259 298/313/260 312/329/274\nf 312/329/274 298/313/260 313/330/275\nf 299/314/261 313/330/275 298/313/260\nf 299/314/261 314/331/276 313/330/275\nf 301/316/263 314/331/276 299/314/261\nf 301/316/263 315/332/277 314/331/276\nf 316/333/278 315/334/277 301/319/263\nf 316/333/278 317/335/279 315/334/277\nf 316/333/278 318/336/280 317/335/279\nf 316/333/278 319/337/281 318/336/280\nf 302/318/264 319/337/281 316/333/278\nf 302/318/264 304/321/266 319/337/281\nf 304/321/266 320/338/282 319/337/281\nf 321/339/283 320/338/282 304/321/266\nf 321/339/283 322/340/284 320/338/282\nf 321/339/283 323/341/285 322/340/284\nf 306/323/268 323/341/285 321/339/283\nf 306/323/268 307/324/269 323/341/285\nf 307/324/269 324/342/286 323/341/285\nf 307/324/269 308/325/270 324/342/286\nf 308/325/270 325/343/287 324/342/286\nf 326/344/288 325/343/287 308/325/270\nf 326/344/288 327/345/289 325/343/287\nf 328/346/290 327/345/289 326/344/288\nf 328/346/290 329/347/291 327/345/289\nf 328/346/290 313/330/275 329/347/291\nf 312/329/274 313/330/275 328/346/290\nf 312/329/274 328/346/290 310/327/272\nf 310/327/272 328/346/290 326/344/288\nf 310/327/272 326/344/288 309/326/271\nf 309/326/271 326/344/288 308/325/270\nf 314/331/276 329/347/291 313/330/275\nf 314/331/276 330/348/292 329/347/291\nf 315/332/277 330/348/292 314/331/276\nf 315/332/277 331/349/293 330/348/292\nf 315/334/277 317/335/279 331/350/293\nf 332/351/294 331/350/293 317/335/279\nf 332/351/294 333/352/295 331/350/293\nf 333/352/295 332/351/294 334/353/296\nf 332/351/294 335/354/297 334/353/296\nf 332/351/294 336/355/298 335/354/297\nf 332/351/294 317/335/279 336/355/298\nf 336/355/298 317/335/279 318/336/280\nf 337/356/299 336/355/298 318/336/280\nf 337/356/299 338/357/300 336/355/298\nf 337/356/299 339/358/301 338/357/300\nf 337/356/299 340/359/302 339/358/301\nf 341/360/303 340/359/302 337/356/299\nf 341/360/303 342/361/304 340/359/302\nf 320/338/282 342/361/304 341/360/303\nf 320/338/282 322/340/284 342/361/304\nf 322/340/284 343/362/305 342/361/304\nf 322/340/284 344/363/306 343/362/305\nf 323/341/285 344/363/306 322/340/284\nf 323/341/285 324/342/286 344/363/306\nf 324/342/286 345/364/307 344/363/306\nf 325/343/287 345/364/307 324/342/286\nf 325/343/287 346/365/308 345/364/307\nf 327/345/289 346/365/308 325/343/287\nf 327/345/289 347/366/309 346/365/308\nf 327/345/289 329/347/291 347/366/309\nf 330/348/292 347/366/309 329/347/291\nf 330/348/292 348/367/310 347/366/309\nf 331/349/293 348/367/310 330/348/292\nf 333/368/295 348/367/310 331/349/293\nf 333/368/295 349/369/311 348/367/310\nf 333/368/295 350/370/312 349/369/311\nf 333/352/295 334/353/296 350/371/312\nf 351/372/313 350/373/312 334/374/296\nf 351/372/313 352/375/314 350/373/312\nf 351/372/313 353/376/315 352/375/314\nf 351/372/313 354/377/316 353/376/315\nf 355/378/317 354/377/316 351/372/313\nf 356/379/318 354/380/316 355/381/317\nf 357/382/319 354/380/316 356/379/318\nf 357/382/319 353/383/315 354/380/316\nf 357/382/319 358/384/320 353/383/315\nf 357/382/319 359/385/321 358/384/320\nf 360/386/322 359/385/321 357/382/319\nf 345/364/307 359/385/321 360/386/322\nf 346/365/308 359/385/321 345/364/307\nf 346/365/308 361/387/323 359/385/321\nf 346/365/308 347/366/309 361/387/323\nf 348/367/310 361/387/323 347/366/309\nf 349/369/311 361/387/323 348/367/310\nf 358/384/320 361/387/323 349/369/311\nf 359/385/321 361/387/323 358/384/320\nf 349/369/311 352/388/314 358/384/320\nf 350/370/312 352/388/314 349/369/311\nf 352/388/314 353/383/315 358/384/320\nf 345/364/307 360/386/322 344/363/306\nf 344/363/306 360/386/322 343/362/305\nf 343/362/305 360/386/322 356/379/318\nf 356/379/318 360/386/322 357/382/319\nf 343/362/305 356/379/318 362/389/324\nf 356/379/318 355/381/317 362/389/324\nf 362/389/324 355/381/317 363/390/325\nf 363/391/325 355/378/317 351/372/313\nf 339/392/301 363/391/325 351/372/313\nf 340/359/302 363/390/325 339/358/301\nf 340/359/302 362/389/324 363/390/325\nf 340/359/302 342/361/304 362/389/324\nf 342/361/304 343/362/305 362/389/324\nf 339/392/301 351/372/313 338/393/300\nf 338/393/300 351/372/313 335/394/297\nf 335/394/297 351/372/313 334/374/296\nf 336/355/298 338/357/300 335/354/297\nf 320/338/282 341/360/303 319/337/281\nf 319/337/281 341/360/303 318/336/280\nf 337/356/299 318/336/280 341/360/303\nf 306/323/268 321/339/283 305/322/267\nf 305/322/267 321/339/283 304/321/266\nf 301/319/263 302/318/264 316/333/278\nf 364/395/326 297/312/259 311/328/273\nf 364/395/326 296/311/258 297/312/259\nf 294/309/256 296/311/258 364/395/326\nf 294/309/256 295/310/257 296/311/258\nf 293/308/255 294/309/256 364/395/326\nf 291/306/253 293/308/255 364/395/326\nf 292/307/254 293/308/255 291/306/253\nf 291/306/253 364/395/326 311/328/273\nf 291/306/253 311/328/273 290/305/252\nf 284/298/246 303/320/265 283/299/245\nf 303/320/265 300/317/262 283/299/245\nf 283/297/245 300/315/262 282/296/244\nf 256/265/218 287/302/249 254/263/216\nf 254/263/216 287/302/249 253/262/215\nf 249/256/211 280/294/242 248/255/210\nf 236/241/198 194/194/156 195/195/157\nf 236/241/198 195/195/157 365/396/327\nf 365/396/327 195/195/157 196/196/158\nf 365/396/327 196/196/158 366/397/328\nf 196/196/158 197/197/159 366/397/328\nf 197/197/159 367/398/329 366/397/328\nf 197/197/159 198/198/160 367/398/329\nf 198/198/160 368/399/330 367/398/329\nf 198/198/160 199/199/161 368/399/330\nf 199/199/161 369/400/331 368/399/330\nf 199/199/161 370/401/332 369/400/331\nf 199/199/161 200/200/162 370/401/332\nf 200/200/162 371/402/333 370/401/332\nf 200/200/162 201/201/163 371/402/333\nf 202/202/164 371/402/333 201/201/163\nf 202/202/164 372/403/334 371/402/333\nf 373/404/335 372/403/334 202/202/164\nf 373/404/335 374/405/336 372/403/334\nf 373/406/335 374/407/336 375/408/337\nf 373/404/335 376/409/338 374/405/336\nf 205/205/167 376/409/338 373/404/335\nf 205/205/167 206/206/168 376/409/338\nf 206/206/168 377/410/339 376/409/338\nf 206/206/168 207/207/169 377/410/339\nf 207/207/169 378/411/340 377/410/339\nf 207/207/169 379/412/341 378/411/340\nf 208/208/170 379/412/341 207/207/169\nf 208/208/170 380/413/342 379/412/341\nf 209/209/171 380/413/342 208/208/170\nf 209/209/171 381/414/343 380/413/342\nf 382/415/344 381/414/343 209/209/171\nf 382/415/344 383/416/345 381/414/343\nf 384/417/346 383/416/345 382/415/344\nf 384/417/346 385/418/347 383/416/345\ns off\nf 384/417/348 386/419/348 385/418/348\ns 1\nf 387/420/349 386/419/350 384/417/346\nf 387/420/349 388/421/351 386/419/350\nf 387/420/349 389/422/352 388/421/351\nf 390/423/353 389/422/352 387/420/349\nf 390/423/353 391/424/354 389/422/352\nf 218/218/180 391/424/354 390/423/353\nf 218/221/180 392/425/355 391/426/354\nf 218/221/180 219/220/181 392/425/355\nf 219/220/181 393/427/356 392/425/355\nf 219/220/181 221/223/183 393/427/356\nf 393/427/356 221/223/183 394/428/357\nf 221/223/183 223/225/185 394/428/357\nf 394/428/357 223/225/185 395/429/358\nf 223/225/185 234/239/196 395/429/358\nf 224/226/186 234/239/196 223/225/185\nf 234/239/196 235/240/197 395/429/358\nf 395/429/358 235/240/197 396/430/359\nf 235/240/197 397/431/360 396/430/359\nf 235/240/197 365/396/327 397/431/360\nf 235/240/197 236/241/198 365/396/327\nf 365/396/327 366/397/328 397/431/360\nf 397/431/360 366/397/328 398/432/361\nf 366/397/328 367/398/329 398/432/361\nf 367/398/329 399/433/362 398/432/361\nf 367/398/329 368/399/330 399/433/362\nf 368/399/330 400/434/363 399/433/362\nf 368/399/330 369/400/331 400/434/363\nf 369/400/331 401/435/364 400/434/363\nf 369/400/331 402/436/365 401/435/364\nf 369/400/331 370/401/332 402/436/365\nf 370/401/332 403/437/366 402/436/365\nf 370/401/332 371/402/333 403/437/366\nf 371/402/333 372/403/334 403/437/366\nf 372/403/334 404/438/367 403/437/366\nf 372/403/334 374/405/336 404/438/367\nf 374/405/336 405/439/368 404/438/367\nf 374/407/336 405/440/368 406/441/369\nf 374/405/336 407/442/370 405/439/368\nf 376/409/338 407/442/370 374/405/336\nf 376/409/338 377/410/339 407/442/370\nf 377/410/339 378/411/340 407/442/370\nf 378/411/340 408/443/371 407/442/370\nf 378/411/340 409/444/372 408/443/371\nf 379/412/341 409/444/372 378/411/340\nf 379/412/341 410/445/373 409/444/372\nf 380/413/342 410/445/373 379/412/341\nf 380/413/342 411/446/374 410/445/373\nf 381/414/343 411/446/374 380/413/342\nf 381/414/343 412/447/375 411/446/374\nf 383/416/345 412/447/375 381/414/343\nf 383/416/345 413/448/376 412/447/375\nf 385/418/347 413/448/376 383/416/345\nf 385/418/347 414/449/377 413/448/376\nf 415/450/378 414/449/377 385/418/347\nf 415/450/378 416/451/379 414/449/377\nf 415/450/378 417/452/380 416/451/379\nf 418/453/381 417/452/380 415/450/378\nf 418/453/381 419/454/382 417/452/380\nf 420/455/383 419/454/382 418/453/381\nf 421/456/384 419/454/382 420/455/383\nf 419/454/382 421/456/384 422/457/385\nf 421/456/384 423/458/386 422/457/385\nf 421/456/384 424/459/387 423/458/386\nf 425/460/388 424/459/387 421/456/384\nf 425/460/388 426/461/389 424/459/387\nf 427/462/390 426/461/389 425/460/388\nf 427/463/390 428/464/391 426/465/389\nf 427/463/390 429/466/392 428/464/391\nf 430/467/393 429/466/392 427/463/390\nf 430/467/393 431/468/394 429/466/392\nf 391/426/354 431/468/394 430/467/393\nf 391/426/354 392/425/355 431/468/394\nf 392/425/355 432/469/395 431/468/394\nf 392/425/355 393/427/356 432/469/395\nf 432/469/395 393/427/356 433/470/396\nf 393/427/356 394/428/357 433/470/396\nf 433/470/396 394/428/357 434/471/397\nf 394/428/357 395/429/358 434/471/397\nf 434/471/397 395/429/358 396/430/359\nf 434/471/397 396/430/359 435/472/398\nf 435/472/398 396/430/359 436/473/399\nf 396/430/359 397/431/360 436/473/399\nf 436/473/399 397/431/360 398/432/361\nf 436/473/399 398/432/361 437/474/400\nf 399/433/362 437/474/400 398/432/361\nf 399/433/362 438/475/401 437/474/400\nf 400/434/363 438/475/401 399/433/362\nf 400/434/363 439/476/402 438/475/401\nf 401/435/364 439/476/402 400/434/363\nf 401/435/364 440/477/403 439/476/402\nf 401/435/364 441/478/404 440/477/403\nf 402/436/365 441/478/404 401/435/364\nf 402/436/365 442/479/405 441/478/404\nf 403/437/366 442/479/405 402/436/365\nf 404/438/367 442/479/405 403/437/366\nf 404/438/367 443/480/406 442/479/405\nf 405/439/368 443/480/406 404/438/367\nf 405/439/368 444/481/407 443/480/406\nf 408/443/371 444/481/407 405/439/368\nf 408/443/371 445/482/408 444/481/407\nf 409/444/372 445/482/408 408/443/371\nf 409/444/372 446/483/409 445/482/408\nf 410/445/373 446/483/409 409/444/372\nf 410/445/373 447/484/410 446/483/409\nf 411/446/374 447/484/410 410/445/373\nf 411/446/374 448/485/411 447/484/410\nf 412/447/375 448/485/411 411/446/374\nf 413/448/376 448/485/411 412/447/375\nf 413/448/376 449/486/412 448/485/411\nf 414/449/377 449/486/412 413/448/376\nf 414/449/377 450/487/413 449/486/412\nf 416/451/379 450/487/413 414/449/377\nf 416/451/379 451/488/414 450/487/413\nf 452/489/415 451/488/414 416/451/379\nf 452/489/415 453/490/416 451/488/414\nf 454/491/417 453/490/416 452/489/415\nf 455/492/418 453/490/416 454/491/417\nf 455/492/418 456/493/419 453/490/416\nf 456/493/419 457/494/420 453/490/416\nf 453/490/416 457/494/420 458/495/421\nf 457/494/420 459/496/422 458/495/421\nf 458/495/421 459/496/422 460/497/423\nf 459/496/422 461/498/424 460/497/423\nf 460/497/423 461/498/424 462/499/425\nf 461/498/424 463/500/426 462/499/425\nf 462/499/425 463/500/426 464/501/427\nf 464/501/427 463/500/426 465/502/428\nf 465/502/428 463/500/426 466/503/429\nf 465/502/428 466/503/429 467/504/430\nf 467/504/430 466/503/429 468/505/431\nf 467/504/430 468/505/431 469/506/432\nf 470/507/433 467/504/430 469/506/432\nf 471/508/434 467/504/430 470/507/433\nf 471/508/434 465/502/428 467/504/430\nf 472/509/435 465/502/428 471/508/434\nf 472/509/435 464/501/427 465/502/428\nf 473/510/436 464/501/427 472/509/435\nf 462/499/425 464/501/427 473/510/436\nf 462/499/425 473/510/436 474/511/437\nf 474/511/437 473/510/436 475/512/438\nf 475/512/438 473/510/436 472/509/435\nf 475/512/438 472/509/435 476/513/439\nf 476/513/439 472/509/435 471/508/434\nf 476/513/439 471/508/434 477/514/440\nf 477/514/440 471/508/434 478/515/441\nf 478/515/441 471/508/434 479/516/442\nf 479/516/442 471/508/434 470/507/433\nf 479/516/442 470/507/433 480/517/443\nf 480/517/443 470/507/433 481/518/444\nf 470/507/433 469/506/432 481/518/444\nf 482/519/445 480/517/443 481/518/444\nf 482/519/445 483/520/446 480/517/443\nf 482/519/445 484/521/447 483/520/446\nf 485/522/448 484/521/447 482/519/445\nf 485/522/448 486/523/449 484/521/447\nf 487/524/450 486/523/449 485/522/448\nf 487/524/450 488/525/451 486/523/449\nf 489/526/452 488/525/451 487/524/450\nf 489/526/452 490/527/453 488/525/451\nf 491/528/454 490/527/453 489/526/452\nf 491/528/454 492/529/455 490/527/453\nf 493/530/456 492/529/455 491/528/454\nf 493/530/456 494/531/457 492/529/455\nf 495/532/458 494/531/457 493/530/456\nf 495/532/458 496/533/459 494/531/457\nf 432/469/395 496/533/459 495/532/458\nf 432/469/395 433/470/396 496/533/459\nf 496/533/459 433/470/396 497/534/460\nf 433/470/396 434/471/397 497/534/460\nf 497/534/460 434/471/397 435/472/398\nf 497/534/460 435/472/398 498/535/461\nf 498/535/461 435/472/398 499/536/462\nf 435/472/398 436/473/399 499/536/462\nf 499/536/462 436/473/399 437/474/400\nf 499/536/462 437/474/400 500/537/463\nf 438/475/401 500/537/463 437/474/400\nf 438/475/401 501/538/464 500/537/463\nf 439/476/402 501/538/464 438/475/401\nf 439/476/402 502/539/465 501/538/464\nf 440/477/403 502/539/465 439/476/402\nf 440/477/403 503/540/466 502/539/465\nf 440/477/403 504/541/467 503/540/466\nf 441/478/404 504/541/467 440/477/403\nf 441/478/404 505/542/468 504/541/467\nf 442/479/405 505/542/468 441/478/404\nf 443/480/406 505/542/468 442/479/405\nf 443/480/406 506/543/469 505/542/468\nf 444/481/407 506/543/469 443/480/406\nf 444/481/407 507/544/470 506/543/469\nf 445/482/408 507/544/470 444/481/407\nf 445/482/408 508/545/471 507/544/470\nf 445/482/408 446/483/409 508/545/471\nf 446/483/409 509/546/472 508/545/471\nf 446/483/409 510/547/473 509/546/472\nf 447/484/410 510/547/473 446/483/409\nf 448/485/411 510/547/473 447/484/410\nf 449/486/412 510/547/473 448/485/411\nf 449/486/412 511/548/474 510/547/473\nf 450/487/413 511/548/474 449/486/412\nf 450/487/413 512/549/475 511/548/474\nf 451/488/414 512/549/475 450/487/413\nf 451/488/414 458/495/421 512/549/475\nf 453/490/416 458/495/421 451/488/414\nf 458/495/421 513/550/476 512/549/475\nf 458/495/421 460/497/423 513/550/476\nf 460/497/423 474/511/437 513/550/476\nf 460/497/423 462/499/425 474/511/437\nf 513/550/476 474/511/437 514/551/477\nf 474/511/437 475/512/438 514/551/477\nf 514/551/477 475/512/438 515/552/478\nf 515/552/478 475/512/438 476/513/439\nf 515/552/478 476/513/439 516/553/479\nf 516/553/479 476/513/439 477/514/440\nf 516/553/479 477/514/440 517/554/480\nf 517/554/480 477/514/440 518/555/481\nf 518/555/481 477/514/440 478/515/441\nf 519/556/482 518/555/481 478/515/441\nf 520/557/483 518/555/481 519/556/482\nf 520/557/483 521/558/484 518/555/481\nf 503/540/466 521/558/484 520/557/483\nf 504/541/467 521/558/484 503/540/466\nf 504/541/467 522/559/485 521/558/484\nf 505/542/468 522/559/485 504/541/467\nf 506/543/469 522/559/485 505/542/468\nf 506/543/469 523/560/486 522/559/485\nf 507/544/470 523/560/486 506/543/469\nf 507/544/470 524/561/487 523/560/486\nf 507/544/470 508/545/471 524/561/487\nf 508/545/471 525/562/488 524/561/487\nf 508/545/471 509/546/472 525/562/488\nf 509/546/472 526/563/489 525/562/488\nf 511/548/474 526/563/489 509/546/472\nf 512/549/475 526/563/489 511/548/474\nf 512/549/475 513/550/476 526/563/489\nf 513/550/476 514/551/477 526/563/489\nf 526/563/489 514/551/477 525/562/488\nf 525/562/488 514/551/477 515/552/478\nf 524/561/487 525/562/488 515/552/478\nf 524/561/487 515/552/478 516/553/479\nf 524/561/487 516/553/479 523/560/486\nf 523/560/486 516/553/479 517/554/480\nf 523/560/486 517/554/480 522/559/485\nf 522/559/485 517/554/480 521/558/484\nf 521/558/484 517/554/480 518/555/481\nf 511/548/474 509/546/472 510/547/473\nf 503/540/466 520/557/483 527/564/490\nf 527/564/490 520/557/483 528/565/491\nf 520/557/483 519/556/482 528/565/491\nf 528/565/491 519/556/482 529/566/492\nf 519/556/482 530/567/493 529/566/492\nf 519/556/482 478/515/441 530/567/493\nf 530/567/493 478/515/441 479/516/442\nf 530/567/493 479/516/442 483/520/446\nf 483/520/446 479/516/442 480/517/443\nf 530/567/493 483/520/446 484/521/447\nf 529/566/492 530/567/493 484/521/447\nf 529/566/492 484/521/447 486/523/449\nf 531/568/494 529/566/492 486/523/449\nf 528/565/491 529/566/492 531/568/494\nf 532/569/495 528/565/491 531/568/494\nf 527/564/490 528/565/491 532/569/495\nf 533/570/496 527/564/490 532/569/495\nf 502/539/465 527/564/490 533/570/496\nf 503/540/466 527/564/490 502/539/465\nf 502/539/465 533/570/496 501/538/464\nf 501/538/464 533/570/496 534/571/497\nf 534/571/497 533/570/496 535/572/498\nf 533/570/496 532/569/495 535/572/498\nf 535/572/498 532/569/495 536/573/499\nf 536/573/499 532/569/495 531/568/494\nf 488/525/451 536/573/499 531/568/494\nf 490/527/453 536/573/499 488/525/451\nf 490/527/453 537/574/500 536/573/499\nf 492/529/455 537/574/500 490/527/453\nf 492/529/455 538/575/501 537/574/500\nf 494/531/457 538/575/501 492/529/455\nf 494/531/457 539/576/502 538/575/501\nf 496/533/459 539/576/502 494/531/457\nf 496/533/459 497/534/460 539/576/502\nf 539/576/502 497/534/460 498/535/461\nf 539/576/502 498/535/461 540/577/503\nf 540/577/503 498/535/461 541/578/504\nf 498/535/461 499/536/462 541/578/504\nf 541/578/504 499/536/462 500/537/463\nf 541/578/504 500/537/463 534/571/497\nf 501/538/464 534/571/497 500/537/463\nf 542/579/505 541/578/504 534/571/497\nf 540/577/503 541/578/504 542/579/505\nf 538/575/501 540/577/503 542/579/505\nf 539/576/502 540/577/503 538/575/501\nf 538/575/501 542/579/505 537/574/500\nf 537/574/500 542/579/505 535/572/498\nf 542/579/505 534/571/497 535/572/498\nf 537/574/500 535/572/498 536/573/499\nf 488/525/451 531/568/494 486/523/449\nf 543/580/506 432/469/395 495/532/458\nf 431/468/394 432/469/395 543/580/506\nf 431/468/394 543/580/506 429/466/392\nf 543/580/506 544/581/507 429/466/392\nf 544/581/507 543/580/506 545/582/508\nf 543/580/506 495/532/458 545/582/508\nf 545/582/508 495/532/458 493/530/456\nf 545/582/508 493/530/456 546/583/509\nf 546/583/509 493/530/456 491/528/454\nf 491/528/454 547/584/510 546/583/509\nf 547/584/510 491/528/454 489/526/452\nf 547/584/510 489/526/452 548/585/511\nf 548/585/511 489/526/452 487/524/450\nf 548/585/511 487/524/450 549/586/512\nf 549/586/512 487/524/450 550/587/513\nf 487/524/450 485/522/448 550/587/513\nf 550/587/513 485/522/448 551/588/514\nf 485/522/448 482/519/445 551/588/514\nf 551/588/514 482/519/445 481/518/444\nf 552/589/515 548/585/511 549/586/512\nf 553/590/516 548/585/511 552/589/515\nf 553/590/516 554/591/517 548/585/511\nf 554/591/517 553/590/516 555/592/518\nf 554/591/517 555/592/518 556/593/519\nf 556/593/519 555/592/518 557/594/520\nf 556/593/519 557/594/520 558/595/521\nf 558/595/521 557/594/520 559/596/522\nf 558/595/521 559/596/522 560/597/523\nf 560/597/523 559/596/522 561/598/524\nf 561/598/524 559/596/522 562/599/525\nf 563/600/526 561/598/524 562/599/525\nf 564/601/527 561/598/524 563/600/526\nf 564/601/527 565/602/528 561/598/524\nf 566/603/529 565/602/528 564/601/527\nf 566/603/529 567/604/530 565/602/528\nf 426/465/389 567/604/530 566/603/529\nf 426/465/389 428/464/391 567/604/530\nf 428/464/391 568/605/531 567/604/530\nf 544/581/507 568/605/531 428/464/391\nf 568/605/531 544/581/507 569/606/532\nf 544/581/507 545/582/508 569/606/532\nf 569/606/532 545/582/508 546/583/509\nf 546/583/509 570/607/533 569/606/532\nf 546/583/509 547/584/510 570/607/533\nf 547/584/510 554/591/517 570/607/533\nf 554/591/517 547/584/510 548/585/511\nf 570/607/533 554/591/517 556/593/519\nf 570/607/533 556/593/519 571/608/534\nf 571/608/534 556/593/519 558/595/521\nf 571/608/534 558/595/521 572/609/535\nf 572/609/535 558/595/521 560/597/523\nf 572/609/535 560/597/523 565/602/528\nf 565/602/528 560/597/523 561/598/524\nf 567/604/530 572/609/535 565/602/528\nf 568/605/531 572/609/535 567/604/530\nf 568/605/531 571/608/534 572/609/535\nf 569/606/532 571/608/534 568/605/531\nf 569/606/532 570/607/533 571/608/534\nf 429/466/392 544/581/507 428/464/391\nf 426/461/389 566/610/529 424/459/387\nf 424/459/387 566/610/529 573/611/536\nf 566/610/529 564/612/527 573/611/536\nf 573/611/536 564/612/527 574/613/537\nf 564/612/527 563/614/526 574/613/537\nf 574/613/537 563/614/526 575/615/538\nf 563/614/526 576/616/539 575/615/538\nf 563/600/526 562/599/525 576/617/539\nf 574/613/537 575/615/538 577/618/540\nf 578/619/541 574/613/537 577/618/540\nf 573/611/536 574/613/537 578/619/541\nf 423/458/386 573/611/536 578/619/541\nf 424/459/387 573/611/536 423/458/386\nf 423/458/386 578/619/541 579/620/542\nf 579/620/542 578/619/541 580/621/543\nf 578/619/541 577/618/540 580/621/543\nf 579/620/542 580/621/543 581/622/544\nf 582/623/545 579/620/542 581/622/544\nf 422/457/385 579/620/542 582/623/545\nf 422/457/385 423/458/386 579/620/542\nf 583/624/546 422/457/385 582/623/545\nf 419/454/382 422/457/385 583/624/546\nf 417/452/380 419/454/382 583/624/546\nf 417/452/380 583/624/546 452/489/415\nf 452/489/415 583/624/546 454/491/417\nf 583/624/546 582/623/545 454/491/417\nf 454/491/417 582/623/545 455/492/418\nf 582/623/545 581/622/544 455/492/418\nf 416/451/379 417/452/380 452/489/415\nf 407/442/370 408/443/371 405/439/368\nf 391/424/354 430/625/393 389/422/352\nf 389/422/352 430/625/393 584/626/547\nf 430/625/393 427/462/390 584/626/547\nf 584/626/547 427/462/390 425/460/388\nf 584/626/547 425/460/388 420/455/383\nf 420/455/383 425/460/388 421/456/384\nf 388/421/351 584/626/547 420/455/383\nf 389/422/352 584/626/547 388/421/351\nf 420/455/383 418/453/381 388/421/351\nf 388/421/351 418/453/381 386/419/350\nf 418/453/381 415/450/378 386/419/350\nf 386/419/350 415/450/378 385/418/347\nf 405/440/368 585/627/548 406/441/369\nf 405/440/368 586/628/549 585/627/548\nf 586/629/549 587/630/550 585/631/548\nf 586/629/549 588/632/551 587/630/550\nf 589/633/552 588/632/551 586/629/549\nf 589/633/552 590/634/553 588/632/551\nf 591/635/554 590/634/553 589/633/552\nf 591/635/554 592/636/555 590/634/553\nf 593/637/556 592/636/555 591/635/554\nf 594/638/557 592/636/555 593/637/556\nf 594/638/557 595/639/558 592/636/555\nf 596/640/559 595/639/558 594/638/557\nf 596/640/559 597/641/560 595/639/558\nf 598/642/561 597/641/560 596/640/559\nf 598/642/561 599/643/562 597/641/560\nf 600/644/563 599/643/562 598/642/561\nf 600/644/563 601/645/564 599/643/562\nf 602/646/565 601/645/564 600/644/563\nf 602/646/565 603/647/566 601/645/564\nf 604/648/567 603/647/566 602/646/565\nf 604/648/567 605/649/568 603/647/566\nf 606/650/569 605/649/568 604/648/567\nf 606/650/569 607/651/570 605/649/568\nf 608/652/571 607/651/570 606/650/569\nf 608/652/571 609/653/572 607/651/570\nf 610/654/573 609/653/572 608/652/571\nf 610/654/573 611/655/574 609/653/572\nf 612/656/575 611/655/574 610/654/573\nf 612/656/575 613/657/576 611/655/574\nf 614/658/577 613/657/576 612/656/575\nf 614/658/577 615/659/578 613/657/576\nf 616/660/579 615/659/578 614/658/577\nf 616/660/579 617/661/580 615/659/578\nf 618/662/581 617/661/580 616/660/579\nf 618/662/581 619/663/582 617/661/580\nf 620/664/583 619/663/582 618/662/581\nf 620/664/583 621/665/584 619/663/582\nf 622/666/585 621/665/584 620/664/583\nf 622/666/585 623/667/586 621/665/584\nf 624/668/587 623/667/586 622/666/585\nf 624/668/587 625/669/588 623/667/586\nf 626/670/589 625/669/588 624/668/587\nf 626/670/589 627/671/590 625/669/588\nf 628/672/591 627/671/590 626/670/589\nf 628/672/591 629/673/592 627/671/590\nf 630/674/593 629/673/592 628/672/591\nf 630/674/593 631/675/594 629/673/592\nf 632/676/595 631/675/594 630/674/593\nf 633/677/596 631/678/594 632/679/595\nf 633/677/596 634/680/597 631/678/594\nf 633/677/596 635/681/598 634/680/597\nf 633/677/596 636/682/599 635/681/598\nf 637/683/600 636/682/599 633/677/596\nf 638/684/601 636/685/599 637/686/600\nf 639/687/602 636/685/599 638/684/601\nf 639/687/602 635/688/598 636/685/599\nf 640/689/603 635/688/598 639/687/602\nf 640/689/603 634/690/597 635/688/598\nf 629/673/592 634/690/597 640/689/603\nf 629/673/592 631/675/594 634/690/597\nf 629/673/592 640/689/603 627/671/590\nf 627/671/590 640/689/603 641/691/604\nf 640/689/603 639/687/602 641/691/604\nf 641/691/604 639/687/602 642/692/605\nf 642/692/605 639/687/602 638/684/601\nf 642/692/605 638/684/601 643/693/606\nf 643/693/606 638/684/601 644/694/607\nf 638/684/601 637/686/600 644/694/607\nf 645/695/608 644/694/607 637/686/600\nf 646/696/609 644/694/607 645/695/608\nf 646/696/609 647/697/610 644/694/607\nf 648/698/611 647/697/610 646/696/609\nf 648/698/611 649/699/612 647/697/610\nf 650/700/613 649/699/612 648/698/611\nf 650/700/613 651/701/614 649/699/612\nf 650/700/613 652/702/615 651/701/614\nf 653/703/616 652/704/615 650/705/613\nf 654/706/617 652/704/615 653/703/616\nf 654/706/617 655/707/618 652/704/615\nf 654/706/617 656/708/619 655/707/618\nf 657/709/620 656/708/619 654/706/617\nf 657/709/620 658/710/621 656/708/619\nf 658/710/621 657/709/620 659/711/622\nf 659/711/622 657/709/620 660/712/623\nf 657/709/620 654/706/617 660/712/623\nf 660/712/623 654/706/617 653/703/616\nf 661/713/624 660/712/623 653/703/616\nf 659/711/622 660/712/623 661/713/624\nf 659/711/622 661/713/624 662/714/625\nf 662/714/625 661/713/624 663/715/626\nf 661/713/624 664/716/627 663/715/626\nf 664/716/627 661/713/624 665/717/628\nf 661/713/624 653/703/616 665/717/628\nf 665/717/628 653/703/616 648/718/611\nf 653/703/616 650/705/613 648/718/611\nf 665/717/628 648/718/611 666/719/629\nf 666/719/629 648/718/611 646/720/609\nf 667/721/630 666/719/629 646/720/609\nf 668/722/631 666/719/629 667/721/630\nf 664/716/627 666/719/629 668/722/631\nf 664/716/627 665/717/628 666/719/629\nf 664/716/627 668/722/631 669/723/632\nf 668/724/631 633/677/596 669/725/632\nf 667/726/630 633/677/596 668/724/631\nf 667/726/630 645/727/608 633/677/596\nf 667/721/630 646/720/609 645/728/608\nf 645/727/608 637/683/600 633/677/596\nf 669/725/632 633/677/596 632/679/595\nf 663/715/626 669/723/632 632/676/595\nf 663/715/626 664/716/627 669/723/632\nf 630/674/593 663/715/626 632/676/595\nf 662/714/625 663/715/626 630/674/593\nf 628/672/591 662/714/625 630/674/593\nf 659/711/622 662/714/625 628/672/591\nf 659/711/622 628/672/591 626/670/589\nf 670/729/633 659/711/622 626/670/589\nf 670/729/633 658/710/621 659/711/622\nf 671/730/634 658/710/621 670/729/633\nf 658/710/621 671/730/634 672/731/635\nf 671/730/634 673/732/636 672/731/635\nf 671/730/634 674/733/637 673/732/636\nf 674/733/637 671/730/634 675/734/638\nf 675/734/638 671/730/634 670/729/633\nf 675/734/638 670/729/633 622/666/585\nf 622/666/585 670/729/633 624/668/587\nf 670/729/633 626/670/589 624/668/587\nf 620/664/583 675/734/638 622/666/585\nf 676/735/639 675/734/638 620/664/583\nf 676/735/639 674/733/637 675/734/638\nf 677/736/640 674/733/637 676/735/639\nf 674/733/637 677/736/640 678/737/641\nf 677/736/640 679/738/642 678/737/641\nf 677/736/640 680/739/643 679/738/642\nf 680/739/643 677/736/640 681/740/644\nf 681/740/644 677/736/640 676/735/639\nf 681/740/644 676/735/639 618/662/581\nf 618/662/581 676/735/639 620/664/583\nf 616/660/579 681/740/644 618/662/581\nf 682/741/645 681/740/644 616/660/579\nf 682/741/645 680/739/643 681/740/644\nf 683/742/646 680/739/643 682/741/645\nf 680/739/643 683/742/646 684/743/647\nf 683/742/646 685/744/648 684/743/647\nf 683/742/646 686/745/649 685/744/648\nf 686/745/649 683/742/646 687/746/650\nf 687/746/650 683/742/646 682/741/645\nf 687/746/650 682/741/645 614/658/577\nf 614/658/577 682/741/645 616/660/579\nf 612/656/575 687/746/650 614/658/577\nf 688/747/651 687/746/650 612/656/575\nf 688/747/651 686/745/649 687/746/650\nf 689/748/652 686/745/649 688/747/651\nf 686/745/649 689/748/652 690/749/653\nf 689/748/652 691/750/654 690/749/653\nf 689/748/652 692/751/655 691/750/654\nf 692/751/655 689/748/652 693/752/656\nf 693/752/656 689/748/652 688/747/651\nf 693/752/656 688/747/651 610/654/573\nf 610/654/573 688/747/651 612/656/575\nf 608/652/571 693/752/656 610/654/573\nf 694/753/657 693/752/656 608/652/571\nf 694/753/657 692/751/655 693/752/656\nf 695/754/658 692/751/655 694/753/657\nf 695/754/658 696/755/659 692/751/655\nf 695/754/658 697/756/660 696/755/659\nf 698/757/661 697/756/660 695/754/658\nf 699/758/662 697/756/660 698/757/661\nf 699/758/662 700/759/663 697/756/660\nf 701/760/664 700/761/663 699/762/662\nf 701/760/664 702/763/665 700/761/663\nf 703/764/666 702/763/665 701/760/664\nf 703/764/666 704/765/667 702/763/665\nf 705/766/668 704/765/667 703/764/666\nf 705/766/668 706/767/669 704/765/667\nf 707/768/670 706/767/669 705/766/668\nf 707/768/670 708/769/671 706/767/669\nf 709/770/672 708/769/671 707/768/670\nf 709/770/672 710/771/673 708/769/671\nf 711/772/674 710/771/673 709/770/672\nf 711/772/674 712/773/675 710/771/673\nf 713/774/676 712/773/675 711/772/674\nf 713/774/676 714/775/677 712/773/675\nf 715/776/678 714/775/677 713/774/676\nf 715/776/678 716/777/679 714/775/677\nf 717/778/680 716/777/679 715/776/678\nf 717/778/680 718/779/681 716/777/679\nf 719/780/682 718/779/681 717/778/680\nf 719/780/682 720/781/683 718/779/681\nf 721/782/684 720/781/683 719/780/682\nf 721/782/684 722/783/685 720/781/683\nf 723/784/686 722/783/685 721/782/684\nf 723/784/686 724/785/687 722/783/685\nf 725/786/688 724/785/687 723/784/686\nf 725/786/688 726/787/689 724/785/687\nf 725/786/688 727/788/690 726/787/689\nf 728/789/691 727/788/690 725/786/688\nf 728/789/691 729/790/692 727/788/690\nf 730/791/693 729/790/692 728/789/691\nf 730/791/693 731/792/694 729/790/692\nf 730/791/693 732/793/695 731/792/694\nf 733/794/696 732/793/695 730/791/693\nf 733/794/696 734/795/697 732/793/695\nf 735/796/698 734/795/697 733/794/696\nf 734/795/697 735/796/698 736/797/699\nf 735/796/698 737/798/700 736/797/699\nf 735/796/698 738/799/701 737/798/700\nf 738/799/701 735/796/698 739/800/702\nf 739/800/702 735/796/698 733/794/696\nf 739/800/702 733/794/696 740/801/703\nf 740/801/703 733/794/696 730/791/693\nf 730/791/693 728/789/691 740/801/703\nf 740/801/703 728/789/691 725/786/688\nf 740/801/703 725/786/688 741/802/704\nf 741/802/704 725/786/688 723/784/686\nf 741/802/704 723/784/686 742/803/705\nf 742/803/705 723/784/686 721/782/684\nf 742/803/705 721/782/684 743/804/706\nf 743/804/706 721/782/684 719/780/682\nf 744/805/707 743/804/706 719/780/682\nf 744/805/707 745/806/708 743/804/706\nf 746/807/709 745/806/708 744/805/707\nf 746/807/709 747/808/710 745/806/708\nf 748/809/711 747/808/710 746/807/709\nf 747/808/710 748/809/711 749/810/712\nf 748/809/711 750/811/713 749/810/712\nf 748/809/711 751/812/714 750/811/713\nf 751/812/714 748/809/711 752/813/715\nf 752/813/715 748/809/711 746/807/709\nf 752/813/715 746/807/709 753/814/716\nf 753/814/716 746/807/709 744/805/707\nf 753/814/716 744/805/707 717/778/680\nf 717/778/680 744/805/707 719/780/682\nf 715/776/678 753/814/716 717/778/680\nf 754/815/717 753/814/716 715/776/678\nf 754/815/717 752/813/715 753/814/716\nf 755/816/718 752/813/715 754/815/717\nf 755/816/718 751/812/714 752/813/715\nf 756/817/719 751/812/714 755/816/718\nf 751/812/714 756/817/719 757/818/720\nf 756/817/719 758/819/721 757/818/720\nf 756/817/719 759/820/722 758/819/721\nf 759/820/722 756/817/719 760/821/723\nf 760/821/723 756/817/719 755/816/718\nf 760/821/723 755/816/718 761/822/724\nf 761/822/724 755/816/718 754/815/717\nf 754/815/717 713/774/676 761/822/724\nf 713/774/676 754/815/717 715/776/678\nf 761/822/724 713/774/676 711/772/674\nf 761/822/724 711/772/674 762/823/725\nf 762/823/725 711/772/674 709/770/672\nf 763/824/726 762/823/725 709/770/672\nf 763/824/726 764/825/727 762/823/725\nf 765/826/728 764/825/727 763/824/726\nf 765/826/728 766/827/729 764/825/727\nf 767/828/730 766/827/729 765/826/728\nf 766/827/729 767/828/730 768/829/731\nf 767/828/730 769/830/732 768/829/731\nf 767/828/730 770/831/733 769/830/732\nf 770/831/733 767/828/730 771/832/734\nf 771/832/734 767/828/730 765/826/728\nf 771/832/734 765/826/728 772/833/735\nf 772/833/735 765/826/728 763/824/726\nf 772/833/735 763/824/726 707/768/670\nf 707/768/670 763/824/726 709/770/672\nf 705/766/668 772/833/735 707/768/670\nf 773/834/736 772/833/735 705/766/668\nf 773/834/736 771/832/734 772/833/735\nf 774/835/737 771/832/734 773/834/736\nf 774/835/737 770/831/733 771/832/734\nf 775/836/738 770/831/733 774/835/737\nf 770/831/733 775/836/738 776/837/739\nf 775/836/738 777/838/740 776/837/739\nf 775/836/738 778/839/741 777/838/740\nf 778/839/741 775/836/738 779/840/742\nf 779/840/742 775/836/738 774/835/737\nf 779/840/742 774/835/737 780/841/743\nf 780/841/743 774/835/737 773/834/736\nf 780/841/743 773/834/736 703/764/666\nf 703/764/666 773/834/736 705/766/668\nf 780/841/743 703/764/666 701/760/664\nf 781/842/744 780/841/743 701/760/664\nf 781/842/744 779/840/742 780/841/743\nf 782/843/745 779/840/742 781/842/744\nf 778/839/741 779/840/742 782/843/745\nf 783/844/746 778/839/741 782/843/745\nf 778/839/741 783/844/746 784/845/747\nf 783/844/746 785/846/748 784/845/747\nf 783/844/746 786/847/749 785/846/748\nf 786/847/749 783/844/746 787/848/750\nf 783/844/746 782/843/745 787/848/750\nf 787/848/750 782/843/745 788/849/751\nf 788/849/751 782/843/745 781/842/744\nf 788/849/751 781/842/744 789/850/752\nf 781/842/744 699/762/662 789/850/752\nf 781/842/744 701/760/664 699/762/662\nf 789/851/752 699/758/662 698/757/661\nf 790/852/753 789/851/752 698/757/661\nf 791/853/754 789/851/752 790/852/753\nf 788/849/751 789/850/752 791/854/754\nf 792/855/755 788/849/751 791/854/754\nf 792/855/755 787/848/750 788/849/751\nf 793/856/756 787/848/750 792/855/755\nf 793/856/756 786/847/749 787/848/750\nf 793/856/756 794/857/757 786/847/749\nf 793/856/756 795/858/758 794/857/757\nf 795/858/758 793/856/756 796/859/759\nf 796/859/759 793/856/756 792/855/755\nf 796/859/759 792/855/755 797/860/760\nf 797/860/760 792/855/755 791/854/754\nf 797/861/760 791/853/754 798/862/761\nf 798/862/761 791/853/754 790/852/753\nf 798/862/761 790/852/753 799/863/762\nf 799/863/762 790/852/753 800/864/763\nf 790/852/753 698/757/661 800/864/763\nf 800/864/763 698/757/661 801/865/764\nf 698/757/661 695/754/658 801/865/764\nf 801/865/764 695/754/658 694/753/657\nf 801/865/764 694/753/657 606/650/569\nf 606/650/569 694/753/657 608/652/571\nf 604/648/567 801/865/764 606/650/569\nf 604/648/567 800/864/763 801/865/764\nf 602/646/565 800/864/763 604/648/567\nf 602/646/565 799/863/762 800/864/763\nf 600/644/563 799/863/762 602/646/565\nf 802/866/765 799/863/762 600/644/563\nf 802/866/765 798/862/761 799/863/762\nf 803/867/766 798/862/761 802/866/765\nf 803/867/766 797/861/760 798/862/761\nf 803/867/766 804/868/767 797/861/760\nf 805/869/768 804/868/767 803/867/766\nf 805/870/768 796/859/759 804/871/767\nf 805/870/768 806/872/769 796/859/759\nf 807/873/770 806/872/769 805/870/768\nf 807/873/770 808/874/771 806/872/769\nf 808/874/771 809/875/772 806/872/769\nf 808/874/771 810/876/773 809/875/772\nf 810/876/773 811/877/774 809/875/772\nf 810/876/773 812/878/775 811/877/774\nf 811/877/774 812/878/775 813/879/776\nf 812/878/775 814/880/777 813/879/776\nf 814/880/777 815/881/778 813/879/776\nf 814/880/777 816/882/779 815/881/778\nf 816/882/779 817/883/780 815/881/778\nf 818/884/781 817/883/780 816/882/779\nf 818/884/781 819/885/782 817/883/780\nf 820/886/783 819/885/782 818/884/781\nf 820/886/783 821/887/784 819/885/782\nf 822/888/785 821/887/784 820/886/783\nf 821/887/784 822/888/785 585/631/548\nf 406/441/369 585/627/548 822/889/785\nf 406/441/369 822/889/785 823/890/786\nf 823/890/786 822/889/785 824/891/787\nf 824/891/787 822/889/785 820/892/783\nf 824/891/787 820/892/783 401/893/364\nf 401/893/364 820/892/783 818/894/781\nf 369/895/331 824/891/787 401/893/364\nf 369/895/331 825/896/788 824/891/787\nf 199/897/161 825/896/788 369/895/331\nf 199/897/161 826/898/789 825/896/788\nf 115/899/77 826/898/789 199/897/161\nf 115/899/77 827/900/790 826/898/789\nf 84/901/46 827/900/790 115/899/77\nf 84/901/46 828/902/791 827/900/790\nf 18/903/15 828/902/791 84/901/46\nf 18/903/15 829/904/792 828/902/791\nf 18/903/15 87/905/49 829/904/792\nf 88/906/50 829/904/792 87/905/49\nf 88/906/50 830/907/793 829/904/792\nf 88/906/50 119/146/81 830/907/793\nf 119/146/81 153/148/115 830/907/793\nf 830/907/793 153/148/115 831/908/794\nf 831/908/794 153/148/115 832/909/795\nf 153/148/115 833/910/796 832/909/795\nf 152/147/114 833/910/796 153/148/115\nf 152/147/114 373/406/335 833/910/796\nf 373/406/335 375/408/337 833/910/796\nf 833/910/796 375/408/337 834/911/797\nf 834/911/797 375/408/337 823/890/786\nf 375/408/337 406/441/369 823/890/786\nf 375/408/337 374/407/336 406/441/369\nf 825/896/788 834/911/797 823/890/786\nf 826/898/789 834/911/797 825/896/788\nf 826/898/789 832/909/795 834/911/797\nf 827/900/790 832/909/795 826/898/789\nf 831/908/794 832/909/795 827/900/790\nf 828/902/791 831/908/794 827/900/790\nf 829/904/792 831/908/794 828/902/791\nf 829/904/792 830/907/793 831/908/794\nf 833/910/796 834/911/797 832/909/795\nf 825/896/788 823/890/786 824/891/787\nf 88/106/50 86/62/48 87/63/49\nf 585/631/548 587/630/550 821/887/784\nf 587/630/550 819/885/782 821/887/784\nf 819/885/782 587/630/550 835/912/798\nf 587/630/550 836/913/799 835/912/798\nf 588/632/551 836/913/799 587/630/550\nf 588/632/551 837/914/800 836/913/799\nf 590/634/553 837/914/800 588/632/551\nf 590/634/553 838/915/801 837/914/800\nf 592/636/555 838/915/801 590/634/553\nf 595/639/558 838/915/801 592/636/555\nf 595/639/558 839/916/802 838/915/801\nf 597/641/560 839/916/802 595/639/558\nf 597/641/560 840/917/803 839/916/802\nf 599/643/562 840/917/803 597/641/560\nf 599/643/562 841/918/804 840/917/803\nf 601/645/564 841/918/804 599/643/562\nf 601/645/564 842/919/805 841/918/804\nf 603/647/566 842/919/805 601/645/564\nf 603/647/566 843/920/806 842/919/805\nf 605/649/568 843/920/806 603/647/566\nf 605/649/568 844/921/807 843/920/806\nf 607/651/570 844/921/807 605/649/568\nf 607/651/570 845/922/808 844/921/807\nf 609/653/572 845/922/808 607/651/570\nf 609/653/572 846/923/809 845/922/808\nf 611/655/574 846/923/809 609/653/572\nf 611/655/574 847/924/810 846/923/809\nf 611/655/574 848/925/811 847/924/810\nf 613/657/576 848/925/811 611/655/574\nf 613/657/576 849/926/812 848/925/811\nf 615/659/578 849/926/812 613/657/576\nf 615/659/578 850/927/813 849/926/812\nf 617/661/580 850/927/813 615/659/578\nf 617/661/580 851/928/814 850/927/813\nf 619/663/582 851/928/814 617/661/580\nf 619/663/582 852/929/815 851/928/814\nf 621/665/584 852/929/815 619/663/582\nf 621/665/584 853/930/816 852/929/815\nf 623/667/586 853/930/816 621/665/584\nf 623/667/586 854/931/817 853/930/816\nf 625/669/588 854/931/817 623/667/586\nf 625/669/588 641/691/604 854/931/817\nf 627/671/590 641/691/604 625/669/588\nf 641/691/604 855/932/818 854/931/817\nf 641/691/604 642/692/605 855/932/818\nf 855/932/818 642/692/605 643/693/606\nf 855/932/818 643/693/606 856/933/819\nf 856/933/819 643/693/606 647/697/610\nf 643/693/606 644/694/607 647/697/610\nf 856/933/819 647/697/610 649/699/612\nf 857/934/820 856/933/819 649/699/612\nf 855/932/818 856/933/819 857/934/820\nf 858/935/821 855/932/818 857/934/820\nf 859/936/822 855/932/818 858/935/821\nf 853/930/816 855/932/818 859/936/822\nf 854/931/817 855/932/818 853/930/816\nf 853/930/816 859/936/822 852/929/815\nf 852/929/815 859/936/822 860/937/823\nf 860/937/823 859/936/822 861/938/824\nf 861/938/824 859/936/822 858/935/821\nf 861/938/824 858/935/821 862/939/825\nf 858/935/821 651/701/614 862/939/825\nf 858/935/821 857/934/820 651/701/614\nf 857/934/820 649/699/612 651/701/614\nf 652/702/615 862/939/825 651/701/614\nf 652/702/615 655/940/618 862/939/825\nf 655/940/618 863/941/826 862/939/825\nf 655/940/618 864/942/827 863/941/826\nf 656/708/619 864/943/827 655/707/618\nf 656/708/619 672/731/635 864/943/827\nf 658/710/621 672/731/635 656/708/619\nf 672/731/635 865/944/828 864/943/827\nf 672/731/635 673/732/636 865/944/828\nf 673/732/636 866/945/829 865/944/828\nf 673/732/636 678/737/641 866/945/829\nf 674/733/637 678/737/641 673/732/636\nf 678/737/641 867/946/830 866/945/829\nf 678/737/641 679/738/642 867/946/830\nf 679/738/642 868/947/831 867/946/830\nf 679/738/642 684/743/647 868/947/831\nf 680/739/643 684/743/647 679/738/642\nf 684/743/647 869/948/832 868/947/831\nf 684/743/647 685/744/648 869/948/832\nf 685/744/648 870/949/833 869/948/832\nf 685/744/648 690/749/653 870/949/833\nf 686/745/649 690/749/653 685/744/648\nf 690/749/653 871/950/834 870/949/833\nf 690/749/653 691/750/654 871/950/834\nf 691/750/654 872/951/835 871/950/834\nf 691/750/654 696/755/659 872/951/835\nf 692/751/655 696/755/659 691/750/654\nf 696/755/659 873/952/836 872/951/835\nf 696/755/659 697/756/660 873/952/836\nf 700/759/663 873/952/836 697/756/660\nf 874/953/837 873/954/836 700/955/663\nf 874/953/837 875/956/838 873/954/836\nf 876/957/839 875/956/838 874/953/837\nf 876/957/839 877/958/840 875/956/838\nf 878/959/841 877/958/840 876/957/839\nf 879/960/842 877/958/840 878/959/841\nf 880/961/843 877/958/840 879/960/842\nf 880/961/843 881/962/844 877/958/840\nf 840/917/803 881/962/844 880/961/843\nf 841/918/804 881/962/844 840/917/803\nf 841/918/804 882/963/845 881/962/844\nf 842/919/805 882/963/845 841/918/804\nf 842/919/805 883/964/846 882/963/845\nf 843/920/806 883/964/846 842/919/805\nf 843/920/806 884/965/847 883/964/846\nf 844/921/807 884/965/847 843/920/806\nf 844/921/807 885/966/848 884/965/847\nf 845/922/808 885/966/848 844/921/807\nf 845/922/808 886/967/849 885/966/848\nf 846/923/809 886/967/849 845/922/808\nf 846/923/809 887/968/850 886/967/849\nf 847/924/810 887/968/850 846/923/809\nf 847/924/810 888/969/851 887/968/850\nf 848/925/811 888/969/851 847/924/810\nf 848/925/811 889/970/852 888/969/851\nf 849/926/812 889/970/852 848/925/811\nf 849/926/812 890/971/853 889/970/852\nf 850/927/813 890/971/853 849/926/812\nf 850/927/813 860/937/823 890/971/853\nf 851/928/814 860/937/823 850/927/813\nf 852/929/815 860/937/823 851/928/814\nf 890/971/853 860/937/823 891/972/854\nf 891/972/854 860/937/823 861/938/824\nf 891/972/854 861/938/824 863/941/826\nf 861/938/824 862/939/825 863/941/826\nf 891/972/854 863/941/826 892/973/855\nf 864/942/827 892/973/855 863/941/826\nf 864/942/827 865/974/828 892/973/855\nf 865/974/828 893/975/856 892/973/855\nf 865/974/828 866/976/829 893/975/856\nf 866/976/829 894/977/857 893/975/856\nf 866/976/829 867/978/830 894/977/857\nf 867/978/830 895/979/858 894/977/857\nf 867/978/830 868/980/831 895/979/858\nf 868/980/831 896/981/859 895/979/858\nf 868/980/831 897/982/860 896/981/859\nf 868/980/831 869/983/832 897/982/860\nf 869/983/832 898/984/861 897/982/860\nf 869/983/832 870/985/833 898/984/861\nf 870/985/833 899/986/862 898/984/861\nf 871/987/834 899/986/862 870/985/833\nf 871/987/834 900/988/863 899/986/862\nf 872/989/835 900/988/863 871/987/834\nf 872/989/835 875/956/838 900/988/863\nf 873/954/836 875/956/838 872/989/835\nf 877/958/840 900/988/863 875/956/838\nf 877/958/840 901/990/864 900/988/863\nf 881/962/844 901/990/864 877/958/840\nf 881/962/844 882/963/845 901/990/864\nf 882/963/845 902/991/865 901/990/864\nf 882/963/845 883/964/846 902/991/865\nf 883/964/846 903/992/866 902/991/865\nf 883/964/846 884/965/847 903/992/866\nf 884/965/847 904/993/867 903/992/866\nf 884/965/847 885/966/848 904/993/867\nf 885/966/848 905/994/868 904/993/867\nf 885/966/848 886/967/849 905/994/868\nf 886/967/849 906/995/869 905/994/868\nf 886/967/849 887/968/850 906/995/869\nf 887/968/850 907/996/870 906/995/869\nf 887/968/850 888/969/851 907/996/870\nf 888/969/851 908/997/871 907/996/870\nf 888/969/851 889/970/852 908/997/871\nf 889/970/852 891/972/854 908/997/871\nf 889/970/852 890/971/853 891/972/854\nf 908/997/871 891/972/854 892/973/855\nf 893/975/856 908/997/871 892/973/855\nf 907/996/870 908/997/871 893/975/856\nf 894/977/857 907/996/870 893/975/856\nf 906/995/869 907/996/870 894/977/857\nf 895/979/858 906/995/869 894/977/857\nf 905/994/868 906/995/869 895/979/858\nf 905/994/868 895/979/858 896/981/859\nf 904/993/867 905/994/868 896/981/859\nf 904/993/867 896/981/859 897/982/860\nf 903/992/866 904/993/867 897/982/860\nf 903/992/866 897/982/860 898/984/861\nf 902/991/865 903/992/866 898/984/861\nf 902/991/865 898/984/861 899/986/862\nf 901/990/864 902/991/865 899/986/862\nf 901/990/864 899/986/862 900/988/863\nf 840/917/803 880/961/843 839/916/802\nf 839/916/802 880/961/843 909/998/872\nf 909/998/872 880/961/843 879/960/842\nf 909/998/872 879/960/842 910/999/873\nf 910/999/873 879/960/842 878/959/841\nf 910/999/873 878/959/841 911/1000/874\nf 911/1000/874 878/959/841 912/1001/875\nf 912/1001/875 878/959/841 913/1002/876\nf 878/959/841 914/1003/877 913/1002/876\nf 878/959/841 876/957/839 914/1003/877\nf 914/1003/877 876/957/839 915/1004/878\nf 915/1004/878 876/957/839 874/953/837\nf 915/1004/878 874/953/837 702/1005/665\nf 702/1005/665 874/953/837 700/955/663\nf 702/1005/665 704/1006/667 915/1004/878\nf 916/1007/879 915/1004/878 704/1006/667\nf 914/1003/877 915/1004/878 916/1007/879\nf 914/1003/877 916/1007/879 917/1008/880\nf 917/1008/880 916/1007/879 918/1009/881\nf 706/1010/669 918/1009/881 916/1007/879\nf 708/1011/671 918/1009/881 706/1010/669\nf 708/1011/671 919/1012/882 918/1009/881\nf 710/1013/673 919/1012/882 708/1011/671\nf 710/1013/673 920/1014/883 919/1012/882\nf 712/1015/675 920/1014/883 710/1013/673\nf 712/1015/675 921/1016/884 920/1014/883\nf 712/1015/675 922/1017/885 921/1016/884\nf 714/1018/677 922/1017/885 712/1015/675\nf 714/1018/677 923/1019/886 922/1017/885\nf 716/1020/679 923/1019/886 714/1018/677\nf 716/1020/679 924/1021/887 923/1019/886\nf 718/1022/681 924/1021/887 716/1020/679\nf 718/1022/681 925/1023/888 924/1021/887\nf 720/1024/683 925/1023/888 718/1022/681\nf 720/1024/683 926/1025/889 925/1023/888\nf 722/1026/685 926/1025/889 720/1024/683\nf 722/1026/685 927/1027/890 926/1025/889\nf 724/1028/687 927/1027/890 722/1026/685\nf 724/1028/687 928/1029/891 927/1027/890\nf 726/1030/689 928/1029/891 724/1028/687\nf 726/1030/689 929/1031/892 928/1029/891\nf 727/1032/690 929/1031/892 726/1030/689\nf 727/1032/690 930/1033/893 929/1031/892\nf 727/1032/690 931/1034/894 930/1033/893\nf 729/790/692 931/1035/894 727/788/690\nf 932/1036/895 931/1035/894 729/790/692\nf 932/1036/895 933/1037/896 931/1035/894\nf 934/677/897 933/727/896 932/726/895\nf 934/677/897 935/683/898 933/727/896\nf 936/682/899 935/683/898 934/677/897\nf 937/1038/900 935/1039/898 936/1040/899\nf 937/1038/900 938/1041/901 935/1039/898\nf 939/1042/902 938/1041/901 937/1038/900\nf 939/1042/902 930/1033/893 938/1041/901\nf 940/1043/903 930/1033/893 939/1042/902\nf 940/1043/903 929/1031/892 930/1033/893\nf 941/1044/904 929/1031/892 940/1043/903\nf 941/1044/904 928/1029/891 929/1031/892\nf 942/1045/905 928/1029/891 941/1044/904\nf 942/1045/905 927/1027/890 928/1029/891\nf 943/1046/906 927/1027/890 942/1045/905\nf 943/1046/906 926/1025/889 927/1027/890\nf 944/1047/907 926/1025/889 943/1046/906\nf 944/1047/907 925/1023/888 926/1025/889\nf 945/1048/908 925/1023/888 944/1047/907\nf 924/1021/887 925/1023/888 945/1048/908\nf 946/1049/909 924/1021/887 945/1048/908\nf 923/1019/886 924/1021/887 946/1049/909\nf 947/1050/910 923/1019/886 946/1049/909\nf 922/1017/885 923/1019/886 947/1050/910\nf 948/1051/911 922/1017/885 947/1050/910\nf 948/1051/911 921/1016/884 922/1017/885\nf 949/1052/912 921/1016/884 948/1051/911\nf 949/1052/912 920/1014/883 921/1016/884\nf 950/1053/913 920/1014/883 949/1052/912\nf 950/1053/913 919/1012/882 920/1014/883\nf 951/1054/914 919/1012/882 950/1053/913\nf 951/1054/914 918/1009/881 919/1012/882\nf 917/1008/880 918/1009/881 951/1054/914\nf 952/1055/915 917/1008/880 951/1054/914\nf 953/1056/916 917/1008/880 952/1055/915\nf 953/1056/916 914/1003/877 917/1008/880\nf 954/1057/917 914/1003/877 953/1056/916\nf 954/1057/917 913/1002/876 914/1003/877\nf 955/1058/918 913/1002/876 954/1057/917\nf 955/1058/918 912/1001/875 913/1002/876\nf 956/1059/919 912/1001/875 955/1058/918\nf 956/1059/919 957/1060/920 912/1001/875\nf 817/883/780 957/1060/920 956/1059/919\nf 819/885/782 957/1060/920 817/883/780\nf 819/885/782 835/912/798 957/1060/920\nf 835/912/798 911/1000/874 957/1060/920\nf 836/913/799 911/1000/874 835/912/798\nf 836/913/799 910/999/873 911/1000/874\nf 837/914/800 910/999/873 836/913/799\nf 837/914/800 909/998/872 910/999/873\nf 838/915/801 909/998/872 837/914/800\nf 838/915/801 839/916/802 909/998/872\nf 957/1060/920 911/1000/874 912/1001/875\nf 817/883/780 956/1059/919 815/881/778\nf 815/881/778 956/1059/919 958/1061/921\nf 958/1061/921 956/1059/919 955/1058/918\nf 958/1061/921 955/1058/918 959/1062/922\nf 959/1062/922 955/1058/918 954/1057/917\nf 960/1063/923 959/1062/922 954/1057/917\nf 961/1064/924 959/1062/922 960/1063/923\nf 961/1064/924 962/1065/925 959/1062/922\nf 963/1066/926 962/1065/925 961/1064/924\nf 963/1066/926 811/877/774 962/1065/925\nf 809/875/772 811/877/774 963/1066/926\nf 795/858/758 809/875/772 963/1066/926\nf 806/872/769 809/875/772 795/858/758\nf 806/872/769 795/858/758 796/859/759\nf 795/858/758 963/1066/926 794/857/757\nf 794/857/757 963/1066/926 961/1064/924\nf 794/857/757 961/1064/924 964/1067/927\nf 964/1067/927 961/1064/924 960/1063/923\nf 964/1067/927 960/1063/923 965/1068/928\nf 965/1068/928 960/1063/923 953/1056/916\nf 960/1063/923 954/1057/917 953/1056/916\nf 965/1068/928 953/1056/916 952/1055/915\nf 966/1069/929 965/1068/928 952/1055/915\nf 785/846/748 965/1068/928 966/1069/929\nf 785/846/748 964/1067/927 965/1068/928\nf 786/847/749 964/1067/927 785/846/748\nf 786/847/749 794/857/757 964/1067/927\nf 784/845/747 785/846/748 966/1069/929\nf 784/845/747 966/1069/929 967/1070/930\nf 967/1070/930 966/1069/929 968/1071/931\nf 966/1069/929 952/1055/915 968/1071/931\nf 952/1055/915 951/1054/914 968/1071/931\nf 968/1071/931 951/1054/914 950/1053/913\nf 968/1071/931 950/1053/913 969/1072/932\nf 969/1072/932 950/1053/913 949/1052/912\nf 969/1072/932 949/1052/912 970/1073/933\nf 970/1073/933 949/1052/912 948/1051/911\nf 970/1073/933 948/1051/911 971/1074/934\nf 971/1074/934 948/1051/911 947/1050/910\nf 971/1074/934 947/1050/910 972/1075/935\nf 972/1075/935 947/1050/910 946/1049/909\nf 972/1075/935 946/1049/909 973/1076/936\nf 973/1076/936 946/1049/909 945/1048/908\nf 973/1076/936 945/1048/908 974/1077/937\nf 974/1077/937 945/1048/908 944/1047/907\nf 974/1077/937 944/1047/907 975/1078/938\nf 975/1078/938 944/1047/907 976/1079/939\nf 944/1047/907 943/1046/906 976/1079/939\nf 976/1079/939 943/1046/906 977/1080/940\nf 943/1046/906 942/1045/905 977/1080/940\nf 977/1080/940 942/1045/905 978/1081/941\nf 942/1045/905 941/1044/904 978/1081/941\nf 978/1081/941 941/1044/904 940/1043/903\nf 978/1081/941 940/1043/903 939/1042/902\nf 978/1081/941 939/1042/902 979/1082/942\nf 979/1082/942 939/1042/902 937/1038/900\nf 979/1082/942 937/1038/900 980/1083/943\nf 980/1083/943 937/1038/900 936/1040/899\nf 980/1083/943 936/1040/899 981/1084/944\nf 981/681/944 936/682/899 934/677/897\nf 982/680/945 981/681/944 934/677/897\nf 983/1085/946 981/1084/944 982/1086/945\nf 983/1085/946 980/1083/943 981/1084/944\nf 984/1087/947 980/1083/943 983/1085/946\nf 984/1087/947 979/1082/942 980/1083/943\nf 984/1087/947 978/1081/941 979/1082/942\nf 978/1081/941 984/1087/947 985/1088/948\nf 986/1089/949 985/1088/948 984/1087/947\nf 986/1089/949 987/1090/950 985/1088/948\nf 988/1091/951 987/1090/950 986/1089/949\nf 988/1091/951 747/808/710 987/1090/950\nf 747/808/710 988/1091/951 745/806/708\nf 745/806/708 988/1091/951 989/1092/952\nf 989/1092/952 988/1091/951 986/1089/949\nf 989/1092/952 986/1089/949 990/1093/953\nf 990/1093/953 986/1089/949 984/1087/947\nf 990/1093/953 984/1087/947 983/1085/946\nf 737/798/700 990/1093/953 983/1085/946\nf 738/799/701 990/1093/953 737/798/700\nf 738/799/701 989/1092/952 990/1093/953\nf 991/1094/954 989/1092/952 738/799/701\nf 745/806/708 989/1092/952 991/1094/954\nf 745/806/708 991/1094/954 743/804/706\nf 743/804/706 991/1094/954 742/803/705\nf 991/1094/954 741/802/704 742/803/705\nf 991/1094/954 740/801/703 741/802/704\nf 991/1094/954 739/800/702 740/801/703\nf 991/1094/954 738/799/701 739/800/702\nf 737/798/700 983/1085/946 982/1086/945\nf 737/798/700 982/1086/945 736/797/699\nf 982/680/945 934/677/897 736/678/699\nf 736/678/699 934/677/897 734/679/697\nf 734/679/697 934/677/897 732/725/695\nf 934/677/897 731/724/694 732/725/695\nf 934/677/897 932/726/895 731/724/694\nf 731/792/694 932/1036/895 729/790/692\nf 747/808/710 749/810/712 987/1090/950\nf 987/1090/950 749/810/712 992/1095/955\nf 749/810/712 993/1096/956 992/1095/955\nf 749/810/712 750/811/713 993/1096/956\nf 750/811/713 994/1097/957 993/1096/956\nf 750/811/713 757/818/720 994/1097/957\nf 751/812/714 757/818/720 750/811/713\nf 757/818/720 995/1098/958 994/1097/957\nf 757/818/720 758/819/721 995/1098/958\nf 758/819/721 996/1099/959 995/1098/958\nf 758/819/721 997/1100/960 996/1099/959\nf 759/820/722 997/1100/960 758/819/721\nf 759/820/722 766/827/729 997/1100/960\nf 766/827/729 759/820/722 764/825/727\nf 764/825/727 759/820/722 760/821/723\nf 764/825/727 760/821/723 762/823/725\nf 762/823/725 760/821/723 761/822/724\nf 766/827/729 768/829/731 997/1100/960\nf 997/1100/960 768/829/731 998/1101/961\nf 768/829/731 999/1102/962 998/1101/961\nf 768/829/731 1000/1103/963 999/1102/962\nf 768/829/731 769/830/732 1000/1103/963\nf 769/830/732 1001/1104/964 1000/1103/963\nf 769/830/732 776/837/739 1001/1104/964\nf 770/831/733 776/837/739 769/830/732\nf 776/837/739 1002/1105/965 1001/1104/964\nf 776/837/739 777/838/740 1002/1105/965\nf 777/838/740 967/1070/930 1002/1105/965\nf 777/838/740 784/845/747 967/1070/930\nf 778/839/741 784/845/747 777/838/740\nf 1002/1105/965 967/1070/930 969/1072/932\nf 967/1070/930 968/1071/931 969/1072/932\nf 1002/1105/965 969/1072/932 970/1073/933\nf 1001/1104/964 1002/1105/965 970/1073/933\nf 1001/1104/964 970/1073/933 971/1074/934\nf 1000/1103/963 1001/1104/964 971/1074/934\nf 1000/1103/963 971/1074/934 972/1075/935\nf 999/1102/962 1000/1103/963 972/1075/935\nf 999/1102/962 972/1075/935 973/1076/936\nf 999/1102/962 973/1076/936 998/1101/961\nf 998/1101/961 973/1076/936 974/1077/937\nf 998/1101/961 974/1077/937 996/1099/959\nf 996/1099/959 974/1077/937 975/1078/938\nf 995/1098/958 996/1099/959 975/1078/938\nf 995/1098/958 975/1078/938 976/1079/939\nf 994/1097/957 995/1098/958 976/1079/939\nf 993/1096/956 994/1097/957 976/1079/939\nf 993/1096/956 976/1079/939 977/1080/940\nf 992/1095/955 993/1096/956 977/1080/940\nf 992/1095/955 977/1080/940 978/1081/941\nf 992/1095/955 978/1081/941 985/1088/948\nf 987/1090/950 992/1095/955 985/1088/948\nf 997/1100/960 998/1101/961 996/1099/959\nf 811/877/774 813/879/776 962/1065/925\nf 962/1065/925 813/879/776 958/1061/921\nf 813/879/776 815/881/778 958/1061/921\nf 962/1065/925 958/1061/921 959/1062/922\nf 931/1034/894 938/1041/901 930/1033/893\nf 931/1034/894 933/1106/896 938/1041/901\nf 933/1106/896 935/1039/898 938/1041/901\nf 704/1006/667 706/1010/669 916/1007/879\nf 807/1107/770 805/869/768 1003/1108/966\nf 1003/1108/966 805/869/768 803/867/766\nf 1003/1108/966 803/867/766 1004/1109/967\nf 1004/1109/967 803/867/766 802/866/765\nf 802/866/765 598/642/561 1004/1109/967\nf 802/866/765 600/644/563 598/642/561\nf 596/640/559 1004/1109/967 598/642/561\nf 1005/1110/968 1004/1109/967 596/640/559\nf 1005/1110/968 1003/1108/966 1004/1109/967\nf 1006/1111/969 1003/1108/966 1005/1110/968\nf 1006/1111/969 807/1107/770 1003/1108/966\nf 1007/1112/970 1006/1111/969 1005/1110/968\nf 1007/1112/970 1005/1110/968 594/638/557\nf 594/638/557 1005/1110/968 596/640/559\nf 593/637/556 1007/1112/970 594/638/557\nf 804/871/767 796/859/759 797/860/760\nf 216/216/178 218/218/180 390/423/353\nf 216/216/178 390/423/353 1008/1113/971\nf 1008/1113/971 390/423/353 387/420/349\nf 1008/1113/971 387/420/349 384/417/346\nf 1008/1113/971 384/417/346 1009/1114/972\nf 1009/1114/972 384/417/346 382/415/344\nf 1009/1114/972 382/415/344 210/210/172\nf 209/209/171 210/210/172 382/415/344\nf 210/210/172 211/211/173 1009/1114/972\nf 1008/1113/971 1009/1114/972 211/211/173\nf 211/211/173 213/213/175 1008/1113/971\nf 213/213/175 216/216/178 1008/1113/971\nf 205/205/167 373/404/335 204/204/166\nf 204/204/166 373/404/335 203/203/165\nf 203/203/165 373/404/335 202/202/164\nf 233/237/195 225/227/187 226/228/188\nf 233/237/195 226/228/188 227/229/189\nf 233/237/195 227/229/189 231/238/193\nf 173/170/135 174/171/136 232/236/194\nf 173/169/135 232/235/194 1010/1115/973\nf 1010/1115/973 232/235/194 230/233/192\nf 1010/1115/973 230/233/192 1011/1116/974\nf 1011/1116/974 230/233/192 229/232/191\nf 167/162/129 1011/1116/974 229/232/191\nf 169/164/131 1011/1116/974 167/162/129\nf 169/164/131 1010/1115/973 1011/1116/974\nf 171/166/133 1010/1115/973 169/164/131\nf 173/169/135 1010/1115/973 171/166/133\nf 167/162/129 229/232/191 1012/1117/975\nf 1012/1117/975 229/232/191 212/212/174\nf 229/232/191 214/214/176 212/212/174\nf 165/160/127 1012/1117/975 212/212/174\nf 167/162/129 1012/1117/975 165/160/127\nf 165/160/127 212/212/174 164/159/126\nf 128/117/90 129/168/91 172/167/134\nf 127/116/89 128/117/90 172/167/134\nf 127/116/89 172/167/134 126/115/88\nf 172/167/134 170/165/132 126/115/88\nf 126/115/88 170/165/132 1013/1118/976\nf 1013/1118/976 170/165/132 1014/1119/977\nf 1014/1119/977 170/165/132 168/163/130\nf 1014/1119/977 168/163/130 1015/1120/978\nf 1015/1120/978 168/163/130 166/161/128\nf 1015/1120/978 166/161/128 1016/1121/979\nf 1016/1121/979 166/161/128 162/157/124\nf 1016/1121/979 162/157/124 1017/1122/980\nf 162/157/124 160/155/122 1017/1122/980\nf 1017/1122/980 160/155/122 1018/1123/981\nf 160/155/122 158/153/120 1018/1123/981\nf 1018/1123/981 158/153/120 156/151/118\nf 1018/1123/981 156/151/118 1019/1124/982\nf 1019/1124/982 156/151/118 154/149/116\nf 1019/1124/982 154/149/116 1020/1125/983\nf 119/107/81 1020/1125/983 154/149/116\nf 120/108/82 1020/1125/983 119/107/81\nf 120/108/82 1021/1126/984 1020/1125/983\nf 120/108/82 1022/1127/985 1021/1126/984\nf 121/109/83 1022/1127/985 120/108/82\nf 121/109/83 1023/1128/986 1022/1127/985\nf 123/1129/85 1023/1128/986 121/109/83\nf 123/112/85 125/114/87 1023/1130/986\nf 125/114/87 1024/1131/987 1023/1130/986\nf 125/114/87 1013/1118/976 1024/1131/987\nf 125/114/87 126/115/88 1013/1118/976\nf 1024/1131/987 1013/1118/976 1025/1132/988\nf 1013/1118/976 1014/1119/977 1025/1132/988\nf 1025/1132/988 1014/1119/977 1026/1133/989\nf 1026/1133/989 1014/1119/977 1015/1120/978\nf 1026/1133/989 1015/1120/978 1027/1134/990\nf 1027/1134/990 1015/1120/978 1016/1121/979\nf 1027/1134/990 1016/1121/979 1028/1135/991\nf 1016/1121/979 1017/1122/980 1028/1135/991\nf 1028/1135/991 1017/1122/980 1029/1136/992\nf 1017/1122/980 1018/1123/981 1029/1136/992\nf 1029/1136/992 1018/1123/981 1019/1124/982\nf 1029/1136/992 1019/1124/982 1030/1137/993\nf 1030/1137/993 1019/1124/982 1020/1125/983\nf 1021/1126/984 1030/1137/993 1020/1125/983\nf 1021/1126/984 1031/1138/994 1030/1137/993\nf 1032/1139/995 1031/1138/994 1021/1126/984\nf 1033/1140/996 1031/1138/994 1032/1139/995\nf 1033/1140/996 1034/1141/997 1031/1138/994\nf 1033/1142/996 1035/1143/998 1034/1144/997\nf 1033/1142/996 1036/1145/999 1035/1143/998\nf 1037/1146/1000 1036/1145/999 1033/1142/996\nf 1038/1147/1001 1036/1145/999 1037/1146/1000\nf 1038/1147/1001 1039/1148/1002 1036/1145/999\nf 1040/1149/1003 1039/1148/1002 1038/1147/1001\nf 1040/1149/1003 1041/1150/1004 1039/1148/1002\nf 1042/1151/1005 1041/1150/1004 1040/1149/1003\nf 1042/1151/1005 1043/1152/1006 1041/1150/1004\nf 1044/1153/1007 1043/1152/1006 1042/1151/1005\nf 1045/1154/1008 1043/1152/1006 1044/1153/1007\nf 1043/1152/1006 1045/1154/1008 1046/1155/1009\nf 1045/1154/1008 1047/1156/1010 1046/1155/1009\nf 1045/1154/1008 1048/1157/1011 1047/1156/1010\nf 1049/1158/1012 1048/1157/1011 1045/1154/1008\nf 1050/1159/1013 1048/1157/1011 1049/1158/1012\nf 1050/1159/1013 1051/1160/1014 1048/1157/1011\nf 1050/1159/1013 1052/1161/1015 1051/1160/1014\nf 1053/1162/1016 1052/1161/1015 1050/1159/1013\nf 1054/1163/1017 1052/1161/1015 1053/1162/1016\nf 1055/1164/1018 1052/1161/1015 1054/1163/1017\nf 1055/1164/1018 1056/1165/1019 1052/1161/1015\nf 1057/1166/1020 1056/1165/1019 1055/1164/1018\nf 1057/1166/1020 1058/1167/1021 1056/1165/1019\nf 1057/1166/1020 1059/1168/1022 1058/1167/1021\nf 1060/1169/1023 1059/1168/1022 1057/1166/1020\nf 1060/1169/1023 1061/1170/1024 1059/1168/1022\nf 1062/1171/1025 1061/1170/1024 1060/1169/1023\nf 1061/1170/1024 1062/1171/1025 1063/1172/1026\nf 1062/1171/1025 1064/1173/1027 1063/1172/1026\nf 1062/1171/1025 1065/1174/1028 1064/1173/1027\nf 1065/1174/1028 1062/1171/1025 1066/1175/1029\nf 1066/1175/1029 1062/1171/1025 1060/1169/1023\nf 1066/1175/1029 1060/1169/1023 1067/1176/1030\nf 1067/1176/1030 1060/1169/1023 1057/1166/1020\nf 1057/1166/1020 1055/1164/1018 1067/1176/1030\nf 1067/1176/1030 1055/1164/1018 1054/1163/1017\nf 1067/1176/1030 1054/1163/1017 1068/1177/1031\nf 1068/1177/1031 1054/1163/1017 1053/1162/1016\nf 1068/1177/1031 1053/1162/1016 1069/1178/1032\nf 1069/1178/1032 1053/1162/1016 1070/1179/1033\nf 1053/1162/1016 1050/1159/1013 1070/1179/1033\nf 1070/1179/1033 1050/1159/1013 1049/1158/1012\nf 1070/1179/1033 1049/1158/1012 1071/1180/1034\nf 1071/1180/1034 1049/1158/1012 1044/1153/1007\nf 1049/1158/1012 1045/1154/1008 1044/1153/1007\nf 1071/1180/1034 1044/1153/1007 1072/1181/1035\nf 1072/1181/1035 1044/1153/1007 1042/1151/1005\nf 1072/1181/1035 1042/1151/1005 1073/1182/1036\nf 1073/1182/1036 1042/1151/1005 1040/1149/1003\nf 1073/1182/1036 1040/1149/1003 1074/1183/1037\nf 1074/1183/1037 1040/1149/1003 1038/1147/1001\nf 1074/1183/1037 1038/1147/1001 1075/1184/1038\nf 1075/1184/1038 1038/1147/1001 1037/1146/1000\nf 1076/1185/1039 1075/1186/1038 1037/1187/1000\nf 1024/1131/987 1075/1186/1038 1076/1185/1039\nf 1024/1131/987 1025/1132/988 1075/1186/1038\nf 1025/1132/988 1077/1188/1040 1075/1186/1038\nf 1025/1132/988 1078/1189/1041 1077/1188/1040\nf 1025/1132/988 1026/1133/989 1078/1189/1041\nf 1026/1133/989 1027/1134/990 1078/1189/1041\nf 1078/1190/1041 1027/1191/990 1079/1192/1042\nf 1079/1192/1042 1027/1191/990 1080/1193/1043\nf 1080/1193/1043 1027/1191/990 1028/1194/991\nf 1080/1193/1043 1028/1194/991 1081/1195/1044\nf 1081/1196/1044 1028/1197/991 1029/1198/992\nf 1081/1196/1044 1029/1198/992 1082/1199/1045\nf 1082/1199/1045 1029/1198/992 1083/1200/1046\nf 1083/1200/1046 1029/1198/992 1084/1201/1047\nf 1084/1202/1047 1029/1136/992 1030/1137/993\nf 1084/1202/1047 1030/1137/993 1031/1138/994\nf 1031/1138/994 1034/1141/997 1084/1202/1047\nf 1083/1200/1046 1084/1201/1047 1034/1144/997\nf 1035/1143/998 1083/1200/1046 1034/1144/997\nf 1085/1203/1048 1083/1200/1046 1035/1143/998\nf 1085/1203/1048 1082/1199/1045 1083/1200/1046\nf 1082/1199/1045 1085/1203/1048 1086/1204/1049\nf 1086/1204/1049 1085/1203/1048 1087/1205/1050\nf 1087/1205/1050 1085/1203/1048 1088/1206/1051\nf 1089/1207/1052 1088/1206/1051 1085/1203/1048\nf 1089/1207/1052 1090/1208/1053 1088/1206/1051\nf 1039/1148/1002 1090/1208/1053 1089/1207/1052\nf 1039/1148/1002 1041/1150/1004 1090/1208/1053\nf 1041/1150/1004 1091/1209/1054 1090/1208/1053\nf 1041/1150/1004 1043/1152/1006 1091/1209/1054\nf 1043/1152/1006 1046/1155/1009 1091/1209/1054\nf 1091/1209/1054 1046/1155/1009 1092/1210/1055\nf 1046/1155/1009 1093/1211/1056 1092/1210/1055\nf 1046/1155/1009 1047/1156/1010 1093/1211/1056\nf 1093/1211/1056 1047/1156/1010 1094/1212/1057\nf 1094/1212/1057 1047/1156/1010 1095/1213/1058\nf 1047/1156/1010 1048/1157/1011 1095/1213/1058\nf 1095/1213/1058 1048/1157/1011 1051/1160/1014\nf 1095/1213/1058 1051/1160/1014 1096/1214/1059\nf 1096/1214/1059 1051/1160/1014 1097/1215/1060\nf 1052/1161/1015 1097/1215/1060 1051/1160/1014\nf 1052/1161/1015 1098/1216/1061 1097/1215/1060\nf 1056/1165/1019 1098/1216/1061 1052/1161/1015\nf 1056/1165/1019 1099/1217/1062 1098/1216/1061\nf 1058/1167/1021 1099/1217/1062 1056/1165/1019\nf 1058/1167/1021 1100/1218/1063 1099/1217/1062\nf 1058/1167/1021 1101/1219/1064 1100/1218/1063\nf 1059/1168/1022 1101/1219/1064 1058/1167/1021\nf 1059/1168/1022 1102/1220/1065 1101/1219/1064\nf 1061/1170/1024 1102/1220/1065 1059/1168/1022\nf 1102/1220/1065 1061/1170/1024 1103/1221/1066\nf 1061/1170/1024 1063/1172/1026 1103/1221/1066\nf 1103/1222/1066 1063/1223/1026 1104/1224/1067\nf 1063/1223/1026 1105/1225/1068 1104/1224/1067\nf 1063/1223/1026 1064/1226/1027 1105/1225/1068\nf 1064/1226/1027 1106/1227/1069 1105/1225/1068\nf 1064/1226/1027 1107/1228/1070 1106/1227/1069\nf 1065/1174/1028 1107/1229/1070 1064/1173/1027\nf 1065/1174/1028 1108/1230/1071 1107/1229/1070\nf 1108/1230/1071 1065/1174/1028 1109/1231/1072\nf 1109/1231/1072 1065/1174/1028 1066/1175/1029\nf 1109/1231/1072 1066/1175/1029 1068/1177/1031\nf 1068/1177/1031 1066/1175/1029 1067/1176/1030\nf 1069/1178/1032 1109/1231/1072 1068/1177/1031\nf 1110/1232/1073 1109/1231/1072 1069/1178/1032\nf 1110/1232/1073 1108/1230/1071 1109/1231/1072\nf 1111/1233/1074 1108/1230/1071 1110/1232/1073\nf 1108/1230/1071 1111/1233/1074 1112/1234/1075\nf 1111/1233/1074 1113/1235/1076 1112/1234/1075\nf 1111/1233/1074 1114/1236/1077 1113/1235/1076\nf 1114/1236/1077 1111/1233/1074 1115/1237/1078\nf 1115/1237/1078 1111/1233/1074 1110/1232/1073\nf 1115/1237/1078 1110/1232/1073 1116/1238/1079\nf 1116/1238/1079 1110/1232/1073 1069/1178/1032\nf 1069/1178/1032 1070/1179/1033 1116/1238/1079\nf 1070/1179/1033 1071/1180/1034 1116/1238/1079\nf 1116/1238/1079 1071/1180/1034 1117/1239/1080\nf 1117/1239/1080 1071/1180/1034 1072/1181/1035\nf 1117/1239/1080 1072/1181/1035 1118/1240/1081\nf 1118/1240/1081 1072/1181/1035 1073/1182/1036\nf 1118/1240/1081 1073/1182/1036 1119/1241/1082\nf 1119/1241/1082 1073/1182/1036 1074/1183/1037\nf 1077/1242/1040 1119/1241/1082 1074/1183/1037\nf 1077/1242/1040 1078/1190/1041 1119/1241/1082\nf 1119/1241/1082 1078/1190/1041 1079/1192/1042\nf 1119/1241/1082 1079/1192/1042 1120/1243/1083\nf 1079/1192/1042 1080/1193/1043 1120/1243/1083\nf 1114/1236/1077 1120/1243/1083 1080/1193/1043\nf 1120/1243/1083 1114/1236/1077 1115/1237/1078\nf 1120/1243/1083 1115/1237/1078 1117/1239/1080\nf 1117/1239/1080 1115/1237/1078 1116/1238/1079\nf 1118/1240/1081 1120/1243/1083 1117/1239/1080\nf 1119/1241/1082 1120/1243/1083 1118/1240/1081\nf 1114/1236/1077 1080/1193/1043 1081/1195/1044\nf 1113/1235/1076 1114/1236/1077 1081/1195/1044\nf 1113/1244/1076 1081/1196/1044 1082/1199/1045\nf 1113/1244/1076 1082/1199/1045 1086/1204/1049\nf 1112/1245/1075 1113/1244/1076 1086/1204/1049\nf 1112/1245/1075 1086/1204/1049 1087/1205/1050\nf 1107/1228/1070 1112/1245/1075 1087/1205/1050\nf 1108/1230/1071 1112/1234/1075 1107/1229/1070\nf 1107/1228/1070 1087/1205/1050 1106/1227/1069\nf 1106/1227/1069 1087/1205/1050 1088/1206/1051\nf 1106/1227/1069 1088/1206/1051 1121/1246/1084\nf 1090/1208/1053 1121/1246/1084 1088/1206/1051\nf 1090/1208/1053 1091/1209/1054 1121/1246/1084\nf 1091/1209/1054 1092/1210/1055 1121/1246/1084\nf 1105/1225/1068 1121/1246/1084 1092/1210/1055\nf 1105/1225/1068 1106/1227/1069 1121/1246/1084\nf 1104/1224/1067 1105/1225/1068 1092/1210/1055\nf 1104/1224/1067 1092/1210/1055 1093/1211/1056\nf 1104/1224/1067 1093/1211/1056 1122/1247/1085\nf 1122/1247/1085 1093/1211/1056 1094/1212/1057\nf 1122/1247/1085 1094/1212/1057 1123/1248/1086\nf 1094/1212/1057 1124/1249/1087 1123/1248/1086\nf 1094/1212/1057 1095/1213/1058 1124/1249/1087\nf 1124/1249/1087 1095/1213/1058 1096/1214/1059\nf 1124/1249/1087 1096/1214/1059 1125/1250/1088\nf 1125/1250/1088 1096/1214/1059 1126/1251/1089\nf 1096/1214/1059 1097/1215/1060 1126/1251/1089\nf 1126/1251/1089 1097/1215/1060 1127/1252/1090\nf 1098/1216/1061 1127/1252/1090 1097/1215/1060\nf 1098/1216/1061 1128/1253/1091 1127/1252/1090\nf 1099/1217/1062 1128/1253/1091 1098/1216/1061\nf 1099/1217/1062 1129/1254/1092 1128/1253/1091\nf 1100/1218/1063 1129/1254/1092 1099/1217/1062\nf 1100/1218/1063 1130/1255/1093 1129/1254/1092\nf 1131/1256/1094 1130/1255/1093 1100/1218/1063\nf 1131/1256/1094 1132/1257/1095 1130/1255/1093\nf 1133/1258/1096 1132/1257/1095 1131/1256/1094\nf 1133/1258/1096 1134/1259/1097 1132/1257/1095\nf 1133/1258/1096 1135/1260/1098 1134/1259/1097\nf 1103/1221/1066 1135/1260/1098 1133/1258/1096\nf 1103/1222/1066 1123/1248/1086 1135/1261/1098\nf 1103/1222/1066 1122/1247/1085 1123/1248/1086\nf 1103/1222/1066 1104/1224/1067 1122/1247/1085\nf 1135/1261/1098 1123/1248/1086 1136/1262/1099\nf 1123/1248/1086 1137/1263/1100 1136/1262/1099\nf 1123/1248/1086 1124/1249/1087 1137/1263/1100\nf 1124/1249/1087 1125/1250/1088 1137/1263/1100\nf 1137/1263/1100 1125/1250/1088 1138/1264/1101\nf 1125/1250/1088 1139/1265/1102 1138/1264/1101\nf 1125/1250/1088 1126/1251/1089 1139/1265/1102\nf 1139/1265/1102 1126/1251/1089 1140/1266/1103\nf 1126/1251/1089 1127/1252/1090 1140/1266/1103\nf 1140/1266/1103 1127/1252/1090 1141/1267/1104\nf 1128/1253/1091 1141/1267/1104 1127/1252/1090\nf 1128/1253/1091 1142/1268/1105 1141/1267/1104\nf 1129/1254/1092 1142/1268/1105 1128/1253/1091\nf 1129/1254/1092 1143/1269/1106 1142/1268/1105\nf 1130/1255/1093 1143/1269/1106 1129/1254/1092\nf 1130/1255/1093 1144/1270/1107 1143/1269/1106\nf 1132/1257/1095 1144/1270/1107 1130/1255/1093\nf 1132/1257/1095 1145/1271/1108 1144/1270/1107\nf 1134/1259/1097 1145/1271/1108 1132/1257/1095\nf 1134/1259/1097 1146/1272/1109 1145/1271/1108\nf 1134/1259/1097 1136/1273/1099 1146/1272/1109\nf 1135/1260/1098 1136/1273/1099 1134/1259/1097\nf 1136/1273/1099 1147/1274/1110 1146/1272/1109\nf 1136/1262/1099 1137/1263/1100 1147/1275/1110\nf 1137/1263/1100 1138/1264/1101 1147/1275/1110\nf 1147/1275/1110 1138/1264/1101 1148/1276/1111\nf 1138/1264/1101 1149/1277/1112 1148/1276/1111\nf 1138/1264/1101 1139/1265/1102 1149/1277/1112\nf 1139/1265/1102 1150/1278/1113 1149/1277/1112\nf 1139/1265/1102 1140/1266/1103 1150/1278/1113\nf 1150/1278/1113 1140/1266/1103 1151/1279/1114\nf 1140/1266/1103 1141/1267/1104 1151/1279/1114\nf 1151/1279/1114 1141/1267/1104 1152/1280/1115\nf 1142/1268/1105 1152/1280/1115 1141/1267/1104\nf 1142/1268/1105 1153/1281/1116 1152/1280/1115\nf 1143/1269/1106 1153/1281/1116 1142/1268/1105\nf 1143/1269/1106 1154/1282/1117 1153/1281/1116\nf 1144/1270/1107 1154/1282/1117 1143/1269/1106\nf 1144/1270/1107 1155/1283/1118 1154/1282/1117\nf 1145/1271/1108 1155/1283/1118 1144/1270/1107\nf 1145/1271/1108 1156/1284/1119 1155/1283/1118\nf 1146/1272/1109 1156/1284/1119 1145/1271/1108\nf 1146/1272/1109 1157/1285/1120 1156/1284/1119\nf 1146/1272/1109 1147/1274/1110 1157/1285/1120\nf 1147/1274/1110 1148/1286/1111 1157/1285/1120\nf 1157/1285/1120 1148/1286/1111 1158/1287/1121\nf 1148/1286/1111 1159/1288/1122 1158/1287/1121\nf 1148/1276/1111 1149/1277/1112 1159/1289/1122\nf 1149/1277/1112 1160/1290/1123 1159/1289/1122\nf 1149/1277/1112 1150/1278/1113 1160/1290/1123\nf 1150/1278/1113 1161/1291/1124 1160/1290/1123\nf 1150/1278/1113 1151/1279/1114 1161/1291/1124\nf 1161/1291/1124 1151/1279/1114 1162/1292/1125\nf 1151/1279/1114 1152/1280/1115 1162/1292/1125\nf 1162/1292/1125 1152/1280/1115 1163/1293/1126\nf 1153/1281/1116 1163/1293/1126 1152/1280/1115\nf 1153/1281/1116 1164/1294/1127 1163/1293/1126\nf 1154/1282/1117 1164/1294/1127 1153/1281/1116\nf 1154/1282/1117 1165/1295/1128 1164/1294/1127\nf 1155/1283/1118 1165/1295/1128 1154/1282/1117\nf 1155/1283/1118 1166/1296/1129 1165/1295/1128\nf 1156/1284/1119 1166/1296/1129 1155/1283/1118\nf 1167/1297/1130 1166/1296/1129 1156/1284/1119\nf 1168/1298/1131 1166/1296/1129 1167/1297/1130\nf 1169/1299/1132 1166/1296/1129 1168/1298/1131\nf 1169/1299/1132 1165/1295/1128 1166/1296/1129\nf 1169/1299/1132 1170/1300/1133 1165/1295/1128\nf 1169/1299/1132 1171/1301/1134 1170/1300/1133\nf 1169/1299/1132 1172/1302/1135 1171/1301/1134\nf 1168/1298/1131 1172/1302/1135 1169/1299/1132\nf 1168/1298/1131 1173/1303/1136 1172/1302/1135\nf 1174/1304/1137 1173/1303/1136 1168/1298/1131\nf 1175/1305/1138 1173/1303/1136 1174/1304/1137\nf 1176/372/1139 1173/393/1136 1175/394/1138\nf 1176/372/1139 1172/392/1135 1173/393/1136\nf 1171/391/1134 1172/392/1135 1176/372/1139\nf 1177/378/1140 1171/391/1134 1176/372/1139\nf 1170/1300/1133 1171/1301/1134 1177/1306/1140\nf 1170/1300/1133 1177/1306/1140 1178/1307/1141\nf 1179/1308/1142 1178/1307/1141 1177/1306/1140\nf 1179/1308/1142 1180/1309/1143 1178/1307/1141\nf 1181/1310/1144 1180/1309/1143 1179/1308/1142\nf 1181/1310/1144 1182/1311/1145 1180/1309/1143\nf 1182/1311/1145 1181/1310/1144 1183/1312/1146\nf 1181/376/1144 1176/372/1139 1183/375/1146\nf 1179/377/1142 1176/372/1139 1181/376/1144\nf 1179/377/1142 1177/378/1140 1176/372/1139\nf 1183/375/1146 1176/372/1139 1184/373/1147\nf 1176/372/1139 1185/374/1148 1184/373/1147\nf 1176/372/1139 1175/394/1138 1185/374/1148\nf 1185/1313/1148 1175/1305/1138 1186/1314/1149\nf 1186/1314/1149 1175/1305/1138 1174/1304/1137\nf 1186/1314/1149 1174/1304/1137 1158/1287/1121\nf 1174/1304/1137 1167/1297/1130 1158/1287/1121\nf 1168/1298/1131 1167/1297/1130 1174/1304/1137\nf 1158/1287/1121 1167/1297/1130 1157/1285/1120\nf 1157/1285/1120 1167/1297/1130 1156/1284/1119\nf 1159/1288/1122 1186/1314/1149 1158/1287/1121\nf 1187/1315/1150 1186/1314/1149 1159/1288/1122\nf 1186/1314/1149 1187/1315/1150 1185/1313/1148\nf 1187/1315/1150 1184/1316/1147 1185/1313/1148\nf 1187/1317/1150 1188/1318/1151 1184/1319/1147\nf 1160/1290/1123 1188/1318/1151 1187/1317/1150\nf 1161/1291/1124 1188/1318/1151 1160/1290/1123\nf 1161/1291/1124 1182/1311/1145 1188/1318/1151\nf 1161/1291/1124 1162/1292/1125 1182/1311/1145\nf 1182/1311/1145 1162/1292/1125 1180/1309/1143\nf 1162/1292/1125 1163/1293/1126 1180/1309/1143\nf 1180/1309/1143 1163/1293/1126 1178/1307/1141\nf 1178/1307/1141 1163/1293/1126 1164/1294/1127\nf 1170/1300/1133 1178/1307/1141 1164/1294/1127\nf 1170/1300/1133 1164/1294/1127 1165/1295/1128\nf 1188/1318/1151 1182/1311/1145 1183/1312/1146\nf 1188/1318/1151 1183/1312/1146 1184/1319/1147\nf 1160/1290/1123 1187/1317/1150 1159/1289/1122\nf 1189/1320/1152 1103/1221/1066 1133/1258/1096\nf 1102/1220/1065 1103/1221/1066 1189/1320/1152\nf 1102/1220/1065 1189/1320/1152 1101/1219/1064\nf 1189/1320/1152 1131/1256/1094 1101/1219/1064\nf 1189/1320/1152 1133/1258/1096 1131/1256/1094\nf 1101/1219/1064 1131/1256/1094 1100/1218/1063\nf 1075/1184/1038 1077/1242/1040 1074/1183/1037\nf 1036/1145/999 1039/1148/1002 1089/1207/1052\nf 1036/1145/999 1089/1207/1052 1035/1143/998\nf 1035/1143/998 1089/1207/1052 1085/1203/1048\nf 1023/1130/986 1024/1131/987 1076/1185/1039\nf 1023/1128/986 1076/1321/1039 1022/1127/985\nf 1022/1127/985 1076/1321/1039 1032/1139/995\nf 1032/1139/995 1076/1321/1039 1037/1322/1000\nf 1037/1322/1000 1033/1140/996 1032/1139/995\nf 1022/1127/985 1032/1139/995 1021/1126/984\nf 123/1129/85 121/109/83 122/110/84\nf 98/79/60 99/80/61 124/113/86\nf 59/24/21 60/25/22 95/74/57\nf 95/74/57 93/76/55 59/24/21\nf 59/24/21 93/76/55 92/1323/54\nf 59/24/21 92/1323/54 58/23/20\nf 58/23/20 92/1323/54 1190/1324/1153\nf 1190/1325/1153 92/69/54 91/68/53\nf 25/1326/1154 1190/1325/1153 91/68/53\nf 22/1327/1155 25/1326/1154 91/68/53\nf 22/1327/1155 91/68/53 89/66/51\nf 20/19/17 22/1327/1155 89/66/51\nf 20/19/17 89/66/51 19/18/16\nf 66/33/28 67/34/29 69/43/31\nf 67/34/29 68/35/30 69/43/31\nf 13/26/10 57/20/18 12/22/9\ng mesh1.002_mesh1-geometry_orig_02_-_Defaul1noCu_orig_02_-_Defaul1noCu\nusemtl orig_02_-_Defaul1noCu_orig_02_-_Defaul1noCu\nf 5/1328/5 6/1329/1156 4/1330/4\nf 5/1328/5 7/1331/1157 6/1329/1156\nf 8/1332/8 7/1331/1157 5/1328/5\nf 8/1332/8 9/1333/1158 7/1331/1157\nf 10/1334/7 8/1332/8 9/1333/1158\nf 21/1335/1159 20/1336/17 2/1337/2\nf 21/1335/1159 22/1338/1155 20/1336/17\nf 23/1339/1160 22/1338/1155 21/1335/1159\nf 24/1340/1161 22/1338/1155 23/1339/1160\nf 24/1340/1161 25/1341/1154 22/1338/1155\nf 24/1340/1161 26/1342/1162 25/1341/1154\nf 24/1340/1161 27/1343/1163 26/1342/1162\nf 24/1340/1161 28/1344/1164 27/1343/1163\nf 24/1340/1161 29/1345/1165 28/1344/1164\nf 24/1340/1161 30/1346/1166 29/1345/1165\nf 23/1339/1160 30/1346/1166 24/1340/1161\nf 31/1347/1167 30/1346/1166 23/1339/1160\nf 31/1347/1167 32/1348/1168 30/1346/1166\nf 31/1347/1167 33/1349/1169 32/1348/1168\nf 34/1350/1170 33/1349/1169 31/1347/1167\nf 34/1350/1170 35/1351/1171 33/1349/1169\nf 36/1352/1172 35/1351/1171 34/1350/1170\nf 36/1352/1172 37/1353/1173 35/1351/1171\nf 36/1352/1172 38/1354/1174 37/1353/1173\nf 38/1354/1174 36/1352/1172 6/1329/1156\nf 36/1352/1172 34/1350/1170 6/1329/1156\nf 6/1329/1156 34/1350/1170 31/1347/1167\nf 6/1329/1156 31/1347/1167 4/1330/4\nf 31/1347/1167 2/1337/2 4/1330/4\nf 31/1347/1167 23/1339/1160 2/1337/2\nf 23/1339/1160 21/1335/1159 2/1337/2\nf 7/1331/1157 38/1354/1174 6/1329/1156\nf 7/1331/1157 39/1355/1175 38/1354/1174\nf 7/1331/1157 40/1356/1176 39/1355/1175\nf 9/1333/1158 40/1356/1176 7/1331/1157\nf 9/1333/1158 41/1357/1177 40/1356/1176\nf 42/1358/1178 41/1357/1177 9/1333/1158\nf 43/1359/1179 41/1360/1177 42/1361/1178\nf 43/1359/1179 44/1362/1180 41/1360/1177\nf 43/1359/1179 45/1363/1181 44/1362/1180\nf 46/1364/1182 45/1363/1181 43/1359/1179\nf 46/1364/1182 47/1365/1183 45/1363/1181\nf 47/1365/1183 46/1364/1182 48/1363/1184\nf 48/1363/1184 46/1364/1182 49/1359/1185\nf 46/1364/1182 50/1366/1186 49/1359/1185\nf 46/1364/1182 51/1367/1187 50/1366/1186\nf 46/1364/1182 52/1366/1188 51/1367/1187\nf 46/1364/1182 43/1359/1179 52/1366/1188\nf 43/1359/1179 42/1361/1178 52/1366/1188\nf 52/1368/1188 42/1358/1178 53/1369/1189\nf 53/1369/1189 42/1358/1178 9/1333/1158\nf 10/1334/7 9/1333/1158 53/1369/1189\nf 54/1370/1190 53/1369/1189 10/1334/7\nf 54/1370/1190 52/1368/1188 53/1369/1189\nf 51/1371/1187 52/1368/1188 54/1370/1190\nf 50/1372/1186 51/1373/1187 54/1374/1190\nf 50/1372/1186 54/1374/1190 55/1375/1191\nf 54/1374/1190 56/1376/19 55/1375/1191\nf 54/1374/1190 12/1377/9 56/1376/19\nf 54/1370/1190 10/1334/7 12/1378/9\nf 1190/1379/1153 25/1341/1154 26/1342/1162\nf 1191/1380/1192 1190/1381/1153 26/1342/1162\nf 58/1382/20 1190/1381/1153 1191/1380/1192\nf 1192/1383/1193 58/1382/20 1191/1380/1192\nf 1192/1383/1193 56/1376/19 58/1382/20\nf 55/1375/1191 56/1376/19 1192/1383/1193\nf 1193/1384/1194 55/1375/1191 1192/1383/1193\nf 50/1372/1186 55/1375/1191 1193/1384/1194\nf 49/1359/1185 50/1366/1186 1193/1361/1194\nf 49/1359/1185 1193/1361/1194 1194/1360/1195\nf 1193/1384/1194 1192/1383/1193 1194/1385/1195\nf 1194/1385/1195 1192/1383/1193 1195/1386/1196\nf 1195/1386/1196 1192/1383/1193 1191/1380/1192\nf 1195/1386/1196 1191/1380/1192 1196/1387/1197\nf 1191/1380/1192 1197/1388/1198 1196/1387/1197\nf 1191/1380/1192 26/1342/1162 1197/1388/1198\nf 1197/1388/1198 26/1342/1162 1198/1389/1199\nf 1198/1389/1199 26/1342/1162 27/1343/1163\nf 27/1343/1163 1199/1390/1200 1198/1389/1199\nf 28/1344/1164 1199/1390/1200 27/1343/1163\nf 28/1344/1164 1200/1391/1201 1199/1390/1200\nf 29/1345/1165 1200/1391/1201 28/1344/1164\nf 29/1345/1165 1201/1392/1202 1200/1391/1201\nf 29/1345/1165 1202/1393/1203 1201/1392/1202\nf 30/1346/1166 1202/1393/1203 29/1345/1165\nf 32/1348/1168 1202/1393/1203 30/1346/1166\nf 32/1348/1168 1203/1394/1204 1202/1393/1203\nf 32/1348/1168 1204/1395/1205 1203/1394/1204\nf 33/1349/1169 1204/1395/1205 32/1348/1168\nf 35/1351/1171 1204/1395/1205 33/1349/1169\nf 1205/1396/1206 1204/1395/1205 35/1351/1171\nf 1205/1396/1206 1206/1397/1207 1204/1395/1205\nf 1207/1398/1208 1206/1397/1207 1205/1396/1206\nf 1207/1398/1208 1208/1399/1209 1206/1397/1207\nf 1209/1400/1210 1208/1399/1209 1207/1398/1208\nf 1209/1400/1210 1210/1401/1211 1208/1399/1209\nf 1211/1402/1212 1210/1401/1211 1209/1400/1210\nf 1211/1402/1212 1212/1403/1213 1210/1401/1211\nf 1213/1404/1214 1212/1403/1213 1211/1402/1212\nf 1213/1404/1214 1214/1405/1215 1212/1403/1213\nf 1215/1406/1216 1214/1405/1215 1213/1404/1214\nf 1215/1406/1216 1216/1407/1217 1214/1405/1215\nf 1215/1406/1216 1217/1408/1218 1216/1407/1217\nf 1215/1406/1216 1218/1409/1219 1217/1408/1218\nf 1219/1410/1220 1218/1409/1219 1215/1406/1216\nf 1219/1410/1220 1220/1411/1221 1218/1409/1219\nf 1221/1412/1222 1220/1411/1221 1219/1410/1220\nf 1222/1413/1223 1220/1411/1221 1221/1412/1222\nf 1223/1414/1224 1220/1411/1221 1222/1413/1223\nf 1224/1415/1225 1220/1411/1221 1223/1414/1224\nf 1220/1411/1221 1224/1415/1225 1218/1409/1219\nf 1224/1415/1225 1225/1416/1226 1218/1409/1219\nf 1226/1417/1227 1225/1416/1226 1224/1415/1225\nf 1227/1418/1228 1225/1416/1226 1226/1417/1227\nf 1228/1419/1229 1225/1416/1226 1227/1418/1228\nf 1217/1408/1218 1225/1416/1226 1228/1419/1229\nf 1218/1409/1219 1225/1416/1226 1217/1408/1218\nf 1217/1408/1218 1228/1419/1229 1229/1420/1230\nf 1229/1420/1230 1228/1419/1229 1230/1421/1231\nf 1228/1419/1229 1231/1422/1232 1230/1421/1231\nf 1228/1419/1229 1227/1418/1228 1231/1422/1232\nf 1232/1423/1233 1231/1422/1232 1227/1418/1228\nf 1233/1424/1234 1231/1422/1232 1232/1423/1233\nf 1233/1424/1234 1234/1425/1235 1231/1422/1232\nf 1235/1426/1236 1234/1425/1235 1233/1424/1234\nf 1234/1425/1235 1235/1426/1236 1236/1427/1237\nf 1235/1426/1236 1237/1428/1238 1236/1427/1237\nf 1238/1429/1239 1237/1428/1238 1235/1426/1236\nf 1238/1429/1239 1239/1430/1240 1237/1428/1238\nf 1238/1429/1239 1240/1431/1241 1239/1430/1240\nf 1241/1432/1242 1240/1431/1241 1238/1429/1239\nf 1241/1432/1242 1200/1391/1201 1240/1431/1241\nf 1199/1390/1200 1200/1391/1201 1241/1432/1242\nf 1242/1433/1243 1199/1390/1200 1241/1432/1242\nf 1198/1389/1199 1199/1390/1200 1242/1433/1243\nf 1197/1388/1198 1198/1389/1199 1242/1433/1243\nf 1243/1434/1244 1197/1388/1198 1242/1433/1243\nf 1196/1387/1197 1197/1388/1198 1243/1434/1244\nf 1196/1387/1197 1243/1434/1244 1244/1435/1245\nf 1244/1435/1245 1243/1434/1244 1245/1436/1246\nf 1245/1436/1246 1243/1434/1244 1246/1437/1247\nf 1243/1434/1244 1247/1438/1248 1246/1437/1247\nf 1243/1434/1244 1242/1433/1243 1247/1438/1248\nf 1247/1438/1248 1242/1433/1243 1248/1439/1249\nf 1242/1433/1243 1249/1440/1250 1248/1439/1249\nf 1242/1433/1243 1241/1432/1242 1249/1440/1250\nf 1249/1440/1250 1241/1432/1242 1238/1429/1239\nf 1249/1440/1250 1238/1429/1239 1250/1441/1251\nf 1250/1441/1251 1238/1429/1239 1251/1442/1252\nf 1251/1442/1252 1238/1429/1239 1235/1426/1236\nf 1251/1442/1252 1235/1426/1236 1252/1443/1253\nf 1235/1426/1236 1233/1424/1234 1252/1443/1253\nf 1252/1443/1253 1233/1424/1234 1253/1444/1254\nf 1233/1424/1234 1232/1423/1233 1253/1444/1254\nf 1232/1423/1233 1254/1445/1255 1253/1444/1254\nf 1232/1423/1233 1255/1446/1256 1254/1445/1255\nf 1232/1423/1233 1227/1418/1228 1255/1446/1256\nf 1227/1418/1228 1226/1417/1227 1255/1446/1256\nf 1254/1445/1255 1255/1446/1256 1226/1417/1227\nf 1254/1445/1255 1226/1417/1227 1256/1447/1257\nf 1257/1448/1258 1256/1447/1257 1226/1417/1227\nf 1258/1449/1259 1256/1447/1257 1257/1448/1258\nf 1254/1445/1255 1256/1447/1257 1258/1449/1259\nf 1259/1450/1260 1254/1445/1255 1258/1449/1259\nf 1260/1451/1261 1254/1445/1255 1259/1450/1260\nf 1253/1444/1254 1254/1445/1255 1260/1451/1261\nf 1253/1444/1254 1260/1451/1261 1261/1452/1262\nf 1261/1452/1262 1260/1451/1261 1262/1453/1263\nf 1259/1450/1260 1262/1453/1263 1260/1451/1261\nf 1259/1450/1260 1263/1454/1264 1262/1453/1263\nf 1259/1450/1260 1264/1455/1265 1263/1454/1264\nf 1259/1450/1260 1265/1456/1266 1264/1455/1265\nf 1258/1449/1259 1265/1456/1266 1259/1450/1260\nf 1258/1449/1259 1266/1457/1267 1265/1456/1266\nf 1258/1449/1259 1267/1458/1268 1266/1457/1267\nf 1268/1459/1269 1267/1458/1268 1258/1449/1259\nf 1269/1460/1270 1267/1458/1268 1268/1459/1269\nf 1269/1460/1270 1270/1461/1271 1267/1458/1268\nf 1271/1462/1272 1270/1461/1271 1269/1460/1270\nf 1272/1463/1273 1270/1461/1271 1271/1462/1272\nf 1273/1464/1274 1270/1461/1271 1272/1463/1273\nf 1274/1465/1275 1270/1461/1271 1273/1464/1274\nf 1274/1465/1275 1275/1466/1276 1270/1461/1271\nf 1274/1465/1275 1276/1467/1277 1275/1466/1276\nf 1277/1468/1278 1276/1467/1277 1274/1465/1275\nf 1278/1469/1279 1276/1467/1277 1277/1468/1278\nf 1279/1470/1280 1276/1467/1277 1278/1469/1279\nf 1279/1470/1280 1280/1471/1281 1276/1467/1277\nf 1265/1456/1266 1280/1471/1281 1279/1470/1280\nf 1266/1457/1267 1280/1471/1281 1265/1456/1266\nf 1267/1458/1268 1280/1471/1281 1266/1457/1267\nf 1267/1458/1268 1275/1466/1276 1280/1471/1281\nf 1267/1458/1268 1270/1461/1271 1275/1466/1276\nf 1276/1467/1277 1280/1471/1281 1275/1466/1276\nf 1265/1456/1266 1279/1470/1280 1281/1472/1282\nf 1281/1472/1282 1279/1470/1280 1278/1469/1279\nf 1282/1473/1283 1281/1472/1282 1278/1469/1279\nf 1262/1453/1263 1281/1472/1282 1282/1473/1283\nf 1263/1454/1264 1281/1472/1282 1262/1453/1263\nf 1264/1455/1265 1281/1472/1282 1263/1454/1264\nf 1265/1456/1266 1281/1472/1282 1264/1455/1265\nf 1283/1474/1284 1262/1453/1263 1282/1473/1283\nf 1261/1452/1262 1262/1453/1263 1283/1474/1284\nf 1261/1452/1262 1283/1474/1284 1284/1475/1285\nf 1283/1474/1284 1285/1476/1286 1284/1475/1285\nf 1283/1474/1284 1282/1473/1283 1285/1476/1286\nf 1285/1476/1286 1282/1473/1283 1278/1469/1279\nf 1285/1476/1286 1278/1469/1279 1286/1477/1287\nf 1286/1477/1287 1278/1469/1279 1277/1468/1278\nf 1287/1478/1288 1286/1477/1287 1277/1468/1278\nf 1287/1478/1288 1288/1479/1289 1286/1477/1287\nf 1289/1480/1290 1288/1479/1289 1287/1478/1288\nf 1284/1475/1285 1288/1479/1289 1289/1480/1290\nf 1284/1475/1285 1286/1477/1287 1288/1479/1289\nf 1284/1475/1285 1285/1476/1286 1286/1477/1287\nf 1290/1481/1291 1284/1475/1285 1289/1480/1290\nf 1261/1452/1262 1284/1475/1285 1290/1481/1291\nf 1291/1482/1292 1261/1452/1262 1290/1481/1291\nf 1292/1483/1293 1261/1452/1262 1291/1482/1292\nf 1293/1484/1294 1261/1452/1262 1292/1483/1293\nf 1293/1484/1294 1252/1443/1253 1261/1452/1262\nf 1294/1485/1295 1252/1443/1253 1293/1484/1294\nf 1294/1485/1295 1251/1442/1252 1252/1443/1253\nf 1250/1441/1251 1251/1442/1252 1294/1485/1295\nf 1249/1440/1250 1250/1441/1251 1294/1485/1295\nf 1248/1439/1249 1249/1440/1250 1294/1485/1295\nf 1248/1439/1249 1294/1485/1295 1293/1484/1294\nf 1295/1486/1296 1248/1439/1249 1293/1484/1294\nf 1247/1438/1248 1248/1439/1249 1295/1486/1296\nf 1246/1437/1247 1247/1438/1248 1295/1486/1296\nf 1246/1437/1247 1295/1486/1296 1296/1487/1297\nf 1296/1487/1297 1295/1486/1296 1297/1488/1298\nf 1295/1486/1296 1293/1484/1294 1297/1488/1298\nf 1297/1488/1298 1293/1484/1294 1292/1483/1293\nf 1297/1488/1298 1292/1483/1293 1298/1489/1299\nf 1298/1489/1299 1292/1483/1293 1299/1490/1300\nf 1292/1483/1293 1291/1482/1292 1299/1490/1300\nf 1299/1490/1300 1291/1482/1292 1300/1491/1301\nf 1300/1491/1301 1291/1482/1292 1301/1492/1302\nf 1301/1492/1302 1291/1482/1292 1290/1481/1291\nf 1301/1492/1302 1290/1481/1291 1302/1493/1303\nf 1290/1481/1291 1289/1480/1290 1302/1493/1303\nf 1302/1493/1303 1289/1480/1290 1303/1494/1304\nf 1303/1494/1304 1289/1480/1290 1304/1495/1305\nf 1289/1480/1290 1287/1478/1288 1304/1495/1305\nf 1304/1495/1305 1287/1478/1288 1305/1496/1306\nf 1305/1496/1306 1287/1478/1288 1306/1497/1307\nf 1306/1497/1307 1287/1478/1288 1307/1498/1308\nf 1287/1478/1288 1277/1468/1278 1307/1498/1308\nf 1277/1468/1278 1274/1465/1275 1307/1498/1308\nf 1307/1498/1308 1274/1465/1275 1308/1499/1309\nf 1308/1499/1309 1274/1465/1275 1273/1464/1274\nf 1308/1499/1309 1273/1464/1274 1309/1500/1310\nf 1309/1500/1310 1273/1464/1274 1272/1463/1273\nf 1309/1500/1310 1272/1463/1273 1310/1501/1311\nf 1310/1501/1311 1272/1463/1273 1311/1502/1312\nf 1311/1502/1312 1272/1463/1273 1268/1459/1269\nf 1272/1463/1273 1271/1462/1272 1268/1459/1269\nf 1271/1462/1272 1269/1460/1270 1268/1459/1269\nf 1311/1502/1312 1268/1459/1269 1257/1448/1258\nf 1268/1459/1269 1258/1449/1259 1257/1448/1258\nf 1311/1502/1312 1257/1448/1258 1312/1503/1313\nf 1257/1448/1258 1223/1414/1224 1312/1503/1313\nf 1257/1448/1258 1313/1504/1314 1223/1414/1224\nf 1257/1448/1258 1226/1417/1227 1313/1504/1314\nf 1313/1504/1314 1226/1417/1227 1224/1415/1225\nf 1313/1504/1314 1224/1415/1225 1223/1414/1224\nf 1312/1503/1313 1223/1414/1224 1222/1413/1223\nf 1312/1503/1313 1222/1413/1223 1314/1505/1315\nf 1314/1505/1315 1222/1413/1223 1315/1506/1316\nf 1222/1413/1223 1221/1412/1222 1315/1506/1316\nf 1315/1506/1316 1221/1412/1222 1316/1507/1317\nf 1316/1507/1317 1221/1412/1222 1317/1508/1318\nf 1317/1508/1318 1221/1412/1222 1318/1509/1319\nf 1318/1509/1319 1221/1412/1222 1219/1410/1220\nf 1318/1509/1319 1219/1410/1220 1319/1510/1320\nf 1319/1510/1320 1219/1410/1220 1320/1511/1321\nf 1219/1410/1220 1215/1406/1216 1320/1511/1321\nf 1320/1511/1321 1215/1406/1216 1213/1404/1214\nf 1213/1404/1214 1211/1402/1212 1320/1511/1321\nf 1320/1511/1321 1211/1402/1212 1319/1510/1320\nf 1321/1512/1322 1319/1510/1320 1211/1402/1212\nf 1317/1508/1318 1319/1510/1320 1321/1512/1322\nf 1317/1508/1318 1318/1509/1319 1319/1510/1320\nf 1316/1507/1317 1317/1508/1318 1321/1512/1322\nf 1316/1507/1317 1321/1512/1322 1209/1400/1210\nf 1321/1512/1322 1211/1402/1212 1209/1400/1210\nf 1315/1506/1316 1316/1507/1317 1209/1400/1210\nf 1315/1506/1316 1209/1400/1210 1207/1398/1208\nf 1315/1506/1316 1207/1398/1208 1322/1513/1323\nf 1322/1513/1323 1207/1398/1208 1323/1514/1324\nf 1323/1514/1324 1207/1398/1208 1324/1515/1325\nf 1324/1515/1325 1207/1398/1208 1205/1396/1206\nf 1324/1515/1325 1205/1396/1206 37/1353/1173\nf 37/1353/1173 1205/1396/1206 35/1351/1171\nf 1325/1516/1326 1324/1515/1325 37/1353/1173\nf 1326/1517/1327 1324/1515/1325 1325/1516/1326\nf 1326/1517/1327 1323/1514/1324 1324/1515/1325\nf 1326/1517/1327 1322/1513/1323 1323/1514/1324\nf 1314/1505/1315 1322/1513/1323 1326/1517/1327\nf 1314/1505/1315 1315/1506/1316 1322/1513/1323\nf 1327/1518/1328 1314/1505/1315 1326/1517/1327\nf 1310/1501/1311 1314/1505/1315 1327/1518/1328\nf 1310/1501/1311 1312/1503/1313 1314/1505/1315\nf 1310/1501/1311 1311/1502/1312 1312/1503/1313\nf 1328/1519/1329 1310/1501/1311 1327/1518/1328\nf 1329/1520/1330 1310/1501/1311 1328/1519/1329\nf 1330/1521/1331 1310/1501/1311 1329/1520/1330\nf 1330/1521/1331 1331/1522/1332 1310/1501/1311\nf 1305/1496/1306 1331/1522/1332 1330/1521/1331\nf 1305/1496/1306 1306/1497/1307 1331/1522/1332\nf 1306/1497/1307 1307/1498/1308 1331/1522/1332\nf 1331/1522/1332 1307/1498/1308 1308/1499/1309\nf 1331/1522/1332 1308/1499/1309 1309/1500/1310\nf 1310/1501/1311 1331/1522/1332 1309/1500/1310\nf 1332/1523/1333 1305/1496/1306 1330/1521/1331\nf 1303/1494/1304 1305/1496/1306 1332/1523/1333\nf 1303/1494/1304 1304/1495/1305 1305/1496/1306\nf 1333/1524/1334 1303/1494/1304 1332/1523/1333\nf 1302/1493/1303 1303/1494/1304 1333/1524/1334\nf 1334/1525/1335 1302/1493/1303 1333/1524/1334\nf 1335/1526/1336 1302/1493/1303 1334/1525/1335\nf 1301/1492/1302 1302/1493/1303 1335/1526/1336\nf 1336/1527/1337 1301/1492/1302 1335/1526/1336\nf 1337/1528/1338 1301/1492/1302 1336/1527/1337\nf 1300/1491/1301 1301/1492/1302 1337/1528/1338\nf 1338/1529/1339 1300/1491/1301 1337/1528/1338\nf 1338/1529/1339 1339/1530/1340 1300/1491/1301\nf 1338/1529/1339 1340/1531/1341 1339/1530/1340\nf 1338/1529/1339 1341/1532/1342 1340/1531/1341\nf 1342/1533/1343 1341/1532/1342 1338/1529/1339\nf 1343/1534/1344 1341/1532/1342 1342/1533/1343\nf 1344/1535/1345 1341/1532/1342 1343/1534/1344\nf 1345/1536/1346 1341/1532/1342 1344/1535/1345\nf 1341/1532/1342 1345/1536/1346 1340/1531/1341\nf 1345/1536/1346 1339/1530/1340 1340/1531/1341\nf 1346/1537/1347 1339/1530/1340 1345/1536/1346\nf 1346/1537/1347 1299/1490/1300 1339/1530/1340\nf 1298/1489/1299 1299/1490/1300 1346/1537/1347\nf 1347/1538/1348 1298/1489/1299 1346/1537/1347\nf 1296/1487/1297 1298/1489/1299 1347/1538/1348\nf 1296/1487/1297 1297/1488/1298 1298/1489/1299\nf 1348/1539/1349 1296/1487/1297 1347/1538/1348\nf 1348/1539/1349 1246/1437/1247 1296/1487/1297\nf 1349/1540/1350 1246/1437/1247 1348/1539/1349\nf 1245/1436/1246 1246/1437/1247 1349/1540/1350\nf 1350/1541/1351 1245/1436/1246 1349/1540/1350\nf 1351/1542/1352 1245/1436/1246 1350/1541/1351\nf 1351/1542/1352 1244/1435/1245 1245/1436/1246\nf 1351/1542/1352 1352/1543/1353 1244/1435/1245\nf 1353/1544/1354 1352/1543/1353 1351/1542/1352\nf 1354/1545/1355 1352/1543/1353 1353/1544/1354\nf 1354/1545/1355 1355/1546/1356 1352/1543/1353\nf 1354/1547/1355 1356/1548/1357 1355/1549/1356\nf 1357/1550/1358 1356/1548/1357 1354/1547/1355\nf 1356/1548/1357 1357/1550/1358 1358/1551/1359\nf 1357/1552/1358 1359/1553/1360 1358/1554/1359\nf 1357/1552/1358 1360/1555/1361 1359/1553/1360\nf 1361/1556/1362 1360/1555/1361 1357/1552/1358\nf 1361/1556/1362 1362/1557/1363 1360/1555/1361\nf 1363/1558/1364 1362/1557/1363 1361/1556/1362\nf 1362/1557/1363 1363/1558/1364 1364/1559/1365\nf 1363/1558/1364 1365/1560/1366 1364/1559/1365\nf 1365/1561/1366 1363/1562/1364 1354/1547/1355\nf 1363/1562/1364 1361/1563/1362 1354/1547/1355\nf 1354/1547/1355 1361/1563/1362 1357/1550/1358\nf 1364/1559/1365 1365/1560/1366 1354/1545/1355\nf 1364/1559/1365 1354/1545/1355 1353/1544/1354\nf 1364/1559/1365 1353/1544/1354 1362/1557/1363\nf 1362/1557/1363 1353/1544/1354 1351/1542/1352\nf 1362/1557/1363 1351/1542/1352 1360/1555/1361\nf 1360/1555/1361 1351/1542/1352 1359/1553/1360\nf 1351/1542/1352 1350/1541/1351 1359/1553/1360\nf 1358/1554/1359 1359/1553/1360 1350/1541/1351\nf 1358/1554/1359 1350/1541/1351 1349/1540/1350\nf 1358/1554/1359 1349/1540/1350 1366/1564/1367\nf 1349/1540/1350 1348/1539/1349 1366/1564/1367\nf 1348/1539/1349 1367/1565/1368 1366/1564/1367\nf 1348/1539/1349 1368/1566/1369 1367/1565/1368\nf 1348/1539/1349 1369/1567/1370 1368/1566/1369\nf 1348/1539/1349 1347/1538/1348 1369/1567/1370\nf 1369/1567/1370 1347/1538/1348 1370/1568/1371\nf 1347/1538/1348 1346/1537/1347 1370/1568/1371\nf 1370/1568/1371 1346/1537/1347 1345/1536/1346\nf 1370/1568/1371 1345/1536/1346 1344/1535/1345\nf 1370/1568/1371 1344/1535/1345 1371/1569/1372\nf 1371/1569/1372 1344/1535/1345 1343/1534/1344\nf 1343/1534/1344 1372/1570/1373 1371/1569/1372\nf 1343/1534/1344 1373/1571/1374 1372/1570/1373\nf 1374/1572/1375 1373/1571/1374 1343/1534/1344\nf 1375/1573/1376 1373/1571/1374 1374/1572/1375\nf 1376/1574/1377 1373/1571/1374 1375/1573/1376\nf 1372/1570/1373 1373/1571/1374 1376/1574/1377\nf 1377/1575/1378 1372/1570/1373 1376/1574/1377\nf 1371/1569/1372 1372/1570/1373 1377/1575/1378\nf 1370/1568/1371 1371/1569/1372 1377/1575/1378\nf 1370/1568/1371 1377/1575/1378 1368/1566/1369\nf 1368/1566/1369 1377/1575/1378 1378/1576/1379\nf 1377/1575/1378 1379/1577/1380 1378/1576/1379\nf 1377/1575/1378 1376/1574/1377 1379/1577/1380\nf 1376/1574/1377 1380/1578/1381 1379/1577/1380\nf 1380/1578/1381 1376/1574/1377 1375/1573/1376\nf 1375/1573/1376 1337/1528/1338 1380/1578/1381\nf 1375/1573/1376 1374/1572/1375 1337/1528/1338\nf 1337/1528/1338 1374/1572/1375 1381/1579/1382\nf 1381/1579/1382 1374/1572/1375 1342/1533/1343\nf 1342/1533/1343 1374/1572/1375 1343/1534/1344\nf 1381/1579/1382 1342/1533/1343 1338/1529/1339\nf 1337/1528/1338 1381/1579/1382 1338/1529/1339\nf 1337/1528/1338 1336/1527/1337 1380/1578/1381\nf 1336/1527/1337 1382/1580/1383 1380/1578/1381\nf 1336/1527/1337 1335/1526/1336 1382/1580/1383\nf 1382/1580/1383 1335/1526/1336 1383/1581/1384\nf 1335/1526/1336 1334/1525/1335 1383/1581/1384\nf 1334/1525/1335 1384/1582/1385 1383/1581/1384\nf 1334/1525/1335 1333/1524/1334 1384/1582/1385\nf 1384/1582/1385 1333/1524/1334 1385/1583/1386\nf 1333/1524/1334 1332/1523/1333 1385/1583/1386\nf 1385/1583/1386 1332/1523/1333 1386/1584/1387\nf 1386/1584/1387 1332/1523/1333 1387/1585/1388\nf 1387/1585/1388 1332/1523/1333 1330/1521/1331\nf 1387/1585/1388 1330/1521/1331 1329/1520/1330\nf 1387/1585/1388 1329/1520/1330 1388/1586/1389\nf 1388/1586/1389 1329/1520/1330 1389/1587/1390\nf 1389/1587/1390 1329/1520/1330 1328/1519/1329\nf 1390/1588/1391 1389/1587/1390 1328/1519/1329\nf 1391/1589/1392 1389/1587/1390 1390/1588/1391\nf 1391/1589/1392 1392/1590/1393 1389/1587/1390\nf 1393/1591/1394 1392/1590/1393 1391/1589/1392\nf 1393/1591/1394 1394/1592/1395 1392/1590/1393\nf 1393/1591/1394 1395/1593/1396 1394/1592/1395\nf 1396/1594/1397 1395/1593/1396 1393/1591/1394\nf 1397/1595/1398 1395/1593/1396 1396/1594/1397\nf 1398/1596/1399 1395/1593/1396 1397/1595/1398\nf 1395/1593/1396 1398/1596/1399 1399/1597/1400\nf 1398/1596/1399 1400/1598/1401 1399/1597/1400\nf 1401/1599/1402 1400/1598/1401 1398/1596/1399\nf 1402/1600/1403 1401/1599/1402 1403/1601/1404\nf 1403/1601/1404 1401/1599/1402 1404/1602/1405\nf 1397/1595/1398 1404/1602/1405 1401/1599/1402\nf 1405/1603/1406 1404/1602/1405 1397/1595/1398\nf 1406/1604/1407 1404/1602/1405 1405/1603/1406\nf 1406/1604/1407 1403/1601/1404 1404/1602/1405\nf 1406/1604/1407 1407/1605/1408 1403/1601/1404\nf 1408/1606/1409 1407/1605/1408 1406/1604/1407\nf 1408/1606/1409 1409/1607/1410 1407/1605/1408\nf 1410/1608/1411 1409/1607/1410 1408/1606/1409\nf 1411/1609/1412 1409/1607/1410 1410/1608/1411\nf 1411/1609/1412 1412/1610/1413 1409/1607/1410\nf 1411/1609/1412 1384/1582/1385 1412/1610/1413\nf 1413/1611/1414 1384/1582/1385 1411/1609/1412\nf 1414/1612/1415 1384/1582/1385 1413/1611/1414\nf 1414/1612/1415 1383/1581/1384 1384/1582/1385\nf 1382/1580/1383 1383/1581/1384 1414/1612/1415\nf 1415/1613/1416 1382/1580/1383 1414/1612/1415\nf 1379/1577/1380 1382/1580/1383 1415/1613/1416\nf 1380/1578/1381 1382/1580/1383 1379/1577/1380\nf 1378/1576/1379 1379/1577/1380 1415/1613/1416\nf 1378/1576/1379 1415/1613/1416 1416/1614/1417\nf 1417/1615/1418 1416/1614/1417 1415/1613/1416\nf 1367/1565/1368 1416/1614/1417 1417/1615/1418\nf 1367/1565/1368 1378/1576/1379 1416/1614/1417\nf 1367/1565/1368 1368/1566/1369 1378/1576/1379\nf 1366/1564/1367 1367/1565/1368 1417/1615/1418\nf 1366/1564/1367 1417/1615/1418 1418/1616/1419\nf 1418/1616/1419 1417/1615/1418 1419/1617/1420\nf 1417/1615/1418 1414/1612/1415 1419/1617/1420\nf 1417/1615/1418 1415/1613/1416 1414/1612/1415\nf 1420/1618/1421 1419/1617/1420 1414/1612/1415\nf 1421/1619/1422 1419/1617/1420 1420/1618/1421\nf 1422/1620/1423 1419/1617/1420 1421/1619/1422\nf 1418/1616/1419 1419/1617/1420 1422/1620/1423\nf 1418/1616/1419 1422/1620/1423 1423/1621/1424\nf 1423/1621/1424 1422/1620/1423 1424/1622/1425\nf 1424/1622/1425 1422/1620/1423 1421/1619/1422\nf 1424/1622/1425 1421/1619/1422 1425/1623/1426\nf 1425/1623/1426 1421/1619/1422 1426/1624/1427\nf 1421/1619/1422 1420/1618/1421 1426/1624/1427\nf 1420/1618/1421 1411/1609/1412 1426/1624/1427\nf 1420/1618/1421 1413/1611/1414 1411/1609/1412\nf 1414/1612/1415 1413/1611/1414 1420/1618/1421\nf 1427/1625/1428 1426/1624/1427 1411/1609/1412\nf 1428/1626/1429 1426/1624/1427 1427/1625/1428\nf 1428/1626/1429 1425/1623/1426 1426/1624/1427\nf 1429/1627/1430 1425/1623/1426 1428/1626/1429\nf 1424/1622/1425 1425/1623/1426 1429/1627/1430\nf 1430/1628/1431 1424/1622/1425 1429/1627/1430\nf 1430/1628/1431 1431/1629/1432 1424/1622/1425\nf 1432/1630/1433 1431/1629/1432 1430/1628/1431\nf 1432/1630/1433 1433/1631/1434 1431/1629/1432\nf 1432/1630/1433 1434/1632/1435 1433/1631/1434\nf 1435/1633/1436 1434/1634/1435 1432/1635/1433\nf 1435/1633/1436 1436/1636/1437 1434/1634/1435\nf 1435/1633/1436 48/1363/1184 1436/1636/1437\nf 1435/1633/1436 47/1365/1183 48/1363/1184\nf 1437/1637/1438 47/1365/1183 1435/1633/1436\nf 47/1365/1183 1437/1637/1438 1438/1633/1439\nf 1438/1633/1439 1437/1637/1438 1432/1635/1433\nf 1437/1637/1438 1435/1633/1436 1432/1635/1433\nf 1438/1633/1439 1432/1635/1433 1439/1634/1440\nf 1439/1638/1440 1432/1630/1433 1430/1628/1431\nf 1439/1638/1440 1430/1628/1431 1440/1639/1441\nf 1440/1639/1441 1430/1628/1431 1441/1640/1442\nf 1430/1628/1431 1429/1627/1430 1441/1640/1442\nf 1441/1640/1442 1429/1627/1430 1428/1626/1429\nf 1441/1640/1442 1428/1626/1429 1442/1641/1443\nf 1428/1626/1429 1427/1625/1428 1442/1641/1443\nf 1442/1641/1443 1427/1625/1428 1443/1642/1444\nf 1427/1625/1428 1444/1643/1445 1443/1642/1444\nf 1427/1625/1428 1410/1608/1411 1444/1643/1445\nf 1427/1625/1428 1411/1609/1412 1410/1608/1411\nf 1444/1643/1445 1410/1608/1411 1445/1644/1446\nf 1410/1608/1411 1408/1606/1409 1445/1644/1446\nf 1445/1644/1446 1408/1606/1409 1446/1645/1447\nf 1408/1606/1409 1406/1604/1407 1446/1645/1447\nf 1406/1604/1407 1405/1603/1406 1446/1645/1447\nf 1446/1645/1447 1405/1603/1406 1447/1646/1448\nf 1447/1646/1448 1405/1603/1406 1397/1595/1398\nf 1397/1595/1398 1396/1594/1397 1447/1646/1448\nf 1448/1647/1449 1447/1646/1448 1396/1594/1397\nf 1446/1645/1447 1447/1646/1448 1448/1647/1449\nf 1449/1648/1450 1446/1645/1447 1448/1647/1449\nf 1445/1644/1446 1446/1645/1447 1449/1648/1450\nf 1443/1642/1444 1445/1644/1446 1449/1648/1450\nf 1444/1643/1445 1445/1644/1446 1443/1642/1444\nf 1443/1642/1444 1449/1648/1450 1450/1649/1451\nf 1450/1649/1451 1449/1648/1450 1451/1650/1452\nf 1449/1648/1450 1448/1647/1449 1451/1650/1452\nf 1451/1650/1452 1448/1647/1449 1452/1651/1453\nf 1448/1647/1449 1391/1589/1392 1452/1651/1453\nf 1448/1647/1449 1393/1591/1394 1391/1589/1392\nf 1448/1647/1449 1396/1594/1397 1393/1591/1394\nf 1452/1651/1453 1391/1589/1392 1390/1588/1391\nf 1452/1651/1453 1390/1588/1391 1453/1652/1454\nf 1453/1652/1454 1390/1588/1391 1454/1653/1455\nf 1390/1588/1391 1328/1519/1329 1454/1653/1455\nf 1454/1653/1455 1328/1519/1329 1327/1518/1328\nf 1454/1653/1455 1327/1518/1328 1455/1654/1456\nf 1455/1654/1456 1327/1518/1328 1325/1516/1326\nf 1327/1518/1328 1326/1517/1327 1325/1516/1326\nf 1455/1654/1456 1325/1516/1326 1456/1655/1457\nf 1456/1655/1457 1325/1516/1326 37/1353/1173\nf 1457/1656/1458 1456/1655/1457 37/1353/1173\nf 1458/1657/1459 1456/1655/1457 1457/1656/1458\nf 1458/1657/1459 1455/1654/1456 1456/1655/1457\nf 1453/1652/1454 1455/1654/1456 1458/1657/1459\nf 1453/1652/1454 1454/1653/1455 1455/1654/1456\nf 1450/1649/1451 1453/1652/1454 1458/1657/1459\nf 1450/1649/1451 1452/1651/1453 1453/1652/1454\nf 1450/1649/1451 1451/1650/1452 1452/1651/1453\nf 1459/1658/1460 1450/1649/1451 1458/1657/1459\nf 1442/1641/1443 1450/1649/1451 1459/1658/1460\nf 1442/1641/1443 1443/1642/1444 1450/1649/1451\nf 1460/1659/1461 1442/1641/1443 1459/1658/1460\nf 1461/1660/1462 1442/1641/1443 1460/1659/1461\nf 1441/1640/1442 1442/1641/1443 1461/1660/1462\nf 1440/1639/1441 1441/1640/1442 1461/1660/1462\nf 1440/1639/1441 1461/1660/1462 1462/1661/1463\nf 1462/1661/1463 1461/1660/1462 1460/1659/1461\nf 1462/1662/1463 1460/1551/1461 1463/1663/1464\nf 1464/1664/1465 1463/1663/1464 1460/1551/1461\nf 1465/1665/1466 1463/1663/1464 1464/1664/1465\nf 1465/1665/1466 1466/1636/1467 1463/1663/1464\nf 45/1363/1181 1466/1636/1467 1465/1665/1466\nf 45/1363/1181 1438/1633/1439 1466/1636/1467\nf 47/1365/1183 1438/1633/1439 45/1363/1181\nf 1466/1636/1467 1438/1633/1439 1439/1634/1440\nf 1466/1636/1467 1439/1634/1440 1467/1666/1468\nf 1467/1667/1468 1439/1638/1440 1440/1639/1441\nf 1467/1667/1468 1440/1639/1441 1462/1661/1463\nf 1466/1636/1467 1467/1666/1468 1462/1662/1463\nf 1466/1636/1467 1462/1662/1463 1463/1663/1464\nf 45/1363/1181 1465/1665/1466 44/1362/1180\nf 1465/1665/1466 1468/1668/1469 44/1362/1180\nf 1465/1665/1466 1464/1664/1465 1468/1668/1469\nf 1468/1668/1469 1464/1664/1465 1460/1551/1461\nf 1468/1668/1469 1460/1551/1461 1469/1548/1470\nf 1470/1550/1471 1469/1548/1470 1460/1551/1461\nf 1469/1548/1470 1470/1550/1471 1471/1547/1472\nf 1470/1550/1471 1472/1563/1473 1471/1547/1472\nf 1473/1669/1474 1472/1670/1473 1470/1671/1471\nf 1474/1672/1475 1472/1670/1473 1473/1669/1474\nf 1474/1672/1475 1475/1673/1476 1472/1670/1473\nf 1475/1673/1476 1474/1672/1475 1476/1674/1477\nf 1474/1672/1475 1477/1675/1478 1476/1674/1477\nf 1474/1672/1475 1478/1676/1479 1477/1675/1478\nf 1473/1669/1474 1478/1676/1479 1474/1672/1475\nf 1473/1669/1474 1479/1677/1480 1478/1676/1479\nf 1473/1669/1474 1470/1671/1471 1479/1677/1480\nf 1470/1671/1471 1460/1659/1461 1479/1677/1480\nf 1479/1677/1480 1460/1659/1461 1480/1678/1481\nf 1460/1659/1461 1459/1658/1460 1480/1678/1481\nf 1459/1658/1460 1481/1679/1482 1480/1678/1481\nf 1459/1658/1460 1458/1657/1459 1481/1679/1482\nf 1481/1679/1482 1458/1657/1459 1457/1656/1458\nf 1481/1679/1482 1457/1656/1458 1482/1680/1483\nf 1482/1680/1483 1457/1656/1458 39/1355/1175\nf 39/1355/1175 1457/1656/1458 38/1354/1174\nf 1457/1656/1458 37/1353/1173 38/1354/1174\nf 1483/1681/1484 1482/1680/1483 39/1355/1175\nf 1484/1682/1485 1482/1680/1483 1483/1681/1484\nf 1478/1676/1479 1482/1680/1483 1484/1682/1485\nf 1478/1676/1479 1481/1679/1482 1482/1680/1483\nf 1480/1678/1481 1481/1679/1482 1478/1676/1479\nf 1479/1677/1480 1480/1678/1481 1478/1676/1479\nf 1478/1676/1479 1484/1682/1485 1477/1675/1478\nf 1477/1675/1478 1484/1682/1485 1471/1683/1472\nf 1471/1683/1472 1484/1682/1485 1483/1681/1484\nf 1469/1548/1470 1471/1547/1472 1483/1549/1484\nf 40/1684/1176 1469/1548/1470 1483/1549/1484\nf 41/1360/1177 1469/1548/1470 40/1684/1176\nf 41/1360/1177 1468/1668/1469 1469/1548/1470\nf 44/1362/1180 1468/1668/1469 41/1360/1177\nf 1483/1549/1484 39/1685/1175 40/1684/1176\nf 1471/1683/1472 1476/1674/1477 1477/1675/1478\nf 1485/1686/1486 1476/1674/1477 1471/1683/1472\nf 1485/1686/1486 1475/1673/1476 1476/1674/1477\nf 1475/1562/1476 1485/1561/1486 1471/1547/1472\nf 1472/1563/1473 1475/1562/1476 1471/1547/1472\nf 1436/1636/1437 48/1363/1184 1486/1665/1487\nf 48/1363/1184 1487/1362/1488 1486/1665/1487\nf 48/1363/1184 49/1359/1185 1487/1362/1488\nf 49/1359/1185 1194/1360/1195 1487/1362/1488\nf 1488/1668/1489 1487/1362/1488 1194/1360/1195\nf 1486/1665/1487 1487/1362/1488 1488/1668/1489\nf 1486/1665/1487 1488/1668/1489 1489/1664/1490\nf 1488/1668/1489 1358/1551/1359 1489/1664/1490\nf 1488/1668/1489 1356/1548/1357 1358/1551/1359\nf 1488/1668/1489 1194/1360/1195 1356/1548/1357\nf 1356/1548/1357 1194/1360/1195 1195/1684/1196\nf 1356/1548/1357 1195/1684/1196 1355/1549/1356\nf 1195/1684/1196 1196/1685/1197 1355/1549/1356\nf 1355/1546/1356 1196/1387/1197 1244/1435/1245\nf 1355/1546/1356 1244/1435/1245 1352/1543/1353\nf 1489/1664/1490 1358/1551/1359 1490/1663/1491\nf 1490/1663/1491 1358/1551/1359 1491/1662/1492\nf 1358/1554/1359 1492/1687/1493 1491/1688/1492\nf 1358/1554/1359 1366/1564/1367 1492/1687/1493\nf 1492/1687/1493 1366/1564/1367 1493/1689/1494\nf 1366/1564/1367 1418/1616/1419 1493/1689/1494\nf 1493/1689/1494 1418/1616/1419 1423/1621/1424\nf 1493/1689/1494 1423/1621/1424 1433/1631/1434\nf 1433/1631/1434 1423/1621/1424 1424/1622/1425\nf 1431/1629/1432 1433/1631/1434 1424/1622/1425\nf 1433/1631/1434 1494/1690/1495 1493/1689/1494\nf 1434/1632/1435 1494/1690/1495 1433/1631/1434\nf 1434/1632/1435 1495/1691/1496 1494/1690/1495\nf 1434/1634/1435 1436/1636/1437 1495/1666/1496\nf 1436/1636/1437 1491/1662/1492 1495/1666/1496\nf 1436/1636/1437 1490/1663/1491 1491/1662/1492\nf 1486/1665/1487 1490/1663/1491 1436/1636/1437\nf 1486/1665/1487 1489/1664/1490 1490/1663/1491\nf 1495/1691/1496 1491/1688/1492 1494/1690/1495\nf 1491/1688/1492 1492/1687/1493 1494/1690/1495\nf 1492/1687/1493 1493/1689/1494 1494/1690/1495\nf 1384/1582/1385 1385/1583/1386 1412/1610/1413\nf 1412/1610/1413 1385/1583/1386 1386/1584/1387\nf 1412/1610/1413 1386/1584/1387 1409/1607/1410\nf 1409/1607/1410 1386/1584/1387 1496/1692/1497\nf 1496/1692/1497 1386/1584/1387 1387/1585/1388\nf 1496/1692/1497 1387/1585/1388 1402/1600/1403\nf 1402/1600/1403 1387/1585/1388 1388/1586/1389\nf 1402/1600/1403 1388/1586/1389 1399/1597/1400\nf 1399/1597/1400 1388/1586/1389 1392/1590/1393\nf 1388/1586/1389 1389/1587/1390 1392/1590/1393\nf 1399/1597/1400 1392/1590/1393 1394/1592/1395\nf 1395/1593/1396 1399/1597/1400 1394/1592/1395\nf 1399/1597/1400 1400/1598/1401 1402/1600/1403\nf 1407/1605/1408 1496/1692/1497 1402/1600/1403\nf 1407/1605/1408 1409/1607/1410 1496/1692/1497\nf 1407/1605/1408 1402/1600/1403 1403/1601/1404\nf 1397/1595/1398 1401/1599/1402 1398/1596/1399\nf 1369/1567/1370 1370/1568/1371 1368/1566/1369\nf 1339/1530/1340 1299/1490/1300 1300/1491/1301\nf 1252/1443/1253 1253/1444/1254 1261/1452/1262\nf 1200/1391/1201 1201/1392/1202 1240/1431/1241\nf 1240/1431/1241 1201/1392/1202 1497/1693/1498\nf 1202/1393/1203 1497/1693/1498 1201/1392/1202\nf 1202/1393/1203 1498/1694/1499 1497/1693/1498\nf 1499/1695/1500 1498/1694/1499 1202/1393/1203\nf 1500/1696/1501 1498/1694/1499 1499/1695/1500\nf 1501/1697/1502 1498/1694/1499 1500/1696/1501\nf 1502/1698/1503 1498/1694/1499 1501/1697/1502\nf 1497/1693/1498 1498/1694/1499 1502/1698/1503\nf 1239/1430/1240 1497/1693/1498 1502/1698/1503\nf 1240/1431/1241 1497/1693/1498 1239/1430/1240\nf 1239/1430/1240 1502/1698/1503 1503/1699/1504\nf 1503/1699/1504 1502/1698/1503 1501/1697/1502\nf 1503/1699/1504 1501/1697/1502 1504/1700/1505\nf 1504/1700/1505 1501/1697/1502 1505/1701/1506\nf 1505/1701/1506 1501/1697/1502 1500/1696/1501\nf 1505/1701/1506 1500/1696/1501 1208/1399/1209\nf 1208/1399/1209 1500/1696/1501 1499/1695/1500\nf 1208/1399/1209 1499/1695/1500 1206/1397/1207\nf 1206/1397/1207 1499/1695/1500 1203/1394/1204\nf 1203/1394/1204 1499/1695/1500 1202/1393/1203\nf 1206/1397/1207 1203/1394/1204 1204/1395/1205\nf 1210/1401/1211 1505/1701/1506 1208/1399/1209\nf 1210/1401/1211 1506/1702/1507 1505/1701/1506\nf 1212/1403/1213 1506/1702/1507 1210/1401/1211\nf 1212/1403/1213 1507/1703/1508 1506/1702/1507\nf 1212/1403/1213 1508/1704/1509 1507/1703/1508\nf 1214/1405/1215 1508/1704/1509 1212/1403/1213\nf 1509/1705/1510 1508/1704/1509 1214/1405/1215\nf 1509/1705/1510 1507/1703/1508 1508/1704/1509\nf 1510/1706/1511 1507/1703/1508 1509/1705/1510\nf 1504/1700/1505 1507/1703/1508 1510/1706/1511\nf 1506/1702/1507 1507/1703/1508 1504/1700/1505\nf 1506/1702/1507 1504/1700/1505 1505/1701/1506\nf 1504/1700/1505 1510/1706/1511 1503/1699/1504\nf 1511/1707/1512 1503/1699/1504 1510/1706/1511\nf 1239/1430/1240 1503/1699/1504 1511/1707/1512\nf 1237/1428/1238 1239/1430/1240 1511/1707/1512\nf 1237/1428/1238 1511/1707/1512 1512/1708/1513\nf 1511/1707/1512 1509/1705/1510 1512/1708/1513\nf 1511/1707/1512 1510/1706/1511 1509/1705/1510\nf 1512/1708/1513 1509/1705/1510 1513/1709/1514\nf 1509/1705/1510 1214/1405/1215 1513/1709/1514\nf 1214/1405/1215 1229/1420/1230 1513/1709/1514\nf 1216/1407/1217 1229/1420/1230 1214/1405/1215\nf 1216/1407/1217 1217/1408/1218 1229/1420/1230\nf 1229/1420/1230 1514/1710/1515 1513/1709/1514\nf 1229/1420/1230 1230/1421/1231 1514/1710/1515\nf 1230/1421/1231 1515/1711/1516 1514/1710/1515\nf 1230/1421/1231 1516/1712/1517 1515/1711/1516\nf 1230/1421/1231 1234/1425/1235 1516/1712/1517\nf 1230/1421/1231 1231/1422/1232 1234/1425/1235\nf 1516/1712/1517 1234/1425/1235 1517/1713/1518\nf 1234/1425/1235 1236/1427/1237 1517/1713/1518\nf 1517/1713/1518 1236/1427/1237 1518/1714/1519\nf 1237/1428/1238 1518/1714/1519 1236/1427/1237\nf 1237/1428/1238 1512/1708/1513 1518/1714/1519\nf 1515/1711/1516 1518/1714/1519 1512/1708/1513\nf 1515/1711/1516 1517/1713/1518 1518/1714/1519\nf 1516/1712/1517 1517/1713/1518 1515/1711/1516\nf 1515/1711/1516 1512/1708/1513 1514/1710/1515\nf 1514/1710/1515 1512/1708/1513 1513/1709/1514\ng mesh1.002_mesh1-geometry_FrontColorNoCullingID_orig_02_-_Defaul1noCu\nusemtl FrontColorNoCullingID_orig_02_-_Defaul1noCu\nf 1401/1715/1402 1402/1716/1403 1400/1717/1401\no mesh2.002_mesh2-geometry\nv 35.644905 4.219306 13.797381\nv 30.849451 3.335130 14.154451\nv 30.938114 0.466119 14.119235\nv 33.641563 5.379838 7.747740\nv 38.582417 4.174241 6.105197\nv 32.090347 6.887986 3.128864\nv 37.648487 5.310963 1.280646\nv 37.786777 0.836031 1.225739\nv 35.900349 3.587236 -2.835028\nv 34.358379 7.179622 -2.315924\nv 32.656975 7.654055 -7.006633\nv 31.482405 12.402974 -6.827024\nv 29.119473 12.399153 -11.862528\nv 25.687037 11.902954 -11.026190\nv 23.989033 11.897144 -14.593759\nv 26.881168 12.270669 -14.558105\nv 29.543446 7.623479 -12.354070\nv 33.377335 2.954099 -7.666845\nv 35.985512 0.830693 -2.868852\nv 32.283295 0.643538 3.052226\nv 38.686562 0.804447 6.063834\nv 28.148563 0.435865 9.561161\nv 26.141665 0.428725 5.090501\nv 26.003410 4.903602 5.145436\nv 28.044182 3.813617 9.602624\nv 35.756149 0.619502 13.753192\nv 39.210423 3.629709 11.205149\nv 39.299088 0.760698 11.169930\nv 30.600399 8.350374 -0.400168\nv 28.056583 11.843219 -4.920524\nv 23.762556 11.286984 -4.946030\nv 22.100754 11.384519 -10.152368\nv 22.103041 11.593475 -13.618792\nv 23.408049 7.467344 -15.083333\nv 26.632156 7.569440 -15.281748\nv 30.192455 3.362859 -12.578096\nv 30.272448 0.773716 -12.609867\nv 26.914593 0.710042 -15.876889\nv 25.714935 0.614268 -11.097299\nv 28.560335 0.640516 -6.072480\nv 20.953169 0.447672 -9.516941\nv 23.193316 0.452745 -4.291248\nv 28.494141 2.783255 -6.046187\nv 23.127115 2.595484 -4.264955\nv 30.718245 0.646411 -1.120726\nv 24.836227 0.440623 0.831423\nv 24.751066 3.197166 0.865250\nv 25.611649 6.873608 0.586982\nv 23.742319 7.342165 -4.047997\nv 21.438437 7.339915 -9.664141\nv 20.873177 3.036813 -9.485171\nv 20.682966 3.088218 -14.150083\nv 20.762957 0.499076 -14.181853\nv 23.373932 0.598346 -15.693467\nv 23.293940 3.187487 -15.661697\nv 26.834600 3.299184 -15.845119\nv 21.198496 7.382856 -13.764971\nv 33.443535 0.811360 -7.693138\nvt 0.776762 0.135847\nvt 0.782079 0.162083\nvt 0.769518 0.172356\nvt 0.815969 0.133482\nvt 0.809602 0.100288\nvt 0.848027 0.131809\nvt 0.840076 0.094491\nvt 0.829210 0.068416\nvt 0.862826 0.076523\nvt 0.873018 0.101010\nvt 0.903387 0.087924\nvt 0.919497 0.109859\nvt 0.951669 0.095964\nvt 0.954976 0.114221\nvt 0.955775 0.137062\nvt 0.980478 0.141721\nvt 0.975495 0.123681\nvt 0.972361 0.087202\nvt 0.939505 0.071184\nvt 0.892753 0.059736\nvt 0.856476 0.059589\nvt 0.699381 0.083750\nvt 0.698785 0.049489\nvt 0.673039 0.081736\nvt 0.728102 0.079284\nvt 0.726961 0.013681\nvt 0.728102 0.079283\nvt 0.698120 0.011255\nvt 0.834759 0.201305\nvt 0.803784 0.191174\nvt 0.844220 0.174284\nvt 0.813106 0.171753\nvt 0.765212 0.047881\nvt 0.757820 0.020303\nvt 0.726960 0.013681\nvt 0.756229 0.136246\nvt 0.780488 0.112058\nvt 0.767166 0.102440\nvt 0.757754 0.072694\nvt 0.798647 0.081588\nvt 0.874353 0.131744\nvt 0.914143 0.133120\nvt 0.921756 0.158337\nvt 0.956233 0.160942\nvt 0.977586 0.155152\nvt 0.987599 0.183505\nvt 0.982129 0.210966\nvt 0.974095 0.180474\nvt 0.990266 0.081565\nvt 0.963680 0.060841\nvt 0.983252 0.054504\nvt 0.927431 0.046694\nvt 0.920833 0.031595\nvt 0.948663 0.019875\nvt 0.592484 0.069253\nvt 0.591990 0.040881\nvt 0.567705 0.056934\nvt 0.625559 0.046896\nvt 0.591989 0.040881\nvt 0.591473 0.011237\nvt 0.625560 0.046896\nvt 0.624976 0.013484\nvt 0.638221 0.046666\nvt 0.637637 0.013254\nvt 0.672468 0.048945\nvt 0.671830 0.012328\nvt 0.861455 0.209246\nvt 0.867472 0.192308\nvt 0.875938 0.168181\nvt 0.897053 0.209072\nvt 0.906575 0.180716\nvt 0.941923 0.197272\nvt 0.930494 0.222199\nvt 0.957597 0.233245\nvt 0.952141 0.248579\nvt 0.923939 0.237276\nvt 0.565107 0.019317\nvt 0.561796 0.036835\nvt 0.975875 0.238207\nvt 0.970898 0.254271\nvt 0.954645 0.035111\nvt 0.970118 0.012124\nvt 0.975831 0.027771\nvt 0.966142 0.207239\nvt 0.953428 0.172039\nvt 0.891066 0.221475\nvt 0.638752 0.077065\nvt 0.626091 0.077296\nvt 0.886925 0.047327\nvn 0.239662 0.648030 0.722892\nvn -0.383404 0.635151 0.670461\nvn -0.427900 -0.305002 0.850765\nvn 0.013428 0.973540 0.228004\nvn 0.788995 0.614277 -0.010224\nvn 0.079897 0.952757 0.292917\nvn 0.746940 0.655812 -0.109287\nvn 0.866970 -0.419752 -0.268532\nvn 0.884457 0.188757 -0.426679\nvn 0.719047 0.694632 0.020966\nvn 0.878903 0.236885 -0.413984\nvn 0.493698 0.869472 0.015412\nvn 0.492965 0.808954 -0.320200\nvn -0.128584 0.989907 0.059587\nvn -0.128584 0.989907 0.059588\nvn -0.128583 0.989907 0.059587\nvn 0.450026 0.455580 -0.768029\nvn 0.789483 0.139103 -0.597766\nvn 0.928068 -0.201880 -0.312876\nvn 0.493545 -0.796319 -0.349620\nvn 0.030881 -0.999448 -0.012282\nvn 0.030886 -0.999448 -0.012269\nvn 0.030885 -0.999448 -0.012268\nvn 0.030886 -0.999448 -0.012268\nvn -0.638966 -0.730857 0.239784\nvn -0.510788 -0.819910 0.258461\nvn -0.798730 0.431379 0.419385\nvn -0.660573 0.568163 0.490707\nvn 0.322764 -0.717154 0.617634\nvn 0.786065 0.336436 0.518509\nvn 0.923460 -0.328623 0.197943\nvn 0.469283 -0.879543 -0.078341\nvn 0.125187 0.911130 0.392560\nvn 0.042817 0.898618 0.436567\nvn -0.128574 0.989898 0.059572\nvn -0.656240 0.651295 0.380963\nvn -0.675741 0.728294 0.113620\nvn -0.128583 0.989907 0.059588\nvn -0.203314 0.841700 -0.500137\nvn -0.685202 0.490463 -0.538408\nvn -0.287942 0.138035 -0.947630\nvn 0.356487 0.134404 -0.924558\nvn 0.748589 0.087008 -0.657277\nvn 0.583605 -0.686117 -0.434278\nvn 0.409864 -0.563066 -0.717582\nvn 0.030893 -0.999447 -0.012273\nvn 0.030894 -0.999447 -0.012273\nvn 0.315050 -0.001913 0.949073\nvn 0.315049 -0.001912 0.949073\nvn -0.087940 -0.927720 -0.362769\nvn -0.049104 -0.967009 -0.249886\nvn -0.685598 -0.718070 0.119449\nvn -0.887478 -0.248695 0.387951\nvn 0.030885 -0.999420 -0.012268\nvn 0.030889 -0.999448 -0.012260\nvn -0.958586 0.103488 0.265236\nvn -0.696646 0.522782 0.491256\nvn -0.917692 0.103885 0.383404\nvn -0.968596 0.140110 0.205237\nvn -0.974425 0.046144 0.219886\nvn -0.926542 0.080508 -0.367412\nvn -0.740776 -0.522355 -0.422346\nvn -0.651326 -0.735130 0.187841\nvn -0.363384 0.068728 -0.929075\nvn -0.153264 -0.559343 -0.814631\nvn 0.209601 0.079501 -0.974517\nvn -0.866207 0.173376 -0.468612\nvn -0.918590 -0.033212 0.393813\nvn 0.315050 -0.001912 0.949073\nvn 0.839814 0.032596 -0.541895\ng mesh2.002_mesh2-geometry_male-02-1noCullingID_male-02-1noCulling.JP\nusemtl male-02-1noCullingID_male-02-1noCulling.JP\ns 1\nf 1519/1718/1520 1520/1719/1521 1521/1720/1522\nf 1519/1718/1520 1522/1721/1523 1520/1719/1521\nf 1522/1721/1523 1519/1718/1520 1523/1722/1524\nf 1523/1722/1524 1524/1723/1525 1522/1721/1523\nf 1523/1722/1524 1525/1724/1526 1524/1723/1525\nf 1526/1725/1527 1525/1724/1526 1523/1722/1524\nf 1527/1726/1528 1525/1724/1526 1526/1725/1527\nf 1527/1726/1528 1528/1727/1529 1525/1724/1526\nf 1529/1728/1530 1528/1727/1529 1527/1726/1528\nf 1529/1728/1530 1530/1729/1531 1528/1727/1529\nf 1531/1730/1532 1530/1729/1531 1529/1728/1530\ns off\nf 1530/1729/1533 1531/1731/1533 1532/1732/1533\nf 1531/1731/1534 1533/1733/1534 1532/1732/1534\nf 1531/1731/1535 1534/1734/1535 1533/1733/1535\ns 1\nf 1534/1735/1536 1531/1730/1532 1535/1736/1537\nf 1535/1736/1537 1531/1730/1532 1529/1728/1530\nf 1535/1736/1537 1529/1728/1530 1536/1737/1538\nf 1536/1737/1538 1529/1728/1530 1527/1726/1528\nf 1536/1737/1538 1527/1726/1528 1537/1738/1539\nf 1537/1738/1539 1527/1726/1528 1526/1725/1527\ns off\nf 1526/1739/1540 1538/1740/1540 1537/1741/1540\nf 1539/1742/1541 1538/1740/1541 1526/1739/1541\nf 1540/1743/1542 1538/1740/1542 1539/1744/1542\nf 1538/1740/1543 1540/1743/1543 1541/1745/1543\ns 1\nf 1541/1746/1544 1540/1747/1545 1542/1748/1546\nf 1542/1748/1546 1540/1747/1545 1543/1749/1547\nf 1540/1747/1545 1521/1720/1522 1543/1749/1547\ns off\nf 1544/1750/1543 1521/1751/1543 1540/1752/1543\ns 1\nf 1519/1718/1520 1521/1720/1522 1544/1753/1548\nf 1519/1718/1520 1544/1753/1548 1545/1754/1549\nf 1545/1754/1549 1544/1753/1548 1546/1755/1550\ns off\nf 1546/1756/1543 1544/1750/1543 1539/1742/1543\nf 1539/1742/1543 1544/1750/1543 1540/1752/1543\ns 1\nf 1539/1757/1551 1523/1722/1524 1546/1755/1550\nf 1526/1725/1527 1523/1722/1524 1539/1757/1551\nf 1523/1722/1524 1545/1754/1549 1546/1755/1550\nf 1523/1722/1524 1519/1718/1520 1545/1754/1549\nf 1543/1749/1547 1521/1720/1522 1520/1719/1521\nf 1522/1721/1523 1543/1749/1547 1520/1719/1521\nf 1522/1721/1523 1524/1723/1525 1543/1749/1547\nf 1524/1723/1525 1542/1748/1546 1543/1749/1547\nf 1524/1723/1525 1547/1758/1552 1542/1748/1546\nf 1525/1724/1526 1547/1758/1552 1524/1723/1525\nf 1525/1724/1526 1528/1727/1529 1547/1758/1552\nf 1528/1727/1529 1548/1759/1553 1547/1758/1552\nf 1528/1727/1529 1530/1729/1531 1548/1759/1553\nf 1530/1729/1531 1532/1732/1554 1548/1759/1553\nf 1548/1759/1553 1532/1732/1554 1549/1760/1555\nf 1532/1732/1554 1550/1761/1556 1549/1760/1555\ns off\nf 1532/1732/1557 1533/1733/1557 1550/1761/1557\ns 1\nf 1533/1733/1558 1551/1762/1559 1550/1761/1556\nf 1533/1763/1558 1552/1764/1560 1551/1765/1559\nf 1533/1766/1558 1553/1767/1561 1552/1768/1560\nf 1534/1735/1536 1553/1767/1561 1533/1766/1558\nf 1553/1767/1561 1534/1735/1536 1535/1736/1537\nf 1553/1767/1561 1535/1736/1537 1554/1769/1562\nf 1554/1769/1562 1535/1736/1537 1536/1737/1538\nf 1555/1770/1563 1554/1769/1562 1536/1737/1538\nf 1554/1769/1562 1555/1770/1563 1556/1771/1564\ns off\nf 1555/1772/1565 1557/1773/1565 1556/1774/1565\nf 1558/1775/1565 1557/1776/1565 1555/1772/1565\nf 1557/1776/1566 1558/1775/1566 1559/1777/1566\nf 1558/1778/1565 1560/1779/1565 1559/1777/1565\nf 1561/1780/1567 1560/1779/1567 1558/1778/1567\nf 1561/1780/1568 1562/1781/1568 1560/1779/1568\nf 1563/1782/1569 1562/1781/1569 1561/1780/1569\ns 1\nf 1563/1782/1570 1564/1783/1571 1562/1781/1572\nf 1538/1740/1573 1564/1783/1571 1563/1782/1570\ns off\nf 1538/1740/1574 1541/1745/1574 1564/1783/1574\ns 1\nf 1564/1784/1571 1541/1746/1544 1542/1748/1546\nf 1564/1784/1571 1542/1748/1546 1565/1785/1575\nf 1566/1786/1576 1565/1785/1575 1542/1748/1546\nf 1562/1787/1572 1565/1785/1575 1566/1786/1576\nf 1562/1787/1572 1564/1784/1571 1565/1785/1575\nf 1562/1787/1572 1566/1786/1576 1567/1788/1577\nf 1549/1760/1555 1567/1788/1577 1566/1786/1576\nf 1568/1789/1578 1567/1788/1577 1549/1760/1555\nf 1568/1789/1578 1569/1790/1579 1567/1788/1577\nf 1570/1791/1580 1569/1790/1579 1568/1789/1578\nf 1571/1792/1581 1569/1790/1579 1570/1791/1580\nf 1571/1792/1581 1559/1793/1582 1569/1790/1579\ns off\nf 1557/1773/1566 1559/1777/1566 1571/1794/1566\nf 1557/1773/1566 1571/1794/1566 1572/1795/1566\ns 1\nf 1573/1796/1583 1572/1797/1584 1571/1792/1581\nf 1574/1798/1585 1572/1799/1584 1573/1800/1583\nf 1574/1798/1585 1556/1771/1564 1572/1799/1584\nf 1554/1769/1562 1556/1771/1564 1574/1798/1585\nf 1553/1767/1561 1554/1769/1562 1574/1798/1585\nf 1553/1767/1561 1574/1798/1585 1552/1768/1560\nf 1552/1768/1560 1574/1798/1585 1573/1800/1583\nf 1552/1764/1560 1573/1796/1583 1575/1801/1586\nf 1575/1801/1586 1573/1796/1583 1570/1791/1580\nf 1573/1796/1583 1571/1792/1581 1570/1791/1580\nf 1570/1791/1580 1568/1789/1578 1575/1801/1586\nf 1575/1801/1586 1568/1789/1578 1550/1802/1556\nf 1550/1802/1556 1568/1789/1578 1549/1760/1555\nf 1575/1801/1586 1550/1802/1556 1551/1765/1559\nf 1551/1765/1559 1552/1764/1560 1575/1801/1586\ns off\nf 1556/1774/1565 1557/1773/1565 1572/1795/1565\ns 1\nf 1559/1793/1582 1562/1787/1572 1569/1790/1579\ns off\nf 1559/1793/1587 1560/1803/1587 1562/1787/1587\ns 1\nf 1569/1790/1579 1562/1787/1572 1567/1788/1577\nf 1548/1759/1553 1549/1760/1555 1566/1786/1576\nf 1547/1758/1552 1548/1759/1553 1566/1786/1576\nf 1547/1758/1552 1566/1786/1576 1542/1748/1546\nf 1537/1741/1539 1538/1740/1573 1563/1782/1570\nf 1537/1741/1539 1563/1782/1570 1536/1804/1538\ns off\nf 1536/1804/1569 1563/1782/1569 1561/1780/1569\nf 1536/1804/1567 1561/1780/1567 1558/1778/1567\nf 1536/1804/1588 1558/1778/1588 1576/1805/1588\nf 1576/1805/1565 1558/1778/1565 1555/1772/1565\nf 1555/1770/1589 1536/1737/1589 1576/1806/1589\no mesh3.002_mesh3-geometry\nv -38.144539 4.033179 15.502475\nv -38.149284 0.431515 15.472356\nv -33.522182 0.413709 16.872576\nv -41.048199 3.333338 12.207139\nv -41.051979 0.462845 12.183134\nv -39.350761 0.501187 7.329915\nv -39.346317 3.872721 7.358109\nv -34.911068 5.222375 10.017142\nv -32.437466 6.752743 5.827391\nv -37.421009 5.013754 2.837957\nv -30.258217 8.240450 2.688941\nv -33.480904 6.957309 0.018434\nv -26.703766 11.911404 -1.084502\nv -29.775900 12.336839 -3.514633\nv -23.440910 11.809790 -6.709597\nv -26.683567 12.208182 -8.087702\nv -21.226566 11.716014 -9.945671\nv -24.072268 12.032483 -10.378309\nv -23.145741 7.504829 -10.974320\nv -20.039295 7.493262 -10.082739\nv -19.523855 11.483739 -8.681244\nv -20.052916 11.393542 -5.269725\nv -22.482883 11.440822 -0.415159\nv -25.564119 6.907279 4.746111\nv -26.880997 4.947190 9.132148\nv -29.808414 3.820488 13.053915\nv -33.518402 3.284203 16.896582\nv -29.812870 0.440991 13.025656\nv -26.886911 0.470008 9.094691\nv -24.691755 0.499520 5.218594\nv -24.688131 3.257465 5.241638\nv -21.977694 2.678653 0.590174\nv -22.749348 7.407266 0.620149\nv -18.660234 3.159547 -4.023751\nv -19.285879 7.444412 -4.364959\nv -18.165766 7.476011 -8.317202\nv -19.690756 3.215770 -10.578664\nv -17.466860 3.195749 -8.537541\nv -17.470261 0.605291 -8.559187\nv -19.694160 0.625313 -10.600307\nv -22.973579 0.596327 -6.619170\nv -18.663635 0.569090 -4.045395\nv -21.980513 0.534826 0.572262\nv -26.835457 2.709351 -2.310744\nv -26.838272 0.565524 -2.328656\nv -31.255301 2.737283 -4.950150\nv -31.258118 0.593455 -4.968063\nv -27.098640 0.622395 -9.082540\nv -27.095236 3.212852 -9.060896\nv -23.113045 0.637744 -11.545768\nv -23.109642 3.228202 -11.524125\nv -26.621832 7.490771 -8.745783\nv -30.818119 7.458257 -4.198294\nv -34.779495 3.321237 -0.784639\nv -34.783115 0.563293 -0.807682\nv -30.015642 0.533165 2.039319\nv -32.445675 0.505091 5.775163\nv -34.917324 0.473207 9.977428\nv -37.426853 0.536529 2.800554\nvt 0.776762 0.135847\nvt 0.756229 0.136246\nvt 0.769518 0.172356\nvt 0.780488 0.112058\nvt 0.767166 0.102440\nvt 0.765212 0.047881\nvt 0.757754 0.072694\nvt 0.728102 0.079284\nvt 0.798647 0.081588\nvt 0.809602 0.100288\nvt 0.815969 0.133482\nvt 0.848027 0.131809\nvt 0.840076 0.094491\nvt 0.874353 0.131744\nvt 0.873018 0.101010\nvt 0.914143 0.133120\nvt 0.919497 0.109859\nvt 0.955775 0.137062\nvt 0.954976 0.114221\nvt 0.980478 0.141721\nvt 0.975495 0.123681\nvt 0.972361 0.087202\nvt 0.990266 0.081565\nvt 0.963680 0.060841\nvt 0.983252 0.054504\nvt 0.987599 0.183505\nvt 0.974095 0.180474\nvt 0.982129 0.210966\nvt 0.977586 0.155152\nvt 0.956233 0.160942\nvt 0.921756 0.158337\nvt 0.875938 0.168181\nvt 0.844220 0.174284\nvt 0.813106 0.171753\nvt 0.782079 0.162083\nvt 0.803784 0.191174\nvt 0.834759 0.201305\nvt 0.861455 0.209246\nvt 0.867472 0.192308\nvt 0.897053 0.209072\nvt 0.906575 0.180716\nvt 0.930494 0.222199\nvt 0.941923 0.197272\nvt 0.953428 0.172039\nvt 0.966142 0.207239\nvt 0.975875 0.238207\nvt 0.957597 0.233245\nvt 0.952141 0.248579\nvt 0.970898 0.254271\nvt 0.565107 0.019317\nvt 0.591990 0.040881\nvt 0.561796 0.036835\nvt 0.591473 0.011237\nvt 0.923939 0.237276\nvt 0.891066 0.221475\nvt 0.638221 0.046666\nvt 0.624976 0.013484\nvt 0.637637 0.013254\nvt 0.625560 0.046896\nvt 0.638752 0.077065\nvt 0.626091 0.077296\nvt 0.892753 0.059736\nvt 0.920833 0.031595\nvt 0.886925 0.047327\nvt 0.927431 0.046694\nvt 0.948663 0.019875\nvt 0.954645 0.035111\nvt 0.970118 0.012124\nvt 0.975831 0.027771\nvt 0.939505 0.071184\nvt 0.903387 0.087924\nvt 0.862826 0.076523\nvt 0.856476 0.059589\nvt 0.672468 0.048945\nvt 0.673039 0.081736\nvt 0.698785 0.049489\nvt 0.671830 0.012328\nvt 0.698120 0.011255\nvt 0.726960 0.013681\nvt 0.727571 0.048790\nvt 0.757820 0.020303\nvt 0.699381 0.083750\nvt 0.829210 0.068416\nvt 0.951669 0.095964\nvt 0.567705 0.056934\nvt 0.592484 0.069253\nvt 0.591989 0.040881\nvt 0.625559 0.046896\nvn -0.407239 0.644276 0.647298\nvn -0.363262 -0.813074 0.454848\nvn 0.241554 -0.289254 0.926237\nvn -0.888150 0.316752 0.332865\nvn -0.935484 -0.353282 -0.002899\nvn -0.001317 -0.999964 -0.008362\nvn -0.418043 -0.892575 -0.168859\nvn -0.783898 0.592059 -0.186834\nvn -0.087924 0.973785 0.209662\nvn -0.166295 0.951445 0.258889\nvn -0.722526 0.634327 -0.274850\nvn -0.233772 0.906674 0.351054\nvn -0.723441 0.677450 -0.132817\nvn -0.148564 0.898648 0.412702\nvn -0.496597 0.862972 -0.092837\nvn 0.104038 0.993652 0.042390\nvn 0.104058 0.993667 0.042409\nvn 0.104058 0.993667 0.042408\nvn -0.311167 0.422437 -0.851283\nvn 0.274392 0.835170 -0.476577\nvn -0.160436 0.112583 -0.980590\nvn 0.474075 0.147557 -0.868007\nvn 0.736869 0.535447 -0.412610\nvn 0.610675 0.767174 0.196081\nvn 0.563494 0.669881 0.483413\nvn 0.564409 0.534562 0.628986\nvn 0.677511 0.455245 0.577654\nvn 0.523667 0.588458 0.615986\nvn 0.212531 0.648488 0.730918\nvn 0.464064 -0.804254 0.371166\nvn 0.590869 -0.711753 0.379742\nvn 0.662069 -0.698233 0.272195\nvn 0.875484 0.131260 0.465072\nvn 0.788720 -0.222205 0.573138\nvn 0.811396 0.120548 0.571886\nvn 0.902219 0.074190 0.424787\nvn 0.899930 0.179724 0.397259\nvn 0.932310 0.223945 -0.283883\nvn 0.553850 0.074709 -0.829249\nvn 0.981658 0.104617 -0.159307\nvn 0.827998 -0.503403 -0.246864\nvn 0.340434 -0.558428 -0.756432\nvn -0.001321 -0.999964 -0.008369\nvn -0.001322 -0.999964 -0.008369\nvn 0.614307 -0.715903 0.331736\nvn 0.812194 -0.005942 0.583357\nvn -0.512729 -0.006499 0.858526\nvn -0.512729 -0.006500 0.858526\nvn -0.703258 0.006864 -0.710901\nvn -0.590686 0.063295 -0.804376\nvn -0.457656 -0.704001 -0.543046\nvn -0.832789 -0.228980 -0.503983\nvn -0.230049 -0.577380 -0.783349\nvn 0.004120 0.069369 -0.997559\nvn -0.653127 0.101535 -0.750389\nvn -0.778314 0.220588 -0.587817\nvn -0.775842 0.162236 -0.609668\nvn -0.385205 -0.811274 -0.439802\nvn 0.127293 -0.966369 -0.223426\nvn -0.001312 -0.999939 -0.008362\nvn -0.001319 -0.999964 -0.008360\nvn -0.001318 -0.999964 -0.008362\nvn -0.777062 -0.444868 -0.445204\nvn -0.001309 -0.999964 -0.008376\nvn -0.434828 0.791742 -0.428938\nvn 0.188596 -0.926500 -0.325620\nvn 0.188596 -0.926501 -0.325620\ng mesh3.002_mesh3-geometry_male-02-1noCullingID_male-02-1noCulling.JP\nusemtl male-02-1noCullingID_male-02-1noCulling.JP\ns 1\nf 1577/1807/1590 1578/1808/1591 1579/1809/1592\nf 1578/1808/1591 1577/1807/1590 1580/1810/1593\nf 1581/1811/1594 1578/1808/1591 1580/1810/1593\ns off\nf 1578/1812/1595 1581/1813/1595 1582/1814/1595\ns 1\nf 1582/1815/1596 1581/1811/1594 1583/1816/1597\nf 1583/1816/1597 1581/1811/1594 1580/1810/1593\nf 1577/1807/1590 1583/1816/1597 1580/1810/1593\nf 1583/1816/1597 1577/1807/1590 1584/1817/1598\nf 1585/1818/1599 1583/1816/1597 1584/1817/1598\nf 1585/1818/1599 1586/1819/1600 1583/1816/1597\nf 1587/1820/1601 1586/1819/1600 1585/1818/1599\nf 1587/1820/1601 1588/1821/1602 1586/1819/1600\nf 1589/1822/1603 1588/1821/1602 1587/1820/1601\nf 1589/1822/1603 1590/1823/1604 1588/1821/1602\nf 1591/1824/1605 1590/1823/1604 1589/1822/1603\ns off\nf 1591/1824/1606 1592/1825/1606 1590/1823/1606\nf 1593/1826/1606 1592/1825/1606 1591/1824/1606\nf 1593/1826/1607 1594/1827/1607 1592/1825/1607\ns 1\nf 1594/1828/1608 1593/1829/1609 1595/1830/1610\nf 1593/1829/1609 1596/1831/1611 1595/1830/1610\nf 1593/1832/1609 1597/1833/1612 1596/1834/1611\nf 1597/1835/1612 1593/1826/1609 1598/1836/1613\ns off\nf 1598/1836/1606 1593/1826/1606 1591/1824/1606\ns 1\nf 1598/1836/1613 1591/1824/1605 1599/1837/1614\nf 1599/1837/1614 1591/1824/1605 1589/1822/1603\nf 1599/1837/1614 1589/1822/1603 1600/1838/1615\nf 1600/1838/1615 1589/1822/1603 1587/1820/1601\nf 1600/1838/1615 1587/1820/1601 1601/1839/1616\nf 1601/1839/1616 1587/1820/1601 1585/1818/1599\nf 1601/1839/1616 1585/1818/1599 1602/1840/1617\nf 1602/1840/1617 1585/1818/1599 1584/1817/1598\nf 1602/1840/1617 1584/1817/1598 1603/1841/1618\nf 1584/1817/1598 1577/1807/1590 1603/1841/1618\nf 1577/1807/1590 1579/1809/1592 1603/1841/1618\nf 1602/1840/1617 1603/1841/1618 1579/1809/1592\nf 1604/1842/1619 1602/1840/1617 1579/1809/1592\nf 1601/1839/1616 1602/1840/1617 1604/1842/1619\nf 1605/1843/1620 1601/1839/1616 1604/1842/1619\nf 1606/1844/1621 1601/1839/1616 1605/1843/1620\nf 1606/1844/1621 1607/1845/1622 1601/1839/1616\nf 1608/1846/1623 1607/1845/1622 1606/1844/1621\nf 1608/1846/1623 1600/1838/1615 1607/1845/1622\nf 1608/1846/1623 1609/1847/1624 1600/1838/1615\nf 1610/1848/1625 1609/1847/1624 1608/1846/1623\nf 1611/1849/1626 1609/1847/1624 1610/1848/1625\nf 1611/1849/1626 1599/1837/1614 1609/1847/1624\nf 1598/1850/1613 1599/1837/1614 1611/1849/1626\nf 1612/1851/1627 1598/1850/1613 1611/1849/1626\nf 1597/1833/1612 1598/1850/1613 1612/1851/1627\nf 1597/1833/1612 1612/1851/1627 1596/1834/1611\nf 1596/1834/1611 1612/1851/1627 1613/1852/1628\nf 1612/1851/1627 1614/1853/1629 1613/1852/1628\nf 1614/1853/1629 1612/1851/1627 1611/1849/1626\nf 1614/1853/1629 1611/1849/1626 1610/1848/1625\nf 1615/1854/1630 1614/1853/1629 1610/1848/1625\nf 1613/1852/1628 1614/1853/1629 1615/1854/1630\nf 1613/1852/1628 1615/1854/1630 1616/1855/1631\ns off\nf 1615/1856/1632 1617/1857/1632 1616/1858/1632\nf 1615/1856/1633 1618/1859/1633 1617/1857/1633\ns 1\nf 1615/1854/1630 1610/1848/1625 1618/1860/1634\nf 1618/1860/1634 1610/1848/1625 1608/1846/1623\ns off\nf 1618/1860/1635 1608/1846/1635 1619/1861/1635\nf 1620/1862/1636 1619/1863/1636 1608/1864/1636\nf 1620/1862/1637 1621/1865/1637 1619/1863/1637\nf 1622/1866/1637 1621/1865/1637 1620/1862/1637\nf 1622/1866/1637 1623/1867/1637 1621/1865/1637\nf 1622/1868/1638 1624/1869/1638 1623/1870/1638\ns 1\nf 1625/1871/1639 1624/1869/1640 1622/1868/1641\nf 1625/1871/1639 1626/1872/1642 1624/1869/1640\nf 1627/1873/1643 1626/1872/1642 1625/1871/1639\nf 1627/1873/1643 1616/1874/1631 1626/1872/1642\nf 1627/1873/1643 1613/1875/1628 1616/1874/1631\nf 1596/1831/1611 1613/1875/1628 1627/1873/1643\nf 1595/1830/1610 1596/1831/1611 1627/1873/1643\nf 1595/1830/1610 1627/1873/1643 1625/1871/1639\nf 1595/1830/1610 1625/1871/1639 1628/1876/1644\nf 1625/1871/1639 1622/1868/1641 1628/1876/1644\nf 1628/1876/1644 1622/1868/1641 1629/1877/1645\nf 1622/1868/1641 1630/1878/1646 1629/1877/1645\nf 1622/1868/1641 1631/1879/1647 1630/1878/1646\nf 1632/1880/1648 1631/1881/1647 1622/1866/1641\nf 1632/1880/1648 1633/1882/1649 1631/1881/1647\nf 1606/1883/1621 1633/1882/1649 1632/1880/1648\ns off\nf 1606/1883/1650 1605/1884/1650 1633/1882/1650\nf 1604/1885/1595 1633/1882/1595 1605/1884/1595\nf 1633/1882/1651 1604/1885/1651 1634/1886/1651\nf 1604/1885/1651 1578/1812/1651 1634/1886/1651\nf 1604/1885/1651 1579/1887/1651 1578/1812/1651\nf 1634/1886/1595 1578/1812/1595 1582/1814/1595\nf 1633/1882/1595 1634/1886/1595 1582/1814/1595\nf 1633/1882/1595 1582/1814/1595 1635/1888/1595\ns 1\nf 1635/1889/1652 1582/1815/1596 1583/1816/1597\nf 1635/1889/1652 1583/1816/1597 1586/1819/1600\nf 1630/1878/1646 1635/1889/1652 1586/1819/1600\nf 1631/1879/1647 1635/1889/1652 1630/1878/1646\ns off\nf 1633/1882/1653 1635/1888/1653 1631/1881/1653\ns 1\nf 1630/1878/1646 1586/1819/1600 1588/1821/1602\nf 1629/1877/1645 1630/1878/1646 1588/1821/1602\nf 1629/1877/1645 1588/1821/1602 1590/1823/1604\nf 1592/1890/1654 1629/1877/1645 1590/1823/1604\nf 1628/1876/1644 1629/1877/1645 1592/1890/1654\nf 1592/1890/1654 1594/1828/1608 1628/1876/1644\nf 1594/1828/1608 1595/1830/1610 1628/1876/1644\nf 1608/1864/1623 1606/1883/1621 1632/1880/1648\ns off\nf 1608/1864/1655 1632/1880/1655 1620/1862/1655\nf 1620/1862/1656 1632/1880/1656 1622/1866/1656\nf 1616/1858/1632 1617/1857/1632 1626/1891/1632\nf 1617/1857/1632 1624/1892/1632 1626/1891/1632\nf 1617/1893/1632 1621/1894/1632 1624/1892/1632\nf 1621/1894/1632 1617/1893/1632 1618/1859/1632\nf 1618/1859/1632 1619/1863/1632 1621/1865/1632\nf 1621/1865/1632 1623/1867/1632 1624/1892/1632\ns 1\nf 1599/1837/1614 1600/1838/1615 1609/1847/1624\nf 1600/1838/1615 1601/1839/1616 1607/1845/1622\no mesh4.002_mesh4-geometry\nv 8.297646 173.643738 -4.147326\nv 7.876331 177.213272 -2.070835\nv 9.232541 173.807632 -2.569132\nv 7.446055 173.513367 -5.160358\nv 5.879395 177.579330 -4.261196\nv 6.365656 173.597977 -5.999300\nv 7.792958 169.501266 -6.233909\nv 8.896169 169.704529 -5.619246\nv 9.929724 169.475449 -4.054068\nv 10.298515 169.500854 -2.972721\nv 10.279252 168.983093 -1.015845\nv 9.918608 173.205002 -0.780906\nv 9.162860 176.903442 0.665456\nv 10.366465 173.251129 0.500125\nv 9.027205 176.832367 2.603460\nv 9.753546 173.296066 3.764577\nv 7.511401 177.309677 5.379242\nv 7.821137 173.555466 6.230288\nv 8.819935 170.989731 5.144444\nv 8.171333 170.346786 5.302597\nv 8.407271 167.644699 4.930859\nv 9.138886 167.675247 4.676209\nv 8.546442 166.541382 4.761230\nv 9.254675 166.623260 4.573937\nv 9.420131 165.318848 4.769481\nv 8.929603 165.166901 4.893147\nv 10.011168 163.777679 5.144779\nv 10.562061 168.473953 2.923881\nv 10.719966 168.756409 0.591140\nv 11.075859 166.475311 -1.316617\nv 11.493757 166.180374 -0.010769\nv 12.234684 165.446381 -2.574760\nv 12.788539 165.061752 -1.600830\nv 14.766304 163.097412 -2.488952\nv 11.187075 166.297150 2.105196\nv 11.285152 166.240051 0.372422\nv 12.656817 165.144562 0.353019\nv 11.959157 165.119034 -0.100405\nv 14.466885 163.685806 -0.038252\nv 9.664052 166.127350 4.239790\nv 10.900988 166.195312 2.772604\nv 10.627325 164.998444 3.826723\nv 11.117855 165.287155 2.816767\nv 13.060345 164.163101 1.516707\nv 11.312892 166.329422 -1.300184\nv 11.243655 166.896240 -3.353939\nv 10.560167 167.272720 -4.640790\nv 9.844875 167.178925 -6.033222\nv 8.604935 166.822922 -6.802577\nv 8.557759 165.388031 -8.169714\nv 9.912040 165.335678 -7.468669\nv 9.915230 165.520050 -7.455635\nv 10.060588 163.640656 -9.894338\nv 10.990295 165.932434 -5.998745\nv 11.586139 165.881195 -5.203870\nv 13.217003 163.960114 -6.086912\nv 11.897261 165.353256 -4.038371\nv 6.522163 169.550552 -7.295707\nv 8.063948 167.133881 -7.083258\nv 6.215429 167.309708 -8.346956\nv 7.261048 165.683807 -8.762534\nv 6.341824 165.220169 -8.710615\nv 5.761347 163.995605 -11.156421\nv 4.953676 167.559387 -9.110716\nv 4.359668 165.627045 -9.970131\nv 3.649427 165.804565 -10.707653\nv 2.556964 165.804047 -10.294046\nv 2.013835 164.393646 -12.511470\nv 3.443015 167.649109 -8.578211\nv 4.801587 169.781296 -8.163532\nv 4.175054 173.868332 -6.680264\nv 3.261612 177.283081 -5.672348\nv 3.399768 173.707321 -7.178087\nv 3.823660 169.565735 -8.100909\nv 1.981372 169.348801 -8.846408\nv 1.693423 167.664597 -8.862779\nv -0.147558 164.866180 -10.359701\nv -0.895068 165.175064 -10.416383\nv -2.674155 163.018509 -12.017067\nv -2.060718 164.773254 -9.959138\nv 0.085842 167.312256 -8.542287\nv -0.273320 169.206741 -8.180530\nv 1.203776 173.216309 -7.418054\nv 0.289038 177.037689 -6.260032\nv -0.304259 173.126099 -7.593051\nv -2.429562 169.381699 -7.030611\nv -2.014982 167.271225 -7.968330\nv -3.366771 165.316437 -9.521338\nv -2.369837 165.460999 -9.922440\nv -5.102951 164.106750 -10.459863\nv -2.864373 173.446091 -6.095177\nv -1.562681 176.992569 -5.661312\nv -3.876081 177.481949 -3.508008\nv -4.847246 173.747131 -3.656629\nv -3.965854 171.336960 -5.477665\nv -3.653317 169.314926 -5.968734\nv -3.344675 166.524734 -7.025994\nv -2.418780 166.505463 -7.889871\nv -4.210052 165.260345 -7.656205\nv -3.762278 165.542130 -7.929229\nv -6.040331 162.852829 -8.589507\nv -4.784128 165.217667 -6.755927\nv -3.171365 166.312576 -6.347096\nv -3.921063 168.889023 -5.456721\nv -4.027284 171.098770 -5.074068\nvt -1.213924 -1.175955\nvt -1.243910 -1.091856\nvt -1.274247 -1.175938\nvt -1.150366 -1.175965\nvt -1.150499 -1.091419\nvt -4.164889 -0.066553\nvt -4.197845 -0.170213\nvt -4.137818 -0.170086\nvt -4.197140 -0.259086\nvt -1.150396 -1.247025\nvt -1.213257 -1.247009\nvt -1.274088 -1.246995\nvt -1.641531 -1.254281\nvt -1.660398 -1.183226\nvt -1.688697 -1.254264\nvt -1.688611 -1.183226\nvt -1.746296 -1.254260\nvt -1.746807 -1.183200\nvt -1.748267 -1.098870\nvt -1.688541 -1.098772\nvt -2.174173 -1.135754\nvt -2.233738 -1.033690\nvt -2.229737 -1.135726\nvt -2.312609 -1.033757\nvt -2.313521 -1.135749\nvt -2.839895 -1.034670\nvt -2.877928 -1.034709\nvt -2.839376 -1.135721\nvt -2.926258 -1.034759\nvt -2.926218 -1.135716\nvt -3.463975 -0.989814\nvt -3.492539 -1.091531\nvt -3.418042 -1.091524\nvt -3.490777 -1.178065\nvt -3.417544 -1.178069\nvt -3.491107 -1.290194\nvt -3.416189 -1.290147\nvt -3.417256 -1.386935\nvt -3.489571 -1.386855\nvt -3.436989 -1.489137\nvt -2.838801 -1.222284\nvt -2.926041 -1.222278\nvt -2.230272 -1.222260\nvt -2.313275 -1.222291\nvt -2.174841 -1.222297\nvt -2.175949 -1.334365\nvt -2.232654 -1.334253\nvt -2.178117 -1.430508\nvt -2.232626 -1.430156\nvt -2.199865 -1.536784\nvt -2.313134 -1.334275\nvt -2.312655 -1.430411\nvt -2.272568 -1.536784\nvt -2.925820 -1.334372\nvt -2.838969 -1.334443\nvt -2.904340 -1.431004\nvt -2.839508 -1.431179\nvt -2.893258 -1.534724\nvt -1.745156 -1.346343\nvt -1.691211 -1.346447\nvt -1.641357 -1.346474\nvt -1.274333 -1.339045\nvt -1.211834 -1.339086\nvt -1.150466 -1.339127\nvt -1.150609 -1.418566\nvt -1.213268 -1.418604\nvt -1.274238 -1.418403\nvt -1.211826 -1.503123\nvt -1.641381 -1.426117\nvt -1.692520 -1.426119\nvt -1.692462 -1.510728\nvt -1.746656 -1.425852\nvt -4.138954 -0.259123\nvt -4.196353 -0.382683\nvt -4.138202 -0.382891\nvt -4.196116 -0.479175\nvt -4.139833 -0.479197\nvt -4.169056 -0.554130\nvt -3.873768 -0.258917\nvt -3.875038 -0.382948\nvt -3.824220 -0.382801\nvt -3.872772 -0.479393\nvt -3.825378 -0.479464\nvt -3.776519 -0.479528\nvt -3.829144 -0.554086\nvt -3.763759 -0.384287\nvt -3.816013 -0.259078\nvt -3.815362 -0.171031\nvt -3.875978 -0.170252\nvt -3.819637 -0.078534\nvt -3.873764 -0.078490\nvt -3.791513 -0.170416\nvt -3.769352 -0.259226\nvt -2.422973 -0.259401\nvt -2.422475 -0.386966\nvt -2.345092 -0.259393\nvt -2.344512 -0.387118\nvt -2.411665 -0.479761\nvt -2.343838 -0.479904\nvt -2.345288 -0.554238\nvt -2.272361 -0.479991\nvt -2.269954 -0.387991\nvt -2.271875 -0.259656\nvt -2.345145 -0.169130\nvt -2.420887 -0.169655\nvt -2.345335 -0.078458\nvt -2.420335 -0.078489\nvt -2.272395 -0.169307\nvt -2.918242 -0.134161\nvt -2.918241 -0.231215\nvt -2.823488 -0.231365\nvt -2.918239 -0.326059\nvt -2.837804 -0.326198\nvt -2.855562 -0.418725\nvt -2.909631 -0.418694\nvt -2.878680 -0.493125\nvt -2.822959 -0.134239\nvt -2.874755 -0.017112\nvt -2.918417 -0.017268\nvt -2.822192 -0.016925\nvt -2.764565 -0.016563\nvt -2.764596 -0.134250\nvt -2.761215 -0.231367\nvt -2.761607 -0.325836\nvt -2.808156 -0.326310\nvt -2.762069 -0.418363\nvt -2.794018 -0.418424\nvt -2.762764 -0.493153\nvt -2.735533 -0.418648\nvt -2.735462 -0.327132\nvt -2.735746 -0.231826\nvt -2.735431 -0.134344\nvt -2.750458 -0.016563\nvn 0.711661 0.346385 -0.611164\nvn 0.754997 0.405133 -0.515549\nvn 0.903073 0.285562 -0.320750\nvn 0.662618 0.344005 -0.665242\nvn 0.571368 0.402814 -0.714988\nvn 0.480850 0.329539 -0.812494\nvn 0.552690 0.297555 -0.778436\nvn 0.675283 0.356395 -0.645711\nvn 0.849513 0.314066 -0.423841\nvn 0.938902 0.319712 -0.127262\nvn 0.966399 0.199744 -0.161748\nvn 0.928922 0.199927 -0.311563\nvn 0.918546 0.329722 -0.218024\nvn 0.977752 0.193121 -0.081668\nvn 0.928861 0.294443 0.224677\nvn 0.906339 0.158177 0.391766\nvn 0.823603 0.256630 0.505722\nvn 0.690481 0.012879 0.723197\nvn 0.599658 -0.059969 0.797967\nvn 0.376507 -0.155187 0.913297\nvn 0.330058 -0.101230 0.938505\nvn 0.512680 -0.043214 0.857479\nvn 0.258370 0.038850 0.965239\nvn 0.249367 0.054506 0.966857\nvn 0.194067 0.203467 0.959624\nvn 0.174322 0.218574 0.960112\nvn 0.149388 0.287637 0.945982\nvn 0.878170 0.096255 0.468490\nvn 0.978027 0.204596 -0.039705\nvn 0.858577 0.487197 -0.159429\nvn 0.754692 0.647938 -0.102847\nvn 0.648335 0.759056 -0.058718\nvn 0.650716 0.755913 -0.071505\nvn 0.678640 0.727805 -0.098483\nvn 0.899319 0.433973 0.053407\nvn 0.770501 0.588641 -0.244514\nvn 0.517289 0.711692 -0.475265\nvn 0.415662 0.610675 -0.673971\nvn 0.392651 0.659200 -0.641255\nvn 0.747551 0.175024 0.640675\nvn 0.779687 0.226600 0.583667\nvn 0.747398 0.398785 0.531297\nvn 0.769066 0.409589 0.490616\nvn 0.657888 0.576647 0.484359\nvn 0.933866 0.349162 0.077059\nvn 0.861263 0.484298 -0.153844\nvn 0.832759 0.398572 -0.384198\nvn 0.398053 0.500595 -0.768700\nvn 0.348918 0.498978 -0.793237\nvn 0.318705 0.681967 -0.658254\nvn -0.545396 0.593646 -0.591693\nvn -0.996877 0.022597 -0.075660\nvn -0.848018 0.323313 -0.419843\nvn -0.996781 0.022682 -0.076893\nvn -0.562487 0.661153 -0.496445\nvn 0.648213 0.680441 -0.341716\nvn 0.730705 0.656240 -0.188086\nvn 0.711447 0.681936 -0.169591\nvn 0.881497 0.471236 0.029511\nvn 0.513077 0.318461 -0.797052\nvn 0.566881 0.377361 -0.732261\nvn 0.423536 0.306314 -0.852473\nvn -0.024079 0.606311 -0.794824\nvn -0.333323 0.577380 -0.745323\nvn -0.441450 0.839869 -0.315714\nvn 0.249397 0.449934 -0.857509\nvn 0.668294 0.107334 -0.736076\nvn 0.322123 0.536729 -0.779809\nvn -0.206946 0.773461 -0.599048\nvn 0.341288 0.564837 -0.751274\nvn 0.010895 0.330058 -0.943876\nvn 0.079073 0.355602 -0.931272\nvn 0.324686 0.329661 -0.886502\nvn 0.330393 0.378643 -0.864528\nvn 0.241798 0.308725 -0.919889\nvn 0.165014 0.273049 -0.947722\nvn 0.052248 0.182195 -0.981842\nvn -0.111698 0.362041 -0.925413\nvn 0.204016 0.391736 -0.897153\nvn -0.121647 0.635029 -0.762810\nvn -0.112522 0.650410 -0.751183\nvn -0.397656 0.720634 -0.567888\nvn -0.308084 0.477218 -0.822993\nvn -0.275063 0.142613 -0.950774\nvn 0.052644 0.278848 -0.958861\nvn -0.004913 0.341319 -0.939909\nvn -0.260598 0.234230 -0.936583\nvn -0.526872 0.178014 -0.831050\nvn -0.232795 0.531907 -0.814142\nvn -0.280313 0.776727 -0.563982\nvn -0.315867 0.810694 -0.492904\nvn -0.311960 0.820002 -0.479812\nvn -0.624775 0.195410 -0.755943\nvn -0.460829 0.314646 -0.829798\nvn -0.680258 0.267006 -0.682577\nvn -0.847896 0.089297 -0.522538\nvn -0.876705 0.019593 -0.480575\nvn -0.833766 0.023438 -0.551592\nvn -0.811884 0.450880 -0.370830\nvn -0.629902 0.594043 -0.500290\nvn -0.620777 0.687735 -0.376293\nvn -0.622272 0.739097 -0.257729\nvn -0.652669 0.648213 -0.392132\nvn -0.678732 0.720115 -0.143834\nvn -0.981353 0.190832 0.022523\nvn -0.920835 -0.038209 -0.388043\nvn -0.974700 -0.092898 -0.203162\ng mesh4.002_mesh4-geometry__01_-_Default1noCulli__01_-_Default1noCulli\nusemtl _01_-_Default1noCulli__01_-_Default1noCulli\ns 1\nf 1636/1895/1657 1637/1896/1658 1638/1897/1659\nf 1637/1896/1658 1636/1895/1657 1639/1898/1660\nf 1639/1898/1660 1640/1899/1661 1637/1896/1658\nf 1640/1900/1661 1639/1901/1660 1641/1902/1662\nf 1641/1902/1662 1639/1901/1660 1642/1903/1663\nf 1639/1898/1660 1636/1895/1657 1642/1904/1663\nf 1636/1895/1657 1643/1905/1664 1642/1904/1663\nf 1643/1905/1664 1636/1895/1657 1644/1906/1665\nf 1636/1895/1657 1638/1897/1659 1644/1906/1665\nf 1644/1907/1665 1638/1908/1659 1645/1909/1666\nf 1645/1909/1666 1638/1910/1659 1646/1911/1667\nf 1638/1910/1659 1647/1912/1668 1646/1911/1667\nf 1638/1910/1659 1648/1913/1669 1647/1912/1668\nf 1638/1910/1659 1637/1914/1658 1648/1913/1669\nf 1647/1915/1668 1648/1916/1669 1649/1917/1670\nf 1649/1917/1670 1648/1916/1669 1650/1918/1671\nf 1649/1917/1670 1650/1918/1671 1651/1919/1672\nf 1650/1920/1671 1652/1921/1673 1651/1922/1672\nf 1651/1922/1672 1652/1921/1673 1653/1923/1674\nf 1651/1922/1672 1653/1923/1674 1654/1924/1675\nf 1653/1925/1674 1655/1926/1676 1654/1927/1675\nf 1654/1927/1675 1655/1926/1676 1656/1928/1677\nf 1654/1927/1675 1656/1928/1677 1657/1929/1678\nf 1657/1929/1678 1656/1928/1677 1658/1930/1679\nf 1657/1929/1678 1658/1930/1679 1659/1931/1680\nf 1659/1931/1680 1658/1930/1679 1660/1932/1681\nf 1658/1930/1679 1661/1933/1682 1660/1932/1681\nf 1660/1932/1681 1661/1933/1682 1662/1934/1683\nf 1663/1935/1684 1654/1924/1675 1657/1936/1678\nf 1663/1935/1684 1651/1922/1672 1654/1924/1675\nf 1664/1937/1685 1651/1919/1672 1663/1938/1684\nf 1649/1917/1670 1651/1919/1672 1664/1937/1685\nf 1646/1939/1667 1649/1917/1670 1664/1937/1685\nf 1646/1939/1667 1647/1915/1668 1649/1917/1670\nf 1665/1940/1686 1646/1939/1667 1664/1937/1685\nf 1665/1940/1686 1664/1937/1685 1666/1941/1687\nf 1667/1942/1688 1665/1940/1686 1666/1941/1687\nf 1668/1943/1689 1667/1942/1688 1666/1941/1687\nf 1669/1944/1690 1667/1942/1688 1668/1943/1689\nf 1664/1937/1685 1663/1938/1684 1670/1945/1691\nf 1671/1941/1692 1664/1937/1685 1670/1945/1691\nf 1672/1946/1693 1671/1941/1692 1670/1945/1691\nf 1671/1941/1692 1672/1946/1693 1673/1943/1694\nf 1674/1947/1695 1673/1943/1694 1672/1946/1693\nf 1663/1935/1684 1657/1936/1678 1675/1948/1696\nf 1676/1949/1697 1663/1935/1684 1675/1948/1696\nf 1676/1949/1697 1675/1948/1696 1677/1950/1698\nf 1676/1949/1697 1677/1950/1698 1678/1951/1699\nf 1679/1952/1700 1678/1951/1699 1677/1950/1698\nf 1645/1909/1666 1646/1911/1667 1680/1953/1701\nf 1681/1954/1702 1645/1909/1666 1680/1953/1701\nf 1682/1955/1703 1645/1909/1666 1681/1954/1702\nf 1682/1955/1703 1644/1907/1665 1645/1909/1666\nf 1643/1905/1664 1644/1906/1665 1682/1956/1703\nf 1683/1957/1704 1643/1905/1664 1682/1956/1703\nf 1643/1905/1664 1683/1957/1704 1642/1904/1663\nf 1642/1904/1663 1683/1957/1704 1684/1958/1705\nf 1683/1957/1704 1685/1959/1706 1684/1958/1705\nf 1683/1957/1704 1686/1960/1707 1685/1959/1706\ns off\nf 1686/1960/1708 1683/1957/1708 1687/1961/1708\ns 1\nf 1687/1961/1709 1683/1957/1704 1682/1956/1703\ns off\nf 1688/1962/1710 1686/1960/1710 1687/1961/1710\ns 1\nf 1688/1962/1711 1685/1959/1706 1686/1960/1707\nf 1689/1963/1712 1682/1955/1703 1681/1954/1702\nf 1690/1964/1713 1689/1963/1712 1681/1954/1702\nf 1691/1965/1714 1689/1963/1712 1690/1964/1713\nf 1691/1965/1714 1690/1964/1713 1692/1966/1715\nf 1690/1964/1713 1681/1954/1702 1692/1966/1715\nf 1692/1966/1715 1681/1954/1702 1680/1953/1701\nf 1641/1902/1662 1642/1903/1663 1693/1967/1716\nf 1693/1967/1716 1642/1903/1663 1694/1968/1717\nf 1693/1967/1716 1694/1968/1717 1695/1969/1718\nf 1695/1969/1718 1694/1968/1717 1696/1970/1719\nf 1695/1969/1718 1696/1970/1719 1697/1971/1720\nf 1696/1970/1719 1698/1972/1721 1697/1971/1720\nf 1693/1973/1716 1695/1974/1718 1699/1975/1722\nf 1699/1975/1722 1695/1974/1718 1700/1976/1723\nf 1701/1977/1724 1699/1975/1722 1700/1976/1723\nf 1699/1975/1722 1701/1977/1724 1702/1978/1725\nf 1701/1977/1724 1703/1979/1726 1702/1978/1725\nf 1703/1979/1726 1701/1977/1724 1700/1976/1723\nf 1699/1975/1722 1702/1978/1725 1704/1980/1727\nf 1705/1981/1728 1699/1975/1722 1704/1980/1727\nf 1705/1981/1728 1693/1973/1716 1699/1975/1722\nf 1706/1982/1729 1693/1973/1716 1705/1981/1728\nf 1706/1982/1729 1641/1983/1662 1693/1973/1716\nf 1707/1984/1730 1641/1983/1662 1706/1982/1729\nf 1640/1985/1661 1641/1983/1662 1707/1984/1730\nf 1707/1984/1730 1706/1982/1729 1708/1986/1731\nf 1706/1982/1729 1709/1987/1732 1708/1986/1731\nf 1706/1982/1729 1705/1981/1728 1709/1987/1732\nf 1705/1981/1728 1704/1980/1727 1709/1987/1732\nf 1709/1988/1732 1704/1989/1727 1710/1990/1733\nf 1710/1990/1733 1704/1989/1727 1711/1991/1734\nf 1711/1991/1734 1704/1989/1727 1712/1992/1735\nf 1711/1991/1734 1712/1992/1735 1713/1993/1736\nf 1713/1993/1736 1712/1992/1735 1714/1994/1737\nf 1713/1993/1736 1714/1994/1737 1715/1995/1738\nf 1711/1991/1734 1713/1993/1736 1715/1995/1738\nf 1711/1991/1734 1715/1995/1738 1716/1996/1739\nf 1717/1997/1740 1711/1991/1734 1716/1996/1739\nf 1710/1990/1733 1711/1991/1734 1717/1997/1740\nf 1718/1998/1741 1710/1990/1733 1717/1997/1740\nf 1718/1998/1741 1709/1988/1732 1710/1990/1733\nf 1708/1999/1731 1709/1988/1732 1718/1998/1741\nf 1719/2000/1742 1708/1999/1731 1718/1998/1741\nf 1707/2001/1730 1708/1999/1731 1719/2000/1742\nf 1719/2000/1742 1718/1998/1741 1720/2002/1743\nf 1718/1998/1741 1717/1997/1740 1720/2002/1743\nf 1720/2003/1743 1717/2004/1740 1721/2005/1744\nf 1721/2005/1744 1717/2004/1740 1716/2006/1739\nf 1721/2005/1744 1716/2006/1739 1722/2007/1745\nf 1716/2006/1739 1723/2008/1746 1722/2007/1745\nf 1716/2006/1739 1724/2009/1747 1723/2008/1746\nf 1724/2009/1747 1725/2010/1748 1723/2008/1746\nf 1726/2011/1749 1720/2003/1743 1721/2005/1744\nf 1727/2012/1750 1720/2003/1743 1726/2011/1749\nf 1719/2013/1742 1720/2003/1743 1727/2012/1750\nf 1728/2014/1751 1727/2012/1750 1726/2011/1749\nf 1726/2011/1749 1729/2015/1752 1728/2014/1751\nf 1726/2011/1749 1730/2016/1753 1729/2015/1752\nf 1726/2011/1749 1731/2017/1754 1730/2016/1753\nf 1726/2011/1749 1721/2005/1744 1731/2017/1754\nf 1721/2005/1744 1732/2018/1755 1731/2017/1754\nf 1721/2005/1744 1733/2019/1756 1732/2018/1755\nf 1733/2019/1756 1734/2020/1757 1732/2018/1755\nf 1733/2019/1756 1735/2021/1758 1734/2020/1757\nf 1736/2022/1759 1734/2020/1757 1735/2021/1758\nf 1736/2022/1759 1737/2023/1760 1734/2020/1757\nf 1734/2020/1757 1737/2023/1760 1732/2018/1755\nf 1738/2024/1761 1732/2018/1755 1737/2023/1760\nf 1732/2018/1755 1738/2024/1761 1731/2017/1754\nf 1738/2024/1761 1739/2025/1762 1731/2017/1754\nf 1731/2017/1754 1739/2025/1762 1730/2016/1753\nf 1730/2016/1753 1739/2025/1762 1740/2026/1763\nf 1730/2016/1753 1740/2026/1763 1729/2027/1752\no mesh5.002_mesh5-geometry\nv 8.914974 169.858246 -4.737385\nv 9.035167 173.402832 -2.713000\nv 9.535662 169.931961 -2.844899\nv 7.855681 169.888336 -5.887990\nv 6.748581 173.560196 -5.453587\nv 6.939497 169.895798 -6.609490\nv 6.835015 165.767899 -6.275025\nv 8.572981 165.271988 -5.127158\nv 9.239975 165.305008 -3.960318\nv 9.303375 165.837326 -2.909727\nv 10.034826 165.462555 -0.922827\nv 10.156316 170.006821 -0.367350\nv 10.066978 173.246490 0.565389\nv 10.220516 170.117859 1.194666\nv 9.451221 173.300629 3.528631\nv 10.199927 170.272659 3.215986\nv 9.194364 170.561890 4.667402\nv 7.821137 173.555466 6.230288\nv 8.516171 170.635101 5.143562\nv 7.284851 166.076782 5.120026\nv 8.407318 165.975296 4.776474\nv 6.908578 164.376068 4.945885\nv 7.935189 164.299774 4.863610\nv 8.105780 163.414764 4.412398\nv 7.307560 163.066833 4.705713\nv 8.105918 161.382019 5.627229\nv 9.585253 165.791275 3.342038\nv 8.895230 164.206055 4.483354\nv 9.890329 164.770355 2.470128\nv 9.938880 163.790604 3.499324\nv 10.295213 163.745575 2.726878\nv 11.921071 162.123505 2.914888\nv 10.159228 165.587967 1.005977\nv 10.406758 164.577301 -2.002413\nv 10.896535 164.620789 -0.713769\nv 10.992848 163.297974 -1.731407\nv 11.313541 163.357697 -0.935401\nv 12.206075 161.383926 -1.129275\nv 10.406104 164.732849 1.816971\nv 10.738146 164.664948 0.157920\nv 11.144683 163.701111 1.471537\nv 11.124478 163.724213 0.512562\nv 12.643658 162.174362 0.972657\nv 10.084022 164.553406 -2.722110\nv 9.666948 164.505188 -4.071345\nv 8.560682 164.489594 -5.062342\nv 10.176469 161.874008 -4.422299\nv 10.618312 161.883499 -3.942971\nv 10.769410 161.920654 -3.017846\nv 11.162154 160.278625 -3.077256\nv 8.131356 164.430038 -6.687566\nv 6.948956 164.424133 -7.477797\nv 7.575133 161.796036 -7.746854\nv 8.448121 161.790436 -7.344855\nv 8.648582 161.819092 -6.580623\nv 8.223360 159.950119 -7.601409\nv 5.496352 165.368896 -6.806637\nv 6.466179 164.423370 -7.799314\nv 4.245910 164.464081 -8.250482\nv 6.333885 161.783249 -8.780404\nv 5.090712 161.811218 -8.901316\nv 5.724835 160.323395 -9.487854\nv 2.700611 164.478836 -8.847383\nv 3.156065 161.841431 -9.387615\nv 2.394412 161.854462 -9.555525\nv 2.258322 160.773834 -9.888454\nv 1.649747 161.878845 -9.453978\nv 1.046125 164.551971 -8.198953\nv 3.351560 165.831345 -7.886188\nv 4.337472 169.997696 -7.414265\nv 3.532148 173.486084 -7.007777\nv 3.658697 170.028107 -7.810861\nv 2.281837 165.902740 -7.542142\nv 1.027987 165.909912 -8.517309\nv 1.258058 170.199463 -8.083265\nv 0.098297 173.397308 -7.214571\nv 0.191380 170.282166 -7.801727\nv 0.308554 165.655960 -7.825106\nv -0.726382 164.581726 -8.614036\nv -0.147982 161.944763 -9.060076\nv -0.978490 161.965820 -9.084684\nv -0.959200 159.719604 -9.755598\nv -1.801720 162.001923 -8.768738\nv -1.916886 164.642624 -7.945671\nv -1.872500 166.144882 -6.379629\nv -3.961308 164.720261 -7.347854\nv -4.433941 162.791519 -8.493470\nv -3.588289 162.751312 -8.888321\nv -4.791910 161.555847 -9.470869\nv -1.815413 170.537231 -6.732057\nv -2.626256 173.483353 -5.897119\nv -4.847246 173.747131 -3.656629\nv -3.461527 170.708038 -6.003465\nv -2.932690 165.995102 -6.193698\nv -4.586208 164.789856 -5.980371\nv -3.521029 164.737198 -6.641411\nv -4.695747 162.838287 -6.940668\nv -4.022436 162.810547 -7.158913\nv -4.260471 160.814499 -7.831158\nv -4.089131 162.863632 -6.004550\nv -4.236040 164.818695 -5.008827\nv -3.085209 166.053696 -5.530861\nv -3.902264 170.805328 -5.214504\nv -3.740905 166.107635 -5.389036\nv -3.849797 164.598938 -5.055307\nv -3.799726 164.396683 -5.436823\nv -5.283962 163.062164 -4.587533\nv -3.750422 166.174820 -4.454177\nv -3.751309 164.482651 -4.153491\nv -3.822930 164.436615 -4.895537\nv -4.910494 162.641571 -2.443195\nvt -1.658420 0.843151\nvt -1.688406 0.927249\nvt -1.718743 0.843168\nvt -1.594862 0.843140\nvt -1.594995 0.927686\nvt -3.842736 1.952552\nvt -3.875692 1.848892\nvt -3.815665 1.849020\nvt -3.874987 1.760020\nvt -1.594892 0.772081\nvt -1.657753 0.772097\nvt -1.718584 0.772110\nvt -1.774766 0.764825\nvt -1.793633 0.835880\nvt -1.821932 0.764842\nvt -1.821846 0.835880\nvt -1.879531 0.764846\nvt -1.880042 0.835906\nvt -1.821776 0.920334\nvt -1.881502 0.920236\nvt -2.253242 0.835960\nvt -2.282861 0.919731\nvt -2.308806 0.835983\nvt -2.391678 0.919683\nvt -2.392590 0.835963\nvt -2.839376 0.835986\nvt -2.839895 0.918934\nvt -2.926218 0.835991\nvt -2.926258 0.918861\nvt -3.463975 0.955754\nvt -3.492539 0.872260\nvt -3.418042 0.872266\nvt -3.490777 0.801229\nvt -3.417544 0.801225\nvt -3.491107 0.709189\nvt -3.416189 0.709227\nvt -3.417256 0.629779\nvt -3.489571 0.629845\nvt -3.436989 0.545887\nvt -2.926041 0.764937\nvt -2.838801 0.764932\nvt -2.925820 0.672925\nvt -2.838969 0.672866\nvt -2.925758 0.593653\nvt -2.839508 0.593461\nvt -2.893258 0.508467\nvt -2.309341 0.764951\nvt -2.392344 0.764926\nvt -2.253910 0.764921\nvt -2.255018 0.672930\nvt -2.290855 0.672989\nvt -2.255958 0.638730\nvt -2.277383 0.641388\nvt -2.257186 0.594012\nvt -2.392203 0.673005\nvt -2.311723 0.673023\nvt -2.391724 0.594092\nvt -2.311695 0.594301\nvt -2.311247 0.506776\nvt -1.878391 0.672763\nvt -1.824446 0.672659\nvt -1.774592 0.672631\nvt -1.774616 0.592988\nvt -1.825755 0.592987\nvt -1.879891 0.593254\nvt -1.825697 0.508377\nvt -1.718829 0.680061\nvt -1.656330 0.680020\nvt -1.594962 0.679979\nvt -1.595105 0.600540\nvt -1.657764 0.600502\nvt -1.718734 0.600703\nvt -1.656322 0.515983\nvt -3.816801 1.759983\nvt -3.874200 1.636423\nvt -3.816049 1.636215\nvt -3.873963 1.539931\nvt -3.817680 1.539909\nvt -3.846903 1.464975\nvt -3.790425 1.760189\nvt -3.791695 1.636158\nvt -3.740877 1.636305\nvt -3.789429 1.539713\nvt -3.742035 1.539641\nvt -3.745801 1.465020\nvt -3.693176 1.539578\nvt -3.680416 1.634819\nvt -3.732670 1.760027\nvt -3.732019 1.848075\nvt -3.792635 1.848854\nvt -3.736294 1.940572\nvt -3.790421 1.940616\nvt -3.708170 1.848689\nvt -3.686009 1.759879\nvt -3.265605 1.759713\nvt -3.343486 1.759705\nvt -3.342988 1.632139\nvt -3.265658 1.849976\nvt -3.341400 1.849451\nvt -3.265848 1.940648\nvt -3.340848 1.940616\nvt -3.192908 1.849799\nvt -3.192388 1.759449\nvt -3.265025 1.631988\nvt -3.309991 1.539298\nvt -3.264351 1.539201\nvt -3.265801 1.464868\nvt -3.192874 1.539115\nvt -3.190467 1.631115\nvt -2.918241 1.659046\nvt -2.918239 1.564203\nvt -2.823488 1.658896\nvt -2.837804 1.564063\nvt -2.855562 1.471536\nvt -2.909631 1.471568\nvt -2.878680 1.397136\nvt -2.918242 1.756100\nvt -2.822959 1.756022\nvt -2.918417 1.872994\nvt -2.822192 1.873337\nvt -2.764565 1.873698\nvt -2.764596 1.756012\nvt -2.761215 1.658895\nvt -2.761607 1.564425\nvt -2.808156 1.563952\nvt -2.762069 1.471899\nvt -2.794018 1.471838\nvt -2.762764 1.397109\nvt -2.735533 1.471613\nvt -2.735462 1.563130\nvt -2.735746 1.658435\nvt -2.735431 1.755918\nvt -2.594712 1.755716\nvt -2.608504 1.657475\nvt -2.574317 1.657594\nvt -2.604759 1.563373\nvt -2.576900 1.562640\nvt -2.591082 1.471270\nvt -2.533985 1.658380\nvt -2.503424 1.657941\nvt -2.516402 1.755768\nvt -2.499522 1.562391\nvt -2.530165 1.562880\nvt -2.519431 1.471374\nvt -2.750458 1.873698\nvn 0.822108 0.067415 -0.565294\nvn 0.878475 0.212806 -0.427747\nvn 0.967071 0.035218 -0.251961\nvn 0.692801 0.144597 -0.706473\nvn 0.592120 0.290414 -0.751671\nvn 0.445051 0.089877 -0.890957\nvn 0.525132 0.284463 -0.802026\nvn 0.819117 0.127293 -0.559282\nvn 0.949309 -0.226112 -0.218238\nvn 0.963988 0.139225 -0.226417\nvn 0.972808 0.152379 -0.174230\nvn 0.983032 0.056490 -0.174322\nvn 0.995575 0.081454 -0.046419\nvn 0.998474 0.054201 0.009522\nvn 0.934660 0.156316 0.319254\nvn 0.935362 0.006897 0.353557\nvn 0.677267 -0.034791 0.734886\nvn 0.729820 -0.021912 0.683279\nvn 0.555071 -0.162999 0.815638\nvn 0.378887 -0.114628 0.918302\nvn 0.532853 -0.045747 0.844935\nvn 0.195868 -0.163274 0.966918\nvn 0.062014 -0.216224 0.974364\nvn 0.182348 0.001556 0.983215\nvn 0.241646 0.238533 0.940580\nvn 0.091403 0.510849 0.854762\nvn 0.896237 0.049318 0.440809\nvn 0.821741 0.198126 0.534288\nvn 0.842586 0.305979 0.443098\nvn 0.735893 0.562487 0.376873\nvn 0.760216 0.566668 0.317637\nvn 0.665181 0.697592 0.266182\nvn 0.951323 0.306192 0.034089\nvn 0.794366 0.562181 -0.230018\nvn 0.788965 0.518784 -0.329173\nvn 0.858119 0.364208 -0.361827\nvn 0.847194 0.381329 -0.369915\nvn 0.833583 0.412976 -0.366802\nvn 0.871700 0.462325 0.162420\nvn 0.888852 0.447279 0.099033\nvn 0.834895 0.548479 0.045534\nvn 0.835932 0.548784 -0.004364\nvn 0.713858 0.700278 0.001801\nvn 0.872585 0.410382 -0.264840\nvn 0.796411 0.377789 -0.472213\nvn 0.913877 0.022858 -0.405286\nvn 0.707907 0.113132 -0.697134\nvn 0.880123 0.178594 -0.439833\nvn 0.937223 0.279397 -0.208563\nvn 0.894009 0.063723 -0.443464\nvn 0.752403 0.329508 -0.570330\nvn 0.500717 0.427869 -0.752434\nvn 0.457472 0.185766 -0.869594\nvn 0.761773 0.121464 -0.636311\nvn 0.962218 0.091464 -0.256355\nvn 0.767205 -0.004273 -0.641377\nvn 0.323069 0.380871 -0.866329\nvn 0.129063 0.640126 -0.757317\nvn 0.218207 0.484909 -0.846858\nvn 0.130497 0.334452 -0.933317\nvn 0.098666 0.334605 -0.937162\nvn 0.097598 0.400708 -0.910977\nvn 0.091983 0.423566 -0.901151\nvn 0.259468 0.247322 -0.933531\nvn 0.046937 0.271950 -0.961150\nvn 0.047243 0.288644 -0.956236\nvn -0.191229 0.307352 -0.932157\nvn 0.047182 0.260933 -0.964171\nvn 0.037233 0.384289 -0.922422\nvn 0.304544 0.051393 -0.951079\nvn 0.320322 0.231971 -0.918455\nvn 0.265816 0.089328 -0.959868\nvn 0.245643 0.058473 -0.967589\nvn 0.045808 0.148381 -0.987854\nvn -0.066103 0.098605 -0.992920\nvn -0.193091 0.204840 -0.959532\nvn -0.400189 0.050630 -0.915006\nvn -0.495712 0.427107 -0.756188\nvn -0.197058 0.347697 -0.916654\nvn 0.099002 0.224708 -0.969359\nvn -0.155339 0.235878 -0.959258\nvn -0.152409 0.281625 -0.947325\nvn -0.382214 0.237312 -0.893063\nvn -0.297189 0.606067 -0.737785\nvn -0.346782 0.301126 -0.888272\nvn -0.195959 0.629383 -0.751946\nvn -0.274575 0.604511 -0.747765\nvn -0.301675 0.635334 -0.710837\nvn -0.298379 0.643788 -0.704611\nvn -0.434156 0.093112 -0.895993\nvn -0.578539 0.071017 -0.812525\nvn -0.676992 0.167516 -0.716636\nvn -0.762658 0.052614 -0.644612\nvn -0.666707 0.286386 -0.688070\nvn -0.856777 0.368358 -0.360820\nvn -0.387738 0.448286 -0.805383\nvn -0.850642 0.149266 -0.504044\nvn -0.279244 0.326334 -0.903043\nvn -0.935514 -0.047151 -0.350078\nvn -0.839167 -0.284341 0.463576\nvn -0.879086 0.463088 0.112705\nvn -0.728019 0.054018 -0.683401\nvn -0.834773 -0.041597 -0.548967\nvn -0.817316 -0.054964 -0.573534\nvn 0.857936 -0.455885 -0.236763\nvn 0.904752 -0.315531 0.286019\nvn 0.728904 -0.560625 0.392865\nvn -0.999786 -0.017640 -0.008881\nvn -0.974517 0.219916 0.043519\nvn -0.941374 0.329875 0.070376\nvn -0.826044 0.561785 0.044862\ng mesh5.002_mesh5-geometry__01_-_Default1noCulli__01_-_Default1noCulli\nusemtl _01_-_Default1noCulli__01_-_Default1noCulli\ns 1\nf 1741/2028/1764 1742/2029/1765 1743/2030/1766\nf 1742/2029/1765 1741/2028/1764 1744/2031/1767\nf 1744/2031/1767 1745/2032/1768 1742/2029/1765\nf 1745/2033/1768 1744/2034/1767 1746/2035/1769\nf 1746/2035/1769 1744/2034/1767 1747/2036/1770\nf 1744/2031/1767 1741/2028/1764 1747/2037/1770\nf 1741/2028/1764 1748/2038/1771 1747/2037/1770\nf 1748/2038/1771 1741/2028/1764 1749/2039/1772\nf 1741/2028/1764 1743/2030/1766 1749/2039/1772\nf 1749/2040/1772 1743/2041/1766 1750/2042/1773\nf 1750/2042/1773 1743/2043/1766 1751/2044/1774\nf 1743/2043/1766 1752/2045/1775 1751/2044/1774\nf 1743/2043/1766 1742/2046/1765 1752/2045/1775\nf 1742/2046/1765 1753/2047/1776 1752/2045/1775\nf 1752/2048/1775 1753/2049/1776 1754/2050/1777\nf 1753/2049/1776 1755/2051/1778 1754/2050/1777\nf 1754/2050/1777 1755/2051/1778 1756/2052/1779\nf 1756/2053/1779 1755/2054/1778 1757/2055/1780\nf 1755/2054/1778 1758/2056/1781 1757/2055/1780\nf 1758/2057/1781 1759/2058/1782 1757/2059/1780\nf 1759/2058/1782 1760/2060/1783 1757/2059/1780\nf 1757/2059/1780 1760/2060/1783 1761/2061/1784\nf 1760/2060/1783 1762/2062/1785 1761/2061/1784\nf 1761/2061/1784 1762/2062/1785 1763/2063/1786\nf 1762/2062/1785 1764/2064/1787 1763/2063/1786\nf 1762/2062/1785 1765/2065/1788 1764/2064/1787\nf 1764/2064/1787 1765/2065/1788 1766/2066/1789\nf 1756/2053/1779 1757/2055/1780 1761/2067/1784\nf 1756/2053/1779 1761/2067/1784 1767/2068/1790\nf 1767/2068/1790 1761/2067/1784 1768/2069/1791\nf 1769/2070/1792 1767/2068/1790 1768/2069/1791\nf 1769/2070/1792 1768/2069/1791 1770/2071/1793\nf 1769/2070/1792 1770/2071/1793 1771/2072/1794\nf 1772/2073/1795 1771/2072/1794 1770/2071/1793\nf 1773/2074/1796 1756/2052/1779 1767/2075/1790\nf 1773/2074/1796 1754/2050/1777 1756/2052/1779\nf 1751/2076/1774 1754/2050/1777 1773/2074/1796\nf 1751/2076/1774 1752/2048/1775 1754/2050/1777\nf 1774/2077/1797 1751/2076/1774 1773/2074/1796\nf 1775/2078/1798 1774/2077/1797 1773/2074/1796\nf 1774/2077/1797 1775/2078/1798 1776/2079/1799\nf 1776/2079/1799 1775/2078/1798 1777/2080/1800\nf 1776/2079/1799 1777/2080/1800 1778/2081/1801\nf 1773/2074/1796 1767/2075/1790 1779/2082/1802\nf 1780/2083/1803 1773/2074/1796 1779/2082/1802\nf 1780/2083/1803 1779/2082/1802 1781/2084/1804\nf 1780/2083/1803 1781/2084/1804 1782/2085/1805\nf 1782/2085/1805 1781/2084/1804 1783/2086/1806\nf 1750/2042/1773 1751/2044/1774 1784/2087/1807\nf 1785/2088/1808 1750/2042/1773 1784/2087/1807\nf 1785/2088/1808 1786/2089/1809 1750/2042/1773\nf 1785/2088/1808 1787/2090/1810 1786/2089/1809\nf 1787/2090/1810 1785/2088/1808 1788/2091/1811\nf 1785/2088/1808 1789/2092/1812 1788/2091/1811\nf 1785/2088/1808 1784/2087/1807 1789/2092/1812\nf 1788/2091/1811 1789/2092/1812 1790/2093/1813\nf 1787/2090/1810 1788/2091/1811 1790/2093/1813\nf 1750/2042/1773 1786/2089/1809 1749/2040/1772\nf 1748/2038/1771 1749/2039/1772 1786/2094/1809\nf 1791/2095/1814 1748/2038/1771 1786/2094/1809\nf 1748/2038/1771 1791/2095/1814 1747/2037/1770\nf 1747/2037/1770 1791/2095/1814 1792/2096/1815\nf 1791/2095/1814 1793/2097/1816 1792/2096/1815\nf 1791/2095/1814 1794/2098/1817 1793/2097/1816\nf 1794/2098/1817 1791/2095/1814 1795/2099/1818\nf 1791/2095/1814 1786/2094/1809 1795/2099/1818\nf 1796/2100/1819 1794/2098/1817 1795/2099/1818\nf 1793/2097/1816 1794/2098/1817 1796/2100/1819\nf 1746/2035/1769 1747/2036/1770 1797/2101/1820\nf 1747/2036/1770 1798/2102/1821 1797/2101/1820\nf 1798/2102/1821 1799/2103/1822 1797/2101/1820\nf 1799/2103/1822 1798/2102/1821 1800/2104/1823\nf 1799/2103/1822 1800/2104/1823 1801/2105/1824\nf 1801/2105/1824 1800/2104/1823 1802/2106/1825\nf 1797/2107/1820 1799/2108/1822 1803/2109/1826\nf 1803/2109/1826 1799/2108/1822 1804/2110/1827\nf 1803/2109/1826 1804/2110/1827 1805/2111/1828\nf 1805/2111/1828 1804/2110/1827 1806/2112/1829\nf 1807/2113/1830 1805/2111/1828 1806/2112/1829\nf 1803/2109/1826 1805/2111/1828 1807/2113/1830\nf 1808/2114/1831 1803/2109/1826 1807/2113/1830\nf 1809/2115/1832 1803/2109/1826 1808/2114/1831\nf 1809/2115/1832 1797/2107/1820 1803/2109/1826\nf 1810/2116/1833 1797/2107/1820 1809/2115/1832\nf 1810/2116/1833 1746/2117/1769 1797/2107/1820\nf 1811/2118/1834 1746/2117/1769 1810/2116/1833\nf 1745/2119/1768 1746/2117/1769 1811/2118/1834\nf 1811/2118/1834 1810/2116/1833 1812/2120/1835\nf 1812/2120/1835 1810/2116/1833 1813/2121/1836\nf 1810/2116/1833 1809/2115/1832 1813/2121/1836\nf 1813/2121/1836 1809/2115/1832 1808/2114/1831\nf 1814/2122/1837 1813/2123/1836 1808/2124/1831\nf 1815/2125/1838 1813/2123/1836 1814/2122/1837\nf 1815/2125/1838 1812/2126/1835 1813/2123/1836\nf 1816/2127/1839 1812/2126/1835 1815/2125/1838\nf 1811/2128/1834 1812/2126/1835 1816/2127/1839\nf 1816/2127/1839 1815/2125/1838 1817/2129/1840\nf 1817/2129/1840 1815/2125/1838 1818/2130/1841\nf 1814/2122/1837 1818/2130/1841 1815/2125/1838\nf 1814/2122/1837 1819/2131/1842 1818/2130/1841\nf 1814/2122/1837 1808/2124/1831 1819/2131/1842\nf 1819/2131/1842 1808/2124/1831 1820/2132/1843\nf 1819/2131/1842 1820/2132/1843 1821/2133/1844\nf 1821/2133/1844 1820/2132/1843 1822/2134/1845\nf 1823/2135/1846 1821/2133/1844 1822/2134/1845\nf 1819/2131/1842 1821/2133/1844 1823/2135/1846\nf 1824/2136/1847 1819/2131/1842 1823/2135/1846\nf 1818/2130/1841 1819/2131/1842 1824/2136/1847\nf 1818/2137/1841 1824/2138/1847 1825/2139/1848\nf 1825/2139/1848 1824/2138/1847 1826/2140/1849\nf 1826/2140/1849 1824/2138/1847 1827/2141/1850\nf 1824/2138/1847 1828/2142/1851 1827/2141/1850\nf 1827/2141/1850 1828/2142/1851 1829/2143/1852\nf 1817/2144/1840 1818/2137/1841 1825/2139/1848\nf 1830/2145/1853 1817/2144/1840 1825/2139/1848\nf 1816/2146/1839 1817/2144/1840 1830/2145/1853\nf 1831/2147/1854 1816/2146/1839 1830/2145/1853\nf 1830/2145/1853 1832/2148/1855 1831/2147/1854\nf 1832/2148/1855 1830/2145/1853 1833/2149/1856\nf 1833/2149/1856 1830/2145/1853 1834/2150/1857\nf 1830/2145/1853 1825/2139/1848 1834/2150/1857\nf 1825/2139/1848 1835/2151/1858 1834/2150/1857\nf 1825/2139/1848 1836/2152/1859 1835/2151/1858\nf 1835/2151/1858 1836/2152/1859 1837/2153/1860\nf 1836/2152/1859 1838/2154/1861 1837/2153/1860\nf 1837/2153/1860 1838/2154/1861 1839/2155/1862\nf 1839/2155/1862 1840/2156/1863 1837/2153/1860\nf 1837/2153/1860 1840/2156/1863 1835/2151/1858\nf 1840/2156/1863 1841/2157/1864 1835/2151/1858\nf 1834/2150/1857 1835/2151/1858 1841/2157/1864\nf 1834/2150/1857 1841/2157/1864 1842/2158/1865\nf 1834/2150/1857 1842/2158/1865 1833/2149/1856\nf 1833/2149/1856 1842/2158/1865 1843/2159/1866\nf 1843/2160/1866 1842/2161/1865 1844/2162/1867\nf 1844/2162/1867 1842/2161/1865 1845/2163/1868\nf 1846/2164/1869 1844/2162/1867 1845/2163/1868\nf 1846/2164/1869 1845/2163/1868 1847/2165/1870\nf 1844/2166/1867 1848/2167/1871 1843/2168/1866\nf 1844/2166/1867 1849/2169/1872 1848/2167/1871\nf 1844/2166/1867 1850/2170/1873 1849/2169/1872\nf 1850/2170/1873 1851/2171/1874 1849/2169/1872\nf 1833/2149/1856 1843/2159/1866 1832/2172/1855\no mesh6.002_mesh6-geometry\nv -0.521407 173.119904 -6.426266\nv 0.812564 169.238144 -7.522570\nv -1.535649 168.991821 -6.744250\nv 3.894099 169.439819 -6.804372\nv 2.858482 173.700089 -6.140868\nv 5.660649 169.717941 -6.276171\nv 6.055125 173.961761 -4.533422\nv 7.537468 169.665924 -4.883699\nv 6.073896 164.155258 -5.326345\nv 8.674204 169.367508 -3.073784\nv 8.361501 173.616852 -1.846091\nv 6.031561 173.962128 -4.551812\nv 9.447274 172.969086 1.353694\nv 10.114603 169.097412 -0.262884\nv 9.924402 168.818436 2.199635\nv 8.868930 172.331039 4.255651\nv 7.254053 171.781296 6.922287\nv 9.298072 168.785934 4.295428\nv 8.750032 168.455032 4.372321\nv 8.031408 162.858917 2.738187\nv 9.318915 163.119553 2.054832\nv 10.059672 160.980057 1.407837\nv 9.357282 160.381165 1.430797\nv 11.965581 158.717926 -0.114448\nv 10.447781 161.054794 0.582908\nv 9.015560 163.331833 0.736250\nv 8.831248 163.643646 -1.052946\nv 9.049035 163.844910 -2.000243\nv 8.171953 163.998535 -3.323385\nv 7.711526 164.057251 -3.885271\nv 8.353170 161.858597 -4.674542\nv 9.276829 161.710266 -3.571204\nv 10.014275 161.541901 -2.401379\nv 9.696683 161.336670 -1.212701\nv 9.834291 161.067291 0.117395\nv 12.438554 158.938843 -1.664322\nv 11.029427 159.996994 -2.336363\nv 11.006041 160.111343 -2.942734\nv 10.398808 160.218567 -3.853108\nv 13.023131 158.937439 -4.071572\nv 9.761738 160.226837 -4.247693\nv 8.973063 160.361725 -5.407319\nv 8.224761 160.531815 -6.734704\nv 6.480162 161.931366 -6.014196\nv 4.057840 164.130524 -6.296028\nv 4.310543 161.944214 -7.271014\nv 6.405725 160.586777 -8.026747\nv 5.072738 160.555573 -8.589611\nv 6.749031 158.313751 -10.087786\nv 2.595204 161.869827 -7.892623\nv 4.384693 160.539307 -8.880887\nv 2.865259 160.373642 -8.820922\nv 3.909931 158.608154 -11.178285\nv 1.466885 160.243027 -8.883619\nv 2.055799 158.401703 -11.081213\nv 1.173012 161.726074 -8.100363\nv 2.299386 164.067810 -6.910072\nv 1.580622 164.011383 -7.007226\nv -0.002902 163.862579 -7.059298\nv -0.207475 161.561859 -8.114233\nv 0.797128 160.237289 -9.219410\nv -0.294412 160.133392 -9.258467\nv -0.436556 158.970398 -11.580874\nv -0.895595 160.008865 -8.915766\nv -1.047925 161.357635 -7.217776\nv -0.691888 163.662201 -6.375350\nv -2.306362 163.353943 -5.591481\nv -2.249013 161.090866 -6.635866\nv -2.161482 158.976898 -9.806972\nv -3.588870 163.144745 -5.159226\nv -3.319264 161.006180 -6.069544\nv -2.966345 161.080963 -6.914139\nv -3.223752 158.758484 -8.584764\nv -3.114303 160.463593 -5.852821\nv -3.573723 162.969711 -4.223419\nv -3.417670 168.978302 -5.628449\nv -5.414330 171.972946 -2.964630\nv -3.208549 172.513763 -5.170101\nv -3.365551 168.638321 -5.083168\nv 10.388448 158.595520 -7.557493\nv 11.281310 158.383713 -5.925149\nvt -2.911842 -0.071953\nvt -2.911668 -0.180363\nvt -2.822959 -0.180436\nvt -3.174328 -0.009210\nvt -3.231843 -0.093788\nvt -3.146494 -0.093383\nvt -3.231422 -0.009239\nvt -3.784801 -0.009281\nvt -3.827691 -0.094342\nvt -3.772469 -0.094779\nvt -3.826006 -0.009240\nvt -4.164889 0.001830\nvt -4.197845 -0.094306\nvt -4.137818 -0.094188\nvt -4.197140 -0.176728\nvt -3.826008 -0.176571\nvt -2.822192 -0.071636\nvt -2.764565 -0.071301\nvt -2.764596 -0.180445\nvt -2.750458 -0.071301\nvt -2.735431 -0.180532\nvt -2.735746 -0.270939\nvt -2.761215 -0.270514\nvt -2.762069 -0.443937\nvt -2.735533 -0.444202\nvt -2.762764 -0.513298\nvt -2.817028 -0.442350\nvt -2.823488 -0.270512\nvt -2.911667 -0.270373\nvt -3.174144 -0.177013\nvt -3.114517 -0.177257\nvt -3.233431 -0.177020\nvt -3.782043 -0.176721\nvt -3.746522 -0.176858\nvt -3.788290 -0.291463\nvt -3.742264 -0.292842\nvt -3.233052 -0.295327\nvt -3.173702 -0.295468\nvt -3.113055 -0.296277\nvt -2.911665 -0.358332\nvt -2.837804 -0.358462\nvt -2.872106 -0.513273\nvt -3.133179 -0.381574\nvt -3.173189 -0.381519\nvt -3.224822 -0.381386\nvt -3.174293 -0.450458\nvt -3.751977 -0.381170\nvt -3.789171 -0.381111\nvt -3.825250 -0.381045\nvt -3.826975 -0.291600\nvt -4.196353 -0.291354\nvt -4.138954 -0.176763\nvt -4.138202 -0.291547\nvt -4.183674 -0.380847\nvt -4.146772 -0.380861\nvt -4.169056 -0.450358\nvt -3.809546 -0.450317\nvt -3.770640 -0.450317\nvt -3.127869 -0.381582\nvn -0.136845 0.214331 -0.967101\nvn -0.198553 0.023011 -0.979797\nvn -0.449263 0.050325 -0.891964\nvn 0.216742 0.066500 -0.973937\nvn 0.240059 0.232948 -0.942381\nvn 0.438063 0.084017 -0.894986\nvn 0.495163 0.290231 -0.818873\nvn 0.739952 0.104892 -0.664418\nvn 0.608814 0.104495 -0.786370\nvn 0.848506 0.057680 -0.526017\nvn 0.854793 0.224555 -0.467849\nvn 0.740410 0.305765 -0.598559\nvn 0.975249 0.197607 -0.098941\nvn 0.981445 -0.035310 -0.188421\nvn 0.983215 0.034730 0.178961\nvn 0.925199 0.058565 0.374859\nvn 0.800470 -0.044984 0.597644\nvn 0.689901 -0.184057 0.700064\nvn 0.347880 -0.376659 0.858516\nvn 0.399640 -0.260720 0.878780\nvn 0.922697 -0.061800 0.380474\nvn 0.730644 0.098544 0.675588\nvn 0.306131 -0.324717 0.894864\nvn 0.652211 0.040132 0.756951\nvn 0.799127 0.434553 0.415326\nvn 0.987060 0.159124 -0.018464\nvn 0.986023 0.114994 0.120304\nvn 0.951537 0.207678 -0.226661\nvn 0.821955 0.153294 -0.548479\nvn 0.719230 0.245216 -0.650044\nvn 0.659627 0.500290 -0.560839\nvn 0.744316 0.457686 -0.486251\nvn 0.857418 0.513291 -0.036653\nvn 0.871853 0.472793 0.127628\nvn 0.826350 0.562395 0.028382\nvn 0.663686 0.743492 0.081912\nvn 0.741172 0.648579 0.173162\nvn 0.650960 0.753441 -0.092441\nvn 0.618793 0.720206 -0.313669\nvn 0.494003 0.869167 -0.021119\nvn 0.682791 0.590442 -0.430311\nvn 0.681478 0.645924 -0.343974\nvn 0.606281 0.695608 -0.385327\nvn 0.441664 0.543016 -0.714133\nvn 0.370220 0.192267 -0.908811\nvn 0.311197 0.632954 -0.708853\nvn 0.280923 0.731651 -0.621052\nvn 0.262825 0.702475 -0.661367\nvn 0.276070 0.668142 -0.690878\nvn 0.123264 0.511734 -0.850246\nvn 0.000275 0.691427 -0.722404\nvn -0.063753 0.652089 -0.755425\nvn -0.108860 0.771874 -0.626331\nvn 0.008972 0.596393 -0.802606\nvn -0.041932 0.760247 -0.648244\nvn 0.023896 0.464736 -0.885098\nvn 0.192694 0.239051 -0.951659\nvn 0.100467 0.139653 -0.985076\nvn -0.003815 0.158147 -0.987396\nvn 0.042451 0.653401 -0.755791\nvn -0.056398 0.725700 -0.685659\nvn -0.258858 0.760796 -0.595080\nvn -0.235664 0.874660 -0.423566\nvn -0.530106 0.662404 -0.529283\nvn -0.438948 0.578021 -0.687857\nvn -0.130100 -0.267434 -0.954741\nvn -0.482498 0.170263 -0.859157\nvn -0.456832 0.573412 -0.680044\nvn -0.415235 0.751579 -0.512497\nvn -0.762719 0.007538 -0.646657\nvn -0.970550 0.081942 -0.226447\nvn -0.863186 0.384930 -0.326609\nvn -0.996765 0.037019 -0.070956\nvn -0.941038 -0.279153 0.191015\nvn -0.993378 -0.081332 0.080813\nvn -0.799341 0.325938 -0.504715\nvn -0.185736 0.509537 -0.840144\nvn -0.586749 0.081362 -0.805628\nvn -0.179052 0.827052 0.532792\nvn 0.595996 0.766991 -0.237678\nvn 0.578997 0.755760 -0.305856\ng mesh6.002_mesh6-geometry__01_-_Default1noCulli__01_-_Default1noCulli\nusemtl _01_-_Default1noCulli__01_-_Default1noCulli\ns 1\nf 1852/2173/1875 1853/2174/1876 1854/2175/1877\nf 1852/2176/1875 1855/2177/1878 1853/2178/1876\nf 1855/2177/1878 1852/2176/1875 1856/2179/1879\nf 1856/2180/1879 1857/2181/1880 1855/2182/1878\nf 1858/2183/1881 1857/2181/1880 1856/2180/1879\nf 1858/2184/1881 1859/2185/1882 1857/2186/1880\nf 1857/2186/1880 1859/2185/1882 1860/2187/1883\nf 1860/2188/1883 1859/2181/1882 1861/2182/1884\nf 1859/2181/1882 1862/2180/1885 1861/2182/1884\nf 1859/2181/1882 1863/2183/1886 1862/2180/1885\nf 1861/2177/1884 1862/2179/1885 1864/2176/1887\nf 1861/2177/1884 1864/2176/1887 1865/2178/1888\nf 1865/2174/1888 1864/2173/1887 1866/2175/1889\nf 1864/2173/1887 1867/2189/1890 1866/2175/1889\nf 1866/2175/1889 1867/2189/1890 1868/2190/1891\nf 1866/2175/1889 1868/2190/1891 1869/2191/1892\nf 1868/2192/1891 1870/2193/1893 1869/2191/1892\nf 1869/2191/1892 1870/2193/1893 1871/2194/1894\nf 1869/2191/1892 1871/2194/1894 1872/2195/1895\nf 1872/2195/1895 1871/2194/1894 1873/2196/1896\nf 1871/2194/1894 1874/2197/1897 1873/2196/1896\nf 1873/2196/1896 1874/2197/1897 1875/2198/1898\nf 1875/2198/1898 1876/2199/1899 1873/2196/1896\nf 1876/2199/1899 1877/2200/1900 1873/2196/1896\nf 1877/2200/1900 1872/2195/1895 1873/2196/1896\nf 1877/2200/1900 1866/2175/1889 1872/2195/1895\nf 1865/2174/1888 1866/2175/1889 1877/2200/1900\nf 1878/2201/1901 1865/2174/1888 1877/2200/1900\nf 1879/2202/1902 1865/2178/1888 1878/2203/1901\nf 1880/2204/1903 1865/2178/1888 1879/2202/1902\nf 1880/2204/1903 1861/2177/1884 1865/2178/1888\nf 1881/2205/1904 1861/2182/1884 1880/2206/1903\nf 1861/2182/1884 1881/2205/1904 1860/2188/1883\nf 1860/2188/1883 1881/2205/1904 1882/2207/1905\nf 1882/2207/1905 1881/2205/1904 1883/2208/1906\nf 1881/2205/1904 1880/2206/1903 1883/2208/1906\nf 1883/2209/1906 1880/2204/1903 1879/2202/1902\nf 1883/2209/1906 1879/2202/1902 1884/2210/1907\nf 1884/2210/1907 1879/2202/1902 1878/2203/1901\nf 1884/2210/1907 1878/2203/1901 1885/2211/1908\nf 1885/2212/1908 1878/2201/1901 1877/2200/1900\nf 1885/2212/1908 1877/2200/1900 1886/2213/1909\nf 1887/2214/1910 1885/2212/1908 1886/2213/1909\nf 1884/2210/1907 1885/2211/1908 1888/2215/1911\nf 1889/2216/1912 1884/2210/1907 1888/2215/1911\nf 1890/2217/1913 1884/2210/1907 1889/2216/1912\nf 1890/2217/1913 1883/2209/1906 1884/2210/1907\nf 1891/2218/1914 1890/2217/1913 1889/2216/1912\nf 1891/2218/1914 1889/2216/1912 1888/2215/1911\nf 1882/2207/1905 1883/2208/1906 1892/2219/1915\nf 1893/2220/1916 1882/2207/1905 1892/2219/1915\nf 1894/2221/1917 1882/2207/1905 1893/2220/1916\nf 1882/2207/1905 1894/2221/1917 1895/2222/1918\nf 1860/2188/1883 1882/2207/1905 1895/2222/1918\nf 1860/2187/1883 1895/2223/1918 1896/2224/1919\nf 1896/2224/1919 1895/2223/1918 1897/2225/1920\nf 1895/2223/1918 1898/2226/1921 1897/2225/1920\nf 1898/2226/1921 1899/2227/1922 1897/2225/1920\nf 1898/2226/1921 1900/2228/1923 1899/2227/1922\nf 1896/2188/1919 1897/2222/1920 1901/2207/1924\nf 1902/2221/1925 1901/2207/1924 1897/2222/1920\nf 1901/2207/1924 1902/2221/1925 1903/2220/1926\nf 1902/2221/1925 1904/2229/1927 1903/2220/1926\nf 1901/2207/1924 1903/2220/1926 1905/2219/1928\nf 1903/2220/1926 1906/2230/1929 1905/2219/1928\nf 1901/2207/1924 1905/2219/1928 1907/2208/1930\nf 1908/2205/1931 1901/2207/1924 1907/2208/1930\nf 1896/2188/1919 1901/2207/1924 1908/2205/1931\nf 1855/2182/1878 1896/2188/1919 1908/2205/1931\nf 1857/2181/1880 1896/2188/1919 1855/2182/1878\nf 1857/2186/1880 1860/2187/1883 1896/2224/1919\nf 1855/2182/1878 1908/2205/1931 1909/2206/1932\nf 1908/2205/1931 1907/2208/1930 1909/2206/1932\nf 1909/2204/1932 1907/2209/1930 1910/2202/1933\nf 1910/2202/1933 1907/2209/1930 1911/2210/1934\nf 1907/2209/1930 1912/2217/1935 1911/2210/1934\nf 1911/2210/1934 1912/2217/1935 1913/2216/1936\nf 1912/2217/1935 1914/2218/1937 1913/2216/1936\nf 1913/2216/1936 1914/2218/1937 1915/2231/1938\nf 1911/2210/1934 1913/2216/1936 1915/2231/1938\nf 1915/2231/1938 1916/2211/1939 1911/2210/1934\nf 1911/2210/1934 1917/2203/1940 1916/2211/1939\nf 1911/2210/1934 1910/2202/1933 1917/2203/1940\nf 1853/2178/1876 1910/2202/1933 1917/2203/1940\nf 1853/2178/1876 1909/2204/1932 1910/2202/1933\nf 1855/2177/1878 1909/2204/1932 1853/2178/1876\nf 1853/2174/1876 1917/2201/1940 1918/2200/1941\nf 1917/2201/1940 1916/2212/1939 1918/2200/1941\nf 1918/2200/1941 1916/2212/1939 1919/2213/1942\nf 1916/2212/1939 1920/2214/1943 1919/2213/1942\nf 1853/2174/1876 1918/2200/1941 1854/2175/1877\nf 1854/2175/1877 1918/2200/1941 1921/2195/1944\nf 1918/2200/1941 1922/2196/1945 1921/2195/1944\nf 1923/2199/1946 1922/2196/1945 1918/2200/1941\nf 1924/2198/1947 1922/2196/1945 1923/2199/1946\nf 1924/2198/1947 1925/2197/1948 1922/2196/1945\nf 1922/2196/1945 1925/2197/1948 1926/2194/1949\nf 1922/2196/1945 1926/2194/1949 1921/2195/1944\nf 1927/2191/1950 1921/2195/1944 1926/2194/1949\nf 1854/2175/1877 1921/2195/1944 1927/2191/1950\nf 1928/2190/1951 1854/2175/1877 1927/2191/1950\nf 1929/2189/1952 1854/2175/1877 1928/2190/1951\nf 1852/2173/1875 1854/2175/1877 1929/2189/1952\nf 1927/2191/1950 1928/2192/1951 1930/2193/1953\nf 1927/2191/1950 1926/2194/1949 1930/2193/1953\nf 1931/2229/1954 1894/2221/1917 1893/2220/1916\nf 1932/2230/1955 1893/2220/1916 1892/2219/1915\nf 1872/2195/1895 1866/2175/1889 1869/2191/1892\no mesh7.002_mesh7-geometry\nv 8.516812 179.213318 -2.049338\nv 7.614021 179.071335 -3.280771\nv 6.141802 181.563492 -0.821662\nv 9.452683 176.801208 -3.022944\nv 9.973782 176.782166 -2.428882\nv 10.565123 176.257645 0.040458\nv 9.473500 179.022522 0.538084\nv 6.707494 181.523071 1.176218\nv 3.947714 182.420044 1.839826\nv 3.547768 182.553284 0.755714\nv 5.742507 181.559952 -1.448285\nv 5.850313 178.972046 -4.756730\nv 6.767653 176.809677 -5.999644\nv 8.534463 177.033752 -4.422623\nv 9.703923 173.684967 -4.163786\nv 11.069258 173.960831 -3.079342\nv 10.600483 173.373505 -0.687817\nv 10.596956 176.066391 1.748332\nv 9.195215 178.761490 2.070107\nv 6.786744 181.373138 2.399554\nv 3.583206 182.263977 3.072141\nv 2.444417 181.939850 2.474065\nv 2.797291 181.972153 1.384911\nv 2.844765 182.456863 0.210405\nv 4.344836 181.611908 -2.443566\nv 5.362096 179.056396 -5.008393\nv 5.615037 176.883255 -6.594032\nv 7.263352 173.209167 -6.610976\nv 8.942813 173.591858 -5.591980\nv 9.501699 170.877548 -5.864146\nv 9.341678 171.207779 -6.668988\nv 8.265245 170.923401 -7.056123\nv 10.503204 168.977081 -8.030001\nv 5.851542 173.340927 -7.499870\nv 7.104819 171.256714 -7.053508\nv 6.266498 171.222153 -7.995930\nv 7.499195 169.018387 -9.134934\nv 3.819540 173.964157 -8.669659\nv 5.344097 171.205475 -8.977736\nv 4.368594 171.342743 -9.477033\nv 4.754057 169.454468 -10.512764\nv 3.358434 171.369095 -9.023886\nv 2.377729 173.695084 -8.219124\nv 3.444935 177.121964 -7.795917\nv 3.284467 179.294846 -6.035090\nv 3.113142 181.761520 -2.756674\nv 2.708170 179.165131 -5.884731\nv 2.446167 176.935928 -7.328882\nv -0.280876 176.821121 -7.488700\nv 0.281869 173.857025 -8.555741\nv 2.254921 171.548538 -8.813036\nv 0.786232 171.678345 -9.139033\nv 1.781852 169.450867 -10.960031\nv 0.124914 171.334595 -8.566776\nv -1.037863 173.722458 -7.583132\nv -0.982560 176.558411 -7.008246\nv 0.143873 179.527145 -5.743537\nv 1.046741 181.701309 -2.784233\nv -0.293412 179.396179 -5.436271\nv -2.751432 176.679443 -6.247355\nv -2.521316 173.764633 -7.063844\nv -1.989829 170.635681 -7.505325\nv -1.142620 170.757523 -7.953349\nv -1.324677 168.646912 -9.016819\nv -3.996229 173.827499 -6.500041\nv -3.465490 172.345139 -7.308052\nv -2.626914 172.478943 -7.595311\nv -2.966504 171.066925 -8.630920\nv -3.658828 171.936142 -7.046606\nv -4.183976 173.620789 -6.102923\nv -4.225375 176.616455 -5.380733\nv -4.258365 176.187012 -4.685509\nv -3.513392 179.718811 -3.388178\nv -3.935044 179.515335 -2.845530\nv -4.899068 176.262329 -4.240829\nv -5.454847 173.807678 -4.995084\nv -5.674469 173.704407 -4.417326\nv -7.302790 171.343750 -5.025360\nv -4.879489 175.977554 -3.412332\nv -6.047281 173.463425 -3.700484\nv -5.948580 173.727631 -4.356814\nv -7.192784 171.327972 -3.705098\nv -4.361206 179.575958 -2.190157\nv -5.746024 176.021744 -3.004792\nv -6.799747 172.021362 -2.734898\nv -7.120978 172.241302 -1.794855\nv -7.384484 169.415070 -1.339519\nv -7.606100 169.764465 -0.678368\nv -7.997060 167.474274 0.637105\nv -8.266316 167.814941 1.185468\nv -8.879881 165.718201 3.347964\nv -8.131458 168.065170 1.700267\nv -7.658235 170.128143 0.307554\nv -7.432484 172.314896 -0.796247\nv -6.616254 175.424591 -1.419389\nv -7.407074 175.287842 -0.219392\nv -7.888806 172.185486 0.338133\nv -8.015405 170.453049 1.070738\nv -7.991167 170.211395 0.390055\nv -8.466050 168.236694 1.982360\nv -6.012369 179.227661 -0.001568\nv -7.860868 175.640961 1.971948\nv -8.262136 172.671829 2.649217\nv -7.970124 172.371475 0.390095\nv -8.855232 170.050827 2.972684\nv -8.629545 169.686920 1.648750\nv -9.255339 167.706589 3.511180\nv -8.297399 175.883423 2.475741\nv -8.873331 172.739883 2.759324\nv -8.697191 170.338837 3.303780\nv -8.650322 172.672256 3.573869\nv -8.124218 175.763718 3.162527\nv -8.540962 176.232437 4.340662\nv -9.099364 172.956665 4.515010\nv -9.032777 169.274597 5.609592\nv -8.834107 172.697815 5.662657\nv -8.301044 175.652740 5.833913\nv -7.198427 177.820953 6.230858\nv -7.429335 179.002457 4.658905\nv -5.381828 179.927200 6.577448\nv -5.569195 180.021454 8.048686\nv -7.140346 177.882950 7.979737\nv -8.330891 175.428925 6.141499\nv -8.440488 175.039352 7.196908\nv -8.797618 172.612045 6.284318\nv -5.259625 178.840408 9.262204\nv -6.815423 176.738327 9.257519\nv -8.368861 175.336349 7.663415\nv -7.950434 174.619263 8.716148\nv -8.757265 173.349182 7.176359\nv -8.298317 173.099930 7.750376\nv -8.773274 170.699203 6.789248\nv -5.130870 178.837234 9.950705\nv -6.527408 176.382019 10.192033\nv -7.566748 174.313110 8.975780\nv -7.549910 173.981781 9.709790\nv -8.394423 171.437775 8.075489\nv -5.032514 178.834152 10.795145\nv -6.549596 176.234604 11.075280\nv -7.437412 173.931686 9.803565\nv -7.273568 173.836716 10.622828\nv -8.357972 170.818817 8.833326\nv -6.394793 173.695770 10.865056\nv -4.815533 176.022293 11.095480\nv -3.923943 177.934555 10.825703\nv -3.096463 180.559784 9.134977\nv -3.403150 180.481308 8.413737\nv -1.093921 181.180664 6.963611\nv -1.426776 181.495972 6.607491\nv -0.807817 181.188629 6.358299\nv -1.415505 181.444016 6.070183\nv -0.917494 182.069290 5.351390\nv -0.187098 181.409821 5.710878\nv 0.434604 181.419662 5.034532\nv -0.376703 182.404633 4.620813\nv 0.270067 182.691742 3.726228\nv 1.196476 182.019180 4.227810\nv 1.151612 182.672180 2.588970\nv 2.035876 181.928116 3.139685\nv 1.752552 182.593674 1.864903\nv 2.366642 182.517578 0.999187\nv 1.920748 182.720612 -0.070301\nv 0.727217 182.911041 0.472368\nv -0.702388 181.904556 -1.909857\nv -1.947557 179.835907 -4.658123\nv -2.243977 181.782349 -0.879808\nv -2.360624 181.919907 -0.376065\nv -3.302325 181.453369 0.776723\nv -5.343869 179.131134 -1.059212\nv -3.925100 180.978592 1.796422\nv -6.962436 179.118881 2.027076\nv -7.233053 179.076172 2.578478\nv -7.057696 178.677444 3.226721\nv -5.594052 180.932114 5.046420\nv -4.890356 181.145981 3.468508\nv -2.881905 181.903961 4.376432\nv -1.990306 182.257614 3.317702\nv -1.362376 182.619614 2.442854\nv -0.323327 182.887665 1.255786\nv -3.394577 181.846481 5.573609\nv -3.689114 181.108978 6.244208\nv -3.767493 181.324829 7.566070\nv 3.139014 182.121475 3.944028\nv 5.377476 181.332336 5.074918\nv 6.320092 181.267410 3.691865\nv 8.440474 178.500854 3.866986\nv 7.948385 178.295792 5.498707\nv 7.487756 178.329834 5.719580\nv 6.155817 178.291580 6.946959\nv 4.549810 181.160431 6.033801\nv 2.334073 182.065018 4.924311\nv 1.453303 181.735580 5.751376\nv 0.834937 181.769760 6.517385\nv 0.076401 181.318512 6.922841\nv -0.655978 181.068756 7.082665\nv -0.813910 181.153107 7.383029\nv -0.527889 181.375229 6.953347\nv -0.964940 181.006241 9.543161\nv -0.155480 181.337952 9.237908\nv -0.367611 180.255310 11.105441\nv 0.193089 180.526627 10.920803\nv 0.427857 179.174820 12.292580\nv -0.286102 181.441452 6.857575\nv 0.413875 180.946579 9.245246\nv 1.288801 181.163635 8.861809\nv 1.510381 179.324860 10.880245\nv 2.067076 179.587021 10.573010\nv 1.972585 177.550034 12.017916\nv -0.881821 180.013702 9.505754\nv -1.859444 180.238663 9.801348\nv -2.392971 179.945740 9.219793\nv -3.618806 178.009003 11.242619\nv -4.552562 176.021271 11.735526\nv -5.340848 174.145599 11.041581\nv -5.401017 174.070435 11.631402\nv -5.991083 171.965530 10.691309\nv -4.183076 176.288361 12.429445\nv -4.951551 173.931854 12.436950\nv -5.822685 171.351532 11.322635\nv -3.417236 173.682205 12.171033\nv -2.644819 175.858368 11.933985\nv -1.975404 177.593658 11.265246\nv -3.127722 178.128265 11.912287\nv -1.009350 177.700928 11.161062\nv -1.365578 175.576874 12.005592\nv -2.114523 173.458267 12.387155\nv -3.641938 171.940414 12.102407\nv 0.695167 178.367508 11.269442\nv 0.296813 180.768799 9.302468\nv 1.185525 180.134262 8.969335\nv 1.779628 180.472549 8.320696\nv 2.539218 180.921082 8.029945\nv 3.173279 180.596222 6.992294\nv 4.900164 178.366928 8.275186\nv 4.103662 178.987976 9.335391\nv 3.231852 178.463257 9.883278\nv 1.964072 178.121277 10.493256\nv 0.593780 175.964172 12.193280\nv -0.733034 173.415100 12.316161\nv 0.453792 173.345154 12.625346\nv 0.000904 171.416336 12.109293\nv 0.957123 173.244675 11.945206\nv 1.596893 175.446716 11.358034\nv 3.486648 175.430664 10.603986\nv 3.280457 172.305634 11.223832\nv 1.815994 173.007919 11.572869\nv 1.723062 169.928009 12.137476\nv 4.780055 175.492050 10.130818\nv 5.162759 175.063156 9.088696\nv 4.159685 171.689087 11.027234\nv 2.961352 170.010345 11.505468\nv 4.303921 171.236160 9.905435\nv 7.111721 175.251373 7.855134\nv 8.245305 174.991928 6.908223\nv 7.980112 172.649979 7.841328\nv 6.478055 172.907410 8.201979\nv 6.620066 169.888229 9.023378\nv 5.705120 170.085739 9.229033\nv 4.878360 167.406174 10.455186\nv 8.641180 174.934021 6.147870\nv 8.638316 172.691620 7.317061\nv 8.095916 172.854065 7.618126\nv 8.556336 170.714584 9.377292\nv 9.158899 174.967819 5.726284\nv 9.378760 173.111267 6.776695\nv 8.898371 173.021317 7.041698\nv 9.679564 171.147385 8.653232\nv 9.982117 175.503937 3.539283\nv 10.617971 173.174957 3.164146\nv 11.218256 173.505142 1.232379\nv 11.135729 171.517380 -0.616798\nv 11.603329 171.921463 0.568514\nv 11.137632 171.269653 1.673286\nv 12.546949 169.550995 -0.616408\nv 9.753348 173.418869 5.343938\nv 10.340876 173.498184 3.392196\nv 10.406744 172.145126 4.405775\nv 10.337196 172.591827 3.241967\nv 11.353980 170.737350 2.781551\nv 5.865089 170.979904 9.550778\nv 4.216149 168.106812 10.977663\nv 11.463002 171.497223 -2.414451\nv 11.388038 171.687668 -3.681973\nv 10.771915 171.436447 -4.600043\nv 12.361035 169.138138 -5.592087\nvt -1.718743 -3.415484\nvt -1.658420 -3.415500\nvt -1.718994 -3.337938\nvt -1.718584 -3.481048\nvt -1.774766 -3.487770\nvt -1.793633 -3.422209\nvt -1.821932 -3.487755\nvt -1.821846 -3.422209\nvt -1.879531 -3.487751\nvt -1.880042 -3.422184\nvt -1.821776 -3.344283\nvt -1.881502 -3.344374\nvt -1.880752 -3.253557\nvt -1.821345 -3.253551\nvt -1.657819 -3.337867\nvt -1.659606 -3.253051\nvt -1.594862 -3.415509\nvt -1.594892 -3.481076\nvt -1.657753 -3.481060\nvt -1.718829 -3.565981\nvt -1.774592 -3.572837\nvt -1.824446 -3.572811\nvt -1.878391 -3.572715\nvt -2.498179 -3.572561\nvt -2.497071 -3.487682\nvt -2.614932 -3.487653\nvt -2.614397 -3.422114\nvt -2.496403 -3.422135\nvt -2.497818 -3.344786\nvt -2.614117 -3.344880\nvt -2.612236 -3.253583\nvt -2.696038 -3.253582\nvt -2.695379 -3.111292\nvt -2.615356 -3.111293\nvt -1.852480 -3.111291\nvt -1.595081 -3.253042\nvt -1.617530 -3.111459\nvt -1.594995 -3.337499\nvt -3.634805 -2.391564\nvt -3.574778 -2.391454\nvt -3.601849 -2.302783\nvt -3.634100 -2.467679\nvt -3.575914 -2.467711\nvt -3.633313 -2.573535\nvt -1.656330 -3.566019\nvt -1.594962 -3.566057\nvt -1.718734 -3.639205\nvt -1.657764 -3.639390\nvt -1.616046 -3.639366\nvt -1.656322 -3.717375\nvt -3.575162 -2.573713\nvt -3.633076 -2.656176\nvt -3.576793 -2.656195\nvt -3.606016 -2.720372\nvt -4.093904 -2.467534\nvt -4.095174 -2.573762\nvt -4.044356 -2.573636\nvt -4.072944 -2.656389\nvt -4.045514 -2.656424\nvt -4.049280 -2.720335\nvt -3.996655 -2.656479\nvt -3.983895 -2.574909\nvt -4.036150 -2.467673\nvt -4.035498 -2.392263\nvt -4.096114 -2.391597\nvt -4.039773 -2.313044\nvt -4.011649 -2.391737\nvt -3.989488 -2.467799\nvt -3.541158 -2.467949\nvt -3.540660 -2.577203\nvt -3.463277 -2.467942\nvt -3.462697 -2.577333\nvt -3.529850 -2.656678\nvt -3.462023 -2.656801\nvt -3.463473 -2.720465\nvt -3.390546 -2.656875\nvt -3.388139 -2.578081\nvt -3.390060 -2.468168\nvt -3.463330 -2.390635\nvt -3.539072 -2.391085\nvt -3.463520 -2.312979\nvt -3.390580 -2.390787\nvt -2.918242 -2.471036\nvt -2.918241 -2.554159\nvt -2.823488 -2.554287\nvt -2.918239 -2.635388\nvt -2.837804 -2.635508\nvt -2.855562 -2.714753\nvt -2.909631 -2.714726\nvt -2.878680 -2.778474\nvt -2.808156 -2.635603\nvt -2.761607 -2.635198\nvt -2.762069 -2.714443\nvt -2.794018 -2.714495\nvt -2.762764 -2.778497\nvt -2.735533 -2.714687\nvt -2.735462 -2.636307\nvt -2.761215 -2.554289\nvt -2.735746 -2.554682\nvt -2.764596 -2.471112\nvt -2.735431 -2.471192\nvt -2.594712 -2.471365\nvt -2.608504 -2.555504\nvt -2.574317 -2.555402\nvt -2.604759 -2.636099\nvt -2.576900 -2.636726\nvt -2.591082 -2.714982\nvt -2.533985 -2.554729\nvt -2.503424 -2.555106\nvt -2.516402 -2.471321\nvt -2.499522 -2.636940\nvt -2.530165 -2.636521\nvt -2.519431 -2.714892\nvt -1.938599 -2.548173\nvt -1.877068 -2.478823\nvt -1.938841 -2.478822\nvt -1.876925 -2.548240\nvt -1.938809 -2.615874\nvt -1.876838 -2.615718\nvt -1.938442 -2.656266\nvt -1.876737 -2.656164\nvt -1.938218 -2.681015\nvt -1.876675 -2.680993\nvt -1.876256 -2.733627\nvt -1.828956 -2.680945\nvt -1.825324 -2.655370\nvt -1.819740 -2.616053\nvt -1.807715 -2.548395\nvt -1.786750 -2.680511\nvt -1.716725 -2.548780\nvt -1.717170 -2.680441\nvt -1.735164 -2.700389\nvt -1.776886 -2.704670\nvt -1.765089 -2.733564\nvt -1.715767 -2.478890\nvt -0.985835 0.400607\nvt -0.894473 0.400534\nvt -0.985869 0.485490\nvt -0.895035 0.309644\nvt -0.985798 0.309745\nvt -0.894804 0.215069\nvt -0.985406 0.216994\nvt -0.943378 0.142607\nvt -0.838494 0.400594\nvt -0.836651 0.309733\nvt -0.798587 0.400603\nvt -0.798487 0.309775\nvt -0.798639 0.218007\nvt -0.758454 0.309729\nvt -0.757742 0.400530\nvt -0.662570 0.400451\nvt -0.662600 0.309610\nvt -0.599919 0.400448\nvt -0.600133 0.309632\nvt -0.600396 0.214545\nvt -0.521169 0.309562\nvt -0.520213 0.400431\nvt -0.520477 0.485619\nvt -0.599657 0.485551\nvt -0.520697 0.584172\nvt 0.031395 0.365189\nvt 0.072822 0.488983\nvt 0.031355 0.489033\nvt 0.072825 0.365360\nvt 0.031573 0.251683\nvt 0.056998 0.253284\nvt 0.054325 0.202767\nvt 0.125837 0.488980\nvt 0.124825 0.365095\nvt 0.072739 0.254276\nvt 0.126143 0.253156\nvt 0.072739 0.214535\nvt 0.102844 0.213901\nvt 0.072739 0.163179\nvt 0.168220 0.364641\nvt 0.187481 0.488928\nvt 0.167944 0.488994\nvt 0.187312 0.364388\nvt 0.168178 0.255069\nvt 0.190181 0.255163\nvt 0.188784 0.212791\nvt 0.212987 0.488841\nvt 0.212594 0.364055\nvt 0.212184 0.255257\nvt 0.213055 0.162992\nvt 0.264492 0.254985\nvt 0.264528 0.364249\nvt 0.264548 0.488904\nvt 0.213377 0.656816\nvt 0.167697 0.656844\nvt 0.214060 0.875810\nvt 0.126486 0.874375\nvt 0.075171 0.874016\nvt 0.126017 0.656857\nvt 0.072739 1.039977\nvt 0.032381 0.873469\nvt -0.597826 0.917318\nvt -0.662468 0.845911\nvt -0.598401 0.845154\nvt -0.662541 0.917579\nvt -0.985722 0.918945\nvt -0.893714 0.845090\nvt -0.894284 0.918266\nvt -0.985788 0.844357\nvt -1.716029 -2.102358\nvt -1.806582 -2.182442\nvt -1.714845 -2.183447\nvt -1.806765 -2.103459\nvt -1.880520 -2.181962\nvt -1.880602 -2.103744\nvt -2.765764 -2.110532\nvt -2.822605 -2.189329\nvt -2.765130 -2.190436\nvt -2.823271 -2.110502\nvt -2.918243 -2.190993\nvt -2.918240 -2.111865\nvt -3.536874 -2.190869\nvt -3.465752 -2.120602\nvt -3.495525 -2.058426\nvt -3.463906 -2.196173\nvt -3.538520 -2.313006\nvt -2.918243 -2.323226\nvt -2.918417 -2.370921\nvt -2.822145 -2.322577\nvt -2.822192 -2.370628\nvt -2.822959 -2.471103\nvt -2.764565 -2.370318\nvt -2.750458 -2.370318\nvt -1.939309 -2.395608\nvt -1.877046 -2.395688\nvt -1.807485 -2.395655\nvt -1.807901 -2.478847\nvt -1.716787 -2.395336\nvt -0.985987 0.584529\nvt -0.894451 0.485538\nvt -0.798624 0.485591\nvt -0.838584 0.485635\nvt -0.758471 0.485690\nvt -0.662559 0.485593\nvt -0.599277 0.584372\nvt -0.662457 0.584493\nvt -0.662487 0.670205\nvt -0.985998 0.669865\nvt -0.894633 0.584521\nvt -0.893977 0.670285\nvt -1.716025 -2.318019\nvt -1.807394 -2.316793\nvt -1.880493 -2.316884\nvt -1.906354 -2.316884\nvt -2.764757 -2.323550\nvt -0.599140 0.670316\nvt -0.521182 0.670859\nvt 0.032427 0.656844\nvt 0.075171 0.656840\nvt -0.798756 0.584446\nvt -4.093900 -2.313006\nvt -4.055399 -2.102313\nvt -2.926784 -3.253634\nvt -2.841585 -3.111105\nvt -2.926708 -3.111092\nvt -2.840952 -3.253630\nvt -2.926258 -3.345643\nvt -2.839895 -3.345575\nvt -2.697269 -3.344884\nvt -2.698181 -3.422131\nvt -2.926218 -3.422106\nvt -2.839376 -3.422110\nvt -3.463975 -3.311602\nvt -3.492539 -3.388641\nvt -3.418042 -3.388635\nvt -3.624413 -3.311410\nvt -3.671927 -3.388674\nvt -3.624039 -3.388667\nvt -3.672107 -3.311403\nvt -3.624759 -3.250973\nvt -3.671281 -3.250973\nvt -3.624709 -3.112139\nvt -3.671158 -3.112139\nvt -3.838899 -3.246660\nvt -3.839382 -3.113582\nvt -3.907263 -3.246702\nvt -3.907331 -3.113591\nvt -0.565051 -0.175445\nvt -0.565168 -0.033588\nvt -0.613492 -0.175570\nvt -0.613527 -0.031376\nvt -0.672709 -0.175117\nvt -0.672698 -0.036608\nvt 0.727591 0.875655\nvt 0.661723 0.998578\nvt 0.662061 0.874251\nvt 0.613155 0.873857\nvt 0.927468 0.976621\nvt 0.862235 0.975182\nvt 0.863362 0.829828\nvt 0.861898 0.829376\nvt 0.861918 0.977887\nvt 0.813027 0.905266\nvt 0.813233 0.656782\nvt 0.861798 0.656816\nvt 0.813562 0.514422\nvt 0.862091 0.514374\nvt 0.837776 0.370860\nvt 0.927521 0.829766\nvt 0.868961 0.656814\nvt 0.927776 0.656804\nvt 0.927821 0.514458\nvt 0.895345 0.371297\nvt 0.613370 0.656782\nvt 0.403343 0.656890\nvt 0.358033 0.875580\nvt 0.358048 0.656893\nvt 0.309579 0.656861\nvt 0.264533 0.656761\nvt 0.309502 0.488501\nvt 0.328185 0.488493\nvt 0.309481 0.363717\nvt 0.333735 0.363799\nvt 0.309548 0.252957\nvt 0.338047 0.253049\nvt 0.329826 0.215257\nvt 0.357988 0.363881\nvt 0.357965 0.253114\nvt 0.357890 0.163079\nvt 0.403385 0.253506\nvt 0.403332 0.364132\nvt 0.403296 0.488656\nvt 0.358116 0.488479\nvt 0.468596 0.656623\nvt 0.457636 0.488298\nvt 0.487178 0.488494\nvt 0.462959 0.363336\nvt 0.497961 0.363699\nvt 0.472092 0.255098\nvt 0.496695 0.254436\nvt 0.493034 0.163585\nvt 0.662228 0.514374\nvt 0.613698 0.514422\nvt 0.612965 0.370366\nvt 0.661934 0.656816\nvt 0.727912 0.656804\nvt -0.741699 -0.296138\nvt -0.785542 -0.174766\nvt -0.816000 -0.294754\nvt -0.613743 -0.298103\nvt -0.672714 -0.296138\nvt -0.564477 -0.298785\nvt -3.907363 -3.325044\nvt -3.835677 -3.325044\nvt -3.907895 -3.390561\nvt -0.564243 -0.416260\nvt -0.614130 -0.416281\nvt -0.672742 -0.416259\nvt -0.741483 -0.416259\nvt -0.815910 -0.416253\nvt 0.727957 0.514458\nvt 0.662859 0.371354\nvt 0.612370 0.247015\nvt 0.662454 0.244769\nvt 0.662578 0.138516\nvt 0.703243 0.244971\nvt 0.728104 0.371239\nvt -0.815828 -0.578365\nvt -0.741408 -0.577067\nvt -0.742200 -0.707268\nvt -0.815797 -0.707101\nvt -0.781450 -0.789689\nvt -0.614066 -0.576176\nvt -0.672751 -0.577067\nvt -0.672735 -0.707553\nvt -0.564518 -0.576307\nvt -0.613604 -0.707762\nvt -0.613559 -0.791839\nvt -0.565747 -0.707655\nvt -3.832266 -3.475622\nvt -3.907224 -3.475635\nvt -3.907204 -3.548275\nvt -3.832543 -3.390537\nvt -3.672326 -3.454194\nvt -3.624432 -3.454203\nvt -3.630742 -3.539108\nvt -3.672330 -3.539127\nvt -3.633579 -3.611844\nvt -3.672732 -3.612065\nvt -3.638585 -3.657456\nvt -3.561716 -3.454206\nvt -3.563216 -3.539107\nvt -3.624531 -3.539105\nvt -3.594719 -3.611826\nvt -3.490777 -3.454181\nvt -3.417544 -3.454184\nvt -3.417256 -3.612376\nvt -3.489571 -3.612315\nvt -3.436989 -3.689782\nvt -2.926041 -3.487667\nvt -2.838801 -3.487672\nvt -2.697935 -3.487677\nvt -2.697794 -3.572492\nvt -2.617314 -3.572476\nvt -2.500346 -3.645377\nvt -2.617286 -3.645111\nvt -2.683146 -3.645270\nvt -2.616838 -3.725870\nvt -2.925820 -3.572566\nvt -2.838969 -3.572620\nvt -2.925758 -3.645709\nvt -2.839508 -3.645886\nvt -2.893258 -3.724310\nvt -3.834711 -3.548249\nvt -3.877101 -3.626742\nvt -1.864221 -3.646149\nvt -1.825755 -3.646324\nvt -1.774616 -3.646322\nvt -1.825697 -3.724392\nvn 0.724570 0.582202 -0.368755\nvn 0.568316 0.635517 -0.522568\nvn 0.480544 0.851558 -0.209449\nvn 0.734977 0.417554 -0.534227\nvn 0.851619 0.373516 -0.367718\nvn 0.949339 0.307871 -0.062716\nvn 0.790155 0.611713 -0.037355\nvn 0.555406 0.831050 0.029054\nvn 0.032105 0.997131 0.068239\nvn -0.021851 0.999451 0.024232\nvn 0.340312 0.863308 -0.372631\nvn 0.442640 0.668325 -0.597797\nvn 0.494736 0.445143 -0.746361\nvn 0.722739 0.403851 -0.560778\nvn 0.731681 0.305307 -0.609424\nvn 0.891964 0.324656 -0.314585\nvn 0.978576 0.195776 -0.063326\nvn 0.942717 0.280526 0.180425\nvn 0.803339 0.545457 0.238899\nvn 0.494736 0.851741 0.172430\nvn 0.093387 0.984283 0.149785\nvn 0.102329 0.987426 0.120334\nvn 0.032716 0.965697 0.257515\nvn 0.197424 0.979919 -0.027314\nvn 0.295236 0.845943 -0.444014\nvn 0.384838 0.659780 -0.645375\nvn 0.476821 0.392529 -0.786462\nvn 0.486953 0.232185 -0.841975\nvn 0.675558 0.308878 -0.669454\nvn 0.932096 0.305673 -0.194250\nvn 0.670003 0.506455 -0.542711\nvn 0.259896 0.455061 -0.851650\nvn 0.621265 0.617664 -0.482131\nvn 0.577441 0.262886 -0.772912\nvn 0.628101 0.356975 -0.691366\nvn 0.657033 0.454848 -0.601123\nvn 0.583239 0.605853 -0.541032\nvn 0.157140 0.294565 -0.942595\nvn 0.488815 0.411908 -0.768975\nvn 0.041383 0.397015 -0.916868\nvn 0.044404 0.487381 -0.872036\nvn -0.365490 0.256508 -0.894742\nvn -0.122135 0.263558 -0.956847\nvn -0.063662 0.424268 -0.903287\nvn 0.024689 0.681967 -0.730949\nvn 0.111454 0.874966 -0.471114\nvn -0.113010 0.697684 -0.707389\nvn -0.191473 0.463515 -0.865139\nvn -0.208441 0.396466 -0.894040\nvn -0.296121 0.211585 -0.931394\nvn 0.212043 0.419843 -0.882443\nvn -0.269356 0.366771 -0.890439\nvn -0.282785 0.528123 -0.800653\nvn -0.659413 0.107364 -0.744041\nvn -0.452986 0.141148 -0.880245\nvn -0.527635 0.348704 -0.774590\nvn -0.282723 0.648793 -0.706473\nvn -0.103854 0.862606 -0.495071\nvn -0.366558 0.629994 -0.684622\nvn -0.369945 0.352733 -0.859462\nvn -0.333110 0.258461 -0.906735\nvn -0.432356 0.214301 -0.875851\nvn -0.479904 0.280923 -0.831111\nvn -0.469680 0.429212 -0.771447\nvn -0.676077 0.169530 -0.717032\nvn -0.582995 0.321818 -0.745994\nvn -0.350993 0.499283 -0.792138\nvn -0.663015 0.397565 -0.634266\nvn -0.869655 0.038026 -0.492141\nvn -0.954192 0.015900 -0.298746\nvn -0.825037 0.295328 -0.481704\nvn -0.840144 0.301614 -0.450697\nvn -0.739464 0.556413 -0.378887\nvn -0.733573 0.542894 -0.408765\nvn -0.870510 0.398083 -0.289346\nvn -0.777398 0.439406 -0.450026\nvn -0.858730 0.449416 -0.246101\nvn -0.783898 0.590289 -0.192450\nvn -0.818079 0.315317 -0.480911\nvn -0.904508 0.419324 0.077364\nvn -0.903256 0.427503 0.036256\nvn -0.879788 0.471816 0.057619\nvn -0.692587 0.542863 -0.474929\nvn -0.783898 0.250710 -0.567949\nvn -0.813837 0.107303 -0.571062\nvn -0.937773 0.114963 -0.327616\nvn -0.945555 0.017609 -0.324900\nvn -0.964232 0.044649 -0.261208\nvn -0.928922 -0.070284 -0.363475\nvn -0.979034 0.136387 -0.151189\nvn -0.979583 0.121799 -0.159795\nvn -0.942808 0.320597 0.091128\nvn -0.981414 0.189032 -0.032319\nvn -0.942595 0.101047 -0.318186\nvn -0.833216 0.272378 -0.481124\nvn -0.922269 0.183325 -0.340251\nvn -0.927396 -0.007599 -0.373913\nvn -0.976318 0.090701 -0.196356\nvn -0.978545 0.180548 -0.098941\nvn -0.982482 0.161748 -0.092410\nvn -0.766137 0.541276 -0.346385\nvn -0.873531 0.187262 -0.449263\nvn -0.795709 0.021912 -0.605243\nvn -0.971587 0.166845 -0.167791\nvn -0.970489 0.154393 -0.185064\nvn -0.970641 0.131230 -0.201514\nvn -0.972594 0.120304 -0.198859\nvn -0.933958 0.203925 -0.293405\nvn -0.943876 0.028382 -0.328990\nvn -0.846492 -0.176000 -0.502396\nvn -0.987365 0.061068 -0.146153\nvn -0.960784 0.272561 -0.050569\nvn -0.960784 0.268258 -0.070162\nvn -0.996307 0.080447 -0.029267\nvn -0.995575 -0.042787 -0.083407\nvn -0.963439 0.105075 0.246376\nvn -0.935026 0.242683 0.258400\nvn -0.846583 0.501389 0.178411\nvn -0.855403 0.515885 0.046022\nvn -0.632649 0.730369 0.257424\nvn -0.620624 0.708426 0.336009\nvn -0.826563 0.469497 0.310404\nvn -0.942717 0.333384 0.008667\nvn -0.958586 0.284646 0.005524\nvn -0.985961 0.161168 -0.042879\nvn -0.629749 0.624653 0.461684\nvn -0.802820 0.409070 0.433699\nvn -0.844844 0.234901 0.480636\nvn -0.856807 0.066897 0.511246\nvn -0.844508 -0.061525 0.531938\nvn -0.801141 -0.129643 0.584246\nvn -0.795587 -0.082858 0.600116\nvn -0.755028 0.631031 0.178014\nvn -0.889950 0.410718 0.198065\nvn -0.933348 0.277749 0.227363\nvn -0.942351 0.296304 0.155370\nvn -0.962951 0.236793 0.128971\nvn -0.560259 0.670583 0.486190\nvn -0.617542 0.258095 0.742973\nvn -0.950407 0.268777 0.156285\nvn -0.608295 -0.010620 0.793603\nvn -0.753502 -0.113254 0.647603\nvn -0.286935 -0.168523 0.942991\nvn -0.541093 0.229499 0.809015\nvn -0.140416 0.445784 0.884030\nvn 0.057772 0.796869 0.601337\nvn -0.321024 0.847530 0.422590\nvn 0.031037 0.968596 0.246620\nvn 0.178899 0.961272 0.209510\nvn 0.030824 0.979827 0.197394\nvn 0.047975 0.908567 0.414930\nvn 0.149480 0.853511 0.499130\nvn -0.006928 0.966277 0.257332\nvn 0.126865 0.922544 0.364360\nvn 0.016968 0.930692 0.365368\nvn 0.156438 0.925840 0.344005\nvn 0.088687 0.947996 0.305643\nvn 0.303720 0.931150 0.201605\nvn 0.216620 0.967009 0.133854\nvn 0.362041 0.911191 0.196478\nvn 0.472182 0.856471 0.208472\nvn 0.166875 0.979858 -0.109592\nvn 0.027497 0.991943 -0.123600\nvn -0.217414 0.899777 -0.378246\nvn -0.342753 0.696585 -0.630268\nvn -0.422895 0.837153 -0.346873\nvn -0.490524 0.831690 -0.260018\nvn -0.550401 0.824824 -0.129246\nvn -0.700369 0.557421 -0.445784\nvn -0.525681 0.832728 -0.173650\nvn -0.718772 0.604572 -0.343272\nvn -0.867794 0.486618 -0.100497\nvn -0.856777 0.511948 0.061586\nvn -0.578173 0.813990 0.055696\nvn -0.538865 0.836879 -0.095798\nvn -0.265114 0.962798 0.051698\nvn -0.384228 0.923063 0.016724\nvn -0.302927 0.950591 0.067751\nvn -0.192480 0.977050 -0.090915\nvn -0.235633 0.866787 0.439467\nvn -0.292032 0.934080 0.205298\nvn -0.323618 0.921201 0.215857\nvn 0.013825 0.991913 0.126041\nvn 0.443190 0.754112 0.484603\nvn 0.597247 0.741508 0.305643\nvn 0.813715 0.446944 0.371563\nvn 0.658284 0.447005 0.605640\nvn 0.592059 0.405866 0.696219\nvn 0.623554 0.463576 0.629475\nvn 0.344737 0.770135 0.536668\nvn 0.033052 0.968139 0.248115\nvn -0.045015 0.972808 0.227058\nvn -0.022645 0.991882 0.125095\nvn -0.118442 0.928678 0.351421\nvn -0.140721 0.952910 0.268532\nvn -0.225471 0.967711 0.112613\nvn -0.335582 0.941984 0.004028\nvn -0.289438 0.932585 0.215522\nvn -0.267190 0.899503 0.345622\nvn -0.180486 0.811548 0.555681\nvn -0.184271 0.784112 0.592608\nvn -0.105472 0.699210 0.707083\nvn -0.283273 0.941954 0.180029\nvn -0.094150 0.910276 0.403119\nvn -0.001679 0.840632 0.541551\nvn 0.103671 0.686850 0.719321\nvn 0.101840 0.658040 0.746025\nvn 0.179571 0.563585 0.806269\nvn 0.018921 0.766320 0.642140\nvn -0.000671 0.808802 0.588031\nvn -0.339610 0.799341 0.495682\nvn -0.722617 0.569689 0.391461\nvn -0.861232 0.419843 0.286264\nvn -0.943419 0.318827 0.091037\nvn -0.921781 0.292245 0.254677\nvn -0.953887 0.294107 -0.059816\nvn -0.328623 0.297250 0.896451\nvn -0.283639 -0.029420 0.958464\nvn -0.474563 -0.209021 0.855007\nvn -0.011017 -0.011719 0.999847\nvn 0.149449 0.168981 0.974212\nvn 0.322092 0.334300 0.885678\nvn -0.409955 0.628590 0.660878\nvn -0.102420 0.480605 0.870907\nvn -0.102695 0.263009 0.959288\nvn -0.145878 0.100986 0.984100\nvn -0.166540 -0.017335 0.985870\nvn 0.182989 0.518845 0.835017\nvn -0.005982 0.836360 0.548143\nvn 0.389172 0.736930 0.552660\nvn 0.027375 0.746422 0.664876\nvn 0.264901 0.810785 0.521928\nvn 0.359874 0.838374 0.409375\nvn 0.707907 0.478408 0.519578\nvn 0.534135 0.462539 0.707602\nvn 0.229072 0.526017 0.819025\nvn 0.453536 0.378674 0.806757\nvn 0.251595 0.211798 0.944334\nvn -0.207343 0.028993 0.977813\nvn 0.403211 -0.080142 0.911557\nvn 0.281228 -0.309091 0.908475\nvn 0.772485 -0.203009 0.601672\nvn 0.541307 0.114536 0.832972\nvn 0.359386 0.219916 0.906888\nvn 0.313120 0.139927 0.939329\nvn 0.290994 0.136143 0.946959\nvn 0.302042 0.163060 0.939238\nvn 0.677175 0.174047 0.714927\nvn 0.836604 0.045839 0.545854\nvn 0.762810 -0.112644 0.636708\nvn 0.632099 -0.241432 0.736290\nvn 0.663717 -0.002411 0.747948\nvn 0.516434 0.247963 0.819605\nvn 0.707907 0.306223 0.636433\nvn 0.399884 0.190435 0.896542\nvn 0.260567 0.202857 0.943876\nvn 0.269265 0.286233 0.919523\nvn 0.269967 0.296976 0.915891\nvn 0.274117 0.328929 0.903684\nvn 0.634388 0.344188 0.692099\nvn 0.665731 0.372051 0.646779\nvn 0.533128 0.431257 0.727805\nvn 0.516800 0.607318 0.603351\nvn 0.772149 0.350749 0.529801\nvn 0.393017 0.536546 0.746727\nvn 0.313211 0.568438 0.760735\nvn 0.246895 0.688955 0.681448\nvn 0.886227 0.270730 0.375835\nvn 0.935209 0.125675 0.331004\nvn 0.978057 0.208197 -0.007508\nvn 0.823878 0.389080 -0.412030\nvn 0.951048 0.308695 -0.014161\nvn 0.919034 0.067324 0.388318\nvn 0.927824 0.372906 -0.007172\nvn 0.920316 0.217750 0.324839\nvn 0.974059 0.140690 0.177129\nvn 0.961455 0.246956 0.120701\nvn 0.970916 0.237068 0.032960\nvn 0.882748 0.453841 0.121433\nvn 0.257759 0.298715 0.918851\nvn 0.258431 0.306619 0.916044\nvn 0.967559 0.243294 0.067721\nvn 0.872616 0.373791 -0.314310\nvn 0.629231 0.435987 -0.643391\nvn 0.799280 0.524613 -0.293069\ng mesh7.002_mesh7-geometry__01_-_Default1noCulli__01_-_Default1noCulli\nusemtl _01_-_Default1noCulli__01_-_Default1noCulli\ns 1\nf 1933/2232/1956 1934/2233/1957 1935/2234/1958\nf 1934/2233/1957 1933/2232/1956 1936/2235/1959\nf 1936/2236/1959 1933/2237/1956 1937/2238/1960\nf 1937/2238/1960 1933/2239/1956 1938/2240/1961\nf 1933/2239/1956 1939/2241/1962 1938/2240/1961\nf 1939/2241/1962 1933/2239/1956 1935/2242/1958\nf 1939/2241/1962 1935/2242/1958 1940/2243/1963\nf 1940/2243/1963 1935/2242/1958 1941/2244/1964\nf 1935/2242/1958 1942/2245/1965 1941/2244/1964\nf 1935/2234/1958 1943/2246/1966 1942/2247/1965\nf 1934/2233/1957 1943/2246/1966 1935/2234/1958\nf 1934/2233/1957 1944/2248/1967 1943/2246/1966\nf 1934/2233/1957 1945/2249/1968 1944/2248/1967\nf 1934/2233/1957 1946/2250/1969 1945/2249/1968\nf 1946/2250/1969 1934/2233/1957 1936/2235/1959\nf 1946/2250/1969 1936/2235/1959 1947/2251/1970\nf 1947/2252/1970 1936/2236/1959 1937/2238/1960\nf 1937/2238/1960 1948/2253/1971 1947/2252/1970\nf 1948/2253/1971 1937/2238/1960 1949/2254/1972\nf 1937/2238/1960 1938/2240/1961 1949/2254/1972\nf 1949/2255/1972 1938/2256/1961 1950/2257/1973\nf 1938/2256/1961 1951/2258/1974 1950/2257/1973\nf 1938/2256/1961 1939/2259/1962 1951/2258/1974\nf 1939/2259/1962 1940/2260/1963 1951/2258/1974\nf 1940/2260/1963 1952/2261/1975 1951/2258/1974\nf 1952/2261/1975 1940/2260/1963 1941/2262/1964\nf 1952/2261/1975 1941/2262/1964 1953/2263/1976\nf 1941/2262/1964 1954/2264/1977 1953/2263/1976\nf 1941/2262/1964 1955/2265/1978 1954/2264/1977\nf 1941/2244/1964 1942/2245/1965 1955/2266/1978\nf 1942/2247/1965 1956/2267/1979 1955/2268/1978\nf 1943/2246/1966 1956/2267/1979 1942/2247/1965\nf 1943/2246/1966 1957/2269/1980 1956/2267/1979\nf 1944/2248/1967 1957/2269/1980 1943/2246/1966\nf 1944/2270/1967 1958/2271/1981 1957/2272/1980\nf 1958/2271/1981 1944/2270/1967 1945/2273/1968\nf 1958/2271/1981 1945/2273/1968 1959/2274/1982\nf 1959/2274/1982 1945/2273/1968 1960/2275/1983\nf 1945/2249/1968 1961/2276/1984 1960/2277/1983\nf 1946/2250/1969 1961/2276/1984 1945/2249/1968\nf 1961/2276/1984 1946/2250/1969 1947/2251/1970\nf 1962/2278/1985 1961/2276/1984 1947/2251/1970\nf 1963/2279/1986 1961/2276/1984 1962/2278/1985\nf 1961/2276/1984 1963/2279/1986 1964/2280/1987\nf 1963/2279/1986 1965/2281/1988 1964/2280/1987\nf 1965/2281/1988 1963/2279/1986 1962/2278/1985\nf 1961/2276/1984 1964/2280/1987 1960/2277/1983\nf 1959/2274/1982 1960/2275/1983 1966/2282/1989\nf 1966/2282/1989 1960/2275/1983 1967/2283/1990\nf 1968/2284/1991 1966/2282/1989 1967/2283/1990\nf 1969/2285/1992 1968/2284/1991 1967/2283/1990\nf 1959/2286/1982 1966/2287/1989 1970/2288/1993\nf 1970/2288/1993 1966/2287/1989 1971/2289/1994\nf 1970/2288/1993 1971/2289/1994 1972/2290/1995\nf 1972/2290/1995 1971/2289/1994 1973/2291/1996\nf 1974/2292/1997 1972/2290/1995 1973/2291/1996\nf 1970/2288/1993 1972/2290/1995 1974/2292/1997\nf 1970/2288/1993 1974/2292/1997 1975/2293/1998\nf 1976/2294/1999 1970/2288/1993 1975/2293/1998\nf 1976/2294/1999 1959/2286/1982 1970/2288/1993\nf 1977/2295/2000 1959/2286/1982 1976/2294/1999\nf 1977/2295/2000 1958/2296/1981 1959/2286/1982\nf 1958/2296/1981 1977/2295/2000 1978/2297/2001\nf 1977/2295/2000 1979/2298/2002 1978/2297/2001\nf 1977/2295/2000 1980/2299/2003 1979/2298/2002\nf 1977/2295/2000 1976/2294/1999 1980/2299/2003\nf 1976/2294/1999 1975/2293/1998 1980/2299/2003\nf 1980/2300/2003 1975/2301/1998 1981/2302/2004\nf 1981/2302/2004 1975/2301/1998 1982/2303/2005\nf 1982/2303/2005 1975/2301/1998 1983/2304/2006\nf 1982/2303/2005 1983/2304/2006 1984/2305/2007\nf 1984/2305/2007 1983/2304/2006 1985/2306/2008\nf 1985/2306/2008 1986/2307/2009 1984/2305/2007\nf 1982/2303/2005 1984/2305/2007 1986/2307/2009\nf 1982/2303/2005 1986/2307/2009 1987/2308/2010\nf 1988/2309/2011 1982/2303/2005 1987/2308/2010\nf 1981/2302/2004 1982/2303/2005 1988/2309/2011\nf 1989/2310/2012 1981/2302/2004 1988/2309/2011\nf 1989/2310/2012 1980/2300/2003 1981/2302/2004\nf 1989/2310/2012 1979/2311/2002 1980/2300/2003\nf 1979/2311/2002 1989/2310/2012 1990/2312/2013\nf 1990/2312/2013 1989/2310/2012 1991/2313/2014\nf 1989/2310/2012 1988/2309/2011 1991/2313/2014\nf 1991/2314/2014 1988/2315/2011 1992/2316/2015\nf 1992/2316/2015 1988/2315/2011 1987/2317/2010\nf 1992/2316/2015 1987/2317/2010 1993/2318/2016\nf 1993/2318/2016 1987/2317/2010 1994/2319/2017\nf 1987/2317/2010 1995/2320/2018 1994/2319/2017\nf 1995/2320/2018 1996/2321/2019 1994/2319/2017\nf 1992/2316/2015 1993/2322/2016 1997/2323/2020\nf 1997/2323/2020 1993/2322/2016 1998/2324/2021\nf 1993/2322/2016 1999/2325/2022 1998/2324/2021\nf 1999/2325/2022 2000/2326/2023 1998/2324/2021\nf 2000/2326/2023 2001/2327/2024 1998/2324/2021\nf 1998/2324/2021 2001/2327/2024 1997/2323/2020\nf 2001/2327/2024 2002/2328/2025 1997/2323/2020\nf 1997/2323/2020 2002/2328/2025 2003/2329/2026\nf 2002/2328/2025 2004/2330/2027 2003/2329/2026\nf 2003/2329/2026 2004/2330/2027 2005/2331/2028\nf 2004/2330/2027 2006/2332/2029 2005/2331/2028\nf 2006/2333/2029 2004/2334/2027 2007/2335/2030\nf 2007/2335/2030 2004/2334/2027 2008/2336/2031\nf 2008/2336/2031 2009/2337/2032 2007/2335/2030\nf 2010/2338/2033 2009/2337/2032 2008/2336/2031\nf 2007/2339/2030 2011/2340/2034 2006/2341/2029\nf 2007/2339/2030 2012/2342/2035 2011/2340/2034\nf 2013/2343/2036 2012/2342/2035 2007/2339/2030\nf 2013/2343/2036 2014/2344/2037 2012/2342/2035\nf 2011/2345/2034 2015/2346/2038 2006/2347/2029\nf 2015/2346/2038 2011/2345/2034 2016/2348/2039\nf 2016/2348/2039 2011/2345/2034 2017/2349/2040\nf 2016/2348/2039 2017/2349/2040 2018/2350/2041\nf 2017/2349/2040 2019/2351/2042 2018/2350/2041\nf 2018/2350/2041 2019/2351/2042 2020/2352/2043\nf 2019/2351/2042 2021/2353/2044 2020/2352/2043\nf 2020/2352/2043 2021/2353/2044 2022/2354/2045\nf 2021/2353/2044 2023/2355/2046 2022/2354/2045\nf 2022/2354/2045 2023/2355/2046 2024/2356/2047\nf 2025/2357/2048 2022/2354/2045 2024/2356/2047\nf 2020/2352/2043 2022/2354/2045 2025/2357/2048\nf 2026/2358/2049 2020/2352/2043 2025/2357/2048\nf 2018/2350/2041 2020/2352/2043 2026/2358/2049\nf 2016/2348/2039 2018/2350/2041 2026/2358/2049\nf 2016/2348/2039 2026/2358/2049 2027/2359/2050\nf 2027/2359/2050 2026/2360/2049 2028/2361/2051\nf 2026/2360/2049 2029/2362/2052 2028/2361/2051\nf 2026/2360/2049 2030/2363/2053 2029/2362/2052\nf 2026/2360/2049 2031/2364/2054 2030/2363/2053\nf 2031/2364/2054 2032/2365/2055 2030/2363/2053\nf 2027/2359/2050 2028/2361/2051 2033/2366/2056\nf 2028/2367/2051 2034/2368/2057 2033/2369/2056\nf 2028/2367/2051 2035/2370/2058 2034/2368/2057\nf 2028/2367/2051 2036/2371/2059 2035/2370/2058\nf 2036/2371/2059 2037/2372/2060 2035/2370/2058\nf 2036/2371/2059 2038/2373/2061 2037/2372/2060\nf 2038/2373/2061 2039/2374/2062 2037/2372/2060\nf 2034/2375/2057 2035/2376/2058 2040/2377/2063\nf 2040/2377/2063 2035/2376/2058 2041/2378/2064\nf 2041/2378/2064 2035/2376/2058 2042/2379/2065\nf 2041/2378/2064 2042/2379/2065 2043/2380/2066\nf 2041/2378/2064 2043/2380/2066 2044/2381/2067\nf 2044/2382/2067 2043/2383/2066 2045/2384/2068\nf 2043/2383/2066 2046/2385/2069 2045/2384/2068\nf 2043/2383/2066 2047/2386/2070 2046/2385/2069\nf 2046/2385/2069 2047/2386/2070 2048/2387/2071\nf 2046/2385/2069 2048/2387/2071 2049/2388/2072\nf 2045/2384/2068 2046/2385/2069 2049/2388/2072\nf 2045/2384/2068 2049/2388/2072 2050/2389/2073\nf 2045/2384/2068 2050/2389/2073 2051/2390/2074\nf 2051/2390/2074 2050/2389/2073 2052/2391/2075\nf 2050/2392/2073 2053/2393/2076 2052/2394/2075\nf 2050/2392/2073 2054/2395/2077 2053/2393/2076\nf 2055/2396/2078 2054/2395/2077 2050/2392/2073\nf 2055/2396/2078 2056/2397/2079 2054/2395/2077\nf 2055/2396/2078 2057/2398/2080 2056/2397/2079\nf 2054/2395/2077 2058/2399/2081 2053/2393/2076\nf 2054/2395/2077 2059/2400/2082 2058/2399/2081\nf 2060/2401/2083 2059/2400/2082 2054/2395/2077\nf 2060/2401/2083 2061/2402/2084 2059/2400/2082\nf 2062/2403/2085 2061/2402/2084 2060/2401/2083\nf 2062/2403/2085 2063/2404/2086 2061/2402/2084\nf 2064/2405/2087 2063/2404/2086 2062/2403/2085\nf 2059/2406/2082 2065/2407/2088 2058/2408/2081\nf 2059/2406/2082 2066/2409/2089 2065/2407/2088\nf 2067/2410/2090 2066/2409/2089 2059/2406/2082\nf 2067/2410/2090 2068/2411/2091 2066/2409/2089\nf 2069/2412/2092 2068/2411/2091 2067/2410/2090\nf 2065/2407/2088 2066/2409/2089 2070/2413/2093\nf 2066/2409/2089 2071/2414/2094 2070/2413/2093\nf 2072/2411/2095 2071/2414/2094 2066/2409/2089\nf 2072/2411/2095 2073/2415/2096 2071/2414/2094\nf 2074/2416/2097 2073/2415/2096 2072/2411/2095\nf 2073/2415/2096 2074/2416/2097 2075/2417/2098\nf 2076/2418/2099 2073/2415/2096 2075/2417/2098\nf 2071/2414/2094 2073/2415/2096 2076/2418/2099\nf 2077/2419/2100 2071/2414/2094 2076/2418/2099\nf 2070/2413/2093 2071/2414/2094 2077/2419/2100\nf 2078/2420/2101 2070/2413/2093 2077/2419/2100\nf 2078/2420/2101 2079/2421/2102 2070/2413/2093\nf 2080/2422/2103 2079/2421/2102 2078/2420/2101\nf 2080/2423/2103 2081/2424/2104 2079/2425/2102\nf 2082/2426/2105 2081/2424/2104 2080/2423/2103\nf 2082/2426/2105 2083/2427/2106 2081/2424/2104\nf 2082/2428/2105 2084/2429/2107 2083/2430/2106\nf 2085/2431/2108 2084/2429/2107 2082/2428/2105\nf 2086/2432/2109 2084/2433/2107 2085/2434/2108\nf 2086/2432/2109 2087/2435/2110 2084/2433/2107\nf 2086/2436/2109 2088/2437/2111 2087/2438/2110\nf 2089/2439/2112 2088/2437/2111 2086/2436/2109\nf 2089/2439/2112 2090/2440/2113 2088/2437/2111\nf 2091/2441/2114 2090/2440/2113 2089/2439/2112\nf 2091/2442/2114 2092/2443/2115 2090/2444/2113\nf 1954/2445/1977 2092/2443/2115 2091/2442/2114\nf 1954/2445/1977 2093/2446/2116 2092/2443/2115\nf 1955/2447/1978 2093/2446/2116 1954/2445/1977\nf 1956/2448/1979 2093/2449/2116 1955/2450/1978\nf 1956/2448/1979 2094/2451/2117 2093/2449/2116\nf 1978/2452/2001 2094/2451/2117 1956/2448/1979\nf 1978/2452/2001 1990/2312/2013 2094/2451/2117\nf 1978/2452/2001 1979/2311/2002 1990/2312/2013\nf 2094/2453/2117 1990/2454/2013 2095/2455/2118\nf 1990/2454/2013 2096/2456/2119 2095/2455/2118\nf 1990/2454/2013 2097/2457/2120 2096/2456/2119\nf 1990/2454/2013 1991/2314/2014 2097/2457/2120\nf 2097/2457/2120 1991/2314/2014 1992/2316/2015\nf 2097/2457/2120 1992/2316/2015 2003/2329/2026\nf 1992/2316/2015 1997/2323/2020 2003/2329/2026\nf 2097/2457/2120 2003/2329/2026 2005/2331/2028\nf 2097/2457/2120 2005/2331/2028 2098/2458/2121\nf 2098/2459/2121 2005/2331/2028 2006/2332/2029\nf 2098/2460/2121 2006/2347/2029 2099/2461/2122\nf 2099/2461/2122 2006/2347/2029 2015/2346/2038\nf 2099/2461/2122 2015/2346/2038 2100/2462/2123\nf 2100/2462/2123 2015/2346/2038 2101/2463/2124\nf 2015/2346/2038 2027/2359/2050 2101/2463/2124\nf 2016/2348/2039 2027/2359/2050 2015/2346/2038\nf 2027/2359/2050 2033/2366/2056 2101/2463/2124\nf 2100/2462/2123 2101/2463/2124 2033/2366/2056\nf 2100/2462/2123 2033/2366/2056 2102/2464/2125\nf 2102/2465/2125 2033/2369/2056 2103/2466/2126\nf 2033/2369/2056 2034/2368/2057 2103/2466/2126\nf 2034/2375/2057 2104/2467/2127 2103/2468/2126\nf 2104/2467/2127 2034/2375/2057 2040/2377/2063\nf 2040/2377/2063 2105/2469/2128 2104/2467/2127\nf 2040/2377/2063 2044/2381/2067 2105/2469/2128\nf 2040/2377/2063 2041/2378/2064 2044/2381/2067\nf 2044/2382/2067 2051/2390/2074 2105/2470/2128\nf 2044/2382/2067 2045/2384/2068 2051/2390/2074\nf 2106/2471/2129 2105/2470/2128 2051/2390/2074\nf 2105/2470/2128 2106/2471/2129 2107/2472/2130\nf 2108/2473/2131 2107/2472/2130 2106/2471/2129\nf 2109/2474/2132 2107/2475/2130 2108/2476/2131\nf 2109/2474/2132 2102/2465/2125 2107/2475/2130\nf 2109/2477/2132 2100/2462/2123 2102/2464/2125\nf 2110/2478/2133 2100/2462/2123 2109/2477/2132\nf 2111/2479/2134 2100/2462/2123 2110/2478/2133\nf 2111/2479/2134 2099/2461/2122 2100/2462/2123\nf 2111/2480/2134 2098/2460/2121 2099/2461/2122\nf 2111/2481/2134 2096/2456/2119 2098/2458/2121\nf 2095/2455/2118 2096/2456/2119 2111/2481/2134\nf 2090/2444/2113 2095/2455/2118 2111/2481/2134\nf 2092/2443/2115 2095/2455/2118 2090/2444/2113\nf 2094/2453/2117 2095/2455/2118 2092/2443/2115\nf 2093/2446/2116 2094/2453/2117 2092/2443/2115\nf 2090/2440/2113 2111/2479/2134 2088/2437/2111\nf 2088/2437/2111 2111/2479/2134 2110/2478/2133\nf 2088/2437/2111 2110/2478/2133 2087/2438/2110\nf 2087/2438/2110 2110/2478/2133 2109/2477/2132\nf 2087/2435/2110 2109/2474/2132 2108/2476/2131\nf 2087/2435/2110 2108/2476/2131 2084/2433/2107\nf 2084/2429/2107 2108/2473/2131 2112/2482/2135\nf 2108/2473/2131 2106/2471/2129 2112/2482/2135\nf 2112/2482/2135 2106/2471/2129 2052/2391/2075\nf 2051/2390/2074 2052/2391/2075 2106/2471/2129\nf 2112/2482/2135 2052/2391/2075 2113/2483/2136\nf 2113/2484/2136 2052/2394/2075 2114/2485/2137\nf 2114/2485/2137 2052/2394/2075 2053/2393/2076\nf 2114/2485/2137 2053/2393/2076 2079/2425/2102\nf 2079/2425/2102 2053/2393/2076 2058/2399/2081\nf 2079/2421/2102 2058/2408/2081 2065/2407/2088\nf 2079/2421/2102 2065/2407/2088 2070/2413/2093\nf 2081/2424/2104 2114/2485/2137 2079/2425/2102\nf 2081/2424/2104 2113/2484/2136 2114/2485/2137\nf 2083/2427/2106 2113/2484/2136 2081/2424/2104\nf 2112/2482/2135 2113/2483/2136 2083/2430/2106\nf 2084/2429/2107 2112/2482/2135 2083/2430/2106\nf 2096/2456/2119 2097/2457/2120 2098/2458/2121\nf 2102/2465/2125 2103/2466/2126 2107/2475/2130\nf 2107/2486/2130 2103/2468/2126 2104/2467/2127\nf 2104/2467/2127 2105/2469/2128 2107/2486/2130\nf 1957/2487/1980 1978/2297/2001 1956/2488/1979\nf 1958/2296/1981 1978/2297/2001 1957/2487/1980\nf 2115/2489/2138 1954/2490/1977 2091/2491/2114\nf 1953/2492/1976 1954/2490/1977 2115/2489/2138\nf 2116/2493/2139 1953/2492/1976 2115/2489/2138\nf 2117/2494/2140 1953/2492/1976 2116/2493/2139\nf 1952/2261/1975 1953/2263/1976 2117/2495/2140\nf 1951/2258/1974 1952/2261/1975 2117/2495/2140\nf 1951/2258/1974 2117/2495/2140 2118/2496/2141\nf 2117/2494/2140 2119/2497/2142 2118/2498/2141\nf 2117/2494/2140 2116/2493/2139 2119/2497/2142\nf 2116/2499/2139 2120/2500/2143 2119/2501/2142\nf 2116/2502/2139 2121/2503/2144 2120/2504/2143\nf 2116/2502/2139 2122/2505/2145 2121/2503/2144\nf 2116/2502/2139 2115/2506/2138 2122/2505/2145\nf 2122/2505/2145 2115/2506/2138 2123/2507/2146\nf 2115/2506/2138 2091/2508/2114 2123/2507/2146\nf 2123/2507/2146 2091/2508/2114 2089/2509/2112\nf 2123/2510/2146 2089/2511/2112 2124/2512/2147\nf 2124/2512/2147 2089/2511/2112 2086/2513/2109\nf 2124/2514/2147 2086/2515/2109 2125/2516/2148\nf 2125/2516/2148 2086/2515/2109 2085/2517/2108\nf 2125/2516/2148 2085/2517/2108 2126/2518/2149\nf 2126/2518/2149 2085/2517/2108 2082/2519/2105\nf 2126/2520/2149 2082/2521/2105 2127/2522/2150\nf 2127/2522/2150 2082/2521/2105 2080/2523/2103\nf 2082/2524/2105 2080/2525/2103 2128/2526/2151\nf 2129/2527/2152 2082/2528/2105 2080/2529/2103\nf 2129/2527/2152 2080/2529/2103 2130/2530/2153\nf 2131/2531/2154 2129/2527/2152 2130/2530/2153\nf 2131/2531/2154 2130/2530/2153 2132/2532/2155\nf 2133/2533/2156 2131/2531/2154 2132/2532/2155\nf 2133/2533/2156 2132/2532/2155 2134/2534/2157\nf 2135/2535/2158 2082/2524/2105 2128/2526/2151\nf 2136/2536/2159 2135/2535/2158 2128/2526/2151\nf 2137/2537/2160 2135/2535/2158 2136/2536/2159\nf 2138/2533/2161 2137/2537/2160 2136/2536/2159\nf 2139/2538/2162 2137/2537/2160 2138/2533/2161\nf 2139/2538/2162 2138/2533/2161 2140/2539/2163\nf 2127/2522/2150 2080/2523/2103 2141/2540/2164\nf 2141/2541/2164 2080/2542/2103 2142/2543/2165\nf 2080/2542/2103 2143/2544/2166 2142/2543/2165\nf 2080/2422/2103 2078/2420/2101 2143/2545/2166\nf 2078/2420/2101 2077/2419/2100 2143/2545/2166\nf 2143/2544/2166 2077/2546/2100 2144/2547/2167\nf 2077/2546/2100 2076/2548/2099 2144/2547/2167\nf 2076/2548/2099 2145/2549/2168 2144/2547/2167\nf 2146/2550/2169 2145/2549/2168 2076/2548/2099\nf 2146/2550/2169 2147/2551/2170 2145/2549/2168\nf 2148/2552/2171 2147/2551/2170 2146/2550/2169\nf 2147/2551/2170 2149/2553/2172 2145/2549/2168\nf 2147/2551/2170 2150/2554/2173 2149/2553/2172\nf 2151/2555/2174 2150/2554/2173 2147/2551/2170\nf 2150/2554/2173 2151/2555/2174 2152/2556/2175\nf 2153/2557/2176 2150/2554/2173 2152/2556/2175\nf 2149/2553/2172 2150/2554/2173 2153/2557/2176\nf 2154/2558/2177 2149/2553/2172 2153/2557/2176\nf 2155/2559/2178 2149/2553/2172 2154/2558/2177\nf 2145/2549/2168 2149/2553/2172 2155/2559/2178\nf 2144/2547/2167 2145/2549/2168 2155/2559/2178\nf 2143/2544/2166 2144/2547/2167 2155/2559/2178\nf 2142/2543/2165 2143/2544/2166 2155/2559/2178\nf 2142/2543/2165 2155/2559/2178 2154/2558/2177\nf 2142/2543/2165 2154/2558/2177 2141/2541/2164\nf 2141/2560/2164 2154/2561/2177 2156/2562/2179\nf 2156/2562/2179 2154/2561/2177 2153/2563/2176\nf 2156/2562/2179 2153/2563/2176 2157/2564/2180\nf 2153/2563/2176 2152/2565/2175 2157/2564/2180\nf 2157/2564/2180 2152/2565/2175 2158/2566/2181\nf 2152/2565/2175 2159/2567/2182 2158/2566/2181\nf 2160/2568/2183 2156/2569/2179 2157/2570/2180\nf 2161/2571/2184 2156/2569/2179 2160/2568/2183\nf 2161/2571/2184 2141/2540/2164 2156/2569/2179\nf 2161/2571/2184 2127/2522/2150 2141/2540/2164\nf 2161/2571/2184 2126/2520/2149 2127/2522/2150\nf 2162/2572/2185 2126/2520/2149 2161/2571/2184\nf 2163/2573/2186 2126/2574/2149 2162/2575/2185\nf 2164/2576/2187 2126/2518/2149 2163/2577/2186\nf 2164/2576/2187 2125/2516/2148 2126/2518/2149\nf 2165/2578/2188 2125/2516/2148 2164/2576/2187\nf 2165/2578/2188 2124/2514/2147 2125/2516/2148\nf 2165/2579/2188 2123/2510/2146 2124/2512/2147\nf 2122/2580/2145 2123/2510/2146 2165/2579/2188\nf 2122/2580/2145 2165/2579/2188 2166/2581/2189\nf 2165/2578/2188 2164/2576/2187 2166/2582/2189\nf 2164/2576/2187 2167/2583/2190 2166/2582/2189\nf 2164/2576/2187 2168/2584/2191 2167/2583/2190\nf 2164/2576/2187 2163/2577/2186 2168/2584/2191\nf 2168/2585/2191 2163/2573/2186 2162/2575/2185\nf 2162/2575/2185 2169/2586/2192 2168/2585/2191\nf 2169/2587/2192 2162/2572/2185 2160/2568/2183\nf 2162/2572/2185 2161/2571/2184 2160/2568/2183\nf 2160/2568/2183 2170/2588/2193 2169/2587/2192\nf 2160/2568/2183 2157/2570/2180 2170/2588/2193\nf 2170/2588/2193 2157/2570/2180 2171/2589/2194\nf 2170/2588/2193 2171/2589/2194 2172/2590/2195\nf 2171/2589/2194 2173/2591/2196 2172/2590/2195\nf 2174/2592/2197 2172/2590/2195 2173/2591/2196\nf 2175/2593/2198 2172/2590/2195 2174/2592/2197\nf 2170/2588/2193 2172/2590/2195 2175/2593/2198\nf 2169/2587/2192 2170/2588/2193 2175/2593/2198\nf 2169/2586/2192 2175/2594/2198 2176/2595/2199\nf 2175/2594/2198 2177/2596/2200 2176/2595/2199\nf 2175/2594/2198 2178/2597/2201 2177/2596/2200\nf 2178/2597/2201 2179/2598/2202 2177/2596/2200\nf 2180/2599/2203 2176/2600/2199 2177/2601/2200\nf 2167/2583/2190 2176/2600/2199 2180/2599/2203\nf 2167/2583/2190 2168/2584/2191 2176/2600/2199\nf 2168/2585/2191 2169/2586/2192 2176/2595/2199\nf 2166/2582/2189 2167/2583/2190 2180/2599/2203\nf 2166/2582/2189 2180/2599/2203 2181/2602/2204\nf 2181/2602/2204 2180/2599/2203 2182/2603/2205\nf 2180/2599/2203 2177/2601/2200 2182/2603/2205\nf 2177/2601/2200 2183/2604/2206 2182/2603/2205\nf 2184/2605/2207 2182/2603/2205 2183/2604/2206\nf 2181/2602/2204 2182/2603/2205 2184/2605/2207\nf 2185/2606/2208 2181/2607/2204 2184/2608/2207\nf 2166/2581/2189 2181/2607/2204 2185/2606/2208\nf 2121/2609/2144 2166/2581/2189 2185/2606/2208\nf 2122/2580/2145 2166/2581/2189 2121/2609/2144\nf 2121/2503/2144 2185/2610/2208 2186/2611/2209\nf 2185/2610/2208 2187/2612/2210 2186/2611/2209\nf 2185/2610/2208 2188/2613/2211 2187/2612/2210\nf 2188/2613/2211 2189/2614/2212 2187/2612/2210\nf 2188/2613/2211 2190/2615/2213 2189/2614/2212\nf 2190/2615/2213 2191/2616/2214 2189/2614/2212\nf 2120/2504/2143 2121/2503/2144 2186/2611/2209\nf 2120/2504/2143 2186/2611/2209 2192/2617/2215\nf 2192/2617/2215 2186/2611/2209 2193/2618/2216\nf 2186/2611/2209 2194/2619/2217 2193/2618/2216\nf 2193/2618/2216 2194/2619/2217 2195/2620/2218\nf 2120/2500/2143 2192/2621/2215 2119/2501/2142\nf 2119/2501/2142 2192/2621/2215 2196/2622/2219\nf 2196/2622/2219 2192/2621/2215 2197/2623/2220\nf 2192/2621/2215 2198/2624/2221 2197/2623/2220\nf 2199/2625/2222 2197/2623/2220 2198/2624/2221\nf 2118/2498/2141 2119/2497/2142 2196/2626/2219\nf 2200/2627/2223 2118/2498/2141 2196/2626/2219\nf 1950/2257/1973 2118/2496/2141 2200/2628/2223\nf 1950/2257/1973 1951/2258/1974 2118/2496/2141\nf 1950/2257/1973 2200/2628/2223 2201/2629/2224\nf 2202/2630/2225 1950/2257/1973 2201/2629/2224\nf 1949/2255/1972 1950/2257/1973 2202/2630/2225\nf 1949/2255/1972 2202/2630/2225 2203/2631/2226\nf 2203/2631/2226 2202/2630/2225 2204/2632/2227\nf 2204/2632/2227 2202/2630/2225 2205/2633/2228\nf 2202/2630/2225 2201/2629/2224 2205/2633/2228\nf 2206/2634/2229 2204/2632/2227 2205/2633/2228\nf 2203/2631/2226 2204/2632/2227 2206/2634/2229\nf 2200/2627/2223 2196/2626/2219 2207/2635/2230\nf 2208/2636/2231 2200/2627/2223 2207/2635/2230\nf 2208/2636/2231 2207/2635/2230 2209/2637/2232\nf 2210/2638/2233 2208/2636/2231 2209/2637/2232\nf 2211/2639/2234 2210/2638/2233 2209/2637/2232\nf 2185/2606/2208 2184/2608/2207 2212/2640/2235\nf 2184/2608/2207 2213/2641/2236 2212/2640/2235\nf 1948/2253/1971 1949/2254/1972 2214/2642/2237\nf 2215/2643/2238 1948/2253/1971 2214/2642/2237\nf 2216/2644/2239 1948/2253/1971 2215/2643/2238\nf 1948/2253/1971 2216/2644/2239 1947/2252/1970\nf 2217/2645/2240 2216/2644/2239 2215/2643/2238\nf 2217/2645/2240 2215/2643/2238 2214/2642/2237\no mesh8.002_mesh8-geometry\nv 8.954842 170.863342 -5.666499\nv 8.181046 173.641891 -4.815341\nv 9.370777 170.916214 -4.424400\nv 6.877951 173.476379 -5.909607\nv 7.837963 170.614349 -6.251672\nv 9.669710 168.807068 -6.789335\nv 9.872521 168.855042 -5.848143\nv 10.129843 167.343231 -7.881916\nv 8.920670 168.595612 -7.090837\nv 5.883221 177.578720 -4.266107\nv 9.225629 173.678970 -3.434134\nv 8.076360 177.181534 -2.327628\nv 10.144288 173.718491 -2.298999\nv 9.554225 176.868454 0.552738\nv 10.737745 173.304337 0.204279\nv 9.304937 176.828171 2.820214\nv 10.388980 173.149399 2.714012\nv 9.703493 173.154663 4.352629\nv 8.771960 173.417419 5.952346\nv 7.696657 177.306870 5.523823\nv 7.801187 173.577011 6.550474\nv 5.485177 174.315262 8.773406\nv 5.471434 177.968430 7.717664\nv 4.814170 171.546066 9.352816\nv 6.083731 169.949539 8.104106\nv 5.301187 168.590332 9.439359\nv 4.561038 169.106522 9.714550\nv 3.626033 166.299896 10.341051\nv 6.069249 168.682129 8.662709\nv 5.211421 166.426483 9.108024\nv 4.696611 166.767761 9.696289\nv 3.756783 164.717606 10.087630\nv 7.715466 170.460587 6.562573\nv 8.674432 170.410263 5.407427\nv 10.669754 171.062607 2.912311\nv 10.841431 168.590790 2.545670\nv 10.160682 168.603485 3.935877\nv 11.843439 166.266891 2.680949\nv 10.867573 170.663925 -0.306959\nv 11.173637 170.155014 1.162896\nv 11.758604 168.782211 -0.462563\nv 11.786506 168.548431 0.551609\nv 12.893523 167.260620 -0.767615\nv 10.537197 171.275726 -2.322043\nv 10.043166 171.011719 -3.585562\nv 11.455971 169.158401 -3.159552\nv 10.529687 170.308823 -1.094209\nv 11.648591 169.175018 -2.298416\nv 12.983411 167.678055 -3.603760\nv 11.335406 168.919296 -3.774682\nv 5.633813 173.641464 -7.076691\nv 4.042210 173.718445 -7.752871\nv 4.287736 171.005432 -8.466344\nv 5.746992 170.884003 -8.453108\nv 6.592042 170.605331 -7.507113\nv 6.616467 168.889359 -9.599125\nv 5.698420 168.948059 -9.534078\nv 7.496499 166.760635 -9.938947\nv 7.093239 168.666168 -8.942430\nv 2.728867 171.346558 -8.839230\nv 2.589295 169.792160 -9.886319\nv 3.563942 169.518280 -9.548856\nv 2.473308 168.391449 -11.656853\nv 1.870944 169.754929 -9.576420\nv 1.255827 171.423050 -8.728148\nv 0.239056 173.467224 -7.930739\nv 2.421983 173.765366 -7.989254\nv 3.402936 177.260666 -5.853776\nv 0.659464 176.978928 -6.735578\nv -1.836610 176.996185 -5.882995\nv -2.062373 173.337234 -7.011421\nv 0.682130 170.817474 -8.263987\nv -1.269270 170.395599 -7.795252\nv 0.605475 168.950394 -9.174812\nv -0.541910 168.756241 -8.763513\nv 0.433137 167.448578 -10.500100\nv -3.485785 173.353638 -5.948710\nv -2.142155 171.251266 -7.161013\nv -4.279790 170.649826 -5.307121\nv -2.311113 168.806259 -7.481991\nv -3.302464 168.796082 -6.730677\nv -2.798763 166.487854 -8.754314\nv -4.806963 173.622314 -4.653089\nv -4.037190 177.483841 -3.641641\nv -5.298401 173.774643 -3.680869\nv -5.442376 170.582764 -3.314993\nv -6.503075 170.284088 -2.138649\nv -7.315010 171.537903 0.314451\nv -7.390373 168.822876 0.117568\nv -6.909474 168.415344 -1.173426\nv -7.170786 166.654358 0.027666\nv -7.445217 166.992004 0.803531\nv -7.704632 164.931549 1.725894\nv -7.755823 169.219986 0.828507\nv -8.070772 166.517410 1.795607\nv -6.729930 174.499527 -0.767653\nv -5.592623 178.135269 -0.925068\nvt 0.311778 1.652145\nvt 0.329319 1.854833\nvt 0.273740 1.652145\nvt 0.369634 1.857437\nvt 0.358740 1.652145\nvt 0.306922 1.573046\nvt 0.281926 1.573046\nvt 0.306328 1.464314\nvt 0.343581 1.573046\nvt 0.369634 1.991401\nvt 0.249463 1.857437\nvt 0.250380 1.991401\nvt 0.216405 1.854833\nvt 0.158061 1.991401\nvt 0.159190 1.857437\nvt -1.841979 1.792754\nvt -1.841546 1.939466\nvt -1.793711 1.945786\nvt -1.798155 1.789424\nvt -1.779115 1.790876\nvt -1.729275 1.785188\nvt -1.718254 1.945072\nvt -1.282158 1.945270\nvt -1.238243 1.793618\nvt -1.298809 1.793618\nvt -1.254722 1.945270\nvt -1.190301 1.790699\nvt -1.243585 1.793618\nvt -1.189316 1.945270\nvt -1.190823 1.563427\nvt -1.242682 1.563427\nvt -1.238539 1.453802\nvt -1.200377 1.453802\nvt -1.218924 1.332491\nvt -1.216752 1.563427\nvt -1.231899 1.412734\nvt -1.207105 1.409792\nvt -1.177372 1.557716\nvt -1.266940 1.559144\nvt -1.356508 1.560572\nvt -1.730170 1.557839\nvt -1.803244 1.567549\nvt -1.799589 1.465222\nvt -1.730582 1.462308\nvt -1.755968 1.336911\nvt -1.842003 1.568141\nvt -1.835422 1.465453\nvt -1.816051 1.348477\nvt 0.205707 1.652145\nvt 0.244376 1.652145\nvt 0.209917 1.570736\nvt 0.158468 1.652145\nvt 0.159719 1.569658\nvt 0.213241 1.464351\nvt 0.245348 1.570736\nvt 0.198508 1.860206\nvt 0.152353 1.991529\nvt 0.152353 1.860206\nvt 0.266685 1.860206\nvt 0.248248 1.654914\nvt 0.210209 1.654914\nvt 0.163247 1.654914\nvt 0.215065 1.575815\nvt 0.240061 1.575815\nvt 0.215659 1.464324\nvt 0.178406 1.575815\nvt 0.268852 1.657518\nvt 0.304601 1.654914\nvt 0.312070 1.573505\nvt 0.276640 1.573505\nvt 0.308747 1.464360\nvt 0.362268 1.572427\nvt 0.363519 1.654914\nvt 0.362798 1.860206\nvt 0.293904 1.860206\nvt 0.265768 1.991529\nvt 0.363927 1.991529\nvt -1.250870 1.558888\nvt -1.208300 1.563427\nvt -1.210941 1.453802\nvn 0.698294 0.419996 -0.579577\nvn 0.709250 0.384106 -0.591083\nvn 0.847468 0.341563 -0.406323\nvn 0.607166 0.349834 -0.713370\nvn 0.308695 0.420576 -0.853084\nvn 0.537004 0.554369 -0.635792\nvn 0.872127 0.424909 -0.242500\nvn 0.574969 0.597705 -0.558672\nvn 0.174932 0.547227 -0.818476\nvn 0.560076 0.462935 -0.687002\nvn 0.750511 0.333934 -0.570238\nvn 0.722800 0.439100 -0.533555\nvn 0.861965 0.310556 -0.400647\nvn 0.915006 0.377361 -0.142491\nvn 0.984466 0.175390 -0.001465\nvn 0.907743 0.282296 0.310251\nvn 0.959288 0.205664 0.193457\nvn 0.873928 0.103977 0.474746\nvn 0.758354 0.091922 0.645314\nvn 0.713370 0.234046 0.660512\nvn 0.647420 0.064547 0.759392\nvn 0.710013 0.129154 0.692221\nvn 0.717368 0.195898 0.668538\nvn 0.653310 0.052705 0.755211\nvn 0.713126 0.103488 0.693319\nvn 0.628834 0.058260 0.775323\nvn 0.397931 0.083499 0.913602\nvn 0.392407 0.073916 0.916807\nvn 0.703696 0.082522 0.705679\nvn 0.701437 -0.150304 0.696646\nvn 0.695853 -0.157933 0.700583\nvn 0.686117 -0.179968 0.704856\nvn 0.664174 -0.056276 0.745415\nvn 0.821467 0.000305 0.570208\nvn 0.838466 0.021058 0.544511\nvn 0.838923 0.240211 0.488296\nvn 0.835597 0.370251 0.405774\nvn 0.831355 0.381939 0.403607\nvn 0.966887 0.255165 0.001831\nvn 0.933744 0.356853 -0.027161\nvn 0.890347 0.453322 0.041932\nvn 0.882107 0.463729 0.082614\nvn 0.807154 0.579699 0.111423\nvn 0.938749 0.233985 -0.252876\nvn 0.812128 0.435347 -0.388409\nvn 0.757286 0.617237 -0.213263\nvn 0.927427 0.373363 0.020173\nvn 0.639943 0.752037 -0.157659\nvn 0.625263 0.728843 -0.278909\nvn 0.687399 0.621204 -0.376202\nvn 0.436262 0.417463 -0.797082\nvn 0.292795 0.402631 -0.867244\nvn 0.247963 0.404401 -0.880306\nvn 0.394757 0.471145 -0.788751\nvn 0.751122 0.443464 -0.488998\nvn 0.499161 0.476516 -0.723685\nvn -0.014863 0.375011 -0.926878\nvn 0.434828 0.314463 -0.843806\nvn 0.788934 0.448012 -0.420484\nvn 0.097385 0.399243 -0.911649\nvn 0.070009 0.584002 -0.808710\nvn 0.407208 0.565752 -0.716971\nvn 0.058748 0.780999 -0.621723\nvn -0.354564 0.550523 -0.755730\nvn -0.162633 0.408307 -0.898221\nvn -0.209418 0.284494 -0.935514\nvn 0.075625 0.392926 -0.916440\nvn 0.267037 0.481796 -0.834590\nvn -0.049135 0.386242 -0.921079\nvn -0.511673 0.308145 -0.801965\nvn -0.442274 0.179327 -0.878750\nvn -0.316752 0.224128 -0.921628\nvn -0.312876 0.320688 -0.893979\nvn -0.343425 0.477737 -0.808557\nvn -0.365856 0.501572 -0.783898\nvn -0.352733 0.641560 -0.681143\nvn -0.637440 0.141850 -0.757317\nvn -0.642872 0.078921 -0.761864\nvn -0.704611 0.087008 -0.704184\nvn -0.601550 0.308115 -0.736991\nvn -0.559191 0.387982 -0.732597\nvn -0.529344 0.491012 -0.691824\nvn -0.780511 0.150792 -0.606647\nvn -0.787988 0.282479 -0.547014\nvn -0.864071 0.115726 -0.489853\nvn -0.836451 -0.032655 -0.547014\nvn -0.895321 0.044374 -0.443190\nvn -0.908750 0.068392 -0.411634\nvn -0.927396 -0.014435 -0.373699\nvn -0.939787 -0.030915 -0.340312\nvn -0.946532 -0.063814 -0.316172\nvn -0.948576 -0.054750 -0.311686\nvn -0.945891 -0.025666 -0.323374\nvn -0.888363 0.004334 -0.459090\nvn -0.899411 -0.050508 -0.434095\nvn -0.854946 0.179876 -0.486496\nvn -0.818659 0.233345 -0.524705\ng mesh8.002_mesh8-geometry__01_-_Default1noCulli__01_-_Default1noCulli\nusemtl _01_-_Default1noCulli__01_-_Default1noCulli\ns 1\nf 2218/2646/2241 2219/2647/2242 2220/2648/2243\nf 2219/2647/2242 2218/2646/2241 2221/2649/2244\nf 2221/2649/2244 2218/2646/2241 2222/2650/2245\nf 2218/2646/2241 2223/2651/2246 2222/2650/2245\nf 2223/2651/2246 2218/2646/2241 2224/2652/2247\nf 2224/2652/2247 2218/2646/2241 2220/2648/2243\nf 2225/2653/2248 2223/2651/2246 2224/2652/2247\nf 2223/2651/2246 2225/2653/2248 2226/2654/2249\nf 2222/2650/2245 2223/2651/2246 2226/2654/2249\nf 2227/2655/2250 2219/2647/2242 2221/2649/2244\nf 2219/2647/2242 2227/2655/2250 2228/2656/2251\nf 2227/2655/2250 2229/2657/2252 2228/2656/2251\nf 2228/2656/2251 2229/2657/2252 2230/2658/2253\nf 2229/2657/2252 2231/2659/2254 2230/2658/2253\nf 2230/2658/2253 2231/2659/2254 2232/2660/2255\nf 2232/2661/2255 2231/2662/2254 2233/2663/2256\nf 2232/2661/2255 2233/2663/2256 2234/2664/2257\nf 2234/2664/2257 2233/2663/2256 2235/2665/2258\nf 2233/2663/2256 2236/2666/2259 2235/2665/2258\nf 2233/2663/2256 2237/2667/2260 2236/2666/2259\nf 2237/2668/2260 2238/2669/2261 2236/2670/2259\nf 2237/2671/2260 2239/2672/2262 2238/2673/2261\nf 2237/2671/2260 2240/2674/2263 2239/2672/2262\nf 2239/2672/2262 2241/2675/2264 2238/2673/2261\nf 2238/2673/2261 2241/2675/2264 2242/2676/2265\nf 2242/2676/2265 2241/2675/2264 2243/2677/2266\nf 2241/2675/2264 2244/2678/2267 2243/2677/2266\nf 2244/2678/2267 2245/2679/2268 2243/2677/2266\nf 2242/2680/2265 2243/2678/2266 2246/2677/2269\nf 2246/2677/2269 2243/2678/2266 2247/2681/2270\nf 2247/2681/2270 2243/2678/2266 2248/2682/2271\nf 2248/2682/2271 2249/2679/2272 2247/2681/2270\nf 2238/2669/2261 2242/2683/2265 2250/2684/2273\nf 2238/2669/2261 2250/2684/2273 2236/2670/2259\nf 2251/2685/2274 2236/2670/2259 2250/2684/2273\nf 2235/2665/2258 2236/2666/2259 2251/2686/2274\nf 2252/2687/2275 2235/2665/2258 2251/2686/2274\nf 2234/2664/2257 2235/2665/2258 2252/2687/2275\nf 2253/2688/2276 2252/2687/2275 2251/2686/2274\nf 2253/2688/2276 2251/2686/2274 2254/2689/2277\nf 2253/2688/2276 2254/2689/2277 2255/2690/2278\nf 2256/2691/2279 2232/2661/2255 2234/2664/2257\nf 2256/2691/2279 2234/2664/2257 2257/2687/2280\nf 2258/2692/2281 2256/2691/2279 2257/2687/2280\nf 2258/2692/2281 2257/2687/2280 2259/2688/2282\nf 2260/2693/2283 2258/2692/2281 2259/2688/2282\nf 2261/2694/2284 2230/2658/2253 2232/2660/2255\nf 2228/2656/2251 2230/2658/2253 2261/2694/2284\nf 2262/2695/2285 2228/2656/2251 2261/2694/2284\nf 2262/2695/2285 2261/2694/2284 2263/2696/2286\nf 2263/2696/2286 2261/2694/2284 2264/2697/2287\nf 2261/2694/2284 2232/2660/2255 2264/2697/2287\nf 2265/2698/2288 2263/2696/2286 2264/2697/2287\nf 2266/2699/2289 2263/2696/2286 2265/2698/2288\nf 2266/2699/2289 2267/2700/2290 2263/2696/2286\nf 2267/2700/2290 2262/2695/2285 2263/2696/2286\nf 2219/2647/2242 2228/2656/2251 2220/2648/2243\nf 2268/2701/2291 2227/2702/2250 2221/2703/2244\nf 2227/2702/2250 2268/2701/2291 2269/2704/2292\nf 2269/2704/2292 2268/2701/2291 2270/2705/2293\nf 2268/2701/2291 2271/2706/2294 2270/2705/2293\nf 2271/2706/2294 2268/2701/2291 2221/2703/2244\nf 2271/2706/2294 2221/2703/2244 2272/2707/2295\nf 2273/2708/2296 2271/2706/2294 2272/2707/2295\nf 2271/2706/2294 2273/2708/2296 2274/2709/2297\nf 2274/2709/2297 2273/2708/2296 2275/2710/2298\nf 2275/2710/2298 2273/2708/2296 2276/2711/2299\nf 2273/2708/2296 2272/2707/2295 2276/2711/2299\nf 2270/2705/2293 2271/2706/2294 2274/2709/2297\nf 2269/2704/2292 2270/2712/2293 2277/2713/2300\nf 2277/2713/2300 2270/2712/2293 2278/2714/2301\nf 2270/2712/2293 2279/2715/2302 2278/2714/2301\nf 2279/2715/2302 2280/2716/2303 2278/2714/2301\nf 2278/2714/2301 2280/2716/2303 2281/2717/2304\nf 2282/2718/2305 2278/2714/2301 2281/2717/2304\nf 2282/2718/2305 2277/2713/2300 2278/2714/2301\nf 2283/2719/2306 2277/2713/2300 2282/2718/2305\nf 2284/2720/2307 2277/2713/2300 2283/2719/2306\nf 2284/2720/2307 2269/2704/2292 2277/2713/2300\nf 2285/2721/2308 2269/2704/2292 2284/2720/2307\nf 2227/2702/2250 2269/2704/2292 2285/2721/2308\nf 2285/2721/2308 2284/2720/2307 2286/2722/2309\nf 2286/2722/2309 2284/2720/2307 2283/2719/2306\nf 2287/2663/2310 2286/2662/2309 2283/2661/2306\nf 2287/2663/2310 2283/2661/2306 2288/2664/2311\nf 2283/2661/2306 2289/2691/2312 2288/2664/2311\nf 2288/2664/2311 2289/2691/2312 2290/2687/2313\nf 2289/2691/2312 2291/2692/2314 2290/2687/2313\nf 2290/2687/2313 2291/2692/2314 2292/2688/2315\nf 2291/2692/2314 2293/2693/2316 2292/2688/2315\nf 2287/2663/2310 2288/2664/2311 2294/2665/2317\nf 2294/2665/2317 2288/2664/2311 2295/2687/2318\nf 2294/2665/2317 2295/2687/2318 2296/2686/2319\nf 2295/2687/2318 2297/2688/2320 2296/2686/2319\nf 2296/2686/2319 2297/2688/2320 2298/2689/2321\nf 2297/2688/2320 2299/2690/2322 2298/2689/2321\nf 2300/2666/2323 2294/2665/2317 2296/2686/2319\nf 2287/2663/2310 2294/2665/2317 2300/2666/2323\nf 2301/2667/2324 2287/2663/2310 2300/2666/2323\nf 2300/2670/2323 2302/2669/2325 2301/2668/2324\nf 2300/2670/2323 2303/2723/2326 2302/2669/2325\nf 2296/2685/2319 2303/2723/2326 2300/2670/2323\nf 2302/2669/2325 2303/2723/2326 2304/2683/2327\nf 2302/2673/2325 2304/2676/2327 2305/2724/2328\nf 2304/2676/2327 2306/2677/2329 2305/2724/2328\nf 2304/2680/2327 2307/2677/2330 2306/2678/2329\nf 2307/2677/2330 2308/2681/2331 2306/2678/2329\nf 2308/2681/2331 2309/2682/2332 2306/2678/2329\nf 2308/2681/2331 2310/2679/2333 2309/2682/2332\nf 2306/2677/2329 2311/2725/2334 2305/2724/2328\nf 2306/2677/2329 2312/2679/2335 2311/2725/2334\nf 2302/2673/2325 2305/2724/2328 2313/2672/2336\nf 2302/2673/2325 2313/2672/2336 2301/2671/2324\nf 2301/2671/2324 2313/2672/2336 2314/2674/2337\no mesh9.002_mesh9-geometry\nv 22.169228 88.586823 16.655272\nv 21.192451 89.311661 17.303040\nv 21.404673 88.844391 16.428429\nv 21.807301 89.132507 17.699356\nv 22.874031 89.018295 16.800470\nv 22.480928 89.479553 17.588417\nv 24.003559 90.940193 15.800607\nv 23.111362 91.608658 16.992546\nv 23.200008 91.853897 16.941498\nv 24.193165 91.148216 15.719616\nv 22.952761 90.743530 15.289865\nv 21.781448 91.069511 15.201379\nv 23.076591 90.940643 15.148145\nv 21.859367 91.257446 15.032834\nv 22.385612 92.545258 13.647466\nv 21.754278 94.772858 14.669790\nv 21.303627 92.037369 16.064711\nv 21.285048 91.794220 16.178223\nv 22.202597 91.757942 16.786314\nv 22.242458 92.006805 16.702934\nv 22.836191 94.929070 15.637346\nv 23.543980 96.841095 13.700783\nv 22.168859 96.386734 12.614346\nv 24.952211 97.992355 12.686328\nv 23.603140 97.815117 11.808199\nv 25.440607 98.874191 12.096235\nv 24.266891 98.730766 11.261772\nv 24.350292 101.101601 10.163377\nv 24.364828 100.587036 8.692602\nv 24.069981 98.171509 9.805542\nv 24.737326 97.668259 8.768760\nv 25.176399 100.178337 7.738992\nv 25.551744 99.632866 6.273879\nv 24.894917 97.049240 7.278371\nv 26.181408 96.570213 6.502246\nv 26.941732 99.286163 5.651366\nv 26.171717 102.346832 5.551109\nv 27.659311 102.126785 5.076231\nv 28.328203 99.235909 5.936953\nv 29.033998 102.196243 5.522309\nv 29.365707 99.353157 6.606339\nv 30.092611 102.345566 6.176800\nv 29.752491 99.803474 8.281925\nv 30.138063 102.906364 8.003312\nv 29.019957 103.478951 9.681160\nv 29.023750 100.414429 9.869109\nv 26.871977 103.976326 10.949691\nv 26.944689 101.265411 11.453995\nv 25.356483 103.894974 10.442328\nv 25.653536 101.391251 11.143962\nv 24.405727 103.603683 9.344674\nv 24.632397 103.135109 7.861035\nv 25.586643 102.818672 6.987800\nv 26.984703 98.691093 12.247600\nv 26.619846 97.790176 13.099362\nv 25.636982 96.779831 14.504494\nv 24.393995 94.569679 16.394306\nv 25.457512 92.606888 15.610518\nv 23.491804 92.057182 14.713554\nv 24.097490 90.123215 16.106524\nv 23.320280 90.246857 15.294415\nv 24.251364 93.248962 11.492286\nv 25.002338 89.735802 13.806530\nv 24.836843 92.403610 10.242093\nv 25.898218 88.857788 12.161765\nv 25.367596 91.938843 8.879768\nv 26.656160 88.370110 10.381343\nv 27.052273 91.006516 7.666314\nv 27.526350 88.099121 8.904814\nv 28.205946 90.874123 8.059794\nv 26.024986 95.458824 6.725495\nv 27.547546 95.321144 6.875689\nv 27.578457 96.399231 6.626262\nv 28.630331 96.495285 7.313104\nv 28.739130 95.453804 7.591876\nv 29.330008 96.820793 8.827513\nv 24.634781 95.975090 7.560846\nv 24.394407 96.090034 9.241013\nv 23.593878 97.177948 10.218721\nv 22.580179 94.686394 11.339685\nv 28.730801 97.635963 10.663162\nv 28.873560 96.627708 11.035565\nv 26.847555 93.282127 14.718787\nv 26.734468 89.271339 14.997664\nv 25.254320 90.165939 16.370001\nv 24.127497 87.169029 16.620148\nv 23.473948 87.135231 16.054062\nv 24.252563 86.635033 14.877175\nv 23.472561 86.874138 16.109003\nv 24.207010 86.384575 14.948961\nv 25.166552 86.560005 15.207605\nv 25.586267 89.071632 14.494160\nv 24.232365 86.396217 14.055287\nv 24.878565 85.849953 12.876779\nv 24.164677 86.139702 14.082907\nv 24.794746 85.604897 12.932021\nv 25.708828 85.654045 13.263476\nv 26.568632 88.402107 12.744558\nv 25.322001 86.322174 12.343653\nv 25.935171 85.992409 11.277829\nv 25.232183 86.073875 12.357909\nv 25.831982 85.755119 11.335246\nv 26.789076 85.623436 11.550590\nv 27.503643 88.111504 10.946728\nv 26.384836 87.063393 10.538836\nv 26.864458 86.500191 9.526622\nv 26.262993 86.828407 10.537219\nv 26.716513 86.288307 9.565248\nv 27.465174 86.103874 9.793700\nv 28.270107 87.688713 9.174411\nv 29.210148 90.996994 8.978347\nv 28.900469 87.580376 9.945461\nv 29.027330 91.859947 10.953090\nv 29.451653 95.816711 9.203488\nv 28.303816 92.574921 12.671320\nv 27.785368 88.521835 13.278325\nv 25.851738 86.100105 15.111632\nv 24.875565 86.365875 14.782771\nv 26.031624 86.577919 15.857128\nv 25.052586 87.069160 16.860563\nv 25.016396 86.807930 16.894468\nv 24.111507 86.907555 16.661299\nv 23.330196 84.440109 16.541681\nv 23.918907 84.168053 15.465104\nv 23.261929 84.190643 16.545574\nv 23.836763 83.923973 15.486184\nv 24.586834 83.964851 15.683677\nv 25.115250 86.307198 15.267276\nv 25.958897 86.329430 15.913600\nv 24.425270 84.131859 17.143894\nv 23.754295 84.345665 17.010008\nv 23.673550 84.099869 17.008749\nv 22.216026 82.250732 16.188688\nv 22.423100 81.855858 16.616426\nv 23.048136 81.564720 15.417445\nv 23.536947 81.554192 15.865146\nv 23.092512 81.748917 16.707016\nv 25.041836 83.594467 16.224129\nv 24.486963 83.725777 15.695314\nv 25.162271 83.825745 16.225334\nv 22.687037 82.041840 15.294284\nv 24.331629 83.890785 17.133316\nv 24.800282 86.112541 14.805801\nv 23.523178 83.786522 14.456396\nv 24.113085 83.453606 13.425505\nv 23.392860 83.571030 14.441613\nv 23.972862 83.244057 13.428023\nv 24.675465 83.089966 13.662271\nv 25.619101 85.408325 13.306560\nv 26.490105 85.563095 13.953248\nv 26.378325 85.325211 13.993203\nv 25.763559 85.848091 15.118495\nv 23.916653 83.563850 15.024146\nv 23.777662 83.354408 14.993243\nv 21.792458 82.102432 13.852724\nv 21.898422 81.652191 14.199434\nv 22.547022 81.353424 13.115736\nv 22.915258 81.121277 13.596844\nv 22.512144 81.334732 14.308155\nv 24.971378 82.628975 14.211453\nv 24.423082 82.931625 15.164415\nv 24.575054 83.129059 15.208100\nv 25.138647 82.819664 14.232191\nv 24.522633 82.888344 13.653838\nv 22.327623 81.892113 13.007864\nv 25.979763 86.203804 13.005674\nv 25.878609 85.959351 13.019110\nv 24.445280 84.301750 12.406524\nv 24.970886 84.013107 11.562846\nv 24.296021 84.099579 12.363680\nv 24.804508 83.821205 11.548494\nv 23.350307 82.876846 11.118680\nv 23.487255 82.223366 11.113758\nv 25.350496 83.308723 11.687312\nv 25.529200 83.489014 11.711253\nv 26.680113 85.385506 11.587653\nv 27.493584 85.462318 12.166327\nv 28.609066 88.202477 11.485122\nv 26.890076 85.841019 13.378291\nv 27.628120 86.247566 11.354810\nv 26.955582 86.723778 10.992229\nv 26.811676 86.504753 10.977283\nv 25.172150 85.594940 10.279697\nv 25.691259 85.289124 9.501575\nv 26.032074 84.823257 9.780774\nv 27.302595 85.901726 9.833206\nv 27.898129 85.882622 10.431888\nv 27.729546 85.682625 10.452735\nv 27.464062 86.041069 11.321606\nv 25.447660 85.195320 10.693679\nv 25.247795 85.040215 10.630948\nv 24.986095 85.425171 10.222971\nv 25.488413 85.131210 9.469933\nv 25.819012 84.679665 9.744536\nv 26.290913 84.424797 10.311051\nv 25.871426 84.703163 10.993931\nv 25.661003 84.566093 10.919572\nv 23.547836 84.086929 9.906569\nv 23.736153 84.611320 9.672705\nv 24.125784 84.366791 9.097562\nv 24.007614 83.779549 9.200069\nv 26.073578 84.289932 10.262244\nv 24.037483 83.781258 10.182966\nv 24.298098 83.542610 9.687321\nv 26.774916 85.602989 13.376622\nv 24.809818 84.005974 12.982134\nv 24.646196 83.815697 12.931549\nv 23.007946 83.055321 11.645571\nv 22.954906 82.606445 12.082231\nv 23.889988 81.969406 11.567054\nv 23.494854 82.204712 12.216602\nv 25.773846 82.954308 12.226777\nv 25.212042 83.297142 13.161048\nv 25.385843 83.471809 13.227775\nv 25.963739 83.123100 12.263474\nv 27.369459 85.230309 12.199182\nvt 0.984274 0.366115\nvt 0.987662 0.378387\nvt 0.982536 0.372393\nvt 0.993746 0.377331\nvt 0.697346 0.401186\nvt 0.700495 0.388564\nvt 0.706796 0.392679\nvt 0.704318 0.400482\nvt 0.726623 0.394580\nvt 0.722268 0.408250\nvt 0.723501 0.410745\nvt 0.729310 0.392965\nvt 0.721644 0.385111\nvt 0.961855 0.372987\nvt 0.964464 0.384651\nvt 0.959715 0.373394\nvt 0.962031 0.385539\nvt 0.939910 0.388588\nvt 0.950104 0.414551\nvt 0.969403 0.396187\nvt 0.971180 0.394473\nvt 0.979968 0.399515\nvt 0.717152 0.415623\nvt 0.719716 0.415915\nvt 0.978484 0.401632\nvt 0.961053 0.423593\nvt 0.945213 0.437702\nvt 0.934406 0.428597\nvt 0.931385 0.446349\nvt 0.920691 0.438203\nvt 0.927573 0.452785\nvt 0.916978 0.446641\nvt 0.914541 0.469928\nvt 0.901300 0.468885\nvt 0.903886 0.444556\nvt 0.892546 0.443643\nvt 0.890079 0.468429\nvt 0.876422 0.467606\nvt 0.878601 0.441998\nvt 0.864651 0.440995\nvt 0.863173 0.467105\nvt 0.874243 0.493215\nvt 0.861696 0.493215\nvt 0.851582 0.466764\nvt 0.851245 0.493214\nvt 0.841922 0.466748\nvt 0.843415 0.493214\nvt 0.827193 0.466755\nvt 0.829384 0.493214\nvt 0.813397 0.493214\nvt 0.810045 0.467981\nvt 0.792147 0.493214\nvt 0.788828 0.470616\nvt 0.777815 0.493214\nvt 0.774519 0.475336\nvt 0.912104 0.493215\nvt 0.926248 0.473000\nvt 0.924923 0.493215\nvt 0.898713 0.493215\nvt 0.887612 0.493215\nvt 0.771222 0.457457\nvt 0.785509 0.448018\nvt 0.762723 0.451863\nvt 0.778954 0.442165\nvt 0.753145 0.447725\nvt 0.767090 0.433785\nvt 0.738857 0.434696\nvt 0.747760 0.420556\nvt 0.753045 0.394400\nvt 0.724537 0.384008\nvt 0.732329 0.380080\nvt 0.950214 0.373749\nvt 0.953189 0.359732\nvt 0.944324 0.359463\nvt 0.910549 0.395983\nvt 0.920565 0.354188\nvt 0.895802 0.392327\nvt 0.897754 0.351619\nvt 0.881665 0.392256\nvt 0.877154 0.352174\nvt 0.861754 0.386423\nvt 0.856461 0.354312\nvt 0.849323 0.385086\nvt 0.865394 0.427650\nvt 0.851636 0.426626\nvt 0.851918 0.440313\nvt 0.840429 0.440282\nvt 0.838777 0.427265\nvt 0.825002 0.440297\nvt 0.879861 0.430471\nvt 0.895140 0.428075\nvt 0.906389 0.434874\nvt 0.919833 0.412106\nvt 0.806694 0.442747\nvt 0.804877 0.432887\nvt 0.773344 0.400914\nvt 0.777280 0.364488\nvt 0.758004 0.370058\nvt 0.744729 0.369419\nvt 0.743835 0.344283\nvt 0.952908 0.332655\nvt 0.960494 0.333581\nvt 0.938718 0.326505\nvt 0.953629 0.330325\nvt 0.939946 0.324267\nvt 0.931537 0.323133\nvt 0.924017 0.340951\nvt 0.918580 0.324491\nvt 0.904603 0.321478\nvt 0.918600 0.322072\nvt 0.905093 0.319006\nvt 0.898425 0.320202\nvt 0.896814 0.332107\nvt 0.889745 0.323164\nvt 0.877706 0.325839\nvt 0.889094 0.320664\nvt 0.877560 0.323310\nvt 0.870801 0.325210\nvt 0.873203 0.339909\nvt 0.863459 0.335139\nvt 0.851400 0.338460\nvt 0.861677 0.332578\nvt 0.850622 0.336184\nvt 0.841743 0.339759\nvt 0.845291 0.356207\nvt 0.835203 0.387488\nvt 0.832307 0.357955\nvt 0.816288 0.393237\nvt 0.822848 0.428540\nvt 0.797969 0.397565\nvt 0.797158 0.361121\nvt 0.774073 0.334238\nvt 0.770329 0.333951\nvt 0.776691 0.361190\nvt 0.764492 0.336292\nvt 0.767844 0.334784\nvt 0.749596 0.342700\nvt 0.749254 0.340145\nvt 0.741987 0.342361\nvt 0.961101 0.331237\nvt 0.960397 0.307742\nvt 0.949134 0.303815\nvt 0.961060 0.305349\nvt 0.950119 0.301520\nvt 0.942679 0.301053\nvt 0.932481 0.321130\nvt 0.767854 0.331904\nvt 0.762541 0.334375\nvt 0.741961 0.318421\nvt 0.737206 0.319362\nvt 0.966383 0.309103\nvt 0.966864 0.306636\nvt 0.966130 0.285353\nvt 0.970574 0.282728\nvt 0.956433 0.277603\nvt 0.744333 0.293141\nvt 0.731682 0.293269\nvt 0.745408 0.287643\nvt 0.736782 0.296115\nvt 0.752787 0.312208\nvt 0.758268 0.308614\nvt 0.754770 0.313842\nvt 0.758447 0.311550\nvt 0.943931 0.298774\nvt 0.957948 0.282343\nvt 0.742237 0.315892\nvt 0.735690 0.317062\nvt 0.926114 0.325608\nvt 0.926284 0.323578\nvt 0.920462 0.298407\nvt 0.908810 0.296921\nvt 0.920626 0.295942\nvt 0.909250 0.294502\nvt 0.902026 0.295486\nvt 0.898684 0.318387\nvt 0.791026 0.329072\nvt 0.787973 0.330170\nvt 0.791077 0.326323\nvt 0.786758 0.327916\nvt 0.774083 0.331730\nvt 0.769489 0.331342\nvt 0.766047 0.307519\nvt 0.927581 0.299140\nvt 0.927522 0.296474\nvt 0.921779 0.274672\nvt 0.925130 0.270285\nvt 0.910802 0.268862\nvt 0.775597 0.283522\nvt 0.762220 0.281377\nvt 0.779989 0.278040\nvt 0.768663 0.284897\nvt 0.781055 0.303729\nvt 0.770515 0.304825\nvt 0.770276 0.308132\nvt 0.782378 0.305755\nvt 0.785971 0.301234\nvt 0.785823 0.304096\nvt 0.765167 0.304946\nvt 0.902655 0.292910\nvt 0.913244 0.274148\nvt 0.894703 0.320787\nvt 0.894349 0.318994\nvt 0.883996 0.299235\nvt 0.874436 0.301118\nvt 0.883330 0.296854\nvt 0.874160 0.298673\nvt 0.872675 0.281098\nvt 0.868285 0.277360\nvt 0.866275 0.298789\nvt 0.866378 0.301314\nvt 0.870459 0.323285\nvt 0.816926 0.331244\nvt 0.813294 0.332328\nvt 0.817912 0.328789\nvt 0.815656 0.362043\nvt 0.798161 0.332931\nvt 0.823109 0.339074\nvt 0.820524 0.336368\nvt 0.816882 0.349406\nvt 0.867742 0.329794\nvt 0.866684 0.327959\nvt 0.853261 0.317369\nvt 0.845295 0.321539\nvt 0.838700 0.322195\nvt 0.841283 0.337369\nvt 0.832002 0.339285\nvt 0.832028 0.336783\nvt 0.824318 0.336994\nvt 0.820313 0.333518\nvt 0.822447 0.318838\nvt 0.858454 0.314449\nvt 0.857058 0.312407\nvt 0.852076 0.315188\nvt 0.844467 0.319202\nvt 0.838295 0.319688\nvt 0.832613 0.321691\nvt 0.825077 0.320349\nvt 0.825485 0.318478\nvt 0.822079 0.316137\nvt 0.825136 0.297565\nvt 0.844736 0.301419\nvt 0.844883 0.296242\nvt 0.839260 0.304110\nvt 0.835182 0.299431\nvt 0.832607 0.319265\nvt 0.827717 0.301978\nvt 0.831863 0.302478\nvt 0.794179 0.332592\nvt 0.798861 0.330516\nvt 0.793354 0.329966\nvt 0.793432 0.307356\nvt 0.890029 0.297738\nvt 0.889264 0.295324\nvt 0.877922 0.280152\nvt 0.880866 0.275831\nvt 0.807965 0.288060\nvt 0.795659 0.284233\nvt 0.810835 0.282897\nvt 0.801325 0.288318\nvt 0.810067 0.305791\nvt 0.799414 0.306143\nvt 0.798241 0.308367\nvt 0.811189 0.307888\nvt 0.811983 0.330197\nvt 0.814471 0.306676\nvt 0.814963 0.303828\nvt 0.792550 0.304585\nvt -30.622080 84.367462\nvt -29.315384 81.513290\nvt -29.370056 84.157234\nvt -30.794760 84.643562\nvt -28.910404 81.645950\nvt -29.466593 84.518417\nvt 30.792715 86.366386\nvt 29.464312 86.243790\nvt 29.039476 83.992798\nvn 0.096530 -0.926695 -0.363140\nvn -0.766137 -0.287881 0.574572\nvn -0.763634 -0.512864 -0.392163\nvn -0.044984 -0.302713 0.951994\nvn 0.650136 -0.688040 0.322336\nvn 0.594073 -0.190558 0.781487\nvn 0.857753 -0.501846 0.111179\nvn 0.202216 0.193518 0.959990\nvn 0.399396 -0.076479 0.913572\nvn 0.697317 -0.699545 -0.156041\nvn 0.235603 -0.620136 -0.748253\nvn -0.384472 -0.444227 -0.809198\nvn 0.235023 -0.597400 -0.766717\nvn -0.734367 -0.312296 -0.602588\nvn -0.796381 -0.450362 -0.403607\nvn -0.965423 0.257027 0.043367\nvn -0.842891 0.290841 0.452651\nvn -0.994110 0.106388 0.020356\nvn -0.382336 0.363933 0.849300\nvn -0.321726 0.336375 0.885037\nvn -0.416425 0.572039 0.706626\nvn -0.355754 0.777154 0.519059\nvn -0.777306 0.623707 0.081942\nvn -0.274789 0.729392 0.626453\nvn -0.760949 0.633961 0.137883\nvn -0.385022 0.515519 0.765496\nvn -0.892972 0.398907 0.208441\nvn -0.904843 0.195898 0.377941\nvn -0.953276 -0.015015 -0.301675\nvn -0.947569 0.157689 -0.277840\nvn -0.901395 0.041566 -0.430921\nvn -0.868709 -0.017365 -0.494980\nvn -0.790735 -0.017457 -0.611896\nvn -0.879635 0.058931 -0.471938\nvn -0.341166 -0.178961 -0.922788\nvn -0.133610 -0.214393 -0.967559\nvn -0.721335 -0.021363 -0.692251\nvn 0.063082 -0.192572 -0.979247\nvn 0.390637 -0.275704 -0.878262\nvn 0.467299 -0.232612 -0.852901\nvn 0.760765 -0.292093 -0.579547\nvn 0.909574 -0.227912 -0.347392\nvn 0.982208 -0.123386 0.141423\nvn 0.948820 -0.090732 0.302469\nvn 0.776177 0.009583 0.630421\nvn 0.743645 0.105594 0.660176\nvn 0.309030 0.138951 0.940825\nvn 0.126255 0.242470 0.961882\nvn -0.448775 0.172155 0.876888\nvn -0.428205 0.272134 0.861721\nvn -0.879910 0.118900 0.459975\nvn -0.914914 -0.039583 -0.401685\nvn -0.824366 -0.032655 -0.565081\nvn 0.345317 0.404462 0.846828\nvn 0.340403 0.592303 0.730247\nvn 0.254799 0.565874 0.784082\nvn 0.131382 0.334208 0.933287\nvn 0.708640 -0.102084 0.698141\nvn -0.262978 0.254433 0.930631\nvn -0.526322 0.264870 0.807947\nvn -0.940855 -0.242653 -0.236335\nvn -0.697745 -0.447035 -0.559679\nvn -0.751091 -0.247353 -0.612079\nvn -0.916837 -0.303690 -0.259072\nvn -0.828547 -0.206610 -0.520371\nvn -0.862270 -0.350414 -0.365612\nvn -0.789483 -0.216712 -0.574206\nvn -0.421064 -0.368755 -0.828669\nvn -0.203162 -0.331309 -0.921354\nvn 0.396100 -0.232154 -0.888363\nvn -0.105136 -0.212165 -0.971557\nvn 0.358104 -0.204352 -0.911008\nvn 0.249153 -0.266549 -0.931028\nvn 0.743950 -0.231422 -0.626850\nvn 0.835902 -0.100436 -0.539537\nvn 0.990539 -0.026337 -0.134587\nvn -0.773247 -0.152043 -0.615558\nvn -0.948576 -0.079989 -0.306223\nvn -0.872951 0.123447 -0.471847\nvn -0.830622 -0.103549 -0.547105\nvn 0.894528 0.139164 0.424757\nvn 0.841487 0.204321 0.500076\nvn 0.714835 0.131840 0.686697\nvn 0.731681 -0.042726 0.680258\nvn 0.056673 0.266610 0.962127\nvn -0.379986 0.159581 0.911100\nvn -0.913755 0.064333 0.401074\nvn -0.531816 -0.210669 -0.820215\nvn -0.992004 0.037660 -0.120304\nvn -0.114170 -0.221229 -0.968505\nvn 0.433699 -0.327036 -0.839595\nvn -0.776818 0.040223 0.628407\nvn -0.906644 0.265450 0.327860\nvn -0.562883 -0.001129 -0.826502\nvn -0.957427 0.234993 -0.167486\nvn -0.091464 -0.177435 -0.979858\nvn 0.445845 -0.328593 -0.832575\nvn -0.716605 0.061312 0.694754\nvn -0.873196 0.301889 0.382519\nvn -0.618000 0.012879 -0.786035\nvn -0.920713 0.350841 -0.170721\nvn -0.185125 -0.072390 -0.980041\nvn 0.360881 -0.343120 -0.867183\nvn -0.547533 -0.018830 0.836543\nvn -0.800958 0.325083 0.502731\nvn -0.580035 0.068667 -0.811670\nvn -0.806940 0.571306 -0.149724\nvn -0.056185 -0.040834 -0.997559\nvn 0.362987 -0.463393 -0.808374\nvn 0.482772 -0.369335 -0.794031\nvn 0.898709 -0.126041 -0.419965\nvn 0.919553 -0.373455 -0.122166\nvn 0.989380 -0.043733 0.138493\nvn 0.997436 0.031159 0.063967\nvn 0.896756 0.007263 0.442427\nvn 0.832179 -0.173406 0.526627\nvn 0.526322 -0.146428 0.837550\nvn -0.463546 0.195929 0.864101\nvn 0.921049 -0.301584 -0.246254\nvn 0.449171 0.069369 0.890713\nvn 0.106906 0.096438 0.989563\nvn -0.534562 0.172308 0.827357\nvn -0.910154 0.198950 0.363323\nvn -0.594806 -0.002075 -0.803827\nvn -0.914029 0.381512 -0.137669\nvn -0.098392 0.055788 -0.993561\nvn 0.420454 -0.241676 -0.874508\nvn 0.475661 -0.286233 -0.831721\nvn 0.962798 -0.246803 0.109775\nvn 0.466506 -0.140019 0.873348\nvn -0.374340 0.136906 0.917112\nvn -0.562975 0.170751 0.808618\nvn -0.994018 -0.063265 0.088931\nvn -0.512070 -0.585253 0.628651\nvn 0.030732 -0.635701 -0.771294\nvn 0.316843 -0.948149 0.023957\nvn 0.293283 -0.661153 0.690512\nvn 0.858150 -0.510727 0.051881\nvn 0.490921 -0.235664 -0.838710\nvn 0.891446 -0.383831 -0.240669\nvn -0.652882 0.097140 -0.751183\nvn 0.113132 -0.162938 0.980102\nvn -0.587207 0.253548 0.768670\nvn -0.874416 0.390637 0.287637\nvn -0.534471 0.151799 -0.831416\nvn -0.744194 0.645985 -0.169744\nvn 0.001892 0.135929 -0.990692\nvn 0.429121 -0.304147 -0.850459\nvn 0.502121 -0.335490 -0.797021\nvn 0.864803 -0.426954 -0.264168\nvn 0.905545 -0.423597 0.022797\nvn 0.110477 0.000549 0.993866\nvn -0.417615 0.170629 0.892422\nvn -0.562670 0.261238 0.784295\nvn -0.980712 0.194922 0.013764\nvn -0.697439 -0.502426 0.510941\nvn -0.072604 -0.578784 -0.812220\nvn 0.013031 -0.996826 -0.078402\nvn 0.037416 -0.807001 0.589312\nvn 0.673818 -0.738884 0.002045\nvn -0.012665 -0.317301 0.948210\nvn 0.455092 -0.340526 0.822718\nvn 0.803003 -0.544115 -0.243080\nvn 0.484176 -0.332072 -0.809473\nvn -0.499313 0.329997 -0.801080\nvn -0.453627 0.212745 0.865413\nvn -0.558641 0.271859 0.783563\nvn -0.828730 0.478744 0.289773\nvn -0.479934 0.293039 -0.826899\nvn -0.674490 0.714957 -0.183996\nvn -0.013337 0.253822 -0.967132\nvn -0.421400 0.462996 -0.779748\nvn -0.158818 -0.448897 -0.879330\nvn 0.428358 -0.293069 -0.854732\nvn 0.348613 -0.258187 -0.900967\nvn 0.424329 -0.324595 -0.845302\nvn 0.840358 -0.446120 -0.307779\nvn 0.881069 -0.241981 0.406354\nvn 0.554430 -0.196570 0.808649\nvn 0.510880 -0.378704 0.771722\nvn -0.433027 0.195776 0.879818\nvn -0.463363 0.259529 0.847285\nvn -0.687765 0.599109 0.409894\nvn -0.271706 0.422285 -0.864742\nvn 0.418653 -0.412305 -0.809137\nvn 0.446120 -0.484085 -0.752739\nvn 0.767663 -0.601337 -0.221412\nvn 0.692618 -0.721183 0.011414\nvn -0.064516 -0.128880 0.989532\nvn -0.447401 0.260811 0.855434\nvn -0.525956 0.334056 0.782128\nvn -0.568468 0.807245 -0.158544\nvn 0.150609 0.092990 -0.984191\nvn 0.450117 -0.454756 -0.768487\nvn 0.598315 -0.770043 -0.221412\nvn 0.190802 -0.534684 0.823206\nvn -0.253700 -0.218268 0.942320\nvn -0.852840 -0.209876 0.478072\nvn -0.860469 0.503342 -0.078768\nvn -0.334788 0.463759 -0.820246\nvn -0.106113 -0.491501 -0.864376\nvn 0.446730 -0.894375 0.022034\nvn -0.196661 -0.760552 0.618732\nvn -0.158788 -0.987243 -0.009735\nvn 0.051454 -0.056001 0.997101\nvn -0.462569 0.192022 0.865535\nvn -0.602771 0.305399 0.737144\nvn -0.931089 0.358013 -0.069765\nvn -0.813929 -0.373852 0.444624\nvn -0.120701 -0.988098 -0.095065\nvn -0.126469 -0.825770 0.549608\nvn 0.567003 -0.823389 -0.021973\nvn -0.148595 -0.339030 0.928953\nvn 0.348674 -0.441084 0.826930\nvn 0.734001 -0.624317 -0.267281\nvn 0.851619 -0.523942 -0.014222\ng mesh9.002_mesh9-geometry_male-02-1noCullingID_male-02-1noCulling.JP\nusemtl male-02-1noCullingID_male-02-1noCulling.JP\ns 1\nf 2315/2726/2338 2316/2727/2339 2317/2728/2340\nf 2315/2726/2338 2318/2729/2341 2316/2727/2339\nf 2318/2730/2341 2315/2731/2338 2319/2732/2342\nf 2319/2732/2342 2320/2733/2343 2318/2730/2341\nf 2321/2734/2344 2320/2733/2343 2319/2732/2342\nf 2321/2734/2344 2322/2735/2345 2320/2733/2343\nf 2321/2734/2344 2323/2736/2346 2322/2735/2345\nf 2323/2736/2346 2321/2734/2344 2324/2737/2347\nf 2324/2737/2347 2321/2734/2344 2325/2738/2348\nf 2321/2734/2344 2315/2731/2338 2325/2738/2348\nf 2319/2732/2342 2315/2731/2338 2321/2734/2344\nf 2325/2739/2348 2315/2726/2338 2326/2740/2349\nf 2326/2740/2349 2327/2741/2350 2325/2739/2348\nf 2328/2742/2351 2327/2741/2350 2326/2740/2349\nf 2327/2741/2350 2328/2742/2351 2329/2743/2352\nf 2329/2743/2352 2328/2742/2351 2330/2744/2353\nf 2330/2744/2353 2328/2742/2351 2331/2745/2354\nf 2328/2742/2351 2332/2746/2355 2331/2745/2354\nf 2328/2742/2351 2326/2740/2349 2332/2746/2355\nf 2326/2740/2349 2317/2728/2340 2332/2746/2355\nf 2326/2740/2349 2315/2726/2338 2317/2728/2340\nf 2332/2746/2355 2317/2728/2340 2316/2727/2339\nf 2332/2746/2355 2316/2727/2339 2333/2747/2356\nf 2333/2747/2356 2316/2727/2339 2318/2729/2341\nf 2333/2748/2356 2318/2730/2341 2322/2735/2345\nf 2322/2735/2345 2318/2730/2341 2320/2733/2343\nf 2334/2749/2357 2333/2748/2356 2322/2735/2345\nf 2331/2745/2354 2333/2747/2356 2334/2750/2357\nf 2331/2745/2354 2332/2746/2355 2333/2747/2356\nf 2335/2751/2358 2331/2745/2354 2334/2750/2357\nf 2335/2751/2358 2330/2744/2353 2331/2745/2354\nf 2336/2752/2359 2330/2744/2353 2335/2751/2358\nf 2336/2752/2359 2337/2753/2360 2330/2744/2353\nf 2338/2754/2361 2337/2753/2360 2336/2752/2359\nf 2338/2754/2361 2339/2755/2362 2337/2753/2360\nf 2340/2756/2363 2339/2755/2362 2338/2754/2361\nf 2340/2756/2363 2341/2757/2364 2339/2755/2362\nf 2342/2758/2365 2341/2757/2364 2340/2756/2363\nf 2343/2759/2366 2341/2757/2364 2342/2758/2365\nf 2343/2759/2366 2344/2760/2367 2341/2757/2364\nf 2343/2759/2366 2345/2761/2368 2344/2760/2367\nf 2346/2762/2369 2345/2761/2368 2343/2759/2366\nf 2347/2763/2370 2345/2761/2368 2346/2762/2369\nf 2347/2763/2370 2348/2764/2371 2345/2761/2368\nf 2347/2763/2370 2349/2765/2372 2348/2764/2371\nf 2347/2763/2370 2350/2766/2373 2349/2765/2372\nf 2351/2767/2374 2350/2766/2373 2347/2763/2370\nf 2351/2767/2374 2352/2768/2375 2350/2766/2373\nf 2352/2768/2375 2353/2769/2376 2350/2766/2373\nf 2354/2770/2377 2353/2769/2376 2352/2768/2375\nf 2354/2770/2377 2355/2771/2378 2353/2769/2376\nf 2356/2772/2379 2355/2771/2378 2354/2770/2377\nf 2356/2772/2379 2357/2773/2380 2355/2771/2378\nf 2356/2772/2379 2358/2774/2381 2357/2773/2380\nf 2358/2774/2381 2359/2775/2382 2357/2773/2380\nf 2357/2773/2380 2359/2775/2382 2360/2776/2383\nf 2361/2777/2384 2360/2776/2383 2359/2775/2382\nf 2361/2777/2384 2362/2778/2385 2360/2776/2383\nf 2361/2777/2384 2363/2779/2386 2362/2778/2385\nf 2363/2779/2386 2364/2780/2387 2362/2778/2385\nf 2365/2781/2388 2364/2782/2387 2363/2783/2386\nf 2365/2781/2388 2342/2758/2365 2364/2782/2387\nf 2366/2784/2389 2342/2758/2365 2365/2781/2388\nf 2366/2784/2389 2343/2759/2366 2342/2758/2365\nf 2346/2762/2369 2343/2759/2366 2366/2784/2389\nf 2366/2784/2389 2367/2785/2390 2346/2762/2369\nf 2351/2767/2374 2346/2762/2369 2367/2785/2390\nf 2351/2767/2374 2347/2763/2370 2346/2762/2369\nf 2364/2782/2387 2342/2758/2365 2340/2756/2363\nf 2364/2780/2387 2340/2786/2363 2368/2787/2391\nf 2340/2786/2363 2338/2788/2361 2368/2787/2391\nf 2368/2787/2391 2338/2788/2361 2369/2789/2392\nf 2369/2789/2392 2338/2788/2361 2336/2790/2359\nf 2369/2789/2392 2336/2790/2359 2370/2791/2393\nf 2370/2791/2393 2336/2790/2359 2335/2792/2358\nf 2370/2791/2393 2335/2792/2358 2371/2793/2394\nf 2335/2792/2358 2334/2749/2357 2371/2793/2394\nf 2371/2793/2394 2334/2749/2357 2323/2736/2346\nf 2334/2749/2357 2322/2735/2345 2323/2736/2346\nf 2371/2793/2394 2323/2736/2346 2372/2794/2395\nf 2372/2794/2395 2323/2736/2346 2324/2737/2347\nf 2372/2794/2395 2324/2737/2347 2327/2795/2350\nf 2324/2737/2347 2325/2738/2348 2327/2795/2350\nf 2372/2794/2395 2327/2795/2350 2373/2796/2396\nf 2329/2743/2352 2373/2797/2396 2327/2741/2350\nf 2329/2743/2352 2374/2798/2397 2373/2797/2396\nf 2329/2743/2352 2375/2799/2398 2374/2798/2397\nf 2376/2800/2399 2375/2799/2398 2329/2743/2352\nf 2376/2800/2399 2377/2801/2400 2375/2799/2398\nf 2378/2802/2401 2377/2801/2400 2376/2800/2399\nf 2378/2802/2401 2379/2803/2402 2377/2801/2400\nf 2380/2804/2403 2379/2803/2402 2378/2802/2401\nf 2380/2804/2403 2381/2805/2404 2379/2803/2402\nf 2382/2806/2405 2381/2805/2404 2380/2804/2403\nf 2382/2806/2405 2383/2807/2406 2381/2805/2404\nf 2382/2806/2405 2384/2808/2407 2383/2807/2406\nf 2385/2809/2408 2384/2808/2407 2382/2806/2405\nf 2385/2809/2408 2386/2810/2409 2384/2808/2407\nf 2387/2811/2410 2386/2810/2409 2385/2809/2408\nf 2388/2812/2411 2386/2810/2409 2387/2811/2410\nf 2388/2812/2411 2389/2813/2412 2386/2810/2409\nf 2388/2812/2411 2390/2814/2413 2389/2813/2412\nf 2388/2812/2411 2357/2773/2380 2390/2814/2413\nf 2355/2771/2378 2357/2773/2380 2388/2812/2411\nf 2355/2771/2378 2388/2812/2411 2353/2769/2376\nf 2353/2769/2376 2388/2812/2411 2387/2811/2410\nf 2350/2766/2373 2353/2769/2376 2387/2811/2410\nf 2350/2766/2373 2387/2811/2410 2349/2765/2372\nf 2349/2765/2372 2387/2811/2410 2385/2809/2408\nf 2349/2765/2372 2385/2809/2408 2391/2815/2414\nf 2391/2815/2414 2385/2809/2408 2382/2806/2405\nf 2391/2815/2414 2382/2806/2405 2380/2804/2403\nf 2391/2815/2414 2380/2804/2403 2392/2816/2415\nf 2380/2804/2403 2378/2802/2401 2392/2816/2415\nf 2392/2816/2415 2378/2802/2401 2376/2800/2399\nf 2392/2816/2415 2376/2800/2399 2393/2817/2416\nf 2393/2817/2416 2376/2800/2399 2394/2818/2417\nf 2376/2800/2399 2329/2743/2352 2394/2818/2417\nf 2394/2818/2417 2329/2743/2352 2330/2744/2353\nf 2394/2818/2417 2330/2744/2353 2337/2753/2360\nf 2394/2818/2417 2337/2753/2360 2339/2755/2362\nf 2393/2817/2416 2394/2818/2417 2339/2755/2362\nf 2393/2817/2416 2339/2755/2362 2341/2757/2364\nf 2344/2760/2367 2393/2817/2416 2341/2757/2364\nf 2345/2761/2368 2393/2817/2416 2344/2760/2367\nf 2345/2761/2368 2392/2816/2415 2393/2817/2416\nf 2348/2764/2371 2392/2816/2415 2345/2761/2368\nf 2348/2764/2371 2391/2815/2414 2392/2816/2415\nf 2348/2764/2371 2349/2765/2372 2391/2815/2414\nf 2357/2773/2380 2395/2819/2418 2390/2814/2413\nf 2357/2773/2380 2360/2776/2383 2395/2819/2418\nf 2360/2776/2383 2368/2787/2391 2395/2819/2418\nf 2362/2778/2385 2368/2787/2391 2360/2776/2383\nf 2364/2780/2387 2368/2787/2391 2362/2778/2385\nf 2395/2819/2418 2368/2787/2391 2396/2820/2419\nf 2396/2820/2419 2368/2787/2391 2369/2789/2392\nf 2396/2820/2419 2369/2789/2392 2397/2821/2420\nf 2369/2789/2392 2370/2791/2393 2397/2821/2420\nf 2370/2791/2393 2372/2794/2395 2397/2821/2420\nf 2370/2791/2393 2371/2793/2394 2372/2794/2395\nf 2397/2821/2420 2372/2794/2395 2398/2822/2421\nf 2398/2822/2421 2372/2794/2395 2399/2823/2422\nf 2372/2794/2395 2373/2796/2396 2399/2823/2422\nf 2373/2796/2396 2374/2824/2397 2399/2823/2422\nf 2399/2823/2422 2374/2824/2397 2400/2825/2423\nf 2374/2798/2397 2401/2826/2424 2400/2827/2423\nf 2375/2799/2398 2401/2826/2424 2374/2798/2397\nf 2402/2828/2425 2401/2826/2424 2375/2799/2398\nf 2402/2828/2425 2403/2829/2426 2401/2826/2424\nf 2402/2828/2425 2404/2830/2427 2403/2829/2426\nf 2402/2828/2425 2405/2831/2428 2404/2830/2427\nf 2377/2801/2400 2405/2831/2428 2402/2828/2425\nf 2377/2801/2400 2406/2832/2429 2405/2831/2428\nf 2377/2801/2400 2407/2833/2430 2406/2832/2429\nf 2408/2834/2431 2407/2833/2430 2377/2801/2400\nf 2408/2834/2431 2409/2835/2432 2407/2833/2430\nf 2408/2834/2431 2410/2836/2433 2409/2835/2432\nf 2408/2834/2431 2411/2837/2434 2410/2836/2433\nf 2379/2803/2402 2411/2837/2434 2408/2834/2431\nf 2379/2803/2402 2412/2838/2435 2411/2837/2434\nf 2379/2803/2402 2413/2839/2436 2412/2838/2435\nf 2414/2840/2437 2413/2839/2436 2379/2803/2402\nf 2414/2840/2437 2415/2841/2438 2413/2839/2436\nf 2414/2840/2437 2416/2842/2439 2415/2841/2438\nf 2414/2840/2437 2417/2843/2440 2416/2842/2439\nf 2381/2805/2404 2417/2843/2440 2414/2840/2437\nf 2381/2805/2404 2418/2844/2441 2417/2843/2440\nf 2381/2805/2404 2419/2845/2442 2418/2844/2441\nf 2420/2846/2443 2419/2845/2442 2381/2805/2404\nf 2420/2846/2443 2421/2847/2444 2419/2845/2442\nf 2420/2846/2443 2422/2848/2445 2421/2847/2444\nf 2420/2846/2443 2423/2849/2446 2422/2848/2445\nf 2383/2807/2406 2423/2849/2446 2420/2846/2443\nf 2383/2807/2406 2424/2850/2447 2423/2849/2446\nf 2384/2808/2407 2424/2850/2447 2383/2807/2406\nf 2425/2851/2448 2424/2850/2447 2384/2808/2407\nf 2425/2851/2448 2426/2852/2449 2424/2850/2447\nf 2425/2851/2448 2427/2853/2450 2426/2852/2449\nf 2389/2813/2412 2427/2853/2450 2425/2851/2448\nf 2389/2813/2412 2428/2854/2451 2427/2853/2450\nf 2389/2813/2412 2390/2814/2413 2428/2854/2451\nf 2390/2814/2413 2395/2819/2418 2428/2854/2451\nf 2428/2854/2451 2395/2819/2418 2396/2820/2419\nf 2428/2854/2451 2396/2820/2419 2429/2855/2452\nf 2396/2820/2419 2397/2821/2420 2429/2855/2452\nf 2429/2855/2452 2397/2821/2420 2430/2856/2453\nf 2430/2856/2453 2397/2821/2420 2398/2822/2421\nf 2430/2856/2453 2398/2822/2421 2431/2857/2454\nf 2398/2822/2421 2432/2858/2455 2431/2857/2454\nf 2398/2822/2421 2406/2859/2429 2432/2858/2455\nf 2398/2822/2421 2433/2860/2456 2405/2861/2428\nf 2398/2822/2421 2434/2862/2457 2433/2860/2456\nf 2399/2823/2422 2434/2862/2457 2398/2822/2421\nf 2399/2823/2422 2400/2825/2423 2434/2862/2457\nf 2400/2825/2423 2435/2863/2458 2434/2862/2457\nf 2400/2825/2423 2436/2864/2459 2435/2863/2458\nf 2400/2827/2423 2401/2826/2424 2436/2865/2459\nf 2401/2826/2424 2403/2829/2426 2436/2865/2459\nf 2436/2865/2459 2403/2829/2426 2437/2866/2460\nf 2438/2867/2461 2437/2866/2460 2403/2829/2426\nf 2438/2867/2461 2439/2868/2462 2437/2866/2460\nf 2438/2867/2461 2440/2869/2463 2439/2868/2462\nf 2438/2867/2461 2441/2870/2464 2440/2869/2463\nf 2404/2830/2427 2441/2870/2464 2438/2867/2461\nf 2404/2830/2427 2442/2871/2465 2441/2870/2464\nf 2405/2831/2428 2442/2871/2465 2404/2830/2427\nf 2433/2860/2456 2442/2872/2465 2405/2861/2428\nf 2433/2860/2456 2443/2873/2466 2442/2872/2465\nf 2434/2862/2457 2443/2873/2466 2433/2860/2456\nf 2443/2873/2466 2434/2862/2457 2435/2863/2458\nf 2435/2863/2458 2444/2874/2467 2443/2873/2466\nf 2435/2863/2458 2445/2875/2468 2444/2874/2467\nf 2436/2864/2459 2445/2875/2468 2435/2863/2458\nf 2437/2866/2460 2445/2876/2468 2436/2865/2459\nf 2437/2866/2460 2446/2877/2469 2445/2876/2468\nf 2437/2866/2460 2439/2868/2462 2446/2877/2469\nf 2447/2878/2470 2446/2877/2469 2439/2868/2462\nf 2447/2878/2470 2448/2879/2471 2446/2877/2469\nf 2449/2880/2472 2448/2879/2471 2447/2878/2470\nf 2450/2881/2473 2448/2882/2471 2449/2883/2472\nf 2450/2881/2473 2451/2884/2474 2448/2882/2471\nf 2450/2881/2473 2452/2885/2475 2451/2884/2474\nf 2452/2885/2475 2450/2881/2473 2449/2883/2472\nf 2453/2886/2476 2452/2885/2475 2449/2883/2472\nf 2454/2887/2477 2452/2885/2475 2453/2886/2476\nf 2452/2885/2475 2454/2887/2477 2444/2874/2467\nf 2443/2873/2466 2444/2874/2467 2454/2887/2477\nf 2443/2873/2466 2454/2887/2477 2441/2888/2464\nf 2441/2888/2464 2454/2887/2477 2453/2886/2476\nf 2441/2870/2464 2453/2889/2476 2440/2869/2463\nf 2440/2869/2463 2453/2889/2476 2449/2880/2472\nf 2440/2869/2463 2449/2880/2472 2455/2890/2478\nf 2455/2890/2478 2449/2880/2472 2447/2878/2470\nf 2455/2890/2478 2447/2878/2470 2439/2868/2462\nf 2455/2890/2478 2439/2868/2462 2440/2869/2463\nf 2443/2873/2466 2441/2888/2464 2442/2872/2465\nf 2452/2885/2475 2444/2874/2467 2456/2891/2479\nf 2445/2875/2468 2456/2891/2479 2444/2874/2467\nf 2445/2875/2468 2446/2892/2469 2456/2891/2479\nf 2446/2892/2469 2448/2882/2471 2456/2891/2479\nf 2456/2891/2479 2448/2882/2471 2451/2884/2474\nf 2456/2891/2479 2451/2884/2474 2452/2885/2475\nf 2404/2830/2427 2438/2867/2461 2403/2829/2426\nf 2407/2833/2430 2432/2893/2455 2406/2832/2429\nf 2407/2833/2430 2457/2894/2480 2432/2893/2455\nf 2407/2833/2430 2409/2835/2432 2457/2894/2480\nf 2409/2835/2432 2458/2895/2481 2457/2894/2480\nf 2459/2896/2482 2458/2895/2481 2409/2835/2432\nf 2459/2896/2482 2460/2897/2483 2458/2895/2481\nf 2459/2896/2482 2461/2898/2484 2460/2897/2483\nf 2459/2896/2482 2462/2899/2485 2461/2898/2484\nf 2410/2836/2433 2462/2899/2485 2459/2896/2482\nf 2410/2836/2433 2463/2900/2486 2462/2899/2485\nf 2411/2837/2434 2463/2900/2486 2410/2836/2433\nf 2411/2901/2434 2464/2902/2487 2463/2903/2486\nf 2430/2856/2453 2464/2902/2487 2411/2901/2434\nf 2430/2856/2453 2431/2857/2454 2464/2902/2487\nf 2464/2902/2487 2431/2857/2454 2465/2904/2488\nf 2465/2904/2488 2431/2857/2454 2466/2905/2489\nf 2432/2858/2455 2466/2905/2489 2431/2857/2454\nf 2432/2858/2455 2457/2906/2480 2466/2905/2489\nf 2457/2906/2480 2467/2907/2490 2466/2905/2489\nf 2458/2895/2481 2467/2908/2490 2457/2894/2480\nf 2458/2895/2481 2468/2909/2491 2467/2908/2490\nf 2460/2897/2483 2468/2909/2491 2458/2895/2481\nf 2469/2910/2492 2468/2909/2491 2460/2897/2483\nf 2468/2909/2491 2469/2910/2492 2470/2911/2493\nf 2471/2912/2494 2470/2911/2493 2469/2910/2492\nf 2472/2913/2495 2470/2914/2493 2471/2915/2494\nf 2472/2913/2495 2473/2916/2496 2470/2914/2493\nf 2474/2917/2497 2473/2916/2496 2472/2913/2495\nf 2474/2917/2497 2475/2918/2498 2473/2916/2496\nf 2474/2917/2497 2476/2919/2499 2475/2918/2498\nf 2474/2917/2497 2477/2920/2500 2476/2919/2499\nf 2478/2921/2501 2477/2920/2500 2474/2917/2497\nf 2462/2922/2485 2477/2920/2500 2478/2921/2501\nf 2465/2904/2488 2477/2920/2500 2462/2922/2485\nf 2465/2904/2488 2476/2919/2499 2477/2920/2500\nf 2465/2904/2488 2466/2905/2489 2476/2919/2499\nf 2466/2905/2489 2467/2907/2490 2476/2919/2499\nf 2467/2907/2490 2475/2918/2498 2476/2919/2499\nf 2467/2907/2490 2468/2923/2491 2475/2918/2498\nf 2468/2923/2491 2470/2914/2493 2475/2918/2498\nf 2475/2918/2498 2470/2914/2493 2473/2916/2496\nf 2463/2903/2486 2465/2904/2488 2462/2922/2485\nf 2464/2902/2487 2465/2904/2488 2463/2903/2486\nf 2461/2898/2484 2462/2899/2485 2478/2924/2501\nf 2461/2898/2484 2478/2924/2501 2471/2912/2494\nf 2478/2921/2501 2474/2917/2497 2471/2915/2494\nf 2474/2917/2497 2472/2913/2495 2471/2915/2494\nf 2461/2898/2484 2471/2912/2494 2479/2925/2502\nf 2479/2925/2502 2471/2912/2494 2469/2910/2492\nf 2460/2897/2483 2479/2925/2502 2469/2910/2492\nf 2461/2898/2484 2479/2925/2502 2460/2897/2483\nf 2412/2838/2435 2413/2839/2436 2480/2926/2503\nf 2413/2839/2436 2481/2927/2504 2480/2926/2503\nf 2413/2839/2436 2415/2841/2438 2481/2927/2504\nf 2415/2841/2438 2482/2928/2505 2481/2927/2504\nf 2483/2929/2506 2482/2928/2505 2415/2841/2438\nf 2483/2929/2506 2484/2930/2507 2482/2928/2505\nf 2485/2931/2508 2484/2930/2507 2483/2929/2506\nf 2485/2931/2508 2486/2932/2509 2484/2930/2507\nf 2485/2931/2508 2487/2933/2510 2486/2932/2509\nf 2485/2931/2508 2488/2934/2511 2487/2933/2510\nf 2485/2931/2508 2489/2935/2512 2488/2934/2511\nf 2483/2929/2506 2489/2935/2512 2485/2931/2508\nf 2416/2842/2439 2489/2935/2512 2483/2929/2506\nf 2416/2842/2439 2490/2936/2513 2489/2935/2512\nf 2416/2842/2439 2417/2843/2440 2490/2936/2513\nf 2417/2937/2440 2491/2938/2514 2490/2939/2513\nf 2492/2940/2515 2491/2938/2514 2417/2937/2440\nf 2492/2940/2515 2493/2941/2516 2491/2938/2514\nf 2492/2940/2515 2430/2856/2453 2493/2941/2516\nf 2492/2940/2515 2429/2855/2452 2430/2856/2453\nf 2427/2853/2450 2429/2855/2452 2492/2940/2515\nf 2428/2854/2451 2429/2855/2452 2427/2853/2450\nf 2426/2852/2449 2427/2853/2450 2492/2940/2515\nf 2426/2852/2449 2492/2940/2515 2494/2942/2517\nf 2492/2940/2515 2495/2943/2518 2494/2942/2517\nf 2492/2940/2515 2418/2944/2441 2495/2943/2518\nf 2492/2940/2515 2417/2937/2440 2418/2944/2441\nf 2418/2844/2441 2419/2845/2442 2495/2945/2518\nf 2419/2845/2442 2496/2946/2519 2495/2945/2518\nf 2419/2845/2442 2421/2847/2444 2496/2946/2519\nf 2421/2847/2444 2497/2947/2520 2496/2946/2519\nf 2421/2847/2444 2498/2948/2521 2497/2947/2520\nf 2422/2848/2445 2498/2948/2521 2421/2847/2444\nf 2422/2848/2445 2499/2949/2522 2498/2948/2521\nf 2422/2848/2445 2500/2950/2523 2499/2949/2522\nf 2422/2848/2445 2423/2849/2446 2500/2950/2523\nf 2423/2849/2446 2501/2951/2524 2500/2950/2523\nf 2423/2849/2446 2426/2852/2449 2501/2951/2524\nf 2424/2850/2447 2426/2852/2449 2423/2849/2446\nf 2426/2852/2449 2494/2942/2517 2501/2951/2524\nf 2501/2951/2524 2494/2942/2517 2502/2952/2525\nf 2502/2952/2525 2494/2942/2517 2503/2953/2526\nf 2495/2943/2518 2503/2953/2526 2494/2942/2517\nf 2495/2943/2518 2496/2954/2519 2503/2953/2526\nf 2496/2954/2519 2504/2955/2527 2503/2953/2526\nf 2496/2946/2519 2497/2947/2520 2504/2956/2527\nf 2497/2947/2520 2505/2957/2528 2504/2956/2527\nf 2497/2947/2520 2506/2958/2529 2505/2957/2528\nf 2498/2948/2521 2506/2958/2529 2497/2947/2520\nf 2498/2948/2521 2507/2959/2530 2506/2958/2529\nf 2498/2948/2521 2499/2949/2522 2507/2959/2530\nf 2507/2959/2530 2499/2949/2522 2508/2960/2531\nf 2499/2949/2522 2509/2961/2532 2508/2960/2531\nf 2502/2952/2525 2509/2961/2532 2499/2949/2522\nf 2502/2952/2525 2510/2962/2533 2509/2961/2532\nf 2502/2952/2525 2503/2953/2526 2510/2962/2533\nf 2503/2953/2526 2504/2955/2527 2510/2962/2533\nf 2504/2955/2527 2511/2963/2534 2510/2962/2533\nf 2504/2955/2527 2505/2964/2528 2511/2963/2534\nf 2505/2964/2528 2512/2965/2535 2511/2963/2534\nf 2505/2957/2528 2513/2966/2536 2512/2967/2535\nf 2506/2958/2529 2513/2966/2536 2505/2957/2528\nf 2506/2958/2529 2514/2968/2537 2513/2966/2536\nf 2507/2959/2530 2514/2968/2537 2506/2958/2529\nf 2507/2959/2530 2515/2969/2538 2514/2968/2537\nf 2507/2959/2530 2508/2960/2531 2515/2969/2538\nf 2508/2960/2531 2516/2970/2539 2515/2969/2538\nf 2508/2960/2531 2509/2961/2532 2516/2970/2539\nf 2509/2961/2532 2510/2962/2533 2516/2970/2539\nf 2516/2970/2539 2510/2962/2533 2511/2963/2534\nf 2516/2970/2539 2511/2963/2534 2517/2971/2540\nf 2511/2963/2534 2512/2965/2535 2517/2971/2540\nf 2518/2972/2541 2517/2971/2540 2512/2965/2535\nf 2516/2970/2539 2517/2971/2540 2518/2972/2541\nf 2516/2970/2539 2518/2972/2541 2515/2969/2538\nf 2518/2972/2541 2512/2965/2535 2515/2969/2538\nf 2515/2969/2538 2512/2967/2535 2513/2966/2536\nf 2514/2968/2537 2515/2969/2538 2513/2966/2536\nf 2502/2952/2525 2499/2949/2522 2500/2950/2523\nf 2500/2950/2523 2501/2951/2524 2502/2952/2525\nf 2430/2856/2453 2480/2973/2503 2493/2941/2516\nf 2480/2973/2503 2519/2974/2542 2493/2941/2516\nf 2480/2973/2503 2481/2975/2504 2519/2974/2542\nf 2481/2975/2504 2520/2976/2543 2519/2974/2542\nf 2482/2928/2505 2520/2977/2543 2481/2927/2504\nf 2482/2928/2505 2521/2978/2544 2520/2977/2543\nf 2484/2930/2507 2521/2978/2544 2482/2928/2505\nf 2522/2979/2545 2521/2978/2544 2484/2930/2507\nf 2522/2979/2545 2523/2980/2546 2521/2978/2544\nf 2487/2933/2510 2523/2980/2546 2522/2979/2545\nf 2524/2981/2547 2523/2982/2546 2487/2983/2510\nf 2524/2981/2547 2525/2984/2548 2523/2982/2546\nf 2526/2985/2549 2525/2984/2548 2524/2981/2547\nf 2526/2985/2549 2527/2986/2550 2525/2984/2548\nf 2526/2985/2549 2528/2987/2551 2527/2986/2550\nf 2529/2988/2552 2528/2987/2551 2526/2985/2549\nf 2530/2989/2553 2528/2987/2551 2529/2988/2552\nf 2530/2989/2553 2519/2974/2542 2528/2987/2551\nf 2530/2989/2553 2493/2941/2516 2519/2974/2542\nf 2491/2938/2514 2493/2941/2516 2530/2989/2553\nf 2491/2938/2514 2530/2989/2553 2490/2939/2513\nf 2490/2939/2513 2530/2989/2553 2489/2990/2512\nf 2530/2989/2553 2529/2988/2552 2489/2990/2512\nf 2489/2990/2512 2529/2988/2552 2488/2991/2511\nf 2488/2991/2511 2529/2988/2552 2526/2985/2549\nf 2488/2991/2511 2526/2985/2549 2487/2983/2510\nf 2526/2985/2549 2524/2981/2547 2487/2983/2510\nf 2519/2974/2542 2520/2976/2543 2528/2987/2551\nf 2520/2976/2543 2527/2986/2550 2528/2987/2551\nf 2520/2976/2543 2521/2992/2544 2527/2986/2550\nf 2521/2992/2544 2523/2982/2546 2527/2986/2550\nf 2527/2986/2550 2523/2982/2546 2525/2984/2548\nf 2487/2933/2510 2522/2979/2545 2486/2932/2509\nf 2484/2930/2507 2486/2932/2509 2522/2979/2545\nf 2416/2842/2439 2483/2929/2506 2415/2841/2438\nf 2410/2836/2433 2459/2896/2482 2409/2835/2432\nf 2389/2813/2412 2425/2851/2448 2384/2808/2407\nf 2389/2813/2412 2384/2808/2407 2386/2810/2409\nf 2383/2807/2406 2420/2846/2443 2381/2805/2404\nf 2381/2805/2404 2414/2840/2437 2379/2803/2402\nf 2379/2803/2402 2408/2834/2431 2377/2801/2400\nf 2375/2799/2398 2377/2801/2400 2402/2828/2425\ng mesh9.002_mesh9-geometry_FrontColorNoCullingID_male-02-1noCulling.JP\nusemtl FrontColorNoCullingID_male-02-1noCulling.JP\nf 2398/2993/2421 2405/2994/2428 2406/2995/2429\nf 2430/2996/2453 2411/2997/2434 2412/2998/2435\nf 2430/2999/2453 2412/3000/2435 2480/3001/2503\no mesh10.002_mesh10-geometry\nv -17.376911 107.267654 10.626536\nv -17.513220 106.120552 10.197070\nv -16.671518 107.197556 10.372264\nv -18.195976 106.450989 9.838389\nv -17.973299 107.366150 10.156271\nv -18.862438 106.995895 7.779521\nv -17.737236 106.625847 7.804854\nv -17.806618 106.657722 7.543258\nv -19.009422 107.069511 7.537134\nv -18.240459 108.393097 8.349224\nv -17.300064 108.464417 8.314463\nv -18.294319 108.525566 8.125278\nv -17.298573 108.583061 8.076990\nv -19.081184 110.040077 5.678270\nv -17.420919 109.973549 5.099025\nv -16.232397 108.277740 7.832600\nv -16.129681 109.368294 4.790526\nv -18.016541 109.713409 2.620876\nv -16.404119 109.002426 2.205710\nv -16.522728 106.697174 2.906340\nv -16.964714 107.086327 5.644564\nv -16.577364 106.947372 7.527525\nv -16.558176 106.935158 7.790724\nv -16.261406 108.181320 8.082028\nv -16.698570 106.239670 10.040486\nv -18.176559 107.251579 6.657430\nv -20.267923 107.895592 6.801469\nv -20.179464 109.698860 3.214209\nv -21.350672 107.365646 5.707272\nv -20.215752 109.415184 1.227624\nv -22.316919 106.928261 0.927626\nv -22.288828 105.136665 4.725232\nv -22.783129 104.960007 0.420618\nv -22.584242 103.282227 4.046473\nv -22.005749 103.535545 -0.356128\nv -22.289455 101.249710 3.368461\nv -21.104254 100.701691 2.965601\nv -20.963459 99.300407 5.997738\nv -21.774773 99.634483 6.481232\nv -20.437485 98.735107 7.629031\nv -21.049866 98.947845 8.108858\nv -20.905478 98.847046 8.305265\nv -20.304390 98.644630 7.838060\nv -19.417912 98.133369 8.858746\nv -19.789677 98.162460 9.437785\nv -19.572838 98.080742 9.535403\nv -19.208157 98.053215 8.969969\nv -17.354946 97.555794 9.285430\nv -17.716221 97.628838 9.777460\nv -17.112791 98.349968 9.625538\nv -17.308599 98.528168 9.082318\nv -18.906179 99.025352 9.423280\nv -18.562794 99.070549 8.936002\nv -17.521238 97.881897 8.800344\nv -18.835388 98.249718 8.539461\nv -19.034626 98.338844 8.417322\nv -19.641617 98.828102 7.526909\nv -19.760347 98.928413 7.315145\nv -20.167364 99.539909 5.676567\nv -19.900419 100.730919 2.734913\nv -19.654203 100.971901 6.562263\nv -18.568647 102.553543 3.025248\nv -17.959000 104.129143 -0.980547\nv -17.768106 105.517372 -0.015961\nv -18.300552 104.569641 -1.975793\nv -18.229446 106.123123 -1.516509\nv -19.023310 106.136505 -4.765839\nv -18.884289 107.506248 -4.005524\nv -19.232662 108.730080 -7.042399\nv -19.020920 109.944611 -5.989255\nv -18.311964 110.797226 -5.251908\nv -18.228333 108.519341 -3.516854\nv -18.441082 109.840721 -2.754148\nv -18.459230 111.979294 -4.225674\nv -19.798107 110.380791 -2.547499\nv -19.652304 112.640083 -3.648106\nv -21.201654 110.486229 -2.026580\nv -21.246763 112.739861 -3.555933\nv -22.993052 108.498833 -2.719722\nv -23.015020 111.355682 -4.750798\nv -23.477495 107.054749 -3.597434\nv -23.683786 109.854179 -6.051353\nv -23.187931 108.460960 -7.262056\nv -22.835588 105.703606 -4.545321\nv -21.999945 108.160942 -7.526561\nv -21.712038 105.303291 -4.906374\nv -20.557138 108.081291 -7.600732\nv -20.298285 105.321953 -5.080599\nv -19.524569 103.577095 -2.034681\nv -19.281923 103.060028 -1.043084\nv -20.790972 102.982155 -0.766493\nv -21.977062 103.984283 -1.342044\nv -22.736330 105.310928 -0.598667\nv -22.249483 107.286064 -0.093684\nv -20.633987 109.299011 0.010293\nv -18.561367 109.340744 0.727475\nv -19.107285 109.406143 -0.303108\nv -17.182232 108.645164 0.241064\nv -17.906618 108.753281 -0.779323\nv -17.083361 107.015388 -0.275250\nv -18.114723 105.524803 3.893093\nv -17.881840 106.482704 8.471236\nv -18.679333 106.738060 9.231292\nv -19.832336 106.663139 9.504215\nv -21.021544 104.830231 9.052030\nv -21.481344 102.952019 8.229349\nv -21.804373 101.265411 7.169002\nv -21.034220 99.884285 8.535503\nv -20.879078 99.740982 8.699175\nv -19.576227 98.907509 9.782914\nv -19.359280 98.805450 9.863651\nv -17.609083 98.187050 9.995308\nv -19.110523 99.134270 9.324437\nv -18.752918 99.188469 8.825676\nv -19.453527 99.951775 7.907082\nv -20.126141 99.937233 8.298296\nv -20.255953 100.080070 8.118407\nv -19.557358 100.100296 7.712302\nv -20.603058 101.023445 7.015978\nv -19.936909 99.936989 9.099360\nv -19.108196 100.196449 8.684280\nv -19.807774 99.812462 9.290793\nv -18.988028 100.084663 8.889921\nv -18.587036 98.969589 10.433309\nv -20.557699 99.964317 9.815605\nv -19.070868 98.975533 11.078537\nv -18.851088 98.875900 11.178615\nv -18.379118 98.867661 10.550390\nv -16.491371 98.288261 11.046000\nv -16.966330 98.322876 11.499227\nv -16.254900 99.342430 11.494210\nv -16.768883 99.024315 11.819242\nv -18.539968 99.874077 11.641224\nv -18.750904 100.001671 11.559605\nv -20.216372 101.131981 10.447224\nv -20.701538 100.084236 9.630715\nv -20.357780 101.280899 10.283742\nv -19.331137 101.335014 9.980295\nv -19.457306 101.481438 9.802021\nv -18.609888 101.112297 9.444986\nv -18.725368 101.263268 9.263952\nv -19.428965 102.758682 7.411986\nv -20.177402 102.720345 8.071156\nv -19.519444 101.367973 10.537334\nv -18.709513 101.464928 10.106424\nv -19.390583 101.249321 10.730927\nv -18.588346 101.353264 10.308594\nv -17.733162 100.146294 12.268170\nv -20.201744 101.448669 11.302280\nv -18.254383 100.233276 12.891383\nv -18.043863 100.128624 13.015539\nv -17.537308 100.038841 12.409687\nv -15.533504 99.111237 13.545909\nv -16.008617 99.250572 13.965205\nv -15.185759 100.245842 14.071363\nv -15.802469 100.001518 14.293250\nv -17.747532 101.133339 13.467009\nv -17.948696 101.262352 13.354057\nv -19.895222 102.720909 11.754598\nv -20.350452 101.558159 11.116702\nv -20.029411 102.868401 11.583040\nv -18.983982 102.949554 11.328488\nv -19.103701 103.090599 11.144026\nv -18.273563 102.654823 10.771112\nv -18.386007 102.797020 10.581017\nv -19.205397 104.718307 7.893387\nv -19.789064 104.594322 8.844087\nv -18.993055 103.450111 10.906176\nv -19.790209 103.570137 11.598031\nv -19.628117 103.451073 11.762913\nv -18.848619 103.322784 11.080660\nv -17.340542 102.274071 12.154015\nv -17.809307 102.302597 12.826263\nv -17.593864 102.179024 12.922918\nv -17.140434 102.145515 12.271019\nv -15.119991 100.954681 13.198359\nv -15.608115 101.102242 13.621949\nv -14.716628 102.138222 13.789561\nv -15.316400 101.928268 14.042395\nv -17.099112 103.200615 13.284437\nv -17.294834 103.346443 13.182294\nv -18.982492 104.701500 12.067080\nv -19.117044 104.855530 11.904968\nv -18.318661 105.088005 11.457877\nv -17.707268 104.937080 10.886881\nv -18.193487 103.606514 10.404160\nv -18.055338 103.486305 10.588161\nv -17.604458 104.784386 11.073109\nv -18.202339 104.931511 11.630241\nv -16.780312 103.655334 12.767265\nv -16.429928 103.586143 12.221060\nv -16.822453 102.522369 11.678032\nv -16.636337 102.389725 11.810394\nv -16.253693 103.434181 12.346616\nv -16.594286 103.507286 12.883090\nv -14.623205 102.183815 13.180477\nv -14.931334 101.305191 12.734916\nv -18.371292 103.947525 3.634737\nv -17.630320 107.288841 -1.280550\nv -20.905190 103.466812 -1.755175\nv -17.198296 100.378487 11.814021\nv -16.882072 101.468391 12.298309\nv -17.342916 101.604652 12.882944\nv -17.154808 101.472801 13.014328\nv -16.704609 101.341232 12.446060\nv -17.015593 100.269890 11.969578\nv -15.301414 99.413803 13.093613\nv -15.001475 100.290245 13.525256\nv -18.087343 99.374161 9.976269\nv -17.785223 100.264977 10.409544\nv -18.215565 100.352776 11.025047\nv -18.015570 100.222458 11.129117\nv -17.599092 100.127998 10.527081\nv -17.891727 99.267494 10.108040\nv -16.425125 98.776253 10.595114\nv -16.242682 99.342018 10.865849\nvt 0.993746 0.377331\nvt 0.984274 0.366115\nvt 0.987662 0.378387\nvt 0.697346 0.401186\nvt 0.706796 0.392679\nvt 0.700495 0.388564\nvt 0.704318 0.400482\nvt 0.726683 0.395249\nvt 0.721644 0.385111\nvt 0.725228 0.385327\nvt 0.729349 0.393025\nvt 0.722135 0.408521\nvt 0.716945 0.415585\nvt 0.723605 0.410603\nvt 0.719612 0.416057\nvt 0.747760 0.420556\nvt 0.738857 0.434696\nvt 0.969403 0.396187\nvt 0.961053 0.423593\nvt 0.978484 0.401632\nvt 0.950104 0.414551\nvt 0.945213 0.437702\nvt 0.934406 0.428597\nvt 0.919833 0.412106\nvt 0.939910 0.388588\nvt 0.962031 0.385539\nvt 0.964464 0.384651\nvt 0.971180 0.394473\nvt 0.979968 0.399515\nvt 0.982536 0.372393\nvt 0.961855 0.372987\nvt 0.959715 0.373394\nvt 0.950214 0.373749\nvt 0.753045 0.394400\nvt 0.732329 0.380080\nvt 0.767090 0.433785\nvt 0.773344 0.400914\nvt 0.778954 0.442165\nvt 0.804877 0.432887\nvt 0.797969 0.397565\nvt 0.822848 0.428540\nvt 0.816288 0.393237\nvt 0.838777 0.427265\nvt 0.835203 0.387488\nvt 0.849323 0.385086\nvt 0.845291 0.356207\nvt 0.832307 0.357955\nvt 0.841743 0.339759\nvt 0.832002 0.339285\nvt 0.832028 0.336783\nvt 0.841283 0.337369\nvt 0.838700 0.322195\nvt 0.832613 0.321691\nvt 0.832607 0.319265\nvt 0.838295 0.319688\nvt 0.835182 0.299431\nvt 0.831863 0.302478\nvt 0.825136 0.297565\nvt 0.844736 0.301419\nvt 0.844883 0.296242\nvt 0.857058 0.312407\nvt 0.852076 0.315188\nvt 0.839260 0.304110\nvt 0.844467 0.319202\nvt 0.845295 0.321539\nvt 0.850622 0.336184\nvt 0.851400 0.338460\nvt 0.856461 0.354312\nvt 0.861754 0.386423\nvt 0.877154 0.352174\nvt 0.881665 0.392256\nvt 0.879861 0.430471\nvt 0.895140 0.428075\nvt 0.878601 0.441998\nvt 0.892546 0.443643\nvt 0.876422 0.467606\nvt 0.890079 0.468429\nvt 0.874243 0.493215\nvt 0.887612 0.493215\nvt 0.898713 0.493215\nvt 0.901300 0.468885\nvt 0.914541 0.469928\nvt 0.912104 0.493215\nvt 0.926248 0.473000\nvt 0.924923 0.493215\nvt 0.777815 0.493214\nvt 0.788828 0.470616\nvt 0.774519 0.475336\nvt 0.792147 0.493214\nvt 0.810045 0.467981\nvt 0.813397 0.493214\nvt 0.827193 0.466755\nvt 0.829384 0.493214\nvt 0.843415 0.493214\nvt 0.841922 0.466748\nvt 0.851245 0.493214\nvt 0.851582 0.466764\nvt 0.861696 0.493215\nvt 0.863173 0.467105\nvt 0.864651 0.440995\nvt 0.865394 0.427650\nvt 0.851636 0.426626\nvt 0.840429 0.440282\nvt 0.825002 0.440297\nvt 0.806694 0.442747\nvt 0.785509 0.448018\nvt 0.762723 0.451863\nvt 0.771222 0.457457\nvt 0.920691 0.438203\nvt 0.927573 0.452785\nvt 0.931385 0.446349\nvt 0.916978 0.446641\nvt 0.906389 0.434874\nvt 0.753145 0.447725\nvt 0.910549 0.395983\nvt 0.944324 0.359463\nvt 0.953189 0.359732\nvt 0.758004 0.370058\nvt 0.744729 0.369419\nvt 0.777280 0.364488\nvt 0.797158 0.361121\nvt 0.815656 0.362043\nvt 0.823358 0.339150\nvt 0.824318 0.336994\nvt 0.825495 0.320386\nvt 0.825991 0.318272\nvt 0.827717 0.301978\nvt 0.822079 0.316137\nvt 0.822734 0.318800\nvt 0.858454 0.314449\nvt 0.853261 0.317369\nvt 0.861677 0.332578\nvt 0.866684 0.327959\nvt 0.867742 0.329794\nvt 0.863459 0.335139\nvt 0.873203 0.339909\nvt 0.870801 0.325210\nvt 0.877706 0.325839\nvt 0.870459 0.323285\nvt 0.877560 0.323310\nvt 0.866378 0.301314\nvt 0.814549 0.306647\nvt 0.811983 0.330197\nvt 0.817912 0.328789\nvt 0.811112 0.307917\nvt 0.810067 0.305791\nvt 0.814963 0.303828\nvt 0.810835 0.282897\nvt 0.807965 0.288060\nvt 0.795659 0.284233\nvt 0.801325 0.288318\nvt 0.799414 0.306143\nvt 0.798382 0.308396\nvt 0.798861 0.330516\nvt 0.813218 0.332350\nvt 0.817001 0.331221\nvt 0.798302 0.332943\nvt 0.793354 0.329966\nvt 0.794037 0.332580\nvt 0.889094 0.320664\nvt 0.894703 0.320787\nvt 0.894349 0.318994\nvt 0.889745 0.323164\nvt 0.897754 0.351619\nvt 0.896814 0.332107\nvt 0.898425 0.320202\nvt 0.904603 0.321478\nvt 0.898684 0.318387\nvt 0.905093 0.319006\nvt 0.902026 0.295486\nvt 0.785925 0.304046\nvt 0.786758 0.327916\nvt 0.791077 0.326323\nvt 0.782276 0.305804\nvt 0.781055 0.303729\nvt 0.785971 0.301234\nvt 0.779989 0.278040\nvt 0.775597 0.283522\nvt 0.762220 0.281377\nvt 0.768663 0.284897\nvt 0.770515 0.305775\nvt 0.770439 0.308156\nvt 0.774083 0.331730\nvt 0.787873 0.330206\nvt 0.791126 0.329036\nvt 0.774233 0.334250\nvt 0.769489 0.331342\nvt 0.770169 0.333939\nvt 0.918600 0.322072\nvt 0.926114 0.325608\nvt 0.926284 0.323578\nvt 0.918580 0.324491\nvt 0.920565 0.354188\nvt 0.924017 0.340951\nvt 0.931537 0.323133\nvt 0.767926 0.334747\nvt 0.776691 0.361190\nvt 0.764410 0.336329\nvt 0.762541 0.334375\nvt 0.767854 0.331904\nvt 0.758534 0.311496\nvt 0.754683 0.313896\nvt 0.752787 0.312208\nvt 0.758122 0.308907\nvt 0.745408 0.287643\nvt 0.744333 0.293141\nvt 0.731682 0.293269\nvt 0.736782 0.296115\nvt 0.742237 0.315892\nvt 0.742103 0.318393\nvt 0.750340 0.339960\nvt 0.749743 0.342660\nvt 0.743688 0.344323\nvt 0.952908 0.332655\nvt 0.960494 0.333581\nvt 0.938718 0.326505\nvt 0.939946 0.324267\nvt 0.953629 0.330325\nvt 0.961101 0.331237\nvt 0.741987 0.342361\nvt 0.737065 0.319390\nvt 0.960397 0.307742\nvt 0.966383 0.309103\nvt 0.949134 0.303815\nvt 0.950119 0.301520\nvt 0.961060 0.305349\nvt 0.966864 0.306636\nvt 0.735690 0.317062\nvt 0.966130 0.285353\nvt 0.970574 0.282728\nvt 0.957948 0.282343\nvt 0.956433 0.277603\nvt 0.943931 0.298774\nvt 0.942679 0.301053\nvt 0.932481 0.321130\nvt 0.895802 0.392327\nvt 0.903886 0.444556\nvt 0.851918 0.440313\nvt 0.908810 0.296921\nvt 0.920462 0.298407\nvt 0.927581 0.299140\nvt 0.765884 0.307496\nvt 0.765167 0.304946\nvt 0.920626 0.295942\nvt 0.927522 0.296474\nvt 0.909250 0.294502\nvt 0.913244 0.274148\nvt 0.921779 0.274672\nvt 0.925130 0.270285\nvt 0.910802 0.268862\nvt 0.902655 0.292910\nvt 0.796722 0.357180\nvt 0.874436 0.301118\nvt 0.883996 0.299235\nvt 0.890029 0.297738\nvt 0.793291 0.307326\nvt 0.793491 0.304796\nvt 0.883330 0.296854\nvt 0.889264 0.295324\nvt 0.874160 0.298673\nvt 0.872675 0.281098\nvt 0.877922 0.280152\nvt 0.880866 0.275831\nvt 0.868285 0.277360\nvt 0.866275 0.298789\nvt 0.816882 0.349406\nvt 0.820627 0.336291\nvt 0.820313 0.333518\nvt -22.076759 54.249214\nvt -21.650667 57.049053\nvt -22.844391 57.488297\nvt -21.724340 54.575508\nvt -21.730633 56.822567\nvt -22.996489 57.242767\nvn -0.215522 0.419691 0.881680\nvn -0.077273 -0.929685 0.360057\nvn 0.570788 0.258339 0.779382\nvn -0.758538 -0.353679 0.547227\nvn -0.779168 0.314035 0.542436\nvn -0.771477 -0.618976 0.147160\nvn 0.021851 -0.990143 -0.138279\nvn -0.178167 -0.950499 -0.254494\nvn -0.835414 -0.419233 0.355358\nvn -0.574450 0.631550 0.520676\nvn 0.130741 0.878018 0.460372\nvn -0.404248 0.660054 0.633137\nvn 0.189276 0.880215 0.435163\nvn -0.271645 0.887997 0.370952\nvn 0.232154 0.964965 0.122227\nvn 0.889096 0.405957 0.211341\nvn 0.948546 0.314035 -0.039949\nvn 0.166601 0.969543 -0.179388\nvn 0.732627 0.615314 -0.290902\nvn 0.929472 -0.362438 -0.068575\nvn 0.870479 -0.484756 0.085238\nvn 0.677419 -0.723014 -0.135166\nvn 0.694662 -0.707785 -0.128208\nvn 0.848842 0.436628 0.297952\nvn 0.790155 -0.552263 0.265694\nvn -0.096622 0.995025 -0.023194\nvn -0.827021 0.368236 0.424726\nvn -0.464431 0.884945 0.034120\nvn -0.869839 0.435804 0.231056\nvn -0.471816 0.881039 -0.032929\nvn -0.885250 0.447554 0.126438\nvn -0.964629 0.161016 0.208625\nvn -0.999908 -0.005158 -0.010071\nvn -0.992676 -0.103427 0.062319\nvn -0.785455 -0.538835 -0.304422\nvn -0.773095 -0.573992 -0.269845\nvn -0.230934 -0.852626 -0.468642\nvn -0.258919 -0.904172 -0.339671\nvn -0.857448 -0.512070 0.050203\nvn -0.215491 -0.940184 -0.263741\nvn -0.797082 -0.547777 0.254036\nvn -0.664083 -0.716422 0.213782\nvn -0.140843 -0.933714 -0.329051\nvn -0.211951 -0.933042 -0.290628\nvn -0.586047 -0.624592 0.516129\nvn -0.342692 -0.847682 0.404889\nvn -0.172765 -0.920530 -0.350322\nvn 0.362865 -0.888760 -0.279946\nvn 0.280038 -0.676931 0.680654\nvn 0.739891 0.365398 0.564806\nvn 0.778191 0.532548 -0.332804\nvn 0.261391 0.861721 0.434858\nvn 0.479446 0.795618 -0.370251\nvn 0.426374 -0.101108 -0.898862\nvn 0.233711 -0.405957 -0.883480\nvn 0.435621 -0.520951 -0.734001\nvn 0.559832 -0.557329 -0.613117\nvn 0.628803 -0.626728 -0.460189\nvn 0.430464 -0.823115 -0.370312\nvn 0.584613 -0.763970 -0.272988\nvn 0.914853 -0.385083 -0.121189\nvn 0.938902 -0.335856 0.075014\nvn 0.813074 -0.499466 -0.298959\nvn 0.977111 -0.188299 -0.098880\nvn 0.879727 -0.260048 -0.398022\nvn 0.907743 -0.196600 -0.370525\nvn 0.840358 -0.337779 -0.423841\nvn 0.934263 -0.176061 -0.310038\nvn 0.839442 -0.323954 -0.436262\nvn 0.936125 -0.188849 -0.296609\nvn 0.972839 -0.123905 -0.195471\nvn 0.962676 -0.078890 -0.258858\nvn 0.820276 0.507065 0.264504\nvn 0.710868 0.351909 0.608936\nvn 0.334880 0.704947 0.625172\nvn 0.335765 0.440260 0.832698\nvn -0.283181 0.636525 0.717338\nvn -0.473128 0.494980 0.728751\nvn -0.849757 0.301737 0.432234\nvn -0.889492 0.256569 0.378033\nvn -0.987396 -0.143437 0.066775\nvn -0.997711 -0.016297 0.065249\nvn -0.816858 -0.442915 -0.369457\nvn -0.657674 -0.637989 -0.400464\nvn -0.278664 -0.673666 -0.684439\nvn -0.270058 -0.778161 -0.567003\nvn 0.133213 -0.662099 -0.737449\nvn 0.254250 -0.735801 -0.627613\nvn 0.379955 -0.768517 -0.514756\nvn 0.170934 -0.855342 -0.489029\nvn -0.324595 -0.835871 -0.442610\nvn -0.690695 -0.680135 -0.245552\nvn -0.989837 -0.135868 0.041780\nvn -0.883053 0.391522 0.258644\nvn -0.328623 0.903226 0.275979\nvn 0.175390 0.971648 -0.158483\nvn 0.300333 0.946196 0.120396\nvn 0.757469 0.561693 -0.332682\nvn 0.844783 0.493576 -0.206610\nvn 0.913480 -0.218024 -0.343486\nvn 0.834712 -0.542802 0.092563\nvn 0.992279 -0.114658 0.046815\nvn 0.373333 0.845027 0.382733\nvn -0.222114 0.837764 0.498764\nvn -0.846217 0.272866 0.457595\nvn -0.923093 0.051515 0.381054\nvn -0.917447 -0.079897 0.389721\nvn -0.537461 0.426344 0.727531\nvn -0.472549 0.406110 0.782128\nvn -0.325968 0.406903 0.853298\nvn -0.108890 0.309854 0.944517\nvn 0.142399 -0.098270 0.984893\nvn 0.230079 0.864650 0.446547\nvn 0.678579 0.695517 -0.236061\nvn 0.789239 0.613056 -0.035096\nvn 0.196081 0.837092 0.510666\nvn 0.221809 0.797662 0.560778\nvn 0.840388 0.529588 0.115177\nvn 0.334758 0.468001 0.817835\nvn -0.216010 -0.903104 -0.371105\nvn 0.604419 -0.580737 -0.545305\nvn -0.150853 -0.879971 -0.450392\nvn 0.529588 -0.502213 -0.683584\nvn -0.190527 -0.887265 -0.420026\nvn -0.674429 -0.720267 0.162175\nvn -0.604266 -0.625813 0.493118\nvn -0.390881 -0.856594 0.336802\nvn -0.120212 -0.855831 -0.503067\nvn 0.420209 -0.871181 -0.253822\nvn 0.252602 -0.714133 0.652791\nvn 0.717795 0.240974 0.653188\nvn 0.100528 -0.180059 0.978484\nvn -0.133000 0.230659 0.963866\nvn -0.294259 0.355602 0.887082\nvn -0.410535 0.430525 0.803797\nvn -0.828669 -0.491745 0.267312\nvn -0.492691 0.499771 0.712333\nvn 0.321848 0.831477 0.452773\nvn 0.331950 0.824458 0.458327\nvn 0.826441 0.535295 -0.174352\nvn 0.870174 0.488662 -0.063173\nvn 0.950926 -0.289682 -0.108676\nvn 0.567797 0.641255 0.516098\nvn -0.276650 -0.893338 -0.354076\nvn 0.537400 -0.640309 -0.548753\nvn -0.236763 -0.895871 -0.375896\nvn 0.467971 -0.568590 -0.676504\nvn -0.260109 -0.905698 -0.334666\nvn -0.678854 -0.703665 0.209723\nvn -0.644734 -0.585131 0.491836\nvn -0.532701 -0.776116 0.337352\nvn -0.193884 -0.898679 -0.393414\nvn 0.289193 -0.956603 -0.034822\nvn 0.033235 -0.686331 0.726493\nvn 0.559832 0.210486 0.801386\nvn -0.151097 -0.090701 0.984344\nvn -0.281716 0.295572 0.912809\nvn -0.344920 0.376843 0.859645\nvn -0.420026 0.456191 0.784478\nvn -0.844111 -0.452223 0.287912\nvn -0.505844 0.536363 0.675558\nvn 0.311228 0.849940 0.425092\nvn 0.353282 0.829829 0.431867\nvn 0.819727 0.526078 -0.226356\nvn 0.885769 0.456710 -0.082461\nvn 0.895016 -0.419660 -0.150853\nvn 0.665639 0.595416 0.449843\nvn -0.281930 -0.891171 -0.355327\nvn -0.836940 -0.340312 0.428571\nvn -0.673696 -0.685202 0.276772\nvn -0.251747 -0.866939 -0.430128\nvn -0.305582 -0.864467 -0.399091\nvn -0.620167 -0.530412 0.577929\nvn -0.566881 -0.756310 0.326456\nvn -0.270180 -0.843287 -0.464553\nvn 0.243660 -0.957762 -0.152623\nvn 0.025300 -0.725333 0.687918\nvn 0.634663 0.170812 0.753655\nvn -0.093905 -0.086306 0.991821\nvn -0.187719 0.333018 0.924009\nvn -0.215979 0.398999 0.891110\nvn -0.275307 0.500992 0.820460\nvn -0.367534 0.617817 0.695090\nvn 0.328898 0.799676 0.502304\nvn 0.922575 0.382916 -0.047029\nvn 0.445936 -0.697684 -0.560656\nvn 0.394391 -0.549730 -0.736351\nvn 0.829981 0.520554 -0.200262\nvn 0.336100 0.806543 0.486312\nvn 0.347636 0.807337 0.476760\nvn 0.756615 0.587024 -0.287912\nvn 0.339579 -0.451766 -0.824946\nvn 0.293954 -0.389050 -0.873043\nvn 0.697653 0.626972 -0.346599\nvn 0.354320 0.805048 0.475723\nvn 0.949767 0.306619 -0.062105\nvn 0.646718 -0.244331 -0.722495\nvn 0.969024 -0.185827 0.162542\nvn 0.921445 -0.033815 -0.386944\nvn -0.198401 -0.877712 -0.436140\nvn 0.424177 -0.492508 -0.759911\nvn 0.745201 0.589038 -0.312510\nvn 0.292367 0.855922 0.426466\nvn 0.284188 0.848842 0.445692\nvn 0.679220 0.635639 -0.366863\nvn 0.377392 -0.443007 -0.813196\nvn 0.696188 -0.294595 -0.654592\nvn 0.943663 0.330607 0.013276\nvn 0.460524 -0.409650 -0.787439\nvn 0.735649 0.608081 -0.298349\nvn 0.323283 0.840297 0.435163\nvn 0.335398 0.844081 0.418317\nvn 0.587359 0.700156 -0.405896\nvn 0.322214 -0.304086 -0.896481\nvn 0.554369 -0.108127 -0.825190\nvn 0.876644 0.430097 -0.215583\ng mesh10.002_mesh10-geometry_male-02-1noCullingID_male-02-1noCulling.JP\nusemtl male-02-1noCullingID_male-02-1noCulling.JP\ns 1\nf 2531/3002/2554 2532/3003/2555 2533/3004/2556\nf 2531/3005/2554 2534/3006/2557 2532/3007/2555\nf 2534/3006/2557 2531/3005/2554 2535/3008/2558\nf 2536/3009/2559 2534/3006/2557 2535/3008/2558\nf 2532/3007/2555 2534/3006/2557 2536/3009/2559\nf 2532/3007/2555 2536/3009/2559 2537/3010/2560\nf 2537/3010/2560 2536/3009/2559 2538/3011/2561\nf 2538/3011/2561 2536/3009/2559 2539/3012/2562\nf 2539/3012/2562 2536/3009/2559 2540/3013/2563\nf 2536/3009/2559 2535/3008/2558 2540/3013/2563\nf 2531/3005/2554 2540/3013/2563 2535/3008/2558\nf 2540/3013/2563 2531/3005/2554 2541/3014/2564\nf 2541/3014/2564 2542/3015/2565 2540/3013/2563\nf 2543/3016/2566 2542/3015/2565 2541/3014/2564\nf 2543/3016/2566 2544/3017/2567 2542/3015/2565\nf 2543/3016/2566 2545/3018/2568 2544/3017/2567\nf 2546/3019/2569 2545/3020/2568 2543/3021/2566\nf 2547/3022/2570 2545/3020/2568 2546/3019/2569\nf 2547/3022/2570 2548/3023/2571 2545/3020/2568\nf 2547/3022/2570 2549/3024/2572 2548/3023/2571\nf 2549/3024/2572 2547/3022/2570 2550/3025/2573\nf 2550/3025/2573 2547/3022/2570 2551/3026/2574\nf 2547/3022/2570 2552/3027/2575 2551/3026/2574\nf 2547/3022/2570 2546/3019/2569 2552/3027/2575\nf 2552/3027/2575 2546/3019/2569 2553/3028/2576\nf 2553/3028/2576 2546/3019/2569 2554/3029/2577\nf 2546/3019/2569 2543/3021/2566 2554/3029/2577\nf 2554/3029/2577 2543/3021/2566 2541/3030/2564\nf 2554/3029/2577 2541/3030/2564 2533/3004/2556\nf 2541/3030/2564 2531/3002/2554 2533/3004/2556\nf 2554/3029/2577 2533/3004/2556 2555/3031/2578\nf 2533/3004/2556 2532/3003/2555 2555/3031/2578\nf 2553/3028/2576 2555/3031/2578 2532/3003/2555\nf 2553/3028/2576 2554/3029/2577 2555/3031/2578\nf 2553/3028/2576 2532/3003/2555 2537/3032/2560\nf 2553/3028/2576 2537/3032/2560 2552/3027/2575\nf 2552/3027/2575 2537/3032/2560 2538/3033/2561\nf 2552/3027/2575 2538/3033/2561 2551/3026/2574\nf 2551/3026/2574 2538/3033/2561 2556/3034/2579\nf 2538/3011/2561 2557/3035/2580 2556/3036/2579\nf 2538/3011/2561 2539/3012/2562 2557/3035/2580\nf 2542/3015/2565 2557/3035/2580 2539/3012/2562\nf 2542/3015/2565 2544/3017/2567 2557/3035/2580\nf 2558/3037/2581 2557/3035/2580 2544/3017/2567\nf 2558/3037/2581 2559/3038/2582 2557/3035/2580\nf 2560/3039/2583 2559/3038/2582 2558/3037/2581\nf 2561/3040/2584 2559/3038/2582 2560/3039/2583\nf 2561/3040/2584 2562/3041/2585 2559/3038/2582\nf 2563/3042/2586 2562/3041/2585 2561/3040/2584\nf 2563/3042/2586 2564/3043/2587 2562/3041/2585\nf 2565/3044/2588 2564/3043/2587 2563/3042/2586\nf 2565/3044/2588 2566/3045/2589 2564/3043/2587\nf 2567/3046/2590 2566/3045/2589 2565/3044/2588\nf 2568/3047/2591 2566/3045/2589 2567/3046/2590\nf 2568/3047/2591 2569/3048/2592 2566/3045/2589\nf 2570/3049/2593 2569/3048/2592 2568/3047/2591\nf 2570/3049/2593 2571/3050/2594 2569/3048/2592\nf 2570/3049/2593 2572/3051/2595 2571/3050/2594\nf 2573/3052/2596 2572/3051/2595 2570/3049/2593\nf 2574/3053/2597 2572/3051/2595 2573/3052/2596\nf 2574/3053/2597 2575/3054/2598 2572/3051/2595\nf 2574/3053/2597 2576/3055/2599 2575/3054/2598\nf 2577/3056/2600 2576/3055/2599 2574/3053/2597\nf 2578/3057/2601 2576/3055/2599 2577/3056/2600\nf 2578/3057/2601 2579/3058/2602 2576/3055/2599\nf 2578/3057/2601 2580/3059/2603 2579/3058/2602\nf 2581/3060/2604 2580/3061/2603 2578/3057/2601\nf 2580/3061/2603 2581/3060/2604 2582/3062/2605\nf 2581/3060/2604 2583/3063/2606 2582/3062/2605\nf 2583/3063/2606 2581/3060/2604 2584/3064/2607\nf 2584/3064/2607 2581/3060/2604 2578/3057/2601\nf 2578/3057/2601 2585/3065/2608 2584/3064/2607\nf 2578/3057/2601 2577/3056/2600 2585/3065/2608\nf 2585/3065/2608 2577/3056/2600 2586/3066/2609\nf 2586/3066/2609 2577/3056/2600 2574/3053/2597\nf 2586/3066/2609 2574/3053/2597 2587/3067/2610\nf 2574/3053/2597 2573/3052/2596 2587/3067/2610\nf 2587/3067/2610 2573/3052/2596 2588/3068/2611\nf 2588/3068/2611 2573/3052/2596 2570/3049/2593\nf 2588/3068/2611 2570/3049/2593 2589/3069/2612\nf 2589/3069/2612 2570/3049/2593 2568/3047/2591\nf 2589/3069/2612 2568/3047/2591 2567/3046/2590\nf 2590/3070/2613 2589/3069/2612 2567/3046/2590\nf 2590/3070/2613 2591/3071/2614 2589/3069/2612\nf 2590/3070/2613 2592/3072/2615 2591/3071/2614\nf 2593/3073/2616 2592/3072/2615 2590/3070/2613\nf 2593/3073/2616 2594/3074/2617 2592/3072/2615\nf 2595/3075/2618 2594/3074/2617 2593/3073/2616\nf 2595/3075/2618 2596/3076/2619 2594/3074/2617\nf 2597/3077/2620 2596/3076/2619 2595/3075/2618\nf 2597/3077/2620 2598/3078/2621 2596/3076/2619\nf 2599/3079/2622 2598/3078/2621 2597/3077/2620\nf 2599/3079/2622 2600/3080/2623 2598/3078/2621\nf 2600/3080/2623 2601/3081/2624 2598/3078/2621\nf 2601/3081/2624 2602/3082/2625 2598/3078/2621\nf 2601/3081/2624 2603/3083/2626 2602/3082/2625\nf 2601/3081/2624 2604/3084/2627 2603/3083/2626\nf 2604/3084/2627 2605/3085/2628 2603/3083/2626\nf 2606/3086/2629 2605/3085/2628 2604/3084/2627\nf 2606/3087/2629 2607/3088/2630 2605/3089/2628\nf 2608/3090/2631 2607/3088/2630 2606/3087/2629\nf 2608/3090/2631 2609/3091/2632 2607/3088/2630\nf 2610/3092/2633 2609/3091/2632 2608/3090/2631\nf 2610/3092/2633 2611/3093/2634 2609/3091/2632\nf 2612/3094/2635 2611/3093/2634 2610/3092/2633\nf 2613/3095/2636 2611/3093/2634 2612/3094/2635\nf 2613/3095/2636 2614/3096/2637 2611/3093/2634\nf 2615/3097/2638 2614/3096/2637 2613/3095/2636\nf 2615/3097/2638 2616/3098/2639 2614/3096/2637\nf 2615/3097/2638 2617/3099/2640 2616/3098/2639\nf 2617/3099/2640 2618/3100/2641 2616/3098/2639\nf 2599/3079/2622 2618/3100/2641 2617/3099/2640\nf 2599/3079/2622 2597/3077/2620 2618/3100/2641\nf 2597/3077/2620 2619/3101/2642 2618/3100/2641\nf 2595/3075/2618 2619/3101/2642 2597/3077/2620\nf 2593/3073/2616 2619/3101/2642 2595/3075/2618\nf 2593/3073/2616 2620/3102/2643 2619/3101/2642\nf 2593/3073/2616 2590/3070/2613 2620/3102/2643\nf 2620/3102/2643 2590/3070/2613 2567/3046/2590\nf 2620/3102/2643 2567/3046/2590 2621/3103/2644\nf 2621/3103/2644 2567/3046/2590 2565/3044/2588\nf 2621/3103/2644 2565/3044/2588 2622/3104/2645\nf 2622/3104/2645 2565/3044/2588 2623/3105/2646\nf 2623/3105/2646 2565/3044/2588 2563/3042/2586\nf 2623/3105/2646 2563/3042/2586 2624/3106/2647\nf 2624/3106/2647 2563/3042/2586 2561/3040/2584\nf 2624/3106/2647 2561/3040/2584 2625/3107/2648\nf 2625/3107/2648 2561/3040/2584 2560/3039/2583\nf 2626/3108/2649 2625/3107/2648 2560/3039/2583\nf 2626/3108/2649 2627/3109/2650 2625/3107/2648\nf 2628/3110/2651 2627/3111/2650 2626/3112/2649\nf 2628/3110/2651 2629/3113/2652 2627/3111/2650\nf 2629/3113/2652 2628/3110/2651 2630/3114/2653\nf 2630/3114/2653 2628/3110/2651 2550/3025/2573\nf 2628/3110/2651 2549/3024/2572 2550/3025/2573\nf 2549/3024/2572 2628/3110/2651 2626/3112/2649\nf 2549/3024/2572 2626/3112/2649 2548/3023/2571\nf 2548/3115/2571 2626/3108/2649 2560/3039/2583\nf 2548/3115/2571 2560/3039/2583 2558/3037/2581\nf 2545/3018/2568 2548/3115/2571 2558/3037/2581\nf 2545/3018/2568 2558/3037/2581 2544/3017/2567\nf 2550/3025/2573 2631/3116/2654 2630/3114/2653\nf 2550/3025/2573 2551/3026/2574 2631/3116/2654\nf 2631/3116/2654 2551/3026/2574 2632/3117/2655\nf 2551/3026/2574 2633/3118/2656 2632/3117/2655\nf 2551/3026/2574 2556/3034/2579 2633/3118/2656\nf 2556/3036/2579 2634/3119/2657 2633/3120/2656\nf 2556/3036/2579 2557/3035/2580 2634/3119/2657\nf 2557/3035/2580 2635/3121/2658 2634/3119/2657\nf 2559/3038/2582 2635/3121/2658 2557/3035/2580\nf 2559/3038/2582 2636/3122/2659 2635/3121/2658\nf 2562/3041/2585 2636/3122/2659 2559/3038/2582\nf 2562/3041/2585 2637/3123/2660 2636/3122/2659\nf 2564/3043/2587 2637/3123/2660 2562/3041/2585\nf 2564/3043/2587 2569/3048/2592 2637/3123/2660\nf 2566/3045/2589 2569/3048/2592 2564/3043/2587\nf 2569/3048/2592 2638/3124/2661 2637/3123/2660\nf 2569/3048/2592 2571/3050/2594 2638/3124/2661\nf 2571/3050/2594 2639/3125/2662 2638/3124/2661\nf 2571/3050/2594 2572/3051/2595 2639/3125/2662\nf 2572/3051/2595 2640/3126/2663 2639/3125/2662\nf 2572/3051/2595 2575/3054/2598 2640/3126/2663\nf 2640/3126/2663 2575/3054/2598 2641/3127/2664\nf 2641/3127/2664 2575/3054/2598 2576/3055/2599\nf 2641/3127/2664 2576/3055/2599 2642/3128/2665\nf 2642/3128/2665 2576/3055/2599 2579/3058/2602\nf 2580/3059/2603 2642/3128/2665 2579/3058/2602\nf 2580/3059/2603 2641/3127/2664 2642/3128/2665\nf 2580/3059/2603 2582/3129/2605 2641/3127/2664\nf 2582/3129/2605 2640/3126/2663 2641/3127/2664\nf 2582/3129/2605 2643/3130/2666 2640/3126/2663\nf 2583/3063/2606 2643/3131/2666 2582/3062/2605\nf 2583/3063/2606 2644/3132/2667 2643/3131/2666\nf 2644/3132/2667 2583/3063/2606 2585/3065/2608\nf 2583/3063/2606 2584/3064/2607 2585/3065/2608\nf 2644/3132/2667 2585/3065/2608 2586/3066/2609\nf 2645/3133/2668 2644/3132/2667 2586/3066/2609\nf 2644/3132/2667 2645/3133/2668 2646/3134/2669\nf 2645/3133/2668 2647/3135/2670 2646/3134/2669\nf 2645/3133/2668 2648/3136/2671 2647/3135/2670\nf 2587/3067/2610 2648/3136/2671 2645/3133/2668\nf 2588/3068/2611 2648/3136/2671 2587/3067/2610\nf 2591/3071/2614 2648/3136/2671 2588/3068/2611\nf 2648/3136/2671 2591/3071/2614 2649/3137/2672\nf 2591/3071/2614 2650/3138/2673 2649/3137/2672\nf 2651/3139/2674 2650/3138/2673 2591/3071/2614\nf 2651/3139/2674 2652/3140/2675 2650/3138/2673\nf 2653/3141/2676 2652/3140/2675 2651/3139/2674\nf 2654/3142/2677 2652/3140/2675 2653/3141/2676\nf 2654/3143/2677 2655/3144/2678 2652/3145/2675\nf 2654/3143/2677 2656/3146/2679 2655/3144/2678\nf 2654/3143/2677 2657/3147/2680 2656/3146/2679\nf 2658/3148/2681 2657/3147/2680 2654/3143/2677\nf 2659/3149/2682 2657/3147/2680 2658/3148/2681\nf 2659/3149/2682 2660/3150/2683 2657/3147/2680\nf 2661/3151/2684 2660/3150/2683 2659/3149/2682\nf 2661/3151/2684 2662/3152/2685 2660/3150/2683\nf 2663/3153/2686 2662/3152/2685 2661/3151/2684\nf 2663/3153/2686 2657/3147/2680 2662/3152/2685\nf 2663/3153/2686 2656/3146/2679 2657/3147/2680\nf 2664/3154/2687 2656/3146/2679 2663/3153/2686\nf 2664/3154/2687 2655/3144/2678 2656/3146/2679\nf 2665/3155/2688 2655/3144/2678 2664/3154/2687\nf 2666/3156/2689 2655/3144/2678 2665/3155/2688\nf 2650/3157/2673 2655/3144/2678 2666/3156/2689\nf 2652/3145/2675 2655/3144/2678 2650/3157/2673\nf 2650/3157/2673 2666/3156/2689 2637/3123/2660\nf 2637/3123/2660 2666/3156/2689 2667/3158/2690\nf 2666/3156/2689 2665/3155/2688 2667/3158/2690\nf 2668/3159/2691 2667/3158/2690 2665/3155/2688\nf 2668/3159/2691 2669/3160/2692 2667/3158/2690\nf 2670/3161/2693 2669/3162/2692 2668/3163/2691\nf 2670/3161/2693 2671/3164/2694 2669/3162/2692\nf 2653/3141/2676 2671/3164/2694 2670/3161/2693\nf 2651/3139/2674 2671/3164/2694 2653/3141/2676\nf 2672/3165/2695 2671/3164/2694 2651/3139/2674\nf 2671/3164/2694 2672/3165/2695 2673/3166/2696\nf 2672/3165/2695 2674/3167/2697 2673/3166/2696\nf 2675/3168/2698 2674/3167/2697 2672/3165/2695\nf 2675/3168/2698 2676/3169/2699 2674/3167/2697\nf 2677/3170/2700 2676/3169/2699 2675/3168/2698\nf 2678/3171/2701 2676/3169/2699 2677/3170/2700\nf 2678/3172/2701 2679/3173/2702 2676/3174/2699\nf 2678/3172/2701 2680/3175/2703 2679/3173/2702\nf 2678/3172/2701 2681/3176/2704 2680/3175/2703\nf 2682/3177/2705 2681/3176/2704 2678/3172/2701\nf 2683/3178/2706 2681/3176/2704 2682/3177/2705\nf 2683/3178/2706 2684/3179/2707 2681/3176/2704\nf 2685/3180/2708 2684/3179/2707 2683/3178/2706\nf 2685/3180/2708 2686/3181/2709 2684/3179/2707\nf 2687/3182/2710 2686/3181/2709 2685/3180/2708\nf 2687/3182/2710 2681/3176/2704 2686/3181/2709\nf 2687/3182/2710 2680/3175/2703 2681/3176/2704\nf 2688/3183/2711 2680/3175/2703 2687/3182/2710\nf 2679/3173/2702 2680/3175/2703 2688/3183/2711\nf 2689/3184/2712 2679/3173/2702 2688/3183/2711\nf 2690/3185/2713 2679/3173/2702 2689/3184/2712\nf 2674/3186/2697 2679/3173/2702 2690/3185/2713\nf 2676/3174/2699 2679/3173/2702 2674/3186/2697\nf 2674/3186/2697 2690/3185/2713 2636/3122/2659\nf 2636/3122/2659 2690/3185/2713 2691/3187/2714\nf 2690/3185/2713 2689/3184/2712 2691/3187/2714\nf 2692/3188/2715 2691/3187/2714 2689/3184/2712\nf 2692/3188/2715 2693/3189/2716 2691/3187/2714\nf 2694/3190/2717 2693/3191/2716 2692/3192/2715\nf 2694/3190/2717 2695/3193/2718 2693/3191/2716\nf 2677/3170/2700 2695/3193/2718 2694/3190/2717\nf 2675/3168/2698 2695/3193/2718 2677/3170/2700\nf 2696/3194/2719 2695/3193/2718 2675/3168/2698\nf 2695/3193/2718 2696/3194/2719 2697/3195/2720\nf 2698/3196/2721 2697/3195/2720 2696/3194/2719\nf 2698/3197/2721 2635/3121/2658 2697/3198/2720\nf 2698/3197/2721 2699/3199/2722 2635/3121/2658\nf 2698/3197/2721 2700/3200/2723 2699/3199/2722\nf 2701/3201/2724 2700/3200/2723 2698/3197/2721\nf 2702/3202/2725 2700/3200/2723 2701/3201/2724\nf 2702/3202/2725 2703/3203/2726 2700/3200/2723\nf 2702/3202/2725 2704/3204/2727 2703/3203/2726\nf 2705/3205/2728 2704/3204/2727 2702/3202/2725\nf 2706/3206/2729 2704/3204/2727 2705/3205/2728\nf 2706/3206/2729 2707/3207/2730 2704/3204/2727\nf 2708/3208/2731 2707/3207/2730 2706/3206/2729\nf 2708/3208/2731 2709/3209/2732 2707/3207/2730\nf 2710/3210/2733 2709/3209/2732 2708/3208/2731\nf 2710/3210/2733 2704/3204/2727 2709/3209/2732\nf 2710/3210/2733 2703/3203/2726 2704/3204/2727\nf 2711/3211/2734 2703/3203/2726 2710/3210/2733\nf 2700/3200/2723 2703/3203/2726 2711/3211/2734\nf 2712/3212/2735 2700/3200/2723 2711/3211/2734\nf 2712/3212/2735 2699/3199/2722 2700/3200/2723\nf 2713/3213/2736 2699/3199/2722 2712/3212/2735\nf 2635/3121/2658 2699/3199/2722 2713/3213/2736\nf 2635/3121/2658 2713/3213/2736 2634/3119/2657\nf 2714/3214/2737 2634/3119/2657 2713/3213/2736\nf 2714/3214/2737 2633/3120/2656 2634/3119/2657\nf 2715/3215/2738 2633/3118/2656 2714/3216/2737\nf 2715/3215/2738 2632/3117/2655 2633/3118/2656\nf 2632/3117/2655 2715/3215/2738 2716/3217/2739\nf 2716/3217/2739 2715/3215/2738 2717/3218/2740\nf 2717/3218/2740 2715/3215/2738 2718/3219/2741\nf 2718/3219/2741 2715/3215/2738 2714/3216/2737\nf 2718/3219/2741 2714/3216/2737 2719/3220/2742\nf 2719/3221/2742 2714/3214/2737 2713/3213/2736\nf 2719/3221/2742 2713/3213/2736 2712/3212/2735\nf 2720/3222/2743 2719/3221/2742 2712/3212/2735\nf 2721/3223/2744 2719/3220/2742 2720/3224/2743\nf 2721/3223/2744 2718/3219/2741 2719/3220/2742\nf 2718/3219/2741 2721/3223/2744 2722/3225/2745\nf 2721/3223/2744 2723/3226/2746 2722/3225/2745\nf 2721/3223/2744 2724/3227/2747 2723/3226/2746\nf 2724/3227/2747 2721/3223/2744 2720/3224/2743\nf 2724/3227/2747 2720/3224/2743 2725/3228/2748\nf 2725/3229/2748 2720/3222/2743 2711/3211/2734\nf 2720/3222/2743 2712/3212/2735 2711/3211/2734\nf 2725/3229/2748 2711/3211/2734 2710/3210/2733\nf 2725/3229/2748 2710/3210/2733 2708/3208/2731\nf 2726/3230/2749 2725/3228/2748 2708/3231/2731\nf 2726/3230/2749 2724/3227/2747 2725/3228/2748\nf 2724/3227/2747 2726/3230/2749 2727/3232/2750\nf 2727/3232/2750 2726/3230/2749 2706/3233/2729\nf 2726/3230/2749 2708/3231/2731 2706/3233/2729\nf 2727/3232/2750 2706/3233/2729 2723/3226/2746\nf 2706/3233/2729 2705/3234/2728 2723/3226/2746\nf 2723/3226/2746 2705/3234/2728 2722/3225/2745\nf 2722/3225/2745 2705/3234/2728 2702/3235/2725\nf 2722/3225/2745 2702/3235/2725 2717/3218/2740\nf 2702/3235/2725 2701/3236/2724 2717/3218/2740\nf 2717/3218/2740 2701/3236/2724 2716/3217/2739\nf 2716/3217/2739 2701/3236/2724 2698/3196/2721\nf 2716/3217/2739 2698/3196/2721 2696/3194/2719\nf 2696/3194/2719 2632/3117/2655 2716/3217/2739\nf 2631/3116/2654 2632/3117/2655 2696/3194/2719\nf 2728/3237/2751 2631/3116/2654 2696/3194/2719\nf 2594/3074/2617 2631/3116/2654 2728/3237/2751\nf 2630/3114/2653 2631/3116/2654 2594/3074/2617\nf 2596/3076/2619 2630/3114/2653 2594/3074/2617\nf 2596/3076/2619 2729/3238/2752 2630/3114/2653\nf 2602/3082/2625 2729/3238/2752 2596/3076/2619\nf 2602/3082/2625 2629/3113/2652 2729/3238/2752\nf 2602/3082/2625 2603/3083/2626 2629/3113/2652\nf 2629/3113/2652 2603/3083/2626 2627/3111/2650\nf 2603/3083/2626 2605/3085/2628 2627/3111/2650\nf 2627/3109/2650 2605/3089/2628 2625/3107/2648\nf 2605/3089/2628 2607/3088/2630 2625/3107/2648\nf 2607/3088/2630 2624/3106/2647 2625/3107/2648\nf 2609/3091/2632 2624/3106/2647 2607/3088/2630\nf 2609/3091/2632 2623/3105/2646 2624/3106/2647\nf 2611/3093/2634 2623/3105/2646 2609/3091/2632\nf 2611/3093/2634 2622/3104/2645 2623/3105/2646\nf 2614/3096/2637 2622/3104/2645 2611/3093/2634\nf 2616/3098/2639 2622/3104/2645 2614/3096/2637\nf 2730/3239/2753 2622/3104/2645 2616/3098/2639\nf 2621/3103/2644 2622/3104/2645 2730/3239/2753\nf 2620/3102/2643 2621/3103/2644 2730/3239/2753\nf 2620/3102/2643 2730/3239/2753 2619/3101/2642\nf 2619/3101/2642 2730/3239/2753 2618/3100/2641\nf 2618/3100/2641 2730/3239/2753 2616/3098/2639\nf 2729/3238/2752 2629/3113/2652 2630/3114/2653\nf 2598/3078/2621 2602/3082/2625 2596/3076/2619\nf 2594/3074/2617 2728/3237/2751 2592/3072/2615\nf 2592/3072/2615 2728/3237/2751 2672/3165/2695\nf 2728/3237/2751 2696/3194/2719 2672/3165/2695\nf 2672/3165/2695 2696/3194/2719 2675/3168/2698\nf 2592/3072/2615 2672/3165/2695 2591/3071/2614\nf 2591/3071/2614 2672/3165/2695 2651/3139/2674\nf 2718/3219/2741 2722/3225/2745 2717/3218/2740\nf 2724/3227/2747 2727/3232/2750 2723/3226/2746\nf 2704/3204/2727 2707/3207/2730 2709/3209/2732\nf 2695/3193/2718 2697/3195/2720 2693/3191/2716\nf 2693/3189/2716 2635/3121/2658 2691/3187/2714\nf 2636/3122/2659 2691/3187/2714 2635/3121/2658\nf 2677/3170/2700 2694/3190/2717 2731/3240/2754\nf 2694/3190/2717 2732/3241/2755 2731/3240/2754\nf 2732/3241/2755 2694/3190/2717 2692/3192/2715\nf 2732/3241/2755 2692/3192/2715 2733/3242/2756\nf 2733/3243/2756 2692/3188/2715 2689/3184/2712\nf 2733/3243/2756 2689/3184/2712 2688/3183/2711\nf 2734/3244/2757 2733/3243/2756 2688/3183/2711\nf 2735/3245/2758 2733/3242/2756 2734/3246/2757\nf 2735/3245/2758 2732/3241/2755 2733/3242/2756\nf 2732/3241/2755 2735/3245/2758 2736/3247/2759\nf 2735/3245/2758 2737/3248/2760 2736/3247/2759\nf 2735/3245/2758 2738/3249/2761 2737/3248/2760\nf 2738/3249/2761 2735/3245/2758 2734/3246/2757\nf 2738/3249/2761 2734/3246/2757 2685/3250/2708\nf 2685/3180/2708 2734/3244/2757 2687/3182/2710\nf 2734/3244/2757 2688/3183/2711 2687/3182/2710\nf 2738/3249/2761 2685/3250/2708 2683/3251/2706\nf 2737/3248/2760 2738/3249/2761 2683/3251/2706\nf 2737/3248/2760 2683/3251/2706 2736/3247/2759\nf 2683/3251/2706 2682/3252/2705 2736/3247/2759\nf 2736/3247/2759 2682/3252/2705 2731/3240/2754\nf 2731/3240/2754 2682/3252/2705 2678/3171/2701\nf 2731/3240/2754 2678/3171/2701 2677/3170/2700\nf 2732/3241/2755 2736/3247/2759 2731/3240/2754\nf 2674/3186/2697 2636/3122/2659 2673/3253/2696\nf 2671/3164/2694 2673/3166/2696 2669/3162/2692\nf 2669/3160/2692 2636/3122/2659 2667/3158/2690\nf 2637/3123/2660 2667/3158/2690 2636/3122/2659\nf 2681/3176/2704 2684/3179/2707 2686/3181/2709\nf 2653/3141/2676 2670/3161/2693 2739/3254/2762\nf 2670/3161/2693 2740/3255/2763 2739/3254/2762\nf 2740/3255/2763 2670/3161/2693 2668/3163/2691\nf 2740/3255/2763 2668/3163/2691 2741/3256/2764\nf 2741/3257/2764 2668/3159/2691 2665/3155/2688\nf 2741/3257/2764 2665/3155/2688 2664/3154/2687\nf 2742/3258/2765 2741/3257/2764 2664/3154/2687\nf 2743/3259/2766 2741/3256/2764 2742/3260/2765\nf 2743/3259/2766 2740/3255/2763 2741/3256/2764\nf 2740/3255/2763 2743/3259/2766 2744/3261/2767\nf 2743/3259/2766 2745/3262/2768 2744/3261/2767\nf 2743/3259/2766 2746/3263/2769 2745/3262/2768\nf 2746/3263/2769 2743/3259/2766 2742/3260/2765\nf 2746/3263/2769 2742/3260/2765 2661/3264/2684\nf 2661/3151/2684 2742/3258/2765 2663/3153/2686\nf 2742/3258/2765 2664/3154/2687 2663/3153/2686\nf 2746/3263/2769 2661/3264/2684 2659/3265/2682\nf 2745/3262/2768 2746/3263/2769 2659/3265/2682\nf 2744/3261/2767 2745/3262/2768 2659/3265/2682\nf 2659/3265/2682 2658/3266/2681 2744/3261/2767\nf 2744/3261/2767 2658/3266/2681 2739/3254/2762\nf 2739/3254/2762 2658/3266/2681 2654/3142/2677\nf 2739/3254/2762 2654/3142/2677 2653/3141/2676\nf 2740/3255/2763 2744/3261/2767 2739/3254/2762\nf 2650/3157/2673 2637/3123/2660 2649/3267/2672\nf 2647/3268/2670 2649/3267/2672 2637/3123/2660\nf 2648/3136/2671 2649/3137/2672 2647/3135/2670\nf 2647/3268/2670 2637/3123/2660 2638/3124/2661\nf 2646/3269/2669 2647/3268/2670 2638/3124/2661\nf 2646/3269/2669 2638/3124/2661 2639/3125/2662\nf 2643/3130/2666 2646/3269/2669 2639/3125/2662\nf 2644/3132/2667 2646/3134/2669 2643/3131/2666\nf 2643/3130/2666 2639/3125/2662 2640/3126/2663\nf 2662/3152/2685 2657/3147/2680 2660/3150/2683\nf 2589/3069/2612 2591/3071/2614 2588/3068/2611\nf 2587/3067/2610 2645/3133/2668 2586/3066/2609\nf 2539/3012/2562 2540/3013/2563 2542/3015/2565\ng mesh10.002_mesh10-geometry_FrontColorNoCullingID_male-02-1noCulling.JP\nusemtl FrontColorNoCullingID_male-02-1noCulling.JP\nf 2693/3270/2716 2697/3271/2720 2635/3272/2658\nf 2669/3273/2692 2673/3274/2696 2636/3275/2659\n"
  },
  {
    "path": "public/models/obj/readme.txt",
    "content": "Model by Reallusion iClone from Google 3d Warehouse:\n\nhttps://3dwarehouse.sketchup.com/user.html?id=0122725873552223594220183\n"
  },
  {
    "path": "public/models/obj/tree.obj",
    "content": "# This file uses centimeters as units for non-parametric coordinates.\n\nv 0.061043 0.025284 0.034490\nv 0.011829 0.022302 0.083267\nv -0.058528 0.017917 0.083267\nv -0.109573 0.014532 -0.034490\nv -0.026732 0.060313 -0.099586\nv 0.032816 0.217090 -0.081389\nv 0.014186 0.220894 -0.037159\nv -0.030439 0.223336 -0.148347\nv 0.014332 0.218101 -0.127445\nv -0.012410 0.359863 -0.058151\nv 0.007135 0.364429 -0.096394\nv 0.050050 0.365321 -0.111165\nv 0.091197 0.362018 -0.093810\nv -0.034402 0.607330 0.018474\nv -0.047875 0.608469 0.045145\nv -0.075711 0.608536 0.056203\nv -0.101604 0.607492 0.045169\nv -0.110386 0.605948 0.018508\nv -0.096912 0.604808 -0.008164\nv -0.069076 0.604741 -0.019221\nv -0.043184 0.605786 -0.008188\nv -0.005259 0.780558 -0.089352\nv 0.019098 0.779084 -0.078251\nv -0.049662 0.990274 0.082265\nv -0.065202 0.990373 0.074837\nv -0.057327 0.991273 0.057896\nv -0.041787 0.991173 0.065324\nv -0.025339 1.145101 0.000000\nv 0.063987 -0.005220 -0.034490\nv 0.064746 -0.005053 0.034490\nv 0.015533 -0.008035 0.083267\nv -0.054824 -0.012419 0.083267\nv -0.105111 -0.015637 0.034490\nv -0.105869 -0.015804 -0.034490\nv -0.028686 -0.011068 -0.098198\nv 0.016454 -0.008265 -0.098938\nv 0.069705 0.132069 -0.030589\nv 0.046198 0.133147 0.026017\nv -0.011239 0.134185 0.048551\nv -0.068960 0.134576 0.023813\nv -0.093153 0.134091 -0.033705\nv -0.069646 0.133013 -0.090311\nv -0.012209 0.131974 -0.112845\nv 0.045512 0.131584 -0.088107\nv 0.060284 0.025117 -0.034490\nv 0.074466 0.040836 -0.004252\nv 0.046764 0.038939 0.063257\nv -0.112630 0.073898 0.031315\nv -0.093477 0.019923 -0.074960\nv 0.012751 0.022071 -0.098938\nv 0.042219 0.064768 -0.071638\nv 0.113534 0.005387 -0.027553\nv 0.104410 0.016756 -0.004446\nv 0.094627 0.004297 0.024654\nv 0.097609 -0.020131 0.024654\nv 0.116516 -0.019041 -0.027553\nv 0.165229 -0.016172 0.022676\nv 0.167928 -0.010108 0.034203\nv 0.172309 -0.015681 0.049160\nv 0.173781 -0.027741 0.049160\nv 0.166701 -0.028232 0.022676\nv 0.223852 -0.035138 0.004759\nv 0.112872 -0.012736 -0.096485\nv 0.084831 -0.014530 -0.123684\nv 0.110807 0.004181 -0.096485\nv 0.082766 0.002386 -0.123684\nv 0.102484 0.011952 -0.117200\nv 0.148290 -0.031922 -0.170902\nv -0.093294 -0.015045 -0.073807\nv -0.016381 0.021291 -0.153534\nv -0.018776 -0.001544 -0.148548\nv 0.003238 -0.000669 -0.154808\nv -0.047505 0.015676 -0.131589\nv 0.001476 0.014615 -0.156781\nv -0.047329 -0.001851 -0.128241\nv -0.055269 -0.001482 -0.184760\nv -0.055507 -0.015180 -0.181753\nv -0.047381 -0.014975 -0.185529\nv -0.066633 -0.004404 -0.171524\nv -0.048468 -0.005757 -0.186719\nv -0.066069 -0.014947 -0.169504\nv -0.073066 -0.010493 -0.226679\nv -0.157555 0.009940 0.089984\nv -0.172627 0.024322 0.054311\nv -0.158703 0.009746 0.001569\nv -0.156239 -0.010437 0.001569\nv -0.170901 -0.011277 0.054096\nv -0.155091 -0.010242 0.089984\nv -0.249887 -0.014220 0.054871\nv -0.255392 -0.004868 0.031186\nv -0.243244 -0.013881 0.017696\nv -0.241685 -0.026651 0.017696\nv -0.254251 -0.027389 0.030766\nv -0.248328 -0.026990 0.054871\nv -0.317616 -0.023315 0.001723\nv -0.024921 0.060970 0.091389\nv 0.009011 0.002511 0.122996\nv -0.035581 0.005710 0.124806\nv 0.011110 -0.014683 0.122996\nv -0.033239 -0.015454 0.124337\nv -0.003901 0.028029 0.134276\nv 0.075910 -0.021050 0.221453\nv -0.008968 -0.003134 0.155814\nv -0.006853 -0.017537 0.156097\nv -0.065435 -0.002915 0.158962\nv -0.059811 -0.010030 0.158782\nv -0.059446 0.008571 0.162610\nv -0.054137 -0.002898 0.170905\nv -0.050128 -0.007679 0.171014\nv -0.101107 -0.037419 0.164454\nv -0.084857 0.247553 -0.084351\nv -0.065909 0.278454 -0.046870\nv -0.022049 0.241529 -0.018455\nv -0.027588 0.212620 -0.009760\nv -0.072023 0.197926 -0.031692\nv -0.093787 0.218469 -0.079454\nv -0.203335 0.323966 0.023975\nv -0.188092 0.331478 0.044959\nv -0.189917 0.324537 0.071675\nv -0.206985 0.310084 0.077408\nv -0.222228 0.302573 0.056424\nv -0.220403 0.309514 0.029708\nv -0.391278 0.444276 -0.008491\nv -0.383778 0.452632 0.007174\nv -0.388723 0.449201 0.027092\nv -0.401168 0.437414 0.031344\nv -0.408668 0.429059 0.015679\nv -0.403723 0.432490 -0.004239\nv -0.563896 0.515683 0.007964\nv -0.558852 0.519890 0.016664\nv -0.562857 0.518465 0.027740\nv -0.571905 0.512833 0.030116\nv -0.576949 0.508626 0.021417\nv -0.572945 0.510051 0.010341\nv -0.657225 0.660087 -0.048334\nv -0.650643 0.662540 -0.039216\nv -0.653534 0.660141 -0.027530\nv -0.663006 0.655289 -0.024963\nv -0.669588 0.652836 -0.034081\nv -0.666697 0.655235 -0.045767\nv -0.734590 0.711815 0.013046\nv -0.222939 0.330789 0.044135\nv -0.201473 0.335159 0.059299\nv -0.183694 0.321395 0.065855\nv -0.187381 0.303262 0.057248\nv -0.208847 0.298892 0.042084\nv -0.226626 0.312655 0.035528\nv -0.311111 0.302779 0.189061\nv -0.295547 0.305799 0.204549\nv -0.287339 0.292794 0.219836\nv -0.294697 0.276768 0.219635\nv -0.310261 0.273748 0.204147\nv -0.318468 0.286753 0.188860\nv -0.444054 0.378761 0.257440\nv -0.437794 0.381175 0.266621\nv -0.436022 0.375481 0.275497\nv -0.440510 0.367373 0.275194\nv -0.446770 0.364958 0.266014\nv -0.448542 0.370652 0.257137\nv -0.601728 0.372490 0.365952\nv -0.380935 0.435847 -0.001033\nv -0.379475 0.449425 0.007716\nv -0.394763 0.454423 0.020175\nv -0.411511 0.445843 0.023886\nv -0.412971 0.432266 0.015138\nv -0.397684 0.427268 0.002678\nv -0.496275 0.505590 -0.181381\nv -0.496029 0.513471 -0.177495\nv -0.505280 0.516724 -0.171907\nv -0.514777 0.512095 -0.170205\nv -0.515023 0.504214 -0.174091\nv -0.505772 0.500961 -0.179679\nv -0.568096 0.545817 -0.389724\nv -0.660813 0.661901 -0.046627\nv -0.652733 0.663915 -0.038791\nv -0.652035 0.659703 -0.028812\nv -0.659418 0.653475 -0.026670\nv -0.667499 0.651461 -0.034507\nv -0.668196 0.655673 -0.044485\nv -0.734590 0.711815 0.013046\nv -0.572490 0.519890 0.011844\nv -0.561270 0.520342 0.014729\nv -0.556681 0.514710 0.021925\nv -0.563311 0.508626 0.026236\nv -0.574531 0.508175 0.023351\nv -0.579120 0.513807 0.016155\nv -0.594487 0.559002 0.085473\nv -0.583530 0.559921 0.089239\nv -0.579676 0.555597 0.098898\nv -0.586780 0.550354 0.104792\nv -0.597736 0.549435 0.101026\nv -0.601590 0.553759 0.091367\nv -0.625342 0.621512 0.132529\nv -0.029237 0.484801 -0.057992\nv -0.000226 0.452443 -0.070622\nv 0.034084 0.451258 -0.055985\nv 0.028216 0.488878 -0.031632\nv 0.014756 0.509774 -0.046013\nv -0.017973 0.510847 -0.059764\nv 0.044635 0.552342 -0.227241\nv 0.060131 0.542012 -0.237752\nv 0.083936 0.544196 -0.236114\nv 0.092244 0.556709 -0.223963\nv 0.076748 0.567038 -0.213451\nv 0.052943 0.564855 -0.215090\nv -0.025367 0.644074 -0.384664\nv -0.014775 0.638211 -0.396202\nv 0.002306 0.641678 -0.397502\nv 0.008796 0.651008 -0.387264\nv -0.001796 0.656871 -0.375726\nv -0.018878 0.653404 -0.374426\nv -0.040218 0.734709 -0.495677\nv -0.034171 0.731003 -0.501461\nv -0.024867 0.733596 -0.502924\nv -0.021610 0.739895 -0.498605\nv -0.027657 0.743601 -0.492822\nv -0.036961 0.741008 -0.491358\nv -0.133056 0.766329 -0.659632\nv -0.126082 0.762000 -0.663301\nv -0.115945 0.764092 -0.663631\nv -0.112782 0.770513 -0.660293\nv -0.119756 0.774843 -0.656624\nv -0.129894 0.772751 -0.656293\nv -0.101527 0.803591 -0.743173\nv 0.058261 0.562815 -0.242395\nv 0.070197 0.549322 -0.247133\nv 0.080375 0.541032 -0.230340\nv 0.078618 0.546236 -0.208809\nv 0.066682 0.559729 -0.204071\nv 0.056504 0.568019 -0.220864\nv 0.181358 0.619533 -0.256831\nv 0.193723 0.609766 -0.261079\nv 0.210415 0.607017 -0.248570\nv 0.214741 0.614036 -0.231812\nv 0.202376 0.623803 -0.227564\nv 0.185684 0.626552 -0.240073\nv 0.209116 0.685765 -0.377896\nv 0.216140 0.681633 -0.381587\nv 0.225157 0.681507 -0.376878\nv 0.227150 0.685513 -0.368478\nv 0.220127 0.689645 -0.364787\nv 0.211110 0.689771 -0.369496\nv 0.293200 0.780213 -0.419826\nv -0.016346 0.639314 -0.375217\nv -0.013202 0.636186 -0.392048\nv -0.005142 0.644413 -0.402795\nv -0.000226 0.655768 -0.396711\nv -0.003369 0.658896 -0.379880\nv -0.011429 0.650670 -0.369133\nv -0.189015 0.696573 -0.432319\nv -0.188187 0.695117 -0.441926\nv -0.184971 0.700061 -0.448259\nv -0.182582 0.706461 -0.444984\nv -0.183409 0.707918 -0.435377\nv -0.186626 0.702974 -0.429045\nv -0.373963 0.732930 -0.443383\nv -0.132349 0.768156 -0.662605\nv -0.126230 0.763012 -0.665265\nv -0.116800 0.763277 -0.662622\nv -0.113489 0.768686 -0.657320\nv -0.119608 0.773830 -0.654660\nv -0.129039 0.773565 -0.657302\nv -0.101527 0.803591 -0.743173\nv -0.038654 0.739108 -0.502599\nv -0.035983 0.732367 -0.501931\nv -0.028242 0.730562 -0.496473\nv -0.023174 0.735496 -0.491683\nv -0.025846 0.742237 -0.492351\nv -0.033586 0.744043 -0.497809\nv 0.008871 0.745565 -0.565837\nv 0.012111 0.738902 -0.565925\nv 0.021441 0.737312 -0.562583\nv 0.027530 0.742385 -0.559152\nv 0.024290 0.749049 -0.559063\nv 0.014960 0.750639 -0.562406\nv 0.027361 0.753459 -0.650835\nv 0.098971 0.342262 -0.057236\nv 0.080541 0.323799 -0.018567\nv 0.035103 0.336234 -0.003772\nv 0.036164 0.373471 0.001852\nv 0.075348 0.398926 -0.012791\nv 0.097638 0.378469 -0.050429\nv 0.160964 0.456088 0.163408\nv 0.159525 0.442620 0.184078\nv 0.138063 0.442092 0.202779\nv 0.118039 0.455033 0.200810\nv 0.119478 0.468502 0.180139\nv 0.140941 0.469029 0.161438\nv 0.327304 0.580309 0.246148\nv 0.329658 0.572729 0.264042\nv 0.315857 0.574701 0.279728\nv 0.299702 0.584251 0.277520\nv 0.297349 0.591831 0.259625\nv 0.311150 0.589859 0.243939\nv 0.409892 0.693885 0.335919\nv 0.410653 0.689097 0.345425\nv 0.403594 0.691034 0.354673\nv 0.395773 0.697759 0.354415\nv 0.395012 0.702547 0.344908\nv 0.402072 0.700610 0.335660\nv 0.615162 0.751080 0.398964\nv 0.613550 0.745336 0.407411\nv 0.604984 0.746523 0.416354\nv 0.598029 0.753454 0.416850\nv 0.599640 0.759198 0.408404\nv 0.608207 0.758011 0.399461\nv 0.649796 0.795023 0.498981\nv 0.159840 0.467405 0.188522\nv 0.157287 0.450385 0.201068\nv 0.136949 0.438541 0.194654\nv 0.119163 0.443716 0.175695\nv 0.121716 0.460736 0.163150\nv 0.142055 0.472581 0.169563\nv 0.056838 0.518954 0.309031\nv 0.052611 0.506208 0.321905\nv 0.029136 0.500244 0.325073\nv 0.009889 0.507025 0.315367\nv 0.014116 0.519771 0.302494\nv 0.037590 0.525735 0.299326\nv 0.118769 0.599184 0.440264\nv 0.117087 0.593666 0.448790\nv 0.105781 0.592138 0.452355\nv 0.096158 0.596129 0.447393\nv 0.097840 0.601648 0.438867\nv 0.109145 0.603175 0.435303\nv 0.061516 0.701163 0.555096\nv 0.313179 0.573119 0.245279\nv 0.325397 0.569948 0.261671\nv 0.325722 0.579109 0.278226\nv 0.313828 0.591441 0.278389\nv 0.301609 0.594612 0.261997\nv 0.301285 0.585451 0.245441\nv 0.488666 0.664723 0.154918\nv 0.496354 0.663420 0.163501\nv 0.497782 0.669123 0.171988\nv 0.491521 0.676130 0.171891\nv 0.483833 0.677434 0.163307\nv 0.482406 0.671731 0.154821\nv 0.640971 0.731040 0.013651\nv 0.616613 0.753281 0.402228\nv 0.615062 0.746640 0.409034\nv 0.605045 0.745625 0.414713\nv 0.596578 0.751252 0.413586\nv 0.598128 0.757894 0.406780\nv 0.608146 0.758908 0.401101\nv 0.649796 0.795023 0.498981\nv 0.413302 0.699191 0.343465\nv 0.412200 0.690944 0.344448\nv 0.401731 0.687575 0.346149\nv 0.392363 0.692453 0.346869\nv 0.393465 0.700700 0.345886\nv 0.403935 0.704069 0.344184\nv 0.425402 0.704066 0.436689\nv 0.424445 0.695877 0.438787\nv 0.414380 0.692671 0.443607\nv 0.405273 0.697655 0.446330\nv 0.406230 0.705843 0.444232\nv 0.416295 0.709049 0.439412\nv 0.479156 0.715408 0.524064\nv -0.315152 0.899639 -0.108081\nv -0.315130 0.896911 -0.111069\nv -0.312304 0.896928 -0.114995\nv -0.312347 0.902383 -0.109021\nv -0.348501 0.914088 -0.137929\nv -0.075270 0.229728 -0.131852\nv 0.002865 0.354300 -0.018838\nv 0.031618 0.492900 -0.015978\nv 0.013737 0.503698 0.016177\nv -0.019774 0.491003 0.029027\nv -0.049369 0.480896 0.013166\nv -0.061398 0.482906 -0.019822\nv -0.044889 0.484619 -0.052279\nv -0.015645 0.772807 -0.072454\nv -0.011121 0.780381 -0.077107\nv -0.013007 0.787936 -0.071803\nv 0.008208 0.772392 -0.052438\nv -0.012764 0.778290 -0.058302\nv -0.314542 0.896940 -0.111858\nv -0.314140 0.900519 -0.108540\nv -0.313489 0.896985 -0.113481\nv -0.310529 0.902467 -0.113821\nv -0.311877 0.902315 -0.109827\nv -0.075132 0.802664 -0.104187\nv -0.076929 0.796972 -0.112541\nv -0.072179 0.797611 -0.123389\nv -0.065633 0.803942 -0.125883\nv -0.063836 0.809634 -0.117529\nv -0.068585 0.808995 -0.106681\nv -0.163488 0.844578 -0.103592\nv -0.166776 0.841150 -0.110105\nv -0.164587 0.842470 -0.118414\nv -0.159111 0.847219 -0.120211\nv -0.155823 0.850647 -0.113698\nv -0.158012 0.849327 -0.105389\nv -0.220905 0.886184 -0.120587\nv -0.222396 0.884074 -0.124149\nv -0.221581 0.885117 -0.128842\nv -0.219274 0.888271 -0.129974\nv -0.217783 0.890381 -0.126412\nv -0.218599 0.889337 -0.121718\nv -0.313827 0.898842 -0.107150\nv -0.314157 0.896468 -0.110748\nv -0.312656 0.897281 -0.115607\nv -0.310824 0.900468 -0.116867\nv -0.310493 0.902842 -0.113269\nv -0.311995 0.902029 -0.108410\nv -0.348501 0.914088 -0.137929\nv -0.313398 0.896989 -0.113563\nv -0.310488 0.902594 -0.113628\nv -0.311912 0.902312 -0.109781\nv -0.348501 0.914088 -0.137929\nv -0.348501 0.914088 -0.137929\nv -0.348501 0.914088 -0.137929\nv -0.348501 0.914088 -0.137929\nv -0.348501 0.914088 -0.137929\nvt 0.131375 0.762327\nvt 0.437504 0.963420\nvt 0.086658 0.708747\nvt 0.461481 0.919841\nvt 0.357670 0.794304\nvt 0.323844 0.740885\nvt 0.220530 0.938794\nvt 0.999084 0.482194\nvt 0.129176 0.786619\nvt 0.273518 0.805223\nvt 0.222591 0.210262\nvt 0.464104 0.593798\nvt 0.880972 0.481508\nvt 0.451843 0.616338\nvt 0.061173 0.996503\nvt 0.655344 0.545161\nvt 0.021411 0.432082\nvt 0.884161 0.516715\nvt 0.768482 0.442408\nvt 0.661203 0.530861\nvt 0.104587 0.228904\nvt 0.782179 0.610023\nvt 0.724012 0.743411\nvt 0.727992 0.734589\nvt 0.772920 0.420410\nvt 0.473382 0.963694\nvt 0.254482 0.190939\nvt 0.380010 0.714108\nvt 0.137210 0.882460\nvt 0.794244 0.105105\nvt 0.788614 0.090921\nvt 0.000000 0.612433\nvt 0.490748 0.765506\nvt 0.227040 0.751515\nvt 0.936744 0.147670\nvt 0.933272 0.156551\nvt 0.129176 0.904228\nvt 0.972522 0.412850\nvt 0.896240 0.020133\nvt 0.844140 0.741391\nvt 0.690353 0.707500\nvt 0.000000 0.434941\nvt 0.639502 0.586140\nvt 0.307988 0.854475\nvt 0.669323 0.399709\nvt 0.518940 0.543848\nvt 0.304975 0.868725\nvt 0.334138 0.676560\nvt 0.937692 0.141522\nvt 0.406550 0.949371\nvt 0.939733 0.127797\nvt 0.314938 0.805223\nvt 0.373798 0.762680\nvt 0.343382 0.706871\nvt 0.107761 0.424947\nvt 0.323844 0.800622\nvt 0.776906 0.572167\nvt 0.000000 0.872961\nvt 0.325414 0.825792\nvt 0.263530 0.941120\nvt 0.227040 0.941290\nvt 0.313515 0.929776\nvt 0.437504 0.891515\nvt 0.425020 0.676560\nvt 0.961358 0.269182\nvt 0.384209 0.850216\nvt 0.533478 0.593736\nvt 0.308205 0.918175\nvt 0.286433 0.929550\nvt 0.227040 0.811487\nvt 0.000071 0.881864\nvt 0.011217 0.963897\nvt 0.884842 0.456855\nvt 0.380010 0.941173\nvt 0.272900 0.845179\nvt 0.220530 0.960756\nvt 0.519126 0.622619\nvt 0.382580 0.920945\nvt 0.997000 0.268808\nvt 0.029315 0.993455\nvt 0.029686 0.970046\nvt 0.001980 0.298576\nvt 0.030640 0.299491\nvt 0.001927 0.340273\nvt 0.116091 0.873159\nvt 0.037841 0.905344\nvt 0.813955 0.491711\nvt 0.966374 0.390661\nvt 0.956672 0.410998\nvt 0.013868 0.332770\nvt 0.815458 0.523572\nvt 0.000000 0.945015\nvt 0.975060 0.391035\nvt 0.031721 0.358542\nvt 0.437504 0.919625\nvt 0.411026 0.940877\nvt 0.912429 0.390749\nvt 0.380010 0.871774\nvt 0.254280 0.837706\nvt 0.129176 0.720938\nvt 0.170382 0.749181\nvt 0.166067 0.729418\nvt 0.965312 0.549299\nvt 0.102692 0.596055\nvt 0.091090 0.593996\nvt 0.120575 0.593206\nvt 0.018236 0.429584\nvt 0.404680 0.927421\nvt 0.002990 0.429305\nvt 0.290347 0.975185\nvt 0.422435 0.690895\nvt 0.336348 0.530861\nvt 0.512792 0.543948\nvt 0.277178 0.918175\nvt 0.291693 0.979586\nvt 0.456730 0.781243\nvt 0.283326 0.922527\nvt 0.994996 0.845474\nvt 0.509157 0.535759\nvt 0.323844 0.882220\nvt 0.080191 0.960237\nvt 0.359723 0.853903\nvt 0.456750 0.790146\nvt 0.966695 0.381020\nvt 0.633077 0.169033\nvt 0.636712 0.183295\nvt 0.766903 0.180965\nvt 0.767399 0.191845\nvt 0.437542 0.913477\nvt 0.129176 0.938794\nvt 0.525391 0.639278\nvt 0.849932 0.484555\nvt 0.270133 0.934972\nvt 0.106873 0.203203\nvt 0.821621 0.991400\nvt 0.962667 0.743592\nvt 0.962626 0.734589\nvt 0.181834 0.811108\nvt 0.490333 0.392480\nvt 0.491052 0.412539\nvt 0.004950 0.679833\nvt 0.452461 0.634220\nvt 0.452686 0.951501\nvt 0.278338 0.395987\nvt 0.323844 0.860221\nvt 0.760720 0.144718\nvt 0.030972 0.945894\nvt 0.173569 0.153292\nvt 0.872804 0.996593\nvt 0.040004 0.961098\nvt 0.173531 0.158076\nvt 0.096023 0.945015\nvt 0.778235 0.986866\nvt 0.149218 0.155109\nvt 0.440859 0.942644\nvt 0.459082 0.943303\nvt 0.323844 0.853978\nvt 0.907984 0.404283\nvt 0.870083 0.405623\nvt 0.760645 0.138546\nvt 0.774363 0.979040\nvt 0.743741 0.985784\nvt 0.380010 0.894562\nvt 0.284905 0.968837\nvt 0.042842 0.926729\nvt 0.312470 0.941120\nvt 0.314844 0.969447\nvt 0.005574 0.499215\nvt 0.386000 0.877922\nvt 0.488170 0.913218\nvt 0.781590 0.964927\nvt 0.084942 0.593372\nvt 0.850481 0.478563\nvt 0.282553 0.751795\nvt 0.331687 0.876072\nvt 0.645685 0.118266\nvt 0.052655 0.718771\nvt 0.044114 0.745632\nvt 0.999736 0.104602\nvt 0.051477 0.764334\nvt 0.945882 0.141459\nvt 0.644704 0.111884\nvt 0.245796 0.799074\nvt 0.481526 0.902931\nvt 0.122413 0.709251\nvt 0.006678 0.725284\nvt 0.087527 0.682793\nvt 0.516793 0.946384\nvt 0.526739 0.954494\nvt 0.481526 0.954313\nvt 0.260958 0.962153\nvt 0.997507 0.090162\nvt 0.950144 0.111884\nvt 0.380243 0.987466\nvt 0.346317 0.909041\nvt 0.441389 0.996316\nvt 0.950405 0.676560\nvt 0.950405 0.685804\nvt 0.143227 0.912426\nvt 0.110247 0.677298\nvt 0.347257 0.930358\nvt 0.593004 0.145722\nvt 0.475377 0.885366\nvt 0.380010 0.976054\nvt 0.524314 0.150362\nvt 0.287423 0.988218\nvt 0.283514 0.997896\nvt 0.441052 0.969843\nvt 0.678653 0.979076\nvt 0.684127 0.987099\nvt 0.749125 0.999252\nvt 0.311068 0.995046\nvt 0.718208 0.979427\nvt 0.445694 0.611171\nvt 0.743741 0.993015\nvt 0.976807 0.759101\nvt 0.777872 0.993962\nvt 0.869488 0.166234\nvt 0.869050 0.172389\nvt 0.620563 0.222301\nvt 0.626929 0.209894\nvt 0.805657 0.544760\nvt 0.437504 0.980369\nvt 0.801675 0.530861\nvt 0.995250 0.680043\nvt 0.890175 0.664042\nvt 0.816330 0.690503\nvt 0.442798 0.624812\nvt 0.325179 0.707960\nvt 0.327989 0.694301\nvt 0.437504 0.986518\nvt 0.715814 0.745927\nvt 0.473124 0.973648\nvt 0.430100 0.900710\nvt 0.426218 0.914797\nvt 0.713582 0.734589\nvt 0.190549 0.411598\nvt 0.227040 0.686467\nvt 0.612013 0.745715\nvt 0.612084 0.739717\nvt 0.959248 0.774499\nvt 0.364214 0.860126\nvt 0.609616 0.978095\nvt 0.235422 0.676560\nvt 0.483337 0.877560\nvt 0.086137 0.551723\nvt 0.609616 0.968850\nvt 0.539989 0.626611\nvt 0.649370 0.974668\nvt 0.312391 0.956252\nvt 0.863321 0.038707\nvt 0.643735 0.396398\nvt 0.726296 0.478281\nvt 0.357420 0.593736\nvt 0.890076 0.653230\nvt 0.986130 0.604963\nvt 0.786511 0.663185\nvt 0.897524 0.982798\nvt 0.979625 0.593736\nvt 0.871893 0.035831\nvt 0.646952 0.073322\nvt 0.212010 0.771740\nvt 0.077336 0.718771\nvt 0.719678 0.451520\nvt 0.233703 0.988218\nvt 0.884503 0.604735\nvt 0.539627 0.615805\nvt 0.785906 0.657197\nvt 0.832337 0.036017\nvt 0.227040 0.998493\nvt 0.964986 0.482291\nvt 0.744670 0.916202\nvt 0.344935 0.036143\nvt 0.743560 0.922175\nvt 0.467077 0.897515\nvt 0.882666 0.598791\nvt 0.468082 0.908576\nvt 0.007341 0.137422\nvt 0.231062 0.607010\nvt 0.802963 0.920529\nvt 0.014041 0.137473\nvt 0.013800 0.112981\nvt 0.345956 0.022207\nvt 0.648459 0.838045\nvt 0.656375 0.714108\nvt 0.235670 0.628071\nvt 0.860743 0.350744\nvt 0.323844 0.794473\nvt 0.648563 0.084013\nvt 0.112816 0.917212\nvt 0.864699 0.336837\nvt 0.648718 0.844041\nvt 0.656569 0.724919\nvt 0.109062 0.905344\nvt 0.692008 0.000000\nvt 0.483321 0.816616\nvt 0.388853 0.799655\nvt 0.483357 0.805804\nvt 0.048991 0.916483\nvt 0.000000 0.932878\nvt 0.000705 0.938866\nvt 0.693799 0.013858\nvt 0.380010 0.813191\nvt 0.380577 0.807199\nvt 0.119258 0.934389\nvt 0.609616 0.916202\nvt 0.609723 0.922198\nvt 0.601563 0.476778\nvt 0.863868 0.853323\nvt 0.670425 0.918111\nvt 0.543549 0.347247\nvt 0.530970 0.841559\nvt 0.865016 0.859290\nvt 0.210370 0.287727\nvt 0.242326 0.267291\nvt 0.206500 0.033101\nvt 0.105321 0.820960\nvt 0.967506 0.330182\nvt 0.561054 0.009906\nvt 0.563006 0.020614\nvt 0.464289 0.042167\nvt 0.131236 0.249764\nvt 0.131677 0.235052\nvt 0.530746 0.406575\nvt 0.630462 0.261456\nvt 0.418233 0.987504\nvt 0.630375 0.267628\nvt 0.531284 0.412569\nvt 0.744359 0.235052\nvt 0.743366 0.241432\nvt 0.795612 0.269293\nvt 0.380010 0.759101\nvt 0.974786 0.320433\nvt 0.227503 0.670411\nvt 0.575108 0.024051\nvt 0.216581 0.641474\nvt 0.380176 0.773045\nvt 0.464146 0.048480\nvt 0.965234 0.799320\nvt 0.963166 0.793376\nvt 0.867632 0.798952\nvt 0.120756 0.475308\nvt 0.113363 0.483197\nvt 0.102834 0.480739\nvt 0.539372 0.179207\nvt 0.099698 0.470392\nvt 0.107091 0.462502\nvt 0.130452 0.648226\nvt 0.539045 0.166234\nvt 0.067054 0.969187\nvt 0.053109 0.969169\nvt 0.046153 0.957083\nvt 0.540974 0.352663\nvt 0.053141 0.945015\nvt 0.067086 0.945034\nvt 0.074043 0.957120\nvt 0.499556 0.326322\nvt 0.865421 0.922124\nvt 0.478141 0.759208\nvt 0.455415 0.225219\nvt 0.453847 0.219196\nvt 0.863539 0.916202\nvt 0.809112 0.921565\nvt 0.649853 0.726727\nvt 0.117620 0.464960\nvt 0.000000 0.856016\nvt 0.650226 0.715922\nvt 0.220245 0.702640\nvt 0.581105 0.024048\nvt 0.584106 0.029240\nvt 0.220892 0.714790\nvt 0.791666 0.574293\nvt 0.598772 0.966590\nvt 0.600033 0.491711\nvt 0.554910 0.859304\nvt 0.555676 0.853323\nvt 0.437504 0.853641\nvt 0.802773 0.558146\nvt 0.598944 0.952403\nvt 0.581110 0.034435\nvt 0.654866 0.844049\nvt 0.353700 0.087792\nvt 0.762767 0.902931\nvt 0.656754 0.838045\nvt 0.599026 0.946407\nvt 0.753846 0.840742\nvt 0.983498 0.877560\nvt 0.538226 0.948577\nvt 0.575114 0.034438\nvt 0.762790 0.908927\nvt 0.823543 0.905699\nvt 0.734213 0.958750\nvt 0.802455 0.934312\nvt 0.894625 0.491711\nvt 0.572113 0.029246\nvt 0.801617 0.928346\nvt 0.745567 0.933763\nvt 0.829691 0.904044\nvt 0.429537 0.844067\nvt 0.484185 0.411639\nvt 0.481103 0.399594\nvt 0.983208 0.883550\nvt 0.371130 0.401670\nvt 0.370701 0.392480\nvt 0.001434 0.866813\nvt 0.227040 0.877899\nvt 0.227297 0.889676\nvt 0.313539 0.877088\nvt 0.922659 0.877615\nvt 0.889372 0.020930\nvt 0.102781 0.857342\nvt 0.883871 0.018542\nvt 0.883190 0.012584\nvt 0.888008 0.009015\nvt 0.104314 0.863322\nvt 0.431356 0.838353\nvt 0.129176 0.634220\nvt 0.110966 0.849867\nvt 0.352830 0.076020\nvt 0.312111 0.886745\nvt 0.668289 0.896773\nvt 0.772778 0.870529\nvt 0.829822 0.910040\nvt 0.774149 0.865453\nvt 0.692163 0.868611\nvt 0.437504 0.831896\nvt 0.437504 0.838045\nvt 0.437763 0.847175\nvt 0.464612 0.085487\nvt 0.129176 0.539059\nvt 0.524821 0.838177\nvt 0.524502 0.843251\nvt 0.463460 0.076366\nvt 0.787739 0.969938\nvt 0.674437 0.891714\nvt 0.789148 0.964927\nvt 0.841145 0.969673\nvt 0.927082 0.854486\nvt 0.893509 0.011404\nvt 0.380010 0.828302\nvt 0.382384 0.822765\nvt 0.894191 0.017361\nvt 0.662953 0.984244\nvt 0.437663 0.822765\nvt 0.686122 0.877560\nvt 0.130077 0.548148\nvt 0.080191 0.977279\nvt 0.686287 0.882627\nvt 0.086019 0.967042\nvt 0.481526 0.883516\nvt 0.586851 0.879477\nvt 0.018335 0.559843\nvt 0.578652 0.882815\nvt 0.013953 0.562384\nvt 0.009561 0.559860\nvt 0.009551 0.554794\nvt 0.013933 0.552253\nvt 0.018325 0.554777\nvt 0.097798 0.966970\nvt 0.103750 0.977135\nvt 0.314834 0.745366\nvt 0.113625 0.560496\nvt 0.679392 0.966948\nvt 0.664307 0.990178\nvt 0.255926 0.235052\nvt 0.248475 0.252851\nvt 0.108559 0.560504\nvt 0.609616 0.990036\nvt 0.678653 0.928346\nvt 0.362351 0.270857\nvt 0.362048 0.283281\nvt 0.893143 0.497521\nvt 0.097923 0.987373\nvt 0.678655 0.934343\nvt 0.470269 0.238922\nvt 0.471872 0.247980\nvt 0.000000 0.462502\nvt 0.880607 0.902931\nvt 0.881785 0.908903\nvt 0.942394 0.503895\nvt 0.993200 0.160070\nvt 0.086144 0.987445\nvt 0.277366 0.998199\nvt 0.593741 0.521437\nvt 0.530028 0.904464\nvt 0.901935 0.005742\nvt 0.779810 0.595713\nvt 0.893143 0.517240\nvt 0.687393 0.604495\nvt 0.991310 0.041309\nvt 0.603815 0.746391\nvt 0.600673 0.734589\nvt 0.129312 0.579292\nvt 0.106020 0.556121\nvt 0.208313 0.885072\nvt 0.202629 0.903514\nvt 0.687393 0.618530\nvt 0.108546 0.551730\nvt 0.129176 0.584504\nvt 0.688459 0.627669\nvt 0.992806 0.029601\nvt 0.774185 0.621041\nvt 0.113611 0.551723\nvt 0.116151 0.556106\nvt 0.893616 0.522301\nvt 0.775399 0.626113\nvt 0.317696 0.731718\nvt 0.953031 0.768234\nvt 0.679890 0.805804\nvt 0.225784 0.558146\nvt 0.224880 0.563524\nvt 0.584831 0.782613\nvt 0.953099 0.759101\nvt 0.268728 0.587587\nvt 0.874679 0.032435\nvt 0.209430 0.995212\nvt 0.865488 0.766061\nvt 0.483398 0.237518\nvt 0.478020 0.247998\nvt 0.865061 0.760995\nvt 0.982850 0.725886\nvt 0.678653 0.993248\nvt 0.585210 0.794387\nvt 0.207849 0.022301\nvt 0.739419 0.931316\nvt 0.107903 0.006295\nvt 0.783208 0.896756\nvt 0.132425 0.969675\nvt 0.788328 0.618315\nvt 0.790015 0.627929\nvt 0.538226 0.902931\nvt 0.683438 0.815450\nvt 0.778141 0.877560\nvt 0.210983 0.985575\nvt 0.776392 0.882580\nvt 0.694485 0.877784\nvt 0.804113 0.957875\nvt 0.660826 0.781243\nvt 0.587267 0.938209\nvt 0.107412 0.000000\nvt 0.763820 0.770477\nvt 0.765850 0.759101\nvt 0.762451 0.793376\nvt 0.780298 0.865453\nvt 0.987036 0.787211\nvt 0.584884 0.142585\nvt 0.925114 0.287265\nvt 0.924964 0.276454\nvt 0.551982 0.273919\nvt 0.662773 0.790808\nvt 0.552257 0.284878\nvt 0.982656 0.714108\nvt 0.586856 0.131954\nvt 0.988952 0.583730\nvt 0.001736 0.057430\nvt 0.622902 0.235052\nvt 0.624226 0.240140\nvt 0.857720 0.858378\nvt 0.856270 0.853323\nvt 0.773884 0.856490\nvt 0.103126 0.897146\nvt 0.572357 0.442190\nvt 0.922846 0.921266\nvt 0.103197 0.888013\nvt 0.489506 0.805850\nvt 0.489688 0.814982\nvt 0.539815 0.908004\nvt 0.875988 0.620296\nvt 0.620622 0.905807\nvt 0.804123 0.952810\nvt 0.855447 0.955443\nvt 0.896988 0.964927\nvt 0.896942 0.969992\nvt 0.368913 0.995223\nvt 0.645891 0.580365\nvt 0.645650 0.586362\nvt 0.764884 0.583522\nvt 0.587491 0.932216\nvt 0.538585 0.936390\nvt 0.538226 0.930375\nvt 0.774048 0.759101\nvt 0.774180 0.770879\nvt 0.580793 0.896782\nvt 0.000000 0.071295\nvt 0.139832 0.067584\nvt 0.137930 0.078300\nvt 0.236921 0.099423\nvt 0.237087 0.105735\nvt 0.933231 0.853323\nvt 0.934740 0.859298\nvt 0.993062 0.855370\nvt 0.994491 0.293875\nvt 0.295552 0.353779\nvt 0.302505 0.341691\nvt 0.999198 0.301702\nvt 0.573654 0.433150\nvt 0.216517 0.306849\nvt 0.216812 0.293875\nvt 0.667255 0.853323\nvt 0.666996 0.858386\nvt 0.369653 0.990188\nvt 0.323844 0.990463\nvt 0.767736 0.857091\nvt 0.001773 0.160086\nvt 0.000000 0.146226\nvt 0.132740 0.150339\nvt 0.130801 0.139630\nvt 0.920636 0.441515\nvt 0.994774 0.309692\nvt 0.400557 0.584495\nvt 0.229544 0.118197\nvt 0.229694 0.111884\nvt 0.391630 0.558146\nvt 0.858912 0.759224\nvt 0.985642 0.309855\nvt 0.980935 0.302029\nvt 0.985359 0.294039\nvt 0.787739 0.978136\nvt 0.904707 0.420410\nvt 0.853773 0.768907\nvt 0.481027 0.752952\nvt 0.480753 0.734589\nvt 0.284486 0.414198\nvt 0.284851 0.408999\nvt 0.581304 0.891714\nvt 0.481526 0.894678\nvt 0.909343 0.865453\nvt 0.909434 0.870517\nvt 0.340999 0.157732\nvt 0.960709 0.867072\nvt 0.873320 0.608419\nvt 0.341687 0.151615\nvt 0.331820 0.665189\nvt 0.938466 0.104143\nvt 0.547719 0.062748\nvt 0.915179 0.811793\nvt 0.338536 0.655043\nvt 0.295580 0.775668\nvt 0.804969 0.940491\nvt 0.934783 0.090162\nvt 0.800393 0.101072\nvt 0.805191 0.945552\nvt 0.856360 0.940773\nvt 0.548131 0.057430\nvt 0.525410 0.979935\nvt 0.895090 0.828629\nvt 0.288702 0.763537\nvt 0.295768 0.751515\nvt 0.525563 0.974872\nvt 0.309712 0.751623\nvt 0.316591 0.763753\nvt 0.909525 0.945530\nvt 0.800427 0.090260\nvt 0.786074 0.714108\nvt 0.309525 0.775776\nvt 0.975021 0.933383\nvt 0.785796 0.724917\nvt 0.595346 0.481731\nvt 0.667907 0.960652\nvt 0.669020 0.954679\nvt 0.609616 0.956291\nvt 0.595414 0.476517\nvt 0.895573 0.823569\nvt 0.498771 0.456930\nvt 0.917208 0.693518\nvt 0.972904 0.921951\nvt 0.972983 0.916886\nvt 0.874467 0.603485\nvt 0.929889 0.921280\nvt 0.929083 0.916202\nvt 0.832759 0.598982\nvt 0.342017 0.625674\nvt 0.271170 0.524712\nvt 0.974290 0.928346\nvt 0.233651 0.639641\nvt 0.913479 0.805804\nvt 0.422633 0.697044\nvt 0.921201 0.705011\nvt 0.660848 0.853323\nvt 0.761742 0.838045\nvt 0.658852 0.859291\nvt 0.926965 0.933140\nvt 0.784168 0.891714\nvt 0.759994 0.844020\nvt 0.822685 0.687370\nvt 0.733983 0.892882\nvt 0.422435 0.707854\nvt 0.344726 0.611995\nvt 0.445996 0.662659\nvt 0.498079 0.451520\nvt 0.453697 0.478987\nvt 0.917401 0.645999\nvt 0.701782 0.690469\nvt 0.072507 0.975336\nvt 0.705728 0.676560\nvt 0.917448 0.634220\nvt 0.665634 0.828764\nvt 0.570486 0.687539\nvt 0.270535 0.498909\nvt 0.544113 0.308225\nvt 0.547384 0.293875\nvt 0.409562 0.320174\nvt 0.570648 0.676728\nvt 0.665796 0.822765\nvt 0.945052 0.270306\nvt 0.446262 0.651108\nvt 0.822478 0.676560\nvt 0.668922 0.781243\nvt 0.409775 0.309284\nvt 0.546609 0.827161\nvt 0.309257 0.303472\nvt 0.628820 0.902931\nvt 0.308654 0.297330\nvt 0.628936 0.908926\nvt 0.672323 0.828754\nvt 0.671944 0.822765\nvt 0.789719 0.822897\nvt 0.573720 0.039475\nvt 0.578919 0.036487\nvt 0.857545 0.390661\nvt 0.129176 0.421706\nvt 0.132720 0.435991\nvt 0.689632 0.904754\nvt 0.778932 0.651116\nvt 0.481526 0.865453\nvt 0.483550 0.871411\nvt 0.997414 0.828755\nvt 0.674244 0.790824\nvt 0.852377 0.734589\nvt 0.852338 0.743722\nvt 0.585271 0.865453\nvt 0.585888 0.870509\nvt 0.686015 0.866295\nvt 0.593004 0.152719\nvt 0.262923 0.434488\nvt 0.429913 0.360193\nvt 0.781961 0.871387\nvt 0.840162 0.865957\nvt 0.129176 0.849271\nvt 0.584106 0.039495\nvt 0.584094 0.045492\nvt 0.578895 0.048480\nvt 0.779757 0.640335\nvt 0.920576 0.933406\nvt 0.579122 0.866522\nvt 0.920816 0.928346\nvt 0.869425 0.928434\nvt 0.849413 0.983046\nvt 0.323844 0.967153\nvt 0.849343 0.977981\nvt 0.791328 0.896756\nvt 0.909153 0.957829\nvt 0.790316 0.891714\nvt 0.836496 0.893044\nvt 0.840364 0.330688\nvt 0.263350 0.445371\nvt 0.129239 0.478363\nvt 0.129176 0.484535\nvt 0.593549 0.158712\nvt 0.243033 0.451520\nvt 0.098565 0.671149\nvt 0.099871 0.587058\nvt 0.573708 0.045472\nvt 0.118486 0.515321\nvt 0.984508 0.805804\nvt 0.786339 0.877560\nvt 0.983032 0.811787\nvt 0.921328 0.808150\nvt 0.804924 0.523101\nvt 0.807806 0.509457\nvt 0.864796 0.320054\nvt 0.497663 0.921416\nvt 0.503149 0.930733\nvt 0.497823 0.940143\nvt 0.365599 0.420410\nvt 0.487012 0.940235\nvt 0.481526 0.930918\nvt 0.365123 0.426561\nvt 0.486851 0.921509\nvt 0.097032 0.545574\nvt 0.100475 0.532061\nvt 0.987573 0.351929\nvt 0.000000 0.519539\nvt 0.101021 0.657422\nvt 0.130454 0.348789\nvt 0.129176 0.342698\nvt 0.002200 0.652614\nvt 0.000000 0.640646\nvt 0.677776 0.377710\nvt 0.481526 0.986892\nvt 0.008833 0.510032\nvt 0.553533 0.294232\nvt 0.904359 0.409481\nvt 0.115475 0.520481\nvt 0.109543 0.520417\nvt 0.977471 0.624526\nvt 0.979562 0.613161\nvt 0.106623 0.515193\nvt 0.553585 0.300404\nvt 0.988586 0.345997\nvt 0.561825 0.854833\nvt 0.737126 0.922192\nvt 0.109635 0.510032\nvt 0.115567 0.510096\nvt 0.737412 0.916202\nvt 0.668466 0.321128\nvt 0.676573 0.916298\nvt 0.983049 0.286814\nvt 0.983561 0.280839\nvt 0.999791 0.558573\nvt 0.634331 0.198386\nvt 0.633077 0.209125\nvt 0.791906 0.580442\nvt 0.999527 0.572515\nvt 0.755380 0.214947\nvt 0.755542 0.221004\nvt 0.779196 0.668791\nvt 0.241819 0.604535\nvt 0.227040 0.868890\nvt 0.773237 0.657265\nvt 0.653426 0.668289\nvt 0.909138 0.645032\nvt 0.871889 0.197994\nvt 0.522548 0.373872\nvt 0.521419 0.363118\nvt 0.232407 0.851328\nvt 0.653713 0.657481\nvt 0.400349 0.384282\nvt 0.950973 0.903815\nvt 0.485770 0.967412\nvt 0.953241 0.909810\nvt 0.400581 0.378228\nvt 0.909203 0.634220\nvt 0.284486 0.359928\nvt 0.481526 0.960642\nvt 0.524952 0.991868\nvt 0.593058 0.996018\nvt 0.994172 0.902931\nvt 0.736363 0.946275\nvt 0.734659 0.940491\nvt 0.994678 0.908736\nvt 0.944824 0.908893\nvt 0.943955 0.902931\nvt 0.609622 0.948531\nvt 0.609616 0.942534\nvt 0.670384 0.945469\nvt 0.807061 0.811795\nvt 0.756618 0.908921\nvt 0.756343 0.902931\nvt 0.811958 0.704214\nvt 0.525656 0.986084\nvt 0.556209 0.007551\nvt 0.556301 0.003043\nvt 0.901928 0.871407\nvt 0.903195 0.865453\nvt 0.887934 0.908637\nvt 0.830287 0.038707\nvt 0.830255 0.036207\nvt 0.878037 0.197994\nvt 0.330194 0.902893\nvt 0.609901 0.928346\nvt 0.695780 0.908714\nvt 0.001411 0.773647\nvt 0.590328 0.980783\nvt 0.552648 0.576737\nvt 0.846310 0.866318\nvt 0.004815 0.561638\nvt 0.007306 0.561861\nvt 0.884870 0.228069\nvt 0.995466 0.200007\nvt 0.351996 0.882505\nvt 0.609616 0.934336\nvt 0.670455 0.934232\nvt 0.110894 0.759455\nvt 0.277877 0.982069\nvt 0.110519 0.765440\nvt 0.809819 0.934311\nvt 0.590187 0.974788\nvt 0.000000 0.779476\nvt 0.874243 0.454417\nvt 0.874824 0.460215\nvt 0.513007 0.005911\nvt 0.798821 0.946412\nvt 0.512829 0.003407\nvt 0.279575 0.513761\nvt 0.470580 0.494016\nvt 0.808604 0.928346\nvt 0.863277 0.929761\nvt 0.377914 0.295227\nvt 0.007501 0.562331\nvt 0.325137 0.295227\nvt 0.819535 0.456983\nvt 0.362419 0.958575\nvt 0.820221 0.461470\nvt 0.905403 0.408525\nvt 0.553280 0.570945\nvt 0.494997 0.573413\nvt 0.495720 0.568932\nvt 0.004396 0.562384\nvt 0.855800 0.877560\nvt 0.813486 0.698269\nvt 0.320395 0.524419\nvt 0.324026 0.938556\nvt 0.579802 0.436637\nvt 0.369589 0.952195\nvt 0.369307 0.979067\nvt 0.457312 0.360843\nvt 0.876987 0.409842\nvt 0.873886 0.409687\nvt 0.325880 0.984039\nvt 0.377839 0.294235\nvt 0.325179 0.294745\nvt 0.323844 0.959432\nvt 0.325544 0.953973\nvt 0.320433 0.519910\nvt 0.755730 0.707651\nvt 0.487383 0.360538\nvt 0.323844 0.944550\nvt 0.744563 0.952810\nvt 0.743741 0.958779\nvt 0.797965 0.957969\nvt 0.277319 0.522773\nvt 0.896323 0.653230\nvt 0.277568 0.520275\nvt 0.323844 0.978363\nvt 0.897682 0.659215\nvt 0.224515 0.158076\nvt 0.951983 0.659669\nvt 0.405324 0.294235\nvt 0.459967 0.360534\nvt 0.755944 0.703114\nvt 0.188755 0.351545\nvt 0.739785 0.166951\nvt 0.046153 0.975790\nvt 0.447549 0.464461\nvt 0.890793 0.970972\nvt 0.889523 0.964927\nvt 0.942741 0.244782\nvt 0.188316 0.353779\nvt 0.213062 0.353392\nvt 0.952071 0.664210\nvt 0.457918 0.360501\nvt 0.487409 0.361047\nvt 0.405247 0.295227\nvt 0.460008 0.361017\nvt 0.739816 0.166695\nvt 0.849343 0.971255\nvt 0.850878 0.965424\nvt 0.384588 0.949371\nvt 0.392458 0.969905\nvt 0.380010 0.969905\nvt 0.996911 0.838045\nvt 0.967151 0.838123\nvt 0.123027 0.328663\nvt 0.122030 0.364306\nvt 0.095534 0.388497\nvt 0.227040 0.896375\nvt 0.059060 0.387066\nvt 0.033973 0.360851\nvt 0.034970 0.325209\nvt 0.076270 0.293875\nvt 0.099686 0.294411\nvt 0.874417 0.410998\nvt 0.876907 0.410531\nvt 0.227077 0.898948\nvt 0.224817 0.155585\nvt 0.431963 0.361047\nvt 0.275035 0.907316\nvt 0.275449 0.909977\nvt 0.429236 1.000000\nvt 0.175938 0.156453\nvt 0.995958 0.696093\nvt 0.995957 0.693518\nvt 0.352554 0.294439\nvt 0.429224 0.997491\nvt 0.804932 0.037787\nvt 0.275511 0.909241\nvt 0.350505 0.294761\nvt 0.949183 0.707703\nvt 0.949571 0.705038\nvt 0.927349 0.693658\nvt 0.949341 0.706159\nvt 0.512755 0.360615\nvt 0.927349 0.693658\nvt 0.379963 0.294977\nvt 0.485334 0.361047\nvt 0.585775 0.422376\nvt 0.646952 0.090162\nvt 0.662813 0.763194\nvt 0.770436 0.159076\nvt 0.766869 0.150041\nvt 0.985265 0.781243\nvt 0.887774 0.785891\nvt 0.314599 0.345989\nvt 0.675472 0.363329\nvt 0.308654 0.331695\nvt 0.859026 0.382463\nvt 0.868717 0.359928\nvt 0.338336 0.544436\nvt 0.342817 0.548840\nvt 0.899907 0.977404\nvt 0.928494 0.982747\nvt 0.428617 0.481878\nvt 0.701923 0.593736\nvt 0.863935 0.404664\nvt 0.529457 0.532804\nvt 0.816112 0.676560\nvt 0.713926 0.690822\nvt 0.715688 0.679401\nvt 0.961003 0.844033\nvt 0.960597 0.838045\nvt 0.865306 0.843741\nvt 0.904704 0.410998\nvt 0.879036 0.408627\nvt 0.762361 0.781243\nvt 0.763099 0.787227\nvt 0.881625 0.782092\nvt 0.539413 0.981974\nvt 0.538226 0.976003\nvt 0.049326 0.785247\nvt 0.997046 0.822765\nvt 0.901721 0.827852\nvt 0.345988 0.059991\nvt 0.346682 0.066105\nvt 0.538226 0.922177\nvt 0.539733 0.916202\nvt 0.601418 0.920149\nvt 0.878372 0.989194\nvt 0.849343 0.989818\nvt 0.807741 0.805804\nvt 0.689586 0.807824\nvt 0.699947 0.047457\nvt 0.700578 0.049949\nvt 0.724899 0.048298\nvt 0.791666 0.586438\nvt 0.890894 0.583498\nvt 0.778013 0.972892\nvt 0.743741 0.965798\nvt 0.296982 0.895825\nvt 0.296982 0.895825\nvt 0.242065 0.457904\nvt 0.294418 0.485562\nvt 0.599065 0.960601\nvt 0.538226 0.960627\nvt 0.855707 0.883556\nvt 0.916511 0.881503\nvt 0.014081 0.405725\nvt 0.008553 0.407215\nvt 0.669422 0.327514\nvt 0.721251 0.293875\nvt 0.886994 0.491761\nvt 0.992806 0.012865\nvt 0.676146 0.640154\nvt 0.677150 0.634220\nvt 0.889645 0.718577\nvt 0.890041 0.724582\nvt 0.815939 0.809294\nvt 0.470994 0.980000\nvt 0.711408 0.151871\nvt 0.710463 0.157871\nvt 0.754751 0.782985\nvt 0.756212 0.788034\nvt 0.274876 0.584258\nvt 0.278602 0.571428\nvt 0.677697 0.663689\nvt 0.676146 0.657663\nvt 0.236844 0.634220\nvt 0.482550 0.770549\nvt 0.871416 0.342387\nvt 0.870944 0.336330\nvt 0.678653 0.972928\nvt 0.732860 0.971371\nvt 0.350874 0.603993\nvt 0.245934 0.593736\nvt 0.994911 0.654650\nvt 0.994661 0.657211\nvt 0.899958 0.726173\nvt 0.896190 0.716610\nvt 0.368086 0.867952\nvt 0.999911 0.741163\nvt 0.909813 0.558146\nvt 0.905325 0.569455\nvt 0.993404 0.645222\nvt 0.997052 0.635613\nvt 0.857108 0.842280\nvt 0.129429 0.993464\nvt 0.129176 0.988401\nvt 0.042285 0.305158\nvt 0.000000 0.369660\nvt 0.007472 0.388516\nvt 0.129176 0.960757\nvt 0.180667 0.940064\nvt 0.180667 0.954676\nvt 0.129176 0.930502\nvt 0.203452 0.919458\nvt 0.150401 0.930596\nvt 0.476013 0.003639\nvt 0.476951 0.007551\nvt 0.510779 0.004387\nvt 0.757302 0.151871\nvt 0.752495 0.159932\nvt 0.717557 0.152687\nvt 0.205776 0.802810\nvt 0.144852 0.768476\nvt 0.135190 0.804959\nvt 0.082548 0.625129\nvt 0.014325 0.593206\nvt 0.025695 0.634498\nvt 0.190212 0.379314\nvt 0.235640 0.359928\nvt 0.247922 0.414262\nvt 0.129176 0.391613\nvt 0.138777 0.365686\nvt 0.000000 0.829860\nvt 0.000250 0.797607\nvt 0.049111 0.824589\nvt 0.110647 0.456354\nvt 0.061092 0.394665\nvt 0.027825 0.453962\nvt 0.002838 0.456094\nvt 0.134514 0.843122\nvt 0.129176 0.811692\nvt 0.217362 0.841722\nvt 0.000000 0.189418\nvt 0.000975 0.166234\nvt 0.170203 0.209140\nvt 0.168534 0.176726\nvt 0.248334 0.189670\nvt 0.217027 0.172076\nvt 0.000000 0.711672\nvt 0.080509 0.696161\nvt 0.072136 0.677298\nvt 0.048909 0.712622\nvt 0.988802 0.082192\nvt 0.987519 0.057430\nvt 0.891548 0.079326\nvt 0.905248 0.057607\nvt 0.135667 0.874227\nvt 0.211488 0.850071\nvt 0.210436 0.876312\nvt 0.025079 0.586803\nvt 0.000000 0.577715\nvt 0.020605 0.564749\nvt 0.876915 0.373064\nvt 0.904902 0.360343\nvt 0.971556 0.359928\nvt 0.690329 0.026315\nvt 0.693799 0.048480\nvt 0.600119 0.023400\nvt 0.586155 0.047841\nvt 0.361088 0.200332\nvt 0.361754 0.223784\nvt 0.447698 0.175717\nvt 0.425062 0.192148\nvt 0.258986 0.166234\nvt 0.447601 0.167111\nvt 0.122521 0.112538\nvt 0.128570 0.137473\nvt 0.016091 0.135984\nvt 0.025191 0.113767\nvt 0.697340 0.410765\nvt 0.675472 0.394941\nvt 0.766509 0.392801\nvt 0.780637 0.407715\nvt 0.489887 0.326322\nvt 0.481148 0.353307\nvt 0.397874 0.349648\nvt 0.399270 0.329009\nvt 0.768401 0.380087\nvt 0.772094 0.361628\nvt 0.468266 0.508376\nvt 0.277319 0.491711\nvt 0.373949 0.492863\nvt 0.373920 0.511069\nvt 0.674142 0.439522\nvt 0.679347 0.421393\nvt 0.875636 0.166234\nvt 0.948999 0.167055\nvt 0.977461 0.175996\nvt 0.890319 0.187024\nvt 0.981311 0.183800\nvt 0.783468 0.558146\nvt 0.645650 0.560635\nvt 0.770194 0.276376\nvt 0.632782 0.287231\nvt 0.630375 0.275441\nvt 0.382526 0.728441\nvt 0.521915 0.716509\nvt 0.656309 0.097089\nvt 0.649930 0.096457\nvt 0.654368 0.104915\nvt 0.539627 0.593736\nvt 0.545690 0.607980\nvt 0.681245 0.597711\nvt 0.553533 0.337784\nvt 0.556180 0.352107\nvt 0.689460 0.335712\nvt 0.690205 0.349567\nvt 0.531539 0.648452\nvt 0.534570 0.634220\nvt 0.667948 0.647602\nvt 0.518165 0.148733\nvt 0.517601 0.157618\nvt 0.347836 0.150836\nvt 0.766869 0.120759\nvt 0.767566 0.111884\nvt 0.576633 0.788862\nvt 0.686398 0.698667\nvt 0.570486 0.705127\nvt 0.950341 0.482327\nvt 0.957755 0.451520\nvt 0.452411 0.666110\nvt 0.517035 0.664416\nvt 0.623613 0.558146\nvt 0.585569 0.586298\nvt 0.559429 0.569927\nvt 0.399415 0.677783\nvt 0.416286 0.702408\nvt 0.359723 0.831941\nvt 0.323844 0.832015\nvt 0.103769 0.960821\nvt 0.116517 0.948564\nvt 0.279666 0.809564\nvt 0.286793 0.828887\nvt 0.314853 0.834222\nvt 0.272277 0.944440\nvt 0.269679 0.951272\nvt 0.234149 0.918451\nvt 0.227040 0.923906\nvt 0.424409 0.891569\nvt 0.427366 0.883354\nvt 0.825062 0.998089\nvt 0.787739 0.997955\nvt 0.046260 0.494862\nvt 0.050595 0.482886\nvt 0.093549 0.503883\nvt 0.060853 0.750260\nvt 0.117104 0.737339\nvt 0.115305 0.749623\nvt 0.208125 0.726269\nvt 0.000000 0.906408\nvt 0.002789 0.918333\nvt 0.425373 0.850489\nvt 0.423032 0.862510\nvt 0.989914 0.147670\nvt 0.942893 0.158682\nvt 0.973732 0.451520\nvt 0.963904 0.451616\nvt 0.933556 0.532852\nvt 0.988907 0.535492\nvt 0.971494 0.530861\nvt 0.002713 0.986930\nvt 0.000000 0.975419\nvt 0.361664 0.800713\nvt 0.361385 0.813453\nvt 0.519459 0.401697\nvt 0.518062 0.410799\nvt 0.471702 0.992406\nvt 0.470975 0.987686\nvt 0.112481 0.621662\nvt 0.107859 0.621571\nvt 0.120196 0.618458\nvt 0.267115 0.797530\nvt 0.373862 0.714108\nvt 0.344296 0.717141\nvt 0.188865 0.940020\nvt 0.188865 0.954631\nvt 0.978379 0.242493\nvt 0.951201 0.235052\nvt 0.994903 0.140859\nvt 0.994040 0.130044\nvt 0.382467 0.901239\nvt 0.380010 0.910152\nvt 0.000000 0.731848\nvt 0.002545 0.744347\nvt 0.946025 0.099538\nvt 0.944615 0.090401\nvt 0.366309 0.771045\nvt 0.346299 0.768829\nvt 0.238044 0.962688\nvt 0.997639 0.405902\nvt 0.999137 0.390661\nvt 0.380010 0.781243\nvt 0.450581 0.783412\nvt 0.997388 0.420410\nvt 0.926784 0.420786\nvt 0.980646 0.439268\nvt 0.581235 0.148733\nvt 0.578233 0.158739\nvt 0.999507 0.767313\nvt 0.994317 0.774319\nvt 0.324223 0.914549\nvt 0.323844 0.922631\nvt 0.459927 0.865453\nvt 0.440238 0.884861\nvt 0.437504 0.875577\nvt 0.308215 0.997849\nvt 0.001875 0.287532\nvt 0.000000 0.276809\nvt 0.654479 0.377850\nvt 0.530746 0.373767\nvt 0.531012 0.359928\nvt 0.602780 0.462664\nvt 0.992496 0.214273\nvt 0.132355 0.593736\nvt 0.129176 0.607237\nvt 0.729450 0.347714\nvt 0.729620 0.336903\nvt 0.001007 0.051282\nvt 0.000000 0.045212\nvt 0.667550 0.544651\nvt 0.667352 0.533841\nvt 0.352785 0.002767\nvt 0.352105 0.008886\nvt 0.649150 0.405858\nvt 0.648198 0.411857\nvt 0.733385 0.484056\nvt 0.732444 0.478054\nvt 0.227040 0.725656\nvt 0.227480 0.714108\nvt 0.669161 0.766814\nvt 0.668962 0.760817\nvt 0.870944 0.299106\nvt 0.874440 0.293875\nvt 0.129176 0.676560\nvt 0.129204 0.682851\nvt 0.762361 0.799376\nvt 0.861484 0.793953\nvt 0.528487 0.720123\nvt 0.528063 0.714108\nvt 0.465219 0.117937\nvt 0.465464 0.111884\nvt 0.347836 0.127034\nvt 0.802077 0.286574\nvt 0.801760 0.280581\nvt 0.779647 0.714307\nvt 0.779124 0.720314\nvt 0.768559 0.057430\nvt 0.768599 0.063489\nvt 0.885399 0.076552\nvt 0.661362 0.620130\nvt 0.661394 0.614129\nvt 0.942491 0.510109\nvt 0.995261 0.491828\nvt 0.107460 0.815357\nvt 0.057309 0.802628\nvt 0.060970 0.797607\nvt 0.496035 0.331288\nvt 0.735543 0.952810\nvt 0.678653 0.953072\nvt 0.599889 0.520203\nvt 0.707190 0.492484\nvt 0.711011 0.504074\nvt 0.592096 0.491711\nvt 0.476857 0.509363\nvt 0.476728 0.498325\nvt 0.927408 0.545721\nvt 0.916957 0.530861\nvt 0.811805 0.543219\nvt 0.815860 0.531731\nvt 0.380010 0.748741\nvt 0.384317 0.737079\nvt 0.898800 0.572806\nvt 0.899176 0.561157\nvt 0.114082 0.838058\nvt 0.000031 0.849427\nvt 0.000000 0.840294\nvt 0.876309 0.023387\nvt 0.792735 0.005332\nvt 0.792608 0.000000\nvt 0.700520 0.038407\nvt 0.699947 0.033241\nvt 0.487175 0.744095\nvt 0.487181 0.734962\nvt 0.639947 0.101133\nvt 0.640803 0.096004\nvt 0.993158 0.516257\nvt 0.992373 0.521328\nvt 0.796643 0.827837\nvt 0.795867 0.822765\nvt 0.675405 0.896755\nvt 0.727835 0.892713\nvt 0.680063 0.998258\nvt 0.729221 0.993617\nvt 0.129176 0.979426\nvt 0.218110 0.968955\nvt 0.216696 0.974078\nvt 0.875824 0.625361\nvt 0.599886 0.807433\nvt 0.601475 0.812504\nvt 0.989133 0.578664\nvt 0.905325 0.581509\nvt 0.667953 0.891714\nvt 0.587453 0.896416\nvt 0.000493 0.894308\nvt 0.000000 0.889239\nvt 0.470506 0.425528\nvt 0.470503 0.420410\nvt 0.371748 0.437267\nvt 0.593440 0.805804\nvt 0.593738 0.810865\nvt 0.956478 0.737065\nvt 0.955923 0.742129\nvt 0.232449 0.530861\nvt 0.232223 0.535973\nvt 0.330199 0.551997\nvt 0.540176 0.831651\nvt 0.540461 0.826589\nvt 0.922935 0.916202\nvt 0.871569 0.917829\nvt 0.787739 0.983202\nvt 0.839068 0.980669\nvt 0.938137 0.965298\nvt 0.938584 0.970367\nvt 0.832566 0.593736\nvt 0.788328 0.610117\nvt 0.481526 0.978609\nvt 0.482171 0.973561\nvt 0.324028 0.972215\nvt 0.367228 0.965580\nvt 0.366036 0.970692\nvt 0.890560 0.982481\nvt 0.891375 0.977404\nvt 0.910551 0.940491\nvt 0.862508 0.941635\nvt 0.907617 0.952810\nvt 0.861596 0.956860\nvt 0.802531 0.249114\nvt 0.801760 0.235052\nvt 0.131224 0.505429\nvt 0.129176 0.491711\nvt 0.779206 0.436483\nvt 0.779069 0.423660\nvt 0.729450 0.304972\nvt 0.738089 0.293875\nvt 0.304121 0.451520\nvt 0.300566 0.463750\nvt 0.787521 0.883520\nvt 0.849558 0.878364\nvt 0.717160 0.503258\nvt 0.717617 0.491711\nvt 0.882833 0.620362\nvt 0.882666 0.614364\nvt 0.344684 0.640061\nvt 0.346048 0.634220\nvt 0.822478 0.693735\nvt 0.824251 0.699771\nvt 0.532011 0.662662\nvt 0.531539 0.656650\nvt 0.545584 0.701710\nvt 0.545707 0.707710\nvt 0.785906 0.641880\nvt 0.786573 0.635887\nvt 0.944138 0.682643\nvt 0.944257 0.676643\nvt 0.372720 0.940035\nvt 0.373120 0.946047\nvt 0.049499 0.791458\nvt 0.102041 0.772533\nvt 0.931263 0.282379\nvt 0.932355 0.276454\nvt 0.278757 0.976138\nvt 0.227040 0.974530\nvt 0.229532 0.968837\nvt 0.062273 0.756408\nvt 0.060853 0.762328\nvt 0.796932 0.940491\nvt 0.742511 0.945920\nvt 0.977405 0.000628\nvt 0.989815 0.020930\nvt 0.691147 0.612381\nvt 0.493824 0.759197\nvt 0.500000 0.759101\nvt 0.429867 0.361047\nvt 0.404542 0.360284\nvt 0.526911 0.960789\nvt 0.528866 0.965922\nvt 0.594532 0.990172\nvt 0.538291 0.996405\nvt 0.538226 0.991897\nvt 0.714107 0.699538\nvt 0.713926 0.696971\nvt 0.454304 0.560776\nvt 0.454193 0.558146\nvt 0.409085 0.577937\nvt 0.408755 0.575393\nvt 0.678769 0.946661\nvt 0.678653 0.942154\nvt 0.778812 0.469276\nvt 0.778677 0.471906\nvt 0.732801 0.451520\nvt 0.732444 0.454062\nvt 0.380010 0.996112\nvt 0.380618 0.993652\nvt 0.175619 0.153940\nvt 0.175671 0.154193\nvt 0.764565 0.166626\nvt 0.564338 0.688425\nvn 0.912731 0.155721 0.377721\nvn 0.912731 0.155721 0.377721\nvn 0.912731 0.155721 0.377721\nvn 0.912731 0.155721 0.377721\nvn 0.912731 0.155721 0.377721\nvn 0.398893 0.347365 0.848659\nvn 0.398893 0.347365 0.848659\nvn 0.398893 0.347365 0.848659\nvn 0.398893 0.347365 0.848659\nvn 0.398893 0.347365 0.848659\nvn -0.445920 0.410680 0.795297\nvn -0.445920 0.410680 0.795297\nvn -0.445920 0.410680 0.795297\nvn -0.445920 0.410680 0.795297\nvn -0.445920 0.410680 0.795297\nvn -0.752546 0.580136 0.311635\nvn -0.752546 0.580136 0.311635\nvn -0.752546 0.580136 0.311635\nvn -0.947001 0.136388 -0.290841\nvn -0.947001 0.136388 -0.290841\nvn -0.947001 0.136388 -0.290841\nvn -0.947001 0.136388 -0.290841\nvn -0.947001 0.136388 -0.290841\nvn -0.332721 -0.076479 -0.939919\nvn -0.332721 -0.076479 -0.939919\nvn -0.332721 -0.076479 -0.939919\nvn -0.332721 -0.076479 -0.939919\nvn 0.380446 -0.102942 -0.919056\nvn 0.380446 -0.102942 -0.919056\nvn 0.380446 -0.102942 -0.919056\nvn 0.380446 -0.102942 -0.919056\nvn 0.380446 -0.102942 -0.919056\nvn 0.899974 -0.088523 -0.426862\nvn 0.899974 -0.088523 -0.426862\nvn 0.899974 -0.088523 -0.426862\nvn 0.899974 -0.088523 -0.426862\nvn 0.899974 -0.088523 -0.426862\nvn 0.809751 -0.521031 0.269872\nvn 0.809751 -0.521031 0.269872\nvn 0.809751 -0.521031 0.269872\nvn 0.809751 -0.521031 0.269872\nvn 0.250235 -0.310801 0.916943\nvn 0.250235 -0.310801 0.916943\nvn 0.250235 -0.310801 0.916943\nvn 0.250235 -0.310801 0.916943\nvn -0.438247 0.099853 0.893291\nvn -0.438247 0.099853 0.893291\nvn -0.438247 0.099853 0.893291\nvn -0.438247 0.099853 0.893291\nvn -0.810970 0.557531 0.177446\nvn -0.810970 0.557531 0.177446\nvn -0.810970 0.557531 0.177446\nvn -0.810970 0.557531 0.177446\nvn -0.754995 0.558910 -0.342933\nvn -0.754995 0.558910 -0.342933\nvn -0.754995 0.558910 -0.342933\nvn -0.754995 0.558910 -0.342933\nvn -0.285840 0.397235 -0.872066\nvn -0.285840 0.397235 -0.872066\nvn -0.285840 0.397235 -0.872066\nvn -0.285840 0.397235 -0.872066\nvn 0.406955 0.002279 -0.913445\nvn 0.406955 0.002279 -0.913445\nvn 0.406955 0.002279 -0.913445\nvn 0.406955 0.002279 -0.913445\nvn 0.852312 -0.374614 -0.365005\nvn 0.852312 -0.374614 -0.365005\nvn 0.852312 -0.374614 -0.365005\nvn 0.852312 -0.374614 -0.365005\nvn 0.857829 0.409713 0.310266\nvn 0.857829 0.409713 0.310266\nvn 0.857829 0.409713 0.310266\nvn 0.857829 0.409713 0.310266\nvn 0.370956 -0.038182 0.927865\nvn 0.370956 -0.038182 0.927865\nvn 0.370956 -0.038182 0.927865\nvn 0.370956 -0.038182 0.927865\nvn -0.337598 -0.360380 0.869571\nvn -0.337598 -0.360380 0.869571\nvn -0.337598 -0.360380 0.869571\nvn -0.337598 -0.360380 0.869571\nvn -0.859647 -0.427415 0.279862\nvn -0.859647 -0.427415 0.279862\nvn -0.859647 -0.427415 0.279862\nvn -0.859647 -0.427415 0.279862\nvn -0.864774 -0.203528 -0.459067\nvn -0.864774 -0.203528 -0.459067\nvn -0.864774 -0.203528 -0.459067\nvn -0.864774 -0.203528 -0.459067\nvn -0.268143 0.238905 -0.933287\nvn -0.268143 0.238905 -0.933287\nvn -0.268143 0.238905 -0.933287\nvn -0.268143 0.238905 -0.933287\nvn -0.268143 0.238905 -0.933287\nvn 0.353300 0.551059 -0.755985\nvn 0.353300 0.551059 -0.755985\nvn 0.353300 0.551059 -0.755985\nvn 0.353300 0.551059 -0.755985\nvn 0.709251 0.561794 -0.425853\nvn 0.709251 0.561794 -0.425853\nvn 0.709251 0.561794 -0.425853\nvn 0.709251 0.561794 -0.425853\nvn 0.709251 0.561794 -0.425853\nvn 0.340414 0.392245 0.854554\nvn 0.340414 0.392245 0.854554\nvn 0.340414 0.392245 0.854554\nvn -0.066427 0.574786 0.815603\nvn -0.066427 0.574786 0.815603\nvn -0.066427 0.574786 0.815603\nvn -0.798847 0.555431 0.230955\nvn -0.798847 0.555431 0.230955\nvn -0.798847 0.555431 0.230955\nvn -0.891661 0.349260 -0.288026\nvn -0.891661 0.349260 -0.288026\nvn -0.891661 0.349260 -0.288026\nvn -0.891661 0.349260 -0.288026\nvn -0.359756 -0.230102 -0.904228\nvn -0.359756 -0.230102 -0.904228\nvn -0.359756 -0.230102 -0.904228\nvn 0.355487 -0.456036 -0.815880\nvn 0.355487 -0.456036 -0.815880\nvn 0.355487 -0.456036 -0.815880\nvn 0.355487 -0.456036 -0.815880\nvn 0.869551 -0.418505 -0.262174\nvn 0.869551 -0.418504 -0.262174\nvn 0.869551 -0.418505 -0.262174\nvn -0.360711 -0.558237 0.747167\nvn -0.360711 -0.558237 0.747167\nvn -0.360711 -0.558237 0.747167\nvn 0.358509 0.592171 -0.721668\nvn 0.358509 0.592171 -0.721668\nvn 0.358509 0.592171 -0.721668\nvn 0.358509 0.592171 -0.721668\nvn 0.901958 0.083426 0.423688\nvn 0.901958 0.083426 0.423688\nvn 0.901958 0.083426 0.423688\nvn -0.375790 0.480172 0.792601\nvn -0.375790 0.480172 0.792601\nvn -0.375790 0.480172 0.792601\nvn -0.907016 0.030542 -0.419987\nvn -0.907016 0.030542 -0.419987\nvn -0.907016 0.030542 -0.419987\nvn 0.394251 -0.394393 -0.830072\nvn 0.394251 -0.394393 -0.830072\nvn 0.394251 -0.394393 -0.830072\nvn 0.796472 0.520578 0.307621\nvn 0.796472 0.520578 0.307621\nvn 0.796472 0.520578 0.307621\nvn 0.796472 0.520578 0.307621\nvn 0.316968 0.618119 0.719348\nvn 0.316968 0.618119 0.719348\nvn 0.316968 0.618118 0.719348\nvn 0.316968 0.618118 0.719348\nvn -0.411813 0.535498 0.737328\nvn -0.411813 0.535498 0.737328\nvn -0.411813 0.535498 0.737328\nvn -0.411813 0.535498 0.737328\nvn -0.861927 0.271800 0.428027\nvn -0.861927 0.271800 0.428027\nvn -0.861927 0.271800 0.428027\nvn -0.861927 0.271800 0.428027\nvn -0.905738 -0.209024 -0.368710\nvn -0.905738 -0.209024 -0.368710\nvn -0.905738 -0.209024 -0.368710\nvn -0.905738 -0.209024 -0.368710\nvn -0.352684 -0.392665 -0.849369\nvn -0.352684 -0.392665 -0.849369\nvn -0.352684 -0.392665 -0.849369\nvn -0.352684 -0.392665 -0.849369\nvn 0.379729 -0.267159 -0.885682\nvn 0.379729 -0.267159 -0.885682\nvn 0.379729 -0.267159 -0.885682\nvn 0.379729 -0.267159 -0.885682\nvn 0.912221 0.164911 -0.375042\nvn 0.912221 0.164911 -0.375042\nvn 0.912221 0.164911 -0.375043\nvn 0.912221 0.164911 -0.375042\nvn 0.595657 -0.569795 0.566150\nvn 0.595657 -0.569795 0.566151\nvn 0.595657 -0.569795 0.566150\nvn 0.698772 0.085304 0.710240\nvn 0.698772 0.085304 0.710240\nvn 0.698772 0.085304 0.710240\nvn 0.698772 0.085304 0.710240\nvn -0.937751 -0.061837 -0.341760\nvn -0.937751 -0.061837 -0.341760\nvn -0.937751 -0.061837 -0.341760\nvn -0.937751 -0.061837 -0.341760\nvn 0.062157 -0.998065 0.001536\nvn 0.062157 -0.998065 0.001536\nvn 0.062157 -0.998065 0.001536\nvn 0.062157 -0.998065 0.001536\nvn 0.062157 -0.998065 0.001536\nvn 0.062157 -0.998065 0.001536\nvn 0.062157 -0.998065 0.001536\nvn 0.062157 -0.998065 0.001536\nvn 0.062157 -0.998065 0.001536\nvn 0.446340 0.780089 -0.438454\nvn 0.446340 0.780089 -0.438454\nvn 0.446340 0.780089 -0.438454\nvn 0.446340 0.780089 -0.438454\nvn 0.558336 0.681888 0.472535\nvn 0.558336 0.681888 0.472535\nvn 0.558336 0.681888 0.472535\nvn 0.558336 0.681888 0.472535\nvn 0.302034 0.036871 0.952584\nvn 0.302034 0.036871 0.952584\nvn 0.302034 0.036871 0.952584\nvn 0.302034 0.036871 0.952584\nvn -0.321768 -0.945197 -0.055380\nvn -0.321768 -0.945198 -0.055380\nvn -0.321768 -0.945197 -0.055380\nvn -0.321768 -0.945198 -0.055380\nvn 0.135191 0.016504 -0.990682\nvn 0.135191 0.016504 -0.990682\nvn 0.135191 0.016504 -0.990682\nvn 0.135191 0.016504 -0.990682\nvn 0.552561 0.781130 -0.290711\nvn 0.552561 0.781130 -0.290711\nvn 0.552561 0.781130 -0.290711\nvn 0.552561 0.781130 -0.290711\nvn 0.128569 0.912172 0.389117\nvn 0.128569 0.912172 0.389117\nvn 0.128569 0.912172 0.389117\nvn 0.128569 0.912172 0.389117\nvn -0.309455 -0.037777 0.950163\nvn -0.309455 -0.037777 0.950163\nvn -0.309455 -0.037777 0.950163\nvn -0.309455 -0.037777 0.950163\nvn -0.117136 -0.992797 -0.025149\nvn -0.117136 -0.992797 -0.025149\nvn -0.117136 -0.992797 -0.025149\nvn -0.117136 -0.992797 -0.025149\nvn 0.712646 0.086998 -0.696109\nvn 0.712646 0.086998 -0.696109\nvn 0.712646 0.086998 -0.696109\nvn 0.712645 0.086998 -0.696109\nvn 0.131249 0.864332 -0.485494\nvn 0.131249 0.864332 -0.485494\nvn 0.131249 0.864332 -0.485494\nvn 0.479176 0.859108 0.179787\nvn 0.479176 0.859108 0.179787\nvn 0.479176 0.859108 0.179787\nvn 0.667976 0.081545 0.739701\nvn 0.667976 0.081545 0.739701\nvn 0.667976 0.081545 0.739701\nvn -0.105417 -0.993335 0.046610\nvn -0.105417 -0.993335 0.046610\nvn -0.105417 -0.993335 0.046610\nvn -0.303002 -0.036989 -0.952272\nvn -0.303002 -0.036989 -0.952272\nvn -0.303002 -0.036989 -0.952272\nvn -0.093709 0.601193 -0.793590\nvn -0.093709 0.601193 -0.793590\nvn -0.093709 0.601193 -0.793590\nvn -0.093709 0.601193 -0.793590\nvn 0.690179 0.681372 0.243691\nvn 0.690179 0.681372 0.243691\nvn 0.690179 0.681372 0.243691\nvn 0.690179 0.681372 0.243691\nvn -0.048463 -0.994534 0.092488\nvn -0.048463 -0.994534 0.092488\nvn -0.048463 -0.994534 0.092488\nvn -0.048463 -0.994534 0.092488\nvn -0.343401 -0.041922 -0.938253\nvn -0.343401 -0.041922 -0.938253\nvn -0.343401 -0.041922 -0.938253\nvn -0.343401 -0.041922 -0.938253\nvn 0.787244 0.096105 0.609106\nvn 0.787244 0.096105 0.609106\nvn 0.787244 0.096105 0.609106\nvn 0.787244 0.096105 0.609106\nvn -0.120989 0.715667 -0.687882\nvn -0.120989 0.715667 -0.687882\nvn -0.120989 0.715667 -0.687882\nvn 0.688788 0.724947 -0.004762\nvn 0.688788 0.724947 -0.004762\nvn 0.688788 0.724947 -0.004762\nvn -0.123941 -0.973536 0.192008\nvn -0.123941 -0.973536 0.192008\nvn -0.123941 -0.973536 0.192008\nvn -0.608327 -0.074263 -0.790204\nvn -0.608327 -0.074263 -0.790204\nvn -0.608327 -0.074263 -0.790204\nvn 0.908171 0.110867 0.403651\nvn 0.908171 0.110867 0.403651\nvn 0.908171 0.110867 0.403651\nvn -0.554151 0.639740 -0.532587\nvn -0.554151 0.639740 -0.532587\nvn -0.554151 0.639740 -0.532587\nvn -0.554151 0.639740 -0.532587\nvn 0.575696 0.753313 -0.317952\nvn 0.575696 0.753313 -0.317952\nvn 0.575696 0.753313 -0.317952\nvn 0.575696 0.753313 -0.317952\nvn -0.075295 -0.965451 -0.249468\nvn -0.075295 -0.965451 -0.249468\nvn -0.075295 -0.965451 -0.249468\nvn -0.075295 -0.965451 -0.249468\nvn 0.037330 -0.986388 -0.160141\nvn 0.037330 -0.986388 -0.160141\nvn 0.037330 -0.986388 -0.160141\nvn 0.037330 -0.986388 -0.160141\nvn 0.971957 0.107397 -0.209202\nvn 0.971957 0.107397 -0.209202\nvn 0.971957 0.107397 -0.209202\nvn 0.971957 0.107397 -0.209202\nvn -0.766550 -0.060063 -0.639370\nvn -0.766550 -0.060063 -0.639370\nvn -0.766550 -0.060063 -0.639370\nvn -0.766550 -0.060063 -0.639370\nvn -0.374600 0.896977 -0.234750\nvn -0.374600 0.896977 -0.234750\nvn -0.374600 0.896977 -0.234750\nvn -0.374600 0.896977 -0.234750\nvn 0.155206 0.686916 -0.709970\nvn 0.155206 0.686916 -0.709970\nvn 0.155206 0.686916 -0.709970\nvn 0.155206 0.686916 -0.709970\nvn 0.178339 -0.960845 0.212066\nvn 0.178339 -0.960845 0.212066\nvn 0.178339 -0.960845 0.212066\nvn 0.178339 -0.960845 0.212066\nvn 0.119565 -0.959278 0.255911\nvn 0.119565 -0.959278 0.255911\nvn 0.119565 -0.959278 0.255911\nvn 0.119565 -0.959278 0.255911\nvn 0.527997 -0.048038 -0.847886\nvn 0.527997 -0.048038 -0.847886\nvn 0.527997 -0.048038 -0.847886\nvn 0.527997 -0.048038 -0.847886\nvn -0.913152 0.053197 0.404133\nvn -0.913152 0.053197 0.404133\nvn -0.913152 0.053197 0.404133\nvn -0.913152 0.053197 0.404133\nvn -0.320834 0.944771 -0.066877\nvn -0.320834 0.944771 -0.066877\nvn -0.320834 0.944771 -0.066877\nvn 0.420922 0.833517 -0.357874\nvn 0.420922 0.833517 -0.357874\nvn 0.420922 0.833517 -0.357874\nvn -0.097697 -0.993064 -0.065414\nvn -0.097697 -0.993064 -0.065414\nvn -0.097697 -0.993064 -0.065414\nvn -0.019617 -0.995173 -0.096152\nvn -0.019617 -0.995173 -0.096152\nvn -0.019617 -0.995173 -0.096152\nvn 0.849448 0.032189 -0.526689\nvn 0.849448 0.032189 -0.526689\nvn 0.849448 0.032189 -0.526689\nvn -0.992423 -0.030255 0.119089\nvn -0.992423 -0.030255 0.119089\nvn -0.992423 -0.030255 0.119089\nvn -0.132765 0.719028 0.682182\nvn -0.132765 0.719028 0.682182\nvn -0.132765 0.719028 0.682182\nvn -0.132765 0.719028 0.682182\nvn -0.586184 0.647050 -0.487560\nvn -0.586184 0.647050 -0.487560\nvn -0.586184 0.647050 -0.487560\nvn -0.586184 0.647050 -0.487560\nvn -0.585646 -0.071494 -0.807408\nvn -0.585646 -0.071494 -0.807408\nvn -0.585646 -0.071494 -0.807408\nvn -0.585646 -0.071494 -0.807408\nvn -0.091021 -0.995722 -0.015929\nvn -0.091021 -0.995722 -0.015929\nvn -0.091021 -0.995722 -0.015929\nvn -0.091021 -0.995722 -0.015929\nvn -0.027865 -0.997027 0.071836\nvn -0.027865 -0.997027 0.071836\nvn -0.027865 -0.997027 0.071836\nvn -0.027865 -0.997027 0.071836\nvn 0.067009 0.008180 0.997719\nvn 0.067009 0.008180 0.997719\nvn 0.067009 0.008180 0.997719\nvn 0.067009 0.008180 0.997719\nvn -0.394681 0.797788 0.455808\nvn -0.394681 0.797788 0.455808\nvn -0.394681 0.797788 0.455808\nvn -0.394681 0.797788 0.455808\nvn -0.258451 0.873379 -0.412810\nvn -0.258451 0.873379 -0.412810\nvn -0.258451 0.873379 -0.412810\nvn -0.258451 0.873379 -0.412810\nvn -0.181360 -0.022140 -0.983167\nvn -0.181360 -0.022140 -0.983167\nvn -0.181360 -0.022140 -0.983167\nvn -0.181360 -0.022140 -0.983167\nvn 0.185621 -0.981167 0.053450\nvn 0.185621 -0.981167 0.053450\nvn 0.185621 -0.981167 0.053450\nvn 0.185621 -0.981167 0.053450\nvn 0.198187 -0.978968 -0.048403\nvn 0.198187 -0.978968 -0.048403\nvn 0.198187 -0.978968 -0.048403\nvn 0.198187 -0.978968 -0.048403\nvn -0.345473 -0.042174 0.937481\nvn -0.345473 -0.042174 0.937481\nvn -0.345473 -0.042174 0.937481\nvn -0.345473 -0.042174 0.937481\nvn -0.433992 0.798947 0.416334\nvn -0.433992 0.798947 0.416334\nvn -0.433992 0.798947 0.416334\nvn 0.011678 0.836249 -0.548225\nvn 0.011678 0.836249 -0.548225\nvn 0.011678 0.836249 -0.548225\nvn 0.206864 0.025253 -0.978044\nvn 0.206864 0.025253 -0.978044\nvn 0.206864 0.025253 -0.978044\nvn -0.026572 -0.996296 -0.081780\nvn -0.026572 -0.996296 -0.081780\nvn -0.026572 -0.996296 -0.081780\nvn -0.080682 -0.996078 0.036304\nvn -0.080682 -0.996078 0.036304\nvn -0.080682 -0.996078 0.036304\nvn -0.609430 -0.074397 0.789342\nvn -0.609430 -0.074397 0.789342\nvn -0.609430 -0.074397 0.789342\nvn 0.803545 0.566012 0.184245\nvn 0.803545 0.566012 0.184246\nvn 0.803545 0.566012 0.184246\nvn 0.803545 0.566012 0.184246\nvn -0.643663 0.483104 0.593556\nvn -0.643663 0.483104 0.593556\nvn -0.643663 0.483104 0.593556\nvn -0.643663 0.483104 0.593556\nvn 0.043030 -0.990855 -0.127889\nvn 0.043030 -0.990855 -0.127889\nvn 0.043030 -0.990855 -0.127889\nvn 0.043030 -0.990855 -0.127889\nvn 0.984248 0.120154 0.129690\nvn 0.984248 0.120154 0.129690\nvn 0.984248 0.120154 0.129690\nvn 0.984248 0.120154 0.129690\nvn -0.883290 -0.107830 0.456258\nvn -0.883290 -0.107830 0.456258\nvn -0.883290 -0.107830 0.456258\nvn -0.883290 -0.107830 0.456258\nvn 0.748121 0.545517 -0.377790\nvn 0.748121 0.545517 -0.377790\nvn 0.748121 0.545517 -0.377790\nvn -0.429835 0.559618 0.708568\nvn -0.429835 0.559618 0.708568\nvn -0.429835 0.559618 0.708568\nvn 0.017884 -0.996929 -0.076236\nvn 0.017884 -0.996929 -0.076236\nvn 0.017884 -0.996929 -0.076236\nvn 0.833985 0.101811 -0.542313\nvn 0.833985 0.101811 -0.542313\nvn 0.833985 0.101811 -0.542313\nvn -0.619941 -0.075680 0.780990\nvn -0.619941 -0.075680 0.780990\nvn -0.619941 -0.075680 0.780990\nvn 0.014960 -0.996855 -0.077816\nvn 0.014960 -0.996855 -0.077816\nvn 0.014960 -0.996855 -0.077816\nvn -0.534165 0.748049 -0.393815\nvn -0.534165 0.748049 -0.393815\nvn -0.534165 0.748049 -0.393815\nvn -0.534165 0.748049 -0.393815\nvn -0.752544 -0.197563 -0.628209\nvn -0.752544 -0.197563 -0.628209\nvn -0.752544 -0.197563 -0.628209\nvn -0.752544 -0.197563 -0.628209\nvn -0.133664 -0.984263 0.115583\nvn -0.133664 -0.984263 0.115583\nvn -0.133664 -0.984263 0.115583\nvn -0.133664 -0.984263 0.115583\nvn 0.236474 0.557991 0.795441\nvn 0.236474 0.557991 0.795441\nvn 0.236474 0.557991 0.795441\nvn 0.236474 0.557991 0.795441\nvn 0.331544 0.124922 0.935133\nvn 0.331544 0.124922 0.935133\nvn 0.331544 0.124922 0.935133\nvn 0.331544 0.124922 0.935133\nvn -0.587252 0.506657 -0.631216\nvn -0.587252 0.506657 -0.631216\nvn -0.587252 0.506657 -0.631216\nvn -0.100496 -0.054240 -0.993458\nvn -0.100496 -0.054240 -0.993458\nvn -0.100496 -0.054240 -0.993458\nvn 0.511795 -0.822828 -0.247021\nvn 0.511795 -0.822828 -0.247021\nvn 0.511795 -0.822828 -0.247021\nvn -0.408695 0.403076 0.818840\nvn -0.408695 0.403076 0.818840\nvn -0.408695 0.403076 0.818840\nvn -0.094738 -0.056813 0.993880\nvn -0.094738 -0.056813 0.993880\nvn -0.094738 -0.056813 0.993880\nvn -0.004846 0.837036 -0.547127\nvn -0.004846 0.837036 -0.547127\nvn -0.004846 0.837036 -0.547127\nvn -0.004846 0.837036 -0.547127\nvn 0.531768 0.811988 0.240620\nvn 0.531768 0.811988 0.240620\nvn 0.531768 0.811988 0.240620\nvn 0.531768 0.811988 0.240620\nvn 0.473125 0.046069 0.879790\nvn 0.473125 0.046069 0.879790\nvn 0.473125 0.046069 0.879790\nvn 0.473125 0.046069 0.879790\nvn -0.150901 -0.776580 0.611681\nvn -0.150901 -0.776580 0.611681\nvn -0.150901 -0.776580 0.611681\nvn -0.150901 -0.776580 0.611681\nvn -0.627250 -0.770091 -0.116262\nvn -0.627250 -0.770091 -0.116262\nvn -0.627250 -0.770091 -0.116262\nvn -0.627250 -0.770091 -0.116262\nvn -0.591580 0.160358 -0.790138\nvn -0.591580 0.160358 -0.790138\nvn -0.591580 0.160358 -0.790138\nvn -0.591580 0.160358 -0.790138\nvn 0.505426 0.632129 -0.587331\nvn 0.505426 0.632129 -0.587331\nvn 0.505426 0.632129 -0.587331\nvn 0.505426 0.632129 -0.587331\nvn 0.472124 0.843499 0.256142\nvn 0.472124 0.843499 0.256142\nvn 0.472124 0.843499 0.256142\nvn 0.472124 0.843499 0.256142\nvn 0.007268 0.348491 0.937284\nvn 0.007268 0.348491 0.937284\nvn 0.007268 0.348491 0.937284\nvn 0.007268 0.348491 0.937284\nvn -0.536004 -0.601032 0.592841\nvn -0.536004 -0.601032 0.592841\nvn -0.536004 -0.601031 0.592841\nvn -0.536004 -0.601031 0.592841\nvn -0.504399 -0.824464 -0.256594\nvn -0.504399 -0.824464 -0.256594\nvn -0.504399 -0.824464 -0.256594\nvn -0.504399 -0.824464 -0.256594\nvn -0.038442 -0.317328 -0.947536\nvn -0.038442 -0.317328 -0.947536\nvn -0.038442 -0.317328 -0.947536\nvn -0.038442 -0.317328 -0.947536\nvn 0.274130 0.789974 -0.548446\nvn 0.274130 0.789974 -0.548446\nvn 0.274130 0.789974 -0.548446\nvn 0.274130 0.789974 -0.548446\nvn 0.359190 0.900583 0.244811\nvn 0.359190 0.900583 0.244811\nvn 0.359190 0.900583 0.244811\nvn 0.359190 0.900583 0.244811\nvn 0.100416 0.243223 0.964759\nvn 0.100416 0.243223 0.964759\nvn 0.100416 0.243223 0.964759\nvn 0.100416 0.243223 0.964759\nvn -0.337472 -0.754567 0.562798\nvn -0.337472 -0.754567 0.562798\nvn -0.337472 -0.754567 0.562798\nvn -0.337472 -0.754567 0.562798\nvn -0.420515 -0.869915 -0.257711\nvn -0.420515 -0.869915 -0.257711\nvn -0.420515 -0.869915 -0.257711\nvn -0.420515 -0.869915 -0.257711\nvn -0.162219 -0.169736 -0.972047\nvn -0.162219 -0.169736 -0.972047\nvn -0.162219 -0.169736 -0.972047\nvn -0.162219 -0.169736 -0.972047\nvn 0.761700 0.259147 -0.593849\nvn 0.761700 0.259147 -0.593849\nvn 0.761700 0.259147 -0.593849\nvn 0.761700 0.259147 -0.593849\nvn 0.734178 0.597337 0.322755\nvn 0.734178 0.597337 0.322755\nvn 0.734178 0.597337 0.322755\nvn 0.734178 0.597337 0.322755\nvn 0.031958 0.379545 0.924621\nvn 0.031958 0.379545 0.924621\nvn 0.031958 0.379545 0.924621\nvn 0.031958 0.379545 0.924621\nvn -0.761700 -0.259148 0.593848\nvn -0.761700 -0.259148 0.593848\nvn -0.761700 -0.259148 0.593848\nvn -0.761700 -0.259148 0.593848\nvn -0.734179 -0.597337 -0.322752\nvn -0.734179 -0.597337 -0.322752\nvn -0.734179 -0.597337 -0.322752\nvn -0.734179 -0.597337 -0.322752\nvn -0.031958 -0.379545 -0.924621\nvn -0.031958 -0.379545 -0.924621\nvn -0.031958 -0.379545 -0.924621\nvn -0.031958 -0.379545 -0.924621\nvn 0.252672 0.872973 -0.417224\nvn 0.252672 0.872973 -0.417224\nvn 0.252672 0.872973 -0.417224\nvn 0.615307 0.728266 0.301705\nvn 0.615307 0.728266 0.301705\nvn 0.615307 0.728266 0.301705\nvn 0.343757 -0.183890 0.920878\nvn 0.343757 -0.183890 0.920878\nvn 0.343757 -0.183890 0.920878\nvn -0.371230 -0.793921 0.481537\nvn -0.371230 -0.793921 0.481537\nvn -0.371230 -0.793921 0.481537\nvn -0.751797 -0.584152 -0.305887\nvn -0.751797 -0.584153 -0.305887\nvn -0.751797 -0.584153 -0.305887\nvn -0.414187 0.368233 -0.832378\nvn -0.414187 0.368233 -0.832378\nvn -0.414187 0.368233 -0.832378\nvn -0.232193 0.971569 0.046256\nvn -0.232193 0.971569 0.046256\nvn -0.232193 0.971569 0.046256\nvn -0.232193 0.971569 0.046256\nvn 0.437156 0.784005 0.440717\nvn 0.437156 0.784005 0.440717\nvn 0.437156 0.784005 0.440717\nvn 0.437156 0.784005 0.440717\nvn 0.799097 -0.378750 0.466897\nvn 0.799097 -0.378750 0.466897\nvn 0.799097 -0.378750 0.466897\nvn 0.799097 -0.378750 0.466897\nvn 0.211269 -0.977231 -0.019613\nvn 0.211269 -0.977231 -0.019613\nvn 0.211269 -0.977231 -0.019613\nvn 0.211269 -0.977231 -0.019613\nvn -0.463325 -0.785132 -0.410971\nvn -0.463325 -0.785132 -0.410971\nvn -0.463325 -0.785132 -0.410971\nvn -0.463325 -0.785132 -0.410971\nvn -0.821806 0.376069 -0.428027\nvn -0.821806 0.376069 -0.428027\nvn -0.821806 0.376069 -0.428027\nvn -0.821806 0.376069 -0.428027\nvn 0.270522 0.861750 -0.429190\nvn 0.270522 0.861750 -0.429190\nvn 0.270522 0.861750 -0.429190\nvn 0.270522 0.861750 -0.429190\nvn 0.553118 0.753747 0.354861\nvn 0.553118 0.753747 0.354861\nvn 0.553118 0.753747 0.354861\nvn 0.553118 0.753747 0.354861\nvn 0.269569 -0.152171 0.950882\nvn 0.269569 -0.152171 0.950882\nvn 0.269569 -0.152171 0.950882\nvn 0.269569 -0.152171 0.950882\nvn -0.330060 -0.817424 0.472101\nvn -0.330060 -0.817424 0.472101\nvn -0.330060 -0.817424 0.472101\nvn -0.330060 -0.817424 0.472101\nvn -0.622005 -0.722375 -0.302134\nvn -0.622005 -0.722375 -0.302134\nvn -0.622005 -0.722375 -0.302134\nvn -0.622004 -0.722375 -0.302134\nvn -0.356745 0.194182 -0.913798\nvn -0.356745 0.194182 -0.913798\nvn -0.356745 0.194182 -0.913798\nvn -0.356745 0.194182 -0.913798\nvn -0.146748 0.976669 -0.156791\nvn -0.146748 0.976669 -0.156791\nvn -0.146748 0.976669 -0.156791\nvn 0.250603 0.836818 0.486759\nvn 0.250603 0.836818 0.486759\nvn 0.250603 0.836818 0.486759\nvn 0.462891 -0.287558 0.838476\nvn 0.462891 -0.287558 0.838477\nvn 0.462891 -0.287558 0.838476\nvn 0.082046 -0.976193 0.200787\nvn 0.082046 -0.976193 0.200787\nvn 0.082046 -0.976193 0.200787\nvn -0.336551 -0.821715 -0.459910\nvn -0.336551 -0.821715 -0.459910\nvn -0.336551 -0.821715 -0.459910\nvn -0.544039 0.329968 -0.771455\nvn -0.544039 0.329968 -0.771455\nvn -0.544039 0.329968 -0.771455\nvn 0.515303 0.279725 -0.810072\nvn 0.515303 0.279725 -0.810072\nvn 0.515303 0.279725 -0.810072\nvn 0.515303 0.279725 -0.810072\nvn 0.515303 0.279725 -0.810072\nvn 0.515303 0.279725 -0.810072\nvn 0.858620 0.207672 -0.468663\nvn 0.858620 0.207672 -0.468663\nvn 0.858620 0.207672 -0.468663\nvn 0.858620 0.207672 -0.468663\nvn 0.373052 0.923919 0.084884\nvn 0.373052 0.923919 0.084884\nvn 0.373052 0.923919 0.084884\nvn 0.373052 0.923919 0.084884\nvn -0.323569 0.829486 0.455253\nvn -0.323569 0.829486 0.455253\nvn -0.323569 0.829486 0.455253\nvn -0.323569 0.829486 0.455253\nvn -0.892811 -0.173702 0.415591\nvn -0.892811 -0.173702 0.415591\nvn -0.892811 -0.173702 0.415591\nvn -0.892811 -0.173702 0.415591\nvn -0.400139 -0.907285 -0.129318\nvn -0.400139 -0.907284 -0.129318\nvn -0.400140 -0.907284 -0.129318\nvn -0.400140 -0.907284 -0.129318\nvn 0.302324 -0.807969 -0.505754\nvn 0.302324 -0.807969 -0.505754\nvn 0.302324 -0.807969 -0.505754\nvn 0.302324 -0.807969 -0.505754\nvn 0.945493 0.119805 -0.302802\nvn 0.945493 0.119805 -0.302802\nvn 0.945493 0.119805 -0.302802\nvn 0.345332 0.938128 0.025715\nvn 0.345332 0.938128 0.025715\nvn 0.345332 0.938128 0.025715\nvn -0.392275 0.890106 0.232018\nvn -0.392275 0.890106 0.232018\nvn -0.392275 0.890106 0.232017\nvn -0.971383 -0.079965 0.223655\nvn -0.971383 -0.079965 0.223655\nvn -0.971383 -0.079965 0.223655\nvn -0.375995 -0.922671 -0.085475\nvn -0.375995 -0.922671 -0.085475\nvn -0.375995 -0.922671 -0.085475\nvn 0.374393 -0.877889 -0.298565\nvn 0.374393 -0.877889 -0.298565\nvn 0.374393 -0.877889 -0.298565\nvn 0.430294 -0.521184 0.737031\nvn 0.430294 -0.521184 0.737031\nvn 0.430294 -0.521184 0.737031\nvn 0.430294 -0.521184 0.737031\nvn 0.430294 -0.521184 0.737031\nvn 0.430294 -0.521184 0.737031\nvn 0.221022 0.865070 -0.450337\nvn 0.221022 0.865070 -0.450337\nvn 0.221022 0.865070 -0.450337\nvn 0.608525 0.745404 0.272159\nvn 0.608525 0.745404 0.272159\nvn 0.608525 0.745404 0.272159\nvn 0.379183 -0.134650 0.915472\nvn 0.379183 -0.134650 0.915472\nvn 0.379183 -0.134650 0.915472\nvn -0.323600 -0.780804 0.534442\nvn -0.323600 -0.780804 0.534442\nvn -0.323600 -0.780804 0.534442\nvn -0.733967 -0.642574 -0.219981\nvn -0.733967 -0.642574 -0.219981\nvn -0.733967 -0.642574 -0.219981\nvn -0.479892 0.283337 -0.830316\nvn -0.479892 0.283337 -0.830316\nvn -0.479892 0.283337 -0.830316\nvn 0.538568 -0.762100 -0.359373\nvn 0.538568 -0.762100 -0.359373\nvn 0.538568 -0.762100 -0.359373\nvn 0.538568 -0.762100 -0.359373\nvn 0.538568 -0.762100 -0.359373\nvn 0.538568 -0.762100 -0.359373\nvn 0.079639 0.889992 -0.448969\nvn 0.079639 0.889992 -0.448969\nvn 0.079639 0.889992 -0.448969\nvn 0.079639 0.889991 -0.448968\nvn 0.812591 0.579208 -0.064914\nvn 0.812591 0.579208 -0.064914\nvn 0.812591 0.579208 -0.064914\nvn 0.812591 0.579208 -0.064914\nvn 0.742532 -0.473764 0.473491\nvn 0.742532 -0.473764 0.473491\nvn 0.742532 -0.473764 0.473491\nvn 0.742532 -0.473764 0.473491\nvn -0.079639 -0.889992 0.448969\nvn -0.079639 -0.889992 0.448968\nvn -0.079639 -0.889992 0.448968\nvn -0.079639 -0.889992 0.448968\nvn -0.812591 -0.579209 0.064914\nvn -0.812591 -0.579209 0.064914\nvn -0.812591 -0.579209 0.064914\nvn -0.812591 -0.579209 0.064914\nvn -0.742533 0.473763 -0.473491\nvn -0.742533 0.473763 -0.473491\nvn -0.742533 0.473763 -0.473491\nvn -0.742533 0.473763 -0.473491\nvn 0.197676 0.649959 -0.733811\nvn 0.197676 0.649959 -0.733811\nvn 0.197676 0.649959 -0.733811\nvn 0.806428 0.588450 -0.058318\nvn 0.806428 0.588450 -0.058318\nvn 0.806428 0.588450 -0.058318\nvn 0.623455 0.033380 0.781147\nvn 0.623455 0.033380 0.781147\nvn 0.623455 0.033380 0.781147\nvn -0.252118 -0.467006 0.847551\nvn -0.252118 -0.467006 0.847551\nvn -0.252118 -0.467006 0.847551\nvn -0.893169 -0.416373 0.169951\nvn -0.893169 -0.416373 0.169951\nvn -0.893169 -0.416373 0.169951\nvn -0.701627 0.173837 -0.691013\nvn -0.701627 0.173837 -0.691013\nvn -0.701627 0.173837 -0.691013\nvn 0.203324 -0.703890 -0.680587\nvn 0.203324 -0.703890 -0.680587\nvn 0.203324 -0.703890 -0.680587\nvn 0.203324 -0.703890 -0.680587\nvn 0.203324 -0.703890 -0.680587\nvn 0.203324 -0.703890 -0.680587\nvn -0.718957 -0.474051 -0.508307\nvn -0.718957 -0.474051 -0.508307\nvn -0.718957 -0.474051 -0.508307\nvn -0.718957 -0.474051 -0.508307\nvn 0.134969 -0.894090 -0.427068\nvn 0.134969 -0.894090 -0.427068\nvn 0.134969 -0.894090 -0.427068\nvn 0.134969 -0.894090 -0.427068\nvn 0.958026 -0.197755 0.207557\nvn 0.958026 -0.197755 0.207557\nvn 0.958026 -0.197755 0.207557\nvn 0.958026 -0.197755 0.207557\nvn 0.629533 0.638611 0.442564\nvn 0.629533 0.638611 0.442564\nvn 0.629533 0.638611 0.442564\nvn 0.629533 0.638611 0.442564\nvn -0.097212 0.952573 0.288365\nvn -0.097212 0.952573 0.288365\nvn -0.097212 0.952573 0.288365\nvn -0.097212 0.952573 0.288365\nvn -0.851502 0.485519 -0.198027\nvn -0.851502 0.485519 -0.198027\nvn -0.851502 0.485519 -0.198027\nvn -0.851502 0.485519 -0.198027\nvn -0.619949 -0.765742 -0.171177\nvn -0.619949 -0.765742 -0.171177\nvn -0.619949 -0.765742 -0.171177\nvn -0.619949 -0.765742 -0.171177\nvn 0.118309 -0.822668 -0.556076\nvn 0.118309 -0.822668 -0.556076\nvn 0.118309 -0.822668 -0.556076\nvn 0.118309 -0.822668 -0.556076\nvn 0.867188 -0.084445 -0.490769\nvn 0.867188 -0.084445 -0.490769\nvn 0.867188 -0.084445 -0.490769\nvn 0.867188 -0.084445 -0.490769\nvn 0.605634 0.783056 0.141527\nvn 0.605634 0.783056 0.141527\nvn 0.605634 0.783056 0.141527\nvn 0.605634 0.783056 0.141527\nvn -0.120860 0.843038 0.524099\nvn -0.120860 0.843038 0.524099\nvn -0.120860 0.843038 0.524099\nvn -0.120860 0.843038 0.524099\nvn -0.878402 0.121233 0.462290\nvn -0.878402 0.121233 0.462290\nvn -0.878403 0.121233 0.462290\nvn -0.878402 0.121233 0.462290\nvn -0.723971 -0.578403 -0.375919\nvn -0.723972 -0.578403 -0.375919\nvn -0.723972 -0.578403 -0.375919\nvn -0.723972 -0.578403 -0.375919\nvn 0.099322 -0.737227 -0.668305\nvn 0.099322 -0.737227 -0.668305\nvn 0.099322 -0.737227 -0.668305\nvn 0.099322 -0.737227 -0.668305\nvn 0.897884 -0.190098 -0.397074\nvn 0.897884 -0.190098 -0.397074\nvn 0.897884 -0.190098 -0.397074\nvn 0.897884 -0.190098 -0.397074\nvn 0.699734 0.639201 0.319052\nvn 0.699734 0.639201 0.319052\nvn 0.699734 0.639201 0.319052\nvn 0.699734 0.639201 0.319052\nvn -0.116870 0.785814 0.607321\nvn -0.116870 0.785814 0.607321\nvn -0.116870 0.785814 0.607321\nvn -0.116870 0.785814 0.607321\nvn -0.907653 0.256833 0.331967\nvn -0.907653 0.256833 0.331967\nvn -0.907653 0.256833 0.331967\nvn -0.907653 0.256833 0.331967\nvn -0.470124 -0.877142 0.098009\nvn -0.470124 -0.877142 0.098009\nvn -0.470124 -0.877142 0.098009\nvn -0.470124 -0.877142 0.098009\nvn 0.198661 -0.935834 -0.291118\nvn 0.198661 -0.935834 -0.291118\nvn 0.198661 -0.935834 -0.291118\nvn 0.198661 -0.935834 -0.291118\nvn 0.853195 -0.125887 -0.506173\nvn 0.853195 -0.125887 -0.506173\nvn 0.853195 -0.125887 -0.506173\nvn 0.853195 -0.125887 -0.506173\nvn 0.470126 0.877141 -0.098010\nvn 0.470126 0.877141 -0.098010\nvn 0.470126 0.877141 -0.098010\nvn 0.470126 0.877141 -0.098010\nvn -0.198661 0.935834 0.291118\nvn -0.198661 0.935834 0.291118\nvn -0.198661 0.935834 0.291118\nvn -0.198661 0.935834 0.291118\nvn -0.853195 0.125888 0.506173\nvn -0.853195 0.125888 0.506173\nvn -0.853195 0.125888 0.506173\nvn -0.853195 0.125888 0.506173\nvn -0.631139 -0.591354 -0.501960\nvn -0.631139 -0.591354 -0.501960\nvn -0.631139 -0.591354 -0.501960\nvn 0.171113 -0.894441 -0.413153\nvn 0.171113 -0.894441 -0.413153\nvn 0.171113 -0.894441 -0.413153\nvn 0.905346 -0.422223 -0.045571\nvn 0.905346 -0.422223 -0.045571\nvn 0.905346 -0.422223 -0.045571\nvn 0.621595 0.694823 0.361719\nvn 0.621595 0.694823 0.361719\nvn 0.621595 0.694823 0.361719\nvn -0.185772 0.943535 0.274283\nvn -0.185772 0.943535 0.274283\nvn -0.185772 0.943535 0.274283\nvn -0.867442 0.484984 -0.111061\nvn -0.867442 0.484984 -0.111061\nvn -0.867442 0.484984 -0.111061\nvn -0.192800 0.171812 -0.966079\nvn -0.192800 0.171812 -0.966079\nvn -0.192800 0.171812 -0.966079\nvn -0.192800 0.171812 -0.966079\nvn 0.307810 -0.762255 -0.569403\nvn 0.307810 -0.762255 -0.569403\nvn 0.307810 -0.762255 -0.569403\nvn 0.307810 -0.762255 -0.569403\nvn 0.465411 -0.851746 0.240668\nvn 0.465411 -0.851746 0.240668\nvn 0.465411 -0.851746 0.240668\nvn 0.465411 -0.851746 0.240668\nvn 0.229399 -0.132859 0.964222\nvn 0.229399 -0.132859 0.964222\nvn 0.229399 -0.132859 0.964222\nvn 0.229399 -0.132859 0.964222\nvn -0.276130 0.788127 0.550099\nvn -0.276130 0.788127 0.550099\nvn -0.276130 0.788127 0.550099\nvn -0.276130 0.788127 0.550099\nvn -0.429724 0.868150 -0.248299\nvn -0.429724 0.868150 -0.248299\nvn -0.429724 0.868150 -0.248299\nvn -0.429724 0.868150 -0.248299\nvn -0.632474 -0.608527 -0.479240\nvn -0.632474 -0.608527 -0.479240\nvn -0.632474 -0.608527 -0.479240\nvn -0.632474 -0.608527 -0.479240\nvn 0.219275 -0.854924 -0.470132\nvn 0.219275 -0.854924 -0.470132\nvn 0.219275 -0.854924 -0.470132\nvn 0.219275 -0.854924 -0.470132\nvn 0.937908 -0.335367 -0.088639\nvn 0.937908 -0.335367 -0.088639\nvn 0.937908 -0.335367 -0.088639\nvn 0.937908 -0.335367 -0.088639\nvn 0.636510 0.659105 0.400545\nvn 0.636510 0.659105 0.400545\nvn 0.636510 0.659105 0.400545\nvn 0.636510 0.659105 0.400545\nvn -0.171908 0.897337 0.406490\nvn -0.171908 0.897337 0.406490\nvn -0.171908 0.897337 0.406490\nvn -0.171908 0.897337 0.406490\nvn -0.899095 0.436382 0.034623\nvn -0.899095 0.436382 0.034623\nvn -0.899095 0.436382 0.034623\nvn -0.899095 0.436382 0.034623\nvn -0.458705 0.013928 -0.888480\nvn -0.458705 0.013928 -0.888480\nvn -0.458705 0.013928 -0.888480\nvn 0.372700 -0.574130 -0.729020\nvn 0.372700 -0.574130 -0.729020\nvn 0.372700 -0.574130 -0.729020\nvn 0.834319 -0.547651 0.063176\nvn 0.834319 -0.547651 0.063176\nvn 0.834319 -0.547651 0.063176\nvn 0.510829 0.106280 0.853088\nvn 0.510829 0.106280 0.853088\nvn 0.510829 0.106280 0.853088\nvn -0.335444 0.671923 0.660301\nvn -0.335444 0.671923 0.660301\nvn -0.335444 0.671923 0.660301\nvn -0.767188 0.630371 -0.118553\nvn -0.767188 0.630371 -0.118553\nvn -0.767188 0.630371 -0.118553\nvn -0.726324 -0.679300 0.104904\nvn -0.726324 -0.679300 0.104904\nvn -0.726324 -0.679300 0.104904\nvn -0.726324 -0.679300 0.104904\nvn -0.726324 -0.679300 0.104904\nvn -0.726324 -0.679300 0.104904\nvn -0.345284 -0.932056 0.109776\nvn -0.345284 -0.932056 0.109776\nvn -0.345284 -0.932056 0.109776\nvn -0.345284 -0.932056 0.109776\nvn -0.075191 -0.765036 -0.639583\nvn -0.075191 -0.765036 -0.639583\nvn -0.075191 -0.765036 -0.639583\nvn -0.075191 -0.765036 -0.639583\nvn 0.326530 0.332078 -0.884931\nvn 0.326530 0.332078 -0.884931\nvn 0.326530 0.332078 -0.884931\nvn 0.326530 0.332078 -0.884931\nvn 0.295185 0.947869 -0.120043\nvn 0.295185 0.947869 -0.120043\nvn 0.295185 0.947869 -0.120043\nvn 0.295185 0.947869 -0.120043\nvn 0.022421 0.784487 0.619740\nvn 0.022421 0.784487 0.619740\nvn 0.022421 0.784487 0.619740\nvn 0.022421 0.784487 0.619740\nvn -0.387665 -0.299924 0.871643\nvn -0.387665 -0.299924 0.871643\nvn -0.387665 -0.299924 0.871643\nvn -0.387665 -0.299924 0.871643\nvn -0.198735 -0.971372 0.130158\nvn -0.198735 -0.971372 0.130158\nvn -0.198735 -0.971372 0.130158\nvn -0.145991 -0.742460 -0.653788\nvn -0.145991 -0.742460 -0.653788\nvn -0.145991 -0.742460 -0.653788\nvn 0.053207 0.438968 -0.896926\nvn 0.053207 0.438968 -0.896926\nvn 0.053207 0.438968 -0.896926\nvn 0.134576 0.981359 -0.137197\nvn 0.134576 0.981359 -0.137197\nvn 0.134576 0.981359 -0.137197\nvn 0.073987 0.767499 0.636766\nvn 0.073987 0.767499 0.636766\nvn 0.073987 0.767499 0.636766\nvn -0.134726 -0.410963 0.901642\nvn -0.134726 -0.410962 0.901642\nvn -0.134726 -0.410963 0.901642\nvn 0.833742 -0.493596 0.247463\nvn 0.833742 -0.493596 0.247463\nvn 0.833742 -0.493596 0.247463\nvn 0.833742 -0.493596 0.247463\nvn 0.833742 -0.493596 0.247463\nvn 0.833742 -0.493596 0.247463\nvn -0.674612 -0.545060 -0.497803\nvn -0.674612 -0.545060 -0.497803\nvn -0.674612 -0.545060 -0.497803\nvn 0.143165 -0.895640 -0.421109\nvn 0.143165 -0.895640 -0.421109\nvn 0.143165 -0.895640 -0.421109\nvn 0.879535 -0.470823 -0.068877\nvn 0.879535 -0.470823 -0.068877\nvn 0.879535 -0.470823 -0.068877\nvn 0.687198 0.634536 0.353728\nvn 0.687198 0.634536 0.353728\nvn 0.687198 0.634536 0.353728\nvn -0.109750 0.948687 0.296559\nvn -0.109750 0.948687 0.296559\nvn -0.109750 0.948687 0.296559\nvn -0.821442 0.566568 -0.065066\nvn -0.821442 0.566568 -0.065066\nvn -0.821442 0.566568 -0.065066\nvn -0.194708 -0.623268 0.757381\nvn -0.194708 -0.623268 0.757381\nvn -0.194708 -0.623268 0.757381\nvn -0.194708 -0.623268 0.757381\nvn -0.194708 -0.623268 0.757381\nvn -0.194708 -0.623268 0.757381\nvn -0.731980 -0.348159 -0.585654\nvn -0.731980 -0.348159 -0.585654\nvn -0.731980 -0.348159 -0.585654\nvn -0.731980 -0.348159 -0.585654\nvn -0.103184 -0.978700 -0.177479\nvn -0.103184 -0.978700 -0.177479\nvn -0.103184 -0.978700 -0.177479\nvn -0.103184 -0.978700 -0.177479\nvn 0.506354 -0.809231 0.297910\nvn 0.506354 -0.809231 0.297910\nvn 0.506354 -0.809231 0.297910\nvn 0.506354 -0.809231 0.297910\nvn 0.731981 0.348158 0.585654\nvn 0.731981 0.348158 0.585654\nvn 0.731981 0.348158 0.585654\nvn 0.731981 0.348158 0.585654\nvn 0.103184 0.978700 0.177479\nvn 0.103184 0.978700 0.177479\nvn 0.103184 0.978700 0.177479\nvn 0.103184 0.978700 0.177479\nvn -0.506354 0.809231 -0.297910\nvn -0.506354 0.809231 -0.297910\nvn -0.506354 0.809231 -0.297910\nvn -0.506354 0.809231 -0.297910\nvn -0.876409 -0.423120 -0.229951\nvn -0.876409 -0.423120 -0.229951\nvn -0.876409 -0.423120 -0.229951\nvn -0.100088 -0.977522 -0.185563\nvn -0.100088 -0.977522 -0.185563\nvn -0.100088 -0.977522 -0.185563\nvn 0.667082 -0.739462 -0.090538\nvn 0.667083 -0.739462 -0.090538\nvn 0.667082 -0.739462 -0.090538\nvn 0.898405 0.436193 0.051027\nvn 0.898405 0.436193 0.051027\nvn 0.898405 0.436193 0.051027\nvn 0.149455 0.987376 0.052448\nvn 0.149455 0.987376 0.052448\nvn 0.149455 0.987377 0.052448\nvn -0.618131 0.783651 -0.061694\nvn -0.618131 0.783651 -0.061694\nvn -0.618131 0.783651 -0.061694\nvn -0.593335 -0.156956 0.789505\nvn -0.593335 -0.156956 0.789505\nvn -0.593335 -0.156956 0.789505\nvn -0.593335 -0.156956 0.789505\nvn -0.593335 -0.156956 0.789505\nvn -0.593335 -0.156956 0.789505\nvn 0.852168 -0.523255 0.003774\nvn 0.852168 -0.523255 0.003774\nvn 0.852168 -0.523255 0.003774\nvn 0.852168 -0.523255 0.003774\nvn 0.070330 -0.887250 0.455895\nvn 0.070330 -0.887250 0.455895\nvn 0.070330 -0.887250 0.455895\nvn 0.070330 -0.887250 0.455895\nvn -0.788925 -0.335639 0.514728\nvn -0.788925 -0.335639 0.514728\nvn -0.788925 -0.335639 0.514728\nvn -0.788925 -0.335639 0.514728\nvn -0.710274 0.702635 -0.042605\nvn -0.710274 0.702635 -0.042605\nvn -0.710274 0.702635 -0.042605\nvn -0.710274 0.702635 -0.042605\nvn -0.039294 0.932039 -0.360221\nvn -0.039294 0.932039 -0.360221\nvn -0.039294 0.932039 -0.360221\nvn -0.039294 0.932039 -0.360221\nvn 0.829669 0.398940 -0.390507\nvn 0.829670 0.398940 -0.390507\nvn 0.829669 0.398940 -0.390507\nvn 0.829669 0.398940 -0.390507\nvn 0.667379 -0.646929 -0.368900\nvn 0.667379 -0.646929 -0.368900\nvn 0.667379 -0.646929 -0.368900\nvn 0.667379 -0.646929 -0.368900\nvn 0.402373 -0.799377 0.446197\nvn 0.402373 -0.799377 0.446197\nvn 0.402373 -0.799377 0.446197\nvn 0.402373 -0.799377 0.446197\nvn -0.244815 -0.218304 0.944674\nvn -0.244815 -0.218304 0.944674\nvn -0.244815 -0.218304 0.944674\nvn -0.244815 -0.218304 0.944674\nvn -0.636545 0.670531 0.381049\nvn -0.636545 0.670531 0.381049\nvn -0.636545 0.670531 0.381049\nvn -0.636545 0.670531 0.381049\nvn -0.379608 0.822360 -0.423818\nvn -0.379608 0.822360 -0.423818\nvn -0.379608 0.822360 -0.423818\nvn -0.379608 0.822360 -0.423818\nvn 0.267736 0.258222 -0.928245\nvn 0.267736 0.258222 -0.928245\nvn 0.267736 0.258222 -0.928245\nvn 0.267736 0.258222 -0.928245\nvn 0.868406 -0.407440 -0.282603\nvn 0.868406 -0.407440 -0.282603\nvn 0.868406 -0.407440 -0.282603\nvn 0.868406 -0.407440 -0.282603\nvn 0.488076 -0.702168 0.518403\nvn 0.488076 -0.702168 0.518403\nvn 0.488076 -0.702168 0.518403\nvn 0.488076 -0.702168 0.518403\nvn -0.317327 -0.332856 0.887981\nvn -0.317327 -0.332856 0.887981\nvn -0.317327 -0.332856 0.887981\nvn -0.317327 -0.332856 0.887981\nvn -0.818806 0.482602 0.310889\nvn -0.818806 0.482602 0.310889\nvn -0.818806 0.482602 0.310889\nvn -0.818806 0.482602 0.310889\nvn -0.436423 0.758464 -0.484011\nvn -0.436423 0.758464 -0.484011\nvn -0.436423 0.758464 -0.484011\nvn -0.436423 0.758464 -0.484011\nvn 0.359895 0.402583 -0.841666\nvn 0.359895 0.402583 -0.841666\nvn 0.359895 0.402583 -0.841666\nvn 0.359895 0.402583 -0.841666\nvn 0.365504 -0.810305 -0.458054\nvn 0.365504 -0.810305 -0.458054\nvn 0.365504 -0.810305 -0.458054\nvn 0.365504 -0.810305 -0.458054\nvn 0.166279 -0.938076 0.303916\nvn 0.166279 -0.938076 0.303916\nvn 0.166279 -0.938076 0.303916\nvn 0.166279 -0.938076 0.303916\nvn -0.219637 -0.254094 0.941911\nvn -0.219637 -0.254094 0.941911\nvn -0.219637 -0.254094 0.941911\nvn -0.219637 -0.254094 0.941911\nvn -0.365504 0.810305 0.458054\nvn -0.365504 0.810305 0.458054\nvn -0.365504 0.810305 0.458054\nvn -0.365504 0.810305 0.458054\nvn -0.166279 0.938076 -0.303917\nvn -0.166279 0.938075 -0.303917\nvn -0.166279 0.938076 -0.303917\nvn -0.166279 0.938075 -0.303917\nvn 0.219638 0.254091 -0.941911\nvn 0.219638 0.254091 -0.941911\nvn 0.219638 0.254091 -0.941911\nvn 0.219638 0.254091 -0.941911\nvn 0.894943 -0.429392 -0.121244\nvn 0.894943 -0.429392 -0.121244\nvn 0.894943 -0.429392 -0.121244\nvn 0.268632 -0.887216 0.375080\nvn 0.268632 -0.887216 0.375080\nvn 0.268632 -0.887216 0.375080\nvn -0.528604 -0.575180 0.624296\nvn -0.528604 -0.575180 0.624296\nvn -0.528604 -0.575180 0.624296\nvn -0.801269 0.554666 0.224306\nvn -0.801269 0.554666 0.224306\nvn -0.801269 0.554666 0.224306\nvn -0.164285 0.945006 -0.282798\nvn -0.164284 0.945006 -0.282798\nvn -0.164285 0.945006 -0.282798\nvn 0.598927 0.635878 -0.486771\nvn 0.598927 0.635878 -0.486771\nvn 0.598927 0.635878 -0.486771\nvn 0.785466 0.288626 0.547484\nvn 0.785466 0.288627 0.547484\nvn 0.785466 0.288626 0.547484\nvn 0.785466 0.288627 0.547484\nvn 0.267923 -0.765697 0.584743\nvn 0.267923 -0.765697 0.584743\nvn 0.267923 -0.765697 0.584743\nvn 0.267923 -0.765697 0.584743\nvn -0.384592 -0.915918 0.114815\nvn -0.384592 -0.915918 0.114815\nvn -0.384592 -0.915918 0.114815\nvn -0.384592 -0.915918 0.114815\nvn -0.814350 -0.258329 -0.519711\nvn -0.814350 -0.258329 -0.519711\nvn -0.814350 -0.258329 -0.519711\nvn -0.814350 -0.258329 -0.519711\nvn -0.279587 0.787836 -0.548767\nvn -0.279587 0.787836 -0.548767\nvn -0.279587 0.787836 -0.548767\nvn -0.279587 0.787836 -0.548767\nvn 0.365187 0.927036 -0.085107\nvn 0.365187 0.927036 -0.085107\nvn 0.365187 0.927036 -0.085107\nvn 0.365187 0.927036 -0.085107\nvn 0.882236 -0.449500 -0.140034\nvn 0.882236 -0.449500 -0.140034\nvn 0.882236 -0.449500 -0.140034\nvn 0.882236 -0.449500 -0.140034\nvn 0.270464 -0.850935 0.450287\nvn 0.270464 -0.850935 0.450287\nvn 0.270464 -0.850935 0.450287\nvn 0.270464 -0.850935 0.450287\nvn -0.533216 -0.498883 0.683225\nvn -0.533216 -0.498883 0.683225\nvn -0.533216 -0.498883 0.683225\nvn -0.533216 -0.498883 0.683225\nvn -0.835608 0.509868 0.204433\nvn -0.835608 0.509868 0.204433\nvn -0.835608 0.509868 0.204433\nvn -0.835608 0.509868 0.204433\nvn -0.263592 0.890573 -0.370673\nvn -0.263592 0.890573 -0.370673\nvn -0.263592 0.890573 -0.370673\nvn -0.263592 0.890573 -0.370673\nvn 0.529882 0.587660 -0.611459\nvn 0.529882 0.587660 -0.611458\nvn 0.529882 0.587660 -0.611458\nvn 0.529882 0.587660 -0.611458\nvn 0.935076 0.183506 0.303245\nvn 0.935076 0.183506 0.303245\nvn 0.935076 0.183506 0.303245\nvn 0.315196 -0.579946 0.751209\nvn 0.315196 -0.579946 0.751209\nvn 0.315196 -0.579946 0.751209\nvn -0.537865 -0.683469 0.493530\nvn -0.537865 -0.683469 0.493530\nvn -0.537865 -0.683469 0.493530\nvn -0.968172 -0.074210 -0.239031\nvn -0.968172 -0.074210 -0.239031\nvn -0.968172 -0.074210 -0.239031\nvn -0.303271 0.674945 -0.672663\nvn -0.303271 0.674945 -0.672663\nvn -0.303271 0.674945 -0.672663\nvn 0.520914 0.750469 -0.406749\nvn 0.520914 0.750469 -0.406749\nvn 0.520914 0.750469 -0.406749\nvn 0.526165 -0.554299 -0.644905\nvn 0.526165 -0.554299 -0.644905\nvn 0.526165 -0.554299 -0.644905\nvn 0.526165 -0.554299 -0.644905\nvn 0.526165 -0.554299 -0.644905\nvn 0.526165 -0.554299 -0.644905\nvn 0.270210 -0.887075 -0.374280\nvn 0.270210 -0.887075 -0.374280\nvn 0.270210 -0.887075 -0.374280\nvn 0.270210 -0.887075 -0.374280\nvn 0.601297 -0.704853 0.376330\nvn 0.601297 -0.704853 0.376330\nvn 0.601297 -0.704853 0.376330\nvn 0.601297 -0.704853 0.376330\nvn 0.361178 0.336106 0.869818\nvn 0.361178 0.336106 0.869818\nvn 0.361178 0.336106 0.869818\nvn 0.361178 0.336106 0.869818\nvn -0.227507 0.910803 0.344497\nvn -0.227507 0.910803 0.344497\nvn -0.227507 0.910803 0.344497\nvn -0.227507 0.910803 0.344497\nvn -0.549277 0.734883 -0.397796\nvn -0.549277 0.734883 -0.397796\nvn -0.549277 0.734883 -0.397796\nvn -0.549277 0.734883 -0.397796\nvn -0.313459 -0.291194 -0.903853\nvn -0.313459 -0.291194 -0.903853\nvn -0.313459 -0.291194 -0.903853\nvn -0.313459 -0.291194 -0.903853\nvn 0.152473 -0.947668 -0.280493\nvn 0.152473 -0.947668 -0.280493\nvn 0.152473 -0.947668 -0.280493\nvn 0.662599 -0.668466 0.337810\nvn 0.662599 -0.668466 0.337810\nvn 0.662599 -0.668466 0.337810\nvn 0.540839 0.492655 0.681751\nvn 0.540839 0.492655 0.681751\nvn 0.540839 0.492655 0.681751\nvn -0.102407 0.965752 0.238402\nvn -0.102407 0.965752 0.238402\nvn -0.102407 0.965752 0.238402\nvn -0.598628 0.707817 -0.375020\nvn -0.598628 0.707817 -0.375020\nvn -0.598628 0.707817 -0.375020\nvn -0.493374 -0.451106 -0.743697\nvn -0.493374 -0.451106 -0.743697\nvn -0.493374 -0.451106 -0.743697\nvn -0.665898 -0.647161 0.371164\nvn -0.665897 -0.647162 0.371164\nvn -0.665897 -0.647162 0.371164\nvn -0.665898 -0.647161 0.371164\nvn -0.665897 -0.647162 0.371164\nvn -0.665898 -0.647161 0.371164\nvn 0.915644 -0.371403 -0.153802\nvn 0.915644 -0.371404 -0.153802\nvn 0.915644 -0.371403 -0.153802\nvn 0.294724 -0.884397 0.361912\nvn 0.294724 -0.884397 0.361912\nvn 0.294724 -0.884397 0.361912\nvn -0.489987 -0.613156 0.619639\nvn -0.489987 -0.613156 0.619639\nvn -0.489987 -0.613156 0.619639\nvn -0.834516 0.477168 0.275488\nvn -0.834516 0.477168 0.275488\nvn -0.834516 0.477168 0.275488\nvn -0.235121 0.940105 -0.246821\nvn -0.235121 0.940105 -0.246821\nvn -0.235121 0.940105 -0.246821\nvn 0.528440 0.698477 -0.482577\nvn 0.528440 0.698477 -0.482577\nvn 0.528440 0.698477 -0.482577\nvn -0.330452 -0.636771 -0.696652\nvn -0.330452 -0.636771 -0.696652\nvn -0.330452 -0.636771 -0.696652\nvn -0.330452 -0.636771 -0.696652\nvn -0.330452 -0.636771 -0.696652\nvn -0.330452 -0.636771 -0.696652\nvn 0.982068 -0.145516 -0.119860\nvn 0.982068 -0.145516 -0.119860\nvn 0.982068 -0.145516 -0.119860\nvn 0.982068 -0.145516 -0.119860\nvn 0.307725 -0.951425 0.009813\nvn 0.307725 -0.951425 0.009813\nvn 0.307725 -0.951425 0.009813\nvn 0.307725 -0.951425 0.009813\nvn -0.452978 -0.885306 0.105092\nvn -0.452978 -0.885306 0.105092\nvn -0.452978 -0.885306 0.105092\nvn -0.452978 -0.885306 0.105092\nvn -0.982068 0.145517 0.119860\nvn -0.982068 0.145516 0.119860\nvn -0.982068 0.145517 0.119860\nvn -0.982068 0.145516 0.119860\nvn -0.307724 0.951425 -0.009813\nvn -0.307724 0.951425 -0.009813\nvn -0.307724 0.951425 -0.009813\nvn -0.307724 0.951425 -0.009813\nvn 0.452979 0.885305 -0.105092\nvn 0.452979 0.885305 -0.105092\nvn 0.452979 0.885305 -0.105092\nvn 0.452979 0.885305 -0.105092\nvn 0.842805 -0.223913 -0.489431\nvn 0.842805 -0.223913 -0.489431\nvn 0.842805 -0.223913 -0.489431\nvn 0.311222 -0.950168 0.017951\nvn 0.311222 -0.950168 0.017951\nvn 0.311222 -0.950168 0.017951\nvn -0.306662 -0.822340 0.479286\nvn -0.306662 -0.822340 0.479286\nvn -0.306662 -0.822340 0.479286\nvn -0.729805 0.248482 0.636900\nvn -0.729805 0.248482 0.636900\nvn -0.729805 0.248482 0.636900\nvn -0.251313 0.961119 0.114416\nvn -0.251313 0.961119 0.114416\nvn -0.251313 0.961119 0.114416\nvn 0.370982 0.864006 -0.340391\nvn 0.370982 0.864006 -0.340391\nvn 0.370982 0.864006 -0.340391\nvn -0.128067 -0.100460 -0.986664\nvn -0.128067 -0.100460 -0.986664\nvn -0.128067 -0.100460 -0.986664\nvn -0.128067 -0.100460 -0.986664\nvn -0.128067 -0.100460 -0.986664\nvn -0.128067 -0.100460 -0.986664\nvn -0.677719 -0.545393 0.493197\nvn -0.677719 -0.545393 0.493197\nvn -0.677719 -0.545393 0.493197\nvn 0.687328 -0.533892 0.492483\nvn 0.687328 -0.533892 0.492483\nvn 0.687328 -0.533892 0.492483\nvn 0.687328 -0.533892 0.492483\nvn -0.257337 -0.963894 -0.068448\nvn -0.257337 -0.963894 -0.068448\nvn -0.257337 -0.963894 -0.068448\nvn 0.520639 0.152893 0.839976\nvn 0.520639 0.152893 0.839976\nvn 0.520638 0.152893 0.839976\nvn -0.930526 0.239008 -0.277481\nvn -0.930526 0.239008 -0.277481\nvn -0.930526 0.239008 -0.277481\nvn 0.982734 0.068486 -0.171883\nvn 0.982734 0.068486 -0.171883\nvn 0.982734 0.068486 -0.171883\nvn -0.474037 -0.118290 0.872523\nvn -0.474037 -0.118290 0.872523\nvn -0.474037 -0.118290 0.872523\nvn 0.844842 0.384190 0.372344\nvn 0.844842 0.384190 0.372344\nvn 0.844842 0.384190 0.372344\nvn 0.844842 0.384190 0.372344\nvn 0.369788 -0.038910 0.928301\nvn 0.369788 -0.038910 0.928301\nvn 0.369788 -0.038910 0.928301\nvn 0.369788 -0.038910 0.928301\nvn -0.346289 -0.363123 0.865000\nvn -0.346289 -0.363123 0.865000\nvn -0.346289 -0.363123 0.865000\nvn -0.346289 -0.363123 0.865000\nvn -0.853840 -0.429194 0.294533\nvn -0.853840 -0.429194 0.294533\nvn -0.853840 -0.429194 0.294533\nvn -0.853840 -0.429194 0.294533\nvn -0.870924 -0.211301 -0.443669\nvn -0.870924 -0.211301 -0.443670\nvn -0.870924 -0.211301 -0.443670\nvn -0.870924 -0.211301 -0.443669\nvn -0.386101 0.166570 -0.907293\nvn -0.386100 0.166570 -0.907293\nvn -0.386101 0.166570 -0.907293\nvn -0.386101 0.166570 -0.907293\nvn -0.386100 0.166570 -0.907293\nvn 0.333567 0.516879 -0.788396\nvn 0.333567 0.516879 -0.788396\nvn 0.333567 0.516879 -0.788396\nvn 0.333567 0.516879 -0.788396\nvn 0.811656 0.541039 -0.220205\nvn 0.811656 0.541039 -0.220205\nvn 0.811656 0.541039 -0.220205\nvn 0.811656 0.541039 -0.220205\nvn 0.811656 0.541039 -0.220205\nvn -0.899458 0.078168 -0.429959\nvn -0.899458 0.078168 -0.429959\nvn -0.899458 0.078168 -0.429959\nvn -0.899458 0.078168 -0.429959\nvn 0.309135 0.928286 0.206690\nvn 0.309135 0.928286 0.206690\nvn 0.309135 0.928286 0.206690\nvn 0.257337 0.963894 0.068448\nvn 0.257337 0.963894 0.068448\nvn 0.257337 0.963894 0.068448\nvn -0.309135 -0.928286 -0.206691\nvn -0.309135 -0.928286 -0.206691\nvn -0.309135 -0.928286 -0.206691\nvn -0.296318 0.686903 0.663596\nvn -0.296318 0.686903 0.663596\nvn -0.296318 0.686903 0.663596\nvn -0.440580 -0.886900 0.138918\nvn -0.440580 -0.886900 0.138918\nvn -0.440580 -0.886900 0.138918\nvn -0.440580 -0.886900 0.138918\nvn -0.348325 -0.741209 0.573828\nvn -0.348325 -0.741209 0.573828\nvn -0.348325 -0.741209 0.573828\nvn -0.348325 -0.741209 0.573828\nvn -0.433542 -0.866991 -0.245699\nvn -0.433542 -0.866991 -0.245699\nvn -0.433542 -0.866991 -0.245699\nvn -0.433542 -0.866991 -0.245699\nvn -0.153667 -0.207394 -0.966113\nvn -0.153667 -0.207394 -0.966113\nvn -0.153667 -0.207394 -0.966113\nvn -0.153667 -0.207394 -0.966113\nvn 0.314841 0.757257 -0.572222\nvn 0.314841 0.757257 -0.572222\nvn 0.314841 0.757257 -0.572222\nvn 0.314841 0.757257 -0.572222\nvn 0.403100 0.884090 0.236421\nvn 0.403100 0.884090 0.236421\nvn 0.403100 0.884090 0.236421\nvn 0.403100 0.884090 0.236421\nvn 0.121660 0.240880 0.962900\nvn 0.121660 0.240880 0.962900\nvn 0.121660 0.240880 0.962900\nvn 0.121660 0.240880 0.962900\nvn -0.582308 -0.563523 0.585969\nvn -0.582308 -0.563523 0.585969\nvn -0.582308 -0.563523 0.585969\nvn -0.582308 -0.563523 0.585969\nvn -0.544606 -0.793987 -0.270166\nvn -0.544606 -0.793987 -0.270166\nvn -0.544606 -0.793987 -0.270166\nvn -0.544606 -0.793987 -0.270166\nvn -0.051625 -0.301902 -0.951940\nvn -0.051625 -0.301902 -0.951940\nvn -0.051625 -0.301902 -0.951940\nvn -0.051625 -0.301902 -0.951940\nvn 0.518900 0.620973 -0.587482\nvn 0.518900 0.620973 -0.587482\nvn 0.518900 0.620973 -0.587482\nvn 0.518900 0.620973 -0.587482\nvn 0.481582 0.835936 0.263229\nvn 0.481582 0.835936 0.263229\nvn 0.481582 0.835936 0.263229\nvn 0.481582 0.835936 0.263229\nvn -0.014491 0.359945 0.932861\nvn -0.014491 0.359945 0.932861\nvn -0.014491 0.359945 0.932861\nvn -0.014491 0.359944 0.932861\nvn -0.036287 -0.842789 0.537019\nvn -0.036287 -0.842789 0.537019\nvn -0.036287 -0.842789 0.537019\nvn -0.036287 -0.842789 0.537019\nvn 0.036240 0.842793 -0.537016\nvn 0.036240 0.842793 -0.537016\nvn 0.036240 0.842793 -0.537016\nvn 0.036240 0.842793 -0.537016\nvn 0.036240 0.842793 -0.537016\nvn 0.170660 0.248278 0.953537\nvn 0.170660 0.248278 0.953537\nvn 0.170660 0.248278 0.953537\nvn 0.170660 0.248278 0.953537\nvn -0.280282 -0.927557 -0.247145\nvn -0.280282 -0.927557 -0.247145\nvn -0.280282 -0.927557 -0.247145\nvn 0.284056 -0.489320 -0.824547\nvn 0.284056 -0.489320 -0.824547\nvn 0.284056 -0.489320 -0.824547\nvn 0.520785 0.705260 -0.481031\nvn 0.520785 0.705260 -0.481031\nvn 0.520785 0.705260 -0.481031\nvn 0.161925 0.960589 0.225942\nvn 0.161925 0.960589 0.225942\nvn 0.161925 0.960589 0.225942\nvn 0.161925 0.960589 0.225942\nvn 0.161925 0.960589 0.225942\nvn -0.419237 0.531906 0.735742\nvn -0.419237 0.531906 0.735742\nvn -0.419237 0.531906 0.735742\nvn 0.346780 -0.632217 -0.692853\nvn 0.346780 -0.632217 -0.692853\nvn 0.346780 -0.632217 -0.692853\nvn 0.346780 -0.632217 -0.692853\nvn 0.092891 0.910928 0.401971\nvn 0.092891 0.910928 0.401971\nvn 0.092891 0.910928 0.401971\nvn 0.092891 0.910928 0.401971\nvn 0.681596 0.527465 -0.507157\nvn 0.681596 0.527465 -0.507157\nvn 0.681596 0.527465 -0.507157\nvn 0.681596 0.527465 -0.507157\nvn -0.977154 -0.098512 0.188325\nvn -0.977154 -0.098512 0.188325\nvn -0.977154 -0.098512 0.188325\nvn -0.977154 -0.098512 0.188325\nvn -0.287381 -0.927977 -0.237215\nvn -0.287381 -0.927977 -0.237215\nvn -0.287381 -0.927977 -0.237215\nvn -0.170661 -0.248282 -0.953536\nvn -0.170661 -0.248282 -0.953536\nvn -0.170661 -0.248282 -0.953536\nvn -0.170661 -0.248282 -0.953536\nvn 0.528483 0.683678 -0.503279\nvn 0.528483 0.683678 -0.503279\nvn 0.528483 0.683678 -0.503279\nvn 0.150759 0.966370 0.208330\nvn 0.150759 0.966370 0.208330\nvn 0.150759 0.966370 0.208330\nvn 0.907871 -0.055859 0.415512\nvn 0.907871 -0.055859 0.415512\nvn 0.907871 -0.055859 0.415512\nvn 0.907871 -0.055859 0.415512\nvn -0.331603 0.608990 0.720535\nvn -0.331603 0.608990 0.720535\nvn -0.331603 0.608990 0.720535\nvn -0.871112 0.262743 -0.414885\nvn -0.871112 0.262743 -0.414885\nvn -0.871112 0.262743 -0.414885\nvn -0.871112 0.262743 -0.414885\nvn 0.660456 -0.261467 0.703870\nvn 0.660456 -0.261467 0.703870\nvn 0.660456 -0.261467 0.703870\nvn 0.660456 -0.261467 0.703870\nvn 0.660456 -0.261467 0.703870\nvn -0.281628 -0.928086 -0.243603\nvn -0.281628 -0.928086 -0.243603\nvn -0.281628 -0.928086 -0.243603\nvn -0.963321 -0.058697 -0.261855\nvn -0.963321 -0.058697 -0.261855\nvn -0.963321 -0.058697 -0.261855\nvn -0.963321 -0.058697 -0.261855\nvn -0.617032 -0.582233 0.529412\nvn -0.617032 -0.582233 0.529412\nvn -0.617032 -0.582233 0.529412\nvn -0.304794 0.604947 0.735622\nvn -0.304794 0.604947 0.735622\nvn -0.304794 0.604947 0.735622\nvn -0.162112 -0.960540 -0.226014\nvn -0.162112 -0.960540 -0.226014\nvn -0.162112 -0.960540 -0.226014\nvn -0.162112 -0.960540 -0.226013\nvn -0.162112 -0.960540 -0.226013\nvn 0.150797 0.966374 0.208282\nvn 0.150797 0.966374 0.208282\nvn 0.150797 0.966374 0.208282\nvn -0.419235 0.531903 0.735745\nvn -0.419235 0.531903 0.735745\nvn -0.419235 0.531903 0.735745\nvn 0.224233 0.922361 0.314595\nvn 0.224233 0.922361 0.314595\nvn 0.224233 0.922361 0.314595\nf 37/262/1 38/1103/2 46/1104/3\nf 46/1104/3 38/1103/2 1/9/4\nf 38/1103/2 47/1105/5 1/9/4\nf 38/172/6 39/1106/7 47/1107/8\nf 2/32/9 47/1107/8 96/1108/10\nf 47/1107/8 39/1106/7 96/1108/10\nf 3/144/11 96/1111/12 48/1110/13\nf 96/1111/12 39/237/14 48/1110/13\nf 39/237/14 40/1109/15 48/1110/13\nf 48/1116/16 40/1114/17 41/1115/18\nf 42/1117/19 49/1119/20 41/55/21\nf 49/1119/20 4/17/22 41/55/21\nf 48/1118/23 41/55/21 4/17/22\nf 49/1123/24 42/1121/25 5/138/26\nf 5/138/26 42/1121/25 43/1122/27\nf 50/1128/28 5/11/29 51/1129/30\nf 5/11/29 43/1126/31 51/1129/30\nf 43/1126/31 44/1127/32 51/1129/30\nf 44/1130/33 37/141/34 51/1133/35\nf 45/1131/36 51/1133/35 46/1132/37\nf 51/1133/35 37/141/34 46/1132/37\nf 277/1136/38 278/1137/39 6/1134/40\nf 6/1134/40 278/1137/39 7/1135/41\nf 7/739/42 278/1139/43 113/1138/44\nf 113/1138/44 278/1139/43 279/1140/45\nf 113/762/46 279/1141/47 112/246/48\nf 112/246/48 279/1141/47 366/1143/49\nf 366/1146/50 10/124/51 112/1145/52\nf 112/1145/52 10/124/51 111/1144/53\nf 365/1150/54 111/1149/55 11/1148/56\nf 11/1148/56 111/1149/55 10/1147/57\nf 365/1155/58 11/1151/59 8/27/60\nf 8/27/60 11/1151/59 12/1152/61\nf 8/21/62 12/1124/63 9/134/64\nf 9/134/64 12/1124/63 13/1125/65\nf 13/1159/66 277/1160/67 9/1158/68\nf 9/1158/68 277/1160/67 6/1157/69\nf 282/1162/70 367/1163/71 281/1161/72\nf 281/1161/72 367/1163/71 368/1164/73\nf 368/1167/74 369/1168/75 281/1166/76\nf 281/1166/76 369/1168/75 280/1165/77\nf 366/998/78 280/997/79 370/1170/80\nf 370/1170/80 280/997/79 369/1169/81\nf 366/1172/82 370/1173/83 10/885/84\nf 10/885/84 370/1173/83 371/1174/85\nf 371/1175/86 372/1176/87 10/19/88\nf 10/19/88 372/1176/87 11/25/89\nf 12/1152/90 11/1151/91 195/1154/92\nf 372/1156/93 194/1153/94 11/1151/91\nf 11/1151/91 194/1153/94 195/1154/92\nf 195/495/95 196/496/96 12/29/97\nf 12/29/97 196/496/96 13/37/98\nf 13/1177/99 196/1178/100 282/1180/101\nf 367/1181/102 282/1180/101 197/1179/103\nf 196/1178/100 197/1179/103 282/1180/101\nf 15/57/104 376/1183/105 16/1182/106\nf 16/1184/107 376/1185/108 377/1186/109\nf 17/28/110 377/1188/111 18/1187/112\nf 18/30/113 377/1191/114 19/31/115\nf 19/31/115 377/1191/114 373/1189/116\nf 19/1192/117 22/1194/118 20/1193/119\nf 20/1195/120 22/1197/121 21/1196/122\nf 21/1196/122 22/1197/121 23/1198/123\nf 21/1200/124 23/1201/125 14/1199/126\nf 24/1202/127 25/1203/128 377/1204/129\nf 26/1205/130 27/1206/131 22/49/132\nf 22/49/132 27/1206/131 23/51/133\nf 27/24/134 28/40/135 24/23/136\nf 24/116/137 28/1207/138 25/123/139\nf 25/41/140 28/1209/141 26/1208/142\nf 26/58/143 28/85/144 27/71/145\nf 6/13/146 7/73/147 37/1210/148\nf 37/1210/148 7/73/147 38/1211/149\nf 7/131/150 114/1213/151 38/142/152\nf 38/142/152 114/1213/151 39/1212/153\nf 39/237/154 114/1112/155 40/1109/156\nf 40/1109/156 114/1112/155 115/1113/157\nf 40/43/158 115/1215/159 41/1214/160\nf 41/1214/160 115/1215/159 116/1216/161\nf 41/48/162 116/1217/163 42/54/164\nf 42/54/164 116/1217/163 365/1218/165\nf 365/1051/166 8/18/167 42/87/168\nf 42/87/168 8/18/167 43/91/169\nf 8/21/170 9/134/171 43/1126/172\nf 43/1126/172 9/134/171 44/1127/173\nf 9/14/174 6/12/175 44/77/176\nf 44/77/176 6/12/175 37/67/177\nf 1/2/178 47/143/179 2/26/180\nf 2/157/181 31/1220/182 1/122/183\nf 1/122/183 31/1220/182 30/1219/184\nf 49/1119/185 69/1120/186 4/17/187\nf 4/17/187 69/1120/186 34/42/188\nf 36/962/189 29/954/190 35/961/191\nf 35/961/191 29/954/190 69/1088/192\nf 69/1088/192 29/954/190 34/960/193\nf 34/960/193 29/954/190 33/959/194\nf 33/959/194 29/954/190 32/958/195\nf 32/958/195 29/954/190 31/956/196\nf 30/955/197 31/956/196 29/954/190\nf 46/78/198 53/108/199 45/74/200\nf 45/74/200 53/108/199 52/96/201\nf 46/95/202 1/4/203 53/155/204\nf 53/155/204 1/4/203 54/156/205\nf 1/121/206 30/152/207 54/1221/208\nf 54/1221/208 30/152/207 55/1222/209\nf 30/1223/210 29/52/211 55/1224/212\nf 55/1224/212 29/52/211 56/1225/213\nf 45/92/214 52/147/215 29/72/216\nf 29/72/216 52/147/215 56/150/217\nf 52/166/218 53/250/219 57/1226/220\nf 57/1226/220 53/250/219 58/1227/221\nf 53/114/222 54/133/223 58/1228/224\nf 58/1228/224 54/133/223 59/1229/225\nf 54/163/226 55/169/227 59/1230/228\nf 59/1230/228 55/169/227 60/1231/229\nf 56/83/230 61/90/231 55/82/232\nf 55/82/232 61/90/231 60/84/233\nf 52/145/234 57/242/235 56/175/236\nf 56/175/236 57/242/235 61/1079/237\nf 57/135/238 58/1232/239 62/1233/240\nf 58/136/241 59/137/242 62/1080/243\nf 59/171/244 60/1037/245 62/1038/246\nf 60/84/247 61/90/248 62/94/249\nf 61/161/250 57/153/251 62/162/252\nf 51/477/253 67/1235/254 50/168/255\nf 50/168/255 67/1235/254 66/1234/256\nf 51/1237/257 45/263/258 67/1239/259\nf 67/1239/259 45/263/258 65/1238/260\nf 36/100/261 64/102/262 29/1/263\nf 29/1/263 64/102/262 63/101/264\nf 50/165/265 66/1242/266 36/86/267\nf 36/86/267 66/1242/266 64/1241/268\nf 45/98/269 29/66/270 65/1244/271\nf 65/1244/271 29/66/270 63/1243/272\nf 66/1234/273 67/1235/274 68/1236/275\nf 67/1245/276 65/481/277 68/1246/278\nf 63/101/279 64/102/280 68/1240/281\nf 64/170/282 66/184/283 68/485/284\nf 65/270/285 63/265/286 68/483/287\nf 49/70/288 5/10/289 73/99/290\nf 73/99/290 5/10/289 70/75/291\nf 5/8/292 50/271/293 70/1247/294\nf 70/1247/294 50/271/293 74/1248/295\nf 69/1249/296 75/1251/297 35/103/298\nf 35/103/298 75/1251/297 71/1250/299\nf 35/80/300 71/1252/301 36/81/302\nf 36/81/302 71/1252/301 72/1253/303\nf 36/63/304 72/275/305 50/129/306\nf 50/129/306 72/275/305 74/277/307\nf 69/59/308 49/56/309 75/1255/310\nf 75/1255/310 49/56/309 73/1254/311\nf 70/139/312 76/1256/313 73/140/314\nf 73/140/314 76/1256/313 79/1257/315\nf 74/231/316 80/1259/317 70/196/318\nf 70/196/318 80/1259/317 76/1258/319\nf 75/106/320 81/1262/321 71/104/322\nf 71/104/322 81/1262/321 77/1260/323\nf 72/105/324 71/104/325 78/1261/326\nf 78/1261/326 71/104/325 77/1260/327\nf 74/223/328 72/208/329 80/1058/330\nf 80/1058/330 72/208/329 78/233/331\nf 73/62/332 79/69/333 75/68/334\nf 75/68/334 79/69/333 81/117/335\nf 79/1028/336 76/149/337 82/1029/338\nf 76/148/339 80/151/340 82/154/341\nf 77/110/342 81/164/343 82/167/344\nf 78/115/345 77/110/346 82/167/347\nf 80/281/348 78/278/349 82/282/350\nf 81/952/351 79/118/352 82/953/353\nf 3/34/354 48/174/355 83/183/356\nf 83/183/356 48/174/355 84/1263/357\nf 4/6/358 85/1265/359 48/53/360\nf 48/53/360 85/1265/359 84/1264/361\nf 34/76/362 86/1267/363 4/7/364\nf 4/7/364 86/1267/363 85/1266/365\nf 34/79/366 33/65/367 86/1268/368\nf 86/1268/368 33/65/367 87/1269/369\nf 32/958/370 88/1090/371 33/959/372\nf 33/959/372 88/1090/371 87/1089/373\nf 32/1091/374 3/130/375 88/1093/376\nf 88/1093/376 3/130/375 83/1092/377\nf 83/88/378 84/89/379 89/97/380\nf 89/97/380 84/89/379 90/158/381\nf 85/193/382 91/1271/383 84/181/384\nf 84/181/384 91/1271/383 90/1270/385\nf 85/234/386 86/235/387 91/1272/388\nf 91/1272/388 86/235/387 92/1273/389\nf 86/177/390 87/178/391 92/186/392\nf 92/186/392 87/178/391 93/1274/393\nf 88/180/394 94/1275/395 87/178/396\nf 87/178/396 94/1275/395 93/1274/397\nf 83/179/398 89/1276/399 88/192/400\nf 88/192/400 89/1276/399 94/1277/401\nf 89/97/402 90/158/403 95/159/404\nf 90/194/405 91/204/406 95/326/407\nf 91/243/408 92/247/409 95/249/410\nf 92/1100/411 93/1101/412 95/1102/413\nf 93/188/414 94/189/415 95/190/416\nf 94/198/417 89/197/418 95/225/419\nf 96/288/420 101/1279/421 2/5/422\nf 2/5/422 101/1279/421 97/1278/423\nf 96/185/424 3/3/425 101/200/426\nf 101/200/426 3/3/425 98/187/427\nf 32/61/428 31/60/429 100/1280/430\nf 100/1280/430 31/60/429 99/191/431\nf 2/50/432 97/950/433 31/949/434\nf 31/949/434 97/950/433 99/951/435\nf 3/38/436 32/93/437 98/1281/438\nf 98/1281/438 32/93/437 100/1282/439\nf 97/297/440 101/1283/441 102/1284/442\nf 101/1285/443 103/1287/444 102/1286/445\nf 104/1096/446 99/199/447 102/1095/448\nf 99/294/449 97/290/450 102/299/451\nf 103/1288/452 104/1289/453 102/205/454\nf 100/1094/455 99/199/456 104/1096/457\nf 101/241/458 98/216/459 107/1291/460\nf 107/1291/460 98/216/459 105/1290/461\nf 100/109/462 106/1048/463 98/107/464\nf 98/107/464 106/1048/463 105/1047/465\nf 104/201/466 109/1293/467 100/195/468\nf 100/195/468 109/1293/467 106/1292/469\nf 101/203/470 107/1295/471 103/1294/472\nf 103/1294/472 107/1295/471 108/1296/473\nf 104/207/474 103/206/475 109/1297/476\nf 109/1297/476 103/206/475 108/212/477\nf 107/260/478 105/251/479 110/269/480\nf 105/258/481 106/1001/482 110/1002/483\nf 106/211/484 109/215/485 110/217/486\nf 108/210/487 107/209/488 110/213/489\nf 109/1098/490 108/1097/491 110/1099/492\nf 111/334/493 117/348/494 112/336/495\nf 112/336/495 117/348/494 118/417/496\nf 118/322/497 119/323/498 112/314/499\nf 112/314/499 119/323/498 113/315/500\nf 119/1301/501 120/1302/502 113/252/503\nf 113/252/503 120/1302/502 114/1300/504\nf 114/253/505 120/308/506 115/264/507\nf 115/264/507 120/308/506 121/1303/508\nf 115/859/509 121/870/510 116/869/511\nf 116/869/511 121/870/510 122/1304/512\nf 116/286/513 122/1306/514 111/279/515\nf 111/279/515 122/1306/514 117/1305/516\nf 123/1307/517 124/1308/518 117/287/519\nf 117/287/519 124/1308/518 118/291/520\nf 124/1298/521 125/1299/522 118/322/523\nf 118/322/523 125/1299/522 119/323/524\nf 125/316/525 126/524/526 119/273/527\nf 119/273/527 126/524/526 120/283/528\nf 120/222/529 126/1311/530 121/224/531\nf 121/224/531 126/1311/530 127/1312/532\nf 121/125/533 127/127/534 122/126/535\nf 122/126/535 127/127/534 128/128/536\nf 122/302/537 128/320/538 117/295/539\nf 117/295/539 128/320/538 123/319/540\nf 129/303/541 130/304/542 123/296/543\nf 123/296/543 130/304/542 124/298/544\nf 124/366/545 130/411/546 125/405/547\nf 125/405/547 130/411/546 131/415/548\nf 125/316/549 131/526/550 126/524/551\nf 126/524/551 131/526/550 132/540/552\nf 126/226/553 132/257/554 127/255/555\nf 127/255/555 132/257/554 133/268/556\nf 133/218/557 134/219/558 127/127/559\nf 127/127/559 134/219/558 128/128/560\nf 134/338/561 129/321/562 128/320/563\nf 128/320/563 129/321/562 123/319/564\nf 135/1315/565 136/1316/566 129/324/567\nf 129/324/567 136/1316/566 130/328/568\nf 136/329/569 137/330/570 130/325/571\nf 130/325/571 137/330/570 131/327/572\nf 137/1309/573 138/1310/574 131/526/575\nf 131/526/575 138/1310/574 132/540/576\nf 132/132/577 138/1317/578 133/173/579\nf 133/173/579 138/1317/578 139/1318/580\nf 133/146/581 139/176/582 134/160/583\nf 134/160/583 139/176/582 140/182/584\nf 134/338/585 140/1314/586 129/321/587\nf 129/321/587 140/1314/586 135/1313/588\nf 135/309/589 141/438/590 136/313/591\nf 136/329/592 141/331/593 137/330/594\nf 137/544/595 141/738/596 138/737/597\nf 138/272/598 141/280/599 139/274/600\nf 139/176/601 141/202/602 140/182/603\nf 140/1026/604 141/1027/605 135/1025/606\nf 142/461/607 148/1319/608 143/507/609\nf 143/507/609 148/1319/608 149/1320/610\nf 143/220/611 149/345/612 144/221/613\nf 144/221/613 149/345/612 150/349/614\nf 144/332/615 150/359/616 145/337/617\nf 145/337/617 150/359/616 151/1068/618\nf 151/1008/619 152/1009/620 145/227/621\nf 145/227/621 152/1009/620 146/1007/622\nf 152/238/623 153/244/624 146/229/625\nf 146/229/625 153/244/624 147/230/626\nf 153/1073/627 148/254/628 147/228/629\nf 147/228/629 148/254/628 142/214/630\nf 154/1321/631 155/1322/632 148/541/633\nf 148/541/633 155/1322/632 149/542/634\nf 155/360/635 156/361/636 149/345/637\nf 149/345/637 156/361/636 150/349/638\nf 156/1323/639 157/1324/640 150/318/641\nf 150/318/641 157/1324/640 151/333/642\nf 151/232/643 157/239/644 152/236/645\nf 152/236/645 157/239/644 158/240/646\nf 152/256/647 158/266/648 153/259/649\nf 153/259/649 158/266/648 159/276/650\nf 153/371/651 159/1326/652 148/368/653\nf 148/368/653 159/1326/652 154/1325/654\nf 154/543/655 160/1328/656 155/1327/657\nf 155/545/658 160/993/659 156/992/660\nf 156/339/661 160/341/662 157/340/663\nf 157/1010/664 160/1012/665 158/1011/666\nf 158/245/667 160/453/668 159/450/669\nf 159/384/670 160/386/671 154/381/672\nf 143/351/673 144/352/674 142/350/675\nf 144/352/674 145/354/676 142/350/675\nf 145/354/676 146/355/677 142/350/675\nf 146/355/677 147/356/678 142/350/675\nf 161/364/679 167/1329/680 162/367/681\nf 162/367/681 167/1329/680 168/1330/682\nf 162/546/683 168/1331/684 163/553/685\nf 163/553/685 168/1331/684 169/1332/686\nf 163/547/687 169/1334/688 164/548/689\nf 164/548/689 169/1334/688 170/1335/690\nf 170/1336/691 171/1337/692 164/285/693\nf 164/285/693 171/1337/692 165/293/694\nf 171/1338/695 172/1339/696 165/261/697\nf 165/261/697 172/1339/696 166/289/698\nf 172/1342/699 167/1341/700 166/267/701\nf 166/267/701 167/1341/700 161/248/702\nf 167/375/703 173/377/704 168/376/705\nf 168/1331/706 173/1333/707 169/1332/708\nf 169/575/709 173/577/710 170/576/711\nf 170/300/712 173/305/713 171/301/714\nf 171/1338/715 173/1340/716 172/1339/717\nf 172/292/718 173/312/719 167/284/720\nf 162/343/721 163/344/722 161/342/723\nf 163/344/722 164/346/724 161/342/723\nf 164/346/724 165/347/725 161/342/723\nf 165/347/725 166/365/726 161/342/723\nf 174/469/727 180/525/728 175/474/729\nf 175/379/730 180/388/731 176/385/732\nf 176/373/733 180/1044/734 177/1043/735\nf 177/383/736 180/391/737 178/390/738\nf 178/306/739 180/310/740 179/307/741\nf 179/402/742 180/409/743 174/387/744\nf 175/369/745 176/370/746 174/335/747\nf 176/370/746 177/380/748 174/335/747\nf 177/380/748 178/389/749 174/335/747\nf 178/389/749 179/395/750 174/335/747\nf 181/539/751 187/579/752 182/578/753\nf 182/578/753 187/579/752 188/580/754\nf 182/394/755 188/480/756 183/472/757\nf 183/472/757 188/480/756 189/1343/758\nf 183/398/759 189/478/760 184/423/761\nf 184/423/761 189/478/760 190/479/762\nf 190/440/763 191/441/764 184/399/765\nf 184/399/765 191/441/764 185/416/766\nf 191/1346/767 192/1347/768 185/317/769\nf 185/317/769 192/1347/768 186/1345/770\nf 192/1348/771 187/357/772 186/353/773\nf 186/353/773 187/357/772 181/311/774\nf 187/463/775 193/1072/776 188/1071/777\nf 188/480/778 193/1344/779 189/1343/780\nf 189/392/781 193/1350/782 190/1349/783\nf 190/393/784 193/397/785 191/396/786\nf 191/358/787 193/363/788 192/362/789\nf 192/464/790 193/468/791 187/443/792\nf 182/412/793 183/413/794 181/410/795\nf 183/413/794 184/414/796 181/410/795\nf 184/414/796 185/439/797 181/410/795\nf 185/439/797 186/442/798 181/410/795\nf 194/374/799 200/1352/800 195/1351/801\nf 195/1351/801 200/1352/800 201/1353/802\nf 195/465/803 201/470/804 196/466/805\nf 196/466/805 201/470/804 202/471/806\nf 196/484/807 202/1355/808 197/1354/809\nf 197/1354/809 202/1355/808 203/1356/810\nf 197/1357/811 203/1359/812 198/1358/813\nf 198/1358/813 203/1359/812 204/1360/814\nf 204/1361/815 205/1362/816 198/621/817\nf 198/621/817 205/1362/816 199/622/818\nf 205/1364/819 200/1363/820 199/378/821\nf 199/378/821 200/1363/820 194/372/822\nf 206/1366/823 207/1367/824 200/418/825\nf 200/418/825 207/1367/824 201/1365/826\nf 207/475/827 208/476/828 201/470/829\nf 201/470/829 208/476/828 202/471/830\nf 208/515/831 209/1368/832 202/490/833\nf 202/490/833 209/1368/832 203/501/834\nf 203/491/835 209/1373/836 204/492/837\nf 204/492/837 209/1373/836 210/1374/838\nf 204/400/839 210/403/840 205/401/841\nf 205/401/841 210/403/840 211/404/842\nf 205/419/843 211/433/844 200/382/845\nf 200/382/845 211/433/844 206/429/846\nf 212/431/847 213/432/848 206/427/849\nf 206/427/849 213/432/848 207/428/850\nf 207/497/851 213/502/852 208/500/853\nf 208/500/853 213/502/852 214/506/854\nf 208/515/855 214/1369/856 209/1368/857\nf 209/1368/857 214/1369/856 215/1370/858\nf 209/508/859 215/517/860 210/513/861\nf 210/513/861 215/517/860 216/520/862\nf 216/623/863 217/624/864 210/403/865\nf 210/403/865 217/624/864 211/404/866\nf 217/644/867 212/635/868 211/433/869\nf 211/433/869 212/635/868 206/429/870\nf 218/1377/871 219/1378/872 212/488/873\nf 212/488/873 219/1378/872 213/505/874\nf 219/510/875 220/511/876 213/493/877\nf 213/493/877 220/511/876 214/499/878\nf 220/1371/879 221/1372/880 214/1369/881\nf 214/1369/881 221/1372/880 215/1370/882\nf 215/646/883 221/1379/884 216/663/885\nf 216/663/885 221/1379/884 222/1380/886\nf 216/658/887 222/664/888 217/662/889\nf 217/662/889 222/664/888 223/690/890\nf 217/644/891 223/1376/892 212/635/893\nf 212/635/893 223/1376/892 218/1375/894\nf 218/435/895 224/1382/896 219/1381/897\nf 219/510/898 224/514/899 220/511/900\nf 220/522/901 224/1384/902 221/1383/903\nf 221/527/904 224/686/905 222/683/906\nf 222/664/907 224/691/908 223/690/909\nf 223/436/910 224/437/911 218/434/912\nf 225/512/913 231/538/914 226/523/915\nf 226/523/915 231/538/914 232/550/916\nf 226/518/917 232/549/918 227/519/919\nf 227/519/919 232/549/918 233/551/920\nf 227/521/921 233/1077/922 228/552/923\nf 228/552/923 233/1077/922 234/1078/924\nf 234/408/925 235/420/926 228/406/927\nf 228/406/927 235/420/926 229/407/928\nf 235/614/929 236/620/930 229/581/931\nf 229/581/931 236/620/930 230/582/932\nf 236/1084/933 231/1083/934 230/696/935\nf 230/696/935 231/1083/934 225/692/936\nf 237/1086/937 238/1087/938 231/516/939\nf 231/516/939 238/1087/938 232/534/940\nf 238/556/941 239/557/942 232/549/943\nf 232/549/943 239/557/942 233/551/944\nf 239/1386/945 240/1387/946 233/528/947\nf 233/528/947 240/1387/946 234/1385/948\nf 234/529/949 240/568/950 235/530/951\nf 235/530/951 240/568/950 241/1388/952\nf 235/708/953 241/1061/954 236/728/955\nf 236/728/955 241/1061/954 242/1062/956\nf 236/532/957 242/1390/958 231/509/959\nf 231/509/959 242/1390/958 237/1389/960\nf 237/554/961 243/1392/962 238/1391/963\nf 238/558/964 243/560/965 239/559/966\nf 239/531/967 243/569/968 240/567/969\nf 240/421/970 243/1394/971 241/1393/972\nf 241/422/973 243/425/974 242/424/975\nf 242/535/976 243/536/977 237/533/978\nf 226/449/979 227/459/980 225/447/981\nf 227/459/980 228/460/982 225/447/981\nf 228/460/982 229/473/983 225/447/981\nf 229/473/983 230/482/984 225/447/981\nf 244/561/985 250/1395/986 245/564/987\nf 245/564/987 250/1395/986 251/1396/988\nf 245/562/989 251/1397/990 246/596/991\nf 246/596/991 251/1397/990 252/1398/992\nf 246/565/993 252/1400/994 247/566/995\nf 247/566/995 252/1400/994 253/1401/996\nf 253/1402/997 254/1403/998 247/729/999\nf 247/729/999 254/1403/998 248/730/1000\nf 254/1404/1001 255/1405/1002 248/430/1003\nf 248/430/1003 255/1405/1002 249/446/1004\nf 255/1408/1005 250/1407/1006 249/444/1007\nf 249/444/1007 250/1407/1006 244/426/1008\nf 250/583/1009 256/626/1010 251/625/1011\nf 251/1397/1012 256/1399/1013 252/1398/1014\nf 252/599/1015 256/603/1016 253/600/1017\nf 253/731/1018 256/733/1019 254/732/1020\nf 254/1404/1021 256/1406/1022 255/1405/1023\nf 255/448/1024 256/451/1025 250/445/1026\nf 245/595/1027 246/609/1028 244/592/1029\nf 246/609/1028 247/615/1030 244/592/1029\nf 247/615/1030 248/616/1031 244/592/1029\nf 248/616/1031 249/617/1032 244/592/1029\nf 257/563/1033 263/1410/1034 258/1409/1035\nf 258/627/1036 263/630/1037 259/628/1038\nf 259/618/1039 263/1412/1040 260/1411/1041\nf 260/639/1042 263/643/1043 261/642/1044\nf 261/744/1045 263/747/1046 262/746/1047\nf 262/570/1048 263/571/1049 257/537/1050\nf 258/454/1051 259/455/1052 257/452/1053\nf 259/455/1052 260/456/1054 257/452/1053\nf 260/456/1054 261/457/1055 257/452/1053\nf 261/457/1055 262/458/1056 257/452/1053\nf 264/572/1057 270/1413/1058 265/573/1059\nf 265/573/1059 270/1413/1058 271/1414/1060\nf 265/631/1061 271/671/1062 266/668/1063\nf 266/668/1063 271/671/1062 272/1415/1064\nf 266/666/1065 272/669/1066 267/667/1067\nf 267/667/1067 272/669/1066 273/670/1068\nf 273/1417/1069 274/1418/1070 267/645/1071\nf 267/645/1071 274/1418/1070 268/649/1072\nf 274/1420/1073 275/1421/1074 268/749/1075\nf 268/749/1075 275/1421/1074 269/1419/1076\nf 275/1423/1077 270/1422/1078 269/750/1079\nf 269/750/1079 270/1422/1078 264/748/1080\nf 270/574/1081 276/602/1082 271/601/1083\nf 271/671/1084 276/1416/1085 272/1415/1086\nf 272/652/1087 276/1425/1088 273/1424/1089\nf 273/656/1090 276/682/1091 274/674/1092\nf 274/752/1093 276/1427/1094 275/1426/1095\nf 275/753/1096 276/754/1097 270/751/1098\nf 265/467/1099 266/494/1100 264/462/1101\nf 266/494/1100 267/498/1102 264/462/1101\nf 267/498/1102 268/503/1103 264/462/1101\nf 268/503/1103 269/504/1104 264/462/1101\nf 277/705/1105 283/1428/1106 278/938/1107\nf 278/938/1107 283/1428/1106 284/1429/1108\nf 278/673/1109 284/1430/1110 279/699/1111\nf 279/699/1111 284/1430/1110 285/1431/1112\nf 279/608/1113 285/1432/1114 280/619/1115\nf 280/619/1115 285/1432/1114 286/1433/1116\nf 280/610/1117 286/1063/1118 281/613/1119\nf 281/613/1119 286/1063/1118 287/1064/1120\nf 287/1434/1121 288/1435/1122 281/755/1123\nf 281/755/1123 288/1435/1122 282/771/1124\nf 288/1437/1125 283/1436/1126 282/1003/1127\nf 282/1003/1127 283/1436/1126 277/935/1128\nf 289/698/1129 290/703/1130 283/693/1131\nf 283/693/1131 290/703/1130 284/695/1132\nf 290/702/1133 291/709/1134 284/700/1135\nf 284/700/1135 291/709/1134 285/701/1136\nf 291/585/1137 292/586/1138 285/555/1139\nf 285/555/1139 292/586/1138 286/584/1140\nf 286/634/1141 292/641/1142 287/640/1143\nf 287/640/1143 292/641/1142 293/653/1144\nf 287/721/1145 293/735/1146 288/722/1147\nf 288/722/1147 293/735/1146 294/756/1148\nf 288/605/1149 294/607/1150 283/604/1151\nf 283/604/1151 294/607/1150 289/606/1152\nf 295/1053/1153 296/1054/1154 289/724/1155\nf 289/724/1155 296/1054/1154 290/743/1156\nf 290/702/1157 296/711/1158 291/709/1159\nf 291/709/1159 296/711/1158 297/713/1160\nf 291/585/1161 297/587/1162 292/586/1163\nf 292/586/1163 297/587/1162 298/588/1164\nf 292/654/1165 298/1055/1166 293/657/1167\nf 293/657/1167 298/1055/1166 299/1056/1168\nf 299/775/1169 300/778/1170 293/735/1171\nf 293/735/1171 300/778/1170 294/756/1172\nf 300/612/1173 295/611/1174 294/607/1175\nf 294/607/1175 295/611/1174 289/606/1176\nf 301/1059/1177 302/1060/1178 295/734/1179\nf 295/734/1179 302/1060/1178 296/759/1180\nf 302/760/1181 303/1041/1182 296/757/1183\nf 296/757/1183 303/1041/1182 297/758/1184\nf 303/1023/1185 304/1024/1186 297/587/1187\nf 297/587/1187 304/1024/1186 298/588/1188\nf 298/782/1189 304/1069/1190 299/800/1191\nf 299/800/1191 304/1069/1190 305/1070/1192\nf 299/792/1193 305/806/1194 300/799/1195\nf 300/799/1195 305/806/1194 306/1049/1196\nf 300/612/1197 306/632/1198 295/611/1199\nf 295/611/1199 306/632/1198 301/629/1200\nf 301/766/1201 307/1439/1202 302/1438/1203\nf 302/760/1204 307/1042/1205 303/1041/1206\nf 303/589/1207 307/591/1208 304/590/1209\nf 304/659/1210 307/661/1211 305/660/1212\nf 305/806/1213 307/1050/1214 306/1049/1215\nf 306/767/1216 307/768/1217 301/765/1218\nf 308/769/1219 314/1440/1220 309/770/1221\nf 309/770/1221 314/1440/1220 315/1441/1222\nf 309/593/1223 315/597/1224 310/594/1225\nf 310/594/1225 315/597/1224 316/598/1226\nf 310/761/1227 316/787/1228 311/784/1229\nf 311/784/1229 316/787/1228 317/788/1230\nf 317/818/1231 318/1074/1232 311/672/1233\nf 311/672/1233 318/1074/1232 312/688/1234\nf 318/783/1235 319/791/1236 312/780/1237\nf 312/780/1237 319/791/1236 313/781/1238\nf 319/1082/1239 314/1081/1240 313/814/1241\nf 313/814/1241 314/1081/1240 308/810/1242\nf 320/1442/1243 321/1443/1244 314/796/1245\nf 314/796/1245 321/1443/1244 315/797/1246\nf 321/785/1247 322/786/1248 315/597/1249\nf 315/597/1249 322/786/1248 316/598/1250\nf 322/675/1251 323/1067/1252 316/633/1253\nf 316/633/1253 323/1067/1252 317/637/1254\nf 317/689/1255 323/1444/1256 318/706/1257\nf 318/706/1257 323/1444/1256 324/1445/1258\nf 318/817/1259 324/1065/1260 319/820/1261\nf 319/820/1261 324/1065/1260 325/1066/1262\nf 319/678/1263 325/1447/1264 314/665/1265\nf 314/665/1265 325/1447/1264 320/1446/1266\nf 320/813/1267 326/1036/1268 321/1035/1269\nf 321/636/1270 326/1057/1271 322/676/1272\nf 322/725/1273 326/745/1274 323/726/1275\nf 323/727/1276 326/1022/1277 324/1021/1278\nf 324/680/1279 326/1085/1280 325/684/1281\nf 325/681/1282 326/801/1283 320/679/1284\nf 309/647/1285 310/648/1286 308/638/1287\nf 310/648/1286 311/650/1288 308/638/1287\nf 311/650/1288 312/651/1289 308/638/1287\nf 312/651/1289 313/655/1290 308/638/1287\nf 327/821/1291 333/1448/1292 328/827/1293\nf 328/827/1293 333/1448/1292 334/1449/1294\nf 328/811/1295 334/815/1296 329/812/1297\nf 329/812/1297 334/815/1296 335/816/1298\nf 329/677/1299 335/1450/1300 330/687/1301\nf 330/687/1301 335/1450/1300 336/1451/1302\nf 336/1452/1303 337/1453/1304 330/822/1305\nf 330/822/1305 337/1453/1304 331/833/1306\nf 337/828/1307 338/832/1308 331/824/1309\nf 331/824/1309 338/832/1308 332/825/1310\nf 338/1455/1311 333/1454/1312 332/707/1313\nf 332/707/1313 333/1454/1312 327/685/1314\nf 333/847/1315 339/1031/1316 334/1030/1317\nf 334/815/1318 339/823/1319 335/816/1320\nf 335/697/1321 339/710/1322 336/704/1323\nf 336/1015/1324 339/1017/1325 337/1016/1326\nf 337/828/1327 339/834/1328 338/832/1329\nf 338/716/1330 339/717/1331 333/715/1332\nf 328/773/1333 329/774/1334 327/772/1335\nf 329/774/1334 330/776/1336 327/772/1335\nf 330/776/1336 331/777/1337 327/772/1335\nf 331/777/1337 332/779/1338 327/772/1335\nf 340/900/1339 346/1046/1340 341/1045/1341\nf 341/848/1342 346/862/1343 342/849/1344\nf 342/712/1345 346/723/1346 343/714/1347\nf 343/802/1348 346/807/1349 344/805/1350\nf 344/861/1351 346/873/1352 345/872/1353\nf 345/845/1354 346/846/1355 340/844/1356\nf 341/719/1357 342/740/1358 340/718/1359\nf 342/740/1358 343/741/1360 340/718/1359\nf 343/741/1360 344/742/1361 340/718/1359\nf 344/742/1361 345/763/1362 340/718/1359\nf 347/903/1363 353/1456/1364 348/918/1365\nf 348/918/1365 353/1456/1364 354/1457/1366\nf 348/863/1367 354/1020/1368 349/879/1369\nf 349/879/1369 354/1020/1368 355/1458/1370\nf 349/864/1371 355/1018/1372 350/878/1373\nf 350/878/1373 355/1018/1372 356/1019/1374\nf 356/1460/1375 357/1461/1376 350/808/1377\nf 350/808/1377 357/1461/1376 351/809/1378\nf 357/1463/1379 358/1464/1380 351/875/1381\nf 351/875/1381 358/1464/1380 352/1462/1382\nf 358/1466/1383 353/1465/1384 352/876/1385\nf 352/876/1385 353/1465/1384 347/874/1386\nf 353/919/1387 359/921/1388 354/920/1389\nf 354/1020/1390 359/1459/1391 355/1458/1392\nf 355/854/1393 359/866/1394 356/855/1395\nf 356/842/1396 359/856/1397 357/843/1398\nf 357/883/1399 359/1468/1400 358/1467/1401\nf 358/887/1402 359/888/1403 353/877/1404\nf 348/794/1405 349/795/1406 347/764/1407\nf 349/795/1406 350/798/1408 347/764/1407\nf 350/798/1408 351/803/1409 347/764/1407\nf 351/803/1409 352/804/1410 347/764/1407\nf 360/857/1411 411/976/1412 361/858/1413\nf 361/868/1414 378/890/1415 360/867/1416\nf 360/867/1416 378/890/1415 379/899/1417\nf 363/930/1418 415/986/1419 382/945/1420\nf 7/45/1421 113/252/1422 114/1300/1423\nf 111/120/1424 365/871/1425 116/860/1426\nf 277/694/1427 13/15/1428 282/934/1429\nf 280/1142/1430 366/1143/1431 279/1141/1432\nf 367/1163/1433 14/720/1434 368/1164/1435\nf 368/1164/1435 14/720/1434 15/1005/1436\nf 368/1167/1437 15/994/1438 369/1168/1439\nf 369/1168/1439 15/994/1438 16/996/1440\nf 16/789/1441 17/995/1442 369/1169/1443\nf 369/1169/1443 17/995/1442 370/1170/1444\nf 17/886/1445 18/1171/1446 370/1173/1447\nf 370/1173/1447 18/1171/1446 371/1174/1448\nf 18/904/1449 19/987/1450 371/1175/1451\nf 371/1175/1451 19/987/1450 372/1176/1452\nf 19/39/1453 20/486/1454 372/1470/1455\nf 372/1470/1455 20/486/1454 194/1052/1456\nf 20/486/1454 199/1469/1457 194/1052/1456\nf 20/44/1458 21/47/1459 199/826/1460\nf 199/826/1460 21/47/1459 198/819/1461\nf 14/22/1462 367/1471/1463 21/487/1464\nf 197/489/1465 198/1004/1466 367/1471/1463\nf 198/1004/1466 21/487/1464 367/1471/1463\nf 374/1472/1467 375/1473/1468 22/33/1469\nf 22/33/1469 375/1473/1468 26/989/1470\nf 362/889/1471 413/974/1472 380/911/1473\nf 363/891/1474 382/912/1475 415/978/1476\nf 413/985/1477 362/929/1478 380/944/1479\nf 411/1475/1480 360/736/1481 379/1474/1482\nf 377/835/1483 384/1476/1484 373/830/1485\nf 373/830/1485 384/1476/1484 385/1477/1486\nf 389/1479/1487 390/1480/1488 383/837/1489\nf 383/837/1489 390/1480/1488 384/1478/1490\nf 390/916/1491 391/931/1492 384/850/1493\nf 384/850/1493 391/931/1492 385/901/1494\nf 391/897/1495 392/898/1496 385/865/1497\nf 385/865/1497 392/898/1496 386/896/1498\nf 386/839/1499 392/1487/1500 387/840/1501\nf 387/840/1501 392/1487/1500 393/1488/1502\nf 387/923/1503 393/928/1504 388/926/1505\nf 388/926/1505 393/928/1504 394/941/1506\nf 388/881/1507 394/894/1508 383/880/1509\nf 383/880/1509 394/894/1508 389/892/1510\nf 395/922/1511 396/924/1512 389/902/1513\nf 389/902/1513 396/924/1512 390/915/1514\nf 390/916/1515 396/1481/1516 391/931/1517\nf 391/931/1517 396/1481/1516 397/1482/1518\nf 391/897/1519 397/1483/1520 392/898/1521\nf 392/898/1521 397/1483/1520 398/1484/1522\nf 392/852/1523 398/882/1524 393/853/1525\nf 393/853/1525 398/882/1524 399/884/1526\nf 399/1075/1527 400/1076/1528 393/928/1529\nf 393/928/1529 400/1076/1528 394/941/1530\nf 400/1490/1531 395/1489/1532 394/894/1533\nf 394/894/1533 395/1489/1532 389/892/1534\nf 401/1493/1535 402/1494/1536 395/970/1537\nf 395/970/1537 402/1494/1536 396/975/1538\nf 405/1495/1539 399/966/1540 409/1496/1541\nf 409/1496/1541 399/966/1540 404/971/1542\nf 398/927/1543 404/971/1542 399/966/1540\nf 400/1490/1544 406/1492/1545 395/1489/1546\nf 395/1489/1546 406/1492/1545 401/1491/1547\nf 402/979/1548 407/981/1549 408/982/1550\nf 412/1034/1551 404/1033/1552 403/1032/1553\nf 414/1497/1554 405/933/1555 409/946/1556\nf 399/957/1557 405/968/1558 400/965/1559\nf 406/969/1560 400/965/1559 410/977/1561\nf 400/965/1559 405/968/1558 410/977/1561\nf 406/1013/1562 411/1014/1563 379/793/1564\nf 373/829/1565 385/838/1566 374/831/1567\nf 374/831/1567 385/838/1566 386/841/1568\nf 387/913/1569 388/914/1570 375/893/1571\nf 375/893/1571 388/914/1570 377/905/1572\nf 386/947/1573 387/948/1574 374/936/1575\nf 374/936/1575 387/948/1574 375/937/1576\nf 402/964/1577 401/963/1578 378/908/1579\nf 378/908/1579 401/963/1578 379/909/1580\nf 412/984/1581 403/980/1582 408/982/1583\nf 398/1484/1584 397/1483/1585 404/1486/1586\nf 404/1486/1586 397/1483/1585 403/1485/1587\nf 409/939/1588 404/932/1589 412/940/1590\nf 410/977/1591 405/968/1592 414/1040/1593\nf 15/20/1594 14/16/1595 376/1006/1596\nf 376/1006/1596 14/16/1595 23/46/1597\nf 377/1498/1598 17/111/1599 16/64/1600\nf 19/31/1601 373/1189/1602 22/988/1603\nf 373/1189/1602 374/1190/1604 22/988/1603\nf 24/113/1605 377/1000/1606 27/119/1607\nf 23/112/1608 27/119/1607 376/999/1609\nf 377/1000/1606 376/999/1609 27/119/1607\nf 361/917/1610 411/983/1611 378/943/1612\nf 375/990/1613 377/991/1614 26/36/1615\nf 26/36/1615 377/991/1614 25/35/1616\nf 377/906/1617 383/910/1618 384/925/1619\nf 377/790/1620 388/851/1621 383/836/1622\nf 402/979/1623 408/982/1624 396/972/1625\nf 408/982/1624 403/980/1626 396/972/1625\nf 403/980/1626 397/973/1627 396/972/1625\nf 410/977/1628 411/1039/1629 406/969/1630\nf 379/793/1631 401/895/1632 406/1013/1633\nf 378/907/1634 407/967/1635 402/942/1636\n"
  },
  {
    "path": "readme.md",
    "content": "# vue-3d-loader\n\nvueJS + threeJS 3d viewer component.  \n\nsupport .dae/.fbx/.gltf/.glb/.obj/.ply/.stl/.json models, and support the same scene to import multiple different 3D models, support mtl materials and texture\n\n[![Version](https://img.shields.io/npm/v/vue-3d-loader.svg)](https://www.npmjs.com/package/vue-3d-loader) [![License](https://img.shields.io/npm/l/vue-3d-loader.svg)](https://www.npmjs.com/package/vue-3d-loader) [![Downloads](https://img.shields.io/npm/dt/vue-3d-loader.svg)](https://www.npmjs.com/package/vue-3d-loader)\n\n[简体中文](./readme_CN.md)\n\nDocument：<https://king2088.github.io/vue-3d-loader-docs/zh/>\n\ndemo gif\n\n![demo gif image](./demo.gif)\n\nVue3 please install **2.0.0** or later, vue2 please install **1.x.x** version\n\n## Feature support list\n\n- Load a single 3D model\n- Load multiple 3D models simultaneously\n- Load multiple 3D models of different types simultaneously\n- Load Draco gltf models(See API)\n- Supports custom file type(for url without file extensions)\n- Set scene width and height\n- Set up materials and textures\n- Interactive control\n- Mouse event\n- Light\n- Camera position and rotation\n- Add label points\n\n## Install vue-3d-loader\n\n```shell\nnpm i vue-3d-loader -S # npm install vue-3d-loader -save\n```\n\nor\n\n```shell\nyarn add vue-3d-loader\n```\n\n## How to use vue-3d-loader\n\nIf use in global, insert code in entry file：\n\n```js\n/* vue2 */\nimport vue3dLoader from \"vue-3d-loader\";\nVue.use(vue3dLoader);\n\n/* vue3 */\nimport vue3dLoader from \"vue-3d-loader\";\ncreateApp(App).use(vue3dLoader).mount(\"#app\");\n```\n\nIf non-global use, insert code in your vue files:\n\n```js\nimport { vue3dLoader } from \"vue-3d-loader\"; // The vue3dLoader in {...}\n```\n\nUse tags in your components`<vue3dLoader></vue3dLoader>`\n\n```vue\n<vue3dLoader\n  :height=\"200\"\n  :showFps=\"true\"\n  :filePath=\"['/fbx/1.fbx', '/obj/2.obj', '/gltf/3.gltf']\"\n  :mtlPath=\"[null, '/obj/2.mtl', null]\"\n  :backgroundColor=\"0xff00ff\"\n></vue3dLoader>\n```\n\n## API\n\n### Attributes\n\n<table>\n<tr>\n  <th>Prop</th>\n  <th style=\"min-width:100px\">Type</th>\n  <th>Default</th>\n  <th>Value</th>\n  <th>Description</th>\n</tr>\n<tr>\n  <td>\n  filePath\n  </td>\n  <td>string | array</td>\n  <td>-</td>\n  <td>\n\n  ```js\n  const filePath = './models/tree.obj'\n  /* or */\n  const filePath = [\n    './models/tree.obj', \n    './models/building.obj'\n  ]\n  ```\n\n  </td>\n  <td>\n  \n  File path, supports multiple files to be loaded together, note: If each file corresponds to a material, you need to set the material **mtlPath** as an array. The same is true for image textures, which need to be set to **textureImage** as an array\n  </td>\n</tr>\n<tr>\n  <td>\n  fileType\n  </td>\n  <td>string | array</td>\n  <td>-</td>\n  <td>\n\n  ```js\n  const fileType = 'obj'\n  /* or */\n  const fileType = ['obj', 'gltf']\n  ```\n\n  </td>\n  <td>\n  \n  File type is the 3d model(s) file extension, is used for filePath(http url) without file extensions. Is used together with filePath. If filePath is an array, this parameter must be an array.\n  </td>\n</tr>\n<tr>\n  <td>\n  mtlPath\n  </td>\n  <td>string | array</td>\n  <td>-</td>\n  <td>\n\n  ```js\n  const mltPath = './models/tree.mlt'\n  /* or */\n  const mltPath = [\n    './models/tree.mlt',\n    './models/building.mlt'\n  ]\n  ```\n\n  </td>\n  <td>\n\n  Material path, supports multiple materials to be loaded together, set this parameter to an array, you must set **filePath** to an array\n  </td>\n</tr>\n<tr>\n  <td>\n  textureImage\n  </td>\n  <td>string | array</td>\n  <td>-</td>\n  <td>\n\n  ```js\n  const textureImage = './texture/tree.jpg'\n  /* or */\n  const textureImage = [\n    './texture/tree.jpg',\n    null, \n    './building.png'\n  ]\n  ```\n\n  </td>\n  <td>\n\n  jpg/png texture, if is array, **filePath** must be set to an array\n  </td>\n</tr>\n<tr>\n  <td>\n  width\n  </td>\n  <td>number</td>\n  <td>parent element width</td>\n  <td>100</td>\n  <td>\n  Scene width\n  </td>\n</tr>\n<tr>\n  <td>\n  height\n  </td>\n  <td>number</td>\n  <td>parent element height</td>\n  <td>100</td>\n  <td>\n  Scene height\n  </td>\n</tr>\n<tr>\n  <td>\n  position\n  </td>\n  <td>object | array</td>\n  <td>{x:0, y:0, z:0}</td>\n  <td>\n  \n  ```js\n  const position = {x:0, y:0, z:0}\n  // or\n  const position = [\n    {x:10, y:10, z:10},\n    {x:50, y:50, z:50}\n  ]\n  ```\n\n  </td>\n  <td>\n  Model position coordinates, position use array type when filePath is an array\n  </td>\n</tr>\n<tr>\n  <td>\n  rotation\n  </td>\n  <td>object | array</td>\n  <td>{x:0, y:0, z:0}</td>\n  <td>\n  \n  ```js\n  const rotation = {x:0, y:0, z:0}\n  // or\n  const rotation = [\n    {x: 10, y:20, z:30},\n    {x: 0, y: 16, z: 20}\n  ]\n  ```\n\n  </td>\n  <td>\n  Model rotation coordinates, rotation use array type when filePath is an array\n  </td>\n</tr>\n<tr>\n  <td>\n  cameraPosition\n  </td>\n  <td>object</td>\n  <td>{x:0, y:0, z:0}</td>\n  <td>\n  \n  ```js\n  const cameraPosition = {x:0, y:0, z:0}\n  ```\n\n  </td>\n  <td>\n  Camera position coordinates\n  </td>\n</tr>\n<tr>\n  <td>\n  cameraRotation\n  </td>\n  <td>object</td>\n  <td>{x:0, y:0, z:0}</td>\n  <td>\n  \n  ```js\n  const cameraRotation = {x:0, y:0, z:0}\n  ```\n\n  </td>\n  <td>\n  Camera rotation coordinates\n  </td>\n</tr>\n<tr>\n  <td>\n  scale\n  </td>\n  <td>object | array</td>\n  <td>{x:1, y:1, z:1}</td>\n  <td>\n  \n  ```js\n  const scale = {x:1, y:2, z:1}\n  // or\n  const scale = [\n    {x:1, y:2, z:1},\n    {x:0.5, y:0.5, z:0.5}\n  ]\n  ```\n\n  </td>\n  <td>\n  Model scale, scale use array type when filePath is an array\n  </td>\n</tr>\n<tr>\n  <td>\n  lights\n  </td>\n  <td>array</td>\n  <td>[{\n        type: \"AmbientLight\",\n        color: 0xaaaaaa,\n      },\n      {\n        type: \"DirectionalLight\",\n        position: { x: 1, y: 1, z: 1 },\n        color: 0xffffff,\n        intensity: 0.8,\n      }]</td>\n  <td>\n  \n  ```js\n  const lights = [\n    { \n      type: \"AmbientLight\", \n      color: \"red\", \n    }, \n    { \n      type: \"DirectionalLight\", \n      position: { x: 100, y: 10, z: 100 }, \n      color: \"green\", \n      intensity: 0.8, \n    }, \n    { \n      type: \"PointLight\", \n      color: \"#000000\", \n      position: { x: 200, y: -200, z: 100 }, \n      intensity: 1 \n    }, \n    { \n      type: \"HemisphereLight\",\n      skyColor: \"#00FF00\",\n      groundColor: \"#000000\",\n      position: { x: 200, y: -200, z: 100 }\n    }\n  ]\n  ```\n\n  </td>\n  <td>\n  Lights is array, type AmbientLight | DirectionalLight | PointLight | HemisphereLight\n  </td>\n</tr>\n<tr>\n  <td>\n  backgroundColor\n  </td>\n  <td>number | string</td>\n  <td>0xffffff</td>\n  <td>\n  \n  ```js\n  const bgColor = 0xff00ff\n  /* or */\n  const bgColor = 'red'\n  /* or */\n  const bgColor = '#000000'\n  /* or */\n  const bgColor = 'rgba(0, 0, 0, 0.5)'\n  ```\n\n  </td>\n  <td>\n  Scene background color\n  </td>\n</tr>\n<tr>\n  <td>\n  backgroundAlpha\n  </td>\n  <td>number</td>\n  <td>1</td>\n  <td>\n  \n  ```js\n  const bgAlpha = 0.5\n  ```\n\n  </td>\n  <td>\n  Background transparency. value range 0-1\n  </td>\n</tr>\n<tr>\n  <td>\n  controlsOptions\n  </td>\n  <td>object</td>\n  <td>-</td>\n  <td>-</td>\n  <td>\n\n  Control parameter [OrbitControls Properties](https://threejs.org/docs/#examples/en/controls/OrbitControls)\n  </td>\n</tr>\n<tr>\n  <td>\n  crossOrigin\n  </td>\n  <td>string</td>\n  <td>anonymous</td>\n  <td>anonymous | use-credentials</td>\n  <td>\n  Cross-domain configuration.\n  </td>\n</tr>\n<tr>\n  <td>\n  requestHeader\n  </td>\n  <td>object</td>\n  <td>anonymous</td>\n  <td>\n  \n  ```js\n  const headers = { \n    'Authorization': 'Bearer token'\n  }\n  ```\n\n  </td>\n  <td>\n  Set request header.\n  </td>\n</tr>\n<tr>\n  <td>\n  outputEncoding\n  </td>\n  <td>string</td>\n  <td>linear</td>\n  <td>linear or sRGB</td>\n  <td>\n\n  linear is LinearEncoding, sRGB is sRGBEncoding (sRGBEncoding can restore material color better).\n  Renderer's output encoding [WebGLRenderer OutputEncoding](https://threejs.org/docs/index.html#api/en/renderers/WebGLRenderer.outputEncoding)\n  </td>\n</tr>\n<tr>\n  <td>\n  webGLRendererOptions\n  </td>\n  <td>object</td>\n  <td>{ antialias: true, alpha: true }</td>\n  <td>-</td>\n  <td>\n\n  WebGLRenderer options [WebGLRenderer Parameters](https://threejs.org/docs/index.html#api/zh/renderers/WebGLRenderer)\n  </td>\n</tr>\n<tr>\n  <td>\n  showFps\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  Show stats infomation\n  </td>\n</tr>\n<tr>\n  <td>\n  clearScene\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>Clear scene</td>\n</tr>\n<tr>\n  <td>\n  parallelLoad\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n  \n  Enable/disable parallel load models (useful only for multi-model loading). **Use this attribute, the process event will be unpredictable**\n  </td>\n</tr>\n<tr>\n  <td>\n  labels\n  </td>\n  <td>array</td>\n  <td>-</td>\n  <td>\n  \n  ```js\n  const labels = [\n    {\n      image: \"\", \n      text: \"\", \n      textStyle: { \n        fontFamily: \"Arial\", \n        fontSize: 18, \n        fontWeight: \"normal\", \n        lineHeight: 1, \n        color: \"#ffffff\", \n        borderWidth: 8, \n        borderRadius: 4, \n        borderColor: \"rgba(0,0,0,1)\",\n        backgroundColor: \"rgba(0, 0, 0, 1)\" \n      }, \n      position: {x:0, y:0, z:0}, \n      scale:{x:1, y:1, z:0}, \n      sid: null\n    }\n  ]\n  ```\n\n  </td>\n  <td>\n  \n  Add an image/text label and set image to display the image label. Set text to display text labels. Text styles can be set using textStyle. For examples, see the [examples/add-label.vue](./src/examples/add-label.vue) file\n  </td>\n</tr>\n<tr>\n  <td>\n  autoPlay\n  </td>\n  <td>boolean</td>\n  <td>true</td>\n  <td>-</td>\n  <td>\n  Play/stop the 3d model animations\n  </td>\n</tr>\n<tr>\n  <td>\n  enableDraco\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  Load the Gltf Draco model, you need to enable Draco decryption. After the Draco decryption library is enabled, you need to [download Draco decryption library](https://github.com/king2088/vue-3d-loader/blob/master/public/assets/draco.7z) and put it into the default directory assets. The default directory is assets/draco/gltf/. If you want to change the default draco directory, use <i>dracoDir</i> parameter. [About draco and threeJS](https://threejs.org/docs/index.html?q=draco#examples/en/loaders/DRACOLoader)\n  </td>\n</tr>\n<tr>\n  <td>\n  dracoDir\n  </td>\n  <td>string</td>\n  <td>assets/draco/gltf/</td>\n  <td>-</td>\n  <td>\n  Draco decryption library default directory, you can modified it.\n  </td>\n</tr>\n<tr>\n  <td>\n  intersectRecursive\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  If true, it also checks all descendants. Otherwise it only checks intersection with the object.\n  </td>\n</tr>\n<tr>\n  <td>\n  enableDamping\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  Set [enableDamping](https://threejs.org/docs/index.html#examples/zh/controls/OrbitControls.enableDamping) to true to enable damping (inertia), which can be used to give a sense of weight to the controls.\n  </td>\n</tr>\n<tr>\n  <td>\n  dampingFactor\n  </td>\n  <td>number</td>\n  <td>-</td>\n  <td>-</td>\n  <td>\n\n  The damping inertia used if enableDamping is set to true. [dampingFactor](https://threejs.org/docs/index.html#examples/zh/controls/OrbitControls.dampingFactor)\n  </td>\n</tr>\n<tr>\n  <td>\n  verticalCtrl\n  </td>\n  <td>boolean | object</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  true，only enable vertical rotation of the camera\n  </td>\n</tr>\n<tr>\n  <td>\n  horizontalCtrl\n  </td>\n  <td>boolean | object</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  true，only enable horizontal rotation of the camera\n  </td>\n</tr>\n<tr>\n  <td>\n  plyMaterial\n  </td>\n  <td>string</td>\n  <td>MeshStandardMaterial</td>\n  <td>-</td>\n  <td>\n\n  Value only support `MeshStandardMaterial` and `MeshBasicMaterial`. For ply model. [MeshStandardMaterial doc](https://threejs.org/docs/#api/en/materials/MeshStandardMaterial).[MeshBasicMaterial doc](https://threejs.org/docs/?q=MeshBasicMaterial#api/en/materials/MeshBasicMaterial).\n  </td>\n</tr>\n<tr>\n  <td>\n  enableAxesHelper\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  Enable or show axes\n  </td>\n</tr>\n<tr>\n  <td>\n  axesHelperSize\n  </td>\n  <td>number</td>\n  <td>100</td>\n  <td>-</td>\n  <td>\n\n  Axes size\n  </td>\n</tr>\n<tr>\n  <td>\n  enableGridHelper\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  Enable or show grid\n  </td>\n</tr>\n<tr>\n  <td>\n  minDistance\n  </td>\n  <td>float</td>\n  <td>0</td>\n  <td>-</td>\n  <td>\n\n  How far you can dolly in.\n  </td>\n</tr>\n<tr>\n  <td>\n  maxDistance\n  </td>\n  <td>float</td>\n  <td>Infinity</td>\n  <td>-</td>\n  <td>\n\n  How far you can dolly out.\n  </td>\n</tr>\n<tr>\n  <td>pointLightFollowCamera</td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  Point light follow camera.\n  </td>\n</tr>\n</table>\n\n### Events\n\n| event                        | description                                                          |\n| ---------------------------- | -------------------------------------------------------------------- |\n| mousedown(event, intersects) | mouse down, intersect: currently intersecting objects                |\n| mousemove(event, intersects) | mouse move, intersect: currently intersecting objects                |\n| mouseup(event, intersects)   | mouse up, intersect: currently intersecting objects                  |\n| click(event, intersects)     | click, intersect: currently intersecting objects                     |\n| load                         | load model event                                                     |\n| process(event, fileIndex)    | loading progress, fileIndex: the index of the currently loaded model |\n| error(event)                 | error event                                                          |\n\n### Example\n\n#### 1. Load a 3D model\n\nsupports dae/fbx/gltf(glb)/obj/ply/stl models\n\n```vue\n<!-- fbx model -->\n<vue3dLoader\n  filePath=\"models/collada/stormtrooper/stormtrooper.dae\"\n></vue3dLoader>\n<!-- obj model -->\n<vue3dLoader filePath=\"/obj/1.obj\"></vue3dLoader>\n```\n\n#### 2. Loading multiple models in the same scene\n\n```vue\n<!-- \n    Load multiple models of different type,\n    support for setting position, scale,\n    and rotation for each model\n-->\n<template>\n  <div class=\"check-box\">\n    <input type=\"checkbox\" @change=\"change($event, 'position')\" checked /> Set\n    position\n    <input type=\"checkbox\" @change=\"change($event, 'rotation')\" checked /> Set\n    rotation\n    <input type=\"checkbox\" @change=\"change($event, 'scale')\" checked /> Set\n    scale\n  </div>\n  <vue3dLoader\n    :filePath=\"filePath\"\n    :position=\"position\"\n    :rotation=\"rotation\"\n    :scale=\"scale\"\n    :cameraPosition=\"{ x: -0, y: 0, z: -500 }\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst filePath = ref();\nfilePath.value = [\n  \"/models/fbx/Samba Dancing.fbx\",\n  \"/models/collada/pump/pump.dae\",\n];\nconst position = ref();\nposition.value = [\n  { x: 0, y: 0, z: 0 },\n  { x: 100, y: 100, z: 100 },\n];\nconst rotation = ref();\nrotation.value = [\n  { x: 0, y: 0, z: 0 },\n  { x: 10, y: 1, z: 1 },\n];\nconst scale = ref();\nscale.value = [\n  { x: 0.4, y: 0.4, z: 0.4 },\n  { x: 0.8, y: 0.8, z: 0.8 },\n];\n\nfunction change(event: any, type: string) {\n  const value = event.target.checked;\n  switch (type) {\n    case \"position\":\n      value\n        ? (position.value = [\n            { x: 0, y: 0, z: 0 },\n            { x: 100, y: 100, z: 100 },\n          ])\n        : (position.value = []);\n      break;\n    case \"rotation\":\n      value\n        ? (rotation.value = [\n            { x: 0, y: 0, z: 0 },\n            { x: 10, y: 1, z: 1 },\n          ])\n        : (rotation.value = []);\n      break;\n    case \"scale\":\n      value\n        ? (scale.value = [\n            { x: 0.4, y: 0.4, z: 0.4 },\n            { x: 0.8, y: 0.8, z: 0.8 },\n          ])\n        : (scale.value = []);\n      break;\n  }\n}\n</script>\n```\n\n#### 3. Material and texture\n\n```vue\n<!-- obj and mtl material -->\n<vue3dLoader filePath=\"/obj/1.obj\" mtlPath=\"/obj/1.mtl\"></vue3dLoader>\n<!-- fbx and png texture -->\n<vue3dLoader filePath=\"/fbx/1.fbx\" textureImage=\"/fbx/1.png\"></vue3dLoader>\n```\n\n#### 4. Background color and transparency\n\n```vue\n<vue3dLoader\n  filePath=\"/fbx/1.fbx\"\n  :backgroundAlpha=\"0.5\"\n  backgroundColor=\"red\"\n></vue3dLoader>\n```\n\n#### 5. Controls\n\n```vue\n<template>\n  <div class=\"controls\">\n    <div class=\"buttons\">\n      <!-- Disable right-click drag -->\n      <button @click=\"enablePan = !enablePan\">\n        {{ enablePan ? \"disable\" : \"enable\" }} translation\n      </button>\n      <!-- Disable zoom -->\n      <button @click=\"enableZoom = !enableZoom\">\n        {{ enableZoom ? \"disable\" : \"enable\" }} zoom\n      </button>\n      <!-- Disable rotation -->\n      <button @click=\"enableRotate = !enableRotate\">\n        {{ enableRotate ? \"disable\" : \"enable\" }} rotation\n      </button>\n    </div>\n    <vue3dLoader\n      :filePath=\"'/models/collada/elf/elf.dae'\"\n      :controlsOptions=\"{\n        enablePan,\n        enableZoom,\n        enableRotate,\n      }\"\n      :cameraPosition=\"{ x: 0, y: -10, z: 13 }\"\n    />\n  </div>\n</template>\n<script setup lang=\"ts\">\n  import { ref } from \"vue\";\n  const enablePan = ref(true);\n  const enableZoom = ref(true);\n  const enableRotate = ref(true);\n</script>\n```\n\n#### 6. Rotate model\n\n```vue\n<template>\n  <vue3dLoader\n    :rotation=\"rotation\"\n    @load=\"onLoad()\"\n    filePath=\"/models/collada/elf/elf.dae\"\n  />\n</template>\n<script setup lang=\"ts\">\n  import { ref } from \"vue\";\n  const rotation = ref();\n  rotation.value = {\n    x: -Math.PI / 2,\n    y: 0,\n    z: 0,\n  };\n  function onLoad() {\n    rotate();\n  }\n  function rotate() {\n    requestAnimationFrame(rotate);\n    rotation.value.z -= 0.01;\n  }\n</script>\n```\n\n#### 7. Events\n\n```vue\n<template>\n  <vue3dLoader filePath=\"/models/ply/Lucy100k.ply\" @mousemove=\"onMouseMove\" />\n</template>\n<script setup lang=\"ts\">\n  import { ref } from \"vue\";\n  const object = ref(null);\n  function onMouseMove(event: MouseEvent, intersected: any) {\n    if (object.value) {\n      (object.value as any).material.color.setStyle(\"#fff\");\n    }\n    if (intersected) {\n      object.value = intersected.object;\n      (object.value as any).material.color.setStyle(\"#13ce66\");\n    }\n  }\n</script>\n```\n\n#### 8. Loader draco model\n\nNeed to download Draco repository storage with local static folder of your project, download url: <https://github.com/king2088/vue-3d-loader/blob/master/public/assets/draco.7z>\n\n```vue\n<template>\n  <vue3dLoader\n    filePath=\"/models/gltf/LittlestTokyo.glb\"\n    :cameraPosition=\"{ x: 10, y: 700, z: 1000 }\"\n    :enableDraco=\"true\"\n    dracoDir=\"/draco/\"\n    outputEncoding=\"sRGB\"\n  />\n</template>\n```\n\n#### 9. More demos code\n\n[Click here to see more demo code](https://github.com/king2088/vue-3d-loader/tree/master/src/examples)\n\n### Docker deploy examples\n```shell\n  docker build -t vue/vue-3d-loader .\n  # docker run\n  docker run -p 8010:80 vue/vue-3d-loader\n```\n\n### Coming soon\n\n- [x] Supports Vue3\n\n### Bugs\n\n[issues](https://github.com/king2088/vue-3d-loader/issues)\n\n### Donate\n\n![wxPay](/images/wxpay.png)\n\n![aliPay](/images/alipay.png)\n\n### Thanks\n\nThis plugin is inseparable from [vue-3d-model](https://github.com/hujiulong/vue-3d-model)\n"
  },
  {
    "path": "readme_CN.md",
    "content": "# vue-3d-loader\n\nvueJS + threeJS整合的一个3d展示组件。  \n\n支持.dae/.fbx/.gltf/.glb/.obj/.ply/.stl/.json，并支持同一个场景导入多个不同3D模型，支持mtl材质以及jpg/png等图片纹理\n\n[![Version](https://img.shields.io/npm/v/vue-3d-loader.svg)](https://www.npmjs.com/package/vue-3d-loader) [![License](https://img.shields.io/npm/l/vue-3d-loader.svg)](https://www.npmjs.com/package/vue-3d-loader) [![Downloads](https://img.shields.io/npm/dt/vue-3d-loader.svg)](https://www.npmjs.com/package/vue-3d-loader)\n\n[English](./readme.md)\n\n文档：<https://king2088.github.io/vue-3d-loader-docs/zh/>\n\n演示动画\n\n![demo gif image](./demo.gif)\n\nvue3请安装**2.0.0**及以上版本，vue2请安装**1.x.x**版本\n\n## 功能支持列表\n\n- 加载单个3D模型\n- 同时加载多个3D模型\n- 同时加载多个不同类型3D模型\n- 加载Draco压缩gltf模型(使用方法请查看API)\n- 支持自定义文件类型（用于无文件后缀名url）\n- 设置场景宽高\n- 设置材质及纹理\n- 交互控制\n- 鼠标事件\n- 灯光\n- 相机位置及旋转\n- 添加标注点\n\n## 安装\n\n```shell\nnpm i vue-3d-loader -S\n```\n\n或\n\n```shell\nyarn add vue-3d-loader\n```\n\n## 使用\n\n全局使用，在入口文件中全局安装，代码如下：\n\n```js\n/* vue2 */\nimport vue3dLoader from \"vue-3d-loader\";\nVue.use(vue3dLoader)\n\n/* vue3 */\nimport vue3dLoader from \"vue-3d-loader\";\ncreateApp(App).use(vue3dLoader).mount('#app')\n```\n\n非全局使用，在Vue文件中使用如下代码:\n\n```js\nimport { vue3dLoader } from \"vue-3d-loader\"; // 注意 vue3dLoader 写在 {...} 内\n```\n\n在组件中使用标签`<vue3dLoader></vue3dLoader>`\n\n```vue\n<vue3dLoader\n  :height=\"200\"\n  :showFps=\"true\"\n  :filePath=\"['/fbx/1.fbx', '/obj/2.obj', '/gltf/3.gltf']\"\n  :mtlPath=\"[null, '/obj/2.mtl', null]\"\n  :backgroundColor=\"0xff00ff\"\n></vue3dLoader>\n```\n\n## API\n\n### 属性\n\n<table>\n<tr>\n  <th>属性名</th>\n  <th style=\"min-width:100px\">类型</th>\n  <th>默认值</th>\n  <th>值</th>\n  <th>描述</th>\n</tr>\n<tr>\n  <td>\n  filePath\n  </td>\n  <td>string | array</td>\n  <td>-</td>\n  <td style=\"font-size: 12px\">\n\n  ```js\n  const filePath = './models/tree.obj'\n  /* or */\n  const filePath = [\n    './models/tree.obj',\n    './models/building.obj'\n  ]\n  ```\n\n  </td>\n  <td>\n  \n  文件路径，支持多个文件一起加载，注意：如果每个文件对应一个材质，需要将材质**mtlPath**设置为数组。图片纹理也一样需要设置**textureImage**为数组\n  </td>\n</tr>\n<tr>\n  <td>\n  fileType\n  </td>\n  <td>string | array</td>\n  <td>-</td>\n  <td>\n\n  ```js\n  const fileType = 'obj'\n  /* or */\n  const fileType = ['obj', 'gltf']\n  ```\n\n  </td>\n  <td>\n  \n  文件类型，主要用于无法判断3d模型文件后缀名的url地址，与filePath一起使用，当filePath为数组时，此选项必须为数组\n  </td>\n</tr>\n<tr>\n  <td>\n  mtlPath\n  </td>\n  <td>string | array</td>\n  <td>-</td>\n  <td style=\"font-size: 12px\">\n\n  ```js\n  const mltPath = './models/tree.mlt'\n  /* or */\n  const mltPath = [\n    './models/tree.mlt', \n    './models/building.mlt'\n  ]\n  ```\n\n  </td>\n  <td>\n\n  .mtl材质路径，支持多个材质一起加载，设置此参数为数组，必须设置**filePath**为数组\n  </td>\n</tr>\n<tr>\n  <td>\n  textureImage\n  </td>\n  <td>string | array</td>\n  <td>-</td>\n  <td style=\"font-size: 12px\">\n\n  ```js\n  const textureImage = './texture/tree.jpg'\n  /* or */\n  const textureImage = [\n    './texture/tree.jpg'\n    ,null,\n    './building.png'\n  ]\n  ```\n\n  </td>\n  <td>\n\n  jpg/png纹理加载，与**filePath**一一对应，为数组时，必须设置**filePath**为数组\n  </td>\n</tr>\n<tr>\n  <td>\n  width\n  </td>\n  <td>number</td>\n  <td>parent element width</td>\n  <td>100</td>\n  <td>\n  场景宽度\n  </td>\n</tr>\n<tr>\n  <td>\n  height\n  </td>\n  <td>number</td>\n  <td>parent element height</td>\n  <td>100</td>\n  <td>\n  场景高度\n  </td>\n</tr>\n<tr>\n  <td>\n  position\n  </td>\n  <td>object | array</td>\n  <td>{x:0, y:0, z:0}</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const position = {x:0, y:0, z:0}\n  // or\n  const position = [\n    {x:10, y:10, z:10},\n    {x:50, y:50, z:50}\n  ]\n  ```\n\n  </td>\n  <td>\n  模型位置坐标，filePath类型为array时可用array\n  </td>\n</tr>\n<tr>\n  <td>\n  rotation\n  </td>\n  <td>object | array</td>\n  <td>{x:0, y:0, z:0}</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const rotation = {x:0, y:0, z:0}\n  // or\n  const rotation = [\n    {x: 10, y:20, z:30},\n    {x: 0, y: 16, z: 20}\n  ]\n  ```\n\n  </td>\n  <td>\n  模型旋转坐标，filePath类型为array时可用array\n  </td>\n</tr>\n<tr>\n  <td>\n  cameraPosition\n  </td>\n  <td>object</td>\n  <td>{x:0, y:0, z:0}</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const cameraPosition = {x:0, y:0, z:0}\n  ```\n\n  </td>\n  <td>\n  摄像机位置坐标\n  </td>\n</tr>\n<tr>\n  <td>\n  cameraRotation\n  </td>\n  <td>object</td>\n  <td>{x:0, y:0, z:0}</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const cameraRotation = {x:0, y:0, z:0}\n  ```\n\n  </td>\n  <td>\n  摄像机旋转坐标\n  </td>\n</tr>\n<tr>\n  <td>\n  scale\n  </td>\n  <td>object | array</td>\n  <td>{x:1, y:1, z:1}</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const scale = {x:1, y:2, z:1}\n  // or\n  const scale = [\n    {x:1, y:2, z:1},\n    {x:0.5, y:0.5, z:0.5}\n  ]\n  ```\n\n  </td>\n  <td>\n  模型比例，filePath类型为array时可用array\n  </td>\n</tr>\n<tr>\n  <td>\n  lights\n  </td>\n  <td>array</td>\n  <td>[{\n        type: \"AmbientLight\",\n        color: 0xaaaaaa,\n      },\n      {\n        type: \"DirectionalLight\",\n        position: { x: 1, y: 1, z: 1 },\n        color: 0xffffff,\n        intensity: 0.8,\n      }]</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const lights = [\n    { \n      type: \"AmbientLight\", \n      color: \"red\", \n    }, \n    { \n      type: \"DirectionalLight\", \n      position: { x: 100, y: 10, z: 100 }, \n      color: \"green\", \n      intensity: 0.8, \n    }, \n    { \n      type: \"PointLight\", \n      color: \"#000000\", \n      position: { x: 200, y: -200, z: 100 }, \n      intensity: 1 \n    }, \n    { \n      type: \"HemisphereLight\",\n      skyColor: \"#00FF00\",\n      groundColor: \"#000000\",\n      position: { x: 200, y: -200, z: 100 }\n    }\n  ]\n  ```\n\n  </td>\n  <td>\n  灯光为数组，type为 环境光(AmbientLight) | 方向光(DirectionalLight) | 点光(PointLight) | 半球光(HemisphereLight)\n  </td>\n</tr>\n<tr>\n  <td>\n  backgroundColor\n  </td>\n  <td>number | string</td>\n  <td>0xffffff</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const bgColor = 0xff00ff\n  /* or */\n  const bgColor = 'red'\n  /* or */\n  const bgColor = '#000000'\n  /* or */\n  const bgColor = 'rgba(0, 0, 0, 0.5)'\n  ```\n\n  </td>\n  <td>\n  场景背景色\n  </td>\n</tr>\n<tr>\n  <td>\n  backgroundAlpha\n  </td>\n  <td>number</td>\n  <td>1</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const bgAlpha = 0.5\n  ```\n\n  </td>\n  <td>\n  场景背景透明度, 值范围0-1\n  </td>\n</tr>\n<tr>\n  <td>\n  controlsOptions\n  </td>\n  <td>object</td>\n  <td>-</td>\n  <td>-</td>\n  <td>\n\n  控制参数 [OrbitControls Properties](https://threejs.org/docs/#examples/en/controls/OrbitControls)\n  </td>\n</tr>\n<tr>\n  <td>\n  crossOrigin\n  </td>\n  <td>string</td>\n  <td>anonymous</td>\n  <td>anonymous | use-credentials</td>\n  <td>\n  跨域配置\n  </td>\n</tr>\n<tr>\n  <td>\n  requestHeader\n  </td>\n  <td>object</td>\n  <td>anonymous</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const headers = { \n    'Authorization': 'Bearer token'\n  }\n  ```\n\n  </td>\n  <td>\n  设置请求头\n  </td>\n</tr>\n<tr>\n  <td>\n  outputEncoding\n  </td>\n  <td>string</td>\n  <td>linear</td>\n  <td>liner 或 sRGB</td>\n  <td>\n\n  linear 是 LinearEncoding 线性编码, sRGB 即 sRGBEncoding rgb模式编码（sRGBEncoding能更好的还原材质颜色）。\n  渲染器的输出编码 [WebGLRenderer OutputEncoding](https://threejs.org/docs/index.html#api/en/renderers/WebGLRenderer.outputEncoding)\n  </td>\n</tr>\n<tr>\n  <td>\n  webGLRendererOptions\n  </td>\n  <td>object</td>\n  <td>{ antialias: true, alpha: true }</td>\n  <td>-</td>\n  <td>\n\n  WebGLRenderer可选参数 [WebGLRenderer Parameters](https://threejs.org/docs/index.html#api/zh/renderers/WebGLRenderer)\n  </td>\n</tr>\n<tr>\n  <td>\n  showFps\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  显示FPS等信息\n  </td>\n</tr>\n<tr>\n  <td>\n  clearScene\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>清空场景中的内容</td>\n</tr>\n<tr>\n  <td>\n  parallelLoad\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n  \n  开启/关闭并行加载模型（仅在多模型下有效）**注意：使用此属性后，load进度process事件将不可预测**\n  </td>\n</tr>\n<tr>\n  <td>\n  labels\n  </td>\n  <td>array</td>\n  <td>-</td>\n  <td style=\"font-size: 12px\">\n  \n  ```js\n  const labels = [\n    {\n      image: \"\", \n      text: \"\", \n      textStyle: { \n        fontFamily: \"Arial\", \n        fontSize: 18, \n        fontWeight: \"normal\", \n        lineHeight: 1, \n        color: \"#ffffff\", \n        borderWidth: 8, \n        borderRadius: 4, \n        borderColor: \"rgba(0,0,0,1)\",\n        backgroundColor: \"rgba(0, 0, 0, 1)\" \n      }, \n      position: {x:0, y:0, z:0}, \n      scale:{x:1, y:1, z:0}, \n      sid: null\n    }\n  ]\n  ```\n\n  </td>\n  <td>\n  \n  添加图片/文字标签，设置image则显示图片标签。设置text显示文字标签，文字样式通过textStyle进行设置，样例可以查看[examples/add-label.vue](./src/examples/add-label.vue)文件\n  </td>\n</tr>\n<tr>\n  <td>\n  autoPlay\n  </td>\n  <td>boolean</td>\n  <td>true</td>\n  <td>-</td>\n  <td>\n  播放/停止动画\n  </td>\n</tr>\n<tr>\n  <td>\n  enableDraco\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  加载Gltf draco模型需开启draco解密，开启后需要[下载draco解密库](https://github.com/king2088/vue-3d-loader/blob/master/public/assets/draco.7z)放到默认目录assets中，默认目录为assets/draco/gltf/，如需修改默认目录，请查看参数<i>dracoDir</i>。[关于draco请查阅](https://threejs.org/docs/index.html?q=draco#examples/en/loaders/DRACOLoader)\n  </td>\n</tr>\n<tr>\n  <td>\n  dracoDir\n  </td>\n  <td>string</td>\n  <td>assets/draco/gltf/</td>\n  <td>-</td>\n  <td>\n  draco解密库默认目录，可自行修改\n  </td>\n</tr>\n<tr>\n  <td>\n  intersectRecursive\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  若为true，则同时也会检测所有物体的后代。否则将只会检测对象本身的相交部分。\n  </td>\n</tr>\n<tr>\n  <td>\n  enableDamping\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  [enableDamping](https://threejs.org/docs/index.html#examples/zh/controls/OrbitControls.enableDamping)设置为true以启用阻尼（惯性），这将给控制器带来重量感。\n  </td>\n</tr>\n<tr>\n  <td>\n  dampingFactor\n  </td>\n  <td>number</td>\n  <td>-</td>\n  <td>-</td>\n  <td>\n\n  enableDamping必须为true，此选项才有效。[dampingFactor](https://threejs.org/docs/index.html#examples/zh/controls/OrbitControls.dampingFactor)用于设置阻尼惯性大小。\n  </td>\n</tr>\n<tr>\n  <td>\n  verticalCtrl\n  </td>\n  <td>boolean | object</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  为true，仅能垂直旋转相机。\n  </td>\n</tr>\n<tr>\n  <td>\n  horizontalCtrl\n  </td>\n  <td>boolean | object</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  为true，仅能水平旋转相机。\n  </td>\n</tr>\n<tr>\n  <td>\n  plyMaterial\n  </td>\n  <td>string</td>\n  <td>MeshStandardMaterial</td>\n  <td>-</td>\n  <td>\n\n  值仅有两个 `MeshStandardMaterial` 和 `MeshBasicMaterial`. 用于ply模型. [MeshStandardMaterial相关文档](https://threejs.org/docs/#api/en/materials/MeshStandardMaterial).[MeshBasicMaterial相关文档](https://threejs.org/docs/?q=MeshBasicMaterial#api/en/materials/MeshBasicMaterial)\n  </td>\n</tr>\n<tr>\n  <td>\n  enableAxesHelper\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  开启并在场景中显示x,y,z轴\n  </td>\n</tr>\n<tr>\n  <td>\n  axesHelperSize\n  </td>\n  <td>number</td>\n  <td>100</td>\n  <td>-</td>\n  <td>\n\n  x,y,z轴的尺寸\n  </td>\n</tr>\n<tr>\n  <td>\n  enableGridHelper\n  </td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  开启并在场景中显示网格\n  </td>\n</tr>\n<tr>\n  <td>\n  minDistance\n  </td>\n  <td>float</td>\n  <td>0</td>\n  <td>-</td>\n  <td>\n\n  你能够将相机向内移动多少，其默认值为0\n  </td>\n</tr>\n<tr>\n  <td>\n  maxDistance\n  </td>\n  <td>float</td>\n  <td>Infinity</td>\n  <td>-</td>\n  <td>\n\n  你能够将相机向外移动多少，其默认值为Infinity\n  </td>\n</tr>\n<tr>\n  <td>pointLightFollowCamera</td>\n  <td>boolean</td>\n  <td>false</td>\n  <td>-</td>\n  <td>\n\n  开启点光源跟随相机\n  </td>\n</tr>\n</table>\n\n### 事件\n\n| event                        | description                            |\n| ---------------------------- | -------------------------------------- |\n| mousedown(event, intersects) | 鼠标按下, intersect:当前相交最近的物体 |\n| mousemove(event, intersects) | 鼠标移动, intersect:当前相交最近的物体 |\n| mouseup(event, intersects)   | 鼠标放开, intersect:当前相交最近的物体 |\n| click(event, intersects)     | 点击, intersect:当前相交最近的物体     |\n| load                         | 加载模型事件                           |\n| process(event, fileIndex)    | 加载进度, fileIndex:当前加载模型的索引 |\n| error(event)                 | 错误事件                               |\n\n### 使用样例\n\n#### 1. 加载一个3D模型\n\n目前支持dae/fbx/gltf(glb)/obj/ply/stl中任意一种\n\n```vue\n<!-- 加载fbx模型 -->\n<vue3dLoader filePath=\"models/collada/stormtrooper/stormtrooper.dae\"></vue3dLoader>\n<!-- 加载obj模型 -->\n<vue3dLoader filePath=\"/obj/1.obj\"></vue3dLoader>\n```\n\n#### 2. 同一个场景中加载多个模型\n\n```vue\n<!-- \n    可同时加载多个不同种类的模型,\n    支持单独设置每一个模型的位置/缩放/旋转\n-->\n<template>\n  <div class=\"check-box\">\n    <input type=\"checkbox\" @change=\"change($event, 'position')\" checked /> Set\n    position\n    <input type=\"checkbox\" @change=\"change($event, 'rotation')\" checked /> Set\n    rotation\n    <input type=\"checkbox\" @change=\"change($event, 'scale')\" checked /> Set\n    scale\n  </div>\n  <vue3dLoader\n    :filePath=\"filePath\"\n    :position=\"position\"\n    :rotation=\"rotation\"\n    :scale=\"scale\"\n    :cameraPosition=\"{ x: -0, y: 0, z: -500 }\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst filePath = ref();\nfilePath.value = [\n  \"/models/fbx/Samba Dancing.fbx\",\n  \"/models/collada/pump/pump.dae\",\n];\nconst position = ref();\nposition.value = [\n  { x: 0, y: 0, z: 0 },\n  { x: 100, y: 100, z: 100 },\n];\nconst rotation = ref();\nrotation.value = [\n  { x: 0, y: 0, z: 0 },\n  { x: 10, y: 1, z: 1 },\n];\nconst scale = ref();\nscale.value = [\n  { x: 0.4, y: 0.4, z: 0.4 },\n  { x: 0.8, y: 0.8, z: 0.8 },\n];\n\nfunction change(event: any, type: string) {\n  const value = event.target.checked;\n  switch (type) {\n    case \"position\":\n      value\n        ? (position.value = [\n            { x: 0, y: 0, z: 0 },\n            { x: 100, y: 100, z: 100 },\n          ])\n        : (position.value = []);\n      break;\n    case \"rotation\":\n      value\n        ? (rotation.value = [\n            { x: 0, y: 0, z: 0 },\n            { x: 10, y: 1, z: 1 },\n          ])\n        : (rotation.value = []);\n      break;\n    case \"scale\":\n      value\n        ? (scale.value = [\n            { x: 0.4, y: 0.4, z: 0.4 },\n            { x: 0.8, y: 0.8, z: 0.8 },\n          ])\n        : (scale.value = []);\n      break;\n  }\n}\n</script>\n```\n\n#### 3. 材质及纹理加载\n\n```vue\n<!-- obj加载mtl材质 -->\n<vue3dLoader filePath=\"/obj/1.obj\" mtlPath=\"/obj/1.mtl\" ></vue3dLoader>\n<!-- fbx图片纹理加载 -->\n<vue3dLoader filePath=\"/fbx/1.fbx\" textureImage=\"/fbx/1.png\" ></vue3dLoader>\n```\n\n#### 4. 背景颜色及透明度\n\n```vue\n<vue3dLoader filePath=\"/fbx/1.fbx\" :backgroundAlpha=\"0.5\" backgroundColor=\"red\"></vue3dLoader>\n```\n\n#### 5. 交互控制controls\n\n```vue\n<template>\n  <div class=\"controls\">\n    <div class=\"buttons\">\n      <!-- 禁止右键拖动 -->\n      <button @click=\"enablePan = !enablePan\">\n        {{ enablePan ? \"disable\" : \"enable\" }} translation\n      </button>\n      <!-- 禁止缩放 -->\n      <button @click=\"enableZoom = !enableZoom\">\n        {{ enableZoom ? \"disable\" : \"enable\" }} zoom\n      </button>\n      <!-- 禁止旋转 -->\n      <button @click=\"enableRotate = !enableRotate\">\n        {{ enableRotate ? \"disable\" : \"enable\" }} rotation\n      </button>\n    </div>\n    <vue3dLoader\n      :filePath=\"'/models/collada/elf/elf.dae'\"\n      :controlsOptions=\"{\n        enablePan,\n        enableZoom,\n        enableRotate,\n      }\"\n      :cameraPosition=\"{ x: 0, y: -10, z: 13 }\"\n    />\n  </div>\n</template>\n<script setup lang=\"ts\">\n  import { ref } from \"vue\";\n  const enablePan = ref(true);\n  const enableZoom = ref(true);\n  const enableRotate = ref(true);\n</script>\n```\n\n#### 6. 旋转模型\n\n```vue\n<template>\n  <vue3dLoader\n    :rotation=\"rotation\"\n    @load=\"onLoad()\"\n    filePath=\"/models/collada/elf/elf.dae\"\n  />\n</template>\n<script setup lang=\"ts\">\n  import { ref } from \"vue\";\n  const rotation = ref();\n  rotation.value = {\n    x: -Math.PI / 2,\n    y: 0,\n    z: 0,\n  };\n  function onLoad() {\n    rotate();\n  }\n  function rotate() {\n    requestAnimationFrame(rotate);\n    rotation.value.z -= 0.01;\n  }\n</script>\n```\n\n#### 7. 事件\n\n```vue\n<template>\n  <vue3dLoader filePath=\"/models/ply/Lucy100k.ply\" @mousemove=\"onMouseMove\" />\n</template>\n<script setup lang=\"ts\">\n  import { ref } from \"vue\";\n  const object = ref(null);\n  function onMouseMove(event: MouseEvent, intersected: any) {\n    if (object.value) {\n      (object.value as any).material.color.setStyle(\"#fff\");\n    }\n    if (intersected) {\n      object.value = intersected.object;\n      (object.value as any).material.color.setStyle(\"#13ce66\");\n    }\n  }\n</script>\n```\n\n#### 8. 加载draco模型\n\n此功能需要先下载draco库存储与本地项目的静态文件夹内，才可以正常加载，下载地址：<https://github.com/king2088/vue-3d-loader/blob/master/public/assets/draco.7z>\n\n```vue\n<template>\n  <vue3dLoader\n    filePath=\"/models/gltf/LittlestTokyo.glb\"\n    :cameraPosition=\"{ x: 10, y: 700, z: 1000 }\"\n    :enableDraco=\"true\"\n    dracoDir=\"/draco/\"\n    outputEncoding=\"sRGB\"\n  />\n</template>\n```\n\n#### 9. 更多演示\n\n[点我查看更多演示代码](https://github.com/king2088/vue-3d-loader/tree/master/src/examples)\n\n### Docker部署examples\n```shell\n  docker build -t vue/vue-3d-loader .\n  # 运行docker\n  docker run -p 8010:80 vue/vue-3d-loader\n```\n\n### 即将到来\n\n- [x] 支持Vue3\n\n### bug提交\n\n[issues](https://github.com/king2088/vue-3d-loader/issues)\n\n### 捐助\n\n![微信支付](/images/wxpay.png)\n\n![支付宝支付](/images/alipay.png)\n\n### 感谢\n\n本插件参考[vue-3d-model](https://github.com/hujiulong/vue-3d-model)实现\n"
  },
  {
    "path": "scripts/build-types.js",
    "content": "const path = require(\"path\");\nconst fs = require(\"fs\");\nconst glob = require(\"fast-glob\");\nconst { Project } = require(\"ts-morph\");\nconst { parse, compileScript } = require(\"@vue/compiler-sfc\");\n\nlet index = 1;\n\nmain();\n\nasync function main() {\n  const project = new Project({\n    compilerOptions: {\n      declaration: true,\n      emitDeclarationOnly: true,\n      noEmitOnError: true,\n      allowJs: true,\n      outDir: \"dist/types\",\n    },\n    tsConfigFilePath: path.resolve(__dirname, \"../tsconfig.json\"),\n    skipAddingFilesFromTsConfig: true,\n  });\n\n  // get src/*.vue files and *.ts files\n  const files = await glob([\"src/3dLoader/*.vue\", \"src/index.ts\"]); // \"src/3dLoader/*.ts\"\n  const sourceFiles = [];\n\n  await Promise.all(\n    files.map(async (file) => {\n      if (/\\.vue$/.test(file)) {\n        // vue files use @vue/compiler-sfc to parse\n        const sfc = parse(await fs.promises.readFile(file, \"utf-8\"));\n        const { script, scriptSetup } = sfc.descriptor;\n        if (script || scriptSetup) {\n          let content = \"\";\n          let isTs = false;\n          if (script && script.content) {\n            content += script.content;\n            if (script.lang === \"ts\") isTs = true;\n          }\n          if (scriptSetup) {\n            const compiled = compileScript(sfc.descriptor, {\n              id: `${index++}`,\n            });\n            content += compiled.content;\n            if (scriptSetup.lang === \"ts\") isTs = true;\n          }\n          sourceFiles.push(\n            project.createSourceFile(file + (isTs ? \".ts\" : \".js\"), content)\n          );\n        }\n      } else {\n        // if ts file\n        sourceFiles.push(project.addSourceFileAtPath(file));\n      }\n    })\n  );\n  const diagnostics = project.getPreEmitDiagnostics();\n  console.log(project.formatDiagnosticsWithColorAndContext(diagnostics));\n  project.emitToMemory();\n  for (const sourceFile of sourceFiles) {\n    const emiOutput = sourceFile.getEmitOutput();\n    for (const outputFile of emiOutput.getOutputFiles()) {\n      let filePath = outputFile.getFilePath();\n      await fs.promises.mkdir(path.dirname(filePath), { recursive: true });\n      await fs.promises.writeFile(filePath, outputFile.getText(), \"utf-8\");\n    }\n  }\n}\n"
  },
  {
    "path": "src/3dLoader/loadModel.ts",
    "content": "import { Box3, Vector3, Mesh, MeshPhongMaterial, MeshStandardMaterial,MeshBasicMaterial, Object3D, ObjectLoader } from \"three\";\nimport { FBXLoader } from \"three/examples/jsm/loaders/FBXLoader\";\nimport { ColladaLoader } from \"three/examples/jsm/loaders/ColladaLoader\";\nimport { GLTFLoader } from \"three/examples/jsm/loaders/GLTFLoader\";\nimport { OBJLoader } from \"three/examples/jsm/loaders/OBJLoader\";\nimport { DDSLoader } from \"three/examples/jsm/loaders/DDSLoader\";\nimport { LoadingManager } from \"three/src/loaders/LoadingManager\";\nimport { PLYLoader } from \"three/examples/jsm/loaders/PLYLoader\";\nimport { STLLoader } from \"three/examples/jsm/loaders/STLLoader\";\nimport { MTLLoader } from \"three/examples/jsm/loaders/MTLLoader\";\nimport { TGALoader } from \"three/examples/jsm/loaders/TGALoader\";\nimport { DRACOLoader } from \"three/examples/jsm/loaders/DRACOLoader\";\n\nconst box: Box3 = new Box3();\nconst manager: LoadingManager = new LoadingManager();\nmanager.addHandler(/\\.dds$/i, new DDSLoader());\nmanager.addHandler(/\\.tga$/i, new TGALoader());\n\ninterface loaderObj {\n  loader: any;\n  getObject?: any;\n}\n\n// get box size\nfunction getSize(obj: Object3D) {\n  box.setFromObject(obj);\n  return box.getSize(new Vector3());\n}\n\n// get box center\nfunction getCenter(obj: Object3D) {\n  box.setFromObject(obj);\n  return box.getCenter(new Vector3());\n}\n\nfunction getExtension(str: string) {\n  const pathSplit = str.split(\".\");\n  if (pathSplit.length <= 1) {\n    return \"\";\n  } else {\n    let extension: any = pathSplit.pop();\n    extension = extension.toLowerCase();\n    return extension;\n  }\n}\n\n// auto select model loader\nfunction getLoader(filePath: string, fileType: string, isDraco: boolean, plyMaterial: string, dracoDir?: string) {\n  let fileExtension: string\n  if (fileType) {\n    // Custom file extension\n    fileExtension = fileType\n  } else {\n    // Get file extension\n    fileExtension = getExtension(filePath);\n  }\n  // gltf type has two formats, .gltf and .glb, so make fileExtension glb to gltf\n  if (fileExtension === \"glb\") {\n    fileExtension = \"gltf\";\n  }\n  let obj: loaderObj = {\n    loader: null,\n    getObject: null\n  } // obj {loader, getObject}\n  switch (fileExtension) {\n    case \"dae\":\n      obj = {\n        loader: new ColladaLoader(manager),\n        getObject: (collada: any) => {\n          return collada.scene;\n        },\n      };\n      break;\n    case \"fbx\":\n      obj = {\n        loader: new FBXLoader(manager),\n      };\n      break;\n    case \"gltf\":\n      obj = {\n        loader: new GLTFLoader(manager),\n        getObject: (gltf: any) => {\n          const object = gltf.scene\n          // resolve gltf animations lose\n          if (gltf.animations) {\n            object.animations = gltf.animations;\n          }\n          return object;\n        },\n      };\n      enableDraco(isDraco, obj, dracoDir)\n      break;\n    case \"obj\":\n      obj = {\n        loader: new OBJLoader(manager),\n      };\n      break;\n    case \"ply\":\n      obj = {\n        loader: new PLYLoader(manager),\n        getObject: (geometry: any) => { // geometry\n          geometry.computeVertexNormals();\n          // Set ply model material\n          return new Mesh(geometry, plyMaterial === 'MeshStandardMaterial' ? new MeshStandardMaterial() : new MeshBasicMaterial({ vertexColors: true }));\n        },\n      };\n      break;\n    case \"stl\":\n      obj = {\n        loader: new STLLoader(manager),\n        getObject: (geometry: any) => { // geometry\n          return new Mesh(geometry, new MeshPhongMaterial())\n        },\n      };\n      break;\n    case \"json\":\n      obj = {\n        loader: new ObjectLoader(manager),\n      };\n      break;\n  }\n  return obj;\n}\n\nfunction getMTLLoader() {\n  const mtlLoader = new MTLLoader(manager);\n  return mtlLoader;\n}\n\nfunction enableDraco(isDraco: boolean, obj: loaderObj, dir?: string) {\n  // draco loader\n  if (isDraco) {\n    const dracoLoader = new DRACOLoader()\n    dracoLoader.setDecoderPath(dir || \"assets/draco/gltf/\");\n    dracoLoader.setDecoderConfig({ type: \"js\" });\n    obj.loader.setDRACOLoader(dracoLoader);\n  }\n}\n\nexport {\n  getSize,\n  getCenter,\n  getLoader,\n  getMTLLoader\n}\n"
  },
  {
    "path": "src/3dLoader/vue3dLoader.vue",
    "content": "<template>\n  <div ref=\"containerElement\" class=\"viewer-container\">\n    <canvas ref=\"canvasElement\" class=\"viewer-canvas\" />\n  </div>\n</template>\n<script setup lang=\"ts\" name=\"vue3dLoader\">\nimport {\n  Object3D,\n  Vector2,\n  Vector3,\n  Color,\n  Scene,\n  Raycaster,\n  WebGLRenderer,\n  PerspectiveCamera,\n  AmbientLight,\n  PointLight,\n  HemisphereLight,\n  DirectionalLight,\n  LinearEncoding,\n  sRGBEncoding,\n  Texture,\n  TextureLoader,\n  AnimationMixer,\n  Clock,\n  Sprite,\n  SpriteMaterial,\n  WebGLRendererParameters,\n  AnimationClip,\n  Light,\n  AxesHelper,\n  GridHelper,\n  Group\n} from \"three\";\nimport { OrbitControls } from \"three/examples/jsm/controls/OrbitControls\";\nimport Stats from \"three/examples/jsm/libs/stats.module\";\nimport { getSize, getCenter, getLoader, getMTLLoader } from \"./loadModel\";\nimport {\n  defineProps,\n  onMounted,\n  ref,\n  withDefaults,\n  nextTick,\n  watch,\n  onBeforeUnmount,\n} from \"vue\";\n\nexport interface coordinates {\n  x: number;\n  y: number;\n  z: number;\n}\n\nexport interface controlsValue {\n  min: number;\n  max: number;\n}\n\ntype plyMaterial = 'MeshBasicMaterial' | 'MeshStandardMaterial';\ntype encode = \"linear\" | \"sRGB\";\ninterface Props {\n  filePath: string | string[];\n  // file type is the 3d model(s) file extension, is used for filePath(remote url) without file name extensions\n  fileType?: string | string[];\n  width?: number;\n  height?: number;\n  position?: coordinates | coordinates[];\n  rotation?: coordinates | coordinates[];\n  scale?: coordinates | coordinates[];\n  lights?: object[];\n  cameraPosition?: coordinates;\n  cameraRotation?: coordinates;\n  cameraUp?: coordinates;\n  cameraLookAt?: coordinates;\n  backgroundColor?: number | string;\n  backgroundAlpha?: number;\n  controlsOptions?: object;\n  crossOrigin?: string;\n  requestHeader?: object;\n  outputEncoding?: encode;\n  webGLRendererOptions?: object;\n  mtlPath?: string | string[];\n  showFps?: boolean;\n  textureImage?: string | string[];\n  clearScene?: boolean;\n  parallelLoad?: boolean;\n  labels?: object[];\n  autoPlay?: boolean;\n  enableDraco?: boolean;\n  dracoDir?: string;\n  intersectRecursive?: boolean;\n  enableDamping?: boolean;\n  dampingFactor?: number;\n  verticalCtrl?: boolean | controlsValue;\n  horizontalCtrl?: boolean | controlsValue;\n  plyMaterial?: plyMaterial;\n  enableAxesHelper?: boolean;\n  axesHelperSize?: number;\n  enableGridHelper?: boolean;\n  minDistance?: number; \n  maxDistance?: number;\n  pointLightFollowCamera?: boolean;\n}\n\nconst props = withDefaults(defineProps<Props>(), {\n  lights: () => {\n    return [\n      {\n        type: \"AmbientLight\",\n        color: 0xaaaaaa,\n      },\n      {\n        type: \"DirectionalLight\",\n        position: { x: 1, y: 1, z: 1 },\n        color: 0xffffff,\n        intensity: 0.8,\n      },\n    ];\n  },\n  cameraPosition: () => {\n    return { x: 0, y: 0, z: 0 };\n  },\n  backgroundColor: () => {\n    return 0xffffff;\n  },\n  backgroundAlpha: () => {\n    return 1;\n  },\n  crossOrigin: \"anonymous\",\n  outputEncoding: () => {\n    return \"linear\";\n  },\n  webGLRendererOptions: () => {\n    return {};\n  },\n  mtlPath: \"\",\n  showFps: false,\n  textureImage: \"\",\n  clearScene: false,\n  parallelLoad: false,\n  labels: () => {\n    return [];\n  },\n  autoPlay: true,\n  enableDraco: false,\n  intersectRecursive: false,\n  verticalCtrl: false,\n  horizontalCtrl: false,\n  plyMaterial: 'MeshStandardMaterial',\n  enableAxesHelper: false,\n  axesHelperSize: 100,\n  enableGridHelper: false,\n  minDistance: 0,\n  maxDistance: Infinity\n});\n\n// Non responsive variable\nlet object: any = null;\nconst raycaster = new Raycaster();\nconst mouse = new Vector2();\nconst camera = new PerspectiveCamera(45, 1, 0.1, 100000);\nconst clock = new Clock();\nlet scene: Scene = new Scene();\nlet renderer: WebGLRenderer = null as any;\nlet controls: OrbitControls = {} as any;\nlet allLights: Light[] = [];\nlet loader: any = null;\nlet requestAnimationId: number = 0;\nlet stats: any = null;\nlet mixers: AnimationMixer | AnimationMixer[] = null as any;\nlet textureLoader: any = null;\nlet axesHelper: AxesHelper = null as any;\nlet gridHelper: GridHelper = null as any;\n\n// responsive variable\nconst size = ref({ width: props.width || 0, height: props.height || 0 });\nconst loaderIndex = ref(0);\nconst objectPositionHasSet = ref(false);\nconst isMultipleModels = ref(false);\nconst containerElement = ref(null);\nconst canvasElement = ref(null);\n\nonMounted(() => {\n  init();\n});\n\nonBeforeUnmount(() => {\n  destroyScene();\n});\n\nwatch([() => props.autoPlay], () => {\n  playAnimations();\n});\n\nwatch([() => props.width, () => props.height], () => {\n  size.value = {\n    width: props.width || 0,\n    height: props.height || 0,\n  };\n});\n\nwatch([\n  () => props.enableAxesHelper,\n  () => props.axesHelperSize,\n  () => props.enableGridHelper\n], () => {\n  setAxesAndGridHelper();\n});\n\nwatch([() => props.minDistance, () => props.maxDistance], () => {\n  setVerticalHorizontalControls();\n});\n\n// deep watch\nwatch(\n  [\n    () => props.filePath,\n    () => props.fileType,\n    () => props.mtlPath,\n    () => props.clearScene,\n    () => props.backgroundAlpha,\n    () => props.backgroundColor,\n  ],\n  (valueArray) => {\n    if (valueArray[0] || valueArray[1]) {\n      resetScene();\n    }\n    if (valueArray[2]) {\n      loadModelSelect();\n    }\n    if (valueArray[3]) {\n      clearScene();\n    }\n    if (valueArray[4] || valueArray[5]) {\n      updateRenderer();\n    }\n  },\n  { deep: true }\n);\nwatch(\n  [\n    () => props.rotation,\n    () => props.position,\n    () => props.scale,\n    () => props.lights,\n  ],\n  (valueArray) => {\n    const attr = [\"rotation\", \"position\", \"scale\"];\n    valueArray.forEach((item, index) => {\n      if (index < 3 && item) {\n        setObjectAttribute(attr[index], item);\n      } else {\n        updateLights();\n      }\n    });\n  },\n  { deep: true }\n);\n\nwatch(\n  [() => size],\n  () => {\n    updateCamera(true);\n    updateRenderer();\n  },\n  { deep: true }\n);\n\nwatch(\n  [() => props.controlsOptions],\n  () => {\n    updateControls();\n  },\n  { deep: true }\n);\n\nwatch(\n  [() => props.cameraRotation, () => props.cameraPosition],\n  () => {\n    updateCamera();\n  },\n  { deep: true }\n);\n\nwatch(\n  [() => props.labels],\n  () => {\n    setSpriteLabel();\n  },\n  { deep: true }\n);\n\n// emit\nconst emit = defineEmits([\n  \"mousedown\",\n  \"mousemove\",\n  \"mouseup\",\n  \"click\",\n  \"dblclick\",\n  \"load\",\n  \"process\",\n  \"error\",\n]);\n\n// Dynamic reload filePath\nfunction resetScene() {\n  destroyScene();\n  init();\n}\n\nfunction destroyScene() {\n  if (requestAnimationId) {\n    cancelAnimationFrame(requestAnimationId);\n  }\n  if (renderer) {\n    renderer.dispose();\n  }\n  if (controls && Object.keys(controls).length > 0) {\n    controls.dispose();\n    controls = {} as any;\n  }\n  const el = containerElement.value as any;\n  el.removeEventListener(\"mousedown\", onMouseDown, false);\n  el.removeEventListener(\"mousemove\", onMouseMove, false);\n  el.removeEventListener(\"mouseup\", onMouseUp, false);\n  el.removeEventListener(\"click\", onClick, false);\n  el.removeEventListener(\"dblclick\", onDblclick, false);\n  window.removeEventListener(\"resize\", onResize, false);\n  object = null;\n  if (scene) {\n    scene.clear();\n  }\n}\n\nfunction init() {\n  const {\n    filePath,\n    outputEncoding,\n    webGLRendererOptions,\n    showFps,\n    enableDamping,\n    dampingFactor,\n    labels\n  } = props;\n  if (filePath && typeof filePath === \"object\") {\n    isMultipleModels.value = true;\n  }\n  const el: any = containerElement.value;\n  setContainerElementStyle(el);\n  // init canvas width and height\n  onResize();\n  const WEB_GL_OPTIONS = { antialias: true, alpha: true };\n  const options: WebGLRendererParameters = Object.assign(\n    {},\n    WEB_GL_OPTIONS,\n    webGLRendererOptions,\n    {\n      canvas: canvasElement.value as any,\n    }\n  );\n  if (!renderer) {\n    renderer = new WebGLRenderer(options);\n    // renderer.hadowMapEnabled = true\n    renderer.shadowMap.enabled = true;\n    const encoding =\n      outputEncoding === \"linear\" ? LinearEncoding : sRGBEncoding;\n    renderer.outputEncoding = encoding;\n  }\n\n  if (!controls || Object.keys(controls).length <= 0) {\n    controls = new OrbitControls(camera, el);\n    if (enableDamping) {\n      controls.enableDamping = true;\n      if (dampingFactor != undefined) {\n        controls.dampingFactor = dampingFactor;\n      }\n    }\n  }\n  setVerticalHorizontalControls();\n  setAxesAndGridHelper();\n  loadModelSelect();\n  update();\n  // enable mouse move\n  enableMousemoveEvent(true);\n  el.addEventListener(\"mousedown\", onMouseDown, false);\n  el.addEventListener(\"mouseup\", onMouseUp, false);\n  el.addEventListener(\"click\", onClick, false);\n  el.addEventListener(\"dblclick\", onDblclick, false);\n  window.addEventListener(\"resize\", onResize, false);\n  // stats\n  if (showFps) {\n    stats = Stats();\n    el.appendChild(stats.dom);\n  }\n  animate();\n  // Init labels\n  if (labels && labels.length > 0) {\n    setSpriteLabel();\n  }\n}\n\nfunction setContainerElementStyle(el: any) {\n  const { width, height } = props;\n  if (width) {\n    el.style.width = `${width}px`;\n  }\n  if (height) {\n    el.style.height = `${height}px`;\n  }\n}\n// mouse move event listener\nfunction enableMousemoveEvent(enable: boolean) {\n  const el: any = containerElement.value;\n  if (enable) {\n    el.addEventListener(\"mousemove\", onMouseMove, false);\n  } else {\n    el.removeEventListener(\"mousemove\", onMouseMove, false);\n  }\n}\nfunction onResize() {\n  const { width, height } = props;\n  if (!width || !height) {\n    nextTick(() => {\n      const el = containerElement.value as any;\n      size.value = {\n        width: width || el.offsetWidth,\n        height: height || el.offsetHeight,\n      };\n    });\n  }\n}\nfunction onMouseDown(event: MouseEvent) {\n  enableMousemoveEvent(false);\n  const intersected = pick(event.clientX, event.clientY);\n  emit(\"mousedown\", event, intersected);\n}\nfunction onMouseMove(event: MouseEvent) {\n  const intersected = pick(event.clientX, event.clientY);\n  emit(\"mousemove\", event, intersected);\n}\nfunction onMouseUp(event: MouseEvent) {\n  const intersected = pick(event.clientX, event.clientY);\n  emit(\"mouseup\", event, intersected);\n  enableMousemoveEvent(true);\n}\nfunction onClick(event: MouseEvent) {\n  const intersected = pick(event.clientX, event.clientY);\n  emit(\"click\", event, intersected);\n}\nfunction onDblclick(event: MouseEvent) {\n  const intersected = pick(event.clientX, event.clientY);\n  emit(\"dblclick\", event, intersected);\n}\nfunction pick(x: number, y: number) {\n  const obj = getAllObject();\n  if (!obj || !containerElement.value) return null;\n  const rect = (containerElement.value as HTMLElement).getBoundingClientRect();\n  x -= rect.left;\n  y -= rect.top;\n  mouse.x = (x / size.value.width) * 2 - 1;\n  mouse.y = -(y / size.value.height) * 2 + 1;\n  raycaster.setFromCamera(mouse, camera);\n  const intersects = raycaster.intersectObject(obj, props.intersectRecursive);\n  return (intersects && intersects.length) > 0 ? intersects[0] : null;\n}\nfunction update() {\n  updateRenderer();\n  updateCamera();\n  updateLights();\n  updateControls();\n}\nfunction updateModel() {\n  if (!object) return;\n  const index = isMultipleModels.value ? getObjectIndex(object) : null;\n  const { position, rotation, scale } = props;\n  if (position) {\n    position instanceof Array\n      ? index != null\n        ? object.position.set(\n            position[index].x,\n            position[index].y,\n            position[index].z\n          )\n        : object.position.set(0, 0, 0)\n      : object.position.set(position.x, position.y, position.z);\n  }\n  if (rotation) {\n    rotation instanceof Array\n      ? index != null\n        ? object.rotation.set(\n            rotation[index].x,\n            rotation[index].y,\n            rotation[index].z\n          )\n        : object.rotation.set(0, 0, 0)\n      : object.rotation.set(rotation.x, rotation.y, rotation.z);\n  }\n  if (scale) {\n    scale instanceof Array\n      ? index != null\n        ? object.scale.set(scale[index].x, scale[index].y, scale[index].z)\n        : object.scale.set(1, 1, 1)\n      : object.scale.set(scale.x, scale.y, scale.z);\n  }\n}\nfunction updateRenderer() {\n  const { backgroundColor, backgroundAlpha } = props;\n  renderer.setSize(size.value.width, size.value.height);\n  renderer.setPixelRatio(window.devicePixelRatio || 1);\n  renderer.setClearColor(new Color(backgroundColor).getHex());\n  renderer.setClearAlpha(backgroundAlpha as any);\n}\nfunction updateCamera(isResize?: boolean) {\n  const { cameraPosition, cameraRotation, cameraUp, cameraLookAt } = props;\n  camera.aspect = size.value.width / size.value.height;\n  camera.updateProjectionMatrix();\n  if (isResize) return;\n\n  if (!cameraLookAt || !cameraUp) {\n    if (!object) return;\n    const distance = getSize(object).length();\n    camera.position.set(cameraPosition.x, cameraPosition.y, cameraPosition.z);\n    if (cameraRotation) {\n      camera.rotation.set(cameraRotation.x, cameraRotation.y, cameraRotation.z);\n    }\n    if (\n      cameraPosition.x === 0 &&\n      cameraPosition.y === 0 &&\n      cameraPosition.z === 0\n    ) {\n      camera.position.z = distance;\n    }\n    camera.lookAt(new Vector3());\n  } else {\n    camera.position.set(cameraPosition.x, cameraPosition.y, cameraPosition.z);\n    if (cameraRotation) {\n      camera.rotation.set(cameraRotation.x, cameraRotation.y, cameraRotation.z);\n    }\n    camera.up.set(cameraUp.x, cameraUp.y, cameraUp.z);\n    camera.lookAt(new Vector3(cameraLookAt.x, cameraLookAt.y, cameraLookAt.z));\n  }\n}\nfunction updateLights() {\n  const { lights } = props;\n  scene.remove(...allLights);\n  allLights = [];\n  lights.forEach((item: any) => {\n    if (!item.type) return;\n    const type = item.type.toLowerCase();\n    let light: any = null;\n    if (type === \"ambient\" || type === \"ambientlight\") {\n      const color =\n        item.color === 0x000000 ? item.color : item.color || 0x404040;\n      const intensity =\n        item.intensity === 0 ? item.intensity : item.intensity || 1;\n      light = new AmbientLight(color, intensity);\n    }\n    if (type === \"point\" || type === \"pointlight\") {\n      const color =\n        item.color === 0x000000 ? item.color : item.color || 0xffffff;\n      const intensity =\n        item.intensity === 0 ? item.intensity : item.intensity || 1;\n      const distance = item.distance || 0;\n      const decay = item.decay === 0 ? item.decay : item.decay || 1;\n      light = new PointLight(color, intensity, distance, decay);\n      if (item.position) {\n        light.position.copy(item.position);\n      }\n    }\n    if (type === \"directional\" || type === \"directionallight\") {\n      const color =\n        item.color === 0x000000 ? item.color : item.color || 0xffffff;\n      const intensity =\n        item.intensity === 0 ? item.intensity : item.intensity || 1;\n\n      light = new DirectionalLight(color, intensity);\n\n      if (item.position) {\n        light.position.copy(item.position);\n      }\n\n      if (item.target) {\n        light.target.copy(item.target);\n      }\n    }\n    if (type === \"hemisphere\" || type === \"hemispherelight\") {\n      const skyColor =\n        item.skyColor === 0x000000 ? item.skyColor : item.skyColor || 0xffffff;\n      const groundColor =\n        item.groundColor === 0x000000\n          ? item.groundColor\n          : item.groundColor || 0xffffff;\n      const intensity =\n        item.intensity === 0 ? item.intensity : item.intensity || 1;\n\n      light = new HemisphereLight(skyColor, groundColor, intensity);\n\n      if (item.position) {\n        light.position.copy(item.position);\n      }\n    }\n    if (light) {\n      allLights.push(light);\n      scene.add(light);\n    }\n  });\n}\nfunction updateControls() {\n  const { controlsOptions } = props;\n  if (controlsOptions) {\n    Object.assign(controls, controlsOptions);\n  }\n}\nfunction loadModelSelect() {\n  const { filePath, parallelLoad } = props;\n  // If enable parallel load\n  if (parallelLoad && isMultipleModels) {\n    (filePath as any).forEach((path: string, index: number) => {\n      load(index);\n    });\n  } else {\n    load();\n  }\n}\nfunction load(fileIndex?: number) {\n  const {\n    filePath,\n    fileType,\n    crossOrigin,\n    requestHeader,\n    mtlPath,\n    enableDraco,\n    dracoDir,\n    plyMaterial\n  } = props;\n  if (!filePath) return;\n  const index = fileIndex || loaderIndex.value;\n  // if multiple files\n  const filePathString: any = !isMultipleModels.value\n    ? filePath\n    : filePath[index];\n  const fileTypeString: string =\n    typeof fileType === \"string\" ? fileType : fileType ? fileType[index] : \"\";\n  const loaderObject3d: any = getLoader(\n    filePathString,\n    fileTypeString,\n    enableDraco,\n    plyMaterial,\n    dracoDir\n  ); // {loader, getObject, mtlLoader}\n  loader = loaderObject3d.loader;\n  const getObjectFun = loaderObject3d.getObject\n    ? loaderObject3d.getObject\n    : getObject;\n  if (object && index === 0) {\n    scene.remove(object);\n  }\n  if (requestHeader) {\n    loader.setRequestHeader(requestHeader);\n  }\n  if (crossOrigin) {\n    loader.setCrossOrigin(crossOrigin);\n  }\n  if (mtlPath) {\n    // load materials\n    const isMultipleMTL = typeof mtlPath === \"object\";\n    if (!isMultipleMTL) {\n      // single material\n      loadMtl(filePathString, getObjectFun, index);\n    } else {\n      // load materials and model\n      if (!mtlPath[index]) {\n        loadFilePath(filePathString, getObjectFun, index);\n        return;\n      }\n      loadMtl(filePathString, getObjectFun, index);\n    }\n  } else {\n    // don't load materials\n    loadFilePath(filePathString, getObjectFun, index);\n  }\n}\nfunction loadFilePath(filePath: string, getObject: any, index: number) {\n  const { textureImage, parallelLoad } = props;\n  loader.load(\n    filePath,\n    (...args: any) => {\n      const obj = getObject(...args);\n      object = obj;\n      addObject(object, filePath);\n      // set texture\n      if (textureImage) {\n        const _texture =\n          typeof textureImage === \"string\" ? textureImage : textureImage[index];\n        if (_texture) {\n          addTexture(object, _texture);\n        }\n      }\n      emit(\"load\", scene);\n    },\n    (event: ProgressEvent) => {\n      if (!parallelLoad) {\n        onProcess(event);\n      }\n      const modelIndex = loaderIndex.value + 1;\n      emit(\"process\", event, modelIndex);\n    },\n    (error: ErrorEvent) => {\n      emit(\"error\", error);\n    }\n  );\n}\nfunction loadMtl(filePath: string, getObject: any, index: number) {\n  const { crossOrigin, requestHeader, mtlPath } = props;\n  const mtlLoader = getMTLLoader();\n  if (crossOrigin) {\n    mtlLoader.setCrossOrigin(crossOrigin);\n  }\n  if (requestHeader) {\n    mtlLoader.setRequestHeader(requestHeader as any);\n  }\n  const mtl = typeof mtlPath === \"string\" ? mtlPath : mtlPath[index];\n  const mtlPathArray: any = /^(.*\\/)([^/]*)$/.exec(mtl);\n  const path = mtlPathArray[1];\n  const file = mtlPathArray[2];\n  mtlLoader.setPath(path).load(file, (materials: any) => {\n    materials.preload();\n    loader.setMaterials(materials);\n    loadFilePath(filePath, getObject, index);\n  });\n}\nfunction getObject(object: any) {\n  return object;\n}\nfunction addObject(obj: Object3D, filePath: string) {\n  const center = getCenter(object);\n  // Multiple models set object position only once, prevent the position from changing every time multiple models objects is loaded\n  if (!objectPositionHasSet.value) {\n    scene.position.copy(center.negate());\n    objectPositionHasSet.value = true;\n  }\n  object = obj;\n  // add the file name to object\n  let fileName: any = filePath.split(\"/\");\n  fileName = fileName[fileName.length - 1];\n  object.fileName = fileName;\n  scene.add(object);\n  updateCamera();\n  updateModel();\n  playAnimations();\n}\nfunction animate() {\n  requestAnimationId = requestAnimationFrame(animate);\n  updateStats();\n  const delta = clock.getDelta();\n  // update play animations\n  if (mixers && mixers instanceof AnimationMixer) {\n    mixers.update(delta);\n  }\n  if (mixers && mixers instanceof Array) {\n    mixers.forEach((m: any) => {\n      m.update(delta);\n    });\n  }\n  if (controls) {\n    controls.update();\n  }\n  render();\n}\nfunction render() {\n  const { pointLightFollowCamera } = props\n  if (pointLightFollowCamera) {\n    setLightFollowCamera()\n  }\n  renderer.render(scene, camera);\n}\nfunction updateStats() {\n  const { showFps } = props;\n  if (showFps) {\n    stats.update();\n  }\n}\nfunction onProcess(xhr: ProgressEvent) {\n  const { filePath } = props;\n  let process = Math.floor((xhr.loaded / xhr.total) * 100);\n  if (process === 100) {\n    if (isMultipleModels.value && filePath.length > loaderIndex.value) {\n      // Load completed\n      nextTick(() => {\n        loaderIndex.value++;\n        if (loaderIndex.value === filePath.length) {\n          loaderIndex.value = 0;\n          return;\n        }\n        load();\n      });\n    } else {\n      loaderIndex.value = 0;\n    }\n  }\n}\nfunction addTexture(object: Object3D, texture: any) {\n  if (!textureLoader) {\n    textureLoader = new TextureLoader();\n  }\n  object.traverse((child: any) => {\n    if (child.isMesh) {\n      textureLoader.load(\n        texture,\n        (_texture: any) => {\n          child.material.map = _texture;\n          child.material.needsUpdate = true;\n        },\n        () => {},\n        (err: any) => {\n          emit(\"error\", err);\n        }\n      );\n    }\n  });\n}\nfunction clearScene() {\n  scene.clear();\n}\nfunction setObjectAttribute(type: string, val: any) {\n  const obj = getAllObject();\n  if (!obj) return;\n  if (isMultipleModels.value) {\n    obj.children.forEach((item: any) => {\n      const index = getObjectIndex(item);\n      const v = type === \"scale\" ? 1 : 0;\n      val[index]\n        ? item[type].set(val[index].x, val[index].y, val[index].z)\n        : item[type].set(v, v, v);\n    });\n    return;\n  }\n  obj[type].set(val.x, val.y, val.z);\n}\nfunction getAllObject() {\n  return isMultipleModels.value ? scene : object;\n}\nfunction setSpriteLabel() {\n  const { labels } = props;\n  if (!labels || labels.length <= 0) return;\n  clearSprite();\n  const obj = isMultipleModels.value ? scene : object;\n  const spriteImageLabel = (image: any) => {\n    if (!textureLoader) {\n      textureLoader = new TextureLoader();\n    }\n    const imageTexture = textureLoader.load(image);\n    return imageTexture;\n  };\n\n  const spriteTextLabel = (text: string, style: object) => {\n    const canvas = generateCanvas(text, style);\n    const texture = new Texture(canvas);\n    texture.needsUpdate = true;\n    return texture;\n  };\n\n  labels.forEach((item: any) => {\n    const spriteMap = item.image\n      ? spriteImageLabel(item.image)\n      : spriteTextLabel(item.text, item.textStyle || {});\n    const spriteMaterial = new SpriteMaterial({\n      map: spriteMap,\n      color: item.spriteMaterialColor || 0xffffff,\n      // useScreenCoordinates: false\n      // alignment: spriteAlignment\n    });\n    const sprite: any = new Sprite(spriteMaterial);\n    if (item.scale) {\n      sprite.scale.set(item.scale.x || 1, item.scale.y || 1, item.scale.z || 0);\n    } else {\n      sprite.scale.set(1, 1, 0);\n    }\n    if (item.position) {\n      sprite.position.set(item.position.x, item.position.y, item.position.z);\n    }\n    if (item.sid) {\n      sprite.sid = item.sid;\n    }\n    obj.add(sprite);\n  });\n}\nfunction clearSprite() {\n  const sceneChildren = scene.children;\n  for (let i = sceneChildren.length - 1; i >= 0; i--) {\n    const item = sceneChildren[i];\n    if (item) {\n      // If have only one model the Sprite in Group\n      if (item instanceof Group && item.children) {\n        scene.children[i].children = item.children.map((_item: any) => {\n          if (_item instanceof Sprite) {\n            return null;\n          }\n          return _item;\n        }).filter((item: any) => item);\n      }\n      // If have multiple models the Sprite in children\n      if (item instanceof Sprite) {\n        scene.remove(item)\n      }\n    }\n  }\n}\nfunction generateCanvas(text: string, style: any) {\n  const roundRect = (\n    ctx: any,\n    x: number,\n    y: number,\n    w: number,\n    h: number,\n    r: number\n  ) => {\n    ctx.beginPath();\n    ctx.moveTo(x + r, y);\n    ctx.lineTo(x + w - r, y);\n    ctx.quadraticCurveTo(x + w, y, x + w, y + r);\n    ctx.lineTo(x + w, y + h - r);\n    ctx.quadraticCurveTo(x + w, y + h, x + w - r, y + h);\n    ctx.lineTo(x + r, y + h);\n    ctx.quadraticCurveTo(x, y + h, x, y + h - r);\n    ctx.lineTo(x, y + r);\n    ctx.quadraticCurveTo(x, y, x + r, y);\n    ctx.closePath();\n    ctx.fill();\n    ctx.stroke();\n  };\n  const fontFamily = style.fontFamily || \"Arial\";\n  const fontSize = style.fontSize === 0 || style.fontSize ? style.fontSize : 18;\n  const fontColor = style.color || \"#ffffff\";\n  const fontWeight = style.fontWeight || \"normal\";\n  const borderWidth =\n    style.borderWidth === 0 || style.borderWidth ? style.borderWidth : 4;\n  const borderColor = style.borderColor || \"rgba(0,0,0,1)\";\n  const borderRadius =\n    style.borderRadius === 0 || style.borderRadius ? style.borderRadius : 4;\n  const backgroundColor = style.backgroundColor || \"rgba(255, 255, 255, 1)\";\n  const canvas = document.createElement(\"canvas\");\n  const context = canvas.getContext(\"2d\");\n  if (context) {\n    context.font = `${fontWeight} ${fontSize}px ${fontFamily}`;\n    // get size data (height depends only on font size)\n    const metrics = context.measureText(text);\n    const textWidth = metrics.width;\n    // background color\n    context.fillStyle = backgroundColor;\n    // border color\n    context.strokeStyle = borderColor;\n    context.lineWidth = borderWidth;\n    roundRect(\n      context,\n      borderWidth / 2,\n      borderWidth / 2,\n      textWidth + borderWidth,\n      fontSize * 1.4 + borderWidth,\n      borderRadius\n    );\n    // text color\n    context.fillStyle = fontColor;\n    context.fillText(text, borderWidth, fontSize + borderWidth);\n  }\n  return canvas;\n}\n// Get object index\nfunction getObjectIndex(object: any) {\n  const { filePath } = props;\n  let objIndex: any;\n  if (filePath instanceof Array) {\n    objIndex = filePath\n      .map((item, index) => {\n        if (item.indexOf(object.fileName) > -1) {\n          return index;\n        }\n      })\n      .filter((i) => i != undefined)[0];\n  }\n  return objIndex;\n}\n// play animations\nfunction playAnimations() {\n  const { autoPlay } = props;\n  const obj = getAllObject();\n  if (!obj) return;\n  if (isMultipleModels.value) {\n    playMultipleModels(obj);\n    return;\n  }\n  playSingleModel(obj);\n}\n// play a single model animation\nfunction playSingleModel(item: Object3D) {\n  const { autoPlay } = props;\n  mixers = new AnimationMixer(item);\n  if (item.animations && item.animations.length > 0) {\n    item.animations.forEach((clip: AnimationClip) => {\n      if (clip) {\n        const action = (mixers as AnimationMixer).clipAction(clip);\n        if (autoPlay) {\n          action.play();\n        } else {\n          action.stop();\n        }\n      }\n    });\n  }\n}\n// play multiple models animation\nfunction playMultipleModels(obj: Object3D) {\n  const { autoPlay } = props;\n  mixers = [];\n  obj.children.forEach((item: any, index: number) => {\n    (mixers as AnimationMixer[]).push(new AnimationMixer(item));\n    if (item.animations && item.animations.length > 0) {\n      item.animations.forEach((clip: AnimationClip) => {\n        if (clip) {\n          const action = (mixers as AnimationMixer[])[index].clipAction(clip);\n          if (autoPlay) {\n            action.play();\n          } else {\n            action.stop();\n          }\n        }\n      });\n    }\n  });\n}\n// set vertical horizontal controls\nfunction setVerticalHorizontalControls() {\n  if (!controls) {\n    return;\n  }\n  const { verticalCtrl, horizontalCtrl, minDistance, maxDistance } = props;\n  // set vertical\n  if (verticalCtrl && typeof verticalCtrl === \"boolean\") {\n    controls.minAzimuthAngle = -2 * Math.PI;\n    controls.maxAzimuthAngle = -2 * Math.PI;\n  }\n  if (verticalCtrl && typeof verticalCtrl === \"object\") {\n    // min/max azimuth angle value range [-2 * Math.PI，2 * Math.PI]\n    controls.minAzimuthAngle = verticalCtrl.min;\n    controls.maxAzimuthAngle = verticalCtrl.max;\n  }\n  // set horizontal\n  if (horizontalCtrl && typeof horizontalCtrl === \"boolean\") {\n    controls.minPolarAngle = 1;\n    controls.maxPolarAngle = 1;\n  }\n  if (horizontalCtrl && typeof horizontalCtrl === \"object\") {\n    // min/max azimuth angle value range [0，Math.PI]\n    controls.minPolarAngle = horizontalCtrl.min;\n    controls.maxPolarAngle = horizontalCtrl.max;\n  }\n  if (minDistance != 0 && typeof minDistance === \"number\") {\n    controls.minDistance = minDistance;\n  }\n  if (maxDistance != Infinity && typeof maxDistance === \"number\") {\n    controls.maxDistance = maxDistance;\n  }\n}\n// set axes and grid helper\nfunction setAxesAndGridHelper () {\n  const { enableAxesHelper, enableGridHelper, axesHelperSize } = props;\n  if (enableAxesHelper) {\n    // add axes\n    axesHelper = new AxesHelper(axesHelperSize); // axesHelperSize is axes size，red: x, green: y, blue: z\n    scene.add(axesHelper);\n  } else {\n    if (axesHelper) {\n      scene.remove(axesHelper);\n    }\n  }\n\n  if (enableGridHelper) {\n    // add grid\n    gridHelper = new GridHelper(2000, 100);\n    scene.add(gridHelper);\n  } else {\n    if (gridHelper) {\n      scene.remove(gridHelper);\n    }\n  }\n}\n\n// 光源跟随相机\nfunction setLightFollowCamera() {\n  const vector = camera.position.clone();\n  scene.children.forEach((item: any) => {\n    if (item instanceof PointLight) {\n      item.position.set(vector.x,vector.y,vector.z);\n    }\n  })\n}\n\n// 导出变量\ndefineExpose({\n  camera,\n  scene,\n})\n</script>\n<style scoped>\n.viewer-container {\n  position: relative;\n  width: 100%;\n  height: 100%;\n  margin: 0;\n  border: 0;\n  padding: 0;\n}\n\n.viewer-container div {\n  position: absolute !important;\n  left: 0px !important;\n  opacity: 1 !important;\n}\n\n.viewer-canvas {\n  width: 100%;\n  height: 100%;\n}\n</style>\n"
  },
  {
    "path": "src/App.vue",
    "content": "<template>\n  <exampleIndex />\n</template>\n<script setup lang=\"ts\">\nimport exampleIndex from \"./examples/exampleIndex.vue\";\n</script>\n<style>\nhtml,\nbody,\n#app {\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n}\n</style>\n"
  },
  {
    "path": "src/env.d.ts",
    "content": "/// <reference types=\"vite/client\" />\n\ndeclare module '*.vue' {\n  import type { DefineComponent } from 'vue'\n  // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types\n  const component: DefineComponent<{}, {}, any>\n  export default component\n}\n"
  },
  {
    "path": "src/examples/add-label.vue",
    "content": "<template>\n  <vue3dLoader\n    :filePath=\"filePath\"\n    backgroundColor=\"#cccccc\"\n    :position=\"[{ x: 0, y: 0, z: 0 }, { x: 100, y: 100, z: 100}]\"\n    :labels=\"labels\"\n    :scale=\"[{ x: 10, y: 10, z: 10 },{ x: 0.5, y: 0.5, z: 0.5 }]\"\n    :enableAxesHelper=\"true\"\n    :enableGridHelper=\"true\"\n    outputEncoding=\"sRGB\"\n  />\n  <div class=\"top\">\n    <button @click=\"changeLabelPosition\">Change label position</button>\n    <button @click=\"changeTextLabelName\">Change text label name</button>\n    <button @click=\"resetLabels\">Reset labels</button>\n  </div>\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst labels = ref();\nconst filePath = ['/models/gltf/DamagedHelmet.gltf', '/models/fbx/Samba Dancing.fbx']\nlabels.value = [\n  // image label\n  {\n      image: \"./assets/label1.png\",\n      position: { x: 0, y: 0, z: 200 },\n      scale: { x: 50, y: 50, z: 50 },\n      sid: 1, // custom id\n    },\n    {\n      image: \"./assets/label2.png\",\n      position: { x: 150, y: 0, z: 200 },\n      scale: { x: 50, y: 50, z: 50 },\n      sid: 2,\n    },\n    // text label\n    {\n      text: \"I'm Text Label\",\n      position: { x: 200, y: 200, z: 200 },\n      scale: { x: 50, y: 50, z: 10 },\n      textStyle: {\n        fontFamily: \"Arial\",\n        fontSize: 12,\n        fontWeight: 600,\n        lineHeight: 1,\n        color: \"#ffffff\",\n        borderWidth: 8,\n        borderRadius: 0,\n        borderColor: \"#000000\",\n        backgroundColor: \"rgba(0,0,0,1)\",\n      },\n      sid: 3, // 自定义标识，可有可无\n    },\n]\n\nfunction changeLabelPosition() {\n  labels.value[0].position = { x: 100, y: 0, z: 200 };\n}\n\nfunction changeTextLabelName() {\n  if (labels.value[2].text === \"I'm Text Label\") {\n    labels.value[2].text = \"My name is change\";\n    return\n  }\n  labels.value[2].text = \"I'm Text Label\";\n}\n\nfunction resetLabels() {\n  labels.value[0].position = { x: 0, y: 0, z: 200 };\n  labels.value[2].text = \"I'm Text Label\";\n}\n</script>\n<style>\n.top {\n  position: absolute;\n  top: 0;\n  left: 50%;\n  transform: translateX(-50%);\n}\n.top button {\n  margin: 0 2px;\n}\n</style>"
  },
  {
    "path": "src/examples/background-color-and-alpha.vue",
    "content": "<template>\n  <div class=\"content\">\n    <div class=\"text\">This text is on the back of the model</div>\n    <div class=\"model\">\n      <vue3dLoader\n        filePath=\"/models/gltf/DamagedHelmet.gltf\"\n        :backgroundColor=\"'#00ffff'\"\n        :backgroundAlpha=\"0.5\"\n        :height=\"600\"\n        :width=\"600\"\n        outputEncoding=\"sRGB\"\n      />\n    </div>\n  </div>\n</template>\n<script setup lang=\"ts\">\n</script>\n<style>\n.content {\n  position: relative;\n}\n.text,\n.model {\n  position: absolute;\n  top: 0;\n  left: 50%;\n  transform: translateX(-50%);\n}\n.text {\n  z-index: 0;\n  font-size: 60px;\n  width: 100%;\n  text-align: center;\n}\n.model {\n  z-index: 100;\n}\n</style>"
  },
  {
    "path": "src/examples/camera-position-and-rotate.vue",
    "content": "<template>\n  <vue3dLoader\n    filePath=\"/models/stl/colored.stl\"\n    backgroundColor=\"#cccccc\"\n    @load=\"onLoad\"\n    :cameraPosition=\"positon\"\n    :cameraRotation=\"rotation\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst positon = ref();\nconst rotation = ref();\npositon.value = {\n  x: -Math.PI / 2,\n  y: 0,\n  z: 0,\n};\n\nrotation.value = {\n  x: -Math.PI / 2,\n  y: 0,\n  z: 0,\n};\nfunction onLoad() {\n  rotate();\n}\nfunction rotate() {\n  requestAnimationFrame(rotate);\n  rotation.value.z += 0.01;\n  positon.value.z += 0.01;\n}\n</script>"
  },
  {
    "path": "src/examples/clone-same-obj.vue",
    "content": "<template>\n    <vue3dLoader \n        :filePath=\"filePath\" \n        backgroundColor=\"#cccccc\" \n        :cameraPosition=\"positon\" \n        ref=\"vue3dLoaderRef\"\n        @load=\"copyObj\" \n        outputEncoding=\"sRGB\" \n        :scale=\"{ x: 1, y: 1, z: 1 }\" \n        :enableAxesHelper=\"true\"\n        :axesHelperSize=\"20\" \n        :enableGridHelper=\"true\" \n    />\n</template>\n<script setup lang=\"ts\">\nimport { onMounted, ref } from \"vue\";\nconst positon = ref();\nconst filePath = '/models/gltf/DamagedHelmet.gltf'\nconst vue3dLoaderRef = ref();\n\npositon.value = {\n    x: 0,\n    y: 0,\n    z: 0,\n};\n\nconst copyObj = () => {\n    const { children } = vue3dLoaderRef.value.scene\n    if (children) {\n        const fileName = filePath.split('/').pop()\n        children.forEach((item: any) => {\n            // same fileName obj\n            if (item.fileName === fileName) {\n                const cloneItem = item.clone()\n                // Set new obj fileName\n                cloneItem.fileName = 'clone_' + fileName\n                // Set new obj position\n                cloneItem.position.set(5, 0, 0)\n                // add new obj to scene\n                vue3dLoaderRef.value.scene.add(cloneItem)\n            }\n        })\n    }\n}\n\n</script>"
  },
  {
    "path": "src/examples/disable-animations.vue",
    "content": "<template>\n  <div class=\"check-box\">\n    <input type=\"checkbox\" @change=\"change()\" checked />\n    {{ autoPlay ? \"Play\" : \"Stop\" }}\n  </div>\n  <vue3dLoader\n    filePath=\"/models/collada/stormtrooper/stormtrooper.dae\"\n    :cameraPosition=\"{ x: 20, y: 0, z: -10 }\"\n    :autoPlay=\"autoPlay\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst autoPlay = ref(true);\nfunction change() {\n  if (autoPlay.value) {\n    autoPlay.value = false;\n  } else {\n    autoPlay.value = true;\n  }\n}\n</script>\n<style>\n.check-box {\n  position: absolute;\n  top: 5px;\n  left: 50%;\n  transform: translateX(-50%);\n  background-color: rgb(13, 6, 103);\n  padding: 2px 4px;\n  z-index: 100;\n  font-size: 12px;\n  border-radius: 4px;\n  color: #fff;\n}\n</style>\n"
  },
  {
    "path": "src/examples/enable-axes-grid.vue",
    "content": "<template>\n  <vue3dLoader\n    filePath=\"/models/collada/stormtrooper/stormtrooper.dae\"\n    outputEncoding=\"sRGB\"\n    :enableAxesHelper=\"true\"\n    :axesHelperSize=\"500\"\n    :enableGridHelper=\"true\"\n  />\n</template>\n<script setup lang=\"ts\"></script>"
  },
  {
    "path": "src/examples/enable-damping.vue",
    "content": "<template>\n  <vue3dLoader\n    :filePath=\"'/models/collada/elf/elf.dae'\"\n    :cameraPosition=\"{ x: 0, y: -10, z: 13 }\"\n    :enableDamping=\"true\"\n    :dampingFactor=\"0.05\"\n  />\n</template>"
  },
  {
    "path": "src/examples/event-model.vue",
    "content": "<template>\n  <div class=\"tips\">\n    Move your mouse over the model to change the model color\n  </div>\n  <vue3dLoader\n    filePath=\"/models/ply/Lucy100k.ply\"\n    @mousemove=\"onMouseMove\"\n    :cameraPosition=\"{ x: 0, y: 0, z: -2500 }\"\n    plyMaterial=\"MeshStandardMaterial\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst object = ref(null);\nfunction onMouseMove(event: MouseEvent, intersected: any) {\n  if (object.value) {\n    (object.value as any).material.color.setStyle(\"#fff\");\n  }\n  if (intersected) {\n    object.value = intersected.object;\n    (object.value as any).material.color.setStyle(\"#13ce66\");\n  }\n}\n</script>\n<style>\n.tips {\n  position: absolute;\n  top: 5px;\n  left: 50%;\n  transform: translateX(-50%);\n  z-index: 100;\n  background-color: #ccc;\n  padding: 2px 4px;\n  border-radius: 4px;\n  font-size: 12px;\n  color: blue;\n}\n</style>"
  },
  {
    "path": "src/examples/exampleIndex.vue",
    "content": "<template>\n  <div class=\"example\">\n    <div class=\"menu\">\n      <ul>\n        <li\n          :class=\"currentMenuId === item.id ? 'active' : ''\"\n          v-for=\"(item, index) in menu\"\n          :key=\"item.id\"\n          @click=\"getMenuId(item.id)\"\n        >\n          {{ index + 1 + \". \" + getCurrentLanguageName(item.id) }}\n        </li>\n      </ul>\n    </div>\n    <loadAModelVue v-if=\"currentMenuId === 1\" />\n    <loadMultipleModelsVue v-if=\"currentMenuId === 2\" />\n    <heightAndWidthVue v-if=\"currentMenuId === 3\" />\n    <materialsAndTexturesVue v-if=\"currentMenuId === 4\" />\n    <backgroundColorAndAlphaVue v-if=\"currentMenuId === 5\" />\n    <interactiveControlsVue v-if=\"currentMenuId === 6\" />\n    <rotateModelVue v-if=\"currentMenuId === 7\" />\n    <eventModelVue v-if=\"currentMenuId === 8\" />\n    <lightModelVue v-if=\"currentMenuId === 9\" />\n    <showFpsVue v-if=\"currentMenuId === 10\" />\n    <cameraPositionAndRotateVue v-if=\"currentMenuId === 11\" />\n    <processBarVue v-if=\"currentMenuId === 12\" />\n    <parallelLoadModelsVue v-if=\"currentMenuId === 13\" />\n    <addLabelVue v-if=\"currentMenuId === 14\" />\n    <loadJsonModelVue v-if=\"currentMenuId === 15\" />\n    <disableAnimationsVue v-if=\"currentMenuId === 16\" />\n    <loaderDracoModelVue v-if=\"currentMenuId === 17\" :lang=\"lang\" />\n    <enableDampingVue v-if=\"currentMenuId === 18\" />\n    <setVerticalHorizontal v-if=\"currentMenuId === 19\" />\n    <enableAxesGrid v-if=\"currentMenuId === 20\"/>\n    <minMaxDistance v-if=\"currentMenuId === 21\"/>\n    <pointLightFollowCamera v-if=\"currentMenuId === 22\" />\n    <cloneSameObj v-if=\"currentMenuId === 23\" />\n  </div>\n</template>\n<script setup lang=\"ts\">\nimport loadAModelVue from \"./load-a-model.vue\";\nimport loadMultipleModelsVue from \"./load-multiple-models.vue\";\nimport heightAndWidthVue from \"./height-and-width.vue\";\nimport materialsAndTexturesVue from \"./materials-and-textures.vue\";\nimport backgroundColorAndAlphaVue from \"./background-color-and-alpha.vue\";\nimport cameraPositionAndRotateVue from \"./camera-position-and-rotate.vue\";\nimport interactiveControlsVue from \"./interactive-controls.vue\";\nimport rotateModelVue from \"./rotate-model.vue\";\nimport eventModelVue from \"./event-model.vue\";\nimport lightModelVue from \"./light-model.vue\";\nimport showFpsVue from \"./show-fps.vue\";\nimport processBarVue from \"./progress-bar.vue\";\nimport parallelLoadModelsVue from \"./parallel-load-models.vue\";\nimport addLabelVue from \"./add-label.vue\";\nimport loadJsonModelVue from \"./load-json-model.vue\";\nimport disableAnimationsVue from \"./disable-animations.vue\";\nimport loaderDracoModelVue from \"./loader-draco-model.vue\";\nimport enableDampingVue from \"./enable-damping.vue\";\nimport setVerticalHorizontal from \"./set-vertical-horizontal.vue\";\nimport enableAxesGrid from \"./enable-axes-grid.vue\";\nimport minMaxDistance from \"./min-max-distance.vue\";\nimport pointLightFollowCamera from \"./point-light-follow-camera.vue\";\nimport cloneSameObj from './clone-same-obj.vue'\nimport { ref } from \"vue\";\nconst menu = ref();\nconst lang = ref();\nmenu.value = [\n  { id: 1, name_CN: \"加载一个模型\", name_EN: \"Load a model\" },\n  { id: 2, name_CN: \"加载多个模型\", name_EN: \"Load multiple models\" },\n  { id: 3, name_CN: \"设置场景高宽\", name_EN: \"Height and width\" },\n  { id: 4, name_CN: \"材质及纹理\", name_EN: \"Materials and textures\" },\n  { id: 5, name_CN: \"背景颜色及透明度\", name_EN: \"Background\" },\n  { id: 6, name_CN: \"交互控制\", name_EN: \"Control\" },\n  { id: 7, name_CN: \"旋转模型\", name_EN: \"Rotate model\" },\n  { id: 8, name_CN: \"事件\", name_EN: \"Event\" },\n  { id: 9, name_CN: \"灯光\", name_EN: \"Light\" },\n  { id: 10, name_CN: \"显示FPS信息\", name_EN: \"Show stats\" },\n  { id: 11, name_CN: \"相机位置及旋转\", name_EN: \"Camera\" },\n  { id: 12, name_CN: \"加载进度\", name_EN: \"Progress bar\" },\n  { id: 13, name_CN: \"并行加载多模型\", name_EN: \"Parallel load\" },\n  { id: 14, name_CN: \"标注\", name_EN: \"Add label\" },\n  { id: 15, name_CN: \"加载JSON模型\", name_EN: \"Load json model\" },\n  { id: 16, name_CN: \"播放/停止动画\", name_EN: \"Play/Stop animations\" },\n  { id: 17, name_CN: \"加载Draco压缩模型\", name_EN: \"Loader draco model\" },\n  { id: 18, name_CN: \"开启阻尼\", name_EN: \"Enable damping\" },\n  { id: 19, name_CN: \"垂直/水平旋转相机\", name_EN: \"Set camera rotation\"},\n  { id: 20, name_CN: \"显示坐标及网格\", name_EN: \"Show axes and grid\" },\n  { id: 21, name_CN: \"限制缩放大小\", name_EN: \"Min and max distance\" },\n  { id: 22, name_CN: \"点灯光跟随相机\", name_EN: \"Point light follow camera\" },\n  { id: 23, name_CN: \"克隆相同模型\", name_EN: \"Clone model\" }\n];\nconst currentMenuId = ref(1);\n\nlang.value = navigator.language.substring(0, 2) || \"en\";\n\nfunction getCurrentLanguageName(id: number) {\n  let menuItem = menu.value.filter((item: any) => item.id === id)[0];\n  if (lang.value === \"zh\") {\n    return menuItem.name_CN;\n  } else {\n    return menuItem.name_EN;\n  }\n}\nfunction getMenuId(id: number) {\n  currentMenuId.value = id;\n}\n</script>\n<style>\n.example {\n  height: 100%;\n}\nul,\nli {\n  list-style-type: none;\n  margin: 0;\n  padding: 0;\n}\nli {\n  padding: 8px 10px;\n}\nli.active {\n  background-color: rgb(88, 88, 88);\n  text-decoration: underline;\n}\nli:hover {\n  background-color: rgb(88, 88, 88);\n  text-decoration: underline;\n}\n.menu {\n  position: absolute;\n  right: 0;\n  top: 0;\n  z-index: 2;\n  opacity: 0.8;\n  background-color: #000;\n  color: #fff;\n  text-align: left;\n  font-size: 12px;\n}\n</style>"
  },
  {
    "path": "src/examples/height-and-width.vue",
    "content": "<template>\n  <vue3dLoader\n    filePath=\"/models/gltf/DamagedHelmet.gltf\"\n    backgroundColor=\"rgb(216,217,219)\"\n    :height=\"600\"\n    :width=\"600\"\n    outputEncoding=\"sRGB\"\n  />\n</template>"
  },
  {
    "path": "src/examples/interactive-controls.vue",
    "content": "<template>\n  <div class=\"controls\">\n    <div class=\"buttons\">\n      <!-- 禁止右键拖动 -->\n      <button @click=\"enablePan = !enablePan\">\n        {{ enablePan ? \"disable\" : \"enable\" }} translation\n      </button>\n      <!-- 禁止缩放 -->\n      <button @click=\"enableZoom = !enableZoom\">\n        {{ enableZoom ? \"disable\" : \"enable\" }} zoom\n      </button>\n      <!-- 禁止旋转 -->\n      <button @click=\"enableRotate = !enableRotate\">\n        {{ enableRotate ? \"disable\" : \"enable\" }} rotation\n      </button>\n    </div>\n    <vue3dLoader\n      :filePath=\"'/models/collada/elf/elf.dae'\"\n      :controlsOptions=\"{\n        enablePan,\n        enableZoom,\n        enableRotate,\n      }\"\n      :cameraPosition=\"{ x: 0, y: -10, z: 13 }\"\n    />\n  </div>\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst enablePan = ref(true);\nconst enableZoom = ref(true);\nconst enableRotate = ref(true);\n</script>\n<style scoped>\n.controls {\n  height: 600px;\n}\n.buttons {\n  padding: 10px;\n  text-align: center;\n}\nbutton {\n  margin: 0 5px;\n  background-color: rgb(12, 54, 240);\n  outline: none;\n  border: none;\n  color: white;\n  padding: 5px 8px;\n  border-radius: 4px;\n}\nbutton:hover {\n  background-color: #ccc;\n  color: rgb(12, 54, 240);\n}\n</style>"
  },
  {
    "path": "src/examples/light-model.vue",
    "content": "<template>\n  <vue3dLoader\n    filePath=\"/models/collada/elf/elf.dae\"\n    :lights=\"lights\"\n    :cameraPosition=\"{ x: 0, y: 10, z: 10 }\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\n\nconst lights = ref();\nlights.value = [\n  {\n    type: \"AmbientLight\",\n    color: \"red\",\n  },\n  {\n    type: \"DirectionalLight\",\n    position: { x: 100, y: 10, z: 100 },\n    color: \"green\",\n    intensity: 0.8,\n  },\n  {\n    type: \"PointLight\",\n    color: \"#000000\",\n    position: { x: 200, y: -200, z: 100 },\n    intensity: 1\n  },\n  {\n    type: \"HemisphereLight\",\n    skyColor: \"#00FF00\",\n    groundColor: \"#000000\",\n    position: { x: 200, y: -200, z: 100 }\n  }\n];\n</script>"
  },
  {
    "path": "src/examples/load-a-model.vue",
    "content": "<template>\n  <vue3dLoader\n    filePath=\"/models/collada/stormtrooper/stormtrooper.dae\"\n    :cameraPosition=\"{ x: 10, y: 0, z: -10}\"\n    ref=\"vueRef\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { nextTick, onMounted, ref } from \"vue\";\nconst vueRef = ref<any>(null);\nonMounted(() => {\n  console.log(vueRef.value.camera);\n  // console.log(vue2Ref.value);\n  vueRef.value.camera.fov = 90\n})\n</script>"
  },
  {
    "path": "src/examples/load-json-model.vue",
    "content": "<template>\n  <vue3dLoader\n    filePath=\"/models/json/lightmap.json\"\n  />\n</template>"
  },
  {
    "path": "src/examples/load-multiple-models.vue",
    "content": "<template>\n  <div class=\"check-box\">\n    <input type=\"checkbox\" @change=\"change($event, 'position')\" checked /> Set\n    position\n    <input type=\"checkbox\" @change=\"change($event, 'rotation')\" checked /> Set\n    rotation\n    <input type=\"checkbox\" @change=\"change($event, 'scale')\" checked /> Set\n    scale\n  </div>\n  <vue3dLoader\n    :filePath=\"filePath\"\n    :position=\"position\"\n    :rotation=\"rotation\"\n    :scale=\"scale\"\n    :cameraPosition=\"{ x: -0, y: 0, z: -500 }\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst filePath = ref();\nfilePath.value = [\n  \"/models/fbx/Samba Dancing.fbx\",\n  \"/models/collada/pump/pump.dae\",\n];\nconst position = ref();\nposition.value = [\n  { x: 0, y: 0, z: 0 },\n  { x: 100, y: 100, z: 100 },\n];\nconst rotation = ref();\nrotation.value = [\n  { x: 0, y: 0, z: 0 },\n  { x: 10, y: 1, z: 1 },\n];\nconst scale = ref();\nscale.value = [\n  { x: 0.4, y: 0.4, z: 0.4 },\n  { x: 0.8, y: 0.8, z: 0.8 },\n];\n\nfunction change(event: any, type: string) {\n  const value = event.target.checked;\n  switch (type) {\n    case \"position\":\n      value\n        ? (position.value = [\n            { x: 0, y: 0, z: 0 },\n            { x: 100, y: 100, z: 100 },\n          ])\n        : (position.value = []);\n      break;\n    case \"rotation\":\n      value\n        ? (rotation.value = [\n            { x: 0, y: 0, z: 0 },\n            { x: 10, y: 1, z: 1 },\n          ])\n        : (rotation.value = []);\n      break;\n    case \"scale\":\n      value\n        ? (scale.value = [\n            { x: 0.4, y: 0.4, z: 0.4 },\n            { x: 0.8, y: 0.8, z: 0.8 },\n          ])\n        : (scale.value = []);\n      break;\n  }\n}\n</script>\n<style>\n.check-box {\n  position: absolute;\n  top: 5px;\n  left: 5px;\n  background-color: rgb(13, 6, 103);\n  padding: 2px 4px;\n  z-index: 100;\n  font-size: 12px;\n  border-radius: 4px;\n  color: #fff;\n}\n</style>\n"
  },
  {
    "path": "src/examples/loader-draco-model.vue",
    "content": "<template>\n  <div class=\"draco-demo\" v-if=\"props.lang === 'zh'\">\n    使用此功能需要下载<a\n      href=\"https://github.com/king2088/vue-3d-loader/blob/master/public/assets/draco.7z\"\n      >draco解码器</a\n    >，并解压放到本地项目assets目录中，draco路径应为：“assets/draco/gltf/”\n  </div>\n  <div class=\"draco-demo\" v-if=\"props.lang != 'zh'\">\n    Use this feature, you need to download the\n    <a\n      href=\"https://github.com/king2088/vue-3d-loader/blob/master/public/assets/draco.7z\"\n    >\n      Draco decoder</a\n    >, and unzip it to the assets directory of the local project. Draco\n    directory is: 'assets/Draco/GLTF/'\n  </div>\n  <vue3dLoader\n    filePath=\"/models/gltf/LittlestTokyo.glb\"\n    :cameraPosition=\"{ x: 10, y: 700, z: 1000 }\"\n    :enableDraco=\"true\"\n    outputEncoding=\"sRGB\"\n  />\n</template>\n<script lang=\"ts\" setup>\nimport { defineProps } from \"vue\";\nconst props = defineProps({\n  lang: String,\n});\n</script>\n<style>\n.draco-demo {\n  position: absolute;\n  top: 10px;\n  left: 50%;\n  transform: translateX(-50%);\n  z-index: 10;\n  color: red;\n  width: 480px;\n  background-color: #f2f2f2;\n  padding: 5px 10px;\n  line-height: 2;\n}\n.draco-demo a {\n  color: #fff;\n  background-color: blue;\n  padding: 2px 8px;\n  border-radius: 4px;\n  margin: 0 5px;\n}\n.draco-demo a:hover {\n  color: #fff;\n  background-color: rgb(17, 235, 126);\n}\n</style>"
  },
  {
    "path": "src/examples/materials-and-textures.vue",
    "content": "<template>\n  <div>\n    <div v-for=\"item in loaderList\" :key=\"item.title\">\n      <h1>{{ item.title }}</h1>\n      <vue3dLoader\n        :height=\"item.height\"\n        :showFps=\"item.showFps\"\n        :filePath=\"item.filePath\"\n        :mtlPath=\"item.mtlPath\"\n        :textureImage=\"item.textureImage\"\n        :backgroundColor=\"item.backgroundColor\"\n        :outputEncoding=\"item.outputEncoding\"\n        :cameraPosition=\"item.cameraPosition\"\n      />\n    </div>\n  </div>\n</template>\n\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst object = ref(null);\nconst loaderList = ref();\nloaderList.value = [\n  {\n    title: \"OBJ+MTL\",\n    filePath: \"/models/obj/male02.obj\",\n    mtlPath: \"/models/obj/male02.mtl\",\n    showFps: false,\n    height: 400,\n    backgroundColor: \"#f2f2f2\",\n    outputEncoding: \"sRGB\",\n    cameraPosition: { x: -100, y: 100, z: 200 }\n  },\n  {\n    title: \"FBX+JPG\",\n    filePath: \"/models/fbx/stanford-bunny.fbx\",\n    textureImage: \"/models/fbx/brick.png\",\n    height: 400,\n  },\n];\nfunction onMouseMove(event: MouseEvent, intersected: any) {\n  // console.log('event', event);\n  if (object.value) {\n    (object.value as any).material.color.setStyle(\"#fff\");\n  }\n\n  if (intersected) {\n    object.value = intersected.object;\n    (object.value as any).material.color.setStyle(\"#13ce66\");\n  }\n}\n</script>\n<style>\nh1 {\n  font-size: 20px;\n}\n</style>"
  },
  {
    "path": "src/examples/min-max-distance.vue",
    "content": "<template>\n    <vue3dLoader\n      filePath=\"/models/collada/stormtrooper/stormtrooper.dae\"\n      :minDistance=\"min\"\n      :maxDistance=\"max\"\n      :enableAxesHelper=\"enableAxesHelper\"\n      :enableGridHelper=\"enableGridHelper\"\n    />\n  </template>\n  \n  <script setup lang=\"ts\">\n  import { ref } from \"vue\";\n  \n  const min = ref(20)\n  const max = ref(100)\n  const enableAxesHelper = ref(true)\n  const enableGridHelper = ref(true)\n  \n  </script>"
  },
  {
    "path": "src/examples/parallel-load-models.vue",
    "content": "<template>\n  <vue3dLoader\n    :filePath=\"filePath\"\n    :scale=\"scale\"\n    :position=\"position\"\n    :rotation=\"rotation\"\n    :cameraPosition=\"{ x: 100, y: 200, z: 3000 }\"\n    :parallelLoad=\"true\"\n  ></vue3dLoader>\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst filePath = ref();\nfilePath.value = [\n  \"/models/fbx/Samba Dancing.fbx\",\n  \"/models/collada/pump/pump.dae\",\n  \"/models/ply/Lucy100k.ply\",\n];\nconst position = ref();\nposition.value = [\n  { x: 100, y: 100, z: 100 },\n  { x: 300, y: 300, z: 300 },\n];\nconst rotation = ref();\nrotation.value = [\n  { x: 0, y: 0, z: 0 },\n  { x: 10, y: 1, z: 1 },\n];\nconst scale = ref();\nscale.value = [\n  { x: 5, y: 5, z: 5 },\n  { x: 3, y: 3, z: 3 },\n];\n</script>"
  },
  {
    "path": "src/examples/point-light-follow-camera.vue",
    "content": "<template>\n  <vue3dLoader\n    filePath=\"/models/collada/elf/elf.dae\"\n    :lights=\"lights\"\n    :cameraPosition=\"{ x: 0, y: 10, z: 10 }\"\n    :pointLightFollowCamera=\"true\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\n\nconst lights = ref();\nlights.value = [\n  {\n    type: \"pointLight\",\n    color: \"#fff\",\n    position: { x: 0, y: 0, z: 400 },\n    intensity: 1\n  }\n]\n</script>"
  },
  {
    "path": "src/examples/progress-bar.vue",
    "content": "<template>\n  <div class=\"content\">\n    <vue3dLoader\n      :filePath=\"filePath\"\n      :scale=\"{ x: 0.4, y: 0.4, z: 0.4 }\"\n      :cameraPosition=\"{ x: 100, y: 200, z: 30 }\"\n      @process=\"onProcess\"\n    />\n    <div class=\"process\">\n      current model: {{ currentModelIndex }}, loadding: {{ process + \"%\" }}\n    </div>\n  </div>\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst filePath = ref();\nfilePath.value = [\"/models/obj/male02.obj\", \"/models/fbx/Samba Dancing.fbx\"];\nconst currentModelIndex = ref();\nconst process = ref(0);\nfunction onProcess(event: any, index: number) {\n  process.value = Math.floor((event.loaded / event.total) * 100);\n  if (index != 0) {\n    currentModelIndex.value = index;\n  }\n}\n</script>\n<style>\n.content {\n  height: 100%;\n}\n.process {\n  position: absolute;\n  top: 20px;\n  left: 50%;\n  transform: translateX(-50%);\n  padding: 3px 8px;\n  background-color: aquamarine;\n  color: red;\n}\n</style>"
  },
  {
    "path": "src/examples/rotate-model.vue",
    "content": "<template>\n  <vue3dLoader\n    :rotation=\"rotation\"\n    @load=\"onLoad()\"\n    filePath=\"/models/collada/elf/elf.dae\"\n  />\n</template>\n<script setup lang=\"ts\">\nimport { ref } from \"vue\";\nconst rotation = ref();\nrotation.value = {\n  x: -Math.PI / 2,\n  y: 0,\n  z: 0,\n};\nfunction onLoad() {\n  rotate();\n}\nfunction rotate() {\n  requestAnimationFrame(rotate);\n  rotation.value.z -= 0.01;\n}\n</script>"
  },
  {
    "path": "src/examples/set-vertical-horizontal.vue",
    "content": "<template>\n  <div class=\"controls\">\n    <div class=\"buttons\">\n      <!-- 开启水平旋转 -->\n      <button @click=\"setHorizontal()\">\n        Only {{ horizontalCtrl ? \"disable\" : \"enable\" }} horizontal\n      </button>\n      <!-- 开启垂直旋转 -->\n      <button @click=\"setVertical()\">\n        Only {{ verticalCtrl ? \"disable\" : \"enable\" }} vertical\n      </button>\n      <!-- 设置水平旋转最大/小角度 -->\n      <button @click=\"setHorizontal('range')\">\n        set horizontal rotation value range\n      </button>\n      <!-- 设置垂直旋转最大/小角度 -->\n      <button @click=\"setVertical('range')\">\n        set vertical rotation value range\n      </button>\n    </div>\n    <vue3dLoader\n      v-if=\"!refersh\"\n      filePath=\"/models/collada/stormtrooper/stormtrooper.dae\"\n      :scale=\"{ x: 0.1, y: 0.1, z: 0.1 }\"\n      :verticalCtrl=\"verticalCtrl\"\n      :horizontalCtrl=\"horizontalCtrl\"\n    />\n  </div>\n</template>\n<script lang=\"ts\" setup>\nimport { nextTick, ref } from \"vue\";\nconst verticalCtrl: any = ref(false);\nconst horizontalCtrl: any = ref(false);\nconst refersh = ref(false);\n\nfunction setVertical(type?: string) {\n  horizontalCtrl.value = false;\n  if (type === \"range\") {\n    // set vertical angle range\n    verticalCtrl.value = { min: 0, max: 1 };\n  } else {\n    verticalCtrl.value = true;\n    // horizontalCtrl.value = { min: 0, max: Math.PI };\n  }\n  refersh3d();\n}\n\nfunction setHorizontal(type?: string) {\n  verticalCtrl.value = false;\n  if (type === \"range\") {\n    // set horizontal angle range\n    horizontalCtrl.value = { min: 1, max: 2 };\n  } else {\n    horizontalCtrl.value = true;\n    // verticalCtrl.value = { min: -Math.PI, max: Math.PI };\n  }\n  refersh3d();\n}\n\nfunction refersh3d() {\n  refersh.value = true;\n  nextTick(() => {\n    refersh.value = false;\n  });\n}\n</script>\n<style scoped>\n.controls {\n  height: 600px;\n}\n.buttons {\n  padding: 10px;\n  text-align: center;\n}\nbutton {\n  margin: 0 5px;\n  background-color: rgb(12, 54, 240);\n  outline: none;\n  border: none;\n  color: white;\n  padding: 5px 8px;\n  border-radius: 4px;\n}\nbutton:hover {\n  background-color: #ccc;\n  color: rgb(12, 54, 240);\n}\n</style>"
  },
  {
    "path": "src/examples/show-fps.vue",
    "content": "<template>\n  <vue3dLoader\n    filePath=\"/models/obj/tree.obj\"\n    backgroundColor=\"#cccccc\"\n    :showFps=\"true\"\n  />\n</template>"
  },
  {
    "path": "src/index.ts",
    "content": "import { App } from 'vue';\nimport * as Three from 'three';\nimport vue3dLoader from './3dLoader/vue3dLoader.vue'\n\nexport { Three }\n\nconst install = (app: App) => {\n  app.component(vue3dLoader.name, vue3dLoader)\n}\n\nexport default { install, vue3dLoader }\n\nexport { vue3dLoader }"
  },
  {
    "path": "src/main.ts",
    "content": "import { createApp } from 'vue'\nimport App from './App.vue'\nimport vue3dLoader from './index'\n\ncreateApp(App).use(vue3dLoader).mount('#app')\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"esnext\",\n    \"useDefineForClassFields\": true,\n    \"module\": \"esnext\",\n    \"moduleResolution\": \"node\",\n    \"strict\": true,\n    \"jsx\": \"preserve\",\n    \"sourceMap\": true,\n    \"resolveJsonModule\": true,\n    \"isolatedModules\": true,\n    \"esModuleInterop\": true,\n    \"lib\": [\"esnext\", \"dom\"],\n    \"skipLibCheck\": true\n  },\n  \"include\": [\"src/**/*.ts\", \"src/**/*.d.ts\", \"src/**/*.tsx\", \"src/**/*.vue\"],\n  \"references\": [{ \"path\": \"./tsconfig.node.json\" }]\n}\n"
  },
  {
    "path": "tsconfig.node.json",
    "content": "{\n  \"compilerOptions\": {\n    \"composite\": true,\n    \"module\": \"esnext\",\n    \"moduleResolution\": \"node\"\n  },\n  \"include\": [\"vite.config.ts\"]\n}\n"
  },
  {
    "path": "vite.config.ts",
    "content": "import { defineConfig } from \"vite\";\nimport vue from \"@vitejs/plugin-vue\";\nimport path from \"path\";\nimport VueSetupExtend from \"vite-plugin-vue-setup-extend\";\n\n// https://vitejs.dev/config/\nexport default defineConfig(({ command, mode }) => {\n  const isRelease = mode === \"production\";\n  const entryFile = isRelease ? \"src/index.ts\" : \"src/main.ts\";\n  let config = {\n    plugins: [vue(), VueSetupExtend()],\n    build: {\n      outDir: \"examples-demo\",\n    },\n  };\n  if (isRelease) {\n    const build = {\n      build: {\n        outDir: \"dist\",\n        chunkSizeWarningLimit: 1000,\n        lib: {\n          formats: [\"es\", \"cjs\", \"iife\"], // \"umd\"\n          entry: path.resolve(__dirname, entryFile),\n          name: \"vue3dLoader\",\n          fileName: (format) => {\n            const fileName = \"vue-3d-loader\";\n            if (format === \"es\") {\n              return `${fileName}.esm.js`;\n            }\n            if (format === \"iife\") {\n              return `${fileName}.global.js`;\n            }\n            return `${fileName}.${format}.js`;\n          },\n        },\n        rollupOptions: {\n          external: [\"vue\"],\n          output: {\n            globals: {\n              vue: \"Vue\",\n            },\n          },\n        },\n      },\n    };\n    config = { ...config, ...build };\n  }\n\n  if (mode === 'examples') {\n    const base = {\n      base: \"/vue-3d-loader/examples-demo/\"\n    }\n    config = { ...config, ...base }\n  }\n  return config;\n});\n"
  }
]